summaryrefslogtreecommitdiffstats
path: root/perl-install/Xconfigurator_consts.pm
blob: d294cad45accfabdc4ab1801de82a53b3927e1cc (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
use common qw(:common);

%depths = (
      8 => __("256 colors (8 bits)"),
     15 => __("32 thousand colors (15 bits)"),
     16 => __("65 thousand colors (16 bits)"),
     24 => __("16 million colors (24 bits)"),
     32 => __("4 billion colors (32 bits)"),
);
@depths = ikeys(%depths);

$resolution_wanted = "1024x768";
@resolutions = qw(640x480 800x600 1024x768 1152x864 1280x1024 1600x1200);

@window_managers = qw(icewm wmaker kwm afterstep fvwm fvwm2 fvwm95 mwm twm enlightenment xfce blackbox);

%serversdriver = (
    'SVGA'      => "svga",
    'Rage128'   => "svga",
    '3dfx'      => "svga",
    'S3'        => "accel",
    'Mach32'    => "accel",
    'Mach8'     => "accel",
    '8514'      => "accel",
    'P9000'     => "accel",
    'AGX'       => "accel",
    'W32'       => "accel",
    'Mach64'    => "accel",
    'I128'      => "accel",
    'S3V'       => "accel",
    '3DLabs'    => "accel",
    'Mono'      => "vga2",
    'VGA16'     => "vga16",
    'FBDev'     => "fbdev",
);
@svgaservers = grep { $serversdriver{$_} eq "svga" } keys(%serversdriver);
@accelservers = grep { $serversdriver{$_} eq "accel" } keys(%serversdriver);
@allbutfbservers = grep { $serversdriver{$_} ne "fbdev" } keys(%serversdriver);
@allservers = keys(%serversdriver);

%vgamodes = (
    '640xx8'       => 769,
    '640x480x8'    => 769,
    '800xx8'       => 771,
    '800x600x8'    => 771,
    '1024xx8'      => 773,
    '1024x768x8'   => 773,
    '1280xx8'      => 775,
    '1280x1024x8'  => 775,
    '640xx15'      => 784,
    '640x480x15'   => 784,
    '800xx15'      => 787,
    '800x600x15'   => 787,
    '1024xx15'     => 790,
    '1024x768x15'  => 790,
    '1280xx15'     => 793,
    '1280x1024x15' => 793,
    '640xx16'      => 785,
    '640x480x16'   => 785,
    '800xx16'      => 788,
    '800x600x16'   => 788,
    '1024xx16'     => 791,
    '1024x768x16'  => 791,
    '1280xx16'     => 794,
    '1280x1024x16' => 794,
#-    '640xx24'      => 786, #- there is a problem with these resolutions since the BIOS may take 24 or 32 planes.
#-    '640x480x24'   => 786,
#-    '800xx24'      => 789,
#-    '800x600x24'   => 789,
#-    '1024xx24'     => 792,
#-    '1024x768x24'  => 792,
#-    '1280xx24'     => 795,
#-    '1280x1024x24' => 795,
);

{ #- @monitorSize2resolution
    my %l = my @l = ( #- size in inch
	13 => "640x480",
	14 => "800x600",
	15 => "800x600",
	16 => "1024x768",
	17 => "1152x864",
	18 => "1152x864",
	19 => "1280x1024",
        20 => "1600x1200",
    );
    for (my $i = 0; $i < $l[0]; $i++) {
	$monitorSize2resolution[$i] = $l[1];
    }
    while (my ($s, $r) = each %l) {
	$monitorSize2resolution[$s] = $r;
    }
}

%videomemory = (
    __("256 kB") => 256,
    __("512 kB") => 512,
    __("1 MB") => 1024,
    __("2 MB") => 2048,
    __("4 MB") => 4096,
    __("8 MB") => 8192,
    __("16 MB or more") => 16384,
);

$default_monitor = "High Frequency SVGA, 1024x768 at 70 Hz";
%standard_monitors = (
  __("Standard VGA, 640x480 at 60 Hz")                             => [ '640x480@60',      "31.5"            , "60" ],
  __("Standard VGA, 640x480 at 60 Hz")                             => [ '640x480@60',      "31.5"            , "60" ],
  __("Super VGA, 800x600 at 56 Hz") 				   => [ '800x600@56',      "31.5-35.1"       , "55-60" ],
  __("8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)") => [ '8514 compatible', "31.5,35.5"       , "60,70,87" ],
  __("Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz")  => [ '1024x768@87i',    "31.5,35.15,35.5" , "55-90" ],
  __("Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz")     => [ '800x600@60',      "31.5-37.9"       , "55-90" ],
  __("Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz")   => [ '1024x768@60',     "31.5-48.5"       , "55-90" ],
  __("High Frequency SVGA, 1024x768 at 70 Hz") 		           => [ '1024x768@70',     "31.5-57.0"       , "50-90" ],
  __("Multi-frequency that can do 1280x1024 at 60 Hz") 	           => [ '1280x1024@60',    "31.5-64.3"       , "50-90" ],
  __("Multi-frequency that can do 1280x1024 at 74 Hz") 	           => [ '1280x1024@74',    "31.5-79.0"       , "50-100" ],
  __("Multi-frequency that can do 1280x1024 at 76 Hz") 	           => [ '1280x1024@76',    "31.5-82.0"       , "40-100" ],
  __("Monitor that can do 1600x1200 at 70 Hz")                     => [ '1600x1200@70',    "31.5-88.0"       , "50-120" ],
  __("Monitor that can do 1600x1200 at 76 Hz")		           => [ '1600x1200@76',    "31.5-94.0"       , "50-160" ],
);

@vsyncranges = ("50-70", "50-90", "50-100", "40-150");

@hsyncranges = (
	"31.5",
	"31.5-35.1",
	"31.5, 35.5",
	"31.5, 35.15, 35.5",
	"31.5-37.9",
	"31.5-48.5",
	"31.5-57.0",
	"31.5-64.3",
	"31.5-79.0",
	"31.5-82.0",
	"31.5-88.0",
	"31.5-94.0",
);

%min_hsync4wres = (
	 640 => 31.5,
	 800 => 35.1,
	1024 => 35.5,
	1152 => 44.0,
	1280 => 51.0,
	1600 => 75.0,
);


%lines = (
#-    'Cirrus Logic|GD 5446' => [ '	Option "no_bitblt"' ],
      'Silicon Integrated Systems [SiS]|86C326' => [ '	Option "noaccel"' ],
#-      'Trident Microsystems|Cyber 9525' => [ '	Option "noaccel"' ],
#-      'S3 Inc.|86c368 [Trio 3D/2X]' => [ '	ChipID  0x8a10' ],
);

#- most usefull server options have to be accessible at the beginning, since
#- no more than a small set of options will be available for the user, maybe ?
@options = (
	    [ 'power_saver',       'Mono',        '.*' ],
	    [ 'hibit_low',         'VGA16',       'Tseng.*ET4000' ],
	    [ 'hibit_high',        'VGA16',       'Tseng.*ET4000' ],
	    [ 'power_saver',       'VGA16',       '.*' ],
	    [ 'noaccel',           'SVGA',        'Cirrus|C&T|SiS|Oak|Western Digital|Alliance|Trident|Tseng' ],
	    [ 'no_accel',          'SVGA',        'ARK|MGA|i740|Oak|ET6000|W32|Media.*GX|Neomagic' ],
	    [ 'linear',            'SVGA',        'Cirrus|ET6000|ET4000/W32p rev [CD]|Oak|Neomagic|Triden|Tseng' ],
	    [ 'nolinear',          'SVGA',        'Cirrus|C&T|Trident' ],
	    [ 'no_linear',         'SVGA',        'ARK|SiS|Neomagic|Tseng' ],
	    [ 'no_bitblt',         'SVGA',        'Cirrus|C&T|SiS' ],
	    [ 'no_imageblt',       'SVGA',        'Cirrus|C&T|SiS' ],
	    [ 'sw_cursor',         'SVGA',        '.*' ],
	    [ 'slow_dram',         'SVGA',        'Cirrus|Trident|ET6000|W32|Western Digital|Tseng' ],
	    [ 'mga_sdram',         'SVGA',        'MGA' ],
	    [ 'no_pixmap_cache',   'SVGA',        'ARK|Cirrus|C&T|MGA|SiS|Trident.*9440|Trident.*9680|Tseng' ],
	    [ 'no_mmio',           'SVGA',        'Cirrus|Neomagic|Trident' ],
	    [ 'pci_burst_off',     'SVGA',        'ET6000|W32|Trident|Tseng' ],
	    [ 'hw_clocks',         'SVGA',        'SiS|C&T' ],
	    [ 'use_modeline',      'SVGA',        'C&T' ],
	    [ 'enable_bitblt',     'SVGA',        'Oak' ],
	    [ 'w32_interleave_off', 'SVGA',       'ET6000|W32|Tseng' ],
	    [ 'fifo_conservative', 'SVGA',        'Cirrus|ARK|SiS|Oak' ],
	    [ 'fifo_moderate',     'SVGA',        'Cirrus|ARK|SiS' ],
	    [ 'all_wait',          'SVGA',        'Oak' ],
	    [ 'one_wait',          'SVGA',        'Oak' ],
	    [ 'first_wait',        'SVGA',        'Oak' ],
	    [ 'first_wwait',       'SVGA',        'Oak' ],
	    [ 'write_wait',        'SVGA',        'Oak' ],
	    [ 'read_wait',         'SVGA',        'Oak' ],
	    [ 'clgd6225_lcd',      'SVGA',        'Cirrus' ],
	    [ 'fix_panel_size',    'SVGA',        'C&T' ],
	    [ 'lcd_center',        'SVGA',        'C&T|Neomagic|Trident' ],
	    [ 'cyber_shadow',      'SVGA',        'Trident' ],
	    [ 'STN',               'SVGA',        'C&T' ],
	    [ 'no_stretch',        'SVGA',        'C&T|Cirrus|Neomagic|Trident' ],
	    [ 'no_prog_lcd_mode_regs', 'SVGA',    'Neomagic' ],
	    [ 'prog_lcd_mode_stretch', 'SVGA',    'Neomagic' ],
	    [ 'suspend_hack',      'SVGA',        'C&T' ],
	    [ 'use_18bit_bus',     'SVGA',        'C&T' ],
	    [ 'hibit_low',         'SVGA',        'Tseng.*ET4000' ],
	    [ 'hibit_high',        'SVGA',        'Tseng.*ET4000' ],
	    [ 'probe_clocks',      'SVGA',        'Cirrus' ],
	    [ 'power_saver',       'SVGA',        '.*' ],
	    [ 'use_vlck1',         'SVGA',        'C&T' ],
	    [ 'sgram',             'SVGA',        'i740' ],
	    [ 'sdram',             'SVGA',        'i740' ],
	    [ 'no_2mb_banksel',    'SVGA',        'Cirrus' ],
	    [ 'tgui_pci_read_on',  'SVGA',        'Trident' ],
	    [ 'tgui_pci_write_on', 'SVGA',        'Trident' ],
	    [ 'no_program_clocks', 'SVGA',        'Trident' ],
	    [ 'mmio',              'SVGA',        'Cirrus|C&T|Neomagic' ],
	    [ 'sync_on_green',     'SVGA',        'C&T|MGA' ],
	    [ 'pci_retry',         'SVGA',        'Tseng|MGA|Cirrus' ],
	    [ 'hw_cursor',         'SVGA',        'C&T|SiS|ARK|ET6000|i740|Tseng' ],
	    [ 'xaa_no_color_exp',  'SVGA',        'C&T|Cirrus|Trident|Tseng' ],
	    [ 'xaa_benchmarks',    'SVGA',        'C&T' ],
	    [ 'pci_burst_on',      'SVGA',        'Trident|Tseng' ],
	    [ 'prog_lcd_mode_regs', 'SVGA',       'Neomagic' ],
	    [ 'no_prog_lcd_mode_stretch', 'SVGA', 'Neomagic' ],
	    [ 'no_wait',           'SVGA',        'Oak' ],
	    #- [ 'med_dram',          'SVGA',        'Cirrus|Trident|Western Digital' ], #- WARNING, MAY DAMAGE CARD
	    #- [ 'fast_dram',         'SVGA',        'C&T|Cirrus|ET[46]000|Trident|Western Digital' ], #- WARNING, MAY DAMAGE CARD
	    #- [ 'fast_vram',         'SVGA',        'SiS' ], #- WARNING, MAY DAMAGE CARD
	    #- [ 'clock_50',          'SVGA',        'Oak' ], #- WARNING, MAY DAMAGE CARD
	    #- [ 'clock_66',          'SVGA',        'Oak' ], #- WARNING, MAY DAMAGE CARD
	    #- [ 'fifo_aggressive',   'SVGA',        'Cirrus|ARK|SiS|Oak' ], #- WARNING, MAY DAMAGE CARD
	    #- [ 'override_validate_mode', 'SVGA',   'Neomagic' ], #- WARNING, MAY DAMAGE CARD
	    #- [ 'tgui_mclk_66',      'SVGA',        'Trident' ], #- WARNING, MAY DAMAGE CARD
	    #- [ 'favour_bitblt',     'SVGA',        'Cirrus' ], #- OBSELETE
	    [ 'sw_cursor',         '3DLabs',      '.*' ],
	    [ 'no_pixmap_cache',   '3DLabs',      '.*' ],
	    [ 'no_accel',          '3DLabs',      '.*' ],
	    [ 'firegl_3000',       '3DLabs',      '.*' ],
	    [ 'sync_on_green',     '3DLabs',      '.*' ],
	    [ 'pci_retry',         '3DLabs',      '.*' ],
	    #- [ 'overclock_mem',     '3DLabs',      '.*' ], #- WARNING, MAY DAMAGE CARD
	    [ 'dac_8_bit',         'I128',        '.*' ],
	    [ 'no_accel',          'I128',        '.*' ],
	    [ 'sync_on_green',     'I128',        '.*' ],
	    [ 'composite',         'Mach32',      '.*' ],
	    [ 'sw_cursor',         'Mach32',      '.*' ],
	    [ 'dac_8_bit',         'Mach32',      '.*' ],
	    [ 'ast_mach32',        'Mach32',      '.*' ],
	    [ 'intel_gx',          'Mach32',      '.*' ],
	    [ 'no_linear',         'Mach32',      '.*' ],
	    [ 'sw_cursor',         'Mach64',      '.*' ],
	    [ 'nolinear',          'Mach64',      '.*' ],
	    [ 'no_block_write',    'Mach64',      '.*' ],
	    [ 'block_write',       'Mach64',      '.*' ],
	    [ 'fifo_conservative', 'Mach64',      '.*' ],
	    [ 'no_font_cache',     'Mach64',      '.*' ],
	    [ 'no_pixmap_cache',   'Mach64',      '.*' ],
	    [ 'composite',         'Mach64',      '.*' ],
	    [ 'power_saver',       'Mach64',      '.*' ],
	    [ 'no_program_clocks', 'Mach64',      '.*' ],
	    [ 'no_bios_clocks',    'Mach64',      '.*' ],
	    [ 'dac_6_bit',         'Mach64',      '.*' ],
	    [ 'dac_8_bit',         'Mach64',      '.*' ],
	    [ 'hw_cursor',         'Mach64',      '.*' ],
	    #- [ 'override_bios',     'Mach64',      '.*' ], #- WARNING, MAY DAMAGE CARD
	    [ 'sw_cursor',         'P9000',       '.*' ],
	    [ 'noaccel',           'P9000',       '.*' ],
	    [ 'sync_on_green',     'P9000',       '.*' ],
	    [ 'vram_128',          'P9000',       '.*' ],
	    [ 'nolinear',          'S3',          '.*' ],
	    [ 'dac_8_bit',         'S3',          '.*' ],
	    [ 'slow_vram',         'S3',          'S3.*964' ],
	    [ 'stb_pegasus',       'S3',          'S3.*928' ],
	    [ 'SPEA_Mercury',      'S3',          'S3.*(928|964)' ],
	    [ 'number_nine',       'S3',          'S3.*(864|928)' ],
	    [ 'lcd_center',        'S3',          'S3.*Aurora64V' ],
	    [ 'noaccel',           'S3V',         '.*' ],
	    [ 'slow_edodram',      'S3V',         '.*' ],
	    [ 'pci_burst_on',      'S3V',         '.*' ],
	    [ 'early_ras_precharge', 'S3V',       '.*' ],
	    [ 'late_ras_precharge', 'S3V',        '.*' ],
	    [ 'fifo_conservative', 'S3V',         '.*' ],
	    [ 'fifo_aggressive',   'S3V',         '.*' ],
	    [ 'fifo_moderate',     'S3V',         '.*' ],
	    [ 'lcd_center',        'S3V',         'S3.*ViRGE\/MX' ],
	    [ 'hw_cursor',         'S3V',         '.*' ],
	    [ 'pci_retry',         'S3V',         '.*' ],
	    [ 'dac_6_bit',         'AGX',         '.*' ],
	    [ 'dac_8_bit',         'AGX',         '.*' ],
	    [ 'sync_on_green',     'AGX',         '.*' ],
	    [ '8_bit_bus',         'AGX',         '.*' ],
	    [ 'wait_state',        'AGX',         '.*' ],
	    [ 'no_wait_state',     'AGX',         '.*' ],
	    [ 'noaccel',           'AGX',         '.*' ],
	    [ 'crtc_delay',        'AGX',         '.*' ],
	    [ 'fifo_conserv',      'AGX',         '.*' ],
	    [ 'fifo_aggressive',   'AGX',         '.*' ],
	    [ 'fifo_moderate',     'AGX',         '.*' ],
	    [ 'vram_delay_latch',  'AGX',         '.*' ],
	    [ 'vram_delay_ras',    'AGX',         '.*' ],
	    [ 'vram_extend_ras',   'AGX',         '.*' ],
	    [ 'slow_dram',         'AGX',         '.*' ],
	    [ 'slow_vram',         'AGX',         '.*' ],
	    [ 'med_dram',          'AGX',         '.*' ],
	    [ 'med_vram',          'AGX',         '.*' ],
	    [ 'fast_dram',         'AGX',         '.*' ],
	    [ 'fast_vram',         'AGX',         '.*' ],
	    [ 'engine_delay',      'AGX',         '.*' ],
	    [ 'vram_128',          'AGX',         '.*' ],
	    [ 'vram_256',          'AGX',         '.*' ],
	    [ 'refresh_20',        'AGX',         '.*' ],
	    [ 'refresh_25',        'AGX',         '.*' ],
	    [ 'screen_refresh',    'AGX',         '.*' ],
	    [ 'vlb_a',             'AGX',         '.*' ],
	    [ 'vlb_b',             'AGX',         '.*' ],
	    [ 'slow_dram',         'W32',         '.*' ],
	    [ 'pci_burst_off',     'W32',         '.*' ],
	    [ 'w32_interleave_off', 'W32',        '.*' ],
	    [ 'no_accel',          'W32',         '.*' ],
	    [ 'nolinear',          '8514',        '.*' ],
	    [ 'sw_cursor',         '8514',        '.*' ],
	    [ 'no_block_write',    '8514',        '.*' ],
	    [ 'block_write',       '8514',        '.*' ],
	    [ 'fifo_conservative', '8514',        '.*' ],
	    [ 'no_font_cache',     '8514',        '.*' ],
	    [ 'no_pixmap_cache',   '8514',        '.*' ],
	    [ 'composite',         '8514',        '.*' ],
	    [ 'power_saver',       '8514',        '.*' ],
	    [ 'power_saver',       'FBDev',       '.*' ],
);

%xkb_options = (
    'ru' => [ 'XkbVariant "winkeys"', 'XkbOptions "grp:caps_toggle"' ],
);

$XF86firstchunk_text = '
# File generated by XFdrake.

# **********************************************************************
# Refer to the XF86Config(4/5) man page for details about the format of
# this file.
# **********************************************************************

Section "Files"

    RgbPath	"/usr/X11R6/lib/X11/rgb"

# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Mandrake 6.0 and later now use a font server independent of
# the X server to render fonts.

    FontPath   "unix/:-1"

EndSection

# **********************************************************************
# Server flags section.
# **********************************************************************

Section "ServerFlags"

    # Uncomment this to cause a core dump at the spot where a signal is
    # received.  This may leave the console in an unusable state, but may
    # provide a better stack trace in the core dump to aid in debugging
    #NoTrapSignals

    # Uncomment this to disable the <Crtl><Alt><BS> server abort sequence
    # This allows clients to receive this key event.
    #DontZap

    # Uncomment this to disable the <Crtl><Alt><KP_+>/<KP_-> mode switching
    # sequences.  This allows clients to receive these key events.
    #DontZoom

    # This  allows  the  server  to start up even if the
    # mouse device can\'t be opened/initialised.
    AllowMouseOpenFail

EndSection

# **********************************************************************
# Input devices
# **********************************************************************
';

$keyboardsection_start = '
# **********************************************************************
# Keyboard section
# **********************************************************************

Section "Keyboard"

    Protocol    "Standard"

    # when using XQUEUE, comment out the above line, and uncomment the
    # following line
    #Protocol   "Xqueue"

    AutoRepeat  250 30

    # Let the server do the NumLock processing.  This should only be
    # required when using pre-R6 clients
    #ServerNumLock

    # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
    #Xleds      "1 2 3"

    #To set the LeftAlt to Meta, RightAlt key to ModeShift,
    #RightCtl key to Compose, and ScrollLock key to ModeLock:

    LeftAlt        Meta
    RightAlt       Meta
    ScrollLock     Compose
    RightCtl       Control

# To disable the XKEYBOARD extension, uncomment XkbDisable.

#    XkbDisable
';

$keyboardsection_start_v4 = '
# **********************************************************************
# Keyboard section
# **********************************************************************

Section "InputDevice"

    Identifier "Keyboard1"
    Driver      "Keyboard"
    Option "AutoRepeat"  "250 30"
';

if (arch() =~ /^sparc/) {
    $keyboardsection_part3 = '
# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults).  For example:
#    XkbModel    "type6"
# If you have a SUN keyboard, you may use:
#    XkbModel    "sun"
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
#    XkbLayout   "de"
# or:
#    XkbLayout   "de"
#    XkbVariant  "nodeadkeys"
#
# If you\'d like to switch the positions of your capslock and
# control keys, use:
#    XkbOptions  "ctrl:swapcaps"

# These are the default XKB settings for XFree86 on SUN:
#    XkbRules    "sun"
#    XkbModel    "type5_unix"
#    XkbLayout   "us"
#    XkbCompat   "compat/complete"
#    XkbTypes    "types/complete"
#    XkbKeycodes "sun(type5)"
#    XkbGeometry "sun(type5)"
#    XkbSymbols  "sun/us(sun5)"

    XkbRules    "sun"
    XkbModel    "sun"
    XkbLayout   "us"
    XkbCompat   "compat/complete"
    XkbTypes    "types/complete"
    XkbKeycodes "sun(type5)"
    XkbGeometry "sun(type5)"
    XkbSymbols  "sun/us(sun5)"
';
$keyboardsection_part3_v4 = '
    Option "XkbRules"    "sun"
    Option "XkbModel"    "sun"
    Option "XkbLayout"   "us"
    Option "XkbCompat"   "compat/complete"
    Option "XkbTypes"    "types/complete"
    Option "XkbKeycodes" "sun(type5)"
    Option "XkbGeometry" "sun(type5)"
    Option "XkbSymbols"  "sun/us(sun5)"
';
} else {
$keyboardsection_part3 = '
# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults).  For example, for a non-U.S.
# keyboard, you will probably want to use:
#    XkbModel    "pc102"
# If you have a US Microsoft Natural keyboard, you can use:
#    XkbModel    "microsoft"
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
#    XkbLayout   "de"
# or:
#    XkbLayout   "de"
#    XkbVariant  "nodeadkeys"
#
# If you\'d like to switch the positions of your capslock and
# control keys, use:
#    XkbOptions  "ctrl:swapcaps"

# These are the default XKB settings for XFree86
#    XkbRules    "xfree86"
#    XkbModel    "pc101"
#    XkbLayout   "us"
#    XkbVariant  ""
#    XkbOptions  ""

    XkbKeycodes     "xfree86"
    XkbTypes        "default"
    XkbCompat       "default"
    XkbSymbols      "us(pc105)"
    XkbGeometry     "pc"
    XkbRules        "xfree86"
    XkbModel        "pc105"
';

$keyboardsection_part3_v4 = '
    Option "XkbRules" "xfree86"
    Option "XkbModel" "pc105"
';
}

$keyboardsection_end = '
EndSection
';

$pointersection_text = '
# **********************************************************************
# Pointer section
# **********************************************************************

Section "Pointer"
';

$pointersection_text_v4 = '
# **********************************************************************
# Pointer section
# **********************************************************************

Section "InputDevice"

    Identifier "Mouse1"
    Driver      "mouse"
';

$monitorsection_text1 = '
# **********************************************************************
# Monitor section
# **********************************************************************

# Any number of monitor sections may be present

Section "Monitor"
';

$monitorsection_text2 = '
# HorizSync is in kHz unless units are specified.
# HorizSync may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR\'S
# USER MANUAL FOR THE CORRECT NUMBERS.
';

$monitorsection_text3 = '
# VertRefresh is in Hz unless units are specified.
# VertRefresh may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR\'S
# USER MANUAL FOR THE CORRECT NUMBERS.
';

$monitorsection_text4 = '
# Modes can be specified in two formats.  A compact one-line format, or
# a multi-line format.

# These two are equivalent

#    ModeLine "1024x768i" 45 1024 1048 1208 1264 768 776 784 817 Interlace

#    Mode "1024x768i"
#        DotClock	45
#        HTimings	1024 1048 1208 1264
#        VTimings	768 776 784 817
#        Flags		"Interlace"
#    EndMode
';

$modelines_text_Trident_TG_96xx = '
# This is a set of standard mode timings. Modes that are out of monitor spec
# are automatically deleted by the server (provided the HorizSync and
# VertRefresh lines are correct), so there\'s no immediate need to
# delete mode timings (unless particular mode timings don\'t work on your
# monitor). With these modes, the best standard mode that your monitor
# and video card can support for a given resolution is automatically
# used.

# These are special modelines for Trident Providia 9685. It is for VA Linux
# systems only.
# 640x480 @ 72 Hz, 36.5 kHz hsync
Modeline "640x480"     31.5   640  680  720  864   480  488  491  521
# 800x600 @ 72 Hz, 48.0 kHz hsync
Modeline "800x600"     50     800  856  976 1040   600  637  643  666 +hsync +vsync
# 1024x768 @ 60 Hz, 48.4 kHz hsync
#Modeline "1024x768"    65    1024 1032 1176 1344   768  771  777  806 -hsync -vsync
# 1024x768 @ 70 Hz, 56.5 kHz hsync
Modeline "1024x768"    75    1024 1048 1184 1328   768  771  777  806 -hsync -vsync
';
$modelines_text = '
# This is a set of standard mode timings. Modes that are out of monitor spec
# are automatically deleted by the server (provided the HorizSync and
# VertRefresh lines are correct), so there\'s no immediate need to
# delete mode timings (unless particular mode timings don\'t work on your
# monitor). With these modes, the best standard mode that your monitor
# and video card can support for a given resolution is automatically
# used.

# 640x400 @ 70 Hz, 31.5 kHz hsync
Modeline "640x400"     25.175 640  664  760  800   400  409  411  450
# 640x480 @ 60 Hz, 31.5 kHz hsync
Modeline "640x480"     25.175 640  664  760  800   480  491  493  525
# 800x600 @ 56 Hz, 35.15 kHz hsync
ModeLine "800x600"     36     800  824  896 1024   600  601  603  625
# 1024x768 @ 87 Hz interlaced, 35.5 kHz hsync
Modeline "1024x768"    44.9  1024 1048 1208 1264   768  776  784  817 Interlace

# 640x400 @ 85 Hz, 37.86 kHz hsync
Modeline "640x400"     31.5   640  672 736   832   400  401  404  445 -HSync +VSync
# 640x480 @ 72 Hz, 36.5 kHz hsync
Modeline "640x480"     31.5   640  680  720  864   480  488  491  521
# 640x480 @ 75 Hz, 37.50 kHz hsync
ModeLine  "640x480"    31.5   640  656  720  840   480  481  484  500 -HSync -VSync
# 800x600 @ 60 Hz, 37.8 kHz hsync
Modeline "800x600"     40     800  840  968 1056   600  601  605  628 +hsync +vsync

# 640x480 @ 85 Hz, 43.27 kHz hsync
Modeline "640x480"     36     640  696  752  832   480  481  484  509 -HSync -VSync
# 1152x864 @ 89 Hz interlaced, 44 kHz hsync
ModeLine "1152x864"    65    1152 1168 1384 1480   864  865  875  985 Interlace

# 800x600 @ 72 Hz, 48.0 kHz hsync
Modeline "800x600"     50     800  856  976 1040   600  637  643  666 +hsync +vsync
# 1024x768 @ 60 Hz, 48.4 kHz hsync
Modeline "1024x768"    65    1024 1032 1176 1344   768  771  777  806 -hsync -vsync

# 640x480 @ 100 Hz, 53.01 kHz hsync
Modeline "640x480"     45.8   640  672  768  864   480  488  494  530 -HSync -VSync
# 1152x864 @ 60 Hz, 53.5 kHz hsync
Modeline  "1152x864"   89.9  1152 1216 1472 1680   864  868  876  892 -HSync -VSync
# 800x600 @ 85 Hz, 55.84 kHz hsync
Modeline  "800x600"    60.75  800  864  928 1088   600  616  621  657 -HSync -VSync

# 1024x768 @ 70 Hz, 56.5 kHz hsync
Modeline "1024x768"    75    1024 1048 1184 1328   768  771  777  806 -hsync -vsync
# 1280x1024 @ 87 Hz interlaced, 51 kHz hsync
Modeline "1280x1024"   80    1280 1296 1512 1568  1024 1025 1037 1165 Interlace

# 800x600 @ 100 Hz, 64.02 kHz hsync
Modeline  "800x600"    69.65  800  864  928 1088   600  604  610  640 -HSync -VSync
# 1024x768 @ 76 Hz, 62.5 kHz hsync
Modeline "1024x768"    85    1024 1032 1152 1360   768  784  787  823
# 1152x864 @ 70 Hz, 62.4 kHz hsync
Modeline  "1152x864"   92    1152 1208 1368 1474   864  865  875  895
# 1280x1024 @ 61 Hz, 64.2 kHz hsync
Modeline "1280x1024"  110    1280 1328 1512 1712  1024 1025 1028 1054

# 1024x768 @ 85 Hz, 70.24 kHz hsync
Modeline "1024x768"   98.9  1024 1056 1216 1408   768 782 788 822 -HSync -VSync
# 1152x864 @ 78 Hz, 70.8 kHz hsync
Modeline "1152x864"   110   1152 1240 1324 1552   864  864  876  908

# 1280x1024 @ 70 Hz, 74.59 kHz hsync
Modeline "1280x1024"  126.5 1280 1312 1472 1696  1024 1032 1040 1068 -HSync -VSync
# 1600x1200 @ 60Hz, 75.00 kHz hsync
Modeline "1600x1200"  162   1600 1664 1856 2160  1200 1201 1204 1250 +HSync +VSync
# 1152x864 @ 84 Hz, 76.0 kHz hsync
Modeline "1152x864"   135    1152 1464 1592 1776   864  864  876  908

# 1280x1024 @ 74 Hz, 78.85 kHz hsync
Modeline "1280x1024"  135    1280 1312 1456 1712  1024 1027 1030 1064

# 1024x768 @ 100Hz, 80.21 kHz hsync
Modeline "1024x768"   115.5  1024 1056 1248 1440  768  771  781  802 -HSync -VSync
# 1280x1024 @ 76 Hz, 81.13 kHz hsync
Modeline "1280x1024"  135    1280 1312 1416 1664  1024 1027 1030 1064

# 1600x1200 @ 70 Hz, 87.50 kHz hsync
Modeline "1600x1200"  189    1600 1664 1856 2160  1200 1201 1204 1250 -HSync -VSync
# 1152x864 @ 100 Hz, 89.62 kHz hsync
Modeline "1152x864"   137.65 1152 1184 1312 1536   864  866  885  902 -HSync -VSync
# 1280x1024 @ 85 Hz, 91.15 kHz hsync
Modeline "1280x1024"  157.5  1280 1344 1504 1728  1024 1025 1028 1072 +HSync +VSync
# 1600x1200 @ 75 Hz, 93.75 kHz hsync
Modeline "1600x1200"  202.5  1600 1664 1856 2160  1200 1201 1204 1250 +HSync +VSync
# 1600x1200 @ 85 Hz, 105.77 kHz hsync
Modeline "1600x1200"  220    1600 1616 1808 2080  1200 1204 1207 1244 +HSync +VSync
# 1280x1024 @ 100 Hz, 107.16 kHz hsync
Modeline "1280x1024"  181.75 1280 1312 1440 1696  1024 1031 1046 1072 -HSync -VSync

# 1800x1440 @ 64Hz, 96.15 kHz hsync
ModeLine "1800X1440"  230    1800 1896 2088 2392 1440 1441 1444 1490 +HSync +VSync
# 1800x1440 @ 70Hz, 104.52 kHz hsync
ModeLine "1800X1440"  250    1800 1896 2088 2392 1440 1441 1444 1490 +HSync +VSync

# 512x384 @ 78 Hz, 31.50 kHz hsync
Modeline "512x384"    20.160 512  528  592  640   384  385  388  404 -HSync -VSync
# 512x384 @ 85 Hz, 34.38 kHz hsync
Modeline "512x384"    22     512  528  592  640   384  385  388  404 -HSync -VSync

# Low-res Doublescan modes
# If your chipset does not support doublescan, you get a \'squashed\'
# resolution like 320x400.

# 320x200 @ 70 Hz, 31.5 kHz hsync, 8:5 aspect ratio
Modeline "320x200"     12.588 320  336  384  400   200  204  205  225 Doublescan
# 320x240 @ 60 Hz, 31.5 kHz hsync, 4:3 aspect ratio
Modeline "320x240"     12.588 320  336  384  400   240  245  246  262 Doublescan
# 320x240 @ 72 Hz, 36.5 kHz hsync
Modeline "320x240"     15.750 320  336  384  400   240  244  246  262 Doublescan
# 400x300 @ 56 Hz, 35.2 kHz hsync, 4:3 aspect ratio
ModeLine "400x300"     18     400  416  448  512   300  301  302  312 Doublescan
# 400x300 @ 60 Hz, 37.8 kHz hsync
Modeline "400x300"     20     400  416  480  528   300  301  303  314 Doublescan
# 400x300 @ 72 Hz, 48.0 kHz hsync
Modeline "400x300"     25     400  424  488  520   300  319  322  333 Doublescan
# 480x300 @ 56 Hz, 35.2 kHz hsync, 8:5 aspect ratio
ModeLine "480x300"     21.656 480  496  536  616   300  301  302  312 Doublescan
# 480x300 @ 60 Hz, 37.8 kHz hsync
Modeline "480x300"     23.890 480  496  576  632   300  301  303  314 Doublescan
# 480x300 @ 63 Hz, 39.6 kHz hsync
Modeline "480x300"     25     480  496  576  632   300  301  303  314 Doublescan
# 480x300 @ 72 Hz, 48.0 kHz hsync
Modeline "480x300"     29.952 480  504  584  624   300  319  322  333 Doublescan

';

$devicesection_text = '
# **********************************************************************
# Graphics device section
# **********************************************************************

Section "Device"
    Identifier "Generic VGA"
    Chipset   "generic"
EndSection

';

$devicesection_text_v4 = '
# **********************************************************************
# Graphics device section
# **********************************************************************

Section "Device"
    Identifier "Generic VGA"
    Driver     "vga"
EndSection

';

$screensection_text1 = '
# **********************************************************************
# Screen sections
# **********************************************************************
';

.0%;'/> -rw-r--r--perl-install/messages.pm (renamed from perl-install/install_messages.pm)4
-rw-r--r--perl-install/mirror.pm (renamed from perl-install/crypto.pm)0
-rw-r--r--perl-install/modalias.pm84
-rw-r--r--perl-install/modules.pm110
-rw-r--r--perl-install/modules/any_conf.pm9
-rw-r--r--perl-install/modules/interactive.pm17
-rw-r--r--perl-install/modules/parameters.pm41
-rw-r--r--perl-install/mygtk2.pm197
-rw-r--r--perl-install/network/adsl.pm336
-rw-r--r--perl-install/network/adsl_consts.pm979
-rw-r--r--perl-install/network/dhcpd.pm50
-rw-r--r--perl-install/network/drakfirewall.pm283
-rw-r--r--perl-install/network/ethernet.pm162
-rw-r--r--perl-install/network/ifw.pm141
-rw-r--r--perl-install/network/ipsec.pm781
-rw-r--r--perl-install/network/isdn.pm193
-rw-r--r--perl-install/network/isdn_consts.pm460
-rw-r--r--perl-install/network/modem.pm223
-rw-r--r--perl-install/network/monitor.pm83
-rw-r--r--perl-install/network/ndiswrapper.pm108
-rw-r--r--perl-install/network/netconnect.pm1461
-rw-r--r--perl-install/network/network.pm627
-rw-r--r--perl-install/network/pxe.pm286
-rw-r--r--perl-install/network/shorewall.pm172
-rw-r--r--perl-install/network/squid.pm73
-rw-r--r--perl-install/network/test.pm158
-rw-r--r--perl-install/network/thirdparty.pm517
-rw-r--r--perl-install/network/tools.pm255
-rw-r--r--perl-install/network/wireless.pm239
-rw-r--r--perl-install/partition_table.pm21
-rw-r--r--perl-install/partition_table/dos.pm4
-rw-r--r--perl-install/partition_table/mac.pm4
-rw-r--r--perl-install/partition_table/raw.pm19
-rw-r--r--perl-install/patch/9.1/hp.diff137
-rw-r--r--perl-install/patch/9.1/patch-detectSMP-K6.pl5
-rw-r--r--perl-install/patch/9.1/patch-loopback.pl18
-rw-r--r--perl-install/patch/patch-2006-auto_install_LDAP_auth.pl16
-rw-r--r--perl-install/patch/patch-2006-new-dmraid.pl12
-rw-r--r--perl-install/patch/patch-9.0-auto-inst-network-config.pl8
-rw-r--r--perl-install/patch/patch-IMPS2.pl9
-rw-r--r--perl-install/patch/patch-da.pl6
-rw-r--r--perl-install/patch/patch-nforce.pl35
-rw-r--r--perl-install/patch/patch-oem-9.0.pl52
-rw-r--r--perl-install/patch/patch-oem-hp.pl323
-rw-r--r--perl-install/patch/patch-raidtab.pl37
-rw-r--r--perl-install/patch/patch-rh9-mdk10.pl116
-rw-r--r--perl-install/patch/patch-stage2-updatemodules.pl12
-rw-r--r--perl-install/patch/rpmsrate.oem-9.0-openoffice551
-rw-r--r--perl-install/patch/rpmsrate.oem-9.0-staroffice552
-rwxr-xr-xperl-install/perl2etags8
-rw-r--r--perl-install/pixmaps/about-printerdrake.pngbin5433 -> 0 bytes-rw-r--r--perl-install/pixmaps/arrow_down.pngbin155 -> 0 bytes-rw-r--r--perl-install/pixmaps/arrow_up.pngbin156 -> 0 bytes-rw-r--r--perl-install/pixmaps/colors.pngbin275 -> 0 bytes-rw-r--r--perl-install/pixmaps/colors16.pngbin1136 -> 0 bytes-rw-r--r--perl-install/pixmaps/colors8.pngbin798 -> 0 bytes-rwxr-xr-xperl-install/pixmaps/connected.pngbin785 -> 0 bytes-rw-r--r--perl-install/pixmaps/disconnected.pngbin977 -> 0 bytes-rw-r--r--perl-install/pixmaps/ic82-tape-40.pngbin1673 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-af.pngbin691 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-am.pngbin658 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ar.pngbin576 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-as.pngbin681 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-az.pngbin928 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-be.pngbin935 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ber.pngbin566 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-bg.pngbin778 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-bn.pngbin439 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-br.pngbin781 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-bs.pngbin740 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ca.pngbin513 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-chr.pngbin626 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-cs.pngbin752 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-csb.pngbin1052 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-cy.pngbin809 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-da.pngbin608 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-de.pngbin730 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-el.pngbin683 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-en_GB.pngbin996 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-en_IE.pngbin1128 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-en_US.pngbin1330 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-eo.pngbin845 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-es.pngbin715 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-et.pngbin482 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-eu.pngbin602 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-fa.pngbin530 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-fi.pngbin554 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-fo.pngbin799 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-fr.pngbin644 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-fur.pngbin551 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-fy.pngbin604 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ga.pngbin666 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-gd.pngbin742 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-gl.pngbin723 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-gn.pngbin770 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-gu.pngbin778 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-gv.pngbin628 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ha.pngbin468 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-he.pngbin536 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-hi.pngbin491 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-hr.pngbin658 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-hu.pngbin681 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-hy.pngbin536 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ia.pngbin755 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-id.pngbin974 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ik.pngbin670 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-is.pngbin665 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-it.pngbin551 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-iu.pngbin652 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ja.pngbin561 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ka.pngbin1012 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-kk.pngbin667 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-kl.pngbin747 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-km.pngbin671 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-kn.pngbin543 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ko.pngbin507 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ks.pngbin648 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ks@Arab.pngbin599 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ku.pngbin496 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-kw.pngbin664 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ky.pngbin719 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-lb.pngbin1161 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-lg.pngbin681 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-li.pngbin659 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-lo.pngbin230 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-lt.pngbin824 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ltg.pngbin695 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-lv.pngbin749 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-mi.pngbin558 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-mk.pngbin904 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ml.pngbin1006 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-mn.pngbin491 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-mr.pngbin452 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ms.pngbin1013 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-mt.pngbin547 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-nb.pngbin970 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-nds.pngbin877 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ne.pngbin518 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-nl.pngbin788 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-nn.pngbin811 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-no.pngbin970 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-oc.pngbin631 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-pa.pngbin470 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-pa_IN.pngbin470 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ph.pngbin490 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-pl.pngbin551 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ps.pngbin436 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-pt.pngbin814 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-pt_BR.pngbin1178 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-qu.pngbin851 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ro.pngbin671 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ru.pngbin622 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-sc.pngbin634 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-se.pngbin810 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-sh.pngbin724 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-sk.pngbin878 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-sl.pngbin995 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-so.pngbin873 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-sq.pngbin557 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-sr.pngbin639 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-sr@Latn.pngbin724 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ss.pngbin619 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-st.pngbin684 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-sv.pngbin810 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-sw.pngbin814 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ta.pngbin612 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-te.pngbin649 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-tg.pngbin524 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-th.pngbin396 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-tk.pngbin737 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-tr.pngbin573 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-tt.pngbin515 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-tt@Cyrl.pngbin567 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ug.pngbin635 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-uk.pngbin766 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ur.pngbin423 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-uz.pngbin1203 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-uz@Cyrl.pngbin1203 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-uz@Latn.pngbin1217 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-ve.pngbin608 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-vi.pngbin765 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-wa.pngbin633 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-xh.pngbin618 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-yi.pngbin369 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-zh_CN.pngbin783 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-zh_TW.pngbin890 -> 0 bytes-rw-r--r--perl-install/pixmaps/langs/lang-zu.pngbin466 -> 0 bytes-rw-r--r--perl-install/pixmaps/monitor-1024.pngbin9140 -> 0 bytes-rw-r--r--perl-install/pixmaps/monitor-1152.pngbin8548 -> 0 bytes-rw-r--r--perl-install/pixmaps/monitor-1280.pngbin8066 -> 0 bytes-rw-r--r--perl-install/pixmaps/monitor-1400.pngbin7587 -> 0 bytes-rw-r--r--perl-install/pixmaps/monitor-1600.pngbin7129 -> 0 bytes-rw-r--r--perl-install/pixmaps/monitor-1920.pngbin6952 -> 0 bytes-rw-r--r--perl-install/pixmaps/monitor-2048.pngbin6704 -> 0 bytes-rw-r--r--perl-install/pixmaps/monitor-640.pngbin14132 -> 0 bytes-rw-r--r--perl-install/pixmaps/monitor-800.pngbin12910 -> 0 bytes-rw-r--r--perl-install/pixmaps/monitor.pngbin2377 -> 0 bytes-rw-r--r--perl-install/pixmaps/mouse_2b.pngbin13589 -> 0 bytes-rw-r--r--perl-install/pixmaps/mouse_2b_left.pngbin3734 -> 0 bytes-rw-r--r--perl-install/pixmaps/mouse_2b_right.pngbin4169 -> 0 bytes-rw-r--r--perl-install/pixmaps/mouse_3b+.pngbin15803 -> 0 bytes-rw-r--r--perl-install/pixmaps/mouse_3b+_middle.pngbin1042 -> 0 bytes-rw-r--r--perl-install/pixmaps/mouse_3b.pngbin13345 -> 0 bytes-rw-r--r--perl-install/pixmaps/mouse_3b_left.pngbin2555 -> 0 bytes-rw-r--r--perl-install/pixmaps/mouse_3b_middle.pngbin2429 -> 0 bytes-rw-r--r--perl-install/pixmaps/mouse_3b_right.pngbin3138 -> 0 bytes-rw-r--r--perl-install/pixmaps/printer-mdk.pngbin2338 -> 0 bytes-rw-r--r--perl-install/pixmaps/printer_add.pngbin1704 -> 0 bytes-rw-r--r--perl-install/pixmaps/printer_conf.pngbin1613 -> 0 bytes-rw-r--r--perl-install/pixmaps/printer_default.pngbin1671 -> 0 bytes-rw-r--r--perl-install/pixmaps/printer_del.pngbin1552 -> 0 bytes-rw-r--r--perl-install/pixmaps/printerdrake.pngbin1602 -> 0 bytes-rw-r--r--perl-install/pixmaps/unselected.pngbin172 -> 0 bytes-rw-r--r--perl-install/pixmaps/wifi-020.pngbin385 -> 0 bytes-rw-r--r--perl-install/pixmaps/wifi-040.pngbin371 -> 0 bytes-rw-r--r--perl-install/pixmaps/wifi-060.pngbin374 -> 0 bytes-rw-r--r--perl-install/pixmaps/wifi-080.pngbin361 -> 0 bytes-rw-r--r--perl-install/pixmaps/wifi-100.pngbin330 -> 0 bytes-rw-r--r--perl-install/pkgs.pm1598
-rw-r--r--perl-install/printer/STATUS5
-rw-r--r--perl-install/printer/common.pm86
-rw-r--r--perl-install/printer/cups.pm147
-rw-r--r--perl-install/printer/data.pm177
-rw-r--r--perl-install/printer/default.pm64
-rw-r--r--perl-install/printer/detect.pm637
-rw-r--r--perl-install/printer/main.pm3010
-rw-r--r--perl-install/printer/printerdrake.pm5548
-rw-r--r--perl-install/printer/services.pm63
-rw-r--r--perl-install/raid.pm12
-rw-r--r--perl-install/resize_fat/.cvsignore5
-rw-r--r--perl-install/run_program.pm13
-rwxr-xr-xperl-install/scanner.pm11
-rw-r--r--perl-install/security/help.pm10
-rw-r--r--perl-install/security/l10n.pm4
-rw-r--r--perl-install/services.pm23
-rw-r--r--perl-install/share/.cvsignore2
-rw-r--r--perl-install/share/advertising/01.pl3
-rw-r--r--perl-install/share/advertising/01.pngbin118868 -> 0 bytes-rw-r--r--perl-install/share/advertising/02.pl3
-rw-r--r--perl-install/share/advertising/02.pngbin130309 -> 0 bytes-rw-r--r--perl-install/share/advertising/03.pl3
-rw-r--r--perl-install/share/advertising/03.pngbin103469 -> 0 bytes-rw-r--r--perl-install/share/advertising/04.pl3
-rw-r--r--perl-install/share/advertising/04.pngbin128549 -> 0 bytes-rw-r--r--perl-install/share/advertising/05.pl3
-rw-r--r--perl-install/share/advertising/05.pngbin64047 -> 0 bytes-rw-r--r--perl-install/share/advertising/06.pl3
-rw-r--r--perl-install/share/advertising/06.pngbin120364 -> 0 bytes-rw-r--r--perl-install/share/advertising/07.pl3
-rw-r--r--perl-install/share/advertising/07.pngbin117847 -> 0 bytes-rw-r--r--perl-install/share/advertising/08.pl3
-rw-r--r--perl-install/share/advertising/08.pngbin101301 -> 0 bytes-rw-r--r--perl-install/share/advertising/09.pl3
-rw-r--r--perl-install/share/advertising/09.pngbin139248 -> 0 bytes-rw-r--r--perl-install/share/advertising/10.pl3
-rw-r--r--perl-install/share/advertising/10.pngbin114298 -> 0 bytes-rw-r--r--perl-install/share/advertising/11.pl3
-rw-r--r--perl-install/share/advertising/11.pngbin121135 -> 0 bytes-rw-r--r--perl-install/share/advertising/12.pl4
-rw-r--r--perl-install/share/advertising/12.pngbin83498 -> 0 bytes-rw-r--r--perl-install/share/advertising/13.pl3
-rw-r--r--perl-install/share/advertising/13.pngbin144564 -> 0 bytes-rw-r--r--perl-install/share/advertising/14.pl3
-rw-r--r--perl-install/share/advertising/14.pngbin108585 -> 0 bytes-rw-r--r--perl-install/share/advertising/15.pl3
-rw-r--r--perl-install/share/advertising/15.pngbin132836 -> 0 bytes-rw-r--r--perl-install/share/advertising/16.pl3
-rw-r--r--perl-install/share/advertising/16.pngbin132097 -> 0 bytes-rw-r--r--perl-install/share/advertising/17.pl3
-rw-r--r--perl-install/share/advertising/17.pngbin103010 -> 0 bytes-rw-r--r--perl-install/share/advertising/18.pl3
-rw-r--r--perl-install/share/advertising/18.pngbin150303 -> 0 bytes-rw-r--r--perl-install/share/advertising/19.pl3
-rw-r--r--perl-install/share/advertising/19.pngbin110817 -> 0 bytes-rw-r--r--perl-install/share/advertising/20.pl3
-rw-r--r--perl-install/share/advertising/20.pngbin111347 -> 0 bytes-rw-r--r--perl-install/share/advertising/21.pl3
-rw-r--r--perl-install/share/advertising/21.pngbin112176 -> 0 bytes-rw-r--r--perl-install/share/advertising/22.pl3
-rw-r--r--perl-install/share/advertising/22.pngbin110507 -> 0 bytes-rw-r--r--perl-install/share/advertising/23.pl3
-rw-r--r--perl-install/share/advertising/23.pngbin102567 -> 0 bytes-rw-r--r--perl-install/share/advertising/24.pl3
-rw-r--r--perl-install/share/advertising/24.pngbin84918 -> 0 bytes-rw-r--r--perl-install/share/advertising/25.pl3
-rw-r--r--perl-install/share/advertising/25.pngbin153257 -> 0 bytes-rw-r--r--perl-install/share/advertising/26.pl3
-rw-r--r--perl-install/share/advertising/26.pngbin89948 -> 0 bytes-rw-r--r--perl-install/share/advertising/Makefile11
-rw-r--r--perl-install/share/advertising/README4
-rw-r--r--perl-install/share/advertising/intel.pl3
-rw-r--r--perl-install/share/advertising/intel.pngbin7920 -> 0 bytes-rw-r--r--perl-install/share/advertising/list-dis26
-rw-r--r--perl-install/share/advertising/list-dwd28
-rw-r--r--perl-install/share/advertising/list-ppp26
-rw-r--r--perl-install/share/advertising/list-pwp26
-rw-r--r--perl-install/share/advertising/skype.pl3
-rw-r--r--perl-install/share/advertising/skype.pngbin17190 -> 0 bytes-rw-r--r--perl-install/share/aliases8
-rw-r--r--perl-install/share/compssUsers.pl249
-rw-r--r--perl-install/share/devices19
-rw-r--r--perl-install/share/fonts.tar.bz2bin1090234 -> 0 bytes-rw-r--r--perl-install/share/keyboards.tar.bz2bin31858 -> 0 bytes-rw-r--r--perl-install/share/locales-skeleton.tar.bz2bin1664 -> 0 bytes-rw-r--r--perl-install/share/logo-mandriva.pngbin16522 -> 0 bytes-rw-r--r--perl-install/share/po/.cvsignore5
-rw-r--r--perl-install/share/po/DrakX.pot22661
-rw-r--r--perl-install/share/po/Makefile39
-rw-r--r--perl-install/share/po/af.po28198
-rw-r--r--perl-install/share/po/am.po21140
-rw-r--r--perl-install/share/po/ar.po25363
-rw-r--r--perl-install/share/po/az.po24707
-rw-r--r--perl-install/share/po/b_dump_strings.pm113
-rw-r--r--perl-install/share/po/be.po21524
-rw-r--r--perl-install/share/po/bg.po23503
-rw-r--r--perl-install/share/po/bn.po24992
-rw-r--r--perl-install/share/po/br.po21768
-rw-r--r--perl-install/share/po/bs.po25805
-rw-r--r--perl-install/share/po/ca.po28641
-rw-r--r--perl-install/share/po/cs.po24410
-rw-r--r--perl-install/share/po/cy.po25996
-rw-r--r--perl-install/share/po/da.po23868
-rw-r--r--perl-install/share/po/de.po24735
-rw-r--r--perl-install/share/po/el.po23892
-rw-r--r--perl-install/share/po/eo.po22187
-rw-r--r--perl-install/share/po/es.po26048
-rw-r--r--perl-install/share/po/et.po24394
-rw-r--r--perl-install/share/po/eu.po24388
-rw-r--r--perl-install/share/po/fa.po25489
-rw-r--r--perl-install/share/po/fi.po27494
-rw-r--r--perl-install/share/po/fr.po24796
-rw-r--r--perl-install/share/po/fur.po20957
-rw-r--r--perl-install/share/po/ga.po21413
-rw-r--r--perl-install/share/po/gl.po23379
-rw-r--r--perl-install/share/po/he.po23277
-rw-r--r--perl-install/share/po/hi.po25014
-rw-r--r--perl-install/share/po/hr.po23284
-rw-r--r--perl-install/share/po/hu.po24185
-rw-r--r--perl-install/share/po/id.po27083
-rw-r--r--perl-install/share/po/is.po23742
-rw-r--r--perl-install/share/po/it.po24354
-rw-r--r--perl-install/share/po/ja.po25003
-rw-r--r--perl-install/share/po/ko.po22463
-rw-r--r--perl-install/share/po/ky.po21621
-rw-r--r--perl-install/share/po/libDrakX.pot5931
-rw-r--r--perl-install/share/po/lt.po22213
-rw-r--r--perl-install/share/po/ltg.po23133
-rw-r--r--perl-install/share/po/lv.po22917
-rw-r--r--perl-install/share/po/mk.po23724
-rw-r--r--perl-install/share/po/mn.po21796
-rw-r--r--perl-install/share/po/ms.po21017
-rw-r--r--perl-install/share/po/mt.po25227
-rw-r--r--perl-install/share/po/nb.po24878
-rw-r--r--perl-install/share/po/nl.po25711
-rw-r--r--perl-install/share/po/nn.po22611
-rw-r--r--perl-install/share/po/pa_IN.po23266
-rw-r--r--perl-install/share/po/pl.po24434
-rw-r--r--perl-install/share/po/pt.po24270
-rw-r--r--perl-install/share/po/pt_BR.po24752
-rw-r--r--perl-install/share/po/ro.po22166
-rw-r--r--perl-install/share/po/ru.po24681
-rw-r--r--perl-install/share/po/sc.po21000
-rw-r--r--perl-install/share/po/sk.po25936
-rw-r--r--perl-install/share/po/sl.po24377
-rw-r--r--perl-install/share/po/sq.po25346
-rw-r--r--perl-install/share/po/sr.po24261
-rw-r--r--perl-install/share/po/sr@Latn.po24286
-rw-r--r--perl-install/share/po/sv.po25830
-rw-r--r--perl-install/share/po/ta.po22808
-rw-r--r--perl-install/share/po/tg.po24453
-rw-r--r--perl-install/share/po/th.po22507
-rw-r--r--perl-install/share/po/tl.po28917
-rw-r--r--perl-install/share/po/tr.po24127
-rw-r--r--perl-install/share/po/uk.po25652
-rw-r--r--perl-install/share/po/uz.po22350
-rw-r--r--perl-install/share/po/uz@Latn.po22415
-rwxr-xr-xperl-install/share/po/validate.pl6
-rw-r--r--perl-install/share/po/vi.po25489
-rw-r--r--perl-install/share/po/wa.po25259
-rw-r--r--perl-install/share/po/zh_CN.po23247
-rw-r--r--perl-install/share/po/zh_TW.po23095
-rw-r--r--perl-install/share/rpmsrate793
-rw-r--r--perl-install/share/selected.pngbin344 -> 0 bytes-rw-r--r--perl-install/share/symlinks.x86_641
-rwxr-xr-xperl-install/share/theme-editor.pl164
-rw-r--r--perl-install/standalone.pm11
-rwxr-xr-xperl-install/standalone/autosetupprintqueues100
-rwxr-xr-xperl-install/standalone/bootloader-config46
-rwxr-xr-xperl-install/standalone/diskdrake7
-rwxr-xr-xperl-install/standalone/drakTermServ2198
-rwxr-xr-xperl-install/standalone/drakautoinst7
-rwxr-xr-xperl-install/standalone/drakbackup4580
-rwxr-xr-xperl-install/standalone/drakboot80
-rwxr-xr-xperl-install/standalone/drakbug54
-rwxr-xr-xperl-install/standalone/drakclock123
-rw-r--r--perl-install/standalone/drakedm5
-rwxr-xr-xperl-install/standalone/drakfloppy64
-rwxr-xr-xperl-install/standalone/drakfont171
-rw-r--r--perl-install/standalone/drakhelp4
-rwxr-xr-xperl-install/standalone/drakperm112
-rwxr-xr-xperl-install/standalone/drakpxe510
-rwxr-xr-xperl-install/standalone/draksec86
-rwxr-xr-xperl-install/standalone/draksound6
-rwxr-xr-xperl-install/standalone/draksplash101
-rw-r--r--perl-install/standalone/draksplash2306
-rwxr-xr-xperl-install/standalone/drakupdate_fstab18
-rwxr-xr-xperl-install/standalone/drakups6
-rwxr-xr-xperl-install/standalone/drakxtv84
-rwxr-xr-xperl-install/standalone/fileshareset4
-rwxr-xr-xperl-install/standalone/finish-install85
-rwxr-xr-xperl-install/standalone/finish-install.xsetup3
-rwxr-xr-xperl-install/standalone/harddrake2141
-rw-r--r--perl-install/standalone/icons/IC-Dhost-48.pngbin3443 -> 0 bytes-rw-r--r--perl-install/standalone/icons/IC-NFS-48.pngbin2643 -> 0 bytes-rw-r--r--perl-install/standalone/icons/IC-sambaprt-16.pngbin926 -> 0 bytes-rw-r--r--perl-install/standalone/icons/IC-winacces1-48.pngbin2992 -> 0 bytes-rw-r--r--perl-install/standalone/icons/IC-winacces2-16.pngbin982 -> 0 bytes-rw-r--r--perl-install/standalone/icons/drakbug-16.pngbin0 -> 582 bytes-rw-r--r--perl-install/standalone/icons/drakconnect.pngbin4854 -> 0 bytes-rw-r--r--perl-install/standalone/icons/drakfirewall.pngbin3052 -> 0 bytes-rw-r--r--perl-install/standalone/icons/drakgw.pngbin3391 -> 0 bytes-rw-r--r--perl-install/standalone/icons/drakmenustyle-16.pngbin0 -> 886 bytes-rw-r--r--perl-install/standalone/icons/drakmenustyle-24.pngbin0 -> 1768 bytes-rw-r--r--perl-install/standalone/icons/drakmenustyle-32.pngbin0 -> 2423 bytes-rw-r--r--perl-install/standalone/icons/drakmenustyle-52.pngbin0 -> 3656 bytes-rw-r--r--perl-install/standalone/icons/drakmenustyle-64.pngbin0 -> 6564 bytes-rw-r--r--perl-install/standalone/icons/drakmenustyle.pngbin0 -> 4361 bytes-rw-r--r--perl-install/standalone/icons/drakmenustyle_128.pngbin0 -> 14540 bytes-rw-r--r--perl-install/standalone/icons/draksound-16.pngbin0 -> 559 bytes-rw-r--r--perl-install/standalone/icons/draksplash-16.pngbin0 -> 763 bytes-rw-r--r--perl-install/standalone/icons/drakvpn.pngbin3313 -> 0 bytes-rw-r--r--perl-install/standalone/icons/drakwizard-16.pngbin0 -> 740 bytes-rw-r--r--perl-install/standalone/icons/fileopen.xpm34
-rw-r--r--perl-install/standalone/icons/find.xpm34
-rw-r--r--perl-install/standalone/icons/findf.xpm31
-rw-r--r--perl-install/standalone/icons/ftin.xpm30
-rw-r--r--perl-install/standalone/icons/ftout.xpm30
-rw-r--r--perl-install/standalone/icons/hwapplet-16.pngbin0 -> 503 bytes-rw-r--r--perl-install/standalone/icons/hwapplet-24.pngbin0 -> 774 bytes-rw-r--r--perl-install/standalone/icons/hwapplet-32.pngbin0 -> 1235 bytes-rw-r--r--perl-install/standalone/icons/hwapplet-52.pngbin0 -> 2070 bytes-rw-r--r--perl-install/standalone/icons/hwapplet-64.pngbin0 -> 2823 bytes-rw-r--r--perl-install/standalone/icons/hwapplet.pngbin0 -> 1953 bytes-rw-r--r--perl-install/standalone/icons/hwapplet_128.pngbin0 -> 7002 bytes-rw-r--r--perl-install/standalone/icons/ic82-CD-40.pngbin3436 -> 0 bytes-rw-r--r--perl-install/standalone/icons/ic82-back-up-48.pngbin4565 -> 0 bytes-rw-r--r--perl-install/standalone/icons/ic82-discdurwhat-40.pngbin2023 -> 0 bytes-rw-r--r--perl-install/standalone/icons/ic82-dossier-32.pngbin1858 -> 0 bytes-rw-r--r--perl-install/standalone/icons/ic82-moreoption-40.pngbin2354 -> 0 bytes-rw-r--r--perl-install/standalone/icons/ic82-others-40.pngbin2023 -> 0 bytes-rw-r--r--perl-install/standalone/icons/ic82-system-40.pngbin2370 -> 0 bytes-rw-r--r--perl-install/standalone/icons/ic82-users-40.pngbin1638 -> 0 bytes-rw-r--r--perl-install/standalone/icons/ic82-when-40.pngbin2933 -> 0 bytes-rw-r--r--perl-install/standalone/icons/ic82-where-40.pngbin2514 -> 0 bytes-rw-r--r--perl-install/standalone/icons/printerdrake.pngbin1602 -> 0 bytes-rw-r--r--perl-install/standalone/icons/reload.xpm31
-rwxr-xr-xperl-install/standalone/interactive_http/interactive_http.cgi4
-rw-r--r--perl-install/standalone/interactive_http/miniserv.pam8
-rwxr-xr-xperl-install/standalone/listsupportedprinters64
-rwxr-xr-xperl-install/standalone/logdrake22
-rwxr-xr-xperl-install/standalone/lsnetdrake6
-rw-r--r--perl-install/standalone/man/C/man5/drakbackup.542
-rw-r--r--perl-install/standalone/man/C/man5/drakbackup.conf.5193
-rw-r--r--perl-install/standalone/man/C/man8/drakconnect.8109
-rw-r--r--perl-install/standalone/po/Makefile38
-rw-r--r--perl-install/standalone/po/af.po3367
-rw-r--r--perl-install/standalone/po/am.po3151
-rw-r--r--perl-install/standalone/po/ar.po3364
-rw-r--r--perl-install/standalone/po/az.po3332
-rw-r--r--perl-install/standalone/po/be.po3160
-rw-r--r--perl-install/standalone/po/bg.po3214
-rw-r--r--perl-install/standalone/po/bn.po3379
-rw-r--r--perl-install/standalone/po/br.po3232
-rw-r--r--perl-install/standalone/po/bs.po3398
-rw-r--r--perl-install/standalone/po/ca.po3367
-rw-r--r--perl-install/standalone/po/cs.po3389
-rw-r--r--perl-install/standalone/po/cy.po3399
-rw-r--r--perl-install/standalone/po/da.po3403
-rw-r--r--perl-install/standalone/po/de.po3438
-rw-r--r--perl-install/standalone/po/el.po3275
-rw-r--r--perl-install/standalone/po/eo.po3165
-rw-r--r--perl-install/standalone/po/es.po3429
-rw-r--r--perl-install/standalone/po/et.po3381
-rw-r--r--perl-install/standalone/po/eu.po3406
-rw-r--r--perl-install/standalone/po/fa.po3386
-rw-r--r--perl-install/standalone/po/fi.po3396
-rw-r--r--perl-install/standalone/po/fr.po3516
-rw-r--r--perl-install/standalone/po/fur.po3152
-rw-r--r--perl-install/standalone/po/ga.po3160
-rw-r--r--perl-install/standalone/po/gl.po3398
-rw-r--r--perl-install/standalone/po/he.po3330
-rw-r--r--perl-install/standalone/po/hi.po3297
-rw-r--r--perl-install/standalone/po/hr.po3235
-rw-r--r--perl-install/standalone/po/hu.po3403
-rw-r--r--perl-install/standalone/po/id.po3410
-rw-r--r--perl-install/standalone/po/is.po3392
-rw-r--r--perl-install/standalone/po/it.po3422
-rw-r--r--perl-install/standalone/po/ja.po3376
-rw-r--r--perl-install/standalone/po/ko.po3185
-rw-r--r--perl-install/standalone/po/ky.po3261
-rw-r--r--perl-install/standalone/po/libDrakX-standalone.pot3150
-rw-r--r--perl-install/standalone/po/lt.po3163
-rw-r--r--perl-install/standalone/po/ltg.po3216
-rw-r--r--perl-install/standalone/po/lv.po3212
-rw-r--r--perl-install/standalone/po/mk.po3338
-rw-r--r--perl-install/standalone/po/mn.po3183
-rw-r--r--perl-install/standalone/po/ms.po3185
-rw-r--r--perl-install/standalone/po/mt.po3379
-rw-r--r--perl-install/standalone/po/nb.po3412
-rw-r--r--perl-install/standalone/po/nl.po3426
-rw-r--r--perl-install/standalone/po/nn.po3263
-rw-r--r--perl-install/standalone/po/pa_IN.po3336
-rw-r--r--perl-install/standalone/po/pl.po3425
-rw-r--r--perl-install/standalone/po/pt.po3429
-rw-r--r--perl-install/standalone/po/pt_BR.po3431
-rw-r--r--perl-install/standalone/po/ro.po3220
-rw-r--r--perl-install/standalone/po/ru.po3407
-rw-r--r--perl-install/standalone/po/sc.po3181
-rw-r--r--perl-install/standalone/po/sk.po3408
-rw-r--r--perl-install/standalone/po/sl.po3406
-rw-r--r--perl-install/standalone/po/sq.po3364
-rw-r--r--perl-install/standalone/po/sr.po3285
-rw-r--r--perl-install/standalone/po/sr@Latn.po3286
-rw-r--r--perl-install/standalone/po/sv.po3420
-rw-r--r--perl-install/standalone/po/ta.po3191
-rw-r--r--perl-install/standalone/po/tg.po3425
-rw-r--r--perl-install/standalone/po/th.po3168
-rw-r--r--perl-install/standalone/po/tl.po3398
-rw-r--r--perl-install/standalone/po/tr.po3275
-rw-r--r--perl-install/standalone/po/uk.po3402
-rw-r--r--perl-install/standalone/po/uz.po3228
-rw-r--r--perl-install/standalone/po/uz@Latn.po3233
-rw-r--r--perl-install/standalone/po/vi.po3381
-rw-r--r--perl-install/standalone/po/wa.po3425
-rw-r--r--perl-install/standalone/po/zh_CN.po3326
-rw-r--r--perl-install/standalone/po/zh_TW.po3299
-rwxr-xr-xperl-install/standalone/printerdrake616
-rwxr-xr-xperl-install/standalone/scannerdrake62
-rwxr-xr-xperl-install/standalone/service_harddrake52
-rw-r--r--perl-install/standalone/service_harddrake.sh2
-rw-r--r--perl-install/steps.pm47
-rw-r--r--perl-install/timezone.pm288
-rw-r--r--perl-install/ugtk2.pm406
-rw-r--r--perl-install/unused/.cvsignore1
-rwxr-xr-xperl-install/verify_c15
-rw-r--r--perl-install/wizards.pm6
817 files changed, 611759 insertions, 1721658 deletions
diff --git a/perl-install/.cvsignore b/perl-install/.cvsignore
deleted file mode 100644
index a75f8c73b..000000000
--- a/perl-install/.cvsignore
+++ /dev/null
@@ -1,6 +0,0 @@
-.*.sw?
-.perl_checker.cache
-debug.log
-auto
-t.pl
-*.flog
diff --git a/perl-install/.perl_checker b/perl-install/.perl_checker
index 4b052026a..164f7aa34 100644
--- a/perl-install/.perl_checker
+++ b/perl-install/.perl_checker
@@ -1,45 +1,63 @@
-constant
Carp
Carp::Heavy
-encoding
-Libconf
-Libconf::Glueconf::NUT::Ups_conf
-Libconf::Glueconf::Samba::Smb_conf
-Libconf::Templates::Generic::KeyValueSections
-Libconf::Templates::Samba
-Digest::MD5
+Compress::Zlib
+Config::IniFiles
+Cwd
Data::DumpXML
Data::DumpXML::Parser
+Date::Manip
+Digest::MD5
+File::Find
+File::FnMatch
+File::Glob
+File::Path
+File::Temp
Gtk2::Gdk::Keysyms
+Gtk2::Helper
Gtk2::Pango
Gtk2::SimpleList
-Gtk2::Helper
+I18N::Langinfo
+IO::Handle
+IO::Select
+IO::Socket::INET
+IPC::Open2
+Image::Magick
+Libconf
+Libconf::Glueconf::NUT::Ups_conf
+Libconf::Glueconf::Samba::Smb_conf
+Libconf::Templates::Generic::KeyValueSections
+Libconf::Templates::Samba
+Locale::gettext
Net::DBus
Net::DBus::Binding::Watch
-IO::Socket::INET
+Net::LDAP
+RS::Handy
+Scalar::Util
+Sys::Syslog
+Term::ReadKey
Time::HiRes
-Image::Magick
+XML::LibXML
+XML::LibXML::Boolean
+XML::LibXML::Common
+XML::LibXML::Literal
+XML::LibXML::NodeList
+XML::LibXML::Number
+XML::Parser
+base
+constant
+encoding
handle_configs
-IO::Handle
+move
+open
+overload
printer::cups
printer::hpoj
printer::main
printer::printerdrake
scanner
-move
-overload
-packdrake
-Scalar::Util
+urpm::ldap
+urpm::parallel_ka_run
+urpm::parallel_ssh
utf8
-URPM::Build
warnings
warnings::register
-XML::LibXML
-XML::LibXML::Boolean
-XML::LibXML::Common
-XML::LibXML::Literal
-XML::LibXML::NodeList
-XML::LibXML::Number
-XML::Parser
-packdrake
-Locale::gettext
diff --git a/perl-install/ChangeLog b/perl-install/ChangeLog
deleted file mode 100644
index 99c1e19fb..000000000
--- a/perl-install/ChangeLog
+++ /dev/null
@@ -1,87731 +0,0 @@
-2006/03/09 Pixel <pixel at mandriva.com>
-
- * any.pm: as suggested in bug #21524, display the info on hard drives in
- the "boot device" choice
-
-2006/03/08 Olivier Blin <oblin at mandriva.com>
-
- * harddrake/autoconf.pm: fix typo
- enable kbluetoothd if bluetooth is detected
- fix typo
- enable kbluetoothd if bluetooth is detected
-
- * tools/draklive: don't uselessly sleep for 15 seconds waiting for
- usb-storage scan in initrd
- add fixme
- don't start kbluetooth by default
- adjust comments
-
- * network/shorewall.pm: automatically put ppp/ippp interfaces in local
- zone if needed
- automatically put ppp/ippp interfaces in local zone if needed (backport
- from HEAD)
-
- * standalone/finish-install, timezone.pm: reload sys clock from hc once we
- know the real timezone (#21511)
- reload sys clock from hc once we know the real timezone (#21511)
-
- * Xconfig/card.pm: properly handle switch between nvidia & nvidia_legacy
- (backport from HEAD)
-
-2006/03/08 Pixel <pixel at mandriva.com>
-
- * install_any.pm: this is redundant with: grep {
- modules::probe_category("multimedia/$_") }
- modules::sub_categories('multimedia')
- - rename DOCS to CAT_MINIMAL_DOCS
- - cuz otherwise DOCS is a "always" flag and modifying it afterwise is
- useless
- - CAT_DOCS would be not precise enough
- - simplify the "changed" callback
-
- * share/list.xml: no more xpms in pixmaps/
-
- * share/rpmsrate, install_steps_interactive.pm:
- - rename DOCS to CAT_MINIMAL_DOCS
- - cuz otherwise DOCS is a "always" flag and modifying it afterwise is
- useless
- - CAT_DOCS would be not precise enough
- - simplify the "changed" callback
-
-2006/03/07 berthy
-
- * share/po/fr.po: Update french translation
-
-2006/03/07 mareklaane
-
- * share/po/et.po: Fixed errors due to not checking files on previous
- commit...
-
-2006/03/07 Olivier Blin <oblin at mandriva.com>
-
- * devices.pm: add some useful devices for live systems build (backport
- from HEAD, useful to build One right from 2006.0)
-
- * Xconfig/card.pm: backport libgl_config fixes (a bit late since already
- in drakxtools changelog since november...):
- - handle nvidia_legacy
- - don't create broken ld.so.conf.d files (and thus don't run ldconfig
- when not needed)
-
- * tools/draklive: fix comment
- don't check signatures when installing additional packages, it's tricky
- because of media mix
- add all additional media first, there may be some interaction between
- them, and allow additional rpms to pull dependencies from additional
- media
- add hack to use supplementary media
- die if additionnal system rpms can't be installed
- allow to add langs whatever the region
-
-2006/03/07 Pablo Saratxaga <pablo at mandriva.com>
-
- * share/po/cy.po, share/po/wa.po: updated Welsh and Walloon files
-
-2006/03/07 pjetur
-
- * share/po/is.po: Small changes
- Latest sync
- Latest sync
-
-2006/03/07 shivahuang
-
- * share/po/zh_TW.po: updated po file
-
-2006/03/06 cavassin
-
- * share/po/pt_BR.po: Small fixes for pt_BR.
-
-2006/03/06 Till Kamppeter <till at mandriva.com>
-
- * standalone/autosetupprintqueues:
- - Fixed Plug'n'Print: Name of user logged in on the desktop is in
- /var/run/console/console.lock now.
-
-2006/03/05 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: Updated POT file.
-
-2006/03/05 Keld Jrn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: updates
- soft/control-center/po/da.po soft/initscripts/po/da.po
- soft/mdkonline/po/da.po soft/urpmi/po/da.po
- gi/perl-install/share/po/da.po
-
-2006/03/05 mareklaane
-
- * share/po/et.po: Updated Estonian translations.
-
-2006/03/05 Olivier Blin <oblin at mandriva.com>
-
- * tools/draklive: add md5sum to ISO header using mkdcd
- simplify
-
-2006/03/04 Olivier Blin <oblin at mandriva.com>
-
- * any.pm: enable acpi/acpid services when needed, disable them otherwise
- (#21316)
- enable acpi/acpid services when needed, disable them otherwise (#21316)
-
- * diskdrake/resize_ntfs.pm: check for ntfsresize in real root first
- check for ntfsresize in real root first
-
-2006/03/04 shivahuang
-
- * share/po/zh_TW.po: updated po file
-
-2006/03/03 cavassin
-
- * share/po/pt_BR.po: pt_BR 100% translated again ;)
-
-2006/03/03 Gwenole Beauchesne <gbeauchesne at mandriva.com>
-
- * share/rpmsrate, share/rpmsrate.corpo-server,
- share/rpmsrate.corpo-desktop:
- - add a320raid & megaide entries
- - install icewm to handle the background image (-light version doesn't
- handle png)
-
-2006/03/03 Olivier Blin <oblin at mandriva.com>
-
- * standalone/service_harddrake: autoconf laptop services when switching
- between laptop and desktop
- keep $hw_sysconfdir/kernel settings in a hash
- autoconf bluetooth controllers (enable bluetooth service)
- write modules_conf when a firewire controller is detected
- really detect firewire controllers (fix typo)
- backport laptop/bluetooth/firewire autoconf fixes/features from HEAD
-
- * harddrake/data.pm: autoconf bluetooth controllers (enable bluetooth
- service)
- backport laptop/bluetooth/firewire autoconf fixes/features from HEAD
-
- * tools/draklive: make mount know about / in rc.sysinit
- clean /etc/mdadm.conf as well
-
- * share/po/pt_BR.po: remove "Teclado" prefix in pt_BR translation (Till,
- #21265)
-
- * harddrake/autoconf.pm: disable numlock on laptops
- autoconf laptop services when switching between laptop and desktop
- autoconf bluetooth controllers (enable bluetooth service)
- backport laptop/bluetooth/firewire autoconf fixes/features from HEAD
-
-2006/03/03 Pixel <pixel at mandriva.com>
-
- * pixmaps/stock_exit.xpm, pixmaps/stock_left.xpm,
- pixmaps/stock_cancel.xpm, pixmaps/stock_right.xpm, pixmaps/stock_ok.xpm:
- remove obsolete unused
-
- * tools/gencompss, share/verify_modules.pl, tools/i386/sh,
- tools/genmodparm, share/makedev.sh, tools/i386/mkreiserfs,
- tools/alpha/e2fsck.shared, tools/2isdndb.pm, tools/i386/e2fsck.shared,
- tools/2adsldb.pm, tools/closurepkgs, tools/ia64/e2fsck.shared,
- tools/ppc/e2fsck.shared, tools/syncrpms: remove obsolete unused stuff
-
- * network/pxe.pm: simplify (and please perl_checker)
-
- * drakxtools.spec: buildrequire rpm-devel no more needed (since stuff.xs
- doesn't use rpmlib directly)
-
- * install2.pm: no need to open something special since log is done on
- stderr when testing
-
- * commands.pm: use lchown instead of chown (otherwise pbs on broken
- symlinks)
-
- * c/Makefile.PL, c/sbus.c, c/silo.c, c/stuff.xs.pl, Makefile.drakxtools,
- detect_devices.pm: remove unused silo&sbus&prom stuff (was for sparc,
- but untouched for more than 5 years and must be broken
-
- * Makefile.config: remove unused silo&sbus&prom stuff (was for sparc, but
- untouched for more than 5 years and must be broken
- remove unused var VERSION
-
- * pixmaps/ic82-systemeplus-40.png: many ic82-* are still used (mostly by
- drakbackup), but this one is unused
-
- * pixmaps/slpash-drakeprint-2.png: remove unused (and mispelled)
-
- * docs/porting-ugtk, docs/diskdrake.TODO, docs/mdk-9.2,
- docs/9.1_errata.txt, docs/draknet_advanced_doc.txt, docs/BUGS,
- docs/9.0_errata.txt, docs/TODO, docs/spec-DrakX-8.0.html: remove
- obsolete docs
-
-2006/03/02 Olivier Blin <oblin at mandriva.com>
-
- * tools/draklive: try to preserve mode when copying files
-
-2006/03/02 Pixel <pixel at mandriva.com>
-
- * share/rpmsrate: adapt to lsb split
- don't have nscd twice with different rate
-
- * docs/README: update auto_install doc url
-
-2006/03/02 shivahuang
-
- * share/po/zh_TW.po: updated po file
-
-2006/03/02 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/br.po: typo fixes
-
-2006/03/01 Olivier Blin <oblin at mandriva.com>
-
- * tools/draklive: really fix permissions for kbluetooth conf files
- load usb-storage and sleep a "small" bit to be able to boot from USB
- CD-Rom drives
- move ide-generic to end of loaded modules
- clean /etc/iftab and /etc/shorewall/interfaces
-
- * network/network.pm: use network::shorewall::update_interfaces_list()
- don't start/stop the tmdns service during install
- don't start/stop the tmdns service during install
-
- * network/shorewall.pm: add update_interfaces_list
-
- * standalone/service_harddrake: update shorewall interfaces list when a
- new interface is detected (#21252)
- update shorewall interfaces list when a new interface is detected
- (#21252)
-
-2006/03/01 Stew Benedict <sbenedict at mandriva.com>
-
- * standalone/drakbackup: create index files for direct-to-tape too
- clean up some issues with direct-to-tape that came with the star
- additions
- compress the index files
-
-2006/03/01 Thierry Vignaud <tvignaud at mandriva.com>
-
- * harddrake/v4l.pm: update model & tuner lists
-
-2006/02/28 Antoine Ginies <aginies at mandriva.com>
-
- * mdk-stage1/ka.c: fix path to ka-d-client and typo in tar parameter
-
-2006/02/28 Olivier Blin <oblin at mandriva.com>
-
- * any.pm: fix indentation
- symlink old home directory to new one when renaming user (#21384)
- remove spurious comma
- symlink old home directory to new one when renaming user (backport from
- HEAD, #21384)
-
- * standalone/finish-install: ask license after language (#21266)
- ask for timezone (#21271)
- ask license after language (#21266)
- ask for timezone (#21271)
-
-2006/02/28 Pixel <pixel at mandriva.com>
-
- * rescue/make_rescue_img: remove debug code
- handle BOX=... on cmdline
- simplify (since partimage_whole_disk rest_all doesn't handle multi dirs
- anymore)
-
- * rescue/partimage_whole_disk: multiple dirs is not handled anymore,
- correct the usage
-
-2006/02/28 Thierry Vignaud <tvignaud at mandriva.com>
-
- * modules.pm (load_category) load ide-generic for disk/ide (this is a
- working
- fallback for quite a lot of machines)
-
- * diskdrake/interactive.pm (need_migration) fix untranslated messages
- (#21326)
- (need_migration) fix untranslated messages (#21326)
-
-2006/02/27 Olivier Blin <oblin at mandriva.com>
-
- * printer/data.pm: use versionned binary to check for gutenprint-ijs
- (useful if docs are excluded, like in Mandriva One, #21269)
-
- * tools/draklive: allow to disable services
- simplify
- run harddrake because a crappy snd-usb-audio workaround may do something
- at shutdown (#21329)
-
- * bootsplash.pm: don't prepend $::prefix on module load, but when the path
- is actually used (backport from HEAD)
-
-2006/02/27 Pixel <pixel at mandriva.com>
-
- * docs/README: adapt to new cvs web url
-
-2006/02/27 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/rpmsrate: fix matching some devices (we really are looking at
- drivers here, not devices' description)
-
- * standalone/service_harddrake: backported from TRUNK for Mandriva One
- - fix adding storage controllers: set scsi_hostadapter like DrakX does
- instead
- of trying preloading the driver
- - manage hardware_raid class too
-
- * share/po/br.po: update
-
-2006/02/25 shivahuang
-
- * share/po/zh_TW.po: updated po file
-
-2006/02/24 Olivier Blin <oblin at mandriva.com>
-
- * timezone.pm: oops, fix timezone listing (thanks Pixel)
- use -noleaf option when finding timezones (useful over unionfs, #21272)
- oops, fix timezone listing (thanks Pixel)
- use -noleaf option when finding timezones (useful over unionfs, backport
- for #21272)
-
- * tools/draklive: remove /etc/modprobe.conf and /etc/modprobe.preload
- build-machine specific stuff
- load disk/ide as well (Titi)
- allow to copy files in system chroot
-
- * fs/format.pm: ensure_binary_is_installed checks binary chrooted, whereas
- we run the binary non-chrooted (backport from HEAD)
-
-2006/02/24 Pixel <pixel at mandriva.com>
-
- * fs/format.pm: ensure_binary_is_installed checks binary chrooted, whereas
- we run the binary non-chrooted (pb for Mandriva One)
-
-2006/02/23 Olivier Blin <oblin at mandriva.com>
-
- * tools/draklive: look for bootsplash config in live chroot, and try to
- find a '800x600' resolution
- add information message about splash image
-
- * any.pm: remove untested patch
- use groupmod to change group when renaming a user
- perl_checker compliance
- allow to rename an old user (possibly "guest" from a live distribution)
- instead of creating a new one, using info from first added user in
- finish-install
- use groupmod to change group when renaming a user
- don't show release notes after install (not handled yet)
- perl_checker compliance
- allow to rename an old user (possibly "guest" from a live distribution)
- instead of creating a new one, using info from first added user in
- finish-install (backport from HEAD)
-
- * bootsplash.pm: check for correct themes path
- don't prepend $::prefix on module load, but when the path is actually
- used
- fix typo
-
- * standalone/finish-install: allow to rename an old user (possibly "guest"
- from a live distribution) instead of creating a new one, using info from
- first added user in finish-install
- rename config hash as it will contain more settings
- don't try to destroy potentially non-existent wizard window (if some
- steps are skipped for example)
- allow to rename an old user (possibly "guest" from a live distribution)
- instead of creating a new one, using info from first added user in
- finish-install (backport from HEAD)
- rename config hash as it will contain more settings
- don't try to destroy potentially non-existent wizard window (backport
- from HEAD)
-
-2006/02/23 Pixel <pixel at mandriva.com>
-
- * install_steps.pm, any.pm, lang.pm: create lang::lang_changed() to ensure
- {country} is set according to the lang (useful for finish-install where
- choosing fr gives fr_US)
- create lang::lang_changed() to ensure {country} is set according to the
- lang (useful for finish-install where choosing fr gives fr_US)
-
- * help.pm: enforce utf8 (since we use the (R) char)
-
-2006/02/22 Gwenole Beauchesne <gbeauchesne at mandriva.com>
-
- * c/smp-dmi.c: Check the socket is populated during dmi smp detection. I
- know, the code is
- no longer used, but let's make it as "don't get gb depressed for reading
- SMBIOS spec for nothing"
-
-2006/02/22 Olivier Blin <oblin at mandriva.com>
-
- * tools/draklive: remove spurious space
- make sure mtab and fstab don't contain build-machine specific
- configuration
- make sure kbluetoothdrc is readable (useful when building with a
- paranoid secure level)
- use syslinux splash from theme
- use run_program::raw({ root => ... }, ...) instead of various chroot
- commands
-
-2006/02/22 Pixel <pixel at mandriva.com>
-
- * share/list.xml: add monitor-get-edid-using-vbe (introduced in
- monitor-edid 1.9)
-
- * fs/format.pm: it seems -y is needed for mkfs.reiser4 to work without
- prompting
-
-2006/02/22 Stew Benedict <sbenedict at mandriva.com>
-
- * diskdrake/interactive.pm: Allow user to modify xbox partitions on
- non-xbox (thx Pixel)
- Allow user to modify xbox partitions on non-xbox (thx Pixel)
-
-2006/02/22 Thierry Vignaud <tvignaud at mandriva.com>
-
- * tools/draklive: perl_checker cleanups
- make generating the previous HW config file somewhat more readable
-
- * tools/.perl_checker: blacklist a few modules in order to let
- perl_checker parse draklive
-
-2006/02/21 Pixel <pixel at mandriva.com>
-
- * any.pm: only accept users using "Accept user" button, and disable "Next"
- when the
- login name is filled (bugzilla #20712)
-
- * detect_devices.pm: fix typo
- fix typo
-
-2006/02/21 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/rpmsrate: since 1.0.0.rc10 dmraid supports JMicron JMB36x and
- Adaptec HostRAID
-
-2006/02/20 Pixel <pixel at mandriva.com>
-
- * raid.pm: use --force when creating a md with only one device (bugzilla
- #21214)
-
-2006/02/20 shivahuang
-
- * share/po/zh_TW.po: updated po file
-
-2006/02/20 Thierry Vignaud <tvignaud at mandriva.com>
-
- * tools/draklive (post_install_system) explain
- (post_install_system) fix auto configuration on live boot (aka fix
- creating a dummy previous HW configuration)
-
-2006/02/19 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2006/02/18 Keld Jrn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: updates
- soft/initscripts/po/da.po soft/rpmdrake/po/da.po
- gi/perl-install/share/po/da.po
-
-2006/02/18 shivahuang
-
- * share/po/zh_TW.po: updated po file
-
-2006/02/17 Olivier Blin <oblin at mandriva.com>
-
- * tools/draklive: allow to use a local rpmsrate
- fix yet another typo
- fix region suffix
- don't use 'noregion' subdir if $live->{regions} doesn't exist
- remove useless parentheses
- add missing quote
- add the all-regions option to proceed with all regions
- remove unused variable
- move mountpoint in regional workdir
- fix errors from previous commit
- move code in complete_config
- use regional chroots and workdirs
- pass a set of langs to drakx-in-chroot according to region settings
- allow to erase rpms after install (aka the lazy rpmsrate patch)
- don't make kbluetoothdrc display an annoying and useless popup window
- use /etc path to kdm config file
- run drakx-in-chroot with enough timeout slack
- allow to pass run_program options to run_
- try to display an error message when the config file can't be opened
-
- * tools/drakx-in-chroot: allow to use a local rpmsrate
- cat_ didn't handle multiple args in 2006.0 (thanks to Warly for
- reminding me to fix that)
-
-2006/02/17 pjetur
-
- * share/po/is.po: Latest additions
-
-2006/02/17 Pixel <pixel at mandriva.com>
-
- * commands.pm: enhance "bug" command to allow saving report.bug on usb key
-
-2006/02/16 Pablo Saratxaga <pablo at mandriva.com>
-
- * share/fonts.tar.bz2: updated version of Nimbus Sans (with proper gyphs
- for extended cyrillic;
- and the font properly identifies itself as suitable for Vietnamese)
-
-2006/02/16 Pixel <pixel at mandriva.com>
-
- * modules.pm: very titypo
-
-2006/02/16 Thierry Vignaud <tvignaud at mandriva.com>
-
- * modules.pm (when_load_category) do not bother preloading sd_mod for ide
- drivers
-
- * standalone/service_harddrake:
- - fix adding storage controllers: set scsi_hostadapter like DrakX does
- instead
- of trying preloading the driver
- - manage hardware_raid class too
-
-2006/02/15 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/draksambashare: fix problem "atom 0 is not a section"
-
-2006/02/15 Olivier Blin <oblin at mandriva.com>
-
- * mdk-stage1/thirdparty.c: fix potential buffer overflows (thanks to
- Rafael for the advice)
-
-2006/02/15 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
-
- * mdk-stage1/network.c: Fix minor memory leak
-
- * mdk-stage1/tools.c, mdk-stage1/url.c: Fix another couple of potential
- buffer overflows
-
-2006/02/15 Thierry Vignaud <tvignaud at mandriva.com>
-
- * standalone/harddrake2: uploading the hw status to hcl.mandriva.com is
- now done in mcc
-
- * drakxtools.spec: 10.4.11-1mdk
-
-2006/02/14 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
-
- * mdk-stage1/cdrom.c: Remove another potential buffer overflow
-
-2006/02/13 Gwenole Beauchesne <gbeauchesne at mandriva.com>
-
- * install_steps.pm: fix acpi initializer (pixel)
-
-2006/02/13 Olivier Blin <oblin at mandriva.com>
-
- * mdk-stage1/thirdparty.h: use /Mandrake/thirdparty in 10.0 branch
-
- * mdk-stage1/thirdparty.c: try to find modules in a sub-directory named by
- the kernel release
- try to find modules in a sub-directory named by the kernel release
-
- * mdk-stage1/cdrom.c: fallback on ide-generic if needed (requested by
- support team for the Equilinux project)
-
-2006/02/13 Thierry Vignaud <tvignaud at mandriva.com>
-
- * diskdrake/resize_ext2.pm (resize) run_program's 10mn timeout is catching
- resize2fs in real word, let's bump it to 60mn
-
-2006/02/10 cavassin
-
- * share/po/pt_BR.po: More pt_BR translations.
-
-2006/02/10 Gwenole Beauchesne <gbeauchesne at mandriva.com>
-
- * Newt/Newt.xs: fix varargs
-
-2006/02/09 Olivier Blin <oblin at mandriva.com>
-
- * tools/draklive: copy rpms in chroot and use rpm from the chroot (to
- avoid rpm version mismatch)
-
- * mdk-stage1/Makefile, mdk-stage1/thirdparty.h, mdk-stage1/disk.c,
- mdk-stage1/partition.c, mdk-stage1/tools.c, mdk-stage1/stage1.h,
- mdk-stage1/tools.h, mdk-stage1/thirdparty.c, mdk-stage1/stage1.c,
- mdk-stage1/partition.h, mdk-stage1/probing.h, mdk-stage1/probing.c:
- backport thirdparty support
-
-2006/02/09 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/ja.po: update (Yukiko Bando)
-
- * standalone/drakfont (uninstall) "Uninstall List" is both confusing and
- wrong since the
- button really offer to select font directories to uninstall (it
- doesn't offer to uninstall the whole list or the list of selected
- fonts)
- (show_list_to_remove) nicer GUI:
- - use standard verbs on button
- - use a standard & meaningfull title
- - add a sentence explaining the purpose of the dialog
- bump copyright
-
-2006/02/08 Gwenole Beauchesne <gbeauchesne at mandriva.com>
-
- * rescue/make_rescue_img: fix operator
- add possibility to use non -BOOT kernels for isolinux boot
-
- * pkgs.pm: Fix CD0 support (warly)
-
- * share/rpmsrate: remove duplicates
-
- * share/rpmsrate.corpo-desktop: Poor man's way (old style) to install
- additionnal packages for laptops. Here,
- that's cpufreq (older HP laptop program)
-
- * install_steps.pm: handle cases where with booted with a full acpi
- capable kernel
-
-2006/02/08 Thierry Vignaud <tvignaud at mandriva.com>
-
- * standalone/drakfont (font_choice) enable to select fonts with upcase
- letters in file extensions (#16948)
-
-2006/02/07 Thierry Vignaud <tvignaud at mandriva.com>
-
- * harddrake/data.pm: fix detecting some ATA devices (#21034)
-
-2006/02/06 Thierry Vignaud <tvignaud at mandriva.com>
-
- * standalone/drakfont: handle *.ttc fonts too
-
-2006/02/05 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/it.po: Updated Italian translations from Andrea Celli
- <andrea.celli@libero.it>.
-
-2006/02/03 Pixel <pixel at mandriva.com>
-
- * detect_devices.pm: oops, perl_checker compliance
- - fix dmidecode_category() (returning a list)
- - c::dmiDetectMemory() was in smp-dmi.c which is dropped, creating
- dmi_detect_memory instead
-
-2006/02/02 Pixel <pixel at mandriva.com>
-
- * fsedit.pm: log test_for_bad_drives errors
-
-2006/01/30 Pixel <pixel at mandriva.com>
-
- * any.pm: force creation of a non-root user on standard security level
- (esp. since kdm doesn't permit root login anymore by default)
- (thanks to Neoclust)
-
-2006/01/30 shivahuang
-
- * share/po/zh_TW.po: updated po file
-
-2006/01/29 berthy
-
- * share/po/fr.po: Update french translation
-
-2006/01/28 Thierry Vignaud <tvignaud at mandriva.com>
-
- * drakxtools.spec: drop msec requires so that python is not part of
- basesystem (anyway
- it's installed by rpmsrate at a higher priority than drakxtools is
- (through drakconf))
-
- * standalone/draksec: install msec if needed
-
- * harddrake/v4l.pm: perl_checko cleanup
-
- * share/po/br.po: update
-
-2006/01/27 Olivier Blin <oblin at mandriva.com>
-
- * install_steps_interactive.pm: fix titi sucks :) (backport from cooker,
- fixed by Pixel)
-
-2006/01/27 Thierry Vignaud <tvignaud at mandriva.com>
-
- * drakxtools.spec: 10.4.10-1mdk
-
- * share/po/fr.po: update
-
- * harddrake/sound.pm: add support for new snd-als300 sound driver
- prevent some "unlisted driver" errors in harddrake
-
- * harddrake/v4l.pm: sync bttv, cx88 and saa7134 driver model lists with
- kernel-2.6.16-rc1-mm2
-
-2006/01/27 willysr
-
- * share/po/id.po: Updated
-
-2006/01/26 Pablo Saratxaga <pablo at mandriva.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: updated pot file
-
-2006/01/26 Pixel <pixel at mandriva.com>
-
- * install_gtk.pm: display & update steps during graphical auto_installs
- (which never go through
- the Gtk2 main loop)
- for auto_installs which never go through the Gtk2 main loop
-
-2006/01/25 Stew Benedict <sbenedict at mandriva.com>
-
- * standalone/drakTermServ: More support for TS2
-
-2006/01/24 Pixel <pixel at mandriva.com>
-
- * mdk-stage1/insmod-modutils/util/config.c,
- mdk-stage1/insmod-modutils/obj/obj_kallsyms.c,
- mdk-stage1/insmod-modutils/util/modstat.c: be compliant with recent gcc
- (from peroyvind)
-
- * pkgs.pm: fix selected_leaves() dropping all packages in a circular
- reference
- (including short circular references like amarok-engine-arts ->
- libamarokarts.so -> amarok-engine-arts)
- fix selected_leaves(): it was dropping all packages in a circular
- reference
- (including short circular references like amarok-engine-arts ->
- libamarokarts.so -> amarok-engine-arts)
-
- * do_pkgs.pm: protect against no $do->in
-
-2006/01/21 Till Kamppeter <till at mandriva.com>
-
- * printer/main.pm:
- - Improvements and fixes on printer model/driver listing in
- printerdrake
- o Corrected handling of PPD links in Foomatic printer XML files,
- no the prinyer list entries have the correct model names of the
- Foomatic printer XML files and so PPDs linked to multiple
- printers appear with each linked printer in printerdrake. This
- also avoids duplicate "(Recommended)" tags for one printer
- (problem occured with HP LaserJet 1200).
- o Avoid duplicate PPD entries for Foomatic-generated PPDs and
- identical pre-generated Foomatic PPDs in /usr/share/cups/model.
- This problem occured when the hplip-hpijs-ppds package is
- installed.
- o Some polishing of list entries.
- o Reduced Perl warnings.
-
-2006/01/20 Pixel <pixel at mandriva.com>
-
- * detect_devices.pm: handle new dmidecode output
- handle new dmidecode output
-
-2006/01/20 Till Kamppeter <till at mandriva.com>
-
- * scanner.pm, standalone/scannerdrake:
- - Moved loading of kernel modules before the port checking step, the
- device file is usually generated when the module is loaded
- - Support for loading kernel modules only in case of a certain
- connection type (SCSI, USB, Parport).
- - Let kernel module only be added to /etc/modules and
- /etc/modprobe.preload if loading of the module with "modprobe"
- succeeded.
- - Do not die when loading of a kernel module does not succeed.
- - s/Hewlett Packard/Hewlett-Packard/ when generating ScannerDB.
-
- * printer/printerdrake.pm:
- - Fixed HPLIP setup when setting up a printer without auto-detection
- (bug #20231).
-
- * printer/main.pm:
- - Give priority to custom PPD file if printer queue record in
- printerdrake is broken, use "Postscript" if Foomatic driver is
- wrongly set to "PPD", should fix bug #20028.
-
-2006/01/19 Pablo Saratxaga <pablo at mandriva.com>
-
- * keyboard.pm: updated list of console keyboards
-
-2006/01/19 Pixel <pixel at mandriva.com>
-
- * patch/patch-rh9-mdk10.pl: fix typo
-
-2006/01/18 Pixel <pixel at mandriva.com>
-
- * bootloader.pm:
- - read all per entry entries (esp. makeactive)
- - write makeactive
- - have makeactive for windows entries (bugzilla #20081)
-
-2006/01/18 shivahuang
-
- * share/po/zh_TW.po: updated po file
-
-2006/01/18 willysr
-
- * share/po/id.po: Updated
-
-2006/01/17 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: Updated POT file
-
-2006/01/17 Pablo Saratxaga <pablo at mandriva.com>
-
- * share/kmap2bkmap, share/keymaps.tar.bz2: updated console map files
- (also, using utf-8 maps for non-ascii chars)
-
-2006/01/17 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/rpmsrate: drop scim-m17n from list of alternatives since it's
- selected for "vi"
-
-2006/01/13 huftis
-
- * share/po/nn.po: Updated translation.
-
-2006/01/13 Pixel <pixel at mandriva.com>
-
- * share/list.xml: monitor-edid now needs File::Find
-
- * install_steps_newt.pm: unset DISPLAY so that code testing wether DISPLAY
- is set can know we don't have or use X (thanks to gégé)
-
- * standalone/fileshareset: put kde's enhancements (backward compatible)
- - multi distro
- - new variables in fileshare.conf
-
- * Xconfig/monitor.pm: 1024x768@70Hz monitor is too high (cf #20304)
-
- * install2.pm: be more explicit in the log about defaulting to newt
-
-2006/01/12 Pixel <pixel at mandriva.com>
-
- * patch/patch-2006-above-2TB.pl: use BLKGETSIZE64 to allow detecting
- partitions bigger than 2TB, and use
- "double" instead of "unsigned int" (nb: it means we will use doubles
- instead
- of ints for computing things, this works quite nicely up to 100_000TB
- doing this in perl so that there is no need to recompile stuff.so
-
- * Xconfig/resolution_and_depth.pm: defaulting to 1024x768 instead of
- 800x600 when the monitor size is unknown
- (since a lot of people expect this, and that's what fedora is doing, cf
- #20304)
-
- * c/stuff.xs.pl: replacing double with NV as suggested by rafael:
- NV is the portable typedef perl's Configure figures out for floating
- point
- values. And since it's an internal type the typemap is easier. See:
- $ perl -V:nvtype
- nvtype='double';
- use BLKGETSIZE64 to allow detecting partitions bigger than 2TB, and use
- "double" instead of "unsigned int" (nb: it means we will use doubles
- instead
- of ints for computing things, this works quite nicely up to 100_000TB
-
- * c.pm: less verbose
- use BLKGETSIZE64 to allow detecting partitions bigger than 2TB, and use
- "double" instead of "unsigned int" (nb: it means we will use doubles
- instead
- of ints for computing things, this works quite nicely up to 100_000TB
- doing this in perl so that there is no need to recompile stuff.so
-
-2006/01/12 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/br.po: update
-
-2006/01/11 Thierry Vignaud <tvignaud at mandriva.com>
-
- * standalone/service_harddrake: add a comment
-
-2006/01/10 huftis
-
- * share/po/nn.po: Updated Norwegian Nynorsk translation.
-
-2006/01/10 Pixel <pixel at mandriva.com>
-
- * c/stuff.xs.pl, c/smp-dmi.c, c/smp.h, c/smp.c, c/README, c/smp-test.c,
- c/Makefile.PL: look for "NR_CPUS limit of 1 reached" instead of looking
- MP tables by hand, or using DMI info (often broken)
-
- * install_steps.pm: don't set KBCHARSET in /etc/sysconfig/keyboard, this
- is not useful
- (and we don't modify it in keyboarddrake)
-
- * detect_devices.pm: look for "NR_CPUS limit of 1 reached" instead of
- looking MP tables by hand, or using DMI info (often broken)
- look for "NR_CPUS limit of 1 reached" instead of looking MP tables by
- hand, or using DMI info (often broken)
-
-2006/01/10 Thierry Vignaud <tvignaud at mandriva.com>
-
- * standalone/service_harddrake.sh: this service is *NOT* interactive
-
-2006/01/09 huftis
-
- * share/po/nn.po: Updated nn translation.
-
-2006/01/09 Olivier Blin <oblin at mandriva.com>
-
- * standalone/service_harddrake.sh: convert parallel init to LSB
-
-2006/01/09 Pixel <pixel at mandriva.com>
-
- * fsedit.pm: allow giving {percent_size} instead of {size}
-
-2006/01/09 shivahuang
-
- * share/po/zh_TW.po: updated po file
-
-2006/01/09 Till Kamppeter <till at mandriva.com>
-
- * printer/printerdrake.pm:
- - Moved button for daemon-less CUPS client mode to the top of the CUPS
- configuration dialog, to make it more visible, so that the user sees
- more easily when he has activated this mode accidentally.
-
- * printer/main.pm:
- - Make sure that when a user supplies an updated PPD file, the new
- file and not the old one from the system gets used.
-
-2006/01/06 cavassin
-
- * share/po/pt_BR.po: More pt_BR fixes.
-
-2006/01/06 Pixel <pixel at mandriva.com>
-
- * tools/mailchangelog.pl: update to new mailing list name
-
-2006/01/06 Thierry Vignaud <tvignaud at mandriva.com>
-
- * Xconfig/card.pm: option IgnoreEDID is no more needed with nvidia driver
-
-2006/01/04 huftis
-
- * share/po/nn.po: Updated nn translation.
-
-2006/01/04 Pixel <pixel at mandriva.com>
-
- * install_steps.pm: ugly hack to make things work when /proc/mounts says
- /dev/root is mounted in /mnt
-
-2006/01/03 Olivier Blin <oblin at mandriva.com>
-
- * wizards.pm: fix typo
- don't have a useless empty hash in wizards objects, use the wizards hash
- fix typo
- fix documentation typo
-
- * network/netconnect.pm, standalone/draksambashare, standalone/drakups,
- standalone/drakconnect, standalone/logdrake, standalone/drakgw,
- tools/draklive: don't have a useless empty hash in wizards objects, use
- the wizards hash
-
-2006/01/03 shivahuang
-
- * share/po/zh_TW.po: updated po file
-
-2006/01/03 Thierry Vignaud <tvignaud at mandriva.com>
-
- * network/ethernet.pm (get_eth_cards) simplify
-
-2006/01/02 Olivier Blin <oblin at mandriva.com>
-
- * tools/draklive: use -boot prefix in syslinux file only if a specific
- boot type is specified
-
- * standalone/service_harddrake.sh: require dkms
- add parallel init support (Couriousous)
-
- * drakxtools.spec: refer to DrakXTools on the wiki
-
-2006/01/02 Stew Benedict <sbenedict at mandriva.com>
-
- * standalone/drakTermServ: check/sanitize user input MAC addresses, add
- tooltips (#20384)
-
-2006/01/02 Thierry Vignaud <tvignaud at mandriva.com>
-
- * install_any.pm: typo fix (#13292)
-
- * drakxtools.spec: fix URL
- 10.4.9-1mdk
- 10.4.8-1mdk
-
- * detect_devices.pm: better not dying (#20340) it looks like there do be
- some devices out
- for which we failed to get proper data
-
-2005/12/31 xalba
-
- * share/po/eu.po: osatu gabe
-
-2005/12/30 Stew Benedict <sbenedict at mandriva.com>
-
- * standalone/drakTermServ: Add support for custom kernel args in initrd
- Add support for future unionfs/TS2
- Perl_checker fixes
-
-2005/12/29 Olivier Blin <oblin at mandriva.com>
-
- * diskdrake/resize_ext2.pm: remove incorrect and unused check (anyway,
- e2fsprogs is required by basesystem)
-
- * tools/draklive: use --inplace option in rsync, to avoid missing space
- when overwriting an existing live system
- don't record loopbacks on boot master
- name the boot cdrom master as boot.iso (and factorize)
- allow to use --boot-only for master/format/record steps
- add optionnal boot storage type in $media->{boot} and build a custom
- syslinux-boot.cfg for it
- rename refresh_boot_only as boot_only
- remove --record-boot option, this can be achieved using --boot-only
- --record now
- fix spacing
- add --boot-only option to prepare for special boot images
- use dashes instead of underscores in command line options
- require root capabilities
- sort storage types
-
-2005/12/29 pjetur
-
- * share/po/is.po: Fix missing, spelling, better translations
-
-2005/12/28 Olivier Blin <oblin at mandriva.com>
-
- * keyboard.pm, standalone/keyboarddrake: create new function and use it
- (backport for finish-install)
-
- * tools/draklive: install packages using urpmi --auto
- add some minimal help in syslinux
-
- * network/drakfirewall.pm: remove unused variable
- don't install and configure mandi-ifw if ifw is disabled
-
-2005/12/28 Pixel <pixel at mandriva.com>
-
- * install_steps_interactive.pm: fix titi sucks :)
-
- * lang.pm (backport) restore behaviour broken in commit 1.371 (nb: {lang}
- is not always set in {langs} at that time)
-
- * common.pm: let packages using common.pm to use Locale::gettext without
- requiring it
-
-2005/12/27 Olivier Blin <oblin at mandriva.com>
-
- * standalone/finish-install: allow to blacklist steps in
- /etc/sysconfig/finish-install (backport)
- locale is now set by any::selectLanguage_standalone
- add ask_keyboard step (backport)
-
- * any.pm: fix for localedrake in text mode (backport of patch from Pixel)
-
- * tools/draklive: check that abs_path doesn't fail to find (rpm/patch)
- files
- add missing newline characters
- add patches config option to apply patches on the installed system
- remove urpmi media added by drakx-in-chroot, they're unusable
- perl_checker fix
- add --post_install option to run post install only (rpms and patches
- installation)
- rename patch option as patch_install
- fix stupid mistake
- don't allow to go on if no device is selected (thanks to Sylvie \o/)
-
- * Xconfig/card.pm: check for nvidia_drv.so (as well as nvidia_drv.o)
- check for nvidia_drv.so (as well as nvidia_drv.o)
-
- * Makefile: keep install_messages.pm for finish-install (i.e. don't break
- finish-install in 2006.0)
-
-2005/12/26 Olivier Blin <oblin at mandriva.com>
-
- * tools/draklive: add a copy wizard
- umount eventually mounted usb devices before formatting or running
- syslinux
- move default prefix in a dedicated hash
- make options sourced from --config overwrite previous settings
-
-2005/12/22 Thierry Vignaud <tvignaud at mandriva.com>
-
- * standalone.pm: add support for $::no_global_argv_parsing, enabling to
- NOT using common option
- managemnt (eg: when using Getopt)
-
- * raid.pm: we shouldn't rely on callers to load missing modules...
-
- * drakxtools.spec: 10.4.7-1mdk
-
-2005/12/21 Olivier Blin <oblin at mandriva.com>
-
- * tools/draklive: big rework to be able to record live system on multiple
- media:
- - make bootloader/master/record steps media-specific
- - build bootloader files for each media (create bootloader files in
- boot/<storage_type> directory, to ease live duplication)
- - merge initrd step in bootloader step
- - add extra_media configuration key, to specify alternate
- media/storage
- - create loopbacks files in a loopbacks sub-directory
- - duplicate usb bootloader files at root of the usb media (for
- syslinux to find them)
- - create initrd mountpoints in /live and move them in the new root
- using "mount --move" (requires /bin/mount)
- - merge most media defaults in storage settings
-
-2005/12/20 Frederic Lepied <flepied at mandriva.com>
-
- * share/rpmsrate: added kdegraphics-kpdf
-
-2005/12/20 Pixel <pixel at mandriva.com>
-
- * patch/patch-2006-bad-fonts.pl: some fonts are not seen by fontconfig
- because of a packaging pb, force a rebuild of fc cache
-
-2005/12/19 Olivier Blin <oblin at mandriva.com>
-
- * tools/draklive: use rsync to copy files on usb media
- disable network, authentication and users step in finish-install
- fix mkisofs options ordering
-
-2005/12/19 Thierry Vignaud <tvignaud at mandriva.com>
-
- * lang.pm: from Yukiko Bando:
- - kasumi is now required by scim-anthy
- - uim-anthy is obsolete
-
- * share/rpmsrate: install uim-qtimmodule too for KDE (Yukiko Bando)
- kasumi is now required by scim-anthy (Yukiko Bando)
-
- * detect_devices.pm (getSCSI_26) add a comment
- (getSCSI_26) be more robust (aka do not silently not detect hard disks
- when kernel sysfs exports got changed)
- (getSCSI_26) handle kernel-2.6.14+
-
- * drakxtools.spec: commit 10.4.6-1mdk's changes that pixel forgot to
- commit
-
-2005/12/18 Olivier Blin <oblin at mandriva.com>
-
- * network/adsl.pm: don't overwrite ONBOOT setting when writing adsl
- configuration (#20089)
-
-2005/12/18 Pixel <pixel at mandriva.com>
-
- * standalone/net_applet: replace sprintf_fixutf8 with simple sprintf
-
- * fsedit.pm: allow auto allocating partitions without giving a {mntpoint}
-
- * common.pm, standalone.pm: allow common.pm and standalone.pm to be used
- in drakxtools-backend without perl-Locale-gettext
-
- * run_program.pm: fix bad typo
-
-2005/12/05 Antoine Ginies <aginies at mandriva.com>
-
- * docs/HACKING: add missgin requires to build GI
-
-2005/12/05 Olivier Blin <oblin at mandriva.com>
-
- * tools/draklive: revert to cp_f
- add support for writable sparse loopbacks
-
-2005/12/05 willysr
-
- * share/po/id.po: Updated
-
-2005/12/04 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: Updated POT file.
-
-2005/12/02 Olivier Blin <oblin at mandriva.com>
-
- * install_steps_auto_install.pm, install2.pm,
- install_steps_interactive.pm: load all ethernet modules in all
- installation modes (fixes the problem of firewire not being loaded in
- automatic mode)
-
- * mdk-stage1/mount.c, mdk-stage1/tools.c: support jfs and xfs
-
-2005/12/02 Pixel <pixel at mandriva.com>
-
- * fsedit.pm: lilo handles / on RAID1, so don't warn in that case (#20021)
-
- * fs/mount_options.pm: add user_xattr (useful for beagle, cf bugzilla
- #15068)
-
-2005/12/02 Thierry Vignaud <tvignaud at mandriva.com>
-
- * harddrake/sound.pm (do_switch) make it more readable
-
-2005/12/01 Warly <warly at mandriva.com>
-
- * share/rpmsrate: add cdrdao-gcdmaster to burn audio on gnome
-
-2005/11/30 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: Updated POT file.
-
-2005/11/30 Thierry Vignaud <tvignaud at mandriva.com>
-
- * diskdrake/hd_gtk.pm, diskdrake/smbnfs_gtk.pm, diskdrake/interactive.pm,
- install_interactive.pm, install_steps_interactive.pm: typo fix
-
- * drakxtools.spec: 10.4.4-1mdk
-
- * share/po/br.po: typo fix
- update
-
-2005/11/30 willysr
-
- * share/po/id.po: Updated
-
-2005/11/29 Olivier Blin <oblin at mandriva.com>
-
- * tools/draklive: documentation fix
- don't die if non-mandatory modules are missing, warn and skip them
- add reference to the wiki page
- initial import
-
- * network/shorewall.pm: update zones file for shorewall 3.0
-
-2005/11/29 Thierry Vignaud <tvignaud at mandriva.com>
-
- * Makefile: remove old outdated cleanup rule (it's no more needed for
- years)
-
- * docs/HACKING: clean build requires:
- - glib2-devel and gtk+2-devel are *NOT* needed
- - ext2fs2-devel is no more needed (we use vol_id now)
- - rpm-devel is no more needed too (we only use it through perl-URPM
- now)
-
- * harddrake/sound.pm (do_switch) automatically install packages
-
- * diskdrake/hd_gtk.pm, diskdrake/interactive.pm, diskdrake/smbnfs_gtk.pm,
- install_interactive.pm, install_steps_interactive.pm: set title & icon
- of banner for most partitionning steps
-
- * interactive.pm (ask_okcancel,ask_warn) enable to set an icon (eg for
- banners at install time)
-
-2005/11/28 Pixel <pixel at mandriva.com>
-
- * bootloader.pm: fix getting raid-extra-boot (bugzilla #19965)
- fix getting raid-extra-boot (bugzilla #19965)
-
- * rescue/tree/etc/rc.sysinit, rescue/list.xml: disable the weird echoprt
- in cooked mode for user interaction
-
- * rescue/partimage_whole_disk: fix restoring many primary partitions
-
-2005/11/28 Thierry Vignaud <tvignaud at mandriva.com>
-
- * network/netconnect.pm: simplify
-
- * harddrake/sound.pm (switch) be more robust
- (do_switch) make package installation actually work
-
-2005/11/26 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/11/25 Thierry Vignaud <tvignaud at mandriva.com>
-
- * drakxtools.spec: 10.4.3-1mdk
-
- * network/netconnect.pm (real_main) once ISP DB is loaded, do not bother
- reload it
- (real_main) usuability: preselect first ISP of user's country
-
- * share/po/br.po: update
-
-2005/11/24 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated zh_CN translation
-
-2005/11/23 Olivier Blin <oblin at mandriva.com>
-
- * any.pm: apply locale settings immediately
- apply locale settings immediately
-
- * standalone/finish-install: allow to blacklist steps in
- /etc/sysconfig/finish-install
- locale is now set by any::selectLanguage_standalone
-
- * standalone/drakfont: make dialog variable local, to avoid crappy
- workarounds that don't even work
-
-2005/11/23 Pixel <pixel at mandriva.com>
-
- * any.pm: fix for localedrake in text mode
-
- * run_program.pm: don't use /root/tmp if /root doesn't exist (fixes using
- it in rescue)
-
- * keyboard.pm, standalone/keyboarddrake: create new function and use it
-
- * standalone/finish-install: add ask_keyboard step
-
- * share/list.xml, rescue/list.xml: adapt to MDV::Packdrakeng
-
-2005/11/22 Olivier Blin <oblin at mandriva.com>
-
- * devices.pm: add some useful devices for live systems build
-
- * tools/drakx-in-chroot: don't run Xnest if an auto_install file is used
- contatenate auto_install and defcfg files into a new auto_install file
- in install root
- do not commit suicide if Xnest isn't used
- remove destination dir as root, and create it if not existent
-
-2005/11/21 Olivier Blin <oblin at mandriva.com>
-
- * Xconfig/xfree.pm: perl_checker fix
- refer to xorg.conf man page instead of XF86Config (Yukiko Bando)
-
- * share/rpmsrate: bpalogin is required for Telstra's BPA cable connections
-
- * pkgs.pm: fix rpmsrate negations when not installing a live system
-
- * network/monitor.pm, network/ifw.pm: use new DBus typing facilities
-
-2005/11/21 Pablo Saratxaga <pablo at mandriva.com>
-
- * share/po/wa.po: updated Walloon file (better strings in drakfont)
-
-2005/11/21 Pixel <pixel at mandriva.com>
-
- * fsedit.pm: fix catching fs::dmraid::init() failure
-
- * fs/mount_options.pm: simplify text for option "users" (was not accurate
- and much too verbose) (see also bugzilla #19848)
-
-2005/11/21 Thierry Vignaud <tvignaud at mandriva.com>
-
- * harddrake/sound.pm: ones less space
- install aoss too when installing ALSA
-
- * drakxtools.spec: 10.4.2-1mdk
-
- * pkgs.pm (read_rpmsrate) do not match CAT_(KDE|GNOME|...) and ignore !
- while
- installing a live system
- (read_rpmsrate) let "build_live_system" mode be selected by auto config
- file
- (read_rpmsrate) install all hardware related packages when building a
- live system
-
- * install_any.pm (default_packages) better let rpmsrate handle ALSA
- packages installation
- (default_packages) typo fix
- install aoss too when installing ALSA
-
- * share/rpmsrate, install_steps_interactive.pm: install aoss too when
- installing ALSA
-
-2005/11/19 willysr
-
- * share/po/id.po: Updated
-
-2005/11/18 Pixel <pixel at mandriva.com>
-
- * diskdrake/interactive.pm: perl_checker compliance
- add button "Label" (in expert for now) to set the "volume label" (and so
- get LABEL= in fstab and lilo.conf)
-
-2005/11/18 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/br.po, share/po/fr.po: update
- Updated POT file
-
- * drakxtools.spec: add bug references in 10.4.1-1mdk's changelog
- 10.4.1-1mdk
- add bug references in 10.3-0.64.3.20060mdk's changelog
- fix release number after removing %mkrel
- 10.3-0.3.20060mdk
- rename 10.3-0.1.20060mdk as 10.3-0.2.20060mdk since till previously
- uploaded an update :-(
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/uk.po, share/po/mn.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: Updated POT file
-
-2005/11/17 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/br.po: update
-
-2005/11/16 Olivier Blin <oblin at mandriva.com>
-
- * network/adsl.pm: don't screw up eagle-usb devices if the firmware is
- already loaded
- don't screw up eagle-usb devices if the firmware is already loaded
-
- * standalone/drakroam: remember 'restricted' wireless mode
- don't crash if mandi isn't started
-
-2005/11/15 Pixel <pixel at mandriva.com>
-
- * fs/mount_options.pm: handle "users" the way "user" is handled
- handle "users" the way "user" is handled
-
- * diskdrake/interactive.pm: handle "users" the way "user" is handled
-
- * printer/main.pm, printer/printerdrake.pm: adapt to new cat_() only
- accepting files, ie not doing popen anymore
-
-2005/11/15 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/br.po: update
-
-2005/11/14 Olivier Blin <oblin at mandriva.com>
-
- * standalone/drakroam: remember 'restricted' wireless mode
- don't crash if mandi isn't started
-
-2005/11/14 Pixel <pixel at mandriva.com>
-
- * share/upgrade/conectiva.10/map: fix upgrading conectivaoffice pkg
- (bugzilla #18948)
- fix upgrading conectivaoffice pkg (bugzilla #18948)
-
-2005/11/14 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/11/12 Olivier Blin <oblin at mandriva.com>
-
- * network/monitor.pm: fix wireless network list using iwlist (`` returns a
- defined empty string if the command fails)
- fix wireless network list using iwlist (`` returns a defined empty
- string if the command fails)
-
-2005/11/10 Pixel <pixel at mandriva.com>
-
- * fs/dmraid.pm: when calling dmraid, replace -ccs and -ccr with -s -c -c
- and -r -c -c
- (the former doesn't work anymore with dmraid 1.0.0 RC9) (cf #19654,
- thanks a lot to Thomas Backlund)
- when calling dmraid, replace -ccs and -ccr with -s -c -c and -r -c -c
- (the former doesn't work anymore with dmraid 1.0.0 RC9) (cf #19654,
- thanks a lot to Thomas Backlund)
-
- * rescue/tree/etc/rc.sysinit, rescue/list.xml: minimal i18n support
-
- * rescue/partimage_whole_disk: configure network if needed
- new option (bzip2), enabled by default
-
- * rescue/make_rescue_img: partimage_whole_disk takes care of configuring
- network when needed
- minimal i18n support
-
-2005/11/08 Olivier Blin <oblin at mandriva.com>
-
- * network/ethernet.pm: handle zd1201 as well
- fix zd1201 devices detection as well
-
-2005/11/08 Pixel <pixel at mandriva.com>
-
- * fsedit.pm: do not call dmraid init() by default, call it explictly (it
- helps patching dmraid)
-
- * fs/dmraid.pm: do not call dmraid init() by default, call it explictly
- (it helps patching dmraid)
- log is mixed with valid data (bugzilla #19654)
- log is mixed with valid data (bugzilla #19654)
-
- * patch/patch-2006-fix-parsing-dmraid.pl: log is mixed with valid data
- (bugzilla #19654)
-
-2005/11/08 Thierry Vignaud <tvignaud at mandriva.com>
-
- * drakxtools.spec: 10.3-0.1.20060mdk
-
-2005/11/07 Olivier Blin <oblin at mandriva.com>
-
- * network/netconnect.pm: don't let interfaces with unknown drivers be
- configured
-
- * network/ethernet.pm: fix rt2400/rt2500 devices detection (workaround for
- their missing "device" link in sysfs)
-
- * standalone/net_applet: use disconnected icon if no route, even if wifi
- is associated
-
- * network/network.pm: don't duplicate variables (MTU, NETMASK, IPADDR) in
- ifcfg files (#19325)
- temporary workaround to have device-independant config files in
- wireless.d
- set hostname only after packages have been installed, or else graphical
- urpmi may fail
-
- * network/monitor.pm: don't log wpa_cli/iwgetid/iwlist commands
-
-2005/11/07 Pixel <pixel at mandriva.com>
-
- * drakxtools.spec: add "Requires: perl-suid" for fileshareset and
- filesharelist (bugzilla #17123)
-
-2005/11/07 Thierry Vignaud <tvignaud at mandriva.com>
-
- * drakxtools.spec: 10.4-0.3mdk
- add bug reference in requires explanations
-
- * share/po/br.po: update
- update translations from TRUNK
-
- * share/po/ms.po, share/po/zh_TW.po, share/po/wa.po: update translations
- from TRUNK
-
- * detect_devices.pm (getSagem) handle new ueagle-atm driver
-
- * Xconfig/card.pm (install_server) properly handle switch between nvidia &
- nvidia_legacy: prevent
- having both nvidia_legacy-kerne and nvidia-kernel, thus resulting in
- having two
- drivers with the same name:
- The following packages have to be removed for others to be upgraded:
- nvidia-7676-5mdk.i586 (en raison de conflit avec
- nvidia_legacy-7174-3mdk.i586)
- installing nvidia_legacy-7174-3mdk.i586.rpm
- nvidia_legacy-kernel-2.6.12-12mdk-7174-1mdk.i586.rpm from //mnt/disk/bin
- lemel nvidia-7676-5mdk.i586
- Emaon o prientiñ ...
- #############################################
- 1/2: nvidia_legacy
- #############################################
-
- Relaunch XFdrake to configure your NVidia cards
- warning: /etc/ld.so.conf.d/nvidia.conf saved as
- /etc/ld.so.conf.d/nvidia.conf.rpmsave
- 2/2:
- nvidia_legacy-kernel-2.6.12-12mdk#############################################
-
- Error! This module/version combo is already installed
- for kernel: 2.6.12-12mdk (i586)
- nvidia_legacy, 7174, 2.6.12-12mdk, i586: installed (WARNING! Diff
- between built and installed module!)
-
- root@du mdk/gi/perl-install # rpm -qa nvidia\*
- nvidia_legacy-kernel-2.6.12-12mdk-7174-1mdk
- nvidia-kernel-2.6.12-12mdk-7676-1mdk
- nvidia_legacy-7174-3mdk
-
-2005/11/05 Olivier Blin <oblin at mandriva.com>
-
- * network/monitor.pm: don't log wpa_cli/iwgetid/iwlist commands
-
-2005/11/04 Olivier Blin <oblin at mandriva.com>
-
- * standalone/net_applet: use $wnet variable name to disambiguate wireless
- network and global net settings
-
- * network/network.pm: don't duplicate variables (MTU, NETMASK, IPADDR) in
- ifcfg files (#19325)
-
- * network/ifw.pm: make sure Net::DBus::Binding::Value is loaded
-
-2005/11/04 Thierry Vignaud <tvignaud at mandriva.com>
-
- * authentication.pm: perl_checko cleanup
- (set_raw) restart ypbind in install too (killing old todo)
-
- * drakxtools.spec: use mkrel
-
- * install_steps.pm, install_any.pm (is_network_install) use it whenever
- possible
-
-2005/11/03 Olivier Blin <oblin at mandriva.com>
-
- * network/network.pm: make it more readable
-
-2005/11/03 Pixel <pixel at mandriva.com>
-
- * run_program.pm: don't use /root/tmp if /root doesn't exist (fixes using
- it in rescue)
-
-2005/11/02 berthy
-
- * share/po/fr.po: Updated French translation
-
-2005/11/02 Olivier Blin <oblin at mandriva.com>
-
- * network/network.pm: temporary workaround to have device-independant
- config files in wireless.d
- fix typo (thanks to Berthy)
-
-2005/10/31 Till Kamppeter <till at mandriva.com>
-
- * printer/main.pm:
- - Fixed setting up printers with pre-made Foomatic PPD in
- /usr/share/cups/model (bug #19524).
-
-2005/10/29 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/10/28 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: Updated POT file.
-
-2005/10/28 Pablo Saratxaga <pablo at mandriva.com>
-
- * share/po/wa.po: updated Walloon file
-
-2005/10/27 Olivier Blin <oblin at mandriva.com>
-
- * network/netconnect.pm: don't let interfaces with unknown drivers be
- configured
-
- * network/ethernet.pm: crappy workaround for rt2400/rt2500 and their
- missing "device" link in sysfs
- fix typo
- use standard 'mac' modifier in iftab for IEEE1394, EUI64 and IRDA
-
-2005/10/25 shivahuang
-
- * share/po/zh_TW.po: updated po file
-
-2005/10/24 renato
-
- * share/po/pt_BR.po: 1 fuzzy and 1 not translated strings.1 fuzzy and 1
- not translated strings.1 fuzzy and 1 not translated strings.1 fuzzy and
- 1 not translated strings.1 fuzzy and 1 not translated strings.1 fuzzy
- and 1 not translated strings.1 fuzzy and 1 not translated strings.1
- fuzzy and 1 not translated strings.1 fuzzy and 1 not translated
- strings.1 fuzzy and 1 not translated strings.1 fuzzy and 1 not
- translated strings.
-
-2005/10/24 willysr
-
- * share/po/id.po: Updated Contact Info
-
-2005/10/23 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/10/23 shivahuang
-
- * share/po/zh_TW.po: updated po file
-
-2005/10/22 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: Updated POT file.
-
-2005/10/22 tbednarski
-
- * share/po/pl.po: Translation update
-
-2005/10/21 Keld Jørn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: updates
- soft/initscripts/po/da.po gi/perl-install/share/po/da.po
-
-2005/10/21 Pixel <pixel at mandriva.com>
-
- * Xconfig/card.pm: safer
- simplify (and make it more robust)
- make it more easier to understand
- ensure we don't load both "/usr/X11R6/lib/modules/extensions/libglx.so"
- and "/usr/X11R6/lib/modules/extensions/nvidia/libglx.so"
- (backported from HEAD) (bugzilla #19285)
-
-2005/10/20 neoclust
-
- * share/po/fr.po: Updated French translation
-
-2005/10/20 Pixel <pixel at mandriva.com>
-
- * rescue/make_rescue_img: reboot if things went nicely
- fix reboot by creating /dev/initctl (what's this??)
- (it was broken when called in rc.sysinit, it was working otherwise)
-
- * pkgs.pm: old perl_checker compliance
-
- * printer/detect.pm: old perl_checker compliance
- old perl_checker compliance
-
- * .perl_checker: need this to build po
-
- * rescue/partimage_whole_disk: reboot if things went nicely
- install_bootloader should succeed otherwise it's an error
- make install_bootloader non interactive
- add ability to keep existing /home (as requested by miura)
- simplify (remove code choosing best master to restore from)
- make it an option to keep empty_space_at_end_of_disk
-
- * drakxtools.spec: add "Requires: perl-suid" for fileshareset and
- filesharelist (bugzilla #17123)
-
- * rescue/install_bootloader: doesn't display prompt if auto
- add option --auto to install without prompting
-
-2005/10/20 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
-
- * pkgs.pm: Fix test for dangling symlink
-
-2005/10/20 tbednarski
-
- * share/po/pl.po: Translation updates
-
-2005/10/20 Till Kamppeter <till at mandriva.com>
-
- * printer/main.pm:
- - perl_checker fix.
- - Updated printerdrake to the state of Mandriva 2006:
- o HPLIP support
- o Gutenprint support
- o support for several other new drivers
- o Printer communication error handling
- o Main window of printerdrake comes up faster
- o Many bug fixes and detail improvements
-
- * printer/cups.pm, printer/detect.pm, printer/data.pm,
- standalone/printerdrake, printer/office.pm, printer/default.pm,
- printer/services.pm, printer/printerdrake.pm, printer/gimp.pm:
- - Updated printerdrake to the state of Mandriva 2006:
- o HPLIP support
- o Gutenprint support
- o support for several other new drivers
- o Printer communication error handling
- o Main window of printerdrake comes up faster
- o Many bug fixes and detail improvements
-
-2005/10/20 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/br.po: update
-
-2005/10/19 Daouda Lo <daouda at mandriva.com>
-
- * standalone/harddrake2:
- - use drakfirstboot wizard instead of mdkonline
-
-2005/10/19 Pixel <pixel at mandriva.com>
-
- * install_interactive.pm: more meaningful message (bugzilla #19249)
-
- * docs/comparisons: fix typo
-
- * fsedit.pm: increase "/" maxsize (bugzilla #19353)
-
-2005/10/18 neoclust
-
- * share/po/fr.po: Updated French translation
-
-2005/10/18 Olivier Blin <oblin at mandriva.com>
-
- * standalone/net_applet: perl_checker fix
-
-2005/10/18 Pixel <pixel at mandriva.com>
-
- * raid.pm: "mdadm --detail --brief" doesn't contain "devices=..." anymore
- (since mdadm 1.12.0),
- it needs option "-v" to keep previous behaviour
- "mdadm --detail --brief" doesn't contain "devices=..." anymore (since
- mdadm 1.12.0),
- it needs option "-v" to keep previous behaviour
-
- * c/stuff.xs.pl, c/Makefile.PL, fsedit.pm: use vol_id to find device type
- (fs_type and pt_type)
-
- * fs/type.pm: use vol_id to find device type (fs_type and pt_type)
- separate hpfs and ntfs entries (even if they both use the same type id
- in partition table) (bugzilla #19322)
- (and also remove the special ppc case which is useless inside a
- /^i.86|x86_64/ condition)
-
- * patch/patch-2006-existing-md.pl: "mdadm --detail --brief" doesn't
- contain "devices=..." anymore (since mdadm 1.12.0),
- it needs option "-v" to keep previous behaviour
-
-2005/10/18 Thierry Vignaud <tvignaud at mandriva.com>
-
- * drakxtools.spec: 10.4-0.2mdk
-
- * bootsplash.pm: perl_checker cleanups
-
- * harddrake/sound.pm: perl_checko cleanup
-
- * standalone/harddrake2: do not merge AGP section into BRIDGES one
- (translation is availlable for quite a long time)
- Club integration for proprietary drivers: offer to subscribe to Mandriva
- Club
- if some proprietary packages are needed and are not availlable, thus
- allowing
- automatic download/installation of proprietary drivers from Club
-
-2005/10/17 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: jorge
-
-2005/10/17 Olivier Blin <oblin at mandriva.com>
-
- * standalone/net_applet: use disconnected icon if no route, even if wifi
- is associated
-
-2005/10/17 Thierry Vignaud <tvignaud at mandriva.com>
-
- * drakxtools.spec: also describe drakconnect changes in 10.4-0.1mdk's
- changelog
- 10.4-0.1mdk
-
- * harddrake/sound.pm: make it somewhat clearer
- do display the driver description (#5403)
-
- * share/po/br.po: update
-
-2005/10/17 willysr
-
- * share/po/id.po: Updated
-
-2005/10/15 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: Updated POT file.
-
-2005/10/14 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/10/12 Thierry Vignaud <tvignaud at mandriva.com>
-
- * standalone/drakperm, commands, harddrake/data.pm: perl_checker cleanup
-
- * standalone/service_harddrake: add a couple comments
-
-2005/10/10 mareklaane
-
- * share/po/et.po: Updated Estonian translation.
-
-2005/10/10 Olivier Blin <oblin at mandriva.com>
-
- * share/po/fr.po: fix typo (reported by PierreLag)
-
-2005/10/10 Pixel <pixel at mandriva.com>
-
- * patch/patch-2006-no-dmraid.pl: option "nodmraid" is broken in mdv2006
-
- * install2.pm: fix typo
-
-2005/10/10 renato
-
- * share/po/pt_BR.po: Solved some fuzzy and not translated strings.
-
-2005/10/09 willysr
-
- * share/po/id.po: Updated
-
-2005/10/08 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: Updated POT file
-
- * share/po/DrakX.pot: Updated POT file.
-
-2005/10/07 Pixel <pixel at mandriva.com>
-
- * run_program.pm: fix buggy previous commit, cleanup and correctly indent.
- previous commit was:
- do not clober output files (stdout or stderr) when binary cannot be
- found (#18987)
-
-2005/10/07 Thierry Vignaud <tvignaud at mandriva.com>
-
- * run_program.pm: fix previous commit so that "prog1|prog2" like
- construction still work
- (raw) do not clober output files (stdout or stderr) when binary cannot
- be found (#18987)
-
- * network/network.pm (miscellaneous_choose) try harder to explain (#17261)
-
-2005/10/06 Pixel <pixel at mandriva.com>
-
- * rescue/partimage_whole_disk: fix (same behaviour as before, but option
- save_home_directory really mean what it says)
-
- * Xconfig/card.pm: remove duplicate case
-
-2005/10/06 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/rpmsrate, lang.pm: scim-anthy-0.7 needs kasumi
-
- * Xconfig/card.pm (libgl_config)
- - handle nvidia_legacy
- - don't create files (and thus don't run ldconfig when not needed)
- (to_raw_X) make it more readable and ensure only one glx is loaded:
- - factorize test
- - set_load_module with test on DRI_GLX_SPECIAL doesn't work when
- DRI_GLX_SPECIAL isn't set
- o remove vendor's glx when DRI_GLX_SPECIAL is not set
- (to_raw_X, install_server) fix X11 segfaulting with nvidia driver, aka
- prevent
- loading both Xorg's glx and nvidia's glx
- (also prevent glixinfo from segfaulting when using nv driver while
- nvidia
- packages're installed btw)
-
- * modules/interactive.pm (config_window) properly report no configurable
- parameter (#17579)
-
-2005/10/05 Pixel <pixel at mandriva.com>
-
- * rescue/make_partimage_save_rest_all: acpi=ht is bad on some boxes (=>
- sata_sis not working)
-
- * Xconfig/card.pm: don't modify /etc/ld.so.conf.d/{nvidia,ati}.conf if
- file does not exist
- (otherwise at package install time, one gets a .rpmnew)
- don't modify /etc/ld.so.conf.d/{nvidia,ati}.conf if file does not exist
- (otherwise at package install time, one gets a .rpmnew)
-
-2005/10/05 Thierry Vignaud <tvignaud at mandriva.com>
-
- * detect_devices.pm (get_sysfs_usbpath_for_block) introduce it in order to
- factorize code
- (complete_usb_storage_info) use sane way for handling multiple USB disks
- of the
- same vendor (aka compare hosts)
-
-2005/10/03 Olivier Blin <oblin at mandriva.com>
-
- * network/thirdparty.pm: use /lib/firmware as default firmware directory
-
-2005/10/03 Pixel <pixel at mandriva.com>
-
- * patch/patch-2006-new-dmraid.pl: allow using an updated dmraid
-
-2005/10/03 tbednarski
-
- * share/po/pl.po: Translation updates
-
-2005/10/03 Thierry Vignaud <tvignaud at mandriva.com>
-
- * install_any.pm (default_packages) install powernowd on x86_64 (since
- they've the cool&quiet technology) and athcool on athlon32
- (default_packages) "alsa" doesn't exists
-
- * modules/any_conf.pm (read_raw) explain (ie add comments)
-
-2005/10/02 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/10/01 pjetur
-
- * share/po/is.po: Small consistency changes
-
-2005/09/30 Pixel <pixel at mandriva.com>
-
- * standalone/drakhelp: fallback nicely, trying english if i18n doc not
- available
- (need a change in ctxhelp, but won't fail worse than current behaviour
- without it)
- cleanup
-
-2005/09/29 David Baudens <baudens at mandriva.com>
-
- * share/rpmsrate: Add stellarium
-
-2005/09/29 renato
-
- * share/po/pt_BR.po: 3 errors in pt_BR for drakconf.po.
-
-2005/09/29 Thierry Vignaud <tvignaud at mandriva.com>
-
- * standalone/service_harddrake: nvidia installer now uses a new place
-
-2005/09/28 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/draksambashare: test if /etc/sysconfig/wizard_samba exist
- (commented)
-
-2005/09/28 Olivier Blin <oblin at mandriva.com>
-
- * network/ndiswrapper.pm: simplify
-
-2005/09/28 tbednarski
-
- * share/po/pl.po: Translation updates
- Some translation corrections
-
-2005/09/28 Till Kamppeter <till at mandriva.com>
-
- * printer/main.pm, printer/detect.pm, standalone/printerdrake,
- printer/printerdrake.pm:
- - Let parallel HP printers be set up with HPLIP.
- - Removed HPOJ support (HPOJ obsolete, now completely replaced by
- HPLIP).
- - Warn the user if an HP printer is connected via a port which is not
- supported by HPLIP.
- - Fixed printerdrake freezing when choosing a machine as remote CUPS
- server (for daemon-less client) which does not exist or does not run
- CUPS.
- - Let network printer detection also work if the DNS is misconfigured.
- - Let "Printer options" entry in printer editing menu only disapppear
- if there are really no options (entry disappeared also for Sagem
- MF3625 with empty manufacturer name in the PPD).
- - Fixed raw queue being shown with "driver: PPD" and not "driver:
- raw".
- - Do not use "Unknown model" and "Unknown Model", this somtimes broke
- identifying a print queue as being for an unknown printer.
- - Do not die if /usr/share/hplip/data/xml/models.xml (HPLIP printer
- database) is missing, this allows creation of live distros without
- HPLIP.
- - Fixed loop of determining the HPLIP device URI for local printers in
- the "printer::main::start_hplip()" function.
- - Let parallel HP printers be set up with HPLIP.
- - Removed HPOJ support (HPOJ obsolete, now completely replaced by
- HPLIP).
- - Warn the user if an HP printer is connected via a port which is not
- supported by HPLIP.
- - Fixed printerdrake freezing when choosing a machine as remote CUPS
- server (for daemon-less client) which does not exist or does not run
- CUPS.
- - Let network printer detection also work if the DNS is misconfigured.
- - Let "Printer options" entry in printer editing menu only disapppear
- if there are really no options (entry disappeared also for Sagem
- MF3625 with empty manufacturer name in the PPD).
- - Fixed raw queue being shown with "driver: PPD" and not "driver:
- raw".
- - Do not use "Unknown model" and "Unknown Model", this somtimes broke
- identifying a print queue as being for an unknown printer.
- - Do not die if /usr/share/hplip/data/xml/models.xml (HPLIP printer
- database) is missing, this allows creation of live distros without
- HPLIP.
- - Fixed loop of determining the HPLIP device URI for local printers in
- the "printer::main::start_hplip()" function.
-
- * share/rpmsrate:
- - Removed HPOJ and subpackages from rpmsrate (obsolete, replaced by
- HPLIP).
- - Removed mtoolsfm from rpmsrate (was only needed by HPOJ).
-
-2005/09/27 Pablo Saratxaga <pablo at mandriva.com>
-
- * share/po/pt.po: fixed end of line
-
-2005/09/27 Pixel <pixel at mandriva.com>
-
- * Xconfig/monitor.pm: backport 1.43 fix: add missing chomp_
-
- * authentication.pm: cleanup, and especially call ensure_are_installed
- with parameter "auto" during install
- (esp. to fix calling authentication::set with $o which is not
- interactive)
-
- * patch/patch-2006-auto_install_LDAP_auth.pl: fix error calling
- ask_okcancel on object install_steps_auto_install when setting LDAP
- authentication
-
- * do_pkgs.pm: ensure we don't prompt things when we are not interactive
- get rid of "rpmq: no arguments given for query"
- (eg: when calling ensure_are_installed with an empty list)
-
-2005/09/27 Stew Benedict <sbenedict at mandriva.com>
-
- * standalone/drakbackup: Avoid wiping out user cron
-
-2005/09/27 tbednarski
-
- * share/po/pl.po: Some translation corrections
-
-2005/09/27 Thierry Vignaud <tvignaud at mandriva.com>
-
- * any.pm (autologin) always show the autologing config step for
- globetrotter
- (autologin) always enable autologin on globetrotter
- (autologin) always show the autologing config step for globetrotter
- (autologin) always enable autologin on globetrotter
-
- * install2.pm (main) do not stop bootsplash on globetrotter
- (main) do not stop bootsplash on globetrotter
-
-2005/09/26 Pixel <pixel at mandriva.com>
-
- * authentication.pm:
- - password entry field should not show the password (bugzilla #18800)
- - fix typo
-
- * bootloader.pm: use compact by default, it is strongly suggested in
- lilo's documentation even
- if it can lead to bios issues.
- to be disabled if it causes pbs
-
-2005/09/26 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
-
- * pkgs.pm: Comment fix
-
-2005/09/26 Stew Benedict <sbenedict at mandriva.com>
-
- * standalone/drakTermServ: Install mkisofs if needed. Refuse to creates
- images without a NIC.
-
- * standalone/drakbackup: Add EA (xattr) to star
- Optional view restore log
- Redo compression flag set code
- Extended ACL support user star (#17761)
- Multiple email recipients (user requested feature)
- Code cleanups, use do_pkgs->install
- Fix bug on restore with file in 2 archives
-
-2005/09/26 tbednarski
-
- * share/po/pl.po: Some translation corrections
- Some translations corrections
- Some corrections
-
-2005/09/26 willysr
-
- * share/po/id.po: Updated
-
-2005/09/25 huftis
-
- * share/po/nn.po: Updated translations.
-
-2005/09/25 Stew Benedict <sbenedict at mandriva.com>
-
- * standalone/drakbackup: Fix mis-sorted progress bars
- Fix mis-sorted progress bars
- Fix mis-sorted progress bars
- Fix mis-sorted progress bars
-
-2005/09/25 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/pl.po: fix obviously wrong translation (#18831)
-
-2005/09/24 Stew Benedict <sbenedict at mandriva.com>
-
- * standalone/drakbackup: Profile support (#17566)
- Enhance cron support
- o weekday ranges (#18290)
- o multiple cron jobs
- o use profiles
-
-2005/09/24 xalba
-
- * share/po/eu.po: 20 itzulpen falta dira.
-
-2005/09/23 Frederic Lepied <flepied at mandriva.com>
-
- * share/po/it.po, share/po/es.po, share/po/fr.po, share/po/de.po: fixed
- translation for the skype string
-
-2005/09/23 pjetur
-
- * share/po/is.po: Almost done
-
-2005/09/23 tbednarski
-
- * share/po/pl.po: Some corrections
-
-2005/09/23 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/br.po:
- - fix skype ad
- - translate a few more ads
-
-2005/09/23 Frederic Lepied <flepied at mandriva.com>
-
- * share/po/it.po, share/po/es.po, share/po/fr.po, share/po/de.po: fixed
- translation for the skype string
-
-2005/09/22 cavassin
-
- * share/po/pt_BR.po: Using a better translation string (interactive
- firewall).
-
-2005/09/22 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/09/22 Pablo Saratxaga <pablo at mandriva.com>
-
- * share/po/mk.po: updated Macedonian file
- updated po file
-
-2005/09/22 Pixel <pixel at mandriva.com>
-
- * bootloader.pm: cleanup sanitize_ver(), makes label longer but cleaner
-
- * lvm.pm, fsedit.pm: fix typos (thanks to Arpad Biro)
-
-2005/09/22 tbednarski
-
- * share/po/pl.po: Translation updates
-
-2005/09/22 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/br.po: update
-
- * standalone/drakfont (interactive_mode) fix layout
- (license_msg) merge 2 similar strings
-
-2005/09/21 Olivier Blin <oblin at mandriva.com>
-
- * network/network.pm: set hostname only after packages have been
- installed, or else graphical urpmi may fail
-
-2005/09/21 Pablo Saratxaga <pablo at mandriva.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/uk.po, share/po/mn.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: updated pot file
-
- * share/po/wa.po: updated pot file
- updated Walloon file
-
- * keyboard.pm: added "fo" keyboard
- synchronized XKB keyboard names with what is in latest xorg
-
-2005/09/21 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: updated translation
-
-2005/09/21 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2005/09/20 Frederic Lepied <flepied at mandriva.com>
-
- * share/rpmsrate: put lisa in level 4
-
-2005/09/20 Gwenole Beauchesne <gbeauchesne at mandriva.com>
-
- * share/rpmsrate: mindawn default, a320raid pci ids too
-
-2005/09/20 neoclust
-
- * share/po/de.po: Updated translation from Frank Köster
-
-2005/09/20 Olivier Blin <oblin at mandriva.com>
-
- * network/netconnect.pm: fix dvb crash during install
-
-2005/09/20 Pablo Saratxaga <pablo at mandriva.com>
-
- * share/po/tg.po: updated Tajik file
-
-2005/09/20 pmaryanov
-
- * share/po/ru.po: updated translation
-
-2005/09/20 Pixel <pixel at mandriva.com>
-
- * pkgs.pm: don't warn lisa (which is installed by default)
-
- * modules.pm: last inside a "do ... until ..." is bad
-
-2005/09/20 tbednarski
-
- * share/po/pl.po: Translation updates
-
-2005/09/20 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/br.po: typo fix
-
-2005/09/20 Warly <warly at mandriva.com>
-
- * share/rpmsrate: add skype
-
-2005/09/20 Frederic Lepied <flepied at mandriva.com>
-
- * share/rpmsrate: put lisa in level 4
-
-2005/09/20 Olivier Blin <oblin at mandriva.com>
-
- * network/netconnect.pm: fix dvb crash during install
-
-2005/09/20 Pixel <pixel at mandriva.com>
-
- * pkgs.pm: don't warn lisa (which is installed by default)
-
- * modules.pm: last inside a "do ... until ..." is bad
-
-2005/09/20 tbednarski
-
- * share/po/pl.po: Translation updates
-
-2005/09/20 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/br.po: typo fix
-
-2005/09/20 Warly <warly at mandriva.com>
-
- * share/rpmsrate: fix discovery-icons-theme position
-
-2005/09/20 Frederic Lepied <flepied at mandriva.com>
-
- * share/rpmsrate: put lisa in level 4
-
-2005/09/20 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/sl.po: Updated sl translations.
-
-2005/09/20 Keld Jørn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: updates
- soft/menu-messages/main/da.po gi/perl-install/share/po/da.po
-
-2005/09/20 Olivier Blin <oblin at mandriva.com>
-
- * network/netconnect.pm: fix dvb crash during install
-
-2005/09/20 Pixel <pixel at mandriva.com>
-
- * pkgs.pm: don't warn lisa (which is installed by default)
-
-2005/09/20 tbednarski
-
- * share/po/pl.po: Translation updates
-
-2005/09/20 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/br.po: typo fix
-
-2005/09/20 Warly <warly at mandriva.com>
-
- * share/rpmsrate: fix discovery-icons-theme position
- fix discovery-icons-theme position
- fix discovery-icons-theme duplicated
- add various packs customization
-
-2005/09/20 willysr
-
- * share/po/id.po: Updated
-
-2005/09/19 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: jorge
-
-2005/09/19 Olivier Blin <oblin at mandriva.com>
-
- * standalone/net_applet: show IFW button even if not connected (#18708)
-
- * modules.pm, detect_devices.pm: drop sr_mod workarounds, it's now handled
- by udev coldplug
-
-2005/09/19 Reinout van Schouwen <reinout at cs.vu.nl>
-
- * share/po/nl.po: * Sep 20 2005 Reinout van Schouwen <reinout@cs.vu.nl>
- Last few strings in Dutch translation
-
-2005/09/19 Till Kamppeter <till at mandriva.com>
-
- * printer/printerdrake.pm:
- - Do not auto-install "sane-frontends" for MF devices.
-
-2005/09/19 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/br.po: update
-
-2005/09/19 Frederic Lepied <flepied at mandriva.com>
-
- * share/po/fr.po: fixes from marketing.
-
-2005/09/19 Olivier Blin <oblin at mandriva.com>
-
- * modules.pm, detect_devices.pm: drop sr_mod workarounds, it's now handled
- by udev coldplug
-
- * network/netconnect.pm: don't try to connect auto-magically ethernet
- interfaces during configuration in install
- restart ethernet interface for pppoe connections
- add some reminders, fix indentation
- fix typo
-
-2005/09/19 Till Kamppeter <till at mandriva.com>
-
- * printer/printerdrake.pm:
- - Do not auto-install "sane-frontends" for MF devices.
-
-2005/09/19 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/br.po: update
-
- * drakxtools.spec: 10.3-0.64mdk
-
-2005/09/19 cavassin
-
- * share/po/pt_BR.po: Filled one more msg.
-
-2005/09/19 Frederic Lepied <flepied at mandriva.com>
-
- * share/po/fr.po: fixes from marketing.
-
-2005/09/19 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/tg.po, share/po/uk.po, share/po/uz.po, share/po/tl.po,
- share/po/wa.po, share/po/th.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/tr.po, share/po/ta.po, share/po/vi.po, share/po/uz@Latn.po:
- Updated POT file
-
-2005/09/19 mareklaane
-
- * share/po/et.po: Updated Estonian translation.
-
-2005/09/19 Olivier Blin <oblin at mandriva.com>
-
- * network/tools.pm, network/test.pm: use mandriva.com for connection tests
-
- * network/netconnect.pm: don't try to connect auto-magically ethernet
- interfaces during configuration in install
- restart ethernet interface for pppoe connections
- add some reminders, fix indentation
- fix typo
-
-2005/09/19 Pixel <pixel at mandriva.com>
-
- * fsedit.pm: increase /usr max size
-
-2005/09/19 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/fr.po: translate new ad
-
- * Xconfig/various.pm (setupFB) fix reading bootloader config
- (setupFB) fix reading bootloader config
-
- * share/po/br.po: update
-
- * drakxtools.spec: 10.3-0.64mdk
-
-2005/09/19 cavassin
-
- * share/po/pt_BR.po: Filled one more msg.
-
-2005/09/19 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: Updated POT file
-
- * share/po/DrakX.pot: Updated POT file.
-
-2005/09/19 mareklaane
-
- * share/po/et.po: Updated Estonian translation.
-
-2005/09/19 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/fr.po: translate new ad
-
-2005/09/19 cavassin
-
- * share/po/pt_BR.po: Filled one more msg.
-
-2005/09/19 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: Updated POT file
-
- * share/po/DrakX.pot: Updated POT file.
-
-2005/09/19 mareklaane
-
- * share/po/et.po: Updated Estonian translation.
-
-2005/09/19 Pixel <pixel at mandriva.com>
-
- * any.pm: update report.bug entries to have current config files
-
-2005/09/19 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/fr.po: translate new ad
-
- * standalone/draksec (wait_msg) kill debug message
-
-2005/09/19 Warly <warly at mandriva.com>
-
- * share/advertising/list-dwd: fix skype and add intel
-
-2005/09/19 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/DrakX.pot: Updated POT file.
-
-2005/09/19 Pixel <pixel at mandriva.com>
-
- * fsedit.pm: fs::proc_partitions::compare is no good for dmraid, but we
- need to check if we
- agree with the kernel, otherwise an uncatched error will occur (bugzilla
- #18655)
-
- * interactive/gtk.pm: titi's patch is wrong, the ->set_cursor being not
- done when selecting and exiting window on the event (ie double clicking
- on the entry)
- we really would need to do things more cleanly (i know on TextView
- ->scroll_to_mark works better than ->scroll_to_cell)
-
- * detect_devices.pm: ensure titi has the good tab-width
-
- * any.pm: update report.bug entries to have current config files
-
- * modules.pm: ugly hack: wait for usb-storage devices to appear (bugzilla
- #13395)
-
-2005/09/19 Thierry Vignaud <tvignaud at mandriva.com>
-
- * standalone/draksec (wait_msg) kill debug message
-
-2005/09/19 Warly <warly at mandriva.com>
-
- * share/advertising/list-dwd: fix skype and add intel
-
- * share/advertising/intel.pl, share/advertising/intel.png: add intel ad
-
-2005/09/19 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/draksambashare: remove untranslated text
-
-2005/09/19 Olivier Blin <oblin at mandriva.com>
-
- * network/ethernet.pm: fix hostap/orinoco driver detection (#18294)
-
-2005/09/19 Pixel <pixel at mandriva.com>
-
- * fsedit.pm: fs::proc_partitions::compare is no good for dmraid, but we
- need to check if we
- agree with the kernel, otherwise an uncatched error will occur (bugzilla
- #18655)
-
- * interactive/gtk.pm: titi's patch is wrong, the ->set_cursor being not
- done when selecting and exiting window on the event (ie double clicking
- on the entry)
- we really would need to do things more cleanly (i know on TextView
- ->scroll_to_mark works better than ->scroll_to_cell)
-
- * detect_devices.pm: ensure titi has the good tab-width
-
- * modules.pm: ugly hack: wait for usb-storage devices to appear (bugzilla
- #13395)
-
-2005/09/19 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
- Updated Malay translation
-
-2005/09/19 Warly <warly at mandriva.com>
-
- * share/advertising/list-dwd: add skype add
-
- * share/rpmsrate: fix acroread rpmsrate completion
-
- * share/advertising/intel.pl, share/advertising/intel.png: add intel ad
-
-2005/09/18 mbukovjan
-
- * share/po/cs.po: Updated Czech translations.
-
-2005/09/18 Olivier Blin <oblin at mandriva.com>
-
- * network/netconnect.pm: add reminder
-
- * standalone/net_applet: force menu refresh when interface status is
- modified (#18636)
-
-2005/09/18 Reinout van Schouwen <reinout at cs.vu.nl>
-
- * share/po/nl.po: * Sep 18 2005 Reinout van Schouwen <reinout@cs.vu.nl>
- Updated Dutch translation
-
-2005/09/18 Thomas Backlund <tmb at mandrake.org>
-
- * share/po/sv.po: Updated translations, fully translated, was 60 fuzzy,
- 147 untranslated.
-
-2005/09/18 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2005/09/18 Thierry Vignaud <tvignaud at mandriva.com>
-
- * standalone/draknfs, standalone/drakgw: typo fix
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: typo fix
- typo fix
-
-2005/09/17 Olivier Blin <oblin at mandriva.com>
-
- * modules.pm, detect_devices.pm: add sr_mod in modprobe.preload if needed
- (#18641)
-
-2005/09/17 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/br.po: update
- typo fix
-
- * drakxtools.spec: 10.3-0.63mdk
-
- * harddrake/data.pm: display cards that offer additional parallep port in
- the system class
- rather than in the "unknown" section
- (custom_id) try harder to have a sane name: before fallbacking to the
- class name (eg: "Printer"), try to use the vendor name (eg for
- printers)
-
-2005/09/17 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/sl.po: Updated sl translations.
-
- * rescue/tree/etc/rc.sysinit, rescue/tree/etc/issue,
- rescue/make_partimage_save_rest_all: Mandrake -> Mandriva series.
-
-2005/09/17 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: jorge
-
-2005/09/17 Keld Jørn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: updates
- gi/perl-install/share/po/da.po
- updates
- soft/initscripts/po/da.po gi/perl-install/share/po/da.po
-
-2005/09/17 mareklaane
-
- * share/po/et.po: Updated Estonian translation.
-
-2005/09/17 Olivier Blin <oblin at mandriva.com>
-
- * standalone/drakroam: fix crash (ugtk2 dialog helpers aren't imported)
-
- * standalone/service_harddrake: fix typo (pterjan)
-
- * modules.pm, detect_devices.pm: add sr_mod in modprobe.preload if needed
- (#18641)
-
-2005/09/17 Stew Benedict <sbenedict at mandriva.com>
-
- * standalone/drakbackup: Remove unclear text (not needed, #18619)
-
-2005/09/17 Till Kamppeter <till at mandriva.com>
-
- * printer/detect.pm:
- - On USB printer hot-plugging sometimes parallel printers are also
- shown in the window popping up to ask whether the printer should be
- set up. Even sometimes parallel printers which are not connected or
- turned on any more were shown. Fixed.
-
-2005/09/17 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/br.po: typo fix
-
- * harddrake/data.pm: display cards that offer additional parallep port in
- the system class
- rather than in the "unknown" section
- (custom_id) try harder to have a sane name: before fallbacking to the
- class name (eg: "Printer"), try to use the vendor name (eg for
- printers)
-
-2005/09/17 willysr
-
- * share/po/id.po: Updated
-
-2005/09/16 cavassin
-
- * share/po/pt_BR.po: Filled one untranslated msg.
-
-2005/09/16 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated zh_CN translation.
-
- * share/po/sl.po: sl corrections from Jure Repinc <jlp@holodeck1.com>.
-
-2005/09/16 Thomas Backlund <tmb at mandrake.org>
-
- * share/po/sv.po: Updated translations, was 89 fuzzy, 245 untranslated, is
- now 60 fuzzy, 147 untranslated, will be 100% tomorrow....
-
-2005/09/16 Thierry Vignaud <tvignaud at mandriva.com>
-
- * standalone/draksec (wait_msg) workaround gtk+ not displaying subdialog
- contents
-
- * share/po/br.po, share/po/fr.po: update
-
- * detect_devices.pm (complete_usb_storage_info) using a local value is
- just saner
- (complete_usb_storage_info) delete {found} field once used
- (complete_usb_storage_info) fix getting data when multiple USB disks
- of the same vendor are plugged
- right thing would be to compare {host} but usb_probde() cannot return
- SCSI host, thus descriptions might be switched if the manufacturer
- altered them on latest discs
- rationale:
-
-2005/09/16 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/draknfs: fix draknfs banner
-
- * standalone/drakhosts: fix drakhosts banner
-
-2005/09/16 cavassin
-
- * share/po/pt_BR.po: Filled one untranslated msg.
-
-2005/09/16 Gwenole Beauchesne <gbeauchesne at mandriva.com>
-
- * crypto.pm: more x86_64 mirrors (works, tested as lftp $url -e exit)
-
-2005/09/16 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/09/16 neoclust
-
- * share/po/it.po: Updated translation from Giuseppe Levi
-
-2005/09/16 Olivier Blin <oblin at mandriva.com>
-
- * install2.pm: pppoe_modem device doesn't exist
- automatically configure DSL connection on installation from DSL
-
- * network/netconnect.pm: revert previous simplification, it may break the
- unusual sagem over pppoe case
- some modem configuration programs modify modprobe.conf while
- drakconnect/the installer is loaded, workaround it
- make sure $net->{ifcfg}{ppp0} is a hash
- simplify pppoe configuration code
-
- * network/adsl.pm: revert previous simplification, it may break the
- unusual sagem over pppoe case
- automatically configure DSL connection on installation from DSL
- fix ugly typo
- fix probing of login name for pppoe connections (peers file is more
- important than pppoe.conf)
- don't use ifplugd for ethernet devices associated with a pppoe/pptp
- connection
- simplify pppoe configuration code
- come on titi, no need to check we're root here
-
- * standalone/drakroam: if ESSID is hidden, add brackets around AP MAC
- address
-
- * install_any.pm, install_steps_interactive.pm: automatically configure
- DSL connection on installation from DSL
-
- * standalone/net_applet: fix crash when only one interface is configured
-
-2005/09/16 Pablo Saratxaga <pablo at mandriva.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: updated pot file
-
-2005/09/16 pjetur
-
- * share/po/is.po: just continue
-
-2005/09/16 Pixel <pixel at mandriva.com>
-
- * install_steps_gtk.pm: don't call $advertize on "Details" click otherwise
- it may call $advertize when
- chrooted which we don't want. So changing behaviour: the button now only
- hide
- or show, it doesn't change the current ad
-
- * Xconfig/card.pm: comment/dis-comment the content of
- ld.so.conf.d/{nvidia,ati}.conf instead of symlinking to a hidden file
- (implies the new ati/nvidia packages have config(noreplace) for those
- files)
- instead of symlinking, comment the content of the ld.so.conf.d/*.conf
- don't load glx with fbdev (since glx is used for various things
- nowadays, dixit fredl)
-
- * fs/dmraid.pm: fix typo
- during install, don't use half working dmraids (#18386)
-
- * pkgs.pm: URPM/Resolve.pm diff 1.109: "Remove the return value of
- compute_installed_flags"...
- but alas install still use it, so doing here what was done in
- compute_installed_flags
-
-2005/09/16 shivahuang
-
- * share/po/zh_TW.po: updated po file
-
-2005/09/16 Till Kamppeter <till at mandriva.com>
-
- * printer/printerdrake.pm:
- - Adapted file names to check for to the changes on the HPIJ 0.91-8mdk
- packages.
-
-2005/09/16 Thierry Vignaud <tvignaud at mandriva.com>
-
- * network/ethernet.pm (is_ifplugd_blacklisted) do not blacklist anymore
- b44 since it now
- support reporting link status according to Arnaud Monnet de Lorbeau
-
- * detect_devices.pm (complete_usb_storage_info) delete {found} field once
- used
- (complete_usb_storage_info) fix getting data when multiple USB disks
- of the same vendor are plugged
- right thing would be to compare {host} but usb_probde() cannot return
- SCSI host, thus descriptions might be switched if the manufacturer
- altered them on latest discs
- rationale:
-
- * lang.pm (configure_kdeglobals) kill dead variable
-
- * interactive/gtk.pm (create_treeview_list) run timer only once
- (create_treeview_list) workaround Gtk+ bug where it hides half the list
- (#18132)
-
- * standalone/harddrake2: space cleaning (thx perl_checko)
-
-2005/09/16 Warly <warly at mandriva.com>
-
- * share/po/fr.po: faicle->facile
-
- * share/advertising/skype.pl, share/advertising/skype.png: add skype ad
-
-2005/09/15 cavassin
-
- * share/po/pt_BR.po: Fixed wrong string gŕfica (thanks pixel).
- Fixed some strings and misuses of "esse/essa/isso".
-
-2005/09/15 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/sl.po: language proof from Gregor Pirnaver
- <gregor.pirnaver@sdm-si.org>.
-
-2005/09/15 Olivier Blin <oblin at mandriva.com>
-
- * network/thirdparty.pm: restart hsf/hcfpci services when needed
- support madwifi drivers
-
- * standalone/drakroam: increase timeout after a wireless network is
- selected
- don't vivify hash ref
-
- * standalone/net_applet: allow to up/down any network interface (backport
- of my 2005 patch for PSA)
-
-2005/09/15 Pixel <pixel at mandriva.com>
-
- * install_steps_gtk.pm, pkgs.pm:
- - call installCallback() on "open" too
- - on "open" we are not chrooted
- - setting advertising when chrooted could cause havoc
- if pango wants to load a new font (eg: advertising #13 in pt_BR)
-
- * share/upgrade/conectiva.10/map: have drakconf when there was
- task-webmin-desktop
-
- * standalone/bootloader-config: fix borking entry "linux" (removing
- root=xxx) when removing a kernel
-
- * install_any.pm:
- - there is no more adverstising icon
- - cleaning
-
-2005/09/15 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/09/15 Thierry Vignaud <tvignaud at mandriva.com>
-
- * standalone/harddrake2: show the main window very early. thus:
- - users feels it startups faster
- - both main window's icon subdialogs' ones work smoothly
-
- * drakxtools.spec: 10.3-0.62mdk
-
-2005/09/15 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/sl.po: language proof from Gregor Pirnaver
- <gregor.pirnaver@sdm-si.org>.
- Updated sl translation from Jure Repinc <jlp@holodeck1.com>.
-
-2005/09/15 Olivier Blin <oblin at mandriva.com>
-
- * standalone/drakroam: don't resize state icons
- show refresh icon if network isn't connected
- show ESSID if already configured for hidden ssid
- move signal strength icon on the left
- don't automatically refresh networks list
- use Managed mode if AP isn't Ad-Hoc
- drakconnect: write wireless settings in wireless.d/ as well
- fallback to wpa_cli or iwlist/iwconfig when needed (#18516)
-
- * network/wireless.pm: better handling of ASCII WEP keys (partial fix for
- #18558)
-
- * network/network.pm: don't try to update shorewall configuration if it's
- disabled
- drakconnect: update interfaces list in shorewall
- drakconnect: write wireless settings in wireless.d/ as well
-
- * network/shorewall.pm: read shorewall net interface from configuration
- file first
-
- * network/monitor.pm: lower signal level given by wpa_supplicant
- fix hidden ssid always recognized as current when using iwlist
- fallback to wpa_cli or iwlist/iwconfig when needed (#18516)
-
- * standalone/net_applet: refresh wireless networks every minute only
- fallback to wpa_cli or iwlist/iwconfig when needed (#18516)
-
- * detect_devices.pm: fallback to wpa_cli or iwlist/iwconfig when needed
- (#18516)
-
-2005/09/15 Pixel <pixel at mandriva.com>
-
- * install2.pm:
- - we do want doPartitionDisks and formatPartitions to be done early on
- upgrade,
- so that selectKeyboard is done when the partitions are mounted
- - call set_all_default() (to fix fstab on upgrade) before install
- packages so that
- {useSupermount} is correctly set
- (maybe we could also move the set_all_default on install there)
- since choosing keyboard is done after mounting partition to upgrade,
- we can do things much more nicely on upgrade:
- - keeping previous keyboard
- - or forcing prompting keyboard when bad keyboard
-
- * install_steps_gtk.pm, pkgs.pm:
- - call installCallback() on "open" too
- - on "open" we are not chrooted
- - setting advertising when chrooted could cause havoc
- if pango wants to load a new font (eg: advertising #13 in pt_BR)
-
- * share/upgrade/conectiva.10/map: ensure we have gnome-volume-manager when
- we have gnome or kde (to handle cdrom auto mounting)
-
- * install_steps.pm:
- - we do want doPartitionDisks and formatPartitions to be done early on
- upgrade,
- so that selectKeyboard is done when the partitions are mounted
- - call set_all_default() (to fix fstab on upgrade) before install
- packages so that
- {useSupermount} is correctly set
- (maybe we could also move the set_all_default on install there)
-
- * install_any.pm:
- - there is no more adverstising icon
- - cleaning
-
-2005/09/15 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/09/14 cavassin
-
- * share/po/pt_BR.po: Fixed typos and one fuzzy.
-
-2005/09/14 Frederic Lepied <flepied at mandriva.com>
-
- * keyboard.pm: fixed Latin American (latam) and Laotian (la) xkb keyboard
- names.
-
-2005/09/14 Michael Scherer <mscherer at mandrake.org>
-
- * standalone/localedrake:
- - allow to use --apply anywhere on the command line ( thanks ennael
- for spotting this )
-
-2005/09/14 Olivier Blin <oblin at mandriva.com>
-
- * Xconfig/card.pm: use nvidia legacy drivers for TNT2/GeForce/GeForce2
-
- * standalone/service_harddrake, network/network.pm, network/ethernet.pm:
- call network::ethernet::update_iftab from
- network::ethernet::configure_eth_aliases
-
- * install2.pm: write ethernet aliases (and iftab) on upgrade, so that
- eth1394 doesn't mess up interface ordering after install
-
- * network/adsl.pm: try to load all ppp modules, even if one of them fails
- modprobe pppoatm for pppoa connections
-
-2005/09/14 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: updates from eskild
-
-2005/09/14 Pixel <pixel at mandriva.com>
-
- * share/upgrade/conectiva.10/map, share/upgrade-map.conectiva.10,
- share/upgrade/conectiva.10/pre.remove-conflicting-files.sh,
- share/upgrade/conectiva.10/pre.merge-groups.sh, share/list.xml, pkgs.pm,
- install_any.pm: add upgrade script for conectiva
-
-2005/09/14 tbednarski
-
- * share/po/pl.po: translation updates
-
-2005/09/14 Antoine Ginies <aginies at mandriva.com>
-
- * network/pxe.pm: add auto_install option
-
-2005/09/14 Frederic Lepied <flepied at mandriva.com>
-
- * keyboard.pm: fixed Latin American (latam) and Laotian (la) xkb keyboard
- names.
-
- * Xconfig/card.pm: xorg 6.9
-
-2005/09/14 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: Updated POT file.
-
-2005/09/14 Gwenole Beauchesne <gbeauchesne at mandriva.com>
-
- * share/rpmsrate: add acroread7 l10n-* to be completed
-
-2005/09/14 mareklaane
-
- * share/po/et.po: Updated Estonian translation.
-
-2005/09/14 Olivier Blin <oblin at mandriva.com>
-
- * network/isdn_consts.pm: support AVM FRITZ!Card DSL USB v2.0
-
-2005/09/14 pjetur
-
- * share/po/is.po: Clean up fuzzy entries
-
-2005/09/14 pmaryanov
-
- * share/po/ru.po: updated translation
-
-2005/09/14 Pixel <pixel at mandriva.com>
-
- * share/upgrade-map.conectiva.10,
- share/upgrade/conectiva.10/pre.remove-conflicting-files.sh,
- share/upgrade/conectiva.10/pre.merge-groups.sh,
- share/upgrade/conectiva.10/map, share/list.xml, install_any.pm: add
- upgrade script for conectiva
-
- * pkgs.pm: add upgrade script for conectiva
- do have all useful info in selected leaves, including base packages,
- it won't be much longer but we can precise choices like lilo vs grub
- do log the prefered choice (esp. to debug lilo vs grub)
-
- * fs/dmraid.pm: log what dmraid -ccs and -ccr returns
-
- * diskdrake/resize_ext2.pm: don't succeed if resize2fs failed
-
- * run_program.pm: force our tmpdir to /root/tmp when root and not
- isInstall
- (fixes installkernel being called with sudo and not sudo -H) (thanks to
- fred crozat!)
-
- * install2.pm, fsedit.pm: new option "nodmraid" do ensure we don't use
- dmraid
- (useful since dmraid can be unused by the user but still half working as
- far as dmraid knows)
-
- * bootloader.pm: if we have dmraid devices, use grub, and not only if the
- boot device is on dmraid (bugzilla #18386)
-
-2005/09/14 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
-
- * share/po/fr.po: Fix two typos
-
- * drakxtools.spec: Make drakxtools require gtkdialogs for urpmi --gui
-
-2005/09/14 tbednarski
-
- * share/po/pl.po: translation updates
-
-2005/09/13 Funda Wang <fundawang at linux.net.cn>
-
- * lang.pm: There is no need manually specifying font name, because we've
- already handled
- it perfectly in fontconfig.
-
-2005/09/13 mbukovjan
-
- * share/po/cs.po: Updated Czech translation.
-
-2005/09/13 Olivier Blin <oblin at mandriva.com>
-
- * network/thirdparty.pm: fix device path for HCF modems
-
- * standalone/drakgw: fix untranslated messages (#17969)
-
- * mdk-stage1/network.c: add some log message about interface auto
- detection
-
- * network/tools.pm: fix start/stop of interfaces that are not set to start
- on boot
-
-2005/09/13 Pixel <pixel at mandriva.com>
-
- * install_any.pm: migrate fstab when upgrading an alien distro (should be
- done always?)
- when taking screenshot during pkgs install, we can be chrooted
- for now, disable FTP in media_browser since we don't handle it (#16088)
-
- * install_steps.pm: migrate fstab when upgrading an alien distro (should
- be done always?)
- better call Xconfig::various::runlevel() directly since it's not always
- called
-
- * install2.pm: it seems we don't need re-ordering steps anymore for
- upgrading
- (otherwise we would need to have miscellaneous before doPartitionDisks
- so that useSupermount is correctly set)
-
- * share/upgrade-map.conectiva.10: remove a lot of unneeded devel packages
-
- * ugtk2.pm: when taking screenshot during pkgs install, we can be
- chrooted, in that case the icon is not accessible
-
-2005/09/13 rstandtke
-
- * share/po/de.po: update
-
-2005/09/13 tsdgeos
-
- * share/po/ca.po: updating drakx
-
-2005/09/13 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/fr.po: update (Stéphane Teletchéa)
-
-2005/09/13 Warly <warly at mandriva.com>
-
- * share/logo-mandriva.png: new installation banner
-
-2005/09/13 David Baudens <baudens at mandriva.com>
-
- * share/rpmsrate: Fix previous errors
- Fix previous errors
- Low ressources setup
-
-2005/09/13 Daouda Lo <daouda at mandriva.com>
-
- * standalone.pm:
- - fix typo
-
-2005/09/13 Gwenole Beauchesne <gbeauchesne at mandriva.com>
-
- * share/rpmsrate: add some 32-bit compat packages (galaxy-kde + j2re)
-
-2005/09/13 Olivier Blin <oblin at mandriva.com>
-
- * mdk-stage1/network.c: add some log message about interface auto
- detection
-
-2005/09/13 Pixel <pixel at mandriva.com>
-
- * install2.pm: it seems we don't need re-ordering steps anymore for
- upgrading
- (otherwise we would need to have miscellaneous before doPartitionDisks
- so that useSupermount is correctly set)
- when upgrading and the keyboard config is wrong, write the unsafe config
- really skip setupBootloader in local_install
-
- * keyboard.pm, standalone/keyboarddrake, Xconfig/default.pm:
- - keyboard::read() now returns false if the value is not recognised
- - new function keyboard::read_or_default() which always returns a
- valid value
-
- * install_any.pm: migrate fstab when upgrading an alien distro (should be
- done always?)
- when taking screenshot during pkgs install, we can be chrooted
- for now, disable FTP in media_browser since we don't handle it (#16088)
- for local_install we don't want use_root_part to do anything
- silently ignore existing X config file if upgrading an alien distro
-
- * Xconfig/card.pm: allow forcing fbdev even if we don't allowFB
-
- * Xconfig/parse.pm, Xconfig/xfree.pm: handle DefaultDepth (which is the
- same as DefaultColorDepth)
-
- * Xconfig/main.pm: silently ignore existing X config file if upgrading an
- alien distro
-
- * bootloader.pm:
- - drop splashimage if file can't be found (useful when upgrading)
- - internally splashimage is preferably a file, not a grub file
- background and foreground are valid menu.lst commands
- - create cleanup_entries() which remove bad entries (and more
- verbosely than was done for lilo.conf) and call it for all bootloaders
- (was only for lilo)
- - keep removing duplicate labels only for lilo (and use uniq_) (don't
- do it for grub since duplicate labels are allowed (???))
-
- * share/rpmsrate: !CAT_ICEWM is dangerous, replace it with CAT_KDE ||
- CAT_GNOME
- restore previous indentation and fix a typo (hplip-hpijs)
-
- * install_steps_gtk.pm: don't have title twice (we already have it in the
- banner)
-
- * share/upgrade-map.conectiva.10: remove a lot of unneeded devel packages
- try to have less devel packages when conectiva's install didn't have
- them
- - ensure msec is there
- - ensure desktop-common-data is there when we have X
- - more closer map to mandriva tools
-
- * install_steps.pm: migrate fstab when upgrading an alien distro (should
- be done always?)
- better call Xconfig::various::runlevel() directly since it's not always
- called
- when upgrading by removing pkgs, ensure we keep the previous runlevel
- for local_install we don't want use_root_part to do anything
- - rename readBootloaderConfigBeforeInstall() to
- read_bootloader_config()
- - call read_bootloader_config() after installing packages (for the
- case of grub scripts fixing the configuration, ie creating device.map
- and install.sh)
-
- * ugtk2.pm: when taking screenshot during pkgs install, we can be
- chrooted, in that case the icon is not accessible
-
-2005/09/13 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
-
- * share/po/fr.po: Trim down message so it fits in the window
-
- * crypto.pm: Update hardcoded mirror list (for FTP suppl media)
- Need more coffee
- When selecting mirrors in the mirror list, if we find a mirror with the
- exact same architecture than the current one, discard all other mirrors.
- This should avoid listing i586 mirrors when installing on x86_64.
-
-2005/09/13 Thierry Vignaud <tvignaud at mandriva.com>
-
- * lang.pm: sync japanese package list with rpmsrate
- vi: remove scim (already selected by scim-m17n)
- install scim-m17n & scim for vietnamese users
- use SCIM by default for Vietnamese users since x-unikey is broken
- - do not set QT_IM_MODDULE to GTK_IM_MODDULE when not supported (eg:
- fix im-ja)
- - explicitely set the right QT_IM_MODULE
- (Yukiko Bando)
-
- * share/po/eu.po, share/po/bs.po, share/po/es.po, share/po/fi.po,
- share/po/de.po, share/po/cy.po, share/po/af.po, share/po/eo.po,
- share/po/ca.po, share/po/da.po, share/po/ga.po: fix extra accelerators
-
- * share/rpmsrate: install scim-qtimm for vi too
- vi: remove scim (already selected by scim-m17n)
- use SCIM (scim-m17n & scim) by default for Vietnamese users since
- x-unikey is broken
-
- * drakxtools.spec: 10.3-0.61mdk
-
-2005/09/13 Warly <warly at mandriva.com>
-
- * share/logo-mandriva.png: new installation banner
-
-2005/09/13 willysr
-
- * share/po/id.po: Updated
-
-2005/09/12 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2005/09/12 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
-
- * share/po/fr.po: Typo fix
-
-2005/09/12 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/ja.po: update (Yukiko Bando)
-
- * share/po/eu.po, share/po/bs.po, share/po/es.po, share/po/fi.po,
- share/po/de.po, share/po/cy.po, share/po/af.po, share/po/ca.po,
- share/po/da.po, share/po/eo.po, share/po/fr.po, share/po/ga.po: sync
- with KDE
-
-2005/09/12 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/09/12 Pixel <pixel at mandriva.com>
-
- * bootloader.pm: create read_grub_menu_lst() and read_grub_install_sh()
-
-2005/09/11 Frederic Lepied <flepied at mandriva.com>
-
- * share/rpmsrate: added klamav
-
-2005/09/11 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/09/11 Olivier Blin <oblin at mandriva.com>
-
- * network/thirdparty.pm: add more details when the firmware file can't be
- found
- misc documentation update, fix some incorrect fields
- check that required files are available once the package is installed
- require firmware version 2.3 for ipw2200 driver
-
- * network/network.pm: allow to write more modem variables in ifcfg files
-
- * network/netconnect.pm: list and configure wireless interfaces for which
- the firmware isn't available (#18195)
-
-2005/09/11 Stew Benedict <sbenedict at mandriva.com>
-
- * fsedit.pm: Mask Xbox partitions hda50-54 during install too.
-
-2005/09/10 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/vi.po: Updated vi translation from Larry Nguyen
- <larry@vnlinux.org>.
-
-2005/09/10 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2005/09/10 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/vi.po: Updated vi translation from Larry Nguyen
- <larry@vnlinux.org>.
-
- * install_messages.pm: Adopt new mandriva.com path
-
-2005/09/09 Thierry Vignaud <tvignaud at mandriva.com>
-
- * lang.pm (write) use qt-immodule again
-
- * drakxtools.spec: 10.3-0.59mdk
-
- * share/rpmsrate: install scim-qtimm for CJK
-
-2005/09/09 cavassin
-
- * share/po/pt_BR.po: More fixes for pt_BR.
-
-2005/09/09 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/sl.po: Updated Slovenian translation from Jure Repinc
- <jlp@holodeck1.com>.
-
-2005/09/09 Olivier Blin <oblin at mandriva.com>
-
- * network/thirdparty.pm: support snd-intel8x0m by writing SLMODEMD_MODULE
- in /etc/sysconfig/slmodemd
-
- * standalone/draksplash: perl_checker fixes
- fix adjustments creation (#18295)
-
-2005/09/09 pmaryanov
-
- * share/po/ru.po: updated translation
-
-2005/09/09 Pixel <pixel at mandriva.com>
-
- * install_steps_interactive.pm: pass around wait_message with progress bar
- capability
-
- * pkgs.pm: have same rpm config as when installing pkgs
-
- * interactive.pm: allow the wait_message progress bar to be used more than
- once
-
- * bootloader.pm: see if we have menu.lst first
- handle "module xxx" lines in menu.lst (used for xen)
-
- * install_steps.pm: play it safe (bugzilla #18390)
-
- * install_any.pm: set META_CLASS"xxx" flag
- have a progress bar when removing packages
- pass around wait_message with progress bar capability
-
- * share/rpmsrate: replace mozilla-mail (no more) with mozilla-thunderbird
-
-2005/09/09 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
-
- * install_any.pm: Remove commented code
- When adding http suppl media, repropose the last url entered. Very
- useful in case of typo in the url
-
- * share/po/fr.po: More translations
-
-2005/09/09 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/br.po: update
- update
- update
- update
-
- * lang.pm (write) use qt-immodule again
-
- * drakxtools.spec: 10.3-0.59mdk
-
- * share/rpmsrate: install scim-qtimm for CJK
-
-2005/09/08 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/draksambashare: adjust GUI ouput in modify dialog box
-
-2005/09/08 cavassin
-
- * share/po/pt_BR.po: Fixed a few more pt_BR messages.
-
-2005/09/08 Funda Wang <fundawang at linux.net.cn>
-
- * lang.pm: unset QT_IM_MODULE due to unsatisfied qtimmodule support in Qt.
- If we don't touch QT_IM_MODULE, it will cause KDE hangs up if
- upgrading from cooker to official.
-
- * share/po/it.po: Updated it translation from Andrea Celli
- <andrea.celli@libero.it>
-
- * share/rpmsrate: Drop scim-qtimm due to unsatisfied qtimm support in qt3
-
-2005/09/08 mareklaane
-
- * share/po/et.po: Updated Estonian translation.
-
-2005/09/08 mbukovjan
-
- * share/po/cs.po: Updated Czech translations.
-
-2005/09/08 Olivier Blin <oblin at mandriva.com>
-
- * network/thirdparty.pm: fix typo
- don't try to install both source/precompiled dkms packages if one of
- them is installed
- really fix sagem/speedtouch detection
-
- * network/netconnect.pm: force DEVICE field write for ISDN configurations
- add reminder
- disable roaming for rt2400/rt2500
- do not let modem settings be overriden by previous ppp0 settings
-
- * network/wireless.pm: disable roaming for rt2400/rt2500
-
- * network/modem.pm: really read system kppp configuration (happy birthday
- little bug)
- do not let modem settings be overriden by previous ppp0 settings
-
- * standalone/drakids: allow to blacklist/whitelist from the log window
- use Close instead of Quit
-
- * network/ethernet.pm: try not to use wrong "orinoco" module (#18294)
-
- * standalone/drakconnect: do not let modem settings be overriden by
- previous ppp0 settings
-
- * network/drakfirewall.pm: only enable built-in IFW rules for now (too
- late to add strings for custom rules)
-
-2005/09/08 Pixel <pixel at mandriva.com>
-
- * install_steps_interactive.pm: fix log
-
- * Xconfig/main.pm:
- - when changing the card/monitor, ensure the resolution is still valid
- - when switching to fbdev, ensure we have a bios resolution
-
-2005/09/08 Reinout van Schouwen <reinout at cs.vu.nl>
-
- * share/po/nl.po: * Sep 9 2005 Reinout van Schouwen <reinout@cs.vu.nl>
- Updated Dutch translation by Rob Teng <mandrake.tips@free.fr>
-
-2005/09/08 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
-
- * share/po/fr.po: Fix grammar
-
- * install_steps.pm: Add a trace
-
-2005/09/08 Thierry Vignaud <tvignaud at mandriva.com>
-
- * ugtk2.pm (Gtk2::Banner->new) fix banner's text position since pixel has
- reduce its height
- (create_box_with_title) kill that dead code path
-
- * share/po/br.po: update
- update
- update
-
- * standalone/logdrake: insensitive categories for which file is missing,
- thus preventing
- crashing (#16935)
-
- * share/po/ja.po: update (Yukiko Bando)
-
- * drakxtools.spec: 10.3-0.58mdk
- 10.3-0.57mdk
-
-2005/09/08 Warly <warly at mandriva.com>
-
- * share/rpmsrate: rename openldap openldap-servers
-
-2005/09/08 willysr
-
- * share/po/id.po: Updated
-
-2005/09/07 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/uk.po, share/po/mn.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/Makefile,
- share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/vi.po, share/po/fr.po, share/po/ta.po,
- share/po/nl.po, share/po/de.po, share/po/tl.po, share/po/eo.po,
- share/po/bg.po, share/po/cs.po, share/po/el.po, share/po/uz@Latn.po:
- Updated POT.
-
-2005/09/07 Olivier Blin <oblin at mandriva.com>
-
- * mdk-stage1/network.c: mirror list support for http method
-
- * detect_devices.pm:
- - split is_useful_interface out of is_lan_interface
- - split get_all_net_devices out of getNet
- - add get_net_interfaces to include isdn/dsl interfaces
-
- * network/thirdparty.pm: fix installation of eagle-usb package
- our hsf package is called hsfmodem, not hsflinmodem
-
- * standalone/net_monitor: really preselect default interface
- show ppp/isdn interfaces as well (#18303)
-
- * mdk-stage1/url.c: http redirection support
-
-2005/09/07 Pixel <pixel at mandriva.com>
-
- * rescue/partimage_whole_disk:
- - install scsi and sata modules
- - make save_home_directory optional (and is false by default)
-
- * modules.pm: silent error when ahci or ata_piix insmod fail (ahci fails
- on vmware)
-
-2005/09/07 Till Kamppeter <till at mandriva.com>
-
- * printer/printerdrake.pm:
- - Another 64-bit fix in printerdrake. Now setup of HP's multi-function
- printers really works on 64-bit boxes.
- - Give also access to the CUPS auto administration dialog during
- installation.
-
-2005/09/07 tsdgeos
-
- * share/po/ca.po: updates
-
-2005/09/07 Thierry Vignaud <tvignaud at mandriva.com>
-
- * standalone/service_harddrake: blacklist audio too (#12731)
-
- * modules/any_conf.pm (remove_module) better written this way
- (remove_module) prevent wiping /etc/modprobe.preload if module is
- unset (#16181)
-
- * drakxtools.spec: 10.3-0.56mdk
-
-2005/09/07 Warly <warly at mandriva.com>
-
- * share/advertising/24.png, share/advertising/07.png,
- share/advertising/26.png, share/advertising/16.png,
- share/advertising/11.png, share/advertising/02.png,
- share/advertising/23.png, share/advertising/15.png,
- share/advertising/03.png, share/advertising/14.png,
- share/advertising/25.png, share/advertising/19.png,
- share/advertising/13.png, share/advertising/10.png,
- share/advertising/04.png, share/advertising/18.png,
- share/advertising/22.png, share/advertising/09.png,
- share/advertising/06.png, share/advertising/17.png,
- share/advertising/05.png, share/advertising/01.png,
- share/advertising/21.png, share/advertising/20.png,
- share/advertising/08.png, share/advertising/12.png: update images with
- new true color ones
-
-2005/09/06 Frederic Crozat <fcrozat at mandriva.com>
-
- * share/rpmsrate: Don't install gnome-alsa-mixer when detecting alsa,
- gstreamer-alsa
- is enough
-
-2005/09/06 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_TW.po: Updated zh_TW translation from You-Cheng Hsieh
- <yochenhsieh@xuite.net>
-
-2005/09/06 Olivier Blin <oblin at mandriva.com>
-
- * mdk-stage1/probing.c: fix lame bug preventing usb and firewire
- controllers to be recognized
-
- * network/thirdparty.pm: sm56 support
-
-2005/09/06 Pixel <pixel at mandriva.com>
-
- * share/rpmsrate: we prefer engine arts for amarok, don't let the install
- choose arbitrarily
-
-2005/09/06 Till Kamppeter <till at mandriva.com>
-
- * printer/printerdrake.pm:
- - Made printerdrake working on 64-bit systems, with /usr/lib64.
- - Install "desktop-printing" only on sytems with installed
- gnome-panel, Discovery does not ship GNOME and also not
- desktop-printing.
- - Fixed endless loop when clicking "Back" in model selection, when by
- autodetection no model was found.
-
- * printer/data.pm:
- - Made printerdrake working on 64-bit systems, with /usr/lib64.
- - Install "desktop-printing" only on sytems with installed
- gnome-panel, Discovery does not ship GNOME and also not
- desktop-printing.
-
- * printer/main.pm:
- - Made printerdrake working on 64-bit systems, with /usr/lib64.
-
-2005/09/06 Thierry Vignaud <tvignaud at mandriva.com>
-
- * standalone/draksec: install chkrootkit if needed (#17896)
-
- * drakxtools.spec: 10.3-0.55mdk
-
- * standalone/service_harddrake.sh: fix status message (#16925)
-
-2005/09/06 willysr
-
- * share/po/id.po: Updated
-
-2005/09/06 Daouda Lo <daouda at mandriva.com>
-
- * Makefile.config:
- - don't package drakvpn as it is unusable
-
-2005/09/06 Frederic Crozat <fcrozat at mandriva.com>
-
- * share/rpmsrate: Don't install gnome-alsa-mixer when detecting alsa,
- gstreamer-alsa
- is enough
-
-2005/09/06 Funda Wang <fundawang at linux.net.cn>
-
- * share/rpmsrate: forgot to add CAT_BOOKS in previous commit :p
-
-2005/09/06 Olivier Blin <oblin at mandriva.com>
-
- * network/thirdparty.pm: sm56 support
- allow to run perl code as post command
-
- * network/drakfirewall.pm: fix typo (Rafael)
-
-2005/09/06 Pixel <pixel at mandriva.com>
-
- * install2.pm: do summaryBefore() only once (this will reduce damage
- caused in bugzilla #18277)
-
- * share/rpmsrate: we prefer engine arts for amarok, don't let the install
- choose arbitrarily
-
- * install_steps_interactive.pm: display in MBytes the sizes instead of
- Bytes (not changing the string since the po is frozen)
-
- * bootloader.pm: different entries are same even if readonly value is not
- the same
- (since we dropped setting readonly)
-
-2005/09/06 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
-
- * share/po/fr.po: A few missing strings
-
- * install_any.pm: Remove a misleading comment
-
-2005/09/06 Till Kamppeter <till at mandriva.com>
-
- * printer/printerdrake.pm:
- - Install "desktop-printing" only on sytems with installed
- gnome-panel, Discovery does not ship GNOME and also not
- desktop-printing.
- - Fixed endless loop when clicking "Back" in model selection, when by
- autodetection no model was found.
- - Some fixes in handling unknown printers.
-
- * printer/data.pm:
- - Install "desktop-printing" only on sytems with installed
- gnome-panel, Discovery does not ship GNOME and also not
- desktop-printing.
-
- * printer/main.pm:
- - Do not set margins in CUPS when HPIJS is the driver, for this driver
- the margins are already well set.
- - Also match model name with added lower-case "hp" with HPLIP XML
- database.
-
- * printer/detect.pm:
- - When auto-detecting network printer models via SNMP, guess
- manufacturer name from model name
-
-2005/09/06 Vincent Guardiola <vguardiola at mandriva.com>
-
- * authentication.pm: Remove Encrytion type for AD with SFU (not tested)
- Change Label for AD Winbind (more explicit)
-
-2005/09/06 willysr
-
- * share/po/id.po: Updated
-
-2005/09/05 cavassin
-
- * share/po/pt_BR.po: Fixed missing DrakX pt_BR messages: msgcat'ed an old
- po and them merged
- with actual POT. Now we have 100% translated (3861 msgs).
-
-2005/09/05 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_TW.po: Updated Traditional translation from You-Cheng Hsieh
- <yochenhsieh@xuite.net>.
-
- * share/po/ja.po: Updated translation from Yukiko Bando
- <ybando@k6.dion.ne.jp>.
-
- * share/rpmsrate: documentation packages are not named as mandriva-doc-LL,
- cause we have already splitted them by manuals/books.
-
-2005/09/05 Olivier Blin <oblin at mandriva.com>
-
- * network/shorewall.pm: fix port range parser
-
- * share/rpmsrate: add mandi-ifw in install section
-
-2005/09/05 pmaryanov
-
- * share/po/ru.po: updated translation
-
-2005/09/05 Pixel <pixel at mandriva.com>
-
- * do_pkgs.pm: create ->ensure_are_installed (alike ->ensure_is_installed)
-
- * authentication.pm: perl_checker fixes
- handle required package(s) not installed correctly (bugzilla #18180)
-
- * mygtk2.pm: new "Image_using_pixmap" which is rendered using DITHER_MAX
- which is much better on 16bpp displays
-
- * install_steps_gtk.pm: use Image_using_pixmap to display adverstising
- (nicer rendering on 16bpp displays)
-
- * standalone/drakauth, standalone/finish-install: handle required
- package(s) not installed correctly (bugzilla #18180)
-
-2005/09/05 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
-
- * install_any.pm: At some point, an empty hashref is autovivified in
- $packages->{medium}.
- So, protect the loops that iterate over this hash, in application of
- the belt and suspenders doctrine.
- Proper detection of network interface at supplementary media setup
-
- * install_steps_interactive.pm: Don't crash when xorg-x11 is not available
-
- * pkgs.pm: At some point, an empty hashref is autovivified in
- $packages->{medium}.
- So, protect the loops that iterate over this hash, in application of
- the belt and suspenders doctrine.
-
- * share/po/zh_TW.po: Fix newlines, once again
-
-2005/09/05 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/br.po: update
- minor update
- minor update
- update
- update
- update
-
- * drakxtools.spec: 10.3-0.54mdk
-
- * pixmaps/steps_done.png: better image (soft border)
-
- * share/po/cy.po, share/po/fr.po, share/po/ga.po: update
-
-2005/09/04 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/hr.po,
- share/po/be.po, share/po/pa_IN.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/uk.po, share/po/mn.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: Updated POT file.
-
- * standalone/draksambashare, printer/printerdrake.pm: Corrected typos.
-
- * share/po/ja.po: Updated POT file.
- Updated Japanese translation from Yukiko Bando <ybando@k6.dion.ne.jp>.
-
-2005/09/04 mbukovjan
-
- * share/po/cs.po: Updated Czech translation
-
-2005/09/04 Olivier Blin <oblin at mandriva.com>
-
- * ftp.pm: fix typo
-
-2005/09/04 tbednarski
-
- * share/po/pl.po: Translation updates
-
-2005/09/04 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2005/09/04 willysr
-
- * share/po/id.po: Updated
-
-2005/09/03 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation.
-
-2005/09/03 Olivier Blin <oblin at mandriva.com>
-
- * network/netconnect.pm: set SSID for rt2400/rt2500 cards using WPA with
- an iwpriv command (#18205)
-
-2005/09/03 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/09/03 Till Kamppeter <till at mandriva.com>
-
- * standalone/printerdrake:
- - Used Glib::Timeout->add() function for auto-refreshing remote
- printer list.
- - Fixed printer list filtering in the main window, now one can also
- filter on the state field, and pressing <Enter> after typing in the
- filter string does not cause the filter being lost when hitting the
- refresh button or doing some action.
- - Taken care that auto-refreshing does not happen when the refresh
- function is running.
- - Auto-refresh the list of remote printers in the main windows every 5
- seconds.
-
-2005/09/02 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: Updated POT file.
-
-2005/09/02 Olivier Blin <oblin at mandriva.com>
-
- * standalone/drakhelp: perl_checker fix
- prefix file path with file:// (mozilla-firefox needs a valid url)
-
- * standalone/net_applet: don't exec new binary on update
-
- * drakxtools.spec: 10.3-0.53mdk
- 10.3-0.52mdk
-
-2005/09/02 Pixel <pixel at mandriva.com>
-
- * install_steps.pm, common.pm, share/upgrade-map.conectiva.10,
- share/list.xml, pkgs.pm, install_any.pm:
- - new functionality: upgrade_by_removing_pkgs, enabled when upgrading
- redhat and conectiva distributions
- - add file upgrade-map.conectiva.10 for precise choice of packages
- - save /etc/xxx-release into /root/drakx/xxx-release.upgrading when
- starting
- - release_file(): look for xxx-release.upgrading first
- - find_root_parts(): better logging about upgrade_by_removing_pkgs,
- and factorize code
- - when all packages are installed, remove xxx-release.upgrading and
- rename pkgs::removed_pkgs_to_upgrade_file()
-
- * tools/install-xml-file-list: replace /lib/tls with /lib for libraries
- collected using collect_needed_libraries
- (it was already done for files collected using ldd)
-
-2005/09/02 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
-
- * pkgs.pm: Workaround : Don't call method directly
-
-2005/09/02 Till Kamppeter <till at mandriva.com>
-
- * printer/cups.pm, standalone/printerdrake:
- - Make building of main window of printerdrake much faster.
-
- * printer/detect.pm:
- - Made reloading of parallel port kernel modules (for auto-detection)
- also working if "ppdev" module is loaded.
- - Let also network printers be found which do not answer to a
- broadcast ping (most newer HP). This is done only in class C and
- smaller networks, to not scan too many machines.
-
- * printer/services.pm:
- - Check for CUPS daemon running without console output.
-
-2005/09/02 Warly <warly at mandriva.com>
-
- * share/rpmsrate: add discovery-icons-theme for disco in KDE
-
-2005/09/02 Olivier Blin <oblin at mandriva.com>
-
- * standalone/drakhelp: perl_checker fix
- prefix file path with file:// (mozilla-firefox needs a valid url)
-
-2005/09/02 Pixel <pixel at mandriva.com>
-
- * install2.pm: move code to create_minimal_files()
-
- * install_steps.pm, common.pm, share/upgrade-map.conectiva.10,
- share/list.xml, pkgs.pm:
- - new functionality: upgrade_by_removing_pkgs, enabled when upgrading
- redhat and conectiva distributions
- - add file upgrade-map.conectiva.10 for precise choice of packages
- - save /etc/xxx-release into /root/drakx/xxx-release.upgrading when
- starting
- - release_file(): look for xxx-release.upgrading first
- - find_root_parts(): better logging about upgrade_by_removing_pkgs,
- and factorize code
- - when all packages are installed, remove xxx-release.upgrading and
- rename pkgs::removed_pkgs_to_upgrade_file()
-
- * tools/install-xml-file-list: replace /lib/tls with /lib for libraries
- collected using collect_needed_libraries
- (it was already done for files collected using ldd)
-
- * install_any.pm:
- - new functionality: upgrade_by_removing_pkgs, enabled when upgrading
- redhat and conectiva distributions
- - add file upgrade-map.conectiva.10 for precise choice of packages
- - save /etc/xxx-release into /root/drakx/xxx-release.upgrading when
- starting
- - release_file(): look for xxx-release.upgrading first
- - find_root_parts(): better logging about upgrade_by_removing_pkgs,
- and factorize code
- - when all packages are installed, remove xxx-release.upgrading and
- rename pkgs::removed_pkgs_to_upgrade_file()
- move code to create_minimal_files()
-
-2005/09/02 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
-
- * pkgs.pm: Workaround : Don't call method directly
-
-2005/09/02 Olivier Blin <oblin at mandriva.com>
-
- * share/rpmsrate: don't install hotplug anymore
-
-2005/09/02 Pixel <pixel at mandriva.com>
-
- * install2.pm: move code to create_minimal_files()
-
- * pkgs.pm:
- - new functionality: upgrade_by_removing_pkgs, enabled when upgrading
- redhat and conectiva distributions
- - add file upgrade-map.conectiva.10 for precise choice of packages
- - save /etc/xxx-release into /root/drakx/xxx-release.upgrading when
- starting
- - release_file(): look for xxx-release.upgrading first
- - find_root_parts(): better logging about upgrade_by_removing_pkgs,
- and factorize code
- - when all packages are installed, remove xxx-release.upgrading and
- rename pkgs::removed_pkgs_to_upgrade_file()
- rename pkgs::rpmDbOpenForInstall() to pkgs::open_rpm_db_rw()
- allow verbose removing of packages
- opening rpm db in selectPackage(), so remove some rpmDbOpen()
- new function select_by_package_names()
-
- * diskdrake/interactive.pm, fs/format.pm, interactive.pm:
- fs::format::wait_message() is now ->wait_message_with_progress_bar (on
- interactive objects)
-
- * share/upgrade-map.conectiva.10, common.pm, share/list.xml:
- - new functionality: upgrade_by_removing_pkgs, enabled when upgrading
- redhat and conectiva distributions
- - add file upgrade-map.conectiva.10 for precise choice of packages
- - save /etc/xxx-release into /root/drakx/xxx-release.upgrading when
- starting
- - release_file(): look for xxx-release.upgrading first
- - find_root_parts(): better logging about upgrade_by_removing_pkgs,
- and factorize code
- - when all packages are installed, remove xxx-release.upgrading and
- rename pkgs::removed_pkgs_to_upgrade_file()
-
- * install_any.pm:
- - new functionality: upgrade_by_removing_pkgs, enabled when upgrading
- redhat and conectiva distributions
- - add file upgrade-map.conectiva.10 for precise choice of packages
- - save /etc/xxx-release into /root/drakx/xxx-release.upgrading when
- starting
- - release_file(): look for xxx-release.upgrading first
- - find_root_parts(): better logging about upgrade_by_removing_pkgs,
- and factorize code
- - when all packages are installed, remove xxx-release.upgrading and
- rename pkgs::removed_pkgs_to_upgrade_file()
- move code to create_minimal_files()
- rename pkgs::rpmDbOpenForInstall() to pkgs::open_rpm_db_rw()
- opening rpm db in selectPackage(), so remove some rpmDbOpen()
- new function select_by_package_names()
- hoist things in install_any
- fs::format::wait_message() is now ->wait_message_with_progress_bar (on
- interactive objects)
-
- * install_steps_interactive.pm: cleanup
- we want the release extension
- set {upgrade_by_removing_pkgs} when upgrading conectiva and redhat
- new function select_by_package_names()
- hoist things in install_any
- fs::format::wait_message() is now ->wait_message_with_progress_bar (on
- interactive objects)
-
- * install_steps.pm:
- - new functionality: upgrade_by_removing_pkgs, enabled when upgrading
- redhat and conectiva distributions
- - add file upgrade-map.conectiva.10 for precise choice of packages
- - save /etc/xxx-release into /root/drakx/xxx-release.upgrading when
- starting
- - release_file(): look for xxx-release.upgrading first
- - find_root_parts(): better logging about upgrade_by_removing_pkgs,
- and factorize code
- - when all packages are installed, remove xxx-release.upgrading and
- rename pkgs::removed_pkgs_to_upgrade_file()
- allow upgrading a local_install (no need to call use_root_part)
- opening rpm db in selectPackage(), so remove some rpmDbOpen()
- hoist things in install_any
-
- * install_steps_gtk.pm: cleanup
-
-2005/09/02 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
-
- * pkgs.pm: Workaround : Don't call method directly
-
-2005/09/02 Till Kamppeter <till at mandriva.com>
-
- * share/rpmsrate:
- - Removed hplip-hpijs-ppds, this package is not really required.
-
- * printer/printerdrake.pm:
- - Use printer name determined by HPLIP to auto-select PPD file of a
- network printer where the model name was not determined by SNMP.
-
-2005/09/01 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/pt_BR.po: Updated pt_BR translation from Arthur R. Mello
- <renato@conectiva.com.br>.
-
- * share/po/ja.po: Updated Japanese translation from Yukiko Bando
- <ybando@k6.dion.ne.jp>
-
-2005/09/01 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo corrigido
-
-2005/09/01 Olivier Blin <oblin at mandriva.com>
-
- * drakxtools.spec: 10.3-0.51mdk
-
- * install_steps.pm: enable Ifw by default in high security levels and
- enable the psd rule
-
- * network/ifw.pm: require dbus_object only when needed
-
- * share/rpmsrate, network/drakfirewall.pm, network/shorewall.pm: install
- and configure Interface Firewall in drakfirewall
-
- * standalone/net_applet: run drakids on click if an alert is still
- available
-
- * standalone/drakconnect: fix include path (#18103)
-
- * standalone/net_monitor: interactive is unused
- use window instead of rwindow, they're equivalent
-
-2005/09/01 Pixel <pixel at mandriva.com>
-
- * authentication.pm: perl_checker compliance
- allow Active Directory even on non corporate product (requested by our
- commercial team)
- allow removing lines in krb5_conf_update() (for vguardiola)
-
- * install_steps.pm: set TMPDIR and TMP during install (bugzilla #18088)
- cleanup
-
- * pkgs.pm: create remove_raw(), remove() now retries with option noscripts
- preferred packages:
- - remove packages not existing anymore
- - add nail and glibc-devel
- help debugging packageCallbackChoices()
-
- * Xconfig/card.pm: drivers/fglrx_drv.o is now drivers/fglrx_drv.so
-
- * bootloader.pm: handle "=" between keyword and value (esp. useful for
- reading conectiva's menu.lst) (bugzilla #18090)
-
- * mygtk2.pm: fix return value (thanks to blino for finding the pb)
-
-2005/09/01 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
-
- * share/po/pt.po: Fix newline in translation
-
-2005/09/01 Till Kamppeter <till at mandriva.com>
-
- * printer/printerdrake.pm:
- - Do not display or use the description field of the IEEE-1284 ID
- string of a printer if it is shorter than 5 characters (Many HP
- printers have a 4-digit number there).
-
-2005/09/01 Vincent Guardiola <vguardiola at mandriva.com>
-
- * authentication.pm: Change definition for Active Directory with SFU and
- Active Directory Winbind
- Remove idmap ldap backend for winbind AD (obsolete, see Samba 3.0.20)
- Remove default_tgs_enctypes, default_tkt_enctypes, permitted_enctypes
- from /etc/krb5.conf for winbind configuration, Buzgilla 15232
-
-2005/09/01 Warly <warly at mandriva.com>
-
- * share/advertising/13.png, share/advertising/13.pl: forgotten pictures
-
- * standalone/draksplash, bootsplash.pm: add few parameters
-
-2005/08/31 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: updated
-
-2005/08/31 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/08/31 Olivier Blin <oblin at mandriva.com>
-
- * network/thirdparty.pm: perl_checker fix
-
- * install_steps.pm, install_any.pm: initial deployment server support
-
- * standalone/drakroam: short-circuit and fix embedded mode
-
- * standalone/net_applet: avoid warning
- don't display keyring icon if the wireless network doesn't need a key
- (thanks to Couriousous)
-
- * network/tools.pm: add get_current_gateway_interface
-
- * network/netconnect.pm, network/ethernet.pm: move is_ifplugd_blacklist in
- network::ethernet (and get rid of madwifi_pci, it's wifi and supported
- by ifplugd)
-
-2005/08/31 Pixel <pixel at mandriva.com>
-
- * install_steps_interactive.pm: set isUpgrade to conectiva when we found a
- conectiva release file
- instead of dirtying pkgs::installCallback, use
- install_steps::installCallback
- (still not clean, but better)
-
- * pkgs.pm: instead of dirtying pkgs::installCallback, use
- install_steps::installCallback
- (still not clean, but better)
- fix typo
- create remove_marked_ask_remove() and use it
-
- * ugtk2.pm: use "to_bottom" functionality from mygtk2 (note that
- scroll_to_iter is no good for this, scroll_to_mark is better (cf gtk's
- doc))
- ensure Gtk2::Banner::set_pixmap can be used to change the text
-
- * install_steps_gtk.pm:
- - new advertising
- - nicer "Details" mode
- instead of dirtying pkgs::installCallback, use
- install_steps::installCallback
- (still not clean, but better)
- fix bad handle of the elapsed time
-
- * mygtk2.pm: simpler and better code, allowing forcing scrolling to bottom
- allow ScrolledWindow around TextView to be automatically scrolled down
- on new text insert
- allow file_ref to be false at Image creation
- allow adding text to a TextView with gtkadd
- add "text_ref" for Label's
- add Label_Left
- add ProgressBar
- handle hide_ref and show_ref
-
- * common.pm: also look for conectiva-release
-
- * install_steps.pm: instead of dirtying pkgs::installCallback, use
- install_steps::installCallback
- (still not clean, but better)
- create remove_marked_ask_remove() and use it
-
-2005/08/31 tbednarski
-
- * share/po/pl.po: Translation update
-
-2005/08/31 Till Kamppeter <till at mandriva.com>
-
- * printer/detect.pm:
- - Fixed retrieval of parallel port base address.
- - Fixed parallel printer auto-detection and registered IEEE-1284 ID
- string for Mandriva hardware database.
- - Fixed USB IEEE-1284 ID string output.
- - Added recording of IEEE-1284 device ID string, for USB printers.
-
- * printer/main.pm:
- - When having added one's own PPD file now it gets pre-selected in the
- printer/driver list.
- - Fixed recognition of alredy set up queues for auto queue setup, for
- several Xerox Phaser printers the user was asked again and again to
- set up a print queue.
-
-2005/08/31 Warly <warly at mandriva.com>
-
- * share/advertising/25.pl, share/advertising/03.png,
- share/advertising/25.png, share/advertising/20.pl,
- share/advertising/13-b.png, share/advertising/30.png,
- share/advertising/02.pl, share/advertising/list-ppp,
- share/advertising/27.pl, share/advertising/14.pl,
- share/advertising/lpi.png, share/advertising/21.png,
- share/advertising/07.png, share/advertising/08.pl,
- share/advertising/26.png, share/advertising/22.pl,
- share/advertising/30.pl, share/advertising/10.pl,
- share/advertising/18.pl, share/advertising/16.pl,
- share/advertising/28.png, share/advertising/01.pl,
- share/advertising/09.png, share/advertising/29.png,
- share/advertising/list-dwd, share/advertising/06.png,
- share/advertising/01.png, share/advertising/23.pl,
- share/advertising/list-dis, share/advertising/02.png,
- share/advertising/15.png, share/advertising/23.png,
- share/advertising/29.pl, share/advertising/07.pl,
- share/advertising/19.png, share/advertising/04.png,
- share/advertising/13-a.png, share/advertising/09.pl,
- share/advertising/27.png, share/advertising/17.pl,
- share/advertising/22.png, share/advertising/13-b.pl,
- share/advertising/04.pl, share/advertising/28.pl,
- share/advertising/12.png, share/advertising/24.pl,
- share/advertising/12.pl, share/advertising/26.pl,
- share/advertising/06.pl, share/advertising/03.pl,
- share/advertising/24.png, share/advertising/13-a.pl,
- share/advertising/lpi.pl, share/advertising/11.png,
- share/advertising/16.png, share/advertising/14.png,
- share/advertising/list-pwp, share/advertising/10.png,
- share/advertising/18.png, share/advertising/19.pl,
- share/advertising/15.pl, share/advertising/11.pl,
- share/advertising/05.pl, share/advertising/21.pl,
- share/advertising/05.png, share/advertising/17.png,
- share/advertising/20.png, share/advertising/08.png: add new advertising
- pictures
-
-2005/08/31 willysr
-
- * share/po/id.po: Updated plus added new Translator
-
-2005/08/30 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/draknfs: use Combo instaed of ComboBoxEntry to fiw 2 rows
- heigh bug
- put comboxentry in a VBox (to avoid 2 rows bug in comboboxentry)
-
-2005/08/30 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: jorge
-
-2005/08/30 Olivier Blin <oblin at mandriva.com>
-
- * drakxtools.spec: 10.3-0.50mdk
-
- * network/wireless.pm: don't translate strings here
- - configure wpa_supplicant correctly for shared or passwordless
- connections
- - split write_interface_setttings out of
- network::network::write_interface_conf
- - wpa_supplicant may list some networks twice, handle it
- - rewrite drakroam to use wpa_supplicant
-
- * standalone/drakconnect: fix isdn config in manage interface
- use lower case 'i' in iwconfig/iwpriv/iwspy (#18031)
-
- * network/network.pm, network/monitor.pm:
- - configure wpa_supplicant correctly for shared or passwordless
- connections
- - split write_interface_setttings out of
- network::network::write_interface_conf
- - wpa_supplicant may list some networks twice, handle it
- - rewrite drakroam to use wpa_supplicant
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, network/netconnect.pm, share/po/be.po,
- share/po/pa_IN.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/da.po, share/po/ca.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/sc.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/uk.po, share/po/mn.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/ta.po, share/po/fr.po, share/po/nl.po, share/po/tl.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/bg.po,
- share/po/cs.po, share/po/uz@Latn.po: use lower case 'i' in
- iwconfig/iwpriv/iwspy (#18031)
-
- * standalone/drakroam: really allow to select the network
- - configure wpa_supplicant correctly for shared or passwordless
- connections
- - split write_interface_setttings out of
- network::network::write_interface_conf
- - wpa_supplicant may list some networks twice, handle it
- - rewrite drakroam to use wpa_supplicant
-
-2005/08/30 Pixel <pixel at mandriva.com>
-
- * share/rpmsrate: i remember someone telling me gdm should now be used
- instead of xdm when neither GNOME nor KDE are selected. but it seems
- i've heard a ghost (or something alike), so reverting
-
- * install_steps_gtk.pm:
- - use noborderWhenEmbedded instead of dirtying directly in WizardTable
- - use children_centered to cleanly and correctly size the progress bar
-
- * mygtk2.pm: make MagicWindow re-entrant again (was broken due to only one
- banner, eg. for drakx summary)
- add children_centered (was already children_tight, children_loose and
- children)
-
-2005/08/30 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
-
- * crypto.pm: Update mirrorlist
-
- * drakxtools.spec: require xtest instead of the /usr/X11R6/bin/xtest file
-
-2005/08/30 Till Kamppeter <till at mandriva.com>
-
- * printer/printerdrake.pm:
- - When setting up new queue with HPLIP old HPOJ config was not deleted
- during installation. Fixed.
-
- * printer/main.pm:
- - Support for HPLIP URIs with "?device=...", possible fix for bug
- #18041 and bug #18053.
-
-2005/08/30 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/draknfs: put comboxentry in a VBox (to avoid 2 rows bug in
- comboboxentry)
- remove icon on all buttons
- in case of all_squash use anongid=65534 and anongid=65534
-
-2005/08/30 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: Updated POT file
-
-2005/08/30 Olivier Blin <oblin at mandriva.com>
-
- * standalone/net_applet: display wireless link icon in net_applet if
- connected through wireless
- check wireless every 20 seconds only
-
- * network/wireless.pm, network/monitor.pm, network/network.pm,
- standalone/drakroam:
- - configure wpa_supplicant correctly for shared or passwordless
- connections
- - split write_interface_setttings out of
- network::network::write_interface_conf
- - wpa_supplicant may list some networks twice, handle it
- - rewrite drakroam to use wpa_supplicant
-
- * mdk-stage1/probing.c: support for alternate modules (allows to load both
- ahci and ata_piix)
-
- * network/tools.pm: allow net_applet to use vlan/alias interfaces (thanks
- to Michael Scherer)
- fix metric parser
-
-2005/08/30 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: updated translations
-
-2005/08/30 Pixel <pixel at mandriva.com>
-
- * share/rpmsrate: i remember someone telling me gdm should now be used
- instead of xdm when neither GNOME nor KDE are selected. but it seems
- i've heard a ghost (or something alike), so reverting
-
- * install_steps_gtk.pm:
- - use noborderWhenEmbedded instead of dirtying directly in WizardTable
- - use children_centered to cleanly and correctly size the progress bar
-
- * modules.pm: ahci says "ahci: probe of %s failed with error %d", but
- succeeds anyway, so we need to handle the ahci/ata_piix case otherwise
-
- * interactive.pm: cleanup (translate late, and move methods to upper
- class)
- fix "Cancel" in ask_okcancel
-
- * standalone/drakboot: vga_fb expects the vga mode, not a boolean, fixing
- propose to create a default bootloader configuration when no bootloader
- is found
-
- * bootloader.pm: fix ugly typo
- handle {message_text} not set but /boot/message-text existing
- create suggest_message_text()
-
- * ugtk2.pm: we don't want global vars in mygtk2, move
- $::noborderWhenEmbedded to ugtk2
- if_ is *not* short-circuit
-
- * interactive/gtk.pm, interactive/stdio.pm, interactive/newt.pm: cleanup
- (translate late, and move methods to upper class)
-
- * any.pm: ensure /boot/message-text exists (useful when switching from
- grub to lilo)
- tell writeandclean_ldsoconf happened
- cleanup (remove duplicates)
-
- * mygtk2.pm: make MagicWindow re-entrant again (was broken due to only one
- banner, eg. for drakx summary)
- add children_centered (was already children_tight, children_loose and
- children)
- we don't want global vars in mygtk2, move $::noborderWhenEmbedded to
- ugtk2
-
-2005/08/30 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
-
- * crypto.pm: Update mirrorlist
-
- * drakxtools.spec: require xtest instead of the /usr/X11R6/bin/xtest file
-
-2005/08/30 Till Kamppeter <till at mandriva.com>
-
- * printer/printerdrake.pm:
- - When setting up new queue with HPLIP old HPOJ config was not deleted
- during installation. Fixed.
- - Restart CUPS after installing HPLIP for a network printer.
-
-2005/08/30 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/draknfs: in case of all_squash use anongid=65534 and
- anongid=65534
-
-2005/08/30 Olivier Blin <oblin at mandriva.com>
-
- * standalone/net_applet: display wireless link icon in net_applet if
- connected through wireless
- check wireless every 20 seconds only
-
- * mdk-stage1/probing.c: support for alternate modules (allows to load both
- ahci and ata_piix)
-
-2005/08/30 Pixel <pixel at mandriva.com>
-
- * any.pm: tell writeandclean_ldsoconf happened
- cleanup (remove duplicates)
-
- * modules.pm: ahci says "ahci: probe of %s failed with error %d", but
- succeeds anyway, so we need to handle the ahci/ata_piix case otherwise
-
-2005/08/30 tbednarski
-
- * share/po/pl.po: Translation updates
-
-2005/08/29 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/draknfs: create dir if it does not exist
-
-2005/08/29 huftis
-
- * share/po/nn.po: Updated translation.
-
-2005/08/29 Olivier Blin <oblin at mandriva.com>
-
- * share/rpmsrate: add prism2-utils in INSTALL section, required for
- wlan-ng cards
-
-2005/08/29 Pixel <pixel at mandriva.com>
-
- * pkgs.pm: on 2002/07/10 (1.347), selected_leaves() behaviour was broken,
- listing all packages.
- restoring it (bugzilla #18000)
-
- * ugtk2.pm: smaller banner during install (as required by warly & helene)
-
- * bootloader.pm: finish commit 1.387
-
- * install_steps_gtk.pm: put Cancel and Details button on the right of the
- main progress bar
-
-2005/08/29 Stew Benedict <sbenedict at mandriva.com>
-
- * standalone/drakTermServ: reverse xdm-config logic for XDMCP
-
-2005/08/29 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/draknfs: create dir if it does not exist
-
-2005/08/29 Olivier Blin <oblin at mandriva.com>
-
- * standalone/draksambashare: enhance typo fix
- fix typo (#17978)
-
- * standalone/drakgw: remove wrong test
-
-2005/08/29 Pixel <pixel at mandriva.com>
-
- * modules.pm: better logging of ahci vs ata_piix special code
-
- * pkgs.pm: on 2002/07/10 (1.347), selected_leaves() behaviour was broken,
- listing all packages.
- restoring it (bugzilla #18000)
-
- * ugtk2.pm: smaller banner during install (as required by warly & helene)
-
- * c/stuff.xs.pl, fsedit.pm, share/list.xml: use vol_id to get filesystem
- label (we only handled the equivalenet of e2label)
-
- * share/rpmsrate: s/apache2/apache/ (bugzilla #17951)
-
- * bootloader.pm: finish commit 1.387
- handle parsing of more complicated setup line in install.sh
- we don't want drakxtools-backend to depend on perl-URPM
- fix typo (thanks to perl_checker)
- handle things like append="foo=\"bar boo\"" (bugzilla #17937)
- handle reading & writing \" in lilo.conf
-
- * install_steps_gtk.pm: put Cancel and Details button on the right of the
- main progress bar
-
-2005/08/29 Pixel <pixel at mandriva.com>
-
- * modules.pm: better logging of ahci vs ata_piix special code
-
-2005/08/29 willysr
-
- * share/po/id.po: Updated
-
-2005/08/28 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/sc.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: Updated POT file. Sorry about that
- :(
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
- Updated POT file. Sorry about that :(
-
-2005/08/28 Olivier Blin <oblin at mandriva.com>
-
- * mdk-stage1/ka.h, mdk-stage1/Makefile, rescue/tree/ka/make_initrd,
- rescue/tree/etc/rc.sysinit, rescue/tree/ka/install.sh,
- mdk-stage1/stage1-data/stage1-with-ka.tar.bz2,
- rescue/tree/ka/ka-d-client, rescue/tree/ka/setup_network.sh,
- rescue/tree/ka/hostnames, mdk-stage1/config-stage1.h,
- mdk-stage1/stage1.h, rescue/tree/ka/gen_modules_conf.pl,
- rescue/tree/ka/tftpserver, mdk-stage1/ka.c, mdk-stage1/stage1.c,
- mdk-stage1/network.c, mdk-stage1/network.h: ka support (initially from
- Antoine Ginies and Erwan Velu)
-
- * network/wireless.pm: move %wireless_enc_modes in network::wireless
-
- * network/netconnect.pm: improve "dsl type" message (thanks to Andreas)
- restart associated ethernet device for dsl connections needing it
- rephrase "DSL connection type" message, the preselected type has better
- to be kept
- move %wireless_enc_modes in network::wireless
- don't blacklist ifplugd for pcmcia interfaces
-
- * standalone/net_applet: use new wireless icons
-
-2005/08/28 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/08/28 xalba
-
- * share/po/eu.po: eguneraketa
- eguneraketa
-
-2005/08/27 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/drakhosts: use new icons
- cosmetix fix
-
- * standalone/draksambashare: now just we just need to press enter to
- modify a file share
- add popup menu to easily modify/remove share
-
- * standalone/draknfs: use new icons
- various perl_checker fix
- remove unused code
-
-2005/08/27 mareklaane
-
- * share/po/et.po: Updated Estonian translation.
-
-2005/08/27 shivahuang
-
- * share/po/zh_TW.po: updated po file
-
-2005/08/27 tbednarski
-
- * share/po/pl.po: translation updates
- translation updates
-
-2005/08/27 Till Kamppeter <till at mandriva.com>
-
- * standalone/autosetupprintqueues:
- - When doing automatic queue setup with windows on the user's screen,
- do not only source the users .i18n, but also the system's
- /etc/sysconfig/i18n, so that the language is also correct when the
- user uses the system's default language.
-
-2005/08/27 Thierry Vignaud <tvignaud at mandriva.com>
-
- * ugtk2.pm (create_box_with_title) disable that code path
- remove spurious comma
- (new) add a banner at install time
-
- * any.pm, network/network.pm, services.pm, security/level.pm,
- install_steps_interactive.pm, interactive/gtk.pm,
- network/drakfirewall.pm: fill in missing titles for banners and specify
- icons
-
- * share/po/fr.po: typo fix
-
- * pixmaps/banner-sys.png, pixmaps/banner-part.png,
- pixmaps/banner-update.png, pixmaps/banner-security.png,
- pixmaps/banner-adduser.png, pixmaps/banner-license.png,
- pixmaps/banner-summary.png, pixmaps/banner-pw.png,
- pixmaps/banner-generic-ad.png, pixmaps/banner-bootL.png,
- pixmaps/banner-exit.png, pixmaps/banner-languages.png: add banner icons
-
- * mygtk2.pm (_gtk__MagicWindow) add a banner w/o margin if provided one
-
- * install_steps_gtk.pm: fill in missing titles for banners and specify
- icons
- (installPackages) ensure there's no margin around advertisements (IHM
- request)
-
-2005/08/26 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/drakbug: add drakhosts, draknfs, draksambashare, set wrap
- width to 3 to show mandriva tools
-
- * standalone/icons/ic82-users-16.png: add user icon (16x)
-
- * standalone/icons/IC-sambaprt-16.png: add sambaprinter icon
-
- * standalone/draksambashare: cosmetic fix
- add an about menu
- add icon in user, share, printer notebook
- update icon (thx ln)
- use drakgw icon
- add pixbuf image
- check user in valid_list, write_list ....
- various fix in add user
- add a samba user without passwd
- fix double-click pb in user tab
- add user tab
- add user tab
- test if printer share already exist
- update printer_list from printer dialog box
- major adjustemnt in printer dialog box
-
- * standalone/icons/IC-Dhost-48.png, standalone/icons/IC-winacces2-16.png,
- standalone/icons/IC-Dssh-48.png, standalone/icons/IC-NFS-48.png,
- standalone/icons/IC-winacces1-48.png: add new icons
-
-2005/08/26 Olivier Blin <oblin at mandriva.com>
-
- * pixmaps/wifi-080.png, pixmaps/wifi-040.png, pixmaps/wifi-060.png,
- pixmaps/wifi-100.png, pixmaps/wifi-020.png: add new neat wifi icons from
- Hélène
-
-2005/08/26 Pixel <pixel at mandriva.com>
-
- * share/list.xml: xorg modules: replace .a and .o with .so
-
- * share/rpmsrate: lshw is not that important
- gdm must only be installed when CAT_X is selected
-
- * any.pm:
- - don't open advanced languages by default
- - replace "Advanced" button with "Multi languages"
-
- * Xconfig/card.pm: handle nvidia's libglx.so being now in
- extensions/nvidia instead of extensions
- (when there is extensions/libglx.a, it means extensions/libglx.so is not
- xorg's libglx, so it may be nvidia's)
-
-2005/08/26 Till Kamppeter <till at mandriva.com>
-
- * printer/main.pm:
- - Gutenprint does not print correctly when margins are set in the CUPS
- configuration, so do not set margins when creating a queue with
- Gutenprint, or remove the margins when switching the driver of an
- existing queue to Gutenprint.
-
- * printer/printerdrake.pm:
- - Removed "Do not print testy page" in test page step of add printer
- wizard (bug #15861).
- - Fixed message window in the case that no local printer was found
- when running the add printer wizard in beginner's mode (bug #16757).
-
-2005/08/26 Thierry Vignaud <tvignaud at mandriva.com>
-
- * install_steps_gtk.pm, install_steps_interactive.pm: add a cople missing
- titles
-
- * docs/HACKING: fix requires (gtk+-1.x => gtk+-2.x)
-
- * standalone/icons/harddrake2/hw-keyboard.png,
- standalone/icons/harddrake2/hw-pcmcia.png,
- standalone/icons/harddrake2/hw-usb.png,
- standalone/icons/harddrake2/hw-smbus.png,
- standalone/icons/harddrake2/hw-memory.png: add a few more icons for
- harddrake GUI
-
- * harddrake/data.pm: add a few more icons in order to desambiguate some
- categories that
- were using the same icon
-
- * harddrake/v4l.pm: sync list with latest saa7134 driver
-
- * share/themes-galaxy.rc: use the same background under category as in
- root window
- new step category's color (on IHM team request)
-
- * install_gtk.pm (update_steps_position) render passed steps as bold and
- current step as bold italic as requested by IHM team
- (create_steps_window) leave around references on text widget and on
- unmarked text for steps
- (create_steps_window) underline step categories (and render them as bold
- btw)
- (create_steps_window) precreate pixbuf for 'done' state too
-
-2005/08/26 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/draksambashare: add user tab
- test if printer share already exist
- update printer_list from printer dialog box
- major adjustemnt in printer dialog box
- fix printer wizard
-
-2005/08/26 Olivier Blin <oblin at mandriva.com>
-
- * pixmaps/wifi-080.png, pixmaps/wifi-040.png, pixmaps/wifi-060.png,
- pixmaps/wifi-100.png, pixmaps/wifi-020.png: add new neat wifi icons from
- Hélène
-
-2005/08/26 Pixel <pixel at mandriva.com>
-
- * share/list.xml: xorg modules: replace .a and .o with .so
-
- * share/rpmsrate: lshw is not that important
- gdm must only be installed when CAT_X is selected
-
- * any.pm:
- - don't open advanced languages by default
- - replace "Advanced" button with "Multi languages"
-
- * Xconfig/card.pm: handle nvidia's libglx.so being now in
- extensions/nvidia instead of extensions
- (when there is extensions/libglx.a, it means extensions/libglx.so is not
- xorg's libglx, so it may be nvidia's)
-
-2005/08/26 Till Kamppeter <till at mandriva.com>
-
- * printer/main.pm:
- - Gutenprint does not print correctly when margins are set in the CUPS
- configuration, so do not set margins when creating a queue with
- Gutenprint, or remove the margins when switching the driver of an
- existing queue to Gutenprint.
-
-2005/08/26 Thierry Vignaud <tvignaud at mandriva.com>
-
- * lang.pm: reduce font size (especially for latin scripts) at install time
- b/c of
- new gtk+/cairo
-
- * standalone/icons/harddrake2/hw-keyboard.png,
- standalone/icons/harddrake2/hw-pcmcia.png,
- standalone/icons/harddrake2/hw-usb.png,
- standalone/icons/harddrake2/hw-smbus.png,
- standalone/icons/harddrake2/hw-memory.png: add a few more icons for
- harddrake GUI
-
- * pixmaps/steps_done.png: add new icon for 'done' state for steps
-
- * ugtk2.pm (Gtk2::Banner->new) use proper style for banner at install time
- (Gtk2::Banner->new) banners are smaller at install time
- (Gtk2::Banner->new) use proper GC (text_gc is for rendering on editable
- widgets
- whereas fg_gc is for rendering on non editable widgets)
- (Gtk2::Banner->new) use bold font on banners (IHM team request)
- (Gtk2::Banner->new) translating it is useless w/o a require on common
-
- * harddrake/data.pm: add a few more icons in order to desambiguate some
- categories that
- were using the same icon
-
- * share/themes-galaxy.rc: use the same background under category as in
- root window
- new step category's color (on IHM team request)
- new background color (on IHM team request)
- at install time, banner text is blue
-
- * install_gtk.pm (update_steps_position) render passed steps as bold and
- current step as bold italic as requested by IHM team
- (create_steps_window) leave around references on text widget and on
- unmarked text for steps
- (create_steps_window) underline step categories (and render them as bold
- btw)
- (create_steps_window) precreate pixbuf for 'done' state too
-
-2005/08/26 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/draksambashare: test if printer share already exist
- update printer_list from printer dialog box
- major adjustemnt in printer dialog box
- fix printer wizard
- now we can modify first entry
- fix pb with $path
- some perl_checker fix (why mine is not up to date, while i am running
- cooker ?)
- now display share name in modification dialog box
- re-enable set_rules_hint
- use simpleList to display share
- improvement in perl code (use Gtk::SimpleList)
-
-2005/08/26 Olivier Blin <oblin at mandriva.com>
-
- * pixmaps/wifi-080.png, pixmaps/wifi-040.png, pixmaps/wifi-060.png,
- pixmaps/wifi-100.png, pixmaps/wifi-020.png: add new neat wifi icons from
- Hélène
-
-2005/08/26 Pixel <pixel at mandriva.com>
-
- * install_any.pm: more precise log_size during install
-
- * share/rpmsrate: lshw is not that important
- gdm must only be installed when CAT_X is selected
-
- * Xconfig/resolution_and_depth.pm: fix missing prefix when reading
- sysconfig bootsplash
-
- * any.pm:
- - don't open advanced languages by default
- - replace "Advanced" button with "Multi languages"
-
- * Xconfig/card.pm: handle nvidia's libglx.so being now in
- extensions/nvidia instead of extensions
- (when there is extensions/libglx.a, it means extensions/libglx.so is not
- xorg's libglx, so it may be nvidia's)
-
-2005/08/26 Till Kamppeter <till at mandriva.com>
-
- * printer/main.pm:
- - Gutenprint does not print correctly when margins are set in the CUPS
- configuration, so do not set margins when creating a queue with
- Gutenprint, or remove the margins when switching the driver of an
- existing queue to Gutenprint.
-
-2005/08/26 Thierry Vignaud <tvignaud at mandriva.com>
-
- * lang.pm: reduce font size (especially for latin scripts) at install time
- b/c of
- new gtk+/cairo
-
- * standalone/icons/harddrake2/hw-keyboard.png,
- standalone/icons/harddrake2/hw-pcmcia.png,
- standalone/icons/harddrake2/hw-usb.png,
- standalone/icons/harddrake2/hw-smbus.png,
- standalone/icons/harddrake2/hw-memory.png: add a few more icons for
- harddrake GUI
-
- * pixmaps/steps_done.png: add new icon for 'done' state for steps
-
- * ugtk2.pm (Gtk2::Banner->new) use proper style for banner at install time
- (Gtk2::Banner->new) banners are smaller at install time
- (Gtk2::Banner->new) use proper GC (text_gc is for rendering on editable
- widgets
- whereas fg_gc is for rendering on non editable widgets)
- (Gtk2::Banner->new) use bold font on banners (IHM team request)
- (Gtk2::Banner->new) translating it is useless w/o a require on common
-
- * harddrake/data.pm: add a few more icons in order to desambiguate some
- categories that
- were using the same icon
-
- * share/themes-galaxy.rc: use the same background under category as in
- root window
- new step category's color (on IHM team request)
- new background color (on IHM team request)
- at install time, banner text is blue
-
- * install_gtk.pm (update_steps_position) render passed steps as bold and
- current step as bold italic as requested by IHM team
- (create_steps_window) leave around references on text widget and on
- unmarked text for steps
- (create_steps_window) underline step categories (and render them as bold
- btw)
- (create_steps_window) precreate pixbuf for 'done' state too
-
-2005/08/26 willysr
-
- * share/po/id.po: Updated
-
-2005/08/25 Antoine Ginies <aginies at mandriva.com>
-
- * Makefile.config: add draksambashare tool
-
- * standalone/draksambashare: add printer wizard
- add special printer section
- few adjustement
- disableadd pdf-gen and add printer
- use file share instead of disk share
- various improvement in printers tab
- add notebook support and printers tab
- first step to integrate printers share
- cosmetic fix
- enable empty path for homes share
- fix profiles pb, add a wizard to add a share, some ergo adjustement
- try to fix undeclared variable
- use err_diag instead of ask_warn
- various perl_checker fix
-
-2005/08/25 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: Updated
-
-2005/08/25 huftis
-
- * share/po/nn.po: Updated translation.
- Updated translation.
-
-2005/08/25 Olivier Blin <oblin at mandriva.com>
-
- * standalone/draksplash: fix lame errors (perl_checker)
- restrict mouse motion to image
-
- * standalone/drakfont: allow to import Windows Fonts (#15531)
-
- * standalone/net_applet: rephrase IFW interactive/automatic checkbox label
- in the settings menu
-
-2005/08/25 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: bah, DrakX finished for real *grml*
- finished translation :)
- translated more new strings
-
-2005/08/25 Pixel <pixel at mandriva.com>
-
- * partition_table/raw.pm: conectiva 10's grub detection (thanks to
- bogdano)
-
- * bootloader.pm: perl_checker compliance
- install grub stage files in install_grub(), not write_grub() (bugzilla
- #17830) (thanks to herton)
-
- * pkgs.pm: remove now unused variable (cf previous commit)
- don't kill "runaway" processes anymore, it should not be needed for
- ejecting cd (?)
-
- * mdk-stage1/pci-resource/Makefile, share/list.xml,
- mdk-stage1/usb-resource/Makefile, rescue/list.xml: ldetect-lst tables
- are now compressed
-
- * tools/drakx-in-chroot:
- - allow to easy clean existing chroot
- - more fuzzy detection of mounted loop (to "losetup -d" it)
- - better log message for loop
-
-2005/08/25 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
-
- * pkgs.pm: Strange typing bug workaround
-
-2005/08/25 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/br.po, share/po/fr.po: update
- sync with copyright bumping
-
- * detect_devices.pm (get_scsi_driver) kill dead variable
- since ldetect runs gzip, time spent in some of these detect functions
- was a significant part of mcc's startup time
- (get_scsi_driver) find driver of host controller from sysfs in all
- cases (not just usb-storage case)
-
- * fs/mount_options.pm (help) document 'encrypted' option (#13562)
- typo fix (Per Oyvind Karlsen)
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/uk.po, share/po/mn.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/el.po, share/po/bg.po, share/po/cs.po,
- share/po/uz@Latn.po: sync with copyright bumping
-
-2005/08/24 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/draksambashare: dont write unused var in smb.conf
- enable change in smb.conf
-
-2005/08/24 Olivier Blin <oblin at mandriva.com>
-
- * interactive/gtk.pm: do not crash in create_treeview_tree with
- allow_empty_list and really empty list (#17718)
-
- * standalone/net_applet: preset automatic mode in popup
- allow to whitelist attackers in popup
- - net_applet: stop icon blink when an Interactive Firewall alert isn't
- processed
- - drakids: add log tab
- - drakids: allow to clear logs
- - net_applet: stop icon blinking when drakids is run or clear logs
- - net_applet: present drakids window on click on menu if drakids is
- already run
- - factorize packet reading to network::ifw::attack_to_hash
-
- * network/ifw.pm: handle additionnal parameter to differentiate processed
- alerts and notifications from automatic mode
- rename for new mandi API
- show attacks of unknown type
- - net_applet: stop icon blink when an Interactive Firewall alert isn't
- processed
- - drakids: add log tab
- - drakids: allow to clear logs
- - net_applet: stop icon blinking when drakids is run or clear logs
- - net_applet: present drakids window on click on menu if drakids is
- already run
- - factorize packet reading to network::ifw::attack_to_hash
-
- * standalone/drakids:
- - net_applet: stop icon blink when an Interactive Firewall alert isn't
- processed
- - drakids: add log tab
- - drakids: allow to clear logs
- - net_applet: stop icon blinking when drakids is run or clear logs
- - net_applet: present drakids window on click on menu if drakids is
- already run
- - factorize packet reading to network::ifw::attack_to_hash
-
-2005/08/24 Pixel <pixel at mandriva.com>
-
- * .perl_checker: put back packdrake
-
- * modules.pm: ahci and ata_piix handle the same hardware, it only depends
- on the bios configuration, so try each one...
- rewrite code to allow next commit
-
-2005/08/24 Stew Benedict <sbenedict at mandriva.com>
-
- * standalone/drakTermServ: Seems "X -ac" is required (Diogo)
-
-2005/08/24 Till Kamppeter <till at mandriva.com>
-
- * printer/printerdrake.pm, standalone/scannerdrake:
- - Reverted workarounds for bug #17718, the bug is now really fixed,
- the problem was in /usr/lib/libDrakX/interactive/gtk.pm.
-
-2005/08/24 Thierry Vignaud <tvignaud at mandriva.com>
-
- * bootloader.pm: Grub really is named GRUB (and it makes the pull-down
- menu more consistent btw...)
-
- * standalone/drakgw: typo fix
-
- * drakxtools.spec: 10.3-0.49mdk
-
- * share/po/pt_BR.po, share/po/et.po, share/po/ja.po, share/po/pl.po,
- share/po/ca.po, share/po/nb.po, share/po/zh_CN.po, share/po/eu.po,
- share/po/id.po, share/po/nn.po, share/po/cy.po, share/po/is.po,
- share/po/pt.po, share/po/fr.po, share/po/de.po, share/po/cs.po: Grub
- really is named GRUB (and it makes the pull-down menu more consistent
- btw...)
- Grub really is named GRUB (and it makes the pull-down menu more
- consistent btw...)
- typo fix
-
- * .perl_checker: blacklist packdrake again
-
- * share/po/br.po: Grub really is named GRUB (and it makes the pull-down
- menu more consistent btw...)
- Grub really is named GRUB (and it makes the pull-down menu more
- consistent btw...)
- typo fix
- update
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/th.po, share/po/hr.po, share/po/be.po, share/po/pa_IN.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/fi.po, share/po/he.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/ru.po, share/po/sc.po, share/po/sl.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/uk.po, share/po/mn.po,
- share/po/am.po, share/po/lt.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/vi.po, share/po/ta.po,
- share/po/nl.po, share/po/tl.po, share/po/eo.po, share/po/el.po,
- share/po/bg.po, share/po/uz@Latn.po: Grub really is named GRUB (and it
- makes the pull-down menu more consistent btw...)
- typo fix
-
-2005/08/24 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/draksambashare: add share name
- fix inherit_permission pb
- ergo fix in modify dialog box, add more advanced options, re-enable add
- button (launch a wizard)
- cosmetics fix
-
-2005/08/24 Olivier Blin <oblin at mandriva.com>
-
- * interactive/gtk.pm: do not crash in create_treeview_tree with
- allow_empty_list and really empty list (#17718)
-
-2005/08/24 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: Updated translations
-
-2005/08/24 Pixel <pixel at mandriva.com>
-
- * keyboard.pm: small timeout when calling xmodmap (for drakx-in-chroot)
-
- * .perl_checker: put back packdrake
-
- * modules.pm: ahci and ata_piix handle the same hardware, it only depends
- on the bios configuration, so try each one...
- rewrite code to allow next commit
-
-2005/08/24 Stew Benedict <sbenedict at mandriva.com>
-
- * standalone/drakTermServ: Don't use "X -ac" for thin clients (Diogo)
-
-2005/08/24 Till Kamppeter <till at mandriva.com>
-
- * printer/main.pm:
- - Support for one pre-built PPD being linked from multiple printer
- database entries.
- - Added support for pre-built PPDs for non-PostScript drivers,
- especially PCL-XL PPDs from Ricoh.
-
- * printer/printerdrake.pm:
- - Reverted workarounds for bug #17718, the bug is now really fixed,
- the problem was in /usr/lib/libDrakX/interactive/gtk.pm.
- - Fixed problem of current printer/driver not chosen in printer/driver
- list when choosing "Printer manufacturer, model, driver" in the
- printer editing menu (occured mainly in expert mode and with
- printers with manufacturer-supplied PPD).
-
- * standalone/scannerdrake:
- - Reverted workarounds for bug #17718, the bug is now really fixed,
- the problem was in /usr/lib/libDrakX/interactive/gtk.pm.
-
-2005/08/24 Thierry Vignaud <tvignaud at mandriva.com>
-
- * .perl_checker: blacklist packdrake again
- blacklist a few packages for draksambashare
- packdrake is now perl_checker aware
-
-2005/08/23 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/draksambashare: adjust modify dialog box (ergo)
- first release, need various debug/improvement/test
-
-2005/08/23 Olivier Blin <oblin at mandriva.com>
-
- * standalone/drakfont: perl_checker cleanup, $select_font_msg is unused
-
- * share/rpmsrate: fluxbox is in main now
-
-2005/08/23 Pixel <pixel at mandriva.com>
-
- * any.pm: don't write /etc/udev/conf.d/mouse.conf, udev now handles it
- using /etc/sysconfig/mouse
-
- * diskdrake/interactive.pm: auto allocate on the current LV first (only
- partially fix bug #16175 since it will also auto allocate on other
- drives)
-
- * rescue/list.xml:
- - grub files have moved
- - add *_stage1_5 grub files
-
- * pkgs.pm: for bestKernelPackage(), sort kernels to have higher version
- first
-
- * Xconfig/resolution_and_depth.pm: be safer
- fix sort
-
-2005/08/23 Stew Benedict <sbenedict at mandriva.com>
-
- * standalone/drakbackup: Enable tape hardware compression (17565)
- Request window size for standalone
-
-2005/08/23 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/ga.po: update
-
-2005/08/23 Warly <warly at mandriva.com>
-
- * Xconfig/resolution_and_depth.pm: use the current theme name
-
-2005/08/23 Olivier Blin <oblin at mandriva.com>
-
- * network/netconnect.pm: fix network restart condition for 6to4
- remove deprecated comment
-
- * network/wireless.pm: use wext driver for ipw cards in wpa_supplicant
-
-2005/08/23 Pixel <pixel at mandriva.com>
-
- * rescue/list.xml:
- - grub files have moved
- - add *_stage1_5 grub files
-
- * Xconfig/resolution_and_depth.pm: be safer
- fix sort
-
- * keyboard.pm: making us-intl the default console keyboard mapping (it was
- introduced in console-tools by Andreas to allow: compose '\'' 'c' to
- 'ç')
-
-2005/08/23 Stew Benedict <sbenedict at mandriva.com>
-
- * standalone/drakbackup: Enable tape hardware compression (17565)
- Request window size for standalone
-
-2005/08/23 Warly <warly at mandriva.com>
-
- * Xconfig/resolution_and_depth.pm: use the current theme name
-
-2005/08/22 huftis
-
- * share/po/nn.po: Updated Norwegian Nynorsk translation.
-
-2005/08/22 Olivier Blin <oblin at mandriva.com>
-
- * drakxtools.spec: add diskdrake fix in 10.3-0.48mdk
- 10.3-0.48mdk
-
-2005/08/22 Pablo Saratxaga <pablo at mandriva.com>
-
- * share/po/pt_BR.po: updated Brazilian file
-
-2005/08/22 Pixel <pixel at mandriva.com>
-
- * install_steps_gtk.pm: function $advertize must work when chrooted or
- not, we can't really know if we're chrooted or not
-
- * any.pm: don't use a udev rule, this doesn't always work for input/mice,
- and never for ttySL0
-
- * network/modem.pm: devfssymlinkf handle this case
-
- * bootloader.pm: enhance grub device.map parsing (bugzilla #17732)
-
-2005/08/22 Stew Benedict <sbenedict at mandriva.com>
-
- * standalone/drakTermServ: Code cleanups
- Clear main window on tab change
- Suggestions from Diago:
- Offer to install i586 kernel for old clients
- Progress display while creating all kernel images
- Move dhcpd config to more logical area
-
-2005/08/22 Till Kamppeter <till at mandriva.com>
-
- * printer/printerdrake.pm, standalone/scannerdrake:
- - Fixed bug #17718 in both printerdrake and scannerdrake.
-
- * standalone/printerdrake:
- - Updated version number (bug #17719).
-
-2005/08/22 Olivier Blin <oblin at mandriva.com>
-
- * any.pm: add udev rule for mouse back
- make clear that KERNEL is a match in udev rule
-
- * drakxtools.spec: add diskdrake fix in 10.3-0.48mdk
- 10.3-0.48mdk
-
-2005/08/22 Pixel <pixel at mandriva.com>
-
- * install_steps_gtk.pm: function $advertize must work when chrooted or
- not, we can't really know if we're chrooted or not
-
- * drakxtools.spec: fix Mandrivalinux to Mandriva Linux (thanks to Eskild
- Hustvedt)
-
- * network/modem.pm: devfssymlinkf handle this case
-
- * any.pm: don't use a udev rule, this doesn't always work for input/mice,
- and never for ttySL0
- simplify previous commit (the /tty/ was there for serial mice)
-
- * bootloader.pm: enhance grub device.map parsing (bugzilla #17732)
-
-2005/08/21 tbednarski
-
- * share/po/pl.po: string translations
-
-2005/08/20 Olivier Blin <oblin at mandriva.com>
-
- * standalone/net_applet: do not show drakids in menu if Interactive
- Firewall isn't available
- do not fail to start if messagebus is down
-
- * drakxtools.spec: 10.3-0.47mdk
-
-2005/08/20 tbednarski
-
- * share/po/pl.po: some typos corrections
-
-2005/08/19 Olivier Blin <oblin at mandriva.com>
-
- * standalone/drakids: try to get protocol as text
-
- * standalone/net_applet: use Gtk2::NotificationBubble (and drop
- Gtk2::Balloon)
- do not crash when unexpanding details in Interactive Firewall window
-
-2005/08/19 Stew Benedict <sbenedict at mandriva.com>
-
- * standalone/drakTermServ: Ignore config file for First Time Wizard,
- assume defaults (17673)
-
-2005/08/19 Thierry Vignaud <tvignaud at mandriva.com>
-
- * tools/drakx-in-chroot: prevent packdrake faillure on creating temporary
- files
-
- * share/themes-galaxy.rc: enforce no stock icon policy (Frederic Crozat)
-
- * lang.pm: enable to select scim+pinyin
-
- * share/po/fr.po: typo fix (this message is confusing since any.pm really
- expect a
- number and loudly complains when given a string)
-
-2005/08/18 Frederic Crozat <fcrozat at mandriva.com>
-
- * share/rpmsrate: bump priority for gstreamer-alsa
-
-2005/08/18 huftis
-
- * share/po/nn.po: Updated translation.
-
-2005/08/18 Olivier Blin <oblin at mandriva.com>
-
- * network/activefw.pm: new name is Interactive Firewall
-
- * standalone/net_applet: cosmetic fixes (use ugtk2 to have nice borders,
- shrink window on expander hide, reorder buttons)
- switch to Interactive Firewall
- new name is Interactive Firewall
-
- * standalone/drakids: switch to Interactive Firewall
- new name is Interactive Firewall
-
- * network/netconnect.pm: install bpalogin if needed only
-
- * drakxtools.spec: activefw -> ifw
-
- * network/ifw.pm: add get_protocol
- new name is Interactive Firewall
-
- * share/rpmsrate: Interactive Firewall is mandatory
-
-2005/08/18 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: New strings translated
-
-2005/08/18 Pixel <pixel at mandriva.com>
-
- * pkgs.pm: update naughtyServers for new distro
-
- * install_any.pm: log more precisely the "naughty servers" unselected
-
-2005/08/18 Stew Benedict <sbenedict at mandriva.com>
-
- * standalone/drakTermServ: Client tree edit fix (17653), Write to floppy
- (17655)
-
-2005/08/18 Till Kamppeter <till at mandriva.com>
-
- * printer/main.pm, printer/printerdrake.pm:
- - Removed stuff for automatic print queue setup when starting CUPS.
- - Small menu text improvement.
-
-2005/08/18 Thierry Vignaud <tvignaud at mandriva.com>
-
- * drakxtools.spec: 10.3-0.46mdk
- 10.3-0.45mdk
-
- * standalone/harddrake2 (simple_read_rpmsrate) only install HW packages of
- weigh 4 or 5
-
- * standalone/service_harddrake: use the new way to blacklist modules
- (#12731)
-
-2005/08/18 Olivier Blin <oblin at mandriva.com>
-
- * network/ifw.pm, standalone/net_applet, network/activefw.pm: new name is
- Interactive Firewall
-
- * standalone/drakids: new name is Interactive Firewall
- use "Allowed addresses" instead of "Attacker" in whitelist
-
- * network/netconnect.pm: install bpalogin if needed only
-
- * drakxtools.spec: activefw -> ifw
-
- * share/rpmsrate: Interactive Firewall is mandatory
-
-2005/08/18 Pixel <pixel at mandriva.com>
-
- * pkgs.pm: update naughtyServers for new distro
- (naughtyServers_list): those packages don't exist anymore
-
- * install_any.pm: log more precisely the "naughty servers" unselected
-
-2005/08/18 Till Kamppeter <till at mandriva.com>
-
- * printer/printerdrake.pm:
- - Removed stuff for automatic print queue setup when starting CUPS.
- - Small menu text improvement.
- - When printerdrake's first-time dialog appears on plugging a USB
- printer, the user can now also turn off print queue auto-setup
- before starting printerdrake and so without needing the printing
- infrastructure to be installed.
-
- * printer/main.pm:
- - Removed stuff for automatic print queue setup when starting CUPS.
- - Small menu text improvement.
-
-2005/08/18 Thierry Vignaud <tvignaud at mandriva.com>
-
- * drakxtools.spec: 10.3-0.45mdk
-
- * standalone/harddrake2 (simple_read_rpmsrate) only install HW packages of
- weigh 4 or 5
-
-2005/08/17 Pixel <pixel at mandriva.com>
-
- * pkgs.pm: don't fork anymore to install rpms
- during install, use "nofsync" for rpm database (=> speedup x2)
- cleanup
-
- * install_steps_gtk.pm: don't fork anymore to install rpms
-
- * share/rpmsrate: lsof is nice
- scim-qtimm was already mentioned
-
- * share/list.xml: have gdb when debugging
-
- * unused/migrate-ugtk2-to-mygtk2.pl: allow using from far away, not only
- gi/perl-install
-
-2005/08/17 Till Kamppeter <till at mandriva.com>
-
- * printer/main.pm, printer/printerdrake.pm:
- - Added automatic setup of Ethernet-connected HP printers with HPLIP.
- - Taken into account that HPLIP sometimes uses model names with "HP"
- in the beginning and sometimes not.
- - Fixed problem of cursor in printer model list pointing to random,
- completely unrelated printer when no model name was auto-detected.
- - For setting the cursor onto the correct model in the printer model
- list also taken into account a model name detected only by HPLIP.
- - When one chooses "Printer Connection Type" in the "Edit" menu of
- an Ethernet-connected printer which is under the control of HPLIP or
- HPOJ, "LOCAL" was pre-selected as connection type and not
- "SOCKET". Fixed.
- - Replaced "Windows 95/98/NT" by simply "Windows" in the connection
- type menu. There are many more Windows versions than 95, 98, and NT
- currently.
- - Made matching of detected printer model name with HPLIP database
- more reliable.
-
-2005/08/17 Thierry Vignaud <tvignaud at mandriva.com>
-
- * Xconfig/card.pm: add missing spaces
- (install_server) fix installing ati packages
-
- * docs/HACKING: we need xfsdump for /sbin/dump.xfs
-
- * drakxtools.spec: do not tag rpmsrate as an executable
- do not tag harddrake init script as config file
- fix prereq
-
- * share/po/br.po, share/po/cy.po, share/po/ga.po: update
-
-2005/08/16 Olivier Blin <oblin at mandriva.com>
-
- * share/rpmsrate: required for easy-wifi
-
-2005/08/16 Pablo Saratxaga <pablo at mandriva.com>
-
- * share/po/de.po: updated German file
-
-2005/08/16 Pixel <pixel at mandriva.com>
-
- * install_steps_gtk.pm: fix "Mouse" button in summary doing nothing
-
- * fs/type.pm: add reiser4 to the true_local_fs_types()
-
- * share/rpmsrate: don't have digikam (and some more) twice
-
- * install_any.pm, install2.pm: fix typo
-
- * Xconfig/xfree.pm: add some more commented resolutions (also see bugzilla
- #17526)
-
-2005/08/16 Till Kamppeter <till at mandriva.com>
-
- * standalone/autosetupprintqueues, printer/main.pm,
- printer/printerdrake.pm:
- - Improved the auto queue setup pop-up window display on the user's
- desktop according to the suggestions in bug #17370.
- - Ask the user whether he wants really have a new printer set up
- before doing the auto queue setup.
- - Do always a fully non-interactive auto queue setup when X is not
- installed
- - First-time dialog could show garbage as printer model name for some
- models. Fixed.
- - Separated "Print no test pages" entry on the wizard page for
- printing test pages.
- - Changed the defaults for automatic re-enabling of disabled queues to
- "no", due to the new CUPS backend wrapper queues should not get
- disabled automatically any more.
- - Typo corrections.
-
- * share/rpmsrate:
- - Let digiKam get installed on KDE systems. For KDE it is the default
- application when plugging a digital camera now.
-
-2005/08/16 xalba
-
- * share/po/eu.po: eguneraketa
-
-2005/08/15 Till Kamppeter <till at mandriva.com>
-
- * printer/main.pm, printer/printerdrake.pm:
- - Added per-printer configurable handling of CUPS backend errors. This
- way CUPS does not disable print queues automatically any more (for
- example if printer not turned on).
-
-2005/08/14 Funda Wang <fundawang at linux.net.cn>
-
- * share/rpmsrate: Install scim-qtimm for locales that use scim as their
- default IM.
-
-2005/08/14 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/08/13 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: jorge
-
-2005/08/13 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/rpmsrate: install scim-tomoe for japanese users
- fix installing laptop-mode-tools on laptops
-
- * share/po/br.po, share/po/ga.po: update
-
-2005/08/12 mareklaane
-
- * share/po/et.po: Updated Estonian translations.
-
-2005/08/12 Olivier Blin <oblin at mandriva.com>
-
- * standalone/drakids: use gtkadd
- improve list removal workaround using a copying grep
-
- * standalone/net_applet: perl_checker fixes
- - store attack details in a hash
- - add a Gtk2::Balloon custom pseudo-widget
- - use balloons to notify attacks
- - show attack window on balloon click
-
-2005/08/12 rstandtke
-
- * share/po/de.po: some fixes
-
-2005/08/11 Frederic Lepied <flepied at mandriva.com>
-
- * share/rpmsrate: install laptop-mode-tools on laptops
-
-2005/08/11 Funda Wang <fundawang at linux.net.cn>
-
- * keyboard.pm: Revert removal of keyboard layout weight of zh. (bug#16873)
-
-2005/08/11 mbukovjan
-
- * share/po/cs.po: Fix bug #17383
-
-2005/08/11 Olivier Blin <oblin at mandriva.com>
-
- * drakxtools.spec: 10.3-0.44mdk (and add a warning about CVS)
-
-2005/08/11 Thierry Vignaud <tvignaud at mandriva.com>
-
- * do_pkgs.pm (check_kernel_module_packages) handle ati_igp
-
- * drakxtools.spec: 10.2-24.5.102mdk
-
- * Xconfig/card.pm (install_server) install ati_igp-kernel too
- (install_server) ati-igp was renamed ati_igp
- (install_server) install alternative ATI driver if needed (again)
-
- * share/po/br.po: update
-
-2005/08/10 Olivier Blin <oblin at mandriva.com>
-
- * network/monitor.pm, standalone/net_applet: compute approx_level in
- network::monitor::list_wireless
-
-2005/08/10 Pixel <pixel at mandriva.com>
-
- * fs/mount_options.pm: i don't know if it's really the best choice here,
- but that way it always allow to select "encrypted"
-
- * diskdrake/interactive.pm: ask the encrypt_key when we have "encrypted"
- set but we don't have the encrypt_key
- don't be sure of anything of setting encryption (it may help bugzilla
- #16893)
-
- * install_any.pm:
- - if we have a lot of memory, keep the clp in tmpfs
- - check the size available in $::prefix/tmp for the case it's on its
- own filesystem (bug #15377)
- - also check the size available in other cases
- create clp_on_tmpfs() for future use
-
- * fs/type.pm: {bad_fs_type_magic} is wrong info when we have "encryption"
- (bugzilla #16893 is about this too)
-
- * Xconfig/card.pm: please perl_checker
- special option for RS480 using fglrx
-
- * any.pm:
- - our udev rules must come before standard mandriva rules to be able
- to shadow them
- - special mouse rule *is* needed for serial mouse
-
- * install2.pm:
- - if we have a lot of memory, keep the clp in tmpfs
- - check the size available in $::prefix/tmp for the case it's on its
- own filesystem (bug #15377)
- - also check the size available in other cases
-
- * fs/mount.pm: remove encryption=xxx and encrypted option before passing
- them to mount() since we take care of the encrypted loopback ourself
- (bugzilla #17142)
-
- * pkgs.pm: on upgrade, have not only the upgraded packages, but also the
- installed packages in package_list.pl (bugzilla #15296)
-
- * do_pkgs.pm: be a little safer and shorter
-
-2005/08/10 Thierry Vignaud <tvignaud at mandriva.com>
-
- * drakxtools.spec: 10.3-0.43mdk
-
- * Xconfig/card.pm (install_server) there's only one ati package again
-
- * detect_devices.pm (floppies) in standalone mode, usb-storage is loaded
- by hotplug. manually
- loading it just slows down harddrake service startup
-
- * share/rpmsrate: doc was renamed
-
-2005/08/09 Frederic Lepied <flepied at mandriva.com>
-
- * share/rpmsrate: tuxracer => ppracer
-
-2005/08/09 Gwenole Beauchesne <gbeauchesne at mandriva.com>
-
- * c/smp-dmi.c: map more closely to dmidecode behaviour's, aka
- mmap(/dev/mem) and find/read
- the raw DMI table in a whole.
-
-2005/08/09 Pablo Saratxaga <pablo at mandriva.com>
-
- * share/po/pt_BR.po: updated Brazilian po file
-
-2005/08/09 Pixel <pixel at mandriva.com>
-
- * lang.pm: we can't differentiate all the scim+xxx IMs, so we ensure we
- prefer "scim+(default)"
- create lang::write_and_install() which takes a $do_pkgs
- simplify
- - it's better to use $locale->{lang} whenever possible
- - less generic name for %locale2encoding
- move %IM2packages into %IM_config
- - get rid of %IM_XIM_program, replacing it with a more powerful
- XIM_PROGRAM field
- - in read(), use more fields to recognise the IM
- - move extra scim combinations in %IM_config
- - drop set_default_im(), moving data directly in %IM_config
- simplify (we access get_default_im with short lang name)
- remove wrong unused line
- simplify (not useful since values and main key are equal)
- - simplify IM choice using {format} to its full power
- - {IM} is '' instead of either '' or 'None'
- cleanup IM2packages()
-
- * install_steps.pm: create lang::write_and_install() which takes a
- $do_pkgs
- fix typo
-
- * docs/README: fix
- replace mandrake with mandriva
-
- * any.pm: image2f has slightly changed
- - simplify IM choice using {format} to its full power
- - {IM} is '' instead of either '' or 'None'
-
- * standalone/finish-install, standalone/localedrake,
- install_steps_interactive.pm: create lang::write_and_install() which
- takes a $do_pkgs
-
- * share/rpmsrate: there's no kernel-enterprise anymore
-
- * interactive.pm: image2f has slightly changed
-
- * interactive/gtk.pm: really make ComboBox with tree inside work
- modify ComboBox with a tree inside to follow previous
- __create_tree_model() change
- fix indentation
- better that way
- revamp code
- simplify
- no need to explicitly show
- don't apply {format} twice
-
-2005/08/09 rstandtke
-
- * share/po/de.po: some fixes
-
-2005/08/09 Thierry Vignaud <tvignaud at mandriva.com>
-
- * drakxtools.spec: 10.3-0.42mdk
-
- * share/po/ga.po: update
-
- * lang.pm: readd lost comments
-
-2005/08/08 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/draknfs: fix bug #17255 (modify empty /etc/exports file)
-
- * standalone/drakhosts: fix bug #17255
-
-2005/08/08 Olivier Blin <oblin at mandriva.com>
-
- * network/netconnect.pm: initial IPv6 support (6to4 tunnel)
-
- * network/ethernet.pm: do not write aliases interfaces in iftab
-
- * network/network.pm: keep MS_DNS1, MS_DNS2 and DOMAIN variables in ifcfg
- files
- initial IPv6 support (6to4 tunnel)
-
-2005/08/08 Pixel <pixel at mandriva.com>
-
- * raid.pm, install2.pm: write /etc/mdadm.conf when creating a new md
- (bugzilla #15502)
-
- * any.pm, drakxtools.spec: in standalone, use monitor-edid's new option
- --try-in-console
-
- * share/keymaps.tar.bz2: rebuild keymaps with NR_KEYS==256 when it was
- previously 255
-
- * diskdrake/smbnfs_gtk.pm: differentiate (nfs)servers on ip first to have
- less dups (bugzilla #17236)
-
-2005/08/08 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/br.po: typo fix
-
-2005/08/08 Pixel <pixel at mandriva.com>
-
- * share/list.xml: add mandriva macros for rpm so that _hkp_keyserver_query
- is nil
- help debugging
-
- * install_steps.pm: acpi=on on every recent bios, not only laptops
-
- * mygtk2.pm: really make the wizard banner icon a warning instead of an
- error
- more explicit error
-
- * share/rpmsrate: cleanup "alternative IMs" already listed with flag 5
- (and anyway, warly says this listing of "alternative IMs" is not the
- right way to achieve having them on CDs)
-
- * install_any.pm: cleanup
-
- * fsedit.pm: have the ability to prefer primary partitions in
- auto_installs
-
- * network/netconnect.pm, do_pkgs.pm, standalone/drakgw: it's better to
- warn package installation failure in ensure_is_installed than each
- callers (bugzilla #17251)
-
-2005/08/07 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/08/06 mbukovjan
-
- * share/po/cs.po: Updated Czech translations.
-
-2005/08/06 Olivier Blin <oblin at mandriva.com>
-
- * standalone/drakboot: translate "Graphical boot mode:" (#17333)
-
-2005/08/05 Olivier Blin <oblin at mandriva.com>
-
- * network/netconnect.pm: handle access point roaming using wpa_supplicant
-
- * keyboard.pm, any.pm, install_steps_gtk.pm, mouse.pm,
- diskdrake/interactive.pm, Xconfig/monitor.pm, pkgs.pm,
- harddrake/sound.pm, detect_devices.pm, Xconfig/resolution_and_depth.pm,
- bootloader.pm, Xconfig/xfree.pm, install_any.pm, partition_table/raw.pm:
- move is_xbox from common to detect_devices
-
- * network/wireless.pm: handle prefix
- overwrite previous wpa_supplicant entries with same ssid or bssid
- better handling for hex keys in wpa_supplicant
-
-2005/08/05 Pixel <pixel at mandriva.com>
-
- * share/keyboards.tar.bz2: keycode 211 is the abnt2 specific key, adding
- it (bugzilla #16942)
-
-2005/08/05 Till Kamppeter <till at mandriva.com>
-
- * scanner.pm:
- - Bug fixes in scanner::detect() function
- o Fixed 'grep' filter to filter out non-scanner devices by the
- "driver" field (in the very end of the function)
- o Fixed franglish in a warning message
- - Suppressed console message of "ls" in the
- scanner::resolve_symlinks() function.
-
-2005/08/05 Thierry Vignaud <tvignaud at mandriva.com>
-
- * harddrake/data.pm: do not detect PCI/USB modems twice (as modems and as
- unknown devices)
-
- * lang.pm (configure_kdeglobals) fix kde config when switching between ar
- && uz
-
- * drakxtools.spec: 10.3-0.41mdk
-
- * share/po/ja.po: update (Yukiko Bando)
-
- * share/po/fr.po: fix translation
- update (Berthy)
-
-2005/08/04 Olivier Blin <oblin at mandriva.com>
-
- * network/netconnect.pm: allow to use WEP keys in wpa_supplicant
- use ifplugd for wireless interfaces
- make is_ifplugd_blacklisted return a boolean
- s/hotplug/ifplugd/
- use ifup/ifdown with the boot option to handle ifplugd
-
- * network/wireless.pm: allow to use WEP keys in wpa_supplicant
- perl_checker fixes
-
- * standalone/draksplash: make sure hex colors are 6 chars long
- directly use # as color prefix
- don't warn if automatic image loading fails
- update progress bar adjustments from preview
- fix progress bar color
- fix typo (really handle progress bar color)
- make sure jpegtopnm is available (thanks to Anne Nicolas)
- simplify
-
- * bootsplash.pm: load progress bar color from config file
- directly use # as color prefix
- read progress bar settings
- really write progress bar color in configuration files
-
- * network/tools.pm: use ifup/ifdown with the boot option to handle ifplugd
-
-2005/08/04 Pablo Saratxaga <pablo at mandriva.com>
-
- * share/po/pl.po, share/po/pt_BR.po: updated Polish and Brazilian files
-
-2005/08/04 Till Kamppeter <till at mandriva.com>
-
- * printer/printerdrake.pm:
- - Added special handling for the "capt" driver (Canon LBP-810/1120
- winprinters).
-
-2005/08/04 Thierry Vignaud <tvignaud at mandriva.com>
-
- * harddrake/data.pm: fix keyboardrake path (thus enabling to run a config
- tool for keyboards)
-
- * harddrake/v4l.pm (config) do not set radio but for bttv driver
- (config) do not set radio but for bttv driver
- (config) do not set radio but for bttv driver
- (config) do not set radio but for bttv driver
-
- * standalone/harddrake2: do not offer to configure driver of keyboards and
- mice (#17254)
-
- * detect_devices.pm (getUPS) blacklist all keyboards
-
-2005/08/03 Olivier Blin <oblin at mandriva.com>
-
- * standalone/drakconnect: apply gateway modifications (#17260)
- don't save configuration dozens of times
- use apply()
- fix typo (#17253, me sux)
- remove deprecated code
-
-2005/08/03 Pixel <pixel at mandriva.com>
-
- * tools/install-xml-file-list: don't need /lib/tls files anymore (since
- rpm works without nptl)
-
- * timezone.pm: add some ntp servers from brazil (bugzilla #16879)
-
- * fs/format.pm, fs/type.pm: minimal (and quite hidden) reiser4 support in
- diskdrake (bugzilla #15839)
-
- * Xconfig/resolution_and_depth.pm: suggest 1280x1024 instead of 1280x960
- which causes pbs (backported from HEAD)
-
-2005/08/03 Thierry Vignaud <tvignaud at mandriva.com>
-
- * docs/HACKING:
- - update
- - make it arch neutral
-
- * share/po/br.po: update
-
-2005/08/02 Olivier Blin <oblin at mandriva.com>
-
- * standalone/drakgw: make sure shorewall gets enabled
-
- * network/ethernet.pm: ip isn't localized
-
- * install_steps_gtk.pm: load xpad module for xbox (Stew)
-
-2005/08/02 Pixel <pixel at mandriva.com>
-
- * share/rpmsrate: gdm (and so gdm-themes) is special, but not
- gnome-icon-theme and the like
-
- * fs/mount.pm, fs/mount_options.pm: workaround missing nls_xxx module
- during install differently
-
-2005/08/02 Till Kamppeter <till at mandriva.com>
-
- * printer/data.pm:
- - Removed automatic installation of "hplip-hpijs-ppds" package, the
- PPDs in this package are already generated with the installed
- Foomatic data.
- Made "desktop-printing" package being installed automatically when
- CUPS is used with a local daemon.
-
-2005/08/02 tsdgeos
-
- * share/po/ca.po: updates
-
-2005/08/02 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/po/ga.po: update
-
-2005/08/02 Warly <warly at mandriva.com>
-
- * share/logo-mandrake.png: new installation banner
-
- * share/rpmsrate: add kat in KDE
-
-2005/08/01 Frederic Crozat <fcrozat at mandriva.com>
-
- * share/rpmsrate: Fix GNOME default applications
-
-2005/08/01 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/08/01 Olivier Blin <oblin at mandriva.com>
-
- * share/po/fr.po: fix ndiswrapper translation
-
- * drakxtools.spec: don't package dbus stuff in drakxtools-backend
- don't package finish-install in drakxtools-newt
-
-2005/08/01 Thierry Vignaud <tvignaud at mandriva.com>
-
- * crypto.pm: fix rediris.es paths (Yukiko Bando)
-
-2005/07/31 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2005/07/31 Thierry Vignaud <tvignaud at mandriva.com>
-
- * any.pm: fix last commit
- (devfssymlinkf) do not write rules conflicting with udev ones (blacklist
- dvd
- and mouse, only accepting modem for now)
-
- * share/po/br.po: update
-
-2005/07/31 willysr
-
- * share/po/id.po: updated
-
-2005/07/30 mareklaane
-
- * share/po/et.po: Updated Estonian translation.
-
-2005/07/30 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/07/29 Thierry Vignaud <tvignaud at mandriva.com>
-
- * harddrake/sound.pm: add new snd-ad1889 driver from ALSA CVS
- handle snd-riptide
-
-2005/07/29 Olivier Blin <oblin at mandriva.com>
-
- * mdk-stage1/network.c: do not crash if automatic mode isn't used
-
-2005/07/29 rstandtke
-
- * share/po/de.po: some additions and fixes
-
-2005/07/29 Warly <warly at mandriva.com>
-
- * share/rpmsrate, share/compssUsers.pl: add THEMES category
-
-2005/07/28 Frederic Crozat <fcrozat at mandriva.com>
-
- * share/rpmsrate: install xsettings-kde when installing KDE
-
-2005/07/28 Olivier Blin <oblin at mandriva.com>
-
- * network/activefw.pm: don't needlessly swap bytes
-
- * mdk-stage1/network.c: don't corrupt the choice variable
- fix indentation
-
- * mdk-stage1/tools.c: use thirdparty mode if the "thirdparty" automatic
- keyword is specified
-
- * standalone/net_applet, standalone/drakids: simplify error messages
-
-2005/07/28 Thierry Vignaud <tvignaud at mandriva.com>
-
- * harddrake/sound.pm: emphasize if drivers are OSS or ALSA based (#15902)
-
- * tools/shift_img.c, tools/make_lang_png_transparent.c: bump copyright
- notices
-
-2005/07/27 Olivier Blin <oblin at mandriva.com>
-
- * standalone/net_applet: allow to run drakids
-
- * standalone/drakids: handle dbus failures
-
- * any.pm, devices.pm, fs/type.pm, install2.pm, fsedit.pm, bootloader.pm,
- install_any.pm, partition_table/raw.pm, fs/dmraid.pm: backport of dmraid
- support
-
-2005/07/27 Pablo Saratxaga <pablo at mandriva.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/uk.po, share/po/mn.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/el.po,
- share/po/bg.po, share/po/cs.po, share/po/uz@Latn.po: updated pot file
-
- * standalone/draknfs: corrected small typo
-
- * crypto.pm: oups; fixed bad change
- fixed KDE font for extended cyrillic languages
-
- * lang.pm: fixed KDE font for extended cyrillic languages
-
-2005/07/27 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
-
- * share/rpmsrate: bd deserves better treatment.
-
-2005/07/27 Till Kamppeter <till at mandriva.com>
-
- * standalone/printerdrake, printer/printerdrake.pm:
- - Added dialog to configure automatic queue creating and automatic
- queue re-enabling
- - Started implementation of configurable, partially interactive print
- queue auto setup.
-
- * standalone/autosetupprintqueues, printer/detect.pm:
- - Started implementation of configurable, partially interactive print
- queue auto setup.
-
- * printer/main.pm:
- - Added dialog to configure automatic queue creating and automatic
- queue re-enabling
- - Fixed "config_sane()" function, it did not add the backend name to
- /etc/sane.d/dll.conf
-
-2005/07/27 Thierry Vignaud <tvignaud at mandriva.com>
-
- * ugtk2.pm (create_okcancel) enforce GNOME button order when not under KDE
- (aka rollback
- old IHM team request since they never achieved to complete the plan ie
- enforcing the same button order in both GNOME and KDE)
-
- * drakxtools.spec: 10.3-0.38mdk
-
- * share/po/fr.po: update
-
- * detect_devices.pm (getUPS) blacklist all WingMan devices (#16995)
- (getUPS) do not detect Logitech devices as UPSes (#16994)
-
- * security/msec.pm: forward #14364/#15049 fix:
- (load_values) fix getting value when it's defined but 0
- (get_function_value) fix getting value when it's 0
-
-2005/07/26 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/draknfs: no_all_squash as default
-
-2005/07/26 Olivier Blin <oblin at mandriva.com>
-
- * network/network.pm: fix variable declaration
- kill(signal, <empty string>) sends the signal to the calling process,
- avoid it
-
- * network/shorewall.pm: don't write alias interfaces in shorewall
- interfaces file
- run shorewall clear if firewall is stopped (#17046)
-
-2005/07/26 Thierry Vignaud <tvignaud at mandriva.com>
-
- * share/rpmsrate: install eva for chinese users (Funda Wang)
-
- * share/po/br.po: update
-
-2005/07/26 Warly <warly at mandriva.com>
-
- * fs/mount_options.pm: workarround ntfs mount bug
-
-2005/07/25 Olivier Blin <oblin at mandriva.com>
-
- * drakxtools.spec: revert wrong fix (DESKTOP contains KDE when xinit.d
- scripts are run)
-
- * detect_devices.pm: fix alps touchpads detection
-
-2005/07/25 pjetur
-
- * share/po/is.po: Sync of messages
-
-2005/07/25 Thierry Vignaud <tvignaud at mandriva.com>
-
- * tools/shift_img.c, tools/make_lang_png_transparent.c, tools/syncrpms:
- fix email addressses in copyright and bump them
-
- * share/po/ja.po: update (Yukiko Bando)
-
- * tools/hd_grub.cgi: last mdk->mdv switches
-
- * tools/cvslog2changelog.pl: fix email addressses
-
- * tools/genmodparm, tools/gencryptofiles: last mdk->mdv switches
- fix email addressses in copyright and bump them
-
- * tools/mailchangelog.pl: fix ml addresss
- fix email addressses
-
-2005/07/24 Olivier Blin <oblin at mandriva.com>
-
- * network/tools.pm: wait a second for ifplugd to be actually killed
-
- * network/network.pm: write hosts in correct order in /etc/hosts
-
-2005/07/23 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/07/22 Antoine Ginies <aginies at mandriva.com>
-
- * standalone/draknfs: improve User id mapping, keep 4 options
- (no_all_squash is the default
- one)
- remove duplicate entry in access list
-
-2005/07/22 Frederic Crozat <fcrozat at mandriva.com>
-
- * share/rpmsrate: mandrake_desk is now desktop-common-data
-
-2005/07/22 Funda Wang <fundawang at linux.net.cn>
-
- * Xconfig/resolution_and_depth.pm: Adopt to new mandriva-theme package
- naming schema, see bug#16977.
-
-2005/07/22 Olivier Blin <oblin at mandriva.com>
-
- * mdk-stage1/network.c, mdk-stage1/doc/TECH-INFOS: if interface is "auto",
- try to detect the first interface with a link beat
-
- * standalone/net_applet: really use ap address for hidden ssid
- split
- use has_wireless
- simplify
- run drakroam to configure a wireless network when selected (if not
- already configured)
- use run_program
- select a wireless network for association on click
-
- * network/monitor.pm: allow to select a wireless network
- add some comments, use meaningfull variable names
- use ssid from configuration if found for the MAC address (useful for
- hidden essid)
-
-2005/07/21 Thierry Vignaud <tvignaud at mandriva.com>
-
- * harddrake/sound.pm: typo fix (#16944)
-
-2005/07/21 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/pxe.pm: don't translate vga resolution
-
-2005/07/20 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/wireless.pm: allow to read/write wpa_supplicant config files
-
- * network/monitor.pm: get network ids and current network
-
- * standalone/net_applet: show active wireless network in the menu
- use $0 instead of hardcoded path
-
- * network/netconnect.pm: use wpa_supplicant_add_network_simple
-
-2005/07/19 Antoine Ginies <aginies at mandrakesoft.com>
-
- * standalone/draknfs: remove ipnet/32 in access_list
-
-2005/07/19 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/thirdparty.pm: fix ipw data structure and add firmware url
-
-2005/07/19 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * mygtk2.pm: Don't put a border around embbeded rpmdrake
-
-2005/07/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk2.pm (create_dialog) make dialogs transient if possible
-
- * standalone/harddrake2: do not draw a border around the main window while
- embedded
- really reap zombie children; side-effect: we can now run a second
- config tool again (#16851)
- let's work with "perl -w"
-
- * standalone/draknfs: fix phrasing
-
- * drakxtools.spec: 10.3-0.37mdk
-
- * mygtk2.pm (_gtk__MagicWindow) fix layout for programms embedded with
- their
- menubar through the newly introduced $::noborderWhenEmbedded flag
-
- * standalone/printerdrake: do not draw a border around the main window
- while embedded
-
-2005/07/19 willysr
-
- * share/po/id.po: Updated
-
-2005/07/18 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/net_applet: remove useless test
- fix typo
- update menu if interface has been modified
- factorize code to netMonitor() and use $current_interface
- really check for new version
- check for new version every minute instead of every 2 seconds
- simplify
- don't use actions submenu when no wireless network is detected
- use common::md5file
-
- * common.pm: import md5file from net_applet/mdkonline/userdrake
-
- * mdk-stage1/pci-resource/update-pci-ids.pl: add pcmcia network card ids
- in the pci table, so that cardbus card get a chance to be automatically
- loaded
-
- * network/ethernet.pm: get_eth_card_mac_address: handle firewire
- mac_addresses again
-
- * drakxtools.spec: add drakids
- require perl-Net-DBus (for net_applet and drakids)
- KDE is now lowercased in the DESKTOP variable
-
- * standalone/drakxtv: really show a warning if no tv card is detected
-
- * install_steps.pm: do not die and loop on the exitInstall step if the
- install images
- can't be saved (#16881)
-
- * Makefile.config: add drakids
-
- * standalone/draksplash: do not die if loaded file isn't an image (#16829)
-
-2005/07/18 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/eu.po: updated Basque file
-
-2005/07/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: fix 10.3-0.36mdk's changelog
- 10.3-0.36mdk
-
- * standalone/draknfs: advanced help:
- - ensure labels are named the same way on buttons and in help (and
- thus that
- help is consistent with the GUI, which wasn't), and speak about labels
- not
- actual option names in config file,
- - split in small paragraphs in order to ease translators' job
- - fix text phrasing
- - improve layout
- (help_b) fix displaying help the second time
- make sub dialogs modal and transcient to their main window
-
- * share/po/br.po, share/po/fr.po: update
- update strings from CVS
-
- * share/po/ga.po, share/po/cy.po: update
- update
- update strings from CVS
-
- * standalone/drakhosts (add_modify_entry) improve layout (especially
- hidden buttons)
- make sub dialogs modal and transcient to their main window
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/uk.po,
- share/po/mn.po, share/po/am.po, share/po/lt.po, share/po/tg.po,
- share/po/bs.po, share/po/fur.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: update strings from
- CVS
-
-2005/07/17 huftis
-
- * share/po/nn.po: Updated translation.
-
-2005/07/15 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/monitor.pm: new naming scheme
-
- * standalone/net_applet: rescale pixbufs to 16x16, use default.png if
- wifi- images aren't available
- don't add submenu if only one choice exists (and really do it)
- don't show choices menus if only one choice is possible
- put settings and actions in submenus when needed
-
- * drakxtools.spec: 10.3-0.35mdk
-
- * standalone/draknfs: don't translate the empty string
-
-2005/07/15 Warly <warly at mandrakesoft.com>
-
- * install_any.pm: workarround problem in supplementary media
-
-2005/07/14 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: new translations
-
-2005/07/14 shivahuang
-
- * share/po/zh_TW.po: updated po files
-
-2005/07/13 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/tools.pm: don't have a random result, sort
-
-2005/07/13 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/net_applet: remove spurious spaces
- po fix
- simplify
- don't destroy wireless menuitems on menu destroy
- show wireless options only if a wireless card is present
- fix typo
- reorganize interface
- first draft of wireless support
- use dbus_object;
-
- * network/monitor.pm, dbus_object.pm: initial import
-
- * standalone/drakroam: use detect_devices::has_wireless()
-
- * network/network.pm: make net_applet reload the configuration
-
- * detect_devices.pm: add has_wireless
-
- * standalone/drakids, network/activefw.pm: use dbus_object;
-
-2005/07/13 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: new strings translated
-
-2005/07/12 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/07/12 Antoine Ginies <aginies at mandrakesoft.com>
-
- * standalone/draknfs: move menu above banner, use expander to show/hide
- advanced options,
- remove empty value in advanced option, change draknfs tittle (thx
- Facorat fabrice)
- typo fix
- add exit on ok button
- ensure nfs-utils is installed
-
-2005/07/12 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakgw: fix bad phrasing
- move wait message after package installation (or else the interface
- isn't active)
-
-2005/07/11 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Add/remove entries to default PXE config.
-
-2005/07/11 Olivier Blin <oblin at mandrakesoft.com>
-
- * drakxtools.spec: 10.3-0.34mdk
-
- * network/netconnect.pm: really write modem/adsl ifcfg files (fix ONBOOT
- setting)
- don't restart network service at drakconnect startup
-
-2005/07/08 Antoine Ginies <aginies at mandrakesoft.com>
-
- * standalone/draknfs: always display ok_cancel button
- add a checkbox to enable/disable advanced options
- various adjustement in main windows
-
-2005/07/08 Olivier Blin <oblin at mandrakesoft.com>
-
- * install_steps.pm: don't open any port by default in the firewall
- always enable firewall if security level >= 3 (even if no ports have to
- be opened)
-
-2005/07/08 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: don't try to manipulate PXE stuff if the
- directory isn't present
-
-2005/07/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.3-0.33mdk
-
- * printer/cups.pm, printer/main.pm, lvm.pm, network/ipsec.pm, scanner.pm,
- printer/printerdrake.pm: reduce the overall perl_checker warnings
-
- * standalone/drakedm: do not write in /nohup.out (#16768)
-
- * share/po/ja.po: update
-
-2005/07/07 Antoine Ginies <aginies at mandrakesoft.com>
-
- * standalone/draknfs: add an apply button
- use simple userid combolist, few other fix
-
- * standalone/drakhosts: add an apply button
- add double clic event
-
-2005/07/07 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: use stop_net_interface
- do not restart network to apply modifications, run ifup or ifplugd
- instead
- remove connect/diconnect_backend
- add start/stop_net_interface
- add detach parameter to start/stop_interface
- use start/stop_interface instead of connect/disconnect_backend
-
- * network/ethernet.pm: stricter regexp for MAC addresses
-
- * share/po/fr.po: fix buggy translation about uid (#16726)
-
- * network/tools.pm: add start/stop_ifplugd
- remove connect/diconnect_backend
- add start/stop_net_interface
- add detach parameter to start/stop_interface
-
- * standalone/net_applet, standalone/net_monitor: remove
- connect/diconnect_backend
- add start/stop_net_interface
- add detach parameter to start/stop_interface
-
- * standalone/drakconnect: remove connect/diconnect_backend
- add start/stop_net_interface
- add detach parameter to start/stop_interface
- use start/stop_interface
-
-2005/07/07 pjetur
-
- * share/po/is.po: Latest updates
-
-2005/07/07 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * drakxtools.spec: use my own email address :|
- update requires for perl-MDK-Common (need distrib())
-
-2005/07/07 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakvpn: fix untranslated strings (#16736)
-
- * bootloader.pm: add support for graphical grub (Herton Ronaldo Krzes)
-
- * drakxtools.spec: 10.3-0.32mdk
-
-2005/07/06 Antoine Ginies <aginies at mandrakesoft.com>
-
- * standalone/draknfs: fix test of directory and test of hosts access in
- alter mode
- add editcell (disable by default) , add double clic support
- display wait message box while reloading/restarting nfs server
- fix undefined options
- fix domain in hosts access combobox
- fix ip/8 in comboboxentry
- button to close draknfs
- "Reload NFS server" hput in a menu
- using icons for "dir path" button
- an editable combolist for Access
- various typor fix
- "close" button in help dialog box
- use pango for text field
-
-2005/07/06 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2005/07/06 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/07/06 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/pt.po: updated po file
-
- * share/po/cy.po: updated Welsh file
-
-2005/07/06 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: Be less polite, lots of corrections, new strings
- translated etcetc.
- Be less polite;) (no please in norwegian), updated translations etc..
-
-2005/07/06 willysr
-
- * share/po/id.po: Updated
-
-2005/07/05 Antoine Ginies <aginies at mandrakesoft.com>
-
- * Makefile.config: add drakhosts and draknfs tools
-
- * standalone/drakhosts: fix string pb
- fix some comment
- move drakhosts and draknfs tools from soft/ to
- gi/perl-install/standalone
-
- * standalone/draknfs: various other fix to be able to build drakxtools
- various fix ("standalone/draknfs", line 140, character 38-48) thx tv
- add help, remove unwanted use
- move drakhosts and draknfs tools from soft/ to
- gi/perl-install/standalone
-
-2005/07/05 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakhosts: perl_checker fix
-
- * standalone/draknfs: don't keep undefined options
- use join()
- perl_checker/translation fixes
-
- * network/pxe.pm: switch to Mandriva
-
-2005/07/05 pjetur
-
- * share/po/is.po: Latest updates
-
-2005/07/05 Pixel <pixel at mandrakesoft.com>
-
- * diskdrake/interactive.pm: don't suggest to format partition if we need
- to reboot
-
-2005/07/05 shivahuang
-
- * share/po/zh_TW.po: updated po files
-
-2005/07/05 tsdgeos
-
- * share/po/ca.po: small updates
-
-2005/07/05 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.3-0.31mdk
- put newly added draknfs and drakhosts tools in the gtk backend package
-
- * Makefile.config: sort newly entries added by pixel & antoine
- do not package drakfloppy anymore since kernel is too big (#10565)
-
- * standalone/draknfs (add_columns) reuse existing translation
- fix layout somewhat
-
- * share/po/ko.po, share/po/br.po, share/po/ga.po, share/po/cy.po,
- share/po/fr.po: update
- update strings from CVS
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/uk.po,
- share/po/mn.po, share/po/am.po, share/po/lt.po, share/po/tg.po,
- share/po/bs.po, share/po/fur.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/el.po,
- share/po/bg.po, share/po/cs.po, share/po/uz@Latn.po: update strings from
- CVS
-
- * standalone/drakhosts: fix layout somewhat
-
-2005/07/04 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ja.po, share/po/gl.po, share/po/wa.po: updated Japanese,
- Galician and Walloon files
-
-2005/07/04 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/service_harddrake: rollback bogus change that mistakely went
- in
-
- * share/po/br.po: typo fix
-
- * standalone/drakbackup: fix build (perl_checker fix)
-
-2005/07/03 pjetur
-
- * share/po/is.po: Mostly syntax checking and msg consistency
-
-2005/07/01 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/07/01 Olivier Blin <oblin at mandrakesoft.com>
-
- * ugtk2.pm: remove spurious comment
- (Gtk2::ComboBox->get_text, Gtk2::OptionMenu->get_text) fix non selected
- case
-
- * network/tools.pm: remove useless grouping and rewrite code to be safer
-
- * network/shorewall.pm: add 'routeback' option for bridge interfaces in
- shorewall interfaces file
-
- * detect_devices.pm: add is_bridge_interface
-
- * network/drakfirewall.pm: fix port range syntax for samba (backport from
- 10.1 updates)
-
- * network/activefw.pm: remove unneeded requires, added in the wrong
- place...
-
- * standalone/drakbug: set the "" string as active in the combo box when a
- custom binary is
- selected, to avoid default selection of the last combo box item
- (this allow to remove the "scannerdrake" hack)
- simplify
- use the 'drakxtools' component for "Standalone Tools" (really fix
- #16580) and split drakxtools components out of the main hash
-
-2005/07/01 Pixel <pixel at mandrakesoft.com>
-
- * fs/type.pm: new function is_dmraid()
-
- * fs/get.pm: create vg_free_space()
-
- * diskdrake/interactive.pm: handle pvmove
- create lvm::pv_physical_extents() and use it
- - correctly compute the max size on a VG (bugzilla #16189)
- - don't verifyParts on lvm
- add "Used physical extents %d / %d\n" for PV details
- handle vgreduce
- a PV has no "Options" (bugzilla #16168)
-
- * install_steps_auto_install.pm: allow restarting a failed auto_install
- without rebooting (a la blino)
-
- * fsedit.pm: move skipping dmraid drives test in fsedit (and use
- fs::type::is_dmraid)
- better name
- replace lv_nb_segments() with lv_nb_pvs()
- (which is really what lilo cares about. lilo error is "mapped boot
- device cannot be on multiple real devices")
- lilo only accept /boot (or /) on a LV if it uses only one PV, so
- correctly warn/error this
-
- * install_any.pm: use fs::type::is_dmraid()
- don't spawn a new shell if it's already running (useful when using the
- no-reboot-restart-install blino trick)
-
- * any.pm, bootloader.pm:
- - lilo doesn't work on dmraid so forcing grub
- - method_choices() now wants $all_hds instead of $fstab
-
- * lvm.pm: handle pvmove
- - we can keep vg available when using vgreduce
- - we must update the vg total size after removing a pv
- fix message
- create lvm::pv_physical_extents() and use it
- remove debug code from previous commit
- create generic function get_pv_field()
- better name
- replace lv_nb_segments() with lv_nb_pvs()
- (which is really what lilo cares about. lilo error is "mapped boot
- device cannot be on multiple real devices")
- handle vgreduce
- better error message, and translate it
- lilo only accept /boot (or /) on a LV if it uses only one PV, so
- correctly warn/error this
-
- * fs/format.pm: mkinitrd only handle ext2/ext3 labels, so disallow labels
- on "/" for other fs types
-
- * fs/proc_partitions.pm: move skipping dmraid drives test in fsedit (and
- use fs::type::is_dmraid)
-
- * fs/dmraid.pm: in standalone, missing dmraid implies we don't have dmraid
- devices, so make it clean and don't call dmraid
-
-2005/07/01 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Don't write ignored media in urpmi.cfg (bug 15537)
-
-2005/07/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: add bug reference to 10-34.9.100mdk
- fix 10-34.9.100mdk's changelog
- 10-34.9.100mdk
-
- * fs/mount_options.pm: describe "grpquota" and "usrquota" mount options
- (#15671)
-
- * share/po/fr.po: update
- update strings from CVS
- update
- update strings from CVS
-
- * standalone/drakbug: fix shell parsing unquoted bugzilla URL (#16580)
-
- * .perl_checker: ensure we don't try to parse warnings.pm
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/uk.po, share/po/mn.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/ta.po, share/po/nl.po, share/po/tl.po, share/po/de.po,
- share/po/eo.po, share/po/el.po, share/po/bg.po, share/po/cs.po,
- share/po/uz@Latn.po: update strings from CVS
- update strings from CVS
-
- * share/po/br.po: update strings from CVS
- update strings from CVS
- update
-
-2005/07/01 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: add nvu in CAT_WWW CAT_DEVELOPMENT
-
-2005/07/01 willysr
-
- * share/po/id.po: Updated
-
-2005/06/30 Pixel <pixel at mandrakesoft.com>
-
- * install_any.pm: install dmraid if needed
-
- * fs/dmraid.pm: call it dmraid, it's more explicit
-
-2005/06/30 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * c/stuff.xs.pl: Remove function not used (and provided by perl-URPM
- anyway)
-
-2005/06/29 Pixel <pixel at mandrakesoft.com>
-
- * fs/dmraid.pm: the output of "dmraid -r" is not enough, "dmraid -s" is
- more important.
- add some sample output for easy debugging
-
- * rescue/partimage_whole_disk: {mntpoint} is not set, so take the last
- ext3 partition as being /home
- - don't save /home and want a size <1GB (since it will be grown to fit
- disk)
- - fix keeping the small size of the existing windows partition
- (otherwise the filesystem is small in a (much) bigger partition)
- - remove "windows" entry from lilo.conf if windows not there
-
-2005/06/28 Pixel <pixel at mandrakesoft.com>
-
- * standalone/drakboot: handle no bootloader configuration found with a
- clean error
-
- * fs/loopback.pm, any.pm, diskdrake/interactive.pm, fs/get.pm, pkgs.pm,
- fs.pm, install_steps.pm, standalone/drakautoinst, bootloader.pm,
- fs/dmraid.pm, install_steps_interactive.pm, network/thirdparty.pm,
- fs/type.pm, install2.pm, common.pm, modules.pm, fs/format.pm,
- fs/mount.pm, commands.pm, install_any.pm, fs/wild_device.pm,
- standalone/bootloader-config, partition_table.pm: try to cleanup fs.pm
- (to have simpler dependencies between modules, esp. have some modules
- only required by diskdrake):
- - move some functions from fs to fs::mount
- (most keep their name, except mount_part and mount_usbfs)
- - move formatMount_part and formatMount_all from fs to fs::format
- - move some functions from fs to fs::wild_device
- (part2wild_device_name -> fs::wild_device::from_part)
- (subpart_from_wild_device_name -> fs::wild_device::to_subpart)
- (analyze_wild_device_name -> fs::wild_device::analyse)
-
- - formatMount_part(), formatMount_all(), fs::mount::part() don't take
- a prefix anymore
- the current situation was quite muddy
- we now rely on fs::get::mntpoint_prefixed() which will maybe depend on
- a field in $part
- for now, we mount every part in chroot, it seems to be what's wanted
-
- - fs::format::part() now expect $all_hds instead of $raids
-
- - fs::type::carryRootLoopback is now fs::get::carry_root_loopback()
- - in fs::loopback, most functions don't want a prefix anymore
-
- * standalone/drakpxe:
- - since we don't use a ramdisk for the stage2 anymore, remove
- ramdisk_size=128000
- (hopefully the initrd doesn't have the limitation or we won't hit the
- stupid low default max size of the kernel)
- - use the short aliases for automatic stage1 (cf
- mdk-stage1/automatic.c)
-
- * tools/drakx-in-chroot: help getting rid of existing files
-
-2005/06/28 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/po/fr.po: New translations
-
- * install_any.pm: Add NFS supplementary media in fstab
- Fix install_urpmi with nfs suppl media
-
- * pkgs.pm: Fix install_urpmi with nfs suppl media
-
-2005/06/28 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: upcase protocol names
- update
- update strings from CVS
-
- * install_any.pm: upcase protocol names
- (ask_if_suppl_media) upcase protocol name
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/uk.po,
- share/po/mn.po, share/po/am.po, share/po/lt.po, share/po/tg.po,
- share/po/bs.po, share/po/fur.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: upcase protocol
- names
- update strings from CVS
-
- * share/po/ga.po, share/po/cy.po: update
- upcase protocol names
- update strings from CVS
-
- * share/po/br.po: update
- upcase protocol names
- update
- update strings from CVS
-
-2005/06/27 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/po/fr.po: Missing translation
-
- * install_any.pm: Support NFS supplementary media
-
-2005/06/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.3-0.28mdk
-
-2005/06/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * bootloader.pm (write_grub) fix root when using labels and switching from
- LILO to GRUB
-
- * standalone/service_harddrake: fix switch from nvidia to nv for X.org
- we now use X.org instead of XFree86
-
-2005/06/25 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/tools.pm: use empty prototype
- don't fork to get route with "ip route", use /proc/net/route instead
- (TODO: handle IPv6 with /proc/net/ipv6_route)
-
-2005/06/24 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/net_monitor: remove MDK::Common::Globals::init (fix crash)
-
- * authentication.pm: fix NISDOMAIN
-
- * standalone/drakauth: use network::network::write_network_conf (fix
- crash)
-
-2005/06/24 Pixel <pixel at mandrakesoft.com>
-
- * rescue/partimage_whole_disk: fixing fstab must be done after mounting
- /mnt
-
- * fs/format.pm, share/list.xml: normalize mke2fs and mkreiserfs into
- mkfs.<fs_type>
-
- * rescue/list.xml: add mkfs.ext2
-
- * fs/dmraid.pm, fsedit.pm: handle dmraid device not there, keeping the raw
- hds
-
- * mygtk2.pm: add "default_width" and "default_height" for Gtk2::Window
-
- * authentication.pm: replace remaining $net->{auth} with $authentication
- (since those variables are no more written in sysconfig/network)
-
-2005/06/24 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * pkgs.pm: Remove DB logs before doing an install.
- Remove rpm 4.2 bug workaround, it may confuse rpm in some cases
-
-2005/06/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.3-0.27mdk
-
- * detect_devices.pm: rename isTVcard() as isTVcardConfigurable() since
- it's more meaninfull regarding its purpose
- enable to configure cx88 driver
-
- * harddrake/v4l.pm: enable to configure cx88 driver
- do not use tree branches for vendor when there's only one device
- update card lists from kernel-2.6.12
- (config) do not use a combo
-
- * standalone/drakxtv: rename isTVcard() as isTVcardConfigurable() since
- it's more meaninfull regarding its purpose
-
-2005/06/23 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/06/23 mareklaane
-
- * share/po/et.po: Updated Estonian translation.
-
-2005/06/23 Olivier Blin <oblin at mandrakesoft.com>
-
- * share/po/fr.po: fix titypo
-
- * crypto.pm: remove unused get() and ftp()
-
- * install_steps.pm: don't use $::o but $o
- use http proxy settings from stage1 as post-install proxy settings for
- both http and ftp connections
-
-2005/06/23 pjetur
-
- * share/po/is.po: Finsalize printer setup and more spelling/tidy
-
-2005/06/23 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm: cleanup (old titi commit)
-
- * fsedit.pm: handle dmraid require fail
-
-2005/06/23 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/po/fr.po: Punctuation fix
-
-2005/06/22 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/06/21 Funda Wang <fundawang at linux.net.cn>
-
- * lang.pm: Added scim-ccinput support.
-
-2005/06/21 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/pxe.pm: perl_checker
- fix typo
- strip "pxelinux_" in profiles-related-only functions
- - add profiles_exist
- - enhance find_next_profile_name
- - add_empty_profile now needs a profile name
- perl_checker/suxiness fixes
- - basic profiles support
- - per_mac address configuration support
- - give config file path as argument in
- network::pxe::{read,write}_pxelinux_conf
- - add write_conf in drakpxelinux to ease profile handling
-
-2005/06/21 pjetur
-
- * share/po/is.po: Mostly printer wizard strings
-
-2005/06/21 Pixel <pixel at mandrakesoft.com>
-
- * fs/format.pm: handle creation of labels for every filesystem types
-
-2005/06/20 Frederic Lepied <flepied at mandrakesoft.com>
-
- * share/rpmsrate: install keychain when installing openssh-clients
-
-2005/06/20 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/06/20 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: add missing require
- remove duplicate lan detection
-
-2005/06/20 Pixel <pixel at mandrakesoft.com>
-
- * devices.pm: enable creation of /dev/dm-x devices (not used at the
- moment)
-
- * fs/dmraid.pm, install2.pm: initial dmraid support
-
- * fs.pm:
- - change prototype of fs::get_major_minor()
- - use it in fs::proc_partitions::compare()
- (not useful at the moment, but it may help in the future)
-
- * partition_table/raw.pm: ignore HDIO_GETGEO fail (useful for dmraid)
-
- * fs/proc_partitions.pm, fsedit.pm: initial dmraid support
- - change prototype of fs::get_major_minor()
- - use it in fs::proc_partitions::compare()
- (not useful at the moment, but it may help in the future)
-
-2005/06/19 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/06/19 pjetur
-
- * share/po/is.po: Updates and lots of speling corrected
-
-2005/06/18 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/eu.po: updated Basque file
-
-2005/06/18 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: rollback titi's commit (it was needed with 10.2 code, but
- i've already committed code to handle it cleanly in cooker (see
- $quotes_if_needed))
-
-2005/06/17 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2005/06/17 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/pt_BR.po: updated Brazilian file
- updated pot file
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/pa_IN.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/uk.po, share/po/mn.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: updated pot file
-
- * network/ndiswrapper.pm: no space before question marks
-
-2005/06/17 pjetur
-
- * share/po/is.po: New entries and lots of "speling"
-
-2005/06/17 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: rewrite and document
-
-2005/06/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.3-0.25mdk
-
- * standalone/harddrake2: fix undefined function after pixel cleanups
- (#16472)
-
- * Xconfig/card.pm (to_raw_X) fix 3D on ATI cards (adding 'load "glx"')
- (to_raw_X) fix 3D on ATI cards (adding 'load "glx"')
-
- * bootloader.pm (write_lilo) fix support for labels (eg: when switching
- from GRUB to
- LILO, let's prevent unmanagable 'root="LABEL=..."' to appear)
- (read_grub) fix reading config with new grub (thus fixing detectloader,
- thus
- fixing bootloader-config, thus fixing installkernel)
- typo fix
- (write_lilo) fix support for labels (eg: when switching from GRUB to
- LILO, let's prevent unmanagable 'root="LABEL=..."' to appear)
-
-2005/06/17 willysr
-
- * share/po/id.po: Updated
- Updated
-
-2005/06/16 Olivier Blin <oblin at mandrakesoft.com>
-
- * harddrake/autoconf.pm: load mouse modules after the mouse has been
- configured, since
- modprobe.preload is read before harddrake is run
-
-2005/06/16 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm:
- - new grub has files in /lib/grub/i386-pc, copy them in /boot/grub (as
- done by grub-install)
- - use "setup" grub command instead of "install" so that it handles
- stage1.5 embedding if possible, and is simpler
-
-2005/06/16 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * modules.pm, harddrake/autoconf.pm: fix autoconfiguring synaptics (eg: on
- globetrotter)
-
- * Xconfig/card.pm (libgl_config) fix enabling 3D when multiple GL
- libraries are installed (eg: globetrotter)
- (libgl_config) fix enabling 3D when multiple GL libraries are installed
- (eg: globetrotter)
-
-2005/06/15 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * Xconfig/card.pm (to_raw_X) really prevent loading/unloading twice the
- same glx module on non NV cards
- (to_raw_X) prevent loading/unloading twice the same glx module on non NV
- cards
- (to_raw_X) really prevent loading/unloading twice the same glx module on
- non NV cards
- (to_raw_X) prevent loading/unloading twice the same glx module on non NV
- cards
-
- * ugtk2.pm (Gtk2::Banner->new) load lang in order to prevent aborting
-
- * drakxtools.spec: 10.3-0.24mdk
-
-2005/06/14 Pixel <pixel at mandrakesoft.com>
-
- * rescue/make_partimage_save_rest_all: die on error
-
- * diskdrake/resize_ext2.pm: move ext2 resizing code here so that it's
- easier to use
-
- * diskdrake/interactive.pm: use diskdrake::resize_ext2
-
- * rescue/list.xml: needed for partimage_whole_disk, before calling
- resize2fs
-
- * Xconfig/monitor.pm: quotes in monitor names causes havoc, replace them
- (bugzilla #16406)
-
- * fs/type.pm: for lsparts to work
-
-2005/06/14 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/06/14 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.3-0.23mdk
-
- * bootloader.pm (write_grub) adapt to grub-0.97-2mdk
-
-2005/06/13 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/modem.pm: prefix write_secret_backend
-
- * Makefile.config: don't install drakpxe, the PXE wizard is now in the
- drakpxelinux package
-
-2005/06/13 Pixel <pixel at mandrakesoft.com>
-
- * rescue/guessmounts, rescue/restore_ms_boot, rescue/lsparts: move
- functions using /proc/partitions out of fsedit to fs::proc_partitions
-
- * fs/type.pm, fs/mount_options.pm, diskdrake/removable.pm: fs::auto_fs()
- is now fs::type::guessed_by_mount() (still not a really nice name...)
-
- * fs.pm: fsedit::is_same_hd is now fs:get::is_same_hd
- fs::auto_fs() is now fs::type::guessed_by_mount() (still not a really
- nice name...)
-
- * authentication.pm: stop messing with likeauth and nullok options and
- keep them on the pam_unix line (bugzilla #12066)
- stop messing with likeauth and nullok options and keep them on the
- pam_unix line (bugzilla #12066)
- stop messing with likeauth and nullok options and keep them on the
- pam_unix line (bugzilla #12066)
-
- * fs/get.pm, fsedit.pm, standalone/drakupdate_fstab, install_any.pm:
- fsedit::is_same_hd is now fs:get::is_same_hd
-
-2005/06/12 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2005/06/12 rstandtke
-
- * share/po/de.po: some additions and fixes
-
-2005/06/10 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/isdn.pm: write_secret_backend isn't exported anymore
- use services::enable() and services::disable()
-
- * network/pxe.pm:
- - create network::pxe out of drakpxelinux (pxe configuration files
- management)
- - get_items() -> network::pxe::read_pxelinux_conf()
- - don't read comments in pxelinux configuration file
- - store pxelinux configuration in a hash to avoid multiple cat_()
- - add network::pxe::list_pxelinux_labels() to get labels from a
- pxelinux configuration
- - only overwrite pxelinux settings (prompt, timeout, ...) when pxe is
- reconfigured
- - use network::network and network::tools to get hostname, domain
- name, IP address, net interface
- - move row creation code in set_pxelinux_entry_at_iter() and factorize
- - use ensure_is_installed to make sure pxe is installed
-
- * services.pm: create enable() and disable() out of set_status()
-
- * network/adsl.pm: use services::enable() and services::disable()
-
-2005/06/10 Pixel <pixel at mandrakesoft.com>
-
- * pkgs.pm, fs.pm: don't need use MDK::Common... when we have "use common"
- (which is the standard for libDrakX modules)
- move loopback.pm to fs/loopback.pm
- (since it's tightly tight to many fs* things)
-
- * network/isdn.pm: don't need use MDK::Common... when we have "use common"
- (which is the standard for libDrakX modules)
- - move functions using /proc/partitions out of fsedit to
- fs::proc_partitions
- - remove unneeded "use xxx"
- - add some "use xxx" (nb: not completly needed because some other
- modules may do it)
-
- * resize_fat/main.pm, interactive.pm, standalone/drakTermServ, crypto.pm,
- network/test.pm, commands.pm, security/msec.pm, common.pm,
- install_any.pm: don't need use MDK::Common... when we have "use common"
- (which is the standard for libDrakX modules)
-
- * http.pm, network/network.pm, network/modem.pm, harddrake/autoconf.pm,
- network/ipsec.pm, partition_table/dos.pm, network/smb.pm, devices.pm,
- harddrake/v4l.pm, modules/interactive.pm, raid.pm,
- diskdrake/smbnfs_gtk.pm, any.pm, mygtk2.pm, harddrake/sound.pm,
- fs/mount_options.pm, authentication.pm, network/ethernet.pm,
- network/dhcpd.pm, Xconfig/resolution_and_depth.pm, harddrake/data.pm,
- network/smbnfs.pm, network/adsl.pm, detect_devices.pm, network/nfs.pm:
- - move functions using /proc/partitions out of fsedit to
- fs::proc_partitions
- - remove unneeded "use xxx"
- - add some "use xxx" (nb: not completly needed because some other
- modules may do it)
-
- * bootloader.pm: don't drop "shade" and "viewport" lines (bugzilla #16372)
- - move functions using /proc/partitions out of fsedit to
- fs::proc_partitions
- - remove unneeded "use xxx"
- - add some "use xxx" (nb: not completly needed because some other
- modules may do it)
- move loopback.pm to fs/loopback.pm
- (since it's tightly tight to many fs* things)
-
- * standalone.pm, class_discard.pm: class_discard is a bad idea, now
- unused, so drop it
-
- * Xconfig/main.pm:
- - move functions using /proc/partitions out of fsedit to
- fs::proc_partitions
- - remove unneeded "use xxx"
- - add some "use xxx" (nb: not completly needed because some other
- modules may do it)
- add some "use xxx;" (the idea is to see what the package needs, but i
- may rollback after understanding better dependencies)
-
- * Xconfig/various.pm, partition_table/gpt.pm, network/netconnect.pm,
- network/thirdparty.pm, Xconfig/default.pm: add some "use xxx;" (the idea
- is to see what the package needs, but i may rollback after understanding
- better dependencies)
-
- * fs/get.pm, install_steps.pm, install_steps_interactive.pm, fs/format.pm,
- loopback.pm, fs/loopback.pm: move loopback.pm to fs/loopback.pm
- (since it's tightly tight to many fs* things)
-
- * diskdrake/hd_gtk.pm, fsedit.pm:
- - move functions using /proc/partitions out of fsedit to
- fs::proc_partitions
- - remove unneeded "use xxx"
- - add some "use xxx" (nb: not completly needed because some other
- modules may do it)
- move loopback.pm to fs/loopback.pm
- (since it's tightly tight to many fs* things)
-
- * fs/proc_partitions.pm: make it work
- - move functions using /proc/partitions out of fsedit to
- fs::proc_partitions
- - remove unneeded "use xxx"
- - add some "use xxx" (nb: not completly needed because some other
- modules may do it)
-
- * diskdrake/interactive.pm:
- - move functions using /proc/partitions out of fsedit to
- fs::proc_partitions
- - remove unneeded "use xxx"
- - add some "use xxx" (nb: not completly needed because some other
- modules may do it)
- add some "use xxx;" (the idea is to see what the package needs, but i
- may rollback after understanding better dependencies)
- move loopback.pm to fs/loopback.pm
- (since it's tightly tight to many fs* things)
-
-2005/06/09 Daouda Lo <daouda at mandrakesoft.com>
-
- * network/adsl_consts.pm:
- - added senegal ADSL provider entry
-
-2005/06/09 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/tools.pm: add get_interface_ip_address (with bits from
- drakpxelinux)
-
- * network/thirdparty.pm: remove non-ASCII character
-
-2005/06/09 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: Translated more strings, also fixed a few old ones :)
-
-2005/06/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * install_steps_interactive.pm (addUser) apply autologin setting for
- globetrotter
- (acceptLicense) do not show "releases notes" for globetrotter
- (acceptLicense) better use run_program for killing Xorg
- (addUser) apply autologin setting for globetrotter
- (acceptLicense) do not show "releases notes" for globetrotter
- (acceptLicense) fix exiting step license
-
- * pkgs.pm (install) do not kill runaway processes when building the
- globetrotter
- (bestKernelPackage) while building a globetrotter, do not look for a
- specific kernel favour
- (install) do not kill runaway processes when building the globetrotter
- (bestKernelPackage) while building a globetrotter, do not look for a
- specific kernel favour
-
- * any.pm (autologin) make autologin choice more user friendly (better fix
- for #4304)
-
- * detect_devices.pm: forward: (getSCSI_26) fix of by one error resulting
- in misdetecing USB mass storage devices (#13569)
-
- * Xconfig/card.pm: forward: ensure that explanations go into
- /var/log/explanations is standalone
- mode (log::explanations() just calls log::l() at install time)
- forward: ensure that explanations go into /var/log/explanations is
- standalone
- mode (log::explanations() just calls log::l() at install time)
-
- * install_steps.pm (leavingStep) if formatError() returns nothing, better
- display the raw error
-
-2005/06/09 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: Translated more strings, also fixed a few old ones :)
-
-2005/06/09 Pixel <pixel at mandrakesoft.com>
-
- * keyboard.pm, any.pm, partition_table/mac.pm, services.pm, modules.pm,
- raid.pm, Xconfig/main.pm, modules/any_conf.pm, install_any.pm: don't
- need prefixing with current package
-
-2005/06/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * any.pm (autologin) make autologin choice more user friendly (better fix
- for #4304)
-
-2005/06/08 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/network.pm: use prefix only once it has been defined by install
-
- * network/ndiswrapper.pm: allow to install ndiswrapper drivers during
- install
- use prefix only once it has been defined by install
-
-2005/06/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.3-0.22mdk
- bump conflict on drakconf due to blino's changes
-
-2005/06/07 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/06/07 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakgw: don't be fooled by if_ not short-circuiting and
- auto-vivification, use $conf->{masq_subnet} instead of
- $conf->{masquerade}{subnet} (i.e. do not write buggy shorewall masqfile
- when connection sharing is disabled)
-
- * network/shorewall.pm: do not crash when restarting shorewall
- don't be fooled by if_ not short-circuiting and auto-vivification, use
- $conf->{masq_subnet} instead of $conf->{masquerade}{subnet} (i.e. do not
- write buggy shorewall masqfile when connection sharing is disabled)
-
-2005/06/07 Pixel <pixel at mandrakesoft.com>
-
- * standalone/finish-install:
- - backport "add language selection"
- - add keyboard selection
-
- * any.pm: allow inspecting nfs
-
- * fs.pm: handle nfs mount (since we now use the /bin/mount instead of the
- syscall, we get it for free)
-
- * install_any.pm (media_browser): handle nfs
-
-2005/06/07 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.3-0.21mdk
-
- * fs.pm (mount) use 'soft' & 'intr' options for nfs mounts
-
-2005/06/06 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/network.pm: make it more readable
-
-2005/06/06 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/vi.po, share/po/fr.po: updated French and Vietnamese files
-
- * share/po/cy.po: updated Welsh file
-
-2005/06/06 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: install2 functions should be steps
- get rid of $clicked and $ent_number (obsolete)
-
- * share/compssUsers.pl: change the default in case of low resources and
- add the Icewm choice
-
- * install_any.pm: replace strange "-" with a ascii compliant one
- install2 functions should be steps
- get rid of $clicked and $ent_number (obsolete)
-
- * install_steps.pm, install_steps_gtk.pm, install_steps_auto_install.pm,
- install_steps_interactive.pm: get rid of $clicked and $ent_number
- (obsolete)
-
-2005/06/06 Olivier Blin <oblin at mandrakesoft.com>
-
- * harddrake/autoconf.pm: netconnect API change,
- harddrake::autoconf::network_conf seems unused
- anyway, and this easy_dhcp thing is already performed by hotplug
-
- * network/network.pm: make it more readable
- set system hostname when writing network configuration
- update comments
-
- * standalone/drakgw: drop unused variable, this file is modified in
- network::shorewall now
- new netconnect API
-
- * network/adsl.pm: add ISP field in eagle-usb.conf
-
- * bootsplash.pm: fix typo instead of trying to be perl_checker compliant
- ...
-
- * network/shorewall.pm: API change (me sux)
-
- * standalone/drakconnect: kill unused variables
- simplify apply() since sethostname() is done by configure_network()
- handle GATEWAY field again in manage interface
- use real_main here since exceptions are handled
-
- * standalone/draksplash: create adjustments before resolution is set so
- that they get correct upper values
- - create update_scales_for_resolution() and
- update_scale_values_from_conf() out of update_scale_values()
- - modify $adj{$_}{value} instead of calling $adj{$_}->set_value to
- avoid some artefacts caused by callbacks
- - draw cross in progress bar
- - update_rect -> update_theme_from_rect
- - create update_rect out of switch_to_mode
- really consider text box values
-
- * printer/printerdrake.pm: new netconnect API
-
-2005/06/06 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: Translated more strings
-
-2005/06/06 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm, install_any.pm: install2 functions should be steps
- get rid of $clicked and $ent_number (obsolete)
-
- * share/compssUsers.pl: change the default in case of low resources and
- add the Icewm choice
- make a special "low resources" choice
-
- * bootloader.pm:
- - put quotes if needed for root=xxx (quotes are needed for LABEL=...)
- - use LABEL=... if preferred
- rewrite before adding more
- keep read-only, read-write and label as verbatim as possible
- (note that read-only will not appear by default anymore since "ro" is
- the default)
- use bootloader->{message_text} instead of bootloader->{message}
-
- * share/rpmsrate, detect_devices.pm: make a special "low resources" choice
-
- * install_steps.pm: get rid of $clicked and $ent_number (obsolete)
- use bootloader->{message_text} instead of bootloader->{message}
-
- * install_steps_interactive.pm: get rid of $clicked and $ent_number
- (obsolete)
- don't add us_intl, lang2keyboards() takes care of everything (bugzilla
- #12979)
-
- * keyboard.pm: default to "en" keyboard (as requested by pablo)
-
- * standalone/bootloader-config: nicer error
- - put quotes if needed for root=xxx (quotes are needed for LABEL=...)
- - use LABEL=... if preferred
-
- * install_steps_gtk.pm, install_steps_auto_install.pm: get rid of $clicked
- and $ent_number (obsolete)
-
-2005/06/03 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/tools.pm: net interface is now in $net->{net_interface}
- - merge network settings in a $net hash (it modifies $o fields too):
- o $netc becomes $net->{network} and $net->{resolv}
- o $intf becomes $net->{ifcfg}
- - move zeroconf config stuff in write_zeroconf
- - read_tmdns_conf -> read_zeroconf
- - read_all_conf -> read_net_conf
- - configureNetwork2 -> configure_network
- - configure_network: write ifcfg files for ppp interfaces too
- - don't install wireless-tools in configure_network, this package is
- in basesystem
- - most functions don't need the file path as an argument in
- network::network
- - drop network::tools::remove_initscript
- - don't export too much from network::network
- - don't export from network::tools
- - remove adsl_unsupported_eci step in drakconnect
- - drop passwd2 field in network::adsl
- - drop $net->{isdn_internal}
- - network::netconnect : main -> safe_main
- - use network::netconnect::real_main during install
- - don't read network config in network::netconnect::real_main
- - install_steps::upNetwork : resolv.conf is already symlinked by
- network::network::configure_network when appropriate
- - try to fix install_any::generate_automatic_stage1_params to use a
- real interface configuration
- - put authentication stuff in $net->{auth}
- - drop network::ethernet::write_ether_conf
- - drop network::adsl::get_wizard
- - use 'static' instead of 'manual' as ADSL method
- - drop first_modem and its workarounds in network::modem
- - drop deprecated "multiple_internet_cnx" step in drakconnect
- - don't save /etc/sysconfig/drakconnect anymore
- - drop MDK::Common::Globals stuff
- - drop getIP in net_applet (Pixel)
- - drop $netc->{DHCP}
- - configure_network(): write resolv.conf even if a dhcp interface is
- configured
-
- * install2.pm: define $o->{net}{type} and $o->{net}{net_interface} for lan
- installs
- remove comment, stage1 now writes DOMAINNAME and DHCP_HOSTNAME in the
- proper files
- $o->{net}{network} and $o->{net}{resolv} may not exist at this stage of
- installation (they are created by read_net_conf), create them if needed
- - merge network settings in a $net hash (it modifies $o fields too):
- o $netc becomes $net->{network} and $net->{resolv}
- o $intf becomes $net->{ifcfg}
- - move zeroconf config stuff in write_zeroconf
- - read_tmdns_conf -> read_zeroconf
- - read_all_conf -> read_net_conf
- - configureNetwork2 -> configure_network
- - configure_network: write ifcfg files for ppp interfaces too
- - don't install wireless-tools in configure_network, this package is
- in basesystem
- - most functions don't need the file path as an argument in
- network::network
- - drop network::tools::remove_initscript
- - don't export too much from network::network
- - don't export from network::tools
- - remove adsl_unsupported_eci step in drakconnect
- - drop passwd2 field in network::adsl
- - drop $net->{isdn_internal}
- - network::netconnect : main -> safe_main
- - use network::netconnect::real_main during install
- - don't read network config in network::netconnect::real_main
- - install_steps::upNetwork : resolv.conf is already symlinked by
- network::network::configure_network when appropriate
- - try to fix install_any::generate_automatic_stage1_params to use a
- real interface configuration
- - put authentication stuff in $net->{auth}
- - drop network::ethernet::write_ether_conf
- - drop network::adsl::get_wizard
- - use 'static' instead of 'manual' as ADSL method
- - drop first_modem and its workarounds in network::modem
- - drop deprecated "multiple_internet_cnx" step in drakconnect
- - don't save /etc/sysconfig/drakconnect anymore
- - drop MDK::Common::Globals stuff
- - drop getIP in net_applet (Pixel)
- - drop $netc->{DHCP}
- - configure_network(): write resolv.conf even if a dhcp interface is
- configured
-
- * mdk-stage1/network.c: write DHCP_HOSTNAME in /tmp/ifcfg-* file instead
- of /tmp/network
- domain name is already in /etc/resolv.conf (and stage2 reads this file
- too), don't write it in /tmp/network
-
- * standalone/drakconnect: drop unused subs
- - merge network settings in a $net hash (it modifies $o fields too):
- o $netc becomes $net->{network} and $net->{resolv}
- o $intf becomes $net->{ifcfg}
- - move zeroconf config stuff in write_zeroconf
- - read_tmdns_conf -> read_zeroconf
- - read_all_conf -> read_net_conf
- - configureNetwork2 -> configure_network
- - configure_network: write ifcfg files for ppp interfaces too
- - don't install wireless-tools in configure_network, this package is
- in basesystem
- - most functions don't need the file path as an argument in
- network::network
- - drop network::tools::remove_initscript
- - don't export too much from network::network
- - don't export from network::tools
- - remove adsl_unsupported_eci step in drakconnect
- - drop passwd2 field in network::adsl
- - drop $net->{isdn_internal}
- - network::netconnect : main -> safe_main
- - use network::netconnect::real_main during install
- - don't read network config in network::netconnect::real_main
- - install_steps::upNetwork : resolv.conf is already symlinked by
- network::network::configure_network when appropriate
- - try to fix install_any::generate_automatic_stage1_params to use a
- real interface configuration
- - put authentication stuff in $net->{auth}
- - drop network::ethernet::write_ether_conf
- - drop network::adsl::get_wizard
- - use 'static' instead of 'manual' as ADSL method
- - drop first_modem and its workarounds in network::modem
- - drop deprecated "multiple_internet_cnx" step in drakconnect
- - don't save /etc/sysconfig/drakconnect anymore
- - drop MDK::Common::Globals stuff
- - drop getIP in net_applet (Pixel)
- - drop $netc->{DHCP}
- - configure_network(): write resolv.conf even if a dhcp interface is
- configured
-
- * standalone/drakauth, network/modem.pm, network/adsl_consts.pm,
- standalone/finish-install, authentication.pm, network/ethernet.pm,
- network/isdn.pm, standalone/net_applet, standalone/drakautoinst,
- standalone/drakpxe, install_steps_interactive.pm, network/netconnect.pm,
- network/adsl.pm, standalone/net_monitor:
- - merge network settings in a $net hash (it modifies $o fields too):
- o $netc becomes $net->{network} and $net->{resolv}
- o $intf becomes $net->{ifcfg}
- - move zeroconf config stuff in write_zeroconf
- - read_tmdns_conf -> read_zeroconf
- - read_all_conf -> read_net_conf
- - configureNetwork2 -> configure_network
- - configure_network: write ifcfg files for ppp interfaces too
- - don't install wireless-tools in configure_network, this package is
- in basesystem
- - most functions don't need the file path as an argument in
- network::network
- - drop network::tools::remove_initscript
- - don't export too much from network::network
- - don't export from network::tools
- - remove adsl_unsupported_eci step in drakconnect
- - drop passwd2 field in network::adsl
- - drop $net->{isdn_internal}
- - network::netconnect : main -> safe_main
- - use network::netconnect::real_main during install
- - don't read network config in network::netconnect::real_main
- - install_steps::upNetwork : resolv.conf is already symlinked by
- network::network::configure_network when appropriate
- - try to fix install_any::generate_automatic_stage1_params to use a
- real interface configuration
- - put authentication stuff in $net->{auth}
- - drop network::ethernet::write_ether_conf
- - drop network::adsl::get_wizard
- - use 'static' instead of 'manual' as ADSL method
- - drop first_modem and its workarounds in network::modem
- - drop deprecated "multiple_internet_cnx" step in drakconnect
- - don't save /etc/sysconfig/drakconnect anymore
- - drop MDK::Common::Globals stuff
- - drop getIP in net_applet (Pixel)
- - drop $netc->{DHCP}
- - configure_network(): write resolv.conf even if a dhcp interface is
- configured
-
- * install_steps.pm: introduce network_is_cheap(), use it, and fix a
- boolean typo
- $o->{net}{type} is already defined in more appropriate places
- - merge network settings in a $net hash (it modifies $o fields too):
- o $netc becomes $net->{network} and $net->{resolv}
- o $intf becomes $net->{ifcfg}
- - move zeroconf config stuff in write_zeroconf
- - read_tmdns_conf -> read_zeroconf
- - read_all_conf -> read_net_conf
- - configureNetwork2 -> configure_network
- - configure_network: write ifcfg files for ppp interfaces too
- - don't install wireless-tools in configure_network, this package is
- in basesystem
- - most functions don't need the file path as an argument in
- network::network
- - drop network::tools::remove_initscript
- - don't export too much from network::network
- - don't export from network::tools
- - remove adsl_unsupported_eci step in drakconnect
- - drop passwd2 field in network::adsl
- - drop $net->{isdn_internal}
- - network::netconnect : main -> safe_main
- - use network::netconnect::real_main during install
- - don't read network config in network::netconnect::real_main
- - install_steps::upNetwork : resolv.conf is already symlinked by
- network::network::configure_network when appropriate
- - try to fix install_any::generate_automatic_stage1_params to use a
- real interface configuration
- - put authentication stuff in $net->{auth}
- - drop network::ethernet::write_ether_conf
- - drop network::adsl::get_wizard
- - use 'static' instead of 'manual' as ADSL method
- - drop first_modem and its workarounds in network::modem
- - drop deprecated "multiple_internet_cnx" step in drakconnect
- - don't save /etc/sysconfig/drakconnect anymore
- - drop MDK::Common::Globals stuff
- - drop getIP in net_applet (Pixel)
- - drop $netc->{DHCP}
- - configure_network(): write resolv.conf even if a dhcp interface is
- configured
-
- * standalone/draksplash: perl_checker fixes, make mode optionnal in
- load_image
-
- * network/ndiswrapper.pm: drop unused variable, this is done in
- detect_devices::get_sysfs_device_id_map()
-
- * install_any.pm: do not use a loop device to read ISO image IDs, read
- them directly in the file ...
- provide backward compatibility for network fields in loadO
- remove unneeded parentheses (keep first() to make it readable by
- trainees ...)
- - merge network settings in a $net hash (it modifies $o fields too):
- o $netc becomes $net->{network} and $net->{resolv}
- o $intf becomes $net->{ifcfg}
- - move zeroconf config stuff in write_zeroconf
- - read_tmdns_conf -> read_zeroconf
- - read_all_conf -> read_net_conf
- - configureNetwork2 -> configure_network
- - configure_network: write ifcfg files for ppp interfaces too
- - don't install wireless-tools in configure_network, this package is
- in basesystem
- - most functions don't need the file path as an argument in
- network::network
- - drop network::tools::remove_initscript
- - don't export too much from network::network
- - don't export from network::tools
- - remove adsl_unsupported_eci step in drakconnect
- - drop passwd2 field in network::adsl
- - drop $net->{isdn_internal}
- - network::netconnect : main -> safe_main
- - use network::netconnect::real_main during install
- - don't read network config in network::netconnect::real_main
- - install_steps::upNetwork : resolv.conf is already symlinked by
- network::network::configure_network when appropriate
- - try to fix install_any::generate_automatic_stage1_params to use a
- real interface configuration
- - put authentication stuff in $net->{auth}
- - drop network::ethernet::write_ether_conf
- - drop network::adsl::get_wizard
- - use 'static' instead of 'manual' as ADSL method
- - drop first_modem and its workarounds in network::modem
- - drop deprecated "multiple_internet_cnx" step in drakconnect
- - don't save /etc/sysconfig/drakconnect anymore
- - drop MDK::Common::Globals stuff
- - drop getIP in net_applet (Pixel)
- - drop $netc->{DHCP}
- - configure_network(): write resolv.conf even if a dhcp interface is
- configured
-
- * network/network.pm: keep NETWORKING_IPV6 and FORWARD_IPV4 variables in
- /etc/sysconfig/network
- - merge network settings in a $net hash (it modifies $o fields too):
- o $netc becomes $net->{network} and $net->{resolv}
- o $intf becomes $net->{ifcfg}
- - move zeroconf config stuff in write_zeroconf
- - read_tmdns_conf -> read_zeroconf
- - read_all_conf -> read_net_conf
- - configureNetwork2 -> configure_network
- - configure_network: write ifcfg files for ppp interfaces too
- - don't install wireless-tools in configure_network, this package is
- in basesystem
- - most functions don't need the file path as an argument in
- network::network
- - drop network::tools::remove_initscript
- - don't export too much from network::network
- - don't export from network::tools
- - remove adsl_unsupported_eci step in drakconnect
- - drop passwd2 field in network::adsl
- - drop $net->{isdn_internal}
- - network::netconnect : main -> safe_main
- - use network::netconnect::real_main during install
- - don't read network config in network::netconnect::real_main
- - install_steps::upNetwork : resolv.conf is already symlinked by
- network::network::configure_network when appropriate
- - try to fix install_any::generate_automatic_stage1_params to use a
- real interface configuration
- - put authentication stuff in $net->{auth}
- - drop network::ethernet::write_ether_conf
- - drop network::adsl::get_wizard
- - use 'static' instead of 'manual' as ADSL method
- - drop first_modem and its workarounds in network::modem
- - drop deprecated "multiple_internet_cnx" step in drakconnect
- - don't save /etc/sysconfig/drakconnect anymore
- - drop MDK::Common::Globals stuff
- - drop getIP in net_applet (Pixel)
- - drop $netc->{DHCP}
- - configure_network(): write resolv.conf even if a dhcp interface is
- configured
-
-2005/06/03 Pixel <pixel at mandrakesoft.com>
-
- * lang.pm: drop now unused variable
- during_install__l2charset() was used by share/gen_locales.sh which is
- now dropped
- update comment
- get rid of the few remaining $LD_LOADER
- for finish-install
-
- * install_steps.pm: dropping pkg_install_if_requires_satisfied() (old &
- unused)
- keyboard::setup() is better named keyboard::setup_install()
-
- * authentication.pm: read existing authentication conf (only minimal
- support for now)
- simplify
-
- * standalone/drakpxe: drop unused code (and one should use append_to_file
- instead of this outpend)
-
- * standalone/logdrake, fs/type.pm, install2.pm, raid.pm, c/stuff.xs.pl,
- standalone/drakperm: remove unused code
-
- * tools/drakx-in-chroot: don't rmdir directories in the chroot
-
- * .perl_checker: add many non perl_checker compatible modules
-
- * diskdrake/interactive.pm: remove unused isPrimary
- drop old unused code
-
- * commands.pm: drop oooold broken code
- drop oooold deprecated code
- inline old mount command which has been removed
- keyboard::setup() is better named keyboard::setup_install()
-
- * standalone/finish-install: add language selection to finish-install
- adapt to network::netconnect::real_main() prototype change
-
- * standalone/draksound: 4th parameter is not used, i suspect it's not
- useful anymore since we pass the value in {sound_slot_index}
-
- * detect_devices.pm: get rid of the few remaining $LD_LOADER
-
- * standalone/XFdrake: drop setting $_ (unused)
-
- * any.pm: get rid of the few remaining $LD_LOADER
- don't use $in->{locale} as being $o->{locale} during install, it's much
- better to pass $o->{locale}
- for finish-install
-
- * share/list.xml: more tools when debugging install
-
- * common.pm: use "our" instead of "use vars"
- drop untranslate which is unused and bad practice
-
- * keyboard.pm: DISABLE_WINDOWS_KEY in /etc/sysconfig/keyboard since it is
- unused
- (AFAIK as i, flepied and lmontel knows)
- (it was added by fpons, commit 1.108 on 2001/07/05)
- rename load() into builtin_loadkeys()
- drop obsolete code (keymaps.cz2 and xmodmap.cz2 are dead since
- make_mdkinst_stage2 was dropped)
- keyboard::setup() is better named keyboard::setup_install()
- reformat keyboard2full_xkb()
- create keyboard::configure_xorg() and use it
- (and don't call it inside a eval, no error should occur)
-
- * devices.pm: drop old unused code
-
- * standalone/net_applet: make perl_checker happy
- fix blino sux
-
- * standalone/harddrake2, standalone/drakboot, standalone/draksplash2,
- interactive/newt.pm, standalone/drakbug: make perl_checker happy
-
- * standalone/drakauth: read existing authentication conf (only minimal
- support for now)
-
- * standalone/drakups: minimal changes to make me and perl_checker happy
-
- * standalone/localedrake: use any::selectLanguage_and_more_standalone()
-
- * standalone/fileshareset: use find() (which was unused)
-
- * bootsplash.pm:
- - perl_checker compliance
- - use "our" instead of "use vars"
- simplify
-
- * bootloader.pm: remove unused old code
-
- * network/netconnect.pm: be more in drakx spirit, and more important
- perl_checker warning clean
-
- * pkgs.pm: remove unused code
- make perl_checker happy
-
- * install_steps_interactive.pm: don't use $in->{locale} as being
- $o->{locale} during install, it's much better to pass $o->{locale}
-
- * standalone/keyboarddrake: fix indentation (titi sux)
- create keyboard::configure_xorg() and use it
- (and don't call it inside a eval, no error should occur)
-
- * partition_table.pm: remove unused isPrimary
-
-2005/06/03 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * crypto.pm: The mandrakelinux-release package doesn't exist any more, so
- you can't
- deduce the version from it. Something more robust than this needs to be
- figured out.
-
- * pkgs.pm: Typo fix
-
-2005/06/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * commands.pm (dd) reuse c::
- (dd) make sysopen() call readable
-
- * c/stuff.xs.pl: remove doble
- add O_CREAT
- add O_WRONLY & O_RDWR
-
- * network/netconnect.pm: help perl_checker
- fix pixel sucks
-
-2005/06/02 Olivier Blin <oblin at mandrakesoft.com>
-
- * install_steps.pm: random service doesn't exist anymore
-
-2005/06/02 pjetur
-
- * share/po/is.po: Tidy up fuzzy messages
- Fixes and msg sync
-
-2005/06/02 Pixel <pixel at mandrakesoft.com>
-
- * keyboard.pm: make perl_checker happy
- - create keyboard::default() and use it
- - it uses keyboard::from_DMI() to get XkbModel when possible
-
- * install_steps.pm:
- - create keyboard::default() and use it
- - it uses keyboard::from_DMI() to get XkbModel when possible
- make perl_checker happy
- revert very new titi sucks
-
- * standalone/keyboarddrake:
- - create keyboard::default() and use it
- - it uses keyboard::from_DMI() to get XkbModel when possible
-
- * install_steps_interactive.pm: allow upgrading a chroot (using
- drakx-in-chroot)
-
- * Makefile: helper rule
-
- * install2.pm: read in existing modprobe.conf on upgrade (bugzilla #13309)
- allow upgrading a chroot (using drakx-in-chroot)
-
- * share/list.xml: allow "perl -d" on install
- allow "perl -d" on install
-
- * install_any.pm: allow upgrading a chroot (using drakx-in-chroot)
- create detect_devices::probe_name() &
- detect_devices::probe_unique_name() and use them
-
- * modules/any_conf.pm: read in existing modprobe.conf on upgrade (bugzilla
- #13309)
-
- * Xconfig/monitor.pm, modules.pm, detect_devices.pm,
- install_interactive.pm: create detect_devices::probe_name() &
- detect_devices::probe_unique_name() and use them
-
-2005/06/01 Pixel <pixel at mandrakesoft.com>
-
- * fsedit.pm: auto_install support for creating LABELed devices
-
- * commands.pm, share/list.xml, Makefile: use command mount instead of
- using directly the syscall (allows some cleanup)
-
- * fs/format.pm: fix typo
- set the LABEL after formatting, or drop it if we don't know how to set
- it
-
- * any.pm: allow specifying the uid and gid when creating a user (part of
- bugzilla #15190)
- add language selection to finish-install
-
- * standalone/finish-install, standalone/localedrake: add language
- selection to finish-install
-
- * Xconfig/xfree.pm: add many resolutions, but don't allow them yet
-
- * fs.pm: merge_fstabs doesn't mess around with options anymore in "loose"
- mode
- ensure reading existing fstab in suggest_mount_points doesn't get its
- options
- nicer log
- use command mount instead of using directly the syscall (allows some
- cleanup)
-
-2005/06/01 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Tape backup/restore fixes to work with new
- .backupignore scheme, +bugs.
-
-2005/06/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * install_steps.pm (miscellaneousAfter) fix very old uncatched bug
-
- * install_steps_interactive.pm (acceptLicense) fix exiting step license
-
- * interactive/gtk.pm (ask_fromW) simplify
- (ask_fromW) do not use next in callback
-
-2005/05/31 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/isdn.pm: use services::set_status
- read I4L_IDLETIME setting
- handle huptimeout setting again (I4L_IDLETIME in isdn4net)
-
- * network/netconnect.pm:
- - rename "hw_account" step as "isdn_account"
- - remove unneeded code
- - don't overwrite huptimeout value
- tag obscure isdn card settings as advanced
- if__(exists $foo, $bar) returns $bar whatever $foo is, don't try to
- make smart code that don't work (initial goal was probably to hide
- some isdn settings if they weren't set)
- really handle irq, mem, io, io0, io1 isdn paramaters (i.e. finish the
- "fix parameters reading/writin in isdn config" commit from Titi)
- handle huptimeout setting again (I4L_IDLETIME in isdn4net)
-
- * standalone/drakconnect: remove dead code
-
- * standalone/finish-install: remove unneded modules loading ('net'
- category is deprecated for ages)
-
-2005/05/31 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: updated pot file
-
-2005/05/31 Pixel <pixel at mandrakesoft.com>
-
- * lang.pm: for drakx-finish-install
-
- * standalone/drakedm: adding back translation of descriptions for some
- known display managers
-
-2005/05/31 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: update
-
-2005/05/31 willysr
-
- * share/po/id.po: Updated
-
-2005/05/30 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: move netprofile stuff in network::network
- add missing closing brace
- external isdn modems don't require the "isdn_dial_on_boot" step
- $netc->{isdntype} is unneeded
- simply isdn external modem code (remove $netcnx->{isdn_external})
- use network::thirdparty for modem devices
-
- * any.pm, network/network.pm, standalone/net_applet: move netprofile stuff
- in network::network
-
- * network/thirdparty.pm: add no_club option to specify that no club
- drivers are available (ECI)
- allow to ask for some configuration fields (useful for "device" in "rtc"
- category)
-
- * network/isdn.pm: remove unneeded comments
-
-2005/05/30 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: don't skip selectLanguage, selectKeyboard and miscellaneous
- by default in drakx-in-chroot
- remove dead code
- make drakx-in-chroot work
-
- * standalone/drakedm:
- - don't use hard written entries anymore
- - display the entries sorted as given
- - simplify code using more drakx functions
- look for *.conf
-
- * pkgs.pm: don't kill runaway processes in drakx-in-chroot since we don't
- detect wether those are runaway processes or normal processes
-
- * install_steps_interactive.pm: button "Reboot" is better called "Quit"
- for chrooted installs
-
- * install_steps.pm, tools/drakx-in-chroot, install_any.pm: make
- drakx-in-chroot work
-
-2005/05/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: fix spacing in 10.3-0.20mdk's changelog
- 10.3-0.20mdk
-
- * modules.pm (write_preload_conf) factorize modules managment
- (write_preload_conf) simplify DVB & TV managment through
- probe_category()
-
- * standalone/service_harddrake: load drivers for newly added devices so
- that they work out of the box on first
- boot after card plugging for the following categorys: AGP ATA_STORAGE
- DVB
- SATA_STORAGE SCSI_CONTROLLER TV
-
-2005/05/29 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm:
- - Support for PPD file names with spaces (bug #16172).
-
-2005/05/28 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/05/27 Olivier Blin <oblin at mandrakesoft.com>
-
- * common.pm: update comment
-
- * network/netconnect.pm, network/tools.pm, network/thirdparty.pm: initial
- import of network::thirdparty (this module factorizes the thirdparty
- software/drivers/firmwares detection and installation code, it points
- the user to the relevant packages/documentation/url if needed, and don't
- allow to configure a device if its requirements aren't satisfied)
-
-2005/05/27 Pixel <pixel at mandrakesoft.com>
-
- * standalone/drakedm: handle /etc/X11/dm.d/* entries (as proposed by Loic
- Baudry)
-
- * install_steps.pm: kderc_largedisplay() is no more needed
- kfm is gone for some time
- - since set_security doesn't depend on the bootloader password, we can
- call it where it should
- - ensure we don't drop entries from /etc/sysconfig/system
- remove unused and obsolete code
- - CLASS in /etc/sysconfig/system is deprected (is always "beginner")
- - SECURITY in /etc/sysconfig/system is unused (and always was)
-
- * drakxtools.spec: we need latest perl-MDK-Common
-
- * bootloader.pm: fix typo in comment
-
- * security/various.pm: use addVarsInSh()
-
- * install_any.pm: kderc_largedisplay() is no more needed
- kfm is gone for some time
- don't set DRAKX_PASSWORD and DURING_INSTALL for msec since msec doesn't
- care about them anymore
- replace $o->{localInstall} with $::local_install
-
- * install2.pm:
- - since set_security doesn't depend on the bootloader password, we can
- call it where it should
- - ensure we don't drop entries from /etc/sysconfig/system
-
-2005/05/27 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * pkgs.pm: Comment fixes, remove noisy log
- Remove the naming convention with a trailing "s" for supplementary CDs
- medium ids
-
- * install_any.pm: Comment fixes, remove noisy log
- Remove the naming convention with a trailing "s" for supplementary CDs
- medium ids
- Remove unused function
-
-2005/05/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * lang.pm (get_ims) rollback debug statement
- enable to select extra SCIM combinaisons: scim+anthy, scim+canna,
- scim+fcitx, scim+m17n, scim+prime, and scim+skk;
-
- * any.pm (selectCountry) fix warning and cleanup
- (selectCountry) display SCIM combinaisons in a sub menu
-
- * interactive/gtk.pm (ask_fromW) fix set/get from sub leaf of ComboBox
- with tree
-
- * drakxtools.spec: 10.3-0.19mdk
-
- * share/po/br.po: update
-
-2005/05/26 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/shorewall.pm: create $ask_shorewall_interface_label,
- shorewall_interface_choices()
- and set_net_interface() out of ask_shorewall_interface() to avoid code
- duplication
- perl_checker fixes
- better way to handle squid ports (read shorewall REDIRECT rules in
- network::shorewall::read to avoid tricks in network::shorewall::write)
- read_squid_conf() is now in network::squid
- simplify check_iptables()
-
- * standalone/drakgw: remove debug code
- check_iptables() doesn't need a $in object anymore
- add "choose_net_interface" step to have a real wizard step when asking
- net interface
- better way to handle squid ports (read shorewall REDIRECT rules in
- network::shorewall::read to avoid tricks in network::shorewall::write)
-
- * standalone/draksplash:
- - use scrollbar in preview window
- - try not to be larger than screen size minus toolbars size
- - close_window -> close_all
-
-2005/05/26 Pixel <pixel at mandrakesoft.com>
-
- * share/devices: /dev/tty is needed to debug stage2
-
- * lang.pm: for drakx-finish-install
-
- * tools/install-xml-file-list:
- - enhance script so that we don't have to list bsh
- - add bash when DEBUG_INSTALL
- - handle <if set="..."> tag
- - hide some stuff when non verbose
-
- * share/list.xml:
- - enhance script so that we don't have to list bsh
- - add bash when DEBUG_INSTALL
- - add stuff to enable perl debugging when DEBUG_INSTALL is set
- - ash is now a symlink, add bsh
-
- * Makefile.config, commands, install2, share/aliases: switch from
- /usr/bin/perl-install to /usr/lib/libDrakX
-
- * install_steps_gtk.pm, tools/drakx-in-chroot, install2.pm, modules.pm:
- replace unused $o->{localInstall} with $::local_install, partially used
- instead of $::uml_install
- and used in drakx-in-chroot
-
- * share/symlinks: /etc/termcap is needed for perl debugging
-
-2005/05/26 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Factorize and ensure checking main installation method
- Don't use the \d+s regexp on medium ids to see if that's suppl cds.
- More refactorisation
-
- * pkgs.pm: Show the "downloading hdlist" wait box only when downloading
- hdlist from a network medium
- Remove spurious field
- More refactorisation
-
- * install_steps.pm, install_steps_gtk.pm, install_steps_interactive.pm:
- More refactorisation
-
-2005/05/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.3-0.18mdk
-
- * share/rpmsrate: help emacs somewhat
- list alternative IMs so that they're on CDs (in order not to break
- updates):
-
- * interactive.pm (ask_from_normalize) since we can now use ComboBoxes with
- trees, do
- not use big TreeView instead of small ComboBox when not asked for
-
- * detect_devices.pm (getSCSI_26) fix of by one error resulting in
- misdetecing USB mass
- storage devices (#13569)
-
- * interactive/gtk.pm (ask_fromW) help perl_checker
- fix setting a combobox with a tree
- (__create_tree_model, create_treeview_tree, ask_fromW) enable to use
- ComboBoxes with trees
-
- * lang.pm: enable to select scim+uim again
- install needed packages for kinput2
-
-2005/05/25 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/05/25 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/shorewall.pm: use if_()
-
- * standalone/net_applet: let user call drakroam (#16019)
-
-2005/05/25 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_steps_gtk.pm, crypto.pm, install_any.pm,
- install_steps_interactive.pm: Begin refactorization of install medium
- handling code
-
- * pkgs.pm: Mark an argument as optional
- Begin refactorization of install medium handling code
-
-2005/05/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/rpmsrate: rollback clean_rpmsrate's changes
- install both as10k1 and ld10k1 for both snd-emu10k1 and snd-emu10k1x
- driven sound cards
-
-2005/05/24 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: remove unneeded trick since network::network
- always update NETWORK and
- BROADCAST now
-
- * network/shorewall.pm:
- - split warning out of check_iptables()
- - get_default_device() -> get_ifcfg_interface()
- - get_net_device() -> get_shorewall_interface()
- - create ask_shorewall_interface() out of default_interfaces()
- - create read_default_interfaces() to replace default_interfaces() and
- default_interfaces_silent()
- - use services::set_status() in write()
-
- * network/network.pm:
- - move read_dhcpd_conf() in network::dhcpd
- - move read_squid_conf() in network::squid
- - create update_broadcast_and_network() and force NETWORK and
- BROADCAST variables update
-
- * run_program.pm: fix return code when chroot can't be done
-
- * standalone/drakgw:
- - wizardify
- - allow not to enable DNS, dhcpd and proxy servers
- - allow not to enable CUPS broadcast
- - use @IF (network interface) instead of network address in CUPS
- configuration
-
- * network/squid.pm: initial import, move read_squid_conf() from
- network::network and split write_squid_conf() from drakgw
-
- * network/dhcpd.pm: initial import, move read_dhcpd_conf() from
- network::network and split write_dhcpd_conf() from drakgw
-
- * services.pm:
- - introduce set_status(), restart_or_start() and service_exists()
- - cleanups (use run_program success status)
-
-2005/05/24 Pixel <pixel at mandrakesoft.com>
-
- * share/devices: fix typo
-
- * pkgs.pm: ensure {needToCopy} is not dropped when calling read_rpmsrate()
- more than once
-
-2005/05/24 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Modernize, remove old code
-
-2005/05/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.3-0.17mdk
-
- * share/rpmsrate: list sb16_csp only once
-
-2005/05/23 Pixel <pixel at mandrakesoft.com>
-
- * rescue/Makefile: finish moving from list to list.xml
-
- * rescue/make_rescue_img, Makefile:
- - create kernel/RPMS/ to copy rpms before expanding them in
- kernel/all.kernels
- - remove old compatability code
- - add some doc in update_kernel
-
-2005/05/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/data.pm: use mousedrake to configure tablets & touchscreens
-
- * share/po/fr.po: typo fix (blino)
-
- * share/rpmsrate: install sb16_csp for SB sound cards
- install ld10k1 for snd-emu10k1 and snd-emu10k1x
- install hdspconf for snd-hdsp
-
-2005/05/22 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated simplified Chinese translation.
-
-2005/05/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * Xconfig/card.pm: ensure that explanations go into /var/log/explanations
- is standalone
- mode (log::explanations() just calls log::l() at install time)
- (libgl_config) only run ldconfig if needed (aka only if GL config was
- altered)
-
- * share/po/help-zh_CN.pot, share/po/bn.po, share/po/ms.po, share/po/sk.po,
- share/po/gl.po, share/po/pt_BR.po, share/po/th.po, share/po/et.po,
- share/po/ja.po, share/po/hr.po, share/po/be.po, share/po/pa_IN.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/he.po, share/po/da.po,
- share/po/ca.po, share/po/ar.po, share/po/ltg.po, share/po/nb.po,
- share/po/ky.po, share/po/uz.po, share/po/help-ru.pot, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/sc.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/uk.po, share/po/help-de.pot, share/po/mn.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/help-it.pot, share/po/tg.po,
- share/po/bs.po, share/po/fur.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/hi.po, share/po/az.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/nl.po, share/po/help-fr.pot, share/po/tl.po, share/po/de.po,
- share/po/help-es.pot, share/po/eo.po, share/po/el.po, share/po/bg.po,
- share/po/cs.po, share/po/uz@Latn.po: undo breakage
-
- * drakxtools.spec: 10.3-0.16mdk
-
- * interactive/newt.pm: fix canceling managment in text mode
-
- * share/rpmsrate: us428control usx2yloader are for devices managed by
- snd-usb-usx2y and not by snd-usb-audio
- install synaptics related packages early in the install process
- ensure sound utils got installed
- install bluez-utils only if a bluetooth device is plugged
- install joystick utils if a joystick is detected
- install kradio qtradio with KDE and gnomeradio with GNOME if a radio
- card is
- present
- do not install eroaster under KDE & GNOME since they've their own native
- burner program
- adiusbadsl has been replaced by eagle-usb in the pcitable in november
- 2004
- automatically install wireless-tools if there's a wireless card
- remove references to perl-GTK-Glade, perl-GTK-GLArea and perl-GTK-Gnome
- since
- they're obsoleted and not used by any core package
- ispell packages are gone; let's replace them by aspell ones
-
-2005/05/20 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/help-zh_CN.pot, share/po/bn.po, share/po/ms.po, share/po/sk.po,
- share/po/gl.po, share/po/pt_BR.po, share/po/th.po, share/po/et.po,
- share/po/ja.po, share/po/hr.po, install_steps_interactive.pm,
- share/po/be.po, share/po/pa_IN.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, install_steps_newt.pm, share/po/da.po, share/po/ca.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/help-ru.pot, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/sc.po,
- install_steps.pm, share/po/br.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/uk.po,
- share/po/help-de.pot, share/po/mn.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/help-it.pot, share/po/tg.po,
- install_steps_gtk.pm, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/af.po, share/po/hi.po,
- share/po/az.po, bootloader.pm, share/po/pt.po, share/po/vi.po,
- share/po/ta.po, share/po/fr.po, share/po/nl.po, share/po/help-fr.pot,
- share/po/tl.po, share/po/de.po, share/po/help-es.pot, share/po/eo.po,
- share/po/el.po, share/po/cs.po, share/po/bg.po, share/po/uz@Latn.po:
- s/Mandrivalinux/Mandriva Linux/
-
-2005/05/20 Pixel <pixel at mandrakesoft.com>
-
- * share/list.xml, commands.pm, share/aliases, Makefile, share/symlinks:
- keep binaries in their "standard" binary dir instead of moving
- everything to /usr/bin
- (it used to be in /usr/bin when the stage1 was not exited)
-
- * modules.pm: keep binaries in their "standard" binary dir instead of
- moving everything to /usr/bin
- (it used to be in /usr/bin when the stage1 was not exited)
- fix titi sux
-
- * install_any.pm: propagate postInstall and postInstallNonRooted in new
- auto_install.cfg.pl
-
-2005/05/20 willysr
-
- * share/po/id.po: Small update
- Updated
-
-2005/05/19 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated simplified Chinese translation
-
-2005/05/19 Pixel <pixel at mandrakesoft.com>
-
- * rescue/aliases, rescue/list.ia64, rescue/list, rescue/list.alpha,
- rescue/list.ppc, rescue/list.xml, rescue/list.sparc, rescue/list.x86_64,
- rescue/list.i386, rescue/make_rescue_img: use install-xml-file-list
-
- * share/list.xml, share/aliases, list.sparc:
- - insmod_ is now a symlink to insmod-25
- - handle explictly insmod, modinfo and rmmod
-
- * rescue/restore_ms_boot: rewrite using DrakX modules
-
- * bootloader.pm:
- - list the known bootloaders without checking the availability of the
- binary (useful when we don't have the root partition mounted, eg in
- restore_ms_boot)
- - tell kdm which is the installed bootloader
-
- * tools/simplify-drakx-modules: also remove modules ending with __END__
-
- * Makefile: revert wrongly committed temporary change
- - insmod_ is now a symlink to insmod-25
- - handle explictly insmod, modinfo and rmmod
-
- * tools/install-xml-file-list: many changes for use with rescue list
-
-2005/05/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/adsl.pm (adsl_detect) simplify again
- (adsl_detect) explain
- (adsl_detect) detect all ADSL modems of each kind (though drakconnect
- is able to configure only one...)
- (adsl_detect) typo fix
- (adsl_detect) detect more ADSL USB modems
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/da.po, share/po/ca.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/uk.po, share/po/mn.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/hi.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/ta.po, share/po/nl.po, share/po/tl.po, share/po/de.po,
- share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/uz@Latn.po: update cataglog
-
- * standalone/service_harddrake: uninstall DVB modules if needed
-
- * harddrake/data.pm: really list ATM devices
- fix DVB configurator
- list tablets and touchscreens in their own category
- fix detecting joysticks
- add a DVB class
- - simplify through modules::probe_category()
- - ensure modules.pm is loaded since we used it for quite some time
- list ATM, Bluetooth, WAN, USB audio devices in their own categories
- split the old joystick category into gameport (aka joystick controllers)
- and
- joystick (real joysticks devices)
-
- * standalone/harddrake2 (simple_read_rpmsrate) add support for HW_CAT
- keyword that enable to match
- a category from list_modules.pm
-
- * share/rpmsrate: install proper softwares for DVB
- kill another module list duplication thanks to the new HW_CAT keyword.
- use the HW_CAT to stop copying (twice!) and syncing bluetooth driver
- list from
- list_modules.pm
-
- * pkgs.pm (read_rpmsrate) add support for HW_CAT keyword that enable to
- match
- a category from list_modules.pm
-
- * drakxtools.spec: real 10.3-0.15mdk
- 10.3-0.15mdk
- main subpackage lacked update-menus calls since net_applet menu entry
- was added
- mandrakesoft => mandriva switch
- 10.3-0.14mdk
-
- * share/po/br.po, share/po/fr.po: update
- update cataglog
-
- * mouse.pm (detect) handle quite's more tablets and touchscreens at
- install time
-
-2005/05/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * any.pm (selectCountry) only speak about other countries if needed
-
- * interactive/newt.pm: handle 'wizcancel'
-
-2005/05/17 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/05/17 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/modem.pm: keep # and * characters in phone number (#16031)
-
- * network/netconnect.pm: use iwpriv for WPA with rt2x00 drivers (they
- don't plan to support wpa_supplicant)
-
- * standalone/drakroam: really write waproamd config files
- fix another potential security bug (#16020)
-
-2005/05/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakroam: help testing
- really fix permissions
- fix perms on /etc/wlandetect.conf (#16020)
- forward fix perms on /etc/wlandetect.conf (#16020)
-
- * drakxtools.spec: 10.3-0.13mdk
-
-2005/05/16 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakboot: add the "Create new theme" button back
- allow to choose between "text only", "verbose" and "silent" bootsplash
- modes
-
-2005/05/16 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Don't translate media types for config (#15437)
- Don't translate media types for config (#15437)
-
-2005/05/16 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * mygtk2.pm (_text_insert) append option was ignored when using simplified
- API
-
- * drakxtools.spec: 10.3-0.12mdk
-
-2005/05/13 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/network.pm: DVB support
-
- * network/netconnect.pm: DVB support
- hide DVB for now
-
-2005/05/13 Pixel <pixel at mandrakesoft.com>
-
- * c/stuff.xs.pl: add commented line to help debugging pci_probe
-
- * share/list.xml, tools/install-xml-file-list: allow makefile like
- variables
-
-2005/05/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * detect_devices.pm (getUPS) do not detect ms joystick as UPS (#15930)
-
-2005/05/12 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: reorder drakconnect first screen (to please our
- flowered bearded boss)
-
- * standalone/service_harddrake: fix PCMCIA controller reconfiguration
- (#15742)
- fix PCMCIA controller reconfiguration (#15742)
-
-2005/05/12 Pixel <pixel at mandrakesoft.com>
-
- * any.pm: default to "Custom" when group fileshare exists (bugzilla
- #15917)
-
-2005/05/12 Till Kamppeter <till at mandrakesoft.com>
-
- * install_steps.pm, share/rpmsrate:
- - Gimp-Print was renamed to Gutenprint, adapted printerdrake/DrakX
- appropriately.
-
- * scanner.pm, standalone/printerdrake:
- - Removed some remaining "Mandrake"s in printerdrake and scannerdrake.
-
- * printer/printerdrake.pm:
- - Let Gutenprint GIMP plug-in be installed by printerdrake when GIMP
- is installed.
-
- * printer/data.pm:
- - Let Gutenprint GIMP plug-in be installed by printerdrake when GIMP
- is installed.
- - Gimp-Print was renamed to Gutenprint, adapted printerdrake/DrakX
- appropriately.
-
-2005/05/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.3-0.11mdk
- one more fix in 10.2-24.102.2mdk
- 10.2-24.102.2mdk
-
- * standalone/harddrake2:
- - clean embedding stuff
- - center wait message on parent
-
- * detect_devices.pm (getUPS) fix detecting Wingman gamepad as UPS (#15750)
- (probeSerialDevices) really fix serial controllers detection (#15457)
- (probeSerialDevices) fix serial controllers detection (#15457)
- (probeSerialDevices) forward fix for serial controllers detection
- (#15457)
-
- * harddrake/data.pm: forward fix SATA & hw RAID detection by detecting
- them pior to PATA detection
-
- * share/po/br.po: update
-
-2005/05/11 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/pt.po, share/po/vi.po, share/po/sv.po: updated Swedish and
- Vietnamese file;
- corrected references to old name in Portuguese file
-
-2005/05/11 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Drop webdav support (can be mounted as a normal
- net filesystem these days)
- Remove translation on "tape" media selection (#15437)
- Rework .backupignore handling (#12352)
-
-2005/05/10 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/05/10 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/draksplash2: move rectangle2xywh(), distance(), farthest()
- and nearest() from draksplash2 to bootsplash module, create
- xywh2rectangle()
-
- * ugtk2.pm: shrink real_window
-
- * bootsplash.pm: really get default vga mode
- move rectangle2xywh(), distance(), farthest() and nearest() from
- draksplash2 to bootsplash module, create xywh2rectangle()
-
- * standalone/draksplash: shrink preview window on resolution change
- handle both silent and verbose images
- allow to modify progress bar and console box by dragging the mouse
-
-2005/05/10 Pixel <pixel at mandrakesoft.com>
-
- * share/list.i386, share/list.sparc, lang.pm, share/list.ia64,
- tools/install-xml-file-list, share/list.alpha, share/list.xml,
- share/list, share/list.x86_64, Makefile, share/list.ppc: create
- install-xml-file-list and use it to replace share/list and
- share/list.ARCH with share/list.xml
-
- * rescue/make_rescue_img:
- - handle multiple data dirs
- - choose a free data dir if the given one already exists
- fix (for list_modules.pm)
-
- * Xconfig/monitor.pm (probe_using_X): add missing chomp_
-
- * rescue/make_partimage_save_rest_all, rescue/partimage_whole_disk:
- - handle multiple data dirs
- - choose a free data dir if the given one already exists
-
-2005/05/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * lang.pm: add support for iiimf (UTUMI Hirosi <utuhiro78@yahoo.co.jp>)
-
- * drakxtools.spec: real 10.3-0.10mdk
- 10.3-0.10mdk
-
- * share/rpmsrate: install cpqarrayd on Compaq Smart Array controllers
-
-2005/05/09 Funda Wang <fundawang at linux.net.cn>
-
- * share/rpmsrate, lang.pm: Drop uim-anthy for ja locale, because the great
- improvements of scim-anthy.
- http://archives.mandrivalinux.com/cooker-i18n/2005-04/msg00052.php
-
-2005/05/09 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/draksplash: remove spurious characters
- use a separate window for image previews, use a notebook to split
- silent/verbose/console settings
- fix layout, update scale factors when the theme name is changed too
- use default values for scale settings and draw a cross inside the text
- box
-
- * standalone/drakboot: use bootsplash::get_framebuffer_resolution
-
- * bootsplash.pm: use default jpeg image path in config file for both
- silent and verbose images
- write bootsplash v3 configuration files (progress bar still missing)
- force the exact image size when writing a theme
- add get_framebuffer_resolution and create_path
- fix typos
-
-2005/05/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.3-0.9mdk
- 10.2-24.102.1mdk
-
- * standalone/draksplash: better use gtkpack__() rather than gtkadd() when
- adding multiple widgets
-
-2005/05/08 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2005/05/07 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: another small typo fixed in slovak translation
- updated slovak translation
-
-2005/05/06 Pixel <pixel at mandrakesoft.com>
-
- * mdk-stage1/Makefile.common, mdk-stage1/Makefile,
- mdk-stage1/mar/Makefile: use installed dietlibc, not our forked cvs
- version
-
-2005/05/06 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * mdk-stage1/pcmcia_/Makefile, mdk-stage1/config-stage1.h,
- mdk-stage1/newt/newt.c, mdk-stage1/newt/button.c,
- mdk-stage1/rp-pppoe/src/common.c, mdk-stage1/newt/entry.c,
- mdk-stage1/dhcp.c, mdk-stage1/newt/checkbox.c, mdk-stage1/network.c,
- mdk-stage1/directory.c, mdk-stage1/ppp/pppd/Makefile: Stage 1
- compilation fixes for gcc 4.0 :
- * more casts signed<->unsigned types
- * make choose_iso_in_directory()'s return type "void"
- * change order of .h files in network.c so strndup is included correctly
- * newt: initialize some variables properly
- * compile pcmcia and ppp with -Wno-deprecated-declarations, since they
- use
- deprecated types such as u_int32_t
-
- * install2.pm: Add missing brace
-
- * docs/HACKING: Document that dietlibc-devel is now required to build gi
-
- * resize_fat/c_rewritten.xs: gcc 4.0 was choking on lvalues of
- unpredictable type.
-
- * mdk-stage1/Makefile: Fix path of librpc.a now that we use the system's
- dietlibc
-
-2005/05/05 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/br.po: small typo error
-
-2005/05/05 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Predict NBI disk space usage and check.
- Catch failed NBI creation. (#13902)
- Catch failed dhcpd.conf creation (#13943)
- Misc small bug fixes.
-
-2005/05/04 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/draksplash: preview theme in real time, cleanups
-
- * bootsplash.pm: fix theme creation
-
- * network/netconnect.pm: remove another useless step
- ask wireless settings before boot protocol selection
- remove useless warning in install, we never override configuration
- (#10827)
-
-2005/05/04 Pixel <pixel at mandrakesoft.com>
-
- * rescue/guessmounts: don't try to mount ntfs
-
- * bootloader.pm: lilo and grub are launched chrooted, so look for them in
- $::prefix
- (it worked during install since PATH contains /mnt/sbin and the like)
-
- * rescue/partimage_whole_disk: run_program needs a proper HOME
-
-2005/05/04 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * rescue/make_rescue_img: Sometimes this tries to copy a directory
-
-2005/05/03 mareklaane
-
- * share/po/et.po: Estonian translation updated.
-
-2005/05/03 Olivier Blin <oblin at mandrakesoft.com>
-
- * install2.pm: remove obsolete code (most of these steps are anyway
- skipped in upgrade mode)
-
- * tools/patch_pcmcia_config.pl: ds has been renamed pcmcia in 2.6 kernels
-
- * standalone/drakboot, bootsplash.pm: new theme creation functions
-
- * standalone/draksplash: perl_checker fixes, use bool2yesno
- remove ugly dec2hex
-
-2005/05/03 Reinout van Schouwen <reinout at cs.vu.nl>
-
- * share/po/nl.po: Updated Dutch translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
-
-2005/05/03 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Clarify quota message, optional delete old
- backups (#15066).
- Optional mail "From" address (#15293).
- Fix automagic addition of /root to backups when not desired.
-
-2005/05/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakboot: do not garbage the console on 'wizcancel'
-
-2005/05/02 Olivier Blin <oblin at mandrakesoft.com>
-
- * detect_devices.pm, network/ethernet.pm, network/ndiswrapper.pm: fix USB
- devices detection for ndiswrapper
-
-2005/05/02 Pixel <pixel at mandrakesoft.com>
-
- * diskdrake/interactive.pm: fix displaying "Number of logical extents: %d"
- - allow resizing ext3 LV if not mounted
- - allow resizing reiserfs LV even if not mounted
-
-2005/05/02 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Update for new etherboot
-
-2005/05/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/localedrake: add comment
-
- * standalone/drakperm, standalone/harddrake2, standalone/printerdrake,
- standalone/logdrake, standalone/draksec, standalone/drakfloppy,
- standalone/drakfont, standalone/drakups: embedding cleanups resulting in
- reusing main window icon in sub dialogs
-
- * harddrake/data.pm: fix SATA & hw RAID detection by detecting them pior
- to PATA detection
-
- * standalone/drakboot: fix boot style layout
- embedding cleanups resulting in reusing main window icon in sub dialogs
-
- * drakxtools.spec: 10.3-0.8mdk
-
- * share/po/br.po: update
-
-2005/05/01 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/04/30 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: jorge
- melo + jorge
-
-2005/04/29 Frederic Crozat <fcrozat at mandrakesoft.com>
-
- * share/rpmsrate: Install epiphany-extensions when installing epiphany
-
-2005/04/29 huftis
-
- * share/po/nn.po: Translated more strings.
-
-2005/04/29 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/04/29 Keld Jørn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: updates
- indexhtml/po/da.po soft/urpmi/po/da.po
- gi/perl-install/share/po/da.po
-
-2005/04/29 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakboot: typo/perl_checker fixes
- use new bootsplash module, really split autologin and bootsplash stuff
- kill unneeded hash
- perl_checker fixes
-
- * mdk-stage1/pci-resource/update-pci-ids.pl: detect tokenring and wireless
- cards in stage1
-
- * network/tools.pm, network/test.pm: use www.mandriva.com to test
- connection
-
- * standalone/drakroam: exit and warn when no wireless interface is found
- (#15244)
- do not write blank ESSID
-
- * bootsplash.pm: initial bootsplash module
-
-2005/04/29 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.3-0.7mdk
-
-2005/04/28 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/adsl.pm: configure pppoe connections in a ppp peer file
-
-2005/04/28 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/xfree.pm: if one prefer using "Modes" instead of "Virtual", keep
- it as is
-
-2005/04/27 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, network/drakfirewall.pm, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/ltg.po, share/po/nb.po,
- share/po/ky.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/sc.po,
- share/po/br.po, share/po/sl.po, share/po/nn.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/uk.po, share/po/mn.po,
- share/po/am.po, share/po/lt.po, share/po/cy.po, share/po/tg.po,
- share/po/bs.po, share/po/fur.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/vi.po, share/po/fr.po, share/po/ta.po,
- share/po/nl.po, share/po/de.po, share/po/tl.po, share/po/eo.po,
- share/po/bg.po, share/po/cs.po, share/po/el.po, share/po/uz@Latn.po:
- Maybe the last Mandrake->Mandriva replacement.
-
-2005/04/27 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: display VPI/VCI values in decimal
- update ATM_ADDR after with VPI/VCI values
-
- * network/adsl.pm: reindent
- don't write /etc/ppp/options anymore, adjust options in peer files
-
- * share/rpmsrate: pptp-adsl is obsolete, prefer pptp-linux
-
-2005/04/27 Pixel <pixel at mandrakesoft.com>
-
- * rescue/partimage_whole_disk: after setting geometry H and S, we must
- re-compute C
- ensure we use the same geometry as used when saving
-
- * common.pm: fix mandrake_release() when called with a prefix
- allow using mandrake_release() with a prefix
-
- * rescue/install_bootloader: use module bootloader.pm to handle more
- bootloaders (esp. grub)
-
- * bootloader.pm:
- - create config_files() out of update_for_renumbered_partitions()
- - create main_method_choices() out of read()
- - create configured_main_methods() for rescue install_bootloader
- - rework update_for_renumbered_partitions()
- create install_raw_grub() and install_raw_lilo()
-
-2005/04/26 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/network.c: always initialize proxy settings
- fix typo
-
- * mdk-stage1/adsl.c: detect IP address from DSL connection
-
- * mdk-stage1/dns.c: fix dns resolution for DSL connections
- enhance logging again, re-indent
- fix typo (me sux)
- enhance logging
-
-2005/04/26 Pixel <pixel at mandrakesoft.com>
-
- * mygtk2.pm: don't use ->set_uposition anymore, use ->move instead (as
- suggested on gtk-perl mailing list)
-
- * Makefile: remove obsolete change (C_RPM and C_DRAKX are not used in
- c/stuff anymore)
- start simplifying "make stage2"
-
-2005/04/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * detect_devices.pm (getUPS) do not detect IR devices as UPSes (#15495)
-
- * share/po/br.po: add missing tags
- update
-
-2005/04/25 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * standalone/drakxtv: corrected url
-
- * share/po/cy.po: updated Welsh file
-
- * share/po/it.po, share/po/ms.po, share/po/es.po: updated Italian and
- Spanish files
-
-2005/04/25 Pixel <pixel at mandrakesoft.com>
-
- * rescue/guessmounts: rewrite using gi/perl-install modules
-
- * bootloader.pm: using c::rpmvercmp is cleaner
- fix comparing kernel version greater than 6.8
-
-2005/04/25 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/04/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakfont: bump copyrigth notice
- list myself
- damien is no more working for us
-
- * drakxtools.spec: add bug reference in 10.3-0.6mdk's changelog
- 10.3-0.6mdk
-
- * share/po/br.po: update
- sync with copyright bumping
-
- * standalone/drakfirewall, standalone/logdrake, standalone/drakpxe,
- standalone/finish-install.xsetup, standalone/drakvpn,
- standalone/drakboot, standalone/drakTermServ, standalone/net_monitor,
- standalone/drakbackup, standalone/listsupportedprinters,
- standalone/printerdrake, standalone/fileshareset, standalone/drakedm,
- standalone/drakroam, standalone/drakconnect, standalone/drakhelp,
- standalone/XFdrake, standalone/drakbug, standalone/autosetupprintqueues,
- standalone/drakupdate_fstab, standalone/draksound, standalone/drakxtv,
- standalone/draksec, standalone/drakautoinst, standalone/drakproxy,
- standalone/diskdrake, standalone/drakfloppy, standalone/drakgw,
- standalone/scannerdrake: bump copyrigth notice
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/uk.po, share/po/mn.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: sync with copyright bumping
-
-2005/04/24 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: handle errors in wireless packages installation,
- simplify
- allow to disable WPA even if no key is used
- fix WPA key
-
- * network/wireless.pm: handle errors in wireless packages installation,
- simplify
- fix WPA key
-
-2005/04/23 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * standalone/harddrake2, standalone/drakfont: mandrakesoft.com ->
- mandriva.com
-
- * share/po/ms.po, share/po/pt_BR.po, share/po/th.po, share/po/be.po,
- share/po/pa_IN.po, share/po/ko.po, share/po/sr.po, share/po/pl.po,
- share/po/ca.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/nn.po, share/po/tr.po,
- share/po/ga.po, share/po/am.po, share/po/tg.po, share/po/fur.po,
- share/po/ta.po, share/po/fr.po, share/po/tl.po, share/po/uz@Latn.po:
- various Mandrake -> Mandriva changes
- updated po files
-
- * standalone/draksound: s/www.linux-mandrake.com/www.mandrivalinux.com/
-
- * share/po/zh_CN.po: more Mandrake -> Mandriva changes
- various Mandrake -> Mandriva changes
-
- * standalone.pm: mandrakelinux -> Mandriva Linux
-
- * share/advertising/25.pl, standalone/logdrake, share/advertising/02.pl,
- standalone/net_monitor, share/advertising/27.pl,
- network/drakfirewall.pm, share/advertising/08.pl, standalone/drakedm,
- share/advertising/30.pl, share/advertising/10.pl,
- share/advertising/18.pl, standalone/drakconnect, standalone/drakhelp,
- share/advertising/01.pl, standalone/drakbug, network/adsl.pm,
- printer/printerdrake.pm, help.pm, share/advertising/29.pl,
- share/advertising/07.pl, share/advertising/09.pl,
- share/advertising/04.pl, share/advertising/28.pl,
- install_interactive.pm, share/advertising/26.pl, any.pm,
- share/advertising/06.pl, share/advertising/03.pl, standalone/net_applet,
- share/advertising/11.pl, share/advertising/05.pl,
- standalone/scannerdrake: s/Mandrivalinux/Mandriva Linux/
-
- * install_messages.pm: s/www.mandrakelinux.com/www.mandrivalinux.com/
- s/Mandrivalinux/Mandriva Linux/
-
- * share/po/bn.po, share/po/gl.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/fi.po, share/po/he.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/br.po, share/po/mt.po,
- share/po/mn.po, share/po/lt.po, share/po/cy.po, share/po/bs.po,
- share/po/mk.po, share/po/is.po, share/po/af.po, share/po/hi.po,
- share/po/az.po, share/po/nl.po, share/po/de.po, share/po/eo.po,
- share/po/bg.po, share/po/cs.po, share/po/el.po: more Mandrake ->
- Mandriva changes
- various Mandrake -> Mandriva changes
- updated po files
-
- * share/po/sk.po, share/po/DrakX.pot, share/po/sv.po, share/po/zh_TW.po,
- share/po/sc.po, share/po/ru.po, share/po/sl.po, share/po/uk.po,
- share/po/wa.po, share/po/pt.po, share/po/vi.po: various Mandrake ->
- Mandriva changes
-
-2005/04/23 willysr
-
- * share/po/id.po: Updated
-
-2005/04/22 willysr
-
- * share/po/id.po: Updated
-
-2005/04/21 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/04/21 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/wireless.c: set SSID after all other settings, improve text,
- fix cast
-
- * standalone/drakroam: fix Signal Quality parsing (and re-indent)
-
- * mdk-stage1/dhcp.c: support DHCP over Wireless, Token Ring (great),
- Firewire, you name it
- borrow some comments from pump
-
- * mdk-stage1/probing.c: use /proc/net/dev to detect network interfaces,
- instead of testing a limited set of interface names
-
-2005/04/21 Pixel <pixel at mandrakesoft.com>
-
- * rescue/drvinst: use detect_devices and simplify
-
- * Makefile: use simplify-drakx-modules
-
- * rescue/make_rescue_img: use get-needed-drakx-modules to handle perl
- scripts using DrakX modules
-
- * rescue/list.i386: dmidecode is useful
-
- * tools/simplify-drakx-modules, tools/get-needed-drakx-modules: add some
- scripts used in perl-install/Makefile and rescue/make_rescue_img
-
- * common.pm, install_any.pm: create common::release_file() and use it
-
- * fs/type.pm: perl_checker fix
- create true_local_fs_types() out of isTrueLocalFS()
-
- * log.pm: ensure the log is flushed ASAP when using a local file
-
-2005/04/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: switch from MandrakeSoft to Mandriva
- update
- update
- update
- update string for new drakroam
-
- * share/advertising/25.pl, install_steps_interactive.pm,
- standalone/finish-install.xsetup, share/advertising/27.pl,
- share/po/help-ru.pot, share/advertising/08.pl, share/advertising/10.pl,
- share/advertising/18.pl, share/compssUsers.pl, network/adsl.pm, help.pm,
- install_steps.pm, share/advertising/29.pl, share/advertising/07.pl,
- share/advertising/09.pl, share/advertising/13-b.pl,
- share/po/help-de.pot, share/advertising/04.pl, crypto.pm,
- network/test.pm, install_interactive.pm, share/advertising/26.pl,
- standalone/net_applet, bootloader.pm, share/advertising/05.pl,
- share/po/help-fr.pot, share/po/help-es.pot, share/po/help-zh_CN.pot,
- share/advertising/02.pl, network/drakfirewall.pm, install_steps_newt.pm,
- share/advertising/30.pl, share/advertising/01.pl,
- share/advertising/28.pl, share/po/help-it.pot, any.pm,
- install_steps_gtk.pm, share/advertising/03.pl, share/advertising/06.pl,
- share/advertising/13-a.pl, install_messages.pm,
- Xconfig/resolution_and_depth.pm, share/advertising/11.pl: switch from
- MandrakeSoft to Mandriva
-
- * standalone/scannerdrake: switch from MandrakeSoft to Mandriva in
- scannerdrake & printerdrake
- switch from MandrakeSoft to Mandriva in copyright notices
-
- * standalone/drakbackup: switch from MandrakeSoft to Mandriva in copyright
- notices
- improve layout
- (filedialog_generic) switch to gtk+-2.6's new file selector
-
- * standalone/drakboot, standalone.pm, standalone/drakedm,
- standalone/drakhelp, standalone/logdrake, standalone/net_monitor,
- standalone/drakconnect, standalone/drakbug: switch from MandrakeSoft to
- Mandriva
- switch from MandrakeSoft to Mandriva in copyright notices
-
- * standalone/drakfirewall, standalone/drakpxe, standalone/drakvpn,
- standalone/drakTermServ, standalone/listsupportedprinters,
- standalone/printerdrake, standalone/fileshareset, standalone/XFdrake,
- standalone/drakupdate_fstab, scanner.pm, standalone/drakproxy,
- standalone/drakfloppy, mouse.pm, standalone/autosetupprintqueues,
- standalone/draksound, standalone/drakxtv, standalone/drakautoinst,
- standalone/diskdrake, standalone/drakgw: switch from MandrakeSoft to
- Mandriva in copyright notices
-
- * printer/printerdrake.pm: switch from MandrakeSoft to Mandriva
- switch from MandrakeSoft to Mandriva in scannerdrake & printerdrake
-
- * standalone/draksplash: switch to gtk+-2.6's new file selector
-
- * standalone/drakperm: perl_checker cleanups
- (row_setting_dialog) set dialog's title (usability bug)
-
- * share/po/af.po: fix doble messages
- switch from MandrakeSoft to Mandriva
- update
- sync LAN string
- update string for new drakroam
-
- * share/po/Makefile: remove useless merge2 rule
-
- * share/po/ja.po, share/po/sv.po, share/po/fi.po, share/po/ca.po,
- share/po/eu.po, share/po/id.po, share/po/mt.po, share/po/uk.po,
- share/po/tg.po, share/po/pt.po, share/po/vi.po, share/po/tl.po,
- share/po/gl.po, share/po/sk.po, share/po/pl.po, share/po/da.po,
- share/po/ar.po, share/po/nb.po, share/po/it.po, share/po/ru.po,
- share/po/nl.po: switch from MandrakeSoft to Mandriva
- update
- sync LAN string
- update string for new drakroam
-
- * share/po/fr.po, share/po/cy.po: switch from MandrakeSoft to Mandriva
- update
- update
- sync LAN string
- update string for new drakroam
-
- * standalone/drakfont: switch from MandrakeSoft to Mandriva in copyright
- notices
- inline useless create_fontsel()
-
- * network/netconnect.pm: switch from MandrakeSoft to Mandriva
- rename "ethernet connection" as "LAN connection" like anywhere since
- we're going to support tokenring and not just LAN (what's more, these
- steps are whered with wireless connections which have nothing to do
- with ethernet....)
-
- * drakxtools.spec: 10.3-0.5mdk
- 10.3-0.4mdk
- 10.3-0.3mdk
-
- * standalone/drakroam (ConnectNow) simplify
- (ConnectNow) simplify
- (UpdateStatus) improve layout
-
- * share/po/ms.po, share/po/pt_BR.po, share/po/et.po, share/po/sr.po,
- share/po/ltg.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/es.po, share/po/lv.po, share/po/ga.po, share/po/lt.po,
- share/po/mk.po, share/po/fur.po, share/po/de.po, share/po/bg.po,
- share/po/el.po, share/po/uz@Latn.po, share/po/bn.po, share/po/th.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/DrakX.pot,
- share/po/ko.po, share/po/he.po, share/po/ky.po, share/po/zh_CN.po,
- share/po/sq.po, share/po/sr@Latn.po, share/po/hu.po, share/po/fa.po,
- share/po/sc.po, share/po/sl.po, share/po/nn.po, share/po/tr.po,
- share/po/mn.po, share/po/am.po, share/po/bs.po, share/po/wa.po,
- share/po/is.po, share/po/hi.po, share/po/az.po, share/po/ta.po,
- share/po/eo.po, share/po/cs.po: switch from MandrakeSoft to Mandriva
- update
- update string for new drakroam
-
-2005/04/20 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/ethernet.pm: we do want to use sysfs if ethtool fails
-
- * mdk-stage1/Makefile, mdk-stage1/network.c, mdk-stage1/wireless.h:
- initial wireless support (needs ESSID, and optionally a WEP key)
-
- * network/netconnect.pm: allow to choose the wireless encryption mode
- between "None", "Open WEP", "Restricted WEP" and "WPA Pre-Shared Key"
- move ndiswrapper stuff in network::ndiswrapper
- unload ndiswrapper first so that the newly installed .inf files will be
- read
- redetect interfaces after ndiswrapper setup (so that the ndiswrapper
- module can be detected)
-
- * mdk-stage1/wireless.c: fix hex key parsing
- initial wireless support (needs ESSID, and optionally a WEP key)
-
- * install_any.pm: do not care about the ISO volume name if it doesn't end
- in -Disc\d+
- handle DVD ISO images too (so that they get added installed for urpmi)
-
- * network/wireless.pm, network/ndiswrapper.pm: allow to choose the
- wireless encryption mode between "None", "Open WEP", "Restricted WEP"
- and "WPA Pre-Shared Key"
- move ndiswrapper stuff in network::ndiswrapper
-
-2005/04/20 Pixel <pixel at mandrakesoft.com>
-
- * rescue/make_partimage_save_rest_all: add a check
-
-2005/04/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakfont (font_choice) filter file list so that only fonts
- are displayed
- switch to gtk+-2.6's new file selector
-
- * network/ndiswrapper.pm (setup_device) move comment where it's
- appropriate
-
- * drakxtools.spec: 10.3-0.2mdk
-
-2005/04/19 Keld Jørn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: updates
- indexhtml/po/da.po soft/drakstats/po/da.po
- soft/mdkonline/po/da.po gi/perl-install/share/po/da.po
-
-2005/04/19 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/ethernet.pm: fix typo
- fix Titi sux (we do want to use sysfs if ethtool fails)
- do not write zeroed MAC addresses in iftab, it confuses ifrename
-
- * standalone/drakroam: fix SSID listing
- fix SSID listing
-
- * network/tools.pm: move wireless stuff in wireless.pm
- do not crash if modprobe fails
- do not show empty ndiswrapper devices list
-
- * mouse.pm: fix simplification ..
- simplify again (Pixel)
- kill unused variable, simplify
- using same mouse for alternate_install should be useless
- remove it for xbox controller, thus making this option obsolete
- fix me sucks
- always set synaptics touchpad as secondary and don't list them in
- mousedrake
-
- * network/netconnect.pm: simplify
- fix ancient bug (Managed should be the default wireless mode, not
- Secondary) and simplify
- really use given encryption key
- network::wireless is needed for wireless configuration
- fix typo
- improve ndiswrapper driver configuration (allow to select driver, device
- and many errors handling)
- fix missing step
- move wireless stuff in wireless.pm
- do not show empty ndiswrapper devices list
- unload ndiswrapper first so that the newly installed .inf files will be
- read
-
- * network/wireless.pm: improve ndiswrapper driver configuration (allow to
- select driver, device and many errors handling)
- convert_key_for_wpa_supplicant is now in network::wireless
- move wireless stuff in wireless.pm
-
- * install_steps_gtk.pm: using same mouse for alternate_install should be
- useless
- remove it for xbox controller, thus making this option obsolete
-
- * network/network.pm: move wireless stuff in wireless.pm
-
-2005/04/19 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ky.po, share/po/de.po: updated Kirghiz file
-
-2005/04/19 Pixel <pixel at mandrakesoft.com>
-
- * rescue/partimage_whole_disk:
- - ".lst" makes the file hidden, use "lst" instead
- - default timeout is much too short
-
- * rescue/install_bootloader, rescue/guessmounts, rescue/drvinst: mandriva
- switch
-
- * Xconfig/resolution_and_depth.pm: suggest 1280x1024 instead of 1280x960
- which causes pbs
-
- * rescue/restore_ms_boot: update copyright
-
- * rescue/make_partimage_save_rest_all:
- - allow specifying something else than /data/box
- - acpi=ht by default
-
- * diskdrake/interactive.pm: fix comment
-
- * rescue/rescue-doc: switch to mandriva
-
- * rescue/lsparts: remove redundancy using gi/perl-install pms
- mandriva switch
-
-2005/04/19 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/04/18 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/net_applet: increase network check timeout to lower the load
- remove useless assignments
-
- * network/netconnect.pm: clean includes
- merge wireless steps and move advanced settings in advanced mode
- (#15501)
- configure wpa driver in drakconnect, wpa_supplicant init script is
- dropped
-
- * mdk-stage1/config-stage1.h, mdk-stage1/network.c: move defines
-
- * network/tools.pm: replace to_bool(grep) call with any
-
- * mouse.pm: preselect synaptics touchpad if no external mouse is present
- use detect_devices::getSynapticsTouchpads() to detect touchpads
- always configure an universal mouse so that USB mices can be hotplugged
-
- * network/isdn.pm: remove useless includes
-
- * network/shorewall.pm: fix automatic net interface detection
- fix automatic net interface detection
-
- * network/network.pm: configure wpa driver in drakconnect, wpa_supplicant
- init script is dropped
-
- * detect_devices.pm: perl_checker fix
- space fix
- add getSynapticsTouchpads()
-
- * modules.pm: append evdev in modprobe.preload if a touchpad is detected
- use better laptop detection now that dmidecode is used
-
-2005/04/18 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * keyboard.pm: added/modified various keyboards on the list (for next
- update of xorg-x11)
-
- * share/po/be.po, share/po/bn.po, share/po/ms.po, share/po/ko.po,
- share/po/ro.po, share/po/pl.po, share/po/gl.po, share/po/he.po,
- share/po/cy.po, share/po/af.po, share/po/et.po, share/po/eo.po,
- share/po/hr.po, share/po/el.po, share/po/sq.po: updated Welsh file;
- fixed some menu errors
-
-2005/04/18 rstandtke
-
- * share/po/de.po: some fixes
-
-2005/04/16 huftis
-
- * share/po/nn.po: Translated a few strings.
-
-2005/04/15 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/04/15 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/config-stage1.h: new domain name
-
- * mdk-stage1/thirdparty.c: really try to list partitions on USB keys or
- hard disks
-
- * mdk-stage1/directory.c: enlarge directory list
-
-2005/04/15 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_steps_gtk.pm, install_any.pm: Change the name of the directory
- where the rpms are copied
-
- * crypto.pm: Update the name of the update media added by the installer
-
-2005/04/15 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.3-0.1mdk
-
- * standalone/harddrake2: perl_checker cleanups
-
-2005/04/14 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/04/14 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: allow to modify METRIC settings in the wizard
-
-2005/04/14 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * pkgs.pm, install_any.pm: When re-using the rpmsrate and compssUsers.pl
- from a supplementary media,
- always retrieve them locally in /tmp, instead of choosing the main
- install
- method (this wasn't working for http installs)
-
-2005/04/14 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: fix typo in drakxservices' description
-
- * share/po/br.po: update
- update
-
-2005/04/14 Youcef Rabah Rahal <rahal at arabeyes.org>
-
- * share/po/ar.po: sync'ed with Arabeyes CVS
-
-2005/04/13 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakconnect: use get_interface_type() to decide if the wifi
- settings page should be displayed
-
- * network/tools.pm: consider a device as wifi even if it isn't plugged
- (useful in manage wizard)
-
-2005/04/13 Pixel <pixel at mandrakesoft.com>
-
- * partition_table/raw.pm: create default_type() out of zero_MBR()
-
- * rescue/make_partimage_save_rest_all: fix typo
-
- * rescue/make_rescue_img, rescue/partimage_whole_disk: we now use script
- partimage_whole_disk around partimage
-
- * resize_fat/any.pm: remove old debug code
-
- * log.pm: cleanup and allow openLog() to force the log file
-
- * rescue/list.i386: add ntfsresize
-
- * rescue/tree/etc/rc.sysinit: mount /sys
-
-2005/04/13 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Remount CD1 if we cancel insertion of a supplementary CD
- Eject CD-Rom when installation is finished
-
- * install_steps.pm: Eject CD-Rom when installation is finished
-
-2005/04/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * any.pm (autologin) make autologin choice more user friendly (#4304)
-
- * drakxtools.spec: fix 10.2-16mdk's changelog
-
-2005/04/12 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm, detect_devices.pm, network/tools.pm,
- standalone/drakconnect: use sysfs as fallback to detect wireless
- interfaces (rt2x00/prism2_*)
-
-2005/04/12 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * keyboard.pm: put text back
- enabled kirghiz console kbd
-
- * share/po/br.po: removing and re-adding file
- removing and re-adding file
- updated po file
-
-2005/04/12 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * network/tools.pm: Fix running ifup/ifdown not in chroot
- Need to specify the full path of ifup/ifdown when a shell isn't used to
- run them
-
-2005/04/12 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: fix direct-to-tape backup/restore issues (#15293)
-
-2005/04/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.2-24mdk
-
- * share/po/br.po: update
-
-2005/04/12 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: Remove the duplicates for a320raid
- Workarround for clean-rpmsrate regexp pb
-
-2005/04/12 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * network/tools.pm: Fix running ifup/ifdown not in chroot
- Need to specify the full path of ifup/ifdown when a shell isn't used to
- run them
-
-2005/04/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.2-24mdk
-
-2005/04/12 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: Remove the duplicates for a320raid
- Workarround for clean-rpmsrate regexp pb
-
-2005/04/12 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * network/tools.pm: Fix running ifup/ifdown not in chroot
- Need to specify the full path of ifup/ifdown when a shell isn't used to
- run them
-
- * install_any.pm: When installing urpmi, mark cd-rom media as "static" so
- they never get
- updated. This is needed because those media use hdlists, but the hdlist
- path is false for all CDs except the first one.
-
-2005/04/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.2-24mdk
-
- * share/po/br.po: update
-
-2005/04/12 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: Remove the duplicates for a320raid
- Workarround for clean-rpmsrate regexp pb
-
-2005/04/11 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: fix error reporting for ndiswrapper package
- installation (#15373)
- handle spaces in ndiswrapper drivers path
-
- * standalone/drakroam: handle ESSID with spaces (#15352)
-
-2005/04/11 Pixel <pixel at mandrakesoft.com>
-
- * do_pkgs.pm: have a valid return value in
- ->ensure_is_installed_if_available
-
- * bootloader.pm: fix setting perImageAppend to default entry {append}
- (it was buggy when the default entry had an empty append, making
- perImageAppend be failsafe on amd64 upgrade)
-
- * pkgs.pm: the standard kernel is bigmem compliant, no need to install
- kernel-smp for this (bugzilla #15353)
-
-2005/04/11 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * crypto.pm: Change the URL of the mirrorsfull.list for installation of
- the updates
-
-2005/04/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.2-23mdk
-
-2005/04/10 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/04/08 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/04/08 Olivier Blin <oblin at mandrakesoft.com>
-
- * harddrake/data.pm: with harddrake crash with USB/PCI DSL modems (#15034)
-
-2005/04/08 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/xfree.pm: ugly hack to fix empty ModeLine lines, XFdrake seems
- to generate some, but where???
- at least this allows fixing the pb by re-running XFdrake
- 1152x864 needs more modelines than the poor 1152x864@75Hz builtin xorg
- (bugzilla #11698)
-
-2005/04/08 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Supplementary cd-roms weren't marked as supplementary.
- Fix this.
- Don't copy rpms that come from any sort of supplementary media.
- More heuristics to figure out the CD / DVD number from its name, used
- for the copy of media to the local HD.
-
- * pkgs.pm: When sorting CDs, put supplementary CDs at the end
-
-2005/04/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.2-22mdk
-
-2005/04/08 Warly <warly at mandrakesoft.com>
-
- * share/logo-mandrake.png: new install module
-
-2005/04/08 Olivier Blin <oblin at mandrakesoft.com>
-
- * harddrake/data.pm: with harddrake crash with USB/PCI DSL modems (#15034)
-
- * network/netconnect.pm: add some comments for post 10.2
-
-2005/04/08 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: updates from Eskild Hustvedt:)
-
-2005/04/08 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: do the edid probe before launching X server (the way it was
- already done for i810fb)
-
- * any.pm: XF86Config-4 doesn't exist anymore, no need logging it
-
- * Xconfig/xfree.pm: ugly hack to fix empty ModeLine lines, XFdrake seems
- to generate some, but where???
- at least this allows fixing the pb by re-running XFdrake
- 1152x864 needs more modelines than the poor 1152x864@75Hz builtin xorg
- (bugzilla #11698)
-
-2005/04/08 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Don't copy rpms that come from any sort of supplementary
- media.
- More heuristics to figure out the CD / DVD number from its name, used
- for the copy of media to the local HD.
-
- * pkgs.pm: When sorting CDs, put supplementary CDs at the end
-
-2005/04/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.2-22mdk
-
-2005/04/08 Warly <warly at mandrakesoft.com>
-
- * share/logo-mandrake.png: new install module
-
-2005/04/08 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: add some comments for post 10.2
-
-2005/04/08 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: do the edid probe before launching X server (the way it was
- already done for i810fb)
-
- * any.pm: XF86Config-4 doesn't exist anymore, no need logging it
-
-2005/04/07 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/probing.h, mdk-stage1/thirdparty.c, mdk-stage1/probing.c:
- - add probing_detect_devices() to keep existing pci devices in an
- array
- - allow to use external third-party pcitable
- - modules in to_detect (thirdparty install) are now compared to
- external third-par ty pcitable first, then to built-in pcitable
-
- * network/netconnect.pm: always restart slmodem, even if it was already
- installed
-
-2005/04/07 Pixel <pixel at mandrakesoft.com>
-
- * install_steps.pm, install_steps_interactive.pm: handle third party
- modules from various devices
- (at least floppy is still working :)
-
-2005/04/07 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.2-21mdk
-
-2005/04/07 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakroam: add some comment
- hide roaming frame by default, not tested
- don't truncate default gateway (#15247)
-
- * standalone/net_applet: fix refresh (forget erased settings)
-
- * mdk-stage1/thirdparty.h, mdk-stage1/thirdparty.c: export
- THIRDPARTY_DEVICE and THIRDPARTY_DIR for stage2
-
- * network/netconnect.pm: always restart slmodem, even if it was already
- installed
- cosmetics
- create correct /dev/modem for HCF modems
- use correct package name for HCF modems
- fix h[cs]f fix
-
- * network/tools.pm: net_applet: really allow users to start connection
- without having to
- type the root password
- run ifup/ifdown with run_program::raw and detach, so that pppd doesn't
- complain about invalid tty
-
-2005/04/07 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * lang.pm: sent utf-8 by default for languages that only use plain ascii,
- and for newly added or with few users languages.
-
-2005/04/07 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm: handle third party modules from various
- devices
- (at least floppy is still working :)
-
- * install_steps.pm: handle third party modules from various devices
- (at least floppy is still working :)
- workaround weird old code (bugzilla #15300)
-
-2005/04/07 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Add a trace
-
-2005/04/07 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Sort the nic list for nbis.
-
-2005/04/07 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.2-21mdk
-
-2005/04/06 Olivier Blin <oblin at mandrakesoft.com>
-
- * share/list, share/aliases: ship rmmod binary since insmod from
- module-init-tools isn't combined with rmmod
-
-2005/04/06 Pixel <pixel at mandrakesoft.com>
-
- * any.pm: monitor-edid needs /dev/zero when fallbacking on lrmi
-
- * install2.pm: leave bootsplash when X is up (and also in newt and
- auto_install)
-
- * install_gtk.pm: fix position of steps window in direction rtl (bugzilla
- #15261)
-
-2005/04/06 Olivier Blin <oblin at mandrakesoft.com>
-
- * do_pkgs.pm: now that I know how to short-circuit it, make it work as
- well
- (have I already said I sux ?)
- use short-circuit operator (/me sux, thanks Pixel)
-
- * share/list, share/aliases: ship rmmod binary since insmod from
- module-init-tools isn't combined with rmmod
-
-2005/04/06 Pixel <pixel at mandrakesoft.com>
-
- * any.pm: monitor-edid needs /dev/zero when fallbacking on lrmi
-
- * install2.pm: leave bootsplash when X is up (and also in newt and
- auto_install)
- when re-ordering the steps to have doPartitionDisks just after
- selectInstallClass in case of upgrade, do it properly so that the
- "Partitioning lamp" behaves properly (bugzilla #15040)
-
- * install_any.pm: make the auto_inst.cfg more valid in report.bug.gz, and
- add a warning
-
- * install_gtk.pm: fix position of steps window in direction rtl (bugzilla
- #15261)
-
-2005/04/06 Warly <warly at mandrakesoft.com>
-
- * share/logo-mandrake.png: LE-2005 logo
-
-2005/04/06 Pixel <pixel at mandrakesoft.com>
-
- * install_any.pm: make the auto_inst.cfg more valid in report.bug.gz, and
- add a warning
-
-2005/04/06 Warly <warly at mandrakesoft.com>
-
- * share/logo-mandrake.png: LE-2005 logo
-
-2005/04/05 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/network.pm: remove useless and unwanted non-ASCII character
-
- * mouse.pm: really apply specific ALPS touchpad settings (#14510)
-
- * modules.pm: don't load modules.cz in uml install
-
- * standalone/net_monitor: perl_checker, indent
- detect more devices (e.g. wireless)
-
- * drakxtools.spec: 10.2-20mdk
-
- * network/netconnect.pm: support more slmodems
-
- * do_pkgs.pm: install dkms packages if found
-
- * standalone/drakroam: do not crash if no essid is selected (partially fix
- #15244)
- hide unavailable features, add close button
-
- * network/adsl.pm: please perl_checker
- replace non-ASCII characters
-
- * network/tools.pm: improve wifi detection
-
-2005/04/05 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * lang.pm: corrected small typo
-
- * share/po/eu.po: updated Basque file
-
-2005/04/05 pmaryanov
-
- * share/po/ru.po: updated
-
-2005/04/05 Pixel <pixel at mandrakesoft.com>
-
- * lang.pm: since we have a non-ascii font name, we have to "use utf8"
- check(): only display "Errors:" if there is some errors
-
- * rescue/list: revert adding Compress::Zlib
-
- * install_steps.pm: remove accentuated char
-
- * standalone/draksplash, share/advertising/22.pl, share/advertising/10.pl,
- standalone/drakpxe, share/advertising/05.pl, share/advertising/21.pl,
- share/advertising/28.pl, share/advertising/14.pl,
- share/advertising/24.pl:
- - remove non useful non-ascii characters
- - add "use utf8" for useful utf8 characters
-
- * ugtk2.pm: replace the latin-charset unbreakable space with a "use utf8"
- and the utf8 unbreakable space
-
- * install_any.pm: media_browser is returning a file, not a file handle,
- /me is bad :-/
-
- * Makefile: the keyboard check is always failing, can't make pablo have it
- right, so not checking it by default
- (that way we can have the "make check" in gi call "make check" in
- gi/perl-install)
- check the presence of non ascii characters in perl files (allow utf8
- chars if there is 'use utf8')
-
- * printer/main.pm: replace non ascii char
-
-2005/04/05 Reinout van Schouwen <reinout at cs.vu.nl>
-
- * share/po/nl.po: Updated Dutch translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
-
-2005/04/05 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * crypto.pm: Add new countries to match the mirror list
- Update mirror list
-
-2005/04/05 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2005/04/05 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/network.pm: remove useless and unwanted non-ASCII character
-
- * network/adsl.pm: please perl_checker
- replace non-ASCII characters
-
-2005/04/05 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sv.po: updated Swedish file
-
-2005/04/05 Pixel <pixel at mandrakesoft.com>
-
- * standalone/draksplash, share/advertising/22.pl, share/advertising/10.pl,
- standalone/drakpxe, share/advertising/05.pl, share/advertising/21.pl,
- share/advertising/28.pl, share/advertising/14.pl,
- share/advertising/24.pl:
- - remove non useful non-ascii characters
- - add "use utf8" for useful utf8 characters
-
- * ugtk2.pm: replace the latin-charset unbreakable space with a "use utf8"
- and the utf8 unbreakable space
-
- * install_any.pm: media_browser is returning a file, not a file handle,
- /me is bad :-/
-
- * bootloader.pm: apply patch from bugzilla #15216, adding support for
- "password=..." and "restricted" at per-entry level (thanks to jarfil)
-
- * Makefile: the keyboard check is always failing, can't make pablo have it
- right, so not checking it by default
- (that way we can have the "make check" in gi call "make check" in
- gi/perl-install)
- check the presence of non ascii characters in perl files (allow utf8
- chars if there is 'use utf8')
-
- * lang.pm: check(): only display "Errors:" if there is some errors
-
- * rescue/list: revert adding Compress::Zlib
-
- * install_steps.pm: remove accentuated char
-
- * printer/main.pm: replace non ascii char
-
-2005/04/04 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/stage1.c, mdk-stage1/thirdparty.h, mdk-stage1/thirdparty.c:
- add thirdparty_load_media_modules(), try to find third party modules on
- the install media
-
- * mdk-stage1/probing.h, mdk-stage1/probing.c: allow to keep track of
- orphan devices (no module available)
-
- * drakxtools.spec: 10.2-19mdk
-
-2005/04/04 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * keyboard.pm, share/keyboards.tar.bz2: included/fixed some xmodmap files
-
- * share/po/gl.po: updated Galician
-
-2005/04/04 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Try to guess the device associated with the CD-ROM when
- installing urpmi
- (bug 14395)
-
-2005/04/04 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm, printer/printerdrake.pm:
- - Fixed bug #4319: Printer options cannot be set after renaming the
- printer or changing the connection type
- - Fixed bug of PostScript printers with manufacturer-supplied PPD
- cannot
- be renamed at all
- - Fixed bug of print queue being deleted when renaming fails
- - Fixed bug of printerdrake trying to open a message window when
- non-interactive queue generation fails
- - Fixed pre-definition of $printer->{ARGS}, this bug made printerdrake
- crashing sometimes
-
-2005/04/04 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/thirdparty.h, mdk-stage1/thirdparty.c, mdk-stage1/stage1.c:
- add thirdparty_load_media_modules(), try to find third party modules on
- the install media
-
- * network/netconnect.pm: disconnect internet interface before trying to
- reconnect (or else some
- nasty pppd and pppoa may be still alive)
-
- * detect_devices.pm: getNet(): only up wireless devices
-
- * mdk-stage1/probing.h, mdk-stage1/probing.c: allow to keep track of
- orphan devices (no module available)
-
- * network/adsl.pm: do not reload firmware on eagle-usb modems if already
- done
-
- * drakxtools.spec: 10.2-19mdk
-
-2005/04/04 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Try to guess the device associated with the CD-ROM when
- installing urpmi
- (bug 14395)
- /me sux
-
-2005/04/04 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm, printer/printerdrake.pm:
- - Fixed bug #4319: Printer options cannot be set after renaming the
- printer or changing the connection type
- - Fixed bug of PostScript printers with manufacturer-supplied PPD
- cannot
- be renamed at all
- - Fixed bug of print queue being deleted when renaming fails
- - Fixed bug of printerdrake trying to open a message window when
- non-interactive queue generation fails
- - Fixed pre-definition of $printer->{ARGS}, this bug made printerdrake
- crashing sometimes
-
-2005/04/04 Olivier Blin <oblin at mandrakesoft.com>
-
- * detect_devices.pm: getNet(): only up wireless devices
-
-2005/04/04 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/it.po, share/po/fr.po: updated French and Italian files
-
- * share/po/de.po: updated German file
-
-2005/04/04 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: /me sux
- Don't ask for the same cd to be reinserted when copying rpms on disk
- Introduce the new utility function getCDNumber()
-
- * install_steps_gtk.pm: Introduce the new utility function getCDNumber()
-
-2005/04/04 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: small fix in /boot/message-text
-
-2005/04/03 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * pixmaps/langs/lang-qu.png, lang.pm: Enabled choice of Guarani, Quichua
- and Berber (tifinagh) at install time;
- changed various encoding names internally used for font choosing from
- language based to encoding based (following iso-15924 naming)
-
-2005/04/03 Pixel <pixel at mandrakesoft.com>
-
- * fsedit.pm: add /usr/local and /opt to suggestions_mntpoints
-
-2005/04/03 Thomas Backlund <tmb at mandrake.org>
-
- * share/po/fi.po: Updated Translations, fully translated, was 93 fuzzy, 67
- untranslated.
-
-2005/04/02 mareklaane
-
- * share/po/et.po: Updated translation (supermount=automaatne haakimine).
-
-2005/04/02 mbukovjan
-
- * share/po/cs.po: Updated Czech translation.
-
-2005/04/02 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sl.po, share/po/es.po, share/po/vi.po, share/po/wa.po: updated
- Spanish, Slovenian, Vietnamese and Walloon files
-
- * share/po/ja.po: updated Japanese file
-
-2005/04/02 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2005/04/02 willysr
-
- * share/po/id.po: Updated
-
-2005/04/01 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2005/04/01 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: jorge
-
-2005/04/01 tsdgeos
-
- * share/po/ca.po: small update
-
-2005/04/01 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: jorge
-
-2005/04/01 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/cdrom.c, mdk-stage1/disk.c: try to load ide-generic as
- fallback when no disk or cdrom is found
-
- * mouse.pm: configure wacom devices with synaptics touchpads too
-
-2005/04/01 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * Makefile, pixmaps/langs/lang-pa_IN.png, share/fonts.tar.bz2, lang.pm:
- Added font for gurmukhi script (used by pa_IN translation);
- enabled pa_IN, and define the font for KDE
-
- * share/po/nb.po, share/po/id.po, share/po/sk.po, share/po/ru.po,
- share/po/is.po, share/po/sl.po, share/po/de.po, share/po/cs.po,
- share/po/hu.po: updated Slovenian file;
- run msgmerge on all *.po files
-
- * share/po/az.po, share/po/sv.po, share/po/ca.po: updated Swedish and
- Italian files; small fixes in Azeri and Catalan files
-
- * share/po/it.po: updated Italian file
- updated Swedish and Italian files; small fixes in Azeri and Catalan
- files
-
- * share/po/cy.po: updated Welsh file
-
-2005/04/01 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: Last minute strings:)
-
-2005/04/01 pjetur
-
- * share/po/is.po: Small fuzzy fixes
-
-2005/04/01 pmaryanov
-
- * share/po/ru.po: s/служб/сервис/
-
-2005/04/01 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Sort CDs according to CD numbers, not alphabetically
-
- * install_steps_gtk.pm: Actually remove multiple Mini-CD media for
- deselection
- When presenting the list of media to deselect, group by CDs even when
- using the
- mini ISO
-
-2005/04/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: one more item in 10.2-18mdk
- 10.2-18mdk
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/uk.po, share/po/mn.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/Makefile,
- share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/nl.po,
- share/po/tl.po, share/po/de.po, share/po/eo.po, share/po/el.po,
- share/po/bg.po, share/po/cs.po, share/po/uz@Latn.po: add 3 new strings
- from diskdrake
-
- * share/po/fr.po: add 3 new strings from diskdrake
- fix truncated message (#13989)
-
- * harddrake/data.pm: fix harddrake crash
-
-2005/03/31 marco
-
- * share/po/it.po: fix
- fix
-
-2005/03/31 Olivier Blin <oblin at mandrakesoft.com>
-
- * c/stuff.xs.pl: add enable_net_device
-
- * network/netconnect.pm: add some comment for post 10.2
- do not use ifplugd for wireless cards (and don't allow users to enable
- it for wireless cards in drakconnect)
-
- * detect_devices.pm: enable ethernet interfaces during detection (fix
- Ralink wireless detection)
-
-2005/03/31 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/tr.po: small changes
-
- * share/po/az.po: some Azeri changes from Max Payne
- small changes
-
- * share/po/es.po: updated Spanish file
-
- * share/po/cy.po: updated Welsh file
-
-2005/03/31 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: Updates from Eskild Hustvedt:)
-
-2005/03/31 pmaryanov
-
- * share/po/ru.po: fixed drakperm:24 and drakperm:23
-
-2005/03/31 Pixel <pixel at mandrakesoft.com>
-
- * diskdrake/interactive.pm: useSupermount is no more a boolean, don't let
- the "More" dialog box set it to 1 when it is magicdev
-
- * standalone/drakauth, authentication.pm: don't display description for
- non proposed authentication kinds
-
- * lang.pm: better locale-policy.fdi (bugzilla #15025)
-
-2005/03/31 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/harddrake2: do not try to install packages that are not
- availlable (#15106)
- do no try to install too generic hw packages (#15101)
-
- * drakxtools.spec: 10.2-17mdk
-
- * detect_devices.pm: do not detect joystics as UPSes
-
-2005/03/31 Frederic Crozat <fcrozat at mandrakesoft.com>
-
- * share/rpmsrate: Add gpdf and eog to GNOME packages
-
-2005/03/31 mareklaane
-
- * share/po/et.po: Updated translation.
-
-2005/03/31 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: add some comment for post 10.2
- do not use ifplugd for wireless cards (and don't allow users to enable
- it for wireless cards in drakconnect)
-
-2005/03/31 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/az.po, share/po/tr.po: small changes
-
- * share/po/vi.po: updated Vietnamese file
-
- * share/po/es.po: updated Spanish file
-
-2005/03/31 pmaryanov
-
- * share/po/ru.po: fixed drakperm:24 and drakperm:23
- updated drakperm
-
-2005/03/31 Pixel <pixel at mandrakesoft.com>
-
- * diskdrake/interactive.pm: useSupermount is no more a boolean, don't let
- the "More" dialog box set it to 1 when it is magicdev
-
- * standalone/drakauth, authentication.pm: don't display description for
- non proposed authentication kinds
-
- * network/drakfirewall.pm: fix typo (bugzilla #15116)
-
- * lang.pm: better locale-policy.fdi (bugzilla #15025)
-
- * rescue/list: disambiguate (esp for Config.pm which now has
- Net/Config.pm)
-
- * any.pm: the wmaker line didn't ask the window manager to logout, but to
- rerun itself, so removing it (bugzilla #15087)
-
-2005/03/31 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2005/03/31 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/data.pm: do not detect USB joystics as UPSes (#15102)
-
- * share/po/az.po: update (Ugur Eminli <system.virus@gmail.com>)
-
- * standalone/harddrake2: do not try to install packages that are not
- availlable (#15106)
- do no try to install too generic hw packages (#15101)
-
-2005/03/30 mbukovjan
-
- * share/po/cs.po: Updated Czech translation.
-
-2005/03/30 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: fix speedtouch microcode url (#15095)
-
- * network/adsl.pm: eagle-usb: try to use the country specific CMV
- fctStartAdsl is moved in /sbin too
-
-2005/03/30 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/es.po, share/po/ja.po, share/po/pl.po, share/po/fr.po,
- share/po/wa.po: updated Japanese, Polish, Spanish, French and Walloon
- files
-
-2005/03/30 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: updates:)
-
-2005/03/30 pmaryanov
-
- * share/po/ru.po: updated drakbackup
- multiply fixes translation of 'Service'
- s/search/Search
- fixed '...mail alert...'
-
-2005/03/30 rstandtke
-
- * share/po/de.po: some fixes
- some additions
-
-2005/03/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/pa_IN.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/mt.po, share/po/ga.po,
- share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/pt.po, share/po/vi.po, share/po/fr.po, share/po/nl.po,
- share/po/tl.po, share/po/de.po, share/po/cs.po, share/po/uz@Latn.po:
- - merge in new strings from drakroam
- - auto translate "RAID controllers" for harddrake
- - manual updates for af, br & fr
-
- * share/po/Makefile: fix makefile
-
- * drakxtools.spec: update 10.2-16mdk's changelog
- update 10.2-16mdk's changelog
- 10.2-16mdk
-
- * share/po/sr.po, share/po/ro.po, share/po/sr@Latn.po, share/po/sq.po,
- share/po/tr.po, share/po/mn.po, share/po/az.po, share/po/ta.po,
- share/po/eo.po, share/po/el.po, share/po/bg.po: manual updates
- - merge in new strings from drakroam
- - auto translate "RAID controllers" for harddrake
- - manual updates for af, br & fr
-
- * harddrake/data.pm: megaraid controllers are listed as RAID ones now
- 3ware controllers are listed as RAID ones now
- ensure we detect all known sound cards
- do not list hardware controllers in unknown section
- ensure we detect all known SATA controllers
-
-2005/03/30 willysr
-
- * share/po/id.po: Updated
-
-2005/03/29 mareklaane
-
- * share/po/et.po: Updated translation.
-
-2005/03/29 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: fix NET_INTERFACE for sagem modems not using
- pppoa
-
- * detect_devices.pm: detect more Bewan devices
-
- * standalone/net_applet: really load network configuration at start
-
-2005/03/29 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/es.po, share/po/fr.po: updated French and Spanish files
-
- * Makefile: removed pa_IN.po and ta.po from install due to font problems
-
- * share/po/sv.po: updated Swedish file
-
- * share/po/pa_IN.po: Added Punjabi file
-
- * share/po/it.po: updated Italian file
-
-2005/03/29 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: Updates from Eskild Hustvedt
-
-2005/03/29 pmaryanov
-
- * share/po/ru.po: fixed Uninstall font
-
-2005/03/29 Pixel <pixel at mandrakesoft.com>
-
- * pkgs.pm: if i686-up-4GB is not there we don't have pae, fallback on
- i586-up-1GB
-
- * lang.pm: revert to standard size (as told on bugzilla #14988 to revert
- #13809)
-
- * lvm.pm: ensure we have a {lv_name} (esp. for auto_installs)
-
- * standalone/service_harddrake, modules.pm, standalone/harddrake2,
- harddrake/data.pm:
- - disable imm/ppa probe during install since it causes some rubbish to
- be printed (bugzilla #12560)
- - add an option in harddrake to probe imm/ppa
-
-2005/03/29 Reinout van Schouwen <reinout at cs.vu.nl>
-
- * share/po/nl.po: Reinout van Schouwen <reinout@cs.vu.nl>:
- Updated Dutch translation-
-
-2005/03/29 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/detect.pm:
- - Let IOCTL detection of an USB printer not get accepted if there is
- no
- relevant item at all in the ID string, to avoid mis-detection of some
- USB
- keyboards as printers.
-
-2005/03/29 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: move drakroam from drakxtools-newt into drakxtools
- since it requires gtk+
- fix tools' crash when drakconf is not installing (#13392)
- 10.2-15mdk
-
- * docs/HACKING: update package list regarding gtk+ bindings
-
- * standalone/drakroam (UpdateStatus) fix layout
- translate columns' headers
-
- * any.pm (selectLanguage) remove unused variable
- (selectLanguage) let "unicode" checkbox be an advanced item at both
- install
- time and in standalone mode
-
- * detect_devices.pm (floppies) do not use dmidecode for detecting floppies
- since it's not
- reliable (#15029)
-
- * harddrake/data.pm: fix optical mice detection (#15082)
-
-2005/03/28 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm, network/adsl.pm: eaglectrl is now in /sbin
- (#15033)
-
-2005/03/28 pmaryanov
-
- * share/po/ru.po: fixed PPPoE, PPPoA,...
-
-2005/03/27 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: transl. drakroam messages
-
-2005/03/27 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/br.po, share/po/pl.po, share/po/ar.po,
- share/po/he.po: removed "10.1"
-
-2005/03/27 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * rescue/list: Add some more files to the rescue until packdrake works
- correctly without Compress::Zlib.
-
-2005/03/27 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2005/03/27 willysr
-
- * share/po/id.po: Updated
-
-2005/03/26 Funda Wang <fundawang at linux.net.cn>
-
- * share/advertising/09.pl: Oops, Sorry for the critical typo
- s/Mandrakelinux 10.1/Mandrakelinux. For advertising.
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sc.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: Oops! Sorry for the critial typo :(
- s/Mandrakelinux 10.1/Mandrakelinux/. For advertising.
-
-2005/03/26 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/03/26 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/sc.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/vi.po, share/po/fr.po,
- share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: updated pot file
-
- * share/po/es.po, share/po/pt.po: updated Spanish file
- updated pot file
-
-2005/03/25 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
-
- * rescue/list.x86_64: speculatively add 32-bit loader in case user wants
- to use 3rdparty 32-bit
- binaries depending on it.
-
- * rescue/tree/usr/share/symlinks: I hate you pixel. ;-) You were not lib64
- aware of those modern arches. ;-))
-
- * rescue/make_rescue_img: take care of lib64 platforms, also add msboot
- restorer to x86_64 tree
-
- * share/rpmsrate: kdm was the new default
-
-2005/03/25 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sc.po: Added Sardinian file
-
- * share/po/pt_BR.po: updated Brazilian file
-
- * share/po/sl.po, share/po/id.po: updated Slovenian file
-
-2005/03/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.2-14mdk
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/da.po, share/po/ca.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/sc.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/uk.po, share/po/mn.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/Makefile, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/el.po,
- share/po/bg.po, share/po/cs.po, share/po/uz@Latn.po:
- - add new strings from drakroam
- - merge in kde's translations
-
- * share/po/be.po: fix bogus translations introduced on 6-Aug-2004
- - add new strings from drakroam
- - merge in kde's translations
-
- * modules/interactive.pm (load_category__prompt_for_more) enable one to
- load ide drivers if needed
-
-2005/03/25 willysr
-
- * share/po/id.po: Fix Typo
- Fix Typo and Minnor Update
- Updated
-
-2005/03/24 Olivier Blin <oblin at mandrakesoft.com>
-
- * install_any.pm: nasty warly uses different volume IDs for mini CDs
-
- * standalone/drakroam: do not crash in Help and About buttons
-
-2005/03/24 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Always write an MD5SUM file
-
-2005/03/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: update
- update
-
- * standalone/drakroam: tag strings as being translatable
-
- * share/po/pt_BR.po:
- - update from Cristiano Otto Von Trompczynski <cris@mandrakesoft.com>
- - fix errors in cataglog
-
-2005/03/24 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/net_applet: force refresh if asked by user from the menu
- reload configuration on SIGHUP
- ask for root password if needed when setting a new profile
-
- * network/network.pm: write ATM_ADDR field
-
- * network/netconnect.pm: ATMARP support, useful for modems using pppoatm
- (e.g. SpeedTouch) and
- ISP using RFC 1483 Routed VC MUX (e.g. Free Degroupe)
-
- * network/adsl.pm: use new --nocall option of speedtouch-start
-
-2005/03/24 Pixel <pixel at mandrakesoft.com>
-
- * standalone/drakvpn, network/shorewall.pm, standalone/drakgw:
- - network::shorewall::default_interfaces_silent() does not need any
- parameter
- - network::shorewall::read() is simpler with a $o_in
- - network::drakfirewall::default_from_pkgs() is non interactive,
- better give it a do_pkgs
- - cleanup as little as possible
-
- * security/level.pm: really default security level 3
-
- * raid.pm: calling inactivate_and_dirty() on a new structure is bad, we
- loose the {isFormatted} flag
- (no big deal though, it happened because raid::new() was creating a new
- raid with an already active md name)
- ensure we use/propose a free md when creating a new one
- after "mdadm --assemble" there can be some mds in inactivate state
- busying devices, stopping them
-
- * network/drakfirewall.pm: log what we are doing
- return the user choices
- - there is no reason to have string ref for ports
- - replace main_auto_install() with default_ports()
- network::drakfirewall::set_ports() doesn't *need* a $in anymore, and it
- doesn't die when no network card
- - network::shorewall::default_interfaces_silent() does not need any
- parameter
- - network::shorewall::read() is simpler with a $o_in
- - network::drakfirewall::default_from_pkgs() is non interactive,
- better give it a do_pkgs
- - cleanup as little as possible
-
- * install_steps_interactive.pm:
- - configure a firewall by default in secure level >= 3
- - allow auto_install parameter {firewall_ports}
- - network::shorewall::default_interfaces_silent() does not need any
- parameter
- - network::shorewall::read() is simpler with a $o_in
- - network::drakfirewall::default_from_pkgs() is non interactive,
- better give it a do_pkgs
- - cleanup as little as possible
-
- * install_steps.pm: really default security level 3
- - configure a firewall by default in secure level >= 3
- - allow auto_install parameter {firewall_ports}
-
- * diskdrake/interactive.pm: calling inactivate_and_dirty() on a new
- structure is bad, we loose the {isFormatted} flag
- (no big deal though, it happened because raid::new() was creating a new
- raid with an already active md name)
- use raid::free_mds() and don't sort (we provide a better numerically
- sorted list)
-
-2005/03/24 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * tools/Makefile: Install modules required by packdrake and gendistrib in
- MISC_DEST
-
-2005/03/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk2.pm (Gtk2::Banner::new) make banner be RTL aware (aka follow
- language direction
- and display itself mirrored for RTL languages) (#11910)
- (Gtk2::Banner::new) ensure icon is centered vertically
-
- * drakxtools.spec: 10.2-13mdk
-
-2005/03/24 willysr
-
- * share/po/id.po: Updated
-
-2005/03/23 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/disk.c: warn that the mount can fail if the partition hasn't
- been cleanly unmounted
-
- * install_any.pm: temporarily fallback on /mnt/hd if the hard disk mount
- point can't be found
-
-2005/03/23 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/disk.c: warn that the mount can fail if the partition hasn't
- been cleanly unmounted
-
- * install_any.pm: temporarily fallback on /mnt/hd if the hard disk mount
- point can't be found
-
-2005/03/23 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Fix ejection of cdrom when asking for the supplementary
- CD. (bug 14902)
-
-2005/03/23 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/disk.c: warn that the mount can fail if the partition hasn't
- been cleanly unmounted
-
- * install_any.pm: temporarily fallback on /mnt/hd if the hard disk mount
- point can't be found
-
-2005/03/23 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Fix ejection of cdrom when asking for the supplementary
- CD. (bug 14902)
-
-2005/03/23 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/disk.c: warn that the mount can fail if the partition hasn't
- been cleanly unmounted
-
- * install_any.pm: temporarily fallback on /mnt/hd if the hard disk mount
- point can't be found
-
-2005/03/23 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Fix ejection of cdrom when asking for the supplementary
- CD. (bug 14902)
-
-2005/03/23 fisher
-
- * share/po/uk.po: uk tr-tion update
-
-2005/03/23 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/disk.c: warn that the mount can fail if the partition hasn't
- been cleanly unmounted
-
- * install_any.pm: temporarily fallback on /mnt/hd if the hard disk mount
- point can't be found
-
- * network/adsl.pm: make Bewan PCI modems work (drop MTU config entries)
-
-2005/03/23 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * keyboard.pm: changed tifinagh kbd to "tifinagh(phonetic)", to avoid
- conflicts
- with future moroccan standard layout (as will be used in schools etc)
- which is a bit different
-
-2005/03/23 pmaryanov
-
- * share/po/ru.po: fixed 'Load/Save selection' and 'No details'
- translated 'Smart Card'
- fixed 'Allow all users'
-
-2005/03/23 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/monitor.pm: probe_using_X on neomagic can return rubbish, so
- prefer probe_DMI() (even if dmi probe is quite fuzzy...)
-
-2005/03/23 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_steps_gtk.pm: Fix detection of available space when copying rpms
- on disk (bug 14790)
-
- * install_any.pm: Fix ejection of cdrom when asking for the supplementary
- CD. (bug 14902)
-
-2005/03/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: update
- typo fix
-
- * Makefile.drakxtools, Makefile: package rpmsrate
-
- * drakxtools.spec: 10.2-12mdk
-
-2005/03/23 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: Add ufraw-gimp with gimp and ufraw in photo (for
- handling raw images from digital camera)
-
-2005/03/23 willysr
-
- * share/po/id.po: Fix Typo
- Updated
-
-2005/03/23 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/monitor.pm: probe_using_X on neomagic can return rubbish, so
- prefer probe_DMI() (even if dmi probe is quite fuzzy...)
-
-2005/03/22 Olivier Blin <oblin at mandrakesoft.com>
-
- * share/rpmsrate: install atmel firmwares for hardware using at76* modules
- install prism54-firmware for prism54 devices only
- kernel 2.4 isn't needed anymore for this hardware
- install xine-esd on Gnome desktops so that totem works when esd is
- running
-
- * mdk-stage1/disk.c: dirname may modify the string, so copy it first
-
-2005/03/22 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/resolution_and_depth.pm: perl_checker fix
- choose the default background best matching the resolution
-
- * standalone/keyboarddrake: we require_root_capability, so do it ASAP
- (bugzilla #13619)
- clean-up
- put the question inside the interactive code
-
- * Xconfig/main.pm: try a little harder to know if we must write the config
- file.
- this is still not enough though
- put X conf read in Xconfig::main
-
- * diskdrake/interactive.pm, lvm.pm: ensure {lv_name} is set when calling
- check_mntpoint() from Create() (via check()) (bugzilla #14253)
-
- * any.pm: be more explicit
- when calling adduser, don't forget {realname} or {home} if we have them
- (bugzilla #13805)
- no acpi means acpi=on, not the contrary (bugzilla #13935)
-
- * install_steps.pm: acpi=on is the default
-
- * install_steps_interactive.pm: handle the return value of
- any::setupBootloader() (bugzilla #13641)
-
- * standalone/XFdrake: put X conf read in Xconfig::main
-
- * standalone/drakauth, authentication.pm: SmartCard authentication needs a
- (bloody) proprietary package,
- only propose it when the package is available
-
- * Xconfig/xfree.pm: try a little harder to know if we must write the
- config file.
- this is still not enough though
-
-2005/03/22 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * install_steps_gtk.pm, share/list.i386, mouse.pm: XBox - get xpad to work
- in install (added xset)
-
- * harddrake/sound.pm: XBox - add options "xbox=1" for sound driver (thx
- Thierry)
-
-2005/03/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/harddrake2: help perl_checker
- install packages needed for hw support
-
- * drakxtools.spec: 10.2-11mdk
-
- * interactive.pm: perl_checker cleanup
-
-2005/03/22 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: fix kdegraphics-common duplicate problem
-
-2005/03/22 willysr
-
- * share/po/id.po: Fix Typo
- Updated
- Fix Typo
- Updated
-
-2005/03/21 Funda Wang <fundawang at linux.net.cn>
-
- * keyboard.pm: fixed wrongly spelled us_intl for lb locale.
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, install_messages.pm, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: s/102errata/errata/. There will not
- be an 10.2, and errara.php3
- is allways pointed to latest errata :/
-
-2005/03/21 marco
-
- * share/po/it.po: Successivo -> Next
-
-2005/03/21 Olivier Blin <oblin at mandrakesoft.com>
-
- * share/rpmsrate: install kwifimanager on wireless-aware kde desktops
-
- * mdk-stage1/network.c: rephrase message (#14813)
-
- * mouse.pm: help perl_checker
- use specific Synaptics settings for ALPS devices (#14512)
-
- * detect_devices.pm: handle wireless hardware type
- is_lan_interface: do not list wifi%d interfaces as LAN devices (#14523)
-
- * Xconfig/xfree.pm: remove useless function to improve readability and
- please Titi
- use specific Synaptics settings for ALPS devices (#14512)
- use new recommended settings for synaptics-0.14.0
- factorize and minimal comments
-
-2005/03/21 Pixel <pixel at mandrakesoft.com>
-
- * do_pkgs.pm: add ->is_available
-
- * ugtk2.pm: don't use show_all, it unhides hidden summary (bugzilla
- #13941)
-
- * rescue/make_partimage_save_rest_all: addmd5 to the generated iso
- factorize
-
- * bootloader.pm: enhance yaboot macos entry handling (mostly written by
- cjw) (bugzilla #14642)
-
-2005/03/21 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Don't copy RPMs from supplementary media, except
- supplementary CDs
- Factorize code on opening CD tray.
- This, and the previous change, fixed bug #14850.
- Force opening of cdrom tray when asking for a supplementary CD.
- Allow to eject non-mounted cdroms
-
-2005/03/21 rstandtke
-
- * share/po/de.po: some additions
-
-2005/03/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * detect_devices.pm (getUPS) enforce "hidups" as driver for BackPro UPSes
-
- * drakxtools.spec: 10.2-10mdk
-
- * standalone/drakups (add_device_wizard) set extra parameters if present
-
-2005/03/21 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: install kdegraphics-common to support camera
-
-2005/03/21 willysr
-
- * share/po/id.po: Fix typo
- Updated
-
-2005/03/21 Olivier Blin <oblin at mandrakesoft.com>
-
- * drakxtools.spec: force net_applet start from menu (#14858)
-
- * mdk-stage1/network.c: rephrase message (#14813)
-
- * standalone/net_applet: don't modify autostart config file value if
- started with --force
-
-2005/03/21 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po: updated Bengali file
-
- * share/po/sl.po: updated Slovenian file
-
-2005/03/21 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/xfree.pm: ensure strange return value from gtf(1) doesn't cause
- havoc
-
- * rescue/make_partimage_save_rest_all: addmd5 to the generated iso
- factorize
-
- * detect_devices.pm, pkgs.pm: handle new kernel flavour for i686 but non
- pae
-
-2005/03/21 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Allow to eject non-mounted cdroms
-
-2005/03/21 willysr
-
- * share/po/id.po: Updated
- Fix typo
- Updated
-
-2005/03/20 willysr
-
- * share/po/id.po: Fix Typo
- Fix Typo
- Updated
-
-2005/03/19 Pixel <pixel at mandrakesoft.com>
-
- * drakxtools.spec: we need latest ldetect-lst (bugzilla #14785)
-
-2005/03/19 shivahuang
-
- * share/po/zh_TW.po: updated po files
-
-2005/03/19 willysr
-
- * share/po/id.po: minnor update
- Updated
- minnor update
- Updated
- Updated
-
-2005/03/18 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: do "doPartitionDisks" and "formatPartitions" ASAP in
- upgrade so that miscellaneous is runned when /mnt is mounted (bugzilla
- #8678)
-
-2005/03/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.2-9mdk
-
- * network/netconnect.pm: disable network hotplug for via-velocity driver
- (#14763)
-
-2005/03/18 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, install_messages.pm, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/fr.po,
- share/po/ta.po, share/po/vi.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: s/101errata/102errata for the next
- release. We often forget this.
-
-2005/03/18 Olivier Blin <oblin at mandrakesoft.com>
-
- * harddrake/data.pm: adapt to new adsl_detect prototype
-
- * standalone/drakroam: perl_checker/include fixes
- don't be verbose
-
- * standalone/drakconnect: really detect wireless devices in manage
- interface
-
- * rescue/tree/etc/issue: tell how to go back to the rescue menu
-
- * share/po/fr.po: fix drakbackup message
- fix bad translations
-
- * standalone/logdrake: perl_checker fixes
- fix save dialog
-
- * network/ethernet.pm: remove other mac address occurrences in iftab
-
-2005/03/18 Pixel <pixel at mandrakesoft.com>
-
- * lvm.pm: rootDevice must be properly set, esp. for newt diskdrake
- (bugzilla #14254)
-
- * standalone/localedrake: always warn the user to logout, even if we can't
- help (bugzilla #14403)
-
- * diskdrake/interactive.pm: remove the lvm if lvm::vg_destroy() succeeds
- (bugzilla #14249)
-
- * install2.pm: do "doPartitionDisks" and "formatPartitions" ASAP in
- upgrade so that miscellaneous is runned when /mnt is mounted (bugzilla
- #8678)
-
- * bootloader.pm: handle grub file names that do not correspond to a
- mounted filesystem (bugzilla #14410)
- use renamef instead of rename to create .old conf files
-
- * Xconfig/xfree.pm: simplify
- ensure the .old X conf is the last one
- instead of having xorg.conf symlinked to XF86Config, do the contrary
-
-2005/03/18 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * crypto.pm: Fix downloading update rpms with ftp method.
- Remove noisy log
-
- * ftp.pm: Meaningful error messages
-
-2005/03/18 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Better way to list NIC modules (thx Thierry).
- Lose the "system" calls. Use pxe.include now. Clean up some redundant
- code.
-
-2005/03/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * detect_devices.pm (getUPS) move comment about serial UPS where
- appropriate
-
- * standalone/drakups (add_device_wizard) fix device path when manually
- adding an UPS (#12290)
-
- * standalone/logdrake: fix explanation mode only displaying last line
- (#14368)
- (parse_file) do not horribly die
-
- * standalone/drakperm (row_setting_dialog) better looking GUI: span groups
- & users on
- several columns (up to 3)
- (we might have choosed to set number of columns depending of number
- and max length of group/users rather than hardcoding 3 columns)
- (get_user_or_group) do not ignore groups with empty password field
- (#14777)
-
- * drakxtools.spec: 10.2-9mdk
- 10.2-8mdk
- 10.2-7mdk
-
-2005/03/18 willysr
-
- * share/po/id.po: Updated
- Updated
- Updated
-
-2005/03/17 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: updated
-
-2005/03/17 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
-
- * install_steps_interactive.pm: bring back generic release-notes.txt to
- life
- MERGE: make it possible to read arch-specific release notes in addition
- to
- global (default) ones
-
- * mdk-stage1/usb-resource/update-usb-ids.pl: fix usb devices id generation
-
- * mdk-stage1/Makefile: pcmcia also works on x86-64 (old 10.1-branch)
-
- * rescue/list: MERGE: fix ldso name
-
- * install_steps_gtk.pm: MERGE: stop using dedicated X drivers on x86-64,
- default to vesafb
-
- * mdk-stage1/pcmcia_/cs.h, mdk-stage1/pcmcia_/cardmgr.c,
- mdk-stage1/pcmcia_/ds.h, mdk-stage1/pcmcia_/yacc_config.h,
- mdk-stage1/pcmcia_/cs_types.h, mdk-stage1/pcmcia_/vg468.h,
- mdk-stage1/pcmcia_/yacc_config.c, mdk-stage1/pcmcia_/i82365.h,
- mdk-stage1/pcmcia_/driver_ops.h, mdk-stage1/pcmcia_/cirrus.h: merge with
- recent enough kernel and remove osbolete (unused) stuff, also do
- some 64-bit fixing there (forward port from cs3 and 10.1 branches)
-
- * share/list, share/list.x86_64, share/list.i386: mdadm for everyone, fix
- ldso linker name for other arches
-
- * devices.pm: MERGE: don't be so i586 centric
-
-2005/03/17 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/thirdparty.c: probe in automatic mode to create devices (and
- really check for mount return code)
- fix return code check
- message fix again
- more message fixes
- fix/enhance messages
- look for modules in /install/thirdparty first
-
- * network/adsl.pm: vpi is given as hex too (though it doesn't matter much
- since it's
- merely always less than or equal to 9)
-
- * mdk-stage1/pci-resource/update-pci-ids.pl: use sata modules too
-
- * standalone/drakconnect: fill at least the DEVICE field for
- non-configured devices
- allow to modify non configured devices in manage interface
-
-2005/03/17 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/monitor.pm, Xconfig/main.pm, Xconfig/xfree.pm: use
- monitor-probe-using-X
-
- * mygtk2.pm: ensure the val registrations are kept ordered
-
- * common.pm: ensure this bloody stupid code doesn't break things when it
- is unused
-
- * install_steps_interactive.pm: simplify
-
- * mdk-stage1/doc/UPDATEMODULES, install_steps.pm: give ability to tell in
- which list_modules category is a module
-
- * Xconfig/resolution_and_depth.pm:
- - simplify GUI: don't have a "ratio" combo. have the resolutions from
- current ratio by default and allow "Other" to see all others
- - by default 1280x1024 is now in 4/3, not 5/4 (stupid bloody
- resolution!)
- have 1280x1024 in both 4/3 and 5/4 ratios
-
- * share/rpmsrate: we may need monitor-probe-using-X installed to configure
- X during install
- (XFdrake already require monitor-edid)
-
-2005/03/17 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm:
- - Fixed queue name auto-generation, it sometimes hanged in an endless
- loop
- (bugs #14426, #14525, #14563).
-
-2005/03/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: temporary move collate sorting into net wizard in
- order to minimize possible side effects
-
- * drakxtools.spec: add an item to 10.2-6mdk's log
-
- * interactive.pm: temporary move collate sorting into net wizard in order
- to minimize possible side effects
- (ask_from_normalize) use newly introduced set_l10n_sort() in order to
- have proper localized sorting (#14634)
-
- * common.pm (set_l10n_sort) import comments from rpmdrake
- (set_l10n_sort) do not bother touch LC_ALL
- (set_l10n_sort) stole it from rpmdrake
-
-2005/03/17 willysr
-
- * share/po/id.po: Updated
- Updated
-
-2005/03/16 Daouda Lo <daouda at mandrakesoft.com>
-
- * bootloader.pm:
- - cluster without capturing
-
-2005/03/16 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/tools.h: cdrom support in third-party module
-
- * mdk-stage1/tools.c:
- - merge update_modules stuff in third-party module
- - add "thirdparty" as an alias for the "updatemodules" option
- - allow to specify thirdparty device using automatic "thirdparty"
- option
- - try to mount as iso9660 too in try_mount
- cdrom support in third-party module
-
- * mdk-stage1/thirdparty.c:
- - merge update_modules stuff in third-party module
- - add "thirdparty" as an alias for the "updatemodules" option
- - allow to specify thirdparty device using automatic "thirdparty"
- option
- - try to mount as iso9660 too in try_mount
- fail if device doesn't match anything
- cdrom support in third-party module
-
- * mdk-stage1/Makefile: allow to clean local directory only
- partition.c is used only in disk installs for now
-
- * mdk-stage1/stage1.c, mdk-stage1/modules.c, mdk-stage1/stage1.h,
- mdk-stage1/modules.h:
- - merge update_modules stuff in third-party module
- - add "thirdparty" as an alias for the "updatemodules" option
- - allow to specify thirdparty device using automatic "thirdparty"
- option
- - try to mount as iso9660 too in try_mount
-
-2005/03/16 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/eu.po, share/po/sv.po, share/po/fr.po: updated French, Basque
- and Swedish files
-
-2005/03/16 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: fix dropping line macos in yaboot.conf (bugzilla #14642)
-
-2005/03/16 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * pkgs.pm, install2.pm: Allow to specify "suppl" and "askmedia" in the
- kernel command-line as well as in the hdlists file
-
- * share/po/fr.po: Fix typo
-
- * share/po/id.po: Fix po syntax
-
-2005/03/16 shivahuang
-
- * share/po/zh_TW.po: updated po files
-
-2005/03/16 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/default.pm:
- - Fixed setting of default printer on daemon-less CUPS client (bug
- #13940).
-
-2005/03/16 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: finalized slovak translation for 10.2
-
-2005/03/16 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/localedrake: enable to enable/disable utf-8
- ensure there's never a "previous" button on first step
-
- * any.pm: enable to enable/disable utf-8
-
- * drakxtools.spec: 10.2-6mdk
-
- * interactive/gtk.pm (ask_fromW) remove dead code
- (ask_fromW) remove unecessary sync (which was needed to workaround
- CList bug but now make TreeViews breaking CheckBoxes)
-
-2005/03/16 willysr
-
- * share/po/id.po: Updated
- Updated
- Updated
-
-2005/03/15 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm, network/adsl.pm: allow drakconnect to display
- multiple instances of the same adsl device
-
-2005/03/15 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * any.pm, pkgs.pm, install_any.pm: Install kernel-xbox on XBOX, bypass
- bootloader setup and eject call
-
-2005/03/15 mareklaane
-
- * share/po/et.po: Fixed translation.
-
-2005/03/15 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: allow drakconnect to display multiple instances
- of the same adsl device
- fix comment
- fix unicorn packages installation
- do not compare translated string, on Pixel's advice
- allow not to set gateway device (#14633)
-
- * network/adsl.pm: allow drakconnect to display multiple instances of the
- same adsl device
-
- * mdk-stage1/stage1.c, install_any.pm: fix pcmcia modules loading
-
-2005/03/15 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/it.po, share/po/cy.po: updated Italian and Welsh files
-
-2005/03/15 Pixel <pixel at mandrakesoft.com>
-
- * partition_table/empty.pm: do not drop field {info} that can be created
- in zero_MBR
- do not drop field {info} that can be created in zero_MBR
- do not drop field {info} that can be created in zero_MBR
-
- * c/stuff.xs.pl, detect_devices.pm, modules.pm, install_any.pm,
- share/list:
- - add dmi_probe()
- - some special code on dmi is now moved in dmitable with flags Pkg:
- and Module:
-
- * bootloader.pm: fix typo
-
- * Xconfig/main.pm:
- - new function Xconfig::monitor::is_valid()
- - new function Xconfig::monitor::probe() which probes DDC, then
- fallbacks on DMI
-
- * Xconfig/monitor.pm:
- - new function Xconfig::monitor::is_valid()
- - new function Xconfig::monitor::probe() which probes DDC, then
- fallbacks on DMI
- don't pass $monitors_db around, use memoized monitors_db()
-
-2005/03/15 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Fix cdrom device name
-
-2005/03/15 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * lang.pm: install scim-input-pad too for japanese
-
- * drakxtools.spec: 10.2-5mdk
-
-2005/03/14 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
-
- * share/rpmsrate: install setarch by default on x86_64, add provisions for
- a320raid-kernel
- drivers, add 32-bit compat galaxy gnome theme
-
-2005/03/14 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/03/14 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/shorewall.pm: allow connections from local net to firewall
- (#14586)
-
- * network/adsl.pm: remove eagle-usb_must_be_configured file
- fix and force CMVs symlink creation
-
-2005/03/14 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/id.po: fixed encoding
- fixed syntax errors
-
- * share/po/ja.po, share/po/wa.po: updated Japanese file
-
-2005/03/14 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: fix netmask string..
-
-2005/03/14 Pixel <pixel at mandrakesoft.com>
-
- * standalone/bootloader-config: ensure we have /sbin in our PATH
-
-2005/03/14 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/po/fr.po: Fix typo
-
- * share/po/zh_CN.po: Fix newline issue
-
- * install_any.pm: Change the code for the rpm copying progress bar to
- avoid forking.
-
- * crypto.pm: Update mirror list
-
- * install_steps_gtk.pm: Don't die while upgrading if
- /var/ftp/pub/Mandrakelinux isn't there (bug #14585)
-
-2005/03/14 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: fix netmask message after funda fixed blino message
-
- * share/po/br.po: update
- fix netmask message after funda fixed blino message
-
-2005/03/14 willysr
-
- * share/po/id.po: Delete Conflict Indicator and Little Update
- Little Update
- Updated
- Updated
- Updated again
- Downgrade one version
- updated
-
-2005/03/13 mbukovjan
-
- * share/po/cs.po: Updates to Czech translations
-
-2005/03/13 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/xfree.pm: add some xxXGA names
-
- * any.pm: fix looking for the user uid.gid
-
- * bootloader.pm: don't die when we have no entries in grub menu.lst
-
-2005/03/13 Reinout van Schouwen <reinout at cs.vu.nl>
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
- * DrakX
-
-2005/03/13 willysr
-
- * share/po/id.po: Updated
-
-2005/03/12 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, network/netconnect.pm, share/po/be.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- standalone/drakconnect, share/po/sr@Latn.po, share/po/sq.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/lv.po,
- share/po/hu.po, share/po/fa.po, share/po/id.po, share/po/ru.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/fr.po, share/po/ta.po, share/po/vi.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: s/Netmask
- address/Netmask/. typo fix
-
- * share/po/zh_CN.po: s/Netmask address/Netmask/. typo fix
- Updated Simplified Chinese translation
- Updated Simplified Chinese translation
-
-2005/03/12 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: jorge
-
-2005/03/12 Keld Jørn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: Updates
- soft/control-center/po/da.po gi/perl-install/share/po/da.po
-
-2005/03/12 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/zh_CN.po, share/po/vi.po: updated Vietnamese file; corrected
- syntax error in Chinese file
-
-2005/03/11 mareklaane
-
- * share/po/et.po: Updated translation.
-
-2005/03/11 Olivier Blin <oblin at mandrakesoft.com>
-
- * install_any.pm: remove useless /
- really create ISO images mountpoint (me sux)
- use full path to rpms for ISO media
-
- * network/adsl.pm: fix typo (linetype for eagle-usb)
-
-2005/03/11 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ltg.po, share/po/nb.po,
- share/po/ky.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/lt.po, share/po/tg.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/pt.po, share/po/fr.po,
- share/po/ta.po, share/po/vi.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: updated pot file
-
- * share/po/be.po, share/po/ar.po, share/po/br.po, share/po/am.po,
- share/po/cy.po, share/po/bs.po, share/po/az.po, share/po/bg.po: updated
- pot file
- updated pot file
-
-2005/03/11 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: grf, translate last minute strings
-
-2005/03/11 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/xfree.pm: for 1400x1050, put the resolutions (60 and 75Hz are
- already in extramodes, but they are GTF modelines, we can overrule them)
-
-2005/03/11 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_steps_gtk.pm: When removing duplicate physical media, take DVDs
- into account as well as CDs
-
- * install_any.pm: Use library functions
- Create an empty MD5SUM file to make urpmi happy
- Don't stack information windows on top of another
- Eject last CD after copy of rpms on disk
-
-2005/03/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/uk.po, share/po/eu.po, share/po/bn.po, share/po/ms.po,
- share/po/am.po, share/po/ko.po, share/po/sl.po, share/po/az.po,
- share/po/zh_TW.po, share/po/hr.po, share/po/ja.po, share/po/zh_CN.po,
- share/po/tr.po, share/po/cs.po: fix translations
-
-2005/03/10 fisher
-
- * share/po/uk.po: tr-tion update
-
-2005/03/10 huftis
-
- * share/po/nn.po: Updated Norwegian Nynorsk translation.
-
-2005/03/10 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/modem.pm: use a higher timeout for modem dialing (#10814)
-
- * install_any.pm: don't spawn a shell if stage2 isn't run directly
- setup urpmi media for ISO images
-
- * network/netconnect.pm, mdk-stage1/thirdparty.c: fix messages
-
-2005/03/10 Pixel <pixel at mandrakesoft.com>
-
- * standalone.pm: help perl
-
- * Xconfig/monitor.pm: cleanup
- simplify
- we don't want the 4/3 detailed_timings otherwise they conflict with the
- Xorg builtin vesamodes
-
- * partition_table/dos.pm: catch bad use of get_rawCHS()
-
- * Xconfig/xfree.pm: don't add modelines for 1280x1024, they are already in
- standard vesamodes (builtin Xorg)
- when adding gtf modelines, have them sorted with high frequencies first
- (since Xorg prefer the first matching modeline (!))
-
-2005/03/10 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Put a wait message for copying rpms from CDs
-
-2005/03/10 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * diskdrake/interactive.pm, partition_table/raw.pm, fs/type.pm: Diskdrake
- mods for XBox (thks Pixel)
-
-2005/03/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/ltg.po, share/po/ky.po, share/po/am.po, share/po/cy.po,
- share/po/fur.po, share/po/vi.po, share/po/tl.po, share/po/uz@Latn.po:
- fix kde merge
- further merge with KDE
- remove duplicated string
- remove uneeded string
- merge in new strings
-
- * standalone/harddrake2 (upload) remove uneeded string
- enable to upload the hardware list
-
- * Xconfig/monitor.pm (getinfoFromDDC) fix crash (eg when called from
- hwdb-clients)
-
- * run_program.pm (raw) ensure runned programs are logged in explanations
-
- * share/po/DrakX.pot, share/po/Makefile: merge in new strings
-
- * share/po/br.po, share/po/fr.po: fix kde merge
- further merge with KDE
- update
- remove duplicated string
- remove uneeded string
- merge translations from KDE
- merge in new strings
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/da.po, share/po/ca.po, share/po/ar.po, share/po/nb.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/uk.po,
- share/po/mn.po, share/po/lt.po, share/po/tg.po, share/po/bs.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/ta.po,
- share/po/nl.po, share/po/de.po, share/po/eo.po, share/po/el.po,
- share/po/bg.po, share/po/cs.po: fix kde merge
- further merge with KDE
- remove duplicated string
- remove uneeded string
- merge translations from KDE
- merge in new strings
-
- * drakxtools.spec: 10.2-4mdk
- harddrake: require hwdb-clients
-
-2005/03/10 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/monitor.pm: we don't want the 4/3 detailed_timings otherwise
- they conflict with the Xorg builtin vesamodes
-
- * standalone.pm: help perl
-
-2005/03/10 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2005/03/09 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/network.pm: hide wlan-ng settings for non-root users
- make wpa_supplicant.conf readable by root only
-
-2005/03/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * Makefile: ga translation level has been leveraged up
-
-2005/03/09 mareklaane
-
- * share/po/et.po: Translation fixes.
-
-2005/03/09 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/stage1.h: expert mode is dead
-
- * mdk-stage1/disk.c: fix message
- move partition stuff in partition.c and common disk stuff in tools.c
-
- * mdk-stage1/thirdparty.h, mdk-stage1/thirdparty.c: initial import (allow
- to load thirdparty modules from disks)
-
- * mdk-stage1/Makefile: don't forget to link with third_party stuff
- move partition stuff in partition.c and common disk stuff in tools.c
-
- * network/netconnect.pm, network/network.pm, network/ethernet.pm,
- standalone/drakconnect: write selected dhcp client in ifcfg files
-
- * mdk-stage1/probing.c: do ask for modules here, it is already done when
- needed
- wait for mass storage devices to be detected
- add log message when looking for scsi adapters
-
- * mdk-stage1/partition.c, mdk-stage1/tools.h, mdk-stage1/partition.h: move
- partition stuff in partition.c and common disk stuff in tools.c
-
- * mdk-stage1/stage1.c: expert mode is dead
- do not ask for third party modules here, it's available from main menu
- allow to use new third party stuff from main menu
- probe usb devices before trying to use third party modules
-
- * mdk-stage1/tools.c: expert mode is dead
- move partition stuff in partition.c and common disk stuff in tools.c
-
-2005/03/09 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * Makefile: updated list of too low languages
-
- * share/po/sl.po: updated Slovenian file
-
-2005/03/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: update
- update
-
- * network/netconnect.pm: better looking text
-
- * Makefile: ga translation level has been leveraged up
-
- * network/ethernet.pm (get_eth_cards) update comments
- (get_eth_cards) do not overwrite driver name with sysfs one when we
- already got it from ethtool, thus fixing bogus names registered though
- pci layer in kernel (#14163)
-
- * drakxtools.spec: 10.2-3mdk
-
-2005/03/09 Warly <warly at mandrakesoft.com>
-
- * share/logo-mandrake.png: rc1 logo
-
-2005/03/08 Funda Wang <fundawang at linux.net.cn>
-
- * share/rpmsrate: removed obsolete IMEs for zh_TW
-
-2005/03/08 Olivier Blin <oblin at mandrakesoft.com>
-
- * drakxtools.spec: use full path for net_applet icon in menu entry
- (#14346)
-
- * network/network.pm (wpa_supplicant_configure) scan hidden ssid
-
-2005/03/08 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/resolution_and_depth.pm: choose a 4/3 resolution by default
- xbox support (by Stew)
-
- * bootloader.pm: please perl_checker differently
-
- * Makefile: Vera is now in xorg
-
-2005/03/08 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Disable progress bar when copying rpms from CDs. (The
- change CD dialog
- clashes with it)
-
-2005/03/08 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * mouse.pm: mousedrake, detectloader support for XBox
-
- * bootloader.pm: perl_checker - bad /me
- mousedrake, detectloader support for XBox
-
-2005/03/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * interactive.pm, standalone.pm, ugtk2.pm: log program exiting
-
- * security/msec.pm (load_values) fix getting value when it's defined but 0
- (#14364)
- (get_function_value) fix getting value when it's 0 (#14364)
-
- * drakxtools.spec: fix 10.2-2mdk's changelog
- 10.2-2mdk
-
- * share/rpmsrate: install scim-input-pad for japanese users
-
-2005/03/08 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/network.pm (wpa_supplicant_configure) scan hidden ssid
-
-2005/03/08 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/resolution_and_depth.pm: choose a 4/3 resolution by default
- xbox support (by Stew)
-
-2005/03/08 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2005/03/07 Frederic Lepied <flepied at mandrakesoft.com>
-
- * share/rpmsrate: use fonts-ttf-dejavu instead of fonts-ttf-vera (bug
- #13493).
-
-2005/03/07 Funda Wang <fundawang at linux.net.cn>
-
- * lang.pm: added gcin setup
- Added settings for new traditional chinese IME gcin.
-
-2005/03/07 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakconnect: handle NEEDHOSTNAME and DHCP_HOSTNAME in Manage
- interface
- move DHCP settings in a notebook page
-
- * network/netconnect.pm: delete gateway if appropriate when configuring
- DSL devices too (#13978)
-
- * mdk-stage1/dhcp.h: export dhcp_domain too
-
- * mdk-stage1/network.c: remove spurious space
- try to reuse hostname and domain information from dhcp step (#14285)
- ask if the http proxy should be used for ftp (#13492)
- don't segault if proxy step is cancelled
-
-2005/03/07 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po: updated Bengali file
-
-2005/03/07 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: more and more fixes
-
-2005/03/07 Pixel <pixel at mandrakesoft.com>
-
- * diskdrake/interactive.pm: allow live resizing of reiserfs on lvm (as
- tested by Gaetan Lehmann). not tested
-
- * share/themes-galaxy.rc, install_gtk.pm, share/themes-blue.rc,
- share/list:
- - by default, gtk use /usr/share/themes/Galaxy/gtk-2.0/gtkrc,
- so add this gtkrc to the install, and so no need
- to have galaxy settings in themes-galaxy.rc
- => this fixes the doc theme not having the good shapes for the buttons
- - fix the worst pb in themes-blue.rc (even if we don't use it)
-
-2005/03/07 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.2-1mdk
-
- * share/po/br.po: update
-
-2005/03/06 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: more fixes..
-
-2005/03/06 Pixel <pixel at mandrakesoft.com>
-
- * diskdrake/interactive.pm, diskdrake/resize_ntfs.pm: ensure ntfsresize is
- available
-
-2005/03/06 shivahuang
-
- * share/po/zh_TW.po: updated po files
-
-2005/03/06 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: proofreading (gerard delafond)
-
-2005/03/06 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/03/05 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/adsl.pm: set Linetype in eagle-usb.conf to use CMVs
- create CMV symlinks for both POTS and ISDN lines
-
-2005/03/05 shivahuang
-
- * share/po/zh_TW.po: updated po files
-
-2005/03/04 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/adsl.pm: CMV support for eagle-usb
-
- * mdk-stage1/probing.c: remove unused variable
-
- * network/netconnect.pm: copy provider_id tag too
- add @network::ethernet::dhcp_clients
-
- * detect_devices.pm: add is_lan_interface
-
- * mdk-stage1/stage1.c: set MODE_TESTING too if DEBUGSTAGE1 is set
-
- * standalone/drakconnect: perl_checker fix
- allow to modify DHCP settings too
- use detect_devices::is_lan_interface
-
- * network/ethernet.pm: add @network::ethernet::dhcp_clients
-
- * network/adsl_consts.pm: use provider_id as key instead of id
- add provider IDs, comments, cleanups
-
-2005/03/04 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: 100% good to go!:)
- A few more fixes:)
- 100%!
- :)
-
-2005/03/04 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: do not check yaboot "magic" on ppc (it seems the magic we
- have is somewhat wrong), assuming we have yaboot installed (it is the
- only handled bootloader anyway)
-
-2005/03/04 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_steps_gtk.pm: Disallow to delect the first media listed in the
- "hdlists" file.
-
- * pkgs.pm: Modify new string in order to merge with KDE translations
- Fix passing installation method instead of description to
- install_any::getFile
- Add a wait message when downloading hdlists from network
-
- * share/po/fr.po: Translation nit
-
- * install_any.pm: Add an explicit error message instead of a built-in
- cryptic one (bug #14243)
-
-2005/03/04 shivahuang
-
- * share/po/zh_TW.po: updated po files
-
-2005/03/04 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/default.pm:
- - Let printerdrake recognize if the user edited /etc/cups/client.conf
- manually.
-
-2005/03/03 huftis
-
- * share/po/nn.po: Updated Norwegian Nynorsk translation.
-
-2005/03/03 Olivier Blin <oblin at mandrakesoft.com>
-
- * detect_devices.pm: add ralink RT2x00 interfaces type in comment
-
- * network/netconnect.pm: delete gateway settings if gateway device is
- invalid too (#11761)
-
-2005/03/03 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/fr.po,
- share/po/ta.po, share/po/vi.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: Added translation for "recommended"
- string
-
-2005/03/03 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_steps_gtk.pm, install_any.pm: perl_checker fixes
- Add a progress bar when copying rpms from the media to the hard disk
-
- * commands.pm: Avoid unnecessary stats.
-
- * share/po/nb.po: Fix .po syntax
-
-2005/03/03 shivahuang
-
- * share/po/zh_TW.po: updated po files
- updated po files
-
-2005/03/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: update
- update
-
-2005/03/03 Youcef Rabah Rahal <rahal at arabeyes.org>
-
- * share/po/ar.po: Sync with Arabeyes CVS
-
-2005/03/02 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/net_applet: refresh every second, and do not reread network
- conf at each refresh
-
- * network/netconnect.pm: delete gateway settings if reconfiguring the
- gateway interface to dhcp
-
-2005/03/02 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/zh_TW.po: fixed menu
-
- * share/po/af.po: updated po file
- small fix in Afrikaans file
-
- * share/po/bg.po: fixed menus
-
-2005/03/02 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: handle boot-as and master-boot (bugzilla #13846)
- fix comment
-
- * Xconfig/xfree.pm: add the various "names" for standard resolutions
- sort CVT_ratios by preference
- "keyboard" InputDevice can also be called "kbd"
-
- * install_any.pm: screenshot_dir__and_move(): use /tmp which is ramdisk
- instead of /tmp/stage2 which is now always read-only
-
-2005/03/02 rstandtke
-
- * share/po/de.po: some additions
-
-2005/03/02 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm, printer/printerdrake.pm:
- - Made the "(recommended)" in the printer/driver lists translateable
- (bug
- 10651)
-
- * share/rpmsrate:
- - Let hardware-specific GUI tools for HP printers not be installed by
- default
- during installation. They get only preloaded now, so that printerdrake
- can install them if needed (bug 13957).
-
-2005/03/02 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2005/03/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: fix 10.2-0.35mdk's changelog
- 10.2-0.35mdk
-
- * ugtk2.pm (create_scrolled_window) Gtk2::Html::View has native scrolling
- support and
- thus behave badly with GtkViewport
-
-2005/03/01 Daouda Lo <daouda at mandrakesoft.com>
-
- * any.pm:
- - webclient alternative is obsolete, launch browser with new
- /usr/bin/www-browser
- - check and launch browser according to wm
-
- * standalone/drakbug:
- - load link with /usr/bin/www-browser
- - use any::launch_browser_with_wm func to launch better suited
- browser
-
- * standalone/drakhelp:
- - load link with /usr/bin/www-browser
- - use any::launch_browser_with_wm
-
-2005/03/01 Frederic Crozat <fcrozat at mandrakesoft.com>
-
- * share/rpmsrate: add i18n packages for mozilla-firefox
-
-2005/03/01 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/probing.c: do not show a dialog box before loading network or
- SCSI drivers, we'll
- load it anyway ...
-
- * diskdrake/interactive.pm: remember encryption algorithm
- allow to choose encryption algorithm (#13472)
-
-2005/03/01 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/pt.po: corrected syntax error
-
-2005/03/01 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: more proof reading
-
-2005/03/01 pjetur
-
- * share/po/is.po: Small fixes
-
-2005/03/01 Pixel <pixel at mandrakesoft.com>
-
- * interactive.pm: when testing, don't silently default to newt
-
- * mygtk2.pm: stringify using a perl_checker compliant way
- - handle {list_ref} in ComboBox
- - handle more than one {ref} per widget
- - check that the string value of the ref doesn't change when it is set
- (maybe we should remove the REF or SCALAR prefix?)
-
- * Xconfig/monitor.pm: fix typo
- create {preferred_resolution} out of the edid detailed_timings and use
- it
- skip detailed_timings flagged bad_ratio
-
- * bootloader.pm: fix buggy get_append_memsize() (bugzilla #13874)
-
- * Xconfig/resolution_and_depth.pm: add a ratio choice, and restrict the
- resolutions to this choice
- - sort the whole resolutions to simplify the code, and get better
- choices
- - add a failsafe resolution
- create {preferred_resolution} out of the edid detailed_timings and use
- it
-
- * Xconfig/xfree.pm: add 1280x600 for VAIO PCG-C1M (bugzilla #5192)
- give up trying to only add modelines not defined in xorg, otherwise xorg
- will prefer the modelines we give here (eg: it will use 1024x768@50
- whereas it could use 1024x768@60)
- - when setting a resolution, create associated gtf modelines for
- various standard vfreqs
- (but don't do it for builtin_ModeLines (cf vesamodes and extramodes in
- xorg))
- - drop the Dell modelines (this is now cleanly handled)
- - drop the Vaio modeline (but this modeline was not gtf, will it work
- with the gtf modeline?)
- - export {ModeLine} raw to allow playing with pre_comment
-
- * Xconfig/parse.pm: fix section with only comments (putting the comment
- after the EndSection is wrong)
-
- * lang.pm: configure iocharset and codepage option for hal
-
-2005/03/01 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm:
- - Make sure that recommended driver is preselected in expert mode,
- even if the
- recommended driver is a manufacturer-supplied PPD with language tag.
- - Added possibility to add a remote LPD printer in beginner's mode
- (bug 13734)
- - Fixed incorrect display of accentuated characters in PPD options
- also for
- boolean options (bug 13928)
- - Let detected LPD printer model be shown in a pop-up window and not
- in the
- add printer wizard
- - Let detected socket printer model be shown if the IP/port was
- manually
- entered
- - Small fix on selection of test pages
- - Fixed add printer wizard ("Previous" and "Cancel") for printerdrake
- being
- run embedded in the MCC (bug 13929).
-
-2005/03/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/ethernet.pm (get_eth_cards) workaround buggy kernel until
- provided patch got applied (#12609)
- (get_eth_cards) backport fixes from HEAD:
- - workaround buggy kernel until provided patch got applied (#12609)
- - do not rely on broken ethtool from hostap drivers (#13979)
-
- * ugtk2.pm (Gtk2::ComboBox::set_popdown_strings) clear model before
- filling the list
-
- * share/rpmsrate: do not install gftp with gnome, it's not HIG compliant,
- it's not
- gtk+2, it's bog prone and browser & nautilus are better
-
- * Makefile.drakxtools, Makefile: fix build after pixel's pass
-
- * drakxtools.spec: 10.2-0.34mdk
- 10.2-0.33mdk
-
- * share/po/fr.po: fix bogus translation
-
-2005/02/28 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/02/28 mbukovjan
-
- * share/po/cs.po: Updated Czech translation.
-
-2005/02/28 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/ethernet.pm: do not rely on broken ethtool from hostap drivers
-
- * drakxtools.spec: add net_applet menu entry
-
- * network/netconnect.pm: enhance "wrong network mask format" message
- (#10712)
- allow to modify DHCP timeout
- handle PEERYP and PEERNTPD too (#9982)
- peerdns support (and assorted space fixes)
- apply USERCTL settings for modems too
-
- * standalone/net_applet: netprofile support, allow to select watched
- interface
-
- * standalone/drakconnect: enhance "wrong network mask format" message
- (#10712)
-
- * network/network.pm: write DHCP_TIMEOUT for DHCP connections
- write PEERYP and PEERNTPD for DHCP connections
- write PEERDNS for DHCP interfaces
-
-2005/02/28 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fr.po: updated French file
-
- * keyboard.pm: define 'compose:rwin' in XkbOptions when
- $keyboard->{GRP_TOGGLE}
- is different than "rwin_toggle" and also when $keyboard->{GRP_TOGGLE}
- is not defined.
-
- * share/po/sl.po: updated Slovenian file
- updated Slovenian file
-
- * share/po/vi.po: updated Vietnamese file
-
- * share/po/fa.po, share/po/nl.po, share/po/it.po, share/po/bs.po,
- share/po/sk.po, share/po/br.po, share/po/cy.po, share/po/et.po,
- share/po/ja.po, share/po/da.po, share/po/pt.po: updated Welsh, Persian,
- Italian adn Japanese files;
- ran msgmerge on all *.po files
-
-2005/02/28 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: minor fixes
- updates from eskild hustvedt:)
- a few fixes
-
-2005/02/28 Pixel <pixel at mandrakesoft.com>
-
- * rescue/make_partimage_save_rest_all, rescue/make_rescue_img:
- - in rest_all, try to restore from the cdrom
- - remove the debugging setting of leia as the partimage server
-
- * Xconfig/resolution_and_depth.pm:
- - remove ddcxinfos, replaced by monitor-edid (which is in a separate
- package)
- - add many resolutions (they are structured by aspect ratio for next
- move)
- - put the "Monitor preferred modeline" from EDID in xorg.conf
- - for this ModeLine must be exported from the monitor section
- - specifying a VendorName|ModelName in auto_inst is valid, don't
- overwrite it with edid probe
- - the strange /dev/zero needed (?) by ddcxinfos is no more needed
- - field {size} is now {diagonal_size}, and is no more "corrected"
- - add @CVT_ratios and @CVT_vfreqs (unused at the moment)
- - Getopt::Long is needed by monitor-parse-edid
- - drop hashes
- - handle lower than 640 resolutions
- (prepare for next move, introducing aspect ratio in choose_gtk)
-
- * mdk-stage1/disk.c, mdk-stage1/cdrom.c, mdk-stage1/stage1.h,
- mdk-stage1/tools.c, mdk-stage1/directory.c: new option "keepmounted" to
- allow the rescue media to be kept mounted
-
- * Xconfig/various.pm, any.pm, Makefile.config, drakxtools.spec,
- share/list, Xconfig/xfree.pm, Makefile.drakxtools, Xconfig/monitor.pm,
- tools/Makefile, install2.pm:
- - remove ddcxinfos, replaced by monitor-edid (which is in a separate
- package)
- - add many resolutions (they are structured by aspect ratio for next
- move)
- - put the "Monitor preferred modeline" from EDID in xorg.conf
- - for this ModeLine must be exported from the monitor section
- - specifying a VendorName|ModelName in auto_inst is valid, don't
- overwrite it with edid probe
- - the strange /dev/zero needed (?) by ddcxinfos is no more needed
- - field {size} is now {diagonal_size}, and is no more "corrected"
- - add @CVT_ratios and @CVT_vfreqs (unused at the moment)
- - Getopt::Long is needed by monitor-parse-edid
-
- * rescue/list: add xfs_repair to the rescue (bugzilla #10488)
-
- * bootloader.pm: fix typo
- have install.sh 755 (as suggested by Vincent Meyer)
-
-2005/02/28 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_steps_gtk.pm: Make regexps a bit more lenient.
-
-2005/02/28 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Bugzilla 13998 - Sort list of nbis.
- Bugzilla 14031 - cleint files created as char devices.
-
-2005/02/28 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm, install_steps_interactive.pm:
- - Let country and not language decide about default paper size
-
-2005/02/28 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2005/02/28 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: fix adding net_applet menu entry
- 10.2-0.32mdk
-
- * share/po/br.po: update
- typo fixes
-
-2005/02/28 Youcef Rabah Rahal <rahal at arabeyes.org>
-
- * share/po/ar.po: Arabic QA
- QA for Arabic
-
-2005/02/27 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/02/27 Reinout van Schouwen <reinout at cs.vu.nl>
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
- * DrakX
- Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
- * DrakX
-
-2005/02/26 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: translated new 78 messages
-
-2005/02/26 vljubovic
-
- * share/po/bs.po: Latest changes to Bosnian files
-
-2005/02/25 Keld Jørn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: updates
- gi/perl-install/share/po/da.po
-
-2005/02/25 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/network.pm: write USERCTL too
-
- * network/netconnect.pm: pre-detect modem device (instead of mouse device
- ...) and do it at the
- right place
- remove debug code (spotted by Pixel)
- allow to enable USERCTL
- space fixes
- space fixes
- allow to select "unlisted" provider in adsl provider list
-
- * network/tools.pm: do not ask for root password if interface allows
- USERCTL
-
-2005/02/25 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po: updated Bengali file
-
- * share/po/wa.po: small update
-
- * share/po/sv.po, share/po/gl.po: updated Swedish file; corrected
- "default:LTR" entry for Galician
-
- * keyboard.pm: changed keyboard to "us" for Chinese
-
-2005/02/25 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/resolution_and_depth.pm: now that i understand hsync and vsync,
- i can filter using HorizSync much more nicely :)
-
-2005/02/25 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm:
- - Driver "oki4w" was renamed to "oki4drv". Adapted printerdrake
- appropriately
-
-2005/02/25 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
- updated slovak translation
-
-2005/02/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakxtv: perl_checker fixes
-
- * standalone/drakfont (backend_mod) fix uninstalling fonts (#9324)
- (backend_mod) fix uninstalling fonts (#9324)
- rollback unwanted changes
- (backend_mod) fix uninstalling fonts (#9324)
-
- * drakxtools.spec: 10.2-0.31mdk
- 10.2-0.30mdk
-
- * share/po/ja.po: fix wrong key accelerator (#13540)
-
- * standalone/draksec: rollback unwanted changes
-
- * standalone/logdrake: simplify
- perl_checker fixes
-
- * share/po/br.po: update
-
- * standalone/drakconnect: perl_checko fixes (especially fix wrong message)
-
-2005/02/24 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation.
-
-2005/02/24 huftis
-
- * share/po/nn.po: Updated Norwegian Nynorsk translation.
-
-2005/02/24 Keld Jørn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: updates
- soft/control-center/po/da.po soft/mdkonline/po/da.po
- soft/urpmi/po/da.po gi/perl-install/share/po/da.po
-
-2005/02/24 mareklaane
-
- * share/po/et.po: Updated translation.
-
-2005/02/24 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/network.pm: do not update kde config file if kde isn't installed
- (spotted by Mathieu Geli)
- fix typos
- minimal WPA support
- always restart wlan-ng interface
- move wlan-ng stuff in network::network
-
- * network/tools.pm: minimal WPA support
-
- * network/netconnect.pm: minimal WPA support
- move wlan-ng stuff in network::network
- space cleanup
- spaces cleanup
-
-2005/02/24 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
- share/po/sl.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
- share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: updated pot file
-
- * standalone/net_applet: no space before question marks in English
- no space after colon in English
-
- * printer/printerdrake.pm: move "HPOJ" and "HPLIP" as parameters of
- translatable strings,
- so common phrases need to be translated only once.
- perl_cheker doesn't like a line break between function name and
- parenthesis
-
- * share/po/nn.po, share/po/wa.po: updated Walloon file
- updated pot file
-
- * share/po/da.po, share/po/eu.po: updated Basque and Danish files
- updated pot file
-
- * share/po/es.po: updated Spanish file
- updated pot file
-
-2005/02/24 Pixel <pixel at mandrakesoft.com>
-
- * fs/mount_options.pm: if we remove a weird option, also remove nodev,
- noexec and nosuid
- (but don't do it everytime, since those options can be usefully used for
- /tmp for example)
- fix typo
- fix typo
- fix typo
-
-2005/02/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/lt.po: merge in strings from urpmi & rpmdrake
-
- * standalone/drakups: perl_checker fixes
- fix reading UPS db: some UPS have the same name but differes in the
- way they're plugged into the system (eg: USB vs serial cable), so we
- need to differ them through the "extra" field
- adapt to new Libconf API
-
- * share/po/br.po: merge in strings from urpmi & rpmdrake
- update
- minor update
-
- * drakxtools.spec: 10.2-0.29mdk
-
- * .perl_checker: blacklist bad Libconf package
-
- * share/po/eo.po: merge in strings from urpmi & rpmdrake
- update
-
- * share/po/id.po, share/po/ro.po, share/po/mk.po, share/po/th.po,
- share/po/af.po, share/po/az.po, share/po/sr@Latn.po, share/po/ko.po,
- share/po/bg.po, share/po/lv.po: update
-
- * standalone/drakxtv: explain
- fix #13865: scan TV channels for TV ocards that do not require any
- driver configuration
-
-2005/02/24 willysr
-
- * share/po/id.po: Updated
-
-2005/02/23 fisher
-
- * share/po/uk.po: ukrainian tr-tion update
-
-2005/02/23 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/02/23 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakconnect: remove spurious spaces
-
- * network/modem.pm: remove all non-digit characters in phone number
- (#10813)
-
- * network/network.pm: handle wpa_supplicant files
-
-2005/02/23 Pixel <pixel at mandrakesoft.com>
-
- * install_any.pm: fix
-
- * interactive/gtk.pm:
- - fix displaying "Advanced" instead of "Basic" in advanced_state by
- default
- - cleanup
-
- * ugtk2.pm: fix usage of create_file_selector()
-
- * common.pm: cleanup is_xbox() here too
-
- * detect_devices.pm: write code correctly
- "pae" flag in the cpu is needed for new kernel
- SuSE also have "Hand Held" as a laptop (ch_type in { 8, 9, 10, 11, 14 })
-
-2005/02/23 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * ugtk2.pm: Force to open file selector as a modal window (bug 13942)
-
- * share/po/zh_TW.po: Fix missing \n
-
-2005/02/23 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * keyboard.pm, detect_devices.pm, common.pm, Xconfig/monitor.pm,
- Xconfig/xfree.pm: XBox support - XFdrake
-
- * standalone/drakbackup, standalone/drakTermServ: Drop banner, using up
- too much window space. Perl_checker mods.
-
-2005/02/23 shivahuang
-
- * share/po/zh_TW.po: merge correctly between 1.352 and 1.353
-
-2005/02/23 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm:
- - Fixed bug of accentuated characters in PPDs not correctly reproduced
- in the
- printer options dialog.
-
- * printer/main.pm:
- - Made possible modifying the options on a non-Foomatic queue not set
- up
- with printerdrake.
-
-2005/02/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * install_any.pm (default_packages) setup acerk for another laptop (which
- doesn't need
- any option)
-
- * network/adsl_consts.pm: add norwegian ADSL providers (Eskild Hustvedt)
-
- * share/po/br.po: update
-
-2005/02/23 vljubovic
-
- * share/po/bs.po: Fixes in Bosnian translation
-
-2005/02/22 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: finished translation for 10.2
-
-2005/02/22 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
- melo
-
-2005/02/22 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/net_applet: reflect new label from drakconf
- disable activefw by default
-
-2005/02/22 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po: updated Bengali file
-
- * share/po/ky.po: updated Kirghiz file
-
- * share/po/sl.po: updated Slovenian file
-
-2005/02/22 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_steps_gtk.pm, pkgs.pm: Verify free space on disk for copying
- rpms
-
- * install_any.pm: Fix location of hdlist for rpms copied on disk
-
-2005/02/22 rstandtke
-
- * share/po/de.po: some fixes
-
-2005/02/22 shivahuang
-
- * share/po/zh_TW.po: updated po files
-
-2005/02/22 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm:
- - Corrected default settings for printer auto-detection in beginner's
- mode
-
-2005/02/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakfont (interactive_mode) typo fix
-
- * standalone/drakconnect, standalone/net_applet: reuse the very same
- message
- unbreak blino change: reuse string from mcc since that's what will be
- displayed and allter *all* callers
-
- * drakxtools.spec: 10.2-0.28mdk
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/uk.po, share/po/mn.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/el.po, share/po/bg.po,
- share/po/cs.po, share/po/uz@Latn.po: merge missing strings from mcc's
- domain
-
- * share/rpmsrate, lang.pm: adapt to new uim splitting
-
-2005/02/22 Youcef Rabah Rahal <rahal at arabeyes.org>
-
- * share/po/ar.po: Arabic QA
-
-2005/02/21 huftis
-
- * share/po/nn.po: Updated Norwegian Nynorsk translation.
-
-2005/02/21 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakids: add an explanation about the Gtk2::SimpleList
- workaround
- uggly workaround of Gtk2::SimpleList bugs
-
-2005/02/21 Pixel <pixel at mandrakesoft.com>
-
- * share/rpmsrate: fix scim-anthy appearing twice
-
-2005/02/21 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/data.pm:
- - Removed "gpr" from the packages to be installed. It is taken from
- the distro
- because it is not maintained anymore.
-
-2005/02/21 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2005/02/21 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: part. update
-
-2005/02/21 huftis
-
- * share/po/nn.po: Updated Norwegian Nynorsk translation.
-
-2005/02/21 mareklaane
-
- * share/po/et.po: Translation fixes.
-
-2005/02/21 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sl.po: updated Slovenian file
-
-2005/02/21 Pixel <pixel at mandrakesoft.com>
-
- * lang.pm: do URPM::add_macro in write_langs(), and require URPM instead
- of using it
- (for now it's only used during install) (bugzilla #13796)
-
-2005/02/21 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2005/02/20 Funda Wang <fundawang at linux.net.cn>
-
- * lang.pm: New koi8-u font size. bug#13809
-
-2005/02/20 huftis
-
- * share/po/nn.po: Updated Norwegian Nynorsk translation
-
-2005/02/20 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakfont: perl_checker fixes
- really use the file selection message
- allow to select multiple files
-
-2005/02/20 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * keyboard.pm: keyboard values for "lb" language.
-
-2005/02/20 pjetur
-
- * share/po/is.po: End of days work
- End of another day
-
-2005/02/20 Till Kamppeter <till at mandrakesoft.com>
-
- * standalone/scannerdrake:
- - Let unsupported scanners be visibly marked in the scanners list (bug
- #12049)
- - Load kernel modules (and make them loaded on boot) if specified in
- ScannerDB
- - Tell user if his scanner requires manual editing of config files to
- work
- (the appropriate scanner models are marked in ScannerDB)
-
-2005/02/19 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: small typo fix
-
- * keyboard.pm: small fix
-
-2005/02/19 pjetur
-
- * share/po/is.po: More translations
-
-2005/02/19 Till Kamppeter <till at mandrakesoft.com>
-
- * scanner.pm:
- - Added support for the new keywords MANUAL, MANUALREQUIRED, and
- KERNEL in the
- scanner database
-
-2005/02/18 fisher
-
- * share/po/uk.po: translation update
-
-2005/02/18 Funda Wang <fundawang at linux.net.cn>
-
- * lang.pm: scim-chinese has been renamed to scim-pinyin.
-
- * share/rpmsrate: uim has a new gtk frontend
- scim-chinese has been renamed to scim-pinyin.
-
-2005/02/18 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/02/18 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/activefw.pm: support GetReports method
-
- * standalone/net_applet: remove spurious spaces
- show unprocessed attacks when the applet starts
- store attacks in a queue instead of blocking DBus bus with a Gtk2 main
- loop
- let the daemon handle the blacklist policy in automatic mode
-
- * standalone/drakgw: indentation/spaces cleanups
-
- * Makefile.config, drakxtools.spec, Makefile.drakxtools: don't package
- drakids for now
-
-2005/02/18 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * lang.pm: a small note so I don't forget why I did it that way
-
- * share/po/sl.po: updated po file
- updated Slovenian file
-
- * share/po/pt.po: updated Slovenian file
-
-2005/02/18 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm, partition_table.pm: media_browser returns
- a filehandle when non save
-
- * any.pm: really fix the typo!
- fix typo
- factorize code in ask_window_manager_to_logout_then_do()
-
- * install_any.pm:
- - add HTTP support in media_browser
- - HTTP support is non save only
- media_browser returns a filehandle when non save
-
- * diskdrake/interactive.pm: use ->ask_filename instead of ->ask_file (esp.
- useful in "save" mode)
- factorize code in ask_window_manager_to_logout_then_do()
- don't reboot if the window manager did not exit
- media_browser returns a filehandle when non save
-
- * install_steps.pm: generated auto_install.cfg.pl can contain a somewhat
- empty printer config, but not really empty
- don't let upNetwork break /etc/protocols when the install is not done
- yet
- generated auto_install.cfg.pl can contain a somewhat empty printer
- config, but not really empty
- generated auto_install.cfg.pl can contain a somewhat empty printer
- config, but not really empty
-
- * standalone/XFdrake: factorize code in
- ask_window_manager_to_logout_then_do()
-
- * mdk-stage1/directory.c: fix using the mirror tree when there is an iso
- at the root of the mirror but we don't use it (or can't use it)
-
- * interactive.pm: ensure the "range" entry returned value is bounded as
- asked
- (useful for backends not handling "range" correctly, like
- interactive::newt)
- (bugzilla #13744)
-
-2005/02/18 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * detect_devices.pm: Detect XBox, don't probe for floppy on XBox.
-
-2005/02/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/rpmsrate: prefer uim-qt for japanese under KDE
-
- * share/po/ga.po: update
-
-2005/02/18 Youcef Rabah Rahal <rahal at arabeyes.org>
-
- * share/po/ar.po: Sync with Arabeyes CVS -> 100% Arabic translation :-)
-
-2005/02/17 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/02/17 Olivier Blin <oblin at mandrakesoft.com>
-
- * Makefile: probe.c is located in c/
-
- * network/shorewall.pm: definitively get rid off net_cnx scripts
- add get_default_device
- remove unneeded test
- use network::shorewall::get_net_device
- add and use network::shorewall::get_net_device
-
- * network/netconnect.pm: titifix
- perl_checker fix
- remove unused network::netconnect::get_net_device
-
- * standalone/drakconnect: fix typo
- perl_checker fixes
- don't use net_cnx_up anymore
-
- * network/tools.pm: perl_checker fixes
- revert some previous commit
- net_cnx scripts shouldn't be used anywhere now
- remove set_cnx_script
- remove write_cnx_script
-
- * standalone/drakvpn: perl_checker fixes
- use network::shorewall::get_net_device
-
- * drakxtools.spec: ship drakids in drakxtools
- do not ship activefw.pm in drakxtools-backend but in drakxtools
-
- * Makefile.drakxtools: move drakids in /usr/bin
-
- * standalone/drakids: clear white list too
-
- * standalone/net_applet: allow to enable automatic mode from popup
- use only one 'edge' ButtonBox
-
- * standalone/drakgw: perl_checker fixes
- use network::shorewall::get_net_device
- net_cnx scripts shouldn't be used anymore
-
- * Makefile.config: ship drakids
-
-2005/02/17 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/tg.po, share/po/ltg.po, share/po/nb.po, share/po/uz.po,
- share/po/sk.po, share/po/ru.po, share/po/pt_BR.po, share/po/br.po,
- share/po/is.po, share/po/sl.po, share/po/nn.po, share/po/et.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/vi.po,
- share/po/fr.po, share/po/nl.po, share/po/it.po, share/po/uk.po,
- share/po/eu.po, share/po/es.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/de.po, share/po/fi.po, share/po/he.po,
- share/po/cy.po, share/po/da.po, share/po/cs.po, share/po/uz@Latn.po:
- updated Slovenian file;
- fixed various MandrakeSoft -> Mandrakesoft etc.
-
-2005/02/17 pjetur
-
- * share/po/is.po: cleaning up more
-
-2005/02/17 Pixel <pixel at mandrakesoft.com>
-
- * diskdrake/interactive.pm: in case someone use diskdrake only to create
- partitions, shut up the predefined mount point automatic choice
-
- * detect_devices.pm, install_any.pm:
- - create dmidecode_category()
- - don't use field {string} when not needed
- - better use regexps on dmidecode returned strings (even the kernel
- use strstr)
-
-2005/02/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/service_harddrake: perl_checko cleanup
-
- * standalone/keyboarddrake: simplify
-
- * share/rpmsrate: only install gnome-volume-manager for KDE & GNOME
- desktops
- KDE uses gnome-volume-manager too
- install cpufreqd on laptops w/o KDE (#13697)
-
- * share/po/br.po: update
-
-2005/02/16 Frederic Crozat <fcrozat at mandrakesoft.com>
-
- * share/rpmsrate: install nautilus-filesharing when installing nautilus
- install desktop-printing when installing GNOME
-
-2005/02/16 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/02/16 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakids: use foreach (perl_checker)
- fix whitelist display and unwhitelist call
- use drakfirewall icon
- handle Whitelist signal
- handle whitelist
- allow to sort blacklist by date, attacker or attack type
-
- * standalone/net_applet: rename get_mode as get_interactive
-
- * network/activefw.pm: rename get_mode as get_interactive
- add generic call_method sub to factorize
- typo fix
- handle whitelist
-
-2005/02/16 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sl.po: updated Slovenian file
- updated Slovenian file
-
- * share/po/vi.po: updated Vietnamese file
-
-2005/02/16 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: More updates:)
- minor update
-
-2005/02/16 Pixel <pixel at mandrakesoft.com>
-
- * patch/patch-updatemodules.pl: for the real 10_1, not the 10_1-update
- branch
-
-2005/02/16 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm, printer/printerdrake.pm:
- - If a printer is set up with HPLIP and has still an old HPOJ
- configuration,
- it will be automatically removed now.
-
-2005/02/16 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/data.pm: list usb mice that have not driver set as "Mouse:xxx"
- in usbtable (#13575)
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/compssUsers.pl, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/uk.po,
- share/po/mn.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
- share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/el.po, share/po/bg.po, share/po/cs.po,
- share/po/uz@Latn.po: typo fix (Per Oyvind Karlsen)
-
- * standalone/keyboarddrake: better display of keyboard layouts by using a
- tree (rationale: big
- pull-down menu is slow to browse)
-
- * share/rpmsrate: rollback
- typo fix (Per Oyvind Karlsen)
- include more EVMS packages
-
- * drakxtools.spec: 10.2-0.27mdk
-
- * share/po/br.po: typo fix (Per Oyvind Karlsen)
- update
- update
- typo fixes
-
-2005/02/16 Youcef Rabah Rahal <rahal at arabeyes.org>
-
- * share/po/ar.po: Arabic translation (sync with arabeyes CVS)
-
-2005/02/15 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakids: perl_checker fixes
- delete unblacklisted entries from the list
- handle Init signal (look again for daemon if received)
- clear blacklist when needed
- add quit button
- initial import
-
- * standalone/net_applet: fix typo again
- fix typo
- remove unneeded variable
- use network::activefw;
-
- * network/activefw.pm: allow to look for daemon after startup
- add unblacklist
- initial import
-
-2005/02/15 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nb.po: corrected encoding
-
- * share/po/sr@Latn.po: fixed cyrillic mix
-
- * share/po/th.po: small fix
- small fix
-
- * share/po/sl.po: updated Slovenian file
-
-2005/02/15 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: More updates again!:)
- Even more fixes:)
-
-2005/02/15 Pixel <pixel at mandrakesoft.com>
-
- * mygtk2.pm: add FileChooser creation and rollback ugly ->run thing
- (hopefully now unneeded)
-
- * ugtk2.pm: _ask_dir and _ask_file now use FileChooser
-
- * tools/cvslog2changelog.pl: fix typo
-
- * install_steps_gtk.pm, diskdrake/interactive.pm, install_any.pm,
- install_steps_interactive.pm: replace load/save from floppy with using
- media_browser()
-
- * interactive/gtk.pm, interactive.pm: create ->ask_filename and
- ->ask_directory to replace ->ask_file
-
-2005/02/15 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Fix bug 13661 : umounting a supplementary CD wasn't done
- cleanly after failure
-
- * install_steps_gtk.pm, pkgs.pm: Support media size check when copying
- every rpm on HD
-
-2005/02/15 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm: Force only ASCII letters, numbers, and
- underscores being used in print queue names.
-
-2005/02/15 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/id.po, share/po/ru.po,
- share/po/gl.po, share/po/pt_BR.po, share/po/br.po, share/po/th.po,
- share/po/sl.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
- share/po/be.po, share/po/mn.po, share/po/ko.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/he.po, share/po/lt.po,
- share/po/ca.po, share/po/tg.po, share/po/uz.po, share/po/mk.po,
- share/po/ro.po, share/po/is.po, share/po/af.po, share/po/hi.po,
- share/po/az.po, share/po/zh_TW.po, share/po/ta.po, share/po/sq.po,
- share/po/sr@Latn.po, share/po/eo.po, share/po/bg.po, share/po/el.po,
- share/po/lv.po: update
-
-2005/02/15 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/activefw.pm: initial import
-
- * standalone/net_applet: remove unneeded variable
- use network::activefw;
-
-2005/02/15 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/th.po: small fix
- small fix
- automerging
-
- * share/po/nb.po: corrected encoding
-
- * share/po/ltg.po, share/po/ky.po, share/po/uz.po, share/po/ms.po,
- share/po/ro.po, share/po/fur.po, share/po/br.po, share/po/hr.po,
- share/po/tr.po, share/po/ta.po, share/po/sr@Latn.po, share/po/sq.po,
- share/po/ga.po, share/po/be.po, share/po/mn.po, share/po/am.po,
- share/po/ko.po, share/po/sr.po, share/po/lt.po, share/po/eo.po,
- share/po/el.po, share/po/lv.po, share/po/uz@Latn.po: automerging
-
-2005/02/15 Per Øyvind Karlsen <peroyvind at linux-mandrake.com>
-
- * share/po/nb.po: Even more fixes:)
-
-2005/02/15 Pixel <pixel at mandrakesoft.com>
-
- * mygtk2.pm: add FileChooser creation and rollback ugly ->run thing
- (hopefully now unneeded)
-
- * install_steps_gtk.pm, diskdrake/interactive.pm, install_any.pm,
- install_steps_interactive.pm: replace load/save from floppy with using
- media_browser()
-
- * ugtk2.pm: _ask_dir and _ask_file now use FileChooser
-
- * tools/cvslog2changelog.pl: fix typo
-
- * interactive/gtk.pm, interactive.pm: create ->ask_filename and
- ->ask_directory to replace ->ask_file
-
-2005/02/15 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_steps_gtk.pm, pkgs.pm: Support media size check when copying
- every rpm on HD
-
-2005/02/14 Funda Wang <fundawang at linux.net.cn>
-
- * lang.pm: Modified font settings for zh_CN and zh_TW, 10pt would be fine
- to New Sung
- rather than 14pt.
-
-2005/02/14 peroyvind
-
- * share/po/nb.po: Updates from Eskild Hustvedt:)
-
-2005/02/14 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * detect_devices.pm (probeSerialDevices) simplify
-
- * standalone/service_harddrake: better style
-
-2005/02/13 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/02/13 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ja.po: updated Japanese file
-
-2005/02/13 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/monitor.pm: protect against bad depth (may occur on ppc?)
-
-2005/02/13 Reinout van Schouwen <reinout at cs.vu.nl>
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
- * drakconf, DrakX
-
-2005/02/13 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm, printer/printerdrake.pm: Allow HPLIP setup also when
- setting up the print queue manually.
-
-2005/02/12 mbukovjan
-
- * share/po/cs.po: Updated Czech translations
-
-2005/02/12 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/eu.po, share/po/DrakX.pot: updated Basque file
-
- * share/po/cy.po: updated Welsh file
-
-2005/02/12 rstandtke
-
- * share/po/de.po: some additions
-
-2005/02/11 Frederic Crozat <fcrozat at mandrakesoft.com>
-
- * share/rpmsrate: GNOME is now using gnome-volume-manager instead of
- magicdev
- -install GNOME software if GNOME AND KDE are selected at install
- -install gthumb instead of gqview
- -install sound-juicer and rhythmbox for sound and GNOME
-
-2005/02/11 fisher
-
- * share/po/uk.po: translation update
-
-2005/02/11 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
-
- * tools/ddcprobe/Makefile: ppc fixes (danny)
-
-2005/02/11 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/02/11 mareklaane
-
- * share/po/et.po: Updated and fixed translation.
-
-2005/02/11 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * lang.pm: Don't use the RPM_LANG_INSTALL environment variable anymore
-
- * install_any.pm: Sort media names in recapitulative message
-
-2005/02/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/service_harddrake: fix removing a PCMCIA controller
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/da.po, share/po/ca.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
- share/advertising/10.pl, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/uk.po, share/po/mn.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/el.po, share/po/bg.po,
- share/po/cs.po, share/po/uz@Latn.po: fix CD-ROM acronym
-
- * drakxtools.spec: 10.2-0.25mdk
-
- * harddrake/sound.pm: align
- add snd-hdspm & snd-indigo
- add snd-emu10k1x
-
- * pkgs.pm: do not favor perl-GTK
-
- * modules.pm: add various/crypto category (support for hardware
- accelerated crypto)
- (write_preload_conf) preload padlock driver for VIA C3 that have RNG
- (crypto hw) enabled
-
-2005/02/11 Youcef Rabah Rahal <rahal at arabeyes.org>
-
- * share/po/ar.po: Arabic translation + a few fixes
- Arabic translation
-
-2005/02/10 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2005/02/10 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/02/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fr.po: updated Slovenian file
- updated French file
-
- * share/po/sl.po: updated Slovenian file
-
-2005/02/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/list: include dmraid
-
- * share/rpmsrate: install hotkeys even when KDE isn't selected
-
- * docs/HACKING: add another required package (dmraid)
-
- * detect_devices.pm (isTVcard) better style
- (probeSerialDevices) really "install" serial modules
-
-2005/02/10 Youcef Rabah Rahal <rahal at arabeyes.org>
-
- * share/po/ar.po: Sync with arabic translation CVS
-
-2005/02/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fr.po: updated French file
-
- * share/po/ja.po: updated Japanese file
-
-2005/02/10 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm:
- - Added help text for printers used with HPLIP.
- - Let "ask_warn()" messages not embed in the wizard, this breaks the
- "Cancel" button (help texts when MF device queue is added).
-
- * printer/printerdrake.pm: Tell that card reader is USB storage in the
- HPLIP help text only if the device is actually connected via USB.
- - Added help text for printers used with HPLIP.
- - Let "ask_warn()" messages not embed in the wizard, this breaks the
- "Cancel" button (help texts when MF device queue is added).
-
-2005/02/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * detect_devices.pm (isTVcard) only look for drivers configurable by
- drakxtv
- (getTVcards) rely on "multimedia/tv" category
- add various/serial category and thus add support for mice and modems
- connected to multiport serial cards
- add network/modem category, thus adding support for ACP (Mwave) modems
-
- * network/netconnect.pm: fix ndiswrapper installing: always install it if
- needed (btw run faster if
- already installed)
- fix stepping back from lan interface step (impossible when using
- ndiswrapper
- and when there's only one interface)
- simplify ndiwrapper step chaining
-
- * drakxtools.spec: typo fix in 10.2-0.24mdk's changelog
- 10.2-0.24mdk
- fix 10.2-0.23mdk's changelog
- 10.2-0.23mdk
-
- * modules.pm (write_preload_conf) typo fix
- (write_preload_conf) rely on "multimedia/tv" category, thus managing
- more TV cards
- (write_preload_conf) minimal joystick support: preload proper modules
- (though
- only those on sound cards from Creative Labs and Fortemedia are
- detectable by
- pci_probe()...)
- (write_preload_conf) simplify and support multiple different AGP
- controllers
- (though unprobable)
- (write_preload_conf) minimal DVB support: preload proper modules
- add various/laptop category (only toshiba is detectable by pci_probe()
- though...)
-
- * mygtk2.pm (main) fix FileSelection (inactive & unusable window)
-
- * share/po/br.po: update
-
- * standalone/drakxtv: do not complain about no tv cards when there're but
- they do not
- require any configuration beyond loading proper module (#7443, #11270
- and the like)
-
- * harddrake/data.pm: do not detect speakers as keyboards
- rely on new "multimedia/webcam" category for detecting webcams
-
-2005/02/09 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/02/09 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/net_applet: perl_checker fixes
-
-2005/02/09 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
- share/po/ky.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/eu.po,
- share/po/lv.po, share/po/hu.po, share/po/id.po, share/po/ru.po,
- share/po/br.po, share/po/sl.po, share/po/nn.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/mn.po, share/po/uk.po,
- share/po/am.po, share/po/lt.po, share/po/cy.po, share/po/tg.po,
- share/po/bs.po, share/po/fur.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/vi.po, share/po/fr.po, share/po/ta.po,
- share/po/nl.po, share/po/de.po, share/po/tl.po, share/po/eo.po,
- share/po/el.po, share/po/bg.po, share/po/cs.po, share/po/uz@Latn.po:
- updated pot file
-
- * share/po/sv.po, share/po/nb.po: updated pot file
- updated Swedish and Norwegian files
-
- * share/po/it.po: updated Italian file
- updated pot file
-
- * share/rpmsrate: Arabic-only fonts are useless for "fa" or "ur" locales
-
- * share/po/fa.po: updated Persian file
- updated pot file
-
- * share/po/es.po: updated po file
- updated pot file
-
- * lang.pm: changed arabic font for KDE ("Roya" doesn't have ascii glyphs;
- "Terafik" does)
-
-2005/02/09 peroyvind
-
- * share/po/nb.po: * translate the word "daemon" to norwegian
- * various corrections
- updated
-
-2005/02/09 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: fix ugly typo (especially causing acpi to not be set in
- drakboot --boot)
-
-2005/02/09 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * ugtk2.pm: Add the possibility to call a callback just after widget
- initialisation in
- ask_browse_tree_info_given_widgets().
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/sl.po, share/po/nn.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/mn.po, share/po/uk.po,
- share/po/am.po, share/po/lt.po, share/po/cy.po, share/po/tg.po,
- share/po/bs.po, share/po/fur.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/fr.po, share/po/ta.po, share/po/vi.po,
- share/po/nl.po, share/po/de.po, share/po/tl.po, share/po/eo.po,
- share/po/bg.po, share/po/cs.po, share/po/el.po, share/po/uz@Latn.po:
- Make an error message more user-friendly
-
- * install_any.pm: Make an error message more user-friendly
- make perl_checko, the little bot, happy
- Remove "Cancel" button from the supplementary media selection window
-
-2005/02/09 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm: Added automatic setup of HP printers with
- HPLIP.
-
- * printer/main.pm: Added reading the printing technology type in the HPLIP
- model database.
- Added automatic setup of HP printers with HPLIP.
- Added subroutine to parse HPLIP device database XML file.
-
-2005/02/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * fs.pm (mount) let's support ntfs and reorder fs list btw (#3653)
-
- * drakxtools.spec: 10.2-0.22mdk
- 10.2-0.21mdk
- add bug reference in 10.1-14mdk's changelog
-
- * standalone/service_harddrake: prevent adding spurious empty lines at end
- of /etc/hotplub/blacklist on stop
-
-2005/02/08 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/02/08 mareklaane
-
- * share/po/et.po: Menus and some more translation fixes.
-
-2005/02/08 Olivier Blin <oblin at mandrakesoft.com>
-
- * drakxtools.spec: start automatically net_applet in fluxbox and XFce4 too
-
-2005/02/08 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fr.po: updated pot file
- updated French file
- updated pot file
-
- * share/po/gl.po: updated pot file
- updated pot file
- updated pot file
-
- * share/keyboards.tar.bz2, keyboard.pm: synchronized keyboards with X11;
- added second bengali layout;
- make Serbian cyrillic use Serbian latin (isntead of "us") for latin
- layout
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/hr.po, share/po/be.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/he.po, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/ltg.po, share/po/nb.po,
- share/po/ky.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/uk.po, share/po/mn.po, share/po/am.po,
- share/po/lt.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/el.po, share/po/bg.po, share/po/cs.po,
- share/po/uz@Latn.po: updated pot file
- updated pot file
-
- * share/po/ja.po: updated pot file
- updated pot file
- updated Japanese file
-
- * printer/printerdrake.pm: translatable string already in use
-
- * standalone/drakbug: "%s" is not a translatable thing (changed N() ->
- translate())
-
- * share/po/cy.po: updated Welsh file
- updated pot file
- updated pot file
-
-2005/02/08 peroyvind
-
- * share/po/nb.po: complete translation from Eskild:)
-
-2005/02/08 Pixel <pixel at mandrakesoft.com>
-
- * any.pm: allow mounting isOtherAvailableFS filesystems read-only
-
- * ugtk2.pm: {rwindow} is more probably a mygtk2::MagicWindow
-
- * standalone/drakbug: cleanup this mess
-
- * fs/format.pm: workaround perl limitation
-
- * fs/type.pm: add iso9660 in isOtherAvailableFS
- detect iso9660 filesystem
-
- * fsedit.pm: when the partition table is empty, try to see if we are not
- using the plain disk
-
- * install2.pm, fs.pm, modules.pm, mdk-stage1/probing.c: new kernel doesn't
- like usbdevfs any more, it wants usbfs
-
-2005/02/08 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_steps_gtk.pm: Better wording for a couple of strings
- Don't propose to copy RPMs on disk for ISO installation method
-
- * any.pm: Allow upper case letters in users' real names.
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/sl.po, share/po/nn.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/mn.po, share/po/uk.po,
- share/po/am.po, share/po/lt.po, share/po/cy.po, share/po/tg.po,
- share/po/bs.po, share/po/fur.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/vi.po, share/po/fr.po, share/po/ta.po,
- share/po/nl.po, share/po/de.po, share/po/tl.po, share/po/eo.po,
- share/po/bg.po, share/po/cs.po, share/po/el.po, share/po/uz@Latn.po:
- Better wording for a couple of strings
-
- * docs/HACKING: Add some more necessary RPMs
-
-2005/02/08 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm: Fixed (worked around?) bug of parallel HP MF devices
- not being set up correctly with HPOJ (probably bad interaction with
- udev).
- - Corrected recognition of driver name in Foomatic-generated PPDs.
- - Conserve auto-detection data when a Foomatic printer entry is
- replaced by an
- entry from a native PostScript PPD.
-
- * printer/detect.pm:
- - Prevented restarting of HPOJ and reloading the parallel port kernel
- modules
- when printerdrake's queue generator is called by the hotplug script.
-
- * printer/printerdrake.pm: Updated device destinctions for HPOJ to the
- newest models.
- - Prevented restarting of HPOJ and reloading the parallel port kernel
- modules
- when printerdrake's queue generator is called by the hotplug script.
- Limited automatically generated print queue names to 12 characters and
- warn user if he manually enters longer names. Names longer than 12
- characters will make the printer unaccessible for certain Windows
- clients (bug #12674).
-
- * printer/data.pm: Added hplip-model-data package to be installed.
-
-2005/02/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.2-0.20mdk
- 10.1-27.5.101mdk
-
-2005/02/08 vljubovic
-
- * share/po/bs.po: Update translation
-
-2005/02/07 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2005/02/07 mareklaane
-
- * share/po/et.po: Some more translation fixes.
- First round of translation fixes ended...
-
-2005/02/07 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/network.pm: do not require perl-Gnome2-Gconf in drakxtools, but
- use gconftool-2
- make it easy to use other GConf interfaces
-
- * network/adsl_consts.pm: add missing methods
-
- * network/netconnect.pm: select manual adsl connection type if the network
- interface was static
-
-2005/02/07 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/lv.po,
- share/po/hu.po, share/po/id.po, share/po/ru.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/fr.po,
- share/po/ta.po, share/po/vi.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: updated pot file
-
- * share/po/wa.po: updated Walloon file
- updated pot file
-
- * share/po/zh_TW.po, share/po/fa.po: updated Farsi file
- updated pot file
-
-2005/02/07 Pixel <pixel at mandrakesoft.com>
-
- * mygtk2.pm:
- ->get('window-position') should be done on real_window
-
- * install_steps_interactive.pm: really fix "Graphical interface - not
- configured" bug
-
- * fs/mount_options.pm: ensure some options are not set for
- directories_needed_to_boot (bugzilla #13433)
-
- * pkgs.pm: fix setting @hdlists when deselectionAllowed is false
-
-2005/02/07 shivahuang
-
- * share/po/zh_TW.po: conflicts between 1.336 & 1.337 solved
-
-2005/02/07 Till Kamppeter <till at mandrakesoft.com>
-
- * share/rpmsrate: Updated rpmsrate for new printing packages
-
- * standalone/printerdrake: Adjusted version number.
-
- * printer/data.pm: Use "hplip-hpijs" for HPIJS package.
-
-2005/02/07 mareklaane
-
- * share/po/et.po: More translation fixes.
-
-2005/02/07 Pixel <pixel at mandrakesoft.com>
-
- * fs/mount_options.pm: ensure some options are not set for
- directories_needed_to_boot (bugzilla #13433)
-
- * pkgs.pm: fix setting @hdlists when deselectionAllowed is false
-
-2005/02/06 mareklaane
-
- * share/po/et.po: More translation fixes.
- More translation fixes.
- Fixed translations.
-
-2005/02/06 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm: Adapted printerdrake to new printer drivers
- packages.
-
- * printer/data.pm: Added "hplip-hpijs-ppds" to be installed when
- printerdrake is started.
- Adapted printerdrake to new printer drivers packages.
-
-2005/02/05 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2005/02/05 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm, network/tools.pm: basic ndiswrapper support
-
- * network/network.pm: remove useless message
-
-2005/02/05 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * lang.pm: changed LANGUAGE value for languages that will need renaming
- in the future (ph->fil, ltg->LTG)
-
-2005/02/05 Pixel <pixel at mandrakesoft.com>
-
- * any.pm: \w can match non-ascii characters, so expanding it (bugzilla
- #13432). It would be better to remove accents, but i don't know how to
- do it easily
-
-2005/02/05 Warly <warly at mandrakesoft.com>
-
- * install_any.pm: fix copy_rpms_on_disks
-
-2005/02/04 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/network.pm: gnome proxy support in drakproxy
-
- * network/netconnect.pm: handle bpalogin service
- perl_checker fixes
-
- * drakxtools.spec: 10.2-0.19mdk
-
-2005/02/04 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Better version to install urpmi with copied RPMs
- Make install_urpmi work when having copied every RPM on disk
-
-2005/02/04 Warly <warly at mandrakesoft.com>
-
- * share/logo-mandrake.png: beta 10.2 logo
-
-2005/02/04 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: handle bpalogin service
- perl_checker fixes
- add bpalogin support for cable connections
-
-2005/02/04 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/zh_TW.po, share/po/fr.po: updated French file; corrected syntax
- errors in Chinese file
-
- * share/po/vi.po: updated Vietnamese file
-
-2005/02/04 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Better version to install urpmi with copied RPMs
- Make install_urpmi work when having copied every RPM on disk
- call hdInstallPath only once
- Remove a debug trace, and perl_checker fixes
- Add support to copy all RPMs to the hard drive before installation.
-
- * share/po/zh_TW.po: Fix zh_TW problem
-
- * install_steps.pm, install_steps_gtk.pm, pkgs.pm,
- install_steps_interactive.pm: Add support to copy all RPMs to the hard
- drive before installation.
-
- * diskdrake/interactive.pm: Untranslated string
-
-2005/02/04 shivahuang
-
- * share/po/zh_TW.po: updated po file
-
-2005/02/04 Warly <warly at mandrakesoft.com>
-
- * share/logo-mandrake.png: beta 10.2 logo
-
-2005/02/03 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: updated
-
-2005/02/03 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate: CAT_X at Pixel's suggestion
- Always install mozilla-firefox when NETWORKING_WWW is selected
-
-2005/02/03 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ja.po: updated Japanese file
-
-2005/02/03 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/main.pm: in auto, $raw_X non empty is "ok"
-
- * partition_table.pm: cleanup
-
-2005/02/03 rstandtke
-
- * share/po/de.po: some additions
-
-2005/02/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.2-0.18mdk
-
-2005/02/03 Youcef Rabah Rahal <rahal at arabeyes.org>
-
- * share/po/ar.po: Arabnic translation
-
-2005/02/02 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/02/02 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/drakfirewall.pm: fix samba port range syntax
-
- * network/isdn.pm: fix capi kernel drivers installation
- fix capi kernel drivers installation
-
-2005/02/02 Pixel <pixel at mandrakesoft.com>
-
- * rescue/make_rescue_img, rescue/make_partimage_save_rest_all: add a basic
- partimage save_all/rest_all feature
-
-2005/02/02 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2005/02/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/rpmsrate: prefer beep-media-player over xmms
-
-2005/02/02 vljubovic
-
- * share/po/bs.po: Updating Bosnian translation
-
-2005/02/02 Youcef Rabah Rahal <rahal at arabeyes.org>
-
- * share/po/ar.po: Arabic translation
-
-2005/02/01 David Baudens <baudens at mandrakesoft.com>
-
- * share/po/fr.po: Update
-
-2005/02/01 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2005/02/01 mareklaane
-
- * share/po/et.po: Updated translation.
-
-2005/02/01 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/drakfirewall.pm: supplement previous half-fix
- port 445 is used for Samba (without NetBios)
- use new range syntax for smb
-
-2005/02/01 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/it.po, share/po/cy.po: updated Italian and Welsh files
-
-2005/02/01 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm: check the given mount points
-
- * loopback.pm, diskdrake/interactive.pm, fsedit.pm: $hd is now unused, no
- need to pass it
-
- * fs/type.pm: ensure isLVM() works on both the VG and the partitions
- (isLVM() on a part was already used once in fsedit::check_mntpoint())
-
- * lvm.pm: ensure {lv_name} is set for LVM partitions
-
-2005/02/01 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/po/fr.po: Restore a bunch of translation that have disappeared
-
-2005/02/01 tsdgeos
-
- * share/po/ca.po: updates
-
-2005/02/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po, share/po/ga.po: update
-
- * share/rpmsrate: like latest rxvt-CJK, rxvt-unicode works fine with SCIM
- too, but is
- multilingual too (unlike rxvt)
- install rxvt-CJK with the same priority as rxvt
-
-2005/01/31 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/es.po: updated Spanish file
-
- * share/po/fr.po: updated French file
- updated French file
-
- * share/po/sv.po: updated Swedish file
-
- * share/po/eu.po: updated Basque file
-
-2005/01/31 Pixel <pixel at mandrakesoft.com>
-
- * mdk-stage1/modules.c, mdk-stage1/Makefile, rescue/make_rescue_img,
- mdk-stage1/network.c, mdk-stage1/.cvsignore, mdk-stage1/network.h,
- mdk-stage1/newt-frontend.c: add a dhcp-client built using mdk-stage1
- code
-
- * mdk-stage1/stage1.c: add a dhcp-client built using mdk-stage1 code
- - have nothing talking about interactive when SPAWN_INTERACTIVE is
- unset
- - same for SPAWN_SHELL
-
-2005/01/30 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/sr@Latn.po, share/po/sq.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/lv.po,
- share/po/hu.po, share/po/fa.po, share/po/id.po, share/po/ru.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/fr.po, share/po/ta.po, share/po/vi.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: s/Disk/Hard Disk/.
- from Harddrake
-
- * share/po/zh_CN.po: s/Disk/Hard Disk/. from Harddrake
- Updated Simplified Chinese translation
-
- * harddrake/data.pm: s/Disk/Hard Disk/
-
-2005/01/30 mbukovjan
-
- * share/po/cs.po: Updated Czech translations.
-
-2005/01/30 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/fr.po,
- share/po/ta.po, share/po/vi.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: updated pot file
-
-2005/01/29 mareklaane
-
- * share/po/et.po: Small corrections (väljalasketeave -> info väljalaske
- kohta + kasutaja õige -> lisa kasutaja).
-
-2005/01/28 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/es.po: updated po file
-
- * share/po/am.po: updated Amharic file
-
- * share/po/it.po: updated Italian file
-
-2005/01/28 Pixel <pixel at mandrakesoft.com>
-
- * mdk-stage1/Makefile: only prompt for "Additional Drivers floppy" for
- network
-
- * fs.pm, fs/type.pm, fsedit.pm, fs/mount_options.pm:
- - create fs::type::directories_needed_to_boot() and use it
- - for removable drives used for / /usr and the like, ensure we check
- it at boot time
- (bugzilla #13283)
-
- * mdk-stage1/modules.c: only prompt for "Additional Drivers floppy" for
- network
- don't prompt if no modules, otherwise "Ok" in ask_from_list_comments()
- gets a segfault
-
- * mdk-stage1/stage1.c: ensure switching between different install methods
- do not break due to IMAGE_LOCATION (/sysroot/tmp/image can be either
- symlink or a directory)
-
-2005/01/28 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * lang.pm (console_font_files) perl_checker cleanup
-
- * share/po/pt_BR.po: typo fix (#12660)
-
- * network/ethernet.pm (configure_eth_aliases) simplify
-
- * drakxtools.spec:
- - bump Glib/Gtk+2 requires
- - 10.2-0.17mdk
-
- * standalone/service_harddrake: perl_checker cleanup
- fix PCMCIA autoconfig in harddrake service
- make --force force harddrake to eeconfigure everything
-
-2005/01/27 Daouda Lo <daouda at mandrakesoft.com>
-
- * standalone/drakbug:
- - vincent danen patch (barely tested)
-
-2005/01/27 Keld Jørn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: updates
- soft/control-center/po/da.po gi/perl-install/share/po/da.po
- soft/drakstats/po/da.po
-
-2005/01/27 Pixel <pixel at mandrakesoft.com>
-
- * fs/format.pm: remove log
-
- * raid.pm: switch back to auto=yes :
- > > the only problem with auto=yes is that it ignores the minor number
- > > specified and always uses the first avaliable minor number, so you
- might
- > > find /dev/md2 with minor 0, /proc/mdstat will call it based on minor
- > > number. This is going to get really confusing for users.
- > > I was planning to fix this in upstream source, but i have not been
- able
- > > to find time to do it yet.
- >
- > ok, i fixed that in mdadm-1.8.0-2mdk
- > there is a new option (auto=dev) that will create the device file with
- > the correct minor number based on the device name.
- > so please put auto=dev instead of auto=yes in the /etc/mdadm.conf
- >
- please hold the auto=dev change, the mdadm author feel this should be
- the default behaviour for auto=yes, so i will upload a new
- mdadm-1.9.0-0pre1.1mdk with fully working auto as soon as i return to
- italy (this weekend i believe)
- fix "mdadm package not installed" during install (bugzilla #13259)
-
-2005/01/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: typo fix
-
-2005/01/26 huftis
-
- * share/po/nn.po: Updated Norwegian Nynorsk translation.
-
-2005/01/26 Pixel <pixel at mandrakesoft.com>
-
- * partition_table.pm: nicer description() (esp. when the size is 0)
-
-2005/01/26 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Wizard, System Backup configuration problems
- (#13235)
-
-2005/01/26 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/01/26 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/card.pm: xorg_version is 6.8.2
-
- * install2.pm: drakx_version() is now in install_any
-
- * network/network.pm: fix (bugzilla #13197)
-
- * partition_table.pm: nicer description() (esp. when the size is 0)
-
- * mygtk2.pm: fix commented code :)
- fix return value of method calls on MagicWindow
- ->size_request doesn't return anything on the box, it is better done
- on the window (for rpmdrake)
-
- * any.pm, install_any.pm: drakx_version() is now in install_any and use
- getFile() to get VERSION
-
-2005/01/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec:
- - move convert script from spec file into standalone/convert
- - btw, do not try converting if uneeded
- 10.2-0.16mdk
-
- * standalone/convert, Makefile.drakxtools, Makefile:
- - move convert script from spec file into standalone/convert
- - btw, do not try converting if uneeded
-
-2005/01/25 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * do_pkgs.pm, drakxtools.spec: Use the new --gui option to urpmi for the
- drakxtools to ask for media
- change; update the dependency of drakxtools on urpmi version
- accordingly.
- Remove dependency on gurpmi.
-
-2005/01/25 rstandtke
-
- * share/po/de.po: some additions and fixes
-
-2005/01/25 Pixel <pixel at mandrakesoft.com>
-
- * install_steps.pm: fix previous commit (we don't want devfsd anymore)
-
- * install_any.pm: fix rpmsrate_always_flags() not applied (bugzilla
- #13177)
-
- * fs/format.pm: even if it still takes some time when format is over, we
- don't want the progress bar to stay at 85%
-
-2005/01/25 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Bugzilla 13138, 13139. (portmap check,
- dhcpd.conf.pxe.include)
-
-2005/01/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: update
-
-2005/01/24 mareklaane
-
- * share/po/et.po: Updated translation.
-
-2005/01/24 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ja.po: updated Japanese file
-
- * share/po/it.po, share/po/cy.po: updated Welsh and Italian files
-
-2005/01/24 Pixel <pixel at mandrakesoft.com>
-
- * rescue/tree/etc/rc.sysinit: create /var/log
-
-2005/01/24 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/rpmsrate: Fix duplicate flag in rpmsrate
-
-2005/01/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/rpmsrate: fix wrong package name
-
-2005/01/23 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/eu.po: updated Basque file
-
-2005/01/23 Pixel <pixel at mandrakesoft.com>
-
- * install_steps.pm: removing code setting devfs=mount or devfs=nomount
-
- * raid.pm: put the new option auto=dev instead of auto=yes (see
- mdadm-1.8.0-2mdk)
-
-2005/01/22 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2005/01/22 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/eu.po: updated Basque file
- updated pot file
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
- share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: updated pot file
-
-2005/01/22 Pixel <pixel at mandrakesoft.com>
-
- * standalone/draksplash, standalone/drakperm, diskdrake/hd_gtk.pm,
- standalone/harddrake2, standalone/drakboot, standalone/printerdrake,
- standalone/logdrake, standalone/draksec, standalone/drakfloppy,
- standalone/drakfont, standalone/drakups: fix the various transient on
- {rwindow} (or even {window} ?) not working anymore on the MagicWindow
- (maybe the code could be simplified since it should now work even when
- embedded (?))
-
- * ugtk2.pm: allow using {real_window} instead of {rwindow}{real_window}
- (esp. for set_transient_for for which we can't easily do some magic)
-
-2005/01/21 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/main.pm: fix check_valid()
- - rename Xconfig::main::is_valid() to Xconfig::main::check_valid() and
- return the cause of the error
- - ensure an empty config file doesn't make it display "Your Xorg
- configuration file is broken..."
-
-2005/01/21 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Drop quasi-pxe setup in dhcp.conf as we can use
- real pxe now.
- Perl_checker fixes.
-
-2005/01/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.2-0.15mdk
-
-2005/01/21 Daouda Lo <daouda at mandrakesoft.com>
-
- * standalone/printerdrake:
- - main loop fix
- - remove dead code
- - cleanups
-
-2005/01/21 Pixel <pixel at mandrakesoft.com>
-
- * raid.pm:
- - don't write /etc/mdadm.conf when no raid
- - use option "auto=yes" in mdadm.conf to ensure mdadm will create
- /dev/mdX devices when needed
- (those are not there when using udev and neither kernel raid autostart
- nor initrd created the raid)
-
- * Xconfig/main.pm: fix check_valid()
- - rename Xconfig::main::is_valid() to Xconfig::main::check_valid() and
- return the cause of the error
- - ensure an empty config file doesn't make it display "Your Xorg
- configuration file is broken..."
-
- * mygtk2.pm: do show_all on the real window (this is used by drakloop)
-
- * keyboard.pm, standalone/keyboarddrake: minimal XkbModel support
-
-2005/01/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/data.pm: tag devices as bridges later so that pcmcia
- controllers got a chance
- to be detected
-
- * share/po/br.po: typo fixes
- typo fixes
-
- * standalone/printerdrake: fix subdialogs when embedded in mcc
- fix banner's title by initializing mcc domain before ugtk2
-
- * drakxtools.spec: 10.2-0.14mdk
- 10.2-0.13mdk
-
- * network/adsl_consts.pm: updates from baud:
- - add "Czech Republic|Cesky Telecom"
- - add "Switzerland|Tiscali.ch"
- - add "Tunisia|Planet.tn"
- - add dns servers to "Israel|Bezeq"
-
-2005/01/21 Pixel <pixel at mandrakesoft.com>
-
- * raid.pm:
- - don't write /etc/mdadm.conf when no raid
- - use option "auto=yes" in mdadm.conf to ensure mdadm will create
- /dev/mdX devices when needed
- (those are not there when using udev and neither kernel raid autostart
- nor initrd created the raid)
-
- * keyboard.pm, standalone/keyboarddrake: minimal XkbModel support
-
-2005/01/20 Pixel <pixel at mandrakesoft.com>
-
- * commands.pm: add lspcidrake
-
- * network/shorewall.pm, network/ethernet.pm, standalone/drakconnect:
- restore previous network::ethernet::get_eth_cards_names() behaviour
- (i got hit by { map ... }; being a block and not a hash ref)
-
- * rescue/dirs: not useful anymore (maybe others are unneeded too?)
-
- * rescue/tree/etc/rc.sysinit: we want /mnt at the root of the rescue
-
-2005/01/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/sound.pm: snd-azx was renamed as snd-hda-intel in ALSA's CVS,
- so let's prepare
- ground for future
-
- * modules/interactive.pm (load_category__prompt_for_more)
- - fix missing help for SCSI
- - display it too for non SCSI disks that're handled as SCSI ones
- (USB, Firewire, SATA, raid ...)
- move SATA in its own category
-
- * modules.pm (append_to_modules_loaded_at_startup_for_all_kernels)
- introduce it
- (wrapper around append_to_modules_loaded_at_startup())
- move SATA in its own category
-
- * install_any.pm (default_packages) simplify through
- modules::append_to_modules_loaded_at_startup_for_all_kernels()
- (default_packages) handle buggy laptops that're unusable without
- laoding acerhk module
-
- * install_steps.pm, install_steps_interactive.pm: move SATA in its own
- category
-
-2005/01/19 Pixel <pixel at mandrakesoft.com>
-
- * standalone/drakconnect: adapt to new
- network::ethernet::get_eth_cards_names() prototype
-
- * standalone/keyboarddrake: use ->ask_from instead of ->ask_from_listf
- (keeping the same GUI behaviour)
-
-2005/01/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/sound.pm (switch) add hint for translator
-
- * drakxtools.spec: 10.2-0.12mdk
-
-2005/01/18 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/eu.po, share/po/uz.po, share/po/am.po, share/po/uz@Latn.po:
- updated Basque files;
- corrected "<control>X" translations for non-latin keyboards
-
- * share/po/gl.po: corrected "default:LTR" translation
-
-2005/01/18 Pixel <pixel at mandrakesoft.com>
-
- * mdk-stage1/rescue-gui.c: VERSION is now DISTRIB_VERSION
-
- * mdk-stage1/Makefile: include gi/Makefile.config to have DISTRIB_DESCR
- defined
-
- * commands.pm: fix *old* typo
-
- * mygtk2.pm: fix broken focus during install
-
- * pkgs.pm: fix generating compssUsers.flat (was broken because of the
- CAT_xxx switch)
-
- * install_any.pm: auto_install compatibility: CAT_SYSTEM used to be
- selected by default
-
-2005/01/18 Pixel <pixel at mandrakesoft.com>
-
- * install_any.pm: auto_install compatibility: CAT_SYSTEM used to be
- selected by default
-
-2005/01/17 huftis
-
- * share/po/nn.po: Updated translation.
-
-2005/01/17 Pixel <pixel at mandrakesoft.com>
-
- * ugtk2.pm: fix backward compatibility
-
-2005/01/17 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Bugzilla 13056 - custom cron configuration
- Bugzilla 13056 - custom cron setup
-
-2005/01/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: require dmidecode in -backend subpackage
-
-2005/01/16 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2005/01/16 huftis
-
- * share/po/nn.po: Updated translation.
-
-2005/01/16 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo e jorge
-
-2005/01/16 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/resolution_and_depth.pm: if the window is not modal, the main
- XFdrake window can block it :-(
-
- * Xconfig/xfree.pm: don't be too picky on uppercase or lowercase sections
-
- * mygtk2.pm: MagicWindow:
- - hide is done on the window if popped
- - show is done on both the window and the child
- (to handle initial show on the window, and show after a hide on the
- child)
-
- * Xconfig/various.pm, install_steps.pm, install_any.pm: move setupFB() in
- Xconfig, and do it when needed (including when standalone)
-
- * bootloader.pm: fix syntax error
- mapdrive should not bother same_entries()
-
- * Xconfig/main.pm: when reading an existing X config file, ensure it is
- not too bad, otherwise propose to start from scratch
- (bugzilla #8548)
- move setupFB() in Xconfig, and do it when needed (including when
- standalone)
- for Driver fbdev, rework to allow configuring vga= in bootloader and
- telling to reboot instead of restarting X server (now i simply need to
- configure bootloader in Xconfig::main::write() when need_reboot)
-
- * install_steps_interactive.pm: for Driver fbdev, rework to allow
- configuring vga= in bootloader and telling to reboot instead of
- restarting X server (now i simply need to configure bootloader in
- Xconfig::main::write() when need_reboot)
-
- * standalone/XFdrake: make perl_checker happy
- for Driver fbdev, rework to allow configuring vga= in bootloader and
- telling to reboot instead of restarting X server (now i simply need to
- configure bootloader in Xconfig::main::write() when need_reboot)
-
- * Xconfig/card.pm: fix auto_install graphic card configuration (when one
- specify the Driver)
-
-2005/01/15 huftis
-
- * share/po/nn.po: Updated translation.
-
-2005/01/15 Pixel <pixel at mandrakesoft.com>
-
- * interactive/gtk.pm: change packing for the widgets given
- - move set_main_window_size() from ugtk2 to mygtk2
- - call it in MagicWindow creation
- allow passing gtk widgets to ->wait_message
-
- * mdk-stage1/Makefile, mdk-stage1/config-stage1.h, mdk-stage1/stage1.c,
- rescue/tree/etc/issue, rescue/Makefile, rescue/make_rescue_img:
- factorize the distrib version
-
- * bootloader.pm: in read_grub(), setting {table} cause write_grub to
- create a {mapdrive} even when we didn't have one (bugzilla #12307)
-
- * mygtk2.pm:
- - move set_main_window_size() from ugtk2 to mygtk2
- - call it in MagicWindow creation
- fix using gtkset with text => ... on a Button
-
- * ugtk2.pm:
- - move set_main_window_size() from ugtk2 to mygtk2
- - call it in MagicWindow creation
-
- * fs/format.pm: gtk2 progress bar when formatting ext3
-
-2005/01/14 huftis
-
- * share/po/nn.po: More translation
-
-2005/01/14 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fr.po: updated po file
-
- * share/po/sv.po: updated Swedish file
-
- * share/po/eo.po: updated Esperanto file
-
-2005/01/14 Pixel <pixel at mandrakesoft.com>
-
- * diskdrake/interactive.pm: this warning is stupid during install
-
- * tools/hd_grub.cgi: fix typo
-
- * detect_devices.pm: since dmidecode can fail to properly detect a floppy
- drive, don't use it during install (where we don't care if it's a bit
- slow)
-
- * mygtk2.pm: create wrapper object mygtk2::MagicWindow which handles the
- {rwindow} vs {window} duality
-
- * interactive/gtk.pm:
- - fix displaying wait_message
- - restore previous display of the wait_message during install (is that
- better ?)
-
- * ugtk2.pm: MagicWindow is now really magic, {rwindow} and {window} can be
- the same thing :)
-
- * authentication.pm: fix switching back nsswitch.conf to local
- authentication (bugzilla #13024)
-
-2005/01/14 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/harddrake2: fix crash on opening help windows
-
-2005/01/13 huftis
-
- * share/po/nn.po: Updated translation.
-
-2005/01/13 Pixel <pixel at mandrakesoft.com>
-
- * network/shorewall.pm: fix bugzilla #12996
-
-2005/01/12 Pixel <pixel at mandrakesoft.com>
-
- * interactive/gtk.pm: have separate SizeGroup's for advanced and non
- advanced entries
-
-2005/01/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.2-0.11mdk
-
-2005/01/12 Pixel <pixel at mandrakesoft.com>
-
- * ugtk2.pm: return the child when MagicWindow is using the $::WizardWindow
- (otherwise the user of the MagicWindow can destroy the WizardWindow)
-
- * mygtk2.pm: return the child when MagicWindow is using the
- $::WizardWindow
- (otherwise the user of the MagicWindow can destroy the WizardWindow)
- - fix gtkadd()
- - fix displaying banner
- - no banner if no ::Wizard_title (as used to be)
-
- * interactive/gtk.pm: rewrite wait_messageW using mygtk2
-
- * bootloader.pm: write in lilo.conf the global root= (bugzilla #12312)
-
- * mdk-stage1/init.c: fix buggy blino commit which caused install failures
- to cause reboot without prompting
-
- * install_any.pm: we don't need the clp read-write (if it is read-only it
- allows remounting /mnt ro)
-
- * fs/format.pm: remove debug code
-
- * any.pm: add user specific shell support in create_user (Nicolas Planel)
-
- * mdk-stage1/stage1.c, Makefile: use /etc/init instead of /sbin/init to
- allow umounting clp in init
-
-2005/01/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.2-0.11mdk
- one more change in 10.2-0.10mdk
- 10.2-0.10mdk
-
- * standalone/harddrake2: display the menubar and the banner when embedded
-
- * standalone/printerdrake: show banner when embedded
-
-2005/01/11 Nicolas Planel <nplanel at mandrakesoft.com>
-
- * any.pm: add user specific shell support in create_user
-
-2005/01/11 Pixel <pixel at mandrakesoft.com>
-
- * any.pm: do not log the encrypted password
- show advanced languages by default
-
- * install_steps_gtk.pm: we always have force_focus when we have
- !$::isStandalone,
- so do it that way and get rid of $ugtk2::force_focus
- remove $ugtk2::force_center_at_pos, inline it instead
- revert bad commit
- install_gtk::create_help_window is unused, removing it
-
- * ugtk2.pm: create "MagicWindow" in mygtk2 out of ugtk2::new()
- simplify away thing already done in %window_options
- move ugtk2::create_window() to mygtk2::_create_Window()
- change set_main_window_size() prototype
- - create mygtk2::main()
- - get rid of setting {destroyed}, use a local variable instead
- simplify (no need to protect against double destroy anymore)
- {window}->show is already done in ->new
- better comment
- the ugly gtkset_mousecursor_wait() done on destroy is not called often
- nowadays, and not very useful either since the wait cursor is only on
- the root window, and since install use isWizard, the root window is not
- often seen. We should at least also set the wait cursor on the
- $::WizardTable
- fix typo
- fix typo
- - $current_window can be local to ugtk2, so do it that way
- - create force_keyboard_focus()
- better comments
- we always have force_focus when we have !$::isStandalone,
- so do it that way and get rid of $ugtk2::force_focus
- remove $ugtk2::force_center_at_pos, inline it instead
- no need to set widget name to Title (what was it used for?)
- more consistent naming
- help initial positioning of window during install (since position_policy
- center-on-parent only works with a window manager, we can't get rid of
- force_center_at_pos)
- add comments
-
- * mygtk2.pm: create "MagicWindow" in mygtk2 out of ugtk2::new()
- mygtk2::_gtk() takes an hash ref to allow checking the resulting hash
- move ugtk2::create_window() to mygtk2::_create_Window()
- - create mygtk2::main()
- - get rid of setting {destroyed}, use a local variable instead
-
- * install_gtk.pm: cleanup
- help size doesn't need anything special anymore
- don't fake a ugtk2, use pure mygtk2 instead
- don't fake a ugtk2, use pure mygtk2 instead
- no need to set title to 'skip' (it was used by aewm-drakx)
- install_gtk::create_help_window is unused, removing it
-
- * interactive/gtk.pm: create "MagicWindow" in mygtk2 out of ugtk2::new()
- change set_main_window_size() prototype
-
- * Xconfig/test.pm: we always have force_focus when we have
- !$::isStandalone,
- so do it that way and get rid of $ugtk2::force_focus
-
- * run_program.pm: do not log the encrypted password
-
-2005/01/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * detect_devices.pm (dmidecode) do not rerun dmidecode on machines that do
- not support it
-
- * share/po/br.po: typo fix
-
- * share/rpmsrate: do not install ivtv packages since it's already in the
- kernel (it
- wasn't in our pcitable due to the lack of MODULE_DEVICE_TABLE)
- ivtv & zaptel dkms packages were renamed
-
-2005/01/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/gl.po: updated Galician file
-
-2005/01/10 Pixel <pixel at mandrakesoft.com>
-
- * ugtk2.pm: move some now common things in _create_window()
- more installing special install shortcuts in _create_window()
- (there is no reason for not having the shortcuts when the window has
- pop_it)
- - XFdrake test is not standalone, it is the non install nor standalone
- state
- (used when there is no window manager)
- - get rid of now unused $ugtk2::force_center
- use {icon_no_error} instead of {icon}
- rewrite
- rewrite
- the test is not useful, we can't get to this code when $::isEmbedded is
- set
- emove unused feature
- $ugtk2::pop_it is unused
-
- * Makefile: dont_run_directly_stage2 and trace_stage2 needs the live, not
- the clp
- - add vera fonts (normal and bold)
- - generate fonts.dir and fonts.cache-1
- - take cursor.pcf.gz from system
-
- * share/list: add /etc/fonts/fonts.conf
-
- * share/fonts.tar.bz2:
- - remove cursor.pcf.gz (now taken from system)
- - generate fonts.dir and fonts.cache-1
-
- * lang.pm:
- - add vera fonts (normal and bold)
- - generate fonts.dir and fonts.cache-1
- - take cursor.pcf.gz from system
-
- * rescue/dirs: at least be able to mount /dev/pts if needed
-
- * interactive/gtk.pm: simplify using {pop_it}
-
- * rescue/list: rsync is useful too
- add what Lord Packdrakeng.pm request
- minimal ssh tools (alas it doesn't on console 1 because /dev/tty is
- allocated properly, it needs fixing)
-
- * Xconfig/test.pm:
- - XFdrake test is not standalone, it is the non install nor standalone
- state
- (used when there is no window manager)
- - get rid of now unused $ugtk2::force_center
-
- * share/rpmsrate: simplify
-
- * rescue/tree/etc/inittab: use "mingetty --autologin" instead of calling
- directly "bash --login", that
- way the shell has a valid controlling terminal (CTTY, accessed via
- /dev/tty).
- This is needed for ssh to work
-
- * rescue/tree/etc/rc.sysinit: have /dev rw (eg: for /dev/initctl)
-
- * mygtk2.pm: create {icon_no_error}
-
-2005/01/10 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * do_pkgs.pm: Add --expect-install to the options passed to urpmi to
- install packages, so
- do_pkgs::install() can return 0 or true depending on whether some
- packages were
- actually installed.
-
- * standalone/drakbackup: Don't use deprecated urpmi --X option
-
- * standalone/drakTermServ: Silent install of terminal-server if needed
- (--X is deprecated)
-
- * drakxtools.spec: Require urpmi 4.6.11 (for --expect-install)
-
-2005/01/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/rpmsrate: install zaptel packages if needed
- install ivtv packages if needed
-
-2005/01/09 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2005/01/09 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2005/01/08 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
- * lang.pm: install scim-chewing if zh is selected by localedrake. Fix font
- setting for zh_CN.
-
-2005/01/08 huftis
-
- * share/po/nn.po: Updated translation.
-
-2005/01/07 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ja.po: updated po file
-
- * share/rpmsrate: new fonts-ttf-chinese package
-
- * lang.pm: changed chinese font names
-
-2005/01/07 Pixel <pixel at mandrakesoft.com>
-
- * standalone/drakclock: simplify
-
- * interactive/gtk.pm: $w->{isEmbedded} is unused
- $w->{isWizard} is unused
-
- * ugtk2.pm: $w->{isEmbedded} is unused
- $w->{isWizard} is unused
- $o->{force_center} is unused
- no icon during install
- simplify using mygtk2
-
- * mygtk2.pm: add "Plug"
-
-2005/01/07 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * keyboard.pm: Make %lang2keyboard a global variable, so it can be
- overriden in a
- patch file
-
-2005/01/06 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/cy.po, share/po/et.po: updated Welsh and Estonian files
-
-2005/01/06 Pixel <pixel at mandrakesoft.com>
-
- * network/shorewall.pm: cleanup unused variables
-
- * mdk-stage1/doc/UPDATEMODULES: fix
-
- * standalone/draksec, harddrake/sound.pm: remove unused variable
-
- * interactive/gtk.pm: on a label, we must use ->get_text, not ->get
-
- * install_gtk.pm: fix typo (thanks to perl_checker)
- - move some install specific code out of ugtk2.pm into install_gtk.pm
- - move some install specific code out of common.pm into install_any.pm
-
- * ugtk2.pm: simplify
- - move some install specific code out of ugtk2.pm into install_gtk.pm
- - move some install specific code out of common.pm into install_any.pm
- - change _create_window() prototype to be more "mygtk2" like
- - use more mygtk2 properties
- - create and use wm_icon() (until all this crap is cleaned)
- (drop $o->{wm_icon} which is unused)
-
- * install2.pm, common.pm, install_any.pm:
- - move some install specific code out of ugtk2.pm into install_gtk.pm
- - move some install specific code out of common.pm into install_any.pm
-
- * mygtk2.pm: add {icon} for Window
- merge Window and Dialog creation
- allow setting padding for pack_start, but only globally (it works like
- spacing, but also include spacing at beginning, and at end)
- add {position_policy} for Window
-
- * network/tools.pm: remove unused variables
-
- * fs.pm, install_steps.pm: fs::formatMount_all() parameter wait_message is
- no more optional (though you can give undef)
-
- * loopback.pm, diskdrake/interactive.pm, install_steps_interactive.pm,
- raid.pm, fs/format.pm:
- - fs::format::part_raw() now takes $wait_message to allow displaying
- the progress of format
- - create fs::format::wait_message() which creates a $wait_message
- valid to give to fs::format::part
- - fs::format::mke2fs() format while parsing the output to display the
- progress
-
-2005/01/06 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: update
- update
-
- * lang.pm: update UIM config for uim-0.4.5 (UTUMI Hirosi)
-
- * drakxtools.spec: 10.2-0.9mdk
-
-2005/01/05 Keld Jørn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: updates
- soft/urpmi/po/da.po soft/wizard_perl/po/da.po
- gi/perl-install/share/po/da.po
-
-2005/01/05 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm: fix selecting "other" keyboard when @best
- <= 1
- fix selecting "other" keyboard when @best <= 1
- fix selecting "other" keyboard when @best <= 1
-
- * fs.pm: part2wild_device_name('', $part) is better than
- devices::make($part->{device}) (esp. for nfs "devices")
- handle spaces in username
-
- * fs/mount_options.pm: don't set fs_type to ext2:vfat for ext3 or reiserfs
- /home coming from usb key (bugzilla #9827)
-
- * network/smb.pm: handle spaces in username
-
-2005/01/05 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * install_any.pm (migrate_device_names) fix message
-
- * share/rpmsrate: install echomixer if needed
- switch default IM to scim-chewing for zh_TW
-
- * harddrake/sound.pm: add a couple of new ALSA drivers (from CVS)
-
- * drakxtools.spec: 10.2-0.8mdk
-
-2005/01/04 Funda Wang <fundawang at linux.net.cn>
-
- * lang.pm: backport s/jp/ja/ fix from HEAD
-
-2005/01/04 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/hr.po: updated Croatian file
-
- * share/po/cy.po: updated Welsh file
-
-2005/01/04 Pixel <pixel at mandrakesoft.com>
-
- * rescue/list: ld-linux.so.2 is also needed on the rescue :)
-
-2005/01/04 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po: updated Estonian file
- updated pot file
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
- share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: updated pot file
-
-2005/01/04 Pixel <pixel at mandrakesoft.com>
-
- * rescue/list: ld-linux.so.2 is also needed on the rescue :)
-
- * mdk-stage1/init.c: ensure /tmp/syslog in stage2 contains the full log
-
- * mdk-stage1/stage1.c: ensure /tmp/syslog in stage2 contains the full log
- (currently stage2 init was writing in a file shadowed by stage2 copying
- the /stage1/tmp/syslog over its file)
-
-2005/01/04 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/adsl_consts.pm: update ADSL ISPs list
-
- * share/rpmsrate: install hotkeys in order to have working special keys on
- internet/multimedia laptop keyboards
-
-2005/01/03 Pixel <pixel at mandrakesoft.com>
-
- * authentication.pm, steps.pm: "Administrator (root)" is more
- user-friendly than "root"
-
- * fs/mount_options.pm: remove codepage= option for fs types which don't
- handle it (eg: ntfs)
-
- * fs/type.pm: create can_be_one_of_those_fs_types()
-
- * network/netconnect.pm, network/network.pm, network/ethernet.pm,
- install_steps_interactive.pm, harddrake/data.pm: move and rename
- network::ethernet::get_eth_categories() into
- list_modules::ethernet_categories()
- (it's closer to the definition of the categories)
-
- * modules/interactive.pm: a somewhat nicer message when loading a module
-
- * install_steps.pm: default security level is now 3
-
-2005/01/03 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * do_pkgs.pm: '--best-output' is no longer an urpmi option (and it's not
- necessary
- anyway since --auto is specified)
-
- * install_steps.pm: Make do_pkgs::install() return the number of packages
- actually installed
- (used by printerdrake, apparently)
-
-2005/01/03 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Bugzilla 12861 - Directories with spaces
- Mandrakeclub - Perms on tarballs too relaxed
- perl_checker compliance
- Bugzilla 12861 - Directories with spaces
- Mandrakeclub - Perms too relaxed on tarballs
- perl_checker compliance
- Bugzilla 12861 - Directories with spaces
- Mandrakeclub - Perms too relaxed on tarballs
- perl_checker compliance
-
-2005/01/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * install_any.pm (migrate_device_names) try to be smarter with translators
-
-2005/01/03 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
- share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: updated pot file
-
- * keyboard.pm:
- - enabled choice of various new keyboard layouts.
- - don't prepend "us," if there is already a list of layouts
-
- * share/po/cy.po: updated Welsh file
- updated pot file
-
-2005/01/03 Pixel <pixel at mandrakesoft.com>
-
- * mdk-stage1/tools.c: it's cleaner to have the clp_tmpfs in /tmp
- (i think it was already that way for move and that i broke it, but who
- knows?)
-
- * install_any.pm: no clp is not an error
- move mdkinst.clp on hard drive ASAP
- => allows multi-cd installs even if the mdkinst.clp was not preloaded
- => allows to better memory handling during pkgs install (hopefully at
- least)
-
- * fs/mount_options.pm: remove codepage= option for fs types which don't
- handle it (eg: ntfs)
-
- * fs/type.pm: create can_be_one_of_those_fs_types()
-
- * devices.pm, install2.pm: move mdkinst.clp on hard drive ASAP
- => allows multi-cd installs even if the mdkinst.clp was not preloaded
- => allows to better memory handling during pkgs install (hopefully at
- least)
-
- * mdk-stage1/stage1.c, mdk-stage1/init.c: ensure /tmp/syslog in stage2
- contains the full log
- (currently stage2 init was writing in a file shadowed by stage2 copying
- the /stage1/tmp/syslog over its file)
-
-2005/01/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/sound.pm: add another sparc sound driver
-
-2005/01/03 Funda Wang <fundawang at linux.net.cn>
-
- * lang.pm: s/jp/ja. Corrected spelling of locale ja
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/12/31 Pixel <pixel at mandrakesoft.com>
-
- * mygtk2.pm: no need to have things twice in _icon_paths()
-
- * install_steps_gtk.pm: simplify (thanks to perl_checker)
- remove code using getAndSaveFile to get the X server
- (we don't have live directory anymore, and anyway we only use one X
- server)
-
- * install_gtk.pm: simplify (we always want the logo, and looking the right
- path is already done elsewhere)
-
- * share/list: ldd doesn't say anymore which file ld-linux is, so adding it
- explicitly
-
- * interactive/gtk.pm: better layout:
- - ensure buttons are at bottom using pack_end instead of packing a
- growing empty vbox for ask_warn-like dialogs
- - drop old code
- - always allow box to grow (this may be wrong)
-
-2004/12/31 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_gtk.pm: simplify (thanks to perl_checker)
- remove code using getAndSaveFile to get the X server
- (we don't have live directory anymore, and anyway we only use one X
- server)
-
- * interactive/gtk.pm: better layout:
- - ensure buttons are at bottom using pack_end instead of packing a
- growing empty vbox for ask_warn-like dialogs
- - drop old code
- - always allow box to grow (this may be wrong)
-
-2004/12/30 Pixel <pixel at mandrakesoft.com>
-
- * ugtk2.pm: more spacing around the separator and the buttons (as
- requested by ergonomy team)
-
- * install_steps.pm: finish backporting HEAD changes for finish-install
- (any::write_passwd_user() doesn't exist anymore)
-
-2004/12/29 Pixel <pixel at mandrakesoft.com>
-
- * lvm.pm, devices.pm: move device mapper initialisation out of lvm.pm into
- devices.pm (since it will be useful for other things)
-
- * install_steps_interactive.pm: when computing group size, select
- CAT_SYSTEM packages
-
- * pkgs.pm: simplify and speed up computeGroupSize()
- in computeGroupSize()
- - fix old ugly bug (CAT_FOO && CAT_BAR || CAT_FOO was reduced to
- CAT_FOO && CAT_BAR)
- - log the time spent
- - ignore already selected packages
- - group by same rpmsrate flags (nice speedup :)
-
-2004/12/28 Pixel <pixel at mandrakesoft.com>
-
- * install_gtk.pm: fix overlap
- re-organize steps display as requested by ergonomic team
-
- * install_steps_gtk.pm: fix displaying package tree (was empty since
- moving from XXX to CAT_XXX)
-
- * mygtk2.pm:
- - add can_default
- - remove known_opts (alike the rest of the code)
-
- * pkgs.pm, install_any.pm, install_steps_interactive.pm:
- - create set_rpmsrate_category_flags(),
- set_rpmsrate_default_category_flags(), default_packages(),
- rpmsrate_always_flags() replacing setDefaultPackages()
- - create select_default_packages()
- - apply "always" rpmsrate flags ASAP and skip packages with flag
- "FALSE" in computeGroupSize()
- => 30% speed-up
-
-2004/12/24 Pixel <pixel at mandrakesoft.com>
-
- * share/rpmsrate, install_any.pm, install_steps_interactive.pm:
- differentiate compssUsers flags from non-user modifiable flags (eg:
- hardware flags)
-
- * network/drakfirewall.pm: "Samba server" is better named "Windows Files
- Sharing (SMB)" (bugzilla #10585)
-
-2004/12/23 Pixel <pixel at mandrakesoft.com>
-
- * standalone/XFdrake: fix Xconfig::default::configure() use
- "XFdrake --auto" is now fully auto using auto_install configuration
- instead of "as much auto as can be"
- - don't ask X to restart in auto mode
- - set exit status to 1 when configuration failed (esp. auto mode)
-
-2004/12/23 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * tools/checkusedmodules: Add a new check script in tools. It compares the
- perl modules used by the .pm
- files in perl-install against the ones listed in share/list, to detect
- potential missing modules (and potential run-time problems during the
- stage 2)
-
-2004/12/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: bump require on perl in order to prevent beakage on
- update due to
- binary incompatibility (#12719 and the like)
- fix typo in 10.2-0.7mdk's changelog
- 10.2-0.7mdk
-
-2004/12/22 Pixel <pixel at mandrakesoft.com>
-
- * pkgs.pm: simplify
- fix previous commit
- create read_rpmsrate_raw() out of read_rpmsrate(), this new function can
- be easily used outside install
-
- * install_steps_interactive.pm: no need to use max_size, no need to
- compute it
-
- * install2.pm, fsedit.pm: add option no_bad_drives (to workaround bugzilla
- #12766)
-
-2004/12/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/sound.pm: "snd-audigyls" ALSA driver was renamed "snd-ca0106"
- in ALSA CVS;
- let's have our tools be aware of that once our kernel got synced
- handle new snd-pcxhr driver from alsa CVS
-
- * share/rpmsrate: install proper tools for Digigram PCXHR sound card
-
-2004/12/21 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: /proc/sys/kernel/modprobe wants something non empty,
- otherwise it doesn't change anything
-
- * install_any.pm: don't pass prefix, use $::prefix
- don't pass prefix to network::netconnect::main() (it doesn't use it)
- don't pass prefix, use $::prefix
-
- * fs.pm:
- - fs::mount() wants a real device or a faked one, but doesn't accept
- things like fd0 anymore (give it /dev/fd0)
- - a little more robust analyze_wild_device_name() during install
- - handle bad things in subpart_from_wild_device_name()
-
- * install_steps_interactive.pm: don't pass prefix, use $::prefix
- don't pass prefix to network::netconnect::main() (it doesn't use it)
-
- * mdk-stage1/doc/UPDATEMODULES: much simpler code to handle post-install
- update modules
- - it handles new modules
- - it calls depmod
-
- * install_steps_gtk.pm, commands, standalone/drakbug_report, pkgs.pm,
- crypto.pm, commands.pm: don't pass prefix, use $::prefix
-
- * standalone/drakconnect, network/netconnect.pm, printer/printerdrake.pm:
- don't pass prefix to network::netconnect::main() (it doesn't use it)
-
- * any.pm:
- - fs::mount() wants a real device or a faked one, but doesn't accept
- things like fd0 anymore (give it /dev/fd0)
- - a little more robust analyze_wild_device_name() during install
- - handle bad things in subpart_from_wild_device_name()
- don't pass prefix, use $::prefix
-
- * install_steps.pm:
- - fs::mount() wants a real device or a faked one, but doesn't accept
- things like fd0 anymore (give it /dev/fd0)
- - a little more robust analyze_wild_device_name() during install
- - handle bad things in subpart_from_wild_device_name()
- don't pass prefix, use $::prefix
- don't pass prefix, use $::prefix
- much simpler code to handle post-install update modules
- - it handles new modules
- - it calls depmod
-
- * detect_devices.pm: fix floppies detection (through dmidecode)
-
-2004/12/20 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: don't die when /proc/sys/kernel/modprobe doesn't exist (for
- BOOT kernels)
-
- * mdk-stage1/tools.c, mdk-stage1/tools.h, mdk-stage1/automatic.c: minimal
- bootsplash stage1 support
- create unset_automatic()
-
- * mdk-stage1/modules.c, mdk-stage1/cdrom.c, mdk-stage1/stage1.c,
- mdk-stage1/network.c: create unset_automatic()
-
- * mdk-stage1/Makefile, mdk-stage1/bootsplash.h, mdk-stage1/bootsplash.c,
- mdk-stage1/frontend.h, mdk-stage1/stdio-frontend.c,
- mdk-stage1/newt-frontend.c: minimal bootsplash stage1 support
-
-2004/12/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/modem.pm (get_user_home) do not horribly die if USER environment
- variable list
- a non existing user
-
-2004/12/19 Funda Wang <fundawang at linux.net.cn>
-
- * lang.pm: jp console should not be localized
- jp console should not be localized
-
-2004/12/18 rstandtke
-
- * share/po/de.po: added some translations
-
-2004/12/17 Pixel <pixel at mandrakesoft.com>
-
- * install_gtk.pm: don't parse the theme rc file to set the root window
- background color during install,
- instead use the gc of a fake window named "background"
- switch to mygtk2
-
- * ugtk2.pm: add some more functions in mygtk2
-
- * Xconfig/test.pm: remove unused code
-
- * modules.pm: packdrake changed a little, ensuring that if we ask no
- modules it doesn't cause havoc
-
- * mygtk2.pm: don't parse the theme rc file to set the root window
- background color during install,
- instead use the gc of a fake window named "background"
- oops, set_background *is* needed
- remove unneeded ->set_background
- add some more functions in mygtk2
-
- * bootloader.pm: ia64 uses the lilo method (even if it has some important
- differences)
- on ia64, use method lilo
-
-2004/12/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: fix NETMASK autofilling
-
-2004/12/16 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
-
- * c/smp.c: merge smp detection from fedora/ydl
-
-2004/12/16 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: help testing
-
- * mygtk2.pm:
- - add DrawingArea
- - add text_ref & format for buttons
- remove debug code
- we must allow more than one callback per ref & widget
- add option allow_unknown_options for easy compatibility
-
- * detect_devices.pm, pkgs.pm, install_any.pm: create function
- detect_devices::BIGMEM() which calls c::dmiDetectMemory(), but only
- if we are root (this helps testings install without dying)
-
- * install_steps_gtk.pm: migrate to mygtk2
-
- * ugtk2.pm: fix typo (mygtk2 wants active_ref, not val)
- add option allow_unknown_options for easy compatibility
-
- * Xconfig/resolution_and_depth.pm: much simpler code using mygtk2
-
-2004/12/15 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
-
- * mdk-stage1/insmod-modutils/include/util.h,
- mdk-stage1/insmod-modutils/util/logger.c: rename log to do_log in order
- to avoid clashes with builtins
-
- * mdk-stage1/dietlibc/ia64/start.S, mdk-stage1/dietlibc/ia64/fork.S,
- mdk-stage1/dietlibc/ia64/pipe.S: ia64 fixes: fork, pipe, syscall weak
- symnames
-
- * mdk-stage1/insmod-modutils/include/elf_ppc64.h,
- mdk-stage1/insmod-modutils/obj/obj_ppc64.c: merge ppc64 support from
- modutils 2.4.26
-
- * mdk-stage1/insmod-modutils/obj/obj_gpl_license.c: add missing file from
- older merge from modutils 2.4.26
-
- * mdk-stage1/dietlibc/ia64/syscalls.h: add ia64 setjmp/longjmp from glibc
- ia64 fixes: fork, pipe, syscall weak symnames
-
- * tools/ddcprobe/Makefile: ppc & ppc64 fixes
- ppc64 support
-
- * mdk-stage1/insmod-modutils/obj/obj_kallsyms.c: fix build to expose
- assignments better
-
- * mdk-stage1/insmod-modutils/obj/obj_ia64.c: add support for
- R_IA64_PCREL60B reloc
- build fix
-
- * tools/ddcprobe/ddcxinfos.c: ppc & ppc64 fixes
- sounds like the (empty) line is expected
-
- * mdk-stage1/insmod-modutils/util/sys_oim.c,
- mdk-stage1/insmod-modutils/insmod.c,
- mdk-stage1/insmod-modutils/util/Makefile,
- mdk-stage1/insmod-modutils/util/modstat.c: drop support for kernel 2.0
-
- * tools/ddcprobe/vbe.h: ppc & ppc64 fixes
- fix on big endian platforms (ppc, ppc64)
-
- * mdk-stage1/dietlibc/ia64/__longjmp.S, mdk-stage1/dietlibc/ia64/setjmp.S:
- add ia64 setjmp/longjmp from glibc
-
- * mdk-stage1/rescue-gui.c, mdk-stage1/init.c: lib64 fixes on ppc64
-
- * mdk-stage1/dietlibc/include/elf.h: ia64 elf definitions
-
- * tools/ddcprobe/of.c: ppc & ppc64 fixes
- On PowerPC platforms, byteswap product_code so that ids match MonitorsDB
- contents
-
-2004/12/15 Pixel <pixel at mandrakesoft.com>
-
- * mdk-stage1/network.c: fix http directory not starting with a "/" (it was
- handled for stage1, but not for URLPREFIX given to stage2)
-
-2004/12/15 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: perl_checker, suggestions from Pixel, rework
- buttons in main GUI
-
-2004/12/15 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: update (stef, neoclust)
-
- * drakxtools.spec: 10.2-0.6mdk
-
-2004/12/15 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate.corpo-server, share/rpmsrate.corpo-desktop: remove
- mdkonline-backend
-
-2004/12/14 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
-
- * mdk-stage1/dietlibc/include/termios.h, mdk-stage1/dietlibc/diet.c,
- mdk-stage1/dietlibc/syscalls.h, mdk-stage1/dietlibc/include/sys/stat.h,
- mdk-stage1/dietlibc/include/sys/ucontext.h,
- mdk-stage1/dietlibc/include/sys/shm.h,
- mdk-stage1/dietlibc/include/fcntl.h,
- mdk-stage1/dietlibc/include/sys/mman.h,
- mdk-stage1/dietlibc/include/asm/sigcontext.h,
- mdk-stage1/dietlibc/include/elf.h,
- mdk-stage1/dietlibc/include/sys/ioctl.h,
- mdk-stage1/dietlibc/include/sys/types.h, mdk-stage1/dietlibc/Makefile,
- mdk-stage1/dietlibc/include/endian.h,
- mdk-stage1/dietlibc/include/sys/ptrace.h,
- mdk-stage1/dietlibc/include/signal.h: ppc64 port
-
- * mdk-stage1/dietlibc/include/setjmp.h: fix setjmp.h (JB_SIZE) on ppc64
- ppc64 port
-
-2004/12/14 Pixel <pixel at mandrakesoft.com>
-
- * drakxtools.spec: fix release (keep 101mdk for 10.1 packages)
-
- * network/netconnect.pm: for drakx-finish-install, we want drakconnect to
- restart network
- for drakx-finish-install, we want drakconnect to restart network
-
- * mygtk2.pm: export gtkval_register() and gtkval_modify()
-
- * mdk-stage1/pcmcia_/merge_from_pcitable: cleanup
-
-2004/12/13 Keld Jørn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: updates
- soft/drakpxelinux/po/da.po soft/rpmdrake/po/da.po
- soft/urpmi/po/da.po gi/perl-install/share/po/da.po
-
-2004/12/13 Pixel <pixel at mandrakesoft.com>
-
- * detect_devices.pm: fix
-
- * drakxtools.spec: introduce in CVS 27.2.101mdk which was using a patch on
- drakbug
-
- * standalone/drakbug: commit vdanen patch which makes drakbug send
- everything to bugzilla (instead of anthill)
-
-2004/12/13 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/list: Add a gazillion modules required by the new packdrake for
- now
-
-2004/12/13 Pixel <pixel at mandrakesoft.com>
-
- * detect_devices.pm: fix
-
- * drakxtools.spec: introduce in CVS 27.2.101mdk which was using a patch on
- drakbug
-
- * standalone/drakbug: commit vdanen patch which makes drakbug send
- everything to bugzilla (instead of anthill)
-
-2004/12/13 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/list: Add a gazillion modules required by the new packdrake for
- now
- Add the subset of POSIX.pm needed by the new packdrake
-
-2004/12/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/autoconf.pm:
- - rename/move install_any::write_pcmcia() as
- harddrake::autoconf::pcmcia() so
- that it became availlable for standalone tools
- - reuse it in harddrake service in order to configure PCMCIA cards
-
- * harddrake/data.pm (pcmcia_controller_probe) move some harddrake code
- there
-
- * detect_devices.pm: better english (writing style rather than spoken one)
- (pcmcia_controller_probe) reuse pcmcia_controller_probe(), thus fixing
- installer not handling anymore PCMCIA controllers managed by driver
- other than
- yenta_socket...
- this is still not enough for stage1 though (since
- mdk-stage1/pcmcia_/probe.c::pcmcia_probe() isn't aware of all PCMCIA
- host
- controller drivers that're known to list_modules.pm)
- (pcmcia_controller_probe) move some harddrake code there
-
- * Xconfig/card.pm, share/po/ms.po, share/po/pt_BR.po, share/po/et.po,
- share/po/ja.po, install_steps_interactive.pm, standalone/drakvpn,
- printer/data.pm, standalone/drakboot, standalone.pm,
- standalone/drakTermServ, share/po/sv.po, share/po/sr.po, share/po/fi.po,
- fs/type.pm, standalone/drakbackup, share/po/ca.po, share/po/ltg.po,
- share/po/uz.po, partition_table/mac.pm, diskdrake/interactive.pm,
- standalone/fileshareset, share/po/ro.po, standalone/drakroam,
- authentication.pm, share/po/zh_TW.po, share/po/eu.po, share/po/es.po,
- network/adsl.pm, modules.pm, network/tools.pm,
- standalone/service_harddrake.sh, standalone/drakupdate_fstab,
- share/po/lv.po, share/po/id.po, help.pm, share/po/br.po, install_gtk.pm,
- network/isdn.pm, share/po/mt.po, share/po/ga.po, modules/parameters.pm,
- share/po/uk.po, install2.pm, share/po/lt.po, resize_fat/boot_sector.pm,
- commands.pm, network/test.pm, install_interactive.pm, share/po/tg.po,
- share/advertising/12.pl, loopback.pm, mygtk2.pm, interactive/http.pm,
- ftp.pm, interactive/stdio.pm, share/po/mk.po, share/po/fur.po,
- services.pm, harddrake/sound.pm, fs.pm, standalone/drakfont,
- share/po/af.po, network/ethernet.pm, standalone/net_applet,
- bootloader.pm, share/po/pt.po, share/po/vi.po, share/po/fr.po,
- keyboard.pm, standalone/drakperm, share/advertising/05.pl,
- share/po/tl.po, share/po/de.po, common.pm, share/po/el.po,
- share/po/bg.po, share/po/uz@Latn.po, network/network.pm, share/po/bn.po,
- standalone/logdrake, share/po/gl.po, share/po/sk.po, share/po/th.po,
- Xconfig/parse.pm, interactive.pm, share/po/hr.po, resize_fat/fat.pm,
- network/netconnect.pm, share/po/be.po, do_pkgs.pm, mouse.pm,
- network/smb.pm, share/po/DrakX.pot, share/po/ko.po, share/po/pl.po,
- share/po/he.po, raid.pm, fs/format.pm, diskdrake/smbnfs_gtk.pm,
- share/po/da.po, share/po/ar.po, partition_table.pm, unused/dns.pm,
- share/po/ky.po, share/po/nb.po, pkgs.pm, run_program.pm,
- standalone/drakconnect, share/po/zh_CN.po, share/po/sq.po,
- share/po/sr@Latn.po, share/po/it.po, printer/printerdrake.pm,
- share/po/hu.po, http.pm, share/po/fa.po, network/modem.pm,
- resize_fat/main.pm, network/ipsec.pm, share/po/ru.po, share/po/sl.po,
- standalone/drakautoinst, c.pm, share/po/nn.po, share/po/tr.po,
- partition_table/gpt.pm, share/po/mn.po, share/po/am.po, lang.pm,
- devices.pm, harddrake/v4l.pm, share/po/cy.po, partition_table/raw.pm,
- ugtk2.pm, any.pm, install_steps_gtk.pm, printer/main.pm, share/po/bs.po,
- interactive/newt.pm, share/po/wa.po, fs/mount_options.pm,
- share/po/is.po, share/po/hi.po, share/po/az.po, Xconfig/xfree.pm,
- share/po/ta.po, standalone/drakgw, share/po/nl.po, fsedit.pm,
- share/po/eo.po, share/po/cs.po, standalone/bootloader-config: better
- english (writing style rather than spoken one)
-
- * install_any.pm, install_steps.pm, standalone/service_harddrake: better
- english (writing style rather than spoken one)
- - rename/move install_any::write_pcmcia() as
- harddrake::autoconf::pcmcia() so
- that it became availlable for standalone tools
- - reuse it in harddrake service in order to configure PCMCIA cards
-
-2004/12/13 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/list: Add new packdrake module
-
-2004/12/12 Pixel <pixel at mandrakesoft.com>
-
- * .perl_checker: ignore packdrake for now
-
- * install_gtk.pm, share/list.i386: keyboard_drv.o is needed by Xorg, and
- driver must "keyboard", not "Keyboard"
-
-2004/12/12 Pixel <pixel at mandrakesoft.com>
-
- * .perl_checker: ignore packdrake for now
-
- * install_gtk.pm, share/list.i386: keyboard_drv.o is needed by Xorg, and
- driver must "keyboard", not "Keyboard"
-
-2004/12/10 Pixel <pixel at mandrakesoft.com>
-
- * Makefile: move drakx VERSION file in install/stage2 (used by bugzilla)
-
-2004/12/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/ja.po: update (Yukiko Bando)
-
-2004/12/09 Pixel <pixel at mandrakesoft.com>
-
- * install_steps.pm: commit warly's fix in HEAD
- commit warly's fix in 10.1 branch
-
-2004/12/08 Warly <warly at mandrakesoft.com>
-
- * install_steps.pm: fix the updatemodules mode for installation
-
-2004/12/07 Pixel <pixel at mandrakesoft.com>
-
- * detect_devices.pm, install_steps_interactive.pm: look for yenta_socket
- in pci_probe too (nb: ldetect pci_probe has a special rule for it, not
- simply pcitable)
- look for yenta_socket in pci_probe too
- look for yenta_socket in pci_probe too (nb: ldetect pci_probe has a
- special rule for it, not simply pcitable)
-
- * share/rpmsrate: xcdroast only if X is chosen (bugzilla #12594)
-
-2004/12/06 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate.corpo-server, share/rpmsrate.corpo-desktop: Added
- mdkonline, slmodem and ipw2?00
-
-2004/12/05 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2004/12/05 Pixel <pixel at mandrakesoft.com>
-
- * fs/format.pm, install_any.pm: don't allow partition types we don't know
- how to format in {partitions} for auto_installs (eg of bad type: ntfs)
-
-2004/12/05 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: typo fixes (#12580)
-
-2004/12/04 Pixel <pixel at mandrakesoft.com>
-
- * mdk-stage1/pcmcia_/merge_from_pcitable: simplify
-
-2004/12/04 tsdgeos
-
- * share/po/ca.po: Update
-
-2004/12/03 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: disable kmod, otherwise we get a different behaviour in
- kernel vs kernel-BOOT
-
- * Makefile: use the cute "perldoc -l" instead of perl -V:vendorlib which
- doesn't work when the module hasn't been rebuilt
-
- * unused/migrate-ugtk2-to-mygtk2.pl, unused/migrate-ugtk2-to-mygtk2.el: be
- more automatic and less .emacs dependent
-
- * tools/Makefile: use perldoc -l instead of perl -M + %INC
-
- * install_steps_gtk.pm: more debug log
-
- * commands: during install, commands should $::isInstall set (otherwise
- poor modprobe becomes a fork bomb)
-
-2004/12/03 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/hr.po, share/po/tr.po, share/po/mt.po, share/po/be.po,
- share/po/mn.po, share/po/am.po, share/po/ko.po, share/po/sr.po,
- share/po/lt.po, share/po/he.po, share/po/cy.po, share/po/ca.po,
- share/po/ar.po, share/po/ltg.po, share/po/ky.po, share/po/mk.po,
- share/po/ro.po, share/po/is.po, share/po/af.po, share/po/az.po,
- share/po/zh_TW.po, share/po/vi.po, share/po/sq.po, share/po/sr@Latn.po,
- share/po/tl.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/lv.po: rescued some strings
-
-2004/12/03 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: disable kmod, otherwise we get a different behaviour in
- kernel vs kernel-BOOT
-
- * Makefile: use the cute "perldoc -l" instead of perl -V:vendorlib which
- doesn't work when the module hasn't been rebuilt
-
- * unused/migrate-ugtk2-to-mygtk2.pl, unused/migrate-ugtk2-to-mygtk2.el: be
- more automatic and less .emacs dependent
-
- * tools/Makefile: use perldoc -l instead of perl -M + %INC
-
- * install_steps_gtk.pm: more debug log
-
- * commands: during install, commands should $::isInstall set (otherwise
- poor modprobe becomes a fork bomb)
-
-2004/12/02 Pixel <pixel at mandrakesoft.com>
-
- * ugtk2.pm: use migrate-ugtk2-to-mygtk2.pl (and i verified the diff)
-
- * unused/migrate-ugtk2-to-mygtk2.pl: replace "policy => [ horizpolicy,
- vertpolicy ]" with "h_policy => ..., v_policy => ..."
- (both defaulting to "automatic")
- dirty script easing the switch from ugtk2 to mygtk2 (beware!)
-
- * unused/migrate-ugtk2-to-mygtk2.el: dirty script easing the switch from
- ugtk2 to mygtk2 (beware!)
-
- * rescue/make_rescue_img: fix typo and perl_checker compliance
-
- * mygtk2.pm: replace "policy => [ horizpolicy, vertpolicy ]" with
- "h_policy => ..., v_policy => ..."
- (both defaulting to "automatic")
-
-2004/12/02 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/fr.po,
- share/po/ta.po, share/po/vi.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: updated pot file
-
-2004/12/02 Pixel <pixel at mandrakesoft.com>
-
- * unused/migrate-ugtk2-to-mygtk2.pl: replace "policy => [ horizpolicy,
- vertpolicy ]" with "h_policy => ..., v_policy => ..."
- (both defaulting to "automatic")
- dirty script easing the switch from ugtk2 to mygtk2 (beware!)
-
- * mygtk2.pm: replace "policy => [ horizpolicy, vertpolicy ]" with
- "h_policy => ..., v_policy => ..."
- (both defaulting to "automatic")
- future is in mygtk2, ugtk2 must die (and it will die, but not that soon
- (to keep compatibility))
-
- * rescue/make_rescue_img: remove temporary directory
-
- * detect_devices.pm: helping titi that didn't get isLaptop() right in 3
- commits ;p
-
- * ugtk2.pm: use migrate-ugtk2-to-mygtk2.pl (and i verified the diff)
- future is in mygtk2, ugtk2 must die (and it will die, but not that soon
- (to keep compatibility))
-
- * unused/migrate-ugtk2-to-mygtk2.el: dirty script easing the switch from
- ugtk2 to mygtk2 (beware!)
-
- * authentication.pm, any.pm:
- - any::enableShadow() -> authentication::enable_shadow()
- - inline authentication::crypt()
- move crypt() where it's needed
-
-2004/12/02 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * authentication.pm, any.pm: Move crypt() in the package it belongs to
-
-2004/12/01 Pixel <pixel at mandrakesoft.com>
-
- * detect_devices.pm: simplify: grep already done
- complete_usb_storage_info()
-
-2004/12/01 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * ugtk2.pm: return value for gtkset_mousecursor
-
-2004/12/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/ja.po: typo fix
-
-2004/12/01 Warly <warly at mandrakesoft.com>
-
- * install_steps.pm: Add a SYSTEM to Corporate in /etc/sysconfig/system for
- corporate
-
- * share/compssUsers.corpo-server: remove development section in corpo
- server
-
- * install_any.pm: use the compssUsers related to the meta_class if it
- exists
-
- * share/compssUsers.suppl-desktop, share/compssUsers.suppl-server: add
- compssUsers for supplementary CDs
-
- * install_steps_gtk.pm: update the group selection layout to handle the
- supplementary CD
-
- * share/compssUsers.desktop: remove game for corpo desktop
-
- * rescue/tree/etc/issue: change Mandrake Linux 10.0 into Mandrakelinux
- Corporate 3.0
-
- * share/themes-corporate.rc: correct the theme color for installation
-
- * steps.pm: Do not activate the updates selection step during installation
-
- * share/rpmsrate.corpo-server, share/rpmsrate.corpo-desktop: updated
- rpmsrate for corporate desktop and server
-
- * install_messages.pm: The coporate errata is corpo30errata.php3 and not
- 100errata.php3
-
-2004/11/30 Frederic Lepied <flepied at mandrakesoft.com>
-
- * mdk-stage1/Makefile, mdk-stage1/config-stage1.h: corporate
-
-2004/11/30 Pixel <pixel at mandrakesoft.com>
-
- * network/network.pm: don't pass the prefix/etc/sysconfig/network to
- network::network::write_conf(), we always use the same file name
- backport HEAD changes used by finish-install
-
- * modules.pm: replace isStandalone with !isInstall (for finish-install
- which is neither isInstall nor isStandalone)
- replace isStandalone with !isInstall (for finish-install which is
- neither isInstall nor isStandalone)
-
- * install_steps_interactive.pm:
- - move some functions from any.pm to authentication.pm
- - create authentication::ask_root_password_and_authentication() out of
- install_steps_interactive::setRootPassword()
- backport HEAD changes used by finish-install
-
- * standalone/finish-install: don't keep the banner from drakconnect for
- all steps
- add drakx-finish-install
- prog to launch after install which configurate users, authentication,
- root password and network
- don't keep the banner from drakconnect for all steps
- add drakx-finish-install
- prog to launch after install which configurate users, authentication,
- root password and network
-
- * any.pm, install_steps.pm:
- - move some functions from any.pm to authentication.pm
- - create authentication::ask_root_password_and_authentication() out of
- install_steps_interactive::setRootPassword()
- backport HEAD changes used by finish-install
- create any::set_root_passwd() and use it
-
- * drakxtools.spec: add drakx-finish-install
-
- * standalone/drakbackup: fix fatal perl_checker error
- fix fatal perl_checker warning
-
- * run_program.pm: replace !isStandalone with isInstall
-
- * authentication.pm: make $when_network_is_up optional
- - move some functions from any.pm to authentication.pm
- - create authentication::ask_root_password_and_authentication() out of
- install_steps_interactive::setRootPassword()
- backport HEAD changes used by finish-install
-
- * Makefile.config, Makefile, Makefile.drakxtools,
- standalone/finish-install.xsetup: add drakx-finish-install
- add drakx-finish-install
-
- * network/netconnect.pm: network::netconnect::real_main() do not exit
- brutally on wizcancel, handle it in network::netconnect::main()
- network::netconnect::real_main() do not exit brutally on wizcancel,
- handle it in network::netconnect::main()
-
- * standalone/adduserdrake: backport HEAD changes used by finish-install
-
- * standalone/drakauth: perl_checker fix
- shorter
- don't pass the prefix/etc/sysconfig/network to
- network::network::write_conf(), we always use the same file name
- $when_network_is_up is now optional
- backport HEAD changes used by finish-install
-
-2004/11/30 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Warn when failing to mount the supplementary CD-ROM
-
-2004/11/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * detect_devices.pm (dmidecode) explain why we return a list and not
- directly an hash
- (floppies) do not try to load floppy if there's no floppy drive (#8211)
- a side effect is that now we'll still see the floppy drive even if
- some buggy code triggered $@ earlier
-
- * share/rpmsrate, lang.pm: install scim-anthy as well for japanese users
-
- * install_any.pm (setDefaultPackages) perl_checker cleanup
-
- * drakxtools.spec: typo fix
-
- * harddrake/data.pm: rollback previous bogus commit
-
-2004/11/30 Warly <warly at mandrakesoft.com>
-
- * rescue/tree/etc/issue: update version for rescue issue
-
-2004/11/30 Pixel <pixel at mandrakesoft.com>
-
- * install_steps.pm, any.pm:
- - move some functions from any.pm to authentication.pm
- - create authentication::ask_root_password_and_authentication() out of
- install_steps_interactive::setRootPassword()
- create any::set_root_passwd() and use it
- - rely on adduser(8) to set the users password instead of using
- write_passwd_user()
- - use adduser(8) during install (we now use the same code during and
- after install)
-
- * install_steps_interactive.pm:
- - move some functions from any.pm to authentication.pm
- - create authentication::ask_root_password_and_authentication() out of
- install_steps_interactive::setRootPassword()
-
- * standalone/adduserdrake:
- - rely on adduser(8) to set the users password instead of using
- write_passwd_user()
- - use adduser(8) during install (we now use the same code during and
- after install)
-
- * authentication.pm:
- - move some functions from any.pm to authentication.pm
- - create authentication::ask_root_password_and_authentication() out of
- install_steps_interactive::setRootPassword()
- white space normalisation
-
-2004/11/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/localedrake: Yes/no is better than Ok/cancel for logout
- question
-
- * harddrake/data.pm: rollback previous bogus commit
- detect_devices::getModem() does not take an argument anymore
-
- * share/rpmsrate, lang.pm: install scim-anthy as well for japanese users
-
- * install_any.pm (setDefaultPackages) perl_checker cleanup
-
- * detect_devices.pm (isLaptop) fix it on non PPC architectures
- (dmidecode) add (explicit) memoization
-
-2004/11/29 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: perl_checker compliance
- - drop oem & recovery code (which was broken)
- - will be replaced with a root password + user accounts + network
- configuration a la drakfirsttime
-
- * authentication.pm: minimal authentication get() function
- create %kind2pam_kind
-
- * any.pm: rename allocUsers() to alloc_user_faces() (better suited)
-
- * mdk-stage1/disk.h, install_steps_gtk.pm, docs/README, mdk-stage1/disk.c,
- install_steps.pm, rescue/tree/etc/rc.sysinit, rescue/tree/etc/oem,
- install_steps_interactive.pm, tools/oem-prepare, mdk-stage1/tools.c,
- rescue/tree/etc/oem-all, rescue/.cvsignore, install2.pm,
- mdk-stage1/stage1.c, rescue/Makefile, rescue/kernel_read_part.c:
- - drop oem & recovery code (which was broken)
- - will be replaced with a root password + user accounts + network
- configuration a la drakfirsttime
-
-2004/11/29 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install2.pm: A bit of grammar
-
-2004/11/29 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/harddrake2: add hint for translator
-
- * share/po/ja.po: update (Yukiko Bando)
-
- * install_any.pm (setDefaultPackages) better support for Toshiba laptops:
- preload
- toshiba driver and install toshutils (inspirated from
- drivers/char/toshiba.c's audit)
- (setDefaultPackages) better support for DELL laptops: preload i8k driver
- better support for DELL laptops (inspirated from drivers/char/i8k.c's
- audit)
-
- * share/rpmsrate: ensure toshutils is present on media
- ensure ik8utils is present on media
-
-2004/11/27 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/11/27 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * network/adsl_consts.pm: Don't load encoding.pm, it's not provided in the
- stage 2 perl
-
-2004/11/26 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate: Add some tool in DEVELOPMENT section
-
-2004/11/26 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/fr.po,
- share/po/ta.po, share/po/vi.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: updated pot file
-
- * standalone/harddrake2: fixed typo
-
-2004/11/26 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/card.pm: simplify
-
- * partition_table/dos.pm:
- - geometry XXX/240/63 is quite common, so add 240 to @valid_nb_heads
- - remove checking that nb_heads is in @valid_nb_heads
- (this fixes yet another case of the infamous "XP doesn't boot" occuring
- 10.1
- CE, though it should already be fixed via EDD)
-
- * standalone/keyboarddrake: don't write X config when there is none
- (otherwise we write a partial X config)
-
- * Xconfig/monitor.pm: help perl another way that perl_checker prefers
-
- * network/ethernet.pm: help perl_checker
-
-2004/11/26 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * pkgs.pm, install_any.pm: We won't have files named
- compssUsers.pl.<meta_class> since they're all
- merged now.
-
-2004/11/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: update
-
- * drakxtools.spec: 10.2-0.5mdk
-
-2004/11/25 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate: Fix Totem installation when KDE and GNOME are both
- installed.
- Fix Quanta installation
-
-2004/11/25 Pixel <pixel at mandrakesoft.com>
-
- * fsedit.pm: moving partitions never really worked and is disabled since
- years
- safer
-
- * Xconfig/card.pm: create function libgl_config() and have it after
- setting Driver to 'fglrx' so
- that libgl_config() can behave based on {Driver} instead of {Driver2}
-
- * any.pm: remove /lib and /usr/lib with more verbose code
- fix previous commit
- handle the lib64 case separately
-
- * pkgs.pm, devices.pm, install_any.pm: we don't use /tmp for devices
- anymore
- (this comes from long ago when redhat code was using a ro /dev and
- creating other devices in /tmp)
-
- * install_steps_gtk.pm: simpler code
-
- * standalone/drakfloppy: minimal perl_checker compliance
- use floppies_dev() instead of floppies()
-
- * diskdrake/interactive.pm: moving partitions never really worked and is
- disabled since years
- - create analyze_wild_device_name() out of
- subpart_from_wild_device_name()
- - rename part2device() into part2wild_device_name(), change its
- prototype and use analyze_wild_device_name()
- - new field {faked_device}
- - for LABEL=..., {device} is not empty anymore and {faked_device} is
- set,
- merge_fstabs() will take care of having the real {device} and
- {faked_device} unset
- - for devfs_device, {device} is set to the devfs device,
- merge_fstabs() will take care of having the non devfs device in
- {device}
-
- * standalone/diskdrake: use fs::get::device2part()
- use fs::get::device2part()
-
- * fs.pm: remove unused var
- we don't use /tmp for devices anymore
- (this comes from long ago when redhat code was using a ro /dev and
- creating other devices in /tmp)
- - create analyze_wild_device_name() out of
- subpart_from_wild_device_name()
- - rename part2device() into part2wild_device_name(), change its
- prototype and use analyze_wild_device_name()
- - new field {faked_device}
- - for LABEL=..., {device} is not empty anymore and {faked_device} is
- set,
- merge_fstabs() will take care of having the real {device} and
- {faked_device} unset
- - for devfs_device, {device} is set to the devfs device,
- merge_fstabs() will take care of having the non devfs device in
- {device}
- more intelligent sort of fstab to handle loopback files or bind
- directory (bug anthil #1198)
-
-2004/11/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/data.pm: do not probe memory chips at boot time ...
-
- * standalone/printerdrake (About) let be more l10n friendly regarding
- "translatability"
- (About) let be more l10n friendly regarding font's weight and size
-
- * modules.pm (load_and_configure) fix setting scsi and usb probell in live
- CD (thus fixing
- mousedrake --auto with USB mice on live CD)
-
- * modules/any_conf.pm: ensure that explanations go into
- /var/log/explanations is standalone mode
- (log::explanations() just calls log::l() at install time)
-
- * standalone/service_harddrake: do not die if sound never was configured
- (aka on first boot on live CD)
-
- * drakxtools.spec: fix spacing in 10.2-0.4mdk's changelog
- 10.2-0.4mdk
-
-2004/11/24 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/11/23 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * lang.pm: list Turkish language in both Asia and Europe (for Istanbul)
-
-2004/11/23 Pixel <pixel at mandrakesoft.com>
-
- * fs.pm: fix {device_alias} containing /dev/xxx instead of xxx. The bug
- was
- "none /mnt/cdrom supermount dev=/dev//dev/cdrom,fs=iso9660..."
- (bugzilla #12224)
- fix {device_alias} containing /dev/xxx instead of xxx. The bug was
- "none /mnt/cdrom supermount dev=/dev//dev/cdrom,fs=iso9660..."
- (bugzilla #12224)
-
- * partition_table/raw.pm: detect on lilo on floppy (bugzilla #12213)
- detect on lilo on floppy (bugzilla #12213)
-
- * bootloader.pm: don't use typeOfMBR to check the method on floppy which
- may not be inserted
- (part of bugzilla #12213)
- don't use typeOfMBR to check the method on floppy which may not be
- inserted
- (part of bugzilla #12213)
-
-2004/11/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/ja.po: update (Yukiko Bando)
-
- * share/po/fr.po: update (kournikolas)
-
- * share/po/br.po: update
-
-2004/11/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/ja.po: update (Yukiko Bando)
-
- * share/po/br.po: update
-
-2004/11/22 Pixel <pixel at mandrakesoft.com>
-
- * rescue/make_rescue_img, mdk-stage1/pci-resource/update-pci-ids.pl,
- docs/HACKING, Makefile:
- - no more kernel/all.modules, things are in kernel/all.kernels
- - cleanup what we keep in kernel/all.kernels: only vmlinuz,
- modules.dep, *.mar, all_modules.tar, modules.cz
- - replace all_modules.list + modules with all_modules.tar
- - kernel/all.modules/modules.cz-VERSION are now in
- kernel/all.kernels/VERSION/modules.cz
- - allow having a normal in isolinux, but don't use it for floppy
- images
- (for this, add kernel/all.kernels/.main-BOOT)
- - add many modules kernel/list_modules.pm in unused categories since
- we don't
- take all modules from kernel, only those listed
- (needed to have a not too big modules.cz for normal kernel)
- - complete rewrite of update_kernel (now written in perl)
-
-2004/11/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm (real_main) in "ADSL provider" step, plain reset
- the protocol on
- provider switch
-
- * standalone/harddrake2: kill a stock icon
-
- * share/po/br.po: update
-
-2004/11/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/sound.pm (alsa2oss) add snd-azx
-
- * share/rpmsrate: fix wrong package name
-
-2004/11/18 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
-
- * install_steps_gtk.pm: use 'fbdev' server on x86_64 too
-
- * share/advertising/list-cpd, share/advertising/list-cps: update to match
- warly's config files
-
-2004/11/18 Pixel <pixel at mandrakesoft.com>
-
- * interactive.pm: fix prototype
- remove some unneeded ";", add some for normalization (as told by
- perl_checker)
-
- * install_steps_interactive.pm, diskdrake/interactive.pm: since we don't
- use ramdisk but clp, some code is dead
- (remove usingRamdisk(), check_prog(), remove_unused()...)
- add some ";", remove some ";", as told by perl_checker
-
- * install2.pm, pkgs.pm, run_program.pm: since we don't use ramdisk but
- clp, some code is dead
- (remove usingRamdisk(), check_prog(), remove_unused()...)
-
- * lang.pm, fs.pm, common.pm, install_any.pm: since we don't use ramdisk
- but clp, some code is dead
- (remove usingRamdisk(), check_prog(), remove_unused()...)
- remove some unneeded ";", add some for normalization (as told by
- perl_checker)
-
- * partition_table/gpt.pm, standalone/harddrake2, partition_table/raw.pm,
- partition_table/mac.pm, install_steps_auto_install.pm,
- diskdrake/hd_gtk.pm: add some ";", remove some ";", as told by
- perl_checker
-
- * wizards.pm, install_steps.pm, install_gtk.pm, network/isdn.pm,
- diskdrake/resize_ntfs.pm, network/netconnect.pm, mouse.pm, lvm.pm,
- devices.pm, raid.pm, crypto.pm, Xconfig/screen.pm, commands.pm,
- install_interactive.pm, ugtk2.pm, partition_table.pm, any.pm,
- interactive/stdio.pm, interactive/newt.pm, harddrake/sound.pm,
- services.pm, authentication.pm, network/ethernet.pm, bootloader.pm,
- harddrake/data.pm, interactive/gtk.pm, network/adsl.pm, fsedit.pm,
- detect_devices.pm, modules.pm, network/shorewall.pm: remove some
- unneeded ";", add some for normalization (as told by perl_checker)
-
-2004/11/18 Pixel <pixel at mandrakesoft.com>
-
- * diskdrake/hd_gtk.pm, install_steps_auto_install.pm,
- partition_table/mac.pm, diskdrake/interactive.pm, standalone/harddrake2,
- partition_table/raw.pm, partition_table/gpt.pm,
- install_steps_interactive.pm: add some ";", remove some ";", as told by
- perl_checker
-
-2004/11/17 Pixel <pixel at mandrakesoft.com>
-
- * diskdrake/interactive.pm: really remove the VG from internal list of
- {lvms}, not on a copy
-
- * install_steps_interactive.pm: fix indentation
-
- * partition_table.pm: also remove "require partition_table::lvm_PV"
- comment for perl_checker
-
-2004/11/17 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * crypto.pm: Update inline mirror list again (the previous one was broken)
- Update the inline mirror list for mini isos
- Integrate from trunk (mirror list update)
- Integrate fixes for mini-ISOs from the trunk.
-
- * install_any.pm: Integrate fixes for mini-ISOs from the trunk.
-
-2004/11/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/sound.pm: add new sound drivers from
- kernel-tmb-2.6.7-2.tmb.6mdk
-
- * modules.pm: on 10.0, b44 failled on newer cards; let's try bcm4400 too
-
- * drakxtools.spec: bump requires on ldetect-lst b/c of s/3c90x/3c59x/
- 10.2-0.3mdk
- fill in 10.2-0.2mdk's changelog
- 10-34.8.100mdk
- 10-34.7.100mdk
-
- * standalone/service_harddrake: backport from 10.1: adapt to new nvidia
- driver location due to
- corporate now using DKMS
-
-2004/11/16 Pixel <pixel at mandrakesoft.com>
-
- * rescue/list.i386, rescue/list.ia64, rescue/list, rescue/list.ppc,
- rescue/list.x86_64: move libperl.so from list.ARCH back to list, using a
- wildcard
-
- * fs/type.pm: for sunos:
- - "SunOS swap" and "Whole disk" don't use ufs
- - drop isSunOS(): replace it with testing {fs_type} eq 'ufs'
- create isEmpty() and use it instead of simply testing {pt_type}, since
- {pt_type} can be undef whereas {fs_type} is set
- don't use pseudo fs_type "apple" for Apple Bootstrap partitions, better
- only use {pt_type} for non mountable partitions
-
- * fs/get.pm, diskdrake/interactive.pm, diskdrake/hd_gtk.pm: create
- isEmpty() and use it instead of simply testing {pt_type}, since
- {pt_type} can be undef whereas {fs_type} is set
-
- * lang.pm: fix typo (thanks to bugzilla #12387)
-
- * fsedit.pm, partition_table/lvm_PV.pm: handle more nicely raw_lvm_PV
- (don't simply ignore them)
-
- * partition_table/empty.pm: empty partition table means sectors #0 and #1
- are zeroes, not simply sector #0
- (this gives a chance to raw_lvm_PV which has its magic on sector #1)
-
- * partition_table.pm: handle more nicely raw_lvm_PV (don't simply ignore
- them)
- don't die in will_tell_kernel() when the device is weird, since it is
- normal when destroying a raw_lvm_PV
- enhance readability
- create isEmpty() and use it instead of simply testing {pt_type}, since
- {pt_type} can be undef whereas {fs_type} is set
-
- * detect_devices.pm: update ppc kernel modules detection & loading
- cleanup get_mac_generation()
-
- * tools/make_mdkinst_stage2, tools/mdkinst_stage2_tool: major switch from
- ramdisk to clp
- - make_mdkinst_stage2 is now mdkinst_stage2_tool
- (we don't keep the live when building the clp, mdkinst_stage2_tool is
- able to create the clp from the live, or the live from the clp)
-
- * partition_table/raw.pm: fix yaboot detection
-
- * bootloader.pm: rename get_of_dev() -> dev2yaboot()
- don't write boot OF in /tmp/of_boot_dev, better use dev2yaboot() instead
- - create yaboot2file() and use it
- - update read_lilo() for yaboot
- - update write_yaboot()
- - remove {useboot}
- - set {boot} to /dev/sda1 in suggest() instead of handling it in
- write_yaboot()
-
- * Xconfig/card.pm: enable UseFBDev in X configs on ppc, for rage128 and
- radeon
- set raw_LINES on every fglrx devices
- drop broken code
- - setting VideoRam for i810
- - unsetting UseFBDev for r128 on ppc
-
- * modules.pm: update ppc kernel modules detection & loading
-
- * mdk-stage1/disk.c, mdk-stage1/tools.h, Makefile, mdk-stage1/cdrom.c,
- mdk-stage1/config-stage1.h, rescue/Makefile, mdk-stage1/directory.c,
- mdk-stage1/Makefile, docs/README, mdk-stage1/tools.c, rescue/.cvsignore,
- rescue/make_rescue_img, mdk-stage1/network.c: major switch from ramdisk
- to clp
- - mdkinst_stage2.bz2 is now mdkinst.clp
- - rescue_stage2.bz2 is now rescue.clp
- - make_mdkinst_stage2 is now mdkinst_stage2_tool
- (we don't keep the live when building the clp, mdkinst_stage2_tool is
- able to create the clp from the live, or the live from the clp)
- - all stage1 images now need cryptoloop & gzloop
- - the clp can be preloaded in memory or not (see
- MEM_LIMIT_DRAKX_PRELOAD and MEM_LIMIT_RESCUE_PRELOAD)
- (for http & ftp, it *must* be preloaded)
- - we don't uncompress the ramdisk anymore since the decompression is
- done on the fly, this makes the rescue boot much faster
- - function get_ramdisk_realname() is replaced with macro CLP_FILE_REL
-
- * pkgs.pm: enhance analyse_kernel_name(), esp. to handle i686-up-64GB
-
- * any.pm: don't write boot OF in /tmp/of_boot_dev, better use dev2yaboot()
- instead
-
- * tools/Makefile: make_mdkinst_stage2 is no more, hail mdkinst_stage2_tool
-
-2004/11/16 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/service_harddrake, harddrake/data.pm: on startup, redo ethX
- aliases
- on startup, redo ethX aliases
-
-2004/11/15 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm:
- - special bootstrap partition warning for IBM mac_generation
- - no "OldWorld or Unknown machine" for IBM mac_generation
-
-2004/11/15 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * drakxtools.spec: new release for new perl
-
- * share/list: Adjust perl architecture, now that we don't have threads
- anymore
-
-2004/11/14 Funda Wang <fundawang at linux.net.cn>
-
- * lang.pm: switch to gbk in zh_CN
-
-2004/11/13 Pixel <pixel at mandrakesoft.com>
-
- * rescue/list: add partimage
-
-2004/11/12 Pixel <pixel at mandrakesoft.com>
-
- * install_steps.pm, install_steps_interactive.pm: no "auto install floppy"
- on ppc
-
- * mdk-stage1/Makefile.common: cleanup
- simplify
- build init using $(DIET) just like stage2-* (needed for ppc, and nicer),
- unify LDFLAGS_INIT and LDFLAGS_STAGE1
- remove GLIBC_LDFLAGS_STAGE1 and DIETLIBC_LDFLAGS_STAGE1 since they were
- not used everywhere,
- and so it was not easy to understand
- drop unused INIT_LIBC, GLIBC_LIBC, DIETLIBC_LIBC (all 3 were empty at
- the moment)
-
- * tools/ddcprobe/Makefile: disable ddcprobe again - it doesn't work right,
- causing the installer to halt
- with a divide by zero error
-
- * share/themes-galaxy.rc: the color of the categories of steps is better
- in the theme
- (it was the only part not defined in the theme but in the code)
-
- * mdk-stage1/Makefile: build init using $(DIET) just like stage2-* (needed
- for ppc, and nicer),
- unify LDFLAGS_INIT and LDFLAGS_STAGE1
- remove GLIBC_LDFLAGS_STAGE1 and DIETLIBC_LDFLAGS_STAGE1 since they were
- not used everywhere,
- and so it was not easy to understand
- drop unused INIT_LIBC, GLIBC_LIBC, DIETLIBC_LIBC (all 3 were empty at
- the moment)
- don't use minilibc.h on ppc
- simplify arch dependent config based on dietlibc vs glibc.
- this patch may be wrong for ppc which now used dietlibc but may prefer
- init-libc-headers.h over minilibc.h
- (need testing)
- some defines are not arch dependent
-
- * install_gtk.pm: the color of the categories of steps is better in the
- theme
- (it was the only part not defined in the theme but in the code)
- fix converting the background color
-
-2004/11/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/pt.po, share/po/mk.po: updated Macedonian file
-
-2004/11/10 Pixel <pixel at mandrakesoft.com>
-
- * drakxtools.spec: drakauth: add SmartCard authentication
-
- * authentication.pm:
- - correctly restore pam.d/system-auth when setting "local"
- authentication
- - no use_first_pass on "auth sufficient pam_unix.so" line for
- pam_castella
- - correctly restore pam.d/system-auth when setting "local"
- authentication
- - no use_first_pass on "auth sufficient pam_unix.so" line for
- pam_castella
-
-2004/11/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/adsl_consts.pm: sync ADSL ISPs DB with HEAD
-
- * drakxtools.spec: 10.2-0.1mdk
- merge 10.1-27mdk's changelog from MDK10.1 branch
- merge in lost changelog
- 10.1-27.1.101mdk
- fix 10.1-27mdk's changelog
-
- * standalone/service_harddrake: load yenta_socket and the like for PCMCIA
- controllers
-
- * standalone/logdrake: fix logdrake speed (should have been commited long
- time ago)
- fix logdrake speed (should have been commited long time ago)
-
- * detect_devices.pm (isLaptop) fix it on non PPC arches
-
- * network/ethernet.pm (mapIntfToDevice) backport 9box detection fix:
- do not try to match usb devices since ldetect doesn't return enough data
-
- * share/rpmsrate: install drivers for ipw2xOO
- sync relevant "hardware/driver matching" bits from Head
-
- * network/isdn_consts.pm: backport support for Philips Semiconductors DSL
- card
-
-2004/11/10 Vincent Guardiola <vguardiola at mandrakesoft.com>
-
- * authentication.pm: add pm_mkhomedir
-
-2004/11/09 Funda Wang <fundawang at linux.net.cn>
-
- * pkgs.pm: reverted pkgs, Sorry
- s/fctix/fcitx. Critical typo
-
- * lang.pm: s/fctix/fcitx. Critical typo
-
-2004/11/09 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2004/11/09 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/tools.pm: introduce network::tools::get_interface_status
-
-2004/11/09 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/card.pm: fix regexp given to matching_driver (otherwise
- smartcard:xxx matches)
- fix regexp given to matching_driver (otherwise smartcard:xxx matches)
-
-2004/11/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * detect_devices.pm (getSagem) do not probe for old adiusbadsl driver
- (which is deprecated
- by eagle-usb for more than one year)
-
- * network/adsl_consts.pm: update/add ADSL ISP entries (Benoit Audouard)
- reorder finnish entry
-
- * lang.pm: backport s/fctix/fcitx/ fix from HEAD
-
- * drakxtools.spec: bump require on ldetect-lst b/c of
- s/adiusbadsl/eagleusb/
-
- * share/theme-editor.pl: basic port from Gtk-1.2.x to Gtk+-2.x
-
-2004/11/08 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/tg.po, share/po/pt.po: updated Tajik file
-
-2004/11/08 Pixel <pixel at mandrakesoft.com>
-
- * common.pm, install2.pm: cp_af() is missing in perl-MDK-Common
- 1.1.11-2mdk
-
- * lvm.pm: call pvremove on every PVs when destroying a VG (to clear the
- LVM2 magic) (bugzilla #11579)
-
- * Xconfig/card.pm, do_pkgs.pm, bootloader.pm: backport
- check_kernel_module_packages() from 10.1 to adapt to dkms proprietary
- packages
-
-2004/11/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: do not use slicing when selecting single values
-
-2004/11/07 huftis
-
- * share/po/nn.po: More translated.
-
-2004/11/07 Pixel <pixel at mandrakesoft.com>
-
- * authentication.pm: SmartCard authentication needs pkg castella-pam
- SmartCard authentication needs pkg castella-pam
-
-2004/11/06 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2004/11/05 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/network.pm: hide ifcfg files for non-root users if they contain
- a WEP key (#12177)
- hide ifcfg files for non-root users if they contain a WEP key (#12177)
-
- * mdk-stage1/pcmcia_/probe.c: merge from pcitable
-
-2004/11/05 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po, share/po/de.po: updated Estonian and German files
-
-2004/11/05 Pixel <pixel at mandrakesoft.com>
-
- * mdk-stage1/directory.c: RAMDISK_LOCATION_REL is a better name than
- RAMDISK_LOCATION
- create choose_iso_in_directory() out of try_with_directory()
-
- * mdk-stage1/tools.c: we use pivot_root for rescue, so don't umount
- STAGE2_LOCATION
- saving stage1 resolv.conf is done in finish_preparing() with no special
- code needed for rescue
- (as was done in save_stuff_for_rescue())
- RAMDISK_LOCATION_REL is a better name than RAMDISK_LOCATION
-
- * Makefile: do not gzip pm files anymore (since we will soon use
- compressed loopback, this is not useful anymore)
- create install/stage2/mdkinst.kernels which contains the list of kernels
- known by stage2.
- this replaces looking at install/stage2/live/modules/modules.cz-xxx
- (why? cuz install/stage2/live is going to be removed!)
- simplify
-
- * mdk-stage1/network.c: use install/stage2/mdkinst.kernels to check stage2
- kernel version instead of install/stage2/live/lib/modules.cz-xxx
-
- * mdk-stage1/config-stage1.h: RAMDISK_LOCATION_REL is a better name than
- RAMDISK_LOCATION
-
- * share/list: do not gzip pm files anymore (since we will soon use
- compressed loopback, this is not useful anymore)
-
- * mdk-stage1/Makefile:
- - no need to build stage1-cdrom nor stage1-network for MOVE
- - for stage1-full, no special .c is needed for MOVE
- cleanup (hoist MOVE_ADDSRC in STAGE1SRC)
- remove duplicates in STAGE1OBJS-FULL, this removes make warnings
-
- * authentication.pm: add "Smart Card" authentication (using pam_castella)
- (as asked by flepied)
- add "Smart Card" authentication (using pam_castella) (as asked by
- flepied)
-
- * rescue/tree/usr/share/symlinks, mdk-stage1/stage1.c: keep the tmpfs and
- rescue in /tmp/stage2
- (this allows to mount the rescue read-only)
-
- * rescue/tree/etc/rc.sysinit: umount /stage1 when /etc/mtab exists to
- remove a warning
- free up stage1 memory
- fix typo
- keep the tmpfs and rescue in /tmp/stage2
- (this allows to mount the rescue read-only)
-
-2004/11/04 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/eu.po: updated Basque po file
-
-2004/11/04 Pixel <pixel at mandrakesoft.com>
-
- * mdk-stage1/stage1.h: MODE_RAMDISK is now unused
- drop IS_SPECIAL_STAGE2 in favor of IS_RESCUE
-
- * mdk-stage1/modules.c: LIVE_LOCATION is better named LIVE_LOCATION_REL
- without the leading "/"
- cleanup code using kernel_module_extension()
-
- * mdk-stage1/stage1.c:
- - create mount_clp_may_preload() out of handle_clp()
- - rename handle_clp() to handle_move_clp() and simplify its use
- IMAGE_LOCATION_REAL is better named STAGE2_LOCATION in MOVE
- replace RAW_LOCATION_REL with IMAGE_LOCATION_REL
- (the absolute symlink will now be relative, but that's ok here)
- simplify since STAGE2_LOCATION is now valid for live installs before
- pivot_root
- (due to previous stage1.c commit)
- STAGE2_LOCATION symlink is now relative instead of absolute
- (relies on the fact that STAGE2_LOCATION and IMAGE_LOCATION are both in
- /tmp in non MOVE)
- rename STAGE2_LOCATION_REL into STAGE2_LOCATION_ROOTED
- (since STAGE2_LOCATION_REL is not relative, it's simply absolute when
- chrooted)
- create STAGE2_LOCATION symlink if it is not a directory (well more
- precisely when it doesn't exist)
- LIVE_LOCATION is better named LIVE_LOCATION_REL without the leading "/"
-
- * mdk-stage1/network.c: LIVE_LOCATION is better named LIVE_LOCATION_REL
- without the leading "/"
- create str_ftp_error()
-
- * mdk-stage1/config-stage1.h:
- - create mount_clp_may_preload() out of handle_clp()
- - rename handle_clp() to handle_move_clp() and simplify its use
- add some comments
- IMAGE_LOCATION_REAL is better named STAGE2_LOCATION in MOVE
- - STAGE2_LOCATION is unused in MOVE
- - IMAGE_LOCATION_REAL is unused in non MOVE
- replace RAW_LOCATION_REL with IMAGE_LOCATION_REL
- (the absolute symlink will now be relative, but that's ok here)
- new macro IMAGE_LOCATION_REL
- rename STAGE2_LOCATION_REL into STAGE2_LOCATION_ROOTED
- (since STAGE2_LOCATION_REL is not relative, it's simply absolute when
- chrooted)
- LIVE_LOCATION is better named LIVE_LOCATION_REL without the leading "/"
-
- * mdk-stage1/tools.h:
- - create mount_clp_may_preload() out of handle_clp()
- - rename handle_clp() to handle_move_clp() and simplify its use
- test_that_cd() is now image_has_stage2()
-
- * mdk-stage1/tools.c:
- - create mount_clp_may_preload() out of handle_clp()
- - rename handle_clp() to handle_move_clp() and simplify its use
- fix typo
- create save_fd() out of copy_file()
- MODE_RAMDISK is now unused
- LIVE_LOCATION is better named LIVE_LOCATION_REL without the leading "/"
- test_that_cd() is now image_has_stage2()
- drop IS_SPECIAL_STAGE2 in favor of IS_RESCUE
-
- * mdk-stage1/url.c, mdk-stage1/url.h: create str_ftp_error()
-
- * mdk-stage1/directory.c: LIVE_LOCATION_REL doesn't exist anymore in MOVE
- more comment
- LIVE_LOCATION is better named LIVE_LOCATION_REL without the leading "/"
- use image_has_stage2() (even if not equivalent for rescue since we now
- check the stage2 stuff instead, but it should do)
- drop IS_SPECIAL_STAGE2 in favor of IS_RESCUE
-
- * mdk-stage1/cdrom.c: more comment
- test_that_cd() is now image_has_stage2()
- drop IS_SPECIAL_STAGE2 in favor of IS_RESCUE
-
-2004/11/04 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Create cfg dir if needed. Use xorg.conf.
- Touch /etc/dhcpd.conf.etherboot.kernel if missing.
- Ignore vmnet for broadcast address.
- Start reworking PXE support.
- Create cfg dir if needed, ignore vmnet for broadcast address.
- Use xorg.conf. Touch dhcp.conf.etherboot.kernel.
-
-2004/11/02 Pixel <pixel at mandrakesoft.com>
-
- * mdk-stage1/tools.c: rename MEM_LIMIT_RAMDISK into MEM_LIMIT_DRAKX
- compile less things when MANDRAKE_MOVE is defined
- (needed so that future commits can restrict define's in config-stage1.h)
-
- * mdk-stage1/directory.c: cleanup (remove warning when compiling with
- MANDRAKE_MOVE defined)
-
- * mdk-stage1/config-stage1.h: rename MEM_LIMIT_RAMDISK into
- MEM_LIMIT_DRAKX
-
- * mdk-stage1/disk.h, mdk-stage1/tools.h, mdk-stage1/stage1.c,
- mdk-stage1/network.h: compile less things when MANDRAKE_MOVE is defined
- (needed so that future commits can restrict define's in config-stage1.h)
-
- * mdk-stage1/disk.c: use IMAGE_LOCATION_DIR where it should be
- compile less things when MANDRAKE_MOVE is defined
- (needed so that future commits can restrict define's in config-stage1.h)
-
- * mdk-stage1/network.c: normalize code
- rename MEM_LIMIT_RAMDISK into MEM_LIMIT_DRAKX
- normalize code
- use IMAGE_LOCATION_DIR where it should be
- compile less things when MANDRAKE_MOVE is defined
- (needed so that future commits can restrict define's in config-stage1.h)
-
-2004/11/02 rstandtke
-
- * share/po/de.po: some fixes
-
-2004/11/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * detect_devices.pm: perl_checker cleanups
- (dmidecode) provide more fields
- (computer_info) simplify
- (dmidecode) handle multiple devices with same name
- (computer_info) split it out of dmidecode()
-
- * standalone/harddrake2, harddrake/data.pm: display more information
-
- * install_steps.pm (setupBootloaderBefore) dmidecode() was renamed as
- computer_info()
-
-2004/10/29 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Anthill #1134 - advise user about anacron.
-
-2004/10/28 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
-
- * pkgs.pm: IA-64 and X86-64 are full 64-bit arches thus don't need
- kernel-enterprise
- IA-64 and X86-64 are full 64-bit arches and thus don't need
- kernel-enterprise
-
-2004/10/28 Keld Jørn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: corrections of errors
- gi/perl-install/share/po/da.po
-
-2004/10/28 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/isdn_consts.pm: support Philips Semiconductors DSL card
-
-2004/10/28 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: bump buildrequires on ldetect and requires on
- ldetect-lst so that
- we've working support for freebox with USB link
- 10.1-27mdk
-
-2004/10/28 Vincent Guardiola <vguardiola at mandrakesoft.com>
-
- * authentication.pm: remove idmap from winbind AD
- change description for Active directory
- Remove sasl entry
- Add check button for tls
-
-2004/10/27 Pixel <pixel at mandrakesoft.com>
-
- * raid.pm: since we need mdadm, ensure we have it (bugzilla #12146)
-
- * diskdrake/interactive.pm: warn about created partition with a given
- mount point but not formatted
- since we need mdadm, ensure we have it (bugzilla #12146)
-
- * any.pm:
- - handle setting memsize mem= kernel parameter in a special function
- - rely on pack_append() to remove dups (using $uniq_dict_appends) in
- set_append_with_key()
- (drawback: it doesn't keep the order anymore)
- split {get,set}_append() into {get,set}_append_with_key() and
- {get,set}_append_simple()
- remove dead code
- modifying $e->{append} is useless since we override it with $append
-
- * bootloader.pm:
- - handle setting memsize mem= kernel parameter in a special function
- - rely on pack_append() to remove dups (using $uniq_dict_appends) in
- set_append_with_key()
- (drawback: it doesn't keep the order anymore)
- split {get,set}_append() into {get,set}_append_with_key() and
- {get,set}_append_simple()
- many kernel parameters alike "console=tty0 console=ttyS0,57600" can take
- different values, so we now take the safe side and only remove dups for
- parameters we know the last parameter is used (bugzilla #12055)
-
- * install_steps.pm: split {get,set}_append() into
- {get,set}_append_with_key() and {get,set}_append_simple()
- nicer
-
- * diskdrake/hd_gtk.pm: use ToggleButton instead of Button so that selected
- partition is visually toggled
-
-2004/10/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * detect_devices.pm (getUPS) fix again MGE USB UPSes
- (getUPS) fix again MGE USB UPSes
- (getUPS) fix again MGE USB UPSes
-
- * standalone/drakups: backport working drakups
-
- * network/ethernet.pm (mapIntfToDevice) do not try to match usb devices
- since ldetect doesn't return
- enough data (thus fixing 9box string)
-
-2004/10/27 Warly <warly at mandrakesoft.com>
-
- * install_any.pm: add more log into find_root_part
-
-2004/10/26 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
-
- * share/list.x86_64: add 'synaptics' module so that testing works
- add 'synaptics' module so that testing works
-
- * fs/type.pm: older partition types (ntfs) are also available to x86_64
- older partition types (ntfs) are also available to x86_64
-
- * bootloader.pm: run grub chrooted
- run grub chrooted
-
-2004/10/26 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/eu.po: updated Basque file
-
-2004/10/26 Pixel <pixel at mandrakesoft.com>
-
- * authentication.pm: configure sshd to use PAM when needed (sshd config
- file is modified, but i did not test more)
-
- * install_any.pm: help perl_checker
- in upgrade, when we need to migrate device names, we must write the
- fstab
- in upgrade, when we need to migrate device names, we must write the
- fstab
-
- * run_program.pm: do not use die when forked, use log::l + c::_exit
- instead
- do not use die when forked, use log::l + c::_exit instead
-
- * install_steps_interactive.pm: in upgrade, when we need to migrate device
- names, we must write the fstab
- in upgrade, when we need to migrate device names, we must write the
- fstab
-
- * raid.pm: newly created raids must have a fs_type (this was dropped in
- rev 1.45, it was an error)
- newly created raids must have a fs_type (this was dropped in rev 1.45,
- it was an error)
-
- * Xconfig/various.pm, standalone/drakboot, bootloader.pm,
- standalone/bootloader-config: detectloader must handle specially
- raid-extra-boot=mbr-only (bugzilla #12089)
-
- * install_steps.pm: detectloader must handle specially
- raid-extra-boot=mbr-only (bugzilla #12089)
- in upgrade, when we need to migrate device names, we must write the
- fstab
- in upgrade, when we need to migrate device names, we must write the
- fstab
-
-2004/10/26 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * crypto.pm: Remove spurious "my"
-
-2004/10/26 Vincent Guardiola <vguardiola at mandrakesoft.com>
-
- * authentication.pm: Fix net join for winbind
- Changer order dialog in AD
-
-2004/10/26 Warly <warly at mandrakesoft.com>
-
- * install_any.pm: include support of the oem configuration file to display
- the correct product name
-
-2004/10/25 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Some fixed
-
-2004/10/25 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/eu.po, share/po/gl.po: updated Basque and Galician files
-
-2004/10/25 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/po/fr.po: Merge French translations from cooker
-
-2004/10/21 Daouda Lo <daouda at mandrakesoft.com>
-
- * standalone/harddrake2:
- - backport patches to MDK-10-update branch for oem
-
- * standalone/printerdrake:
- - backport fixes to MDK-10-update
-
-2004/10/21 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: remove trailing slashes
-
-2004/10/20 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/gl.po: updated Galician file
-
-2004/10/19 Daouda Lo <daouda at mandrakesoft.com>
-
- * standalone/printerdrake:
- - perl_checker fixes
- - don't hardcore distroname
- - don't trigger help system when mandrake-doc-common is not installed
- - don't trigger bug report in oem mode
-
- * standalone/harddrake2:
- - don't trigger help system when mandrake-doc-common is not installed
- - don't trigger bug report in oem mode
- - don't hardcode distro name (usefull for oem to change the distro
- name at only one place)
-
-2004/10/19 Pixel <pixel at mandrakesoft.com>
-
- * ugtk2.pm: no need to set $::o->{locale} anymore
- (it was introduced in 1.172, maybe for create_box_with_title(), but
- doesn't seem useful anymore)
-
- * standalone/net_monitor: really fix typo (ie revert gtknew() patch)
- fix typo
- simplify
-
-2004/10/19 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Repair FTP supplementary media with overriding of
- rpmsrate and compssUsers.pl
- Installation with a ftp supplementary media (for mini-isos) :
- inline the mirror list (since fetching it causes weird network
- problems).
- Fix the handling of relative urls in ftp media when fetching hdlists
- file.
-
- * pkgs.pm: Installation with a ftp supplementary media (for mini-isos) :
- inline the mirror list (since fetching it causes weird network
- problems).
- Fix the handling of relative urls in ftp media when fetching hdlists
- file.
-
- * install_steps_interactive.pm: This deserves an explanation
- Installation with a ftp supplementary media (for mini-isos) :
- inline the mirror list (since fetching it causes weird network
- problems).
- Fix the handling of relative urls in ftp media when fetching hdlists
- file.
-
- * crypto.pm: There are mirrors in many new countries now. (and sort the
- list)
- Installation with a ftp supplementary media (for mini-isos) :
- inline the mirror list (since fetching it causes weird network
- problems).
- Fix the handling of relative urls in ftp media when fetching hdlists
- file.
-
-2004/10/18 Warly <warly at mandrakesoft.com>
-
- * crypto.pm: update version checking code of crypto.pm
-
-2004/10/17 Keld Jørn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: updates
- gi/perl-install/share/po/da.po
-
-2004/10/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: update
-
-2004/10/16 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/net_monitor (update) do not re-select the default interface
- every 5 seconds
-
-2004/10/16 rstandtke
-
- * share/po/de.po: added some translations
-
-2004/10/15 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/it.po, share/po/eu.po, share/po/es.po, share/po/am.po: updated
- Basque and Amharic files
-
-2004/10/15 Pixel <pixel at mandrakesoft.com>
-
- * network/adsl.pm: cleanup
-
- * network/tools.pm: cleanup thanks to perl_checker
-
- * network/netconnect.pm: cleanup thanks to perl_checker
- make perl_checker happy
-
-2004/10/14 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2004/10/14 Pixel <pixel at mandrakesoft.com>
-
- * lvm.pm: no need to run vgscan and vgchange in standalone
- (nb: /etc/lvmtab is no more used, so i also dropped that check)
-
- * network/tools.pm: simplify
- cleanup thanks to perl_checker
-
- * standalone/fileshareset: cleanup
- perl_checker compliance
-
- * rescue/devices.pl: create /dev/md* devices in rescue
-
- * diskdrake/interactive.pm: document UUID md field
-
- * standalone/drakups: perl_checker compliance
-
- * standalone/harddrake2, standalone/service_harddrake: cleanup thanks to
- perl_checker
-
- * services.pm: simplify
- simplify
-
- * Xconfig/resolution_and_depth.pm: even if bugzilla #9755 says 24 bpp is
- not valid for vmware, Nora Etukudo says the contrary on cooker.
- the limitation seems to be "The guest X server must run at the same
- depth and bpp as the host" which is hard to enforce in XFdrake
-
- * raid.pm: put UUID instead of devices in mdadm.conf to be more device
- naming independant
- (as requested by Luca Berra on cooker)
-
- * rescue/list: add /sbin/lvm2 to the rescue
-
- * share/compssUsers.pl: remove unneeded parentheses
-
-2004/10/13 Antoine Ginies <aginies at mandrakesoft.com>
-
- * mdk-stage1/tools.c, mdk-stage1/stage1.h, mdk-stage1/tools.h,
- mdk-stage1/url.c, mdk-stage1/stage1.c, mdk-stage1/network.c,
- mdk-stage1/network.h, mdk-stage1/url.h: add new installation method (ka)
-
- * mdk-stage1/stage1-data/stage1-with-ka.tar.bz2: add stage1 with ka-tools
-
-2004/10/13 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2004/10/13 Pixel <pixel at mandrakesoft.com>
-
- * standalone/fileshareset: "portmap status" prints "portmap (pid XXXX) is
- running..." which bothers progs calling fileshareset (eg: gnome)
-
- * install_steps_interactive.pm: make perl_checker happy
- don't ask the security level in firewire meta_class
- don't ask the security level in firewire meta_class
-
-2004/10/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakfont: remove TODO entry regarding configurnig programs
- that uses fontconfig
-
-2004/10/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/ethernet.pm (get_eth_cards) workaround more buggy drivers that
- returns a bogus driver name for the GDRVINFO command of the ETHTOOL
- ioctl
-
- * standalone/drakconnect (del_intf) fix crash introduced by trainee just
- before the release :-(
-
- * drakxtools.spec: 10.1-26mdk
-
- * share/po/br.po: update
-
-2004/10/11 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: in grub menu.lst, keep previous "serial ..." and
- "terminal ..." lines (bugzilla #12054)
-
-2004/10/11 Reinout van Schouwen <reinout at cs.vu.nl>
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
- * DrakX
-
-2004/10/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/ethernet.pm (get_eth_cards) fix another lying module
-
- * drakxtools.spec: 10.1-25mdk
-
-2004/10/11 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: use k3b-dvd by default
-
-2004/10/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.1-24mdk
-
-2004/10/10 Keld Jørn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: updates
- gi/perl-install/share/po/da.po
-
-2004/10/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po: updated Persian file
-
- * share/po/uk.po: updated Ukrainian file
-
- * share/po/uz.po, share/po/pl.po, share/po/zh_TW.po, share/po/pt.po,
- share/po/fr.po, share/po/hu.po, share/po/uz@Latn.po: updated Uzbek
- files; checked various po files against latest *.pot
-
- * share/po/ja.po: updated Japanese file
-
- * share/po/nb.po, share/po/es.po: updated Spanish and Bokmål files
-
- * share/po/it.po: updated Italian file
-
-2004/10/10 vljubovic
-
- * share/po/bs.po: Fixing Bosnian translation
-
-2004/10/09 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated
-
-2004/10/09 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2004/10/09 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/adsl.pm (adsl_conf_backend) don't write ifcfg-ppp0 for
- static/dhcp connections
-
- * network/network.pm (configureNetwork2) remove
- /etc/sysconfig/network-scripts/ethX files
- that may have been created by sagem scripts
-
- * standalone/drakconnect: remove /etc/sysconfig/network-scripts/ethX files
-
-2004/10/08 (Hilbert) <h at mandrake.org>
-
- * share/po/zh_TW.po: 1660:Welcome to the Printer Setup Wizard
-
-2004/10/08 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: jorge
-
-2004/10/08 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po, share/po/fr.po: updated Estonian po file
-
-2004/10/08 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/po/fr.po: Missing French translations
-
-2004/10/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/adsl_consts.pm: fix encapsulation for chinese ISPs (Funda Wang,
- #10965)
-
- * share/rpmsrate:
- - install ppp for RTC modems
- - install kppp too if KDE is selected
- - install drivers for HSF and HCF modems
-
- * .perl_checker: perl_checker cannot currently parse the "encoding" and
- the "utf8" modules
-
- * network/netconnect.pm: try /dev/ttyS14 too for serial modems (ie
- internal PCI modems that
- don't need any driver but export a serial port instead)
- start slmodemd when installing it (thus preventing the average user to
- have to restart his machine in order to get a working connection)
- fix H[CS]F modems configuration (kernel packages were renamed)
-
- * drakxtools.spec: one more change for 10.1-23mdk
- 10.1-23mdk
- 10.1-22mdk
-
-2004/10/08 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: Simplify complicated Flags for ppp and kdenetwork-ppp
- add shareutils installed by default in SYSTEM
-
-2004/10/08 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po, share/po/fr.po: updated Estonian po file
-
-2004/10/08 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: on a recent kernel, we remove any existing devfs= kernel
- option to enable udev
-
-2004/10/08 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/po/fr.po: Missing French translations
- Fixes
-
-2004/10/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.1-22mdk
-
-2004/10/08 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: on a recent kernel, we remove any existing devfs= kernel
- option to enable udev
-
-2004/10/08 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/po/fr.po: Fixes
-
-2004/10/07 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/sr@Latn.po, share/po/sq.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/lv.po,
- share/po/hu.po, share/po/fa.po, share/po/id.po, share/po/ru.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/fr.po, share/po/ta.po, share/po/vi.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: Updated POT
-
- * share/po/zh_CN.po: Updated POT
- Updated Simplified Chinese translation
-
-2004/10/07 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: updated pot file
-
- * network/adsl_consts.pm: corrected "Morocco" name; converted to UTF-8
-
-2004/10/07 Thomas Backlund <tmb at mandrake.org>
-
- * share/po/fi.po: update translations, 100% translated, was 22 fuzzy, 2
- untranslated.
-
- * share/po/sv.po: Updated translations, 100% translated, was 193 fuzzy,
- 138 untranslated.
- Whopee.... Swedish translations are now also at 100% ....
-
-2004/10/07 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/adsl_consts.pm: add chinese ISPs (fundawang@yeah.net, #10965)
-
- * network/modem.pm (first_modem) fix crash at install time
-
- * harddrake/data.pm: explain
-
-2004/10/07 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/various.pm, install_steps.pm, Xconfig/default.pm,
- Xconfig/main.pm, harddrake/autoconf.pm:
- - XFdrake can detect a auxmouse which was not detected by mousedrake
- so we need to call various_xfree_conf()
- - this implies adding parameter $do_pkgs to a few functions
-
- * Xconfig/parse.pm: fix parsing fully commented Section. eg:
- #Section "Extensions"
- # Option "Composite" "Enable"
- # Option "RENDER" "Enable"
- #Endsection
-
-2004/10/07 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/modem.pm (first_modem) fix crash at install time
-
-2004/10/07 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/various.pm, install_steps.pm, Xconfig/default.pm,
- Xconfig/main.pm, harddrake/autoconf.pm:
- - XFdrake can detect a auxmouse which was not detected by mousedrake
- so we need to call various_xfree_conf()
- - this implies adding parameter $do_pkgs to a few functions
-
- * Xconfig/parse.pm: fix parsing fully commented Section. eg:
- #Section "Extensions"
- # Option "Composite" "Enable"
- # Option "RENDER" "Enable"
- #Endsection
-
-2004/10/06 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: jorge
-
-2004/10/06 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/am.po: updated Amharic file
-
- * share/po/nb.po: updated Bokmål file
- updated Bokmål file
-
-2004/10/06 Thomas Backlund <tmb at mandrake.org>
-
- * share/po/sv.po: updated translations, was 269 fuzzy, 193 untranslated,
- is now 171 fuzzy, 136 untranslated, the rest will be done by
- tomorrow (today?)
-
-2004/10/06 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nb.po: updated Bokmål file
-
-2004/10/06 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: fix regexp decompose_vmlinuz_name (broke with kernel
- vmlinuz-2.6.8.1-12.1mdk)
-
-2004/10/06 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_steps_auto_install.pm: Unneccessary in cooker
-
-2004/10/06 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: log one more change in 10.1-21mdk
- 10.1-21mdk
-
- * detect_devices.pm (getUPS) fix detecting UPS devices
-
-2004/10/05 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * services.pm: fixed encoding problem with the output of start/stop init
- scripts
- (the output must be forced to utf-8 in order to have it displayed in
- gtk2)
-
-2004/10/05 Pixel <pixel at mandrakesoft.com>
-
- * install_gtk.pm: no special theme for meta_class firewall
- no special theme for meta_class firewall
-
- * install_steps_interactive.pm: for meta_class firewall, call the general
- netconnect function
- don't warnAboutNaughtyServers if meta_class is firewall
- for meta_class firewall, call the general netconnect function
- don't warnAboutNaughtyServers if meta_class is firewall
-
- * Makefile: remove bad uniq now unneeded
- use TMPDIR
-
- * Makefile.config: add TMPDIR
-
- * install2.pm: don't install updates when meta_class is firewall
- don't install updates when meta_class is firewall
-
- * partition_table.pm: don't use devices::part_number(), otherwise it fails
- with c0d0p* devices
-
- * network/netconnect.pm: don't configure firewall after configuring
- network during install
- (in summary you can configure firewall directly)
-
-2004/10/05 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_steps_auto_install.pm: Add a dummy ask_yesorno for autoinstalls
-
- * crypto.pm: Further normalization of updates directories.
- New mirror structure for official updates
-
-2004/10/05 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2004/10/05 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * detect_devices.pm (getUPS) add proper support for "American Power
- Conversion|Back-UPS"
- (getUPS) fix port for MGE's USB UPSes
- (getUPS) fix drivers
- (getUPS) typo fix
- (getUPS) detect "American Power Conversion" UPS too
-
- * drakxtools.spec: 10.1-20mdk
- 10.1-19mdk
-
- * standalone/drakups: in manual adding:
- - let's have unique UPS names in the list
- - fix reading driver from the list
- write config in pure wizard mode
- (writeconf) restart upsd daemon
- install nut earlier
- fix installing nut
-
- * standalone/drakfont (font_choice) remove debug message
- fix closing import dialog (#11052)
-
- * ugtk2.pm (Gtk2::ComboBox->set_text) do not die in official release
-
- * pkgs.pm (supplCDMountPoint) perl_checker cleanup
-
- * standalone/drakconnect (save) applying changes can be quite time
- expensive, especially with
- ppp and wifi connections thus let's show the same "wait" dialog like
- in the old interface
-
- * network/adsl_consts.pm: add a few new ADSL ISP : Argentina (Speedy),
- Austria (AON), Morrocco
- (Maroc Telecom) and Thailand (Asianet) (baud)
- fix wrong VCI which wasn't in hexa for brazililan Velox/Telemar ISP
- (baud)
-
-2004/10/05 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: fix madwifi_kernel in madwifi-kernel
-
-2004/10/05 Pixel <pixel at mandrakesoft.com>
-
- * Makefile: remove bad uniq now unneeded
- remove unused specific_arch
-
- * partition_table.pm: don't use devices::part_number(), otherwise it fails
- with c0d0p* devices
-
- * tools/specific_arch: specific_arch will now return only the specific
- arch file, not the main one
- (which is what we want for perl-install/share/symlinks,
- perl-install/share/list and rescue/list)
-
-2004/10/05 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.1-19mdk
-
- * ugtk2.pm (Gtk2::ComboBox->set_text) do not die in official release
-
- * network/adsl_consts.pm: add a few new ADSL ISP : Argentina (Speedy),
- Austria (AON), Morrocco
- (Maroc Telecom) and Thailand (Asianet) (baud)
- fix wrong VCI which wasn't in hexa for brazililan Velox/Telemar ISP
- (baud)
-
-2004/10/04 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakconnect (apply) recompute NETWORK and BROADCAST fiels in
- manage interface
- (manage) use both type and device name in non-ethernet interfaces list
- (build_notebook) do not crash if BOOTPROTO is empty, use 'none' by
- default (#11899)
-
- * network/netconnect.pm: do not lose GATEWAYDEV if it is a non wireless
- one and a static
- wireless card is configured (and vice versa)
-
-2004/10/04 rcasha
-
- * share/po/mt.po: var
-
-2004/10/04 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.1-18mdk
- typo fix in 10.1-17mdk's changelog
-
- * standalone/service_harddrake: remove what should had never been commited
-
-2004/10/04 David Baudens <baudens at mandrakesoft.com>
-
- * share/po/fr.po: Fix "Corporate Desktop" advertisment
-
-2004/10/04 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
-
- * mdk-stage1/dietlibc/include/sys/io.h: allow ioports on x86_64 too for
- pcmcia support
-
- * c/smp.c: 64-bit fixes for x86_64
-
- * share/symlinks.x86_64: extra links on x86_64
-
- * rescue/list.x86_64: add grub files
-
- * Makefile: handle lib64 dirs, build pcmcia stuff on x86_64 too, handle
- arch-specific
- symlinks additions.
-
- * fs/type.pm: re-enable xfs on x86_64, for testing
-
- * Xconfig/card.pm: make perl_checker happy
- x86_64 is a lib64 platform, so handle nvidia glx here too (and ati in
- the future)
-
- * share/list.x86_64: updates for xorg
-
- * share/list: lib64 fixes, add im-cedilla
-
- * mdk-stage1/rescue-gui.c: allow recovery of MS bootloader on x86 too
-
-2004/10/04 (Hilbert) <h at mandrake.org>
-
- * share/po/zh_TW.po: 1645:
- NOTE: Depending on the printer model and the printing system up to %d MB
- of
- additional software will be installed.
-
-2004/10/04 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: do not lose GATEWAYDEV if it is a non wireless
- one and a static
- wireless card is configured (and vice versa)
- write wlan-ng config files for prism2 drivers
-
-2004/10/04 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/it.po: updated Italian file
-
-2004/10/04 rcasha
-
- * share/po/mt.po: var
-
-2004/10/04 rstandtke
-
- * share/po/de.po: some additions
-
-2004/10/04 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/service_harddrake: remove what should had never been commited
- do not disable glx when switching from nvidia driver to nv (indirect
- support, #11285)
- do not failled when hw db is corrupted
-
- * share/po/br.po: fix inverted translation for autologin
-
- * drakxtools.spec: 10.1-18mdk
- typo fix in 10.1-17mdk's changelog
- 10.1-17mdk
- 10.1-16mdk
-
-2004/10/04 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: mdkkdm is now the default again
-
-2004/10/03 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2004/10/03 Keld Jørn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: updates
- soft/menu-messages/da.po soft/mdkonline/po/da.po
- soft/mountloop/po/da.po gi/perl-install/share/po/da.po
-
-2004/10/03 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/adsl.pm: fix typo
- (sagem_set_parameters, adsl_conf_backend): write static ip in
- eagle-usb.conf if needed for sagem modems, else erase it
-
- * install_steps_interactive.pm (configureNetwork) load only ethernet
- modules before easy_dhcp (this
- will load firewire modules after other ethernet modules, so firewire
- interfaces won't always take the name eth0)
-
- * network/netconnect.pm: remove TYPE field in ifcfg files if connection
- type isn't ADSL
- perl_checker fix
- do not lose ONBOOT setting for manual/dhcp dsl connections
- misc sagem fixes:
- - allow to write static ip in eagle-usb.conf (write this file later)
- - load sagem specific modules/programs before config is written
- - do not reset IP address each time it is configured
- - automatically guess gateway for static connections
- do not break the "IP %s address is usually reserved" warning
-
-2004/10/03 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/pt.po: updated Persian file; put back current
- version of Portuguese file
-
-2004/10/03 rcasha
-
- * share/po/mt.po: var
-
-2004/10/03 tsdgeos
-
- * share/po/ca.po: Small updates for ca
-
-2004/10/02 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/cs.po: updated Czech file
-
-2004/10/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: fix keyboard names
-
-2004/10/01 Daouda Lo <daouda at mandrakesoft.com>
-
- * tools/cvslog2changelog.pl:
- - added Romain
-
-2004/10/01 Frederic Lepied <flepied at mandrakesoft.com>
-
- * network/network.pm: call the scripts in
- /etc/sysconfig/network-scripts/hostname.d like the network
- scripts are doing when changing the hostname.
-
-2004/10/01 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: create $intf->{sagem} when needed before checking
- it exists ...
- (make sagem usable again with dhcp/static connections)
-
- * mouse.pm (detect) fix synaptics auto-detection
-
-2004/10/01 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po: updated Estonian file
-
- * share/po/uk.po: updated Ukrainian file
-
-2004/10/01 Pixel <pixel at mandrakesoft.com>
-
- * share/compssUsers.pl, share/compssUsers-powerpack.pl,
- share/compssUsers-discovery.pl, share/compssUsers-powerpackplus.pl:
- dynamically choose the compssUsers based on meta_class, so now we have
- only one compssUsers.pl
-
- * share/rpmsrate: revert part of the commit that was not done on purpose
- (nb: don't modify rpmsrate *after* running clean-rpmsrate)
-
- * pkgs.pm: fix logging rpmsrate_flags_chosen
-
- * install2.pm:
- - prosuite is now named powerpackplus
- - simplify the code searching for the meta_class
- fix logging rpmsrate_flags_chosen
-
-2004/10/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakups: add --wizard option in order to directly run the
- wizard
- do not show banner when embedded
-
- * standalone/service_harddrake.sh: run harddrake service on stop
-
- * share/rpmsrate: try harder to include IMs on CDs
-
- * standalone/service_harddrake: on stop blacklist snd-usb-audio
-
- * standalone/man/C/man8/drakconnect.8: typo fixes
-
- * drakxtools.spec: 10.1-15mdk
- 10.1-14mdk
- 10.1-13mdk
-
- * detect_devices.pm: perl_checker cleanup
-
-2004/10/01 Pixel <pixel at mandrakesoft.com>
-
- * share/rpmsrate: revert part of the commit that was not done on purpose
- (nb: don't modify rpmsrate *after* running clean-rpmsrate)
-
- * pkgs.pm: fix logging rpmsrate_flags_chosen
-
- * share/compssUsers.pl, share/compssUsers-powerpack.pl,
- share/compssUsers-discovery.pl, share/compssUsers-powerpackplus.pl:
- dynamically choose the compssUsers based on meta_class, so now we have
- only one compssUsers.pl
-
- * install2.pm:
- - prosuite is now named powerpackplus
- - simplify the code searching for the meta_class
- fix logging rpmsrate_flags_chosen
-
-2004/09/30 (Hilbert) <h at mandrake.org>
-
- * share/po/zh_TW.po: 1612: Edit selected server
-
-2004/09/30 marco
-
- * share/po/it.po: fix
-
-2004/09/30 Thomas Backlund <tmb at mandrake.org>
-
- * share/po/fi.po: Updated translations, 100% translated, was 17 fuzzy, 78
- untranslated.
-
-2004/09/30 David Baudens <baudens at mandrakesoft.com>
-
- * share/compssUsers.powerpack, share/rpmsrate, share/compssUsers.pl,
- share/compssUsers-discovery.pl, share/compssUsers.server,
- share/compssUsers.desktop, share/compssUsers-powerpack.pl,
- share/compssUsers-powerpackplus.pl: Update
-
-2004/09/30 Daouda Lo <daouda at mandrakesoft.com>
-
- * standalone/net_applet:
- - Numeric comparisons
-
-2004/09/30 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/09/30 (Hilbert) <h at mandrake.org>
-
- * share/po/zh_TW.po: 1425:WARNING: this device
-
-2004/09/30 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * authentication.pm: removed "\t" and "\n" out of translatable strings to
- avoid useless
- duplication; fixed English typographic errors (don't put spaces
- before colons!).
-
- * share/po/hr.po, share/po/sv.po: updated pot file
- updated pot file
- updated Croatian and Swedish files
-
- * share/po/ja.po: updated po file
- updated pot file
- updated pot file
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/be.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: updated pot file
- updated pot file
-
-2004/09/30 Pixel <pixel at mandrakesoft.com>
-
- * lvm.pm: don't die when device-mapper is missing (occurs on 2.4 kernel)
- (bugzilla #11834)
-
- * authentication.pm: kinds() must return all kinds
- only allow Active Directory for the corporate product
- revert enhancement commit since we are in deep freeze
-
- * standalone/drakauth, install_steps_interactive.pm: only allow Active
- Directory for the corporate product
-
-2004/09/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/data.pm: typo fix
- list tablets too with mice
- use a distinct icon for UPS devices in harddrake GUI
- fix UPS devices listed in both "UPS" and "unknown" classes
- list all mice and keyboards (thus lowering unknown hardware in
- hwdb-clients)
-
- * lang.pm (configure_kdeglobals) set KDE in m17n emvironment if needed
-
- * drakxtools.spec: split localedrake menu entry in two ones:
- - one for user config
- - one for system (embedded in mcc)
- add one missing log in 10.1-12mdk
- 10.1-12mdk
-
- * share/po/br.po: translate reverted messages so that they got smoothly
- uncommented once
- drakauth changes are merged back after mdk10.1 release
- update
-
- * standalone/icons/harddrake2/ups.png: use a distinct icon for UPS devices
- in harddrake GUI
-
- * detect_devices.pm (getUPS) provide more data on UPS (arnaud quette)
- (getInputDevices) introduce it in order to list input devices
-
-2004/09/30 Vincent Guardiola <vguardiola at mandrakesoft.com>
-
- * authentication.pm: Remove ssl config in ldap
- Add pam_mkhomedir for ldap
-
-2004/09/29 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/net_monitor: check every 5 seconds (instead of 20) for new or
- disconnected interfaces (#11780)
-
-2004/09/29 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/es.po: corrected typo
-
-2004/09/29 Pixel <pixel at mandrakesoft.com>
-
- * interactive/gtk.pm:
- - disable the new gtk smart search which display an entry box
- - fix return value of key_press_event for some cases
- (otherwise arrow keys do not work)
-
-2004/09/29 rcasha
-
- * share/po/mt.po: var
-
-2004/09/29 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2004/09/29 Vincent Guardiola <vguardiola at mandrakesoft.com>
-
- * authentication.pm: Add more new entry for LDAP
-
-2004/09/29 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/es.po: corrected typo
-
-2004/09/29 Pixel <pixel at mandrakesoft.com>
-
- * partition_table/raw.pm, fsedit.pm: don't die when failing to open a
- device (to get its geometry), skip it instead
- (as used to be done before partition_table::raw::get_geometries() was
- introduced)
-
- * interactive/gtk.pm:
- - disable the new gtk smart search which display an entry box
- - fix return value of key_press_event for some cases
- (otherwise arrow keys do not work)
-
- * any.pm: add raid-extra-boot=mbr when installing on mdX (bugzilla #11699)
-
- * modules.pm: fix titi sux
-
- * install_steps.pm: ensure gdk loaders, gtk immodules and pango modules
- lists are correct
-
-2004/09/29 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: install_urpmi now writes a names file for each media
-
-2004/09/29 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * lang.pm (write) fix setting fonts at install time
-
- * modules.pm (write_preload_conf) simplify
- (write_preload_conf) preload nvram on laptops
-
- * standalone.pm (version) print translated usage message (#5657)
-
- * share/po/br.po: update
-
-2004/09/28 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: test if IP address is already used for static
- interfaces
- (do not test for sagem DSL devices since it may use many ifcfg files)
-
-2004/09/28 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: More logs on install_urpmi
-
-2004/09/28 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2004/09/28 Frederic Lepied <flepied at mandrakesoft.com>
-
- * share/rpmsrate: madwifi_pci => ath_pci
-
-2004/09/28 Pixel <pixel at mandrakesoft.com>
-
- * rescue/install_bootloader: handle /etc/mandrakelinux-release
-
- * Xconfig/xfree.pm: use Driver "keyboard" instead of "Keyboard" (for Xorg
- 6.8)
-
- * install_steps.pm, printer/main.pm, standalone/printerdrake,
- printer/printerdrake.pm, install_steps_interactive.pm:
- - make printer::printerdrake::install_spooler() work with an optional
- $in
- - many functions now take $security (which used to be taken from $in
- during install)
- - fix some functions with empty prototype but still using a parameter
- - remove some unused variable
- - rename some $_foo vars to $foo since those vars are used
- - add some undef to some function calls to be minimally perl_checker
- compliant
- - perl_checker compliant optional parameters in
- start_spooler_on_boot(), install_spooler()
-
-2004/09/28 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: More logs on install_urpmi
-
-2004/09/28 Pixel <pixel at mandrakesoft.com>
-
- * install_steps.pm, printer/main.pm, standalone/printerdrake,
- printer/printerdrake.pm, install_steps_interactive.pm:
- - make printer::printerdrake::install_spooler() work with an optional
- $in
- - many functions now take $security (which used to be taken from $in
- during install)
- - fix some functions with empty prototype but still using a parameter
- - remove some unused variable
- - rename some $_foo vars to $foo since those vars are used
- - add some undef to some function calls to be minimally perl_checker
- compliant
- - perl_checker compliant optional parameters in
- start_spooler_on_boot(), install_spooler()
-
-2004/09/27 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/tools.pm: I sux, fix priority
- (bg_command_as_root) use kdesu in kde
- (get_default_gateway_interface) try to detect default connection in
- this order : adsl > isdn > modem > ethernet
-
- * mouse.pm: use input/mice instead of psaux for synaptics touchpads
- (#11771)
- (input/mice won't work with 2.4 kernels, but it doesn't matter since
- the config file is rewritten at boot on major kernel change, and
- synaptics devices are not configured for 2.4 kernels)
-
- * network/netconnect.pm: ask to connect for isdn_external too
- don't scramble $netcnx->{type}
- ask to connect for modem/isdn connections too (crappy fix, this needs
- to be redesigned once 10.1 is out)
- we really support all linmodems (including Hsf and Hcf ones) with 2.6
- kernels
-
-2004/09/27 Pixel <pixel at mandrakesoft.com>
-
- * partition_table/lvm_PV.pm: fix typos
- simplify and handle LVM2, *but* since creating a LVM2 PV on a non
- partitioned
- drive doesn't modify the MBR, it won't help if the MBR is empty or a
- valid dos
- partition table, since those are checked first... but i won't change
- this so
- late in the release cycle
-
-2004/09/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * lang.pm: fix last commit
-
- * standalone/drakperm (get_user_or_group) list users rather than groups
- when requested for
- (anthill #1161)
-
-2004/09/27 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
-
- * share/rpmsrate.corpo-server: mandrakegalaxy
-
- * share/rpmsrate.corpo-desktop: clean-ups (factor out) + fixes for lib64
- packages
-
-2004/09/27 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: we really support all linmodems (including Hsf
- and Hcf ones) with 2.6 kernels
-
-2004/09/27 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/cs.po: updated Czech file
-
- * share/po/bn.po: updated Bengali and Ukrainian files
-
- * share/po/uk.po: updated Ukrainian file
- updated Bengali and Ukrainian files
-
- * lang.pm: fixed KDE font names to match currently shiped Xfs font names
-
-2004/09/27 Pixel <pixel at mandrakesoft.com>
-
- * partition_table/lvm_PV.pm: fix typos
- simplify and handle LVM2, *but* since creating a LVM2 PV on a non
- partitioned
- drive doesn't modify the MBR, it won't help if the MBR is empty or a
- valid dos
- partition table, since those are checked first... but i won't change
- this so
- late in the release cycle
-
- * fs.pm: fix typo
-
- * partition_table/dos.pm: fail if legacy_sectors_per_track or
- legacy_max_head doesn't exist instead of returning garbage (bugzilla
- #11738)
- perl_checker compliance
- don't call compute_nb_cylinders() before checking {sectors} and {heads}
- are valid
-
- * pkgs.pm, install2.pm: better logging
-
- * Makefile: remove from perl-Gtk2 directories from /tmp/list to have less
- warnings
-
-2004/09/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * lang.pm: fix last commit
-
- * standalone/drakperm (get_user_or_group) list users rather than groups
- when requested for
- (anthill #1161)
-
-2004/09/27 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate.corpo-server, share/rpmsrate.corpo-desktop: add ximian
- connector with evolution and change mdkonline to mdkonline-backend
-
-2004/09/26 (Hilbert) <h at mandrake.org>
-
- * share/po/zh_TW.po: perl-install:1310
- Manual choice
-
-2004/09/26 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/net_monitor: I am stupid, start when asked to start, stop
- when asked to stop
-
- * standalone/net_applet: fix again running processes detection
- (go2state) do not destroy/re-create menu if state hasn't changed, or
- else the menu may disappear without any reason
-
- * standalone/drakroam (ConnectNow) specify device to iwconfig when
- applying settings (partial fix for #11279)
-
-2004/09/26 rcasha
-
- * share/po/mt.po: var
-
-2004/09/25 (Hilbert) <h at mandrake.org>
-
- * share/po/zh_TW.po: DrakX-zh_TW: 1283
- The most common
-
-2004/09/24 Frederic Lepied <flepied at mandrakesoft.com>
-
- * install_steps.pm: Mandrakelinux
-
- * share/rpmsrate: slmodem-kernel and bluez-utils
-
-2004/09/24 Pixel <pixel at mandrakesoft.com>
-
- * printer/printerdrake.pm: don't ask when $in is not set in
- security_check()
-
- * install_steps_interactive.pm: oops, i missed a ->cleanupPrinter here.
- inline it here too
- install_steps must not call a method only defined in
- install_steps_interactive, inline it
-
- * standalone/bootloader-config: fix typos in usage
-
- * install_steps.pm: install_steps must not call a method only defined in
- install_steps_interactive, inline it
-
- * fsedit.pm: increase the max size of the swap
-
-2004/09/24 Reinout van Schouwen <reinout at cs.vu.nl>
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
- * DrakX
-
-2004/09/24 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Fix field name
- Remove dead code
- Better handling of relative paths
- Ask only once for a supplementary CD
- Fix 10.0-style paths
-
- * pkgs.pm: Save hdlists and synthesis as user root
- Remove unused code
-
-2004/09/24 tsdgeos
-
- * share/po/ca.po: Small catalan updates
-
-2004/09/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: do not disable ifplugd support for wireless cards
-
- * standalone/drakups (add_device_wizard) refix list refreshing on UPS
- adding
-
- * drakxtools.spec: fix 10.1-11mdk's changelog
- 10.1-11mdk
-
-2004/09/23 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakupdate_fstab: allow SYNC=no option in
- /etc/sysconfig/dynamic
-
- * network/modem.pm (ppp_configure) add a specific udev script in addition
- to the udev
- rules file to create /dev/modem (ttySL0 is a symlink, udev won't be
- called when it's created)
-
- * network/netconnect.pm: install kernel packages for winmodems
-
- * network/adsl.pm (adsl_probe_info) fix old typo, do not reset vpi and vci
- if vpi is
- zero
-
-2004/09/23 Pixel <pixel at mandrakesoft.com>
-
- * install_interactive.pm: call fsedit::auto_allocate() with
- $o->{partitions} so be able to fix a partitioning scheme in a defcfg
-
-2004/09/23 rcasha
-
- * share/po/mt.po: var
-
-2004/09/23 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * Makefile.config, Makefile: Introducing TMPDIR
-
- * install_any.pm: Missing bit from the trunk
-
-2004/09/23 rstandtke
-
- * share/po/de.po: some additions and fixes
-
-2004/09/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/rpmsrate: do not install scim for hindic (native keyboards're
- availlable)
- gives a change to be on CDs to skim
-
- * share/po/br.po: update
-
- * lang.pm: add support for SKIM IM
- install x-unikey for vietnamese (aka sync with share/rpmsrate)
- use Sazanami Gothic for everything in japanese (Yukiko Bando)
-
-2004/09/22 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/net_monitor: simplify
-
- * network/adsl_consts.pm: rename "|Télé2 128k " as "|Télé2" so that users
- don't choose a random
- provider with wrong vci/vpi settings
-
- * network/netconnect.pm: use ttySL0 for slmodem, so that a symlink to
- /dev/modem is done (#8947
- again)
-
-2004/09/22 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po: updated Estonian file
-
- * share/po/ja.po: updated Japanese file
-
-2004/09/22 Pixel <pixel at mandrakesoft.com>
-
- * partition_table/dos.pm: remove the backtrace
- more logging
-
- * install2.pm: don't set {meta_class} from file VERSION when it is already
- given on cmdline
-
- * fsedit.pm: fix an old ugly typo
-
- * partition_table.pm: better logging
-
- * devices.pm: module aes is now named aes-i586 (bugzilla #11588)
-
- * lvm.pm: call pvremove on every PVs when destroying a VG (to clear the
- LVM2 magic) (bugzilla #11579)
-
- * fs.pm: silently ignore encrypted filesystems with no encrypt_key
- don't add /dev/pts line in fstab anymore (it's done in initrd and udev)
-
-2004/09/22 rcasha
-
- * share/po/mt.po: var
-
-2004/09/22 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_steps.pm, install_steps_interactive.pm: New method
- selectSupplMedia
-
- * Makefile: Separate mdkinst_stage2 step in makefile
-
- * pkgs.pm: Don't read packages twice
- Fix variable name
- Handle reading multiple "hdlists" files (for supplementary media)
- More CD-rom mountpoint flexibility
- Better error reporting with rpm installation failures
- Always return a hashref from pkgs::packageMedium()
-
- * install_any.pm: A trimmed-down version of the supplementary media
- handling routine of
- 10.1 community. It handles only supplementary CDs.
- Selection of supplementary media is now a method.
- Backport utility functions from 10.1
- Cope with different cd-rom mountpoints
-
-2004/09/22 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2004/09/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: before exclamation marks, ellipsises, question marks and
- colons:
- - replace spaces by non breaking spaces where appropriate
- - add missing spaces
-
- * share/po/fr.po: fix badly phrased translation
- before exclamation marks, ellipsises, question marks and colons:
- - replace spaces by non breaking spaces where appropriate
- - add missing spaces
- fix a translation
-
-2004/09/21 David Baudens <baudens at mandrakesoft.com>
-
- * share/advertising/lpi.png, share/advertising/list-pwp,
- share/advertising/lpi.pl, share/advertising/list-dwd,
- share/advertising/list-dis, share/advertising/list-ppp: Add LPI
- advertisement
-
-2004/09/21 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/09/21 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
-
- * mdk-stage1/pcmcia_/cs.h, mdk-stage1/pcmcia_/cardmgr.c,
- mdk-stage1/pcmcia_/ds.h, mdk-stage1/pcmcia_/yacc_config.h,
- mdk-stage1/pcmcia_/cs_types.h, mdk-stage1/pcmcia_/vg468.h,
- mdk-stage1/pcmcia_/yacc_config.c, mdk-stage1/pcmcia_/i82365.h,
- mdk-stage1/pcmcia_/driver_ops.h, mdk-stage1/pcmcia_/cirrus.h: clean-up,
- merge, fix pcmcia subsystem to make it work on x86_64
-
- * mdk-stage1/init.c: dirty little hack from pixel/gc to let mdk stage1
- work with newer kernels
- ("testing" variable is supposedly obsolete btw)
-
- * mdk-stage1/rescue-gui.c: make it possible to restore windows boot loader
- on x86_64 too
-
- * share/rpmsrate: rebreakify, tv likes it
- - use correct name for mandrakegalaxy
- - install cxoffice if available
- - move rp-pppoe to appropriate location
-
- * rescue/list.x86_64: add grub stuff to rescue
-
- * bootloader.pm: run grub installation program in chroot so that to avoid
- weird pbs at times
-
- * mdk-stage1/stage1.c: same dirtly little hack (a cleanup actually)
-
- * share/list: add missing gtk module (im-cedilla), arrangements for new
- pango
-
- * mdk-stage1/Makefile: pcmcia works on x86_64 too, update stage1 build for
- 10.0
-
- * mdk-stage1/dietlibc/include/sys/io.h: define io ports on x86_64 too for
- pcmcia stuff
-
-2004/09/21 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/eu.po: updated Basque file
-
-2004/09/21 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/main.pm: allow ignoring X config file when it contains errors
-
- * mouse.pm: don't allow a broken X configuration to break mouse
- configuration
-
-2004/09/21 Tibor Pittich <Tibor.Pittich at phuture.sk>
-
- * share/po/sk.po: updated slovak translation
-
-2004/09/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: update
- typo fix
-
-2004/09/21 Warly <warly at mandrakesoft.com>
-
- * pkgs.pm: temporary workarround to fix extra CD
-
- * install_steps_gtk.pm: do not display workstation entries in corporate
- server
-
- * share/rpmsrate, share/compssUsers.corpo-server,
- share/rpmsrate.corpo-server, share/po/DrakX.pot,
- share/rpmsrate.corpo-desktop, share/advertising/dwd-01.pl,
- share/themes-corporate.rc, share/list, share/po/fr.po: Added some
- corporate specific changes
-
- * install_steps_interactive.pm: Display group selection in corporate
-
- * any.pm: do not use default autologin in corporate
-
- * Makefile: revert wrongly uploaded Makefile
- Added some corporate specific changes
-
- * install_gtk.pm: use corporate gtk theme in corporate
-
-2004/09/21 Youcef Rabah Rahal <rahal at arabeyes.org>
-
- * share/po/ar.po: Arabic translation
- Arabic translation
-
-2004/09/20 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/adsl.pm (adsl_conf_backend) do not let speedtouch-start launch
- connection
-
- * network/network.pm: more zeroconf fixes (zcip isn't a service, stop
- tmdns service if
- zeroconf is disabled, check tmdns init file in prefix/etc)
-
- * network/netconnect.pm: do not write config two times for lan connections
-
-2004/09/20 Pixel <pixel at mandrakesoft.com>
-
- * diskdrake/interactive.pm, devices.pm, fs/type.pm, fs/mount_options.pm,
- install_steps.pm, standalone/drakupdate_fstab, install_any.pm,
- install_steps_interactive.pm, partition_table.pm:
- - add field {part_number} for partitions
- (handle it in subpart_from_wild_device_name(), partition_table::read())
- - create migrate_device_names() to handle the change of device names
- when
- changing kernel&modules (eg: hde->hda or hda->sda)
- - change prototype of install_any::use_root_part()
- (prefix is dropped, optional $in is added)
- - create fs::type::can_be_this_fs_type() and use it
- - create devices::part_number() and devices::part_prefix() and use
- them
-
- * fs.pm: perl_checker compliance
- - add field {part_number} for partitions
- (handle it in subpart_from_wild_device_name(), partition_table::read())
- - create migrate_device_names() to handle the change of device names
- when
- changing kernel&modules (eg: hde->hda or hda->sda)
- - change prototype of install_any::use_root_part()
- (prefix is dropped, optional $in is added)
- - create fs::type::can_be_this_fs_type() and use it
- - create devices::part_number() and devices::part_prefix() and use
- them
-
-2004/09/20 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * pkgs.pm: Fix supplementary CDs with any kind of media
-
-2004/09/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * security/help.pm: add translator hints; real fix will be in mdk10.2:
- s!N("(.*?) \"(ALL)\" (.*?)"!N("\1 %s \3", N("\2"))! and the like
-
-2004/09/20 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/net_monitor: remove connection time timer if connection fails
- (fix #11590)
-
- * network/adsl.pm (adsl_conf_backend) use avmadsl option for capi cards to
- use settings
- generated by drdsl
-
- * network/netconnect.pm: do not write config two times for lan connections
- move "Start at boot" step for lan-like adsl/cable connections
-
- * network/network.pm: more zeroconf fixes (zcip isn't a service, stop
- tmdns service if
- zeroconf is disabled, check tmdns init file in prefix/etc)
-
-2004/09/20 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/da.po: merged with current pot file
-
-2004/09/20 Pixel <pixel at mandrakesoft.com>
-
- * diskdrake/interactive.pm, devices.pm, fs/type.pm, fs/mount_options.pm,
- install_steps.pm, standalone/drakupdate_fstab,
- install_steps_interactive.pm, partition_table.pm:
- - add field {part_number} for partitions
- (handle it in subpart_from_wild_device_name(), partition_table::read())
- - create migrate_device_names() to handle the change of device names
- when
- changing kernel&modules (eg: hde->hda or hda->sda)
- - change prototype of install_any::use_root_part()
- (prefix is dropped, optional $in is added)
- - create fs::type::can_be_this_fs_type() and use it
- - create devices::part_number() and devices::part_prefix() and use
- them
-
- * fs.pm: perl_checker compliance
- - add field {part_number} for partitions
- (handle it in subpart_from_wild_device_name(), partition_table::read())
- - create migrate_device_names() to handle the change of device names
- when
- changing kernel&modules (eg: hde->hda or hda->sda)
- - change prototype of install_any::use_root_part()
- (prefix is dropped, optional $in is added)
- - create fs::type::can_be_this_fs_type() and use it
- - create devices::part_number() and devices::part_prefix() and use
- them
- - don't use fs::get_info_from_fstab() in install_any::use_root_part()
- to be able to handle
- renamed devices
- - fs::get_info_from_fstab() doesn't take a prefix anymore
- - small perl_checker fix in install_any.pm
-
- * install_any.pm:
- - add field {part_number} for partitions
- (handle it in subpart_from_wild_device_name(), partition_table::read())
- - create migrate_device_names() to handle the change of device names
- when
- changing kernel&modules (eg: hde->hda or hda->sda)
- - change prototype of install_any::use_root_part()
- (prefix is dropped, optional $in is added)
- - create fs::type::can_be_this_fs_type() and use it
- - create devices::part_number() and devices::part_prefix() and use
- them
- - don't use fs::get_info_from_fstab() in install_any::use_root_part()
- to be able to handle
- renamed devices
- - fs::get_info_from_fstab() doesn't take a prefix anymore
- - small perl_checker fix in install_any.pm
-
- * standalone/drakboot, network/tools.pm, standalone/diskdrake,
- standalone/bootloader-config:
- - don't use fs::get_info_from_fstab() in install_any::use_root_part()
- to be able to handle
- renamed devices
- - fs::get_info_from_fstab() doesn't take a prefix anymore
- - small perl_checker fix in install_any.pm
-
-2004/09/20 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/po/fr.po: Fix typo
-
- * pkgs.pm: Fix supplementary CDs with any kind of media
-
- * install_any.pm: Remove no longer necessary hack.
-
-2004/09/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakups (add_device_wizard) default to automatic detection
-
- * share/po/br.po: update
-
-2004/09/19 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/09/19 (Hilbert) <h at mandrake.org>
-
- * share/po/zh_TW.po: DrakX-zh_TW: 1210
- Circular mounts
-
-2004/09/19 Keld Jørn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: updates (ugh!)
- gi/perl-install/share/po/da.po
- Updates
- gi/perl-install/share/po/da.po
- updates
- gi/perl-install/share/po/da.po
-
-2004/09/18 Keld Jørn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: updates
- gi/perl-install/share/po/da.po
- updates
- gi/perl-install/share/po/da.po
- updates
- gi/perl-install/share/po/da.po
-
-2004/09/17 Keld Jørn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: updates
- gi/perl-install/share/po/da.po
- Updates
- soft/drakbt/po/da.po soft/drakpxelinux/po/da.po
- gi/perl-install/share/po/da.po
-
-2004/09/17 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/service_harddrake: update iftab when new ethernet devices are
- detected
- probe firewire and pcmcia network devices too
-
- * network/ethernet.pm (configure_eth_aliases) don't write aliases for
- pcmcia cards but
- remove them, or else the pcmcia service won't be started correctly
- (the ethernet module being loaded, pcmcia_core would be loaded too,
- and the pcmcia service would think it is already started ...)
- (configure_eth_aliases) kill code that can't do anything good
- (remove_alias isn't intended to be used with the module name)
-
- * network/adsl.pm (adsl_conf_backend) make sure the speedtch kernel module
- won't be hidden
-
- * network/network.pm (configureNetwork2) really enable zeroconf if
- zeroconf is requested
- (configureNetwork2) write blank zeroconf hostname if zeroconf is
- disabled, else drakconnect will assume it is enabled
- (configureNetwork2) use services do disable zeroconf, do not disable
- if it doesn't exist (to avoid warnings in console)
-
-2004/09/17 Pixel <pixel at mandrakesoft.com>
-
- * partition_table/dos.pm, partition_table/raw.pm, fsedit.pm: try to get
- geometry from EDD
-
-2004/09/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakups: perl_checker cleanup
- remove debug message :-)
- refresh UPS list when adding a new UPS though the add wizard
- (add_device_wizard) fix automatically detect/add an UPS
-
- * share/rpmsrate: install NUT for "American Power Conversion|Back-UPS Pro
- 500" too
-
- * drakxtools.spec: 10.1-10mdk
-
-2004/09/16 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: jorge
-
-2004/09/16 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/adsl.pm: stop capi service before new config is written so that
- capiinit can unload the old driver
-
- * network/isdn.pm: stop capi service before new config is written so that
- capiinit can unload the old driver
- make isdn over capi work again
-
- * network/netconnect.pm: don't support all slmodem cards, our agreement
- forbid it :-/
- do not ask "capidrv or capidrv ?" ...
- make isdn over capi work again
-
- * share/rpmsrate: do not install isdn-light, it's unused, unsupported, and
- breaks
- isdn4net
-
- * network/network.pm (read_all_conf) use network::tools to probe
- connection type
-
-2004/09/16 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
- share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: updated pot file
-
- * share/po/es.po: fixed typo
- updated pot file
-
- * network/netconnect.pm: fixed typo (no spaces before question marks in
- English)
-
-2004/09/16 Pixel <pixel at mandrakesoft.com>
-
- * standalone/draksplash2: add as a comment the "convert" command
- imagemagick can do what gimp can't: reduce the number of colors while
- using a fixed treedepth different than 24bpp (we want 6*3 = 18bpp)
- display the stepping effect
-
- * detect_devices.pm: C3 has "cpu family" == 6, so now also checking that
- cmov flag is available to say we have a i686
-
- * install_steps_gtk.pm: on a test here, a "Server died" occured whereas
- the server is running.
- i think it can occur if the server is in fact not even started. Trying
- to handle this case
-
-2004/09/16 rcasha
-
- * share/po/mt.po: var
-
-2004/09/16 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_steps_gtk.pm: Kludgy fix for bug 11558 : sometimes when
- restarting the installer at the
- step where partitions are read, it'll be needed to reaload the rpmsrate
- and compssUsers.pl to avoid a crash a bit later.
-
- * install_any.pm: Kludgy fix for bug 11558 : sometimes when restarting the
- installer at the
- step where partitions are read, it'll be needed to reaload the rpmsrate
- and compssUsers.pl to avoid a crash a bit later.
- Better retry on error handling for supplementary media
-
- * share/list: Include locale.pm in the install, since ugtk2 now uses it.
-
-2004/09/16 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: update
- update
-
- * standalone/drakups (add_device_wizard) fix device list in wizard
- perl_checker cleanups
-
-2004/09/15 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/adsl.pm: do not add prefix in path given to ensure_is_installed
- ! (i.e. replace untested code with untested code), fix #11547 and more
- add comment
- (adsl_conf_backend) don't create empty pppoe.conf if the package isn't
- installed
- load modules and run start programs in standalone too, so that it will
- work even if the packages have just been installed
-
- * network/netconnect.pm: install unicorn-kernel package if available
- add "Unlisted - edit manually" entry in modem provider list (fix #11549)
- do not add prefix in path given to ensure_is_installed ! (i.e. replace
- untested code with untested code), fix #11547 and more
-
- * detect_devices.pm (getBewan) use more permissive regexp for PCI modem,
- description in
- pcitable may change
-
- * network/isdn.pm: do not add prefix in path given to ensure_is_installed
- ! (i.e. replace untested code with untested code), fix #11547 and more
-
-2004/09/15 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/uz.po, share/po/uz@Latn.po: updated Uzbek files
-
- * share/po/it.po: updated Italian file
-
- * keyboard.pm: removed "caps:shift" it never fully solved the problem of
- turkish keyboards
- anyway; and a much better solution is done on newer keyboard maps
- in xorg package.
-
-2004/09/15 Pixel <pixel at mandrakesoft.com>
-
- * fsedit.pm: explicit scalar false value (otherwise it gives () in list
- context)
-
- * bootloader.pm: no need to require pkgs (and it makes bootloader-config
- some break when removing entries)
-
-2004/09/15 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Use radio buttons in media selection (wildman).
- perl_checker compliance.
-
-2004/09/15 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakbackup (interactive_mode_box) better make parameter
- optionnal
-
- * share/po/bn.po, share/po/ms.po, share/po/gl.po, share/po/th.po,
- share/po/et.po, share/po/hr.po, network/netconnect.pm, share/po/be.po,
- share/po/ko.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/ar.po, share/po/ltg.po, share/po/nb.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, network/adsl.pm,
- share/po/lv.po, share/po/hu.po, share/po/ru.po, share/po/sl.po,
- share/po/nn.po, share/po/mt.po, share/po/ga.po, share/po/uk.po,
- share/po/mn.po, share/po/am.po, share/po/lt.po, share/po/tg.po,
- share/po/bs.po, share/po/fur.po, share/po/wa.po, share/po/hi.po,
- share/po/pt.po, share/po/vi.po, share/po/fr.po, share/po/ta.po,
- share/po/nl.po, share/po/de.po, share/po/eo.po, share/po/cs.po,
- share/po/uz@Latn.po: fix PPPoA case
-
- * modules/interactive.pm (load_category__prompt) fix spacing in module
- list
-
- * share/po/br.po: update
- update
- update
- update
-
- * drakxtools.spec: last minute changes in 10.1-9mdk
- 10.1-9mdk
- fix typo in 10.1-6mdk's and 10.1-7mdk's changelog
-
- * share/po/sk.po, share/po/pt_BR.po, share/po/ja.po, share/po/sv.po,
- share/po/sr.po, share/po/da.po, share/po/ky.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/fa.po, share/po/id.po, share/po/tr.po,
- share/po/mk.po, share/po/is.po, share/po/af.po, share/po/az.po,
- share/po/tl.po, share/po/el.po, share/po/bg.po: unfuzzy a few sagem
- strings
- fix PPPoA case
-
- * share/po/cy.po: update (note that my welsh needs to be reviewed as well
- as my 2004/08/13 update)
- fix PPPoA case
-
- * ugtk2.pm (get_text_coord) fix wrapping for CJ when mixed with english
- strings
- (eg: cuted "Mandrakesoft" word)
- (get_text_coord) kill unused character
-
- * install_steps_gtk.pm (installPackages) kill unused variable
-
-2004/09/15 vljubovic
-
- * share/po/bs.po: A small fix
-
-2004/09/15 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: add dkms-minimal in INSTALL
-
-2004/09/15 Youcef Rabah Rahal <rahal at arabeyes.org>
-
- * share/po/ar.po: Arabic translation
-
-2004/09/15 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/uz.po, share/po/uz@Latn.po: updated Uzbek files
-
- * share/po/it.po: updated Italian file
-
-2004/09/14 Olivier Blin <oblin at mandrakesoft.com>
-
- * install_steps.pm (configureNetwork) commit forgotten patch (I sux)
-
- * detect_devices.pm (getModem) use network/slmodem category
-
- * install_steps_interactive.pm (configureNetwork) load all network modules
- before network
- auto-configuration, so that all interfaces will be available and
- written in iftab
-
- * network/isdn.pm: adapt to kernel packages naming
-
- * network/netconnect.pm: allow to configure slmodem
-
-2004/09/14 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/cs.po: updated Czech file
-
- * lang.pm: comment for default:LTR
- comment on default:LTR
-
- * share/po/it.po, share/po/ms.po, share/po/es.po, share/po/am.po,
- share/po/fur.po, share/po/fi.po, share/po/pt.po: corrected default:LTR
- entries
-
- * share/po/ar.po: corrected "<control>X" strings
-
- * share/po/bn.po: corrected "<control>X" strings
- corrected default:LTR entries
-
-2004/09/14 Pixel <pixel at mandrakesoft.com>
-
- * diskdrake/interactive.pm, fsedit.pm, fs/mount_options.pm,
- partition_table.pm:
- - ensure {is_removable} field is there for created partitions, not
- only existing partitions
- - it breaks Create(), fixing
-
-2004/09/14 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * authentication.pm: Fix net join syntax for winbind setup.
-
-2004/09/14 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: fix typo in 10.1-7mdk's changelog
- 10.1-8mdk
- 10.1-7mdk
- package man pages
-
- * standalone/service_harddrake: adapt to new nvidia driver location
-
- * any.pm (selectCountry) offer to select IM if language has one
- preselected
- (else option is only availlable in advanced mode)
-
- * Makefile.drakxtools, Makefile: package man pages
-
- * standalone/man/C/man8/drakconnect.8: remove reference to ipchains
- add drakconnect man page
-
- * network/ethernet.pm (get_eth_cards) document it somewhat
- (get_eth_cards_names) let detect_devices->firewire_probe() set the
- device description
- (get_eth_cards) workaround buggy eth1394 that returs a bogus driver
- name for the GDRVINFO command of the ETHTOOL ioctl returns
- (get_eth_cards_names) set a sensible name for firewire network
- adapters in order to make GUIes look more user friendly
-
-2004/09/14 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/isdn.pm: adapt to kernel packages naming
- (write_config) remove unused parameter
- (setup_capi_conf) use capi4linux file to detect isdn4k-utils package
- (setup_capi_conf) install firmware if needed
- (setup_capi_conf) do not do dsl-specific stuff here
-
- * network/netconnect.pm: allow to configure slmodem
- (get_eth_cards_names) remove unused parameter
- (configureNetwork2) configure eth aliases, needs modules_conf
- cleanup, remove unused parameters and comments
- support dsl over capi
-
- * network/network.pm (configureNetwork2) configure eth aliases, needs
- modules_conf
-
- * standalone/drakconnect (get_eth_cards_names) remove unused parameter
- (configureNetwork2) configure eth aliases, needs modules_conf
- remove unused parameter
-
- * network/adsl.pm (adsl_conf_backend) move isdn4k-utils installation here
- (adsl_conf_backend) remove ifcfg-sagem
- (adsl_conf_backend) support dsl over capi
-
- * detect_devices.pm (getModem) use network/slmodem category
-
- * network/shorewall.pm, standalone/drakgw (get_eth_cards_names) remove
- unused parameter
-
- * do_pkgs.pm (check_kernel_module_packages) make ext package optionnal
-
- * network/ethernet.pm (get_eth_cards_names) remove unused parameter
- (configureNetwork2) configure eth aliases, needs modules_conf
- (configure_eth_aliases) errm, use modules_conf
- do not configure eth aliases in various places, move aliases
- configuration code from get_eth_cards_names to configure_eth_aliases
-
-2004/09/14 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/es.po, share/po/ro.po, share/po/gl.po, share/po/fur.po,
- share/po/wa.po, share/po/pt_BR.po, share/po/ca.po, share/po/eo.po,
- share/po/fr.po: MandrakeSoft -> Mandrakesoft; Mandrake -> Mandrakelinux
-
- * share/po/pt.po: MandrakeSoft -> Mandrakesoft; Mandrake -> Mandrakelinux
- fixed typo
-
- * share/po/ar.po: updated po file
-
- * share/po/cs.po: updated Czech po file
-
-2004/09/14 Pixel <pixel at mandrakesoft.com>
-
- * diskdrake/interactive.pm, fsedit.pm, fs/mount_options.pm,
- partition_table.pm:
- - ensure {is_removable} field is there for created partitions, not
- only existing partitions
- - it breaks Create(), fixing
-
- * detect_devices.pm: get the scsi driver name in field {driver}
-
-2004/09/14 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Apparently perl_checker doesn't like my perfectly
- sensible perl syntax.
-
-2004/09/14 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * network/smb.pm: syntax changes in winbind smb.conf (errors in
- /var/log/messages)
-
- * authentication.pm: Fix net join syntax for winbind setup.
-
-2004/09/14 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/man/C/man8/drakconnect.8: add drakconnect man page
-
- * standalone/service_harddrake: space cleanup
-
- * network/netconnect.pm: upcase acronyms
-
- * Makefile, Makefile.drakxtools: package man pages
-
- * standalone/draksec:
- - fix label of entry in help
- - move help from tooltips into separate page (#9894)
- rationale:
-
- - there's already a "help" button that do the same thing as mcc one
-
- - Gtk+ only support tooltips on widgets that have their own X window
- (which new
- GtkComboBox widget has not)
-
- - tooltips are usefull on first run but then are just annoying
-
- * harddrake/data.pm: detect scanners later so that we filter out bogus usb
- devices detected
- by sane_find_scanner
- detect not yet supported ethernnet cards too
- (unknown) blacklist more bridges (though f() should already take care
- of that)
- detect more bridges and the like
-
- * network/ethernet.pm (get_eth_cards) document it somewhat
- (get_eth_cards_names) let detect_devices->firewire_probe() set the
- device description
- (get_eth_cards) workaround buggy eth1394 that returs a bogus driver
- name for the GDRVINFO command of the ETHTOOL ioctl returns
- (get_eth_cards_names) set a sensible name for firewire network
- adapters in order to make GUIes look more user friendly
-
- * standalone/drakTermServ, standalone/drakfont, standalone/drakbackup:
- sanitize capitale usage on buttons
-
- * drakxtools.spec: 10.1-7mdk
- package man pages
- 10.1-6mdk
- 10.1-5mdk
-
- * scanner.pm (detect) blacklist usb devices that have a driver and that
- are wrongly
- detected by sane-find-scanner (scanners are managed by scanner.o
- module in 2.4.x and through libusb on 2.6.x)
-
-2004/09/14 Warly <warly at mandrakesoft.com>
-
- * share/logo-mandrake.png: Community 10.1 logo
-
-2004/09/14 Youcef Rabah Rahal <rahal at arabeyes.org>
-
- * share/po/ar.po: Arabic translation
-
-2004/09/13 (Hilbert) <h at mandrake.org>
-
- * share/po/zh_TW.po: DrakX-zh_TW: 711
- Please insert the
- locally modified
-
-2004/09/13 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2004/09/13 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/isdn_consts.pm: fix typo
-
- * network/netconnect.pm: do not auto-select static/dhcp if the provider
- uses pppoe
- only write ifcfg-sagem when needed
- add isdn_driver step to be able to choose between hisax and capi drivers
-
- * network/isdn.pm (setup_capi_conf) install isdn4k-utils
- handle capi drivers
-
- * network/tools.pm (get_default_ippp_interface) use interfaces with true
- DIAL_ON_IFUP
-
-2004/09/13 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_steps_interactive.pm: The "choose an update mirror" screen was
- launched without notice when
- a supplementary ftp media was selected.
-
- * install_any.pm: redundant code
-
-2004/09/13 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Fix crashes in CD/Tape setup. Fix UI behavior in
- wizard. (Nicolas Adenis-Lamarre)
-
-2004/09/13 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/09/13 Pixel <pixel at mandrakesoft.com>
-
- * share/rpmsrate: simplify
-
- * Xconfig/card.pm: adapt to new proprietary package naming
-
- * do_pkgs.pm:
- - simplify ->check_kernel_module_packages, same for install and
- standalone
- - create ->are_available used by ->check_kernel_module_packages
-
-2004/09/13 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_steps.pm: Ability to choose from the mirror list when assing an
- ftp supplementary
- media. Fix download of hdlists file for ftp supplementary media.
-
- * install_any.pm: redundant code
- deselection of found media: don't display twice media from the same
- installation CD
- http supplementary media were borked
- Ability to choose from the mirror list when assing an ftp supplementary
- media. Fix download of hdlists file for ftp supplementary media.
-
- * install_steps_interactive.pm: The "choose an update mirror" screen was
- launched without notice when
- a supplementary ftp media was selected.
- Ability to choose from the mirror list when assing an ftp supplementary
- media. Fix download of hdlists file for ftp supplementary media.
-
-2004/09/13 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Fix crashes in CD/Tape setup. Fix UI behavior in
- wizard. (Nicolas Adenis-Lamarre)
-
-2004/09/13 Till Kamppeter <till at mandrakesoft.com>
-
- * Makefile.config: Reverted accidentally uploaded file.
- Fixed "dynamic()" in scannerdrake to do not contain anything
- interactive.
-
- * standalone/scannerdrake: Fixed "dynamic()" in scannerdrake to do not
- contain anything interactive.
-
-2004/09/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: another typo fix
- typo fix
-
- * drakxtools.spec: fix 10.1-3mdk's changelog
- 10.1-4mdk
-
- * share/po/cy.po: fix draksec entries in welsh
-
- * share/rpmsrate: fix regexpes
- fix rpmsrate
- ltmodem needs ltmodem package
-
-2004/09/13 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/09/13 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
- share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: updated pot file
-
-2004/09/13 Pixel <pixel at mandrakesoft.com>
-
- * share/rpmsrate: simplify
-
- * Xconfig/card.pm: adapt to new proprietary package naming
-
- * do_pkgs.pm:
- - simplify ->check_kernel_module_packages, same for install and
- standalone
- - create ->are_available used by ->check_kernel_module_packages
-
-2004/09/13 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: http supplementary media were borked
- Ability to choose from the mirror list when assing an ftp supplementary
- media. Fix download of hdlists file for ftp supplementary media.
-
- * install_steps.pm, install_steps_interactive.pm: Ability to choose from
- the mirror list when assing an ftp supplementary
- media. Fix download of hdlists file for ftp supplementary media.
-
-2004/09/13 Till Kamppeter <till at mandrakesoft.com>
-
- * Makefile.config: Reverted accidentally uploaded file.
- Fixed "dynamic()" in scannerdrake to do not contain anything
- interactive.
-
- * standalone/scannerdrake: Fixed "dynamic()" in scannerdrake to do not
- contain anything interactive.
-
-2004/09/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: another typo fix
- typo fix
-
- * drakxtools.spec: fix 10.1-3mdk's changelog
- 10.1-4mdk
-
- * share/po/cy.po: fix draksec entries in welsh
-
- * share/rpmsrate: fix rpmsrate
- ltmodem needs ltmodem package
-
-2004/09/13 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/09/13 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ltg.po, share/po/nb.po,
- share/po/ky.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/fr.po, share/po/ta.po, share/po/vi.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: updated pot file
-
- * share/po/ar.po: updated pot file
- updated Arabic file
-
- * share/po/et.po: updated pot file
- updated Estonian po file
-
-2004/09/13 Pixel <pixel at mandrakesoft.com>
-
- * share/rpmsrate: simplify
-
- * Xconfig/card.pm: adapt to new proprietary package naming
-
- * do_pkgs.pm:
- - simplify ->check_kernel_module_packages, same for install and
- standalone
- - create ->are_available used by ->check_kernel_module_packages
-
-2004/09/13 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_steps.pm, install_any.pm, install_steps_interactive.pm: Ability
- to choose from the mirror list when assing an ftp supplementary
- media. Fix download of hdlists file for ftp supplementary media.
-
-2004/09/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/cy.po: fix draksec entries in welsh
- - fix label of entry in help
- - move help from tooltips into separate page (#9894)
- rationale:
-
- - there's already a "help" button that do the same thing as mcc one
-
- - Gtk+ only support tooltips on widgets that have their own X window
- (which new
- GkComboBox widget has not)
-
- - tooltips are usefull on first run but then are just annoying
-
- * share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
- share/po/sl.po, share/po/et.po, share/po/hr.po, share/po/mt.po,
- share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/mn.po,
- share/po/am.po, share/po/ko.po, share/po/sv.po, share/po/pl.po,
- share/po/he.po, share/po/ca.po, share/po/ar.po, share/po/tg.po,
- security/help.pm, share/po/ltg.po, share/po/uz.po, share/po/wa.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/pt.po,
- share/po/fr.po, share/po/sr@Latn.po, share/po/it.po, share/po/nl.po,
- share/po/tl.po, share/po/de.po, share/po/eo.po, share/po/bg.po,
- share/po/lv.po:
- - fix label of entry in help
- - move help from tooltips into separate page (#9894)
- rationale:
-
- - there's already a "help" button that do the same thing as mcc one
-
- - Gtk+ only support tooltips on widgets that have their own X window
- (which new
- GkComboBox widget has not)
-
- - tooltips are usefull on first run but then are just annoying
-
- * standalone/draksec (set_help_tip) only use on tooltip group
-
- * standalone/drakbug_report: fix crash
-
- * share/rpmsrate: fix rpmsrate
- ltmodem needs ltmodem package
- install Device-mapper ATARAID tool for software raid (aka bios driven
- ones)
- the odds're high we should do this too for sata_promise, sata_sx4 and
- sx8 SATA
- drivers.
- both diskdrake and initscripts now prefer mdadm over raidtools
-
- * harddrake/data.pm: explain why some hw classes are not probed on
- bootstrapping
- move comment where appropriate
-
-2004/09/13 vljubovic
-
- * share/po/bs.po: Fixing
-
-2004/09/12 (Hilbert) <h at mandrake.org>
-
- * share/po/zh_TW.po: DrakX-zh_TW: 711
- No floppy drive
-
-2004/09/12 huftis
-
- * share/po/nn.po: Fixed a few fuzzy strings.
-
-2004/09/12 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/zh_TW.po, share/po/az.po, share/po/nl.po: updated Azeri file
- updated pot file
-
- * keyboard.pm: disambiguation of keyboard names, so they can be translated
- differently
- from language names
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/pt.po, share/po/vi.po,
- share/po/fr.po, share/po/ta.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: updated pot file
-
- * share/po/it.po: updated Italian file
- updated pot file
-
-2004/09/12 Reinout van Schouwen <reinout at cs.vu.nl>
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
- * DrakX
-
-2004/09/12 Youcef Rabah Rahal <rahal at arabeyes.org>
-
- * share/po/ar.po: Arab ic translation
-
-2004/09/11 (Hilbert) <h at mandrake.org>
-
- * share/po/zh_TW.po: DrakX-zh_TW: 662
- You have selected
-
-2004/09/11 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po: updated Bengali file
-
- * share/po/fa.po, share/po/ms.po, share/po/sv.po, share/po/he.po,
- share/po/br.po, share/po/hi.po, share/po/et.po, share/po/zh_TW.po,
- share/po/tr.po, share/po/pt.po, share/po/ar.po: updated Estonian file;
- fixed error syntax in Hebrew file;
- removed non-ascii version of the bootloader message
-
-2004/09/10 (Hilbert) <h at mandrake.org>
-
- * share/po/zh_TW.po: DrakX-zh_TW: 650
- You must also
-
-2004/09/10 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: do not ask if network should be started on boot
- if it has already been
- asked during pseudo-lan configuration
-
- * standalone/net_applet: lower refresh timeout to 5 seconds
- make connect/disconnect buttons useful
-
-2004/09/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * keyboard.pm: some more XKB keyboard names fixed to match xorg versions
- fixed compose:rwin (it must be enabled if the key isn't used, and not
- when the key is already used); and a new keyboard toggle
- fixed Russian phonetic keyboard layout on xorg
-
-2004/09/10 Pixel <pixel at mandrakesoft.com>
-
- * pkgs.pm: fix choosing bestKernelPackage
- remove debug code
-
-2004/09/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: one more change in 10.1-3mdk for lord blino
- 10.1-3mdk
- typo fix in 10.1-0.19mdk's changelog
- fix 10.1-0.25mdk's changelog
- 10.1-2mdk
- - move tools description in proper packages (aka make -newt
- description somewhat usefull)
- - describe missing tools
- - sanitize tool names
-
- * share/po/fr.po: update (how did the drakvpn got fuzzy whereas this tool
- was left
- untouched for monthes???)
-
-2004/09/10 Youcef Rabah Rahal <rahal at arabeyes.org>
-
- * share/po/ar.po: Arabic translation from Arabeyes
-
-2004/09/10 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakboot (enable_framebuffer) do not kill the whole wizard
- when embedded
-
-2004/09/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * keyboard.pm: fixed compose:rwin (it must be enabled if the key isn't
- used, and not
- when the key is already used); and a new keyboard toggle
- fixed Russian phonetic keyboard layout on xorg
-
- * share/po/it.po: updated Italian file
-
-2004/09/10 Pixel <pixel at mandrakesoft.com>
-
- * pkgs.pm: fix choosing bestKernelPackage
- remove debug code
-
- * resize_fat/c_rewritten.xs, c/stuff.xs.pl, xf86misc/main.xs,
- Newt/Newt.xs: prototypes are dangerous
-
-2004/09/10 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Remove (temporarily, do we hope) the code that re-reads
- all hdlists when the
- user has added supplementary media. It doesn't work for now, when the
- main
- media is networked and the supplementary media a superset of the main
- media.
-
-2004/09/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/data.pm: autoconfigure mice on bootstrapping
-
- * harddrake/autoconf.pm: cleanups
- autoconfigure mice on bootstrapping
-
- * drakxtools.spec: typo fix in 10.1-1mdk's changelog
- 10.1-1mdk
-
- * share/po/br.po: update
-
- * standalone/service_harddrake: cleanups
- perl_checker cleanups
- autoconfigure mice on bootstrapping
-
-2004/09/10 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakboot (enable_framebuffer) do not kill the whole wizard
- when embedded
-
- * standalone/drakconnect (configure_net) use network::test to test
- internet connection
-
- * network/test.pm: fix stupid things
- fix indentation and CVS Id
- (update_status) handle decimal ping time with comma instead of dot
-
-2004/09/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/it.po: updated Italian file
-
-2004/09/10 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_gtk.pm: do not display release notes anymore (since it
- hides advertising...)
-
- * install_steps_interactive.pm: add button "Release Notes" in the
- acceptLicense dialog box
-
- * c/stuff.xs.pl, xf86misc/main.xs, Newt/Newt.xs,
- resize_fat/c_rewritten.xs: prototypes are dangerous
-
- * interactive/gtk.pm: for ask_warn with big text, create a bigger window
- introduce {more_buttons} to allow the "Release Notes" button. ugly, but
- it works :-(
-
- * rescue/list: /bin/loadkeys is no more
-
- * install2.pm: log the {meta_class}
-
- * ugtk2.pm: create_box_with_title():
- - introduce the ugly $o->{box_allow_grow}
- - cleanup the usage
-
-2004/09/10 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Remove (temporarily, do we hope) the code that re-reads
- all hdlists when the
- user has added supplementary media. It doesn't work for now, when the
- main
- media is networked and the supplementary media a superset of the main
- media.
-
-2004/09/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/data.pm: autoconfigure mice on bootstrapping
-
- * harddrake/autoconf.pm: cleanups
- autoconfigure mice on bootstrapping
-
- * drakxtools.spec: typo fix in 10.1-1mdk's changelog
- 10.1-1mdk
-
- * share/po/br.po: update
-
- * standalone/service_harddrake: cleanups
- perl_checker cleanups
- autoconfigure mice on bootstrapping
-
-2004/09/09 Pixel <pixel at mandrakesoft.com>
-
- * pkgs.pm:
- - choose the good kernel for the box
- - add recognition of i586-up-1GB
-
- * c/smp-dmi.c: max() is not defined, inline it
-
- * install_any.pm: BIGMEM now means >4GB
-
- * detect_devices.pm: add is_i586() based on "cpu family", hopefully it
- works for detecting K6 and C3
-
-2004/09/09 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/compssUsers.pl: Fix typo in section title
-
- * install_steps_interactive.pm: minor fix in last patch
- Re-read all hdlists in reverse order when there are supplementary media.
- Don't unselect every single media when doing an installation from iso
- images.
-
- * pkgs.pm, install_any.pm: Re-read all hdlists in reverse order when there
- are supplementary media.
- Don't unselect every single media when doing an installation from iso
- images.
-
-2004/09/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.1-0.27mdk
- 10.1-0.26mdk
-
- * any.pm (selectCountry) do not default to per locale default IM. IM was
- either setup by drakx or by localedrake. If the field does not
- exists, this means the user *decided* to not have an IM.
- (selectCountry) do not overwrite current IM (why does this only failed
- with miniChinput???)
-
- * standalone/localedrake: really reset IM on language switch
- remove debug message
- only default to per locale default IM when switching between locales
-
- * lang.pm (write) fix ENC setting too (like thai IM, it got broken when
- analyse_locale_name and the like were added it seems)
- fix thai IM that was broken for ages (but it was disabled in 10.0
- anyway so ...)
- fix ENC and locale specific stuff even when IM is disabled (because of
- thai)
- simplify ENC setting
- - sanitize some variable names
- - add/update comments
- (write) make it a little more readable
- (write) kill unused variable
- add a comment about font settings for installer
- Singapore is en_SG not zh_SG !!!
- (read) fix chinput identification
- fix XIM_MODIFIER field for xcin and chinput IM
-
-2004/09/09 Youcef Rabah Rahal <rahal at arabeyes.org>
-
- * share/po/ar.po: Syn with Arabeyes CVS before a translation that should
- hopefully happen soon...
-
-2004/09/09 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate: Up kpilot
-
-2004/09/09 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
- share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: Updated POT file
-
-2004/09/09 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
-
- * tools/ddcprobe/int10/i10_v86.c: Nuke use of conditional expressions as
- lvalues
-
- * tools/ddcprobe/Makefile: Remake x86emu & int10 subdirs if sources have
- changed
-
-2004/09/09 Nicolas Planel <nplanel at mandrakesoft.com>
-
- * c/smp-dmi.c: add dmi type 6 in detection memory size
-
-2004/09/09 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/isdn_consts.pm: add @isdn_capi array of cards than can use capi
- drivers
-
- * lang.pm: reduce font size in japanese install
-
-2004/09/09 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/be.po: cyrillic fixes
-
- * share/po/bs.po, share/po/af.po, share/po/az.po, share/po/am.po,
- share/po/ar.po: some Mandrake -> Mandrakelinux and MandrakeSoft ->
- Mandrakesoft fixes
-
- * share/po/tg.po, share/po/ltg.po, share/po/ru.po, share/po/ro.po,
- share/po/mt.po, share/po/sr@Latn.po, share/po/it.po, share/po/tl.po,
- share/po/sr.po, share/po/de.po, share/po/cy.po, share/po/ca.po,
- share/po/da.po, share/po/el.po, share/po/lv.po: fixed media paths
-
- * share/po/uk.po: cyrillic fixes
- fixed media paths
-
- * share/po/bg.po: some Mandrake -> Mandrakelinux and MandrakeSoft ->
- Mandrakesoft fixes
- fixed media paths
-
-2004/09/09 Pixel <pixel at mandrakesoft.com>
-
- * pkgs.pm:
- - choose the good kernel for the box
- - add recognition of i586-up-1GB
-
- * share/rpmsrate: cleanup
- remove tabulation
-
- * any.pm: even "lilo -u" can prompt about the "Volume ID" fixing process
- handles the lilo case where it wants to assign a new Volume ID: prompt
- the user, then
- - if it doesn't want to modify the Volume ID, use static-bios-codes to
- be able to install lilo
- - otherwise call lilo with answer "n" to the question "Is the above
- disk an NT boot disk?"
- so that it assigns a new Volume ID
-
- * c/smp-dmi.c: max() is not defined, inline it
-
- * bootloader.pm: handle raid-extra-boot (bugzilla #11350)
- remove unused variable
- - handle lilo "static-bios-codes" option
- - call lilo with a forced stdin (so that it doesn't read from tty)
- - enable calling lilo with a special stdin value
- help emacs mode
- fix regexp to work with "linux-2.6.8.1-10mdk"
- instead of expanding symlinks in any case, only do it when renaming
- "linux"
- into the kernel version based label (eg: "2681-10")
- that way "linux" like entries won't be modified, the way the "linux" is
- already handled
-
- * run_program.pm: don't check_prog when the prog is a complex command
- (containing a pipe)
- simplify
- rename $str into $real_name
- remove redundant code
-
- * install_any.pm: BIGMEM now means >4GB
-
- * detect_devices.pm: add is_i586() based on "cpu family", hopefully it
- works for detecting K6 and C3
-
-2004/09/09 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/po/fr.po: Grammar fixes
-
- * install_steps_interactive.pm: minor fix in last patch
- Re-read all hdlists in reverse order when there are supplementary media.
- Don't unselect every single media when doing an installation from iso
- images.
-
- * pkgs.pm, install_any.pm: Re-read all hdlists in reverse order when there
- are supplementary media.
- Don't unselect every single media when doing an installation from iso
- images.
-
-2004/09/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * any.pm (selectCountry) do not default to per locale default IM. IM was
- either setup by drakx or by localedrake. If the field does not
- exists, this means the user *decided* to not have an IM.
- (selectCountry) do not overwrite current IM (why does this only failed
- with miniChinput???)
-
- * lang.pm: fix thai IM that was broken for ages (but it was disabled in
- 10.0
- anyway so ...)
- fix ENC and locale specific stuff even when IM is disabled (because of
- thai)
- simplify ENC setting
- - sanitize some variable names
- - add/update comments
- (write) make it a little more readable
- (write) kill unused variable
- add a comment about font settings for installer
- Singapore is en_SG not zh_SG !!!
- (read) fix chinput identification
- fix XIM_MODIFIER field for xcin and chinput IM
- (write) set proper XIM_PROGRAM depending on both encoding and locale
- (fix chinput configuration that was broken for ages)
- (set_default_im) really just set default IM and nothing more
- (write) fix XIM_PROGRAM setting
- (set_default_im) simplify
- (IM packages list) when configuring chinput, we need miniChinput (a
- evolution of chinput that replaced it)
-
- * share/rpmsrate: install slmodem for ltmodem, slamr, slusb windmodem
- drivers too
-
- * standalone/localedrake: really reset IM on language switch
- remove debug message
- only default to per locale default IM when switching between locales
-
- * network/network.pm (read_all_conf) remove spurous character from regexp
- (read_all_conf) ignore rpm's backups (#10816)
-
- * resize_fat/c_rewritten.xs, xf86misc/main.xs, Newt/Newt.xs: kill warnings
-
- * drakxtools.spec: 10.1-0.27mdk
- 10.1-0.26mdk
- 10.1-0.25mdk
-
-2004/09/09 Warly <warly at mandrakesoft.com>
-
- * share/compssUsers.pl: Display Development group in the same way as other
- groups.
-
-2004/09/09 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate: Up kpilot
-
-2004/09/09 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
- share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: Updated POT file
-
-2004/09/09 Nicolas Planel <nplanel at mandrakesoft.com>
-
- * c/smp-dmi.c: add dmi type 6 in detection memory size
-
-2004/09/09 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/isdn_consts.pm: add @isdn_capi array of cards than can use capi
- drivers
-
- * lang.pm: reduce font size in japanese install
-
-2004/09/09 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/be.po: cyrillic fixes
-
- * share/po/bs.po, share/po/af.po, share/po/az.po, share/po/am.po,
- share/po/ar.po: some Mandrake -> Mandrakelinux and MandrakeSoft ->
- Mandrakesoft fixes
-
- * share/po/tg.po, share/po/ltg.po, share/po/ru.po, share/po/ro.po,
- share/po/mt.po, share/po/sr@Latn.po, share/po/it.po, share/po/tl.po,
- share/po/sr.po, share/po/de.po, share/po/cy.po, share/po/ca.po,
- share/po/da.po, share/po/el.po, share/po/lv.po: fixed media paths
-
- * share/po/uk.po: cyrillic fixes
- fixed media paths
-
- * share/po/bg.po: some Mandrake -> Mandrakelinux and MandrakeSoft ->
- Mandrakesoft fixes
- fixed media paths
-
-2004/09/09 Pixel <pixel at mandrakesoft.com>
-
- * pkgs.pm:
- - choose the good kernel for the box
- - add recognition of i586-up-1GB
-
- * share/rpmsrate: cleanup
- remove tabulation
-
- * any.pm: even "lilo -u" can prompt about the "Volume ID" fixing process
- handles the lilo case where it wants to assign a new Volume ID: prompt
- the user, then
- - if it doesn't want to modify the Volume ID, use static-bios-codes to
- be able to install lilo
- - otherwise call lilo with answer "n" to the question "Is the above
- disk an NT boot disk?"
- so that it assigns a new Volume ID
-
- * c/smp-dmi.c: max() is not defined, inline it
-
- * bootloader.pm: handle raid-extra-boot (bugzilla #11350)
- remove unused variable
- - handle lilo "static-bios-codes" option
- - call lilo with a forced stdin (so that it doesn't read from tty)
- - enable calling lilo with a special stdin value
- help emacs mode
- fix regexp to work with "linux-2.6.8.1-10mdk"
- instead of expanding symlinks in any case, only do it when renaming
- "linux"
- into the kernel version based label (eg: "2681-10")
- that way "linux" like entries won't be modified, the way the "linux" is
- already handled
-
- * run_program.pm: don't check_prog when the prog is a complex command
- (containing a pipe)
- simplify
- rename $str into $real_name
- remove redundant code
-
- * install_any.pm: BIGMEM now means >4GB
-
- * detect_devices.pm: add is_i586() based on "cpu family", hopefully it
- works for detecting K6 and C3
-
-2004/09/09 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/po/fr.po: Grammar fixes
-
- * install_steps_interactive.pm: minor fix in last patch
- Re-read all hdlists in reverse order when there are supplementary media.
- Don't unselect every single media when doing an installation from iso
- images.
-
- * pkgs.pm, install_any.pm: Re-read all hdlists in reverse order when there
- are supplementary media.
- Don't unselect every single media when doing an installation from iso
- images.
-
-2004/09/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * any.pm (selectCountry) do not default to per locale default IM. IM was
- either setup by drakx or by localedrake. If the field does not
- exists, this means the user *decided* to not have an IM.
- (selectCountry) do not overwrite current IM (why does this only failed
- with miniChinput???)
-
- * lang.pm: fix thai IM that was broken for ages (but it was disabled in
- 10.0
- anyway so ...)
- fix ENC and locale specific stuff even when IM is disabled (because of
- thai)
- simplify ENC setting
- - sanitize some variable names
- - add/update comments
- (write) make it a little more readable
- (write) kill unused variable
- add a comment about font settings for installer
- Singapore is en_SG not zh_SG !!!
- (read) fix chinput identification
- fix XIM_MODIFIER field for xcin and chinput IM
- (write) set proper XIM_PROGRAM depending on both encoding and locale
- (fix chinput configuration that was broken for ages)
- (set_default_im) really just set default IM and nothing more
- (write) fix XIM_PROGRAM setting
- (set_default_im) simplify
- (IM packages list) when configuring chinput, we need miniChinput (a
- evolution of chinput that replaced it)
-
- * share/rpmsrate: install slmodem for ltmodem, slamr, slusb windmodem
- drivers too
-
- * standalone/localedrake: really reset IM on language switch
- remove debug message
- only default to per locale default IM when switching between locales
-
- * network/network.pm (read_all_conf) remove spurous character from regexp
- (read_all_conf) ignore rpm's backups (#10816)
-
- * resize_fat/c_rewritten.xs, xf86misc/main.xs, Newt/Newt.xs: kill warnings
-
- * drakxtools.spec: 10.1-0.27mdk
- 10.1-0.26mdk
- 10.1-0.25mdk
-
-2004/09/09 Warly <warly at mandrakesoft.com>
-
- * share/compssUsers.pl: Display Development group in the same way as other
- groups.
-
-2004/09/09 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate: Up kpilot
- compssUsers.pl and rpmsrate for 10.1 Community
-
- * share/compssUsers.pl: compssUsers.pl and rpmsrate for 10.1 Community
-
-2004/09/09 Nicolas Planel <nplanel at mandrakesoft.com>
-
- * c/smp-dmi.c: add dmi type 6 in detection memory size
-
-2004/09/09 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/be.po: cyrillic fixes
-
- * share/po/tg.po, share/po/ltg.po, share/po/ru.po, share/po/ro.po,
- share/po/mt.po, share/po/sr@Latn.po, share/po/it.po, share/po/tl.po,
- share/po/de.po, share/po/sr.po, share/po/cy.po, share/po/da.po,
- share/po/ca.po, share/po/el.po, share/po/bg.po, share/po/lv.po: fixed
- media paths
-
- * share/po/uk.po: cyrillic fixes
- fixed media paths
-
-2004/09/09 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm:
- - handle lilo "static-bios-codes" option
- - call lilo with a forced stdin (so that it doesn't read from tty)
- - enable calling lilo with a special stdin value
- help emacs mode
- fix regexp to work with "linux-2.6.8.1-10mdk"
- instead of expanding symlinks in any case, only do it when renaming
- "linux"
- into the kernel version based label (eg: "2681-10")
- that way "linux" like entries won't be modified, the way the "linux" is
- already handled
-
- * any.pm: handles the lilo case where it wants to assign a new Volume ID:
- prompt the user, then
- - if it doesn't want to modify the Volume ID, use static-bios-codes to
- be able to install lilo
- - otherwise call lilo with answer "n" to the question "Is the above
- disk an NT boot disk?"
- so that it assigns a new Volume ID
-
- * run_program.pm: don't check_prog when the prog is a complex command
- (containing a pipe)
- simplify
- rename $str into $real_name
- remove redundant code
-
-2004/09/09 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_steps_interactive.pm: Fix regexp
-
- * share/po/fr.po: Grammar fixes
-
-2004/09/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/network.pm (read_all_conf) remove spurous character from regexp
- (read_all_conf) ignore rpm's backups (#10816)
-
-2004/09/08 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate: Slow mdkkdm, up kdm, add accessibility softwares
-
-2004/09/08 Frederic Lepied <flepied at mandrakesoft.com>
-
- * detect_devices.pm: added slamr, slusb and ltmodem modules for getModem
-
-2004/09/08 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2004/09/08 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakboot: update splash when removed too, use Mandrakelinux
- theme by default,
- don't give theme name to remove-theme
-
- * network/network.pm (configureNetwork2) update iftab when config is
- written
-
- * standalone/drakconnect: fix #11287
-
- * network/ethernet.pm: remove update_eth_card_iftab(), add update_iftab()
-
-2004/09/08 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/de.po (tm) -> ™
- updated po file
-
- * share/po/it.po: updated Italian file
-
- * keyboard.pm: added (commented) new keyboard for tibetan script, so I
- remember it later
-
-2004/09/08 Pixel <pixel at mandrakesoft.com>
-
- * fs/get.pm: fix comment
-
- * any.pm: replace "Cancel" with "Close" when prompting to launch userdrake
- (as suggested by Fabian Mandelbaum)
- disable "Ok" when neither NFS nor SMB is selected (as suggested by
- Fabian Mandelbaum)
-
-2004/09/08 Reinout van Schouwen <reinout at cs.vu.nl>
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
-
-2004/09/08 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * http.pm, install_any.pm: Better version of the reload-IO::Socket patch
-
- * install_steps_interactive.pm: Don't suggest lost+found as a user name
- (bug #11298)
-
- * install_steps.pm: Don't require installation of foomatic-db-engine when
- installing from the
- mini CD (bug #11292)
-
- * pkgs.pm: Add a count of skipped packages after having read an hdlist
- Always return a hashref from pkgs::packageMedium()
- Remove debug logs
-
-2004/09/08 Thomas Backlund <tmb at mandrake.org>
-
- * share/po/fi.po: updated translations...
-
-2004/09/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.1-0.24mdk
-
- * standalone/drakupdate_fstab: handle options in any order
-
- * harddrake/autoconf.pm (xconf) fix X11 autoconfiguration
-
- * standalone/drakperm (get_user_or_group) fix freeze (#11274)
-
- * standalone/service_harddrake: log which tools are runned
- fix log message when we cannot run a configurator
-
- * any.pm (set_window_manager) ensure ~/.dmrc is owned by user else GDM
- complains about (spoted by frederic crozat)
-
- * share/rpmsrate: install slmodem for winmodem managed by ALSA (there're
- more out not
- managed by ALSA that need to be added here)
-
-2004/09/07 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate: Add kphone
-
-2004/09/07 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/adsl.c (perform_adsl) ppp module doesn't exist, don't try to
- load it
-
-2004/09/07 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * http.pm, install_any.pm: Install from a CD with a networked HTTP media :
- force reloading of
- IO::Socket::INET after having brought up the network interface. It
- won't work otherwise (for mysterious reasons.)
-
-2004/09/07 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate: Add kphone
- Down kdm
-
-2004/09/07 Daouda Lo <daouda at mandrakesoft.com>
-
- * standalone/drakbug:
- - shift twice to get the correct function name
-
-2004/09/07 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/adsl.c (perform_adsl) ppp module doesn't exist, don't try to
- load it
-
- * mouse.pm: more synaptics fixes
-
- * fs/mount_options.pm (set_default) use "users" options for removable
- devices (so that users
- can unmount them if the devices were mounted by root)
-
-2004/09/07 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nb.po: updated Bokmål po file
-
-2004/09/07 Pixel <pixel at mandrakesoft.com>
-
- * standalone/bootloader-config: take care of symlink based bootloader
- entries
-
- * bootloader.pm: create get_kernels_and_labels_before_kernel_remove() used
- by bootloader-config
-
- * modules/modprobe_conf.pm, modules/modules_conf.pm: when installing on
- kernel 2.4, do generate a valid modprobe.conf anyway
-
-2004/09/07 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: install_urpmi() wasn't writing proper urls when having
- read an hdlists
- file for a networked supplementary media
- Allow supplementary media for upgrades
-
- * pkgs.pm: install_urpmi() wasn't writing proper urls when having read an
- hdlists
- file for a networked supplementary media
-
-2004/09/07 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: one more change for 10.1-0.23mdk
- last minute change for 10.1-0.23mdk
- 10.1-0.23mdk
-
- * share/po/fr.po: typo fix
- fix unclosed tag
-
- * install_steps.pm (selectLanguage) set default IM (else IM was only set
- if one click on
- "Country / Region" in summary)
-
-2004/09/07 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate: Down zapping rank
-
-2004/09/07 Daouda Lo <daouda at mandrakesoft.com>
-
- * standalone/drakbug:
- - shift twice to get the correct function name
-
-2004/09/07 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/tools.pm (get_interface_type) ethernet devices can be used as
- adsl devices
-
- * standalone/drakconnect (del_intf) use more detailled device names on
- Fabrice Facorat suggestion
- s/kind/name/
- (manage) clean interface kind assignment
-
- * network/adsl.pm: load modules for pppoe connections during install
- (partial fix for #11189)
-
- * mouse.pm: more synaptics fixes
-
- * fs/mount_options.pm (set_default) use "users" options for removable
- devices (so that users
- can unmount them if the devices were mounted by root)
-
- * network/netconnect.pm: I sux
- pppoa shouldn't be selected by default for ethernet devices, fallback on
- pppoe
- use fctStartAdsl for eagle-usb in dhcp/static modes
-
-2004/09/07 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nb.po: updated Bokmål po file
-
-2004/09/07 Pixel <pixel at mandrakesoft.com>
-
- * standalone/bootloader-config: take care of symlink based bootloader
- entries
-
- * bootloader.pm: create get_kernels_and_labels_before_kernel_remove() used
- by bootloader-config
-
- * fs.pm:
- - ignore first line of /proc/swaps
- - partially handle /udev/xxx device names in fstab
- - ignore rootfs "device"
- - don't warn for loopback files
-
- * modules/modprobe_conf.pm, modules/modules_conf.pm: when installing on
- kernel 2.4, do generate a valid modprobe.conf anyway
-
-2004/09/07 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/po/fr.po: Iran != Irak
- Typo fix
-
- * pkgs.pm: Code factorization
- Skip packages that are found on a supplementary media but that are
- already provided by the main media.
-
- * install_any.pm: Remove unused variable
-
-2004/09/07 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: one more change for 10.1-0.23mdk
- last minute change for 10.1-0.23mdk
- 10.1-0.23mdk
-
- * standalone/service_harddrake: add/update a few comments
- explicitely do not try to run configurator for AGP, ATA_STORAGE,
- SATA_STORAGE,
- SCSI_CONTROLLER and TV classes (some of them [eg: TV] do have a
- configurator
- for harddrake GUI and thus are not skiped by -x test)
-
- * share/po/fr.po: typo fix
- fix unclosed tag
- update
-
-2004/09/06 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
- Updated Simplified Chinese translation
-
- * share/po/DrakX.pot: Updated Simplified Chinese translation
-
-2004/09/06 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/adsl.pm (adsl_conf_backend) explode sagem specific stuff to
- sagem_set_parameters()
-
- * install2.pm: always load mouse modules at beginning of install (should
- fix X test
- not working with synaptics during install)
-
- * standalone/drakconnect: perl_checker fixes
- (del_intf) update for adsl/modem/isdn connections
- (build_tree) avoid code duplication, use network::modem::ppp_read_conf
- (build_notebook) Authentication is used for modems only (better fix for
- #11142)
-
- * network/modem.pm (ppp_read_conf) override Authentication if it does not
- contain a digit character,
- the empty string exists ...
- (ppp_read_conf) try to read kppp config from user dir
- (ppp_read_conf) return modem configuration
- (ppp_read_conf) use /dev/modem if no modem was detected (do not crash
- when we edit a connection whose modem is unplugged)
-
- * detect_devices.pm (getNet) fix detection in 2.4 kernel for net devices
- with high traffic
-
- * network/netconnect.pm: fix stupid error
- adjust tests, dhcp/static adsl connections can now use non-ethernet
- devices
- write sagem specific stuff for dhcp/static connections
- always ask adsl provider
- keep linmodem message for Hcf and Hsf
- remove wrong message about linmodems (#11224)
-
- * share/po/fr.po: translate Zeroconf message
-
-2004/09/06 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/wa.po, share/po/fr.po: Mandrake --> Mandrakelinux
- updated pot file
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/sr@Latn.po, share/po/sq.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/lv.po,
- share/po/hu.po, share/po/fa.po, share/po/id.po, share/po/ru.po,
- share/po/br.po, share/po/sl.po, share/po/nn.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/mn.po, share/po/uk.po,
- share/po/am.po, share/po/lt.po, share/po/cy.po, share/po/tg.po,
- share/po/bs.po, share/po/fur.po, share/po/mk.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/el.po, share/po/bg.po,
- share/po/cs.po, share/po/uz@Latn.po: updated pot file
-
- * lang.pm: some more languages not supported on console
-
- * any.pm: Changed "User name" to "Login name" (less ambiguous)
-
-2004/09/06 Pixel <pixel at mandrakesoft.com>
-
- * raid.pm: safer
- fix typo
- handle pt_type, not only fs_type
- be more failsafe with half broken existing raids
-
- * drakxtools.spec: need latest perl-MDK-Common
-
- * detect_devices.pm: BIOS release date can have date DD/MM/YY (or maybe it
- is MM/DD/YY), only YYYY was handled
-
- * fs/type.pm:
- - detect LVM2
- - don't even check_md magic when we don't have the size of the device
- detect linux software raid magic
-
- * share/rpmsrate: install xorg-x11-server when installing xorg-x11 (no
- need to do it based on the hardware anymore (it used to be needed for
- XF3))
-
- * install_steps_interactive.pm:
- - don't prompt package groups selection when the available size is
- 200MB (instead of 140MB)
- - when user unselect every groups (ie. the special minimal install
- case), allow the available size to be lower than needed size
-
- * fsedit.pm: some more logging
- fix typo
- detect linux software raid magic
-
- * diskdrake/interactive.pm: fix displaying "mdmd0" instead of "md0"
-
-2004/09/06 Reinout van Schouwen <reinout at cs.vu.nl>
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
-
-2004/09/06 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Supplementary media: don't forget to check for a new
- rpmsrate too
- Make the network supplementary media probe able to find an hdlists file
- Override rpmsrate and compssUsers.pl by the ones found on a
- supplementary CD
-
- * pkgs.pm: Make the network supplementary media probe able to find an
- hdlists file
-
- * share/list: consolechars has moved
-
-2004/09/06 Thomas Backlund <tmb at mandrake.org>
-
- * share/po/fi.po: Merge translations by Taisto Kuikka.
- Update translations, not yet fully translated...
-
-2004/09/06 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/harddrake2: better looking for alternative drivers
-
- * ugtk2.pm (_create_window) do not set border for wizards
-
- * drakxtools.spec: 10.1-0.22mdk
- 10.1-0.21mdk
-
- * install_steps.pm, standalone/localedrake, install_steps_interactive.pm:
- drop lang::write()'s prefix parameter in favor of $::prefix (which was
- already partially done)
-
- * share/rpmsrate: do not install uim-applet for japanese since SCIM
- already provides its
- own applet
-
- * harddrake/data.pm:
- - do not run drakconnect for ethernet & ADSL
- - do not run diskdrake for hd
- add module for storage controllers that are not compiled built-in in
- kernel
- add a few comments
- add module for AGP controller
- run drakconnect when an ADSL device is found (we should do so only when
- device
- is added, not when removed)
- add module for TV cards (trainee sucks...)
-
- * standalone/drakconnect: fix crashes
-
- * log.pm (explanations) redirect log where appropriate at install time
-
- * standalone/service_harddrake: typo fix
- add module for storage controllers that are not compiled built-in in
- kernel
-
- * modules.pm: add module for storage controllers that are not compiled
- built-in in kernel
-
- * standalone/drakboot: ensure we do not enable autologin w/o any user
-
- * lang.pm (write) fix log message when installing IM packages
- drop lang::write()'s prefix parameter in favor of $::prefix (which was
- already partially done)
- (write, configure_kdeglobals) log quite more explanations
- (write) really do nothing when no IM is set (harmfull but saner)
- (write) package list was already computed
- fix english name for breton
- always set QT_IM_MODULE when setting GTK_IM_MODULE
- remove uneeded quotes
- - install scim-m17n as well for generic SCIM configuration (more input
- methods)
- - split am entry from generic one since we've choosen to use
- scim-tables for am on 2004-09-01
- add specific packages to install for japanese when using SCIM
- set QT_IM_MODULE too (UTUMI Hirosi)
- we should probably set it for all IM that use gtk+ API since their API
- is almost identical.
-
- * share/po/fr.po: update
-
-2004/09/06 vljubovic
-
- * share/po/bs.po: Small fixes
-
-2004/09/05 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po, share/po/DrakX.pot: Updated Simplified Chinese
- translation
-
-2004/09/05 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po: updated Estonian file
- updated pot file
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/da.po, share/po/ca.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/uk.po,
- share/po/mn.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/af.po, share/po/hi.po,
- share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/nl.po, share/po/tl.po, share/po/de.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: updated pot file
-
- * pixmaps/langs/lang-lb.png, pixmaps/langs/lang-km.png,
- pixmaps/langs/lang-lo.png, pixmaps/langs/lang-ik.png,
- pixmaps/langs/lang-ur.png, pixmaps/langs/lang-sc.png,
- pixmaps/langs/lang-fy.png, pixmaps/langs/lang-ks.png,
- pixmaps/langs/lang-lg.png, pixmaps/langs/lang-ug.png,
- pixmaps/langs/lang-sw.png, pixmaps/langs/lang-ha.png,
- pixmaps/langs/lang-tt@Cyrl.png, pixmaps/langs/lang-pa.png,
- pixmaps/langs/lang-chr.png, pixmaps/langs/lang-csb.png,
- pixmaps/langs/lang-fur.png, pixmaps/langs/lang-so.png,
- pixmaps/langs/lang-ps.png, pixmaps/langs/lang-kl.png,
- pixmaps/langs/lang-ks@Arab.png, pixmaps/langs/lang-kk.png: new lang
- images
-
- * lang.pm: * enabled some more languages in the selection list (Furlan,
- Frisian,
- Inuktitut, Greenlandic (Kalaallisut), Khmer, Luxembourguish, Punjabi,
- Sardinian and Uyghur).
- Those languages have either translations for Mandrakelinux tools,
- or for KDE, or Gnome, or any combination of the three;
- or there have been interest recently in starting a translation for
- them.
- * updated list of available locales (@locales)
-
- * standalone/drakbackup: fixed typo
-
-2004/09/05 Reinout van Schouwen <reinout at cs.vu.nl>
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
-
-2004/09/05 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/po/fr.po: Replace a XFree86 by X11 in the French messages
-
-2004/09/04 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/pt.po: fixed typo
-
- * share/po/ja.po: updated Japanese file
-
-2004/09/03 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated
-
-2004/09/03 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: more
-
-2004/09/03 Olivier Blin <oblin at mandrakesoft.com>
-
- * Xconfig/xfree.pm (set_synaptics) remove spurious space
-
- * mouse.pm: perl_checker fix
- (set_xfree_conf) synaptics fixes
-
-2004/09/03 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Umount supplementary CD immediately after having read
- informations on it.
-
-2004/09/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/ja.po: update (Yukiko Bando <ybando@k6.dion.ne.jp>)
-
- * detect_devices.pm (getModem) handle new winmodem low level driver for
- VIA in ALSA
-
-2004/09/03 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/network.pm (findIntf, read_all_conf) use default DEVICE field
- only at last
- ressort, keep weird DEVICE fiels (i.e for sagem)
- (write_interface_conf) remove quotes if DEVICE is the result of a
- command
- (configureNetwork2) use key from $intf hash to determine ifcfg
- filename (to allow to use weird DEVICE fields, like
- DEVICE=`/usr/sbin/eaglectrl -i`)
- (write_interface_conf) allow TYPE field, will be used to recognize ADSL
- interfaces
-
- * mouse.pm (set_xfree_conf) synaptics fixes
-
- * network/netconnect.pm: support DHCP and manual for sagem devices
-
- * network/tools.pm: remove horrible and unneeded workaround
- shut up perl_checker!
- remove test_internet_connection(), use network::test instead
- (get_interface_type) enhance detection for adsl devices
-
-2004/09/03 Pixel <pixel at mandrakesoft.com>
-
- * share/list, interactive/newt.pm:
- - we need unicode_start, which need kbd_mode and a real "echo" command
- - initialize newt (and so slang) with a fake en_US.UTF-8 locale during
- install
- (and it works better when slang does its setlocale, i don't know why)
-
- * Makefile: make dont_run_directly_stage2 keep runinstall2 as a symlink
- (since mdkstage1 check it is a symlink)
- - we need unicode_start, which need kbd_mode and a real "echo" command
- - initialize newt (and so slang) with a fake en_US.UTF-8 locale during
- install
- (and it works better when slang does its setlocale, i don't know why)
-
- * lang.pm: always use utf8 strings during install since our locale is
- always utf8
-
- * Newt/Newt.xs:
- - we need unicode_start, which need kbd_mode and a real "echo" command
- - initialize newt (and so slang) with a fake en_US.UTF-8 locale during
- install
- (and it works better when slang does its setlocale, i don't know why)
- don't let slang call setlocale(), we do it ourselves
-
-2004/09/03 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Umount supplementary CD immediately after having read
- informations on it.
- Make local copies of rpmsrate and compssUsers.pl from supplementary CD
- Better handling of mounting/umounting supplementary CDs
- Add a system error when no CD reader is found for a supplementary CD
- Remove support for looking directly for a hdlist1s.cz file on
- supplementary CDs.
-
- * pkgs.pm: Better handling of mounting/umounting supplementary CDs
-
-2004/09/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: log a few more commits from blino for 10.1-0.20mdk
- 10.1-0.20mdk
-
- * share/po/ja.po: update (Yukiko Bando <ybando@k6.dion.ne.jp>)
-
- * tools/cvslog2changelog.pl: add one more translator
-
- * detect_devices.pm (getModem) handle new winmodem low level driver for
- VIA in ALSA
-
-2004/09/03 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect: don't exclude Gtk2::Entry filling
-
-2004/09/03 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/09/03 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/network.pm (findIntf, read_all_conf) use default DEVICE field
- only at last
- ressort, keep weird DEVICE fiels (i.e for sagem)
- (write_interface_conf) remove quotes if DEVICE is the result of a
- command
- (configureNetwork2) use key from $intf hash to determine ifcfg
- filename (to allow to use weird DEVICE fields, like
- DEVICE=`/usr/sbin/eaglectrl -i`)
- (write_interface_conf) allow TYPE field, will be used to recognize ADSL
- interfaces
-
- * network/netconnect.pm: support DHCP and manual for sagem devices
-
- * network/adsl.pm: adapt to new fctStartAdsl
-
- * network/tools.pm: remove horrible and unneeded workaround
- shut up perl_checker!
- remove test_internet_connection(), use network::test instead
- (get_interface_type) enhance detection for adsl devices
-
-2004/09/03 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ja.po: small fix in Japanese po files
-
- * share/po/bs.po, share/po/et.po, share/po/pt.po, share/po/pl.po,
- share/po/fr.po: updated Estonian file
-
-2004/09/03 Pixel <pixel at mandrakesoft.com>
-
- * share/list:
- - we need unicode_start, which need kbd_mode and a real "echo" command
- - initialize newt (and so slang) with a fake en_US.UTF-8 locale during
- install
- (and it works better when slang does its setlocale, i don't know why)
- stage1 terminfo is not available anymore, use our own terminfo
-
- * interactive/newt.pm:
- - we need unicode_start, which need kbd_mode and a real "echo" command
- - initialize newt (and so slang) with a fake en_US.UTF-8 locale during
- install
- (and it works better when slang does its setlocale, i don't know why)
-
- * Makefile: make dont_run_directly_stage2 keep runinstall2 as a symlink
- (since mdkstage1 check it is a symlink)
- - we need unicode_start, which need kbd_mode and a real "echo" command
- - initialize newt (and so slang) with a fake en_US.UTF-8 locale during
- install
- (and it works better when slang does its setlocale, i don't know why)
-
- * lang.pm: always use utf8 strings during install since our locale is
- always utf8
-
- * Newt/Newt.xs:
- - we need unicode_start, which need kbd_mode and a real "echo" command
- - initialize newt (and so slang) with a fake en_US.UTF-8 locale during
- install
- (and it works better when slang does its setlocale, i don't know why)
- don't let slang call setlocale(), we do it ourselves
-
- * install2.pm: stage1 terminfo is not available anymore, use our own
- terminfo
-
-2004/09/03 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * pkgs.pm: Better handling of mounting/umounting supplementary CDs
-
- * install_any.pm: Make local copies of rpmsrate and compssUsers.pl from
- supplementary CD
- Better handling of mounting/umounting supplementary CDs
- Add a system error when no CD reader is found for a supplementary CD
- Remove support for looking directly for a hdlist1s.cz file on
- supplementary CDs.
- Don't bypass errorOpeningFile, because it won't ask for further CDs
- anymore... (/me sux)
-
- * share/po/fr.po: Fix grammar.
-
-2004/09/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: log a few more commits from blino for 10.1-0.20mdk
- 10.1-0.20mdk
-
- * share/po/fr.po: update
-
- * ugtk2.pm (create_hbox) do not set extra border since we've a generic fix
- in _create_window
- (_create_window) prevent inner widgets to stick the window
-
- * tools/cvslog2changelog.pl: add one more translator
-
- * install_steps.pm, install_steps_interactive.pm (setupSCSI) load
- modularized PATA drivers too
-
-2004/09/03 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: now kernel-i686-up-4GB and kernel-p3-smp-64GB are
- deprecated
-
-2004/09/03 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect: don't exclude Gtk2::Entry filling
-
-2004/09/03 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2004/09/03 Pixel <pixel at mandrakesoft.com>
-
- * share/list, install2.pm: stage1 terminfo is not available anymore, use
- our own terminfo
-
-2004/09/03 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Don't bypass errorOpeningFile, because it won't ask for
- further CDs
- anymore... (/me sux)
-
- * share/po/fr.po: Fix grammar.
-
-2004/09/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: update
-
- * ugtk2.pm (create_hbox) do not set extra border since we've a generic fix
- in _create_window
- (_create_window) prevent inner widgets to stick the window
-
-2004/09/03 vljubovic
-
- * share/po/bs.po: Improving Bosnian translation
-
-2004/09/03 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: now kernel-i686-up-4GB and kernel-p3-smp-64GB are
- deprecated
-
-2004/09/02 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated partially
-
-2004/09/02 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated zh_CN translation
-
-2004/09/02 hilbert
-
- * share/po/zh_TW.po: DrakX-zh_TW: 626
- DrakX will first
-
-2004/09/02 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/disk.c: fix cancel in disk install
-
- * standalone/drakupdate_fstab: do not use supermount by default for
- removable devices
-
- * share/rpmsrate: add synaptics in INSTALL section
-
- * network/test.pm: initial import of connection test package
-
- * fs/mount_options.pm: set_default: use sync for removable devices
-
- * crypto.pm, install_any.pm: adapt to new mirror structure
-
-2004/09/02 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/it.po: updated po file
- updated pot file
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
- share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: updated pot file
-
- * standalone/drakhelp: Mandrake -> Mandrakelinux
-
-2004/09/02 Pixel <pixel at mandrakesoft.com>
-
- * any.pm: replace /etc/udev/conf.d/xxx.conf shell scripts with
- /etc/udev/rules.d/xxx.conf conf file
-
-2004/09/02 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: If a supplementary media is incorrect, continue asking
- Don't log too much
- Don't start network for supplementary media if it is cdrom or disk
-
- * install_steps.pm: Don't unselect all media in autoinstalls.
-
- * pkgs.pm: If a supplementary media is incorrect, continue asking
- Allow to deselect media only if the hdlists file contains a line
- "askmedia"
-
-2004/09/02 sharuzzaman
-
- * share/po/ms.po: Updated Malay translation
-
-2004/09/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.1-0.19mdk
-
- * standalone/printerdrake, standalone/scannerdrake: reuse icon for windows
-
- * standalone/localedrake: use proper window & banner icon
- set banner title...
-
- * standalone/drakhelp: reuse icon for windows
- fix untraslated title
-
- * standalone/drakfirewall, standalone/logdrake, standalone/draksec,
- standalone/drakfloppy, standalone/drakedm, standalone/drakxservices,
- standalone/drakproxy, standalone/drakperm, standalone/keyboarddrake,
- standalone/net_monitor, standalone/diskdrake, standalone/mousedrake,
- standalone/drakclock, standalone/drakxtv: reuse mcc icons (if
- availlable) for windows
-
- * printer/main.pm (write_client_conf) fix drakxtools build
-
- * any.pm (selectLanguage) tag title as translatable
-
- * ugtk2.pm (new) fallback on window'icon for wizards
-
-2004/09/01 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nb.po, share/po/es.po, share/po/fr.po, share/po/wa.po: updated
- Norwegian file; small fixes on Spanish, French and Walloon files
-
-2004/09/01 Pixel <pixel at mandrakesoft.com>
-
- * share/rpmsrate: comply with the rpmsrate parser
-
-2004/09/01 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm:
- - Do not check for presence of "scanner-gui" during install.
-
- * services.pm:
- - Lete the function "start_not_running_service()" really start the
- specified service if it is not running instead of being a copy of the
- function "is_service_running()".
- - Restored wrong upload.
-
-2004/09/01 Frederic Lepied <flepied at mandrakesoft.com>
-
- * share/rpmsrate: fixed/added some laptop entries
-
-2004/09/01 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
- share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: Updated POT file
-
-2004/09/01 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo melo
- last rush
-
-2004/09/01 Olivier Blin <oblin at mandrakesoft.com>
-
- * share/rpmsrate: add xawtv in TV section, install ati.2 for ATI cards
- only
-
-2004/09/01 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/fonts.tar.bz2: fixed fonts.cache-1 file so that the tamil font no
- longer claims it
- support western languages.
-
-2004/09/01 Pixel <pixel at mandrakesoft.com>
-
- * share/rpmsrate: comply with the rpmsrate parser
-
-2004/09/01 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: perl_checker cleanup
-
-2004/09/01 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm:
- - Do not check for presence of "scanner-gui" during install.
- - Fixed bug of printerdrake trying to install the virtual package
- "scanner-gui" during installation (when a multi-function device from HP
- is present).
-
- * printer/main.pm:
- - If cupsd.conf is read but does not exist, use default settings for
- all settings which are required. This prevents from writing a corrupt
- cupsd.conf
- - Write cupsd.conf only if it exists already (cups package installed).
- - Create /etc/cups directory if it does not exist when client.conf is
- written
- - Return something reasonable if client.conf is tried to be read but
- does not exist.
- - Write mime.convs only if it exists already (cups package installed).
-
- * services.pm:
- - Lete the function "start_not_running_service()" really start the
- specified service if it is not running instead of being a copy of the
- function "is_service_running()".
- - Restored wrong upload.
- - Lete the function "start_not_running_service()" really start the
- specified service if it is not running instead of being a copy of the
- function "is_service_running()".
-
-2004/09/01 Frederic Lepied <flepied at mandrakesoft.com>
-
- * share/rpmsrate: fixed/added some laptop entries
-
-2004/09/01 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
- share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: Updated POT file
-
-2004/09/01 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2004/09/01 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/net_applet: add notconfigured state
-
- * share/rpmsrate: add xawtv in TV section, install ati.2 for ATI cards
- only
-
- * standalone/drakboot: do not crash if default autologin or default
- desktop doesn't exist
-
- * standalone/service_harddrake: write modules conf files if a tv card is
- detected
-
- * mdk-stage1/init.c: drop non-standard tld (localdomain)
-
- * standalone/net_monitor: fix stupid error
-
- * network/network.pm: symlink resolv.conf in install root, so that it
- works for dhcp too
- write /etc/resolv.conf in install root
-
- * network/tools.pm: revert titi fix, do not return random interface if
- internet connection
- is not configured
- do not use find over grep, just find
-
-2004/09/01 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/fonts.tar.bz2: fixed fonts.cache-1 file so that the tamil font no
- longer claims it
- support western languages.
- modified the fonts.conf file so that a subset of the "sans" alias list
- is copied into the "serif" and "monospace" aliases list, before the
- listing
- of problematic fonts, hoping it will solve bug #10937
- (apparently the problem is that input fields want a monospace font,
- there is no latin monospace font, and a rando font is used, the tamil
- one having wrong glyphs at some latin1 positions)
-
-2004/09/01 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * lang.pm: Fix syntax error
-
- * any.pm: Fix generation of urpmi.cfg when doing a disk install from a
- live tree
-
- * share/rpmsrate: remove duplicated entry for nut-server
-
- * install_any.pm: perl_checker cleanup
- ensure install_interactive is loaded
- When adding a networked supplementary media, configure the network if
- needed. Install basesystem for this purpose.
-
- * Makefile: Split into a new target mdkinst_stage2
-
-2004/09/01 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm:
- - Fixed bug of printerdrake trying to install the virtual package
- "scanner-gui" during installation (when a multi-function device from HP
- is present).
-
-2004/09/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/net_applet: perl_checker cleanups
-
- * standalone/harddrake2: enable harddrake2 to properly adapt to theme
- changes and the like
-
- * share/rpmsrate: enable SCIM for Amharic language
-
- * standalone/drakclock: unbreak drakclock
-
- * network/tools.pm (get_internet_connection) if no default route exits,
- take first route in order
- to not have strange messages in net_appletb
-
- * drakxtools.spec: 10.1-0.18mdk
-
- * lang.pm: enable SCIM for Amharic language
- typo fix
- simplify
-
- * detect_devices.pm (getBewan) reuse ematching_desc__regexp()
-
- * standalone/drakautoinst (create_notebook) follow the same parameter
- order as gtkappend_page() use and
- as C/Gtk+ does
-
- * ugtk2.pm (create_notebook) follow the same parameter order as
- gtkappend_page() use and
- as C/Gtk+ does
- (create_notebook) give meaningfull name to variables
-
-2004/09/01 Warly <warly at mandrakesoft.com>
-
- * standalone/drakclock: initialize and so that motion_event correctly
- handle the mouse moves
- Repaint the calendar (especially when the day changed)
- Make the hour tick shorter
- Check if the ntpdate command succeed or not, do not quit if it fails
- Only apply the date command again if ntp mode is not selected
- Do not perform a date command when ntpdate has just been called
-
-2004/08/31 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: updated a part of
-
-2004/08/31 David Baudens <baudens at mandrakesoft.com>
-
- * share/po/fr.po: ads #25: use translation from Marketing and not one
- which come from nowhere
- Close <b> in ads #28
-
-2004/08/31 Frederic Lepied <flepied at mandrakesoft.com>
-
- * harddrake/data.pm: added initial support for UPS
-
- * detect_devices.pm: please perl_checker
- simplify UPS detection and report the needed info for harddrake
-
- * share/rpmsrate: added kuickshow and supertux
-
-2004/08/31 Florin Grad <florin at mandrakesoft.com>
-
- * network/shorewall.pm: use the loc zone in policy only if the loc
- interface exists
-
-2004/08/31 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
- share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: Updated POT file
-
-2004/08/31 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
-
- * share/advertising/README, share/advertising/corpo-server-03.png,
- share/advertising/corpo-desk-10.pl,
- share/advertising/corpo-server-09.png, share/advertising/list-cpd,
- share/advertising/corpo-server-06.pl,
- share/advertising/corpo-server-01.pl,
- share/advertising/corpo-desk-01.png,
- share/advertising/corpo-desk-05-a.pl,
- share/advertising/corpo-desk-09.png,
- share/advertising/corpo-desk-05-a.png,
- share/advertising/corpo-desk-06-a.pl,
- share/advertising/corpo-desk-06.png, share/advertising/corpo-desk-02.pl,
- share/advertising/corpo-desk-06-b.pl,
- share/advertising/corpo-server-08.pl,
- share/advertising/corpo-desk-05-b.png,
- share/advertising/corpo-server-02.pl,
- share/advertising/corpo-server-10.png,
- share/advertising/corpo-server-10.pl,
- share/advertising/corpo-server-05.pl,
- share/advertising/corpo-server-08.png, share/advertising/list-cps,
- share/advertising/corpo-desk-03.png,
- share/advertising/corpo-server-06.png,
- share/advertising/corpo-desk-07.pl,
- share/advertising/corpo-server-07.pl,
- share/advertising/corpo-desk-04.pl, share/advertising/corpo-desk-09.pl,
- share/advertising/corpo-server-05.png,
- share/advertising/corpo-server-02.png,
- share/advertising/corpo-desk-05.png,
- share/advertising/corpo-desk-02.png, share/advertising/corpo-desk-05.pl,
- share/advertising/corpo-desk-06.pl, share/advertising/corpo-desk-08.png,
- share/advertising/corpo-server-04.pl,
- share/advertising/corpo-desk-07.png,
- share/advertising/corpo-server-09.pl,
- share/advertising/corpo-server-07.png,
- share/advertising/corpo-desk-04.png,
- share/advertising/corpo-server-01.png,
- share/advertising/corpo-desk-03.pl,
- share/advertising/corpo-desk-06-b.png,
- share/advertising/corpo-desk-05-b.pl,
- share/advertising/corpo-desk-10.png,
- share/advertising/corpo-server-04.png,
- share/advertising/corpo-desk-01.pl,
- share/advertising/corpo-desk-06-a.png,
- share/advertising/corpo-desk-08.pl,
- share/advertising/corpo-server-03.pl: Corporate material
-
-2004/08/31 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: dia zero
- melo
-
-2004/08/31 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/net_applet (is_running) enhance regexp, use any
-
-2004/08/31 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * lang.pm: make CONSOLE_NOT_LOCALIZED written to i18n file
-
- * share/po/nl.po, share/po/id.po, share/po/lt.po, share/po/cy.po,
- share/po/et.po, share/po/da.po, share/po/mt.po, share/po/uz@Latn.po:
- updated Welsh and Estonian files; fixed some errors due to automatic
- replacements.
-
-2004/08/31 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_steps.pm, install_any.pm, install_steps_interactive.pm: Support
- for unselecting some media before the install (begin.)
-
- * pkgs.pm: Remove dead code
- Support for unselecting some media before the install (begin.)
-
- * share/rpmsrate: Remove duplicate entries in rpmsrate
-
- * share/po/fr.po: French grammar fix
-
-2004/08/31 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/data.pm:
- - Let xpp also be installed when in daemon-less CUPS client mode.
-
-2004/08/31 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakconnect (build_notebook) fix crashes (#11100)
-
- * share/rpmsrate: install nut-server for MGE's UPS
-
- * standalone/net_applet (is_running) make it work
- (is_running) try harder
- (is_running) ignore our own process ... (brown paper bag bug)
-
-2004/08/30 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: part updated
-
-2004/08/30 David Baudens <baudens at mandrakesoft.com>
-
- * share/advertising/25.png: New image
-
-2004/08/30 Daouda Lo <daouda at mandrakesoft.com>
-
- * standalone/net_applet:
- - no need to run net-monitor with '--testing'
- - launch net_monitor in background
- - typo
- - avoid duplication
- - s/and/or/ (oblin)
- - launch net_monitor once (test if there's a running net_monitor
- before)
-
-2004/08/30 Frederic Lepied <flepied at mandrakesoft.com>
-
- * share/rpmsrate: added smartmontools
-
-2004/08/30 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/08/30 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/tools.pm, standalone/net_monitor: move start_interface and
- stop_interface from net_monitor to network::tools, use it in net_monitor
- and net_applet
-
- * network/netconnect.pm: adsl_conf_backend needs $intf now
- NET_DEVICE is the ethernet interface for pptp too
-
- * standalone/net_applet: move start_interface and stop_interface from
- net_monitor to network::tools, use it in net_monitor and net_applet
- allow to connect/disconnect from net_applet
- is_running returns a boolean which would never be > 1
-
- * network/adsl.pm: write ifcfg files for NET_DEVICE if it's ethernet
- (pptp, pppoe)
-
-2004/08/30 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
- share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: updated pot file
- updated pot file
-
- * standalone/printerdrake: fixed use of N()
-
- * share/po/it.po: updated Italian file
- updated pot file
- updated pot file
-
-2004/08/30 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * pkgs.pm, install_any.pm: Fix support for suppl. CDs with hdlists file
-
-2004/08/30 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm:
- - Fixed duplicate translatable strings.
- - Added column to show whether the printers are enabled or disables to
- the list of available print queues in the main window.
- - Added command to the edit-printer window to enable and disable print
- queues.
- - Fixed bug of "--expert" command line option of printerdrake not
- working.
-
- * printer/cups.pm, printer/main.pm, standalone/printerdrake:
- - Added column to show whether the printers are enabled or disables to
- the list of available print queues in the main window.
- - Added command to the edit-printer window to enable and disable print
- queues.
- - Fixed bug of "--expert" command line option of printerdrake not
- working.
-
-2004/08/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.1-0.17mdk
-
- * share/po/br.po: update
- typo fixes (Arpad Biro <biro_arpad@yahoo.com>)
-
- * standalone/drakclock: fix layout so that NTP frame is not badly cut on
- small resolution (#10971)
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, standalone/drakvpn, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- standalone/drakconnect, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/sl.po, share/po/nn.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/mn.po, share/po/uk.po,
- share/po/am.po, share/po/lt.po, share/po/cy.po, share/po/tg.po,
- share/po/bs.po, share/po/fur.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: typo fixes (Arpad
- Biro <biro_arpad@yahoo.com>)
-
- * share/po/fr.po: minor update
- update
- typo fixes (Arpad Biro <biro_arpad@yahoo.com>)
-
-2004/08/30 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakupdate_fstab: do not restrict "many partitions" test to
- SCSI devices
- do not mount and add/delete in fstab when many partitions (#11005)
-
- * mouse.pm: really make synaptics works at install (don't crash graphical
- install)
-
-2004/08/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk2.pm (Gtk2::ComboBox::set_text) explain which caller failled
-
- * drakxtools.spec: 10.1-0.16mdk
-
- * Xconfig/resolution_and_depth.pm (choose_gtk) fix crash
-
- * share/po/fr.po: update
-
-2004/08/29 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/sr@Latn.po, share/po/sq.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/lv.po,
- share/po/hu.po, share/po/fa.po, share/po/id.po, share/po/ru.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/fr.po, share/po/ta.po, share/po/vi.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: Updated POT file
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
- Updated POT file
-
-2004/08/29 hilbert
-
- * share/po/zh_TW.po: DrakX-zh_TW: 618
- authentication
- DrakX-zh_TW: 612
- Espanol
-
-2004/08/29 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm, standalone/printerdrake, printer/printerdrake.pm:
- - Inform the user on first-time setup, both during or after
- installation, that he can set up a daemon-less CUPS client.
- - Warn the user when printerdrake is set to daemon-less CUPS client
- but no server is specified.
- - Fixed bug of local queues not being recognized when the spooler
- daemon is not running during printerdrake startup.
- - Do not try to copy print queues when switchung from daemon-less CUPS
- to normal CUPS.
- - Remove the client.conf when switching from daemon-less CUPS to
- normal CUPS.
-
-2004/08/29 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakroam: move DHCP column to left for better sizing (Austin
- <aacton@yorku.ca>)
- (UpdateAvailable) print ESSID too (Austin <aacton@yorku.ca>)
- fix Add button behavior (Austin <aacton@yorku.ca>)
-
-2004/08/29 vljubovic
-
- * share/po/bs.po: Improving Bosnian translation
-
-2004/08/27 hilbert
-
- * share/po/zh_TW.po: DrakX-zh_TW: 604
- done
-
-2004/08/27 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm, network/tools.pm, network/network.pm,
- network/adsl.pm: write metric in ifcfg files according to connection
- type
-
- * standalone/drakconnect (manage) read settings from correct interface for
- non ethernet interfaces
- (manage) add metric text entry for all connections
-
- * network/modem.pm: use same keys than manage interface for metrics
- (ppp_read_conf) read metric if set
- write metric in ifcfg files according to connection type
-
-2004/08/27 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/rpmsrate: Remove duplicated entries with complex flags from the
- rpmsrate
-
-2004/08/27 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/default.pm, printer/cups.pm, printer/main.pm, printer/data.pm,
- standalone/printerdrake, printer/printerdrake.pm:
- - Made support for daemon-less CUPS client working.
- - Fixed graying out of buttons/menu entries in the main window.
-
-2004/08/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/localedrake: do not complain on wizcancel
-
- * standalone/logdrake (insert_text_n_scroll) fix displaying only last
- parsed file
-
- * detect_devices.pm (matching_driver) introduce it in order to factorize
- some tests
- add __regexp suffix to matching_desc() and matching_driver()
- (getModem) report modems supported by ALSA too
-
- * lang.pm: space cleanup for lord perl_checker
- (IM2packages)
- - alter prototype: directly take a locale hash
- - get lang from locale hash
- - use it to install needed packages depending on locale (instead of
- only generic ones depending on IM)
-
- * drakxtools.spec: 10.1-0.15mdk
-
- * Xconfig/card.pm, pkgs.pm, common.pm, install_steps.pm, bootloader.pm,
- install_any.pm: add __regexp suffix to matching_desc() and
- matching_driver()
-
- * share/rpmsrate: sort a few entries
-
-2004/08/27 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: melo
-
-2004/08/27 Laurent Montel <lmontel at mandrakesoft.com>
-
- * share/rpmsrate: Don't install kdeutils-klaptop all the time
- just when we detect a laptop
-
-2004/08/27 Olivier Blin <oblin at mandrakesoft.com>
-
- * install2.pm: read modules configuration file from stage1 as modules_conf
- file, but
- get an object of the proper type by using modules::any_conf::vnew
-
-2004/08/27 Olivier Thauvin <thauvin at aerov.jussieu.fr>
-
- * Xconfig/xfree.pm:
- - add dell D800 specific modeline and resolution
-
-2004/08/27 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nb.po, share/po/cs.po: updated Czech and Bokmål po files
-
-2004/08/27 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Support for multiple supplementary media
-
- * share/rpmsrate: Remove duplicated entries with complex flags from the
- rpmsrate
-
-2004/08/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakboot (lilo_choice) fix canceling first step
-
- * detect_devices.pm (matching_driver) introduce it in order to factorize
- some tests
- add __regexp suffix to matching_desc() and matching_driver()
- (getModem) report modems supported by ALSA too
-
- * standalone/localedrake: do not complain on wizcancel
- no need to check first step return value since we're covered by both
- Wizard_no_previous and die('wizcancel')
- remove useless label "the_end"
- inline select_language()
- make it looks and behave like a wizard for GUI sanity (previously
- cancel on second step resulted in step backward rather than exit...)
-
- * share/rpmsrate: sort a few entries
-
- * standalone/logdrake (insert_text_n_scroll) fix displaying only last
- parsed file
-
- * lang.pm: space cleanup for lord perl_checker
- (IM2packages)
- - alter prototype: directly take a locale hash
- - get lang from locale hash
- - use it to install needed packages depending on locale (instead of
- only generic ones depending on IM)
-
- * Xconfig/card.pm, pkgs.pm, common.pm, install_steps.pm, bootloader.pm,
- install_any.pm: add __regexp suffix to matching_desc() and
- matching_driver()
-
- * drakxtools.spec: 10.1-0.15mdk
-
-2004/08/26 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated 95%
- Updated partially
-
-2004/08/26 David Baudens <baudens at mandrakesoft.com>
-
- * share/po/fr.po: Finish to add french translation from Marketing team
- (DrakX ads)
-
-2004/08/26 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
-
- * tools/ddcprobe/vbe.c, tools/ddcprobe/Makefile: Some arrangements for
- IA-64
- PowerPC arrangements from Christiaan Welvaart
-
- * tools/ddcprobe/of.c: PowerPC arrangements from Christiaan Welvaart
-
- * tools/ddcprobe/ddcxinfos.c: Some arrangements for IA-64
-
-2004/08/26 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: josé melo
-
-2004/08/26 Olivier Blin <oblin at mandrakesoft.com>
-
- * install_steps_gtk.pm: define and use $o->{mouse}{alternate_install} if
- detected mouse can't be used during install
-
- * network/netconnect.pm: adsl devices need network restart if they're
- *not* in the adsl devices list
-
- * install_steps.pm (doPartitionDisksBefore) umount /sys and /proc/bus/usb
- in chroot
-
- * Xconfig/xfree.pm (set_synaptics) quote decimal values so that
- write_XF86Config doesn't
- write commas instead of dots
-
- * mouse.pm: i sux
- define and use $o->{mouse}{alternate_install} if detected mouse can't be
- used during install
- (set_xfree_conf) don't create crappy auxmouse if there is none
- (detect) do not return unusable synaptics driver at beginning of install
-
-2004/08/26 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/tg.po, share/po/fa.po, share/po/nb.po, share/po/bn.po,
- share/po/uz.po, share/po/ru.po, share/po/wa.po, share/po/pt_BR.po,
- share/po/sl.po, share/po/hi.po, share/po/af.po, share/po/et.po,
- share/po/pt.po, share/po/vi.po, share/po/fr.po, share/po/nl.po,
- share/po/it.po, share/po/uk.po, share/po/eu.po, share/po/es.po,
- share/po/tl.po, share/po/pl.po, share/po/de.po, share/po/fi.po,
- share/po/cy.po, share/po/da.po, share/po/ca.po, share/po/ar.po,
- share/po/uz@Latn.po: updated Estonian and Spanish files; retrieved some
- more old strings
-
-2004/08/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: complete 10.1-0.14mdk's changelog
- add bug reference in 10.1-0.11mdk's changelog
- 10.1-0.9mdk
-
- * share/po/fr.po: minor update
- typo fix
- update
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/advertising/18.pl, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/el.po, share/po/bg.po,
- share/po/cs.po, share/po/uz@Latn.po: typo fix
-
-2004/08/25 David Baudens <baudens at mandrakesoft.com>
-
- * share/po/fr.po: DrakX ads: begin to add french translations from
- Marketing team
-
- * share/advertising/24.png, share/advertising/07.png,
- share/advertising/26.png, share/advertising/16.png,
- share/advertising/11.png, share/advertising/02.png,
- share/advertising/23.png, share/advertising/15.png,
- share/advertising/03.png, share/advertising/14.png,
- share/advertising/25.png, share/advertising/19.png,
- share/advertising/13-a.png, share/advertising/10.png,
- share/advertising/04.png, share/advertising/27.png,
- share/advertising/18.png, share/advertising/28.png,
- share/advertising/13-b.png, share/advertising/22.png,
- share/advertising/09.png, share/advertising/29.png,
- share/advertising/30.png, share/advertising/06.png,
- share/advertising/17.png, share/advertising/05.png,
- share/advertising/21.png, share/advertising/20.png,
- share/advertising/08.png, share/advertising/12.png: Images for 10.1
-
-2004/08/25 Funda Wang <fundawang at linux.net.cn>
-
- * standalone/drakedm: Mandrake -> Mandrakelinux. Mark DM entries as
- translatable.
-
-2004/08/25 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
-
- * tools/ddcprobe/vbe.c, tools/ddcprobe/vbe.h: Extensive rewrite and
- cleanups to use the new int10 interface. Plus add
- some 64-bit fixes and a last-resort means to get VBE/EDID information
- from special -BOOT kernel during early boot.
-
- * Xconfig/monitor.pm: Parse XFree86.log in last resort in case we have not
- got any valuable
- information at this stage from ddcxinfos.
-
- * crypto.pm: Always prefer 64-bit packages for updates on biarch
- platforms.
-
- * tools/ddcprobe/ddcxinfos.c: Some cleanups
- Extensive rewrite and cleanups to use the new int10 interface. Plus add
- some 64-bit fixes and a last-resort means to get VBE/EDID information
- from special -BOOT kernel during early boot.
-
- * share/list.x86_64: i18n stuff at install time, probably make it common
- with /LIB/
-
- * tools/ddcprobe/x86emu/include/x86emu.h,
- tools/ddcprobe/x86emu/include/x86emu/fpu_regs.h,
- tools/ddcprobe/x86emu/include/x86emu/regs.h,
- tools/ddcprobe/x86emu/include/x86emu/types.h: Add remaining x86 CPU
- emulator bits
-
- * partition_table.pm: add XFS to x86_64 known FS
-
- * Xconfig/card.pm: handle lib64 drivers on x86-64
-
- * install_steps_gtk.pm: default to 75dpi in order to get anti-aliased
- fonts
-
- * drakxtools.spec: update changelog dates to please rpm + add some
- highlights to please titi
- enough amd64 changes merged
-
- * tools/ddcprobe/x86emu/x86emu/prim_asm.h, tools/ddcprobe/x86emu/sys.c,
- tools/ddcprobe/x86emu/x86emu/fpu.h, tools/ddcprobe/x86emu/prim_ops.c,
- tools/ddcprobe/x86emu/ops.c, tools/ddcprobe/x86emu/debug.c,
- tools/ddcprobe/x86emu/x86emu/x86emui.h,
- tools/ddcprobe/x86emu/x86emu/decode.h, tools/ddcprobe/x86emu/validate.c,
- tools/ddcprobe/x86emu/x86emu/prim_ops.h, tools/ddcprobe/x86emu/decode.c,
- tools/ddcprobe/x86emu/x86emu/debug.h, tools/ddcprobe/x86emu/fpu.c,
- tools/ddcprobe/x86emu/LICENSE, tools/ddcprobe/x86emu/Makefile,
- tools/ddcprobe/x86emu/x86emu/ops.h, tools/ddcprobe/x86emu/ops2.c: Add
- x86 CPU emulator for BIOS int10 emulation on non x86 arches.
-
- * tools/ddcprobe/minifind.h, tools/ddcprobe/of.c,
- tools/ddcprobe/minifind.c: Get EDID block from OF (kudzu)
-
- * c/smp.c: fix smp detection on x86_64
-
- * Makefile: Handle PCMCIA on x86-64 too. Fix libs glob for live tree.
- Don't ship with
- "cdcom" modules archives in netinstallable trees.
-
- * tools/ddcprobe/int10/vbios.h, tools/ddcprobe/int10/pci.h,
- tools/ddcprobe/int10/Makefile, tools/ddcprobe/int10/i10_v86.c,
- tools/ddcprobe/int10/i10_int.c, tools/ddcprobe/int10/i10_vbios.c,
- tools/ddcprobe/int10/v86bios.h, tools/ddcprobe/int10/emu_vm86.c,
- tools/ddcprobe/int10/i10_pci.c, tools/ddcprobe/int10/i10_io.c,
- tools/ddcprobe/int10/vm86_struct.h, tools/ddcprobe/int10/README,
- tools/ddcprobe/int10/AsmMacros.h: VGA softbootloader for Linux, uses an
- x86 CPU emulator on non x86 arches.
-
- * tools/ddcprobe/Makefile: Some cleanups
- Raw merge from Kudzu for PPC. Christian, can you get something of it?
- Only use VBE parsing code on x86 and x86_64.
- Extensive rewrite and cleanups to use the new int10 interface. Plus add
- some 64-bit fixes and a last-resort means to get VBE/EDID information
- from special -BOOT kernel during early boot.
-
- * install_steps.pm: handle nolapic, idle=poll, ide=nodma boot options
-
-2004/08/25 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/adsl_consts.pm: fix Titi sux hard (add missing comma and spaces,
- remove spurious
- nameserver word)
-
- * network/tools.pm: add missing spaces
- add get_interface_type to guess interface type
-
- * standalone/net_applet: avoid grep to grep itself, use perl
-
- * install_any.pm: set TV flag when a TV card is detected to install
- appropriate packages
-
- * any.pm (selectCountry) fix Pixel broke country selection (bug 10938)
-
- * standalone/service_harddrake: killer feature: restore bootsplash mode
- don't abort miserably if configurator is code
- fix typo
-
- * standalone/drakconnect: use exists
- (manage) use network::tools::get_interface_type instead of
- /etc/sysconfig/drakconnect in order to avoid to recognize ppp0 as both
- modem and adsl (bug 10772)
-
- * tools/i386/netboot/davicom/stage2, tools/i386/netboot/grub,
- tools/i386/netboot/via_rhine/pxegrub, tools/i386/netboot/natsemi/nbgrub,
- tools/i386/netboot/davicom/nbgrub, tools/i386/netboot/cs89x0/stage2,
- tools/i386/netboot/cs89x0/pxegrub, tools/i386/netboot/via_rhine/stage2,
- tools/i386/netboot/davicom/pxegrub, tools/i386/netboot/natsemi/stage2,
- tools/i386/netboot/via_rhine/nbgrub, tools/i386/netboot/davicom/stage1,
- tools/i386/netboot/cs89x0/nbgrub, tools/i386/netboot/cs89x0/stage1,
- tools/i386/netboot/via_rhine/stage1, tools/i386/netboot/natsemi/pxegrub,
- tools/i386/netboot/natsemi/stage1: add new drivers, upgrade to grub-0.95
-
- * tools/i386/netboot/ni5010/stage1, tools/i386/netboot/tiara/pxegrub,
- tools/i386/netboot/3c507/pxegrub, tools/i386/netboot/lance/nbgrub,
- tools/i386/netboot/otulip/nbgrub, tools/i386/netboot/tulip/pxegrub,
- tools/i386/netboot/ni5210/pxegrub, tools/i386/netboot/sis900/stage1,
- tools/i386/netboot/otulip/stage1, tools/i386/netboot/ni6510/stage2,
- tools/i386/netboot/eepro100/stage2, tools/i386/netboot/3c503/stage1,
- tools/i386/netboot/w89c840/stage1, tools/i386/netboot/ni5010/nbgrub,
- tools/i386/netboot/smc9000/stage2, tools/i386/netboot/ns8390/pxegrub,
- tools/i386/netboot/lance/stage1, tools/i386/netboot/tulip/stage2,
- tools/i386/netboot/ni5210/stage1, tools/i386/netboot/rtl8139/stage2,
- tools/i386/netboot/ne/stage1, tools/i386/netboot/rtl8139/nbgrub,
- tools/i386/netboot/sis900/nbgrub, tools/i386/netboot/3c509/nbgrub,
- tools/i386/netboot/eepro/stage1, tools/i386/netboot/lance/stage2,
- tools/i386/netboot/otulip/stage2, tools/i386/netboot/ni5010/pxegrub,
- tools/i386/netboot/ns8390/stage2, tools/i386/netboot/wd/nbgrub,
- tools/i386/netboot/ne/pxegrub, tools/i386/netboot/depca/stage2,
- tools/i386/netboot/tulip/nbgrub, tools/i386/netboot/lance/pxegrub,
- tools/i386/netboot/tiara/stage1, tools/i386/netboot/epic100/pxegrub,
- tools/i386/netboot/ni6510/pxegrub, tools/i386/netboot/3c90x/stage1,
- tools/i386/netboot/3c507/nbgrub, tools/i386/netboot/3c529/stage2,
- tools/i386/netboot/epic100/nbgrub, tools/i386/netboot/wd/stage2,
- tools/i386/netboot/3c507/stage1, tools/i386/netboot/3c595/stage2,
- tools/i386/netboot/3c529/stage1, tools/i386/netboot/depca/pxegrub,
- tools/i386/netboot/ne2100/stage2, tools/i386/netboot/exos205/stage1,
- tools/i386/netboot/w89c840/pxegrub, tools/i386/netboot/sk_g16/pxegrub,
- tools/i386/netboot/3c509/stage1, tools/i386/netboot/eepro/stage2,
- tools/i386/netboot/rtl8139/pxegrub, tools/i386/netboot/3c595/pxegrub,
- tools/i386/netboot/smc9000/stage1, tools/i386/netboot/w89c840/nbgrub,
- tools/i386/netboot/3c503/nbgrub, tools/i386/netboot/ne/stage2,
- tools/i386/netboot/sk_g16/stage2, tools/i386/netboot/exos205/nbgrub,
- tools/i386/netboot/tulip/stage1, tools/i386/netboot/wd/stage1,
- tools/i386/netboot/3c503/pxegrub, tools/i386/netboot/3c529/nbgrub,
- tools/i386/netboot/ni6510/stage1, tools/i386/netboot/depca/nbgrub,
- tools/i386/netboot/3c503/stage2, tools/i386/netboot/ni5010/stage2,
- tools/i386/netboot/sis900/stage2, tools/i386/netboot/eepro/pxegrub,
- tools/i386/netboot/3c90x/nbgrub, tools/i386/netboot/ni6510/nbgrub,
- tools/i386/netboot/epic100/stage1, tools/i386/netboot/ne2100/pxegrub,
- tools/i386/netboot/rtl8139/stage1, tools/i386/netboot/tiara/nbgrub,
- tools/i386/netboot/ns8390/stage1, tools/i386/netboot/3c90x/pxegrub,
- tools/i386/netboot/3c595/stage1, tools/i386/netboot/ni5210/nbgrub,
- tools/i386/netboot/depca/stage1, tools/i386/netboot/3c509/pxegrub,
- tools/i386/netboot/ne2100/stage1, tools/i386/netboot/sk_g16/stage1,
- tools/i386/netboot/eepro100/nbgrub, tools/i386/netboot/tiara/stage2,
- tools/i386/netboot/eepro100/stage1, tools/i386/netboot/ns8390/nbgrub,
- tools/i386/netboot/ni5210/stage2, tools/i386/netboot/eepro100/pxegrub,
- tools/i386/netboot/3c507/stage2, tools/i386/netboot/3c509/stage2,
- tools/i386/netboot/3c90x/stage2, tools/i386/netboot/3c595/nbgrub,
- tools/i386/netboot/epic100/stage2, tools/i386/netboot/otulip/pxegrub,
- tools/i386/netboot/eepro/nbgrub, tools/i386/netboot/3c529/pxegrub,
- tools/i386/netboot/exos205/pxegrub, tools/i386/netboot/ne2100/nbgrub,
- tools/i386/netboot/w89c840/stage2, tools/i386/netboot/smc9000/pxegrub,
- tools/i386/netboot/wd/pxegrub, tools/i386/netboot/sis900/pxegrub,
- tools/i386/netboot/exos205/stage2, tools/i386/netboot/sk_g16/nbgrub,
- tools/i386/netboot/ne/nbgrub, tools/i386/netboot/smc9000/nbgrub: upgrade
- to grub-0.95
-
- * tools/i386/netboot/make_boot_network: warn if driver not available,
- print available drivers
-
- * tools/i386/netboot/makeImages: use grub-0.95
- don't be a bastard, keep CVS directory
-
- * tools/i386/netboot/stage1.via-rhine, tools/i386/netboot/stage1.3c59x,
- tools/i386/netboot/stage2.3c59x, tools/i386/netboot/stage2.tulip,
- tools/i386/netboot/stage1.tulip, tools/i386/netboot/stage2.rtl8139,
- tools/i386/netboot/stage2.3c90x, tools/i386/netboot/stage1.eepro100,
- tools/i386/netboot/stage2.via-rhine, tools/i386/netboot/stage1.rtl8139,
- tools/i386/netboot/stage1.3c90x, tools/i386/netboot/stage2.eepro100:
- delete obsolete files
-
-2004/08/25 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/data.pm, printer/printerdrake.pm:
- - Moved initial package installation by printerdrake into
- "install_spooler()" function, so all package installation done by
- printerdrake (except printer/queue-type-specific, as HPOJ) is done in
- one step.
- - First changes for daemonless CUPS client support.
-
-2004/08/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.1-0.13mdk
- merge in lost 10-34.3.100mdk's changelog
-
- * ugtk2.pm (create_packtable) fix cuted ads at install time
-
- * network/adsl_consts.pm: fix siol's vci (hexa formated)
-
- * Makefile.config: add listsupportedprinters
-
- * standalone/service_harddrake: rename loop variable in order to prevent
- trainee to be confused
- support inline configuators
- run proper program :-)
- just go on if --force is passed
-
-2004/08/25 Gwenole Beauchesne <gbeauchesne at mandrakesoft.com>
-
- * tools/ddcprobe/vbe.c, tools/ddcprobe/vbe.h, tools/ddcprobe/Makefile,
- tools/ddcprobe/ddcxinfos.c: Extensive rewrite and cleanups to use the
- new int10 interface. Plus add
- some 64-bit fixes and a last-resort means to get VBE/EDID information
- from special -BOOT kernel during early boot.
-
- * Xconfig/monitor.pm: Parse XFree86.log in last resort in case we have not
- got any valuable
- information at this stage from ddcxinfos.
-
- * crypto.pm: Always prefer 64-bit packages for updates on biarch
- platforms.
-
- * share/list.x86_64: i18n stuff at install time, probably make it common
- with /LIB/
-
- * tools/ddcprobe/x86emu/include/x86emu.h,
- tools/ddcprobe/x86emu/include/x86emu/fpu_regs.h,
- tools/ddcprobe/x86emu/include/x86emu/regs.h,
- tools/ddcprobe/x86emu/include/x86emu/types.h: Add remaining x86 CPU
- emulator bits
-
- * partition_table.pm: add XFS to x86_64 known FS
-
- * Xconfig/card.pm: handle lib64 drivers on x86-64
-
- * install_steps_gtk.pm: default to 75dpi in order to get anti-aliased
- fonts
-
- * tools/ddcprobe/x86emu/x86emu/prim_asm.h, tools/ddcprobe/x86emu/sys.c,
- tools/ddcprobe/x86emu/x86emu/fpu.h, tools/ddcprobe/x86emu/prim_ops.c,
- tools/ddcprobe/x86emu/ops.c, tools/ddcprobe/x86emu/debug.c,
- tools/ddcprobe/x86emu/x86emu/x86emui.h,
- tools/ddcprobe/x86emu/x86emu/decode.h, tools/ddcprobe/x86emu/validate.c,
- tools/ddcprobe/x86emu/x86emu/prim_ops.h, tools/ddcprobe/x86emu/decode.c,
- tools/ddcprobe/x86emu/x86emu/debug.h, tools/ddcprobe/x86emu/fpu.c,
- tools/ddcprobe/x86emu/LICENSE, tools/ddcprobe/x86emu/Makefile,
- tools/ddcprobe/x86emu/x86emu/ops.h, tools/ddcprobe/x86emu/ops2.c: Add
- x86 CPU emulator for BIOS int10 emulation on non x86 arches.
-
- * drakxtools.spec: update changelog dates to please rpm + add some
- highlights to please titi
- enough amd64 changes merged
-
- * c/smp.c: fix smp detection on x86_64
-
- * tools/ddcprobe/int10/vbios.h, tools/ddcprobe/int10/pci.h,
- tools/ddcprobe/int10/Makefile, tools/ddcprobe/int10/i10_v86.c,
- tools/ddcprobe/int10/i10_int.c, tools/ddcprobe/int10/i10_vbios.c,
- tools/ddcprobe/int10/v86bios.h, tools/ddcprobe/int10/emu_vm86.c,
- tools/ddcprobe/int10/i10_pci.c, tools/ddcprobe/int10/i10_io.c,
- tools/ddcprobe/int10/vm86_struct.h, tools/ddcprobe/int10/README,
- tools/ddcprobe/int10/AsmMacros.h: VGA softbootloader for Linux, uses an
- x86 CPU emulator on non x86 arches.
-
- * Makefile: Handle PCMCIA on x86-64 too. Fix libs glob for live tree.
- Don't ship with
- "cdcom" modules archives in netinstallable trees.
-
- * install_steps.pm: handle nolapic, idle=poll, ide=nodma boot options
-
-2004/08/25 hilbert
-
- * share/po/zh_TW.po: DrakX-zh_TW: 604
- (not finished)
-
-2004/08/25 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/adsl_consts.pm: fix Titi sux hard (add missing comma and spaces,
- remove spurious
- nameserver word)
-
- * network/tools.pm: add missing spaces
- add get_interface_type to guess interface type
-
- * any.pm (selectCountry) fix Pixel broke country selection (bug 10938)
-
- * standalone/drakconnect: use exists
- (manage) use network::tools::get_interface_type instead of
- /etc/sysconfig/drakconnect in order to avoid to recognize ppp0 as both
- modem and adsl (bug 10772)
-
-2004/08/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.1-0.13mdk
- merge in lost 10-34.3.100mdk's changelog
-
- * network/adsl_consts.pm: fix siol's vci (hexa formated)
-
- * Makefile.config: add listsupportedprinters
-
-2004/08/24 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
- Updated Simplified Chinese translation
-
-2004/08/24 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: mmodem
-
-2004/08/24 Olivier Blin <oblin at mandrakesoft.com>
-
- * modules/modprobe_conf.pm, modules/any_conf.pm, modules/modules_conf.pm:
- really parse modules file according to its type when reading it (always
- call $conf->read, split modules::any_conf::read in
- modules::any_conf::read_handled)
-
- * printer/detect.pm (local_detect) fix modules conf parsing
-
- * install_steps.pm: drop non-standard tld (localdomain)
-
- * network/network.pm (add2hosts) use difference2
- (add2hosts) make it more readable
- (add2hosts) rework parsing
- i sux
- (configureNetwork2) always add an hostname alias and add it on the
- loopback device (bug 10345)
- (add2hosts) allow multiple aliases per host
- (add2hosts) regexp fixes
-
- * standalone/drakconnect (configure_net) do not ask the user to do an
- inifinite looping in MCC ...
-
- * detect_devices.pm (usbMice, usbWacom) wacom devices can have 'wacom' as
- driver
-
- * mouse.pm, Xconfig/xfree.pm: synaptics touchpad support
-
-2004/08/24 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
- share/po/ky.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/fr.po,
- share/po/ta.po, share/po/vi.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: updated Japanese file; retrieved
- some old translation strings
-
- * share/po/nb.po: updated Bokmål file
- updated Japanese file; retrieved some old translation strings
-
-2004/08/24 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm:
- - Special treatments for print queues with the "lbp660" and "ml85p"
- drivers. Here the driver communicates directly with the printer instead
- of sending the output to a CUPS backend.
- - Make sure that queues which have special treatment, as for example
- the ones using "lbp660" and "ml85p", do not try to open message indows
- when the print queues are auto-generated by dynamic/hotplug.
- - If the user gets an error/warning message during setup of a queue
- with special treatment, he is automatically put back to the previous
- step in the add-printer wizard.
- - Let warning messages (funktion "ask_warn()") never embed in the
- add-printer wizard, as they have no "Previous" button in the wizard.
- Fixed "ask_from_()" calls in "config_cups()" (Thanks Olivier for
- breaking it in your perl-checker clean-up in 1.119 --> 1.120).
-
- * standalone/listsupportedprinters: Added "listsupportedprinters", a
- simple program which runs the printer model list function of
- printerdrake to get a list of supported printer models on STDOUT (Mainly
- for auto-generation of Mandrakelinux hardware support database).
-
- * standalone/printerdrake: Version number.
-
-2004/08/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * lang.pm (write) use newly introduced IM2packages() in order to install
- proper
- packages depending on (locale, input method) tuple
- (IM2packages) introduce it in order to know which packages need to be
- installed for a (locale, input method) tuple
-
- * standalone/drakroam: fix crash when config directory does not exist
- (#10935)
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, standalone/drakups, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/el.po,
- share/po/bg.po, share/po/cs.po, share/po/uz@Latn.po: typo fix
-
- * network/adsl_consts.pm: add Siol (the bigest ADSL provider in Slovenia)
- in ADSL providers DB
- (Gregor Pirnaver <gregor.pirnaver@mandrakeprinas.org>)
-
-2004/08/23 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/08/23 hilbert
-
- * share/po/zh_TW.po: DrakX-zh_TW: 598
- If you chose
-
-2004/08/23 Olivier Blin <oblin at mandrakesoft.com>
-
- * crypto.pm (getPackages) use new mirror structure filepaths
-
- * standalone/net_monitor: watch connection time, not disconnection time
- :-)
-
- * commands.pm (modprobe) use load_with_options instead of load_raw to take
- care of
- module dependencies
-
- * network/network.pm (add2hosts) make it work with sub hostnames
-
-2004/08/23 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * standalone/drakvpn, standalone/drakclock: no space before question marks
- in English
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/el.po, share/po/bg.po,
- share/po/cs.po, share/po/uz@Latn.po: updated pot file
-
- * install_steps_interactive.pm: no space before a question mark in English
-
- * network/netconnect.pm: no space before question marks in English
- no space before a question mark in English
-
-2004/08/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.1-0.12mdk
-
- * printer/printerdrake.pm: language names are upcase in english
- aspell's typo fixes
-
- * Xconfig/card.pm (to_raw_X) do not set DRI mode anymore; this is not
- needed anymore
- with PAM
-
- * Makefile.config: add autosetupprintqueues
-
- * network/netconnect.pm, standalone/drakvpn, standalone/drakTermServ,
- standalone/drakbackup, standalone/drakconnect: protocol names, trademark
- and acronyms should be upcase
- aspell's typo fixes
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/da.po, share/po/ca.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/uk.po, share/po/mn.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/hi.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/ta.po, share/po/fr.po, share/po/nl.po, share/po/tl.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/uz@Latn.po: language names are upcase in
- english
- protocol names, trademark and acronyms should be upcase
- aspell's typo fixes
-
- * standalone/drakpxe, network/adsl.pm, network/adsl_consts.pm: protocol
- names, trademark and acronyms should be upcase
-
- * standalone/logdrake, standalone.pm, standalone/draksound,
- install_any.pm, standalone/drakxtv, standalone/draksec,
- standalone/harddrake2, install_interactive.pm, any.pm,
- harddrake/sound.pm, services.pm, install_messages.pm,
- standalone/drakfont: aspell's typo fixes
-
-2004/08/22 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
- * share/po/Makefile: adjust Makefile to fit doc module zh_cn
-
-2004/08/22 Reinout van Schouwen <reinout at cs.vu.nl>
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
-
-2004/08/21 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/08/21 Till Kamppeter <till at mandrakesoft.com>
-
- * standalone/autosetupprintqueues, printer/main.pm,
- printer/printerdrake.pm:
- - Added fully automatic, non-interactive, X-less print queue set up by
- the "autosetupprintqueues" command, preferrably to be started by
- hotplug.
- - Typo correction.
- - Correction of file check for package installation.
-
-2004/08/20 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/network.pm: add a fixme comment
- update mac address in network::ethernet::get_eth_cards to be sure iftab
- is always up-to-date
-
- * share/rpmsrate: install kdeutils-klaptop on laptops
-
- * standalone/net_monitor: do not assume internet isn't configured if
- connect scripts do not
- exist (they're obsolete), fix connect button sensitivity
-
- * pkgs.pm (read_rpmsrate) support the TYPE keyword, using
- detect_devices::matching_type()
-
- * install_steps.pm (configureNetwork) net_cnx_* scripts are dead
-
- * share/po/fr.po: update adsl message (partial fix of bug 5778)
-
- * network/ethernet.pm: update mac address in
- network::ethernet::get_eth_cards to be sure iftab is always up-to-date
-
- * network/netconnect.pm (network_on_boot step) do not create ifcfg-ippp0
- quite randomly
- ($after_start_on_boot_step) remove obsolete call to write_cnx_script
- fix nonsense in reconfigure message (#10827)
-
- * detect_devices.pm: add matching_type() to introduce the TYPE keyword in
- rpmsrate
- (supports only laptop type for now)
- (firewire_probe) use sysfs to detect firewire devices (eth1394 should be
- detected now)
- fix nasty typo
-
-2004/08/20 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: updated pot file
-
- * standalone/drakvpn: Fixed English typos
- fixed English typos (no space before colon)
-
- * standalone/drakups: fixed English typo
-
- * share/advertising/05.pl: standardized on using the asterisk as bullet
- list for all advertisings
-
-2004/08/20 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Use standard mouse wait/normal. Make $cmd_line
- a global. perl_checker fixes.
-
-2004/08/20 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm:
- - Fixed problem of Brother laser printer on parallel port not showing
- its name in auto-detection result.
-
-2004/08/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: add BuildRequires: rpm-devel b/c of c/stuff.xs
- (Christiaan Welvaart)
-
- * share/po/Makefile: fix drakxtools build
-
- * network/netconnect.pm: rollback (a string was removed so translators
- still have to
- investigate anyway...)
- rollback 'n split in order to reduce pressure on translators
-
-2004/08/19 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/printerdrake: perl_checker fixes
-
- * printer/printerdrake.pm: always close the wizard_window, die when an
- exception has been raised
- perl_checker fixes
- perl_checker fixes
-
-2004/08/19 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/am.po: updated Amharic file
-
- * share/po/eu.po: updated Basque file
-
- * share/po/sr.po: fixed cyrillic encoding mess with Serbian translations
-
- * share/po/tg.po, share/po/uk.po, share/po/uz.po, share/po/ru.po,
- share/po/mk.po, share/po/bg.po: fixed wrong cyrillic encoding chars
-
-2004/08/19 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm:
- - Let printer name, description, location be entered after determining
- the model in the add printer wizard
- - Let default print queue name be derived from the model instead of
- being "Printer", "Printer1", ...
- - Simplified print queue name generation in non-interactive printer
- setup
- - Fixed "Previous" button in the test page step of the add printer
- wizard.
-
-2004/08/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.1-0.11mdk
-
-2004/08/19 Erwan Velu <erwan at mandrakesoft.com>
-
- * share/rpmsrate: removing OpenIPMI as default
-
-2004/08/19 Olivier Blin <oblin at mandrakesoft.com>
-
- * printer/printerdrake.pm: always close the wizard_window, die when an
- exception has been raised
- perl_checker fixes
- perl_checker fixes
- workaround not to call c::upgrade_utf8 on read-only variables
-
- * standalone/printerdrake: perl_checker fixes
-
- * printer/main.pm: workaround not to call c::upgrade_utf8 on read-only
- variables
- perl_checker fixes
-
-2004/08/19 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/xfree.pm: fix keyboarddrake not modifying xkb
-
-2004/08/19 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Move code in another function
-
- * install2: Wrong comment
-
-2004/08/19 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/detect.pm: Fix problem of the "usblp" kernel module not loaded
- before local printer auto-detection.
-
- * printer/main.pm, printer/printerdrake.pm, printer/office.pm,
- printer/gimp.pm:
- - Removed installation of "gimpprint" package, it is part of GIMP
- 2.0.x now.
- - Removed configuration of applications, GIMP and OpenOffice.org are
- patched now so that they do not need configuration of print queues any
- more.
- - Text fix for scanners in HP's multi-function devices.
-
-2004/08/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * printer/main.pm (connectionstr) workaround perl bug
-
- * standalone/draksplash, share/po/bn.po, share/po/ms.po, share/po/sk.po,
- share/po/gl.po, share/po/pt_BR.po, share/po/th.po, share/po/et.po,
- share/po/ja.po, share/po/hr.po, network/netconnect.pm, share/po/be.po,
- standalone/drakvpn, standalone/drakboot, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/da.po, share/po/ca.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, standalone/drakedm, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po,
- standalone/drakbug, share/po/it.po, share/po/eu.po, share/po/es.po,
- network/adsl.pm, share/po/lv.po, share/po/hu.po,
- printer/printerdrake.pm, standalone/drakxtv, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po,
- standalone/service_harddrake_confirm, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/uk.po,
- share/po/mn.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, security/help.pm, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/hi.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/ta.po, share/po/fr.po, standalone/drakperm, share/po/nl.po,
- share/po/tl.po, share/po/de.po, share/po/eo.po, share/po/el.po,
- share/po/cs.po, share/po/bg.po, standalone/scannerdrake,
- share/po/uz@Latn.po: typo fixes
-
- * Makefile.drakxtools: fix drakxtools build (do not include
- ../Makefile.config)
-
- * drakxtools.spec: 10.1-0.11mdk
-
- * share/rpmsrate: reduce non default (aka old default ones) IM priority
-
-2004/08/19 Youcef Rabah Rahal <rahal at arabeyes.org>
-
- * share/po/ar.po: Sync with Arabeyes CVS
-
-2004/08/18 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/network.pm (write_interface_conf) use mac_ieee1394 descriptor in
- iftab for firewire links
-
- * standalone/service_harddrake, harddrake/data.pm: check usb controllers
- on boot
-
-2004/08/18 Pixel <pixel at mandrakesoft.com>
-
- * any.pm: restrict the wait message (so that it's dead when an error
- message is displayed)
- fix typo
- fix typos
- - any::setupBootloader() used to call bootloader::install() whereas
- install_steps_interactive::setupBootloader() could call it once again
- (but this code seems dead though)
- - create any::installBootloader() out of what was done in the end of
- any::setupBootloader() but also in install_steps_interactive and
- drakboot (which handled the error that could occur in
- bootloader::install())
-
- * standalone/drakboot, install_steps_interactive.pm:
- - any::setupBootloader() used to call bootloader::install() whereas
- install_steps_interactive::setupBootloader() could call it once again
- (but this code seems dead though)
- - create any::installBootloader() out of what was done in the end of
- any::setupBootloader() but also in install_steps_interactive and
- drakboot (which handled the error that could occur in
- bootloader::install())
-
- * install_steps_gtk.pm: hide $release_notes_scroll by default, it's
- visually cleaner
-
- * ugtk2.pm: fix blino sucks
-
- * detect_devices.pm: perl_checker compliance
-
-2004/08/18 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * ugtk2.pm: Make the status field optional in treeviews
-
-2004/08/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * lang.pm, any.pm: fix default IM setting when switching language
-
- * drakxtools.spec: add bug reference
- 10.1-0.10mdk
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
- share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/el.po, share/po/bg.po, share/po/cs.po,
- share/po/uz@Latn.po: merge in s/%d/%s/ fix in net_applet's message
-
-2004/08/18 Pixel <pixel at mandrakesoft.com>
-
- * any.pm: restrict the wait message (so that it's dead when an error
- message is displayed)
- fix typo
- fix typos
- - any::setupBootloader() used to call bootloader::install() whereas
- install_steps_interactive::setupBootloader() could call it once again
- (but this code seems dead though)
- - create any::installBootloader() out of what was done in the end of
- any::setupBootloader() but also in install_steps_interactive and
- drakboot (which handled the error that could occur in
- bootloader::install())
- create install_acpi_pkgs() and use it for auto_installs
-
- * standalone/drakboot, install_steps_interactive.pm:
- - any::setupBootloader() used to call bootloader::install() whereas
- install_steps_interactive::setupBootloader() could call it once again
- (but this code seems dead though)
- - create any::installBootloader() out of what was done in the end of
- any::setupBootloader() but also in install_steps_interactive and
- drakboot (which handled the error that could occur in
- bootloader::install())
-
- * install_steps_gtk.pm: hide $release_notes_scroll by default, it's
- visually cleaner
-
- * ugtk2.pm: fix blino sucks
-
- * detect_devices.pm: perl_checker compliance
-
- * install_steps.pm: force ACPI on a laptop with recent bios
- create install_acpi_pkgs() and use it for auto_installs
-
-2004/08/18 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * ugtk2.pm: Make the status field optional in treeviews
-
-2004/08/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * lang.pm, any.pm: fix default IM setting when switching language
-
- * harddrake/data.pm: add PCMCIA controllers class
-
- * drakxtools.spec: 10.1-0.10mdk
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/uk.po,
- share/po/mn.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
- share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/el.po, share/po/bg.po, share/po/cs.po,
- share/po/uz@Latn.po: merge in s/%d/%s/ fix in net_applet's message
-
-2004/08/18 Olivier Blin <oblin at mandrakesoft.com>
-
- * harddrake/data.pm: use network::ethernet::get_eth_categories in ethernet
- detector
-
-2004/08/18 Pixel <pixel at mandrakesoft.com>
-
- * any.pm: restrict the wait message (so that it's dead when an error
- message is displayed)
- fix typo
- fix typos
- - any::setupBootloader() used to call bootloader::install() whereas
- install_steps_interactive::setupBootloader() could call it once again
- (but this code seems dead though)
- - create any::installBootloader() out of what was done in the end of
- any::setupBootloader() but also in install_steps_interactive and
- drakboot (which handled the error that could occur in
- bootloader::install())
- create install_acpi_pkgs() and use it for auto_installs
-
- * standalone/drakboot, install_steps_interactive.pm:
- - any::setupBootloader() used to call bootloader::install() whereas
- install_steps_interactive::setupBootloader() could call it once again
- (but this code seems dead though)
- - create any::installBootloader() out of what was done in the end of
- any::setupBootloader() but also in install_steps_interactive and
- drakboot (which handled the error that could occur in
- bootloader::install())
-
- * install_steps_gtk.pm: hide $release_notes_scroll by default, it's
- visually cleaner
-
- * ugtk2.pm: fix blino sucks
-
- * detect_devices.pm: perl_checker compliance
- use dmidecode to detect isLaptop()
-
- * .perl_checker: Getopt::Long is now faked
-
- * install_steps.pm: force ACPI on a laptop with recent bios
- create install_acpi_pkgs() and use it for auto_installs
-
-2004/08/18 Reinout van Schouwen <reinout at cs.vu.nl>
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
-
-2004/08/18 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * ugtk2.pm: Make the status field optional in treeviews
-
-2004/08/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/data.pm: add PCMCIA controllers class
-
-2004/08/17 Nicolas Planel <nplanel at mandrakesoft.com>
-
- * c/smp-dmi.c: rework smp-dmi, add dmi memory detection suppport
-
- * c/stuff.xs.pl: revert my last bad commit
- rework smp-dmi, add dmi memory detection suppport
-
-2004/08/17 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: get rid off the 'ifcfg-Manually load a driver'
- file ...
- use network::ethernet::get_eth_categories() when needed
-
- * standalone/net_applet: fix titi sux, fix I sux
- use network::tools::get_internet_connection
-
- * network/adsl.pm: fix sagem pty quoting
- sagem: don't run pppoa if the ethernet interface isn't created and use
- a reduced timeout (1 second) so that boot doesn't take forever if
- modem can't be synchronized (maxfail * timeout was equal to 25
- minutes)
-
- * network/tools.pm: add new functions to make internet connection tests
- easier
- drop network::tools::reread_net_conf
-
- * network/ethernet.pm: use network::ethernet::get_eth_categories() when
- needed
- add network::ethernet::get_eth_categories
- drop network::ethernet::conf_network_card_backend
- (conf_network_card_backend) set NET_INTERFACE too
-
- * network/network.pm: use network::ethernet::get_eth_categories() when
- needed
- (easy_dhcp) probe all network sub categories
- (easy_dhcp) don't use network::ethernet::conf_network_card_backend
- (easy_dhcp) sort devices and keep only eth[0-9]+ devices
- (easy_dhcp) allow configured interface not to be eth0 and make sure it
- uses ethernet
- (write_interface_conf) use unspec descriptor in iftab if link isn't
- ether
- fix suckiness (write proper iftab)
-
-2004/08/17 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bs.po, share/po/cs.po: updated Bosnian and Czech files
-
-2004/08/17 Pixel <pixel at mandrakesoft.com>
-
- * standalone/bootloader-config: better error handling
-
- * install2.pm, install_steps_interactive.pm: $::corporate is dead
- get release_notes at beginning of
- install_steps_interactive::acceptLicense(), even when
- useless_thing_accepted
-
- * tools/make_mdkinst_stage2: don't remove /usr/share/locale anymore, we
- use the same locale for all langs
-
- * bootloader.pm:
- - fix short label with extension. eg: have "linux-smp" instead of
- "linuxsmp"
- - this fixes choosing the default specialised kernel
-
- * fs/type.pm: cleanly handle the case when {pt_type} is 0
-
- * share/gen_locales.sh, share/gen_locales.pl, share/list, share/Makefile,
- Makefile:
- - don't generate locales.tar.bz2, do the same directly (since it's now
- quite simple)
- - when using ramdisk, we now have all the locales, no need to handle
- it specially
-
- * crypto.pm: $::corporate is dead
-
- * lang.pm: lang::list() is unused, dropping it
- - don't generate locales.tar.bz2, do the same directly (since it's now
- quite simple)
- - when using ramdisk, we now have all the locales, no need to handle
- it specially
-
- * install_steps_gtk.pm: add release notes during install of packages
- remove dead code
-
-2004/08/17 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Display the list of media already taken into accounts
- when asking for
- supplementary media
- perl_checker fix
- Supplementary cd-roms don't need to have a rpmsrate / compssUsers.pl
-
- * pkgs.pm: Log the reason why the rpms aren't installed
-
-2004/08/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.1-0.9mdk
-
- * network/network.pm (easy_dhcp) handle pcmci card too
-
- * share/rpmsrate: fix rpmsrate regarding s2u
-
- * share/po/fr.po: update
-
-2004/08/16 Olivier Blin <oblin at mandrakesoft.com>
-
- * install_steps_interactive.pm: alsaconf is in alsa-utils package (bug
- 10358)
-
- * mdk-stage1/probing.c (probe_that_type) do not prompt in
- discovered_device() before loading usb controllers (they're not network
- devices)
-
- * network/netconnect.pm: NET_INTERFACE should be ppp0 for pppoe too
- add reminder about external ISDN modems (special init string)
-
- * network/adsl.pm: do not write noipdefault in /etc/ppp/peers/ppp0 for
- pptp connections
-
- * standalone/drakroam: merge with waproamd version
- add comments from waproamd version
-
-2004/08/16 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/xfree.pm: handle /etc/X11/xorg.conf
-
- * Xconfig/various.pm: we don't use XF86Config-4 anymore
-
-2004/08/16 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/adsl.pm (adsl_probe_info) net_cnx_up is obsolete, pptp info is
- available in
- ppp config files
- (adsl_conf_backend) don't write net cnx scripts, internet service
- should be dead
- remove useless assignment (already done in adsl_protocol step)
- fix pppoe with sagem (write ETH=`/usr/sbin/eaglectrl -i` instead of
- ETH=sagem)
-
-2004/08/16 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * keyboard.pm: changed a keyboard name
-
-2004/08/16 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/card.pm: replace freeDriver with freedriver (stage2 para are
- lower cased)
- fix pixel sucks
- replace freeDriver with freedriver (stage2 para are lower cased)
-
- * install2.pm: replace freeDriver with freedriver (stage2 para are lower
- cased)
- modules::load doesn't accept options anymore, use
- modules::load_with_options() (bugzilla #10778)
- replace freeDriver with freedriver (stage2 para are lower cased)
-
- * bootloader.pm: help debugging detectloader
-
- * install_any.pm: better URLPREFIX parsing regexp (handle URLPREFIX =
- "http://leia")
- replace freeDriver with freedriver (stage2 para are lower cased)
- replace freeDriver with freedriver (stage2 para are lower cased)
-
- * share/compssUsers.pl: field is {default_selected}, not {selected}
-
- * modules.pm: add load_with_options()
-
- * network/netconnect.pm: don't configure firewall after configuring
- network during install
- (in summary you can configure firewall directly)
-
-2004/08/15 José JORGE <jjorge at free.fr>
-
- * share/po/pt.po: beta rush
-
-2004/08/15 Keld Jørn Simonsen <keld at dkuug.dk>
-
- * share/po/da.po: updates
- indexhtml/po/da.po soft/mdkhtmlbrowser/po/da.po
- soft/mdkonline/po/da.po soft/menudrake/po/da.po
- soft/rpmdrake/po/da.po soft/urpmi/po/da.po
- soft/userdrake2/po/da.po soft/wizard_perl/po/da.po
- gi/perl-install/share/po/da.po
-
-2004/08/15 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/vi.po: updated Vietnamese file
-
- * share/po/et.po: updated Estonian file
-
- * share/po/it.po, share/po/help-it.pot: updated Italian file
-
-2004/08/14 Funda Wang <fundawang at linux.net.cn>
-
- * share/po/help_xml2pm.pl: zh_CN -> zh_cn to fit CVS module
-
-2004/08/14 hilbert
-
- * share/po/zh_TW.po: DrakX-zh_TW: 591
- Generate auto
-
-2004/08/14 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ky.po, share/po/ms.po, share/po/id.po, share/po/mk.po,
- share/po/fur.po, share/po/th.po, share/po/is.po, share/po/sl.po,
- share/po/hi.po, share/po/zh_TW.po, share/po/hr.po, share/po/fr.po,
- share/po/sr@Latn.po, share/po/ga.po, share/po/be.po, share/po/mn.po,
- share/po/am.po, share/po/ko.po, share/po/sr.po, share/po/he.po,
- share/po/lt.po, share/po/eo.po, share/po/lv.po, share/po/el.po: fixed
- special "<control>" entries;
- included translations for various standard menu entries (File, Edit,
- Help,...)
-
- * share/po/ta.po: small fix
- fixed special "<control>" entries;
- included translations for various standard menu entries (File, Edit,
- Help,...)
-
- * share/po/nb.po, share/po/uz.po, share/po/uz@Latn.po: fixed shortcut
- entries ("<control>...")
-
- * share/po/tg.po: fixed shortcut entries ("<control>...")
- fixed special "<control>" entries;
- included translations for various standard menu entries (File, Edit,
- Help,...)
-
- * share/po/bn.po: fixed special "<control>" entries;
- included translations for various standard menu entries (File, Edit,
- Help,...)
- updated Bengali file
-
-2004/08/13 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakboot: misc cleanups
- make perl_checker happy
- perl_checker fix
- (drakboot --splash) add enable_framebuffer to allow to choose a video
- mode if boot isn't graphical
-
- * any.pm: add and use bootloader::set_append_netprofile() and
- bootloader::get_append_netprofile()
- remove old linuxconf profile code
- (setupBootloader__entries) allow to choose net profile in advanced mode
-
- * bootloader.pm: add and use bootloader::set_append_netprofile() and
- bootloader::get_append_netprofile()
- remove old linuxconf profile code
- add remove_append_dict
-
-2004/08/13 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/fonts.tar.bz2: changed arabic font to roya.ttf (from
- fonts-ttf-arabic-farsi) which
- also cover Farsi (fa).
- updated Nimbus Sans L to cooker version, and edited it to add
- the two missing letters needed to full latin and cyrillic coverage
- (the two letters were latin schwa (for Azeri) and cyrillic che
- with descender (for Tajik))
-
- * lang.pm: enabled Turkmen and Tatar; prepared various other languages
- (waiting for
- lang-*.png pixmap).
- updated the kde-i18n list with the newly available languages
-
-2004/08/13 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm:
- - bootloader::remove_append_dict() is not useful,
- bootloader::set_append() can do the same
- - don't modify anything before "Ok" is clicked
- - set_append with $netprofile eq '' will remove parameter PROFILE=xxx,
- which is what we want
-
- * any.pm: perl_checker compliance
- - bootloader::remove_append_dict() is not useful,
- bootloader::set_append() can do the same
- - don't modify anything before "Ok" is clicked
- - set_append with $netprofile eq '' will remove parameter PROFILE=xxx,
- which is what we want
-
- * install_steps_gtk.pm: perl_checker compliance
- - don't use compssUsers anymore, use compssUsers.pl
- - code to display compssUsers choices is now in compssUsers.pl
- - {compssUsers} is now a list instead of a hash, and so drop
- {compssUsersSorted}
- - rename {compssUsersChoice} to {rpmsrate_flags_chosen} (better name)
- - i18n_compssUsers is no more needed, add share/compssUsers.pl* to
- ALLPMS
-
- * share/compssUsers.pl, Makefile.config, share/compssUsers, pkgs.pm,
- install2.pm, share/po/Makefile, install_steps.pm,
- share/po/i18n_compssUsers, install_any.pm, Makefile,
- install_steps_interactive.pm:
- - don't use compssUsers anymore, use compssUsers.pl
- - code to display compssUsers choices is now in compssUsers.pl
- - {compssUsers} is now a list instead of a hash, and so drop
- {compssUsersSorted}
- - rename {compssUsersChoice} to {rpmsrate_flags_chosen} (better name)
- - i18n_compssUsers is no more needed, add share/compssUsers.pl* to
- ALLPMS
-
-2004/08/13 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: One further step towards the ftp supplementary media
-
-2004/08/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/cy.po: update
- update
-
- * any.pm (set_autologin) parameters are optionnal, writing empty variables
- in
- kdmrc and the like means disabled autologin
-
- * share/po/fr.po: update
-
- * standalone/drakboot (updateAutologin) clean any::set_autologin() call
-
-2004/08/13 David Baudens <baudens at mandrakesoft.com>
-
- * share/advertising/dis-06.pl, share/advertising/dis-05.png,
- share/advertising/25.pl, share/advertising/dwd-08.pl,
- share/advertising/pwp-02.pl, share/advertising/dwd-04.pl,
- share/advertising/03.png, share/advertising/25.png,
- share/advertising/13-b.png, share/advertising/pwp-05.png,
- share/advertising/dis-11.pl, share/advertising/dwd-04.png,
- share/advertising/30.png, share/advertising/dis-10.pl,
- share/advertising/ppp-11.pl, share/advertising/27.pl,
- share/advertising/14.pl, share/advertising/dwd-03.png,
- share/advertising/08.pl, share/advertising/dis-05.pl,
- share/advertising/22.pl, share/advertising/dis-03.png,
- share/advertising/10.pl, share/advertising/dwd-01.pl,
- share/advertising/18.pl, share/advertising/dwd-08.png,
- share/advertising/dis-01.pl, share/advertising/pwp-02.png,
- share/advertising/28.png, share/advertising/09.png,
- share/advertising/ppp-06.pl, share/advertising/29.png,
- share/advertising/ppp-07.png, share/advertising/list-dwd,
- share/advertising/06.png, share/advertising/pwp-09.png,
- share/advertising/dis-03.pl, share/advertising/dwd-09.png,
- share/advertising/01.png, share/advertising/list-dis,
- share/advertising/pwp-01.png, share/advertising/02.png,
- share/advertising/15.png, share/advertising/23.png,
- share/advertising/29.pl, share/advertising/ppp-03.pl,
- share/advertising/07.pl, share/advertising/04.png,
- share/advertising/13-a.png, share/advertising/09.pl,
- share/advertising/17.pl, share/advertising/13-b.pl,
- share/advertising/ppp-01.png, share/advertising/04.pl,
- share/advertising/ppp-08.pl, share/advertising/dwd-06.pl,
- share/advertising/ppp-05.png, share/advertising/ppp-02.pl,
- share/advertising/12.png, share/advertising/24.pl,
- share/advertising/12.pl, share/advertising/26.pl,
- share/advertising/dis-09.png, share/advertising/16.png,
- share/advertising/ppp-11.png, share/advertising/14.png,
- share/advertising/list-pwp, share/advertising/ppp-09.png,
- share/advertising/dis-06.png, share/advertising/dis-11.png,
- share/advertising/10.png, share/advertising/dis-04.png,
- share/advertising/19.pl, share/advertising/pwp-10.png,
- share/advertising/05.pl, share/advertising/ppp-05.pl,
- share/advertising/ppp-01.pl, share/advertising/dis-09.pl,
- share/advertising/pwp-03.pl, share/advertising/dwd-05.png,
- share/advertising/pwp-04.pl, share/advertising/20.png,
- share/advertising/dis-10.png, share/advertising/dis-02.pl,
- share/advertising/dwd-07.png, share/advertising/dis-04.pl,
- share/advertising/ppp-06.png, share/advertising/20.pl,
- share/advertising/02.pl, share/advertising/list-ppp,
- share/advertising/21.png, share/advertising/pwp-07.pl,
- share/advertising/pwp-08.png, share/advertising/07.png,
- share/advertising/26.png, share/advertising/dwd-02.pl,
- share/advertising/30.pl, share/advertising/ppp-09.pl,
- share/advertising/16.pl, share/advertising/pwp-06.png,
- share/advertising/dis-07.pl, share/advertising/01.pl,
- share/advertising/drweb.pl, share/advertising/dwd-05.pl,
- share/advertising/drweb.png, share/advertising/ppp-10.pl,
- share/advertising/pwp-07.png, share/advertising/pwp-09.pl,
- share/advertising/pwp-04.png, share/advertising/pwp-05.pl,
- share/advertising/dis-01.png, share/advertising/23.pl,
- share/advertising/dwd-06.png, share/advertising/dis-08.png,
- share/advertising/ppp-08.png, share/advertising/19.png,
- share/advertising/dis-08.pl, share/advertising/dwd-02.png,
- share/advertising/pwp-06.pl, share/advertising/27.png,
- share/advertising/dis-07.png, share/advertising/22.png,
- share/advertising/ppp-03.png, share/advertising/dwd-03.pl,
- share/advertising/28.pl, share/advertising/dis-02.png,
- share/advertising/pwp-03.png, share/advertising/dwd-07.pl,
- share/advertising/24.png, share/advertising/03.pl,
- share/advertising/06.pl, share/advertising/ppp-07.pl,
- share/advertising/13-a.pl, share/advertising/11.png,
- share/advertising/ppp-04.png, share/advertising/pwp-10.pl,
- share/advertising/ppp-10.png, share/advertising/18.png,
- share/advertising/11.pl, share/advertising/15.pl,
- share/advertising/21.pl, share/advertising/17.png,
- share/advertising/05.png, share/advertising/dwd-01.png,
- share/advertising/ppp-04.pl, share/advertising/pwp-01.pl,
- share/advertising/ppp-02.png, share/advertising/pwp-08.pl,
- share/advertising/08.png, share/advertising/dwd-09.pl: New ad's for 10.1
-
-2004/08/13 Olivier Blin <oblin at mandrakesoft.com>
-
- * share/rpmsrate: add list of providers for modem connexions in INSTALL
- section
-
- * network/network.pm (write_interface_conf) do not write undefined MAC
- address in iftab
-
- * any.pm: add and use bootloader::set_append_netprofile() and
- bootloader::get_append_netprofile()
- remove old linuxconf profile code
- (setupBootloader__entries) allow to choose net profile in advanced mode
-
- * standalone/drakvpn: perl_checker fix (add missing spaces)
- do not assume drakvpn is already configured if the tunnels file is
- made of comments only
-
- * ugtk2.pm: ctrl-alt-delete allows to restart install
-
- * bootloader.pm: add and use bootloader::set_append_netprofile() and
- bootloader::get_append_netprofile()
- remove old linuxconf profile code
- add remove_append_dict
-
- * standalone/drakupdate_fstab: drakupdate_fstab: add debug mode that dumps
- argv, device list and fstab
- to make bug reports easier
- (device_name_to_entry) remove unused $variable
- (device_name_to_entry) if device looks like a devfs device, set
- $e->{devfs_device} to $name even if the device wasn't found in devices
- list (it helps in case the device has been removed in del mode)
- (device_name_to_entry) remove useless assignment
- (device_name_to_entry) in non devfs case, $e->{device} always equals
- to $name, move this test in devfs case
- (device_name_to_entry) don't do brain twisted things
- ($e->{prefix} || $e->{device}) equals $prefix
- $prefix . $nb equals $name
- (device_name_to_entry) fix indentation
- (device_name_to_entry) define $nb locally
- (device_name_to_entry) recompute $e->{device} only when needed
- (device_name_to_entry) do devfs things where they should be done
- (device_name_to_entry) define $e->{devfs_prefix} if entry looks looks
- like a devfs one but isn't found in device list (else our computed
- $e->{devfs_device} will be crappy)
-
-2004/08/13 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/fonts.tar.bz2: changed arabic font to roya.ttf (from
- fonts-ttf-arabic-farsi) which
- also cover Farsi (fa).
- updated Nimbus Sans L to cooker version, and edited it to add
- the two missing letters needed to full latin and cyrillic coverage
- (the two letters were latin schwa (for Azeri) and cyrillic che
- with descender (for Tajik))
-
-2004/08/13 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm:
- - bootloader::remove_append_dict() is not useful,
- bootloader::set_append() can do the same
- - don't modify anything before "Ok" is clicked
- - set_append with $netprofile eq '' will remove parameter PROFILE=xxx,
- which is what we want
-
- * install_steps.pm:
- - don't use compssUsers anymore, use compssUsers.pl
- - code to display compssUsers choices is now in compssUsers.pl
- - {compssUsers} is now a list instead of a hash, and so drop
- {compssUsersSorted}
- - rename {compssUsersChoice} to {rpmsrate_flags_chosen} (better name)
- - i18n_compssUsers is no more needed, add share/compssUsers.pl* to
- ALLPMS
- - move installing acpi and acpid directly in any::setupBootloader()
- instead of doing
- it in summaryAfter(), that way acpi and acpid are installed in drakboot
- (bugzilla #10760)
- - if no acpi parameter, don't try installing acpi & acpid (fix for
- ppc)
-
- * install_steps_gtk.pm: perl_checker compliance
- - don't use compssUsers anymore, use compssUsers.pl
- - code to display compssUsers choices is now in compssUsers.pl
- - {compssUsers} is now a list instead of a hash, and so drop
- {compssUsersSorted}
- - rename {compssUsersChoice} to {rpmsrate_flags_chosen} (better name)
- - i18n_compssUsers is no more needed, add share/compssUsers.pl* to
- ALLPMS
-
- * share/compssUsers.pl, Makefile.config, share/compssUsers, pkgs.pm,
- install2.pm, share/po/Makefile, share/po/i18n_compssUsers,
- install_any.pm, Makefile, install_steps_interactive.pm:
- - don't use compssUsers anymore, use compssUsers.pl
- - code to display compssUsers choices is now in compssUsers.pl
- - {compssUsers} is now a list instead of a hash, and so drop
- {compssUsersSorted}
- - rename {compssUsersChoice} to {rpmsrate_flags_chosen} (better name)
- - i18n_compssUsers is no more needed, add share/compssUsers.pl* to
- ALLPMS
-
- * any.pm: perl_checker compliance
- - bootloader::remove_append_dict() is not useful,
- bootloader::set_append() can do the same
- - don't modify anything before "Ok" is clicked
- - set_append with $netprofile eq '' will remove parameter PROFILE=xxx,
- which is what we want
- - move installing acpi and acpid directly in any::setupBootloader()
- instead of doing
- it in summaryAfter(), that way acpi and acpid are installed in drakboot
- (bugzilla #10760)
- - if no acpi parameter, don't try installing acpi & acpid (fix for
- ppc)
-
-2004/08/13 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * pkgs.pm: perl_checker fix
- Concision, good (says perl_checker)
- Try to copy associated synthesis when a custom hdlist path is given
-
- * standalone.pm: Remove a perl compilation warning
-
- * install_steps.pm, install_steps_interactive.pm: Don't ask for the
- selection of supplementary media in non-interactive
- installs.
-
- * install_any.pm: One further step towards the ftp supplementary media
- Don't ask for the selection of supplementary media in non-interactive
- installs.
-
-2004/08/12 Funda Wang <fundawang at linux.net.cn>
-
- * lang.pm: Hong Kong -> Hong Kong SAR
-
-2004/08/12 Olivier Blin <oblin at mandrakesoft.com>
-
- * share/gen_locales.pl: revived, still needed since installer can't make
- symlinks on read-only stage2, and we can't easily workaround it by
- modifying LC_* variables
-
- * network/netconnect.pm: kill unused variables
- kill deprecated parts
- set both NET_DEVICE and NET_INTERFACE in automatic lan configuration
- (network install)
- set NET_DEVICE and NET_INTERFACE for lan and adsl dhcp/manual
- connections
-
- * share/gen_locales.sh: still needed since installer can't make symlinks
- on read-only stage2,
- and we can't easily workaround it by modifying LC_* variables
-
- * network/network.pm: write interface MAC address in iftab
- errm, don't commit crappy gnome proxy handling for now
- (write_interface_conf) simplify HWADDR assignment and define
- $mac_address (will be used later for /etc/iftab)
-
- * mdk-stage1/init.c: restart forked process if it exits with
- exit_value_restart as return
- code (thanks to Rafael for the choice of its value, 0x35 is the
- translation of RS, abbreviation of ReStart, in his local l33t dialect,
- and happens to be 53 in its decimal form, which is quite nice)
- reorder else if blocks, it's useless to do two times the same test
- (WEXITSTATUS(wait_status) == exit_value_proceed)
- use a do while loop to wait for forked process
-
-2004/08/12 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/fonts.tar.bz2: fixed tamil font (removed wrong unicode values for
- some glyphs);
- improved fonts.conf
-
- * share/po/help-zh_CN.pot, share/po/bn.po, share/po/ms.po, share/po/sk.po,
- share/po/gl.po, share/po/pt_BR.po, share/po/th.po, share/po/et.po,
- share/po/ja.po, share/po/hr.po, share/po/be.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/nb.po, share/po/ky.po,
- share/po/uz.po, share/po/help-ru.pot, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/uk.po, share/po/help-de.pot, share/po/mn.po,
- share/po/am.po, share/po/lt.po, share/po/cy.po, share/po/help-it.pot,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/af.po, share/po/hi.po,
- share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/nl.po, share/po/help-fr.pot, share/po/tl.po,
- share/po/de.po, share/po/help-es.pot, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: updated pot file
-
- * standalone/drakbug: fixed English string
-
-2004/08/12 Pixel <pixel at mandrakesoft.com>
-
- * fs.pm: enhance based on perl_checker suggestion, but not using it :)
-
- * .perl_checker: standalone doesn't need to be blacklisted
-
- * resize_fat/io.pm: remove check_mounted(), it is done by diskdrake
-
- * share/po/help-zh_CN.pot, share/po/help-fr.pot, share/po/help-de.pot,
- share/po/help-ru.pot, share/po/help-es.pot, share/po/help-it.pot: update
- from doc (/cooker/doc/manualB)
-
- * help.pm: fix bad %%
- update from doc (/cooker/doc/manualB)
-
- * share/po/help_xml2pm.pl:
- - nicer error message for help.pm N parameters error
- - handle <sect3> (and also <option>)
-
-2004/08/12 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * pkgs.pm, install_any.pm: First stab at supporting several hdlists on a
- supplementary CD
-
-2004/08/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/nn.po: update (Karl Ove Hufthammer <karl@huftis.org>)
-
- * standalone/drakbug: better let pango/Gtk+ do the proper wrapping that
- let translator
- manually insert end of lines which will badly look depending on
- current theme and font settings
-
- * standalone/net_monitor: let's be more l10n-friendly
- fix default connection time (Fabrice FACORAT)
-
- * tools/cvslog2changelog.pl: sync with soft/common/username
-
- * standalone/draksec (basic_seclevel_explanations) explain
- (basic_seclevel_explanations)
- - handle "bold" value for "weight"
- - display labels as bold
-
- * share/po/br.po, share/po/fr.po: update
-
- * share/rpmsrate: install driver and firmware for madwifi cards
-
- * share/po/sv.po: typo fix (#10713, Robin Rosenberg
- <robin.rosenberg@dewire.com>)
- fix missing translations (#10711, Robin Rosenberg
- <robin.rosenberg@dewire.com>)
- big swedish update thanks to Robin Rosenberg
- <robin.rosenberg@dewire.com>
-
-2004/08/12 Pixel <pixel at mandrakesoft.com>
-
- * .perl_checker: standalone doesn't need to be blacklisted
-
- * resize_fat/io.pm: remove check_mounted(), it is done by diskdrake
- perl_checker compliance
-
- * security/msec.pm: use difference2() as suggested by new perl_checker
- warning
- cleanup
- perl_checker compliance
-
- * lang.pm: cleanup
-
-2004/08/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/sv.po: big swedish update thanks to Robin Rosenberg
- <robin.rosenberg@dewire.com>
-
- * share/rpmsrate: install driver and firmware for madwifi cards
-
-2004/08/11 Daouda Lo <daouda at mandrakesoft.com>
-
- * standalone/drakhelp:
- - perl_checker fixes
- - use webclient-kde instead of konqueror
- - add epiphany browser
-
-2004/08/11 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakroam: rewrite write_config for wlandetect to use output()
- regexp cleanup (bis)
- regexp cleanups
- remove unused variable
- use each_index
- introduce and use isRoamingRunning to detect if the roaming daemon is
- running (woah, sector clear, titi is gone home, no more cvs conflicts)
- prepare for multiple roaming daemons support
- run UpdateStatus after a timeout in case 'ps' output isn't updated
- immediately
- make titi enhancement actually work
- use standalone
- only one item can be selected in the known list
- use a lower scan interval, as requested by Austin
- use cat_, remove unneeded local $_, try to fix ConnectNow
-
- * share/gen_locales.pl: unused since locale links are done by the
- installer
-
- * share/gen_locales.sh: do not run gen_locales.pl anymore
- (locale links are done by the installer)
-
- * lang.pm: main charset is now en_US.UTF-8
-
- * standalone/drakbug: comment unused variable
- update product list and fix case (bugzilla is case sensitive)
- fix product, component and version for bugzilla
- reorganize to use the same upload info message for Anthill and Bugzilla
- fix bugzilla url
-
-2004/08/11 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * lang.pm: rewrite handling of defautl locale
-
- * share/po/es.po: updated Spanish file
- s/XFree/Xorg/
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
- share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: s/XFree/Xorg/
-
-2004/08/11 Pixel <pixel at mandrakesoft.com>
-
- * .perl_checker: new perl_checker fake those packages
-
- * any.pm, standalone/harddrake2, interactive/stdio.pm, standalone.pm,
- pkgs.pm, lang.pm, standalone/service_harddrake, install_steps.pm,
- install_any.pm, ugtk2.pm: perl_checker compliance
-
-2004/08/11 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Support for ftp supplementary media
- Restore ability to have supplementary http media.
- Fix http installs.
- Misleading comment
-
-2004/08/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10.1-0.8mdk
-
- * bootloader.pm (mkinitrd) log failled command
-
- * standalone/drakroam: perl_checker hints
- typo fix
- (Dialog) according to mandrake guidelines we should not use stock icon
- (AddNet) help perl_checker in checking callers
- (UpdateStatus) simplify
- simplify through run_program::get_stdout()
- expand parenthesises
- (UpdateAvailable) probably better
- (UpdateAvailable) localize variable
- (Dialog) indent
- (Dialog) enable checking call signature
- (Dialog) simplify: reuse create_scrolled_window()
- (Dialog) fix it (got broken on ugtk2 port)
- perl_checker fixes
-
- * Makefile.config: install drakroam
-
- * standalone.pm: perl_checker cleanups
-
- * share/rpmsrate: install firmware for centrino if needed
-
- * .perl_checker: blacklist Gtk2::SimpleList for drakroam
-
-2004/08/10 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: update
-
-2004/08/10 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: remove unused variable in network::netconnect,
- thanks perl_checker
- add some FIXME comments in network::netconnect
- network::tools::connect_prog shouldn't be used/written anymore now
- kill some more connect/disconnect_file
-
- * standalone/drakroam: perl_checker compliance
- ugtk2 port
- fix roaming detection
- initial import of wlandetect version, from Austin Action
-
- * standalone/drakconnect: network::tools::connect_prog is really dead now
-
-2004/08/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/locales-skeleton.tar.bz2: updated use UTF-8 locales for everything
-
- * share/gen_locales.pl, share/gen_locales.sh: using "en_US.UTF-8" instead
- of "UTF-8" as model
- updated use UTF-8 locales for everything
-
-2004/08/10 Pixel <pixel at mandrakesoft.com>
-
- * tools/make_mdkinst_stage2, rescue/make_rescue_img: umount mount point
- instead of umounting the loopback file
- (works better when /etc/mtab is /proc/mounts)
-
- * share/rpmsrate: don't install devfsd by default, use udev instead
-
- * Xconfig/various.pm, Xconfig/card.pm: s/XFree/Xorg/
-
- * any.pm: create /etc/udev/conf.d/xxx.conf
-
- * diskdrake/interactive.pm: no {fs_type} doesn't mean the type invalid
- no {pt_type} doesn't mean Empty
-
- * network/adsl.pm, pkgs.pm, install2.pm, bootloader.pm: mount /proc, /sys
- and /proc/usb/usb in $prefix ASAP instead of doing it at various places
-
- * fs/type.pm: when there is no {pt_type}, favour the one fs_type2pt_type
- favours
-
- * raid.pm: remove dead code
-
-2004/08/10 reinouts
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
-
-2004/08/10 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * pkgs.pm, install_any.pm: URLPREFIX is not set if the main media isn't
- http, so the prefix must be
- passed manually.
-
-2004/08/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/net_monitor: add a horizontal separator in stats to prevent
- visual disguts between
- supposed non aligned labels
- fix looking aka vertical alignment of labels (Fabrice FACORAT
- <f.faber-pro@ifrance.com>, #10300)
- fix packing (Fabrice FACORAT <f.faber-pro@ifrance.com>, #10300)
-
- * tools/cvslog2changelog.pl: list a few more contributors
-
- * share/rpmsrate: add s2u so that hostname changes do not fsck the desktop
- install udev by default
-
- * standalone/drakroam (AddNet, WriteConfig) do not bother accessing arrays
- like in C
- perl_checker cleanups (GUI code actually wasn't touched in order to
- help olivier merge his ugtk2 porting work)
-
-2004/08/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/fonts.tar.bz2: updated fonts (added devanagari and tamil)
-
-2004/08/10 Pixel <pixel at mandrakesoft.com>
-
- * any.pm: more logs
-
- * network/adsl.pm: mounting device "none" is cleaner
-
- * share/rpmsrate: don't install devfsd by default, use udev instead
-
- * modules/modprobe_conf.pm, modules/modules_conf.pm: perl_checker
- compliance
- internally keep module names according to what we configure (and our
- kernel, 2.4 or 2.6)
-
- * modules.pm, modules/any_conf.pm: internally keep module names according
- to what we configure (and our kernel, 2.4 or 2.6)
-
- * Xconfig/various.pm, Xconfig/card.pm: s/XFree/Xorg/
-
-2004/08/10 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: install_urpmi(): set up the right with_hdlist for
- urpmi.cfg
- Back to first medium after having added a supplementary one.
- Set prefix for http supplementary media, since $URLPREFIX is not
- defined.
-
- * crypto.pm: Adapt to the new mirror structure: RPMs are no longer in a
- RPMS subdirectory
-
-2004/08/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/rpmsrate: install udev by default
-
-2004/08/09 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/08/09 fwang
-
- * share/advertising/dis-11.pl, share/advertising/pwp-10.pl,
- share/advertising/dwd-08.pl, share/advertising/ppp-11.pl:
- s/MandrakeExpert/Mandrakeexpert
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/08/09 hilbert
-
- * share/po/zh_TW.po: DrakX-zh_TW: 556
- The Mandrakelinux
-
-2004/08/09 jjorge
-
- * share/po/pt.po: saraiva corrected
- saraiva
-
-2004/08/09 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: in netconnect::(start|stop)_internet, use
- (connect|disconnect)_backend
-
- * install_any.pm: use new ISO images volume name (#10543)
- fix regexp (do not strip paths ending in .*iso)
-
- * mdk-stage1/directory.c: typo fix (from Olivier Borowski)
-
-2004/08/09 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/eu.po: updated Basque file
- updated pot file
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ltg.po, share/po/nb.po,
- share/po/ky.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: updated pot file
-
- * share/fonts.tar.bz2: replaced arabic and bengali fonts
-
- * share/po/ar.po: updated Arabic file
- updated pot file
-
- * share/po/bn.po: updated Bengali file
- updated pot file
-
-2004/08/09 Pixel <pixel at mandrakesoft.com>
-
- * interactive/http.pm: use $F instead of *F
- prototype perl_checker compliance
-
- * network/network.pm: perl_checker prototype compliance
- perl_checker compliance + cleanup
-
- * ugtk2.pm, standalone/drakxtv, standalone/localedrake: we never pass a
- prefix to lang::read() which is always use in standalone,
- so use $::prefix and don't pass a prefix anymore
-
- * any.pm:
- - move the "Input method:" at the end (titi did put it in the middle
- for OptionMenu which is crap)
- - need updating the "changed" callback since there is a new entry
-
- * share/rpmsrate: remove awesfx from "SYSTEM 2" otherwise it gives a fatal
- error
-
- * diskdrake/interactive.pm: help perl_checker know the $all_hds *is* used
-
- * install_steps_auto_install.pm, install2.pm: correctly call errorInStep()
-
- * fsedit.pm: flags is optional
-
- * lang.pm: prototype compliance with perl_checker
- we never pass a prefix to lang::read() which is always use in
- standalone,
- so use $::prefix and don't pass a prefix anymore
-
- * Xconfig/various.pm:
- - adapt prototype of runlevel() to its use
- - bootloader::read() needs fstab
-
- * install_steps.pm: correctly call errorInStep()
- fix call to bootloader::read()
-
- * install_any.pm: fix typo
- - fix unlockCdrom()
- - ejectCdrom() prototype compliance with perl_checker
-
- * fs.pm: allow 192.168.1.1:/export
-
-2004/08/09 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Select supplementary medium
- Begin the support for installations over multiple media.
-
- * share/po/pt.po: Remove conflict marker and duplicate entries
-
-2004/08/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakperm: prefer obj->new rather than new obj for gtk+
- widgets
- - perl_checker cleanups
- - reuse cat_() where opencoded
-
- * share/po/fr.po: update
- update
-
- * standalone/logdrake, standalone/drakfloppy,
- Xconfig/resolution_and_depth.pm, standalone/drakconnect,
- standalone/drakbug, standalone/drakTermServ, standalone/net_monitor:
- prefer obj->new rather than new obj for gtk+ widgets
-
- * ugtk2.pm (gtkappend_page) title is optonnal and perl_checker is loudly
- complaining outdoor...
-
- * standalone/drakautoinst: prefer obj->new rather than new obj for gtk+
- widgets
- perl_checker cleanup
-
- * standalone/net_applet: developers should always run their stuff with the
- strict pragma
- prefer obj->new rather than new obj for gtk+ widgets
- (checkNetwork) do not die when gateway canot be guessed (Joe Bolin
- <sopwithcamel@charter.net>)
- else the applet dies never to be heard from again until the next login
- b/c with DHCP connections, the gateway information is lost when the
- network is manually brought down.
- Indeed gateway is not needed for direct connection through crossover
- cable.
- (setState) fix status toolip
- allow multiple instances, but only one per user (Joe Bolin
- <sopwithcamel@charter.net>)
-
- * standalone/draksec (basic_seclevel_explanation) handle any tags ala
- label
- add hint about ala LaTeX strings for translators
- prefer obj->new rather than new obj for gtk+ widgets
-
- * standalone/drakbackup: prefer obj->new rather than new obj for gtk+
- widgets
- (find_files_to_restore) cleanups
-
- * harddrake/sound.pm, install_messages.pm, standalone/drakfont,
- standalone/draksound, install_interactive.pm, install_any.pm,
- standalone/drakxtv: add hint about ala LaTeX strings for translators
-
- * share/po/br.po: update
-
- * drakxtools.spec: 10.1-0.7mdk
-
-2004/08/09 yrahal
-
- * share/po/ar.po: Arabic (from Arabeyes.org) translation
- Arabic translation
-
-2004/08/08 fwang
-
- * network/netconnect.pm: s/iwpconfig/iwconfig
-
- * share/advertising/dwd-04.pl, share/advertising/ppp-09.pl,
- share/advertising/dis-08.pl, share/advertising/dis-10.pl,
- share/advertising/ppp-05.pl, share/advertising/ppp-08.pl,
- share/advertising/ppp-10.pl, share/advertising/dwd-06.pl,
- share/advertising/dis-09.pl, share/advertising/ppp-04.pl,
- share/advertising/pwp-04.pl, share/advertising/pwp-08.pl,
- share/advertising/dwd-07.pl, share/advertising/pwp-07.pl,
- share/advertising/pwp-09.pl: Some string fixes
-
- * standalone/logdrake: typo fix
- s/Mandrake/Mandrakelinux
-
- * authentication.pm, share/po/zh_CN.po: typo fix
-
- * lang.pm: Revised comments to make non-utf-8 editor happier
- changed default font for gb2312
-
- * standalone/drakconnect, standalone/drakbug, standalone/harddrake2,
- standalone.pm, standalone/net_monitor: s/Mandrake/Mandrakelinux
-
-2004/08/08 hilbert
-
- * share/po/zh_TW.po: DrakX-zh_TW: 401
- Volume label:
-
-2004/08/08 Pixel <pixel at mandrakesoft.com>
-
- * share/aliases: remove raidstop
-
- * diskdrake/hd_gtk.pm, share/list.i386, diskdrake/interactive.pm,
- fs/get.pm, install2.pm, fsedit.pm, detect_devices.pm, raid.pm,
- bootloader.pm, install_any.pm:
- - switch to mdadm (instead of raidtools)
- - create mdadm.conf instead of raidtab
- - internal {raids} is no more indexed by X for mdX, and so don't have
- holes anymore
- - internal {chunk-size} is now a number in KiB
- - internal {raid} is the raid device name, not the number
- - various cleanup for raid detection
-
- * install_steps.pm: don't set toFormat if we don't have a {fs_type} (eg:
- pt_type 0xfd, ie raw raid)
-
- * share/rpmsrate: many authentication packages where missing (bugzilla
- #10644)
- many authentication packages where missing (bugzilla #10644)
-
-2004/08/08 tsdgeos
-
- * share/po/ca.po: small updates to catalan translation
-
-2004/08/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakperm (row_setting_dialog) add hints for translators
- (row_setting_dialog) enable translators to print a fully translated
- strings
- (though we should probably just pregenerate and fill pos with all the
- strings
- b/c of inflections and mutations that occur in some languages)
- (row_setting_dialog) do not set hash as string on labels else perl will
- stringify this very hash thus making draksec crashes with strict pragma
- simplify code through Gtk2::ComboBox->new_with_strings()
-
- * standalone/drakTermServ, standalone/drakbackup, standalone/draksec,
- standalone/drakfloppy: simplify code through
- Gtk2::ComboBox->new_with_strings()
-
- * drakxtools.spec: fix 10.1-0.6mdk's changelog
-
- * standalone/drakboot: sort theme list
- simplify code through Gtk2::ComboBox->new_with_strings()
- sort WMs list
- use proper widget (aka GtkTable)
- sort user list
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
- share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: merge in typo fixes
-
- * ugtk2.pm (Gtk2::ComboBox->new_with_strings) make it working
-
-2004/08/08 yrahal
-
- * share/po/ar.po: Arabic translation
-
-2004/08/08 hilbert
-
- * share/po/zh_TW.po: DrakX-zh_TW: 205
- Local file:
-
-2004/08/08 Pixel <pixel at mandrakesoft.com>
-
- * install_steps.pm: don't set toFormat if we don't have a {fs_type} (eg:
- pt_type 0xfd, ie raw raid)
-
- * detect_devices.pm:
- - switch to mdadm (instead of raidtools)
- - create mdadm.conf instead of raidtab
- - internal {raids} is no more indexed by X for mdX, and so don't have
- holes anymore
- - internal {chunk-size} is now a number in KiB
- - internal {raid} is the raid device name, not the number
- - various cleanup for raid detection
- only load floppy module explictly during install (otherwise it causes
- ugly messages in bootloader-config)
-
- * any.pm: replace "More" with a more descriptive button name
-
- * share/rpmsrate: many authentication packages where missing (bugzilla
- #10644)
- many authentication packages where missing (bugzilla #10644)
-
- * diskdrake/hd_gtk.pm, share/list.i386, diskdrake/interactive.pm,
- fs/get.pm, install2.pm, fsedit.pm, raid.pm, bootloader.pm,
- install_any.pm:
- - switch to mdadm (instead of raidtools)
- - create mdadm.conf instead of raidtab
- - internal {raids} is no more indexed by X for mdX, and so don't have
- holes anymore
- - internal {chunk-size} is now a number in KiB
- - internal {raid} is the raid device name, not the number
- - various cleanup for raid detection
-
-2004/08/07 hilbert
-
- * share/po/zh_TW.po: DrakX-zh_TW: 130
-
-2004/08/07 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nb.po: updated Norwegian file
-
- * share/po/wa.po: updated Walloon file
-
-2004/08/07 reinouts
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
-
-2004/08/06 hilbert
-
- * share/po/zh_TW.po: DrakX-zh_TW: 100
- What norm is your...
-
-2004/08/06 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/adsl.pm (network::adsl::adsl_conf_backend) add ppp_async alias
- for sagem
- devices (so that they work during install)
- fix titypo
- try to load all modules that may be needed to establish connexion
- try to mount proc fs too, in case it wasn't done earlier
-
- * network/netconnect.pm: use the new kdenetwork-kppp-provider package
- (thanks Laurent !) to be
- able to parse the provider db without requiring kdenetwork-kppp
-
-2004/08/06 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/de.po: updated German file
- updated pot file
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/ky.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/fur.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/tl.po,
- share/po/eo.po, share/po/el.po, share/po/bg.po, share/po/cs.po,
- share/po/uz@Latn.po: updated pot file
-
- * fsedit.pm: reverted an unneeded string change
-
-2004/08/06 Pixel <pixel at mandrakesoft.com>
-
- * install_steps.pm: fix typo
- don't try to remove non existing should_be_dirs
-
-2004/08/06 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/rpmsrate: If totem is to be avoided for KDE, avoid it in audio as
- well as in video.
-
- * pkgs.pm: Allow multiple complicate flags in rpmsrate, if they're exactly
- the same.
-
-2004/08/06 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: update
- push typo fixes in order to reduce pressure on translators
-
- * drakxtools.spec: 10.1-0.6mdk
- 10.1-0.5mdk
-
- * any.pm (selectCountry) fix IM sorting
-
- * share/rpmsrate:
- - install awesfx too if neded
- - add a note b/c we cannot install it :-)
- always install all arabic fonts since farsi oness contains nice arabic
- glyphs but not urdu (by way of arabayes feedback)
-
- * network/adsl.pm (adsl_conf_backend) let's have a better looking mesage
- (adsl_conf_backend) only try to mount /proc if it wasn't (eg if we
- didn't intall any packages)
-
- * lang.pm: fix x-unikey support (Larry Nguyen)
- (write) fix configuring IM
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/da.po, share/po/ca.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/uk.po,
- share/po/mn.po, share/po/am.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/fur.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/nl.po, share/po/tl.po, share/po/de.po, share/po/eo.po,
- share/po/el.po, share/po/bg.po, share/po/cs.po, share/po/uz@Latn.po:
- push typo fixes in order to reduce pressure on translators
-
- * ugtk2.pm (Gtk2::ComboBox->set_text) better error message
- (create_scrolled_window) adding 6px as left margin for TextView in
- scrolled Window
-
- * standalone/drakbackup: typo fix
- cleanups for lord perl_checker
- (advanced_when) quiet runtime warnings
- (advanced_when) fix crash when selecting an entry in pull down menus
-
-2004/08/06 yrahal
-
- * share/po/ar.po: Arabeyes' Arabic translation
-
-2004/08/05 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate: Update
- Update for discovery
-
-2004/08/05 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakclock: if ntp is used, get the new time before updating
- the hwclock
- (fix from Emmanuel Blindauer, #10537)
-
- * mdk-stage1/directory.c: do not go back to the beginning if no
- distribution is found in the
- directory (second fix)
- do not go back to the beginning if no distribution is found in the
- directory
-
- * network/adsl.pm: try to mount usbdevfs in $::prefix before attempting to
- run adsl start
- programs
-
- * network/netconnect.pm: set netcnx type when an external isdn modem is
- selected, or else
- modem::ppp_read_conf will crash (Anthill #1033)
- set netcnx type when an external isdn modem is selected, or else
- modem::ppp_read_conf will crash (Anthill #1033)
-
-2004/08/05 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/uk.po, share/po/et.po: updated Estonian file
-
-2004/08/05 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/various.pm, diskdrake/interactive.pm,
- standalone/bootloader-config: adapt to bootloader functions now using
- all_hds instead of hds
-
- * bootloader.pm: update yaboot code (based on Christiaan Welvaart patch)
- /usr/sbin/ofpath seems to need /mnt/sys mounted, and the device must
- exist (Christiaan Welvaart)
- fix typos (Christiaan Welvaart)
-
- * install_steps_interactive.pm: basic code for upgrading from a redhat
- distribution
-
- * install_steps_gtk.pm: drop Xpmac support
-
- * detect_devices.pm: isLaptop() special code for ppc
-
- * any.pm, install_steps.pm: basic code for upgrading from a redhat
- distribution
- adapt to bootloader functions now using all_hds instead of hds
-
- * install_any.pm: basic code for upgrading from a redhat distribution
- write auto_inst.cfg after making room on the floppy image
- make room on replay/auto_install floppy image before doing anything
- when replaying, overwrite boot.msg with an empty message to win some
- space
- (it was only done in non-replay mode)
- adapt to bootloader functions now using all_hds instead of hds
- make room on replay/auto_install floppy image before doing anything
-
-2004/08/05 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/sound.pm: make it clearer by factorizing arch() call
- fix PPC entries
-
- * install_messages.pm (install_completed) bump errata page (though it does
- not yet exists)
-
- * share/rpmsrate: use new arabic font packages
- install sg usefull when there's a bluetooth device connected to the
- system
- install gimp's help along it
-
-2004/08/05 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakclock: if ntp is used, get the new time before updating
- the hwclock
- (fix from Emmanuel Blindauer, #10537)
-
-2004/08/05 Pixel <pixel at mandrakesoft.com>
-
- * diskdrake/interactive.pm, standalone/bootloader-config: adapt to
- bootloader functions now using all_hds instead of hds
-
- * install_steps.pm: adapt to bootloader functions now using all_hds
- instead of hds
- pass around $all_hds instead of $hds
-
- * harddrake/sound.pm: add dmasound_pmac <=> snd-powermac (for ppc,
- Christiaan Welvaart)
-
- * keyboard.pm: ppc doesn't use dumpkeys (?) (Christiaan Welvaart)
-
- * install_steps_gtk.pm: drop Xpmac support
-
- * detect_devices.pm: isLaptop() special code for ppc
-
- * bootloader.pm: update yaboot code (based on Christiaan Welvaart patch)
- /usr/sbin/ofpath seems to need /mnt/sys mounted, and the device must
- exist (Christiaan Welvaart)
- fix typos (Christiaan Welvaart)
- pass around $all_hds instead of $hds
- create bootloader::allowed_boot_parts() and use it,
- it allows installing on md0 if using lilo and md0 is raid1
-
- * Xconfig/various.pm: adapt to bootloader functions now using all_hds
- instead of hds
- replaced XFree86 and XFree with Xorg (bugzilla #10531)
-
- * any.pm: adapt to bootloader functions now using all_hds instead of hds
- create bootloader::allowed_boot_parts() and use it,
- it allows installing on md0 if using lilo and md0 is raid1
-
- * rescue/list.ppc, tools/ppc/mkINSTALLCD, share/list.ppc: update
- (Christiaan Welvaart)
-
- * fs/type.pm: "PPC PReP Boot" is an "important" type on ppc
-
- * Xconfig/card.pm, services.pm, standalone/XFdrake: replaced XFree86 and
- XFree with Xorg (bugzilla #10531)
-
- * share/list, share/list.x86_64, share/list.i386: ntfsresize and dmidecode
- are not needed on ppc (Christiaan Welvaart)
-
- * install_any.pm: make room on replay/auto_install floppy image before
- doing anything
- when replaying, overwrite boot.msg with an empty message to win some
- space
- (it was only done in non-replay mode)
- adapt to bootloader functions now using all_hds instead of hds
- fix backward compatibility {type} field in partitions and manualFstab
-
-2004/08/05 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/draksec: looks like patch -l did wrong things :-(
-
- * network/adsl.pm: quiet perl_checker
- (adsl_conf_backend) fix error message
-
- * share/rpmsrate: install needed alsa tools depending on present sound
- cards
-
- * harddrake/sound.pm: make it clearer by factorizing arch() call
- fix PPC entries
- add support for ALSA on PPC and SPARC
- align sound driver entries
- update sound drivers list
-
-2004/08/04 Daouda Lo <daouda at mandrakesoft.com>
-
- * share/net_applet.xinit:
- - added net_applet xinit file to automate launch of net_applet in KDE,
- GNOME and IceWM
-
- * drakxtools.spec:
- - do not expand shell vars
- - do not forget to package xinit.d net_applet file
- - automatically launch net_applet for KDE, GNOME and IceWM
-
-2004/08/04 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/isdn.pm: do not write cnx_script anymore (isdn4linux service
- will modprobe the
- driver, ibod service is started at boot, ifup/ifdown handle the dial)
-
- * mdk-stage1/directory.c: prefer to use a ramdisk for disk installs
-
- * network/tools.pm, network/ethernet.pm, standalone/drakconnect: kill
- set_cnx_script usage, replace cnx_scripts with ifup/ifdown
-
- * network/adsl.pm: catch die from modules::load
- add modules arrays and use modules::load to be able to load modules
- from modules.cz files, load these modules when not in standalone mode
- (they're needed for install and Move)
-
- * network/netconnect.pm: fix wording
- do not force kppp installation, it will be installed by
- modem::ppp_configure if kdebase is installed,
- else ifup/ifdown scripts are enough
- kill set_cnx_script usage, replace cnx_scripts with ifup/ifdown
- write a cnx_script for adsl connexions too (so that drakconnect can
- establish the connexion), add a FIXME comment to remind it is bad
-
-2004/08/04 Pixel <pixel at mandrakesoft.com>
-
- * fs/get.pm, fs/mount_options.pm: return a true value for perl
-
- * standalone/bootloader-config: don't allow unknown kernel names to mess
- everything
-
- * bootloader.pm:
- - same_entries() doesn't look anymore at kernel options
- (it tends to create stupid alt_xxx entries)
- - fix creation of labels alt2_alt_xxx (will now be alt2_xxx)
- - don't create bad "linux-nonfb" for kernel-win4lin
- try to keep the order of kernel options (to help same_entries())
- handle win4lin kernels
-
- * any.pm: .gnome2/wmrc and .wmrc are obsolete, it is now .dmrc
- (nb: beware, one must write 07IceWM instead of IceWM, same for others)
- don't set /etc/sysconfig/desktop anymore, configure ~/.wmrc,
- ~/.gnome2/gdm and ~/.desktop instead
-
- * rescue/list: replace /sbin/mkraid with /sbin/mdadm (as told on cooker by
- Luca Berra)
-
-2004/08/04 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * http.pm: Verify that regexp matched
-
-2004/08/04 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * Makefile.drakxtools: fix build
-
- * ugtk2.pm (Gtk2::ComboBox->set_text) actually print a warning if we
- failled
- let's system wide config not override user's locale
-
- * lang.pm: add x-unikey support for Vietnamese
- switch korean to scim-hangul IM
- (write) if one override default IM, remove any setting from default IM
- (hint:
- some IM configurations do not have all fields set...)
- (read) fix IM reading
-
- * share/rpmsrate: add x-unikey support for Vietnamese
- include fcitx IM too
- ensure alternative IMs get in in the isos
- switch korean to scim-hangul IM
- uim is already installed if needed depending on locale
- install xvnkb IM for vietnamese
- install ami IM only for korean
-
- * network/adsl.pm: log module loading faillure
-
- * drakxtools.spec: 10.1-0.4mdk
- update 10.1-0.3mdk'log (thx to build issue...)
- 10.1-0.3mdk
-
- * Makefile: fix build
- remove unused net_applet.desktop
-
- * interactive/gtk.pm (ask_fromW) actually honor default value
-
- * standalone/draksec: perl_checker cleanup
- - upcase fields values (and btw reduce the number of strings to
- translate :-))
- - simplify translating
-
-2004/08/03 jjorge
-
- * share/po/pt.po: error?
-
-2004/08/03 Olivier Blin <oblin at mandrakesoft.com>
-
- * share/fonts.tar.bz2: add missing fonts.conf (with Kacst-Qr entries)
-
-2004/08/03 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/fonts.tar.bz2: oops, /etc/fonts.conf missing from tarball
- updted fonts-cache file
-
-2004/08/03 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm: move mount options related stuff from
- fs.pm to newly created fs/mount_options.pm
- - fs::set_all_default_options() ->
- fs::mount_options::set_all_default()
- - fs::mount_options_pack() -> fs::mount_options::pack()
- - fs::mount_options_unpack() -> fs::mount_options::unpack()
- - fs::rationalize_options() -> fs::mount_options::rationalize()
- - fs::set_default_options() -> fs::mount_options::set_default()
- - fs::mount_options() -> fs::mount_options::list()
- - fs::mount_options_help() -> fs::mount_options::help()
- many functions in fsedit don't modify anything, they are simply
- accessors.
- create fs::get and move them into it
- - device2part(), up_mount_point() moved from fs to fs::get
- - part2hd(), file2part(), has_mntpoint(), mntpoint2part(),
- empty_all_hds() moved from fsedit to fs::get
- - fsedit::get_root() -> fs::get::root()
- - fsedit::get_root_() -> fs::get::root_()
- - fsedit::get_really_all_fstab() -> fs::get::really_all_fstab()
- - fsedit::get_all_fstab_and_holes() -> fs::get::fstab_and_holes()
- - fsedit::get_all_fstab() -> fs::get::fstab()
- - fsedit::get_all_holes() -> fs::get::holes()
- - fsedit::all_free_space -> fs::get::free_space()
- - fsedit::get_really_all_fstab() -> fs::get::really_all_fstab()
-
- - fsedit::get_fstab_and_holes() -> fs::get::hds_fstab_and_holes()
- - fsedit::get_holes() -> fs::get::hds_holes()
- - fsedit::get_fstab() -> fs::get::hds_fstab()
- - fsedit::free_space() -> fs::get::hds_free_space()
-
- - fsedit::get_visible_fstab() unused, removed
- authentication::kind2description() has changed and its name is
- missleading :-(
- keeping it for now and adapt install_steps_interactive::setRootPassword
- along what's done in drakauth
- authentication::kind2description() has changed and its name is
- missleading :-(
- keeping it for now and adapt install_steps_interactive::setRootPassword
- along what's done in drakauth
-
- * fs/format.pm: add CVS $Id:
- many functions in fsedit don't modify anything, they are simply
- accessors.
- create fs::get and move them into it
- - device2part(), up_mount_point() moved from fs to fs::get
- - part2hd(), file2part(), has_mntpoint(), mntpoint2part(),
- empty_all_hds() moved from fsedit to fs::get
- - fsedit::get_root() -> fs::get::root()
- - fsedit::get_root_() -> fs::get::root_()
- - fsedit::get_really_all_fstab() -> fs::get::really_all_fstab()
- - fsedit::get_all_fstab_and_holes() -> fs::get::fstab_and_holes()
- - fsedit::get_all_fstab() -> fs::get::fstab()
- - fsedit::get_all_holes() -> fs::get::holes()
- - fsedit::all_free_space -> fs::get::free_space()
- - fsedit::get_really_all_fstab() -> fs::get::really_all_fstab()
-
- - fsedit::get_fstab_and_holes() -> fs::get::hds_fstab_and_holes()
- - fsedit::get_holes() -> fs::get::hds_holes()
- - fsedit::get_fstab() -> fs::get::hds_fstab()
- - fsedit::free_space() -> fs::get::hds_free_space()
-
- - fsedit::get_visible_fstab() unused, removed
-
- * fs/mount_options.pm, network/smbnfs.pm, network/smb.pm: move mount
- options related stuff from fs.pm to newly created fs/mount_options.pm
- - fs::set_all_default_options() ->
- fs::mount_options::set_all_default()
- - fs::mount_options_pack() -> fs::mount_options::pack()
- - fs::mount_options_unpack() -> fs::mount_options::unpack()
- - fs::rationalize_options() -> fs::mount_options::rationalize()
- - fs::set_default_options() -> fs::mount_options::set_default()
- - fs::mount_options() -> fs::mount_options::list()
- - fs::mount_options_help() -> fs::mount_options::help()
-
- * tools/hd_grub.cgi: better description
-
- * diskdrake/interactive.pm, install_steps.pm, fs.pm, fsedit.pm,
- standalone/diskdrake, standalone/drakupdate_fstab: move mount options
- related stuff from fs.pm to newly created fs/mount_options.pm
- - fs::set_all_default_options() ->
- fs::mount_options::set_all_default()
- - fs::mount_options_pack() -> fs::mount_options::pack()
- - fs::mount_options_unpack() -> fs::mount_options::unpack()
- - fs::rationalize_options() -> fs::mount_options::rationalize()
- - fs::set_default_options() -> fs::mount_options::set_default()
- - fs::mount_options() -> fs::mount_options::list()
- - fs::mount_options_help() -> fs::mount_options::help()
- many functions in fsedit don't modify anything, they are simply
- accessors.
- create fs::get and move them into it
- - device2part(), up_mount_point() moved from fs to fs::get
- - part2hd(), file2part(), has_mntpoint(), mntpoint2part(),
- empty_all_hds() moved from fsedit to fs::get
- - fsedit::get_root() -> fs::get::root()
- - fsedit::get_root_() -> fs::get::root_()
- - fsedit::get_really_all_fstab() -> fs::get::really_all_fstab()
- - fsedit::get_all_fstab_and_holes() -> fs::get::fstab_and_holes()
- - fsedit::get_all_fstab() -> fs::get::fstab()
- - fsedit::get_all_holes() -> fs::get::holes()
- - fsedit::all_free_space -> fs::get::free_space()
- - fsedit::get_really_all_fstab() -> fs::get::really_all_fstab()
-
- - fsedit::get_fstab_and_holes() -> fs::get::hds_fstab_and_holes()
- - fsedit::get_holes() -> fs::get::hds_holes()
- - fsedit::get_fstab() -> fs::get::hds_fstab()
- - fsedit::free_space() -> fs::get::hds_free_space()
-
- - fsedit::get_visible_fstab() unused, removed
-
- * loopback.pm, any.pm, fs/get.pm, diskdrake/removable.pm, bootloader.pm,
- network/netconnect.pm, diskdrake/dav.pm, diskdrake/hd_gtk.pm,
- standalone/drakboot, lvm.pm, install2.pm, network/tools.pm,
- diskdrake/smbnfs_gtk.pm, install_interactive.pm, install_any.pm,
- standalone/bootloader-config, partition_table.pm: many functions in
- fsedit don't modify anything, they are simply accessors.
- create fs::get and move them into it
- - device2part(), up_mount_point() moved from fs to fs::get
- - part2hd(), file2part(), has_mntpoint(), mntpoint2part(),
- empty_all_hds() moved from fsedit to fs::get
- - fsedit::get_root() -> fs::get::root()
- - fsedit::get_root_() -> fs::get::root_()
- - fsedit::get_really_all_fstab() -> fs::get::really_all_fstab()
- - fsedit::get_all_fstab_and_holes() -> fs::get::fstab_and_holes()
- - fsedit::get_all_fstab() -> fs::get::fstab()
- - fsedit::get_all_holes() -> fs::get::holes()
- - fsedit::all_free_space -> fs::get::free_space()
- - fsedit::get_really_all_fstab() -> fs::get::really_all_fstab()
-
- - fsedit::get_fstab_and_holes() -> fs::get::hds_fstab_and_holes()
- - fsedit::get_holes() -> fs::get::hds_holes()
- - fsedit::get_fstab() -> fs::get::hds_fstab()
- - fsedit::free_space() -> fs::get::hds_free_space()
-
- - fsedit::get_visible_fstab() unused, removed
-
-2004/08/03 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * pkgs.pm, install_any.pm: A small variable renaming: use $medium for
- hashes and $medium_name for strings
-
- * share/po/fr.po: Small typos
-
- * share/po/pt.po: pt.po was corrupted
-
-2004/08/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/draksplash2: help perl_checker
-
- * ugtk2.pm (create_dialog) only add space between icon and text if there's
- actually an icon
- (create_notebook) reuse gtkappend_page()
- (create_dialog) do not show separator by default
- (_create_dialog) sanitize dialogs/popups:
- - set a border around it
- - add more space between the icon and the text
- (gtkappend_page) name parameters, enabling perl_checker to check
- callers' call
- signature
- (create_packtable) set a border around packtables
-
- * standalone/draksec: reuse gtkappend_page()
-
- * standalone/drakups (add_device_wizard) fix string (Joe Brower)
-
-2004/08/03 Olivier Blin <oblin at mandrakesoft.com>
-
- * share/fonts.tar.bz2: add missing fonts.conf (with Kacst-Qr entries)
-
-2004/08/03 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm: authentication::kind2description() has
- changed and its name is missleading :-(
- keeping it for now and adapt install_steps_interactive::setRootPassword
- along what's done in drakauth
- authentication::kind2description() has changed and its name is
- missleading :-(
- keeping it for now and adapt install_steps_interactive::setRootPassword
- along what's done in drakauth
-
-2004/08/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakups (add_device_wizard) fix string (Joe Brower)
-
-2004/08/02 Olivier Blin <oblin at mandrakesoft.com>
-
- * Makefile: enable ar and fa locales since an arabic font is now available
- in install
-
-2004/08/02 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/fonts.tar.bz2: added arabic and bengali fonts
-
-2004/08/02 Pixel <pixel at mandrakesoft.com>
-
- * fs/format.pm: make perl_checker happy
-
-2004/08/02 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/adsl.pm: in sagem start section, modprobe eagle-usb and do not
- wait for sync
- here, fctStartAdsl will handle that when pppd is called
- in speedtouch start section, modprobe speedtch module and use
- speedtouch-start instead of directly using modem_run
- in install, run modem start scripts once config is written
-
- * Makefile: enable ar and fa locales since an arabic font is now available
- in install
-
-2004/08/02 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/fonts.tar.bz2: added arabic and bengali fonts
-
-2004/08/02 Pixel <pixel at mandrakesoft.com>
-
- * .perl_checker: black list URPM::Build
-
- * fs.pm: don't use supermount for {is_removable} devices when used for a
- boot time partition (like /usr and /)
-
- * share/rpmsrate: flag rosegarden4 KDE
-
- * any.pm, network/network.pm, harddrake/sound.pm, diskdrake/dav.pm,
- network/netconnect.pm, network/smb.pm, do_pkgs.pm, lvm.pm,
- network/drakfirewall.pm, network/nfs.pm, standalone/drakups,
- standalone/drakxtv: introduce ->ensure_binary_is_installed and use it
-
- * fs/format.pm, install_any.pm:
- - move package_needed_for_partition_type() from fsedit to fs::format
- - create check_package_is_installed() in fs::format and use it
-
- * diskdrake/interactive.pm: fsedit::check_fs_type() is now
- fs::type::check()
- use fs::format::check_package_is_installed() before formatting (bugzilla
- #10435)
- - move package_needed_for_partition_type() from fsedit to fs::format
- - create check_package_is_installed() in fs::format and use it
-
- * fsedit.pm: fsedit::check_fs_type() is now fs::type::check()
- - move package_needed_for_partition_type() from fsedit to fs::format
- - create check_package_is_installed() in fs::format and use it
-
- * fs/type.pm: fsedit::check_fs_type() is now fs::type::check()
-
-2004/08/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * c/Makefile.PL: fix build
-
- * standalone/drakups: clean spacing
- (add_device_wizard) fix string
-
-2004/08/02 Frederic Lepied <flepied at mandrakesoft.com>
-
- * share/rpmsrate: updated installed packages for 10.1
-
-2004/08/02 jjorge
-
- * share/po/pt.po: install lover
-
-2004/08/02 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/adsl.pm: in sagem start section, modprobe eagle-usb and do not
- wait for sync
- here, fctStartAdsl will handle that when pppd is called
- in speedtouch start section, modprobe speedtch module and use
- speedtouch-start instead of directly using modem_run
- in install, run modem start scripts once config is written
-
-2004/08/02 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/uk.po, share/po/wa.po: updated Farsi file
-
- * share/po/ar.po: updated Arabic file
-
- * share/po/zh_TW.po: updated Chinese file
-
-2004/08/02 Pixel <pixel at mandrakesoft.com>
-
- * share/rpmsrate: flag rosegarden4 KDE
-
- * diskdrake/interactive.pm: use fs::format::check_package_is_installed()
- before formatting (bugzilla #10435)
- - move package_needed_for_partition_type() from fsedit to fs::format
- - create check_package_is_installed() in fs::format and use it
- don't call will_tell_kernel() when we have lvm (anthill #994)
-
- * any.pm, network/network.pm, harddrake/sound.pm, diskdrake/dav.pm,
- network/netconnect.pm, do_pkgs.pm, network/smb.pm, lvm.pm,
- network/drakfirewall.pm, network/nfs.pm, standalone/drakups,
- standalone/drakxtv: introduce ->ensure_binary_is_installed and use it
-
- * fsedit.pm, fs/format.pm, install_any.pm:
- - move package_needed_for_partition_type() from fsedit to fs::format
- - create check_package_is_installed() in fs::format and use it
-
- * standalone/service_harddrake: check the XF86Config and/or XF86Config-4
- exist before modifying it
- (otherwise it creates an empty file) (bugzilla #10487)
-
-2004/08/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * c/Makefile.PL: fix build
-
- * ugtk2.pm: fix inverted comments
- (gtktext_insert) merge with text_append() from logdrake:
- - name parameters
- - provide fast text insertion by using named tags instead of anonymous
- tags.
- this is especially usefull in order to speed up programs that use quite
- a
- lot of identical tags such as logdrake (#8412) and rpmdrake
-
- * standalone/logdrake: perl_checker cleanup
- (log_output__real) rename it as insert_text_n_scroll() in order to
- better
- reflect what it does
- reuse new ugtk2 infrastructure
- (log_output) fix tag name (was harmfull but it's just saner anyway)
-
- * harddrake/autoconf.pm (network_conf) rename o as obj so that pixel isn't
- confused
-
- * standalone/drakups (add_device_wizard) fix string
-
-2004/08/01 Frederic Lepied <flepied at mandrakesoft.com>
-
- * share/rpmsrate: added s2u
-
-2004/08/01 fwang
-
- * standalone/drakbackup, standalone/harddrake2, standalone/drakups:
- several typos fix
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/08/01 hilbert
-
- * share/po/zh_TW.po: DrakX-zh_TW: 75
- Choose the...
-
-2004/08/01 reinouts
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
-
-2004/07/30 Pixel <pixel at mandrakesoft.com>
-
- * standalone/draksplash2: draksplash2 is here until merged in draksplash
-
-2004/07/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * lang.pm: support nabi input method too
- support im-ja input method too
-
- * drakxtools.spec: log more stuff into 10.1-0.2mdk
- 10.1-0.2mdk
-
- * standalone/net_applet: keep strings synced and warn both coders and
- translators about it
- fix timeout usage
- like in all other tools, revert ugly code printing "This program
- cannot be run in console mode", which is easier done in ugtk2.pm
- do not enforce parameter position in translatable strings
-
- * share/po/br.po, share/po/fr.po: update
-
- * ugtk2.pm (shrink_topwindow) drop Gtk+-2.[02]x support
-
- * any.pm (selectCountry) let's have a better looking GUI by preventing
- uneeded
- scrollbar on pull down menu
- (selectCountry) use a combo box rather than a list for listing input
- methods
-
-2004/07/30 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/netconnect.pm: offer to connect for pppoe connexions too
-
- * mdk-stage1/stage1.c: revert previous commit, that won't work after
- pivot_root (proc has to
- be mounted, insmod would have to be able to find the modules in the
- new root)
- revert previous commit, that won't work after pivot_root (proc has to
- be mounted, insmod would have to be able to find the modules in the
- new root), we'll have to use hotplug to load eagle-usb drivers in Move
- (in next release maybe)
-
- * network/adsl.pm: sagem: use fctStartAdsl to wait for sync, up the
- interface and get interface name
- modprobe eagle-usb for sagem modems (useful if coldplug doesn't work)
-
-2004/07/30 Pixel <pixel at mandrakesoft.com>
-
- * standalone/draksplash2: draksplash2 is here until merged in draksplash
-
- * share/rpmsrate: authentication installs perl-Net-DNS in some cases
- authentication installs perl-Net-DNS in some cases
-
- * any.pm, lang.pm: cleanup
-
-2004/07/30 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Fixes for Anthill #1009, #1010 (DVD recording,
- disk quota)
- Direct-to-tape enahancement
- Fixes for AntHill #1009, #1010.
-
-2004/07/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: log more stuff into 10.1-0.2mdk
- 10.1-0.2mdk
-
- * standalone/service_harddrake: do not offer to configure mouse if we've
- already automatically reconfigure it
- b/c of 2.4.x vs 2.6.x switch
-
- * any.pm (selectCountry) let's have a better looking GUI by preventing
- uneeded
- scrollbar on pull down menu
- (selectCountry) use a combo box rather than a list for listing input
- methods
- enable one to choose its input method in advanced mode
-
- * standalone/drakgw (outpend) clean by reusing MDK::Common
-
- * lang.pm: support nabi input method too
- support im-ja input method too
- enable one to choose its input method in advanced mode
-
- * security/help.pm, security/msec.pm, security/l10n.pm: sync with
- msec-0.44
-
-2004/07/30 Vincent Guardiola <vguardiola at mandrakesoft.com>
-
- * authentication.pm: Clean ldap client configuration
-
-2004/07/30 yrahal
-
- * share/po/ar.po: Arabeyes.org's Arabic translation
- Sync with Arabeyes CVS
-
-2004/07/29 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/adsl.pm: split server and plugin options, in order to support
- again bewan
- modems (pppd_options wasn't used anywhere, they couldn't work)
- add newline at end of net_cnx_up script
- use connect option or pppd in net_cnx_up, not both
- (to fix weird pppoe net_cnx_up script)
-
-2004/07/29 Pixel <pixel at mandrakesoft.com>
-
- * authentication.pm: cleanup, fix various typos
- (still, ->target seems broken, but i'm not sure, since i couldn't test)
-
- * fsedit.pm: merge hds() in get_hds() to correctly handle catching cdie
- when the device is non partionned
- merge hds() in get_hds() to correctly handle catching cdie when the
- device is non partionned
-
- * mdk-stage1/stage1.c, mdk-stage1/config-stage1.h: s/MandrakeMove/Move/
-
-2004/07/29 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * c/stuff.xs.pl, c/Makefile: always include all funcs (these're needed
- anyway by Move and GlobeTrotter)
-
- * drakxtools.spec: 10.1-0.1mdk
-
- * wizards.pm (check_rpm) backport fix from HEAD
-
- * standalone/service_harddrake: use new set_removable_auto_configurator
- merge fix from HEAD: do not automatically configure removable media in
- harddrake GUI (only in harddrake service)
-
- * network/netconnect.pm (handle_multiple_cnx) only restart network for
- ADSL if we use an
- ethernet modem
-
- * harddrake/data.pm (set_removable_auto_configurator) copy it out from
- set_removable_configurator()
- (set_removable_configurator) restore it as of MDK10.0 time
- merge fix from HEAD: do not automatically configure removable media in
- harddrake GUI (only in harddrake service)
-
- * network/tools.pm (remove_initscript) simplify
-
- * standalone/draksec, standalone/drakedm, standalone/drakgw: standalone
- tools are *not* chrooted
-
- * standalone/draksplash (show_prev)
- - kill useless variables
- - simplify
- (show_prev) fix preview refresh while simplying code
- (write_boot_thm) typo fix
- more cleanups
- misc cleanups
- (show_prev) do not crash when the image format is unknown
- (make_boot_frame) fix it
-
-2004/07/28 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/adsl.pm: do not write a blank "pty" option in ppp config file is
- there is no
- pty command (should fix some problems with Bewan modems)
- do not write a blank "pty" option in ppp config file is there is no
- pty command (should fix some problems with Bewan modems)
-
- * mdk-stage1/stage1.c: do not probe usb interface too soon, wait for the
- Move images to be mounted
- (or else usb drivers won't be automatically loaded at boot with Move)
- do not probe usb interface too soon, wait for the Move images to be
- mounted
- (or else usb drivers won't be automatically loaded at boot with Move)
-
- * network/netconnect.pm: it's probably better to rely on modem_run since
- speedtouch.sh may be dropped
-
-2004/07/28 Pixel <pixel at mandrakesoft.com>
-
- * fs/type.pm: remove small ugly typo
-
- * network/smb.pm:
- - use option -g for smbclient -L, this fixes bad parsing of formatted
- smbclient output
- - skip "netlogon" Disk share (lowercase letters)
-
- * install_steps.pm: explain why we set toFormatUnsure
-
- * install_any.pm: don't set mount point /mnt/windows for removable devices
-
- * detect_devices.pm: fix getSCSI_26() not sorting the drives
- fix getCompaqSmartArray() on 2.6 (since /proc/driver/cciss/cciss0
- doesn't talk about c0dX anymore)
- fix getSCSI_26() not sorting the drives
-
-2004/07/28 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup, standalone/drakTermServ: Fix crashes on
- append_set.
-
-2004/07/28 Pixel <pixel at mandrakesoft.com>
-
- * fs/type.pm: remove small ugly typo
-
- * detect_devices.pm: fix getSCSI_26() not sorting the drives
- fix getCompaqSmartArray() on 2.6 (since /proc/driver/cciss/cciss0
- doesn't talk about c0dX anymore)
- fix getSCSI_26() not sorting the drives
-
-2004/07/27 Daouda Lo <daouda at mandrakesoft.com>
-
- * standalone/drakbug:
- - scroll down text while typing
- - many cleanups
- - Stable releases are 'Official' and 'Community'
-
-2004/07/27 jjorge
-
- * share/po/pt.po: bunch of work
-
-2004/07/27 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/adsl.pm: '-e 1' option is unneeded with speedtouch >= 1.3
-
-2004/07/27 Pixel <pixel at mandrakesoft.com>
-
- * lvm.pm:
- - add field {fs_type} partially replacing {pt_type}
- {pt_type} is always a number, {fs_type} is always a string
- - introduce set_isFormatted()
- (to ensure {notFormatted} but also {fs_type_from_magic} and
- {bad_fs_type_magic} are updated)
- - don't use 0x483 for ext3 anymore (same for reiserfs...),
- the type_name gives both a pt_type and a fs_type
- - many accessors from partition_table removed (type2fs(),
- fs2pt_type())
- - remove isThisFs() (not useful anymore since we can use directly
- {fs_type})
- - remove isFat() (inline the function)
- - other isXXX() from partition_table are moved to fs::type
- - part2name() is now fs::type::part2type_name
- - name2pt_type() is now fs::type::type_name2subpart()
- - partition_table::important_types() is now fs::type::type_names()
- - fsedit::typeOfPart() is now fs::type::fs_type_from_magic()
-
- - no need to truncate type_name since they are shorter
- a {type} didn't get moved to {pt_type}, fixing
-
- * loopback.pm, any.pm, partition_table/mac.pm, partition_table/bsd.pm,
- diskdrake/interactive.pm, partition_table/dos.pm, fs.pm,
- install_steps.pm, diskdrake/removable.pm, bootloader.pm,
- partition_table/sun.pm, partition_table/gpt.pm,
- install_steps_interactive.pm, network/smbnfs.pm, diskdrake/dav.pm,
- diskdrake/hd_gtk.pm, fs/type.pm, fsedit.pm, install2.pm, raid.pm,
- fs/format.pm, install_interactive.pm, install_any.pm,
- partition_table.pm:
- - add field {fs_type} partially replacing {pt_type}
- {pt_type} is always a number, {fs_type} is always a string
- - introduce set_isFormatted()
- (to ensure {notFormatted} but also {fs_type_from_magic} and
- {bad_fs_type_magic} are updated)
- - don't use 0x483 for ext3 anymore (same for reiserfs...),
- the type_name gives both a pt_type and a fs_type
- - many accessors from partition_table removed (type2fs(),
- fs2pt_type())
- - remove isThisFs() (not useful anymore since we can use directly
- {fs_type})
- - remove isFat() (inline the function)
- - other isXXX() from partition_table are moved to fs::type
- - part2name() is now fs::type::part2type_name
- - name2pt_type() is now fs::type::type_name2subpart()
- - partition_table::important_types() is now fs::type::type_names()
- - fsedit::typeOfPart() is now fs::type::fs_type_from_magic()
-
- - no need to truncate type_name since they are shorter
-
-2004/07/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/net_monitor: save/restore options
-
-2004/07/26 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/07/26 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/tools.pm: remove unneeded quotes
- let perl-MDK-Common do the quoting
-
-2004/07/26 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/be.po: small fix
-
- * share/po/bn.po: updated Bengali file
-
-2004/07/26 Pixel <pixel at mandrakesoft.com>
-
- * .perl_checker: blacklist Net::DNS (until we get rid of it?)
-
- * authentication.pm: cleanup, fix various typos
- (still, ->target seems broken, but i'm not sure, since i couldn't test)
-
- * tools/make_mdkinst_stage2, install_steps_gtk.pm, docs/README,
- Makefile.config, mdk-stage1/disk.c, pkgs.pm, mdk-stage1/doc/TECH-INFOS,
- share/po/Makefile, install_steps.pm, standalone/drakpxe,
- Makefile.drakxtools, Makefile, mdk-stage1/config-stage1.h, lang.pm,
- tools/Makefile, install2.pm, modules.pm, rescue/Makefile,
- share/advertising/Makefile, mdk-stage1/network.c,
- tools/i386/netboot/menu.lst.example, install_any.pm: adapt to new
- directories layout:
- - Mandrake/mdkinst -> install/stage2/live
- - Mandrake/base/mdkinst_stage2.bz2 ->
- install/stage2/mdkinst_stage2.bz2
- - Mandrake/base/rpmsrate -> media/media_info/rpmsrate
- - Mandrake/RPMS -> media/main
- - images -> install/images
- - isolinux -> install/isolinux
- - Mandrake/share/advertising -> install/extra/advertising
-
- * fs/format.pm: fix typo
-
- * detect_devices.pm: fix getCompaqSmartArray() on 2.6 (since
- /proc/driver/cciss/cciss0 doesn't talk about c0dX anymore)
-
-2004/07/26 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * ugtk2.pm: Redundant line.
-
-2004/07/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakauth, authentication.pm, network/smb.pm: merge auth fixes
- from HEAD
-
-2004/07/26 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/be.po: small fix
-
-2004/07/26 Pixel <pixel at mandrakesoft.com>
-
- * tools/make_mdkinst_stage2, install_steps_gtk.pm, docs/README,
- Makefile.config, mdk-stage1/disk.c, pkgs.pm, mdk-stage1/doc/TECH-INFOS,
- share/po/Makefile, install_steps.pm, standalone/drakpxe,
- Makefile.drakxtools, Makefile, mdk-stage1/config-stage1.h, lang.pm,
- tools/Makefile, install2.pm, modules.pm, rescue/Makefile,
- share/advertising/Makefile, mdk-stage1/network.c,
- tools/i386/netboot/menu.lst.example, install_any.pm: adapt to new
- directories layout:
- - Mandrake/mdkinst -> install/stage2/live
- - Mandrake/base/mdkinst_stage2.bz2 ->
- install/stage2/mdkinst_stage2.bz2
- - Mandrake/base/rpmsrate -> media/media_info/rpmsrate
- - Mandrake/RPMS -> media/main
- - images -> install/images
- - isolinux -> install/isolinux
- - Mandrake/share/advertising -> install/extra/advertising
-
- * fs/format.pm: fix typo
-
-2004/07/23 fisher
-
- * share/po/uk.po: Ukrainian translation update.
-
-2004/07/23 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakconnect: remove useless $lan_button and $host_button in
- old drakconnect
- cosmetics (remove useless blanks at end of line)
- prepare for network::tools::reread_net_conf removal
-
- * network/network.pm: hey, I suck, that's DIAL_ON_IFUP, not DIAL_ON_BOOT
- - introduce ONBOOT and DIAL_ON_BOOT settings for isdn connections
- - write this settings with configureNetwork2, kill the old tweak in
- isdn.pm
- - use the isdn_dial_on_boot step instead of nework_on_boot in
- netconnect.pm
-
- * network/adsl.pm: pptp connections are now handled by pppd (#6515)
-
- * network/isdn.pm:
- - introduce ONBOOT and DIAL_ON_BOOT settings for isdn connections
- - write this settings with configureNetwork2, kill the old tweak in
- isdn.pm
- - use the isdn_dial_on_boot step instead of nework_on_boot in
- netconnect.pm
- FIRMWARE isn't used by ifup-ippp
-
- * network/netconnect.pm: hey, I suck, that's DIAL_ON_IFUP, not
- DIAL_ON_BOOT
- perl_checker compliance
- one more FIXME comment
- - introduce ONBOOT and DIAL_ON_BOOT settings for isdn connections
- - write this settings with configureNetwork2, kill the old tweak in
- isdn.pm
- - use the isdn_dial_on_boot step instead of nework_on_boot in
- netconnect.pm
-
-2004/07/23 Pixel <pixel at mandrakesoft.com>
-
- * fs.pm, fs/format.pm: replace pt_type2name($part->{pt_type}) with
- part2name($part)
- (hoisting the dereferencing {pt_type})
- - move format related functions out of fs.pm to new module
- fs/format.pm
- - remove swap.pm, moving its few functions to fs/format.pm or fs.pm
-
- * diskdrake/hd_gtk.pm, install_any.pm: replace
- pt_type2name($part->{pt_type}) with part2name($part)
- (hoisting the dereferencing {pt_type})
-
- * tools/mkhdlist: obsolete since 4 years
-
- * partition_table.pm: replace pt_type2name($part->{pt_type}) with
- part2name($part)
- (hoisting the dereferencing {pt_type})
- - simplify partition table entry names (based on fdisk's names)
- - rename some internal variables
- old dos is not useful anymore
- simplify
-
- * tools/updatehdlist: remove fpons only tool
-
- * diskdrake/interactive.pm: replace pt_type2name($part->{pt_type}) with
- part2name($part)
- (hoisting the dereferencing {pt_type})
- - move format related functions out of fs.pm to new module
- fs/format.pm
- - remove swap.pm, moving its few functions to fs/format.pm or fs.pm
- fix indentation
-
- * loopback.pm, raid.pm, commands.pm, swap.pm:
- - move format related functions out of fs.pm to new module
- fs/format.pm
- - remove swap.pm, moving its few functions to fs/format.pm or fs.pm
-
-2004/07/23 Vincent Guardiola <vguardiola at mandrakesoft.com>
-
- * authentication.pm: remove print coin and pwet in find_srv_name function
- clean function find_srv_name
- Add "net time set -S $server" to AD et SMBKRB config, for clock sync
- (kerberos require)
-
-2004/07/22 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/network.pm: rewrite read_tmdns_conf to use cat_
- perl_checker/misc fixes
-
-2004/07/22 Pixel <pixel at mandrakesoft.com>
-
- * modules/any_conf.pm: perl_checker enhancement
- add $Id
- modules::modprobe_conf now works (at least a little :)
-
- * fsedit.pm: shorter and faster
- set {is_removable} directly in fsedit::hds()
-
- * modules/modprobe_conf.pm, modules/modules_conf.pm: add $Id
- modules::modprobe_conf now works (at least a little :)
-
- * drakxtools.spec: need latest MDK::Common
-
- * modules.pm: cleanup
- modules::modprobe_conf now works (at least a little :)
-
- * fs.pm: set {is_removable} directly in fsedit::hds()
-
- * detect_devices.pm:
- - isRemovableDrive() removed, partially replaced with may_be_a_hd()
- - the main difference is that isRemovableDrive() checked
- isRemovableUsb() whereas
- may_be_a_hd() allows more usb removable drives
- (esp. memory cards and some usb keys declared as memory cards (0x0c76
- 0x0005))
- simplify
- - re-indent
- - use begins_with()
- more cleanup
- cleanup
- isRemovableDrive() doesn't check isRemovableUsb() anymore allowing more
- usb
- removable drives (esp. some usb keys declared as memory cards (0x0c76
- 0x0005))
-
- * network/network.pm: perl_checker compliance
- - don't use if_() when not needed and strange
- - read_tmdns_conf() now knows which file it reads, don't give it as
- argument
-
-2004/07/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone.pm (rename) only log succesfull renamings
-
- * network/network.pm (read_tmdns_conf) unbreak oblin code
- (read_tmdns_conf) reinsert parameter naming for parameter checking
-
- * drakxtools.spec: bump drakconf conflict due to new drakconnect API
-
-2004/07/21 Pixel <pixel at mandrakesoft.com>
-
- * standalone/drakautoinst: perl_checker fixes
-
- * standalone/drakboot, standalone/drakfloppy: remove unused variable
-
- * standalone/draksec, standalone/drakpxe, network/smb.pm: perl_checker
- compliance
-
- * harddrake/autoconf.pm, standalone/service_harddrake: use
- do_pkgs_standalone->new instead of class_discard
- - %modules::conf is no more a global, so many functions need passing
- $modules_conf
- - $modules_conf is a class choosing modules.conf or modprobe.conf
- (esp. useful after install) (but not working yet!)
- - modules::load() doesn't use $modules_conf, use
- modules::load_and_configure()
- - modules::load() doesn't allow options, use either
- modules::load_raw() or modules::load_and_configure()
- - some functions used to want an array ref for modules options and
- some a string, now every functions use a string
- - many functions (like modules::get_alias()) are now methods on
- $modules_conf
- - some functions in mouse.pm needed a $in where a $do_pkgs is enough
- - some perl_checker compliance
- - small fixes
-
- * do_pkgs.pm:
- - do_pkgs_standalone->new doesn't *need* a $in anymore
- - ->in replace ->{in} so that it can be created on demand (ugly,
- but...)
- ->{in}->do_pkgs gives the same kind of object, removing it
-
- * standalone/XFdrake: XFdrake doesn't modify modules_conf! (or does it?)
-
- * network/network.pm, install_steps.pm, network/isdn.pm,
- install_steps_interactive.pm, network/netconnect.pm, mouse.pm,
- install2.pm, modules/modprobe_conf.pm, harddrake/v4l.pm,
- modules/interactive.pm, standalone/mousedrake, commands.pm,
- printer/detect.pm, printer/main.pm, standalone/printerdrake,
- harddrake/sound.pm, install_steps_auto_install.pm, network/ethernet.pm,
- modules/any_conf.pm, standalone/drakconnect, modules/modules_conf.pm,
- standalone/drakgw, harddrake/data.pm, network/adsl.pm,
- detect_devices.pm, modules.pm, network/shorewall.pm, network/tools.pm,
- Xconfig/default.pm, standalone/draksound, install_any.pm,
- printer/printerdrake.pm, standalone/drakxtv:
- - %modules::conf is no more a global, so many functions need passing
- $modules_conf
- - $modules_conf is a class choosing modules.conf or modprobe.conf
- (esp. useful after install) (but not working yet!)
- - modules::load() doesn't use $modules_conf, use
- modules::load_and_configure()
- - modules::load() doesn't allow options, use either
- modules::load_raw() or modules::load_and_configure()
- - some functions used to want an array ref for modules options and
- some a string, now every functions use a string
- - many functions (like modules::get_alias()) are now methods on
- $modules_conf
- - some functions in mouse.pm needed a $in where a $do_pkgs is enough
- - some perl_checker compliance
- - small fixes
-
-2004/07/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * .perl_checker: blacklist URPM::Resolve
-
- * standalone/drakauth: perl_checker fix
-
- * lang.pm: fix xmodifiers setting which is broken since
- perl-MDK-Common-1.1.13-1mdk
-
- * drakxtools.spec: 10-57mdk
- bump requires on perl-MDK-Common b/c of localedrake vs CJK issue
-
-2004/07/21 Vincent Guardiola <vguardiola at mandrakesoft.com>
-
- * authentication.pm: Add service smb et winbind restart in smbkrb config
-
-2004/07/20 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/tools.pm: merge netconnect::load_conf in netconnect::read_conf
- (and replace all calls to lload_conf with read_conf, remove all previous
- calls to read_conf)
- don't probe again connection type here since now
- network::netconnect::load_conf does it as intended initially
-
- * install_steps_interactive.pm: use correct method variable in chooseCD
- (even if this code is used only in expert
- mode which isn't anymore supported)
-
- * network/netconnect.pm: fix perl_checker combo (yeah)
- oops, fix suckiness
- use read_net_conf to avoid code duplication
- merge netconnect::load_conf in netconnect::read_conf (and replace all
- calls to lload_conf with read_conf, remove all previous calls to
- read_conf)
- unused variable
- don't forget to send $netcnx to network::network::read_all_conf ...
- (or else we won't get back the probed connection type)
-
- * standalone/draksound: do not probe devices twice (and avoid to grep on
- detect_devices::probeall()), cosmetics
-
- * standalone/net_monitor: merge netconnect::load_conf in
- netconnect::read_conf (and replace all calls to lload_conf with
- read_conf, remove all previous calls to read_conf)
- cosmetics
- do not allocate new Gtk2::Gdk::GC at each redraw (last memory leak
- fixed ?)
- use the power of the Gtk2::Dialog widget, thus giving change_color()
- more luck to succeed
- translate connection type (Fabrice Facorat)
- fix spacing (from Fabrice Facorat, #10300), remove blank line
-
- * standalone/drakconnect: maxi perl_checker compliance combo
- do not read conf in add_intf, this is already done by the netconnect
- wizard
- merge netconnect::load_conf in netconnect::read_conf (and replace all
- calls to lload_conf with read_conf, remove all previous calls to
- read_conf)
-
-2004/07/20 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/translation_size.pl, share/po/be.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/he.po, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/ltg.po, share/po/nb.po,
- share/po/ky.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/uk.po, share/po/mn.po, share/po/am.po, lang.pm,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/fur.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/ta.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/validate.pl, share/po/eo.po,
- share/po/bg.po, share/po/cs.po, share/po/el.po, share/po/uz@Latn.po:
- changed MandrakeSoft -> Mandrakesoft
-
-2004/07/20 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: remove debugging code
-
- * authentication.pm, install_steps_gtk.pm: perl_checker compliance
-
- * mdk-stage1/dns.c, mdk-stage1/pcmcia_/cardmgr.c, standalone/drakfirewall,
- share/advertising/pwp-02.pl, rescue/restore_ms_boot,
- mdk-stage1/mkinitrd_helper/mkinitrd_helper.c, tools/genmodparm,
- tools/gencryptofiles, rescue/tree/sbin/fakeshutdown, standalone/drakpxe,
- mdk-stage1/config-stage1.h, standalone/drakvpn, standalone/drakboot,
- standalone.pm, mdk-stage1/init-libc-headers.h, standalone/drakTermServ,
- mdk-stage1/mar/mar-frontend.c, mdk-stage1/probing.h,
- standalone/drakbackup, mdk-stage1/pcmcia_/probe.c,
- mdk-stage1/insmod-busybox/insmod-frontend.c,
- tools/serial_probe/serial_probe.c, mdk-stage1/disk.h,
- mdk-stage1/modules.c, mdk-stage1/mount.c, standalone/printerdrake,
- standalone/fileshareset, standalone/drakedm, mdk-stage1/modules.h,
- share/advertising/dwd-01.pl, mdk-stage1/mar/mar.h,
- share/advertising/dis-01.pl, standalone/drakhelp, standalone/XFdrake,
- mdk-stage1/insmod.h, mdk-stage1/rp-pppoe/src/Makefile,
- mdk-stage1/pcmcia_/pcmcia.h, standalone/drakupdate_fstab,
- mdk-stage1/bzlib/Makefile, scanner.pm, mdk-stage1/Makefile.common,
- mdk-stage1/stdio-frontend.c, standalone/drakproxy,
- tools/ppc/mkINSTALLCD, share/advertising/dwd-06.pl,
- mdk-stage1/rescue-gui.c, mdk-stage1/nfsmount.c, mdk-stage1/network.h,
- mdk-stage1/doc/README, mdk-stage1/log.h, standalone/drakfloppy,
- mdk-stage1/newt/Makefile, standalone/drakfont,
- mdk-stage1/newt-frontend.c, share/advertising/ppp-01.pl,
- rescue/tree/etc/profile, share/advertising/dis-09.pl,
- mdk-stage1/network.c, mdk-stage1/disk.c, rescue/guessmounts,
- mdk-stage1/url.c, standalone/logdrake, mdk-stage1/automatic.h,
- mdk-stage1/frontend.h, mdk-stage1/insmod-modutils/insmod-frontend.c,
- rescue/lsparts, mdk-stage1/usb-resource/Makefile, mdk-stage1/url.h,
- mdk-stage1/probing.c, mdk-stage1/mar/mar-extract-only.h,
- mdk-stage1/cdrom.c, mouse.pm, mdk-stage1/lomount.h, mdk-stage1/dhcp.h,
- standalone/net_monitor, mdk-stage1/stage1.c, diskdrake/diskdrake.html,
- mdk-stage1/dhcp.c, mdk-stage1/init.c, mdk-stage1/pci-resource/Makefile,
- mdk-stage1/mkinitrd_helper/Makefile, install2, mdk-stage1/Makefile,
- rescue/install_bootloader, mdk-stage1/lomount.c, mdk-stage1/adsl.h,
- share/advertising/ppp-09.pl, mdk-stage1/adsl.c, mdk-stage1/dns.h,
- mdk-stage1/automatic.c, mdk-stage1/mar/mar-extract-only.c,
- standalone/drakconnect, tools/shift_img.c, standalone/drakbug,
- tools/make_lang_png_transparent.c, mdk-stage1/frontend-common.c,
- standalone/draksound, standalone/drakxtv, mdk-stage1/tools.h,
- share/compssUsers.server, mdk-stage1/slang/Makefile,
- mdk-stage1/minilibc.h, standalone/drakautoinst, mdk-stage1/cdrom.h,
- mdk-stage1/Makefile.mkinitrd_helper, mdk-stage1/stage1.h,
- standalone/diskdrake, mdk-stage1/doc/documented..frontend.h,
- mdk-stage1/mount.h, mdk-stage1/directory.c, rescue/drvinst,
- mdk-stage1/mar/Makefile, mdk-stage1/directory.h, mdk-stage1/log.c,
- install_messages.pm, mdk-stage1/modules_descr.h, standalone/drakgw,
- mdk-stage1/pcmcia_/Makefile, mdk-stage1/tools.c,
- share/advertising/pwp-01.pl, tools/syncrpms,
- share/advertising/pwp-08.pl, mdk-stage1/ppp/pppd/Makefile,
- standalone/scannerdrake, mdk-stage1/minilibc.c: MandrakeSoft ->
- Mandrakesoft
-
- * share/list: adapt to file renaming
-
-2004/07/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * authentication.pm: better looking wizard
-
- * lang.pm (write) better check parameter rather than EUID
- (write) do not bother trying to write /etc/menu-methods/lang.h when
- run as a user
-
- * standalone/drakauth: better looking wizard
- put help out of the radiobutton
-
-2004/07/20 Vincent Guardiola <vguardiola at mandrakesoft.com>
-
- * authentication.pm: remove ask_warn winbind or SFU and add new entry in
- kinds
- Add desciption for authentification type
- Add Entry for IDMAP
- clean code
-
- * standalone/drakauth: Add type => 'list' in ask_from
-
-2004/07/20 Pixel <pixel at mandrakesoft.com>
-
- * share/list: adapt to file renaming
-
- * bootloader.pm: remove debugging code
-
-2004/07/20 Vincent Guardiola <vguardiola at mandrakesoft.com>
-
- * authentication.pm: clean code
-
-2004/07/19 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/net_monitor: use run_program, try to handle default interface
- better
- disable the connect button if up interface is found (there is
- currently no reliable way to find the gateway interface)
- code factorization, do not use system() but fork() and exec() since we
- don't
- want to wait the command to return
- perl_checker compliance
- use ifup/ifdown to connect/disconnect
- no need to be root to monitor connection
-
- * network/netconnect.pm: use hotplug blacklist for adsl connections too
-
- * network/network.pm: do not write wireless encryption key if empty
-
- * network/tools.pm: make the tcp ping actually work
-
-2004/07/19 Pixel <pixel at mandrakesoft.com>
-
- * install_steps.pm: don't bootloader::suggest_floppy
-
- * bootloader.pm: don't bootloader::suggest_floppy
- don't unset prompt when timeout is undefined (and don't care when
- timeout is 0)
-
- * pkgs.pm: perl_checker compliance
- add multimedia kernel in analyse_kernel_name
-
- * tools/hd_grub.cgi, docs/README, rescue/rescue-doc,
- rescue/tree/etc/issue, rescue/lsparts, docs/HACKING,
- mdk-stage1/doc/README: replace "Mandrake Linux" with "Mandrakelinux"
-
- * standalone/bootloader-config: also add long name when adding add short
- name
-
-2004/07/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10-56mdk
- fix changelog
- merge changelog from the real update
-
- * share/po/br.po: update
-
- * standalone/net_monitor: unsensitive buttons immediatly once ifup/isdown
- has completed
-
-2004/07/19 Vincent Guardiola <vguardiola at mandrakesoft.com>
-
- * authentication.pm: modify nss_path one to sub
- config winbind for AD
-
- * network/smb.pm: Add function write_smb_ads_conf
-
-2004/07/18 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: save the previous bootloader config file (bugzilla
- #10072)
-
-2004/07/17 Daouda Lo <daouda at mandrakesoft.com>
-
- * pam.net_monitor, drakxtools.spec, apps.net_monitor, Makefile: remove
- historical consolehelper files (pam.d and console.apps)
-
-2004/07/16 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/tools.pm: use a tcp ping in check_link_beat if not root
-
- * wizards.pm: do not ask to install already installed packages, prefer to
- install
- uninstalled packages (misc)
-
- * install_steps_gtk.pm: fix predicted time when there is an error
- installing packages
-
-2004/07/15 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/net_monitor: add a border spacing of 5 pixel (fix #10299,
- from Fabrice Facorat)
-
- * drakxtools.spec: 10-54mdk
-
-2004/07/15 Pixel <pixel at mandrakesoft.com>
-
- * fsedit.pm: change_pt_type() must return a boolean value
-
- * standalone/bootloader-config: make_boot_splash is no good since the same
- initrd is used with or without vga=,
- so call add_boot_splash directly
-
- * bootloader.pm: make_boot_splash is no good since the same initrd is used
- with or without vga=,
- so call add_boot_splash directly
- alt_xxx instead of old_xxx for bootloader labels (as suggested by
- Svetoslav Slavtchev on cooker)
-
- * diskdrake/interactive.pm: encryption key length can now be lower than
- 20, allowing >= 6
-
-2004/07/14 Olivier Blin <oblin at mandrakesoft.com>
-
- * install_steps_interactive.pm: to_bool is what I was looking for, thanks
- Pixel
- perl_checker fix, I should have done it before ...
- automatically detect which media are available in install from ISO
- images
-
- * install_any.pm: remove unneeded return
- automatically detect which media are available in install from ISO
- images
-
- * standalone/drakboot: use bootloader and Xconfig instead of
- detect-resolution
-
-2004/07/13 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/network.c: umount nfs directory if an error occurs too
- fix segfault when hostname resolves as weird name without any dot (for
- example 24.159.64.20 resolves as TN-JACKSN-NR1) and abort domain name
- guess in this case
-
- * standalone/net_applet: apply Pixel's suggestion, use //m instead of
- foreach
-
- * mdk-stage1/directory.c: don't forget to umount ISO images
- it is again stupid to use a ramdisk if the install location isn't
- mounted by loopback
-
-2004/07/13 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bn.po, share/po/fur.po: Added Bengali and Furlan files
-
-2004/07/13 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * pkgs.pm: Some factorization. Protection against /var/lib/urpmi being a
- dangling symlink (see bug #9934)
-
-2004/07/13 Warly <warly at mandrakesoft.com>
-
- * share/logo-mandrake.png: cooker logo
-
-2004/07/12 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/07/12 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/net_applet: perl_checker fixes
- add a "monitor network" menu item that launches net_monitor
- use drakconnect to configure network
- use 'ip route show' to find the gateway device when no GATEWAYDEV is
- defined
-
-2004/07/12 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm (sort_hds_according_to_bios): when installing on floppy,
- $boot_hd is undefined, but that's ok (bugzilla #10260)
-
- * authentication.pm:
- - add "Active Directory" through winbind (it needs more stuff to work)
- - drop using $val, use directly $authentication->{XXX}
-
-2004/07/09 Pixel <pixel at mandrakesoft.com>
-
- * lang.pm: replace lang::get_unneeded_png_lang_files() with
- lang::png_lang_files
-
- * share/list: unicore/PVA.pl is needed
- - adapt to new perl
- - use "*" instead of PERL_VERSION to be more versatile
-
- * rescue/make_rescue_img, rescue/list: use "*" instead of PERL_VERSION in
- list, but ensure only one match
-
- * install_steps.pm: fix commit 1.685: use lang::analyse_locale_name() but
- still use lang::l2locale()
-
- * Makefile: replace lang::get_unneeded_png_lang_files() with
- lang::png_lang_files
- ensure "*" to wildcard a directory in share/list match only once
-
- * tools/Makefile: ask perl where to find package.pm and URPM.pm, this is
- more versatile than using installvendorlib
-
- * install2.pm: fix mounting /sys (why did i switch to using syscall_
- 'mount' directly? and with missing parameters!)
-
- * any.pm: add "ls -l /sys/bus/scsi/devices" in report.bug
- (it helps for debugging getSCSI on 2.6)
-
-2004/07/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * tools/cvslog2changelog.pl: sort
- add Robert Vojta
-
-2004/07/09 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: fix mounting /sys (why did i switch to using syscall_
- 'mount' directly? and with missing parameters!)
-
- * any.pm: add "ls -l /sys/bus/scsi/devices" in report.bug
- (it helps for debugging getSCSI on 2.6)
-
-2004/07/08 keld
-
- * share/po/da.po: updates
- soft/drakcronat/po/da.po soft/drakfax/po/da.po
- soft/GtkMdkWidgets/po/da.po soft/mdkonline/po/da.po
- soft/rpmdrake/po/da.po soft/urpmi/po/da.po
- gi/perl-install/share/po/da.po
- soft/galaxy/thememdk/mandrake_client/po/da.po
-
-2004/07/08 Pixel <pixel at mandrakesoft.com>
-
- * modules.pm: handle s/snd-card/snd/g and
- s/snd-via686|snd-via8233/snd-via82xx/g more generically
- in mergein_conf(), get the "above" value, and don't dirty "probeall"
- rename load_raw() to load_raw_install() and change the prototype
- cleanup
- - create when_load_category()
- - replace regexp [uo]hci on module name with testing category
- "bus/usb"
- - move the special case imm ppa from when_load() to load()
- fix previous commit
- - generalize the snd-pcm-oss case
- - cleanup
- - rename add_alias() into set_alias()
- - create set_sound_slot() and use it
- don't remove "above ... snd-pcm-oss" for the old alias, it's better done
- explictly, and already done by remove_module()
-
- * install_steps_interactive.pm:
- - create X_options_from_o() and use it
- - add freeDriver boot option
- when adding users during install, suggest the user names found in /home
-
- * Xconfig/card.pm, install2.pm, install_steps.pm, install_any.pm:
- - create X_options_from_o() and use it
- - add freeDriver boot option
-
- * lang.pm: merge with MDK-10-update Move changes
-
- * any.pm: fix typo
- merge "language choice dialog" from MDK-10-update
- selectCountry doesn't really need a $o, a $in is enough
- when adding users during install, suggest the user names found in /home
-
- * network/adsl.pm, harddrake/sound.pm, detect_devices.pm,
- network/ethernet.pm:
- - rename add_alias() into set_alias()
- - create set_sound_slot() and use it
-
- * standalone/adduserdrake: when adding users during install, suggest the
- user names found in /home
-
-2004/07/08 rvojta
-
- * standalone/drakedm:
- - typo fix (lost -> lose)
-
-2004/07/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * tools/cvslog2changelog.pl: add vincent
-
- * drakxtools.spec: 10-53mdk final
-
- * standalone/drakedm: warn the user before dm exit will kill the session
- (Robert Vojta, #10179)
-
-2004/07/07 Pixel <pixel at mandrakesoft.com>
-
- * mouse.pm: fix comment
- modules::mergein_conf() doesn't need to be given /etc/modules.conf
- => prepare for reading either modprobe.conf or modules.conf based on the
- running kernel version
-
- * install_steps.pm, install_steps_interactive.pm, install_any.pm:
- - move configure_pcmcia() and write_pcmcia() out of modules.pm to
- install_any.pm
- - load pcmcia_core, $pcic and ds in one call to modules::load
- - don't pass prefix to write_pcmcia()
-
- * modules.pm: fix indentation
- modules::mergein_conf() doesn't need to be given /etc/modules.conf
- => prepare for reading either modprobe.conf or modules.conf based on the
- running kernel version
- modules::mergein_conf() doesn't need to be given /etc/modules.conf
- => prepare for reading either modprobe.conf or modules.conf based on the
- running kernel version
- remove non-useful prototypes ($)
- use the module category to decide if it needs alias usb-interface or
- alias ieee1394-controller
- fix typo
- - restrict view of %mappings_24_26 and %mappings_26_24 to modules.pm
- - simplify mapping_24_26(), it now takes only one module name, not a
- list
- - simplify mapping_26_24(), the special case is handled properly in
- %mappings_26_24
- - move configure_pcmcia() and write_pcmcia() out of modules.pm to
- install_any.pm
- - load pcmcia_core, $pcic and ds in one call to modules::load
- - don't pass prefix to write_pcmcia()
- create write_preload_conf()
-
- * standalone/XFdrake: modules::mergein_conf() doesn't need to be given
- /etc/modules.conf
- => prepare for reading either modprobe.conf or modules.conf based on the
- running kernel version
- modules::mergein_conf() doesn't need to be given /etc/modules.conf
- => prepare for reading either modprobe.conf or modules.conf based on the
- running kernel version
-
- * standalone/printerdrake, standalone/service_harddrake,
- network/ethernet.pm, harddrake/data.pm, network/netconnect.pm,
- install2.pm, modules/interactive.pm, standalone/mousedrake,
- standalone/draksound, standalone/drakxtv: modules::mergein_conf()
- doesn't need to be given /etc/modules.conf
- => prepare for reading either modprobe.conf or modules.conf based on the
- running kernel version
-
-2004/07/07 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Merge fixes from Anthill 927, 929.
- (filenames with spaces, .backupignore, gui behavior)
- Merge fixes from Anthill 927, 929
- (filenames with spaces, .backupignore, gui issues)
-
-2004/07/06 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakboot: update bootsplash even if framebuffer was disabled
-
- * mdk-stage1/config-stage1.h: add missing slash in Mandrake Move image
- location
-
-2004/07/06 Pixel <pixel at mandrakesoft.com>
-
- * mdk-stage1/config-stage1.h: fix blino fix
- doing basename is dumb (is blino too?), really make the symlink relative
-
- * mdk-stage1/disk.c:
- - when the directory is bad, go back to choose another directory
- instead of choosing another device
- (you can still use "Cancel" to choose another device)
- - list files in directory given, not the root directory of the device
-
- * standalone/bootloader-config: fix typo
- - nicer "usage: ..."
- - add actions "add-entry" and "remove-entry"
- - add option --label
- - add option --chainload
- - rename --vmlinuz to --image
-
- * bootloader.pm: remove unneeded spaces in append=" foo"
- write_lilo handles "optional"
- rename var
- cleanup
- cleanup
-
- * mdk-stage1/directory.c: doing basename is dumb (is blino too?), really
- make the symlink relative
-
- * Xconfig/xfree.pm: add 1024x480 (part of bugzilla #5192)
-
- * Xconfig/resolution_and_depth.pm: rename function $set_chosen_x_res to
- $set_chosen_resolution (since it sets both)
- (choose_gtk): ensure default height is the chosen one
-
-2004/07/06 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * c/stuff.xs.pl: workaround blind gwenole
- workaround build with new kernels
-
- * standalone/service_harddrake: high level explanation
-
- * drakxtools.spec: 10-53mdk
-
-2004/07/06 Pixel <pixel at mandrakesoft.com>
-
- * mdk-stage1/disk.c:
- - when the directory is bad, go back to choose another directory
- instead of choosing another device
- (you can still use "Cancel" to choose another device)
- - list files in directory given, not the root directory of the device
-
- * mdk-stage1/config-stage1.h, mdk-stage1/directory.c: doing basename is
- dumb (is blino too?), really make the symlink relative
-
-2004/07/06 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/service_harddrake: high level explanation
-
-2004/07/05 jjorge
-
- * share/po/pt.po: rush to beta one man
-
-2004/07/05 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/network.c: properly handle error return code in nfs install
-
- * install_any.pm: allow medium change in nfs-iso install
-
- * standalone/net_monitor: try to use $default_intf (and fix the last
- perl_checker warning, yeah)
- perl_checker compliance
- rename $echr and $echt to $scale_r and $scale_t
- remove unused variable $type
-
-2004/07/05 Pixel <pixel at mandrakesoft.com>
-
- * log.pm: use $LOG instead of *LOG
-
- * standalone/draksec: fix #-PO: comment
-
- * install_steps.pm: big renaming of field {type} to {pt_type},
- this will allow defining {fs_type} which will always be a string
- whereas {pt_type} will always be a number
- allow getpwnam, getgrnam, getgrid to work
-
- * any.pm, partition_table/mac.pm, partition_table/bsd.pm,
- partition_table/dos.pm, diskdrake/removable.pm, partition_table/sun.pm,
- partition_table/gpt.pm, install_steps_interactive.pm, network/smbnfs.pm,
- diskdrake/dav.pm, diskdrake/hd_gtk.pm, lvm.pm, raid.pm,
- install_interactive.pm, install_any.pm, partition_table/raw.pm,
- partition_table.pm: big renaming of field {type} to {pt_type},
- this will allow defining {fs_type} which will always be a string
- whereas {pt_type} will always be a number
-
- * drakxtools.spec: drakxtools-backend needs ldetect-lst (for
- complete_usb_storage_info())
-
- * fsedit.pm: big renaming of field {type} to {pt_type},
- this will allow defining {fs_type} which will always be a string
- whereas {pt_type} will always be a number
- create rationalize_options() and use it (bugzilla #3525)
- more checks should be done in this function, and used at more places
- (but where?)
-
- * bootloader.pm: big renaming of field {type} to {pt_type},
- this will allow defining {fs_type} which will always be a string
- whereas {pt_type} will always be a number
- drop "other" entries in grub conf when the device is unknown
- - handle missing root=/dev/xxx kernel commandline parameter
- - handle grub splashimage option
- oops, revert debugging code
-
- * standalone/bootloader-config: drop --no-link option (already replaced by
- --no-short-name)
- - new option --no-short-name which implies no short labels (usually
- vmlinuz) and no symlinks (usually /boot/vmlinuz)
- - rename --no-link to --no-short-name (keeping compatibility for a few
- days)
-
- * fs.pm: big renaming of field {type} to {pt_type},
- this will allow defining {fs_type} which will always be a string
- whereas {pt_type} will always be a number
- create rationalize_options() and use it (bugzilla #3525)
- more checks should be done in this function, and used at more places
- (but where?)
- don't set {major} and {minor} to 0 when the device doesn't exist
-
- * diskdrake/interactive.pm: fix function call
- big renaming of field {type} to {pt_type},
- this will allow defining {fs_type} which will always be a string
- whereas {pt_type} will always be a number
-
-2004/07/03 jjorge
-
- * share/po/pt.po: saraiva esta rapido ;-)
-
-2004/07/03 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: fix typo
-
-2004/07/02 fisher
-
- * share/po/uk.po: Ukrainian translation update.
-
-2004/07/02 Olivier Blin <oblin at mandrakesoft.com>
-
- * network/adsl.pm: remove spurious '"pty ', I suck
- pptp support (partial fix for #6515)
-
-2004/07/02 Pixel <pixel at mandrakesoft.com>
-
- * drakxtools.spec: ensure proper upgrade: explictly tell urpmi that old
- drakxtools-newt conflicts with drakxtools-backend
-
- * authentication.pm: cleanup
-
-2004/07/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10-52mdk
-
- * lang.pm: switch to new japanese fonts (UTUMI Hirosi
- <utuhiro78@yahoo.co.jp>)
- (write) let be aware of install mode
- (write) configure menu-method's language too so that altering language
- is done for KDE menu entries too (instead of just programs' messages)
-
-2004/07/02 vguardiola
-
- * authentication.pm: Add anonymous bind
- remove anonymous entry
- add libsasl2-plug-gssapi when AD is selected
- Change SSL/TLS to SSL or TLS
- add uc_domain to realm section in /etc/krb5.conf
- padbol
-
-2004/07/01 Olivier Blin <oblin at mandrakesoft.com>
-
- * any.pm: add fluxbox in known window managers list
-
- * mdk-stage1/network.c: rephrase previous patch, with correct indentation
- this time
- add a slash at beginning of the given directory if not already present
- (ftp and http install)
-
-2004/07/01 Pixel <pixel at mandrakesoft.com>
-
- * lang.pm: default consolefont is lat0-16, no more lat0-sun16
-
- * authentication.pm, bootloader.pm: fix typo
-
- * standalone/draksplash, standalone/printerdrake, standalone/logdrake,
- standalone/draksec, standalone/drakfloppy, standalone/drakfont,
- standalone/drakbug, standalone/drakperm, standalone/harddrake2,
- standalone/drakTermServ, standalone/net_monitor, standalone/drakclock,
- standalone/drakups: revert ugly code printing "This program cannot be
- run in console mode",
- it is easily done in ugtk2.pm
-
- * Xconfig/xfree.pm: fix typo causing multiple "Keyboard" entries in
- XF86Config (bugzilla #10163)
-
- * drakxtools.spec: create package drakxtools-backend
-
- * mdk-stage1/modules.c, install2.pm: stage1 used to write files
- /tmp/network, /tmp/ifcfg-eth0, /etc/modules.conf
- but those files are in /stage1 after pivot rooting, so:
- - write modules.conf in /tmp instead of /etc
- - cp those files from /stage1/tmp to /tmp before umounting /stage1
-
-2004/07/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm, standalone/harddrake2: typo fix
-
- * drakxtools.spec: add bug reference
- 10-50mdk
-
-2004/06/30 fisher
-
- * share/po/uk.po: Ukrainian translation update
- Sync'ed with .pot
-
-2004/06/30 fwang
-
- * share/po/zh_CN.po: update
-
-2004/06/30 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/net_monitor: try to display arrows closely to transmission
- values
- always draw an arrow next to transmitted amount
- always display a speed label for transmitted graph
- allow the user to use different scales for received and transmitted
- prepare code to use distinct scales for received and transmitted
- remove most magic numbers, prefer usage of $width and $height
-
-2004/06/30 Pixel <pixel at mandrakesoft.com>
-
- * ugtk2.pm: use print + exit instead of die
- (so that standalone tools don't need to do it by hand)
-
- * standalone/bootloader-config: when doing update_splash or remove_splash,
- call when_config_changed (mainly for lilo)
- please perl_checker
-
- * network/smb.pm: shut up "smbclient -L"
-
- * authentication.pm: for Active Directory, allow: Kerberos, SSL/TLS,
- simple and anonymous
-
-2004/06/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakfloppy (build_it) add translator hint
-
- * standalone/net_monitor: fix button layout
-
-2004/06/29 fisher
-
- * share/po/uk.po: translation update
-
-2004/06/29 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/network.c: properly handle "back" behavior in mirror list
- step
- do not unset automatic if mirror list selection fails, we know it wasn't
- automatic at that point
- remove http proxy settings from interface structure, that was really
- dumb
- allow to use a specific ACNAME for pppoe connections
-
- * standalone/drakupdate_fstab: use fsedit::is_same_hd in drakupdate_fstab
- and revert previous change in fs::subpart_from_wild_device_name (do not
- fill both devfs_device and device fields)
-
- * fs.pm: use fsedit::is_same_hd in drakupdate_fstab and revert previous
- change in fs::subpart_from_wild_device_name (do not fill both
- devfs_device and device fields)
- do not add default device in device hash, it will be filled with result
- from fs::subpart_from_wild_device_name
- always update $part{device} in fs::subpart_from_wild_device_name because
- /dev is stripped (fix #6982, #10175)
-
- * mdk-stage1/tools.c, mdk-stage1/directory.c, mdk-stage1/probing.c:
- variable declaration fixes (spotted by neofutur)
-
- * mdk-stage1/network.h: remove http proxy settings from interface
- structure, that was really dumb
- allow to use a specific ACNAME for pppoe connections
-
- * mdk-stage1/adsl.c: allow to use a specific ACNAME for pppoe connections
-
-2004/06/29 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/uz.po, share/po/et.po, share/po/uz@Latn.po: updated Estonian
- and Uzbek files
-
-2004/06/29 Pixel <pixel at mandrakesoft.com>
-
- * fsedit.pm: in is_same_hd(), both hds can have {device} unset, it doesn't
- mean they are the same
-
- * drakxtools.spec:
- - add bootloader-config (used by bootloader-utils and bootsplash
- scripts)
- - drakboot (pixel):
- o major backend rewrite b/c of code sharing with new installkernel
- o when adding a new kernel, have a nicer new name for conflicting
- entry
- o when modifying kernel parameters in all entries, skip the
- "failsafe" entry (#10143)
- o when modifying a symlink, ensure we also use the long name for the
- old symlink in the existing entries
- - drakconnect (Olivier Blin):
- o never disable "DHCP host name" entry box, it shouldn't be linked
- with "Assign host name from DHCP address" checkbox (#2759, #9981)
- o unblacklist sis900 since its link beat detection works with latest
- kernels
- - draksound: remove unneeded "above" lines in modules::write_conf
- (Olivier Blin) (#8288)
- - ugtk2 layer: catch missing wizard pixmap, otherwise we end up with
- unshown windows and error messages can't pop up (pixel)
- - don't require mkbootdisk
-
- * Makefile: add missing share/net_monitor.desktop
-
- * bootloader.pm:
- - mkinitrd() calls make-boot-splash after building the initrd
- (since /sbin/mkinitrd doesn't do it anymore)
- - change mkinitrd() parameters
- - change add_kernel() parameters and add option b_no_initrd
- (it is available in installkernel though i suspect it is unused)
- - after reading config file, get {perImageAppend} and {default_vga}
- (it was only done for lilo and {perImageAppend})
- - keep the current kernel for linux-nonfb too (it was only done for
- failsafe)
- - add create_link_source(), action(),
- when_config_changed_{lilo,grub,yaboot}
- - create write_yaboot()
-
- * Makefile.config, standalone/bootloader-config: add bootloader-config
- (tested for adding and removing in simple cases)
-
- * .perl_checker: add "Getopt::Long" (used by bootloader-config)
-
-2004/06/28 Pixel <pixel at mandrakesoft.com>
-
- * share/rpmsrate: fix titi's regexp for matching centrino
-
- * any.pm: don't set ICEAUTHORITY using $ENV{HOME} for kde (bugzilla
- #10144)
-
- * bootloader.pm: after install, when modifying kernel parameters in all
- entries, skip the "failsafe" entry
- (bugzilla #10143)
-
- * ugtk2.pm: make perl_checker a little more happy
- catch missing wizard pixmap, otherwise we end up with WizardWindow being
- non
- shown and error messages can't pop up
- disallow switching to expert mode using Alt-e
-
-2004/06/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * c/Makefile.PL: drop useless linkage since X11 stuff was split out of c
- module
-
-2004/06/25 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/directory.c: fix typo
- do not use ramdisk in nfs install
- add missing include for basename()
- use relative symlink to image location in disk/nfs install, to have a
- working stage2
-
-2004/06/25 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: remove deprecated rhimage symlink
-
- * bootloader.pm: when adding a new kernel, have a nicer new name for
- conflicting entry
- when modifying a symlink, ensure we also use the long name for the old
- symlink in the existing entries
-
- * install_steps.pm: fix blino stage1 change (i think he likes breaking
- things ;p)
- bootloader::add_kernel() do a good job at replacing symlinks with the
- real
- kernel/initrd file name, so don't need to do it here
-
- * install_any.pm: use internal_error() instead of die'ing with no
- arguments
- fix blino stage1 change (i think he likes breaking things ;p)
-
-2004/06/25 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/directory.c: fix typo
- do not use ramdisk in nfs install
- add missing include for basename()
- use relative symlink to image location in disk/nfs install, to have a
- working stage2
-
- * mdk-stage1/network.c: unset automatic in ftp/http install when ramdisk
- can't be loaded
- use new http_proxy variables instead of the old answers (not anymore
- available)
-
- * network/netconnect.pm: never disable "DHCP host name" entry box, it
- shouldn't be linked with ""Assign host name from DHCP address" checkbox
- (#2759, #9981)
- unblacklist sis900 since its link beat detection works with latest
- kernels
-
-2004/06/25 Pixel <pixel at mandrakesoft.com>
-
- * standalone/drakTermServ: simplify using new bootloader.pm
-
- * Xconfig/various.pm, any.pm, standalone/drakboot: adapt to new
- bootloader.pm
-
- * bootloader.pm: when adding a new kernel, have a nicer new name for
- conflicting entry
- when modifying a symlink, ensure we also use the long name for the old
- symlink in the existing entries
- fix 2 typos
- drop obsolete function
- drop obsolete lnx4win_file()
- major cleanup and rewrite
- - some functions have been renamed
- - some functions have changed prototype
- - no more bootloader::vga_modes, we use
- Xconfig::resolution_and_depth::bios_vga_modes()
- - no more detectloader, it is now detect_main_method(),
- but notice that bootloader::read() + bootloader::write() abstract all
- this!
- - update_for_renumbered_partitions() is surely broken :)
- - sort_hds_according_to_bios() and mixed_kind_of_disks() uses new
- function hd2bios_kind()
- - new data structure "kernel_str"
- - lilo doesn't need so much help as it used to be, so don't put as
- much
- "disk=/dev/sda bios=0x80" as before
- some goals:
- - don't rely on device names
- (this allows not to care too much about devfs vs udev vs ...)
- - kernels can be named something else than /boot/vmlinuz*,
- please use the various functions to construct the initrd file name,
- the symlink name...
-
- * fs.pm:
- - enhance subpart_from_wild_device_name() to handle "sda" the same as
- "/dev/sda" (when /dev/sda exists)
- - new function device2part() which uses subpart_from_wild_device_name
- and the
- given fstab to convert the device name to the corresponding structure
- (this allows not relying too much on the device name)
-
- * install2.pm: remove deprecated rhimage symlink
-
- * install_steps.pm: fix blino stage1 change (i think he likes breaking
- things ;p)
- bootloader::add_kernel() do a good job at replacing symlinks with the
- real
- kernel/initrd file name, so don't need to do it here
- adapt to new bootloader.pm
-
- * install_any.pm: use internal_error() instead of die'ing with no
- arguments
- fix blino stage1 change (i think he likes breaking things ;p)
- - adapt to new bootloader.pm
- - simplify
-
-2004/06/25 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Make perl_checker silent
-
-2004/06/25 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/network.c: unset automatic in ftp/http install when ramdisk
- can't be loaded
- use new http_proxy variables instead of the old answers (not anymore
- available)
-
-2004/06/25 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: drop obsolete function
- drop obsolete lnx4win_file()
- major cleanup and rewrite
- - some functions have been renamed
- - some functions have changed prototype
- - no more bootloader::vga_modes, we use
- Xconfig::resolution_and_depth::bios_vga_modes()
- - no more detectloader, it is now detect_main_method(),
- but notice that bootloader::read() + bootloader::write() abstract all
- this!
- - update_for_renumbered_partitions() is surely broken :)
- - sort_hds_according_to_bios() and mixed_kind_of_disks() uses new
- function hd2bios_kind()
- - new data structure "kernel_str"
- - lilo doesn't need so much help as it used to be, so don't put as
- much
- "disk=/dev/sda bios=0x80" as before
- some goals:
- - don't rely on device names
- (this allows not to care too much about devfs vs udev vs ...)
- - kernels can be named something else than /boot/vmlinuz*,
- please use the various functions to construct the initrd file name,
- the symlink name...
-
- * install_any.pm:
- - adapt to new bootloader.pm
- - simplify
-
- * standalone/drakTermServ: simplify using new bootloader.pm
-
- * Xconfig/various.pm, any.pm, standalone/drakboot, install_steps.pm: adapt
- to new bootloader.pm
-
- * fs.pm:
- - enhance subpart_from_wild_device_name() to handle "sda" the same as
- "/dev/sda" (when /dev/sda exists)
- - new function device2part() which uses subpart_from_wild_device_name
- and the
- given fstab to convert the device name to the corresponding structure
- (this allows not relying too much on the device name)
-
- * share/rpmsrate:
- - scim-uim requires scim, no need to have both
- - scim-chinese requires scim, no need to have both
-
-2004/06/24 fisher
-
- * share/po/uk.po: translation update.
-
-2004/06/24 Nicolas Planel <nplanel at mandrakesoft.com>
-
- * mdk-stage1/probing.c: don't redefine buf for /proc/scsi/scsi (size 5000
- instead of 2048)
- don't redefine buf for /proc/scsi/scsi (size 5000 instead of 512)
-
-2004/06/24 Olivier Blin <oblin at mandrakesoft.com>
-
- * modules.pm: perl_checker compliance
- remove unneeded "above" lines in modules::write_conf
- delete "above" lines when removing a sound alias with
- modules::remove_alias_regexp
- fix stupid typo
- in modules::when_load, try to find the best sound slot index instead of
- always overwritting sound-slot-0 (#7890)
-
- * network/tools.pm, network/network.pm: properly handle ascii WEP keys
- (#9884)
-
-2004/06/24 Pixel <pixel at mandrakesoft.com>
-
- * share/rpmsrate:
- - add gv (not installed by default) to have it in the package tree
- (bugzilla #10127)
- - add pciutils (not installed by default) in MONITORING (but i don't
- think it will get to the package tree)
-
- * mouse.pm: module hid is now named usbhid (thanks to svetljo on cooker)
-
-2004/06/24 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * standalone/draksplash, standalone/drakperm, standalone/drakbug,
- standalone/harddrake2, standalone/printerdrake, standalone/logdrake,
- standalone/draksec, standalone/drakfloppy, standalone/drakTermServ,
- standalone/net_monitor, standalone/drakfont, standalone/drakups,
- standalone/drakclock: Some standalone tools don't compile when run from
- console
-
-2004/06/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * install_steps_interactive.pm (acceptLicense) just reboot when one cancel
- the globetrotter first time wizard
- (acceptLicense) just reboot when one cancel the globetrotter first time
- wizard
-
- * drakxtools.spec: 10-48mdk
-
- * share/rpmsrate:
- - switch japanese to scim+uim and scim
- - switch chinese to scim
-
- * lang.pm: switch chinese to scim by default
- fix gtk IM module for scim IM
- fix xcin IM
- add back support for kinput2 IM
- sort CJK's IM entries
- - factorize im settings
- - change default IM according to cooker-i18n feedback:
- o default all chinese locales to fctix IM
- o default all japanese locales to scim+uim IM
-
- * standalone/service_harddrake.sh: rollback service priority
-
-2004/06/23 Olivier Blin <oblin at mandrakesoft.com>
-
- * any.pm: remove global vga choice to please Pixel and Titi
- add a global vga option in any::setupBootloader__general (fix bug 8957)
-
- * standalone/drakclock: be mouse wheel aware (fix bug 9926)
-
- * mdk-stage1/Makefile: define _FILE_OFFSET_BITS=64 so that stat() is large
- files aware
-
- * modules.pm: fix another typo from Titi in #9112 fix (#6802)
-
- * mdk-stage1/directory.c: revert the workaround on stat() now that it
- works on large files
-
- * standalone/drakboot: remove unneeded quotes
- fix processing of config file broken again by Titi
- please perl_checko the Clean Keeper
- remove spurious spaces
- ask for bootloader choice when framebuffer isn't configured (fix bug
- 9925)
- remove unused variable
-
-2004/06/23 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/monitor.pm: good_default_monitor() should work *nearly*
- everywhere, so use it for the auto_install fallback
- (this is used by mandrakemove)
- good_default_monitor() should work *nearly* everywhere, so use it for
- the auto_install fallback
- (this is used by mandrakemove)
-
- * any.pm: kernelVersion() is unused (only bootloader::mkbootdisk() used
- it, and it has already been removed)
-
-2004/06/23 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * pkgs.pm, install_any.pm: Make perl_checker happy
- Support for supplementary CDs during installation (from the 10.0
- update branch.)
-
-2004/06/23 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: code cleanup per Pixel
-
-2004/06/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/adsl.pm: use upcase letters whenever needed
-
- * network/netconnect.pm:
- - unblacklist tg3 since QA has confirmed it works smoothly
- - blacklist buggy madwifi_pci
-
- * standalone/drakboot:
- - fix processing of config file broken by magic olivier
- - reuse cat_()
-
- * modules.pm: merge fix from MDK-10-branch: tv modules weren't loaded on
- boot
-
- * share/po/br.po: update
-
-2004/06/22 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakboot: fix indentation
- do not update bootsplash in autologin wizard
- remove spurious comma and spaces
-
- * network/netconnect.pm: rephrase zeroconf dialog (cybercfo)
- blacklist sis900 and tg3 modules for network hotplugging
-
-2004/06/22 Pixel <pixel at mandrakesoft.com>
-
- * any.pm:
- - use Xconfig::resolution_and_depth::bios_vga_modes() instead of
- %bootloader::vga_modes
- - remove broken sparc code
-
- * docs/HACKING, install2.pm: rename --test in --testing for install2 (more
- coherent with standalone tools)
-
- * ugtk2.pm:
- ->set_title doesn't like title undef, give it '' instead
- (to remove ugly warnings at install)
-
- * Xconfig/resolution_and_depth.pm: perl_checker compliance
- - export @bios_vga_modes (needed for bootloader vga=)
- - to_string should return '' instead of ()
- remove duplicate (use existing function to_string())
- sync with detect-resolution
-
- * bootloader.pm: add check_enough_space() and use it
- - fix typo
- - remove silo code (sparc)
-
-2004/06/22 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Make the CD-Rom install with supplementary CD work
- (don't forget to
- re-mount the main CDs).
-
- * share/po/fr.po: French translations for new messages
-
-2004/06/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/adsl_consts.pm: update fields description (baud
- <baud123@tuxfamily.org>)
- update doc urls (baud <baud123@tuxfamily.org>)
- add new ISP entries (baud <baud123@tuxfamily.org>)
- fix Telia entry (baud <baud123@tuxfamily.org>)
- fix Free dns (baud <baud123@tuxfamily.org>)
- merge duplicate Free entries
- enhance tel9com name (baud <baud123@tuxfamily.org>)
- kill duplicate spanish entry (baud <baud123@tuxfamily.org>)
- enhance a few entries (baud <baud123@tuxfamily.org>)
- fix spanish isp name
-
- * drakxtools.spec: fix build broken by net_applet
- move net_applet in right package (aka drakxtools-gtk)
- 10-47mdk
-
- * standalone/net_applet: perl_checker fixes
- (getIP) fix build
-
-2004/06/21 Daouda Lo <daouda at mandrakesoft.com>
-
- * Makefile.drakxtools:
- - autostart file for KDE/GNOME
- - add net_applet file (installed in bindir)
-
- * drakxtools.spec:
- - net_applet to watch network connection
-
- * Makefile.config:
- - added net_applet
-
- * share/net_applet.desktop:
- - autostart file for KDE/GNOME
-
- * pixmaps/connected.png, pixmaps/disconnected.png: network applet state
- icons
-
- * standalone/net_applet:
- - cleaning titi factorization
- - net_applet to watch network connection
-
-2004/06/21 Florin Grad <florin at mandrakesoft.com>
-
- * network/shorewall.pm: accept from fw to loc
-
-2004/06/21 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/network.c: allow to use ISO images in NFS install
-
- * mdk-stage1/directory.c: workaround the fact that stat() fails on large
- files (like DVD ISO images)
- add log message when using directory as a mirror tree
- split directory specific functions and move them from disk.c to
- directory.c (will be used in NFS install)
-
- * mdk-stage1/disk.c, mdk-stage1/directory.h: split directory specific
- functions and move them from disk.c to directory.c (will be used in NFS
- install)
-
- * mdk-stage1/Makefile: allow to use ISO images in NFS install
- split directory specific functions and move them from disk.c to
- directory.c (will be used in NFS install)
-
-2004/06/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: fix missing trailling quotes
-
- * standalone/logdrake: kill stupid useless code
-
- * standalone/harddrake2: do not display version number in title bar since
- it's useless
- according to interface team
-
- * standalone/net_applet (getIP) simplify
-
-2004/06/20 reinouts
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
-
-2004/06/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/mousedrake: kill dead code
-
- * standalone/harddrake2: show list of partitions
- display better info for hard disks
- really ensure that "identification" section is displayed first
- still show info field if detect_devices::getIDE() failled to parse it
- for a
- known vendor string
- still show mass media fields for mass media that are not hard disks (eg:
- cdroms, dvdrom, burners, ...)
- remove old SCSI garbage code
- adapt fields name to new behavior of mousedrake on 2.6.x kernels
- smoother mouse data: sort fields
- show more fields for mice
- move mice help where it belongs
- simplify
- display media type for mass storage devices
- fix undisplayed fields:
- - if a per-class group exists, prefer it upon generic group
- - only care about current group fields, not about those of the group
- that has
- the same name in generic
- show splited vendor and description fields for USB hard disks too
-
- * share/po/fr.po: spell-check french translations
- update
- typo fixes
-
- * drakxtools.spec: 10-46mdk
- cleanups build
- typo fix
-
- * standalone/service_harddrake: fix logs of newly added hardware
- fix warnings
- only log about nv <-> nvidia swtich only if we do have to perform it
- fix mouse autoconfiguration done on every boot instead of on 2.4.x/2.6.x
- switches
- simplify x11 autoconf
- log error if a tool isn't executable
- simplify globetrotter case: skip non interactive stuff
- do not uselessy fork shells
- log error when we cannot run the config tool
- faster auto mouse reconfiguration on major kernel switch
- harddrake wasn't aware of newly added wireless network card since early
- 2004/02
- fix logs of newly added hardware
- fix mouse autoconfiguration done on every boot instead of on 2.4.x/2.6.x
- switches
-
-2004/06/19 yrahal
-
- * share/po/ar.po: Committing Arabic translation
- Sync with Arabeyes.org's CVS
-
-2004/06/18 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/disk.c: in iso install, use ISOPATH environment variable
- instead of loopback device filename (limited to 64 chars)
-
- * pkgs.pm: add and use install_any::method_allows_medium_change
- in disk-iso install, automatically choose and change ISO images,
- according to their volume id and application id
-
- * install_steps_gtk.pm, install_steps_interactive.pm: fix
- method_allows_medium_change calls (I suck)
- add and use install_any::method_allows_medium_change
- in disk-iso install, automatically choose and change ISO images,
- according to their volume id and application id
-
- * c/stuff.xs.pl: in iso install, use ISOPATH environment variable instead
- of loopback device filename (limited to 64 chars)
- in disk-iso install, automatically choose and change ISO images,
- according to their volume id and application id
-
- * install_any.pm: in disk-iso install, strip old root from ISOPATH and
- remove iso file from path if present
- in iso install, use ISOPATH environment variable instead of loopback
- device filename (limited to 64 chars)
- add and use install_any::method_allows_medium_change
- in disk-iso install, automatically choose and change ISO images,
- according to their volume id and application id
-
-2004/06/18 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * install_any.pm: Don't ask a supplementary CD for upgrades
-
-2004/06/18 tsdgeos
-
- * share/po/ca.po: typos
-
-2004/06/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakupdate_fstab: merge floppies support from MDK-10-branch
-
- * harddrake/autoconf.pm: merge x11 autoconf support from MDK-10-branch
-
- * authentication.pm (configure_krb5_for_AD) fix kerberos server lookup
- (vincent guardiola)
-
- * install_steps_newt.pm: fix comment
-
- * standalone/service_harddrake: only stop boot progressbar if there a non
- automatic tool to run
- merge globetrotter support from MDK-10-branch
- merge mouse autoreconfiguration when switching between 2.4.x and 2.6.x
- kernels
- from MDK-10-branch
- merge x11 autoconf support from MDK-10-branch
- only stop boot progressbar if there a non automatic tool to run
-
- * install_steps_gtk.pm, do_pkgs.pm, install2.pm, install_gtk.pm: merge
- globetrotter support from MDK-10-branch
-
- * standalone/harddrake2: add help for new fields
- group driver fields for sound cards
- do not display PCI/USB vendor id in identification section
- - simplify item grouping
- - always show identification first
- fix displaying pci/usb vendor and device id
- display bus (PCI, USB, ...) first
- fix help for floppies
- - add infrastructure in order to group fields
- - start to group fields for mass media, CPUs and generic PCI/USB
- devices
-
- * drakxtools.spec: update 10-45mdk
- 10-45mdk
-
- * Xconfig/card.pm: merge from MDK-10-branch: add support for ATI_GLX and
- NVIDIA_GLX cohabitation
-
-2004/06/17 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/probing.c: enlarge your scsi buffer (previous size wasn't
- enough with more than one scsi device, fixed thanks to nplanel)
-
- * mdk-stage1/disk.c: add disk-iso install method
- do not delete loopbacks devices before umount but after
-
-2004/06/17 Pixel <pixel at mandrakesoft.com>
-
- * authentication.pm:
- - AD_users_db is cn=users,ldap_domain and not
- cn=users,dc=servername,ldap_domain
- - AD_user (for binddn) is user@domain instead of
- cn=user,cn=users,ldap_domain
- - better system-auth krb5 configuration
- (all this as requested by Vincent Guardiola)
-
-2004/06/17 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * pkgs.pm, install_any.pm: Install with a supplementary CD:
- allow to override the main compssUsers and rpmsrate
-
-2004/06/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: bump buildrequires on ldetect-devel so that tools get
- proper module
- information on USB devices (we should really use a shared library
- instead ...)
- compile everything with standard flags from rpm
-
- * harddrake/data.pm (pciusb_id) fix duplicated USB disks (in both disk and
- unknown categories)
- (set_removable_configurator) fix typo preventing adding entries in
- /etc/fstab for new removable media
- (pciusb_id) fix duplicated USB disks (in both disk and unknown
- categories)
- (set_removable_configurator, set_removable_remover) use the same flags
- as hotplug does when calling drakupdate_fstab
- (set_removable_configurator) fix adding a removable medium
-
- * tools/cvslog2changelog.pl: perl_checker cleanups
-
- * standalone/drakupdate_fstab: add support for floppies
-
- * lang.pm, ugtk2.pm: kill warnings
-
- * standalone/service_harddrake: autoconfigure mouse when swtiching back
- between 2.4.x and 2.6.x kernels
-
- * standalone/harddrake2: kill warnings
- kill usb_id like usb_vendor is (for USB mass storage media)
- add missing field for hard disks
- the split of the cpu help nicely show up that mice were using CPU help.
- let's describe their "name" field too.
- split out CPU help
- use new infrastructure in order to not display useless floppy help for
- SCSI
- disks
- add infrastructure for per class help (and add missing space around
- brackets
- that perl_checker did miss :-()
- perl_checker cleanup
-
- * install_steps_gtk.pm, install_gtk.pm: fix applying keyboard
- configuration in globetrotter's first time wizard
-
- * Xconfig/card.pm (install_server) remove proprietary gl libraries when
- configuring a non
- ATI/NVIDIA card and redo ldconfig cache accordingly
- (to_raw_X) load non nvidia glx for all non nvidia cards, thus fixing 3D
- on non
- NVIDIA/ATI gfx card
-
-2004/06/15 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/disk.c: redesign of the ISO image selection dialog, add an
- entry in the list to allow to use the directory as a mirror tree
- do not try to mount the partition in testing mode, assume it is already
- mounted
- del loop device after unmount
-
- * mdk-stage1/Makefile: upgrade distrib version
-
- * mdk-stage1/network.c: allow to go back in proxy selection window
- fix return code handling in mirror list selection
- fix typo spotted by John Keller
- redesign to add "Specify the mirror manually" entries in mirror list
- selection
-
-2004/06/15 Pixel <pixel at mandrakesoft.com>
-
- * fsedit.pm: rename is_same_part to are_same_partitions (not that much
- clear, but at least a little)
- use "find { ... }"
-
- * Makefile: allow easy tracing of stage2
- remove PERL_INSTALL_DEBUG code modifying install2 (unused and not
- working anyway)
-
- * diskdrake/hd_gtk.pm, diskdrake/interactive.pm: rename is_same_part to
- are_same_partitions (not that much clear, but at least a little)
-
- * keyboard.pm: the presence of loadkeys doesn't mean it is the regular
- one. (fixes loadkeys calling itself)
-
- * mdk-stage1/lomount.c, devices.pm: increase the number of loopbacks
- (needed for mandrakemove where the default (8) is much too low :)
- increase the number of loopbacks (needed for mandrakemove where the
- default (8) is much too low :)
-
- * install_any.pm: remove some broken sparc code
-
- * fs.pm:
- - new function subpart_from_wild_device_name()
- - use it
-
-2004/06/15 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: .backupignore issues (email reports), typo in
- "other" routine
- .backupignore issue (email reports), typo in "other" routine
-
-2004/06/15 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/data.pm (set_removable_configurator) switch from diskdrake to
- drakupdate_fstab
- (like hotplug we just automatically guess what's better)
- update comment
- rename usbnet as net_modules
-
- * drakxtools.spec: fix 10-44mdk's changelog
-
-2004/06/14 jjorge
-
- * share/po/pt.po: saraiva
-
-2004/06/14 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/disk.c: rephrase question again
- rephrase again the disk install questions (thanks to Pierre Jarillon,
- Rapsys|Phoenix and John Kelller)
- rephrase the partition selection message
-
- * mdk-stage1/network.c: move mirror list functions upper
- rename variables for extra cohesion
- fix brown paper bug combo
- always fill proxy fields of interfaces
-
- * mdk-stage1/stage1.c: do not mount sysroot in testing mode
-
-2004/06/14 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
- share/po/ky.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
- share/po/sl.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/am.po, share/po/lt.po,
- share/po/tg.po, share/po/bs.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/fr.po, share/po/ta.po, share/po/vi.po,
- share/po/nl.po, share/po/de.po, share/po/tl.po, share/po/eo.po,
- share/po/bg.po, share/po/cs.po, share/po/el.po, share/po/uz@Latn.po:
- updated pot file
-
- * pixmaps/langs/lang-ber.png: Added image for Berber language, so it is
- available when it would be needed
-
- * share/po/nb.po: updated Norwegian file
- updated pot file
-
- * share/po/nn.po: updated Nynorsk file
- updated pot file
-
- * share/po/cy.po: updated Welsh file
- updated pot file
-
-2004/06/14 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/harddrake2: enforce introduction of translators hints into
- translation catalogs
- (perl_checker should have been loudly complain on those!!!! :-():
- - add missing coma caracter
- - move them near translations
- note that i didn't bother check po comments that already have the proper
- comma. instead this should be done by perl_checker which should warn
- about po
- comments out of translation calls and tags contexts
- display more data about hard disks (geometry, number of primary/extended
- partitions)
-
- * network/netconnect.pm, standalone/drakTermServ, standalone/drakbackup,
- ugtk2.pm: merge fixes from HEAD
-
- * standalone/service_harddrake: do not automatically switch from nv to
- nvidia (in order to handle
- cases where nvidia module crashes the system)
- merge fix from HEAD
-
- * interactive/newt.pm (ask_fromW_real) make previous button be labeled
- "cancel" when needed
-
- * drakxtools.spec: 10-44mdk
-
- * standalone/printerdrake, standalone/draksec, standalone/drakconnect:
- enforce introduction of translators hints into translation catalogs
- (perl_checker should have been loudly complain on those!!!! :-():
- - add missing coma caracter
- - move them near translations
- note that i didn't bother check po comments that already have the proper
- comma. instead this should be done by perl_checker which should warn
- about po
- comments out of translation calls and tags contexts
-
- * standalone/drakperm: enable drag on drop when looking only at customized
- settings
-
- * harddrake/data.pm: since some hard disks are USB models, we've to
- filtering them out once we've
- detected them in order to prevent tem to appear in the "unknown/other"
- category
- ethernet card detection: only rely on driver for matching ethernet
- cards, thus
- preventing mislisting of other/unwanted devices (eg: bluetooth, wlan,
- AX25).
- last but not least, it enables us to catch
- ldetect/ldetect-lst/detect_devices
- bugs where some devices are *not* seen by drakx and drakconnect.
- remove useless filtering in bridges detection code since proper
- filtering (for
- dobles) is already done at the upper level.
- fix misdetection of nvidia nforce ethernet cards (broken since forcedeth
- replaced nvnet on 2004-01-21 in MDK10's ldetect-lst)
- merge fixes from HEAD
-
- * standalone/draksplash: enforce introduction of translators hints into
- translation catalogs
- (perl_checker should have been loudly complain on those!!!! :-():
- - add missing coma caracter
- - move them near translations
- note that i didn't bother check po comments that already have the proper
- comma. instead this should be done by perl_checker which should warn
- about po
- comments out of translation calls and tags contexts
- merge fixes from HEAD
-
-2004/06/11 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/stage1.c: enable MODE_TESTING if the DEBUGSTAGE1 environment
- variable is set
-
- * mdk-stage1/tools.c: in testing mode, try to open cmdline file in current
- directory before trying in /proc
-
- * mdk-stage1/disk.c: let the user choose between ISO images containing a
- stage2 installer if a directory containing ISO images has been specified
-
- * mdk-stage1/network.c: do not ask proxy settings if interface wasn't
- brought up (stupid me)
- add http proxy settings in interface_info struct, and ask them right
- after the interface is up, so that they can be used to fetch the mirror
- list
-
- * mdk-stage1/network.h: add http proxy settings in interface_info struct,
- and ask them right after the interface is up, so that they can be used
- to fetch the mirror list
-
-2004/06/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/draksplash: merge lost hunk
- s/_([xy])\b/_\1\1/ so that cperl-mode is happier
- make draksplash work again...
-
-2004/06/10 Olivier Blin <oblin at mandrakesoft.com>
-
- * standalone/drakboot: fix trainee suckiness
-
- * mdk-stage1/config-stage1.h: use new product name (Mandrakelinux)
-
- * mdk-stage1/mount.c, mdk-stage1/disk.c: ntfs support in install from disk
- (on nplanel request, but to actually work, it would need the BOOT
- kernels to include the ntfs module)
-
-2004/06/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/tg.po: updated Tajik file
-
-2004/06/10 Pixel <pixel at mandrakesoft.com>
-
- * detect_devices.pm: perl_checker compliance
- - hde is ide/host1/bus0/target0/lun0, and not
- ide/host0/bus2/target0/lun0
- - add host in hd struct for bus ide
-
-2004/06/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: first lan step: replace the "manual choice"
- string by the more
- meaningfull "manually load a driver"
- first lan step: do not compare translated strings, use format callback
-
- * security/level.pm (get) default to standard level; else security::msec
- won't be able to
- load any values when level is not set (thus resulting in an empty
- draksec GUI)
-
- * tools/cvslog2changelog.pl: add olivier blin
-
-2004/06/09 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/stage1.c: in move, use stg1_info_message() instead of
- stg1_error_message() not to disable MODE_AUTOMATIC
- in move, use stg1_info_message() instead of stg1_error_message() not to
- disable MODE_AUTOMATIC if not enough memory
-
-2004/06/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: update
-
- * drakxtools.spec: 10-43mdk
-
-2004/06/08 Olivier Blin <oblin at mandrakesoft.com>
-
- * mdk-stage1/config-stage1.h: in ftp install, display a mirror list
- (fetched from http://www.linux-mandrake.com/mirrorsfull.list) to allow
- the user to choose the medium, the host, and automatically find the path
- on mirror (next try, I suck Pixel said)
-
- * mdk-stage1/network.c: in ftp install, display a mirror list (fetched
- from http://www.linux-mandrake.com/mirrorsfull.list) to allow the user
- to choose the medium, the host, and automatically find the path on
- mirror
- include missing header for uname
- in ftp install, check that modules for the boot kernel are available in
- mdkinst live location (they won't be used by the installer, but if they
- aren't here, they probably won't be in the mdkinst tarball)
-
- * mdk-stage1/url.h, mdk-stage1/url.c: list only the requested file in
- ftp_get_filesize() instead of the whole directory (the buffer happens to
- be too small sometimes), make this function available for other modules
-
-2004/06/08 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/monitor.pm: fix typo causing "Out of memory"
-
- * Xconfig/card.pm, install_steps_gtk.pm, share/list.i386, pkgs.pm,
- standalone/drakedm, install2.pm, install_steps.pm, Xconfig/main.pm,
- Xconfig/test.pm, standalone/XFdrake, install_steps_interactive.pm:
- switch to xorg
-
- * authentication.pm: add "Active Directory" authentication (alpha code)
-
- * share/rpmsrate:
- - obsolete: gnome-vfs-extras xanim nist mtv gatos mokmod
- ghostscript-utils tetex-latex-arab-doc sgml-tools
- ghostscript-module-SVGALIB kdenetwork-kit ApacheJServ
- cameleo unarj unstuff postgresql-python mercury NVIDIA_nforce*
- fonts-type1-baltic gnorpm
- - obsolete games: xtrojka bunnies xgammon xpuzzles 7colors xrally
- gtulpas gtkgo
- - obsolete and the new one is auto required: MAKEDEV
- - xine-oss xine-xv are in xine-plugins which is required by xine-ui
- - gatos is no more, replacing with ati.2 (??)
- - replace php with php-cgi (??)
- - replace scanner-gui with xsane and "KDE kdegraphics-kooka"
- - replace clispp2c with clisp (??)
- - replace autoconf with autoconf2.1
- - replace automake with automake1.4
- - switch to gimp2_0
- - everybuddy is now ayttm
- - gimp-plugin is no more, but adding gimp-help
- - Epplets is now epplets (since a lot of time)
- - mandrake-galaxy is now mandrakegalaxy
- - prelude is now prelude-manager
- - kdenetwork-kmail is now kdepim-kmail (same for kdepim-korn and
- kdepim-knode)
- - many XFree86-* are now xorg-x11-*, others are removed (the old
- XFree3 servers)
- - libxfree86-devel is now libxorg-x11-devel
- - libxfree86-static-devel is now libxorg-x11-static-devel
- - tight-vnc-doc is now tightvnc-doc
- - php-manual is now php-manual-{en,fr,...}
- - sketch is now skencil
- - libgr-progs is now netpbm
- - MySQL-devel is now libmysqlXX-devel
- - replace xkobo with skobo
- - fix typo for xtraceroute (bad layout for flag 3D)
-
- - libiw27 instead of libiw26
- - libhpojip0 instead of libhpojip
-
-2004/06/08 Rafael Garcia-Suarez <rgarciasuarez at mandrakesoft.com>
-
- * share/list: A chunk of the previous patch wasn't suitable for 10.0
- Report revisions 1.124, 1.125 and 1.126 from HEAD
-
-2004/06/08 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Bugzilla #9877 - deal with kernel ring buffer
- that is flooded with msgs
- for tape device detection.
-
-2004/06/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakedm: kill dead code
-
- * tools/cvslog2changelog.pl: add rafael
-
-2004/06/08 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_gtk.pm, share/list.i386, install2.pm, standalone/XFdrake,
- install_steps_interactive.pm: switch to xorg
-
- * authentication.pm: add "Active Directory" authentication (alpha code)
-
- * share/rpmsrate:
- - obsolete: gnome-vfs-extras xanim nist mtv gatos mokmod
- ghostscript-utils tetex-latex-arab-doc sgml-tools
- ghostscript-module-SVGALIB kdenetwork-kit ApacheJServ
- cameleo unarj unstuff postgresql-python mercury NVIDIA_nforce*
- fonts-type1-baltic gnorpm
- - obsolete games: xtrojka bunnies xgammon xpuzzles 7colors xrally
- gtulpas gtkgo
- - obsolete and the new one is auto required: MAKEDEV
- - xine-oss xine-xv are in xine-plugins which is required by xine-ui
- - gatos is no more, replacing with ati.2 (??)
- - replace php with php-cgi (??)
- - replace scanner-gui with xsane and "KDE kdegraphics-kooka"
- - replace clispp2c with clisp (??)
- - replace autoconf with autoconf2.1
- - replace automake with automake1.4
- - switch to gimp2_0
- - everybuddy is now ayttm
- - gimp-plugin is no more, but adding gimp-help
- - Epplets is now epplets (since a lot of time)
- - mandrake-galaxy is now mandrakegalaxy
- - prelude is now prelude-manager
- - kdenetwork-kmail is now kdepim-kmail (same for kdepim-korn and
- kdepim-knode)
- - many XFree86-* are now xorg-x11-*, others are removed (the old
- XFree3 servers)
- - libxfree86-devel is now libxorg-x11-devel
- - libxfree86-static-devel is now libxorg-x11-static-devel
- - tight-vnc-doc is now tightvnc-doc
- - php-manual is now php-manual-{en,fr,...}
- - sketch is now skencil
- - libgr-progs is now netpbm
- - MySQL-devel is now libmysqlXX-devel
- - replace xkobo with skobo
- - fix typo for xtraceroute (bad layout for flag 3D)
-
- - libiw27 instead of libiw26
- - libhpojip0 instead of libhpojip
-
-2004/06/08 rgarciasuarez
-
- * share/list: Report revisions 1.124, 1.125 and 1.126 from HEAD
-
-2004/06/07 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po: updated Estonian file
- updated pot file
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/ja.po, share/po/hr.po, share/po/be.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/he.po, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/ltg.po, share/po/nb.po,
- share/po/ky.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/am.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/fr.po,
- share/po/ta.po, share/po/vi.po, share/po/nl.po, share/po/de.po,
- share/po/tl.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: updated pot file
-
-2004/06/07 Pixel <pixel at mandrakesoft.com>
-
- * mdk-stage1/stage1.c, mdk-stage1/init.c: nasty kernel now gives us weird
- PIDs, so we can't rely on this to detect if we are running
- on a live box or not. So set testing to 0
-
- * mdk-stage1/dietlibc/lib/alloc.c: fix build with gcc 3.4 (+ little
- cleanup)
-
- * mouse.pm: hid is missing (and not needed) on kernel 2.6.7.0.rc2
-
- * mdk-stage1/dietlibc/Makefile:
- - fix build on gcc 3.4
- - much nicer detection of wether $ARCH/Makefile.add modifies CFLAGS or
- not
-
-2004/06/04 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/netconnect.pm: switch ONBOOT to on/off for isdn and adsl
- connections
-
- * network/adsl.pm: remove some FIXME comments
-
-2004/06/04 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/gl.po: updated Galician file
-
-2004/06/04 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/service_harddrake.sh: run harddrake service earlier
-
- * any.pm (setupBootloader) remove debugging messages
- (setupBootloader__entries) fix typo (Andrea Celli)
-
-2004/06/03 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/xfree.pm: add resolution 1920x1200 called WUXGA (used by Dell
- Laptops Inspiron 8500, 8600 and Latitude D800) (bugzilla #6795)
-
- * tools/cvslog2changelog.pl: add AUTHOR environment option for my warly
- reports
-
- * patch/patch-rh9-mdk10.pl: only big known bug remaining is mouse
- configuration
-
- * mdk-stage1/probing.c: use the same technique as ldetect for detecting
- usb and firewire controllers (based on the pci class)
- use the same technique as ldetect for detecting usb and firewire
- controllers (based on the pci class)
-
-2004/06/02 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/de.po: updated German file
-
-2004/06/02 Pixel <pixel at mandrakesoft.com>
-
- * any.pm:
- - add descriptions for NFS and SMB (thanks to bugzilla #9940)
- - don't iterate on %l, better iterate on %types
-
- * fs.pm:
- - stop mounting ext3 partitions using type ext2 during install
- - stop fsck'ing ext3 partitions (it was only done during install, not
- upgrade)
-
-2004/06/01 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/adsl.pm: s#ppp/peers/adsl#ppp/peers/ppp0#
- as we now use ifup-ppp for adsl, it will look for ppp0
- new way to specify how to up connection for pppoe(xDSL) and others(ADSL)
-
-2004/06/01 jjorge
-
- * share/po/pt.po: saraiva
-
-2004/06/01 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/am.po: updated Amharic file
-
- * share/po/nb.po: updated Norwegian po file
-
-2004/06/01 Pixel <pixel at mandrakesoft.com>
-
- * standalone/drakboot: rollback weird and ugly workaround when pressing
- cancel on the ask_warn. The real fix is in ugtk2.pm
-
- * any.pm: handle the nfs/smb service disabled (enhancement given by
- Olivier Blin)
-
- * ugtk2.pm: when wizcancel occurs, ugtk2 object is not destroyed (the
- garbage collector seems to have some pbs taking care of this, but since
- many callbacks using it are registered, it's no wonder)
- (fixes pressing "Cancel" on a ->ask_warn in wizard mode)
- (set_text): fix "cleanups"
-
-2004/06/01 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Really apply gui fix.
- Use array rather than hash per Thierry.
- Insure ftp transfers are binary, fix gui problem (in 10.0 update also).
- Binary ftp/gui fixes from cooker branch.
-
- * standalone/drakTermServ: Use array rather than hash per Thierry.
- Insure ftp transfers are binary, fix gui problem (in 10.0 update also).
-
-2004/06/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/tools.pm: remove debug message
- (use_windows) space cleanup
-
- * ugtk2.pm (set_text) cleanups
-
- * network/netconnect.pm: make LAN wizard more user friendly: move "manual
- choice" after detected
- interfaces
-
- * standalone/drakboot (lilo_choice) fix error title
- fix "two windows after exception" bug
-
- * network/drakfirewall.pm: mark it as translatable for non alphabetic
- languages
-
- * drakxtools.spec: 10-42mdk
-
- * bootloader.pm (write_grub_config) do not write partial config file (thus
- garbaging previous
- config) if an error occured
-
- * detect_devices.pm (getNet) handle interface w/o ip addresses
- (getNet) rollbacl to MDK10.0 detection scheme
-
-2004/05/28 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Typo in tape restore (Federico Belvisi).
-
-2004/05/28 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm (real_main) fix protocol switching from manual to
- auto when stepping back
- merge brown paper bug fix from TRUNK
-
- * network/ethernet.pm (get_eth_cards) fallback on sysfs in order to get
- driver and card
- description when ethtool is not supported (eg: ipw2100 driver for
- intel centrino)
- merge from HEAD:
- (get_eth_cards) fallback on sysfs in order to get
- driver and card description when ethtool is not supported (eg: ipw2100
- driver for intel centrino)
- merge fixes from HEAD
-
- * keyboard.pm, any.pm, c/stuff.xs.pl, standalone/drakTermServ,
- standalone/net_monitor, network/drakfirewall.pm, authentication.pm,
- detect_devices.pm: merge fixes from HEAD
-
- * standalone/drakbackup: merge fix from TRUNK
- merge fixes from HEAD
-
- * network/network.pm (read_all_conf) read VLAN interfaces too
- (read_all_conf) read ip aliased interfaces too
-
- * drakxtools.spec: update 10-41mdk's changelog
- 10-41mdk
- 10-40mdk
- fix 10-37mdk's indentation
- fix perl Glib/Gtk2 binding requires for mdk10.0
- fix 10-34.2mdk changelog indentation
- update 10-34.2mdk's changelog
- update 10-34.2mdk's changelog
- merge fixes from HEAD
-
-2004/05/27 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/adsl.pm:
- - drop old internet service code
- - only one way to configure/up/down an adsl connection
-
- * network/netconnect.pm:
- - call remove_initscript because internet service is dropped
- - drop write_initscript call
-
- * network/tools.pm:
- - kill write_initscript
- - add remove_initscript
-
-2004/05/27 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/am.po: Added Amharic file
-
-2004/05/27 Pixel <pixel at mandrakesoft.com>
-
- * fs.pm: new function isTrueLocalFS() to make a distinction between
- ext3/reiserfs/... and nfs
- => allow /home on nfs (bugzilla #7460)
- new function isTrueLocalFS() to make a distinction between
- ext3/reiserfs/... and nfs
- => allow /home on nfs (bugzilla #7460)
-
- * fsedit.pm, install_interactive.pm, partition_table.pm: new function
- isTrueLocalFS() to make a distinction between ext3/reiserfs/... and nfs
- => allow /home on nfs (bugzilla #7460)
-
- * Xconfig/card.pm, install2.pm, install_steps.pm, install_any.pm,
- install_steps_interactive.pm: handle freeDriver which disable using
- proprietary X driver (esp. for nvidia)
-
- * any.pm: really chkconfig --add and --del for "diskdrake --fileshare"
- (thanks to Olivier Blin)
- instead of removing package nfs-utils or samba-server (when "diskdrake
- --fileshare" disables a export kind) (bugzilla #9804)
-
-2004/05/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * detect_devices.pm (getNet) ignore loopback device
-
- * standalone/net_monitor (get_val) reuse c::get_netdevices() and thus skip
- bogus sit0
-
- * drakxtools.spec: 10-39mdk
- 10-38mdk
-
-2004/05/26 Daouda Lo <daouda at mandrakesoft.com>
-
- * docs/HACKING:
- - perl-XML-Parser is needed at build stage
-
-2004/05/26 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/tl.po: updated Filipino file
-
- * keyboard.pm, share/rpmsrate, lang.pm: enabled Latgalian language choice;
- prepared for Sardian;
- rpmsrate: Japanese input method is now "uim"
-
-2004/05/26 Pixel <pixel at mandrakesoft.com>
-
- * common.pm, crypto.pm, install_any.pm: /etc/mandrake-release is now
- /etc/mandrakelinux-release
-
- * lang.pm:
- - call handleI18NClp() ASAP
- - create and use lang2move_clp_name()
-
- * install2.pm: "expert" flag in stage2 is bad and deprecated, removing it!
-
-2004/05/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * detect_devices.pm (getNet) reuse c::get_netdevices()
- (getNet) support br (bridging) and tr (UML) interfaces (florin)
-
- * c/stuff.xs.pl (netdevices) introduce it in order to list network
- interfaces
-
-2004/05/25 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/tg.po, share/po/eu.po: updated Basque and Tajik files
-
- * share/keyboards.tar.bz2: new keyboards; new lang->keyboard
- correspondences
-
- * keyboard.pm: Nepali uses devanagari script
- new keyboards; new lang->keyboard correspondences
- don't trust the USB keyboard layout announc when it claims to be "us"
- layout (mosdt manufacturers just keep that default value while seeling
- different layouts)
-
-2004/05/25 rvojta
-
- * network/drakfirewall.pm:
- - BitTorrent support added
-
-2004/05/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: update 10-37mdk's changelog
- 10-37mdk
-
- * network/ethernet.pm (mapIntfToDevice) only try to lookup pci or usb
- device by bus location
- if its location is defined (some driver are returning bogus data on
- ETHTOOL_GDRVINFO command)
- (get_eth_cards) brown paper bug: fix card name lookup when driver does
- not support GDRVINFO command from ETHTOOL ioctl and there's only one
- card managed by this driver
-
- * share/po/br.po: update
-
-2004/05/24 rgarciasuarez
-
- * share/list: Don't hardcode architecture
-
-2004/05/24 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Fix dropped .txt files when running mkisofs.
- (Anthill #799)
-
-2004/05/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/draksplash (mk_frame) minor cleanup
- switch from deprecated OptionMenu into new ComboBox widget
-
- * share/po/br.po: typo fix
-
- * drakxtools.spec: 10-36mdk
-
- * standalone/drakperm, standalone/drakbug, interactive/gtk.pm,
- standalone/drakboot, standalone/draksec, standalone/drakfloppy,
- standalone/drakTermServ, Xconfig/resolution_and_depth.pm,
- standalone/drakbackup: switch from deprecated OptionMenu into new
- ComboBox widget
-
- * standalone/drakconnect: switch from deprecated OptionMenu into new
- ComboBox widget
- (build_notebook) simplify pull down menu filling and do not duplicate
- protocols
- list
-
- * ugtk2.pm: still provide compat stuff for OptionMenu (#9826) until all
- tools are
- converted
-
-2004/05/21 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup, standalone/drakTermServ: Some new perl_checker
- fixes.
-
-2004/05/20 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Add /etc/modprobe* mount points for client
- hardware config.
-
-2004/05/19 Daouda Lo <daouda at mandrakesoft.com>
-
- * share/list:
- - Share pango modules between the FT2 and Xft backend (named fc in
- pango 1.4)
- - pango-modules file is now located in /etc/pango/i386/
- - Add Build.pm
-
-2004/05/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * c/stuff.xs.pl (hasNetDevice, isNetDeviceWirelessAware, getNetDriver)
- explicitely use
- system IFNAMSIZ instead of implicitely defining it
- (isNetDeviceWirelessAware) introduce it in order to detect whether a
- network interface support wireless extensions or not
- forward better LAN vs wireless filtering
-
- * network/adsl.pm: forward speedtouch fix (using kernel mode)
-
- * network/netconnect.pm: filter LAN and Wireless cards by explicitely
- checking whether network
- interfaces support wireless extensions or not instead of relying on
- both ethtool support (in order to get the module name) and checking
- against a whitelist of known wireless awere cards
- forward speedtouch fix (using kernel mode)
- forward better LAN vs wireless filtering
-
- * drakxtools.spec: 10-35mdk
-
-2004/05/18 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/cy.po, share/po/ky.po, share/po/es.po, share/po/pl.po: updated
- Kyrgyz and Welsh files
-
-2004/05/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk2.pm (Gtk2::OptionMenu->new) kill debug message
- (Gtk2::OptionMenu) transparently replace obsolete OptionMenu widget by
- the new ComboBox widget
-
-2004/05/17 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/netconnect.pm: perl_checker compliance
- remove speedtouch and ISDN 'only working under 2.4 kernel' warnings
-
-2004/05/17 Pixel <pixel at mandrakesoft.com>
-
- * authentication.pm: install autofs for nis authentication (dixit florin &
- fcrozat)
-
- * Xconfig/xfree.pm: restore the ability to specify the file where the
- config should be written (since it's used by Xconfig/test.pm)
-
- * Makefile: instead of keeping stage1 (mostly as temporary space but with
- a fixed size, and for the background init),
- exit the stage1 giving hand to stage2 in a tmpfs (same as what was done
- for Mandrakemove)
- stage2 now builds the full mdkinst, and full_stage2 is stage2 + building
- mdkinst_stage2
-
-2004/05/17 rgarciasuarez
-
- * tools/Makefile: Clean up perl version checking in the tools makefile.
-
- * Makefile: Remove an obsolete check for XFree86-VGA16
-
- * share/list: Fix version of PerlIO::gzip in file list
-
-2004/05/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/icons/drakconnect_step.png: kill unused image
-
- * share/po/br.po: update
-
-2004/05/16 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Fixes
-
-2004/05/16 yrahal
-
- * share/po/ar.po: Arabic translation
-
-2004/05/15 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Upadted Spanish messages
-
-2004/05/14 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/adsl.pm: Fixes to use speedtouch kernel driver / drop userspace
- one
- (happy modem with both 2.4 and 2.6)
- - fix modem_run parameters to use kernel driver
- - change/move pty declaration in /etc/ppp/peers/adsl
- - plugin pppoatm has to be set and vpi.vci too
- - new net_cnx_{up/down}, speedtouch.sh seems to be useless now
-
-2004/05/13 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sl.po, share/po/ky.po, share/po/hi.po: fixed "default:LTR"
- string
-
- * share/po/et.po, share/po/pt_BR.po: updated Estonian and Brazilian files
-
-2004/05/13 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: in manualFstab coming from auto_install.cfg, allow device
- /dev/XXX instead of simply XXX
- instead of keeping stage1 (mostly as temporary space but with a fixed
- size, and for the background init),
- exit the stage1 giving hand to stage2 in a tmpfs (same as what was done
- for Mandrakemove)
-
- * mdk-stage1/probing.c: usb cdrom has a weird size in /proc/partitions,
- the result is that it is detected as floppy
- usb cdrom has a weird size in /proc/partitions, the result is that it is
- detected as floppy
-
- * c/stuff.xs.pl, diskdrake/interactive.pm, fs.pm, fsedit.pm,
- standalone/drakupdate_fstab: really handle LABEL=XXX in fstab (as used
- by redhat) (no xfs labels yet)
-
- * mdk-stage1/Makefile, mdk-stage1/disk.c, mdk-stage1/tools.h,
- mdk-stage1/log.c, mdk-stage1/adsl.c, Makefile, mdk-stage1/cdrom.c,
- share/devices, mdk-stage1/config-stage1.h, mdk-stage1/stage1.h,
- mdk-stage1/tools.c, mdk-stage1/.cvsignore, share/symlinks,
- mdk-stage1/stage1.c, mdk-stage1/init.c, mdk-stage1/dhcp.c,
- mdk-stage1/network.c: instead of keeping stage1 (mostly as temporary
- space but with a fixed size, and for the background init),
- exit the stage1 giving hand to stage2 in a tmpfs (same as what was done
- for Mandrakemove)
-
- * ugtk2.pm: better error logging when gtkcreate_img or gtkcreate_pixbuf
- can't find the image
-
- * Xconfig/resolution_and_depth.pm: simplify
- Xconfig::resolution_and_depth::allowed(): adapt it to the way it's
- really used
- $prefered_depth defaults to the greatest depths, no need to set it to 24
- vmware doesn't like 24bpp (bugzilla #9755)
-
- * Xconfig/monitor.pm: speed-up monitor choosing dialog when {VendorName}
- is undef (esp. when using "use diagnostics")
-
-2004/05/12 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/advertising/dwd-07.pl: unified two strings
-
- * share/po/et.po: updated Estonian file
-
- * share/po/be.po: updated po file
-
-2004/05/12 Pixel <pixel at mandrakesoft.com>
-
- * keyboard.pm, install_steps_interactive.pm: fix typo
-
- * lang.pm: no lang-ltg.png, so disabling ltg
- - fix typo
- - fix last commit which was not using $locale_country as it should in
- system_locales_to_ourlocale()
-
- * Makefile: use busybox when dont_run_directly_stage2
-
- * install_any.pm: fix selecting locales-LANG (it didn't really work, but
- it doesn't seem needed?)
-
-2004/05/11 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/ky.po, share/po/uz.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/lt.po, share/po/cy.po, share/po/tg.po,
- share/po/bs.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/fr.po, share/po/ta.po, share/po/vi.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: updated pot file
-
-2004/05/11 Pixel <pixel at mandrakesoft.com>
-
- * authentication.pm: fix winbind configuration and do the same for LDAP
- and NIS (modifs proposed and checked by Vincent Guardiola)
-
- * mdk-stage1/stage1.c: adapt copyright
-
- * lang.pm:
- - new function locale_to_main_locale() to replace the typical
- substr($lang, 0, 2) or $lang =~ /(..)/
- - new function analyse_locale_name() to replace various regexps on
- locale name
- - use those 2 functions for cleanup
- - cleanup even more standard_locale()
- perl_checker compliance
- remove unused function
-
- * drakxtools.spec: new update:
- - fix pam configuration when using winbind (also fixes LDAP and NIS
- (?))
-
- * detect_devices.pm: rewrite a little probeSerialDevices(), the beginning
- is still very strange
-
- * Xconfig/test.pm: fix typo
-
- * printer/main.pm, install_steps.pm, keyboard.pm: use
- lang::analyse_locale_name() and lang::analyse_locale_name()
-
- * http.pm, Xconfig/card.pm, printer/detect.pm, wizards.pm,
- interactive/newt.pm, network/netconnect.pm, mouse.pm, install2.pm,
- .perl_checker: perl_checker compliance
-
- * ugtk2.pm: perl_checker compliance
- better error logging when gtkcreate_img or gtkcreate_pixbuf can't find
- the image
-
- * any.pm: use lang::analyse_locale_name() and lang::analyse_locale_name()
- more cleanup in selectLanguage()
- selectLanguage():
- - simplify @langs generation
- - use a tree if @langs > 15, not when $::move is set
-
- * install_steps_interactive.pm: use lang::analyse_locale_name() and
- lang::analyse_locale_name()
- fix ugly typo (thanks to perl_checker)
-
- * install_any.pm: fix selecting locales-LANG (i didn't really work, but it
- doesn't seem needed?)
-
-2004/05/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: update
-
- * harddrake/data.pm: do not run XFdrake in automatic mode, it's useless
-
-2004/05/10 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/man/C/man5/drakbackup.conf.5: Man page for drakbackup.conf.
-
-2004/05/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: update breton translation
-
-2004/05/08 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated partially
-
-2004/05/08 Pixel <pixel at mandrakesoft.com>
-
- * standalone/diskdrake: perl_checker compliance
-
-2004/05/08 Till Kamppeter <till at mandrakesoft.com>
-
- * standalone/scannerdrake: Fixed firmware installation.
-
-2004/05/07 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/main.pm: remove debugging code
- you can now configure monitors on heads > 1
- fix an old typo
-
- * Xconfig/various.pm, Xconfig/resolution_and_depth.pm, Xconfig/xfree.pm:
- you can now configure monitors on heads > 1
-
- * Xconfig/monitor.pm: you can now configure monitors on heads > 1
- rename monitors() and $monitors to monitors_db() and $monitors_db
- (preparation for next commit which adds ability to configure each
- monitor)
-
-2004/05/07 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakclock: do saner check for ntp package (Robert Vojta)
-
-2004/05/06 Pixel <pixel at mandrakesoft.com>
-
- * fs.pm, standalone/drakupdate_fstab: don't prefer_devfs_name when reading
- /proc/mounts (which uses devfs names)
-
- * Xconfig/card.pm: don't succeed automatic configuration (not
- auto_install) when there is many cards (as requested by Joe Bolin on
- cooker)
-
-2004/05/06 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: update
-
-2004/05/05 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * lang.pm: preparing for Furlan
-
- * share/po/gl.po: updated Galician file
-
-2004/05/05 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: fix 10-31mdk's changelog
-
- * network/drakfirewall.pm: open more ports for samba
-
- * network/netconnect.pm: do not offer to set DOMAINNAME2 since it is never
- saved nor read (#9580)
-
-2004/05/04 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/ethernet.pm: use @cards instead of $#cards as told by master
- pipi
- perl_checker fixes
-
- * network/netconnect.pm: perlchecker fixes
-
-2004/05/04 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10-34mdk
-
- * standalone/drakconnect: fix interface destruction wizard
-
- * share/po/de.po: update
-
-2004/05/03 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/netconnect.pm, network/isdn.pm: take ISDN protocol into account
- for people outside Europe to use it
- (kind of lost in space before)
-
-2004/05/03 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/de.po: updated German file
-
-2004/05/03 Pixel <pixel at mandrakesoft.com>
-
- * install_steps.pm: no need for defensive programming
- blank.img has been removed, so remove special code handling it
-
- * docs/README: quick update, not complete
-
- * mdk-stage1/modules.c, install_steps_interactive.pm, install2.pm,
- modules.pm, mdk-stage1/stage1.c: blank.img has been removed, so remove
- special code handling it
-
- * Xconfig/xfree3.pm, Xconfig/various.pm, Xconfig/card.pm,
- Xconfig/resolution_and_depth.pm, Xconfig/xfree.pm, Xconfig/test.pm,
- Xconfig/xfreeX.pm, mouse.pm, Xconfig/xfree4.pm, standalone.pm,
- Xconfig/default.pm, Xconfig/main.pm, Xconfig/screen.pm, Xconfig/FILES:
- XFree 3 is gone!
-
- * mdk-stage1/Makefile: stage1-disk and stage1-medias-usb are dead already
-
-2004/05/01 Pixel <pixel at mandrakesoft.com>
-
- * fs.pm, standalone/drakupdate_fstab, diskdrake/interactive.pm, fsedit.pm:
- fix drakupdate_fstab adding twice an entry in fstab, one with the old
- name, one with the devfs name
-
-2004/04/30 Pixel <pixel at mandrakesoft.com>
-
- * detect_devices.pm, any.pm, devices.pm:
- - new getSCSI_26() not using /proc/scsi/scsi
- (since we can't say first Direct-Access entry is sda anymore)
- - deprecate field {raw_type}
- - don't fill {device} with sgX for non-(cdrom|hd|floppy)
- (hopefully not used by anything, except maybe scanners?)
- - replace scdX with srX (which everybody use)
-
-2004/04/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone.pm (version) bump release number
-
- * standalone/drakclock: time is displayed as HH:MM:SS with RTL languages
-
- * drakxtools.spec: 10-32mdk
-
- * harddrake/data.pm: list SATA controllers in their own category (anthill
- #741)
-
-2004/04/28 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/isdn.pm: cleaning _last_ 'isdn_' prefix
- drop unused ISA and EXPORT
- drop isdn_ fonction names
-
- * network/netconnect.pm: drop isdn_ fonction names
- drop network::isdn->import
-
- * harddrake/data.pm: change last isdn_detect_backend() remaining
-
- * standalone/drakconnect: drop isdn_ fonction names
-
-2004/04/28 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ky.po: updated Kyrgyz file
-
- * share/po/nn.po: Updated Nynorsk file
-
-2004/04/28 tsdgeos
-
- * share/po/ca.po: updating catalan translations of DrakX and drakfax
-
-2004/04/28 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: update
-
- * standalone/service_harddrake: log removed/added hw
-
-2004/04/27 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/isdn.pm: no need to up ippp0 in net_cnx_up, it's been up'ed at
- startup
-
- * standalone/drakconnect: more gui layout fixes
-
- * network/netconnect.pm, network/tools.pm: try to fix #3793 or at least
- enhance firmware seeking on windows partition
- (based upon titi's patch)
-
-2004/04/27 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/de.po, share/po/pt_BR.po: updated Brazilian file
-
-2004/04/27 Pixel <pixel at mandrakesoft.com>
-
- * standalone/XFdrake: not needed for Lacie, so removing
-
- * diskdrake/removable.pm, diskdrake/interactive.pm: revert handling --auto
- for removable, it is much better done in a separate function
- (the goal of this --auto is not clear at all, and is better explicitly
- done)
-
-2004/04/27 yrahal
-
- * share/po/ar.po: Arabeyes' Arabic translation
-
-2004/04/26 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/de.po: updated German translations
-
-2004/04/26 Pixel <pixel at mandrakesoft.com>
-
- * run_program.pm: create ~/tmp when needed
-
- * mdk-stage1/stage1.c, mdk-stage1/config-stage1.h: rename MandrakeMove to
- Mandrakemove
-
- * lang.pm: utf8_should_be_needed() must return true if any of the
- languages chosen is utf8, not only the main one
- (it also returns true when there are many charsets)
-
-2004/04/25 fwang
-
- * share/po/zh_CN.po: update
-
-2004/04/25 yrahal
-
- * share/po/ar.po: Arabeyes.org's Arabic translation
-
-2004/04/24 fwang
-
- * share/po/zh_CN.po: update
-
-2004/04/23 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect: re-indentation
- use gtkset_border_width(Gtk2::VBox->new, 5) to create a vbox and set a
- border_width at the same time
- change packing to get a better GUI
-
- * ugtk2.pm: create frame with a border witdth (titi rulez)
-
-2004/04/23 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nn.po: updated Nynorsk file
-
- * share/po/gl.po: updated Galician files
-
-2004/04/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk2.pm (shrink_topwindow) support both 10.0 and cooker
-
- * standalone/drakconnect: remove useless ::prefix references
- (build_notebook) sort ppp auth methods
-
- * drakxtools.spec: 10-32mdk
-
- * standalone/service_harddrake: do automatic sound configuration (one can
- still switch between OSS and
- ALSA through mcc)
- handle again timeouts
- do X11 configuration automagically
- - when automatic flag is set for one hardware class, do not ask for
- confirmation and just do what is needed
- - only show "probing in progress" message if we did run an interactive
- tool
-
- * modules.pm (probe_category) perl_checker cleanup
- (remove_alias, remove_alias_regexp, remove_alias_regexp_byname,
- remove_module, set_options) add more explanations
-
- * harddrake/data.pm: do X11 configuration automagically
- (set_removable_configurator) use diskdrake instead of drakupdate_fstab
- for removable media in automatic mode
- set automatic flag for removable media
-
- * diskdrake/interactive.pm, diskdrake/removable.pm: handle --auto when
- managing removable media
-
- * Xconfig/various.pm, standalone/XFdrake: handle --auto
-
-2004/04/22 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * modules.pm: fix 'somewhat' broken isdn type and driver name fetching
- from pcitable
- (this is no paper-bag)
-
-2004/04/22 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sl.po: updated Slovanian file
-
-2004/04/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/service_harddrake, standalone/harddrake2: switch to new
- harddrake data structure
-
- * install_steps_interactive.pm (summary) install alsaconf too for isapnp
- sound cards (it better handle some
- isapnp sound cards)
-
- * standalone/drakxtv: fix tv cards detection
-
- * harddrake/data.pm: split usb ports from usb controllers (arnaud request)
- new harddrake data structure (easier to extend)
-
- * harddrake/v4l.pm: sync tuners list with 2.6.6-rc2 too
- sync card lists with 2.6.6-rc2
-
-2004/04/20 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect: move reread_net_conf to tools.pm
- remove unneeded @all_cards initialisation in reread_net_conf
-
- * network/tools.pm: move reread_net_conf to tools.pm
-
-2004/04/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakconnect (populate_notebook) fix drakxtools' build
- (build_notebook) do not assume there's not language that want to
- translate the "dhcp" string as in other code
-
- * drakxtools.spec: 10-31mdk
-
-2004/04/19 dam's <dams at idm.fr>
-
- * standalone/drakfont: attempt to correct bug #9423
-
-2004/04/19 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/adsl.pm: $adsl_modem is optional, moved to $o_adsl_modem
-
- * standalone/drakconnect: dropped $::i in foreach loop, use $i instead
- - translate strings once and only for the user.
- don't bother with translated strings internally..
- - drop DHCP translation, it's always DHCP
- IPADDR, NETMASK and GATEWAY fields are not sensitive by default in DHCP
- (broken by #8498 fix)
-
-2004/04/19 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/cy.po, share/po/nb.po: updated Welsh and Norwegian files
-
-2004/04/19 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Consolidate button_box* code, remaining
- file_dialogs.
-
-2004/04/18 tsdgeos
-
- * share/po/ca.po: Unfuzzying and updating
-
-2004/04/18 yrahal
-
- * share/po/ar.po: Arabic translation (Arabeyes.org)
-
-2004/04/16 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Some drives don't return "ATIP info from disk".
-
-2004/04/11 yrahal
-
- * share/po/ar.po: Arabic translation
-
-2004/04/09 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/cy.po, share/po/uk.po: updated Ukrainian and Welsh files
-
- * share/po/nn.po, share/po/tl.po: updated Nynorsk and Filipino files
-
- * share/po/hi.po, share/po/eu.po: corrected default:LTR entries
-
-2004/04/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * install_steps.pm, lang.pm (lang::write_langs) drop prefix parameter
-
-2004/04/08 Daouda Lo <daouda at mandrakesoft.com>
-
- * standalone/drakclock:
- - test /etc/init.d/ntpd instead of /etc/ntp.conf for ntp installation
-
-2004/04/08 keld
-
- * share/po/da.po: updates
- soft/mdkonline/po/da.po soft/wizard_perl/po/da.po
- gi/perl-install/share/po/da.po
-
-2004/04/08 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: mount /sys before move::init() since move::init() needs it
-
- * mdk-stage1/lomount.c:
- - no need for chloop device anymore, my kernel patch applies directly
- on the default loop module :)
- - gzloop needs cryptoloop and zlib_inflate (why must i handle this by
- hand? is my gzloop ugly?...)
-
- * devices.pm: get rid of the chloop code (not used anymore)
-
-2004/04/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: bump glib/gtk+ perl binding requires
- use Mandrakelinux now
- 10-30mdk
-
-2004/04/07 dam's <dams at idm.fr>
-
- * standalone/drakups: corrected drakups against new libconf 0.32
-
-2004/04/07 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * lang.pm: defined default font to use in KDE for devanagari and malayalam
- scripts
-
-2004/04/06 David Baudens <baudens at mandrakesoft.com>
-
- * share/advertising/list-pwp, share/advertising/list-dwd,
- share/advertising/list-dis, share/advertising/list-ppp: Don't display
- commercial advertisement in development version
-
-2004/04/06 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ky.po, share/po/eu.po: Added Kyrgyz file; updated Basque file
-
-2004/04/06 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Use a scalar with cat_ (Pixel suggestion).
- Don't move existing dhcpd.conf, add an include for terminal-server
- instead.
-
-2004/04/06 tbacklund
-
- * share/po/fi.po: fully translated, was 3 fuzzy, 3 untranslated
-
-2004/04/06 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk2.pm (shrink_topwindow) fix faillure with perl-Gtk+-1.04x (#9411)
-
- * install_steps_interactive.pm: typo fix
-
-2004/04/05 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/hi.po: updated Hindi file
-
-2004/04/05 Pixel <pixel at mandrakesoft.com>
-
- * fs.pm: allow mounting type devpts
- perl now handle cleanly utf8 string in exceptions, no need to die
- \N("...")
-
- * loopback.pm, diskdrake/hd_gtk.pm, diskdrake/interactive.pm, lvm.pm,
- install2.pm, fsedit.pm, network/drakfirewall.pm, authentication.pm,
- install_steps.pm, raid.pm, bootloader.pm, swap.pm, install_any.pm,
- install_interactive.pm, partition_table/raw.pm, partition_table.pm,
- install_steps_interactive.pm: perl now handle cleanly utf8 string in
- exceptions, no need to die \N("...")
-
-2004/04/05 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Remove config-info (new home to be man page).
- Use ugtk2 cursor wait/normal (share the wheel).
- Combine/rework restore code.
-
-2004/04/05 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * install_any.pm (setDefaultPackages) despite find and any are
- semantically equivalent
- in this context, any will be used there (boolean vs scalar context)
- (setDefaultPackages) install alsa-utils if *any* of the present sound
- card is driven by ALSA
-
- * standalone/service_harddrake: log nv<=>nvidia switches
-
- * share/rpmsrate: install gnome-alsamixer and alsa-utils when there's an
- alsa driver sound card
- setDefaultPackages
- im-ja has been reported to be more user-friendly than uim
-
-2004/04/04 keld
-
- * share/po/da.po: updates
- gi/perl-install/share/po/da.po
-
-2004/04/04 yrahal
-
- * share/po/ar.po: Commmitting Arabeyes.org's Arabic translation of the
- week
-
-2004/04/02 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/04/02 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/nb.po: updated Farsi and Norwegian files
-
-2004/04/02 Pixel <pixel at mandrakesoft.com>
-
- * mdk-stage1/Makefile: clean init-move when cleaning
-
- * mdk-stage1/nfsmount.c: enable nfs install on old i586 machines (or maybe
- poor network cards) (bugzilla #9322) (thanks to Michael Riss)
-
-2004/04/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: update
-
-2004/04/01 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ms.po, share/po/gl.po, share/po/pt_BR.po, share/po/th.po,
- share/po/et.po, share/po/ja.po, share/po/be.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/uz.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/sl.po, share/po/nn.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/uk.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/vi.po,
- share/po/nl.po, share/po/de.po, share/po/tl.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: updated pot file
-
- * share/po/sk.po, share/po/hr.po, share/po/fi.po, share/po/br.po,
- share/po/mn.po, share/po/ta.po, share/po/eo.po: updated Mongol files
- updated pot file
-
-2004/04/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: move harddrake service confirmation script from spec
- file into its own file
-
- * Makefile.config: list service_harddrake_confirm too
-
- * ugtk2.pm: space cleanup
-
- * standalone/service_harddrake_confirm: pass timeout parameter too
- move harddrake service confirmation script from spec file into its own
- file
-
- * standalone/service_harddrake: let execl() handle the arg array (this is
- safer)
- pass timeout parameter too
- enable to translate a few more messages
- translate "XYZ was added/removed" messages
-
-2004/03/31 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: typo fix
-
- * drakxtools.spec: fix drakxtools postuninstall script
-
-2004/03/30 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * pixmaps/langs/lang-ltg.png, lang.pm: Added missing choice for Latgalian
- (it had been forgotten when adding the
- 10.0 new languages)
-
-2004/03/30 Pixel <pixel at mandrakesoft.com>
-
- * rescue/list: add /sbin/badblocks
-
- * ugtk2.pm: fix relative file names (mostly (only?) for debugging)
-
-2004/03/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: update
- update
- update
-
- * any.pm: share translation with help.pm
-
- * share/po/fr.po: fix inverted translations (#8217)
-
-2004/03/29 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/hi.po: corrected default:LTR entries
-
- * share/po/it.po: corrected default:LTR entries
- updated Italian file
-
-2004/03/29 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/service_harddrake: space "fix"
- typo fix
- only alter xfree config if we found an nvidia card
- try several locations
- check for compressed nvidia modules too
- typo fix
-
- * drakxtools.spec: 10-29mdk
- 10-28mdk
-
- * share/po/fr.po: typo fix
- update
-
-2004/03/29 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/hi.po: corrected default:LTR entries
-
- * share/po/it.po: corrected default:LTR entries
- updated Italian file
-
-2004/03/29 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10-28mdk
-
- * share/po/fr.po: update
-
- * standalone/service_harddrake: try several locations
- check for compressed nvidia modules too
- typo fix
-
-2004/03/28 yrahal
-
- * share/po/ar.po: Arabeyes.org's translation
-
-2004/03/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: s/bcm4400/b44/
-
- * network/adsl.pm (adsl_probe_info) fix vpi, vci rereading (speedtouch
- conf write hexa...)
-
- * drakxtools.spec: fix changelog
-
- * pkgs.pm (installTransactionClosure) fix list refreshing (warly)
-
-2004/03/26 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate:
- - add SMP and BIGMEM for kernel-2.4
- - aggregate all the kernel-2.4 in one occurence not to raised
- the "complicated tags" error in install rpmsrate parsing code
-
-2004/03/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/adsl.pm (adsl_probe_info) fix vpi, vci rereading (speedtouch
- conf write hexa...)
- misc space cleanups (thx perl_checko)
- (adsl_probe_info) fix "manage interface" that broke speedtouch
- configuration
-
- * network/netconnect.pm: s/bcm4400/b44/
- warn than speedtouch only works with 2.4.x kernels for now
-
- * bootloader.pm (method_choices) blacklist again Savage, they're broken
- again :-(
-
- * drakxtools.spec: 10-27mdk
-
-2004/03/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/adsl.pm (adsl_probe_info) fix "manage interface" that broke
- speedtouch configuration
-
- * network/netconnect.pm: warn than speedtouch only works with 2.4.x
- kernels for now
- bcm4400 is known to not support ETHTOOL
-
- * bootloader.pm (method_choices) blacklist again Savage, they're broken
- again :-(
-
- * drakxtools.spec: 10-27mdk
-
- * share/rpmsrate: speedtouch support is definitvely buggy with 2.6.x
- kernel for now
-
-2004/03/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: bcm4400 is known to not support ETHTOOL
-
- * share/rpmsrate: speedtouch support is definitvely buggy with 2.6.x
- kernel for now
-
-2004/03/25 reinouts
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
-
-2004/03/25 Warly <warly at mandrakesoft.com>
-
- * share/compssUsers.server: s/PHPgroupware/Kolab server/
-
-2004/03/24 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm:
- - preferring "p3-smp-64GB" first (for BIGMEM + SMP)
- - also adding i686-up-4GB
- - cleanup code
- fix extension parsing (vmlinuz-2.6.3-7mdksmp &
- vmlinuz-2.6.3-7mdkenterprise vs vmlinuz-2.6.3-7mdk-p3-smp-64GB &
- vmlinuz-2.6.3-7mdk-i686-up-4GB)
- sorting based on @prefered is nearly unused, remove it
-
-2004/03/24 tsdgeos
-
- * share/po/ca.po: Unfuzzying
-
-2004/03/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/isdn.pm (isdn_write_config_backend) load ISDN driver
- up ippp0 interface and delete previous default route
- (isdn_detect_backend) do not try to get "type" field here, we just have
- nothing
- to guess it there
- (isdn_read_config) do not overwrite current parameters with undefed ones
-
- * network/netconnect.pm: fix ISDN modem selection
-
- * modules.pm (probe_category) set ISDN hisax driver type parameter
-
-2004/03/24 Pixel <pixel at mandrakesoft.com>
-
- * share/rpmsrate: when BIGMEM & SMP, use kernel-p3-smp-64GB
-
- * bootloader.pm:
- - preferring "p3-smp-64GB" first (for BIGMEM + SMP)
- - also adding i686-up-4GB
- - cleanup code
- fix extension parsing (vmlinuz-2.6.3-7mdksmp &
- vmlinuz-2.6.3-7mdkenterprise vs vmlinuz-2.6.3-7mdk-p3-smp-64GB &
- vmlinuz-2.6.3-7mdk-i686-up-4GB)
- sorting based on @prefered is nearly unused, remove it
-
-2004/03/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/isdn.pm (isdn_write_config_backend) load ISDN driver
- up ippp0 interface and delete previous default route
- (isdn_detect_backend) do not try to get "type" field here, we just have
- nothing
- to guess it there
- (isdn_read_config) do not overwrite current parameters with undefed ones
-
- * network/netconnect.pm: fix ISDN modem selection
-
- * modules.pm (probe_category) set ISDN hisax driver type parameter
-
- * network/adsl_consts.pm: #5056 really refered to austria, not australia
-
-2004/03/24 David Baudens <baudens at mandrakesoft.com>
-
- * share/po/fr.po: Update translations
-
- * share/rpmsrate: Install kdeutils-kwalletmanager by default when KDE is
- installed
-
-2004/03/24 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_gtk.pm: meta_class server (PowerPack+) needs category
- Workstation
-
- * share/rpmsrate: when BIGMEM & SMP, use kernel-p3-smp-64GB
-
-2004/03/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/adsl.pm (adsl_conf_backend) only disable kernel driver for 2.4.x
- kernels since
- latest speedtouch package is totally broken in userland mode now :-(
-
- * drakxtools.spec: fix changelog
- one more change
- one more change in 10-26mdk
-
- * standalone/service_harddrake: switch between nv and nvidia driver if
- commercial driver isn't installed
-
- * network/adsl_consts.pm: #5056 really refered to austria, not australia
-
-2004/03/24 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/hi.po: updated Hindi file
-
-2004/03/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/adsl.pm (adsl_conf_backend) only disable kernel driver for 2.4.x
- kernels since
- latest speedtouch package is totally broken in userland mode now :-(
-
- * drakxtools.spec: one more change in 10-26mdk
-
-2004/03/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakgw: add a new line for lord cat
-
- * network/netconnect.pm: fix drakconnect config writing when there's only
- one configured
- interface (eg: at install time) (#8998)
-
- * drakxtools.spec: add bug reference in 10-25mdk changelog
- remove doble entries in 10-25mdk changelog
- 10-26mdk
-
- * standalone/drakconnect (del_intf) enable to delete ADSL and ISDN
- connections
-
-2004/03/23 fwang
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/03/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakgw: add a new line for lord cat
-
- * drakxtools.spec: add bug reference in 10-25mdk changelog
- remove doble entries in 10-25mdk changelog
- 10-26mdk
-
- * standalone/drakconnect (del_intf) enable to delete ADSL and ISDN
- connections
-
- * network/netconnect.pm: fix drakconnect config writing when there's only
- one configured
- interface (eg: at install time) (#8998)
- bewan PCI and ethernet ADSL modems work smoothly with 2.6.x kernels
- for ISDN, do the same warning popup about supported kernels
-
- * share/po/gl.po, share/po/ga.po: update
-
-2004/03/23 fwang
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
- update
-
-2004/03/23 Nicolas Planel <nplanel at mandrakesoft.com>
-
- * any.pm: add nolapic support option (NOn Local APIC)
-
-2004/03/23 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/it.po, share/po/uk.po, share/po/sv.po,
- share/po/mk.po, share/po/de.po, share/po/is.po, share/po/hi.po,
- share/po/nn.po, share/po/et.po, share/po/ca.po, share/po/ja.po,
- share/po/sq.po: corrected "default:LTR" translations
-
-2004/03/23 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm, install_any.pm, install_steps_interactive.pm: LSB doesn't
- need kernel 2.4 anymore
-
- * fs.pm, standalone/diskdrake, standalone/drakupdate_fstab:
- - do not pass options is_removable to set_default_options() since it
- is not a global options
- - replace it with a flag in the part or raw_hd
- - set is_removable for part from usb drive
- - ensure usb partitions are not checked at boot time (freq field in
- fstab)
-
- * keyboard.pm:
- - az, tr and tr_f needs XkbOptions 'caps:shift'
- - cleanup
-
- * share/rpmsrate: replace kernel-enterprise with kernel-i686-up-4GB when
- BIGMEM
-
-2004/03/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/rpmsrate: install ndiswrapper for centrino chipsets
-
- * standalone/drakgw: fix drakgw removing MII_NOT_SUPPORTED parameter from
- ifcfg file (#9076)
-
- * network/netconnect.pm: bewan PCI and ethernet ADSL modems work smoothly
- with 2.6.x kernels
- for ISDN, do the same warning popup about supported kernels
-
- * standalone/drakTermServ (interactive_mode) fix button layout (prevent
- button collisions and
- text truncation when translated)
- (client_type) fix layout (checbox was using too muche vertical space)
- enable to go in in --testing mode
-
- * standalone/drakclock: fix packing
-
- * share/po/gl.po, share/po/cy.po, share/po/fr.po, share/po/ga.po: update
-
-2004/03/22 Frederic Crozat <fcrozat at mandrakesoft.com>
-
- * share/po/fr.po: Fix typo
-
-2004/03/22 Florin Grad <florin at mandrakesoft.com>
-
- * network/shorewall.pm: typo (forgot a space)
- do not write the REDIRECT squid rules if one has only one NIC connected
- to the net zone
-
-2004/03/22 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/tl.po: updated Filipino file
-
-2004/03/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakperm (row_setting_dialog) hide dialog's horizontal
- separator, because
- create_okcancel() already creates its own separator (Robert Vojta,
- #9153)
- add space around main vbox (Robert Vojta, #9153)
-
- * standalone/drakclock: Look & feel enhancement in order to have a
- smoother GUI (Robert Vojta,
- #9141) :
- - when not embedded, add 5 pixels border around the whole GUI
- - add border around frames contents
- show timezone in drakclock (Robert Vojta, #9141)
- (get_servers) sort servers (Robert Vojta, #9139)
-
- * detect_devices.pm (isTVcard) typo fix
- fix tv cards managed by cx88 and saa7134 (#9112)
-
- * harddrake/v4l.pm: fix log message
-
- * standalone/drakxtv: fix tv cards managed by cx88 and saa7134 (#9112)
-
- * modules.pm (write_conf) simplify
- typo fix
- fix tv cards managed by cx88 and saa7134 (#9112)
-
- * standalone/logdrake (parse_file) oops, forgot one /o
- fix non first searches (#9115)
-
-2004/03/21 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: done
-
-2004/03/21 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/03/21 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nb.po: updated Norwegian file
-
- * share/po/ar.po: updated Arabic file
-
-2004/03/21 tbacklund
-
- * share/po/fi.po: fully translated, was 25 fuzzy, 5 untranslated
-
-2004/03/21 yrahal
-
- * share/po/ar.po: Committing Arabeyes.org's Arabic translation
-
-2004/03/20 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: updated
-
-2004/03/20 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po: updated Farsi file
-
-2004/03/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakxtv: fix error message (#9080)
- cleanup
- fix loged message (thx perl_checko)
- fix #3193:
- - use right device
- - offer to set the user to config
- fix saa7134 detection (#5612)
- testing mode
- reorder modules import
- fix wiping out /etc/modules.conf (scott@littlefish.ca)
- Defaulted canada-cable to NTSC (Scott Mazur (scott@littlefish.ca)
-
- * standalone/drakvpn: icon
-
- * harddrake/v4l.pm: sync with 2.6.3-4mdk
- reorder modules import
- (config) read current configuration (Scott Mazur <scott@littlefish.ca>)
- share translation
- fix setting options for bttv instead of saa7134 (#5612)
-
- * drakxtools.spec: move draksplash into drakxtools b/c it needs gtk+
- (#7807)
- oops, that should have been 25mdk
-
-2004/03/19 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated
-
-2004/03/19 Frederic Crozat <fcrozat at mandrakesoft.com>
-
- * share/rpmsrate: Update GNOME devel packages
-
-2004/03/19 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ja.po, share/po/DrakX.pot, share/po/nb.po, share/po/zh_CN.po,
- share/po/it.po, share/po/eu.po, share/po/ru.po, share/po/uk.po,
- share/po/cy.po, share/po/mk.po, share/po/af.po, share/po/tl.po,
- share/po/cs.po: updated pot file
-
- * share/po/et.po: Updated Estonian file; fixed quote in Hindi file
- updated pot file
-
- * share/po/sk.po, share/po/th.po, share/po/hr.po, share/po/sv.po,
- share/po/ltg.po, share/po/zh_TW.po, share/po/sq.po, share/po/nn.po,
- share/po/mn.po, share/po/pt.po, share/po/fr.po, share/po/ta.po: updated
- po files
- updated po files
- updated pot file
-
- * share/po/ms.po, share/po/gl.po, share/po/pt_BR.po, share/po/be.po,
- share/po/ko.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/uz.po, share/po/ro.po, share/po/sr@Latn.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/br.po, share/po/sl.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/lt.po, share/po/tg.po, share/po/bs.po,
- share/po/wa.po, share/po/is.po, share/po/az.po, share/po/vi.po,
- share/po/nl.po, share/po/de.po, share/po/eo.po, share/po/bg.po,
- share/po/el.po, share/po/uz@Latn.po: updated po files
- updated pot file
-
- * standalone/drakvpn: disambiguated string
-
- * share/po/hi.po: updated po files
- Updated Estonian file; fixed quote in Hindi file
- updated pot file
-
-2004/03/19 Pixel <pixel at mandrakesoft.com>
-
- * detect_devices.pm: adapt to devfs (?) naming which breaks compatibility
- (bugzilla #9029)
-
- * ugtk2.pm:
- - fix _find_imgfile()
- - cleanup
-
- * install_steps.pm: devfs=mount is the default for kernel 2.6 (what about
- 2.4 ?), so one need
- devfs=nomount when devfsd is not installed
-
-2004/03/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: update
-
- * standalone/drakvpn: add hint for translators (cooker-i18n request)
-
- * drakxtools.spec: 10-24mdk
-
- * network/netconnect.pm: eagle-usb maintainers ask not to fill dns by
- default because ppp will
- return better one through peerdns option
- dnsX were renamed as dnsServerX+1 long time ago and are managed one
- step earlier
-
-2004/03/19 Warly <warly at mandrakesoft.com>
-
- * standalone/drakboot: add Olivier Blin patches to reread the previous
- configuration
-
-2004/03/19 Pixel <pixel at mandrakesoft.com>
-
- * detect_devices.pm: adapt to devfs (?) naming which breaks compatibility
- (bugzilla #9029)
-
- * ugtk2.pm:
- - fix _find_imgfile()
- - cleanup
-
- * install_steps.pm: devfs=mount is the default for kernel 2.6 (what about
- 2.4 ?), so one need
- devfs=nomount when devfsd is not installed
-
-2004/03/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/sound.pm (switch) perl_checker fix
-
- * network/netconnect.pm: eagle-usb maintainers ask not to fill dns by
- default because ppp will
- return better one through peerdns option
- dnsX were renamed as dnsServerX+1 long time ago and are managed one
- step earlier
-
-2004/03/18 David Baudens <baudens at mandrakesoft.com>
-
- * standalone/icons/localedrake-32.png,
- standalone/icons/localedrake-48.png, drakxtools.spec,
- standalone/icons/localedrake-16.png, Makefile.drakxtools: Add icons for
- localedrake menu entry
-
- * share/rpmsrate: Add kdegraphics-common in GRAPHICS section
-
-2004/03/18 marco
-
- * share/po/it.po: successivo -> avanti
-
-2004/03/18 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/tl.po: updated Filipino file
-
-2004/03/18 Pixel <pixel at mandrakesoft.com>
-
- * ugtk2.pm: new helper function may_set_icon that takes care of missing
- wiz_default_up during install
-
- * partition_table/dos.pm: not guessing a geometry when default_ok is no
- big deal
-
-2004/03/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/sound.pm: install alsa-utils if needed (#6288)
-
- * network/adsl.pm: only kill pppoa for sagem modem (eg for bewan, we use
- pppoa plugin for
- ppp)
- fix bewan support by providing an ad-how /etc/ppp/options
-
- * standalone/icons/drakups.png: use mdk icon for drakups
-
- * network/netconnect.pm: fix obvious wrong lookup (at install time, we
- must check installed
- root fs instead of /)
- always offer to restart adsl connections
- only warn about 2.4.x kernel for bewan modem
- only warn about the fact we need 2.4.x kernel when we're under 2.6.x
-
- * Makefile.config: reput back drakups
-
- * share/rpmsrate: install kernel-2.4.x for pci modems whose binary driver
- isn't ported
- on 2.6.x
-
-2004/03/18 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: move the DRIVER part from INSTALL to SYSTEM
- fix speedtouch-mgm -> mgmt
- fix bad indentation
-
-2004/03/18 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * lang.pm: Gnome Low-Saxon translations use "nds_DE", putting it on
- LANGUAGE
-
-2004/03/18 Pixel <pixel at mandrakesoft.com>
-
- * ugtk2.pm: new helper function may_set_icon that takes care of missing
- wiz_default_up during install
-
- * partition_table/dos.pm: not guessing a geometry when default_ok is no
- big deal
-
-2004/03/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: only warn about the fact we need 2.4.x kernel
- when we're under 2.6.x
-
- * network/adsl.pm: only kill pppoa for sagem modem (eg for bewan, we use
- pppoa plugin for
- ppp)
- fix bewan support by providing an ad-how /etc/ppp/options
-
- * Makefile.config: reput back drakups
-
- * share/rpmsrate: install kernel-2.4.x for pci modems whose binary driver
- isn't ported
- on 2.6.x
-
-2004/03/17 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/zh_TW.po: chinese names for countries
-
- * share/po/uk.po: updated Ukrainian file
-
- * share/po/mn.po: updated po files
-
-2004/03/17 Pixel <pixel at mandrakesoft.com>
-
- * install_gtk.pm: enlarge steps window (no pb since the window is
- invisible) (bugzilla #8985)
-
- * standalone/diskdrake: add "diskdrake
- --change-geometry=<device>=[<cylinders>,]<heads>,<sectors>" to
- allow forcing the geometry used in the partition table. This allows
- helping
- poor Windows booting using old int13 function 2. This should work when
- Windows
- has not been resized.
-
-2004/03/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/sound.pm: do not alter oss<->alsa drivers mapping table
- (olivier blin, #8501)
- When current driver doesn't match current sound card (because sound
- card has been replaced for example), draksound allows to choose the
- driver between current driver and its alternatives, but does not
- propose default driver and alternatives for current sound card. So
- available drivers don't match current sound card (olivier blin, #8501)
-
- * standalone/drakedm: fix dm restart
-
- * standalone/service_harddrake: remove /etc/asound.state *before*
- restarting sound service
-
- * drakxtools.spec: 10-24mdk
-
-2004/03/17 Warly <warly at mandrakesoft.com>
-
- * share/logo-mandrake.png: community install logo
-
-2004/03/17 David Baudens <baudens at mandrakesoft.com>
-
- * share/po/fr.po: Update advertising translations
-
- * share/compssUsers: Update
- Update
-
- * share/rpmsrate: Fix my mistake (forgot to cvs up before commit)
- Update
-
-2004/03/17 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/zh_TW.po: chinese names for countries
-
-2004/03/17 Pixel <pixel at mandrakesoft.com>
-
- * partition_table/dos.pm, partition_table/raw.pm, partition_table.pm: add
- set_best_geometry_for_the_partition_table to use the hd geometry instead
- of the physical geometry returned by the kernel (since for now i can't
- have bios geometry on 2.6)
-
-2004/03/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakconnect: misc perl_checker cleanup
- remove debug statements
- fix no information for drivers that do not support ethtool ioctl (eg:
- sk98lin): try to match the device by interface name and driver name
- (won't work for several cards managed by the same driver)
-
- * share/po/fr.po: update
-
- * share/rpmsrate: roll-back bogus dadou commit
-
- * network/netconnect.pm: fix pci modem support:
- - handle manually installed drivers
- - removed urpmi sources
- - faster checking for driver presence
-
-2004/03/17 Warly <warly at mandrakesoft.com>
-
- * share/logo-mandrake.png: community install logo
-
- * share/rpmsrate: s/glade/glade2/
-
-2004/03/17 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/eu.po: updated Basque file
-
-2004/03/17 Pixel <pixel at mandrakesoft.com>
-
- * partition_table/raw.pm, partition_table.pm: add
- set_best_geometry_for_the_partition_table to use the hd geometry instead
- of the physical geometry returned by the kernel (since for now i can't
- have bios geometry on 2.6)
-
- * partition_table/dos.pm: add set_best_geometry_for_the_partition_table to
- use the hd geometry instead of the physical geometry returned by the
- kernel (since for now i can't have bios geometry on 2.6)
- - sector2CHS() now gives sector number starting at 0
- - CHS2rawCHS() takes care of giving sector number starting at 1
-
-2004/03/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/data.pm: split out agp controllers out of bridges
-
- * standalone/drakups: use std banner
- use new $ugtk2::wm_icon for x11 icon
-
- * network/ethernet.pm (get_eth_cards) if SIOCETHTOOL ioctl is not
- supported by driver, try
- to lookup card by driver in devices list (if there's only one physical
- card managed by this driver)
-
- * standalone/logdrake, standalone/drakfont: use new $ugtk2::wm_icon for
- x11 icon
-
- * network/adsl.pm: do not pass eth interface and user to adsl-start,
- they're already
- provided in pppoe.conf (#2004)
-
- * network/adsl_consts.pm: update wanadoo dns according to
-
- http://www.wanadoo.fr/bin/frame2.cgi?u=http%3A//assistance.wanadoo.fr/reponse791.asp
-
- * standalone/service_harddrake: add agpgart modules to modprobe.preload if
- needed
-
- * standalone/harddrake2: use new $ugtk2::wm_icon for x11 icon
- show module for system bridges if it's not unknown (aka not managed by
- kernel core)
- blacklist agp controllers class (they're still visible in the bridges
- one)
-
- * ugtk2.pm (_create_dialog) set x11 icon for dialogs too
- (new) fix x11 icon for Gtk2::Plug
- (_find_imgfile) prevent matching subdirectory (eg: harddrake)
-
- * network/netconnect.pm: fix SmartLink modem managment (#8959)
-
- * standalone/drakconnect: misc perl_checker cleanup
- remove debug statements
- fix no information for drivers that do not support ethtool ioctl (eg:
- sk98lin): try to match the device by interface name and driver name
- (won't work for several cards managed by the same driver)
- use new $ugtk2::wm_icon for x11 icon
-
-2004/03/16 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: transl.in progress
-
-2004/03/16 David Baudens <baudens at mandrakesoft.com>
-
- * share/compssUsers.server: Add NETWORKING_FILE support for PowerPackPlus
-
- * standalone/icons/harddrake2/ide_hd.png,
- standalone/icons/harddrake2/scanner.png,
- standalone/icons/harddrake2/hw_mouse.png,
- standalone/icons/harddrake2/joystick.png,
- standalone/icons/harddrake2/hw_printer.png,
- standalone/icons/harddrake2/tv.png,
- standalone/icons/harddrake2/memory.png,
- standalone/icons/harddrake2/multimedia.png,
- standalone/icons/harddrake2/floppy.png,
- standalone/icons/harddrake2/video.png,
- standalone/icons/harddrake2/scsi_hd.png,
- standalone/icons/harddrake2/unknown.png,
- standalone/icons/harddrake2/harddisk.png,
- standalone/icons/harddrake2/sound.png,
- standalone/icons/harddrake2/cd.png,
- standalone/icons/harddrake2/hw_network.png: Update images
-
-2004/03/16 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * pixmaps/langs/lang-ku.png, pixmaps/langs/lang-hy.png,
- pixmaps/langs/lang-tt.png: updated and added pictures for language
- selection list.
- enabled choice for Filipino (we have quite good translations),
- Low-Saxon and Kyrgyz.
-
- * pixmaps/langs/lang-gn.png, pixmaps/langs/lang-nds.png,
- pixmaps/langs/lang-ky.png, pixmaps/langs/lang-tk.png,
- pixmaps/langs/lang-ph.png: readding images in binary mode
- removed pixmaps to readd them in binary mode
- updated and added pictures for language selection list.
- enabled choice for Filipino (we have quite good translations),
- Low-Saxon and Kyrgyz.
-
- * lang.pm: changed order of LANGUAGE value for Filipino so monolingual
- windowmanagers
- can have translated menus
- updated and added pictures for language selection list.
- enabled choice for Filipino (we have quite good translations),
- Low-Saxon and Kyrgyz.
-
- * share/po/it.po: updated Italian file
-
-2004/03/16 Pixel <pixel at mandrakesoft.com>
-
- * standalone/drakupdate_fstab: choose wether to use supermount is now
- based on variable SUPERMOUNT in /etc/sysconfig/dynamic
-
- * ugtk2.pm: fix typo
- - add $ugtk2::wm_icon (esp. for park-rpmdrake)
- - cleanup, correct indentation
-
-2004/03/16 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/logdrake (alert_config) fix wizard when logdrake is embedded
- (alert_config) fix wizard on second run
- (alert_config) make it a wizard again (that is, with banner,
- "previous"/"next" buttons and the like)
- set x11 ico
-
- * share/rpmsrate: wireless-tools is listed twice!
- speedtouch was listed two times in the old days!
- install speedtouch firmware too
- automatically install speedtouch for Alcatel USB ADSL modems
- automatically install eagle-usb for sagem ADSL modems
- install kernel-2.4.x for internal ISDN devices
-
- * ugtk2.pm (new) set x11 icon for non wizard tools
- (new) set default x11 icon
-
- * standalone/harddrake2, standalone/drakups: set x11 ico
-
- * standalone/drakclock: fix server lookup (#8846)
-
- * standalone/icons/drakups.png: add drakups icon
- "Copyright (C) 2004 MGE UPS SYSTEMS / Luc Descotils
- This graphic is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- at your option) any later version..."
-
- * network/netconnect.pm: bewan support
- only show encapsulation parameter for sagem modem
- preselect pppoa for bewan too
- make it clear these checks are only for pci modems
- pci modem: only take care of selected one
- warn that we only support kernel 2.4.x for pci modems
- remove debug statement
- for ADSL Bewan and ISDN modem, warn that only 2.4.x kernels are
- supported
-
- * network/adsl.pm: bewan support
- (adsl_conf_backend) fix adsl stop on pppoa links
-
- * network/modem.pm (ppp_configure) really fix modem symlink (#7967)
-
- * standalone/drakconnect: set x11 ico
- (configure_net) do not offer to alter domain name since this is
- achievable through FQDN
-
- * standalone/drakfont (interactive_mode) better style
- (interactive_mode, dialog) let's have nice icon in sub dialogs when
- embedded too
- (dialog) make subdialogs be transcient for main window when not embedded
- set x11 ico
-
-2004/03/16 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: clean majors introduced into the CVS by mistake
-
-2004/03/15 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate: Replace xsane by scanner-gui (allows to install kooka or
- xsane)
- Readd Audacity (needs to be moved from Contrib to Main; it should be
- installed by default for all products)
-
-2004/03/15 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Fix misnamed inittab\$\$IP=xxx.xxx.xxx.xxx\$\$.
-
-2004/03/15 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakconnect (configure_net) enable to alter hostname
- (configure_net) fix unlisted first dns server
-
- * drakxtools.spec: 10-23mdk
-
- * standalone/logdrake: fix explanations in mcc that got broken by #8412
- speedup
-
- * network/netconnect.pm: always write scripts like in the old days but
- when there's no cnx
- skip "start on boot" step for LAN (already managed by network scripts)
- perl_checker fix
- write ether conf later on QA request
- do not list anymore wireless cards in LAN connection, only in wireless
- connections
- fix ADSL modems not listed unless one try to manually pick a network
- card (#8611): prevent module::interactive from offering to pick a
- module when there's no network cards
-
- * share/po/fr.po: update
-
-2004/03/15 Florin Grad <florin at mandrakesoft.com>
-
- * standalone/drakgw: add ppp+ and ippp+ at the interfaces list
-
- * network/shorewall.pm: add ppp+ and ippp+ in the interfaces list
-
-2004/03/15 reinouts
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
-
-2004/03/15 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: do not list anymore wireless cards in LAN
- connection, only in wireless
- connections
- fix ADSL modems not listed unless one try to manually pick a network
- card (#8611): prevent module::interactive from offering to pick a
- module when there's no network cards
-
- * network/ethernet.pm (mapIntfToDevice) do not try to match a physical
- device when SIOCETHTOOL ioctl is not supported
-
- * standalone/drakclock: make the ntpdate after stopping the ntpd
- (manu@agat.net, #8141)
-
- * network/network.pm (write_interface_conf) fix missing quotes around
- wireless encryption key (#8887)
-
- * standalone/drakconnect (configure_net) fix spacing around DNS/domainname
- settings table
- (configure_net) write back domain name and dns servers
- (configure_net) fix domainname reading
- (configure_net) fix crash on internet access dialog closing
- (configure_net) update connection status in background (#7800)
- add --old option in order to see old interface
-
-2004/03/14 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po: updated Farsi file
-
- * share/po/cy.po, share/po/nn.po, share/po/ca.po: updated Welsh and
- Nynorsk files
-
-2004/03/14 tbacklund
-
- * share/po/fi.po: fully translated, was 10 fuzzy, 1 untranslated
-
-2004/03/14 tsdgeos
-
- * share/po/ca.po: updating
-
-2004/03/14 yrahal
-
- * share/po/ar.po: Weekly Arabeyes' Arabic translation.
-
-2004/03/13 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated translation
-
-2004/03/13 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po: updated Farsi file
-
- * share/po/cy.po: Updated Welsh file
-
- * share/po/et.po: updated Estonian file
-
- * share/po/uz.po, share/po/uz@Latn.po: updated Uzbek files
-
-2004/03/13 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm: Let printerdrake install "scanner-gui" instead
- of "xsane" when it sets up an HP multi-function device.
- "MandrakeSoft" -> "Mandrakesoft", "Mandrake" -> "Mandrakelinux".
-
- * standalone/scannerdrake: Let scannerdrake install "scanner-gui" instead
- of "xsane", so that scanning GUI actually used can be determined by the
- system environment.
- "MandrakeSoft" -> "Mandrakesoft", "Mandrake" -> "Mandrakelinux".
-
- * standalone/printerdrake: "MandrakeSoft" -> "Mandrakesoft", "Mandrake" ->
- "Mandrakelinux".
-
-2004/03/12 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate: Update for PowerPackPlus
-
-2004/03/12 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated
-
-2004/03/12 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nb.po: updated Norwegian file
-
- * lang.pm: small correction
- improved previous change
-
- * share/po/ms.po, share/po/id.po, share/po/gl.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/nn.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/mn.po, share/po/ko.po, share/po/sr.po,
- share/po/lt.po, share/po/he.po, share/po/ca.po, share/po/ar.po,
- share/po/ltg.po, share/po/uz.po, share/po/is.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/ta.po, share/po/sq.po, share/po/sr@Latn.po,
- share/po/eu.po, share/po/es.po, share/po/eo.po, share/po/bg.po,
- share/po/el.po, share/po/lv.po, share/po/hu.po, share/po/uz@Latn.po:
- merged some strings from mcc
-
-2004/03/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/rpmsrate: eagle was renamed as eagle-usb
-
-2004/03/12 fwang
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/03/12 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nb.po: updated Norwegian file
-
- * lang.pm: improved previous change
- always define KDM fonts dependending on encoding (fix for bug #8714)
-
-2004/03/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10-22mdk
-
- * standalone/drakconnect (build_notebook) default protocol is dhcp (eg for
- unconfigured
- interfaces), thus preventing ip checks faillure on protocol change on
- other network interfaces
- (apply) do not write IPADDR, NETMASK and NETWORK fields in ifcfg-ethX
- when using DHCP
- (apply) factorize interface hash
- (apply) fix crash (is_dynamic_ip expect a hash of network interaces,
- not a single interface)
- (configure_net) kill useless code
- (configure_net) fix layout by using a table
- remove a few more parameters
- (configure_net) get rid of mask now we've cleaned up parameters
- only show dns from resolv.conf for now
- (configure_net) remove some parameters according to specs
- (configure_net) sanitize buttons layout (#8637)
-
- * network/netconnect.pm: provide a nice way to go back to summary when
- interface is already configured (#8002)
- fix buttons so that they're labeled as cancel/ok instead of
- previous/next when warning in network installations
- fix writing drakconnect config file at install time (#7478)
-
- * standalone/drakfont (advanced_install) "Install" button is sensitive
- only if there're some
- fonts in the font list
-
-2004/03/12 Frederic Lepied <flepied at mandrakesoft.com>
-
- * share/rpmsrate: removed audacity (in contrib)
-
-2004/03/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10-22mdk
-
- * network/netconnect.pm: fix writing drakconnect config file at install
- time (#7478)
-
-2004/03/11 Florin Grad <florin at mandrakesoft.com>
-
- * standalone/drakgw: fix the disable, enable functions
-
- * network/shorewall.pm: add some tests for the REDIRECT squid rules
-
-2004/03/11 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/tl.po: updated Filipino file
-
-2004/03/11 Pixel <pixel at mandrakesoft.com>
-
- * install_any.pm: fix installing locales-XX for lang=nb which needs
- locales-no (one needs to use provides)
-
- * fsedit.pm: disallow lvm on / with no /boot until lilo handles it
-
- * install2.pm: tentatively fix lilo with lvm on /
-
- * bootloader.pm:
- - always generate a precise entry using the precise version
- - remove the linux-2.4 or linux-2.6 entries which don't work together
- with the precise version entry
- - still have the "linux" entry
-
- * install_steps_interactive.pm: nice fix for installing locales-XX
- corresponding the chosen country (using packagesProviding())
- workaround code trying to install locales-nb (bugzilla #8287)
-
- * install_steps.pm: catch cdie's in auto_install
-
- * do_pkgs.pm: use pkgs::packagesProviding()
-
- * pkgs.pm:
- - add function packagesProviding()
- - use it
-
-2004/03/11 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Install extra packages when using wizard too.
- Key transfer in GUI wasn't reporting errors.
-
-2004/03/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakvpn: remove debug statement
- fix previous button on first step (robert.vojta@qcm.cz, anthill #387)
-
- * ugtk2.pm (gtktext_insert) if we want anonymous tags, just create
- anonymous tags
- instead of creating fake tag names that we just discard after (rand is
- not guarranted to not return the same number twice...)
-
- * harddrake/data.pm: fix in strict mode
-
- * detect_devices.pm: workaround anthil bug #369
-
- * mdk-stage1/probing.c: fix eth[67] detection (gc)
-
- * standalone/drakgw: fix previous button on first step
- (robert.vojta@qcm.cz, anthill #386)
-
- * standalone/logdrake (text_append) fix second run (on next filling, we
- shall not create
- tags with name of existing ones)
- (parse_file) fix search :-)
- (log_output) take a color and a font as parameters now
- (log_output__real) splited from log_output(), insert text into
- textview at once
- (*) use new framework to speedup (#8412)
- (text_append) introduce it, forked from gtktext_insert()
-
- unlike the later, it create named tags, thus reducing tagtable size
- from 30000+ tags to 10-20, thus speedup logdrake in quite a big way.
-
- it should probably replace gtktext_insert in mdk10.1 since all
- gtktext_insert users really have quite a few tags (eg: 1 for
- harddrake2 and rpmdrake)
- (parse_file) speed up it by 20% (#8412) but logcolorize is the top one
- in profiles
-
- * standalone/drakboot: list yes/no for autologin in a more intuitive way,
- that is yes is
- grouped with user and wm pull down menus (robert.vojta@qcm.cz, anthill
- #390)
-
-2004/03/10 fwang
-
- * share/po/zh_CN.po: update
-
-2004/03/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
- share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/eo.po,
- share/po/bg.po, share/po/cs.po, share/po/el.po, share/po/uz@Latn.po:
- updated pot file
-
- * share/po/tl.po: updated pot file
- Updated Filipino file
-
- * keyboard.pm: list jp106 keyboard as latin only to avoid the misleading
- screen about
- language switching (japanese input doesn't use that method)
-
-2004/03/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/help-zh_CN.pot, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/advertising/dwd-04.pl, share/po/pt_BR.po, share/po/th.po,
- share/po/et.po, share/po/ja.po, share/po/hr.po,
- install_steps_interactive.pm, network/netconnect.pm, share/po/be.po,
- share/advertising/dis-10.pl, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, network/drakfirewall.pm, install_steps_newt.pm,
- share/po/da.po, share/po/ca.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/uz.po, share/po/help-ru.pot,
- share/advertising/dwd-02.pl, standalone/printerdrake, share/po/ro.po,
- share/advertising/dwd-01.pl, share/advertising/dis-01.pl,
- share/po/zh_TW.po, share/po/sr@Latn.po, share/po/sq.po,
- share/advertising/dwd-05.pl, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/advertising/ppp-10.pl, share/po/lv.po,
- share/po/hu.po, printer/printerdrake.pm, share/advertising/pwp-09.pl,
- share/po/fa.po, share/po/id.po, share/po/ru.po, help.pm, share/po/br.po,
- share/po/sl.po, share/advertising/ppp-03.pl, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/advertising/dwd-03.pl, share/po/uk.po, share/po/mn.po,
- share/po/help-de.pot, share/po/lt.po, share/po/cy.po, crypto.pm,
- share/advertising/ppp-02.pl, share/po/help-it.pot,
- install_interactive.pm, share/advertising/dwd-07.pl, share/po/tg.po,
- any.pm, install_steps_gtk.pm, share/po/bs.po, share/po/mk.po,
- share/po/wa.po, install_messages.pm, share/po/is.po, share/po/af.po,
- share/po/hi.po, share/po/az.po, bootloader.pm, share/po/pt.po,
- share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/nl.po,
- share/po/help-fr.pot, share/advertising/ppp-01.pl, share/po/tl.po,
- share/po/de.po, share/advertising/pwp-03.pl,
- share/advertising/ppp-04.pl, share/advertising/pwp-04.pl,
- share/advertising/pwp-01.pl, share/po/help-es.pot, share/po/eo.po,
- share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/advertising/dwd-09.pl, standalone/scannerdrake,
- share/po/uz@Latn.po: spell Mandrakelinux in one word
-
- * standalone/drakperm (row_setting_dialog) sanitize spacing in frames
-
-2004/03/10 Florin Grad <florin at mandrakesoft.com>
-
- * standalone/drakgw: fix the 8669 bug
-
-2004/03/10 fwang
-
- * share/po/zh_CN.po: update
- update
-
-2004/03/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/tl.po: Updated Filipino file
-
-2004/03/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * mdk-stage1/probing.c (get_net_devices) increase max number of detectable
- net cards from 6 to 10
-
-2004/03/09 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/03/09 Pixel <pixel at mandrakesoft.com>
-
- * modules.pm: special case to handle imm & ppa on kernel 2.6:
- - need parport_pc
- - modules insmod always succeed, so need to check
- /proc/sys/dev/parport/parport0/devices/{imm,ppa}
-
- * keyboard.pm: keyboard::load() causes some errors on kernel 2.4, ignoring
- them
-
- * Xconfig/card.pm: catch exception (bugzilla #8726)
-
-2004/03/09 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Reverse trivial translation typo. Change
- the_time() usage.
- Fix breakage introduced in config rewrite.
- All wizard methods should end at config summary.
- Support for plain tar. Deal with mixture of formats on restore. (#8676)
- Fix issue with first incremental pass not using base as comparison.
- Rework most file selections to use the same sub, drop other subs.
-
-2004/03/09 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm: Made more clear choices in the first-time
- dialog of printerdrake.
-
-2004/03/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/draksplash: fix boot_conf_path usage
- rename thm_conf_path as boot_conf_path to prevent confusion with
- thm_path
- (write_boot_thm) simplify through mkdir_p()
- misc perl_checker cleanups
- fix config file path (directory is now named config, not cfg)
-
- * harddrake/data.pm: really, really fix ISDN cards detection :-(
- really adapt to new network::isdn::isdn_detect_backend() API
-
- * share/po/fr.po: respect upcase letters
-
- * network/isdn.pm (read_providers_backend) add prototype in order to
- please lord perl_checker
-
- * standalone/drakbackup: fix crash in wizard (#8654) (setVarsInSh use
- output instead of output_p...)
- (the_time) simplify
-
- * network/netconnect.pm: fix isdn config step
- isdn config step: enable to alter defined but empty fields
- fix parameters reading/writin in isdn config step: take parameters
- from isdn data structure, not cnx one
- fix isdn config step by using runtime references
-
-2004/03/08 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
- share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: updated pot file
-
-2004/03/08 Pixel <pixel at mandrakesoft.com>
-
- * install_any.pm: fix typo
- in generate_automatic_stage1_params():
- - handle FTP via HTTP proxy (bugzilla #8699)
- - cleanup using a different data-structure
-
- * modules.pm: a missing module is now an error, that way it won't be in
- scsi_hostadapters. In load_category(), exception is caught, so no pb
- when using load_category(). But beware, this may break!
-
-2004/03/08 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Fix to prevent saving host passwd when user
- requests not to (#8700).
-
-2004/03/08 Pixel <pixel at mandrakesoft.com>
-
- * modules.pm: a missing module is now an error, that way it won't be in
- scsi_hostadapters. In load_category(), exception is caught, so no pb
- when using load_category(). But beware, this may break!
-
- * install_any.pm: in generate_automatic_stage1_params():
- - handle FTP via HTTP proxy (bugzilla #8699)
- - cleanup using a different data-structure
-
-2004/03/08 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: UI coherency (#8675).
- Fix some missing configuration options (#8654).
-
-2004/03/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: rename ensure_is_installed_if_availlable( as
- ensure_is_installed_if_available()
- install unicorn package for bewan modems
-
- * do_pkgs.pm: rename ensure_is_installed_if_availlable( as
- ensure_is_installed_if_available()
-
-2004/03/08 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/03/08 Pixel <pixel at mandrakesoft.com>
-
- * devices.pm: nicer debug error message
-
- * modules.pm: a missing module is now an error, that way it won't be in
- scsi_hostadapters. In load_category(), exception is caught, so no pb
- when using load_category(). But beware, this may break!
-
- * fsedit.pm: /proc/partitions parsing was broken for scsi cdroms using
- non-devfs names, and
- our 2.6 doesn't use devfs names in /proc/partitions... :'-(
- (bugzilla #8641)
-
-2004/03/08 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: UI coherency (#8675).
- Fix some missing configuration options (#8654).
-
-2004/03/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: rename ensure_is_installed_if_availlable( as
- ensure_is_installed_if_available()
- install unicorn package for bewan modems
- fix variable interpolation in strings
- misc perl_checker cleanups
- isdn_read_config() alter its argument, thus there's no need in returning
- it
- (which may induce developer in error by believing argument is not
- overwritten...)
- standalone drakconnect already discard returned value anyway...
- port old ISDN wizard upon new wizard layer
- fix first_modem() call
- indent
- simplify speedtouch firmware installation through newly introduced
- do_pkg::ensure_is_installed_if_availlable()
- wizard: be aware of bewan modems detection
-
- * detect_devices.pm (getBewan) fix bewan modem detection
-
- * standalone/drakperm: center labels like before
-
- * do_pkgs.pm: rename ensure_is_installed_if_availlable( as
- ensure_is_installed_if_available()
- (ensure_is_installed_if_availlable) introduce it in order to check if we
- need
- to install a package, then install it if it's availlable (eg: for binary
- drivers not availlable in download edition)
-
- * network/isdn_consts.pm:
- - add "|" separator
- - remove bus from description (the user has already selected the bus
- type)
-
- * share/po/fr.po: fix missing upercase first letter
- be aware of string change due to bewan support
-
- * share/po/br.po: be aware of string change due to bewan support
- update
-
- * standalone/draksplash (make_boot_frame) fix crash on color switch
- (mk_frame)
- - workaround horrible packing by using a table instead of a vbox
- - do packing of resulted table outside mk_frame() which is much saner
- fix spacing around commas (sanitizing)
- gc prefers "obj->method" rather than "method obj" call style
- use option menu for resolutions list
- (mk_frame) enable to use either combo boxes or option menus for lists
- (mk_frame) fix combo boxes filling
- (which_res_exist) unjonathan-ize
- (show_prev) only redraw needed part, not whole image
- (show_prev) fix crash on image drawing
- (show_prev) fix crash on image scaling
- fix crash on "preview" button
- (get_this_thm_res_conf) add prototype to help perl_checker
- kill unused variables
- kill perl4 function call style
-
- * network/isdn.pm: isdn_read_config() alter its argument, thus there's no
- need in returning it
- (which may induce developer in error by believing argument is not
- overwritten...)
- standalone drakconnect already discard returned value anyway...
- kill isdn_get_info() and isdn_get_list() (they were unused since quite a
- few
- releases :-()
- (isdn_get_cards) introduce it to build a tree bus|card for isdn wizard
- (get_info_providers_backend) prevent faillure as soon as translaters
- catch up
- export isdn_read_config()
- kill isdn_ask(), isdn_ask_info() and isdn_ask_protocol() since they were
- merged into wizard (aka ported to new wizard layer)
- (isdn_get_cards_by_type) splited out of old isdn_ask() func
- (get_info_providers_backend) drop file argument and do ISDN db lookup in
- place
- (read_providers_backend) move it from network::tools to network::isdn
- (isdn_detect_backend) enhance detection: just return a list of devices
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/da.po, share/po/ca.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/uk.po, share/po/mn.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/nl.po,
- share/po/tl.po, share/po/de.po, share/po/eo.po, share/po/el.po,
- share/po/cs.po, share/po/bg.po, share/po/uz@Latn.po: be aware of string
- change due to bewan support
-
- * network/adsl.pm (adsl_detect) detect bewan ADSL modems
-
- * network/tools.pm (read_providers_backend) move it from network::tools to
- network::isdn
-
- * harddrake/data.pm: adapt to new network::isdn::isdn_detect_backend() API
-
- * ugtk2.pm (Gtk2::WrappedLabel::new) fix unusing label
- (Gtk2::WrappedLabel::new) enable to alter default alignment
-
-2004/03/08 yrahal
-
- * share/po/ar.po: Doing a sync with Arabeyes.org's CVS...
- There should be no stat differences anymore.
-
-2004/03/07 fwang
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/03/07 keld
-
- * share/po/da.po: updates
- soft/ftw/po/da.po gi/perl-install/share/po/da.po
-
-2004/03/07 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ar.po: updated po file
-
-2004/03/07 tbacklund
-
- * share/po/fi.po: finnish translations at 100% again...
-
-2004/03/07 yrahal
-
- * share/po/ar.po: Committing Arabeyes.org's Arabic translation of the
- week...
-
-2004/03/06 fwang
-
- * share/po/zh_CN.po: update
-
-2004/03/06 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
- share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: updated pot file
-
-2004/03/05 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/03/05 keld
-
- * share/po/da.po: updates
- gi/perl-install/share/po/da.po
-
-2004/03/05 Pixel <pixel at mandrakesoft.com>
-
- * install_any.pm: replacing automatic=method:disk with $param instead of
- adding $param (since $param already contains automatic=met:disk)
-
- * fs.pm: no entry in fstab for zips (now cleanly done by hotplug)
-
- * detect_devices.pm: fix warning
-
-2004/03/05 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/cups.pm, printer/printerdrake.pm: Let URIs listed by "lpinfo -v"
- be shown in the dialog for entering a URI manually.
-
-2004/03/05 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- standalone/drakTermServ, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/ar.po,
- share/po/ltg.po, share/po/nb.po, share/po/uz.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/nn.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/lt.po, share/po/cy.po, share/po/tg.po,
- share/po/bs.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/fr.po, share/po/ta.po, share/po/vi.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: typo fix
-
- * network/network.pm (write_resolv_conf) only remove /etc/resolv.conf if
- it's really a link
- (prevent no resolv.conf rewriting when it was empty eg b/c link was
- dead)
-
-2004/03/04 keld
-
- * share/po/da.po: updates
- gi/perl-install/share/po/da.po
- Updates
- gi/perl-install/share/po/da.po
- Updates
- gi/perl-install/share/po/da.po
-
-2004/03/04 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po, share/po/ca.po, share/po/nn.po: updated Estonian file
- updated pot file
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/ja.po, share/po/hr.po, share/po/be.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/he.po, share/po/da.po,
- share/po/ar.po, share/po/ltg.po, share/po/uz.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/mn.po, share/po/uk.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/fr.po,
- share/po/ta.po, share/po/vi.po, share/po/nl.po, share/po/de.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: updated pot file
-
- * share/po/tl.po: updated po file
- updated pot file
-
- * share/po/nb.po: updated Norwegian file
- updated pot file
-
-2004/03/04 Pixel <pixel at mandrakesoft.com>
-
- * install_steps.pm, install_steps_interactive.pm: fix & cleanup generating
- replay & auto_install images
- (thanks to David Eastcott)
-
- * install_any.pm: oops, fix commit
- fix & cleanup generating replay & auto_install images
- (thanks to David Eastcott)
-
-2004/03/04 tsdgeos
-
- * share/po/ca.po: Unfuzzying
-
-2004/03/04 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: fix crash on modem configuration in installer
- (standalone drakconnect
- didn't had the bug because it has already loaded the network::modem
- package at this stage)
-
- * standalone/draksec (wait_msg) show up some translated title
-
- * ugtk2.pm: enable exception managment even at install time (installer set
- $::no_ugtk_init)
-
-2004/03/04 Pixel <pixel at mandrakesoft.com>
-
- * mdk-stage1/init.c: unmounting /sys is not needed (useful to have one
- less line displayed after "unmounting filesystems...")
-
- * install_steps.pm, install_steps_interactive.pm: fix & cleanup generating
- replay & auto_install images
- (thanks to David Eastcott)
-
- * install_any.pm: oops, fix commit
- fix & cleanup generating replay & auto_install images
- (thanks to David Eastcott)
-
-2004/03/04 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: fix crash on modem configuration in installer
- (standalone drakconnect
- didn't had the bug because it has already loaded the network::modem
- package at this stage)
-
- * ugtk2.pm: enable exception managment even at install time (installer set
- $::no_ugtk_init)
-
-2004/03/04 Florin Grad <florin at mandrakesoft.com>
-
- * standalone/drakgw: really enable the proxy squid, fix the proxy REDIRECT
- shorewall rule, fis the shorewall interfaces configuration
-
- * network/shorewall.pm: use the name of the network interface instead of
- the label
- remove an obsolete comparison in the read function
-
-2004/03/04 Pixel <pixel at mandrakesoft.com>
-
- * mdk-stage1/init.c: unmounting /sys is not needed (useful to have one
- less line displayed after "unmounting filesystems...")
-
- * install_steps.pm, install_steps_interactive.pm: fix & cleanup generating
- replay & auto_install images
- (thanks to David Eastcott)
-
- * install_any.pm: oops, fix commit
- fix & cleanup generating replay & auto_install images
- (thanks to David Eastcott)
-
-2004/03/04 reinouts
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
-
-2004/03/04 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Don't destroy "fat" client inittab.
-
-2004/03/04 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * install_steps.pm (hasNetwork) do not refuse to up the network when in
- dhcp (bad oem patch)
-
- * standalone/drakgw: reput back strict pragma
- list network card name rather than just ethX in device list
-
-2004/03/03 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: 2 entries
-
-2004/03/03 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/is.po, share/po/nn.po, share/po/et.po: updated pot files
-
-2004/03/03 Pixel <pixel at mandrakesoft.com>
-
- * devices.pm: one now need cryptoloop and aes when using encryption
- (kernel 2.6)
-
- * fs.pm: move set_loop() from formatMount_part to real_format_part to fix
- Format with encrypted files/devices
- one now need cryptoloop and aes when using encryption (kernel 2.6)
-
-2004/03/03 reinouts
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
-
-2004/03/03 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Default kernel version, add gdm user if needed,
- autologin warning.
- Copy server X keyboard config to client. Default thin client setup.
- Change banner method as other drak tools.
-
-2004/03/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/adsl_consts.pm: add vpi/vci parameters for australia ISPs
- (#5056)
-
- * drakxtools.spec: 10-21mdk
-
-2004/03/03 Pixel <pixel at mandrakesoft.com>
-
- * devices.pm: one now need cryptoloop and aes when using encryption
- (kernel 2.6)
-
- * fs.pm: move set_loop() from formatMount_part to real_format_part to fix
- Format with encrypted files/devices
- one now need cryptoloop and aes when using encryption (kernel 2.6)
-
-2004/03/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/adsl_consts.pm: add vpi/vci parameters for australia ISPs
- (#5056)
-
- * drakxtools.spec: 10-21mdk
- 10-20mdk
-
-2004/03/03 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: mount /sys in case it is useful (and it is for
- get_usb_storage_info_26())
-
- * fs.pm: sysfs now exists!
-
- * detect_devices.pm: fix get_usb_storage_info() on kernel 2.6
-
- * standalone/drakupdate_fstab:
- - device_name_to_entry() will not fail anymore so that removing a
- device works
- - log calls to drakupdate_fstab
- - use "find" instead of "grep" where possible
-
-2004/03/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10-20mdk
-
-2004/03/03 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: mount /sys in case it is useful (and it is for
- get_usb_storage_info_26())
-
- * fs.pm: sysfs now exists!
-
- * detect_devices.pm: fix get_usb_storage_info() on kernel 2.6
-
- * standalone/drakupdate_fstab:
- - device_name_to_entry() will not fail anymore so that removing a
- device works
- - log calls to drakupdate_fstab
- - use "find" instead of "grep" where possible
-
- * crypto.pm:
- - community updates are not in a per-version directory either
- - cooker & community urls do contain .../RPMS at the end whereas
- updates directory do not, handle this
-
-2004/03/03 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Use preferred conf file read/write method. More
- code reduction/cleaning.
-
-2004/03/03 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm: If an HP multi-function device was configured
- manually, extract the model name from the HPOJ device entry name.
-
- * printer/main.pm: Let HPOJ device entry be created with the correct
- printer model name.
-
-2004/03/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: hide dns settings by default when using dhcp
-
-2004/03/02 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated
-
-2004/03/02 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm: Fixed HPOJ configuration when manually setting up a
- device.
-
-2004/03/02 tsdgeos
-
- * share/po/ca.po: updating
-
-2004/03/02 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: removed lib in PRINTER automatically included via
- dependencies
- add major to libsnmp and libsane-hpoj because there are not required by
- any packages and clean_rpmsrate does not update lib only (only -devel)
-
-2004/03/02 Pixel <pixel at mandrakesoft.com>
-
- * crypto.pm: cooker updates are not in a per-version directory
-
- * any.pm, standalone/drakboot: drakboot --boot is now a wizard
-
- * diskdrake/interactive.pm: type "ext2:vfat" must not be the same as 0
-
- * interactive/gtk.pm: small fix when clicking on an empty tree (when
- allow_empty_list)
-
-2004/03/02 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm: Sometimes option default settings in the
- printer options dialog were missing (e. g. "Dithering Pixels Per Inch"
- in "pcl3" driver). Fixed.
-
-2004/03/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/data.pm: bump version number
-
- * any.pm (setupBootloader__general) fix wizard title now that drakboot
- --boot
- is a wizard like tool
-
- * drakxtools.spec: 10-19mdk: last but not least
- 10-19mdk
-
- * network/isdn.pm: fix doble ISDN detection (#6535)
-
-2004/03/02 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/tl.po: updated pot file
- updated Filipino file
- updated pot file
-
- * share/po/nb.po: updated Norwegian file
- updated pot file
- updated pot file
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/fr.po, share/po/ta.po, share/po/vi.po,
- share/po/nl.po, share/po/de.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: updated pot file
- updated pot file
-
- * network/shorewall.pm: rewrote string to avoid duplication
-
-2004/03/02 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: bugzilla #8133 says "VT8751 [ProSavageDDR P4M266] VGA
- Controller" (0x5333,
- 0x8d04) has no pb with graphical lilo. So only keeping the restriction
- for
- (0x5333, 0x8d03), hoping that's what fpons wanted.
-
- * crypto.pm: cooker updates are not in a per-version directory
-
- * any.pm, standalone/drakboot: drakboot --boot is now a wizard
-
- * diskdrake/interactive.pm: type "ext2:vfat" must not be the same as 0
-
- * common.pm: better error message on exceptions
-
- * interactive/gtk.pm: small fix when clicking on an empty tree (when
- allow_empty_list)
-
-2004/03/02 tbacklund
-
- * share/po/fi.po: Finnish tranlsation 100% again
-
-2004/03/02 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm: Sometimes option default settings in the
- printer options dialog were missing (e. g. "Dithering Pixels Per Inch"
- in "pcl3" driver). Fixed.
-
-2004/03/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10-19mdk: last but not least
- 10-19mdk
- 10-18mdk
-
- * network/modem.pm: fix modem symlink (#7967)
-
- * any.pm (setupBootloader__general) fix wizard title now that drakboot
- --boot
- is a wizard like tool
-
- * network/isdn.pm: fix doble ISDN detection (#6535)
-
- * harddrake/data.pm: bump version number
-
- * network/netconnect.pm: sync dhcp client with ifup one
- preselect first availlable dhcp client
- stricter pci modem matching (purely cosmetic but sanity is always good)
- fix pci modem type matching
-
- * bootloader.pm (read) default to lilo if grub config file isn't there
- (workaround
- buggy detectloader only checking MBR)
-
- * share/po/fr.po: update
-
-2004/03/02 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
- share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/eo.po,
- share/po/bg.po, share/po/cs.po, share/po/el.po, share/po/uz@Latn.po:
- updated pot file
-
- * share/po/tl.po: updated Filipino file
- updated pot file
-
-2004/03/02 Pixel <pixel at mandrakesoft.com>
-
- * share/list: add SecurityPolicy to remove "error opening security policy
- file" warning
-
- * install_gtk.pm: fix potential error
- add SecurityPolicy to remove "error opening security policy file"
- warning
-
- * bootloader.pm: if the default bootloader entry is invalid, choose
- another one
-
-2004/03/02 reinouts
-
- * share/po/nl.po: Updated Dutch (nl) translation
- by Reinout van Schouwen <reinout@cs.vu.nl>
-
-2004/03/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10-17mdk
-
- * standalone/logdrake: fix icon name change
-
- * standalone/drakups: fix wizard icon
-
-2004/03/01 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated translation
-
-2004/03/01 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nb.po, share/po/uz.po, share/po/nn.po, share/po/uz@Latn.po:
- updated Norwegian and Uzbek files
-
-2004/03/01 Pixel <pixel at mandrakesoft.com>
-
- * install_steps.pm: remove existing xxx=ide-scsi on upgrades
-
-2004/03/01 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/gimp.pm: Do not configure the GIMP-Print plug-in on more than 50
- users (bug #6423).
-
- * printer/printerdrake.pm: Fixed bug #8483: No "ptal:/..." in manual
- device URI list.
-
- * scanner.pm, standalone/scannerdrake: Fixed bug #7242: Firmware was not
- found by "gt68xx" SANE backend.
-
-2004/03/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * install_steps.pm (upNetwork) log up try and faillures
-
- * drakxtools.spec: 10-16mdk
-
-2004/03/01 Pixel <pixel at mandrakesoft.com>
-
- * any.pm: use "default.png" instead of (missing) "man.png" which resulted
- to defaulting to parrot (ic-bird.png)
-
- * install_steps.pm: remove existing xxx=ide-scsi on upgrades
-
- * Makefile: fix typo
-
-2004/03/01 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/gimp.pm: Do not configure the GIMP-Print plug-in on more than 50
- users (bug #6423).
-
- * printer/main.pm: Fixed bug of installer crashing when an HP
- multi-function device is detected and set up.
-
-2004/03/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakconnect: fix bootproto filling (#8498)
-
- * install_steps.pm (upNetwork) log up try and faillures
-
- * detect_devices.pm (getBewan) fix detection
-
- * standalone/draksec: perl_checker cleanups
-
- * standalone/icons/harddrake2/isdn.png,
- standalone/icons/harddrake2/webcam.png,
- standalone/icons/harddrake2/tape.png,
- standalone/icons/harddrake2/keyboard.png,
- standalone/icons/harddrake2/modem.png: update
-
-2004/03/01 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/pt_BR.po: updated Brazilian file
-
-2004/03/01 Pixel <pixel at mandrakesoft.com>
-
- * Makefile: we don't need .pod files during install
- (but why aren't glib & gtk files not listed in share/list ??)
-
- * install_any.pm: simplify
-
- * any.pm: use "default.png" instead of (missing) "man.png" which resulted
- to defaulting to parrot (ic-bird.png)
-
- * rescue/list, tools/Makefile: adapt to perl packages rebuilt
-
- * crypto.pm, install_steps_interactive.pm: do not use $o in crypto.pm,
- pass {distro_type} to mirrors() and bestMirror() instead
-
-2004/03/01 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm: Removed spurious quotes ('"') from HPOJ config file.
-
- * printer/printerdrake.pm: Support for new HP multi-function devices and
- for special needs of Lexmark X125 printer.
-
-2004/03/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk2.pm (create_packtable) wrap labels by default
- (Gtk2::WrappedLabel::new) left align labels by default
-
- * standalone/service_harddrake: do not crash when detector failled (eg:
- when mouse detection failled because
- of unhandled exception on module exception b/c of unresolved symbolds
- b/c of
- gcc-3.4)
-
- * standalone/drakconnect: fix bootproto filling (#8498)
-
- * standalone/draksec: sanitize main explanation text (resizable, weight,
- margin, ...)
- prevent pull-down menus to fill availlable space in packtables
- wrap and left align main options labels
- do not left align main explanation text
-
- * drakxtools.spec: 10-15mdk
-
- * share/po/fr.po: typo fix
- fix item description (#8507)
-
- * standalone/icons/harddrake2/isdn.png,
- standalone/icons/harddrake2/webcam.png, share/po/br.po,
- standalone/icons/harddrake2/tape.png,
- standalone/icons/harddrake2/modem.png,
- standalone/icons/harddrake2/keyboard.png: update
-
-2004/02/29 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: updated
-
-2004/02/29 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ar.po: updated po file
-
- * share/po/nb.po: updated Norwegian file
-
-2004/02/29 reinouts
-
- * share/po/nl.po: Updated Dutch (nl) translation
- (small change to test)
-
-2004/02/29 yrahal
-
- * share/po/ar.po: Committing Arabeyes.org's Arabic translation for the
- past week :-)
-
-2004/02/28 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * install_any.pm: log reason why getAndSaveFile can't opening dest file
- for writing
-
- * share/list: rpmtools and perl-URPM have been rebuilt for perl 5.8.3
-
- * tools/make_mdkinst_stage2: add a few more inodes to the second stage
- ramdisk, got bitten by
- a sucking no space left on device :/ will also print available
- inodes when creating ramdisk so that we can see if our computing
- was quite good
-
- * lang.pm: load_mo: first perform a lookup on mo's for all possible langs,
- will prevent from downloading each time another time the mo file
- (fr_FR comes first, is not here, everything including fr gets
- removed, fr_FR is non-existent, and then fr is downloaded again)
-
-2004/02/28 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/it.po, share/po/tl.po: Updated Italian and Filipino files
-
- * share/po/hi.po: updated Hindi po file
-
- * share/po/bs.po: updated Bosnian file
-
-2004/02/27 Florin Grad <florin at mandrakesoft.com>
-
- * network/shorewall.pm, network/drakfirewall.pm: remove the masq zone and
- add policies, rules only if there is an interface in loc
-
-2004/02/27 fwang
-
- * share/po/zh_CN.po: update
-
-2004/02/27 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/disk.c: when in automatic=disk mode but no partition is
- given, fall back
- on non automatic mode evidently
-
-2004/02/27 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nb.po: updated Norwegian file
-
-2004/02/27 tbacklund
-
- * share/po/fi.po: fully translated again...
-
-2004/02/27 tsdgeos
-
- * share/po/ca.po: unfuzzying
-
-2004/02/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10-14mdk
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ltg.po,
- share/po/nb.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
- share/po/sl.po, share/po/nn.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/mn.po, share/po/uk.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, share/po/bs.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/hi.po, share/po/af.po,
- share/po/az.po, share/po/pt.po, share/po/fr.po, share/po/ta.po,
- share/po/vi.po, share/po/nl.po, share/po/de.po, share/po/tl.po,
- share/po/eo.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/uz@Latn.po: sync
-
- * standalone/net_monitor (in_ifconfig) better check ifconfig is executable
- before running it
- (-e is not enough)
-
- * network/netconnect.pm: note that isdn configuration has not yet be
- ported upon new wizard layer
- fix crash when modem was not found
-
-2004/02/27 Warly <warly at mandrakesoft.com>
-
- * crypto.pm: add $o in global vars.
- add distro_type variable to select correct updates mirror type
-
- * install2.pm: add distro_type variable to select correct updates mirror
- type
-
- * share/rpmsrate: Try to have some find of better handling for PRINTER
- flag
-
-2004/02/27 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/disk.c: when in automatic=disk mode but no partition is
- given, fall back
- on non automatic mode evidently
-
-2004/02/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10-14mdk
-
- * standalone/net_monitor (in_ifconfig) better check ifconfig is executable
- before running it
- (-e is not enough)
-
- * network/netconnect.pm: note that isdn configuration has not yet be
- ported upon new wizard layer
- fix crash when modem was not found
-
-2004/02/27 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/disk.c: when in automatic=disk mode but no partition is
- given, fall back
- on non automatic mode evidently
-
-2004/02/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10-14mdk
-
- * standalone/net_monitor (in_ifconfig) better check ifconfig is executable
- before running it
- (-e is not enough)
-
- * network/netconnect.pm: note that isdn configuration has not yet be
- ported upon new wizard layer
- fix crash when modem was not found
-
- * standalone/drakvpn: translate some fields
-
- * share/po/fr.po: a few new translated strings
- typo fix
-
-2004/02/27 David Baudens <baudens at mandrakesoft.com>
-
- * pixmaps/refresh.png: Udpate icon to not display a cuted icon
-
- * pixmaps/about.png, standalone/printerdrake,
- pixmaps/about-printerdrake.png: Better layout for PrinterDrake about
- dialog box
-
-2004/02/27 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/02/27 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * share/po/fr.po: update
-
-2004/02/27 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po, share/po/af.po: updated Afrikaans and Estonian files
- updated po files
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/ja.po, share/po/hr.po, share/po/be.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/he.po, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/ltg.po, share/po/nb.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/hi.po, share/po/az.po, share/po/pt.po,
- share/po/fr.po, share/po/ta.po, share/po/vi.po, share/po/nl.po,
- share/po/de.po, share/po/tl.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: updated po files
-
-2004/02/27 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Fix tape backup/restore (#8284)
-
-2004/02/27 tbacklund
-
- * share/po/fi.po: fully translated again
-
-2004/02/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk2.pm (set_back_pixmap) export it
-
- * standalone/net_monitor (in_ifconfig) better check ifconfig is executable
- before running it
- (-e is not enough)
-
- * network/netconnect.pm: fix crash when modem was not found
-
- * share/po/fr.po: a few new translated strings
- typo fix
- update
-
- * standalone/drakvpn: translate some fields
-
-2004/02/26 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated translation
-
-2004/02/26 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * standalone/drakautoinst, install_any.pm: support two-floppies boot style
- for replay_install disk as well (not nice at all..)
-
-2004/02/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk2.pm (Gtk2::Banner::new) add o_otions ref hash parameter, thus
- enabling to
- override text position (eg: for mcc about dialog)
- (set_back_pixmap) split it out of Gtk2::Banner::set_pixmap
-
- * network/netconnect.pm:
- - never delete up/down scripts
- - only write internet service if start at boot requested
-
- * drakxtools.spec: remove bogus empty line
- update 10-13mdk changelog
- 10-13mdk
-
-2004/02/26 Warly <warly at mandrakesoft.com>
-
- * pkgs.pm: We need the PRINTER flag
-
-2004/02/26 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * standalone/drakautoinst: support two-floppies boot style for
- replay_install disk as well (not nice at all..)
-
- * install_any.pm: support two-floppies boot style for replay_install disk
- as well (not nice at all..)
- hd.img doesn't exist anymore, using hd_grub.img
-
- * ugtk2.pm: ask_browse_tree_info_given_widgets: allow for an initial
- selection if necessary (through toggle_nodes)
-
-2004/02/26 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/tl.po, share/po/he.po: Added Filipino file; updated Hebrew file
-
-2004/02/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: remove bogus empty line
- update 10-13mdk changelog
- 10-13mdk
- 10-12mdk
-
- * ugtk2.pm (Gtk2::Banner::new) add o_otions ref hash parameter, thus
- enabling to
- override text position (eg: for mcc about dialog)
- (set_back_pixmap) split it out of Gtk2::Banner::set_pixmap
- (Gtk2::Banner::new) create only *one* expose event handler
- (Gtk2::Banner::set_pixmap) stop expose event propagation so that
- shadows do not accumulate (thus resulting in darker alpha-channel)
-
- * network/adsl.pm (adsl_conf_backend) install needed packages
-
- * network/netconnect.pm:
- - never delete up/down scripts
- - only write internet service if start at boot requested
- skip apply_setting step for now since anyway we've already written
- most config files... (btw, now installer also write cnx type as side
- effect)
- reverse debug stuff that should never have been commited
- typo fix: only write ether config for lan...
-
-2004/02/26 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm, printer/data.pm: Fixes for HPOJ setup during
- installation.
-
-2004/02/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: skip apply_setting step for now since anyway
- we've already written
- most config files... (btw, now installer also write cnx type as side
- effect)
- reverse debug stuff that should never have been commited
- typo fix: only write ether config for lan...
-
- * network/adsl.pm (adsl_conf_backend) install needed packages
-
-2004/02/25 David Baudens <baudens at mandrakesoft.com>
-
- * share/compssUsers: Don't install Webmin by default in Download and
- PowerPack
-
- * share/compssUsers.powerpack: Don't install Webmin by default in Download
- and PowerPack
- compssUsers for 10.0 PowerPack
-
- * share/compssUsers.server: compssUsers for 10.0 PowerPackPlus
-
-2004/02/25 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/rescue-gui.c: give us more chance to get bootloader write
- actually commited to
- disk before reboot
-
-2004/02/25 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * lang.pm: defined GTK_IM_MODULE values for CJK languages; so xim is used
- by default for languages for which we don't ship good enough
- native gtk2 input methods.
-
- * share/po/he.po: updated Hebrew file
-
-2004/02/25 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Use ATAPI:/dev/hdX for both 2.4/2.6
- compatibility.
-
- * standalone/drakTermServ: Really filter symlinked kernels. nohup the dm
- restart.
- Don't let any kernel symlinks be visible for making NBIs.
-
-2004/02/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/service_harddrake: when sound card is added/removed, delete
- current sound levels so that sound
- service reset it to sg sane
-
- * harddrake/data.pm: look at sound cards changes on bootstrapping
-
- * drakxtools.spec (harddrake-ui package) requires sane-backends so that
- scanner
- detection works smoothly (#8305)
- 10-11mdk
-
-2004/02/25 David Baudens <baudens at mandrakesoft.com>
-
- * share/compssUsers.powerpack: Don't install Webmin by default in Download
- and PowerPack
- compssUsers for 10.0 PowerPack
-
- * share/compssUsers: Don't install Webmin by default in Download and
- PowerPack
- compssUsers for 10.0 Download
-
-2004/02/25 Erwan Velu <erwan at mandrakesoft.com>
-
- * mdk-stage1/disk.c: Patch from gc to allow booting a MandrakeMove on a
- Harddrive using the
- automatic settings.
-
-2004/02/25 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/02/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10-10mdk
-
- * harddrake/data.pm: handle webcams managed by pwc driver
-
- * share/po/fr.po: update
-
-2004/02/25 Warly <warly at mandrakesoft.com>
-
- * pkgs.pm: revert my suckinessed / added to prefix
-
-2004/02/25 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/modem.pm:
- - allow writting to another kppprc file
- - replace new kppp option values
-
- * standalone/drakconnect: fix forgotten $::prefix (could I say typo fix ?)
- - RTC Modem page shown and pretty okayish
- - use '/root/.kde/share/config/kppprc' for any local change
-
-2004/02/25 fwang
-
- * share/po/zh_CN.po: update
-
-2004/02/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10-10mdk
-
- * harddrake/data.pm: handle webcams managed by pwc driver
-
- * share/po/fr.po: update
-
-2004/02/24 fwang
-
- * share/po/zh_CN.po: update
-
-2004/02/24 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/nn.po, share/po/ja.po,
- share/po/hr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/mn.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/lt.po, share/po/he.po, share/po/cy.po, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/ltg.po,
- share/po/nb.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/hi.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/lv.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/hu.po, share/po/uz@Latn.po: updated pot file; added Latgalian
- file
-
- * share/po/tr.po: updated Turkish file
- updated pot file; added Latgalian file
-
- * share/po/et.po: updated Estonian file
- updated pot file; added Latgalian file
-
-2004/02/24 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Rework CD recording for ATA device setup.
-
-2004/02/24 tbacklund
-
- * share/po/fi.po: 100% translated, was 54 fuzzy, 49 untranslated
-
-2004/02/24 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm, standalone/scannerdrake: UI text fixes.
-
-2004/02/24 tsdgeos
-
- * share/po/ca.po: some more unfuzzyin
-
-2004/02/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/nb.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/fr.po, share/po/ta.po, share/po/vi.po,
- share/po/nl.po, share/po/de.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: merge in typo fixes
- from tille
-
- * network/adsl.pm (adsl_conf_backend) alter both
- /etc/analog/adiusbadsl.conf and
- /etc/eagle-usb/eagle-usb.conf too when configuring sagemXXX
-
- * drakxtools.spec: fix changelog
- 10-9mdk
- 10-8mdk
-
-2004/02/24 Warly <warly at mandrakesoft.com>
-
- * pkgs.pm: add PRINTER alongside with INSTALL not to duplicate printer
- related packages into OFFICE
-
- * share/rpmsrate, share/compssUsers, share/compssUsers.server,
- share/compssUsers.desktop: Separate printing-related packages from
- INSTALL to create a new separated PRINTER group and pre-select them if
- OFFICE compssUser group is selected
-
-2004/02/24 yrahal
-
- * share/po/ar.po: Committing Arabeyes.org's Arabic translation
-
-2004/02/24 David Baudens <baudens at mandrakesoft.com>
-
- * share/po/fr.po: Fix typo
- Fix typos
-
- * share/rpmsrate: Update
-
-2004/02/24 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po, share/po/ca.po: updated Estonian file
-
- * share/po/ja.po: updated Japanese file
-
- * share/po/ms.po: updated Malay file
-
-2004/02/24 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: mknbi-set always wants a kernel version now.
- Deal with conflicts with msec > 3 and exporting / (use no_root_squash).
- Always pass a kernel to mkinitrd-net. (Both part of #8216)
- Add --restart option for terminal-server.
-
-2004/02/24 Till Kamppeter <till at mandrakesoft.com>
-
- * standalone/scannerdrake: UI text fixes.
- Ask user before installing packages.
-
- * printer/printerdrake.pm: UI text fixes.
- Give clear warning/error messages if a package installation fails.
- Let printer model in first-time dialog also be shown if there is no
- description field in the device ID of the printer.
-
-2004/02/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: fix module lookup for pcmcia cards
-
- * network/adsl_consts.pm: set default protocol to pppoa for various ISPs
- update 9telecom entry (Benot Audouard)
- add encapsulation method for tiscali 512k offer in france
- fix wrongly inverted encapsulation methods for free isp cnx offers
- use spanish caracters in spanish isp name (Benot Audouard)
- fix url (Benoît Audouard)
- typo fix
- typo fix (fcrozat)
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/nb.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/fr.po, share/po/ta.po, share/po/vi.po,
- share/po/nl.po, share/po/de.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: merge in typo fixes
- from tille
-
-2004/02/24 yrahal
-
- * share/po/ar.po: Committing Arabeyes.org's Arabic translation
-
-2004/02/23 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/02/23 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/nn.po, share/po/et.po,
- share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/mn.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/tg.po, share/po/nb.po, share/po/bs.po, share/po/uz.po,
- share/po/ro.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/hi.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/lv.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/hu.po, share/po/uz@Latn.po: updated pot file
-
-2004/02/23 tsdgeos
-
- * share/po/ca.po: Some unfuzzying
-
-2004/02/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: update
-
-2004/02/23 tpittich
-
- * share/po/sk.po: updated slovak translation
-
-2004/02/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: update
- typo fixes (Reinout van Schouwen)
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/nb.po,
- share/po/uz.po, diskdrake/interactive.pm, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, diskdrake/hd_gtk.pm, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/ta.po, share/po/vi.po, share/po/nl.po,
- share/po/de.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: typo fixes (Reinout van Schouwen)
-
- * standalone/drakconnect: misc perl_checker cleanups
-
- * drakxtools.spec: 10-7mdk
-
-2004/02/23 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * rescue/tree/etc/issue: 10.0
-
-2004/02/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/ethernet.pm: write ethX aliases and ifup/ifdown scripts when
- configuring a LAN connection
-
- * standalone/drakconnect (del_intf) keep ethX aliases b/c eg removing eth0
- will results in eth1 to be
- renumbered on next boot...
- (del_intf) down the network interface when deleting it
- (del_intf) when no network configuration is configured, just report it
- (del_intf) only list configured interfaces when offering to delete them
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/da.po, share/po/ca.po, share/po/ar.po, share/po/nb.po,
- share/po/uz.po, diskdrake/interactive.pm, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, diskdrake/hd_gtk.pm, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/nn.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/fr.po, share/po/ta.po, share/po/vi.po,
- share/po/nl.po, share/po/de.po, share/po/eo.po, share/po/el.po,
- share/po/bg.po, share/po/cs.po, share/po/uz@Latn.po: typo fixes (Reinout
- van Schouwen)
-
- * drakxtools.spec: 10-7mdk
- 10-6mdk
-
- * network/netconnect.pm:
- - always write up/down scripts
- - only write initscript when starting at boot was choosen (instead of
- writing
- it in restart path...)
- write ethX aliases and ifup/ifdown scripts when configuring a LAN
- connection
-
- * network/adsl.pm: fix adsl scripts (especially with sagem8xx modems)
- add missing space
-
-2004/02/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: fix french translation (upcase label)
-
- * standalone/drakconnect: fix ability to set ip parameters broken by
- localizing bootproto
-
- * drakxtools.spec: 10-6mdk
- 10-5mdk
-
- * network/adsl.pm: fix adsl scripts (especially with sagem8xx modems)
- add missing space
- (adsl_conf_backend) speedtouch config need vpi/vci as decimal numbers
- whereas sagem8xx wants hexa numbers
-
-2004/02/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/data.pm: do not tag some ata raid controllers as unknown hw
-
- * share/po/fr.po: fix french translation (upcase label)
- fix french translation (upcase label)
-
- * standalone/drakconnect: fix ability to set ip parameters broken by
- localizing bootproto
- handle and translate BOOTPROTO
- read ppp auth method
- handle new PAP/CHAP method
- fix untranslated strings
- do not complain about gateway format when it's not set
-
- * any.pm (setupBootloader__entries) fix entry editing layout
-
- * drakxtools.spec: 10-5mdk
- 10-4mdk
-
- * network/netconnect.pm: handle unknown hardware: enable one to manually
- load a driver like expert mode
- in old pre-10.0 wizard
- enable one to manually choose the serial port to use while configuring
- modem
- fix unreachable steps
- read ppp config earlier and prevent provider choice to overwrite it (but
- if
- user select a *new* provider)
- initialize modem data structure at one point only for serial/PCI modems
- split kppp config reading into network::modem::ppp_read_conf() in order
- to be
- shared with manage interface
- fix choosing betweeen '' and 'adsl connections when configuring adsl
- (due to
- write_cnx_scripts vivificating data structure)
-
- * modules/interactive.pm (load_category__prompt_for_more) do not list
- probed category in detected hardware list
- (load_category__prompt_for_more) show quotes around detected hardware in
- order
- to more easily see thems
-
- * network/modem.pm (ppp_read_conf) really default to dynamic dns, gateway
- and ip (really fix #7705)
- misc perl_checker cleanups
- split kppp config reading into network::modem::ppp_read_conf() in order
- to be
- shared with manage interface
-
- * network/ethernet.pm (conf_network_card_backend) update its doc now that
- it has been splited in
- get_eth_cards() and conf_network_card_backend()
-
- * network/adsl_consts.pm: rollback bogus damien change, here vpi/vci
- parameters are in hexa, not decimal
-
- * network/adsl.pm (adsl_conf_backend) speedtouch config need vpi/vci as
- decimal numbers
- whereas sagem8xx wants hexa numbers
-
-2004/02/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/data.pm: do not tag some ata raid controllers as unknown hw
-
- * standalone/drakconnect: handle and translate BOOTPROTO
- read ppp auth method
- handle new PAP/CHAP method
- fix untranslated strings
- do not complain about gateway format when it's not set
-
- * any.pm (setupBootloader__entries) fix entry editing layout
-
- * network/netconnect.pm: handle unknown hardware: enable one to manually
- load a driver like expert mode
- in old pre-10.0 wizard
- enable one to manually choose the serial port to use while configuring
- modem
- fix unreachable steps
- read ppp config earlier and prevent provider choice to overwrite it (but
- if
- user select a *new* provider)
- initialize modem data structure at one point only for serial/PCI modems
- split kppp config reading into network::modem::ppp_read_conf() in order
- to be
- shared with manage interface
- fix choosing betweeen '' and 'adsl connections when configuring adsl
- (due to
- write_cnx_scripts vivificating data structure)
-
- * share/po/fr.po: fix french translation (upcase label)
-
- * modules/interactive.pm (load_category__prompt_for_more) do not list
- probed category in detected hardware list
- (load_category__prompt_for_more) show quotes around detected hardware in
- order
- to more easily see thems
-
- * network/modem.pm (ppp_read_conf) really default to dynamic dns, gateway
- and ip (really fix #7705)
- misc perl_checker cleanups
- split kppp config reading into network::modem::ppp_read_conf() in order
- to be
- shared with manage interface
-
- * network/ethernet.pm (conf_network_card_backend) update its doc now that
- it has been splited in
- get_eth_cards() and conf_network_card_backend()
-
- * drakxtools.spec: 10-4mdk
-
-2004/02/22 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated translation
-
-2004/02/22 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/adsl_consts.pm: fix vci number for Belgium and France
-
-2004/02/22 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nn.po: updated Nynorsk file
- Added Nynorsk file
-
- * share/po/cy.po: Added Nynorsk file
-
-2004/02/21 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/02/21 fwang
-
- * share/po/zh_CN.po: update
-
-2004/02/21 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/it.po, share/po/et.po: updated Estonian and Italian files
-
-2004/02/21 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Verify user has selected a cron interval and
- media [Bugzilla 8138]
- More code reduction.
-
-2004/02/20 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/be.po, share/po/uk.po, share/po/mn.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/cy.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/tg.po,
- share/po/nb.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/hi.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/lv.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/hu.po, share/po/uz@Latn.po: updated pot file
-
-2004/02/20 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: QA - tweak wizard setup.
-
-2004/02/20 tsdgeos
-
- * share/po/ca.po: Some updates and unfuzzying
-
-2004/02/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: when one refuse to install firmware *now*, she
- won't be able to select
- a provider, thus vci and vpi parameters won't be filled
- remove useless "next" field (since post already handle it)
-
- * standalone/logdrake: fix title when run from mcc (#8111)
-
- * drakxtools.spec: 10-3mdk
- 10-2mdk
-
- * detect_devices.pm (getBewan) introduce it in order to detect Bewan ADSL
- modems (both PCI
- and USB ones)
-
- * share/po/fr.po: update
-
-2004/02/20 tsdgeos
-
- * share/po/ca.po: Some updates and unfuzzying
-
-2004/02/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * detect_devices.pm (getBewan) introduce it in order to detect Bewan ADSL
- modems (both PCI
- and USB ones)
- (getSagem) lookup sagem8xx modems by module rather than relying on
- strings
- manually added to ldetect-lst
-
- * standalone/drakperm: fix "current" checkbox vs "group" and "user"
- pull-down menus
-
- * standalone/logdrake: fix title when run from mcc (#8111)
-
- * network/netconnect.pm: when one refuse to install firmware *now*, she
- won't be able to select
- a provider, thus vci and vpi parameters won't be filled
- remove useless "next" field (since post already handle it)
- enable to refuse network restarting
-
- * drakxtools.spec: 10-3mdk
- 10-2mdk
-
-2004/02/20 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/adsl.pm: keep provider vpi/vci settings when exist
-
-2004/02/20 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/be.po, share/po/uk.po, share/po/mn.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/cy.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/tg.po,
- share/po/nb.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/hi.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/lv.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/hu.po, share/po/uz@Latn.po: updated pot file
-
- * lang.pm: uim-anthy works ok in on-the-spot mode with KDE
-
-2004/02/20 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm (update_for_renumbered_partitions):
- - handle no grub config
- - skip modifications when dev2grub fail
- (since the device not in device.map means the device is currently unused
- for booting)
-
- * modules.pm, install_steps.pm: alias agpgart should be only for 2.6,
- since code doesn't allow this easily,
- adding the agp module to modprobe.preload
-
-2004/02/20 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Shrink code per Thierry.
-
-2004/02/20 tsdgeos
-
- * share/po/ca.po: Some updates and unfuzzying
-
-2004/02/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakconnect (add_intf) no need to handle errors, it's done by
- callee now in order to share
- exception handling with installer
-
- * drakxtools.spec: 10-2mdk
-
- * network/adsl_consts.pm: remove debug statement
- aliase Free non dégroupé 1024/256 on "Free non dégroupé 512/128" (#7615)
-
- * standalone/drakperm: fix "current" checkbox vs "group" and "user"
- pull-down menus
-
- * network/netconnect.pm: enable to refuse network restarting
- do not detect lan interfaces when configuring modems
- do not horribly die at install time on error
- really fix previous button on first step: we want it at install time
-
- * detect_devices.pm (getSagem) lookup sagem8xx modems by module rather
- than relying on strings
- manually added to ldetect-lst
-
-2004/02/20 fwang
-
- * share/po/zh_CN.po: update
-
-2004/02/20 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * lang.pm: uim-anthy works ok in on-the-spot mode with KDE
-
-2004/02/20 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm: fix warning LSB chosen implies kernel 2.4
-
- * fs.pm: add umask=0022 capability, and use it for security level 3
-
- * share/compssUsers, share/compssUsers.server: Gnome is no good, GNOME is
- good
-
- * bootloader.pm (update_for_renumbered_partitions):
- - handle no grub config
- - skip modifications when dev2grub fail
- (since the device not in device.map means the device is currently unused
- for booting)
-
- * modules.pm, install_steps.pm: alias agpgart should be only for 2.6,
- since code doesn't allow this easily,
- adding the agp module to modprobe.preload
-
-2004/02/20 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Shrink code per Thierry.
-
-2004/02/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/adsl_consts.pm: remove debug statement
- aliase Free non dégroupé 1024/256 on "Free non dégroupé 512/128" (#7615)
-
- * network/adsl.pm: fix writing aliases (fix broken speedtouch)
-
- * drakxtools.spec: 10-1mdk
-
-2004/02/20 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * interactive/gtk.pm, install_gtk.pm, ugtk2.pm: don't force buttons a size
- related to $::windowwidth since this is no more used to size the main
- window (fixes missing Next button in vgahi), use a global
- $::real_windowwidth for sizings related to the main window
-
- * mdk-stage1/Makefile: 10.0
-
- * install_steps_gtk.pm: don't force buttons a size related to
- $::windowwidth since this is no more used to size the main window (fixes
- missing Next button in vgahi), use a global $::real_windowwidth for
- sizings related to the main window
- allow to specify the Xnest wanted resolution with --vga
-
-2004/02/20 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm: fix warning LSB chosen implies kernel 2.4
-
- * fs.pm: add umask=0022 capability, and use it for security level 3
-
- * share/compssUsers, share/compssUsers.server: Gnome is no good, GNOME is
- good
-
-2004/02/20 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Gnome icon order. Drop an unused button box.
-
-2004/02/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10-0.21mdk
-
-2004/02/19 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated
-
-2004/02/19 Pixel <pixel at mandrakesoft.com>
-
- * interactive/gtk.pm, ugtk2.pm: use $ugtk2::current_window in place of
- @interactive::objects (which was unused and broken)
- => fix XSetInputFocus (bugzilla #8046 and #8053)
-
-2004/02/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: since no PCMCIA cards support link status
- notification, ifplugd should
- be disabled for all pcmcia cards by default => let blacklist them
- (#8031)
-
- * standalone/drakvpn: fix string
-
- * share/po/fr.po: update
-
-2004/02/19 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated
-
-2004/02/19 David Baudens <baudens at mandrakesoft.com>
-
- * share/po/fr.po: Update
-
-2004/02/19 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * lang.pm: value of XIM is the xim identifier, not the xim program name
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/be.po, share/po/uk.po, share/po/mn.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/cy.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/tg.po,
- share/po/nb.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/hi.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/lv.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/hu.po, share/po/uz@Latn.po: updated pot file
-
-2004/02/19 Pixel <pixel at mandrakesoft.com>
-
- * interactive/gtk.pm, ugtk2.pm: use $ugtk2::current_window in place of
- @interactive::objects (which was unused and broken)
- => fix XSetInputFocus (bugzilla #8046 and #8053)
-
-2004/02/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakvpn: consolidate strings
-
-2004/02/19 David Baudens <baudens at mandrakesoft.com>
-
- * share/po/fr.po: Update
- Revert my mistake
-
- * share/advertising/dwd-01.pl: Add missing string
-
-2004/02/19 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/netconnect.pm: put a Previous button on the first page
-
-2004/02/19 Florin Grad <florin at mandrakesoft.com>
-
- * network/ipsec.pm: add plenty of help explanations, add anonymous support
- in sainfo
-
- * standalone/drakvpn: add plenty of help files, add anonymous support for
- sainfo
-
-2004/02/19 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * install_steps.pm: add utf8 key to locale config if not already present,
- so that
- auto install behave as before (pixel)
-
- * http.pm: well, value is not dropped anymore perl checko
- - don't resolv host, it breaks virtual servers configs
- - log when we don't receive a 200
-
-2004/02/19 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * lang.pm: value of XIM is the xim identifier, not the xim program name
-
- * standalone/drakvpn: fixed typos
-
-2004/02/19 Pixel <pixel at mandrakesoft.com>
-
- * standalone/XFdrake: no more global icon in XFdrake
-
- * install_steps_gtk.pm: the text we give to set_markup should not contain
- raw "&"
- (occurs for "Any PS/2 & USB mice")
-
- * interactive/gtk.pm: don't have a big scrolled window that can be around
- a local scrolled window.
- ensure instead many local scrolled windows
-
- * share/rpmsrate:
- - kimdaba must be flagged KDE
- - lower some packages rates for my tests
- kdenlive must be flagged KDE
-
- * tools/make_mdkinst_stage2: catch kernel 2.6 loop bug
-
- * install_steps_interactive.pm: better logging
-
- * ugtk2.pm: we don't need warp_text since we have WrappedLabel
- fix _ask_file (tested in wizard, normal and embedded)
- fix titi sucks (Advanced and Help were broken)
-
-2004/02/19 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Fix issue with multisession CDs (Anthill #349)
-
-2004/02/19 tsdgeos
-
- * share/po/ca.po: Today's work
-
-2004/02/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: only show "previous" button on first step in
- install; in standalone
- mode, we already have the "cancel" button
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/nb.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/lt.po, share/po/cy.po, share/po/tg.po,
- share/po/bs.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/fr.po, share/po/ta.po, share/po/vi.po, share/po/nl.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/bg.po,
- share/po/cs.po, share/po/uz@Latn.po: typo fix
-
- * share/rpmsrate: uim won't work without uim-applet
-
- * standalone/drakvpn: consolidate strings
- typo fix
-
- * printer/main.pm (set_usermode) do not die when run with --testing as
- user
-
- * drakxtools.spec: 10-0.20mdk
-
- * lang.pm: switch japanese from kinput2 to uim input method
-
-2004/02/19 Warly <warly at mandrakesoft.com>
-
- * standalone/drakboot: Apply Olivier Blin patch to fix theme displaying
- under console
-
-2004/02/18 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated
-
-2004/02/18 David Baudens <baudens at mandrakesoft.com>
-
- * share/po/fr.po: Advertisements: update translations for download
-
-2004/02/18 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/adsl.pm: drop $netc->{internet_cnx} test, unnedeed
-
- * standalone/drakconnect:
- - add adsl_atboot() to check at boot status
- - use it instead of chk_internet()
-
-2004/02/18 fwang
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/02/18 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * install_steps.pm, any.pm, lang.pm: selectlanguage: utf8 flag status is
- updated when user selects more/less languages; when user touches it,
- update is disabled, allowing andrej to have an en_GB + ru_RU install
- without utf8
-
-2004/02/18 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: HACK: set LD_ASSUME_KERNEL so that rpm doesn't try to use
- tls (which we don't
- have at install) otherwise it causes *weird* problems in __db*. When
- LD_ASSUME_KERNEL is set, no __db* are used, and so no such pbs.
-
- * fsedit.pm, partition_table.pm: type 0x17 *can* be ntfs, assuming it is
- when we don't care much, and check if it is ntfs otherwise
-
-2004/02/18 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: QA - Encourage user to finish configuring media
- before leaving wizard.
- Rework backupignore behavior (Anthill #306).
-
-2004/02/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, standalone/drakvpn, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/nb.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
- share/po/sl.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/fr.po, share/po/ta.po, share/po/vi.po,
- share/po/nl.po, share/po/de.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: typo fix
-
- * network/netconnect.pm: do not use ifplugd on wireless connections by
- default
- fix "network needs to be restarted" step
- do not overwrite current wireless parameters with default values
- move some wireless options as advanced ones
-
- * drakxtools.spec: 10-0.19mdk
-
- * standalone/harddrake2 (quit_global) do not die in exit path when not run
- as root
- reindent button packing
- sanitize buttons layout when embedded
-
-2004/02/18 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate: Install Google's search bar when KDE is installed
-
-2004/02/18 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/adsl.pm: drop $netc->{internet_cnx} test, unnedeed
-
- * standalone/drakconnect: fix adsl at boot, better and more clean
-
-2004/02/18 Frederic Crozat <fcrozat at mandrakesoft.com>
-
- * share/rpmsrate: Pull xine-arts when choosing video AND KDE
-
-2004/02/18 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/nb.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/mn.po, share/po/uk.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/fr.po,
- share/po/ta.po, share/po/vi.po, share/po/nl.po, share/po/de.po,
- share/po/eo.po, share/po/el.po, share/po/bg.po, share/po/cs.po,
- share/advertising/dwd-09.pl, share/po/uz@Latn.po: fix wording of
- advertisement thx to austin
-
- * tools/shift_img.c, tools/shift_all.pl: these files I needed when pablo
- gave me lang-*.png images because they were not aligned.. commiting in
- case
-
- * install_any.pm: ok, ok, perl checker roulaize
- better match
- tentatively fix #7792 (seems like line number don't match #7792,
- but this one I'm fixing was obviously wrong, at least)
- allow using ext2 or vfat floppies for kickstart=floppy so that
- when you do an auto install based on network.img and
- network_drivers.img, you can put your auto_inst.cfg.pl on
- network_drivers.img and rock n roll
-
- * mdk-stage1/modules.c: support automatic installs even when needing the
- additional drivers floppy
-
- * modules.pm: don't log insmod errors on tty5, rather on tty3+ddebug.log
- as normal log
-
-2004/02/18 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_gtk.pm: when cancel is pressed, fix re-selecting
- unselected packages
- (callback_choices unneeded, cf rpmdrake)
- small cleanup
-
- * install2.pm: HACK: set LD_ASSUME_KERNEL so that rpm doesn't try to use
- tls (which we don't
- have at install) otherwise it causes *weird* problems in __db*. When
- LD_ASSUME_KERNEL is set, no __db* are used, and so no such pbs.
-
- * fsedit.pm, partition_table.pm: type 0x17 *can* be ntfs, assuming it is
- when we don't care much, and check if it is ntfs otherwise
-
- * standalone/diskdrake: set useSupermount to magicdev (so that it doesn't
- use supermount from cdroms)
-
- * share/rpmsrate: gdm is an important gnome application, make it 5 (for my
- tests)
-
-2004/02/18 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Rework backupignore behavior (Anthill #306).
-
-2004/02/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk2.pm (create_okcancel) enable to specify that some buttons must be
- at right
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, standalone/drakvpn, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/nb.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- share/po/fa.po, share/po/id.po, share/po/ru.po, share/po/br.po,
- share/po/sl.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/mn.po, share/po/uk.po, share/po/lt.po, share/po/cy.po,
- share/po/tg.po, share/po/bs.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/hi.po, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/fr.po, share/po/ta.po, share/po/vi.po,
- share/po/nl.po, share/po/de.po, share/po/eo.po, share/po/bg.po,
- share/po/cs.po, share/po/el.po, share/po/uz@Latn.po: typo fix
-
- * standalone/drakconnect: force apply button to be right aligned
-
-2004/02/17 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/adsl.pm: manage interfaces don't want to break cnx_scripts
-
- * standalone/drakconnect:
- - add chk_config() to test internet service state
- - adsl onboot using chk_config()
-
-2004/02/17 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/stage1.c, mdk-stage1/modules.c, mdk-stage1/modules.h: support
- 2.6 insmoding for expert third party modules and loading named modules
-
- * Xconfig/card.pm: well we reverted to 4.3
-
-2004/02/17 tsdgeos
-
- * share/po/ca.po: today's updates
-
-2004/02/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk2.pm: enforce gnome button order everywhere (interface team request)
-
- * drakxtools.spec: log one more stuff into 10-0.18mdk
- fix changelog
- 10-0.18mdk
-
- * standalone/icons/wiz_default_up.png: new default icon for wizards
-
-2004/02/17 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/02/17 Florin Grad <florin at mandrakesoft.com>
-
- * network/ipsec.pm: one can now start from scratch with ipsec.conf
- fix the ";" mark in the Security Policies Section
-
- * standalone/drakvpn: one can now start an ipsec.conf file from scratch
- add the ask_info3 function
-
-2004/02/17 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/stage1.c, mdk-stage1/frontend-common.c,
- mdk-stage1/stdio-frontend.c, mdk-stage1/newt-frontend.c: when available,
- always load usb interface, as soon as possible, should help usb mouse
- detection in stage2 which otherwise timeouts
-
-2004/02/17 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po: updated Estonian file
- updated pot file
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/mn.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/lt.po, share/po/he.po, share/po/cy.po, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/nb.po,
- share/po/bs.po, share/po/uz.po, share/po/ro.po, share/po/mk.po,
- share/po/wa.po, share/po/is.po, share/po/af.po, share/po/hi.po,
- share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/nl.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/lv.po,
- share/po/el.po, share/po/cs.po, share/po/bg.po, share/po/hu.po,
- share/po/uz@Latn.po: updated pot file
-
-2004/02/17 Pixel <pixel at mandrakesoft.com>
-
- * mouse.pm: detection defaults on automatic choices
- fix mouse detect() on kernel 2.4
-
- * bootloader.pm: remove bad entries after reading existing conf file
- log where the bootloader is installed
-
- * interactive/newt.pm: don't have a scroll inside a scroll which causes
- display pbs.
- alas it doesn't fix the "Tab" navigation when having a global scroll + a
- Listbox. You have to use the right arrow to exit the Listbox
-
-2004/02/17 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm: Added warnings to clearly tell the user when
- there is no network access.
- Removed printer list button whenthere is no network also in expert mode.
-
- * printer/detect.pm: Fixed problem that not used parallel ports were
- detected as printers.
-
-2004/02/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/icons/drakfont.png, standalone/drakfont,
- standalone/icons/drakfont.620x57.png: switch drakfont to new banner
- style
-
- * harddrake/data.pm: really fix doble blanked ISDN detection
-
- * share/po/Changelog: kill no more used file
-
- * standalone/drakvpn (ask_info3) really use parameters...
- consolidate strings
-
- * share/po/fr.po: update
-
- * network/netconnect.pm: sort lan protocols
-
- * drakxtools.spec: fix changelog
- 10-0.17mdk
-
-2004/02/16 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Nothing special
- Partially updated file
-
-2004/02/16 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect: move check_field's ask_warn() to save_notebook()
- check gateway entry
-
-2004/02/16 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/02/16 Florin Grad <florin at mandrakesoft.com>
-
- * standalone/drakvpn: do not test the translated chains anymore
-
-2004/02/16 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/url.c: fix buggy redhat code exhausted only in -Os which
- corrupted
- memory and gave wrong results for download file size in FTP/HTTP
- installs
-
-2004/02/16 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * network/netconnect.pm, standalone/drakvpn, standalone/drakboot: typo
- fixes
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/nb.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/lt.po, share/po/cy.po, share/po/tg.po,
- share/po/bs.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/fr.po, share/po/ta.po, share/po/vi.po, share/po/nl.po,
- share/po/de.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: updated pot file
- updated pot file
-
- * network/ipsec.pm: removed N() around of a non-translatable string
-
-2004/02/16 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm: keep current authentication kind, even if
- not completly accepted
- network::shorewall::read without silent is nasty, since it doesn't only
- read,
- it prompts the user. So each time the summary updates the data, it
- prompts
- (when you have more than one card and no firewall configured)
-
- * authentication.pm: keep current authentication kind, even if not
- completly accepted
-
-2004/02/16 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/detect.pm: Recognize parallel printers also when they miss the
- "CLASS:PRINTER;" in their device ID string (ex: Brother HL-720, bug
- #7753).
-
-2004/02/16 tsdgeos
-
- * share/po/ca.po: Today's worjk
-
-2004/02/16 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakpxe, standalone/drakgw: do not abuse global namespace
-
- * network/netconnect.pm: fix automatically found "...2" dns when network
- is done
- show a more precise error messages when no wireless cards were found
- eagle was renamed as eagle-usb
- minor poulpe cleanup
- explain about DNS (#7908)
-
- * standalone/drakclock: let's look better when embedded
-
- * standalone/drakvpn (ask_info2) list valid values in a pull-down menu
- (ask_info2) introduce it in order to share one more step
- (ask_info) introduce it in order to share some code
- PFS group only accept 3 distinct values
- more user friendly labels
- do not list twice the same elements in list...
- try to have better names
- do not put " = " in translated messages
- add hints
- do not abuse global namespace
-
- * standalone/drakautoinst: typo fix
- do not abuse global namespace
-
- * authentication.pm (to_kind) try harder to find out if some auth method
- already had been choosed
-
- * share/po/fr.po: update
- beautify string
-
- * install_steps_interactive.pm (setRootPassword) do not reset auth method
- when pressing "previous" in next step
-
-2004/02/16 David Baudens <baudens at mandrakesoft.com>
-
- * share/advertising/list: Removed on Pixel's request (will use list-dwd
- instead)
-
- * share/rpmsrate: Add kolab-server in GROUPWARE
-
- * share/compssUsers.server: Select Groupware by default
-
-2004/02/16 Pixel <pixel at mandrakesoft.com>
-
- * pkgs.pm: add in %pkgs::preferred the kernel-source corresponding to the
- preferred kernel
-
- * ugtk2.pm: during install, "Ok" is on the right, like gnome not kde
-
- * share/advertising/Makefile: get the list of files needed from
- list-PRODUCT
-
-2004/02/15 tsdgeos
-
- * share/po/ca.po: more updates
-
-2004/02/15 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10-0.16mdk
-
- * harddrake/data.pm: typo fix :-)
-
-2004/02/15 yrahal
-
- * share/po/ar.po: Committing Arabeyes.org's Arabic translation
-
-2004/02/14 fwang
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/02/14 keld
-
- * share/po/nb.po: Updates
- gi/perl-install/share/po/nb.po
- Updates. I could just as well update the Norwegian version
- as I wanted to use this as base for my Danish translation.
- gi/perl-install/share/po/nb.po
-
- * share/po/da.po: Updates
- soft/wizard_perl/po/da.po gi/perl-install/share/po/da.po
- Updates
- soft/control-center/po/da.po soft/drakfax/po/da.po
- soft/ftw/po/da.po soft/mdkonline/po/da.po
- soft/rfbdrake/po/da.po soft/rpmdrake/po/da.po
- soft/urpmi/po/da.po gi/perl-install/share/po/da.po
-
-2004/02/14 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: FTP restore failure feedback. Allow multiple
- catalog/file restore selection.
-
-2004/02/14 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm, printer/data.pm: Let printerdrake load the "usblp"
- instead of the "printer" kernel module if kernel 2.6.x is used.
-
- * printer/printerdrake.pm: Made printerdrake handling even very weird
- printer ID strings, as the one of the Brother HL-720 with empty
- manufacturer and description fields (Bug #7753).
-
- * printer/detect.pm: Recognize also "SN:" as serial number field in
- printer ID string (HP PhotoSmart 7760, bug #6534).
- Let printerdrake load the "usblp" instead of the "printer" kernel module
- if kernel 2.6.x is used.
-
-2004/02/14 tsdgeos
-
- * share/po/ca.po: Small updates to catalan translations
-
-2004/02/14 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10-0.15mdk
-
- * network/netconnect.pm: fix automatically found "...2" dns
-
- * harddrake/data.pm: fix ISDN detection (#6535)
- filter out devices to prevent them to appear several times in device
- tree (#4906)
-
- * network/isdn.pm (isdn_detect_backend) try harder to detect ISDN devices
-
- * standalone/harddrake2: break devices loop into two pass:
- - first detect devices into each class
- - then process them for later display
-
- * network/tools.pm: fix crash on canceling "already configured net device"
- configuration (#7679)
-
-2004/02/13 Pixel <pixel at mandrakesoft.com>
-
- * modules/interactive.pm: don't have a wait_message above another empty
- wait_message when probing hardware
-
- * ugtk2.pm: use center-on-parent for popped windows
-
- * share/list: perl-MDK-Common has been rebuilt
-
-2004/02/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk2.pm: do not try setting transcient hint when embedded
-
- * network/netconnect.pm: by default do not start connection at boot for
- modems (#7705)
-
- * drakxtools.spec: 10-0.14mdk
-
- * wizards.pm: enable default value to be dynamically computed
- enable to pass untranslated defaut to yes/no or ok/cancel like
- questions by translating value at runtime
- default to next/finish when no field is present
- add 'default' field in order to be able to enforce default answer for
- yes/no like questions or when data does not conatains any fields
- (needed for last #7705 bit)
- missing #7593 bit
- use interactive->ask_okcancel in order to not have spurious field in
- text mode (#7593)
-
-2004/02/13 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect: forgotten modem page, to be traduced, not yet
- usable (please don't hurt me)
-
-2004/02/13 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm: add a warning when choosing security level
- > 2 and having a windows partition
- (since in that case we won't have umask=0) (bugzilla #4731)
-
- * modules/interactive.pm: don't have a wait_message above another empty
- wait_message when probing hardware
-
- * ugtk2.pm: use center-on-parent for popped windows
-
- * share/list: perl-MDK-Common has been rebuilt
-
- * bootloader.pm: fix reading grub config (esp. when /boot is a separate
- partition)
- (nb for titi: join($xx, $yy) is *not* useful)
-
- * install2.pm: in boolean context, "any" is better than "find"
-
-2004/02/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10-0.14mdk
-
-2004/02/13 David Baudens <baudens at mandrakesoft.com>
-
- * share/po/fr.po: Fix </b> in advertiesment #5
-
- * share/advertising/drweb.pl, share/advertising/list-dwd,
- share/advertising/list-dis, share/advertising/list-ppp,
- share/advertising/drweb.png, share/advertising/list-pwp,
- share/advertising/list:
- - Add DRWeb's advertisement
- - Add list for each version
-
-2004/02/13 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/netconnect.pm:
- - do not flush /etc/sysconfig/drakconnect with an empty hash
- - move $offer_to_connect after %adsl_devices declaration (fix typo?)
- s/$config/$p/ for drakconnect conf file
-
- * standalone/drakconnect: forgotten modem page, to be traduced, not yet
- usable (please don't hurt me)
- - nice ethernet names back
- - fix adsl via ethernet bug
- - fix apply settings bug
- - fix and shrink sub apply
- - drop $gui and $config
- - add new hash style $p
-
-2004/02/13 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * modules.pm: fix deps problem because of 2.4/2.6 mappings, better support
- 2.4 and 2.6 alltogether by keeping 2.4 names in modules.conf
-
-2004/02/13 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/be.po, share/po/uk.po, share/po/mn.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/cy.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/tg.po,
- share/po/nb.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/hi.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/lv.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/hu.po, share/po/uz@Latn.po: updated pot file
-
- * share/advertising/dwd-09.pl: USE ASCII OR UTF-8 ONLY; **DON'T** USE
- ISO-8859-1!
-
-2004/02/13 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm: add a warning when choosing security level
- > 2 and having a windows partition
- (since in that case we won't have umask=0) (bugzilla #4731)
-
- * modules/interactive.pm: don't have a wait_message above another empty
- wait_message when probing hardware
-
- * bootloader.pm: fix reading grub config (esp. when /boot is a separate
- partition)
- (nb for titi: join($xx, $yy) is *not* useful)
- try hard to update_bootloader_for_renumbered_partitions()
- create read_grub_device_map()
-
- * install2.pm: in boolean context, "any" is better than "find"
- - have usb-storage as a scsi_hostadapter by default
- - remove it if unneeded for normal boot (cf comment in the code)
-
- * modules.pm:
- - have usb-storage as a scsi_hostadapter by default
- - remove it if unneeded for normal boot (cf comment in the code)
-
- * diskdrake/interactive.pm: try hard to
- update_bootloader_for_renumbered_partitions()
-
- * mdk-stage1/init.c: sleep 10 only when debugging
-
- * interactive.pm: no need for this
-
-2004/02/13 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Fix QA reports of crash on file search, failure
- to report ftp error.
-
-2004/02/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: update
- update
-
- * standalone/icons/printerdrake.png, standalone/icons/drakgw.png,
- standalone/icons/scannerdrake.png, standalone/icons/drakvpn.png,
- standalone/icons/drakfirewall.png,
- standalone/icons/wiz_scannerdrake.png, standalone/drakpxe,
- standalone/icons/wiz_firewall.png, pixmaps/printerdrake.png,
- standalone/icons/wiz_drakvpn.png, standalone/drakgw,
- standalone/icons/logdrake.png, standalone/icons/wiz_printerdrake.png,
- standalone/icons/wiz_drakgw.png, standalone/icons/wiz_logdrake.png,
- standalone/icons/wiz_drakconnect.png, standalone/icons/drakconnect.png,
- printer/printerdrake.pm: new banner icons
-
- * standalone/harddrake2: do not force black color for fields values, this
- badly conflict with
- inverted accessibility themes
- remove statusbar on interface team request
-
- * network/netconnect.pm: new banner icons
- offer_to_connect: fix indentation
-
- * harddrake/data.pm: only look for local printers (do not perform heavy
- network probe)
-
- * modules.pm: handle wireless modules
-
- * standalone/drakconnect: new banner icons
- remove useless comment
- new banner icons
-
- * ugtk2.pm (create_scrolled_window) add relief for TreeViews too
- (interface team
- request)
- (new) simplify WizardTable
- (Gtk2::Banner->new) fix default banner size
- (new) use new Gtk2::Banner object for banner
- remove uneeded variable
- (Gtk2::Banner) move that widget from mcc into ugtk2 so that all tools
- can reuise it for their banners
-
- * interactive.pm (vnew) do not complaint about being run as root when
- --testing was passed
-
- * drakxtools.spec: 10-0.14mdk
- 10-0.13mdk
-
- * Makefile.config: add drakvpn
-
- * standalone/drakvpn: verbs must be upcased on buttons!!!
- new banner icons
-
-2004/02/12 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: in get_kernels_and_labels():
- - change internal data structure
- - change regexp matching kernel names (was broken for
- 2.4.25-0.pre7.3mdk)
- - default to kernel 2.4 when lsb is installed
-
-2004/02/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk2.pm (new) simplify banner rendering, make it cpu lighter
-
- * network/netconnect.pm: ask isp for ip and gateway by default (#7705)
-
- * standalone/drakclock (DrawPointAt) simplify draw_points call
-
-2004/02/12 David Baudens <baudens at mandrakesoft.com>
-
- * share/advertising/dwd-09.pl: Update text to reflect reality
-
-2004/02/12 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect: fix ethernet and adsl conflict in menu
-
-2004/02/12 Florin Grad <florin at mandrakesoft.com>
-
- * standalone/drakvpn: hopefuly better interface
-
-2004/02/12 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/stage1.c, mdk-stage1/modules.c, mdk-stage1/tools.c: try to
- detect regular floppy drives
-
- * mdk-stage1/Makefile.common: linux/fd.h is too broken to compile with -W
- :(
-
- * install2.pm: i810fb on 2.6 needs intel-agp module, doesn't like hwcur
- and xcon parameters
-
-2004/02/12 Pixel <pixel at mandrakesoft.com>
-
- * authentication.pm:
- - install ldap packages *before* doing ldapsearch
- - pam*.so modules do not have /lib/security/ prefix anymore
-
- * Makefile: add rule dont_run_directly_stage2
-
- * devices.pm: add input/mice
-
- * install_any.pm: change return type of pkgs::packages2kernels()
- add kernel-2.4* in group LSB
-
- * bootloader.pm: in get_kernels_and_labels():
- - change internal data structure
- - change regexp matching kernel names (was broken for
- 2.4.25-0.pre7.3mdk)
- - default to kernel 2.4 when lsb is installed
-
- * do_pkgs.pm, pkgs.pm: change return type of pkgs::packages2kernels()
-
- * standalone/icons/wiz_drakvpn.png: re-adding with -kb
- removing for re-adding with -kb
-
- * Xconfig/card.pm: handle case where rpm can't be found (eg: XFree86-SVGA
- for xfree3) (part of bugzilla #7786)
-
- * install_steps_interactive.pm: warn that selecting LSB means having 2.4
- by default
-
-2004/02/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/data.pm: fix driver blacklist
-
- * drakxtools.spec: fix changelog
- 10-0.12mdk
- 10-0.11mdk
-
- * ugtk2.pm (new) simplify banner rendering, make it cpu lighter
-
- * standalone/drakclock (DrawPointAt) simplify draw_points call
-
- * network/netconnect.pm: ask isp for ip and gateway by default (#7705)
- do use the actual user's answer
- preselect right protocol for ethernet though connections
- fix step linking with ask_connect_now and restart steps:
- - fix check for restart step
- - only offer to connect now for ppp connections
- fix module retrieving when configuring an adsl connection over ethernet
- sort ADSL protocols according to locale
- fix adsk over ethernet through dhcp protocol
-
- * share/po/fr.po: update
-
-2004/02/12 David Baudens <baudens at mandrakesoft.com>
-
- * share/advertising/ppp-07.pl, share/advertising/dis-11.pl,
- share/advertising/dis-10.pl, share/advertising/ppp-11.pl,
- share/advertising/ppp-10.pl, share/advertising/dis-05.pl,
- share/advertising/ppp-09.pl, share/advertising/ppp-04.pl,
- share/advertising/pwp-04.pl, share/advertising/pwp-10.pl,
- share/advertising/dis-07.pl, share/advertising/pwp-08.pl,
- share/advertising/dis-04.pl, share/advertising/pwp-09.pl: Final versions
- for MDK 10.0
-
-2004/02/12 Pixel <pixel at mandrakesoft.com>
-
- * Makefile: add rule dont_run_directly_stage2
-
- * install2.pm: replace unless with if
-
- * mouse.pm: more cleanup
- new 'Universal|Any PS/2 & USB mice' mouse name usable with kernel 2.6
- rename mouseconfig() with detect_serial() which is what it really does!
- create probe_wacom_devices() and cleanup
- cleanup
- cleanup
- remove deprecated comment
- always use fast_mouse_probe (probing serial is now mostly deprecated,
- and it
- is *re-done* by drakconnect, so no need to do it soon)
- cleanup wacom detection
-
- * devices.pm: add input/mice
-
-2004/02/12 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Restore title banner.
-
- * standalone/drakbackup: Address some QA issues with restores.
- Cleanup screen layout in restore screen.
- Restore title banner.
-
-2004/02/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: sort ADSL protocols according to locale
- fix adsk over ethernet through dhcp protocol
- simplify adsl protocol choosing through format callback
-
- * drakxtools.spec: 10-0.11mdk
-
- * harddrake/data.pm: detect more webcams
-
-2004/02/11 Florin Grad <florin at mandrakesoft.com>
-
- * standalone/icons/wiz_drakvpn.png: first shy attempt
-
- * network/ipsec.pm: fix the perl_checker errors
- remove debugging print commands
- first shy attempt
-
- * standalone/drakvpn: typo errors
- fix the perl_checker errors
- remote debugging print commands
- first shy attempt
-
-2004/02/11 fwang
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/02/11 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/probing.c: be sure to load usb-storage after SCSI adapters,
- so that they are in
- same order than reboot, so that naming is the same
- don't insmod usb-storage the soonest, we can end up mixing scsi devices
- orders at reboot time, do it only when needed
-
-2004/02/11 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po: updated Estonian file
-
- * share/po/cy.po: updated Welsh file
-
-2004/02/11 Pixel <pixel at mandrakesoft.com>
-
- * tools/hd_grub.cgi: adding hdd .. hdh
- initial version
-
-2004/02/11 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Rearrange main buttons (jmdault -
- http://advx.org/docs/ice3.png)
- Disable title banner for now (Bugzilla 7564).
- Don't assume eth0, rework subnet/netmask for hosts.allow (jmdault).
-
- * standalone/drakbackup: Disable title banner for now (same as Bugzilla
- 7564, just not reported yet).
-
-2004/02/11 tpittich
-
- * share/po/sk.po: updated slovak translation
-
-2004/02/11 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: Add smb4k to replace LinNeighborhood (Buchan Milnes
- suggestion), decrease LinNeighborhood to 3.
- raise mc from 3 to 4 in FILE_TOOLS
-
-2004/02/10 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect:
- - isdn and modem are fetched from $intf
- - drop useless @all_cards
- - 'ath' and 'wlan' cards fix
-
-2004/02/10 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/02/10 fwang
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/02/10 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/probing.c: fake usb floppies detection by looking at blocks
- size of scsi disk devices, 1048575 is for 2.4 and 1440 for 2.6
-
- * mdk-stage1/mount.c: in network mode we need to create nodes as well
- because of usb floppies support
-
- * mdk-stage1/tools.c, mdk-stage1/tools.h: floppy_device returns first
- floppy device, look for medias first in case of usb floppies (maybe ide
- floppies also? never tested) then regular floppy drive
-
- * mdk-stage1/stage1.c, mdk-stage1/modules.c: use floppy_device rather than
- /dev/fd0 because we now support usb floppies as well
-
-2004/02/10 Pixel <pixel at mandrakesoft.com>
-
- * share/keymaps.tar.bz2: update
-
- * tools/serial_probe/serial.c: fix serial probe not detecting legacy mice
-
- * install_steps.pm, detect_devices.pm, any.pm: no need to fake scsi for
- ide anymore (hopefully!)
-
-2004/02/10 tsdgeos
-
- * share/po/ca.po: Updates, unfuzzying and spell checking
-
-2004/02/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * security/msec.pm (apply_checks) reindent
- (apply_checks) fix unable to save checks when config file is empty
- (aka substInFile does not support using print in that case)
-
-2004/02/10 David Baudens <baudens at mandrakesoft.com>
-
- * share/advertising/pwp-05.pl, share/advertising/dis-11.pl,
- share/advertising/ppp-11.pl, share/advertising/dwd-02.pl,
- share/advertising/dis-09.pl, share/advertising/ppp-09.pl,
- share/advertising/pwp-04.pl, share/advertising/dis-04.pl,
- share/advertising/pwp-06.pl, share/advertising/dwd-09.pl: Update
-
- * share/advertising/dwd-06.pl: Update
- Update
-
-2004/02/10 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect:
- - add 'ath' and 'wlan' to ethernet kind
- - use regexp once
-
-2004/02/10 fwang
-
- * share/po/zh_CN.po: Updated Simplified Chinese translation
-
-2004/02/10 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/probing.c: fake usb floppies detection by looking at blocks
- size of scsi disk devices, 1048575 is for 2.4 and 1440 for 2.6
-
- * mdk-stage1/mount.c: in network mode we need to create nodes as well
- because of usb floppies support
-
- * mdk-stage1/tools.c, mdk-stage1/tools.h: floppy_device returns first
- floppy device, look for medias first in case of usb floppies (maybe ide
- floppies also? never tested) then regular floppy drive
-
- * mdk-stage1/stage1.c, mdk-stage1/modules.c: use floppy_device rather than
- /dev/fd0 because we now support usb floppies as well
-
-2004/02/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/be.po, share/po/uk.po, share/po/mn.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/cy.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/tg.po,
- share/po/nb.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/hi.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/lv.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/hu.po, share/po/uz@Latn.po: updated pot file
- updated pot file
-
-2004/02/10 Pixel <pixel at mandrakesoft.com>
-
- * any.pm, detect_devices.pm, install_steps.pm: no need to fake scsi for
- ide anymore (hopefully!)
-
- * interactive/gtk.pm: have modal windows
-
- * ugtk2.pm: better code for detecting if the window is hidden or not
- (fixes embedded drakconnect wizard should be popped window) (bugzilla
- #7246)
-
- * services.pm: for install, a service is on if there is at least one
- runlevel for which the
- service is on (esp. for service "dm") (bugzilla #7146)
-
- * c/stuff.xs.pl: we don't KTYP anymore, but we need K_NOSUCHMAP
-
- * keyboard.pm: rewrite & cleanup. Now works with kernel 2.6, don't know
- exactly why...
-
- * common.pm: add unpack_with_refs()
-
- * tools/serial_probe/serial.c: fix serial probe not detecting legacy mice
-
- * share/keymaps.tar.bz2: update
-
-2004/02/10 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Use logdrake mail method, allow definition of
- SMTP server. (Arnaud de Lorbeau)
-
-2004/02/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: do not allow to step forward if no network card
- was found (workaround
- #7672). we'd better be able to manually add an unsupported network
- card though.
-
- * drakxtools.spec: 10-0.10mdk
-
- * security/msec.pm (apply_checks) reindent
- (apply_checks) fix unable to save checks when config file is empty
- (aka substInFile does not support using print in that case)
-
- * share/po/fr.po: update
-
-2004/02/10 fwang
-
- * share/po/zh_CN.po: update
-
-2004/02/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/be.po, share/po/uk.po, share/po/mn.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/cy.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/tg.po,
- share/po/nb.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/hi.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/lv.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/hu.po, share/po/uz@Latn.po: updated pot file
-
-2004/02/10 Pixel <pixel at mandrakesoft.com>
-
- * ugtk2.pm: better code for detecting if the window is hidden or not
- (fixes embedded drakconnect wizard should be popped window) (bugzilla
- #7246)
- remove many warnings about unitialised value (causing a bug in
- diagnostics.pm?)
-
- * pkgs.pm: remove postfix from naughtyServers (fix titi)
-
- * Xconfig/resolution_and_depth.pm: prefer BoardName to card_name
-
- * interactive/gtk.pm: have modal windows
-
-2004/02/10 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Undo some of the breakage, format is still
- wrong :(
-
- * standalone/drakbackup: Remove confusing "On hard drive" checkbox from
- wizard (Arnaud de Lorbeau)
- Fix failure to disable user cron job. Code reduction.
-
-2004/02/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * pkgs.pm: warn when installing postfix server (#7102)
- fix not warning about apache2 servers (#7559)
-
- * network/ethernet.pm (mapIntfToDevice) match pci function too (not that
- important since we
- do not know of any ethernet pci card that export two functions on the
- pci bug but anyway it's saner)
- note that we do not match for pci domain since ldetect does not report
- it
-
-2004/02/09 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/02/09 fwang
-
- * share/po/zh_CN.po: update
-
-2004/02/09 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * install_gtk.pm: resurrect 9.2 code for setting background. i was said to
- remove it for move because default colour is already mandrake colour but
- obviously it isn't.
-
- * Xconfig/resolution_and_depth.pm: RIVA128 fails miserably when using
- 16bpp
-
-2004/02/09 Pixel <pixel at mandrakesoft.com>
-
- * install_steps.pm, install_steps_interactive.pm, standalone/XFdrake:
- handle allowNVIDIA_rpms & allowATI_rpms directly in
- Xconfig::card::install_server
-
- * .cvsignore: my test file is now t.pl
-
- * install_steps_gtk.pm: use modal windows during install
-
- * common.pm: fix typo
-
- * Xconfig/card.pm: fix typo
- handle allowNVIDIA_rpms & allowATI_rpms directly in
- Xconfig::card::install_server
- force XF4 on all archs
-
- * ugtk2.pm: remove show_all that breaks when there are some hidden windows
- allow set_modal for popped windows at install
-
-2004/02/09 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Thierry compliance. Doesn't work anymore and
- fails perl_checker now :P
-
-2004/02/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/ethernet.pm (ether_conf) rename it as write_ether_conf()
- (mapIntfToDevice) fix pci/usb ethernet devices matching
-
- * standalone/drakfont (appli_choice) fix crash on option toggling (#7248)
-
- * network/netconnect.pm: fix unability to select gateway (#7585)
- fix empty list in "multiple internet_connexions" step
- fix unwritten ethernet interface config
- sort ethX interfaces in list
- blacklist bogus forcedeth driver for network hotplugging, enable
- ifplugd support for all other drivers even at install time (#7389)
-
- * drakxtools.spec: 10-0.9mdk
- 10-0.8mdk
-
- * detect_devices.pm (getNet) detect athX interfaces too (maybe should we
- inverse this func
- logic and blacklist ppp and the like interfaces ...)
- some eide Lite-on drivers are reported with different casse
-
-2004/02/08 Pixel <pixel at mandrakesoft.com>
-
- * Newt/.cvsignore: simplify
-
- * install_steps_interactive.pm: adapt to change allowing checking
- nvidia/ati proprietary driver availability only when needed
-
- * xf86misc/main.pm, c/stuff.xs.pl, install_steps_gtk.pm, mouse.pm,
- Makefile.config, xf86misc/main.xs, xf86misc/.cvsignore, drakxtools.spec,
- xf86misc/Makefile.PL, common.pm, xf86misc/Makefile, Xconfig/test.pm,
- Makefile.drakxtools: move Xtest() and setMouseLive() out of c/stuff to
- xf86misc::main
- so that we can use them (esp. setMouseLive) in standalone without making
- drakxtools-newt
- require xfree libs
-
-2004/02/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: update
- update
-
- * drakxtools.spec: XFdrake can run w/o gtk+ toolkit
- 10-0.7mdk
-
- * Xconfig/card.pm, standalone/XFdrake: make XFdrake startup be
- instantenous for non nv|ati cards (allowNVIDIA_rpms and
- allowATI_rpms tests used to cost us 99% of the long startup time of
- XFdrake:-()
-
-2004/02/08 yrahal
-
- * share/po/ar.po: Committing Arabeyes.org Arabic translation
-
-2004/02/07 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/be.po, share/po/uk.po, share/po/mn.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/cy.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/tg.po,
- share/po/nb.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/hi.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/lv.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/hu.po, share/po/uz@Latn.po: updated pot file
- updated pot file
-
- * standalone/logdrake: English typo and disambiguation of some strings
-
-2004/02/07 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: PXE image support, researched by Venantius
- Kumar.
-
-2004/02/06 David Baudens <baudens at mandrakesoft.com>
-
- * share/advertising/dwd-05.pl, share/advertising/dwd-08.pl,
- share/advertising/dwd-02.pl, share/advertising/dwd-04.pl,
- share/advertising/dwd-06.pl, share/advertising/dwd-07.pl,
- share/advertising/dwd-09.pl: Update
-
- * share/rpmsrate: Update for Discovery
-
-2004/02/06 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect:
- - do only one regexp on $interface
- - more readable repack
- - add sub check_field
- - check IPs
- - delete BOOTPROTO when not needed
-
-2004/02/06 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/02/06 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/url.c: log server http response
-
- * ugtk2.pm: shrink_topwindow: add (force gtk to recompute size of
- topwindow, when some child widgets got destroyed or shrinked)
-
-2004/02/06 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/help-zh_CN.pot, share/po/ms.po, share/po/sk.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/help_xml2pm.pl, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/he.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/nb.po, share/po/uz.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/lv.po, share/po/hu.po, share/po/fa.po, share/po/id.po,
- share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/mn.po, share/po/uk.po,
- share/po/lt.po, share/po/cy.po, share/po/help-it.pot, share/po/tg.po,
- share/po/bs.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/fr.po, share/po/ta.po, share/po/vi.po, share/po/nl.po,
- share/po/de.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: updated pot file
-
- * help.pm: Changed Newt/Previous strings to remove arrows
-
-2004/02/06 Pixel <pixel at mandrakesoft.com>
-
- * drakxtools.spec: draksec needs gtk, no must not be in drakxtools-newt
- (bugzilla #7413)
-
- * Xconfig/monitor.pm:
- - ensure ModelName comes from the ddc probe when choosing "Plug'n
- Play"
- - only "Plug'n Play" instead of "Plug'n Play (<ModelName>)" when
- current monitor is not plug'n play
-
- * mouse.pm:
- - add change_mouse_live()
- - use /dev/mouse in XF86Config to allow changing protocol in
- standalone
-
- * interactive/gtk.pm: workaround gtk limitation #133489
-
- * install_steps_gtk.pm: use mouse::change_mouse_live()
-
- * bootloader.pm: special way to remove mem=<memsize>
- please perl_checker
- following quintela's lilo change, allowing lilo labels up to 31
- characters
-
- * share/po/help_xml2pm.pl:
- - handle zh_CN.po
- - handle tags <phrase> and <hardware>
-
- * Xconfig/card.pm: don't test X config if using driver vmware (bugzilla
- #5346)
-
- * share/po/help-zh_CN.pot, share/po/help-ru.pot, help.pm,
- share/po/help-de.pot, share/po/help-fr.pot, share/po/help-es.pot,
- share/po/help-it.pot: update from xml
-
- * standalone/mousedrake: use ->create_okcancel instead of doing it by hand
- (hopefully it will ensure better choice of Ok/Cancel vs Cancel/Ok
- without breaking anything...)
- - no special testing mouse in embedded
- - use mouse::change_mouse_live()
-
- * network/shorewall.pm: handle range (bugzilla #7172)
-
- * any.pm (fileshare_config): quite different way of handling it, asking
- first if user
- wants sharing or not, then asking which protocol (when users wants
- sharing).
- Removing or installing the server package handling the protocols (smb or
- nfs).
- handle better bootloader per entries video mode
- special way to remove mem=<memsize>
- remove defaulting global vga mode to normal
- fix old typo: complete callback was not called
- drop bootloader main options "Compact" and "Video mode"
-
-2004/02/06 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Provide more detailed info on files backed
- up/ignored. <Anthill #306>
- Cleanup some of the redundant code in the actual backup routines.
-
-2004/02/06 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/logdrake (alert_config) do not complain when removing non
- existing cron entry
- (aka when one run twice the disable path)
-
- * security/msec.pm: fix draksec not saving options when config file do not
- exists :-(
-
- * share/po/fr.po: update
- update
- fix layout in drakconnect
-
- * standalone/draksec: workaround gtk limitation #133489
-
- * drakxtools.spec: 10-0.6mdk
- move drakbug, drakclock, drakperm, drakTermServ, net_monitor in
- drakxtools too since they require ugtk2.
- move their aliases (soft links) their too.
- 10-0.5mdk
- 10-0.4mdk
-
- * network/netconnect.pm: help perl_checker regarding comments for
- translators
- wireless step: add an hint for translators
- split wireless step into two steps since there way too much options
- fix wireless settings (references being made too early)
- (main) try first to match a pcmcia device before trying to match
- pci/usb when looking for module (#7431)
-
- * ugtk2.pm (new) remove unused flush()
- (new) fix pixel breaking non wizard embedded case while cleaning :-(
-
- * standalone/draksound: advertize alsaconf too since sndconfig failled for
- cards only managed
- by ALSA (#7456)
-
-2004/02/06 Warly <warly at mandrakesoft.com>
-
- * standalone/drakboot: Warn if the user is not in framebuffer mode, but
- allow to see the installed theme.
- Do not perform autologin config in splash mode
- Better parsing of current resolution from detect-resolution
-
-2004/02/05 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * any.pm: this part of code is already executed only in $::isInstall
-
- * standalone/drakconnect: Informations doesn't exist in english, use
- Information instead (no need to update the POs, they already contain
- Information elsewhere)
-
-2004/02/05 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/mn.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/he.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/tg.po, share/po/nb.po, share/po/bs.po,
- share/po/uz.po, share/po/ro.po, share/po/mk.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/hi.po, share/po/az.po,
- share/po/zh_TW.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/lv.po, share/po/el.po, share/po/bg.po,
- share/po/hu.po, share/po/uz@Latn.po: updated pot file
-
- * share/po/zh_CN.po: updated pot file
- updated Chinese file
-
- * share/po/sl.po: updated Slovenian file
- updated pot file
-
- * share/po/et.po: updated pot file
- updated Estonian file
-
- * keyboard.pm: ichanged console uz keyboard to uz.uni
-
- * share/po/cs.po: updated Czech file
- updated pot file
-
-2004/02/05 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/resolution_and_depth.pm: allow 24bpp for DRI (since all drivers
- now support it: we had mga tdfx r128
- radeon, and i810 also works (tested on a i865))
-
- * interactive/gtk.pm: since we use WrappedLabel, it's better not to
- warp_text()
-
- * standalone/drakboot: write fstab for /tmp using tmpfs when "clean /tmp"
- is chosen
-
- * Xconfig/xfreeX.pm, Xconfig/parse.pm, Xconfig/main.pm, Xconfig/xfree.pm:
- - add ->prepare_write to allow comparing raw_X's
- - ensure "config_changed" is returned only if the config file really
- changed
-
- * ugtk2.pm: simplify _create_window() prototype
-
- * diskdrake/dav.pm: remove "Quit" icon
-
- * any.pm: fix ugly typo (occuring when removing "clean /tmp", ie not
- often, especially
- since drakboot didn't write fstab)
-
- * install_steps.pm: install_steps is a do_pkgs, so add "use do_pkgs"
-
-2004/02/05 tpittich
-
- * share/po/sk.po: updated slovak translation
-
-2004/02/05 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/logdrake: typo fix (spoted by Per Øyvind Karlsen)
- upcase protocol name
-
- * network/netconnect.pm: enable one to not enter optional parameters (aka
- relax checks on valid
- values for bitrate and frequency) (#7432)
-
- * share/po/fr.po: update
- another typo fix regarding firewall
- typo fixes (cosmic flo)
-
- * ugtk2.pm (new) add a border too when embedded
-
- * network/ethernet.pm (get_eth_cards) try first to match a pcmcia device
- before trying to
- match pci/usb ones when looking for real device's name (#7401)
-
-2004/02/04 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/nb.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/mn.po,
- share/po/uk.po, share/po/lt.po, share/po/cy.po, share/po/tg.po,
- share/po/bs.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/hi.po, share/po/af.po, share/po/az.po, share/po/pt.po,
- share/po/fr.po, share/po/ta.po, share/po/vi.po, share/po/nl.po,
- share/po/de.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po, share/po/uz@Latn.po: updated pot file
-
- * lang.pm: more locale fixes; and changed images for Uzbek to default to
- cyrillic
- a bit of locales corrections
-
- * pixmaps/langs/lang-uz@Latn.png, pixmaps/langs/lang-uz.png: more locale
- fixes; and changed images for Uzbek to default to cyrillic
-
-2004/02/04 Pixel <pixel at mandrakesoft.com>
-
- * standalone/icons/wiz_default_left.png: remove $draw2 (in ugtk2.pm) and
- wiz_default_left.png which are unused
-
- * install_steps_gtk.pm: rename $ugtk2::force_center used at install with
- $ugtk2::force_center_at_pos
- the boolean $ugtk2::force_center value used standalone is kept as before
-
- * mouse.pm: use protocol "ExplorerPS/2" instead of "auto" for kernel 2.6
- (not statisfying since people booting with kernel 2.4 will not get a
- working
- mouse, but at least we can test if this really works nicely for 2.6)
-
- * standalone/harddrake2, standalone.pm: $::noBorder is deprecated (it was
- the same as !$::isInstall)
-
- * ugtk2.pm:
- - rename $ugtk2::force_center used at install with
- $ugtk2::force_center_at_pos
- the boolean $ugtk2::force_center value used standalone is kept as before
- - deprecate $::noBorder (it was the same as !$::isInstall)
- - deprecate $ugtk2::force_position (unused AFAIK)
-
- - _create_window() now returns the created window, it doesn't assign
- {rwindow}
- nor {window} anymore. It doesn't handle a Frame for the window
- (it is now directly done by ugtk2->new which is the only function
- using _create_window())
-
- - deprecate option no_interactive_objects (unused AFAIK)
-
- - {rwindow} is a VBox for both isWizard and isEmbedded
- (when isEmbedded, a HBox was created, replacing the create VBox)
-
- - call ->set_title on $::WizardWindow so that the title is honored in
- non embedded wizard
-
- - remove $draw2 and wiz_default_left.png which are unused
-
- - remove ->set_uposition on $::WizardWindow for install. This is not
- needed
- anymore since force_center_at_pos now works on $::WizardWindow
-
- - hoist $::WizardTable creation
-
- - explicitly set the size of the window during install. The chosen
- value is
- the same as before +9 pixels for the height
- (the size needs to be fixed since the advertising images must fit)
-
- - remove the callbacks on expose_event and delete_event for non
- embedded wizard.
- they are the same as the one in _create_window()
- (except for the delete_event which explicitly destroy the window, is
- that ok??)
-
- more questions:
- - ->set_title on a plug may break, it needs testing
- - flush() just after Gtk2::Plug->new, is it needed? (since there is
- another flush())
-
-2004/02/04 Daouda Lo <daouda at mandrakesoft.com>
-
- * drakxtools.spec:
- - don't be afraid, this is not the doc package but just perl module
- needed by drakhelp.
-
- * timezone.pm:
- - less arguments in ntp_server, $prefix no more passed to function
- args
-
- * share/rpmsrate:
- - new mandrake-doc* names
-
-2004/02/04 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/netconnect.pm:
- - add network::ethernet::get_eth_cards_names
- - kill duplicated code
- drop Storable and use Dumper (queen & pipi rulez)
-
- * network/ethernet.pm:
- - add network::ethernet::get_eth_cards_names
- - kill duplicated code
-
- * standalone/drakconnect: compact declaration
- ethernet cards get via get_eth_cards()
- - add network::ethernet::get_eth_cards_names
- - kill duplicated code
- drop Storable and use Dumper (queen & pipi rulez)
- typo fix...
-
-2004/02/04 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * standalone.pm: http://www.gnu.org/prep/standards_18.html says --help and
- --version are printed on standard output
-
- * docs/README: update netauto doc
-
-2004/02/04 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * lang.pm: a bit of locales corrections
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/be.po, share/po/uk.po, share/po/mn.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/cy.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/tg.po,
- share/po/nb.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/hi.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/lv.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/hu.po, share/po/uz@Latn.po: updated pot file
-
-2004/02/04 Pixel <pixel at mandrakesoft.com>
-
- * standalone/icons/wiz_default_left.png: remove $draw2 (in ugtk2.pm) and
- wiz_default_left.png which are unused
-
- * lvm.pm: create /dev/mapper/control (needed when you don't have devfs)
- - replace PE_size with extent_size and get it (fix illegal division by
- 0)
- - fix getting the output of pvs vgs lvs commands
- (chomp_ is not enough because of spaces at the end)
- - fix get_lvs() (and use lvs instead of vgdisplay)
-
- * diskdrake/interactive.pm:
- - don't display start sector and cylinders used for LVs
- - display "Number of logical extents" of LVs
-
- * install_gtk.pm: we now use XF4 during install, so we can support
- ExplorerPS/2 (XF3 didn't know it)
-
- * install_steps_gtk.pm: rename $ugtk2::force_center used at install with
- $ugtk2::force_center_at_pos
- the boolean $ugtk2::force_center value used standalone is kept as before
-
- * mouse.pm: use protocol "ExplorerPS/2" instead of "auto" for kernel 2.6
- (not statisfying since people booting with kernel 2.4 will not get a
- working
- mouse, but at least we can test if this really works nicely for 2.6)
-
- * Xconfig/card.pm: replace 4.3 with 4.4 (XFree version) (bugzilla #7378)
-
- * ugtk2.pm:
- - rename $ugtk2::force_center used at install with
- $ugtk2::force_center_at_pos
- the boolean $ugtk2::force_center value used standalone is kept as before
- - deprecate $::noBorder (it was the same as !$::isInstall)
- - deprecate $ugtk2::force_position (unused AFAIK)
-
- - _create_window() now returns the created window, it doesn't assign
- {rwindow}
- nor {window} anymore. It doesn't handle a Frame for the window
- (it is now directly done by ugtk2->new which is the only function
- using _create_window())
-
- - deprecate option no_interactive_objects (unused AFAIK)
-
- - {rwindow} is a VBox for both isWizard and isEmbedded
- (when isEmbedded, a HBox was created, replacing the create VBox)
-
- - call ->set_title on $::WizardWindow so that the title is honored in
- non embedded wizard
-
- - remove $draw2 and wiz_default_left.png which are unused
-
- - remove ->set_uposition on $::WizardWindow for install. This is not
- needed
- anymore since force_center_at_pos now works on $::WizardWindow
-
- - hoist $::WizardTable creation
-
- - explicitly set the size of the window during install. The chosen
- value is
- the same as before +9 pixels for the height
- (the size needs to be fixed since the advertising images must fit)
-
- - remove the callbacks on expose_event and delete_event for non
- embedded wizard.
- they are the same as the one in _create_window()
- (except for the delete_event which explicitly destroy the window, is
- that ok??)
-
- more questions:
- - ->set_title on a plug may break, it needs testing
- - flush() just after Gtk2::Plug->new, is it needed? (since there is
- another flush())
- (gtk_TextView_get_log): handle errors
-
- * standalone/harddrake2, standalone.pm: $::noBorder is deprecated (it was
- the same as !$::isInstall)
-
- * interactive.pm:
- ->ask_from_entry and ->ask_from_entries are better with focus_first
-
- * do_pkgs.pm (ensure_is_installed): file to test if the package is
- installed is optional.
- But in that case, you have to check if it is installed first.
-
-2004/02/03 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/netconnect.pm, standalone/drakconnect:
- - fix adsl_conf_backend call
- - store and retreive network interfaces via $config file
-
-2004/02/03 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/02/03 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/modules.c: differentiate no floppy disk in driver or ext2 fs
-
- * mdk-stage1/dhcp.c: document when netauto is not provided and bootfile
- DHCP server param is given
-
- * mdk-stage1/doc/TECH-INFOS: more doc on DHCP server response conf
-
-2004/02/03 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: perl_checker fix
-
- * modules.pm: fix typo
- fix typo
-
-2004/02/03 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Maintain /etc/passwd$$CLIENT$$ so mdkkdm has a
- valid userlist.
-
-2004/02/03 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * modules/parameters.pm (parameters) fix modinfo parsing (format had been
- altered between
- modutils and module-init-tools :-()
-
- * modules/interactive.pm (config_window) do not even try to hint the user
- about the parameter
- format on a 2.6.x kernel
-
- * share/po/fr.po: fix translator that ignore shortcut hints
-
-2004/02/02 David Baudens <baudens at mandrakesoft.com>
-
- * share/advertising/dis-07.pl, share/advertising/dis-09.pl: Update
- Update
-
- * share/advertising/pwp-05.pl, share/advertising/dis-06.pl,
- share/advertising/dwd-08.pl, share/advertising/pwp-02.pl,
- share/advertising/dwd-04.pl, share/advertising/ppp-03.pl,
- share/advertising/dis-02.pl, share/advertising/dis-08.pl,
- share/advertising/dis-04.pl, share/advertising/pwp-06.pl,
- share/advertising/dis-11.pl, share/advertising/dwd-03.pl,
- share/advertising/dis-10.pl, share/advertising/ppp-08.pl,
- share/advertising/dwd-06.pl, share/advertising/ppp-02.pl,
- share/advertising/pwp-07.pl, share/advertising/dwd-07.pl,
- share/advertising/ppp-07.pl, share/advertising/dwd-02.pl,
- share/advertising/dis-05.pl, share/advertising/ppp-09.pl,
- share/advertising/dis-01.pl, share/advertising/pwp-10.pl,
- share/advertising/dwd-05.pl, share/advertising/ppp-06.pl,
- share/advertising/ppp-05.pl, share/advertising/ppp-01.pl,
- share/advertising/dis-03.pl, share/advertising/pwp-03.pl,
- share/advertising/ppp-04.pl, share/advertising/pwp-01.pl,
- share/advertising/pwp-04.pl, share/advertising/pwp-08.pl,
- share/advertising/pwp-09.pl, share/advertising/dwd-09.pl: Update
-
-2004/02/02 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/uz@Cyrl.po, share/po/et.po,
- share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/mn.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/tg.po, share/po/nb.po, share/po/bs.po, share/po/uz.po,
- share/po/ro.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/hi.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/lv.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/hu.po, share/po/uz@Latn.po: updated pot file;
- changed Uzbek to default to cyrillic
-
-2004/02/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 10-0.3mdk
- 10-0.2mdk
-
- * share/po/fr.po: make installer look smoother in french
- fix drakboot layout when localized in french
- update
-
- * ugtk2.pm: use wrapped labels in various places
-
- * interactive/gtk.pm: do not pass extra empty invisible label (really
- cosmetic)
- use wrapped labels in various places
-
- * c/stuff.xs.pl: kill warning
-
- * network/netconnect.pm: only list wireless capabale cards when one choose
- wireless cnx
- split out wireless connections out of lan ones so that users are less
- confused
- fix preselecting ppoa for speedtouch modem
-
- * standalone/logdrake: remove unneeded next fields
- make cron script be able to use either local smtp server or a remote
- one (arnaud)
- add "remove cron entry" on arnaud request
-
- * standalone.pm: update drakfont help message
- bump copyright
- --help: documente new drakboot and drakconnect parameters
-
- * any.pm: fix drakboot layout: use checkboxes own labels rather than
- packing extra
- labels
-
- * network/tools.pm (is_wireless_intf) kill it since it's no more usefull.
- rationale: rather than duplicating modules list in
- kernel/list_modules.pm
- and network/tools.pm (with usual sync bugs), it's quite much easier to
- maintain one single list of wireless modules in list_modules.pm
-
-2004/02/02 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/02/02 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/advertising/dis-10.pl, share/advertising/pwp-09.pl: unified
- phrases that are the same, to ease translating
-
-2004/02/02 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: fix reading stage1 network configuration
-
- * detect_devices.pm:
- - no ide-scsi emulation for ide ZIPs
- - no ide-scsi emulation for cd burners when kernel 2.6
-
- * install_steps.pm: fix typo creating agpgart alias
- - no ide-scsi emulation for ide ZIPs
- - no ide-scsi emulation for cd burners when kernel 2.6
-
-2004/02/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/data.pm: remove debug message
- fix adsl modem detection
-
- * network/tools.pm: remove pseudo global variables use from use_floppy()
-
- * network/adsl.pm (adsl_detect) fix modem detection so that harddrake get
- full device
- meta data rather than plain presence boolean
- remove pseudo global variables use from adsl_conf_backend()
-
- * network/netconnect.pm: fix preselecting ppoa for speedtouch modem
- remove pseudo global variables use from use_floppy()
- remove pseudo global variables use from adsl_conf_backend()
-
- * drakxtools.spec: 10-0.2mdk
- 10-0.1mdk
-
- * share/rpmsrate: add some packages for adsl
-
- * network/ethernet.pm: this module does not need anymore pseudo global
- variables
-
- * harddrake/sound.pm: handle new aureal drivers
-
-2004/02/02 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/02/02 Pixel <pixel at mandrakesoft.com>
-
- * detect_devices.pm:
- - no ide-scsi emulation for ide ZIPs
- - no ide-scsi emulation for cd burners when kernel 2.6
-
- * install_steps.pm: fix typo creating agpgart alias
- - no ide-scsi emulation for ide ZIPs
- - no ide-scsi emulation for cd burners when kernel 2.6
-
-2004/02/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/ethernet.pm (get_eth_cards) handle not loaded drivers
-
- * harddrake/sound.pm: handle new aureal drivers
-
- * drakxtools.spec: 9.3-28mdk
-
-2004/02/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/rpmsrate: only install uim and anthil on cjk boxes
-
- * network/ethernet.pm (get_eth_cards) handle not loaded drivers
-
- * drakxtools.spec: 9.3-28mdk
-
-2004/02/01 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * lang.pm: changed font names to match real font name capitalization
-
- * share/po/de.po: updated German file
-
-2004/02/01 yrahal
-
- * share/po/ar.po: Committing Arabeyes.org's Arabic translation.
-
-2004/01/31 keld
-
- * share/po/da.po: updates
- soft/ftw/po/da.po soft/initscripts/po/da.po
- soft/menudrake/po/da.po soft/urpmi/po/da.po
- soft/wizard_perl/po/da.po gi/perl-install/share/po/da.po
-
-2004/01/31 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/adsl_consts.pm: add sources url
-
- * network/netconnect.pm: enable to set hostname even when using DHCP
- (#7230)
-
-2004/01/30 David Baudens <baudens at mandrakesoft.com>
-
- * share/advertising/ppp-07.pl, share/advertising/dis-06.pl,
- share/advertising/dwd-08.pl, share/advertising/dwd-02.pl,
- share/advertising/dwd-04.pl, share/advertising/ppp-09.pl,
- share/advertising/ppp-03.pl, share/advertising/dwd-01.pl,
- share/advertising/dwd-05.pl, share/advertising/ppp-06.pl,
- share/advertising/dwd-03.pl, share/advertising/dis-10.pl,
- share/advertising/ppp-05.pl, share/advertising/ppp-11.pl,
- share/advertising/ppp-01.pl, share/advertising/ppp-08.pl,
- share/advertising/ppp-10.pl, share/advertising/dwd-06.pl,
- share/advertising/ppp-04.pl, share/advertising/ppp-02.pl,
- share/advertising/dwd-07.pl: Update
-
- * share/advertising/dwd-09.pl: Fix typo
- Update
-
-2004/01/30 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect:
- - remove not needed $security
- - clean dumb foreach repetition (one foreach to rule them all)
-
-2004/01/30 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * ugtk2.pm: hack :( if ' ' is at the beginning of a text section, don't
- forget it, substitute
- with an unbreakable space because gtk allocates too much space otherwise
-
- * install_messages.pm: bump up to 100errata
-
-2004/01/30 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nb.po: updated Norwegian file
-
-2004/01/30 Pixel <pixel at mandrakesoft.com>
-
- * ugtk2.pm: add help method ->iter_each_children for Gtk2::TreeModel
-
-2004/01/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: do not offer to select dhcp client when
- configuring static interfaces
- fix crash on module lookup when ifcfg-<intf> file is missing on disk
- (not yet configured interface case)
-
- * share/po/fr.po: update
-
- * share/advertising/dwd-07.pl: share string with dis-10.pl ppp-10.pl and
- pwp-09.pl
-
- * drakxtools.spec: log one more change in -27mdk
- 9.3-27mdk
-
- * share/rpmsrate: add anthy/uim better cjk input methods
-
-2004/01/30 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: add magicdev in SYSTEM for KDE or GNOME
-
-2004/01/30 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect:
- - remove not needed $security
- - clean dumb foreach repetition (one foreach to rule them all)
-
-2004/01/30 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * ugtk2.pm: hack :( if ' ' is at the beginning of a text section, don't
- forget it, substitute
- with an unbreakable space because gtk allocates too much space otherwise
-
- * install_messages.pm: bump up to 100errata
-
-2004/01/30 Nicolas Planel <nplanel at mandrakesoft.com>
-
- * install_steps.pm: add/fix various/agpgart section
-
-2004/01/30 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nb.po: updated Norwegian file
-
-2004/01/30 Pixel <pixel at mandrakesoft.com>
-
- * modules.pm, install_steps.pm: xxx-agp is not loaded at install, so
- when_load() is not the right place
-
- * ugtk2.pm: add help method ->iter_each_children for Gtk2::TreeModel
-
-2004/01/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: do not offer to select dhcp client when
- configuring static interfaces
- fix crash on module lookup when ifcfg-<intf> file is missing on disk
- (not yet configured interface case)
-
- * drakxtools.spec: log one more change in -27mdk
- 9.3-27mdk
-
-2004/01/30 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect:
- - show gateway in ethernet only
- - hide gateway Entry in dhcp mode
-
-2004/01/30 Nicolas Planel <nplanel at mandrakesoft.com>
-
- * install_steps.pm: add/fix various/agpgart section
-
-2004/01/30 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po, share/po/fi.po: updated Estonian and Finnish files
-
-2004/01/30 Pixel <pixel at mandrakesoft.com>
-
- * modules.pm, install_steps.pm: xxx-agp is not loaded at install, so
- when_load() is not the right place
-
- * c/stuff.xs.pl: the multiplication must be done with type "long long"
- otherwise it overflows at 4GB
-
- * partition_table.pm:
- - tell kernel to remove the extended partition
- - true/false is better than yes/no in log message
- enhance log message "tell kernel ..."
-
-2004/01/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/rpmsrate: force availlability of speedtouch and eagle packages at
- install time
-
- * network/ethernet.pm (conf_network_card_backend) make type and interface
- arguments mandatory
-
- * network/netconnect.pm: perl_checker cleanups
-
-2004/01/30 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: add rpm-rebuilder and lm_sensors
- add dvd+rw-tools in BURNER
-
-2004/01/29 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/uz@Cyrl.po, share/po/et.po,
- share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/mn.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/tg.po, share/po/nb.po, share/po/bs.po, share/po/uz.po,
- share/po/ro.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/hi.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/lv.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/hu.po: updated pot file
-
-2004/01/29 Pixel <pixel at mandrakesoft.com>
-
- * fs.pm: replace iocharset= with nls= for ntfs (as instructed by Thomas
- Backlund, thanks)
-
-2004/01/29 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/tools.pm (set_cnx_script) split it out of write_cnx_script()
- rationale:functions whose behavior is totally altered by arguments
- number are insane should just be splited and their callers be fixed
-
- * network/adsl.pm, network/isdn.pm: convert some write_cnx_script()
- callers into set_cnx_script() ones
-
- * network/network.pm, standalone/drakconnect: replace
- conf_network_card_backend() "detect" calls by get_eth_cards() ones
-
- * network/netconnect.pm: kppp provider db reading: blacklist spurious
- .directory entries
- kill dead code
- prevent the installer from going back to proxy configuration (!!!)
- when pressinth the previous button on first step of network config
- wizard :-)
- cleanups enabled b/c of path sharing between standalone tool and
- installer
- convert some write_cnx_script() callers into set_cnx_script() ones
- replace conf_network_card_backend() "detect" calls by get_eth_cards()
- ones
-
- * drakxtools.spec: fix changelog
-
- * share/po/fr.po: update
-
- * network/ethernet.pm: convert some write_cnx_script() callers into
- set_cnx_script() ones
- (conf_network_card_backend) insert a bug notice
- (conf_network_card_backend) remove compat stuff since callers were
- cleaned up
-
-2004/01/29 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect: beautify ethernet cards name
- shrink
-
-2004/01/29 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * share/advertising/dwd-03.pl, install_steps_gtk.pm,
- share/advertising/dwd-01.pl, share/advertising/dwd-02.pl, ugtk2.pm:
- advertising:
- - support leftish and centered text
- - support arbitrary bold text with ml-like syntax <b>foo</b> in
- strings
- - simplify get_text_coord and unexport it, no one else than
- wrap_paragraph uses it nowadays
-
-2004/01/29 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/help-ru.pot, share/po/help-fr.pot: converted help-*.pot files
- to utf-8 too (they MUST be of same encoding
- as po files)
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/uz@Cyrl.po, share/po/et.po,
- share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/mn.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/tg.po, share/po/nb.po, share/po/bs.po, share/po/uz.po,
- share/po/ro.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/hi.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/lv.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/hu.po: updated pot file
-
-2004/01/29 Pixel <pixel at mandrakesoft.com>
-
- * fs.pm: replace iocharset= with nls= for ntfs (as instructed by Thomas
- Backlund, thanks)
-
-2004/01/29 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Configure clients with defined IPs to set
- hostname so gnome works.
-
-2004/01/29 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: prevent the installer from going back to proxy
- configuration (!!!)
- when pressinth the previous button on first step of network config
- wizard :-)
- cleanups enabled b/c of path sharing between standalone tool and
- installer
- convert some write_cnx_script() callers into set_cnx_script() ones
- replace conf_network_card_backend() "detect" calls by get_eth_cards()
- ones
- help cperl-mode parsing this file (drawback: perl_checker won't be
- happy)
- simplify
-
- * network/tools.pm (set_cnx_script) split it out of write_cnx_script()
- rationale:functions whose behavior is totally altered by arguments
- number are insane should just be splited and their callers be fixed
-
- * network/adsl.pm, network/isdn.pm: convert some write_cnx_script()
- callers into set_cnx_script() ones
-
- * network/network.pm, standalone/drakconnect: replace
- conf_network_card_backend() "detect" calls by get_eth_cards() ones
-
- * share/po/fr.po: update
-
- * network/ethernet.pm: convert some write_cnx_script() callers into
- set_cnx_script() ones
- (conf_network_card_backend) insert a bug notice
- (conf_network_card_backend) remove compat stuff since callers were
- cleaned up
-
- * drakxtools.spec: 9.3-26mdk
- 9.3-24mdk was never released
- 9.3-25mdk
-
-2004/01/29 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect: shrink
- fix modem login fetching
- - use nice interfaces name (e.g. ethernet0 rather than eth0)
- - fix adsl loading and saving calls
-
-2004/01/29 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * share/advertising/dwd-03.pl, install_steps_gtk.pm,
- share/advertising/dwd-01.pl, share/advertising/dwd-02.pl, ugtk2.pm:
- advertising:
- - support leftish and centered text
- - support arbitrary bold text with ml-like syntax <b>foo</b> in
- strings
- - simplify get_text_coord and unexport it, no one else than
- wrap_paragraph uses it nowadays
-
-2004/01/29 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/net_monitor: do not force page switch
-
- * drakxtools.spec: 9.3-25mdk
- 9.3-24mdk
-
- * security/msec.pm: fix parsing of default values for multi argument msec
- functions
-
- * network/netconnect.pm: help cperl-mode parsing this file (drawback:
- perl_checker won't be
- happy)
- simplify
- fix interface config file writing
- fix DHCP client installation
- fix static/dhcp step branching
- fix ethernet network card list
-
- * security/help.pm: add help for newly introduced MAIL_EMPTY_CONTENT item
- notify that timeout is in seconds
-
-2004/01/29 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/01/29 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/adsl.pm: fix encapsulation parameter
- fix VPI parameter setting
- (adsl_conf_backend) fix disconnect script
- (adsl_conf_backend) fix ppp's pty server
-
- * network/netconnect.pm: typo fix
- fix encapsulation pull down menu filling
- enable to alter encapsulation, vci and vpi parameters in advanced mode
- write cnx scripts for cable connection too
-
- * drakxtools.spec: 9.3-23mdk
-
-2004/01/28 David Baudens <baudens at mandrakesoft.com>
-
- * pixmaps/about.png, pixmaps/nosplash_thumb.png,
- pixmaps/slpash-drakeprint-2.png, pixmaps/printerdrake.png: Update
-
-2004/01/28 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect: sucky toggled fix (queen fix)
- - move radio buttons to $gui->{intf_radio}
- - fix authentication menu wrongly used for isdn
-
-2004/01/28 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/dns.c, mdk-stage1/network.c: allow having no DNS by only
- using the ip callback once, see DNS == IP as a special case, don't do
- DNS calls when no DNS is configured to avoid timeouts
-
-2004/01/28 Pixel <pixel at mandrakesoft.com>
-
- * interactive/gtk.pm: create add_modify_remove_sensitive() and use it so
- that "Modify" and "Remove"
- are non sensitive when the initial list is empty
-
-2004/01/28 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/adsl.pm (adsl_probe_info) minor cleanups
- (adsl_conf_backend) new configuration stuff
-
- * network/modem.pm: simplify code through format callback (thus enabling
- to centralize translatable
- strings, thus reducing error risk)
-
- * network/netconnect.pm: removed useless variable
- simplify code through format callback (thus enabling to centralize
- translatable
- strings, thus reducing error risk)
-
-2004/01/27 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/th.po,
- share/po/sl.po, share/po/uz@Cyrl.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/be.po, share/po/uk.po, share/po/mn.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/cy.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/tg.po,
- share/po/nb.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/hi.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/lv.po, share/po/el.po, share/po/bg.po, share/po/cs.po,
- share/po/hu.po: fix typo s#Network name#Network name#
-
- * standalone/drakconnect: fix typo s/Netwok name (ESSID)/Network name
- (ESSID)/
- - fix Information page
- - use mapIntfToDevice to get infos
-
-2004/01/27 Pixel <pixel at mandrakesoft.com>
-
- * ugtk2.pm:
- - add gtk_new_TextView_get_log() and gtk_TextView_get_log() which
- allow
- running a command in background and get the filtered output in a
- TextView
- - add Gtk2::OptionMenu::new_with_strings() which is a simple
- combination of
- ->new, ->set_popdown_strings and ->set_text
-
-2004/01/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: rollback debug stuff :-(
- typo fix
- get encapsulation default value from provider db and offer to configure
- it
- typo fix
- adiusbadsl package was renamed as eagle
- default protocol for speedtouch is pppoa
- do not try to install "auto" package
- install needed packages w/o second thoughs
- remove extra argument
- add a step in order to select a provider from kppp database
- configure adsl account
- (isdn account step)
- - directly use needed variables
- - kill uneeded fields
- preset domainname for a few known providers
-
- * share/po/fr.po: update
-
- * network/adsl.pm: kill dead code
- (adsl_probe_info) vpi and vci parameters are independant
-
- * network/adsl_consts.pm: typo fix
- - add Retevision spanish provider
- - add encapsulation default value
- preset domainname for a few known providers
- typo fix
-
-2004/01/26 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect:
- - fix sucky fix
- - fix missing parameters
- - add kind and protocol to $config
- - fix various issues from $config changes
-
-2004/01/26 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/modules.c: don't forget to umount additional drivers floppy
- after successful copy of modules.mar (gc sux)
-
-2004/01/26 Pixel <pixel at mandrakesoft.com>
-
- * any.pm: fix typo
-
- * ugtk2.pm: add gtk_set_treelist
-
- * share/list: perl Gtk2 has been rebuilt
-
- * interactive/gtk.pm:
- - pack add_modify_remove widget growable
- - no need to size it
- new function add_modify_remove_action()
-
-2004/01/26 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Another cron issue reported on Anthill.
-
- * standalone/drakTermServ: Remove unused sub.
-
-2004/01/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakconnect: reput back my changes that poulpy gratuitously
- rollbacked because:
- - he hadn't update network/*pm but only update standalone/drakconnect
- - he happilly followed what perl_checker instrumentate him w/o any
- second thoughs
- next time damien, do not listen gc when he's explaining how he
- resolves conflicts the first time he used cvs :-(
- get rid of global variables regarding connect/disconnect scripts
-
- * network/ethernet.pm (mapIntfToDevice) actually use given interface
- rather than hardcoded "eth0"
- cleanups
- (get_eth_cards)
- - split it out of conf_network_card_backend() (which still call it for
- compatibility for now but sincefunctions whose behavior is totally
- altered by
- arguments are insane should just be splited, caller will be fixed then
- this
- compatibily call removed)
- - add a third string in returned tuples (physical net device
- description)
- (mapIntfToDevice) introduce it in order to map a network interface to a
- pci/usb/... device
- get rid of pseudo global $prefix, just reuse global $::prefix :-)
-
- * standalone/net_monitor: get rid of global variables regarding
- connect/disconnect scripts
-
- * network/network.pm: get rid of pseudo global $prefix, just reuse global
- $::prefix :-)
- kill unused down_it() and up_it() functions
-
- * network/tools.pm: get rid of global variables regarding
- connect/disconnect scripts
- get rid of pseudo global $prefix, just reuse global $::prefix :-)
-
- * network/adsl.pm, network/isdn.pm: get rid of pseudo global $prefix, just
- reuse global $::prefix :-)
-
- * network/adsl_consts.pm: rename dns fields as they're named in netc
- structure
-
- * network/netconnect.pm: reuse values got from provider db
- display nice "ethX: card description" rather than raw interface name
- when
- selecting an ethernet interface
- perl_checker was wrong
- get rid of global variables regarding connect/disconnect scripts
- (stop_internet) init_globals()'s prefix parameter is dead
- get rid of pseudo global $prefix, just reuse global $::prefix :-)
- fix the cleanup
- remove useless parenthessis
- make wizard be faster when trying to install speedtouch_mgmt and when
- firmware
- is already present
- share provider db for all usb modems (vpi/vci parameters are need for
- most
- modem/protocol combinaisons and anyway it's ok to guess the protocol and
- dns
- servers for the end user)
- - let be faster when trying to install already installed packages
- - fix next step name when installing kppp
-
-2004/01/26 keld
-
- * share/po/da.po: Updates
- soft/control-center/po/da.po soft/GtkMdkWidgets/po/da.po
- soft/mdkhtmlbrowser/po/da.po soft/menudrake/po/da.po
- soft/rfbdrake/po/da.po gi/perl-install/share/po/da.po
-
-2004/01/26 Pixel <pixel at mandrakesoft.com>
-
- * keyboard.pm: don't use ioctl KDSKBENT with kernel 2.6, until fixed...
-
-2004/01/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakclock (Repaint) help perl_checker in checking
- time_to_rad() arguments
- (spinned) do not pass extra arguments to time_to_rad()
- reindent gtkpack calls
- rename adj_* variables as adj* in order to help cperl-mode parsing
- this file
-
- * c/stuff.xs.pl (getNetDriver) introduce getHwIDs() alias that return
- pci/usb/... hw
- addr (or "N/A" for some isapnp cards due to lack of support from
- drivers)
-
-2004/01/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: kill unused dhcp_hostname step
- fix again adsl type setting :-(
- modem connection: install kppp
- set adsl protocol to use according to provider database when using a
- sagem 800
- modem
- modem connection: default to pap/chap authentification method (should
- work for
- most people)
- typo fix
-
- * drakxtools.spec: typo fix
-
- * share/po/fr.po: update
-
- * share/po/br.po: minor update
-
-2004/01/25 yrahal
-
- * share/po/ar.po: Committing Arabeyes.org translation.
-
-2004/01/24 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: updated
-
-2004/01/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: s/ppptp/pptp/
- factorize lan module search for adsl through ethernet
- make adsl device choose somewhat readable (detabable though
- fix adsl device setting :-(
- kill unreachable code
- kill unused variable
- cleanup
-
-2004/01/23 David Baudens <baudens at mandrakesoft.com>
-
- * share/advertising/dis-01.png, share/advertising/dwd-06.png,
- share/advertising/dis-05.png, share/advertising/dis-08.png,
- share/advertising/pwp-01.png, share/advertising/ppp-08.png,
- share/advertising/dis-10.png, share/advertising/dwd-07.png,
- share/advertising/dwd-02.png, share/advertising/ppp-06.png,
- share/advertising/dis-07.png, share/advertising/pwp-05.png,
- share/advertising/ppp-03.png, share/advertising/ppp-01.png,
- share/advertising/dwd-04.png, share/advertising/dis-02.png,
- share/advertising/pwp-03.png, share/advertising/ppp-05.png,
- share/advertising/pwp-08.png, share/advertising/dwd-03.png,
- share/advertising/dis-09.png, share/advertising/dis-03.png,
- share/advertising/ppp-04.png, share/advertising/ppp-11.png,
- share/advertising/dwd-08.png, share/advertising/pwp-06.png,
- share/advertising/dis-06.png, share/advertising/ppp-09.png,
- share/advertising/dis-11.png, share/advertising/ppp-10.png,
- share/advertising/pwp-02.png, share/advertising/dis-04.png,
- share/advertising/pwp-10.png, share/advertising/ppp-07.png,
- share/advertising/pwp-09.png, share/advertising/dwd-01.png,
- share/advertising/dwd-09.png, share/advertising/dwd-05.png,
- share/advertising/ppp-02.png, share/advertising/pwp-07.png,
- share/advertising/pwp-04.png: Update
-
-2004/01/23 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * rescue/tree/bin/insmod: autoprobe? what's that?
-
- * docs/HACKING: wrong, "make" in kernel by hand is not even needed
- update
-
- * rescue/tree/sbin/modprobe: support 2.4 and 2.6
-
- * standalone/printerdrake: "use USER" is unecessary and probably comes
- from copy-pasting userdrake's GUI
-
- * modules.pm: don't miss the hook with 2.6 usb kernels (might explain
- fredl problem with usb keyboard)
-
- * mdk-stage1/nfsmount.c: since dietlibc always reports null strings for
- RPC errors, at least provide something useful instead
-
- * rescue/list: lsmod.old and rmmod.old also needed
-
-2004/01/23 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/uz@Cyrl.po, share/po/ja.po,
- share/po/hr.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/be.po, share/po/uk.po, share/po/mn.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/cy.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/tg.po,
- share/po/nb.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/hi.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/lv.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/hu.po: upfdated pot file
-
- * share/po/et.po: updated Estonian po file
- upfdated pot file
-
-2004/01/23 Pixel <pixel at mandrakesoft.com>
-
- * fs.pm: checking {notFormatted} must never be done alone, one must check
- {isFormatted} first!
-
-2004/01/23 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: perl_checker: assigned, but not read
- More perl_checker fixes. Remove another unused sub.
- Fix broken sys, other restore.
- Rework timestamp for backup files to please perl_checker.
-
-2004/01/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakfont (search_dir_font) kill unused variable
-
- * network/adsl_consts.pm: provider database needed in oder to not
- arbitrary set obfuscated vpi
- and vci parameters
-
- * network/adsl.pm (adsl_probe_info) make it aware of the fact we now see
- the adsl modem
- and protocol separatly
-
- * share/po/fr.po: update
- minor update
- update
-
- * network/netconnect.pm: fix adsl connection type retrieving
- fix interface name when doing adsl over an ethernet card
- sort ADSL connection types
- offer to configure sagem800 (needed because of unfriendly vpi/vci
- parameters)
-
- * interactive/gtk.pm: remove debug message
- (ask_fromW) enable TreeView to take all availlable space
-
-2004/01/22 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect:
- - remove _radio suffix
- - prevent undefined value to be get_texted
- - further s/cnx/intf/
- - remove old code
-
-2004/01/22 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/probing.c: moving forward our story with nice kernel guys,
- now they decided to remove the trailing space at the end of "Attached
- devices:" of /proc/scsi/scsi, probably that they had nothing more
- interesting to do this day
- until we haven't loaded the usb interface and the keyboard usb driver,
- we can't allow asking for additional drivers floppy, so need another
- parameter to my_insmod to indicate in which situation we are
-
- * mdk-stage1/cdrom.c, mdk-stage1/pcmcia_/cardmgr.c, mdk-stage1/mount.c,
- mdk-stage1/lomount.c, mdk-stage1/disk.c, mdk-stage1/modules.h,
- mdk-stage1/stage1.c, mdk-stage1/adsl.c, mdk-stage1/network.c: until we
- haven't loaded the usb interface and the keyboard usb driver, we can't
- allow asking for additional drivers floppy, so need another parameter to
- my_insmod to indicate in which situation we are
-
- * tools/cvslog2changelog.pl: clean up users
- add planou
-
- * mdk-stage1/modules.c: better do 2.4->2.6 compat module alias as soon as
- possible to display correct stuff in logs and simplify code
- until we haven't loaded the usb interface and the keyboard usb driver,
- we can't allow asking for additional drivers floppy, so need another
- parameter to my_insmod to indicate in which situation we are
- when checking for modules already loaded, be sure to check for the real
- name
- ensure insmod will try to access correct filename according to 2.4->2.6
- compat mapping
- really display filename when "error reading" a file to insmod in 2.6
-
- * mdk-stage1/Makefile: stage1-network-usb is deprecated
-
-2004/01/22 Pixel <pixel at mandrakesoft.com>
-
- * interactive/stdio.pm: $def_n is unused
-
- * interactive/gtk.pm: remove unused variable
-
- * modules/interactive.pm, install_steps_interactive.pm: help perl_checker
-
-2004/01/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakconnect: update copyright notices
- - fix untraslated strings
- - upcase tcp/ip
-
- * network/tools.pm (copy_firmware) kill it (was merged into add intf
- wizard
-
- * network/netconnect.pm: fix doble "IP address" entries
- typo fix
- config some stuff about adsl protocol
- kill debug statement
- factorize out adsl protocols' translations
- get rid of uselesss net_device variabl
- code simplification due to previous assertion
- ensure struct XXX and o_XXX parameters always reference the same hashes
- when configuring an ethernet card, skip the protocol choice step for any
- cnx
- type different than lan (eg: for cable and adsl connections)
- rollback debug stuff :-(
- handle speedtouch firmware if needed
- detect ECI like modems and warn we cannot support them (hence less
- pressure on
- our support services)
- fix typo fix
- typo fix :-(
- tag speedtouch and eci connections as to be restarted as in old wizard
-
- * detect_devices.pm: perl_checker cleanups
- do not mix before and after firmware upload usb ids
- (getECI) introduce it in order to detect eci like usb modems
-
- * standalone/drakfont: update copyright notices
- remove never implemented --strong option
- perl_checker cleanups
- fix button label
-
- * network/adsl.pm (adsl_conf_backend) kill interactive code (was merged
- into adsl wizard)
- (adsl_detect) detect ECI modems
- rename old end adsl step
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/da.po, share/po/ca.po, share/po/ar.po, share/po/nb.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/br.po, share/po/sl.po,
- share/po/uz@Cyrl.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/advertising/dwd-03.pl, share/po/mn.po, share/po/uk.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/bs.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/hi.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/fr.po, share/po/ta.po, share/po/nl.po, share/po/de.po,
- share/po/eo.po, share/po/el.po, share/po/bg.po, share/po/cs.po:
- s/(Mandrake Linux is one) (the most widely used)/\1 of \2/
-
- * ugtk2.pm: perl_checker cleanups
- minor cleanups
- (gtkadd_widget) introduce it for size groups
-
- * standalone/drakfirewall, standalone/logdrake, standalone/drakpxe,
- standalone/drakboot, standalone/drakTermServ, standalone/net_monitor,
- standalone/drakbackup, standalone/printerdrake, standalone/fileshareset,
- standalone/drakedm, standalone/drakhelp, standalone/XFdrake,
- standalone/drakbug, standalone/drakupdate_fstab, standalone/draksound,
- standalone/drakxtv, standalone/draksec, standalone/drakautoinst,
- standalone/drakproxy, standalone/diskdrake, standalone/drakfloppy,
- standalone/drakgw, standalone/scannerdrake: update copyright notices
-
- * interactive/gtk.pm (ask_fromW) gc prefers ->isa()
- (ask_fromW) enable properly setted checkbuttons (aka those who
- correctly use text instead of label) to take all the place they need,
- thus preventing spurious horizontal scrolling bar to show up
-
- * harddrake/sound.pm: draksound doesn't write the sound alias b/c of wrong
- comparison with the
- default driver, thus not configuring not yet configured cards (#6988)
-
-2004/01/22 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: updated
-
-2004/01/22 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect: do not test $intf but $gui, poulpy sux
- fix isdn modem page
- factorise gui set_text
- - drop detection, will use interface scheme ($config)
- - use $interface_kind
- drop now unused code
- fix broken MII_NOT_SUPPORTED and HWADDR
- add dns3 entry
-
-2004/01/22 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * modules.pm: nice kernel guys spend their free time renaming modules for
- fun
-
- * mdk-stage1/doc/TECH-INFOS: disk will also need the directory
-
- * mdk-stage1/modules.c: nice kernel guys like to change modules names for
- no reasons when they have a break
-
-2004/01/22 Pixel <pixel at mandrakesoft.com>
-
- * tools/Makefile: rpmtools and perl-URPM are still 5.8.2
-
-2004/01/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: typo fix :-(
- tag speedtouch and eci connections as to be restarted as in old wizard
- install needed package depending of modem
- rollback
- add static configuration for sagem800 spanish users
- hide too big label (which is useless because of above text) but keep
- it for translation b/c of further reusage
-
- * network/adsl.pm: rename old end adsl step
-
-2004/01/21 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/adsl.pm: retreive vpi and vci from config file for speedtouch
-
-2004/01/21 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/modules.c: add capability to use an additional drivers floppy
- network_gigabit_usb doesn't exist anymore
-
- * network/netconnect.pm: perl checker fixes
-
- * mdk-stage1/stage1.c, mdk-stage1/modules.h: add capability to use an
- additional drivers floppy
-
- * modules.pm: misc change: more readable way of setting usb-interface
- alias
-
-2004/01/21 nplanel
-
- * modules.pm: add *-agp module support
-
-2004/01/21 Till Kamppeter <till at mandrakesoft.com>
-
- * scanner.pm, standalone/printerdrake: Removed occurences of "Mandrake"
- from translateable strings.
-
- * printer/main.pm, printer/printerdrake.pm: Added title bar texts for
- error and warning pop-ups.
- Removed occurences of "Mandrake" from translateable strings.
-
- * standalone/scannerdrake: Updated title bar texts of error pop-ups.
- Removed occurences of "Mandrake" from translateable strings.
-
-2004/01/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/adsl.pm: rename old adsl step
- (adsl_detect)
- - remove useless parameter
- - always return an hash, even if empty (simplify caller code)
-
- * network/netconnect.pm: really use the same path in standalone and
- install mode
- add new first adsl steps
- factorize lan detection (needed for adsl)
-
-2004/01/21 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * share/po/fr.po: fix typo
-
-2004/01/21 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/uz@Cyrl.po, share/po/et.po,
- share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/mn.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/tg.po, share/po/nb.po, share/po/bs.po, share/po/uz.po,
- share/po/ro.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/hi.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/lv.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/hu.po: updated pot file
-
-2004/01/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: update
-
-2004/01/21 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/pl.po, share/po/hi.po: updated pot file
- updated Hindi file; corrected syntax error in Polish file
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/uz@Cyrl.po, share/po/et.po,
- share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/mn.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/cy.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/tg.po,
- share/po/nb.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/nl.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/lv.po,
- share/po/el.po, share/po/cs.po, share/po/bg.po, share/po/hu.po: updated
- pot file
-
- * network/netconnect.pm: fixed typo
-
-2004/01/21 Pixel <pixel at mandrakesoft.com>
-
- * interactive/gtk.pm, ugtk2.pm:
- - fix sizing main window
- - always use a scrolled window when non pop_it
- (so that the buttons are at the bottom)
-
- * any.pm: perl_checker fix
-
- * modules.pm: don't pass empty options, new insmod doesn't like it
-
- * share/po/Makefile, Makefile: remove checking "$" in po strings,
- perl_checker takes care of this correctly
- (ie. N("a\$b") will get string "a$b" in po which is ok, whereas N("a$b")
- gives an error)
-
-2004/01/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: simplify
-
-2004/01/20 Pixel <pixel at mandrakesoft.com>
-
- * modules.pm:
- - ugly hack to temporary handle reading ide_cd in /proc/modules
- whereas we
- insmoded ide-cd
- - removing load_ide() (unused)
-
- * rescue/list, share/list: replace PERL_VERSION with current version of
- some perl modules
-
- * install_steps.pm: modules::load_ide() is removed, now we use the same as
- install_step_interactive
-
-2004/01/20 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated partially
-
-2004/01/20 Florin Grad <florin at mandrakesoft.com>
-
- * standalone/drakgw: install the squid package, if necessary
-
-2004/01/20 fwang
-
- * share/po/zh_CN.po: update
-
-2004/01/20 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/uz@Cyrl.po, share/po/et.po,
- share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/mn.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/tg.po, share/po/nb.po, share/po/bs.po, share/po/uz.po,
- share/po/ro.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/hi.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/lv.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/hu.po: updated pot file
-
-2004/01/20 Pixel <pixel at mandrakesoft.com>
-
- * modules.pm:
- - ugly hack to temporary handle reading ide_cd in /proc/modules
- whereas we
- insmoded ide-cd
- - removing load_ide() (unused)
-
- * any.pm: in setupBootloader__entries():
- - move vga and initrd from $::expert to advanced
- - drop setting read-write, table, unsafe
-
- * rescue/list, share/list: replace PERL_VERSION with current version of
- some perl modules
-
- * install_steps.pm: modules::load_ide() is removed, now we use the same as
- install_step_interactive
-
- * interactive/gtk.pm: do not try anymore to have small pop_it dialog
- boxes. Make them all the same
- size and so drop all the (big) code trying to use scrolled windows only
- when
- needed and to size them appropriately
-
- * lang.pm: disable wen and dns until fixed
-
- * docs/HACKING: update (thanks to Sunny Dubey)
-
-2004/01/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 9.3-22mdk
-
- * network/network.pm: fix #6944: ensure proper perms on
- /etc/profile.d/proxy.{,c}sh
- (pieleric@etu.utc.fr)
-
- * network/modem.pm: remove useless LOGIN field
- do not gratuitously reinvent write_secret_backend()
- s/N('...')/N("...")/
- save login in ifcfg-ppp0
- save ip if needed
- fix dyn/static stuff
- fix static/dyn settings
- - handle PAP/CHAP auth method too
- - translate again strings
- handle more kppp options from new steps
- make sections more visible in generated kppprc conf file
-
- * network/netconnect.pm: share same path in both standalone and in install
- mode (2/2)
- do not offer to enter domain name twice
- share same path in both standalone and in install mode
- read back auth method
- read back new fields
- fix gateway reading and writing
- - handle PAP/CHAP auth method too
- - translate again strings
- use checkbow's label
- dyn hostname is a boolean
- - split ppp steps into account, ip, dns and gateway parameters step
- - offer to configure more ip, dns and gateway parameters
- rename ppp_choose as ppp_account
-
-2004/01/20 Warly <warly at mandrakesoft.com>
-
- * share/logo-mandrake.png: cooker logo
-
-2004/01/20 hilbert
-
- * share/po/zh_TW.po: This is a test commit
-
-2004/01/20 Pixel <pixel at mandrakesoft.com>
-
- * fs.pm: fix mount point /tmp/image for the cdrom in generated /etc/fstab
-
- * install_steps.pm: help perl_checker seeing charsetChanged even if known
- install_steps_* can be seen
- kernel 2.6 .ko adaptation
-
- * share/advertising/Makefile: CVS has all the advertisings, but only
- upload the dwd (download) one
-
- * modules.pm, modules/parameters.pm: kernel 2.6 .ko adaptation
-
- * install_steps_interactive.pm: help perl_checker seeing charsetChanged
- even if known install_steps_* can be seen
-
- * lang.pm: disable wen and dns until fixed
-
- * commands.pm: cleanup & kernel 2.6 .ko adaptation
-
-2004/01/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/modem.pm: handle more kppp options from new steps
- make sections more visible in generated kppprc conf file
- simpkify %toreplace build
-
- * network/netconnect.pm: use checkbow's label
- dyn hostname is a boolean
- - split ppp steps into account, ip, dns and gateway parameters step
- - offer to configure more ip, dns and gateway parameters
- rename ppp_choose as ppp_account
- typo fix
- simplify
- go to wireless step if needed
- always go to hostname step (shared by all paths)
- kill old cable step
- install requested dhcp client
- add hidden option enabling to select dhcp client
- skip protocol step when configuring cable connection
- cable is like lan but with dhcp
- set connection type at one point only
- load adsl wizard on demand
- (get_subwizard) introduce the infrastructure that enable to load a
- part of a wizard from another module
- init modem data structure when manually selecting a serial port
- fix modem dns servers reading
- keep entered data when stepping back to dialup options step
- do not mix modem choice and modem configuration, so that we keep
- entered data when stepping back and forward
- pass dynamically build data into interactive layer when configuring
- modems
- fix device (was broken due to the fact we kept all the data collected
- about modems)
-
- * install_gtk.pm: fix set_default_direction() call
-
- * network/adsl.pm: fix wizard layer usage (b/c of new api)
- remove useless parameter
-
-2004/01/20 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: part. update
-
-2004/01/20 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect: fix typo
-
-2004/01/20 hilbert
-
- * share/po/zh_TW.po: This is a test commit
-
-2004/01/20 Pixel <pixel at mandrakesoft.com>
-
- * install_steps.pm: help perl_checker seeing charsetChanged even if known
- install_steps_* can be seen
- kernel 2.6 .ko adaptation
-
- * share/advertising/Makefile: CVS has all the advertisings, but only
- upload the dwd (download) one
-
- * modules.pm, modules/parameters.pm: kernel 2.6 .ko adaptation
-
- * install_steps_interactive.pm: help perl_checker seeing charsetChanged
- even if known install_steps_* can be seen
-
- * commands.pm: cleanup & kernel 2.6 .ko adaptation
-
- * rescue/list: replace rpmpopt-4.2 with rpmpopt-* (since we now have
- rpmpopt-4.2.2)
-
-2004/01/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * bootloader.pm: workaround buggy installkernel that left default value be
- geater than
- the current number of entries, thus making drakboot displaying
- (default-entries_count) spurious "()*" entries which then results in
- writing back bogus grub conf file.
- kernel team should just be shuted down :-(
-
- * share/po/bs.po: fix duplicate message
- fix duplicate message
-
- * install_gtk.pm: fix set_default_direction() call
-
- * network/adsl.pm: fix wizard layer usage (b/c of new api)
- remove useless parameter
-
- * network/modem.pm: simpkify %toreplace build
- merge ppp_configure_raw() into its only caller (ppp_configure())
- do not bother try installing packages in testing mode
-
- * network/netconnect.pm: load adsl wizard on demand
- (get_subwizard) introduce the infrastructure that enable to load a
- part of a wizard from another module
- init modem data structure when manually selecting a serial port
- fix modem dns servers reading
- keep entered data when stepping back to dialup options step
- do not mix modem choice and modem configuration, so that we keep
- entered data when stepping back and forward
- pass dynamically build data into interactive layer when configuring
- modems
- fix device (was broken due to the fact we kept all the data collected
- about modems)
- fix ppp_configure call
- prepare killing obfuscated install path
- merge in next_cnx_step into handle_multiple_cnx
-
-2004/01/19 David Baudens <baudens at mandrakesoft.com>
-
- * share/advertising/ppp-04.pl: Update
-
-2004/01/19 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect:
- - add build_tree to fetch info before doing GUI stuff
- - use $intf->{$interface}{save} to re-use existing write_foo specific
- fonctions
- - change build_notebook thing
- - indenting && perl_checking
-
-2004/01/19 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/01/19 Frederic Crozat <fcrozat at mandrakesoft.com>
-
- * share/rpmsrate: Epiphany is now GNOME default web browser.
-
-2004/01/19 Florin Grad <florin at mandrakesoft.com>
-
- * standalone/drakgw: typo error
- add transparent proxy support
-
- * network/network.pm: add the silly read_squid function
-
-2004/01/19 fwang
-
- * share/po/zh_CN.po: update
- update
-
-2004/01/19 keld
-
- * share/po/da.po: Trying to get rid of "Translated to da.po" problem - did
- not work:-(
- soft/menu-messages/da.po soft/control-center/po/da.po
- soft/drakcronat/po/da.po soft/ftw/po/da.po
- soft/GtkMdkWidgets/po/da.po soft/kdebase-servicemenu/po/da.po
- soft/krozat/po/da.po soft/mandrake-menu-directory/po/da.po
- soft/mdkkdm/po/da.po soft/mdklaunchhelp/po/da.po
- soft/menudrake/po/da.po soft/rpmdrake/po/da.po
- soft/urpmi/po/da.po soft/userdrake2/po/da.po
- soft/wizard_perl/po/da.po gi/perl-install/share/po/da.po
- soft/galaxy/thememdk/mandrake_client/po/da.po
- updates
- soft/control-center/po/da.po soft/ftw/po/da.po
- soft/rpmdrake/po/da.po soft/urpmi/po/da.po
- gi/perl-install/share/po/da.po
-
-2004/01/19 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nb.po, share/po/et.po: updated Estonian and Norwegian files
-
-2004/01/19 Pixel <pixel at mandrakesoft.com>
-
- * install_any.pm: kernel22 is not there anymore (since a long time now)
- select bestKernelPackage before selecting basesystem (otherwise
- basesystem already requires kernel)
-
- * modules.pm, fs.pm: kernel 2.2 is deprecated
-
- * bootloader.pm: cleanup sanitize_ver (re-synced with common.pm from
- bootloader-utils)
- add a warning telling to run lilo after modifying the lilo.conf
- (bugzilla #6924)
-
- * pkgs.pm:
- - factorize kernel regexp in analyse_kernel_name()
- - remove special kernel choosing in packageCallbackChoices()
- add some logging explaining the default kernel choice
-
- * do_pkgs.pm:
- - factorize kernel regexp in analyse_kernel_name()
- - remove special kernel choosing in packageCallbackChoices()
-
- * install_steps_interactive.pm: $::testing means testing, not "testing
- what titi wants to test"
-
-2004/01/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakgw: perl_checker fixes
- remove empty lines in order to get more place for entry fields
-
- * detect_devices.pm (getSerialModem) fix device field
- (getModem) simplify
- (getSerialModem)
- - drop useless first arg
- - return all detected serial modems, not only first
- - return all data we collected on serial modems
- (getSerialModem) do not even bother check for /dev/modem since anyway
- probeSerialDevices() set a bijection between modems and /dev/ttySx
- devices (not /dev/modem) thus making hasModem() test useless for
- /dev/modem
- (getUPS) use HIDIOCAPPLICATION ioctl definition from c module
-
- * share/po/br.po: minor update
- update
- update
-
- * ugtk2.pm (reate_box_with_title) shrink TextView size to its minimal size
- in
- order to get the bigger place for other widgets
-
- * network/modem.pm (ppp_configure_raw) remove code stolen from
- ppp_configure()
-
- * interactive/gtk.pm: prevent unpoped wait messages when called from
- within wizards in standalone
- mode
- remove useless spacing above advanced options
-
- * network/netconnect.pm:
- - kill duplicated code
- - move some code where it belongs so that it's shared by isdn/modem
- - merge wireless step into normal modem one
- - report all detected serial modems
- - use all collected data on modems in order to have a nice list
- rollback bogus change
- dot not try to alter squid config in --testing mode
- isdn: detect serial modems if needed
- rename "ppp_choose step" as "choose_serial_port" and "ppp_choose2" one
- as "ppp_choose"
- chain hostname/dns step with zeroconf one (more work on zeroconf will
- be done between beta 1 and 2)
- turn "unsupported winmodem" into a terminal step
- add strings for future options
- fix next_cnx_step call
- (detect) display a nice string for serial modems
- (detect)
- - adapt modem detection to new detect_devices
- - keep all data collected on modems
- add proper window title
- make a real wizard step out of first modem step
- winmodem connection'll be merge into modem connection
- kill Data::Dumper orphean
- merge dhcp hostname into hostname step
- use radio button instead of optionmenu if possible (aka not too many
- network interfaces)
-
- * standalone/drakbug: simplify
-
- * share/po/cy.po: add missing empty lines
- another update
- further update
- update
-
- * share/po/fr.po: update
-
- * standalone/drakconnect: kill useless diagnostics pragma
-
-2004/01/18 fwang
-
- * share/po/zh_CN.po: update
-
-2004/01/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/cy.po: update
- update
-
- * share/po/fr.po:
- - typo fix (#6919)
- - let drakconnect message be wrapped by gtk+ rather than us
-
-2004/01/17 David Baudens <baudens at mandrakesoft.com>
-
- * share/advertising/dwd-09.pl: Fix (r)
-
-2004/01/17 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect: add wait message as hardware detection takes
- time
-
-2004/01/17 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/uz@Cyrl.po, share/po/et.po,
- share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/mn.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/tg.po, share/po/nb.po, share/po/uz.po, share/po/ro.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/hi.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/lv.po, share/po/el.po, share/po/bg.po, share/po/cs.po,
- share/po/hu.po: udated pot file; converted to UTF-8 all po files (as
- therer are utf-8 msgid
-
- * diskdrake/hd_gtk.pm: spell checking
-
-2004/01/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: fix obvious typo
- update
- fix doble entries
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/da.po, share/po/ca.po, share/po/ar.po, share/po/nb.po,
- share/po/uz.po, share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/lv.po, share/po/hu.po, share/po/fa.po,
- share/po/id.po, share/po/ru.po, share/po/sl.po, share/po/uz@Cyrl.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/uk.po,
- share/po/mn.po, share/po/lt.po, share/po/cy.po, share/po/tg.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/hi.po, share/po/az.po, share/po/pt.po, share/po/vi.po,
- share/po/ta.po, share/po/nl.po, share/po/de.po, share/po/eo.po,
- share/po/el.po, share/po/cs.po, share/po/bg.po: fix doble entries
-
- * ugtk2.pm: fix #6899: tools failling to popup windows while embedded
-
- * share/po/br.po: update
- fix doble entries
-
- * share/advertising/dwd-08.pl, share/advertising/dwd-04.pl,
- share/advertising/dis-11.pl, share/advertising/ppp-11.pl,
- share/advertising/ppp-09.pl, share/advertising/dwd-05.pl,
- share/advertising/pwp-09.pl, share/advertising/dwd-06.pl,
- share/advertising/ppp-07.pl, share/advertising/pwp-10.pl,
- share/advertising/ppp-05.pl, share/advertising/dis-09.pl,
- share/advertising/ppp-04.pl, share/advertising/pwp-04.pl,
- share/advertising/pwp-08.pl: fix package build
-
-2004/01/16 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect: * manage interfaces:
- - fix Ok button logic
- - fix some calls to $apply
- * manage interfaces
- - added Modem page
- - most of the GUI in place
-
-2004/01/16 Pixel <pixel at mandrakesoft.com>
-
- * network/shorewall.pm: fix N() badly used
- - add icmp support
- - add "Echo request (ping)" choice
-
- * network/drakfirewall.pm:
- - add icmp support
- - add "Echo request (ping)" choice
-
-2004/01/16 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup, standalone/drakTermServ: ask_warn fixes per
- Thierry, purge some old, unused code
-
-2004/01/16 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/tools.pm: prevent faillure when trying to dereference undef in
- testing mode
-
- * install_steps_interactive.pm (Accept) default to accept in testing mode
- do not complain about root password in testing mode
-
- * network/adsl.pm, network/isdn.pm, network/ethernet.pm: do not export
- dead functions
-
- * share/po/da.po: rollback bogus change
- remove arrows from previous/next buttons according to interface team
-
- * network/modem.pm (ppp_configure) reintroduce it for drakconnect's
- manager
-
- * network/network.pm: do not alter proxies config while configuring
- network interfaces (needed since
- we've disabled proxy config in network interface config path)
- do not install zeroconf if no zeroconf hostname was typed in (we may add
- a
- USE_ZEROCONF variable to /etc/sysconfig/network instead)
-
- * network/netconnect.pm: new host settings step
- clean horrible code
- split/merge lan config steps according to new specs
- (card => protocol => parameters => hostname)
- rollback "separate standalone and install paths" try (just too painful
- to
- maintain and anyway install net wizard has no logic)
- - make a real step out of "manage multiple internet connections" case
- - factorize and fix accessing to this step
- drop proxy configuration step.
- rationale:
- - miscellaneous_choose() was reintroduced in network::network since it
- was still
- needed by drakproxy
- - anyway configuring proxies is:
- o not supposed to be done while configuring network interfaces
- o duplicated with drakproxy and the like
- o removed in new drakconnect specs
- morph hw_account step through reusing new wizard layer capabilites (aka
- dynamically return just build needed data rather than ackwardly puting
- it in
- place)
- fix ppp_first_step() call
- small reindenting
- remove overrided variables
- enable to step forward after to "connect now?" step since wizard
- infrastructure fixed the ask_yesorno design flaw (and remove bug hint
- left by
- previous maintainers)
- use wizard layer 's yesorno type
- typo fix
-
- * share/po/ms.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/th.po, interactive.pm, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/be.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/he.po, standalone/drakbackup, share/po/ca.po, share/po/ar.po,
- share/po/nb.po, share/po/uz.po, share/po/ro.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/lv.po, share/po/hu.po,
- printer/printerdrake.pm, share/po/fa.po, share/po/id.po,
- drakxtools.spec, share/po/ru.po, help.pm, share/po/br.po,
- share/po/sl.po, share/po/uz@Cyrl.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/uk.po, share/po/mn.po, share/po/lt.po,
- share/po/cy.po, share/po/tg.po, install_steps_gtk.pm, share/po/bs.po,
- interactive/newt.pm, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/hi.po, share/po/az.po, share/po/pt.po,
- share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/nl.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po: remove arrows from previous/next buttons according to
- interface team
-
- * standalone/drakconnect: kill unused variables
-
- * standalone/logdrake:
- - set a meaningfull window title when called from mcc for explanations
- - upcase default window title
- do not abuse global namespace (this also allow to track variables
- usage through static code analysers such as perl_checker)
-
-2004/01/15 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/01/15 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_gtk.pm: fix individual package selection (was broken since
- 30 september...)
- formatList is imported, no need to get it in common::
-
- * c/stuff.xs.pl, diskdrake/interactive.pm, fsedit.pm,
- install_interactive.pm, partition_table/raw.pm, partition_table.pm:
- - remove the use of BLKRRPART (telling the kernel to re-read the
- partition table) in most cases
- - replace with tell_kernel() and will_tell_kernel()
- - correctly handle in standalone the need to reboot, with no way to
- forget it
- (telling the WM to quit nicely then call reboot when it's done)
-
- * rescue/list: insmod.old is needed when the kernel is a 2.4
-
- * lvm.pm: adaptation/simplification for new lvm2 (thanks to Luca Berra)
-
- * share/rpmsrate: have hylafax-client installed when kdebase-kdeprintfax
- is selected
-
- * bootloader.pm: don't modify {append} after add_kernel(), call
- add_kernel() directly with the append parameter
- (so that comparison with previous entries is done correctly)
-
-2004/01/15 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: First time wizard
-
-2004/01/15 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po: update
- update
-
- * standalone/drakboot: add bug hint
- remove unused variable
- (lilo_choice) do not complain on canceling
- (lilo_choice) let's set dialog title when poping up an error message
- (lilo_choice) do not complaing about lilo faillure when we use another
- bootloader: just complain about the actually used bootloader
- warly said that we should not restrict ourselves to lilo
- make splash config looks better when embedded
-
- * standalone/drakups: reuse create_okcancel() in ordet to get some std
- button layout
- remove useless menu infrastucture
-
- * drakxtools.spec: require a fixed perl-Glib
- fix changelog
- 9.3-21mdk
- 9.3-20mdk
-
- * ugtk2.pm: do not create spurious top window when embedded (why does this
- fsck us
- only now?)
-
-2004/01/14 David Baudens <baudens at mandrakesoft.com>
-
- * share/advertising/README, share/advertising/dis-06.pl,
- share/advertising/dis-05.png, share/advertising/dwd-08.pl,
- share/advertising/pwp-02.pl, share/advertising/dwd-04.pl,
- share/advertising/06-development.pl, share/advertising/01-thanks.png,
- share/advertising/dis-10.png, share/advertising/dwd-07.png,
- share/advertising/dis-02.pl, share/advertising/ppp-06.png,
- share/advertising/dis-04.pl, share/advertising/02-community.png,
- share/advertising/pwp-05.png, share/advertising/11-mnf.png,
- share/advertising/02-community.pl, share/advertising/05-desktop.pl,
- share/advertising/dis-11.pl, share/advertising/01-thanks.pl,
- share/advertising/dwd-04.png, share/advertising/dis-10.pl,
- share/advertising/ppp-11.pl, share/advertising/08-store.pl,
- share/advertising/pwp-07.pl, share/advertising/08-store.png,
- share/advertising/pwp-08.png, share/advertising/dwd-03.png,
- share/advertising/dwd-02.pl, share/advertising/12-mdkexpert.png,
- share/advertising/dis-05.pl, share/advertising/06-development.png,
- share/advertising/ppp-09.pl, share/advertising/11-mnf.pl,
- share/advertising/dis-03.png, share/advertising/dwd-01.pl,
- share/advertising/dwd-08.png, share/advertising/dis-01.pl,
- share/advertising/pwp-06.png, share/advertising/dis-07.pl,
- share/advertising/pwp-02.png, share/advertising/list,
- share/advertising/dwd-05.pl, share/advertising/ppp-06.pl,
- share/advertising/ppp-07.png, share/advertising/pwp-09.png,
- share/advertising/ppp-10.pl, share/advertising/dis-03.pl,
- share/advertising/dwd-09.png,
- share/advertising/13-mdkexpert_corporate.png,
- share/advertising/pwp-07.png, share/advertising/pwp-09.pl,
- share/advertising/pwp-04.png, share/advertising/pwp-05.pl,
- share/advertising/dis-01.png, share/advertising/10-security.png,
- share/advertising/07-server.pl, share/advertising/dwd-06.png,
- share/advertising/dis-08.png, share/advertising/pwp-01.png,
- share/advertising/ppp-08.png, share/advertising/ppp-03.pl,
- share/advertising/07-server.png, share/advertising/dis-08.pl,
- share/advertising/dwd-02.png, share/advertising/pwp-06.pl,
- share/advertising/dis-07.png, share/advertising/ppp-03.png,
- share/advertising/dwd-03.pl, share/advertising/ppp-01.png,
- share/advertising/03-software.png, share/advertising/ppp-08.pl,
- share/advertising/dis-02.png, share/advertising/dwd-06.pl,
- share/advertising/10-security.pl, share/advertising/Makefile,
- share/advertising/pwp-03.png, share/advertising/ppp-05.png,
- share/advertising/ppp-02.pl, share/advertising/dwd-07.pl,
- share/advertising/ppp-07.pl, share/advertising/dis-09.png,
- share/advertising/09-mdksecure.png, share/advertising/ppp-04.png,
- share/advertising/ppp-11.png, share/advertising/pwp-10.pl,
- share/advertising/ppp-09.png, share/advertising/dis-06.png,
- share/advertising/ppp-10.png, share/advertising/dis-11.png,
- share/advertising/dis-04.png, share/advertising/03-software.pl,
- share/advertising/pwp-10.png, share/advertising/09-mdksecure.pl,
- share/advertising/13-mdkexpert_corporate.pl,
- share/advertising/12-mdkexpert.pl, share/advertising/ppp-05.pl,
- share/advertising/ppp-01.pl, share/advertising/dis-09.pl,
- share/advertising/pwp-03.pl, share/advertising/04-configuration.png,
- share/advertising/dwd-01.png, share/advertising/ppp-04.pl,
- share/advertising/dwd-05.png, share/advertising/pwp-04.pl,
- share/advertising/pwp-01.pl, share/advertising/ppp-02.png,
- share/advertising/05-desktop.png, share/advertising/pwp-08.pl,
- share/advertising/04-configuration.pl, share/advertising/dwd-09.pl: New
- texts to translate for next release.
- Images will be modified in a short time.
-
-2004/01/14 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect:
- - manage interfaces :
- o add Account page
- o speedtouch and sagem modems
- o build_notebook don't need $window anymore
- o cosmetic change to Infornations page
-
-2004/01/14 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/uz@Cyrl.po, share/po/et.po,
- share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/mn.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/tg.po, share/po/nb.po, share/po/bs.po, share/po/uz.po,
- share/po/ro.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/hi.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/lv.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/hu.po: updated pot file
-
-2004/01/14 Pixel <pixel at mandrakesoft.com>
-
- * fs.pm: don't write fstab entries which are notFormatted
-
-2004/01/14 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm: Let list of printer models get sorted.
-
-2004/01/14 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: update
- update
-
- * drakxtools.spec: 9.3-19mdk
-
- * network/network.pm (miscellaneous_choose) restore it for drakproxy (we'd
- better split out
- network interface and proxy configuration at install time)
-
- * standalone/drakboot: typo fix
- use class->new rather than new class style
- minor cleanup
- perl_checker cleanups
- proper indenting
- - offer to configure bootsplash only on --splash
- - drop useless frames
- - set main window title according to current mode (autologin,
- bootloader or bootsplash)
-
- * install_steps_interactive.pm: proxy conf: do not touch files in
- --testing mode
- split out proxy configuration out of network interfaces configuration
-
- * standalone/drakautoinst:
- - kill unused variables
- - fix gtk+2 notebook usage
- - perl_checker cleanups
-
- * any.pm: move bootloader title from drakboot
-
- * standalone/drakclock: unused variable
-
- * network/tools.pm: ask_info2 is dead
-
- * install2.pm: fix fix
- fix logic test order in order to prevent useless error message in
- --testing mode
-
- * wizards.pm: using box radio looks better for yes/no like questions
- (process) in yes/no case, keep the same logic as
- interactive->ask_yesorno() and pass 1 if /yes/ and undef else
-
-2004/01/14 Warly <warly at mandrakesoft.com>
-
- * standalone/drakboot: clean splash management code
-
-2004/01/13 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/Makefile: cookr
-
- * pkgs.pm: perl check
- allow DRIVER"regexp" in rpmsrate and use it to install xmms-alsa when we
- use alsa sound driver
-
- * share/rpmsrate: allow DRIVER"regexp" in rpmsrate and use it to install
- xmms-alsa when we use alsa sound driver
-
- * Xconfig/card.pm, common.pm, detect_devices.pm, modules.pm:
- detect_devices::matching_driver -> matching_desc but matching driver
- names (kernel modules)
-
- * any.pm: changing utf8 flag on an installed OS is not supported
-
-2004/01/13 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nb.po, share/po/et.po: updated Estonian and Norwegian files
-
-2004/01/13 Pixel <pixel at mandrakesoft.com>
-
- * devices.pm: lvm2 uses urandom
-
- * lvm.pm: lvm2 uses urandom
- - install lvm2 rpm instead of lvm (and using ->ensure_is_installed)
- - "vgdisplay" error status is not good, using "vgs" instead
-
- * diskdrake/smbnfs_gtk.pm: revert titi breaking the code, keeping the only
- valid change
-
-2004/01/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakautoinst: alter message according to interface team
- suggestion
-
- * ugtk2.pm:
- - "Next->" => "Next"
- - "<-Previous" => "Previous"
- enable to access extra buttons $w->{buttons}{<label>}
- do not pack empty label before extra buttons if there'll be no button
- before it
- rationale: when there's no cancel button, packing an empty label
- instead of the cancel button results in extra buttons (eg: help,
- advanced) to be shifted with a space before;
-
- * standalone/drakboot, standalone/draksec, standalone/drakconnect:
- sanitize buttons through reusing create_okcancel()
-
- * standalone/drakedm: perl_checker sometimes wrongly complain
-
- * standalone/drakfloppy: sanitize buttons through reusing
- create_okcancel()
- upcase label
-
- * share/po/fr.po: typo fix
-
- * standalone/drakfont: hide about butto b/c there's already mcc about
- dialog and there're
- already too much buttons
- sanitize buttons through reusing create_okcancel()
-
- * standalone/drakperm, standalone/drakclock: alter message according to
- interface team suggestion
- sanitize buttons through reusing create_okcancel()
-
- * wizards.pm: add support for yes/no questions
- better rely on the end field being set rather than on the last step to
- be named "end" (thus allowing to have several different last steps)
-
-2004/01/12 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/01/12 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * pixmaps/langs/lang-sr.png: changed the Serbian cyrillic image to display
- using cyrillic.
-
- * share/po/et.po: updated Estonian file
- updated pot file
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/uz@Cyrl.po, share/po/ja.po,
- share/po/hr.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/be.po, share/po/uk.po, share/po/mn.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/cy.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/tg.po,
- share/po/nb.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/hi.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/lv.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/hu.po: updated pot file
-
- * lang.pm: adding spaces to please perl_checker
- Added to the language selection menu languages with recently appeared
- translations in Gnome or KDE (fo, ia, ku, nds, ne, oc, wen, yi)
-
-2004/01/12 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: used the ip from stage1 instead of using IPADDR which is
- not given for dhcp
- for auto_install file (as asked by Michael Riss)
-
- * install_gtk.pm: wacom support should be re-added :-/
-
-2004/01/12 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm, printer/printerdrake.pm: Added functionality to
- configure a PostScript printer with a
- manufacturer-supplied PPD file.
-
-2004/01/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakedm: perl_checker cleanups
-
- * drakxtools.spec: 9.3-18mdk
-
- * standalone/drakfloppy: handle both kernel 2.4.x and 2.6.x (before size
- field was not properly
- when switching between threes b/c we looked for module.ko instead of
- module.o.gz and the like)
-
- * standalone/drakfont: upcase first letter of error messages
- perl_checker fixes
- new layout with subdialogs
- remove spurious minus at beginning of paragraph
-
- * standalone/printerdrake: do not push anymore help menu at right (hig and
- kde guidelines are
- against this)
-
-2004/01/12 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/01/12 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/uz@Cyrl.po, share/po/et.po,
- share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/mn.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/tg.po, share/po/nb.po, share/po/bs.po, share/po/uz.po,
- share/po/ro.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/hi.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/lv.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/hu.po: updated pot file
-
-2004/01/12 Pixel <pixel at mandrakesoft.com>
-
- * share/list: need insmod.old for kernel 2.4
-
- * install_gtk.pm: wacom support should be re-added :-/
- XFree4 during install
-
- * install2.pm: used the ip from stage1 instead of using IPADDR which is
- not given for dhcp
- for auto_install file (as asked by Michael Riss)
-
- * install_steps_gtk.pm, share/list.i386: XFree4 during install
-
- * network/drakfirewall.pm: allow a range of ports (anthill bug #267)
-
- * run_program.pm: don't print refs in log when output is redirected
- (nice patch from blino :)
-
- * do_pkgs.pm, install_steps.pm, interactive.pm:
- - install_steps_auto_install is not a interactive but still needs
- do_pkgs
- - so making do_pkgs a class, and interactive and install_steps will
- inheritate from it
- - do_pkgs renamed into do_pkgs_common, containing the things common to
- do_pkgs_during_install and do_pkgs_standalone
-
- * docs/HACKING: update from sunny@opencurve.org
-
-2004/01/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: bump perl(Gtk2) require
- 9.3-17mdk
-
- * standalone/drakfont: new layout with subdialogs
- remove spurious minus at beginning of paragraph
- make font removing working with --testing
- fix unstalling fonts
- kill unused variables
- (put_font_dir) factorize some code into put_font_dir_real()
- fix chkfontpath call in --testing mode (/usr/sbin) not in path
- fix applications layout:
- - remove spurious empty boxes
- - fix layout (aka do not uselessly resize main window)
- - sanitize layout (put legal warning between title and application
- list)
- - "[X] label" packing looks quite a less uglier than "label
- [X]"
- fix about layout:
- - sanitize horrible line breaking (let pango do it for now, it know
- how to do
- it quite a lot better than we)
- - add myself in author list
- - split about translation in three pieces (copyright holders, std fsf
- header
- and thanks), enabling to share std fsf legal header among several
- programs
- prevent useless spacing above button bar
- enforce class->new calling convention rather than "new class" one
- style only change; "fix" gtkpacking so that expand arg always precede
- the
- widget it's about rather that following another widget
-
- * Makefile: handle poulpy code
-
- * standalone/drakedm: perl_checker cleanups
- when offering to restart dm, offer yes/no as choice rather than
- ok/cancel (#6810)
-
- * interactive/gtk.pm: fix embedding:
- - prevent subwindows being too small
- - prevent subwindows breaking when canceled
-
- * standalone/drakconnect: show a finish button on last step
- exit once delete interface wizard has ended instead of then running the
- std
- add wizard...
- list ppp interfaces too when offering to delete an interface
-
- * diskdrake/smbnfs_gtk.pm (per_entry_action_box)
- - sanitieze buttons packing (do not eat extra space)
- - get rid of groupby2
-
- * share/po/fr.po: typo fix
- update
- fix french translation: always translate "NONE" as "AUCUN" in draksec
-
- * wizards.pm: rollback debug statements
- only complain if a problem actually happened
-
-2004/01/10 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: updated
- last messages updated
-
-2004/01/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * standalone/drakconnect, standalone/scannerdrake: fixed typos
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/uz@Cyrl.po, share/po/et.po,
- share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/mn.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/tg.po, share/po/nb.po, share/po/bs.po, share/po/uz.po,
- share/po/ro.po, share/po/mk.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/hi.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/lv.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/hu.po: big pot file update
-
-2004/01/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: fix changelog
- one more fix
-
-2004/01/09 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect:
- - apply and ok button now working
- - some clean up
-
-2004/01/09 Pixel <pixel at mandrakesoft.com>
-
- * interactive.pm, do_pkgs.pm, standalone.pm: new do_pkgs package which get
- rid of pkgs_interactive::* which was in install_any
- and standalone, and partially duplicated
-
-2004/01/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/logdrake: fix wizard when logdrake is embeded
-
- * ugtk2.pm: handle exceptions with Glib-1.020/Gtk2-1.022
- (gtktext_insert) make it works with both Glib-0.95/Gtk2-0.95 and
- Glib-1.020/Gtk2-1.022
-
- * drakxtools.spec: 9.3-16mdk
- 9.3-15mdk
-
- * standalone/drakboot: fix drakboot --boot embedding
-
-2004/01/09 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect: information box fully fonctionnal for ethernet
- cards
-
-2004/01/09 Pixel <pixel at mandrakesoft.com>
-
- * share/po/Makefile: get translated strings in directory gi/perl-install
- to have xxx.pm instead of ../../xxx.pm
-
- * install_any.pm: http://serv.mydomain/pub/install must get split into
- server:serv.mydomain and
- directory:/pub/install, and not directory:pub/install
- simplify
-
- * interactive.pm, do_pkgs.pm: new do_pkgs package which get rid of
- pkgs_interactive::* which was in install_any
- and standalone, and partially duplicated
-
- * fs.pm, install_steps_gtk.pm: remove a few other SIG{__DIE__}
-
- * standalone.pm: new do_pkgs package which get rid of pkgs_interactive::*
- which was in install_any
- and standalone, and partially duplicated
- perl_checker compliance
- simplify, cleanup
-
-2004/01/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakconnect: share translations with harddrake
-
- * harddrake/data.pm: tag megaraid controllers as scsi ones
-
- * common.pm: enable other packages to override libDrakx translations with
- those
- from their own domains (eg: prevent mcc to display "partition de
- demarrage" instead of "demarrage" in french for "boot" ...)
-
- * share/po/br.po: update
-
-2004/01/08 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect:
- - informations afford copy/paste (mac address)
- - add module name to informations
- - perl_checker compliant
-
-2004/01/08 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po: updated Estonian file
-
-2004/01/08 Pixel <pixel at mandrakesoft.com>
-
- * standalone/drakauth, any.pm, authentication.pm, install_any.pm,
- install_steps_interactive.pm:
- - integrate chkauth (which is now deprecated)
- - new module authentication
-
- * install_steps_auto_install.pm: display the error
-
- * common.pm: better override formatError than replacing all the
- formatError with formatError_and_log
- (goal: get log'ing even now that SIG{__DIE__} is not there anymore)
- add formatError_and_log (to get log'ing even now that SIG{__DIE__} is
- not there anymore)
-
- * install2.pm: no need to log the error twice, errorInStep will take care
- of it
- display the error
-
-2004/01/08 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/adsl.pm: fix sagem net_cnx_up (thanks to QA team)
-
- * standalone/drakconnect: first 'manage interface'
- implementatiimplementation
-
- * drakxtools.spec: new version
-
-2004/01/08 Pixel <pixel at mandrakesoft.com>
-
- * Makefile: runinstall2 is deprecated, install2 is called directly
-
- * share/aliases: i thought stage1 didn't call runinstall2 anymore...
- what's wrong with me??
- runinstall2 is deprecated, install2 is called directly
-
- * install2.pm: no need to log the error twice, errorInStep will take care
- of it
- display the error
-
- * diskdrake/interactive.pm, Xconfig/resolution_and_depth.pm: perl_checker
- compliance
-
- * network/smb.pm, diskdrake/smbnfs_gtk.pm: authentification is french, the
- english word is authentication
-
- * bootloader.pm: drop keytable line in grub config file since grub doesn't
- handle it anymore
- (patch dropped long ago in grub 0.90-3mdk)
- - simplify lilo boot message. Not mentioning the timeout parameter
- fixes bugzilla #5429
- - remove /boot/grub/messages and don't use the i18n command which are
- obsolete
- since grub doesn't handle it anymore
-
- * standalone/drakauth, any.pm, authentication.pm,
- install_steps_interactive.pm, install_any.pm:
- - integrate chkauth (which is now deprecated)
- - new module authentication
-
- * services.pm: add a fam description (telling that GNOME & KDE uses it).
- closes part of bugzilla #1704
-
- * common.pm: better override formatError than replacing all the
- formatError with formatError_and_log
- (goal: get log'ing even now that SIG{__DIE__} is not there anymore)
- add formatError_and_log (to get log'ing even now that SIG{__DIE__} is
- not there anymore)
-
- * install_steps_auto_install.pm: display the error
-
-2004/01/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakbackup: merge back drakbacup update
-
- * ugtk2.pm: add a separator below buttons on fredc request
-
- * drakxtools.spec: merge in spec file from update SRPM
-
- * network/adsl.pm: fordward sagem net_cnx_up fix
-
- * standalone/drakconnect (configure_net)
- - make buttons smaller
- - follow button std order
- move all options parsing pieces together
- restore exit_dialogsub
- (configure_net)
- when there's no connection:
- - fix message for new drakconnect scheme
- - shrink code by reusing interactive
-
-2004/01/07 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2004/01/07 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm, standalone/diskdrake: logging when __DIE__ing is dangerous:
- - in diskdrake, logging the error via c::syslog caused $@ to be
- undefined, causing the error to be dropped! (esp "you need to reboot")
- - during install, no known error, but it's better to remove it anyway
- (bye bye the "warning: ..." in ddebug.log, sniff)
-
- * pkgs.pm: handle lilo not installed
-
- * install_any.pm: use whereis_binary()
-
- * Makefile.config: livedrake is deprecated/removed
-
- * bootloader.pm: handle lilo not installed
- pass --splash <resolution> to mkinitrd
- (so that make-boot-splash doesn't rely on lilo.conf or menu.lst)
-
- * run_program.pm: when called from commands.pm, install_any is not loaded
-
- * any.pm, Xconfig/resolution_and_depth.pm: pass --splash <resolution> to
- mkinitrd
- (so that make-boot-splash doesn't rely on lilo.conf or menu.lst)
-
- * drakxtools.spec: we need latest perl-MDK-Common
-
-2004/01/07 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: DVD+RW support, perl_checker, fix bogus cron
- message
-
-2004/01/07 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/br.po, share/po/fr.po: update
-
- * standalone/service_harddrake, modules.pm, c/stuff.xs.pl,
- network/ethernet.pm, drakxtools.spec: fixes merged from head into
- updates
-
-2004/01/06 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po, share/po/ms.po, share/po/id.po, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/th.po,
- share/po/sl.po, share/po/uz@Cyrl.po, share/po/et.po, share/po/ja.po,
- share/po/hr.po, share/po/tr.po, share/po/mt.po, share/po/ga.po,
- share/po/be.po, share/po/uk.po, share/po/mn.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/cy.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/tg.po,
- share/po/nb.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
- share/po/mk.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/hi.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/nl.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/lv.po, share/po/el.po, share/po/bg.po, share/po/cs.po,
- share/po/hu.po: updated pot file
-
-2004/01/06 Pixel <pixel at mandrakesoft.com>
-
- * pkgs.pm: perl_checker compliance
- get rid of g_auto_install (unused & not working)
-
- * Xconfig/card.pm, live_install, Makefile.config, install_gtk.pm,
- standalone/livedrake, modules.pm, live_install2: obsolete livedrake,
- live_install, live_update
-
- * g_auto_install: get rid of g_auto_install (unused & not working)
-
- * install_any.pm: obsolete livedrake, live_install, live_update
- perl_checker compliance
- use $::prefix
- get rid of g_auto_install (unused & not working)
-
- * detect_devices.pm: perl_checker compliance
- obsolete livedrake, live_install, live_update
-
- * standalone/adduserdrake, partition_table/mac.pm, standalone/XFdrake,
- fsedit.pm, commands.pm, standalone/localedrake, partition_table.pm:
- perl_checker compliance
-
- * drakxtools.spec: obsolete live_update
-
- * install_steps.pm: obsolete livedrake, live_install, live_update
- use $::prefix
- get rid of g_auto_install (unused & not working)
-
- * standalone/drakclock: perl_checker compliance
- use $::prefix
-
- * Makefile, install2.pm: obsolete livedrake, live_install, live_update
- get rid of g_auto_install (unused & not working)
-
- * timezone.pm: use $::prefix
-
- * install_steps_interactive.pm: perl_checker compliance
- perl_checker compliance
- perl_checker compliance
- use $::prefix
- get rid of g_auto_install (unused & not working)
-
-2004/01/06 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/harddrake2: kill unused variables
-
-2003/09/23 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/uk.po, share/po/it.po: updated Basque, Italian and Ukrainian
- files
-
- * share/po/eu.po: updated Basque file
- updated Basque, Italian and Ukrainian files
-
- * share/po/nl.po: updated Dutch file
-
-2003/09/22 François Pons <fpons at mandrakesoft.com>
-
- * install_steps.pm: avoid mounting partitions in recovery mode.
-
- * network/netconnect.pm: make sure module are loaded only during
- installation.
-
- * install2.pm: keep use_existing_root for recovery (behaviour changed
- later)
-
- * pkgs.pm: simplified code.
- use kernel-i686 or kernel-enterprise as other kernel.
-
-2003/09/22 Pixel <pixel at mandrakesoft.com>
-
- * fs.pm: fix error message
-
- * detect_devices.pm: dmi doesn't detect ht, but acpi does, so use it
-
-2003/09/22 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Bug 5916, all users overrides individual
- selection in wizard.
-
-2003/09/22 François Pons <fpons at mandrakesoft.com>
-
- * pkgs.pm: simplified code.
- use kernel-i686 or kernel-enterprise as other kernel.
-
- * network/netconnect.pm: make sure module are loaded only during
- installation.
-
- * install2.pm: keep use_existing_root for recovery (behaviour changed
- later)
-
- * install_steps.pm: avoid mounting partitions in recovery mode.
-
-2003/09/22 Pixel <pixel at mandrakesoft.com>
-
- * fs.pm: fix error message
-
- * detect_devices.pm: dmi doesn't detect ht, but acpi does, so use it
-
-2003/09/22 François Pons <fpons at mandrakesoft.com>
-
- * install_steps_gtk.pm: try to follow what is wrong when requiring
- multiple cds.
-
- * install_steps.pm: avoid mounting partitions in recovery mode.
- avoid urpmi source in oem to use cdrom (we now use disk instead,
- avoiding
- supermount problems).
-
- * pkgs.pm: simplified code.
- use kernel-i686 or kernel-enterprise as other kernel.
-
- * network/network.pm: simplified perl writing, make sure bool2yesno has a
- chance to be called for MII_NOT_SUPPORTED
- fixed strange perl writing sense less...
-
- * install2.pm: keep use_existing_root for recovery (behaviour changed
- later)
-
- * network/netconnect.pm: make sure module are loaded only during
- installation.
- try loading boot kernel modules before trying to start internet
- connection...
-
-2003/09/22 Pixel <pixel at mandrakesoft.com>
-
- * detect_devices.pm: dmi doesn't detect ht, but acpi does, so use it
-
- * fs.pm: fix error message
-
- * rescue/tree/etc/oem-all:
- - fix typo
- - add CVS Id
-
-2003/09/21 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/pt.po, share/po/fa.po, share/po/eu.po, share/po/bs.po,
- share/po/zh_CN.po, share/po/pt_BR.po, share/po/it.po: updated Bosnian,
- Basque, Farsi, Italian, Portuguese and Chinese files
-
-2003/09/21 Pixel <pixel at mandrakesoft.com>
-
- * lang.pm: allowing consolefonts to be ungzip'ed (adapting to new
- console-tools) (thanks to Mark Draheim)
-
-2003/09/20 keld
-
- * share/po/da.po: Updates
- soft/ftw/po/da.po gi/perl-install/share/po/da.po
-
-2003/09/19 Frederic Lepied <flepied at mandrakesoft.com>
-
- * share/rpmsrate: switch the other way too
- switch to kdebase-kdm while the reboot options aren't fixed
-
-2003/09/19 François Pons <fpons at mandrakesoft.com>
-
- * rescue/tree/etc/oem-all: updated with oem
- fixed too many files copied.
-
- * rescue/tree/etc/oem: fixed severe bug of directory not created.
- fixed too many files copied.
-
-2003/09/19 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/is.po: updated Icelandic file
-
- * share/po/vi.po, share/po/sv.po, share/po/de.po, share/po/pt_BR.po:
- updated German, Brazilian, Swedish and Vietnamese files
-
-2003/09/19 Pixel <pixel at mandrakesoft.com>
-
- * pkgs.pm: next FreeWnn is not a naughtyServers anymore
- final update naughtyServers for 9.2
-
-2003/09/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 9.2-16mdk
-
- * standalone/drakconnect: fix the fix
- fix #5825 (hostname set as ARRAY(0x...))
-
-2003/09/19 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: do not install lisa by default (reduce to 3)
-
-2003/09/19 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/is.po: updated Icelandic file
-
- * share/po/pl.po, share/po/hu.po, share/po/cs.po, share/po/pt_BR.po,
- share/po/zh_TW.po, share/po/fi.po, share/po/ja.po, share/po/az.po:
- updated Azeri, Czech, Finnish, Hungarian, Japanese, Polish,
- Brazilian and Chinese files
-
-2003/09/19 Pixel <pixel at mandrakesoft.com>
-
- * pkgs.pm: next FreeWnn is not a naughtyServers anymore
- final update naughtyServers for 9.2
-
-2003/09/18 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: last license message update
-
-2003/09/18 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/09/18 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/probing.c, mdk-stage1/disk.c: close file descriptors
-
-2003/09/18 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nb.po: updated Norwegian file
-
-2003/09/18 Pixel <pixel at mandrakesoft.com>
-
- * pkgs.pm: update naughtyServers
-
-2003/09/18 tpittich
-
- * share/po/sk.po: updated slovak translation
-
-2003/09/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: one more typo fix
- typo fix
- 9.2-15mdk
-
-2003/09/18 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: last license message update
-
-2003/09/18 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate: Add kdemultimedia-common to allow kaudiocreator to work
-
-2003/09/18 François Pons <fpons at mandrakesoft.com>
-
- * share/rpmsrate: added kdeutils in rpmsrate to help upgrading it.
-
-2003/09/18 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/probing.c, mdk-stage1/disk.c: close file descriptors
-
-2003/09/18 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po: updated Estonian file
- updated pot file
-
- * share/po/sq.po: updated Albanian file
- updated pot file
-
- * share/po/nb.po: updated Norwegian file
- updated pot file
-
- * share/po/eo.po, share/po/da.po, share/po/uz@Cyrl.po, share/po/sl.po,
- share/po/sv.po, share/po/hu.po, share/po/fa.po, share/po/de.po,
- share/po/sr@Latn.po, share/po/ga.po, share/po/it.po, share/po/cy.po,
- share/po/wa.po, share/po/vi.po, share/po/fi.po, share/po/ru.po,
- share/po/gl.po, share/po/af.po, share/po/ar.po, share/po/pl.po,
- share/po/pt_BR.po, share/po/lt.po, share/po/el.po, share/po/zh_CN.po,
- share/po/id.po, share/po/eu.po, share/po/sr.po, share/po/ja.po,
- share/po/be.po, share/po/uk.po, share/po/hr.po, share/po/th.po,
- share/po/nl.po, share/po/ca.po, share/po/DrakX.pot, share/po/bg.po,
- share/po/lv.po, share/po/ta.po, share/po/he.po, share/po/ro.po,
- share/po/fr.po, share/po/ko.po, share/po/bs.po, share/po/mt.po,
- share/po/sk.po, share/po/es.po, share/po/tr.po, share/po/az.po,
- share/po/is.po, share/po/ms.po, share/po/uz.po, share/po/cs.po,
- share/po/pt.po, share/po/zh_TW.po, share/po/tg.po: updated pot file
-
-2003/09/18 Pixel <pixel at mandrakesoft.com>
-
- * pkgs.pm: update naughtyServers
-
- * modules.pm: don't "probeall scsi_hostadapter usb-storage" (as requested
- by flepied and planel)
-
- * install_steps_gtk.pm: the install package dialog box must be explictly
- destroyed when quitting
- installation (esp. this occurs when answering "No" to "There was an
- error
- installing packages")
- rationale: the $w (created with ugtk2->new) is not reference counted
- correctly
- (it was already workarounded when leaving installPackages the normal
- way)
-
-2003/09/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 9.2-15mdk
-
- * install_steps_interactive.pm: fix slot number when configuring sound
- cards
-
- * harddrake/sound.pm: prevent some obscure crash at install time
- when installing, remember the new sound driver so that the user isn't
- confused if he ever want to configure it again
-
-2003/09/18 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: last license message update
-
-2003/09/18 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate: Add kdemultimedia-common to allow kaudiocreator to work
-
-2003/09/18 François Pons <fpons at mandrakesoft.com>
-
- * rescue/tree/etc/oem-all: updated with oem
-
- * share/rpmsrate: added kdeutils in rpmsrate to help upgrading it.
-
- * rescue/tree/etc/oem: fixed for %{ARCH} used in hdlists.
-
-2003/09/18 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/zh_CN.po, share/po/bs.po, share/po/zh_TW.po, share/po/pt_BR.po,
- share/po/is.po, share/po/tr.po, share/po/sr@Latn.po, share/po/az.po,
- share/po/ta.po, share/po/ro.po, share/po/ga.po, share/po/eu.po,
- share/po/cy.po, share/po/fa.po, share/po/tg.po, share/po/ar.po,
- share/po/ru.po, share/po/el.po, share/po/lt.po, share/po/it.po,
- share/po/de.po, share/po/pt.po, share/po/hr.po, share/po/uz.po,
- share/po/ko.po, share/po/ca.po, share/po/be.po, share/po/hu.po,
- share/po/sv.po, share/po/fr.po, share/po/bg.po, share/po/lv.po,
- share/po/uz@Cyrl.po, share/po/sl.po, share/po/pl.po, share/po/ms.po,
- share/po/ja.po, share/po/eo.po, share/po/nl.po, share/po/mt.po,
- share/po/nb.po, share/po/vi.po, share/po/wa.po, share/po/sk.po,
- share/po/DrakX.pot, share/po/fi.po, share/po/sr.po, share/po/th.po,
- share/po/he.po, share/po/da.po, share/po/gl.po, share/po/es.po,
- share/po/af.po, share/po/id.po: updated pot file
-
- * install_messages.pm: paragraph about patents was not tagged as
- translatable; added N( )
-
- * share/po/et.po: updated Estonian file
- updated pot file
-
- * share/po/Makefile: Arabic and Farsi po files not used at install, as
- there
- isn't available font during install
-
- * share/po/sq.po: updated Albanian file
- updated pot file
-
- * share/po/cs.po, share/po/uk.po: updated pot file
- updated Czech and Ukrainian files
-
-2003/09/18 Pixel <pixel at mandrakesoft.com>
-
- * pkgs.pm: update naughtyServers
-
- * share/po/Makefile, Makefile: don't remove some po's from drakxtools,
- only from install
- (ar/fa disabled because not working at install, ga/sl not translated
- enough)
-
- * install_steps.pm: sanitize ld.so.conf *before* calling ldconfig
-
- * standalone/drakboot: ensure update_bootloader_label() won't break when
- called in text interactive
- (hint: in that case, $boot_label is unset)
-
- * bootloader.pm:
- - fix grub/menu.lst -> lilo.conf
- - cleanup
-
- * install_steps_gtk.pm: the install package dialog box must be explictly
- destroyed when quitting
- installation (esp. this occurs when answering "No" to "There was an
- error
- installing packages")
- rationale: the $w (created with ugtk2->new) is not reference counted
- correctly
- (it was already workarounded when leaving installPackages the normal
- way)
-
- * modules.pm: don't "probeall scsi_hostadapter usb-storage" (as requested
- by flepied and planel)
-
-2003/09/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 9.2-15mdk
-
- * install_steps_interactive.pm: fix slot number when configuring sound
- cards
-
- * harddrake/sound.pm: prevent some obscure crash at install time
- when installing, remember the new sound driver so that the user isn't
- confused if he ever want to configure it again
-
-2003/09/17 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: fresh updates
-
-2003/09/17 Daouda Lo <daouda at mandrakesoft.com>
-
- * standalone/drakhelp:
- - replace mdklaunchhelp by konqueror
-
- * standalone/drakbug:
- - drakhelp will load online drakbug help file
-
-2003/09/17 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * install_steps.pm: remove deprecated function call (thanks to guillaume
- 'eagle eye' Cottenceau)
-
-2003/09/17 François Pons <fpons at mandrakesoft.com>
-
- * install2.pm: make sure use_existing_root is not set.
-
- * install_steps.pm: moved update-menu after installation of oem-theme.rpm
- allow exit code of detached process to be seen.
- fixed closing of rpmdb directly in pkgs
- install urpmi before update-menus is called.
- fixed to close rpm db whenever possible.
-
- * pkgs.pm: make always sure rpmdb is closed before attempting
- installation.
-
-2003/09/17 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * lang.pm, install_steps.pm: treat C encoding specially when computing
- utf8 flag, it should not trigger utf8 set by itself
-
-2003/09/17 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/zh_TW.po: removed duplicate entry
- Completed a translation
- s:country:country/region:
- updated Italian, Brazilian and Chinese files
-
- * share/po/it.po, share/po/pt_BR.po: updated Italian, Brazilian and
- Chinese files
-
- * share/po/wa.po, lang.pm: Added "English (Ireland)" choice;
- make Russian encoding compatible with Ukrainian (choosin 'ru' and 'uk'
- languages doesn't force utf-8 but keeps koi8)
-
- * pixmaps/langs/lang-en_IE.png: readded with binary flag
- removed binary file
- Added "English (Ireland)" choice;
- make Russian encoding compatible with Ukrainian (choosin 'ru' and 'uk'
- languages doesn't force utf-8 but keeps koi8)
-
-2003/09/17 Pixel <pixel at mandrakesoft.com>
-
- * diskdrake/interactive.pm: don't display a wait_message together with the
- write_partitions() dialog
-
- * fs.pm, partition_table.pm: ensure that a number is not written as the
- type in fstab
-
- * any.pm: add /usr/lib/qt3/lib (and sometimes /usr/lib/qt3/lib64) in
- ld.so.conf
- (needed for upgrade where package renaming can cause this to disappear)
-
- * install_steps_interactive.pm: cancel in setRootPassword means "No
- password", not cancel
-
- * pkgs.pm: don't warn about FreeWnn being an open port (gc will try to
- only open it to localhost)
-
- * fsedit.pm: when the checking the mount point is not already used, don't
- take into account current partition
-
- * interactive/gtk.pm: fix ugliness: don't display $advanced_pack when
- there are no @widgets_advanced
- (esp. since $advanced_pack is now in its own scrolled window)
-
-2003/09/17 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm: Fixed "Configure CUPS" function of printerdrake adding
- a second
- "<Location />...</Location>" in /etc/cups/cupsd.conf instead of
- replacing the existing one (fix of Titi's newly introduced bug from
- May 19 14:17:58 2003 UTC).
-
-2003/09/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * handle_configs.pm (comment_directive) fix it
-
- * drakxtools.spec: 9.2-14mdk
- we still are 13mdk
- do not log changes that got reversed between two releases
- 9.2-13mdk
-
-2003/09/17 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: force mandrake_doc-en if language is not fr, it or es
-
-2003/09/17 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: fresh updates
-
-2003/09/17 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/09/17 François Pons <fpons at mandrakesoft.com>
-
- * install_steps.pm: fixed to close rpm db whenever possible.
-
-2003/09/17 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * install_steps.pm, lang.pm: treat C encoding specially when computing
- utf8 flag, it should not trigger utf8 set by itself
-
-2003/09/17 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/pt.po, share/po/nb.po, share/po/et.po, share/po/cy.po,
- share/po/hu.po: updated Welsh, Estonian, Hungarian, Norwegian and
- Portuguese files
-
-2003/09/17 Pixel <pixel at mandrakesoft.com>
-
- * interactive/gtk.pm: fix ugliness: don't display $advanced_pack when
- there are no @widgets_advanced
- (esp. since $advanced_pack is now in its own scrolled window)
-
- * any.pm: add /usr/lib/qt3/lib (and sometimes /usr/lib/qt3/lib64) in
- ld.so.conf
- (needed for upgrade where package renaming can cause this to disappear)
- run nisdomainname et ypbind so that nis is correctly set up *now*, not
- at next reboot.
- TODO: also do it during install since nis can be useful to resolve
- domain names. Not done because 9.2-RC
-
- * fsedit.pm: when the checking the mount point is not already used, don't
- take into account current partition
-
- * install_steps_interactive.pm: cancel in setRootPassword means "No
- password", not cancel
-
- * standalone/drakauth: display errors occuring in
- any::set_authentication()
- (esp. for "Can't use broadcast with no NIS domain")
-
- * diskdrake/interactive.pm: don't display a wait_message together with the
- write_partitions() dialog
-
- * fs.pm, partition_table.pm: ensure that a number is not written as the
- type in fstab
-
-2003/09/17 tpittich
-
- * share/po/sk.po: updated slovak translation
-
-2003/09/16 François Pons <fpons at mandrakesoft.com>
-
- * install_steps.pm: make sure / and /usr are formatted in recovery mode.
-
-2003/09/16 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sl.po, share/po/fa.po, share/po/sr.po, share/po/ar.po,
- share/po/sr@Latn.po, share/po/nl.po, share/po/es.po, share/po/eo.po,
- share/po/th.po, share/po/uz@Cyrl.po, share/po/vi.po, share/po/hu.po,
- share/po/wa.po, share/po/eu.po, share/po/tr.po, share/po/ro.po,
- share/po/sq.po, share/po/et.po, share/po/is.po, share/po/zh_CN.po,
- share/po/he.po, share/po/ca.po, share/po/be.po, share/po/lt.po,
- share/po/ja.po, share/po/ms.po, share/po/da.po, share/po/nb.po,
- share/po/bs.po, share/po/cs.po, share/po/el.po, share/po/pt_BR.po,
- share/po/az.po, share/po/cy.po, share/po/uz.po, share/po/hr.po,
- share/po/ru.po, share/po/bg.po, share/po/gl.po, share/po/ko.po,
- share/po/mt.po, share/po/zh_TW.po, share/po/uk.po, share/po/tg.po,
- share/po/sv.po, share/po/pl.po, share/po/af.po, share/po/pt.po,
- share/po/ta.po, share/po/fr.po, share/po/fi.po, share/po/id.po,
- share/po/de.po, share/po/sk.po, share/po/ga.po, share/po/it.po,
- share/po/lv.po: updated pot files
-
-2003/09/16 Pixel <pixel at mandrakesoft.com>
-
- * install_steps.pm: pixelization
-
-2003/09/16 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: fix typos
-
- * harddrake/sound.pm: fix #5403:
- - make sure to use OptionMenu instead of Combo boxes
- - move help into a tooltip
-
-2003/09/16 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/adsl.pm: fix firmware testing at installation
-
-2003/09/16 François Pons <fpons at mandrakesoft.com>
-
- * install_steps.pm: make sure / and /usr are formatted in recovery mode.
-
-2003/09/16 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/help-it.pot, share/po/help-de.pot, share/po/help-es.pot,
- share/po/help-ru.pot, share/po/DrakX.pot: updated pot files
-
-2003/09/16 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * share/rpmsrate: wireless packages fix
-
- * network/adsl.pm: fix firmware testing at installation
-
-2003/09/16 François Pons <fpons at mandrakesoft.com>
-
- * install_steps_interactive.pm: added question to ask for recovering the
- system in recover mode.
-
- * install_any.pm: removing update media tag (except for update medium)
-
- * install2.pm: made mouse, keyboard, packages selection, timezone and
- security selection automatic...
- / and /usr should be formatted, keep default for installation.
- fixed stupid typo preventing mouse modules to be loaded.
- added automatic steps in recovery mode.
- disable recovery mode if recovery.cfg file has not been read
- successfully.
-
-2003/09/16 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/help-ru.pot, share/po/help-de.pot, share/po/DrakX.pot,
- share/po/help-it.pot, share/po/help-es.pot: updated pot files
-
-2003/09/16 Pixel <pixel at mandrakesoft.com>
-
- * interactive/gtk.pm: Gtk2::CheckButton->new is
- Gtk2::CheckButton->new_with_mnemonic, it's better to use
- Gtk2::CheckButton->new_with_label (bug #5728)
-
-2003/09/16 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * interactive/gtk.pm: fix expert mode resulting in advanced setting being
- displayed by
- default but label still being "advanced" instead of "basic"
-
- * drakxtools.spec: one more fix
- 9.2-12mdk
-
-2003/09/16 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: add minichinput in X 5
-
-2003/09/15 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/adsl.pm: initialize $adsl, fix #5674 and pppoe.conf problems
- fix #5056 (mostly workaround as kernel is frozen)
-
- * network/netconnect.pm: net install autodetection fix
-
-2003/09/15 François Pons <fpons at mandrakesoft.com>
-
- * Xconfig/resolution_and_depth.pm: avoid using other depth than 24 for
- fglrx in automatic mode.
-
- * standalone.pm: improved speed by invoking once `rpm -qa` instead of 4.
-
-2003/09/15 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/is.po, share/po/fr.po, share/po/fi.po: updated Finnish, French
- and Icelandic files
-
- * share/po/help-ru.pot, share/po/help-fr.pot, share/po/help-it.pot,
- share/po/help-de.pot, share/po/help-es.pot: put back previous versions
- of help-*.pot files to be in synch with help.pm
-
-2003/09/15 Pixel <pixel at mandrakesoft.com>
-
- * run_program.pm: better logging of killed runaway processes
-
- * Xconfig/main.pm: configure_resolution() must return 'config_changed'
- when a new resolution is chosen
-
- * lang.pm: use locale_special when $::prefix is set (so that X test is
- i18n)
-
- * any.pm: set ICEAUTHORITY for "gnome-session-save --kill"
- (it would be better to set it in usermode, but it works :)
-
- * standalone/XFdrake:
- - call any::ask_window_manager_to_logout() after forking so that exit
- doesn't happen before it is done
- (otherwise it can loose Xauth access)
- - fix checking config_changed (it can be string 'config_changed' or
- the new $raw_X)
-
- * partition_table.pm: associate partition table 0xeb (BeOS) with
- filesystem befs (part of bug #5523)
-
-2003/09/15 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbug: New, improved, compact code, courtesy of Thierry.
- Updates for stable release bug submission to anthill (vdanen)
-
-2003/09/15 Till Kamppeter <till at mandrakesoft.com>
-
- * share/rpmsrate: Added usbutils to the packages needed for installation.
- This package
- is needed for setting up the HP PSC 1xxx and OfficeJet 4xxx with HPOJ.
-
- * printer/main.pm: Small fix on LIDIL workaround.
- Put device identity info into the HPOJ config file also when HPOJ
- configuration was not verified (LIDIL devices).
- Added workaround to make HP PSC 1xxx and OfficeJet 4xxx really working.
-
-2003/09/15 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/sound.pm: fix #5488: do not overwrite current driver if it's a
- viable driver for
- the current sound card
- show the current driver too (being preselected) so that users do not
- get confused
-
- * drakxtools.spec: typo fixes
-
- * interactive/gtk.pm: fix hidden or cutted buttons (#1919, #2364, #2705,
- #3667, ...)
-
-2003/09/15 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/adsl.pm: fix #5056 (mostly workaround as kernel is frozen)
-
-2003/09/15 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/09/15 François Pons <fpons at mandrakesoft.com>
-
- * c/Makefile: fixed possible typo...
-
- * standalone.pm: improved speed by invoking once `rpm -qa` instead of 4.
-
-2003/09/15 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * help.pm: reverted to previous version, to avoid huge strings break at
- this stage
-
- * share/po/pt.po, share/po/it.po, share/po/af.po, share/po/hu.po,
- share/po/mt.po: updated Afrikaans, Hungarian, Italian, Maltese and
- Portuguese files
-
-2003/09/15 Pixel <pixel at mandrakesoft.com>
-
- * lang.pm: use locale_special when $::prefix is set (so that X test is
- i18n)
-
- * Xconfig/main.pm: configure_resolution() must return 'config_changed'
- when a new resolution is chosen
-
- * run_program.pm: better logging of killed runaway processes
-
- * diskdrake/interactive.pm: fix growing ext2/ext3 partitions
-
- * standalone/drakupdate_fstab: fix typo (pixel sux)
-
- * any.pm: set ICEAUTHORITY for "gnome-session-save --kill"
- (it would be better to set it in usermode, but it works :)
- when "Back" is pressed, restore the list of entries in bootloader (bug
- #5680)
-
- * standalone/XFdrake:
- - call any::ask_window_manager_to_logout() after forking so that exit
- doesn't happen before it is done
- (otherwise it can loose Xauth access)
- - fix checking config_changed (it can be string 'config_changed' or
- the new $raw_X)
-
- * partition_table.pm: associate partition table 0xeb (BeOS) with
- filesystem befs (part of bug #5523)
-
-2003/09/15 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup, standalone/drakTermServ: drakTermServ -
- translation issues (Arpad Biro), fix help text format
- drakbackup - translation issues (Arpad Biro)
- fix user, cron misbehavior (Keld Jørn Simonsen)
-
-2003/09/15 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm: Added support for user-mode-only HPOJ devices
- (HP PSC 1xxx and
- OfficeJet 4xxx). Fixes bug #5641.
-
- * printer/main.pm: perl_checker fix.
- Added support for user-mode-only HPOJ devices (HP PSC 1xxx and
- OfficeJet 4xxx). Fixes bug #5641.
-
-2003/09/14 Pixel <pixel at mandrakesoft.com>
-
- * fsedit.pm: add a warning for / on LVM: "You may not be able to install
- lilo (since lilo doesn't handle a LV on multiple PVs)"
-
-2003/09/14 Warly <warly at mandrakesoft.com>
-
- * standalone/service_harddrake: stop bootsplash silent mode if something
- is detected
-
-2003/09/14 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: last updates, fixed some typos
-
-2003/09/14 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/hu.po, share/po/he.po, share/po/pt_BR.po, share/po/uk.po,
- share/po/fa.po, share/po/sq.po: updated Farsi, Hebrew, Hungarian,
- Brazilian, Albanian and Ukrainian files
-
-2003/09/14 Pixel <pixel at mandrakesoft.com>
-
- * fsedit.pm: add a warning for / on LVM: "You may not be able to install
- lilo (since lilo doesn't handle a LV on multiple PVs)"
-
-2003/09/13 nplanel
-
- * install2.pm: back to i810fb xcon=4 (bad docummented option)
-
-2003/09/13 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * lang.pm: put quotes around the XIM_PROGRAM values that use spaces
-
- * share/po/it.po, share/po/ro.po, share/po/he.po, share/po/pt_BR.po,
- share/po/sk.po, share/po/bg.po: updated Bulgarian, Hebrew, Italian,
- Brazilian and Romanian files;
- fixed syntax errors in Slovak file
-
- * share/po/zh_CN.po, share/po/cy.po: updated Welsh and Chinese files
-
-2003/09/13 tpittich
-
- * share/po/sk.po: updated slovak translation
-
-2003/09/12 David Baudens <baudens at mandrakesoft.com>
-
- * share/compssUsers: Always install a termunal emulator and don't install
- GNOME by default
-
- * standalone/icons/wiz_logdrake.png, standalone/icons/wiz_drakgw.png,
- standalone/icons/wiz_scannerdrake.png,
- standalone/icons/wiz_drakconnect.png,
- standalone/icons/wiz_default_up.png, standalone/icons/wiz_firewall.png,
- standalone/icons/wiz_printerdrake.png,
- standalone/icons/drakfont.620x57.png: Update
-
-2003/09/12 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/adsl.pm:
- - dropped sub load_firmware_floppy
- - handle windows firmware's copy
-
- * network/tools.pm: added sub copy_firmware, sub use_windows(), sub
- use_floppy
- firmware copy works from floppy and windows/winnt
-
-2003/09/12 François Pons <fpons at mandrakesoft.com>
-
- * share/rpmsrate: fixed fatal error in rpmsrate.
-
-2003/09/12 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * lang.pm: fix garbled font when asking UTF8 in text install
-
- * c/Makefile.PL, c/stuff.xs.pl: stuff doesn't contain gtk stuff anymore
-
- * tools/make_mdkinst_stage2: die if cp failed
-
- * share/themes-galaxy.rc: fix progressbar color (should be blue)
-
-2003/09/12 keld
-
- * share/po/da.po: corrections
- gi/perl-install/share/po/da.po
- corrections
- soft/wizard_perl/po/da.po gi/perl-install/share/po/da.po
- updates
- soft/menu-messages/da.po soft/ftw/po/da.po
- gi/perl-install/share/po/da.po
-
-2003/09/12 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sv.po, share/po/nb.po, share/po/vi.po: updated Norwegian,
- Swedish and Vietnamese files
-
- * share/po/cs.po: updated Czech file
-
- * share/po/az.po: updated Azeri file
-
-2003/09/12 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: hd as default daemon media
-
-2003/09/12 tpittich
-
- * share/po/sk.po: updated slovak translation
-
-2003/09/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakconnect: fix #5586 (profiles with spaces in name)
-
- * drakxtools.spec: 9.2-11mdk
-
-2003/09/12 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated
-
-2003/09/12 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate: Fix gnome-audio entry
- Update
-
-2003/09/12 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translation
-
-2003/09/12 Frederic Lepied <flepied at mandrakesoft.com>
-
- * share/rpmsrate: removed nautilus-gtkhtml
- added rnboifd and cm2020 packages
-
-2003/09/12 François Pons <fpons at mandrakesoft.com>
-
- * share/rpmsrate: fixed fatal error in rpmsrate.
-
-2003/09/12 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * share/themes-galaxy.rc: fix progressbar color (should be blue)
-
-2003/09/12 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po: updated Estonian file
- updated pot file
-
- * share/po/uz.po, share/po/nb.po, share/po/id.po, share/po/da.po,
- share/po/tr.po, share/po/mt.po, share/po/tg.po, share/po/sr.po,
- share/po/ru.po, share/po/sl.po, share/po/hr.po, share/po/uk.po,
- share/po/ro.po, share/po/af.po, share/po/he.po, share/po/ms.po,
- share/po/el.po, share/po/wa.po, share/po/uz@Cyrl.po, share/po/ta.po,
- share/po/az.po, share/po/ja.po, share/po/de.po, share/po/lt.po,
- share/po/cy.po, share/po/ga.po, share/po/is.po, share/po/vi.po,
- share/po/pl.po, share/po/zh_TW.po, share/po/fr.po, share/po/sv.po,
- share/po/nl.po, share/po/ar.po, share/po/lv.po, share/po/sq.po,
- share/po/pt_BR.po, share/po/zh_CN.po, share/po/th.po, share/po/hu.po,
- share/po/es.po, share/po/eo.po, share/po/sk.po, share/po/be.po,
- share/po/ko.po, share/po/fa.po, share/po/cs.po, share/po/gl.po,
- share/po/sr@Latn.po, share/po/pt.po, share/po/ca.po, share/po/bg.po,
- share/po/it.po, share/po/DrakX.pot, share/po/fi.po, share/po/bs.po,
- share/po/eu.po: updated pot file
-
-2003/09/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: fix #5586 (netprofile package still need be
- fixed)
-
-2003/09/11 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * install_steps_gtk.pm: don't display a watch when slow things because due
- to the
- large number of gtkflush(), the ask_ok_cancel appears
- before its Gtk->main is called, hence clicking too fast
- will call Gtk->main_quit before Gtk->main, but the dialog
- doesn't disappear; then on the next click on ok/cancel,
- the call to another Gtk->main_quit will lead to two
- Gtk->main being exited, hence destroying the ok/cancel
- dialog but alors the main window (choose of individual
- packages)
-
- * ugtk2.pm: don't pack_end two times a button, this causes a Gtk Critical
- and we never know what can happen after that :/
-
-2003/09/11 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/test.pm, ugtk2.pm: use center_always for popped windows (if
- transient is not used), and force centering in Xconfig test
-
- * lang.pm: move configuring kdmrc to lang::write so that it is done in
- localedrake
- don't configure kde config files when they are not present
- (otherwise minimal install followed by urpmi kde gives a badly
- configured kde)
-
- * c/Makefile.PL: libXext seems to be needed, i don't know why...
-
- * install_steps.pm: move configuring kdmrc to lang::write so that it is
- done in localedrake
-
-2003/09/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * modules/interactive.pm: if some module has no parameter, instead of not
- displaying the config
- window, show that there's no parameters to configure
- translate one more string
-
- * standalone/harddrake2: fix infamous #4136
- rationale: our own SIG_CHLD handler intercept the child death after
- run_program's waitpid() got interrupted by the signal but before it
- get rescheduled by the kernel (at which stage the child it wait for
- does not exists anymore)
-
- * standalone/drakfont: fix #5571
-
- * share/po/fr.po: help making printerdrake icon bar be shorter (#5282
- again)
-
-2003/09/11 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: one fix
- typo fixes
-
-2003/09/11 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate: Add 5 LOCALES"zh_CN" miniChinput (#4408)
-
-2003/09/11 Florin Grad <florin at mandrakesoft.com>
-
- * network/shorewall.pm: add the network interface window as in the
- drakgw's case
-
- * standalone/drakgw: silly me, I forgot the debug messages
- some Cancel interface fix
-
-2003/09/11 François Pons <fpons at mandrakesoft.com>
-
- * bootloader.pm: protected restore entry to be only visible if restore
- option added during boot.
-
- * install2.pm: added restore option to allow restore entry to be created
- (refused by default)
-
- * any.pm: fixed to use meta_class desktop instead of virtual discovery
- (mapped to desktop).
-
- * Xconfig/resolution_and_depth.pm: fixed depth to 24 when using driver
- fglrx (it won't work unless 24 bits)
-
- * install_steps.pm: simplified oem theme generation, now use oem-theme.rpm
- wait for processes that need to be correctly finished before.
-
- * run_program.pm: added detach option to handle detached process running
- (for update-menus).
-
-2003/09/11 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * install_gtk.pm: inactivate antialias in VGA16 because it makes fonts
- look worse
-
- * mdk-stage1/disk.c: fix recovery behaviour thx to francois comments
-
- * any.pm: don't use images for language choice in vga16, it's too ugly
-
-2003/09/11 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/uz@Cyrl.po, share/po/uz.po, share/po/cy.po: updated Welsh and
- Uzbek files
-
- * share/po/lt.po, share/po/he.po, share/po/wa.po, share/po/ta.po,
- share/po/tg.po, share/po/ms.po, share/po/sl.po, share/po/eo.po: updated
- po files (country names strings merged from drakfw)
-
- * share/po/it.po: updated Italian file
- updated Italian file
-
-2003/09/11 Pixel <pixel at mandrakesoft.com>
-
- * lang.pm: move configuring kdmrc to lang::write so that it is done in
- localedrake
- don't configure kde config files when they are not present
- (otherwise minimal install followed by urpmi kde gives a badly
- configured kde)
-
- * Xconfig/test.pm, ugtk2.pm: use center_always for popped windows (if
- transient is not used), and force centering in Xconfig test
-
- * install_steps.pm: move configuring kdmrc to lang::write so that it is
- done in localedrake
-
- * c/Makefile.PL: libXext seems to be needed, i don't know why...
-
-2003/09/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/logdrake: always display the log domain names in the same
- order, that is in
- english (not l10n) alphabetic order
-
- * standalone/drakconnect: do not set hostname if there's a dynamic
- interface
-
- * standalone/drakperm: remove debugging assertion
- display "the current level is X" instead of "the current level is level
- X"
-
-2003/09/10 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: updated one string
-
-2003/09/10 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: 2 typo fixes
- Updated
-
-2003/09/10 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate, share/compssUsers.desktop: Update
-
-2003/09/10 Frederic Crozat <fcrozat at mandrakesoft.com>
-
- * share/rpmsrate: Don't install nautilus-gtkhtml by default
-
-2003/09/10 François Pons <fpons at mandrakesoft.com>
-
- * install2.pm: make sure mouse modules are loaded before using them
- (usefull for defcfg or recovery).
- save recovery file if disk installation.
- take recovery option into account.
-
- * mouse.pm: fixed the fix of fpons trick...
- fixed the fpons trick (which was false moreover)
- added load_modules to load mouse module according to configuration.
-
- * bootloader.pm: restore entry is a recovery entry.
- restore entry shouldn't have reference of vga=... in append, moved to
- vga.
-
- * network/adsl.pm: added sagem support for dhcp (as used by Free
- degroupped ;-))
-
- * standalone/XFdrake, install_steps_interactive.pm: added nplanel patch
- for ATI proprietary drivers.
-
- * Xconfig/card.pm: fixed perl_checker fixes.
- added nplanel patch for ATI proprietary drivers.
-
-2003/09/10 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * Xconfig/test.pm: clean
- we don't have .jpg loader in install, file needs to be in .png
- (mandrake_desk 9.2-8mdk)
-
- * rescue/tree/etc/issue, mdk-stage1/Makefile: 9.2
-
- * mdk-stage1/stage1.c, mdk-stage1/stage1.h, mdk-stage1/disk.h,
- mdk-stage1/automatic.h, mdk-stage1/tools.c, mdk-stage1/disk.c: recovery
-
-2003/09/10 nplanel
-
- * Xconfig/card.pm: fixup default fglrx config to be included in Device
- Section. thanks pixel
-
-2003/09/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/pl.po, share/po/et.po, share/po/pt_BR.po, share/po/nb.po,
- share/po/az.po, share/po/cs.po, share/po/zh_CN.po, share/po/hu.po:
- updated Azeri, Czech, Estonian, Hungarian, Brazilian and Chinese files
-
-2003/09/10 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: no more "dos" label in bootloader (it seems WinXP use the
- "DOS FAT16" for fat partitions)
-
-2003/09/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 9.2-10mdk
-
- * standalone/drakperm:
- - do not comply on filter change (system, user or system & user)
- - default to "system & user" by default
- - show customized rules after system ones since these are managed once
- system ones get applied
- - add new rules to end of list
-
- * network/netconnect.pm: follow std explanations policy
-
- * standalone/drakedm: follow std explanations policy
- add higher level explanations
-
-2003/09/09 Daouda Lo <daouda at mandrakesoft.com>
-
- * any.pm:
- - userdrake is in /usr/sbin/ (#5447)
-
-2003/09/09 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/netconnect.pm: profile is 'default' if no configuration file
- found
-
-2003/09/09 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/09/09 François Pons <fpons at mandrakesoft.com>
-
- * install_messages.pm: fixed reference to 9.1 errata, (now
- http://www.mandrakelinux.com/en/92errata.php3).
-
- * standalone/drakautoinst: try again if no floppy (or error during
- creation of floppy)
-
- * bootloader.pm: avoid lilo-graphic for ProSavageDDR card as this card
- seems to report bad window size.
-
-2003/09/09 keld
-
- * share/po/da.po: updates
- soft/GtkMdkWidgets/po/da.po soft/wizard_perl/po/da.po
- gi/perl-install/share/po/da.po
-
-2003/09/09 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/de.po: updated German file
- updated pot file
-
- * share/po/help-es.pot, share/po/pt_BR.po, share/po/nb.po, share/po/eu.po,
- share/po/ta.po, share/po/help-de.pot, share/po/it.po, share/po/ja.po,
- share/po/uz.po, share/po/tr.po, share/po/et.po, share/po/sl.po,
- share/po/fr.po, share/po/DrakX.pot, share/po/uk.po,
- share/po/help-it.pot, share/po/nl.po, share/po/af.po, share/po/cs.po,
- share/po/he.po, share/po/wa.po, share/po/bg.po, share/po/ru.po,
- share/po/be.po, share/po/ms.po, share/po/pl.po, share/po/vi.po,
- share/po/help-ru.pot, share/po/ga.po, share/po/cy.po, share/po/ca.po,
- share/po/eo.po, share/po/th.po, share/po/sr.po, share/po/sk.po,
- share/po/az.po, share/po/da.po, share/po/sq.po, share/po/ar.po,
- share/po/mt.po, share/po/el.po, share/po/uz@Cyrl.po, share/po/tg.po,
- share/po/hr.po, share/po/sv.po, share/po/pt.po, share/po/lt.po,
- share/po/gl.po, share/po/fa.po, share/po/es.po, share/po/zh_TW.po,
- share/po/fi.po, share/po/zh_CN.po, share/po/lv.po, share/po/ko.po,
- share/po/bs.po, share/po/sr@Latn.po, share/po/ro.po, share/po/id.po,
- share/po/is.po, share/po/hu.po: updated pot file
-
-2003/09/09 Pixel <pixel at mandrakesoft.com>
-
- * mouse.pm: write "MOVE YOUR WHEEL!" only for ps2 mice
-
- * ugtk2.pm: remove too verbose _XSetInputFocus log
-
- * modules.pm: increase sleep time after modprobing usb-uhci/usb-ohci
- (otherwise USB mouse may be undetected)
-
- * standalone/drakupdate_fstab: re-enable supermount
-
- * standalone/diskdrake, any.pm: ensure userdrake works when diskdrake
- --fileshare is embedded or run through kdesu
-
- * install_steps_interactive.pm: don't ask security level when upgrading
-
- * share/po/help-es.pot, share/po/help-fr.pot, share/po/help-de.pot,
- share/po/help-ru.pot, help.pm, share/po/help-it.pot: update from xml
- help
-
-2003/09/09 Till Kamppeter <till at mandrakesoft.com>
-
- * scanner.pm: Fixed functions for scanner database (ScannerDB) generation.
-
- * printer/printerdrake.pm: Fixed bug #5423: Some option settings were not
- be recognized or changed.
-
-2003/09/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/logdrake: fix #5448 (infinite entries)
-
- * standalone/drakxtv: install xawtv if needed
-
- * standalone/drakconnect: fix window size in when non embedded & non
- wizard
-
- * share/po/fr.po: fix drakboot layout
-
- * interactive/gtk.pm: fix #5040 (too small drakboot's window width)
-
- * standalone/drakboot: fix default size without draksplash
-
-2003/09/09 David Baudens <baudens at mandrakesoft.com>
-
- * share/po/ta.po, share/po/ko.po, share/po/fi.po, share/po/sq.po: Fix
- s/9.1/9.2
-
-2003/09/09 Daouda Lo <daouda at mandrakesoft.com>
-
- * standalone/printerdrake:
- - help call
- - reportbug via bugzilla
-
-2003/09/09 François Pons <fpons at mandrakesoft.com>
-
- * install_messages.pm: fixed reference to 9.1 errata, (now
- http://www.mandrakelinux.com/en/92errata.php3).
-
- * standalone/drakautoinst: try again if no floppy (or error during
- creation of floppy)
-
-2003/09/09 keld
-
- * share/po/da.po: updates
- soft/GtkMdkWidgets/po/da.po soft/wizard_perl/po/da.po
- gi/perl-install/share/po/da.po
-
-2003/09/09 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/pt.po, share/po/uk.po, share/po/eu.po: updated Basque,
- Portuguese and Ukrainian files
-
-2003/09/09 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm: don't ask security level when upgrading
-
- * mouse.pm: write "MOVE YOUR WHEEL!" only for ps2 mice
-
- * modules.pm: increase sleep time after modprobing usb-uhci/usb-ohci
- (otherwise USB mouse may be undetected)
-
- * share/po/help-it.pot, share/po/help-de.pot, share/po/help-fr.pot,
- help.pm, share/po/help-ru.pot, share/po/help-es.pot: update from xml
- help
-
-2003/09/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakfloppy: fix #5430: do not confuse users with debug
- messages
-
- * install_steps.pm: fix network install
-
- * standalone/drakboot: fix default size without draksplash
-
-2003/09/09 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated
-
-2003/09/09 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/pt.po, share/po/eu.po, share/po/uk.po: updated Basque,
- Portuguese and Ukrainian files
-
-2003/09/09 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * install_steps.pm: fix network install
-
- * standalone/drakfloppy: fix #5430: do not confuse users with debug
- messages
-
-2003/09/08 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: last updates
-
-2003/09/08 David Baudens <baudens at mandrakesoft.com>
-
- * share/po/sq.po, share/po/vi.po, share/po/gl.po, share/po/ro.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/ta.po, share/po/it.po,
- share/po/ru.po, share/po/de.po, share/po/zh_CN.po, share/po/ja.po,
- share/po/ms.po, share/po/ko.po, share/po/tr.po, share/po/lv.po,
- share/po/ca.po, share/po/ga.po, share/po/el.po, share/po/he.po,
- share/po/da.po, share/po/uz.po, share/po/af.po, share/po/nb.po,
- share/po/hr.po, share/po/be.po, share/po/uz@Cyrl.po, share/po/fi.po,
- share/po/es.po, share/po/id.po, share/po/et.po, share/po/eo.po,
- share/po/sl.po, share/po/pt_BR.po, share/po/bg.po, share/po/fr.po,
- share/po/mt.po, share/po/nl.po, share/po/uk.po, share/po/tg.po,
- share/po/lt.po, share/po/th.po, share/po/pl.po, share/po/hu.po,
- share/po/sr.po, share/po/sk.po, share/po/pt.po, share/po/fa.po,
- share/po/az.po, share/po/cs.po, share/po/bs.po, share/po/is.po,
- share/po/eu.po, share/po/zh_TW.po, share/po/sr@Latn.po, share/po/wa.po,
- share/po/cy.po, share/po/ar.po: s/9\.1/9\.2/g
-
- * share/advertising/06-development.pl, share/advertising/01-thanks.pl,
- share/advertising/04-configuration.pl: Update
-
-2003/09/08 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect:
- - do not call anymore network::netconnect::save_conf
- - good set_profiles($netcnx) call
- shrink
-
- * network/nfs.pm, network/isdn.pm, network/adsl.pm, network/network.pm:
- - fix/use explanations
- - fix #5307 (firmware)
-
- * network/netconnect.pm:
- - do not call anymore network::netconnect::save_conf
- - good set_profiles($netcnx) call
- - fix/use explanations
- - fix #5307 (firmware)
-
-2003/09/08 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fi.po, share/po/et.po, share/po/az.po, share/po/zh_CN.po:
- updated Azeri, Estonian, Finnish and Chinese files
-
- * share/po/hu.po, share/po/eu.po: updated Basque and Hungarian files
-
- * share/po/nb.po, share/po/cy.po: updated Welsh and Norwegian files
-
-2003/09/08 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm: don't warnAboutNaughtyServers when
- upgrading
-
- * standalone/diskdrake: remove obsolete code
- ~fix~ calling userdrake in "diskdrake --fileshare"
-
- * any.pm: perl_checker compliance
- ~fix~ calling userdrake in "diskdrake --fileshare"
-
- * standalone/XFdrake: Xdrakres is "XFdrake resolution" not simply
- "XFdrake"
-
- * Xconfig/resolution_and_depth.pm:
- - use OptionMenu's instead of Combo's (better looking and mcc doesn't
- like embedding combos)
- - cleanup
-
-2003/09/08 Till Kamppeter <till at mandrakesoft.com>
-
- * standalone/printerdrake: Fixed copyright notice.
-
-2003/09/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakconnect: fix current profile load in wizard mode
- increase drakconnect robustness regarding profiles managment
- - fix set_profiles() call on profiles menu user change
- - (set_profiles) consolidate netcnx->{PROFILE} setting where we call
- set_profile
-
- - (update_profiles) rely on netcnx->{PROFILE}
-
- - fix profiles list update when wizard exits
-
- * standalone/drakperm, standalone/draksec: add help buttons
-
- * network/netconnect.pm: save_conf() really is dead
-
- * drakxtools.spec: last 9.2-9mdk bits
- fix net_monitor not working as root
- 9.2-9mdk
-
- * ugtk.pm, my_gtk.pm: no more used (drakcronat just removed from distro)
- => less dependancies :-)
-
- * standalone/drakfont: fix #4964 (not being able to select directories)
-
-2003/09/08 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: last updates
-
-2003/09/08 Daouda Lo <daouda at mandrakesoft.com>
-
- * standalone/printerdrake:
- - support new help call
-
-2003/09/08 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect: shrink
-
- * network/network.pm, network/adsl.pm, network/isdn.pm,
- network/netconnect.pm, network/nfs.pm:
- - fix/use explanations
- - fix #5307 (firmware)
-
- * share/po/fr.po: s/Utiliserer une disquette/Utiliser une disquette/
-
-2003/09/08 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/09/08 François Pons <fpons at mandrakesoft.com>
-
- * install2.pm: set xcon=6 when loading i810fb module (to have console 7
- with X).
-
-2003/09/08 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/uz.po, share/po/ru.po, share/po/lv.po, share/po/lt.po,
- share/po/ga.po, share/po/sr@Latn.po, share/po/ar.po, share/po/hu.po,
- share/po/bg.po, share/po/zh_TW.po, share/po/sl.po, share/po/mt.po,
- share/po/gl.po, share/po/DrakX.pot, share/po/cy.po, share/po/sv.po,
- share/po/uk.po, share/po/tg.po, share/po/id.po, share/po/hr.po,
- share/po/ms.po, share/po/nl.po, share/po/de.po, share/po/uz@Cyrl.po,
- share/po/is.po, share/po/fr.po, share/po/ja.po, share/po/sk.po,
- share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/it.po,
- share/po/tr.po, share/po/sr.po, share/po/nb.po, share/po/be.po,
- share/po/fa.po, share/po/eu.po, share/po/da.po, share/po/ko.po,
- share/po/af.po, share/po/es.po, share/po/ro.po, share/po/pl.po,
- share/po/vi.po, share/po/bs.po, share/po/wa.po, share/po/sq.po,
- share/po/he.po, share/po/ta.po, share/po/pt.po, share/po/ca.po,
- share/po/th.po, share/po/pt_BR.po: updated pot file
-
- * share/po/az.po, share/po/zh_CN.po, share/po/et.po, share/po/fi.po:
- updated Azeri, Estonian, Finnish and Chinese files
- updated pot file
-
-2003/09/08 Pixel <pixel at mandrakesoft.com>
-
- * tools/aewm-drakx/aewm-drakx.c, install_steps_gtk.pm,
- tools/aewm-drakx/client.c, tools/Makefile, tools/aewm-drakx/aewm.h,
- tools/aewm-drakx/README, tools/aewm-drakx/misc.c, Makefile.config,
- ugtk2.pm, tools/aewm-drakx/Makefile, tools/aewm-drakx/events.c: fixing
- keyboard focus during install:
- - removed aewm-drakx which doesn't work nicely
- - fix @interactive::objects handling
- (don't push non pop_it windows, ensure destroyed windows are removed)
- - ensure XSetInputFocus is called on $::WizardWindow
-
- * Xconfig/resolution_and_depth.pm:
- - use OptionMenu's instead of Combo's (better looking and mcc doesn't
- like embedding combos)
- - cleanup
-
- * any.pm: ~fix~ calling userdrake in "diskdrake --fileshare"
-
- * standalone/XFdrake: Xdrakres is "XFdrake resolution" not simply
- "XFdrake"
-
- * fsedit.pm: fix check_mntpoint to get back error "There is already a
- partition with mount point %s\n"
-
- * install_steps_interactive.pm: don't warnAboutNaughtyServers when
- upgrading
-
- * standalone/diskdrake: remove obsolete code
- ~fix~ calling userdrake in "diskdrake --fileshare"
- use formatError to have the error message instead of SCALAR(0x....)
-
-2003/09/08 Till Kamppeter <till at mandrakesoft.com>
-
- * standalone/printerdrake: Fixed copyright notice.
- - Use a field in the $printer data structure and no a global variable
- for the expert mode.
- - Fixed bug of database not being re-read when switching between
- normal and expert mode with the new GTK2 main window.
-
- * standalone/scannerdrake: Show an error message if saned could not be
- installed.
-
- * printer/printerdrake.pm, printer/main.pm, printer/cups.pm:
- - Use a field in the $printer data structure and no a global variable
- for the expert mode.
- - Fixed bug of database not being re-read when switching between
- normal and expert mode with the new GTK2 main window.
-
-2003/09/08 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 9.2-9mdk
-
- * standalone/drakfont: fix #4964 (not being able to select directories)
-
- * ugtk.pm, my_gtk.pm: no more used (drakcronat just removed from distro)
- => less dependancies :-)
-
-2003/09/07 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: typo fix
-
-2003/09/07 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect, network/netconnect.pm:
- - $netcnx->{PROFILE} is current profile name (now scalar)
- - fix non working profiles loading/saving
- - perl_checker
-
-2003/09/07 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm: Fixed first-time dialog.
-
-2003/09/07 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 9.2-8mdk
-
- * share/po/br.po: update
-
-2003/09/06 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Update
-
-2003/09/06 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/hu.po, share/po/vi.po, share/po/bs.po, share/po/he.po,
- share/po/cy.po: updated Bosnian, Welsh, Hebrew, Hungarian and Vietnamese
- files
-
-2003/09/05 David Baudens <baudens at mandrakesoft.com>
-
- * pixmaps/monitor-640.png, pixmaps/monitor-2048.png,
- pixmaps/monitor-1920.png, pixmaps/monitor-1600.png,
- pixmaps/monitor-800.png, pixmaps/monitor-1280.png,
- pixmaps/monitor-1400.png, pixmaps/monitor.png, pixmaps/monitor-1152.png,
- pixmaps/monitor-1024.png: Update
-
-2003/09/05 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/network.pm: workaround messed up ppp0 configration
-
-2003/09/05 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/09/05 Florin Grad <florin at mandrakesoft.com>
-
- * network/network.pm, network/netconnect.pm: small fixes for drakgw and
- drakfirewall
-
-2003/09/05 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * lang.pm: add support for "variants" as explained by pablo (in uz@Cyrl
- the @Cyrl is a variant)
-
- * keyboard.pm: /me sux
- apply patch asked by pablo so that users are not confused during
- install that their chosen grp_toggle is not usable. yes it's too
- late for additional translations but it's not very important that
- this is untranslated, it's better to have it in.
-
-2003/09/05 keld
-
- * share/po/da.po: updates
- soft/control-center/po/da.po gi/perl-install/share/po/da.po
-
-2003/09/05 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/pt.po: updated Portuguese file
-
- * lang.pm: increazed size of Arabic font in KDE
-
- * share/po/uz.po, share/po/ru.po, share/po/zh_CN.po, share/po/uz@Cyrl.po,
- share/po/sk.po, share/po/cs.po: updated Czech, Slovak, Uzbek and Chinese
- files
-
- * share/po/hu.po, share/po/nb.po, share/po/fa.po: updated pot files
-
-2003/09/05 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Change the strings again for Pablo
-
-2003/09/05 Till Kamppeter <till at mandrakesoft.com>
-
- * standalone/printerdrake: Reverted button texts to not break existing
- translations, added hints
- for translators to make the button texts short.
- Shorter button texts, so that translations do not let the buttons go
- out of the window.
-
-2003/09/05 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: update fr translation
- help making printerdrake icon bar be shorter (#5282)
-
-2003/09/04 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: passed spellchecking, fixed some typos
- last updates
-
-2003/09/04 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Fully updated
-
-2003/09/04 David Baudens <baudens at mandrakesoft.com>
-
- * share/compssUsers.desktop: Update
-
-2003/09/04 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/modem.pm: always ask for modem device even if not detected,
- unless user has winmodem
- fix #5242, don't go back to main menu if winmodem isn't found
-
-2003/09/04 François Pons <fpons at mandrakesoft.com>
-
- * Xconfig/resolution_and_depth.pm: XF 3.3 should use depth 16 if
- use_UTAH_GLX, this has been glitched in XF4 mode
- (so never available).
-
-2003/09/04 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po, share/po/sq.po: updated Estonian and Albanian files
- updated pot file
-
- * share/po/uz.po, share/po/ru.po, share/po/lv.po, share/po/lt.po,
- share/po/az.po, share/po/zh_CN.po, share/po/ga.po, share/po/sr@Latn.po,
- share/po/ar.po, share/po/hu.po, share/po/bg.po, share/po/zh_TW.po,
- share/po/sl.po, share/po/mt.po, share/po/gl.po, share/po/DrakX.pot,
- share/po/cy.po, share/po/sv.po, share/po/uk.po, share/po/tg.po,
- share/po/id.po, share/po/hr.po, share/po/ms.po, share/po/nl.po,
- share/po/de.po, share/po/uz@Cyrl.po, share/po/is.po, share/po/fr.po,
- share/po/ja.po, share/po/sk.po, share/po/eo.po, share/po/el.po,
- share/po/cs.po, share/po/tr.po, share/po/sr.po, share/po/be.po,
- share/po/fa.po, share/po/da.po, share/po/ko.po, share/po/af.po,
- share/po/es.po, share/po/ro.po, share/po/pl.po, share/po/vi.po,
- share/po/bs.po, share/po/wa.po, share/po/he.po, share/po/ta.po,
- share/po/ca.po, share/po/fi.po, share/po/th.po, share/po/pt_BR.po:
- updated pot file
-
- * share/po/eu.po: updated pot file
- updated Basque file
-
- * share/po/nb.po: updated Norwegian file
- updated pot file
-
- * share/po/it.po: updated pot file
- updated Italian file
-
- * share/po/pt.po: updated pot file
- updated Portuguese file
-
-2003/09/04 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/icons/drakbackup.540x57.png,
- standalone/icons/drakTS.620x57.png: No longer needed with reworked
- banners.
-
- * standalone/drakTermServ: Add application title in banner.
-
- * standalone/drakbackup: CDROM -> CDR
-
-2003/09/04 Till Kamppeter <till at mandrakesoft.com>
-
- * standalone/scannerdrake: Abort scannerdrake when SANE packages cannot be
- installed.
-
-2003/09/04 tpittich
-
- * share/po/sk.po: updated slovak translation
-
-2003/09/04 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec:
- - printerdrake needs foomatic-db-engine
- - printerdrake is moved to drakxtools since it does not anymore run on
- the console
- remove doble entry
- 9.2-7mdk (arghh, 9.2-6mdk was really uploaded)
- 9.2-6mdk last bits
- fix buildrequires for 64bit ports
-
-2003/09/03 David Baudens <baudens at mandrakesoft.com>
-
- * share/rpmsrate: Update
- Update
- Update
-
-2003/09/03 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/tr.po: updated Turkish file
-
- * share/po/nl.po, share/po/nb.po: updated Norwegian and Dutch files
-
-2003/09/03 Pixel <pixel at mandrakesoft.com>
-
- * pixmaps/mouse_3b+_middle.png, pixmaps/mouse_2b.png, mouse.pm,
- pixmaps/mouse_right.xpm, pixmaps/mouse_3b.xpm,
- pixmaps/mouse_2b_left.png, pixmaps/mouse_3b.png,
- pixmaps/mouse_3b_middle.png, pixmaps/mouse_middle.xpm,
- pixmaps/mouse_3b_left.png, pixmaps/arrow_up.png,
- pixmaps/mouse_3b_mini.xpm, pixmaps/arrow_down.xpm,
- pixmaps/mouse_2b_right.png, pixmaps/mouse_3b+_mini.xpm,
- pixmaps/mouse_3b+.png, pixmaps/mouse_3b_right.png,
- pixmaps/mouse_3b+.xpm, pixmaps/arrow_down.png, pixmaps/mouse_left.xpm,
- pixmaps/arrow_up.xpm:
- - much cleanup in test_mouse()
- - new images for mouse test (thanks to Jerome Villette)
-
- * install_steps_newt.pm, install_steps_interactive.pm, install_steps.pm,
- install_steps_stdio.pm, install_steps_auto_install.pm:
- - move call to ->charsetChanged from install_steps_interactive to
- install_steps
- so that we can use it in install_steps_auto_install_non_interactive
- - don't overload ->selectLanguage to call lang::load_console_font(),
- overload ->charsetChanged instead
-
- * diskdrake/hd_gtk.pm, diskdrake/interactive.pm: require resize_fat::main
- when needed (fix bug #5204)
-
-2003/09/03 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Default to all users for wizard->Users (as root).
- Only allow 1 media select from wizard.
- Limit possible user list to self for nonroot users.
-
-2003/09/03 Daouda Lo <daouda at mandrakesoft.com>
-
- * standalone/drakhelp:
- - change to handle documentaion system other than drakxtools one (for
- instance MandrakeGalaxy)
-
-2003/09/03 François Pons <fpons at mandrakesoft.com>
-
- * standalone/drakautoinst: fixed missing import of ugtk2
-
- * mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: created simple image
- from 9.2 install isolinux pictures for floppy.
-
-2003/09/03 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * lang.pm: use command line parameter to specify traditional or simplified
- style
- for Chinput
-
-2003/09/03 Pixel <pixel at mandrakesoft.com>
-
- * pixmaps/mouse_3b_middle.png, pixmaps/mouse_3b_left.png,
- pixmaps/mouse_3b.xpm, pixmaps/mouse_3b_mini.xpm, pixmaps/mouse_left.xpm,
- pixmaps/mouse_3b+.png, pixmaps/mouse_3b+_middle.png,
- pixmaps/mouse_middle.xpm, pixmaps/mouse_3b.png,
- pixmaps/mouse_2b_right.png, pixmaps/arrow_down.xpm,
- pixmaps/arrow_up.xpm, pixmaps/mouse_2b_left.png,
- pixmaps/mouse_right.xpm, pixmaps/mouse_3b+_mini.xpm,
- pixmaps/mouse_3b+.xpm, pixmaps/arrow_up.png, pixmaps/mouse_2b.png,
- pixmaps/arrow_down.png, pixmaps/mouse_3b_right.png, mouse.pm:
- - much cleanup in test_mouse()
- - new images for mouse test (thanks to Jerome Villette)
-
- * install_steps_interactive.pm, install_steps_stdio.pm,
- install_steps_auto_install.pm, install_steps_newt.pm, install_steps.pm:
- - move call to ->charsetChanged from install_steps_interactive to
- install_steps
- so that we can use it in install_steps_auto_install_non_interactive
- - don't overload ->selectLanguage to call lang::load_console_font(),
- overload ->charsetChanged instead
-
- * diskdrake/hd_gtk.pm, diskdrake/interactive.pm: require resize_fat::main
- when needed (fix bug #5204)
-
-2003/09/03 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Last untranslated string. Rework banner with
- title ala rpmdrake.
- Fix some untranslated strings - Arpad Biro
-
-2003/09/02 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: fixed some errors in license message
-
-2003/09/02 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/09/02 François Pons <fpons at mandrakesoft.com>
-
- * install_steps_gtk.pm: fixed duplicate entries in src architecture.
-
- * pkgs.pm: fixed XFree86-75dpi-fonts not available (seems like a problem
- with length of
- rpmsrate computation, strange as it fails now and not before).
-
-2003/09/02 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/eu.po: updated Basque and Farsi files
- updated po files
-
- * share/po/fa.po: updated Basque and Farsi files
-
- * share/po/hu.po: updated po files
-
- * share/fonts.tar.bz2: updated 12x13 bitmap font (replaced hebrew glyphs
- with a copy from
- nachlieli font, under gpl)
-
- * share/po/fi.po, share/po/pt.po: Updated Finnish and Portuguese files
-
-2003/09/02 Pixel <pixel at mandrakesoft.com>
-
- * lang.pm: do not disable arabic completly (tis very ugly to do this,
- better remove the
- arabic choice!)
-
- * fs.pm: add description for option "umask=0" (bug #4310)
-
- * share/po/Makefile: do not translate in arabic during install since
- there's no font available
-
-2003/09/02 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm: Fixed major number of libsane-hpoj.
-
- * standalone/printerdrake: Prevent main window crash when queue list gets
- empty by deleting all
- print queues.
-
-2003/09/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: update french translation
-
- * share/po/br.po: update
-
-2003/09/01 gbeauchesne
-
- * drakxtools.spec: Fix lsnsetdrake on AMD64
-
-2003/09/01 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * ugtk2.pm: _ask_file: don't forget to overwrite $o->{window} as well or
- else
- it will be ->show'ed as a blank window (#5083)
-
-2003/09/01 keld
-
- * share/po/da.po: Update
- soft/urpmi/po/da.po gi/perl-install/share/po/da.po
-
-2003/09/01 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/zh_CN.po, share/po/ru.po, share/po/de.po, share/po/vi.po,
- share/po/sk.po, share/po/sq.po, share/po/az.po, share/po/da.po,
- share/po/uk.po: updated Azeri, Albanian, Ucrainian, Vietnamese and
- Chinese files
-
- * share/po/pt.po: updated Portuguese file
-
- * share/po/uz@Cyrl.po, share/po/uz.po, share/po/cs.po: updated Czech and
- Uzbek files
-
- * share/po/bs.po, share/po/nb.po: updated Bosnian and Nrowegian files
-
- * share/po/he.po: updated Hebrew file
-
-2003/09/01 Pixel <pixel at mandrakesoft.com>
-
- * pkgs.pm: oops, really kill gconfd silently
- don't warn when killing /usr/lib/gconfd-2 when runs in background
-
- * tools/ntp_servers.pl: update to new timezone.pm and adapt to new web
- page listing ntp servers
-
- * timezone.pm: update stratum 2 ntp servers
-
- * install_steps.pm, any.pm: chksession gives GNOME for gnome, not Gnome
-
-2003/09/01 siegel
-
- * share/po/de.po: updates german translation
-
-2003/09/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/printerdrake: do not explicitely reject embedding there, it
- has to be done in mcc.
- else, mcc wait forever for rpmdrake to embed in, then display an error
- dialog explaining that rpmdrake has failled (since it exited before
- displaying anything in mcc...)
-
-2003/08/31 Pixel <pixel at mandrakesoft.com>
-
- * fs.pm: don't check ext3 filesystems nor mount them as ext2 during
- upgrade (bug #5067)
-
-2003/08/31 tpittich
-
- * share/po/sk.po: updated slovak translation
-
-2003/08/31 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakedm: in non expert mode, only display the list of
- *installed* display managers.
- (interface team request)
- if no dm is installed, then switch back to expert mode behaviour and
- display
- all dm and install them if needed.
- explanations now work again thanks to pixel, no need to duplicate them
-
- * share/po/fr.po: fix draksec french translation
-
- * standalone/drakfloppy: fix dialogs height: replace"small" option by
- "height" & "weight" ones
- rationale: make thecommon path be the easiest one to set up (and make
- the
- uncommon path be the hardest one to follow)
-
- * standalone/harddrake2: harddrake2 help dialog: use the new scrolled
- dialog API for scrolled labels
- fix dialogs height: replace"small" option by "height" & "weight" ones
- rationale: make thecommon path be the easiest one to set up (and make
- the
- uncommon path be the hardest one to follow)
-
- * drakxtools.spec: 9.2-6mdk
- conflicts with older drakxtools doc due to new ctxhelp (drakhelp being
- broken
- until ctxhelp module is splited out as perl-MDK-Doc)
- requires perl-Gtk2 >= 0.95-6mdk for working XSetInputFocus()
- since we renewed network profiles feature, we shall require netprofile
- for
- drakconnect
-
- * ugtk2.pm (create_dialog) do not scroll labels by default
- fix dialogs height: replace"small" option by "height" & "weight" ones
- rationale: make thecommon path be the easiest one to set up (and make
- the
- uncommon path be the hardest one to follow)
-
- * standalone/drakconnect: fix profiles list refreshing
- fix dialogs height: replace"small" option by "height" & "weight" ones
- rationale: make thecommon path be the easiest one to set up (and make
- the
- uncommon path be the hardest one to follow)
-
-2003/08/30 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: current updates
-
-2003/08/30 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated
-
-2003/08/30 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po, share/po/pt.po: updated Estonian and Portuguese files
-
- * share/po/hu.po: updated Hungarian file
-
-2003/08/30 Pixel <pixel at mandrakesoft.com>
-
- * Makefile: since XFree86-VGA16-3.3.6-29mdk is bad, insist on having
- XFree86-VGA16 28mdk instead
-
-2003/08/30 Till Kamppeter <till at mandrakesoft.com>
-
- * standalone/icons/wiz_printerdrake.png: Updated head image for
- add-printer wizard to have the new printerdrake icon.
-
- * pixmaps/printer_del.png, pixmaps/printer_conf.png,
- pixmaps/slpash-drakeprint-2.png, pixmaps/about.png,
- pixmaps/unselected.png, pixmaps/cups_config.png,
- pixmaps/printer_add.png, pixmaps/selected.png, pixmaps/refresh.png,
- pixmaps/redhat-config-users.png, pixmaps/printerdrake.png,
- pixmaps/printer_default.png, pixmaps/help.png: Re-uploaded binary files
- added with "cvs add -kb ...".
- Binary files uploaded without "cvs add -kb ...", removed for re-upload.
-
-2003/08/29 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: set {perImageAppend} to the append= line from the default
- entry or the first image= entry
-
- * ugtk2.pm: set_minmax_width was commented which caused the individual
- package selection
- tree to be to large (fix bug #4548 #4865)
-
-2003/08/30 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated
-
-2003/08/30 Pixel <pixel at mandrakesoft.com>
-
- * Makefile: since XFree86-VGA16-3.3.6-29mdk is bad, insist on having
- XFree86-VGA16 28mdk instead
-
-2003/08/30 Till Kamppeter <till at mandrakesoft.com>
-
- * standalone/icons/wiz_printerdrake.png: Updated head image for
- add-printer wizard to have the new printerdrake icon.
-
-2003/08/29 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/adsl.pm: remove system("cp..."); (I suck so much...)
-
-2003/08/29 François Pons <fpons at mandrakesoft.com>
-
- * pkgs.pm: try to make sure additional CD are taken into account if low
- memory available
- for configuring urpmi.
-
-2003/08/29 gbeauchesne
-
- * modules.pm: no imm/ppa on ia64
-
-2003/08/29 keld
-
- * share/po/da.po: Updates
- soft/menu-messages/da.po soft/GtkMdkWidgets/po/da.po
- soft/urpmi/po/da.po soft/wizard_perl/po/da.po
- gi/perl-install/share/po/da.po
-
-2003/08/29 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ko.po, share/po/sl.po, share/po/vi.po, share/po/mt.po,
- share/po/af.po, share/po/tr.po, share/po/sk.po, share/po/ja.po,
- share/po/hr.po, share/po/ga.po, share/po/nl.po, share/po/nb.po,
- share/po/he.po, share/po/az.po, share/po/fa.po, share/po/cy.po,
- share/po/et.po, share/po/lv.po, share/po/uz@Cyrl.po, share/po/lt.po,
- share/po/sv.po, share/po/zh_TW.po, share/po/eu.po, share/po/wa.po,
- share/po/bs.po, share/po/sr@Latn.po, share/po/de.po, share/po/is.po,
- share/po/ro.po, share/po/ru.po, share/po/bg.po, share/po/pl.po,
- share/po/ms.po, share/po/eo.po, share/po/tg.po, share/po/ta.po,
- share/po/id.po, share/po/sq.po, share/po/da.po, share/po/ca.po,
- share/po/gl.po, share/po/uz.po, share/po/el.po, share/po/fi.po,
- share/po/it.po, share/po/th.po, share/po/ar.po, share/po/es.po,
- share/po/be.po, share/po/DrakX.pot, share/po/fr.po, share/po/sr.po,
- share/po/pt.po, share/po/pt_BR.po, share/po/hu.po: updated pot file
-
- * share/po/uk.po, share/po/cs.po, share/po/zh_CN.po: updated pot file
- updated Czech, Ukrainian and Chinese files
-
-2003/08/29 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: set {perImageAppend} to the append= line from the default
- entry or the first image= entry
-
- * ugtk2.pm: set_minmax_width was commented which caused the individual
- package selection
- tree to be to large (fix bug #4548 #4865)
-
-2003/08/29 Till Kamppeter <till at mandrakesoft.com>
-
- * pixmaps/unselected.png, pixmaps/printer_conf.png,
- pixmaps/cups_config.png, pixmaps/printer_del.png,
- pixmaps/printer_add.png, pixmaps/refresh.png, pixmaps/printerdrake.png,
- pixmaps/selected.png, standalone/printerdrake,
- pixmaps/printer_default.png, pixmaps/redhat-config-users.png,
- pixmaps/help.png, pixmaps/slpash-drakeprint-2.png, pixmaps/about.png:
- New GTK2-based main window for printerdrake (only after installation).
-
- * printer/printerdrake.pm: Do not show hidden options in the options
- dialog.
- Enabled Wizards in embedded mode. They work there now!
-
-2003/08/29 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: restore profiles feature through new netprofile
- package
-
- * ctxhelp.pm: provided by mandrake_doc-drakxtools-LL
-
- * drakxtools.spec: 9.2-5mdk
-
- * standalone/drakconnect: restore profiles feature
- fix title when not embedded (print right number of network interfaces
- instead of displaying a big random number)
-
- * share/po/fr.po: translation just means translation, not gratuitously
- speaking about
- the whole universe
-
-2003/08/29 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: major cleaning
-
-2003/08/28 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Partially updated
- Updated
-
-2003/08/28 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/08/28 Frederic Lepied <flepied at mandrakesoft.com>
-
- * share/rpmsrate: removed drakprofile
-
- * share/compssUsers, share/compssUsers.desktop: select Documentation for
- all classes
-
-2003/08/28 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nb.po: updated Norwegian file
-
-2003/08/28 Pixel <pixel at mandrakesoft.com>
-
- * install_steps.pm: don't install autologin if using KDE or Gnome desktop
- (not needed nor used)
-
- * any.pm:
- - configure /etc/sysconfig/autologin in case of xdm, but remove it if
- kde/gnome
- - create any::sessions()
- if there is only one users and meta_class is discovery, choose autologin
- without asking
-
-2003/08/28 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm: Moved some stuff from mainwindow_interactive()
- to main() and init() as
- it has nothing to do with the main window.
-
-2003/08/28 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakconnect: fix dialogs heigh
-
- * ugtk2.pm (create_dialog) enable to pass an already created Gtk2::Label
-
-2003/08/28 Daouda Lo <daouda at mandrakesoft.com>
-
- * ctxhelp.pm:
- - put ctxhelp modules to prevent broken drakx build
-
-2003/08/28 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/adsl.pm: fix #4372
-
-2003/08/28 Frederic Lepied <flepied at mandrakesoft.com>
-
- * share/compssUsers.desktop, share/compssUsers: select Documentation for
- all classes
-
- * share/rpmsrate: removed drakprofile
- removed linuxconf and gnome-network
-
-2003/08/28 François Pons <fpons at mandrakesoft.com>
-
- * share/compssUsers: make selected=all by default (so that RC1 (in
- meta_class=download will see them)
-
-2003/08/28 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * detect_devices.pm: detect a laptop if cpu name contains "mobile" as many
- recent laptops are in that case (in case other means would fail)
-
-2003/08/28 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/uz.po, share/po/uz@Cyrl.po: updated Uzbek files
-
- * share/po/fi.po: updated Finnish file
-
- * share/po/et.po: updated Estonian file
-
-2003/08/28 Pixel <pixel at mandrakesoft.com>
-
- * standalone.pm: fix MDK::Common::* explainations
-
- * install_steps.pm: don't install autologin if using KDE or Gnome desktop
- (not needed nor used)
-
- * any.pm:
- - configure /etc/sysconfig/autologin in case of xdm, but remove it if
- kde/gnome
- - create any::sessions()
- if there is only one users and meta_class is discovery, choose autologin
- without asking
-
-2003/08/28 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone.pm (output) remove buggy warn
-
- * install_gtk.pm: fix direction setting for bidi (need perl-Gtk2-0.95-5mdk
- though)
-
- * ugtk2.pm (create_dialog) enable to pass an already created Gtk2::Label
-
-2003/08/27 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/hu.po: updated Hungarian file
-
- * share/po/he.po: updated Hebrew file
-
-2003/08/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * any.pm, printer/cups.pm: fix pot regeneration at package build time
-
- * drakxtools.spec: 9.2-4mdk
-
-2003/08/27 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: updated
-
-2003/08/27 Daouda Lo <daouda at mandrakesoft.com>
-
- * standalone/diskdrake:
- - new drakhelp call schema
-
- * standalone/drakhelp:
- - perl-checker
- - New drakhelp to increase accuracy in help system
- - contextual help
-
- * standalone/drakconnect, standalone/harddrake2, standalone/drakbackup:
- - new drakhelp args
-
- * standalone/drakbug:
- - help connects to qa.mandrakesoft.com
-
-2003/08/27 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakboot: typo fix
-
- * network/adsl.pm: fix firmware name (shame on me)
- fix #4363 (titi's so beautiful)
-
-2003/08/27 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/08/27 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * install_interactive.pm: scandisk is not enough! you can destroy your
- windows XP if you
- don't use chkdsk and then ntfsresize is used on a buggy partition
- (drakx should detect it via ntfsresize though), running chkdsk is
- *mandatory*
-
-2003/08/27 nplanel
-
- * any.pm: Now acpi=ht to prevent HT detection only
-
- * install_steps.pm: fixup last hack
- Now acpi=ht to prevent HT detection only
-
-2003/08/27 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/cs.po: updated Czech file
- updated pot file
-
- * share/po/nl.po: updated po file
- updated pot file
-
- * share/po/he.po: updated Hebrew file
- updated pot file
-
- * share/po/sr@Latn.po, share/po/sk.po, share/po/eo.po, share/po/bg.po,
- share/po/zh_TW.po, share/po/sv.po, share/po/sr.po, share/po/ta.po,
- share/po/sl.po, share/po/lt.po, share/po/it.po, share/po/es.po,
- share/po/el.po, share/po/pt_BR.po, share/po/eu.po, share/po/ca.po,
- share/po/ru.po, share/po/pl.po, share/po/id.po, share/po/mt.po,
- share/po/da.po, share/po/lv.po, share/po/ga.po, share/po/be.po,
- share/po/uz@Cyrl.po, share/po/zh_CN.po, share/po/ja.po, share/po/ms.po,
- share/po/is.po, share/po/ko.po, share/po/ar.po, share/po/af.po,
- share/po/fr.po, share/po/de.po, share/po/fi.po, share/po/et.po,
- share/po/gl.po, share/po/tr.po, share/po/bs.po, share/po/tg.po,
- share/po/uz.po, share/po/hr.po, share/po/ro.po, share/po/wa.po,
- share/po/cy.po, share/po/th.po, share/po/vi.po, share/po/DrakX.pot,
- share/po/az.po: updated pot file
-
- * share/po/nb.po: updated Norwegian file
- updated pot file
- updated Norwegian file
-
- * share/po/hu.po: updated Hungarian file
- updated pot file
-
- * share/po/uk.po, share/po/fa.po, share/po/sq.po, share/po/pt.po: updated
- pot file
- updated Farsi, Portuguese, Albanian and Ukrainian files
-
-2003/08/27 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm: Determine default printer already when reading in the
- queue data,
- this is much faster than running "foomatic-configure" a second time.
-
- * printer/cups.pm: Added lpstat_lpv() function to list remotely defined
- printers with
- description and location.
-
-2003/08/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: let draconnect banner fit in french
-
- * standalone/drakconnect: rename vbox2 as param_vbox
- remove useless bbox8 (due to use of std dialog button box)
- get rid of useless/badly named bbox0
- rename combo1 as profile_combo
- - fix hostname setting
- - set hostname at the same time we apply dns changes, that is when one
- ask to apply changes
-
- * drakxtools.spec: 9.2-4mdk
-
- * any.pm, printer/cups.pm: fix pot regeneration at package build time
-
- * harddrake/v4l.pm: resync with current bttv card and tuner lists
-
-2003/08/26 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: current update
-
-2003/08/26 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakfont: fix buttons sensitive behavior
-
-2003/08/26 François Pons <fpons at mandrakesoft.com>
-
- * install2.pm: alias meta_class=discovery with meta_class=desktop
-
- * share/compssUsers: added [selected=default] for all section which needed
- to be selected
- (approximative map of existing packages).
-
- * share/compssUsers.desktop: added [selected=desktop] when needed (same as
- default selection (PowerPack) but
- Gnome is removed).
-
- * install_steps_interactive.pm: drop security level selection for desktop
- user.
- do not ask user for group selection if desktop meta class is used.
-
- * install_any.pm: added default compssUsers group selection from
- compssUser file directly (use
- [selected=...] where ... is a list of comma separated meta_class (or
- default for
- no meta_class or all for all meta_class).
- fixed all radeon card are using 3D for 3D package group.
-
- * share/compssUsers.server: added [selected=server] for groups to be
- selected by default.
-
- * pkgs.pm: get selected list from compssUsers for readCompssUsers.
-
-2003/08/26 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/hu.po, share/po/et.po: updated Estonian, Finnish, Hungarian,
- Norwegian and Swedish files
- updated pot file
- updated Estonian, Hungarian and Ukrainian files
-
- * share/po/uk.po: updated pot file
- updated Estonian, Hungarian and Ukrainian files
-
- * share/po/sv.po, share/po/nb.po, share/po/fi.po: updated Estonian,
- Finnish, Hungarian, Norwegian and Swedish files
- updated pot file
-
- * share/po/pt.po: updated Portuguese file
- updated pot file
-
- * share/po/sr@Latn.po, share/po/sk.po, share/po/eo.po, share/po/bg.po,
- share/po/zh_TW.po, share/po/sr.po, share/po/ta.po, share/po/sl.po,
- share/po/lt.po, share/po/it.po, share/po/es.po, share/po/el.po,
- share/po/pt_BR.po, share/po/he.po, share/po/eu.po, share/po/ca.po,
- share/po/ru.po, share/po/pl.po, share/po/id.po, share/po/mt.po,
- share/po/da.po, share/po/lv.po, share/po/ga.po, share/po/be.po,
- share/po/uz@Cyrl.po, share/po/cs.po, share/po/fa.po, share/po/zh_CN.po,
- share/po/ja.po, share/po/ms.po, share/po/is.po, share/po/ko.po,
- share/po/ar.po, share/po/af.po, share/po/nl.po, share/po/fr.po,
- share/po/de.po, share/po/sq.po, share/po/gl.po, share/po/tr.po,
- share/po/bs.po, share/po/tg.po, share/po/uz.po, share/po/hr.po,
- share/po/ro.po, share/po/wa.po, share/po/cy.po, share/po/th.po,
- share/po/vi.po, share/po/DrakX.pot, share/po/az.po: updated pot file
-
- * lang.pm: updated list of available kde-i18n-xx packages
-
- * share/fonts.tar.bz2: updated Nimbus Sans font with more cyrillic glyphs
-
-2003/08/26 Pixel <pixel at mandrakesoft.com>
-
- * any.pm: install "autofs" pkg when using ldap (thanks to Buchan Milne)
-
- * share/po/i18n_compssUsers: adapt to new flag [selected=...]
-
-2003/08/26 Till Kamppeter <till at mandrakesoft.com>
-
- * pixmaps/printer-mdk.png: Updated icon for printerdrake's dialog windows.
-
-2003/08/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 9.2-3mdk
-
- * standalone/drakconnect: hide profile in "internet config" dialog if
- profiles are disabled
- fix "Internet Connection Configuration" dialog does not show up its
- contents
- rename --gui option as --skip-wizard option on interface team request
- only write conf & install packages on exit (Ok press) if something
- really has been altered so that we do not write the config twice if
- the user already pressed the "apply" button
- - "Configure hostname..." button: offer to configure DNS too
- - (configure_hostname) kill it since it only duplicate code from
- network/*pm
- still more dialogs cleanups
- add --gui in order to start in "mcc" state (aka not in wizard mode)
- more dialog misusage and some indent fixes
- enfore gc style for gtk+2 widgets creation
- more layout fixes: cance/ok order coherency, no VBoxes/HButtonBoxes
- abuses, ...
- (configure_net) Gtk2::Dialog main area is already a vbox, so it's
- useless to pack a vbox there idem for action area and Gtk2::HButtonBox
- (get_intf_status) kill duplicate
- net & lan configuration dialogs: prevent one to do concurrent config
- changes from the gui
- (sensitive_buttons) fix it
- - only allow to run one wizard at once (insensitive button if one is
- already started)
- - reload the configuration once the wizard exited
- - prevent one to do concurrent config changes from the gui while the
- wizard is run (proper fix involve both fix modality/transcientness
- when embedded and running the wizard within the same process instead
- of forking it]
-
- * network/drakfirewall.pm: fix pkg to install for samba
-
-2003/08/26 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakfont: fix buttons sensitive behavior
-
-2003/08/26 François Pons <fpons at mandrakesoft.com>
-
- * install_steps_interactive.pm: drop security level selection for desktop
- user.
- do not ask user for group selection if desktop meta class is used.
-
- * pkgs.pm: get selected list from compssUsers for readCompssUsers.
-
- * share/compssUsers.server: added [selected=server] for groups to be
- selected by default.
-
- * share/compssUsers.desktop: added [selected=desktop] when needed (same as
- default selection (PowerPack) but
- Gnome is removed).
-
- * share/compssUsers: added [selected=default] for all section which needed
- to be selected
- (approximative map of existing packages).
-
- * install_any.pm: added default compssUsers group selection from
- compssUser file directly (use
- [selected=...] where ... is a list of comma separated meta_class (or
- default for
- no meta_class or all for all meta_class).
- fixed all radeon card are using 3D for 3D package group.
-
-2003/08/26 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po, share/po/uk.po, share/po/hu.po: updated Estonian,
- Hungarian and Ukrainian files
-
-2003/08/26 Pixel <pixel at mandrakesoft.com>
-
- * share/po/i18n_compssUsers: adapt to new flag [selected=...]
-
- * any.pm: install "autofs" pkg when using ldap (thanks to Buchan Milne)
-
- * keyboard.pm:
- - don't set XkbCompat to group_led, it's better to use grp_led:scroll
- in
- XkbOptions
- - also set compose:rwin if GRP_TOGGLE is not rwin_toggle. rationale:
- Also, for multilayout keyboards, it would be nice to also
- in XkbOptions "compose:rwin" to define the right windows
- key as the compose key (unless "rwin_toggle" has been
- choosen to toggle the layouts) "compose:rwin" is the
- default when loading a single latin layout, but is lost
- when loading several layouts...
-
- * fs.pm: use fs=ext2:vfat or fs=udf:iso9600 for supermount (it needs
- supermount-ng)
-
-2003/08/26 Till Kamppeter <till at mandrakesoft.com>
-
- * pixmaps/printer-mdk.png: Updated icon for printerdrake's dialog windows.
-
-2003/08/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: more last bits for 9.2-2mdk for lord pixel
- 9.2-2mdk
-
- * standalone/drakconnect: still more dialogs cleanups
- add --gui in order to start in "mcc" state (aka not in wizard mode)
- more dialog misusage and some indent fixes
- enfore gc style for gtk+2 widgets creation
- more layout fixes: cance/ok order coherency, no VBoxes/HButtonBoxes
- abuses, ...
- (configure_net) Gtk2::Dialog main area is already a vbox, so it's
- useless to pack a vbox there idem for action area and Gtk2::HButtonBox
- (get_intf_status) kill duplicate
- net & lan configuration dialogs: prevent one to do concurrent config
- changes from the gui
- (sensitive_buttons) fix it
- - only allow to run one wizard at once (insensitive button if one is
- already started)
- - reload the configuration once the wizard exited
- - prevent one to do concurrent config changes from the gui while the
- wizard is run (proper fix involve both fix modality/transcientness
- when embedded and running the wizard within the same process instead
- of forking it]
-
- * modules.pm (add_alias) override current setting when adding an alias
-
- * harddrake/sound.pm, standalone/service_harddrake: while bootstrapping,
- only write /etc/modules.conf only if we really altered it
- (thus preventing depmod to be runned everytime)
-
-2003/08/26 François Pons <fpons at mandrakesoft.com>
-
- * pkgs.pm: get selected list from compssUsers for readCompssUsers.
-
- * install_steps_interactive.pm: drop security level selection for desktop
- user.
- do not ask user for group selection if desktop meta class is used.
-
- * share/compssUsers.server: added [selected=server] for groups to be
- selected by default.
-
- * share/compssUsers: added [selected=default] for all section which needed
- to be selected
- (approximative map of existing packages).
-
- * install_any.pm: added default compssUsers group selection from
- compssUser file directly (use
- [selected=...] where ... is a list of comma separated meta_class (or
- default for
- no meta_class or all for all meta_class).
- fixed all radeon card are using 3D for 3D package group.
-
- * share/compssUsers.desktop: added [selected=desktop] when needed (same as
- default selection (PowerPack) but
- Gnome is removed).
-
-2003/08/26 Pixel <pixel at mandrakesoft.com>
-
- * standalone/diskdrake: do embed WebDAV configuration (fix bug #4703)
-
- * any.pm: install "autofs" pkg when using ldap (thanks to Buchan Milne)
-
- * diskdrake/dav.pm: focus_first on the webdav server field
-
- * keyboard.pm:
- - don't set XkbCompat to group_led, it's better to use grp_led:scroll
- in
- XkbOptions
- - also set compose:rwin if GRP_TOGGLE is not rwin_toggle. rationale:
- Also, for multilayout keyboards, it would be nice to also
- in XkbOptions "compose:rwin" to define the right windows
- key as the compose key (unless "rwin_toggle" has been
- choosen to toggle the layouts) "compose:rwin" is the
- default when loading a single latin layout, but is lost
- when loading several layouts...
-
- * fs.pm: use fs=ext2:vfat or fs=udf:iso9600 for supermount (it needs
- supermount-ng)
-
-2003/08/26 Till Kamppeter <till at mandrakesoft.com>
-
- * pixmaps/printer-mdk.png: Updated icon for printerdrake's dialog windows.
-
-2003/08/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: more last bits for 9.2-2mdk for lord pixel
- 9.2-2mdk
-
- * modules.pm (add_alias) override current setting when adding an alias
-
- * standalone/drakconnect: add --gui in order to start in "mcc" state (aka
- not in wizard mode)
- more dialog misusage and some indent fixes
- enfore gc style for gtk+2 widgets creation
- more layout fixes: cance/ok order coherency, no VBoxes/HButtonBoxes
- abuses, ...
- (configure_net) Gtk2::Dialog main area is already a vbox, so it's
- useless to pack a vbox there idem for action area and Gtk2::HButtonBox
- (get_intf_status) kill duplicate
- net & lan configuration dialogs: prevent one to do concurrent config
- changes from the gui
- (sensitive_buttons) fix it
- - only allow to run one wizard at once (insensitive button if one is
- already started)
- - reload the configuration once the wizard exited
- - prevent one to do concurrent config changes from the gui while the
- wizard is run (proper fix involve both fix modality/transcientness
- when embedded and running the wizard within the same process instead
- of forking it]
-
- * harddrake/data.pm: explain data struct
-
- * harddrake/sound.pm, standalone/service_harddrake: while bootstrapping,
- only write /etc/modules.conf only if we really altered it
- (thus preventing depmod to be runned everytime)
-
-2003/08/26 Pixel <pixel at mandrakesoft.com>
-
- * diskdrake/dav.pm: focus_first on the webdav server field
-
- * keyboard.pm:
- - don't set XkbCompat to group_led, it's better to use grp_led:scroll
- in
- XkbOptions
- - also set compose:rwin if GRP_TOGGLE is not rwin_toggle. rationale:
- Also, for multilayout keyboards, it would be nice to also
- in XkbOptions "compose:rwin" to define the right windows
- key as the compose key (unless "rwin_toggle" has been
- choosen to toggle the layouts) "compose:rwin" is the
- default when loading a single latin layout, but is lost
- when loading several layouts...
-
- * any.pm: install "autofs" pkg when using ldap (thanks to Buchan Milne)
-
- * fs.pm: use fs=ext2:vfat or fs=udf:iso9600 for supermount (it needs
- supermount-ng)
-
- * standalone/diskdrake: do embed WebDAV configuration (fix bug #4703)
-
-2003/08/26 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm: If an HPOJ-controlled HP MF device on a parallel port
- has an URI with
- model reference (and not port number) tell at least in the menues that
- it is on a parallel port.
-
- * printer/printerdrake.pm: Let names of automatically generated queues not
- contain the word "Series".
-
-2003/08/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * modules.pm (add_alias) override current setting when adding an alias
-
- * standalone/service_harddrake, harddrake/sound.pm: while bootstrapping,
- only write /etc/modules.conf only if we really altered it
- (thus preventing depmod to be runned everytime)
-
- * harddrake/data.pm: explain data struct
-
- * drakxtools.spec: more last bits for 9.2-2mdk for lord pixel
- 9.2-2mdk
-
-2003/08/25 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: update
-
-2003/08/25 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/08/25 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po: updated po file
- updated pot file
-
- * share/po/uz@Cyrl.po, share/po/id.po, share/po/be.po, share/po/ru.po,
- share/po/ja.po, share/po/he.po, share/po/ga.po, share/po/tr.po,
- share/po/ms.po, share/po/hr.po, share/po/uz.po, share/po/nb.po,
- share/po/ko.po, share/po/es.po, share/po/zh_CN.po, share/po/cy.po,
- share/po/zh_TW.po, share/po/eu.po, share/po/vi.po, share/po/eo.po,
- share/po/tg.po, share/po/sr@Latn.po, share/po/DrakX.pot, share/po/th.po,
- share/po/lt.po, share/po/cs.po, share/po/sr.po, share/po/pt.po,
- share/po/nl.po, share/po/hu.po, share/po/is.po, share/po/fr.po,
- share/po/uk.po, share/po/sv.po, share/po/de.po, share/po/ca.po,
- share/po/bs.po, share/po/et.po, share/po/lv.po, share/po/az.po,
- share/po/it.po, share/po/ro.po, share/po/wa.po, share/po/af.po,
- share/po/pl.po, share/po/sk.po, share/po/pt_BR.po, share/po/mt.po,
- share/po/da.po, share/po/ta.po, share/po/fi.po, share/po/sq.po,
- share/po/el.po, share/po/ar.po, share/po/gl.po, share/po/sl.po,
- share/po/bg.po: updated pot file
-
-2003/08/25 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm: Distinguish between printers "Configured on this
- machine" and
- "Configured on other machines", not any more "Local Printers" and
- "Remote Printers", so the current dialog is compatible to the new GTK2
- dialog.
- Fixed recognition of installed parallel HPOJ-driven MF devices.
-
- * printer/cups.pm: Distinguish between printers "Configured on this
- machine" and
- "Configured on other machines", not any more "Local Printers" and
- "Remote Printers", so the current dialog is compatible to the new GTK2
- dialog.
-
- * printer/printerdrake.pm: Distinguish between printers "Configured on
- this machine" and
- "Configured on other machines", not any more "Local Printers" and
- "Remote Printers", so the current dialog is compatible to the new GTK2
- dialog.
- - Modularized the function main() to have separate subroutines for
- adding, setting as default, editing, and removing a printer (for new
- main window).
- - Cleaned up the code of the former function main().
- - Re-activated the wizard mode for adding a printer, it works again!
-
-2003/08/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakboot: fix drakboot always showing advanced stuff even
- when --expert was not
- passed
-
- * share/po/fr.po: update french translation
-
- * network/netconnect.pm: fix drakconnect not working on console (found by
- poulpy) due to having
- killed pre_func() which used to set a background pixmap in the old
- days, thus the bogus test that went in.
-
- * drakxtools.spec: 9.2-1mdk
-
-2003/08/25 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/08/25 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Add /etc/modules for local hardware config.
-
-2003/08/25 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm: Fixed recognition of installed parallel HPOJ-driven MF
- devices.
-
- * printer/detect.pm: Removed use of "parport_probe", we do not need to
- support kernel 2.2.x
- any more.
-
-2003/08/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/netconnect.pm: fix drakconnect not working on console (found by
- poulpy) due to having
- killed pre_func() which used to set a background pixmap in the old
- days, thus the bogus test that went in.
-
- * standalone/drakfloppy: this tool really is gtk2 ported, so do not trash
- languages not handled
- by gtk+-1.x
-
-2003/08/24 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/hu.po, share/po/zh_CN.po, share/po/fa.po, share/po/uk.po,
- share/po/eu.po: updated Basque, Farsi, Hungarian, Ukrainian and Chinese
- files
-
-2003/08/24 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm: Adapted version mark in HPOJ config files to the
- current HPOJ.
- - Fixed expert/normal mode switch (it will perhaps be removed, but a
- working switch makes the further development easier).
- - Added connectionstr() function which produces a human-readable
- string for the connection type, needed for new main window.
- - Added missing parantheses (there was a warning complaining about
- this).
-
- * printer/printerdrake.pm: Made the HP DeskJet 450 really being recognized
- as a printer needing HPOJ.
- Added HP DeskJet 450 to the models which need HPOJ.
- - Fixed expert/normal mode switch (it will perhaps be removed, but a
- working switch makes the further development easier).
- - Added connectionstr() function which produces a human-readable
- string for the connection type, needed for new main window.
- - Added missing parantheses (there was a warning complaining about
- this).
-
-2003/08/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: require a perl-Gtk2 that properly handle perl
- exceptions in gtk+ callbacks
- typo fix
-
-2003/08/23 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: updated
-
-2003/08/23 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/hu.po, share/po/zh_CN.po, share/po/eu.po: updated pot file
- updated Basque, Hungarian and Chinese files
-
- * share/po/ta.po, share/po/pt_BR.po, share/po/fr.po, share/po/de.po,
- share/po/cy.po, share/po/lv.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/he.po, share/po/cs.po, share/po/fi.po, share/po/ca.po,
- share/po/ms.po, share/po/ja.po, share/po/bs.po, share/po/bg.po,
- share/po/th.po, share/po/mt.po, share/po/el.po, share/po/et.po,
- share/po/wa.po, share/po/pl.po, share/po/fa.po, share/po/uk.po,
- share/po/uz@Cyrl.po, share/po/nl.po, share/po/is.po, share/po/it.po,
- share/po/sq.po, share/po/es.po, share/po/id.po, share/po/ko.po,
- share/po/tr.po, share/po/be.po, share/po/hr.po, share/po/vi.po,
- share/po/sr@Latn.po, share/po/az.po, share/po/ar.po, share/po/nb.po,
- share/po/eo.po, share/po/gl.po, share/po/sl.po, share/po/ru.po,
- share/po/pt.po, share/po/sk.po, share/po/af.po, share/po/tg.po,
- share/po/lt.po, share/po/ga.po, share/po/zh_TW.po, share/po/da.po,
- share/po/ro.po, share/po/uz.po, share/po/sr.po: updated pot file
-
-2003/08/23 Till Kamppeter <till at mandrakesoft.com>
-
- * handle_configs.pm: if_($A, $B) got extremely slow, replaced by ( $A ? $B
- : () ).
-
-2003/08/23 tpittich
-
- * share/po/sk.po: updated slovak translation
-
-2003/08/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk2.pm: as discussed with david, gc, laurent & pixel early this week,
- since
- gtk+ dialogs are HIG-ed and since most drakxtools' explicit gtk+
- windows follow cancel/ok order for now, let implicit windows (that is
- interactive written ones) follow the same order in standalone mode.
- after release, we'll have to make ugtk2 handle one more abstractions,
- that is taking some buttons callbacks, add buttons that have callbacks
- and pack them in kde or gnome order depending of interface team
- decision or maybe of runtime detection of desktop.
-
- * standalone/icons/non-editable.png: add new icon for drakperm
-
- * standalone/drakperm: rename $treeModel as $model since it really is a
- ListModel, not a
- TreeModel anymore (cosmetic)
- - disable up button when selected rule is the first one
- - disable down button when selected rule is the latest one or when
- next rule is non editable
- always add newly created setting at top of editable settings so that
- we're we can sort them since they're no non editable items between old
- & new editable ones
- once we start to alter settings ordering, we need to save it on exit;
- so just tell it to drakperm
- - fix gtk bug on moving down line
- - merge moving up & down callbacks
- - we do not have a hierarchy, so just use a s/tree/list/
-
- * share/po/fr.po: a few more translations
- translate last remaining non translated languages with google help
-
- * drakxtools.spec: 9.2-0.35mdk
- 9.2-0.34mdk
-
-2003/08/22 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/adsl.pm: typo fix s/succeed/succeeded/
-
-2003/08/22 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: updated Spanish translations
-
-2003/08/22 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * tools/cvslog2changelog.pl: add erwan
-
- * share/po/fr.po: fix titi
-
- * interactive/gtk.pm: fix keyboard browsing in treeviews not always
- centering on
- selected row (workaround gtk2 bug not honouring centering on the
- given row if node was closed by updating ui before requesting the
- scrolling to the cell)
-
-2003/08/22 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nb.po: updated Norwegian file
- updated pot file
-
- * share/po/ru.po: updated Russian file
- updated pot file
-
- * share/po/ta.po, share/po/pt_BR.po, share/po/fr.po, share/po/de.po,
- share/po/cy.po, share/po/lv.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/hu.po, share/po/he.po, share/po/fi.po, share/po/ca.po,
- share/po/ms.po, share/po/ja.po, share/po/bs.po, share/po/zh_CN.po,
- share/po/bg.po, share/po/th.po, share/po/eu.po, share/po/mt.po,
- share/po/el.po, share/po/et.po, share/po/wa.po, share/po/pl.po,
- share/po/fa.po, share/po/uk.po, share/po/uz@Cyrl.po, share/po/nl.po,
- share/po/is.po, share/po/it.po, share/po/sq.po, share/po/es.po,
- share/po/id.po, share/po/ko.po, share/po/tr.po, share/po/be.po,
- share/po/hr.po, share/po/vi.po, share/po/sr@Latn.po, share/po/az.po,
- share/po/ar.po, share/po/eo.po, share/po/gl.po, share/po/sl.po,
- share/po/pt.po, share/po/sk.po, share/po/af.po, share/po/tg.po,
- share/po/lt.po, share/po/ga.po, share/po/zh_TW.po, share/po/da.po,
- share/po/ro.po, share/po/uz.po, share/po/sr.po: updated pot file
-
- * lang.pm: use "Sans" as default font name
-
- * share/po/cs.po: updated po file
- updated pot file
-
-2003/08/22 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: fix crash on file select of "Other"
- finish custom cron configuration - normal users can now do cron backups
-
-2003/08/22 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/detect.pm: Adapted to scli 0.2.12.
-
- * printer/printerdrake.pm, printer/main.pm: Support for the new
- "ptal://..." (two slashes) URIs of the new HPOJ.
-
-2003/08/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * interactive/gtk.pm (ask_fromW) split $set_advanced into $set_advanced
- and
- $set_advanced_raw to fix drakconnect "failling" to detect network
- interfaces in standalone mode when in expert mode
-
- * standalone/draksec: translate default value in help tooltips too
- CJK fixes: use newly introduced Gtk2::WrappedLabel package
-
- * network/drakfirewall.pm: offer samba in services list
-
- * standalone/drakperm: renew drakperm gui (interface team feedback):
- - indicate if current setting is editable or not
- - only display current security level, editable settings or both
-
- * ugtk2.pm: CJK fixes: use newly introduced Gtk2::WrappedLabel package
- introduce Gtk2::WrappedLabel to factorize fixed labels for CJK
- languages
- (gtkset_line_wrap) export it
-
- * share/po/fr.po: update french translation
- minor fix (due to ala latex format used in draksec)
- update french translation
- update french translation
- update french translation
- translate draksec main label
-
-2003/08/21 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/adsl.pm:
- - more use info in load_firmware_floppy
- - catch no floppy in drive error
- - catch wizcancel
- - add '-e 1' pppoa option for speedtouch USB
- - N_ instead of N, won't translate twice (guillaume has the greatest
- member)
-
- * network/modem.pm: fix no winmodem message/behavior
-
-2003/08/21 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/08/21 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nl.po: updated Dutch file
-
- * network/adsl.pm: s/alcatel/Alcatel/
-
- * share/po/zh_CN.po: updated Chinese file
-
- * share/po/fr.po: updated French file
-
- * share/po/cs.po: updated Czech file
-
-2003/08/21 Pixel <pixel at mandrakesoft.com>
-
- * diskdrake/resize_ntfs.pm: display the error returned by ntfsresize (need
- i18n though)
-
- * standalone/draksec: fix english (thanks to Reinout van Schouwen)
-
- * bootloader.pm: have bootsplash also for smp & enterprise kernels
-
- * ugtk2.pm: only access $::o->{mouse}{unsafe} during install
-
- * modules.pm: don't care if insmod'ing ohci1394 fail (bug #1972)
-
-2003/08/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk2.pm:
- - (gtkset_line_wrap) introduce a Gtk2::Label wrapper for
- set_line_wrap()
- - (create_box_with_title)
- o factorize label creation
- o fix label wrongly wrap cjk languages by enabling its wrapping
- (real bugs is that GtkLabel does not really know its geometry: see
- gtk+ bugs #118045, #118046, #101968 and #104188)
- move ugtk2 related language fixes into ugtk2 jail
-
- * harddrake/sound.pm: typo fixes from Arpad Biro
-
- * standalone.pm: move ugtk2 related language fixes into ugtk2 jail
-
- * standalone/harddrake2: workaround gtk bug #118047
-
-2003/08/21 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: updated to current pot
-
-2003/08/21 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/modem.pm: fix no winmodem message/behavior
-
- * network/adsl.pm:
- - allow user to copy firmware from a floppy
- - fix 'previous' behavior
- - change wrong url
-
- * share/po/id.po, share/po/af.po, share/po/hr.po, share/po/eo.po,
- share/po/de.po, share/po/ar.po, share/po/zh_TW.po, share/po/nb.po,
- share/po/fr.po, share/po/ko.po, share/po/el.po, share/po/da.po,
- share/po/sr@Latn.po, share/po/lt.po, share/po/eu.po, share/po/nl.po,
- share/po/he.po, share/po/tr.po, share/po/wa.po, share/po/uz@Cyrl.po,
- share/po/ta.po, share/po/pl.po, share/po/az.po, share/po/be.po,
- share/po/mt.po, share/po/uk.po, share/po/hu.po, share/po/uz.po,
- share/po/fa.po, share/po/ja.po, share/po/it.po, share/po/pt.po,
- share/po/ro.po, share/po/sq.po, share/po/sk.po, share/po/ru.po,
- share/po/fi.po, share/po/gl.po, share/po/cs.po, share/po/sv.po,
- share/po/th.po, share/po/es.po, share/po/sl.po, share/po/lv.po,
- share/po/ca.po, share/po/sr.po, share/po/pt_BR.po, share/po/vi.po,
- share/po/tg.po, share/po/cy.po, share/po/zh_CN.po, share/po/bg.po,
- share/po/is.po, share/po/ga.po, share/po/et.po, share/po/bs.po: fix
- firmware url
-
-2003/08/21 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/08/21 François Pons <fpons at mandrakesoft.com>
-
- * pkgs.pm: use perl-URPM 0.94
- really fixed bad content generated.
- fixed next key block not taken into accound.
-
- * install_any.pm: updated with new perl-URPM 0.94 (simplified code)
- avoid 0 to be dumped in urpmi.cfg :(
- added some log when importing pbukey block and when key id have been
- found.
- make sure other key are added to urpmi.cfg when imported.
-
-2003/08/21 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/pcmcia_/merge_from_pcitable: also display probe.c entries
- that are completely missing from pcitable
-
- * mdk-stage1/pcmcia_/probe.c: 0x1524 0x1411 is a yenta_socket on Asus
- Pundit machine (laurent at pschit.net)
-
- * share/rpmsrate: s/freeciv/freeciv-client/
-
-2003/08/21 keld
-
- * share/po/da.po: updates
- soft/GtkMdkWidgets/po/da.po soft/mdkkdm/po/da.po
- soft/urpmi/po/da.po soft/userdrake2/po/da.po
- gi/perl-install/share/po/da.po
-
-2003/08/21 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nl.po: updated Dutch file
- updated pot file
-
- * share/po/zh_CN.po: updated Chinese file
- updated pot file
-
- * standalone/drakbackup: fixed English typos
-
- * share/po/fr.po: updated French file
- updated pot file
-
- * share/po/cs.po: updated Czech file
- updated pot file
-
- * standalone/logdrake: Changed back NC() to N() (functionality will be
- merged)
- definition and use of an NC() function (translation with context, kde
- like)
-
- * share/po/id.po, share/po/af.po, share/po/hr.po, share/po/eo.po,
- share/po/de.po, share/po/ar.po, share/po/zh_TW.po, share/po/nb.po,
- share/po/ko.po, share/po/el.po, share/po/da.po, share/po/sr@Latn.po,
- share/po/lt.po, share/po/eu.po, share/po/he.po, share/po/tr.po,
- share/po/wa.po, share/po/uz@Cyrl.po, share/po/ta.po, share/po/pl.po,
- share/po/az.po, share/po/be.po, share/po/mt.po, share/po/uk.po,
- share/po/hu.po, share/po/uz.po, share/po/fa.po, share/po/ja.po,
- share/po/it.po, share/po/pt.po, share/po/ro.po, share/po/sq.po,
- share/po/sk.po, share/po/ru.po, share/po/fi.po, share/po/gl.po,
- share/po/sv.po, share/po/th.po, share/po/es.po, share/po/DrakX.pot,
- share/po/sl.po, share/po/lv.po, share/po/ca.po, share/po/sr.po,
- share/po/pt_BR.po, share/po/vi.po, share/po/tg.po, share/po/ms.po,
- share/po/cy.po, share/po/bg.po, share/po/is.po, share/po/ga.po,
- share/po/et.po, share/po/bs.po: updated pot file
-
- * common.pm: perl_checker complain avout using N(@_) so NC() has been
- rewritten as
- a duplicate of N() plus one line
- definition and use of an NC() function (translation with context, kde
- like)
-
-2003/08/21 Pixel <pixel at mandrakesoft.com>
-
- * fs.pm: when umount fails, try killing fam and trying again
-
- * diskdrake/resize_ntfs.pm: display the error returned by ntfsresize (need
- i18n though)
-
- * Xconfig/card.pm: don't propose XF3 when $force_xf4
- fix typo ($::force_xf4 doesn't exist anymore)
-
- * ugtk2.pm: only access $::o->{mouse}{unsafe} during install
-
- * partition_table.pm:
- - fix call to openit()
- - replace *F with $F
-
- * fsedit.pm: simplify
- allocatePartitions() resulted in a small unallocated area at the end of
- the
- drive when:
- - suggest_part() reserves some room for the other partitions which are
- going to
- be added next. For maxsize limited partition, it reserves maxsize (if
- maxsize
- is reached)
- - suggest_part() which adds the last partition limited by maxsize can
- be
- called on a partition a little bigger than maxsize due to cylinder
- boundary
- adjustments on previous partition creations. In that case, it doesn't
- use the
- full area.
- It occured for example with the current $fsedit::suggestions{server}.
- The fix chosen is to ensure the last suggest_part() is called with a
- size
- defined as maxsize <= size < maxsize + cylinder_size.
-
- * modules.pm: don't care if insmod'ing ohci1394 fail (bug #1972)
-
- * standalone/draksec: fix english (thanks to Reinout van Schouwen)
-
- * Xconfig/test.pm: fix typo
- - use $TMPDIR before using $HOME/tmp
- - if $HOME doesn't exist, it will use /tmp which is safe when using
- secured_file()
-
- * common.pm: no need for NC(), doing it in translate() in any case
-
-2003/08/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakxtv: only offer to configure xawtv if bttv was configured
- fix warnings with diagnostics pragma
-
- * drakxtools.spec: 9.2-0.33mdk
-
- * ugtk2.pm: move ugtk2 related language fixes into ugtk2 jail
- chinese badly wrap with labels too
- the scrolled text is correctly sized, so do not let it compete with
- the options box and the advanced box for availlable space
-
- * harddrake/sound.pm: typo fixes from Arpad Biro
-
- * standalone.pm: move ugtk2 related language fixes into ugtk2 jail
- set $::o in standalone mode too (because of guillaume fixes for "pango
- vs cjk" match)
-
- * harddrake/v4l.pm: return ok/cancel state
-
-2003/08/21 Pixel <pixel at mandrakesoft.com>
-
- * fsedit.pm: simplify
- allocatePartitions() resulted in a small unallocated area at the end of
- the
- drive when:
- - suggest_part() reserves some room for the other partitions which are
- going to
- be added next. For maxsize limited partition, it reserves maxsize (if
- maxsize
- is reached)
- - suggest_part() which adds the last partition limited by maxsize can
- be
- called on a partition a little bigger than maxsize due to cylinder
- boundary
- adjustments on previous partition creations. In that case, it doesn't
- use the
- full area.
- It occured for example with the current $fsedit::suggestions{server}.
- The fix chosen is to ensure the last suggest_part() is called with a
- size
- defined as maxsize <= size < maxsize + cylinder_size.
-
-2003/08/20 erwan
-
- * share/rpmsrate: Decreasing weight of pbs (pro),
- Increasing weight of ScalablePBS & Maui
-
-2003/08/20 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/08/20 François Pons <fpons at mandrakesoft.com>
-
- * mouse.pm: added emulate wheel support (a bit hacky though) (bug 3976)
-
- * install_any.pm: added missing require.
- added pubkey and rpmdb key importation.
-
- * Xconfig/parse.pm: fix bug 3976.
-
- * pkgs.pm: added pubkey support for medium.
-
- * share/list: added URPM::Signature module needed to parse pubkey and
- import them to rpmdb.
-
-2003/08/20 gbeauchesne
-
- * tools/x86_64/busybox: Add busybox/amd64 compiled with dietlibc
-
- * c/smp.c: Use x86 smp detection scheme on amd64 instead of the ugly dmesg
- workaround.
-
- * mdk-stage1/pcmcia_/cardmgr.c: Use "%p" specifier as "Base" is likely to
- be an address.
-
- * mdk-stage1/ppp/pppd/sys-linux.c: Use <net/if_arp.h> thusly bypassing
- need for <linux/byteorder/generic.h>
-
- * Makefile: Use busybox in stage2 on AMD64
-
-2003/08/20 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * share/fonts.tar.bz2: re-put etc/fonts/fonts.conf, pablo removed it in
- previous commit, it broke the whole installation program starting up :)
-
- * tools/make_lang_png_transparent.c: this file allows to make an
- antialiased black-on-white png, antialiased black-on-transparent
- it's used for perl-install/pixmaps/langs/lang-*.png
-
- * pixmaps/langs/lang-ve.png, pixmaps/langs/lang-gu.png,
- pixmaps/langs/lang-as.png, pixmaps/langs/lang-se.png,
- pixmaps/langs/lang-mr.png, pixmaps/langs/lang-uz.png,
- pixmaps/langs/lang-xh.png, pixmaps/langs/lang-ne.png,
- pixmaps/langs/lang-ml.png, pixmaps/langs/lang-li.png,
- pixmaps/langs/lang-zu.png, pixmaps/langs/lang-ku.png,
- pixmaps/langs/lang-uz@Cyrl.png, pixmaps/langs/lang-te.png,
- pixmaps/langs/lang-st.png, pixmaps/langs/lang-ss.png: make them
- transparent
-
-2003/08/20 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/tg.po, share/po/da.po, share/po/ro.po, share/po/sv.po,
- share/po/bs.po, share/po/DrakX.pot, share/po/az.po, share/po/uz.po,
- share/po/cs.po, share/po/ar.po, share/po/ko.po, share/po/cy.po,
- share/po/tr.po, share/po/gl.po, share/po/ga.po, share/po/nl.po,
- share/po/ja.po, share/po/eo.po, share/po/wa.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/be.po, share/po/fr.po, share/po/ta.po,
- share/po/sl.po, share/po/es.po, share/po/fi.po, share/po/hu.po,
- share/po/pl.po, share/po/el.po, share/po/et.po, share/po/eu.po,
- share/po/sk.po, share/po/lv.po, share/po/bg.po, share/po/pt.po,
- share/po/zh_CN.po, share/po/sr.po, share/po/uk.po, share/po/af.po,
- share/po/zh_TW.po, share/po/he.po, share/po/hr.po, share/po/vi.po,
- share/po/id.po, share/po/uz@Cyrl.po, share/po/th.po, share/po/de.po,
- share/po/ru.po, share/po/fa.po, share/po/pt_BR.po, share/po/mt.po,
- share/po/nb.po, share/po/ca.po, share/po/lt.po, share/po/is.po: updated
- pot file
-
- * keyboard.pm, share/keyboards.tar.bz2: Added choice of Irish keyboard;
- updated the Georgian "latin layout" one.
-
- * share/po/it.po: updated pot file
- updated Italian file
-
-2003/08/20 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm, modules.pm, install_steps.pm: load
- detected firewire modules during install
-
- * detect_devices.pm: add firewire_probe() and use it in probeall()
-
- * fsedit.pm, security/l10n.pm: fix english (thanks to Arpad Biro)
-
-2003/08/20 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup, standalone/drakTermServ: Text typos - Arpad Biro
-
-2003/08/20 siegel
-
- * share/po/de.po: updates
-
-2003/08/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk2.pm: standalone wizards: increase height to prevent some hidden or
- cutted
- buttons (some locales and some steps may still be partially hidden)
-
- * standalone/logdrake: annotate load for translators (Arpad Biro)
- only complain if an error really happened
-
- * standalone.pm: frederic crozat said that border is ugly for standalone
- tools.
- so let it be used only by install.
-
- * share/po/fr.po: fix #4787
-
-2003/08/20 Pixel <pixel at mandrakesoft.com>
-
- * detect_devices.pm: add firewire_probe() and use it in probeall()
-
- * modules.pm, install_steps.pm, install_steps_interactive.pm: load
- detected firewire modules during install
-
-2003/08/19 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Partially updated
-
-2003/08/19 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/tools.pm: fix internet reconnection in mcc
-
-2003/08/19 erwan
-
- * share/rpmsrate: Switching to ScalablePBS
-
- * install_any.pm: Fixing Nvidia detection.. Many were missing due to wrong
- regexp
-
-2003/08/19 gbeauchesne
-
- * mdk-stage1/dietlibc/librpc/pmap_getport.c: Gracefully handle IPPROTO_TCP
- in pmap_getport() [PR libc/4943]
-
- * share/list: lib64 fixes. Make sure we grab Gtk2.pm
-
- * mdk-stage1/dietlibc/librpc/xdr.c, mdk-stage1/dietlibc/librpc/clnt_udp.c,
- mdk-stage1/dietlibc/librpc/clnt_tcp.c: 64-bit clean RPC code enough to
- let MDK stage1 do NFS mounts
-
- * mdk-stage1/dietlibc/librpc/xdr_mem.c,
- mdk-stage1/dietlibc/librpc/xdr_rec.c: 64-bit clean RPC code enough to
- let MDK stage1 do NFS mounts
- XDR security fix from glibc [CAN 2003-0028]
-
- * mdk-stage1/dietlibc/lib/htonl.c, mdk-stage1/dietlibc/lib/htons.c,
- mdk-stage1/dietlibc/include/netinet/in.h: Fix htonl() on 64-bit
- platforms
-
- * mdk-stage1/Makefile: Build ppp stuff on AMD64 too
-
- * Xconfig/card.pm, install_steps_gtk.pm: Use xf4 on AMD64 too
-
- * mdk-stage1/ppp/pppd/utils.c: Fix varargs for AMD64
-
- * install_any.pm:
- - Don't care about BIGMEM stuff for IA-64 & AMD64
- - Handle platforms that are only aware of all.img
-
- * partition_table.pm:
- - Merge in AMD64 tree
- - Handle EFI partitions on IA-64
-
- * fsedit.pm: Handle /boot/efi as an EFI partition
-
- * any.pm: Merge from AMD64 branch: lib64 fixes
-
- * mdk-stage1/dietlibc/librpc/xdr_stdio.c: XDR security fix from glibc [CAN
- 2003-0028]
-
- * share/list.ia64, share/list.x86_64: AMD64 updates for 9.2
-
- * mdk-stage1/dietlibc/include/sys/types.h: Really match dietlibc 0.22 for
- <sys/types.h> u_long definition though
- it ought to be uint32_t.
-
- * fs.pm: Handle EFI partitions. umount syscall does not exist on AMD64,
- use umount2
-
-2003/08/19 keld
-
- * share/po/da.po: updates
- soft/rpmdrake/po/da.po gi/perl-install/share/po/da.po
- soft/bootsplash/po/da.po
-
-2003/08/19 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/zh_CN.po, share/po/ro.po, share/po/et.po, share/po/wa.po,
- share/po/nl.po, share/po/ja.po, share/po/uz@Cyrl.po, share/po/el.po,
- share/po/th.po, share/po/be.po, share/po/gl.po, share/po/id.po,
- share/po/bg.po, share/po/uz.po, share/po/af.po, share/po/ru.po,
- share/po/tg.po, share/po/lv.po, share/po/ca.po, share/po/vi.po,
- share/po/ko.po, share/po/bs.po, share/po/is.po, share/po/he.po,
- share/po/lt.po, share/po/ta.po, share/po/sl.po, share/po/fi.po,
- share/po/de.po, share/po/DrakX.pot, share/po/uk.po, share/po/eu.po,
- share/po/ga.po, share/po/tr.po, share/po/mt.po, share/po/cy.po,
- share/po/es.po, share/po/sv.po, share/po/fr.po, share/po/sr.po,
- share/po/zh_TW.po, share/po/da.po, share/po/nb.po, share/po/az.po,
- share/po/pt_BR.po, share/po/eo.po, share/po/sk.po, share/po/pl.po,
- share/po/hr.po, share/po/pt.po, share/po/sq.po, share/po/hu.po,
- share/po/sr@Latn.po, share/po/it.po: updated pot file
-
- * standalone/drakbackup, help.pm: Fixed typos
-
- * share/po/fa.po: updated Farsi file
- updated pot file
-
- * share/po/cs.po, share/po/ar.po: updated Arabic and Czech files
- updated pot file
-
- * share/fonts.tar.bz2: Updated Nimbus Sans L font (some wrong cyrillic
- glyphs fixed by
- Mashrab Kuvatov <kmashrab@uni-bremen.de>)
-
-2003/08/19 Pixel <pixel at mandrakesoft.com>
-
- * modules.pm, standalone/drakxtv, detect_devices.pm, harddrake/data.pm,
- mouse.pm, standalone/draksound: full pci probe does not freeze anymore,
- removing code work-arounding the freeze
-
- * install_steps.pm: add resume=/dev/XXX where /dev/XXX is the swap
- partition (when the swap partition is bigger than ram size)
-
- * standalone/drakpxe: "xxx or xxx" in list context is always bad!
-
- * network/netconnect.pm: perl_checker compliance (revert non usefull titi
- change)
-
- * standalone/drakhelp, standalone/drakperm, standalone/drakautoinst,
- pkgs.pm: perl_checker compliance
-
- * share/po/help_xml2pm.pl: remove debug code
- adapt to new documentation layout
-
- * standalone/adduserdrake: fix any::write_passwd_user() call
-
- * modules/interactive.pm: do translate choices N_("Yes"), N_("No"),
- N_("See hardware info")
- (thanks to Arpad Biro)
- full pci probe does not freeze anymore, removing code work-arounding the
- freeze
-
- * help.pm: new version from XML doc
-
-2003/08/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * detect_devices.pm: help perl_checker somewhat
- pci hardware discovery: do full-probe by default
-
- * standalone/logdrake: mark one more string as translatable (spoted by
- Arpad Biro)
- remove unused variable
-
- * ugtk2.pm: remove broken and unused gtkexpand()
-
- * standalone/drakconnect: mark one more string as translatable (spoted by
- Arpad Biro)
- readd LANGUAGE=C
- pablo say that redefining LC_* is useless if LC_ALL is defined as the
- later overrides and take priority over the former
- add perl_checker hint
- (update_intbutt) consolidate internet connection button switch code
- - use real known interface name everywhere not guessed one
- (having eth0 and eth9 would resulting in displaying eth0 & eth1
- before), thus enabling to get rid of get_eth_ip()
- - replace build_list() by update_list() that fix flicker on list
- update: only add/remove added/removed interfaces, just update fields
- for others
-
- * install_steps.pm: fix brown paper bug #4702 ...
-
- * drakxtools.spec: first bits of 9.2-0.32mdk
-
- * interactive/gtk.pm: show advanced options by default if --expert was
- passed or if expect
- checkbox was checked (#4353)
-
- * commands.pm, c/stuff.xs.pl: pci hardware discovery: do full-probe by
- default
-
- * standalone/drakfloppy: translate one more string (already translated as
- this is a double)
-
-2003/08/18 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: updated with current pot
-
-2003/08/18 keld
-
- * share/po/da.po: Updates
- soft/menu-messages/da.po soft/userdrake2/po/da.po
- gi/perl-install/share/po/da.po
-
-2003/08/18 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/id.po, share/po/hu.po, share/po/it.po: updated pot file
- updated pot file
-
- * share/po/et.po: updated Estonian file
- updated pot file
-
- * share/po/zh_CN.po, share/po/ro.po, share/po/cs.po, share/po/wa.po,
- share/po/nl.po, share/po/ja.po, share/po/uz@Cyrl.po, share/po/el.po,
- share/po/th.po, share/po/be.po, share/po/gl.po, share/po/bg.po,
- share/po/uz.po, share/po/af.po, share/po/ru.po, share/po/tg.po,
- share/po/lv.po, share/po/ca.po, share/po/vi.po, share/po/ar.po,
- share/po/ko.po, share/po/bs.po, share/po/is.po, share/po/he.po,
- share/po/lt.po, share/po/ta.po, share/po/sl.po, share/po/fi.po,
- share/po/fa.po, share/po/de.po, share/po/DrakX.pot, share/po/uk.po,
- share/po/eu.po, share/po/ga.po, share/po/tr.po, share/po/mt.po,
- share/po/cy.po, share/po/es.po, share/po/sv.po, share/po/fr.po,
- share/po/sr.po, share/po/zh_TW.po, share/po/az.po, share/po/nb.po,
- share/po/pt_BR.po, share/po/eo.po, share/po/sk.po, share/po/hr.po,
- share/po/pl.po, share/po/pt.po, share/po/sq.po, share/po/sr@Latn.po:
- updated pot file
-
- * share/po/da.po: updated Danish file
- updated pot file
-
-2003/08/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakconnect: typo fix
-
- * drakxtools.spec: 9.2-0.31mdk (aka do not forget about killing poulpy)
- 9.2-0.30mdk
-
-2003/08/18 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: updated
-
-2003/08/18 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect:
- - fix up/down interface detection
- - do not wipe out IP and NETMASK when "No ip" is filled in
- - fix typo
-
-2003/08/18 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/id.po, share/po/cs.po, share/po/nb.po, share/po/uz@Cyrl.po,
- share/po/uz.po: updated Czech, Indonesian, Norwegian and Uzbek files
-
- * standalone/drakTermServ: splitted too big text into smaller chunks for
- translators
-
-2003/08/18 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: progess -> progress typo
-
-2003/08/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakconnect: typo fix
- (configure_lan) fix crash on interface enabling/disabling
- (get_intf_status) factorize translations and use upcase initale
- better message when no ip (aka interface down or broken)
-
- * network/netconnect.pm, network/isdn.pm, network/modem.pm: fix some
- previous callback in drakconnect wizard mode
-
- * standalone/drakfloppy: perl_checker fixes
- sort modules and directories in treeview
- - fix long-standing broken mkbootdisk call bug
- - btw fix the passing of mkinirtd arguments to mkbootdisk
- - save the modules list on exit and restore it on load
- - simplify modules list managment btw
- - consolidate some code in get_file_size()
- try to be more user friendly:
- - if no error, display a success message, then exit
- - on error, instead of displaying the raw exit code that has no
- meaning for
- the end user, display in red the log message of mkbootdisk
- - remove insane expert button and so called expert frame
- make testing mode usefull for debugging drakfloppy
-
- * .perl_checker:
- - we do not use anymore perl-GTK
- - let be able to parse ugtk2
-
- * standalone/harddrake2: display the right information when no selected
- device
- use new create_dialog api to get better modal dialogs
-
- * ugtk2.pm (_create_dialog, create_dialog) let support the same api as
- new() and
- threat transient option
- (info_dialog) introduce another dialog helper
- kill buggy and no more used gtkbuttonset()
-
-2003/08/17 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect: allow hostname change in mcc
- perl_checker
-
-2003/08/17 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/hu.po: updated Hungarian file
- updated Farsi and Hungarian files
-
- * share/po/sk.po, share/po/es.po: updated Hungarian file
-
- * share/po/sv.po: updated Swedish file
-
- * share/po/fa.po: updated Farsi and Hungarian files
-
-2003/08/17 tpittich
-
- * share/po/sk.po: updated slovak translation
-
-2003/08/16 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/08/16 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/hu.po: updated Hungarian file
- updated Bulgarian, Estonian, Basque, Hungarian, Albanian, Uzbek and
- Chinese
-
- * share/po/et.po, share/po/bg.po, share/po/sq.po, share/po/zh_CN.po,
- share/po/eu.po, share/po/uz@Cyrl.po, share/po/uz.po: updated Bulgarian,
- Estonian, Basque, Hungarian, Albanian, Uzbek and Chinese
-
-2003/08/15 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sq.po, share/po/lv.po, share/po/hu.po, share/po/eo.po,
- share/po/cs.po, share/po/uz@Cyrl.po, share/po/sr@Latn.po,
- share/po/uz.po, share/po/af.po, share/po/ga.po, share/po/id.po,
- share/po/tg.po, share/po/sl.po, share/po/da.po, share/po/th.po,
- share/po/hr.po, share/po/uk.po, share/po/ko.po, share/po/mt.po,
- share/po/lt.po, share/po/bs.po, share/po/wa.po, share/po/sr.po,
- share/po/nl.po, share/po/de.po, share/po/fi.po, share/po/ro.po,
- share/po/he.po, share/po/tr.po, share/po/bg.po, share/po/fr.po,
- share/po/zh_TW.po, share/po/DrakX.pot, share/po/es.po, share/po/cy.po,
- share/po/it.po, share/po/pt.po, share/po/zh_CN.po, share/po/pt_BR.po,
- share/po/sv.po, share/po/ru.po, share/po/is.po, share/po/ja.po,
- share/po/be.po, share/po/ta.po, share/po/fa.po, share/po/el.po,
- share/po/vi.po, share/po/et.po, share/po/sk.po, share/po/pl.po,
- share/po/ar.po, share/po/ca.po, share/po/nb.po, share/po/eu.po,
- share/po/gl.po, share/po/az.po: updated pot file
-
-2003/08/14 keld
-
- * share/po/da.po: update
- gi/perl-install/share/po/da.po
- updates
- soft/drakcronat/po/da.po soft/rpmdrake/po/da.po
- soft/urpmi/po/da.po gi/perl-install/share/po/da.po
- Updates
- po/po/da.po gi/perl-install/share/po/da.po
-
-2003/08/14 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bg.po, share/po/nb.po: updated Bulgarian and Norwegian files
- updated Turkish file
-
- * share/po/sq.po, share/po/lv.po, share/po/hu.po, share/po/eo.po,
- share/po/cs.po, share/po/uz@Cyrl.po, share/po/sr@Latn.po,
- share/po/uz.po, share/po/af.po, share/po/ga.po, share/po/id.po,
- share/po/tg.po, share/po/sl.po, share/po/da.po, share/po/th.po,
- share/po/hr.po, share/po/uk.po, share/po/ko.po, share/po/mt.po,
- share/po/lt.po, share/po/bs.po, share/po/wa.po, share/po/sr.po,
- share/po/de.po, share/po/fi.po, share/po/ro.po, share/po/he.po,
- share/po/tr.po, share/po/fr.po, share/po/zh_TW.po, share/po/DrakX.pot,
- share/po/es.po, share/po/cy.po, share/po/it.po, share/po/pt.po,
- share/po/zh_CN.po, share/po/pt_BR.po, share/po/sv.po, share/po/ru.po,
- share/po/is.po, share/po/ja.po, share/po/be.po, share/po/ta.po,
- share/po/fa.po, share/po/el.po, share/po/vi.po, share/po/et.po,
- share/po/sk.po, share/po/pl.po, share/po/ar.po, share/po/ca.po,
- share/po/eu.po, share/po/gl.po, share/po/az.po: updated Turkish file
-
- * share/po/nl.po: updated Dutch file
- updated Turkish file
-
-2003/08/14 Pixel <pixel at mandrakesoft.com>
-
- * c/stuff.xs.pl: in floppy_info(), check ioctl success and use
- FDPOLLDRVSTAT (copied from kudzu code)
-
-2003/08/14 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: start user definable crontab entry - sorry
- translators, new strings :(
-
-2003/08/14 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/cy.po, share/po/zh_TW.po, share/po/eo.po, share/po/eu.po,
- share/po/zh_CN.po, share/po/vi.po, share/po/be.po, share/po/et.po,
- share/po/pl.po, share/po/tr.po, share/po/ca.po, share/po/uk.po,
- share/po/it.po, share/po/is.po, share/po/th.po, share/po/mt.po,
- share/po/id.po, share/po/fi.po, share/po/el.po, share/po/wa.po,
- share/po/lt.po, share/po/ar.po, share/po/bg.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/nl.po, share/po/pt.po, share/po/fa.po,
- share/po/sl.po, share/po/de.po, share/po/uz@Cyrl.po, share/po/ja.po,
- share/po/sr@Latn.po, share/po/he.po, share/po/hr.po, share/po/gl.po,
- share/po/nb.po, share/po/da.po, share/po/fr.po, share/po/cs.po,
- share/po/bs.po, share/po/sk.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sq.po, share/po/hu.po, share/po/ga.po, share/po/tg.po,
- share/po/ta.po, share/po/sr.po, share/po/ko.po, share/po/ro.po,
- share/po/es.po, share/po/uz.po, share/po/az.po, share/po/af.po,
- share/po/lv.po: updated Turkish file
-
-2003/08/14 Pixel <pixel at mandrakesoft.com>
-
- * c/stuff.xs.pl: in floppy_info(), check ioctl success and use
- FDPOLLDRVSTAT (copied from kudzu code)
-
-2003/08/14 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: start user definable crontab entry - sorry
- translators, new strings :(
-
-2003/08/13 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect: fix mcc lan changes (fix at least #4088)
-
-2003/08/13 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/08/13 François Pons <fpons at mandrakesoft.com>
-
- * rescue/list.i386: updated with xfs_progs.
-
- * pkgs.pm: added log for checking deselection (check deadlock unless gtk
- are doing them).
- workaround for rpmdb problems of opening Conflictname and Triggername
- files.
-
- * share/list.i386: updated with newer xfs_progs.
-
- * standalone/drakpxe: fixed to match new pxe dhcp.conf configuration file.
-
- * install_any.pm: fixed to build an inflexion point in list file (so that
- urpmi can found it).
- generate a list file if a macro is used (and only in this case).
- fixed with_hdlist possibly incorrect.
- added tiny support for arch dependant directory.
-
-2003/08/13 gbeauchesne
-
- * Makefile: Use bash in stage2 on IA-64
-
- * mdk-stage1/Makefile: Fix merge from amd64-branch
-
- * rescue/list.x86_64, rescue/list: Merge with amd64-branch (rpm libdir is
- always /usr/lib/rpm, update lists)
-
-2003/08/13 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * share/po/cy.po, share/po/zh_TW.po, share/po/eo.po,
- install_steps_interactive.pm, share/po/eu.po, share/po/zh_CN.po,
- share/po/vi.po, share/po/be.po, standalone/drakbackup, share/po/et.po,
- share/po/pl.po, share/po/tr.po, share/po/ca.po, share/po/uk.po,
- share/po/it.po, share/po/is.po, share/po/th.po, share/po/mt.po,
- share/po/id.po, share/po/fi.po, share/po/el.po, share/po/wa.po,
- share/po/lt.po, share/po/ar.po, share/po/bg.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/nl.po, share/po/pt.po, share/po/fa.po,
- share/po/sl.po, share/po/br.po, share/po/de.po, share/po/uz@Cyrl.po,
- share/po/ja.po, share/po/sr@Latn.po, share/po/he.po, share/po/hr.po,
- share/po/gl.po, share/po/nb.po, share/po/da.po, share/po/fr.po,
- share/po/cs.po, share/po/bs.po, share/po/sk.po, share/po/sv.po,
- share/po/sq.po, share/po/hu.po, share/po/ga.po, share/po/tg.po,
- share/po/ta.po, share/po/sr.po, share/po/ko.po, share/po/ro.po,
- share/po/es.po, standalone/drakboot, share/po/uz.po, share/po/az.po,
- share/po/af.po, share/po/lv.po: some english typo fixes thx to Arpad
- Biro
-
- * mdk-stage1/probing.c: full pci probe can't be run with fopen/fread
- because we might read too many bytes. this was the reason for freezes on
- some boxes from drakx, that may impact stage1 also, so better change
- that.
-
-2003/08/13 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * keyboard.pm: corrected typo
-
- * share/po/cy.po, share/po/zh_TW.po, share/po/eo.po, share/po/eu.po,
- share/po/zh_CN.po, share/po/vi.po, share/po/be.po, share/po/et.po,
- share/po/pl.po, share/po/tr.po, share/po/ca.po, share/po/uk.po,
- share/po/it.po, share/po/is.po, share/po/th.po, share/po/mt.po,
- share/po/id.po, share/po/fi.po, share/po/el.po, share/po/wa.po,
- share/po/lt.po, share/po/ar.po, share/po/bg.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/nl.po, share/po/pt.po, share/po/fa.po,
- share/po/sl.po, share/po/de.po, share/po/uz@Cyrl.po, share/po/ja.po,
- share/po/sr@Latn.po, share/po/he.po, share/po/hr.po, share/po/gl.po,
- share/po/nb.po, share/po/da.po, share/po/fr.po, share/po/cs.po,
- share/po/bs.po, share/po/sk.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sq.po, share/po/hu.po, share/po/ga.po, share/po/tg.po,
- share/po/ta.po, share/po/sr.po, share/po/ko.po, share/po/ro.po,
- share/po/es.po, share/po/uz.po, share/po/az.po, share/po/af.po,
- share/po/lv.po: updated pot file
- updated pot file
-
- * harddrake/sound.pm: fixed typo
-
-2003/08/12 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * drakxtools.spec: drakxtools depends on gurpmi (do_pkgs->install for
- example)
-
-2003/08/12 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/he.po: updated Hebrew file
-
- * share/po/cs.po: updated Czech file
- updated Czech file
-
-2003/08/12 Pixel <pixel at mandrakesoft.com>
-
- * share/gen_locales.sh: by the way, gen_locales.sh makes an error because
- /usr/X11R6/lib/X11/locale/common doesn't exist anymore. It used to
- contain
- ximcp.so.2 xlcDef.so.2 xlcUTF8Load.so.2
- xlibi18n.so.2 xlocale.so.2 xomGeneric.so.2
- in mdk9.0, but mdk9.1 install was without it and it was ok...
-
- * diskdrake/smbnfs_gtk.pm: do pop the "do you want to install samba?"
- (otherwise when cancel is pressed,
- drakconf thinks the install exited abnormally since no window was
- embedded
- whereas "diskdrake --smb" is normally embedded)
-
- * lang.pm: > During the installation when one chooses Uzbek (latin) as a
- language the next
- > installation stage comes in English. However, DrakX creates
- > /usr/share/locale_special/uz/LC_MESSAGES/libDrakX.mo and
- > /usr/share/locale/uz/LC_* files.
- this comes from during_install__l2charset() returning UNICODE which is
- not recognised.
-
-2003/08/12 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: medias -> media
- Mb -> MB [Bug 4381]
-
-2003/08/11 François Pons <fpons at mandrakesoft.com>
-
- * share/rpmsrate: added bash-completion in TERMINALS section.
-
-2003/08/11 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/cy.po, share/po/zh_TW.po, share/po/eo.po, share/po/eu.po,
- share/po/zh_CN.po, share/po/vi.po, share/po/be.po, share/po/pl.po,
- share/po/tr.po, share/po/ca.po, share/po/uk.po, share/po/it.po,
- share/po/is.po, share/po/th.po, share/po/mt.po, share/po/id.po,
- share/po/fi.po, share/po/el.po, share/po/wa.po, share/po/lt.po,
- share/po/ar.po, share/po/bg.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/nl.po, share/po/pt.po, share/po/fa.po, share/po/sl.po,
- share/po/de.po, share/po/uz@Cyrl.po, share/po/ja.po,
- share/po/sr@Latn.po, share/po/he.po, share/po/hr.po, share/po/gl.po,
- share/po/da.po, share/po/fr.po, share/po/cs.po, share/po/bs.po,
- share/po/sk.po, share/po/DrakX.pot, share/po/sv.po, share/po/sq.po,
- share/po/ga.po, share/po/tg.po, share/po/ta.po, share/po/sr.po,
- share/po/ko.po, share/po/ro.po, share/po/es.po, share/po/uz.po,
- share/po/az.po, share/po/af.po, share/po/lv.po: updated pot file
-
- * share/po/et.po, share/po/nb.po, share/po/hu.po: updated Estonian,
- Hungarian and Norvegian files
- updated pot file
-
-2003/08/11 Pixel <pixel at mandrakesoft.com>
-
- * standalone/XFdrake: more newbie-friendly message:
- "You need to log out and back in again for changes to take effect"
- instead of "Please relog into %s to activate the changes"
- (as suggested on cooker, thanks!)
-
- * install2.pm: when any::setupBootloader_simple() fail, use
- any::setupBootloader() afterwards
-
- * install_steps_interactive.pm: when any::setupBootloader_simple() fail,
- use any::setupBootloader() afterwards
- perl_checker compliance
-
- * .perl_checker: why were c, pkgs and URPM::Resolve excluded? i don't
- know, but that's much
- better when perl_checker can see them
-
- * security/msec.pm, ugtk2.pm, scanner.pm, security/l10n.pm,
- install_gtk.pm, services.pm: perl_checker compliance
-
- * lvm.pm: fix typo (fix bug #4239)
-
- * bootloader.pm: perl_checker compliance
- sanitize_ver() can fail and return ''
-
-2003/08/11 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Search for files to restore.
- Fix looping signal_connect in catalog restore.
- GUI fixes - Fabrice FACORAT.
-
-2003/08/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bg.po: updated Bulgarian file
-
-2003/08/10 Pixel <pixel at mandrakesoft.com>
-
- * install_any.pm, install_steps_interactive.pm, standalone/adduserdrake,
- any.pm: use $::prefix instead of passing $prefix to functions
-
- * install_steps.pm: use $::prefix instead of passing $prefix to functions
- since we wrote the password in /etc/passwd, we must convert to shadow
-
- * interactive/gtk.pm, diskdrake/hd_gtk.pm: use
- Gtk2::Button->new_with_label instead of Gtk2::Button->new for some
- widgets otherwise underscores become underlines (bug #4678)
-
- * network/netconnect.pm: perl_checker compliance
- replace "Press \"Forward\" to continue" with "Press \"%s\" to continue"
- (bug #4564)
-
-2003/08/09 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sv.po: updated Swedish file
-
- * share/po/fa.po: updated Farsi file
-
-2003/08/08 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * ugtk2.pm: add gtkset_alignment
-
-2003/08/08 keld
-
- * share/po/da.po: Updates
- soft/control-center/po/da.po soft/ftw/po/da.po
- soft/mdkhtmlbrowser/po/da.po soft/rpmdrake/po/da.po
- soft/urpmi/po/da.po soft/userdrake2/po/da.po
- gi/perl-install/share/po/da.po
-
-2003/08/08 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/cy.po, share/po/zh_TW.po, share/po/eo.po, share/po/eu.po,
- share/po/zh_CN.po, share/po/vi.po, share/po/be.po, share/po/pl.po,
- share/po/tr.po, share/po/ca.po, share/po/uk.po, share/po/it.po,
- share/po/is.po, share/po/th.po, share/po/mt.po, share/po/id.po,
- share/po/fi.po, share/po/el.po, share/po/wa.po, share/po/lt.po,
- share/po/ar.po, share/po/bg.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/nl.po, share/po/pt.po, share/po/fa.po, share/po/sl.po,
- share/po/de.po, share/po/uz@Cyrl.po, share/po/ja.po,
- share/po/sr@Latn.po, share/po/he.po, share/po/hr.po, share/po/gl.po,
- share/po/nb.po, share/po/da.po, share/po/fr.po, share/po/cs.po,
- share/po/bs.po, share/po/sk.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/hu.po, share/po/ga.po, share/po/tg.po, share/po/ta.po,
- share/po/sr.po, share/po/ko.po, share/po/ro.po, share/po/es.po,
- share/po/uz.po, share/po/az.po, share/po/af.po, share/po/lv.po: updated
- pot file
-
- * share/po/et.po: updated Estonian file
- updated pot file
-
- * share/po/sq.po: updated Albanian file
- updated pot file
-
-2003/08/07 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/08/07 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sv.po: updated Hebrew and Swedish files
-
- * share/po/de.po: Small fix (too long string)
-
- * share/po/he.po: updated Hebrew file
- updated Hebrew and Swedish files
-
-2003/08/07 Pixel <pixel at mandrakesoft.com>
-
- * drakxtools.spec:
- - drakxservices: xinetd services have a special treatment
- - localedrake: fix the "zh_TW with country China" case
- - no more stock icons
-
-2003/08/07 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Fix removed users code (thanks gc). Enable
- .backupignore.
- Clean up spastic progress bar. Add more info in "View Config"
- Deal with users that are deleted from the system [Bug 4541].
-
-2003/08/07 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sv.po, share/po/he.po: updated Hebrew and Swedish files
-
-2003/08/06 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Update (partially)
-
-2003/08/06 David Baudens <baudens at mandrakesoft.com>
-
- * standalone/drakfloppy: Use capital letter when needed
-
-2003/08/06 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/az.po: updated Azeri file
-
-2003/08/06 Pixel <pixel at mandrakesoft.com>
-
- * any.pm: try to restore the MBR using "lilo -u" for users not liking the
- default
- bootloader automatic configuration (eg: bug #4415)
-
- * services.pm: in drakxservices, display differently services handled by
- xinetd (bug #4516)
- create services_raw() which returns all the info out of "chkconfig
- --list"
- perl_checker compliance
-
-2003/08/05 François Pons <fpons at mandrakesoft.com>
-
- * install2.pm: added discovery and download meta_class facility in VERSION
- file.
-
- * pkgs.pm: checking transaction allow ordering them ;-)
- make default size of transaction to 13 (?) and avoid rpm ordering which
- seems
- nasty at present (missing configuration read ?).
-
-2003/08/05 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * lang.pm: ghanese ppl don't talk french!?
-
-2003/08/05 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * keyboard.pm: Turkish "F" keyboard was unavailable due to a typo
-
- * share/po/sk.po, share/po/it.po: updated Italian file
-
-2003/08/05 Pixel <pixel at mandrakesoft.com>
-
- * ugtk2.pm: do not invert Ok/Cancel for mdk 9.2 (per IHM team request)
- remove stock icons (per IHM team request)
-
- * any.pm: fix an old typo
-
- * standalone/drakbackup, standalone/drakfloppy, standalone/logdrake,
- diskdrake/hd_gtk.pm, standalone/harddrake2, standalone/drakgw,
- standalone/drakperm, standalone/draksec,
- Xconfig/resolution_and_depth.pm, standalone/mousedrake, Xconfig/main.pm,
- interactive/gtk.pm, standalone/drakboot, standalone/net_monitor,
- services.pm, standalone/drakbug, standalone/drakfont,
- standalone/drakconnect: remove stock icons (per IHM team request)
-
- * lang.pm:
- - fix system_locales_to_ourlocale() returning { lang => 'zh' } for
- $locale_lang == 'zn_CN.UTF8'
- - in standard_locale, return zh_TW instead of zh_CN for lang=zh_TW
- country=CN
- - cleanup standard_locale
-
- * install_any.pm: add flag UTF8 for rpmsrate
-
-2003/08/05 François Pons <fpons at mandrakesoft.com>
-
- * pkgs.pm: checking transaction allow ordering them ;-)
- make default size of transaction to 13 (?) and avoid rpm ordering which
- seems
- nasty at present (missing configuration read ?).
- fixed ordering of packages.
- fixed otherOnly for package selection not correctly updated (according
- to
- changes in perl-URPM).
-
- * install2.pm: added discovery and download meta_class facility in VERSION
- file.
-
-2003/08/05 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * drakxtools.spec: commit titi's requested typos changes
-
- * ftp.pm: revert my bad change
-
-2003/08/05 Pixel <pixel at mandrakesoft.com>
-
- * ugtk2.pm: do not invert Ok/Cancel for mdk 9.2 (per IHM team request)
- remove stock icons (per IHM team request)
-
- * interactive/gtk.pm, standalone/mousedrake, standalone/drakconnect,
- standalone/draksec, standalone/drakperm, diskdrake/hd_gtk.pm,
- standalone/net_monitor, standalone/drakbackup, standalone/harddrake2,
- standalone/drakgw, standalone/drakbug, standalone/drakboot,
- Xconfig/resolution_and_depth.pm, Xconfig/main.pm, standalone/logdrake,
- standalone/drakfloppy, services.pm, standalone/drakfont: remove stock
- icons (per IHM team request)
-
-2003/08/05 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * drakxtools.spec: commit titi's requested typos changes
-
-2003/08/05 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * drakxtools.spec: commit titi's requested typos changes
-
-2003/08/04 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/08/04 François Pons <fpons at mandrakesoft.com>
-
- * pkgs.pm: added log.
- updated with newer perl-URPM
-
-2003/08/04 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * ftp.pm: don't have two / in the urpmi url or it seems it causes problems
- for some people (some ftp servers? wget/curl? proxy? no sé..)
-
- * drakxtools.spec: 9.2-0.27mdk
-
- * ugtk2.pm: fix not possible to select with mouse anymore (rpmdrake etc)
- revert "use checkboxes instead of icons"
-
-2003/08/04 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sr.po, share/po/sq.po, share/po/mt.po, share/po/sr@Latn.po,
- share/po/nb.po, share/po/hr.po, share/po/be.po, share/po/sv.po,
- share/po/vi.po, share/po/fi.po, share/po/ru.po, share/po/eo.po,
- share/po/sl.po, share/po/el.po, share/po/bg.po, share/po/gl.po,
- share/po/DrakX.pot, share/po/az.po, share/po/bs.po, share/po/eu.po,
- share/po/pt.po, share/po/zh_TW.po, share/po/tr.po, share/po/sk.po,
- share/po/ar.po, share/po/it.po, share/po/af.po, share/po/ga.po,
- share/po/da.po, share/po/ta.po, share/po/lt.po, share/po/id.po,
- share/po/ko.po, share/po/cy.po, share/po/is.po, share/po/tg.po,
- share/po/fa.po, share/po/uz@Cyrl.po, share/po/pt_BR.po, share/po/pl.po,
- share/po/nl.po, share/po/lv.po, share/po/cs.po, share/po/th.po,
- share/po/ca.po, share/po/ro.po, share/po/ja.po, share/po/zh_CN.po,
- share/po/es.po, share/po/uz.po, share/po/hu.po, share/po/wa.po,
- share/po/fr.po, share/po/de.po: updated pot file
-
- * share/po/he.po: updated Hebrew file
- updated pot file
-
- * share/po/et.po: updated Estonian file
- updated pot file
-
- * share/po/uk.po: updated Ukrainian file
- updated pot file
-
- * keyboard.pm: removed bad keyboard from list for Swedish;
-
- * lang.pm: removed 'xh_ZA' in double in @locales
- updated list of available locales
-
-2003/08/04 Pixel <pixel at mandrakesoft.com>
-
- * any.pm: fix ask_window_manager_to_logout for gnome
-
- * ugtk2.pm: don't export destroy_window(), this function doesn't exist!
- (thanks to perl_checker)
- perl_checker compliance
- disable selecting text and popping the contextual menu
- (GUI team says it's *horrible* to be able to do select text!)
-
- * drakxtools.spec: gc: commit pixel's 9.2-0.26mdk changelog diff (pixel
- sux)
-
-2003/08/04 tpittich
-
- * share/po/sk.po: updated slovak translation
-
-2003/08/04 Warly <warly at mandrakesoft.com>
-
- * share/logo-mandrake.png: Add new cooker logo for installation
-
-2003/08/03 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/fa.po: Added Farsi file
-
-2003/08/03 Pixel <pixel at mandrakesoft.com>
-
- * bootloader.pm: don't overwrite $o->{bootloader}{method} (much nicer for
- auto_installs)
-
- * install_steps_interactive.pm: more complete name for the setRootPassword
- step: "Set root password and
- network authentication methods" instead of simply "Set root password"
-
- * interactive/gtk.pm: OptionMenus do not have an horizontal scroll-bar.
- This can cause havoc for
- long strings. So use combo box as we used to do in those cases
- (eg: diskdrake Create dialog box in expert mode) (bug #4484)
-
- * rescue/make_rescue_img: fix /sbin/insmod /sbin/rmmod and /sbin/lsmod
- which were dead symlinks
- (to /etc/alternatives/something)
-
- * rescue/guessmounts:
- - copy /etc/mtab to /mnt/etc/mtab to have a nice chrooted "mount" or
- "df"
- - some perl_checker compliance
-
-2003/08/03 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Tool tips.
-
-2003/08/02 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sv.po: updated Swedish file
-
-2003/08/01 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm, install_steps.pm, network/smb.pm,
- install_steps_interactive.pm:
- - move write_smb_conf() from install_any to network::smb
- - rename setAuthentication() to set_authentication()
- - move the work of set_authentication() from install_any to any
- - move the per-authentification kind questions from
- install_steps_interactive::setRootPassword() to
- any::ask_authentification_parameters()
- - various cleanup in code prompting authentification questions
- - call install_any::set_authentication() in
- install_steps::setRootPassword()
- instead of waiting for the installPackages step to be done
- (since setRootPassword occurs *after* packages installation)
- - don't call set_authentification() in install_steps::addUser()
- (why was this done there??)
- => these changes will allow drakauth
-
- * drakxtools.spec: re-adding with -kb
- add drakauth
-
- * Xconfig/xfreeX.pm, Xconfig/parse.pm, Xconfig/xfree4.pm,
- Xconfig/xfree3.pm: => do as Chris Picton suggested
- Chris Picton said (nearly one year ago :-/) :
- I have found the need for many low res screen resolutions for such
- thingas as movie playing, xmame, etc.
-
- The method XFdrake uses to enable modes is to enumerate each mode in the
- XF86Config file. For example (a newly created file):
-
- Subsection "Display"
- Depth 24
- Modes "1280x960" "1152x864" "1024x768" "800x600" "640x480"
- EndSubsection
-
- It would be better (at least under XFree 4, which automatically provides
- resoltions from the monitor, if it is capable), to not limit the modes
- provided to the user
-
- If I use instead, the following:
-
- Subsection "Display"
- Depth 24
- Virtual 1280 960
- EndSubsection
-
- My maximum mode is exactly the same as before, but I have many more low
- resolution modes.
-
- * any.pm, install_any.pm:
- - move write_smb_conf() from install_any to network::smb
- - rename setAuthentication() to set_authentication()
- - move the work of set_authentication() from install_any to any
- - move the per-authentification kind questions from
- install_steps_interactive::setRootPassword() to
- any::ask_authentification_parameters()
- - various cleanup in code prompting authentification questions
- - call install_any::set_authentication() in
- install_steps::setRootPassword()
- instead of waiting for the installPackages step to be done
- (since setRootPassword occurs *after* packages installation)
- - don't call set_authentification() in install_steps::addUser()
- (why was this done there??)
- => these changes will allow drakauth
- use $::prefix
-
- * standalone/drakauth, Makefile.config: add drakauth
-
- * pixmaps/langs/lang-ku.png, pixmaps/langs/lang-uz@Cyrl.png,
- pixmaps/langs/lang-gu.png, pixmaps/langs/lang-zu.png,
- pixmaps/langs/lang-sr@Latn.png, pixmaps/langs/lang-ne.png,
- pixmaps/langs/lang-se.png, pixmaps/langs/lang-xh.png,
- pixmaps/langs/lang-as.png, pixmaps/langs/lang-st.png,
- pixmaps/langs/lang-li.png, pixmaps/langs/lang-ss.png,
- pixmaps/langs/lang-ve.png, pixmaps/langs/lang-ml.png: re-adding with -kb
- removing for re-adding with -kb
-
-2003/08/01 Frederic Crozat <fcrozat at mandrakesoft.com>
-
- * share/rpmsrate: Add gnome calculator and charmap
-
-2003/08/01 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/zh_CN.po: updated Chinese file
-
- * lang.pm: Added some more languages to the list;
- defined kde fonts for some languages
-
- * pixmaps/langs/lang-zu.png, pixmaps/langs/lang-te.png,
- pixmaps/langs/lang-mr.png, pixmaps/langs/lang-uz@Cyrl.png,
- pixmaps/langs/lang-ss.png, pixmaps/langs/lang-xh.png,
- pixmaps/langs/lang-sr@Latn.png, pixmaps/langs/lang-se.png,
- pixmaps/langs/lang-ku.png, pixmaps/langs/lang-ml.png,
- pixmaps/langs/lang-ne.png, pixmaps/langs/lang-as.png,
- pixmaps/langs/lang-li.png, pixmaps/langs/lang-st.png,
- pixmaps/langs/lang-ve.png, pixmaps/langs/lang-gu.png,
- pixmaps/langs/lang-uz.png: New/updated images with language names
-
- * share/po/et.po: updated po file
-
- * share/rpmsrate: Added locale->fonts-* dependencies
-
-2003/08/01 Pixel <pixel at mandrakesoft.com>
-
- * .perl_checker: printer::printerdrake is not perl_checker compliant,
- don't pretend it is!
-
- * standalone/draksec: perl_checker compliance
-
- * Makefile: s/head -1/head -n 1/
- (am i the only one who thinks changing head's usage is really stupid?
- well...)
-
- * diskdrake/smbnfs_gtk.pm: instead of removing the "Search servers" button
- when the search is over, keep
- it to allow searching for new servers (the label is changed from "Search
- servers" to "Search new servers") (bug #4297)
-
- * install_any.pm, any.pm:
- - move write_smb_conf() from install_any to network::smb
- - rename setAuthentication() to set_authentication()
- - move the work of set_authentication() from install_any to any
- - move the per-authentification kind questions from
- install_steps_interactive::setRootPassword() to
- any::ask_authentification_parameters()
- - various cleanup in code prompting authentification questions
- - call install_any::set_authentication() in
- install_steps::setRootPassword()
- instead of waiting for the installPackages step to be done
- (since setRootPassword occurs *after* packages installation)
- - don't call set_authentification() in install_steps::addUser()
- (why was this done there??)
- => these changes will allow drakauth
- use $::prefix
-
- * interactive/gtk.pm: don't warn when label is used with no text for boot
- entries
- (i want titi's explaination on this first)
-
- * Xconfig/card.pm: Intel drivers don't need DontVTSwitch anymore (dixit
- Arnaud de Lorbeau)
-
- * drakxtools.spec, standalone/drakauth, Makefile.config: add drakauth
-
- * install_steps_interactive.pm, install2.pm, install_steps.pm,
- network/smb.pm:
- - move write_smb_conf() from install_any to network::smb
- - rename setAuthentication() to set_authentication()
- - move the work of set_authentication() from install_any to any
- - move the per-authentification kind questions from
- install_steps_interactive::setRootPassword() to
- any::ask_authentification_parameters()
- - various cleanup in code prompting authentification questions
- - call install_any::set_authentication() in
- install_steps::setRootPassword()
- instead of waiting for the installPackages step to be done
- (since setRootPassword occurs *after* packages installation)
- - don't call set_authentification() in install_steps::addUser()
- (why was this done there??)
- => these changes will allow drakauth
-
- * ugtk2.pm: replace signal_disconnect with signal_handler_disconnect
- (needed for perl-gtk2-xs)
-
- * Xconfig/xfree4.pm, Xconfig/xfree3.pm, Xconfig/xfreeX.pm,
- Xconfig/parse.pm: => do as Chris Picton suggested
- Chris Picton said (nearly one year ago :-/) :
- I have found the need for many low res screen resolutions for such
- thingas as movie playing, xmame, etc.
-
- The method XFdrake uses to enable modes is to enumerate each mode in the
- XF86Config file. For example (a newly created file):
-
- Subsection "Display"
- Depth 24
- Modes "1280x960" "1152x864" "1024x768" "800x600" "640x480"
- EndSubsection
-
- It would be better (at least under XFree 4, which automatically provides
- resoltions from the monitor, if it is capable), to not limit the modes
- provided to the user
-
- If I use instead, the following:
-
- Subsection "Display"
- Depth 24
- Virtual 1280 960
- EndSubsection
-
- My maximum mode is exactly the same as before, but I have many more low
- resolution modes.
-
-2003/07/31 François Pons <fpons at mandrakesoft.com>
-
- * rescue/tree/etc/oem: make oem-all by default (obsoleted previous oem)
-
- * install_steps.pm: added redo of initrd files for oem changes to take
- effects for bootsplash...
- fixed /usr/share/bootsplash directory not created for images.
- apply oem image modification to bootsplash too.
-
-2003/07/31 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sv.po: updated pot file
- updated Swedish file
-
- * share/po/ru.po, share/po/et.po, share/po/cy.po, share/po/ca.po,
- share/po/ja.po, share/po/tg.po, share/po/pt_BR.po, share/po/ar.po,
- share/po/lt.po, share/po/id.po, share/po/eo.po, share/po/be.po,
- share/po/af.po, share/po/sq.po, share/po/he.po, share/po/az.po,
- share/po/ta.po, share/po/uk.po, share/po/sk.po, share/po/it.po,
- share/po/ro.po, share/po/pt.po, share/po/es.po, share/po/ko.po,
- share/po/bs.po, share/po/sr@Latn.po, share/po/lv.po, share/po/bg.po,
- share/po/DrakX.pot, share/po/sr.po, share/po/el.po, share/po/nb.po,
- share/po/zh_TW.po, share/po/sl.po, share/po/th.po, share/po/hu.po,
- share/po/cs.po, share/po/ga.po, share/po/is.po, share/po/uz@Cyrl.po,
- share/po/gl.po, share/po/pl.po, share/po/fr.po, share/po/eu.po,
- share/po/de.po, share/po/da.po, share/po/tr.po, share/po/nl.po,
- share/po/vi.po, share/po/wa.po, share/po/hr.po, share/po/zh_CN.po,
- share/po/fi.po, share/po/mt.po, share/po/uz.po: updated pot file
-
-2003/07/31 Pixel <pixel at mandrakesoft.com>
-
- * drakxtools.spec:
- - drakxtools-newt must not require perl(interactive::gtk) or
- perl(ugtk2)
- - only drakbackup require perl(Net::FTP) & perl(Time::localtime), i
- don't want
- this require for all drakxtools. What about moving drakbackup to a
- separate
- package?
-
- * bootloader.pm: use "splash=silent" instead of "quiet".
- kernel messages will still be written, but will be hidden (can be seen
- if
- pressing F2 or escape at boot time)
-
-2003/07/31 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: UI issues from cooker list. Push help off to
- drakhelp.
-
-2003/07/30 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/07/30 François Pons <fpons at mandrakesoft.com>
-
- * interactive/gtk.pm: removed ugly code for scrollbars as pixel has fixed
- it now.
-
- * ugtk2.pm: intermediate commit to completely broken ugtk2 for handling
- tree, in order for
- gc or pixel to fix this...
-
- * pkgs.pm: allow testing locally, should not avoid pkgs to work in real
- place.
-
- * install_steps_interactive.pm: removed remaining code of eval (eq nop).
- remove eval around choosePackagesTree as it display something even if it
- doesn't run...
-
-2003/07/30 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/cs.po, share/po/he.po, share/po/sq.po: updated Albanian, Czech
- and Hebrew files
-
-2003/07/30 Pixel <pixel at mandrakesoft.com>
-
- * network/network.pm: revert to 1.129:
- it's no good removing " (using module ...)" from {DEVICE} field, it's
- much
- better not having it in the first place. See network/ethernet.pm v1.81
- for
- the real fix
-
- * install_steps.pm: Aurora doesn't exist anymore (and it's been that way
- for quite a few time)
-
- * network/ethernet.pm: fix typo (thanks to perl_checker)
- cleanup (especially ensure $interface is not something like "eth0 (using
- module ...)" but only "eth0" (cf network/network.pm 1.130 nasty change)
-
- * timezone.pm:
- - cleanup
- - add pool.ntp.org (and make it the default) (cf bug #4197)
-
- * install_steps_gtk.pm: ensure "No details" is displayed instead of
- "Details" when beginning a new
- package installation round and "No details" was pressed in previous
- round
-
- * any.pm: perl_checker compliance
- - cleanup debug code
- - use read_gnomekderc & update_gnomekderc instead of getVarsFromSh &
- substInFile
- allow other=/dev/fd0 (bug #4405)
-
- * Xconfig/test.pm:
- - move from perl-GTK2 to perl-Gtk2
- - fix an old weird typo
-
- * install_steps_interactive.pm: fix typo
- - cleanup
- - add pool.ntp.org (and make it the default) (cf bug #4197)
-
-2003/07/29 Frederic Crozat <fcrozat at mandrakesoft.com>
-
- * share/rpmsrate: Add vera font by default
-
-2003/07/29 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/DrakX.pot, share/po/wa.po, share/po/da.po, share/po/zh_CN.po,
- share/po/uz@Cyrl.po, share/po/sk.po, share/po/uz.po: updated pot file
-
-2003/07/29 Pixel <pixel at mandrakesoft.com>
-
- * docs/README: remove some really obsolete doc
-
- * fsedit.pm: re-export %fsedit::suggestions as needed (why did titi my-ed
- it?) (fixes bug #4298)
-
- * install2.pm: use formatError for the error message occuring when
- auto_install.cfg is bad
-
- * drakxtools.spec: there is no good url for drakxtools, but at least don't
- give a broken one!
- (thanks to Raul Dias)
-
- * ugtk2.pm: labels are not able to correctly handle long texts, so
- rollback to using
- TextView instead.
- For information on this pb:
- - IHM team doesn't like TextView because the text can be selected, and
- a
- contextual menu is available
- - IHM team doesn't like the difference between small text (using a
- Label) and
- longer text (using a TextView)
- - Label can wrap automatically but not nicely (it doesn't use the full
- width)
- - Label can't wrap CJK text which have no spaces
- Apart from this Label vs TextView pb, Titi only left some code which
- takes
- care of small text, causing the text to be wrapped using warp_text
- (which is
- not proportional font aware) and not using a scrolled window (causing
- the
- license to take more than the screen, the buttons disappearing at the
- bottom
- of the screen)
-
-2003/07/28 François Pons <fpons at mandrakesoft.com>
-
- * share/list.i386: moved mkfs.xfs
-
- * rescue/list.i386: moved xfs files.
-
- * rescue/list.ia64: moved xfs files (problably the same for ia64 ?).
-
- * interactive/gtk.pm: make sure the split of message is done only in
- install mode, as standalone has
- no problem.
-
-2003/07/28 Pixel <pixel at mandrakesoft.com>
-
- * tools/ddcprobe/Makefile: we now need -lm to link
-
-2003/07/28 tpittich
-
- * share/po/sk.po: updated slovak translation
-
-2003/07/26 keld
-
- * share/po/da.po: small update
- gi/perl-install/share/po/da.po
- update!
- soft/menudrake/po/da.po gi/perl-install/share/po/da.po
- update
- gi/perl-install/share/po/da.po
-
-2003/07/26 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ja.po, share/po/uk.po: updated Japanese and Ukrainian files
-
-2003/07/25 aginies
-
- * pixmaps/drakcluster.png: new icon, without alpha-layer (unsupported
- under 9.0)
-
-2003/07/25 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po: Updated Estonian file
- updated pot file
-
- * share/po/ru.po, share/po/cy.po, share/po/ca.po, share/po/ja.po,
- share/po/tg.po, share/po/pt_BR.po, share/po/ar.po, share/po/lt.po,
- share/po/id.po, share/po/eo.po, share/po/be.po, share/po/af.po,
- share/po/sq.po, share/po/he.po, share/po/az.po, share/po/ta.po,
- share/po/uk.po, share/po/sk.po, share/po/it.po, share/po/ro.po,
- share/po/pt.po, share/po/es.po, share/po/ko.po, share/po/bs.po,
- share/po/sr@Latn.po, share/po/lv.po, share/po/bg.po, share/po/DrakX.pot,
- share/po/sr.po, share/po/el.po, share/po/nb.po, share/po/zh_TW.po,
- share/po/sv.po, share/po/sl.po, share/po/th.po, share/po/hu.po,
- share/po/cs.po, share/po/ga.po, share/po/is.po, share/po/uz@Cyrl.po,
- share/po/gl.po, share/po/pl.po, share/po/fr.po, share/po/eu.po,
- share/po/de.po, share/po/da.po, share/po/tr.po, share/po/nl.po,
- share/po/vi.po, share/po/wa.po, share/po/hr.po, share/po/zh_CN.po,
- share/po/fi.po, share/po/mt.po, share/po/uz.po: updated pot file
-
-2003/07/25 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 9.2-0.24mdk
- 9.2-0.24mdk: work in progress
-
- * ugtk2.pm: work in progress (follow interface team recommendation) : use
- checkboxes instead of ugly icon
- inconsistent (aka semi-selected) state still need working
- install caller must be fixed like rpmdrake is
-
- * standalone/drakbug: use std button layout
- use option menus instead of combos in on interface team request
-
- * standalone/drakperm: fix crash on adding new permission
-
-2003/07/24 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Update
-
-2003/07/24 Frederic Lepied <flepied at mandrakesoft.com>
-
- * share/rpmsrate: removed ncompress (contrib)
-
-2003/07/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakboot: hide splash screen section for now on ihm team
- request
-
- * standalone/net_monitor:
- - use option menus instead of combos
- - fix crash on profile change due to netconnect api change
-
- * harddrake/sound.pm: fix #4258
-
- * standalone/logdrake: upcase label
-
- * security/l10n.pm: describe
-
- * security/help.pm: better help
- - filter dumb characters
- - strip help from internal msec doc so that it better fit end user
-
- * share/po/fr.po: update
- one more typo (still fabrice)
- typo fix (spoted by Fabrice Facorat)
- follow english case
-
- * interactive/gtk.pm: if the callee explicitely want to force the user to
- pick sg from a
- fixed set of options, the right widget to use is an OptionMenu rather
- than a Combo (see ugtk2 r1.141 log and ugtk2::Gtk2::OptionMenu
- sub-module)
-
- * standalone/drakperm: since we've replace save "button" by "ok", exit the
- tool after saving the preferences
- fix tree filling
- - ugtk2-ize dialog construction
- - fix tip setting
- localize level option menu
- settings dialog:
- - localize all fields
- - add tips for all check boxes
- use stock icons on rule toolbar
- make label be undserstandable
- upcase various widget texts (still have to localize settings dialog
- fields though)
- simplify (un|)sensitive property setting of the list
- use option menus instead of combos in settings dialog too
- use stock icons and std button layout in settings dialog
- use option menus instead of combos
-
- * drakxtools.spec: bump perl-Gtk2 requires in order to fix drakfont bug
- with utf8 file
- names
- 9.2-0.23mdk
- draksec: requires a non broken msec
- 9.2-0.22mdk
-
- * standalone/mousedrake: use std button layout
-
- * standalone/draksec: restore help for msec checks
-
- * standalone/drakconnect: remove nonsense expert button
- - (configure_lan) directly use global variables
- - double click on ethernet lines run lan config dialog
-
-2003/07/23 Daouda Lo <daouda at mandrakesoft.com>
-
- * standalone/drakhelp:
- - ru, de and it have no specific drakxtools help packages. Default to
- english
- - retest $$path to see if the page exists.
- - don't launch browser unless help page exists.
-
-2003/07/23 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/he.po: fixed "arrows"
-
- * share/po/uz@Cyrl.po, share/po/uz.po: Added Uzbek cyrillic file
-
-2003/07/23 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Fix catalog restore for perl-Gtk2
- Fix rsync behavior - broken in perl_checker fixes
- Fix wildcard_to_tarfile
-
-2003/07/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * any.pm: new autologin scheme (spec87): directly configure display
- manager
-
- * drakxtools.spec: log drakfont fixes
- 9.2-0.21mdk
-
- * standalone/drakboot: we do not need anymore autologin (spec87)
-
- * standalone/drakfont: fix #1679 & #3673
-
-2003/07/22 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/07/22 François Pons <fpons at mandrakesoft.com>
-
- * install_gtk.pm: fixed titi sucks (as usually as he never tests nor
- checks what he is writing).
-
- * standalone.pm: avoid being clashed by signature checking when installing
- packages,
- need a better fix later.
-
- * interactive/gtk.pm: tempory fix for title not having scroll bars (which
- sounds reasonable ?), as the
- size of the window is fixed the low part of the window is not visible.
- titi who makes the portage to newer Gtk2 has not tested this (again, for
- info).
-
-2003/07/22 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po: updated Estonian file
-
-2003/07/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * share/po/fr.po: last but not least ...
- more unfuzzy
- unfuzzy...
- more french translation
- better phrasing
-
- * drakxtools.spec: first bits of 9.2-0.21mdk
- 9.2-0.20mdk
- 9.2-0.20mdk
-
- * standalone/draksec: N_ON_E is of no use, NONE is
- simplify and order vertically OptionMenus
-
- * network/network.pm: fix fpons sucks (as usuall as he neither tests nor
- care about bug
- reports)
-
- * standalone/drakconnect:
- - fix "lan config" dialog where fields were not filled
- - factorize some code in order to achieve it
-
- * standalone/drakgw: disable service start/stop too in testing mode
- do not install package in testing mode
- no valid reason not to be able to go back at first step
- fix going backward in the wizard at deepest stages
- testing mode: enable to go some steps further when testing this tool
- fix back step
-
-2003/07/21 François Pons <fpons at mandrakesoft.com>
-
- * install_steps_gtk.pm: avoid src package to be seen in tree.
-
- * pkgs.pm: fixed setSelectedFromCompssList (updated with newer perl-URPM
- interface),
- more need to be done. maybe increased speed of unselectAllPackages.
-
-2003/07/21 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ru.po, share/po/et.po, share/po/cy.po, share/po/ca.po,
- share/po/ja.po, share/po/tg.po, share/po/pt_BR.po, share/po/ar.po,
- share/po/lt.po, share/po/id.po, share/po/eo.po, share/po/be.po,
- share/po/af.po, share/po/sq.po, share/po/he.po, share/po/az.po,
- share/po/ta.po, share/po/uk.po, share/po/sk.po, share/po/it.po,
- share/po/ro.po, share/po/pt.po, share/po/es.po, share/po/ko.po,
- share/po/bs.po, share/po/sr@Latn.po, share/po/lv.po, share/po/bg.po,
- share/po/DrakX.pot, share/po/sr.po, share/po/el.po, share/po/nb.po,
- share/po/zh_TW.po, share/po/sv.po, share/po/sl.po, share/po/th.po,
- share/po/hu.po, share/po/cs.po, share/po/ga.po, share/po/is.po,
- share/po/gl.po, share/po/pl.po, share/po/fr.po, share/po/eu.po,
- share/po/de.po, share/po/da.po, share/po/tr.po, share/po/nl.po,
- share/po/vi.po, share/po/wa.po, share/po/hr.po, share/po/zh_CN.po,
- share/po/fi.po, share/po/mt.po, share/po/uz.po: updated pot file
-
-2003/07/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakconnect: mcc view: add an help button (and ugtk2-ize main
- window buttons btw)
-
- * network/netconnect.pm: add a hint if we never restore profiles feature
- do not gratuitously waste space
- if we really want the type connection to be translated by translate()
- call in
- step_2, we should mark it as translatable for gettext somewhere ...
- fix final success message:
- - fix join usage
- - fix gtk frontend detection
- do not loop if one refuse to save changes, just skip the save step
- keep user changes on back step
- fix no previous button when using ask_okcancel() in wizard mode due to
- *very*
- ugly "$common->{cancel} = '' if !defined wantarray();" in interactive.pm
- anyway, the whole pre_func() idea was totally dumb
- it now looks a little cleaner
-
-
-
- making all main configuration callbacks having the same prototype and
- name
- would enable further cleanups (direct call to
- network::$net_module{$type}::configure(...);)
-
- * standalone/harddrake2: add hints for translators
- workaround buggy gtk+-2.x that do not wrap textviews when realized
-
- * standalone/diskdrake: provide some help access in standalone mode
-
- * network/network.pm: dhcp host name cannot be set if one want to get it
- from dhcp server
-
- * drakxtools.spec: 9.2-0.19mdk
-
- * standalone/draksec: add hints for translators
- make 1st tab title somewhat clearer
- fix infamous "when embedded draksec can be enlarged but never shrink
- back"
- one should not be able to set syadmin when no reports
- - describe all security levels
- - make it clean than security admin is not a security level
- - colorize security levels names
- - use a label instead of textview
-
-2003/07/21 François Pons <fpons at mandrakesoft.com>
-
- * install_steps_gtk.pm: avoid src package to be seen in tree.
-
- * pkgs.pm: fixed setSelectedFromCompssList (updated with newer perl-URPM
- interface),
- more need to be done. maybe increased speed of unselectAllPackages.
-
-2003/07/21 François Pons <fpons at mandrakesoft.com>
-
- * install_steps_gtk.pm: avoid src package to be seen in tree.
-
- * pkgs.pm: fixed setSelectedFromCompssList (updated with newer perl-URPM
- interface),
- more need to be done. maybe increased speed of unselectAllPackages.
-
-2003/07/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/draksec: fix checks loading
- fix checks setting
- fix config load
-
- * drakxtools.spec: 9.2-0.18mdk
-
- * security/msec.pm: sort functions & checks when writing configuration
-
-2003/07/18 erwan
-
- * pixmaps/drakcluster.png: new drakcluster icon from LN
-
-2003/07/18 François Pons <fpons at mandrakesoft.com>
-
- * Makefile: trying to follow the sucking of titi...
- use perl-Gtk2 and perl-Glib files.
-
-2003/07/18 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk2.pm: new binding returns a list intead of an array ref
-
- * network/netconnect.pm: sync translation with stock item
-
- * standalone/draksec: now that we display localized descriptions instead
- of raw function
- names, we've to sort the formers instead of sorting the laters
- fix preferences loading & saving
-
- * interactive/gtk.pm: only catch real wrong callees
-
- * drakxtools.spec: add bug ref
- first 9.2-0.17mdk bits
-
-2003/07/17 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/07/17 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk2.pm: do not exit the whole app when one destroy a dialog
- (_create_dialog) default is "as much as needed" size
- perl_checker fixes
- center_always is unuser-friendly
- - ihm team said: always use labels, textview are stupid nonsenses
- - fcrozat then said: labels have no wrapping problems with cjk and the
- like
- use stock items in wizards
-
- * network/ethernet.pm: proxy configuration step: do not go back two steps
- back on "previous"
- click, but only one back
-
- * standalone/drakconnect: adjust dialogs size
- correctly align fields in "lan configuration" dialog
- perl_checker fixes
- center_always is unuser-friendly
- fix internet gateway buttons layout
- remove ugly icon
-
- * network/network.pm: properly use checkboxes
-
- * drakxtools.spec: one more bit for 0.16mdk
- 9.2-0.16mdk
- frop gtk+1 requires
-
- * network/netconnect.pm: fix usage of bool type in interactive: put the
- text in the checkbox's
- label instead of packing a standalone label *and* a checkbox with an
- empty label
-
- * interactive/gtk.pm: perl_checker fix
- simplify with gtkshow()
- intercept buggy callees/users of bool type that wrongly pass label
- instead of text
-
-2003/07/16 aginies
-
- * fsedit.pm: now swap is before / on client node
-
-2003/07/16 Pixel <pixel at mandrakesoft.com>
-
- * commands.pm, swap.pm, Makefile: remove mkswap from commands.pm, so no
- need anymore to have mkswap_ (the drawback is that the mkswap command
- won't create the device anymore)
-
-2003/06/06 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/Makefile: we're in cooker now
-
- * share/logo-mandrake.png: cooker
-
-2003/06/06 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * help.pm: "Country" -> "Country" . " / Region" in a few places still
- missing that change
-
-2003/06/06 Pixel <pixel at mandrakesoft.com>
-
- * fs.pm: stricter regexp when looking /dev/xxx otherwise it is used also
- for nfs names
- and causes havoc
-
- * standalone/fileshareset: fileshareset doesn't use MDK::Common
-
- * any.pm: perl_checker compliance
-
- * fsedit.pm: fix computeSize which took into account suggested partitions
- on another drives
- (which is especially bad for LVMs)
-
- * network/nfs.pm:
- - handle spaces in exported directories
- - simplify using --no-headers when calling showmount
-
- * common.pm, ugtk2.pm: ensure N() is not called before ugtk2 is
- initialised, otherwise
- the gettext is not forced to utf8
-
- * diskdrake/interactive.pm: fix typos + perl_checker fixes
-
- * standalone.pm: don't use N() so early
- (beware, this removes translation, some translate() calls must be
- added!)
-
-2003/06/05 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * Makefile: fix install crashed X server because /usr/bin/true was no more
- available :/
-
-2003/06/05 Pixel <pixel at mandrakesoft.com>
-
- * mdk-stage1/Makefile.common: fix build with new gcc
-
- * fs.pm: make perl_checker a happy bot
- don't use description of fstab options from manpage mount(8), inline
- them in the source
-
-2003/06/05 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Bug 3647 - Chinese translations. More
- perl_checker fixes.
-
-2003/06/05 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/v4l.pm: support more tuners and tv cards
-
-2003/06/04 François Pons <fpons at mandrakesoft.com>
-
- * rescue/list: updated with rpm 4.2.
-
- * tools/updatehdlist: update only RPMS1 and RPMS2 to keep other package in
- RPMS3.
-
- * tools/syncrpms: avoid updating kernel-BOOT (as kernel-BOOT of cooker is
- pure shit).
-
- * install_steps_gtk.pm: allow X server to use :9 (:1 seems to not working
- ?) and disable access control
- (no clients can connect by default).
-
- * pkgs.pm: updated for newer perl-URPM (0.90 series).
-
-2003/06/04 gbeauchesne
-
- * mdk-stage1/dietlibc/include/termio.h,
- mdk-stage1/dietlibc/i386/sendmsg.S, mdk-stage1/dietlibc/i386/asin.S,
- mdk-stage1/dietlibc/libpthread/pthread_flockfile.c,
- mdk-stage1/dietlibc/ia64/__longjmp.S, mdk-stage1/dietlibc/i386/strcmp.S,
- mdk-stage1/dietlibc/libcruft/scan_ulong.c,
- mdk-stage1/dietlibc/libdl/_dl_relocate.c,
- mdk-stage1/dietlibc/i386/stpcpy.S, mdk-stage1/dietlibc/i386/ltostr.S,
- mdk-stage1/dietlibc/libugly/utent.c, mdk-stage1/dietlibc/i386/connect.S,
- mdk-stage1/dietlibc/i386/atan2.S,
- mdk-stage1/dietlibc/syscalls.s/mlock.S,
- mdk-stage1/dietlibc/ppc/syscalls.h, mdk-stage1/dietlibc/lib/__ptrace.c,
- mdk-stage1/dietlibc/libstdio/scanf.c, mdk-stage1/dietlibc/i386/memcmp.S,
- mdk-stage1/dietlibc/include/stdarg-cruft.h,
- mdk-stage1/dietlibc/i386/fmod.S, mdk-stage1/dietlibc/i386/strrchr.S,
- mdk-stage1/dietlibc/libcruft/bzero.c,
- mdk-stage1/dietlibc/syscalls.s/sendfile64.S,
- mdk-stage1/dietlibc/libugly/iconv.c,
- mdk-stage1/dietlibc/libugly/getprotobyname.c,
- mdk-stage1/dietlibc/include/asm/types.h,
- mdk-stage1/dietlibc/i386/accept.S,
- mdk-stage1/dietlibc/include/sys/fsuid.h,
- mdk-stage1/dietlibc/syscalls.s/ftruncate64.S,
- mdk-stage1/dietlibc/x86_64/socket.S,
- mdk-stage1/dietlibc/libcruft/gethostbyaddr2_r.c,
- mdk-stage1/dietlibc/lib/llabs.c, mdk-stage1/dietlibc/i386/memccpy.S,
- mdk-stage1/dietlibc/libugly/getservbyname.c,
- mdk-stage1/dietlibc/include/write12.h, mdk-stage1/dietlibc/i386/bind.S,
- mdk-stage1/dietlibc/x86_64/listen.S,
- mdk-stage1/dietlibc/alpha/errlist.S,
- mdk-stage1/dietlibc/libcruft/setlocale.c,
- mdk-stage1/dietlibc/x86_64/msgctl.S,
- mdk-stage1/dietlibc/syscalls.s/setfsuid.S,
- mdk-stage1/dietlibc/lib/tcflow.c,
- mdk-stage1/dietlibc/syscalls.s/geteuid32.S,
- mdk-stage1/dietlibc/libcruft/scandir.c,
- mdk-stage1/dietlibc/syscalls.s/getuid32.S,
- mdk-stage1/dietlibc/include/asm/ia64-sigcontext.h,
- mdk-stage1/dietlibc/libcruft/getusershell.c,
- mdk-stage1/dietlibc/i386/floor.S,
- mdk-stage1/dietlibc/syscalls.s/alarm.S,
- mdk-stage1/dietlibc/ia64/utime.S, mdk-stage1/dietlibc/x86_64/mmap.S,
- mdk-stage1/dietlibc/ia64/README, mdk-stage1/dietlibc/libcruft/tmpnam.c,
- mdk-stage1/dietlibc/libm/acosh.c,
- mdk-stage1/dietlibc/libcruft/alphasort64.c,
- mdk-stage1/dietlibc/syscalls.s/fchown32.S,
- mdk-stage1/dietlibc/libcruft/getopt_long_only.c,
- mdk-stage1/dietlibc/syscalls.s/munlock.S,
- mdk-stage1/dietlibc/ppc/clone.S, mdk-stage1/dietlibc/libcruft/pwbuf.c,
- mdk-stage1/dietlibc/i386/getpeername.S,
- mdk-stage1/dietlibc/ia64/clone.S, mdk-stage1/dietlibc/x86_64/setjmp.S,
- mdk-stage1/dietlibc/libpthread/pthread_fgetc.c,
- mdk-stage1/dietlibc/ia64/listen.S,
- mdk-stage1/dietlibc/include/net/if_ether.h,
- mdk-stage1/dietlibc/lib/strtof.c,
- mdk-stage1/dietlibc/x86_64/Makefile.add,
- mdk-stage1/dietlibc/lib/errlistu.c,
- mdk-stage1/dietlibc/libstdio/vfscanf.c,
- mdk-stage1/dietlibc/syscalls.s/create_module.S,
- mdk-stage1/dietlibc/alpha/syscalls.h,
- mdk-stage1/dietlibc/x86_64/unified.S, mdk-stage1/dietlibc/lib/write12.c,
- mdk-stage1/dietlibc/lib/__stime.c,
- mdk-stage1/dietlibc/include/netpacket/packet.h,
- mdk-stage1/dietlibc/i386/poly.S, mdk-stage1/dietlibc/libugly/netent.c,
- mdk-stage1/dietlibc/ia64/msgrcv.S,
- mdk-stage1/dietlibc/libcruft/seteuid.c,
- mdk-stage1/dietlibc/syscalls.s/delete_module.S,
- mdk-stage1/dietlibc/ia64/pipe.S, mdk-stage1/dietlibc/libcruft/setegid.c,
- mdk-stage1/dietlibc/libpthread/pthread_getschedparam.c,
- mdk-stage1/dietlibc/include/linux/nfs.h,
- mdk-stage1/dietlibc/libugly/gai_strerror.c,
- mdk-stage1/dietlibc/i386/rint.S,
- mdk-stage1/dietlibc/include/asm/arm-sigcontext.h,
- mdk-stage1/dietlibc/lib/ipv6constants.c,
- mdk-stage1/dietlibc/lib/sigpending.c,
- mdk-stage1/dietlibc/i386/syscalls.h,
- mdk-stage1/dietlibc/include/float.h, mdk-stage1/dietlibc/i386/hypot.S,
- mdk-stage1/dietlibc/i386/cosh.S, mdk-stage1/dietlibc/x86_64/semop.S,
- mdk-stage1/dietlibc/libugly/strndup.c, mdk-stage1/dietlibc/libm/erf.c,
- mdk-stage1/dietlibc/lib/memmem.c,
- mdk-stage1/dietlibc/syscalls.s/setregid32.S,
- mdk-stage1/dietlibc/libcruft/tempnam.c,
- mdk-stage1/dietlibc/libcompat/syscall.S,
- mdk-stage1/dietlibc/x86_64/recvfrom.S,
- mdk-stage1/dietlibc/lib/strtold.c,
- mdk-stage1/dietlibc/syscalls.s/setfsgid32.S,
- mdk-stage1/dietlibc/libcruft/herror.c,
- mdk-stage1/dietlibc/libcruft/bcopy.c,
- mdk-stage1/dietlibc/libcruft/__parse_ws.c,
- mdk-stage1/dietlibc/i386/sendto.S, mdk-stage1/dietlibc/ia64/sendmsg.S,
- mdk-stage1/dietlibc/i386/sleep.S, mdk-stage1/dietlibc/i386/shutdown.S,
- mdk-stage1/dietlibc/libugly/getservent.c,
- mdk-stage1/dietlibc/libugly/putpwent.c, mdk-stage1/dietlibc/libm/sinh.c,
- mdk-stage1/dietlibc/libcruft/getspent_r.c,
- mdk-stage1/dietlibc/i386/send.S, mdk-stage1/dietlibc/ia64/msgget.S,
- mdk-stage1/dietlibc/libcruft/killpg.c,
- mdk-stage1/dietlibc/x86_64/__testandset.S,
- mdk-stage1/dietlibc/syscalls.s/rt_sigqueueinfo.S,
- mdk-stage1/dietlibc/libstdio/fsetpos.c,
- mdk-stage1/dietlibc/i386/isleap.S, mdk-stage1/dietlibc/i386/PIC.h,
- mdk-stage1/dietlibc/syscalls.s/rt_sigtimedwait.S,
- mdk-stage1/dietlibc/lib/tcsendbreak.c,
- mdk-stage1/dietlibc/x86_64/shmat.S,
- mdk-stage1/dietlibc/libcruft/dnscruft3.c,
- mdk-stage1/dietlibc/libugly/difftime.c,
- mdk-stage1/dietlibc/libstdio/ftello.c,
- mdk-stage1/dietlibc/x86_64/sendto.S,
- mdk-stage1/dietlibc/x86_64/syscalls.h, mdk-stage1/dietlibc/ia64/send.S,
- mdk-stage1/dietlibc/ia64/bind.S, mdk-stage1/dietlibc/x86_64/shmctl.S,
- mdk-stage1/dietlibc/libcruft/clock.c,
- mdk-stage1/dietlibc/syscalls.s/settimeofday.S,
- mdk-stage1/dietlibc/libugly/protoent_buf.c,
- mdk-stage1/dietlibc/libstdio/fgetpos.c,
- mdk-stage1/dietlibc/libugly/getprotobynumber_r.c,
- mdk-stage1/dietlibc/sparc/strlen.S,
- mdk-stage1/dietlibc/lib/sigprocmask.c,
- mdk-stage1/dietlibc/ia64/__nice.c,
- mdk-stage1/dietlibc/syscalls.s/mmap2.S, mdk-stage1/dietlibc/i386/sqrt.S,
- mdk-stage1/dietlibc/i386/strlen.S, mdk-stage1/dietlibc/ia64/shmget.S,
- mdk-stage1/dietlibc/x86_64/bind.S,
- mdk-stage1/dietlibc/syscalls.s/setreuid32.S,
- mdk-stage1/dietlibc/include/net/ethernet.h,
- mdk-stage1/dietlibc/include/linux/eventpoll.h,
- mdk-stage1/dietlibc/syscalls.s/errlist.S,
- mdk-stage1/dietlibc/i386/getenv.S, mdk-stage1/dietlibc/libm/bessel.c,
- mdk-stage1/dietlibc/libm/ipow.c, mdk-stage1/dietlibc/libm/atanh.c,
- mdk-stage1/dietlibc/libstdio/fdglue2.c,
- mdk-stage1/dietlibc/libcruft/getgrent_r.c,
- mdk-stage1/dietlibc/i386/strcpy.S,
- mdk-stage1/dietlibc/include/linux/types.h,
- mdk-stage1/dietlibc/include/asm/ppc-sigcontext.h,
- mdk-stage1/dietlibc/libugly/unlockpt.c,
- mdk-stage1/dietlibc/ia64/unified.S,
- mdk-stage1/dietlibc/libugly/freeaddrinfo.c,
- mdk-stage1/dietlibc/libcruft/getpwuid_r.c,
- mdk-stage1/dietlibc/ia64/semget.S,
- mdk-stage1/dietlibc/libcruft/hstrerror.c,
- mdk-stage1/dietlibc/libcruft/grbuf.c,
- mdk-stage1/dietlibc/sparc/syscalls.h,
- mdk-stage1/dietlibc/libstdio/fseeko64.c,
- mdk-stage1/dietlibc/libcruft/getgrnam_r.c,
- mdk-stage1/dietlibc/i386/log.S, mdk-stage1/dietlibc/lib/sigsuspend.c,
- mdk-stage1/dietlibc/ia64/getpeername.S,
- mdk-stage1/dietlibc/i386/strncmp.S,
- mdk-stage1/dietlibc/syscalls.s/setfsuid32.S,
- mdk-stage1/dietlibc/syscalls.s/__pwrite.S,
- mdk-stage1/dietlibc/ia64/shmdt.S, mdk-stage1/dietlibc/libm/rint.c,
- mdk-stage1/dietlibc/libcruft/mktemp.c,
- mdk-stage1/dietlibc/syscalls.s/rt_sigsuspend.S,
- mdk-stage1/dietlibc/libcruft/__end_parse.c,
- mdk-stage1/dietlibc/syscalls.s/adjtimex.S,
- mdk-stage1/dietlibc/i386/exp2.S,
- mdk-stage1/dietlibc/libcruft/alphasort.c,
- mdk-stage1/dietlibc/libugly/openpty.c,
- mdk-stage1/dietlibc/profiling/monitor.c,
- mdk-stage1/dietlibc/ia64/recv.S,
- mdk-stage1/dietlibc/syscalls.s/getresgid32.S,
- mdk-stage1/dietlibc/lib/atoll.c,
- mdk-stage1/dietlibc/libcruft/getopt_long.c,
- mdk-stage1/dietlibc/ia64/connect.S,
- mdk-stage1/dietlibc/include/linux/loop.h,
- mdk-stage1/dietlibc/alpha/sigaction.c,
- mdk-stage1/dietlibc/libstdio/vfprintf.c,
- mdk-stage1/dietlibc/libugly/getservent_r.c,
- mdk-stage1/dietlibc/ia64/recvmsg.S,
- mdk-stage1/dietlibc/libcruft/mkdtemp.c,
- mdk-stage1/dietlibc/ia64/Makefile.add,
- mdk-stage1/dietlibc/libshell/basename.c,
- mdk-stage1/dietlibc/x86_64/semget.S,
- mdk-stage1/dietlibc/x86_64/getsockopt.S,
- mdk-stage1/dietlibc/syscalls.s/fdatasync.S,
- mdk-stage1/dietlibc/libcruft/spbuf.c,
- mdk-stage1/dietlibc/syscalls.s/errno.S,
- mdk-stage1/dietlibc/syscalls.s/setfsgid.S,
- mdk-stage1/dietlibc/syscalls.s/n_sigpending.S,
- mdk-stage1/dietlibc/ia64/semop.S, mdk-stage1/dietlibc/lib/sigaction.c,
- mdk-stage1/dietlibc/libdl/_dl_main.c,
- mdk-stage1/dietlibc/include/sys/alpha-ioctl.h,
- mdk-stage1/dietlibc/x86_64/getpeername.S,
- mdk-stage1/dietlibc/libpthread/pthread_internal.c,
- mdk-stage1/dietlibc/i386/tan.S, mdk-stage1/dietlibc/lib/__isinf.c,
- mdk-stage1/dietlibc/i386/strncpy.S,
- mdk-stage1/dietlibc/lib/__v_printf.c,
- mdk-stage1/dietlibc/syscalls.s/msync.S,
- mdk-stage1/dietlibc/syscalls.s/epoll_ctl.S,
- mdk-stage1/dietlibc/x86_64/clone.S,
- mdk-stage1/dietlibc/libugly/getservbyport_r.c,
- mdk-stage1/dietlibc/libcruft/getopt_data.c,
- mdk-stage1/dietlibc/libcompat/stpcpy.c,
- mdk-stage1/dietlibc/libcruft/getpwent_r.c,
- mdk-stage1/dietlibc/include/linux/posix_types.h,
- mdk-stage1/dietlibc/libstdio/fseeko.c,
- mdk-stage1/dietlibc/libugly/getnameinfo.c,
- mdk-stage1/dietlibc/include/dietref.h, mdk-stage1/dietlibc/libm/asinh.c,
- mdk-stage1/dietlibc/include/pty.h, mdk-stage1/dietlibc/i386/exp.S,
- mdk-stage1/dietlibc/include/sys/soundcard.h,
- mdk-stage1/dietlibc/include/sys/klog.h,
- mdk-stage1/dietlibc/libpthread/pthread_setschedparam.c,
- mdk-stage1/dietlibc/i386/sqrtl.S,
- mdk-stage1/dietlibc/syscalls.s/rt_sigaction.S,
- mdk-stage1/dietlibc/i386/strcasecmp.S,
- mdk-stage1/dietlibc/syscalls.s/setgid32.S,
- mdk-stage1/dietlibc/i386/__half.S,
- mdk-stage1/dietlibc/include/asm/sparc-sigcontext.h,
- mdk-stage1/dietlibc/profiling/__mcount.c,
- mdk-stage1/dietlibc/include/sys/arm-ioctl.h,
- mdk-stage1/dietlibc/libugly/getprotobynumber.c,
- mdk-stage1/dietlibc/i386/log2.S, mdk-stage1/dietlibc/ia64/mmap.S,
- mdk-stage1/dietlibc/sparc/errlist.S,
- mdk-stage1/dietlibc/ia64/__testandset.S,
- mdk-stage1/dietlibc/include/sys/i386-ioctl.h,
- mdk-stage1/dietlibc/libcruft/getpwent.c,
- mdk-stage1/dietlibc/syscalls.s/environ.S,
- mdk-stage1/dietlibc/libpthread/pthread_errno.c,
- mdk-stage1/dietlibc/alpha/__alarm.c, mdk-stage1/dietlibc/i386/mmap64.S,
- mdk-stage1/dietlibc/i386/vfork.S, mdk-stage1/dietlibc/ia64/vfork.S,
- mdk-stage1/dietlibc/libugly/timezone.c,
- mdk-stage1/dietlibc/libugly/servent_buf.c,
- mdk-stage1/dietlibc/x86_64/getsockname.S,
- mdk-stage1/dietlibc/include/sys/prctl.h,
- mdk-stage1/dietlibc/x86_64/semctl.S, mdk-stage1/dietlibc/i386/write12.S,
- mdk-stage1/dietlibc/libm/cosh.c, mdk-stage1/dietlibc/include/libgen.h,
- mdk-stage1/dietlibc/syscalls.s/bdflush.S,
- mdk-stage1/dietlibc/libcompat/re_bsd.c,
- mdk-stage1/dietlibc/libdl/_dl_rel.c,
- mdk-stage1/dietlibc/alpha/__testandset.S,
- mdk-stage1/dietlibc/libstdio/vscanf.c, mdk-stage1/dietlibc/i386/atanh.S,
- mdk-stage1/dietlibc/i386/copysign.S, mdk-stage1/dietlibc/i386/htons.S,
- mdk-stage1/dietlibc/libugly/hasmntopt.c,
- mdk-stage1/dietlibc/libm/gamma.c, mdk-stage1/dietlibc/ia64/msgctl.S,
- mdk-stage1/dietlibc/i386/recvfrom.S,
- mdk-stage1/dietlibc/libcompat/daemon.c,
- mdk-stage1/dietlibc/profiling/PORTING,
- mdk-stage1/dietlibc/libdl/_dl_load.c,
- mdk-stage1/dietlibc/libcompat/getline.c,
- mdk-stage1/dietlibc/include/sys/sparc-ioctl.h,
- mdk-stage1/dietlibc/libstdio/vprintf.c,
- mdk-stage1/dietlibc/include/asm/statfs.h,
- mdk-stage1/dietlibc/x86_64/shmdt.S, mdk-stage1/dietlibc/libugly/dirfd.c,
- mdk-stage1/dietlibc/i386/atoll.S, mdk-stage1/dietlibc/ia64/sendto.S,
- mdk-stage1/dietlibc/syscalls.s/getegid32.S,
- mdk-stage1/dietlibc/i386/getsockopt.S,
- mdk-stage1/dietlibc/libpthread/pthread_sigmask.c,
- mdk-stage1/dietlibc/libpthread/pthread_key.c,
- mdk-stage1/dietlibc/x86_64/shmget.S,
- mdk-stage1/dietlibc/libcruft/__parse_1.c,
- mdk-stage1/dietlibc/alpha/socketpair.S,
- mdk-stage1/dietlibc/sparc/sigaction.c,
- mdk-stage1/dietlibc/x86_64/shutdown.S,
- mdk-stage1/dietlibc/libdl/_dl_alloc.c,
- mdk-stage1/dietlibc/lib/setlinebuf.c, mdk-stage1/dietlibc/lib/bcd.c,
- mdk-stage1/dietlibc/libcruft/getgrent.c,
- mdk-stage1/dietlibc/i386/mcount.S, mdk-stage1/dietlibc/i386/ceil.S,
- mdk-stage1/dietlibc/libpthread/pthread_sys_fdatasync.c,
- mdk-stage1/dietlibc/x86_64/recv.c, mdk-stage1/dietlibc/lib/adjtime.c,
- mdk-stage1/dietlibc/i386/expm1.S, mdk-stage1/dietlibc/ia64/setjmp.S,
- mdk-stage1/dietlibc/i386/cos.S, mdk-stage1/dietlibc/i386/fabs.S,
- mdk-stage1/dietlibc/i386/htonl.S, mdk-stage1/dietlibc/i386/log10.S,
- mdk-stage1/dietlibc/i386/pow.S,
- mdk-stage1/dietlibc/include/linux/if_ether.h,
- mdk-stage1/dietlibc/lib/cfsetospeed.c,
- mdk-stage1/dietlibc/alpha/n_sigprocmask.S,
- mdk-stage1/dietlibc/libcruft/localeconv.c,
- mdk-stage1/dietlibc/ia64/shmat.S, mdk-stage1/dietlibc/libstdio/puts.c,
- mdk-stage1/dietlibc/i386/memset.S, mdk-stage1/dietlibc/libm/poly.c,
- mdk-stage1/dietlibc/include/libintl.h,
- mdk-stage1/dietlibc/libugly/ftime.c,
- mdk-stage1/dietlibc/ia64/socketpair.S, mdk-stage1/dietlibc/lib/rand_r.c,
- mdk-stage1/dietlibc/i386/ilogb.S,
- mdk-stage1/dietlibc/libpthread/pthread_equal.c,
- mdk-stage1/dietlibc/libcrypt/md5.c, mdk-stage1/dietlibc/i386/cbrt.S,
- mdk-stage1/dietlibc/syscalls.s/ptrace.S,
- mdk-stage1/dietlibc/syscalls.s/pivot_root.S,
- mdk-stage1/dietlibc/libdl/elf_hash.h, mdk-stage1/dietlibc/include/md5.h,
- mdk-stage1/dietlibc/x86_64/__longjmp.S,
- mdk-stage1/dietlibc/include/cpio.h,
- mdk-stage1/dietlibc/syscalls.s/chown32.S,
- mdk-stage1/dietlibc/x86_64/connect.S,
- mdk-stage1/dietlibc/libugly/ptsname.c,
- mdk-stage1/dietlibc/libstdio/fdprintf.c,
- mdk-stage1/dietlibc/ia64/__waitpid.c,
- mdk-stage1/dietlibc/i386/socketpair.S,
- mdk-stage1/dietlibc/libstdio/fscanf.c,
- mdk-stage1/dietlibc/ia64/getsockname.S,
- mdk-stage1/dietlibc/lib/sigtimedwait.c,
- mdk-stage1/dietlibc/syscalls.s/rt_sigpending.S,
- mdk-stage1/dietlibc/include/sys/ppc-ioctl.h,
- mdk-stage1/dietlibc/libstdio/vfdprintf.c,
- mdk-stage1/dietlibc/i386/usleep.S, mdk-stage1/dietlibc/include/iconv.h,
- mdk-stage1/dietlibc/ia64/semctl.S,
- mdk-stage1/dietlibc/include/sys/timex.h,
- mdk-stage1/dietlibc/include/asm/i386-sigcontext.h,
- mdk-stage1/dietlibc/i386/dyn_syscalls.S,
- mdk-stage1/dietlibc/libcruft/getgrgid_r.c,
- mdk-stage1/dietlibc/libcruft/sysconf.c,
- mdk-stage1/dietlibc/include/tar.h, mdk-stage1/dietlibc/x86_64/umount.S,
- mdk-stage1/dietlibc/libugly/getprotoent_r.c,
- mdk-stage1/dietlibc/syscalls.s/prctl.S, mdk-stage1/dietlibc/i386/acos.S,
- mdk-stage1/dietlibc/libpthread/pthread_funlockfile.c,
- mdk-stage1/dietlibc/libcruft/res_mkquery.c,
- mdk-stage1/dietlibc/include/sys/timeb.h,
- mdk-stage1/dietlibc/libugly/iconv_close.c,
- mdk-stage1/dietlibc/ia64/__alarm.c,
- mdk-stage1/dietlibc/x86_64/socketpair.S,
- mdk-stage1/dietlibc/i386/sinh.S, mdk-stage1/dietlibc/libdl/test/test.c,
- mdk-stage1/dietlibc/include/asm/alpha-sigcontext.h,
- mdk-stage1/dietlibc/i386/memchr.S,
- mdk-stage1/dietlibc/profiling/profil.c,
- mdk-stage1/dietlibc/libdl/_dl_rel.h, mdk-stage1/dietlibc/i386/__ten.S,
- mdk-stage1/dietlibc/lib/execle.c,
- mdk-stage1/dietlibc/include/sys/s390-ioctl.h,
- mdk-stage1/dietlibc/i386/recvmsg.S,
- mdk-stage1/dietlibc/ia64/getsockopt.S,
- mdk-stage1/dietlibc/i386/md5asm.S, mdk-stage1/dietlibc/i386/memcpy.S,
- mdk-stage1/dietlibc/libcruft/__parse.c,
- mdk-stage1/dietlibc/x86_64/setsockopt.S,
- mdk-stage1/dietlibc/libcruft/getspnam_r.c,
- mdk-stage1/dietlibc/syscalls.s/getgid32.S,
- mdk-stage1/dietlibc/libpthread/pthread_fdglue2.c,
- mdk-stage1/dietlibc/ia64/__time.c, mdk-stage1/dietlibc/i386/tanh.S,
- mdk-stage1/dietlibc/lib/siginterrupt.c,
- mdk-stage1/dietlibc/i386/strcat.S,
- mdk-stage1/dietlibc/libugly/grantpt.c, mdk-stage1/dietlibc/lib/rand48.c,
- mdk-stage1/dietlibc/syscalls.s/setresgid32.S,
- mdk-stage1/dietlibc/syscalls.s/lchown32.S,
- mdk-stage1/dietlibc/profiling/README, mdk-stage1/dietlibc/ia64/msgsnd.S,
- mdk-stage1/dietlibc/libugly/getservbyname_r.c,
- mdk-stage1/dietlibc/x86_64/send.c, mdk-stage1/dietlibc/i386/socket.S,
- mdk-stage1/dietlibc/ia64/setsockopt.S,
- mdk-stage1/dietlibc/include/asm/parisc-sigcontext.h,
- mdk-stage1/dietlibc/include/sys/gmon.h,
- mdk-stage1/dietlibc/i386/acosh.S, mdk-stage1/dietlibc/ia64/socket.S,
- mdk-stage1/dietlibc/libcruft/dn_expand.c,
- mdk-stage1/dietlibc/lib/binshstr.c,
- mdk-stage1/dietlibc/include/netinet/udp.h,
- mdk-stage1/dietlibc/x86_64/msgget.S,
- mdk-stage1/dietlibc/libugly/getprotobyname_r.c,
- mdk-stage1/dietlibc/libcruft/res_search.c,
- mdk-stage1/dietlibc/libshell/dirname.c,
- mdk-stage1/dietlibc/i386/exp10.S, mdk-stage1/dietlibc/libdl/_dl_queue.c,
- mdk-stage1/dietlibc/lib/socketpair.c, mdk-stage1/dietlibc/i386/ldexp.S,
- mdk-stage1/dietlibc/libstdio/ftello64.c,
- mdk-stage1/dietlibc/libpthread/pthread_fputc.c,
- mdk-stage1/dietlibc/libdl/test/test_so.c,
- mdk-stage1/dietlibc/i386/strchr.S, mdk-stage1/dietlibc/lib/pwrite64.c,
- mdk-stage1/dietlibc/include/netinet/tcp.h,
- mdk-stage1/dietlibc/libm/pow.c,
- mdk-stage1/dietlibc/libcruft/res_query.c,
- mdk-stage1/dietlibc/include/asm/mips-sigcontext.h,
- mdk-stage1/dietlibc/libstdio/fputc_unlocked.c,
- mdk-stage1/dietlibc/libcruft/sysconf_cpus.c,
- mdk-stage1/dietlibc/alpha/lseek64.S, mdk-stage1/dietlibc/i386/recv.S,
- mdk-stage1/dietlibc/libcruft/getspent.c,
- mdk-stage1/dietlibc/libugly/iconv_open.c,
- mdk-stage1/dietlibc/lib/memrchr.c,
- mdk-stage1/dietlibc/syscalls.s/epoll_wait.S,
- mdk-stage1/dietlibc/x86_64/sendmsg.S,
- mdk-stage1/dietlibc/libugly/wtent.c, mdk-stage1/dietlibc/i386/mmap.S,
- mdk-stage1/dietlibc/syscalls.s/getgroups32.S,
- mdk-stage1/dietlibc/i386/atol.S,
- mdk-stage1/dietlibc/include/sys/ucontext.h,
- mdk-stage1/dietlibc/libcruft/dnscruft4.c,
- mdk-stage1/dietlibc/include/sys/mips-ioctl.h,
- mdk-stage1/dietlibc/include/netinet/ip_icmp.h,
- mdk-stage1/dietlibc/lib/sigqueueinfo.c,
- mdk-stage1/dietlibc/libcruft/__prepare_parse.c,
- mdk-stage1/dietlibc/x86_64/waitpid.S,
- mdk-stage1/dietlibc/i386/setsockopt.S,
- mdk-stage1/dietlibc/include/sys/gmon_out.h,
- mdk-stage1/dietlibc/lib/cfsetispeed.c,
- mdk-stage1/dietlibc/i386/socketcall.S,
- mdk-stage1/dietlibc/include/asm/sigcontext.h,
- mdk-stage1/dietlibc/x86_64/msgsnd.S, mdk-stage1/dietlibc/lib/labs.c,
- mdk-stage1/dietlibc/x86_64/recvmsg.S,
- mdk-stage1/dietlibc/libugly/getservbyport.c,
- mdk-stage1/dietlibc/libugly/getaddrinfo.c,
- mdk-stage1/dietlibc/ia64/syscalls.h,
- mdk-stage1/dietlibc/libcompat/getdelim.c,
- mdk-stage1/dietlibc/lib/__truncate64.c,
- mdk-stage1/dietlibc/include/sys/hppa-ioctl.h,
- mdk-stage1/dietlibc/libcrypt/md5crypt.c,
- mdk-stage1/dietlibc/syscalls.s/n_sigsuspend.S,
- mdk-stage1/dietlibc/i386/listen.S,
- mdk-stage1/dietlibc/lib/if_nameindex.c,
- mdk-stage1/dietlibc/syscalls.s/truncate64.S,
- mdk-stage1/dietlibc/libcruft/__parse_nws.c,
- mdk-stage1/dietlibc/lib/readdir64.c,
- mdk-stage1/dietlibc/syscalls.s/setuid32.S,
- mdk-stage1/dietlibc/libugly/gethostent.c,
- mdk-stage1/dietlibc/syscalls.s/epoll_create.S,
- mdk-stage1/dietlibc/include/sys/sysmacros.h,
- mdk-stage1/dietlibc/syscalls.s/madvise.S,
- mdk-stage1/dietlibc/lib/pwrite.c, mdk-stage1/dietlibc/i386/log1p.S,
- mdk-stage1/dietlibc/ia64/shutdown.S,
- mdk-stage1/dietlibc/lib/__v_scanf.c,
- mdk-stage1/dietlibc/include/sys/epoll.h,
- mdk-stage1/dietlibc/x86_64/start.S,
- mdk-stage1/dietlibc/x86_64/sigaction.c,
- mdk-stage1/dietlibc/i386/getsockname.S, mdk-stage1/dietlibc/i386/sin.S,
- mdk-stage1/dietlibc/i386/sincos.S,
- mdk-stage1/dietlibc/libcruft/scandir64.c,
- mdk-stage1/dietlibc/lib/cfgetospeed.c, mdk-stage1/dietlibc/i386/asinh.S,
- mdk-stage1/dietlibc/libstdio/tmpfile.c,
- mdk-stage1/dietlibc/syscalls.s/n_sigprocmask.S,
- mdk-stage1/dietlibc/ia64/recvfrom.S, mdk-stage1/dietlibc/i386/ipow.S,
- mdk-stage1/dietlibc/syscalls.s/init_module.S,
- mdk-stage1/dietlibc/lib/__ftruncate64.c,
- mdk-stage1/dietlibc/i386/atan.S, mdk-stage1/dietlibc/libm/tanh.c,
- mdk-stage1/dietlibc/syscalls.s/rt_sigprocmask.S,
- mdk-stage1/dietlibc/x86_64/accept.S, mdk-stage1/dietlibc/ia64/start.S,
- mdk-stage1/dietlibc/include/sysexits.h,
- mdk-stage1/dietlibc/lib/signal.c, mdk-stage1/dietlibc/ia64/accept.S,
- mdk-stage1/dietlibc/include/stddef.h,
- mdk-stage1/dietlibc/include/stdarg.h,
- mdk-stage1/dietlibc/libstdio/fgetc_unlocked.c,
- mdk-stage1/dietlibc/syscalls.s/n_sigaction.S,
- mdk-stage1/dietlibc/lib/strxfrm.c, mdk-stage1/dietlibc/ia64/shmctl.S,
- mdk-stage1/dietlibc/x86_64/msgrcv.S,
- mdk-stage1/dietlibc/libcruft/getpwnam_r.c,
- mdk-stage1/dietlibc/i386/libm2.S, mdk-stage1/dietlibc/ia64/fork.S:
- Import dietlibc 0.22 + other fixes for AMD64
-
- * mdk-stage1/dns.c, mdk-stage1/dietlibc/lib/msgget.c,
- mdk-stage1/dietlibc/lib/strerror.c,
- mdk-stage1/insmod-modutils/obj/obj_s390.c,
- mdk-stage1/dietlibc/libcruft/gethostbyname.c,
- mdk-stage1/dietlibc/librpc/rpc_prot.c,
- mdk-stage1/dietlibc/lib/iscntrl.c, mdk-stage1/dietlibc/include/stdint.h,
- mdk-stage1/dietlibc/lib/atexit.c, mdk-stage1/dietlibc/include/stdlib.h,
- mdk-stage1/dietlibc/libpthread/pthread_cancel.c,
- mdk-stage1/dietlibc/libdl/dlopen.c, mdk-stage1/dietlibc/lib/isgraph.c,
- mdk-stage1/dietlibc/lib/closedir.c,
- mdk-stage1/insmod-modutils/obj/obj_alpha.c,
- mdk-stage1/insmod-modutils/include/config.h,
- mdk-stage1/dietlibc/lib/alloc.c, mdk-stage1/dietlibc/lib/tcsetpgrp.c,
- mdk-stage1/dietlibc/i386/Makefile.add,
- mdk-stage1/dietlibc/include/sys/mman.h,
- mdk-stage1/dietlibc/include/fcntl.h, mdk-stage1/dietlibc/lib/memchr.c,
- mdk-stage1/dietlibc/lib/isupper.c, mdk-stage1/dietlibc/lib/qsort.c,
- mdk-stage1/dietlibc/lib/isxdigit.c,
- mdk-stage1/dietlibc/librpc/svc_raw.c,
- mdk-stage1/dietlibc/include/arpa/nameser.h,
- mdk-stage1/dietlibc/lib/open64.c, mdk-stage1/newt/form.c,
- mdk-stage1/dietlibc/include/sys/file.h,
- mdk-stage1/insmod-modutils/obj/Makefile, mdk-stage1/dietlibc/lib/ftw.c,
- mdk-stage1/insmod-modutils/obj/obj_hppa64.c,
- mdk-stage1/insmod-modutils/obj/obj_hppa.c,
- mdk-stage1/dietlibc/libstdio/ftell.c,
- mdk-stage1/dietlibc/libstdio/fdopen.c,
- mdk-stage1/dietlibc/libpthread/pthread_cond_signal.c,
- mdk-stage1/dietlibc/include/pwd.h, mdk-stage1/dietlibc/lib/snprintf.c,
- mdk-stage1/dietlibc/i386/unified.S, mdk-stage1/dietlibc/lib/msgrcv.c,
- mdk-stage1/dietlibc/alpha/start.S,
- mdk-stage1/insmod-modutils/include/kallsyms.h,
- mdk-stage1/dietlibc/include/sys/ptrace.h,
- mdk-stage1/dietlibc/lib/mkfifo.c, mdk-stage1/dietlibc/lib/send.c,
- mdk-stage1/dietlibc/lib/execvp.c,
- mdk-stage1/dietlibc/librpc/get_myaddress.c,
- mdk-stage1/insmod-modutils/include/elf_m68k.h,
- mdk-stage1/dietlibc/libugly/mktime.c,
- mdk-stage1/dietlibc/sparc/__longjmp.S,
- mdk-stage1/dietlibc/include/pthread.h,
- mdk-stage1/dietlibc/libpthread/pthread_key_delete.c,
- mdk-stage1/dietlibc/include/sys/socket.h,
- mdk-stage1/dietlibc/syscalls.s/nice.S,
- mdk-stage1/insmod-modutils/include/elf_mips.h,
- mdk-stage1/dietlibc/syscalls.s/getdents64.S,
- mdk-stage1/dietlibc/librpc/svc_run.c, mdk-stage1/dietlibc/lib/isblank.c,
- mdk-stage1/dietlibc/syscalls.s/time.S,
- mdk-stage1/dietlibc/libugly/gmtime_r.c,
- mdk-stage1/dietlibc/include/sys/kd.h,
- mdk-stage1/dietlibc/librpc/bindresvport.c,
- mdk-stage1/dietlibc/libstdio/fdglue.c,
- mdk-stage1/dietlibc/lib/ttyname.c,
- mdk-stage1/dietlibc/libcruft/getspnam.c,
- mdk-stage1/dietlibc/lib/strncat.c,
- mdk-stage1/dietlibc/libugly/strsignal.c,
- mdk-stage1/dietlibc/librpc/clnt_tcp.c,
- mdk-stage1/insmod-modutils/util/sys_cm.c,
- mdk-stage1/dietlibc/libcruft/initgroups.c,
- mdk-stage1/dietlibc/lib/sendmsg.c,
- mdk-stage1/dietlibc/include/sys/stat.h,
- mdk-stage1/dietlibc/libshell/fnmatch.c,
- mdk-stage1/dietlibc/syscalls.s/setresgid.S,
- mdk-stage1/dietlibc/libstdio/feof.c, mdk-stage1/init-libc-headers.h,
- mdk-stage1/dietlibc/include/dirent.h,
- mdk-stage1/dietlibc/libpthread/thread_internal.h,
- mdk-stage1/insmod-modutils/util/snap_shot.c,
- mdk-stage1/dietlibc/include/shadow.h,
- mdk-stage1/dietlibc/include/sys/select.h,
- mdk-stage1/dietlibc/lib/strsep.c,
- mdk-stage1/dietlibc/include/rpc/auth_unix.h,
- mdk-stage1/dietlibc/lib/msgsnd.c,
- mdk-stage1/dietlibc/libpthread/pthread_sys_alloc.c,
- mdk-stage1/insmod-modutils/util/logger.c,
- mdk-stage1/dietlibc/libpthread/Makefile,
- mdk-stage1/dietlibc/libpthread/pthread_attr_setscope.c,
- mdk-stage1/dietlibc/lib/__ltostr.c, mdk-stage1/dietlibc/lib/strlen.c,
- mdk-stage1/dietlibc/libregex/rx.c,
- mdk-stage1/insmod-modutils/util/xsystem.c,
- mdk-stage1/dietlibc/liblatin1/latin1-islower.c,
- mdk-stage1/dietlibc/lib/raise.c,
- mdk-stage1/dietlibc/libpthread/pthread_setspecific.c,
- mdk-stage1/dietlibc/lib/semget.c,
- mdk-stage1/dietlibc/libcruft/inet_aton.c,
- mdk-stage1/dietlibc/lib/sigismember.c, mdk-stage1/dietlibc/librpc/svc.c,
- mdk-stage1/dietlibc/lib/sigemptyset.c,
- mdk-stage1/dietlibc/include/sys/vfs.h,
- mdk-stage1/insmod-modutils/include/elf_ppc.h,
- mdk-stage1/dietlibc/libugly/getprotoent.c,
- mdk-stage1/dietlibc/lib/__stat64.c, mdk-stage1/dietlibc/include/elf.h,
- mdk-stage1/dietlibc/lib/strncmp.c,
- mdk-stage1/dietlibc/lib/gethostname.c,
- mdk-stage1/dietlibc/lib/vsscanf.c, mdk-stage1/dietlibc/lib/cfmakeraw.c,
- mdk-stage1/dietlibc/lib/perror.c, mdk-stage1/dietlibc/include/time.h,
- mdk-stage1/dietlibc/lib/strncasecmp.c,
- mdk-stage1/dietlibc/lib/__lltostr.c,
- mdk-stage1/dietlibc/libpthread/pthread_key_create.c,
- mdk-stage1/dietlibc/include/fnmatch.h,
- mdk-stage1/dietlibc/libugly/time_table_spd.c,
- mdk-stage1/dietlibc/libstdio/stderr.c,
- mdk-stage1/insmod-modutils/util/arch64.c,
- mdk-stage1/dietlibc/libdl/dlerror.c,
- mdk-stage1/dietlibc/libcruft/mkstemp.c,
- mdk-stage1/dietlibc/libstdio/ungetc.c,
- mdk-stage1/dietlibc/libugly/tzfile.c, mdk-stage1/log.c,
- mdk-stage1/dietlibc/include/rpc/xdr.h,
- mdk-stage1/dietlibc/include/rpc/key_prot.h,
- mdk-stage1/insmod-modutils/include/elf_sparc.h,
- mdk-stage1/dietlibc/sparc/start.S,
- mdk-stage1/dietlibc/libcruft/getpwnam.c,
- mdk-stage1/dietlibc/libpthread/pthread_spinlock.c,
- mdk-stage1/dietlibc/include/sys/un.h,
- mdk-stage1/dietlibc/libpthread/pthread_mutex_lock.c,
- mdk-stage1/insmod-busybox/insmod.c,
- mdk-stage1/insmod-modutils/include/elf_arm.h,
- mdk-stage1/dietlibc/alpha/unified.S,
- mdk-stage1/dietlibc/include/sys/io.h,
- mdk-stage1/dietlibc/lib/getsockname.c,
- mdk-stage1/dietlibc/i386/__testandset.S,
- mdk-stage1/dietlibc/libcruft/dnscruft.c,
- mdk-stage1/dietlibc/lib/sprintf.c, mdk-stage1/rp-pppoe/src/Makefile,
- mdk-stage1/dietlibc/lib/tcdrain.c,
- mdk-stage1/dietlibc/include/sys/time.h,
- mdk-stage1/dietlibc/lib/errno_location.c,
- mdk-stage1/dietlibc/liblatin1/latin1-isprint.c,
- mdk-stage1/dietlibc/libshell/glob.c,
- mdk-stage1/dietlibc/libpthread/pthread_cond_broadcast.c,
- mdk-stage1/dietlibc/lib/_brk.c,
- mdk-stage1/insmod-modutils/obj/obj_arm.c,
- mdk-stage1/dietlibc/lib/sys_siglist.c,
- mdk-stage1/dietlibc/libcruft/getgrnam.c,
- mdk-stage1/dietlibc/lib/strtok.c, mdk-stage1/dietlibc/include/unistd.h,
- mdk-stage1/dietlibc/lib/isascii.c,
- mdk-stage1/dietlibc/librpc/xdr_reference.c,
- mdk-stage1/dietlibc/sparc/urem.S, mdk-stage1/dietlibc/i386/__longjmp.S,
- mdk-stage1/dietlibc/include/sys/syslog.h, mdk-stage1/Makefile,
- mdk-stage1/dietlibc/lib/bind.c, mdk-stage1/dietlibc/libdl/Makefile,
- mdk-stage1/dietlibc/librpc/svc_simple.c,
- mdk-stage1/dietlibc/lib/lockf.c, mdk-stage1/dietlibc/lib/htons.c,
- mdk-stage1/dietlibc/lib/shmdt.c, mdk-stage1/dietlibc/i386/setjmp.S,
- mdk-stage1/dietlibc/syscalls.s/ioperm.S,
- mdk-stage1/dietlibc/lib/getenv.c,
- mdk-stage1/dietlibc/include/features.h,
- mdk-stage1/dietlibc/libpthread/CHANGES,
- mdk-stage1/dietlibc/include/arpa/inet.h,
- mdk-stage1/dietlibc/lib/strtoul.c,
- mdk-stage1/dietlibc/libstdio/fprintf.c,
- mdk-stage1/dietlibc/include/regex.h,
- mdk-stage1/dietlibc/lib/__stat64_cvt.c,
- mdk-stage1/dietlibc/libcruft/inet_ntop.c,
- mdk-stage1/dietlibc/include/getopt.h,
- mdk-stage1/insmod-modutils/obj/obj_ia64.c, mdk-stage1/minilibc.c,
- mdk-stage1/insmod-modutils/include/util.h,
- mdk-stage1/insmod-modutils/include/version.h,
- mdk-stage1/dietlibc/alpha/Makefile.add,
- mdk-stage1/dietlibc/include/net/if.h,
- mdk-stage1/dietlibc/lib/recvfrom.c, mdk-stage1/dietlibc/sparc/clone.S,
- mdk-stage1/dietlibc/lib/memccpy.c, mdk-stage1/dietlibc/lib/strtoull.c,
- mdk-stage1/dietlibc/libcruft/getgrgid.c,
- mdk-stage1/dietlibc/librpc/auth_unix.c,
- mdk-stage1/dietlibc/include/termios.h,
- mdk-stage1/dietlibc/include/strings.h,
- mdk-stage1/insmod-modutils/include/elf_alpha.h,
- mdk-stage1/dietlibc/lib/execv.c,
- mdk-stage1/dietlibc/include/sys/param.h,
- mdk-stage1/dietlibc/libpthread/pthread_attr_setstacksize.c,
- mdk-stage1/dietlibc/librpc/xdr_mem.c,
- mdk-stage1/dietlibc/libcruft/res_init.c,
- mdk-stage1/dietlibc/libpthread/pthread_detach.c,
- mdk-stage1/dietlibc/libpthread/pthread_sys_tcdrain.c,
- mdk-stage1/newt/Makefile, mdk-stage1/dietlibc/lib/isatty.c,
- mdk-stage1/dietlibc/include/sys/mtio.h,
- mdk-stage1/dietlibc/lib/memcmp.c,
- mdk-stage1/dietlibc/include/sys/sysinfo.h,
- mdk-stage1/dietlibc/librpc/clnt_simple.c,
- mdk-stage1/dietlibc/lib/vfork.c, mdk-stage1/dietlibc/lib/isalpha.c,
- mdk-stage1/dietlibc/lib/strncpy.c, mdk-stage1/dietlibc/lib/strcmp.c,
- mdk-stage1/insmod-modutils/include/obj.h,
- mdk-stage1/dietlibc/include/rpc/clnt.h, mdk-stage1/frontend.h,
- mdk-stage1/dietlibc/libcruft/getpass.c, mdk-stage1/dietlibc/lib/abort.c,
- mdk-stage1/dietlibc/syscalls.s/stime.S,
- mdk-stage1/dietlibc/sparc/fork.S, mdk-stage1/dietlibc/lib/readdir.c,
- mdk-stage1/dietlibc/lib/sbrk.c,
- mdk-stage1/dietlibc/include/sys/reboot.h,
- mdk-stage1/dietlibc/syscalls.s/getresuid.S,
- mdk-stage1/dietlibc/liblatin1/latin1-iscntrl.c,
- mdk-stage1/dietlibc/include/limits.h, mdk-stage1/dietlibc/lib/putenv.c,
- mdk-stage1/dietlibc/include/paths.h,
- mdk-stage1/dietlibc/librpc/pmap_prot2.c,
- mdk-stage1/dietlibc/librpc/pmap_clnt.c,
- mdk-stage1/dietlibc/lib/memcpy.c,
- mdk-stage1/insmod-modutils/obj/obj_kallsyms.c,
- mdk-stage1/dietlibc/syscalls.s/_llseek.S,
- mdk-stage1/dietlibc/include/setjmp.h,
- mdk-stage1/insmod-modutils/obj/obj_m68k.c,
- mdk-stage1/dietlibc/lib/tcgetpgrp.c, mdk-stage1/dietlibc/lib/abs.c,
- mdk-stage1/dietlibc/Makefile, mdk-stage1/dietlibc/include/net/route.h,
- mdk-stage1/dietlibc/syscalls.s/fstat64.S, mdk-stage1/mar/Makefile,
- mdk-stage1/dietlibc/include/rpc/auth.h, mdk-stage1/dietlibc/ppc/start.S,
- mdk-stage1/dietlibc/lib/assert_fail.c,
- mdk-stage1/insmod-modutils/obj/obj_sparc.c,
- mdk-stage1/dietlibc/lib/if_nametoindex.c,
- mdk-stage1/dietlibc/include/inttypes.h, mdk-stage1/dietlibc/lib/atoi.c,
- mdk-stage1/dietlibc/librpc/svc_tcp.c,
- mdk-stage1/dietlibc/alpha/setjmp.S,
- mdk-stage1/dietlibc/include/net/if_arp.h, mdk-stage1/ppp/pppd/Makefile,
- mdk-stage1/insmod-modutils/obj/obj_common.c,
- mdk-stage1/dietlibc/librpc/authunix_prot.c,
- mdk-stage1/dietlibc/lib/longjmp.c,
- mdk-stage1/dietlibc/libugly/getmntent.c,
- mdk-stage1/insmod-modutils/obj/obj_load.c, mdk-stage1/dietlibc/diet.c,
- mdk-stage1/dietlibc/libstdio/fwrite.c,
- mdk-stage1/insmod-modutils/obj/obj_mips.c,
- mdk-stage1/dietlibc/libugly/asprintf.c,
- mdk-stage1/dietlibc/librpc/clnt_udp.c,
- mdk-stage1/dietlibc/lib/recvmsg.c, mdk-stage1/dietlibc/lib/sendto.c,
- mdk-stage1/dietlibc/include/endian.h,
- mdk-stage1/dietlibc/libstdio/stdin.c,
- mdk-stage1/dietlibc/libdl/dlclose.c, mdk-stage1/bzlib/Makefile,
- mdk-stage1/Makefile.common, mdk-stage1/dietlibc/dietdirent.h,
- mdk-stage1/insmod-modutils/util/xstrcat.c,
- mdk-stage1/dietlibc/libpthread/pthread_testcancel.c,
- mdk-stage1/dietlibc/libshell/realpath.c, mdk-stage1/rescue-gui.c,
- mdk-stage1/dietlibc/lib/tcsetattr.c,
- mdk-stage1/dietlibc/libstdio/fgets.c,
- mdk-stage1/dietlibc/include/rpc/netdb.h,
- mdk-stage1/dietlibc/lib/sscanf.c, mdk-stage1/dietlibc/lib/creat.c,
- mdk-stage1/dietlibc/lib/getdomainname.c,
- mdk-stage1/dietlibc/libstdio/fclose.c,
- mdk-stage1/dietlibc/lib/vsnprintf.c, mdk-stage1/dietlibc/lib/ispunct.c,
- mdk-stage1/insmod-modutils/util/sys_oim.c,
- mdk-stage1/dietlibc/libpthread/pthread_attr_setschedparam.c,
- mdk-stage1/dietlibc/sparc/mmap.c, mdk-stage1/dietlibc/dietstdio.h,
- mdk-stage1/dietlibc/librpc/xdr_array.c, mdk-stage1/init.c,
- mdk-stage1/dietlibc/lib/__isnan.c,
- mdk-stage1/dietlibc/include/sys/resource.h,
- mdk-stage1/dietlibc/lib/tolower.c,
- mdk-stage1/dietlibc/alpha/__longjmp.S,
- mdk-stage1/dietlibc/libpthread/pthread_join.c,
- mdk-stage1/dietlibc/libstdio/fopen.c,
- mdk-stage1/dietlibc/syscalls.s/umount2.S,
- mdk-stage1/dietlibc/include/signal.h,
- mdk-stage1/dietlibc/librpc/rpc_callmsg.c,
- mdk-stage1/dietlibc/libpthread/pthread_mutexattr_setkind_np.c,
- mdk-stage1/dietlibc/i386/clone.S,
- mdk-stage1/insmod-modutils/include/elf_i386.h,
- mdk-stage1/dietlibc/lib/__dtostr.c,
- mdk-stage1/dietlibc/syscalls.s/ipc.S,
- mdk-stage1/dietlibc/include/sys/cdefs.h,
- mdk-stage1/dietlibc/include/sys/types.h,
- mdk-stage1/insmod-modutils/util/sys_gks.c,
- mdk-stage1/insmod-modutils/util/xrealloc.c,
- mdk-stage1/dietlibc/include/sys/shm.h,
- mdk-stage1/dietlibc/libpthread/pthread_cond_timedwait.c,
- mdk-stage1/dietlibc/libcruft/gethostbyname_r.c,
- mdk-stage1/dietlibc/lib/lseek64.c,
- mdk-stage1/dietlibc/libdl/_dl_search.c,
- mdk-stage1/dietlibc/dietfeatures.h,
- mdk-stage1/dietlibc/libcruft/gethostbyaddr.c,
- mdk-stage1/dietlibc/librpc/svc_udp.c,
- mdk-stage1/dietlibc/libcruft/gethostbyaddr_r.c,
- mdk-stage1/dietlibc/libugly/localtime_r.c,
- mdk-stage1/dietlibc/include/netdb.h, mdk-stage1/dietlibc/lib/semop.c,
- mdk-stage1/insmod-modutils/obj/obj_i386.c,
- mdk-stage1/dietlibc/lib/opendir.c, mdk-stage1/dietlibc/libugly/system.c,
- mdk-stage1/dietlibc/i386/start.S, mdk-stage1/dietlibc/include/dlfcn.h,
- mdk-stage1/dietlibc/lib/usleep.c, mdk-stage1/dietlibc/lib/strchr.c,
- mdk-stage1/dietlibc/ppc/unified.S,
- mdk-stage1/dietlibc/syscalls.s/waitpid.S,
- mdk-stage1/dietlibc/libpthread/pthread_sys_fcntl.c,
- mdk-stage1/dietlibc/lib/memset.c, mdk-stage1/dietlibc/lib/__fstat64.c,
- mdk-stage1/dietlibc/include/sched.h,
- mdk-stage1/dietlibc/libpthread/pthread_attr_setschedpolicy.c,
- mdk-stage1/dietlibc/lib/accept.c, mdk-stage1/dietlibc/lib/pread.c,
- mdk-stage1/dietlibc/.cvsignore, mdk-stage1/dietlibc/sparc/setjmp.S,
- mdk-stage1/dietlibc/librpc/pmap_rmt.c,
- mdk-stage1/insmod-modutils/util/xstrdup.c,
- mdk-stage1/dietlibc/include/sys/ioctl.h,
- mdk-stage1/dietlibc/libpthread/pthread_setcanceltype.c,
- mdk-stage1/dietlibc/lib/exec_lib.c,
- mdk-stage1/dietlibc/include/string.h,
- mdk-stage1/dietlibc/libpthread/pthread_atfork.c,
- mdk-stage1/insmod-modutils/include/elf_sparc64.h,
- mdk-stage1/dietlibc/include/assert.h, mdk-stage1/dietlibc/lib/connect.c,
- mdk-stage1/dietlibc/include/locale.h,
- mdk-stage1/dietlibc/libpthread/pthread_attr_init.c,
- mdk-stage1/dietlibc/lib/execl.c, mdk-stage1/dietlibc/lib/tcflush.c,
- mdk-stage1/dietlibc/libstdio/setvbuf.c,
- mdk-stage1/dietlibc/libpthread/README,
- mdk-stage1/insmod-modutils/include/elf_s390.h,
- mdk-stage1/dietlibc/libcruft/getlogin.c,
- mdk-stage1/dietlibc/lib/__lstat64.c, mdk-stage1/dietlibc/lib/strcpy.c,
- mdk-stage1/dietlibc/lib/strtod.c, mdk-stage1/dietlibc/libdl/_dl_open.c,
- mdk-stage1/dietlibc/include/stdio.h,
- mdk-stage1/insmod-modutils/util/sys_nim.c,
- mdk-stage1/dietlibc/lib/sigdelset.c, mdk-stage1/dietlibc/libdl/dlsym.c,
- mdk-stage1/dietlibc/lib/setsockopt.c,
- mdk-stage1/dietlibc/libpthread/pthread_setcancelstate.c,
- mdk-stage1/dietlibc/libcruft/inet_ntoa.c,
- mdk-stage1/dietlibc/lib/vsprintf.c,
- mdk-stage1/insmod-modutils/util/alias.h,
- mdk-stage1/dietlibc/include/grp.h, mdk-stage1/pcmcia_/Makefile,
- mdk-stage1/dietlibc/lib/isprint.c,
- mdk-stage1/dietlibc/syscalls.s/setresuid.S,
- mdk-stage1/dietlibc/syscalls.s/lstat64.S,
- mdk-stage1/dietlibc/lib/__getcwd.c, mdk-stage1/dietlibc/lib/isdigit.c,
- mdk-stage1/dietlibc/lib/semctl.c, mdk-stage1/dietlibc/include/rpc/rpc.h,
- mdk-stage1/dietlibc/lib/strstr.c,
- mdk-stage1/dietlibc/include/rpc/pmap_rmt.h,
- mdk-stage1/dietlibc/include/rpc/types.h,
- mdk-stage1/dietlibc/libcruft/inet_pton.c,
- mdk-stage1/insmod-modutils/util/sys_qm.c,
- mdk-stage1/dietlibc/include/utmp.h, mdk-stage1/dietlibc/lib/sleep.c,
- mdk-stage1/dietlibc/libugly/asctime_r.c,
- mdk-stage1/dietlibc/include/netinet/in.h,
- mdk-stage1/dietlibc/syscalls.s/sendfile.S,
- mdk-stage1/dietlibc/include/sys/msg.h,
- mdk-stage1/dietlibc/include/rpc/svc.h,
- mdk-stage1/dietlibc/include/netinet/ip.h,
- mdk-stage1/dietlibc/libcruft/getpagesize.c,
- mdk-stage1/dietlibc/sparc/unified.S,
- mdk-stage1/insmod-modutils/util/Makefile,
- mdk-stage1/dietlibc/lib/execlp.c, mdk-stage1/dietlibc/libstdio/fread.c,
- mdk-stage1/dietlibc/librpc/xdr.c, mdk-stage1/ppp/include/net/ppp_defs.h,
- mdk-stage1/dietlibc/lib/recv.c, mdk-stage1/dietlibc/lib/reboot.c,
- mdk-stage1/dietlibc/librpc/svc_auth_unix.c,
- mdk-stage1/insmod-modutils/obj/obj_sparc64.c,
- mdk-stage1/dietlibc/include/errno.h,
- mdk-stage1/dietlibc/syscalls.s/stat64.S,
- mdk-stage1/dietlibc/include/sys/uio.h,
- mdk-stage1/dietlibc/librpc/pmap_getport.c,
- mdk-stage1/dietlibc/libstdio/printf.c,
- mdk-stage1/dietlibc/include/sys/times.h,
- mdk-stage1/dietlibc/lib/sigaddset.c, mdk-stage1/dietlibc/lib/sigjmp.c,
- mdk-stage1/dietlibc/lib/getopt.c,
- mdk-stage1/dietlibc/lib/if_indextoname.c,
- mdk-stage1/dietlibc/libcrypt/crypt.c,
- mdk-stage1/insmod-modutils/Makefile,
- mdk-stage1/dietlibc/include/rpc/pmap_prot.h,
- mdk-stage1/dietlibc/libstdio/fflush.c,
- mdk-stage1/dietlibc/libugly/popen.c,
- mdk-stage1/dietlibc/libpthread/pthread_mutex_trylock.c,
- mdk-stage1/dietlibc/ppc/mmap.c, mdk-stage1/dietlibc/include/sys/poll.h,
- mdk-stage1/dietlibc/librpc/getrpcport.c,
- mdk-stage1/dietlibc/librpc/auth_none.c,
- mdk-stage1/dietlibc/lib/pread64.c,
- mdk-stage1/dietlibc/libpthread/pthread_attr_setinheritsched.c,
- mdk-stage1/insmod-modutils/util/config.c,
- mdk-stage1/dietlibc/lib/strtoll.c, mdk-stage1/dietlibc/include/resolv.h,
- mdk-stage1/insmod-modutils/util/sys_dm.c,
- mdk-stage1/dietlibc/lib/bsearch.c, mdk-stage1/dietlibc/lib/strcasecmp.c,
- mdk-stage1/dietlibc/sparc/shmat.c,
- mdk-stage1/dietlibc/librpc/pmap_getmaps.c,
- mdk-stage1/dietlibc/ppc/__testandset.S,
- mdk-stage1/dietlibc/libugly/setenv.c,
- mdk-stage1/dietlibc/include/alloca.h, mdk-stage1/dietlibc/libdl/README,
- mdk-stage1/dietlibc/libpthread/pthread_cond_wait.c,
- mdk-stage1/insmod-busybox/Makefile,
- mdk-stage1/dietlibc/librpc/clnt_generic.c,
- mdk-stage1/dietlibc/lib/memmove.c, mdk-stage1/dietlibc/sparc/pipe.S,
- mdk-stage1/dietlibc/include/daemon.h,
- mdk-stage1/dietlibc/liblatin1/latin1-isgraph.c,
- mdk-stage1/dietlibc/include/math.h, mdk-stage1/dietlibc/sparc/udiv.S,
- mdk-stage1/dietlibc/lib/remove.c,
- mdk-stage1/dietlibc/include/sys/sendfile.h,
- mdk-stage1/dietlibc/libugly/isleap.c,
- mdk-stage1/dietlibc/syscalls.s/syslog.S,
- mdk-stage1/insmod-modutils/obj/obj_reloc.c,
- mdk-stage1/dietlibc/lib/getpeername.c,
- mdk-stage1/dietlibc/include/sys/ipc.h, mdk-stage1/dietlibc/lib/rand.c,
- mdk-stage1/dietlibc/include/ftw.h,
- mdk-stage1/dietlibc/libcruft/gethostbyname2_r.c,
- mdk-stage1/dietlibc/lib/shmat.c,
- mdk-stage1/insmod-modutils/include/module.h,
- mdk-stage1/dietlibc/librpc/xdr_stdio.c,
- mdk-stage1/insmod-modutils/util/xmalloc.c,
- mdk-stage1/dietlibc/sparc/umul.S,
- mdk-stage1/insmod-modutils/include/kerneld.h,
- mdk-stage1/dietlibc/librpc/clnt_raw.c,
- mdk-stage1/dietlibc/libpthread/pthread_mutex_init.c,
- mdk-stage1/dietlibc/libstdio/stdout.c, mdk-stage1/dietlibc/README,
- mdk-stage1/dietlibc/libcruft/herrno_location.c,
- mdk-stage1/dietlibc/lib/shmctl.c,
- mdk-stage1/dietlibc/libpthread/pthread_mutex_unlock.c,
- mdk-stage1/dietlibc/librpc/xdr_rec.c,
- mdk-stage1/dietlibc/libpthread/pthread_cond_destroy.c,
- mdk-stage1/dietlibc/include/rpc/rpc_msg.h,
- mdk-stage1/dietlibc/syscalls.h, mdk-stage1/dietlibc/lib/toupper.c,
- mdk-stage1/dietlibc/libpthread/pthread_sys_open.c,
- mdk-stage1/dietlibc/lib/sigfillset.c, mdk-stage1/dietlibc/lib/listen.c,
- mdk-stage1/dietlibc/include/glob.h, mdk-stage1/dietlibc/libdl/_dl_int.h,
- mdk-stage1/dietlibc/libpthread/pthread_mutex_destroy.c,
- mdk-stage1/dietlibc/include/sys/mount.h, mdk-stage1/disk.c,
- mdk-stage1/dietlibc/lib/socket.c,
- mdk-stage1/dietlibc/libpthread/pthread_sys_waitpid.c,
- mdk-stage1/dietlibc/libpthread/pthread_attr_setdetachstate.c,
- mdk-stage1/dietlibc/libugly/strftime.c,
- mdk-stage1/dietlibc/lib/shutdown.c, mdk-stage1/insmod-modutils/insmod.c,
- mdk-stage1/dietlibc/lib/msgctl.c,
- mdk-stage1/dietlibc/libcruft/gethostbyname2.c,
- mdk-stage1/dietlibc/include/rpc/pmap_clnt.h,
- mdk-stage1/dietlibc/syscalls.s/pause.S,
- mdk-stage1/dietlibc/syscalls.s/socketcall.S,
- mdk-stage1/dietlibc/libpthread/pthread_cond_init.c,
- mdk-stage1/dietlibc/liblatin1/latin1-isupper.c,
- mdk-stage1/dietlibc/lib/islower.c,
- mdk-stage1/dietlibc/sparc/Makefile.add,
- mdk-stage1/dietlibc/include/sys/wait.h,
- mdk-stage1/dietlibc/lib/isalnum.c, mdk-stage1/dietlibc/libstdio/fseek.c,
- mdk-stage1/slang/Makefile, mdk-stage1/minilibc.h,
- mdk-stage1/dietlibc/librpc/getrpcent.c, mdk-stage1/dietlibc/AUTHOR,
- mdk-stage1/dietlibc/lib/getsockopt.c,
- mdk-stage1/dietlibc/libdl/_dl_jump.S, mdk-stage1/dietlibc/lib/atol.c,
- mdk-stage1/dietlibc/lib/isspace.c,
- mdk-stage1/dietlibc/syscalls.s/__pread.S,
- mdk-stage1/dietlibc/lib/strtol.c, mdk-stage1/dietlibc/lib/htonl.c,
- mdk-stage1/dietlibc/include/sys/sem.h,
- mdk-stage1/insmod-modutils/obj/obj_ppc.c,
- mdk-stage1/dietlibc/lib/shmget.c,
- mdk-stage1/dietlibc/include/rpc/auth_des.h,
- mdk-stage1/dietlibc/libcruft/getpwuid.c,
- mdk-stage1/dietlibc/libugly/logging.c,
- mdk-stage1/dietlibc/libcruft/dnscruft2.c,
- mdk-stage1/dietlibc/libpthread/pthread_create.c,
- mdk-stage1/dietlibc/alpha/clone.S,
- mdk-stage1/dietlibc/libpthread/pthread_sys_logging.c: Merge from
- R9_0-AMD64, most notably:
- - AMD64 support to insmod-busybox, minilibc, et al.
- - Sync with insmod-modutils 2.4.19 something but everyone should use
- dietlibc nowadays
- - Factor out compilation and prefix with $(DIET) for dietlibc builds
- - 64-bit & varargs fixes
-
- * mdk-stage1/stdio-frontend.c: typo from post-rereading
- Merge from R9_0-AMD64, most notably:
- - AMD64 support to insmod-busybox, minilibc, et al.
- - Sync with insmod-modutils 2.4.19 something but everyone should use
- dietlibc nowadays
- - Factor out compilation and prefix with $(DIET) for dietlibc builds
- - 64-bit & varargs fixes
-
- * mdk-stage1/dietlibc/threadsafe.sh, mdk-stage1/dietlibc/findcflags.sh:
- add missing scripts
-
- * mdk-stage1/dietlibc/libpthread/thread_key.c,
- mdk-stage1/dietlibc/lib/puts.c, mdk-stage1/dietlibc/lib/memccmp.c,
- mdk-stage1/dietlibc/libcruft/entlib.c,
- mdk-stage1/dietlibc/libcruft/grent.c, mdk-stage1/dietlibc/dirstream.h,
- mdk-stage1/dietlibc/syscalls.s/ptrace.s,
- mdk-stage1/dietlibc/lib/set_errno.c, mdk-stage1/dietlibc/lib/vprintf.c,
- mdk-stage1/dietlibc/syscalls.s/sigaction.S,
- mdk-stage1/dietlibc/libcruft/entlib.h, mdk-stage1/dietlibc/start.h,
- mdk-stage1/dietlibc/lib/__xmknod.c, mdk-stage1/dietlibc/lib/alarm.c,
- mdk-stage1/dietlibc/libcruft/pwent.c,
- mdk-stage1/dietlibc/libstdio/fputc.c,
- mdk-stage1/dietlibc/alpha/signal.S,
- mdk-stage1/dietlibc/libdl/elf_hash.c, mdk-stage1/dietlibc/dietstdarg.h,
- mdk-stage1/dietlibc/lib/speed.c,
- mdk-stage1/dietlibc/syscalls.s/llseek.S,
- mdk-stage1/dietlibc/lib/getservent.c,
- mdk-stage1/dietlibc/syscalls.s/sigsuspend.S,
- mdk-stage1/dietlibc/lib/errlist.c, mdk-stage1/dietlibc/lib/nop.c,
- mdk-stage1/dietlibc/syscalls.s/signal.S,
- mdk-stage1/dietlibc/libcruft/spent.c,
- mdk-stage1/dietlibc/syscalls.s/sigprocmask.S,
- mdk-stage1/dietlibc/libpthread/thread_internal.c,
- mdk-stage1/dietlibc/alpha/sigprocmask.S,
- mdk-stage1/dietlibc/lib/random.c,
- mdk-stage1/dietlibc/syscalls.s/sigpending.S,
- mdk-stage1/dietlibc/syscalls.s/exit.S,
- mdk-stage1/dietlibc/syscalls.s/pwrite.S,
- mdk-stage1/dietlibc/libugly/daemon.c,
- mdk-stage1/dietlibc/libstdio/fgetc.c,
- mdk-stage1/dietlibc/lib/vfprintf.c: even more removals
-
- * mdk-stage1/dietlibc/dieticonv.h, mdk-stage1/dietlibc/dietlibm.h,
- mdk-stage1/dietlibc/dyn_stop.c, mdk-stage1/dietlibc/binshstr.h,
- mdk-stage1/dietlibc/linuxnet.h, mdk-stage1/dietlibc/parselib.h,
- mdk-stage1/dietlibc/dietuglyweaks.h, mdk-stage1/dietlibc/dyn_start.c,
- mdk-stage1/dietlibc/dietdns.h: latest missing files
-
-2003/06/04 Pixel <pixel at mandrakesoft.com>
-
- * fsedit.pm: allow specifying lv_name in auto_installs (not tested!)
-
- * install_steps.pm: don't use framebuffer after install on i845 (even if
- framebuffer works during install)
- (this implies no graphical boot)
-
- * diskdrake/interactive.pm, lvm.pm: allow choosing lv name (thanks to
- Brian Murrell)
-
-2003/06/03 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po, share/po/ja.po, share/po/vi.po, share/po/sq.po: updated
- Estonien, Japanese, Albanian and Vietnamese po files
-
-2003/06/02 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Update
-
-2003/06/02 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: updated Spanish translations
-
-2003/05/31 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/he.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/tg.po, share/po/bs.po, share/po/uz.po,
- share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/sr@Latn.po,
- share/po/sq.po, keyboard.pm, share/po/it.po, share/po/nl.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/el.po, share/po/cs.po, share/po/bg.po, share/po/lv.po,
- share/po/hu.po: changed the name of the russian phonetic layout
-
-2003/05/30 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * standalone/mousedrake, drakxtools.spec: add mouse test in non-embedded
- mode (#2049)
-
-2003/05/30 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/he.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/tg.po, share/po/bs.po, share/po/uz.po,
- share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
- share/po/es.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/lv.po, share/po/hu.po: updated Vietnamese file
-
- * share/po/de.po: updated German file
- updated Vietnamese file
-
-2003/05/28 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/isdn.pm: forgot to commit the new configuration step
- - remove isdn-light config (seen with isdn4net maintainer)
- - new step to keep old device configuration
-
- * network/isdn_consts.pm: s/my/our/ to make perl_checker happy in isdn.pm
-
-2003/05/28 François Pons <fpons at mandrakesoft.com>
-
- * network/modem.pm: remove /dev/ttyS14 link by drakconnect.
-
-2003/05/28 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/dhcp.c: grow MAX_ARP_RETRIES from 4 to 7 after erwan's
- suggestion
-
-2003/05/28 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/tg.po, share/po/id.po, share/po/ru.po, share/po/ro.po,
- share/po/th.po, share/po/is.po, share/po/no.po, share/po/hr.po,
- share/po/tr.po, share/po/ta.po, share/po/mt.po, share/po/sq.po,
- share/po/it.po, share/po/nl.po, share/po/fi.po, share/po/he.po,
- share/po/lt.po, share/po/lv.po, share/po/hu.po: updated Albanian file
-
-2003/05/28 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * network/isdn_consts.pm: fix isdndata export in stripped package
-
-2003/05/27 Daouda Lo <daouda at mandrakesoft.com>
-
- * any.pm:
- - user name must begin with a letter but not with a number or - or _
-
-2003/05/27 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: updated Spanish translation
-
-2003/05/27 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/be.po, share/po/bs.po, share/po/gl.po, share/po/de.po,
- share/po/br.po, share/po/cy.po, share/po/af.po, share/po/et.po,
- share/po/az.po, share/po/da.po, share/po/ca.po, share/po/cs.po,
- share/po/bg.po, share/po/ar.po, share/po/ga.po: updated Estonian file
-
-2003/05/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 9.2-0.5mdk
- 9.2-0.4mdk
-
-2003/05/26 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/uz.po, share/po/sk.po, share/po/wa.po, share/po/pt_BR.po,
- share/po/sl.po, share/po/et.po, share/po/zh_TW.po, share/po/ja.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
- share/po/sr@Latn.po, share/po/sq.po, share/po/uk.po, share/po/eu.po,
- share/po/es.po, share/po/DrakX.pot, share/po/ko.po, share/po/sv.po,
- share/po/sr.po, share/po/fi.po, share/po/pl.po, share/po/eo.po,
- share/po/el.po: updated pot file
-
-2003/05/26 Pixel <pixel at mandrakesoft.com>
-
- * any.pm: be perl_checker prototype compliant
-
- * commands: use formatError to display the error message
- (to have a better error message than "SCALAR(0x....) at ...")
-
- * interactive/http.pm, interactive.pm, interactive/newt.pm:
- - methods with no argument are not functions with no argument!
- - perl_checker fixes
-
-2003/05/24 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * keyboard.pm: Added new toggle possibilities to the menu; use "en_US" for
- US layout
-
-2003/05/23 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/network.pm: #3628 /etc/resolv.conf explicit rights set (by titi)
-
-2003/05/23 gbeauchesne
-
- * any.pm, bootloader.pm: Kernel and initrd are now in /boot/efi/mandrake
- on IA-64
-
- * drakxtools.spec: Update changelog
-
- * mdk-stage1/insmod-modutils/obj/Makefile:
- -Wno-error on IA-64 too for insmod-modutils/obj
-
- * install_gtk.pm, share/list.ia64: Clean-ups. Remove
- /var/log/XFree86.0.log from filelist
-
-2003/05/23 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po: updated Estonian file
-
- * share/po/ja.po: updated Japanese file
-
-2003/05/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/draksplash, network/network.pm, network/modem.pm,
- standalone/draksec, install_steps.pm, handle_configs.pm,
- standalone/drakautoinst, standalone/drakpxe, my_gtk.pm,
- partition_table/sun.pm, install_steps_interactive.pm,
- standalone/harddrake2, standalone/drakboot, standalone/drakTermServ,
- standalone/net_monitor, standalone/drakbackup, partition_table/raw.pm,
- partition_table.pm, interactive/http.pm, printer/main.pm,
- security/msec.pm, diskdrake/interactive.pm, partition_table/bsd.pm,
- standalone/fileshareset, standalone/drakfloppy, standalone/drakfont,
- standalone/drakconnect, standalone/drakgw, interactive/gtk.pm,
- standalone/drakbug, standalone/drakperm, fsedit.pm, .perl_checker,
- printer/printerdrake.pm: perl_checker fixes
-
- * drakxtools.spec: next release
-
- * standalone/drakfirewall: please perl_checker
-
- * standalone/logdrake: perl_checker fixes
- perl_checker fixes
-
-2003/05/22 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/05/22 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/he.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/tg.po, share/po/bs.po, share/po/uz.po,
- share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
- share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: updated
- pot file
-
-2003/05/22 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: Fix differntial user file naming.
-
-2003/05/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * printer/printerdrake.pm: better english (#1342)
-
- * standalone/draksplash, standalone/logdrake: gtk+-2 specs prohibid
- playing with policy
-
- * drakxtools.spec: 9.2-0.3mdk
- next 9.2-0.3mdk bits
- fix #3485
-
- * network/netconnect.pm: kill some warnings catched by diagnostics pragma
-
- * standalone/drakconnect: gtk+-2 specs prohibid playing with policy
- (build_list) simplify ip parsing
- workaround #3341: display "Bad ip" instead of a blank field if ip
- wasn't correctly parsed as an ip ?
-
- * standalone/drakbug: do not mix interactive and ugtk2, let reusse
- create_dialog()
- do not set twice the title, ugtk2->new already do it for us
- remove unused variable
- gtk+-2 specs prohibid playing with policy
- (quit_global) inline it
- - further clean gui construction through functionnal ugtk2
- - do not gratuitously add:
- o " " around button labels
- o empty strings at end of kernel release
- - (parse_release) simplify
- - there's no need to keep a reference on field that we do not further
- use (distro release is parsed again when needed and kernel release
- is already stored in some variable)
- - do not pack nothing to widgets
- - simplify gui construction through create_packtable(), we really do
- not have to offuscate it like c programmers have to
- - one shall not be able to alter kernel or distribution release number
-
- * harddrake/data.pm: do not fork usb module drivers list but reuse
- list_modules one instead
-
- * share/po/fr.po: update fr translation
-
-2003/05/21 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/network.pm: add some ip checking (#853)
- remove old comments
-
-2003/05/21 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translations
-
-2003/05/21 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * ugtk2.pm: fix gc sux in 1.117 modfiying function behaviour
- gtktext_insert: fix indenting of one line, takes that as a
- pretext to redo whole function identing without tabs
- beautify titi
-
-2003/05/21 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/be.po, share/po/uk.po, share/po/bg.po, share/po/sr.po,
- share/po/ru.po: put "yawerty" in cyrillic for languages using cyrillic
- alphabet
-
-2003/05/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 9.2-0.3mdk's first bits (more to com tomorrow)
-
- * standalone/drakboot: we already have fork()+exec() detect_loader, so
- there's no need to do
- it again
-
- * standalone/harddrake2: remove unused function that should never have
- come to live
- - help menu items are not checkable
- - do not display spurious "/" on menu buttons when embedded
- - (strip_first_underscore) let speedup the regexp
-
- * printer/gimp.pm: please gc
-
- * ugtk2.pm (gtktext_append) fix gtktext_insert() call
-
-2003/05/20 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Partially updated
-
-2003/05/20 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * modules/interactive.pm: fix BUG 2530, no more spurious window when
- insmoding fail
-
- * network/ethernet.pm: #763 #2336 fix alias in modules.conf
- perl_checker compliant
-
-2003/05/20 keld
-
- * share/po/da.po: Updates
- gi/perl-install/share/po/da.po
-
-2003/05/20 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po, share/po/fi.po, share/po/de.po: updated pot file
- updated German, Estonian and Finnish files
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/lt.po, share/po/he.po, share/po/cy.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/tg.po,
- share/po/bs.po, share/po/uz.po, share/po/ro.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/sr@Latn.po, share/po/sq.po, share/po/it.po,
- share/po/nl.po, share/po/eu.po, share/po/es.po, share/po/eo.po,
- share/po/el.po, share/po/cs.po, share/po/bg.po, share/po/lv.po,
- share/po/hu.po: updated pot file
-
-2003/05/20 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/scannerdrake (removeverticalbar) pixelate
- perl_checker fixes
-
- * Xconfig/xfreeX.pm: perl_checker fix
-
- * common.pm (set_permissions): owner and group are optional parameters
-
- * printer/gimp.pm: typo fix
- (pop_spaces) prevent infinite loop
- (addprinter,isprinterconfigured): remove temp variables
-
- * drakxtools.spec: 9.1-0.2mdk
- distriblint fix
- one last fix
- further bits for 9.2-0.1mdk
- first bits of 9.2-0.1mdk
-
- * printer/printerdrake.pm:
- - perl_checker fixes, which show up the following bugs:
- - printer::printerdrake::{setup_smb,setup_socket}(): do not use undef
- values, but reuse those we just calculate
- - printer::printerdrake::main(): fix printer::default::printer_type()
- callee
-
- - printer::printerdrake::check_network(): fix
- network::netconnect::main() callee
-
- * network/nfs.pm (find_servers): chomp is uneeded
- (find_exports) better behavior when regexp does not match
-
- * standalone/harddrake2: better explanation of the wp field
-
- * standalone/draksplash: perl_checker fixes
-
- * printer/detect.pm, standalone/printerdrake: perl_checker fixes
- printer::printerdrake::{setup_smb,setup_socket}(): do not use undef
- values, but reuse those
- we just calculate
- printer::printerdrake::main(): fix printer::default::printer_type()
- callee
-
- * my_gtk.pm: fix #3952: do not pass extra argument (gc altered
- common::take_screenshot() api in r1.172 but forget to alter all
- callees)
-
- * standalone/drakfont: try to simplify
- (put_font_dir): $/variable is unlikely what was initially intended
- (chk_empty_xfs_path): typo fix
- (search_dir_font_uninstall): further simplify
- (chk_empty_xfs_path):
- - any { !cdt} equals to every { cdt }
- - if_ is unneeded
-
- (search_dir_font_uninstall) map { if_(cdt, $_ } equals to grep { cdt }
- (file_ok_sel) prevent potential crash in perl regexp engine if sg bad
- happenned in the translation
- fix #3960: divide by zero execption
-
- * security/msec.pm:
- - fix #3616 (draksec discarding changes)
- - add a end of line btw at the end of file to please cat
-
- * standalone/drakedm: fix #1743: offer to restart the dm service
-
- * printer/main.pm: perl_checker fixes
- printer::printerdrake::{setup_smb,setup_socket}(): do not use undef
- values, but reuse those
- we just calculate
- printer::printerdrake::main(): fix printer::default::printer_type()
- callee
- prevent set_usermode() vs set_cups_autoconf() conflict
- restore service restart
-
- * .perl_checker: check again printerdrake, this would have prevent whoever
- altered
- network::netconnect::main() to forget some calle when updating all
- calle for new parameters signature :-(
-
- * bootloader.pm: for whatever reason, the second part of
- detect_bootloader()
- consolidation didn't make up into the cvs
-
- * modules.pm (probe_category): one regexp is enough for isdn
-
- * share/po/fr.po: update french translation
-
-2003/05/19 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: updated Spanish translations
-
-2003/05/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * printer/gimp.pm (gimp::pop_spaces): consolidate skipping of lines that
- are space ended
- perl_checker fixes
-
- * any.pm: in standalone drakboot, raise a wait message window so that the
- user can figure
- out what occurs (lilo installation being quite long)
-
- * bootloader.pm: fix #3560 (drakboot not updating bootloader label): the
- only confusing
- bug is that when one come back to drakboot main window after having
- altered the bootloader, the main window still list the old bootloader
- as the current bootloader.
- let update this label.
- btw consolidate bootloader detection in bootloader::detect_bootloader()
- further fix #2826 (lilo failling to handle entry with spaces): replace
- spaces by underscores in labels (image names are not likely to contain
- spaces) to prevent the error
- when configuring to install grub bootloader, we first install lilo, then
- grub.
-
- the logic is that we only reread /etc/lilo.conf[1], so we need to write
- /etc/lilo.conf. but when installing grub, we really do not need to run
- lilo, we
- only have to write its config file.
-
- [1] because grub/menu.lst lacks some data and because we do neither want
- to
- parse both config files nor to resolve conflicts between configuration
- let further consolidate make_label_lilo_compatible()
-
- * printer/main.pm:
- - (read_location, rip_location): simplify loop condition since once we
- get
- $location_end, we exit it
- - (rip_location): simplify @location build when no existing one
- - (get_cups_autoconf, set_cups_autoconf, get_usermode, set_usermode):
- simplify
- a lot through getVarsFromSh() and setVarsInSh()
-
- - (set_jap_textmode) simplify a lot through substInFile()
-
- now all /etc/sysconfig/printing accesses get done by MDK::Common::File
- (until
- shell template from libconf is used)
- perl_checker fixes
-
- * standalone/logdrake: dialog window is already modal
-
- * printer/cups.pm, printer/detect.pm, printer/office.pm,
- printer/default.pm, printer/services.pm, printer/printerdrake.pm:
- perl_checker fixes
-
- * standalone/drakboot: fix #3560 (drakboot not updating bootloader label):
- the only confusing
- bug is that when one come back to drakboot main window after having
- altered the bootloader, the main window still list the old bootloader
- as the current bootloader.
- let update this label.
- btw consolidate bootloader detection in bootloader::detect_bootloader()
-
- * network/network.pm: move expert stuff under the "advanced" button like
- in all other drakx/drakxtools code
-
- * network/nfs.pm: do not drop return values from regexp but use them to
- ensure we do not
- reuse capture buffers from previous one, which is really bad and
- trully buggy
-
- * lang.pm: %langs: first column is supposed to be localized in english
-
- * standalone/drakconnect: some drakconnect cleanups
-
- * standalone/lsnetdrake: simplify
-
- * standalone/harddrake2: localize drive capabilites (aka burning, dvd
- managment, ...)
-
- * drakxtools.spec: add a bug reference
- last 9.1-38mdk bits
- update perl-gtk0 users list (drakcronat being ported to gtk+2)
-
- * install_steps.pm: fix network::netconnect::save_conf() callee
-
-2003/05/16 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/netconnect.pm: add a step to warn user before writing settings
- (bug #852 and so)
-
-2003/05/16 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/he.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/tg.po, share/po/bs.po, share/po/uz.po,
- share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/sr@Latn.po,
- share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
- share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: updated
- pot file
-
-2003/05/16 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk2.pm: perl_checker fix
-
- * network/isdn_consts.pm: let it work
-
- * drakxtools.spec: first bits of 9.1-38mdk
-
-2003/05/15 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Typo fix
-
-2003/05/15 keld
-
- * share/po/da.po: updates
- gi/perl-install/share/po/da.po
-
-2003/05/15 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ja.po, share/po/DrakX.pot: updated pot file
-
-2003/05/15 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * ugtk.pm: mark it as deprecated
-
- * standalone/harddrake2:
- - describe wp flag on ia32 cpus
- - make all field descriptions begin by a lower case letter
- - (create_dialog) :
- o options are passed through a hash ref
- o wrap text
- o update caller list
- - harddrake2: convert to use create_dialog() instead of
- interactive->warn
- (fix #3487)
-
- * standalone/drakfont (create_dialog) :
- - update caller list
- - add title parameter and update callers
- remove unused variable
- do not use interactive to get root capabilties, directly use
- require_root_capability()
- fix #1352 : do not add buggy font directories
- hide "mode switch" buttons to only enable to switch to the other mode,
- not the current one
-
- * ugtk2.pm (create_dialog) scroll window if needed
- - (create_dialog) :
- o options are passed through a hash ref
- o wrap text
- o update caller list
- - harddrake2: convert to use create_dialog() instead of
- interactive->warn
- (fix #3487)
- (create_dialog) :
- - update caller list
- - add title parameter and update callers
-
- * standalone/drakfloppy (create_dialog) :
- - update caller list
- - add title parameter and update callers
-
- * harddrake/data.pm: bump version
-
- * drakxtools.spec:
- - 9.1-37mdk
- - bump require in order to help rpm to update for new autoreq
-
-2003/05/14 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Some fixes and so...
- Updated partially
-
-2003/05/14 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * bootloader.pm: perl_checker fixes
-
- * standalone/drakfont:
- - uninline poulpy
- - use map instead of foreach in some places
- - (chk_empty_xfs_path): replacing foreach by map make obvious that we
- don't have to grep all items, grep will be enough
-
- - (put_font_dir): consolidate some code into convert_fonts; this make
- obvious there were some bug due to $/varname typo; this also reduce
- the message to translate ammount
-
-2003/05/13 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup, standalone/drakTermServ: perl_checker cleaning
-
-2003/05/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakedm: perl_checker fix
-
- * .perl_checker: ignore URPM::Resolve until francois qiet it down
-
- * standalone/drakperm: better use get instead of _get
-
- * network/netconnect.pm:
- - gtkcreate_img is exported by helpers tag in ugtk2
- - add a bug note: write_on_pixmap() is only in my_gtk, not in ugtk2 !
-
- * standalone/drakbug: make option managment look like real perl
-
- * standalone/drakgw: perl_checker fixes
-
- * Xconfig/main.pm (configure_everything_or_configure_chooser) keyboard and
- mouse
- paremeters really are optional, Xconfig::default::configure() handle
- the fact they're undefined for us
-
- * standalone/drakboot: let ugtk2->new manage the title setting
-
- * standalone/drakfont: better use s/_get/get/ and {get,set}_fraction
- instead of ->fraction
- helper
-
- * standalone/drakconnect:
- - remove 80% of perl_checker warnings
- - gtkbuttonset is not exported by ugtk2
-
- * standalone/drakTermServ: cleanups
-
- * standalone/drakfloppy:
- - add empty prototypes to help perl_checker
- - has_sub_trees: better use ||
-
- * standalone/drakxtv: help perl_checker by providing an empty prototype
-
-2003/05/12 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/isdn.pm: s/@isdn::isdndata/@isdndata/
-
-2003/05/12 Pixel <pixel at mandrakesoft.com>
-
- * interactive.pm: have the "Ok" in ask_from__add_modify_remove return true
- in default mode (eg: newt)
-
- * standalone/diskdrake: add "--list-hd" to please gbeauchesne
-
-2003/05/12 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: perl_checker compliance, differential mode
- option, explain adding directories
-
-2003/05/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * any.pm: use matched values only if matching did success
-
- * drakxtools.spec: help auto-provides
- 9.1-36mdk
-
- * standalone/drakboot:
- - pass enough dummy parameters to fs::merge_info_from_fstab
- - add empty prototypes to help perl_checker catch miss writeen func
- calls
- - do not log localized messages; what's more, this is supposed to be
- already logged by standalone
- - in testing mode:
- o do not enforce the need for bootsplash
- o do not really run mkinitrd
- - if bootsplash miss, we should just go back to main config window
-
-2003/05/10 keld
-
- * share/po/da.po: updates
- gi/perl-install/share/po/da.po
-
-2003/05/09 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/he.po: updated Hebrew file
-
-2003/05/07 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakconnect:
- - follow new network::netconnect::save_conf signature
- - remove call to network::netconnect::set_net_conf, no longer exist
-
- * network/netconnect.pm:
- - configuration stuff
- . rewrite sub save_conf, new signature is ($netcnx)
- . rewrite sub load_conf, connection type stored in
- /etc/sysconfig/drakconnect
- . remove sub read_raw_net_conf
- . shrink sub read_net_conf
- - drop if ($nb < 1 ), useless
- - perl_checker
-
- * network/isdn.pm: s|/sbin/isdnctrl|/usr/sbin/isdnctrl|
-
-2003/05/06 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: More entries
-
-2003/05/06 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/netconnect.pm:
- - remove sub intro
- - change sub main signature
- - drop !$::isWizard code
- - perl_checker
-
- * network/tools.pm:
- - drop !$::isWizard code
- - perl_checker
-
- * standalone/drakconnect:
- - drop !$::isWizard code
- - change netconnect::main signature
- - change network::modem::ppp_configure signature
- - perl_checker
- - cleanup
-
- * install_steps_interactive.pm: change network::netconnect::main signature
-
-2003/05/06 erwan
-
- * drakxtools.spec: Fix changelog
-
-2003/05/06 gbeauchesne
-
- * standalone/drakboot: Fix drakboot booloader methods for ia64 and amd64
-
-2003/05/06 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * keyboard.pm, share/po/sp.po, pixmaps/langs/lang-sh.png, lang.pm,
- share/po/sr.po, share/po/sr@Latn.po, pixmaps/langs/lang-sp.png: Renamed
- Serbian po files to follow standard (sr -> cyrillic, sr@Latn -> latin).
- 'sh' is used internally by DrakX for identifier by DrakX; and 'sh_YU'
- used as locale name, for latin Serbian, to avoid use of '@' character
- which may be problematic in some cases.
-
- * share/po/ru.po, share/po/he.po: updated Hebrew and Russian files
-
-2003/05/06 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: crash on add other files
- fix disabled incremental other files checkbox
- fix lack of incremental backups of other files
- fix broken daemon mode
- fix file remove issue
- I know it fails perl_checker - require ugtk2 never returns on console
-
-2003/05/05 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/ethernet.pm: perl_checker fixes
-
- * network/adsl.pm:
- - remove unused $intf in adsl_probe_info and adsl_ask_info
- - perl_checker fixes
-
- * network/netconnect.pm:
- - change configure and winmodemConfigure args (due to $intf drop)
-
- * network/modem.pm:
- - drop unused $intf in configure and winmodemConfigure
- - fix winmodem configuration behavior
- - perl_checker
-
-2003/05/02 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * network/ethernet.pm: fix typo
-
- * network/netconnect.pm, network/tools.pm, network/network.pm:
- perl_checker fixes
-
- * standalone/drakfont: fix sucky fonction (thanks to master guillaume)
-
-2003/04/30 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakfont: more perl_checker compliant
-
-2003/04/30 gbeauchesne
-
- * partition_table.pm: Revert XFS support, not stable enough especially on
- SMP
-
-2003/04/30 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * any.pm: have /etc/sysconfig/i18n in report.bug
-
- * ugtk2.pm: remove export for two removed functions
-
-2003/04/30 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/zh_CN.po: Changed charset encoding
-
-2003/04/30 Pixel <pixel at mandrakesoft.com>
-
- * install_steps.pm, http.pm, detect_devices.pm, network/isdn.pm,
- interactive.pm, Xconfig/resolution_and_depth.pm, c.pm,
- partition_table/sun.pm, network/adsl.pm, swap.pm, pkgs.pm, lang.pm,
- install2.pm: perl_checker compliance
-
-2003/04/30 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/service_harddrake: perl_checker fix
-
- * drakxtools.spec: 9.1-35mdk
-
- * standalone/drakfont:
- - no non empty prototypes
- - s/sub { one func call }/code ref/
- perl_checker fixes
-
- * ugtk2.pm (create_dialog):
- - second parameter really is optionnal
- - do not blindly set the title to logdrake, this is used elsewhere
-
- * security/level.pm: fix #3618
-
- * scanner.pm, standalone/drakperm, standalone/drakbug: perl_checker fixes
-
-2003/04/29 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated partially
-
-2003/04/29 Damien Chaumette <dchaumette at mandrakesoft.com>
-
- * standalone/drakfont: more perl_checker friendly
- empty install list at cancel
- prevent void list installation
-
-2003/04/29 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * ugtk2.pm: perl_checker can parse me at last
-
-2003/04/29 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakboot: no doble module loading
-
- * modules.pm (get_parameters) perl-ize
-
- * drakxtools.spec: 9.1-34mdk
-
- * standalone/drakedm: fix #3701: return back to the display managers menu
- if one cancel the
- installation of the required packages
-
-2003/04/28 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * rescue/list.i386: add resize_reiserfs
-
-2003/04/28 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bg.po, share/po/he.po: updated Hebrew and Bulgarian files
-
-2003/04/26 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po: updated Estonian file
-
-2003/04/24 gbeauchesne
-
- * drakxtools.spec: 1.1.19-56mdk
-
-2003/04/24 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/various.pm, Xconfig/card.pm, standalone/draksec, scanner.pm,
- install_steps.pm, diskdrake/removable.pm, network/isdn.pm,
- interactive.pm, c.pm, partition_table/gpt.pm, resize_fat/directory.pm,
- install_steps_interactive.pm, network/netconnect.pm, mouse.pm,
- standalone/harddrake2, devices.pm, lang.pm, lvm.pm, install2.pm,
- raid.pm, crypto.pm, diskdrake/smbnfs_gtk.pm, commands.pm, ugtk2.pm,
- partition_table.pm, any.pm, loopback.pm, Xconfig/xfree3.pm,
- sbus_probing/main.pm, interactive/http.pm, diskdrake/interactive.pm,
- interactive/stdio.pm, pkgs.pm, interactive/newt.pm, harddrake/sound.pm,
- services.pm, security/level.pm, fs.pm, install_messages.pm,
- install_steps_auto_install.pm, harddrake/data.pm, keyboard.pm,
- diskdrake/hd_gtk.pm, Xconfig/monitor.pm, fsedit.pm, modules.pm,
- common.pm, detect_devices.pm, network/tools.pm, network/shorewall.pm,
- install_any.pm, timezone.pm: perl_checker adaptations + fixes
-
-2003/04/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: fix conflict with perl-Locale-gettext
-
-2003/04/23 gbeauchesne
-
- * share/list.x86_64, rescue/list.x86_64, partition_table.pm: add xfs for
- amd64
-
-2003/04/23 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * rescue/list: file-4.02
-
-2003/04/23 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/tg.po, share/po/uz.po, share/po/sk.po, share/po/ru.po,
- share/po/ro.po, share/po/wa.po, share/po/pt_BR.po, share/po/th.po,
- share/po/sl.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/tr.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/sq.po,
- share/po/uk.po, share/po/pl.po, share/po/sr.po, share/po/sv.po,
- share/po/sp.po, share/po/help-it.pot: updated pot file
-
-2003/04/23 Pixel <pixel at mandrakesoft.com>
-
- * help.pm: add prototypes
-
- * share/po/help_xml2pm.pl: add prototypes to help.pm
-
-2003/04/23 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 9.1-32mdk
- - localedrake is part of drakxtools-newt, so does its menu entry (and
- sanitize its entry btw)
- - drakxtools-newt: add the needed post and postun macros
- - sort provides'n obsoletes, add missing drakfloppy
-
- * share/po/fr.po: update french translation
-
-2003/04/22 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/et.po: updated pot file
- updated pot file
-
- * share/po/bs.po, share/po/id.po, share/po/gl.po, share/po/br.po,
- share/po/is.po, share/po/no.po, share/po/af.po, share/po/az.po,
- share/po/ja.po, share/po/hr.po, share/po/mt.po, share/po/fr.po,
- share/po/ga.po, share/po/nl.po, share/po/it.po, share/po/be.po,
- share/po/eu.po, share/po/es.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/fi.po, share/po/de.po, share/po/lt.po, share/po/he.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/eo.po,
- share/po/lv.po, share/po/bg.po, share/po/cs.po, share/po/el.po,
- share/po/hu.po, share/po/ar.po: updated pot file
-
-2003/04/22 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm: fix typos and cleanup syntax
-
- * install_any.pm: perl_checker compliance for optional method arguments
- fix bug #3652 (grub must be installed for a loopback install)
-
- * share/po/help_xml2pm.pl, help.pm: fix typo (help.pm must return a true
- value)
- per Pablo's request:
- - create a mini header in the generated help-*.pot files
- - guilabel, guibutton and guimenu now uses %s to separate more cleanly
- what
- comes is doc and what is gui text
- !! the new generated help.pm has a different interface, non-backward
- compliant !!
-
- * Xconfig/xfree3.pm, Xconfig/xfreeX.pm, install_steps_gtk.pm,
- Xconfig/xfree.pm: perl_checker compliance for optional method arguments
-
- * interactive.pm: perl_checker compliance for optional method arguments
- adapt to new help.pm
-
- * share/po/help-fr.pot, share/po/help-de.pot, share/po/help-ru.pot,
- share/po/help-es.pot, share/po/help-it.pot: per Pablo's request:
- - create a mini header in the generated help-*.pot files
- - guilabel, guibutton and guimenu now uses %s to separate more cleanly
- what
- comes is doc and what is gui text
- !! the new generated help.pm has a different interface, non-backward
- compliant !!
-
-2003/04/22 tpittich
-
- * share/po/sk.po: fixed slovak translation (thanks to Stanislav Visnovsky
- and Zdenko Podobny)
-
-2003/04/22 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/harddrake2: array costs less than a hash
-
- * drakxtools.spec: 9.1-31mdk
-
-2003/04/21 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/it.po: updated Italian file
-
-2003/04/21 Pixel <pixel at mandrakesoft.com>
-
- * keyboard.pm: 'Option "XkbCompat" "group_led"' is no good because
- it means that effectively NO other compatibility settings
- are included i.e. NONE of standard XFree86 keys work,
- including Ctrl-Alt-Fx, Ctrl-Alt-KP+, Ctrl-Alt-KP- etc.
- 'Option "XkbCompat" "default+group_led"' is much better
- (thanks Andrey Borzenkov)
-
- * share/rpmsrate: have bison and flex installed when DEVELOPMENT is chosen
- (thanks to Adam
- Williamson)
-
-2003/04/18 François Pons <fpons at mandrakesoft.com>
-
- * install_any.pm: make all CD as update (as it should have been to allow
- updates to be resolved).
-
-2003/04/17 gbeauchesne
-
- * share/list.x86_64: Add raid & reiserfs tools
-
- * drakxtools.spec: Use RPM_OPT_FLAGS when compiling tools
- (rpcinfo-flushed)
- 1.1.9-55mdk
-
- * tools/Makefile: Compile rpcinfo-flushed/xhost+ with -Os so that code
- size is reduced
- and magically fixed on hammer. ;-)
-
-2003/04/17 Pixel <pixel at mandrakesoft.com>
-
- * fs.pm: another perl_checker optional parameter compliance
- new perl_checker compliance
-
- * Xconfig/various.pm, network/network.pm, network/modem.pm,
- security/various.pm, standalone/draksec, partition_table/dos.pm,
- scanner.pm, install_steps.pm, Xconfig/parse.pm, network/isdn.pm,
- interactive.pm, resize_fat/directory.pm, install_steps_interactive.pm,
- network/netconnect.pm, Xconfig/xfreeX.pm, mouse.pm, devices.pm, lang.pm,
- resize_fat/boot_sector.pm, network/drakfirewall.pm,
- modules/interactive.pm, standalone/diskdrake, crypto.pm,
- Xconfig/main.pm, diskdrake/smbnfs_gtk.pm, install_interactive.pm,
- partition_table/raw.pm, ugtk2.pm, partition_table.pm, any.pm,
- install_steps_gtk.pm, partition_table/mac.pm, ftp.pm,
- diskdrake/interactive.pm, pkgs.pm, interactive/newt.pm,
- network/ethernet.pm, Xconfig/resolution_and_depth.pm, bootloader.pm,
- diskdrake/hd_gtk.pm, Xconfig/monitor.pm, fsedit.pm,
- partition_table/lvm_PV.pm, modules.pm, common.pm, detect_devices.pm,
- standalone/drakupdate_fstab, install_any.pm, timezone.pm: new
- perl_checker compliance
-
-2003/04/16 gbeauchesne
-
- * mdk-stage1/insmod-busybox/Makefile:
- - Update to busybox 0.65.0 version
- - Add support for x86-64
- Use $(DIET) wrapper
-
- * mdk-stage1/insmod-busybox/insmod.c, mdk-stage1/insmod-busybox/Config.h,
- mdk-stage1/insmod-busybox/busybox.h: Fixes. Don't care about taint
- stuff. Constify a little so that some dead
- branches could be nuked. -> Reduce code size by 5 KB.
- - Update to busybox 0.65.0 version
- - Add support for x86-64
- Merge back fixes from HEAD but don't use the init_module() et al. tricks
- since correct dietlibc 0.22 is used on the branch.
- - Update to insmod from busybox 0.65.0
- - Add support for x86-64
-
- * mdk-stage1/insmod-busybox/README: Update README
-
- * mdk-stage1/Makefile: use insmod-busybox on x86-64, save around 50 KB.
- ;-)
-
-2003/04/16 Pixel <pixel at mandrakesoft.com>
-
- * ugtk2.pm: comply to new each_index behaviour
-
-2003/04/16 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakconnect: fix #1675: swap the text and button widgets
-
-2003/04/15 gbeauchesne
-
- * detect_devices.pm: Fix hasSMP()
-
- * install_any.pm: CD-ROM installations use cdrom.img on x86-64 nowadays
-
-2003/04/15 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/harddrake2: add hint for translators
-
-2003/04/14 gbeauchesne
-
- * harddrake/data.pm: fix harddrake doesn't display unknow hardware (tv,
- 9.0 updates)
-
- * mdk-stage1/dhcp.c, docs/README, mdk-stage1/tools.c, mdk-stage1/stage1.h:
- Handle "netauto" mode (gc, post 9.1)
-
- * drakxtools.spec: Match current 9_0-64bit-branch state
-
-2003/04/14 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/dhcp.c, mdk-stage1/tools.c, mdk-stage1/stage1.h: put dhcp
- bootfile under netauto parameter
-
-2003/04/11 dam's <dams at idm.fr>
-
- * standalone/drakconnect: corrected titi typo
-
-2003/04/11 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/th.po: changed "reboot" to latin letters, as requested.
-
-2003/04/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/drakboot: any::setupBootloader() already call
- bootloader::install()
-
- * standalone/drakedm: it was designed in 2003, not 2002
-
-2003/04/07 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: first bits of 9.1-31mdk
- fix harddrake menu entry description
-
- * standalone/drakboot: fix #2826 (aka pixel sucks):
- pixel changed the booloader module api by throwing an exception
- instead of using the ugly /tmp/.error temporary file and altered drakx
- callers but forget to update standalone/* callers (aka drakboot).
- now, with this patch, any error during lilo/grub installation is
- catched and displayed, which is more generic than checking for spaces.
-
-2003/04/04 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * docs/README: some fixes and improvements
-
- * docs/HACKING: some updates
-
-2003/04/04 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: bump gtk2-perl require because of #3633
- 9.1-30mdk
-
- * scanner.pm: fix doble explanation logging of scannerdrake and harddrake
- startup
-
- * standalone/logdrake:
- - perl_checker fixes
- - ensure only one callback do regular parsing
-
- * standalone/drakfloppy: fix crash on floppy generation reported by
- Francisco Alcaraz
-
-2003/04/03 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Updated
-
-2003/04/03 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * ugtk2.pm: after adding gtk_text_buffer_place_cursor in gtk2-perl, use it
- here :)
- fix #3633 (cursor at the end of TextView after gtktext_insert)
- remove a few memory leaks
-
- * drakxtools.spec: after adding gtk_text_buffer_place_cursor in gtk2-perl,
- use it here :)
-
-2003/04/02 gbeauchesne
-
- * detect_devices.pm: Update to match IA-64 ACPI format string "XXX CPUs
- available"
-
-2003/04/02 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * patch/9.1/patch-loopback.pl: Error scenario: When using a file for your
- / (a "loopback"), booting your newly
- installed system will fail with a kernel panic with flashing keyboard
- lights
- Why: The initrd needs to load the loop.o module to mount your /
- partition; but
- since recently, loop.o depends on aes.o, and since mkinitrd doesn't
- handle
- dependencies automatically and we didn't notice that change, we didn't
- update
- mkinitrd accordingly
- Solution: Format a floppy disk with a DOS filesystem (in Linux, you can
- use the
- command "mkdosfs /dev/fd0"). Copy patch.pl to the floppy disk. Remove
- the floppy
- and reboot using the Mandrake Linux 9.1 CD1 to do a CD-ROM installation.
- During
- boot, press F1 at the splash screen, then place your floppy disk that
- contains
- patch.pl in the floppy drive. At the prompt, type "patch", then follow
- the
- installation as usual.
-
- see bugzilla #3614
-
-2003/04/02 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nl.po: updated Dutch file
-
-2003/04/02 Pixel <pixel at mandrakesoft.com>
-
- * patch/9.1/patch-detectSMP-K6.pl: Error scenario: On a AMD-K6, install
- fails after the formatting partitions steps with a strange "type read"
- error
- Why: in some cases, the SMP detection code fails and force the install
- to exit
- Solution: Use patch.pl which disables SMP detection
- (thanks to Angela Bayley)
-
-2003/04/02 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/logdrake: remove unused variable
- - various perl_checker "fixes"
- - (logcolorize): make it saner regarding its arguments, thanks
- perl_checker
-
- * harddrake/sound.pm: hackism to shut up perl_checker
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
- share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/DrakX.pot, standalone/drakTermServ,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/lt.po, share/po/he.po, share/po/sp.po, share/po/cy.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/tg.po,
- share/po/bs.po, share/po/uz.po, share/po/ro.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/sq.po, share/po/it.po, share/po/nl.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/el.po, share/po/cs.po, share/po/bg.po, share/po/lv.po,
- share/po/hu.po: s/initrdrd/initrd/ (Arpad Biro)
-
- * standalone/harddrake2: fix pablo patch that broke two translations
- (reported by Arkadiusz
- Lipiec)
-
-2003/04/01 François Pons <fpons at mandrakesoft.com>
-
- * rescue/tree/etc/oem-all: added restore into boot_entries default value,
- increased hd install size from
- 1500 MB to 2500 MB to include current ackbar cooker repository.
-
-2003/04/01 gbeauchesne
-
- * bootloader.pm: Indentation fixes
-
- * install_steps_gtk.pm: Pass $Driver to launchX in non /FB/ case
- Pass $Driver to launchX in non /FB/ case
- Backport from 9.1 xf4 fallbacking to fbdev driver
-
- * install_steps.pm: Remove MAKEDEV workaround for ia64. Fixes must be
- found, and kernel nowadays
- have devfs support.
-
- * install_gtk.pm: Backport from 9.1 xf4 fallbacking to fbdev driver
-
-2003/04/01 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * lang.pm: misc
-
-2003/04/01 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/logdrake (parse_file) pass explicit argument instead of
- relying on lexical $_
- being correct in that context (worked fine but this is bad)
-
- * share/po/fr.po:
- - fix fscking french translation
- - explain why it's bad to translate this way
-
- * standalone/draksound, install_steps_interactive.pm: move
- harddrake::sound $index param in hash and pass only the hash ref around
- functions
-
- * ugtk2.pm: perl_checker fixes
-
- * standalone/harddrake2:
- - fix fscking french translation
- - explain why it's bad to translate this way
- - prevent translators to do bad things (that is having badly
- constructed
- strings on screen)
- - reuse some translations instead of relying on extracting tools'
- merge
- feature
- - give translators more control on about window text
-
- * harddrake/sound.pm: propagate $in where needed
- move harddrake::sound $index param in hash and pass only the hash ref
- around
- functions
-
- * standalone/drakhelp: simplify
-
-2003/03/31 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Typo fix
-
-2003/03/31 François Pons <fpons at mandrakesoft.com>
-
- * bootloader.pm: copy kernel and stage1 in order to avoid remapping
- /mnt/hd on the fly during
- install for bootloader installation to complete correctly.
- fixed regex for kernel options retrieved for restore bootloader entry.
-
-2003/03/31 keld
-
- * share/po/da.po: spelling errors
- po/po/da.po gi/perl-install/share/po/da.po
-
-2003/03/31 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/vi.po: updated Vietnamese file
-
- * share/po/fr.po: fixed a bad grammatical error
-
-2003/03/30 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * lang.pm: clean
-
-2003/03/30 keld
-
- * share/po/da.po: spelling errors
- soft/menu-messages/da.po gi/perl-install/share/po/da.po
- some spelling errors
- soft/control-center/po/da.po gi/perl-install/share/po/da.po
-
-2003/03/29 keld
-
- * share/po/da.po: Updates
- soft/GtkMdkWidgets/po/da.po gi/perl-install/share/po/da.po
-
-2003/03/28 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * lang.pm: disable arabic whic doesn't work well after install
-
- * patch/9.1/hp.diff: disable arabic
-
-2003/03/28 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * lang.pm: Special cases for KDE to recognize zh_HK and zh_SG
-
-2003/03/28 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/card.pm: fix typo, grr...
- also have DontVTSwitch for i845 (and i85x)
- use option DontVTSwitch for i865
-
- * drakxtools.spec: use ServerFlags DontVTSwitch for i845, i865 and i85x
- use ServerFlags DontVTSwitch for i865
-
-2003/03/27 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sq.po: updated Albanian file
-
- * share/po/ja.po: updated Japanese file
-
-2003/03/27 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * docs/9.1_errata.txt:
- - mcc erratas
- - lexical ordering
-
-2003/03/26 François Pons <fpons at mandrakesoft.com>
-
- * install_any.pm: moved hdInstallPath to any.pm.
-
- * any.pm: removed acpi reference here (should already been have removed
- earlier).
- moved here hdInstallPath from install_any.
-
- * standalone.pm: simplified code to allow parsing rpmdb instead of just
- urpmi db.
-
- * bootloader.pm: fixed another typo for adding restore entry (grub menu).
- fixed wrong usage of any::hdInstallPath which is mapped as /tmp/image
- during
- installation.
- fix typo on grub menu file read.
-
- * rescue/tree/etc/oem-all: use fat32 instead of fat16, fixed
- mandrake-release to install.
- fix typo.
- mandrake-release should be installed.
- current parted does no more support fat fs but fat16 or fat32 fs.
-
-2003/03/26 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * docs/9.1_errata.txt: first drakxtools errata
-
- * drakxtools.spec: fix harddrake menu entry
-
-2003/03/25 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sq.po: updated Albanian file
-
-2003/03/24 François Pons <fpons at mandrakesoft.com>
-
- * network/netconnect.pm: added modem configuration after LT Modem support.
-
- * network/modem.pm: added login and password retrieval for ppp0 in
- configure function.
- propose /dev/modem before other device (as it will work for other most
- case).
- added modem configuration after LT Modem support.
-
-2003/03/24 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
- share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
- share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: updated
- Japanese file; updated pot file
-
-2003/03/24 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * any.pm, install_steps_interactive.pm: hp fix
-
- * drakxtools.spec:
- - fix changelog
- - 9.1-28mdk
- first bits of 9.1-26mdk
-
- * patch/9.1/hp.diff: more hp fixes
- mdk9.1 changes for hp
-
-2003/03/23 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/it.po, share/po/sq.po: updated Italian and Albanian files
-
-2003/03/22 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/it.po, share/po/tr.po, share/po/pt.po: updated Italian,
- Portuguese and Turkish files
-
-2003/03/21 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/ja.po: changed translation fo "mandrakesoft store"
- changed "mandrakesoft-shouten" to "mandrakesoft-no shouten"
- ("store named mandrakesoft" -> "mandrakesoft's store")
-
-2003/03/21 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/service_harddrake: increase timeout from 5 to 25 seconds
-
-2003/03/20 François Pons <fpons at mandrakesoft.com>
-
- * install_steps_interactive.pm: fixed typo.
- add probe for netncx type in case of not already setted.
-
-2003/03/19 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: fix
-
-2003/03/19 François Pons <fpons at mandrakesoft.com>
-
- * rescue/tree/etc/oem, rescue/tree/etc/oem-all: added support for passing
- kernel options to oem scrpit.
-
- * lang.pm: silently use en_US for arabic.
- removed Arabic language (no correct font during install).
- avoid displaying Hong Kong as a country.
-
-2003/03/19 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * docs/mdk-9.2: update, sort
-
- * standalone/harddrake2: properly *both* reap zombies and clear status bar
- message
-
- * share/po/fr.po:
- - fix harddrake2 main window title broken by stupid translators
- - explain the problem
- - explain how to easily get « and » caracters
-
- * docs/9.1_errata.txt: first errate: ntfs kernel bug (bug and fix reported
- by Szakacsits
- Szabolcs)
-
-2003/03/18 François Pons <fpons at mandrakesoft.com>
-
- * rescue/tree/etc/oem, rescue/tree/etc/oem-all: added lookup into
- isolinux/alt0 if possible
- updated ramdisk_size=128000 acpi=off
-
-2003/03/18 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/id.po: updated Indonesian file
-
- * share/po/wa.po: corrected small typo
-
-2003/03/18 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: s/mplayer-guimplayer-gui/mplayer-gui/
-
-2003/03/17 Frederic Lepied <flepied at mandrakesoft.com>
-
- * install_steps.pm: reverted to 1.604
-
-2003/03/17 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/it.po, share/po/da.po: updated Danish and Italian files
-
- * share/po/pt.po: updated Portuguese file
-
- * share/po/ja.po: updated Japanese file
-
-2003/03/17 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: Add NVIDIA_nforce for smp and secure kernel
- Fix NVIDIA_nforce entry removing kernel version (added by cleanrpmsrate)
- FlashPlayer with a capital P
-
-2003/03/16 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bs.po, share/po/ro.po: updated Bosnian and Romanian files
-
-2003/03/16 Warly <warly at mandrakesoft.com>
-
- * drakxtools.spec: 26mdk to fix drakperm
-
-2003/03/15 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/bs.po, share/po/vi.po: updated Bosnian and Vietnamese files
-
- * share/po/he.po: updated Hebrew file
-
-2003/03/15 Warly <warly at mandrakesoft.com>
-
- * install_steps.pm, share/rpmsrate, drakxtools.spec: fix a fatal error in
- drakpem in editable mode
-
- * standalone/drakperm: Fix fatal error in editable window when adding a
- new entry
-
-2003/03/14 David Baudens <baudens at mandrakesoft.com>
-
- * share/po/fr.po: Fix typo in french ads
-
-2003/03/14 François Pons <fpons at mandrakesoft.com>
-
- * standalone.pm: fix checking for installed kernel modules (for nvidia)
- (/me sux)
- (fix & changelog by pixel)
-
- * share/rpmsrate: fixed error mandrake_doc
- fixed gnupg using multiple rates.
- fixed synthax error.
-
- * install_steps_gtk.pm: made desktop group centred.
-
-2003/03/14 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * mdk-stage1/modules.c: fix myself sux: don't unconditionnally fgets
- /proc/modules, because fopen
- may have failed (the libc, in its great search for speed, probably
- doesn't
- care to check if the FILE* given to fgets is valid and opened)
-
-2003/03/14 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sv.po: updated Swedish file
-
- * share/po/is.po, share/po/el.po, share/po/he.po: updated Greek file
-
- * share/po/zh_CN.po: updated Chinese file
-
- * share/po/tr.po: updated Turkish file
-
-2003/03/14 Pixel <pixel at mandrakesoft.com>
-
- * drakxtools.spec: fix XFdrake handling NVidia proprietary drivers
-
-2003/03/14 Till Kamppeter <till at mandrakesoft.com>
-
- * drakxtools.spec: 9.1-23mdk
-
-2003/03/14 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: mandrake-galaxy doc link is broken if mandrake_doc is
- not install. Waiting for a better solution install mandrake_doc via
- rpmsrate in the same group as mandrake-galaxy.
-
-2003/03/13 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm: Fixed bug #417: '$' character in printer URI not
- correctly handled.
-
-2003/03/13 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/main.pm: Fixed bug #417: '$' character in printer URI not
- correctly handled.
-
-2003/03/13 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: updated Spanish translations
-
-2003/03/13 François Pons <fpons at mandrakesoft.com>
-
- * install_steps_gtk.pm: desktop group simplification.
-
-2003/03/13 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/no.po: updated Norwegian file
-
- * share/po/ru.po, share/po/fi.po: updated Russian and Finnish files
-
- * share/po/id.po, share/po/eo.po, share/po/cs.po, share/po/hu.po: updated
- Czech, Esperanto, Indonesian and Hungarian files
-
-2003/03/13 Pixel <pixel at mandrakesoft.com>
-
- * any.pm: cleanup (still need to handle permissions more cleanly, people
- using umask 0
- should be shot)
-
-2003/03/13 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakTermServ: Fix IP pool range bug from gtk2 conversion.
-
-2003/03/13 Till Kamppeter <till at mandrakesoft.com>
-
- * scanner.pm: Bug fixes:
- - SHOWSTOPPER: SCSI scanners were never recognized as already
- configured, the user was always asked whether he wants to configure
- them. Problem was that device files are symlinks.
- - Made most ISDN and ADSL devices not being considered as a scanner by
- Scannerdrake, SANE does not support internet scanners.
-
-2003/03/13 tpittich
-
- * share/po/sk.po: updated slovak translation
-
-2003/03/13 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: more logs
- first 9.1-22mdk bits
-
- * install_any.pm: alsa drivers are now named snd-<name> not anymore
- snd-card-<name>
-
- * any.pm: fix #3161 (ensure right permissions on /etc/sysconfig/autologin
- for
- bad root umask case)
-
- * modules.pm: via via686 upgdrade after simplification too (next time
- pixel told me
- it's better to reuse some regexp, i kill him)
- fix upgrade after simplification
- simplify
- convert alsa driver from old naming system to new one (snd-card-XXX =>
- snd-XXX) and ensure correct upgrade for snd-via683 and snd-via8233
- drivers
-
- * docs/mdk-9.2: more stuff
- more thoughts
-
-2003/03/13 Warly <warly at mandrakesoft.com>
-
- * install_gtk.pm: logo is the same for desktop and powerpack
- installations.
-
- * share/compssUsers.desktop: Make only one sectio. Include KDE/GNOME and
- documentation into it.
-
-2003/03/12 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: updated
-
-2003/03/12 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/cy.po, share/po/et.po, share/po/he.po: updated Welsh, Estonian
- and Hebrew files
-
-2003/03/12 François Pons <fpons at mandrakesoft.com>
-
- * install_any.pm: added log for kernel module packages found.
-
- * network/modem.pm: fixed typo.
- fix ltmodem package name with newer version.
-
- * install_steps_interactive.pm: fix for newer kernel module package name.
-
- * standalone/XFdrake: fix for newer commercial kernel module package name.
-
- * install_steps.pm: fix for newer commercial package name (kernel module).
- added minimal of what is selected log for pkg_install.
-
- * detect_devices.pm: fix titi sucks.
-
- * standalone.pm: fixed return value of check_kernel_module_packages and
- examination of synthesis
- file using current interface of urpm library.
- fix small typo.
-
-2003/03/12 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * ugtk2.pm: fix non-important (but still valid) part of #2488, a.k.a
- package tree not expanding visually when it should (needs the mouse
- pointer over it to be updated visually)
-
- * share/po/ja.po: fix for "Advanced" by utuhiro <utuhiro at
- mx12.freecom.ne.jp>
-
-2003/03/12 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
- share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/lv.po, share/po/hu.po: updated pot file
-
- * share/po/nl.po: updated dutch file
- updated pot file
-
- * keyboard.pm: Tagged cyrillic keyboard as non-latin
-
-2003/03/12 Pixel <pixel at mandrakesoft.com>
-
- * standalone/diskdrake: set by default the fs type and mntpoint for
- removables not present in fstab
- (useful for harddrake)
-
- * standalone/drakupdate_fstab: have fd0 & fd1 be recognised as known
- entries, even if we don't probe them
- (useful for harddrake)
-
- * diskdrake/interactive.pm, install_interactive.pm: fix maximum loopback
- size (bug #3188)
-
-2003/03/12 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * harddrake/data.pm: jackadit^h^h^h^h^ hpixel said: "we do not need
- anymore --auto"
- fix typo
- handle multiple removable devices: their managment is different from
- other hw
- classes since we need to run a config tool per device and not one per hw
- class
-
- * standalone/harddrake2: fix first message display
- better packed paned behavior in both embedded and standalone modes
- handle multiple removable devices: their managment is different from
- other hw
- classes since we need to run a config tool per device and not one per hw
- class
-
- * drakxtools.spec: update requires
- 9.1-20mdk
-
- * standalone/service_harddrake: let it look better
- shut up perl_checker
- handle multiple removable devices: their managment is different from
- other hw
- classes since we need to run a config tool per device and not one per hw
- class
-
- * docs/mdk-9.2: better embedded diskdrake hint
-
- * diskdrake/hd_gtk.pm:
- - let diskdrake fit when embedded in mcc
- - let action box be larger so that there's no horizontal scrollbar in
- standalone mode
-
- * share/po/wa.po: fix package build :-(
-
- * standalone/drakedm: really sort
- - check if dm package is installed and install it if needed
- - use format instead of reverse() (not a big slow down but small
- rivers make
- big ones and it makes gc happier...)
-
-2003/03/11 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * lang.pm: thx perl checko
- (pablo) change kde font scheme (crossing fingers)
-
-2003/03/11 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/nl.po, share/po/cs.po: updated Dutch and Czech files
-
-2003/03/11 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: typos fixed
-
-2003/03/11 David Baudens <baudens at mandrakesoft.com>
-
- * share/advertising/10-security.png, share/advertising/07-server.pl,
- share/advertising/12-mdkexpert.png,
- share/advertising/06-development.png,
- share/advertising/06-development.pl, share/advertising/11-mnf.pl,
- share/advertising/09-mdksecure.png, share/advertising/01-thanks.png,
- share/advertising/07-server.png, share/advertising/02-community.png,
- share/po/fr.po, share/advertising/list, share/advertising/11-mnf.png,
- share/advertising/02-community.pl, share/advertising/03-software.pl,
- share/advertising/05-desktop.pl, share/advertising/09-mdksecure.pl,
- share/advertising/01-thanks.pl,
- share/advertising/13-mdkexpert_corporate.pl,
- share/advertising/12-mdkexpert.pl, share/advertising/03-software.png,
- share/advertising/08-store.pl, share/advertising/04-configuration.png,
- share/advertising/13-mdkexpert_corporate.png,
- share/advertising/10-security.pl, share/advertising/05-desktop.png,
- share/advertising/04-configuration.pl, share/advertising/08-store.png:
- Update
-
-2003/03/11 Florin Grad <florin at mandrakesoft.com>
-
- * standalone/drakgw: really use the chosen net_connect interface
-
-2003/03/11 François Pons <fpons at mandrakesoft.com>
-
- * network/network.pm: changed netcnx type probe (so that if an ethernet
- connection exists, it won't
- cause netcnx type to be always lan).
-
- * rescue/tree/etc/oem: modified language settings.
-
- * network/adsl.pm: moved probing code outside adsl_ask_info.
-
- * network/ethernet.pm: use $::prefix, waiting for 9.1 to be out before
- cleaning network modules.
-
- * standalone/drakconnect: added probing of adsl connection.
-
-2003/03/11 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * install_steps_gtk.pm: the shadow behind the new adverts looks ugly,
- remove it
- new advertisement will be with grey background
-
- * share/po/fr.po: rephrase a bit MNF advert to make it fit
- spelling
-
- * share/advertising/07-server.pl, share/advertising/06-development.pl,
- share/advertising/11-mnf.pl, share/advertising/02-community.pl,
- share/advertising/03-software.pl, share/advertising/05-desktop.pl,
- share/advertising/09-mdksecure.pl, share/advertising/01-thanks.pl,
- share/advertising/12-mdkexpert.pl,
- share/advertising/13-mdkexpert_corporate.pl,
- share/advertising/08-store.pl, share/advertising/10-security.pl,
- share/advertising/04-configuration.pl: fix pablo breaking translation of
- advertisement :)
-
- * lang.pm: thx perl checko
- (pablo) change kde font scheme (crossing fingers)
-
- * install_steps_interactive.pm: install additional locales package for
- country according to the locale that will be really used, not according
- to the default locale for a given country (fixing unecessary installing
- of locales-de in case of a fr_CH install)
-
-2003/03/11 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/it.po, share/po/no.po: updated Italian and Norwegian files
-
- * lang.pm: Changed Qt Chinese XIMStyle to 'Over The Spot' ('On The Spot'
- crashes)
- changed KDE default font names for CJK
-
- * share/po/nl.po, share/po/cs.po: updated Dutch and Czech files
-
- * share/po/da.po, share/po/vi.po: updated Danish and Vientamese files
-
-2003/03/11 Pixel <pixel at mandrakesoft.com>
-
- * Xconfig/main.pm: remove XFdrake icons (per dadou's request)
-
- * any.pm, bootloader.pm, standalone/drakboot: fix lilo-menu not working
- (bug #3048)
-
-2003/03/11 Stew Benedict <sbenedict at mandrakesoft.com>
-
- * standalone/drakbackup: More gtk2 fixes.
-
-2003/03/11 Till Kamppeter <till at mandrakesoft.com>
-
- * printer/printerdrake.pm: Added button to switch to japanese text file
- printing.
- Many bug fixes:
- - Wait messages bloxked the OK buttons of the dialogs telling how to
- scan and how to read photo cards on HP's MF devices.
- - Do not configure OpenOffice.org any more, only Star Office.
- OpenOffice.org is patched to have native CUPS support now.
- - If the Port for a BrowsePoll address is left blank, 631 is taken as
- default now.
- - Text for firmware upload for HP LaserJet 1000 now also available in
- the 'Learn how to use printer' dialog.
- - Updated check of model name for HP's MF devices to newest models.
-
- * printer/detect.pm: Made sure that all IP addresses of the local machine
- are in 'Allow
- From' lines in the /etc/cups/cupsd.conf, otherwise one can have
- certain configurations with which one cannot access to the options of
- the local printer(s).
-
- * printer/main.pm: Made sure that all IP addresses of the local machine
- are in 'Allow
- From' lines in the /etc/cups/cupsd.conf, otherwise one can have
- certain configurations with which one cannot access to the options of
- the local printer(s).
- Added button to switch to japanese text file printing.
-
- * printer/office.pm: Many bug fixes:
- - Wait messages bloxked the OK buttons of the dialogs telling how to
- scan and how to read photo cards on HP's MF devices.
- - Do not configure OpenOffice.org any more, only Star Office.
- OpenOffice.org is patched to have native CUPS support now.
- - If the Port for a BrowsePoll address is left blank, 631 is taken as
- default now.
- - Text for firmware upload for HP LaserJet 1000 now also available in
- the 'Learn how to use printer' dialog.
- - Updated check of model name for HP's MF devices to newest models.
-
-2003/03/11 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * drakxtools.spec: 9.1-19mdk final
-
- * docs/mdk-9.2: update
-
-2003/03/11 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: add kdeartwork level 3 in KDE
-
- * share/logo-mandrake.png: 9.1 logo
-
-2003/03/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/no.po: minor typo
-
-2003/03/10 Alice Lafox <alice at lafox.com.ua>
-
- * share/po/ru.po: some fixes
- update
-
-2003/03/10 François Pons <fpons at mandrakesoft.com>
-
- * install_any.pm: use quoted url instead for install_urpmi.
- fixed duplicate url entry for file and removable.
- build a list file only if needed for install_urpmi.
-
- * rescue/tree/etc/oem, rescue/tree/etc/oem-all: added missing right
- parenthesis.
- fix for strange parted behaviour.
-
-2003/03/10 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * install_steps.pm: fix original #2842 problem
-
- * lang.pm (pablo) workaround console localization broken in RTL languages
- fix original #2842 problem
-
- * install_gtk.pm: meta class desktop also uses galaxy theme, not blue
- theme
-
-2003/03/10 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/no.po: minor typo
- updated Norwegian file
- updated Welsh, Icelandic, Italian, Norwegian
-
- * share/po/Makefile, share/po/it.po, share/po/is.po, share/po/cy.po:
- updated Welsh, Icelandic, Italian, Norwegian
-
- * keyboard.pm: Changed console Czech keyboard
-
-2003/03/10 Pixel <pixel at mandrakesoft.com>
-
- * install2.pm: fix getting brltty help and table (thanks to Hans Schou)
-
-2003/03/10 tpittich
-
- * share/po/sk.po: updated slovak translation
-
-2003/03/10 Thierry Vignaud <tvignaud at mandrakesoft.com>
-
- * standalone/draksec:
- - clean wait messages creation
- - fix wait messages displaying (label was not displayed) in both
- standalone and embedded modes
-
- * drakxtools.spec: fix #1461
- more logs
- typo fix
-
- * harddrake/TODO, docs/mdk-9.2: update
-
- * services.pm:
- - fix packing on standalone mode (no horizontal scrolling)
- - let show it all when embedded
-
-2003/03/10 Warly <warly at mandrakesoft.com>
-
- * share/rpmsrate: add kdeartwork-kde-classic not to have trouble in KDE
- updates.
- reduce gpm level from 4 to 2 in system
-
- * share/compssUsers.desktop: Update for new standard pack
-
-2003/03/09 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: Typo fix
-
-2003/03/09 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * share/po/fr.po: latest missing stuff
-
- * Xconfig/test.pm: fix background of X test during install
-
-2003/03/09 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
- share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
- share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: updated
- pot file
-
- * standalone/drakTermServ: fixed text (missing '/')
-
-2003/03/09 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm: make perl_checker a happy prog
- no "Previous" button when choosing install or upgrade
-
-2003/03/08 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/hu.po: updated Hungarian file
-
-2003/03/07 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm: mask encryption key (using stars)
-
-2003/03/07 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * share/po/pl.po: One message
- updated
-
-2003/03/07 Fabian Mandelbaum <fabman at 2vias.com.ar>
-
- * share/po/es.po: Updated Spanish translation
-
-2003/03/07 Frederic Lepied <flepied at mandrakesoft.com>
-
- * any.pm: launch startx.autologin instead of startx in autologin
-
-2003/03/07 François Pons <fpons at mandrakesoft.com>
-
- * network/adsl.pm: dropped a line.
- fix logical error (flepied).
-
-2003/03/07 Guillaume Cottenceau <gc at mandrakesoft.com>
-
- * ugtk2.pm: refine the already dirty code to workaround gtk bug leading to
- bugzilla #1445 (clicking two times too fast still lead to same problem)
- fix rpmdrake dumping core when multiple searchs in
- "selected" and "upgradable" sorting modes (#2899)
-
- * tools/cvslog2changelog.pl: add fabman
- protect emails
-
- * drakxtools.spec: fix rpmdrake dumping core when multiple searchs in
- "selected" and "upgradable" sorting modes (#2899)
-
-2003/03/07 Pablo Saratxaga <pablo at mandrakesoft.com>
-
- * share/po/sk.po, share/po/pt_BR.po, share/po/th.po, share/po/et.po,
- share/po/ja.po, share/po/ko.po, share/po/da.po, share/po/uz.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/sq.po,
- share/po/it.po, share/po/es.po, share/po/lv.po, share/po/ru.po,
- share/po/sl.po, share/po/tr.po, share/po/mt.po, share/po/uk.po,
- share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/pt.po,
- share/po/vi.po, share/po/ta.po, share/po/nl.po: iupdated Vietnamese,
- Estonian and Dutch files;
- fixed the translations of "default:LTR"
- updated pot file
-
- * share/po/gl.po, share/po/hr.po, share/po/be.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/he.po,
- share/po/ca.po, share/po/ar.po, share/po/eu.po, share/po/hu.po,
- share/po/id.po, share/po/br.po, share/po/no.po, share/po/ga.po,
- share/po/sp.po, share/po/bs.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/fr.po, share/po/de.po,
- share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po: updated
- pot file
-
- * share/advertising/06-development.pl, share/advertising/02-community.pl,
- share/advertising/05-desktop.pl, share/advertising/01-thanks.pl,
- share/advertising/08-store.pl, share/advertising/11-mnf.pl,
- share/advertising/07-server.pl, share/advertising/10-security.pl,
- share/advertising/03-software.pl, share/advertising/09-mdksecure.pl,
- share/advertising/12-mdkexpert.pl,
- share/advertising/13-mdkexpert_corporate.pl,
- share/advertising/04-configuration.pl: Changed _() to N_()
-
- * share/po/fi.po: updated Finnish file
- updated pot file
-
-2003/03/07 Pixel <pixel at mandrakesoft.com>
-
- * install_steps_interactive.pm: mask encryption key (using stars)
-
- * Makefile.config: don't install share/advertising/*.pl files in
- Mandrake/mdkinst/usr/bin/perl-install/share, only in
- Mandrake/share/advertising
-
-2003/03/06 David Baudens <baudens@mandrakesoft.com>
-
- * share/advertising/03-software.pl: Fix typo
- Update
- Sync names with text files
-
- * share/advertising/07-server.pl, share/advertising/06-development.pl,
- share/advertising/05-desktop.pl, share/advertising/08-store.pl,
- share/advertising/11-mnf.pl,
- share/advertising/13-mdkexpert_corporate.pl: Update
- Sync names with text files
-
- * share/advertising/07-desktop.png, share/advertising/14-mdkexpert.png,
- share/advertising/14-mdkexpert.pl, share/advertising/17-mdkclub.pl,
- share/advertising/13-mdkcampus.png, share/advertising/06-mcc.png,
- share/advertising/11-mdkstore.pl, share/advertising/17-mdkclub.png,
- share/advertising/11-mdkstore.png, share/advertising/12-mdkstore.png,
- share/advertising/04-multimedia.png, share/advertising/10-mnf.png,
- share/advertising/03-internet.pl, share/advertising/05-games.pl,
- share/advertising/16-thanks.png, share/advertising/12-mdkstore.pl,
- share/advertising/15-mdkexpert-corporate.png,
- share/advertising/09-server.pl, share/advertising/05-games.png,
- share/advertising/04-multimedia.pl, share/advertising/13-mdkcampus.pl,
- share/advertising/03-internet.png, share/advertising/07-desktop.pl,
- share/advertising/09-server.png, share/advertising/08-development.png,
- share/advertising/10-mnf.pl,
- share/advertising/15-mdkexpert-corporate.pl,
- share/advertising/08-development.pl, share/advertising/06-mcc.pl: Remove
- old files
-
- * share/advertising/02-community.pl, share/advertising/01-thanks.pl,
- share/advertising/list: Use texts from specifications
-
- * share/advertising/10-security.png, share/advertising/07-server.png,
- share/advertising/11-mnf.png, share/advertising/03-software.png,
- share/advertising/10-security.pl, share/advertising/08-store.png,
- share/advertising/12-mdkexpert.png,
- share/advertising/06-development.png,
- share/advertising/09-mdksecure.png, share/advertising/09-mdksecure.pl,
- share/advertising/12-mdkexpert.pl,
- share/advertising/04-configuration.png,
- share/advertising/13-mdkexpert_corporate.png,
- share/advertising/05-desktop.png, share/advertising/04-configuration.pl:
- Sync names with text files
-
-2003/03/06 François Pons <fpons@mandrakesoft.com>
-
- * network/ethernet.pm: avoid virtual ethX to be reconfigured by
- drakconnect
- fixed ifconfig invocation and state analysis in install mode.
-
- * drakxtools.spec: avoid virtual ethX to be reconfigured by drakconnect
- NVIDIA drop.
-
- * install_any.pm: dropped allowNVIDIA_rpms method.
- added check_kernel_module_packages for checking prioprietary base kernel
- package.
-
- * install2.pm: added summaryAfter steps for summary.
-
- * any.pm: make sure acpi is installed.
-
- * standalone/XFdrake: moved prioprietary NVIDIA code support to generic
- prioprietary support in standalone.pm.
-
- * standalone.pm: fixed error message.
- added check_kernel_module_packages with same behaviour expected as for
- install_any module.
-
- * install_steps.pm: dropped allowNVIDIA_rpms
- fixed stupid again typo.
- modified logic for summaryAfter.
- fixed again the same typo.
- fixed stupid typo.
- summaryAfter created to install acpi and acpid if needed.
-
- * install_steps_interactive.pm: dropped allowNVIDIA_rpms
-
- * install_steps_gtk.pm: added desktop groups organization.
-
- * network/modem.pm: added support for kernel base name of ltmodem.
-
- * network/adsl.pm: fixed adsl login not probed in install mode.
-
-2003/03/06 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/url.c: provide Host: in http requests so that install works
- from sites with virtual hosting (#2561)
-
- * share/po/es.po: this translation can't get much big or else it will
- enlarge too
- much diskdrake
-
-2003/03/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm: Enabled Laotian (was missing a definition in %charsets),
- Bengali (there starts to be gnome translations available),
- and Kannada (there starts to be gnome translations available).
- Code for Xhosa added (there is an official kde-i18n-xh package
- available),
- wating for lang-xh.png to enable it
-
- * share/po/cs.po, share/po/vi.po, share/po/ta.po, share/po/fi.po,
- share/po/ar.po: updated Czech, Arabic, Finnish, Tamil and Vietnamese
- files
-
-2003/03/06 Pixel <pixel@mandrakesoft.com>
-
- * any.pm: don't create xxx.conf for standard devfs compatibility names
-
- * install_steps_interactive.pm: basic encrypt_key handling in upgrade
- (don't mistype!)
-
- * share/po/help-ru.pot: add it since drakx-chapter.xml is ok (dixit Alice
- Lafox)
-
- * share/po/help_xml2pm.pl: do not exclude "ru" drakx-help.xml anymore
-
- * detect_devices.pm: merge cdroms__faking_ide_scsi() and
- zips__faking_ide_scsi() in
- cdroms_and_zips__faking_ide_scsi() to be able to have a good devfs
- device name
- this fixes *__faking_ide_scsi() not faking devfs_device causing bad
- /etc/devfs/conf.d/dvd.conf for dvd burners
-
- * install_any.pm: cleanup
-
-2003/03/06 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/draksec: perl_checker fix
-
- * harddrake/data.pm: move usb webcams which have mod_quickcam as a driver
- from unknown to
- webcam clategory since they do not have any valid usb class
-
- * standalone/service_harddrake: s/perl -w/use diagnostics/ so stat it get
- removed from package at
- build time
-
- * drakxtools.spec: typo fix
- 9.1-17mdk
- update
- 9.1-16mdk, first bit
- more fixes
-
- * harddrake/sound.pm: perl_checker fix
- fix #1929
- let fix #2244, #2245, #2730
-
- * standalone/draksplash: do not crash on color selection
- prevent one to pop up hundred of windows: make browse dialog be modal
- - fix #1766
- - do not crash when browsing
-
- * services.pm: we do use $in !!!!
-
- * docs/mdk-9.2: first bits of mdk9.2 specs (aka postponed bugs...) stuff
-
- * scanner.pm: perl_checker fixes
- do not detect some usb webcams as scanners ...
-
- * harddrake/TODO: update
-
- * standalone/draksound, install_steps_interactive.pm: let fix #2244,
- #2245, #2730
-
-2003/03/06 Warly <warly@mandrakesoft.com>
-
- * network/network.pm: detect if the device is pcmcia when initializing the
- ONBOOT parameter
-
-2003/03/06 Frederic Lepied <flepied@mandrakesoft.com>
-
- * share/po/fr.po: corrected remaining mise-à-jour
-
-2003/03/06 François Pons <fpons@mandrakesoft.com>
-
- * any.pm: make sure acpi is installed.
-
- * install_steps.pm: modified logic for summaryAfter.
- fixed again the same typo.
- fixed stupid typo.
- summaryAfter created to install acpi and acpid if needed.
- menu update method modified for upgrade.
-
- * install2.pm: added summaryAfter steps for summary.
-
-2003/03/06 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/es.po: this translation can't get much big or else it will
- enlarge too
- much diskdrake
-
-2003/03/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * standalone/harddrake2: fixed XIM definitions for Chinese locales
-
- * share/rpmsrate: removed non-ascii chars
-
- * share/po/sv.po, share/po/sk.po: updated Slovak and Swedish files
-
- * lang.pm: Enabled Laotian (was missing a definition in %charsets),
- Bengali (there starts to be gnome translations available),
- and Kannada (there starts to be gnome translations available).
- Code for Xhosa added (there is an official kde-i18n-xh package
- available),
- wating for lang-xh.png to enable it
- fixed XIM definitions for Chinese locales
-
-2003/03/06 Pixel <pixel@mandrakesoft.com>
-
- * any.pm: don't create xxx.conf for standard devfs compatibility names
-
- * detect_devices.pm: merge cdroms__faking_ide_scsi() and
- zips__faking_ide_scsi() in
- cdroms_and_zips__faking_ide_scsi() to be able to have a good devfs
- device name
- this fixes *__faking_ide_scsi() not faking devfs_device causing bad
- /etc/devfs/conf.d/dvd.conf for dvd burners
-
- * share/po/help_xml2pm.pl: do not exclude "ru" drakx-help.xml anymore
-
- * interactive/gtk.pm: "ensure buttons are visible when the widgets above
- are too big" only at install
-
-2003/03/06 tpittich
-
- * share/po/sk.po: updated slovak translation
-
-2003/03/06 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * ugtk2.pm: fix #2672
-
- * Makefile: move ugtk2 back in drakxtools on gc idea
-
- * standalone/logdrake:
- - display "wait while searching" message also when embedded: we do not
- want it only when embedded for explanations
- - flush this wait dialog draw queue on each update so that it get
- displayed when embedded
-
- * harddrake/data.pm: move usb webcams which have mod_quickcam as a driver
- from unknown to
- webcam clategory since they do not have any valid usb class
-
- * scanner.pm: do not detect some usb webcams as scanners ...
-
- * standalone/drakedm: log system config changes
-
- * drakxtools.spec: more fixes
- more logdrake fixes
- move ugtk2 back in drakxtools on gc idea
- more fixes
- more fixes
- 9.1-15mdk
-
- * lang.pm:
- - cornish is a p-celtic language (aka a britonnic one), not a gaelic
- one
- - homogeinize q-celtic languages (aka gaelic ones)
-
- * standalone/draksec: let i fit in 800x600
-
-2003/03/05 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>
-
- * share/po/pl.po: two entries remained
-
-2003/03/05 fabman
-
- * share/po/es.po: updated Spanish translation
-
-2003/03/05 Frederic Lepied <flepied@mandrakesoft.com>
-
- * network/isdn.pm: read right config according to isdn-light or isdn4linux
-
- * network/adsl.pm: read login name from net_cnx_up in pptp mode.
-
- * network/ethernet.pm: fix to avoid creating an ifcfg-1 config file.
-
- * network/tools.pm: if the user don't want to start the internet
- connection, continue without
- error message.
-
- * network/netconnect.pm: use driver instead of descrition to validate an
- isdn autodetection
-
-2003/03/05 François Pons <fpons@mandrakesoft.com>
-
- * drakxtools.spec: add changelog for drakconnect modification.
-
- * standalone/drakconnect: fixed wizard modification not taken into account
- when using drakconf.
-
-2003/03/05 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: fix one translation
-
- * any.pm, drakxtools.spec, standalone/localedrake: fix behaviour when only
- one lang is available (clicking
- on "cancel" on the country selection didn't cancel it)
-
-2003/03/05 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ro.po, share/po/vi.po, share/po/ar.po: updated Arabic, Romanian
- and Vietnamese files
-
- * share/po/tg.po, share/po/th.po, share/po/is.po, share/po/sl.po,
- share/po/az.po, share/po/be.po, share/po/uk.po, share/po/lt.po,
- share/po/eo.po, share/po/hu.po: updated Hungarian file
-
- * share/po/fr.po, share/po/it.po, share/po/es.po, share/po/de.po: merged
- with help strings from manuals
-
- * share/po/uz.po: updated Uzbek file
-
- * share/po/no.po: updated Norwegian file
-
-2003/03/05 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig/various.pm (choose_xdm): allow to switch back from level 5 to
- level 3
-
- * network/network.pm, network/isdn.pm: this is perl, not python ;p
-
- * install_steps.pm: modifying keyboard in summary must modify XF86Config
-
- * interactive/gtk.pm: ensure buttons are visible when the widgets above
- are too big
-
-2003/03/05 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * mouse.pm, standalone/harddrake2, common.pm, harddrake/data.pm: prevent
- warning when using diagnostics pragma (easier debugging)
-
- * standalone/drakedm: handle low case config variables despite they should
- have been upcase
- (fix side effects of stupid rh code that manage $prefdm)
-
- * detect_devices.pm:
- - (getTVcards, isTVcard) : consolidate tv detection code
- - no need to keep capture buffer (not a big slow down but small rivers
- make big ones...)
- normalize
- prevent warning when using diagnostics pragma (easier debugging)
-
- * standalone/logdrake: restore old search behavior like we did before
- gtk+-2 port:
- - empty log buffer on search startup
- - freeze buffer while searching
- - do not realize ourselves the window, it's done by next statement
- - set initial text to '' so that editable property is disabled once
- the textview is realized
- no need to explicitely disable editable property, this is already
- handled by ugtk2::gtktext_insert() called from ugtk2::gtktext_append()
-
- * standalone/drakxtv, install_steps_interactive.pm:
- - (getTVcards, isTVcard) : consolidate tv detection code
- - no need to keep capture buffer (not a big slow down but small rivers
- make big ones...)
-
- * drakxtools.spec: more to come
-
- * share/po/fr.po: update french translation
-
- * share/po/br.po: minor update
-
-2003/03/04 Frederic Lepied <flepied@mandrakesoft.com>
-
- * network/isdn.pm: corrected isdn-light choice
-
- * network/modem.pm: install kdenetwork-kppp if kdebase is already
- installed
-
- * network/network.pm: allow to set hostname in DHCP mode
- install tmdns only when bind isn't installed
-
-2003/03/04 François Pons <fpons@mandrakesoft.com>
-
- * standalone/drakconnect: clean interface flags when dhcp mode is used.
-
- * network/ethernet.pm: avoid being pertubed by created virtual interface
- (no inet addre nor
- physicall card behing)
-
-2003/03/04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * tools/cvslog2changelog.pl: add florin alafox alus
-
- * lang.pm: set better default XIMInputStyle value for CJK, thx to Narfi
- Stefansson <narfi at cs.wisc.edu> for the idea
-
- * mdk-stage1/stdio-frontend.c, mdk-stage1/newt-frontend.c: don't forget to
- probe USB for info and error messages as well
-
-2003/03/04 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/cs.po: updated Czech file
- updated pot files
-
- * share/po/ar.po: corrected encoding problems
- updated pot files
-
- * share/po/sk.po, share/po/ru.po, share/po/pt_BR.po, share/po/sl.po,
- share/po/no.po, share/po/ja.po, share/po/tr.po, share/po/mt.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/lt.po, share/po/sp.po,
- share/po/tg.po, share/po/uz.po, share/po/ro.po, share/po/wa.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/vi.po,
- share/po/ta.po, share/po/sq.po, share/po/nl.po, share/po/lv.po: updated
- pot file
-
- * share/po/th.po: corrected encoding problems
- updated pot file
-
- * share/po/et.po: updated Estonian file
- updated pot files
-
- * share/po/id.po, share/po/gl.po, share/po/br.po, share/po/hr.po,
- share/po/ga.po, share/po/be.po, share/po/fi.po, share/po/he.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/bs.po,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/fr.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/el.po, share/po/bg.po, share/po/hu.po: updated
- pot files
-
-2003/03/04 Pixel <pixel@mandrakesoft.com>
-
- * share/rpmsrate: add "acpi" and "acpid" to INSTALL
- move imap to NETWORKING_MAIL_SERVER (bug #2622)
-
-2003/03/04 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/drakperm:
- - untabify
- - fix small memory leak (tree iterators)
- - restore edit dialog on doble click and
- - restore informations retrieving for edit dialog on doble click and
- get rid of %CURENT
-
- * standalone/logdrake: scroll back when logging
-
-2003/03/04 florin
-
- * standalone/drakgw: simplified form (pixel)
-
-2003/03/04 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hu.po: updated Hungarian file
-
-2003/03/04 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake/hd_gtk.pm:
- - in focus_in_event for partition buttons, grab_focus is needed
- because gtk2 is buggy. Forcing an expose event would be enough
- - in button_press_event for partition buttons, grab_focus is needed
- because gtk2 is buggy. The creation of widgets causes the lost of the
- focus
- (fixes part of #2621)
-
- * share/rpmsrate: move imap to NETWORKING_MAIL_SERVER (bug #2622)
-
- * rescue/tree/etc/profile:
- - unsetting LD_LIBRARY_PATH: setting LD_LIBRARY_PATH to libraries in
- /mnt is
- wrong since the ld loader used (/lib/ld-linux.so.2) won't use the one in
- /mnt,
- causing dependency problems.
- - removing /mnt dirs from PATH (which are not useful anymore since the
- corresponding libraries won't be found)
- (fixes bug #2554)
-
- * install_steps_interactive.pm: fix typo
-
- * network/nfs.pm (check): fix return value (bug introduced with checking
- portmap is running)
-
- * lang.pm: make perl_checker happy
-
- * services.pm: in drakxservices, don't stop services if one is using the
- gtk frontend (since it allows one to start/stop services)
- this allows to skip stopping service "dm" (bug #2664)
-
-2003/03/04 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/drakboot: remove debuging assertions (as spoted by gc)
-
- * standalone/drakperm:
- - remove last warning
- - remove unused variables
- - fix #1776 (part one): make up and down button be usefull instead of
- nop (this need an updated perl-GTK2 though)
- - let up, down, delete and edit buttons be insensitive when selection
- is destroyed or when there's no selection
- - fix #1776 part two (do not insert dummy lines)
- - restore special lines with current keyword
- - reuse already defined path
-
-2003/03/03 alafox
-
- * share/po/ru.po: updated and partially proofread. need more lproof
-
-2003/03/03 alus
-
- * share/po/pl.po: updated
-
-2003/03/03 florin
-
- * standalone/drakgw: add an extra first choose the net device step
-
-2003/03/03 François Pons <fpons@mandrakesoft.com>
-
- * network/tools.pm: simplified unquotify.
-
- * network/adsl.pm: simplified code of adsl_ask_info, password can be
- retrieved using
- passwd_by_login which was not used with computed login from
- /etc/ppp/peers/adsl
- or /etc/ppp/options or /etc/ppp/options.adsl.
-
-2003/03/03 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: thx po validato
-
- * any.pm, drakxtools.spec: any::selectLanguage: in standalone, don't
- categorize langs, for
- better looking (since most people will have very few of them)
-
- * share/po/validate.pl: make it useful
- - print problems with GREP_COLOR
- - have enough exceptions to get usable errors
-
- * interactive/gtk.pm: a few treeview/list fixes:
- - when selecting a value, scroll it like in treeview/tree
- - use saved_default_val dirty hackery to really honour default value
- - fix not calling $select again when trying to select an already
- selected value (happens when clicking or keyboard-selecting;
- broken, it ended up in always scrolling the selected value to
- the center)
-
-2003/03/03 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/lt.po, share/po/he.po, share/po/sp.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/tg.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
- share/po/wa.po, share/po/is.po, share/po/af.po, share/po/az.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/vi.po,
- share/po/ta.po, share/po/sq.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/lv.po, share/po/hu.po: updated pot file
-
- * share/po/it.po: updated Italian file
- updated pot file
-
- * share/po/et.po, share/po/fi.po, share/po/nl.po: updated Estonian,
- Finnish and Dutch files
- updated pot file
-
-2003/03/03 Pixel <pixel@mandrakesoft.com>
-
- * ugtk2.pm (n_line_size): spacing for default font using XFT is 3
-
- * install_steps_interactive.pm: add some explaination for translators
- translate _bootloader_ on _device_
- translate mouse names
-
- * install_interactive.pm: use formatAlaTeX() for the warning "DrakX will
- now resize your Windows partition..."
-
- * share/po/help-fr.pot, share/po/help-de.pot, help.pm,
- share/po/help-es.pot: update from xml
-
- * share/rpmsrate: add ncurses-devel in DEVELOPMENT
-
- * Xconfig/various.pm (runlevel): fix typo
-
-2003/03/03 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/detect.pm: Fixed bug of USB printers which do not report back an
- IEEE-1284 ID string after
- three attempts being invisible instead of being listed as an "Unknown
- device".
-
- * printer/data.pm, printer/printerdrake.pm: Fixed bug of wrong function
- call to display the spooler name (Titi's untested changes).
-
-2003/03/03 tpittich
-
- * share/po/sk.po: updated slovak translation
- updated slovak translation
- change code page to utf-8
-
-2003/03/03 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * drakxtools.spec: 9.1-13mdk
- 9.1-12mdk
-
- * share/po/fr.po: unfuzzy()
- fix translation
-
- * standalone/harddrake2:
- - remove a warning
- - better scsi bus location
- reap zombie children (aka fix mem leak :-( )
-
- * standalone/drakboot:
- - fix #2091 and #2480 (settings restoration
- - make dialogs be modal
-
- * standalone/drakperm: remove unused $rows_cnt
- smoother gui: let main windows be unreachable until modal dialog is
- closed
- fix bug reported by Cédric Thévenet (impossible to save newly edited
- rules)
-
- * share/po/help-fr.pot, share/po/help-de.pot, share/po/help-es.pot,
- share/po/help-it.pot: revert to non broken version
-
-2003/03/02 alafox
-
- * share/po/ru.po: updated
-
-2003/03/02 alus
-
- * share/po/pl.po: Hard spell checking
-
-2003/03/02 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/translation_size.pl: add
-
-2003/03/02 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/et.po, share/po/es.po, share/po/ro.po, share/po/hu.po,
- share/po/fi.po, share/po/ar.po: updated Arabic, Estonian, Finnish,
- Hungarian and Romanian files
-
-2003/03/02 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/printerdrake.pm:
- - Avoid two overlayed wait messages when installing packages
- - Let applications (OpenOffice.org/GIMP) being once on startup of
- Printerdrake
- Call function for configuring applications only if really needed.
- Shortened the texts in some list dialogs to get a better layout.
- - When non-interactively creating print queues ask the user for the
- model
- name if the model is not in the database, don't do wild guesses then.
-
- * printer/data.pm: Make file checks for CUPS package installation
- independent of whether "curl"
- or "wget" is installed to fulfill the "webfetch" requirement.
-
- * printer/detect.pm: Read device ID string for a USB printer up to three
- times when it does not contain information.
-
- * printer/gimp.pm: Fixed auto-configuration for printers in the GIMP to
- work with Foomatic 3.0.
-
- * printer/main.pm: Correction on reading the Foomatic overview.
- Fixes on reading of Foomatic data overview ("foomatic-configure -O"):
- - Removed usage of on-disk cache
- - Made new "<general>" and "<ieee1284>" tags for auto-detection info
- being recognized.
-
-2003/03/01 fabman
-
- * share/po/es.po: updated Spanish translation
- updated Spanish translation
-
-2003/03/01 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sp.po, share/po/zh_CN.po, share/po/sv.po, share/po/sr.po,
- share/po/hu.po: updated Chinese, Swedish, Hungarian and Serbian files
-
-2003/03/01 Till Kamppeter <till@mandrakesoft.com>
-
- * install_steps_interactive.pm: The generation of the "Summary" button for
- printer configuration created a blank entry in the
- $o->{printer}{configures} hash which lead to a blank menu entry in the
- main menu of printerdrake. This is fixed now.
-
-2003/02/28 alus
-
- * share/po/pl.po: updated
-
-2003/02/28 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/ja.po: reduce a translation size so that groups choice still
- has the "ok" button shown
-
- * detect_devices.pm: let hasSMP don't exit DrakX in testing mode because
- /dev/mem is not accessible
-
-2003/02/28 alus
-
- * share/po/pl.po: updated
-
-2003/02/28 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone/drakhelp:
- - fix the check of mandrake_doc installed package (gc)
-
-2003/02/28 fabman
-
- * share/po/es.po: updated Spanish translations. Some fuzzy left
-
-2003/02/28 François Pons <fpons@mandrakesoft.com>
-
- * network/modem.pm: add LT WinModem support by searching ltmodem package.
-
- * drakxtools.spec: ltmodem support reminder.
- fixes for drakconnect.
-
- * any.pm: install acpi and acpid if "Enable ACPI" is ok.
-
- * standalone/drakconnect: removed profile management entry point.
-
-2003/02/28 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_gtk.pm: fix theming in --doc mode
-
- * mdk-stage1/init.c: moltes powered (for deush)
-
- * lang.pm: remove temporiraly lo because utf_lo is not in the charsets
- hash
- put new pablo's images (less large, add missing ones)
- sort langs in lang.pm
-
- * mdk-stage1/modules.c, mdk-stage1/.cvsignore: hd_usb.img ->
- hdcdrom_usb.img
-
- * standalone/draksplash, standalone/drakfirewall, standalone/logdrake,
- standalone/drakpxe, standalone/keyboarddrake, standalone/drakboot,
- standalone/mousedrake, standalone/drakbackup, standalone/drakconnect,
- standalone/drakxtv, standalone/adduserdrake, standalone/drakxservices,
- standalone/drakproxy, standalone/livedrake, standalone/harddrake2,
- standalone/drakfont, standalone/drakgw, standalone/drakperm,
- standalone/scannerdrake: reflect in standalone drakxtools the removal of
- DrakX icons
-
- * pixmaps/langs/lang-zh_CN.png, pixmaps/langs/lang-sl.png,
- pixmaps/langs/lang-hy.png, pixmaps/langs/lang-de.png,
- pixmaps/langs/lang-cy.png, pixmaps/langs/lang-it.png,
- pixmaps/langs/lang-eu.png, pixmaps/langs/lang-ca.png,
- pixmaps/langs/lang-sp.png, pixmaps/langs/lang-mr.png,
- pixmaps/langs/lang-am.png, pixmaps/langs/lang-nb.png,
- pixmaps/langs/lang-kn.png, pixmaps/langs/lang-gd.png,
- pixmaps/langs/lang-bn.png, pixmaps/langs/lang-lo.png,
- pixmaps/langs/lang-el.png, pixmaps/langs/lang-ia.png,
- pixmaps/langs/lang-pt_BR.png, pixmaps/langs/lang-sv.png,
- pixmaps/langs/lang-mi.png, pixmaps/langs/lang-bg.png,
- pixmaps/langs/lang-fo.png, pixmaps/langs/lang-kw.png,
- pixmaps/langs/lang-hu.png, pixmaps/langs/lang-ur.png,
- pixmaps/langs/lang-iu.png, pixmaps/langs/lang-az.png,
- pixmaps/langs/lang-mt.png, pixmaps/langs/lang-et.png,
- pixmaps/langs/lang-wa.png, pixmaps/langs/lang-sq.png,
- pixmaps/langs/lang-he.png, pixmaps/langs/lang-eo.png,
- pixmaps/langs/lang-ta.png, pixmaps/langs/lang-ga.png,
- pixmaps/langs/lang-sr.png, pixmaps/langs/lang-lt.png,
- pixmaps/langs/lang-oc.png, pixmaps/langs/lang-ms.png,
- pixmaps/langs/lang-mk.png, pixmaps/langs/lang-lv.png,
- pixmaps/langs/lang-zh_TW.png, pixmaps/langs/lang-is.png,
- pixmaps/langs/lang-ro.png, pixmaps/langs/lang-be.png,
- pixmaps/langs/lang-fr.png, pixmaps/langs/lang-te.png,
- pixmaps/langs/lang-hr.png, pixmaps/langs/lang-no.png,
- pixmaps/langs/lang-en_GB.png, pixmaps/langs/lang-sk.png,
- pixmaps/langs/lang-uk.png, pixmaps/langs/lang-br.png,
- pixmaps/langs/lang-en_US.png, pixmaps/langs/lang-bs.png,
- pixmaps/langs/lang-nl.png, pixmaps/langs/lang-af.png,
- pixmaps/langs/lang-tr.png, pixmaps/langs/lang-pt.png,
- pixmaps/langs/lang-gl.png, pixmaps/langs/lang-uz.png,
- pixmaps/langs/lang-pl.png, pixmaps/langs/lang-hi.png,
- pixmaps/langs/lang-id.png, pixmaps/langs/lang-mn.png,
- pixmaps/langs/lang-yi.png, pixmaps/langs/lang-fi.png,
- pixmaps/langs/lang-ka.png, pixmaps/langs/lang-ru.png,
- pixmaps/langs/lang-nn.png, pixmaps/langs/lang-gv.png,
- pixmaps/langs/lang-th.png, pixmaps/langs/lang-cs.png,
- pixmaps/langs/lang-ko.png, pixmaps/langs/lang-tg.png,
- pixmaps/langs/lang-tt.png, pixmaps/langs/lang-da.png,
- pixmaps/langs/lang-ja.png, pixmaps/langs/lang-vi.png,
- pixmaps/langs/lang-es.png: put new pablo's images (less large, add
- missing ones)
- sort langs in lang.pm
-
- * detect_devices.pm: let hasSMP don't exit DrakX in testing mode because
- /dev/mem is not accessible
-
- * mdk-stage1/Makefile: fix deps problem when re-running make
- hd_usb.img -> hdcdrom_usb.img
-
- * share/po/ja.po: reduce a translation size so that groups choice still
- has the "ok" button shown
- reduce some translations sizes to make diskdrake at least usable ("ok"
- button was hidden!)
-
- * share/po/fr.po: update
-
- * ugtk2.pm: perl checko says we need to use parentheses with ref
- hugly hack because GtkLabel doesn't wrap when using languages that don't
- contain spaces
-
- * drakxtools.spec: cøws gó mòõh
-
-2003/02/28 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/help-de.pot, share/po/help-it.pot, share/po/help-fr.pot,
- share/po/help-es.pot: updated pot file
-
- * standalone/harddrake2: i18n fixes
-
- * standalone/drakpxe: fixed bad English string
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/sp.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/tg.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
- share/po/wa.po, share/po/is.po, share/po/af.po, share/po/az.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/vi.po,
- share/po/ta.po, share/po/fr.po, share/po/sq.po, share/po/it.po,
- share/po/nl.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/lv.po, share/po/hu.po: updated pot file
- updated pot file
-
- * share/po/et.po, share/po/ja.po: updated pot file
- Updated Estonian file
- updated pot file
-
-2003/02/28 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: ensure the $::expert flag in netconnect
- doesn't propagate to the rest of the
- install
-
-2003/02/28 Frederic Lepied <flepied@mandrakesoft.com>
-
- * network/netconnect.pm: allow to switch in expert mode during install.
-
- * network/ethernet.pm: Configure hostname only in expert mode.
-
- * network/network.pm: corrected HOSTNAME/DHCP_HOSTNAME management.
-
-2003/02/28 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: ensure the $::expert flag in netconnect
- doesn't propagate to the rest of the
- install
-
-2003/02/28 Till Kamppeter <till@mandrakesoft.com>
-
- * scanner.pm, share/rpmsrate:
- - Fixed confScanner() deleting the config file in some cases.
- - Removed PDQ from share/rpmsrate
-
-2003/02/27 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * lang.pm, Makefile: error out when a listed lang doesn't have a png lang
- file
- when doing the check of lang.pm, first show the warnings,
- then the errors
- at make-install time, remove pang lang files corresponding
- to disabled langs
-
-2003/02/27 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * drakxtools.spec: 9.1-10mdk
-
-2003/02/27 alafox
-
- * share/po/ru.po: spellchecked and updated some translations
-
-2003/02/27 Frederic Lepied <flepied@mandrakesoft.com>
-
- * network/network.pm: corrected HOSTNAME management
-
-2003/02/27 florin
-
- * standalone/drakgw: read more carefully the existing network
- configuration
-
-2003/02/27 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: added mirror url not given.
- fixed small typo.
- added cancel button.
- fixed message displayed.
- added dialog more precisely.
- added message box in case of error.
-
- * share/rpmsrate: moved galaxy-gnome to X from GNOME (lmontel and dadou
- request)
-
- * network/adsl.pm: add sagem connection and disconnection script using
- /etc/ppp/peers/adsl file.
- probe user and password in /etc/ppp/options.adsl too (as produced by
- original eagle installation),
- sagem adsl type connection does not need to configure an ethernet
- connection.
-
-2003/02/27 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/pci-resource/update-pci-ids.pl: don't forget gigabit network
- adapters
-
-2003/02/27 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
- share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
- share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: updated
- pot file
-
-2003/02/27 Pixel <pixel@mandrakesoft.com>
-
- * fsedit.pm: /root on a separate partition gives a warning, not an error
-
- * network/nfs.pm (check): start portmap if needed
-
- * install_any.pm:
- - add get_info_from_fstab()
- - use it when reading existing fstab (to get for example devfs mount)
- have locales-xx first in default_packages so that default choosing based
- on
- locales works for packages in default_packages
-
- * pkgs.pm: perl_checker fix
- enhance packageCallbackChoices and %preferred
- (uses new URPM::Resolve feature allowing multiple choices)
-
- * fs.pm, standalone/diskdrake:
- - add get_info_from_fstab()
- - use it when reading existing fstab (to get for example devfs mount)
-
- * interactive/gtk.pm: workaround gtk suckiness (set_text in a combo
- generates two 'change' signals, one when removing the whole, one for
- inserting the replacement..)
-
- * install2.pm: no mouse probe when brltty
-
- * standalone/drakupdate_fstab: allow removing device "non kudzu flagged"
- (for harddrake)
-
- * bootloader.pm: use lilo-like code for selecting mapdrive or not
- (it was buggy, always generating "map (0x81) (0x80)", even for hd2)
-
- * share/rpmsrate:
- - don't need to list packages providing a required virtual language
- (eg: aspell-dictionnary)
- - replace ispell with aspell (otherwise people using evolution get
- both aspell and ispell)
-
-2003/02/27 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/data.pm, printer/office.pm: Make OpenOffice.org opening a GUI
- printing tool when printing with the "Generic Printer".
-
- * standalone/scannerdrake: Do not ask for the port when the user has
- chosen an HP MF device as scanner model.
-
-2003/02/27 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * share/po/fr.po: translate missing translations
- fix sorting in keybordrake that was broken by bad translator
-
- * standalone/drakconnect: fix too big internet configuration window
-
- * standalone/service_harddrake: add ieee1394-controller alias and load
- ohci1394 when a firewire controller appeared
- handle configurators with options (eg: "diskdrake --removable=scd0")
-
- * drakxtools.spec: 9.1-10mdk
- 9.1-10mdk
- 9.1-9mdk
-
- * standalone/drakperm: make it fit in embedded mode, large enough else
-
- * harddrake/data.pm: add ieee1394-controller alias and load ohci1394 when
- a firewire controller appeared
-
- * standalone/drakgw: fix embedding
-
-2003/02/27 florin
-
- * standalone/drakgw: read more carefully the existing network
- configuration
- the function is called read_dhcpd_conf not read_dhcpd_conf_raw
- read the dhcpd conf file before hand
-
- * network/network.pm: add the read_dhcpd_conf function for drakgw
-
-2003/02/27 François Pons <fpons@mandrakesoft.com>
-
- * crypto.pm: change default version to 9.1
-
- * standalone/drakconnect: fixed cancel on configure_net, fixed bad fields
- setted up in configure_lan,
- fixed Data::Dumper->Dump on stdout on startup.
-
-2003/02/27 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/mousedrake: fix mousedrake in embedded mode
-
-2003/02/27 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/nl.po, share/po/da.po, share/po/hu.po: updated Dutch, Hungarian
- and Danish files
-
-2003/02/27 Pixel <pixel@mandrakesoft.com>
-
- * interactive/newt.pm: perl_checker fix
-
- * pkgs.pm: enhance packageCallbackChoices and %preferred
- (uses new URPM::Resolve feature allowing multiple choices)
-
- * install_any.pm: have locales-xx first in default_packages so that
- default choosing based on
- locales works for packages in default_packages
-
- * share/rpmsrate:
- - don't need to list packages providing a required virtual language
- (eg: aspell-dictionnary)
- - replace ispell with aspell (otherwise people using evolution get
- both aspell and ispell)
-
-2003/02/27 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakbackup: More gtk2 updates. May have finally suppressed
- the hanging.
-
-2003/02/27 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/main.pm: Fixed bug #2171.
-
-2003/02/27 tpittich
-
- * share/po/sk.po: updated slovak translation
-
-2003/02/27 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/data.pm: detect firewire controllers
-
- * services.pm: perl_checker fix
-
- * standalone/logdrake: fix scrolling when embedded
-
- * standalone/drakboot:
- - disable autologin settings when autologin is disabled
- - make embedded app look better
- - add vertical separators
-
- * drakxtools.spec: 9.1-8mdk
-
- * standalone/harddrake2: remove debugging print
- small perl_checker fix
- - consolidate menu titles translations
- - add two pull down menu that enable one to access options and help
- when
- embedded
- - (popup_menu) provide this callback for embedded pull down menus
- - cleanup various other embedding stuff
- - convert all object creations to gc blessed style
-
- * standalone/drakfloppy:
- - gtk+2 port
- - clean the code through ugtk2
- - too many fixes to count
- - clean, clean it, ... (thus shrinking the code by 20%)
- - ...
-
- * standalone/drakconnect:
- - better check /sbin/ifconfig is executable rather than simply exists
- - fix lan configuration window filling ...
-
- * ugtk2.pm:
- - (create_factory_popup_menu): introduce it for embedded harddrake2
- - embedding cleanups:
- o give access to top-level gtk2::plug widget
- o reuse gtkshow
-
- * standalone/drakperm: make it fit in embedded mode, large enough else
-
-2003/02/26 alus
-
- * share/po/pl.po: uipdated
- updated
-
-2003/02/26 erwan
-
- * rescue/list.ia64: merg ia64
-
- * share/list.ia64, bootloader.pm, install_any.pm, Makefile: merge ia64
-
- * install_steps.pm: Merging ia64
-
- * any.pm: Merging any.pm with ia64
-
- * fs.pm: merging fs.pm with ia64
-
- * fsedit.pm, steps.pm, partition_table.pm: merging ia64
-
-2003/02/26 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: moved type detection code to network.
-
- * install2.pm: added corporate global flag.
-
- * standalone/drakpxe: added code to handle more smootly if apache or
- apache-mod_perl is installed, or
- try using apache2.
- switched to apache2 instead of apache (avoid problem with
- apache-mod_perl).
-
- * network/network.pm: small fixes.
- added probe separately to handle drakconnect horror.
- add probe of internet connection (this could avoid strange behaviour).
- fixed back as titi sucks about message.
- try to get back DOMAINNAME if needed.
-
- * standalone/drakconnect: fixed unablities to launch Internet
- configuration dialog.
- add explicit probe for netcnx type.
-
-2003/02/26 nplanel
-
- * c/smp-dmi.c, c/smp.c: Two smp detection for intel arch
-
-2003/02/26 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/et.po: updated Estonian file
-
- * share/gen_locales.sh: removed exception for Tamil
-
- * share/po/pl.po: Fixed syntax error
-
- * share/po/nl.po, share/po/fi.po: updated Finnish and Dutch files
-
- * keyboard.pm: There is no arabic keyboard available for the console
-
-2003/02/26 Pixel <pixel@mandrakesoft.com>
-
- * interactive/newt.pm: handle multi-line labels for Checkbox'es (eg:
- Options in diskdrake)
- handle the "Advanced" button in newt
-
- * network/isdn.pm: replace the last @isdndata with @isdn::isdndata (beurk)
-
-2003/02/26 Till Kamppeter <till@mandrakesoft.com>
-
- * scanner.pm: Skip Alcatel Speed Touch ADSL Modem when it is detected by
- "sane-find-scanner"
-
-2003/02/26 tpittich
-
- * share/po/sk.po: updated slovak translation (this is my first cvs commit
- ;) ).
-
-2003/02/26 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * c/smp-dmi.c: fix planel sucks that broke the installation (hint look at
- nm output
- on old stuff.so ... )
-
- * standalone/drakedm: untabify
- on laurent request, strip the empty lines and add a end-of-line
- character on
- last line
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
- share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
- share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/tg.po, share/po/bs.po, share/po/uz.po,
- share/po/ro.po, harddrake/sound.pm, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
- share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: typo fix
- (s/snd-slot/sound-slot/)
-
- * bootlook.pm, standalone/drakboot:
- - kill used once only bootlook module
- - inline oneliners use only once
- - kill unused variables
- - strict pragma fixes
- - ...
-
- * harddrake/data.pm: detect usb adsl speed touch modem as modem and not as
- unknown device
- what's remain: why sane-find-scanner keep detect it a scanner ??
-
- * standalone/harddrake2:
- - remove unused variable (hey perl_checker, why didn't you see it ?)
- - (rename_field) better use the parameter we passed than relying on $_
- be set to the right value in that context even if it was correct
-
-2003/02/26 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
- share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
- share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: updated
- Finnish, Hungarian and Slovak files
-
-2003/02/26 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake/interactive.pm, install_interactive.pm: after ntfs resize,
- warn user that on Windows next boot fsck will be done
-
-2003/02/26 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakbackup: Gtk2 port. Bugzilla reports. Some perl_checker
- errors still, but cleaner.
- (some are generated by calls from other modules used)
-
-2003/02/26 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * c/smp-dmi.c: fix planel sucks that broke the installation (hint look at
- nm output
- on old stuff.so ... )
-
-2003/02/25 fabman
-
- * share/po/es.po: updated spanish translation
-
-2003/02/25 Pixel <pixel@mandrakesoft.com>
-
- * network/network.pm (read_resolv_conf_raw): fix "search ..." handling
-
-2003/02/25 fabman
-
- * share/po/es.po: Updated Spanish translations (some left)
-
-2003/02/25 Frederic Lepied <flepied@mandrakesoft.com>
-
- * share/rpmsrate: removed gnome-tiles
-
- * share/po/fr.po: mise-à-jour => mise à jour
-
-2003/02/25 François Pons <fpons@mandrakesoft.com>
-
- * share/list: added dmidecode in install.
-
- * pkgs.pm: improved code for populating group with pixel.
-
- * network/adsl.pm: cleaned a bit the code.
- added login and passwd remember from /etc/ppp/peers/adsl
- /etc/ppp/options
- /etc/ppp/pap-secrets /etc/ppp/chap-secrets file
- modified string as sagem driver now use pppoa
-
- * any.pm: added dmidecode in bug report.
-
- * tools/Makefile, Makefile: removed dmidecode.
- added dmidecode
-
- * tools/dmidecode/dmidecode.c, tools/dmidecode/Makefile: added dmidecode
-
- * rescue/list: removed dmidecode.
- added dmidecode for rescue (from lm_sensors)
-
-2003/02/25 gbeauchesne
-
- * share/list.x86_64: More xf86 modules for x86-64
-
-2003/02/25 nplanel
-
- * c/smp-dmi.c, c/smp.c, c/Makefile.PL: Add dmidetection for smp
-
-2003/02/25 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ga.po, share/po/uk.po, share/po/lt.po, share/po/af.po,
- share/po/lv.po: Fixed the wrong Finish/Finnish of some translations
- updated Finnish and French files
-
- * share/po/et.po: updated Estonian file
- updated Finnish and French files
-
- * share/po/th.po: Fixed Thai button for "Finish" (it means "end" and not
- "from Finland")
- updated Finnish and French files
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/sl.po, share/po/no.po,
- share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
- share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
- share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/tg.po, share/po/bs.po, share/po/uz.po,
- share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/az.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/vi.po,
- share/po/ta.po, share/po/fr.po, share/po/sq.po, share/po/it.po,
- share/po/nl.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/hu.po: updated Finnish and French files
-
-2003/02/25 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm, install_gtk.pm: cleanup handling of XF4 server
- choice during install
-
- * network/network.pm (read_resolv_conf_raw): fix "search ..." handling
-
- * share/rpmsrate: s/apache/apache2/
-
- * mdk-stage1/mount.c: handle device hdi, hdj... hdt creation
-
- * modules/interactive.pm: join detect_devices::stringlist() to have it in
- a text box (eurk!)
- (for bug #1802), the result is quite ugly, but at least the full line
- can be read
-
- * any.pm (fileshare_config): create group "fileshare" in "Custom" mode
-
-2003/02/25 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/main.pm, printer/printerdrake.pm: Prepared for LPRng and PDQ
- goint to Contribs or leaving the distro, "Change
- Printing System" button only appears if at least one of them is manually
- installed.
-
-2003/02/25 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/data.pm: handle floppes, zip drives, dvd-rom, cdrom and
- burners at startup time
- - factorize code into harddrake::data::set_removable_configurator()
- - really do not offer to configure module for removable devices
- - do not put zip drives in unknown devices class
- - reuse Yes|No translations in harddrake::ui
-
- * standalone/drakfloppy: we already use diagnostics pragma, so -w will
- just slow down normal execution
- only list physically present floppies
- reuse MDK::Common
- - fix stupid copy 'n past of copyright header
- - update copyright years
- fix #???? : switch the "expert mode" toggle button label regarding the
- current
- mode (beginner or expert)
-
- * bootlook.pm:
- - remove deprecated, half-commented aurora related code
- - fix display of autologin radio buttons
-
- * standalone/harddrake2: do not display alternatives oss/alsa drivers if
- there's none
- - factorize code into harddrake::data::set_removable_configurator()
- - really do not offer to configure module for removable devices
- - do not put zip drives in unknown devices class
- - reuse Yes|No translations in harddrake::ui
- - don't offer to configure module for removable media
- - usb devices (such as zip): display vendor, description and a more
- detailled media type
- display media capacity too (DVD and/or burning ability)
-
- * standalone/service_harddrake: handle floppes, zip drives, dvd-rom, cdrom
- and burners at startup time
- don't black out the screen if not needed
-
- * drakxtools.spec: 9.1-7mdk
-
- * share/po/fr.po: update french translation
-
-2003/02/25 Warly <warly@mandrakesoft.com>
-
- * share/rpmsrate: readd harddrake in SYSTEM 5
-
- * share/compssUsers: add ARCHIVING in OFFICE
-
-2003/02/24 alus
-
- * share/po/pl.po: one entry
-
-2003/02/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/br.po, share/po/th.po, share/po/sl.po, share/po/no.po,
- share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/ko.po,
- share/po/sv.po, share/po/sr.po, share/po/fi.po, share/po/lt.po,
- share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
- share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/sq.po,
- share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/lv.po, share/po/hu.po: updated Welsh, Greek,
- Swedish and Chinese files
-
- * lang.pm: improved default fonts for KDE, completed the geographic
- location
- by continent for a few remaining country codes
-
- * share/po/et.po: updated Estonian file
- updated Welsh, Greek, Swedish and Chinese files
-
- * share/po/pt_BR.po, share/po/DrakX.pot, share/po/pl.po, share/po/pt.po:
- updated Portuguese file
- updated Welsh, Greek, Swedish and Chinese files
-
-2003/02/24 Pixel <pixel@mandrakesoft.com>
-
- * lang.pm: use Sans & Monospace for kde (as requested by lmontel)
-
- * mdk-stage1/probing.c: replace checking hd[a-h] with hd[a-t] (cf bug
- #1801)
-
- * install_steps_interactive.pm: allow neuneus to quit install at license
- step (esp. for Ann & Warly's father)
-
-2003/02/24 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * modules.pm: dmasound_awacs -> dmasound_pmac
-
-2003/02/24 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * ugtk2.pm: final embedding cleanups
- - clean up embedding; since socket automatically emit plug-added gtk+
- signal
- when plug is realize, it's just cleaner to centralize/consolidate the
- child
- embedding in mcc
- this of course, need a newer up-to-date mcc
- what's more, it allows to remove the somewhat mythical
- "$::isEmbedded and kill 'USR2', $::CCPID;"
- - keyboarddrake, xfdrake, drakautoinst: goto cleaning btw
- - clean up embedding; since socket get automatically destroyed on
- child exit
- and since they emit plug-removed at that moment, it's just cleaner to
- centralize/consolidate the child exit in mcc
- this of course, need a newer up-to-date mcc
- what's more, it allows to remove the somewhat mythical
- "$::isEmbedded and kill 'USR1', $::CCPID;"
- - drakautoinst, drakxservices, keyboardrake: fix fscking embedding
- managment
-
- * standalone.pm: final embedding cleanups
-
- * standalone/harddrake2: fix size when embedded
- first attempt at making printerdrake to behave smoother when embedded in
- the
- mcc
- - untabify
- - hide devices which has no driver or whose driver is an url,
- a graphic server and consolidate the test by the way
- prefix devfs device name with "/dev/" too
-
- * standalone/drakfloppy:
- - fix packing (#1760)
- - --expert command line option switch to expert mode by default
- - only hide expert stuff if not in expert mode at startup
-
- * standalone/logdrake:
- - remove debug statements
- - print an error message if we die on something other than wizcancel
- fix mail alert generation
- - do not crash without any message in strict mode (wizcancel die
- miscatched)
- - make the generated script be 'use strict' and perl_checker compliant
- simplify
- - clean up embedding; since socket automatically emit plug-added gtk+
- signal
- when plug is realize, it's just cleaner to centralize/consolidate the
- child
- embedding in mcc
- this of course, need a newer up-to-date mcc
- what's more, it allows to remove the somewhat mythical
- "$::isEmbedded and kill 'USR2', $::CCPID;"
- - keyboarddrake, xfdrake, drakautoinst: goto cleaning btw
-
- * standalone/printerdrake, standalone/drakconnect,
- standalone/scannerdrake:
- - clean up embedding; since socket automatically emit plug-added gtk+
- signal
- when plug is realize, it's just cleaner to centralize/consolidate the
- child
- embedding in mcc
- this of course, need a newer up-to-date mcc
- what's more, it allows to remove the somewhat mythical
- "$::isEmbedded and kill 'USR2', $::CCPID;"
- - keyboarddrake, xfdrake, drakautoinst: goto cleaning btw
-
- * standalone/drakfont: looks better like this
- - clean up embedding; since socket get automatically destroyed on
- child exit
- and since they emit plug-removed at that moment, it's just cleaner to
- centralize/consolidate the child exit in mcc
- this of course, need a newer up-to-date mcc
- what's more, it allows to remove the somewhat mythical
- "$::isEmbedded and kill 'USR1', $::CCPID;"
- - drakautoinst, drakxservices, keyboardrake: fix fscking embedding
- managment
-
- * interactive/gtk.pm, printer/printerdrake.pm: first attempt at making
- printerdrake to behave smoother when embedded in the
- mcc
-
- * standalone/drakautoinst, my_gtk.pm, standalone/XFdrake,
- standalone/keyboarddrake:
- - clean up embedding; since socket automatically emit plug-added gtk+
- signal
- when plug is realize, it's just cleaner to centralize/consolidate the
- child
- embedding in mcc
- this of course, need a newer up-to-date mcc
- what's more, it allows to remove the somewhat mythical
- "$::isEmbedded and kill 'USR2', $::CCPID;"
- - keyboarddrake, xfdrake, drakautoinst: goto cleaning btw
- - clean up embedding; since socket get automatically destroyed on
- child exit
- and since they emit plug-removed at that moment, it's just cleaner to
- centralize/consolidate the child exit in mcc
- this of course, need a newer up-to-date mcc
- what's more, it allows to remove the somewhat mythical
- "$::isEmbedded and kill 'USR1', $::CCPID;"
- - drakautoinst, drakxservices, keyboardrake: fix fscking embedding
- managment
-
- * drakxtools.spec: 9.1-6mdk
- more fixes
- 9.1-5mdk
- - clean up embedding; since socket get automatically destroyed on
- child exit
- and since they emit plug-removed at that moment, it's just cleaner to
- centralize/consolidate the child exit in mcc
- this of course, need a newer up-to-date mcc
- what's more, it allows to remove the somewhat mythical
- "$::isEmbedded and kill 'USR1', $::CCPID;"
- - drakautoinst, drakxservices, keyboardrake: fix fscking embedding
- managment
-
- * standalone/net_monitor: fix embedding (even if we don't embbed it, it's
- better)
-
- * bootlook.pm: perl_checker fix
- clean up:
- - no more directly handle embeddign
- - use ugtk2
- - clean up embedding; since socket automatically emit plug-added gtk+
- signal
- when plug is realize, it's just cleaner to centralize/consolidate the
- child
- embedding in mcc
- this of course, need a newer up-to-date mcc
- what's more, it allows to remove the somewhat mythical
- "$::isEmbedded and kill 'USR2', $::CCPID;"
- - keyboarddrake, xfdrake, drakautoinst: goto cleaning btw
- - clean up embedding; since socket get automatically destroyed on
- child exit
- and since they emit plug-removed at that moment, it's just cleaner to
- centralize/consolidate the child exit in mcc
- this of course, need a newer up-to-date mcc
- what's more, it allows to remove the somewhat mythical
- "$::isEmbedded and kill 'USR1', $::CCPID;"
- - drakautoinst, drakxservices, keyboardrake: fix fscking embedding
- managment
-
- * standalone/drakxservices, diskdrake/hd_gtk.pm, standalone/drakboot,
- standalone/drakTermServ:
- - clean up embedding; since socket get automatically destroyed on
- child exit
- and since they emit plug-removed at that moment, it's just cleaner to
- centralize/consolidate the child exit in mcc
- this of course, need a newer up-to-date mcc
- what's more, it allows to remove the somewhat mythical
- "$::isEmbedded and kill 'USR1', $::CCPID;"
- - drakautoinst, drakxservices, keyboardrake: fix fscking embedding
- managment
-
- * standalone/drakperm: fix #1771
- level should not be editable
-
- * services.pm: in standalone mode, only display a service as enabled at
- boot time
- only if it's really enabled in current runlevel.
- what's more it's more coherent with other "only show current runlevel
- status" tools like ntsysv.
-
-2003/02/24 Warly <warly@mandrakesoft.com>
-
- * share/compssUsers: "Mail/Groupware/News" is now just "Mail"
-
-2003/02/23 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/it.po: fixed several fuzzy lines
-
-2003/02/23 Pixel <pixel@mandrakesoft.com>
-
- * timezone.pm: use output_p() instead of output() for
- /etc/ntp/step-tickers
-
-2003/02/23 Till Kamppeter <till@mandrakesoft.com>
-
- * standalone/scannerdrake: Fixed wait message not embedded in drakconf.
-
- * printer/main.pm, printer/printerdrake.pm: Several bug fixes on
- printerdrake
- - "BrowsePoll <IP>:<Port>" needs "Browsing On" in
- /etc/cups/cupsd.conf.
- - If the same printer model is once on the parallel port and second on
- USB,
- there was a new USB queue created on every start of Printerdrake.
- - Now CUPS is restarted whenever a new USB print queue is set up so
- that
- CUPS can provide the model-related USB URI.
- - Made sure that the default printer is defined and that it is an
- existing
- queue so that during installation printerdrake does not show a line
- only
- containing " (Default)" in the list of installed printers.
- - Cleaned up data structure after automatic queue generation.
-
-2003/02/23 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake/interactive.pm (migrate_files): check return values (fixes bug
- #2170)
-
-2003/02/23 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/printerdrake.pm, install_steps_interactive.pm: Fixed bug of
- printerdrake loosing the printer queue info during the
- preparation of the "Summary" window (only if there are local
- printers). No the printer queue entries should not be empty when
- clicking on "Configure" in the "Printer" part of the "Summary" window.
-
-2003/02/22 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/et.po, share/po/wa.po: updated pot file
- updated Estonian file
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
- share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/tg.po, share/po/bs.po, share/po/uz.po,
- share/po/ro.po, share/po/is.po, share/po/af.po, share/po/az.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/vi.po,
- share/po/ta.po, share/po/fr.po, share/po/sq.po, share/po/it.po,
- share/po/nl.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/lv.po, share/po/hu.po: updated pot file
-
- * standalone/harddrake2: changed an English string
-
-2003/02/22 Pixel <pixel@mandrakesoft.com>
-
- * interactive/gtk.pm: in $::expert, use a SpinButton instead of HScale for
- type "range"
- (useful in diskdrake to enter the partition size directly)
-
- * share/rpmsrate: ensure galaxy-kde is installed together with kdebase
-
- * partition_table/raw.pm (test_for_bad_drives): don't open in write mode
- when testing
-
-2003/02/22 siegel
-
- * share/po/de.po: updates
-
-2003/02/21 alus
-
- * share/po/pl.po: updated
-
-2003/02/21 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/network.pm: no need to use regexp
-
- * drakxtools.spec: 4mdk
-
- * network/isdn.pm: $isdn->{is_light} wasn't set while using autodetection,
- rpm wasn't installed
-
- * network/tools.pm: oups... hu... nothing
-
- * network/netconnect.pm: oups... hu... nothing
- get back password input for adsl
-
-2003/02/21 florin
-
- * network/netconnect.pm: add isdn check in get_net_device
-
-2003/02/21 gbeauchesne
-
- * mdk-stage1/dietlibc/libcruft/dnscruft2.c: Better fix for DNS resolver
- bug
-
-2003/02/21 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * ugtk2.pm: embedded should segfault a bit less if I don't let the
- embedded
- window creation destroy the destroy handler
- workaround what seems to be a gtk bug (#1445)
- gtk seems to loop (and take 100% user cpu) when
- I change the pixbuf of a gtkcellrendererpixbuf
- in a treeview that is not currently displayed
-
-2003/02/21 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
- share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
- share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: updated
- Estonian and Dutch files
- updated Danish file
-
- * help.pm: fixed a typo
-
-2003/02/21 Pixel <pixel@mandrakesoft.com>
-
- * ugtk2.pm: when isEmbedded, use $::WizardTable to allow non pop_it when
- not visible
-
- * pixmaps/colors16.png:
- - make it the same range as colors.png and colors8.png
- - it is a 64 colors image (note that colors8 is 16 colors)
-
- * services.pm (ask_standalone_gtk): ensure popup is not destroyed more
- than once
-
- * fsedit.pm: use test_for_bad_drives even after install (esp. to detect
- removed usb-storage
- devices still visible in /proc/scsi/scsi)
-
- * install_steps_interactive.pm: "Generate auto install floppy" and "Save
- packages selection" are now available in advanced
-
- * Xconfig/resolution_and_depth.pm: fix setting the image & colors in
- resolution chooser
-
-2003/02/21 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/printerdrake.pm:
- - Fixed text of "Refresh printer list" button when list is empty.
- - Let printerdrake clean up its datastructure after auto-installing
- printers in the beginning of the "Summary" installation step.
-
-2003/02/20 florin
-
- * network/shorewall.pm: update 2 rules for the pptp dsl internet
- connection
-
-2003/02/20 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: added wait message when building groups.
-
-2003/02/20 gbeauchesne
-
- * mdk-stage1/dns.c: Fix mygethostbyaddr(), struct in is not a NULL
- terminated string.
- i.e. len has to be either sizeof(in.s_addr) or INADDRSZ.
-
- * mdk-stage1/dietlibc/libcruft/dnscruft2.c: Workaround DNS resolver bug on
- 64-bit platforms.
-
- * mdk-stage1/dietlibc/syscalls.s/lstat64.S,
- mdk-stage1/dietlibc/libregex/rx.c, mdk-stage1/dietlibc/include/string.h,
- mdk-stage1/dietlibc/libugly/strftime.c,
- mdk-stage1/dietlibc/i386/ldexp.S, mdk-stage1/dietlibc/i386/sin.S,
- mdk-stage1/dietlibc/lib/strerror.c, mdk-stage1/dietlibc/dietstdio.h,
- mdk-stage1/dietlibc/include/sys/vfs.h,
- mdk-stage1/dietlibc/include/unistd.h, mdk-stage1/dietlibc/i386/mmap64.S,
- mdk-stage1/dietlibc/i386/vfork.S,
- mdk-stage1/dietlibc/libstdio/fdglue2.c,
- mdk-stage1/dietlibc/alpha/errlist.S,
- mdk-stage1/dietlibc/include/dirent.h, mdk-stage1/dietlibc/sparc/urem.S,
- mdk-stage1/dietlibc/libcruft/scandir64.c,
- mdk-stage1/dietlibc/include/assert.h, mdk-stage1/dietlibc/lib/__isnan.c,
- mdk-stage1/dietlibc/sparc/umul.S,
- mdk-stage1/dietlibc/i386/dyn_syscalls.S, mdk-stage1/dietlibc/CHANGES,
- mdk-stage1/dietlibc/libstdio/fflush.c,
- mdk-stage1/dietlibc/libcruft/sysconf.c,
- mdk-stage1/dietlibc/syscalls.s/pause.S,
- mdk-stage1/dietlibc/include/termios.h,
- mdk-stage1/dietlibc/syscalls.s/n_sigprocmask.S,
- mdk-stage1/dietlibc/diet.c, mdk-stage1/dietlibc/FAQ,
- mdk-stage1/dietlibc/syscalls.s/socketcall.S,
- mdk-stage1/dietlibc/include/sys/poll.h,
- mdk-stage1/dietlibc/sparc/Makefile.add,
- mdk-stage1/dietlibc/syscalls.s/n_sigsuspend.S,
- mdk-stage1/dietlibc/include/dlfcn.h,
- mdk-stage1/dietlibc/syscalls.s/umount2.S,
- mdk-stage1/dietlibc/include/sys/time.h,
- mdk-stage1/dietlibc/include/signal.h,
- mdk-stage1/dietlibc/libcruft/alphasort64.c,
- mdk-stage1/dietlibc/libshell/glob.c,
- mdk-stage1/dietlibc/syscalls.s/n_sigpending.S,
- mdk-stage1/dietlibc/include/stdarg-cruft.h,
- mdk-stage1/dietlibc/lib/signal.c, mdk-stage1/dietlibc/lib/__dtostr.c,
- mdk-stage1/dietlibc/lib/__isinf.c, mdk-stage1/dietlibc/syscalls.s/ipc.S,
- mdk-stage1/dietlibc/include/sys/types.h, mdk-stage1/dietlibc/Makefile,
- mdk-stage1/dietlibc/libstdio/fread.c,
- mdk-stage1/dietlibc/syscalls.s/n_sigaction.S,
- mdk-stage1/dietlibc/syscalls.s/fstat64.S,
- mdk-stage1/dietlibc/libugly/tzfile.c,
- mdk-stage1/dietlibc/lib/__v_printf.c,
- mdk-stage1/dietlibc/sparc/errlist.S, mdk-stage1/dietlibc/i386/memchr.S,
- mdk-stage1/dietlibc/syscalls.s/msync.S,
- mdk-stage1/dietlibc/i386/libm2.S, mdk-stage1/dietlibc/sparc/udiv.S,
- mdk-stage1/dietlibc/i386/cos.S, mdk-stage1/dietlibc/include/sys/ioctl.h,
- mdk-stage1/dietlibc/syscalls.s/errlist.S,
- mdk-stage1/dietlibc/syscalls.s/stat64.S,
- mdk-stage1/dietlibc/libugly/strndup.c: Merge with dietlibc 0.22-1mdk
-
-2003/02/20 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/dns.c: fix potential segfault thx to gwenole
-
- * install_steps_interactive.pm: oops i didn't understand the internals of
- wait_message hence breaking it. hopes that will fix.
- install the potentially needed locales country when user selected
- another country
- Gtk2::Label::set is deprecated
-
- * install_steps_gtk.pm, services.pm: Gtk2::Label::set is deprecated
-
- * share/logo-mandrake.png: update shadow
- Gtk2::Label::set is deprecated
-
- * interactive.pm: oops i didn't understand the internals of wait_message
- hence breaking it. hopes that will fix.
- Gtk2::Label::set is deprecated
-
- * install_gtk.pm, ugtk2.pm: change a bit position of main window and steps
- window
- in steps window, have titles in grey
-
- * fs.pm: thx rekcehc_lrep
-
- * any.pm: cows go møøh
-
-2003/02/20 Pixel <pixel@mandrakesoft.com>
-
- * network/shorewall.pm: fix florin: replace $prefix with $::prefix
-
- * help.pm: fix typos
-
- * any.pm: allow Cancel in setupBootloader__entries
- - add "Force No APIC"
- - rename add_append() to set_append()
- (since it can be used to remove a key)
- - add remove_append_simple()
-
- * install_steps.pm, bootloader.pm:
- - add "Force No APIC"
- - rename add_append() to set_append()
- (since it can be used to remove a key)
- - add remove_append_simple()
-
- * network/network.pm: use detect_devices::pcmcia_probe() instead of
- detect_devices::probeall()
- - read_resolv_conf() reads DOMAINNAME & DOMAINNAME2
- - read_resolv_conf() reads /etc/resolv.conf by default
- - read_resolv_conf_raw() created
-
- * install_steps_interactive.pm: help perl_checker find the N("...") the
- #-PO corresponds to
-
- * diskdrake/interactive.pm: have ask_okcancel instead of ask_warn on
- cdie's
- add catch_cdie's around fsedit::check_mntpoint and fsedit::add
-
- * install2.pm: {brltty}{device} is optional, default is ttyS0 or ttyS1 (?)
-
- * fsedit.pm: warn non-ascii chars in mount point (cf bug #1588)
- use cdie instead of die for warnings
-
- * Xconfig/card.pm: don't vivify @cards
-
- * install_steps_gtk.pm: fix $check_complete use in gtk summary
-
-2003/02/20 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakTermServ: perl_checker
- Finish gtk2 port.
-
-2003/02/20 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/drakgw: don't use gtk+2 deprecated functions
-
- * bootlook.pm:
- - add --testing support
- - fix #1923 (aka reuse consolided code instead of using deprecated
- code)
- - minor cleanup
- - skip comments while parsing /etc/lilo.conf
- don't use gtk+2 deprecated functions
-
- * drakxtools.spec: 9.1-3mdk
-
- * standalone/harddrake2: perl_checker fix
- - prevent any l10n problem by having only one path string when both
- creating the menu and acessing a menu widget (aka translate menu
- paths only once), which also nicely cut down the translators job.
- - decrease diagnostics pragma verbosity (aka remove big fat warning
- messages)
-
- * share/po/fr.po: further updates
- translate all countrie names
- update french translation
-
-2003/02/20 alus
-
- * share/po/pl.po: typo fix
-
-2003/02/20 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/network.pm: dhcp fix
-
-2003/02/20 gbeauchesne
-
- * mdk-stage1/dietlibc/dietfeatures.h: Disable back WANT_TZFILE_PARSER,
- 0.22 fixed strftime() problem
-
- * share/rpmsrate: Better defaults for OOo
-
- * mdk-stage1/dns.c: Fix mygethostbyaddr(), struct in is not a NULL
- terminated string.
- i.e. len has to be either sizeof(in.s_addr) or INADDRSZ.
-
-2003/02/20 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_steps_interactive.pm: install the potentially needed locales
- country when user selected
- another country
- Gtk2::Label::set is deprecated
- add a PO comment to try to keep buttons in the window..
-
- * share/themes-galaxy.rc: logo is aso white on blue
-
- * mdk-stage1/dns.c: fix potential segfault thx to gwenole
-
- * share/po/fr.po: some misc fixes
- translate iraq
-
- * fs.pm: thx rekcehc_lrep
-
- * install_steps_gtk.pm: Gtk2::Label::set is deprecated
- fix bold diplay of texts in adverts
-
- * share/logo-mandrake.png, services.pm, interactive.pm: Gtk2::Label::set
- is deprecated
-
- * ugtk2.pm: try to handle case with large fonts (CJK for example) ->
- branch on TextView
- when the box will be quite large
-
-2003/02/20 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
- share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/lv.po, share/po/hu.po: corrected Russian
- translation
-
- * share/po/eu.po: changed encoding
- corrected Russian translation
-
-2003/02/20 Pixel <pixel@mandrakesoft.com>
-
- * fsedit.pm: don't let diskdrake detect ext3/reiserfs/jfs/xfs on a type
- 0x7 partition
- - simplify check_mntpoint
- - fix checking mount point in Mount_point()
-
- * partition_table.pm: set {device_windobe} for 0x107 *and* 0x7 (since
- 0x107 is not set correctly at this stage)
- (otherwise this causes mount points /mnt/win_ /mnt/win_1...)
-
- * diskdrake/interactive.pm:
- - simplify check_mntpoint
- - fix checking mount point in Mount_point()
-
- * bootloader.pm:
- - add "Force No APIC"
- - rename add_append() to set_append()
- (since it can be used to remove a key)
- - add remove_append_simple()
-
- * install_steps_interactive.pm: help perl_checker find the N("...") the
- #-PO corresponds to
-
- * any.pm:
- - add "Force No APIC"
- - rename add_append() to set_append()
- (since it can be used to remove a key)
- - add remove_append_simple()
- add XF86Config and XF86Config-4 to report.bug
- no autologin by default if more than one users
-
- * Xconfig/card.pm: log manually chosen graphic card
- log why auto X config failed (needVideoRam)
-
- * ugtk2.pm: ensure {box_size} is set (to have less warnings)
-
- * standalone/diskdrake, interactive.pm: have less warnings when debugging
-
- * pkgs.pm: prefer myspell-en_US
-
- * install_steps.pm:
- - add "Force No APIC"
- - rename add_append() to set_append()
- (since it can be used to remove a key)
- - add remove_append_simple()
- usb is runned by rc.sysinit, and doesn't like "chkconfig --add" anymore
-
- * install2.pm: {brltty}{device} is optional, default is ttyS0 or ttyS1 (?)
- fix brltty support
-
- * interactive/gtk.pm: set a minimum size for Gtk2::HScale's (mainly used
- for resizing partitions)
- fix $ok_clicked when there is no ok button
- have less warnings when debugging
-
-2003/02/20 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakTermServ: Partial gtk2 update - still needs work on
- TreeViews
-
-2003/02/20 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/main.pm, printer/printerdrake.pm:
- - Improved/fixed generation of printer list entries from
- manufacturer-supplied PostScript PPD files
- - Removed forgotten debug mode
- - Disabled wizard-mode temporarily
-
- * install_steps_interactive.pm: Made sure that printerdrake does not open
- its main window when called during the preparation of the "Summary"
- screen.
-
-2003/02/20 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/harddrake2:
- - prevent any l10n problem by having only one path string when both
- creating the menu and acessing a menu widget (aka translate menu
- paths only once), which also nicely cut down the translators job.
- - decrease diagnostics pragma verbosity (aka remove big fat warning
- messages)
-
- * drakxtools.spec: 9.1-2mdk
-
- * standalone/logdrake: fix #1829
-
- * share/po/fr.po: further updates
- translate all countrie names
- update french translation
-
-2003/02/20 Pixel <pixel@mandrakesoft.com>
-
- * ugtk2.pm: ensure {box_size} is set (to have less warnings)
-
- * diskdrake/interactive.pm, fsedit.pm:
- - simplify check_mntpoint
- - fix checking mount point in Mount_point()
-
- * interactive/gtk.pm, standalone/diskdrake, interactive.pm: have less
- warnings when debugging
-
- * Xconfig/card.pm: log why auto X config failed (needVideoRam)
-
-2003/02/19 alus
-
- * share/po/pl.po: updated
-
-2003/02/19 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: fixed if update fail to allow retry.
- added code to retry finding an update medium if something went wrong.
- add ugly probed type of network configuration.
- make sure network::network:: is used (just in case)
- add default configuration for network for summary.
-
- * install_steps.pm: add simplified menu for desktop mode.
-
- * pkgs.pm: added a missing sanity unwind.
- add sanity code on error when reading hdlist (this will avoid update
- medium
- being trashed if an error occurred during hdlist download and so ...)
-
- * crypto.pm: code slight reorganization.
-
-2003/02/19 gbeauchesne
-
- * share/rpmsrate, share/compssUsers:
- - Add localized help files for OpenOffice.org
- - Add new SPELLCHECK category for myspell spellchecking and
- hyphenators
-
- * mdk-stage1/Makefile: Enable all usual stage1-* BINS on x86-64. Add
- dietlibc to DIRS too for that
- arch. Fix rescue-gui build with $(DIET) wrapper.
-
- * mdk-stage1/mar/Makefile: Rearrange build so that only mar binary is
- built with glibc and other objects
- with either glibc or dietlibc.
-
-2003/02/19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * lang.pm: I'm stupid, we need to set UTF8 when there are two installed
- langs with different encodings, not just when the additional
- languages have different encoding than main one
-
- * loopback.pm, any.pm, diskdrake/interactive.pm, fs.pm, install_steps.pm,
- network/ethernet.pm, bootloader.pm, install_steps_interactive.pm,
- diskdrake/hd_gtk.pm, lvm.pm, fsedit.pm, install2.pm,
- network/drakfirewall.pm, raid.pm, install_interactive.pm,
- install_any.pm, partition_table/raw.pm, partition_table.pm: to
- workaround perl bug removing UTF8 flag when passing scalars to die's,
- pass
- a scalar-ref. but we need to de-ref, so it might break many things :).
- let's make a prayer :).
-
- * share/rpmsrate: add fonts-ttf-arabic when locale ar
-
- * ugtk2.pm: set the destroy handler after wizard creation, or the fact
- that
- wizard window will overwrite existing window will also destroy
- the destroy handler
- fix some segfaults caused by still calling destroy
- or other gtk functions after a destroy has been
- already done, triggered by the user clicking on
- the WM's "close this application" button (#1651)
- better comply to look of text like in Gtk1 (text inside a Frame)
- clean
-
-2003/02/19 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/et.po: updated Estonian file
- updated Uzbek file
-
- * share/rpmsrate: Improved the locale->font selection;
- added the tetex-latex-arab-doc package (previously was included in the
- main)
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
- share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/tg.po, share/po/bs.po, share/po/uz.po,
- share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/sq.po,
- share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/lv.po, share/po/hu.po: updated Uzbek file
-
-2003/02/19 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm: don't log "warning: find_index failed in ..."
-
- * install_steps.pm, install_steps_interactive.pm: add some more
- formatError
-
- * raid.pm: mkraid wants all the md devices written in raidtab to exist,
- even if asking to
- create a specific md
- cleanup
-
- * install_steps_auto_install.pm: add a formatError
-
- * pixmaps/X.png: add it back (used by XFdrake)
-
- * install_any.pm: use formatError
-
- * install_interactive.pm: add some formatError's
-
- * fsedit.pm, detect_devices.pm:
- - cleanup & simplify
- - handle raid on raid detection
-
- * interactive/gtk.pm: can't use $mainw->{ok}->clicked since $mainw->{ok}
- doesn't always exist, set
- {retval} and main_quit instead (the way it was done for double click, is
- this
- ok when pressing enter?)
-
- * diskdrake/interactive.pm: use formatError on $err
- use formatError($err) instead of $@
- - allow raid on raid (raid 10)
- - focus mount point in Mount_point
- - focus type in Type
-
- * standalone/icons/ic82-tape-40.png, pixmaps/ic82-tape-40.png,
- pixmaps/ic82-systemeplus-40.png,
- standalone/icons/ic82-systemeplus-40.png: move some images from
- standalone to pixmaps to have them both during install and after install
- (images used by XFdrake)
-
- * install_steps_gtk.pm: indent more the entries in the summary (as asked
- by dadou)
-
-2003/02/19 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/drakxtv:
- - perl_checker fixes
- - indent-region, untabify
- - comment workaround
- workaround a drakx bug which don't always add bttv to /etc/modules
-
- * standalone/scannerdrake: cleanup
- fix embedding
-
- * standalone/printerdrake: hide the icon when embedded to get more space
- fix embedding and clean it up
-
-2003/02/19 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: make sure network::network:: is used (just
- in case)
- add default configuration for network for summary.
-
-2003/02/19 gbeauchesne
-
- * share/rpmsrate, share/compssUsers:
- - Add localized help files for OpenOffice.org
- - Add new SPELLCHECK category for myspell spellchecking and
- hyphenators
-
-2003/02/19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/de.po: fix typo (#1821)
-
- * share/compssUsers: provide a minimum desrciption for Scientific
- Workstation (#1814)
-
- * share/themes-galaxy.rc: try to choose sensible values for insensitive
- widgets
-
-2003/02/19 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm: don't log "warning: find_index failed in ..."
-
- * diskdrake/interactive.pm:
- - allow raid on raid (raid 10)
- - focus mount point in Mount_point
- - focus type in Type
-
- * raid.pm: mkraid wants all the md devices written in raidtab to exist,
- even if asking to
- create a specific md
- cleanup
-
- * detect_devices.pm, fsedit.pm:
- - cleanup & simplify
- - handle raid on raid detection
-
-2003/02/19 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/drakxtv:
- - perl_checker fixes
- - indent-region, untabify
- - comment workaround
- workaround a drakx bug which don't always add bttv to /etc/modules
-
-2003/02/18 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * drakxtools.spec: new version
-
- * network/network.pm: Get back configuration settings from conf files
- (fix some kind of titi sucking)
-
-2003/02/18 gbeauchesne
-
- * mdk-stage1/bzlib/Makefile, mdk-stage1/insmod-modutils/obj/Makefile,
- mdk-stage1/insmod-modutils/util/Makefile,
- mdk-stage1/insmod-modutils/Makefile, mdk-stage1/newt/Makefile,
- mdk-stage1/slang/Makefile, mdk-stage1/mar/Makefile:
- - Use minilibc on x86-64
- - mar requires bzlib to be built beforehand, especially if building
- with
- dietlibc
- - Nuke trickery to handle -DIET objects, everything is now built
- through
- the diet driver, defined into $(DIET)
-
- * mdk-stage1/dietlibc/include/net/ethernet.h: Add <net/ethernet.h> and
- <linux/if_ether.h> so that dhcp.c can be compiled
-
- * mdk-stage1/dietlibc/dietfeatures.h: Define WANT_TZFILE_PARSER so that
- call to tset() in strftime() implementation
- can be resolved.
- Merge back small config file
- Merge in CVS dietlibc 0.21 for IA-64 and X86-64 support. However, drop
- the
- following architectures we currently don't support: arm, mips, mipsel,
- parisc,
- s390, sparc64.
-
- * mdk-stage1/dietlibc/syscalls.c/fchmod.c,
- mdk-stage1/dietlibc/librpc/authunix_prot.c,
- mdk-stage1/dietlibc/include/termio.h,
- mdk-stage1/dietlibc/i386/sendmsg.S,
- mdk-stage1/dietlibc/syscalls.c/syslog.c,
- mdk-stage1/dietlibc/syscalls.c/setpriority.c,
- mdk-stage1/dietlibc/lib/msgget.c, mdk-stage1/dietlibc/lib/longjmp.c,
- mdk-stage1/dietlibc/lib/strerror.c, mdk-stage1/dietlibc/dieticonv.h,
- mdk-stage1/dietlibc/i386/asin.S,
- mdk-stage1/dietlibc/libpthread/pthread_flockfile.c,
- mdk-stage1/dietlibc/libcruft/gethostbyname.c,
- mdk-stage1/dietlibc/alpha/__alarm.c,
- mdk-stage1/dietlibc/librpc/rpc_prot.c,
- mdk-stage1/dietlibc/libugly/getmntent.c,
- mdk-stage1/dietlibc/lib/iscntrl.c, mdk-stage1/dietlibc/include/stdint.h,
- mdk-stage1/dietlibc/i386/mmap64.S, mdk-stage1/dietlibc/lib/getservent.c,
- mdk-stage1/dietlibc/lib/atexit.c, mdk-stage1/dietlibc/i386/strcmp.S,
- mdk-stage1/dietlibc/syscalls.c/sigsuspend.c,
- mdk-stage1/dietlibc/include/stdlib.h,
- mdk-stage1/dietlibc/libugly/timezone.c,
- mdk-stage1/dietlibc/libpthread/pthread_cancel.c,
- mdk-stage1/dietlibc/libdl/dlopen.c,
- mdk-stage1/dietlibc/libugly/servent_buf.c,
- mdk-stage1/dietlibc/lib/isgraph.c, mdk-stage1/dietlibc/lib/closedir.c,
- mdk-stage1/dietlibc/libcruft/scan_ulong.c,
- mdk-stage1/dietlibc/include/sys/prctl.h,
- mdk-stage1/dietlibc/lib/alloc.c, mdk-stage1/dietlibc/lib/tcsetpgrp.c,
- mdk-stage1/dietlibc/syscalls.s/sigsuspend.S,
- mdk-stage1/dietlibc/i386/write12.S,
- mdk-stage1/dietlibc/syscalls.c/mount.c,
- mdk-stage1/dietlibc/syscalls.c/setdomainname.c,
- mdk-stage1/dietlibc/libstdio/fwrite.c,
- mdk-stage1/dietlibc/libdl/_dl_relocate.c, mdk-stage1/dietlibc/diet.c,
- mdk-stage1/dietlibc/include/libgen.h,
- mdk-stage1/dietlibc/i386/Makefile.add,
- mdk-stage1/dietlibc/syscalls.s/bdflush.S,
- mdk-stage1/dietlibc/i386/stpcpy.S, mdk-stage1/dietlibc/i386/ltostr.S,
- mdk-stage1/dietlibc/syscalls.c/lchown.c,
- mdk-stage1/dietlibc/libugly/utent.c, mdk-stage1/dietlibc/i386/connect.S,
- mdk-stage1/dietlibc/include/sys/mman.h,
- mdk-stage1/dietlibc/include/fcntl.h,
- mdk-stage1/dietlibc/libdl/_dl_rel.c, mdk-stage1/dietlibc/lib/memchr.c,
- mdk-stage1/dietlibc/lib/isupper.c,
- mdk-stage1/dietlibc/libugly/asprintf.c,
- mdk-stage1/dietlibc/libpthread/thread_key.c,
- mdk-stage1/dietlibc/lib/errlist.c,
- mdk-stage1/dietlibc/librpc/clnt_udp.c, mdk-stage1/dietlibc/i386/atan2.S,
- mdk-stage1/dietlibc/lib/recvmsg.c, mdk-stage1/dietlibc/lib/qsort.c,
- mdk-stage1/dietlibc/lib/sendto.c,
- mdk-stage1/dietlibc/alpha/__testandset.S,
- mdk-stage1/dietlibc/include/endian.h,
- mdk-stage1/dietlibc/libstdio/vscanf.c,
- mdk-stage1/dietlibc/lib/isxdigit.c, mdk-stage1/dietlibc/i386/atanh.S,
- mdk-stage1/dietlibc/syscalls.s/mlock.S,
- mdk-stage1/dietlibc/ppc/syscalls.h,
- mdk-stage1/dietlibc/libstdio/stdin.c,
- mdk-stage1/dietlibc/lib/__ptrace.c,
- mdk-stage1/dietlibc/libstdio/scanf.c,
- mdk-stage1/dietlibc/libdl/dlclose.c,
- mdk-stage1/dietlibc/librpc/svc_raw.c,
- mdk-stage1/dietlibc/include/arpa/nameser.h,
- mdk-stage1/dietlibc/dietuglyweaks.h,
- mdk-stage1/dietlibc/i386/copysign.S, mdk-stage1/dietlibc/i386/memcmp.S,
- mdk-stage1/dietlibc/i386/htons.S, mdk-stage1/dietlibc/lib/open64.c,
- mdk-stage1/dietlibc/include/stdarg-cruft.h,
- mdk-stage1/dietlibc/libugly/hasmntopt.c,
- mdk-stage1/dietlibc/dietdirent.h,
- mdk-stage1/dietlibc/syscalls.c/setsid.c,
- mdk-stage1/dietlibc/libpthread/pthread_testcancel.c,
- mdk-stage1/dietlibc/libshell/realpath.c,
- mdk-stage1/dietlibc/include/sys/file.h, mdk-stage1/dietlibc/lib/ftw.c,
- mdk-stage1/dietlibc/i386/fmod.S, mdk-stage1/dietlibc/lib/tcsetattr.c,
- mdk-stage1/dietlibc/i386/strrchr.S,
- mdk-stage1/dietlibc/libcruft/bzero.c,
- mdk-stage1/dietlibc/i386/recvfrom.S,
- mdk-stage1/dietlibc/libstdio/ftell.c,
- mdk-stage1/dietlibc/libstdio/fgets.c,
- mdk-stage1/dietlibc/include/rpc/netdb.h,
- mdk-stage1/dietlibc/libdl/_dl_load.c,
- mdk-stage1/dietlibc/syscalls.c/getresgid.c,
- mdk-stage1/dietlibc/syscalls.s/sendfile64.S,
- mdk-stage1/dietlibc/lib/sscanf.c, mdk-stage1/dietlibc/lib/creat.c,
- mdk-stage1/dietlibc/syscalls.c/sync.c,
- mdk-stage1/dietlibc/lib/getdomainname.c,
- mdk-stage1/dietlibc/syscalls.c/flock.c,
- mdk-stage1/dietlibc/libugly/iconv.c,
- mdk-stage1/dietlibc/libstdio/fclose.c,
- mdk-stage1/dietlibc/libugly/getprotobyname.c,
- mdk-stage1/dietlibc/libstdio/vprintf.c,
- mdk-stage1/dietlibc/include/sys/sparc-ioctl.h,
- mdk-stage1/dietlibc/libstdio/fdopen.c,
- mdk-stage1/dietlibc/lib/vsnprintf.c,
- mdk-stage1/dietlibc/libugly/dirfd.c,
- mdk-stage1/dietlibc/libpthread/pthread_cond_signal.c,
- mdk-stage1/dietlibc/include/pwd.h, mdk-stage1/dietlibc/i386/atoll.S,
- mdk-stage1/dietlibc/i386/accept.S, mdk-stage1/dietlibc/lib/ispunct.c,
- mdk-stage1/dietlibc/syscalls.s/getegid32.S,
- mdk-stage1/dietlibc/sparc/mmap.c,
- mdk-stage1/dietlibc/libpthread/pthread_attr_setschedparam.c,
- mdk-stage1/dietlibc/lib/snprintf.c,
- mdk-stage1/dietlibc/include/sys/fsuid.h,
- mdk-stage1/dietlibc/syscalls.s/ftruncate64.S,
- mdk-stage1/dietlibc/i386/getsockopt.S,
- mdk-stage1/dietlibc/syscalls.c/fchdir.c,
- mdk-stage1/dietlibc/i386/unified.S,
- mdk-stage1/dietlibc/libpthread/pthread_sigmask.c,
- mdk-stage1/dietlibc/libcruft/gethostbyaddr2_r.c,
- mdk-stage1/dietlibc/syscalls.c/signal.c,
- mdk-stage1/dietlibc/syscalls.c/munmap.c,
- mdk-stage1/dietlibc/lib/llabs.c, mdk-stage1/dietlibc/lib/msgrcv.c,
- mdk-stage1/dietlibc/i386/memccpy.S,
- mdk-stage1/dietlibc/libugly/getservbyname.c,
- mdk-stage1/dietlibc/include/write12.h, mdk-stage1/dietlibc/dietstdio.h,
- mdk-stage1/dietlibc/alpha/start.S, mdk-stage1/dietlibc/i386/bind.S,
- mdk-stage1/dietlibc/libpthread/pthread_key.c, mdk-stage1/dietlibc/BUGS,
- mdk-stage1/dietlibc/syscalls.c/chown.c,
- mdk-stage1/dietlibc/libcruft/setlocale.c,
- mdk-stage1/dietlibc/librpc/xdr_array.c,
- mdk-stage1/dietlibc/libcruft/__parse_1.c,
- mdk-stage1/dietlibc/lib/__isnan.c,
- mdk-stage1/dietlibc/include/sys/ptrace.h,
- mdk-stage1/dietlibc/syscalls.s/setfsuid.S,
- mdk-stage1/dietlibc/lib/tcflow.c,
- mdk-stage1/dietlibc/syscalls.s/geteuid32.S,
- mdk-stage1/dietlibc/lib/puts.c, mdk-stage1/dietlibc/CHANGES,
- mdk-stage1/dietlibc/lib/mkfifo.c,
- mdk-stage1/dietlibc/syscalls.c/utime.c,
- mdk-stage1/dietlibc/lib/memccmp.c,
- mdk-stage1/dietlibc/alpha/socketpair.S,
- mdk-stage1/dietlibc/libcruft/scandir.c,
- mdk-stage1/dietlibc/syscalls.s/getuid32.S,
- mdk-stage1/dietlibc/lib/tolower.c,
- mdk-stage1/dietlibc/include/sys/resource.h,
- mdk-stage1/dietlibc/syscalls.c/access.c,
- mdk-stage1/dietlibc/libcruft/getusershell.c,
- mdk-stage1/dietlibc/i386/floor.S,
- mdk-stage1/dietlibc/syscalls.s/alarm.S, mdk-stage1/dietlibc/lib/send.c,
- mdk-stage1/dietlibc/sparc/sigaction.c, mdk-stage1/dietlibc/lib/execvp.c,
- mdk-stage1/dietlibc/libpthread/pthread_join.c,
- mdk-stage1/dietlibc/alpha/__longjmp.S,
- mdk-stage1/dietlibc/libcruft/entlib.c,
- mdk-stage1/dietlibc/libcruft/tmpnam.c,
- mdk-stage1/dietlibc/syscalls.c/getppid.c,
- mdk-stage1/dietlibc/libdl/_dl_alloc.c,
- mdk-stage1/dietlibc/lib/setlinebuf.c,
- mdk-stage1/dietlibc/libstdio/fopen.c,
- mdk-stage1/dietlibc/librpc/get_myaddress.c,
- mdk-stage1/dietlibc/lib/bcd.c, mdk-stage1/dietlibc/include/signal.h,
- mdk-stage1/dietlibc/syscalls.c/fcntl.c,
- mdk-stage1/dietlibc/libugly/mktime.c,
- mdk-stage1/dietlibc/syscalls.s/fchown32.S,
- mdk-stage1/dietlibc/libcruft/getopt_long_only.c,
- mdk-stage1/dietlibc/syscalls.s/munlock.S,
- mdk-stage1/dietlibc/libcruft/getgrent.c,
- mdk-stage1/dietlibc/syscalls.c/poll.c,
- mdk-stage1/dietlibc/sparc/__longjmp.S,
- mdk-stage1/dietlibc/librpc/rpc_callmsg.c,
- mdk-stage1/dietlibc/include/pthread.h,
- mdk-stage1/dietlibc/libpthread/pthread_key_delete.c,
- mdk-stage1/dietlibc/include/sys/socket.h,
- mdk-stage1/dietlibc/libpthread/pthread_mutexattr_setkind_np.c,
- mdk-stage1/dietlibc/ppc/clone.S, mdk-stage1/dietlibc/i386/clone.S,
- mdk-stage1/dietlibc/libcruft/pwbuf.c,
- mdk-stage1/dietlibc/syscalls.c/getrlimit.c,
- mdk-stage1/dietlibc/i386/getpeername.S,
- mdk-stage1/dietlibc/syscalls.c/setresuid.c,
- mdk-stage1/dietlibc/syscalls.c/clone.c,
- mdk-stage1/dietlibc/i386/mcount.S, mdk-stage1/dietlibc/lib/__dtostr.c,
- mdk-stage1/dietlibc/syscalls.s/nice.S,
- mdk-stage1/dietlibc/libcruft/grent.c, mdk-stage1/dietlibc/i386/ceil.S,
- mdk-stage1/dietlibc/syscalls.c/vhangup.c,
- mdk-stage1/dietlibc/include/sys/cdefs.h,
- mdk-stage1/dietlibc/libpthread/pthread_sys_fdatasync.c,
- mdk-stage1/dietlibc/syscalls.c/getuid.c,
- mdk-stage1/dietlibc/syscalls.s/getdents64.S,
- mdk-stage1/dietlibc/librpc/svc_run.c,
- mdk-stage1/dietlibc/libpthread/pthread_fgetc.c,
- mdk-stage1/dietlibc/lib/adjtime.c,
- mdk-stage1/dietlibc/syscalls.c/truncate.c,
- mdk-stage1/dietlibc/include/net/if_ether.h,
- mdk-stage1/dietlibc/lib/isblank.c, mdk-stage1/dietlibc/lib/strtof.c,
- mdk-stage1/dietlibc/syscalls.s/time.S,
- mdk-stage1/dietlibc/libugly/gmtime_r.c,
- mdk-stage1/dietlibc/include/sys/shm.h,
- mdk-stage1/dietlibc/include/sys/kd.h,
- mdk-stage1/dietlibc/lib/errlistu.c, mdk-stage1/dietlibc/i386/expm1.S,
- mdk-stage1/dietlibc/lib/nop.c, mdk-stage1/dietlibc/syscalls.c/rename.c,
- mdk-stage1/dietlibc/libstdio/vfscanf.c,
- mdk-stage1/dietlibc/libpthread/pthread_cond_timedwait.c,
- mdk-stage1/dietlibc/librpc/bindresvport.c,
- mdk-stage1/dietlibc/i386/cos.S, mdk-stage1/dietlibc/libstdio/fdglue.c,
- mdk-stage1/dietlibc/libcruft/gethostbyname_r.c,
- mdk-stage1/dietlibc/lib/lseek64.c,
- mdk-stage1/dietlibc/libdl/_dl_search.c,
- mdk-stage1/dietlibc/syscalls.c/mknod.c, mdk-stage1/dietlibc/i386/fabs.S,
- mdk-stage1/dietlibc/lib/ttyname.c,
- mdk-stage1/dietlibc/syscalls.s/signal.S,
- mdk-stage1/dietlibc/syscalls.s/create_module.S,
- mdk-stage1/dietlibc/alpha/syscalls.h, mdk-stage1/dietlibc/i386/htonl.S,
- mdk-stage1/dietlibc/libcruft/getspnam.c,
- mdk-stage1/dietlibc/lib/strncat.c, mdk-stage1/dietlibc/i386/log10.S,
- mdk-stage1/dietlibc/libugly/strsignal.c,
- mdk-stage1/dietlibc/librpc/clnt_tcp.c, mdk-stage1/dietlibc/i386/pow.S,
- mdk-stage1/dietlibc/libcruft/initgroups.c,
- mdk-stage1/dietlibc/lib/sendmsg.c, mdk-stage1/dietlibc/lib/write12.c,
- mdk-stage1/dietlibc/lib/cfsetospeed.c,
- mdk-stage1/dietlibc/include/sys/stat.h,
- mdk-stage1/dietlibc/libcruft/gethostbyaddr.c,
- mdk-stage1/dietlibc/lib/__stime.c, mdk-stage1/dietlibc/i386/poly.S,
- mdk-stage1/dietlibc/librpc/svc_udp.c,
- mdk-stage1/dietlibc/libugly/netent.c,
- mdk-stage1/dietlibc/libcruft/gethostbyaddr_r.c,
- mdk-stage1/dietlibc/syscalls.c/setpgid.c,
- mdk-stage1/dietlibc/libugly/localtime_r.c,
- mdk-stage1/dietlibc/libcruft/localeconv.c,
- mdk-stage1/dietlibc/alpha/n_sigprocmask.S,
- mdk-stage1/dietlibc/syscalls.c/gettimeofday.c,
- mdk-stage1/dietlibc/libshell/fnmatch.c,
- mdk-stage1/dietlibc/syscalls.c/mkdir.c,
- mdk-stage1/dietlibc/syscalls.s/setresgid.S,
- mdk-stage1/dietlibc/libstdio/feof.c,
- mdk-stage1/dietlibc/libcruft/seteuid.c,
- mdk-stage1/dietlibc/libstdio/puts.c,
- mdk-stage1/dietlibc/syscalls.c/sigpending.c,
- mdk-stage1/dietlibc/include/netdb.h, mdk-stage1/dietlibc/i386/memset.S,
- mdk-stage1/dietlibc/syscalls.s/delete_module.S,
- mdk-stage1/dietlibc/lib/semop.c, mdk-stage1/dietlibc/include/dirent.h,
- mdk-stage1/dietlibc/syscalls.c/getpid.c,
- mdk-stage1/dietlibc/libpthread/thread_internal.h,
- mdk-stage1/dietlibc/libugly/ftime.c,
- mdk-stage1/dietlibc/include/libintl.h, mdk-stage1/dietlibc/lib/rand_r.c,
- mdk-stage1/dietlibc/libcruft/setegid.c,
- mdk-stage1/dietlibc/syscalls.c/dup.c,
- mdk-stage1/dietlibc/syscalls.c/fsync.c,
- mdk-stage1/dietlibc/include/shadow.h,
- mdk-stage1/dietlibc/include/sys/select.h, mdk-stage1/dietlibc/PORTING,
- mdk-stage1/dietlibc/i386/ilogb.S, mdk-stage1/dietlibc/lib/strsep.c,
- mdk-stage1/dietlibc/lib/opendir.c,
- mdk-stage1/dietlibc/libpthread/pthread_equal.c,
- mdk-stage1/dietlibc/libugly/system.c,
- mdk-stage1/dietlibc/libpthread/pthread_getschedparam.c,
- mdk-stage1/dietlibc/libcrypt/md5.c, mdk-stage1/dietlibc/i386/cbrt.S,
- mdk-stage1/dietlibc/syscalls.s/ptrace.S,
- mdk-stage1/dietlibc/libcruft/spent.c, mdk-stage1/dietlibc/i386/start.S,
- mdk-stage1/dietlibc/syscalls.s/pivot_root.S,
- mdk-stage1/dietlibc/include/rpc/auth_unix.h,
- mdk-stage1/dietlibc/libdl/elf_hash.h,
- mdk-stage1/dietlibc/include/dlfcn.h,
- mdk-stage1/dietlibc/syscalls.c/nanosleep.c,
- mdk-stage1/dietlibc/lib/usleep.c, mdk-stage1/dietlibc/include/md5.h,
- mdk-stage1/dietlibc/lib/strchr.c, mdk-stage1/dietlibc/lib/msgsnd.c,
- mdk-stage1/dietlibc/include/cpio.h,
- mdk-stage1/dietlibc/syscalls.s/chown32.S,
- mdk-stage1/dietlibc/ppc/unified.S,
- mdk-stage1/dietlibc/libugly/gai_strerror.c,
- mdk-stage1/dietlibc/syscalls.c/sethostname.c,
- mdk-stage1/dietlibc/syscalls.c/geteuid.c,
- mdk-stage1/dietlibc/syscalls.s/sigprocmask.S,
- mdk-stage1/dietlibc/i386/rint.S, mdk-stage1/dietlibc/libugly/ptsname.c,
- mdk-stage1/dietlibc/lib/ipv6constants.c,
- mdk-stage1/dietlibc/syscalls.s/waitpid.S,
- mdk-stage1/dietlibc/libstdio/fdprintf.c,
- mdk-stage1/dietlibc/lib/sigpending.c,
- mdk-stage1/dietlibc/libpthread/pthread_sys_fcntl.c,
- mdk-stage1/dietlibc/lib/memset.c, mdk-stage1/dietlibc/lib/__fstat64.c,
- mdk-stage1/dietlibc/include/sched.h,
- mdk-stage1/dietlibc/i386/syscalls.h, mdk-stage1/dietlibc/dirstream.h,
- mdk-stage1/dietlibc/i386/socketpair.S, mdk-stage1/dietlibc/CAVEAT,
- mdk-stage1/dietlibc/include/float.h,
- mdk-stage1/dietlibc/libpthread/pthread_attr_setschedpolicy.c,
- mdk-stage1/dietlibc/libstdio/fscanf.c,
- mdk-stage1/dietlibc/syscalls.c/setitimer.c,
- mdk-stage1/dietlibc/libpthread/pthread_sys_alloc.c,
- mdk-stage1/dietlibc/i386/hypot.S,
- mdk-stage1/dietlibc/libpthread/Makefile,
- mdk-stage1/dietlibc/lib/pread.c, mdk-stage1/dietlibc/lib/accept.c,
- mdk-stage1/dietlibc/i386/mmap.c,
- mdk-stage1/dietlibc/syscalls.c/setresgid.c,
- mdk-stage1/dietlibc/sparc/setjmp.S, mdk-stage1/dietlibc/.cvsignore,
- mdk-stage1/dietlibc/librpc/pmap_rmt.c,
- mdk-stage1/dietlibc/libpthread/pthread_attr_setscope.c,
- mdk-stage1/dietlibc/lib/sigtimedwait.c, mdk-stage1/dietlibc/i386/cosh.S,
- mdk-stage1/dietlibc/include/sys/ioctl.h,
- mdk-stage1/dietlibc/syscalls.s/rt_sigpending.S,
- mdk-stage1/dietlibc/lib/__ltostr.c,
- mdk-stage1/dietlibc/include/sys/ppc-ioctl.h,
- mdk-stage1/dietlibc/syscalls.s/ptrace.s,
- mdk-stage1/dietlibc/libpthread/pthread_setcanceltype.c,
- mdk-stage1/dietlibc/lib/exec_lib.c,
- mdk-stage1/dietlibc/libstdio/vfdprintf.c,
- mdk-stage1/dietlibc/lib/strlen.c, mdk-stage1/dietlibc/libregex/rx.c,
- mdk-stage1/dietlibc/liblatin1/latin1-islower.c,
- mdk-stage1/dietlibc/lib/memmem.c, mdk-stage1/dietlibc/include/string.h,
- mdk-stage1/dietlibc/lib/raise.c, mdk-stage1/dietlibc/i386/usleep.S,
- mdk-stage1/dietlibc/include/iconv.h,
- mdk-stage1/dietlibc/libpthread/pthread_setspecific.c,
- mdk-stage1/dietlibc/lib/semget.c,
- mdk-stage1/dietlibc/syscalls.s/setregid32.S,
- mdk-stage1/dietlibc/syscalls.c/swapoff.c,
- mdk-stage1/dietlibc/libpthread/pthread_atfork.c,
- mdk-stage1/dietlibc/libcruft/tempnam.c,
- mdk-stage1/dietlibc/libcruft/inet_aton.c,
- mdk-stage1/dietlibc/lib/sigismember.c, mdk-stage1/dietlibc/librpc/svc.c,
- mdk-stage1/dietlibc/lib/set_errno.c,
- mdk-stage1/dietlibc/syscalls.c/execve.c,
- mdk-stage1/dietlibc/lib/sigemptyset.c,
- mdk-stage1/dietlibc/include/sys/vfs.h, mdk-stage1/dietlibc/SECURITY,
- mdk-stage1/dietlibc/include/sys/timex.h,
- mdk-stage1/dietlibc/libugly/getprotoent.c,
- mdk-stage1/dietlibc/lib/__stat64.c, mdk-stage1/dietlibc/include/elf.h,
- mdk-stage1/dietlibc/lib/strncmp.c, mdk-stage1/dietlibc/include/assert.h,
- mdk-stage1/dietlibc/lib/gethostname.c,
- mdk-stage1/dietlibc/i386/dyn_syscalls.S,
- mdk-stage1/dietlibc/lib/vsscanf.c, mdk-stage1/dietlibc/lib/cfmakeraw.c,
- mdk-stage1/dietlibc/THANKS, mdk-stage1/dietlibc/libcruft/getgrgid_r.c,
- mdk-stage1/dietlibc/lib/connect.c,
- mdk-stage1/dietlibc/libcruft/sysconf.c,
- mdk-stage1/dietlibc/lib/perror.c, mdk-stage1/dietlibc/include/locale.h,
- mdk-stage1/dietlibc/syscalls.c/getresuid.c,
- mdk-stage1/dietlibc/libpthread/pthread_attr_init.c,
- mdk-stage1/dietlibc/syscalls.c/sigaction.c,
- mdk-stage1/dietlibc/include/tar.h, mdk-stage1/dietlibc/lib/execl.c,
- mdk-stage1/dietlibc/include/time.h,
- mdk-stage1/dietlibc/libstdio/setvbuf.c,
- mdk-stage1/dietlibc/lib/tcflush.c, mdk-stage1/dietlibc/lib/strtold.c,
- mdk-stage1/dietlibc/libugly/getprotoent_r.c,
- mdk-stage1/dietlibc/syscalls.s/setfsgid32.S,
- mdk-stage1/dietlibc/syscalls.s/prctl.S,
- mdk-stage1/dietlibc/lib/strncasecmp.c,
- mdk-stage1/dietlibc/syscalls.c/close.c,
- mdk-stage1/dietlibc/libpthread/README,
- mdk-stage1/dietlibc/lib/__lltostr.c, mdk-stage1/dietlibc/lib/vprintf.c,
- mdk-stage1/dietlibc/i386/acos.S,
- mdk-stage1/dietlibc/libpthread/pthread_funlockfile.c,
- mdk-stage1/dietlibc/libcruft/getlogin.c,
- mdk-stage1/dietlibc/libpthread/thread_internal.c,
- mdk-stage1/dietlibc/libpthread/pthread_key_create.c,
- mdk-stage1/dietlibc/libcruft/herror.c,
- mdk-stage1/dietlibc/syscalls.c/dup2.c,
- mdk-stage1/dietlibc/lib/__lstat64.c, mdk-stage1/dietlibc/lib/strtod.c,
- mdk-stage1/dietlibc/lib/strcpy.c, mdk-stage1/dietlibc/libdl/_dl_open.c,
- mdk-stage1/dietlibc/libcruft/bcopy.c,
- mdk-stage1/dietlibc/include/stdio.h,
- mdk-stage1/dietlibc/syscalls.c/chroot.c,
- mdk-stage1/dietlibc/libcruft/__parse_ws.c,
- mdk-stage1/dietlibc/include/fnmatch.h,
- mdk-stage1/dietlibc/alpha/sigprocmask.S,
- mdk-stage1/dietlibc/libcruft/res_mkquery.c,
- mdk-stage1/dietlibc/include/sys/timeb.h,
- mdk-stage1/dietlibc/i386/sendto.S,
- mdk-stage1/dietlibc/libugly/iconv_close.c,
- mdk-stage1/dietlibc/i386/sleep.S,
- mdk-stage1/dietlibc/libugly/time_table_spd.c,
- mdk-stage1/dietlibc/lib/sigdelset.c, mdk-stage1/dietlibc/libdl/dlsym.c,
- mdk-stage1/dietlibc/libstdio/stderr.c,
- mdk-stage1/dietlibc/libdl/dlerror.c,
- mdk-stage1/dietlibc/lib/setsockopt.c,
- mdk-stage1/dietlibc/i386/shutdown.S,
- mdk-stage1/dietlibc/libcruft/mkstemp.c,
- mdk-stage1/dietlibc/libstdio/ungetc.c,
- mdk-stage1/dietlibc/syscalls.c/fork.c,
- mdk-stage1/dietlibc/libpthread/pthread_setcancelstate.c,
- mdk-stage1/dietlibc/i386/sinh.S,
- mdk-stage1/dietlibc/libcruft/inet_ntoa.c,
- mdk-stage1/dietlibc/libugly/tzfile.c,
- mdk-stage1/dietlibc/syscalls.c/getgroups.c,
- mdk-stage1/dietlibc/i386/memchr.S,
- mdk-stage1/dietlibc/libugly/getservent.c, mdk-stage1/dietlibc/diet.1,
- mdk-stage1/dietlibc/include/rpc/xdr.h,
- mdk-stage1/dietlibc/libugly/putpwent.c,
- mdk-stage1/dietlibc/libdl/_dl_rel.h,
- mdk-stage1/dietlibc/libcruft/getspent_r.c,
- mdk-stage1/dietlibc/include/rpc/key_prot.h,
- mdk-stage1/dietlibc/syscalls.c/setgid.c,
- mdk-stage1/dietlibc/lib/vsprintf.c, mdk-stage1/dietlibc/lib/execle.c,
- mdk-stage1/dietlibc/i386/__ten.S, mdk-stage1/dietlibc/include/grp.h,
- mdk-stage1/dietlibc/lib/random.c, mdk-stage1/dietlibc/i386/send.S,
- mdk-stage1/dietlibc/include/sys/s390-ioctl.h,
- mdk-stage1/dietlibc/libcruft/killpg.c,
- mdk-stage1/dietlibc/sparc/start.S,
- mdk-stage1/dietlibc/syscalls.s/setresuid.S,
- mdk-stage1/dietlibc/libcruft/getpwnam.c,
- mdk-stage1/dietlibc/lib/isprint.c, mdk-stage1/dietlibc/i386/recvmsg.S,
- mdk-stage1/dietlibc/syscalls.s/rt_sigqueueinfo.S,
- mdk-stage1/dietlibc/libstdio/fsetpos.c,
- mdk-stage1/dietlibc/i386/md5asm.S, mdk-stage1/dietlibc/i386/isleap.S,
- mdk-stage1/dietlibc/i386/PIC.h,
- mdk-stage1/dietlibc/libpthread/pthread_spinlock.c,
- mdk-stage1/dietlibc/syscalls.c/pipe.c,
- mdk-stage1/dietlibc/syscalls.c/ioctl.c,
- mdk-stage1/dietlibc/syscalls.c/fchown.c,
- mdk-stage1/dietlibc/i386/memcpy.S,
- mdk-stage1/dietlibc/syscalls.s/rt_sigtimedwait.S,
- mdk-stage1/dietlibc/libcruft/__parse.c,
- mdk-stage1/dietlibc/lib/__getcwd.c, mdk-stage1/dietlibc/lib/isdigit.c,
- mdk-stage1/dietlibc/include/sys/un.h,
- mdk-stage1/dietlibc/libpthread/pthread_mutex_lock.c,
- mdk-stage1/dietlibc/syscalls.s/sigaction.S,
- mdk-stage1/dietlibc/libcruft/getspnam_r.c,
- mdk-stage1/dietlibc/lib/semctl.c, mdk-stage1/dietlibc/lib/tcsendbreak.c,
- mdk-stage1/dietlibc/include/rpc/rpc.h,
- mdk-stage1/dietlibc/syscalls.s/getgid32.S,
- mdk-stage1/dietlibc/libpthread/pthread_fdglue2.c,
- mdk-stage1/dietlibc/syscalls.c/waitpid.c,
- mdk-stage1/dietlibc/alpha/unified.S, mdk-stage1/dietlibc/lib/strstr.c,
- mdk-stage1/dietlibc/syscalls.c/socketcall.c,
- mdk-stage1/dietlibc/include/rpc/pmap_rmt.h,
- mdk-stage1/dietlibc/include/sys/io.h, mdk-stage1/dietlibc/findcflags.sh,
- mdk-stage1/dietlibc/libcruft/inet_pton.c,
- mdk-stage1/dietlibc/i386/tanh.S, mdk-stage1/dietlibc/lib/getsockname.c,
- mdk-stage1/dietlibc/libugly/grantpt.c,
- mdk-stage1/dietlibc/i386/strcat.S,
- mdk-stage1/dietlibc/lib/siginterrupt.c,
- mdk-stage1/dietlibc/libcruft/dnscruft3.c,
- mdk-stage1/dietlibc/syscalls.c/link.c,
- mdk-stage1/dietlibc/libugly/difftime.c,
- mdk-stage1/dietlibc/include/utmp.h,
- mdk-stage1/dietlibc/libstdio/ftello.c,
- mdk-stage1/dietlibc/syscalls.c/sigprocmask.c,
- mdk-stage1/dietlibc/lib/rand48.c, mdk-stage1/dietlibc/lib/sleep.c,
- mdk-stage1/dietlibc/i386/__testandset.S,
- mdk-stage1/dietlibc/syscalls.s/setresgid32.S,
- mdk-stage1/dietlibc/libugly/asctime_r.c,
- mdk-stage1/dietlibc/syscalls.s/lchown32.S,
- mdk-stage1/dietlibc/libcruft/entlib.h,
- mdk-stage1/dietlibc/lib/sprintf.c,
- mdk-stage1/dietlibc/libcruft/dnscruft.c,
- mdk-stage1/dietlibc/syscalls.c/setgroups.c,
- mdk-stage1/dietlibc/libugly/getservbyname_r.c,
- mdk-stage1/dietlibc/syscalls.s/sigpending.S,
- mdk-stage1/dietlibc/lib/tcdrain.c, mdk-stage1/dietlibc/libcruft/clock.c,
- mdk-stage1/dietlibc/include/netinet/in.h,
- mdk-stage1/dietlibc/syscalls.s/settimeofday.S,
- mdk-stage1/dietlibc/syscalls.s/sendfile.S,
- mdk-stage1/dietlibc/i386/socket.S,
- mdk-stage1/dietlibc/libugly/protoent_buf.c,
- mdk-stage1/dietlibc/include/sys/time.h,
- mdk-stage1/dietlibc/lib/errno_location.c,
- mdk-stage1/dietlibc/include/sys/msg.h,
- mdk-stage1/dietlibc/liblatin1/latin1-isprint.c,
- mdk-stage1/dietlibc/libstdio/fgetpos.c,
- mdk-stage1/dietlibc/libshell/glob.c,
- mdk-stage1/dietlibc/libugly/getprotobynumber_r.c,
- mdk-stage1/dietlibc/sparc/strlen.S,
- mdk-stage1/dietlibc/include/rpc/svc.h,
- mdk-stage1/dietlibc/include/netinet/ip.h,
- mdk-stage1/dietlibc/include/sys/gmon.h,
- mdk-stage1/dietlibc/syscalls.c/wait4.c,
- mdk-stage1/dietlibc/libpthread/pthread_cond_broadcast.c,
- mdk-stage1/dietlibc/i386/acosh.S, mdk-stage1/dietlibc/lib/sigprocmask.c,
- mdk-stage1/dietlibc/lib/_brk.c,
- mdk-stage1/dietlibc/syscalls.c/getegid.c,
- mdk-stage1/dietlibc/syscalls.c/uname.c,
- mdk-stage1/dietlibc/syscalls.s/mmap2.S,
- mdk-stage1/dietlibc/libcruft/getpagesize.c,
- mdk-stage1/dietlibc/sparc/unified.S,
- mdk-stage1/dietlibc/libcruft/dn_expand.c,
- mdk-stage1/dietlibc/i386/sqrt.S, mdk-stage1/dietlibc/lib/binshstr.c,
- mdk-stage1/dietlibc/syscalls.s/exit.S, mdk-stage1/dietlibc/lib/execlp.c,
- mdk-stage1/dietlibc/libstdio/fread.c,
- mdk-stage1/dietlibc/include/netinet/udp.h, mdk-stage1/dietlibc/start.h,
- mdk-stage1/dietlibc/lib/sys_siglist.c,
- mdk-stage1/dietlibc/i386/strlen.S,
- mdk-stage1/dietlibc/syscalls.c/ftruncate.c,
- mdk-stage1/dietlibc/librpc/xdr.c, mdk-stage1/dietlibc/lib/__xmknod.c,
- mdk-stage1/dietlibc/syscalls.s/pwrite.S,
- mdk-stage1/dietlibc/libcruft/getgrnam.c,
- mdk-stage1/dietlibc/lib/strtok.c,
- mdk-stage1/dietlibc/syscalls.s/setreuid32.S,
- mdk-stage1/dietlibc/lib/recv.c, mdk-stage1/dietlibc/lib/reboot.c,
- mdk-stage1/dietlibc/syscalls.c/write.c,
- mdk-stage1/dietlibc/libugly/getprotobyname_r.c,
- mdk-stage1/dietlibc/syscalls.s/errlist.S,
- mdk-stage1/dietlibc/librpc/svc_auth_unix.c,
- mdk-stage1/dietlibc/libshell/dirname.c,
- mdk-stage1/dietlibc/libcruft/res_search.c,
- mdk-stage1/dietlibc/i386/getenv.S, mdk-stage1/dietlibc/i386/exp10.S,
- mdk-stage1/dietlibc/include/errno.h,
- mdk-stage1/dietlibc/libdl/_dl_queue.c,
- mdk-stage1/dietlibc/include/sys/uio.h,
- mdk-stage1/dietlibc/lib/socketpair.c,
- mdk-stage1/dietlibc/librpc/pmap_getport.c,
- mdk-stage1/dietlibc/dyn_start.c, mdk-stage1/dietlibc/i386/ldexp.S,
- mdk-stage1/dietlibc/dietlibm.h, mdk-stage1/dietlibc/libstdio/printf.c,
- mdk-stage1/dietlibc/libstdio/ftello64.c,
- mdk-stage1/dietlibc/libpthread/pthread_fputc.c,
- mdk-stage1/dietlibc/syscalls.c/exit.c,
- mdk-stage1/dietlibc/include/sys/times.h,
- mdk-stage1/dietlibc/include/unistd.h, mdk-stage1/dietlibc/lib/isascii.c,
- mdk-stage1/dietlibc/syscalls.c/chdir.c,
- mdk-stage1/dietlibc/libugly/daemon.c,
- mdk-stage1/dietlibc/lib/sigaddset.c,
- mdk-stage1/dietlibc/syscalls.c/reboot.c,
- mdk-stage1/dietlibc/lib/sigjmp.c, mdk-stage1/dietlibc/i386/strchr.S,
- mdk-stage1/dietlibc/syscalls.c/getdents.c,
- mdk-stage1/dietlibc/libstdio/fdglue2.c,
- mdk-stage1/dietlibc/i386/strcpy.S, mdk-stage1/dietlibc/lib/getopt.c,
- mdk-stage1/dietlibc/libcruft/getgrent_r.c,
- mdk-stage1/dietlibc/librpc/xdr_reference.c,
- mdk-stage1/dietlibc/include/netinet/tcp.h,
- mdk-stage1/dietlibc/lib/pwrite64.c,
- mdk-stage1/dietlibc/syscalls.c/kill.c,
- mdk-stage1/dietlibc/i386/__longjmp.S, mdk-stage1/dietlibc/TODO,
- mdk-stage1/dietlibc/include/sys/syslog.h,
- mdk-stage1/dietlibc/libcruft/res_query.c,
- mdk-stage1/dietlibc/lib/bind.c,
- mdk-stage1/dietlibc/lib/if_indextoname.c,
- mdk-stage1/dietlibc/syscalls.c/readlink.c,
- mdk-stage1/dietlibc/libcrypt/crypt.c,
- mdk-stage1/dietlibc/libugly/unlockpt.c,
- mdk-stage1/dietlibc/libstdio/fflush.c,
- mdk-stage1/dietlibc/libdl/Makefile,
- mdk-stage1/dietlibc/include/rpc/pmap_prot.h,
- mdk-stage1/dietlibc/libugly/popen.c,
- mdk-stage1/dietlibc/libstdio/fputc_unlocked.c,
- mdk-stage1/dietlibc/libpthread/pthread_mutex_trylock.c,
- mdk-stage1/dietlibc/syscalls.c/swapon.c,
- mdk-stage1/dietlibc/lib/alarm.c, mdk-stage1/dietlibc/ppc/mmap.c,
- mdk-stage1/dietlibc/librpc/svc_simple.c,
- mdk-stage1/dietlibc/libcruft/sysconf_cpus.c,
- mdk-stage1/dietlibc/include/sys/poll.h,
- mdk-stage1/dietlibc/libugly/freeaddrinfo.c,
- mdk-stage1/dietlibc/libcruft/getpwuid_r.c,
- mdk-stage1/dietlibc/syscalls.c/_llseek.c,
- mdk-stage1/dietlibc/lib/lockf.c,
- mdk-stage1/dietlibc/librpc/getrpcport.c,
- mdk-stage1/dietlibc/lib/htons.c, mdk-stage1/dietlibc/librpc/auth_none.c,
- mdk-stage1/dietlibc/syscalls.c/getpgid.c,
- mdk-stage1/dietlibc/libcruft/hstrerror.c,
- mdk-stage1/dietlibc/lib/shmdt.c, mdk-stage1/dietlibc/libcruft/grbuf.c,
- mdk-stage1/dietlibc/lib/pread64.c,
- mdk-stage1/dietlibc/libpthread/pthread_attr_setinheritsched.c,
- mdk-stage1/dietlibc/i386/setjmp.S,
- mdk-stage1/dietlibc/syscalls.s/ioperm.S,
- mdk-stage1/dietlibc/lib/getenv.c,
- mdk-stage1/dietlibc/include/features.h,
- mdk-stage1/dietlibc/lib/strtoll.c, mdk-stage1/dietlibc/sparc/syscalls.h,
- mdk-stage1/dietlibc/include/resolv.h, mdk-stage1/dietlibc/lib/bsearch.c,
- mdk-stage1/dietlibc/libstdio/fseeko64.c,
- mdk-stage1/dietlibc/libcruft/pwent.c,
- mdk-stage1/dietlibc/lib/strcasecmp.c,
- mdk-stage1/dietlibc/libcruft/getgrnam_r.c,
- mdk-stage1/dietlibc/syscalls.c/getrusage.c,
- mdk-stage1/dietlibc/libpthread/CHANGES, mdk-stage1/dietlibc/i386/log.S,
- mdk-stage1/dietlibc/lib/sigsuspend.c,
- mdk-stage1/dietlibc/alpha/lseek64.S,
- mdk-stage1/dietlibc/syscalls.c/mprotect.c,
- mdk-stage1/dietlibc/sparc/shmat.c,
- mdk-stage1/dietlibc/syscalls.c/_newselect.c,
- mdk-stage1/dietlibc/i386/strncmp.S,
- mdk-stage1/dietlibc/syscalls.s/setfsuid32.S,
- mdk-stage1/dietlibc/libcruft/getspent.c,
- mdk-stage1/dietlibc/i386/recv.S,
- mdk-stage1/dietlibc/librpc/pmap_getmaps.c,
- mdk-stage1/dietlibc/syscalls.c/setrlimit.c,
- mdk-stage1/dietlibc/ppc/__testandset.S,
- mdk-stage1/dietlibc/threadsafe.sh,
- mdk-stage1/dietlibc/syscalls.s/__pwrite.S,
- mdk-stage1/dietlibc/libugly/setenv.c,
- mdk-stage1/dietlibc/libugly/iconv_open.c,
- mdk-stage1/dietlibc/include/arpa/inet.h,
- mdk-stage1/dietlibc/include/alloca.h, mdk-stage1/dietlibc/lib/memrchr.c,
- mdk-stage1/dietlibc/lib/strtoul.c,
- mdk-stage1/dietlibc/syscalls.s/epoll_wait.S,
- mdk-stage1/dietlibc/syscalls.c/getgid.c,
- mdk-stage1/dietlibc/libcruft/mktemp.c,
- mdk-stage1/dietlibc/libugly/wtent.c,
- mdk-stage1/dietlibc/syscalls.s/rt_sigsuspend.S,
- mdk-stage1/dietlibc/libcruft/__end_parse.c,
- mdk-stage1/dietlibc/syscalls.s/adjtimex.S,
- mdk-stage1/dietlibc/libstdio/fprintf.c,
- mdk-stage1/dietlibc/libdl/README, mdk-stage1/dietlibc/include/regex.h,
- mdk-stage1/dietlibc/libpthread/pthread_cond_wait.c,
- mdk-stage1/dietlibc/i386/exp2.S, mdk-stage1/dietlibc/i386/mmap.S,
- mdk-stage1/dietlibc/libcruft/alphasort.c,
- mdk-stage1/dietlibc/syscalls.c/umask.c,
- mdk-stage1/dietlibc/librpc/clnt_generic.c,
- mdk-stage1/dietlibc/syscalls.s/getgroups32.S,
- mdk-stage1/dietlibc/i386/atol.S, mdk-stage1/dietlibc/lib/memmove.c,
- mdk-stage1/dietlibc/sparc/pipe.S,
- mdk-stage1/dietlibc/include/sys/ucontext.h,
- mdk-stage1/dietlibc/include/daemon.h,
- mdk-stage1/dietlibc/lib/__stat64_cvt.c,
- mdk-stage1/dietlibc/liblatin1/latin1-isgraph.c,
- mdk-stage1/dietlibc/libcruft/inet_ntop.c,
- mdk-stage1/dietlibc/include/getopt.h,
- mdk-stage1/dietlibc/libugly/openpty.c,
- mdk-stage1/dietlibc/include/math.h,
- mdk-stage1/dietlibc/libcruft/dnscruft4.c,
- mdk-stage1/dietlibc/lib/remove.c, mdk-stage1/dietlibc/libugly/isleap.c,
- mdk-stage1/dietlibc/include/sys/mips-ioctl.h,
- mdk-stage1/dietlibc/include/sys/sendfile.h,
- mdk-stage1/dietlibc/syscalls.s/getresgid32.S,
- mdk-stage1/dietlibc/include/netinet/ip_icmp.h,
- mdk-stage1/dietlibc/lib/atoll.c,
- mdk-stage1/dietlibc/syscalls.s/syslog.S,
- mdk-stage1/dietlibc/lib/sigqueueinfo.c,
- mdk-stage1/dietlibc/libcruft/__prepare_parse.c,
- mdk-stage1/dietlibc/lib/getpeername.c,
- mdk-stage1/dietlibc/libcruft/getopt_long.c,
- mdk-stage1/dietlibc/include/sys/ipc.h,
- mdk-stage1/dietlibc/i386/setsockopt.S,
- mdk-stage1/dietlibc/libstdio/fputc.c, mdk-stage1/dietlibc/lib/rand.c,
- mdk-stage1/dietlibc/alpha/sigaction.c,
- mdk-stage1/dietlibc/include/sys/gmon_out.h,
- mdk-stage1/dietlibc/libstdio/vfprintf.c,
- mdk-stage1/dietlibc/alpha/signal.S,
- mdk-stage1/dietlibc/libugly/getservent_r.c,
- mdk-stage1/dietlibc/i386/socketcall.S,
- mdk-stage1/dietlibc/lib/cfsetispeed.c,
- mdk-stage1/dietlibc/alpha/Makefile.add,
- mdk-stage1/dietlibc/include/net/if.h,
- mdk-stage1/dietlibc/lib/recvfrom.c,
- mdk-stage1/dietlibc/libstdio/fgetc.c, mdk-stage1/dietlibc/include/ftw.h,
- mdk-stage1/dietlibc/libcruft/mkdtemp.c,
- mdk-stage1/dietlibc/libcruft/gethostbyname2_r.c,
- mdk-stage1/dietlibc/sparc/clone.S, mdk-stage1/dietlibc/lib/labs.c,
- mdk-stage1/dietlibc/syscalls.c/getcwd.c,
- mdk-stage1/dietlibc/lib/shmat.c, mdk-stage1/dietlibc/librpc/xdr_stdio.c,
- mdk-stage1/dietlibc/syscalls.c/mremap.c,
- mdk-stage1/dietlibc/libshell/basename.c,
- mdk-stage1/dietlibc/lib/memccpy.c,
- mdk-stage1/dietlibc/libugly/getservbyport.c,
- mdk-stage1/dietlibc/lib/strtoull.c,
- mdk-stage1/dietlibc/libcruft/getgrgid.c,
- mdk-stage1/dietlibc/syscalls.c/symlink.c,
- mdk-stage1/dietlibc/librpc/auth_unix.c,
- mdk-stage1/dietlibc/libugly/getaddrinfo.c,
- mdk-stage1/dietlibc/include/termios.h,
- mdk-stage1/dietlibc/include/strings.h,
- mdk-stage1/dietlibc/syscalls.c/open.c, mdk-stage1/dietlibc/dyn_stop.c,
- mdk-stage1/dietlibc/lib/__truncate64.c, mdk-stage1/dietlibc/lib/execv.c,
- mdk-stage1/dietlibc/libdl/elf_hash.c,
- mdk-stage1/dietlibc/include/sys/param.h,
- mdk-stage1/dietlibc/syscalls.c/read.c,
- mdk-stage1/dietlibc/libcrypt/md5crypt.c,
- mdk-stage1/dietlibc/include/sys/hppa-ioctl.h,
- mdk-stage1/dietlibc/syscalls.s/fdatasync.S,
- mdk-stage1/dietlibc/libcruft/spbuf.c,
- mdk-stage1/dietlibc/syscalls.s/n_sigsuspend.S,
- mdk-stage1/dietlibc/syscalls.s/errno.S,
- mdk-stage1/dietlibc/syscalls.s/setfsgid.S,
- mdk-stage1/dietlibc/syscalls.c/setuid.c,
- mdk-stage1/dietlibc/librpc/clnt_raw.c,
- mdk-stage1/dietlibc/libpthread/pthread_attr_setstacksize.c,
- mdk-stage1/dietlibc/libpthread/pthread_mutex_init.c,
- mdk-stage1/dietlibc/librpc/xdr_mem.c,
- mdk-stage1/dietlibc/syscalls.s/n_sigpending.S,
- mdk-stage1/dietlibc/lib/sigaction.c, mdk-stage1/dietlibc/i386/listen.S,
- mdk-stage1/dietlibc/libstdio/stdout.c,
- mdk-stage1/dietlibc/libdl/_dl_main.c,
- mdk-stage1/dietlibc/lib/if_nameindex.c,
- mdk-stage1/dietlibc/syscalls.s/truncate64.S,
- mdk-stage1/dietlibc/include/sys/alpha-ioctl.h,
- mdk-stage1/dietlibc/binshstr.h, mdk-stage1/dietlibc/libcruft/res_init.c,
- mdk-stage1/dietlibc/libpthread/pthread_detach.c,
- mdk-stage1/dietlibc/libpthread/pthread_internal.c,
- mdk-stage1/dietlibc/README, mdk-stage1/dietlibc/libcruft/__parse_nws.c,
- mdk-stage1/dietlibc/lib/readdir64.c, mdk-stage1/dietlibc/i386/tan.S,
- mdk-stage1/dietlibc/syscalls.c/getpriority.c,
- mdk-stage1/dietlibc/libcruft/herrno_location.c,
- mdk-stage1/dietlibc/lib/shmctl.c,
- mdk-stage1/dietlibc/libpthread/pthread_mutex_unlock.c,
- mdk-stage1/dietlibc/librpc/xdr_rec.c,
- mdk-stage1/dietlibc/i386/strncpy.S,
- mdk-stage1/dietlibc/libpthread/pthread_sys_tcdrain.c,
- mdk-stage1/dietlibc/libpthread/pthread_cond_destroy.c,
- mdk-stage1/dietlibc/syscalls.s/setuid32.S,
- mdk-stage1/dietlibc/lib/__v_printf.c,
- mdk-stage1/dietlibc/libugly/gethostent.c,
- mdk-stage1/dietlibc/syscalls.s/epoll_create.S,
- mdk-stage1/dietlibc/include/rpc/rpc_msg.h,
- mdk-stage1/dietlibc/lib/isatty.c,
- mdk-stage1/dietlibc/syscalls.s/msync.S,
- mdk-stage1/dietlibc/include/sys/mtio.h, mdk-stage1/dietlibc/syscalls.h,
- mdk-stage1/dietlibc/lib/memcmp.c, mdk-stage1/dietlibc/lib/toupper.c,
- mdk-stage1/dietlibc/syscalls.s/epoll_ctl.S,
- mdk-stage1/dietlibc/include/sys/sysmacros.h,
- mdk-stage1/dietlibc/include/sys/sysinfo.h,
- mdk-stage1/dietlibc/librpc/clnt_simple.c,
- mdk-stage1/dietlibc/syscalls.s/madvise.S,
- mdk-stage1/dietlibc/libugly/getservbyport_r.c,
- mdk-stage1/dietlibc/lib/vfork.c,
- mdk-stage1/dietlibc/libcruft/getopt_data.c,
- mdk-stage1/dietlibc/libpthread/pthread_sys_open.c,
- mdk-stage1/dietlibc/lib/isalpha.c, mdk-stage1/dietlibc/lib/pwrite.c,
- mdk-stage1/dietlibc/lib/sigfillset.c,
- mdk-stage1/dietlibc/libcruft/getpwent_r.c,
- mdk-stage1/dietlibc/i386/log1p.S, mdk-stage1/dietlibc/lib/listen.c,
- mdk-stage1/dietlibc/lib/strncpy.c, mdk-stage1/dietlibc/include/glob.h,
- mdk-stage1/dietlibc/linuxnet.h, mdk-stage1/dietlibc/lib/__v_scanf.c,
- mdk-stage1/dietlibc/include/sys/epoll.h,
- mdk-stage1/dietlibc/lib/strcmp.c,
- mdk-stage1/dietlibc/libpthread/pthread_mutex_destroy.c,
- mdk-stage1/dietlibc/libdl/_dl_int.h,
- mdk-stage1/dietlibc/include/sys/mount.h,
- mdk-stage1/dietlibc/libstdio/fseeko.c,
- mdk-stage1/dietlibc/libpthread/pthread_sys_waitpid.c,
- mdk-stage1/dietlibc/include/rpc/clnt.h,
- mdk-stage1/dietlibc/lib/socket.c,
- mdk-stage1/dietlibc/libugly/getnameinfo.c,
- mdk-stage1/dietlibc/libpthread/pthread_attr_setdetachstate.c,
- mdk-stage1/dietlibc/include/dietref.h, mdk-stage1/dietlibc/dietstdarg.h,
- mdk-stage1/dietlibc/libugly/strftime.c,
- mdk-stage1/dietlibc/i386/getsockname.S, mdk-stage1/dietlibc/i386/sin.S,
- mdk-stage1/dietlibc/libcruft/getpass.c,
- mdk-stage1/dietlibc/include/pty.h, mdk-stage1/dietlibc/lib/abort.c,
- mdk-stage1/dietlibc/syscalls.s/stime.S,
- mdk-stage1/dietlibc/lib/shutdown.c, mdk-stage1/dietlibc/i386/exp.S,
- mdk-stage1/dietlibc/include/sys/soundcard.h,
- mdk-stage1/dietlibc/include/sys/klog.h,
- mdk-stage1/dietlibc/sparc/fork.S,
- mdk-stage1/dietlibc/libpthread/pthread_setschedparam.c,
- mdk-stage1/dietlibc/i386/sincos.S, mdk-stage1/dietlibc/lib/readdir.c,
- mdk-stage1/dietlibc/lib/sbrk.c, mdk-stage1/dietlibc/syscalls.c/unlink.c,
- mdk-stage1/dietlibc/include/sys/reboot.h,
- mdk-stage1/dietlibc/i386/sqrtl.S, mdk-stage1/dietlibc/syscalls.c/time.c,
- mdk-stage1/dietlibc/lib/vfprintf.c,
- mdk-stage1/dietlibc/syscalls.c/getsid.c,
- mdk-stage1/dietlibc/syscalls.c/chmod.c,
- mdk-stage1/dietlibc/lib/msgctl.c,
- mdk-stage1/dietlibc/syscalls.c/rmdir.c,
- mdk-stage1/dietlibc/syscalls.s/rt_sigaction.S,
- mdk-stage1/dietlibc/i386/strcasecmp.S, mdk-stage1/dietlibc/i386/asinh.S,
- mdk-stage1/dietlibc/lib/cfgetospeed.c,
- mdk-stage1/dietlibc/libcruft/gethostbyname2.c,
- mdk-stage1/dietlibc/libstdio/tmpfile.c,
- mdk-stage1/dietlibc/include/rpc/pmap_clnt.h,
- mdk-stage1/dietlibc/syscalls.s/getresuid.S,
- mdk-stage1/dietlibc/syscalls.s/n_sigprocmask.S, mdk-stage1/dietlibc/FAQ,
- mdk-stage1/dietlibc/i386/ipow.S,
- mdk-stage1/dietlibc/liblatin1/latin1-iscntrl.c,
- mdk-stage1/dietlibc/libpthread/pthread_cond_init.c,
- mdk-stage1/dietlibc/include/limits.h, mdk-stage1/dietlibc/lib/putenv.c,
- mdk-stage1/dietlibc/syscalls.s/init_module.S,
- mdk-stage1/dietlibc/liblatin1/latin1-isupper.c,
- mdk-stage1/dietlibc/syscalls.s/setgid32.S,
- mdk-stage1/dietlibc/lib/__ftruncate64.c,
- mdk-stage1/dietlibc/lib/islower.c, mdk-stage1/dietlibc/i386/atan.S,
- mdk-stage1/dietlibc/include/paths.h, mdk-stage1/dietlibc/i386/__half.S,
- mdk-stage1/dietlibc/include/sys/wait.h,
- mdk-stage1/dietlibc/librpc/pmap_prot2.c,
- mdk-stage1/dietlibc/librpc/pmap_clnt.c,
- mdk-stage1/dietlibc/lib/isalnum.c, mdk-stage1/dietlibc/lib/speed.c,
- mdk-stage1/dietlibc/libstdio/fseek.c, mdk-stage1/dietlibc/lib/memcpy.c,
- mdk-stage1/dietlibc/syscalls.s/rt_sigprocmask.S,
- mdk-stage1/dietlibc/librpc/getrpcent.c,
- mdk-stage1/dietlibc/include/sysexits.h,
- mdk-stage1/dietlibc/syscalls.c/setreuid.c,
- mdk-stage1/dietlibc/lib/signal.c,
- mdk-stage1/dietlibc/include/sys/arm-ioctl.h,
- mdk-stage1/dietlibc/syscalls.s/llseek.S,
- mdk-stage1/dietlibc/syscalls.s/_llseek.S,
- mdk-stage1/dietlibc/syscalls.c/setregid.c,
- mdk-stage1/dietlibc/include/setjmp.h, mdk-stage1/dietlibc/AUTHOR,
- mdk-stage1/dietlibc/include/stddef.h,
- mdk-stage1/dietlibc/libugly/getprotobynumber.c,
- mdk-stage1/dietlibc/libdl/_dl_jump.S,
- mdk-stage1/dietlibc/include/stdarg.h,
- mdk-stage1/dietlibc/lib/getsockopt.c,
- mdk-stage1/dietlibc/syscalls.c/umount.c, mdk-stage1/dietlibc/lib/atol.c,
- mdk-stage1/dietlibc/syscalls.s/__pread.S,
- mdk-stage1/dietlibc/lib/isspace.c, mdk-stage1/dietlibc/lib/abs.c,
- mdk-stage1/dietlibc/lib/tcgetpgrp.c, mdk-stage1/dietlibc/i386/log2.S,
- mdk-stage1/dietlibc/libstdio/fgetc_unlocked.c,
- mdk-stage1/dietlibc/include/net/route.h, mdk-stage1/dietlibc/parselib.h,
- mdk-stage1/dietlibc/dietdns.h,
- mdk-stage1/dietlibc/syscalls.s/n_sigaction.S,
- mdk-stage1/dietlibc/lib/strxfrm.c,
- mdk-stage1/dietlibc/include/rpc/auth.h,
- mdk-stage1/dietlibc/lib/strtol.c, mdk-stage1/dietlibc/ppc/start.S,
- mdk-stage1/dietlibc/libcruft/getpwnam_r.c,
- mdk-stage1/dietlibc/lib/assert_fail.c, mdk-stage1/dietlibc/lib/htonl.c,
- mdk-stage1/dietlibc/include/sys/sem.h,
- mdk-stage1/dietlibc/include/sys/i386-ioctl.h,
- mdk-stage1/dietlibc/lib/if_nametoindex.c,
- mdk-stage1/dietlibc/lib/shmget.c, mdk-stage1/dietlibc/i386/libm2.S,
- mdk-stage1/dietlibc/include/rpc/auth_des.h,
- mdk-stage1/dietlibc/include/inttypes.h, mdk-stage1/dietlibc/lib/atoi.c,
- mdk-stage1/dietlibc/syscalls.c/lseek.c,
- mdk-stage1/dietlibc/libcruft/getpwuid.c,
- mdk-stage1/dietlibc/libugly/logging.c,
- mdk-stage1/dietlibc/librpc/svc_tcp.c,
- mdk-stage1/dietlibc/alpha/setjmp.S,
- mdk-stage1/dietlibc/libpthread/pthread_create.c,
- mdk-stage1/dietlibc/libcruft/dnscruft2.c,
- mdk-stage1/dietlibc/libcruft/getpwent.c,
- mdk-stage1/dietlibc/include/net/if_arp.h,
- mdk-stage1/dietlibc/alpha/clone.S,
- mdk-stage1/dietlibc/syscalls.s/environ.S,
- mdk-stage1/dietlibc/libpthread/pthread_sys_logging.c,
- mdk-stage1/dietlibc/COPYING,
- mdk-stage1/dietlibc/libpthread/pthread_errno.c: Merge in CVS dietlibc
- 0.21 for IA-64 and X86-64 support. However, drop the
- following architectures we currently don't support: arm, mips, mipsel,
- parisc,
- s390, sparc64.
-
- * mdk-stage1/dietlibc/Makefile: dynlinker/ directory is obsolete and dead
- here.
- Fixes for unmerged parts (contrib, examples)
- Merge in CVS dietlibc 0.21 for IA-64 and X86-64 support. However, drop
- the
- following architectures we currently don't support: arm, mips, mipsel,
- parisc,
- s390, sparc64.
-
- * mdk-stage1/newt/form.c: #include <string.h> for memset()
-
- * mdk-stage1/Makefile.common, mdk-stage1/Makefile: Use dietlibc on x86-64
- - Use minilibc on x86-64
- - mar requires bzlib to be built beforehand, especially if building
- with
- dietlibc
- - Nuke trickery to handle -DIET objects, everything is now built
- through
- the diet driver, defined into $(DIET)
-
- * mdk-stage1/dietlibc/include/sys/types.h,
- mdk-stage1/dietlibc/include/rpc/types.h: Define u_char et al. from
- <rpc/types.h>. The __dietlibc_u_char mechanism
- is here to ensure we are not redefining types, if we were to compile
- programs with -D_BSD_SOURCE (u_char et al. are defined in <sys/types.h>
- int that case).
- Merge in CVS dietlibc 0.21 for IA-64 and X86-64 support. However, drop
- the
- following architectures we currently don't support: arm, mips, mipsel,
- parisc,
- s390, sparc64.
-
- * mdk-stage1/dns.c: dietlibc defined __dietlibc__ macro. Also add check
- for __GLIBC__. If none
- of those C library is used, simply abort compilation.
-
-2003/02/18 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_steps_interactive.pm: remove unneeded pablo's change on RTL
-
- * ugtk2.pm: fix titi's perl checko
- internalize prepare_gtk2 in the BEGIN {} of ugtk2 already containing the
- Gtk2->init
-
- * lang.pm: small change thx to pablo
- reposition main and steps window when in RTL language
- allow to specify font size in output of l2pango_font
- destroy and recreate steps window when charset changed because gtk won't
- update the font size otherwise
-
- * install_gtk.pm: reposition main and steps window when in RTL language
- allow to specify font size in output of l2pango_font
- destroy and recreate steps window when charset changed because gtk won't
- update the font size otherwise
-
- * interactive/gtk.pm: internalize prepare_gtk2 in the BEGIN {} of ugtk2
- already containing the Gtk2->init
-
- * install_steps_gtk.pm: allow to specify font size in output of
- l2pango_font
- destroy and recreate steps window when charset changed because gtk won't
- update the font size otherwise
-
-2003/02/18 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * help.pm: fixed small typo
-
- * install_steps_interactive.pm: define language direction
-
- * printer/printerdrake.pm: Removed N( ) around IP numbers, there is no
- point in "translating" them
-
- * steps.pm: changed "Choose your Language" -> "Language"
- shortened some strings to help them fit in the steps window
-
-2003/02/18 Pixel <pixel@mandrakesoft.com>
-
- * partition_table.pm: /proc/partitions includes partition with type
- "empty" and a non-null size
- so add them for comparison
- - ensure someone can't set a mount point on a non formatted ntfs
- partition
- - remove the mount point when destructive resizing and isNonMountable
-
- * diskdrake/interactive.pm: fix ugly bug (the bug was introduced in
- diskdrake/interactive.pm 1.67)
- - ensure someone can't set a mount point on a non formatted ntfs
- partition
- - remove the mount point when destructive resizing and isNonMountable
-
- * interactive/gtk.pm: in {complete} or {canceled}, ensure giving a bad
- entry number to focus doesn't
- break (and log that something wrong happened)
-
- * interactive/newt.pm: simplify
- fix tree in newt (now handles default selected entry, and disallow using
- non-leaves)
-
- * diskdrake/resize_ntfs.pm (resize): do a test resize before doing the
- real one
-
- * any.pm: don't use tmpfs on /tmp if /tmp is a separate partition
- (anyway, all this is ugly, see with titi)
-
- * install2.pm: simplify
-
- * install_steps_interactive.pm (setRootPassword): display "Authentication"
- in Advanced
- display the release even when there is only one system to upgrade
- (asked by flepied & warly)
-
- * ugtk2.pm: the empty label in the HButtonBox had the same size as the
- buttons (since
- HButtonBox are always homogeneous), causing addUser in german not to fit
- on
- the screen. No good way to solve this :-(
-
- * fsedit.pm: /proc/partitions includes partition with type "empty" and a
- non-null size
- so add them for comparison
- better default partitioning
-
- * keyboard.pm: translate grp_toggles at display-time, not compile-time
-
- * Newt/Newt.xs: fix tree in newt (now handles default selected entry, and
- disallow using non-leaves)
-
- * tools/ddcprobe/ddcxinfos.c: catch bad HorizSync or VertRefresh
- (on Regis's monitor, it gives "62-0 Hz VertRefresh")
-
-2003/02/18 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/main.pm, printer/printerdrake.pm:
- - "BrowsePoll" support in the CUPS configuration dialog.
- - Fixes on error message windows in the dialog for printer sharing
- destinations.
-
- * scanner.pm: Replaced "my" by "our" for the declaration of the
- "ScannerDB" variable, so that /usr/bin/scannerdrake has access to it.
-
-2003/02/18 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * scanner.pm: perl_checker fixes
-
- * network/network.pm: perl_checker fix
-
- * drakxtools.spec: 9.1-1mdk
-
- * Xconfig/card.pm: bump version on fredl request
-
- * security/help.pm: resync with msec
-
-2003/02/17 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: fix bug occurring "if no sound card are
- detected AND the user selected things
- needing a sound card, propose a special case for ISA cards"
- (thanks to guran)
-
- * help.pm: some more fixes (thanks to Edward Cherlin and Reinout van
- Schouwen)
-
- * security/level.pm: replace %level_list with level_list() so that
- N("...") is called at runtime
- instead of compile-time
-
- * network/drakfirewall.pm: translate server {name} at display-time, not
- compile-time
-
-2003/02/17 François Pons <fpons@mandrakesoft.com>
-
- * fsedit.pm: given default size of / increased.
- increased /var container for suggestion (simple or with /usr).
-
- * commands.pm: fixed command insmod.
-
- * install_steps_interactive.pm: add a reboot if not enough free space is
- available for installation or upgrade.
-
-2003/02/17 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw: fix translation of title: N() needs to be called
- after
- interactive->vnew has been called
-
- * steps.pm: fix pixel's commit: never display choosePackages and
- configureServices, instead of always
-
- * lang.pm: change %countries so that we really have translated countries
- (side effect of #1723 -> noticing this bug)
- disable mn until we have lang-mn.png
-
- * drakxtools.spec: grüh
-
- * standalone/drakpxe: fix translation of title by calling N() after
- interactive->vnew
-
-2003/02/17 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
- share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sq.po, share/po/nl.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/lv.po,
- share/po/el.po, share/po/cs.po, share/po/bg.po, share/po/hu.po: updated
- Estonian file
- updated pot file
-
- * share/po/help-de.pot, share/po/help-it.pot, share/po/help-fr.pot,
- share/po/help-es.pot: updated Estonian file
-
- * lang.pm: updated @locales list
-
-2003/02/17 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: fix bug occurring "if no sound card are
- detected AND the user selected things
- needing a sound card, propose a special case for ISA cards"
- (thanks to guran)
- ensure $o->{raw_X} is not destroyed when there is no modification done
- (since in that case
- Xconfig::main::configure_everything_or_configure_chooser() returns
- undef)
-
- * any.pm: add a checkbox "Force ACPI"
-
- * ugtk2.pm: fix pop_it...
-
- * steps.pm: don't show "Choose packages to install" nor "Configure
- services"
- (was still there in expert)
-
- * diskdrake/interactive.pm: remove debug code :-(
-
- * security/level.pm: replace %level_list with level_list() so that
- N("...") is called at runtime
- instead of compile-time
-
- * install_steps.pm: propagate /proc/cmdline acpi=xxx
- have acpi=off by default
-
- * rescue/list.x86_64, rescue/list.i386, rescue/list.ia64: replace
- ext2resize with resize2fs in rescue (already done in DrakX)
-
- * network/drakfirewall.pm: translate server {name} at display-time, not
- compile-time
-
- * help.pm: some more fixes (thanks to Edward Cherlin and Reinout van
- Schouwen)
- fix typos (thanks to Reinout van Schouwen)
-
-2003/02/17 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * security/help.pm: synced with msec
-
- * harddrake/data.pm: bump version number
-
-2003/02/17 Pixel <pixel@mandrakesoft.com>
-
- * ugtk2.pm: fix pop_it...
- hopefully final fix for pop_it
-
- * interactive/gtk.pm: also ->hide in when a button is clicked in
- standalone
-
- * any.pm: add a checkbox "Force ACPI"
-
- * install_steps_interactive.pm: ensure $o->{raw_X} is not destroyed when
- there is no modification done
- (since in that case
- Xconfig::main::configure_everything_or_configure_chooser() returns
- undef)
-
- * install2.pm: don't security::various::config_security_user() can fail,
- don't let it bother us
-
- * install_steps.pm: propagate /proc/cmdline acpi=xxx
- have acpi=off by default
-
- * Xconfig/xfree3.pm (is_fbdev): fix typo
-
- * Xconfig/xfree.pm (get_both): fix typo
-
- * Xconfig/resolution_and_depth.pm (to_string): simpler way to handle the
- "default" resolution of frame-buffer
-
-2003/02/17 Till Kamppeter <till@mandrakesoft.com>
-
- * drakxtools.spec: 9.1-0.34mdk
-
- * printer/main.pm:
- - Fixed bug of HP DeskJetb 990C being automatically installed even if
- there is already a queue for it
- - Fixed checking whether a device is known to CUPS
-
-2003/02/17 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/nl.po, share/po/da.po, share/po/ta.po, share/po/sv.po,
- share/po/fi.po: updated Arabic, Dutch, Danish, Finnish, Swedish and
- Tamil files
-
- * standalone/harddrake2: correction for non-latin1 locales,
- made strings "Unknown" and "unknown" translatable in device info
-
- * share/po/ru.po: updated Russian and Arabic files
-
- * share/po/ar.po: updated Russian and Arabic files
- updated Arabic, Dutch, Danish, Finnish, Swedish and Tamil files
-
- * lang.pm: synchrnoization of locale names with what we ship.
- updated list of available kde langs
-
-2003/02/17 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm: add module2description()
-
- * diskdrake/hd_gtk.pm: fix help popping all the time
-
- * ugtk2.pm: hopefully final fix for pop_it
- fix setting pop_it for wizard in standalone
-
- * interactive/gtk.pm: also ->hide in when a button is clicked in
- standalone
-
- * Xconfig/card.pm: use fbdev when the graphic card is unknown
-
- * install_steps_gtk.pm: enhance summary layout
-
- * install_steps_interactive.pm: better sound card description in summary
-
- * install2.pm: don't security::various::config_security_user() can fail,
- don't let it bother us
-
- * Xconfig/monitor.pm: warn when auto conf fail
-
- * Xconfig/xfree.pm (get_both): fix typo
-
- * Xconfig/xfree3.pm (is_fbdev): fix typo
-
- * Xconfig/resolution_and_depth.pm (to_string): simpler way to handle the
- "default" resolution of frame-buffer
-
-2003/02/17 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/main.pm:
- - Fixed bug of HP DeskJetb 990C being automatically installed even if
- there is already a queue for it
- - Fixed checking whether a device is known to CUPS
- - Restructured function "main()"
- - Made automatic queue setup being done during installation
- - Support for unknown printers in auto-detection and in automatic
- queue
- setup
- - Fixed determination of default printer
- - Fixed printer help page display
- - Fixed wait message in /usr/sbin/printerdrake
-
- * printer/detect.pm, printer/data.pm, standalone/printerdrake,
- printer/printerdrake.pm:
- - Restructured function "main()"
- - Made automatic queue setup being done during installation
- - Support for unknown printers in auto-detection and in automatic
- queue
- setup
- - Fixed determination of default printer
- - Fixed printer help page display
- - Fixed wait message in /usr/sbin/printerdrake
-
- * drakxtools.spec: 9.1-0.31mdk
-
-2003/02/17 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * network/netconnect.pm, network/ethernet.pm, standalone/drakconnect: perl
- generate undef indefinitely from the void
-
- * standalone/logdrake: this was just tested before
-
- * scanner.pm:
- - (get_usb_ids_for_port, updateScannerDBfromSane) : simplify
- - perl_checker fixes
-
- * drakxtools.spec: 9.1-0.33mdk
- fix #1718
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
- share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/sp.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/tg.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
- share/po/wa.po, share/po/is.po, share/po/af.po, share/po/az.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/vi.po,
- share/po/ta.po, share/po/fr.po, share/po/sq.po, share/po/nl.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/lv.po, share/po/cs.po, share/po/bg.po,
- share/po/el.po, share/po/hu.po: simplify translator job by propaging
- pixel english typo fix
-
- * ugtk2.pm: in the old days, on cannot disable shrink1, resize2 or shrink2
- since they always were true
-
-2003/02/17 Warly <warly@mandrakesoft.com>
-
- * share/logo-mandrake.png: 9.1 rc1
-
-2003/02/16 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm: summary written in gtk, isn't it nice (?)
-
- * install_steps_interactive.pm: handle "not configured" in summary_prompt
-
-2003/02/16 siegel
-
- * share/po/de.po: updates
-
-2003/02/16 alus
-
- * share/po/pl.po: updated
-
-2003/02/16 fabman
-
- * share/po/es.po: updated
-
-2003/02/16 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * lang.pm: log a bit more
-
- * install_steps_gtk.pm, install_gtk.pm: fix my breakage (broke non-latin1
- installs :/)
-
- * any.pm: clean $o->{locale}{langs}
-
-2003/02/16 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * keyboard.pm, lang.pm: Enabled Arabic keyboard,
- added full list of countries listed in iso 3166,
- changed japanese charset->font for KDE,
- removed charset names no longer used
-
-2003/02/16 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm: summary written in gtk, isn't it nice (?)
- - factorize "Help"-button handling
- - fix interactive_help_get_id (happily, it was no pb :)
-
- * help.pm: fix typo (thanks to Christophe Combelles)
-
- * install_steps_interactive.pm: handle "not configured" in summary_prompt
-
- * services.pm: fix rawdevices description (bug #1677)
-
- * diskdrake/hd_gtk.pm, interactive.pm, Xconfig/resolution_and_depth.pm,
- install_interactive.pm:
- - factorize "Help"-button handling
- - fix interactive_help_get_id (happily, it was no pb :)
-
-2003/02/15 alus
-
- * share/po/pl.po: mostly updated
- updated partially
- why this file wasn't regenerated?
-
-2003/02/15 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * ugtk2.pm: don't mute the keyboard in ask_browse_tree_info (#1598)
-
- * printer/printerdrake.pm:
- - try to workaround #1581
- - fix the most code style-independant perl checker things
-
-2003/02/15 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/et.po: updated Estonian, Norwegian and Vietnamese files
- updated po files
-
- * share/po/vi.po: updated Estonian, Norwegian and Vietnamese files
- updated pot files
- updated po files
-
- * share/po/id.po, share/po/gl.po, share/po/ja.po, share/po/hr.po,
- share/po/mt.po, share/po/ga.po, share/po/ko.po, share/po/lt.po,
- share/po/he.po, share/po/is.po, share/po/it.po, share/po/lv.po,
- share/po/hu.po: updated pot files
-
- * share/po/ar.po: updated remaining po files
- updated po files
-
- * share/po/pt_BR.po, share/po/br.po, share/po/be.po, share/po/uk.po,
- share/po/fi.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/tg.po, share/po/bs.po, share/po/uz.po, share/po/wa.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/fr.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po: updated po files
-
- * share/po/sk.po, share/po/ru.po, share/po/th.po, share/po/sl.po,
- share/po/tr.po, share/po/sv.po, share/po/sr.po, share/po/sp.po,
- share/po/ro.po, share/po/ta.po, share/po/sq.po, share/po/nl.po: updated
- remaining po files
-
- * share/po/no.po: updated Estonian, Norwegian and Vietnamese files
- updated remaining po files
-
-2003/02/15 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm: fix gc's typo
-
-2003/02/15 Till Kamppeter <till@mandrakesoft.com>
-
- * standalone/scannerdrake: Fixed bug in setting up multiple scanners at
- once.
-
-2003/02/14 Till Kamppeter <till@mandrakesoft.com>
-
- * scanner.pm, standalone/scannerdrake: Improved manual scanner
- configuration, bug fixes.
-
- * standalone.pm: Updated "Usage:" message for Scannerdrake.
-
-2003/02/14 alus
-
- * share/po/pl.po: fixed
-
-2003/02/14 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * drakxtools.spec: 0.30mdk
-
- * standalone/drakperm: o Gtk2
- o 'add a rule' works again
- o 'edit rule' too
- o get_rights get all rights, not just a few
- o little cleanup (more to come)
-
-2003/02/14 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * ugtk2.pm: okcehc lrep (hebrew feeling)
- wizard: free memory
- add a frame to the wizard's outline
- honour 9.1 theme title of windows: no icon, text to the left
-
- * share/themes-galaxy.rc: adapt theme: grey for selection's background, no
- inverse video on the selected text
-
- * pixmaps/services.png, pixmaps/X.png, pixmaps/bootloader.png,
- pixmaps/language.png, pixmaps/summary.png, pixmaps/security.png,
- pixmaps/partition.png, pixmaps/keyboard.png, pixmaps/mouse.png,
- pixmaps/rootpasswd.png, steps.pm, pixmaps/bootdisk.png,
- pixmaps/harddrive.png, install2.pm, pixmaps/user.png, pixmaps/exit.png,
- pixmaps/network.png: honour 9.1 theme title of windows: no icon, text to
- the left
-
- * install_gtk.pm: cleanup
- fix default_theme always responding 'galaxy'
- - update steps window to 9.1 theme (blue/white bullets)
- - don't destroy steps window between each step => better looking
-
- * install_steps_gtk.pm, pixmaps/steps_off.png, pixmaps/steps_on.png:
- - update steps window to 9.1 theme (blue/white bullets)
- - don't destroy steps window between each step => better looking
-
- * install_any.pm: install the locales-xx package for the selected country
-
- * share/po/fr.po: fix misc
-
-2003/02/14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/no.po, share/po/DrakX.pot: updated pot file
-
-2003/02/14 Pixel <pixel@mandrakesoft.com>
-
- * standalone/draksec: cleanup security::level, hopefully the **** draksec
- still works
-
- * security/level.pm: cleanup security::level, hopefully the **** draksec
- still works
- fix errors (due to previous commit)
- create security::level::to_string()
-
- * install_steps.pm: remove unneeded msec related actions (those are done
- in msec)
- simpler way to detect broken alternatives. It works for symlinks to
- symlinks,
- eg: rvi -> /bin/vi -> /etc/alternatives/vi -> /bin/vim-minimal
- use $::prefix
-
- * install_steps_interactive.pm: add "Security level" in summary
- - re-indent summary entries
- - add group for summary entries
- (acceptLicense): do translate "Accept" and "Refuse"
- - add "Services" and "Firewall" in summary
- - rework a little summary & summary_prompt
- use $::prefix
- change order of entries in summary
-
- * install_steps_gtk.pm: toggle Details / No details (as suggested by Prabu
- Anand)
-
- * interactive.pm: in ask_browse_tree_info, have Next instead of Ok,
- Previous instead of Cancel when isWizard
-
- * install_any.pm, install2.pm: create install_any::set_security() and use
- it
-
- * network/drakfirewall.pm: install package shorewall only when the user
- wants a firewall
-
- * services.pm: use $::prefix
-
- * Makefile: themes/* is gone, no need to copy those files
-
-2003/02/14 Till Kamppeter <till@mandrakesoft.com>
-
- * scanner.pm, standalone/scannerdrake: Improved manual scanner
- configuration, bug fixes.
-
- * standalone.pm: Updated "Usage:" message for Scannerdrake.
-
-2003/02/13 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/network.c: when detected too little memory in ftp/http,
- inform user that he/she may try an nfs install
-
-2003/02/13 alus
-
- * share/po/pl.po: updated
-
-2003/02/13 fabman
-
- * share/po/es.po: updated Spanish translation
-
-2003/02/13 Frederic Lepied <flepied@mandrakesoft.com>
-
- * share/rpmsrate: added tmdns zcip mandrake-galaxy galaxy-gnome
-
-2003/02/13 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/themes.rc, share/themes-mdk.rc, share/themes-galaxy.rc,
- share/list, share/themes-mdk-Desktop.rc, install_gtk.pm,
- share/themes-marble3d.rc, share/install.rc, install_steps_gtk.pm:
- - use nice new gnome theme by ln and fcrozat
- - remove old no more used themes
- - for doc team, provide an option so that we'll
- override some colors of the default theme
- (for B&W printing screeshots)
-
- * pixmaps/langs/lang-zh_CN.png, pixmaps/langs/lang-sl.png,
- pixmaps/langs/lang-hy.png, pixmaps/langs/lang-de.png,
- pixmaps/langs/lang-cy.png, pixmaps/langs/lang-it.png,
- pixmaps/langs/lang-eu.png, pixmaps/langs/lang-ca.png,
- pixmaps/langs/lang-sp.png, pixmaps/langs/lang-am.png,
- pixmaps/langs/lang-nb.png, pixmaps/langs/lang-gd.png,
- pixmaps/langs/lang-el.png, pixmaps/langs/lang-ia.png,
- pixmaps/langs/lang-pt_BR.png, pixmaps/langs/lang-sv.png,
- pixmaps/langs/lang-mi.png, pixmaps/langs/lang-bg.png,
- pixmaps/langs/lang-fo.png, pixmaps/langs/lang-kw.png,
- pixmaps/langs/lang-hu.png, pixmaps/langs/lang-ur.png,
- pixmaps/langs/lang-iu.png, pixmaps/langs/lang-az.png,
- pixmaps/langs/lang-mt.png, pixmaps/langs/lang-et.png,
- pixmaps/langs/lang-wa.png, pixmaps/langs/lang-sq.png,
- pixmaps/langs/lang-he.png, pixmaps/langs/lang-eo.png,
- pixmaps/langs/lang-ta.png, pixmaps/langs/lang-ga.png,
- pixmaps/langs/lang-sr.png, pixmaps/langs/lang-lt.png,
- pixmaps/langs/lang-fa.png, pixmaps/langs/lang-oc.png,
- pixmaps/langs/lang-ms.png, pixmaps/langs/lang-mk.png,
- pixmaps/langs/lang-ar.png, pixmaps/langs/lang-lv.png,
- pixmaps/langs/lang-zh_TW.png, pixmaps/langs/lang-is.png,
- pixmaps/langs/lang-be.png, pixmaps/langs/lang-fr.png,
- pixmaps/langs/lang-ro.png, pixmaps/langs/lang-hr.png,
- pixmaps/langs/lang-en_GB.png, pixmaps/langs/lang-sk.png,
- pixmaps/langs/lang-uk.png, pixmaps/langs/lang-br.png,
- pixmaps/langs/lang-en_US.png, pixmaps/langs/lang-bs.png,
- pixmaps/langs/lang-nl.png, pixmaps/langs/lang-af.png,
- pixmaps/langs/lang-tr.png, pixmaps/langs/lang-gl.png,
- pixmaps/langs/lang-pt.png, pixmaps/langs/lang-uz.png,
- pixmaps/langs/lang-pl.png, pixmaps/langs/lang-id.png,
- pixmaps/langs/lang-yi.png, pixmaps/langs/lang-fi.png,
- pixmaps/langs/lang-ka.png, pixmaps/langs/lang-ru.png,
- pixmaps/langs/lang-nn.png, pixmaps/langs/lang-gv.png,
- pixmaps/langs/lang-th.png, pixmaps/langs/lang-cs.png,
- pixmaps/langs/lang-ko.png, pixmaps/langs/lang-tg.png,
- pixmaps/langs/lang-tt.png, pixmaps/langs/lang-da.png,
- pixmaps/langs/lang-ja.png, pixmaps/langs/lang-vi.png,
- pixmaps/langs/lang-es.png: invert video the images since the new theme
- will be printing black text on white background
-
- * install2.pm:
- - add option 'theme' to allow specifying a theme
- - add option 'doc' to specify that we should override the default
- theme with values well suited for printing screenshots on a B&W printer
-
- * ugtk2.pm: remove shape of windows
-
- * install_any.pm: die if getAndSaveFile failed, so that it will be easier
- to debug
- if we have this problem..
-
- * install_steps_interactive.pm: don't allow going back from
- accept_licenser to select_language, hence allow removing langs images
- before downloading huge CJK fonts
-
- * mdk-stage1/network.c: when detected too little memory in ftp/http,
- inform user that he/she may try an nfs install
-
- * lang.pm: don't allow going back from accept_licenser to select_language,
- hence allow removing langs images before downloading huge CJK fonts
- gc sux: install_any is not available in drakxtools
-
-2003/02/13 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/no.po: updated Norwegian file
-
- * share/po/nl.po, share/po/et.po, share/po/fi.po: updated Arabic, Dutch,
- Estonian and Finnish files
-
- * share/po/ar.po: updated Arabic, Dutch, Estonian and Finnish files
- updated Arabic file
-
-2003/02/13 Pixel <pixel@mandrakesoft.com>
-
- * share/po/help-de.pot, share/po/help-it.pot, share/po/help-fr.pot,
- share/po/help-es.pot: minor changes (update from xml)
- new help from xml
-
- * network/network.pm, modules/interactive.pm, ugtk2.pm,
- diskdrake/interactive.pm, services.pm, security/level.pm,
- diskdrake/hd_gtk.pm, printer/printerdrake.pm:
- - set_help is deprecated
- - it is replaced by interactive_help_id on each ask_*
- - many set_help do not have any correspondance in help.pm (drakxid-*),
- those are commented for now
-
- * install_steps_gtk.pm:
- - set_help is deprecated
- - it is replaced by interactive_help_id on each ask_*
- - many set_help do not have any correspondance in help.pm (drakxid-*),
- those are commented for now
- - {interactive_help} is a function returning text, it doesn't need to
- do the help window
- - drop global interactive_help during install. Will be done per
- ->ask_*
-
- * share/po/help_xml2pm.pl: no need for "empty" id anymore
- - adapt to new drakx-chapter.xml (esp. handle <variablelist> tags)
- - replace __ with N_
- - add "our" for "%steps"
-
- * interactive.pm: fix ask_warn(), really dont make it pop
- don't force pop_it on ask_warn's
- - set_help is deprecated
- - it is replaced by interactive_help_id on each ask_*
- - many set_help do not have any correspondance in help.pm (drakxid-*),
- those are commented for now
- add ask_yesorno_, ask_okcancel_, ask_warn_, ask_from_listf_raw (to allow
- help)
-
- * network/modem.pm, network/isdn.pm, network/ethernet.pm, network/adsl.pm,
- network/tools.pm:
- - set_help is deprecated
- - it is replaced by interactive_help_id on each ask_*
- - many set_help do not have any correspondance in help.pm (drakxid-*),
- those are commented for now
- add CVS $Id
-
- * help.pm: minor changes (update from xml)
- no need for "empty" id anymore
- fix typo (from xml)
- new help from xml
-
- * interactive/gtk.pm: fix ask_warn(), really dont make it pop
- - set_help is deprecated
- - it is replaced by interactive_help_id on each ask_*
- - many set_help do not have any correspondance in help.pm (drakxid-*),
- those are commented for now
- - {interactive_help} is a function returning text, it doesn't need to
- do the help window
- - drop global interactive_help during install. Will be done per
- ->ask_*
-
- * standalone/fileshareset: cleanup
-
- * Makefile: fix typo
- use PerlIO-gzip
-
- * c/Makefile: at last fix the culprit for the dreaded "relocation error"
- (esp. occured when the glibc changed)
-
- * harddrake/sound.pm:
- - {interactive_help} is a function returning text, it doesn't need to
- do the help window
- - drop global interactive_help during install. Will be done per
- ->ask_*
-
- * Xconfig/card.pm, Xconfig/main.pm, Xconfig/resolution_and_depth.pm,
- Xconfig/monitor.pm: fix and some more Help
-
- * Xconfig/various.pm, install_interactive.pm, any.pm: fix and some more
- Help
- - set_help is deprecated
- - it is replaced by interactive_help_id on each ask_*
- - many set_help do not have any correspondance in help.pm (drakxid-*),
- those are commented for now
-
- * install_steps_interactive.pm:
- - fix calling configureTimezone
- - have country before timezone (gc wants it that way...)
- - set_help is deprecated
- - it is replaced by interactive_help_id on each ask_*
- - many set_help do not have any correspondance in help.pm (drakxid-*),
- those are commented for now
- don't use $_total, use $total_ instead
-
- * standalone/drakboot, commands: make perl_checker happy
-
- * standalone/drakupdate_fstab: help perl_checker
-
- * share/list: use PerlIO-gzip
-
- * network/netconnect.pm:
- - set_help is deprecated
- - it is replaced by interactive_help_id on each ask_*
- - many set_help do not have any correspondance in help.pm (drakxid-*),
- those are commented for now
- add cvs $Id
-
- * install_steps.pm: have supermount back by default (at least when the
- security level < 4)
- - set_help is deprecated
- - it is replaced by interactive_help_id on each ask_*
- - many set_help do not have any correspondance in help.pm (drakxid-*),
- those are commented for now
-
-2003/02/13 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * mouse.pm: Mouse button emulation. Clarify L-Command, add Enter. (Ben
- Reser)
-
-2003/02/13 Till Kamppeter <till@mandrakesoft.com>
-
- * standalone/scannerdrake: Fixed typo.
- Improved handling and structure of scanner database
- - Scanners with multiple ports are supported now
- - Fully automatic build of the scanner database, including lines for
- configuration files
- - Fixed "SnapScan" <-> "snapscan" bug
- - Some HP scanners had no manufacturer field. Fixed.
-
- * scanner.pm, handle_configs.pm: Improved handling and structure of
- scanner database
- - Scanners with multiple ports are supported now
- - Fully automatic build of the scanner database, including lines for
- configuration files
- - Fixed "SnapScan" <-> "snapscan" bug
- - Some HP scanners had no manufacturer field. Fixed.
-
-2003/02/13 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * drakxtools.spec: 9.1-0.29mdk
- 9.1-0.28mdk
-
- * services.pm (start_service_on_boot) prevent copying this style
- (do_not_start_service_on_boot) : simplify it
-
- * scanner.pm: no comment
- fix drakxtools build
-
-2003/02/12 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm: fix fpons sucks (at least one time).
- configure profile in order to avoid standalone networking tools to
- complain
- about unconfigured device.
-
- * standalone/drakpxe: updated to find an interface even when no profile
- are available.
-
- * pkgs.pm: prefer apache for drakpxe to find the right package.
-
-2003/02/12 gbeauchesne
-
- * rescue/list, share/list: rpm files are not set to live in /usr/lib/rpm,
- always.
-
-2003/02/12 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * ugtk2.pm:
- - ensure focus should not be needed anymore
- - support XSetInputFocus hackery
-
- * mdk-stage1/stdio-frontend.c: compile with -W
-
- * lang.pm: clean
- add missing pango rendering modules
- in ramdisk, do download additional fonts if needed (fixes problems with
- CJK languages and namely #1098)
-
- * share/fonts.tar.bz2: CJK fonts can now be pcf.gz, hopefully since they
- will be too large for ramdisks :(
-
- * tools/make_mdkinst_stage2, share/list: add missing pango rendering
- modules
- in ramdisk, do download additional fonts if needed (fixes problems with
- CJK languages and namely #1098)
-
-2003/02/12 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
- share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
- share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: Updated
- pot file
-
-2003/02/12 Pixel <pixel@mandrakesoft.com>
-
- * harddrake/sound.pm: use {interactive_help}
-
- * any.pm, install_steps_gtk.pm, diskdrake/interactive.pm, run_program.pm,
- install_steps_auto_install.pm, install_steps_stdio.pm,
- network/netconnect.pm, modules.pm, raid.pm, install_steps_newt.pm,
- commands.pm, partition_table.pm: perl_checker compliance ("ref" now need
- parentheses in many case)
-
- * interactive.pm, interactive/gtk.pm: allow {interactive_help} per dialog
- boxes instead of global
- perl_checker compliance ("ref" now need parentheses in many case)
-
- * install_steps.pm, install_steps_interactive.pm: rework summary() (esp.
- to allow a gtk frontend)
- perl_checker compliance ("ref" now need parentheses in many case)
-
- * services.pm: cleanup starts_on_boot()
-
- * install2.pm: rework summary() (esp. to allow a gtk frontend)
-
- * ugtk2.pm: don't set pop_it when the window is hidden
- perl_checker compliance ("ref" now need parentheses in many case)
-
-2003/02/12 Till Kamppeter <till@mandrakesoft.com>
-
- * scanner.pm, services.pm, standalone/scannerdrake: Scannerdrake vastly
- improved
- - Use auto-detection methods of SANE
- - Do not ask the user to configure scanners which are already
- configured
- - Handle systems with more than one scanner correctly
- - Added ports of newer scanners (libusb, parallel, ...) to the port
- selector
- in manual setup
- - Main dialog showing all configured scanners
- - Full support for scanner sharing via SANE (server/client)
- - Support for USB scanner access via libusb
-
-2003/02/12 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/drakpxe: fix just stupid fpons sucks
-
- * drakxtools.spec: 9.1-0.27mdk
-
- * standalone/drakconnect:
- - clean up through ugtk2
- - enforce strict mode
- - give meaningful names to widget variables
- - fix embedding in mcc at last, aka going into expert mode does not
- fsck up
- the gui
- - display all configuration buttons (both internet and lan) the same
- way
- - fix doble variable declaration to MDK::Common::Globals
- - fix non obvious "not a CODE reference" errors when embedded
- (fortunately, gc will fix perl-GTK2 if this syntax is still
- authorized)
- - (configure_lan) : fix gtk+-2 port and remove old commented out
- debugging code
-
- * standalone/drakperm: perl_checker fixes
-
- * standalone/draksec: do not enfore default settings
-
-2003/02/11 Frederic Lepied <flepied@mandrakesoft.com>
-
- * Makefile.drakxtools: don't take lang subdir in pixmap
-
-2003/02/11 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_steps_gtk.pm: format-a-la-tex the message telling that the
- system is low on resources
-
- * install_steps.pm: try to fix the $o->{lang} compat
- have compatibility with old $o->{lang} for not breaking existing auto
- install files
-
- * install_any.pm: reflect lang->locale changes in saving auto_inst.cfg
- file
-
- * lang.pm: no need to duplicate LC_MONETARY
- thx perl checko
- have compatibility with old $o->{lang} for not breaking existing auto
- install files
-
- * Makefile.drakxtools: have localedrake in /usr/bin rather than /usr/sbin
- (#1407)
-
- * share/gen_locales.pl: update to changes in lang.pm
-
-2003/02/11 Pixel <pixel@mandrakesoft.com>
-
- * standalone/lsnetdrake:
- - ensure log::l's don't appear on stderr
- - catch authentification errors
-
- * keyboard.pm: for GRP_TOGGLE'd keyboard layouts, have "us,XX" instead of
- simply "XX"
- (to have previous XFree's behaviour)
-
- * fsedit.pm, partition_table.pm: handle 0x7 partition table id specially
- since it can be both hpfs or ntfs.
- so adding 0x107 being really ntfs. hopefully this change won't break too
- much things
- (but things were already broken, since it assigned a mount point with
- type ntfs to
- some hpfs partitions) (fixes bug #1455)
-
- * partition_table/raw.pm: add "OS/2 boot manager" (see bug #1338)
-
- * share/diskdrake.rc:
- - have the "Windows" button blue
- - set xthickness = 1 and ythickness = 1 for buttons
- (so that non-colored buttons have the same feelings with the upcoming
- new
- theme)
-
- * Xconfig/card.pm: don't set AGPMode (see bug #707)
-
-2003/02/11 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * bootlook.pm: stop:
- - copying stude && useless trace around
- - reinventing the wheel: kill parse_etc_passwd() and use list_users()
- instead
-
- * standalone/harddrake2: no frame in standalone mode
-
- * standalone/drakperm: smoother gui
- - further ugtk2 cleanups
- - (row_setting_dialog) : fix implosion
- phase 1 of drakperm clean up through ugtk2
- - gtk2 port of dialogs (poulpy)
- - one callback cleanup (me):
- o enforce strict mode (aka kill jonathanries) and introuce
- a permission data structure.
- o no need to keep global references on widget we pack through
- symbolic references; this is only namespace pollution
-
-2003/02/10 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone/drakbug:
- - help link can be non local (http, www connnections).
-
- * standalone/drakhelp:
- - s/link/path/
- - http connections handled.
-
-2003/02/10 Frederic Lepied <flepied@mandrakesoft.com>
-
- * network/netconnect.pm: reworded network restart string
-
- * network/ethernet.pm: added a text to describe the Zeroconf host name
- field
-
- * network/network.pm: corrected option handling and added hotplug checkbox
-
-2003/02/10 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_steps_interactive.pm: perl checko
-
- * tools/make_mdkinst_stage2: count space needed for the filesystem so that
- we don't end up with 3 mbytes of free space if /tmp was ext3
-
- * interactive/gtk.pm: two fixes thx to perl_checker, one among them being
- very important :)
- when displaying images in treeview, unref pixbufs right after their use
- so that we try to save some memory
-
- * lang.pm: perl checko files
-
-2003/02/10 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ar.po: updated Arabic file
-
-2003/02/10 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm: ck hptraid, but discard the insmod error for it
- small cleanup
-
- * bootloader.pm: in lilo.conf, "unsafe" is incompatible with "table=..."
- (fixes bug #1382)
-
- * fs.pm, diskdrake/interactive.pm, install_steps_interactive.pm:
- - more precise message when formatting / fsck'ing / mounting
- partitions
- - hide passwords (for smb)
-
-2003/02/10 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * network/netconnect.pm, network/network.pm, network/ethernet.pm:
- perl_checker fixes
-
- * ugtk2.pm:
- - sort functions by name in export tags
- - (gtkset_name) introduce it for mcc and reuse it in
- create_box_with_title()
-
- * harddrake/sound.pm: cs4239 is managed by both "ad1848" and "snd-cs4236"
-
-2003/02/09 Pixel <pixel@mandrakesoft.com>
-
- * install_gtk.pm: do translate "System installation" and "System
- configuration" in steps window
-
-2003/02/08 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/init.c: when probing that we're in testing mode, print out
- the pid (since the probe is based on the pid and some recent machines
- seem to interact badly with that when in bad acpi mood)
-
- * mdk-stage1/Makefile: set version to 9.1
-
- * pixmaps/langs/lang-zh_CN.png, pixmaps/langs/lang-sl.png,
- pixmaps/langs/lang-hy.png, pixmaps/langs/lang-de.png,
- pixmaps/langs/lang-cy.png, pixmaps/langs/lang-it.png,
- pixmaps/langs/lang-eu.png, pixmaps/langs/lang-ca.png,
- pixmaps/langs/lang-sp.png, install_steps_interactive.pm,
- pixmaps/langs/lang-am.png, pixmaps/langs/lang-nb.png,
- pixmaps/langs/lang-gd.png, install_steps_newt.pm,
- pixmaps/langs/lang-el.png, pixmaps/langs/lang-ia.png,
- pixmaps/langs/lang-pt_BR.png, pixmaps/langs/lang-sv.png,
- pixmaps/langs/lang-mi.png, pixmaps/langs/lang-bg.png,
- pixmaps/langs/lang-fo.png, pixmaps/langs/lang-kw.png,
- pixmaps/langs/lang-hu.png, pixmaps/langs/lang-ur.png,
- pixmaps/langs/lang-iu.png, install_steps_auto_install.pm,
- pixmaps/langs/lang-az.png, standalone/drakhelp,
- pixmaps/langs/lang-mt.png, pixmaps/langs/lang-et.png,
- pixmaps/langs/lang-wa.png, pixmaps/langs/lang-sq.png,
- pixmaps/langs/lang-he.png, pixmaps/langs/lang-eo.png,
- pixmaps/langs/lang-ta.png, pixmaps/langs/lang-ga.png,
- pixmaps/langs/lang-sr.png, pixmaps/langs/lang-lt.png,
- pixmaps/langs/lang-fa.png, install_any.pm, pixmaps/langs/lang-oc.png,
- standalone/drakxtv, pixmaps/langs/lang-ms.png,
- pixmaps/langs/lang-mk.png, pixmaps/langs/lang-ar.png,
- pixmaps/langs/lang-lv.png, pixmaps/langs/lang-zh_TW.png,
- pixmaps/langs/lang-is.png, pixmaps/langs/lang-ro.png,
- pixmaps/langs/lang-be.png, pixmaps/langs/lang-fr.png, install_steps.pm,
- install_gtk.pm, pixmaps/langs/lang-hr.png, Makefile,
- pixmaps/langs/lang-en_GB.png, pixmaps/langs/lang-sk.png,
- install_steps_stdio.pm, pixmaps/langs/lang-uk.png,
- pixmaps/langs/lang-br.png, pixmaps/langs/lang-en_US.png, lang.pm,
- install2.pm, pixmaps/langs/lang-nl.png, pixmaps/langs/lang-bs.png,
- pixmaps/langs/lang-af.png, pixmaps/langs/lang-tr.png,
- pixmaps/langs/lang-pt.png, pixmaps/langs/lang-gl.png,
- standalone/localedrake, pixmaps/langs/lang-uz.png, any.pm,
- pixmaps/langs/lang-pl.png, pixmaps/langs/lang-id.png,
- pixmaps/langs/lang-yi.png, pixmaps/langs/lang-fi.png,
- pixmaps/langs/lang-ka.png, pixmaps/langs/lang-ru.png,
- pixmaps/langs/lang-nn.png, pixmaps/langs/lang-gv.png,
- pixmaps/langs/lang-th.png, pixmaps/langs/lang-cs.png,
- pixmaps/langs/lang-ko.png, pixmaps/langs/lang-tg.png, keyboard.pm,
- pixmaps/langs/lang-tt.png, pixmaps/langs/lang-da.png,
- pixmaps/langs/lang-ja.png, pixmaps/langs/lang-vi.png,
- pixmaps/langs/lang-es.png, timezone.pm: language/country selection
- change:
- - first install step is selection of your language, in your language;
- it uses images for that
- - language->country is probed, the selection of the country is
- possible
- if there was a problem, in the Summary step
- - in the $o big structure, we now use $o->{locale} which contains
- three keys: lang, country and utf8
- - lang.pm has been cleaned and rewritten a bit
- - keyboard probing now done only on language (because this step is
- at the beginning of the install)
- - timezone probing done on country, if use changes country before
- timezone in the Summary, re-probe timezone accordingly
-
- * rescue/tree/etc/issue: remove "cooker" from the issue of the rescue
- since we're
- aproaching the release candidates
-
- * install_steps_gtk.pm: say we're low on resources if we have less than 70
- Mb of RAM (was 60 Mb)
-
- * tools/make_mdkinst_stage2: the shitload of images for selecting
- languages in their languages needs a few additional inodes..
-
- * install_messages.pm: change address for errata to reflect the future 9.1
-
- * mdk-stage1/network.c: indent
-
- * interactive.pm, interactive/gtk.pm: add option advanced_state: if set to
- 1, force the "Advanced" part of the dialog to be opened initially
- add possibility to display images in tree-lists and bool-lists
-
- * mdk-stage1/config-stage1.h: ramdisk is enlarging, move the limit from 52
- Mb to 68 Mb (it won't work properly in gtk on a box with 64 Mb of
- memory..)
-
-2003/02/07 alus
-
- * share/po/pl.po: updated
-
-2003/02/07 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/network.pm:
- - DHCP & Zeroconf fixes for installation
- - fix '217.0.0.1 localhost' not written in /etc/hosts when using DHCP
-
- * standalone/drakfont:
- - full Gtk2
- - cleanup code (still much to do...)
-
- * drakxtools.spec: new version
-
-2003/02/07 fabman
-
- * share/po/es.po: updated Spanish translations
-
-2003/02/07 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/sp.po,
- share/po/ca.po, share/po/da.po, share/po/tg.po, share/po/bs.po,
- share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
- share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: updated
- pot file
-
- * share/po/ar.po: updated Arabic file
- updated pot file
-
- * share/po/sv.po, share/po/cy.po: Updated Welsh and Swedish files
- updated pot file
-
- * printer/printerdrake.pm: Fixed English typo
-
- * share/po/et.po: updated po file
- updated pot file
-
- * standalone/drakedm: fixed English typo
-
-2003/02/07 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig/card.pm: fix english typo (bug #1350)
-
-2003/02/06 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone/drakhelp:
- - change package name to install
-
-2003/02/06 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * drakxtools.spec: new version
-
- * network/network.pm: avoid to mess up tmdns.conf file
- fix dhcp package installation
- fix zeroconf suckiness
-
-2003/02/06 fabman
-
- * share/po/es.po: updated translation
-
-2003/02/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/uz.po, share/po/de.po: Added start of Uzbek file; updated
- German file
-
-2003/02/06 Pixel <pixel@mandrakesoft.com>
-
- * interactive/gtk.pm: add "Help" button
-
- * install_steps_interactive.pm (setRootPassword): have the focus on the
- password field
-
- * any.pm (ask_users): focus the "name" field, and change the buttons name
- & place
-
- * install_steps_gtk.pm: have the focus on the help "Ok" button
- missing aewm-drakx causes pb when testing (perl going havoc?)
- add "Help" button
-
- * install_gtk.pm: remove create_big_help
-
- * ugtk2.pm: drop "F1" for help (since a "Help" button is now available)
- (create_okcancel): allow buttons on the left (for the "Help" button)
-
- * interactive/newt.pm: fix sizing in the scrolled window in 80x25
-
- * diskdrake/hd_gtk.pm: add "Help" button
- (filesystems_button_box): in the caption write "Windows" instead of
- "FAT"
- (since NTFS uses the same color)
-
-2003/02/06 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/detect.pm: Corrected call for "tryWrite" function.
-
-2003/02/06 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/drakedm: sanitize
- perl_checker fix (yeah, i was faster than perl_checko!)
- the result of David Sansome|Laurent Montel|Frederic Lepied|Davod
- Beidebs|Thierry Vignaud collision
-
- * Makefile.config: add drakedm
-
- * standalone/drakfloppy: fix floppy create :-)
-
-2003/02/04 François Pons <fpons@mandrakesoft.com>
-
- * network/adsl.pm: fixed small typo.
- add support for adiusbadsl 1.0.2 (using adictrl -i to find interface and
- using
- pppoa).
-
-2003/02/04 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
- share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/sq.po,
- share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/lv.po, share/po/hu.po: updated pot file
-
-2003/02/04 Pixel <pixel@mandrakesoft.com>
-
- * ugtk2.pm: don't ->set_modal during install
-
- * devices.pm: add "vcsa" (for brltty)
-
- * Makefile: add brltty help file
- wildcard * in share/list allowed to match multiple files, but not
- multiple directories
-
- * install2.pm: fix typo
- add brltty help file
- brltty support
-
- * tools/make_mdkinst_stage2, install_steps.pm, install_any.pm: brltty
- support
-
- * share/list: add brltty help file
- brltty support
-
- * share/rpmsrate: add brltty
- move packages from 3 to 4 (fix bug #1265)
-
-2003/02/04 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakbackup: Use system configs when wrapped in mcc.
-
-2003/02/04 Till Kamppeter <till@mandrakesoft.com>
-
- * handle_configs.pm:
- - "Out-sourced" functions for config file handling into
- handle_configs.pm,
- it is used by both printerdrake and scannerdrake.
- - Improvements and fixes on CUPS daemon configuration by printerdrake.
-
- * printer/printerdrake.pm: Fixed auto-detection of a configured (but not
- started) network.
- - "Out-sourced" functions for config file handling into
- handle_configs.pm,
- it is used by both printerdrake and scannerdrake.
- - Improvements and fixes on CUPS daemon configuration by printerdrake.
-
- * printer/main.pm: Removed debug helper line.
- - "Out-sourced" functions for config file handling into
- handle_configs.pm,
- it is used by both printerdrake and scannerdrake.
- - Improvements and fixes on CUPS daemon configuration by printerdrake.
-
-2003/02/04 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/draksec:
- - fix get_check_default() and get_function_default() description
- - fix "check states were not saved if their value did not change (thus
- reverting it to default on disk)"
- - fix emebedding (no transcience when embedded)
- - fix "value get chop()-ed until it disapear and is reset to default"
- - log which security level is set and not only the switch
- killing latest remanent parts of christian "yeah baby, i'm piggy"
- work:
-
- - functions and checks listing :
- o rename get_functions() as list_functions() and
- get_default_checks() as list_checks(); this is both
- more homogenous and enable one to separate them from the
- get_(check|function)_(value|default) function group
- o regroup them
- o over simplify list_functions(): leave functions listing to msec
- (aka /usr/share/msec/level.<LEVEL>, assuming share/msec.py is
- always up to date, just don't care reparsing python code (this is
- plain stupid); if we cannot rely on msec, on who could we :-) ?
- o this allow to simplify msec gui so that we do not exclude stuff
- already excluded
- - remove config_check(), config_funtion(): replace them by:
- o set_check() and set_function() to store new values in data
- structure
- o apply_checks() and apply_functions() to save these new values,
- thus writing config files once and not twice the functions &
- checks count
- now, we always have a help entry and a default value but when fredl
- rename a
- check and forgot to remove it from /var/lib/msec/security.conf like
- CHECK_SUID_GROUP => CHECK_SGID, but hopefully, he'll fix msec
-
- * share/theme-editor.pl: update theme editor to current libDrakX api
-
- * drakxtools.spec: 9.1-0.22mdk
-
- * security/msec.pm: perl_checker fix
- - fix get_check_default() and get_function_default() description
- - fix "check states were not saved if their value did not change (thus
- reverting it to default on disk)"
- - fix emebedding (no transcience when embedded)
- - fix "value get chop()-ed until it disapear and is reset to default"
- - log which security level is set and not only the switch
- killing latest remanent parts of christian "yeah baby, i'm piggy"
- work:
-
- - functions and checks listing :
- o rename get_functions() as list_functions() and
- get_default_checks() as list_checks(); this is both
- more homogenous and enable one to separate them from the
- get_(check|function)_(value|default) function group
- o regroup them
- o over simplify list_functions(): leave functions listing to msec
- (aka /usr/share/msec/level.<LEVEL>, assuming share/msec.py is
- always up to date, just don't care reparsing python code (this is
- plain stupid); if we cannot rely on msec, on who could we :-) ?
- o this allow to simplify msec gui so that we do not exclude stuff
- already excluded
- - remove config_check(), config_funtion(): replace them by:
- o set_check() and set_function() to store new values in data
- structure
- o apply_checks() and apply_functions() to save these new values,
- thus writing config files once and not twice the functions &
- checks count
-
- * standalone/harddrake2: adapt to new mandrake_doc-drakxtools-* packages
-
-2003/02/03 alus
-
- * share/po/pl.po: Not too many entries in beta release?
-
-2003/02/03 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/network.pm: dhcp/zeroconf stuff
-
-2003/02/03 florin
-
- * network/netconnect.pm: fix some drakgw behaviour
-
-2003/02/03 François Pons <fpons@mandrakesoft.com>
-
- * bootloader.pm: integrated chmouel fixes.
-
-2003/02/03 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
- share/po/da.po, share/po/tg.po, share/po/bs.po, share/po/ro.po,
- share/po/wa.po, share/po/is.po, share/po/af.po, share/po/az.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/vi.po,
- share/po/ta.po, share/po/fr.po, share/po/sq.po, share/po/it.po,
- share/po/nl.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/lv.po, share/po/hu.po: updated pot file
-
- * share/po/ar.po: updated Arabic file
- updated pot file
-
-2003/02/03 Pixel <pixel@mandrakesoft.com>
-
- * c/stuff.xs.pl, install_any.pm: do not eject cdrom when already removed
- at the end of install (bug #1235)
-
- * modules/parameters.pm: use run_program::get_stdout
-
- * standalone/icons/smbnfs_mounted.png,
- standalone/icons/smbnfs_default.png,
- standalone/icons/smbnfs_has_mntpoint.png: have the background fully
- transparent
-
- * pkgs.pm: prefer mdkkdm over kdebase-kdm
-
- * diskdrake/interactive.pm: make perl_checker happy
-
- * diskdrake/smbnfs_gtk.pm: cleanup
- port to Gtk2
-
- * install_steps_gtk.pm: fix test mode install when Xnest is not there
-
- * standalone/diskdrake: don't "use diskdrake::interactive", only require
- it when needed
-
- * Xconfig/test.pm: ensure the X test strings are translated
-
- * interactive/newt.pm: fix typo (for treelist)
-
- * standalone/keyboarddrake: make perl_checker happy
- translate keyboard names
-
- * install_steps.pm: remove yelp-pregenerate
-
-2003/02/03 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/draksec:
- - msec was altered to produce help suitable for formatAlaTeX()
- - use formatAlaTeX() to have nicer tooltips
-
- * docs/porting-ugtk: new obsolete func (thanks drakcronat)
-
- * share/po/fr.po: typo fix
-
- * security/msec.pm:
- - consolidate file names
- - remove unused variables
- - rename get_(default|value as load_(default|value)s and alter them so
- that config file are read only one time instead of one per option;
- data is stocked in package variable
- - thus get_default_checks() is quite a lot faster
- - alter get_(check|function)_(value|default) to use new data structure
- - fix check default reading
- - group default values reading and current values reading
- what's left: do the same thing for writing tomorow
-
- * security/help.pm:
- - msec was altered to produce help suitable for formatAlaTeX()
- - use formatAlaTeX() to have nicer tooltips
- auto-generated from msec/share/draksec_help.py libmsec and moved from
- msec to here so that draksec help'll get translated
- all changes must be done in soft/msec/share/libmsec.py !!!
-
- * drakxtools.spec: 9.1-0.21mdk (to be continued by pouly)
-
- * share/po/Makefile: remove drakpxe exception since fpons has at lease
- fixed "fpons sucks"
- in drakpxe
-
-2003/02/03 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/network.pm, network/ethernet.pm:
- - fix zeroconf support
- - cleanups
-
-2003/02/03 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/cy.po: updated Welsh file
-
-2003/02/03 Pixel <pixel@mandrakesoft.com>
-
- * modules/parameters.pm: use run_program::get_stdout
-
-2003/02/03 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/draksec: sanitize gui (aka make it look nicer):
- - put the same help label on top of each msec options notebook pages
- and consolidate it
- - use gtkpack_ instead of gtkpack so that we can tell gtk+ that label
- must neither fill nor expand, only the packtable should
- display again the first notebook page
- if no default value, then do not print one (aka for cron checks)
- fix help system description.
- we should really use the camille/deush help system though.
- - perl_checker fixes
- - display sorted options (hey pixel, note that the last diff trunk
- with
- execessive () was not detected by perl_checker :-( )
-
- * modules/parameters.pm: pixelize(tm)
-
- * standalone/interactive_http/authorised_progs: draksec is not written to
- use interactive, thus cannot be used by http
- frontend
-
- * standalone/interactive_http/miniserv.init: sanitize draxktools server
- service script:
- - no gratuitous shell forking
- - now can be debugged through "sh -x"
- - use std shell service lib
- - make it print [OK] || [FAILLED]
-
- * ugtk2.pm: let simplify
-
-2003/02/02 alus
-
- * share/po/pl.po: updated
-
-2003/02/02 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ar.po: updated Arabic, Spanish, Finnish and Slovak files
- updated Arabic and Danish files
-
- * share/po/es.po, share/po/sk.po, share/po/fi.po: updated Arabic, Spanish,
- Finnish and Slovak files
-
- * share/po/da.po: updated Arabic and Danish files
-
-2003/02/02 Pixel <pixel@mandrakesoft.com>
-
- * printer/printerdrake.pm: move whatPrinter(), whatUsbport() and
- whatPrinterPort() out of detect_devices to printer::detect
- (it cleans up detect_devices, and won't hurt eyes anymore :)
- this change, together with .perl_checker skipping printer::* marks the
- style disagreement
- between printer/* and the rest of install
-
- * lang.pm, common.pm, install_interactive.pm: please perl_checker
-
- * printer/detect.pm, detect_devices.pm: move whatParport() to
- printer::detect
- move whatPrinter(), whatUsbport() and whatPrinterPort() out of
- detect_devices to printer::detect
- (it cleans up detect_devices, and won't hurt eyes anymore :)
- this change, together with .perl_checker skipping printer::* marks the
- style disagreement
- between printer/* and the rest of install
-
- * bootloader.pm: fix grub installed on {first_hd_device} instead of {boot}
- (bug #1199)
-
- * share/diskdrake.rc: NTFS is blue
-
- * partition_table.pm (adjust_local_extended): fix resizing local extended
-
- * install_gtk.pm, ugtk2.pm: ensure the window is big enough in 640x480:
- remove logo and steps window
-
- * .perl_checker: do not check printer::main, printer::printerdrake and
- printer::detect, too many warnings
-
- * install_steps_gtk.pm:
- - handle {vga16} in Xnest testing mode
- - fix weird bug due to missing aewm-drakx in test mode (??)
- - add Xnest feature when testing
- - cleanup and re-indent
-
-2003/02/02 siegel
-
- * share/po/de.po: some updates
-
-2003/02/02 Till Kamppeter <till@mandrakesoft.com>
-
- * install_steps.pm, install_steps_interactive.pm: Fixed Foomatic
- installation done by installer.
-
-2003/02/01 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/vi.po: updated Vietnamese, Estonian and Albanian files
- updated Vietnamese file
-
- * share/po/et.po, share/po/sq.po: updated Vietnamese, Estonian and
- Albanian files
-
-2003/02/01 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/data.pm, printer/printerdrake.pm:
- - Completed support for pre-compiled Foomatic PPDs.
- - Cleaning of mamufacturer names for menues and for comparing
- auto-dtected
- data against Foomatic centralized in one function.
- - Fixed file name in check for installed packages.
- - Fixed display of boolean options from native PostScript PPD files in
- the
- option setting dialog.
-
- * printer/main.pm:
- - Improved generation of printer list entries from
- manufacturer-supplied PostScript PPDs.
- - Completed support for pre-compiled Foomatic PPDs.
- - Cleaning of mamufacturer names for menues and for comparing
- auto-dtected
- data against Foomatic centralized in one function.
- - Fixed file name in check for installed packages.
- - Fixed display of boolean options from native PostScript PPD files in
- the
- option setting dialog.
-
-2003/01/31 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * install_steps_interactive.pm: be sure $o->{netcnx}{type} is set when
- using easy_dhcp
-
- * mdk-stage1/network.c: don't save hostname if intf->boot_proto ==
- BOOTPROTO_DHCP
-
- * network/ethernet.pm: zeroconf
-
- * drakxtools.spec: new version
-
- * ugtk2.pm: avoid poping
-
- * network/network.pm: more zeroconf configuration
-
-2003/01/31 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/da.po,
- share/po/ar.po, share/po/tg.po, share/po/bs.po, share/po/ro.po,
- share/po/wa.po, share/po/is.po, share/po/af.po, share/po/az.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/vi.po,
- share/po/ta.po, share/po/fr.po, share/po/sq.po, share/po/it.po,
- share/po/nl.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/lv.po, share/po/hu.po: updated pot file
-
- * share/po/ca.po: updated pot file
- Fixed small error (missing "/" in menu entry)
-
- * standalone/drakbackup: fixed typo (drakbakup.conf -> drakbackup.conf)
-
-2003/01/31 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: fix poulpy
-
-2003/01/31 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * install_steps_interactive.pm: be sure $o->{netcnx}{type} is set when
- using easy_dhcp
-
- * mdk-stage1/network.c: don't save hostname if intf->boot_proto ==
- BOOTPROTO_DHCP
-
- * ugtk2.pm: avoid poping
-
-2003/01/31 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake/resize_ntfs.pm: create diskdrake::resize_ntfs to factorize
- code
-
- * install_gtk.pm (createXconf): special case for "none" mouse device
- graphical layout change
-
- * install_steps_gtk.pm: handle pop_it more nicely: no need to precise
- pop_it when the wizard window already has a window,
- that way, two dialog boxes won't merge in the same window (which is
- dumb!)
- remove explicitly setting the size of advertising window
- (it wasn't setting the same size as the wizard mode size)
-
- * install_any.pm: fix typo
-
- * diskdrake/interactive.pm:
- - do not write_partitions when resizing & loosing data (not needed)
- - handle "cancel" on write_partitions
- fix typo (calling resize_fat::main instead of diskdrake::resize_ntfs)
- create diskdrake::resize_ntfs to factorize code
-
- * install_interactive.pm: fix "one big ntfs" resizing (in the limit case)
- small fixes
- add ntfs resize to the wizard
-
- * interactive/gtk.pm, diskdrake/hd_gtk.pm, ugtk2.pm: handle pop_it more
- nicely: no need to precise pop_it when the wizard window already has a
- window,
- that way, two dialog boxes won't merge in the same window (which is
- dumb!)
-
- * mouse.pm (detect): cleanup the value returned when only a wacom is found
-
- * install_steps_interactive.pm: fix poulpy
-
- * install_steps.pm: do "yelp-pregenerate -a" only once
-
-2003/01/31 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/main.pm, printer/printerdrake.pm:
- - Faster switch between normal and expert mode (no re-read of the
- print
- queues).
- - Prepared for working with pre-compiled Foomatic PPDs.
-
-2003/01/31 Warly <warly@mandrakesoft.com>
-
- * share/logo-mandrake.png: beta 3 logo
-
-2003/01/31 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake/interactive.pm, diskdrake/resize_ntfs.pm: create
- diskdrake::resize_ntfs to factorize code
-
- * install_interactive.pm: add ntfs resize to the wizard
-
- * install_any.pm: fix typo
-
- * install_gtk.pm: graphical layout change
-
-2003/01/30 François Pons <fpons@mandrakesoft.com>
-
- * mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: fixed progress bar
- too small.
- new image for floppy for 9.1
-
- * share/list: added pango-hebrew-xft.so for hebrew to be displayed
- (chmouel)
-
-2003/01/30 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/tg.po: Added Tajiki file
-
- * share/po/cy.po: converted Welsh file to UTF-8
-
- * share/po/nl.po: updated Dutch file
-
-2003/01/30 Pixel <pixel@mandrakesoft.com>
-
- * install_interactive.pm: drop $o->{lnx4win} handling
- add isFat_or_NTFS() and use it where possible instead of isFat() since
- Windows
- is now using ntfs, not only Windows NT
-
- * install2.pm: drop $o->{lnx4win} handling
-
- * mdk-stage1/Makefile: remove other.img & usb.img, add hd_usb.img &
- network_gigabit_usb.img
-
- * Xconfig/xfree.pm (merge_values): allow get_monitors to work when xfree3
- is missing
-
- * interactive.pm (helper_separator_tree_to_tree): this new function helps
- transforming a
- flag {list} to a tree, using {separator}
-
- * interactive/newt.pm: perl_checker small fixes
- basic treelist handling (it leaks memory, but who cares, compared to gtk
- :)
-
- * any.pm, bootloader.pm, install_steps_interactive.pm,
- diskdrake/hd_gtk.pm, fsedit.pm, install_any.pm, partition_table.pm: add
- isFat_or_NTFS() and use it where possible instead of isFat() since
- Windows
- is now using ntfs, not only Windows NT
-
- * network/network.pm, network/ethernet.pm, install_steps_auto_install.pm,
- network/netconnect.pm, modules.pm: adapt to new category network/gigabit
- (which used to be in network/main)
-
- * Newt/Newt.xs: basic treelist handling (it leaks memory, but who cares,
- compared to gtk :)
-
-2003/01/30 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/main.pm, printer/printerdrake.pm:
- - Conservation of option settings also for queues with PostScript PPD
- files
- or when switching between PostScript PPD file and Foomatic.
- - Fixed tree structure of main window in expert mode.
- - Several smaller bug fixes.
- - Display options devided in the groups defined in the PPD file.
- - For Foomatic PPDs the options in the "General" group are shown by
- default
- the rest when clicking "Advanced". When there ar no groups, the
- decision
- is done by a table of most commonly used option names.
- - Sort the displayed options of a queue with a non-Foomatic PPD file
- by the
- importance of the options.
- - Do not sort the values of an option, they are already conveniently
- sorted
- in the PPD files.
- - Removed some unnecessary re-reads of the printer option information.
- - Several fixes to run smoothly with Foomatic 2.9.x.
-
- * printer/data.pm:
- - Conservation of option settings also for queues with PostScript PPD
- files
- or when switching between PostScript PPD file and Foomatic.
- - Fixed tree structure of main window in expert mode.
- - Several smaller bug fixes.
-
-2003/01/30 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/harddrake2: translate topics (aka hw class names) in
- harddrake gui
-
- * drakxtools.spec: 9.1-0.19mdk
-
- * harddrake/data.pm: translate topics (aka hw class names) in harddrake
- gui
- - cosmetic fix for "drakconnect does not detect nvnet part of nvforce2
- chips"
- hint: their class is MEMORY_RAM :-( ...
- - btw, simplify unknown devices detection (merging tests regarding
- driver and
- media type)
- - move nforce system controllers in bridge class (which is renamed
- "bridges and
- system controllers" aka where we put stuff we've nothing to configure
- but we
- don't want to put them in controller so that users are not afraid) but
- nvnet
-
- * standalone/logdrake: on second thoughts, this is just simpler
- - perl_checker fixes
- - fix non embedded case :-(
-
-2003/01/30 Pixel <pixel@mandrakesoft.com>
-
- * interactive.pm (helper_separator_tree_to_tree): this new function helps
- transforming a
- flag {list} to a tree, using {separator}
-
- * Newt/Newt.xs, interactive/newt.pm: basic treelist handling (it leaks
- memory, but who cares, compared to gtk :)
-
-2003/01/29 François Pons <fpons@mandrakesoft.com>
-
- * standalone/drakpxe: fixed perl_checker
-
- * network/netconnect.pm: fixed some perl_checker
-
-2003/01/29 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/da.po, share/po/pt.po: updated Portuguese and Danish files
-
- * keyboard.pm, lang.pm: switched some languages to UTF-8 (they use ascii
- only, so it shouldn't
- be noticed); changed a keyboard name to match name used by XFree86
-
-2003/01/29 Pixel <pixel@mandrakesoft.com>
-
- * share/list: ntfsresize feature added (not tested!)
-
- * detect_devices.pm, raid.pm: software raid (mdX) can go up to md31
-
- * diskdrake/hd_gtk.pm: don't set $::main_window during install
-
- * diskdrake/interactive.pm: fix various resize pbs:
- - write partition table *before* resizing when partition is enlarged
- - debug ntfsresize
- dumpe2fs call cleanup
- ntfsresize feature added (not tested!)
-
- * fsedit.pm: handle mdX where X >= 10 (it should fix bug #1129)
-
-2003/01/29 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/main.pm, printer/printerdrake.pm:
- - Automatic non-interactive installation of local print queues.
- - Standard and advanced options selected by option groups in PPD.
- - Fixed bug of "CUPS + GIMP-Print" drivers being preferred against
- "Foomatic + gimp-print" drivers in beginners mode.
- - Foomatic package installation adapted to Foomatic 2.9.x.
-
-2003/01/29 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/logdrake: logdrake is a special case as for embedding in mcc
- since it can be embedded
- twice: one as explanation viewer and one a log search tool.
- so we must handly ask mcc to display us ...
-
- * detect_devices.pm (getIDE) don't provide information when we don't have
- it (vendor, description)
- (getModem) it always return an empy hash, thus confusing harddrake
-
- * harddrake/data.pm: fix doble detection of pci modems
- restore cd/dvd burners detection
-
- * standalone/harddrake2: print badly managed devices' drivers in red
-
-2003/01/28 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * interactive/gtk.pm: fixes unresponsive keyboard
-
-2003/01/28 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt.po, share/po/DrakX.pot: updated Portuguese file
-
- * share/po/fi.po, share/po/he.po: updated Finnish and Hebrew files
-
-2003/01/28 Pixel <pixel@mandrakesoft.com>
-
- * Newt/Newt.xs, interactive/newt.pm: cleanup use of flags
- simplify API (always -1,-1 for left,top when creating widget, it means
- auto-placement)
-
- * any.pm: log configured dvds for better post-debugging
-
- * diskdrake/interactive.pm: for resize2fs, don't multiply by 512 *then*
- divide by $block_size, better
- divide by ($block_size / 512)
-
-2003/01/28 Till Kamppeter <till@mandrakesoft.com>
-
- * share/rpmsrate: Take into account the new splitting of the Foomatic
- packages.
-
- * printer/main.pm, printer/printerdrake.pm: More stuff for non-interactive
- printer configuration:
- - Added find_new_printer() function to find local printers which are
- not
- configured yet
- - Fixed Titi's bugs which messed up list of auto-detected printers
- - Corrected text in the dialog for changing the printer connection
- type
- (for local printer connections).
- - Allow switching to expert mode during installation (the installation
- has
- no global expert mode any more.
-
-2003/01/28 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone.pm: s/version name/version number/ (Christophe Combelles)
- typo fix in logdrake usage help (spoted by Christophe Combelles)
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
- share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/sp.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/bs.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sq.po, share/po/nl.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/lv.po,
- share/po/cs.po, share/po/bg.po, share/po/el.po, share/po/hu.po: typo fix
- in logdrake usage help (spoted by Christophe Combelles)
-
- * interactive.pm, ugtk2.pm, ugtk.pm, interactive/gtk.pm, common.pm:
- cleaning the utf8 support stuff:
- - consolidate check_for_xserver() to check for x11 access
- - introduce prepare_gtk2() to do what gtk+2 needs, so that
- tools that're not part of drakxtools (aka: rpmdrake, mcc, ...) can
- just do :
-
- unshift @::textdomains, 'drakconf'; prepare_gtk2();
-
- * harddrake/TODO: update
-
- * drakxtools.spec: 9.1-0.17mdk
-
-2003/01/27 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * standalone/drakfont:
- - progress bars works
- - change sucky About box
- - wipeout commented code
- - remove ugly borders when embedded
-
-2003/01/27 florin
-
- * standalone/drakgw: typo rename, not renamef
-
-2003/01/27 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mouse.pm: fix missing pointer_ungrab so that after testing mouse during
- install we can move the mouse pointer everywhere
-
- * interactive/gtk.pm: since return values of callbacks are now
- non-ignored, we need to
- return 0 to the expose_event when displaying wait message so that
- gdk really does the exposure :)
-
-2003/01/27 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/vi.po: updated po file
-
-2003/01/27 Pixel <pixel@mandrakesoft.com>
-
- * interactive/newt.pm: don't blindly truncate strings to size 40 in
- simplify_string
-
-2003/01/27 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/main.pm, printer/printerdrake.pm: Adapted printerdrake to
- Foomatic 2.9.x, bug fix for use of native PPDs in recommended mode, bug
- fixes in association between detected printers and existing queues.
-
-2003/01/27 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * modules.pm: fix latest source of "unlisted modules" in draksound:
- modules::get_alias() was able to give "module " instead of only "module"
- beacause modules::read_conf() split the line on space with a maximum of
- 3
- splited elements.
- i choose to strip terminal spaces and btw terminal comments.
- i did not choose to do not put a limit to split since it's usefull for
- some
- cases.
-
- * standalone/drakbug: force drakbug to be runnable in strict mode
-
- * drakxtools.spec: 9.1-0.16mdk
- 9.1-0.15mdk
- reput back perl-gtk-0.7 dependancy because of drakfloppy and
- net_monitor
-
- * standalone/drakxtv: this patch enable doc team to take snapshot of
- drakxtv even if they do not
- have any card:
- - running "/usr/sbin/drakxtv" will enable to take snapshot of error
- message
- when xawtv wasn't installed by the drakx installer
- - running "/usr/sbin/drakxtv --testing" will emulate a fake dummy tv
- card
- so that one is able to take snapshots of configuring a tv card
-
- * Makefile: roll back (mcc!=gi)
- remove warnings in package
-
- * standalone/draksec: it's useless to import %security::help::help since
- it's already
- exported by our
-
- * ugtk2.pm: remove debugging statement
- let mcc pack tables behave smoother, so that all columns of mcc tables
- behave
- like last column of drakx's pack tables
- don't sent USR2 to mcc for logdrake;
- logdrake is handled differently since it's a special case.
- else on first execution of an embedded app, we take two USR2 (one from
- the
- embedded app and one from logdrake, which is bad)
-
- * standalone/drakfloppy, interactive.pm, standalone/net_monitor: strip
- authentification out of interactive->vnew into common.pm
- This enable apps that still use gtk+-1.2 via my_gtk to still work when
- they only need interactive->vnew('su') just to get root capabilities.
- Indeed, interactive load ugtk if it has access to the X server, which
- make my_gtk and ugtk fight for the cpu forever... which is bad imho...
- drakfloppy and net_monitor were converted to use it and are now usuable
- again
- ("i leave ... again" commit).
-
- it would also enable to complete spec 64 by enabling rpmdrake
- to use kdesu under kde and consolehelper under gnome.
- rpmdrake is indeed the last program to not behave like
- the running desktop to get root capability.
-
- unless someone is against this, i'll convert the mcc and all other gtk+
- pure
- tools to do not use anymore interactive just to get root capability.
-
-
- btw, i fixed the infamous SECTOR_SIZE warning...
-
- * diskdrake/hd_gtk.pm, interactive/gtk.pm: diskdrake: when non embedded,
- ensure sub window are modal
- all other drakx tool can be fixed the same way
-
- * share/po/Makefile: since fpons don't care about fixing drakxtools build
- broken by
- drakpxe, let remove drakpxe from translatable files
-
- * standalone/logdrake: cosmetic fix for embedded mode:
- don't display "wait while parsing" window when embedded
- fix logdrake behaviour in mcc where logdrake would only log
- the first process.
- another (rare indeed) case of a bug introduced because perl_checker
- wanted us to localize a file handle :-(
-
- * common.pm (require_root_capability): having extracted it from
- interactive enable
- to further simplify it
- strip authentification out of interactive->vnew into common.pm
- This enable apps that still use gtk+-1.2 via my_gtk to still work when
- they only need interactive->vnew('su') just to get root capabilities.
- Indeed, interactive load ugtk if it has access to the X server, which
- make my_gtk and ugtk fight for the cpu forever... which is bad imho...
- drakfloppy and net_monitor were converted to use it and are now usuable
- again
- ("i leave ... again" commit).
-
- it would also enable to complete spec 64 by enabling rpmdrake
- to use kdesu under kde and consolehelper under gnome.
- rpmdrake is indeed the last program to not behave like
- the running desktop to get root capability.
-
- unless someone is against this, i'll convert the mcc and all other gtk+
- pure
- tools to do not use anymore interactive just to get root capability.
-
-
- btw, i fixed the infamous SECTOR_SIZE warning...
-
- * standalone/harddrake2: make interactive help window be modal, aka
- transcient for main ugtk2
- window
- perl_checker fix
- use new help system
-
- * network/netconnect.pm: let drakconnect be less verbose: aka explain
- rename of old configuration files
- if that had been already done
-
- * standalone/drakhelp:
- - strict mode
- - we need at least 1 argument, and only one
-
-2003/01/26 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/es.po, share/po/zh_CN.po: updated Spanish and Chinese files
-
- * share/po/et.po: updated Estonian file
-
-2003/01/25 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sq.po: updated po file
-
-2003/01/24 Pixel <pixel@mandrakesoft.com>
-
- * ugtk2.pm (ask_browse_tree_info): better look when embedded in a smaller
- window
-
-2003/01/24 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * detect_devices.pm: get back serial modem detection
-
- * drakxtools.spec: new version
-
- * network/network.pm: fix typo
-
-2003/01/24 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * interactive/gtk.pm: remove unused variable
- fix Return key on a radio button grabbing focus on next functional group
- of widgets AND doing an action on it (toggling checkbuttons etc) (needs
- perl-GTK2 >= 0.0.cvs.2003.01.24.1)
-
- * mouse.pm: remove blinks in mouse test
-
-2003/01/24 Pixel <pixel@mandrakesoft.com>
-
- * interactive.pm (ask_from_list, ask_from_list_, ...): option nocancel
- added
- (ask_yesorno): no "Cancel" or "Previous" button
-
- * install_any.pm, install_steps_interactive.pm: fix "Previous" button in
- warnAboutNaughtyServers, so there is 3 choices
- (Previous, unselect servers, accept :)
-
- * install_steps_gtk.pm, mouse.pm:
- - don't setMouseLive when the protocol hasn't changed
- - don't say "MOVE YOUR WHEEL" when there is no wheel and the protocol
- hasn't changed
- (nb: no wheel + IMPS/2 can now happen for usb mice)
-
-2003/01/24 alus
-
- * share/po/pl.po: done
-
-2003/01/24 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * common.pm, c/stuff.xs.pl, interactive.pm, lang.pm: fix non latin1
- post-install perl-gtk2 apps, seems like perl upgrading strings to utf8
- is somewhat broken (dunno why), so now we bind the codeset or our
- textdomains to utf8 and tag the translated strings to utf8, when using
- gtk
-
- * mouse.pm: remove blinks in mouse test
-
-2003/01/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
- share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/sq.po, share/po/it.po, share/po/nl.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/el.po, share/po/cs.po, share/po/bg.po, share/po/lv.po,
- share/po/hu.po: updated pot file (English proofreading)
-
- * standalone/draksplash, standalone/logdrake, standalone/draksec,
- share/compssUsers.desktop, standalone/harddrake2,
- standalone/net_monitor, standalone/mousedrake, standalone/drakperm,
- standalone/scannerdrake: English proofreading
-
- * share/po/et.po: updated Estonian file
- updated pot file (English proofreading)
-
-2003/01/24 Pixel <pixel@mandrakesoft.com>
-
- * mouse.pm:
- - don't setMouseLive when the protocol hasn't changed
- - don't say "MOVE YOUR WHEEL" when there is no wheel and the protocol
- hasn't changed
- (nb: no wheel + IMPS/2 can now happen for usb mice)
- - switch "<= 3 buttons usb mice" from X protocol PS/2 to IMPS/2 (it
- works
- nicely, and redhat do so)
- - default usb mice to USB|Wheel instead of USB|Generic, since most
- (all?) usb
- mice have a wheel
- (i tested on 1 button mac mouse, it works nicely with ZAxisMapping and
- IMPS/2)
-
- * interactive.pm (ask_from_list, ask_from_list_, ...): option nocancel
- added
- (ask_yesorno): no "Cancel" or "Previous" button
-
- * install_any.pm, install_steps_interactive.pm: fix "Previous" button in
- warnAboutNaughtyServers, so there is 3 choices
- (Previous, unselect servers, accept :)
-
- * install_steps_gtk.pm:
- - don't setMouseLive when the protocol hasn't changed
- - don't say "MOVE YOUR WHEEL" when there is no wheel and the protocol
- hasn't changed
- (nb: no wheel + IMPS/2 can now happen for usb mice)
-
-2003/01/23 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm: fixed some (locally used) charset names
-
- * share/po/et.po: updated Estonian file
-
-2003/01/23 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig/main.pm (configure_chooser_raw): no special case for "Next"
- button
-
- * install_steps_interactive.pm (formatMountPartitions): help perl
- (otherwise wait_message stays forever in newt)
-
- * interactive/newt.pm: fix special case "for license agreement": only use
- it for long messages, and fix {format} use
- add a button to "summary"-like dialog boxes
-
-2003/01/23 alus
-
- * share/po/pl.po: updated
-
-2003/01/23 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/network.pm, network/ethernet.pm:
- - perl_checker compliant
- - s/$pump/$auto_ip/
- - use join('', if_(..), if_(..))
- - each_index instead of for
- - various fixes
-
- * network/netconnect.pm, network/modem.pm, network/isdn.pm,
- network/adsl.pm: isdn.pm now in use strict
- little cleanup
-
-2003/01/23 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/et.po: updated Estonian file
-
- * share/po/ko.po: Changes asked by HP people to Korean translation
-
-2003/01/23 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig/main.pm (configure_chooser_raw): no special case for "Next"
- button
-
- * common.pm: better fix of ->isa use
- remove use of UNIVERSAL::isa() (it is not much more complex with ref +
- ->isa, and UNIVERSAL::isa() would need a special case in perl_checker)
-
- * keyboard.pm (read): fix return value when no configured keyboard is
- found
-
- * diskdrake/interactive.pm: fix diskdrake in newt (causing error about
- missing method ->cylinder_size)
-
- * Xconfig/xfree3.pm, Xconfig/xfreeX.pm, Xconfig/xfree4.pm: introduce
- ->is_fbdev, and use it to simplify ->set_resolution
-
- * install_any.pm (getHds): do not handle missing harddrives by calling
- setupSCSI, since
- setupSCSI do it by itself now
-
- * interactive/newt.pm: fix special case "for license agreement": only use
- it for long messages, and fix {format} use
- add a button to "summary"-like dialog boxes
- - handle {ok_disabled}
- - correctly wrap messages
- - fix Textbox size
- - fix Listbox size
- - special code to handle the license dialog
-
- * Xconfig/various.pm (to_string): created, try to shortly describe current
- configuration
- (configure_FB_TVOUT): don't do anything when not using XF4
-
- * interactive/gtk.pm: focus first widget when there is no ok
-
- * Xconfig/xfree.pm (is_fbdev): created
- (get_both, set_both): skip modifications on missing xfree3 or xfree4
-
- * install_steps_interactive.pm (formatMountPartitions): help perl
- (otherwise wait_message stays forever in newt)
- (reallyChooseGroups): remove "Previous" button
- (setupSCSI): remove now unused variable $clicked
- (summary): display more nicely the current X config when fbdev
- (selectLanguage): no need to handle "Cancel" on language choosing :)
- (setupSCSI): handle calling modules::interactive::load_category in
- non-automatic mode when no harddrives are found
-
- * modules/interactive.pm (load_category__prompt_for_more): cleanup,
- propose "See hardware info" in any case
-
- * network/network.pm: pixelification
-
-2003/01/23 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * drakxtools.spec: fix perl-GTK2 dependancy
- 9.1-0.13mdk
-
- * standalone/drakpxe: perl_checker fix
-
- * network/ethernet.pm:
- - force use strict
- - perl_checker fix
-
- * network/isdn.pm: force strict pragma
- force strict mode
-
- * interactive/gtk.pm: workaround bug introduced by new pixel focus
- managment
-
- * standalone/service_harddrake: perl_checker fix
- reconfigure sound slots at boot time (we should enhance slot filling
- by keeping existent module affectation, aka keep user choice if his
- module for slot X is not the default one)
-
- * network/netconnect.pm, network/tools.pm, network/shorewall.pm,
- network/network.pm, network/modem.pm: force strict mode
-
-2003/01/22 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/adsl.pm:
- - speedtouch fixes :
- o binaries location from /usr/bin to /usr/sbin
- o clean previous instance of pppoa3 according to modem id (-c)
- (special thanks to Corsikas who proudly brings this patch to me :)
-
-2003/01/22 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: perl checker fixes.
-
- * bootloader.pm: fix call to sanitize_ver by giving it linux-$version
- instead of linux$ext.
-
-2003/01/22 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * c/stuff.xs.pl, lang.pm: fix accents characters displaying in console
- mode during install:
- - convert translations into utf8 only during install && if using gtk
- - explicitely bind the codeset to the specified locale's encoding
- because
- during install they are reported as utf8
-
- * ugtk2.pm: correctly pop when F2 (screenshots)
- revive F1, F2 and alt-e (dialogs for F1 and F2 are broken, though)
-
- * mdk-stage1/pci-resource/update-pci-ids.pl, mdk-stage1/probing.c: add
- full pci probe support
-
- * mdk-stage1/usb-resource/update-usb-ids.pl: have pci usb controllers
- sorted alphabetically
-
- * common.pm: correctly pop when F2 (screenshots)
- fix accents characters displaying in console mode during install:
- - convert translations into utf8 only during install && if using gtk
- - explicitely bind the codeset to the specified locale's encoding
- because
- during install they are reported as utf8
-
-2003/01/22 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/lt.po, share/po/he.po, share/po/sp.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/bs.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
- share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: updated
- pot file
-
- * standalone/draksplash, standalone/drakbackup, standalone/drakfloppy,
- standalone/drakfont, standalone/drakconnect, standalone/drakgw,
- standalone/drakperm: English proofreading
-
- * lang.pm: small changes in charset naming so they work better in console
- (console
- is still not in utf-8)
-
- * share/po/et.po, share/po/fi.po: updated pot file
- updated Finnish and Estonian files
-
-2003/01/22 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: call "yelp-pregenerate -a" after installing pkgs
- (since it's skipped DURING_INSTALL)
- - remove createBootdisk step
- - add mkbootdisk option in setupBootloader__general()
- - move kernelVersion() from install_any to any
-
- * interactive.pm: add some documentation about the various possible fields
-
- * interactive/gtk.pm: add {callbacks}{ok_disabled}
-
- * network/network.pm: simplify easy_dhcp prototype
-
- * install_steps_interactive.pm (acceptLicense): use new "interactive"
- feature to gray "Next" button until
- license is accepted
- simplify easy_dhcp prototype
- - remove createBootdisk step
- - add mkbootdisk option in setupBootloader__general()
- - move kernelVersion() from install_any to any
-
- * any.pm, install2.pm, install_any.pm, steps.pm:
- - remove createBootdisk step
- - add mkbootdisk option in setupBootloader__general()
- - move kernelVersion() from install_any to any
-
-2003/01/22 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * network/netconnect.pm, network/network.pm, standalone/mousedrake,
- printer/printerdrake.pm, harddrake/TODO, standalone/drakxtv:
- perl_checker fixes
-
- * standalone/drakfont:
- - perl_checker fixes
- - is_a_font(): display the non existant file we just checked for
- instead of an undefined value
- fix progressbar label initialization
-
- * harddrake/sound.pm:
- - if there's no know driver, offer to pick a driver in the drivers
- list in case ldetect-lst isn't up to date but the user know which
- driver to use
- - consolidate "pick any driver" entry
-
-2003/01/22 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm, any.pm, install_any.pm, install2.pm, steps.pm,
- install_steps_interactive.pm:
- - remove createBootdisk step
- - add mkbootdisk option in setupBootloader__general()
- - move kernelVersion() from install_any to any
-
-2003/01/21 alus
-
- * share/po/pl.po: utf-8 again
- updated again...? And again UTF -> ISO
- back from UTF-8 to ISO-8859-2 ... Why Why Why? It should work from
- UTF-8...
-
-2003/01/21 François Pons <fpons@mandrakesoft.com>
-
- * standalone/drakpxe: latest fixes for having default file correctly
- documented and make sure if
- server boot using dhcp itself, server hostname is given instead of ip
- address.
- add daemons stop/start code.
- update with something that look like running.
-
-2003/01/21 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mouse.pm: fix absence of scroll up and scroll down in mouse test
-
- * interactive/gtk.pm, install_steps_gtk.pm: perl-GTK2 0.0.cvs.2003.01.21.1
- should fix set_active(undef) misbehaviour
-
- * ugtk2.pm: seems like gdk_window_foreign_new is leaking as well..
- since gtkset_mousecursor is called by a timeout, don't leak
- memory because it can lead to problems on the long term
-
-2003/01/21 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/vi.po: updated Vietnamese and Polish files
- English proofreading (first pass)
-
- * network/adsl.pm: English proofreading by Stew Beneditcs
-
- * share/po/sk.po, share/po/DrakX.pot, share/po/zh_CN.po: English
- proofreading (first pass)
- updated Slovak and Chinese files
-
- * network/isdn.pm: English proofreading (first pass)
- English proofreading by Stew Benedicts
-
- * share/po/pl.po: updated Vietnamese and Polish files
-
- * network/network.pm, share/po/gl.po, share/po/pt_BR.po, share/po/th.po,
- share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/be.po,
- share/advertising/01-thanks.pl, share/po/ko.po, standalone/drakTermServ,
- share/po/sv.po, share/po/sr.po, share/po/fi.po, share/po/he.po,
- share/advertising/05-games.pl, share/po/da.po, share/po/ca.po,
- share/po/ar.po, share/advertising/04-multimedia.pl, share/po/ro.po,
- security/level.pm, share/po/zh_TW.po, share/po/sq.po, share/po/it.po,
- share/po/eu.po, share/po/es.po, share/advertising/07-desktop.pl,
- network/shorewall.pm, network/tools.pm,
- share/advertising/08-development.pl, share/advertising/06-mcc.pl,
- share/po/lv.po, share/po/hu.po, printer/printerdrake.pm, share/po/id.po,
- share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/no.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/uk.po,
- share/advertising/03-internet.pl, share/po/lt.po, share/po/sp.po,
- share/po/cy.po, partition_table/raw.pm, share/po/bs.po, share/po/wa.po,
- share/po/is.po, standalone/drakfont, share/po/af.po, share/po/az.po,
- share/po/pt.po, share/po/ta.po, share/po/fr.po, share/po/nl.po,
- share/po/de.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
- share/po/el.po: English proofreading (first pass)
-
- * bootlook.pm, install_steps_interactive.pm, network/netconnect.pm,
- network/drakfirewall.pm, standalone/mousedrake,
- diskdrake/interactive.pm, Xconfig/monitor.pm, install_any.pm,
- harddrake/v4l.pm, modules/interactive.pm, any.pm, harddrake/sound.pm,
- services.pm, network/ethernet.pm, bootloader.pm: English proofreading by
- Stew Benedicts
-
-2003/01/21 Pixel <pixel@mandrakesoft.com>
-
- * steps.pm: on error in acceptLicense, go back to selectLanguage (ie.
- handle "Previous ->" correctly)
-
- * Xconfig/various.pm, Xconfig/card.pm: have Xfree version at only one
- place
- (nb: it would be better to parse available package and get version from
- it.)
-
- * install_interactive.pm: remove or fix some "Previous"
-
- * help.pm: "license" is now step "acceptLicense"
-
- * interactive.pm: when the return value of ask_from_ and ask_from is not
- used, do not have a
- "Previous ->" or "Cancel" button (beware, black magic here :)
-
- * interactive/gtk.pm: remove unused variable
- (ask_fromW): very smart code to know which widget to focus (dilemna is:
- "Next" vs first widget). One can also force focusing of first widget
- using $common->{focus_first}
- (ask_fromW): have "advanced" widgets above buttons, not below
- (create_list): fix old bug (nb: this code must be unused)
- (create_boxradio): need to set {focus_w} to the selected widget (nb:
- this is ugly)
- (create_boxradio, $may_go_to_next): no special case for "tab", gtk2
- handles things better than gtk1
- ($set_all): pass the full_struct to the setters (this allows modifying
- {focus_w}) (nb: this is ugly)
-
- * install_gtk.pm: enlarge "steps" window a little
- small enhancement to know which step is currently done
-
- * ugtk2.pm: enlarge "steps" window a little
- (create_okcancel): rework to prepare next move, "Next" and "Previous" on
- the left, and @other buttons on the right
- (create_hbox): do handle the layout parameter
-
- * install_steps_interactive.pm: replace "Next" button with "Reboot" at
- exitInstall step
- remove or fix some "Previous"
- (acceptLicense): handle "Previous ->" correctly, and simplify code
- (esp. don't set useless_thing_accepted)
-
- * any.pm (setupBootloader__mbr_or_not): add ability to skip and to put on
- floppy
- rework autologin dialog box
- (selectLanguage): no "Previous ->" during install
-
- * diskdrake/interactive.pm (Mount_point): use uniq() on suggested mount
- points (otherwise the suggested mount point appears twice) (fixes bug
- #954)
-
- * install2.pm: don't prompt for license when useless_thing_accepted
- (this used to be done in install_steps_interactive::acceptLicense)
-
- * install_steps_gtk.pm: workaround set_active on Gtk2::CheckButton widgets
- thinking undef is true :-(
- (hopefully, gc will fix perl-GTK2!)
- replace some "Ok" with "Next ->"
-
- * Xconfig/main.pm: replace some "Ok" with "Next ->"
-
-2003/01/21 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/main.pm, printer/printerdrake.pm:
- - Support for manufacturer-supplied PostScript PPDs also in
- recommended
- mode.
- - If "Foomatic + Postscript" is recommended driver for a printer and a
- manufacturer-supplied PPD file exists for it, the PPD file gets the
- recommended driver.
- - Tried to extract IEEE-1284 auto-detection info from the PPD files
- but
- this takes too long time (40 sec for 800 PPDs).
- - Fixed long-standing bug in activation of auto-load of the USB
- "printer"
- kernel module.
-
-2003/01/21 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/TODO: update
-
- * share/po/fr.po: update french translation
-
- * harddrake/sound.pm: handle proprietary drivers
- if there's no alternative driver or if the current setting does not
- please the user, let he pick any driver among multimedia/sound modules
- category
-
-2003/01/20 alus
-
- * share/po/pl.po: updated
-
-2003/01/20 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/adsl.pm: little cleanup
-
- * network/network.pm: void label removed
- - zero conf is avaible in drakconnect, with/without dhcp
- - install tmdns and zcip packages when needed
-
- * network/tools.pm: get username back in menu
-
- * network/ethernet.pm:
- - zero conf is avaible in drakconnect, with/without dhcp
- - install tmdns and zcip packages when needed
-
-2003/01/20 François Pons <fpons@mandrakesoft.com>
-
- * standalone/drakpxe: initial revision with translation message.
-
- * Makefile.config: added drakpxe
-
-2003/01/20 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * Xconfig/test.pm: use gtk rather than qiv to display the background tile
- in X test
- fix Gtk2 port
-
-2003/01/20 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sr.po, share/po/fi.po, share/po/sp.po, share/po/tr.po: updated
- Finnish, Serbian and Turkish files
-
- * share/po/et.po: updated Estonian file
-
- * keyboard.pm: small keyboard name change
-
- * share/po/es.po, share/po/ar.po: updated Spanish and Arabic files
-
-2003/01/20 Till Kamppeter <till@mandrakesoft.com>
-
- * share/rpmsrate: Make flphoto getting onto the CDs.
-
- * printer/main.pm: Improved printer/driver list entries for PostScript PPD
- files.
- Improve association of printers with database entries (preparation for
- non-interactive print queue generation):
- - Make use of device ID strings in the Foomatic database
- - Association of generic printers when PDL (PCL, PCL-XL, PostScript)
- could
- be auto-detected
- - Cleaned up entries from manufacturer-supplied PPDs for PostScript
- printers to try to match model names of Foomatic entries
- - Bug fixes on previous association mechanism
-
- * detect_devices.pm, printer/printerdrake.pm: Improve association of
- printers with database entries (preparation for
- non-interactive print queue generation):
- - Make use of device ID strings in the Foomatic database
- - Association of generic printers when PDL (PCL, PCL-XL, PostScript)
- could
- be auto-detected
- - Cleaned up entries from manufacturer-supplied PPDs for PostScript
- printers to try to match model names of Foomatic entries
- - Bug fixes on previous association mechanism
-
-2003/01/20 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/sound.pm: make all chkconfig calls be chrooted
-
- * services.pm: fix prefix usage
-
- * mouse.pm: fix gtk+-2 port
-
- * standalone/draksec: use new help scheme just added to msec (this *does*
- need a newer msec
- package!!)
-
- * standalone.pm: fix breakage introduced when lowering warning level
-
-2003/01/19 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/da.po, share/po/sq.po: updated Danish and Albanian files
-
-2003/01/18 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * tools/ppc/mapping, tools/ppc/magic: Update magic, mapping files for PPC
- from Christian Walther
-
-2003/01/17 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/network.pm, network/ethernet.pm:
- - some changes to dhcp behavior for beta2 (not clean yet)
-
- * drakxtools.spec: 0.12mdk
-
-2003/01/17 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ru.po: updated po file
-
- * share/po/it.po: updated Italian file
-
-2003/01/17 Pixel <pixel@mandrakesoft.com>
-
- * tools/make_mdkinst_stage2: do not remove mdk_10.pcf in the ramdisk
- (or handle it in lang.pm since it seems to be needed for greek display)
-
-2003/01/17 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * modules.pm: airport support for ppc
-
-2003/01/17 Warly <warly@mandrakesoft.com>
-
- * share/rpmsrate: add some applications on club voting
-
-2003/01/16 alus
-
- * share/po/pl.po: updated
-
-2003/01/16 Daouda Lo <daouda@mandrakesoft.com>
-
- * Makefile.drakxtools:
- - drakhelp moved to /usr/bin/
-
- * standalone/drakhelp:
- - checker
- - support gnome help
- - warn if documentation is not installed
- - syntax : drakhelp relative_link
- example: drakhelp Quick_Startup.html/drakx.html
- - drakhelp will check the running wm and will launch kdehelpcenter
- with the correct URL after localizing the link.
- Otherwise, it launch a default browser: mozilla konqueror or galeon.
-
- * standalone.pm:
- - remove help callback (moved into drakhelp)
-
- * Makefile.config:
- - add drakhelp
-
-2003/01/16 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/network.pm:
- - fix /etc/hosts localhost.localdomain in localhost
-
-2003/01/16 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: fixed not to ask group instead of
- individual package selection.
-
-2003/01/16 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * keyboard.pm, lang.pm: Added some more English locales; and changed all
- locale names using xx
- notation to xx_YY notation (so it's easier to just append a ".UTF-8" in
- case we provide a way to let the user choose if he wants UTF-8 or not)
-
-2003/01/16 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm: workaround ref count perl bug
-
- * share/step-orange-click.xpm, share/step-red-on.xpm,
- share/step-orange.xpm, share/step-red-click.xpm,
- share/step-green-on.xpm, install2.pm, share/step-green.xpm,
- install_steps.pm, install_gtk.pm, share/step-green-click.xpm,
- share/step-red.xpm, install_steps_interactive.pm, steps.pm,
- share/step-orange-on.xpm: new steps window layout
-
-2003/01/16 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/harddrake2, services.pm: fix embedding
-
-2003/01/16 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone.pm:
- - remove help callback (moved into drakhelp)
-
- * standalone/drakhelp:
- - syntax : drakhelp relative_link
- example: drakhelp Quick_Startup.html/drakx.html
- - drakhelp will check the running wm and will launch kdehelpcenter
- with the correct URL after localizing the link.
- Otherwise, it launch a default browser: mozilla konqueror or galeon.
-
- * Makefile.config:
- - add drakhelp
-
-2003/01/16 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: do not propose individual package on
- upgrade.
-
- * install_steps.pm: fixed test of alternatives always seen as broken.
-
-2003/01/16 Pixel <pixel@mandrakesoft.com>
-
- * share/rpmsrate: add coreutils-doc by default
- add hdparm in default install (esp. per cooker request)
-
- * install_steps_interactive.pm: new steps window layout
- ask security level in every install
- hopefully last titi's bug on getSoundDevices :-(
-
- * share/po/Makefile: don't yell when checking for "$" in DrakX.pot and
- only finding "\$"
-
- * steps.pm: new steps window layout
- ask security level in every install
-
- * security/level.pm, standalone/drakconnect, network/netconnect.pm,
- standalone/drakperm, standalone/net_monitor, detect_devices.pm,
- network/tools.pm: replace occurences of "$foo ? $foo : $bar" with "$foo
- || $bar"
-
- * standalone/service_harddrake, standalone.pm: make perl_checker happy
-
- * network/network.pm: replace occurences of "$foo ? $foo : $bar" with
- "$foo || $bar"
- have dhcp-client the default dhcp client
-
- * share/step-orange-click.xpm, share/step-red-on.xpm,
- share/step-orange.xpm, share/step-green-on.xpm, share/step-green.xpm,
- install_steps.pm, install_gtk.pm, share/step-green-click.xpm,
- share/step-orange-on.xpm, share/step-red-click.xpm, install2.pm,
- share/step-red.xpm: new steps window layout
-
- * install_steps_auto_install.pm: configureNetwork step must be non-auto
- otherwise only
- install_steps::configureNetwork is called
-
-2003/01/16 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/drakbug, bootlook.pm, log.pm, standalone.pm,
- standalone/draksec, standalone/drakTermServ, harddrake/v4l.pm,
- standalone/drakxtv, standalone/drakgw, harddrake/TODO: "je n'en veux +
- de cette engeance" (c) pixel :
- make explanations provided by log and not anymore by standalone,
- thus preventing using standalone in drakx (which is bad)
-
- * standalone/service_harddrake, standalone/drakautoinst: perl_checker
- fixes
- "je n'en veux + de cette engeance" (c) pixel :
- make explanations provided by log and not anymore by standalone,
- thus preventing using standalone in drakx (which is bad)
-
- * drakxtools.spec: require an recent enought MDK::Common
-
- * harddrake/sound.pm: "je n'en veux + de cette engeance" (c) pixel :
- make explanations provided by log and not anymore by standalone,
- thus preventing using standalone in drakx (which is bad)
- happy drakx
- move "require standalone" where needed
- fix sound configuration while installing
-
-2003/01/16 Warly <warly@mandrakesoft.com>
-
- * share/logo-mandrake.png: beta 2
-
- * share/rpmsrate: move gnucash up on mandrakeclub demand
-
-2003/01/15 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: fix typo
- (selectInstallClass): display mandrake release version when listing the
- choices of partitions to upgrade
-
- * install_steps.pm: adapt to install_any::find_root_parts() return value
- changes
-
- * install_any.pm (find_root_parts):
- - do not use guess_mount_point() anymore
- - check /etc/mandrake-release instead of /etc/fstab
- - return a list of { release => "Mandrake Linux release X.X (XXXX)",
- part => ... }
- instead of a list of parts
-
- * harddrake/sound.pm: do not "use standalone" in a module used during
- install!
-
-2003/01/16 Pixel <pixel@mandrakesoft.com>
-
- * share/po/Makefile: don't yell when checking for "$" in DrakX.pot and
- only finding "\$"
-
- * install_steps_interactive.pm: hopefully last titi's bug on
- getSoundDevices :-(
-
-2003/01/15 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: fix typo
- (selectInstallClass): display mandrake release version when listing the
- choices of partitions to upgrade
-
- * install_steps.pm: adapt to install_any::find_root_parts() return value
- changes
-
- * install_any.pm (find_root_parts):
- - do not use guess_mount_point() anymore
- - check /etc/mandrake-release instead of /etc/fstab
- - return a list of { release => "Mandrake Linux release X.X (XXXX)",
- part => ... }
- instead of a list of parts
-
- * harddrake/sound.pm: do not "use standalone" in a module used during
- install!
-
-2003/01/15 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
- share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/sq.po, share/po/it.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/lv.po, share/po/hu.po: updated pot file
-
- * share/po/nl.po: updated pot file
- fixed encoding problem
- updated Dutch file
-
- * lang.pm: Added "Amharic" in the languages list, so it can be choosed and
- its
- translations can get installed from the rpm packages
-
-2003/01/15 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm (suggest_onmbr): log the choice
-
- * patch/patch-9.0-auto-inst-network-config.pl: fix for network module
- probe & configuration in interactive auto_install
-
- * install_steps.pm: adapt to install_any::find_root_parts() return value
- changes
-
- * install_steps_interactive.pm (selectInstallClass): display mandrake
- release version when listing the choices of partitions to upgrade
-
- * install_any.pm (find_root_parts):
- - do not use guess_mount_point() anymore
- - check /etc/mandrake-release instead of /etc/fstab
- - return a list of { release => "Mandrake Linux release X.X (XXXX)",
- part => ... }
- instead of a list of parts
-
- * install_steps_auto_install.pm: move
- install_steps_auto_install_non_interactive::configureNetwork() to
- install_steps_auto_install::configureNetwork() as it should be
- (thanks to Luc Bourdot)
-
- * harddrake/sound.pm: do not "use standalone" in a module used during
- install!
-
-2003/01/15 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/sound.pm: snd-sscape does not exist
- - factorize snd devices listing in detect_devices::getSoundDevices()
- so that each caller is ppc aware
- - factorize sound slots configuration into
- harddrake::sound::configure_sound_slots() so that harddrake service
- will eventually set them at bootstrapping time
-
- * standalone/drakproxy: drakproxy need common for getVarsFromSh()
-
- * detect_devices.pm, install2.pm, install_steps_interactive.pm:
- - factorize snd devices listing in detect_devices::getSoundDevices()
- so that each caller is ppc aware
- - factorize sound slots configuration into
- harddrake::sound::configure_sound_slots() so that harddrake service
- will eventually set them at bootstrapping time
-
- * standalone/harddrake2: add an option to skip jazz drives detection
-
-2003/01/14 Pixel <pixel@mandrakesoft.com>
-
- * rescue/list: /usr/share/magic has moved to /usr/share/misc/magic
-
- * any.pm: ensure cancel on setupBootloader__mbr_or_not do cancel
-
- * modules.pm: changes to have less "Use of uninitialized value"
-
- * printer/printerdrake.pm: please perl_checker
-
- * share/list: unicore/To/Fold.pl is necessary to fix "panic: swash_fetch"
- error occuring in
- a regexp with /i on ->{device} (fixes bug #799)
-
- * install2.pm: don't probe mouse when testing (startup is now much faster)
- remove the ugly temporary fix for fontconfig
- remove duplicate code
- don't automatically configure network on upgrade, now only done when
- called via summary
-
- * sbus_probing/main.pm: fix bug & cleanup (to have less warning in debug
- mode)
-
- * interactive/gtk.pm: set_active on Gtk2::CheckButton is pretty dumb, it
- thinks undef is true ;p
-
-2003/01/14 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/data.pm, printer/printerdrake.pm: Removed bugs from Titi which
- prevented printerdrake from installing the requested spooler.
-
-2003/01/14 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/drakfont: fix font_choice()
-
- * harddrake/check_snd.pl: add harddrake::sound checker
-
-2003/01/14 Pixel <pixel@mandrakesoft.com>
-
- * share/list: unicore/To/Fold.pl is necessary to fix "panic: swash_fetch"
- error occuring in
- a regexp with /i on ->{device} (fixes bug #799)
-
- * install2.pm: don't automatically configure network on upgrade, now only
- done when called via summary
-
-2003/01/14 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/sound.pm: add missing sound modules (found by check_snd in
- comparing
- harddrake::sound vs list_modules). we only left audio and bttv...
- add a "trouble shooting" window
-
- * harddrake/check_snd.pl: add harddrake::sound checker
-
- * standalone/drakfont: fix font_choice()
-
-2003/01/13 Pixel <pixel@mandrakesoft.com>
-
- * install_interactive.pm: don't say "You must have a swap partition"
- (since it's after using diskdrake which is for experts)
-
-2003/01/13 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/detect.pm: New CUPS printer sharing configuration dialog.
- Reverted broken printer::main::set_usermode() to version of Mandrake
- 9.0.
-
- * printer/main.pm: Avoid unnecessary restarts of the CUPS daemon.
- New CUPS printer sharing configuration dialog.
- Reverted broken printer::main::set_usermode() to version of Mandrake
- 9.0.
-
- * printer/printerdrake.pm: Avoid unnecessary restarts of the CUPS daemon.
- Removed debug helper line.
- New CUPS printer sharing configuration dialog.
- Reverted broken printer::main::set_usermode() to version of Mandrake
- 9.0.
-
-2003/01/13 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * printer/data.pm: remove old bug reference
-
- * share/po/fr.po: typo fix
-
- * printer/main.pm: make get_descr_from_ppd() clearer by :
- - using cat_() instead of manual open or ...
- - using "$var = s/$regexp//" instead of
- "var=/regexp\(...\)/; var=$1;"
- simplify set_cups_autoconf()
- add_spooler_to_security_level(), configure_queue()
- and config_sane() :
- factorize common code, aka resuse MDK::Common
-
- * harddrake/data.pm: add support for zip drives
-
- * harddrake/TODO: update
-
- * standalone/harddrake2: it's uneeded to force scalar context
- this is not a per class help, but we told the user what
- he can achieve (aka not only on startup)
- listlength() is obviously just "overhead" for arrays
- use diskdrake to configure cdroms, dvroms, cd|dvd -burners,
- floppies and zip drives
-
- * printer/printerdrake.pm: print_testpages() : factorize and simplify
- options managment
- by using an options hash
- setup_local_autoscan():
- - don't reinvent the wheel, reverse is faster
- - remove doble $device initialization in one path
- setup_local_autoscan() : simplify loop of loop
- and optimize away useless $alreadyfound
-
-2003/01/12 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sv.po: updated Albanian and Swedish files
-
-2003/01/12 Pixel <pixel@mandrakesoft.com>
-
- * docs/comparisons: add explained changes in hwdata and kudzu from redhat
- 8.0 to 8.1beta
- add changes between anaconda 8.0 and current
-
- * drakxtools.spec: drakxtools need latest perl-MDK-Common
-
-2003/01/11 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm: capitalise win $domain ASAP so that directory
- /home/$domain is created
- capitalised (thanks to Buchan Milne)
-
-2003/01/10 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: do not use supermount by default
- (readBootloaderConfigBeforeInstall): set bootUnsafe to 0 when upgrading
- so
- that it doesn't ask where to install the bootloader (mbr vs boot
- partition)
-
-2003/01/10 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/netconnect.pm:
- - catch wizcancel die
- - fix fucked previous button after configuration completes
- - little cleanup
-
-2003/01/10 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: do not use supermount by default
- (readBootloaderConfigBeforeInstall): set bootUnsafe to 0 when upgrading
- so
- that it doesn't ask where to install the bootloader (mbr vs boot
- partition)
- simplify and factorize
- (now works on 1.upgrade 2.install 3.install + change existing config)
-
- * Xconfig/card.pm: fix priority
-
- * Xconfig/main.pm, standalone/XFdrake, install_steps_interactive.pm:
- simplify and factorize
- (now works on 1.upgrade 2.install 3.install + change existing config)
-
- * fsedit.pm: lvm on / works (dixit Brian J. Murrell)
-
- * install2.pm: fix unused vars
-
-2003/01/09 François Pons <fpons@mandrakesoft.com>
-
- * install2.pm: changed interface of detect_devices::install_addons.
-
- * detect_devices.pm: add update-ldetect-lst after install_addons.
-
-2003/01/09 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/fi.po, share/po/sq.po: updated Finnish and Albanian files
-
-2003/01/09 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (configureNetwork): call
- install_steps::configureNetwork()
- - configureNetwork step now only does easy_dhcp()
- - added full network configuration to summary
-
- * network/network.pm (easy_dhcp): don't call network::configureNetwork2
- - fix priority
- - add a log
-
- * install2.pm:
- - configureNetwork step now only does easy_dhcp()
- - added full network configuration to summary
-
- * install_steps_gtk.pm (installPackages): do pop error messages
-
-2003/01/09 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/main.pm: Added cupsd.conf handling functions for a new printer
- sharing configuration dialog.
-
-2003/01/09 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * share/po/fr.po: fix invalid translation for draksound
-
- * harddrake/sound.pm: there's an oss usb driver too
- - snd-rme9652 is a snd-rme96 sub module
- - fix rme96xx <=> snd-rme96 equivalence
- quite a number of ensoniq cards are managed by sb.o
- - pss is the oss equivalent of alsa ad1848
- - oss ad1848 is not a driver but a sub module
- cmi8330 is handled by sb too
- als100 card is handled by sb oss sound driver
- oss trident driver handle ali5451 too
- - remove doble
- - add a comment noting there's no alsa alternative for oss' ad1889
- driver
- fix "unlisted driver" bug for rme driver
- - add new oss drivers : ad1889, ali5455 and forte
- - mark forte as oss counterpart for alsa snd-fm801 driver
- - mark ice1712 as oss counterpart for alsa snd-ice1712 driver
- - mark ali5455 as one of the oss counterpart for alsa snd-intel8x0
- driver
- - update top commentary
- - snd-via686 and snd-via8233 were merged in via82cxxx_audio
- - don't pollute install ml anymore
-
- * keyboard.pm: make return value name more explicit
- simplify
-
-2003/01/08 François Pons <fpons@mandrakesoft.com>
-
- * detect_devices.pm: added install_addons to install pcitable or usbtable
- addons.
-
- * install2.pm: removed perl_checker warning.
- added install_addons before leaving.
-
- * any.pm: really install the bootloader.
-
-2003/01/08 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * ugtk2.pm: fix a misc bug in rpmdrake (selecting a pkg doesn't work in
- certain circumstances - seems to be when the treeview doesn't have the
- focus, for exa
- mple after a search) by changing a bit the way we handle
- button_press_event in ask_browse_tree_info
-
-2003/01/08 Pixel <pixel@mandrakesoft.com>
-
- * network/network.pm: pass $::prefix instead of ''
- fix typo
- (easy_dhcp): cleanup
-
- * install2.pm: UGLY TEMPORARY FIX: create an /etc/passwd for fontconfig
-
- * ugtk2.pm: ensure drakx don't need wiz_default_up.png and
- wiz_default_left.png
-
-2003/01/08 Till Kamppeter <till@mandrakesoft.com>
-
- * printer/office.pm: Fixed Titi's bugs in the auto-configuration of
- printers in OpenOffice.org.
-
-2003/01/08 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * printer/printerdrake.pm: once we identify the protocal, skip remaining
- tests
-
- * printer/office.pm:
- - typo fix
- - s/if !/unless/
- - remove useless next
-
-2003/01/08 Pixel <pixel@mandrakesoft.com>
-
- * ugtk2.pm: ensure drakx don't need wiz_default_up.png and
- wiz_default_left.png
-
-2003/01/07 Pixel <pixel@mandrakesoft.com>
-
- * any.pm: "require bootloader" where needed
-
- * interactive/gtk.pm, install_steps_gtk.pm, install_gtk.pm, install2.pm,
- ugtk2.pm:
- - remove help (which was at the bottom)
- - wizard style
- - focus "Next" button by default (this is rough, some dialog boxes
- *need* changes
- before being able to complete (think root password dialog))
-
- * diskdrake/hd_gtk.pm: fix ugly global setting of $ugtk2::pop_it
-
-2003/01/07 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone/drakbug:
- - new way to use request help
-
- * standalone.pm:
- - compress code (pixel)
- - use ask_warn when no browser is found on the system and BROWSER env
- var not set.
-
-2003/01/07 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/network.pm: add network::easy_dhcp function. Quietly setup eth0
- in dhcp and restart network.
-
-2003/01/07 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * rescue/tree/etc/issue: version 9.1 cooker
-
- * rescue/devices.pl: init doesn't like anymore that /etc/initctl is
- already here
- (breaks any communication to init :/); remove /etc/initctl from
- the initial filesystem, and let init create it as a fifo during
- boot
-
-2003/01/07 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/th.po: converted th.po to UTF-8
-
- * share/po/pl.po: converted pl.po to utf-8
-
-2003/01/07 Pixel <pixel@mandrakesoft.com>
-
- * steps.pm: move "configureX" step before "summary" step
- move setupBootloader before summary
-
- * any.pm: "require bootloader" where needed
- use "if any" instead of "if grep", and various other occurences of
- "any", "every", "partition"
- - part of setupBootloader() are now in setupBootloader__mbr_or_not(),
- setupBootloader__general() and setupBootloader__boot_bios_drive()
- - this allows the creation of the new setupBootloader_simple() which
- is
- somehow similar to the old setupBootloader() in beginner mode
- - setupBootloader() is now always expert mode
-
- * printer/printerdrake.pm:
- - fix autodetection code (remember me to teach titi that "and" in list
- context is bad)
- - use printer::detect::whatNetPrinter directly (instead of
- net_detect() +
- net_smb_detect()), it is faster when one wants both
- use "if any" instead of "if grep", and various other occurences of
- "any", "every", "partition"
-
- * install_steps_interactive.pm (summary): add X configuration
- (configureX): this step is now always automatic. don't call
- configureXAfter() when config failed
- use "if any" instead of "if grep", and various other occurences of
- "any", "every", "partition"
- - adapt to new setupBootloader
- - add bootloader configuration in summary (still rough)
- - various cleanup
-
- * crypto.pm: cleanup and add a comment (!)
-
- * install_steps.pm: cleanup
- fix looking for broken alternatives
- use "if any" instead of "if grep", and various other occurences of
- "any", "every", "partition"
- - adapt to new setupBootloader
- - add bootloader configuration in summary (still rough)
- - various cleanup
-
- * network/network.pm, Xconfig/xfreeX.pm, network/smb.pm, lang.pm,
- network/drakfirewall.pm, raid.pm, diskdrake/smbnfs_gtk.pm,
- partition_table.pm, printer/main.pm, diskdrake/interactive.pm, pkgs.pm,
- interactive/newt.pm, fs.pm, standalone/drakfont, network/ethernet.pm,
- common.pm, detect_devices.pm, modules.pm, install_any.pm, timezone.pm:
- use "if any" instead of "if grep", and various other occurences of
- "any", "every", "partition"
-
- * Xconfig/card.pm (configure): do not do card_config__not_listed in $auto
- mode
- (configure): return without doing anything when probe fails or
- needVideoRam in $auto mode
- (multi_head_choose): be completly automatic in $auto mode
- use "if any" instead of "if grep", and various other occurences of
- "any", "every", "partition"
-
- * bootloader.pm: use "if any" instead of "if grep", and various other
- occurences of "any", "every", "partition"
- (method_choices): returns the choices of bootloaders (lilo, grub,
- yaboot...) + cleanup
- (suggest_onmbr): "lilo" and "grub" are now "unsafe" "on_mbr" choices
- - renaming of $lilo with $bootloader
- - $bootloader->{methods} is replaced by the much simpler
- $bootloader->{method},
- the special handling of grub (which need to also generate lilo.conf)
- is nicely handled in bootloader::install()
- - cleanup error handling: it was using the ugly (though safe)
- /tmp/.error
- temporary file, better use an exception
-
- * printer/detect.pm (detect): don't use net_smb_detect() and net_detect(),
- call
- whatNetPrinter() directly asking for both network & smb (faster)
-
- * Xconfig/various.pm (various): in $auto mode, don't ask about tvout
-
- * install_gtk.pm, install_steps_gtk.pm:
- - remove help (which was at the bottom)
- - wizard style
- - focus "Next" button by default (this is rough, some dialog boxes
- *need* changes
- before being able to complete (think root password dialog))
- use "if any" instead of "if grep", and various other occurences of
- "any", "every", "partition"
-
- * install_interactive.pm: fsedit::part2hd() returns a scalar, no need to
- do "my ($hd) = fsedit::part2hd(...)"
- use "if any" instead of "if grep", and various other occurences of
- "any", "every", "partition"
-
- * ugtk2.pm, interactive/gtk.pm:
- - remove help (which was at the bottom)
- - wizard style
- - focus "Next" button by default (this is rough, some dialog boxes
- *need* changes
- before being able to complete (think root password dialog))
-
- * diskdrake/hd_gtk.pm: fix ugly global setting of $ugtk2::pop_it
- use "if any" instead of "if grep", and various other occurences of
- "any", "every", "partition"
-
- * interactive.pm: fix ask_okcancel in wizard mode
- use "if any" instead of "if grep", and various other occurences of
- "any", "every", "partition"
- nicer debug message
-
- * Xconfig/resolution_and_depth.pm (configure): in $auto mode, use
- $default_resolution without asking
- use "if any" instead of "if grep", and various other occurences of
- "any", "every", "partition"
-
- * Xconfig/monitor.pm: don't do anything when automatic configuration fails
- in $auto mode
- use "if any" instead of "if grep", and various other occurences of
- "any", "every", "partition"
-
- * Xconfig/main.pm (configure_everything): in $auto mode, don't test nor
- ask when the config failed
-
- * fsedit.pm: fsedit::part2hd() returns a scalar, no need to do "my ($hd) =
- fsedit::part2hd(...)"
- fix typo (operator priority related)
- use "if any" instead of "if grep", and various other occurences of
- "any", "every", "partition"
-
- * partition_table/raw.pm: use internal_error instead of die for better
- error message (esp. backtrace)
-
- * install2.pm:
- - remove help (which was at the bottom)
- - wizard style
- - focus "Next" button by default (this is rough, some dialog boxes
- *need* changes
- before being able to complete (think root password dialog))
- cleanup
- - adapt to new setupBootloader
- - add bootloader configuration in summary (still rough)
- - various cleanup
-
-2003/01/07 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/data.pm: forgot to commit threat-hub-as-usb-controllers...
-
- * standalone/draksound: perl_checker fix
- let it ask for root capabilites if launched in standalone mode
-
- * printer/printerdrake.pm: printerdrake is back alive
-
- * printer/gimp.pm: fix new data structure usage
- fixes
- - remove useless $_ setting
- - simplify overgianted look for functions
- - mask isprinterconfigured() as bogus: if $done is 1 then
- $sectionfound *is* already 1
- - simplify by reusing list_passwd()
- - simplify program flow
- - one perl_checker fix
- - simplify directories list building
- - simplify test: if a file is a plain regular file, testing if it's a
- directory is useless;
- anyway, this test is probably bogus and should just be -e and not -f
-
- * printer/office.pm: fix new data structure usage
-
- * printer/main.pm: printerdrake is back alive
- perl_checker fix
- beautify
- simplif installed spoolers "detection"
-
- * Xconfig/card.pm: fix pixel sucks(bis)
-
- * ugtk2.pm: CList and CTree being deprecated and unsupported in perl-gtk2,
- don't bother handle them
-
- * drakxtools.spec: 9.1-0.9mdk
- 9.1-0.8mdk
-
- * Xconfig/resolution_and_depth.pm: fix pixel sucks
-
-2003/01/07 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm (method_choices): returns the choices of bootloaders
- (lilo, grub, yaboot...) + cleanup
- (suggest_onmbr): "lilo" and "grub" are now "unsafe" "on_mbr" choices
- - renaming of $lilo with $bootloader
- - $bootloader->{methods} is replaced by the much simpler
- $bootloader->{method},
- the special handling of grub (which need to also generate lilo.conf)
- is nicely handled in bootloader::install()
- - cleanup error handling: it was using the ugly (though safe)
- /tmp/.error
- temporary file, better use an exception
-
- * any.pm:
- - part of setupBootloader() are now in setupBootloader__mbr_or_not(),
- setupBootloader__general() and setupBootloader__boot_bios_drive()
- - this allows the creation of the new setupBootloader_simple() which
- is
- somehow similar to the old setupBootloader() in beginner mode
- - setupBootloader() is now always expert mode
-
- * interactive.pm: nicer debug message
-
- * steps.pm: move setupBootloader before summary
-
- * install_steps.pm, install2.pm, install_steps_interactive.pm:
- - adapt to new setupBootloader
- - add bootloader configuration in summary (still rough)
- - various cleanup
-
-2003/01/06 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone.pm:
- - perl checker
- - no retval
- - function on_request_help to display online help.
- - use it as callback to help button or help menu.
-
- * standalone/drakbug:
- - support help system
- - remove unused function
-
-2003/01/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * keyboard.pm: synchronized with XFree86 4.2.99 keyboard layout names
-
-2003/01/06 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm, install_steps_interactive.pm: fix typos (thanks
- perl_checko!)
- selectInstallClass now automatically detect if an existing install is
- there,
- and propose update or install based on this
-
- * bootloader.pm: when reading existing config, remove double quotes around
- the default label
-
- * install2.pm (selectKeyboard): read existing keyboard config even if not
- upgrading (it
- won't do anything when not upgrading :)
- (selectInstallClass): do not move step doPartitionDisks after setupSCSI
- on
- upgrade (since the "upgrade" part of the job of doPartitionDisks is now
- done in selectInstallClass)
- (selectMouse): "addToBeDone mouse::write()" was done only on upgrade,
- replace it with an "addToBeDone" done in any case which only does
- "mouse::write()" if $o->{isUpgrade} is set (since isUpgrade *will* be
- set
- correctly but is not set at this step)
-
- * steps.pm:
- - selectMouse is now just after selectLanguage
- - selectSCSI is before selectInstallClass
-
- * Makefile: when taking files from perl-GTK2, don't
- /usr/lib/libDrakX/ugtk2.pm since we don't need it
-
- * install_interactive.pm (partition_with_diskdrake): fix reloading
- partition table
-
- * common.pm: common::secured_file() is a wrapper around
- c::is_secure_file()
-
- * any.pm: fix "Where do you want to install the bootloader?" dialog box
-
- * fs.pm (mount): do not fsck.ext2 when mounting readonly
-
- * swap.pm: replace *F with $F
- fix an *old* bug causing pbs when formatting more than one partition
- using
- format v0 (occurs when the sizes differ)
-
-2003/01/06 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * drakxtools.spec: require a recent enough ldetect-lst for fixed usb hubs
- detection
- 9.1-0.7mdk
-
- * printer/main.pm: fix displaying list of availlable printer spoolers
-
- * printer/printerdrake.pm: fix displaying of spooler list
-
- * printer/gimp.pm: fix printerdrake regarding gimp configuration
-
- * standalone/logdrake: perl_checker fixes
- prevent one to write in log buffer
-
- * printer/data.pm: put full data in all variants of the data structure
-
- * share/po/fr.po: update french translation
-
-2003/01/05 Pixel <pixel@mandrakesoft.com>
-
- * any.pm: in bootloader configuration, add return values to Add and Remove
- callbacks
-
- * interactive.pm:
- - callbacks "Add", "Modify" and "Remove" return undef when they fail
- - callback "Add" return the new added element (not handled by
- interactive emulation, but correctly handled by interactive::gtk native
- ask_from__add_modify_removeW)
-
-2003/01/05 Pixel <pixel@mandrakesoft.com>
-
- * any.pm: in bootloader configuration, add return values to Add and Remove
- callbacks
-
- * interactive.pm:
- - callbacks "Add", "Modify" and "Remove" return undef when they fail
- - callback "Add" return the new added element (not handled by
- interactive emulation, but correctly handled by interactive::gtk native
- ask_from__add_modify_removeW)
-
- * interactive/gtk.pm: add ask_from__add_modify_removeW gtk handling
-
-2003/01/04 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: fix missing "use modules::interactive"
- (thanks to David Eastcott)
-
-2003/01/03 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * c/stuff.xs.pl: dgettext needs to have previous behaviour in standalone
- mode (fixes #736)
-
-2003/01/03 Pixel <pixel@mandrakesoft.com>
-
- * interactive.pm: fix call to method ask_from__add_modify_removeW
-
- * interactive/gtk.pm (create_treeview_list): fix setter
- - factorize the creation of the {formatted_list} from {list} for
- create_boxradio, create_treeview_list, create_treeview_tree
- - an added advantage for create_treeview_list is the ability to easily
- change
- {list}, {formatted_list} and Gtk2::ListStore without breaking keyboard
- acceleration (see next commit for a usage of this feature)
-
- * ugtk2.pm (create_packtable): ScrolledWindow are not the only one allowed
- to grow,
- widgets with get_data('must_grow') set are allowed too
-
- * printer/printerdrake.pm (first_time_dialog): much cleanup (but not
- tested)
-
- * mdk-stage1/minilibc.c: add symbols __libc_csu_fini and __libc_csu_init
- to be compatible with new glibc (?)
-
-2003/01/02 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig/test.pm: X test is now working :)
-
-2003/01/03 Pixel <pixel@mandrakesoft.com>
-
- * interactive.pm: fix call to method ask_from__add_modify_removeW
-
- * mdk-stage1/minilibc.c: add symbols __libc_csu_fini and __libc_csu_init
- to be compatible with new glibc (?)
-
-2003/01/02 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * ugtk2.pm: titi's message annoys me too much.. removing it
-
-2003/01/02 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: replace any::load_category() with
- modules::interactive::load_category()
-
- * Xconfig/test.pm: X test is now working :)
-
- * interactive.pm (ask_from__add_modify_remove): check all callbacks are
- given
- (ask_from__add_modify_remove): fix
- add ask_from__add_modify_remove, and use it for bootloader entries
-
- * any.pm: add ask_from__add_modify_remove, and use it for bootloader
- entries
-
-2003/01/02 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * ugtk2.pm:
- - Layout widget has native scrolling support
- - shadow parameter can always be used
-
- * standalone.pm: fixes for wizards
-
- * drakxtools.spec: 9.1-0.6mdk
- merge in back external stefan changes
-
- * standalone/logdrake: embedding fixes
-
-2002/12/30 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/fi.po: updated Finnish file
-
-2002/12/29 Pixel <pixel@mandrakesoft.com>
-
- * network/ethernet.pm: move any::load_category() to
- network::interactive::load_category()
- (and a few other functions which are only used by load_category())
- - move any::pppConfig() to network::modem::ppp_configure()
- - move any::miscellaneousNetwork() to
- network::network::proxy_configure()
- (and uses the parameter instead of $::o->{miscellaneous})
- - move network::network::miscellaneousNetwork() to
- network::network::miscellaneous_choose()
- (and do not export it)
- (and uses a parameter instead of $::o->{miscellaneous})
- - move network::modem::pppConfig() to network::modem::ppp_choose()
- (and change parameter order, and drop unused parameter $intf)
- - do not export network::network::write_interface_conf()
- (since it is only used locally (?))
- - cleanup network::network::write_interface_conf()
- (one still needs to pass $::o->{miscellaneous}{track_network_id} more
- cleanly, and use run_program::rooted when calling /sbin/ip)
-
- * printer/gimp.pm: set_permissions() doesn't want the given file to be
- $::prefix'ed
-
- * network/network.pm, standalone/drakproxy:
- - move any::pppConfig() to network::modem::ppp_configure()
- - move any::miscellaneousNetwork() to
- network::network::proxy_configure()
- (and uses the parameter instead of $::o->{miscellaneous})
- - move network::network::miscellaneousNetwork() to
- network::network::miscellaneous_choose()
- (and do not export it)
- (and uses a parameter instead of $::o->{miscellaneous})
- - move network::modem::pppConfig() to network::modem::ppp_choose()
- (and change parameter order, and drop unused parameter $intf)
- - do not export network::network::write_interface_conf()
- (since it is only used locally (?))
- - cleanup network::network::write_interface_conf()
- (one still needs to pass $::o->{miscellaneous}{track_network_id} more
- cleanly, and use run_program::rooted when calling /sbin/ip)
-
- * pkgs.pm: use "our" instead of "use vars"
- *pkg::LOG is unused, so don't export it
-
- * install_steps.pm: move any::runlevel() to Xconfig::various::runlevel()
- - move any::choose_security_level() to security::level::level_choose()
- - move any::config_security_user() to
- security::various::config_security_user()
- - move any::config_libsafe() and security::libsafe::config_libsafe()
- to security::various::config_libsafe()
- no need to close *pkgs::LOG, pkgs handles it nicely now
-
- * install_steps_interactive.pm: move any::keyboard_group_toggle_choose()
- to keyboard::group_toggle_choose()
- - move any::choose_security_level() to security::level::level_choose()
- - move any::config_security_user() to
- security::various::config_security_user()
- - move any::config_libsafe() and security::libsafe::config_libsafe()
- to security::various::config_libsafe()
- cleanup comments
-
- * security/various.pm: deprecates security::libsafe
-
- * security/level.pm, security/libsafe.pm, install2.pm:
- - move any::choose_security_level() to security::level::level_choose()
- - move any::config_security_user() to
- security::various::config_security_user()
- - move any::config_libsafe() and security::libsafe::config_libsafe()
- to security::various::config_libsafe()
-
- * network/modem.pm: in network::modem::configure $intf is unused, rename
- it to $_intf
- - do not use a global $in in network::modem, pass it as a parameter
- - create network::modem::ppp_configure_raw() which doesn't need $in
- (it is only used by network::modem::ppp_configure(), but this is clearer
- that way)
- - use $::prefix instead the global $prefix
- - don't pass $prefix to ppp_configure
- - move any::pppConfig() to network::modem::ppp_configure()
- - move any::miscellaneousNetwork() to
- network::network::proxy_configure()
- (and uses the parameter instead of $::o->{miscellaneous})
- - move network::network::miscellaneousNetwork() to
- network::network::miscellaneous_choose()
- (and do not export it)
- (and uses a parameter instead of $::o->{miscellaneous})
- - move network::modem::pppConfig() to network::modem::ppp_choose()
- (and change parameter order, and drop unused parameter $intf)
- - do not export network::network::write_interface_conf()
- (since it is only used locally (?))
- - cleanup network::network::write_interface_conf()
- (one still needs to pass $::o->{miscellaneous}{track_network_id} more
- cleanly, and use run_program::rooted when calling /sbin/ip)
-
- * Xconfig/various.pm, bootlook.pm, Xconfig/main.pm: move any::runlevel()
- to Xconfig::various::runlevel()
-
- * keyboard.pm, standalone/keyboarddrake: move
- any::keyboard_group_toggle_choose() to keyboard::group_toggle_choose()
-
- * network/netconnect.pm:
- - do not use a global $in in network::modem, pass it as a parameter
- - create network::modem::ppp_configure_raw() which doesn't need $in
- (it is only used by network::modem::ppp_configure(), but this is clearer
- that way)
-
- * standalone/drakconnect: any::load_category_no_message() doesn't exist
- anymore, it really is modules::load_category() !
- - move any::pppConfig() to network::modem::ppp_configure()
- - move any::miscellaneousNetwork() to
- network::network::proxy_configure()
- (and uses the parameter instead of $::o->{miscellaneous})
- - move network::network::miscellaneousNetwork() to
- network::network::miscellaneous_choose()
- (and do not export it)
- (and uses a parameter instead of $::o->{miscellaneous})
- - move network::modem::pppConfig() to network::modem::ppp_choose()
- (and change parameter order, and drop unused parameter $intf)
- - do not export network::network::write_interface_conf()
- (since it is only used locally (?))
- - cleanup network::network::write_interface_conf()
- (one still needs to pass $::o->{miscellaneous}{track_network_id} more
- cleanly, and use run_program::rooted when calling /sbin/ip)
-
- * modules/interactive.pm: move any::load_category() to
- network::interactive::load_category()
- (and a few other functions which are only used by load_category())
-
- * any.pm: cleanup (using ask_from instead of ask_from_listf_)
- cleanup (using "format => ...")
- move any::load_category() to network::interactive::load_category()
- (and a few other functions which are only used by load_category())
- move any::keyboard_group_toggle_choose() to
- keyboard::group_toggle_choose()
- move any::runlevel() to Xconfig::various::runlevel()
- - move any::choose_security_level() to security::level::level_choose()
- - move any::config_security_user() to
- security::various::config_security_user()
- - move any::config_libsafe() and security::libsafe::config_libsafe()
- to security::various::config_libsafe()
- - move any::pppConfig() to network::modem::ppp_configure()
- - move any::miscellaneousNetwork() to
- network::network::proxy_configure()
- (and uses the parameter instead of $::o->{miscellaneous})
- - move network::network::miscellaneousNetwork() to
- network::network::miscellaneous_choose()
- (and do not export it)
- (and uses a parameter instead of $::o->{miscellaneous})
- - move network::modem::pppConfig() to network::modem::ppp_choose()
- (and change parameter order, and drop unused parameter $intf)
- - do not export network::network::write_interface_conf()
- (since it is only used locally (?))
- - cleanup network::network::write_interface_conf()
- (one still needs to pass $::o->{miscellaneous}{track_network_id} more
- cleanly, and use run_program::rooted when calling /sbin/ip)
-
- * network/isdn.pm:
- - do not use a global $in in network::modem, pass it as a parameter
- - create network::modem::ppp_configure_raw() which doesn't need $in
- (it is only used by network::modem::ppp_configure(), but this is clearer
- that way)
- - move any::pppConfig() to network::modem::ppp_configure()
- - move any::miscellaneousNetwork() to
- network::network::proxy_configure()
- (and uses the parameter instead of $::o->{miscellaneous})
- - move network::network::miscellaneousNetwork() to
- network::network::miscellaneous_choose()
- (and do not export it)
- (and uses a parameter instead of $::o->{miscellaneous})
- - move network::modem::pppConfig() to network::modem::ppp_choose()
- (and change parameter order, and drop unused parameter $intf)
- - do not export network::network::write_interface_conf()
- (since it is only used locally (?))
- - cleanup network::network::write_interface_conf()
- (one still needs to pass $::o->{miscellaneous}{track_network_id} more
- cleanly, and use run_program::rooted when calling /sbin/ip)
-
-2002/12/28 Pixel <pixel@mandrakesoft.com>
-
- * standalone.pm: don't import everything from "common" (including
- MDK::Common::*) to get rid of
- warnings "Subroutine renamef redefined ..." "Subroutine linkf redefined
- ..."
- ... (but I don't understand how to make explainations on common_functs
- work?!)
-
- * printer/gimp.pm:
- - mkdir_p throws an exception on error, so "mkdir_p() or ..." is dumb,
- fixing
- (thanks to Lea Gris)
- - use output()
-
-2002/12/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt.po: Updated Portuguese file
-
-2002/12/23 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * lang.pm: CJK font names changes (still doesn't work :/)
-
- * share/list: perl's automatic utf8 handling will need these files (will
- try to do better in the future)
-
- * install_steps_gtk.pm: fix 'bold' advertisements
-
- * share/fonts.tar.bz2: use another default font
- have a default fixed alias for a font which will always be here even in
- ramdisk
-
- * tools/make_mdkinst_stage2: fonts changes (doesn't work with CJK (at
- least) in ramdisk, though)
-
- * Xconfig/resolution_and_depth.pm: workaround gtk bug in
- gtk_entry_set_text
- fix titi porting gtk2 without testing enough..
-
- * interactive/gtk.pm: be more efficient in precomputing, previous
- situation could lead to several tens of seconds of wait in
- XFdrake-monitor
-
-2002/12/23 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt_BR.po: updated Brazilian file
-
-2002/12/23 Pixel <pixel@mandrakesoft.com>
-
- * printer/printerdrake.pm: help perl_checker (interactive is used even if
- the constructor is not there)
-
- * Xconfig/resolution_and_depth.pm: fix setting size of depth combo
-
-2002/12/20 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * lang.pm: simplify since we don't use X11 fonts (we can't since
- GDK_USE_XFT is not switchable once program is launched)
-
- * mouse.pm: image in CVS is 3b+, not 3bp
-
- * share/themes-mdk.rc: allow gtk2 theme engine to find pixmaps
-
- * share/list, Makefile: list files changes for gtk2 (is that really
- optimal to have utf8.pm and utf8_heavy.pl?)
-
-2002/12/20 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt.po: updated Portuguese file
- updated Portuguese file
-
- * share/fonts.tar.bz2: updated fonts tarball, all old bitmap fonts have
- been removed,
- now it only includes:
- - an OpenType font with glyphs for latin and cyrillic
- - two unicode encoded bitmap fonts with glyphs for CJK and Greek
- (and it could be used for non latin/cyrillic scripts for which there
- isn't any outline font available).
- Those fonts are based on fonts shipped with XFree86 (Nimbus Sans L and
- "misc-fixed"), but with some modifications (extra glyphs added to
- complete the "holes" in latin and cyrillic for the outline font,
- added a few missing chines chars and changed ascii portion from
- monospaced
- to varaible width for the bitmap fonts (so the visual output is
- better)).
- The choice of bitmap fonts for CJK has been done due to the very huge
- size of CJK outline fonts.
-
- * share/po/fi.po: updated Finnish file
-
- * share/po/eo.po: Small change in Esperanto file
-
-2002/12/20 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * ugtk2.pm: gtk+2 support for plug/socket is back since 2.1.5-2mdk
-
-2002/12/19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/doc/README: meuh
-
-2002/12/19 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt.po: updated Portuguese file
-
- * share/po/ta.po: Converted Tamil file to utf-8
-
-2002/12/19 Pixel <pixel@mandrakesoft.com>
-
- * Makefile: add "make test_pms_all"
-
- * standalone/.perl_checker: use libDrakX from CVS (ie. ..) in perl_checker
-
- * printer/cups.pm, printer/main.pm, printer/printerdrake.pm:
- - printer::main::read_cups_printer_list() is now
- printer::cups::read_printer_list() (but it is unused!)
- - printer::main::get_cups_remote_queues() is now
- printer::cups::get_formatted_remote_queues()
- - cleanup printer::cups::get_remote_queues() using
- printer::cups::lpstat_v()
-
- * standalone/drakupdate_fstab: any::get_secure_level() doesn't exist
- anymore, use security::level::get() instead (fix titi change)
-
- * printer/gimp.pm: do not use "$1 !~ ..."
-
-2002/12/19 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * drakxtools.spec: conflict with "non gtk+-2 aware" releases of mcc
- 9.1-0.4mdk
-
-2002/12/18 Pixel <pixel@mandrakesoft.com>
-
- * any.pm, .perl_checker, install_any.pm: new features including checking
- unused functions, and checking methods being available
-
- * install2.pm, partition_table.pm: enumerate the various required packages
- when requiring a package dynamically known
-
- * standalone.pm, Newt/Newt.pm: help perl_checker knowing packages are used
- as classes
-
- * diskdrake/interactive.pm, lvm.pm, fsedit.pm: add "new" to lvm.pm, and
- use it
-
- * .cvsignore: ignore .perl_checker.cache
-
-2002/12/18 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * Xconfig/resolution_and_depth.pm: XFdrake gtk+-2
-
- * Xconfig/test.pm: fix
- XFdrake gtk+-2
-
- * standalone/drakperm:
- - basic gtk+-2 port (edition is not ready yet)
- - perl_checker fixes
-
- * ugtk2.pm: perl_checker fixes
- disable embedded mode for now due to gtk+-2 bugs
- fix wizards and draconnect:
- it's the same code as in old my_gtk but i don't understand
- how it could have worked...
- yet the logic is quite simple : we add the "previous" button only if
- we're not in the wizard's first page; but the "next/finish" button
- must still be added, else the wizard is quite unusefull :-(
-
- * standalone/harddrake2, harddrake/data.pm: saner default size (too big
- for 800x600 sadly)
-
- * standalone/drakconnect: refresh: remove current interfaces before
- readding them, like it was
- before
- - consolidate some code into new_dialog
- - simplify through MDK::Common
- perl_checker fixes
- - gtk+-2 port is completed (switch from CList to TreeView)
- - gtk+-2 minor fixes (use new API rather than old one)
- - fix non wizard mode (add to frame not to window which is already
- full)
- - wizard mode is fixed by previous ugtk2 fix
- - simplify through MDK::Common
- fix drakconnect warnings
-
-2002/12/17 alus
-
- * share/po/pl.po: updated
-
-2002/12/17 Daouda Lo <daouda@mandrakesoft.com>
-
- * ugtk2.pm:
- - export gtkappend_page
- - add gtkappend_page function (for gui building wizard)
-
-2002/12/16 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt.po: updated Portuguese file
-
-2002/12/16 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig/card.pm: fix english typo (thanks to J. Grant)
-
- * mouse.pm: really drop update_type_name
-
- * fsedit.pm: really drop check()
-
- * standalone/drakautoinst: use ->method syntax for method call
-
-2002/12/16 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * ugtk2.pm: build automatically the font description if needed
- fix string_size() usage in get_text_coord()
-
-2002/12/14 Pixel <pixel@mandrakesoft.com>
-
- * network/netconnect.pm: do not export start_internet and stop_internet
- (was broken since network::netconnect do not inheritate from Exporter)
-
-2002/12/13 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_messages.pm: must return a true value
-
- * interactive/gtk.pm: expand_row no longer bugs, great :)
-
- * c/stuff.xs.pl: iconv_ is needed all the times, not only in drakx
-
-2002/12/13 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (kdeicons_postinstall): drop (unused)
-
- * detect_devices.pm: drop hasUltra66 (unused)
-
- * any.pm, bootloader.pm: drop loadlin handling
-
- * network/network.pm, ugtk.pm, my_gtk.pm, printer/data.pm,
- partition_table.pm, ugtk2.pm: remove exported names which are not
- defined
-
- * printer/main.pm: commit the real code, not the debug code :-(
- put back the comment
- (read_cups_printer_list, get_cups_remote_queues): much cleanup
-
- * fsedit.pm (check): drop it (unused, maybe you should use
- diskdrake::interactive::check instead)
-
- * services.pm: use wrap_text (instead of handcoding it)
-
- * Xconfig/various.pm (show_info): drop (unused)
-
- * timezone.pm (sexProb): drop (unused!)
-
- * standalone/drakbackup: replace "%" with "%%" in translated string
-
- * mouse.pm (update_type_name): drop (unused (?))
-
- * bootlook.pm: drop unused function
-
- * fs.pm (add_options): drop (unused, use mount_options_unpack +
- mount_options_pack instead)
- (mount_all): drop (unused, use formatMount_all instead)
-
-2002/12/13 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * Makefile.drakxtools, Makefile: fix installation after pixel changes
-
- * drakxtools.spec: fix {build,}requires for gtk+2
-
- * ugtk.pm: remove uneeded variables
-
- * standalone.pm: remove double
- move draksec's gui into the standalone program,
- nobody will uses it so it's useless to load drakx with it.
- also use common cli options managment
-
- * standalone/harddrake2: perl_checker fixes
-
- * security/main.pm, standalone/draksec: move draksec's gui into the
- standalone program,
- nobody will uses it so it's useless to load drakx with it.
- also use common cli options managment
-
-2002/12/12 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt.po, share/po/he.po: Added a starting Hebrew file; updated
- Portguese file
-
-2002/12/12 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: remove unused variable $clicked
- remove some $::expert
- remove beginner/expert choice
-
- * install_steps_gtk.pm: remove beginner/expert choice
-
- * ugtk.pm: unused variables renamed with a leading underscore (some code
- should be removed?)
-
- * diskdrake/hd_gtk.pm: when clicking on one of the legend buttons together
- with an existing partition
- selected, it doesn't change the partition type, it tells to use "Type"
- (it used to be ignored in non-expert, and do a change type in expert)
-
- * install2.pm: drop options "fexpert" and "fbeginner" which used to skip
- the choice expert/beginner
-
-2002/12/12 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * ugtk2.pm: simplify
- add gtkmodify_font() and gtkset_property()
-
- * standalone/harddrake2: better english
- don't confuse people by altering sentences that could have been
- interpreted as questions
- - s/::/:/ on cpu info
- - print field names in bold blue rather than just blue
-
-2002/12/11 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/zh_CN.po, share/po/pt.po: updated Portuguese and Chinese files
-
-2002/12/11 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * ugtk2.pm: reuse already consolided code
- reuse already consolided code
- add set_back_pixbuf() to let a widget paint itself a pixbuf in its
- background rather that doing this ourselves in rpmdrake or mcc
-
-2002/12/10 Pixel <pixel@mandrakesoft.com>
-
- * share/po/Makefile, share/po/fake_c.pl: use "perl_checker --generate-pot"
- instead of fake_c + xgettext
-
- * Xconfig/test.pm: do not duplicate "An error occurred ..." t10n string
-
- * any.pm, bootloader.pm: perl_checker --generate-pot is a bit picky about
- the localisation of "#-PO:" comments
-
- * install_steps_interactive.pm: fix % in translated string (it must be %%)
-
- * standalone/drakbug, standalone/logdrake, standalone/drakfloppy,
- standalone/drakTermServ, standalone/drakautoinst, standalone/drakbackup,
- standalone/drakconnect, standalone/drakxtv: minimal perl_checker fixes
- to have only warnings
-
- * Makefile.config: service_harddrake.sh is not a PM, so i remove it from
- STANDALONEPMS_
- live_install is a shell script, do not pretend it's perl ;p
-
-2002/12/10 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * network/netconnect.pm, network/tools.pm, network/isdn.pm,
- standalone/drakTermServ, standalone/drakxtv: perl_checker fixes
-
- * standalone/harddrake2: no gratuitously tab
-
- * standalone/draksplash:
- - gtk+2 port
- - "use strict" fixes
- - perl_checker fixes
-
- * standalone/drakconnect: perl_checker fixes
- fix gtk+2 port
-
-2002/12/09 adesmons
-
- * network/netconnect.pm: make perl_checker happy
- drakconnect conf file no more uploaded with now useless variable
-
- * network/adsl.pm: drakconnect conf file no more uploaded with now useless
- variable
-
-2002/12/09 Pixel <pixel@mandrakesoft.com>
-
- * share/themes-blackwhite.rc, share/themes.rc, share/themes-savane.rc:
- remove already obsolete themes
-
- * my_gtk.pm, ugtk2.pm: remove dynamic theme choosing, and next/previous
- (F11/F12) handling
- remove code handling setstep
-
- * diskdrake/hd_gtk.pm, diskdrake/interactive.pm, install_interactive.pm:
- - handle more locally "Reload partition table" (esp. without using
- setstep)
- => no exception is called through gtk
-
- * interactive/newt.pm, install2.pm: remove code handling setstep
-
- * install_steps_gtk.pm, install_messages.pm, install_steps_interactive.pm:
- move long messages (like license) to a new package: install_messages.pm
-
- * install_gtk.pm: remove unused variable ($step_name)
- remove code handling setstep
-
- * any.pm: remove old code
-
-2002/12/09 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * network/isdn.pm: remove unused modules
-
-2002/12/08 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt_BR.po: updated Brazilian file
-
-2002/12/07 alus
-
- * share/po/pl.po: update
- update
-
-2002/12/07 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sq.po: Added Albanian file
-
-2002/12/06 adesmons
-
- * network/netconnect.pm, network/tools.pm, network/modem.pm,
- network/isdn.pm, network/adsl.pm: isdn data are now fetched form system
- instead of drakconnect conf file
-
-2002/12/06 alus
-
- * share/po/pl.po: removed unuset texts
-
-2002/12/06 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * ugtk2.pm: don't use unless
-
- * c/stuff.xs.pl: add bind_textdomain_codeset, iconv the dgettext results
- to UTF8 since perl seems to mess with that when trying to do so from
- within gtk2-perl (with sv_utf8_upgrade)
-
- * install_gtk.pm: better style
-
- * interactive/gtk.pm: 2.1.3 doesn't have trouble with expand_to_path
-
- * lang.pm: perl checker OwnZ Da W3rld
- misc
-
- * bootlook.pm: perl_checker help'ed fix
- s/Gtk->/Gtk2->/
-
-2002/12/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/et.po, share/po/vi.po: updated po file
-
-2002/12/06 Pixel <pixel@mandrakesoft.com>
-
- * network/isdn.pm, standalone/XFdrake: be more perl_checker compliant
-
-2002/12/05 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_gtk.pm: fix syntax & style
-
- * lang.pm: try to fix charset2pango_font
- fix syntax & style
- add bind_textdomain_codeset
-
- * ugtk2.pm: remove unused $_lan
-
-2002/12/05 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * standalone/harddrake2, share/po/DrakX.pot, standalone/net_monitor: Fixed
- some typos or bad English
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/bs.po, share/po/ro.po, share/po/wa.po, share/po/Makefile,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/nl.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/lv.po, share/po/cs.po,
- share/po/bg.po, share/po/el.po, share/po/hu.po: updated po files
-
- * install_gtk.pm: two pango font names, for 10 and 12 sizes
- made some functions to retrieve pango font namese from lang/charset
-
- * share/gen_locales.sh, share/locales-skeleton.tar.bz2: Changed the way
- locale->encoding is handled; revert to the old way which was
- working.
- And changed the charset to use during install to UTF-8 for all but CJK
- locales,
- in the X11 locale config files and in lang.pm;
- So, the same values of LC_* variables are used as before; but they
- should
- point, in glibc and in X11, to UTF-8 locales now
-
- * lang.pm: made some functions to retrieve pango font namese from
- lang/charset
- Changed the way locale->encoding is handled; revert to the old way which
- was
- working.
- And changed the charset to use during install to UTF-8 for all but CJK
- locales,
- in the X11 locale config files and in lang.pm;
- So, the same values of LC_* variables are used as before; but they
- should
- point, in glibc and in X11, to UTF-8 locales now
-
-2002/12/05 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm: parameter passing using $_ is bad
-
- * any.pm: format => sub { ...} doesn't pass parameter as $_, but as $_[0]
-
- * printer/main.pm: $_ was not localized, fixing (and cleanup)
-
- * bootlook.pm: fix typo, be perl_checker compatible
- packages should not "use lib qw(/usr/lib/libDrakX)"
-
- * partition_table.pm: replace "map $_->{normal}, @l" with "map {
- $_->{normal} } @l"
- (the other form is perl_checker-deprecated)
-
- * standalone.pm: remove unused variables or rename them with an underscore
- (eg: $o becomes $_o)
-
-2002/12/05 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/mousedrake: gtk+2 port (how difficult it was ...)
-
- * network/netconnect.pm: gtk+-2 port
-
- * c/Makefile.PL: glib-config is obsolete now
- gtk+-2 port
-
- * modules/interactive.pm: bug fix
-
- * standalone/drakTermServ, standalone/drakconnect: use gtkflush()
-
- * drakxtools.spec: pre gtk+2 work snapshot for mcc (mandrake_release() and
- the like
-
- * standalone/drakgw: gtk+2 fixes
-
- * bootlook.pm: use gtkflush()
- start gtk+2 port; perl-gtk2 is expected to implement
- Gtk::Image->set_from_pixbuf()
-
- * standalone/drakautoinst: use gtkflush()
- gtk+2 port
-
- * standalone/harddrake2: s/describe/describes/
-
- * standalone/drakfont: fix gtk+-2 port
- don't use anymore deprecated widgets
-
- * services.pm: drakxservices' gtk+-2 port
-
- * standalone/logdrake: fix gtk+2 port
-
-2002/12/04 adesmons
-
- * network/netconnect.pm, network/tools.pm, network/network.pm,
- network/modem.pm: More data are now fetched from system instead of
- drakconnect conf file
-
-2002/12/04 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/locales-skeleton.tar.bz2: added recognition of locale named
- "en_US.UTF-8"
-
- * lang.pm: made 'en_US.UTF-8' the default locale for LC_* varaibles during
- isntall
-
- * share/fonts.tar.bz2: Put Nimbus Sans L as default font
- put back the default iso8859-15 fonts used by install.rc
-
- * install_gtk.pm: put "Nimbus Sans L" as used font
- try of Gtk2 font definitions
-
-2002/12/04 Pixel <pixel@mandrakesoft.com>
-
- * network/adsl.pm: remove unused variables or rename them with an
- underscore (eg: $o becomes $_o)
- syntax changes to make perl_checker happy
-
- * install_steps.pm: remove unused code (installCrypto)
- remove unused variables or rename them with an underscore (eg: $o
- becomes $_o)
- do not use "local *F"
-
- * install_steps_interactive.pm, install2.pm: remove unused code
- (installCrypto)
- remove unused variables or rename them with an underscore (eg: $o
- becomes $_o)
-
- * interactive.pm: remove unused variables or rename them with an
- underscore (eg: $o becomes $_o)
- "require log" causes some pb, perl thinking that "log" is the log()
- function. So replace it with require 'log.pm' (perl_checker will handle
- this)
-
- * fsedit.pm: remove unused variables or rename them with an underscore
- (eg: $o becomes $_o)
- use if_() where possible (as reported by perl_checker)
- don't use "local *F"
-
- * interactive/stdio.pm: remove unused variables or rename them with an
- underscore (eg: $o becomes $_o)
- fix typo
-
- * crypto.pm: use if_() where possible (as reported by perl_checker)
-
- * my_gtk.pm, ugtk.pm, printer/printerdrake.pm, ugtk2.pm,
- install_steps_gtk.pm, printer/main.pm, fs.pm, bootloader.pm: remove
- unused variables or rename them with an underscore (eg: $o becomes $_o)
- use if_() where possible (as reported by perl_checker)
-
- * scanner.pm: remove unused variables or rename them with an underscore
- (eg: $o becomes $_o)
- $prefix is no good, replace it with $::prefix
-
- * partition_table/dos.pm, partition_table/sun.pm, partition_table/bsd.pm,
- partition_table/empty.pm, keyboard.pm, partition_table/lvm_PV.pm: do not
- use "local *F"
-
- * printer/office.pm, Xconfig/parse.pm, network/smb.pm, mouse.pm,
- resize_fat/io.pm, Xconfig/xfree4.pm, network/drakfirewall.pm,
- Xconfig/main.pm, diskdrake/smbnfs_gtk.pm, partition_table.pm,
- printer/common.pm, diskdrake/interactive.pm, pkgs.pm,
- install_steps_auto_install.pm, diskdrake/hd_gtk.pm, Xconfig/monitor.pm,
- install_any.pm, diskdrake/removable.pm, network/isdn.pm, swap.pm,
- resize_fat/directory.pm, devices.pm, commands.pm,
- install_interactive.pm, printer/gimp.pm, any.pm, interactive/http.pm,
- printer/detect.pm, ftp.pm, services.pm, interactive/newt.pm,
- resize_fat/dir_entry.pm, network/ethernet.pm,
- Xconfig/resolution_and_depth.pm, Xconfig/test.pm, diskdrake/dav.pm,
- network/smbnfs.pm, interactive/gtk.pm, network/nfs.pm: remove unused
- variables or rename them with an underscore (eg: $o becomes $_o)
-
- * standalone.pm: no need to "require common", it is "use"d
- "require log" causes some pb, perl thinking that "log" is the log()
- function. So replace it with require 'log.pm' (perl_checker will handle
- this)
-
- * network/tools.pm: remove unused variables or rename them with an
- underscore (eg: $o becomes $_o)
- my' variables as needed
-
- * security/main.pm, network/modem.pm: remove unused variables or rename
- them with an underscore (eg: $o becomes $_o)
- syntax changes to make perl_checker happy
- syntax changes to make perl_checker happy
-
- * network/network.pm: remove unused variables or rename them with an
- underscore (eg: $o becomes $_o)
- syntax changes to make perl_checker happy
- use if_() where possible (as reported by perl_checker)
-
- * network/netconnect.pm: remove unused variables or rename them with an
- underscore (eg: $o becomes $_o)
- - %l is not used, so why declare it??
- - in network::netconnect::main(), declare @l as it should be. But the
- code is really wrong, it NEEDS fixing (bis)
- syntax changes to make perl_checker happy
- use if_() where possible (as reported by perl_checker)
- syntax changes to make perl_checker happy
-
- * partition_table/mac.pm, modules.pm, partition_table/raw.pm, loopback.pm:
- remove unused variables or rename them with an underscore (eg: $o
- becomes $_o)
- do not use "local *F"
-
- * partition_table/gpt.pm: remove unused variables or rename them with an
- underscore (eg: $o becomes $_o)
- fix typo ($hd is not available in read_header(), so don't use it)
- do not use "local *F"
-
-2002/12/04 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/harddrake2:
- - free objects non freeed by gtk+ (the eternal gobject vs boxed types
- debat)
- - remove dead code
- - use ->append_set() everywhere
- - strip again vendor name from displayed string (aka keep only the
- model description)
- - enfoce pixel style : remove () from method calls
-
- * harddrake/data.pm: display "cpu #<XX>: <name>" for cpus
-
- * harddrake/TODO: update
-
-2002/12/04 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm: use option tty7 to force X server to be on tty7
- (instead of opening tty5 and
- tty6 so that the next available tty is tty7)
-
-2002/12/04 uid580
-
- * harddrake/ui.pm: kill "used by only one" harddrake::ui module,
- move its content to standalone/harddrake2
- cleanups
- hide config buttons when switching from a configurable device to a non
- configurable one
- fix gtktext_insert() usage
- gtk+2 port, yeah baby :-)
-
- * security/main.pm: share common options
-
- * pkgs.pm: perl_checker
-
- * standalone/harddrake2, harddrake/data.pm: kill "used by only one"
- harddrake::ui module,
- move its content to standalone/harddrake2
-
- * standalone/drakxservices: strict mode
-
- * ugtk2.pm: reverse
- clean up
-
- * security/msec.pm:
- - fix obvious pixel typo (s/if/if_/)
- - no need to maintain dummy documentation about something which is
- called only in one place
- - simplify
-
-2002/12/03 dam's <dams@idm.fr>
-
- * any.pm: allow #, and other characters in phone number
-
-2002/12/03 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/network.c: gcsux
-
- * pkgs.pm, network/tools.pm: make it $::testing aware
-
- * ugtk2.pm: misc fixes
-
- * interactive/gtk.pm, diskdrake/hd_gtk.pm, install_steps_gtk.pm, mouse.pm,
- services.pm, install_gtk.pm, diskdrake/smbnfs_gtk.pm: gtk2
-
-2002/12/03 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/et.po, share/po/ja.po, share/po/vi.po: updated Estonian and
- Vietnamese files; fixed typo in Japanese file
-
-2002/12/03 Pixel <pixel@mandrakesoft.com>
-
- * raid.pm: use output()
-
- * network/tools.pm: cleanup use of filehandles
-
- * detect_devices.pm: do not use "local my $F, ...", use "local(my $F, ...)
- instead
- do not use "local *F", use run_program::get_stdout() or "local $F"
- instead
-
- * scanner.pm, install_any.pm, timezone.pm, partition_table.pm: do not use
- "local *F", use "my $F" or output() instead
-
- * install_steps.pm: do not use "local my $F, ...", use "local(my $F, ...)
- instead
-
- * network/network.pm (read_resolv_conf): simplify
-
- * Xconfig/test.pm, devices.pm: do not use "local my $F, ...", use
- "local(my $F, ...) instead
- do not use "local *F"
-
- * commands.pm: do not use "local my $F, ...", use "local(my $F, ...)
- instead
- remove pack_ and unpack_ (unused)
-
- * security/msec.pm: fix typo
- simplify (esp. use cat_)
- (get_value): cleanup
-
- * fs.pm: one need run_program::raw() to use options
-
- * common.pm: do not use "local my $F, ...", use "local(my $F, ...) instead
- (formatXiB): simplify
- use "my $F" instead of "local *F" (and cleanup)
-
- * network/nfs.pm (find_exports): use run_program::raw + stdout
-
-2002/12/03 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/logdrake, ugtk2.pm: add gtktext_append() and uses it
-
-2002/12/03 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * common.pm, c/stuff.xs.pl: workaround perl sprintf bug when some
- parameters are utf8 and some not
-
- * ugtk2.pm: titisux, revert the pango pixels stuff
-
-2002/12/03 uid551
-
- * share/fonts.tar.bz2: First try of fonts for Xft2
-
- * share/po/zh_CN.po, share/po/pt_BR.po: updated Brazilian and Chinese
- files
-
-2002/12/02 adesmons
-
- * network/netconnect.pm, network/network.pm, network/modem.pm,
- standalone/drakconnect, network/adsl.pm: Some data are now fetched from
- system instead of drakconnect conf file (adsl, ppp, ifcfg-eth)
-
-2002/12/02 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
- share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: updated
- pot file
-
-2002/12/02 Pixel <pixel@mandrakesoft.com>
-
- * standalone/adduserdrake: remove commented code
-
- * proxy.pm: this package is unused, no need to keep it
-
- * install_steps.pm: use output_with_perm()
- use $::prefix
- any::runlevel() doesnt need the prefix anymore
-
- * Xconfig/card.pm: don't use $_
-
- * bootloader.pm: use output()
-
- * fs.pm: formatting timeout is now 1 hour
- remove the duplicate mke2fs (fixes buggy 1.225 change)
- use append_to_file()
-
- * install_steps_interactive.pm: any::get_autologin() doesnt modify $o, it
- returns a hash
- use $::prefix
-
- * network/network.pm (add2hosts): use output and pixelization
-
- * any.pm: use output_with_perm()
- any::get_autologin() doesnt modify $o, it returns a hash
- use $::prefix
- (get_autologin): $o->{autologin} is set to the chosen user only if
- AUTOLOGIN is set (it now mirrors what set_autologin() does)
- any::runlevel() doesnt need the prefix anymore
- use output and append_to_file
-
- * common.pm (set_alternative): simplify
- (files_exist): simplify
-
- * Xconfig/main.pm: any::runlevel() doesnt need the prefix anymore
-
- * Xconfig/various.pm:
- - any::runlevel() doesnt need the prefix anymore
- - fix use of any:runlevel()
-
- * printer/main.pm, printer/office.pm: simplify
-
- * network/isdn.pm, network/netconnect.pm, mouse.pm, network/smb.pm,
- network/tools.pm: use output_with_perm()
-
- * Makefile: adapt "make test_pms" to new perl_checker
-
- * bootlook.pm:
- - use any::get_autologin and any::set_autologin
- - any::set_autologin doesn't set /etc/sysconfig/autologin to perm 600,
- is it needed??
- use any::runlevel()
-
-2002/12/02 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/drakbug: fix gtk2 port
-
- * standalone/logdrake: make append option be usable as other ones
- use named tags for color rather than rgbt triplet,
- waiting for full foreground-gdk support in perl-gtk2
- - gtk2 port
- - add a note to remember to try gtkhtml instead of TextView
- - make wait message be transcient and modal (we should share some
- create_*_dialog() around logdrake/mcc/drakfloppy/rpmdrake)
- - fixes for 'strict ref'
-
- * security/main.pm, standalone/drakbackup, standalone/drakconnect:
- - gtk2 port
- - perl_checker fixes
-
- * standalone/drakgw:
- - fix gtk2 port
- - let it work with kernel 2.5 too
-
- * docs/porting-ugtk: add a tool to ease gtk2 port.
- this is not the rule of thumb but basic stuff.
-
- * standalone/drakTermServ, standalone/drakfont:
- - gtk2 port
- - consolidate some code in text_view()
- - perl_checker fixes
-
- * ugtk2.pm: make append option be usable as other ones
- gtkfontinfo() is bugged since it uses a C macro which is
- (oh surprise) not in binary library .... :
- $fontinfo{$_} = Gtk2::Pango->PANGO_PIXELS($metrics->$func);
- - use useless when needed
- - gtktext_insert() : add an append argument to prevent overwriting
- already present text in TextBuffer
- - gtkfontinfo() is bugged since it uses a C macro which is
- (oh surprise) not in binary library .... :
- $fontinfo{$_} = Gtk2::Pango->PANGO_PIXELS($metrics->$func);
-
-2002/11/28 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * raid.pm: testing aware
-
- * any.pm: load_category__prompt: use formatAlaTeX
-
-2002/11/28 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/et.po: Updated Estonian file
-
- * share/po/pt.po: Updated Portuguese file
-
-2002/11/28 Pixel <pixel@mandrakesoft.com>
-
- * commands.pm: fix "ps" and "df" (were broken due to localization of *DF
- and *PS)
-
- * bootlook.pm, network/adsl.pm, printer/printerdrake.pm: perl_checker
- adaptations
- perl_checker adaptations
-
- * resize_fat/c_rewritten.pm: to export, one needs to inheritate from
- Exporter
-
- * resize_fat/io.pm: perl_checker adaptations
- remove debug code
-
- * Makefile: fix removing of pods when installing pms
-
- * printer/cups.pm, any.pm, install_steps_gtk.pm, printer/main.pm,
- printer/detect.pm, printer/common.pm, network/network.pm, ftp.pm,
- services.pm, ugtk.pm, network/isdn.pm, network/ethernet.pm,
- resize_fat/fat.pm, install_steps_interactive.pm, network/netconnect.pm,
- lang.pm, network/tools.pm, install_any.pm, printer/gimp.pm,
- partition_table.pm, harddrake/ui.pm: perl_checker adaptations
-
- * Xconfig/test.pm: in the test snippet, add "use common" to have access to
- N()
-
- * bootloader.pm:
- - compare labels case insensitively (thanks to D.Faure)
- - when reading existing config, remove double quotes around the label
- (thanks to D.Faure)
- - add double quotes around the label instead of removing spaces (need
- checking installkernel compatibility)
- perl_checker adaptations
-
-2002/11/28 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * services.pm:
- - my_gtk->main already do the kill 'USR2'
- and hardcoding signal number was bad anyway
- - use gtkflush()
- - my_gtk->main already do the kill 'USR2'
- and hardcoding signal number was bad anyway
- - use gtkflush()
-
- * standalone/drakperm: one more fix
- - "use strict" fixes
- - perl_checker fixes
-
- * standalone/drakgw: fix
-
- * ugtk2.pm: perl_checker fixes
- fix create_factory_menu*(): since we get an object and not anymore a
- hash, let just return factory as another variable...
-
-2002/11/27 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * ugtk2.pm: reflect calling style change of PANGO_PIXELS
-
-2002/11/27 Pixel <pixel@mandrakesoft.com>
-
- * printer/main.pm: perl_checker adaptations
- (configure_hpoj): functions dynamically loaded from /usr/sbin/ptal-init
- are
- now loaded in printer::hpoj namespace (needs testing)
-
- * .perl_checker: update for new packages (Gtk2), and remove the
- now-handled-by-perl_check packages
-
- * Xconfig/card.pm, bootlook.pm, network/network.pm, log.pm,
- printer/office.pm, help.pm, scanner.pm, install_steps.pm,
- Xconfig/parse.pm, install_gtk.pm, network/isdn.pm, interactive.pm,
- my_gtk.pm, swap.pm, resize_fat/fat.pm, partition_table/gpt.pm,
- Newt/Newt.pm, resize_fat/c_rewritten.pm, mouse.pm, resize_fat/io.pm,
- standalone.pm, lang.pm, devices.pm, install2.pm, commands.pm,
- install_interactive.pm, printer/gimp.pm, partition_table.pm,
- Xconfig/xfree3.pm, any.pm, install_steps_gtk.pm, printer/detect.pm,
- interactive/http.pm, diskdrake/interactive.pm, ftp.pm,
- interactive/stdio.pm, interactive/newt.pm, harddrake/sound.pm, fs.pm,
- ugtk.pm, network/ethernet.pm, Xconfig/resolution_and_depth.pm,
- bootloader.pm, Xconfig/test.pm, harddrake/data.pm, Xconfig/monitor.pm,
- network/adsl.pm, fsedit.pm, modules.pm, network/tools.pm,
- network/isdn_consts.pm, install_any.pm, printer/printerdrake.pm,
- timezone.pm, harddrake/ui.pm, c/stuff.pm: perl_checker adaptations
-
-2002/11/27 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/drakgw:
- - Gtk2 port
- - perl_checker fixes
-
- * standalone/drakbug:
- - Gtk2 port
- - one perl_checker fix
-
- * standalone/mousedrake: restore previous behaviour and exit early only in
- cancel case
- fix bad interaction between mcc & mousedrake.
- interactive already take care of it through my_gtk...
-
-2002/11/26 gbeauchesne
-
- * install_any.pm: Only all.img is currently used on x86-64, ia64 and ppc.
- Therefore, don't
- complain nor try to stat some cdrom.img on first CD.
-
-2002/11/26 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * unused/demo-frozen-bubble.patch: forgot to commit it (.cvsignore
- containing * doesn't help)
-
- * ugtk2.pm: fix typo (gtkstring_size) thx to perl checker
- fix shadow bug due to wrong extraction of allocation data
- two small fixes
- add
-
- * Makefile: ugtk2.pm is temporarily not in drakxtools but in perl-GTK2
-
-2002/11/26 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm: changed values for console font when en_US is chosen
-
- * share/po/pt.po, share/po/pt_BR.po: Updated Portuguese files
-
-2002/11/26 Pixel <pixel@mandrakesoft.com>
-
- * interactive.pm, standalone.pm: no need to call common::backtrace(), use
- directly backtrace() (was it written that way to workaround a bug in old
- perl_checker?)
-
- * ugtk2.pm: make perl_checker happy
-
- * diskdrake/removable_gtk.pm: fix undeclared variable
-
-2002/11/26 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * printer/main.pm: simplify some stuff
-
- * harddrake/data.pm: fix eating too much items
-
- * modules.pm, printer/detect.pm, run_program.pm, services.pm: perl_checker
- fixes
-
- * printer/printerdrake.pm: miaouh
- simplify
-
-2002/11/25 François Pons <fpons@mandrakesoft.com>
-
- * tools/oem-prepare: assume any hardware is found (forget to commit).
-
- * rescue/tree/etc/oem-all: synced with latest change to HP version (and
- now HP is in CVS).
-
- * network/netconnect.pm: removed old code (commented out).
-
- * diskdrake/interactive.pm: revert previous change useless (another
- problem).
- added a trailing true value for perl being happy.
-
- * network/ethernet.pm: add support ADIModem.
- removed reference to ...->{nb_cards} no more used.
- removed 2 labels and 2 gotos by a very simple while, dam's is really
- great
- sometimes ;-)
-
- * network/adsl.pm: add support for Sagem USB Modem (for free.fr ;-))
-
- * network/network.pm: added is_domain_name that checks validity of a
- domain name.
-
- * detect_devices.pm: add getSagem() to detect Sagem USB ADSL Modem.
-
- * install_any.pm: fixes perl-checker importation of bug, getFile is
- complex for perl newbies, do
- not rely on perl-checker for trying to "fix" it else it won't run
- anymore ;-)
- make it work (changed *F => *GETFILE and added a return) else perl has
- some
- problem using it as reference to file handle.
-
- * mdk-stage1/dietlibc/include/sys/mount.h: fixes for new kernel headers
- (It should problably be kernel-headers to be
- modified but it is *much* faster to modify yoyotte's works).
-
-2002/11/25 Pixel <pixel@mandrakesoft.com>
-
- * pkgs.pm: fix typo (openInstallLog *must* return the filehandle)
- don't use filehandle *pkgs::LOG, use a my'ed $LOG
- since we use the "fileno", perl doesn't know we're still using the
- filehandle, and so closes it, and :-(
-
- * network/netconnect.pm: in network::netconnect::main(), declare @l as it
- should be. But the code is really wrong, it NEEDS fixing
- $modem is redefined 2 lines below its first declaration. this first
- declaration is useless (??)
-
- * standalone/diskdrake: oops, didn't see titi modified option handling
- fix handling of options --expert and --testing
-
- * install_any.pm: use a scalar instead of a typeglob (let typeglobs be
- deprecated!)
-
- * lang.pm: fix handling of "all" languages selected
-
- * network/isdn.pm: since $mouse is undefined, replace it with undef (??)
-
- * diskdrake/interactive.pm: make perl_checker happy
-
- * network/tools.pm:
- - $up was my-ed inside the if-then block though it was used outside
- the block (hint: buggy code)
- - my @country as it should be
-
-2002/11/25 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone.pm:
- - simplify --embedded handling
- - stricter matching on --no-autoc
-
- * ugtk.pm:
- - simplify mcc stuff
- - prevent bad stacking of right icons in mcc at startup
-
- * detect_devices.pm: remove dobles
-
- * my_gtk.pm: warn about broken programs that misuse my_gtk
- display in mcc when embedded only when ready to interact with the user
-
- * harddrake/ui.pm: interactive->exit call my_gtk->exit which destroy the
- window
-
- * common.pm, standalone/drakbug, standalone/drakbug_report:
- s/mdk_rel/mandrake_release/
- consolidate some stuff from standalone tools & mcc into mdk_rel()
-
-2002/11/22 François Pons <fpons@mandrakesoft.com>
-
- * mouse.pm: incorporate 8.2 HP fixes back in cooker.
-
-2002/11/21 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakautoinst: use ask_warn when I should, and remove a one
- year old debug statement (???)
-
-2002/11/21 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/net_monitor: switch latest tools that still manually handle
- embedding
- to use my_gtk
- - perl_checker fixes
- - use my_gtk to transparently handle embedding
-
- * standalone/drakproxy: this one requires any
-
- * standalone/drakbug:
- - Gtk::Gdk::ImlibImage is not needed
- - perl_checker fixes
- - fix interactive exit (s/in/$in/ ->exit)
-
- * standalone/drakfont, standalone/drakconnect, standalone/drakTermServ,
- standalone/drakgw: switch latest tools that still manually handle
- embedding
- to use my_gtk
-
- * standalone/drakbackup: switch latest tools that still manually handle
- embedding
- to use my_gtk
- remove dead code about option managment which is
- obsoleted by standalone
-
-2002/11/20 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/ui.pm: hide the "please wait" at the latest stage
-
- * ugtk.pm:
- - api change for latest harddrake
- - s/$x ne ''/$x/
-
- * security/msec.pm: simplify
- cleanups
-
- * printer/printerdrake.pm: cleanups
- update to new security::level scheme
-
- * standalone/drakbackup: message_noconf_box() and message_underdevel()
- were quite
- identical. let consolidate them
- message_noselect_box() and message_noselect_what_box() were just
- identical (but for their label).
- let consolidate this
- send_mail_pb() and client_ftp_pb() were just identical (modulo their
- label)
- kill heavy duplication in get_cd_info()
- perl_checker fixes
- - don't gratuitously copy a 70 lines help text with typo changes,
- translators will kill us
- - use strict, fix it
- s/$x ne (0|'')/$x/
-
- * standalone/logdrake: do not use print_hello() callback, anyway it does
- not exists (but in
- drakfloppy ...)
- - logdrake does not need any
- - use ugtk for gtkcolor & co
- - perl_checker fixes
-
- * standalone/draksec, standalone/service_harddrake, standalone/drakgw,
- standalone/draksound: perl_checker fixes
-
- * standalone/draksplash: perl_checker fixes
- - fixes for "use strict" (still some work to do since some variables
- are created through ${ $x.$y }
- - use my_gtk :
- o clean code
- o transparently manage embedding
-
- - perl_checker fixes
-
- * standalone/drakproxy, standalone/drakupdate_fstab: fix blind copyright
- copy
-
- * interactive/stdio.pm, standalone/drakbug, standalone/drakTermServ: s/$x
- ne (0|'')/$x/
-
- * standalone/drakfloppy: perl_checker fixes
- more perl_checker fixes
- - don't require unused modules
- - use my_gtk to transparently handle embedding
- - fixes for strict mode
- - fixes for perl_checker (more to come after lunch)
-
- * bootlook.pm: this is a module, not a program
-
-2002/11/19 Frederic Lepied <flepied@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
- share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/bs.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, network/ethernet.pm, share/po/az.po, share/po/zh_TW.po,
- standalone/drakconnect, share/po/zh_CN.po, share/po/pt.po,
- share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/it.po,
- share/po/nl.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/lv.po, share/po/hu.po: default dhcp client is dhcp-client
-
-2002/11/19 gbeauchesne
-
- * mdk-stage1/log.c: Don't forget to va_end() what was va_copy()'ed.
-
-2002/11/19 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * keyboard.pm, share/keyboards.tar.bz2: Added Malayalam keyboard
-
- * share/po/fi.po: updated Finnish file
-
-2002/11/19 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * security/main.pm, any.pm, security/level.pm, install_steps.pm:
- - fix duplication of sec level setting:
- merge any::get_secure_level() with
- secure::msec::get_secure_level()
- - move security level functions from secure::msec
- to secure::level
- - uses secure::level in install_steps
- - fix duplication of security level labels
- - draksec: use same strings in drakx, got nice
- translations
- - get_default_checks(): make it more readable
-
- * mouse.pm: perldoc: explain basic usage of mouse.pm, regarding
- problems that show up in early interaction between
- harddrake::data and mouse
-
- * harddrake/ui.pm:
- - remove debugging code
- - document menu building
- - add option menu check boxes to prevent (slowly) detecting
- printers and modems
- - remove warnings on usb devices
- - explains more cpu bugs
- - eventually fix --testing effect
- --testing handling was erronously reverted
-
- * security/msec.pm:
- - fix duplication of sec level setting:
- merge any::get_secure_level() with
- secure::msec::get_secure_level()
- - move security level functions from secure::msec
- to secure::level
- - uses secure::level in install_steps
- - fix duplication of security level labels
- - draksec: use same strings in drakx, got nice
- translations
- - get_default_checks(): make it more readable
- previous example in perldoc was buggy;
- put one that really works
-
- * diskdrake/hd_gtk.pm, diskdrake/interactive.pm: make perldoc working
-
- * harddrake/data.pm: don't display two times some usb mice
-
- * help.pm: one can now alter settings there
-
-2002/11/18 Pixel <pixel@mandrakesoft.com>
-
- * network/netconnect.pm, Xconfig/card.pm, bootlook.pm, printer/main.pm,
- printer/detect.pm, Xconfig/monitor.pm, network/adsl.pm, standalone.pm,
- pkgs.pm, harddrake/sound.pm, printer/office.pm, network/isdn.pm,
- printer/printerdrake.pm, printer/gimp.pm, harddrake/ui.pm: make
- perl_checker happy
-
-2002/11/18 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/net_monitor, standalone/drakfont: drakbug, drakfont,
- drakperm, draksplash, drakxtv, harddrake2,
- net_monitor : final update for common cli options/help manager
- update copyright years
-
- * harddrake/TODO: final switch of drakbackup, logdrake and scannerdrake
- to new option scheme
-
- * standalone/adduserdrake, standalone/drakxservices, standalone/livedrake,
- standalone/keyboarddrake, standalone/drakboot, standalone/mousedrake,
- standalone/drakconnect, standalone/draksound:
- - standalone.pm :
- o make it be 'use strict' aware
- o factorize options managment in one place
- - standalone tools :
- o they all now support -h|--help -v|--version, ...
- o they can add their own options to %standalone::usages
- - harddrake : use std --testing/$::testing rather than its own
- --test option
-
- * standalone/draksplash, standalone/harddrake2, standalone/drakbug,
- standalone/drakperm: drakbug, drakfont, drakperm, draksplash, drakxtv,
- harddrake2,
- net_monitor : final update for common cli options/help manager
-
- * drakxtools.spec: 9.1-0.2dmk
-
- * standalone/drakautoinst, standalone/printerdrake, standalone/XFdrake,
- standalone/drakgw:
- - standalone.pm :
- o make it be 'use strict' aware
- o factorize options managment in one place
- - standalone tools :
- o they all now support -h|--help -v|--version, ...
- o they can add their own options to %standalone::usages
- - harddrake : use std --testing/$::testing rather than its own
- --test option
- update copyright years
-
- * standalone/drakfloppy:
- - standalone.pm :
- o make it be 'use strict' aware
- o factorize options managment in one place
- - standalone tools :
- o they all now support -h|--help -v|--version, ...
- o they can add their own options to %standalone::usages
- - harddrake : use std --testing/$::testing rather than its own
- --test option
- remove old dead commented i18n code that kept being copied around
-
- * standalone/diskdrake: final switch of drakbackup, logdrake and
- scannerdrake
- to new option scheme
- - standalone.pm :
- o make it be 'use strict' aware
- o factorize options managment in one place
- - standalone tools :
- o they all now support -h|--help -v|--version, ...
- o they can add their own options to %standalone::usages
- - harddrake : use std --testing/$::testing rather than its own
- --test option
- update copyright years
-
- * standalone/logdrake: final switch of drakbackup, logdrake and
- scannerdrake
- to new option scheme
- update copyright years
- - clean code sot that it runs under "use strict"
- - simplify date command construction, this is basic perl :-(
- - kill dead old commented code to handle i18n instead of relying on
- common shared modules
- remove old dead commented i18n code that kept being copied around
-
- * modparm.pm, modules/parameters.pm, modules/interactive.pm, any.pm:
- rename modparm as modules::parameters
-
- * standalone.pm: drakbug, drakfont, drakperm, draksplash, drakxtv,
- harddrake2,
- net_monitor : final update for common cli options/help manager
- typo fix
- switch drakTermServ to new option scheme
- rename modparm as modules::parameters
- final switch of drakbackup, logdrake and scannerdrake
- to new option scheme
- - standalone.pm :
- o make it be 'use strict' aware
- o factorize options managment in one place
- - standalone tools :
- o they all now support -h|--help -v|--version, ...
- o they can add their own options to %standalone::usages
- - harddrake : use std --testing/$::testing rather than its own
- --test option
-
- * standalone/drakxtv: drakbug, drakfont, drakperm, draksplash, drakxtv,
- harddrake2,
- net_monitor : final update for common cli options/help manager
- - standalone.pm :
- o make it be 'use strict' aware
- o factorize options managment in one place
- - standalone tools :
- o they all now support -h|--help -v|--version, ...
- o they can add their own options to %standalone::usages
- - harddrake : use std --testing/$::testing rather than its own
- --test option
-
- * bootlook.pm: switch to new help/options scheme
- update copyright years
-
- * harddrake/ui.pm:
- - standalone.pm :
- o make it be 'use strict' aware
- o factorize options managment in one place
- - standalone tools :
- o they all now support -h|--help -v|--version, ...
- o they can add their own options to %standalone::usages
- - harddrake : use std --testing/$::testing rather than its own
- --test option
- simplify code though my_gtk::gtkcolor
-
- * standalone/drakTermServ: switch drakTermServ to new option scheme
-
- * standalone/drakbackup, standalone/scannerdrake: final switch of
- drakbackup, logdrake and scannerdrake
- to new option scheme
- update copyright years
-
- * scanner.pm, standalone/drakproxy, security/msec.pm,
- printer/printerdrake.pm: update copyright years
-
-2002/11/17 alus
-
- * share/po/pl.po: fix
-
-2002/11/16 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/zh_CN.po, share/po/pt.po: updated Portuguese and Chinese files
-
-2002/11/15 Pixel <pixel@mandrakesoft.com>
-
- * any.pm, run_program.pm, interactive.pm, c.pm, ftp.pm:
- s/wantarray/wantarray()/
-
-2002/11/15 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * Xconfig/monitor.pm: perl_checker fix
-
- * harddrake/data.pm: s/usbvideo/usbvision/
-
- * standalone/drakxtv: typo fix
-
- * printer/printerdrake.pm:
- - more cleanups
- - don't display messages if we're not going to remove/install some
- packages
- cleanups
- cleanups
- printerdrake::install_spooler() : fix heavy duplication of code
- by using %spoolers data structure (function shrunked by 66%)
- consolidate some stuff into printer::data::spoolers{XXX}{alternatives}
- so that all alternatives get centralized in one data structure
- cleanups
-
- * printer/data.pm: printerdrake::install_spooler() : fix heavy duplication
- of code
- by using %spoolers data structure (function shrunked by 66%)
- consolidate some stuff into printer::data::spoolers{XXX}{alternatives}
- so that all alternatives get centralized in one data structure
-
- * security/main.pm:
- - use run_program rather than raw system
- - kill useless show_msec_help()
- - kill commented remanant code of help buttons
- - add tooltip with default values on combos & entries
- - log about security administrator changes only when we do some
- - factorize some code into new_editable_combo() and
- set_default_tip()
-
- * Makefile.config, drakxtools.spec, harddrake/sound.pm,
- Makefile.drakxtools:
- - add missing printer directory
- - bump version to 9.1 like most of our packages
-
-2002/11/14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ro.po: updated Romanian file
-
- * standalone/drakfont: Make drakfont use ttmkfdir again, as it recognizes
- more encodings,
- use of parameter "-u" of ttmkfdir to always output unicode entries,
- call xftcache to create/update the Xftcache files (used by Xft),
- rewrite fonts.dir (with ttmkfdir) when removing a ttf file so it no
- longer appears on the font list, and execute "xset fp rehash" after
- adding/removing fonts, so the font list used by X server is
- synchronized.
-
-2002/11/14 Pixel <pixel@mandrakesoft.com>
-
- * printer/cups.pm, bootlook.pm, network/network.pm, resize_fat/main.pm,
- printer/office.pm, partition_table/dos.pm, scanner.pm, unused/scsi.pm,
- my_gtk.pm, swap.pm, install_steps_interactive.pm, Xconfig/xfreeX.pm,
- network/smb.pm, devices.pm, crypto.pm, commands.pm, printer/gimp.pm,
- any.pm, install_steps_gtk.pm, printer/main.pm, printer/detect.pm,
- interactive/stdio.pm, interactive/newt.pm, fs.pm,
- resize_fat/dir_entry.pm, ugtk.pm, run_program.pm, bootloader.pm,
- steps.pm, harddrake/data.pm, diskdrake/hd_gtk.pm, interactive/gtk.pm,
- detect_devices.pm, network/tools.pm, install_any.pm,
- printer/printerdrake.pm, harddrake/ui.pm:
- - add/remove spaces to make perl_checker happy
- - remove redundant parentheses
- - add some parentheses for clarity
-
- * partition_table/mac.pm, ftp.pm, pkgs.pm: make perl_checker happy
- - add/remove spaces to make perl_checker happy
- - remove redundant parentheses
- - add some parentheses for clarity
-
- * partition_table/gpt.pm, partition_table/raw.pm, partition_table.pm: make
- perl_checker happy
-
-2002/11/14 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/v4l.pm: resync with bttv-0.7.100 and saa7134-0.2.2snapshot
-
- * drakxtools.spec: 1.1.12-1mdk
-
- * security/main.pm:
- - kill unused myexit()
- - perl_checker fixes
-
- * printer/main.pm, printer/data.pm, printer/STATUS, printer/office.pm,
- printer/gimp.pm:
- - printer::data : export all data structures
- - cleanups
- - all code is now runnable in strict mode
-
- * security/msec.pm:
- - perl_checker fixes
- - clean code
- - simplify config_function()
-
- * harddrake/ui.pm: explain the detect() vs new() delayed gui construction
- when embedded
- display port for network printers too
-
-2002/11/13 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sk.po, share/po/ru.po: updated Slovak and Russian files
-
-2002/11/13 Pixel <pixel@mandrakesoft.com>
-
- * printer/common.pm: fix syntax error
-
- * Xconfig/various.pm, http.pm, network/network.pm, network/modem.pm,
- resize_fat/main.pm, install_gtk.pm, interactive.pm, my_gtk.pm, mouse.pm,
- printer/data.pm, devices.pm, lang.pm, install2.pm, install_steps_gtk.pm,
- interactive/http.pm, partition_table/mac.pm, pkgs.pm,
- interactive/newt.pm, network/ethernet.pm, standalone/XFdrake, steps.pm,
- harddrake/data.pm, keyboard.pm, network/adsl.pm, fsedit.pm,
- install_any.pm, harddrake/ui.pm: add/remove spaces to make perl_checker
- happy
-
- * bootlook.pm, printer/office.pm, scanner.pm, install_steps.pm,
- network/isdn.pm, install_steps_interactive.pm, network/netconnect.pm,
- harddrake/v4l.pm, printer/main.pm, harddrake/sound.pm, ugtk.pm,
- network/tools.pm, printer/printerdrake.pm: add/remove spaces to make
- perl_checker happy
- add/remove spaces to make perl_checker happy
-
-2002/11/13 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * printer/printerdrake.pm: simplify install_spooler() but there's still
- lot of duplication there
- (some work for tomorow)
- - final switch to $::prefix
- - simplify main::get_copiable_queues(), main::setcupslink()
- - s/unless (X ne Y)/if (X eq Y)/
- - set_usermode() : ensure we add the line if it didn't exists
-
- * harddrake/ui.pm: display floppy driver type as well as mouse type
-
- * printer/office.pm: fix files lookup
- printer::common: export function
-
- * printer/gimp.pm: don't reinvent the wheel, use common
-
- * detect_devices.pm: fix vendor/model spliting when there's neither space
- nor separator
-
- * printer/common.pm: printer::common: export function
-
- * printer/main.pm:
- - final switch to $::prefix
- - simplify main::get_copiable_queues(), main::setcupslink()
- - s/unless (X ne Y)/if (X eq Y)/
- - set_usermode() : ensure we add the line if it didn't exists
- - set_usermode() : don't reinvent the wheel, use substInFile
- - get_usermode() : ditto, use getVarsFromSh
-
- * drakxtools.spec: pixel neither know how to update cvs nor comitting its
- changes
-
-2002/11/12 erwan
-
- * mdk-stage1/network.c, mdk-stage1/stage1.h: Cleaning old stuff
-
-2002/11/12 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/da.po: updated Danish file
-
-2002/11/12 Pixel <pixel@mandrakesoft.com>
-
- * security/main.pm, bootlook.pm, printer/main.pm, printer/detect.pm,
- partition_table/mac.pm, diskdrake/interactive.pm, pkgs.pm, services.pm,
- printer/office.pm, ugtk.pm, run_program.pm,
- install_steps_auto_install.pm, bootloader.pm, standalone/XFdrake,
- network/netconnect.pm, lang.pm, install2.pm, modules.pm, commands.pm,
- printer/printerdrake.pm, printer/gimp.pm, partition_table.pm: add/remove
- some spaces to make perl_checker happy
-
- * diskdrake/removable_gtk.pm: add "use common" for N()
-
-2002/11/12 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * printer/main.pm: kill set_prefix()
- printer related modules cleaning :
- - create the printer/ hierarchy
- - split services related stuff into services.pm & printer::services,
-
- - move things that've nothing to do with printers into common.pm
- (alternatives, permissions, ...)
-
- - move eveything related to cups, gimp-print, detection,
- {star,open}office to the corresponding splited printer:: module
-
- - big consolidation of printer::office (it was obvious there were tons
- of duplication between staroffice and openoffice managment)
-
- - move other stuff into printer::main, printer::common,
-
- status : print.pm has been heavily splited (now one can begin to
- understand the little bits).
- printerdrake still needs to be splited/cleaned and eventually removed
- since printer/printerdrake modules separation is not understandable by
- other people
-
- till, in printer::gimp, $lprcommand is neither declared nor setted
- nowhere. idem in mdk9.0 ...
-
- * security/main.pm: fix _() -> N() conversion
-
- * install_steps_interactive.pm: resync with latest printerdrake
-
- * printer/printerdrake.pm: fix getSNMPModel() location
- printer related modules cleaning :
- - create the printer/ hierarchy
- - split services related stuff into services.pm & printer::services,
-
- - move things that've nothing to do with printers into common.pm
- (alternatives, permissions, ...)
-
- - move eveything related to cups, gimp-print, detection,
- {star,open}office to the corresponding splited printer:: module
-
- - big consolidation of printer::office (it was obvious there were tons
- of duplication between staroffice and openoffice managment)
-
- - move other stuff into printer::main, printer::common,
-
- status : print.pm has been heavily splited (now one can begin to
- understand the little bits).
- printerdrake still needs to be splited/cleaned and eventually removed
- since printer/printerdrake modules separation is not understandable by
- other people
-
- till, in printer::gimp, $lprcommand is neither declared nor setted
- nowhere. idem in mdk9.0 ...
-
- * drakxtools.spec: 1.1.12-1mdk
-
- * printer/cups.pm, printer/detect.pm, printer/common.pm,
- standalone/printerdrake, services.pm, printer/office.pm,
- printer/default.pm, printer.pm, printer/data.pm, common.pm,
- printer/services.pm, printerdrake.pm, printer/gimp.pm: printer related
- modules cleaning :
- - create the printer/ hierarchy
- - split services related stuff into services.pm & printer::services,
-
- - move things that've nothing to do with printers into common.pm
- (alternatives, permissions, ...)
-
- - move eveything related to cups, gimp-print, detection,
- {star,open}office to the corresponding splited printer:: module
-
- - big consolidation of printer::office (it was obvious there were tons
- of duplication between staroffice and openoffice managment)
-
- - move other stuff into printer::main, printer::common,
-
- status : print.pm has been heavily splited (now one can begin to
- understand the little bits).
- printerdrake still needs to be splited/cleaned and eventually removed
- since printer/printerdrake modules separation is not understandable by
- other people
-
- till, in printer::gimp, $lprcommand is neither declared nor setted
- nowhere. idem in mdk9.0 ...
-
- * standalone/drakxtv: don't offer to configure kernel for usbvision (no
- option for now)
- handle devices managed by usbvision too
-
- * install_steps.pm: update for new printerdrake
-
- * harddrake/data.pm: resync with printerdrake
- handle devices managed by usbvision too
- exclude more usb mice from unknown devices
-
-2002/11/11 alus
-
- * share/po/pl.po: updated
-
-2002/11/11 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/vi.po, share/po/ru.po: updated Russian and Vietnamese files
-
-2002/11/11 Pixel <pixel@mandrakesoft.com>
-
- * security/msec.pm:
- - replace ... =~ 'foo' with ... =~ /foo/
- - remove unneeded parentheses for things like ... if (...)
- add or remove spaces where need to please perl_checker
- - use "foreach" instead of "for" in list context
- - use "for" instead of "foreach" when used a la C
- various small syntax enhancements to please perl_checker
-
- * partition_table/sun.pm:
- - use "foreach" instead of "for" in list context
- - use "for" instead of "foreach" when used a la C
-
- * Xconfig/card.pm, bootlook.pm, my_gtk.pm, network/netconnect.pm,
- harddrake/data.pm, network/tools.pm, install_any.pm, security/main.pm,
- network/isdn.pm, harddrake/ui.pm:
- - replace ... =~ 'foo' with ... =~ /foo/
- - remove unneeded parentheses for things like ... if (...)
- add or remove spaces where need to please perl_checker
-
- * detect_devices.pm:
- - replace ... =~ 'foo' with ... =~ /foo/
- - remove unneeded parentheses for things like ... if (...)
- add or remove spaces where need to please perl_checker
- - do not use "foreach $var (...) {...}" use "foreach my $var (...)
- {...}" instead
- (only pb are functions called in {...} that could use $var, none found
- except in commands.pm)
- - various small syntax enhancements to please perl_checker
-
- * partition_table/mac.pm:
- - do not use "foreach $var (...) {...}" use "foreach my $var (...)
- {...}" instead
- (only pb are functions called in {...} that could use $var, none found
- except in commands.pm)
- - various small syntax enhancements to please perl_checker
-
- * pkgs.pm:
- - replace ... =~ 'foo' with ... =~ /foo/
- - remove unneeded parentheses for things like ... if (...)
- - do not use "foreach $var (...) {...}" use "foreach my $var (...)
- {...}" instead
- (only pb are functions called in {...} that could use $var, none found
- except in commands.pm)
- - various small syntax enhancements to please perl_checker
-
- * network/adsl.pm:
- - replace ... =~ 'foo' with ... =~ /foo/
- - remove unneeded parentheses for things like ... if (...)
- add or remove spaces where need to please perl_checker
- replace qq{...} with qq(...)
-
- * network/network.pm, mouse.pm, standalone.pm, network/drakfirewall.pm,
- partition_table.pm, partition_table/bsd.pm, ugtk.pm, Xconfig/monitor.pm,
- modules.pm, network/shorewall.pm, network/modem.pm, resize_fat/main.pm,
- resize_fat/any.pm, install_gtk.pm, unused/scsi.pm,
- resize_fat/directory.pm, lang.pm, devices.pm, harddrake/v4l.pm, any.pm,
- install_steps_gtk.pm, ftp.pm, services.pm, harddrake/sound.pm,
- Xconfig/test.pm, steps.pm, keyboard.pm, interactive/gtk.pm,
- partition_table/lvm_PV.pm, network/isdn_consts.pm: add or remove spaces
- where need to please perl_checker
-
- * standalone/drakfloppy: don't use <*> for globbing, use all or glob_
-
- * standalone/logdrake: replace q@...@ with q(...) or here_doc
-
- * interactive/stdio.pm, common.pm:
- - replace ... =~ 'foo' with ... =~ /foo/
- - remove unneeded parentheses for things like ... if (...)
- various small syntax enhancements to please perl_checker
-
- * http.pm, install_steps.pm, interactive/newt.pm, fs.pm, diskdrake/dav.pm:
-
- - replace ... =~ 'foo' with ... =~ /foo/
- - remove unneeded parentheses for things like ... if (...)
-
- * resize_fat/fat.pm:
- - use "foreach" instead of "for" in list context
- - use "for" instead of "foreach" when used a la C
- various small syntax enhancements to please perl_checker
-
- * standalone/draksplash, raid.pm, Xconfig/xfreeX.pm,
- partition_table/raw.pm: various small syntax enhancements to please
- perl_checker
-
- * install2.pm: add or remove spaces where need to please perl_checker
- replace availableMemory with availableMemory()
-
- * scanner.pm, commands.pm: add or remove spaces where need to please
- perl_checker
- - do not use "foreach $var (...) {...}" use "foreach my $var (...)
- {...}" instead
- (only pb are functions called in {...} that could use $var, none found
- except in commands.pm)
- - various small syntax enhancements to please perl_checker
-
- * install_steps_interactive.pm:
- - replace ... =~ 'foo' with ... =~ /foo/
- - remove unneeded parentheses for things like ... if (...)
- add or remove spaces where need to please perl_checker
- replace availableMemory with availableMemory()
-
- * network/ethernet.pm: add or remove spaces where need to please
- perl_checker
- various small syntax enhancements to please perl_checker
-
- * printerdrake.pm, printer.pm:
- - replace ... =~ 'foo' with ... =~ /foo/
- - remove unneeded parentheses for things like ... if (...)
- add or remove spaces where need to please perl_checker
- - use "foreach" instead of "for" in list context
- - use "for" instead of "foreach" when used a la C
- - do not use "foreach $var (...) {...}" use "foreach my $var (...)
- {...}" instead
- (only pb are functions called in {...} that could use $var, none found
- except in commands.pm)
- - various small syntax enhancements to please perl_checker
-
-2002/11/10 gbeauchesne
-
- * mdk-stage1/minilibc.c: Fix implementation of signal() for x86-64, adjust
- for new kernel-headers
-
-2002/11/10 Pixel <pixel@mandrakesoft.com>
-
- * interactive/http.pm: don't return a typeglob ref, return the typeglob
- (reference to typeglobs are
- soft references which doesn't increment the ref count)
-
- * network/tools.pm: don't return a typeglob ref, return the typeglob
- (reference to typeglobs are
- soft references which doesn't increment the ref count) (thanks to Gerard
- Patel
- for the precise bug report)
-
- * standalone/draksplash, standalone/drakperm, standalone/drakbug,
- bootlook.pm, standalone/harddrake2, standalone/printerdrake,
- standalone/logdrake, standalone/drakfloppy, standalone/localedrake:
- ensure "common" is imported to have N()
-
-2002/11/09 Pixel <pixel@mandrakesoft.com>
-
- * proxy.pm: fix typo
-
- * network/tools.pm:
- - do not use q{...} to please perl_checker
- - use <<'EOF' instead
- - at the same time, fix the "\n" at the beginning of the generated
- script
-
- * harddrake/data.pm: make perl_checker happy
-
-2002/11/08 Pixel <pixel@mandrakesoft.com>
-
- * printer.pm: fix my typos
-
- * my_gtk.pm: normalize
-
-2002/11/07 erwan
-
- * mdk-stage1/stage1-data/stage1-with-kadeploy.tar.bz2,
- mdk-stage1/network.c, mdk-stage1/stage1.h, mdk-stage1/url.c: SCSI
- Support is now activated
-
- * rescue/Makefile: Adding missing link for test in tree/usr/bin
-
- * rescue/list, rescue/list.i386: SCSI support now activated
-
-2002/11/07 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm: Added definition of default font for Thai
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/nl.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/lv.po,
- share/po/el.po, share/po/cs.po, share/po/bg.po, share/po/hu.po: updated
- pot file
-
- * share/rpmsrate: Added dependences for greek font and urw-fonts for
- cyrillic
-
-2002/11/07 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * detect_devices.pm:
- - getCPUs() : fix cpu fields parsing
- - harddrake::detect :
- o describe most cpu fields
- o print value of skipped fields
- perl checker fixes
- - harddrake : don't display modem when there're none
- - getModem() :
- o simplify
- o remove unused variables
- - getSerialModem() : indent
-
- * harddrake/ui.pm:
- - getCPUs() : fix cpu fields parsing
- - harddrake::detect :
- o describe most cpu fields
- o print value of skipped fields
- - describe cpu frequency
- - only display help topics related to currently displayed fields in
- right framea
- - if no device selected, display a message explaining the help dialog
- - simplify the unknow driver case for color choice
- - only display fields we described
- perl checker fixes
- - add help for some cpu items
- - only display choosen items
- - remove a dead statement
-
- * drakxtools.spec: 1.1.11-1mdk
-
-2002/11/06 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem-all: add extra partition support as primary/logical
- with configurable size and fs.
- allow configurable min_size, def_size, trigger_size, inst_size,
- swap_size.
-
-2002/11/06 Pixel <pixel@mandrakesoft.com>
-
- * partition_table.pm, install_any.pm:
- - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."
- - use some "cat_" and "output" where possible
- replace complex "unless"s with "if"s
- replace "_" with "N" and "__" with "N_"
- rationale:
- - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
- also used to call xgettext with --keyword=_
-
- - alas, function &_ is global and not by package (notice esp. that _
- is not exported in common.pm)
-
- - this lead to big ugly pb with packages defining their own &_,
- overriding common.pm's &_
-
- - a fix is to set @::textdomains to add a new domain (the default
- being "libDrakX")
-
- but relying on the global "_" is still dangerous!
-
- * printerdrake.pm: replace "for my ..." with "foreach my ..."
- replace complex "unless"s with "if"s
- remove unneeded parentheses on the right side of infix if/foreach/unless
- please perl_checker:
- - local'ize $_ before doing while (<...>)
- - use "foreach" instead of "for"
- - remove unneeded parentheses on the right side of infix
- if/foreach/unless
- replace "_" with "N" and "__" with "N_"
- rationale:
- - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
- also used to call xgettext with --keyword=_
-
- - alas, function &_ is global and not by package (notice esp. that _
- is not exported in common.pm)
-
- - this lead to big ugly pb with packages defining their own &_,
- overriding common.pm's &_
-
- - a fix is to set @::textdomains to add a new domain (the default
- being "libDrakX")
-
- but relying on the global "_" is still dangerous!
-
- * partition_table/raw.pm: remove unneeded parentheses on the right side of
- infix if/foreach/unless
- replace "_" with "N" and "__" with "N_"
- rationale:
- - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
- also used to call xgettext with --keyword=_
-
- - alas, function &_ is global and not by package (notice esp. that _
- is not exported in common.pm)
-
- - this lead to big ugly pb with packages defining their own &_,
- overriding common.pm's &_
-
- - a fix is to set @::textdomains to add a new domain (the default
- being "libDrakX")
-
- but relying on the global "_" is still dangerous!
-
- * harddrake/data.pm, install2.pm, standalone/service_harddrake,
- standalone/scannerdrake: make perl_checker happy
- replace "_" with "N" and "__" with "N_"
- rationale:
- - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
- also used to call xgettext with --keyword=_
-
- - alas, function &_ is global and not by package (notice esp. that _
- is not exported in common.pm)
-
- - this lead to big ugly pb with packages defining their own &_,
- overriding common.pm's &_
-
- - a fix is to set @::textdomains to add a new domain (the default
- being "libDrakX")
-
- but relying on the global "_" is still dangerous!
-
- * network/netconnect.pm, diskdrake/interactive.pm, network/isdn.pm:
- replace complex "unless"s with "if"s
- replace "_" with "N" and "__" with "N_"
- rationale:
- - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
- also used to call xgettext with --keyword=_
-
- - alas, function &_ is global and not by package (notice esp. that _
- is not exported in common.pm)
-
- - this lead to big ugly pb with packages defining their own &_,
- overriding common.pm's &_
-
- - a fix is to set @::textdomains to add a new domain (the default
- being "libDrakX")
-
- but relying on the global "_" is still dangerous!
-
- * standalone/draksplash, bootlook.pm, share/advertising/14-mdkexpert.pl,
- standalone/logdrake, share/advertising/17-mdkclub.pl, interactive.pm,
- my_gtk.pm, share/advertising/11-mdkstore.pl,
- share/advertising/02-community.pl, share/advertising/01-thanks.pl,
- mouse.pm, standalone/keyboarddrake, standalone/drakboot,
- share/po/DrakX.pot, standalone.pm, lvm.pm, standalone/drakTermServ,
- standalone/net_monitor, share/advertising/05-games.pl,
- network/drakfirewall.pm, standalone/mousedrake, Xconfig/main.pm,
- install_steps_newt.pm, standalone/drakbackup, diskdrake/smbnfs_gtk.pm,
- share/advertising/09-server.pl, share/advertising/04-multimedia.pl,
- standalone/printerdrake, share/advertising/13-mdkcampus.pl,
- install_steps_auto_install.pm, standalone/drakconnect,
- standalone/drakbug, diskdrake/hd_gtk.pm,
- share/advertising/07-desktop.pl, Xconfig/monitor.pm, network/adsl.pm,
- proxy.pm, modules.pm, share/advertising/10-mnf.pl, network/shorewall.pm,
- share/advertising/15-mdkexpert-corporate.pl,
- share/advertising/08-development.pl, share/advertising/06-mcc.pl,
- standalone/draksound, standalone/drakxtv, security/main.pm,
- Xconfig/various.pm, network/modem.pm, help.pm,
- diskdrake/removable_gtk.pm, install_gtk.pm, diskdrake/removable.pm,
- standalone/drakautoinst, share/po/b_dump_strings.pm, modparm.pm,
- install_steps_stdio.pm, Xconfig/xfreeX.pm, standalone/livedrake,
- share/advertising/03-internet.pl, standalone/harddrake2,
- harddrake/v4l.pm, modules/interactive.pm, crypto.pm,
- install_interactive.pm, share/advertising/12-mdkstore.pl,
- standalone/localedrake, loopback.pm, any.pm, interactive/http.pm,
- interactive/stdio.pm, standalone/drakfloppy, services.pm,
- interactive/newt.pm, share/po/Makefile, fs.pm, standalone/drakfont,
- network/ethernet.pm, Xconfig/resolution_and_depth.pm, standalone/drakgw,
- steps.pm, keyboard.pm, diskdrake/dav.pm, standalone/drakperm, fsedit.pm,
- common.pm, share/po/fake_c.pl, harddrake/ui.pm: replace "_" with "N" and
- "__" with "N_"
- rationale:
- - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
- also used to call xgettext with --keyword=_
-
- - alas, function &_ is global and not by package (notice esp. that _
- is not exported in common.pm)
-
- - this lead to big ugly pb with packages defining their own &_,
- overriding common.pm's &_
-
- - a fix is to set @::textdomains to add a new domain (the default
- being "libDrakX")
-
- but relying on the global "_" is still dangerous!
-
- * install_steps.pm: replace complex "unless"s with "if"s
- please perl_checker:
- - local'ize $_ before doing while (<...>)
- - use "foreach" instead of "for"
- - remove unneeded parentheses on the right side of infix
- if/foreach/unless
- replace "_" with "N" and "__" with "N_"
- rationale:
- - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
- also used to call xgettext with --keyword=_
-
- - alas, function &_ is global and not by package (notice esp. that _
- is not exported in common.pm)
-
- - this lead to big ugly pb with packages defining their own &_,
- overriding common.pm's &_
-
- - a fix is to set @::textdomains to add a new domain (the default
- being "libDrakX")
-
- but relying on the global "_" is still dangerous!
-
- * bootloader.pm:
- - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."
- - use some "cat_" and "output" where possible
- cleanup get_of_dev (aka ofpath)
- replace complex "unless"s with "if"s
- remove unneeded parentheses on the right side of infix if/foreach/unless
- please perl_checker:
- - local'ize $_ before doing while (<...>)
- - use "foreach" instead of "for"
- - remove unneeded parentheses on the right side of infix
- if/foreach/unless
- replace "_" with "N" and "__" with "N_"
- rationale:
- - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
- also used to call xgettext with --keyword=_
-
- - alas, function &_ is global and not by package (notice esp. that _
- is not exported in common.pm)
-
- - this lead to big ugly pb with packages defining their own &_,
- overriding common.pm's &_
-
- - a fix is to set @::textdomains to add a new domain (the default
- being "libDrakX")
-
- but relying on the global "_" is still dangerous!
-
- * network/network.pm:
- - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."
- - use some "cat_" and "output" where possible
- (write_resolv_conf): much cleanup (originally it was meant to introduce
- cat_ and output, but it ended up with a complete rewrite :)
- replace complex "unless"s with "if"s
- replace "_" with "N" and "__" with "N_"
- rationale:
- - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
- also used to call xgettext with --keyword=_
-
- - alas, function &_ is global and not by package (notice esp. that _
- is not exported in common.pm)
-
- - this lead to big ugly pb with packages defining their own &_,
- overriding common.pm's &_
-
- - a fix is to set @::textdomains to add a new domain (the default
- being "libDrakX")
-
- but relying on the global "_" is still dangerous!
-
- * scanner.pm: make perl_checker happy
- make perl_checker happy
-
- * commands.pm:
- - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."
- - use some "cat_" and "output" where possible
- (cp): use cp_af
- please perl_checker:
- - local'ize $_ before doing while (<...>)
- - use "foreach" instead of "for"
- - remove unneeded parentheses on the right side of infix
- if/foreach/unless
-
- * Xconfig/test.pm: please perl_checker:
- - local'ize $_ before doing while (<...>)
- - use "foreach" instead of "for"
- - remove unneeded parentheses on the right side of infix
- if/foreach/unless
- replace "_" with "N" and "__" with "N_"
- rationale:
- - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
- also used to call xgettext with --keyword=_
-
- - alas, function &_ is global and not by package (notice esp. that _
- is not exported in common.pm)
-
- - this lead to big ugly pb with packages defining their own &_,
- overriding common.pm's &_
-
- - a fix is to set @::textdomains to add a new domain (the default
- being "libDrakX")
-
- but relying on the global "_" is still dangerous!
-
- * standalone/diskdrake, network/nfs.pm: make perl_checker happy
-
- * Xconfig/card.pm: when needVideoRam, don't take the raw value
- VideoRam_probed,
- better take a known value <= VideoRam_probed
- replace "_" with "N" and "__" with "N_"
- rationale:
- - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
- also used to call xgettext with --keyword=_
-
- - alas, function &_ is global and not by package (notice esp. that _
- is not exported in common.pm)
-
- - this lead to big ugly pb with packages defining their own &_,
- overriding common.pm's &_
-
- - a fix is to set @::textdomains to add a new domain (the default
- being "libDrakX")
-
- but relying on the global "_" is still dangerous!
-
- * Xconfig/xfree4.pm: please perl_checker:
- - local'ize $_ before doing while (<...>)
- - use "foreach" instead of "for"
- - remove unneeded parentheses on the right side of infix
- if/foreach/unless
-
- * log.pm:
- - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."
- - use some "cat_" and "output" where possible
-
- * detect_devices.pm:
- - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."
- - use some "cat_" and "output" where possible
- make perl_checker happy
- replace complex "unless"s with "if"s
- please perl_checker:
- - local'ize $_ before doing while (<...>)
- - use "foreach" instead of "for"
- - remove unneeded parentheses on the right side of infix
- if/foreach/unless
-
- * ugtk.pm: make perl_checker happy
- please perl_checker:
- - local'ize $_ before doing while (<...>)
- - use "foreach" instead of "for"
- - remove unneeded parentheses on the right side of infix
- if/foreach/unless
- replace "_" with "N" and "__" with "N_"
- rationale:
- - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
- also used to call xgettext with --keyword=_
-
- - alas, function &_ is global and not by package (notice esp. that _
- is not exported in common.pm)
-
- - this lead to big ugly pb with packages defining their own &_,
- overriding common.pm's &_
-
- - a fix is to set @::textdomains to add a new domain (the default
- being "libDrakX")
-
- but relying on the global "_" is still dangerous!
-
- * install_steps_interactive.pm, harddrake/sound.pm: make perl_checker
- happy
- replace complex "unless"s with "if"s
- replace "_" with "N" and "__" with "N_"
- rationale:
- - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
- also used to call xgettext with --keyword=_
-
- - alas, function &_ is global and not by package (notice esp. that _
- is not exported in common.pm)
-
- - this lead to big ugly pb with packages defining their own &_,
- overriding common.pm's &_
-
- - a fix is to set @::textdomains to add a new domain (the default
- being "libDrakX")
-
- but relying on the global "_" is still dangerous!
-
- * standalone/XFdrake: fix typo
- replace "_" with "N" and "__" with "N_"
- rationale:
- - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
- also used to call xgettext with --keyword=_
-
- - alas, function &_ is global and not by package (notice esp. that _
- is not exported in common.pm)
-
- - this lead to big ugly pb with packages defining their own &_,
- overriding common.pm's &_
-
- - a fix is to set @::textdomains to add a new domain (the default
- being "libDrakX")
-
- but relying on the global "_" is still dangerous!
-
- * raid.pm, network/tools.pm, install_steps_gtk.pm:
- - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."
- - use some "cat_" and "output" where possible
- replace "_" with "N" and "__" with "N_"
- rationale:
- - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
- also used to call xgettext with --keyword=_
-
- - alas, function &_ is global and not by package (notice esp. that _
- is not exported in common.pm)
-
- - this lead to big ugly pb with packages defining their own &_,
- overriding common.pm's &_
-
- - a fix is to set @::textdomains to add a new domain (the default
- being "libDrakX")
-
- but relying on the global "_" is still dangerous!
-
- * printer.pm:
- - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."
- - use some "cat_" and "output" where possible
- replace "for my ..." with "foreach my ..."
- remove unneeded parentheses on the right side of infix if/foreach/unless
- please perl_checker:
- - local'ize $_ before doing while (<...>)
- - use "foreach" instead of "for"
- - remove unneeded parentheses on the right side of infix
- if/foreach/unless
- replace "_" with "N" and "__" with "N_"
- rationale:
- - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
- also used to call xgettext with --keyword=_
-
- - alas, function &_ is global and not by package (notice esp. that _
- is not exported in common.pm)
-
- - this lead to big ugly pb with packages defining their own &_,
- overriding common.pm's &_
-
- - a fix is to set @::textdomains to add a new domain (the default
- being "libDrakX")
-
- but relying on the global "_" is still dangerous!
-
- * pkgs.pm:
- - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."
- - use some "cat_" and "output" where possible
- please perl_checker:
- - local'ize $_ before doing while (<...>)
- - use "foreach" instead of "for"
- - remove unneeded parentheses on the right side of infix
- if/foreach/unless
- replace "_" with "N" and "__" with "N_"
- rationale:
- - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
- also used to call xgettext with --keyword=_
-
- - alas, function &_ is global and not by package (notice esp. that _
- is not exported in common.pm)
-
- - this lead to big ugly pb with packages defining their own &_,
- overriding common.pm's &_
-
- - a fix is to set @::textdomains to add a new domain (the default
- being "libDrakX")
-
- but relying on the global "_" is still dangerous!
-
-2002/11/06 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * drakxtools.spec: 1.1.10-mdk
-
- * harddrake/sound.pm: fix for modules.pm not exporting
- category2modules_and_description
-
-2002/11/05 erwan
-
- * rescue/tree/etc/rc.sysinit: modified rc.sysinit for ka
-
-2002/11/05 gbeauchesne
-
- * c/smp.c: Revert last change
- Add generic cpu detection on x86-64 and IA-64, based on
- sysconf(_SC_NPROCESSORS_ONLN)
-
- * detect_devices.pm: Detect SMP more easily if we have APIC stuff capable
-
-2002/11/05 Pixel <pixel@mandrakesoft.com>
-
- * devices.pm: add /dev/ubd/0, /dev/ubd/1... support (thanks to Brian
- Murrell)
-
- * mouse.pm (xmouse2xId): ensure weird ids are ignored
- use find_index instead of map_index
-
- * interactive/newt.pm:
- - fix dialog boxes using a scrollbar
- - cleanup
- use each_index instead of map_index when the return value is not used
-
- * interactive.pm:
- - do not handle "format"ing in interactive for combos
- - do it in interactive::gtk instead (that way, "val" is back"format"ed
- in callbacks as wanted)
- - die when editable combos are used with non-strings (like arrays or
- hashes)
-
- * partition_table.pm:
- - isUBD can tell wether it is an ubd partition
- - isSpecial is true for ubd partitions
-
- * fs.pm (format_ext2): better error message when it is called from
- format_ext3
- (thanks to Brian Murrell)
-
- * diskdrake/interactive.pm, fsedit.pm: introduce a new flag:
- getting_rid_of_readonly_allowed. It is set when the partition table
- badly handled by diskdrake, but we are still allowed to wipe the
- partition table and start
- with something new.
-
- * interactive/gtk.pm:
- - do not handle "format"ing in interactive for combos
- - do it in interactive::gtk instead (that way, "val" is back"format"ed
- in callbacks as wanted)
- - die when editable combos are used with non-strings (like arrays or
- hashes)
- use each_index instead of map_index when the return value is not used
-
- * install2.pm: basic uml_install support (thanks to Brian Murrell)
- use each_index instead of map_index when the return value is not used
-
- * interactive/http.pm, interactive/stdio.pm, ugtk.pm, raid.pm,
- bootloader.pm: use each_index instead of map_index when the return value
- is not used
-
- * Newt/Newt.xs:
- - fix dialog boxes using a scrollbar
- - cleanup
-
- * services.pm: fix the use of a non-bounded regexp to check services (fix
- "nfs" being marked
- on whereas it is "nfslock" which is on)
-
-2002/11/05 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * tools/ppc/mkINSTALLCD: Update PPC boot CD creation.
-
- * mdk-stage1/init.c: PPC TIOCSCTTY changed to 0x540E
-
-2002/11/05 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * drakxtools.spec: newt rebuild
-
-2002/11/04 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sk.po: updated Slovak file
-
-2002/11/04 Pixel <pixel@mandrakesoft.com>
-
- * keyboard.pm, Xconfig/xfreeX.pm, Xconfig/parse.pm,
- standalone/keyboarddrake: add XkbCompat "group_led" for all keyboards
- where a group layout switching is used
-
- * Xconfig/xfree.pm: have an empty configuration when a config file is
- buggy
-
-2002/11/04 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * printer.pm: typo fixes
-
- * drakxtools.spec: 1.1.10-2mdk
-
-2002/11/01 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ru.po, share/po/pt_BR.po: updated Russian and Portuguese files
-
-2002/10/31 erwan
-
- * mdk-stage1/stage1.c, mdk-stage1/network.c, mdk-stage1/tools.c,
- mdk-stage1/tools.h, mdk-stage1/url.h, mdk-stage1/url.c: Including
- ka-deploy for stage 2
-
- * mdk-stage1/stage1-data/stage1-with-kadeploy.tar.bz2: Including ka-deploy
- for stage 2
- Adding missing file (stage1-with-kadeploy)
-
-2002/10/30 erwan
-
- * mdk-stage1/stage1.c, mdk-stage1/network.c, mdk-stage1/stage1.h,
- mdk-stage1/network.h: Applying patch from 8.2, ka.img is working fine in
- old mode
-
-2002/10/30 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt.po: updated Portuguese file
-
-2002/10/29 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * bootloader.pm, rescue/list.ppc: Reflect changes in yaboot package.
-
-2002/10/28 alus
-
- * share/po/pl.po: updated
- updated translation
-
-2002/10/28 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/modem.pm: add sub winmodemConfigure
-
- * network/netconnect.pm: few reworks for winmodem detection
-
- * detect_devices.pm: s#$_->{driver} eq
- 'Bad:www.linmodems.org'#$_->{driver} =~ /www.linmodems.org/# to fit with
- ldetect
-
-2002/10/28 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ro.po: Updated Romanian and Vietnamese files
-
-2002/10/28 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (preConfigureTimezone): don't set UTC in beginner mode if
- there is no windows
-
-2002/10/28 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakTermServ: typo in comments: Josep L. Guallar-Esteve
- <jlguallar@computer.org>
-
-2002/10/28 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/sound.pm: add new drivers
-
-2002/10/25 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem-all: reduced version of oem script which allow
- installing in oem mode but
- without restricting language and without installing any packages.
- all package are copied to disk, ie this is an automated hd install
- builder.
-
-2002/10/25 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/zh_CN.po, share/po/vi.po: updated Chinese and Vietnamese files
-
-2002/10/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
- share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: Updated
- pot file
-
-2002/10/23 Pixel <pixel@mandrakesoft.com>
-
- * network/netconnect.pm, install_steps_newt.pm, harddrake/sound.pm: make
- perl_checker happy: replace PKG::f with PKG::f()
-
-2002/10/23 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/data.pm: nono changes for stupid perl_checker whose maintainer
- don't want to fix deficienties
- reindent for lord pix
-
- * harddrake/sound.pm: do a perl_checker pass after pixel one since he only
- do half the work
- reindent for lord pix
-
- * ugtk.pm, printer.pm, network/adsl.pm, printerdrake.pm: perl_checker
- fixes
-
- * harddrake/v4l.pm, harddrake/ui.pm: reindent for lord pix
-
- * detect_devices.pm: fix "poulpy sux"
-
- * Xconfig/resolution_and_depth.pm: fix pixel code
-
-2002/10/18 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * detect_devices.pm: change dumb return values s/@pci_modems,
- $serial_modem/$serial_modem, @pci_modems/ (thanks to pixel)
-
- * network/netconnect.pm: remove useless 'pop'
- change dumb return values s/@pci_modems, $serial_modem/$serial_modem,
- @pci_modems/ (thanks to pixel)
-
-2002/10/17 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * harddrake/sound.pm: titi almost sux (he helped me that's why I can't say
- titi sux :p)
-
-2002/10/17 Pixel <pixel@mandrakesoft.com>
-
- * any.pm, interactive/gtk.pm, network/modem.pm, Xconfig/monitor.pm,
- pkgs.pm, interactive/newt.pm, install_steps.pm,
- Xconfig/resolution_and_depth.pm, install_steps_interactive.pm: make new
- perl_checker happy: replacing PKG::f by PKG::f()
-
- * network/netconnect.pm: "=head" doc must end with "=cut"
-
-2002/10/17 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * printer.pm: consolidate more stuff into %spoolers
- start to consolidate %spoolers as a data structure
- - printerdrake::auto_detect(local, net, smb):
- o split into local_detect, net_detect, net_smb_detect
- o detect: return all printers
- - printer: consolidate all *help_output into help_output
-
- * detect_devices.pm: add some comments to getCPUs
-
- * printerdrake.pm: setup_common: consolidate regexp
- - printerdrake::auto_detect(local, net, smb):
- o split into local_detect, net_detect, net_smb_detect
- o detect: return all printers
- - printer: consolidate all *help_output into help_output
-
- * network/netconnect.pm: document network::netconnect::detect()
-
- * harddrake/data.pm:
- - printerdrake::auto_detect(local, net, smb):
- o split into local_detect, net_detect, net_smb_detect
- o detect: return all printers
- - printer: consolidate all *help_output into help_output
-
-2002/10/16 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/netconnect.pm:
- - winmodem detection fix
-
-2002/10/16 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * my_gtk.pm: fix dams suckiness breaking install2 --test
-
-2002/10/16 Pixel <pixel@mandrakesoft.com>
-
- * patch/patch-da.pl, patch/patch-IMPS2.pl:
- - fix for bad da .mo charset
- - ugly hack to allow IMPS2 switch to work
-
- * c/stuff.xs.pl: initIMPS2: use /dev/mouse instead of /dev/cdrom (!)
-
-2002/10/16 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/ui.pm: don't print empty help for fields without any help
- - alphabetically sort help items
- - add help for some cpu fields
- fix Gtk::CTree:insert_node inversing devices order
- -add cpus detection
- - update todo list
- - perl_checker fix
-
- * standalone/drakfont: bit me!
-
- * detect_devices.pm: getCPUs() : fix multiples cpu detection
- -add cpus detection
- - update todo list
- - perl_checker fix
-
- * harddrake/data.pm: display cpu name (eg "Pentium") too in harddrake gui
- display "$vendor cpu number $id" for cpus in harddrake gui
- miaouh
- use code factored in detect_devices for modem detection
- -add cpus detection
- - update todo list
- - perl_checker fix
-
- * drakxtools.spec: 1.1.10-1mdk
- buildrequires: libext2fs-devel
-
- * harddrake/v4l.pm, harddrake/TODO:
- -add cpus detection
- - update todo list
- - perl_checker fix
-
-2002/10/15 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * detect_devices.pm: add Pioneer to vendors list
-
- * harddrake/data.pm: display again unknown category (spoted by florent
- beranger)
-
-2002/10/14 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: remove initrd images before umounting and exiting.
-
-2002/10/14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/eu.po: updated Basque file
-
-2002/10/14 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * diskdrake/smbnfs_gtk.pm, install_any.pm: Hide password to browse W2k
- servers. (Buchan Milne).
- Domain name to all caps in smb.conf. (Buchan Milne).
-
- * standalone/drakTermServ: Finish thin client setup option.
-
-2002/10/14 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/drakbug:
- - fix typos
- - when something is eating io bandwith, drakbug is very slow to scroll
- the menu, since on each item selection, it does rpm db
- access. solution :
- o cache rpm result in %packages
-
- o only call rpm & which if nothing is cached
-
- - if there's the selected package isn't installed, just print "package
- not installed" (and translate that)
-
-2002/10/12 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakTermServ: Read/Write thin client configuration.
- Add draktermserv config to enable/disable thin clients.
- Update documentation.
-
-2002/10/11 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/adsl.pm: fix speedtouch detection
-
-2002/10/11 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ca.po, share/po/pt.po, share/po/DrakX.pot: updated Catalan and
- Portuguese files
-
-2002/10/11 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakTermServ: Dynamic IP pool for client machines.
- Don't require image for PCI clients.
- Perl_checker fixes.
-
-2002/10/10 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/adsl.pm: notify if speedtouch is detected or not
-
- * network/netconnect.pm: add a warning window for winmodems
-
- * detect_devices.pm, network/modem.pm:
- - move serial modem detection to detect_devices.pm
- - add speedtouch USB detection
- - add winmodem detection
-
-2002/10/10 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakTermServ: Correct typo in create boot ISO code
- Add note in help about optional net boot image entry for PCI cards
-
-2002/10/09 gbeauchesne
-
- * mdk-stage1/log.c: ISO C standard as to say about va_list on 7.15 [#3]
- If access to the varying arguments is desired, the called
- function shall declare an object (referred to as ap in this
- subclause) having type va_list. The object ap may be passed
- as an argument to another function; if that function invokes
- the va_arg macro with parameter ap, the value of ap in the
- calling function is indeterminate and shall be passed to the
- va_end macro prior to any further reference to ap.199)
- Which interprets to do reuse a va_list that was already processed.
- Instead, use a copy. This fixes crashes on x86-64 and debugging
- feasible, since logging is now available. ;-)
-
- * mdk-stage1/minilibc.h, mdk-stage1/minilibc.c: Add support for x86-64 to
- minilibc. But we don't really use it yet, as glibc
- requirements for stage1 undoubtedly make images already bigger. So let
- have
- glibc init there too. ;-)
-
- * bootloader.pm: I surely don't want nor expect grub and loadlin to work
- on x86-64.
-
- * share/list.x86_64: Update list for perl mods and XF86 4.2.1 support
-
- * tools/aewm-drakx/misc.c: Apply FredL change from HEAD
-
- * mdk-stage1/disk.c: Use standard memset() instead of BSD-ish bzero().
-
- * mdk-stage1/Makefile, mdk-stage1/Makefile.common: Add x86-64, use glibc
- in init and stage1 as dietlibc is not working enough
- and minilibc for init doesn't seem to let umounting take place at the
- end
- of installation.
-
- * fs.pm: SYS_umount does not exist on modern kernels and architectures
- like x86-64 :)
-
- * mdk-stage1/rescue-gui.c: lib64 support
-
- * tools/aewm-drakx/client.c: Fix get/set_wm_state(), we have to get the
- same data (size) that was set.
-
- * mdk-stage1/init.c: Add support for lib64 architectures (x86-64, ppc64,
- etc.). Aka native
- libraries are in */lib64 there.
-
- * install_any.pm: Let's try a real bash prior to defaulting to perl'ish
- /bin/sh?
-
- * Xconfig/card.pm: Default to XF4 on x86-64 too
-
- * install_steps_gtk.pm: Yeah, stuck with XFree86 4.X server on x86-64 too.
-
- * partition_table.pm: Supported journalised FS on x86-64 are ReiserFS and
- ext3fs for now. Though,
- I haven't tested reiserfs and don't expect it to work before next kernel
- update.
-
- * mdk-stage1/insmod-modutils/util/sys_oim.c,
- mdk-stage1/insmod-modutils/obj/obj_common.c,
- mdk-stage1/insmod-modutils/include/obj.h,
- mdk-stage1/insmod-modutils/util/xsystem.c,
- mdk-stage1/insmod-modutils/include/util.h,
- mdk-stage1/insmod-modutils/include/version.h,
- mdk-stage1/insmod-modutils/util/sys_cm.c,
- mdk-stage1/insmod-modutils/obj/obj_s390.c,
- mdk-stage1/insmod-modutils/include/elf_sparc64.h,
- mdk-stage1/insmod-modutils/include/elf_ppc.h,
- mdk-stage1/insmod-modutils/insmod.c,
- mdk-stage1/insmod-modutils/include/kallsyms.h,
- mdk-stage1/insmod-modutils/include/elf_arm.h,
- mdk-stage1/insmod-modutils/include/module.h,
- mdk-stage1/insmod-modutils/util/xmalloc.c,
- mdk-stage1/insmod-modutils/util/snap_shot.c,
- mdk-stage1/insmod-modutils/include/kerneld.h,
- mdk-stage1/insmod-modutils/util/sys_qm.c,
- mdk-stage1/insmod-modutils/obj/obj_load.c,
- mdk-stage1/insmod-modutils/obj/obj_alpha.c,
- mdk-stage1/insmod-modutils/obj/obj_x86_64.c,
- mdk-stage1/insmod-modutils/include/config.h,
- mdk-stage1/insmod-modutils/Makefile,
- mdk-stage1/insmod-modutils/obj/obj_gpl_license.c,
- mdk-stage1/insmod-modutils/obj/obj_i386.c,
- mdk-stage1/insmod-modutils/obj/obj_mips.c,
- mdk-stage1/insmod-modutils/include/elf_alpha.h,
- mdk-stage1/insmod-modutils/include/elf_s390.h,
- mdk-stage1/insmod-modutils/util/config.c,
- mdk-stage1/insmod-modutils/util/sys_dm.c,
- mdk-stage1/insmod-modutils/include/elf_x86_64.h,
- mdk-stage1/insmod-modutils/include/elf_m68k.h,
- mdk-stage1/insmod-modutils/obj/obj_kallsyms.c,
- mdk-stage1/insmod-modutils/include/elf_i386.h,
- mdk-stage1/insmod-modutils/util/xstrcat.c,
- mdk-stage1/insmod-modutils/obj/obj_arm.c,
- mdk-stage1/insmod-modutils/obj/obj_m68k.c,
- mdk-stage1/insmod-modutils/util/sys_nim.c,
- mdk-stage1/insmod-modutils/obj/Makefile,
- mdk-stage1/insmod-modutils/obj/obj_hppa64.c,
- mdk-stage1/insmod-modutils/util/arch64.c,
- mdk-stage1/insmod-modutils/obj/obj_hppa.c,
- mdk-stage1/insmod-modutils/util/sys_gks.c,
- mdk-stage1/insmod-modutils/include/elf_mips.h,
- mdk-stage1/insmod-modutils/util/logger.c,
- mdk-stage1/insmod-modutils/obj/obj_ppc.c,
- mdk-stage1/insmod-modutils/util/xrealloc.c,
- mdk-stage1/insmod-modutils/obj/obj_sparc.c,
- mdk-stage1/insmod-modutils/util/alias.h,
- mdk-stage1/insmod-modutils/util/xstrdup.c,
- mdk-stage1/insmod-modutils/include/elf_sparc.h,
- mdk-stage1/insmod-modutils/obj/obj_ia64.c,
- mdk-stage1/insmod-modutils/obj/obj_sparc64.c,
- mdk-stage1/insmod-modutils/obj/obj_reloc.c: Update to modutils 2.4.19
- with x86-64 support and other fixes
-
- * mdk-stage1/frontend.h, mdk-stage1/stdio-frontend.c: Hint compiler about
- unused arguments and don't make it yell in that case. As,
- we do use -Werror along with -Wall stuff.
-
- * mdk-stage1/init-libc-headers.h: <sys/ioctl.h> is needed
-
- * install_gtk.pm: Somehow, "recent" DrakX changes mutated driver into
- Driver and card->type
- into card->BoardName
-
- * printerdrake.pm, any.pm: lib64 fixes
-
- * proxy.pm: wgetrc is in /etc not /usr/lib
-
-2002/10/09 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/ui.pm: don't use ugtk directly
-
-2002/10/08 Frederic Lepied <flepied@mandrakesoft.com>
-
- * tools/aewm-drakx/misc.c: removed client removal
-
-2002/10/04 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ro.po: updated Romanian file
-
-2002/10/02 alus
-
- * share/po/pl.po: some changes
-
-2002/10/02 François Pons <fpons@mandrakesoft.com>
-
- * patch/patch-oem-9.0.pl, patch/rpmsrate.oem-9.0-staroffice,
- patch/rpmsrate.oem-9.0-openoffice: patch necessary for oem to work
- nicely and the two rpmsrate that allow
- CD of 700MB to be used.
-
-2002/10/02 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install2.pm: try to fix my fix for blank
-
- * modules.pm: try to fix my fix for blank
- try to make the install work in "blank" mode (aka fix pixel
- sucked when changed modules.pm code, not handling blank mode)
-
- * mdk-stage1/Makefile: cooker
-
- * mdk-stage1/stage1.c: do not detect/configure pcmcia stuff when "noauto"
- param
-
-2002/10/02 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * patch/patch-nforce.pl: update from oem patch
- fix nforce (from francois oem patch)
-
- * docs/9.0_errata.txt: miaou
- i810 crash when using XRender on vt switch (see fredc for further
- information) (fixed in cvs & rh's xfree86)
- kernel : snd-via686 is said to produce white noise; add workaround
- nforce audio bug
- drakconf bug has been workarounded
-
-2002/10/01 dam's <dams@idm.fr>
-
- * ugtk.pm: forking ugtk, sorry guys. reverted last patch
- cleaned, readded needed hack, removed mdk specific functions, added
- libconf GUI, WARNING, create_dialog API changed
-
- * my_gtk.pm: mdk icon_path are added here
-
-2002/10/01 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm: fixed oem images management not working at all!
-
-2002/10/01 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * docs/9.0_errata.txt: add 3 bugs:
- - drakfont: stat64 syscall blocks drakfont on ntfs partitions
- - XFree86: X can corrupt sound when overusing pci bus
- (PciRetry fix it)
- - some people reports stops on reboot on "illegal seek" (having /usr
- and / on the same fs "fix" it)
-
- * drakxtools.spec: harddrake-ui doesn't need the same obsoletes/provides
- as harddrake,
- else we may require harddrake-ui on update (thus XFree86 ...)
-
-2002/09/30 Daouda Lo <daouda@mandrakesoft.com>
-
- * docs/9.0_errata.txt:
- - first draft for all bugs/glitches/inconsistencies in 9.0. Developers
- are welcomed to fill it, read it and fix.
-
-2002/09/30 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: added possible fix for noauto: flag of hdlist not
- generating good list file.
-
-2002/09/30 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/da.po: updated Danish file
-
- * share/po/id.po, share/po/ro.po: Updated Romanian and Indonesian files
-
-2002/09/30 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm: drop "notail" when filesystem is not reiserfs
-
-2002/09/30 Till Kamppeter <till@mandrakesoft.com>
-
- * docs/9.0_errata.txt: "Best Grayscale" on HP DJ 6xx/Apollo.
- Several bugs found.
-
-2002/09/28 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/da.po: updated Latvian file; corrected Danish file
- corrected encoding
-
- * share/po/lv.po: updated Latvian file; corrected Danish file
-
-2002/09/27 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * docs/README: refine info on blank.img
-
-2002/09/26 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * network/network.pm: workaround situation when /etc/resolv.conf is an
- absolute link to /etc/ppp/resolv.conf or whatever
-
- * mdk-stage1/dhcp.c, mdk-stage1/network.c: try to not save the hostname
- answered by the dhcp server
-
-2002/09/25 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_steps_interactive.pm: log install class selection
-
-2002/09/25 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/eu.po: updated Basque file
-
- * share/po/tr.po, share/po/cs.po: updated Turkish and Czech files
-
-2002/09/25 Pixel <pixel@mandrakesoft.com>
-
- * any.pm: do not allow to create user "root" (thanks to Eric Fernandez)
-
-2002/09/25 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/sound.pm: handle nvaudio too
-
-2002/09/24 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * any.pm: change load_category__prompt_for_more dying 'already displayed'
- in return
-
- * network/ethernet.pm: Fix configureNetwork to fit with new
- any::load_category_prompt_for_more behavior
-
-2002/09/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/zh_TW.po, share/po/pt.po: updated Chinese and Portuguese files
-
-2002/09/24 Pixel <pixel@mandrakesoft.com>
-
- * raid.pm: also create a raidtab if it doesn't exist (occurs when / has
- been formatted)
-
- * detect_devices.pm: fix raidAutoStartRaidtab crushing /etc/raidtab
-
- * patch/patch-raidtab.pl: also create a raidtab if it doesn't exist
- (occurs when / has been formatted)
- fix raidAutoStartRaidtab crushing /etc/raidtab
-
-2002/09/24 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * ugtk.pm: dams fix enable to get rid of the infamous ugly gtk timeout
- from dams:
- remove his ugly hack for mcc which altered the
- scrolledwindow's "bordure" to hide it.
- this used to be done through a gtk timer (hance
- the ugly flash on first display of notebook pages)
- now createScrolledWindow take a new optional argument
- that enable to hide the border the right way
- thanks dams
- fix expansion of widgets
- (eg see draksound help window behaviour on resizing)
-
- * harddrake/TODO, harddrake/data.pm: move usb video devices to webcam
- category
-
- * security/main.pm: remember to factorize this with rpmdrake's wait
- messages in my_gtk
- remove "bogus periodic check 2" from periodic checks page
- let simplify
-
- * harddrake/ui.pm: add a few comments
- split harddrake part that configure a module into modules::interactive
- split devices listing ("detection") part into its own function
- (detect) for readability
-
- * Makefile.config, modules/interactive.pm: split harddrake part that
- configure a module into modules::interactive
-
- * security/msec.pm: ignore_list is useless
-
- * share/po/br.po: update
-
-2002/09/23 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/network.pm: fix NULL Gateway IP checking
-
-2002/09/23 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_interactive.pm: tellAboutProprietaryModules: use formatAlaTeX
-
- * rescue/devices.pl: add st devices
-
-2002/09/23 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/es.po: updated Spanish file
-
- * share/po/ru.po: updated Russian file
-
- * share/po/id.po, share/po/zh_CN.po, share/po/pt.po: updated Indonesian,
- Portuguese and Chinese files
-
- * keyboard.pm: Made Lithuanian numeric row keyboard bi-mode
-
-2002/09/23 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakbackup: Really fix daemon mode issue.
- Fix daemon mode bug.
-
-2002/09/23 Warly <warly@mandrakesoft.com>
-
- * share/rpmsrate: move vim-enhanced in X 4
- fix nforce version
-
-2002/09/22 alus
-
- * share/po/pl.po: No... Changes few days before release...
-
-2002/09/22 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/cy.po, share/po/id.po, share/po/lv.po, share/po/vi.po,
- share/po/sk.po, share/po/ru.po, share/po/hu.po: updated Welsh,
- Hungarian, Indonesian, Latvian, Russian, Slovak and Vietnamese
-
-2002/09/22 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: fix url
-
-2002/09/21 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: add a small sentence to the license in
- order to solve a negociation with
- Thomson about the MP3 patents.
-
-2002/09/22 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: fix url
-
-2002/09/21 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: add a small sentence to the license in
- order to solve a negociation with
- Thomson about the MP3 patents.
-
-2002/09/21 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: add a small sentence to the license in
- order to solve a negociation with
- Thomson about the MP3 patents.
-
-2002/09/21 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakTermServ: Correct help notes on \$\$IP=IP-ADDRESS\$\$.
-
-2002/09/21 Warly <warly@mandrakesoft.com>
-
- * share/logo-mandrake.png: final
-
-2002/09/20 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/zh_CN.po: updated Chinese file
-
-2002/09/20 Till Kamppeter <till@mandrakesoft.com>
-
- * network/shorewall.pm: The LPD/LPRng port is 515, not 5015.
-
-2002/09/20 florin
-
- * standalone/drakgw: fix the disable function
-
- * network/shorewall.pm: add the 5015 port for some printers in
- internal_ports
-
-2002/09/20 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/lv.po, share/po/hu.po: updated pot file
-
- * standalone/drakgw: removed unneeded '\t' in translatable text
-
- * share/po/zh_CN.po: updated Chinese file
- updated pot file
-
-2002/09/20 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * drakxtools.spec: 53mdk
- 52mdk
- 51mdk
-
- * harddrake/ui.pm: don't print logs in console
-
- * standalone/drakbug: fixes:
- - don't create bogus 1 file (deush: s/2>1&/2>&1/)
- - don't print error messages when which cannot find the program
-
- * harddrake/TODO: update
-
- * standalone/harddrake2: don't print useless warnings in console
-
- * standalone/drakxtv: no -w
-
-2002/09/19 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakTermServ: Catch non-existant config files on copy.
-
-2002/09/19 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Fixed bug of printerdrake installing LPRng when it is
- started for the
- first time and CUPS is already installed without local queues but with
- remote CUPS servers broadcasting in their printer info.
-
-2002/09/19 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: try to avoid infinite loop on error to install package.
-
-2002/09/19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_steps_interactive.pm: fix titisucks making cards choice in bttv
- dialog unavailable
-
-2002/09/19 Pixel <pixel@mandrakesoft.com>
-
- * pkgs.pm: prefer cups for lpddaemon
-
-2002/09/19 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakTermServ: Catch non-existant config files on copy.
-
-2002/09/19 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Fixed bug of printerdrake installing LPRng when it is
- started for the
- first time and CUPS is already installed without local queues but with
- remote CUPS servers broadcasting in their printer info.
-
-2002/09/19 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: try to avoid infinite loop on error to install package.
-
-2002/09/19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone.pm: when in install mode, log when a **** does a "use
- standalone"
-
- * interactive.pm: require log will reliably fail, use require 'log.pm'
- instead
-
- * install_steps_interactive.pm: fix titisucks making cards choice in bttv
- dialog unavailable
-
- * install2.pm: revert
-
-2002/09/19 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake/interactive.pm: catch error in Done (mainly "reboot needed"),
- so that fstab can be written
- even if reboot needed (useful when removing partitions mounted by
- default)
-
- * install_steps.pm:
- - do not set type to ext2 when the type is ntfs
- - set to ext3 instead of ext2
-
-2002/09/19 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone/drakbug:
- - s/rpm/mdk/ in package version matching
-
-2002/09/19 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: avoid proposing ntfs partition to be
- formatted.
-
-2002/09/19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * network/tools.pm: fix spurious ";" before closing block
-
- * standalone.pm: when in install mode, log when a **** does a "use
- standalone"
-
- * interactive.pm: require log will reliably fail, use require 'log.pm'
- instead
-
- * install_steps_interactive.pm: fix titisucks making cards choice in bttv
- dialog unavailable
-
- * install2.pm: revert
- try to workaround strange situations when mkinitrd fail because
- loop is not loaded (we don't know who calls mkinitrd), by loading
- the loop module right after format-mount'ing the partitions
-
-2002/09/19 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake/interactive.pm: catch error in Done (mainly "reboot needed"),
- so that fstab can be written
- even if reboot needed (useful when removing partitions mounted by
- default)
-
- * install_steps.pm:
- - do not set type to ext2 when the type is ntfs
- - set to ext3 instead of ext2
-
-2002/09/19 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/v4l.pm: don't use standalone while installing
-
- * security/libsafe.pm: s/package draksec::libsafe/package
- security::libsafe/
- anyway nobody uses that one
-
-2002/09/19 Warly <warly@mandrakesoft.com>
-
- * share/rpmsrate: remove old WIZARDS package
- add drakwizard
- remove LPRng
-
-2002/09/18 Pixel <pixel@mandrakesoft.com>
-
- * partition_table.pm:
- - add ntfs in isOtherAvailableFS
- - but ensure it is not in isMountableRW
-
-2002/09/18 Warly <warly@mandrakesoft.com>
-
- * share/rpmsrate: remove *-mdk-cdcom
-
-2002/09/18 florin
-
- * standalone/drakgw: more details for the dhcp server
-
- * network/shorewall.pm: remove forgotten debug hash printings
-
-2002/09/18 Pixel <pixel@mandrakesoft.com>
-
- * partition_table.pm:
- - add ntfs in isOtherAvailableFS
- - but ensure it is not in isMountableRW
-
-2002/09/18 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * security/msec.pm:
- - factorize @sec_levels and %sec_levels for get_default() and
- get_seclevel_list()
- - use them in get_default()
- - get_value() : don't assume a space between "function_name" and
- "(parameters)"
- remove brackets on function values loading
- respect msec syntax
- "kill quart of draksec code" patch aka make it really working aka "happy
- fred" :
- - security::msec :
- o consolidate get_function_value() and get_value into get_value()
- o really apply changes, aka save them :
- * config_check() : use substInFile and setVarsInSh
- * config_function() : use substInFile and append_to_file
- * kill stupid and bogus config_option()
- o don't overwrite previous changes, aka reread them :
- * fix checks and functions current value loading
- * fix checks and functions default loading
-
- - security::main :
- o simplify ui creation, make it more readable
- o kill offuscating basic_secadmin_check(), basic_secadmin_entry(),
- network_generate_page(), system_generate_page() and
- checks_generate_page()
- o increase default height because of stupid "add_with_viewport" in
- ugtk::createScrolledWindow
- o consolidate network and system functions managment, they're all the
- same for
- msec, splitting is only a draksec "feature"; all go in
- %options_values
-
- - draksec :
- o let standalone module configure standalone mode
- o security::main already take care of initializing gtk
- o security::main already take care of exiting
- o don't play with embedded mode special variables
-
- it overall looks better but big cleanups're still possible for mdk9.1
-
- * standalone/draksec: "kill quart of draksec code" patch aka make it
- really working aka "happy fred" :
- - security::msec :
- o consolidate get_function_value() and get_value into get_value()
- o really apply changes, aka save them :
- * config_check() : use substInFile and setVarsInSh
- * config_function() : use substInFile and append_to_file
- * kill stupid and bogus config_option()
- o don't overwrite previous changes, aka reread them :
- * fix checks and functions current value loading
- * fix checks and functions default loading
- - security::main :
- o simplify ui creation, make it more readable
- o kill offuscating basic_secadmin_check(), basic_secadmin_entry(),
- network_generate_page(), system_generate_page() and
- checks_generate_page()
- o increase default height because of stupid "add_with_viewport" in
- ugtk::createScrolledWindow
- o consolidate network and system functions managment, they're all the
- same for
- msec, splitting is only a draksec "feature"; all go in
- %options_values
-
- - draksec :
- o let standalone module configure standalone mode
- o security::main already take care of initializing gtk
- o security::main already take care of exiting
- o don't play with embedded mode special variables
-
- it overall looks better but big cleanups're still possible for mdk9.1
-
- * security/main.pm: fix wait_message doesn't display
- run msec after setting changes
- "kill quart of draksec code" patch aka make it really working aka "happy
- fred" :
- - security::msec :
- o consolidate get_function_value() and get_value into get_value()
- o really apply changes, aka save them :
- * config_check() : use substInFile and setVarsInSh
- * config_function() : use substInFile and append_to_file
- * kill stupid and bogus config_option()
- o don't overwrite previous changes, aka reread them :
- * fix checks and functions current value loading
- * fix checks and functions default loading
- - security::main :
- o simplify ui creation, make it more readable
- o kill offuscating basic_secadmin_check(), basic_secadmin_entry(),
- network_generate_page(), system_generate_page() and
- checks_generate_page()
- o increase default height because of stupid "add_with_viewport" in
- ugtk::createScrolledWindow
- o consolidate network and system functions managment, they're all the
- same for
- msec, splitting is only a draksec "feature"; all go in
- %options_values
-
- - draksec :
- o let standalone module configure standalone mode
- o security::main already take care of initializing gtk
- o security::main already take care of exiting
- o don't play with embedded mode special variables
-
- it overall looks better but big cleanups're still possible for mdk9.1
-
-2002/09/17 David Baudens <baudens@mandrakesoft.com>
-
- * share/advertising/04-multimedia.png: Use the right image
-
-2002/09/17 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone/drakbug:
- - sync option names with server's name.
- - fix typo
- - back to normal http connection (instead of https)
- - relocated web wizard
-
-2002/09/17 Frederic Lepied <flepied@mandrakesoft.com>
-
- * share/po/fr.po: corrected typo
-
-2002/09/17 florin
-
- * network/shorewall.pm: small updates
-
- * network/drakfirewall.pm: add a silly message
-
- * standalone/drakgw: add warning message
- add the nameserver IP variable in advanced mode
-
-2002/09/17 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/no.po: updated Norwegian file
-
- * share/po/nl.po, share/po/sk.po: updated Dutch and Slovak files
-
- * share/po/tr.po: updated Turkish file
-
-2002/09/17 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * share/po/fr.po: fix draksec typo
-
- * drakxtools.spec: 50mdk for lord fredl
-
- * security/msec.pm:
- - security::msec :
- o config_check: use MDK::Common to set option rather
- than overwriting config file
- o remove all stupid prefix that just ofuscate code
- whereas it's always set to '',
- $::prefix will be a lot better
- o s/shift @_/shift/
- o kill config_option()
- o simplify get_default()
- o get_secure_level() : replace if cascade by an array
- o set_secure_level() :
- * replace if cascade by an hash
- * default to runlevel 3 if undefined
- o get_functions() : simplify by merging code paths
- - security::main :
- o security::libsafe is unneeded
- o don't pass useless prefix
- o begin to read default values
- - msec::config_check: use MDK::Common to set option rather
- than overwriting config file
- - remove all stupid prefix that just ofuscate code
- whereas it's always set to '',
- $::prefix will be a lot better
- - security::main: kill duplicated 'use strict'
- - no ignore choice for periodic checks
- - save functions in /etc/security/msec/level.local
- and not security.conf
- - "from mseclib import" is useless
- - fix functions saving (an object method invocation
- takes class name as argument)
- remove libsafe option (not anymore used by msec)
-
- * security/main.pm:
- - security::msec :
- o config_check: use MDK::Common to set option rather
- than overwriting config file
- o remove all stupid prefix that just ofuscate code
- whereas it's always set to '',
- $::prefix will be a lot better
- o s/shift @_/shift/
- o kill config_option()
- o simplify get_default()
- o get_secure_level() : replace if cascade by an array
- o set_secure_level() :
- * replace if cascade by an hash
- * default to runlevel 3 if undefined
- o get_functions() : simplify by merging code paths
- - security::main :
- o security::libsafe is unneeded
- o don't pass useless prefix
- o begin to read default values
- - msec::config_check: use MDK::Common to set option rather
- than overwriting config file
- - remove all stupid prefix that just ofuscate code
- whereas it's always set to '',
- $::prefix will be a lot better
- - security::main: kill duplicated 'use strict'
- - no ignore choice for periodic checks
- - save functions in /etc/security/msec/level.local
- and not security.conf
- - "from mseclib import" is useless
- - fix functions saving (an object method invocation
- takes class name as argument)
- add ignore option to msec items
-
-2002/09/17 Warly <warly@mandrakesoft.com>
-
- * share/rpmsrate: remove !CDCOM flag for OpenOffice.org
-
-2002/09/16 siegel
-
- * share/po/de.po: updates
-
-2002/09/16 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm, share/po/de.po: Do not try to install "webfetch" during
- installation.
-
-2002/09/16 Warly <warly@mandrakesoft.com>
-
- * drakxtools.spec: 49mdk for new printerdrake code regarding webfetch that
- breaks during install.
-
-2002/09/16 siegel
-
- * share/po/de.po: updates
-
-2002/09/16 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm, share/po/de.po: Do not try to install "webfetch" during
- installation.
-
-2002/09/16 David Baudens <baudens@mandrakesoft.com>
-
- * share/advertising/17-mdkclub.pl,
- share/advertising/15-mdkexpert-corporate.pl,
- share/advertising/04-multimedia.pl, share/advertising/06-mcc.pl,
- share/advertising/12-mdkstore.pl: Adapt text postion to fix french
- translations
-
-2002/09/16 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone/drakbug:
- - typo in options
-
- * standalone.pm:
- - use basename with drakbug for standalone tools
-
- * standalone/drakfloppy:
- - translation for drakfloppy
-
- * standalone/logdrake:
- - enable translation for logdrake
-
-2002/09/16 florin
-
- * network/shorewall.pm: add internal_ports variable
-
-2002/09/16 François Pons <fpons@mandrakesoft.com>
-
- * standalone/XFdrake: fixed no translation for XFdrake (pixel idea).
-
-2002/09/16 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * my_gtk.pm, drakxtools.spec: fix die wizcancel in non wizard mode
-
- * rescue/tree/sbin/modprobe: remove modules files even when modprobe fails
-
-2002/09/16 Jonathan Gotti <jgotti@mandrakesoft.com>
-
- * bootlook.pm: remove File::Copy dependencies and change lilo message path
-
-2002/09/16 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/zh_CN.po, share/po/pt.po, share/po/lv.po,
- share/po/sv.po: updated Indonesian, Latvian, Portuguese, Swedish and
- Chinese files
-
-2002/09/15 Pixel <pixel@mandrakesoft.com>
-
- * fsedit.pm: do not allow encrypted filesystem for /boot
-
-2002/09/15 Till Kamppeter <till@mandrakesoft.com>
-
- * share/po/de.po: In wizards: "Finish" --> "Assistent beenden"
-
-2002/09/14 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * my_gtk.pm: workaround ERROR: Can't call method "child" on an undefined
- value at
- /usr/lib/libDrakX/my_gtk.pm line 94
-
- * mdk-stage1/network.c: http: don't add a / between the hostname and the
- url, apache
- doesn't understand //~fermigier the same way as /~fermigier
-
-2002/09/14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hu.po: updated Hungarian file
-
- * share/po/wa.po: corrected typo
-
- * standalone/logdrake, standalone/drakfloppy: corrected gettext domain
- (translations are now in libDrakX)
-
- * share/po/cy.po, share/po/zh_CN.po, share/po/lv.po, share/po/fr.po:
- updated Welsh, French, Latvian and Chinese files
-
-2002/09/14 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Made "LPRng" show up in the spooler menu when LPRng is
- installed.
-
- * share/po/de.po: Printerdrake translations
- Printerdrake translations
- Printerdrake translations
- Printerdrake translations.
- Printerdrake translations
-
-2002/09/13 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone.pm:
- - meuh aka launch drakbug when incident is risen
-
-2002/09/13 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/netconnect.pm:
- - fix old conf files name (thx titi)
-
-2002/09/13 florin
-
- * network/shorewall.pm: more services in drakgw_protocols
-
-2002/09/13 François Pons <fpons@mandrakesoft.com>
-
- * live_install2: allow devfsd to be restarted after update.
-
- * install_any.pm: allow live_update to have something configured correctly
- for urpmi media.
-
-2002/09/13 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
- share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: removed
- obsolete old unused strings, to make the po files lighter
-
-2002/09/13 Pixel <pixel@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
- share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/sp.po, share/po/cy.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/bs.po,
- share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/nl.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/lv.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/hu.po: update the help english part (so that no
- fuzzy occurs)
-
- * share/rpmsrate: put back kernel-secure
-
- * install_any.pm: don't write fstab on upgrade (to workaround the fact
- that many entries are dropped)
-
- * help.pm, share/po/help-de.pot, share/po/help-it.pot,
- share/po/help-fr.pot, share/po/help-es.pot: update help from xml
-
-2002/09/13 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Do not insist on "curl" to download PPDs from a CUPS
- server (for Star Office/OpenOffice.org/GIMP), take the one from "curl"
- and "wget" which is there. Install "webfetch" when none is there.
- Let "cups-drivers" be installed when switching from normal to expert
- mode.
- Entries in "auto-detected" field of SMB printer setup mask should not be
- editable.
-
- * printer.pm: Do not insist on "curl" to download PPDs from a CUPS server
- (for Star Office/OpenOffice.org/GIMP), take the one from "curl" and
- "wget" which is there. Install "webfetch" when none is there.
- Let "cups-drivers" be installed when switching from normal to expert
- mode.
- Added timeouts to network scan with "nmap" so that scan does not take
- too long when there are machines running a firewall.
- To find running machines in the network, do not only a broadcast ping
- but also an "nmblookup" to also catch Windows machines which do not
- answer to ping.
-
-2002/09/13 Daouda Lo <daouda@mandrakesoft.com>
-
- * drakxtools.spec:
- - obsoletes drakfloppy
-
-2002/09/13 François Pons <fpons@mandrakesoft.com>
-
- * live_install2: allow devfsd to be restarted after update.
- added modprobe loop before killing devfsd.
- fixed for newer perl 5.8.0 (vendor_perl directory).
- fixed to kill devfsd before.
-
- * install_any.pm: allow live_update to have something configured correctly
- for urpmi media.
-
-2002/09/13 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/es.po, share/po/zh_TW.po, share/po/da.po, share/po/pt.po,
- share/po/lv.po, share/po/hu.po: updated Danish, Spanish, Hungarian,
- Latvian, Portuguese and Chinese files
-
-2002/09/13 Pixel <pixel@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
- share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/sp.po, share/po/cy.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/bs.po,
- share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/nl.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/lv.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/hu.po: update the help english part (so that no
- fuzzy occurs)
-
- * share/rpmsrate: put back kernel-secure
-
- * install_any.pm: don't write fstab on upgrade (to workaround the fact
- that many entries are dropped)
-
- * help.pm, share/po/help-de.pot, share/po/help-it.pot,
- share/po/help-fr.pot, share/po/help-es.pot: update help from xml
-
-2002/09/13 Till Kamppeter <till@mandrakesoft.com>
-
- * share/po/de.po: German translations for printerdrake and some
- corrections.
-
-2002/09/13 Warly <warly@mandrakesoft.com>
-
- * share/logo-mandrake.png: rc3
-
-2002/09/12 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sk.po: updated slovak file
-
-2002/09/12 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm, any.pm, install_any.pm, install2.pm,
- install_steps_interactive.pm: do something with "Security Administrator
- (login or email)"
-
- * share/po/help_xml2pm.pl:
- - discard &shy; (ie \x{ad})
- - handle <quote><literal>xxx</literal></quote> specially to not have
- double
- double quotes
-
-2002/09/12 siegel
-
- * share/po/de.po: updates
-
-2002/09/12 alus
-
- * share/po/pl.po: Updated polish translation
-
-2002/09/12 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/tools.pm, drakxtools.spec, standalone/net_monitor:
- - patch net_monitor
-
-2002/09/12 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fixed very stupid typo and inconsistency in
- allowNVIDIA_rpms.
-
- * install_steps.pm: added code after install of package to fix broken
- alternatives.
-
-2002/09/12 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw: meumeuh
- meuh
- a fix from florin/pixel to make it work
-
- * network/shorewall.pm: run_program crazyness
-
- * drakxtools.spec: meuuuuh meuh meuh ?
-
-2002/09/12 Jonathan Gotti <jgotti@mandrakesoft.com>
-
- * bootlook.pm: resize previews pixmap to be nice when embedded
-
- * share/po/fr.po: modif bootlook.pm translation to keep a good when
- embedded
-
-2002/09/12 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hu.po: Updated Hungarian file
- updated pot file
-
- * share/po/sk.po: updated slovak file
- updated pot file
-
- * share/po/mt.po, share/po/vi.po: updated Vietnamese and Maltese files
- updated pot file
-
- * share/po/tr.po: updated pot file
- updated turkish file
-
- * share/po/id.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/no.po, share/po/et.po,
- share/po/ja.po, share/po/hr.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/ta.po, share/po/fr.po,
- share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/bg.po,
- share/po/lv.po: updated pot file
-
- * share/po/cs.po: updated Czech file
- updated pot file
-
- * share/po/ru.po: updated Russian file
- updated pot file
-
-2002/09/12 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm, any.pm, install_any.pm, install2.pm,
- install_steps_interactive.pm: do something with "Security Administrator
- (login or email)"
-
- * share/po/help_xml2pm.pl:
- - discard &shy; (ie \x{ad})
- - handle <quote><literal>xxx</literal></quote> specially to not have
- double
- double quotes
-
- * network/shorewall.pm: fix writing twice tcp instead of tcp & udp
-
-2002/09/12 siegel
-
- * share/po/de.po: updates
-
-2002/09/12 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: When adding a local printer during an expert install
- without network,
- printerdrake insists on starting the network and does not enter the
- add printer procedure.
- Made the association of model names obtained by auto-detection and of
- the model names in the printer database much more reliable.
-
- * detect_devices.pm: Made the association of model names obtained by
- auto-detection and of
- the model names in the printer database much more reliable.
-
-2002/09/12 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/logdrake, standalone/drakfloppy: fix logdrake and drakfloppy
-
- * drakxtools.spec: 45mdk
-
- * security/main.pm, security/msec.pm:
- - draksec window title is draksec, not "draksec - basic options" since
- it offer
- advanced options too now
- - mark some strings to be translated (mainly notebook pages titles)
-
- * share/po/fr.po: update french translation
-
-2002/09/11 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/es.po, share/po/cs.po, share/po/vi.po, share/po/mt.po,
- share/po/hu.po: updated po files
-
-2002/09/11 alus
-
- * share/po/pl.po: updated po
-
-2002/09/11 David Baudens <baudens@mandrakesoft.com>
-
- * share/advertising/11-mdkstore.pl, share/advertising/07-desktop.pl,
- share/advertising/10-mnf.pl: Fix typos
-
- * share/advertising/09-server.pl: Update
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
- share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/bs.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/nl.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/lv.po, share/po/cs.po,
- share/po/bg.po, share/po/el.po, share/po/hu.po: Don't break po
- Update
-
-2002/09/11 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone/drakbug:
- - s/bugzilla.com/drakbug.mandrakesoft.com/
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
- share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/bs.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/lv.po, share/po/hu.po:
- -s/bugzilla.com/drakbug.mandrakesoft.com/
-
-2002/09/11 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * drakxtools.spec:
- - update spec for 44mdk
-
-2002/09/11 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fixed possible problem with NVIDIA packages parsing.
-
-2002/09/11 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/frontend-common.c: meuh
- probe for usb stuff in info and error msg also
-
-2002/09/11 Jonathan Gotti <jgotti@mandrakesoft.com>
-
- * standalone/draksplash: use do_pkgs for check and install ImageMagick
-
-2002/09/11 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sk.po: updated Slovak file
- updated pot file
-
- * share/po/id.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/no.po, share/po/et.po,
- share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/ga.po,
- share/po/be.po, share/po/uk.po, share/po/ko.po, share/po/DrakX.pot,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/lt.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/bs.po, share/po/ro.po,
- share/po/wa.po, share/po/is.po, share/po/af.po, share/po/az.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/ta.po,
- share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/de.po,
- share/po/eo.po, share/po/el.po, share/po/bg.po, share/po/lv.po: updated
- pot file
-
- * standalone/draksplash: small text for translatators
-
- * share/po/mt.po, share/po/vi.po, share/po/es.po, share/po/cs.po,
- share/po/hu.po: updated po files
- updated pot file
-
- * share/po/fr.po: updatd French file
- updated pot file
-
- * share/po/ru.po: updated Russian file
- updated pot file
-
- * network/isdn.pm: corrected i18n usage
-
-2002/09/11 Pixel <pixel@mandrakesoft.com>
-
- * standalone/drakupdate_fstab: use flag "kudzu" for entries automatically
- handled by drakupdate_fstab
-
- * common.pm: allow various textdomains for i18n
-
-2002/09/11 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm:
- - Made printer::assure_device_is_available_for_cups() more reliable by
- checking and retrying.
- - Do not start the network when it is not configured.
-
-2002/09/11 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * share/po/fr.po: update french translation
- s/was the firt sound API/was the first sound API/
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
- share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/sp.po, share/po/cy.po,
- share/po/da.po, share/po/ca.po, share/po/ar.po, share/po/bs.po,
- share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/vi.po, share/po/ta.po, share/po/it.po, share/po/nl.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/bg.po, share/po/cs.po, share/po/el.po, share/po/lv.po,
- share/po/hu.po: s/was the firt sound API/was the first sound API/
-
- * standalone/draksound:
- - fix: we displayed current driver as default one: display the right
- one
- - show a wait message while switching driver
-
- * harddrake/sound.pm:
- - fix: we displayed current driver as default one: display the right
- one
- - show a wait message while switching driver
- s/was the firt sound API/was the first sound API/
-
- * drakxtools.spec: update
-
-2002/09/10 alus
-
- * share/po/pl.po: Strings one day before deadline????
- updated translation
-
-2002/09/10 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone/drakbug:
- - definitive link and options
-
-2002/09/10 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/isdn.pm:
- - remove variable from a translated chain
-
-2002/09/10 François Pons <fpons@mandrakesoft.com>
-
- * c/stuff.pm: removed old code no more used.
-
- * pkgs.pm: consolidate unselectAllPackages.
-
- * install_steps_interactive.pm: fixed test of chooseCD on nfs (always
- enabled).
- avoid removing all packages during upgrade (safe guard).
-
-2002/09/10 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/Makefile: tag version as 9.0
-
- * rescue/tree/etc/rc.sysinit: don't drvinst SERIAL_USB when noauto (it
- needs a lspcidrake -v)
-
- * rescue/drvinst: drvinst <param> is broken when we don't -v
-
-2002/09/10 Jonathan Gotti <jgotti@mandrakesoft.com>
-
- * standalone/draksplash: change the preview rendering method
-
-2002/09/10 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt.po, share/po/fr.po: updated French and Portuguese files
- updated pot file
- updated pot file
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/ta.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/cs.po, share/po/bg.po, share/po/lv.po,
- share/po/hu.po: updated pot file
- updated pot file
-
- * security/main.pm: improved i18n handling
-
- * share/po/vi.po: updated Vietnamese file
- updated Vietnamese file
-
- * share/po/nl.po: updated Dutch file
- updated pot file
- updated pot file
-
- * standalone/drakTermServ: small i18n change
-
-2002/09/10 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm: set mount point for nt partitions by default
-
- * Xconfig/card.pm: do not prefer_xf3 for "NeoMagic (laptop/notebook)"
- since:
- - long ago it was decided to distrust driver "neomagic" together with
- Riva's, SiS, GeForce
- - in 09/2001 (XFree 4.1.0), it was decided to keep distrusting driver
- "neomagic"
- - Cosmic Flo says driver "neomagic" works (on card Neomagic
- Corporation|[MagicGraph 256AV])
-
- * fs.pm:
- - have ntfs "ro" by default
- - "umask=0" is a special option for ntfs
-
-2002/09/10 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakTermServ: Display issues in other locales.
-
-2002/09/10 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/sound.pm: description update
- fix OSS definition
-
- * share/po/fr.po: next updates batch
- update french translation
-
-2002/09/10 alus
-
- * share/po/pl.po: updated translation
-
-2002/09/10 David Baudens <baudens@mandrakesoft.com>
-
- * share/po/fr.po: Update
-
-2002/09/10 François Pons <fpons@mandrakesoft.com>
-
- * c/stuff.pm: removed old code no more used.
-
- * mouse.pm: fixed pixel typo (strange, I was sure it was titi but not ?).
-
- * pkgs.pm: consolidate unselectAllPackages.
-
- * install_steps_interactive.pm: fixed test of chooseCD on nfs (always
- enabled).
- avoid removing all packages during upgrade (safe guard).
-
-2002/09/10 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/Makefile: tag version as 9.0
-
- * rescue/tree/etc/rc.sysinit: don't drvinst SERIAL_USB when noauto (it
- needs a lspcidrake -v)
-
- * rescue/drvinst: drvinst <param> is broken when we don't -v
-
-2002/09/10 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/br.po, share/po/th.po, share/po/sl.po, share/po/no.po,
- share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/mt.po,
- share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/ko.po,
- share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/sp.po, share/po/cy.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ro.po,
- share/po/wa.po, share/po/is.po, share/po/af.po, share/po/az.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/ta.po, share/po/fr.po,
- share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/bg.po, share/po/lv.po,
- share/po/hu.po: updated pot file
-
- * share/po/ru.po, share/po/pt.po, share/po/cs.po: updated pot file
- updated Czech, Russian and Portuguese files
-
- * security/main.pm: improved i18n handling
-
- * standalone/drakTermServ: small i18n change
-
-2002/09/10 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm: set mount point for nt partitions by default
-
- * fs.pm:
- - have ntfs "ro" by default
- - "umask=0" is a special option for ntfs
-
-2002/09/10 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakTermServ: Display issues in other locales.
-
-2002/09/10 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * security/libsafe.pm, standalone/draksec: move back draksec's files in
- drakxtools
-
- * drakxtools.spec: move back draksec to drakxtools
-
- * Makefile.config: move back draksec's files in drakxtools
- move back draksec to drakxtools
-
- * security/main.pm, security/msec.pm: inline seclevel_explain (why using
- functions to return a text label ?)
- move back draksec's files in drakxtools
-
-2002/09/10 François Pons <fpons@mandrakesoft.com>
-
- * mouse.pm: fixed pixel typo (strange, I was sure it was titi but not ?).
-
-2002/09/10 François Pons <fpons@mandrakesoft.com>
-
- * mouse.pm: fixed pixel typo (strange, I was sure it was titi but not ?).
-
-2002/09/10 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/eu.po, share/po/sk.po: updated Basque and Slovak files
-
-2002/09/09 dam's <dams@idm.fr>
-
- * ugtk.pm: corrected typo (modification of constant if ugtk.pm was a
- string)
-
-2002/09/09 Pixel <pixel@mandrakesoft.com>
-
- * mouse.pm: have the IMPS/2 warning "MOVE YOUR WHEEL" for ExplorerPS/2 too
-
- * Xconfig/card.pm: have BusID's on MULTI_HEAD, otherwise G450 & G550 go
- crazy
-
-2002/09/09 David Baudens <baudens@mandrakesoft.com>
-
- * share/po/fr.po: Update
- Update
- Fix typos and bad french translations
- Update
-
- * share/advertising/14-mdkexpert.pl, share/advertising/03-internet.pl: Fix
- typos
-
-2002/09/09 dam's <dams@idm.fr>
-
- * ugtk.pm: corrected typo (modification of constant if ugtk.pm was a
- string)
-
-2002/09/09 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/ethernet.pm:
- - check DNS & Gateway IP
-
- * network/network.pm:
- - show pcmcia ethernet cards in list
-
- * modules.pm:
- - change "=~ /isdn/" in "eq 'network/isdn'"
-
-2002/09/09 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fix urpmi installation.
- fixed still present hdlist and synthesis file for media not configured
- (because
- of not selected).
-
-2002/09/09 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * my_gtk.pm: gfx specs is to have the text justified on the left
-
- * share/po/fi.po: a fix from cooker
-
-2002/09/09 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/DrakX.pot: updated pot file
-
- * share/po/fr.po: updated po files
- updated pot file
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/bs.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/it.po,
- share/po/nl.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/lv.po, share/po/hu.po: updated po files
-
-2002/09/09 Pixel <pixel@mandrakesoft.com>
-
- * ugtk.pm, Xconfig/test.pm, install2.pm:
- - use variable $::no_ugtk_init in ugtk.pm instead of using
- $::isInstall
- - that way, the X test can be made to work both at install and
- standalone
-
- * standalone/drakupdate_fstab: force non-supermount, supermount is too
- buggy
-
- * mouse.pm: have the IMPS/2 warning "MOVE YOUR WHEEL" for ExplorerPS/2 too
-
- * Xconfig/card.pm: have BusID's on MULTI_HEAD, otherwise G450 & G550 go
- crazy
-
- * any.pm: when "password" or "restricted" is set, propose the entries to
- change them
- (thanks to Aleksander Adamowski)
- fix detection of mixed_kind_of_disks (eg: hde with hda)
-
- * standalone/fileshareset: add "sync" to nfs exports default_options (so
- that exportfs doesn't warn a lot of stuff)
-
-2002/09/09 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/ui.pm: enforce unique ids
- add drakbug report entry in help menu
-
- * drakxtools.spec: fix confirm script
- require perl-GTK-Gdkpixbuf for bootlook
-
- * harddrake/TODO: update
-
-2002/09/09 Pixel <pixel@mandrakesoft.com>
-
- * ugtk.pm, Xconfig/test.pm, install2.pm:
- - use variable $::no_ugtk_init in ugtk.pm instead of using
- $::isInstall
- - that way, the X test can be made to work both at install and
- standalone
-
- * standalone/drakupdate_fstab: force non-supermount, supermount is too
- buggy
-
- * any.pm: fix detection of mixed_kind_of_disks (eg: hde with hda)
-
-2002/09/09 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/ui.pm: enforce unique ids
- add drakbug report entry in help menu
-
- * standalone/service_harddrake: don't detect same removed/added when
- upgrading from previous releases
- - harddrake:
- o don't pollute sbin namespace with one shot scripts
- o add run wrapper script for harddrake service
- o disable ?dm part
- o timeout configurator offer to 5 seconds
-
- * ugtk.pm, bootlook.pm, standalone/logdrake, standalone/drakfloppy:
- - drakfloppy / logdrake: destroy_window and create_dialog were
- gratuitously duplicated; move them in ugtk
- - drakfloppy / logdrake / bootlook.pm: get_main_menu was
- gratuitously duplicated;
- common code which was moved from harddrake::ui to
- ugtk::create_factory_menu just do the job
-
- * drakxtools.spec:
- - harddrake:
- o don't pollute sbin namespace with one shot scripts
- o add run wrapper script for harddrake service
- o disable ?dm part
- o timeout configurator offer to 5 seconds
-
-2002/09/09 Warly <warly@mandrakesoft.com>
-
- * share/rpmsrate: remove harddrake
-
-2002/09/08 Daouda Lo <daouda@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
- share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/bs.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/lv.po, share/po/hu.po:
- - s/occurance/occurence.
-
- * install_steps_interactive.pm:
- - s/occurance/occurence in license.txt (thx qqun)
-
-2002/09/08 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig/various.pm, Xconfig/proprietary.pm: replace a few more 4.2.0
- with 4.2.1
-
- * install_interactive.pm: warn "You don't have a swap
- partition.\n\nContinue anyway?" in expert mode
-
- * Xconfig/card.pm: replace 4.2.0 with 4.2.1
-
-2002/09/07 dam's <dams@idm.fr>
-
- * standalone/drakbackup: don't display the banner id in embedded mode
-
-2002/09/07 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone/draksplash:
- - use standalone for explanations and center dialog
-
- * drakxtools.spec:
- - cvs up before packaging (fix messy drakboot conf).
-
-2002/09/07 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: fix log
-
- * share/rpmsrate: don't install kernel-secure on HIGH_SECURITY since
- kernel-secure is broken
-
-2002/09/06 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/isdn.pm:
- - fix typo
- - add new screen for ISND detected device. Still have to get back in
- Expert mode to choose by hand.
-
- * modules.pm:
- - Fix isdn card detection
-
-2002/09/06 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/service_harddrake, drakxtools.spec, harddrake/ui.pm,
- harddrake/data.pm:
- - harddrake::data : consolidate common code in custom_id()
- - do some detection in dm stage
- - fix bad test
- - display better name
-
-2002/09/06 David Baudens <baudens@mandrakesoft.com>
-
- * standalone/icons/hori.png: Re-add old obsolete Aurora image requires by
- drakboot (can someone explain why? It is stupid)
- Update icons & remove old Aurora stuff
-
- * standalone/icons/gmon.png, standalone/icons/categ.png,
- standalone/icons/verti.png: Re-add completly obsolote Aurora's images
- needed for drakboot (really, but really stupid requires)
- Update icons & remove old Aurora stuff
-
- * standalone/icons/ic82-tape-40.png, standalone/icons/ic-drakfont-48.png,
- standalone/icons/mdk_logo.png, standalone/icons/ic82-when-40.png,
- standalone/icons/ic82-moreoption-40.png,
- standalone/icons/ic82-system-40.png,
- standalone/icons/ic82-dossier-32.png, standalone/icons/ic82-CD-40.png,
- standalone/icons/ic82-back-up-32.png,
- standalone/icons/ic82-where-40.png,
- standalone/icons/ic82-back-up-16.png,
- standalone/icons/ic82-network-40.png,
- standalone/icons/ic82-back-up-48.png,
- standalone/icons/ic82-discdurwhat-40.png,
- standalone/icons/ic82-systemeplus-40.png,
- standalone/icons/ic82-users-40.png, standalone/icons/ic82-others-40.png:
- Update
-
- * drakxtools.spec: Update
- Update
- Update
-
-2002/09/06 Daouda Lo <daouda@mandrakesoft.com>
-
- * my_gtk.pm:
- - fix wizard title and pixmap overlap
-
-2002/09/06 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/isdn.pm:
- - fix typo
- - add new screen for ISND detected device. Still have to get back in
- Expert mode to choose by hand.
-
- * modules.pm:
- - Fix isdn card detection
-
-2002/09/06 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fixed to allow changing boot medium.
-
-2002/09/06 Jonathan Gotti <jgotti@mandrakesoft.com>
-
- * bootlook.pm: comment old code concerning aurora
-
-2002/09/06 Pixel <pixel@mandrakesoft.com>
-
- * mouse.pm: during install, don't probe PS/2 mice when a serial mouse is
- already found.
- (otherwise if a PS/2 keyboard is present, a PS/2 is found even if
- absent, and
- configuring an auxmouse PS/2 causes the PS/2 keyboard to freeze)
- (thanks to Nora Etukudo)
-
- * bootloader.pm (read): cleanup duplicate labels (in case file is
- corrupted)
- (get_label): compare labels using 15 first characters (to be compliant
- with lilo)
- (add_entry): fix removing duplicate entries
- (read): fix
-
-2002/09/06 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakbackup, standalone/drakTermServ: QA BugSummer90 fixes
-
-2002/09/06 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/sound.pm: killing debugging prints
- - blacklist cs46xx and cs4281 drivers : we won't unload these drivers
- since they're know to oopses the kernel but just warn the user
- - add rooted(), unload() and load() wrapper to check wheter we're in
- drakx or in standalone mode
- - workaround alsaconf's aliases
- - add an help button that describe ALSA and OSS
- - display current driver, its type (OSS or ALSA), and the default
- driver for the card
-
- * harddrake/data.pm, harddrake/ui.pm:
- - harddrake::data : consolidate common code in custom_id()
- - do some detection in dm stage
- - fix bad test
- - display better name
- - don't list usb mouses as unknown hw
- - fix mouse detection (mouse::detect() needed
- modules::mergein_conf('/etc/modules.conf') first
- - don't skip mouse in --test mode
-
- * standalone/draksound: if there's no sound card, add a note about
- sndconfig
-
- * standalone/service_harddrake:
- - harddrake::data : consolidate common code in custom_id()
- - do some detection in dm stage
- - fix bad test
- - display better name
-
- * standalone/harddrake2:
- - document --test
- - mark usage as translatable
-
- * share/po/fr.po: update french translation
-
- * harddrake/TODO: update
-
- * drakxtools.spec:
- - harddrake::data : consolidate common code in custom_id()
- - do some detection in dm stage
- - fix bad test
- - display better name
- 40mdk
-
-2002/09/06 Warly <warly@mandrakesoft.com>
-
- * share/rpmsrate: add lisa in KDE in REMOTE_ACCESS
- remove contrib packages
- add !CDCOM for OpenOffice.org
- move mod_php to 5
-
-2002/09/06 David Baudens <baudens@mandrakesoft.com>
-
- * standalone/icons/ic82-tape-40.png, standalone/icons/ic-drakfont-48.png,
- standalone/icons/mdk_logo.png, standalone/icons/ic82-when-40.png,
- standalone/icons/ic82-moreoption-40.png,
- standalone/icons/ic82-system-40.png,
- standalone/icons/ic82-dossier-32.png, standalone/icons/ic82-CD-40.png,
- standalone/icons/ic82-back-up-32.png,
- standalone/icons/ic82-where-40.png,
- standalone/icons/ic82-back-up-16.png,
- standalone/icons/ic82-network-40.png,
- standalone/icons/ic82-back-up-48.png,
- standalone/icons/ic82-discdurwhat-40.png,
- standalone/icons/ic82-systemeplus-40.png,
- standalone/icons/ic82-users-40.png, standalone/icons/ic82-others-40.png:
- Update
-
- * drakxtools.spec: Update
- Update
-
- * standalone/icons/gmon.png, standalone/icons/hori.png,
- standalone/icons/categ.png, standalone/icons/verti.png: Update icons &
- remove old Aurora stuff
-
-2002/09/06 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fixed to allow changing boot medium.
-
- * install_steps.pm: changed how pkgs::remove is called.
-
- * pkgs.pm: fixed excesive reduction of size.
- fixed stupid typo.
- allow obsoleted packages to be taken into account.
- allow cleaning ask_remove according to removed package.
-
-2002/09/06 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * ugtk.pm, my_gtk.pm: add gtkset_visibility
-
- * drakxtools.spec: fix and change a few things in the description
-
-2002/09/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pl.po: updated Polish file
-
- * share/po/pt.po, share/po/sk.po: updated Portuguese and Slovak files
-
-2002/09/06 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig/various.pm, Xconfig/main.pm: ensure Xconfig::various::various is
- called at install
-
- * bootloader.pm (read): cleanup duplicate labels (in case file is
- corrupted)
- (get_label): compare labels using 15 first characters (to be compliant
- with lilo)
- (add_entry): fix removing duplicate entries
- (read): fix
-
-2002/09/06 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * share/po/fr.po: update french translation
- s/si vous être nouveau/si vous êtes nouveau/
- s/des actions additionnelle/des actions additionnelles/
- s/sur le disk/sur le disque/
- s/vous pouves atteindre les toutes options/vous pouvez modifier toutes
- les options/
- Ctrl - C (.... => manque )
- s/Si vous installer/Si vous installez/
- s/qui sera utilisé/qui sera utilisée/ (partition)
- s/accessible en cas de/des images « ramdisk » accessibles/
- s/Cette installation prends/Cette installation prend/
- s/Assurez vous/Assurez-vous/
- fix po
-
- * ugtk.pm: export compose_pixbufs for mcc
- - ugtk::gtkicons_labels_widget() :
- o pass icon name in $tag to $exec_func so that the later can display
- big icon
- o $label_exec is a duplicate of $label
- o simplify notebook redrawing:
- * remove dam'sugly hacks
- * $redraw_function->() : resize Gtk::Fixed on first run if more
- than 4 icons
- * redraw in only one place
- * don't redraw on realize event
- (now we both don't flick and have proper icon alignment without
- old hacks)
- - mcc:
- o print big icon while launching a tool (anim in next commit)
- o move todo list in TODO
- o stricter check:
- * default to use strict
- * disable strict mode when building rpm
- * fixes for 'use strict'
- o kill :
- * a debugging print
- * a superflous 'no warnings'
- * a title->show since we never hide it
- * $rootheight since gtk packer do the job for us
- * unused $nb_pages
- o begin to un-hardcode some values (window and notebook size, ...)
- o cosmetics:
- * comment some code
- * add myself to authors list (deush, you should add yourself too
- since you're the localedrake/mcc interaction guru)
- * s/darea1/summary_darea/
- o don't display logs when back in main summary
- o destroy pixbuf after
-
- * harddrake/ui.pm: fix translated string
-
- * standalone/drakbackup: handle delete_event in all cases
- use my_gtk for window creation, thus:
- - window creation and embedding mode're handled automatically
- - when one close drackbackup, my_gtk close it properly and return to
- mcc
-
- * drakxtools.spec: 36mdk
-
- * standalone/drakperm: use my_gtk for embedded mode.
- code must be cleaned up through my_gtk usage though.
-
-2002/09/06 Warly <warly@mandrakesoft.com>
-
- * share/rpmsrate: remove contrib packages
- add !CDCOM for OpenOffice.org
- move mod_php to 5
-
-2002/09/05 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/tr.po: updated Turkish file
-
- * share/po/zh_TW.po, share/po/sk.po: updated po Slovak and Chinese files
-
-2002/09/05 Pixel <pixel@mandrakesoft.com>
-
- * interactive/newt.pm: special case to handle many buttons in newt:
- replacing with something alike ask_from_list (useful for XFdrake)
-
-2002/09/05 David Baudens <baudens@mandrakesoft.com>
-
- * standalone/icons/drakfont.620x57.png: Update
-
- * share/po/fr.po: Update
- Update
-
-2002/09/05 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/adsl.pm:
- - Remove ECI ADSL modem from menu until we have an agreement
-
- * network/netconnect.pm:
- - little fix
-
-2002/09/05 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ta.po: updated po file
-
- * share/po/tr.po: updated Turkish file
-
- * share/po/nl.po: updated Dutch file
-
- * share/po/zh_TW.po, share/po/sk.po: updated po Slovak and Chinese files
-
-2002/09/05 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm: better NT & Fat bootloader entry adding or not
- do not add an nt label if there is no magic
- use name mangling for labels (taken from installkernel)
-
- * interactive/newt.pm: special case to handle many buttons in newt:
- replacing with something alike ask_from_list (useful for XFdrake)
-
- * Xconfig/card.pm, Xconfig/main.pm: add an option for prefering Xinerama
- in auto_installs
-
- * fs.pm: set umask=0 for ntfs partitions (currently only used when user
- sets the mount point to a ntfs partition)
- (suggested in bug #189)
-
-2002/09/05 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakbackup: cleanup check for Expect - thx gc
-
-2002/09/05 Warly <warly@mandrakesoft.com>
-
- * share/logo-mandrake.png: rc2
-
-2002/09/05 David Baudens <baudens@mandrakesoft.com>
-
- * pixmaps/services.png, pixmaps/X.png, pixmaps/quit.png,
- pixmaps/bootloader.png, pixmaps/language.png, pixmaps/summary.png,
- pixmaps/security.png, pixmaps/partition.png, pixmaps/default.png,
- pixmaps/keyboard.png, pixmaps/mouse.png,
- share/advertising/02-community.png, pixmaps/rootpasswd.png,
- pixmaps/bootdisk.png, pixmaps/colors16.png, pixmaps/harddrive.png,
- pixmaps/warning.png, pixmaps/user.png, pixmaps/printer-mdk.png,
- pixmaps/network.png, standalone/icons/drakfont.620x57.png,
- pixmaps/eth_card_mini.png: Update
-
- * share/po/fr.po: Update
- Update
- Update
- Update
- Update
-
-2002/09/05 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/modem.pm:
- - fix drakconnect broken modem detection
-
-2002/09/05 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: fixed problem of --auto-select not always run.
- fixed copy of hdlist to avoid copying ignored media.
-
- * install_any.pm: allow noauto:... media in hdlists file to be installed
- for urpmi.
-
-2002/09/05 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * tools/cvslog2changelog.pl: add baudens
-
- * drakxtools.spec: meuuuuuuuuuh
-
- * my_gtk.pm: ask_browse_tree_info_given_widgets: add ability of partial
- selection clickery leading to unselection for rpmdrake (if
- someone understands this log message..)
-
- * mdk-stage1/modules.c, mdk-stage1/usb-resource/update-usb-ids.pl,
- mdk-stage1/probing.c, mdk-stage1/modules.h: fake support the firewire in
- stage1 (as if it were usb ;p)
-
-2002/09/05 Jonathan Gotti <jgotti@mandrakesoft.com>
-
- * bootlook.pm: add use ugtk.pm
-
- * standalone/draksplash: preview window bug correction
-
-2002/09/05 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt.po: updated Portuguese file
-
- * share/po/zh_CN.po: updated Chinese and Danish files
-
- * share/po/it.po: updated Chinese file, some more Italian typo corrections
- updated Czech and Swedish files; corrected various erros in Italian file
-
- * share/po/es.po, share/po/ta.po, share/po/hu.po: updated po file
-
- * share/po/zh_TW.po: updated Chinese file, some more Italian typo
- corrections
-
- * share/po/da.po: updated Chinese and Danish files
- updated Danish file
-
- * share/po/cs.po, share/po/sv.po: updated Czech and Swedish files;
- corrected various erros in Italian file
-
- * share/po/sk.po: updated Slovak file
-
- * share/po/vi.po: Updated Vietnamese file
-
- * share/po/nl.po: updated Dutch file
-
-2002/09/05 Pixel <pixel@mandrakesoft.com>
-
- * standalone/localedrake: workaround kde control center calling
- localedrake with an empty kde lang
-
- * diskdrake/dav.pm: add nice description to the initial dialog box (thanks
- Stew!)
-
- * install_any.pm: add flag CDCOM when using commercial cds
-
- * network/network.pm, proxy.pm: allow http://xxx for ftp_proxy
-
- * lvm.pm: fix using given size for created LVs whereas lvcreate allocates
- a little less
- (thanks to Alan Hughes)
-
- * any.pm (ask_window_manager_to_logout): do not su into user before doing
- dcop if
- we are not root (otherwise localedrake in user ask for user's password
- before login out) (thanks to H. Narfi Stefansson for reporting it)
-
- * bootloader.pm: do not add an nt label if there is no magic
- use name mangling for labels (taken from installkernel)
-
- * standalone/XFdrake: correctly set allowFB flag
-
-2002/09/05 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * drakxtools.spec: rework perl-Expect usage/requirements
-
- * standalone/drakbackup: cleanup check for Expect - thx gc
- rework perl-Expect usage/requirements
-
-2002/09/05 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/ui.pm: don't rely on ctree row number
-
-2002/09/04 David Baudens <baudens@mandrakesoft.com>
-
- * standalone/logdrake, standalone/icons/wiz_logdrake.png: Add image for
- logdrake
-
- * standalone/icons/drakbackup.540x57.png, drakxtools.spec,
- standalone/icons/wiz_printerdrake.png, standalone/icons/wiz_drakgw.png,
- standalone/icons/wiz_scannerdrake.png,
- standalone/icons/wiz_drakconnect.png, standalone/icons/wiz_firewall.png,
- standalone/icons/wiz_default_up.png: Update
-
-2002/09/04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/it.po: fix typo
-
-2002/09/04 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/DrakX.pot, share/po/af.po: updated pot file
-
- * share/po/sk.po, share/po/pt.po, share/po/vi.po, share/po/el.po: updated
- po file
- updated Greek, Hungarian, Portuguese, Slovak and Vietnamese files
-
- * share/po/cy.po: updated Welsh file
- updated po file
- updated Danish and Welsh files
-
- * share/po/da.po: updated po file
- updated Danish and Welsh files
-
- * share/po/id.po, share/po/ru.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/br.po, share/po/th.po, share/po/sl.po, share/po/no.po,
- share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/sp.po, share/po/ca.po,
- share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
- share/po/is.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/ta.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/cs.po,
- share/po/bg.po, share/po/lv.po: updated po file
-
- * share/po/hu.po: updated hungarian file
- updated po file
- updated Greek, Hungarian, Portuguese, Slovak and Vietnamese files
-
- * share/po/fr.po: updated po file
- corrected error syntax
-
-2002/09/04 Pixel <pixel@mandrakesoft.com>
-
- * drakxtools.spec: remove symlink Xconfigurator (which was broken anyway,
- thanks to Ian Ventura-Whiting for reporting it)
-
- * standalone/drakupdate_fstab: do not use standalone (so that no
- "explaination" are generated)
-
- * bootloader.pm (same_entries): compare kernel options sorted (this is an
- approximation of
- reality since order can matter, but...). An example is "quiet
- devfs=mount
- hdc=ide-scsi" vs "devfs=mount hdc=ide-scsi quiet" (thanks to Gabriel
- Phoenix)
-
- * ugtk.pm: make perl_checker happy
-
- * fs.pm: revert add2hash_ username=% to add2hash (it breaks diskdrake
- --smb not
- defaulting to username=%, and i can't find out what was wrong in
- auto_install's manualFstab)
-
- * install_steps.pm (addUser): fix calling with a user already existing
- (mainly for installs keeping the / non-formatted, special for pixel)
-
- * install_steps_interactive.pm: fix dialog box asking "Load from floppy"
- or "Save on floppy" in individual package selection
-
-2002/09/04 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * drakxtools.spec: add perl-Expect requires for drakbackup (now enabled
- and in main)
-
-2002/09/04 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * Makefile.config: add drakperm!
-
- * share/po/fr.po: s/Si vous disque/Si votre disque/
- s/Si non,, Les partitions devront être créés/Sinon, les partitions
- devront être créées/
- s/des fonctionnalité additionnelle/des fonctionnalités
- additionnelles/
- s/sur un disque amovibles/sur un disque amovible/
- s/sauves la table/sauve la table/
- s/pour récurer les partitions/pour récupérer les partitions/
-
- * standalone/drakperm:
- - really embbed
- - kill stupid things (aka embedded window withouth any widget vs
- toplevel window)
-
- * ugtk.pm: gtkcreate_png_pixbuf() : support jpeg too for bootlook.pm
-
-2002/09/04 baudens
-
- * standalone/icons/wiz_logdrake.png, standalone/logdrake: Add image for
- logdrake
-
- * share/po/fr.po: Update
- Update
-
-2002/09/04 Daouda Lo <daouda@mandrakesoft.com>
-
- * network/network.pm:
- - correct typos in orinoco orinoco_cs modules
-
-2002/09/04 François Pons <fpons@mandrakesoft.com>
-
- * Xconfig/test.pm: move last warning before removing tempory file in order
- to have a chance to look
- at them.
-
-2002/09/04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * tools/cvslog2changelog.pl: add fcrozat
-
- * rescue/tree/etc/rc.sysinit: drvinst serial_usb in rc.sysinit so that
- legacy free machines may
- work with rescue
-
-2002/09/04 Jonathan Gotti <jgotti@mandrakesoft.com>
-
- * standalone/drakperm: changing bad save path for perm.local
-
- * bootlook.pm: replace convert dependencies by gdk-pixbuf dependencies
-
-2002/09/04 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/cy.po, share/po/da.po: updated Danish and Welsh files
-
-2002/09/04 Pixel <pixel@mandrakesoft.com>
-
- * drakxtools.spec: remove symlink Xconfigurator (which was broken anyway,
- thanks to Ian Ventura-Whiting for reporting it)
-
- * bootloader.pm (same_entries): compare kernel options sorted (this is an
- approximation of
- reality since order can matter, but...). An example is "quiet
- devfs=mount
- hdc=ide-scsi" vs "devfs=mount hdc=ide-scsi quiet" (thanks to Gabriel
- Phoenix)
-
- * ugtk.pm: make perl_checker happy
-
- * install_steps.pm (addUser): fix calling with a user already existing
- (mainly for installs keeping the / non-formatted, special for pixel)
-
- * share/keymaps.tar.bz2: update (now includes ro2)
-
- * install_steps_interactive.pm: fix dialog box asking "Load from floppy"
- or "Save on floppy" in individual package selection
-
- * fs.pm: revert add2hash_ username=% to add2hash (it breaks diskdrake
- --smb not
- defaulting to username=%, and i can't find out what was wrong in
- auto_install's manualFstab)
- handle no options in fs::mount (is it really needed?... it should not!)
-
- * Xconfig/test.pm: set isInstall in test script otherwise it uses
- /usr/X11R6/bin/xtest
-
-2002/09/04 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakbackup: enable perl-Expect (moved to main)
-
-2002/09/04 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * Makefile.config: add drakperm!
-
- * harddrake/ui.pm:
- - add --test option to skip mice|modem|printer detection (now
- harddrake start instantaneously)
- - print probed class to show progression
- - fix tree moving by using a Gtk::CTree instead of a Gtk::Tree; side
- effect is some code cleaning which compensate above features (code
- lenght)
- - let my_gtk handle embedded case
- - don't try to center window when embedded
-
- * standalone/drakbackup: embbed drakbackup in mcc
-
- * drakxtools.spec: 33mdk
- 32mdk
-
- * standalone/drakperm:
- - really embbed
- - kill stupid things (aka embedded window withouth any widget vs
- toplevel window)
-
- * ugtk.pm: gtkcreate_png_pixbuf() : support jpeg too for bootlook.pm
-
- * share/po/fr.po: s/Si vous disque/Si votre disque/
- s/Si non,, Les partitions devront être créés/Sinon, les partitions
- devront être créées/
- s/des fonctionnalité additionnelle/des fonctionnalités
- additionnelles/
- s/sur un disque amovibles/sur un disque amovible/
- s/sauves la table/sauve la table/
- s/pour récurer les partitions/pour récupérer les partitions/
- fix dadou fsck; please check the po before comitting it!!!!!
-
-2002/09/03 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * drakxtools.spec: meumeu
- meuh
-
- * ugtk.pm, my_gtk.pm: try to get rid of BEGIN but still be able to start
- up the install :-)
-
-2002/09/03 Pixel <pixel@mandrakesoft.com>
-
- * standalone/icons/harddrake2/multimedia.png: re-adding with -kb
- removing for re-adding with -kb
-
-2002/09/03 baudens
-
- * share/advertising/09-server.pl, share/advertising/02-community.pl,
- share/advertising/04-multimedia.pl, share/advertising/07-desktop.pl,
- share/advertising/14-mdkexpert.pl, share/advertising/03-internet.pl,
- share/advertising/13-mdkcampus.pl, share/advertising/12-mdkstore.pl,
- share/advertising/11-mdkstore.pl, share/advertising/05-games.pl: Use
- official marketing ads
-
- * share/advertising/list: Add MandrakeClub screen in list
-
- * share/po/fr.po: Use MandrakeSoft marketing ads
- Begin to use Mandrake's marketing ads
-
- * share/advertising/17-mdkclub.pl, share/advertising/17-mdkclub.png: Add
- MDKclub screen and text
-
-2002/09/03 dam's <dams@idm.fr>
-
- * ugtk.pm: added create_pixbutton
-
- * my_gtk.pm: better icon association
- added create_pixbutton
- added add_icon_path for control-center
-
- * pixmaps/stock_cancel.xpm, pixmaps/stock_right.xpm, pixmaps/stock_ok.xpm,
- pixmaps/stock_exit.xpm, pixmaps/stock_left.xpm: re-adding with -kb
- removing for re-adding with -kb
- icons for ok/cancel/back/previou/next icons
-
-2002/09/03 Daouda Lo <daouda@mandrakesoft.com>
-
- * drakxtools.spec:
- - obsoletes/provides drakfloppy
-
- * my_gtk.pm:
- - better size of wizard for printerdrake
-
-2002/09/03 fcrozat
-
- * share/rpmsrate: mdk-eazel-engine is now in gtk-engines
-
-2002/09/03 François Pons <fpons@mandrakesoft.com>
-
- * install_gtk.pm: fixed old Xconf style because it doesn't work anymore on
- i845 with newer format.
-
- * mouse.pm: add a sleep and second try for usb mouse.
- added log when no usb interface is found, rare enough now.
-
- * ugtk.pm: fixed previous fix;
- try to avoid clashes with install.
-
- * modules.pm: make modules.pm patchable (avoid my ...)
- updated log of add_probeall to be correct.
-
- * my_gtk.pm: fixed damien (aka pitchounette) sucking, this is not this way
- pitchounette you
- will lost your current name as pitchounette :-)
-
- * install_steps_interactive.pm: fixed too higher percentage.
-
-2002/09/03 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * drakxtools.spec: meumeu
- meuh
-
- * ugtk.pm: try to get rid of BEGIN but still be able to start up the
- install :-)
- have the possibility in gtktext_insert to provide font/color
- information as well
- meuh gtk init
- gtkcreate_png was too stupid to allow subdirectories for images,
- fix it
-
- * my_gtk.pm: try to get rid of BEGIN but still be able to start up the
- install :-)
-
-2002/09/03 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pl.po: updated Polish file
-
- * share/po/cs.po: updated po file
-
- * share/po/zh_CN.po: updated Chinese file
-
- * lang.pm: Changed Turkish console font
-
- * share/po/Makefile: enabled ro.po
-
-2002/09/03 Pixel <pixel@mandrakesoft.com>
-
- * rescue/list.i386: add gpart (per Giuseppe Ghibò request)
-
- * my_gtk.pm: remove the use of Ok/Cancel/Exit icons (per ergonomy team
- request)
-
-2002/09/03 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakTermServ: Fix empty subnet in /etc/exports /home entry.
-
-2002/09/03 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * share/po/fr.po: remove double translation
-
- * ugtk.pm:
- - create_pix_text, gtkicons_labels_widget: remove text color argument,
- default to black
- - remove last debugging prints
- - ugtk :
- o create_pix_text:
- * remove
- * kill uni colored background
- * api change:
- + background argument => background list
- + remove bold argument
- * render all text (normal, highlighted, selected) on specified
- background in one pass
- o gtkicons_labels_widget():
- * explain/comment
- * move all drawing logic in &$draw
- * create buffer area, text pics only one time
- * add a pixbuf for highlighted item
- * render highlighted icon by making it more transparent
- * recalculate drawing buffer only on state change
- - mcc :
- * move all drawing logic in &$draw
- * create buffer area, text pics only one time
- * render highlighted icon by making it more transparent
- * recalculate drawing buffer only on state change
-
- * drakxtools.spec: 30mdk
-
-2002/09/02 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/network.pm, network/ethernet.pm:
- - fix previous behavior in Expert mode... (100% lazy loop free this
- time)
-
- * network/netconnect.pm:
- - network restart previous bug fixed
-
-2002/09/02 Frederic Lepied <flepied@mandrakesoft.com>
-
- * share/po/fr.po: corrected a gramatical error
-
-2002/09/02 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: restore auto build of synthesis file (for updates).
-
- * ugtk.pm: fixed titi suckings.
-
- * install_steps_interactive.pm: make sure upgrade is done instead.
-
-2002/09/02 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/id.po, share/advertising/14-mdkexpert.pl, share/po/sk.po,
- share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
- share/po/th.po, share/po/sl.po, share/po/no.po, share/po/et.po,
- share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/advertising/03-internet.pl, share/po/ko.po, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/advertising/05-games.pl, share/po/sp.po, share/po/cy.po,
- share/po/da.po, share/po/ca.po, share/po/ar.po,
- share/advertising/12-mdkstore.pl, share/advertising/09-server.pl,
- share/advertising/04-multimedia.pl, share/po/bs.po, share/po/ro.po,
- share/advertising/13-mdkcampus.pl, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
- share/po/nl.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/lv.po, share/po/cs.po,
- share/po/bg.po, share/po/el.po, share/po/hu.po: try to fix broken
- english in advertisements and not break po's
-
-2002/09/02 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/advertising/12-mdkstore.pl,
- share/advertising/15-mdkexpert-corporate.pl: small fix
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/bs.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/nl.po,
- share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/lv.po, share/po/bg.po, share/po/el.po: updated
- pot file
-
- * share/advertising/14-mdkexpert.pl: fixed typo
- small fix
-
- * share/po/hu.po: updated Hungarian file
- updated pot file
-
- * help.pm: Fixed typo
-
- * share/po/zh_TW.po: updated Chinese file
- updated pot file
-
- * share/po/pl.po, share/po/cs.po: updated pot file
- updated Czech and Polish files
-
-2002/09/02 Till Kamppeter <till@mandrakesoft.com>
-
- * share/rpmsrate: Updated for the new printerdrake.
-
-2002/09/02 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/data.pm: use new ln icons
-
- * ugtk.pm: gtkicons_labels_widget(): check binary exists
-
- * drakxtools.spec, Makefile.drakxtools: 29mdk: add harddrake icons
-
- * standalone/icons/harddrake2/harddrake.png,
- standalone/icons/harddrake2/joystick.png,
- standalone/icons/harddrake2/usb.png, standalone/icons/harddrake2/tv.png,
- standalone/icons/harddrake2/floppy.png,
- standalone/icons/harddrake2/scsi_hd.png,
- standalone/icons/harddrake2/modem.png,
- standalone/icons/harddrake2/keyboard.png,
- standalone/icons/harddrake2/unknown.png,
- standalone/icons/harddrake2/harddisk.png,
- standalone/icons/harddrake2/cd.png, standalone/icons/harddrake2/cpu.png,
- standalone/icons/harddrake2/ide_hd.png,
- standalone/icons/harddrake2/scanner.png,
- standalone/icons/harddrake2/hw_mouse.png,
- standalone/icons/harddrake2/isdn.png,
- standalone/icons/harddrake2/hw_printer.png,
- standalone/icons/harddrake2/memory.png,
- standalone/icons/harddrake2/webcam.png,
- standalone/icons/harddrake2/video.png,
- standalone/icons/harddrake2/tape.png,
- standalone/icons/harddrake2/sound.png,
- standalone/icons/harddrake2/scsi.png,
- standalone/icons/harddrake2/hw_network.png: add new icons
- remove old icons
- add new ln icons
-
- * standalone/icons/harddrake2/menu/harddrake-menu48.png,
- standalone/icons/harddrake2/cable.png,
- standalone/icons/harddrake2/menu/harddrake-menu16.png,
- standalone/icons/harddrake2/menu/harddrake-menu32.png,
- standalone/icons/harddrake2/multimedia.png,
- standalone/icons/harddrake2/K7.png: add new ln icons
-
-2002/09/02 Frederic Lepied <flepied@mandrakesoft.com>
-
- * share/po/fr.po: corrected a gramatical error
-
-2002/09/02 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: restore auto build of synthesis file (for updates).
-
- * ugtk.pm: fixed titi suckings.
-
- * install_steps_interactive.pm: make sure upgrade is done instead.
-
-2002/09/02 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/cs.po, share/po/pl.po: updated Czech and Polish files
-
-2002/09/02 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * ugtk.pm: gtkicons_labels_widget(): check binary exists
- kill glib warnings
-
- * harddrake/data.pm: use new ln icons
-
- * drakxtools.spec, Makefile.drakxtools: 29mdk: add harddrake icons
-
- * standalone/icons/harddrake2/harddrake.png,
- standalone/icons/harddrake2/joystick.png,
- standalone/icons/harddrake2/usb.png, standalone/icons/harddrake2/tv.png,
- standalone/icons/harddrake2/floppy.png,
- standalone/icons/harddrake2/scsi_hd.png,
- standalone/icons/harddrake2/modem.png,
- standalone/icons/harddrake2/keyboard.png,
- standalone/icons/harddrake2/unknown.png,
- standalone/icons/harddrake2/harddisk.png,
- standalone/icons/harddrake2/cd.png, standalone/icons/harddrake2/cpu.png,
- standalone/icons/harddrake2/ide_hd.png,
- standalone/icons/harddrake2/scanner.png,
- standalone/icons/harddrake2/hw_mouse.png,
- standalone/icons/harddrake2/isdn.png,
- standalone/icons/harddrake2/hw_printer.png,
- standalone/icons/harddrake2/memory.png,
- standalone/icons/harddrake2/webcam.png,
- standalone/icons/harddrake2/video.png,
- standalone/icons/harddrake2/tape.png,
- standalone/icons/harddrake2/sound.png,
- standalone/icons/harddrake2/scsi.png,
- standalone/icons/harddrake2/hw_network.png: add new icons
- remove old icons
- add new ln icons
-
- * standalone/icons/harddrake2/menu/harddrake-menu48.png,
- standalone/icons/harddrake2/cable.png,
- standalone/icons/harddrake2/menu/harddrake-menu16.png,
- standalone/icons/harddrake2/menu/harddrake-menu32.png,
- standalone/icons/harddrake2/multimedia.png,
- standalone/icons/harddrake2/K7.png: add new ln icons
-
-2002/09/02 baudens
-
- * share/advertising/list, share/advertising/07-desktop.pl,
- share/advertising/05-games.pl, share/advertising/06-mcc.pl: Update
-
- * share/advertising/09-server.pl, share/advertising/04-multimedia.pl,
- share/advertising/14-mdkexpert.pl, share/advertising/13-mdkcampus.pl,
- share/advertising/11-mdkstore.pl, share/advertising/02-community.pl,
- share/advertising/01-thanks.pl, share/advertising/03-internet.pl,
- share/advertising/10-mnf.pl,
- share/advertising/15-mdkexpert-corporate.pl,
- share/advertising/08-development.pl, share/advertising/12-mdkstore.pl:
- Update
- Update
-
-2002/09/02 Daouda Lo <daouda@mandrakesoft.com>
-
- * Makefile.config, drakxtools.spec, standalone.pm, docs/README.devel:
- - s/tinyfirewall/drakfirewall/
-
- * standalone/drakbug: s/tinyfirewall/drakfirewall/
- - drakbug point to https://drakbug.mandrakesoft.com
-
- * network/netconnect.pm, standalone/tinyfirewall, standalone/drakfirewall,
- network/drakfirewall.pm, network/tinyfirewall.pm:
- - replace tinyfirewall by drakfirewall
-
-2002/09/02 Frederic Lepied <flepied@mandrakesoft.com>
-
- * share/rpmsrate: sympa => mailman
- removed PHP-nuke
-
- * share/po/fr.po: corrected a gramatical error
-
-2002/09/02 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: make sure upgrade is done instead.
- reverted previous modification moved to crypto module.
- make sure rpmdb is open before displaying packages tree.
-
- * install2.pm: now allow meta_class option on command line to be taken
- into account instead of
- previous options desktop and firewall.
-
- * install_steps.pm: add $o->{packages} to install_any::install_urpmi call.
-
- * install_any.pm: restore auto build of synthesis file (for updates).
- fixed typo.
- fix list building not to use parsehdlist.
- install_urpmi only install selected media.
-
- * crypto.pm: fix typo.
- allow selecting packages to upgrade.
-
- * install_steps_gtk.pm: strange typo where no filtering on medium was
- issued ?
-
- * pkgs.pm: fixed to call to getFile by giving medium description,
- necessary for updates.
- allow selectPackagesToUpgrade to use a specific medium instead of all of
- them.
-
- * ugtk.pm: fixed titi suckings.
-
-2002/09/02 Jonathan Gotti <jgotti@mandrakesoft.com>
-
- * drakperm: solving bugs on add and save functions
-
-2002/09/02 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/cs.po: updated Czech and Polish files
-
- * share/po/sv.po, share/po/sk.po, share/po/de.po, share/po/zh_TW.po,
- share/po/tr.po, share/po/hu.po: updated Hungarian, Turkish, Swedish,
- Slovak and Chinese files
-
- * share/po/pl.po: updated Czech and Polish files
- updated Hungarian, Turkish, Swedish, Slovak and Chinese files
-
- * share/po/es.po, share/po/ru.po: updated Spanish and Russian files
-
-2002/09/02 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * ugtk.pm: gtkicons_labels_widget(): check binary exists
- kill glib warnings
-
- * harddrake/sound.pm, harddrake/ui.pm: display alternative drivers (oss,
- alsa) for sound cards
-
- * harddrake/data.pm: use new ln icons
-
- * drakxtools.spec, Makefile.drakxtools: 29mdk: add harddrake icons
-
- * standalone/icons/harddrake2/floppy.png,
- standalone/icons/harddrake2/scsi_hd.png,
- standalone/icons/harddrake2/modem.png,
- standalone/icons/harddrake2/keyboard.png,
- standalone/icons/harddrake2/harddisk.png,
- standalone/icons/harddrake2/ide_hd.png,
- standalone/icons/harddrake2/scanner.png,
- standalone/icons/harddrake2/isdn.png,
- standalone/icons/harddrake2/webcam.png,
- standalone/icons/harddrake2/sound.png,
- standalone/icons/harddrake2/scsi.png,
- standalone/icons/harddrake2/harddrake.png,
- standalone/icons/harddrake2/joystick.png,
- standalone/icons/harddrake2/tv.png, standalone/icons/harddrake2/usb.png,
- standalone/icons/harddrake2/unknown.png,
- standalone/icons/harddrake2/cd.png, standalone/icons/harddrake2/cpu.png,
- standalone/icons/harddrake2/hw_mouse.png,
- standalone/icons/harddrake2/hw_printer.png,
- standalone/icons/harddrake2/memory.png,
- standalone/icons/harddrake2/video.png,
- standalone/icons/harddrake2/tape.png,
- standalone/icons/harddrake2/hw_network.png: add new icons
- remove old icons
- add new ln icons
-
- * share/po/fr.po: update french translation
-
- * standalone/icons/harddrake2/menu/harddrake-menu48.png,
- standalone/icons/harddrake2/multimedia.png,
- standalone/icons/harddrake2/cable.png,
- standalone/icons/harddrake2/menu/harddrake-menu16.png,
- standalone/icons/harddrake2/menu/harddrake-menu32.png,
- standalone/icons/harddrake2/K7.png: add new ln icons
-
-2002/09/01 alus
-
- * share/po/pl.po: and more...
- some translations
-
-2002/09/01 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/vi.po: updated Vientamese file
-
-2002/09/01 siegel
-
- * share/po/de.po: updates
- new german version
-
-2002/09/01 Till Kamppeter <till@mandrakesoft.com>
-
- * scanner.pm: s/Seiko Epson/Epson/ in subroutine to update ScannerDB from
- Sane.
-
- * printerdrake.pm:
- - Tell users of the HP LaserJet 1000 that they have to upload firmware
- to the printer.
- - Updated instructions to get Lexmark's inkjet drivers.
- - Suppressed the display of the "Refresh printer list" and "Specify
- CUPS server" buttons in recommended mode when there is no local network.
-
-2002/08/31 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hu.po: updated po file
- updated pot file
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
- share/po/fr.po, share/po/nl.po, share/po/it.po, share/po/eu.po,
- share/po/es.po, share/po/de.po, share/po/eo.po, share/po/lv.po,
- share/po/cs.po, share/po/bg.po, share/po/el.po: updated pot file
-
- * share/advertising/14-mdkexpert.pl, share/advertising/12-mdkstore.pl,
- share/advertising/15-mdkexpert-corporate.pl: no need to translate web
- adresses
-
- * standalone/drakbackup: fixed use of variables in translatable strings
-
-2002/08/31 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakbackup: Fix prompt text saved as filename - Advanced What
- - Other
-
-2002/08/31 siegel
-
- * share/po/de.po: some upadtes
-
-2002/08/31 Warly <warly@mandrakesoft.com>
-
- * share/rpmsrate: add shorewall and iptables in INSTALL section
-
-2002/08/30 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fixed possible problem with is_installed and
- are_installed.
-
- * install_steps.pm: fixed call to pkgs::remove.
-
-2002/08/30 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sv.po: updated Swedish file
-
-2002/08/30 siegel
-
- * share/po/de.po: update german version
-
-2002/08/30 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm:
- - Fixed bugs in automatic GIMP printer configuration during
- installation.
- - Worked around a bug of "ls -r xxx*" returning "xxx*" instead of
- nothing when "xxx*" does not exist ("ls" of "busybox" during
- installation).
-
-2002/08/30 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * ugtk.pm, drakxtools.spec:
- - mcc :
- o kill gtkpng_() and gtk_createpng_() wrappers: if icon is missing,
- better die while testing rather than make perl display "uncaught
- code ..."
- o kill unused timer
- o use new ln's icons
- o disable stupid icon highlighting (was made with duplicating
- manually all icons in gimp and blue-y them there); restore this
- effect'll need little play with gamma
- o use ugtk
- o kill dead code
- o cleanups
- o icons:
- * switch to new icons set
- * replace pixmap table by a pixbuf one
- * use pixbufs for backgrouns and icons,
- * composite background and icons with transparency trough
- ugtk::compose_pixbufs()
- * render icons with full alpha blender in left column
- * comment the different states
- * simplify callbacks
- - ugtk :
- o readd gdkpixbuf support
- o ensure imlib is used by default to load files, not gdk-pixbuf
- o compose_with_back(): load a png icon into a pixbuf and call
- compose_pixbufs with background pixbuf
- o compose_pixbufs(): render transparent icon onto background into a
- new pixbuf
- o merge gtkcreate_png_pixbuf() from gdk-pixbuf-0-branch : load an
- icon into a pixbuf
- gdk-pixbuf-0-branch also uses it to simplify a lot of code
- o gtkicons_labels_widget() :
- * add a new background pixbuf parameter that'll be composited with
- icons
- * render icons with alpha blender in right area
- * kill imlib_counter
- * kill imlib usage for
- * kill dead code (was dead since i fixed mcc memory leaks)
-
- - TODO: icon flashing on application launch
-
- - POSTPONED: merge big cleanup, global replacement of imlib usage by
- gdk-pixbuf
- from gdk-pixbuf-0-branch since it would impacted drakx
- which is not
- so good
-
-2002/08/30 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fixed possible problem with is_installed and
- are_installed.
-
-2002/08/30 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sv.po: updated Swedish file
-
-2002/08/30 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * ugtk.pm, drakxtools.spec:
- - mcc :
- o kill gtkpng_() and gtk_createpng_() wrappers: if icon is missing,
- better die while testing rather than make perl display "uncaught
- code ..."
- o kill unused timer
- o use new ln's icons
- o disable stupid icon highlighting (was made with duplicating
- manually all icons in gimp and blue-y them there); restore this
- effect'll need little play with gamma
- o use ugtk
- o kill dead code
- o cleanups
- o icons:
- * switch to new icons set
- * replace pixmap table by a pixbuf one
- * use pixbufs for backgrouns and icons,
- * composite background and icons with transparency trough
- ugtk::compose_pixbufs()
- * render icons with full alpha blender in left column
- * comment the different states
- * simplify callbacks
- - ugtk :
- o readd gdkpixbuf support
- o ensure imlib is used by default to load files, not gdk-pixbuf
- o compose_with_back(): load a png icon into a pixbuf and call
- compose_pixbufs with background pixbuf
- o compose_pixbufs(): render transparent icon onto background into a
- new pixbuf
- o merge gtkcreate_png_pixbuf() from gdk-pixbuf-0-branch : load an
- icon into a pixbuf
- gdk-pixbuf-0-branch also uses it to simplify a lot of code
- o gtkicons_labels_widget() :
- * add a new background pixbuf parameter that'll be composited with
- icons
- * render icons with alpha blender in right area
- * kill imlib_counter
- * kill imlib usage for
- * kill dead code (was dead since i fixed mcc memory leaks)
-
- - TODO: icon flashing on application launch
-
- - POSTPONED: merge big cleanup, global replacement of imlib usage by
- gdk-pixbuf
- from gdk-pixbuf-0-branch since it would impacted drakx
- which is not
- so good
-
-2002/08/30 baudens
-
- * share/advertising/list: Temporary fix
-
- * share/advertising/15-mdkexpert-corporate.pl,
- share/advertising/14-mdkexpert.pl, share/advertising/13-mdkcampus.pl,
- share/advertising/12-mdkstore.pl, share/advertising/11-mdkstore.pl:
- Temporary new texts. Need to be checked and fixed
-
-2002/08/30 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fixed possible problem with is_installed and
- are_installed.
-
-2002/08/30 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * network/network.pm: fix looping on network step when configuring
- ethernet card
-
-2002/08/30 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sv.po: updated Swedish file
- updated Swedish file
-
-2002/08/30 Pixel <pixel@mandrakesoft.com>
-
- * standalone/keyboarddrake:
- - use keyboard::keyboard2full_xkb
- - call setxkbmap with -option and -model
- - use "/etc/init.d/keytable restart" instead of loadkeys
-
- * keyboard.pm, Xconfig/default.pm: most of the code of
- Xconfig::default::config_keyboard moved to keyboard::keyboard2full_xkb
-
- * verify_c: ignore c::from_utf8
-
- * any.pm:
- - set GRP_TOGGLE to '' when no GRP_TOGGLE are used
- - defaults to previous GRP_TOGGLE if one is available
-
- * Xconfig/card.pm: make perl_checker happy
-
- * Xconfig/resolution_and_depth.pm: fix typo (choosing the Flat Panel
- resolution by default)
-
-2002/08/30 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * ugtk.pm, drakxtools.spec:
- - mcc :
- o kill gtkpng_() and gtk_createpng_() wrappers: if icon is missing,
- better die while testing rather than make perl display "uncaught
- code ..."
- o kill unused timer
- o use new ln's icons
- o disable stupid icon highlighting (was made with duplicating
- manually all icons in gimp and blue-y them there); restore this
- effect'll need little play with gamma
- o use ugtk
- o kill dead code
- o cleanups
- o icons:
- * switch to new icons set
- * replace pixmap table by a pixbuf one
- * use pixbufs for backgrouns and icons,
- * composite background and icons with transparency trough
- ugtk::compose_pixbufs()
- * render icons with full alpha blender in left column
- * comment the different states
- * simplify callbacks
- - ugtk :
- o readd gdkpixbuf support
- o ensure imlib is used by default to load files, not gdk-pixbuf
- o compose_with_back(): load a png icon into a pixbuf and call
- compose_pixbufs with background pixbuf
- o compose_pixbufs(): render transparent icon onto background into a
- new pixbuf
- o merge gtkcreate_png_pixbuf() from gdk-pixbuf-0-branch : load an
- icon into a pixbuf
- gdk-pixbuf-0-branch also uses it to simplify a lot of code
- o gtkicons_labels_widget() :
- * add a new background pixbuf parameter that'll be composited with
- icons
- * render icons with alpha blender in right area
- * kill imlib_counter
- * kill imlib usage for
- * kill dead code (was dead since i fixed mcc memory leaks)
-
- - TODO: icon flashing on application launch
-
- - POSTPONED: merge big cleanup, global replacement of imlib usage by
- gdk-pixbuf
- from gdk-pixbuf-0-branch since it would impacted drakx
- which is not
- so good
-
-2002/08/30 Warly <warly@mandrakesoft.com>
-
- * share/logo-mandrake.png: rc1
-
-2002/08/30 baudens
-
- * share/advertising/list: Temporary fix
-
-2002/08/30 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * install_steps_newt.pm: Added text for translators
-
- * share/po/nl.po, share/po/cy.po, share/po/eu.po, share/po/cs.po: updated
- po files
-
-2002/08/30 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig/resolution_and_depth.pm: fix typo (choosing the Flat Panel
- resolution by default)
-
-2002/08/30 Warly <warly@mandrakesoft.com>
-
- * share/logo-mandrake.png: rc1
-
-2002/08/29 Pixel <pixel@mandrakesoft.com>
-
- * share/keymaps.tar.bz2: now the only bad one is ro2
-
- * share/po/it.po, share/po/help-fr.pot, share/po/help-de.pot,
- share/po/es.po, share/po/de.po, share/po/help-es.pot,
- share/po/help-it.pot, share/po/fr.po:
- - re-update help-xx.pot after fixing bad drakxid's in xml files
- - update xx.po's using help-xx.pot
- => at last, DrakX help is now in sync with xml files :)
-
- * pixmaps/printer-mdk.png: re-adding with -kb
- removing for re-adding with -kb
-
- * detect_devices.pm (isRemovableDrive): usb with class "Floppy (UFI)" are
- removable even if they are not media_type fd
-
- * share/po/help_xml2pm.pl:
- - fix missing to_ascii on english part in help-xx.pot
- - ignore drakxid's in a language but not in english
-
-2002/08/29 baudens
-
- * share/advertising/09-MDKcampus_icon.png,
- share/advertising/12-MDKstore_icon.png, share/advertising/00-thanks.png,
- share/advertising/10-MDKexpert.png, share/advertising/06-user.png,
- share/advertising/03-graphic_icon.png, share/advertising/03-graphic.png,
- share/advertising/13-Nvert.png, share/advertising/04-develop_icon.png,
- share/advertising/12-MDKstore.png,
- share/advertising/05-contcenter_icon.png,
- share/advertising/02-internet_icon.png,
- share/advertising/02-internet.png, share/advertising/08-games.png,
- share/advertising/11-consul.png, share/advertising/06-user_icon.png,
- share/advertising/07-server.png, share/advertising/04-develop.png,
- share/advertising/10-MDKexpert_icon.png,
- share/advertising/07-server_icon.png,
- share/advertising/08-games_icon.png, share/advertising/01-gnu.png,
- share/advertising/05-contcenter.png, share/advertising/09-MDKcampus.png:
- Remove old images
-
- * share/advertising/07-desktop.png, share/advertising/14-mdkexpert.png,
- share/advertising/01-thanks.png, share/advertising/02-community.png,
- share/advertising/11-mdkstore.png, share/advertising/12-mdkstore.png,
- share/advertising/04-multimedia.png, share/advertising/05-games.png,
- share/advertising/03-internet.png, share/advertising/06-mcc.png,
- share/advertising/13-mdkcampus.png, share/advertising/10-mnf.png,
- share/advertising/16-thanks.png,
- share/advertising/15-mdkexpert-corporate.png,
- share/advertising/09-server.png, share/advertising/08-development.png:
- New images
-
- * share/advertising/05-contcenter.pl, share/advertising/09-MDKcampus.pl,
- share/advertising/08-games.pl, share/advertising/11-consul.pl,
- share/advertising/07-server.pl, share/advertising/01-gnu.pl,
- share/advertising/03-graphic.pl, share/advertising/02-internet.pl,
- share/advertising/00-thanks.pl, share/advertising/04-develop.pl,
- share/advertising/06-user.pl, share/advertising/12-MDKstore.pl,
- share/advertising/13-Nvert.pl, share/advertising/10-MDKexpert.pl: Remove
- old texts
-
- * share/advertising/02-community.pl, share/advertising/01-thanks.pl,
- share/advertising/05-games.pl, share/advertising/09-server.pl,
- share/advertising/04-multimedia.pl, share/advertising/07-desktop.pl,
- share/advertising/10-mnf.pl, share/advertising/08-development.pl,
- share/advertising/06-mcc.pl, share/advertising/03-internet.pl: New text
- (other will come later)
-
-2002/08/29 Daouda Lo <daouda@mandrakesoft.com>
-
- * network/adsl.pm:
- - dns settings for pppoe
- - set DNS in adsl config.
- - update speedtouch link
-
-2002/08/29 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/pcmcia_/probe.c: merge some code from pcmcia-cs-3.2.1 so that
- some pci pcmcia driver
- use i82365 rather than yenta_socket
-
- * standalone/logdrake: in explain mode, don't display day and hostname to
- have more
- space for the rest
-
- * drakxtools.spec: meuh
- 24mdk
-
- * my_gtk.pm: ask_browse: display_info needs to be available for rpmdrake
-
-2002/08/29 Jonathan Gotti <jgotti@mandrakesoft.com>
-
- * drakperm: Gui for file permission in msec
-
-2002/08/29 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * standalone/drakfont, standalone/drakxtv: English typos (no space before
- colon in English)
-
- * share/po/es.po: updated po file
- updated pot file
-
- * share/po/sk.po, share/po/vi.po: updated Slovak and Vietnamese files
- updated pot file
-
- * share/po/id.po, share/po/ru.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/br.po, share/po/th.po, share/po/sl.po, share/po/no.po,
- share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/bs.po,
- share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/ta.po, share/po/fr.po, share/po/it.po, share/po/de.po,
- share/po/eo.po, share/po/lv.po, share/po/cs.po, share/po/bg.po,
- share/po/el.po, share/po/hu.po: updated pot file
-
- * share/rpmsrate: removed ami-gnome (the package won't be in 9.0, as it
- doesn't work
- with Gnome2)
-
- * harddrake/ui.pm: English typos (Quitter->Quit,
- Informations->Information)
- corrected English typos (no space before colon in English)
-
- * share/po/cy.po, share/po/nl.po, share/po/eu.po: updated pot file
- updated Welsh, Basque and Dutch files
-
- * harddrake/v4l.pm, standalone/drakbackup: corrected English typos (no
- space before colon in English)
-
-2002/08/29 Pixel <pixel@mandrakesoft.com>
-
- * share/keymaps.tar.bz2: now the only bad one is ro2
-
- * share/po/help_update_english_only.pl: semi-automatic script allowing to
- update help.pm without creating a hell lot of "fuzzy" in po's
-
- * share/po/Makefile: workaround missing entities in spanish
- adapt to new manual cvs dirs
-
- * share/po/help_xml2pm.pl:
- - fix missing to_ascii on english part in help-xx.pot
- - ignore drakxid's in a language but not in english
- - adapt to new manualB xml help
- - fix tr/// causing havoc in french accents (and other)
-
- * install2.pm (formatPartitions): create /dev/null as soon as possible on
- to be installed system
-
- * detect_devices.pm (isRemovableDrive): usb with class "Floppy (UFI)" are
- removable even if they are not media_type fd
- (isRemovableUsb): using "Floppy (UFI)" usb media_type is no good, use
- magical usb2removable instead
- (usb_description2removable): more entries
- (suggest_mount_point): use new function usb2removable
-
- * share/po/help-eu.pot: not available anymore (=> use the i18n from eu.po)
-
- * help.pm: update help from xml
-
- * standalone/drakupdate_fstab: fix check_hard_drives
- in --auto, print the mount points add/removed for use in hotplug
- - add option --auto
- - when --auto, ignore actions on partitions when the drive has
- extended partitions
-
- * devices.pm: allow creation of "/dev/null" device
-
- * share/po/sk.po, share/po/gl.po, share/po/pt_BR.po, share/po/th.po,
- share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/be.po,
- share/po/ko.po, share/po/sv.po, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/da.po, share/po/ca.po, share/po/ar.po,
- share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/eu.po,
- share/po/lv.po, share/po/hu.po, share/po/id.po, share/po/ru.po,
- share/po/no.po, share/po/sl.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/uk.po, share/po/lt.po, share/po/cy.po,
- share/po/sp.po, share/po/bs.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/pt.po, share/po/ta.po,
- share/po/vi.po, share/po/nl.po, share/po/eo.po, share/po/el.po,
- share/po/bg.po, share/po/cs.po: automatic update to new help.pm (so that
- no fuzzy appears)
-
- * share/po/help-de.pot, share/po/help-it.pot, share/po/help-fr.pot,
- share/po/help-es.pot:
- - re-update help-xx.pot after fixing bad drakxid's in xml files
- - update xx.po's using help-xx.pot
- => at last, DrakX help is now in sync with xml files :)
- update help from xml
-
- * install_steps_gtk.pm: rpm description & group are in utf8, so use
- c::from_utf8
-
- * standalone/drakgw: drakgw now needs shorewall, so install shorewall if
- needed (fix bug reported by Erwan)
-
- * share/po/it.po, share/po/es.po, share/po/fr.po, share/po/de.po:
- - re-update help-xx.pot after fixing bad drakxid's in xml files
- - update xx.po's using help-xx.pot
- => at last, DrakX help is now in sync with xml files :)
- automatic update to new help.pm (so that no fuzzy appears)
-
-2002/08/29 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakbackup: GUI feedback during restore.
-
-2002/08/29 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: s/||/or/ between commands, the high-precedence "||" lead to
- problems sometimes.
-
-2002/08/29 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/data.pm: move STORAGE_OTHER devices in ata controllers (aka
- pseudo raid controllers
- ala pdc)
-
- * standalone/logdrake: add a scroll bar in embedded mode for mcc
-
- * standalone/service_harddrake, harddrake/TODO: 25mdk
-
- * harddrake/ui.pm: embedded mode: exit on "quit" click
-
- * drakxtools.spec: harddrake service:
- - Prereq: rpm-helper
- - fix init-script-without-chkconfig-{post,preun}
- - s/perl -w/perl/
- - don't use diags and strict
- gc must how learn to commit
- 25mdk
-
-2002/08/28 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/th.po: fixed Project-Id line
-
- * share/po/tr.po: updated Turkish file
-
- * share/po/bs.po, share/po/ru.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/sl.po, share/po/af.po, share/po/az.po, share/po/ja.po,
- share/po/ga.po, share/po/uk.po, share/po/ko.po, share/po/sr.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
- share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/eo.po,
- share/po/lv.po, share/po/cs.po, share/po/bg.po, share/po/el.po,
- share/po/ar.po: fixed Project-Id header
-
-2002/08/28 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig/card.pm:
- - ensure prefer_xf3 is never set when {server} is missing
- - don't propose xfree3 when no {server} for the card
- - don't propose xfree4 when no {Driver} for the card
-
- * detect_devices.pm:
- - why did hds() did return removable drives in standalone? changing
- this (this was written in 1999 so no good reason must stand)
- - remove the ugly isFloppyOrHD
- - new function get_usb_storage_info which magically links
- /proc/scsi/scsi entries to /proc/bus/usb/devices & usbtable one :)
- - new function usb_description2removable which tries to categorize the
- removables
- - new function removables returning various things
- - new function isRemovableUsb using usb class
- - new function isFloppyUsb using the usbtable "Removable:floppy"
- - suggest_mount_point use "Removable:xxx" entries from usbtable, or
- usb_description2removable()
-
- * drakxtools.spec:
- - drakupdate_fstab first appearance
- - remind me to teach titi how to commit
-
- * Makefile.config, standalone/drakupdate_fstab: new prog drakupdate_fstab
-
- * fs.pm: use add2hash_ for setting "username=%" otherwise it causes havoc
- in auto_install's manualFstab
- - read_fstab, write_fstab: add the possibility to not change
- credentials
- - use detect_devices::removables()
-
-2002/08/28 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: Added automatical configuration of the
- printers in the GIMP.
-
-2002/08/28 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone/logdrake:
- - fix logdrake display window in embedded mode
-
-2002/08/28 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: small fix
-
-2002/08/28 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/vi.po: updated po files
- Changed encoding of Vietnamese file to be the same as used in vi.po of
- rpmdrake
-
- * share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
- share/po/bs.po, share/po/af.po, share/po/az.po, share/po/eo.po,
- share/po/el.po, share/po/cs.po, share/po/bg.po: fixed Project-Id header
- updated pot file
-
- * share/po/br.po, share/po/be.po, share/po/DrakX.pot, share/po/de.po:
- updated pot file
-
- * share/po/ro.po: updated po files
- updated po files
- updated Italian and Romanian files
-
- * share/po/tr.po: updated Turkish file
- updated po files
- updated po files
-
- * share/po/sk.po, share/po/no.po, share/po/mt.po, share/po/sv.po,
- share/po/ta.po, share/po/nl.po: updated po files
- updated po files
-
- * harddrake/sound.pm: Fixed typo (no space before a colon in English)
-
- * share/po/gl.po, share/po/pt_BR.po, share/po/ga.po, share/po/pl.po,
- share/po/fi.po: fixed Project-Id header
- updated po files
-
- * share/po/it.po: updated po files
- updated Italian and Romanian files
-
- * share/po/th.po: fixed Project-Id line
- updated po files
- updated po files
-
- * share/po/id.po, share/po/et.po, share/po/hr.po, share/po/wa.po,
- share/po/is.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/fr.po, share/po/eu.po, share/po/es.po, share/po/hu.po: updated
- po files
-
- * share/po/ru.po, share/po/sl.po, share/po/ja.po, share/po/uk.po,
- share/po/ko.po, share/po/sr.po, share/po/lt.po, share/po/sp.po,
- share/po/lv.po: fixed Project-Id header
- updated po files
- updated po files
-
-2002/08/28 Pixel <pixel@mandrakesoft.com>
-
- * fsedit.pm (is_same_hd): add ugly support for davfs devices (http://...)
- comparison without the ending "/"
-
- * partition_table/dos.pm (partition_table::dos::last_usable_sector): don't
- use totalsectors, compute it so that it is cylinder aligned
-
- * Xconfig/monitor.pm: choose a good_default_monitor based on laptop-or-not
- (thanks to cosmic flo)
-
- * fs.pm: use add2hash_ for setting "username=%" otherwise it causes havoc
- in auto_install's manualFstab
- - read_fstab, write_fstab: add the possibility to not change
- credentials
- - use detect_devices::removables()
- remove deprecated comment (supermount *does* handle auto type nowadays)
- (set_default_options): use $is_removable to know if it is removable
- instead of
- testing the presence of $part->{rootDevice} (this must be old code
- predating
- the avaibility of $is_removable)
- create detect_devices::suggest_mount_point and use it instead of doing
- it in fs::set_removable_mntpoints
- use mkdir_p instead of mkdir
- use new function part2device() to have the file from {device} (fixes
- mounting of ntfs in standalone)
- default option username=% for smb
-
- * Makefile.config, standalone/drakupdate_fstab: new prog drakupdate_fstab
-
- * interactive.pm, interactive/gtk.pm: add {callbacks}{advanced}, called
- when "Advance" button is pressed
-
- * standalone/diskdrake: remove unused $fstab
-
- * detect_devices.pm:
- - why did hds() did return removable drives in standalone? changing
- this (this was written in 1999 so no good reason must stand)
- - remove the ugly isFloppyOrHD
- - new function get_usb_storage_info which magically links
- /proc/scsi/scsi entries to /proc/bus/usb/devices & usbtable one :)
- - new function usb_description2removable which tries to categorize the
- removables
- - new function removables returning various things
- - new function isRemovableUsb using usb class
- - new function isFloppyUsb using the usbtable "Removable:floppy"
- - suggest_mount_point use "Removable:xxx" entries from usbtable, or
- usb_description2removable()
- create detect_devices::suggest_mount_point and use it instead of doing
- it in fs::set_removable_mntpoints
- use mkdir_p instead of mkdir
-
- * Xconfig/main.pm: fix calling export_to_install_X in
- configure_everything_auto_install
-
- * install_steps.pm:
- - use $::prefix in any::get_secure_level()
- - fix any::get_secure_level() not using prefix when it should
-
- * Xconfig/xfree3.pm, Xconfig/xfree4.pm: Xconfig::xfree3::set_resolution
- and Xconfig::xfree4::set_resolution must not modify parameter $Screen
- before calling Xconfig::xfreeX::set_resolution (otherwise the resolution
- setting is done on only one device which is bad for multi-head)
-
- * any.pm:
- - use $::prefix in any::get_secure_level()
- - fix any::get_secure_level() not using prefix when it should
- (selectLanguage): fix the ugly use of focus_out for setting langs. Was
- completly rubbish in newt.
-
- * network/tinyfirewall.pm: better error message
-
- * partition_table.pm: remove associating 0x35 => 'jfs' since it causes
- types_rev to associate jfs to 0x35 instead of 0x383
-
- * loopback.pm, devices.pm, install_any.pm: use mkdir_p instead of mkdir
-
- * install_steps_interactive.pm: bus/usb category prompting is automatic
-
- * diskdrake/interactive.pm, diskdrake/removable.pm,
- diskdrake/smbnfs_gtk.pm: in "Mount point", by default choose the default
- proposition (asked by dadou for smb)
-
- * diskdrake/dav.pm: add "Mount" and "Unmount"
- in "Mount point", by default choose the default proposition (asked by
- dadou for smb)
-
- * Xconfig/resolution_and_depth.pm: on a "Flat Panel" use the flat planel
- resolution (as suggested by Alastair Scott)
-
- * install_steps_gtk.pm, share/list, Makefile: group icons are not used,
- remove them
-
-2002/08/28 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Printerdrake remembers now whether it was in normal mode or
- in expert
- mode last time.
- OpenOffice.org: Remove default printer tag from the "Generic Printer"
- when Printerdrake adds an entry for the system's default printer.
-
- * pixmaps/printer-mdk.png, pixmaps/printer.png: Renamed icon of
- Printerdrake so that it does not get overwritten by
- Star Office.
-
- * standalone/printerdrake: Printerdrake remembers now whether it was in
- normal mode or in expert
- mode last time.
- Renamed icon of Printerdrake so that it does not get overwritten by
- Star Office.
-
- * printerdrake.pm: Printerdrake remembers now whether it was in normal
- mode or in expert
- mode last time.
-
-2002/08/28 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/ui.pm:
- - embeded mode:
- o only display menu bar if not in embedded mode
- o add a "quit" button in embedded mode
- - make my_gtk ui be readable by indentation
-
- * harddrake/TODO: update
-
-2002/08/27 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig/various.pm, standalone/drakboot: use the new fsedit::get_hds
-
- * detect_devices.pm: set {prefix} for rd/ida/cciss/... (instead of doing
- it in fsedit::hds)
-
- * fsedit.pm:
- - create lvms() which contains what was in hds()
- - create get_hds() which handle errors when calling hds()
- - remove commented obsolete code
- - read_partitions is now read_proc_partitions_raw
- - readProcPartitions is now read_proc_partitions
- - read_proc_partitions use fake {start}s so that the empty space is
- computed ok by get_normal_parts_and_holes
- - verifyHds doesn't exist anymore
- - part of it is in hds() using compare_with_proc_partitions() and
- use_proc_partitions()
- - part of it is in install_any::getHds
-
- * partition_table.pm:
- - do not handle clearall in read()
- - ensure not partition table in written when "readonly" (it must not
- happen, but just in case)
-
- * diskdrake/interactive.pm: handle "readonly" per hds
-
- * partition_table/raw.pm (test_for_bad_drives): classify error messages
- (either read, write or something-else)
-
- * install_interactive.pm: handle "readonly" flag per hard drives instead
- of a global one
-
- * standalone/diskdrake: use function fsedit::get_hds which handles errors
-
- * share/po/de.po: remove duplicate entries
-
- * install_steps_interactive.pm, install_any.pm: remove/simplify error
- hanling (most of it is moved to fsedit.pm)
-
- * any.pm, bootloader.pm, install2.pm: :x
-
- * diskdrake/hd_gtk.pm: nicer error message when no devices are available
- (esp. for standalone)
-
-2002/08/27 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/network.pm:
- - new 'previous' button bug fix
-
-2002/08/27 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: display a warning message about packages
- to remove.
-
- * install_any.pm: added warn about packages to remove.
-
- * crypto.pm: restore real distrution version used.
-
-2002/08/27 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/nl.po: updated po file
-
- * share/po/sk.po: updated Slovak file
-
-2002/08/27 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake/interactive.pm: handle "readonly" per hds
-
- * Xconfig/various.pm, standalone/drakboot: use the new fsedit::get_hds
-
- * my_gtk.pm:
- - add ",*-r-*" in wizard fontset
- - i18n the fontset
-
- * detect_devices.pm: set {prefix} for rd/ida/cciss/... (instead of doing
- it in fsedit::hds)
-
- * partition_table/raw.pm (test_for_bad_drives): classify error messages
- (either read, write or something-else)
-
- * fsedit.pm:
- - create lvms() which contains what was in hds()
- - create get_hds() which handle errors when calling hds()
- - remove commented obsolete code
- - read_partitions is now read_proc_partitions_raw
- - readProcPartitions is now read_proc_partitions
- - read_proc_partitions use fake {start}s so that the empty space is
- computed ok by get_normal_parts_and_holes
- - verifyHds doesn't exist anymore
- - part of it is in hds() using compare_with_proc_partitions() and
- use_proc_partitions()
- - part of it is in install_any::getHds
-
- * any.pm: set password2 to password so that upgrading bootloader with an
- existing password works (thanks to Aleksander Adamowski)
- add ntools and ctools in %high_security_groups
-
- * install_interactive.pm: handle "readonly" flag per hard drives instead
- of a global one
-
- * standalone/diskdrake: use function fsedit::get_hds which handles errors
-
- * install_any.pm, install_steps_interactive.pm: remove/simplify error
- hanling (most of it is moved to fsedit.pm)
-
- * partition_table.pm:
- - do not handle clearall in read()
- - ensure not partition table in written when "readonly" (it must not
- happen, but just in case)
-
- * diskdrake/hd_gtk.pm: nicer error message when no devices are available
- (esp. for standalone)
-
-2002/08/27 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakbackup: catalog restore via HD, CD, tape & network
-
-2002/08/27 siegel
-
- * share/po/de.po: updates
- updates
-
-2002/08/27 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm:
- - Bug fix: s/detect_devices::getSNMPModel/printer::getSNMPModel/
- - Added support for the photo card reader in the HP PSC 2200 series.
- Make number of MB to install in first time dialog changeable without
- breaking the translations.
-
- * printer.pm: Set default text margins to half an inch and default size
- for images
- to be printed to the full page.
-
-2002/08/26 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig/monitor.pm: fix 2 occurences of use of $monitors as a hash
- (thanks to Nora Etukudo)
-
- * bootloader.pm: correctly handle empty and commented lines in lilo.conf
-
- * mouse.pm: create /dev/usbmouse symlink for non devfs use
-
- * detect_devices.pm: dev_is_devfs always return false during install
-
-2002/08/26 Till Kamppeter <till@mandrakesoft.com>
-
- * standalone/printerdrake:
- - Ask user whether he really wants to set up printing when he starts
- Printerdrake for the first time.
- - Added titles ("Printerdrake") to all wait messages.
-
- * printerdrake.pm: Button to close Printerdrake shows "Done" during
- installation and in MCC and "Quit" in standalone mode.
- - Ask user whether he really wants to set up printing when he starts
- Printerdrake for the first time.
- - Added titles ("Printerdrake") to all wait messages.
-
-2002/08/26 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/ethernet.pm:
- - fix previous button behavior in Proxies configuration
-
-2002/08/26 François Pons <fpons@mandrakesoft.com>
-
- * detect_devices.pm: avoid using serial_probe on non terminal device
- (ttyxx or ttySxx).
-
-2002/08/26 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/rpmsrate: autoselection of tamil fonts when tamil locale is chosen
-
- * lang.pm: Now console fonts (at least those used by DrakX) include an sfm
- map;
- no need to provide one.
- small fix (ta->ta_IN)
-
- * share/po/zh_CN.po: updated Chinese file
-
-2002/08/26 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: fix deleting previous report.bug when upgrading
- revert (not needed by gnome-panel)
- move modules::write_pcmcia before install packages
-
- * Xconfig/monitor.pm: fix 2 occurences of use of $monitors as a hash
- (thanks to Nora Etukudo)
-
- * bootloader.pm: correctly handle empty and commented lines in lilo.conf
-
- * mouse.pm: create /dev/usbmouse symlink for non devfs use
-
- * network/shorewall.pm: ensure net_interface is found in any case
-
- * fsedit.pm: increase maxsize for / (partitioning with /usr) since it
- contains /tmp and /opt (as requested by Arnaud de Lorbeau)
-
- * detect_devices.pm: dev_is_devfs always return false during install
-
- * fs.pm (prepare_write_fstab): use mkdir_p instead of mkdir to handle
- mount points like /mnt/foo/bar (bug reported by David Eastcott)
-
-2002/08/26 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Dialog for printing test pages: Unmark all test pages when
- "No test
- pages" is marked.
- Accelerated printing of the photo test page when CUPS is the spooler,
- the internal image converter of CUPS is faster than ImageMagick.
-
- * printerdrake.pm: Dialog for printing test pages: Unmark all test pages
- when "No test
- pages" is marked.
- Accelerated printing of the photo test page when CUPS is the spooler,
- the internal image converter of CUPS is faster than ImageMagick.
- Hide buttons to choose network printer auto-detection in the add printer
- wizard when there is no local network (recommended mode).
- Let "samba-client" only be installed when really needed.
-
-2002/08/26 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * ugtk.pm:
- - lots of cleanups
- - documente gtkcreate_png()
- - fix Gdk::DrawingArea usage in gtkpng_pixbuf()
- - common bring MDK::Common::Math for us
- - globalize state (aka highlith icon or not)
- code is much more understandable now
- instead of creating a global callback for repainting exposing widgets,
- all Gdk::DrawingArea'll come from gtkpng_pixbuf() whose code is 80 %
- the redrawing callback
-
-2002/08/25 gbeauchesne
-
- * share/rpmsrate:
- - Suggest "OpenOffice.org" instead of "openoffice"
- - First attempt to get localized installations of OOo
-
-2002/08/25 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/es.po, share/po/da.po: updated Danish and Spanish files
-
-2002/08/25 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/drakautoinst: fixe explanation use
-
-2002/08/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sv.po: updated Swedish file
-
- * lang.pm: ichanged kde default fonts to match what we ship
-
-2002/08/24 Till Kamppeter <till@mandrakesoft.com>
-
- * detect_devices.pm, printer.pm, printerdrake.pm: Let command line tools
- for network scanning run under "chroot $refix", otherwise they take ages
- during installation.
- Moved network scanning functions from "detect_devices.pm" to
- "printer.pm" so that they have access to the "$prefix" variable.
-
-2002/08/23 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/zh_TW.po, share/po/hu.po: updated Hungarian and Chinese files
-
-2002/08/23 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig/xfree4.pm: fix "screen1 RightOf screen2", it must be "screen2
- RightOf screen1"
-
- * network/netconnect.pm (read_raw_net_conf): new function to access
- /etc/sysconfig/drakconnect and /etc/sysconfig/drakconnect.$type ensuring
- migration from /etc/sysconfig/draknet and /etc/sysconfig/draknet.$type
-
- * network/shorewall.pm: remove debug code
-
- * Xconfig/card.pm:
- - fix setting "Screen <number>" for multi-head cards
- - don't propose XFree3 when using multi-head
-
- * standalone.pm: add modules network::tinyfirewall and network::shorewall
-
- * interactive.pm: when standalone, use the name of the program for the
- window title
-
- * Xconfig/xfreeX.pm (set_resolution): set the resolution on all Screen
- sections (otherwise Xinerama fails (?))
-
-2002/08/23 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakbackup: combine file browser subs into generic routine
- catalog restore - check restore media params - verify media
- reworked failure to find restore path treatment
- - now user gets option to reselect dir, install
- media, or use the catalog browser for
- unmountable media
- - fix eject media typo
- - create/read tape label for catalog
- - more GUI crash fixes
- - catalog browser - can select session or
- individual files for restore - needs backend
- - merge with other CVS changes, some language fixes
-
-2002/08/23 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * ugtk.pm: 19mdk
- - ugtk:
- o switch from imlib to gdk-pixbuf
- o kill gtkcreate_imlib()
- o big cleanup by the way
- o support alpha blender [not complete]
- o fix mem leak
- o remove dynamic support of imlib||gdk-pixbuf since:
- * gtk2 require gdk-pixbuf anyway
- * imlib sucks
- * less code/libs in install
- o kill unused cursors
- o kill icon flashing
- o gtkcreate_png_pixbuf() : load a png into a pixbuf
- o gtkpng_pixbuf() : render a pixbuf into a drawable
- o simplify gtkcreate_png(): render a pixbuf into a pixmap and an
- alpha bitmap
- o add2notebook() : simplify
- fix 95% of mcc memory leaks
- - ugtk:
- o switch from imlib to gdk-pixbuf
- o kill gtkcreate_imlib()
- o big cleanup by the way
- o support alpha blender
- o fix mem leak
- o remove dynamic support of imlib||gdk-pixbuf since:
- * gtk2 require gdk-pixbuf anyway
- o kill unused cursors
- o kill icon flashing
- o gtkcreate_png_pixbuf() : load a png into a pixbuf
- o gtkpng_pixbuf() : render a pixbuf into a drawable
- o simplify gtkcreate_png(): render a pixbuf into a pixmap and an
- alpha bitmap
- o add2notebook() : simplify
- - harddrake:
- o bump version number
-
- * standalone/draksound: use right sound-slot
-
- * share/po/fr.po: s/p,bi(Bph,bi(Briques/p,bi(Briph,bi(Briques/
-
- * network/netconnect.pm, standalone/drakgw: florin fixes for multiple NIC
- boxes
-
- * harddrake/sound.pm: 20mdk:
- - florin fixes for firewalling
- - check that alternative is unknown, not the current driver, before
- saying that there's no alternative.
- anyway, our only caller cannot get there's with a current unknown
- driver since he only try listed/know drivers ....
- 19mdk
- use right sound-slot
- check that alternative is unknown, not the current driver, before
- saying that there's no alternative.
- anyway, our only caller cannot get there's with a current unknown
- driver since he only try listed/know drivers ....
-
- * drakxtools.spec: 20mdk:
- - florin fixes for firewalling
- - check that alternative is unknown, not the current driver, before
- saying that there's no alternative.
- anyway, our only caller cannot get there's with a current unknown
- driver since he only try listed/know drivers ....
- 19mdk
- - ugtk:
- o switch from imlib to gdk-pixbuf
- o kill gtkcreate_imlib()
- o big cleanup by the way
- o support alpha blender [not complete]
- o fix mem leak
- o remove dynamic support of imlib||gdk-pixbuf since:
- * gtk2 require gdk-pixbuf anyway
- * imlib sucks
- * less code/libs in install
- o kill unused cursors
- o kill icon flashing
- o gtkcreate_png_pixbuf() : load a png into a pixbuf
- o gtkpng_pixbuf() : render a pixbuf into a drawable
- o simplify gtkcreate_png(): render a pixbuf into a pixmap and an
- alpha bitmap
- o add2notebook() : simplify
- 18mdk
- - ugtk:
- o switch from imlib to gdk-pixbuf
- o kill gtkcreate_imlib()
- o big cleanup by the way
- o support alpha blender
- o fix mem leak
- o remove dynamic support of imlib||gdk-pixbuf since:
- * gtk2 require gdk-pixbuf anyway
- o kill unused cursors
- o kill icon flashing
- o gtkcreate_png_pixbuf() : load a png into a pixbuf
- o gtkpng_pixbuf() : render a pixbuf into a drawable
- o simplify gtkcreate_png(): render a pixbuf into a pixmap and an
- alpha bitmap
- o add2notebook() : simplify
- - harddrake:
- o bump version number
-
-2002/08/23 Warly <warly@mandrakesoft.com>
-
- * share/logo-mandrake.png: beta 4 logo
-
-2002/08/22 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ca.po, share/po/hu.po: updated Hungarian file
-
-2002/08/22 Pixel <pixel@mandrakesoft.com>
-
- * network/shorewall.pm: make perl_checker happy
- use $::prefix to access shorewall config files
- - add network::shorewall
- - add tinyfirewall during install
-
- * standalone/tinyfirewall: complete rewrite
-
- * network/netconnect.pm, tinyfirewall.pm, network/tinyfirewall.pm:
- - add network::shorewall
- - add tinyfirewall during install
-
- * pixmaps/monitor-1152.png, pixmaps/monitor-1920.png,
- pixmaps/monitor-1400.png, pixmaps/monitor-2048.png,
- pixmaps/monitor-1600.png: re-adding with -kb
- removing for re-adding with -kb
-
- * standalone/drakgw: use shorewall (need testing)
-
-2002/08/21 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * tools/cvslog2changelog.pl: uniformize real names
-
-2002/08/21 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: fixed stupid typo for bestKernelPackage.
- added return for bestKernelPackage ;-)
-
-2002/08/21 Jonathan Gotti <jgotti@mandrakesoft.com>
-
- * bootlook.pm: add link to draksplash
-
- * standalone/draksplash: remove warnings
-
-2002/08/21 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt.po: updated po file
-
-2002/08/21 Pixel <pixel@mandrakesoft.com>
-
- * keyboard.pm: put back loadkeys_files which *is* used (by
- make_rescue_img)
-
-2002/08/20 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hu.po: updated po file
-
- * keyboard.pm, share/keyboards.tar.bz2: merged keyboards with XFree86
-
-2002/08/20 Pixel <pixel@mandrakesoft.com>
-
- * keyboard.pm: fix pablo... uh no, too hard. fix his typo instead ;p
-
- * drakxtools.spec:
- - fix dangling waiting watch mousecursor (well, please test!)
- - adding draksplash (nathan)
-
- * my_gtk.pm:
- - in destroy, detect if program is going to leave, in that case
- don't do anything, especially don't set the waiting mouse cursor
- another thing is that calling flush() at this moment causes segfault
- so don't do it and no more segfault :)
- (now, if someone finds out what this 4 is about... but you cares, it
- works :)
- this fixes program ending on an exception
- - also add END() calling exit() (in case a program forgets to (heurk)
- call exit())
-
-2002/08/20 alus
-
- * share/po/pl.po: Upper Case
- updated translation
-
-2002/08/20 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/adsl.pm: o ECI adsl config fix
-
-2002/08/20 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: make sure kernel is selected during upgrade.
-
- * pkgs.pm: fixed ldconfig not visible in packages tree.
- fixed ldconfig not selected for installation.
- added bestKernelPackage.
-
-2002/08/20 Jonathan Gotti <jgotti@mandrakesoft.com>
-
- * standalone/draksplash: a tool for bootsplash theme creation
-
- * drakxtools.spec: adding draksplash
-
- * Makefile.config: adding draksplash in STANDALONEPMS_
-
-2002/08/20 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/keyboards.tar.bz2, keyboard.pm: merged keyboards with XFree86
-
- * share/po/ta.po, share/po/hu.po: updated po file
- updated pot file
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
- share/po/nl.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/lv.po, share/po/cs.po,
- share/po/bg.po, share/po/el.po: updated pot file
-
- * lang.pm: Removed fallback languages for "bs" (there are enough native
- translations now)
-
-2002/08/20 Pixel <pixel@mandrakesoft.com>
-
- * my_gtk.pm:
- - in destroy, detect if program is going to leave, in that case
- don't do anything, especially don't set the waiting mouse cursor
- another thing is that calling flush() at this moment causes segfault
- so don't do it and no more segfault :)
- (now, if someone finds out what this 4 is about... but you cares, it
- works :)
- this fixes program ending on an exception
- - also add END() calling exit() (in case a program forgets to (heurk)
- call exit())
-
- * share/keymaps.tar.bz2: update to correspond to keyboard.pm
-
- * mouse.pm: fix the use of create_okcancel
-
- * keyboard.pm: fix pablo... uh no, too hard. fix his typo instead ;p
- - drop the loadkeys_files (it is unused)
- - add more precise check of the existence of .bkmap's and that
- share/keymaps.tar.bz2 is up to date
-
- * install_steps_interactive.pm: firewire configuration is only automatic
- add firewire controller configuration
-
- * standalone/drakbackup: fix $'s in i18n'ed strings
-
- * standalone/XFdrake: when restarting X, don't kill kdm/gdm/xdm, they
- don't need this (worse, they don't respawn)
-
- * install_steps.pm, modules.pm: add firewire controller configuration
-
- * drakxtools.spec:
- - fix dangling waiting watch mousecursor (well, please test!)
- - adding draksplash (nathan)
-
-2002/08/20 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakbackup: remove unused subs
- disable forced "backup before restore" that erases previous backup
- more work towards tracking backed up files for future recovery
-
-2002/08/20 Till Kamppeter <till@mandrakesoft.com>
-
- * standalone/scannerdrake:
- - Let all occurences of "Seiko Epson" replaced by "Epson" both in the
- scanner names read from the ScannerDB and in the names resulting from
- scanner auto-detection (names from usbtable). So the user gets
- presented "Epson" and usbtable can have "Epson" names where ScannerDB
- can have "Seiko Epson" names.
- - If a scanner is listed as "unsupported" in ScannerDB, the user gets
- a message instead of scannerdrake silently exiting.
- Fixed parantheses of a "member" function, fixed typos.
-
- * scanner.pm:
- - Let all occurences of "Seiko Epson" replaced by "Epson" both in the
- scanner names read from the ScannerDB and in the names resulting from
- scanner auto-detection (names from usbtable). So the user gets
- presented "Epson" and usbtable can have "Epson" names where ScannerDB
- can have "Seiko Epson" names.
- - If a scanner is listed as "unsupported" in ScannerDB, the user gets
- a message instead of scannerdrake silently exiting.
-
- * printer.pm: Taken LPRng from spooler menu in printerdrake.
-
-2002/08/20 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/logdrake: s/one of the selected service/one of the selected
- services/
- (spoted by Arpad Biro)
-
- * standalone/draksound:
- - simplify
- - allocate sound slots in the same order as install2.pm (aka in
- modules::probe_category('multimedia/sound') order)
- add draksound: allow to switch between alsa and oss;
- should result in better sound support
-
- * harddrake/TODO: instead of generating my own list of module descriptions
- from
- list_modules.pm list of sound modules, just
- usemodules::category2modules_and_description
-
- * standalone/service_harddrake:
- - kill dead code
- - more use of MDK::Common
- - use draksound wizard
- - boot: only check for removed/added disks, video card, ethernet
- devices and mouse
-
- * ugtk.pm: kill debugging prints
-
- * help.pm: s/enter a disk/insert a disk/ (Arpad Biro)
-
- * standalone/drakbackup: typo fixed seen by Arpad Biro:
- s/durind/during/
- s/an user/a user/
- s/select select/select/
- s/propogate/propagate/
-
- * harddrake/data.pm:
- - use draksound wizard
- - boot: only check for removed/added disks, video card, ethernet
- devices and mouse
- don't put dvd burners in both dvd and burners classes but only in
- burners
-
- * harddrake/Makefile, harddrake/gen_snd_list, harddrake/sound.pm: instead
- of generating my own list of module descriptions from
- list_modules.pm list of sound modules, just
- usemodules::category2modules_and_description
- add draksound: allow to switch between alsa and oss;
- should result in better sound support
-
- * docs/Partition-ends-after-end-of-disk.txt: typo fix
-
- * bootlook.pm: s/mkinird/mkinitrd/ (Arpad Biro)
-
-2002/08/19 alus
-
- * share/po/pl.po: one fix
-
-2002/08/19 Pixel <pixel@mandrakesoft.com>
-
- * Makefile.config: remove dir security
-
- * interactive/gtk.pm: use my_gtk {isWizard} and {isEmbedded} which are
- more accurate than
- $::isWizard && !$my_gtk::pop_it and $::isEmbedded && !$my_gtk::pop_it,
- since
- when the Plug is full, the window is not embedded.
-
- * fs.pm: fix checking the return value of fsck.jfs
-
- * my_gtk.pm: in my_gtk object, set {isEmbedded} if embedded and {isWizard}
- if displayed wizard mode
-
- * Xconfig/monitor.pm (readMonitorsDB): now return a list instead of a hash
- to handle same name entries with different EISA_ID
- (configure_automatic): handle EISA_ID but no VertRefresh/HorizSync
- (happens for some hardware)
- (choose): handle user asking for "Plug'n Play" monitor and ddcxinfos
- failing
-
- * Xconfig/main.pm: replace "xxx => eval { }" with "xxx => scalar eval {}"
-
-2002/08/19 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * modules.pm: typo fix spoted by Arpad Biro
-
- * standalone/drakbackup: s/progess/progress/ (Arpad Biro)
-
-2002/08/19 alus
-
- * share/po/pl.po: one fix
-
-2002/08/19 Christian Belisle <cbelisle@mandrakesoft.com>
-
- * standalone/draksec:
- - draksec is now in his own package
-
-2002/08/19 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/network.pm: o remove old /etc/hosts entries for the hostname
- before adding new one
-
-2002/08/19 fcrozat
-
- * share/rpmsrate: Make sure nautilus-gtkhtml is installed by default for
- GNOME
-
-2002/08/19 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ta.po: Added Tamil file
-
- * share/po/pt.po: updated Portuguese file
-
-2002/08/19 Pixel <pixel@mandrakesoft.com>
-
- * Makefile.config: remove dir security
-
- * proxy.pm: add $Id: ChangeLog,v 1.1043 2005/06/17 23:46:34 prigaux Exp $
-
- * interactive/gtk.pm: use my_gtk {isWizard} and {isEmbedded} which are
- more accurate than
- $::isWizard && !$my_gtk::pop_it and $::isEmbedded && !$my_gtk::pop_it,
- since
- when the Plug is full, the window is not embedded.
-
- * install_any.pm (getAndSaveAutoInstallFloppy): ensure mount fail doesn't
- cause any pb
-
- * detect_devices.pm: add scsi Optical Device recognition (thanks to
- Michael Riss)
- (without this, a hard drive following the optical device gets assigned
- sda
- whereas sda is the optical device and the hard drive really is sdb)
-
- * fs.pm: fix checking the return value of fsck.jfs
-
- * my_gtk.pm: in my_gtk object, set {isEmbedded} if embedded and {isWizard}
- if displayed wizard mode
-
- * Xconfig/monitor.pm (readMonitorsDB): now return a list instead of a hash
- to handle same name entries with different EISA_ID
- (configure_automatic): handle EISA_ID but no VertRefresh/HorizSync
- (happens for some hardware)
- (choose): handle user asking for "Plug'n Play" monitor and ddcxinfos
- failing
-
- * Xconfig/main.pm: replace "xxx => eval { }" with "xxx => scalar eval {}"
-
-2002/08/19 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: s/drakconnet/drakconnect/ (Thank you for adding this
- bug, Titi)
-
-2002/08/19 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * modules.pm: add remove_modules
-
-2002/08/18 alus
-
- * share/po/pl.po: updated translation
-
-2002/08/18 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ca.po: updated Catalan file
-
- * share/po/id.po, share/po/da.po: updated Danish and Indonesian files
-
- * share/po/cs.po, share/po/hu.po: updated Czech and Hungarian files
-
-2002/08/18 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm: since lba32 is the default in lilo.conf
- - write "geometric" when lba32 is not set
- - don't write lba32 (useless)
-
-2002/08/18 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: Fixed HP multi-function device
- configuration during the installation:
- - Fixed mistyped package name for "mtoolsfm"
- - Set links for photo card reader auto-detection to work
-
-2002/08/17 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/ru.po, share/po/gl.po, share/po/pt_BR.po,
- share/po/br.po, share/po/th.po, share/po/no.po, share/po/et.po,
- share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
- share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/ko.po,
- share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/cy.po,
- share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/bs.po,
- share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
- share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/vi.po, share/po/fr.po, share/po/it.po, share/po/nl.po,
- share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
- share/po/el.po, share/po/cs.po, share/po/bg.po, share/po/lv.po,
- share/po/hu.po: updated po files
-
-2002/08/17 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig/card.pm:
- - allow to change the detected card
- - the chosen card can be used for dualhead if it is dualhead
-
- * Xconfig/resolution_and_depth.pm: sort resolutions to default to
- 1280x1024 instead of 1280x960
- if the monitor size is not given, default to 14'
-
- * any.pm (devfssymlinkf): use "mksymlink" instead of "symlink" so that
- devfsd doesn't give an error when the symlink already exists
-
- * Xconfig/proprietary.pm:
- - fix module not returning true
- - don't install_matrox_hal when testing
-
- * Xconfig/main.pm: ensure the chosen resolution is maintained unchanged
- when changing the graphic
- card or monitor.
-
-2002/08/17 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Fixes to make it possible toinstall HP's multi-function
- devices during installation.
-
- * scanner.pm: Let a newline character be put after the entry in
- /etc/sane.d/dll.conf, so more than one driver name can be added
- without all of them going into one line and then being unreadable.
-
-2002/08/16 alus
-
- * share/po/pl.po: updated
-
-2002/08/16 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sp.po, share/po/sl.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/sk.po: updated Slovak file
-
- * share/po/da.po, share/po/ko.po: updated Danish and Korean files
-
-2002/08/16 Pixel <pixel@mandrakesoft.com>
-
- * any.pm: fix "Security Administrator (login or email)" missing field
-
- * interactive/newt.pm: fix dialog box with empty buttons (thanks to
- Hamster <hamster@hamsternet.org>)
-
- * Xconfig/test.pm: raise the testing time from 8 to 12 seconds
-
- * my_gtk.pm (create_okcancel): do not display "Cancel" when {cancel} is
- empty string
-
- * bootloader.pm (add_entry): new entry will now keep its label, the
- conflicting one will be renamed "old_xxx" (and not the opposite)
-
- * diskdrake/interactive.pm: limit max size of loopback to 2GB on FAT
-
-2002/08/16 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/ui.pm: insert a space between "field:" and "description"
-
- * harddrake/v4l.pm, harddrake/bttv.pm, standalone/drakxtv,
- install_steps_interactive.pm:
- - harddrake::bttv is renamed harddrake::v4l
- - harddrake::v4l handle saa7134 too now (and not only bttv)
- - harddrake::v4l::config need a new driver parameter in order to be
- able to offer the right cards and tuners list
- - drakxtv: kill some old comments
- - add the list of cards supported by saa7134
- - add a not to remember a potentiel speedup
-
-2002/08/15 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone/drakbug:
- - add --incident : could be used by signal catcher to launch drakbug
- when app crash
-
- * standalone/drakautoinst:
- - explanations
-
-2002/08/15 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hr.po, share/po/da.po, share/po/DrakX.pot, share/po/fr.po,
- share/po/fi.po, share/po/de.po: updated Danish and Hungarian files
-
- * share/po/zh_CN.po, share/po/gl.po, share/po/ga.po: updated Chinese file
-
- * share/po/hu.po: updated Chinese and hungarian files
- updated Danish and Hungarian files
-
- * share/po/zh_TW.po: updated Chinese and hungarian files
- updated Chinese file
-
-2002/08/15 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakbackup: Allow non-root user to use program with personal
- config.
- Finish multisession support.
- Fix various crash scenarios in GUI in restore mode.
- Fix user restore mode to restore only what is requested.
- View archive contents before restore, user & sys mode.
- Add explanation of config file options for non-X users.
-
-2002/08/14 alus
-
- * share/po/pl.po: updated translation
-
-2002/08/14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ca.po, share/po/da.po: updated Catalan, Danish and Turkish
- files
- updated some po files
-
- * share/po/et.po, share/po/eu.po, share/po/es.po, share/po/eo.po,
- share/po/el.po: updated Vietnamese file
-
- * share/po/id.po, share/po/no.po, share/po/ja.po, share/po/hr.po,
- share/po/mt.po, share/po/ko.po, share/po/DrakX.pot, share/po/lt.po,
- share/po/cy.po, share/po/ar.po, share/po/wa.po, share/po/is.po,
- share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
- share/po/it.po, share/po/nl.po, share/po/de.po, share/po/cs.po,
- share/po/lv.po, share/po/hu.po: updated some po files
-
- * share/po/sp.po: Updated Slovak file
- updated some po files
-
- * share/po/vi.po: updated Vietnamese file
- updated some po files
-
- * share/po/th.po, share/po/tr.po: updated Catalan, Danish and Turkish
- files
-
- * share/po/ru.po, share/po/pt_BR.po, share/po/ro.po, share/po/pt.po:
- updated po files
-
- * share/po/sk.po, share/po/br.po, share/po/sl.po, share/po/be.po,
- share/po/uk.po, share/po/sv.po, share/po/sr.po, share/po/bs.po,
- share/po/bg.po: Updated Slovak file
-
-2002/08/14 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm: reduce the width of install window
-
- * bootloader.pm: fix "You can't install the bootloader on a xfs partition"
- happening in weird cases (thanks to Alan Hughes)
-
- * standalone/diskdrake: disable embedding of WebDAV configuration since it
- is broken
- $all_hds->{hds} must be filled in any case, not only in --hd
-
-2002/08/14 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakbackup: undo advanced_what_user I broke perl_checking
- multisession CD support
-
-2002/08/14 Warly <warly@mandrakesoft.com>
-
- * share/compssUsers.server: add LSB group
-
-2002/08/13 alus
-
- * share/po/pl.po: 2 strings overlapped each other
-
-2002/08/13 Pixel <pixel@mandrakesoft.com>
-
- * network/dav.pm: nothing useful for the moment
- use ensure_is_installed
-
- * interactive/gtk.pm: handle the setting of 'ok' and 'cancel'
-
- * diskdrake/dav.pm: add checking davfs is installed
- rough WebDAV gui
-
- * standalone.pm: add ensure_is_installed (which was
- network::smbnfs::check_raw and is often useful)
-
- * standalone/diskdrake, diskdrake/interactive.pm: rough WebDAV gui
-
- * network/smbnfs.pm, network/smb.pm, network/nfs.pm: use
- ensure_is_installed
-
-2002/08/13 siegel
-
- * share/po/de.po: updates
-
-2002/08/13 alus
-
- * share/po/pl.po: 2 strings overlapped each other
- updated translation
-
-2002/08/13 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: fixed stupid typo.
- allow selecting a choice package according to locales-xx found.
-
- * crypto.pm: added a true value.
-
- * share/rpmsrate: removed duplicate aspell-xx as DrakX will take care of
- them now.
-
-2002/08/13 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/gen_locales.sh: corrected erros that made the script fail
-
- * share/po/eu.po, share/po/es.po, share/po/DrakX.pot, share/po/ru.po,
- share/po/ro.po, share/po/pl.po, share/po/gl.po, share/po/fi.po,
- share/po/pt_BR.po, share/po/et.po, share/po/zh_TW.po, share/po/eo.po,
- share/po/pt.po, share/po/el.po, share/po/fr.po, share/po/ga.po: updated
- Portuguese and Chinese files
-
- * share/po/zh_CN.po: updated Chinese file
- updated Portuguese and Chinese files
-
-2002/08/13 Pixel <pixel@mandrakesoft.com>
-
- * drakxtools.spec: require latest perl-MDK-Common
-
- * interactive.pm: remove completly setting 'ok' & 'cancel' since it's
- better done per
- interactive::* to handle correctly the Wizard mode
- button "Previous" and "Next" are not only there in interactive::gtk
-
- * standalone.pm: add ensure_is_installed (which was
- network::smbnfs::check_raw and is often useful)
-
- * fsedit.pm, fs.pm: backend davfs (WebDAV) support
-
- * interactive/gtk.pm: handle the setting of 'ok' and 'cancel'
-
- * interactive/http.pm, interactive/stdio.pm, interactive/newt.pm:
- - handle setting 'ok' && 'cancel'
- - handle isWizard in newt (basic handling)
-
- * diskdrake/dav.pm: add checking davfs is installed
- rough WebDAV gui
-
- * Xconfig/main.pm (export_to_install_X): if monitor is p'n'p, don't save
- it for auto_install
-
- * network/dav.pm: nothing useful for the moment
- use ensure_is_installed
- backend davfs (WebDAV) support
-
- * standalone/diskdrake: rough WebDAV gui
-
- * network/smbnfs.pm, network/smb.pm, network/nfs.pm: use
- ensure_is_installed
-
- * diskdrake/interactive.pm: rough WebDAV gui
- backend davfs (WebDAV) support
-
-2002/08/13 siegel
-
- * share/po/de.po: updates
-
-2002/08/13 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * drakxtools.spec: harddrake-ui doesn't have to provides kudzu
-
- * standalone/drakxtv: add "Australian Optus cable TV" support (need xawtv
- <= 3.76)
-
- * standalone/service_harddrake: check the config file isn't empty
-
-2002/08/12 alus
-
- * share/po/pl.po: spell checking
- updated translation
-
-2002/08/12 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm: allow removing packages on upgrade.
-
- * pkgs.pm: fixed stupid change (almost hope it was really changes).
- fix to reduce size of already installed packages.
-
- * install_steps_interactive.pm: synced to force calling
- selectPackagesAlreadyInstalled in order to have
- installed and upgrade computed (necessary to known if a package is
- already
- installed or will be upgradable to compute size more precisely).
-
-2002/08/12 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/wa.po, share/po/et.po, share/po/zh_TW.po, share/po/vi.po,
- share/po/eu.po, share/po/uk.po, share/po/es.po, share/po/eo.po,
- share/po/el.po: updated po files
-
- * share/po/zh_CN.po: updated Chinese file
- updated po files
-
- * share/gen_locales.sh, share/locales-skeleton.tar.bz2, share/Makefile:
- locale name <-> charset correspondances better matching what DrakX uses
-
- * share/po/bs.po, share/po/br.po, share/po/be.po, share/po/cy.po,
- share/po/ca.po, share/po/cs.po, share/po/bg.po: updated Chinese file
-
-2002/08/12 Pixel <pixel@mandrakesoft.com>
-
- * standalone.pm:
- - add setExportedVarsInSh and setExportedVarsInCsh
- - remove setVarsInCsh (obsoleted by setExportedVarsInCsh)
-
- * bootloader.pm: fix typo
-
- * interactive.pm: don't switch to 2 buttons dialog box if the labels are
- too long in ask_from_list
- (otherwise it's ugly (reported for XFdrake multi-head choice with 67 &
- 58
- chars strings) (fix bug #62)
-
- * Xconfig/xfreeX.pm: create a backup of XF86Config (XF86Config.old)
-
- * any.pm: use setExportedVarsInSh for setting /etc/profile.d/proxy.sh so
- that http_proxy
- and ftp_proxy are exported (thanks to Pascal <pascal@vmfacility.fr>)
-
- * keyboard.pm, network/network.pm, install_steps.pm:
- - fix reading previous keyboard config on upgrade (for displaying in
- summary)
- - ensure keyboard and mouse configuration are not overwritten if not
- explictly modified on upgrade
- - propagate pci=xxx at install to bootloader (since "pci=bios,biosirq"
- is needed on some box, see http://islay.dyndns.org/taz/index.html for
- more)
-
- * proxy.pm: allow ftp_proxy beginning with http: (thanks to Christophe
- Combelles)
-
- * install2.pm:
- - fix reading previous keyboard config on upgrade (for displaying in
- summary)
- - ensure keyboard and mouse configuration are not overwritten if not
- explictly modified on upgrade
- - propagate pci=xxx at install to bootloader (since "pci=bios,biosirq"
- is needed on some box, see http://islay.dyndns.org/taz/index.html for
- more)
- use $::prefix
-
- * mouse.pm, Xconfig/default.pm: use $::prefix
-
- * bootlook.pm: fix embedding
-
-2002/08/12 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * ugtk.pm: consolidate create_factory_menu
- - ugtk::gtkexpand : new function
- - harddrake::ui : uses it
- write_on_pixmap: kill unused variable
- tree_set_icon: new function
- create_okcancel isn't in ugtk so don't export it (warning fix)
-
- * harddrake/ui.pm: print fields values in blue, paint unknown module in
- red
- consolidate create_factory_menu
- - on exit, kill the running configurator if any
- - modules::get_parameters : consolidate some code
- - harddrake::ui : uses it
- - ugtk::gtkexpand : new function
- - harddrake::ui : uses it
- - perl_checker fix
- - simplifications
- - put signals ids in %IDs
- - consolidate duplicated disconnection code into disconnect
- tree_set_icon: new function
-
- * modules.pm:
- - modules::get_parameters : consolidate some code
- - harddrake::ui : uses it
-
- * scanner.pm: update TODO list
-
- * harddrake/TODO:
- - on exit, kill the running configurator if any
-
-2002/08/12 Warly <warly@mandrakesoft.com>
-
- * share/compssUsers: update LSB text
-
- * share/logo-mandrake.png: logo for beta 3
-
- * share/rpmsrate: remove useless 2 GNOME
-
-2002/08/11 alus
-
- * share/po/pl.po: updated
-
-2002/08/11 Pixel <pixel@mandrakesoft.com>
-
- * partition_table/raw.pm: add Acronis bootloader magic
-
- * share/rpmsrate: adding aspell-LANGS before evolution to workaround the
- choices limitation (=> allow to choose the right aspell-LANG)
-
- * docs/comparisons: comprehensive feature-to-feature comparison with
- redhat 8.0
-
- * diskdrake/interactive.pm: allow to enter any mount point even in
- non-expert (why was it still the other way??)
-
- * drakxtools.spec: add "PreReq: rpm-helper" in drakxtools-http as advised
- by rpmlint
-
- * bootloader.pm:
- - compare_entries is now called same_entries
- - same_entries try hard to return true even if the files not the same
- but symlinks to the same file
- - rework add_entry (it handles weird case which used to give old_linux
- and old2_linux even if they are the same)
- - ensure the old failsafe entry doesn't give any old_failsafe
-
-2002/08/11 alus
-
- * share/po/pl.po: updated
-
-2002/08/11 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/sk.po,
- share/po/sp.po, share/po/af.po, share/po/sl.po, share/po/az.po,
- share/po/hr.po, share/po/ar.po, share/po/hu.po: updated some po files
-
- * share/po/th.po, share/po/tr.po: updated Turkish file
-
-2002/08/11 Pixel <pixel@mandrakesoft.com>
-
- * lvm.pm:
- - vg_add: do not vgremove the old_name anymore, this is dangerous and
- should not happen
- - lv_create: fix bug when {primary}{normal} didn't exist
- - use run_program::get_stdout instead of ``
- - create and use run() and run_or_die() which takes care of running
- vgscan again when needed
- - rename LVMname to VG_name
-
- * diskdrake/interactive.pm: allow to enter any mount point even in
- non-expert (why was it still the other way??)
- rename LVMname to VG_name
-
- * detect_devices.pm (floppies): module "floppy" can fail to insmod, in
- that case it means
- there's no floppy controller, so don't try fd0 & fd1 which may cause
- havoc
- (esp. segfault) (thanks to rcc)
-
- * share/rpmsrate: adding aspell-LANGS before evolution to workaround the
- choices limitation (=> allow to choose the right aspell-LANG)
-
- * docs/comparisons: comprehensive feature-to-feature comparison with
- redhat 8.0
-
- * diskdrake/hd_gtk.pm, partition_table.pm: rename LVMname to VG_name
-
- * fsedit.pm: get rid of the duplicated /tmp in for suggestions_mntpoint()
- (thanks to Amaury)
- - rename LVMname to VG_name
- - part2hd: allow rootDevice to be a VG_name
- - add auto_allocate_vgs
- cleanup
-
- * fs.pm (prepare_write_fstab): no need to read the fstab once again before
- writing since reading takes care of everything, including unknown
- entries (which go to {special}). This fixes a bug when removing existing
- partition with associated mount point. It used to keep the entry in
- fstab, which is wrong (as reported by andré <naderrt@wanadoo.fr>)
-
- * modules.pm (load): when isStandalone, ignore errors when loading
- unavailable modules (ie have the same behaviour as during install)
-
- * run_program.pm: add get_stdout (similar to rooted_get_stdout)
-
- * bootloader.pm:
- - compare_entries is now called same_entries
- - same_entries try hard to return true even if the files not the same
- but symlinks to the same file
- - rework add_entry (it handles weird case which used to give old_linux
- and old2_linux even if they are the same)
- - ensure the old failsafe entry doesn't give any old_failsafe
-
- * network/smb.pm: fix yet another bug regarding credentials during install
-
- * install_steps_auto_install.pm: nice message when rebootNeeded in
- auto_install (otherwise it reboots without prompting)
-
-2002/08/11 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: Setup of HP MF devices on parallel port did
- not work. Fixed.
- Allow setup of MF device if device file name "/dev/printer/<number>" was
- entered.
- If auto-detection of model name fails, ask user always whether he has an
- MF device.
- If SNMP or local auto-detection fails but HPOJ auto-detection succeeds,
- use model name found by HPOJ.
-
-2002/08/10 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/vi.po, share/po/sv.po: updated po file
-
-2002/08/10 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake/interactive.pm:
- - fix computing the minimal size for reiserfs resizing
- - use run_program::run instead of system for calling resizing tools
-
- * install_any.pm: workaround perl bug another way
-
-2002/08/10 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakbackup: GUI fixes, scp, rsync, webDAV, CD, tape support.
- Consolidate all net methods into one configure screen.
- Daemon mode, email fixed. Ran perl_checker and corrected.
- GUI feedback during various backup modes and result report.
- CD/Tape drive/media detection. Start to look at cataloging
- runs for locating restore media.
-
-2002/08/10 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Removed HP multi-function device configuration from SMB
- and remote LPD printer setup.
- Let the Sony IJP-V100 being treated as an HP multi-function device.
- Taken into account that the HP PhotoSmart 7150 has no photo card reader.
- Use any::get_secure_level() instead of printer::get_security_level().
-
- * detect_devices.pm: Scanning network for printers did not work during
- installation. Fixed.
-
- * printer.pm: Use any::get_secure_level() instead of
- printer::get_security_level().
-
-2002/08/09 fcrozat
-
- * share/rpmsrate: No longer requires metacity-setup (everything can be
- done using gnome-control-center)
- Ensure we install enough GNOME packages when selection GNOME
-
-2002/08/09 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm: make sure size of packages is computed.
-
- * pkgs.pm: take care of packages already installed that will be removed
- (untested).
-
- * install_any.pm: fixed loadO when getFile is not used (local files).
-
- * interactive.pm: allow cancel button even for wizard.
-
- * install_steps_interactive.pm: small update to avoid side effect of bless
- to HASH even if nothing results from
- this.
-
-2002/08/09 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/cs.po: updated Czech file
-
- * share/po/pt.po: updated Portuguese file
-
- * share/po/id.po, share/po/fr.po: updated French and Indonesian files
-
-2002/08/09 Pixel <pixel@mandrakesoft.com>
-
- * share/keyboards.tar.bz2: fix rights on files
-
- * tools/make_mdkinst_stage2, share/list.i386, install_any.pm: add fsck.jfs
-
- * any.pm, modparm.pm, harddrake/ui.pm:
- - fix module parameter dialog box handling
- - enable the cancel on load_module__ask_options
-
- * bootloader.pm (mkinitrd): when an initrd is already there, it means an
- initrd is needed
- not the contrary (thanks to Damon Lynch for his test)
-
- * install_steps.pm: remove previous report.bug.gz (otherwise one get a
- report.bug *and* the previous report.bug.gz)
- (report.bug's are not rotated, ddebug.log's and install.log's are)
-
-2002/08/09 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * modparm.pm: no need anymore to pass extra arguments for harddrake::ui
-
- * Xconfig/various.pm: perl_checker fixes
-
- * harddrake/TODO: module parameters're now read from /etc/modules.conf
- before being
- altered
-
- * harddrake/bttv.pm: resync with bttv-0.7.95, add support for :
- - tv cards:
- o Hauppauge WinTV PVR
- o Leadtek|WinFast VC 100
- - tv tuners:
- o LG NTSC (newer TAPC series)
-
- * drakxtools.spec: harddrake changes
-
- * modules.pm: mergein_conf: return options if they're set
-
- * harddrake/ui.pm:
- - module configuration window:
- o read current options
- o don't display ranges, we cannot really know when a range is
- needed and so display them in wrong cases (kill code, enable us
- to simplify modparm::parameters after
- o read & parse modules.conf only when configuring the module, not
- on each click in the tree
- o move up "require module" since we use it above
- o use get_options accessor instead of direct $conf access
- o split the options string into a hash{option => value}
- o don't call several times interactive->vnew
- o fix busy cursor on window exit because of the previous change
-
-2002/08/08 alus
-
- * share/po/pl.po: various changes
-
-2002/08/08 Pixel <pixel@mandrakesoft.com>
-
- * services.pm (services): better sorting of services
-
-2002/08/08 alus
-
- * share/po/pl.po: various changes
- corrected errors
-
-2002/08/08 François Pons <fpons@mandrakesoft.com>
-
- * fs.pm: make sure fsck is called for ext3 partition (due to possible
- kernel panic on
- corrupted ext3 partition, even after mounting ext3, umounting and
- remounting
- ext2).
-
-2002/08/08 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/keyboards.tar.bz2, keyboard.pm: Added Tamils TSCII keyboard
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
- share/po/nl.po, share/po/it.po, share/po/eu.po, share/po/de.po,
- share/po/eo.po, share/po/lv.po, share/po/cs.po, share/po/bg.po,
- share/po/el.po, share/po/hu.po: updated pot file
-
- * lang.pm: Added Tamils TSCII keyboard
- Added some support for Tamil (proper KDE default fonts, and define it
- as iso8859-1 encoding for kde)
-
- * share/po/es.po: updated pot file
- updated Spanish file
-
-2002/08/08 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm:
- - remove the icons in reallyChooseGroups
- - add the LSB group
- - remove buttons to change theme
- - add F5 to change the theme to the 'white' theme
- - cleanup the theme code
- workaround a weird pb with gtk: still re-creating help Gtk::Text at each
- step :-/
- - remove the "help" button
- - ensure the help box is not created twice (except when changing
- theme)
-
- * Xconfig/xfreeX.pm (set_resolution): handle the optional $resolution->{Y}
- (@resolutions): add 1280x960
- fix typo
- replace 1152x768 with 1152x864 as it should and used to be
-
- * install_steps.pm: don't add users in group usb (unneeded (?), anyway
- doesn't do anything since group usb doesn't exist currently)
-
- * install2.pm:
- - remove buttons to change theme
- - add F5 to change the theme to the 'white' theme
- - cleanup the theme code
-
- * services.pm (services): better sorting of services
-
- * install_any.pm, timezone.pm: use $::prefix in timezone::read
- timezone::read now returns a hash
-
- * install_gtk.pm:
- - remove buttons to change theme
- - add F5 to change the theme to the 'white' theme
- - cleanup the theme code
- workaround a weird pb with gtk: still re-creating help Gtk::Text at each
- step :-/
- - remove the "help" button
- - ensure the help box is not created twice (except when changing
- theme)
-
- * Xconfig/various.pm (tvout): rough default value for PAL vs NTSC
- (configure_FB_TVOUT): add ModeLines (Florent Beranger says it displays
- better with them)
-
- * any.pm:
- - write_passwd_user: ensure {pw} is set (at least '')
- - cleanup dead code
- (ask_window_manager_to_logout): adapt to new gnome
- sort security level descriptions
-
- * my_gtk.pm: do not hard code icon path
- - remove buttons to change theme
- - add F5 to change the theme to the 'white' theme
- - cleanup the theme code
-
- * Xconfig/card.pm, Xconfig/monitor.pm, Xconfig/main.pm: when prompting for
- VideoRam, default to the value obtained via DDC
-
- * Xconfig/resolution_and_depth.pm: handle the pb of resolutions where X
- doesn't imply Y (eg: 1280x1024 and 1280x960)
-
- * standalone/adduserdrake:
- - fix detecting use of MD5 and shadow passwords
- - cosmetic move of any::addUsers
-
-2002/08/08 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * install_any.pm, install_steps_interactive.pm: Windows PDC -> Windows
- Domain, don't make samba dirs - samba fixed now
-
-2002/08/08 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * scanner.pm: old hp scanners report themselves as "Processor"s as :
- - tested in hw lab
- - written in linux/include/scsi/scsi.h: "TYPE_PROCESSOR.*HP scanners
- use this"
- - reported by sane-find-sane: "old HP scanners use the CPU id"
-
- * detect_devices.pm: explain the fscking "Processor" need
- old hp scanners report themselves as "Processor"s as :
- - tested in hw lab
- - written in linux/include/scsi/scsi.h: "TYPE_PROCESSOR.*HP scanners
- use this"
- - reported by sane-find-sane: "old HP scanners use the CPU id"
-
-2002/08/07 Christian Belisle <cbelisle@mandrakesoft.com>
-
- * security/shorewall.pm: shorewall-related functions will go here.
-
-2002/08/07 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm: added automatic update of lilo image and KDE & GNOME
- background.
-
- * install2.pm: allow automatic oem patch. add log if successfull patching.
-
- * install_steps_interactive.pm: do not ask user to select ignored medium.
-
- * crypto.pm: allow patching of mirror used.
-
- * pkgs.pm: call rpmReadConfigFiles before installing packages.
- do not read package of ignored medium (contrib) to save memory.
-
- * install_any.pm: getAndSaveFile now return before writing zero-length
- file if input file doesn't
- exists on invocation.
-
-2002/08/07 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/vi.po: updated Vietnamese file
-
-2002/08/07 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig/card.pm: load glx in any case (well except for nvidia
- proprietary shit)
-
- * fs.pm: "LABEL=xxx" in fstab handling
-
- * bootlook.pm: replace glob() with all()
-
- * network/netconnect.pm (get_profiles): get rid of "glob", clean it up
-
-2002/08/06 alus
-
- * share/po/pl.po: updated translation
-
-2002/08/06 Daouda Lo <daouda@mandrakesoft.com>
-
- * network/tools.pm:
- - set the vpi vci correctly according to selected country.
-
-2002/08/06 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: added log to follow dead lock to check what may cause it).
-
-2002/08/06 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * tools/cvslog2changelog.pl: add warly,jgotti
-
-2002/08/06 Jonathan Gotti <jgotti@mandrakesoft.com>
-
- * bootlook.pm: add standalone::explanations for bootsplash configuration
-
-2002/08/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/rpmsrate: Increased the level of "yudit"; it's one of the editors
- with best utf-8
- support, so very useful to have.
-
- * share/po/fr.po, share/po/wa.po: updated French and Walloon files
- Put _() around two strings in security level choosing
-
- * share/po/DrakX.pot: updated French and Walloon files
-
- * any.pm, share/po/pl.po: Put _() around two strings in security level
- choosing
-
-2002/08/06 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig/xfree3.pm, Xconfig/xfreeX.pm, Xconfig/xfree4.pm,
- Xconfig/parse.pm: make wacom config work
-
- * bootloader.pm (get_kernels_and_labels): only take kernels for which we
- have the corresponding /lib/modules/VERSION (otherwise mkinitrd will
- fail)
-
- * run_program.pm (raw): new function allowing special options like
- {timeout}
-
- * fsedit.pm:
- - add /tmp in %suggestions for server partitioning
- - tweak some ratio's in %suggestions
-
- * any.pm (ddcxinfos): use the new run_program::raw with a 20s timeout to
- workaround ddcxinfos going wild using 100% system CPU
-
- * detect_devices.pm, my_gtk.pm, install_any.pm: make perl_checker happy
-
- * standalone.pm: add "use run_program" as needed
-
-2002/08/06 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakTermServ: typo, change /etc/exports explanation in help
-
-2002/08/06 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/data.pm: make perl_checker happier :-)
- - dont detect undef devices
- detect modem too
- - rename scanner::findScannerUsbport as scanner::detect
- as in mouse.pm
- - scanner::detect : detect SCSI scanners too
-
- * drakxtools.spec: log changes
-
- * network/modem.pm: nobody pass the second argument of
- network::modem::modem_detect_backend() so let simplify it
-
- * standalone/scannerdrake:
- - rename scanner::findScannerUsbport as scanner::detect
- as in mouse.pm
- - scanner::detect : detect SCSI scanners too
-
- * ugtk.pm: remove old references to rectangle drawing around mcc icons
-
- * scanner.pm: make perl_checker happier :-)
- - dont detect undef devices
- - rename scanner::findScannerUsbport as scanner::detect
- as in mouse.pm
- - scanner::detect : detect SCSI scanners too
-
-2002/08/05 Pixel <pixel@mandrakesoft.com>
-
- * share/list: switch to thread-multi
-
- * any.pm, mouse.pm: do the job of devfsd in case devfsd doesn't do it
-
- * drakxtools.spec: rebuild for perl thread-multi
-
- * rescue/list.sparc, rescue/list.x86_64, rescue/list.i386,
- rescue/list.ia64, rescue/list, rescue/list.alpha, rescue/list.ppc:
- - adapt to thread-multi
- - packdrake.pm is now out of arch dir
-
-2002/08/05 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * install_any.pm: smbpasswd call deferred with addToBeDone
-
-2002/08/05 alus
-
- * share/po/pl.po: removed unused strings
- updated translation, ugh... after second beta so much changes??
-
-2002/08/05 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone/logdrake:
- - do not show empty wizard when save button clicked.
- - cleanup (remove all sms stuffs: code and labels)
- - do not expand mail address
-
-2002/08/05 gbeauchesne
-
- * Makefile: lib64 fixes
- - Move xf86Wacom.so modules to {i386,ppc}-specific filelist
- - Make filelists lib64 aware with LIB variable
- - Add x86_64-specific filelist
-
- * share/list.i386, Makefile.config, share/list, share/list.x86_64,
- share/list.ppc:
- - Move xf86Wacom.so modules to {i386,ppc}-specific filelist
- - Make filelists lib64 aware with LIB variable
- - Add x86_64-specific filelist
-
-2002/08/05 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * drakxtools.spec: 1.1.9-5mdk
- 1.1.9-4mdk
-
- * my_gtk.pm: the state can be XXX also in flat mode, for disabling
- the setting of the state
-
-2002/08/05 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/ko.po, share/po/DrakX.pot, share/po/sr.po, share/po/pl.po,
- share/po/fi.po, share/po/lt.po, share/po/cy.po, share/po/ca.po,
- share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/vi.po, share/po/fr.po, share/po/it.po,
- share/po/nl.po, share/po/eu.po, share/po/es.po, share/po/de.po,
- share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
- share/po/lv.po: updated pot file
-
- * share/po/sv.po, share/po/da.po, share/po/hu.po: updated pot file
- updated po files
-
- * share/po/tr.po, share/po/pt.po: updated po files
- updated pot file
-
-2002/08/05 Pixel <pixel@mandrakesoft.com>
-
- * tools/Makefile: packdrake.pm is now in vendorlib
-
- * commands.pm: make perl_checker happy
-
- * bootlook.pm, standalone/printerdrake, standalone/draksec,
- standalone/drakfloppy, standalone/drakxservices, standalone/drakfont,
- standalone/drakautoinst, my_gtk.pm, standalone/drakconnect,
- standalone/drakgw, standalone/XFdrake, standalone/tinyfirewall,
- standalone/keyboarddrake, standalone/drakTermServ,
- standalone/mousedrake, standalone/scannerdrake: replace "kill USR1" with
- "kill 'USR1'" (and same for USR2)
- (so that 'use strict' works)
-
- * drakxtools.spec: rebuild for perl thread-multi
-
- * diskdrake/smbnfs_gtk.pm: adapt to ugtk
-
- * standalone.pm (install): verify at least one package is not installed
- before displaying a
- wait_message and calling urpmi (thanks to Jure Repinc)
- (is_installed): use run_program and redirect stdout to dave null for
- cleanness
-
- * Xconfig/card.pm: fix Option's (especially for XFree3)
- don't have Utah GLX the default. XFree4 is the default
-
- * share/list: switch to thread-multi
- packdrake.pm is now in vendorlib
-
- * Xconfig/main.pm: call the "Quit" button exit during install (as
- suggested by David Sansome)
-
- * any.pm, mouse.pm: do the job of devfsd in case devfsd doesn't do it
-
- * install_steps_interactive.pm: as suggested by Buchan Milne, defaults
- LDAP Server to ldap.DOMAINNAME
-
- * Xconfig/xfree4.pm: still have HorizSync and VertRefresh for Plug'n Play
- monitors
- (XFree4 still need some help)
-
- * standalone/drakboot: replace "kill USR1" with "kill 'USR1'" (and same
- for USR2)
- (so that 'use strict' works)
- a few more fixes (thanks Jure Repinc & Richard Burt)
-
-2002/08/05 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * install_any.pm: smbpasswd call deferred with addToBeDone
-
-2002/08/05 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Make/Model/Driver list in expert mode: Fixed bug of
- "recommended" driver entries getting a duplicate entry without
- "recommended" when entering the list via double-click on existing queue
- / "Printer manufacturer, model, driver".
- Finished auto-detection of network and SMB printers.
- Added automatic configuration of HP's multi-function devices when
- connected via HP JetDirect (network).
-
- * printer.pm: Finished auto-detection of network and SMB printers.
- Added automatic configuration of HP's multi-function devices when
- connected via HP JetDirect (network).
-
-2002/08/05 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * modules.pm:
- - export %modules::conf
- - kill modparm::raw_parameters and modparm::parameter_type
- which get merged back in modparm::parameters
- - add more parameters to modparm::parameters for harddrake
- harddrake/ui.pm | 19 ++++++++++---------
- modparm.pm | 33 +++++++++------------------------
- 2 files changed, 19 insertions(+), 33 deletions(-)
-
- * install_steps_gtk.pm, network/network.pm, log.pm, install_steps.pm,
- interactive.pm, bootloader.pm, harddrake/data.pm, steps.pm,
- install_steps_interactive.pm, keyboard.pm, printer.pm, lang.pm,
- fsedit.pm, install2.pm, detect_devices.pm, common.pm, commands.pm:
- s/__END__/1;
- kill "wonderful perl"
-
- * harddrake/ui.pm:
- - export %modules::conf
- - kill modparm::raw_parameters and modparm::parameter_type
- which get merged back in modparm::parameters
- - add more parameters to modparm::parameters for harddrake
- harddrake/ui.pm | 19 ++++++++++---------
- modparm.pm | 33 +++++++++------------------------
- 2 files changed, 19 insertions(+), 33 deletions(-)
- no one use second paramater of raw_parameters
- factorize some code in modparm::parameter_type
- s/__END__/1;
-
- * modparm.pm:
- - export %modules::conf
- - kill modparm::raw_parameters and modparm::parameter_type
- which get merged back in modparm::parameters
- - add more parameters to modparm::parameters for harddrake
- harddrake/ui.pm | 19 ++++++++++---------
- modparm.pm | 33 +++++++++------------------------
- 2 files changed, 19 insertions(+), 33 deletions(-)
- no one use second paramater of raw_parameters
- factorize some code in modparm::parameter_type
-
- * standalone/service_harddrake.sh: english fixes
-
- * standalone/logdrake, scanner.pm, standalone/drakautoinst,
- standalone/drakgw, standalone/scannerdrake: kill $Log (487 useless lines
- supressed from drakxtools)
-
-2002/08/04 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * install_any.pm, install_steps_interactive.pm: partial rework of Windows
- PDC authentication, still need
- to run smbpasswd after network is up
-
-2002/08/04 Till Kamppeter <till@mandrakesoft.com>
-
- * detect_devices.pm, printerdrake.pm: Accelerated network scanning for
- printers by applying "nmap" only to machines which answered to a
- broadcast ping before.
- Completed network/SMB printer auto-detection for recommended mode.
- Started network/SMB printer auto-detection for expert mode.
-
-2002/08/02 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone/logdrake:
- - expand $email in cron script
- - disable sms alerts (free sms site too complicated to
- handle). Postponed
- - mail service should work now
- - clean up code
- - give the correct right to cron file to work correctly
- - fix titi mess
-
- * standalone/drakbug:
- - avoiding looping indefinitalely when selecting items in combo
- - add commandline arguments: drakbug --report name_app
-
-2002/08/02 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * interactive/gtk.pm, my_gtk.pm: move interactive::gtk::exit to
- my_gtk::exit so that my_gtk
- apps can call it (and fix busy mouse cursor problem that way)
-
-2002/08/02 jgotti
-
- * standalone/drakboot: minor bugfix in calling bootloader::read
-
-2002/08/02 Pixel <pixel@mandrakesoft.com>
-
- * drakxtools.spec: keyboarddrake now handles choosing toggle key
- (XkbOptions)
-
-2002/08/02 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Corrected strings for printer queue list in main window.
-
-2002/08/02 warly
-
- * share/rpmsrate, share/compssUsers: add lsb group
-
-2002/08/01 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: drop keyboard unsafe when not unsafe
- anymore
- - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}
- - KBCHARSET is $o->{keyboard}{KBCHARSET}
- - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in
- sysconfig/keyboard)
- - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE"
- - add dialog box to choose GRP_TOGGLE
-
- * Xconfig/various.pm: finish tvout configuration
-
- * any.pm, Xconfig/xfreeX.pm, standalone/keyboarddrake, install2.pm,
- install_steps.pm, Xconfig/parse.pm, Xconfig/default.pm, commands.pm,
- printerdrake.pm:
- - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}
- - KBCHARSET is $o->{keyboard}{KBCHARSET}
- - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in
- sysconfig/keyboard)
- - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE"
- - add dialog box to choose GRP_TOGGLE
-
- * bootloader.pm (duplicate_kernel_entry): added
-
- * keyboard.pm: don't have "unsafe" in /etc/sysconfig/keyboard
- - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}
- - KBCHARSET is $o->{keyboard}{KBCHARSET}
- - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in
- sysconfig/keyboard)
- - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE"
- - add dialog box to choose GRP_TOGGLE
-
-2002/08/01 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Added stuff for scanning network for SMB printer
- shares.
-
- * detect_devices.pm: Added facility to scan network for SMB/Windows-hosted
- printers.
-
-2002/08/01 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * Makefile.config, drakxtools.spec: drakconf is dead
-
- * harddrake/ui.pm, harddrake/TODO: update
-
-2002/08/01 warly
-
- * share/logo-mandrake.png: new logo for beta 2
-
-2002/08/01 alus
-
- * share/po/pl.po: updated translation
-
-2002/08/01 dam's <dams@idm.fr>
-
- * ugtk.pm: removed fonctions typage
-
-2002/08/01 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/netconnect.pm, network/adsl.pm:
- - First ECI adsl support step
-
-2002/08/01 gbeauchesne
-
- * rescue/make_rescue_img: While stripping libraries, note that we may need
- to have both /lib and
- /lib64 on biarch systems.
- - MDK::Common'ize for arch() support
- - Don't grab /lib/i686/ libraries
- - Update list to use LIB which expands to either lib64 or lib
-
- * rescue/list.x86_64: Add x86_64-specific filelist
-
- * docs/HACKING: Add /bin/mknod to command list of sudoers
-
- * mdk-stage1/disk.c: Add missing includes, <string.h> for bzero()
-
- * rescue/list:
- - MDK::Common'ize for arch() support
- - Don't grab /lib/i686/ libraries
- - Update list to use LIB which expands to either lib64 or lib
-
-2002/08/01 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/base.png, share/selected.png, share/rpm-semiselected.png,
- share/rpm-installed.png, share/rpm-unselected.png, share/installed.png,
- share/rpm-base.png, share/semiselected.png, share/unselected.png,
- share/rpm-selected.png: change some png files names according to
- simplification of
- gtkcreate_png call of new my_gtk.pm
-
- * drakxtools.spec, ugtk.pm, my_gtk.pm: commit according to 1.1.9-1mdk of
- drakxtools, and especially:
- - integrate patches in my_gtk and ugtk for new rpmdrake:
- - [ugtk] add "gtkentry" so that we can create an entry and set
- initial value in one call
- - [my_gtk::main] don't set the events, to fix keyboard focus
- problem in entries when embedded
- - [my_gtk::_create_window] add $::noBorder, to not have a frame
- in the main window, so that it's possible to end up with
- windows with no border
- - [my_gtk] add ask_dir which is a ask_file with only the dir list
- - [my_gtk] add ask_browse_tree_info to the export tags, and:
- - add support for parents with no leaves, so that then we can
- partially build the trees (for speedup)
- - add "delete_all" and "delete_category" callbacks
- - use Gtk::CList::clear when removing all the nodes, much
- speedup
-
-2002/08/01 jgotti
-
- * bootlook.pm:
- - add splash theme section
-
- * pixmaps/nosplash_thumb.png: add pixmap for drakboot
-
-2002/08/01 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hu.po: updated Hungarian file
-
- * share/po/vi.po: updated vietnamese file
-
-2002/08/01 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: drop keyboard unsafe when not unsafe
- anymore
- - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}
- - KBCHARSET is $o->{keyboard}{KBCHARSET}
- - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in
- sysconfig/keyboard)
- - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE"
- - add dialog box to choose GRP_TOGGLE
-
- * any.pm:
- - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}
- - KBCHARSET is $o->{keyboard}{KBCHARSET}
- - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in
- sysconfig/keyboard)
- - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE"
- - add dialog box to choose GRP_TOGGLE
- get rid of some $prefix parameter passing (using $::prefix where needed
- instead)
-
- * Xconfig/various.pm: finish tvout configuration
-
- * ugtk.pm, my_gtk.pm: move back Gtk->init to "new" and "gtkroot"
- make perl_checker happy
-
- * Xconfig/parse.pm:
- - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}
- - KBCHARSET is $o->{keyboard}{KBCHARSET}
- - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in
- sysconfig/keyboard)
- - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE"
- - add dialog box to choose GRP_TOGGLE
- BusID needs a string (thanks to Florent BERANGER)
-
- * standalone.pm: don't display a wait_message in newt, but do suspend
-
- * install_any.pm: get rid of some $prefix parameter passing
-
- * pkgs.pm, fsedit.pm: get rid of some $prefix parameter passing (using
- $::prefix where needed instead)
-
- * loopback.pm (prepare_boot): use $::prefix
-
- * interactive/gtk.pm: fix the many warnings when {icon} is not given
-
- * Xconfig/resolution_and_depth.pm: in newt, have the resolutions sorted by
- resolution size (wilplizgg)
-
- * install_steps.pm:
- - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}
- - KBCHARSET is $o->{keyboard}{KBCHARSET}
- - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in
- sysconfig/keyboard)
- - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE"
- - add dialog box to choose GRP_TOGGLE
- get rid of some $prefix parameter passing
- get rid of some $prefix parameter passing (using $::prefix where needed
- instead)
- bootloader::suggest uses a hash for its options
-
- * .perl_checker: tune perl_checker
-
- * Xconfig/xfreeX.pm, standalone/keyboarddrake, install2.pm,
- Xconfig/default.pm, commands.pm, printerdrake.pm:
- - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}
- - KBCHARSET is $o->{keyboard}{KBCHARSET}
- - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in
- sysconfig/keyboard)
- - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE"
- - add dialog box to choose GRP_TOGGLE
-
- * keyboard.pm: don't have "unsafe" in /etc/sysconfig/keyboard
- - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}
- - KBCHARSET is $o->{keyboard}{KBCHARSET}
- - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in
- sysconfig/keyboard)
- - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE"
- - add dialog box to choose GRP_TOGGLE
-
- * bootloader.pm (duplicate_kernel_entry): added
- get rid of some $prefix parameter passing (using $::prefix where needed
- instead)
- bootloader::suggest uses a hash for its options
-
-2002/08/01 Till Kamppeter <till@mandrakesoft.com>
-
- * share/rpmsrate: Added new packages needed by printerdrake.
-
- * printerdrake.pm: Let packages "nmap" and "scli" get installed by
- printerdrake.
- Printer model auto-detection for ethernet-connected printers when
- setting up TCP/Socket, remote LPD, IPP, or HTTP printers.
- Continued work on scanning the local network for printers.
- In "setup_local()": Renamed variable "@parport" to "@autodetected".
- Do not let list of auto-detected printers get sorted alphabetically, it
- should stay sorted by ports.
- Fixed typo in file name in "check_network()".
-
-2002/08/01 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * diskdrake/smbnfs_gtk.pm: perl_checker fix
-
- * drakxtools.spec: drakconf is dead
- 17mdk: stage 1
- my_gtk:
- - splitup it into my_gtk and ugtk as done by dams
- - resync with dams
- - increase the icon blinkage from 50ms to 100ms
- %postun -n harddrake: return 0 when nothing has to be done
-
- * ugtk.pm: we already require perl-GTK-GdkImLib so temporary disable
- Gtk::Gdk::Pixbuf support, thus removing all gdk/gtk warnings
- remove INFO warnings
- my_gtk:
- - splitup it into my_gtk and ugtk as done by dams
- - resync with dams
- - increase the icon blinkage from 50ms to 100ms
-
- * my_gtk.pm: my_gtk:
- - splitup it into my_gtk and ugtk as done by dams
- - resync with dams
- - increase the icon blinkage from 50ms to 100ms
-
- * tinyfirewall.pm: kill stupide style
- perl_checker fixes
-
- * standalone/harddrake2: export license
- move embedded and standalone managment from harddrake::ui to
- standalone/harddrake2
-
- * harddrake/TODO: update
- move embedded and standalone managment from harddrake::ui to
- standalone/harddrake2
-
- * harddrake/ui.pm: update
- add_icon_path is exported in :various
- perl_checker fixes
- perl_checker fixes
- - workaround for the busy mouse cursor set by
- gtkset_mousecursor_wait() in my_gtk::destroy
- - remove debugging prints
-
- - don't handle "$::isEmbedded ? kill('USR1', $::CCPID) :
- Gtk->exit(0);", it's done by interactive->exit()
- export license
- move embedded and standalone managment from harddrake::ui to
- standalone/harddrake2
-
- * standalone/logdrake, harddrake/bttv.pm, standalone/drakconnect,
- standalone/drakbug, standalone/tinyfirewall, standalone/scannerdrake,
- standalone/drakxtv: perl_checker fixes
-
- * standalone/drakxconf: remove obsolote file
-
- * Makefile.config: drakconf is dead
-
- * tools/cvslog2changelog.pl: use new dam's email
-
- * scanner.pm, harddrake/data.pm: perl_checker fixes
- perl_checker fixes
-
-2002/07/31 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig/card.pm, Xconfig/main.pm:
- - add non-wizard ability to XFdrake
- - first part of ATI TVout support
- (still needs patching initscript, and adding an entry in bootloader)
- (and testing of course :)
-
- * bootlook.pm, network/network.pm, resize_fat/main.pm,
- network/netconnect.pm, Xconfig/xfreeX.pm, diskdrake/interactive.pm,
- network/ethernet.pm, printer.pm, detect_devices.pm,
- resize_fat/info_sector.pm, install_any.pm: make perl_checker happy again
- (replacing "{xx}->{yy}" by "{xx}{yy}")
-
- * any.pm (devfssymlinkf): when creating a symlink on the system, use devfs
- name if devfs is mounted
-
- * standalone/logdrake, standalone/draksec, standalone/drakxservices,
- standalone/drakautoinst, standalone/drakproxy, standalone/tinyfirewall,
- standalone/keyboarddrake, standalone/drakboot, standalone.pm,
- standalone/drakTermServ, standalone/net_monitor, standalone/diskdrake,
- standalone/mousedrake, standalone/drakbackup, standalone/printerdrake,
- standalone/drakfloppy, standalone/drakfont, standalone/drakconnect,
- standalone/drakgw, standalone/scannerdrake, standalone/drakxtv: Handle
- parsing --embedded command line in standalone.pm
- => allows to remove the somewhat mythical
- $::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/
-
- * standalone/XFdrake: Handle parsing --embedded command line in
- standalone.pm
- => allows to remove the somewhat mythical
- $::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/
- - add non-wizard ability to XFdrake
- - first part of ATI TVout support
- (still needs patching initscript, and adding an entry in bootloader)
- (and testing of course :)
-
- * Xconfig/various.pm: make perl_checker happy again (replacing
- "{xx}->{yy}" by "{xx}{yy}")
- - add non-wizard ability to XFdrake
- - first part of ATI TVout support
- (still needs patching initscript, and adding an entry in bootloader)
- (and testing of course :)
-
-2002/07/31 Christian Belisle <cbelisle@mandrakesoft.com>
-
- * security/msec.pm:
- - Fix page change between checks -> advanced
- - Factorize options-related functions
- - s/choose_options/choose_functions
- - Added security checks page
- - put the basic button on top (in the advanced page)
- - move set_server_link in the ignore list temporary
-
- * security/main.pm:
- - Factorize options-related functions
- - s/choose_options/choose_functions
- - Added security checks page
- - factorize functions (many functions -> one function)
-
-2002/07/31 Daouda Lo <daouda@mandrakesoft.com>
-
- * share/rpmsrate:
- - s/GNOME/X/ for gnome-linuxconf
-
- * standalone/drakbug:
- - many changes
- - command line support (--report name_of_program), to be used in tools
- - ergonomy fixes (use table to align widget correctly)
-
-2002/07/31 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * run_program.pm:
- - fix $ENV{HOME} value to '/root' if usermode break it
-
-2002/07/31 gbeauchesne
-
- * c/Makefile.PL: lib64 fixes
-
-2002/07/31 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/cdrom.c: hopefully fix "device or resource busy" problem in
- cdrom
- automatic mode (I messed up between truth value and number in a
- list... the first value is numbered "0" whicih is "false"...)
-
-2002/07/31 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/sp.po, share/po/cy.po, share/po/help-it.pot, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/bs.po, share/po/ro.po,
- share/po/wa.po, share/po/is.po, share/po/af.po, share/po/az.po,
- share/po/zh_TW.po, share/po/zh_CN.po, share/po/vi.po, share/po/fr.po,
- share/po/nl.po, share/po/it.po, share/po/help-fr.pot, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/lv.po, share/po/el.po,
- share/po/cs.po, share/po/bg.po, share/po/hu.po: updated pot file
-
- * share/po/pt.po, share/po/eu.po: updated Portuguese file
- updated pot file
-
-2002/07/31 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig/main.pm:
- - add non-wizard ability to XFdrake
- - first part of ATI TVout support
- (still needs patching initscript, and adding an entry in bootloader)
- (and testing of course :)
-
- * install_steps_interactive.pm, printerdrake.pm, pkgs.pm, network/adsl.pm,
- modules.pm, commands.pm, install_interactive.pm, install_steps_gtk.pm,
- interactive/stdio.pm, services.pm, keyboard.pm: make new perl_checker
- happy
- make new perl_checker happy (and that's not easy!)
-
- * any.pm (devfssymlinkf): when creating a symlink on the system, use devfs
- name if devfs is mounted
- replace "$foo" with $foo
- make new perl_checker happy
- make new perl_checker happy (and that's not easy!)
-
- * Xconfig/test.pm: change the location of X test image as told by dadou
-
- * Xconfig/resolution_and_depth.pm (choose_gtk): ensure the response is one
- of @resolutions (so that Y and maybe bios is kept)
- (to_string): created
- fix using $_ instead of $_[0] (thanks to perl_checker)
- make new perl_checker happy (and that's not easy!)
-
- * network/modem.pm: replace "$foo" with $foo
-
- * resize_fat/info_sector.pm, Xconfig/xfreeX.pm: make perl_checker happy
- again (replacing "{xx}->{yy}" by "{xx}{yy}")
-
- * printer.pm, install_any.pm, detect_devices.pm: make perl_checker happy
- again (replacing "{xx}->{yy}" by "{xx}{yy}")
- replace "$foo" with $foo
- make new perl_checker happy
- make new perl_checker happy (and that's not easy!)
-
- * bootlook.pm, network/netconnect.pm, network/ethernet.pm: make
- perl_checker happy again (replacing "{xx}->{yy}" by "{xx}{yy}")
- make new perl_checker happy
- make new perl_checker happy (and that's not easy!)
-
- * network/tools.pm, install_gtk.pm, network/isdn.pm: replace "$foo" with
- $foo
- make new perl_checker happy
- make new perl_checker happy (and that's not easy!)
-
- * my_gtk.pm (create_box_with_title): create an empty box when there is no
- message
- (also don't set $o->{box} since unused outside of this function)
- replace "$foo" with $foo
- make new perl_checker happy
- make new perl_checker happy (and that's not easy!)
-
- * Xconfig/card.pm:
- - add non-wizard ability to XFdrake
- - first part of ATI TVout support
- (still needs patching initscript, and adding an entry in bootloader)
- (and testing of course :)
- handle cancel in xfree_and_glx_choose
- default VideoRam choice 4096 when needVideoRam
- make new perl_checker happy
- make new perl_checker happy (and that's not easy!)
-
- * network/network.pm: make perl_checker happy again (replacing
- "{xx}->{yy}" by "{xx}{yy}")
- replace "$foo" with $foo
- - have is_ip return the 4 parts of the ip address
- - cleanup
- make new perl_checker happy (and that's not easy!)
-
- * interactive/gtk.pm: allow "icon" to use the icon path
- make new perl_checker happy (and that's not easy!)
-
- * Makefile, crypto.pm: make new perl_checker happy
-
- * Xconfig/monitor.pm: fix keeping the existing name when choosing monitor
-
- * resize_fat/main.pm: make perl_checker happy again (replacing
- "{xx}->{yy}" by "{xx}{yy}")
- make new perl_checker happy
-
- * standalone/mousedrake: Handle parsing --embedded command line in
- standalone.pm
- => allows to remove the somewhat mythical
- $::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/
- what is needed for usbmouse is "hid mousedev usbmouse" not the weird
- "serial_usb"
- make new perl_checker happy
-
- * mouse.pm (read): don't look at /dev/mouse symlink to get {device},
- sysconfig/mouse
- gives it, so why bother (this fixes /dev//dev/misc/psaux bug)
- make new perl_checker happy
- make new perl_checker happy (and that's not easy!)
-
- * standalone/logdrake, standalone/tinyfirewall, standalone/drakboot,
- standalone.pm, standalone/drakTermServ, standalone/net_monitor,
- standalone/drakbackup, standalone/printerdrake, standalone/drakconnect,
- standalone/drakxtv, standalone/draksec, standalone/drakxservices,
- standalone/drakautoinst, standalone/drakproxy, standalone/diskdrake,
- standalone/drakfloppy, standalone/drakfont, standalone/scannerdrake:
- Handle parsing --embedded command line in standalone.pm
- => allows to remove the somewhat mythical
- $::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/
-
- * standalone/keyboarddrake, standalone/drakgw: Handle parsing --embedded
- command line in standalone.pm
- => allows to remove the somewhat mythical
- $::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/
- make new perl_checker happy
-
- * install2.pm: allow acceptLicence to be automatic
- make new perl_checker happy
- make new perl_checker happy (and that's not easy!)
-
- * diskdrake/interactive.pm: make perl_checker happy again (replacing
- "{xx}->{yy}" by "{xx}{yy}")
- make new perl_checker happy (and that's not easy!)
-
- * standalone/XFdrake: Handle parsing --embedded command line in
- standalone.pm
- => allows to remove the somewhat mythical
- $::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/
- - add non-wizard ability to XFdrake
- - first part of ATI TVout support
- (still needs patching initscript, and adding an entry in bootloader)
- (and testing of course :)
- use configure_chooser when there is an existing configuration
-
- * log.pm, interactive.pm, resize_fat/fat.pm, network/smb.pm, raid.pm,
- partition_table.pm, diskdrake/hd_gtk.pm, install_steps.pm, swap.pm,
- resize_fat/directory.pm, devices.pm, lang.pm, partition_table/raw.pm,
- bootloader.pm, fsedit.pm, network/isdn_consts.pm: make new perl_checker
- happy (and that's not easy!)
-
- * Xconfig/various.pm: make perl_checker happy again (replacing
- "{xx}->{yy}" by "{xx}{yy}")
- - add non-wizard ability to XFdrake
- - first part of ATI TVout support
- (still needs patching initscript, and adding an entry in bootloader)
- (and testing of course :)
- (info): fix displaying depth
-
-2002/07/31 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Started working on network printer auto-detection.
-
- * detect_devices.pm: Added subroutines for ethernet printer
- auto-detection.
-
-2002/07/31 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/ui.pm:
- - bump harddrake version
- - module configuration is saved (todo: read the config)
- initial configuration window for modules. nothing is done yet.
- remove latest (?) gtk warnings
- don't display bogus fields
- in embedded mode, don't kill the main gtk app (aka drakconf) but
- only harddrake
- - add embedded mode for drakconf
- further simplification
- - the hw tree and the info text are auto-size now
- - further ui simplifications
- still more my_gtk simplifications
- ui.pm | 49 ++++++++++++++++---------------------------------
- 1 files changed, 16 insertions(+), 33 deletions(-)
- - simplify Gtk::Text filling
-
- - less gtk warnings get printed
- further my_gtk simplifications
- further my_gtk simplifications
- further use of my_gtk
- - remove useless realizations
-
- - simplify ctree and frames creation
- - make used once callbacks be anonymous functions
-
- - replace scores of useless ->show() call by one show_all() call
-
-
- ui.pm | 82
- +++++++++++++++++++++++++++---------------------------------------
- 1 files changed, 34 insertions(+), 48 deletions(-)
-
- * printer.pm: "cp -a" doesn't need "echo yes|"
-
- * modparm.pm: split parameters in raw_parameters and parameters.
- raw_parameters is
- used by harddrake to list module options in order to offer a module
- configuration window.
-
- * harddrake/TODO: update
- - bump harddrake version
- - module configuration is saved (todo: read the config)
- in embedded mode, don't kill the main gtk app (aka drakconf) but
- only harddrake
- - add embedded mode for drakconf
- - bump version number
- - fix pcmcia network card detection (no more unknown)
- - fix scsi detection :
-
- o fix SCSI controllers detection (no more unknown)
-
- o fix misdetection of scsi devices as scsi host adapter
-
- o fix double scsi devices detection (both unknown and real
- category)
-
- - update TODO list
-
- * Makefile: rename a few target:
- - srpm -> slowsrpm
- - fastsrpm -> srpm
-
- * drakxtools.spec: 15mdk (will be released tomorrow before the beta2)
- don't require detect-lst, it'll take harddrake instead :-(
- 14mdk
-
- * harddrake/data.pm:
- - bump harddrake version
- - module configuration is saved (todo: read the config)
- - bump version number
- - fix pcmcia network card detection (no more unknown)
- - fix scsi detection :
-
- o fix SCSI controllers detection (no more unknown)
-
- o fix misdetection of scsi devices as scsi host adapter
-
- o fix double scsi devices detection (both unknown and real
- category)
-
- - update TODO list
-
- * share/po/fr.po: update fr translation
-
-2002/07/30 alus
-
- * share/po/pl.po: variuos fixes and updates
- updates
-
-2002/07/30 Christian Belisle <cbelisle@mandrakesoft.com>
-
- * security/libsafe.pm:
- - complete re-write of draksec. splitted all the libsafe related
- functions
- in this file.
-
- * security/msec.pm, standalone/draksec:
- - complete re-write
-
- * security/main.pm:
- -complete re-write of draksec. The main functions will go in this
- file.
-
-2002/07/30 Daouda Lo <daouda@mandrakesoft.com>
-
- * Makefile.drakxtools:
- - mv drakbug executable from $$SBINDEST to $$BINDEST
-
-2002/07/30 gbeauchesne
-
- * tools/Makefile, tools/aewm-drakx/Makefile: lib64 fixes
-
-2002/07/30 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/hr.po, share/po/tr.po,
- share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
- share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
- share/po/lt.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
- share/po/da.po, share/po/ar.po, share/po/bs.po, share/po/ro.po,
- share/po/wa.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
- share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/lv.po, share/po/hu.po: reflect errata changes
-
- * install_steps_interactive.pm: have errata in parameter to not break too
- much updates
- 8.2->9.0
- s/82errata.php3/90errata.php3/
-
-2002/07/30 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/cs.po: updated po file
-
-2002/07/30 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm:
- - call fsck.jfs before mounting read-write (otherwise mount simply
- fails)
- - propose fsck -y for ext2 when fsck -a fails
-
- * standalone/drakbackup: never EVER put $xxxx in to-be-translated
- strings!!
-
- * diskdrake/interactive.pm (Add2LVM): for LVM on RAID, ensure the RAID is
- created & enabled
-
- * Xconfig/parse.pm: fix handling of commented empty line
-
- * standalone/drakautoinst: use $o->{interactiveSteps} instead of
- @install_steps_auto_install::graphical_steps
-
- * keyboard.pm, c/stuff.xs.pl, detect_devices.pm, install_steps.pm: use usb
- keyboard bCountryCode to choose the right keyboard
-
- * install_steps_interactive.pm: use usb keyboard bCountryCode to choose
- the right keyboard
- - call fsck.jfs before mounting read-write (otherwise mount simply
- fails)
- - propose fsck -y for ext2 when fsck -a fails
-
-2002/07/30 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Better placement for waiting message.
-
- * printer.pm: Fixed a typo and a comment in the "SIGHUP_daemon()"
- function.
-
-2002/07/30 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * share/po/fr.po: further translations
- update fr translation
-
- * standalone/drakbackup: don't translate useless strings (here: "\n")
-
- * standalone/drakbug: deush need to learn english
-
-2002/07/29 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (g_auto_install): also save chosen on_services (this is
- the only thing left to do to make it work :)
-
- * mouse.pm:
- - don't display "To activate the mouse, MOVE YOUR WHEEL!" when not
- install
- - don't display "Please test the mouse" either
- allow to not mess with X config auxmouse
- (that way mousedrake doesn't need to care about it)
-
- * run_program.pm: fix rooted() when chrooted and saving the result in a
- perl variable
-
- * Xconfig/resolution_and_depth.pm (configure_auto_install): really use
- resolution_wanted given in $o
-
- * partition_table.pm: cleanup
-
- * services.pm (ask_standalone_gtk, ask_install): only return the
- on_services (those
- functions used to return ($l, $on_services) which used in a scalar
- context
- returned $on_services)
-
- * standalone/mousedrake:
- - fix using deprecated Xconfig.pm
- - document dam's hack for test mouse
- - cleanup
- - don't bother reading XFree mouse config
- (using keep_auxmouse_unchanged of mouse::write_conf)
-
- * diskdrake/interactive.pm: nicer error message when "You can't create a
- new partition
- (since you reached the maximal number of primary partitions).
- First remove a primary partition and create an extended partition."
-
- * printer.pm: make perl_checker happy
-
- * standalone/XFdrake: make perl_checker happy
- (ask_for_X_restart): make it work
-
-2002/07/29 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Fixed some "$prefix" issues in the HPOJ auto-configuration
- and in the Star Office/OpenOffice.org auto-configuration.
-
-2002/07/29 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_any.pm: use aliases for stage1 params to reduce kernel msg
-
-2002/07/29 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
- share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/lv.po, share/po/hu.po: updated pot file
-
-2002/07/29 Pixel <pixel@mandrakesoft.com>
-
- * mouse.pm:
- - don't display "To activate the mouse, MOVE YOUR WHEEL!" when not
- install
- - don't display "Please test the mouse" either
- allow to not mess with X config auxmouse
- (that way mousedrake doesn't need to care about it)
- disallow big_help (when pressing F1) when testing mouse
-
- * install_any.pm (g_auto_install): also save chosen on_services (this is
- the only thing left to do to make it work :)
-
- * drakxtools.spec: remove "Requires: groff" (nobody know why it's there)
- (Pixel)
-
- * run_program.pm: fix rooted() when chrooted and saving the result in a
- perl variable
-
- * share/rpmsrate: xpcd is still there (deush)
- - remove deprecated packages
- - adapt some to their names
-
- * mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: fix typo
-
- * Xconfig/main.pm: restore xdm choice previous behaviour (auto_install)
-
- * Xconfig/resolution_and_depth.pm (configure_auto_install): really use
- resolution_wanted given in $o
-
- * fs.pm: fix mke2fs on loopback
- - use $::prefix for reading/writing (it was missing for writing)
- - use output_p so that /etc/samba directory is created if needed
- (fix bug reported by David Eastcott)
-
- * Xconfig/test.pm: try harder to have "xfs" running
-
- * partition_table.pm: cleanup
-
- * services.pm (ask_standalone_gtk, ask_install): only return the
- on_services (those
- functions used to return ($l, $on_services) which used in a scalar
- context
- returned $on_services)
-
- * standalone/mousedrake:
- - fix using deprecated Xconfig.pm
- - document dam's hack for test mouse
- - cleanup
- - don't bother reading XFree mouse config
- (using keep_auxmouse_unchanged of mouse::write_conf)
-
- * Xconfig/default.pm: fix default config for mouse
-
- * my_gtk.pm: disallow big_help (when pressing F1) when testing mouse
-
- * printer.pm: make perl_checker happy
-
- * diskdrake/interactive.pm: nicer error message when "You can't create a
- new partition
- (since you reached the maximal number of primary partitions).
- First remove a primary partition and create an extended partition."
- fix diskdrake::interactive::Options() excepts a value from
- fs::mount_options_pack(), but fs::mount_options_pack() doesn't return
- any
- value (reported by Olivier Thauvin)
-
- * standalone/XFdrake: make perl_checker happy
- (ask_for_X_restart): make it work
-
- * bootloader.pm: try to allow /boot on vfat (it used to work)
-
- * network/smb.pm:
- - use $::prefix for reading/writing (it was missing for writing)
- - use output_p so that /etc/samba directory is created if needed
- (fix bug reported by David Eastcott)
-
- * install_interactive.pm: fix partition wizard choice updating after
- calling diskdrake
-
- * install_steps_gtk.pm, install_steps_interactive.pm, install2.pm: ensure
- choosing install-or-upgrade can't be done twice
- (since it's badly handled and hard to handle nicely)
-
-2002/07/29 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/drakxtv: read and wrote /etc/modules.conf
-
- * Makefile:
- - consolidate duplicated 'use (warn|strict...' into nuke_perl target
- - thus enable to fix bug reported by gc (aka i only fixed localsrpm
- nuke, not srpm: one)
-
- * drakxtools.spec: final changes batch
- - pixel: don't set release to 14mdk when 13mdk hadn't be released ...
- - list 13mdk changes
- replace trigger by format test for hw config file conversion
-
-2002/07/28 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm (configureX, configureXBefore, configureXAfter):
- greatly simplified using new Xconfig stuff
-
- * standalone/XFdrake:
- - adapt to new Xconfig modules
- - try out the new "XFdrake resolution" and "XFdrake monitor" that'll
- get into DrakConf soon
-
- * Xconfig/xfree3.pm, Xconfig/various.pm, Xconfig/parse.pm,
- Xconfig/xfree.pm, Xconfig/test.pm, Xconfig/xfreeX.pm,
- Xconfig/proprietary.pm, Xconfig/xfree4.pm, Xconfig/monitor.pm,
- Xconfig/default.pm, Xconfig/screen.pm, Xconfig/FILES: 14 new modules,
- will it be enough?? :)
-
- * any.pm (running_window_manager): return the pids found if wanted
- (ddcxinfos): ensure no probe is done when $::noauto
-
- * install_steps_gtk.pm, install_gtk.pm, standalone.pm: adapt to new
- Xconfig modules
-
- * install_any.pm (g_auto_install): no need to handle $o->{X} as a special
- case, it's already done by Xconfig::main::export_to_install_X
-
- * Xconfig.pm, Xconfigurator.pm, Xconfigurator_consts.pm: thou hast served
- well, you may now lie in peace
-
- * common.pm (availableRamMB): use a precise constraint on 'Card:Intel 810'
- instead of a regexp
-
- * Xconfig/card.pm: make perl_checker happy
- rahh, don't commit my test code!
- 14 new modules, will it be enough?? :)
-
- * share/list: CardsNames is not needed anymore
-
- * interactive.pm: fix "nicer error message when {val} is not set for
- ask_from & list" in case of a reference to a reference (ref is REF
- instead of SCALAR)
-
- * Xconfig/main.pm: fix displaying info about current configuration
- 14 new modules, will it be enough?? :)
-
- * Xconfig/resolution_and_depth.pm:
- - make the gtk resolution chooser work
- - dropped the differenciation between embedded or not
- 14 new modules, will it be enough?? :)
-
- * mouse.pm (detect): return wacom inside $mouse
- (mouseconfig): reduce the number of "Use of undefined value"
- (set_xfree_conf): created
-
- * install2.pm: wacom is now inside $mouse
-
- * install_steps_interactive.pm (configureX): adapt to new Xconfig
-
-2002/07/28 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig/main.pm: fix displaying info about current configuration
- 14 new modules, will it be enough?? :)
-
- * Xconfig/resolution_and_depth.pm:
- - make the gtk resolution chooser work
- - dropped the differenciation between embedded or not
- 14 new modules, will it be enough?? :)
-
- * install_steps_gtk.pm, install_gtk.pm, standalone.pm: adapt to new
- Xconfig modules
-
- * install_any.pm (g_auto_install): no need to handle $o->{X} as a special
- case, it's already done by Xconfig::main::export_to_install_X
-
- * mouse.pm (detect): return wacom inside $mouse
- (mouseconfig): reduce the number of "Use of undefined value"
- (set_xfree_conf): created
-
- * install_steps.pm (configureX, configureXBefore, configureXAfter):
- greatly simplified using new Xconfig stuff
-
- * install2.pm: wacom is now inside $mouse
-
- * standalone/XFdrake:
- - adapt to new Xconfig modules
- - try out the new "XFdrake resolution" and "XFdrake monitor" that'll
- get into DrakConf soon
-
- * Xconfig/xfree3.pm, Xconfig/various.pm, Xconfig/parse.pm,
- Xconfig/xfree.pm, Xconfig/test.pm, Xconfig/xfreeX.pm,
- Xconfig/proprietary.pm, Xconfig/xfree4.pm, Xconfig/monitor.pm,
- Xconfig/default.pm, Xconfig/screen.pm, Xconfig/FILES: 14 new modules,
- will it be enough?? :)
-
- * Xconfig.pm, Xconfigurator.pm, Xconfigurator_consts.pm: thou hast served
- well, you may now lie in peace
-
- * install_steps_interactive.pm (configureX): adapt to new Xconfig
-
- * any.pm (running_window_manager): return the pids found if wanted
- (ddcxinfos): ensure no probe is done when $::noauto
-
- * Xconfig/card.pm: make perl_checker happy
- rahh, don't commit my test code!
- 14 new modules, will it be enough?? :)
-
- * common.pm (availableRamMB): use a precise constraint on 'Card:Intel 810'
- instead of a regexp
-
- * interactive.pm: fix "nicer error message when {val} is not set for
- ask_from & list" in case of a reference to a reference (ref is REF
- instead of SCALAR)
-
-2002/07/28 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakTermServ: Check for/install terminal-server and friends.
- More intelligent error message when
- mkisofs fails. Cleanup code for use strict. Fix crash when no backup
- dhcpd.conf.
-
- * standalone/drakbackup: Numerous GUI crash fixes, oddities. Install
- needed packages. Fix email, daemon modes.
- Add rsync, webdav, cd, tape capabilities. Consolidate net method setup
- screens.
- Add CD device capability query.
-
-2002/07/27 alus
-
- * share/po/pl.po: Fixes. There're some entries concerning mdk 8.2 - they
- should be changed
- globally
-
-2002/07/27 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm (add_probeall): use "uniq" to have modules only once in
- ddebug.log (a "uniq"
- was already in modules.conf so it doesn't change the result)
-
- * detect_devices.pm: use add_probeall for scsi_hostadapter, not add_alias
- (may fix a bug reported by Jure Repinc)
-
-2002/07/27 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: Completed implementation of the support for
- HPOJ 0.9: Automatic photo card reader configuration, bugfixes.
-
-2002/07/26 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone/logdrake:
- - more consistency when back button hit in wizard mode
- - back button at last stage.
-
- * standalone/drakbug:
- - add browser list in case BROWSER env var isn't set
-
-2002/07/26 François Pons <fpons@mandrakesoft.com>
-
- * tools/Makefile: fixed reference to rpmtools perl module.
-
-2002/07/26 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/rescue-gui.c:
- - usage of attribute unused (has not been rebuilt since -W? ;p)
- - since i polluted the newt-frontend with probing functions, i
- need to have probing functions (doing nothing) here :-((
-
-2002/07/26 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * harddrake/ui.pm: changed _("") -> "" empty strings must not be
- translated
-
-2002/07/26 Pixel <pixel@mandrakesoft.com>
-
- * rescue/list: remove traceroute (c naze dixit gc)
-
- * share/gen_locales.sh, lang.pm: hy is now using UTF8 locales
-
- * any.pm, services.pm, install_steps.pm: use
- run_program::rooted_get_stdout instead of `chroot $prefix ...`
-
- * install_any.pm: use run_program::rooted_get_stdout
-
- * Xconfigurator.pm: cleanup launching qiv (using run_program)
-
- * bootloader.pm:
- - fix dying when mkinitrd doesn't create an initrd
- - cleanup
-
- * run_program.pm (rooted_get_stdout): handle one line return using
- wantarray
- - also give the ability to redirect to an array ref
- - add rooted_get_stdout which is alike ``
- add 2 functionalities to run_program:
- - run_program::run(prog, '>', 'STDOUT', ...)
- run_program::run(prog, '2>', 'STDERR, ...)
- which will run with verbatim stdout or stderr
- - run_program::run(prog, '>', \$s, ...)
- run_program::run(prog, '2>', \$s, ...)
- which will return the stdout (resp. stderr) of the program in $s
-
- * rescue/Makefile: ensure rescue is built and uploaded
-
-2002/07/26 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/TODO: dadou said "no expert mode"
-
- * harddrake/ui.pm:
- - s/channel/Channel/
- - bus_id is for usb devices too
- - remove obsolete fields info and name
- - add nbuttons, device, old_device descriptions
-
- * drakxtools.spec: 13mdk
-
-2002/07/26 François Pons <fpons@mandrakesoft.com>
-
- * tools/Makefile: fixed reference to rpmtools perl module.
-
-2002/07/26 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: First step of automatic HP multi-function device
- configuration with HPOJ 0.9.
-
- * detect_devices.pm: Added detection of trhe serial number of a USB
- printer (in preparation for HPOJ 0.9 support in printerdrake).
-
-2002/07/25 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: fix loading ide-cd (big thanks to rcc
- <rickscafe.casablanca@gmx.net> you did
- all the work to resolve the pb)
- => this fixes ide burner detection
-
-2002/07/25 alus
-
- * share/po/pl.po: fix
- fix
- one entry more clearly :)
-
-2002/07/25 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone/logdrake:
- - don't display services that are not installed
- - word wrap string correctly
- - cleanup
-
-2002/07/25 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: added log.
- small code changes for upgrade.
-
- * tools/syncrpms: no more use rpmtools.pm.
-
- * mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: new logo (simplified
- for 9.0).
-
-2002/07/25 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/nl.po, share/po/id.po, share/po/vi.po: updated po files
-
-2002/07/25 Pixel <pixel@mandrakesoft.com>
-
- * my_gtk.pm: use a function icon_paths instead of @icon_paths
- => this ensure that $ENV{SHARE_PATH} value (used in @icon_paths) is set
- independently of the loading order of the modules
-
- * install_steps_interactive.pm: fix loading ide-cd (big thanks to rcc
- <rickscafe.casablanca@gmx.net> you did
- all the work to resolve the pb)
- => this fixes ide burner detection
- Help "perl -cw" not reporting any warning
- - for mac free partition, use $freepart instead of $freepart_device,
- $freepart_size ...
- - replace $timezone::ntp_servers by a function
-
- * bootloader.pm: let the bootloader::mkinitrd error be seen by the GUI
-
- * install_steps_newt.pm: please "perl -cw"
-
- * verify_c: adapt to stuff.xs.pl instead of stuff.xs.pm
-
- * partition_table.pm: add 0x35 partition table id meaning JFS (under OS/2)
- (thank to Mika Laitio)
-
- * fs.pm: noreturn is now exported, no need to
- MDK::Common::Various::noreturn()
-
- * common.pm: remove internal_error (which is now in MDK::Common)
-
- * partition_table/mac.pm, timezone.pm: Help "perl -cw" not reporting any
- warning
- - for mac free partition, use $freepart instead of $freepart_device,
- $freepart_size ...
- - replace $timezone::ntp_servers by a function
-
-2002/07/25 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * drakxtools.spec: 12mdk
- final batch of changes
- 11mdk
-
- * harddrake/TODO: still less things to do
- update
-
- * c/stuff.xs.pl: don't copy struct pciusb_entries on the stack
-
- * standalone/service_harddrake: merge timeout and cancel cases
- simplify:
- - we don't need to set media_type, we don't use it
- - mouse and mass storage media use the same key, let merge their code
- path
-
- * interactive/newt.pm: typo fix
-
- * Makefile.drakxtools: fix pixel "i do not need to test" fscking bug that
- broke drakxtools
- build :-)
-
- * harddrake/ui.pm: remove all gtk's "no callback/signal to disconnect"
- warnings
- add a fields data structure:
- - put together field translation and field description
- - this enable to get rid of %reverse_fields usage & creation
- - this ensure all field names & translations are marked translatables
- for gettext
- - move $wait declaration around its usage and explicit its destruction
- - remove usb debugging message needed to trace the null description
- bug i fixed in ldetect
- - simplify the device fields rendering "because of" the above
- - simplify the help window creation/display/destruction (only one
- statement left)
- - explicitely call interactive->exit
- handle both old device name and new devfs name
-
- * share/po/fr.po: update french translation
-
- * harddrake/data.pm: only do one probeall here (there's still many in
- detect_devices,
- probing caching should go there)
-
- * Makefile: use spec_test rather than test
-
-2002/07/24 alus
-
- * share/po/pl.po: fixes
- the last untranslated entry
-
-2002/07/24 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/cdrom.c, mdk-stage1/disk.c, mdk-stage1/tools.c,
- mdk-stage1/stage1.h, mdk-stage1/tools.h, mdk-stage1/frontend.h,
- mdk-stage1/probing.h, mdk-stage1/stdio-frontend.c,
- mdk-stage1/newt-frontend.c, mdk-stage1/probing.c: enhance (complicate?
- ;p) device detection so that scsi and usb
- detection are done only when no ide cdrom with mandrake install
- is detected (speed up), have usb keyboard modules installed
- before any interactive question, honour "noauto" (skip usb
- detection and insmod'ing)
-
-2002/07/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
- share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
- share/po/bg.po, share/po/lv.po, share/po/hu.po: updated po files
-
-2002/07/24 Pixel <pixel@mandrakesoft.com>
-
- * Makefile, Makefile.drakxtools: add PMS_DIRS in Makefile.config and use
- it everywhere
- (cleaning some ugly stuff in Makefile.drakxtools while doing so)
- => now adding a new directory only need to be done at one place
-
- * Xconfig/xfree3.pm, Xconfig/xfreeX.pm, mouse.pm, Xconfig/xfree4.pm,
- Xconfig/parse.pm: new XFree handling library
- - only keyboard and mice functions are done, but adding the others is
- quite easy
- - so for now only used in mousedrake
- - but keyboarddrake and (of course) XFdrake will come
-
- * Makefile.config: add Xconfig
- add PMS_DIRS in Makefile.config and use it everywhere
- (cleaning some ugly stuff in Makefile.drakxtools while doing so)
- => now adding a new directory only need to be done at one place
-
- * standalone/keyboarddrake: use Xconfig::xfree to set the XkbLayout
- (better should&will come)
-
- * c/stuff.xs.pl, c/Makefile, c/stuff.xs.pm: rename stuff.xs.pm to
- stuff.xs.pl (since it's a prog, not a module)
- (it helps for not having stuff.xs.pm in PMS)
-
- * Xconfig/xfree.pm (get_both): fix returning one element (eg:
- get_keyboard)
- new XFree handling library
- - only keyboard and mice functions are done, but adding the others is
- quite easy
- - so for now only used in mousedrake
- - but keyboarddrake and (of course) XFdrake will come
-
- * log.pm: when testing, log on STDERR
-
-2002/07/24 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/data.pm: don't account scanners as unknown devices
-
- * harddrake/ui.pm: scanners support:
- - split scannerdrake:val into vendor and description
- - don't display bogus "val:%HASH"
-
-2002/07/23 alus
-
- * share/po/pl.po: fuzzy cheched
-
-2002/07/23 Christian Belisle <cbelisle@mandrakesoft.com>
-
- * security.pm: removal
-
-2002/07/23 Daouda Lo <daouda@mandrakesoft.com>
-
- * security/msec.pm:
- - fix typo: s/%%options;/%%options/
-
-2002/07/23 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: manage correctly unselectPackage and use perl-URPM >= 0.50.
-
-2002/07/23 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/probing.c: s/usb/moreprofessional/ thanks to vdanen
-
-2002/07/23 Pixel <pixel@mandrakesoft.com>
-
- * share/po/help-eu.pot: rebuild after replacing \" by "
-
- * any.pm, interactive.pm: use fuzzy_pidofs (to detect if kwin is running)
-
- * detect_devices.pm: handle computers with no /proc/scsi/scsi
-
- * .cvsignore, share/modparm.lst, Makefile: modparm.lst is not used anymore
- (modinfo -p)
-
-2002/07/23 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * share/po/fr.po: further translations update
- update french translation
-
- * drakxtools.spec: 10mdk changes
- final changes batch
- 9mdk
- g Move 2: partition table: hierarchy
- - Big Move 1: interactive::* hierarchy
-
- * partition_table_dos.pm, partition_table/dos.pm, partition_table_mac.pm,
- partition_table/sun.pm, partition_table/gpt.pm, partition_table_raw.pm,
- partition_table_lvm_PV.pm, partition_table_empty.pm, standalone.pm,
- partition_table_sun.pm, partition_table_bsd.pm, install_interactive.pm,
- partition_table/raw.pm, partition_table.pm, any.pm,
- partition_table/mac.pm, partition_table/bsd.pm, bootloader.pm,
- diskdrake/hd_gtk.pm, partition_table/empty.pm, fsedit.pm,
- partition_table/lvm_PV.pm, partition_table_gpt.pm: g Move 2: partition
- table: hierarchy
-
- * Makefile.config, install_steps.pm, install_steps_interactive.pm,
- diskdrake/interactive.pm, Makefile.drakxtools, install_any.pm: g Move 2:
- partition table: hierarchy
- - Big Move 1: interactive::* hierarchy
-
- * harddrake/ui.pm: remove dead code
- remove dead args
- about and help windows: only show "OK" button, cancel one has no
- purpose here
-
- * detect_devices.pm: remove '-' before description for IBM eide hard disks
- g Move 2: partition table: hierarchy
-
- * standalone/service_harddrake: faster service startup
-
- * interactive_newt.pm, interactive.pm, standalone/drakautoinst,
- install_steps_stdio.pm, standalone/tinyfirewall, Xconfigurator.pm,
- standalone/drakboot, standalone/diskdrake, standalone/mousedrake,
- install_steps_newt.pm, printerdrake.pm, interactive_gtk.pm,
- install_steps_gtk.pm, interactive/http.pm, interactive/stdio.pm,
- interactive/newt.pm, services.pm, standalone/drakconnect,
- standalone/drakgw, interactive/gtk.pm, interactive_http.pm,
- interactive_stdio.pm, standalone/drakxtv:
- - Big Move 1: interactive::* hierarchy
-
- * Makefile: check make got correct tag from spec file
- fast build: new target (fastsrpm = cvstag localsrpm)
- g Move 2: partition table: hierarchy
- - Big Move 1: interactive::* hierarchy
-
- * harddrake/data.pm: s/drakconnet/drakconnect
-
- * harddrake/TODO: update
-
-2002/07/22 Pixel <pixel@mandrakesoft.com>
-
- * any.pm, mouse.pm, install2.pm, detect_devices.pm: when $::noauto,
- hardwire no probing in detect_devices::probeall to ensure no probing is
- never done
-
- * share/po/help-fr.pot, share/po/help-de.pot, share/po/help-eu.pot,
- help.pm, share/po/.cvsignore, share/po/Makefile, share/po/help-es.pot,
- share/po/help-it.pot:
- - update help.pm based on the xml manual
- - this fixes entities sticked together with no space in between
- - this also implies a few bad line-wrapping changes,
- but it needs to be done to have a clean state
- (we don't have one since 8.2beta where i updated things by hand)
- - put help-*.pot in CVS so that the files based on the xml manual can
- be updated
- independently from DrakX.pot & .po's
-
- * Newt/Makefile, resize_fat/Makefile, c/Makefile: ensure things build as
- they should when perl is upgraded on compilation box
- (using a nice scheme: make || make)
-
-2002/07/22 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: Adapted printerdrake to CUPS 1.1.15 and
- Perl 5.8.0 (for Foomatic).
- Let network also be started during installation when LPRng or PDQ is the
- spooler, so that the user can install queues to remote printers.
-
-2002/07/22 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/tools.pm: hide password in adsl configuration
-
-2002/07/22 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: try avoiding infinite loop.
-
-2002/07/22 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
- share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/el.po, share/po/bg.po,
- share/po/lv.po, share/po/hu.po: updated pot file
-
- * share/po/cs.po: updated Czech file
- updated pot file
-
-2002/07/22 Pixel <pixel@mandrakesoft.com>
-
- * c/Makefile, Newt/Makefile, resize_fat/Makefile: ensure things build as
- they should when perl is upgraded on compilation box
- (using a nice scheme: make || make)
-
- * any.pm, mouse.pm, install2.pm, detect_devices.pm: when $::noauto,
- hardwire no probing in detect_devices::probeall to ensure no probing is
- never done
-
- * help.pm, share/po/.cvsignore, share/po/Makefile, share/po/help-de.pot,
- share/po/help-fr.pot, share/po/help-eu.pot, share/po/help-es.pot,
- share/po/help-it.pot:
- - update help.pm based on the xml manual
- - this fixes entities sticked together with no space in between
- - this also implies a few bad line-wrapping changes,
- but it needs to be done to have a clean state
- (we don't have one since 8.2beta where i updated things by hand)
- - put help-*.pot in CVS so that the files based on the xml manual can
- be updated
- independently from DrakX.pot & .po's
-
- * share/po/help_xml2pm.pl:
- - use new PerlIO instead of iconv
- - transliterate by hand &ndash and &eacute
- - move "use utf8" at top
- - fix the spaces between entities
- (eg: &company-microsoft; &os-windows; must not be MicrosoftWindows)
-
-2002/07/21 Pixel <pixel@mandrakesoft.com>
-
- * drakxtools.spec: new snapshot
-
- * Xconfigurator.pm: fix multi-head auto-choosing in auto install
-
- * install_any.pm: workaround "traverse_tag" pb in Resolve.pm
- resolve_requested (is it ok??)
-
-2002/07/21 Pixel <pixel@mandrakesoft.com>
-
- * drakxtools.spec: new snapshot
-
- * install_any.pm: workaround "traverse_tag" pb in Resolve.pm
- resolve_requested (is it ok??)
-
-2002/07/21 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm: Load "extmod" is a must! (for things like shape and
- dga)
-
- * Xconfig.pm: fix typo
-
-2002/07/21 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm: Load "extmod" is a must! (for things like shape and
- dga)
-
- * Xconfig.pm: fix typo
-
- * share/locales-skeleton.tar.bz2: usr/share/locale skeleton is now build
- in gen_locales.pl
-
- * share/gen_locales.pl, share/gen_locales.sh: build per languages symlinks
- using the new::during_install__lang2charset
- -> this enables doing the same during install when using ramdisk
- => no need to have a locale.cz2 anymore
- (this is now possible since the number of special cases is lower than
- before)
-
- * lang.pm:
- - remove utf_xxx charsets, adding a flag UTF-8 instead
- - add during_install__lang2charset
- - when using ramdisk, no locale.cz2 anymore:
- there are 3 main charsets containing everything for all locales, except
- LC_CTYPE
- by default, there is UTF-8.
- when asked for GB2312 or BIG5, removing the other main charsets
- - cleanup comments (use #- instead of #)
- - various cleanup
-
- * tools/make_mdkinst_stage2: no more locale.cz2, just keeping the main
- charset /usr/share/locale/UTF-8
-
-2002/07/21 Pixel <pixel@mandrakesoft.com>
-
- * share/locales-skeleton.tar.bz2: usr/share/locale skeleton is now build
- in gen_locales.pl
-
- * share/gen_locales.pl, share/gen_locales.sh: build per languages symlinks
- using the new::during_install__lang2charset
- -> this enables doing the same during install when using ramdisk
- => no need to have a locale.cz2 anymore
- (this is now possible since the number of special cases is lower than
- before)
-
- * lang.pm:
- - remove utf_xxx charsets, adding a flag UTF-8 instead
- - add during_install__lang2charset
- - when using ramdisk, no locale.cz2 anymore:
- there are 3 main charsets containing everything for all locales, except
- LC_CTYPE
- by default, there is UTF-8.
- when asked for GB2312 or BIG5, removing the other main charsets
- - cleanup comments (use #- instead of #)
- - various cleanup
-
- * tools/make_mdkinst_stage2: no more locale.cz2, just keeping the main
- charset /usr/share/locale/UTF-8
-
-2002/07/20 Daouda Lo <daouda@mandrakesoft.com>
-
- * standalone/drakbug:
- - complete app list
-
-2002/07/20 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator_consts.pm: shorter and nicer XF86Config's
-
- * mouse.pm: devfssymlinkf doesn't have any return value, so don't check it
-
- * Xconfig.pm (getinfoFromXF86Config): move here setting prefer_xf3 based
- on current choice on system
- shorter and nicer XF86Config's
-
- * install_gtk.pm:
- - rename updateCardAccordingName into add_to_card__using_Cards
- - rename cardConfigurationAuto into probe_cards
- - cleanup the simple XF86Config used during install
-
- * install_steps.pm: call config_dvd with $have_devfsd
-
- * install_steps_gtk.pm:
- - rename updateCardAccordingName into add_to_card__using_Cards
- - rename cardConfigurationAuto into probe_cards
-
- * any.pm: try very hard to make rdvd work:
- - if not using devfs, it worked so keeping things unchanged
- - if using devfs, using the new dynamic rawdevice.script script to
- bind a
- rawdevice on demand
- pb: can't have both a devfs and a non-devfs config,
- the /etc/sysconfig/rawdevices solution gives errors with devfs
- (since the dvd is not REGISTERed yet)
- please perl_checker
- fix typo
- (devfssymlinkf): use devfs names for devfs/conf.d/xxx.conf, but not for
- the
- symlink in /dev (which is used when devfs is not)
- devfssymlinkf doesn't have any return value, so don't check it
-
- * Xconfigurator.pm:
- - $in and $do_pkgs are no more global
- => it's now easier to keep track of interactive vs non-interactive
- functions
- - rename updateCardAccordingName into add_to_card__using_Cards
- - rename cardConfigurationAuto into probe_cards
- - and a few other function renamings
- shorter and nicer XF86Config's
-
-2002/07/19 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm:
- - reorganize monitor tree
- - merge XF3 & XF4 server/module choosing
- - replace {eide} by {EISA_ID} (=> {monitor} cleanup)
- - ensure a few "Cancel" are more better handled
- - ensure the default monitor in the monitor tree is the last chosen
- one
-
- * Xconfigurator_consts.pm:
- - fix good_default_monitor (must not be 1600x1200!)
- - add r128 & radeon in XF4 drivers list
-
- * interactive_gtk.pm: reduce "Use of uninitialized value" in a heavy used
- place
- (useful when debugging)
-
- * Xconfig.pm: read monitor's VendorName & ModelName
-
-2002/07/19 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/adsl.pm:
- - check if speedtouch_mgmt exist before installing it
-
-2002/07/19 François Pons <fpons@mandrakesoft.com>
-
- * any.pm: revert changes so that DrakX work again.
-
- * install_any.pm: select default_packages directly during setPackages.
-
- * install_steps_interactive.pm: make sure unselectMostPackages is called
- (so that changes in default_packages
- are taken into account... but is may be any changes here ?).
-
-2002/07/19 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator_consts.pm:
- - fix good_default_monitor (must not be 1600x1200!)
- - add r128 & radeon in XF4 drivers list
- fix default_monitors to adapt new MonitorsDB
-
- * mouse.pm (devfssymlinkf): use devfs_device instead of device when
- available
-
- * partition_table.pm: handling devfs names for cdrom/hds on ide/scsi
- (needs testing)
-
- * any.pm (devfssymlinkf): try devices::to_devfs when devfs_device is not
- provided
- (devfssymlinkf): use devfs_device instead of device when available
-
- * detect_devices.pm: help perl_checker
- handling devfs names for cdrom/hds on ide/scsi (needs testing)
-
- * devices.pm: add functions to_devfs and from_devfs. These only work for
- devices entries
- which can go devfs -> normal and normal -> devfs
-
- * interactive_gtk.pm: reduce "Use of uninitialized value" in a heavy used
- place
- (useful when debugging)
-
- * Xconfig.pm: read monitor's VendorName & ModelName
- (readCardsDB): add handling BAD_FB_RESTORE & BAD_FB_RESTORE_XF3
-
- * Xconfigurator.pm:
- - reorganize monitor tree
- - merge XF3 & XF4 server/module choosing
- - replace {eide} by {EISA_ID} (=> {monitor} cleanup)
- - ensure a few "Cancel" are more better handled
- - ensure the default monitor in the monitor tree is the last chosen
- one
- partly cleanup monitor re-configuration (work in progress)
-
-2002/07/19 Christian Belisle <cbelisle@mandrakesoft.com>
-
- * any.pm:
- - remove any msec related functions
- - remove 'use security::msec'
-
-2002/07/19 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/adsl.pm:
- - check if speedtouch_mgmt exist before installing it
-
-2002/07/19 François Pons <fpons@mandrakesoft.com>
-
- * any.pm: revert changes so that DrakX work again.
-
- * install_any.pm: select default_packages directly during setPackages.
- fix typo on what_provides (for pitchounette :-)).
- added what_provides.
-
- * standalone.pm: fix typo on last commit.
- added what_provides.
-
- * install_steps_interactive.pm: make sure unselectMostPackages is called
- (so that changes in default_packages
- are taken into account... but is may be any changes here ?).
-
-2002/07/19 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt.po: updated Portuguese file
-
-2002/07/19 Pixel <pixel@mandrakesoft.com>
-
- * standalone/XFdrake: rename $i in $X (to have the same as
- Xconfigurator.pm)
-
- * interactive.pm: nicer error message when {val} is not set for ask_from &
- list
-
- * Xconfigurator.pm: partly cleanup monitor re-configuration (work in
- progress)
- - don't write XF86Config when no {card}{server}
- - don't write XF86Config-4 when no {card}{driver}
- - workaround mixing values from existing config and
- cardConfigurationAuto()
- - fix asking VideoRam
- - fix device0 in XF86Config
- - use "device1", "device2"... for "Device" Identifier
- - restore having a nice VendorName + BoardName
- (since Identifier is not very useful)
- - get {card}{Chipset} from existing XF86Config
- - use $::prefix
- - drop obsolete stuff: Ramdac, Dacspeed, Clockchip
- - drop {card}{flags}, the few flags are moved directly to {card}
- - force_xf4 is now a global in Xconfigurator
- - create new functions for better modularity: multi_head_config,
- xfree_and_glx_choices, xfree_and_glx_choose
- - for ppc, allow choosing DRI or not
- - need flag {card}{use_DRI_GLX} and {card}{use_UTAH_GLX} deciding
- wether
- to use DRI_GLX or UTAH_GLX. That way, {card}{DRI_GLX}, {card}{UTAH_GLX}
- are only flags allowing or not DRI/UTAH.
- - {card}{use_xf4} is dropped. New function using_xf4 has this
- functionality. The flags are now:
- - using XF4 if {driver} && !{prefer_xf3} otherwise using XF3
- - error if $force_xf4 && !{driver} || !{driver} && !{server}
- - internal error if $force_xf4 && {prefer_xf3} || {prefer_xf3} &&
- !{server}
- - {card}{description} contains what used to be {card}{identifier}
- - rename {card}{type} to {card}{card_name}
- - drop {monitor}{type}
-
- * install_steps.pm: don't pass the prefix parameter, not needed/wanted
- anymore
-
- * Xconfigurator_consts.pm: fix default_monitors to adapt new MonitorsDB
-
- * Xconfig.pm (readCardsDB): add handling BAD_FB_RESTORE &
- BAD_FB_RESTORE_XF3
- - use "device1", "device2"... for "Device" Identifier
- - restore having a nice VendorName + BoardName
- (since Identifier is not very useful)
- - get {card}{Chipset} from existing XF86Config
- - use $::prefix
- - drop obsolete stuff: Ramdac, Dacspeed, Clockchip
- - drop {card}{flags}, the few flags are moved directly to {card}
- - force_xf4 is now a global in Xconfigurator
- - create new functions for better modularity: multi_head_config,
- xfree_and_glx_choices, xfree_and_glx_choose
- - for ppc, allow choosing DRI or not
- - need flag {card}{use_DRI_GLX} and {card}{use_UTAH_GLX} deciding
- wether
- to use DRI_GLX or UTAH_GLX. That way, {card}{DRI_GLX}, {card}{UTAH_GLX}
- are only flags allowing or not DRI/UTAH.
- - {card}{use_xf4} is dropped. New function using_xf4 has this
- functionality. The flags are now:
- - using XF4 if {driver} && !{prefer_xf3} otherwise using XF3
- - error if $force_xf4 && !{driver} || !{driver} && !{server}
- - internal error if $force_xf4 && {prefer_xf3} || {prefer_xf3} &&
- !{server}
- - {card}{description} contains what used to be {card}{identifier}
- - rename {card}{type} to {card}{card_name}
- - drop {monitor}{type}
-
-2002/07/19 Christian Belisle <cbelisle@mandrakesoft.com>
-
- * any.pm:
- - remove any msec related functions
- - remove 'use security::msec'
-
-2002/07/19 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * standalone/drakconnect:
- - any::setup_thiskind_backend changed in any::load_category_no_message
-
-2002/07/19 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt.po: updated Portuguese file
-
-2002/07/19 Pixel <pixel@mandrakesoft.com>
-
- * standalone/XFdrake: rename $i in $X (to have the same as
- Xconfigurator.pm)
-
- * Xconfigurator.pm:
- - don't write XF86Config when no {card}{server}
- - don't write XF86Config-4 when no {card}{driver}
- - workaround mixing values from existing config and
- cardConfigurationAuto()
- - fix asking VideoRam
- - fix device0 in XF86Config
- - use "device1", "device2"... for "Device" Identifier
- - restore having a nice VendorName + BoardName
- (since Identifier is not very useful)
- - get {card}{Chipset} from existing XF86Config
- - use $::prefix
- - drop obsolete stuff: Ramdac, Dacspeed, Clockchip
- - drop {card}{flags}, the few flags are moved directly to {card}
- - force_xf4 is now a global in Xconfigurator
- - create new functions for better modularity: multi_head_config,
- xfree_and_glx_choices, xfree_and_glx_choose
- - for ppc, allow choosing DRI or not
- - need flag {card}{use_DRI_GLX} and {card}{use_UTAH_GLX} deciding
- wether
- to use DRI_GLX or UTAH_GLX. That way, {card}{DRI_GLX}, {card}{UTAH_GLX}
- are only flags allowing or not DRI/UTAH.
- - {card}{use_xf4} is dropped. New function using_xf4 has this
- functionality. The flags are now:
- - using XF4 if {driver} && !{prefer_xf3} otherwise using XF3
- - error if $force_xf4 && !{driver} || !{driver} && !{server}
- - internal error if $force_xf4 && {prefer_xf3} || {prefer_xf3} &&
- !{server}
- - {card}{description} contains what used to be {card}{identifier}
- - rename {card}{type} to {card}{card_name}
- - drop {monitor}{type}
-
- * interactive.pm: nicer error message when {val} is not set for ask_from &
- list
-
- * Xconfig.pm:
- - use "device1", "device2"... for "Device" Identifier
- - restore having a nice VendorName + BoardName
- (since Identifier is not very useful)
- - get {card}{Chipset} from existing XF86Config
- - use $::prefix
- - drop obsolete stuff: Ramdac, Dacspeed, Clockchip
- - drop {card}{flags}, the few flags are moved directly to {card}
- - force_xf4 is now a global in Xconfigurator
- - create new functions for better modularity: multi_head_config,
- xfree_and_glx_choices, xfree_and_glx_choose
- - for ppc, allow choosing DRI or not
- - need flag {card}{use_DRI_GLX} and {card}{use_UTAH_GLX} deciding
- wether
- to use DRI_GLX or UTAH_GLX. That way, {card}{DRI_GLX}, {card}{UTAH_GLX}
- are only flags allowing or not DRI/UTAH.
- - {card}{use_xf4} is dropped. New function using_xf4 has this
- functionality. The flags are now:
- - using XF4 if {driver} && !{prefer_xf3} otherwise using XF3
- - error if $force_xf4 && !{driver} || !{driver} && !{server}
- - internal error if $force_xf4 && {prefer_xf3} || {prefer_xf3} &&
- !{server}
- - {card}{description} contains what used to be {card}{identifier}
- - rename {card}{type} to {card}{card_name}
- - drop {monitor}{type}
-
- * install_steps.pm: don't pass the prefix parameter, not needed/wanted
- anymore
-
-2002/07/18 Christian Belisle <cbelisle@mandrakesoft.com>
-
- * standalone/draksec: create the main() function in security.pm
-
- * security.pm: Re-Addition: will contain the security related (but not
- related to any apps)
- funtioncs and the draksec interface.
- removing
-
- * security/msec.pm:
- - add prefix var in file names
- - remove useless expert_mode var
- - add get_options(): will be used to get various options from msec
- move the msec related functions from any.pm to msec.pm. create
- sec_options
-
-2002/07/18 Damien Chaumette <dchaumette@mandrakesoft.com>
-
- * network/netconnect.pm: . draknet renamed in drakconnect
-
-2002/07/18 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fixes allowNVIDIA_rpms against perl-URPM.
- really fixes it.
- fixes error if package is not found (regression fixed).
-
- * pkgs.pm: removed all the commented out code obsoleted.
- fix speed improvement for computeGroupSize by computing closure directly
- (in
- order to have an approximative size, not the real one).
- add back change CD support.
-
- * standalone/XFdrake: fixes with new urpm library of urpmi.
-
-2002/07/18 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm:
- - set $::prefix
- - drop $o->{root} (was "/tmp/root-perl-install" when testing but
- completly unused)
-
- * standalone/XFdrake, install_steps_interactive.pm: don't pass the prefix
- parameter, not needed/wanted anymore
-
- * Xconfigurator.pm, Xconfigurator_consts.pm, Xconfig.pm:
- - %standard_monitors are now in Cards+, dropping them
- - multi head support generalized, now based on Cards+ MULTI_HEAD
- - fix some ModeLines being written twice in XF86Config
- - remove setting DefaultFbBpp to 32
- (since it is the default in all my tests)
-
- * common.pm, install_any.pm: use $::prefix instead of $::o->{prefix}
-
-2002/07/18 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * install_any.pm, install_steps_interactive.pm: add support/option for
- Windows(tm) authentication via winbind
-
-2002/07/18 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * drakxtools.spec: 7mdk changes
- 6mdk final changes
-
- * harddrake/bttv.pm: useless standalone dependancy for pixel fscking
- checker
-
- * Makefile: faster startup: remove use (diagnostics|vars|strict) in srpm
- target as
- in local target (dams fsck)
-
- * harddrake/TODO: update
-
- * harddrake/data.pm: s/draknet/drakconnect/
- - bump version number
- - move scsi & ata controllers, tv-audio, dvd, burners, ... in their
- own "non configurable" sections
-
-2002/07/18 warly
-
- * share/logo-mandrake.png: install logo for 9.0 beta 1
-
-2002/07/18 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: fix speed improvement for computeGroupSize by computing closure
- directly (in
- order to have an approximative size, not the real one).
- add back change CD support.
-
-2002/07/18 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm, Xconfigurator_consts.pm, Xconfig.pm:
- - %standard_monitors are now in Cards+, dropping them
- - multi head support generalized, now based on Cards+ MULTI_HEAD
- - fix some ModeLines being written twice in XF86Config
- - remove setting DefaultFbBpp to 32
- (since it is the default in all my tests)
-
-2002/07/17 alus
-
- * share/po/pl.po: some more fixes
- some little changes
-
-2002/07/17 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_gtk.pm: added missing use pkgs.
-
-2002/07/17 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * pkgs.pm: spell right harddrake (two 'd') in @preferred
-
- * tools/cvslog2changelog.pl: add daouda chaumette cbelisle
-
-2002/07/17 Pixel <pixel@mandrakesoft.com>
-
- * install_gtk.pm: normalize Modeline to ModeLine
-
- * common.pm: add function "internal_error" (a specialized "die")
-
- * drakxtools.spec: the new XFdrake needs latest ldetect-lst
-
- * Makefile (test_pms): exclude urpm from uses
-
- * printer.pm, printerdrake.pm: use {XXX} instead of {'XXX'} (as detected
- by new perl_checker)
- remove "$_ =~ " (as detected by new perl_checker)
-
- * any.pm: move the "if !$::testing" for not modifying inittab in function
- runlevel()
- (was in install_steps.pm)
-
- * commands.pm: remove "$_ =~ " (as detected by new perl_checker)
-
- * Xconfigurator.pm, Xconfigurator_consts.pm, install_steps.pm,
- standalone/XFdrake, Xconfig.pm: Big Xconfigurator.pm cleanup/rework
- - use $X instead of $o (to avoid name conflict with DrakX's $o)
- - {flag}{noclockprobe} unused, dropping it
- - rename {memory} into "VideoRam"
- - rename {ramdac} into {Ramdac}
- - rename {chipset} into {Chipset}
- - rename {clockchip} into {Clockchip}
- - rename {keyboard}{xkb_model} into {keyboard}{XkbModel}
- - rename {keyboard}{xkb_keymap} into {keyboard}{XkbLayout}
- - drop {mouse}{chordmiddle} (obsolete)
- - drop {mouse}{cleardtrrts} (obsolete, was not written to XF4 config)
- - &testConfig is unused, removing it
- - as a concequence, {clocklines} is never set, dropping it
- - when UNSUPPORTED remove {driver}, instead of setting
- {flag}{unsupported}
- - Cards+ now only provide {Chipset} for cards needing it
- => {flag}{needChipset} not needed anymore
- - moved setting needVideoRam in Cards+ (via NEEDVIDEORAM)
- (hoping it will work: since the regexp was broken, it was never done.
- (it was applied on the module field of pcitable, instead of the
- description))
- - dropped modelines_text_Trident_TG_96xx case (it has never been used)
- - rename %xkb_options into %XkbOptions
- - rename {DRI_glx} into {DRI_GLX}, the value now comes from Cards+
- instead of regexp'ing {identifier}
- - rename {Utah_glx} into {UTAH_GLX}, the value now comes from Cards+
- instead of regexp'ing {identifier}
- - rename {Utah_glx_EXPERIMENTAL} into {UTAH_GLX_EXPERIMENTAL}, the
- value now comes from Cards+
- instead of regexp'ing {identifier}
- - very_bad_card and bad_card are now the same, the value now comes
- from
- Cards+ (BAD_FB_RESTORE & BAD_FB_RESTORE_XF3)
- - drop unused @accelservers
- - remove $modelines_text_apple, use $modelines_text_ext instead
- - don't use a <Section "Modes"> together with <UseModes "Mac Modes">,
- put
- directly modelines in Section "Monitor"
- (why should ppc behave differently than others!?)
- - replace (conflicting) ModeLines "1280x1024 @ 74 Hz" and
- "1280x1024 @ 76 Hz" with "1280x1024 @ 75 Hz" (from ddcxinfos)
- - drop ModeLine "640x480 @ 72 Hz"
- (it conflicts, and anyway, it has no real use nowadays :)
- - drop comments about HorizSync, VertRefresh and ModeLine's from
- XF86Config
- - drop many unneeded stuff from XF86Config:
- AutoRepeat, Xqueue, Xleds, NoTrapSignals, XkbTypes, XkbKeycodes,
- XkbCompat, XkbRules, LeftAlt/RightAlt/ScrollLock/RightCtl
- - drop section comments from XF86Config
- - drop XF86_Mono configuration
- (it doesn't work anyway, seems like it needs a special ModeLine?)
- - drop 320x200 with XF86_SVGA (who can use this!?)
- - do not write Screen section "accel" if the server configured is not
- an
- accel one
- - drop the "Generic VGA" Device section for XF4
- (this device is unused)
- - drop {monitor}{vendor}, {monitor}{model}, {card}{vendor},
- {card}{model},
- {card}{board} (only description strings, not useful for running the
- server)
- - use x_res instead of wres for things like 1024 in 1024x768
-
-2002/07/17 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_gtk.pm: added missing use pkgs.
-
-2002/07/17 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * pkgs.pm: spell right harddrake (two 'd') in @preferred
-
-2002/07/17 Pixel <pixel@mandrakesoft.com>
-
- * install_gtk.pm: normalize Modeline to ModeLine
-
- * common.pm: add function "internal_error" (a specialized "die")
-
- * drakxtools.spec: the new XFdrake needs latest ldetect-lst
-
- * Makefile (test_pms): exclude urpm from uses
-
- * printer.pm, printerdrake.pm: use {XXX} instead of {'XXX'} (as detected
- by new perl_checker)
- remove "$_ =~ " (as detected by new perl_checker)
-
- * any.pm: move the "if !$::testing" for not modifying inittab in function
- runlevel()
- (was in install_steps.pm)
-
- * commands.pm: remove "$_ =~ " (as detected by new perl_checker)
-
- * Xconfigurator.pm, Xconfigurator_consts.pm, install_steps.pm,
- standalone/XFdrake, Xconfig.pm: Big Xconfigurator.pm cleanup/rework
- - use $X instead of $o (to avoid name conflict with DrakX's $o)
- - {flag}{noclockprobe} unused, dropping it
- - rename {memory} into "VideoRam"
- - rename {ramdac} into {Ramdac}
- - rename {chipset} into {Chipset}
- - rename {clockchip} into {Clockchip}
- - rename {keyboard}{xkb_model} into {keyboard}{XkbModel}
- - rename {keyboard}{xkb_keymap} into {keyboard}{XkbLayout}
- - drop {mouse}{chordmiddle} (obsolete)
- - drop {mouse}{cleardtrrts} (obsolete, was not written to XF4 config)
- - &testConfig is unused, removing it
- - as a concequence, {clocklines} is never set, dropping it
- - when UNSUPPORTED remove {driver}, instead of setting
- {flag}{unsupported}
- - Cards+ now only provide {Chipset} for cards needing it
- => {flag}{needChipset} not needed anymore
- - moved setting needVideoRam in Cards+ (via NEEDVIDEORAM)
- (hoping it will work: since the regexp was broken, it was never done.
- (it was applied on the module field of pcitable, instead of the
- description))
- - dropped modelines_text_Trident_TG_96xx case (it has never been used)
- - rename %xkb_options into %XkbOptions
- - rename {DRI_glx} into {DRI_GLX}, the value now comes from Cards+
- instead of regexp'ing {identifier}
- - rename {Utah_glx} into {UTAH_GLX}, the value now comes from Cards+
- instead of regexp'ing {identifier}
- - rename {Utah_glx_EXPERIMENTAL} into {UTAH_GLX_EXPERIMENTAL}, the
- value now comes from Cards+
- instead of regexp'ing {identifier}
- - very_bad_card and bad_card are now the same, the value now comes
- from
- Cards+ (BAD_FB_RESTORE & BAD_FB_RESTORE_XF3)
- - drop unused @accelservers
- - remove $modelines_text_apple, use $modelines_text_ext instead
- - don't use a <Section "Modes"> together with <UseModes "Mac Modes">,
- put
- directly modelines in Section "Monitor"
- (why should ppc behave differently than others!?)
- - replace (conflicting) ModeLines "1280x1024 @ 74 Hz" and
- "1280x1024 @ 76 Hz" with "1280x1024 @ 75 Hz" (from ddcxinfos)
- - drop ModeLine "640x480 @ 72 Hz"
- (it conflicts, and anyway, it has no real use nowadays :)
- - drop comments about HorizSync, VertRefresh and ModeLine's from
- XF86Config
- - drop many unneeded stuff from XF86Config:
- AutoRepeat, Xqueue, Xleds, NoTrapSignals, XkbTypes, XkbKeycodes,
- XkbCompat, XkbRules, LeftAlt/RightAlt/ScrollLock/RightCtl
- - drop section comments from XF86Config
- - drop XF86_Mono configuration
- (it doesn't work anyway, seems like it needs a special ModeLine?)
- - drop 320x200 with XF86_SVGA (who can use this!?)
- - do not write Screen section "accel" if the server configured is not
- an
- accel one
- - drop the "Generic VGA" Device section for XF4
- (this device is unused)
- - drop {monitor}{vendor}, {monitor}{model}, {card}{vendor},
- {card}{model},
- {card}{board} (only description strings, not useful for running the
- server)
- - use x_res instead of wres for things like 1024 in 1024x768
-
-2002/07/16 alus
-
- * share/po/pl.po: unused string removed
-
-2002/07/16 cbelisle
-
- * standalone/draksec: re-write the part setting the security admin
-
- * security.pm: draksec - initial commit. preparing for the advanced
- section.
-
- * any.pm: draksec:
- - rewrite the function to set the security admin
- - remove ugly buttons, 'advanced' button will come later
-
-2002/07/16 dchaumette
-
- * standalone/drakbug, standalone/interactive_http/authorised_progs,
- standalone/drakxconf: o finish moving draknet to drakconnect in
- standalone
-
-2002/07/16 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: update with newer perl-URPM.
- added log (finding packages to upgrade or computing installed flag)
-
- * install_steps.pm: removed useless package selection cleaning.
-
- * install_steps_gtk.pm: code cleanup.
-
- * install_steps_interactive.pm: improve a little.
- fixed missing upgrade.
- added wait message when finding packages to upgrade.
-
- * install2.pm: fixed reference to step 'selectPackagesToUpgrade'.
-
- * install_any.pm: fixed die when choosePackages step is redone.
-
- * crypto.pm: allow upgrade (if any) by using version at 8.2.
-
-2002/07/16 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * any.pm: small english fix thx to vdanen
-
- * share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
- share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
- share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
- share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
- share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
- share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
- share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
- share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
- share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
- share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
- share/po/nl.po, share/po/it.po, share/po/eu.po, share/po/es.po,
- share/po/de.po, share/po/eo.po, share/po/lv.po, share/po/el.po,
- share/po/cs.po, share/po/bg.po, share/po/hu.po: reflect typo fix in
- any.pm in the po's so that the translation are not broken
-
- * mdk-stage1/stage1.c: extend a bit fatal error when trying to execute
- /usr/bin/runinstall2 and it's not possible
-
-2002/07/16 Pixel <pixel@mandrakesoft.com>
-
- * standalone/drakTermServ: fix "$" in translated string
-
- * Makefile: don't display etags command (too long, not nice)
-
-2002/07/15 daouda
-
- * standalone/drakbug:
- - isStandalone is set in standalone.pm, removed
-
- * standalone/draksec:
- - isStandalone is set in standalone.pm, removed.
- - set isStandalone to 1 to center wait messages
-
-2002/07/15 François Pons <fpons@mandrakesoft.com>
-
- * install2.pm: synced.
-
- * install_any.pm: synced with other module updated.
-
- * c/stuff.xs.pm: cleaned no more used method.
-
- * pkgs.pm: made upgrade almost work again (need testing and
- remove/deselect still doesn't
- work properly).
-
- * install_steps.pm: code re-organisation (a little).
-
- * install_steps_gtk.pm: fixed flag usage (still check selected package to
- upgrade but already selected
- are correctly shown).
-
-2002/07/15 Pixel <pixel@mandrakesoft.com>
-
- * ChangeLog: revert titi's error
-
-2002/07/11 Pixel <pixel@mandrakesoft.com>
-
- * rescue/list.i386: switch to vendor_perl
-
-2002/07/10 daouda
-
- * standalone/drakbug:
- - code update
- - use local http server for test.
-
-2002/07/10 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm, install_steps_gtk.pm, crypto.pm, share/list, pkgs.pm,
- install_any.pm, install2.pm, install_steps_interactive.pm: use perl-URPM
- instead of rpmtools.
-
- * tools/Makefile: use vendor_perl instead of site_perl (check of
- rpmtools.pm and packdrake.pm presence).
-
-2002/07/10 Pixel <pixel@mandrakesoft.com>
-
- * tools/Makefile: nicer use of vendor_perl instead of site_perl (check of
- rpmtools.pm and
- packdrake.pm presence) ... i had forgot to commit :-(
-
- * ftp.pm: don't let Timeout kill us
-
- * modparm.pm: rollback titi's modif
-
- * detect_devices.pm: cleanup
-
- * share/list: add integer.pm (needed by Time::Local (needed by Net::FTP))
-
-2002/07/10 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * drakxtools.spec: list and describe all gui tools from drakxtools
- enhance cohenrency: step 1
- - ide and scsi devices use channel rather than bus to store their
- physical connection, which is more logic (at least for eide)
- - all devices have their connection bus in bus field, not in bus for
- {pci,usb,...} and interface_type for {scsi,eide,other_block_devices}
-
- - detect_devices:getIDE() : add eide_hds hash in order to be able to
- split info field between model and vendor
-
- - harddrake::ui : code reduction allowed by the above changes
- fix parrallel build
- fix perl depandancy on new perl
-
- * diskdrake/interactive.pm, detect_devices.pm, install_steps.pm,
- harddrake/ui.pm: enhance cohenrency: step 1
- - ide and scsi devices use channel rather than bus to store their
- physical connection, which is more logic (at least for eide)
- - all devices have their connection bus in bus field, not in bus for
- {pci,usb,...} and interface_type for {scsi,eide,other_block_devices}
-
- - detect_devices:getIDE() : add eide_hds hash in order to be able to
- split info field between model and vendor
-
- - harddrake::ui : code reduction allowed by the above changes
-
- * modparm.pm: typo fix
- no need to test two times if modinfo is executable in normal (ie not
- in drakx) case ...
-
- * Makefile, Makefile.drakxtools: remove all
- (use\s+(diagnostics|vars|strict)' instances
-
-2002/07/09 Pixel <pixel@mandrakesoft.com>
-
- * Makefile: have MDK::Common's in TAGS
-
- * detect_devices.pm: rewrite getSCSI, now handling scanners
-
- * share/list: adapt to new perl 5.8.0
-
- * common.pm, modparm.pm: move join_lines to common
-
-2002/07/09 Pixel <pixel@mandrakesoft.com>
-
- * Makefile: have MDK::Common's in TAGS
-
- * detect_devices.pm: rewrite getSCSI, now handling scanners
-
- * share/list: adapt to new perl 5.8.0
-
- * common.pm, modparm.pm: move join_lines to common
-
-2002/07/09 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/TODO: fix boot freeze on hw change: initscript was running us
- with stdout
- redirected to /dev/null; just use a small sh wrapper to fix it
- update
-
- * standalone/service_harddrake.sh:
- - redirect stderr
- - remove old commented stuff
- fix boot freeze on hw change: initscript was running us with stdout
- redirected to /dev/null; just use a small sh wrapper to fix it
-
- * Makefile.drakxtools: fix boot freeze on hw change: initscript was
- running us with stdout
- redirected to /dev/null; just use a small sh wrapper to fix it
-
- * standalone/service_harddrake:
- - configurator got displayed
- - move timeout around configurator asking (still not 100% ok)
- time out after 200 seconds
- fix boot freeze on hw change: initscript was running us with stdout
- redirected to /dev/null; just use a small sh wrapper to fix it
-
- * drakxtools.spec: fix url
- add harddrake service wrapper
- really final changes
- final batch of changes for -3mdk ?
- fix boot freeze on hw change: initscript was running us with stdout
- redirected to /dev/null; just use a small sh wrapper to fix it
-
- * Makefile.config: add harddrake service wrapper to installed files
-
- * harddrake/ui.pm:
- - add channel: primary/slave for eide deivces
- - get rid of ->{set,get}_user_data
- ensure we don't mix scsi and pci devices
-
- * harddrake/bttv.pm: log only if options set
- typo fix
- only log explanations in standalone mode
-
- * share/po/Makefile: fake make so that its builtin rule to create file
- from file.sh doesn't
- nuke service_harddrake with it wrapper
-
-2002/07/08 daouda
-
- * standalone/drakbug:
- - detect package automatically when app is chosen
-
-2002/07/08 Pixel <pixel@mandrakesoft.com>
-
- * Makefile: create the list_modules symlink
- make test_pms should now work (was pb with list_modules.pm)
-
- * install_steps.pm, any.pm: mtools config so that "mdir a:" accesses the
- usb floppy if one is there
-
- * diskdrake/hd_gtk.pm: do not display "Clear all" (and the other per kind
- buttons) for the raid tab
-
- * install_steps_interactive.pm: in case the licence is refused, ask for
- confirmation
-
- * diskdrake/interactive.pm: make Clear_all work on a LVM VG
- make Clear_all remove partitions from raids
-
-2002/07/08 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/TODO: remove fixed stuff
-
- * Makefile.drakxtools: s/PHONY/.PHONY/
- - simplifications
- - harddrake support is complete
-
- * drakxtools.spec: update
- fix post: add start argument
- service changes batch for 2mdk
- rpmlint fixes
- parrallel build
- 1.1.8-2mdk
- - enhance descriptions
- - various spec clean
- split-up between harddrake and harddrake-ui
- complete changelog
- - obsoletes/provides libdetect-lst, libdetect-lst-devel, detect,
- detect-lst
- - don't restart harddrake on install
- - some stuff moved into Makefile.drakxtools
- - fix harddrake menu entry
- - fix build
-
- * harddrake/data.pm: cache @devices so that hw probe is only done once
-
- * standalone/harddrake2: no need to 'use strict' in "binary"
-
- * standalone/service_harddrake:
- - only work on start
- - add "please wait" message
- - really don't cry when no previous config
- skip configuration on firt run
- skip hw classes without configurator (which'll have a configurator
- after porting updfstab)
-
- * harddrake/ui.pm:
- - rehide "run config tool" button when it has been displayed in
- another hw class
- don't display "run config tool" button if no configurator availlable
- - center the main window
- - remove drakx decorations
- mice:
- - s/nbuttons/Number of buttons/
- - delete qw(MOUSETYPE XMOUSETYPE unsafe)
- don't delete info field in normal path
- - eide devices: split up info field into vendor and model fields
- - complete help
- hummm ... eide: 0->master, 1->slave :-(
- - remove save_report menu entry, this is done by service_harddrake
- - move $in declaration near where it's used
- eide hard disks : print master/slave for bus_location
-
-2002/07/08 daouda
-
- * Makefile.config:
- - add drakbug
-
- * drakxtools.spec:
- - add dir recursively
-
- * standalone/drakbug:
- - detect package automatically when app is chosen
- - standalone app
-
-2002/07/08 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/mount.c: small readability & size enhancement
-
-2002/07/08 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: in case the licence is refused, ask for
- confirmation
- help perl_checker
-
- * diskdrake/hd_gtk.pm: do not display "Clear all" (and the other per kind
- buttons) for the raid tab
-
- * diskdrake/interactive.pm: make Clear_all work on a LVM VG
- make Clear_all remove partitions from raids
-
- * Makefile: create the list_modules symlink
- make test_pms should now work (was pb with list_modules.pm)
-
-2002/07/08 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * harddrake/ui.pm:
- - remove save_report menu entry, this is done by service_harddrake
- - move $in declaration near where it's used
- eide hard disks : print master/slave for bus_location
- - remove dead stuff
- - comment some stuff
- minor simplication
- various cleanups:
- - move all harddrake modules to harddrake namespace
- - replace two use by require so that it's not done at compil time
- but at runtime
- - there was a missing $ in harddrake::ui.pm
-
- * harddrake/TODO: update todo list
-
- * install_steps_interactive.pm, standalone/draknet, harddrake/bttv.pm,
- standalone/harddrake2, standalone/service_harddrake, harddrake/data.pm:
- various cleanups:
- - move all harddrake modules to harddrake namespace
- - replace two use by require so that it's not done at compil time
- but at runtime
- - there was a missing $ in harddrake::ui.pm
-
- * drakxtools.spec:
- - some stuff moved into Makefile.drakxtools
- - fix harddrake menu entry
- - fix build
- fixes for missing files
- enhanced description
-
- * modules.pm:
- - s/snd-card/snd/
- - make some code clearer
-
- * Makefile.drakxtools:
- - simplifications
- - harddrake support is complete
-
- * scanner.pm: this doesn't need either "#!/usr/bin/perl" nor "use lib
- qw(/usr/lib/libDrakX);"
-
- * standalone/drakxtv:
- - fix options handling
- - use "perl -w"
- - s/bttv/harddrake::bttv/ due to recent changes
-
-2002/07/07 daouda
-
- * drakxtools.spec:
- - directory should exist before mv'ing things (mkdir
- %%buildroot%%_initrddir)
-
-2002/07/07 Pixel <pixel@mandrakesoft.com>
-
- * detect_devices.pm: smarter raidAutoStartRaidtab
- great new raidAutoStartRaidtab allowing to handle existing software
- raids
- even when RAID_AUTORUN is not supported by kernel (which is the case for
- us
- since md.o is a not builtin the kernel)
-
- * fsedit.pm: great new raidAutoStartRaidtab allowing to handle existing
- software raids
- even when RAID_AUTORUN is not supported by kernel (which is the case for
- us
- since md.o is a not builtin the kernel)
-
- * devices.pm: use c::total_sectors() instead of BLKGETSIZE
-
- * diskdrake/interactive.pm, raid.pm: ensure the raid is disactivated and
- marked dirty on any actions that destroy the raid
-
-2002/07/07 daouda
-
- * Makefile:
- - remove share/wizard.rc in DISTFILE
-
- * drakxtools.spec:
- - directory should exist before mv'ing things (mkdir
- %%buildroot%%_initrddir)
- - mv typo in %install section (titi sux)
-
-2002/07/07 Pixel <pixel@mandrakesoft.com>
-
- * detect_devices.pm: smarter raidAutoStartRaidtab
- great new raidAutoStartRaidtab allowing to handle existing software
- raids
- even when RAID_AUTORUN is not supported by kernel (which is the case for
- us
- since md.o is a not builtin the kernel)
- remove detect_devices::check (including the annoying log about no
- modules for the pci entry)
-
- * modules.pm: new "append_to_etc_modules" function
- remove detect_devices::check (including the annoying log about no
- modules for the pci entry)
-
- * fsedit.pm: great new raidAutoStartRaidtab allowing to handle existing
- software raids
- even when RAID_AUTORUN is not supported by kernel (which is the case for
- us
- since md.o is a not builtin the kernel)
-
- * any.pm: small regexp cleanup
-
- * fs.pm, partition_table.pm: for greater symmetry with smb, drop isNfs in
- favour of isThisFs('nfs', ...)
-
- * interactive_newt.pm: make the buttons work in all cases
- - workaround segfaults
- - ensure the perl values are set when calling the clicked_may_quit
- callback
-
- * devices.pm: use c::total_sectors() instead of BLKGETSIZE
-
- * diskdrake/interactive.pm, raid.pm: ensure the raid is disactivated and
- marked dirty on any actions that destroy the raid
-
-2002/07/06 Pixel <pixel@mandrakesoft.com>
-
- * any.pm (ask_users): the user name length must be <= 32
-
- * diskdrake/interactive.pm (as suggested by Alexander Skwar)
- - in interactive::check_type, check if the package (like jfsprogs) is
- installed
- - use interactive::check_type where usefull
- - cleanup
-
- * Makefile.config: standalone/drakbug doesn't exist! (why did deush add
- it???)
- it is standalone/harddrake2, not standalone/harddrake (poor deush must
- be loosing his brain :p)
-
- * diskdrake/hd_gtk.pm: s/check_type/diskdrake::interactive::check_type/
- - move diskdrake.rc from /etc/gtk to /usr/share/libDrakX
- - remove unused wizard.rc
- (as suggested by Alexander Skwar)
- - in interactive::check_type, check if the package (like jfsprogs) is
- installed
- - use interactive::check_type where usefull
- - cleanup
-
- * fsedit.pm: /root and /mnt must "remain within the root filesystem" (ie
- can't be used as mountpoints), dixit redhat
- (package_needed_for_partition_type): return the package needed for a
- partition type
- (check_type): cleanup
-
- * install_any.pm (setDefaultPackages): use
- fsedit::package_needed_for_partition_type to get things like jfsprogs
-
- * fs.pm: supermount now handles fs=auto, using it :)
-
- * Makefile.drakxtools, my_gtk.pm, share/wizard.rc, drakxtools.spec:
- - move diskdrake.rc from /etc/gtk to /usr/share/libDrakX
- - remove unused wizard.rc
-
-2002/07/06 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * Makefile.config: add the harddrake service which was missing
-
- * printer.pm: try to simplify
-
- * harddrake/ui.pm: simplify: use reverse
- - help system:
- - add an help entry in help menu;
- - begin to describe information fields
-
- - reformat license in about window
-
- - information frame (mostly fixing incoherency between various hw
- classes fields)
-
- - s/media type/media class/
-
- - s/info/Hardware id/
-
- - s/device/device file/
-
- - split description into manufacturer/description
-
- - eide devices:
-
- - rename bus as bus_location
-
- - set interface_type as bus
-
- - scsi devices:
-
- - set bus to SCSI
-
- - set bus_location to bus:id fields
-
- - don't print pci subids when non set
-
- - remove fields that were already used above (vendor id subvendor
- subid pci_bus pci_device pci_function)
-
- - no need to return window after program exit
-
- - print usage if needed
-
- - embed hardware tree in a "detected hardware" frame
-
- - cleanups:
-
- - rename widget2 as frame
-
- - remove dead commented code
-
- * drakxtools.spec: add harddrake2 service
-
- * standalone/icons/harddrake2/webcam.png,
- standalone/icons/harddrake2/harddrake.png,
- standalone/icons/harddrake2/keyboard.png,
- standalone/icons/harddrake2/ide_hd.png,
- standalone/icons/harddrake2/cable.png,
- standalone/icons/harddrake2/video.png,
- standalone/icons/harddrake2/tape.png,
- standalone/icons/harddrake2/joystick.png,
- standalone/icons/harddrake2/harddisk.png,
- standalone/icons/harddrake2/usb.png,
- standalone/icons/harddrake2/memory.png,
- standalone/icons/harddrake2/hw_network.png,
- standalone/icons/harddrake2/scsi_hd.png,
- standalone/icons/harddrake2/unknown.png,
- standalone/icons/harddrake2/floppy.png,
- standalone/icons/harddrake2/hw_printer.png,
- standalone/icons/harddrake2/scanner.png,
- standalone/icons/harddrake2/cd.png,
- standalone/icons/harddrake2/isdn.png,
- standalone/icons/harddrake2/tv.png,
- standalone/icons/harddrake2/sound.png,
- standalone/icons/harddrake2/scsi.png,
- standalone/icons/harddrake2/cpu.png,
- standalone/icons/harddrake2/hw_mouse.png,
- standalone/icons/harddrake2/modem.png,
- standalone/icons/harddrake2/K7.png: add harddrake2 icons
-
-2002/07/06 Pixel <pixel@mandrakesoft.com>
-
- * any.pm (ask_users): the user name length must be <= 32
-
- * commands.pm: adapt to new modprobe.pm
-
- * diskdrake/hd_gtk.pm:
- - move diskdrake.rc from /etc/gtk to /usr/share/libDrakX
- - remove unused wizard.rc
- (as suggested by Alexander Skwar)
- - in interactive::check_type, check if the package (like jfsprogs) is
- installed
- - use interactive::check_type where usefull
- - cleanup
-
- * diskdrake/interactive.pm (as suggested by Alexander Skwar)
- - in interactive::check_type, check if the package (like jfsprogs) is
- installed
- - use interactive::check_type where usefull
- - cleanup
- (Resize): resize2fs handles ext3 :)
-
- * install_any.pm (setDefaultPackages): use
- fsedit::package_needed_for_partition_type to get things like jfsprogs
- when merge_fstabs, handle in a different way mtab and fstab (or
- manualFstab)
- => this allows to force the type&options in manualFstab
-
- * fsedit.pm (package_needed_for_partition_type): return the package needed
- for a partition type
- (check_type): cleanup
-
- * docs/comparisons: various remarks about mandrake
-
- * partition_table_lvm_PV.pm: Allows people having PVs on unpartitioned
- disks to install
- (but no way to create such beasts)
-
- * Makefile.config: standalone/drakbug doesn't exist! (why did deush add
- it???)
- it is standalone/harddrake2, not standalone/harddrake (poor deush must
- be loosing his brain :p)
- add harddrake pm's
-
- * partition_table.pm: Allows people having PVs on unpartitioned disks to
- install
- (but no way to create such beasts)
- cleanup
-
- * fs.pm: supermount now handles fs=auto, using it :)
- when merge_fstabs, handle in a different way mtab and fstab (or
- manualFstab)
- => this allows to force the type&options in manualFstab
-
- * Makefile.drakxtools, my_gtk.pm, share/wizard.rc, drakxtools.spec:
- - move diskdrake.rc from /etc/gtk to /usr/share/libDrakX
- - remove unused wizard.rc
-
-2002/07/06 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/lsnetdrake: simplify
-
- * Makefile: add harddrake to DISTFILES
-
- * printer.pm: try to simplify
-
- * harddrake/TODO: add bits regarding eide and scsi
-
- * standalone/harddrake2: add missing 'use lib' due to harddrak::ui changes
-
- * harddrake/ui.pm: simplify: use reverse
- - help system:
- - add an help entry in help menu;
- - begin to describe information fields
-
- - reformat license in about window
-
- - information frame (mostly fixing incoherency between various hw
- classes fields)
-
- - s/media type/media class/
-
- - s/info/Hardware id/
-
- - s/device/device file/
-
- - split description into manufacturer/description
-
- - eide devices:
-
- - rename bus as bus_location
-
- - set interface_type as bus
-
- - scsi devices:
-
- - set bus to SCSI
-
- - set bus_location to bus:id fields
-
- - don't print pci subids when non set
-
- - remove fields that were already used above (vendor id subvendor
- subid pci_bus pci_device pci_function)
-
- - no need to return window after program exit
-
- - print usage if needed
-
- - embed hardware tree in a "detected hardware" frame
-
- - cleanups:
-
- - rename widget2 as frame
-
- - remove dead commented code
-
- * harddrake/data.pm: add a configurator for sound
-
- * standalone/icons/harddrake2/cable.png,
- standalone/icons/harddrake2/tape.png,
- standalone/icons/harddrake2/usb.png,
- standalone/icons/harddrake2/hw_network.png,
- standalone/icons/harddrake2/unknown.png,
- standalone/icons/harddrake2/hw_printer.png,
- standalone/icons/harddrake2/scanner.png,
- standalone/icons/harddrake2/isdn.png,
- standalone/icons/harddrake2/cd.png,
- standalone/icons/harddrake2/scsi.png,
- standalone/icons/harddrake2/hw_mouse.png,
- standalone/icons/harddrake2/K7.png,
- standalone/icons/harddrake2/webcam.png,
- standalone/icons/harddrake2/harddrake.png,
- standalone/icons/harddrake2/keyboard.png,
- standalone/icons/harddrake2/ide_hd.png,
- standalone/icons/harddrake2/harddisk.png,
- standalone/icons/harddrake2/joystick.png,
- standalone/icons/harddrake2/video.png,
- standalone/icons/harddrake2/memory.png,
- standalone/icons/harddrake2/scsi_hd.png,
- standalone/icons/harddrake2/floppy.png,
- standalone/icons/harddrake2/sound.png,
- standalone/icons/harddrake2/tv.png, standalone/icons/harddrake2/cpu.png,
- standalone/icons/harddrake2/modem.png: add harddrake2 icons
-
-2002/07/05 daouda
-
- * Makefile.config:
- - add harddrake drakbug drakTermServ to STANDALONEPMS_
-
- * drakxtools.spec:
- - snapshot
- - new entries:
- o harddrake2 : new hardware detection && configuration tool
- o drakbugreport: bug reporting tool a la Kde (not working!)
- o drakTermServ : configuration tool for diskless stations.
-
-2002/07/05 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm (prepare_write_fstab): for supermount, have "none" as the device
- (cleaner, and
- more coherent with the "supermount" script (tx to FredC))
-
-2002/07/05 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * install_steps_interactive.pm: minimize startup: only load
- harddrake::bttv if the user click on "tv
- card" field in the hw summary window
- use harddrake::bttv to let people configure their tv card if it's
- misdetected
-
- * harddrake/ui.pm: remove uneeded "#!/...", standalone, lib, ... (this is
- a module)
- POSIX is no more used too.
-
- * harddrake/bttv.pm: remove device test: there're only two harddrake::bttv
- users,
- install_steps_interactive.pm and drakxtv which both have already
- tested that a bttv managed tv card is there.
- - add more tv cards
- - enable users to select number of buffers for mmap()
- - better description for pll setting
-
- - add tooltips help for some entries
- tv cards list:
-
- - split multi-cards entries
-
- - reverse the hash (needed since now bttv card types are not
- anymore unique)
-
- - complete the list from various sources
-
- - use a tree to display the list, it's clearer now since it's
- splitted by vendors
-
- - longer message
- - remove uneeded stuff for modules ("#!/..", "use lib..", "use
- standalone", ...)
-
- - simplify bttv options managment:
-
- - use if_, thanks MDK::Common
-
- - s/mapn/map by using a hash at first
-
- - s/mapn{if}/map{if_}
-
- - don't read/write modules.conf here, drakx take care of that for us
-
- thus, the test program became:
-
- #!/usr/bin/perl
-
- use strict;
- use lib qw(/usr/lib/libDrakX);
-
- use standalone;
- use bttv;
- use interactive;
- use modules;
-
- modules::read_conf;
- bttv::config('interactive'->vnew());
- modules::write_conf;
- spec29: bttv configuration part of drakxtv.
- it can be used by:
-
- #!/usr/bin/perl
-
- use strict;
- use lib qw(/usr/lib/libDrakX);
-
- use standalone;
- use harddrake::bttv;
- use interactive;
-
- bttv::config('interactive'->vnew());
-
- * drakxtools.spec: fix typo
- fix dirs1/dirs2 mismatch
- - M-q descriptions
- - simplify file lists building
- - we can use several -f on one "%%files" line
-
- * standalone/drakxtv: if we're root and there's a tv card managed by bttv,
- offer to
- configure bttv trough harddrake::bttv
-
- * tools/cvslog2changelog.pl: typo fix
-
- * harddrake/data.pm: remove uneeded "#!/.." and "use lib"
-
-2002/07/05 François Pons <fpons@mandrakesoft.com>
-
- * Makefile:
- - handle /lib/i686 case
- - replace Mandrake/RPMS with Mandrake/RPMS*
-
-2002/07/05 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/pcmcia/cardmgr.c, mdk-stage1/pcmcia/lex_config.c,
- mdk-stage1/pcmcia/vg468.h, mdk-stage1/pcmcia/cardmgr.h,
- mdk-stage1/pcmcia/bulkmem.h, mdk-stage1/pcmcia/i82365.h,
- mdk-stage1/pcmcia/cirrus.h, mdk-stage1/pcmcia/config.h,
- mdk-stage1/pcmcia/driver_ops.h, mdk-stage1/pcmcia/version.h,
- mdk-stage1/pcmcia/cistpl.h, mdk-stage1/pcmcia/cs.h,
- mdk-stage1/pcmcia/Makefile, mdk-stage1/pcmcia/ds.h,
- mdk-stage1/pcmcia/pcmcia.h, mdk-stage1/pcmcia/cs_types.h,
- mdk-stage1/pcmcia/yacc_config.c, mdk-stage1/pcmcia/tcic.h,
- mdk-stage1/pcmcia/yacc_config.h, mdk-stage1/pcmcia/pcmcia_probe.c:
- pcmcia is now pcmcia_ (it was to begin with a clean branch of unmodified
- sources)
-
-2002/07/05 Pixel <pixel@mandrakesoft.com>
-
- * mdk-stage1/pci-resource/update-pci-ids.pl: make it work with "use
- strict"
- do not look at the mar files anymore, only use kernel/modules.pl (and so
- list_modules.pm)
-
- * diskdrake/interactive.pm: handle comments in fstab
-
- * fs.pm (merge_info_from_fstab): try to keep options from merged fstab IF
- the entry is for the same mountpoint AND the same device
- handle comments in fstab
-
- * share/rpmsrate: add gnupg in "4 SYSTEM", so that rpm do not *Require*
- gnupg, only suggest it very strongly :)
-
- * mdk-stage1/usb-resource/update-usb-ids.pl:
- - do not use mar files for the list of modules, use list_modules.pm
- via kernel/modules.pl instead
- - use read_pcitable to parse usbtable
-
-2002/07/05 Thierry Vignaud <tvignaud@mandrakesoft.com
-
- * harddrake/ui.pm: remove uneeded "#!/...", standalone, lib, ... (this is
- a module)
- POSIX is no more used too.
-
- * drakxtools.spec: fix typo
- fix dirs1/dirs2 mismatch
- - M-q descriptions
- - simplify file lists building
- - we can use several -f on one "%%files" line
- - add preliminary harddrake support
-
- - clean %post
-
- - bump version number
-
- * harddrake/bttv.pm:
- - remove uneeded stuff for modules ("#!/..", "use lib..", "use
- standalone", ...)
- - simplify bttv options managment:
-
- - use if_, thanks MDK::Common
-
- - s/mapn/map by using a hash at first
-
- - s/mapn{if}/map{if_}
-
- - don't read/write modules.conf here, drakx take care of that for us
-
- thus, the test program became:
-
- #!/usr/bin/perl
-
- use strict;
- use lib qw(/usr/lib/libDrakX);
-
- use standalone;
- use bttv;
- use interactive;
- use modules;
-
- modules::read_conf;
- bttv::config('interactive'->vnew());
- modules::write_conf;
- spec29: bttv configuration part of drakxtv.
- it can be used by:
-
- #!/usr/bin/perl
-
- use strict;
- use lib qw(/usr/lib/libDrakX);
-
- use standalone;
- use harddrake::bttv;
- use interactive;
-
- bttv::config('interactive'->vnew());
-
- * Makefile: don't use sed when not needed
-
- * install_steps_interactive.pm: minimize startup: only load
- harddrake::bttv if the user click on "tv
- card" field in the hw summary window
- use harddrake::bttv to let people configure their tv card if it's
- misdetected
-
- * harddrake/data.pm: remove uneeded "#!/.." and "use lib"
-
-2002/07/04 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm, install_steps_auto_install.pm,
- install2.pm, network/ethernet.pm, network/isdn.pm, commands.pm,
- printerdrake.pm, mouse.pm, network/netconnect.pm, install_any.pm,
- install_steps.pm, detect_devices.pm, bootloader.pm: adapt to new
- modules.pm
-
- * c/stuff.xs.pm: adapt to new ldetect
-
- * modules.pm: reworked, cleaned:
- - the list of modules is moved to kernel/list_modules.pm (and a few
- functions too)
- - new "add_probeall" function (similar to "add_alias")
- -> used for scsi_hostadapter and usb-interface
- - "load_multi" removed in favour of "load" which is now more powerful
- - load_thiskind renamed load_category
- - get_that_type renamed probe_category
- - %modules::drivers dropped (handled for list_modules)
- still more cleanup to come
-
- * rescue/make_rescue_img: adapt to the move all.modules ->
- kernel/all.modules and all.kernels -> kernel/all.kernels
-
- * modparm.pm: rework, cleanup, simplify and make it work
-
- * install2: create symlink list_modules.pm in current directory for
- testing purpose
-
- * Makefile: when building the tar for drakxtools, handle specially
- list_modules.pm
- adapt to the move all.modules -> kernel/all.modules and all.kernels ->
- kernel/all.kernels
-
- * mdk-stage1/pci-resource/update-pci-ids.pl: new directory "kernel"
- containing:
- - all.modules all.kernels update_kernel
- - part of perl-install/modules.pm now in kernel/list_modules.pm and
- kernel/modules.pl
- - update_kernel cleaned (it doesn't mention module names anymore, it
- is now in kernel/modules.pl)
- - cleanup Makefile
- - mdk-stage1 doesn't depend on perl-install anymore
- (more precisely mdk-stage1/pci-resource/update-pci-ids.pl)
-
- * any.pm: reworked & cleaned the kernel modules part
- - adapt to new modules.pm
- - adapt to new modparm.pm
- - renamed setup_thiskind to load_category
- - renamed setup_thiskind_backend to load_category_no_message
-
- * share/po/Makefile: make the "clean" rule less verbose
-
-2002/07/04 daouda
-
- * standalone/draknet:
- - don't display clear password
-
-2002/07/04 fcrozat
-
- * share/rpmsrate: Fix GNOME2 packages
- Install urw-fonts when installing XFree
-
-2002/07/04 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/tr.po: updated Turkish file
-
- * share/po/fr.po: updated French file
-
- * lang.pm: Changed some languages to defautl to utf-8
- removed X11_NOT_LOCALIZED (now Gnome2 fully supports right-to-left
- languages)
-
-2002/07/04 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm, install_steps_auto_install.pm,
- install2.pm, network/ethernet.pm, network/isdn.pm, commands.pm,
- printerdrake.pm, mouse.pm, network/netconnect.pm, install_any.pm,
- install_steps.pm, detect_devices.pm, bootloader.pm: adapt to new
- modules.pm
-
- * c/stuff.xs.pm: adapt to new ldetect
-
- * modules.pm: reworked, cleaned:
- - the list of modules is moved to kernel/list_modules.pm (and a few
- functions too)
- - new "add_probeall" function (similar to "add_alias")
- -> used for scsi_hostadapter and usb-interface
- - "load_multi" removed in favour of "load" which is now more powerful
- - load_thiskind renamed load_category
- - get_that_type renamed probe_category
- - %modules::drivers dropped (handled for list_modules)
- still more cleanup to come
-
- * getpkgs_deps, do_resize_fat: removed since unused
-
- * Makefile, rescue/make_rescue_img: adapt to the move all.modules ->
- kernel/all.modules and all.kernels -> kernel/all.kernels
-
- * modparm.pm: rework, cleanup, simplify and make it work
-
- * install2: create symlink list_modules.pm in current directory for
- testing purpose
-
- * mdk-stage1/pci-resource/update-pci-ids.pl: new directory "kernel"
- containing:
- - all.modules all.kernels update_kernel
- - part of perl-install/modules.pm now in kernel/list_modules.pm and
- kernel/modules.pl
- - update_kernel cleaned (it doesn't mention module names anymore, it
- is now in kernel/modules.pl)
- - cleanup Makefile
- - mdk-stage1 doesn't depend on perl-install anymore
- (more precisely mdk-stage1/pci-resource/update-pci-ids.pl)
-
- * tools/specific_arch: simplified using MDK::Common
-
- * any.pm: reworked & cleaned the kernel modules part
- - adapt to new modules.pm
- - adapt to new modparm.pm
- - renamed setup_thiskind to load_category
- - renamed setup_thiskind_backend to load_category_no_message
-
- * share/po/Makefile: make the "clean" rule less verbose
-
-2002/07/04 Thierry Vignaud <tvignaud@mandrakesoft.com
-
- * harddrake/TODO: add harddrake2 todo list
-
- * harddrake/data.pm: get rid of 'use vars'
- remove wait_message hack for printerdraker, better use class_discard
- harddrake2: "the return of the vengeance son"
- - harddrake/data.pm: the data structure
- - harddrake/ui.pm: the ui code
-
- - standalone/service_harddrake: the init.d service (which need a few
- polishing (timeout, ...)
-
- - standalone/harddrake2: the ui caller which need to be dadou/ln -fied
-
- * harddrake/ui.pm: don't stack signals on config buttons
- - remove no more used @pid_launched
- - better GUI reactivity: don't wait for config tool to complete, just
- "fork and forget" [(c) us air force] and refuse to run another
- config tool until the first one to complete
- print "Running $configurator ..." in status bar while running a config
- tool
- - POSIX is needed for POSIX::wait
- - move strict and standalone require at top
-
- - c is unused
-
- - comment exceptions in devices loop (ie skip classes without any
- devices or any detector
-
- - optimize away $pid
- fix move from harddrake.pm to harddrake/data.pm:
-
- - menu does appear
-
- - information fields are translated from raw to english again
- harddrake2: "the return of the vengeance son"
-
- - harddrake/data.pm: the data structure
-
- - harddrake/ui.pm: the ui code
-
- - standalone/service_harddrake: the init.d service (which need a few
- polishing (timeout, ...)
-
- - standalone/harddrake2: the ui caller which need to be dadou/ln -fied
-
- * detect_devices.pm: add tapes() for harddrake2
-
- * standalone/harddrake2, standalone/service_harddrake: harddrake2: "the
- return of the vengeance son"
- - harddrake/data.pm: the data structure
- - harddrake/ui.pm: the ui code
-
- - standalone/service_harddrake: the init.d service (which need a few
- polishing (timeout, ...)
-
- - standalone/harddrake2: the ui caller which need to be dadou/ln -fied
-
-2002/07/03 François Pons <fpons@mandrakesoft.com>
-
- * mdk-stage1/probing.c: fixed static definition when non static
- declaration (gcc limitation).
- added conditional code around network detection.
-
-2002/07/03 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/mar/mar-extract-only.c, mdk-stage1/minilibc.c,
- mdk-stage1/newt/newt.c, mdk-stage1/bzlib/bzlib.c,
- mdk-stage1/newt/listbox.c, mdk-stage1/newt-frontend.c,
- mdk-stage1/disk.c, mdk-stage1/modules.c, mdk-stage1/stage1.c,
- mdk-stage1/newt/checkboxtree.c, mdk-stage1/mar/mar-frontend.c,
- mdk-stage1/Makefile.common, mdk-stage1/url.c, mdk-stage1/newt/textbox.c,
- mdk-stage1/newt/grid.c, mdk-stage1/dhcp.c, mdk-stage1/init.c,
- mdk-stage1/automatic.c, mdk-stage1/newt/entry.c: compile with -W
-
-2002/07/02 daouda
-
- * my_gtk.pm:
- - fill a combo by default :
- gtkcombo_setpopdown_strings($combo_widget,@strings)
-
-2002/07/02 gbeauchesne
-
- * c/smp.c:
- - TODO: Update ia64 check with /proc/pal/cpuX ?
- - TODO: Update x86_64 check when SMP machines are actually available
- - Conditionalize compilation of main() with TEST macro
-
-2002/07/02 Pixel <pixel@mandrakesoft.com>
-
- * network/smb.pm: try harder to find the full list of servers available,
- using "smbclient -L" to
- check the workgroup masters
-
-2002/07/01 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake/smbnfs_gtk.pm (raw_hd_mount_point): nicer default mount point
-
-2002/06/28 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake/smbnfs_gtk.pm, network/smb.pm, network/smbnfs.pm:
- - add authentification in diskdrake --smb (esp. for windows NT)
- - use "credentials=" to put the passwords
- (ideas and investigations from Stew Benedict,
- integrated by Pixel, but need testing)
- Known bug: if you want to change the password when there are 2 entries
- in fstab
- using the same username=/password=, writing the credentials is done in
- random order,
- => you've got one chance in 2 that the password is changed :-(
-
- * fs.pm:
- - add authentification in diskdrake --smb (esp. for windows NT)
- - use "credentials=" to put the passwords
- (ideas and investigations from Stew Benedict,
- integrated by Pixel, but need testing)
- Known bug: if you want to change the password when there are 2 entries
- in fstab
- using the same username=/password=, writing the credentials is done in
- random order,
- => you've got one chance in 2 that the password is changed :-(
- handle spaces in mount points and devices (using \040)
-
-2002/06/27 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakTermServ, standalone/icons/drakTS.620x57.png: Add
- drakTermServ application and icon.
-
-2002/06/26 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm, install_steps_interactive.pm, install2.pm: ensure
- licence step is asked in any case (ie. even when selectLanguage is
- automatic)
-
- * any.pm: "my" variables where needed
-
-2002/06/25 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/tr.po, share/po/ar.po: Updated po files
-
-2002/06/19 Frederic Lepied <flepied@mandrakesoft.com>
-
- * Makefile: corrected rules to make distributable rpms.
-
-2002/06/19 François Pons <fpons@mandrakesoft.com>
-
- * patch/patch-oem-hp.pl: added patch-oem.pl file used to generate HP
- Mandrake Linux 8.2.
-
-2002/06/19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * modules.pm: remove a few drivers so that hd.img and network.img are
- possible with latest BOOT kernel
-
-2002/06/19 Pixel <pixel@mandrakesoft.com>
-
- * standalone/fileshareset: use "wide links = no" for exporting via samba
- (thanks to Jan Schäfer)
-
- * fs.pm: mounting of ntfs after install really mount the partition (thanks
- to Buchan Milne)
-
-2002/06/18 daouda
-
- * my_gtk.pm:
- - add gtkset_text, gtkprepend_text, gtkappend_text for entry widgets
-
-2002/06/18 Frederic Lepied <flepied@mandrakesoft.com>
-
- * Makefile.drakxtools: manage security subdir.
-
- * Makefile: added targets to build test and distribution rpms and srpms
- (localrpm,
- localsrpm, rpm, srpm).
- added security to the installed directories
-
- * pam.net_monitor, diskdrake/diskdrake.html, drakxtools.spec,
- apps.net_monitor: ripped from the srpm
-
-2002/06/18 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hu.po: updated Hungarian file
-
-2002/06/17 cbelisle
-
- * standalone/draksec: added server, user and network advanced options
-
- * any.pm: draksec: customize entries for each options (lists, checkboxes
- and text boxes)
- Added user,server and network advanced options
-
- * security/msec.pm:
- - Customize entries for each options (checkboxes, text boxes and
- lists)
- added network, server and user advanced options
-
-2002/06/15 alus
-
- * share/po/pl.po: updates
-
-2002/06/13 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm: Catalan doesn't have French fallback anymore
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
- share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
- share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
- share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/no.po, share/po/fi.po, share/po/th.po,
- share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
- share/po/sl.po, share/po/mt.po, share/po/vi.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
- share/po/zh_TW.po, share/po/cs.po, share/po/af.po: updated pot file
-
-2002/06/11 Pixel <pixel@mandrakesoft.com>
-
- * fsedit.pm: added /tmp in @suggestions_mntpoints (as suggested by
- Philippe Coulon)
-
-2002/06/10 cbelisle
-
- * standalone/draksec: Add an entry for the security user email
-
- * security/msec.pm: Initial commit
-
- * any.pm: Add security user email entry in draksec
-
-2002/06/10 daouda
-
- * network/tools.pm:
- - choose country according to timezone.
-
-2002/06/10 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * tools/syncrpms: english fix
-
-2002/06/10 Pixel <pixel@mandrakesoft.com>
-
- * c/stuff.xs.pm: s/class/class_/ for ldetect 0.4
-
-2002/06/07 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * timezone.pm: remove duplicate entry in ntp_servers
-
- * interactive_gtk.pm, my_gtk.pm: split ask_browse_tree_info from
- interactive_gtk
- to my_gtk between widgets creation and real
- stuff so that we can now call it with widgets
- places differently
-
-2002/06/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/tr.po: updated po file
-
-2002/06/05 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm: adapt to new lilo
-
-2002/06/05 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm: use -ff for mkreiserfs, do not use -q for mkreiserfs
-
- * bootloader.pm: adapt to new lilo
-
-2002/06/05 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm: use -ff for mkreiserfs, do not use -q for mkreiserfs
-
-2002/06/03 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/stage1.c, install_steps_interactive.pm, any.pm,
- install_steps_gtk.pm, mdk-stage1/network.c, mdk-stage1/disk.c: english
- fixes thx to vincent meyer
-
-2002/06/03 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: have the /root/drakx/auto_install.cfg.pl replay style
- instead of weird style
- with clearall unset & auto_allocate set
-
-2002/05/29 alus
-
- * share/po/pl.po: little fixes
-
-2002/05/28 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * interactive_gtk.pm: remove typo fix when it's not a fix :-)
- small typo
- remove typo (hopefully really a typo ;p)
-
- * any.pm: be a bit more polite
-
-2002/05/27 François Pons <fpons@mandrakesoft.com>
-
- * install2.pm: make sure patch is always read after defcfg to take
- precedance.
-
-2002/05/27 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm: have usb-interface1 for ehci-hcd
-
-2002/05/24 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * Xconfigurator.pm: dams fixes a bug in the install :-)
-
-2002/05/21 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: xtraceroute needs 3d
-
-2002/05/15 alus
-
- * share/po/Changelog: info about polish translation
-
-2002/05/14 alus
-
- * share/po/pl.po: polish finished
- updated polish translation
- polish updated to near finished. Fuzzy removed and checked
-
-2002/05/14 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * docs/HACKING: libncurses* also for the sucking neuneux
-
-2002/05/14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pl.po, share/po/id.po: updated po file
-
-2002/05/13 alus
-
- * share/po/pl.po: mostly finished polish translation.!!
-
-2002/05/13 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * docs/HACKING: libbzip2* and more explanations about failing compilation
-
- * mdk-stage1/Makefile, mdk-stage1/ppp/pppd/ipcp.c, mdk-stage1/probing.c:
- adapt to gcc-3.1
-
-2002/05/02 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm: Put back xcin as default XIM for zh_TW.Big5
-
- * share/po/eu.po: small corrections
-
-2002/04/29 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/usb-resource/update-usb-ids.pl: support USB2 controllers as
- well
-
-2002/04/29 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/wa.po, share/po/hu.po: updated po files
-
-2002/04/26 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: fixed some machine with two present i830 CGC but only
- one in reality.
-
- * detect_devices.pm: updated usbMice to take care of device declared as
- Mouse:USB in usbtable (was
- not the case !)
-
-2002/04/25 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
- share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
- share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
- share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/no.po, share/po/fi.po, share/po/th.po,
- share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
- share/po/sl.po, share/po/mt.po, share/po/vi.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
- share/po/zh_TW.po, share/po/cs.po, share/po/af.po: updated pot file
-
-2002/04/23 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * bootlook.pm: a few english fixes
-
- * any.pm: fixes
- english fixes from v meyer
- a few english fixes thx to vincent meyer
-
-2002/04/19 alus
-
- * share/po/pl.po: It's only about 100 entries to the end
-
-2002/04/19 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/nl.po: updated Dutch file
-
- * share/po/hu.po: updated po file
-
-2002/04/18 alus
-
- * share/po/pl.po: 3 more long messages
- one entry
- stil working....
-
-2002/04/17 alus
-
- * share/po/pl.po: Mostly finished polish translation
- translations, fixes etc...
-
-2002/04/17 François Pons <fpons@mandrakesoft.com>
-
- * tools/oem-prepare: final candidate.
-
- * rescue/tree/etc/oem: final candidate.
- add gcc-cpp to oem install.
-
-2002/04/16 alus
-
- * share/po/pl.po: still working
- Few fixes
- Updated translation. Many strings is not yet translated...
-
-2002/04/16 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: sync with oem-prepare
- fixed stupid error.
- forget packdrake module invocation.
- fixed to support non standard rpm filename.
-
- * tools/oem-prepare: add gcc-cpp to always installed.
- disable unselection of some package (gmc, all gcc3.0 stuff).
-
-2002/04/16 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: only main version of automake
-
-2002/04/16 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/nl.po: updated po file
-
-2002/04/16 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: handle "Cancel" on NIS / LDAP server
- dialog box
-
-2002/04/15 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: ipchains now conflicts with iptables
-
-2002/04/15 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/eu.po: Another small fix
- Small corrections
-
-2002/04/13 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ro.po: merged with drakfloppy strings
-
-2002/04/11 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/mt.po: updated Maltese file
-
-2002/04/10 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/eu.po: small typo correction
-
-2002/04/10 warly
-
- * share/rpmsrate: autofs -> 2
-
-2002/04/09 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw: time to remove ipchains/2.2 stuff since now ipchains
- and iptables
- packages conflict
-
-2002/04/09 Pixel <pixel@mandrakesoft.com>
-
- * partition_table_dos.pm, partition_table_gpt.pm,
- partition_table_empty.pm, partition_table_bsd.pm,
- partition_table_sun.pm, partition_table_mac.pm: nicer debug "bag magic"
- error message (thanks to Brian J. Murrell)
-
-2002/04/08 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: fixed a bunch of things
-
- * install_steps_interactive.pm, install_interactive.pm, network/isdn.pm,
- partition_table.pm, install_steps_gtk.pm, Xconfigurator.pm,
- printerdrake.pm, network/tools.pm, diskdrake/interactive.pm,
- network/netconnect.pm, fsedit.pm, diskdrake/removable_gtk.pm,
- network/network.pm, printer.pm, interactive_stdio.pm: fix a few english
- strings
-
-2002/04/08 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
- share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
- share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
- share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/no.po, share/po/fi.po, share/po/th.po,
- share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
- share/po/sl.po, share/po/mt.po, share/po/vi.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
- share/po/zh_TW.po, share/po/cs.po, share/po/af.po: merged with
- drakfloppy strings
-
-2002/04/07 Yves Duret <yduret@mandrakesoft.com>
-
- * standalone/drakfloppy: moving from his own rpm to drakxtools
-
- * Makefile.config: add drakfloppy to STANDALONEPMS_
-
-2002/04/04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * c/Makefile.PL: rpmlib 4.0.4 now also needs libpopt
-
-2002/04/04 sdupont
-
- * standalone/drakbackup: please yduret, do not commit these changes on cvs
- before to test it.
- you can say "bugs fixes" only if you have corrected some errors but not
- if you create it!
- the backup on cd was disabled because the backend is not available for
- moment.
-
- * standalone/drakfont: remove uninteresting yduret changes,
- would it be possible to know what are your "bugs fixies" ?
- to yduret: I'm the creator of this program so please do not remove my
- changes.
-
-2002/06/05 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm: use -ff for mkreiserfs, do not use -q for mkreiserfs
-
-2002/06/03 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/stage1.c, install_steps_interactive.pm, any.pm,
- install_steps_gtk.pm, mdk-stage1/network.c, mdk-stage1/disk.c: english
- fixes thx to vincent meyer
-
-2002/06/03 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: have the /root/drakx/auto_install.cfg.pl replay style
- instead of weird style
- with clearall unset & auto_allocate set
-
-2002/05/29 alus
-
- * share/po/pl.po: little fixes
-
-2002/05/28 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * interactive_gtk.pm: remove typo fix when it's not a fix :-)
- small typo
- remove typo (hopefully really a typo ;p)
-
- * any.pm: be a bit more polite
-
-2002/05/27 François Pons <fpons@mandrakesoft.com>
-
- * install2.pm: make sure patch is always read after defcfg to take
- precedance.
-
-2002/05/27 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm: have usb-interface1 for ehci-hcd
-
-2002/05/24 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * Xconfigurator.pm: dams fixes a bug in the install :-)
-
-2002/05/21 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: xtraceroute needs 3d
-
-2002/05/15 alus
-
- * share/po/Changelog: info about polish translation
-
-2002/05/14 alus
-
- * share/po/pl.po: polish finished
- updated polish translation
- polish updated to near finished. Fuzzy removed and checked
-
-2002/05/14 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * docs/HACKING: libncurses* also for the sucking neuneux
-
-2002/05/14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pl.po, share/po/id.po: updated po file
-
-2002/05/13 alus
-
- * share/po/pl.po: mostly finished polish translation.!!
-
-2002/05/13 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * docs/HACKING: libbzip2* and more explanations about failing compilation
-
- * mdk-stage1/Makefile, mdk-stage1/probing.c: adapt to gcc-3.1
-
-2002/05/02 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm: Put back xcin as default XIM for zh_TW.Big5
-
- * share/po/eu.po: small corrections
-
-2002/04/29 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/wa.po, share/po/hu.po: updated po files
-
-2002/04/26 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: fixed some machine with two present i830 CGC but only
- one in reality.
-
- * detect_devices.pm: updated usbMice to take care of device declared as
- Mouse:USB in usbtable (was
- not the case !)
-
-2002/04/25 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
- share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
- share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
- share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/no.po, share/po/fi.po, share/po/th.po,
- share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
- share/po/sl.po, share/po/mt.po, share/po/vi.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
- share/po/zh_TW.po, share/po/cs.po, share/po/af.po: updated pot file
-
-2002/04/23 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * bootlook.pm: a few english fixes
-
- * any.pm: fixes
- english fixes from v meyer
- a few english fixes thx to vincent meyer
-
-2002/04/19 alus
-
- * share/po/pl.po: It's only about 100 entries to the end
-
-2002/04/19 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/nl.po: updated Dutch file
-
- * share/po/hu.po: updated po file
-
-2002/04/18 alus
-
- * share/po/pl.po: 3 more long messages
- one entry
- stil working....
-
-2002/04/17 alus
-
- * share/po/pl.po: Mostly finished polish translation
- translations, fixes etc...
-
-2002/04/16 alus
-
- * share/po/pl.po: still working
- Few fixes
- Updated translation. Many strings is not yet translated...
-
-2002/04/16 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: only main version of automake
-
-2002/04/16 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/nl.po: updated po file
-
-2002/04/16 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: handle "Cancel" on NIS / LDAP server
- dialog box
-
-2002/04/15 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: ipchains now conflicts with iptables
-
-2002/04/15 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/eu.po: Another small fix
- Small corrections
-
-2002/04/13 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ro.po: merged with drakfloppy strings
-
-2002/04/11 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/mt.po: updated Maltese file
-
-2002/04/10 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/eu.po: small typo correction
-
-2002/04/10 warly
-
- * share/rpmsrate: autofs -> 2
-
-2002/04/09 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw: time to remove ipchains/2.2 stuff since now ipchains
- and iptables
- packages conflict
-
-2002/04/09 Pixel <pixel@mandrakesoft.com>
-
- * partition_table_dos.pm, partition_table_gpt.pm,
- partition_table_empty.pm, partition_table_bsd.pm,
- partition_table_sun.pm, partition_table_mac.pm: nicer debug "bag magic"
- error message (thanks to Brian J. Murrell)
-
-2002/04/08 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: fixed a bunch of things
-
- * install_steps_interactive.pm, install_interactive.pm, network/isdn.pm,
- partition_table.pm, install_steps_gtk.pm, Xconfigurator.pm,
- printerdrake.pm, network/tools.pm, diskdrake/interactive.pm,
- network/netconnect.pm, fsedit.pm, diskdrake/removable_gtk.pm,
- network/network.pm, printer.pm, interactive_stdio.pm: fix a few english
- strings
-
-2002/04/08 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
- share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
- share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
- share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/no.po, share/po/fi.po, share/po/th.po,
- share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
- share/po/sl.po, share/po/mt.po, share/po/vi.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
- share/po/zh_TW.po, share/po/cs.po, share/po/af.po: merged with
- drakfloppy strings
-
-2002/04/07 Yves Duret <yduret@mandrakesoft.com>
-
- * standalone/drakfloppy: moving from his own rpm to drakxtools
-
- * Makefile.config: add drakfloppy to STANDALONEPMS_
-
-2002/04/04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * c/Makefile.PL: rpmlib 4.0.4 now also needs libpopt
-
-2002/04/04 sdupont
-
- * standalone/drakbackup: please yduret, do not commit these changes on cvs
- before to test it.
- you can say "bugs fixes" only if you have corrected some errors but not
- if you create it!
- the backup on cd was disabled because the backend is not available for
- moment.
-
- * standalone/drakfont: remove uninteresting yduret changes,
- would it be possible to know what are your "bugs fixies" ?
- to yduret: I'm the creator of this program so please do not remove my
- changes.
-
-2002/04/04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * c/Makefile.PL: rpmlib 4.0.4 now also needs libpopt
-
-2002/04/04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * c/Makefile.PL: rpmlib 4.0.4 now also needs libpopt
-
-2002/04/03 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: setting /etc/sysconfig/msec for chkconfig which
- doesn't use $ENV{SECURE_LEVEL} anymore
-
-2002/04/03 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: setting /etc/sysconfig/msec for chkconfig which
- doesn't use $ENV{SECURE_LEVEL} anymore
-
-2002/04/02 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm: do not have "root=" with no root (needed for memtest)
- (thanks to Borsenkow Andrej)
-
- * share/rpmsrate: add tmpwatch (since it is not mandatory any more)
-
-2002/03/30 Yves Duret <yduret@mandrakesoft.com>
-
- * standalone/drakbackup, standalone/drakfont: bugs fixes, code clean up,
- more mdkish..
-
-2002/03/26 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: Fixed several problems related to HP
- multi-function devices:
- - Parallel multi-function devices worked only on the first (onboard)
- parallel
- port.
- - HP LaserJet 2200 needs HPOJ for printing via USB.
- - For the HP OfficeJet D series the scanning instructions were not
- shown.
- - HPOJ does not work with HP PhotoSmart 10xx, 11xx, and 12xx.
-
-2002/03/22 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm: cleaned gtkpowerpack
-
-2002/03/21 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_any.pm: use /root rather than /tmp for some temp files (security
- suxx)
-
-2002/03/20 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * rescue/list: rpm 4.0.4
-
- * mdk-stage1/network.c: don't save DHCP_HOSTNAME if the value is void
-
-2002/03/20 sdupont
-
- * standalone/drakfont: fixing problems
- exchanging: ttmkfdir by /usr/X11R6/bin/mkttfdir
- which generate correct fonts.dir
-
- * standalone/drakbackup: remove backup on cd
-
-2002/03/20 Thierry Vignaud <tvignaud@mandrakesoft.com
-
- * standalone/drakxtv: use log for what is not related to explanations
-
-2002/03/19 François Pons <fpons@mandrakesoft.com>
-
- * tools/updatehdlist: take care of commercial medium (not syncable).
-
-2002/03/19 Thierry Vignaud <tvignaud@mandrakesoft.com
-
- * standalone/drakxtv:
- - default tv norm is pal rather than ntsc (because of alphabetical
- sort) since it's the most used tv norm
- - figure out tv norm & country (aka frequency table) from locales
-
- - add a hash based on lang in order to do this
-
- - add --no-guess if one doesn't want drakxtv to automagically guess tv
- norm and geographic area through locales (lang.pm)
-
- - log with standalone::explanations:
-
- - guessed values from locales: language, tv norm and country
-
- - runned command to scan for tv channels
-
- - ~/.xawtv creation
-
-
- - s/bcast/broadcast/ in displayed messages
-
- - add -h and --help support
-
-2002/03/18 dam's <damien@mandrakesoft.com>
-
- * install_gtk.pm, mouse.pm, my_gtk.pm: corrected create_xpm API
-
-2002/03/18 François Pons <fpons@mandrakesoft.com>
-
- * tools/oem-prepare: fixed to support rpm filename incoherent to standard
- naming for commercial
- packages (commercial are *really* shit (almost, for the hope) all the
- time ?)
-
-2002/03/16 dam's <damien@mandrakesoft.com>
-
- * network/ethernet.pm: we now consider dhcp provide GATEWAY and internet
- connection.
-
-2002/03/16 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ko.po, share/po/ar.po: updated po file
-
-2002/03/16 Pixel <pixel@mandrakesoft.com>
-
- * network/ethernet.pm: small cleanup on untested code (need testing:)
-
-2002/03/16 dam's <damien@mandrakesoft.com>
-
- * network/ethernet.pm: we now consider dhcp provide GATEWAY and internet
- connection.
-
-2002/03/16 Pixel <pixel@mandrakesoft.com>
-
- * network/ethernet.pm: small cleanup on untested code (need testing:)
-
-2002/03/15 fabman
-
- * share/po/es.po: updated bad lilo/grub/yaboot translation
- updated spanish translations
-
-2002/03/15 François Pons <fpons@mandrakesoft.com>
-
- * bootloader.pm: force mkinitrd *really* for bootsplash.
- force initrd regeneration for oem on some case (maybe the cause of
- bootsplash
- perturbation, as maintainer don't even known why it is running correctly
- :-)
-
- * pkgs.pm: do not try to get synthesis if hdlist is available as an handle
- on file (typical
- for updates).
-
- * share/rpmsrate: remove doublon on NVIDIA_nforce.
- update to 6mdk for NVIDIA_nforce*
-
-2002/03/15 Pixel <pixel@mandrakesoft.com>
-
- * share/po/fr.po: yet again add some dropped entities from drakx-help.xml
- add the dropped &linux-mandrake; &mandrake-linux; and a few &os-linux;
-
- * install_steps_interactive.pm:
- - remove obsolete code
- - the result is to use directly $availableC instead $size2install
- which was min($availableC, $max_size)
-
-2002/03/15 dam's <damien@mandrakesoft.com>
-
- * share/po/ja.po: reverted ' \n' from pablo because I managed to correct
- the way we wrap for the advertising
-
- * install_steps_gtk.pm: submitting widget instead of style (style/font
- initialization bug from gtk
-
- * my_gtk.pm: corrected get_text_coord : widget instead of style, and
- handling of ugly language (/ja|zh/)
-
-2002/03/15 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: do not try to get synthesis if hdlist is available as an handle
- on file (typical
- for updates).
-
- * rescue/tree/etc/oem: update lang according to lang.pm of 8.2 (remove
- @euro appended for 8.1).
-
-2002/03/15 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * keyboard.pm: added xx_YY -> keyboard lines in addition of xx -> keyboard
- ones
-
-2002/03/15 Pixel <pixel@mandrakesoft.com>
-
- * share/po/fr.po: yet again add some dropped entities from drakx-help.xml
- add the dropped &linux-mandrake; &mandrake-linux; and a few &os-linux;
- s/Linux Mandrake/Mandrake Linux/ (from the drakx-help.xml not merged)
-
- * keyboard.pm (unpack_keyboards): return undef on error
-
-2002/03/15 dam's <damien@mandrakesoft.com>
-
- * share/po/ja.po: reverted ' \n' from pablo because I managed to correct
- the way we wrap for the advertising
-
- * install_steps_gtk.pm: submitting widget instead of style (style/font
- initialization bug from gtk
-
- * my_gtk.pm: corrected get_text_coord : widget instead of style, and
- handling of ugly language (/ja|zh/)
-
-2002/03/15 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: update lang according to lang.pm of 8.2 (remove
- @euro appended for 8.1).
-
-2002/03/15 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * keyboard.pm: added xx_YY -> keyboard lines in addition of xx -> keyboard
- ones
-
-2002/03/15 Pixel <pixel@mandrakesoft.com>
-
- * share/po/fr.po: s/Linux Mandrake/Mandrake Linux/ (from the
- drakx-help.xml not merged)
-
- * keyboard.pm (unpack_keyboards): return undef on error
-
-2002/03/15 dam's <damien@mandrakesoft.com>
-
- * share/po/ja.po: reverted ' \n' from pablo because I managed to correct
- the way we wrap for the advertising
-
- * install_steps_gtk.pm: submitting widget instead of style (style/font
- initialization bug from gtk
-
- * my_gtk.pm: corrected get_text_coord : widget instead of style, and
- handling of ugly language (/ja|zh/)
-
-2002/03/15 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: update lang according to lang.pm of 8.2 (remove
- @euro appended for 8.1).
-
-2002/03/15 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * keyboard.pm: added xx_YY -> keyboard lines in addition of xx -> keyboard
- ones
-
-2002/03/15 Pixel <pixel@mandrakesoft.com>
-
- * share/po/fr.po: s/Linux Mandrake/Mandrake Linux/ (from the
- drakx-help.xml not merged)
-
- * keyboard.pm (unpack_keyboards): return undef on error
-
-2002/03/14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ja.po: updated po file
-
-2002/03/14 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakxtv: english
-
-2002/03/14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hr.po, share/po/da.po, share/po/no.po: updated po files
-
- * share/po/eu.po: updated po file
-
- * lang.pm: changed LANGUAGE for basque
-
- * share/po/ja.po: added \n in advertising
-
-2002/03/14 Pixel <pixel@mandrakesoft.com>
-
- * share/rpmsrate: CHARSET"iso-8859-1" and CHARSET"iso-8859-15" is no good
- for english which has CHARSET"C", adding it
-
- * share/rpmsrate.server: obsolete
-
-2002/03/14 Thierry Vignaud <tvignaud@mandrakesoft.com
-
- * standalone/drakxtv:
- - add SECAM to france description to ease user comprehension
- - remove unused variables
- - revert gc & dam's (also known as the usual suckers) garbage
- who'ven't the hardware to test:
-
- - explain in source why we don't try to install xawtv (see below)
-
- - just display a message if xawtv isn't installed
- since drakx should have installed it
-
- - let it be runned as root again (how many times i'm
- supposed to restore this behaviour)
-
- - retest with a tv card
-
- - use %ENV rather than relying on shell ~ expansion
-
- - if tv card wasn't detected, ask the user to spam us
-
- - factorize $in->exit() out of scan4tvchannels()
-
- - add to TODO list the possibility to install xawtv if needed
-
- - check scantv return value and display an error message
-
- - also if the wrapper was runned on console, display a nice
- message saying one can now run xawtv under X11
-
-2002/03/14 warly
-
- * share/rpmsrate: add commercial apps
-
-2002/03/14 Yves Duret <yduret@mandrakesoft.com>
-
- * standalone/logdrake: fix some bug
- fix * bug in field matching/ not matching
-
-2002/03/13 dam's <damien@mandrakesoft.com>
-
- * share/logo-mandrake.png: new gfx
-
-2002/03/13 François Pons <fpons@mandrakesoft.com>
-
- * tools/oem-prepare: sync with oem (removed mach32 server).
- sync with oem.
- remove bzflag.
- synced with oem script.
-
- * rescue/tree/etc/oem: remove Mach32 XF3.3.6 server too.
- remove Mach8 and Mono driver for oem only.
- remove bzflag.
- fixed closure selection on sub groups (like 3D),
- moved some big package out of oem,
- minor fixes.
-
-2002/03/13 dam's <damien@mandrakesoft.com>
-
- * share/logo-mandrake.png: new gfx
-
-2002/03/13 François Pons <fpons@mandrakesoft.com>
-
- * tools/oem-prepare: sync with oem (removed mach32 server).
- sync with oem.
- remove bzflag.
- synced with oem script.
-
- * rescue/tree/etc/oem: remove Mach32 XF3.3.6 server too.
- remove Mach8 and Mono driver for oem only.
- remove bzflag.
- fixed closure selection on sub groups (like 3D),
- moved some big package out of oem,
- minor fixes.
-
-2002/03/13 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/cs.po, share/po/eu.po: updated po files
-
-2002/03/13 warly
-
- * share/rpmsrate: add aspell-fr and en for gabber require
-
-2002/03/13 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: fixed closure selection on sub groups (like 3D),
- moved some big package out of oem,
- minor fixes.
-
- * tools/oem-prepare: synced with oem script.
-
-2002/03/13 gbeauchesne
-
- * share/rpmsrate:
- - Add openoffice with weight = 2
-
-2002/03/13 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sv.po, share/po/vi.po, share/po/cs.po, share/po/hu.po,
- share/po/eu.po: updated po files
-
- * lang.pm: small console font changes
- set default console fotns for latin1/0 to lat1-16 and lat0-16;
- the font lat0-sun16 is missing some chars of iso-8859-1/15 !
-
-2002/03/13 Pixel <pixel@mandrakesoft.com>
-
- * pkgs.pm: add gcc and gcc-c++ in @preferred
-
-2002/03/13 warly
-
- * share/rpmsrate: add aspell-fr and en for gabber require
-
-2002/03/12 dam's <damien@mandrakesoft.com>
-
- * network/network.pm: onboot option only in expert mode
- corrected domainname bug; added onboot option
-
-2002/03/12 dam's <damien@mandrakesoft.com>
-
- * standalone/drakbackup, standalone/drakfont: minor bug correction
-
- * standalone/net_monitor: greater timeout
-
- * network/tools.pm, network/netconnect.pm: changed timeout for testing
- internet connection
-
-2002/03/12 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: remove synthesis if not found (filesize is 0)
-
- * Xconfigurator.pm: avoid Utah GLX only if > 800MB, not if <= 800MB (!)
-
- * install_any.pm: added fix to support update hdlist renaming (ie hdlist
- of update are always hdlist.cz).
- remove old synthesis file, to make sure gzip can build a new one.
-
- * share/rpmsrate: added nforce support (hack by adding kernel version
- inside)
-
-2002/03/12 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/da.po: updated Danish file
-
- * share/po/ga.po: fixed email address
-
- * share/po/zh_TW.po: updated po file
-
-2002/03/12 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm, bootloader.pm: don't have "quiet" boot in the server
- meta_class
-
- * pkgs.pm: "fam" is not a naughtyServers
- remove the old "boa" comment
- adapt naughtyServers for 8.2
-
-2002/03/11 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: a few missing translations
-
-2002/03/11 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt.po, share/po/ga.po, share/po/de.po, share/po/az.po,
- share/po/pt_BR.po, share/po/nl.po, share/po/ja.po, share/po/id.po,
- share/po/ar.po, share/po/mt.po, share/po/eo.po, share/po/da.po: updated
- po files
-
- * share/po/eu.po, share/po/it.po: updated po files
- merged with new strings from manuals
-
- * share/po/DrakX.pot, share/po/fr.po: merged with new strings from manuals
-
- * share/po/be.po, share/po/bg.po, share/po/et.po, share/po/hr.po,
- share/po/ko.po, share/po/is.po, share/po/pl.po, share/po/no.po,
- share/po/fi.po, share/po/el.po, share/po/lt.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/bs.po,
- share/po/cs.po, share/po/af.po: updated po files (finished merging with
- manual strings)
- updated po files
-
- * share/po/hu.po: updated po files
- updated po files
-
- * share/po/cy.po: updated po file
- updated po files
-
- * share/po/es.po: updated Spanish
-
- * share/po/sp.po, share/po/zh_CN.po, share/po/sr.po, share/po/tr.po,
- share/po/ru.po, share/po/wa.po, share/po/sv.po, share/po/th.po,
- share/po/sk.po, share/po/sl.po, share/po/vi.po, share/po/uk.po,
- share/po/ro.po, share/po/zh_TW.po: updated po files (finished merging
- with manual strings)
-
-2002/03/11 dam's <damien@mandrakesoft.com>
-
- * Makefile.config: added drakproxy
-
- * standalone/drakxtv: added embedded mode
-
-2002/03/11 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_gtk.pm: for updates, make tree as flat instead in order to
- see all packages.
-
-2002/03/11 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: webmin: 3
-
- * standalone/drakxtv:
- - install xawtv when necessary instead of
- telling people to use urpmi (titi sucks)
- - prints out a message when no tv card
- has been detected
-
- * share/po/fr.po: small ortograf
-
-2002/03/11 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/fr.po, share/po/it.po, share/po/eu.po: merged with new strings
- from manuals
-
- * share/po/DrakX.pot: merged with new strings from manuals
- updated GErman file
-
- * share/po/de.po: updated GErman file
-
- * share/po/es.po: updated Spanish
-
-2002/03/11 Pixel <pixel@mandrakesoft.com>
-
- * mouse.pm (fullname2mouse): workaround when "1 Button" is not found
-
- * install_steps.pm, install2.pm:
- - default security level now set in miscellaneousBefore
- - default security level is 3 in meta_class server
-
- * install_any.pm:
- - fix the setting of compssUsersChoices in auto_install when it is
- empty
- - set the default compssUsersChoices adapted to the server meta_class
-
- * share/rpmsrate: remove phpgroupware from OFFICE (since it appeas twice,
- the rate is 4, and it requires apache, and ...)
-
- * Makefile: upload the various compssUsers* (esp. compssUsers.server)
-
- * install_steps_gtk.pm:
- - remove the hack for not displaying Utilities in classic meta_class
- - new compssUsers groups for the server meta_class
-
- * share/compssUsers: remove "Utilities" here instead of removing it
- hackily in install_steps_gtk
-
- * share/compssUsers.server: fix the path=Utilities for the Utilities
- section
-
-2002/03/11 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Small text fix.
- Security fix: Give a warning that SMB passwords can easily be revealed
- by normal users when printing on a Windows-hosted printer is set up.
-
- * detect_devices.pm: Reverted parts of the last change, they broke in
- non-DevFS environments (e. g. during installation).
-
-2002/03/11 warly
-
- * share/rpmsrate: add bwbserver_linux in rpmsate for BeeWeb server
-
- * share/compssUsers.server: remove ICEWM choice
-
-2002/03/11 Yves Duret <yduret@mandrakesoft.com>
-
- * tools/cvslog2changelog.pl: added yduret entry in user.
-
-2002/03/11 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: add Rage Mobility as bad card for XF4 (was already bad
- card for XF3) (gégé report).
-
-2002/03/11 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * help.pm: updated help file
-
- * share/po/de.po, share/po/DrakX.pot: updated GErman file
-
-2002/03/11 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake/interactive.pm (Mount_point): when files exist in the chosen
- mount point, propose migration
-
- * install_steps_interactive.pm: search /commercial/i instead of
- /Application/ before showing the commercial license
-
- * standalone/drakboot, bootloader.pm: fix Stew sucks
-
- * install2.pm, install_steps.pm:
- - default security level now set in miscellaneousBefore
- - default security level is 3 in meta_class server
-
- * install_steps_gtk.pm:
- - remove the hack for not displaying Utilities in classic meta_class
- - new compssUsers groups for the server meta_class
- search /commercial/i instead of /Application/ before showing the
- commercial license
-
- * install_any.pm:
- - fix the setting of compssUsersChoices in auto_install when it is
- empty
- - set the default compssUsersChoices adapted to the server meta_class
-
- * Makefile: upload the various compssUsers* (esp. compssUsers.server)
-
- * share/compssUsers: remove "Utilities" here instead of removing it
- hackily in install_steps_gtk
-
- * share/compssUsers.server: fix the path=Utilities for the Utilities
- section
-
-2002/03/11 yduret
-
- * standalone/scannerdrake: re-re-re-re-re-re-uncomment the pkgs check
- line.
-
-2002/03/10 chipaux
-
- * share/po/fr.po: Corrected few typo mistakes.
-
-2002/03/10 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_steps.pm: gcize damienization
-
- * share/rpmsrate: put userdrake together with drakconf so that
- userdrake is not missing (till)
-
-2002/03/10 siegel
-
- * share/po/help_xml2pm.pl: added tag filename
-
- * any.pm: added missing i18n _()
-
- * share/po/de.po: update
- and still fixes ...
- updates
- update
-
-2002/03/10 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Protect the Star Office/OpenOffice.org configuration against
- manual changing of the "update-alternatives" assignment of the "lpr"
- command.
-
- * detect_devices.pm: Made USB printer auto-detection more stable and
- reliable.
-
-2002/03/10 yduret
-
- * standalone/scannerdrake: added ASK DEVICE support
-
- * scanner.pm: added ASK support for more interactiveness during
- configuration
-
-2002/03/09 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/dhcp.c: comply better to ClientID stuff
-
-2002/03/09 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sv.po: updated po file
-
-2002/03/09 yduret
-
- * standalone/scannerdrake: added sum up at the end
- uncomment line that checks if sane rpm is installed or not (thx gc).
- i sux,
-
-2002/03/08 dam's <damien@mandrakesoft.com>
-
- * standalone/drakproxy: drakproxy rewritten
- working drakproxy
-
- * install_steps.pm: corrected network up/down when network install
-
- * standalone/drakfont: ergonomy changed to fit in mcc
- corrected network up/down when network install
-
- * network/network.pm: proxy settings corrected
-
-2002/03/08 fabman
-
- * share/po/es.po: updated spanish translation
-
-2002/03/08 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fixed allowNVIDIA_rpms to take care of new kernel naming
- conventions.
-
- * standalone/XFdrake: fixed NVIDIA support to use newer kernel naming
- conventions.
-
- * Xconfigurator.pm: fixed possible additional XFree packages not installed
- if server is already
- installed.
-
-2002/03/08 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: missing translations + a few changes
-
- * mdk-stage1/probing.c: have 4 seconds of delay for usb stuff
- to show up rather than seconds
-
-2002/03/08 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/cs.po, share/po/it.po: updated po files
-
- * share/po/es.po: corrected typo
-
- * share/po/da.po: updated Danish file
-
- * lang.pm, share/locales-skeleton.tar.bz2: Added symlinks in
- locales-skeleton so non primary chinese encodings
- can work
-
- * share/po/ar.po: updated po file
-
- * share/po/cy.po: removed the "translation" of licence, it was random
- text.
-
-2002/03/07 dam's <damien@mandrakesoft.com>
-
- * share/po/fr.po, modparm.pm: corrected
-
-2002/03/07 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/newt-frontend.c: english fix thx to till & phil
-
-2002/03/07 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/fr.po: updated po file
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/it.po, share/po/id.po, share/po/pl.po,
- share/po/fi.po, share/po/no.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
- share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
- share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
- share/po/bs.po, share/po/da.po, share/po/zh_TW.po, share/po/cs.po,
- share/po/af.po: updated pot file
-
-2002/03/07 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm: removing quota choices for reiserfs
-
-2002/03/07 dam's <damien@mandrakesoft.com>
-
- * standalone/net_monitor: make gc happy
-
- * modparm.pm, share/po/fr.po: corrected
-
- * standalone/draknet: corrected network/internet restart when already
- connected
-
- * network/netconnect.pm: corrected bad previous behaviour
-
- * standalone/drakfont: corrected bad system command
-
- * share/advertising/02-internet_icon.png,
- share/advertising/05-contcenter_icon.png,
- share/advertising/10-MDKexpert_icon.png, share/advertising/06-user.pl,
- share/advertising/08-games.pl, share/advertising/02-internet.pl,
- share/advertising/03-graphic_icon.png, share/advertising/07-server.pl,
- share/advertising/12-MDKstore_icon.png,
- share/advertising/06-user_icon.png,
- share/advertising/07-server_icon.png, share/advertising/09-MDKcampus.pl,
- share/advertising/10-MDKexpert.pl, share/advertising/05-contcenter.pl,
- share/advertising/04-develop.pl,
- share/advertising/09-MDKcampus_icon.png,
- share/advertising/12-MDKstore.pl, share/advertising/03-graphic.pl,
- share/advertising/04-develop_icon.png,
- share/advertising/08-games_icon.png: changed icon sizes
-
-2002/03/07 fcrozat
-
- * share/rpmsrate: Evolution is not dependent on GNOME selection (not
- require gnome-core)
-
-2002/03/07 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm: avoid destroying some files in /etc.
-
- * install_steps_interactive.pm: fixed package tree with a given medium.
-
- * any.pm: fix autologin sometimes activated without user intervention.
-
-2002/03/07 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_any.pm: generate_automatic_stage1_params: also save
- the interface number in case the machine will
- have several interfaces; clean code a bit
-
- * mdk-stage1/network.c: better error msg regarding pcmcia net
- adapters supported either with pcmcia.img
- or network.img (amaury sucks)
-
- * install_steps_auto_install.pm: in replay mode, since
- $o->{interactiveSteps}
- exists, we can't simply ||= @graphical_steps,
- we need to push to ensure that the
- @graphical_steps is always honoured
-
- * standalone/drakgw:
- - call net_monitor to disable internet
- connection before network-restart
- - user return value when status'ing the
- initscripts rather than grepping their
- text output
-
- * modules.pm: try to avoid segfaulting probeall stuff
- add ns83820 gigabit (goes to other.img)
-
- * rescue/rescue-doc: english fixes thx to phil
-
-2002/03/07 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * standalone/drakfont: Added a missing _( ) around a text
-
- * share/po/vi.po, share/po/cy.po, share/po/hu.po, share/po/id.po: updated
- po files
-
- * share/po/ko.po, share/po/ca.po, share/po/tr.po: commented out the
- translations using argument switching (not yet handled by DrakX)
-
- * bootlook.pm, standalone/drakboot: i18n changes
-
- * keyboard.pm: corrected the locale->keyboard list building
- make keyboard selection choose first the 5 first chars of lang;
- then the 2 first chars;
-
- * share/po/eu.po: commented out the translations using argument switching
- (not yet handled by DrakX)
- updated po file
-
-2002/03/07 Pixel <pixel@mandrakesoft.com>
-
- * any.pm: fix fileshare custom config
- fix *some* stew errors
-
- * bootloader.pm: "--timeout=" must be after terminal
- add --timeout=... for "terminal serial ..." line in grub's menu.lst
- fix *some* stew errors
-
- * install_any.pm: don't have the adsl & modem passwords in report.bug
-
- * detect_devices.pm (zips__faking_ide_scsi): fix returned value in
- standalone
- (getSCSI): don't call isFloppyOrHD for ZIPs (lowers the number of kernel
- error when there is no floppy)
-
- * fs.pm: removing quota choices for reiserfs
-
-2002/03/07 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * any.pm, bootlook.pm, standalone/drakboot, bootloader.pm: drakboot
- functionality for PPC
-
-2002/03/07 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Fixed bug of network not being started by Printerdrake
- during installation.
-
-2002/03/07 warly
-
- * share/compssUsers.server, share/compssUsers, share/rpmsrate: update
- server, merge with normal rpmsrate
-
-2002/03/06 dam's <damien@mandrakesoft.com>
-
- * standalone/drakautoinst: corrected HASH and ARRAY label
-
-2002/03/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ja.po, share/po/no.po, share/po/cy.po: updated po file
-
-2002/03/06 Pixel <pixel@mandrakesoft.com>
-
- * standalone/fileshareset (nfs_exports::update_server): ensure portmap is
- running
-
-2002/03/06 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm: corrected font stuff
-
- * standalone/drakautoinst: corrected HASH and ARRAY label
-
-2002/03/06 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: no 3D with Utah GLX (XF 3.3) if more than 800 MB.
-
- * pkgs.pm: fixed error when using multiple removable media and user
- aborted installation
- (for some other error) and hdlists cannot be retrieved.
- add save of synthesis too when partitions are reformated, so that urpmi
- is happy after.
- fixed when hdlist gives no new package (new name) but only obsoleted
- package or
- updated package, ie security updates may appreciate.
-
- * install_any.pm: update for newer pkgs module (fix for abort during
- installation).
-
- * rescue/tree/etc/oem: allow oem script to be executable from standard cd
- set (powerpack or other).
-
-2002/03/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ja.po: updated po file
- updated pot file
-
- * share/po/fr.po, share/po/cy.po, share/po/id.po, share/po/zh_TW.po:
- updated pot file
- updated some po files
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/nl.po, share/po/wa.po,
- share/po/sv.po, share/po/is.po, share/po/hu.po, share/po/it.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po, share/po/th.po,
- share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
- share/po/sl.po, share/po/vi.po, share/po/br.po, share/po/ca.po,
- share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
- share/po/ro.po, share/po/bs.po, share/po/da.po, share/po/cs.po,
- share/po/af.po: updated pot file
-
-2002/03/06 Pixel <pixel@mandrakesoft.com>
-
- * pkgs.pm: add @preferred libxpm4
-
- * lang.pm: fix typo in %xim (for chineese)
- - create the kde share/config's directory, so that kde config files
- are created in any case
- - in user_only localedrake, ensure the /etc/sysconfig/i18n is taken
- into account when ~/.i18n doesn't exist (thanks to F.Crozat)
-
- * install_any.pm: ensure the fstab is kept on upgrade
- (g_auto_install): use "interactiveSteps" field instead of pushing in
- @install_steps_auto_install::graphical_steps
-
- * standalone/localedrake: when called by kcontrol with --apply, don't
- modify kde config files, kcontrol takes care of it more nicely
-
- * diskdrake/interactive.pm: translate the actions
- choose to activate crypto. type password. unselect encryption. Select
- encryption again, you were not asked for password. Fixed
- use formatError
-
- * bootloader.pm (add_append): don't add to entries of type 'other'
-
- * devices.pm (find_free_loop): fix
-
- * install_steps_interactive.pm, install_steps.pm: ensure the fstab is kept
- on upgrade
-
- * fsedit.pm: do not allow encrypted /var
-
-2002/03/06 Thierry Vignaud <tvignaud@mandrakesoft.com
-
- * standalone/drakxtv: print an error message if xawtv isn't installed
- fix conflict between i18n and complete signal handler (ie return key
- and not value)
-
-2002/03/06 warly
-
- * share/rpmsrate: remove abiword
-
-2002/03/05 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/pcmcia_/probe.c: an old sucking PCI card needs oldskool
- i82365 :-((, ugly patch
-
-2002/03/05 warly
-
- * share/rpmsrate: add Fred Bastok modif
- remove too many duplicate in i18n packages that are now automatically
- added
-
-2002/03/05 Chmouel Boudjnah <chmouel@mandrakesoft.com>
-
- * modules.pm: Add USB2 controller
-
-2002/03/05 dam's <damien@mandrakesoft.com>
-
- * network/netconnect.pm: corrected expert option in install mode
- added expert mode
-
- * my_gtk.pm: greater interstice
-
- * modparm.pm: cosmetic
- gzipped modules handled
-
-2002/03/05 fcrozat
-
- * share/rpmsrate: Install xlockmore when installing gnome, since
- xscreensaver can't lock
- root desktop..
-
-2002/03/05 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: deactivate v4l module if DRI is enabled and r128
- driver used.
-
- * install_steps.pm: added auto restore of some files (/etc/profile) needed
- by upgrade (from .rpmnew).
- added log for hasNetwork (so that we can understand why installUpdates
- do nothing).
-
- * crypto.pm: avoid trying to find hdlist-updates.cz in existing medium
- (instead of ftp one).
-
- * fs.pm: fixed hd install to allow using specific directory.
-
- * install_any.pm: fix duplicate synthesis.hdlist.xxx file present in
- /var/lib/urpmi, and
- furthermore uncompressed :-(
- fixed possible bug when generating synthesis file for urpmi
- installation.
-
-2002/03/05 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/dhcp.c, mdk-stage1/dhcp.h, mdk-stage1/network.c: save
- dhcp_hostname for stage2
-
- * install_any.pm: fix bug in generating automatic stage1
- params for http
-
- * modules.pm: aironet core sucking thing
-
-2002/03/05 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sr.po, share/po/sp.po: updated po files
-
-2002/03/05 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: if mem=nopentium is given on cmdline, have it after
- install
-
- * modules.pm (extract_modules): created (was done in load_raw)
-
-2002/03/05 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * Xconfigurator.pm: use UseFBDev for r128 - PPC
-
-2002/03/05 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Added support for HP's newest MF devices: HP OfficeJet
- D series, HP LaserJet 33xx MFP.
- Fixed bug of printerdrake sometimes assuming the user has an MF device
- when he has typed the device file name in the expert mode.
-
-2002/03/05 yduret
-
- * bootlook.pm: fix nobody bug
-
- * standalone/logdrake: mail alert: use eval {} to catch wizcancel
-
-2002/03/04 dam's <damien@mandrakesoft.com>
-
- * modparm.pm: corected weirdness, I suck
-
-2002/03/04 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: fix scroll total to match reality.
- fixed interpretation of size of package when doing an install (this can
- be
- severe, need testing).
-
-2002/03/03 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/cy.po, share/po/id.po: updated po file
-
-2002/03/03 Pixel <pixel@mandrakesoft.com>
-
- * my_gtk.pm (gtkicons_labels_widget): since style is not set either, use
- the widget and ask it the style->font. This *works*
- (gtkicons_labels_widget): pass the style instead of directly passing the
- font
-
-2002/03/03 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Let Star Office/OpenOffice.org configuration corrcet a bug
- in the PostScript produced by these programs so that the Euro symbol is
- printed correctly.
-
-2002/03/02 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/tr.po: updated po file
-
-2002/03/02 Pixel <pixel@mandrakesoft.com>
-
- * partition_table.pm: better name for windobe new 0x42 special id (their
- own LVM marker)
-
- * detect_devices.pm: better jaz detection (thanks to Randy Welch)
-
-2002/03/02 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: Replaced "Open Office" by "OpenOffice.org".
-
-2002/03/02 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sv.po, share/po/da.po, share/po/vi.po, share/po/hu.po: updated
- po files
-
- * share/po/tr.po: updated po file
-
-2002/03/02 Pixel <pixel@mandrakesoft.com>
-
- * share/list: add lvreduce & lvextend
-
- * detect_devices.pm: fix ide zip name when there are already some other
- SCSI drives
- ZIPs and Jazz's are not floppies
-
- * diskdrake/interactive.pm (Resize): ensure we call lv_resize from lvm and
- adjust_* for normal partitions, even for destructive resizes
-
-2002/03/02 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: Replaced "Open Office" by "OpenOffice.org".
-
-2002/03/01 Pixel <pixel@mandrakesoft.com>
-
- * share/po/fr.po: fix gc's bulshit
-
-2002/03/01 dam's <damien@mandrakesoft.com>
-
- * services.pm: corrected translation used for shell command
-
- * my_gtk.pm: style & font correction
-
-2002/03/01 François Pons <fpons@mandrakesoft.com>
-
- * share/rpmsrate: updated INSTALL category with NOCOPY new flag added.
-
- * rescue/tree/etc/oem: added ext3 support.
-
- * share/rpmsrate.server: synced with rpmsrate INSTALL category.
-
- * install_any.pm: reset correct setup_postinstall_rpms calling.
- removed some card where 3D is not installed by default:
- Riva128, Radeon 8500 and Rage Mobility card.
- removed staling debug code.
- fixed bad copied package (if one is not found).
-
- * tools/oem-prepare: added handling of newer rpmsrate format with INSTALL
- category.
-
- * pkgs.pm: added pixel comments for handling INSTALL category and NOCOPY
- handling.
- only copy package in INSTALL category with a rate of at least 2.
-
-2002/03/01 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: a few missing trads
- please translators, keep two newlines when
- there are two newlines in original string,
- it's on purpose
-
-2002/03/01 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/it.po, share/po/id.po, share/po/pl.po,
- share/po/fi.po, share/po/no.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
- share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
- share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
- share/po/bs.po, share/po/da.po, share/po/zh_TW.po, share/po/cs.po,
- share/po/af.po: updated po files
-
- * share/po/fr.po: fixed two typos
- small corrections (non breakable spaces)
-
-2002/03/01 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm: handle leaving X for both Xdrakres and XFdrake (=>
- Xdrakres completly obsolete)
-
- * standalone/localedrake: restrict localedrake to installed lang
-
- * lang.pm: restrict localedrake to installed lang
- add 'C' in %charset2kde_font (so that english has normal fonts)
-
- * bootloader.pm:
- - do not indent "disk=... bios=..."
- - $lilo->{first_hd_device} can be used to tell which drive is the
- first one
- for the BIOS. Useful when the bootloader is installed on a partition and
- not
- on the MBR.
- read "disk=/dev/xxx bios=0x8x" and save it
-
- * any.pm: restrict localedrake to installed lang
- ask which hard drive is the booting one when there is mixed kind of
- drives
- (scsi+ide, ide2+ide) and the bootloader is not installed on MBR
-
-2002/03/01 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Reduced the paths to search for Star/Open Office, on systems
- without these applications installed the search needed a significant
- time.
-
-2002/03/01 François Pons <fpons@mandrakesoft.com>
-
- * share/rpmsrate: updated INSTALL category with NOCOPY new flag added.
-
- * share/rpmsrate.server: synced with rpmsrate INSTALL category.
-
- * install_any.pm: removed staling debug code.
- fixed bad copied package (if one is not found).
-
- * pkgs.pm: added pixel comments for handling INSTALL category and NOCOPY
- handling.
- only copy package in INSTALL category with a rate of at least 2.
-
-2002/03/01 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/dhcp.c: add hostname/domain in dhcp negociation,
- thx to david@eastcott.net
-
- * share/po/fr.po: please translators, keep two newlines when
- there are two newlines in original string,
- it's on purpose
-
-2002/03/01 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/nl.po, share/po/zh_TW.po, share/po/hu.po: updated po files
-
-2002/03/01 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm: handle leaving X for both Xdrakres and XFdrake (=>
- Xdrakres completly obsolete)
-
- * detect_devices.pm: add is_a_recent_computer()
-
- * any.pm: call dcop as user
-
- * lang.pm: add 'C' in %charset2kde_font (so that english has normal fonts)
- switch en_GB, *_CH, da, es@tradicional and wa to iso-8859-15
-
- * bootloader.pm: read "disk=/dev/xxx bios=0x8x" and save it
-
- * mouse.pm: special case for non detected usb interface on a box with no
- mouse.
- we *must* find out if there really is no usb, otherwise the box may
- not be accessible via the keyboard (if the keyboard is USB)
- the only way to know this is to make a full pci probe
-
-2002/02/28 dam's <damien@mandrakesoft.com>
-
- * standalone/drakbackup: bugfixs
- corrected translation for crontab
-
- * modparm.pm: corrected modinfo path for isa modules during install
-
-2002/02/28 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: try to fix if no chosen width has been found.
- removed Radeon 8500 from DRI capable cards.
-
- * rescue/tree/etc/oem: added curl as a bonus for oem install (it will be
- used by urpmi)
- added a2ps as a bonus (it fetch tetex where oem limited disk usage do
- not agree
- a lot).
- fixed bad copy of install packages.
-
- * tools/oem-prepare: added curl as a bonus for oem install (it will be
- used by urpmi)
- added a2ps as a bonus (it fetch tetex where oem limited disk usage do
- not agree
- a lot).
- fixed bad copy of INSTALL packages.
-
-2002/02/28 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install2.pm: more precise msg when can't access kernel modules because
- we still have many dumb people on cooker asking what's going on
-
- * install_steps_interactive.pm: small english fix
-
-2002/02/28 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/de.po, share/po/no.po: updated po files
- updated pot file
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/ga.po, share/po/sr.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/is.po, share/po/hu.po,
- share/po/it.po, share/po/id.po, share/po/pl.po, share/po/fi.po,
- share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
- share/po/ar.po, share/po/sl.po, share/po/vi.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
- share/po/zh_TW.po, share/po/cs.po, share/po/af.po: updated pot file
-
- * share/po/sv.po: updated Swedish file
- updated pot file
-
-2002/02/28 Pixel <pixel@mandrakesoft.com>
-
- * rescue/make_rescue_img: resolve conflicts for short keytable names (eg:
- "no" could be either "no-dvorak" or "no-latin1")
-
- * keyboard.pm (loadkeys_files): ensure each file appear only once
-
-2002/02/28 siegel
-
- * share/po/de.po: and another part of updates
- updates
-
-2002/02/28 Thierry Vignaud <tvignaud@mandrakesoft.com
-
- * share/po/fr.po: last translation but not least.
- further updates
- update french translation
-
-2002/02/28 dam's <damien@mandrakesoft.com>
-
- * share/themes-marble3d.rc: rechanged bg for camille
-
- * standalone/drakbackup: corrected translation for crontab
-
-2002/02/28 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: fixed bad copy of install packages.
-
- * tools/oem-prepare: fixed bad copy of INSTALL packages.
-
- * Xconfigurator.pm: removed Radeon 8500 from DRI capable cards.
-
-2002/02/28 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * rescue/aliases, rescue/list: include /sbin/fsck.ext3 since our users are
- so dumb
-
-2002/02/28 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/zh_TW.po: updated Chinese file
-
-2002/02/28 Pixel <pixel@mandrakesoft.com>
-
- * rescue/make_rescue_img: resolve conflicts for short keytable names (eg:
- "no" could be either "no-dvorak" or "no-latin1")
-
- * keyboard.pm (loadkeys_files): ensure each file appear only once
-
- * bootloader.pm: add "nowarn" in lilo.conf
-
- * install_steps.pm, fs.pm: use the "soft" option by default for /mnt/nfs
- and for "diskdrake --nfs"
-
-2002/02/28 sdupont
-
- * standalone/drakfont: including 'su' mode on drakfont.
-
-2002/02/28 siegel
-
- * share/po/de.po: updated missing strings
-
-2002/02/28 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Re-activated function to specify a CUPS server in
- another network and to switch to manual CUPS configuration.
- - Fixes/Improvements on Star Office/Open Office support:
- o When one switches the spooler, the entries of the printers under the
- old spooler are removed from Star Office/Open Office
- o Printers on remote CUPS servers (which are known through
- broadcasting)
- can be added to Star Office/Open Office
-
- * share/rpmsrate.server, share/rpmsrate: Added "curl" to install section,
- it is needed by printerdrake.
-
- * printer.pm:
- - Fixes/Improvements on Star Office/Open Office support:
- o When one switches the spooler, the entries of the printers under the
- old spooler are removed from Star Office/Open Office
- o Printers on remote CUPS servers (which are known through
- broadcasting)
- can be added to Star Office/Open Office
-
-2002/02/27 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/eu.po: updated Basque file
-
-2002/02/27 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm:
- - Improved fully automatic adding of printer queue:
- o Ask for a queue name if more than one printer is detected
- o Let user confirm the model automatically chosen from the database
- o Set correct paper size according to the language/country
- - When one chooses a "CUPS + GIMP-Print" driver now all important
- options
- are displayed directly (without needing "Advanced" button).
- - Made less warning appearing on the console from where "printerdrake"
- was
- called.
-
-2002/02/27 fabman
-
- * share/po/es.po: converted to UTF-8
-
-2002/02/27 François Pons <fpons@mandrakesoft.com>
-
- * crypto.pm: fix missing version listed when doing update.
-
-2002/02/27 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: a few translations
-
- * mdk-stage1/rescue-gui.c, rescue/restore_ms_boot, rescue/list.i386,
- rescue/make_rescue_img: add "restore Windows Boot Loader" to rescue
-
- * install_steps_interactive.pm: formatAlaTex for congratz msg
- xfs + bootdisk = warning_msg
-
- * share/rpmsrate: flightgear is now fully lowercase
- glaxium
-
- * mdk-stage1/pcmcia_/probe.c: add Keld Jørn Simonsen <keld@dkuug.dk>'s O2
- Micro
- CardBus controller, and two other PCI entries which
- have close descriptions
-
- * mdk-stage1/pcmcia_/merge_from_pcitable: misc
- also report when pcitable is "too old"
- write a short perl program to easily merge new
- cardbus controllers from pcitable into probe.c
-
-2002/02/27 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/eu.po: updated po file
-
-2002/02/27 Pixel <pixel@mandrakesoft.com>
-
- * share/rpmsrate: simplify pyDict
-
- * install_steps_interactive.pm: ensure a keyboard is only once available,
- either in advanced or normal, but
- not in both (tx2fredl)
-
- * share/po/da.po:
- - it is UTF-8
- - fix line splitting
-
- * lang.pm: workaround iso-8859-1 charset based languages not displayed
- correctly at install
- - %lang2country is the authority, so if the country given by
- %lang2country doesn't exist in KDE, return C
- - fix be,sp,sr
- - s/def/default/ (typo)
- - add some utf kde fonts
-
-2002/02/27 Thierry Vignaud <tvignaud@mandrakesoft.com
-
- * share/po/fr.po: update french translation
-
- * standalone/drakxtv:
- - simplify an ACTION||fallback;fallback into ACTION;fallback
- - print a message saying that xawtv can be used now at the end of the
- channels auto-probing in case of direct use from cl and not from
- XawTV wrapper (from qa test) aka let the world be better :-)
-
- * share/po/br.po: minor update
- update brezhoneg translation
-
-2002/02/26 dam's <damien@mandrakesoft.com>
-
- * modparm.pm: corrected bad sprintf
-
-2002/02/26 fabman
-
- * share/po/es.po: updated spanish translations
-
-2002/02/26 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/Makefile: version 8.2
-
-2002/02/26 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/fr.po, share/po/sv.po, share/po/hu.po: updated po files
-
-2002/02/26 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake/smbnfs_gtk.pm, diskdrake/removable.pm,
- diskdrake/interactive.pm: propose some mount points for
- removable/nfs/smb
-
- * install_steps_interactive.pm: if no sound card are detected AND the user
- selected things needing a sound card, propose a special case for ISA
- cards
-
- * share/rpmsrate: add sndconfig in INSTALL (installed when user say Yes
- when asked for a ISA
- sound card)
-
- * my_gtk.pm (@icon_paths): ease testing
-
-2002/02/26 siegel
-
- * share/po/de.po: updates
-
-2002/02/26 dam's <damien@mandrakesoft.com>
-
- * standalone/drakfont: corrected ttf/TTF and xfs restart
-
- * share/logo-mandrake.png: new logo
-
-2002/02/26 fabman
-
- * share/po/es.po: updated spanish translations
-
-2002/02/26 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: fix translation of test program.
-
-2002/02/26 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/dietlibc/libstdio/fclose.c: don't segfault when fclose(NULL)
-
- * share/po/fr.po:
- - explain where to put nbsp spaces, explain
- what's nbsp spaces, explain how to compose them
- - add a few missing nbsp spaces
- - translate a few more things
-
-2002/02/26 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/it.po, share/po/id.po, share/po/pl.po,
- share/po/fi.po, share/po/no.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
- share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
- share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
- share/po/bs.po, share/po/da.po, share/po/zh_TW.po, share/po/cs.po,
- share/po/af.po: updated pot file
-
- * any.pm: fixed English typo
-
-2002/02/26 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake/smbnfs_gtk.pm, diskdrake/removable.pm,
- diskdrake/interactive.pm: propose some mount points for
- removable/nfs/smb
-
- * Xconfigurator.pm: make perl_checker happy
- have "Ok More Show all" instead of "Ok Cancel Show all"
- set the locale properly instead of setting the translated messages in
- the script
-
- * any.pm:
- - zips() now return devices ending with "4", raw_zips() is the old
- zips()
- - rdvd handling
- - add .conf for /etc/devfs/conf.d/ files
- (devfssymlinkf): use /etc/devfs/conf.d/name.conf instead of putting the
- symlink in lib/dev-state
-
- * share/rpmsrate: add sndconfig in INSTALL (installed when user say Yes
- when asked for a ISA
- sound card)
- add xine in VIDEO 4
-
- * install_steps.pm:
- - zips() now return devices ending with "4", raw_zips() is the old
- zips()
- - rdvd handling
- - add .conf for /etc/devfs/conf.d/ files
- don't add mem=nopentium anymore. kernel people says it's not needed and
- bad
- for performance. It also means any bug must be addressed to them
- create /dev/dvd for DVDs
-
- * my_gtk.pm (@icon_paths): ease testing
-
- * lang.pm: create bindtextdomain which does only part of the load_mo job
-
- * install_steps_interactive.pm: if no sound card are detected AND the user
- selected things needing a sound card, propose a special case for ISA
- cards
-
- * detect_devices.pm:
- - zips() now return devices ending with "4", raw_zips() is the old
- zips()
- - rdvd handling
- - add .conf for /etc/devfs/conf.d/ files
- cleanup
-
- * fs.pm:
- - zips() now return devices ending with "4", raw_zips() is the old
- zips()
- - rdvd handling
- - add .conf for /etc/devfs/conf.d/ files
-
-2002/02/26 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * Xconfigurator_consts.pm: Ti Powerbook uses non-std 1152x768, rather than
- 1152x864
-
-2002/02/26 Thierry Vignaud <tvignaud@mandrakesoft.com
-
- * standalone/drakxtv: use "xvt -T" rather than "xvt --title": now not only
- we support rxvt
- and xterm but konsole too.
- the only one missing is gnome-terminal which has -t but not -T
- update comments
- - remove useless "no_edit => 1"
- - use interactive_gtk to determine if we're runned under X11 (ie
- authorized acces to X11 server, X11 context, ...)
- - add a note to remember that we should add a method to detect if we
- run under X11 if/when we implement interactive_qt
- - simplify code :
- * remove is_tv and simplify its code to be a one-liner (replace a
- foreach by a scalar context)
- * use format to prevent reverse lookup on scantv run thus
- enabling to reverse the initial hash table
- - all cases (newt, gtk, wt/wo xvt, ...) have been re tested on real
- hw.
-
-2002/02/26 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hu.po: updated po file
-
-2002/02/26 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm: remove passwords and realnames from report.bug
-
-2002/02/26 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hu.po: updated po file
-
-2002/02/26 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm: remove passwords and realnames from report.bug
-
-2002/02/25 dam's <damien@mandrakesoft.com>
-
- * any.pm, modparm.pm: corrected modules parameters functions
-
- * standalone/drakfont: debug
-
-2002/02/25 François Pons <fpons@mandrakesoft.com>
-
- * mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: fixes for cursor or
- nasty pixel displayed using syslinux-1.67-3mdk
-
-2002/02/25 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: don't put accents for bootloader, we can just use 7bit
- chars
- (titi sucks bigtime)
- add a few nbsp spaces
-
- * rescue/list: add mt-st DAT stuff for joeghi (ghibo)
-
-2002/02/25 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/da.po: updated Danish file
-
-2002/02/25 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm: ignore-table is a global flag, so put it there (when
- needed)
-
- * standalone/drakboot: add --testing
-
- * modules.pm, install_steps.pm, fs.pm, detect_devices.pm: use ide-scsi for
- ide zips
-
- * install_steps_interactive.pm: sort the list of keyboards
-
-2002/02/25 Thierry Vignaud <tvignaud@mandrakesoft.com
-
- * share/po/fr.po: fix a typo (thanks gc)
-
-2002/02/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ru.po, share/po/sp.po, share/po/ca.po, share/po/th.po,
- share/po/uk.po, share/po/es.po, share/po/eo.po, share/po/ro.po,
- share/po/sv.po, share/po/sr.po, share/po/da.po, share/po/el.po,
- share/po/et.po, share/po/cs.po, share/po/tr.po, share/po/az.po,
- share/po/eu.po: updated some po files
-
-2002/02/24 Pixel <pixel@mandrakesoft.com>
-
- * share/keyboards.tar.bz2: fix permission
-
-2002/02/23 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/cy.po, share/po/Makefile: updated Welsh file
-
- * share/po/zh_CN.po, share/po/DrakX.pot, share/po/eu.po, share/po/vi.po,
- share/po/wa.po, share/po/zh_TW.po: udated Vietnamese file
-
- * install_steps_interactive.pm: removed useless _( ) around a string
- displayed in English only
-
- * share/po/be.po, share/po/bg.po, share/po/sk.po, share/po/ar.po,
- share/po/sl.po, share/po/br.po, share/po/bs.po, share/po/sv.po,
- share/po/af.po: updated some po files
-
-2002/02/23 Pixel <pixel@mandrakesoft.com>
-
- * interactive_newt.pm:
- - use simplify_string to ensure multi-line and too long strings are
- not used
- (hacky, but no other solution)
- - set $::setstep like interactive_gtk is doing (??)
-
- * partition_table_empty.pm: handle MBR containing the same character (0 or
- "l")
-
- * diskdrake/interactive.pm: not_edit'able filesystem type (allow esp. a
- nicer newt version)
-
- * devices.pm (devices::make): following a good advice from Andrej
- Borsenkow, return the
- file even if the device file doesn't exist the caller will fail or not.
- The
- advantage is better compatibility than raising an exception
- devices::make doesn't mknod with devfs
-
- * detect_devices.pm: no need to catch the exception from devices::make
- anymore
- devices::make doesn't mknod with devfs
-
- * fs.pm: nicer error message when mount fails
-
- * share/rpmsrate: adding gphoto2
-
- * install_steps_interactive.pm: when passwords do not match, focus on
- first password entry, not the second (thanks to garrick)
-
- * Xconfigurator_consts.pm: remove Option "sw_cursor" for "SiS 6326" since
- it's already handled in Xconfigurator.pm
-
- * my_gtk.pm: fix @icon_paths to include /usr/share/libDrakX/pixmaps
- (thanks to garrick)
-
- * modules.pm: remove "-f" option for insmod
-
-2002/02/23 siegel
-
- * share/po/de.po: fixed silly error
- updates
-
-2002/02/23 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: Added automatic configuration of printers
- in Star Office and Open Office.
-
-2002/02/22 dam's <damien@mandrakesoft.com>
-
- * share/advertising/02-internet.pl, share/advertising/07-server.pl,
- share/advertising/11-consul.pl, share/advertising/09-MDKcampus.pl,
- share/advertising/01-gnu.pl, share/advertising/13-Nvert.pl,
- share/advertising/06-user.pl, share/advertising/10-MDKexpert.pl,
- share/advertising/04-develop.pl, share/advertising/05-contcenter.pl,
- share/advertising/12-MDKstore.pl, share/advertising/03-graphic.pl,
- share/advertising/08-games.pl: corrected advertising text
-
- * share/po/fr.po: corrected bad translation
-
- * my_gtk.pm: corrected icon paths
-
-2002/02/22 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw: exit the pur_gtk version after launching the wizard
- version
-
- * any.pm: better rephrasing
- change name and description of security levels
-
- * share/rpmsrate: powermanga: 2 -> 3
-
-2002/02/22 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/da.po, share/po/DrakX.pot: updated Danish file
-
- * lang.pm: start of support of kde fonts
- fixed some keyboard names
-
- * keyboard.pm: fixed some keyboard names
- added the two ?win_toggle choices
- some info useful for keyboard handling
-
- * share/keyboards.tar.bz2: fixed some keyboard names
-
- * share/po/hu.po: updated hungarian file
-
-2002/02/22 Pixel <pixel@mandrakesoft.com>
-
- * pkgs.pm: even smarted process to kill selection
-
- * lang.pm: fix 2 entries in charset2kde_font
- - remove non needed entries in lang2country
- - fix syntax errors
- - rename kdefont in charset2kde_font
- - much cleanup
- use invalid instead of unknown for errors when checking
- put back the less deep langs
- have the tree less deep (esp. nicer when not displaying UTF-8 entries)
- not translating in console installs (esp. newt) when the font is missing
- restrict the langs displayed to non utf8 during install
- fix warning message
- disable perl warnings when checking
- make perl_checker happy
-
- * devices.pm: add atibm (thanks to Robin Pollard)
-
- * bootloader.pm: put ignore-table to disable lilo's partition table
- checking
- (esp. the checking of the CHS geometry vs linear geometry)
-
- * Xconfigurator_consts.pm: fix syntax typo
-
- * Makefile:
- - exclude urpm from perl_checker
- - add checking keyboard.pm
-
- * install_steps_interactive.pm, install2.pm, install_steps.pm: not
- translating in console installs (esp. newt) when the font is missing
-
- * keyboard.pm: use invalid instead of unknown for errors when checking
- change the message
- disable perl warnings when checking
- - add checks for the various data structures
- - fix another typo for usb2drakxkbd
- fix typo
-
- * share/rpmsrate: add procmail in SYSTEM 4
- add samba-doc samba-winbind samba-swat
-
- * Xconfigurator.pm: workaround set_active failing
-
- * any.pm: use the setupBootloader help instead of setupBootloaderGeneral
- restrict the langs displayed to non utf8 during install
-
-2002/02/22 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/drakxtv: update TODO list;
- explain what is HRC
-
- * share/po/fr.po: further translations
- update french translation
-
-2002/02/21 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm: corrected icon list
-
-2002/02/21 fabman
-
- * share/po/es.po: updated spanish po file
-
-2002/02/21 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: spacecup no more exists
- armagetron is nice, no use to install gltron as well
- autoconf2.5 and automake1.5
-
- * interactive.pm: when not in X and needs su, use consolehelper now
- use consolehelper when no "kdeinit: kwin" process
- is running
-
-2002/02/21 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
- share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
- share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
- share/po/is.po, share/po/Makefile, share/po/hu.po, share/po/it.po,
- share/po/id.po, share/po/pl.po, share/po/no.po, share/po/fi.po,
- share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
- share/po/ar.po, share/po/sl.po, share/po/vi.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
- share/po/zh_TW.po, share/po/cs.po, share/po/af.po: updated pot file
-
-2002/02/21 Pixel <pixel@mandrakesoft.com>
-
- * lvm.pm, install_any.pm: ensure lvm tools don't need to be all installed
- at the same time
-
- * lang.pm, tools/make_mdkinst_stage2: LC_COLLATE and LC_CTYPE are
- getFile'd (cuz they are big, causing the .cz2 to be *big*)
-
- * share/rpmsrate: add kinput2-wnn4
-
-2002/02/21 siegel
-
- * share/po/de.po: update
-
-2002/02/21 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Removed "Manual configuration" button when "Local
- Printer" dialog is started from the queue modification menu (Recommended
- mode).
- Improved matching of printer names resulting from auto-detection with
- names in the database.
-
-2002/02/21 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * share/po/fr.po: final batch of typos fixes (next time, please run a
- check speller)
- fix more typos
- update french translation;
- fix typos
-
- * diskdrake/interactive.pm: shorter displayed message
-
-2002/02/21 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: changed button label
-
- * standalone/icons/gmon.png, standalone/icons/categ.png,
- standalone/icons/verti.png, standalone/icons/drakbackup.540x57.png,
- standalone/icons/net_c.png, standalone/icons/ic82-system-40.png,
- standalone/icons/wiz_drakgw.png, standalone/icons/ic-drakfont-48.png,
- standalone/icons/ic82-back-up-16.png,
- standalone/icons/wiz_scannerdrake.png,
- standalone/icons/ic82-discdurwhat-40.png,
- standalone/icons/ic82-tape-40.png, standalone/icons/ic82-network-40.png,
- standalone/icons/smbnfs_default.png, standalone/icons/smbnfs_server.png,
- standalone/icons/hori.png, standalone/icons/wiz_draknet.png,
- standalone/icons/smbnfs_mounted.png, standalone/icons/wiz_firewall.png,
- standalone/icons/wiz_default_up.png,
- standalone/icons/ic82-back-up-32.png, standalone/icons/ic82-CD-40.png,
- standalone/icons/ic82-systemeplus-40.png,
- standalone/icons/ic82-back-up-48.png,
- standalone/icons/ic82-dossier-32.png, standalone/icons/net_d.png,
- standalone/icons/ic82-moreoption-40.png,
- standalone/icons/smbnfs_has_mntpoint.png, standalone/icons/tradi.png,
- standalone/icons/wiz_printerdrake.png,
- standalone/icons/wiz_default_left.png,
- standalone/icons/eth_card_mini2.png, standalone/icons/net_u.png,
- standalone/icons/ic82-users-40.png, standalone/icons/mdk_logo.png,
- standalone/icons/ic82-others-40.png, standalone/icons/ic82-when-40.png,
- standalone/icons/draknet_step.png, standalone/icons/drakfont.620x57.png,
- standalone/icons/ic82-where-40.png: added new gfx only standalone
-
- * pixmaps/categ.png, pixmaps/verti.png, pixmaps/ic82-moreoption-40.png,
- pixmaps/ic82-system-40.png, pixmaps/net_c.png,
- pixmaps/ic-drakfont-48.png, pixmaps/ic82-CD-40.png,
- pixmaps/ic82-when-40.png, pixmaps/ic82-back-up-32.png,
- pixmaps/draknet_step.png, pixmaps/ic82-dossier-32.png,
- pixmaps/ic82-back-up-48.png, pixmaps/smbnfs_server.png,
- pixmaps/ic82-discdurwhat-40.png, pixmaps/smbnfs_default.png,
- pixmaps/gmon.png, pixmaps/drakbackup.540x57.png,
- pixmaps/smbnfs_mounted.png, pixmaps/wiz_printerdrake.png,
- pixmaps/wiz_default_left.png, pixmaps/wiz_default_up.png,
- pixmaps/drakfont.620x57.png, pixmaps/ic82-tape-40.png,
- pixmaps/wiz_draknet.png, pixmaps/net_d.png,
- pixmaps/ic82-systemeplus-40.png, pixmaps/wiz_drakgw.png,
- pixmaps/mdk_logo.png, pixmaps/ic82-users-40.png,
- pixmaps/ic82-back-up-16.png, pixmaps/hori.png, pixmaps/tradi.png,
- pixmaps/smbnfs_has_mntpoint.png, pixmaps/eth_card_mini2.png,
- pixmaps/wiz_firewall.png, pixmaps/net_u.png, pixmaps/ic82-where-40.png,
- pixmaps/ic82-others-40.png, pixmaps/ic82-network-40.png,
- pixmaps/wiz_scannerdrake.png: removed gfx not used during install
-
-2002/02/21 François Pons <fpons@mandrakesoft.com>
-
- * crypto.pm: fixed another not seen 8.1 reference in label.
- fixed 8.1 release hard coded.
-
-2002/02/21 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/fi.po: updated pot file
- updated Finnish file
-
- * help.pm: updated help file
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
- share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
- share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
- share/po/is.po, share/po/Makefile, share/po/hu.po, share/po/it.po,
- share/po/id.po, share/po/pl.po, share/po/no.po, share/po/th.po,
- share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
- share/po/sl.po, share/po/vi.po, share/po/br.po, share/po/ca.po,
- share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
- share/po/ro.po, share/po/bs.po, share/po/da.po, share/po/zh_TW.po,
- share/po/cs.po, share/po/af.po: updated pot file
-
-2002/02/21 Pixel <pixel@mandrakesoft.com>
-
- * share/themes/blueHeart-button4.png, share/themes-DarkMarble.rc,
- install_gtk.pm, share/themes/DarkMarble-button3_out.png,
- share/themes.rc, share/themes/blueHeart-brown_bg1.png,
- share/themes/DarkMarble-button3_in.png, share/themes-blueHeart.rc,
- share/themes/DarkMarble-check_on.png,
- share/themes/blueHeart-button1.png,
- share/themes/DarkMarble-check_off.png,
- share/themes/blueHeart-button2.png, share/themes/DarkMarble-gloom2.png,
- share/themes/DarkMarble-button3_in_prelight.png,
- share/themes/DarkMarble-button3_out_prelight.png: remove DarkMarble and
- blueHeart themes
-
- * bootloader.pm: have devfs=nomount for failsafe
-
- * Makefile.config, share/po/Makefile: make a difference between PMS and
- ALLPMS. For install, only use PMS
-
- * lvm.pm: ensure lvm tools don't need to be all installed at the same time
-
- * Makefile: template.in stuff removed
- make a difference between PMS and ALLPMS. For install, only use PMS
-
- * pkgs.pm: smarter choosing of processes to kill
-
- * tools/i386/netboot/make_boot_network: cleanup
-
- * modules.pm: add aic7xxx_old
-
- * install_any.pm: ensure lvm tools don't need to be all installed at the
- same time
- (remove_bigseldom_used): remove xf86Wacom.so & mkfs.xfs
- DarkMarble theme is removed
- (kdeicons_postinstall): remove this obsolete code
- no special case for installing imwheel
-
- * lang.pm, tools/make_mdkinst_stage2: LC_COLLATE and LC_CTYPE are
- getFile'd (cuz they are big, causing the .cz2 to be *big*)
-
- * network/smbnfs.pm, network/nfs.pm: nicer conditional displaying of nfs
- comment
-
-2002/02/21 siegel
-
- * share/po/de.po: update
- snapshot
-
-2002/02/21 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Added "type => 'list'" to the printer modification
- menu, it appeared as a drop-down list during the installation.
-
-2002/02/21 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/drakxtv: more translatable strings;
- hide scantv output on console;
- check that we're under X11 before running scantv in an xterm
-
-2002/02/20 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/doc/UPDATEMODULES: add an example on modules with options
- first line comment no more necessary
- s/row/column/, silly me
-
- * standalone.pm: explanations stuff: no reason to use "updated" at a place
- when we
- use "modified" at the rest of the locations..
-
-2002/02/20 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/es.po: updated Spanish file
- updated Spanish file
-
-2002/02/20 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (ejectCdrom): display "files still open:" for all
- processes when umounting fail
-
- * pkgs.pm: much simpler & stronger killing of still running processes
-
- * mouse.pm: USB|Generic is 3 button mice, add a USB 2 Button entry
-
-2002/02/20 dam's <damien@mandrakesoft.com>
-
- * share/themes-marble3d.rc: updated theme
-
- * network/adsl.pm: mgmt install corrected
-
-2002/02/20 daouda
-
- * share/rpmsrate:
- - same weight for rfbdrake in NETWORKING_REMOTE_ACCESS
- NETWORKING_REMOTE_ACCESS_SERVER
-
-2002/02/20 fcrozat
-
- * share/rpmsrate: Remove mozilla-psm from list, it is merged in mozilla
-
-2002/02/20 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem, tools/oem-prepare: synced with newer rpmsrate of
- DrakX and newer method to select INSTALL packages.
-
- * standalone/XFdrake: fixed NVIDIA package in urpmi db by directly using
- urpm library instead of
- parsing (now removed) depslist.ordered file.
-
- * Xconfigurator.pm: fixed default value if selecting a card (use previous
- one or existing one).
- added XFree 4 driver choice if Other|Unlisted is chosen.
- fixed cancel on card selection so that previous choice is not lost.
-
- * Xconfigurator_consts.pm: added @allbutfbdrivers and @alldrivers for
- listing XFree 4 drivers.
-
-2002/02/20 gbeauchesne
-
- * share/rpmsrate:
- - Add gcc3.0-c++ and libstdc++3.0-devel
- - Prefer gcc3.0-java over gcc-java
- - Remove BasiliskII-sheepnet since it does no longer exist
- - Add/prefer BasiliskII-jit over BasiliskII
-
-2002/02/20 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/fr.po: updated FRench file
-
- * share/po/es.po: updated Spanish file
- updated Spanish file
- updated pot file
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/bg.po, share/po/ga.po, share/po/sr.po,
- share/po/de.po, share/po/et.po, share/po/eu.po, share/po/az.po,
- share/po/ru.po, share/po/pt_BR.po, share/po/hr.po, share/po/ko.po,
- share/po/cy.po, share/po/nl.po, share/po/ja.po, share/po/wa.po,
- share/po/sv.po, share/po/is.po, share/po/hu.po, share/po/it.po,
- share/po/id.po, share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
- share/po/ar.po, share/po/sl.po, share/po/vi.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
- share/po/zh_TW.po, share/po/cs.po, share/po/af.po: updated pot file
-
-2002/02/20 Pixel <pixel@mandrakesoft.com>
-
- * share/po/fr.po: fix s/SILO/LILO/
-
- * fsedit.pm: have "with /usr" translated
-
- * install_steps_interactive.pm (loadSavePackagesOnFloppy): add a "Cancel"
- button
-
- * steps.pm: move installUpdates after configureX (workaround for bad
- timeouts during installing updates)
-
- * install_steps.pm, any.pm, standalone/draksec: factorize and update the
- reading of previous security level
-
-2002/02/20 siegel
-
- * share/po/de.po: update
-
-2002/02/20 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * share/po/fr.po: update french translations
-
-2002/02/20 dam's <damien@mandrakesoft.com>
-
- * share/advertising/13-Nvert.pl: changed toll free
-
- * my_gtk.pm: added mcc kill if wait message
-
- * standalone/logdrake: cosmetic change, mcc compliance
-
-2002/02/20 daouda
-
- * share/rpmsrate:
- - same weight for rfbdrake in NETWORKING_REMOTE_ACCESS
- NETWORKING_REMOTE_ACCESS_SERVER
-
-2002/02/20 fcrozat
-
- * share/rpmsrate: Remove mozilla-psm from list, it is merged in mozilla
-
-2002/02/20 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm, install_any.pm: fixed INSTALL category in rpmsrate for copying
- file when changing cd (was an
- limitation in read_rpmsrate when a package having a category and INSTALL
- caused
- INSTALL to be dropped).
-
-2002/02/20 gbeauchesne
-
- * share/rpmsrate:
- - Add gcc3.0-c++ and libstdc++3.0-devel
- - Prefer gcc3.0-java over gcc-java
- - Remove BasiliskII-sheepnet since it does no longer exist
- - Add/prefer BasiliskII-jit over BasiliskII
-
-2002/02/20 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/advertising/07-server.pl, share/advertising/01-gnu.pl: Improved
- English strings
-
- * share/po/hu.po, share/po/es.po, share/po/ar.po: updated Hungarian and
- Spanish files
-
-2002/02/20 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm: remove fsck_option (obsolete)
-
- * share/po/fr.po: fix s/SILO/LILO/
-
- * fsedit.pm: have "with /usr" translated
-
- * install_steps_interactive.pm (loadSavePackagesOnFloppy): add a "Cancel"
- button
-
- * steps.pm: move installUpdates after configureX (workaround for bad
- timeouts during installing updates)
-
- * install_steps.pm, any.pm, standalone/draksec: factorize and update the
- reading of previous security level
-
-2002/02/20 siegel
-
- * share/po/de.po: snapshot
-
-2002/02/19 dam's <damien@mandrakesoft.com>
-
- * share/advertising/Makefile: new Makefile to install ads
-
-2002/02/19 fcrozat
-
- * share/rpmsrate:
- -Install gnome-vfs-extras when installing nautilus (to get samba
- browsing)
- -don't install nautilus-mozilla, it is pulled by nautilus
-
-2002/02/19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * any.pm: english fix
-
-2002/02/19 Pixel <pixel@mandrakesoft.com>
-
- * share/advertising/Makefile: advertising installation cleanup
-
- * diskdrake/smbnfs_gtk.pm: ugly hack to fix die
-
-2002/02/19 siegel
-
- * share/po/de.po: updates for beta 3
-
-2002/02/19 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Changed button texts of "Do you want to auto-detect?"
- dialog.
-
-2002/02/19 dam's <damien@mandrakesoft.com>
-
- * share/advertising/Makefile: new Makefile to install ads
-
-2002/02/19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * any.pm: report_bug: find syslog in /var/log if it's not in /tmp, add
- $prefix in front of /var/* when missing
- since we give "lilo.conf" in drakbug_report, let's also
- give "menu.lst"
-
-2002/02/19 Pixel <pixel@mandrakesoft.com>
-
- * share/advertising/Makefile: advertising installation cleanup
-
-2002/02/19 siegel
-
- * share/po/de.po: updates for beta 3
-
-2002/02/19 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Changed button texts of "Do you want to auto-detect?"
- dialog.
-
-2002/02/19 dam's <damien@mandrakesoft.com>
-
- * network/netconnect.pm: setting help
-
- * share/advertising/10-MDKexpert.png, share/advertising/07-server.png,
- share/advertising/05-contcenter.png, share/advertising/03-graphic.png,
- share/advertising/12-MDKstore_icon.png,
- share/advertising/06-user_icon.png,
- share/advertising/04-develop_icon.png,
- share/advertising/12-MDKstore.png, share/advertising/00-thanks.png,
- share/advertising/06-user.png, share/advertising/02-internet_icon.png,
- share/advertising/04-develop.png,
- share/advertising/05-contcenter_icon.png,
- share/advertising/10-MDKexpert_icon.png, share/advertising/13-Nvert.png,
- share/advertising/11-consul.png, share/advertising/03-graphic_icon.png,
- share/advertising/02-internet.png, share/advertising/07-server_icon.png,
- share/advertising/01-gnu.png, share/advertising/08-games.png,
- share/advertising/09-MDKcampus.png,
- share/advertising/09-MDKcampus_icon.png,
- share/advertising/08-games_icon.png: re-adding with -kb
- removing for re-adding with -kb
- added advertising for translation
-
- * share/advertising/essi.p: blah
- added advertising for translation
-
- * my_gtk.pm: new icon handler
-
- * Makefile.config: addde share/advertising/*.pl for translation
-
- * share/advertising/Makefile: new Makefile to install ads
-
- * share/advertising/00-thanks.pl, share/advertising/06-user.pl,
- share/advertising/08-games.pl, share/advertising/list,
- share/advertising/09-MDKcampus.pl, share/advertising/01-gnu.pl,
- share/advertising/11-consul.pl, share/advertising/13-Nvert.pl,
- share/advertising/02-internet.pl, share/advertising/07-server.pl,
- share/advertising/10-MDKexpert.pl, share/advertising/04-develop.pl,
- share/advertising/05-contcenter.pl, share/advertising/12-MDKstore.pl,
- share/advertising/03-graphic.pl: added advertising for translation
-
-2002/02/19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * any.pm: report_bug: find syslog in /var/log if it's not in /tmp, add
- $prefix in front of /var/* when missing
- since we give "lilo.conf" in drakbug_report, let's also
- give "menu.lst"
-
-2002/02/19 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/vi.po, share/po/hu.po: updated Vietnamese and Hungarian files
-
-2002/02/19 Pixel <pixel@mandrakesoft.com>
-
- * share/advertising/Makefile: advertising installation cleanup
-
- * install2.pm: anchor the -IP match at the end of the string
- move loading /tmp/network from stage1 before doing the auto_install
- stuff to
- allow the -IP feature on auto_install file name
-
- * share/rpmsrate: add grub in 4 SYSTEM
-
-2002/02/19 Till Kamppeter <till@mandrakesoft.com>
-
- * standalone/printerdrake, printer.pm: Assured that the default page size
- is "Letter" for US/Canada and "A4" for the rest of the world.
- The "Description" field of a printer queue is filled in with printer
- manufacturer and model by default.
- Removed unused varaiables in /usr/sbin/printerdrake.
-
- * printerdrake.pm: Changed button texts of "Do you want to auto-detect?"
- dialog.
- Assured that the default page size is "Letter" for US/Canada and "A4"
- for the rest of the world.
- The "Description" field of a printer queue is filled in with printer
- manufacturer and model by default.
- Removed unused varaiables in /usr/sbin/printerdrake.
-
- * install_steps_interactive.pm: Replaced "a4" and "letter" by "A4" and
- "Letter" so that Foomatic recognizes
- the paper sizes.
- Also use "Letter" paper for "en_CA" and "fr_CA" locales.
-
-2002/02/18 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/network.c: when no net device found, print a msg to tell
- that now most pcmcia network adapters are supported
- with network.img
-
-2002/02/18 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * help.pm: updated help file
-
- * share/po/sp.po, share/po/zh_CN.po, share/po/DrakX.pot, share/po/th.po,
- share/po/es.po, share/po/fr.po, share/po/sr.po, share/po/de.po,
- share/po/sk.po, share/po/tr.po, share/po/eu.po, share/po/sl.po,
- share/po/vi.po, share/po/uk.po, share/po/wa.po, share/po/sv.po,
- share/po/zh_TW.po, share/po/it.po: updated pot file
-
-2002/02/18 Pixel <pixel@mandrakesoft.com>
-
- * lang.pm, standalone/localedrake:
- - handle --kde_lang with optionally --kde_country
- - handle --apply
-
- * install_steps_gtk.pm: s/hbox/vbox for "Select Install Class"
-
-2002/02/18 dam's <damien@mandrakesoft.com>
-
- * share/logo-mandrake.png: new gfx
-
-2002/02/18 fcrozat
-
- * share/rpmsrate: Install Guppi when installing gnumeric
-
-2002/02/18 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: titi sucks again
-
-2002/02/18 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sk.po: updated Slovak ile
- updated pot file
-
- * help.pm: updated help file
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/ga.po, share/po/sr.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/it.po, share/po/id.po, share/po/pl.po,
- share/po/fi.po, share/po/no.po, share/po/th.po, share/po/el.po,
- share/po/lt.po, share/po/ar.po, share/po/sl.po, share/po/vi.po,
- share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
- share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/bs.po,
- share/po/da.po, share/po/zh_TW.po, share/po/cs.po, share/po/af.po:
- updated pot file
-
-2002/02/18 Pixel <pixel@mandrakesoft.com>
-
- * detect_devices.pm:
- - remove media_type cdrom-burner, use {capacity} instead
- - use /proc/sys/dev/cdrom/info to fill in the {capacity}
-
- * diskdrake/smbnfs_gtk.pm:
- - add Cancel
- - move "click here" in "Search servers" on the right side
- - remove Export
- - fix bug
-
- * share/rpmsrate: raise xsane in SCANNER (Yves Duret)
- raise mkisofs & cdrecord in BURNER
-
- * Xconfigurator.pm: workaround not having the right to connect to our new
- created test server.
- info about the pb (sorry for the french):
- quand on lance le serveur
- - via xdm/kdm/startx, ca utilise xauth, xhost est fermé
- - via X/xinit, xhost est ouvert sur localhost, xauth n'est pas utilisé
- *sauf* si X/xinit est lancé à partir d'un X *et* .Xauthority est non
- vide.
- dans ce cas, xhost est fermé, et aucun xauth n'est ajouté
- une conséquence, c'est que XFdrake ne peut pas accéder au X de
- test si XFdrake est lancé sous X ou "xauth list" est non vide
- exception: quand on lance le xdm/kdm en root, xhost n'est pas
- fermé,
- pas contre il est fermé en root & startx.
-
- * any.pm (fileshare_config): rework the custom message and launch
- userdrake
- (report_bug): add lilo.conf
-
- * standalone/localedrake:
- - handle --kde_lang with optionally --kde_country
- - handle --apply
- change the message & ask wether to logout or not
-
- * lang.pm:
- - handle --kde_lang with optionally --kde_country
- - handle --apply
- (lang2kde_lang): add missing valid_kde_langs
- fuzzy language finding between available langs when it doesn't match
- (useful for upgrades where fr_FR was fr_FR@euro)
-
- * diskdrake/interactive.pm: remove cdrom-burner from media_type set
-
- * install_steps_gtk.pm: s/hbox/vbox for "Select Install Class"
-
- * fs.pm (mount_options_unpack): add usrquota and grpquota for
- ext2/ext3/reiserfs/xfs
- - remove media_type cdrom-burner, use {capacity} instead
- - use /proc/sys/dev/cdrom/info to fill in the {capacity}
-
- * share/compssUsers: add EDITORS in Development/Development
- add EDITORS in Development/Development
-
-2002/02/18 yduret
-
- * bootlook.pm: remove aurora part (commented for the moment)
-
- * standalone/scannerdrake: HP OfficeJet support
- scsi/parport preliminary support
-
- * scanner.pm: update
- scsi parport preliminary support
- no more show unsupported scanner
- common output for ScannerDB update from sane *.desc files and from
- usbtable
-
-2002/02/17 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake/interactive.pm: warn_if_renumbered now also done at install
-
-2002/02/17 Pixel <pixel@mandrakesoft.com>
-
- * share/rpmsrate: have icewm-light in any case (to be used as a failsafe
- window manager)
- add hotplug, usbutils and usbview with the new flag USB
-
- * install_any.pm: hotplug now handled via rpmsrate and the USB flag
- add some log to know why umounting /tmp/image fail
-
- * diskdrake/interactive.pm: warn_if_renumbered now also done at install
- force scalar context for warp_text
-
- * share/po/id.xsl, share/po/help_xml2pm.pl: use xsltproc as a filter to
- remove entities
-
- * share/po/Makefile (clean): remove .memdump
-
- * any.pm (autologin): do not allow empty user name since no autologin can
- already be achieved by choosing "No"
-
- * install2.pm: do not use run_program::xxx, use directly "system" so that
- stdout is kept unchanged during "postInstall" execution
-
- * network/smb.pm: fix typo (s/nfs/smbfs/)
-
-2002/02/17 siegel
-
- * help.pm: new version for 8.2
-
- * share/po/de.po: new german version
-
- * share/po/help_xml2pm.pl: added check for missing xsltproc
- fix perl warnings after adding -w
-
- * share/po/.cvsignore: added .memdump
-
- * share/po/Makefile: allow me to work with a symlink to doc in this
- directory
-
-2002/02/16 Pixel <pixel@mandrakesoft.com>
-
- * lvm.pm:
- - LVs "device" field were containing "/dev/vg/number" whereas it must
- be "vg/name"
- - added lv_resize
-
- * diskdrake/interactive.pm: add Resize'ing mounted XFS on LVM
-
- * crypto.pm (mirrors): add a timeout via "alarm" (needs testing)
-
-2002/02/16 Pixel <pixel@mandrakesoft.com>
-
- * Xconfig.pm:
- - prefer XKB available from existing XF86Config over
- /etc/sysconfig/keyboard KEYTABLE
- - fix translating from /etc/sysconfig/keyboard KEYTABLE to XKB
-
- * diskdrake/interactive.pm: add Resize'ing mounted XFS on LVM
-
- * interactive_newt.pm: do not trash error messages if testing
-
- * lang.pm (country2lang): created
- (write): ensure it doesn't fail when kdeglobals is not writable (eg: the
- directory doesn't exist)
- (list): return the languages in a "specific" order (favours non utf8
- over utf8)
-
- * crypto.pm (mirrors): add a timeout via "alarm" (needs testing)
-
- * install_steps_interactive.pm (setupSCSI): when "clicked", ask "Do you
- have any SCSI interfaces" instead
- of assuming there is a SCSI interface and asking the driver name
-
- * lvm.pm:
- - LVs "device" field were containing "/dev/vg/number" whereas it must
- be "vg/name"
- - added lv_resize
- - call pvcreate with "-y -ff"
- - created LVs are notFormatted
-
- * interactive.pm:
- - fix non X + testing + su
- - since "interactive" takes care of "format" for type "combo", remove
- "format" (so that interactive_newt which switch to type "list" don't
- apply
- "format" once again)
-
- * standalone/localedrake: handle --kde_country=<country>
-
-2002/02/16 Pixel <pixel@mandrakesoft.com>
-
- * lang.pm (country2lang): created
- (write): ensure it doesn't fail when kdeglobals is not writable (eg: the
- directory doesn't exist)
- (list): return the languages in a "specific" order (favours non utf8
- over utf8)
- fix call to update_gnomekderc
-
- * standalone/localedrake: handle --kde_country=<country>
-
-2002/02/16 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/da.po: updated Danish file
-
- * share/po/sk.po, share/po/cs.po, share/po/es.po: updated Czech, Spanish
- and Slovak files
-
-2002/02/16 Pixel <pixel@mandrakesoft.com>
-
- * lang.pm: fix call to update_gnomekderc
- remove unused & unneeded special %lang2kde_lang
- - add lang::check
- - fix utf-ko -> utf_ko
- - fix utf-14 -> utf_14
- - modify share/config/kdeglobals
- - add charset2kde_charset, lang2country, lang2kde_lang
-
-2002/02/15 dam's <damien@mandrakesoft.com>
-
- * standalone/drakfont: embedded mode correction
-
- * my_gtk.pm: highlight in gtk icon widget
-
- * share/themes/mdk-check_on.png, share/themes/mdk-toggle_off.png,
- share/themes/mdk-toggle_on.png, share/themes/mdk-check_off.png: new gfx
-
- * share/step-red.xpm, share/step-orange.xpm, share/step-orange-click.xpm,
- share/step-green-click.xpm, share/step-green.xpm, share/step-red-on.xpm,
- share/step-orange-on.xpm, share/step-green-on.xpm,
- share/step-red-click.xpm: new gfx
- new gfx
-
-2002/02/15 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/vi.po, share/po/fi.po, share/po/DrakX.pot, share/po/fr.po,
- share/po/wa.po, share/po/da.po, share/po/cs.po, share/po/hu.po,
- share/po/eu.po: updated Basque file; fixed a msgid change
-
- * share/po/sv.po: updated Swedish file
- updated Basque file; fixed a msgid change
-
-2002/02/15 Pixel <pixel@mandrakesoft.com>
-
- * run_program.pm: remove assigning STDIN to /dev/null since:
- - programs should not use STDIN
- - the "postInstall" script for auto_install's is more happy still
- having the STDIN.
-
- * diskdrake/smbnfs_gtk.pm, pixmaps/smbnfs_has_mntpoint.png,
- pixmaps/smbnfs_default.png, pixmaps/smbnfs_mounted.png,
- pixmaps/smbnfs_server.png: add icons showing if a mount-point is
- associated or if the share is mounted
-
- * pkgs.pm: fix typo
-
- * diskdrake/interactive.pm: use the new warp_text
-
- * install_steps.pm: use lang::charset2kde_charset
-
- * standalone/localedrake: lang::write doesn't need the filename anymore
-
- * any.pm: use 'combo' instead of 'type' for bootloader choice and security
- choice
- (requested by fredb&dadou)
-
- * interactive_gtk.pm: force scalar for Gtk::Label->new with warp_text
-
- * interactive.pm: favour "combo" over "list" in any case
-
- * Makefile (check): add lang::check checking
-
-2002/02/15 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * share/po/fr.po: update translation
-
-2002/02/14 Pixel <pixel@mandrakesoft.com>
-
- * standalone/lsnetdrake: adapt to the neater network::smb and network::nfs
-
- * network/smb.pm, network/smbnfs.pm, network/nfs.pm: cleaner & OOed code,
- with more code sharing
-
- * interactive_gtk.pm, diskdrake/interactive.pm: use the new warp_text
- feature
-
- * my_gtk.pm (ctree_set_icon): new function
-
- * diskdrake/smbnfs_gtk.pm: some cleanup, icons showing wether a
- mount-point is associated are coming
-
- * standalone/diskdrake: fix expert and testing options handling
-
-2002/02/14 dam's <damien@mandrakesoft.com>
-
- * standalone/drakfont: embedded mode
- drakfont embedde mode
-
- * share/step-red-on.xpm, share/step-red.xpm, share/step-orange.xpm,
- share/step-orange-on.xpm, share/step-orange-click.xpm,
- share/step-green-click.xpm, share/step-red-click.xpm,
- share/step-green-on.xpm: new gfx
-
-2002/02/14 erwan
-
- * tools/i386/netboot/ni5010/pxegrub, tools/i386/netboot/epic100/stage1,
- tools/i386/netboot/epic100/stage2, tools/i386/netboot/3c90x/pxegrub,
- tools/i386/netboot/rtl8139/pxegrub, tools/i386/netboot/ni5210/nbgrub,
- tools/i386/netboot/otulip/stage1, tools/i386/netboot/otulip/stage2,
- tools/i386/netboot/exos205/nbgrub, tools/i386/netboot/eepro/stage1,
- tools/i386/netboot/eepro/stage2, tools/i386/netboot/3c529/nbgrub,
- tools/i386/netboot/smc9000/pxegrub, tools/i386/netboot/ne2100/stage1,
- tools/i386/netboot/ne2100/stage2, tools/i386/netboot/exos205/pxegrub,
- tools/i386/netboot/sis900/nbgrub, tools/i386/netboot/ne/stage1,
- tools/i386/netboot/ne/stage2, tools/i386/netboot/tulip/nbgrub,
- tools/i386/netboot/sk_g16/nbgrub, tools/i386/netboot/eepro100/pxegrub,
- tools/i386/netboot/tiara/nbgrub, tools/i386/netboot/rtl8139/stage1,
- tools/i386/netboot/rtl8139/stage2, tools/i386/netboot/tiara/pxegrub,
- tools/i386/netboot/lance/nbgrub, tools/i386/netboot/depca/nbgrub,
- tools/i386/netboot/ni6510/stage1, tools/i386/netboot/3c90x/nbgrub,
- tools/i386/netboot/ni6510/stage2, tools/i386/netboot/smc9000/stage1,
- tools/i386/netboot/smc9000/stage2, tools/i386/netboot/3c509/pxegrub,
- tools/i386/netboot/3c509/stage1, tools/i386/netboot/3c509/stage2,
- tools/i386/netboot/sis900/pxegrub, tools/i386/netboot/ne2100/pxegrub,
- tools/i386/netboot/3c595/nbgrub, tools/i386/netboot/eepro/pxegrub,
- tools/i386/netboot/wd/nbgrub, tools/i386/netboot/ns8390/nbgrub,
- tools/i386/netboot/ni5210/stage1, tools/i386/netboot/ni5010/nbgrub,
- tools/i386/netboot/ni5210/stage2, tools/i386/netboot/exos205/stage1,
- tools/i386/netboot/exos205/stage2, tools/i386/netboot/eepro100/nbgrub,
- tools/i386/netboot/3c529/stage1, tools/i386/netboot/3c529/stage2,
- tools/i386/netboot/sis900/stage1, tools/i386/netboot/tulip/stage1,
- tools/i386/netboot/sis900/stage2, tools/i386/netboot/tulip/stage2,
- tools/i386/netboot/sk_g16/stage1, tools/i386/netboot/w89c840/nbgrub,
- tools/i386/netboot/sk_g16/stage2, tools/i386/netboot/tiara/stage1,
- tools/i386/netboot/tiara/stage2, tools/i386/netboot/depca/stage1,
- tools/i386/netboot/lance/stage1, tools/i386/netboot/3c90x/stage1,
- tools/i386/netboot/depca/stage2, tools/i386/netboot/lance/stage2,
- tools/i386/netboot/3c90x/stage2, tools/i386/netboot/otulip/pxegrub,
- tools/i386/netboot/tulip/pxegrub, tools/i386/netboot/epic100/nbgrub,
- tools/i386/netboot/3c595/stage1, tools/i386/netboot/ni5210/pxegrub,
- tools/i386/netboot/3c595/stage2, tools/i386/netboot/w89c840/pxegrub,
- tools/i386/netboot/wd/stage1, tools/i386/netboot/wd/pxegrub,
- tools/i386/netboot/wd/stage2, tools/i386/netboot/otulip/nbgrub,
- tools/i386/netboot/ns8390/stage1, tools/i386/netboot/eepro/nbgrub,
- tools/i386/netboot/ni5010/stage1, tools/i386/netboot/ns8390/stage2,
- tools/i386/netboot/ni5010/stage2, tools/i386/netboot/ne2100/nbgrub,
- tools/i386/netboot/ni6510/pxegrub, tools/i386/netboot/eepro100/stage1,
- tools/i386/netboot/eepro100/stage2, tools/i386/netboot/ne/nbgrub,
- tools/i386/netboot/depca/pxegrub, tools/i386/netboot/ne/pxegrub,
- tools/i386/netboot/w89c840/stage1, tools/i386/netboot/rtl8139/nbgrub,
- tools/i386/netboot/w89c840/stage2, tools/i386/netboot/sk_g16/pxegrub,
- tools/i386/netboot/lance/pxegrub, tools/i386/netboot/ni6510/nbgrub,
- tools/i386/netboot/smc9000/nbgrub, tools/i386/netboot/3c529/pxegrub,
- tools/i386/netboot/3c595/pxegrub, tools/i386/netboot/ns8390/pxegrub,
- tools/i386/netboot/epic100/pxegrub, tools/i386/netboot/3c509/nbgrub: New
- version of grub (0.91) with allstage and pxegrub
-
- * tools/i386/netboot/3c507/pxegrub, tools/i386/netboot/3c507/stage1,
- tools/i386/netboot/3c507/stage2, tools/i386/netboot/3c503/nbgrub,
- tools/i386/netboot/3c503/pxegrub, tools/i386/netboot/3c507/nbgrub,
- tools/i386/netboot/3c503/stage1, tools/i386/netboot/3c503/stage2:
- Fixning some file missing in netboot
-
-2002/02/14 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: fixed obsoletes management according to urpmi code.
-
-2002/02/14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ga.po, share/po/cy.po, share/po/is.po, share/po/ar.po,
- share/po/sl.po, share/po/ro.po: Instead of temporary removingfiles from
- CVS put a rule in Makefile to
- don't use them (thanks Thierry)
- updated some po files; removed the ones too lowly translated for the 8.2
-
- * share/po/pt_BR.po: updted Brazilian file
- updated some po files; removed the ones too lowly translated for the 8.2
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/sr.po,
- share/po/de.po, share/po/et.po, share/po/tr.po, share/po/az.po,
- share/po/ru.po, share/po/hr.po, share/po/ko.po, share/po/nl.po,
- share/po/ja.po, share/po/sv.po, share/po/hu.po, share/po/it.po,
- share/po/id.po, share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
- share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
- share/po/uk.po, share/po/eo.po, share/po/bs.po, share/po/zh_TW.po,
- share/po/cs.po, share/po/af.po: updated some po files; removed the ones
- too lowly translated for the 8.2
-
- * share/po/vi.po: updated Vietnamese file
- updated some po files; removed the ones too lowly translated for the 8.2
-
- * share/po/Makefile: Instead of temporary removingfiles from CVS put a
- rule in Makefile to
- don't use them (thanks Thierry)
-
-2002/02/14 Pixel <pixel@mandrakesoft.com>
-
- * standalone/lsnetdrake: adapt to the neater network::smb and network::nfs
-
- * network/smbnfs.pm, network/smb.pm, network/nfs.pm: cleaner & OOed code,
- with more code sharing
-
- * interactive.pm: if testing, don't use kdesu
-
- * install_steps.pm: gzip report.bug
-
- * interactive_gtk.pm, diskdrake/interactive.pm: use the new warp_text
- feature
-
- * standalone/diskdrake: fix expert and testing options handling
-
- * my_gtk.pm (ctree_set_icon): new function
-
- * c/stuff.xs.pm: undef'ing some macros used by 2 independent sources et
- still needed :-(
- #include iconv.h is needed even when C_RPM is undefined
-
- * diskdrake/smbnfs_gtk.pm: some cleanup, icons showing wether a
- mount-point is associated are coming
-
-2002/02/14 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * share/po/br.po: update
- convert to utf-8
-
- * standalone/drakxtv: uses xawtv internal strings instead of frequencies
- tables ids as values
- in %freqtables in order to enhance drakxtv robustness when
- translators'll
- arrive. thus we'll pass right strings to scantv instead of translated
- ones
- explain how we manage the "all frequencies" case
- display sorted tv norms
-
-2002/02/13 erwan
-
- * tools/i386/netboot/device.map, tools/i386/netboot/makeImages: Adding
- missing file on netboot
-
- * tools/i386/netboot/make_boot_network, tools/i386/netboot/grub: updating
- grub in netboot
-
-2002/02/13 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: avoid generating headers for copying file in
- postinstall-rpm directory.
- make sure not to crash if a package that should have been in CD1 is
- somewhere
- else.
- fixed stupid typo.
- removed all @needToCopy... variables and now use INSTALL category in
- rpmsrate.
-
- * share/rpmsrate: updated INSTALL category with the merge of DrakX
- obsoleted list (it will use
- INSTALL now :-)
-
- * pkgs.pm: added extension to setSelectedFromCompssList.
-
- * share/rpmsrate.server: synced INSTALL category with standard rpmsrate.
-
-2002/02/13 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hu.po: updated Danish and Hungarian files
-
- * share/po/da.po: updated Danish file
- updated Danish and Hungarian files
-
-2002/02/13 Pixel <pixel@mandrakesoft.com>
-
- * network/nfs.pm: $server->{ip} is no more mandatory
-
- * network/smb.pm: don't show shares ending with "$"
- $server->{ip} is no more mandatory
-
- * any.pm (setupBootloader): switch from "list" to "combo"
-
- * fs.pm (fstab_to_string): unsetting mount points in standalone will now
- work
- - handle WORM type in /proc/scsi/scsi
- - added media_type cdrom-burner
- - adapting to new media_type
- - nicer fd&hd testing
-
- * diskdrake/smbnfs_gtk.pm: have the fstab entries shown by default
-
- * detect_devices.pm, diskdrake/interactive.pm:
- - handle WORM type in /proc/scsi/scsi
- - added media_type cdrom-burner
- - adapting to new media_type
- - nicer fd&hd testing
-
-2002/02/13 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: When one visited the help page of a remote CUPS printer
- afterwards the full
- printer modification menu was shown, not only the one for remote CUPS
- printers. This is fixed now.
-
-2002/02/12 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/wa.po, share/po/DrakX.pot: updated Czech and Walloon files
-
- * share/po/cs.po: updated Czech file
- updated Czech and Walloon files
-
-2002/02/12 Pixel <pixel@mandrakesoft.com>
-
- * devices.pm: i prefer /(.*?)(\d+)$/ to /(.*\D)(\d+)$/
-
-2002/02/12 Till Kamppeter <till@mandrakesoft.com>
-
- * detect_devices.pm: In the USB auto-detection checked whether and where
- the device node was
- created.
-
-2002/02/12 dam's <damien@mandrakesoft.com>
-
- * share/step-red.xpm, share/step-orange.xpm, share/step-orange-click.xpm,
- share/themes/mdk-check_on.png, share/step-green-click.xpm,
- share/step-green.xpm, share/step-red-click.xpm,
- share/themes/mdk-check_off.png: new gfx
-
- * standalone/drakbackup, network/network.pm: bug correction
-
-2002/02/12 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hu.po: updated Hungarian file
- updated pot file
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/eu.po,
- share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
- share/po/ko.po, share/po/cy.po, share/po/nl.po, share/po/ja.po,
- share/po/wa.po, share/po/sv.po, share/po/is.po, share/po/it.po,
- share/po/id.po, share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
- share/po/ar.po, share/po/sl.po, share/po/vi.po, share/po/ca.po,
- share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
- share/po/ro.po, share/po/bs.po, share/po/da.po, share/po/zh_TW.po,
- share/po/cs.po, share/po/af.po: updated pot file
-
-2002/02/12 Pixel <pixel@mandrakesoft.com>
-
- * devices.pm: i prefer /(.*?)(\d+)$/ to /(.*\D)(\d+)$/
-
- * docs/README.pxe: cleanup the .cfg
-
- * share/rpmsrate:
- - move bootsplash from SYSTEM to X
- - lower Aurora
-
-2002/02/12 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Fixed:
- - Endless loop when entering printerdrake during installation in
- recommended
- mode without local printer
- - Printerdrake was not closed when one was in the "Add Printer"
- sequence
- during installation and one clicked another installation item (entries
- on left hand side)
- - When configuring printing only after installation Printerdrake tried
- to
- check the installed queues without Foomatic being installed (bug was
- already in 8.1, but noone discovered it).
- - CUPS died when one tried to add a (local) printer in recommended
- mode
- after installation.
- - Improved text for the dialog telling that no local printer was
- detected.
- - The list of auto-detected printers appeared as drop-down menu and
- not as
- a list.
-
- * detect_devices.pm: In the USB auto-detection checked whether and where
- the device node was
- created.
- Fixes on device auto-detection:
- - Made USB printer auto-detection routine in "detect_devices.pm"
- creating
- the appropriate device nodes (needed for USB printers being recognized
- during installation).
- - Fixed "devices.pm" to be able to handle device files with numbers
- geater
- than 9 (ex: /dev/usb/lp10).
-
- * standalone/printerdrake:
- - Assure that Foomatic is installed before checking existing printer
- queues.
-
- * devices.pm: Fixes on device auto-detection:
- - Made USB printer auto-detection routine in "detect_devices.pm"
- creating
- the appropriate device nodes (needed for USB printers being recognized
- during installation).
- - Fixed "devices.pm" to be able to handle device files with numbers
- geater
- than 9 (ex: /dev/usb/lp10).
-
- * printer.pm: Added forgotten '$prefix'es.
- Fixed:
- - Endless loop when entering printerdrake during installation in
- recommended
- mode without local printer
- - Printerdrake was not closed when one was in the "Add Printer"
- sequence
- during installation and one clicked another installation item (entries
- on left hand side)
- - When configuring printing only after installation Printerdrake tried
- to
- check the installed queues without Foomatic being installed (bug was
- already in 8.1, but noone discovered it).
- - CUPS died when one tried to add a (local) printer in recommended
- mode
- after installation.
- - Improved text for the dialog telling that no local printer was
- detected.
- - The list of auto-detected printers appeared as drop-down menu and
- not as
- a list.
-
-2002/02/11 dam's <damien@mandrakesoft.com>
-
- * share/list: added modinfo
-
- * network/netconnect.pm: added cancel for first step
-
-2002/02/11 François Pons <fpons@mandrakesoft.com>
-
- * any.pm: fixed syntax error...
-
- * Xconfigurator.pm: avoid testing fbdev driver.
-
- * install_steps.pm: added Aurora or bootsplash for getting a need on frame
- buffer.
- added fbdev for GeForce Integrated.
-
-2002/02/11 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/da.po, share/po/vi.po, share/po/hu.po: updated Danish,
- Hungarian and Vietnamese files
-
-2002/02/11 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: booh, fpons was faster than me on "bootsplash wanting
- fb". Keeping my solution ;p
-
- * c/stuff.xs.pm: "standard_charset" and "iconv" are needed even when C_RPM
- is undefined
-
- * any.pm: allow to edit the initrd field (thx to randy.k.wilson)
-
- * install_any.pm (@needToCopy): add "ntp"
-
-2002/02/11 warly
-
- * share/rpmsrate: remove dev from INSTALL, the sun is rising, and there
- are no more needs to have ppp in the INSTALL section, as the darkness is
- going away...
-
-2002/02/10 Pixel <pixel@mandrakesoft.com>
-
- * any.pm: in case there is both ata66 (hde) and ata33 hard drives, go to
- expert
- questions directly (it would need a semi_auto asking on which drive the
- bios
- boots...)
-
-2002/02/10 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/nl.po: updated Dutch file
-
-2002/02/09 daouda
-
- * share/rpmsrate:
- - add rfbdrake to NETWORKING_REMOTE_ACCESS and
- NETWORKING_REMOTE_ACCESS_SERVER
-
-2002/02/09 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * help.pm: updated help.pm file
-
- * share/po/fi.po, share/po/DrakX.pot, share/po/help_xml2pm.pl,
- share/po/es.po, share/po/fr.po, share/po/sv.po, share/po/da.po,
- share/po/de.po, share/po/hu.po, share/po/it.po, share/po/eu.po: merged
- with the manual help
-
-2002/02/09 warly
-
- * share/rpmsrate: add ppp in INSTALL
- add dev in INSTALL
-
-2002/02/08 dam's <damien@mandrakesoft.com>
-
- * pixmaps/wiz_drakgw.png, pixmaps/wiz_default_up.png,
- pixmaps/wiz_firewall.png, pixmaps/wiz_draknet.png: new gfx
-
- * network/network.pm: corrected wireless modules
-
-2002/02/08 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm, share/locales-skeleton.tar.bz2: Added choice of charset for
- various languages
-
-2002/02/08 Pixel <pixel@mandrakesoft.com>
-
- * docs/SHORTCUTS: add F1 & F2
-
-2002/02/08 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Added instructions for scanning on HP's MF devices to
- the printer help page.
- HP PhotoSmart printers do not scan, so do not show how to scan with
- them.
- Do not let dialogs of network configuration correction appear embedded
- in the "Add printer" wizard.
- Completed wizard mode for adding a printer in both recommended and
- expert mode.
-
- * printer.pm: Enabled transferring queues of HP multi-function devices
- between spoolers.
- CUPS 1.1.13 dies on SIGHUP, do normal restart instead.
- Completed wizard mode for adding a printer in both recommended and
- expert mode.
-
-2002/02/08 warly
-
- * share/rpmsrate: add bootsplash in system 4
-
-2002/02/07 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
- share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
- share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
- share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po, share/po/th.po,
- share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
- share/po/sl.po, share/po/vi.po, share/po/br.po, share/po/ca.po,
- share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
- share/po/ro.po, share/po/bs.po, share/po/da.po, share/po/zh_TW.po,
- share/po/cs.po, share/po/af.po: updated pot file
-
-2002/02/07 Pixel <pixel@mandrakesoft.com>
-
- * interactive_gtk.pm: fix error causing a bad window sizing when there is
- a horiz scroll
-
-2002/02/07 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm: fixed shadow when testing X
-
-2002/02/07 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/help_xml2pm.pl: fixed email address
-
-2002/02/07 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake/smbnfs_gtk.pm:
- - don't pop the "do you want to install samba?"
- - rwindow is not a window when embedded, so set_default_size only if
- possible
-
- * my_gtk.pm: make perl_checker happy
- ensure no more than one child is in the Plug
-
- * interactive.pm: fix (causing XFdrake to use a combo instead of a list)
-
- * interactive_gtk.pm: fix error causing a bad window sizing when there is
- a horiz scroll
- (exit): ensure USR1 is sent to mcc
-
- * Xconfigurator.pm: allow to edit the hsyncrange and vsyncrange when
- choosing monitor "Custom"
-
- * install2.pm, install_steps.pm: create and use miscellaneousAfter (so
- that SECURE_LEVEL is set *after* asking)
-
- * diskdrake/interactive.pm (Options): wrap the help text
-
- * standalone/diskdrake: handle --embedded xxx xxx
-
-2002/02/07 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * standalone/drakxtv, Makefile.config: add drakxtv (scantv gui)
-
- * standalone/localedrake: fix pixel stuff: don't restart wm on cancel
-
-2002/02/07 dam's <damien@mandrakesoft.com>
-
- * share/logo-mandrake.png: beta 2
-
- * printerdrake.pm: corrected wizard pb
-
- * my_gtk.pm: wizard fixes
-
-2002/02/07 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm (mount): precise the type when mounting in standalone (for smb,
- nfs would not need it)
-
- * diskdrake/smbnfs_gtk.pm:
- - don't pop the "do you want to install samba?"
- - rwindow is not a window when embedded, so set_default_size only if
- possible
-
- * interactive.pm: fix (causing XFdrake to use a combo instead of a list)
-
- * my_gtk.pm: ensure no more than one child is in the Plug
-
- * standalone/diskdrake: handle --embedded xxx xxx
-
- * interactive_gtk.pm (exit): ensure USR1 is sent to mcc
-
-2002/02/06 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm: removed ugly pink and ugly left bar for wizard mode
-
-2002/02/06 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem, tools/oem-prepare: better handling of group linked
- to hardware or options.
-
-2002/02/06 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: have frozen-bubble in GAMES at level 4
-
-2002/02/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/fr.po, share/po/fi.po, share/po/DrakX.pot: updated French file
-
-2002/02/06 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Automatic configuration of the scanning part of HP's
- multi-function devices.
-
- * printerdrake.pm: Added some stuff for the Wizard mode.
- Automatic configuration of the scanning part of HP's multi-function
- devices.
- Updated automatic package installation in printerdrake, no "kups" and
- "qtcups" any more, but "gpr", "a2ps", and "hpoj", updated also
- "rpmsrate" and "rpmsrate.server" appropriately.
-
- * share/rpmsrate.server, share/rpmsrate: Added scanning packages to
- INSTALL section, for HP MF device installation by printerdrake.
- Updated automatic package installation in printerdrake, no "kups" and
- "qtcups" any more, but "gpr", "a2ps", and "hpoj", updated also
- "rpmsrate" and "rpmsrate.server" appropriately.
-
-2002/02/05 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: Added automatic configuration of HPOJ for
- HP's multi-function devices.
-
-2002/02/05 dam's <damien@mandrakesoft.com>
-
- * standalone/logdrake: wizard updated
- correction for mcc.
-
-2002/02/05 François Pons <fpons@mandrakesoft.com>
-
- * share/rpmsrate.server: synced with normal rpmsrate for Basque
- management.
-
- * install2.pm: auto_allocate for oem mode is not needed as oem script
- create all necessary partition.
-
- * install_any.pm: add support for Basque (no KDE).
-
- * mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: newer syslinux 1.67.
-
- * share/rpmsrate: add support for Basque (no netscape in such case)
-
- * rescue/tree/etc/oem: select preferred kernel as kernel-\d.
-
- * install_steps.pm: fixed logic, when someone want /root/drakx,
- it has to check /root/drakx and not /root only.
-
-2002/02/05 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * rescue/tree/sbin/modprobe: don't do insmod -f, it's not really necessary
- and it taints the kernel (pabo)
-
- * rescue/tree/etc/profile: use LD_LIBRARY_PATH in rescue so that PATH'ing
- in /mnt
- can really be used
-
-2002/02/05 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/es.po, share/po/bg.po, share/po/ga.po, share/po/sr.po,
- share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
- share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
- share/po/ko.po, share/po/cy.po, share/po/nl.po, share/po/ja.po,
- share/po/wa.po, share/po/sv.po, share/po/is.po, share/po/hu.po,
- share/po/it.po, share/po/id.po, share/po/pl.po, share/po/no.po,
- share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
- share/po/ar.po, share/po/sl.po, share/po/vi.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
- share/po/zh_TW.po, share/po/cs.po, share/po/af.po: updated pot file
-
-2002/02/05 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm: fix "help lilo when there is hdd with no hdc drive"
-
- * Xconfigurator.pm: testFinalConfig now always returns true if test is
- skipped because of a bad_card (back to the old behaviour, this was no
- good (the aim is to enable changing the monitor when test is skipped))
-
- * share/po/fr.po: fix "Details" translated in "Détails de la partition"
- but is used at different
- place where the meaning has nothing to do with "partitions"
-
-2002/02/05 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: Added automatic configuration of HPOJ for
- HP's multi-function devices.
-
-2002/02/05 warly
-
- * share/compssUsers.server: remove non server group from rpmsrate.server
- add utilities group in compssUser.server
- (webmin,ssh-server,wizards,monitoring)
-
- * share/rpmsrate.server: begin rpmsrate.server cleaning
-
-2002/02/05 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm: fix "help lilo when there is hdd with no hdc drive"
-
- * Xconfigurator.pm: testFinalConfig now always returns true if test is
- skipped because of a bad_card (back to the old behaviour, this was no
- good (the aim is to enable changing the monitor when test is skipped))
-
-2002/02/05 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: log the "chkconfig --del gpm" when there is a serial
- mouse
-
-2002/02/04 dam's <damien@mandrakesoft.com>
-
- * standalone/logdrake: corrected typo. Yvounet, check your code!!
- embedded, explain
-
- * my_gtk.pm: bug correction
-
- * standalone/drakfont, services.pm, network/netconnect.pm: applied cooker
- guy english review
-
-2002/02/04 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: added v4l module all the time (along with dbe already
- present).
-
-2002/02/04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_steps.pm: have numlock activated when isLaptop rather than
- $o->{pcmcia}
-
-2002/02/04 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sp.po, share/po/zh_CN.po, share/po/no.po, share/po/fi.po,
- share/po/DrakX.pot, share/po/th.po, share/po/es.po, share/po/fr.po,
- share/po/sr.po, share/po/el.po, share/po/et.po, share/po/sk.po,
- share/po/tr.po, share/po/eu.po, share/po/sl.po, share/po/vi.po,
- share/po/uk.po, share/po/eo.po, share/po/nl.po, share/po/wa.po,
- share/po/sv.po, share/po/zh_TW.po: updated some po files
-
-2002/02/04 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: fix creating /etc/security/msec/server
-
- * share/po/fr.po: fix "More" translation
-
-2002/02/04 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: Made HP multi-function devices configured
- with HPOJ being displayed correctly by printerdrake.
-
- * detect_devices.pm: Replace "Hewlett-Packard" by "HP" when HP device is
- detected on a parallel port.
-
-2002/02/04 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * share/po/fr.po: update french translations
-
-2002/02/03 Pixel <pixel@mandrakesoft.com>
-
- * any.pm: force a few more "list"s instead of "combo" boxes
- since "format" is now handled for combo boxes, combo boxes are used in
- much too many places. Fix this by forcing type "list" for some cases,
- and using type "list" when a ask_from has only one entry
-
- * interactive.pm: since "format" is now handled for combo boxes, combo
- boxes are used in much too many places. Fix this by forcing type "list"
- for some cases, and using type "list" when a ask_from has only one entry
-
- * bootloader.pm:
- - fix some vga text modes 80x30
- - chmod 600 lilo.conf when a password is given
- - fix general "append"
- (thanks to David Eastcott)
- "password" works without "restricted", not the other way round (reported
- by David Eastcott)
- fix typo
-
-2002/02/03 warly
-
- * share/rpmsrate.server: synchronize with current cooker rpmsrate
-
-2002/02/03 Pixel <pixel@mandrakesoft.com>
-
- * any.pm: force a few more "list"s instead of "combo" boxes
- since "format" is now handled for combo boxes, combo boxes are used in
- much too many places. Fix this by forcing type "list" for some cases,
- and using type "list" when a ask_from has only one entry
-
- * interactive.pm: since "format" is now handled for combo boxes, combo
- boxes are used in much too many places. Fix this by forcing type "list"
- for some cases, and using type "list" when a ask_from has only one entry
-
- * bootloader.pm: fix typo
- help lilo when there is hdd with no hdc drive (needs testing!)
-
-2002/02/03 warly
-
- * share/rpmsrate.server, share/compssUsers.server: add rpmsrate.server and
- compssUsers.server
-
-2002/02/03 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm: help lilo when there is hdd with no hdc drive (needs
- testing!)
-
-2002/02/03 warly
-
- * share/rpmsrate.server, share/compssUsers.server: add rpmsrate.server and
- compssUsers.server
-
-2002/02/02 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm: XFree is now 4.2
-
- * standalone/fileshareset: fix dropping samba sections which don't have
- any "path="
-
-2002/02/01 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sv.po, share/po/DrakX.pot: updated Swedish file
-
- * share/po/fr.po: merged again French file to recover some lost strings;
- and added non breakable spaces at all the needed places as required
- by French typography
-
-2002/02/01 Pixel <pixel@mandrakesoft.com>
-
- * my_gtk.pm: please perl_checker
-
- * install_interactive.pm: use from_Mb for choosing the size of the windows
- partition
-
- * install_steps.pm: create symlink /etc/security/msec/server in security >
- 3
-
-2002/02/01 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: First steps of the implementation for the "Add printer"
- wizard.
-
- * detect_devices.pm: Made auto-detection working for HP DeskJet 840C on
- USB
- General improvements for reliability of USB printer auto-detection
-
-2002/02/01 yduret
-
- * pixmaps/wiz_scannerdrake.png: readding it with -kb option (i am still
- jeune and boulet)
- rm for readding with -kb option (i am jeune and boulet)
-
- * standalone/logdrake: ergo fix thx dadou report
- fix --explain=foo bug that prevent to show anything
-
- * bootlook.pm: ergo fix thx dadou report...
-
-2002/02/01 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * services.pm, standalone/drakbackup, printerdrake.pm,
- standalone/logdrake: changed some strings to make translation easier
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
- share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
- share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
- share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/no.po, share/po/fi.po, share/po/th.po,
- share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
- share/po/sl.po, share/po/vi.po, share/po/br.po, share/po/ca.po,
- share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
- share/po/ro.po, share/po/bs.po, share/po/da.po, share/po/zh_TW.po,
- share/po/cs.po, share/po/af.po: updated pot file
-
-2002/02/01 Pixel <pixel@mandrakesoft.com>
-
- * my_gtk.pm: please perl_checker
-
- * install_interactive.pm: use from_Mb for choosing the size of the windows
- partition
-
- * Xconfigurator.pm: testFinalConfig now returns false if test is skipped
- because of a bad_card or
- verybad_card and $skip_badcard is not set
-
-2002/01/31 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm, share/keyboards.tar.bz2, keyboard.pm: Added Tamil language and
- keyboard choices (KDE is translated to Tamil)
-
-2002/01/31 yduret
-
- * pixmaps/wiz_scannerdrake.png: on rajoute la zolie image
-
-2002/01/30 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * Xconfigurator.pm: Added setting of model=jp106 for Japanese keyboard
-
- * keyboard.pm, share/keyboards.tar.bz2: Added Bulgarian "phonetic"
- keyboard
-
- * lang.pm: Enabled "ms" language in the language selection list (there are
- Gnome and KDE
- translations for it)
-
- * share/po/be.po, share/po/zh_CN.po, share/po/no.po, share/po/fi.po,
- share/po/es.po, share/po/bg.po, share/po/de.po, share/po/et.po,
- share/po/el.po, share/po/ru.po, share/po/br.po, share/po/uk.po,
- share/po/eo.po, share/po/bs.po, share/po/nl.po, share/po/ro.po,
- share/po/da.po, share/po/zh_TW.po, share/po/cs.po, share/po/hu.po:
- updated some po files
-
-2002/01/30 Pixel <pixel@mandrakesoft.com>
-
- * share/rpmsrate: add gnome-core in GNOME (used to be required?)
-
- * Xconfigurator_consts.pm, Xconfigurator.pm: move "what is the
- running_window_manager" and "ask_window_manager_to_logout" to any.pm
-
- * any.pm (ask_window_manager_to_logout, running_window_manager): created
- from Xconfigurator and cleaned
- (selectLanguage): if $langs is empty, don't ask for "other languages"
-
- * pixmaps/wiz_printerdrake.png: re-adding with -kb
- removing for re-adding with -kb
-
- * standalone/localedrake: now works in normal user: it modifies the
- ~/.i18n (todo: handle kde crazy variables?)
-
- * lang.pm: handle read'ing and write'ing to a specified file (useful
- example: ~/.i18n)
-
-2002/01/30 sdupont
-
- * standalone/drakbackup: complex merging....
- change /var/drakbackup to /var/lib/drakbackup
- crontab update
- mail report update
- sendmail update
- require rpm mode
- code optimisation
- remove about gi
- new help function
-
-2002/01/29 Till Kamppeter <till@mandrakesoft.com>
-
- * pixmaps/wiz_printerdrake.png: Added logo for the "Add Printer" wizard of
- printerdrake.
-
- * printer.pm, printerdrake.pm: Prepared printerdrake for the "Add printer"
- wizard.
- Improvements for the selection of a local printer, especially when no or
- one printer was detected.
-
-2002/01/29 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm: icons placements are better
-
-2002/01/29 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakbug_report, standalone/drakautoinst, install2.pm,
- install_any.pm, install_steps.pm, log.pm, docs/README, pkgs.pm: move
- /root/* files (ddebug.log, install.log, report.bug,
- auto_inst.cfg.pl, replay_install.img) to /root/drakx/,
- and also save stage1.log there
-
- * partition_table_raw.pm: add new pixel-made grub signature
-
- * crypto.pm: update land2tzs accordingly to new url2land
- Add url2land entries for nl, it, at
-
- * any.pm: move /root/* files (ddebug.log, install.log, report.bug,
- auto_inst.cfg.pl, replay_install.img) to /root/drakx/,
- and also save stage1.log there
- rephrase a little bit highest level
- to not refer to "level 4" anymore
- use formatAlaTeX for describing security levels
-
- * install_steps_interactive.pm: fix thanks to chipaux msg about mkbootdisk
-
-2002/01/29 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/fr.po, share/po/sv.po, share/po/hr.po, share/po/de.po,
- share/po/DrakX.pot, help.pm, share/po/it.po, share/po/eu.po,
- share/po/es.po: updated pot file with help messages from manual
-
-2002/01/29 Pixel <pixel@mandrakesoft.com>
-
- * interactive.pm: handle "format" for combo's
-
- * bootloader.pm: use the new format for combo's to clean code handling
- {vga} field
-
- * diskdrake/hd_gtk.pm: look diskdrake.rc in another directory
-
- * any.pm: use the new format for combo's to clean code handling {vga}
- field
- handle the case where samba and/or nfs-utils are not installed
-
- * install_steps.pm: move the various bootloader::add_append's in
- setupBootloaderBefore
-
- * diskdrake/smbnfs_gtk.pm: handle the case where samba and/or nfs-utils
- are not installed
-
- * install_steps_interactive.pm: visually unselect X and docs when minimal
- install
- "With X" choice is now working
- handle "Cancel" on language selection
-
-2002/01/29 Till Kamppeter <till@mandrakesoft.com>
-
- * pixmaps/wiz_printerdrake.png: Added logo for the "Add Printer" wizard of
- printerdrake.
-
- * printer.pm, printerdrake.pm: Prepared printerdrake for the "Add printer"
- wizard.
- Improvements for the selection of a local printer, especially when no or
- one printer was detected.
-
-2002/01/29 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * interactive.pm: fix pixel's minimal example using interactive.
-
-2002/01/29 yduret
-
- * docs/interactive/ask_from_list, docs/interactive/wait_message,
- docs/interactive/ask_from_treelist, docs/interactive/ask_from_listf,
- docs/interactive/ask_from: added some snipet coe for example
-
- * standalone/logdrake: logdrake is now under gi/perl-install/standalone
-
-2002/01/29 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake/hd_gtk.pm: look diskdrake.rc in another directory
-
- * install_steps.pm: move the various bootloader::add_append's in
- setupBootloaderBefore
-
-2002/01/28 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: do the few new translations
-
- * standalone.pm: try to reflect hierarchy for */*.pm
-
-2002/01/28 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/zh_CN.po, share/po/no.po, share/po/fi.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/de.po,
- share/po/sk.po, crypto.pm, share/po/tr.po, share/po/eu.po,
- printerdrake.pm, standalone/draknet, share/po/vi.po, share/po/ko.po,
- share/po/uk.po, share/po/nl.po, share/po/bs.po, share/po/ja.po,
- standalone/drakbackup, share/po/wa.po, share/po/sv.po, share/po/da.po,
- share/po/zh_TW.po, share/po/cs.po, share/po/hu.po, share/po/af.po,
- share/po/id.po: Corrected various English typos
-
-2002/01/28 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: fix typo
-
- * partition_table.pm: warn if partitions have been renumbered due to a
- partition being added or removed
-
- * diskdrake/interactive.pm: don't warn_if_renumbered during install
- warn if partitions have been renumbered due to a partition being added
- or removed
-
-2002/01/28 siegel
-
- * share/po/de.po: new german version
-
-2002/01/28 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Replaced "sleep" commands by a subroutine which waits
- exactly until CUPS is ready.
- CUPS >= 1.1.12 needs to "know" all devices, let CUPS restart if a device
- is not "known" to it.
-
- * printer.pm: Removed debug helper line.
- Replaced "sleep" commands by a subroutine which waits exactly until CUPS
- is ready.
- CUPS >= 1.1.12 needs to "know" all devices, let CUPS restart if a device
- is not "known" to it.
-
-2002/01/28 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * share/po/br.po: update brezhoneg translations
-
- * share/po/fr.po: more french translations
-
-2002/01/28 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/zh_CN.po, share/po/no.po, share/po/fi.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/de.po,
- share/po/sk.po, crypto.pm, share/po/tr.po, share/po/eu.po,
- printerdrake.pm, standalone/draknet, share/po/vi.po, share/po/ko.po,
- share/po/uk.po, share/po/nl.po, share/po/bs.po, share/po/ja.po,
- standalone/drakbackup, share/po/wa.po, share/po/sv.po, share/po/da.po,
- share/po/zh_TW.po, share/po/cs.po, share/po/hu.po, share/po/af.po,
- share/po/id.po: Corrected various English typos
-
-2002/01/28 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: fix typo
-
- * diskdrake/interactive.pm, partition_table.pm: warn if partitions have
- been renumbered due to a partition being added or removed
-
-2002/01/28 dam's <damien@mandrakesoft.com>
-
- * network/tools.pm, network/netconnect.pm: debug network testing
-
-2002/01/28 François Pons <fpons@mandrakesoft.com>
-
- * mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: updated color of
- scroll bar and reduced its size.
-
- * bootloader.pm: fixed get_append if key=mem.
- timeout passed to 10 instead of 5.
-
-2002/01/28 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: update games rates
-
-2002/01/28 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
- share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
- share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
- share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po, share/po/th.po,
- share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
- share/po/sl.po, share/po/vi.po, share/po/br.po, share/po/ca.po,
- share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
- share/po/ro.po, share/po/bs.po, share/po/da.po, share/po/zh_TW.po,
- share/po/cs.po, share/po/af.po: updated pot file
-
-2002/01/28 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (remove_advertising): ensure removing /tmp/drakx-images
- can't fail
-
- * any.pm: simpler&nicer solution for writing kppprc in utf8
- have kppprc strings in utf8
-
- * detect_devices.pm: remove test code
-
- * install_steps.pm, bootloader.pm: cleanup perImageAppend code (hopefully
- handling nicely the mem=nopentium case)
-
- * diskdrake/smbnfs_gtk.pm: don't use wait_message's when waiting (waiting
- is usually very short), use a waiting cursor instead.
- (the wait_message's were causing bad interactivity stuff)
-
-2002/01/27 Pixel <pixel@mandrakesoft.com>
-
- * interactive.pm: add a minimal example
-
- * services.pm:
- - move the require on my_gtk to ask_standalone_gtk
- - cleanup
-
- * Makefile.config:
- - adapt to new diskdrake modules
- - add logdrake to STANDALONEPMS_
-
- * my_gtk.pm: strange protection against ensure_focus generating a "focus"
- event causing a
- dead-loop (reminder: ensure_focus helps ensuring a widget is focused)
-
- * Makefile.drakxtools, standalone.pm, Makefile, diskdrake_interactive.pm,
- install_interactive.pm, diskdrake.pm:
- - adapt to new diskdrake modules
- - some cleanup in drakxtools build
-
- * diskdrake/removable.pm: remove debugging code
- new diskdrake modules (diskdrake_interactive is now
- diskdrake::interactive, diskdrake is now diskdrake::hd_gtk, others
- created from diskdrake.pm)
-
- * diskdrake/interactive.pm, diskdrake/hd_gtk.pm,
- diskdrake/removable_gtk.pm: new diskdrake modules (diskdrake_interactive
- is now diskdrake::interactive, diskdrake is now diskdrake::hd_gtk,
- others created from diskdrake.pm)
-
- * diskdrake/smbnfs_gtk.pm: fix updating the actions
- new diskdrake modules (diskdrake_interactive is now
- diskdrake::interactive, diskdrake is now diskdrake::hd_gtk, others
- created from diskdrake.pm)
-
- * network/nfs.pm: find_exports: add a timeout
-
- * fs.pm: new function fstab_to_string
-
- * standalone/diskdrake: handle --removable *and* --removable=<dev>
- handle --removable=<dev>
- - new options --hd, --nfs, --smb, --removable
- - adapt to new diskdrake modules
- - save $all_hds->{current_fstab} to know if /etc/fstab must be saved
-
-2002/01/25 fabman
-
- * share/po/es.po: updated spanish translation
-
-2002/01/25 Pixel <pixel@mandrakesoft.com>
-
- * share/rpmsrate: add devfsd
-
- * install_any.pm: remove_advertising: use rm_rf since we don't have the
- real list of files (the .pl's are not in @advertising_images)
-
- * mdk-stage1/pci-resource/update-pci-ids.pl: remove 'ncr53c8xx'
-
-2002/01/25 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: Less important options only shown when
- "Advanced" button clicked.
- Handling of cursor position in the main window improved.
- Handling of empty printer queue list in main window improved.
- Removed line breaks from longer texts, so that text flows into window
- nicely
- Minor text improvements.
-
-2002/01/25 dam's <damien@mandrakesoft.com>
-
- * install_any.pm: advertising engine updated
-
- * share/logo-mandrake.png: beta logo
-
- * install_steps_gtk.pm: corrected decy
- advertising engine updated
-
-2002/01/25 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: please find a better fix
-
-2002/01/25 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm: prefer default linux-{smp,enterprise,secure} over simple
- linux
- fix spelling
-
- * Makefile: call clean-rpmsrate
-
- * mdk-stage1/pci-resource/update-pci-ids.pl: remove 'ncr53c8xx'
-
-2002/01/25 dam's <damien@mandrakesoft.com>
-
- * install_steps_gtk.pm, install_any.pm: advertising engine updated
-
- * share/po/fr.po: typo
-
- * share/logo-mandrake.png: beta logo
-
-2002/01/25 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: please find a better fix
-
-2002/01/25 Pixel <pixel@mandrakesoft.com>
-
- * mdk-stage1/Makefile: ensure errors propagate
-
- * bootloader.pm: prefer default linux-{smp,enterprise,secure} over simple
- linux
- fix spelling
-
- * Makefile: call clean-rpmsrate
-
- * mdk-stage1/pci-resource/Makefile: silly shell
- ensure errors propagate
-
-2002/01/25 dam's <damien@mandrakesoft.com>
-
- * share/po/fr.po: typo
- corrected too long label Mise à niveau deas paquetages seule. please
- find a better FIX
-
-2002/01/25 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_gtk.pm: cosmetic changes.
-
- * pkgs.pm: fixed try opening to trigger changeCD callback.
-
-2002/01/24 Pixel <pixel@mandrakesoft.com>
-
- * share/rpmsrate:
- - add msec in any install
- - use BIGMEM flag for kernel-enterprise
- - use SMP flag for kernel-smp
- (those 2 goes together with Warly's clean-rpmsrate)
- add flag DOCS which should work together with !excludedocs
-
- * any.pm: ensure grub is installed if grub is chosen
-
- * install_any.pm:
- - add DOCS (based on !excludedocs)
- - set BIGMEM and SMP flags
- (since kernel-smp and kernel-enterprise sub-numbers are better handled
- by
- rpmsrate together with Warly's clean-rpmsrate)
-
- * install_steps_interactive.pm, install2.pm: minimal install now handles
- excludedocs
-
- * install_steps.pm: log excludedocs
- minimal install now handles excludedocs
- put devfs=mount only if devfsd is installed
-
- * diskdrake_interactive.pm: truncate lvm name to 63 characters since
- longer vg names are not allowed
-
-2002/01/24 Till Kamppeter <till@mandrakesoft.com>
-
- * detect_devices.pm, printer.pm, printerdrake.pm: Fixed bug of empty menu
- entry appearing after adding a new printer.
- Modified "Local Printer" dialog to be more newbie-friendly.
-
-2002/01/23 dam's <damien@mandrakesoft.com>
-
- * network/adsl.pm: updated speedtouch code to use pppoa3
-
- * my_gtk.pm: removed font loading
-
-2002/01/23 François Pons <fpons@mandrakesoft.com>
-
- * bootloader.pm: fixed to allow multiple mem=xxx parameter (especially
- mem=nopentium).
-
- * install_steps.pm: restored mem=nopentium.
- removed mem=nopentium.
-
-2002/01/23 Pixel <pixel@mandrakesoft.com>
-
- * standalone/fileshareset: name mangling max length set to 12
- use name mangling for samba labels
-
-2002/01/23 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: New user interface in main window
- More printer info in printer modification window
- Better support for remote CUPS printers
-
-2002/01/22 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm: improved widget_icons
-
- * install_steps.pm: added net_cnx_pg output when configuring network in
- auto install
-
-2002/01/22 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: added support to save already existing synthesis file.
-
- * install_any.pm: changed code to build synthesis file, check if they have
- not already been copied
- from mirror, or build them using parsehdlist.
-
-2002/01/22 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: Translate a few things more
-
-2002/01/22 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake_interactive.pm: cleanup error messages (and fix diskdrake's)
- defaults to ext3 instead of ext2
-
- * interactive.pm: add "quit_if_double_click" and "tree_expanded" flags
- (request from till)
- add feature "allow_empty_list" for "list" entries (disables the special
- cases for 0 and 1 element lists)
-
- * install_any.pm, diskdrake.pm: cleanup error messages (and fix
- diskdrake's)
-
- * install_interactive.pm, raid.pm: defaults to ext3 instead of ext2
-
- * partition_table.pm: remove unused auto_win_extended stuff
- handle extended partitions with no partitions inside (esp. for the first
- hda5 & windows XP)
-
- * bootloader.pm:
- - fix default not being formatted like labels for lilo
- - check the label is not already used *case-sensitively*
- - check a kernel_or_dev is given
-
- * any.pm:
- - remove the default entry when that entry is removed
- - use allow_empty_list for displaying the entries
- - fix default not being formatted like labels for lilo
- - check the label is not already used *case-sensitively*
- - check a kernel_or_dev is given
-
- * fsedit.pm: yet again better error reporting
- defaults to ext3 instead of ext2
-
- * standalone/drakboot, bootlook.pm: fix yves's code duplication of
- lilo_choice (use $::lilo_choice in bootlook)
-
- * interactive_gtk.pm: add "quit_if_double_click" and "tree_expanded" flags
- (request from till)
-
- * install_steps_interactive.pm: cleanup error messages (and fix
- diskdrake's)
- better messages for the minimal installs
-
- * standalone/diskdrake: yet again better error reporting
- cleanup error messages (and fix diskdrake's)
-
- * share/rpmsrate: move mandrake-mime from SYSTEM to X
- lower sndconfig
-
-2002/01/22 fcrozat
-
- * share/rpmsrate: Really install gnome control center when installing
- GNOME
-
-2002/01/22 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm: added mem=nopentium for any Athlon or Duron processor.
-
-2002/01/22 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * Makefile: exclude standalone from testing
-
- * share/po/fr.po: resolve small conflict
-
-2002/01/22 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm: add the new "mii" module to 'net_raw'
-
- * install_steps_interactive.pm: better messages for the minimal installs
- fix a few cancel's (reported by slegros)
- don't ask security level in non-expert
-
- * install_steps_gtk.pm, install_interactive.pm: fix a few cancel's
- (reported by slegros)
-
- * share/rpmsrate: move mandrake-mime from SYSTEM to X
- lower sndconfig
-
-2002/01/21 Pixel <pixel@mandrakesoft.com>
-
- * interactive_gtk.pm, my_gtk.pm: hopefully better dialog box sizing
-
- * install_steps_interactive.pm, install2.pm: can't call
- any::config_libsafe so early during install, move it where msec is
- called
-
- * any.pm: quiet perl's warning
-
-2002/01/21 dam's <damien@mandrakesoft.com>
-
- * install_steps.pm: fixed network conf in auto install
- corrected network down
-
- * my_gtk.pm: removed debug print
- icons widget improvment : icon placment, highlighting
-
-2002/01/21 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake.pm: increase the size of the "Choose action" box
-
- * diskdrake_interactive.pm: remove the "Active" partition feature
-
- * interactive_gtk.pm, my_gtk.pm: hopefully better dialog box sizing
-
- * install2.pm: can't call any::config_libsafe so early during install,
- move it where msec is called
-
- * install_steps_interactive.pm: can't call any::config_libsafe so early
- during install, move it where msec is called
- cleanup, update, enhance security level choice
-
- * standalone/draksec: cleanup, update, enhance security level choice
-
- * install_steps.pm: remove deprecated msec groups adding
- cleanup
-
- * tools/i386/netboot/stage2.3c90x, tools/i386/netboot/grub: newer grub
-
- * any.pm: quiet perl's warning
- cleanup, update, enhance security level choice
- when creating users, add handling of xgrp/rpm/adm/wheel groups in high
- security
- fix advice about "usermod -G"
-
- * tools/i386/netboot/menu.lst.example: add gateway parameter
-
-2002/01/21 dam's <damien@mandrakesoft.com>
-
- * share/logo-mandrake.png: new ugly icon
-
- * install_steps.pm: corrected network down
-
-2002/01/21 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
- share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
- share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
- share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po, share/po/th.po,
- share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
- share/po/sl.po, share/po/vi.po, share/po/br.po, share/po/ca.po,
- share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
- share/po/ro.po, share/po/bs.po, share/po/da.po, share/po/zh_TW.po,
- share/po/cs.po, share/po/af.po: updated pot file
-
-2002/01/21 Pixel <pixel@mandrakesoft.com>
-
- * share/fonts.tar.bz2: add helvR12_iso15
-
- * install_steps_interactive.pm: """ When I choose a / partition smaller
- than 200 MB, the installation
- gives me an error message complaining that my system does not
- have enough free space for the installation, although basesystem
- install
- require less than 100 MB. """
- up to around 250MB, minimal install is chosen.
- questions are: base system only, or no X, or normal.
-
-2002/01/21 siegel
-
- * share/po/de.po: updates
-
- * standalone/drakbackup: fixed i18n bugs
-
-2002/01/20 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm: call msec with run_commands=0 to fix the network reloading
- (causing various problems, esp. "Net::FTP: Timeout" at X config step)
-
-2002/01/20 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakbackup: sorry, _("$_") is not allowed
-
-2002/01/20 Pixel <pixel@mandrakesoft.com>
-
- * share/po/fr.po: fix "`msgid' and `msgstr' entries do not both end with
- '\n'"
-
- * install2.pm: call msec with run_commands=0 to fix the network reloading
- (causing various problems, esp. "Net::FTP: Timeout" at X config step)
-
-2002/01/20 yduret
-
- * timezone.pm: added Italy (time.ien.it) in
-
-2002/01/19 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * standalone/drakbackup: Rework English syntax in drakbackup - hopefully
- I've got the intent correct ;^)
-
-2002/01/19 Till Kamppeter <till@mandrakesoft.com>
-
- * detect_devices.pm: Replaced USB printer auto-detection by a more
- reliable method.
-
-2002/01/18 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: changed Update -> Upgrade for installation
- class.
-
-2002/01/18 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/draknet:
- - move 'use standalone' up to comply to 'explanations'
- - fix an english typo, s/connexion/connection/
-
- * standalone/drakgw:
- - move 'use standalone' up to comply to 'explanations'
- - write higher-level 'explanations'
- - small fix, s/`ls ..`/glob(..)/
-
- * standalone/scannerdrake:
- - move 'use standalone' up to comply to 'explanations'
- - fix a small english problem
-
- * share/po/fr.po: reduce a lot of fuzzy and untranslations
- large stuff from printerdrake, drakbackup and drakfont still to do :-)
-
- * c/stuff.xs.pm, standalone/printerdrake, standalone/net_monitor,
- standalone/drakautoinst, standalone/keyboarddrake,
- standalone/localedrake, standalone/livedrake, standalone/drakboot,
- standalone/draksec, standalone/tinyfirewall, standalone/mousedrake,
- standalone/drakxservices, standalone.pm, standalone/drakproxy,
- standalone/XFdrake, standalone/diskdrake, standalone/adduserdrake,
- standalone/drakxconf, log.pm, standalone/logdrake,
- standalone/drakbackup, standalone/drakfont:
- - write the 'common' part of the 'explanations' stuff,
- with nice help from Pixel for the tough Perl part
- - move 'use standalone' up in all standalone apps,
- to comply to 'explanations'
-
-2002/01/18 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/gen_locales.sh, share/locales-skeleton.tar.bz2,
- share/fonts.tar.bz2: changes to get in line with new XFree86
-
-2002/01/18 Pixel <pixel@mandrakesoft.com>
-
- * share/gen_locales.sh, share/locales-skeleton.tar.bz2: find the X11
- locale on the box so that XI18N_OBJS's and common are included
-
-2002/01/18 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: add update flag for urpmi medium.
-
- * install_steps_interactive.pm: even if user cancel update of package on
- tree, allow urpmi to install the medium.
- avoid downNetwork as no difference are made between ethernet or ppp.
- fixed typo.
- allow cancel when installUpdates.
-
- * crypto.pm: add update medium for crypto for urpmi (flag update).
- fixed typo.
- allow selection/deselection of update medium (for cancel of
- installation).
-
- * install_steps_gtk.pm: allow choosePackageTree to display a cancel if a
- specific medium has been given.
-
-2002/01/18 Pixel <pixel@mandrakesoft.com>
-
- * share/gen_locales.sh, share/locales-skeleton.tar.bz2: find the X11
- locale on the box so that XI18N_OBJS's and common are included
-
-2002/01/18 sdupont
-
- * standalone/drakfont: update warning messages (qa).
-
- * standalone/drakbackup: fix traduction problems and more ...
-
-2002/01/17 Pixel <pixel@mandrakesoft.com>
-
- * fsedit.pm, diskdrake_interactive.pm: better error message when auto
- allocate doesn't do anything
-
-2002/01/17 dam's <damien@mandrakesoft.com>
-
- * network/tools.pm, network/netconnect.pm: draknet : success message only
- if success
-
- * my_gtk.pm: added timeout for redrawing icon widget
-
-2002/01/17 fcrozat
-
- * share/rpmsrate: kdebase-nsplugins will be installed by default when
- selecting KDE
-
-2002/01/17 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: avoid upgrading a package by selection on files unless it has
- been obsoleted.
-
-2002/01/17 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake.pm: check the mountpoint is valid for encrypting (disallow "/"
- and "/usr")
-
- * fsedit.pm, diskdrake_interactive.pm: better error message when auto
- allocate doesn't do anything
- check the mountpoint is valid for encrypting (disallow "/" and "/usr")
-
- * fs.pm: do not create /swap
-
- * services.pm: move service apcupsd from Printing to System
-
- * bootloader.pm: fix many disks bios remapping (esp. booting on scsi when
- ide is present)
-
-2002/01/17 sdupont
-
- * standalone/drakbackup: stable version for qa pkg.
- (without unstables options)
-
-2002/01/16 Pixel <pixel@mandrakesoft.com>
-
- * any.pm: fix cancel on scsi module loading
-
-2002/01/16 sdupont
-
- * standalone/drakbackup: update send mail.
- (pixel mode. ;))
-
-2002/01/16 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_steps_interactive.pm: installUpdates: use formatAlaTeX
-
-2002/01/16 Pixel <pixel@mandrakesoft.com>
-
- * any.pm: fix cancel on scsi module loading
-
- * install_steps_interactive.pm: don't drop default_packages in "Base
- system only"
-
- * standalone/fileshareset: add locking to ensure things are in a proper
- state
-
-2002/01/15 dam's <damien@mandrakesoft.com>
-
- * install_steps_gtk.pm: advertising engine amelioration
-
- * my_gtk.pm: automatic icon placement in icon_labels_widget
-
-2002/01/15 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake_interactive.pm: remove the test trick
- encrypted filesystem handling:
- - using losetup
- - add "Options" for partitions in diskdrake (expert mode)
-
- * c/stuff.xs.pm, fs.pm, share/list, fsedit.pm, devices.pm, install_any.pm,
- diskdrake.pm: encrypted filesystem handling:
- - using losetup
- - add "Options" for partitions in diskdrake (expert mode)
-
-2002/01/15 dam's <damien@mandrakesoft.com>
-
- * network/isdn_consts.pm: updated
-
-2002/01/15 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake_interactive.pm: remove the test trick
- encrypted filesystem handling:
- - using losetup
- - add "Options" for partitions in diskdrake (expert mode)
-
- * c/stuff.xs.pm, fs.pm, share/list, fsedit.pm, devices.pm, install_any.pm,
- diskdrake.pm: encrypted filesystem handling:
- - using losetup
- - add "Options" for partitions in diskdrake (expert mode)
-
- * any.pm: have ddcxinfos take the best result of every run
-
-2002/01/15 sdupont
-
- * standalone/drakfont: fix progress bar problem.
- some gi updates:
- - windows font importation.
- - advanced font importation.
- - licence interface.
- - ...
-
- * standalone/drakbackup: new ./drakbackup --show-conf
- fix daemon problem (media to use).
- update informations on drakbackup report mail.
- __ 3290 lines.
- man pages fr created.
- some code cleaning on backend mode. (all_user_list && return_path)
- new functions on backend mode:
- - show-conf
- - debug
- - help
- - version.
-
-2002/01/14 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * modules.pm:
- - eata is SCSI adapter, not 'disk' adapter
- - have eata module in boot floppies
-
- * mdk-stage1/pci-resource/update-pci-ids.pl: we need also "big" modules in
- pci ids
-
- * share/rpmsrate: have lbreakout weigthed 4 instead of 2
-
- * mdk-stage1/modules.c: suggest other.img in file-not-found-in-archive
- (sugg David Faure
- and Pixel)
-
-2002/01/14 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: fix typo (making auto installs working again)
-
-2002/01/13 Pixel <pixel@mandrakesoft.com>
-
- * share/rpmsrate: s/lbreakout/lbreakout2/
-
- * install_steps_interactive.pm: cleanup
-
-2002/01/13 sdupont
-
- * standalone/drakbackup: some updates ...
- in "more option" steps user could choose to receive a report by mail for
- each backups.
- ftp backup work.
- fix time problems.
- remove doc from file.
- security fix for configuration file.
-
-2002/01/11 dam's <damien@mandrakesoft.com>
-
- * install_steps_gtk.pm: advertising engine works !
- champagne.
- still some display bugs, but they will be corrected later.
- need new ads and adequat description file
- new advertising engine
-
- * install_any.pm: modifications for new avertising engine
-
- * my_gtk.pm: new icons placement
-
-2002/01/11 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sp.po, share/po/zh_CN.po, share/po/fi.po, share/po/DrakX.pot,
- share/po/th.po, share/po/es.po, share/po/fr.po, share/po/sr.po,
- share/po/de.po, share/po/el.po, share/po/et.po, share/po/sk.po,
- share/po/tr.po, share/po/ar.po, share/po/az.po, share/po/eu.po,
- share/po/sl.po, share/po/vi.po, share/po/eo.po, share/po/wa.po,
- share/po/sv.po, share/po/zh_TW.po, share/po/Makefile, share/po/af.po,
- share/po/it.po: updated Spanish file; merged help-* files
-
-2002/01/11 sdupont
-
- * standalone/drakbackup: update header pixmaps.
- correction of message problem.
-
- * pixmaps/drakfont.620x57.png, pixmaps/BDO-drakebackup1.png,
- pixmaps/drakbackup.540x57.png: update pixmaps for drakbakup & drakfont.
-
- * standalone/drakfont: update header pixmaps.
-
-2002/01/10 dam's <damien@mandrakesoft.com>
-
- * install_steps_gtk.pm: domainname corection
-
- * network/network.pm: domainname corection
- corrected network domainname pb
-
- * install2.pm: corrected read_resolv => read_conf
-
-2002/01/10 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: english taste inspired by daminette.
-
-2002/01/10 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * rescue/lsparts: better looking output of type of partition (%x => %0x)
-
-2002/01/09 dam's <damien@mandrakesoft.com>
-
- * network/adsl.pm, standalone/net_monitor, standalone/draknet,
- network/network.pm, network/modem.pm, network/netconnect.pm: big merge
- from update 8.1 with cvs
- First part. Part 2 following
-
- * my_gtk.pm: added bold option in text creation. Some corrections
-
- * install_steps_interactive.pm: corrected fpons typo
-
-2002/01/09 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fixed too many package selected for No X or With X
- option of minimal installation.
-
- * install_steps_interactive.pm: avoid asking for minimal install for
- upgrade.
-
- * crypto.pm: fix incomplete prefix for update mirror when adding an entry
- for urpmi.
-
- * pkgs.pm: use rpm version comparison function.
-
- * c/stuff.xs.pm: added rpmvercmp.
-
-2002/01/09 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fixed too many package selected for No X or With X
- option of minimal installation.
-
- * install_steps_interactive.pm: avoid asking for minimal install for
- upgrade.
-
- * crypto.pm: fix incomplete prefix for update mirror when adding an entry
- for urpmi.
-
- * pkgs.pm: use rpm version comparison function.
-
- * c/stuff.xs.pm: added rpmvercmp.
-
-2002/01/09 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fixed too many package selected for No X or With X
- option of minimal installation.
-
- * install_steps_interactive.pm: avoid asking for minimal install for
- upgrade.
- fixed stupid.
-
- * crypto.pm: fix incomplete prefix for update mirror when adding an entry
- for urpmi.
-
- * pkgs.pm: use rpm version comparison function.
-
- * c/stuff.xs.pm: added rpmvercmp.
-
-2002/01/08 dam's <damien@mandrakesoft.com>
-
- * install2.pm: cosmetik
-
-2002/01/08 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_gtk.pm: added eval around pixmap drawing for advertising.
-
-2002/01/08 Pixel <pixel@mandrakesoft.com>
-
- * standalone/drakbackup: another round of bad use of _() fixes.
- fixed bad use of _().
-
-2002/01/08 sdupont
-
- * standalone/drakbackup: drakbackup work ...
- incremental backup and restore work.
-
-2002/01/08 François Pons <fpons@mandrakesoft.com>
-
- * Makefile: again fixed dam's sucking, please dam's check what you write
- before commiting.
-
- * standalone/drakautoinst: removed stupid invocation of _("$_"), is it
- correct code to change it to $_ only ?
-
-2002/01/08 François Pons <fpons@mandrakesoft.com>
-
- * Makefile: again fixed dam's sucking, please dam's check what you write
- before commiting.
-
- * standalone/drakautoinst: removed stupid invocation of _("$_"), is it
- correct code to change it to $_ only ?
-
-2002/01/08 François Pons <fpons@mandrakesoft.com>
-
- * Makefile: again fixed dam's sucking, please dam's check what you write
- before commiting.
-
-2002/01/07 François Pons <fpons@mandrakesoft.com>
-
- * steps.pm: changed installUpdates after summary (to get corrected
- timezone).
-
- * install_any.pm: separated setDefaultPackages from setPackages because it
- is used by allowing
- only base system to be installed (allow remade a better package
- selection).
-
- * crypto.pm: added bestMirror method to retrieve a good mirror (according
- to timezone) and
- add salt with random number to avoid using always the same.
-
- * install2.pm: added option to only upgrade packages.
-
- * install_steps_interactive.pm: added minimal type of install support.
-
- * share/list: fixed to match newer menu package.
-
-2002/01/07 François Pons <fpons@mandrakesoft.com>
-
- * steps.pm: changed installUpdates after summary (to get corrected
- timezone).
-
- * install_any.pm: separated setDefaultPackages from setPackages because it
- is used by allowing
- only base system to be installed (allow remade a better package
- selection).
-
- * crypto.pm: added bestMirror method to retrieve a good mirror (according
- to timezone) and
- add salt with random number to avoid using always the same.
-
- * install2.pm: added option to only upgrade packages.
-
- * install_steps_interactive.pm: added minimal type of install support.
-
- * share/list: fixed to match newer menu package.
-
-2002/01/07 dam's <damien@mandrakesoft.com>
-
- * Makefile: socmetic
- typo
- added debug mode for the whole install
-
- * my_gtk.pm: removed print
- new pack_start functions, powerpack sub added (code from adrien)
- incorporated adrien's code to generalize pack functions
- minor bug fixes
-
- * install_steps.pm, network/netconnect.pm: corrected network connection
- during install
-
- * install2: added debug mode for the whole install
-
-2002/01/07 François Pons <fpons@mandrakesoft.com>
-
- * steps.pm: changed installUpdates after summary (to get corrected
- timezone).
-
- * install_any.pm: separated setDefaultPackages from setPackages because it
- is used by allowing
- only base system to be installed (allow remade a better package
- selection).
-
- * crypto.pm: added bestMirror method to retrieve a good mirror (according
- to timezone) and
- add salt with random number to avoid using always the same.
-
- * install2.pm: added option to only upgrade packages.
-
- * install_steps_interactive.pm: added minimal type of install support.
-
- * share/list: fixed to match newer menu package.
-
- * Makefile: fixed overwriting of install2 filtering, keep diagnostic and
- strict for debug mode.
-
-2002/01/07 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/network.c: also log server name for HTTP install
-
-2002/01/04 dam's <damien@mandrakesoft.com>
-
- * network/adsl.pm, install_steps.pm, network/tools.pm, my_gtk.pm,
- network/netconnect.pm: corrected minor bugs in network (among others bug
- "modifying read only values")
- recode upNetwork and downNetwork (it might work, at least if you are
- lucky);
-
-2002/01/04 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm: corrected minor bugs in network (among others bug "modifying
- read only values")
- recode upNetwork and downNetwork (it might work, at least if you are
- lucky);
- corrected font display : no useless font->height, but ascent + descent
- updated
-
- * network/isdn_consts.pm: changed asus isdn hisax identify
-
- * network/adsl.pm, install_steps.pm, network/tools.pm,
- network/netconnect.pm: corrected minor bugs in network (among others bug
- "modifying read only values")
- recode upNetwork and downNetwork (it might work, at least if you are
- lucky);
-
-2002/01/04 François Pons <fpons@mandrakesoft.com>
-
- * http.pm, install2.pm, steps.pm, install_any.pm: added update
- installation support to install (big modifs need testing).
-
- * pkgs.pm: allow to use same identifier for security medium (1u).
- re-install urpmi.
- allow some error to be catched.
- added update installation support to install (big modifs need testing).
-
- * crypto.pm: removed test code.
- allow to use same identifier for security medium (1u).
- re-install urpmi.
- allow some error to be catched.
- added update installation support to install (big modifs need testing).
-
- * install_steps_interactive.pm: removed obsoleted comment.
- allow to use same identifier for security medium (1u).
- re-install urpmi.
- allow some error to be catched.
- added update installation support to install (big modifs need testing).
-
- * install_steps_gtk.pm: fixed empty flat package selection when giving a
- limit to medium.
- added update installation support to install (big modifs need testing).
-
- * install_steps.pm: allow to use same identifier for security medium (1u).
- re-install urpmi.
- allow some error to be catched.
- fix for auto updates.
- added update installation support to install (big modifs need testing).
-
-2002/01/04 Pixel <pixel@mandrakesoft.com>
-
- * detect_devices.pm: enable easy patch-adding of pcitable and usbtable
- entries
-
-2002/01/03 dam's <damien@mandrakesoft.com>
-
- * standalone/drakbackup: user can be equal to 500
-
-2002/01/03 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: updated code to create synthesis file (including
- provides on files).
-
-2002/01/03 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ar.po: updated Arabic file
-
-2002/01/03 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm, Xconfig.pm: save the output of ddcxinfos before
- modprobe'ing i810fb, and use that output for Xconfig (when i810fb is
- modprobe'd, ddc probe doesn't work anymore)
-
- * install_steps_interactive.pm, install_steps_gtk.pm: fix english messages
-
- * share/rpmsrate: as asked by Vincent Danen, lower uucp and raise sudo
-
- * pkgs.pm: prefer gcc-cpp
-
- * interactive_gtk.pm, interactive.pm: toggle Advanced/Basic button
-
- * any.pm: fix english messages
- save the output of ddcxinfos before modprobe'ing i810fb, and use that
- output for Xconfig (when i810fb is modprobe'd, ddc probe doesn't work
- anymore)
-
-2002/01/02 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm: changed @euro locales to plain names; now old currencies ones
- are obsolete
-
-2001/12/31 sdupont
-
- * standalone/drakfont: new fixed size and add a head pixmap (to update).
-
- * standalone/drakbackup: lots of update ...
- - cron work.
- - backup incremental & normal work.
- - corrupted backup data files supported.
- - error messages updated.
- - aff list of backup data files pbs.
- - test all backup files before to restore it.
-
-2001/12/30 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm: format home directories with "-m 0" for ext2&ext3, so that the
- root reserved part is 0% (and not 5%)
-
-2001/12/30 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm: format home directories with "-m 0" for ext2&ext3, so that the
- root reserved part is 0% (and not 5%)
-
-2001/12/28 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (selectMouse): when selecting a usb mouse,
- call setup_thiskind with
- at_least_one=1 (so that pci_class probe is used and so unknown
- serial_usb
- recognised (cf ldetect))
-
- * modules.pm (load_thiskind): allow $probe_type to be given, allowing
- forced pci probe (unsafe)
-
- * any.pm (setup_thiskind_backend): when at_least_one==1, try load_thiskind
- forcing
- pci_class probe when no modules is found.
-
-2001/12/28 sdupont
-
- * standalone/drakbackup: update select data on backup cd
-
-2001/12/27 sdupont
-
- * standalone/drakbackup: fix of user selection during restore step.
- remove return_file_date.
- change algo for incremental backup.
-
-2001/12/26 sdupont
-
- * standalone/drakbackup: some gi corrections & update.
- incremental restore.
-
-2001/12/22 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm: s/use pkgs/require pkgs/ since pkgs::versionCompare is
- only used during install
-
- * my_gtk.pm: export gtkcolor (used in install_steps_gtk)
- make perl_checker happy
-
-2001/12/22 sdupont
-
- * pixmaps/backup_bot.png, pixmaps/cdrom.png, pixmaps/backup_time.png,
- pixmaps/backup_bot2.png, pixmaps/backup_left.png, pixmaps/net.png,
- pixmaps/backup_hd.png, pixmaps/backup_title.png,
- pixmaps/backup_left2.png, pixmaps/filedialog.png, pixmaps/hd.png,
- pixmaps/backup_options.png, pixmaps/backup_net.png: remove old
- drakbackup pixmaps files.
-
- * pixmaps/ic82-back-up-16.png, pixmaps/ic82-discdurwhat-40.png,
- pixmaps/ic82-tape-40.png, pixmaps/ic82-moreoption-40.png,
- pixmaps/ic82-where-40.png, pixmaps/ic82-system-40.png,
- pixmaps/ic82-others-40.png, pixmaps/ic82-systemeplus-40.png,
- pixmaps/ic82-network-40.png, pixmaps/ic82-CD-40.png,
- pixmaps/ic82-when-40.png, pixmaps/ic82-back-up-32.png,
- pixmaps/ic82-users-40.png, pixmaps/ic82-dossier-32.png,
- pixmaps/ic82-back-up-48.png: drakbackup designer icons.
-
- * standalone/drakbackup: add pixmaps on backup step.
- new designer pixmaps on drakbackup.
-
-2001/12/21 sdupont
-
- * standalone/drakbackup: some update in file name parsing...
- etc ...
-
- * pixmaps/BDO-drakebackup1.png: drakbackup
-
-2001/12/20 dam's <damien@mandrakesoft.com>
-
- * install_steps_gtk.pm: API changed, so call changed
-
- * share/logo-mandrake.png: new ayo logo
-
-2001/12/20 sdupont
-
- * standalone/drakbackup: update the todo header
- the REQUIRE header
- & code cleaning
- - tar -cvf tarfilename --after-date="sept 1, 2000" /home
- l.380 incremental: date -> if already exist do find -m ... | tar ...
- non incremental: date + delete old before the backup
- - correct detection of backups during restore.
- - gi for other media during restore. hd-> ok
- - backend for build backup update and support
- incremental backups.
- - real incremental backup
- update resore & help.
-
-2001/12/19 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm: update graphical backend
-
-2001/12/19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * modules.pm: add dl2k.o (nic module) per request of nplanel
-
-2001/12/19 sdupont
-
- * standalone/drakbackup:
- - gi for other media during restore. hd-> ok
- - backend for build backup update and support
- incremental backups.
- - real incremental backup
- add other media source during restore.
- - update help & license.
- - code cleaning.
- - ask during whqt sys step if user want to backup critical
- files, like /etc/passwd /etc/group /etc/fstab
- - use preserve permissions during tar
- - begin of total backup step.( all partitions wanted, windows
- partitions for example!)
- - remove replace mode (backup_*_version is enought)
-
-2001/12/18 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_gtk.pm: fixed dam's sucking (syntax error only, code is
- untested).
-
-2001/12/18 Pixel <pixel@mandrakesoft.com>
-
- * any.pm: fix typos
-
-2001/12/18 sdupont
-
- * standalone/drakfont: include new pixmap on main menu.
-
- * standalone/drakbackup: sort lists in all lists selection.
- correct use of incremental backup
- parse of restore & system state.
- fix restore user selection problems
- fix build backup data selection problems
- ect ...
- drakbackup -> drakxtools.rpm
-
- * pixmaps/ic-drakfont-48.png: drakfont pixmap...
-
-2001/12/18 yduret
-
- * standalone/logdrake: fix console mode : exit now
-
-2001/12/18 Pixel <pixel@mandrakesoft.com>
-
- * any.pm: fix typos
-
-2001/12/17 dam's <damien@mandrakesoft.com>
-
- * install_steps_gtk.pm: power graphical backend update : text is now
- centered
-
- * my_gtk.pm: power graphical backend update : text is now centered
- updated new graphical backend
-
-2001/12/17 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * interactive_gtk.pm, standalone/drakgw: drakgw for gold
-
- * tools/pcmcia_config.patch: remove permanently (using
- patch_pcmcia_config.pl now)
-
-2001/12/17 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm, any.pm, install2.pm, bootloader.pm: clean_tmp now means using
- tmpfs
-
-2001/12/17 sdupont
-
- * standalone/drakbackup:
- ________________________________________________________________
- DONE:
- incremental backups have depends whith replace options.
- gtklist not maximized.
- restore mode.
- view date during restore
- view size of file, date & hours during backup on CD
- ________________________________________________________________
-
-2001/12/17 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm, any.pm, install2.pm, bootloader.pm: clean_tmp now means using
- tmpfs
-
-2001/12/14 François Pons <fpons@mandrakesoft.com>
-
- * mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: new picture for 8.2.
-
-2001/12/14 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/pci-resource/update-pci-ids.pl: change again way of selection
- PCI entries :
- what's in mar files --> what's given by modules (e.g. just
- as update_kernel does)
-
-2001/12/12 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install2.pm: use "askdisplay" to ask a question at begining of install
- for what
- display you want to use during install
-
- * Makefile, tools/patch_pcmcia_config.pl: externalize patch_pcmcia_config
- (from make_boot_img)
- because we need it in perl-install/Makefile also
-
- * mdk-stage1/rescue-gui.c, rescue/make_rescue_img, rescue/rescue-doc,
- rescue/Makefile: have a bunch of Rescue documentation directly
- available from the Rescue-menu following suggestions
- by Denis among others
-
-2001/12/12 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm: enable easy screenshot'ing
- - ensure /usr is formatted if / is
- - remove /var/lib/rpm if /var is kept
-
- * common.pm, docs/README: enable easy screenshot'ing
-
-2001/12/12 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * rescue/make_rescue_img: larger rescue image on PPC to accomodate huge
- xfs module
-
- * bootloader.pm: mods to address new yaboot's lack of symlink ability, xfs
- initrd load
-
-2001/12/11 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/stage1.c, mdk-stage1/dhcp.c, mdk-stage1/stage1.h: support
- "filename" in DHCP answers and give this
- to stage2 as --kickstart parameter
-
-2001/12/11 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * Xconfigurator_consts.pm, keyboard.pm: finish journalled fs usage - PPC,
- add "\n" keyboard.pm, new modelines
-
-2001/12/10 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: added network package not present in @needToCopy
- (package that may be installed
- by DrakX to avoid re-asking of CD1).
-
- * bootloader.pm: added safe guard against looping symlink.
-
-2001/12/10 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm, any.pm, bootloader.pm:
- - fix bootloader::add_append
- - add handling of serial console
-
- * http.pm, install_any.pm: enable http:// in auto_install file location
-
-2001/12/05 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: no need to give kernelVersion to bootloader::suggest
-
- * install_any.pm (kernelVersion): looks at /boot/vmlinuz
-
- * bootloader.pm (suggest, add_kernel): much cleanup
-
- * diskdrake.pm: fix call to fileshare_config
-
-2001/12/05 dam's <damien@mandrakesoft.com>
-
- * share/logo-mandrake.png: updateed logo
-
-2001/12/05 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/Makefile, mdk-stage1/pcmcia_/cardmgr.c:
- - fix problems with sockets not initialized (disabling
- hotplug support -> cardmgr handles sockets)
- - fix problems with PCMCIA net adapters now using PCI
- modules, by adding PCMCIA base code in `network.img'
-
-2001/12/05 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: no need to give kernelVersion to bootloader::suggest
-
- * pkgs.pm (selectPackage): hard coded preference to simple kernel
-
- * install_any.pm (kernelVersion): looks at /boot/vmlinuz
-
- * diskdrake.pm: fix call to fileshare_config
-
- * steps.pm: createBootdisk now after setupBootloader (together with dumber
- install_any::kernelVersion)
-
- * network/tools.pm: fix missing ";" (thanks to Robert Fox)
-
- * bootloader.pm (suggest, add_kernel): much cleanup
-
- * fs.pm: fix type "smb" vs "smbfs", and handle options in fs::mount
-
-2001/12/05 sdupont
-
- * pixmaps/backup_bot2.png: update pixmaps
-
- * standalone/drakbackup: todo : scp ssl sftp rsync connections perl || c ?
- done : bzip2 backup
- merge
-
-2001/12/04 dam's <damien@mandrakesoft.com>
-
- * standalone/drakbackup: corrected pixmap path
- corrected pixmap path
-
- * Makefile.config: added drakbackup drakfont
-
-2001/12/04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * any.pm, mdk-stage1/log.c, docs/README: save stage1.log and have it in
- report.bug
-
- * mdk-stage1/automatic.c, mdk-stage1/doc/TECH-INFOS: support shorter
- versions of automatic keywords to beat problems with very long kernel
- commandlines
-
- * install_interactive.pm: try to not get something poorly wrapped
-
- * c/stuff.xs.pm: floppy_info: add missing close(fd)
-
-2001/12/04 Pixel <pixel@mandrakesoft.com>
-
- * network/smb.pm: cleaner smbclient call
-
- * install_steps.pm: re-enable supermount by default
-
-2001/12/04 sdupont
-
- * pixmaps/backup_bot.png, pixmaps/backup_left.png: correct colors
- problems.
-
- * standalone/drakbackup: bzip2 ok for compression to see: decomp without
- pbs whith tar.gz and tar.bz2
- todo: update mode -> decomp + update tar file + recomp
-
-2001/12/04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_interactive.pm: try to not get something poorly wrapped
-
-2001/12/04 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: re-enable supermount by default
-
- * network/smb.pm: cleaner smbclient call
-
-2001/12/04 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fix bad parsing of package to copy (when one doen't
- exist anymore) in
- postinstall_rpms directory.
-
-2001/12/04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_interactive.pm: try to not get something poorly wrapped
-
-2001/12/04 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: re-enable supermount by default
-
- * network/smb.pm: cleaner smbclient call
-
-2001/12/04 dam's <damien@mandrakesoft.com>
-
- * network/network.pm: additional package for wlan
-
- * network/tools.pm: corrected pipe reading
-
-2001/12/04 François Pons <fpons@mandrakesoft.com>
-
- * any.pm: make sure lilo is installed on automatic mode.
-
- * install_any.pm: fix bad parsing of package to copy (when one doen't
- exist anymore) in
- postinstall_rpms directory.
-
-2001/12/04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_interactive.pm: try to not get something poorly wrapped
-
- * mdk-stage1/modules.c: fpons is a sucking chief
-
- * modules.pm, mdk-stage1/usb-resource/update-usb-ids.pl,
- mdk-stage1/Makefile, mdk-stage1/.cvsignore, mdk-stage1/probing.c:
- support install from USB CDROMS (using usb-storage)
-
-2001/12/04 Pixel <pixel@mandrakesoft.com>
-
- * network/smb.pm: cleaner smbclient call
-
-2001/12/04 sdupont
-
- * standalone/drakbackup: last update... for cooker
- drakbackup deamon -> ok
- drakbackup cvs -> to do (only for /etc)
- drakbackup wizard -> only last step
- drakbackup cd -> device detection and ask for only iso file.
- drakbackup net -> do rsync
- drakbackup begin -> todo : update initial message
- update help and about.
-
-2001/12/04 dam's <damien@mandrakesoft.com>
-
- * network/network.pm: additional package for wlan
-
-2001/12/04 François Pons <fpons@mandrakesoft.com>
-
- * any.pm: make sure lilo is installed on automatic mode.
-
- * mdk-stage1/modules.c: fixed gégé sucking.
-
-2001/12/04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/modules.c: fpons is a sucking chief
-
-2001/12/04 François Pons <fpons@mandrakesoft.com>
-
- * mdk-stage1/modules.c: fixed gégé sucking.
-
-2001/12/04 sdupont
-
- * standalone/drakbackup: update...
-
-2001/12/03 dam's <damien@mandrakesoft.com>
-
- * Xconfigurator.pm: removed use gtk
-
-2001/12/03 François Pons <fpons@mandrakesoft.com>
-
- * tools/updatehdlist: initial revision, simple way to update a local set
- of medium from /RPMS.
-
-2001/12/03 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/modules.c: typo of last commit (unused variable -> could not
- compile)
-
-2001/12/03 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/DrakX.pot, share/po/hu.po, share/po/es.po: updated Hungarian
- and Spanish files
-
-2001/12/03 sdupont
-
- * standalone/drakbackup: update
- option step.
- write other file content.
- restore gi.
-
-2001/12/02 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
- share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
- share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
- share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po, share/po/th.po,
- share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
- share/po/sl.po, share/po/vi.po, share/po/br.po, share/po/ca.po,
- share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
- share/po/ro.po, share/po/bs.po, share/po/da.po, share/po/zh_TW.po,
- share/po/cs.po, share/po/af.po: updated pot file
-
-2001/12/01 sdupont
-
- * standalone/drakbackup: do not include browser cache.
-
-2001/11/30 François Pons <fpons@mandrakesoft.com>
-
- * docs/spec-DrakX-8.0.html: added spec (forgotten for quite a long)
-
-2001/11/30 gbeauchesne
-
- * partition_table_gpt.pm:
- - cleanups from mainline
-
- * modules.pm: Suckiness fixes from mainline (gc):
- - Do parse /proc/modules in reverse order
- - Fix "convert old scsi_hostadapter's to new probeall" scheme
-
- * bootloader.pm:
- - Don't forget to link the initrd to the real image in /boot/efi/ too
- - Remove DEBUG printouts in install_efi_boot_menu
-
-2001/11/30 Pixel <pixel@mandrakesoft.com>
-
- * network/smb.pm, any.pm, Makefile.drakxtools, standalone/diskdrake,
- Makefile.config, diskdrake.pm: fileshare should be ok, handle diskdrake
- --fileshare, fix smb import
-
-2001/11/30 sdupont
-
- * pixmaps/backup_left2.png: drakbackup pixmap
-
- * standalone/drakbackup: backend mode-> ok for hd
- we can use drakbackup !.
- todo :
- backend mode:
- - net
- - cd
-
- advanced mode:
- - device detection (cd writer)
-
- wizard:
- - end of this step.
-
- gi:
- - option step in adnanced step to choice
- for example tar.gz or tar.gz2 ...
- update
- restore step 1 & 2.
- adv step -> ok
- todo: wizard ...
- little update!
-
- variables correction in advanced step.
- wizard user question, sys question & daemon
-
-2001/11/29 Chmouel Boudjnah <chmouel@mandrakesoft.com>
-
- * share/rpmsrate: Remove linux_logo
-
-2001/11/29 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * modules.pm: add wvlan_cs
-
- * mdk-stage1/modules.c: remove unneeded handling of "alias
- scsi_hostadapter"
-
- * mdk-stage1/stage1.c: add another expert_third_party_modules at the end
- of enabling-pcmcia-stuff
-
-2001/11/29 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake.pm: remove the export tree for nfs/smb feature, remove some
- test code
- tentative version with export/import nfs/smb tree (committed to have it
- in CVS as the export tree is already deprecated)
-
- * standalone/fileshareset:
- - allow root to export everything
- - remove empty mntpoint (from smb)
-
-2001/11/29 sdupont
-
- * standalone/drakbackup: just update....
- advanced: users correction during save.
- user pass, user login, path to save local or on host
- combo for network protocol.
- wizrad: already to do!
- CDRW burn: todo: devices detection (see to_fond_cd).
- code cleaning.
-
- * standalone/drakfont: cleanning code.
-
-2001/11/28 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * modules.pm:
- - fix pixel sucks of not parsing /proc/modules in
- reverse order
- - be more in sync regarding names of pcmcia drivers
-
- * any.pm: add modules.conf in report.bug
-
-2001/11/28 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/zh_CN.po, share/po/zh_TW.po: updated Chinese file
-
-2001/11/28 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm (read_conf): fix "convert old scsi_hostadapter's to new
- probeall"
-
- * standalone/drakbackup: make check_what_user works
-
- * standalone/fileshareset: better description
- gr_mem in getgrent is space separated, not comma separated
- add samba handling. Should be finished now :)
-
-2001/11/28 sdupont
-
- * pixmaps/backup_bot2.png, pixmaps/quit.png: drakbackup pixmaps.
-
- * standalone/drakbackup: no important changement!
- clean code
- update!
- for gc & Warly: some fixes, correction of advanced, wizard and after
- advanced steps.
- the user have a better gestion during advanced step, the protocols ftp,
- sftp, scp, rsync
- are now include in advanced step..... etc ;-)
- todo: when checkbuttonbox are clicked for user choice set it to 0 or 1
- juste after.
- clean code.
- new after advanced step, correction of checkbuttons problems & new
- pixmaps.
-
-2001/11/27 dam's <damien@mandrakesoft.com>
-
- * share/logo-mandrake.png: updated, cooker style
-
-2001/11/27 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: avoid problem of array reference badly evaluated.
-
-2001/11/27 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * tools/mailchangelog.pl: beurk
- changelog is at linux-mandrake not mandrakesoft
-
- * install_steps.pm: i810 -> no FB at boot
-
-2001/11/27 Pixel <pixel@mandrakesoft.com>
-
- * partition_table_gpt.pm (generate_guid): cleanup
-
- * any.pm (setupBootloader): s/last/return/
-
-2001/11/27 sdupont
-
- * standalone/drakbackup: advanced step...
- update.
- advanced mode ... and ...
- read and use user list correctly, advanced step user list.
-
- * pixmaps/hd.png, pixmaps/net.png, pixmaps/cdrom.png: pixmaps for
- drakbackup.
-
-2001/11/26 Chmouel Boudjnah <chmouel@mandrakesoft.com>
-
- * tools/i386/netboot/stage2.rtl8139: add rtl8139 netboot file that works
-
- * tools/i386/netboot/stage1.rtl8139: add rtl8139 netboot file that works
- stage1/stage2 of rtl8139 didn't work
-
-2001/11/26 dam's <damien@mandrakesoft.com>
-
- * common.pm, my_gtk.pm: new features for new mcc
-
-2001/11/26 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_any.pm: getAndSaveAutoInstallFloppy: don't die when output'ing
- of
- auto_inst.cfg is not possible
-
-2001/11/26 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm: add $o->{excludedocs} feature
-
- * Makefile.drakxtools: remove unneeded files (*.bs and .exists)
-
- * interactive_gtk.pm: cleanup
-
-2001/11/26 sdupont
-
- * standalone/drakbackup: new gi, advanced step.
- update.
- gawk cmds.
- better use for read and save conf. file now on
- /etc/draxtools/drakbackup/drakbackup.cfg
-
- * pixmaps/backup_hd.png, pixmaps/backup_options.png,
- pixmaps/backup_net.png, pixmaps/backup_time.png: png files for
- DrakBackup.
-
-2001/11/25 Pixel <pixel@mandrakesoft.com>
-
- * standalone/fileshareset: first version. for the moment, only nfs.
-
-2001/11/25 sdupont
-
- * standalone/drakbackup: update of read_conf_file and default mode.
-
-2001/11/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/da.po, share/po/es.po: updated Spanish and Danish files
-
-2001/11/24 sdupont
-
- * standalone/drakfont: about...
-
- * standalone/drakbackup: update
- update gi ,build of system, user, other, options interfaces.
- advanced step.
-
-2001/11/23 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_any.pm: package for pcmcia is now called "pcmcia-cs"
-
- * any.pm, detect_devices.pm: pcmcia: /var/run/stab is nor
- /var/lib/pcmcia/stab
- yes it probably doesn't bring anything valuable but it's
- how life is :-)
-
-2001/11/23 sdupont
-
- * standalone/drakbackup: radio buttons & information message.
- change gi interface, include help, about and pixmaps (backup_*.png on
- standalone/pixmaps directory)
-
-2001/11/22 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: removed loading of agpgart module for i810 card.
-
-2001/11/22 sdupont
-
- * standalone/drakfont: about button & GPL license.
-
- * standalone/drakbackup: update gi.
- TODO: separate all the boxes.
- include wizard and advanced in pixmaps.
- update
- notebook gi.
-
-2001/11/21 François Pons <fpons@mandrakesoft.com>
-
- * mdk-stage1/init-data/msgboot-graphicallogo.img.bz2,
- mdk-stage1/init-data/msgboot-blank.img.bz2,
- mdk-stage1/init-data/msgboot.img.bz2: fixed typo in help.msg
-
- * Xconfigurator.pm: hack for SiS 640 for laptop.
-
- * install_any.pm: fixed install_urpmi to build a correct urpmi db.
-
-2001/11/21 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * modules.pm: i810fb
- migrate pcmcia in drakx to use in-kernel version (only
- for 2.4, though --> pcmcia in 2.2 no longer supported)
-
- * install_steps_interactive.pm, Makefile, c/Makefile.PL: migrate pcmcia in
- drakx to use in-kernel version (only
- for 2.4, though --> pcmcia in 2.2 no longer supported)
-
- * install2.pm: i810fb
-
- * mdk-stage1/stage1.c, mdk-stage1/pcmcia_/lex_config.c,
- mdk-stage1/pcmcia_/cardmgr.c, mdk-stage1/pcmcia_/yacc_config.c,
- mdk-stage1/pcmcia_/Makefile, mdk-stage1/Makefile,
- mdk-stage1/pcmcia_/pcmcia.h, mdk-stage1/pcmcia_/ds.h,
- mdk-stage1/pcmcia_/probe.c: migrate to pcmcia support from kernel,
- patching untouched imported
- sources from pcmcia-cs-3.1.29, to ease further updates of vendor
- code (start from a clean pcmcia_ subdir)
-
-2001/11/21 Pixel <pixel@mandrakesoft.com>
-
- * fsedit.pm (suggestions_mntpoint): if there's no server suggestion, use
- the simple
- one, so that 'simple' is the only one required when someone modifies
- %fsedit::suggestions
-
-2001/11/20 gbeauchesne
-
- * partition_table.pm:
- - Add isEfi() to isOtherAvailableFS() test so that install doesn't
- suggest
- to format /boot/efi by default. That way, we could preserve (shame on
- us)
- EFI boot partition generated by Windows XP 64 bits...
-
-2001/11/20 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/pcmcia_/lex_config.c, mdk-stage1/pcmcia_/cardmgr.c,
- mdk-stage1/pcmcia_/bulkmem.h, mdk-stage1/pcmcia_/cardmgr.h,
- mdk-stage1/pcmcia_/vg468.h, mdk-stage1/pcmcia_/driver_ops.h,
- mdk-stage1/pcmcia_/i82365.h, mdk-stage1/pcmcia_/cirrus.h,
- mdk-stage1/pcmcia_/version.h, mdk-stage1/pcmcia_/cistpl.h,
- mdk-stage1/pcmcia_/yacc_config.c, mdk-stage1/pcmcia_/cs_types.h,
- mdk-stage1/pcmcia_/cs.h, mdk-stage1/pcmcia_/yacc_config.h,
- mdk-stage1/pcmcia_/ds.h, mdk-stage1/pcmcia_/tcic.h,
- mdk-stage1/pcmcia_/probe.c: Initial revision
- version 3.1.29
-
-2001/11/19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * interactive_stdio.pm: for po i can't use $ for string interpolation
-
-2001/11/19 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * services.pm, standalone/scannerdrake: Corrected English errors
-
- * share/po/hu.po, share/po/cs.po: updated pot file
- updated Czech and Hungarian files
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
- share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
- share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
- share/po/is.po, share/po/it.po, share/po/id.po, share/po/pl.po,
- share/po/no.po, share/po/fi.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
- share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
- share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
- share/po/bs.po, share/po/da.po, share/po/zh_TW.po, share/po/af.po:
- updated pot file
-
-2001/11/19 Pixel <pixel@mandrakesoft.com>
-
- * any.pm (setupBootloader): fix typo
- (setupBootloader): fix typo
-
-2001/11/19 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Last correction was wrong, reverted it.
-
-2001/11/19 yduret
-
- * standalone/scannerdrake: added dynamic support
-
-2001/11/16 Pixel <pixel@mandrakesoft.com>
-
- * any.pm: syntax cleanup
- - a little cleanup
- - in case there is both scsi and ide hard drives, go to expert
- questions
- directly (it would need a semi_auto asking on which drive the bios
- boots...)
-
-2001/11/14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * help.pm: updated help file
-
- * keyboard.pm: Added Swedish dvorak keyboard
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
- share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
- share/po/help_xml2pm.pl, share/po/nl.po, share/po/ja.po, share/po/wa.po,
- share/po/sv.po, share/po/is.po, share/po/hu.po, share/po/it.po,
- share/po/id.po, share/po/pl.po, share/po/no.po, share/po/fi.po,
- share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
- share/po/ar.po, share/po/sl.po, share/po/vi.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
- share/po/zh_TW.po, share/po/cs.po, share/po/af.po: updated pot file
-
-2001/11/12 sdupont
-
- * standalone/drakbackup: new backup tool.
- backend_mode with options.
- begin interactive mode.
-
-2001/10/29 dam's <damien@mandrakesoft.com>
-
- * standalone/drakfont: code correction
-
-2001/10/29 gbeauchesne
-
- * rescue/list.ia64:
- - Add xfs_repair and efibootmgr
-
-2001/10/29 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * fs.pm, loopback.pm, fsedit.pm, bootloader.pm: revert back to /initrd
-
- * modules.pm: here too
- CDCEther looks good, I add it
-
-2001/10/29 Pixel <pixel@mandrakesoft.com>
-
- * tools/pcmcia_config.patch: adapt for new pcmcia-cs
-
-2001/10/29 sdupont
-
- * standalone/drakfont: Copyright (C)
- correction of warning & code cleaning.
- the end.... i think...
- updated
- uninstall interface & progress bar
- uninstall interface : lists & progress bar
- new progress bar update
- todo: second list
-
-2001/10/28 dam's <damien@mandrakesoft.com>
-
- * standalone/drakfont: cleaning
-
-2001/10/27 daouda
-
- * devices.pm, my_gtk.pm, Xconfig.pm: return value at end of module
-
- * share/rpmsrate:
- - increase icewm weight.
-
-2001/10/26 dam's <damien@mandrakesoft.com>
-
- * standalone/drakautoinst, standalone/drakfont: progress bar hack
-
-2001/10/26 Pixel <pixel@mandrakesoft.com>
-
- * mdk-stage1/pcmcia_config.patch: was duplicated in gi/tools
-
- * partition_table_gpt.pm, partition_table_raw.pm: no adjust start and end
- on GPT
-
-2001/10/26 sdupont
-
- * standalone/drakfont: updated.
- search correct progress bar mode implementation.
- updated
- fix some bugs & interface progress implementation.
- TODO:
- progress before backend.
- search if directory already exist before custom install.
-
-2001/10/25 dam's <damien@mandrakesoft.com>
-
- * standalone/drakautoinst: simple variables handled, code compression.
- The new and shiny drakautoinst is coming. P|-|34R
- The new drakautoinst is coming. P|-|34R
-
- * pixmaps/mdk_logo.png: additional logo
-
- * standalone/drakfont: code correction
-
-2001/10/25 sdupont
-
- * standalone/drakfont: merge differents versions.
- file sector, list of fonts for advanced install...
- applications choice, license widget, help widget.
-
-2001/10/24 dam's <damien@mandrakesoft.com>
-
- * standalone/drakfont: updated
- updated
- updated, lot of bugs.
- updated
-
- * my_gtk.pm: added set_editable
-
-2001/10/24 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * rescue/lsparts, mdk-stage1/rescue-gui.c, mdk-stage1/frontend.h,
- mdk-stage1/.cvsignore, rescue/install_bootloader,
- rescue/tree/etc/rc.sysinit, rescue/Makefile,
- mdk-stage1/stdio-frontend.c, rescue/guessmounts, mdk-stage1/Makefile,
- rescue/tree/etc/issue, rescue/make_rescue_img,
- mdk-stage1/newt-frontend.c:
- - add a GUI to the rescue
- - provide guessmounts with better efficiency and output, go to
- console, and reboot
- - provide install_bootloader which runs lilo from /mnt if it seems
- safe
- - add lsparts to rescue, which prints partitions with detected types
-
-2001/10/24 Pixel <pixel@mandrakesoft.com>
-
- * fsedit.pm: replace /initrd with /lib/initrd
- (hds): in case of GPT, allow ext2 to be replaced by any kind of
- partitions (esp. EFI)
-
- * partition_table.pm, partition_table_gpt.pm, partition_table_bsd.pm,
- partition_table_raw.pm: add methods first_usable_sector and
- last_usable_sector
-
- * fs.pm, loopback.pm, bootloader.pm: replace /initrd with /lib/initrd
-
-2001/10/24 sdupont
-
- * standalone/drakfont: scroll
- `
- import_status & progress.
- gi update.
-
-2001/10/23 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * services.pm: tagged as translatable some left out strigns
-
-2001/10/23 sdupont
-
- * standalone/drakfont: gi update
- doc and progress bar.
- gui: install from directory
- gui supported.
-
-2001/10/23 yduret
-
- * share/po/fr.po: fixed fohtes grammar
-
-2001/10/22 dam's <damien@mandrakesoft.com>
-
- * network/tools.pm: speedtouch config : added usa vpi vci
-
-2001/10/22 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/modules.c: oops forgot to umount after "updatemodules"...
-
-2001/10/22 Pixel <pixel@mandrakesoft.com>
-
- * rescue/tree/etc/profile: fix PATH (have /mnt/bin /mnt/usr/bin ...)
-
-2001/10/21 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Fixed connection device setting for "oki4w" driver.
-
-2001/10/19 gbeauchesne
-
- * partition_table_gpt.pm:
- - Use /dev/random through devices::make() instead of /dev/urandom
- - Localize file descriptor
- - Capitalize error message if no /dev/random found
-
- * partition_table.pm:
- - s/Win98 FAT32/FAT32/
- - s/Partition that contains an EFI file system/EFI (FAT-12/16/32)/
- - Add "FAT32" to @important_types for IA-64 & /boot/efi
-
-2001/10/19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/stdio-frontend.c: small fix
-
-2001/10/19 Pixel <pixel@mandrakesoft.com>
-
- * install_interactive.pm: OOize can_raw_add
-
- * partition_table.pm: handle empty $hd->{primary}{raw} (happens with no
- partitions on ia64)
- - raw_add, can_raw_add moved to partition_table_raw
- - using raw_removed
-
- * partition_table_dos.pm: better handling of CHS overflow (mainly for non
- cylinder-boundary aligned part (like ia64))
-
- * partition_table_raw.pm (adjustEnd): in case the end is totalsectors,
- don't adjust since totalsectors / cylinder_size may not be an integer
- (zero_MBR): defaults to GPT on ia64
- (raw_add, can_raw_add, raw_removed): created, can now be overloaded in
- partition_table_*.pm's
- (get_geometry): keep the total_sectors as given by c::total_sectors,
- don't try to recompute it based on nb_cylinders (for hds where
- total_sectors is not a multiple of nb_cylinders)
-
- * common.pm: cleanup
-
- * partition_table_gpt.pm: fix ending is last sector, not next one
- add TODO for partition entry guid
- - writing partition table now works
- - creating a new partition table now works (except GUIDs generation)
-
-2001/10/18 dam's <damien@mandrakesoft.com>
-
- * network/tools.pm: corrected GET_FL and co
-
-2001/10/18 François Pons <fpons@mandrakesoft.com>
-
- * standalone/XFdrake: fix ia64 glitches with /usr/X11R6/lib/X11/Cards (now
- use rgb.txt instead).
-
-2001/10/18 Pixel <pixel@mandrakesoft.com>
-
- * partition_table_gpt.pm:
- - add checksum verif on partition entries
- - detect the type of partition since the partition table types seem
- quite poor
- read part of GPT partition table working
-
- * fsedit.pm:
- - add checksum verif on partition entries
- - detect the type of partition since the partition table types seem
- quite poor
-
- * partition_table.pm: read part of GPT partition table working
- shorter GPT name
-
- * detect_devices.pm: safer modprobe ide-floppy
-
-2001/10/18 sdupont
-
- * standalone/drakfont: change Fontmap ghostscript file.
- drakfont support now .gsf fonts
- end of backend......
- update
-
-2001/10/17 dam's <damien@mandrakesoft.com>
-
- * standalone/draksec: typo
-
-2001/10/17 sdupont
-
- * standalone/drakfont: implementation of type1 fonts removing.
- ghostscript, xfs and staroffice tested and supported.
-
-2001/10/16 dam's <damien@mandrakesoft.com>
-
- * standalone/draksec: correct bad level display
-
- * standalone/interactive_http/Makefile: makes rpmlint happy
-
-2001/10/16 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/pci-resource/update-pci-ids.pl: print checks
-
- * rescue/tree/etc/rc.sysinit: better phrasing
-
-2001/10/16 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * rescue/devices.pl, mdk-stage1/pci-resource/update-pci-ids.pl,
- rescue/list.ppc: typo in update kernel by /me
- fine-tune sanity_check for ppc
- move /dev/nvram from list.ppc to devices.pl
-
-2001/10/15 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/da.po: updated Danish file
-
-2001/10/15 yduret
-
- * scanner.pm: wonderful perl forgotten
-
-2001/10/12 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/pci-resource/update-pci-ids.pl: have "other.img" drivers also
- supported
-
-2001/10/12 sdupont
-
- * standalone/drakfont: support all installations, and support xfs,
- ghostcript, staroffice.
- todo aplli: openoffice, gimp, abiword, netscape & other browsers...
- todo or to see: --strong ttmkfdir -c ???
- emd of backend..
-
-2001/10/11 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: multiple card configuration bug corrected.
- allelluia.
-
- * network/tools.pm: aded use c
-
- * standalone/drakfont: code review
-
-2001/10/11 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * interactive_stdio.pm, install_steps_stdio.pm: stdio mode works again
-
-2001/10/11 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm: ensure postInstallNonRooted is done *before* ejecting cdrom
-
-2001/10/11 sdupont
-
- * docs/drakfont/drakfont.log, docs/drakfont/drakfont.pdf,
- docs/drakfont/drakfont.dvi: clean directory..
-
- * docs/drakfont/drakfont.aux, docs/drakfont/dia_srcs/drakfont.dia,
- docs/drakfont/dia_srcs/drakfont_uninstall.dia,
- docs/drakfont/dia_srcs/drakfont_install.dia: delete all bads files...
-
- * standalone/drakfont: improved....
- improved && implement remove fonts for xfs
- improved
- improved
- optimisation
- correction of option install --replace
- dialog of install options
- correction of install option.
-
- * docs/drakfont/drakfont.jpg, docs/drakfont/drakfont_install.jpg,
- docs/drakfont/drakfont_uninstall.jpg, docs/drakfont/mandrake.ps: jpg &
- ps with -kb option
- clean...2
-
-2001/10/10 dam's <damien@mandrakesoft.com>
-
- * standalone/drakfont: typo
- improved options handling
-
- * standalone/net_monitor: ergo and features improvments, pipe handling
- correction
-
- * network/tools.pm: updated
-
-2001/10/10 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm, share/locales-skeleton.tar.bz2: enabled Maltese language
-
-2001/10/10 Pixel <pixel@mandrakesoft.com>
-
- * interactive.pm: normalize the default type entry ("entry")
-
- * interactive_gtk.pm: fix typo (on clicked_may_quit)
-
-2001/10/10 sdupont
-
- * standalone/drakfont: option replace for "install from" &
- windows_import...
- update install dir
- better for --install
- new version of drakfont. in perl langage.
-
- * docs/drakfont/drakfont.jpg, docs/drakfont/drakfont.aux,
- docs/drakfont/drakfont.log, docs/drakfont/drakfont.pdf,
- docs/drakfont/drakfont.tex, docs/drakfont/Makefile,
- docs/drakfont/drakfont_install.jpg, docs/drakfont/drakfont.dvi,
- docs/drakfont/drakfont_uninstall.jpg, docs/drakfont/mandrake.ps: docs
- drakfont
-
-2001/10/10 yduret
-
- * standalone/scannerdrake: first apparition on earth..
-
- * Makefile.config: added scannerdrake
-
-2001/10/09 dam's <damien@mandrakesoft.com>
-
- * network/tools.pm: removed trash
- connection test is now in background, corrects the interface freeze
- problem
-
- * pixmaps/net_u.png: new pixmap for draknet/net_monitor
-
- * standalone/net_monitor, standalone/draknet: connection test is now in
- background, corrects the interface freeze problem
-
-2001/10/09 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hu.po: updated Hungarian file
-
-2001/10/09 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm: fix detecting read-only drives (like memory-sticks)
-
- * partition_table.pm: make perl_checker happy
-
- * partition_table_raw.pm: fix detecting read-only drives (like
- memory-sticks)
- make perl_checker happy
-
- * modules.pm, detect_devices.pm, install2.pm: ensure floppies() takes care
- of usb-storage if possible, so that patch on usb floppy works
-
-2001/10/09 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * Xconfigurator_consts.pm, keyboard.pm, Xconfigurator.pm: move to Linux
- keycodes on PPC, add additional Apple modelines
-
- * install_steps_interactive.pm: re-enable PPC bootloader setup
-
-2001/10/08 dam's <damien@mandrakesoft.com>
-
- * c/stuff.xs.pm: added FL_GET and FL_SET
-
-2001/10/08 François Pons <fpons@mandrakesoft.com>
-
- * modules.pm: keep isp and gdth module for hd.img (as well as all.rdz) as
- they have been
- removed from the skip list for stage1.
-
- * rescue/tree/etc/oem: added silly modification to avoid using more than 7
- partition for DAC960 (/home
- and /var are not created in the current state).
-
-2001/10/08 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/pci-resource/update-pci-ids.pl: ia64
-
- * mdk-stage1/Makefile: 8.1 -> cooker
-
-2001/10/08 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm, partition_table.pm: yet a few other ataraid cases
-
-2001/10/06 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * partition_table_raw.pm, partition_table.pm: updates to accomodate IBM
- PPC systems with DOS partition table
-
-2001/10/05 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: added (missing) creation of
- /hd/boot/grub/device.map (needed for
- CompactSmartArray).
-
-2001/10/05 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: kdegames : 2 -> 4
-
-2001/10/04 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: fix (work around) parted problem when it refuse to
- use all disk space for
- partition.
- added another psacct log file in touch.
- fixed typo on scalar reference for psacct bug.
- updated with 8.1 OEM ProSuite.
-
- * tools/oem-prepare: updated with 8.1 OEM ProSuite.
-
-2001/10/04 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hu.po: updated Hungarian file
-
-2001/10/04 Pixel <pixel@mandrakesoft.com>
-
- * partition_table_dos.pm: is little-endian, so use "V" instead of "I"
-
-2001/10/03 François Pons <fpons@mandrakesoft.com>
-
- * tools/oem-prepare: synced with oem script.
- removed 3D games not installed by default.
-
- * rescue/tree/etc/oem: fixed typo in produced patch.
- added extension to pro suite CD (added kernel-enterprise to possibly
- installable
- and install kernel22).
- removed 3D games not installed by default.
- added missing xmms-arts.
- allow halting.
-
-2001/10/03 Pixel <pixel@mandrakesoft.com>
-
- * fsedit.pm: yet another ataraid support patch
-
-2001/10/02 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: fix previous hack.
- added hack to do "/sbin/depmod -a" for NVIDIA driver.
-
-2001/10/02 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/probing.c: new pci-ids.h
-
- * mdk-stage1/usb-resource/update-usb-ids.pl: better look
-
- * share/po/fr.po: small fix
-
- * standalone/drakgw: don't call pkgs_install when no package needs to be
- installed
-
-2001/10/02 Pixel <pixel@mandrakesoft.com>
-
- * detect_devices.pm: bloody ataraid detection
-
- * devices.pm: ataraid devices support
-
-2001/10/01 François Pons <fpons@mandrakesoft.com>
-
- * share/rpmsrate: fixed bad format for BOOKS used in DEVELOPMENT.
-
- * rescue/tree/etc/oem: added CHARSET support, removed kernel22 and
- kernel-enterprise from list of
- package installable in oem mode, added possibility to set language on
- /etc/oem
- script invocation.
-
- * install_steps_interactive.pm: avoid chooseCD on oem install.
-
- * install_steps_gtk.pm: avoid asking for changing CD on oem install.
-
- * install_any.pm: use $boot_medium for default medium in oem install,
- avoid using kernel22 or
- kernel-enterprise in oem install (space available is too tight on CD oem
- version).
-
- * tools/oem-prepare: synced with oem script.
-
-2001/10/01 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/pci-resource/update-pci-ids.pl: reword it so that it reflects
- what's in the marfiles
-
-2001/10/01 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/bg.po: updated Bulgarian file
-
-2001/09/29 Chmouel Boudjnah <chmouel@mandrakesoft.com>
-
- * docs/README: New adress where to find the kernel BOOT
-
-2001/09/29 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/da.po: updated Danish file
-
-2001/09/27 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * rescue/drvinst: don't install usb keyboard drivers more than once
- try to fix usb keyboards
-
-2001/09/27 kjx
-
- * share/po/zh_CN.po: translating
-
-2001/09/26 gbeauchesne
-
- * install_any.pm:
- - Suggest /boot/efi on IA-64 for the first VFAT partition found,
- instead
- of /mnt/windows
-
- * bootloader.pm:
- - bootloader.pm (suggest): don't search for dos (or windows) boot
- partition
- on IA-64 since ELILO can only boot Linux.
- - bootloader.pm (write_lilo_conf): don't cry if we don't have
- /boot/boot.b
- or boot/message on IA-64.
-
- * rescue/list.ia64:
- - Add file list for "rescue" disk
-
- * share/list.ia64, partition_table.pm:
- - partition_table.pm: Add XFS suggestion for IA-64
- - share/list.ia64: misc updates and additions wrt. XFS, ReiserFS
-
-2001/09/25 baudens
-
- * share/po/fr.po: s/Linux Mandrake/Mandrake Linux/
- Remove totally crazy translation.
- Translators, please use your brain!
-
-2001/09/25 gbeauchesne
-
- * partition_table.pm:
- - Add ReiserFS and Ext3fs entries for IA-64
-
-2001/09/25 Pixel <pixel@mandrakesoft.com>
-
- * pkgs.pm (naughtyServers): cleanup comments
-
-2001/09/25 warly
-
- * share/rpmsrate: put gtk-themes _and_ sawfish-themes to 4 so that it is
- installed for newbie and drakfirsttime does not fail.
- put gtk-themes to 4 so that it is installed for newbie and drakfirsttime
- does not fail.
-
-2001/09/25 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: allow non ejectable medium to allow all
- hdlists on the bootable medium.
- make current boot medium already selected if multiple hdlist are on this
- boot medium.
-
-2001/09/25 warly
-
- * share/rpmsrate: put gtk-themes _and_ sawfish-themes to 4 so that it is
- installed for newbie and drakfirsttime does not fail.
- put gtk-themes to 4 so that it is installed for newbie and drakfirsttime
- does not fail.
-
-2001/09/24 dam's <damien@mandrakesoft.com>
-
- * share/po/fr.po: corrected translation
-
-2001/09/24 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/stage1.c, mdk-stage1/mount.c, mdk-stage1/mount.h,
- mdk-stage1/disk.c: hd.img now detects partition types... backport from
- DrakX :-)
-
-2001/09/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/nl.po: updated Dutch file
-
-2001/09/24 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm (mount_part): fix for iso loopback mounted
-
- * share/po/fr.po: fix
-
-2001/09/24 dam's <damien@mandrakesoft.com>
-
- * network/adsl.pm, network/isdn.pm: type assignation bug fix
- corrected type assignation
-
- * share/po/fr.po: corrected bad translation
-
- * standalone/draknet: corrected type assignation
-
-2001/09/24 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * bootloader.pm: fix add_append (there was a ) at the end of the parameter
- value)
-
-2001/09/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ko.po, share/po/tr.po, share/po/es.po: updated Spanish, Korean
- and Turkish files
-
-2001/09/24 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm (mount_part): fix for iso loopback mounted
-
- * share/po/fr.po: fix
-
-2001/09/24 warly
-
- * share/rpmsrate: lower arkeia
-
-2001/09/24 dam's <damien@mandrakesoft.com>
-
- * modules.pm: corrected isdn firmware
-
- * network/adsl.pm, network/isdn.pm: type assignation bug fix
- corrected type assignation
-
- * share/po/fr.po: corrected bad translation
-
- * standalone/draknet: corrected type assignation
-
-2001/09/24 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * bootloader.pm: fix add_append (there was a ) at the end of the parameter
- value)
-
-2001/09/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ko.po, share/po/tr.po, share/po/es.po: updated Spanish, Korean
- and Turkish files
-
-2001/09/24 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm: fix small error merging existing fstab
-
- * share/po/fr.po: fix
-
- * diskdrake.pm: do not propose to mount/umount removable medias (disabled
- for now)
-
- * diskdrake_interactive.pm: hide the supermount checkbox in standalone
-
-2001/09/24 warly
-
- * share/rpmsrate: lower arkeia
-
-2001/09/24 dam's <damien@mandrakesoft.com>
-
- * network/netconnect.pm, network/ethernet.pm: bug fix
-
- * modules.pm: corrected isdn firmware
-
- * network/isdn.pm, network/adsl.pm: type assignation bug fix
- corrected type assignation
-
- * standalone/draknet: corrected type assignation
-
- * install_any.pm, rescue/tree/etc/oem: added isdn-light to be copied on hd
- during install
-
-2001/09/24 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: deactivated Riva128 3D hw acceleration and too many
- problems reported with it.
-
- * share/rpmsrate: allow rpm build for non expert who choose development.
-
- * install_steps.pm: disable wins in /etc/nsswitch.conf (after installed
- packages).
-
-2001/09/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ko.po, share/po/tr.po, share/po/es.po: updated Spanish, Korean
- and Turkish files
-
-2001/09/24 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm: fix small error merging existing fstab
- add "iocharset=" for cdrom
-
- * install_steps.pm:
- - disable supermount by default
- - cleanup nsswitch.conf wins removing
-
- * diskdrake.pm: do not propose to mount/umount removable medias (disabled
- for now)
-
- * diskdrake_interactive.pm: hide the supermount checkbox in standalone
-
-2001/09/24 siegel
-
- * share/po/de.po: new german version
-
-2001/09/24 warly
-
- * share/rpmsrate: lower arkeia
-
-2001/09/24 dam's <damien@mandrakesoft.com>
-
- * network/netconnect.pm, network/ethernet.pm: bug fix
-
-2001/09/24 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: deactivated Riva128 3D hw acceleration and too many
- problems reported with it.
-
- * share/rpmsrate: allow rpm build for non expert who choose development.
- removed any reference to XFree86-glide-module or Glide_XXX packages.
-
- * pkgs.pm: sort mediums by number, in allMediums() else they will be in
- hash keys orders in
- install_steps_interactive::chooseCD().
-
- * install_steps.pm: disable wins in /etc/nsswitch.conf (after installed
- packages).
-
-2001/09/24 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm: add "iocharset=" for cdrom
-
- * install_steps.pm:
- - disable supermount by default
- - cleanup nsswitch.conf wins removing
-
-2001/09/24 François Pons <fpons@mandrakesoft.com>
-
- * share/rpmsrate: removed any reference to XFree86-glide-module or
- Glide_XXX packages.
-
- * pkgs.pm: sort mediums by number, in allMediums() else they will be in
- hash keys orders in
- install_steps_interactive::chooseCD().
-
-2001/09/24 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: File permission settings during install were not done.
- Fixed.
-
-2001/09/23 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: misc typo correction
-
- * install_steps.pm: voodoo cards don't like performing 3d accel in fb mode
-
-2001/09/23 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm: add "Graphical Environment" in meta_class server
-
- * share/rpmsrate: simplify (for the moment)
- do not force X flag, have it selected for any "Graphical Environment"
-
- * share/compssUsers, install_any.pm: do not force X flag, have it selected
- for any "Graphical Environment"
-
-2001/09/23 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_steps.pm: voodoo cards don't like performing 3d accel in fb mode
-
-2001/09/23 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/cs.po, share/po/hu.po: updated Czech and Hungarian file
-
- * share/po/zh_TW.po: updated Chinese file
-
-2001/09/23 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm: add "Graphical Environment" in meta_class server
-
- * fsedit.pm: add magic SWAPSPACE2
-
- * bootloader.pm: allow bootloader on fat partitions
-
- * share/compssUsers, share/rpmsrate, install_any.pm: do not force X flag,
- have it selected for any "Graphical Environment"
-
-2001/09/22 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/Makefile: version is 8.1
-
-2001/09/22 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/bs.po: updated Bosnian file
-
-2001/09/22 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm, install2.pm:
- - cleanup noatime option setting
- - cleanup exec option setting (must noexec => 0 instead of exec => 1)
-
- * bootloader.pm (suggest): fix kernel 2.2 secure adding in menu
-
-2001/09/22 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/bg.po: updated Bulgarian file
-
-2001/09/22 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm (suggest): fix kernel 2.2 secure adding in menu
-
-2001/09/22 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Added support for automatic /dev/... file permissions
- setting by devfsd.
- Improved matching of auto-detection results with database entries.
- Given hint to the user to select the correct model when matching fails.
-
- * printer.pm: Added support for automatic /dev/... file permissions
- setting by devfsd.
-
-2001/09/21 François Pons <fpons@mandrakesoft.com>
-
- * detect_devices.pm: avoid detecting plip for live upgrade.
-
-2001/09/21 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * keyboard.pm: use "us" XKB file for Korean keyboard, otherwise some
- functionality is lost
- small fix for "vn" keyboard (enable toggle key)
-
- * share/po/ko.po: updated Korean file
- updated pot file
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/nl.po, share/po/ja.po, share/po/wa.po,
- share/po/sv.po, share/po/hu.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po, share/po/th.po,
- share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/vi.po,
- share/po/gl.po, share/po/ca.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/bs.po, share/po/da.po, share/po/cs.po,
- share/po/af.po: updated pot file
-
- * printerdrake.pm: small fix
-
-2001/09/21 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: When one changes the driver of a freshly
- added printer, the cursor was not pointed to the old driver, fixed.
- Fixed paper size not set according to chosen language during
- installation.
-
-2001/09/21 dam's <damien@mandrakesoft.com>
-
- * network/adsl.pm: typo
-
-2001/09/21 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_gtk.pm: reworked medium management.
- moved com_license to parent package (as code that show the license is
- now
- available even for non gtk install).
-
- * Xconfigurator.pm: S3 ViRGE is a bad card for testing on live upgrade.
-
- * pkgs.pm, install_any.pm: reworked medium management.
-
- * detect_devices.pm: avoid detecting plip for live upgrade.
-
- * install_steps_interactive.pm: avoid keeping testing code.
- reworked medium management.
- added code to support changeable cdrom, set a unique copy of license for
- installing commercial application as package variable (exported).
-
-2001/09/21 gbeauchesne
-
- * share/po/no.po: remove trailing '\n'
-
-2001/09/21 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hu.po, share/po/no.po: updated pot file
- updated pot file
- updated Norwegian and Hungarian files
- updated pot file
-
- * help.pm: updated help file
-
- * share/po/help_xml2pm.pl: updated pot file
-
- * printerdrake.pm: small fix
- changed text strings to be more translator friendly
- (NEVER EVER cut a phrase)
-
- * share/po/zh_CN.po, share/po/ru.po, share/po/vi.po: updated pot file
- updated pot file
- corrected extra \n
- updated pot file
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/sr.po,
- share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
- share/po/az.po, share/po/pt_BR.po, share/po/hr.po, share/po/ko.po,
- share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
- share/po/it.po, share/po/id.po, share/po/pl.po, share/po/fi.po,
- share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
- share/po/gl.po, share/po/ca.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/bs.po, share/po/da.po, share/po/cs.po,
- share/po/af.po: updated pot file
- updated pot file
- updated pot file
-
- * keyboard.pm: adapted keyboard priority numbers (it is useless to give a
- multichoice with a
- value higher than 90)
-
- * share/po/zh_TW.po: updated pot file
- updated pot file
-
-2001/09/21 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm: write password in lilo.conf even if it's also done by
- msec, otherwise lilo will fail with restricted only
-
- * install_steps.pm: Ensure $o->{superuser}{name} is temporary
-
- * share/rpmsrate, install_any.pm: add HIGH_SECURITY flag, use it for
- libsafe and kernel22-secure
-
-2001/09/21 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Added a forgotten "_( ... )".
-
-2001/09/21 warly
-
- * share/rpmsrate: add gnomemeeting and openmcu
-
-2001/09/20 Pixel <pixel@mandrakesoft.com>
-
- * install_interactive.pm (partition_with_diskdrake): ensure the $::expert
- flag modifications in
- diskdrake do not escape from diskdrake
-
- * install_steps_interactive.pm (choosePartitionsToFormat): do not propose
- check bad blocks for xfs and jfs
-
-2001/09/20 dam's <damien@mandrakesoft.com>
-
- * network/netconnect.pm: don't reapply the conf, if already applied.
- usefull for dhcp, because the network should be restarted after
- configured
-
- * network/adsl.pm: test if microcode is there
-
- * bootlook.pm: removed blocking die
-
-2001/09/20 fcrozat
-
- * share/rpmsrate: Add gnome-user-docs to GNOME install
- Install Mdk eazel engine for gnome
-
-2001/09/20 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: take care not probing in /dev/ for finding package to upgrade,
- this cause
- problem in live_upgrade.
-
- * Xconfigurator.pm: added VideoRam for ET 6x00 card.
-
- * network/netconnect.pm: tried to fix damien sucking.
-
-2001/09/20 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: misc
-
-2001/09/20 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/tr.po: updated Turkish file
-
- * share/po/cs.po: updated Czech file
-
- * share/po/nl.po, share/po/da.po, share/po/zh_TW.po: updated Danish,
- Chinese and Dutch files
-
-2001/09/20 Pixel <pixel@mandrakesoft.com>
-
- * install_interactive.pm (partition_with_diskdrake): ensure the $::expert
- flag modifications in
- diskdrake do not escape from diskdrake
-
- * share/rpmsrate: raise i18n fonts
-
- * fsedit.pm (hds): do a get_major_minor where needed
-
- * lang.pm: replace xcin by chinput as per Alex request
-
- * install_steps_interactive.pm (choosePartitionsToFormat): do not propose
- check bad blocks for xfs and jfs
-
-2001/09/20 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Fixed flow of the program for the "recommended" mode of
- the installation.
-
-2001/09/20 dam's <damien@mandrakesoft.com>
-
- * network/netconnect.pm: don't reapply the conf, if already applied.
- usefull for dhcp, because the network should be restarted after
- configured
-
- * mouse.pm: text positionning
-
- * standalone/net_monitor: less gethostbyname
-
-2001/09/20 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: take care not probing in /dev/ for finding package to upgrade,
- this cause
- problem in live_upgrade.
-
- * network/netconnect.pm: tried to fix damien sucking.
-
-2001/09/20 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/nl.po, share/po/da.po, share/po/zh_TW.po: updated Danish,
- Chinese and Dutch files
-
-2001/09/20 Pixel <pixel@mandrakesoft.com>
-
- * share/rpmsrate: raise i18n fonts
- s/telnet-server/telnet-server-krb5/
-
- * fsedit.pm (hds): do a get_major_minor where needed
-
- * fs.pm (add2all_hds): allow both "smbfs" and "smb" as fs type
-
- * lang.pm: replace xcin by chinput as per Alex request
-
- * printerdrake.pm: back out the modif from till as asked by till
-
-2001/09/20 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Make it possible to configure more than 1 printer in a
- "recommended" mode installation.
-
-2001/09/19 dam's <damien@mandrakesoft.com>
-
- * network/adsl.pm, network/netconnect.pm, network/ethernet.pm: network
- restart at better place
-
-2001/09/19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: chromium and tuxracer don't work well with Riva
-
-2001/09/19 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/it.po: updated pot file
- updated help xml
-
- * help.pm: updated help file
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/bg.po, share/po/sr.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/nl.po, share/po/ja.po,
- share/po/sv.po, share/po/hu.po, share/po/id.po, share/po/pl.po,
- share/po/fi.po, share/po/no.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/vi.po, share/po/gl.po,
- share/po/ca.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
- share/po/bs.po, share/po/da.po, share/po/zh_TW.po, share/po/cs.po,
- share/po/af.po: updated pot file
-
- * share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/de.po:
- updated help xml
-
- * share/po/wa.po: updated pot file
- updated pot file
-
-2001/09/19 dam's <damien@mandrakesoft.com>
-
- * network/adsl.pm, network/netconnect.pm, network/ethernet.pm: network
- restart at better place
-
-2001/09/19 fcrozat
-
- * share/rpmsrate: Add mdk-eazel-engine
-
- * share/po/fr.po: Fix french mistakes
-
-2001/09/19 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: added code to check if package are really installed.
-
- * Xconfigurator.pm: Rage 128 doesn't like XF3 at all.
- make only bad card Riva128 for testing XF4.
- Riva128 is now a bad card.
-
-2001/09/19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/init.c: raklet quoting
-
- * share/rpmsrate: chromium and tuxracer don't work well with Riva
-
-2001/09/19 Pixel <pixel@mandrakesoft.com>
-
- * loopback.pm (create): don't use seek to create big files otherwise you
- get hole and
- swapon doesn't like it
-
- * any.pm (ask_users): default icon "man"
-
- * lang.pm: compatibility with older $o->{lang} names (for auto_installs)
-
- * install2.pm: initial support for server install
- compatibility with older $o->{lang} names (for auto_installs)
-
- * install_steps_gtk.pm: initial support for server install
-
- * printerdrake.pm: help perl_checker
-
- * pkgs.pm, share/rpmsrate, install_any.pm:
- - gmc instead of nautilus for non-latin1 installs
- - introduce CHARSET flag and use it
-
-2001/09/19 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Network is now only required (and checked) for remote
- printers.
- Several buglets fixed in remote CUPS server dialog.
-
- * printerdrake.pm: Removed a forgotten debug help line from the code.
- Fixed typo in dialog text of high/paranoid security.
- Network is now only required (and checked) for remote printers.
- Several buglets fixed in remote CUPS server dialog.
-
-2001/09/18 dam's <damien@mandrakesoft.com>
-
- * network/netconnect.pm: don't ask to connect if lan or dhcp
-
-2001/09/18 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install2.pm: don't create bootdisk by default
-
- * share/po/fr.po: misc
-
-2001/09/18 Pixel <pixel@mandrakesoft.com>
-
- * any.pm (write_passwd_user): fix setting "pw" field (for auto_installs)
-
- * install_steps_gtk.pm, pkgs.pm: tentative to correct install time for big
- installs
-
-2001/09/18 dam's <damien@mandrakesoft.com>
-
- * network/adsl.pm, my_gtk.pm: corrected Speedtouch -> speedtouch
-
- * network/netconnect.pm: don't ask to connect if lan or dhcp
-
- * standalone/drakgw: debug
-
-2001/09/18 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: added X group with SYSTEM.
- finally work arounded rpm bug by flepied.
-
- * detect_devices.pm: added back full pci probe for stage2 command lspci.
- removed full pci probe for stringlist (used for generating report_bug).
-
- * install_steps_interactive.pm: now finally really fixed printer label in
- summary dialog.
- fixed printer description in summary (again).
- fixed no printer displayed (at least, print Remote CUPS server).
-
- * commands.pm: make lspci a full pci probe instead of safe pci probe.
-
-2001/09/18 gbeauchesne
-
- * Xconfigurator.pm:
- - Force XFree 4 on IA-64. No XFree 3.3.X there...
-
- * tools/ia64/elilo.efi:
- - elilo 3.1
-
-2001/09/18 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install2.pm: don't create bootdisk by default
-
- * standalone/drakautoinst: have "manual" and "replay" translated
-
- * share/po/fr.po: misc
-
-2001/09/18 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/nl.po, share/po/hu.po: updated Dutch and Hungarian files
-
-2001/09/18 Pixel <pixel@mandrakesoft.com>
-
- * lang.pm, share/gen_locales.sh, share/locales-skeleton.tar.bz2:
- - remove ISO-8859-5, KOI8-R and KOI8-U
- - cleanup packdrake extracting locales
- - cleanup/fixes lang.pm
-
- * install_steps.pm: fix setting kdmrc for latin1
-
- * any.pm (write_passwd_user): fix setting "pw" field (for auto_installs)
-
- * install_steps_gtk.pm, pkgs.pm: tentative to correct install time for big
- installs
-
-2001/09/17 François Pons <fpons@mandrakesoft.com>
-
- * rescue/list: updated for rpm 4.0.3.
-
- * rescue/tree/etc/oem: updated for 8.1, contains workaround for bug of
- "rpm --root" but need more testing.
-
- * standalone/XFdrake: removed comment.
- added support to configure NVIDIA driver if everything is correctly
- installed.
-
-2001/09/17 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm, fsedit.pm:
- - '--' to separate options for supermount + small workaround (ro and
- exec before --)
- - fix nfs in manualFstab (for auto_installs, reported by David
- Eastcott)
-
-2001/09/17 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Fixed bug of /etc/foomatic/defaultspooler not been written
- in expert install.
-
-2001/09/17 dam's <damien@mandrakesoft.com>
-
- * network/network.pm: no expert mode needed to choose gateway
-
-2001/09/17 François Pons <fpons@mandrakesoft.com>
-
- * rescue/list: updated for rpm 4.0.3.
-
- * rescue/tree/etc/oem: updated for 8.1, contains workaround for bug of
- "rpm --root" but need more testing.
-
- * printerdrake.pm: add eval around installing lexmark-driver
- (proprietary).
-
- * Xconfigurator.pm: deactivating bad card test (too).
-
- * standalone/XFdrake: removed comment.
- added support to configure NVIDIA driver if everything is correctly
- installed.
-
-2001/09/17 odin
-
- * share/po/fr.po: updated fr.po
-
-2001/09/17 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * keyboard.pm: Added choice of "English|Ireland (euro)" so people wanting
- English language but also euro symbol can choose it.
- fixed Belgian keyboard
-
- * share/po/fr.po, share/po/wa.po, share/po/es.po: updated Spanish and
- Wallon files; corrected error syntax in French file
-
- * lang.pm: Added choice of "English|Ireland (euro)" so people wanting
- English language but also euro symbol can choose it.
-
-2001/09/17 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm:
- - '--' to separate options for supermount + small workaround (ro and
- exec before --)
- - fix nfs in manualFstab (for auto_installs, reported by David
- Eastcott)
- (mount): do not hand update /etc/mtab for nfs mounts, already done by
- mount(8)
- (set_default_options): disable iocharset= and codepage= for supermount
-
- * partition_table.pm (adjust_main_extended): do not use linux extended
-
- * detect_devices.pm (pci_probe): log full pci probes
-
- * standalone/drakbug_report: fix
-
- * fsedit.pm:
- - '--' to separate options for supermount + small workaround (ro and
- exec before --)
- - fix nfs in manualFstab (for auto_installs, reported by David
- Eastcott)
-
-2001/09/17 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Fixed bug of /etc/foomatic/defaultspooler not been written
- in expert install.
- Do not die when "chkconfig" fails (needed for "security_check").
- Added "-q" option to foomatic-configure (should not get interactive).
- Added handling of high and paranoid security levels.
-
- * printerdrake.pm: /etc/foomatic/defaultspooler was not written in expert
- mode installation.
- Added handling of high and paranoid security levels.
-
-2001/09/17 François Pons <fpons@mandrakesoft.com>
-
- * printerdrake.pm: add eval around installing lexmark-driver
- (proprietary).
-
-2001/09/17 Pixel <pixel@mandrakesoft.com>
-
- * detect_devices.pm (pci_probe): log full pci probes
-
- * fs.pm (set_default_options): disable iocharset= and codepage= for
- supermount
-
-2001/09/17 François Pons <fpons@mandrakesoft.com>
-
- * printerdrake.pm: add eval around installing lexmark-driver
- (proprietary).
-
-2001/09/17 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * help.pm: updated help file
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/sr.po,
- share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
- share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
- share/po/ko.po, share/po/nl.po, share/po/ja.po, share/po/wa.po,
- share/po/sv.po, share/po/hu.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po, share/po/th.po,
- share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/vi.po,
- share/po/gl.po, share/po/ca.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/bs.po, share/po/da.po, share/po/zh_TW.po,
- share/po/cs.po, share/po/af.po: updated pot file
-
-2001/09/17 Pixel <pixel@mandrakesoft.com>
-
- * detect_devices.pm (pci_probe): log full pci probes
-
-2001/09/16 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (getAndSaveAutoInstallFloppy): skip it on ia64
-
- * pkgs.pm (read_rpmsrate): fix bug
-
-2001/09/16 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Fixed bug which prevented from printing the option list
- during install.
- Fixed bug which prevents printerdrake from running without PDQ
- installed.
-
-2001/09/16 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (getAndSaveAutoInstallFloppy): skip it on ia64
- more up to my need ALL flag in compssUsersChoice
- remove auto-install special case (initialisation of compssUsersChoice)
-
- * share/rpmsrate:
- - cleanup packages appearing twice in rpmsrate
- - handle a few case of packages appearing twice
- - special case for packages appearing in INSTALL section (flag
- dropped)
- - new special flag ALL for compssUsersChoice
-
- * pkgs.pm: more up to my need ALL flag in compssUsersChoice
- - cleanup packages appearing twice in rpmsrate
- - handle a few case of packages appearing twice
- - special case for packages appearing in INSTALL section (flag
- dropped)
- - new special flag ALL for compssUsersChoice
-
- * rescue/make_rescue_img: use new mkdir_p, rm_rf and cp_af from
- MDK::Common
-
-2001/09/16 siegel
-
- * share/po/help_xml2pm.pl: added "systemitem"
-
-2001/09/16 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Fixed bug which prevents printerdrake from running without
- PDQ installed.
-
-2001/09/16 dam's <damien@mandrakesoft.com>
-
- * mouse.pm, my_gtk.pm: bugfix + cosmetic changes
-
-2001/09/16 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * help.pm: updated help.pm file
-
- * share/po/hu.po: updated Hungarian file
- updated pot file
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/nl.po, share/po/ja.po,
- share/po/wa.po, share/po/sv.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po, share/po/th.po,
- share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/vi.po,
- share/po/gl.po, share/po/ca.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/bs.po, share/po/da.po, share/po/zh_TW.po,
- share/po/cs.po, share/po/af.po: updated pot file
-
-2001/09/16 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake.pm: "please click on ..." for removable, nfs, smb.
-
- * fsedit.pm: enhance lvm handling (mostly standalone)
- - cleanup & enhance raid mdstat reading (now works with or without
- devfs mounted)
- - chunk size is buggy?
-
- * install_any.pm (getAndSaveAutoInstallFloppy): skip it on ia64
- more up to my need ALL flag in compssUsersChoice
- remove auto-install special case (initialisation of compssUsersChoice)
- use new mkdir_p, rm_rf and cp_af from MDK::Common
-
- * share/rpmsrate:
- - cleanup packages appearing twice in rpmsrate
- - handle a few case of packages appearing twice
- - special case for packages appearing in INSTALL section (flag
- dropped)
- - new special flag ALL for compssUsersChoice
-
- * verify_c: add special case for c::to_utf8
-
- * pkgs.pm: more up to my need ALL flag in compssUsersChoice
- - cleanup packages appearing twice in rpmsrate
- - handle a few case of packages appearing twice
- - special case for packages appearing in INSTALL section (flag
- dropped)
- - new special flag ALL for compssUsersChoice
- use new mkdir_p, rm_rf and cp_af from MDK::Common
-
- * services.pm, install2.pm, lang.pm, commands.pm, loopback.pm,
- tinyfirewall.pm, raid.pm, keyboard.pm, printerdrake.pm, fs.pm, mouse.pm,
- network/netconnect.pm, timezone.pm, network/adsl.pm, install_steps.pm,
- any.pm, printer.pm, rescue/make_rescue_img, bootloader.pm: use new
- mkdir_p, rm_rf and cp_af from MDK::Common
-
- * diskdrake_interactive.pm, lvm.pm: enhance lvm handling (mostly
- standalone)
-
- * devices.pm (make): ensure it never returns a non-absolute name
- (it happened with make("foo") when cwd=/dev and /dev/foo existed)
-
-2001/09/16 siegel
-
- * share/po/help_xml2pm.pl: added "systemitem"
- added commet explainig that help.pm is automatically generated.
-
- * .cvsignore: added .*.sw? for vim users
-
-2001/09/16 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: Added possibility to list command line
- options for the printers and to give the users help for printing
- Fixed bug of sometimes appearing the wron dialog after printing test
- pages
-
-2001/09/15 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm: fix options appearing twice in fstab
-
- * install_steps.pm, any.pm, c/stuff.pm: i18n kdmrc
-
- * lang.pm (load_mo): ensure the locale is set (was broken in non-gtk
- installs)
-
- * install_steps_auto_install.pm (enteringStep): do not translate in
- ja|ko|zh
-
-2001/09/15 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm: fix options appearing twice in fstab
-
- * install_steps.pm, any.pm, c/stuff.pm: i18n kdmrc
-
- * lang.pm (load_mo): ensure the locale is set (was broken in non-gtk
- installs)
-
- * install_steps_auto_install.pm (enteringStep): do not translate in
- ja|ko|zh
-
-2001/09/15 civileme
-
- * help.pm: Added a dialog in English for users selecting a printing system
- since no other
- OS seems to offer such a choice during install.
-
-2001/09/15 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: better connection testing
-
- * network/tools.pm: more timeout
-
- * network/adsl.pm: avoid asking 2 times to restart the ethernet card
-
- * mouse.pm: readded darea realization
-
-2001/09/15 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/rpmsrate: make gtk-themes installed when Gnome is choosen
-
- * share/po/es.po: updated Spanish file
-
- * share/po/wa.po, share/po/hu.po: updated Hungarian file
-
-2001/09/15 Pixel <pixel@mandrakesoft.com>
-
- * Makefile.config, tools/Makefile: add aewm-drakx
-
- * install_steps_gtk.pm: makes cancel on mouse selection works even better
- - add and use aewm-drakx
- - add some "skip" title on help/logo/steps windows so that aewm-drakx
- know they don't need keyboard focus
- - add some more title to ease debugging (when aewm-drakx is in debug
- mode)
-
- * install_gtk.pm, tools/aewm-drakx/Makefile, tools/aewm-drakx/misc.c,
- tools/aewm-drakx/README:
- - add and use aewm-drakx
- - add some "skip" title on help/logo/steps windows so that aewm-drakx
- know they don't need keyboard focus
- - add some more title to ease debugging (when aewm-drakx is in debug
- mode)
-
- * any.pm: i18n kdmrc
- fix user icons choice
- - add and use aewm-drakx
- - add some "skip" title on help/logo/steps windows so that aewm-drakx
- know they don't need keyboard focus
- - add some more title to ease debugging (when aewm-drakx is in debug
- mode)
-
- * install2.pm: don't warn if modules are missing when testing
-
- * bootloader.pm: find error in /tmp/.error only if exception is "xxx
- failed"
- (write_lilo_conf): ensure linear and lba32 are not both set
-
- * share/po/fake_c.pl: fix a tricky hack
-
- * my_gtk.pm: do the set_events before the show otherwise gtk go crazy (no
- more keyboard focus)
-
- * c/stuff.pm: i18n kdmrc
-
- * lang.pm (load_mo): ensure the locale is set (was broken in non-gtk
- installs)
-
- * install_steps_interactive.pm: fix typo
- find error in /tmp/.error only if exception is "xxx failed"
- makes cancel on mouse selection works even better
- fix cancel on mouse choice
-
- * install_steps.pm: i18n kdmrc
- enable supermount again
-
- * network/adsl.pm: correct dams typo
-
- * fs.pm (write_fstab): fix supermount moving from options to fstype
-
- * steps.pm: find error in /tmp/.error only if exception is "xxx failed"
-
- * tools/aewm-drakx/aewm.h, tools/aewm-drakx/client.c,
- tools/aewm-drakx/events.c, tools/aewm-drakx/aewm-drakx.c: set_focus on
- new map_request event (fix summary step)
- - add and use aewm-drakx
- - add some "skip" title on help/logo/steps windows so that aewm-drakx
- know they don't need keyboard focus
- - add some more title to ease debugging (when aewm-drakx is in debug
- mode)
-
- * install_steps_auto_install.pm (enteringStep): do not translate in
- ja|ko|zh
-
-2001/09/15 siegel
-
- * share/po/de.po: fixed another typo
- new string
-
- * printerdrake.pm: added missing _()
-
- * standalone/draksec: use " instead of ' to get i18n
-
- * standalone/draknet: fixed missing _()
-
-2001/09/15 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Added the PDQ panic button.
- Removed a superfluous "set_help" line.
- Save default spooler at program start, fixed typos in comments.
- Command line commands as "lpr", "lpq", ... are mapped to the correct
- spooler now.
- Fixed bug of a waiting message appearing together with a dialog
- Cleaned up variables to correctly switch between CUPS/Foomatic/Raw type
- for a printer
-
- * printer.pm: Added the PDQ panic button.
- Command line commands as "lpr", "lpq", ... are mapped to the correct
- spooler now.
-
- * standalone/printerdrake: Fixed bug of spooler choice via command line
- options being ignored.
-
-2001/09/15 warly
-
- * share/rpmsrate: add drakfirsttime
-
-2001/09/14 dam's <damien@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: make test_pms happy
-
- * install_any.pm: pptp-adsl instead of pptp-adsl-fr
-
- * Xconfigurator.pm: no shadow when X test
-
- * standalone.pm: bugfix
-
- * my_gtk.pm: no icon if wizard
- no shadow when X test
- shadow color
-
- * bootlook.pm: bugfix
- iautologin correction
-
- * mouse.pm: trying to remove draw
-
- * network/adsl.pm: debug
- pptp-adsl instead of pptp-adsl-fr
- bugfix
- updated speedtouch handling.
-
-2001/09/14 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm: removed S3 ViRGE card from card with problem with
- frame buffer as it works fine.
-
- * Xconfigurator.pm: fixed filtering of depth for newt version.
- depth 24 is used for DRI for Rage 128 and Radeon instead of Depth 32 (as
- depth
- 32 simply doesn't work, even if DRI guide says it works :-) 24 bit works
- fine
- for Rage 128.
- apply restriction on depth available when changing resolution, removed
- S3 ViRGE
- from experimental 3D accelerated card list as it really does not work,
- allow on
- second pass to change card configuration to choose server (experimental
- server
- are still only available to expert), added support for UseCCEFor2D for
- Rage 128
- card if a TV card is installed (set to true, else set to false), added
- support
- for Rage Mobility M... card that are Rage 128 Mobile chipset, improved
- error
- message display to catch only appropriate error message of XFree 4.1.0
- only,
- added support for 32 bits for DRI using Matrox card, improved info
- message with
- real version of XFree used (anybody) and identifier from PCI probe
- (expert).
-
-2001/09/14 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/insmod-busybox/Makefile: clean also cleans the DIET target
-
- * mdk-stage1/Makefile, mdk-stage1/Makefile.mkinitrd_helper: back to using
- a reduced form of mkinitrd_helper for mkinitrd (only
- to provide a dietlibc-enabled static insmod)
-
-2001/09/14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/wa.po: updated Walloon file
-
- * share/po/ko.po: updated Korean file
-
- * share/po/da.po: updated Danish file
- updated Danish file
-
- * share/po/bs.po, share/po/sv.po: updated Bosnian and Swedish files
-
-2001/09/14 Pixel <pixel@mandrakesoft.com>
-
- * partition_table_raw.pm, install_any.pm: when testing for bad drives, if
- opening for writing fails, remove the drive from the hard drive list
- (useful for Smartmedia readers)
-
- * pkgs.pm: update correctSize and invCorrectSize (now linear)
-
- * share/po/fr.po: fix odin bug (please run msgfmt before committing!)
-
- * share/rpmsrate: do not install Aurora in russian
-
-2001/09/14 siegel
-
- * share/po/de.po: updates
-
- * standalone/drakautoinst: Check exisence of "/root/replay_install.img"
- before anything else ...
-
-2001/09/14 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Added "set_help" lines for installer help texts.
- Raw queue entry added, so cursor not always on "Alps MD-1000" when no
- printer
- detected.
- Resolved conflict.
- Now it is checked whether the network is configured and running.
- draknet is called when the network is not configured.
- It is checked whether the spooler is automatically started at boot.
- The oki4daemon is started when needed.
- Lexmarks inkjet drivers are fully integrated.
- The permissions of the device files are set so that normal users can
- print with PDQ.
-
- * standalone/printerdrake: Fixed spooler selection by command line.
-
- * printer.pm: Raw queue entry added, so cursor not always on "Alps
- MD-1000" when no printer
- detected.
- Made network checking working on non-english systems.
- Now it is checked whether the network is configured and running.
- draknet is called when the network is not configured.
- It is checked whether the spooler is automatically started at boot.
- The oki4daemon is started when needed.
- Lexmarks inkjet drivers are fully integrated.
- The permissions of the device files are set so that normal users can
- print with PDQ.
-
-2001/09/14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/bg.po, share/po/tr.po: updated Turkish and Bulgarian files
- updated pot file
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/sr.po,
- share/po/de.po, share/po/et.po, share/po/eu.po, share/po/az.po,
- share/po/ru.po, share/po/pt_BR.po, share/po/hr.po, share/po/ko.po,
- share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
- share/po/hu.po, share/po/it.po, share/po/id.po, share/po/pl.po,
- share/po/fi.po, share/po/no.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/vi.po, share/po/gl.po,
- share/po/ca.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
- share/po/bs.po, share/po/da.po, share/po/zh_TW.po, share/po/cs.po,
- share/po/af.po: updated pot file
-
-2001/09/13 Frederic Lepied <flepied@mandrakesoft.com>
-
- * share/rpmsrate: added mt-st to ARCHIVING
-
-2001/09/13 odin
-
- * share/po/fr.po: updated up to 6648
-
-2001/09/13 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake_interactive.pm: new migration feature for creation of
- partitions on existing mount points
-
- * diskdrake.pm:
- - add back shortcuts
- - red colored buttons in nfs/smb/removable
-
-2001/09/13 dam's <damien@mandrakesoft.com>
-
- * pixmaps/wiz_default_up.png, pixmaps/wiz_draknet.png: updated
-
- * my_gtk.pm: updated
- addde /usr/share/icons in path for pixmaps search
- shadow reduced to 5 pixels
-
- * standalone/draknet, network/isdn.pm: isdn timeout works now.
-
-2001/09/13 Frederic Lepied <flepied@mandrakesoft.com>
-
- * share/rpmsrate: added mt-st to ARCHIVING
-
-2001/09/13 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator_consts.pm: removed ugly Modeline 1024x768 which causes
- trouble to XFree86 4.1.0.
-
- * Xconfigurator.pm: fix for missing Xinerama for Matrox cards.
- fix for Matrox G550 support, now add DRI support.
- disable any question to user about XF3 if he choose a dual head
- configuration.
- disable DRI if Xinerama has been chosen.
- updated Rage Mobility regexp for bad_card, added bad_card for XF4 as
- Tseng ET6\d00.
-
- * install_any.pm: updates 3D category according Matrox G550 and Radeon
- card.
-
- * install_steps.pm: synced with Xconfigurator bad_card class of video card
- to avoid using frame
- buffer, added ET6\d00 style card which seems to have problem.
-
-2001/09/13 odin
-
- * share/po/fr.po: updated up to 6648
- updated fr.po
-
-2001/09/13 Pixel <pixel@mandrakesoft.com>
-
- * share/rpmsrate: add krozat
-
- * any.pm (inspect): use a safer dir when standalone
-
- * install_steps.pm: extend disable KDE GreetString to
- ja|ko|zh|ru|th|vi|be|bg
- do not translate kdm GreetString in ja|ko|zh (what about ru?)
- in kdmrc GreetString, magic string HOSTNAME replaced by %n
-
- * diskdrake_interactive.pm: new migration feature for creation of
- partitions on existing mount points
-
- * diskdrake.pm:
- - add back shortcuts
- - red colored buttons in nfs/smb/removable
-
- * partition_table.pm: BLKPG_ADD_PARTITION support (aka adding partition on
- the fly without rebooting on a device with some already mounted
- partitions)
-
- * install_steps_interactive.pm (selectKeyboard): don't prompt in newbie
- mode if >=90, not >90
-
-2001/09/13 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm: shadow reduced to 5 pixels
-
- * standalone/draknet, network/isdn.pm: isdn timeout works now.
-
-2001/09/13 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: fix for missing Xinerama for Matrox cards.
- fix for Matrox G550 support, now add DRI support.
- disable any question to user about XF3 if he choose a dual head
- configuration.
- disable DRI if Xinerama has been chosen.
- updated Rage Mobility regexp for bad_card, added bad_card for XF4 as
- Tseng ET6\d00.
- avoid creating /etc/X11/XF86Config* file if --g_auto_install.
-
- * services.pm: updated repartition of services into category, network
- category are commented so
- that service will to "Other" one.
-
- * Xconfigurator_consts.pm: removed ugly Modeline 1024x768 which causes
- trouble to XFree86 4.1.0.
-
- * install_any.pm: updates 3D category according Matrox G550 and Radeon
- card.
-
- * install_steps.pm: synced with Xconfigurator bad_card class of video card
- to avoid using frame
- buffer, added ET6\d00 style card which seems to have problem.
-
-2001/09/13 Pixel <pixel@mandrakesoft.com>
-
- * keyboard.pm: filtered the list from lang2keyboard to display only valid
- keyboards
-
- * c/stuff.xs.pm: add partition adding on the fly trick
-
- * partition_table.pm: BLKPG_ADD_PARTITION support (aka adding partition on
- the fly without rebooting on a device with some already mounted
- partitions)
-
- * install_steps.pm: do not translate kdm GreetString in ja|ko|zh (what
- about ru?)
- in kdmrc GreetString, magic string HOSTNAME replaced by %n
-
-2001/09/13 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet, network/isdn.pm: isdn timeout works now.
-
-2001/09/13 François Pons <fpons@mandrakesoft.com>
-
- * lang.pm: fixed bad $localedir in load_mo().
-
- * g_auto_install: updated so that this scripts is running again.
-
- * install2.pm: do not output error message for bad kernel if using
- --g_auto_install.
-
- * install_steps_interactive.pm: fixed Printer name reporting for a
- specific printer.
-
- * install_any.pm: updates 3D category according Matrox G550 and Radeon
- card.
-
- * services.pm: updated repartition of services into category, network
- category are commented so
- that service will to "Other" one.
-
- * live_install2: updated #! as ../perl is not used.
-
- * my_gtk.pm: synced with --g_auto_install mode.
-
- * install_steps.pm: synced with Xconfigurator bad_card class of video card
- to avoid using frame
- buffer, added ET6\d00 style card which seems to have problem.
-
- * Xconfigurator.pm: fix for Matrox G550 support, now add DRI support.
- disable any question to user about XF3 if he choose a dual head
- configuration.
- disable DRI if Xinerama has been chosen.
- updated Rage Mobility regexp for bad_card, added bad_card for XF4 as
- Tseng ET6\d00.
- avoid creating /etc/X11/XF86Config* file if --g_auto_install.
- synced with --g_auto_install mode.
- disable testing with all SiS card except SiS 630 under XF4.
-
-2001/09/13 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sp.po, share/po/pl.po, share/po/pt.po, share/po/no.po,
- share/po/th.po, share/po/sr.po, share/po/sk.po, share/po/lt.po,
- share/po/ru.po, share/po/pt_BR.po, share/po/ko.po, share/po/lv.po,
- share/po/uk.po, share/po/nl.po, share/po/ja.po, share/po/sv.po,
- share/po/id.po: updated pot file
-
-2001/09/13 Pixel <pixel@mandrakesoft.com>
-
- * keyboard.pm: filtered the list from lang2keyboard to display only valid
- keyboards
-
- * c/stuff.xs.pm: add partition adding on the fly trick
-
- * partition_table.pm: BLKPG_ADD_PARTITION support (aka adding partition on
- the fly without rebooting on a device with some already mounted
- partitions)
-
- * install2.pm (selectKeyboard): remove code causing
- install_steps::selectKeyboard to be skipped
-
- * install_steps.pm: do not translate kdm GreetString in ja|ko|zh (what
- about ru?)
- in kdmrc GreetString, magic string HOSTNAME replaced by %n
-
-2001/09/12 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm: typo
- new color for shadow
- corrected shadow handling
- no shadow if liveupdate
-
- * share/help.png: new help
-
- * mouse.pm: removed debug code
-
- * network/tools.pm, network/netconnect.pm, network/ethernet.pm,
- network/isdn.pm, network/adsl.pm, network/modem.pm: new default
- connection handling
-
- * standalone.pm: added wait message while installing package
-
-2001/09/12 daouda
-
- * standalone/drakbug_report: add Mandrake release section
-
-2001/09/12 fcrozat
-
- * share/rpmsrate: Fix gnome install
-
-2001/09/12 François Pons <fpons@mandrakesoft.com>
-
- * install2.pm: removed obsolete --nocpi flag for install2.
- avoid probing usb device (for mouse) if --noauto is given.
-
- * install_steps.pm: disabled frame buffer for most of the SiS display card
- except SiS 630.
-
- * Xconfigurator.pm: added MGA G550 as always having two head.
-
- * live_install2: fix when switching perl version.
-
- * live_install: use system perl instead.
-
-2001/09/12 gbeauchesne
-
- * share/list.ia64, share/list, share/list.i386:
- - list (/sbin/mkfs.jfs, /sbin/mkfs.xfs): Move to...
- - list.i386: ... Here.
- - list.ia64: Updates.
-
-2001/09/12 odin
-
- * share/po/fr.po: updated fr.po
-
-2001/09/12 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/zh_CN.po, share/po/fi.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/de.po,
- share/po/et.po, share/po/el.po, share/po/tr.po, share/po/eu.po,
- share/po/az.po, share/po/hr.po, share/po/vi.po, share/po/ca.po,
- share/po/gl.po, share/po/eo.po, share/po/help_xml2pm.pl, share/po/wa.po,
- share/po/da.po, share/po/zh_TW.po, share/po/cs.po, share/po/hu.po,
- share/po/it.po, share/po/af.po: updated pot file
-
- * help.pm: new version with [ and ]
-
- * lang.pm: commented out utf-8 russian locale, for now
-
-2001/09/12 Pixel <pixel@mandrakesoft.com>
-
- * standalone/lsnetdrake: fix typo
- added wonderful lsnetdrake
-
- * modules.pm, install2.pm: display error when the kernel mismatch the
- modules
-
- * docs/README: explain how to get the boot kernels
-
- * install_steps_gtk.pm (choosePackagesTree): translate the categories
-
- * standalone/drakbug_report: cleanup
-
- * bootloader.pm (suggest): no "quiet" boot for smp and enterprise kernels
- (suggest): no "quiet" boot for smp and enterprise kernels
- allow grub even for more than 800MB
-
- * Makefile.drakxtools, Makefile.config: added wonderful lsnetdrake
-
-2001/09/12 siegel
-
- * share/po/de.po: new & shiny verion
-
- * share/po/help_xml2pm.pl: fixed silly error
- added keycap patch
-
-2001/09/12 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm: corrected shadow handling
- no shadow if liveupdate
- table undef corrected
- removed shadows if standalone
-
- * standalone/drakgw, standalone/draknet: corrected wizard mode in newt
- mode
-
- * mouse.pm: removed debug code
-
- * network/netconnect.pm: corrected splash in non X mode
-
-2001/09/12 daouda
-
- * standalone/drakbug_report: add Mandrake release section
-
-2001/09/12 François Pons <fpons@mandrakesoft.com>
-
- * live_install2: fix when switching perl version.
-
- * live_install: use system perl instead.
-
-2001/09/12 kjx
-
- * share/po/zh_CN.po: revison
-
-2001/09/12 Pixel <pixel@mandrakesoft.com>
-
- * docs/README: explain how to get the boot kernels
-
- * install_steps_gtk.pm (choosePackagesTree): translate the categories
-
- * standalone/drakbug_report: cleanup
-
- * bootloader.pm: allow grub even for more than 800MB
-
-2001/09/11 dam's <damien@mandrakesoft.com>
-
- * network/netconnect.pm: removed useless print
- don't detect ethx if no autodetection.
- implement smarter checkboxes
-
- * mouse.pm: test updated
- mouse test worked
-
- * network/ethernet.pm: don't detect ethx if no autodetection.
- implement smarter checkboxes
-
- * pixmaps/arrow_down.xpm: pixmap corrected
- new arrows
-
- * pixmaps/arrow_up.xpm: new arrows
-
- * share/rpmsrate: added ibod
- added isdn-light
-
- * interactive_gtk.pm, my_gtk.pm: fear the shaped windows...
-
-2001/09/11 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * help.pm: small fix
-
- * share/po/fr.po, share/po/de.po, share/po/DrakX.pot, share/po/hu.po,
- share/po/it.po: updated Hungarian file;
- updated pot file
-
-2001/09/11 Pixel <pixel@mandrakesoft.com>
-
- * Makefile (tar-drakxtools): remove the building of "help" for drakxtools
-
- * bootloader.pm: for lilo, do not have table=/dev/xxx if the device is not
- a primary
- partition (otherwise lilo dies)
-
-2001/09/10 dam's <damien@mandrakesoft.com>
-
- * network/modem.pm, network/ethernet.pm: detect_devices
-
- * standalone/net_monitor, network/network.pm: removed timeout:1 in
- resolv.conf, modified timeout scanning in draknet/net_monitor
-
- * install_gtk.pm, install_steps_gtk.pm: mouse test moved
-
- * mouse.pm: test_mouse moved
-
- * my_gtk.pm: added border
- window decorations
- no set_events if embedded
-
- * standalone/draknet: removed timeout:1 in resolv.conf, modified timeout
- scanning in draknet/net_monitor
- debug
-
- * standalone/mousedrake: don't fork the code
-
- * network/adsl.pm: debug
- debug
-
-2001/09/10 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: updated g_auto_install() for newer printerdrake
- interface.
-
- * modules.pm, detect_devices.pm: moved modules::get_pcmcia_devices into
- detect_devices::pcmcia_probe.
-
- * mdk-stage1/init-data/msgboot-blank.img.bz2: initial release for
- blank.img floppy image.
-
- * install_steps_interactive.pm, mouse.pm: added hid type usb mouse
- support.
-
- * Xconfigurator_consts.pm: added some more ModeLine (1024x768 @ 97.6 Hz,
- 1024x480 but not automatically used).
-
-2001/09/10 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: plop
- some adjustements in Games section
-
-2001/09/10 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/DrakX.pot, share/po/de.po: updated German file; added choice of
- various quotes in help_xml2pm.pl
- Updated pot file;
- removed translations that are too low on percentage.
-
- * share/po/zh_TW.po: updated Chinese file
-
- * share/po/ko.po: updated Korean file
- Updated pot file;
- removed translations that are too low on percentage.
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
- share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
- share/po/cy.po, share/po/nl.po, share/po/ja.po, share/po/wa.po,
- share/po/sv.po, share/po/is.po, share/po/hu.po, share/po/it.po,
- share/po/id.po, share/po/pl.po, share/po/no.po, share/po/fi.po,
- share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
- share/po/ar.po, share/po/sl.po, share/po/vi.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
- share/po/cs.po, share/po/af.po: Updated pot file;
- removed translations that are too low on percentage.
-
- * share/po/help_xml2pm.pl: updated German file; added choice of various
- quotes in help_xml2pm.pl
-
-2001/09/10 Pixel <pixel@mandrakesoft.com>
-
- * interactive_gtk.pm, my_gtk.pm:
- - make diskdrake work in embedded mode
- - $my_gtk::pop_it used where it should
-
- * detect_devices.pm: fix ide-scsi appearing 2 times when standalone
- because both in /proc/ide
- and /proc/scsi/scsi
-
- * share/po/help_xml2pm.pl: s/my/our/ for $i18ned_... vars
- - skip directories missing drakx-help.xml
- - convert to the right charset (taken from $lang.po)
- - rename help-*.po by help-*.pot
- - fix typo in script removing $lang.po translations to favour
- help-*.pot
-
- * diskdrake.pm:
- - make diskdrake work in embedded mode
- - $my_gtk::pop_it used where it should
- fix Umount and Mount when i18ned for nfs/smb
- don't display Wizard if wizard done before DrakX
-
- * share/po/Makefile, share/po/.cvsignore:
- - rename help-*.po by help-*.pot
- - fix typo in script removing $lang.po translations to favour
- help-*.pot
-
-2001/09/10 siegel
-
- * share/po/de.po: updates
-
-2001/09/10 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Copying of PPD file when moving a CUPS (non-Foomatic) queue
- modified to not get
- interactive when overwriting a file.
- Comment put into non-Foomatic CUPS PPD files in /etc/cups/ppd/ to be
- able to
- identify which PPD from /usr/share/cups/model was used (for
- auto-install).
-
-2001/09/10 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
- share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
- share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
- share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po, share/po/th.po,
- share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
- share/po/sl.po, share/po/vi.po, share/po/br.po, share/po/ca.po,
- share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
- share/po/ro.po, share/po/bs.po, share/po/da.po, share/po/cs.po,
- share/po/af.po: Updated pot file;
- removed translations that are too low on percentage.
-
-2001/09/10 Pixel <pixel@mandrakesoft.com>
-
- * share/po/Makefile, share/po/.cvsignore, share/po/help_xml2pm.pl:
- - rename help-*.po by help-*.pot
- - fix typo in script removing $lang.po translations to favour
- help-*.pot
-
-2001/09/09 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm: probeall handling
-
-2001/09/09 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_any.pm: getAndSaveInstallFloppy: fix multiple cdrom issue
-
-2001/09/09 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/tr.po: updated Turkish file
-
- * share/po/sv.po: updated Swedish file
-
-2001/09/09 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (ejectCdrom): fix D state on exit
-
- * diskdrake_interactive.pm, install_interactive.pm, diskdrake.pm:
- - "Wizard" and "More" are back
- - allow "Use for loopback" when there is already a loopback
- - set the options on newly created partitions
- - recompute_loopbacks called after modification of loopbacks, no more
- before reading
- - restrict the lenght of the lines in partition description
- - make loopback work
-
- * interactive_gtk.pm, interactive.pm, any.pm, interactive_newt.pm:
- clicked_may_quit used in place of clicked+exception to work-around
- perl-GTK bug (?)
-
- * share/po/i18n_compssUsers: ensure we're not adding a string already
- there (otherwise msgmerge yells)
-
- * share/po/help_xml2pm.pl, share/po/.cvsignore: xml help
- handling/enhancing for multi-langs
-
- * modules.pm: probeall handling
- (write_conf): switch to "probeall scsi_hostadapter ..."
-
- * share/po/Makefile: xml help handling/enhancing for multi-langs
- xml help handling/enhancing for multi-langs
-
- * partition_table.pm (get_normal_parts_and_holes): remove only small
- holes, not small partitions
-
- * fs.pm (set_default_options): remove iocharset=... for nfs (why was it
- there?)
-
-2001/09/08 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: fix some ortograf
-
- * share/rpmsrate: lvm not installed for everyone ?!
-
-2001/09/08 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_auto_install.pm: force exitInstall to be non automatic
-
- * install_steps.pm, fs.pm, install_steps_interactive.pm, fsedit.pm,
- diskdrake_interactive.pm, install2.pm, diskdrake.pm: make loopback
- installs work again
-
-2001/09/09 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm (write_conf): switch to "probeall scsi_hostadapter ..."
-
-2001/09/08 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: fix some ortograf
-
- * share/rpmsrate: lvm not installed for everyone ?!
-
- * modules.pm: fix write_conf regarding /etc/modules so that (1) it doesn't
- flush it when
- it didn't decide to put any modules in it (to leave user's modules) (2)
- it
- doesn't remove the last line (3) it uses stronger regexp'es for
- substitution to not remove modules that have names made of other modules
- names subsets
-
-2001/09/08 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/zh_TW.po: updated Chinese file
-
-2001/09/08 Pixel <pixel@mandrakesoft.com>
-
- * lang.pm: fix font in iso-15
-
- * modules.pm (write_conf): put "probeall scsi-hosts scsi_hostadapter ..."
-
- * interactive.pm: ugly workaround perl bug ([ID 20010908.008] memory leak
- with nested subs)
-
- * share/diskdrake.rc: change name
-
- * install_steps_auto_install.pm: force exitInstall to be non automatic
-
- * install_steps.pm, fs.pm, install_steps_interactive.pm, fsedit.pm,
- diskdrake_interactive.pm, install2.pm, diskdrake.pm: make loopback
- installs work again
-
- * timezone.pm: Asia/Taipei for Traditional Chinese
-
- * detect_devices.pm: remove debug code
-
-2001/09/07 daouda
-
- * share/rpmsrate: add mdkonline (X 4)
-
-2001/09/07 fcrozat
-
- * share/rpmsrate: Add grio500
-
-2001/09/07 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: fix card managed only by XF4 (may have some wrong
- result).
- fix all Matrox card used with XF4 which really does not like X in frame
- buffer
- (unable to restore frame buffer of DrakX).
-
-2001/09/07 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * rescue/tree/etc/oem, rescue/guessmounts, rescue/list.i386,
- rescue/tree/etc/rc.sysinit: ext3, xfs, jfs
-
- * bootloader.pm: use -v for mkinitrd
-
- * share/po/fr.po: "reseaux" and plurals
- misc
-
- * share/rpmsrate: some work on games
-
-2001/09/07 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ja.po, share/po/vi.po: updated Vietnamese and Japanese files
-
-2001/09/07 Pixel <pixel@mandrakesoft.com>
-
- * Makefile: cleanup po
-
- * install_steps.pm: s|kdmrc|kdm/kdmrc|
-
- * lang.pm: fix load_mo call
-
- * share/po/help_xml2pm.pl, share/po/Makefile, help.pm: new help
-
- * diskdrake_interactive.pm: disable_forced_fsck called for ext3 formatting
- disable_forced_fsck called for ext3 formatting
- (Type): disable fsck when migrated ext2->ext3
-
- * fs.pm: disable_forced_fsck called for ext3 formatting
-
-2001/09/07 siegel
-
- * share/po/de.po: updates
-
-2001/09/07 Till Kamppeter <till@mandrakesoft.com>
-
- * standalone/printerdrake, printer.pm, printerdrake.pm: Data structure
- fitted for auto-install to work
- Optimized program to be much faster
- Many more waiting messages
- Many bugfixes
-
-2001/09/07 daouda
-
- * share/rpmsrate: add mdkonline (X 4)
-
-2001/09/07 fcrozat
-
- * share/rpmsrate: Add grio500
-
-2001/09/07 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: fix card managed only by XF4 (may have some wrong
- result).
- fix all Matrox card used with XF4 which really does not like X in frame
- buffer
- (unable to restore frame buffer of DrakX).
-
-2001/09/07 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * any.pm: Changed simple quote to double quote for a translatable string
- (otherwise
- it isn't seen)
-
- * share/po/es.po: updated Spanish file
- updated pot file
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/is.po, share/po/hu.po,
- share/po/it.po, share/po/id.po, share/po/pl.po, share/po/no.po,
- share/po/fi.po, share/po/th.po, share/po/el.po, share/po/sk.po,
- share/po/lt.po, share/po/ar.po, share/po/sl.po, share/po/vi.po,
- share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
- share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/bs.po,
- share/po/da.po, share/po/zh_TW.po, share/po/cs.po, share/po/af.po:
- updated pot file
-
- * share/po/sv.po: updated Swedish file
- updated pot file
-
-2001/09/07 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: s|kdmrc|kdm/kdmrc|
- remove the "konsole and gnome-terminal are lamers in exotic languages,
- link them to something better"
-
- * bootloader.pm (write_lilo_conf): fix typo
-
- * share/po/help_xml2pm.pl, share/po/Makefile, help.pm: new help
-
- * diskdrake_interactive.pm: disable_forced_fsck called for ext3 formatting
- disable_forced_fsck called for ext3 formatting
- (Type): disable fsck when migrated ext2->ext3
-
- * install_any.pm, keyboard.pm: cleanup
-
- * partition_table.pm, share/list: add xfs
-
- * fs.pm: disable_forced_fsck called for ext3 formatting
-
- * share/rpmsrate: add jfsprogs
-
-2001/09/07 siegel
-
- * share/po/de.po: updates
- updates/fixes
-
-2001/09/06 dam's <damien@mandrakesoft.com>
-
- * network/adsl.pm, network/tools.pm: corrected speedtouch
-
- * install_gtk.pm: removed comments
-
-2001/09/06 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: cleanup for bad card and prefer XF3, so now using
- XFree 4.1.0 is not bad, and
- all NVIDIA card are no more considered bad.
-
- * pkgs.pm: fixed retry of package 3 times everytime even if first install
- succeeded, now
- after first successfull install, go to next package to install.
-
- * install_steps.pm: removed some cards for allowing frame buffer.
-
-2001/09/06 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw: works now ;p
-
-2001/09/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm: 'zh' in LANGUAGE for Chinese is needed by DrakX
- corrected lang.pm to have coherence in locale usage (it was the source
- of much of the problems); changed keyboard.pm to ignore charset encoding
- in locale name for locale -> keyboard guessing.
- removed unused gconv modules, converted az.po to utf-8 (as it was the
- only
- remaining az.po on Earth still in a non standard encoding)
-
- * share/list, share/gen_locales.sh, share/locales-skeleton.tar.bz2,
- keyboard.pm, share/po/az.po: corrected lang.pm to have coherence in
- locale usage (it was the source
- of much of the problems); changed keyboard.pm to ignore charset encoding
- in locale name for locale -> keyboard guessing.
- removed unused gconv modules, converted az.po to utf-8 (as it was the
- only
- remaining az.po on Earth still in a non standard encoding)
-
-2001/09/06 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm: fix keyboard config + some cleanup
- cleanup (use /proc/self instead of /proc/$$)
-
- * install_steps.pm, install_steps_interactive.pm, keyboard.pm: fix
- keyboard config + some cleanup
-
-2001/09/06 dam's <damien@mandrakesoft.com>
-
- * network/adsl.pm, network/tools.pm: corrected speedtouch
-
- * install_gtk.pm: removed comments
-
-2001/09/06 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: cleanup for bad card and prefer XF3, so now using
- XFree 4.1.0 is not bad, and
- all NVIDIA card are no more considered bad.
- avoid using @resolutions_laptop, now use only @resolutions, this means
- 1400x1050
- is available to other, use XFree86 4.1.0 builtin timings for 1400x1050
- (so
- 1400x1050 is no more printed as modeline for XFree 4.1.0 configuration
- file).
-
- * install_steps.pm: removed some cards for allowing frame buffer.
- fix log when configuring printer queue.
-
- * Xconfigurator_consts.pm: added 1400, 1920 and 2048 for %min_hsync4wres.
- cleaned up a bit and using XFree86 4.1.0 builtin timings for 1400x1050
- and
- 1920x1440, 2048x1536 has no modeline (but its min hsync is really high).
-
- * pkgs.pm: fixed retry of package 3 times everytime even if first install
- succeeded, now
- after first successfull install, go to next package to install.
-
- * install_any.pm: update printer data for g_auto_install.
-
-2001/09/06 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw: works now ;p
-
-2001/09/06 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm: fix keyboard config + some cleanup
- cleanup (use /proc/self instead of /proc/$$)
-
- * install_steps.pm, install_steps_interactive.pm, keyboard.pm: fix
- keyboard config + some cleanup
-
- * fs.pm (merge_fstabs): correction allowing manual_fstab to not give the
- type
-
-2001/09/06 dam's <damien@mandrakesoft.com>
-
- * network/adsl.pm, network/tools.pm: corrected speedtouch
-
- * install_gtk.pm: removed comments
- new mouse test
-
-2001/09/06 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: revert previous patch, this is not usable with current rpm as
- it complains if
- one the file has a modified MD5SUM against the header describing it in
- the
- hdlist, so this is most of the time useless.
- guess filename if the file is not found (for an rpm file during
- installation),
- so try with release incremented in such case (good for Cooker user or
- local
- tester using network installation).
-
- * install_steps.pm: fix log when configuring printer queue.
-
- * Xconfigurator.pm: avoid using @resolutions_laptop, now use only
- @resolutions, this means 1400x1050
- is available to other, use XFree86 4.1.0 builtin timings for 1400x1050
- (so
- 1400x1050 is no more printed as modeline for XFree 4.1.0 configuration
- file).
-
- * Xconfigurator_consts.pm: added 1400, 1920 and 2048 for %min_hsync4wres.
- cleaned up a bit and using XFree86 4.1.0 builtin timings for 1400x1050
- and
- 1920x1440, 2048x1536 has no modeline (but its min hsync is really high).
-
- * install_any.pm: update printer data for g_auto_install.
-
- * printerdrake.pm: revert previous commit.
- added a missing ifup lo, on some case (auto_install) it fails.
-
- * printer.pm: start ifup lo before starting service cups.
-
-2001/09/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/da.po: updated Danish file
-
- * share/po/ga.po, share/po/no.po: updated Irish and Norwegian files
-
-2001/09/06 Pixel <pixel@mandrakesoft.com>
-
- * share/diskdrake.rc, fsedit.pm, diskdrake.pm: add journalised in legend,
- fix the use
-
- * diskdrake_interactive.pm (Add2LVM): do not allow spaces in lvm names
-
- * fs.pm (merge_fstabs): correction allowing manual_fstab to not give the
- type
-
- * timezone.pm (ntp_server): fix (step-tickers was empty)
-
-2001/09/05 dam's <damien@mandrakesoft.com>
-
- * standalone/net_monitor, standalone/draknet: corrected opeions
-
- * standalone/mousedrake: typo
- updated
-
- * network/tools.pm: corrected initcript
-
- * pixmaps/mouse_middle.xpm, pixmaps/mouse_right.xpm,
- pixmaps/mouse_left.xpm: new pixmaps
-
-2001/09/05 Pixel <pixel@mandrakesoft.com>
-
- * standalone/diskdrake: fix function called
-
-2001/09/05 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: Set default printer (all spoolers), manual
- config (CUPS), bugfixes, clean-ups.
-
-2001/09/05 dam's <damien@mandrakesoft.com>
-
- * pixmaps/wiz_default_left.png, pixmaps/wiz_default_up.png,
- pixmaps/wiz_drakgw.png: new icons
-
- * share/themes-mdk.rc: updated theme
-
- * standalone/draknet: interface display corrected
-
- * share/themes/mdk-button4.png, share/themes/mdk-button1.png: new buttons
-
- * install_gtk.pm: 2 sec without sensitives buttons
-
- * network/netconnect.pm: only if standalone
-
- * pixmaps/network.png, pixmaps/bootloader.png, pixmaps/printer.png,
- pixmaps/security.png, pixmaps/rootpasswd.png, pixmaps/harddrive.png,
- pixmaps/keyboard.png, pixmaps/X.png, pixmaps/mouse.png,
- pixmaps/bootdisk.png: new pixmaps
-
-2001/09/05 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: fixed display of XFdrake test image (fcrozat).
-
- * install_steps.pm: fixed typo preventing removable devices to be seen in
- /etc/fstab.
- fixed configurePrinter (used for auto_install).
-
- * install_steps_interactive.pm: avoid asking when using existing partition
- for magic partition with a real
- mntpoint (typically /tmp/hdimage) if we are not using a ramdisk (so
- partition is
- not unmountable).
-
- * bootloader.pm: removed yvounet sucking, handle Mandrake lilo or unknown
- lilo.
-
- * fs.pm: fix bad creation of /mnt/hd for an hd installation without
- ramdisk.
- support setting /tmp/hdimage in /etc/fstab even if memory is low (not
- using ramdisk).
-
- * install_any.pm: filtering $o->{printer} for g_auto_install().
- allow installing urpmi on hd install even if low memory (so not using
- ramdisk).
-
- * diskdrake_interactive.pm: Do not use for loopback of magic partition
- (/tmp/hdimage).
-
-2001/09/05 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * tools/i386/busybox: hopefully fix the _ problems with busybox 0.60.1
-
-2001/09/05 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/bs.po: updated Bosnian file
-
- * share/po/uk.po: updated Ukrainian file
-
-2001/09/05 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm: use EISA_ID in more cases to have the name
- non-case dependent EISA comparison
- also try EISA ID to auto-detect the monitor (sometimes the EISA ID is
- there, but not the [hv]syncrange
-
- * Xconfig.pm: fix typos
- non-case dependent EISA comparison
- also try EISA ID to auto-detect the monitor (sometimes the EISA ID is
- there, but not the [hv]syncrange
-
- * modules.pm: favor tmscsim over AM53C974
-
- * tools/ddcprobe/ddcxinfos.c: fix for cards giving bad info
- also try EISA ID to auto-detect the monitor (sometimes the EISA ID is
- there, but not the [hv]syncrange
-
- * standalone/diskdrake: fix function called
-
-2001/09/04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/mount.c: reflect scd -> sr here too, /me sucks :-(
-
-2001/09/04 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/fr.po, share/po/bg.po, share/po/ga.po, share/po/sr.po,
- share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
- share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
- share/po/cy.po, share/po/nl.po, share/po/wa.po, share/po/is.po,
- share/po/hu.po, share/po/it.po, share/po/id.po, share/po/pl.po,
- share/po/fi.po, share/po/no.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
- share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
- share/po/lv.po, share/po/eo.po, share/po/bs.po, share/po/ro.po,
- share/po/da.po, share/po/zh_TW.po, share/po/cs.po, share/po/af.po:
- Updated Danish file; updated pot file
-
-2001/09/04 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm: fix typo
-
-2001/09/04 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: Fitted to the new Foomatic version.
- Fixed bug of spooler change only working when language is English.
-
-2001/09/04 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm: fix bad vga= which go for some install.
-
-2001/09/04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * network/netconnect.pm: small english change
-
- * mdk-stage1/probing.c: Compaq mescouilles has changed proc stuff
-
- * share/rpmsrate: tetex-doc
-
- * mdk-stage1/mount.c: reflect scd -> sr here too, /me sucks :-(
-
-2001/09/04 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/fr.po, share/po/bg.po, share/po/ga.po, share/po/sr.po,
- share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
- share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
- share/po/cy.po, share/po/nl.po, share/po/wa.po, share/po/is.po,
- share/po/hu.po, share/po/it.po, share/po/id.po, share/po/pl.po,
- share/po/fi.po, share/po/no.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
- share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
- share/po/lv.po, share/po/eo.po, share/po/ro.po, share/po/bs.po,
- share/po/da.po, share/po/zh_TW.po, share/po/cs.po, share/po/af.po:
- Updated Danish file; updated pot file
-
- * share/po/ja.po: updated Japanese file
-
-2001/09/04 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm (add_alias): use "above" instead of "post-install"
-
- * partition_table.pm: re-add JFS
-
- * fsedit.pm, common.pm, bootloader.pm:
- - don't expand symlinks in grub's menu.lst
- - better use of /proc/partitions verification
-
- * detect_devices.pm (getCompaqSmartArray): add yet another location for
- cpqarray location
-
- * fs.pm: fix typo
- mount ext3 as ext2 during install for speed up
-
-2001/09/04 fcrozat
-
- * share/rpmsrate: Add plugins for KDE and Mozilla
-
-2001/09/04 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm: fix bad vga= which go for some install.
-
- * pkgs.pm: cleanup to avoid invalid file error.
-
-2001/09/04 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm (add_alias): use "above" instead of "post-install"
-
- * fs.pm: mount ext3 as ext2 during install for speed up
-
- * partition_table.pm: re-add JFS
-
- * fsedit.pm, common.pm, bootloader.pm:
- - don't expand symlinks in grub's menu.lst
- - better use of /proc/partitions verification
-
- * detect_devices.pm (getCompaqSmartArray): add yet another location for
- cpqarray location
-
-2001/09/04 yduret
-
- * my_gtk.pm: emebedded mode fix
-
- * interactive_gtk.pm, diskdrake.pm: embedded mode fix
-
-2001/09/03 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: unfuzzy-ise a few things, translate a few things
-
-2001/09/03 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ko.po: updated Korean file
-
-2001/09/03 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm: fix for lvm (non-)creation of devices
-
-2001/09/03 yduret
-
- * my_gtk.pm, diskdrake.pm: fix Embedded mode
-
-2001/09/03 dam's <damien@mandrakesoft.com>
-
- * network/network.pm: added timeout in resolv.conf
-
-2001/09/03 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: updated to use new urpmi.cfg format for install_urpmi,
- make sure the directory
- is not given for ftp and http install ($dir).
-
- * Xconfigurator_consts.pm: added 1920x1440 and 2048x1536.
-
- * Xconfig.pm: make sure a staling Mouse2 is not present unless it really
- physically exists.
-
-2001/09/03 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * modules.pm: add axnet_cs to pcmcia category
-
- * mdk-stage1/probing.c: change `scd' with `sr'
-
-2001/09/03 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/es.po: updated Spanish file
-
- * share/po/ko.po: updated Korean file
-
-2001/09/03 Pixel <pixel@mandrakesoft.com>
-
- * timezone.pm (ntp_server): also set /etc/ntp/step-tickers
-
- * fsedit.pm, devices.pm: fix mtab reading and pseudo-device use
-
- * interactive_gtk.pm: better sizing for combo boxes
-
- * install_steps_interactive.pm (choosePartitionsToFormat): do not propose
- to propose already formatted
- fat partitions
-
- * share/list: those files disappeared ??
-
- * fs.pm: fix for lvm (non-)creation of devices
- (set_default_options): created
- fix mtab reading and pseudo-device use
-
- * diskdrake.pm (smb_create, nfs_create): make the "New" button work
- (raw_hd_mount_point): fix checking the same mount point
- (try_): fix error displaying
-
- * partition_table.pm: fix switching to 0x85 extended when
- remove_empty_extended is called
-
-2001/09/03 yduret
-
- * standalone/net_monitor: sync with new logdrake command line options
-
-2001/09/02 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/bs.po: updated bosnian file
- Added Bosnian file
-
-2001/09/01 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: avoid deleting package from %packages in install() when closing
- fd associated,
- if the open is called again (?), it will cause an invalid file (seems to
- happens
- on some invalid file).
-
-2001/08/31 dam's <damien@mandrakesoft.com>
-
- * standalone/draksec: corrected yesno interpretation
- libsafe modification
-
- * network/netconnect.pm: corrected profil recording for modem
-
- * standalone/net_monitor: correted typo
-
- * network/ethernet.pm: corrected zero return when cable configuring
-
- * any.pm: corrected autologin : no uc anymore
-
- * network/modem.pm: added domainname2 setting
-
- * share/logo-mandrake.png: new logo
-
-2001/08/31 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: added missing AlwaysCore line for second mouse for
- XF3.
-
- * mouse.pm: added missing AlwaysCore line for second mouse in XF3.
-
- * standalone.pm: add option --allow-medium-change to force asking question
- even if --auto is
- given on command line of urpmi, for installing package so that a dialog
- appears.
-
-2001/08/31 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: mures is a fine game, have it at weight "4" under GAMES
- section
- have "numlock" in INSTALL because it's the only package which goes to
- CD#2
- when you unselect all groups, so having it here will allow not changing
- CD
- with this kind of small install
-
-2001/08/31 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/DrakX.pot, share/po/uk.po, share/po/es.po: updated Ukrainian
- and Spanish files
-
- * share/po/sv.po: updated Swedish file
- updated Ukrainian and Spanish files
-
-2001/08/31 siegel
-
- * share/help_sav.png: not used any more
-
- * share/po/de.po: updates
-
- * share/logo-mandrake2.png, share/logo-mandrake_trans.png,
- share/logo-mandrake_sav.png, share/logo-mandrake-Desktop.png: old
- versions => not in use any more
-
-2001/08/31 yduret
-
- * bootlook.pm: updated code
-
-2001/08/30 dam's <damien@mandrakesoft.com>
-
- * network/tools.pm: nicer display
-
- * standalone/draknet: added use common.pm (can be usefull, eh?)
-
- * network/network.pm: silently /sbin/ip
- track_network_id only if laptop
-
-2001/08/30 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/da.po: Updated Danishfile
- updated pot file (I had lost the group descriptions, sorry, they are
- back now)
- moved chinese files to charset independent names
-
- * share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
- share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
- share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
- share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
- share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
- share/po/is.po, share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po,
- share/po/id.po, share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
- share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
- share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
- share/po/zh_TW.po, share/po/cs.po, share/po/af.po: updated pot file (I
- had lost the group descriptions, sorry, they are back now)
- moved chinese files to charset independent names
-
-2001/08/30 Pixel <pixel@mandrakesoft.com>
-
- * lang.pm (read): it works now
-
- * help.pm: fixed (was utf8)
-
- * install_steps_gtk.pm (new): call interactive_gtk::new
-
- * install_steps.pm, Xconfigurator.pm: disable gpm (in case of serial
- mouse) before service choice
-
- * pkgs.pm (naughtyServers): update for 8.1
-
-2001/08/30 dam's <damien@mandrakesoft.com>
-
- * interactive.pm: corrected icon display
-
- * my_gtk.pm: new wizard
-
- * interactive_gtk.pm: corrected wizard mode display height/width
-
- * standalone/draknet: added draknet client installation
-
- * network/network.pm: track_network_id only if laptop
- dhcp package installation
-
- * pixmaps/wiz_default_left.png: new logo
-
-2001/08/30 François Pons <fpons@mandrakesoft.com>
-
- * mouse.pm: make sure to update all symlink according to any mouse (max 2)
- probed.
- fix previous fixes on mouse::write_conf
-
- * standalone/mousedrake: fix previous fix (typo).
- keep mouse specific paramater if user does not change its mouse.
- make sure --auto is not interactive on some part.
- use default value for port device if a serial mouse.
-
- * printer.pm: fixed foomatic failed (no lo up since ifup lo don't run)
-
- * Makefile: ugly to make sure standalone/pixmaps is not here when building
- tar-drakxtools.
-
- * Xconfig.pm: when reading existing configuration for mouse, update
- type|name for second mouse too.
- make sure default to set 3 for nbuttons for getinfoFromXF86Config for
- second
- mouse if this mouse has 3 buttons.
-
- * Xconfigurator.pm: for single heads mode, no screen id should be set in
- file (or XFree is going
- mad, but he is right, no ?)
-
- * install_any.pm: if a medium is refused, get rid of it definitively until
- it is accepted again.
-
-2001/08/30 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_steps_interactive.pm: have a wait_message during installation of
- bootloader
-
- * mdk-stage1/pcmcia/pcmcia_probe.c: import new PCI ID's for more PCMCIA
- Controllers, from probe.c-1.54 of pcmcia-cs-3.1.28
-
-2001/08/30 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ja.po, share/po/vi.po, share/po/es.po: updated Japanese,
- Spanish and Vietnamese files
-
-2001/08/30 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake_interactive.pm: allow LVM on RAID
-
- * help.pm: fixed (was utf8)
-
- * any.pm: cleanup
-
- * pkgs.pm (naughtyServers): update for 8.1
-
- * lang.pm (read): it works now
-
- * fs.pm (set_default_options): "ro" for cdroms, "user" for vfat only if
- removable
- media
-
- * share/po/Makefile: fix utf8 translation of xml file
-
- * interactive_gtk.pm: fix&cleanup window size
-
- * tools/Makefile: cleanup unneeded stuff
-
-2001/08/30 siegel
-
- * share/po/de.po: new german version
-
-2001/08/30 warly
-
- * share/rpmsrate: add koffice-i18n diald vlan-utils
-
-2001/08/29 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw, standalone/drakautoinst: quit_global
-
- * share/po/fr.po: minor fix
-
-2001/08/29 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: fix language selection
-
- * c.pm: better error message when function c::foo() is missing
-
- * rescue/dirs, rescue/make_rescue_img: make it work (do not have the dev
- in /)
-
-2001/08/29 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: fixed if undef encountered in depslist when installing package
- (traversing
- depslist as $depOrder).
-
-2001/08/29 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw, standalone/drakautoinst: quit_global
-
- * share/po/fr.po: minor fix
-
-2001/08/29 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: fix language selection
-
- * c.pm: better error message when function c::foo() is missing
-
- * install_steps_gtk.pm (installPackages): have Ok button by default for
- asking for changing CD
-
- * bootloader.pm (mkbootdisk): cleanup
-
- * rescue/dirs, rescue/make_rescue_img: make it work (do not have the dev
- in /)
-
- * devices.pm: remove fd0H1440 and fd1H1440
-
- * modules.pm: remove "msdos"
-
-2001/08/29 François Pons <fpons@mandrakesoft.com>
-
- * mouse.pm: improved write_conf to enable multi-mice if only once mice is
- already defined.
-
- * standalone/mousedrake: try to merge already existing mouse configuration
- with what has been probed,
- change if mouse is really changed as probe is incomplete.
-
- * Xconfig.pm: improve getinfoFromXF86Config for mouse parameters.
-
- * pkgs.pm: fixed if undef encountered in depslist when installing package
- (traversing
- depslist as $depOrder).
-
-2001/08/29 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw, standalone/drakautoinst: quit_global
-
- * share/po/fr.po: minor fix
-
-2001/08/29 Pixel <pixel@mandrakesoft.com>
-
- * c.pm: better error message when function c::foo() is missing
-
- * keyboard.pm (loadkeys_files): fixed
-
- * install_steps_interactive.pm, standalone/localedrake, lang.pm, any.pm,
- Makefile.config: add localedrake (not tested)
-
- * rescue/make_rescue_img: make it work (do not have the dev in /)
- cleanup, speedup, use mknod for devices
-
- * install_steps_gtk.pm (installPackages): have Ok button by default for
- asking for changing CD
-
- * rescue/devices.pl, rescue/list: cleanup, speedup, use mknod for devices
-
- * bootloader.pm (mkbootdisk): cleanup
-
- * rescue/dirs: make it work (do not have the dev in /)
-
- * devices.pm: remove fd0H1440 and fd1H1440
-
- * modules.pm: remove "msdos"
-
-2001/08/29 dam's <damien@mandrakesoft.com>
-
- * network/adsl.pm, network/tools.pm, share/rpmsrate: speedtouch
- configuration
-
-2001/08/29 François Pons <fpons@mandrakesoft.com>
-
- * mouse.pm: improved write_conf to enable multi-mice if only once mice is
- already defined.
-
- * install_steps.pm: add support for mandatory frame buffer support (SiS
- 630) need them for XF3 to
- work properly, XF4 does work with it nicely.
-
- * Xconfigurator.pm: make sure Port entry for wacom is placed first.
-
- * standalone/mousedrake: try to merge already existing mouse configuration
- with what has been probed,
- change if mouse is really changed as probe is incomplete.
-
- * Xconfig.pm: improve getinfoFromXF86Config for mouse parameters.
-
-2001/08/29 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: games
-
-2001/08/29 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/da.po, share/po/DrakX.pot, share/po/es.po: updated Danish file
-
-2001/08/29 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm, install_any.pm, fsedit.pm, diskdrake.pm: try to better handle
- symlinks device and devfs devices
-
- * install_steps_interactive.pm, standalone/localedrake, lang.pm, any.pm,
- Makefile.config: add localedrake (not tested)
-
- * install_steps.pm: no need to have devfs=nomount anymore in root raid
- do not modify fstab options in upgrade
-
- * keyboard.pm (loadkeys_files): fixed
- fix DISABLE_WINDOWS_KEY state handling (for upgrade), cleanup
-
- * diskdrake_interactive.pm: try to better handle symlinks device and devfs
- devices
- (main): fix
- (Create): fix typo causing primaryOrExtended to be ignored
-
- * rescue/devices.pl, rescue/make_rescue_img, rescue/list: cleanup,
- speedup, use mknod for devices
-
- * c/stuff.xs.pm, detect_devices.pm: better floppy detection/info
-
-2001/08/28 dam's <damien@mandrakesoft.com>
-
- * interactive.pm, install2.pm: corrected icon handling
-
- * services.pm: added cupslpd in printing section
-
-2001/08/28 François Pons <fpons@mandrakesoft.com>
-
- * Makefile.config: really fix typo...
- fixed typo.
-
-2001/08/28 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/cs.po: updated Czech file
-
-2001/08/28 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm: remove the temporary file /tmp/autoinst.img
-
- * install_steps.pm, install_steps_interactive.pm: propose to format / and
- /usr even if isFormatted. More generally do not trust isFormatted to
- show which partitions to format
-
-2001/08/28 siegel
-
- * ChangeLog, keyboard.pm:
- - keyboard.pm: write DISABLE_WINDOWS_KEY=no in /etc/sysconfig/keyboard
- if no laptop is detected (= give users the chance to know about the
- existence of this variable).
-
-2001/08/28 yduret
-
- * standalone/diskdrake: embedded mode nicer
-
-2001/08/28 dam's <damien@mandrakesoft.com>
-
- * interactive.pm, install2.pm: corrected icon handling
-
-2001/08/28 François Pons <fpons@mandrakesoft.com>
-
- * share/list: added /sbin/e2fsck
-
- * share/aliases: added fsck.ext2 -> e2fsck (now in list file)
- removed e2fsck.shared as e2fsprogs now provide a shared version instead
- of a
- static one.
-
- * Makefile.config: really fix typo...
- fixed typo.
- removed reference to e2fsck.shared (now use e2fsck from package which is
- shared
- since 1.23-2mdk).
-
-2001/08/28 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm: remove the temporary file /tmp/autoinst.img
-
-2001/08/28 siegel
-
- * ChangeLog, keyboard.pm:
- - keyboard.pm: write DISABLE_WINDOWS_KEY=no in /etc/sysconfig/keyboard
- if no laptop is detected (= give users the chance to know about the
- existence of this variable).
-
-2001/08/28 yduret
-
- * standalone/diskdrake: embedded mode nicer
-
-2001/08/28 Stefan Siegel <siegel@mandrakesoft.com>
-
- * keyboard.pm: write DISABLE_WINDOWS_KEY=no in /etc/sysconfig/keyboard
- if no laptop is detected (= give users the chance to know about
- the existence of this variable).
-
-2001/08/28 dam's <damien@mandrakesoft.com>
-
- * mouse.pm: typo
-
-2001/08/28 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: default the licence agreement to "Refuse"
-
- * standalone/drakboot: security fix and various
- move to all_hds stuff
-
- * c/stuff.xs.pm, bootloader.pm: security fix and various
-
-2001/08/28 warly
-
- * share/rpmsrate: move libsafe to SERVER_OTHER 2
- added prelude, libsafe...
-
-2001/08/28 yduret
-
- * standalone/drakxconf: readded dsikdrake
- added new items, remove some old ones
-
-2001/08/27 dam's <damien@mandrakesoft.com>
-
- * network/network.pm: corrected hwaddr setting and draknet first window
- display
- corrected typo
-
- * network/netconnect.pm: corrected hwaddr setting and draknet first window
- display
-
-2001/08/27 dam's <damien@mandrakesoft.com>
-
- * network/network.pm: corrected hwaddr setting and draknet first window
- display
- corrected typo
-
- * network/netconnect.pm: corrected hwaddr setting and draknet first window
- display
-
-2001/08/27 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sk.po, share/po/eu.po: updated Basque and slovak files
-
-2001/08/27 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm: nicer help display
-
- * share/keyboards.tar.bz2: fix the rights
-
- * c/stuff.xs.pm (setlocale): do not set LC_NUMERIC
-
-2001/08/27 dam's <damien@mandrakesoft.com>
-
- * network/netconnect.pm: corrected bad window size
-
- * network/network.pm: make it compile
- corrected hwaddr stuff
- added HWADDR
-
- * network/tools.pm: corrected internet initscript
-
- * any.pm, mouse.pm: make it compile
- add_devfslink
-
-2001/08/27 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm, keyboard.pm: Added "zh_HK" to Chinese in LANGUAGE list.
- Added Latvian keyboard
-
- * share/keyboards.tar.bz2: Checked and updated xmodmap files for DrakX
-
- * share/po/sk.po, share/po/eu.po: updated Basque and slovak files
-
-2001/08/27 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm: nicer help display
-
- * diskdrake.pm: use empty hash instead of the raid/loopback array
-
- * c/stuff.xs.pm (setlocale): do not set LC_NUMERIC
-
-2001/08/27 dam's <damien@mandrakesoft.com>
-
- * network/netconnect.pm: corrected bad window size
-
- * network/network.pm: added HWADDR
-
- * network/tools.pm: corrected internet initscript
-
-2001/08/27 François Pons <fpons@mandrakesoft.com>
-
- * any.pm, standalone/draknet, network/modem.pm: added Borsenkow Andrej
- patch to support CHAP again.
-
-2001/08/27 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm, keyboard.pm: Added "zh_HK" to Chinese in LANGUAGE list.
- Added Latvian keyboard
-
-2001/08/27 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake.pm: use empty hash instead of the raid/loopback array
-
-2001/08/26 warly
-
- * share/rpmsrate: add some important packages
-
-2001/08/26 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakautoinst: require -> use
-
- * install_any.pm: save the .img file so that multi-cd install won't ask to
- re-enter first cd
-
-2001/08/26 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
- share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
- share/po/ko.po, share/po/nl.po, share/po/ja.po, share/po/wa.po,
- share/po/sv.po, share/po/is.po, share/po/hu.po, share/po/zh_TW.Big5.po,
- share/po/it.po, share/po/id.po, share/po/pl.po, share/po/fi.po,
- share/po/no.po, share/po/zh_CN.GB2312.po, share/po/th.po,
- share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/sl.po,
- share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
- share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
- share/po/da.po, share/po/cs.po, share/po/af.po: updated pot file
-
-2001/08/26 Pixel <pixel@mandrakesoft.com>
-
- * share/po/Makefile, share/po/.cvsignore: fetch directly the latest
- drakx-help.xml
-
-2001/08/25 Pixel <pixel@mandrakesoft.com>
-
- * standalone/drakbug_report: add "rpm -qa"
-
- * bootlook.pm: fix deprecated call standalone::pkgs_install
-
- * diskdrake.pm: don't the grab flag propagate everywhere
-
-2001/08/25 dam's <damien@mandrakesoft.com>
-
- * install2.pm, steps.pm: icon correction
-
-2001/08/25 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm (mount): accept mounting iso9660 filesystem as it should be
- (write_fstab): enable mounting more than one swap :)
-
- * bootlook.pm: fix deprecated call standalone::pkgs_install
-
- * install_steps.pm: added the missing security parameter to
- set_default_options
-
- * diskdrake.pm: don't the grab flag propagate everywhere
-
-2001/08/24 dam's <damien@mandrakesoft.com>
-
- * pixmaps/mouse_3b_mini.xpm, pixmaps/mouse_3b+.xpm, pixmaps/mouse_3b.xpm,
- pixmaps/mouse_3b+_mini.xpm: mini pixmaps, and lower color res for normal
- pix
-
- * standalone/mousedrake: updated mouse test
-
-2001/08/24 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/dietlibc/libstdio/fdglue.c: fix this dietlibc... hope the
- uncompressing of ramdisk will rulz now
-
- * mdk-stage1/network.c: allow unsetting of automatic mode if not enough
- parameter provided in network steps
-
- * mdk-stage1/probing.c:
- - descr of proc files
- - fix small typo (segfault or not segfault? that's the question)
- enable install from Compaq Smart Array
-
- * mdk-stage1/dietlibc/Makefile, mdk-stage1/bzlib/Makefile: use CC rather
- than gcc statically
-
- * mdk-stage1/tools.c, mdk-stage1/mount.c: enable install from Compaq Smart
- Array
-
-2001/08/24 Pixel <pixel@mandrakesoft.com>
-
- * tools/pcmcia_config.patch: update the patch
-
- * Makefile (test_pms): make perl_checker skip help.pm
- ensure no .orig are generated when the pcmcia patch is applied
-
- * tools/make_mdkinst_stage2: give a little more free space (esp. for
- russian lang)
-
- * lang.pm, share/gen_locales.sh: no need for UTF-8/LC_CTYPE
-
- * share/po/help_xml2pm.pl, share/po/Makefile, help.pm: auto-generates
- help.pm from xml doc done by doc team
-
-2001/08/24 dam's <damien@mandrakesoft.com>
-
- * network/adsl.pm: bugfix, speedtouch help
-
- * standalone/mousedrake: updated mouse test
-
-2001/08/24 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm: fixed possible bug (not sorted partition when calling
- mount_part).
-
- * install_any.pm: fixed hdInstallPath for an hd installation without
- usingRamdisk (not installing
- urpmi in such case).
- updated packages to copy for printerdrake, removed almost obsoletes
- XFree86
- 3.3.6 servers (8514, AGX, Mach32, Mach8, Mono, P9000, W32, I128, VGA16,
- 3DLabs)
- which means user will have to change CD back to CD#1 if he a such a
- card.
- removed obsolete code for cond_remount and cond_umount and update
- hdInstallPath
- for hd installation.
-
- * diskdrake_interactive.pm: fixed typo common::usingRamdisk() instead of
- common::useRamdisk().
- take care mount point action is available for the hd installation
- partition only
- if a ramdisk is used (as it can be unmounted).
- use more global isMagicPart instead of isInstallHdPart.
- added real_mntpoint documentation and take care of hd install partition
- for
- available actions.
-
- * fs.pm: take care of using ram disk to remap mntpoint of hd installation
- partition.
- fixed partition never seen as mounted, added special case for
- real_mntpoint to
- remount magic partition on the right place.
-
-2001/08/24 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/dietlibc/libstdio/fdglue.c: fix this dietlibc... hope the
- uncompressing of ramdisk will rulz now
-
- * mdk-stage1/automatic.c: revert my auto->interactive patch
-
- * mdk-stage1/network.c: allow unsetting of automatic mode if not enough
- parameter provided in network steps
-
- * mdk-stage1/dietlibc/Makefile, mdk-stage1/bzlib/Makefile: use CC rather
- than gcc statically
-
- * mdk-stage1/tools.c, mdk-stage1/mount.c, mdk-stage1/probing.c: enable
- install from Compaq Smart Array
-
-2001/08/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/locales-skeleton.tar.bz2, share/fonts.tar.bz2, keyboard.pm:
- enabling euro and utf-8 for some languages; added unicode font
-
-2001/08/24 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: remove the cond_umount_hdimage and
- cond_remount_hdimage
-
- * tools/pcmcia_config.patch: update the patch
-
- * lang.pm: no need for UTF-8/LC_CTYPE
- (load_mo): if not usingRamdisk, don't try getFile
-
- * diskdrake_interactive.pm: remove the cond_umount_hdimage and
- cond_remount_hdimage
- (Done): do not write fstab nor ask about it in install
-
- * fs.pm (mount): allow to mount 'proc' and 'usbdevfs'
-
- * Makefile: ensure no .orig are generated when the pcmcia patch is applied
-
- * partition_table.pm (write): do not die when real_mntpoint fs fail to
- unmount/remount, just log
- (write): unmount+remount real_mntpoint before doing the kernel_read
-
- * share/gen_locales.sh: no need for UTF-8/LC_CTYPE
-
- * pkgs.pm: fix "invalid file"
-
-2001/08/24 dam's <damien@mandrakesoft.com>
-
- * network/netconnect.pm: speedtouch configuration
-
- * my_gtk.pm: gtk_create_xpm handles no absolute xpm path
-
- * pixmaps/mouse_3b+.xpm, pixmaps/mouse_middle.xpm, pixmaps/mouse_3b.xpm:
- added new mouse pixmap for mousedrake
-
- * network/adsl.pm: bugfix, speedtouch help
- added aliases for speedtouch stuff
- speedtouch configuration
- removed adsl detectioin, once again.
-
- * standalone/mousedrake: no absolute pixmap reference
- new mousedrake. experimental
-
- * network/tools.pm: speedtouch configuration
- export write_initscript, correct initscript.
-
-2001/08/24 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm: fixed possible bug (not sorted partition when calling
- mount_part).
-
- * diskdrake_interactive.pm: take care mount point action is available for
- the hd installation partition only
- if a ramdisk is used (as it can be unmounted).
- use more global isMagicPart instead of isInstallHdPart.
- added real_mntpoint documentation and take care of hd install partition
- for
- available actions.
-
- * install_any.pm: fixed hdInstallPath for an hd installation without
- usingRamdisk (not installing
- urpmi in such case).
- updated packages to copy for printerdrake, removed almost obsoletes
- XFree86
- 3.3.6 servers (8514, AGX, Mach32, Mach8, Mono, P9000, W32, I128, VGA16,
- 3DLabs)
- which means user will have to change CD back to CD#1 if he a such a
- card.
- removed obsolete code for cond_remount and cond_umount and update
- hdInstallPath
- for hd installation.
-
- * mdk-stage1/init-data/msgboot-graphicallogo.img.bz2,
- mdk-stage1/init-data/msgboot.img.bz2: updated with latest 8.1 pictures
- and updated documentation.
-
- * fs.pm: take care of using ram disk to remap mntpoint of hd installation
- partition.
- fixed partition never seen as mounted, added special case for
- real_mntpoint to
- remount magic partition on the right place.
-
-2001/08/24 Pixel <pixel@mandrakesoft.com>
-
- * partition_table.pm (write): do not die when real_mntpoint fs fail to
- unmount/remount, just log
- (write): unmount+remount real_mntpoint before doing the kernel_read
-
- * install_steps.pm: remove the cond_umount_hdimage and
- cond_remount_hdimage
-
- * diskdrake_interactive.pm: remove the cond_umount_hdimage and
- cond_remount_hdimage
- (Done): do not write fstab nor ask about it in install
-
- * lang.pm (load_mo): if not usingRamdisk, don't try getFile
-
- * fs.pm (mount): allow to mount 'proc' and 'usbdevfs'
-
-2001/08/24 siegel
-
- * share/po/de.po: New & shiny german version
-
-2001/08/23 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/no.po: updated Norwegian file
-
- * share/po/el.po: updated Greek file
-
-2001/08/23 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/no.po: updated Norwegian file
-
-2001/08/23 dam's <damien@mandrakesoft.com>
-
- * network/netconnect.pm: at_boot connection,resolvconf in profiles
-
- * standalone/draksec: addedlibsafe option
-
- * network/adsl.pm: restart network after having tested adsl. experimental
-
-2001/08/23 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_gtk.pm: removed unusefull greping when building package
- tree.
-
-2001/08/23 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: work on GAMES section
-
-2001/08/23 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/lv.po: updated Latvian file
-
-2001/08/23 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (cond_umount_hdimage): do not unmount /tmp/hdimage if not
- using ramdisk
- (disable_user_view): damned kdmrc moved
-
- * diskdrake_interactive.pm: cancel at startup will now exit
- ask wether to save fstab
- (part_possible_actions): have "Mount point" first to please fpons
-
- * fs.pm: keep the freq&passno of /etc/fstab
-
- * tools/i386/netboot/menu.lst.example,
- tools/i386/netboot/make_boot_network,
- tools/i386/netboot/automatic.para.default: as we now have
- menu.lst.example, i remove automatic.para for more flexibility
-
- * lang.pm: fix locale support when usingRamdisk
-
-2001/08/22 anoncvs
-
- * share/po/zh_CN.GB2312.po: * Wed Aug 22 2001 DU Xiaoming
- <dxiaoming@mandrakesoft.com>
- Updated chinese (simplied) translation.
-
-2001/08/22 Pixel <pixel@mandrakesoft.com>
-
- * share/gen_locales.sh, share/locales-skeleton.tar.bz2: fix ru KOI8-R
-
- * network/nfs.pm: pleac perl_checker
-
- * interactive_gtk.pm: more intelligent setting back the selected value in
- the clist and ctree
- (done already for entry)
- - fix entries editing causing the cursor to go to the end of line
- - select the text
-
- * c/stuff.xs.pm, install_steps.pm, pkgs.pm: do init_db inside pkg_inside
- otherwise LOG is closed and rpmlib tries to write in it and ...
-
-2001/08/22 anoncvs
-
- * share/po/zh_CN.GB2312.po: * Wed Aug 22 2001 DU Xiaoming
- <dxiaoming@mandrakesoft.com>
- Updated chinese (simplied) translation.
-
-2001/08/22 fabman
-
- * share/po/es.po: updated spanish .po files for DrakX and drakbootdisk
-
-2001/08/22 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/automatic.c: don't stay automatic for ask_from_entries when
- entries are not given
-
- * mdk-stage1/tools.c, mdk-stage1/stage1.c, mdk-stage1/cdrom.c,
- mdk-stage1/mount.c, mdk-stage1/lomount.c, mdk-stage1/mount.h,
- mdk-stage1/network.c, mdk-stage1/modules.c, mdk-stage1/disk.c: mount all
- but ramdisk Read Only
-
-2001/08/22 Pixel <pixel@mandrakesoft.com>
-
- * share/gen_locales.sh, share/locales-skeleton.tar.bz2: fix ru KOI8-R
-
- * bootlook.pm: fix typo
-
- * network/nfs.pm: pleac perl_checker
-
- * install_steps.pm: do init_db inside pkg_inside otherwise LOG is closed
- and rpmlib tries to write in it and ...
- do not call configurePrinter if no printer is wanted
-
- * interactive_gtk.pm: more intelligent setting back the selected value in
- the clist and ctree
- (done already for entry)
- - fix entries editing causing the cursor to go to the end of line
- - select the text
-
- * c/stuff.xs.pm, pkgs.pm: do init_db inside pkg_inside otherwise LOG is
- closed and rpmlib tries to write in it and ...
-
-2001/08/22 François Pons <fpons@mandrakesoft.com>
-
- * printerdrake.pm: fixed int and float checking which should accept
- negative number (added explicit
- positive too), cleaned code for some perl idioms.
-
- * install_steps.pm: updated configurePrinter to use foomatic printer
- configuration.
-
-2001/08/22 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/automatic.c: don't stay automatic for ask_from_entries when
- entries are not given
-
- * mdk-stage1/tools.c, mdk-stage1/stage1.c, mdk-stage1/cdrom.c,
- mdk-stage1/mount.c, mdk-stage1/lomount.c, mdk-stage1/mount.h,
- mdk-stage1/network.c, mdk-stage1/modules.c, mdk-stage1/disk.c: mount all
- but ramdisk Read Only
-
-2001/08/22 kjx
-
- * share/po/zh_CN.GB2312.po: review
- review
-
-2001/08/22 Pixel <pixel@mandrakesoft.com>
-
- * bootlook.pm: fix typo
-
- * install_steps_auto_install.pm: don't have formatPartitions interactive
- by default
-
- * install_steps.pm: do not call configurePrinter if no printer is wanted
-
-2001/08/22 siegel
-
- * share/po/de.po: new german version
-
-2001/08/21 dam's <damien@mandrakesoft.com>
-
- * Makefile: added rpcinfo to the tar
- corrected bad Makefile : rpcinfo-flushed.c comes from tools.
-
- * standalone/draknet: ergonomy correction
-
- * network/tools.pm: corrected qq bug
- corrected bug
-
- * standalone/net_monitor: log updatede
- removed memoty leak
- time connection label
-
-2001/08/21 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: moved installation code of foomatic (only)
- if a printer may be chosen.
-
- * install_any.pm: fixed hd installation for urpmi.
-
- * printerdrake.pm: slight rewrite of some perl idioms.
-
-2001/08/21 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/wa.po: updated Walloon file
- updated pot file
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/sv.po, share/po/is.po, share/po/hu.po,
- share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po, share/po/pl.po,
- share/po/fi.po, share/po/no.po, share/po/zh_CN.GB2312.po,
- share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
- share/po/ar.po, share/po/sl.po, share/po/vi.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
- share/po/af.po: updated pot file
-
-2001/08/21 Pixel <pixel@mandrakesoft.com>
-
- * share/rpmsrate: add telnet-client-krb5 and ftp-client-krb5
-
- * install_steps.pm: try to fix umount/remounting /tmp/hdimage in hd
- install
-
- * Makefile, share/po/Makefile: check presence of '$' in DrakX.pot
-
- * fs.pm (read_fstab): don't expand symlink if the link goes in a directory
-
- * install_any.pm: cleanup
-
- * install_steps_interactive.pm: fix '$' in i18n message
-
-2001/08/21 siegel
-
- * share/po/de.po: new german version
-
-2001/08/21 dam's <damien@mandrakesoft.com>
-
- * standalone/net_monitor: removed memoty leak
- time connection label
-
- * network/tools.pm, network/modem.pm, network/netconnect.pm,
- network/ethernet.pm, network/isdn.pm: generik internet initscript, planq
- the children again
-
- * network/adsl.pm: speedtouch config
- generik internet initscript, planq the children again
-
-2001/08/21 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fixed hd installation for urpmi.
-
-2001/08/21 kjx
-
- * share/po/zh_CN.GB2312.po: review
-
-2001/08/21 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
- share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
- share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
- share/po/da.po, share/po/cs.po, share/po/af.po: updated pot file
-
-2001/08/21 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm: fix spelling error
-
- * install_any.pm: cleanup
- install hotplug if usb (i kept usbd just in case)
-
- * diskdrake_interactive.pm (Create): force no sorting on filesystems,
- editable mount points
-
- * install_steps.pm: try to fix umount/remounting /tmp/hdimage in hd
- install
-
- * Makefile, share/po/Makefile: check presence of '$' in DrakX.pot
-
- * install_steps_interactive.pm: fix '$' in i18n message
-
- * fs.pm (read_fstab): don't expand symlink if the link goes in a directory
- umask=0 only if security level < 3
-
-2001/08/20 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/compssUsers: Have NETWORKING_DNS in "Internet station" (was
- nowhere)
-
-2001/08/20 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm: basic nfs handling in drakx
- fix bug 4257
-
- * detect_devices.pm (raidAutoStart): fix for when kmod is there
-
- * fsedit.pm: try a stronger matching technique for parsing /proc/mdstat
- with devfs
-
- * diskdrake_interactive.pm, install_any.pm, install_steps.pm: try harder
- to umount /tmp/hdimage only when needed
-
- * Makefile.drakxtools, Makefile, tools/rpcinfo-flushed.c, network/nfs.pm,
- tools/.cvsignore, tools/Makefile, diskdrake.pm: basic nfs handling in
- drakx
-
-2001/08/20 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/compssUsers: Have NETWORKING_DNS in "Internet station" (was
- nowhere)
-
-2001/08/20 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator_consts.pm: add weird options for NeoMagic NM2160 (request
- of Alex Hulse <axh0@aber.ac.uk> on cooker)
-
- * detect_devices.pm (raidAutoStart): fix for when kmod is there
-
- * diskdrake.pm: remove test code
-
- * fs.pm: fix bug 4257
-
- * fsedit.pm: try a stronger matching technique for parsing /proc/mdstat
- with devfs
-
- * install_steps.pm, diskdrake_interactive.pm, install_any.pm: try harder
- to umount /tmp/hdimage only when needed
-
- * interactive_gtk.pm (wait_message_nextW): fix previous text == new text
- causing no
- expose_event causing dead loop
-
-2001/08/19 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake_interactive.pm: save fstab on exit
-
- * fsedit.pm: various typos fix
-
- * install_steps.pm: rename isCdNotEjectable in usingRamdisk, ensure no
- files are removed unless we're in ramdisk
- make the devfs= mount or nomount choice based on raid-based root work
-
- * standalone/diskdrake: rename isCdNotEjectable in usingRamdisk, ensure no
- files are removed unless we're in ramdisk
- fix diskdrake requiring gtk
- add some test code
-
- * fs.pm: rename isCdNotEjectable in usingRamdisk, ensure no files are
- removed unless we're in ramdisk
- various typos fix
-
- * install_steps_interactive.pm, common.pm, install2.pm, install_any.pm,
- lang.pm, pkgs.pm: rename isCdNotEjectable in usingRamdisk, ensure no
- files are removed unless we're in ramdisk
-
-2001/08/19 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake.pm: major fs.pm rework + adaptation to it
- don't show nfs/smb/removable in install
- basic smb handling
-
- * network/smb.pm: basic smb handling
-
- * install_steps.pm: rename isCdNotEjectable in usingRamdisk, ensure no
- files are removed unless we're in ramdisk
- make the devfs= mount or nomount choice based on raid-based root work
- disable supermount for the moment
- major fs.pm rework + adaptation to it
-
- * install_steps_interactive.pm, lang.pm: rename isCdNotEjectable in
- usingRamdisk, ensure no files are removed unless we're in ramdisk
- simplify
-
- * standalone/diskdrake: rename isCdNotEjectable in usingRamdisk, ensure no
- files are removed unless we're in ramdisk
- fix diskdrake requiring gtk
- add some test code
- major fs.pm rework + adaptation to it
-
- * install_any.pm: rename isCdNotEjectable in usingRamdisk, ensure no files
- are removed unless we're in ramdisk
- major fs.pm rework + adaptation to it
-
- * partition_table.pm: remove JFS from @important_types (too broken for the
- moment)
- remove isSupermount (was unused)
-
- * common.pm, install2.pm, pkgs.pm: rename isCdNotEjectable in
- usingRamdisk, ensure no files are removed unless we're in ramdisk
-
- * interactive_gtk.pm (create_ctree): fix focusing (the assumption number
- of leaves = number of lines is dumb)
-
- * fsedit.pm: various typos fix
- major fs.pm rework + adaptation to it
-
- * bootlook.pm, standalone/drakboot: major fs.pm rework + adaptation to it
-
- * fs.pm: rename isCdNotEjectable in usingRamdisk, ensure no files are
- removed unless we're in ramdisk
- various typos fix
- major fs.pm rework + adaptation to it
- cleanup
- basic smb handling
-
- * diskdrake_interactive.pm: save fstab on exit
- major fs.pm rework + adaptation to it
-
-2001/08/18 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm: basic nfs/smb handling in diskdrake
- fixes and function prototype removing
-
- * diskdrake.pm: basic nfs/smb handling in diskdrake
- nicer mount options code (for autofs and supermount)
-
- * install_steps.pm: oops, i inverted devfs=nomount and devfs=mount
-
- * interactive_gtk.pm: fix bug in box's height use
-
- * partition_table.pm, any.pm: fixes and function prototype removing
-
- * interactive.pm: readd the sorting based on size when no sorting is
- precised
-
- * my_gtk.pm (n_line_size): bigger spacing for 'various'
-
- * standalone/diskdrake, diskdrake_interactive.pm, fsedit.pm: basic nfs/smb
- handling in diskdrake
-
-2001/08/18 Pixel <pixel@mandrakesoft.com>
-
- * my_gtk.pm (n_line_size): bigger spacing for 'various'
- enhance look, fix ask_fileW
-
- * fs.pm: basic nfs/smb handling in diskdrake
- fixes and function prototype removing
- (write_fstab): add notail for reiserfs partitions in any case
- cleanup mounting options parsing
-
- * diskdrake.pm: basic nfs/smb handling in diskdrake
- nicer mount options code (for autofs and supermount)
- big renaming of ask_from_entries_refH in ask_from and
- ask_from_entries_refH_powered in ask_from_
- cleanup mounting options parsing
-
- * raid.pm: update the raid size as it should be
-
- * diskdrake_interactive.pm: basic nfs/smb handling in diskdrake
- less verbose resize_reiserfs
- update the raid size as it should be
- big renaming of ask_from_entries_refH in ask_from and
- ask_from_entries_refH_powered in ask_from_
-
- * fsedit.pm: basic nfs/smb handling in diskdrake
- update the raid size as it should be
-
- * network/tools.pm: fix typo
- big renaming of ask_from_entries_refH in ask_from and
- ask_from_entries_refH_powered in ask_from_
-
- * partition_table.pm: fixes and function prototype removing
-
- * install_steps_interactive.pm, standalone/drakautoinst, proxy.pm,
- install_interactive.pm, network/ethernet.pm, interactive_http.pm,
- printerdrake.pm, Xconfigurator.pm, network/netconnect.pm,
- network/network.pm, interactive_newt.pm, network/modem.pm: big renaming
- of ask_from_entries_refH in ask_from and ask_from_entries_refH_powered
- in ask_from_
-
- * standalone/diskdrake: basic nfs/smb handling in diskdrake
-
- * any.pm: fixes and function prototype removing
- big renaming of ask_from_entries_refH in ask_from and
- ask_from_entries_refH_powered in ask_from_
-
- * interactive_gtk.pm: fix bug in box's height use
- better radiobox keyboard handling
- big renaming of ask_from_entries_refH in ask_from and
- ask_from_entries_refH_powered in ask_from_
- enhance look, fix ask_fileW
-
- * interactive.pm: readd the sorting based on size when no sorting is
- precised
- big renaming of ask_from_entries_refH in ask_from and
- ask_from_entries_refH_powered in ask_from_
-
- * install_steps.pm: oops, i inverted devfs=nomount and devfs=mount
- do not use devfs with root software raid
-
-2001/08/18 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: fix pass $all_hds->{hds} instead of
- $all_hds
-
-2001/08/18 siegel
-
- * share/po/de.po: new german version
-
- * standalone/drakgw, bootlook.pm, network/ethernet.pm, install_any.pm,
- network/network.pm, raid.pm: fixed i18n
-
- * printerdrake.pm: i18n fixes
-
-2001/08/17 Pixel <pixel@mandrakesoft.com>
-
- * install_interactive.pm: use diskdrake_interactive instead of diskdrake
-
- * standalone/interactive_http/interactive_http.cgi: fix typo
- restrict the progs callable to a few one.
-
- * standalone/interactive_http/index.html.pl,
- standalone/interactive_http/index.html: autogenerate index.html
-
- * fs.pm, diskdrake_interactive.pm, diskdrake.pm: add mount options choice
- (with IA-like stripping of unused options)
-
- * c/stuff.xs.pm: is_ext3 is needed in standalone
- Xtest not needed in standalone
-
- * c/Makefile.PL: is_ext3 is needed in standalone
-
- * standalone/interactive_http/miniserv.init,
- standalone/interactive_http/Makefile: restrict the progs callable to a
- few one.
-
- * Makefile.drakxtools: fix po not build, add interactive_http in DIRS
-
- * modules.pm: move back sunhme in sparc only
-
-2001/08/17 dam's <damien@mandrakesoft.com>
-
- * interactive_gtk.pm: no scrollbar if list <= 10 and the list is alone
-
- * interactive.pm, install2.pm: removed no_incon
-
- * standalone/net_monitor: added no internet connection configured label on
- button
-
- * network/netconnect.pm, network/ethernet.pm: corrected connection script
- creation
-
-2001/08/17 Pixel <pixel@mandrakesoft.com>
-
- * install_interactive.pm: use diskdrake_interactive instead of diskdrake
- a hell lot of cleanup/rewrite:
- * diskdrake_interactive created, diskdrake is now interactive aware
- * added some documentation about the structure used for partitioning
- * all_hds now contain the various hds, lvm, raid
- * cleanup the isLVM, isRAID and alike functions
- * field {type} in detect_devices is now {media_type}
- * detect_devices::floppies is now floppies_dev
- * removed old function prototypes
-
- * fs.pm, diskdrake.pm: add mount options choice (with IA-like stripping of
- unused options)
- a hell lot of cleanup/rewrite:
- * diskdrake_interactive created, diskdrake is now interactive aware
- * added some documentation about the structure used for partitioning
- * all_hds now contain the various hds, lvm, raid
- * cleanup the isLVM, isRAID and alike functions
- * field {type} in detect_devices is now {media_type}
- * detect_devices::floppies is now floppies_dev
- * removed old function prototypes
-
- * install_steps_interactive.pm, install_steps_auto_install.pm,
- install2.pm, partition_table.pm, loopback.pm, raid.pm, bootlook.pm,
- standalone/diskdrake, install_any.pm, install_steps.pm, fsedit.pm,
- any.pm, detect_devices.pm, partition_table_raw.pm, bootloader.pm: a hell
- lot of cleanup/rewrite:
- * diskdrake_interactive created, diskdrake is now interactive aware
- * added some documentation about the structure used for partitioning
- * all_hds now contain the various hds, lvm, raid
- * cleanup the isLVM, isRAID and alike functions
- * field {type} in detect_devices is now {media_type}
- * detect_devices::floppies is now floppies_dev
- * removed old function prototypes
-
- * diskdrake_interactive.pm: add mount options choice (with IA-like
- stripping of unused options)
- (part_possible_actions): have possible actions sorted the way we want
- (Type): fix ext2->ext3 detection
- a hell lot of cleanup/rewrite:
- * diskdrake_interactive created, diskdrake is now interactive aware
- * added some documentation about the structure used for partitioning
- * all_hds now contain the various hds, lvm, raid
- * cleanup the isLVM, isRAID and alike functions
- * field {type} in detect_devices is now {media_type}
- * detect_devices::floppies is now floppies_dev
- * removed old function prototypes
-
- * modules.pm: move back sunhme in sparc only
-
-2001/08/17 Till Kamppeter <till@mandrakesoft.com>
-
- * share/rpmsrate: Corrected listing of packages for printing in 'INSTALL'
- section.
-
-2001/08/17 warly
-
- * share/rpmsrate: add package needed by the install in INSTALL
- remove shapecfg and gpa
-
-2001/08/16 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Fixed bug of CUPS not being installed during
- installation
-
-2001/08/16 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm, install_any.pm: add remove_unused to have more place for mo
- files
-
-2001/08/16 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Fixed bug of CUPS not being installed during
- installation
-
-2001/08/16 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm: add remove_unused to have more place for mo files
- (getAndSaveAutoInstallFloppy): fix a missing del_loop which caused the
- unmounting at end of install to fail
-
- * install2.pm: add remove_unused to have more place for mo files
-
-2001/08/16 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Fixed setup dialog for the "postpipe" connection type
-
-2001/08/16 warly
-
- * share/rpmsrate: add package needed by the install in INSTALL
-
-2001/08/16 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/fr.po: updated French file
-
- * share/po/sk.po: updated Slovak file
-
- * lang.pm: Added explicit setting of XFree86 internal XIM for Thai
-
-2001/08/16 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (getAndSaveAutoInstallFloppy): fix a missing del_loop
- which caused the
- unmounting at end of install to fail
-
-2001/08/16 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Fixed setup dialog for the "postpipe" connection type
-
-2001/08/16 warly
-
- * share/rpmsrate: add package needed by the install in INSTALL
- add kernel in INSTALL
- s/DrakConf/drakconf/
-
-2001/08/15 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ko.po, share/po/it.po, share/po/id.po: updated Indonesian,
- Italian and Korean files
-
- * share/po/sr.po, share/po/sp.po, share/po/tr.po: updated Turkish and
- Serbian files
-
-2001/08/15 Pixel <pixel@mandrakesoft.com>
-
- * standalone/diskdrake: oops reverting modifs commited by error
- fix XkbOptions handling
-
- * standalone/keyboarddrake: fix XkbOptions handling
-
-2001/08/15 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: Let the "Options" button only appear when
- the queue is Foomatic or with PPD (CUPS)
-
-2001/08/15 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ko.po, share/po/it.po: updated Indonesian, Italian and Korean
- files
-
- * share/po/es.po: updated spanish and Indonesian files
-
- * share/po/id.po: updated Indonesian, Italian and Korean files
- updated spanish and Indonesian files
-
-2001/08/14 dam's <damien@mandrakesoft.com>
-
- * standalone/net_monitor: added options
-
-2001/08/14 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_any.pm: oops, fix type of installing X or not
- - fix choice of packages when auto install
-
- * Makefile.config: add drakautoinst in drakxtools standalone binaries
-
- * install_steps_interactive.pm, install2.pm:
- - fix createBootdisk with auto
- - fix setupBootloader with auto
- - fix behaviour of draknet when auto-install
- - remove auto flag when error-in-step
-
- * install_steps.pm, network/netconnect.pm:
- - fix behaviour of draknet when auto-install
- - remove auto flag when error-in-step
-
- * Xconfigurator.pm: fix automatic configuration
-
-2001/08/14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sv.po: updated Swedish file
-
-2001/08/14 Pixel <pixel@mandrakesoft.com>
-
- * devices.pm: add number-only device-name handling (eg: "801" is "sda1")
-
- * interactive_gtk.pm, interactive.pm:
- - small fixes (esp. gtk sensitive handling)
- - add ask_file
- - add "gtk" preference field
-
- * my_gtk.pm: remove ask_file (was unused)
-
- * http.pm: cleanup to please perl_checker
-
- * Makefile (TAGS): add MDK/Common files
-
- * services.pm: cleanup (it was working, but wasn't nice)
-
-2001/08/14 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: corrected activation button
-
-2001/08/14 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_any.pm: oops, fix type of installing X or not
- - fix choice of packages when auto install
-
- * Makefile.config: add drakautoinst in drakxtools standalone binaries
-
- * install_steps_interactive.pm, install2.pm:
- - fix createBootdisk with auto
- - fix setupBootloader with auto
- - fix behaviour of draknet when auto-install
- - remove auto flag when error-in-step
-
- * install_steps.pm, network/netconnect.pm:
- - fix behaviour of draknet when auto-install
- - remove auto flag when error-in-step
-
- * Xconfigurator.pm: fix automatic configuration
-
-2001/08/14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sv.po: updated Swedish file
-
-2001/08/14 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm: fix typo?
-
-2001/08/14 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Transfer queues non-interactively when switching
- between LPD and LPRng.
-
-2001/08/14 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: corrected activation button
-
-2001/08/14 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_steps.pm, install_steps_interactive.pm, install2.pm,
- network/netconnect.pm:
- - fix behaviour of draknet when auto-install
- - remove auto flag when error-in-step
-
- * Xconfigurator.pm: fix automatic configuration
-
- * install_any.pm:
- - fix choice of packages when auto install
-
-2001/08/14 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm: fix typo?
-
-2001/08/14 Till Kamppeter <till@mandrakesoft.com>
-
- * printer.pm: Removed superfluous lines.
-
- * printerdrake.pm: Transfer queues non-interactively when switching
- between LPD and LPRng.
- Wait message for queue transfer, manufacturer name bugfix
-
-2001/08/13 Chmouel Boudjnah <chmouel@mandrakesoft.com>
-
- * tools/i386/netboot/stage2.eepro100: Add eepro100 grub stage.
- Removing old version of eepro100 (no stage1).
-
- * tools/i386/netboot/stage1.eepro100: Add eepro100 grub stage.
-
-2001/08/13 dam's <damien@mandrakesoft.com>
-
- * interactive.pm: corrected 'no icon'
-
- * network/adsl.pm, network/netconnect.pm: adsl autodetection activated
- (planq the children)
-
-2001/08/13 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakautoinst: ouch! use lib from /usr/lib/libDrakX, rather
- than from ..
- initial revision for drakautoinst
- - put %installSteps in a separate package (steps.pm) (for drakxtools)
- - use additional fields {auto} and {noauto}, by step, to ease
- interactive auto install and oem stuff
- - in install2.pm, perform each step either from the interactive class
- or from install_steps, according to the {auto} flag
- - id, tell each step to not try to be automatic if {noauto}
- - in the install, have auto install bootdisk created in install_any so
- we can always write a bootdisk (from install_steps) for further use from
- drakautoinst in standalone
- - interactive version of install_steps_auto_install is now inheriting
- from the interactive class, so we can click on a previous automatic step
- and have it interactively during an interactive auto install
-
- * install_steps.pm, install_steps_interactive.pm,
- install_steps_auto_install.pm, install2.pm, steps.pm, install_any.pm:
- initial revision for drakautoinst
- - put %installSteps in a separate package (steps.pm) (for drakxtools)
- - use additional fields {auto} and {noauto}, by step, to ease
- interactive auto install and oem stuff
- - in install2.pm, perform each step either from the interactive class
- or from install_steps, according to the {auto} flag
- - id, tell each step to not try to be automatic if {noauto}
- - in the install, have auto install bootdisk created in install_any so
- we can always write a bootdisk (from install_steps) for further use from
- drakautoinst in standalone
- - interactive version of install_steps_auto_install is now inheriting
- from the interactive class, so we can click on a previous automatic step
- and have it interactively during an interactive auto install
-
-2001/08/13 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_auto_install.pm, install2.pm, install_any.pm, steps.pm:
- auto_inst enhancements
-
- * install_steps_interactive.pm, standalone/XFdrake, install_steps.pm,
- Xconfigurator.pm: really use a class_discard for Xconfigurator::main
-
- * devices.pm: add /dev/hd[mt] handling
-
-2001/08/13 siegel
-
- * share/po/de.po: new german version
-
-2001/08/13 Till Kamppeter <till@mandrakesoft.com>
-
- * printerdrake.pm: Automatic transfer of queues when changing the spooler.
- Update printer queue list when exiting during install, so that the
- "Summary" entry is correct.
- When one sayd "No" on the test page, the modify dialog was not pointing
- to the current printer
-
- * printer.pm: Automatic transfer of queues when changing the spooler.
- The photo test page was not printed during installation.
-
- * interactive.pm: Tree lists are sorted again now.
-
-2001/08/13 yduret
-
- * standalone/drakxconf: removed diskdrake from the choice
-
-2001/08/12 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: longer timeout
-
-2001/08/12 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: fix ortograf typo
-
-2001/08/12 Pixel <pixel@mandrakesoft.com>
-
- * share/po/Makefile: po->mo is no longer gonna be nasty with us
-
- * interactive_gtk.pm: clean the nice till fix
-
- * tools/cvslog2changelog.pl: add till
-
- * Makefile: ensure locales.tar.bz2 in perl-install/share is build
- po->mo is no longer gonna be nasty with us
-
-2001/08/12 Till Kamppeter <till@mandrakesoft.com>
-
- * interactive.pm: Lists get only sorted when the "sort" option is given.
-
- * printer.pm, printerdrake.pm: Check files before checking RPM database =>
- Acceleration, waiting windows
-
-2001/08/11 dam's <damien@mandrakesoft.com>
-
- * share/themes.rc, share/logo-mandrake.png, share/themes-mdk.rc,
- share/themes/mdk-bg.png: new theme for beta
-
- * share/theme-editor.pl: updated
- now works.
-
-2001/08/11 tkamppeter
-
- * printer.pm, printerdrake.pm: Restructuring continued and debugged
-
-2001/08/10 dam's <damien@mandrakesoft.com>
-
- * share/theme-editor.pl: added theme editor
-
- * network/tools.pm: corrected password file substitution
-
- * network/ethernet.pm: remove Data::Dumper
-
- * network/netconnect.pm: added spped and timeout handling for isdn
-
- * any.pm: corrected autologin question
-
- * network/isdn.pm: tomeout option deactivated.
-
- * standalone/draknet: corrected internet cnfiguration pop up, and some
- other studds
- ifup/down ethx, anew pixmap for list
-
- * my_gtk.pm: removed Datta::Dump use
-
- * pixmaps/eth_card_mini2.png: added
-
-2001/08/10 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm: small font fix
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/ga.po, share/po/sr.po,
- share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
- share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
- share/po/ko.po, share/po/cy.po, share/po/nl.po, share/po/ja.po,
- share/po/wa.po, share/po/sv.po, share/po/is.po, share/po/hu.po,
- share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po, share/po/pl.po,
- share/po/fi.po, share/po/no.po, share/po/zh_CN.GB2312.po,
- share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
- share/po/ar.po, share/po/sl.po, share/po/vi.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
- share/po/af.po: updated pot file
-
- * share/po/bg.po: updated Bulgarian file
- updated pot file
-
-2001/08/10 yduret
-
- * bootlook.pm: corrected vnew usage (thx gc)
-
-2001/08/09 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: added missing use
- added pixmap for eth. Some factorisation
-
- * network/tools.pm: added useless function type2interface for future use
-
- * my_gtk.pm: added gtkbuttonset, and corrected scrollbar height for
- standalone mode.
-
- * network/isdn.pm: labels corrections
-
-2001/08/09 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/tinyfirewall, standalone/printerdrake, standalone/mousedrake,
- standalone/drakxservices, standalone/net_monitor, standalone/draknet,
- standalone/drakproxy, standalone/XFdrake, standalone/keyboarddrake,
- standalone/drakxconf, standalone/adduserdrake, standalone/livedrake,
- standalone/drakboot, standalone/draksec: use vnew the right way
- everywhere
-
- * standalone/drakgw: use vnew the right way everywhere
- - if package installs fail, redo one by one to know which one failed
- - try to not end up with a failing configuration file, if program is
- brutally stopped
- - if unrecognized config file, don't fail, rather ignore it and
- proceed
- - run dhcpd_update feature (if present) after setup of dhcp server
-
- * share/rpmsrate: put traceroute in network client also, for claudio
-
-2001/08/09 Pixel <pixel@mandrakesoft.com>
-
- * standalone.pm, install_any.pm: rename interactive_pkgs in
- pkgs_interactive
-
-2001/08/09 siegel
-
- * standalone/interactive_http/miniserv.logrotate,
- standalone/interactive_http/Makefile: Added logrotate for
- "/var/log/drakxtools_http.log"
-
-2001/08/09 tkamppeter
-
- * printer.pm, printerdrake.pm: New structure for queue modification,
- general structure clean-up
-
-2001/08/09 yduret
-
- * bootlook.pm: readded in->do_pkg->install (i sux)
- rewrite in a more drakx fashion
-
- * my_gtk.pm: added gtkset_sensitive in wrapper..
-
-2001/08/08 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
- share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
- share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
- share/po/da.po, share/po/cs.po, share/po/af.po: updated pot file
-
-2001/08/08 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: typo
- makes interactive_pkgs stuff work
- add interactive_pkgs stuff
-
- * Makefile: skip module CGI in test_pms (perl_checker)
-
- * fsedit.pm (check_mntpoint): remove /root from directories that "should
- remain within the root filesystem"
-
- * proxy.pm, network/ethernet.pm, network/isdn.pm, tinyfirewall.pm,
- printerdrake.pm, standalone/drakgw, standalone/draknet,
- network/tools.pm, bootlook.pm, standalone.pm, standalone/drakproxy,
- standalone/XFdrake, network/netconnect.pm, standalone/adduserdrake,
- network/adsl.pm, network/network.pm, printer.pm, network/modem.pm: add
- interactive_pkgs stuff
-
- * install_steps_interactive.pm: installing foomatic before doing anything
- about printer
- add interactive_pkgs stuff
-
- * Xconfigurator.pm, any.pm: makes interactive_pkgs stuff work
- add interactive_pkgs stuff
-
- * install_any.pm (remove, remove_nodeps): fix typo
- makes interactive_pkgs stuff work
- add interactive_pkgs stuff
-
-2001/08/08 tkamppeter
-
- * install_steps_interactive.pm: Installation fitted to new printerdrake
-
- * printer.pm: Different choosable test pages available now
- Corrected init script calls in the (start|stop|restart)_service
- functions
-
- * printerdrake.pm: Different choosable test pages available now
- Removed superfluous line in install_spooler function
-
-2001/08/08 Pixel <pixel@mandrakesoft.com>
-
- * pkgs.pm (naughtyServers): add drakxtools-http
-
-2001/08/07 dam's <damien@mandrakesoft.com>
-
- * standalone/net_monitor: nex features
-
- * network/netconnect.pm: removed debugging message
-
- * network/isdn.pm: corrected pkgs use -> require
-
- * my_gtk.pm: added gtkset_relief
-
- * pixmaps/network.png, pixmaps/draknet_step.png: added
-
-2001/08/07 Pixel <pixel@mandrakesoft.com>
-
- * pixmaps/network.png, pixmaps/draknet_step.png: re-adding with -kb
- removing for re-adding with -kb
-
-2001/08/07 tkamppeter
-
- * printer.pm, printerdrake.pm: Automatic installation of all needed
- packages
-
-2001/08/07 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: corrected label
-
- * network/netconnect.pm: removed debugging message
-
- * standalone/net_monitor: nex features
- added color choice
- lot of improvments
-
- * network/isdn.pm: corrected pkgs use -> require
-
- * my_gtk.pm: added gtkset_relief
-
- * pixmaps/network.png, pixmaps/draknet_step.png: added
-
-2001/08/07 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/tools.c: say that it's a data read error, when we can't load
- the ramdisk
-
- * mdk-stage1/Makefile.common, mdk-stage1/bzlib/bzlib.h: don't use system
- wide bzlib.h but our own provided one
-
-2001/08/07 Pixel <pixel@mandrakesoft.com>
-
- * rescue/tree/etc/issue: fix distrib number
-
- * interactive.pm: adding http feature, mainly for standalone tools
-
- * standalone/miniserv.pem, standalone/miniserv.pl: Initial revision
- import
-
- * standalone/interactive_http/miniserv.pl: add interactive_http
- Initial revision
-
- * resize_fat/main.pm: fix
-
- * partition_table.pm: nicer names for journalised fs
-
- * Makefile.drakxtools, standalone/interactive_http/miniserv.init,
- standalone/interactive_http/index.html,
- standalone/interactive_http/interactive_http.cgi,
- standalone/interactive_http/miniserv.conf,
- standalone/interactive_http/miniserv.pam,
- standalone/interactive_http/miniserv.users, Makefile,
- standalone/interactive_http/Makefile: add interactive_http
-
- * interactive_http.pm, standalone/interactive_http.cgi: add
- interactive_http
- adding http feature, mainly for standalone tools
-
- * share/diskdrake.rc: have every journalised in darkred
-
- * c/stuff.xs.pm: add S_IFIFO
-
- * standalone/interactive_http/miniserv.pem: Initial revision
-
-2001/08/06 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm: debugging, profile coding, isdn 128 debugging
- corrected gtkradio : shift instead of pop
-
- * interactive_gtk.pm, install_steps_gtk.pm: corrected gtkradio : shift
- instead of pop
-
- * network/netconnect.pm, network/ethernet.pm, network/isdn.pm: debugging,
- profile coding, isdn 128 debugging
-
-2001/08/06 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * tools/i386/busybox: try a busybox with better globbing under the SHELL
-
-2001/08/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/de.po: Updates to German file by Peer Dunker <peer46@gmx.net>
-
- * share/po/vi.po: updated Vietnamese file
-
-2001/08/06 Pixel <pixel@mandrakesoft.com>
-
- * c/stuff.xs.pm: kernel_arch removed
-
- * fsedit.pm (@suggestions_mntpoints): remove /root (tx2gc)
-
- * interactive_gtk.pm, interactive_newt.pm: cleanup, functions already
- defined in interactive
-
-2001/08/06 yduret
-
- * tinyfirewall.pm: use MDK::Common;
- use network::netconnect;
-
- * standalone/drakgw: use MDK::Common;
- use network::netconnect; and update functions call from netconnect
-
-2001/08/05 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/eo.po: updated Esperanto file
-
-2001/08/05 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_auto_install.pm: switch to gtk install when
- interactiveSteps is defined
-
-2001/08/05 tkamppeter
-
- * printer.pm, printerdrake.pm: Automatic installation and start of the
- desired printer spooler
-
-2001/08/04 Pixel <pixel@mandrakesoft.com>
-
- * share/list: add tune2fs enabling switching from ext2 to ext3
-
- * fs.pm, fsedit.pm, partition_table.pm: add ext3 support
-
- * diskdrake.pm: add ext3 support
- (Type): handle lossless switch from ext2 to ext3
-
- * pkgs.pm: make perl_checker happy
-
- * c/stuff.xs.pm, c/Makefile.PL: add is_ext3
-
- * common.pm: moved arch() and alike to MDK::Common::System
-
-2001/08/04 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm (choosePackages): simplify, fix
- setSelectedFromCompssList not called in
- expert even the first_time (especially nasty for auto_installs)
-
- * fs.pm, partition_table.pm, fsedit.pm: add ext3 support
-
- * diskdrake.pm: add ext3 support
- (Type): handle lossless switch from ext2 to ext3
-
- * install_steps_gtk.pm: add the feather feature, but do not enable it
-
- * interactive_gtk.pm (ask_browse_tree_info_refW): s/wait_msg/wait_message/
- (wait_msg doesn't
- exist anywhere, it must be a fpons typo)
-
- * pkgs.pm: make perl_checker happy
-
- * c/stuff.xs.pm, c/Makefile.PL: add is_ext3
-
- * bootloader.pm: as when lilo is selected, we don't try to install grub,
- just create the
- config file in case it may be useful
-
- * common.pm: moved arch() and alike to MDK::Common::System
-
- * partition_table_raw.pm: add yaboot detection
-
- * install_any.pm, share/rpmsrate: create a new flags "X" selected by
- default, contain what X related packages
- which were in "SYSTEM"
-
-2001/08/04 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm (choosePackages): simplify, fix
- setSelectedFromCompssList not called in
- expert even the first_time (especially nasty for auto_installs)
-
- * install_steps_gtk.pm: add the feather feature, but do not enable it
-
- * bootloader.pm: as when lilo is selected, we don't try to install grub,
- just create the
- config file in case it may be useful
-
- * interactive_gtk.pm (ask_browse_tree_info_refW): s/wait_msg/wait_message/
- (wait_msg doesn't
- exist anywhere, it must be a fpons typo)
-
- * share/rpmsrate, install_any.pm: create a new flags "X" selected by
- default, contain what X related packages
- which were in "SYSTEM"
-
-2001/08/03 dam's <damien@mandrakesoft.com>
-
- * standalone/net_monitor, network/tools.pm, network/netconnect.pm,
- network/isdn.pm: debugging, 128Kb/s ISDN
-
- * Makefile.drakxtools, Makefile: added network pms
-
-2001/08/03 Pixel <pixel@mandrakesoft.com>
-
- * partition_table.pm: typo fix
- replace isJfs/isXfs/... with isThisFs("jfs"
-
- * install_any.pm: replace isJfs/isXfs/... with isThisFs("jfs"
- update_userkderc is now called update_gnomekderc
-
- * Makefile: better po skipping
-
- * commands.pm (sync): (re-?)add
-
- * fs.pm, install_steps_interactive.pm, diskdrake.pm, bootloader.pm:
- replace isJfs/isXfs/... with isThisFs("jfs"
-
- * fsedit.pm (check_mntpoint): /root should remain within the root
- filesystem
-
- * install_steps.pm (choosePartitionsToFormat): toFormatUnsure=1 for /usr
- update_userkderc is now called update_gnomekderc
-
-2001/08/02 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/adsl.c:
- - fix problem of clashing user/pass between adsl and ftp/http in case
- of automatic installs
- - update doc on automatic install parameters (doc/TECH-INFOS)
-
- * mdk-stage1/doc/TECH-INFOS:
- - small update
- - fix problem of clashing user/pass between adsl and ftp/http in case
- of automatic installs
- - update doc on automatic install parameters (doc/TECH-INFOS)
-
-2001/08/02 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/no.po: updated Norwegian file
-
-2001/08/02 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm, services.pm, install_interactive.pm,
- network/netconnect.pm, install_any.pm, Xconfigurator.pm: instead of
- testing if ref($in) or ref($o) contains /gtk/, test if interactive_gtk
- is in ISA of the object
-
- * partition_table.pm, fsedit.pm, diskdrake.pm: JFS support
-
-2001/08/02 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/adsl.c:
- - fix problem of clashing user/pass between adsl and ftp/http in case
- of automatic installs
- - update doc on automatic install parameters (doc/TECH-INFOS)
-
- * mdk-stage1/doc/TECH-INFOS:
- - small update
- - fix problem of clashing user/pass between adsl and ftp/http in case
- of automatic installs
- - update doc on automatic install parameters (doc/TECH-INFOS)
-
-2001/08/02 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/no.po: updated Norwegian file
-
-2001/08/02 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm: instead of testing if ref($in) or ref($o) contains
- /gtk/, test if interactive_gtk is in ISA of the object
- add jfs support
-
- * install_steps_interactive.pm, services.pm, install_interactive.pm,
- network/netconnect.pm, Xconfigurator.pm: instead of testing if ref($in)
- or ref($o) contains /gtk/, test if interactive_gtk is in ISA of the
- object
-
- * partition_table.pm: JFS support
- add jfs support
-
- * fsedit.pm, diskdrake.pm: JFS support
-
- * tools/ntp_servers.pl, timezone.pm: update ntp servers list
-
- * fs.pm, share/list: add jfs support
-
-2001/08/02 Pixel <pixel@mandrakesoft.com>
-
- * tools/ntp_servers.pl, timezone.pm: update ntp servers list
-
- * fs.pm, share/list, partition_table.pm, install_any.pm: add jfs support
-
-2001/08/01 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm: write_on_text writes in blue instead of black
-
- * network/isdn.pm: typo
- added de-installation before installateion
-
- * network/netconnect.pm: translation correction
-
-2001/08/01 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm, fsedit.pm: handle auto_allocate_raids for
- auto_installs
-
- * raid.pm (new): now works with a list of partitions
-
-2001/08/01 tkamppeter
-
- * printer.pm: Fixed bug in recognizing the printer ID in the Foomatic
- overview.
-
-2001/08/01 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm: write_on_text writes in blue instead of black
-
- * network/isdn.pm: typo
- added de-installation before installateion
-
- * network/netconnect.pm: translation correction
-
-2001/08/01 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm, fsedit.pm: handle auto_allocate_raids for
- auto_installs
-
- * raid.pm (new): now works with a list of partitions
-
-2001/07/31 dam's <damien@mandrakesoft.com>
-
- * network/netconnect.pm: added splash screen between different
- configurations. Added splash wizard mode
- added intro step for each configuration type.
-
- * network/tools.pm: corrected ask_connect_now
-
- * my_gtk.pm: added write_on pixmap : a function to write text on pixma,
- using fonts.
-
- * network/ethernet.pm: added intro step for each configuration type.
-
-2001/07/31 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_steps_interactive.pm: after copying the auto install floppy,
- sync in case you shall remove the
- floppy right after the LED switches off yet the kernel decides to not
- flush
- everything
-
- * modules.pm, mdk-stage1/modules_descr.h: have "catc" driver for usbnet
- installs
-
- * bootloader.pm: load msdos and vfat before mkbootdisk (now using syslinux
- so..)
-
-2001/07/31 Pixel <pixel@mandrakesoft.com>
-
- * common.pm (translate): empty string translation is an empty string
-
- * install_gtk.pm (test_mouse): s/my (.*) = 0 if 0/my $1 if 0/
-
- * share/rpmsrate: add cpio
- lower gurpmi (5->4)
-
- * share/gen_locales.sh, share/locales-skeleton.tar.bz2: chineese locale
- support
- better handling of locales
-
- * Makefile.drakxtools (install): s/cp -rf/cp -rfL/ (-L = --dereference,
- aka always follow symbolic links)
-
- * install_steps_gtk.pm (installPackages): make $show_advertising a global
- state (for Vincent Meyer)
-
- * share/Makefile, Makefile: better handling of locales
-
- * install_steps_auto_install.pm: remove bad prototype
-
-2001/07/30 dam's <damien@mandrakesoft.com>
-
- * network/ethernet.pm: added cable internet connection selection
- added internet connection selection in case of multiple configurations
-
- * network/netconnect.pm: corrected ask_connect_now behaviour
- corrected ask_connect_now
- debug
- added internet connection selection in case of multiple configurations
-
- * network/adsl.pm, network/tools.pm, network/modem.pm, network/isdn.pm:
- corrected ask_connect_now
- added internet connection selection in case of multiple configurations
-
-2001/07/30 Pixel <pixel@mandrakesoft.com>
-
- * pkgs.pm (getDeps): ensure "depslist.ordered has not same package as
- hdlist files"
- occurs when the hdlists are in fact not available
-
- * share/locales.tar.bz2.ppc, share/locales.tar.bz2,
- share/locales.tar.bz2.sparc, share/.cvsignore, share/gen_locales.sh,
- share/locales-skeleton.tar.bz2: automatic handling of locales.tar.bz2
- based on installed glibc
-
- * printer.pm, printerdrake.pm: use MDK::Common
- i wonder why it was included and Till used an older version without
- merging?
-
- * resize_fat/main.pm: switch to MDK::Common (i wonder why it was not done
- yet)
-
- * share/rpmsrate: raise rxvt (4->5)
- lower rpmdrake & harddrake (5->4)
- remove rootfiles (unneeded)
-
- * Makefile: use -excludeMDK::Common::Globals for perl_checker
- automatic handling of locales.tar.bz2 based on installed glibc
-
-2001/07/30 tkamppeter
-
- * printer.pm, printerdrake.pm: In beginners mode one chooses only the
- printer, not the driver (default driver)
-
-2001/07/30 dam's <damien@mandrakesoft.com>
-
- * network/netconnect.pm: debug
- added internet connection selection in case of multiple configurations
-
- * network/adsl.pm, network/tools.pm, network/modem.pm, network/isdn.pm:
- added internet connection selection in case of multiple configurations
-
- * network/ethernet.pm: added cable internet connection selection
- added internet connection selection in case of multiple configurations
-
-2001/07/30 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/tools.c, mdk-stage1/stage1.c, mdk-stage1/config-stage1.h:
- have a memory limit also for Rescue (different one)
-
-2001/07/30 Pixel <pixel@mandrakesoft.com>
-
- * printer.pm, printerdrake.pm: use MDK::Common
- i wonder why it was included and Till used an older version without
- merging?
-
- * resize_fat/main.pm: switch to MDK::Common (i wonder why it was not done
- yet)
-
- * share/rpmsrate: raise rxvt (4->5)
- lower rpmdrake & harddrake (5->4)
- remove rootfiles (unneeded)
-
- * pkgs.pm (getDeps): ensure "depslist.ordered has not same package as
- hdlist files"
- occurs when the hdlists are in fact not available
-
- * Makefile: use -excludeMDK::Common::Globals for perl_checker
- automatic handling of locales.tar.bz2 based on installed glibc
-
- * share/locales.tar.bz2.ppc, share/locales.tar.bz2,
- share/locales.tar.bz2.sparc, share/.cvsignore, share/gen_locales.sh,
- share/locales-skeleton.tar.bz2: automatic handling of locales.tar.bz2
- based on installed glibc
-
-2001/07/28 tkamppeter
-
- * printer.pm, printerdrake.pm: Support for PPD files of PostScript
- printers (when CUPS is used)
-
-2001/07/27 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_gtk.pm: fixed undeselectable group when 'Other' sub-tree
- is seen as a package.
-
- * interactive_gtk.pm: allow ask_browse_tree_info_refW to return 0 on
- cancel (previously always 1).
- added a before leaving code to clean added reference (else it seems to
- bahave
- strangely on changing steps).
- fixed wrong reference to added icons to ask_browse_tree_info_refW.
-
- * services.pm: allow cancel on services which do not change anything.
-
- * install_steps_interactive.pm: changed warn dialog to okcancel dialog
- when asking user to insert Boot floppy
- used or Update Modules floppy (die may cause to rerun install else).
-
-2001/07/27 gbeauchesne
-
- * install_steps_gtk.pm:
- - install_steps_gtk.pm (launchX) : create /var/log, if not existent,
- for
- XFree86.log
-
-2001/07/27 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/modules.c: allow to escape from Update Modules if you don't
- want to insert an ext2 floppy
- Disk -> Floppy for Update Modules disk
-
-2001/07/27 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * share/locales.tar.bz2.ppc, keyboard.pm, help.pm, partition_table.pm,
- Xconfigurator.pm: last of sync with PPC beta mods
-
-2001/07/27 tkamppeter
-
- * standalone/printerdrake, printer.pm, printerdrake.pm: Printerdrake
- changed to use Foomatic, driver options, spooler change
-
-2001/07/26 dam's <damien@mandrakesoft.com>
-
- * network/isdn.pm: added firmware loading/configuration
- not loading the module at detection.
-
- * standalone/draknet: MDK::common correction
-
- * modules.pm: added default option id="HiSax" to isdn module
-
-2001/07/26 fcrozat
-
- * share/po/fr.po: Fix spelling of 'molette'
-
-2001/07/26 François Pons <fpons@mandrakesoft.com>
-
- * install2.pm: added blank and updatemodules options to DrakX.
-
- * bootloader.pm: added prioritary kernel entry 'default' as the kernel
- typically copied from a
- modified blank.img file with a kernel (no initrd.img necessary to
- build).
- This kernel takes precedance over any other kernel.
-
- * install_steps_interactive.pm: really fixes Diskette with Floppy.
- fix typo as Diskette to Floppy.
- add support for new modules load as described by GG.
-
- * install_steps.pm: fixed some silly typo and tiny bugs.
- fixed typo as Diskette to Floppy.
- add support for modified blank.img floppy and Update Modules floppy.
- In first case copy kernel to /boot/vmlinuz-default to be taken into
- account by
- bootloader suggestion method.
- In second case, check installed kernel and update any modules listed in
- the
- Update Modules floppy.
-
-2001/07/26 gbeauchesne
-
- * bootloader.pm:
- - Don't set "lba32" on ia64
-
-2001/07/26 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/stage1.c, mdk-stage1/modules.h, mdk-stage1/modules.c: pass
- "--blank" to DrakX when module loading is disabled
- - add "changedisk" feature
- - add "updatemodules" feature
-
- * mdk-stage1/tools.c, mdk-stage1/doc/UPDATEMODULES, mdk-stage1/stage1.h:
- - add "changedisk" feature
- - add "updatemodules" feature
-
- * mdk-stage1/probing.c: silently load usb controllers
-
-2001/07/25 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: fixed new network organization
-
- * standalone/net_monitor: updated. Profile handling.
-
- * network/isdn_consts.pm: updated ISDN detection. Added firmware handling
- and drivers other than hisax
-
-2001/07/25 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: fixed no test (or die test) to void package read on depslist
- (allowed to keep
- package indexing good on multi-arch).
- cleaned code to examine depslist.ordered and packages list.
-
- * rescue/make_rescue_img: fixed to use perl-MDK-Common.
-
- * tools/syncrpms: fixed still missing rpmtools:: before a version_compare
- ...
-
-2001/07/25 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/modules_descr.h: small typo
-
- * mdk-stage1/init.c, mdk-stage1/newt-frontend.c: Use Yahve quoting
-
-2001/07/25 Pixel <pixel@mandrakesoft.com>
-
- * share/po/Makefile (install): build mo's
-
- * commands: move to MDK::Common, bool->to_bool
-
- * common.pm: do not export sync, keep it in common (esp. so that it
- doesn't conflict with my_gtk::sync
- (removeXiBSuffix): add TB (tera)
-
- * share/po/i18n_compssUsers, rescue/make_rescue_img: use MDK::Common
-
- * share/verify_modules.pl: new common syntax
-
- * Makefile:
- - temporary hack to have at least good UTF-8 based locales (otherwise
- rpmlib segfaults)
- - touch share/po/*.po, so that they are not rebuilded (pablo takes
- care of them)
-
- * share/list: add MDK::Common::Globals
-
- * partition_table_sun.pm, install2.pm, partition_table.pm, commands.pm,
- install_steps.pm, partition_table_raw.pm, partition_table_mac.pm: do not
- export sync, keep it in common (esp. so that it doesn't conflict with
- my_gtk::sync
-
-2001/07/25 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * mdk-stage1/modules_descr.h: add decriptions for integrated Apple
- Network/SCSI hardware
-
-2001/07/24 dam's <damien@mandrakesoft.com>
-
- * network/isdn_consts.pm, network/netconnect.pm, network/ethernet.pm:
- corrected speed fax + PCI, updated configuration
-
-2001/07/24 daouda
-
- * bootlook.pm: better runlevel handling -> persistent level choice
-
-2001/07/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
- share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
- share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
- share/po/da.po, share/po/cs.po, share/po/af.po: updated pot file
-
-2001/07/24 Pixel <pixel@mandrakesoft.com>
-
- * commands.pm: move to MDK::Common, bool->to_bool
- fix syntax
- removed/renamed unused/seldom-used functions
- generalize the use of chomp_ as the functional alternative to chomp (and
- works on lists)
-
- * swap.pm: temporary hack to have at least good UTF-8 based locales
- (otherwise rpmlib segfaults)
- move to MDK::Common, bool->to_bool
-
- * unused/scsi.pm, standalone/draknet: generalize the use of chomp_ as the
- functional alternative to chomp (and works on lists)
-
- * globals.pm, perl2fcalls:
- - globals is now MDK::Common::Globals
- - perl2fcalls is now /usr/bin/perl_checker
-
- * install_steps_gtk.pm: move to MDK::Common, bool->to_bool
- move to MDK::Common, bool->to_bool
- removed/renamed unused/seldom-used functions
-
- * common.pm: move to MDK::Common, bool->to_bool
- cleanup (remove unused stuff and dangerous prototypes)
- removed/renamed unused/seldom-used functions
- generalize the use of chomp_ as the functional alternative to chomp (and
- works on lists)
-
- * network/tools.pm, network/adsl.pm, network/netconnect.pm,
- network/ethernet.pm, network/isdn.pm, network/modem.pm:
- - globals is now MDK::Common::Globals
- - perl2fcalls is now /usr/bin/perl_checker
- move to MDK::Common, bool->to_bool
-
- * partition_table_dos.pm, partition_table_empty.pm, my_gtk.pm, modparm.pm,
- standalone/keyboarddrake, install2.pm, raid.pm, crypto.pm,
- partition_table_mac.pm, standalone/mousedrake, devices.pm,
- install_steps.pm, resize_fat/main.pm, help.pm, install_interactive.pm,
- install_steps_stdio.pm, loopback.pm, resize_fat/any.pm,
- standalone/drakboot, pkgs.pm, keyboard.pm, Xconfigurator.pm, fs.pm,
- interactive_gtk.pm, standalone/drakxservices, fsedit.pm,
- network/network.pm, interactive_stdio.pm, diskdrake.pm, modules.pm,
- resize_fat/directory.pm, standalone/net_monitor,
- install_steps_auto_install.pm, partition_table_sun.pm, proxy.pm,
- lang.pm, partition_table_bsd.pm, tinyfirewall.pm, standalone/draksec,
- standalone/drakxconf, resize_fat/info_sector.pm,
- standalone/adduserdrake, sbus_probing/main.pm, printer.pm,
- partition_table_raw.pm, install_steps_interactive.pm, install_gtk.pm,
- Xconfigurator_consts.pm, resize_fat/boot_sector.pm, partition_table.pm,
- standalone/livedrake, standalone/drakgw, mouse.pm, lvm.pm,
- interactive.pm, share/list, interactive_newt.pm, install_steps_newt.pm,
- bootloader.pm: move to MDK::Common, bool->to_bool
-
- * services.pm, printerdrake.pm: move to MDK::Common, bool->to_bool
- removed/renamed unused/seldom-used functions
-
- * standalone/diskdrake, install_any.pm, any.pm, Xconfig.pm, timezone.pm,
- detect_devices.pm, bootlook.pm: move to MDK::Common, bool->to_bool
- generalize the use of chomp_ as the functional alternative to chomp (and
- works on lists)
-
- * Makefile: temporary hack to have at least good UTF-8 based locales
- (otherwise rpmlib segfaults)
- move to MDK::Common, bool->to_bool
- move to MDK::Common, bool->to_bool
-
-2001/07/23 dam's <damien@mandrakesoft.com>
-
- * modules.pm, network/tools.pm, network/isdn_consts.pm,
- network/netconnect.pm, network/isdn.pm: isdn now works with isdn-light.
- Only 64kb/s and still some debuf stuff to be fixed.
-
-2001/07/23 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hr.po, share/po/sk.po: updated Slovak and Croatian files
-
-2001/07/23 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: cleanup
-
- * c/stuff.xs.pm, Makefile.drakxtools, standalone.pm, common.pm, Makefile,
- tools/make_mdkinst_stage2, lang.pm, share/po/Makefile,
- share/po/.cvsignore: do not use the po's directly. Use mo's through
- gettext
-
-2001/07/22 dam's <damien@mandrakesoft.com>
-
- * network/netconnect.pm, network/isdn.pm: updated isdn config, moved
- isdn_data from netconnect_const to isdn_const
- big work on isdn. Not finished
-
- * modules.pm, standalone/net_monitor, network/tools.pm, detect_devices.pm:
- big work on isdn. Not finished
-
- * network/netconnect_consts.pm, network/isdn_consts.pm: updated isdn
- config, moved isdn_data from netconnect_const to isdn_const
-
-2001/07/20 François Pons <fpons@mandrakesoft.com>
-
- * docs/README.pxe: initial release, dhcpd and tftpd only.
-
-2001/07/20 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/el.po: updated Greek file
-
-2001/07/20 Pixel <pixel@mandrakesoft.com>
-
- * share/po/Makefile: externalize the pm 2 pm_.c in fake_c.pl
-
- * lang.pm: fix
- (load_po): enhance readability
-
- * share/po/fake_c.pl: cleanup
- externalize the pm 2 pm_.c in fake_c.pl
-
- * common.pm (translate): basic plural forms handling (not finished)
-
- * help.pm: fix missing ``"''
-
- * bootloader.pm: fix
- (install_lilo): order fat partitions first
-
-2001/07/19 dam's <damien@mandrakesoft.com>
-
- * share/themes.rc, share/logo-mandrake.png, share/themes-mdk.rc,
- share/help.png: new color
-
- * network/netconnect.pm: correct bug. thanx to the little stagiaire.
-
-2001/07/19 François Pons <fpons@mandrakesoft.com>
-
- * mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: updated with new
- graphic logo for 8.1
-
-2001/07/19 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hr.po, share/po/fi.po, share/po/DrakX.pot, share/po/es.po,
- share/po/eo.po, share/po/fr.po, share/po/wa.po, share/po/da.po,
- share/po/de.po, share/po/el.po, share/po/et.po, share/po/hu.po,
- share/po/eu.po: updated Croatian file
-
-2001/07/19 François Pons <fpons@mandrakesoft.com>
-
- * mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: updated with new
- graphic logo for 8.1
-
- * Xconfigurator.pm: fixed problable freeze on pci probe.
-
-2001/07/19 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hr.po, share/po/fi.po, share/po/DrakX.pot, share/po/es.po,
- share/po/eo.po, share/po/fr.po, share/po/wa.po, share/po/da.po,
- share/po/de.po, share/po/el.po, share/po/et.po, share/po/hu.po,
- share/po/eu.po: updated Croatian file
-
-2001/07/19 Pixel <pixel@mandrakesoft.com>
-
- * globals.pm: no strict 'refs' instead of 'vars'
-
- * services.pm: rename ask_install_gtk in ask_install, ask_install is now
- ask_install_simple (obsolete)
-
- * install_steps_auto_install.pm: fix exit install in graphical
- auto_install's
-
-2001/07/19 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_auto_install.pm, install_steps_newt.pm, install2.pm: based
- on Michael Brown <mbrown@fensystems.co.uk> patch:
- - enables graphical steps in auto_installs for more than gtk
- - various cleanup
-
- * globals.pm: no strict 'refs' instead of 'vars'
-
- * services.pm: rename ask_install_gtk in ask_install, ask_install is now
- ask_install_simple (obsolete)
-
-2001/07/18 mbadaire
-
- * modules.pm, install_any.pm, bootloader.pm: IA64 adaptation
-
-2001/07/18 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * modules.pm, install_steps.pm, install_steps_interactive.pm,
- tools/serial_probe/serial.c, detect_devices.pm, partition_table_mac.pm,
- diskdrake.pm: roll back some changes from PPC beta - OldWorld vs
- NewWorld bootloader
- modem detection on ttyS0, new sound module in 2.4.4
-
-2001/07/17 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm: disabled Frame buffer for all S3 cards (hangs with XF4
- and S3 ViRGE on reboot
- with Aurora).
-
- * Xconfigurator.pm: cleaned and added S3 Inc in the list to disable test
- for these card.
-
-2001/07/16 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/rpmsrate: removed references to XFree86-ISO8859-{2,9} packages (no
- more used)
-
- * keyboard.pm: small keyboard changes
-
-2001/07/13 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * share/po/fr.po: update
-
-2001/07/12 François Pons <fpons@mandrakesoft.com>
-
- * fs.pm: fixed wrong examination of fsck return code (exit code 1 says
- fsck succeeded in
- fixing partition and now is ok).
-
- * run_program.pm: changed exit code of failed exec in rooted to 128
- instead of 1 (may clash with
- exit code of fsck else).
-
- * any.pm: fixed bug for writing in /etc/sysconfig/desktop file.
-
-2001/07/12 François Pons <fpons@mandrakesoft.com>
-
- * interactive.pm: added ask_browse_tree_info and ask_browse_tree_info_refW
- (default).
-
- * services.pm: reworked to use new service layout for install.
-
- * install_steps_gtk.pm: use common code for tree with info dialog
- (individual package selection).
-
- * fs.pm: fixed wrong examination of fsck return code (exit code 1 says
- fsck succeeded in
- fixing partition and now is ok).
-
- * interactive_gtk.pm: merging common code for individual package selection
- and service to create
- ask_browse_tree_info_refW, added featrures for group icon always
- up-to-date
- (take some memory but not too much, not used if flat model).
-
- * run_program.pm: changed exit code of failed exec in rooted to 128
- instead of 1 (may clash with
- exit code of fsck else).
-
- * any.pm: fixed bug for writing in /etc/sysconfig/desktop file.
-
-2001/07/10 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * mdk-stage1/init.c, mdk-stage1/Makefile.common: minor mods for PPC build,
- define TIOCSCTTY, Makefile mods
-
-2001/07/09 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: added multiple tries if a transaction of only one package
- fails.
-
- * install_any.pm: added LDAP support for authentication.
-
- * install_steps_interactive.pm: added LDAP support for password
- authentication, updated root password window look.
-
- * bootloader.pm: fixed compilation error.
- removed compilation error, the resolution is not quite good and may be
- reworked :-)
-
- * help.pm: updated root password help.
-
-2001/07/09 mbadaire
-
- * bootloader.pm: modify lilo.conf to elilo.conf if arch ia64
-
- * common.pm: Add IA64 support
-
-2001/07/08 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm (suggest): replace "is ia64" with "is not ia64" so that
- boot partition is
- set correctly again
-
-2001/07/08 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm (suggest): replace "is ia64" with "is not ia64" so that
- boot partition is
- set correctly again
-
-2001/07/06 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: fixed selected_leaves. change algorithm as previous one can
- still causes dead
- lock and may not reproduce correct list. take care of choice that need
- to be
- examined before else another package may be chosen if choice is not
- satisfied
- when selecting packages.
-
- * install_any.pm: change all 8 space into a tabulation, this is simple and
- may change visual
- aspect but it gives correct output and filesize by 40%.
-
-2001/07/06 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: fixed selected_leaves. change algorithm as previous one can
- still causes dead
- lock and may not reproduce correct list. take care of choice that need
- to be
- examined before else another package may be chosen if choice is not
- satisfied
- when selecting packages.
-
- * install_any.pm: change all 8 space into a tabulation, this is simple and
- may change visual
- aspect but it gives correct output and filesize by 40%.
-
-2001/07/06 Pixel <pixel@mandrakesoft.com>
-
- * tools/ntp_servers.pl: some workarounds
-
-2001/07/06 Pixel <pixel@mandrakesoft.com>
-
- * tools/ntp_servers.pl: some workarounds
-
-2001/07/05 François Pons <fpons@mandrakesoft.com>
-
- * keyboard.pm: added DISABLE_WINDOWS_KEY in /etc/sysconfig/keyboard if a
- laptop is detected.
-
-2001/07/05 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/modules_descr.h: add usb net descriptions
-
-2001/07/05 Pixel <pixel@mandrakesoft.com>
-
- * fsedit.pm (file2part): created
-
- * any.pm: ia64 bootloader configuration adaptations
-
- * bootloader.pm: typo fix
- ia64 bootloader configuration adaptations
-
-2001/07/04 dam's <damien@mandrakesoft.com>
-
- * globals.pm: added error handling
-
- * network/netconnect.pm, network/ethernet.pm: modularized. It compiles,
- runs, and works for some stuff.
- modularization continuated
- updated CVS:
- ----------------------------------------------------------------------
- uses the fantastic global module.
- corrected
-
- * standalone/draknet: corrected
-
- * network/tools.pm, network/adsl.pm: modularized. It compiles, runs, and
- works for some stuff.
- updated CVS:
- ----------------------------------------------------------------------
- uses the fantastic global module.
- corrected
-
- * network/network.pm: modularized. It compiles, runs, and works for some
- stuff.
- modularization continuated
-
- * network/isdn.pm, network/modem.pm: modularized. It compiles, runs, and
- works for some stuff.
- updated CVS:
- ----------------------------------------------------------------------
- uses the fantastic global module.
-
- * docs/net_object_class.fig: updated doc
-
-2001/07/04 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: added missing last Card read from Cards+ file.
- allow S3 card to have VideoRam uncommented, fix 86c368 video driver that
- seems
- needing VideoRam too.
- fixed need of video ram if 86c368 and S3 ViRGE.
-
- * install_any.pm: another too wide string truncated to 80 chars.
- make auto_inst.cfg file no longer than 80 chars wide.
-
- * install_steps_interactive.pm: added back timezone settings (thanks
- FredC).
-
-2001/07/04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/adsl.c: nonsense to exit if interface is not "eth.*"
-
- * mdk-stage1/newt-frontend.c: very nice things happen when you hardcode
- arrays to a too small value
-
- * docs/HACKING: update -d in order to get all the directories...
-
-2001/07/04 mbadaire
-
- * tools/ia64/elilo.efi, tools/specific_arch, share/list.ia64,
- tools/ia64/e2fsck.shared: Ia64 Adaptation
-
- * install_gtk.pm, share/list.i386, common.pm, share/list.ppc, share/list,
- share/list.alpha, install_steps_gtk.pm, share/list.sparc: Ia64
- adaptation
-
-2001/07/04 Pixel <pixel@mandrakesoft.com>
-
- * pkgs.pm (selected_leaves): fix dead-loop
- (selected_leaves): make it work with loops (eg: mandrake_desk loops with
- control-center resulting on none of them being a leaf)
-
- * perl2fcalls: check exclude_uses before reporting bad use of "use"
- exclude module globals from use's to look at
-
- * globals.pm (import): yet another fix
- fix a pb when init is called before another import
- typo correction
- enhanced: shared values are grouped together based on a name
- module to share constant values between modules
-
- * fsedit.pm: add /boot/efi in suggestions for ia64
-
- * install_interactive.pm, install_steps.pm: fix typo
- verify a /boot/efi partition exists
-
- * Makefile, install_any.pm, share/list.ppc, share/list.alpha, share/list,
- share/list.sparc: remove busybox as default shell. Only use it as the
- interactive shell on tty2
-
-2001/07/03 dam's <damien@mandrakesoft.com>
-
- * network/adsl.pm, network/netconnect_consts.pm, network/tools.pm,
- network/modem.pm, network/netconnect.pm, network/isdn.pm: network
- subsystem now compiles. Enjoy
-
- * docs/net_object_class.fig: documentation about net modules structure
-
-2001/07/03 François Pons <fpons@mandrakesoft.com>
-
- * network/netconnect.pm: fix another dam's sucks
- fix dam's sucks
-
- * network/netconnect_consts.pm, Makefile.config: fix dam's sucks
-
- * standalone/XFdrake: expert is allowed to choose frame buffer.
-
- * install_steps_interactive.pm: added loadSavePackagesOnFloppy to manage
- package selection file used by
- auto_install too from packages tree directly on floppies.
-
- * share/floppy.png: updated size to 16x22 to be more aligned.
- for loading/saving packages selection.
-
- * install_any.pm: modified g_default_packages to be used from package tree
- save on floppy.
-
- * install_steps_gtk.pm: added Load/Save on floppy.
- added improve choice of package, well not very usefull but asked by
- higher
- people :-)
-
-2001/07/03 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/rp-pppoe/gui/html/props-basic.png,
- mdk-stage1/rp-pppoe/gui/html/props-options.png,
- mdk-stage1/rp-pppoe/gui/html/props-advanced.png,
- mdk-stage1/rp-pppoe/gui/html/mainwin-busy.png,
- mdk-stage1/rp-pppoe/gui/html/mainwin-nonroot.png,
- mdk-stage1/rp-pppoe/gui/html/mainwin.png,
- mdk-stage1/rp-pppoe/gui/html/props-nic.png: plop
-
- * modules.pm, mdk-stage1/probing.h, mdk-stage1/.cvsignore,
- mdk-stage1/usb-resource/Makefile,
- mdk-stage1/usb-resource/update-usb-ids.pl, mdk-stage1/Makefile,
- mdk-stage1/usb-resource/.cvsignore, mdk-stage1/probing.c: add support
- for install from USB Network Adapters
-
-2001/07/03 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sp.po, share/po/fi.po, share/po/DrakX.pot,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/es.po,
- share/po/fr.po, share/po/sr.po, share/po/de.po, share/po/el.po,
- share/po/et.po, share/po/sk.po, share/po/tr.po, share/po/eu.po,
- share/po/ru.po, share/po/sl.po, share/po/vi.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/wa.po, share/po/da.po,
- share/po/sv.po, share/po/zh_TW.Big5.po: updated Danish file
-
-2001/07/03 Pixel <pixel@mandrakesoft.com>
-
- * timezone.pm (configureTimezone): propose a list of NTP servers
- (ntp_server): fix
- add ntp handling
-
- * fs.pm (mount): fix fsck.ext2'ing
- (mount): add fsck.ext2 before ext2-mounting
-
- * share/themes/DarkMarble-gloom2.png: re-adding with -kb
- re-adding with -kb
-
- * pixmaps/user.png: re-adding with -kb
- removing for re-adding with -kb
- re-adding with -kb
- removing for re-adding with -kb
-
- * share/themes/blueHeart-button4.png, share/reload.png,
- share/themes/focus.png, share/themes/DarkMarble-button3_in.png,
- share/logo-mandrake.png, share/themes/marble3d-check1.png,
- share/themes/blueHeart-button_def.png, share/rpm-semiselected.png,
- share/logo-mandrake-Desktop.png, share/themes/marble3d-check2.png,
- share/rpm-installed.png, share/themes/marble3d-button1.png,
- share/logo-mandrake_sav.png, share/themes/mdk-button1.png,
- share/themes/DarkMarble-check_off.png, pixmaps/harddrive.png,
- share/themes/marble3d-button_def.png, share/themes/marble3d-button2.png,
- share/help_sav.png, share/themes/DarkMarble-button3_out_prelight.png,
- pixmaps/services.png, pixmaps/bootdisk.png, share/rpm-selected.png,
- share/themes/marble3d-button4.png, pixmaps/bootloader.png,
- share/themes/DarkMarble-button3_out.png, share/logo-mandrake_trans.png,
- share/themes/mdk-button4.png, pixmaps/printer.png, share/rpm-base.png,
- share/logo-mandrake2.png, share/themes/blueHeart-brown_bg1.png,
- share/themes/marble3d-bg1.png, pixmaps/security.png, share/ftin.png,
- pixmaps/rootpasswd.png, share/help.png,
- share/themes/DarkMarble-check_on.png,
- share/themes/blueHeart-button1.png, pixmaps/keyboard.png,
- pixmaps/default.png, share/themes/blueHeart-button2.png, pixmaps/X.png,
- share/themes/DarkMarble-button3_in_prelight.png, share/ftout.png,
- pixmaps/mouse.png, share/rpm-unselected.png: re-adding with -kb
- removing for re-adding with -kb
-
- * install_any.pm, install_steps.pm: add ntp handling
-
- * tools/addchangelog.pl: reverted the last erroneous modif
- re-adding with -kb
-
- * tools/ntp_servers.pl: get a formatted list of NTP servers from an
- authorised source
-
- * install_steps_interactive.pm (doPartitionDisks): better error message
- when no root partition is found
- (configureTimezone): propose a list of NTP servers
- add ntp handling
-
- * docs/comparisons: re-adding with -kb
-
-2001/07/02 dam's <damien@mandrakesoft.com>
-
- * install_steps_interactive.pm: new network sources reorganizationCVS:
- ----------------------------------------------------------------------
-
- * share/list: added modinfo
-
- * modparm.pm: syntax correction
-
- * network/netconnect_consts.pm, network.pm, standalone/draknet,
- network/tools.pm, netconnect.pm, network/netconnect.pm,
- network/ethernet.pm, network/isdn.pm, network/adsl.pm,
- network/network.pm, network/modem.pm, netconnect_consts.pm: new network
- sources reorganization
-
-2001/07/02 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
- share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
- share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
- share/po/da.po, share/po/cs.po, share/po/af.po: update po files
-
-2001/07/02 Pixel <pixel@mandrakesoft.com>
-
- * crypto.pm: remove buggy prototype
-
- * share/po/Makefile: yet even better i18n strings extraction
- - fix to add some missing messages
- - add more verif
-
- * c/stuff.xs.pm: use size_t instead of int where it should
-
- * Xconfigurator.pm (write_XF86Config): fix fpons sucks (multi wacoms in
- XF3)
-
- * share/po/b_dump_strings.pm: high level i18n messages getting. only
- partial stuff. Used only for verification
-
- * perl2fcalls: add handling of using pkg::func when func is provided by
- pkg2 use'd by pkg
-
-2001/06/25 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po: updated Indonesian file
-
-2001/06/25 Pixel <pixel@mandrakesoft.com>
-
- * c/stuff.xs.pm: switch from llseek to lseek64
-
-2001/06/23 siegel
-
- * share/po/de.po: new german version
-
-2001/06/22 François Pons <fpons@mandrakesoft.com>
-
- * bootloader.pm: take care of enterprise kernel if installed.
-
- * install_any.pm: automagically install kernel-enterprise if memory is
- greater than 800MB.
-
-2001/06/22 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: unfuzzyise
-
-2001/06/22 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, tinyfirewall.pm,
- share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
- share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
- share/po/is.po, share/po/hu.po, help.pm, share/po/zh_TW.Big5.po,
- share/po/it.po, share/po/id.po, install_steps_interactive.pm,
- share/po/pl.po, share/po/no.po, share/po/fi.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- install_steps_gtk.pm, share/po/sk.po, share/po/lt.po, share/po/ar.po,
- share/po/sl.po, bootlook.pm, share/po/vi.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
- install_steps_newt.pm, share/po/af.po: s/Linux-Mandrake/Mandrake Linux/
-
-2001/06/21 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: added minimal support for rpmtools >= 3.0
-
-2001/06/21 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_any.pm: generate_automatic_stage1_params: listize
- use busybox for the shell of stage2
-
- * mdk-stage1/Makefile: defaults to not spawn shell
-
- * mdk-stage1/hack: kloug
-
- * Makefile, tools/i386/busybox, share/list.ppc, share/list,
- share/list.alpha, share/aliases: use busybox for the shell of stage2
-
-2001/06/21 Pixel <pixel@mandrakesoft.com>
-
- * docs/README, rescue/tree/etc/issue: s/Linux-Mandrake/Mandrake Linux/
- s/linux-mandrake/mandrakesoft/
- (hand made, no i18n messages done)
- s/Linux-Mandrake/Mandrake Linux/
- s/linux-mandrake/mandrakesoft/
- (hand made, no i18n messages done)
-
- * genmodparm: remove duplicate, look in gi/tools
-
- * standalone/printerdrake, install2, docs/HACKING, tools/genmodparm,
- mdk-stage1/config-stage1.h, ChangeLog, resize_fat/README,
- standalone/diskdrake, standalone/XFdrake, rescue/tree/etc/rc.sysinit,
- mdk-stage1/init.c, tools/mailchangelog.pl, detect_devices.pm,
- mdk-stage1/doc/README, resize_fat/main.pm, tools/cvslog2changelog.pl,
- bootloader.pm: s/Linux-Mandrake/Mandrake Linux/
- s/linux-mandrake/mandrakesoft/
- (hand made, no i18n messages done)
-
- * mdk-stage1/make_boot_img: remove GG sux
- s/Linux-Mandrake/Mandrake Linux/
- s/linux-mandrake/mandrakesoft/
- (hand made, no i18n messages done)
-
-2001/06/11 dam's <damien@mandrakesoft.com>
-
- * proxy.pm: updated
- typoCVS:
- ----------------------------------------------------------------------
- proxy
-
- * my_gtk.pm: added gtkset_layout
-
- * standalone/drakproxy: corrected CVS:
- ----------------------------------------------------------------------
- updated
- perlised
-
- * interactive.pm: no icon if wizard
-
-2001/06/11 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator_consts.pm: added some bigger memory range.
-
- * Xconfigurator.pm: fix missing newline on /etc/X11/glx.conf when
- modifying mga_dma = 0
- really fix the Matrox G200 PCI card acceleration using XF3, by disabling
- DMA on
- /etc/X11/glx.conf
- added magic probe of resolution found, if the probed resolution seems
- strange
- according to memory available, it try to let the user select the right
- resolution and depth.
-
- * install_steps.pm, printer.pm: applied patches given for printer
- configuration bug reported by David Eastcott.
-
-2001/06/11 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * modules.pm: have PPP drivers in net_raw rather than in net
- add PPP modules for 'net' drivers
-
- * rescue/tree/etc/rc.sysinit: minor changes
-
- * rescue/tree/etc/inittab, rescue/tree/sbin/fakeshutdown: umount as much
- as possible before rebooting the rescue
-
- * mdk-stage1/ppp/pppd/magic.c, mdk-stage1/ppp/pppd/md5.c,
- mdk-stage1/ppp/pppd/utils.c, mdk-stage1/ppp/pppd/pathnames.h,
- mdk-stage1/ppp/pppd/options.c, mdk-stage1/ppp/pppd/main.c,
- mdk-stage1/ppp/pppd/multilink.c, mdk-stage1/ppp/pppd/auth.c: have adsl
- pppoe installation available
- Initial revision
- import initial ppp sources
-
- * mdk-stage1/dhcp.c: change location of error message when no reply
- received
-
- * mdk-stage1/rp-pppoe/man/pppoe-relay.8,
- mdk-stage1/rp-pppoe/configs/firewall-masq,
- mdk-stage1/rp-pppoe/gui/html/props-nic.png,
- mdk-stage1/rp-pppoe/src/pppoe-sniff.c,
- mdk-stage1/rp-pppoe/configs/firewall-standalone,
- mdk-stage1/rp-pppoe/gui/html/tkpppoe.html,
- mdk-stage1/rp-pppoe/doc/KERNEL-MODE-PPPOE, mdk-stage1/rp-pppoe/go-gui,
- mdk-stage1/rp-pppoe/gui/tkpppoe.in, mdk-stage1/rp-pppoe/man/adsl-stop.8,
- mdk-stage1/rp-pppoe/scripts/adsl-start.in,
- mdk-stage1/rp-pppoe/man/pppoe-sniff.8, mdk-stage1/rp-pppoe/go,
- mdk-stage1/rp-pppoe/man/pppoe.8,
- mdk-stage1/rp-pppoe/gui/html/mainwin-nonroot.png,
- mdk-stage1/rp-pppoe/gui/tkpppoe.1, mdk-stage1/rp-pppoe/src/Makefile.in,
- mdk-stage1/rp-pppoe/src/pppoe.c, mdk-stage1/rp-pppoe/src/pppoe-server.c,
- mdk-stage1/rp-pppoe/src/pppoe.h, mdk-stage1/rp-pppoe/gui/wrapper.c,
- mdk-stage1/rp-pppoe/man/pppoe-server.8,
- mdk-stage1/rp-pppoe/configs/pppoe.conf,
- mdk-stage1/rp-pppoe/gui/html/props-advanced.png,
- mdk-stage1/rp-pppoe/src/common.c, mdk-stage1/rp-pppoe/src/install-sh,
- mdk-stage1/rp-pppoe/doc/LICENSE, mdk-stage1/rp-pppoe/src/configure,
- mdk-stage1/rp-pppoe/src/config.h.in, mdk-stage1/rp-pppoe/src/relay.c,
- mdk-stage1/rp-pppoe/src/discovery.c, mdk-stage1/rp-pppoe/src/if.c,
- mdk-stage1/rp-pppoe/doc/CHANGES, mdk-stage1/rp-pppoe/src/relay.h,
- mdk-stage1/rp-pppoe/scripts/adsl-init.in,
- mdk-stage1/rp-pppoe/rp-pppoe.spec,
- mdk-stage1/rp-pppoe/scripts/adsl-connect.in,
- mdk-stage1/rp-pppoe/man/pppoe.conf.5,
- mdk-stage1/rp-pppoe/scripts/adsl-init-turbolinux.in,
- mdk-stage1/rp-pppoe/man/adsl-start.8,
- mdk-stage1/rp-pppoe/gui/html/mainwin.png,
- mdk-stage1/rp-pppoe/rp-pppoe-gui.spec,
- mdk-stage1/rp-pppoe/gui/html/props-basic.png,
- mdk-stage1/rp-pppoe/man/adsl-status.8,
- mdk-stage1/rp-pppoe/configs/pppoe-server-options,
- mdk-stage1/rp-pppoe/man/adsl-connect.8,
- mdk-stage1/rp-pppoe/scripts/adsl-setup.in,
- mdk-stage1/rp-pppoe/scripts/adsl-stop.in,
- mdk-stage1/rp-pppoe/gui/Makefile.in, mdk-stage1/rp-pppoe/src/debug.c,
- mdk-stage1/rp-pppoe/doc/PROBLEMS, mdk-stage1/rp-pppoe/src/ppp.c,
- mdk-stage1/rp-pppoe/README,
- mdk-stage1/rp-pppoe/gui/html/mainwin-busy.png,
- mdk-stage1/rp-pppoe/gui/pppoe-wrapper.1,
- mdk-stage1/rp-pppoe/scripts/adsl-status,
- mdk-stage1/rp-pppoe/man/adsl-setup.8,
- mdk-stage1/rp-pppoe/gui/html/props-options.png,
- mdk-stage1/rp-pppoe/src/configure.in,
- mdk-stage1/rp-pppoe/configs/pap-secrets, mdk-stage1/rp-pppoe/src/md5.c,
- mdk-stage1/rp-pppoe/scripts/adsl-init-suse.in,
- mdk-stage1/rp-pppoe/src/md5.h, mdk-stage1/rp-pppoe/src/plugin.c,
- mdk-stage1/rp-pppoe/doc/HOW-TO-CONNECT: Initial revision
- import initial sources from rp-pppoe v3.0
-
- * mdk-stage1/Makefile: change handling of .depend in Makefile
- have adsl pppoe installation available
-
- * mdk-stage1/newt-frontend.c: axalon sucks, we can have NEWT_FLAG_PASSWORD
- that will show us '**' for passwords
-
- * mdk-stage1/ppp/pppd/.cvsignore, mdk-stage1/ppp/.cvsignore,
- mdk-stage1/ppp/pppd/Makefile, mdk-stage1/rp-pppoe/src/.cvsignore,
- mdk-stage1/rp-pppoe/src/config.h, mdk-stage1/adsl.c,
- mdk-stage1/rp-pppoe/.cvsignore, mdk-stage1/rp-pppoe/src/Makefile,
- mdk-stage1/make_boot_img: have adsl pppoe installation available
-
- * detect_devices.pm, install_any.pm, raid.pm, fsedit.pm: include patch to
- autodetect raid arrays (still needs a kernel that implements the
- ioctl..)
-
- * tools/Makefile: perl 5.6.1 now
-
- * mdk-stage1/stage1.c, mdk-stage1/tools.c: do not set root=/dev/ram3 from
- my code anymore, expect the bootloader to set the parameter correctly
-
- * mdk-stage1/ppp/scripts/ip-up.local.add, mdk-stage1/ppp/scripts/README,
- mdk-stage1/ppp/solaris/Makefile.sol2,
- mdk-stage1/ppp/svr4/ppp_comp.Master, mdk-stage1/ppp/sample/ip-down,
- mdk-stage1/ppp/solaris/Makefile.sol2-64,
- mdk-stage1/ppp/include/net/ppp_defs.h,
- mdk-stage1/ppp/pppstats/Makefile.sunos4,
- mdk-stage1/ppp/chat/Makefile.sol2, mdk-stage1/ppp/pppd/sys-linux.c,
- mdk-stage1/ppp/pppd/ipxcp.c, mdk-stage1/ppp/pppd/ipxcp.h,
- mdk-stage1/ppp/pppdump/deflate.c, mdk-stage1/ppp/pppd/Makefile.linux,
- mdk-stage1/ppp/pppd/upap.c, mdk-stage1/ppp/modules/deflate.c,
- mdk-stage1/ppp/README.sunos4, mdk-stage1/ppp/pppdump/Makefile.sol2,
- mdk-stage1/ppp/configure, mdk-stage1/ppp/pppd/upap.h,
- mdk-stage1/ppp/svr4/ppp_mod.c, mdk-stage1/ppp/pppstats/Makefile.sol2,
- mdk-stage1/ppp/pppd/ipv6cp.c, mdk-stage1/ppp/scripts/options-ssh-loc,
- mdk-stage1/ppp/pppd/plugins/Makefile.sol2, mdk-stage1/ppp/pppd/ipv6cp.h,
- mdk-stage1/ppp/contrib/pppgetpass/pppgetpass.vt.c,
- mdk-stage1/ppp/solaris/ppp_ahdlc_mod.c,
- mdk-stage1/ppp/sunos4/if_ppp_vdcmd.c,
- mdk-stage1/ppp/solaris/ppp_ahdlc.c, mdk-stage1/ppp/pppd/magic.h,
- mdk-stage1/ppp/svr4/ppp_comp_mod.c,
- mdk-stage1/ppp/include/linux/if_ppp.h, mdk-stage1/ppp/pppd/eui64.c,
- mdk-stage1/ppp/scripts/secure-card, mdk-stage1/ppp/scripts/redialer,
- mdk-stage1/ppp/modules/bsd-comp.c, mdk-stage1/ppp/pppd/eui64.h,
- mdk-stage1/ppp/sunos4/ppp_vdcmd.c, mdk-stage1/ppp/modules/ppp_mod.h,
- mdk-stage1/ppp/pppd/md5.h, mdk-stage1/ppp/pppd/chap_ms.c,
- mdk-stage1/ppp/pppd/chap_ms.h, mdk-stage1/ppp/etc.ppp/pap-secrets,
- mdk-stage1/ppp/solaris/Makefile.top, mdk-stage1/ppp/chat/chat.8,
- mdk-stage1/ppp/svr4/Makefile.sol2-64, mdk-stage1/ppp/svr4/Makefile.sol2,
- mdk-stage1/ppp/include/net/ppp-comp.h, mdk-stage1/ppp/sunos4/Makefile,
- mdk-stage1/ppp/PLUGINS, mdk-stage1/ppp/pppdump/Makefile.sunos4,
- mdk-stage1/ppp/sample/ip-up, mdk-stage1/ppp/sample/options.ttyXX,
- mdk-stage1/ppp/scripts/options-rsh-rem, mdk-stage1/ppp/pppd/fsm.c,
- mdk-stage1/ppp/chat/chat.c, mdk-stage1/ppp/scripts/ppp-on-rsh,
- mdk-stage1/ppp/pppd/fsm.h, mdk-stage1/ppp/pppd/tdb.c,
- mdk-stage1/ppp/pppd/patchlevel.h, mdk-stage1/ppp/pppstats/pppstats.8,
- mdk-stage1/ppp/svr4/ppp.conf, mdk-stage1/ppp/pppd/tdb.h,
- mdk-stage1/ppp/pppd/demand.c, mdk-stage1/ppp/include/net/if_ppp.h,
- mdk-stage1/ppp/solaris/Makedefs, mdk-stage1/ppp/modules/if_ppp.c,
- mdk-stage1/ppp/include/net/slcompress.h, mdk-stage1/ppp/sunos4/Makedefs,
- mdk-stage1/ppp/pppd/sys-linux.c.wtmp,
- mdk-stage1/ppp/include/linux/if_pppvar.h,
- mdk-stage1/ppp/solaris/ppp_comp.c, mdk-stage1/ppp/chat/Makefile.linux,
- mdk-stage1/ppp/README.cbcp, mdk-stage1/ppp/pppd/ppp.pam,
- mdk-stage1/ppp/solaris/ppp_comp_mod.c, mdk-stage1/ppp/Changes-2.3,
- mdk-stage1/ppp/sample/options, mdk-stage1/ppp/pppstats/pppstats.c,
- mdk-stage1/ppp/sunos4/ppp_comp_vdcmd.c,
- mdk-stage1/ppp/pppdump/Makefile.linux.pppdump-Makefile,
- mdk-stage1/ppp/README.MSCHAP80, mdk-stage1/ppp/pppdump/pppdump.8,
- mdk-stage1/ppp/sunos4/Makefile.top, mdk-stage1/ppp/include/net/pppio.h,
- mdk-stage1/ppp/pppd/ipcp.c, mdk-stage1/ppp/FAQ,
- mdk-stage1/ppp/pppd/ipcp.h, mdk-stage1/ppp/pppd/sys-sunos4.c,
- mdk-stage1/ppp/modules/ppp_comp.c, mdk-stage1/ppp/README.sol2,
- mdk-stage1/ppp/modules/vjcompress.c, mdk-stage1/ppp/scripts/ppp-on-ssh,
- mdk-stage1/ppp/svr4/ppp_ahdlc_mod.c, mdk-stage1/ppp/sunos4/ppp.INSTALL,
- mdk-stage1/ppp/modules/ppp.c, mdk-stage1/ppp/pppdump/pppdump.c,
- mdk-stage1/ppp/pppd/plugins/passprompt.c,
- mdk-stage1/ppp/pppdump/Makefile.linux, mdk-stage1/ppp/pppd/lcp.c,
- mdk-stage1/ppp/pppd/lcp.h, mdk-stage1/ppp/scripts/chat-callback,
- mdk-stage1/ppp/chat/Makefile.sunos4, mdk-stage1/ppp/SETUP,
- mdk-stage1/ppp/pppd/Makefile.sol2,
- mdk-stage1/ppp/pppd/plugins/minconn.c,
- mdk-stage1/ppp/etc.ppp/options.options,
- mdk-stage1/ppp/pppdump/Makefile.linux.makeopt,
- mdk-stage1/ppp/svr4/ppp.Node, mdk-stage1/ppp/scripts/options-ssh-rem,
- mdk-stage1/ppp/solaris/ppp.c, mdk-stage1/ppp/svr4/ppp.System,
- mdk-stage1/ppp/etc.ppp/chap-secrets,
- mdk-stage1/ppp/pppstats/Makefile.linux,
- mdk-stage1/ppp/sample/pap-secrets,
- mdk-stage1/ppp/pppd/Makefile.linux.make, mdk-stage1/ppp/pppd/pppd.8,
- mdk-stage1/ppp/contrib/pppgetpass/pppgetpass.8,
- mdk-stage1/ppp/pppd/Makefile.sunos4, mdk-stage1/ppp/scripts/ppp-on,
- mdk-stage1/ppp/include/linux/ppp_defs.h,
- mdk-stage1/ppp/scripts/chatchat/chatchat.c,
- mdk-stage1/ppp/scripts/chatchat/README,
- mdk-stage1/ppp/modules/ppp_ahdlc.c, mdk-stage1/ppp/svr4/ppp.Master,
- mdk-stage1/ppp/svr4/Makedefs,
- mdk-stage1/ppp/contrib/pppgetpass/pppgetpass.gtk.c,
- mdk-stage1/ppp/svr4/ppp_ahdl.System, mdk-stage1/ppp/pppd/pppd.h,
- mdk-stage1/ppp/scripts/ppp-off, mdk-stage1/ppp/solaris/Makedefs.sol2,
- mdk-stage1/ppp/common/zlib.c, mdk-stage1/ppp/scripts/options-rsh-loc,
- mdk-stage1/ppp/common/zlib.h, mdk-stage1/ppp/solaris/ppp_mod.c,
- mdk-stage1/ppp/contrib/pppgetpass/Makefile.linux,
- mdk-stage1/ppp/solaris/ppp_mod.h, mdk-stage1/ppp/scripts/ppp-on-dialer,
- mdk-stage1/ppp/pppd/sys-solaris.c, mdk-stage1/ppp/README.linux,
- mdk-stage1/ppp/sample/auth-down, mdk-stage1/ppp/svr4/ppp_ahdl.Master,
- mdk-stage1/ppp/pppdump/zlib.c, mdk-stage1/ppp/include/pcap-int.h,
- mdk-stage1/ppp/pppdump/zlib.h, mdk-stage1/ppp/pppd/ccp.c,
- mdk-stage1/ppp/chat/Makefile.linux.makeopt, mdk-stage1/ppp/pppd/ccp.h,
- mdk-stage1/ppp/pppd/Makefile.linux.makeopt,
- mdk-stage1/ppp/include/net/vjcompress.h, mdk-stage1/ppp/pppd/cbcp.c,
- mdk-stage1/ppp/contrib/pppgetpass/pppgetpass.sh,
- mdk-stage1/ppp/pppd/cbcp.h, mdk-stage1/ppp/scripts/ip-down.local.add,
- mdk-stage1/ppp/pppd/tty.c, mdk-stage1/ppp/include/linux/ppp-comp.h,
- mdk-stage1/ppp/sample/auth-up, mdk-stage1/ppp/sunos4/ppp_ahdlc_vdcmd.c,
- mdk-stage1/ppp/pppd/pppd.h.wtmp, mdk-stage1/ppp/solaris/ppp.conf,
- mdk-stage1/ppp/pppd/chap.c, mdk-stage1/ppp/pppd/chap.h,
- mdk-stage1/ppp/scripts/callback, mdk-stage1/ppp/linux/Makefile.top,
- mdk-stage1/ppp/svr4/ppp_comp.System, mdk-stage1/ppp/pppd/md4.c,
- mdk-stage1/ppp/svr4/Makedefs.sol2, mdk-stage1/ppp/pppdump/bsd-comp.c,
- mdk-stage1/ppp/README, mdk-stage1/ppp/pppd/md4.h,
- mdk-stage1/ppp/etc.ppp/options, mdk-stage1/ppp/svr4/Makefile.top,
- mdk-stage1/ppp/svr4/Makefile.svr4,
- mdk-stage1/ppp/pppd/plugins/Makefile.linux,
- mdk-stage1/ppp/pppdump/ppp-comp.h: Initial revision
- import initial ppp sources
-
-2001/06/11 odin
-
- * standalone/drakproxy: first import of drakproxy
-
-2001/06/11 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm (main): don't check /usr/bin/urpmi, better check
- /usr/sbin/urpmi.update
-
- * commands.pm (grep_): add a missing semi-colon
-
- * share/compssUsers: remove NIS which is handled by DrakX (titi sucks)
-
-2001/06/10 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * rescue/guessmounts, rescue/make_rescue_img, rescue/tree/etc/rc.sysinit,
- rescue/Makefile:
- - add 'guessmounts' that mimics RH's detecting of partitions when
- rescue starts
-
-2001/06/10 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/az.po: updated Azeri file
-
- * share/po/ru.po, share/po/DrakX.pot: updated Russian file
-
-2001/06/10 Pixel <pixel@mandrakesoft.com>
-
- * rescue/guessmounts: pixelization (tested!)
-
- * install_any.pm (g_auto_install): more comments in auto_inst.cfg file
-
-2001/06/09 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * rescue/list.i386: rescuept is in /sbin now
-
- * share/list: rescuept in /sbin now
-
-2001/06/05 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/network.c: don't wait on upping lo interface
-
- * mdk-stage1/modules.c: fix minor bug detecting when modules are present
-
- * mdk-stage1/dietlibc/include/stdlib.h, mdk-stage1/dietlibc/lib/random.c:
- i need working random suite for ppp with dietlibc
-
- * mdk-stage1/stage1.c: exit when exec fails after fork, i don't want two
- stage1 processes!
-
-2001/06/05 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pl.po: updated Polish file
-
-2001/06/05 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm (mount): notail in any case
-
- * tools/i386/netboot/menu.lst.example, tools/i386/netboot/menu.lst,
- tools/i386/netboot/.cvsignore: menu.lst is now a local file created from
- the example
-
- * share/list, rescue/list.i386, rescue/list: switch to perl 5.6.1
-
- * Makefile: fix
-
-2001/06/02 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
- share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
- share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
- share/po/da.po, share/po/cs.po, share/po/af.po: updated Russian file
-
-2001/06/01 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/Makefile: use -FULL postfix for common .c files targetting
- stage1-full
-
- * mdk-stage1/stage1.c: minor fix
-
- * mdk-stage1/newt/textbox.c: don't modify newt code to fix dietlibc bugs,
- i want to link against glibc too
-
- * mdk-stage1/dietlibc/include/stdlib.h, mdk-stage1/dietlibc/lib/strncat.c:
-
- - have strncat behave the same way as in glibc
- - declare that we're using the DIETLIBC in include/stdlib.h, so I can
- change my mind in "dns.c" to handle broken glibc which is not capable of
- doing name resolution with a static binary
-
- * mdk-stage1/dns.c, mdk-stage1/dns.h, mdk-stage1/adsl.c,
- mdk-stage1/adsl.h, mdk-stage1/nfsmount.c, mdk-stage1/network.c,
- mdk-stage1/url.c, mdk-stage1/network.h:
- - first draft of adsl support
- - get back some code for supporting broken glibc unable to resolve
- when linked statically
-
- * mdk-stage1/dietlibc/dietfeatures.h, mdk-stage1/dietlibc/lib/tcflush.c,
- mdk-stage1/dietlibc/lib/cfgetospeed.c, mdk-stage1/dietlibc/lib/speed.c,
- mdk-stage1/dietlibc/lib/tcsetattr.c,
- mdk-stage1/dietlibc/include/termios.h,
- mdk-stage1/dietlibc/include/netdb.h,
- mdk-stage1/dietlibc/libshell/glob.c: slight modifs to get ppp and pppoe
- stuff compile better
-
-2001/05/31 daouda
-
- * bootlook.pm: add runlevel chooser feature
-
-2001/05/31 Pixel <pixel@mandrakesoft.com>
-
- * rescue/make_rescue_img: check presence of files from list and list.ARCH
-
- * Makefile (get_needed_files): exit with error message if files from
- share/list (and
- share/list.ARCH) are missing
-
- * install2.pm: hide step formatPartitions when upgrading
-
-2001/05/30 mbadaire
-
- * mdk-stage1/stage1.c, mdk-stage1/slang/slmalloc.c,
- mdk-stage1/slang/Makefile, mdk-stage1/Makefile.common,
- mdk-stage1/insmod-modutils/obj/Makefile,
- mdk-stage1/insmod-modutils/Makefile, mdk-stage1/bzlib/Makefile,
- mdk-stage1/init-libc-headers.h, mdk-stage1/newt/Makefile,
- mdk-stage1/Makefile, mdk-stage1/insmod-modutils/util/Makefile,
- mdk-stage1/mar/Makefile, mdk-stage1/newt/windows.c:
- - allow build on ia64
- - have CFLAGS centralized in Makefile.common (should help ports such
- as alpha)
- - better looking sub makefiles
-
-2001/05/30 Pixel <pixel@mandrakesoft.com>
-
- * Makefile.drakxtools (install): ensure pm's in subdirs don't have
- /use(diagnostics|vars|strict)/
-
-2001/05/29 François Pons <fpons@mandrakesoft.com>
-
- * printerdrake.pm: added fix from Michael Brown to handle pipe in queue
- name for lpr.
-
-2001/05/29 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * share/compssUsers: add NIS client to network clients
-
-2001/05/29 François Pons <fpons@mandrakesoft.com>
-
- * printerdrake.pm: added fix from Michael Brown to handle pipe in queue
- name for lpr.
-
-2001/05/28 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/newt-frontend.c: use Axalon patch to hide passwords (highly
- rewritten..)
-
-2001/05/25 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * rescue/list.ppc, bootloader.pm: add hfs support to rescue - PPC, fix
- bootstrap creation, formatting sequence
-
- * install_steps_interactive.pm: fix bootstrap information screen back to
- orig with missing ":" - PPC
- add hfs support to rescue - PPC, fix bootstrap creation, formatting
- sequence
-
-2001/05/25 siegel
-
- * share/po/de.po: updated time
- moved to UTF-8
-
-2001/05/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/tr.po: updated Turkish file
-
-2001/05/24 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (g_auto_install): autoExitInstall set if not replay (was
- the opposite)
-
-2001/05/23 Pixel <pixel@mandrakesoft.com>
-
- * rescue/list: add scd0...
-
-2001/05/22 siegel
-
- * share/po/de.po: updates
-
-2001/05/21 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * tools/ppc/mkhybrid-1.12b5.4-x86, tools/ppc/mkINSTALLCD: enable creation
- of PPC boot CD on x86 platform
-
-2001/05/18 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/network.c:
- - better detect when IP is not good
- - error_msg when netmask seems invalid
- - don't log too much `guessing netmask'
-
- * mdk-stage1/probing.c: be sure to print pci vendor and id with 4 digits
- each
-
-2001/05/17 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: fixed parted that ask for confirmation if partition
- table is not right (MAXDATA
- for example), this cause parted to ignore warning.
- added blank space between partition windows and linux to help resolving
- above case.
- fixed hole in partitionning (need testing), use fdisk to get disk
- geometry and
- create partition that matches cylinder boundaries (no more
- approximation).
- make sure to create all partitions including /home.
-
-2001/05/17 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/modules.c: add log for modules aliasing of SCSI drivers
- don't write nonsense code to separate frontend from stage1,
- but rather, try to do some clever things
-
- * mdk-stage1/probing.c: unify user notification of network and scsi
- devices that make load of drivers
- don't write nonsense code to separate frontend from stage1,
- but rather, try to do some clever things
-
- * mdk-stage1/stage1.c, mdk-stage1/frontend.h, mdk-stage1/stage1.h,
- mdk-stage1/tools.c, mdk-stage1/stdio-frontend.c, mdk-stage1/cdrom.c,
- mdk-stage1/Makefile, mdk-stage1/dhcp.c, mdk-stage1/newt-frontend.c,
- mdk-stage1/disk.c, mdk-stage1/network.c: don't write nonsense code to
- separate frontend from stage1,
- but rather, try to do some clever things
-
- * mdk-stage1/frontend-common.c: plop
-
-2001/05/16 dam's <damien@mandrakesoft.com>
-
- * pixmaps/bootloader.png, pixmaps/user.png, pixmaps/security.png,
- pixmaps/rootpasswd.png, pixmaps/harddrive.png, pixmaps/keyboard.png,
- pixmaps/default.png, pixmaps/X.png, pixmaps/mouse.png,
- pixmaps/bootdisk.png, pixmaps/services.png: added icons
-
- * standalone/printerdrake, standalone/keyboarddrake, standalone/drakboot,
- standalone/draksec, standalone/drakxservices, standalone/drakgw,
- standalone/XFdrake, standalone/adduserdrake: added icon management
-
- * my_gtk.pm, interactive.pm: icons management
-
- * install2.pm: added icons management
-
- * standalone/draknet: added icon managment
-
- * pixmaps/printer.png: added icon
-
-2001/05/16 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: added support for /var creation, and more specific
- package selection for server.
- Include option support by VERSION file.
-
-2001/05/16 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/stage1.c, mdk-stage1/HACKING, mdk-stage1/frontend.h,
- mdk-stage1/TECH-INFOS, mdk-stage1/WHY-DIETLIBC, mdk-stage1/stage1.h,
- mdk-stage1/stdio-frontend.c, mdk-stage1/Makefile, mdk-stage1/README,
- mdk-stage1/newt-frontend.c: have a 100% independence between UI stuff
- and code from stage1
-
-2001/05/16 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/wa.po, share/po/de.po, share/po/DrakX.pot, share/po/tr.po:
- updated Turkish file
-
-2001/05/16 Pixel <pixel@mandrakesoft.com>
-
- * share/po/Makefile: fix yet again DrakX.pot making
-
- * partition_table.pm: re-add reiserfs as it should
- add xfs
-
-2001/05/15 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: added missing Aurora, added icewm-light that may be
- usefull.
-
-2001/05/15 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/Makefile: libresolv deprecated in GLIBC
- have stage1-full with pcmcia also compile with dietlibc, cool!
-
- * mdk-stage1/network.c: fix guess netmask
- configure_net_device is only used internally
-
- * mdk-stage1/modules.c, mdk-stage1/modules.h: better modules handling
- interface (use of enum rather than guessing single numbers..)
-
- * mdk-stage1/newt-frontend.c: allow wait_message calls to be multi-lines
-
- * mdk-stage1/pcmcia/cardmgr.c: have stage1-full with pcmcia also compile
- with dietlibc, cool!
- - build glibc and dietlibc targets
- - bzero string buffer before sscanf call (dietlibc implementation)
- - verify returns of ioperm so that I can use it in test mode
-
- * mdk-stage1/dietlibc/include/sys/file.h,
- mdk-stage1/dietlibc/include/sys/io.h,
- mdk-stage1/dietlibc/syscalls.s/ioperm.S: have stage1-full with pcmcia
- also compile with dietlibc, cool!
-
- * mdk-stage1/stage1.c: a bit of size reduction plus some language change
- blurk
-
- * mdk-stage1/WHY-DIETLIBC: advocate dietlibc
-
- * mdk-stage1/dietlibc/lib/vsscanf.c: import vsscanf fix from author
-
- * mdk-stage1/disk.c: bzero string buffer before sscanf call, security for
- dietlibc implementation
-
- * mdk-stage1/network.h: configure_net_device is only used internally
-
- * mdk-stage1/pcmcia/Makefile, mdk-stage1/pcmcia/pcmcia_probe.c:
- - build glibc and dietlibc targets
- - bzero string buffer before sscanf call (dietlibc implementation)
- - verify returns of ioperm so that I can use it in test mode
-
- * standalone/drakgw: full path for iptables
-
- * mdk-stage1/probing.c: allow wait_message calls to be multi-lines
- nicer layout for PCI detection messages
- better modules handling interface (use of enum rather than guessing
- single numbers..)
-
-2001/05/15 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/tr.po, share/po/ar.po: Updated Turkish file
-
- * share/keyboards.tar.bz2: Added north-african keyboard
-
- * keyboard.pm: added arabic azerty keyboard
-
-2001/05/15 Pixel <pixel@mandrakesoft.com>
-
- * share/po/Makefile: fix messages to i18n extracting
-
-2001/05/14 Chmouel Boudjnah <chmouel@mandrakesoft.com>
-
- * fs.pm: s|mkxfs|mkfs.xfs|;
-
-2001/05/14 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/nfsmount.c: use new gethostby* interface
-
- * mdk-stage1/stage1-data/stage1-with-busybox.tar.bz2: add stage1-data
- which provides the busybox
-
- * mdk-stage1/network.c: Have the wait_message() with the sleep()
- - complies to gethostby functions
- - add sleep(2) so that net intf is really up before operation
- - more logs
- - FTP: don't try to close control connection with data socket, erhm
- :-(
- - debug netmask guessing, with stdio-frontend
-
- * mdk-stage1/Makefile: i can compile slang and newt with dietlibc now
- every targets build with dietlibc
-
- * mdk-stage1/make_boot_img: use busybox for my debugging purpose
-
- * mdk-stage1/tools.c: no need to poll() for data at beginning of
- load_ramdisk_fd, it was a fix of another problem (bug with file stdio
- operations with sockets in dietlibc)
-
- * mdk-stage1/dietlibc/Makefile: build this new dietlibc
- import new version of dietlibc
-
- * mdk-stage1/dns.c, mdk-stage1/dns.h: now use gethostby* functions
- provided by dietlibc
-
- * mdk-stage1/url.c: use poll() rather than select(), smaller code size
-
- * mdk-stage1/stage1.c: we don't use this sucking sash no more
- we now use `busybox' compiled with the marvellous dietlibc, which
- provides no less than 73 usefull binaries
-
- * mdk-stage1/dietlibc/alpha/semop.S, mdk-stage1/dietlibc/lib/sendmsg.c,
- mdk-stage1/dietlibc/alpha/shmget.S, mdk-stage1/dietlibc/lib/clearerr.c,
- mdk-stage1/dietlibc/include/sys/ipc.h,
- mdk-stage1/dietlibc/alpha/sendmsg.S,
- mdk-stage1/dietlibc/lib/tcgetpgrp.c, mdk-stage1/dietlibc/lib/fwrite.c,
- mdk-stage1/dietlibc/sparc/__testandset.S,
- mdk-stage1/dietlibc/syscalls.s/open.S,
- mdk-stage1/dietlibc/alpha/semget.S, mdk-stage1/dietlibc/dietstdarg.h,
- mdk-stage1/dietlibc/syscalls.s/sched_get_priority_max.S,
- mdk-stage1/dietlibc/lib/nop.c, mdk-stage1/dietlibc/start.h,
- mdk-stage1/dietlibc/include/sys/syscall.h,
- mdk-stage1/dietlibc/alpha/accept.S, mdk-stage1/dietlibc/lib/sigjmp.c,
- mdk-stage1/dietlibc/syscalls.s/ptrace.s,
- mdk-stage1/dietlibc/lib/isprint.c,
- mdk-stage1/dietlibc/syscalls.s/dietstat.S,
- mdk-stage1/dietlibc/alpha/shutdown.S, mdk-stage1/dietlibc/lib/sendto.c,
- mdk-stage1/dietlibc/sparc/shmat.c, mdk-stage1/dietlibc/include/time.h,
- mdk-stage1/dietlibc/lib/stat_convert.c, mdk-stage1/dietlibc/lib/send.c,
- mdk-stage1/dietlibc/lib/isxdigit.c, mdk-stage1/dietlibc/alpha/waitpid.S,
- mdk-stage1/dietlibc/lib/atexit.c, mdk-stage1/dietlibc/lib/readdir.c,
- mdk-stage1/dietlibc/include/sys/sem.h,
- mdk-stage1/dietlibc/syscalls.s/query_module.S,
- mdk-stage1/dietlibc/lib/strchr.c,
- mdk-stage1/dietlibc/syscalls.s/dietfstat64.S,
- mdk-stage1/dietlibc/syscalls.s/lstat64.S,
- mdk-stage1/dietlibc/i386/setjmp.S, mdk-stage1/dietlibc/lib/alloc.c,
- mdk-stage1/dietlibc/lib/perror.c,
- mdk-stage1/dietlibc/include/sys/socket.h,
- mdk-stage1/dietlibc/lib/creat64.c, mdk-stage1/dietlibc/lib/closedir.c,
- mdk-stage1/dietlibc/sparc/pipe.S, mdk-stage1/dietlibc/lib/msgrcv.c,
- mdk-stage1/dietlibc/include/utmp.h,
- mdk-stage1/dietlibc/syscalls.s/sendfile.S,
- mdk-stage1/dietlibc/syscalls.s/nice.S,
- mdk-stage1/dietlibc/syscalls.s/sigprocmask.S,
- mdk-stage1/dietlibc/syscalls.s/select.S,
- mdk-stage1/dietlibc/include/sys/mtio.h,
- mdk-stage1/dietlibc/i386/strchr.S, mdk-stage1/dietlibc/alpha/divl.S,
- mdk-stage1/dietlibc/syscalls.s/sched_rr_get_interval.S,
- mdk-stage1/dietlibc/lib/__telldir.c,
- mdk-stage1/dietlibc/i386/__testandset.S,
- mdk-stage1/dietlibc/lib/remove.c,
- mdk-stage1/dietlibc/syscalls.s/sched_get_priority_min.S,
- mdk-stage1/dietlibc/lib/fputc.c, mdk-stage1/dietlibc/lib/msgctl.c,
- mdk-stage1/dietlibc/alpha/clone.S, mdk-stage1/dietlibc/lib/connect.c,
- mdk-stage1/dietlibc/include/sys/un.h,
- mdk-stage1/dietlibc/alpha/connect.S,
- mdk-stage1/dietlibc/include/termios.h,
- mdk-stage1/dietlibc/lib/sigfillset.c,
- mdk-stage1/dietlibc/lib/sigismember.c,
- mdk-stage1/dietlibc/syscalls.s/dietstat64.S,
- mdk-stage1/dietlibc/i386/start.S, mdk-stage1/dietlibc/lib/shmget.c,
- mdk-stage1/dietlibc/lib/strtok.c, mdk-stage1/dietlibc/lib/fclose.c,
- mdk-stage1/dietlibc/lib/tcsetpgrp.c,
- mdk-stage1/dietlibc/sparc/Makefile.add,
- mdk-stage1/dietlibc/include/sys/shm.h, mdk-stage1/dietlibc/alpha/send.S,
- mdk-stage1/dietlibc/i386/__longjmp.S, mdk-stage1/dietlibc/lib/recvmsg.c,
- mdk-stage1/dietlibc/include/inttypes.h,
- mdk-stage1/dietlibc/syscalls.s/sched_getscheduler.S,
- mdk-stage1/dietlibc/lib/semget.c, mdk-stage1/dietlibc/lib/open64.c,
- mdk-stage1/dietlibc/alpha/recvmsg.S,
- mdk-stage1/dietlibc/syscalls.s/fork.S,
- mdk-stage1/dietlibc/lib/strcasecmp.c, mdk-stage1/dietlibc/lib/htonl.c,
- mdk-stage1/dietlibc/lib/accept.c, mdk-stage1/dietlibc/alpha/shmat.S,
- mdk-stage1/dietlibc/include/features.h,
- mdk-stage1/dietlibc/include/syslog.h, mdk-stage1/dietlibc/lib/isascii.c,
- mdk-stage1/dietlibc/syscalls.s/writev.S,
- mdk-stage1/dietlibc/lib/fputs.c,
- mdk-stage1/dietlibc/alpha/sigprocmask.S,
- mdk-stage1/dietlibc/lib/ntohs.c, mdk-stage1/dietlibc/include/sys/uio.h,
- mdk-stage1/dietlibc/syscalls.s/nanosleep.S,
- mdk-stage1/dietlibc/syscalls.s/creat.S,
- mdk-stage1/dietlibc/include/sys/sysinfo.h,
- mdk-stage1/dietlibc/lib/atof.c, mdk-stage1/dietlibc/alpha/msgsnd.S,
- mdk-stage1/dietlibc/lib/vsprintf.c, mdk-stage1/dietlibc/lib/toupper.c,
- mdk-stage1/dietlibc/lib/strlcpy.3, mdk-stage1/dietlibc/lib/sigaddset.c,
- mdk-stage1/dietlibc/i386/select.S, mdk-stage1/dietlibc/i386/unified.S,
- mdk-stage1/dietlibc/include/dirent.h,
- mdk-stage1/dietlibc/include/getopt.h, mdk-stage1/dietlibc/lib/seekdir.c,
- mdk-stage1/dietlibc/include/net/route.h,
- mdk-stage1/dietlibc/syscalls.s/exit.S,
- mdk-stage1/dietlibc/include/pthread.h,
- mdk-stage1/dietlibc/lib/sprintf.c, mdk-stage1/dietlibc/alpha/msgget.S,
- mdk-stage1/dietlibc/include/limits.h, mdk-stage1/dietlibc/lib/qsort.c,
- mdk-stage1/dietlibc/lib/execvp.c,
- mdk-stage1/dietlibc/syscalls.s/__reboot.S,
- mdk-stage1/dietlibc/lib/stdin.c,
- mdk-stage1/dietlibc/syscalls.s/getitimer.S,
- mdk-stage1/dietlibc/include/grp.h, mdk-stage1/dietlibc/lib/usleep.c,
- mdk-stage1/dietlibc/lib/lstat.c, mdk-stage1/dietlibc/sparc/setjmp.S,
- mdk-stage1/dietlibc/sparc/fork.S,
- mdk-stage1/dietlibc/syscalls.s/__pread.S,
- mdk-stage1/dietlibc/include/sys/poll.h,
- mdk-stage1/dietlibc/syscalls.s/personality.S,
- mdk-stage1/dietlibc/lib/lseek64.c, mdk-stage1/dietlibc/include/setjmp.h,
- mdk-stage1/dietlibc/lib/recv.c, mdk-stage1/dietlibc/include/string.h,
- mdk-stage1/dietlibc/include/sys/time.h, mdk-stage1/dietlibc/lib/fstat.c,
- mdk-stage1/dietlibc/lib/memcmp.c, mdk-stage1/dietlibc/lib/isupper.c,
- mdk-stage1/dietlibc/include/sys/param.h,
- mdk-stage1/dietlibc/syscalls.s/__getpagesize.S,
- mdk-stage1/dietlibc/lib/exec_lib.c, mdk-stage1/dietlibc/alpha/shmdt.S,
- mdk-stage1/dietlibc/include/dlfcn.h, mdk-stage1/dietlibc/lib/isdigit.c,
- mdk-stage1/dietlibc/lib/fdopen.c, mdk-stage1/dietlibc/lib/exec_lib.h,
- mdk-stage1/dietlibc/lib/__lxstat.c, mdk-stage1/dietlibc/alpha/remq.S,
- mdk-stage1/dietlibc/include/sys/kd.h,
- mdk-stage1/dietlibc/syscalls.s/read.S, mdk-stage1/dietlibc/lib/fopen.c,
- mdk-stage1/dietlibc/syscalls.s/sched_yield.S,
- mdk-stage1/dietlibc/include/sys/mman.h,
- mdk-stage1/dietlibc/lib/__readdir.c,
- mdk-stage1/dietlibc/lib/cfgetospeed.c,
- mdk-stage1/dietlibc/lib/__dtostr.c, mdk-stage1/dietlibc/lib/execv.c,
- mdk-stage1/dietlibc/alpha/reml.S,
- mdk-stage1/dietlibc/syscalls.s/fcntl.S,
- mdk-stage1/dietlibc/include/errno.h, mdk-stage1/dietlibc/lib/ferror.c,
- mdk-stage1/dietlibc/syscalls.s/ipc.S,
- mdk-stage1/dietlibc/syscalls.s/mlockall.S,
- mdk-stage1/dietlibc/lib/fgetc.c, mdk-stage1/dietlibc/lib/strtoull.c,
- mdk-stage1/dietlibc/include/sys/msg.h,
- mdk-stage1/dietlibc/syscalls.s/sigsuspend.S,
- mdk-stage1/dietlibc/lib/isgraph.c, mdk-stage1/dietlibc/lib/vsscanf.c,
- mdk-stage1/dietlibc/lib/ftell.c, mdk-stage1/dietlibc/include/unistd.h,
- mdk-stage1/dietlibc/lib/msgsnd.c, mdk-stage1/dietlibc/lib/semop.c,
- mdk-stage1/dietlibc/include/net/if_arp.h,
- mdk-stage1/dietlibc/lib/execlp.c,
- mdk-stage1/dietlibc/syscalls.s/stat64.S,
- mdk-stage1/dietlibc/dietfeatures.h, mdk-stage1/dietlibc/dietstdio.h,
- mdk-stage1/dietlibc/lib/feof.c, mdk-stage1/dietlibc/lib/opendir.c,
- mdk-stage1/dietlibc/syscalls.s/fstat64.S,
- mdk-stage1/dietlibc/syscalls.s/sched_setparam.S,
- mdk-stage1/dietlibc/include/sys/reboot.h,
- mdk-stage1/dietlibc/lib/sigdelset.c, mdk-stage1/dietlibc/lib/execl.c,
- mdk-stage1/dietlibc/include/sys/sendfile.h,
- mdk-stage1/dietlibc/include/sys/syslog.h,
- mdk-stage1/dietlibc/syscalls.s/iopl.S, mdk-stage1/dietlibc/lib/msgget.c,
- mdk-stage1/dietlibc/syscalls.s/sched_getparam.S,
- mdk-stage1/dietlibc/lib/vsnprintf.c,
- mdk-stage1/dietlibc/include/signal.h,
- mdk-stage1/dietlibc/syscalls.s/pause.S,
- mdk-stage1/dietlibc/include/arpa/inet.h,
- mdk-stage1/dietlibc/include/sys/wait.h,
- mdk-stage1/dietlibc/alpha/time.S, mdk-stage1/dietlibc/lib/ttyname.c,
- mdk-stage1/dietlibc/lib/__lstat64.c, mdk-stage1/dietlibc/lib/__stat64.c,
- mdk-stage1/dietlibc/alpha/recv.S, mdk-stage1/dietlibc/lib/fgets.c,
- mdk-stage1/dietlibc/lib/strncat.c, mdk-stage1/dietlibc/lib/__lltostr.c,
- mdk-stage1/dietlibc/lib/__ltostr.c,
- mdk-stage1/dietlibc/sparc/__longjmp.S, mdk-stage1/dietlibc/lib/puts.c,
- mdk-stage1/dietlibc/lib/rand.c, mdk-stage1/dietlibc/syscalls.s/fsync.S,
- mdk-stage1/dietlibc/include/fnmatch.h, mdk-stage1/dietlibc/lib/fflush.c,
- mdk-stage1/dietlibc/lib/htons.c,
- mdk-stage1/dietlibc/syscalls.s/sigaltstack.S,
- mdk-stage1/dietlibc/include/sys/resource.h,
- mdk-stage1/dietlibc/lib/__stat64_cvt.c,
- mdk-stage1/dietlibc/lib/localtime.c,
- mdk-stage1/dietlibc/alpha/seteuid.c,
- mdk-stage1/dietlibc/syscalls.s/stime.S,
- mdk-stage1/dietlibc/include/resolv.h, mdk-stage1/dietlibc/lib/__xstat.c,
- mdk-stage1/dietlibc/ppc/Makefile.add,
- mdk-stage1/dietlibc/sparc/unified.S, mdk-stage1/dietlibc/lib/bsearch.c,
- mdk-stage1/dietlibc/include/net/if.h,
- mdk-stage1/dietlibc/include/shadow.h,
- mdk-stage1/dietlibc/lib/__rewinddir.c,
- mdk-stage1/dietlibc/include/daemon.h, mdk-stage1/dietlibc/lib/mkfifo.c,
- mdk-stage1/dietlibc/include/paths.h, mdk-stage1/dietlibc/include/pwd.h,
- mdk-stage1/dietlibc/lib/strrchr.c, mdk-stage1/dietlibc/lib/__seekdir.c,
- mdk-stage1/dietlibc/syscalls.h, mdk-stage1/dietlibc/alpha/shmctl.S,
- mdk-stage1/dietlibc/lib/fdglue.c, mdk-stage1/dietlibc/lib/fseek.c,
- mdk-stage1/dietlibc/include/regex.h,
- mdk-stage1/dietlibc/include/sys/ptrace.h,
- mdk-stage1/dietlibc/lib/tcdrain.c,
- mdk-stage1/dietlibc/syscalls.s/lstat.S,
- mdk-stage1/dietlibc/alpha/semctl.S, mdk-stage1/dietlibc/lib/recvfrom.c,
- mdk-stage1/dietlibc/lib/random.c,
- mdk-stage1/dietlibc/syscalls.s/times.S,
- mdk-stage1/dietlibc/lib/getpgrp.c, mdk-stage1/dietlibc/lib/cfmakeraw.c,
- mdk-stage1/dietlibc/lib/stat.c, mdk-stage1/dietlibc/syscalls.s/write.S,
- mdk-stage1/dietlibc/syscalls.s/dietlstat64.S,
- mdk-stage1/dietlibc/ppc/__testandset.S,
- mdk-stage1/dietlibc/include/mntent.h,
- mdk-stage1/dietlibc/include/sys/file.h,
- mdk-stage1/dietlibc/syscalls.s/fstat.S,
- mdk-stage1/dietlibc/syscalls.s/llseek.S,
- mdk-stage1/dietlibc/lib/strsep.c,
- mdk-stage1/dietlibc/include/sys/stat.h,
- mdk-stage1/dietlibc/syscalls.s/munlockall.S,
- mdk-stage1/dietlibc/syscalls.s/setpriority.S,
- mdk-stage1/dietlibc/include/assert.h,
- mdk-stage1/dietlibc/include/strings.h,
- mdk-stage1/dietlibc/include/alloca.h, mdk-stage1/dietlibc/lib/gmtime.c,
- mdk-stage1/dietlibc/lib/shmat.c, mdk-stage1/dietlibc/lib/__isnan.c,
- mdk-stage1/dietlibc/ppc/__longjmp.S,
- mdk-stage1/dietlibc/lib/__closedir.c,
- mdk-stage1/dietlibc/include/sys/signal.h,
- mdk-stage1/dietlibc/lib/rewinddir.c, mdk-stage1/dietlibc/lib/stdout.c,
- mdk-stage1/dietlibc/lib/vfprintf.c, mdk-stage1/dietlibc/.cvsignore,
- mdk-stage1/dietlibc/lib/telldir.c, mdk-stage1/dietlibc/include/glob.h,
- mdk-stage1/dietlibc/lib/tm_conv.c,
- mdk-stage1/dietlibc/syscalls.s/reboot.S,
- mdk-stage1/dietlibc/syscalls.s/sched_setscheduler.S,
- mdk-stage1/dietlibc/syscalls.s/umount2.S,
- mdk-stage1/dietlibc/syscalls.s/readv.S,
- mdk-stage1/dietlibc/lib/__fxstat.c,
- mdk-stage1/dietlibc/include/sys/select.h,
- mdk-stage1/dietlibc/syscalls.s/syslog.S,
- mdk-stage1/dietlibc/syscalls.s/sysinfo.S,
- mdk-stage1/dietlibc/lib/fprintf.c,
- mdk-stage1/dietlibc/include/sys/cdefs.h, mdk-stage1/dietlibc/README,
- mdk-stage1/dietlibc/lib/fread.c, mdk-stage1/dietlibc/lib/getpwnam.c,
- mdk-stage1/dietlibc/syscalls.s/getcwd.S,
- mdk-stage1/dietlibc/lib/getservent.c, mdk-stage1/dietlibc/lib/tolower.c,
- mdk-stage1/dietlibc/diet.c, mdk-stage1/dietlibc/alpha/recvfrom.S,
- mdk-stage1/dietlibc/include/elf.h, mdk-stage1/dietlibc/alpha/sendto.S,
- mdk-stage1/dietlibc/lib/fileno.c, mdk-stage1/dietlibc/i386/clone.S,
- mdk-stage1/dietlibc/lib/__opendir.c,
- mdk-stage1/dietlibc/include/sched.h, mdk-stage1/dietlibc/alpha/__time.c,
- mdk-stage1/dietlibc/lib/ispunct.c, mdk-stage1/dietlibc/lib/printf.c,
- mdk-stage1/dietlibc/lib/strtod.c, mdk-stage1/dietlibc/lib/strncasecmp.c,
- mdk-stage1/dietlibc/lib/__getcwd.c,
- mdk-stage1/dietlibc/include/netinet/in.h,
- mdk-stage1/dietlibc/lib/shmctl.c,
- mdk-stage1/dietlibc/syscalls.s/dietlstat.S,
- mdk-stage1/dietlibc/include/arpa/nameser.h,
- mdk-stage1/dietlibc/lib/assert_fail.c, mdk-stage1/dietlibc/lib/semctl.c,
- mdk-stage1/dietlibc/lib/shmdt.c, mdk-stage1/dietlibc/lib/shutdown.c,
- mdk-stage1/dietlibc/lib/setpgrp.c, mdk-stage1/dietlibc/alpha/msgrcv.S,
- mdk-stage1/dietlibc/lib/stderr.c,
- mdk-stage1/dietlibc/syscalls.s/close.S,
- mdk-stage1/dietlibc/syscalls.s/dietfstat.S,
- mdk-stage1/dietlibc/include/locale.h,
- mdk-stage1/dietlibc/syscalls.s/getpriority.S,
- mdk-stage1/dietlibc/lib/__fstat64.c, mdk-stage1/dietlibc/lib/isalpha.c,
- mdk-stage1/dietlibc/lib/reboot.c, mdk-stage1/dietlibc/lib/isspace.c,
- mdk-stage1/dietlibc/include/sys/mount.h,
- mdk-stage1/dietlibc/lib/creat.c, mdk-stage1/dietlibc/syscalls.s/lseek.S,
- mdk-stage1/dietlibc/sparc/clone.S, mdk-stage1/dietlibc/dietwarning.h,
- mdk-stage1/dietlibc/lib/islower.c,
- mdk-stage1/dietlibc/alpha/Makefile.add, mdk-stage1/dietlibc/lib/abort.c,
- mdk-stage1/dietlibc/alpha/msgctl.S, mdk-stage1/dietlibc/lib/isalnum.c,
- mdk-stage1/dietlibc/include/ctype.h,
- mdk-stage1/dietlibc/include/netdb.h,
- mdk-stage1/dietlibc/include/memory.h, mdk-stage1/dietlibc/lib/iscntrl.c,
- mdk-stage1/dietlibc/i386/Makefile.add, mdk-stage1/dietlibc/lib/getopt.c,
- mdk-stage1/dietlibc/syscalls.s/waitpid.S,
- mdk-stage1/dietlibc/lib/strtoul.c,
- mdk-stage1/dietlibc/syscalls.s/stat.S,
- mdk-stage1/dietlibc/syscalls.s/sysctl.S: import new version of dietlibc
-
- * mdk-stage1/insmod-busybox/busybox.h: fix conflicts with dietlibc headers
-
- * mdk-stage1/dietlibc/include/stdio.h,
- mdk-stage1/dietlibc/include/stdlib.h,
- mdk-stage1/dietlibc/include/math.h,
- mdk-stage1/dietlibc/include/sys/times.h: have slang and newt compile
- with dietlibc
- import new version of dietlibc
-
- * mdk-stage1/Makefile.common: new dietlibc binaries location
-
- * mdk-stage1/newt-frontend.c: i can compile slang and newt with dietlibc
- now
-
- * mdk-stage1/dietlibc/lib/abs.c: have slang and newt compile with dietlibc
-
- * mdk-stage1/dhcp.c: Have the wait_message() with the sleep()
- - add a sleep(2) after ioctl ifupping so that further operation can
- work normally
- - more logs
-
-2001/05/14 kjx
-
- * share/po/zh_CN.GB2312.po: process untranslated
-
-2001/05/14 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm, fsedit.pm, partition_table.pm, install_any.pm: basic xfs handling
-
-2001/05/11 François Pons <fpons@mandrakesoft.com>
-
- * tools/oem-prepare: fixed missing package which may be selected on
- hardware during real install.
-
- * rescue/tree/etc/oem: added support to change boot entries when invoking
- oem script.
- fixed missing SCSI support and driver module loading.
- fixed missing speficic packages not installed on HW detected.
-
-2001/05/08 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm: VBox -> HBox in Embedded mode
-
- * standalone/mousedrake: code cleaned and debugged
- added mouse test. Ugly
-
-2001/05/08 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/stdio-frontend.c: fix minor stuff
- re-include correct layout for [] choices, in a smaller way than before
-
- * mdk-stage1/tools.c: minor fix
- needs to poll() for available data before loading ramdisk because ftp
- transfers would fail in some situations
-
- * mdk-stage1/init.c: new maxim
-
- * mdk-stage1/config-stage1.h: adjust COMPRESSION_RATIO so that last star
- is printed when last blocks of file are read
-
- * mdk-stage1/dhcp.c: use poll() rather than select() to win some bytesCVS:
- ----------------------------------------------------------------------
-
-2001/05/08 siegel
-
- * share/po/de.po: fixed plenty ugly typos
-
-2001/05/07 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt_BR.po: updated Brazilian file
-
-2001/05/07 yduret
-
- * docs/README.devel: fix one typo
-
- * any.pm, bootloader.pm: updated install_lilo() according to new lilo
- package
- (/boot/lilo-{menu,graphic,text})
-
-2001/05/06 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: corrected bad output and bad adsl script
-
-2001/05/06 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * install2.pm: workaround for msec hang on PPC
-
-2001/05/04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: KDE+SOUND -> 4 xmms-arts
-
-2001/05/04 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * mdk-stage1/mar/mar-extract-only.c: text size micro-opt
-
-2001/05/04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: KDE+SOUND -> 4 xmms-arts
-
-2001/05/04 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * c/smp.c, keyboard.pm, Xconfigurator.pm: force XF4 in expert too for PPC,
- don't run xmodmap, PPC SMP routine placeholder
-
-2001/05/04 Thierry Vignaud <tvignaud@mandrakesoft.com>
-
- * mdk-stage1/mar/mar-extract-only.c: text size micro-opt
-
-2001/04/30 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/stdio-frontend.c: nicer layout for progressbar and
- statusreport, when update_progression
- Provide some description of the drivers
-
- * docs/HACKING: fix
- pserver -> ext
-
- * mdk-stage1/tools.c, mdk-stage1/Makefile, mdk-stage1/tools.h,
- mdk-stage1/newt-frontend.c, mdk-stage1/modules_descr.h,
- mdk-stage1/modules.c: Provide some description of the drivers
-
-2001/04/30 Pixel <pixel@mandrakesoft.com>
-
- * docs/README: s/gi.tar.bz2/DrakX-*.src.rpm/
-
- * docs/advocacy: fuck'em all
-
-2001/04/26 François Pons <fpons@mandrakesoft.com>
-
- * docs/README.devel, docs/README: added some more comments for DrakX code
- source and usage.
-
-2001/04/25 François Pons <fpons@mandrakesoft.com>
-
- * tools/oem-prepare: fixed use of VERSION file to find language.
- prepare a oem disk to be used by moving all files that will not be
- installed by oem (oem-master disk preparation).
-
- * rescue/tree/etc/closurepkgs, rescue/tree/etc/part_and_bootloader: fixed
- usage of free space on disk, added NVIDIA packages to install.
-
- * rescue/tree/etc/oem-server: added missing VERSION file.
- fixed usage of free space on disk, added NVIDIA packages to install.
-
- * rescue/tree/etc/oem: added missing autologin package.
- added option to enable oem mode.
- added missing VERSION file.
- fixed usage of free space on disk, added NVIDIA packages to install.
-
-2001/04/24 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/Makefile: version is labelled "cooker"
-
-2001/04/19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * tools/serial_probe/serial.c, tools/serial_probe/serial_probe.c:
- integrate fg's fixes for includes
-
-2001/04/19 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * rescue/list.sparc, rescue/list.i386, rescue/list.ppc, rescue/list.alpha,
- rescue/list: move /sbin/sfdisk to list.arch, update both list.ppc
-
-2001/04/18 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/network.c: fix bug that trashes the network config of stage1
- during stage2, when no DNS is provided
-
-2001/04/18 dam's <damien@mandrakesoft.com>
-
- * standalone/net_monitor: last corrections
-
- * standalone/draknet, netconnect.pm: last corrections
- corrected internet connection test, and parameters editing
-
- * install_steps_gtk.pm: corrected cursor on details
-
-2001/04/18 Frederic Lepied <flepied@mandrakesoft.com>
-
- * share/rpmsrate: * put am-utils and autofs in NETWORKING_FILE
- * drakprofile in level 1
- * swapped tkinter and python-devel
- * vnc-server in NETWORKING_REMOTE_ACCESS_SERVER
- * vnc-SVGALIB in level 2
-
-2001/04/17 dam's <damien@mandrakesoft.com>
-
- * standalone/mousedrake: fixed embedded
-
- * bootlook.pm: chmoded autologin
-
-2001/04/17 François Pons <fpons@mandrakesoft.com>
-
- * any.pm: restored grub as everything seems fine.
-
- * rescue/tree/etc/oem-server: fixed swap size instead of inst size for
- swap gap.
- make sure kernel will be selected.
-
- * rescue/tree/etc/oem: fixed swap size instead of inst size for swap gap.
- make sure kernel is selected.
-
- * install_steps_interactive.pm: fixed missing mouse update in summary.
-
-2001/04/17 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: fix 75dpi-fonts bug with MAKEDEV
-
-2001/04/17 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * standalone/draknet: fixed typo
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/sr.po,
- share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
- share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
- share/po/ko.po, share/po/nl.po, share/po/ja.po, share/po/wa.po,
- share/po/sv.po, share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po,
- share/po/id.po, share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/vi.po, share/po/br.po,
- share/po/gl.po, share/po/ca.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
- share/po/af.po: Updated Basque file
-
-2001/04/17 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (setRootPassword): better ensure
- 'broadcast' insteaf of overriding
- (setRootPassword): set NIS to broadcast when NIS asked. Empty NIS still
- means no NIS
-
- * any.pm (setupBootloader): remove a warning
-
-2001/04/17 warly
-
- * share/rpmsrate: put MAKEDEV at end of line
-
-2001/04/17 dam's <damien@mandrakesoft.com>
-
- * standalone/mousedrake: fixed embedded
-
- * bootlook.pm: chmoded autologin
-
-2001/04/17 François Pons <fpons@mandrakesoft.com>
-
- * any.pm: restored grub as everything seems fine.
-
- * rescue/tree/etc/oem: fixed swap size instead of inst size for swap gap.
- make sure kernel is selected.
- fixed parted problem.
-
- * rescue/tree/etc/oem-server: fixed swap size instead of inst size for
- swap gap.
- make sure kernel will be selected.
-
- * install_steps_interactive.pm: fixed missing mouse update in summary.
-
-2001/04/17 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/sr.po,
- share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
- share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
- share/po/ko.po, share/po/nl.po, share/po/ja.po, share/po/wa.po,
- share/po/sv.po, share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po,
- share/po/id.po, share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/vi.po, share/po/br.po,
- share/po/gl.po, share/po/ca.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
- share/po/af.po: Updated Basque file
-
-2001/04/17 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (setRootPassword): better ensure
- 'broadcast' insteaf of overriding
- (setRootPassword): set NIS to broadcast when NIS asked. Empty NIS still
- means no NIS
-
- * any.pm (setupBootloader): remove a warning
-
-2001/04/17 dam's <damien@mandrakesoft.com>
-
- * bootlook.pm: chmoded autologin
-
-2001/04/17 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: fixed swap size instead of inst size for swap gap.
- make sure kernel is selected.
- fixed parted problem.
-
- * rescue/tree/etc/oem-server: fixed swap size instead of inst size for
- swap gap.
- make sure kernel will be selected.
-
-2001/04/17 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (setRootPassword): better ensure
- 'broadcast' insteaf of overriding
- (setRootPassword): set NIS to broadcast when NIS asked. Empty NIS still
- means no NIS
-
- * any.pm (setupBootloader): remove a warning
-
-2001/04/17 dam's <damien@mandrakesoft.com>
-
- * bootlook.pm: chmoded autologin
-
-2001/04/17 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: fixed swap size instead of inst size for swap gap.
- make sure kernel is selected.
- fixed parted problem.
-
- * rescue/tree/etc/oem-server: fixed swap size instead of inst size for
- swap gap.
- make sure kernel will be selected.
-
-2001/04/17 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (setRootPassword): set NIS to broadcast
- when NIS asked. Empty NIS still means no NIS
-
- * any.pm (setupBootloader): remove a warning
-
-2001/04/16 dam's <damien@mandrakesoft.com>
-
- * any.pm: removed Grub if Embedded
-
-2001/04/16 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: minor bug.
-
- * any.pm: removed Grub if Embedded
-
-2001/04/16 dam's <damien@mandrakesoft.com>
-
- * standalone/net_monitor: updated
- updated
-
- * network.pm: dhcpd -> dhcpcd
-
- * Xconfigurator.pm: added nice monitor.png
-
- * netconnect.pm: minor bug.
- dhcpd -> dhcpcd
-
- * standalone/draknet: updated
-
- * pixmaps/hori.png, pixmaps/colors.png, pixmaps/wiz_default_left.png,
- pixmaps/tradi.png, pixmaps/categ.png, pixmaps/wiz_default_up.png,
- pixmaps/verti.png, pixmaps/wiz_firewall.png, pixmaps/monitor.png,
- pixmaps/monitor-1280.png, pixmaps/monitor-1024.png, pixmaps/net_c.png,
- pixmaps/wiz_draknet.png, pixmaps/gmon.png, pixmaps/monitor-800.png,
- pixmaps/net_d.png, pixmaps/eth_card_mini.png, pixmaps/wiz_drakgw.png,
- pixmaps/monitor-640.png, pixmaps/colors8.png, pixmaps/colors16.png: plop
- removed for readd in kb
-
- * my_gtk.pm: corrected typo
- added grey fix for contreol-center
-
-2001/04/16 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: added missing rio500 in closure.
- finally fixed menu by generating /etc/rpm/macros file.
- added missing LF.
- now fixed menu problems.
- try another fix for RPM_INSTALL_LANG as first fr_FR:fr instead of
- fr:fr_FR.
- really disable server.
- maybe fixed RPM_INSTALL_LANG (from "fr" to "fr:fr_FR" for french).
- fixed to avoid nasty message in wrong places.
- moved warning message around.
- fixed wrong LOCALES"...".
- fixed lang weirdness, fixed minimal size of / partition to be more
- confortable,
- fixed default language for starting DrakX after.
-
- * Xconfig.pm: fixed standalone error for wacom weirdness.
- fixed HASH() in /etc/X11/XF86Config*.
-
- * fs.pm: restored not neccessary to load reiserfs for formating.
- loading reiserfs module before formatting.
-
-2001/04/16 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * pixmaps/monitor-800.png, pixmaps/monitor-1024.png,
- pixmaps/monitor-640.png, pixmaps/monitor-1280.png: add nice shots for
- XFdrake
-
- * mdk-stage1/TECH-INFOS: update doc
-
- * share/po/fr.po: fix minor thing
-
-2001/04/16 Pixel <pixel@mandrakesoft.com>
-
- * share/compssUsers: remove BURNER from Utilities
-
-2001/04/16 warly
-
- * share/rpmsrate: lower portsentry
-
-2001/04/16 dam's <damien@mandrakesoft.com>
-
- * Xconfigurator.pm: added nice monitor.png
-
- * standalone/net_monitor: updated
-
- * pixmaps/hori.png, pixmaps/colors.png, pixmaps/wiz_default_left.png,
- pixmaps/tradi.png, pixmaps/categ.png, pixmaps/wiz_default_up.png,
- pixmaps/verti.png, pixmaps/wiz_firewall.png, pixmaps/monitor.png,
- pixmaps/monitor-1280.png, pixmaps/monitor-1024.png, pixmaps/net_c.png,
- pixmaps/wiz_draknet.png, pixmaps/gmon.png, pixmaps/monitor-800.png,
- pixmaps/net_d.png, pixmaps/eth_card_mini.png, pixmaps/wiz_drakgw.png,
- pixmaps/monitor-640.png, pixmaps/colors8.png, pixmaps/colors16.png: plop
- removed for readd in kb
-
- * my_gtk.pm: corrected typo
- added grey fix for contreol-center
-
-2001/04/16 François Pons <fpons@mandrakesoft.com>
-
- * Xconfig.pm: fixed standalone error for wacom weirdness.
- fixed HASH() in /etc/X11/XF86Config*.
-
- * rescue/tree/etc/oem: maybe fixed RPM_INSTALL_LANG (from "fr" to
- "fr:fr_FR" for french).
- fixed to avoid nasty message in wrong places.
- moved warning message around.
- fixed wrong LOCALES"...".
- fixed lang weirdness, fixed minimal size of / partition to be more
- confortable,
- fixed default language for starting DrakX after.
-
-2001/04/16 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * pixmaps/monitor-800.png, pixmaps/monitor-1024.png,
- pixmaps/monitor-640.png, pixmaps/monitor-1280.png: add nice shots for
- XFdrake
-
-2001/04/16 Pixel <pixel@mandrakesoft.com>
-
- * share/compssUsers: remove BURNER from Utilities
-
-2001/04/16 warly
-
- * share/rpmsrate: lower portsentry
-
-2001/04/16 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: bugfix
- added update thread
- corrected bad install package.
- updated expert mode
-
- * network.pm, install_steps.pm: corrected bad install package.
-
- * Xconfigurator.pm: added nice monitor.png
-
- * tinyfirewall.pm: corrected package installation
-
- * standalone/net_monitor: updated
-
- * pixmaps/hori.png, pixmaps/colors.png, pixmaps/wiz_default_left.png,
- pixmaps/tradi.png, pixmaps/categ.png, pixmaps/wiz_default_up.png,
- pixmaps/verti.png, pixmaps/wiz_firewall.png, pixmaps/monitor.png,
- pixmaps/monitor-1280.png, pixmaps/monitor-1024.png, pixmaps/net_c.png,
- pixmaps/wiz_draknet.png, pixmaps/gmon.png, pixmaps/monitor-800.png,
- pixmaps/net_d.png, pixmaps/eth_card_mini.png, pixmaps/wiz_drakgw.png,
- pixmaps/monitor-640.png, pixmaps/colors8.png, pixmaps/colors16.png: plop
- removed for readd in kb
-
- * my_gtk.pm: corrected typo
- added grey fix for contreol-center
-
- * netconnect.pm: debug
- corrected bad install package.
-
-2001/04/16 François Pons <fpons@mandrakesoft.com>
-
- * Xconfig.pm: fixed standalone error for wacom weirdness.
- fixed HASH() in /etc/X11/XF86Config*.
-
- * rescue/tree/etc/oem: maybe fixed RPM_INSTALL_LANG (from "fr" to
- "fr:fr_FR" for french).
- fixed to avoid nasty message in wrong places.
- moved warning message around.
- fixed wrong LOCALES"...".
- fixed lang weirdness, fixed minimal size of / partition to be more
- confortable,
- fixed default language for starting DrakX after.
-
-2001/04/16 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * pixmaps/monitor-800.png, pixmaps/monitor-1024.png,
- pixmaps/monitor-640.png, pixmaps/monitor-1280.png: add nice shots for
- XFdrake
-
-2001/04/16 Pixel <pixel@mandrakesoft.com>
-
- * share/compssUsers: remove BURNER from Utilities
-
- * install_any.pm (g_auto_install): do not take 'mkbootdisk'
-
-2001/04/16 warly
-
- * share/rpmsrate: lower portsentry
-
-2001/04/15 fabman
-
- * share/po/es.po: updates
-
-2001/04/15 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: fix minor typo
-
-2001/04/15 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/gl.po: updated Galician file
-
-2001/04/15 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (reallyChooseGroups): translate path (eg:
- Workstation, Server) to make gg happy
-
-2001/04/15 fabman
-
- * share/po/es.po: updates
-
-2001/04/15 fcrozat
-
- * share/rpmsrate: Add mozilla-mail and mozilla-irc to correct categories
-
-2001/04/15 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: fix minor typo
-
-2001/04/15 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sv.po, share/po/ko.po: Updated Swedish and Korean files
-
-2001/04/15 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (reallyChooseGroups): translate path (eg:
- Workstation, Server) to make gg happy
-
- * printerdrake.pm (main): restore the "Ok" button for the queues
- manipulation
-
- * any.pm (write_passwd_user): fix use of local
-
- * interactive.pm (ask_from_entries_refH_powered_normalize): add an eval
- around "require log" to keep perl from going totally mad (getting things
- like v18.843.482 required--this is only v5.6.0)
-
-2001/04/15 yduret
-
- * bootlook.pm: bug fix: if cancel pressed in lilo/grub choice => return to
- mcc normally
- fix layout & size
-
-2001/04/14 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: corrected isdn detect display
-
- * standalone/net_monitor, standalone/draknet: wait 10 sec, instead of 7
-
-2001/04/14 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: changed priority level from 2 to 4 for rate
- selection of packages.
-
- * pkgs.pm: fixed absurd mismatch of use of <=> and cmp on versionCompare.
-
-2001/04/14 Pixel <pixel@mandrakesoft.com>
-
- * pkgs.pm (naughtyServers): add apache
-
- * install_gtk.pm (createXconf): ensure the mouse device is created (mainly
- for auto_inst)
-
- * install_steps_interactive.pm (exitInstall): fix bad i18n of Replay
- button (thx2submarine)
-
-2001/04/14 warly
-
- * share/rpmsrate: lower viavoicemenu to 1 to avoid error message for
- powerpack boxes without ViaVoice
-
-2001/04/14 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: changed priority level from 2 to 4 for rate
- selection of packages.
-
- * pkgs.pm: fixed absurd mismatch of use of <=> and cmp on versionCompare.
-
-2001/04/14 Pixel <pixel@mandrakesoft.com>
-
- * lang.pm (load_po): s/!isStandalone/isInstall/ (mainly for XFdrake's
- test)
-
- * Xconfigurator.pm (use vars): fix stew sux
- (testFinalConfig): nicer stderr handling
-
- * interactive_gtk.pm, interactive_newt.pm (exit): fix the exit code
-
-2001/04/14 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fixed to gzip synthesis file.
- safe guard generation of synthesis file.
- fixed umask on urpmi list file and generate synthesis file for each
- hdlist.
-
- * pkgs.pm: fixed absurd mismatch of use of <=> and cmp on versionCompare.
-
-2001/04/14 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (configureX): fix link /etc/gtk (to
- /mnt/etc/gtk) instead of /etc/gtkrc
-
- * any.pm (autologin): spurious messages of chksession -> dave nul
-
- * interactive_newt.pm (exit): fix the exit code
- (wait_message_endW): don't log "none stacked wait-messages" (as a lot of
- them exist...)
- (waitbox): remove spurious '0' in wait_messages
-
- * lang.pm (load_po): s/!isStandalone/isInstall/ (mainly for XFdrake's
- test)
-
- * Xconfigurator.pm (use vars): fix stew sux
- (testFinalConfig): nicer stderr handling
-
- * interactive_gtk.pm (exit): fix the exit code
-
-2001/04/14 warly
-
- * share/compssUsers, share/list, share/rpmsrate: add icons in compssUser
- and list
-
-2001/04/14 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fixed to gzip synthesis file.
- safe guard generation of synthesis file.
- fixed umask on urpmi list file and generate synthesis file for each
- hdlist.
-
-2001/04/14 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (configureX): fix link /etc/gtk (to
- /mnt/etc/gtk) instead of /etc/gtkrc
-
- * any.pm (autologin): spurious messages of chksession -> dave nul
-
- * interactive_newt.pm (exit): fix the exit code
- (wait_message_endW): don't log "none stacked wait-messages" (as a lot of
- them exist...)
- (waitbox): remove spurious '0' in wait_messages
-
- * lang.pm (load_po): s/!isStandalone/isInstall/ (mainly for XFdrake's
- test)
-
- * Xconfigurator.pm (use vars): fix stew sux
- (testFinalConfig): nicer stderr handling
-
- * interactive_gtk.pm (exit): fix the exit code
-
-2001/04/14 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * Xconfigurator_consts.pm, mouse.pm, Xconfigurator.pm: updates to X, mouse
- setup for PPC
-
-2001/04/14 warly
-
- * share/compssUsers, share/list, share/rpmsrate: add icons in compssUser
- and list
-
-2001/04/13 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: net_cnx_up/down xritten in neuneu
-
- * Xconfigurator.pm: corrected
- updated
- updated message
-
- * standalone/draknet: message corrected
-
-2001/04/13 fabman
-
- * share/po/es.po: synchro with EN
-
-2001/04/13 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: avoid locking cdrom for oem (compssUsers file still
- opened).
-
-2001/04/13 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/no.po: Updated Norwegian file
- Updated po files
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/sr.po,
- share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
- share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
- share/po/ko.po, share/po/nl.po, share/po/ja.po, share/po/wa.po,
- share/po/sv.po, share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po,
- share/po/id.po, share/po/pl.po, share/po/fi.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/vi.po, share/po/br.po,
- share/po/gl.po, share/po/ca.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
- share/po/af.po: Updated po files
-
-2001/04/13 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm (main): reverse message
-
- * install_steps_gtk.pm (installPackages): hide Details button sooner
- (installPackages): do not show button "Details" when no advertising
-
- * Xconfigurator_consts.pm: do not set XkbVariant "winkeys" for
- ru(winkeys), it is redondant
-
- * interactive_gtk.pm (ask_from_entries_refW): set_default_size width 250
-
- * any.pm (ask_users): do not have an empty icon. better not ask for icon
- if no icon
-
-2001/04/13 siegel
-
- * share/po/de.po: updates
-
-2001/04/13 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: net_cnx_up/down xritten in neuneu
-
- * Xconfigurator.pm: corrected
- updated
- updated message
-
- * standalone/draknet: message corrected
-
-2001/04/13 fabman
-
- * share/po/es.po: synchro with EN
-
-2001/04/13 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: avoid locking cdrom for oem (compssUsers file still
- opened).
-
- * install_steps_gtk.pm: avoid illegal modulus zero if no advertizing is
- available.
- fixed very old typo not encountered before;
-
-2001/04/13 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm (main): reverse message
-
- * install_steps_gtk.pm (installPackages): hide Details button sooner
- (installPackages): do not show button "Details" when no advertising
-
- * Xconfigurator_consts.pm: do not set XkbVariant "winkeys" for
- ru(winkeys), it is redondant
-
- * interactive_gtk.pm (ask_from_entries_refW): set_default_size width 250
-
- * any.pm (ask_users): do not have an empty icon. better not ask for icon
- if no icon
-
-2001/04/13 warly
-
- * share/compssUsers: add ssh server in Network Computer Server
-
-2001/04/13 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: net_cnx_up/down xritten in neuneu
-
- * Xconfigurator.pm: corrected
- updated
- updated message
-
- * standalone/draknet: message corrected
-
-2001/04/13 fabman
-
- * share/po/es.po: synchro with EN
-
-2001/04/13 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_gtk.pm: avoid illegal modulus zero if no advertizing is
- available.
- fixed very old typo not encountered before;
-
-2001/04/13 Pixel <pixel@mandrakesoft.com>
-
- * common.pm (backtrace): created
-
- * install_steps_interactive.pm (addUser): remove the setting of
- $o->{autologin}, now done in any::autologin
-
- * install_steps_gtk.pm (installPackages): hide Details button sooner
- (installPackages): do not show button "Details" when no advertising
-
- * install2.pm (miscellaneous): add setting KEYBOARD=yes in
- /etc/sysconfig/usb as asked by Lord Chmou
-
- * interactive.pm (ask_from_entries_refH_powered_normalize): log the empty
- list instead of dying (for 8.0 only, should be switched back to die)
- (ask_from_listf): display the backtrace when empty list
-
- * any.pm (ask_users): add the empty icon
- (autologin): fix
-
-2001/04/13 warly
-
- * share/compssUsers: add ssh server in Network Computer Server
-
-2001/04/13 dam's <damien@mandrakesoft.com>
-
- * Xconfigurator.pm: updated
- updated message
-
- * netconnect.pm: net_cnx_up/down xritten in neuneu
-
- * standalone/draknet: message corrected
-
-2001/04/13 fabman
-
- * share/po/es.po: synchro with EN
-
-2001/04/13 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_gtk.pm: avoid illegal modulus zero if no advertizing is
- available.
- fixed very old typo not encountered before;
-
-2001/04/13 Pixel <pixel@mandrakesoft.com>
-
- * common.pm (backtrace): created
-
- * install_steps_interactive.pm (addUser): remove the setting of
- $o->{autologin}, now done in any::autologin
-
- * install2.pm (miscellaneous): add setting KEYBOARD=yes in
- /etc/sysconfig/usb as asked by Lord Chmou
-
- * install_steps_gtk.pm (installPackages): do not show button "Details"
- when no advertising
-
- * interactive.pm (ask_from_entries_refH_powered_normalize): log the empty
- list instead of dying (for 8.0 only, should be switched back to die)
- (ask_from_listf): display the backtrace when empty list
-
- * any.pm (ask_users): add the empty icon
- (autologin): fix
-
-2001/04/13 warly
-
- * share/compssUsers: add ssh server in Network Computer Server
-
-2001/04/13 dam's <damien@mandrakesoft.com>
-
- * Xconfigurator.pm: updated
- updated message
-
- * netconnect.pm: net_cnx_up/down xritten in neuneu
-
- * standalone/draknet: message corrected
-
-2001/04/13 fabman
-
- * share/po/es.po: synchro with EN
-
-2001/04/13 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_gtk.pm: avoid illegal modulus zero if no advertizing is
- available.
- fixed very old typo not encountered before;
-
-2001/04/13 Pixel <pixel@mandrakesoft.com>
-
- * common.pm (backtrace): created
-
- * install_steps_interactive.pm (addUser): remove the setting of
- $o->{autologin}, now done in any::autologin
-
- * install2.pm (miscellaneous): add setting KEYBOARD=yes in
- /etc/sysconfig/usb as asked by Lord Chmou
-
- * install_steps_gtk.pm (installPackages): do not show button "Details"
- when no advertising
-
- * interactive.pm (ask_from_entries_refH_powered_normalize): log the empty
- list instead of dying (for 8.0 only, should be switched back to die)
- (ask_from_listf): display the backtrace when empty list
-
- * any.pm (ask_users): add the empty icon
- (autologin): fix
-
-2001/04/13 warly
-
- * share/compssUsers: add ssh server in Network Computer Server
-
-2001/04/13 dam's <damien@mandrakesoft.com>
-
- * Xconfigurator.pm: updated
- updated message
-
- * standalone/draknet: message corrected
- updated
-
- * netconnect.pm: net_cnx_up/down xritten in neuneu
-
- * bootlook.pm: embedded = 0 -> local
-
-2001/04/13 fabman
-
- * share/po/es.po: synchro with EN
-
-2001/04/13 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_gtk.pm: avoid illegal modulus zero if no advertizing is
- available.
- fixed very old typo not encountered before;
-
-2001/04/13 Pixel <pixel@mandrakesoft.com>
-
- * common.pm (backtrace): created
-
- * install_steps_interactive.pm (addUser): remove the setting of
- $o->{autologin}, now done in any::autologin
-
- * install2.pm (miscellaneous): add setting KEYBOARD=yes in
- /etc/sysconfig/usb as asked by Lord Chmou
-
- * install_steps_gtk.pm (installPackages): do not show button "Details"
- when no advertising
-
- * interactive.pm (ask_from_entries_refH_powered_normalize): log the empty
- list instead of dying (for 8.0 only, should be switched back to die)
- (ask_from_listf): display the backtrace when empty list
-
- * any.pm (ask_users): add the empty icon
- (autologin): fix
-
-2001/04/13 warly
-
- * share/compssUsers: add ssh server in Network Computer Server
- add DATABASES to Database
- add icons for server
-
-2001/04/13 dam's <damien@mandrakesoft.com>
-
- * network.pm: updated wireless configuration
-
- * netconnect.pm: corrected loop in isdn + other things
-
- * bootlook.pm: embedded = 0 -> local
-
- * standalone/draknet: updated
- added delete event
-
-2001/04/13 François Pons <fpons@mandrakesoft.com>
-
- * netconnect.pm: fixed syntax error :-)
-
- * install_steps.pm, install_steps_gtk.pm: added conditional update-menus
- if package are installed.
-
- * install_steps_interactive.pm: added conditional update-menus if package
- are installed.
- make sure update-menus is called after installing cups related packages.
-
-2001/04/13 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hr.po, share/po/fr.po, share/po/sv.po, share/po/hu.po: Updated
- Croatian and Swedish files
-
- * share/po/sl.po, share/po/cy.po, share/po/ca.po, share/po/ga.po,
- share/po/is.po, share/po/cs.po: Removed po files with too low leve lof
- translating ( < 60% )
- so they are not included on final CD
-
-2001/04/13 Pixel <pixel@mandrakesoft.com>
-
- * common.pm (backtrace): created
-
- * install_steps_interactive.pm (addUser): remove the setting of
- $o->{autologin}, now done in any::autologin
-
- * bootlook.pm: don't use Locale::GetText, use DrakX's i18n
-
- * install2.pm (miscellaneous): add setting KEYBOARD=yes in
- /etc/sysconfig/usb as asked by Lord Chmou
-
- * interactive.pm (ask_from_entries_refH_powered_normalize): log the empty
- list instead of dying (for 8.0 only, should be switched back to die)
- (ask_from_listf): display the backtrace when empty list
-
- * my_gtk.pm (new): make dams happy
-
- * any.pm (ask_users): add the empty icon
- (autologin): fix
-
-2001/04/13 warly
-
- * share/compssUsers: add DATABASES to Database
- add icons for server
-
-2001/04/12 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/dhcp.c: remove unnecessary redhat history code
-
-2001/04/12 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fixed wrong kernel version extraction (typically for
- upgrade).
-
- * install_steps_interactive.pm: removed Cancel of Summary.
- fixed ask printer configuration.
-
- * detect_devices.pm: fix Hewlett-Packard to HP in case.
-
- * standalone/printerdrake: never ask to configure a printer in standalone.
-
- * printerdrake.pm: automatically add a queue if nothing exists.
- fixed ask to configure a printer.
-
- * interactive.pm: removed strict die on empty list.
-
- * live_install2: added some gtk and gdk_imlib missing variables.
-
- * live_install: removed gtk variable for data, moved to second script.
-
- * modules.pm, commands.pm, lang.pm, pkgs.pm, keyboard.pm: fixed log of
- packdrake.
-
-2001/04/12 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/dhcp.c: remove unneeded #define
-
- * standalone/drakgw: add some rule so later on tinyfirewall will not
- prevent everything from working
-
- * share/po/fr.po: minor fix
- write some ppc translations
-
-2001/04/12 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/it.po: Updated Italian file
-
-2001/04/12 Pixel <pixel@mandrakesoft.com>
-
- * printer.pm: use run_program and remove "require run_program"s
-
- * my_gtk.pm (main): only accept X (gdk) events key_press, key_release and
- exposure (so
- that not to receive motion_notify which would generate focus_out in
- non-interesting cases)
-
- * interactive.pm (ask_from_entries_refH_powered_normalize): fix the test
- for empty lists
- (ask_from_entries_refH_powered_normalize):
- - when not_edit and empty list, die.
- - when not_edit and single element list, don't display that entry.
-
- * lang.pm (pack_langs): set RPM_INSTALL_LANG for package "menu"
-
- * modules.pm (configure_pcmcia): better handling for not running cardmgr
- many times
- (configure_pcmcia): always run cardmgr so that it is run even if stage1
- did create a /var/run/stab. This is just a try :-/
-
-2001/04/12 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: if neuneu but explicited clicked, don't skip
- corrected pcmcia driver
-
-2001/04/12 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: removed Cancel of Summary.
- fixed ask printer configuration.
-
- * common.pm: improved bestMatchSentence2.
-
- * detect_devices.pm: fix Hewlett-Packard to HP in case.
-
- * standalone/printerdrake: never ask to configure a printer in standalone.
-
- * printerdrake.pm: automatically add a queue if nothing exists.
- fixed ask to configure a printer.
-
- * interactive.pm: removed strict die on empty list.
-
- * modules.pm, commands.pm, lang.pm, keyboard.pm, pkgs.pm: fixed log of
- packdrake.
-
-2001/04/12 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw: add some rule so later on tinyfirewall will not
- prevent everything from working
-
- * share/po/fr.po: write some ppc translations
- un-dadouize a problem
-
-2001/04/12 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/it.po: Updated Italian file
-
-2001/04/12 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (installPackages): fix no advertising with less
- than 20MB of packages
-
- * interactive.pm (ask_from_entries_refH_powered_normalize):
- - when not_edit and empty list, die.
- - when not_edit and single element list, don't display that entry.
-
- * install_steps_interactive.pm (configureX): fix for X test at install
- with exotic fonts
-
- * lang.pm (pack_langs): set RPM_INSTALL_LANG for package "menu"
-
- * modules.pm (configure_pcmcia): better handling for not running cardmgr
- many times
- (configure_pcmcia): always run cardmgr so that it is run even if stage1
- did create a /var/run/stab. This is just a try :-/
-
-2001/04/12 dam's <damien@mandrakesoft.com>
-
- * bootlook.pm: corrected typo
- added use bootloader
-
- * standalone/net_monitor: typo
-
- * netconnect.pm: if neuneu but explicited clicked, don't skip
- corrected pcmcia driver
- corrected typo
-
- * lang.pm: pixel sux
-
- * network.pm, standalone/draknet: corrected network connection
-
- * my_gtk.pm: corrected set_modal
-
-2001/04/12 fabman
-
- * share/po/es.po: updated spanish .po files
-
-2001/04/12 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: removed Cancel of Summary.
- fixed ask printer configuration.
-
- * common.pm: improved bestMatchSentence2.
-
- * detect_devices.pm: fix Hewlett-Packard to HP in case.
-
- * standalone/printerdrake: never ask to configure a printer in standalone.
-
- * printerdrake.pm: automatically add a queue if nothing exists.
- fixed ask to configure a printer.
-
- * modules.pm, commands.pm, lang.pm, keyboard.pm, pkgs.pm: fixed log of
- packdrake.
-
-2001/04/12 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: un-dadouize a problem
- sync
-
-2001/04/12 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sp.po, share/po/fi.po, share/po/DrakX.pot,
- share/po/zh_CN.GB2312.po, share/po/es.po, share/po/fr.po,
- share/po/sr.po, share/po/de.po, share/po/el.po, share/po/et.po,
- share/po/sk.po, share/po/eu.po, share/po/sl.po, share/po/vi.po,
- share/po/ko.po, share/po/eo.po, share/po/ja.po, share/po/wa.po,
- share/po/sv.po, share/po/da.po, share/po/is.po, share/po/zh_TW.Big5.po,
- share/po/id.po: Updated Chinese file
-
- * share/po/it.po: Updated Italian file
- Updated Chinese file
-
-2001/04/12 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (installPackages): fix no advertising with less
- than 20MB of packages
-
- * interactive.pm (ask_from_entries_refH_powered_normalize):
- - when not_edit and empty list, die.
- - when not_edit and single element list, don't display that entry.
-
- * install_steps_interactive.pm (configureX): fix for X test at install
- with exotic fonts
-
- * lang.pm (pack_langs): set RPM_INSTALL_LANG for package "menu"
-
- * modules.pm (configure_pcmcia): better handling for not running cardmgr
- many times
- (configure_pcmcia): always run cardmgr so that it is run even if stage1
- did create a /var/run/stab. This is just a try :-/
-
-2001/04/12 siegel
-
- * share/po/de.po: new german version
-
-2001/04/12 yduret
-
- * bootlook.pm: added some stuff
-
-2001/04/11 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm: no setmodal 0 if wizard
-
-2001/04/12 dam's <damien@mandrakesoft.com>
-
- * bootlook.pm: corrected typo
- added use bootloader
-
- * netconnect.pm: corrected typo
-
-2001/04/12 fabman
-
- * share/po/es.po: updated spanish .po files
-
-2001/04/12 siegel
-
- * share/po/de.po: new german version
-
-2001/04/11 dam's <damien@mandrakesoft.com>
-
- * share/themes-mdk.rc: tooltips
-
- * netconnect.pm: updated
-
- * my_gtk.pm: no setmodal 0 if wizard
-
-2001/04/11 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (reallyChooseGroups): relook
-
- * install_steps_interactive.pm (chooseGroups): warn if chosen size is too
- big
-
- * share/compssUsers: adapt for new profile choosing layout
-
-2001/04/11 yduret
-
- * bootlook.pm: bug fix in autologin
-
-2001/04/11 dam's <damien@mandrakesoft.com>
-
- * share/themes-mdk.rc: tooltips
-
- * bootlook.pm: updated
- corrected
-
- * tinyfirewall.pm: installation of package : not at the same place
-
- * netconnect.pm: updated
- added driver for pcmcia, corrected eth conf for pppoe
-
-2001/04/11 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: added missing LD_LOADER for calling rpm.
-
- * printerdrake.pm: fixed probe on kernel 2.4.
- make printer devices more accurate.
- removed limitation to only one port probed
-
- * pkgs.pm: added missing use of LD_LOADER for starting parsehdlist on
- upgrade.
-
- * detect_devices.pm: avoid need of shell for live upgrade on serial_probe
- (removed 2>/dev/null which
- is not necessary).
- fixed printer probe (usb and parallel).
-
- * mouse.pm: fix wacom usb tablet
-
- * standalone/printerdrake: added missing take into account of
- /etc/modules.conf
-
- * lang.pm: added missing LD_LOADER reference and remove old code
- commented.
-
-2001/04/11 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: unfuzzyize
- sync with new msg in services.pm and compssUsers
- sync with pablo update
- fixes of translations
- write the shitload of untranslated and fuzzy msg
-
- * standalone/tinyfirewall: i18n title
-
- * services.pm: have many more services tooltipped from here so we can get
- translations afterwards
-
- * share/compssUsers: fix typos of rpmsrate groups
-
- * standalone/drakgw: kosmetik
- do i18n for title also
-
-2001/04/11 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/rpmsrate: Added reference to netscape-chinese_big5 file
-
- * share/po/DrakX.pot, share/po/wa.po: Updated Walloon file
- Updated po files
- Updated Slovak, Walloon and Polish files
-
- * share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/de.po,
- share/po/ko.po, share/po/ja.po, share/po/is.po, share/po/zh_TW.Big5.po,
- share/po/it.po, share/po/id.po, share/po/pl.po, share/po/fi.po,
- share/po/zh_CN.GB2312.po, share/po/sk.po, share/po/vi.po,
- share/po/ca.po, share/po/cs.po: Updated po files
- Updated Slovak, Walloon and Polish files
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/ga.po,
- share/po/sr.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
- share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
- share/po/cy.po, share/po/nl.po, share/po/sv.po, share/po/hu.po,
- share/po/no.po, share/po/th.po, share/po/el.po, share/po/lt.po,
- share/po/sl.po, share/po/br.po, share/po/gl.po, share/po/lv.po,
- share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/da.po,
- share/po/af.po: Updated po files
-
-2001/04/11 Pixel <pixel@mandrakesoft.com>
-
- * run_program.pm (rooted): don't call install_any::check_prog if rooted
-
- * standalone/drakboot: make it work (why was bootloader::install
- commented?)
-
- * share/compssUsers: adapt for new profile choosing layout
-
- * Makefile: take cardmgr-*
-
- * install_steps_interactive.pm (chooseGroups): warn if chosen size is too
- big
- translate the ``path'' in profile selection
-
- * share/po/i18n_compssUsers: relooking
-
- * any.pm (setupBootloader): translate the bootloaders to use
- (setupBootloader): nicer look&feel
-
- * install_any.pm (fsck_option): add a closing ``"'' so that strings to
- i18n extraction works
- (fsck_option): add a closing ``"'' so that strings to i18n extraction
- works
- (check_prog): make it work
-
- * install_steps_gtk.pm (reallyChooseGroups): relook
- (installPackages): pressing "Details" gives you more detailed info
- (reallyChooseGroups): start relooking
- (installPackages): don't display advertising if less 20MB of packages
- translate the ``path'' in profile selection
-
-2001/04/11 warly
-
- * share/compssUsers: Add descr for servers
-
-2001/04/11 François Pons <fpons@mandrakesoft.com>
-
- * printerdrake.pm: make printer devices more accurate.
- removed limitation to only one port probed
-
- * mouse.pm: fix wacom usb tablet
-
- * standalone/printerdrake: added missing take into account of
- /etc/modules.conf
-
- * detect_devices.pm: fixed printer probe (usb and parallel).
-
-2001/04/11 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * services.pm: have many more services tooltipped from here so we can get
- translations afterwards
-
- * share/po/fr.po: write the shitload of untranslated and fuzzy msg
-
- * share/compssUsers: fix typos of rpmsrate groups
-
-2001/04/11 Pixel <pixel@mandrakesoft.com>
-
- * run_program.pm (rooted): don't call install_any::check_prog if rooted
-
- * diskdrake.pm (More): fix exception relaunching
-
- * install_any.pm (check_prog): make it work
-
- * any.pm (setupBootloader): nicer look&feel
-
- * standalone/drakboot: make it work (why was bootloader::install
- commented?)
-
- * Makefile: take cardmgr-*
-
-2001/04/11 fabman
-
- * share/po/es.po: updated spanish .po file
-
-2001/04/11 François Pons <fpons@mandrakesoft.com>
-
- * printerdrake.pm: make printer devices more accurate.
- removed limitation to only one port probed
-
- * mouse.pm: fix wacom usb tablet
-
- * standalone/printerdrake: added missing take into account of
- /etc/modules.conf
-
- * detect_devices.pm: fixed printer probe (usb and parallel).
-
-2001/04/11 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: write the shitload of untranslated and fuzzy msg
-
-2001/04/11 Pixel <pixel@mandrakesoft.com>
-
- * tools/make_mdkinst_stage2: to lighten mdkinst_stage2:
- - completly remove po's (will be getFile'd)
- - remove LVM progs, resize_reiserfs, big fonts (will be getFile'd)
-
- * standalone/drakboot: make it work (why was bootloader::install
- commented?)
-
- * share/aliases: add rmmod -> insmod_
-
- * lang.pm (get_x_fontset): special cases for some big (size) fonts
-
- * Makefile: take cardmgr-*
-
- * install_any.pm (check_prog): make it work
- (check_prog): if a prog isn't available, try to fetch it via getFile
- (remove_bigseldom_used): created, purpose: remove unneeded stuff on
- stage2
- to allow a getAndSaveFile.
- (getAndSaveFile): if only one arg is given, assume the name is the same
-
- * standalone/XFdrake: fix bug for running xfs
-
- * any.pm (setupBootloader): nicer look&feel
-
- * diskdrake.pm (More): fix exception relaunching
- check resize_reiserfs is there or get it
-
- * run_program.pm (rooted): don't call install_any::check_prog if rooted
- in install, call install_any::check_prog to allow shadow progs which are
- fetched when needed via getFile
-
- * share/list: remove rmmod (is now a symlink)
-
-2001/04/11 siegel
-
- * share/po/de.po: updated german version
-
-2001/04/10 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ca.po: Updated Catalan file
-
-2001/04/10 Pixel <pixel@mandrakesoft.com>
-
- * Makefile:
- - fix wiz_*.png removing
- - fix copying cardmgr* which included cardmgr.o
-
-2001/04/11 Pixel <pixel@mandrakesoft.com>
-
- * tools/make_mdkinst_stage2: to lighten mdkinst_stage2:
- - completly remove po's (will be getFile'd)
- - remove LVM progs, resize_reiserfs, big fonts (will be getFile'd)
-
- * standalone/XFdrake: fix bug for running xfs
-
- * diskdrake.pm: check resize_reiserfs is there or get it
-
- * share/aliases: add rmmod -> insmod_
-
- * install_any.pm (check_prog): if a prog isn't available, try to fetch it
- via getFile
- (remove_bigseldom_used): created, purpose: remove unneeded stuff on
- stage2
- to allow a getAndSaveFile.
- (getAndSaveFile): if only one arg is given, assume the name is the same
-
- * share/list: remove rmmod (is now a symlink)
-
- * run_program.pm: in install, call install_any::check_prog to allow shadow
- progs which are
- fetched when needed via getFile
-
- * lang.pm (get_x_fontset): special cases for some big (size) fonts
-
-2001/04/10 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: corrected bad network restart
-
- * my_gtk.pm: corrected bad font
-
- * network.pm: get rid of ifcfg-
- minor correction
-
-2001/04/10 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: fixed selection of CDs.
-
- * devices.pm: added input/event class of devices (necessary for usb wacom
- at install)
-
-2001/04/10 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/mkinitrd_helper/mkinitrd_helper.c,
- mdk-stage1/mkinitrd_helper/Makefile:
- - honour quiet mode at boot time
- - fake modprobe to shut up kmod
-
- * bootlook.pm: do not use french in i18n'ed msg yvounet!!
-
- * standalone/drakgw: add INTERFACE param in sysconfig parameter for smooth
- interoperation with bastille-firewall
-
-2001/04/10 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/cs.po: Updated Czech file
- Updated po files
-
- * share/po/ko.po, share/po/ja.po, share/po/id.po, share/po/vi.po: Updated
- Indonesian, Japanese, Korean and Vietnamese files
- Updated po files
-
- * share/po/DrakX.pot, share/po/wa.po, share/po/fi.po: Added a missing
- translatable string
- Updated po files
-
- * share/po/ca.po: Updated Catalan file
- Updated po files
-
- * share/locales.tar.bz2: Added missing file for Vietnamese
-
- * share/po/bg.po: Updated Bulgarian file
- Updated po files
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/es.po,
- share/po/fr.po, share/po/ga.po, share/po/sr.po, share/po/de.po,
- share/po/et.po, share/po/tr.po, share/po/eu.po, share/po/az.po,
- share/po/ru.po, share/po/pt_BR.po, share/po/hr.po, share/po/cy.po,
- share/po/nl.po, share/po/sv.po, share/po/is.po, share/po/hu.po,
- share/po/zh_TW.Big5.po, share/po/it.po, share/po/pl.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/br.po,
- share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
- share/po/ro.po, share/po/da.po, share/po/af.po: Updated po files
-
-2001/04/10 Pixel <pixel@mandrakesoft.com>
-
- * interactive_gtk.pm: use gtkset_tip (so that no tip is set when tip eq
- '')
- (create_boxradio): handle double_click
- (ask_from_entries_refW): use radio boxes instead of list/clist if small
- number
- of choices
- (create_ctree): handle single click on node opens the node
-
- * my_gtk.pm: create and use gtkset_tip
- (_create_window): XSetInputFocus done only on expose_event of the
- topmost window
- (new): ensure only one modal
-
- * Xconfigurator.pm (main): have an "Ok" button to leave
-
- * install_steps_gtk.pm: use gtkset_tip
- (choosePackagesTree): fix "Show automatically selected packages"
- create and use gtkset_tip
-
- * Makefile:
- - fix wiz_*.png removing
- - fix copying cardmgr* which included cardmgr.o
-
-2001/04/10 warly
-
- * share/rpmsrate: add viavoicemenu_{us,gr,fe}
-
-2001/04/10 yduret
-
- * bootlook.pm: grub/lilo mode
-
-2001/04/10 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: corrected bad network restart
-
- * my_gtk.pm: corrected bad font
-
- * network.pm: get rid of ifcfg-
- minor correction
-
-2001/04/09 dam's <damien@mandrakesoft.com>
-
- * tinyfirewall.pm: typo
-
-2001/04/09 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake.pm (Create): check for 40MB instead of 32MB for min reiserfs
- size as the check is done before rounding.
-
- * bootloader.pm (install_grub): altconfigfile only if /boot is not
- reiserfs :-/
-
- * tools/make_mdkinst_stage2: fix the stage2 too big (was keeping too many
- modules.cz)
-
- * install_any.pm (setPackages): also have SOUND set in compssUsersChoice
- based on pciusbtable
-
- * share/compssUsers, share/rpmsrate:
- - SOUND is now a flag
- - AUDIO is the group
-
-2001/04/09 siegel
-
- * tinyfirewall.pm: i18n fixes
-
-2001/04/09 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: fixes of grub installation using hd.img
- fix the fix for loopback mounting of hd.img.
-
- * Xconfigurator.pm: fixed always 8bpp for autoDefaultDepth.
-
- * pkgs.pm: changed transaction error management this way: if a transaction
- fails, DrakX
- tries to make as many transaction as there are package that have failed
- to be
- installed (this means one transaction of only one package). This help
- installing
- most package that are correct (as a transaction that failed cause all
- remaining
- package to be not installed).
-
-2001/04/09 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/Makefile: 8.0rc -> 8.0
-
- * rescue/tree/etc/oem: fix english thanks to Kevin
-
- * standalone/drakgw: do not die when an initscript returns non-0
- (initscripts too buggy)
-
-2001/04/09 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/vi.po,
- share/po/br.po, share/po/gl.po, share/po/ca.po, share/po/lv.po,
- share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/da.po,
- share/po/cs.po, share/po/af.po: Updated Danish file
-
- * any.pm: changed ISO_8859-1 TO ISO-8859-1
-
-2001/04/09 Pixel <pixel@mandrakesoft.com>
-
- * c/stuff.xs.pm, install_steps.pm, any.pm: create to_utf8 from po strings,
- use it for kdm message
-
- * diskdrake.pm (Create): check for 40MB instead of 32MB for min reiserfs
- size as the check is done before rounding.
-
- * bootloader.pm (install_grub): altconfigfile only if /boot is not
- reiserfs :-/
-
- * tools/make_mdkinst_stage2: fix the stage2 too big (was keeping too many
- modules.cz)
-
- * install2.pm (main): sets umask (seems like default one is no more 022,
- kernel change?)
-
- * Xconfigurator_consts.pm, Xconfig.pm, Xconfigurator.pm: handle XkbModel
- (especially for abnt2 (br))
-
- * install_any.pm (setPackages): also have SOUND set in compssUsersChoice
- based on pciusbtable
-
- * share/compssUsers, share/rpmsrate:
- - SOUND is now a flag
- - AUDIO is the group
-
- * lang.pm (load_po): sets $lang::charset to the charset used in the po
-
-2001/04/09 siegel
-
- * share/po/de.po: fixes
-
- * Xconfigurator.pm: fixed i18n bug
-
-2001/04/09 yduret
-
- * standalone/tinyfirewall: button policy (thx gc)
-
- * standalone/drakgw: deyvounification : remove some un-useful comments in
- code
-
-2001/04/09 dam's <damien@mandrakesoft.com>
-
- * tinyfirewall.pm: corrected
-
- * standalone.pm: install function now returns the return value of the
- system.
-
- * netconnect.pm: corrected buggy cable
- removed buggy modem screen repetition
-
-2001/04/09 François Pons <fpons@mandrakesoft.com>
-
- * standalone/mousedrake: fixed mousedrake (with interactive.pm fixes
- applied).
- fixed cancel support.
- added conditional restart of gpm on mouse configuration change.
-
- * fs.pm: removed notail option for reiserfs.
-
- * standalone/keyboarddrake: fixed exit on cancel (should cause trouble in
- DrakConf only).
-
- * install_any.pm: added missing package to copy.
-
- * rescue/tree/etc/oem: fixes of grub installation using hd.img
- fix the fix for loopback mounting of hd.img.
- fixed hd.img access right.
- make kernel22 installed for every oem install...
- moved some package to closure instead of installed.
- added some missing packages.
- added nolock option for nfsmount.
- added missing package to copy.
-
-2001/04/09 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/init.c: fix Traktopel Maxim thanks to Kevin Lawton
-
- * mdk-stage1/Makefile: 8.0beta -> 8.0rc
-
- * standalone/drakgw: fix for when there is an already existing rc.firewall
- complies with old format of drakgw so that upgrades will work
-
- * rescue/tree/etc/oem: fix english thanks to Kevin
-
-2001/04/09 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * any.pm: changed ISO_8859-1 TO ISO-8859-1
-
-2001/04/09 Pixel <pixel@mandrakesoft.com>
-
- * c/stuff.xs.pm, install_steps.pm, any.pm: create to_utf8 from po strings,
- use it for kdm message
-
- * interactive.pm (ask_from_treelistf): make it behaves correctly when
- "cancel" is clicked
-
- * Xconfigurator_consts.pm, Xconfig.pm, Xconfigurator.pm: handle XkbModel
- (especially for abnt2 (br))
-
- * install2.pm (main): sets umask (seems like default one is no more 022,
- kernel change?)
- (main): log the umask
-
- * devices.pm (entry): add hd[ijkl]*
-
- * bootloader.pm (install_lilo): better handling of map-drive (there's not
- always only 2 disks!)
-
- * lang.pm (load_po): sets $lang::charset to the charset used in the po
-
-2001/04/09 siegel
-
- * share/po/de.po: fixes
-
-2001/04/09 yduret
-
- * standalone/drakboot: added lilo/grub
-
- * bootlook.pm: added lilo/grub mode
-
-2001/04/09 dam's <damien@mandrakesoft.com>
-
- * modules.pm: removed use install_any
-
- * tinyfirewall.pm: corrected
-
- * netconnect.pm: corrected buggy cable
- removed buggy modem screen repetition
- corrected bad bug when creating new profile
-
- * standalone.pm: install function now returns the return value of the
- system.
-
- * Makefile: removed install_any
-
-2001/04/09 François Pons <fpons@mandrakesoft.com>
-
- * standalone/mousedrake: fixed mousedrake (with interactive.pm fixes
- applied).
- fixed cancel support.
- added conditional restart of gpm on mouse configuration change.
-
- * rescue/tree/etc/oem: fixed hd.img access right.
- make kernel22 installed for every oem install...
- moved some package to closure instead of installed.
- added some missing packages.
- added nolock option for nfsmount.
- added missing package to copy.
-
- * fs.pm: removed notail option for reiserfs.
-
- * standalone/keyboarddrake: fixed exit on cancel (should cause trouble in
- DrakConf only).
-
- * printer.pm: added Till patch for printer (raw queue and PostScript
- queue).
-
- * install_any.pm: added missing package to copy.
-
-2001/04/09 kjx
-
- * share/po/zh_CN.GB2312.po: translate before 8.0 release
-
-2001/04/09 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm (main): log the umask
-
- * interactive.pm (ask_from_treelistf): make it behaves correctly when
- "cancel" is clicked
-
- * devices.pm (entry): add hd[ijkl]*
-
- * bootloader.pm (install_lilo): better handling of map-drive (there's not
- always only 2 disks!)
-
-2001/04/09 yduret
-
- * bootlook.pm: fix, added lilo/grub frame
- fixed till bug
-
-2001/04/08 dam's <damien@mandrakesoft.com>
-
- * rescue/tree/etc/oem, rescue/tree/etc/closurepkgs, install_any.pm: get
- rid of kisdn
-
- * tinyfirewall.pm: updated
- added package installation
-
- * netconnect.pm: get rid of kisdn
- updated
- no more askwarn in wizard mode
- updated
-
- * standalone/tinyfirewall, standalone/drakgw, my_gtk.pm,
- netconnect_consts.pm: updated
-
- * standalone/net_monitor: removed Data::Dumper
- typo
-
- * standalone/draknet: updated
- typo
- corrected bad isdn field
-
-2001/04/08 daouda
-
- * share/rpmsrate: increase quanta weight .
-
-2001/04/08 fabman
-
- * share/po/es.po: updated spanish .po files
-
-2001/04/08 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * modules.pm: correct my mistakes on removing some modules from stage1 and
- stage2 (-> remove only from stage1)
-
-2001/04/08 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/compssUsers.desktop, standalone/draknet: Fixed some english typos
-
- * standalone/net_monitor, netconnect.pm: Some English changes
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/vi.po,
- share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
- share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/da.po,
- share/po/cs.po, share/po/af.po: Fixed some english typos
- Updated pot file and various po files
-
-2001/04/08 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm (write): remove debugging info :-(
-
- * bootloader.pm (suggest): add option "quiet" to the kernel in fb
- (requested by chmou)
-
- * install_steps.pm (afterInstallPackages): remove setting of kde charset
- in kdeglobals (kde is a grown-up now)
-
-2001/04/08 siegel
-
- * share/po/de.po: new german version
- updates
-
-2001/04/07 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: typo
- typo
- net_monitor incorporation
-
- * standalone/net_monitor, Makefile.config: net_monitor incorporation
-
-2001/04/07 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hr.po: updated Croatian files
-
- * share/po/wa.po, share/po/sr.po, share/po/sp.po, share/po/DrakX.pot,
- share/po/ko.po, share/po/it.po: Updated Korean, Italian, Serbian and
- Walloon files
-
-2001/04/07 warly
-
- * share/compssUsers: PCL-CVS release v2_9_9
- Repository : :ext:warly@cvs.mandrakesoft.com:/home/cvs/cooker
- Working directory: /home/warly/local/share/mdk/gi/perl-install/share/
- In directory .:
- Modified compssUsers
- In directory po:
- patched Up-To-Date po/DrakX.pot
- patched Up-To-Date po/ca.po
- patched Up-To-Date po/de.po
- patched Up-To-Date po/hr.po
- patched Up-To-Date po/id.po
- patched Up-To-Date po/it.po
- patched Up-To-Date po/ja.po
- patched Up-To-Date po/ko.po
- patched Up-To-Date po/sp.po
- patched Up-To-Date po/sr.po
- patched Up-To-Date po/vi.po
- patched Up-To-Date po/wa.po
-
- --------------------- End ---------------------
- -- last cmd: cvs -f update -d -P --
-
- * share/rpmsrate: PCL-CVS release v2_9_9
- Repository : :ext:warly@cvs.mandrakesoft.com:/home/cvs/cooker
- Working directory: /home/warly/local/share/mdk/gi/perl-install/share/
- In directory .:
- Modified rpmsrate
-
- --------------------- End ---------------------
- -- last cmd: cvs -f update -d -P --
-
-2001/04/06 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: fixed absence of /boot in install CD for oem stuff.
-
-2001/04/06 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * modules.pm: use jeff's suggestions to remove some old stuff
- Sun Happy Meal only for Sparc
-
- * mdk-stage1/stdio-frontend.c, mdk-stage1/probing.c, mdk-stage1/modules.c:
-
- - do not print warning when we are in AUTOMATIC and insmod failed
- because of file-not-found in mar file (raid cards, etc)
- - print "please include msg from Alt-F3" for this warning message to
- ease further support
- - print pci entry of cards found in te logs
-
- * mdk-stage1/mkinitrd_helper/mkinitrd_helper.c,
- mdk-stage1/mkinitrd_helper/Makefile: steal raid_autorun from rh
-
-2001/04/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ca.po, share/po/id.po: Updated Catalan and Indonesian files
-
- * share/po/ja.po, share/po/vi.po: Updated Japanese and Vietnamese files
-
-2001/04/06 siegel
-
- * share/po/de.po: updates
-
-2001/04/06 yduret
-
- * standalone/drakgw: swap cancel/configure button
-
-2001/04/06 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet2: dead code
-
- * standalone/net_monitor: updated
-
- * netconnect.pm: be quiet
-
-2001/04/06 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: fixed absence of /boot in install CD for oem stuff.
- fixed if label does not exists and grub refuse to read.
-
- * install_steps_interactive.pm: fixed typo for cups checking of
- installation.
- fixed "No printer" after configuring cups for remove server.
- added log for CD medium chosen par user.
-
- * pkgs.pm: added killing on child process of transaction that have been
- detached (typically
- with pid > transaction_pid and parent is 1).
-
-2001/04/06 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw:
- - correct yvounetification in i18n stuff
- - remove some remaining debugging printings
- - add a bit more of explanations when starting drakgw in wizard mode
-
- * modules.pm: re integrate some TR net cards
-
- * mdk-stage1/stdio-frontend.c, mdk-stage1/probing.c, mdk-stage1/modules.c:
-
- - do not print warning when we are in AUTOMATIC and insmod failed
- because of file-not-found in mar file (raid cards, etc)
- - print "please include msg from Alt-F3" for this warning message to
- ease further support
- - print pci entry of cards found in te logs
-
-2001/04/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/vi.po,
- share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
- share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/da.po,
- share/po/cs.po, share/po/af.po: Updated Thai file
- Updated pot file
-
-2001/04/06 yduret
-
- * standalone/drakgw: swap cancel/configure button
-
-2001/04/06 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm: addde tk like routines
-
- * netconnect.pm: be quiet
- correctedInternetAccessTye and ADSLType
-
- * Makefile: iCorrected missing file install_any.pm. pixel sux.
-
- * standalone/draknet2: dead code
-
- * standalone/net_monitor: updated
- updated
- updated
- updated
- updated
- added
-
- * pixmaps/net_d.png, pixmaps/net_c.png: added
-
- * share/logo-mandrake.png: new icon
-
-2001/04/06 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: fixed if label does not exists and grub refuse to
- read.
-
- * install_steps_interactive.pm: fixed typo for cups checking of
- installation.
- fixed "No printer" after configuring cups for remove server.
- added log for CD medium chosen par user.
-
- * pkgs.pm: added killing on child process of transaction that have been
- detached (typically
- with pid > transaction_pid and parent is 1).
-
-2001/04/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/vi.po,
- share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
- share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/da.po,
- share/po/cs.po, share/po/af.po: Updated Thai file
- Updated pot file
-
-2001/04/06 Pixel <pixel@mandrakesoft.com>
-
- * tools/make_mdkinst_stage2: instead of removing modules.cz-2.2*, remove
- every modules.cz except the
- biggest one
-
- * install_steps.pm, fs.pm, install2.pm: create install_any::write_fstab
- and use it
-
- * install_any.pm: add write_fstab
- create install_any::write_fstab and use it
-
-2001/04/06 yduret
-
- * bootlook.pm: minor fix
-
- * standalone/drakgw: recoded a embedded && gtk mode
-
-2001/04/05 Pixel <pixel@mandrakesoft.com>
-
- * lang.pm (fs_options): created (gets codepage and iocharset)
-
- * common.pm (if_): better logging of the error
-
-2001/04/06 Pixel <pixel@mandrakesoft.com>
-
- * tools/make_mdkinst_stage2: instead of removing modules.cz-2.2*, remove
- every modules.cz except the
- biggest one
-
- * install_steps.pm, fs.pm, install2.pm: create install_any::write_fstab
- and use it
-
- * install_any.pm: add write_fstab
- create install_any::write_fstab and use it
-
-2001/04/05 Pixel <pixel@mandrakesoft.com>
-
- * standalone/drakboot:
- - fix getting result of fsedit::hds
- - cleanup
-
- * lang.pm (fs_options): created (gets codepage and iocharset)
-
- * common.pm (if_): better logging of the error
- (getVarsFromSh): fix for AA="" inspired by chmou the Great (but the
- Great
- what?)
-
- * bootloader.pm (install_grub): small fix
- (install_lilo): fix lilo's dumbness (when lilo warns about not the first
- drive, it usually fails)
-
- * diskdrake.pm (More): created, asks for supermount, rescue pt, reload.
-
- * install_steps_interactive.pm (addUser): default autologin to first user
- in beginner
-
-2001/04/05 Pixel <pixel@mandrakesoft.com>
-
- * any.pm (autologin): fix
- ask for autologin
-
- * install_steps_interactive.pm: ask for autologin
- (generateAutoInstFloppy): do not use $o->{pcmcia} to know if pcmcia.img
- was used. Better have a look at /proc/cmdline
-
- * bootloader.pm (install_lilo): fix lilo's dumbness (when lilo warns about
- not the first drive, it usually fails)
-
- * pkgs.pm, share/rpmsrate:
- - s/PCI/HW/
- - add rio500
-
- * install_any.pm (kernelVersion): fix enormous stupid typo
-
- * common.pm (getVarsFromSh): fix for AA="" inspired by chmou the Great
- (but the Great
- what?)
-
- * install_steps.pm (exitInstall): oups, report_bug is no more in
- commands::
-
- * diskdrake.pm (More): created, asks for supermount, rescue pt, reload.
-
-2001/04/05 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (choosePackagesTree): invert the meaning of 'Show
- automatically selected
- packages' to go along with the new description
-
- * Xconfigurator.pm (write_XF86Config): try to have $_ interpreted
- (otherwise you get things like ``InputDevice "Stylus$_" "AlwaysCore"'')
-
- * install_any.pm (kernelVersion): fix enormous stupid typo
- - move report_bug in install_any
- - g_auto_install generates the auto_inst.cfg string without output'ing
- it
-
- * install_steps.pm (exitInstall): oups, report_bug is no more in
- commands::
- (configureXBefore): fix the xkb verification (was broken for things like
- ``de(nodeadkeys)'')
- - move report_bug in install_any
- - g_auto_install generates the auto_inst.cfg string without output'ing
- it
-
- * any.pm: ask for autologin
-
- * fs.pm (format_reiserfs): quietly format reiserfs
-
- * commands.pm:
- - move report_bug in install_any
- - g_auto_install generates the auto_inst.cfg string without output'ing
- it
-
- * install_steps_interactive.pm: ask for autologin
- (generateAutoInstFloppy): do not use $o->{pcmcia} to know if pcmcia.img
- was used. Better have a look at /proc/cmdline
- - move report_bug in install_any
- - g_auto_install generates the auto_inst.cfg string without output'ing
- it
-
- * share/rpmsrate:
- - add ldetect
- - the default Aurora chose is the categorizing one
-
-2001/04/05 siegel
-
- * share/po/de.po: fixed typo
-
-2001/04/05 yduret
-
- * bootlook.pm: fix pablo mess
- install autolgin just if we want to autolog :)
-
-2001/04/05 dam's <damien@mandrakesoft.com>
-
- * ChangeLog, bootloader.pm: readded passwd. Must verify that it's secure
- vs msec.
-
- * my_gtk.pm: added gtksize
-
-2001/04/05 fcrozat
-
- * share/rpmsrate: No longer propose nautilus-mozilla (required by
- nautilus)
- propose nautilus-trilobite (for Eazel services)
-
-2001/04/05 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (choosePackagesTree): invert the meaning of 'Show
- automatically selected
- packages' to go along with the new description
-
- * commands.pm, install_steps_interactive.pm, install_any.pm:
- - move report_bug in install_any
- - g_auto_install generates the auto_inst.cfg string without output'ing
- it
-
- * fs.pm (format_reiserfs): quietly format reiserfs
-
- * Xconfigurator.pm (write_XF86Config): try to have $_ interpreted
- (otherwise you get things like ``InputDevice "Stylus$_" "AlwaysCore"'')
-
- * share/rpmsrate:
- - add ldetect
- - the default Aurora chose is the categorizing one
-
- * install_steps.pm (configureXBefore): fix the xkb verification (was
- broken for things like ``de(nodeadkeys)'')
- - move report_bug in install_any
- - g_auto_install generates the auto_inst.cfg string without output'ing
- it
-
-2001/04/05 siegel
-
- * share/po/de.po: fixed typo
-
-2001/04/05 yduret
-
- * bootlook.pm: fix pablo mess
- install autolgin just if we want to autolog :)
-
-2001/04/04 Frederic Lepied <flepied@mandrakesoft.com>
-
- * share/rpmsrate: added SCANNER and PHOTO groups
-
-2001/04/04 François Pons <fpons@mandrakesoft.com>
-
- * printerdrake.pm: make sure to insmod parport_probe alone as it is not
- available in 2.4 kernel and
- this this not a problem (silent error).
- added complete callback to check queue name under cups does contains
- only letters, numerics or underscore.
-
- * install_steps_interactive.pm: fixed printer description in summary.
-
- * install2.pm: added selectPackagesToUpgrade the first time choosePackages
- is called.
-
- * Xconfigurator.pm: removed limitation to 24 bits for SiS card, make sure
- to remove 32 bits depth
- for such card.
-
- * detect_devices.pm: fixed parport probe for printer under 2.4 kernel.
-
- * diskdrake.pm: fixed adding 1 to size for resize2fs, causing a corruption
- some times.
-
- * printer.pm: added die on error of lpadmin.
-
- * install_any.pm: fixed multiple wait message (looking+finding packages)
-
-2001/04/04 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sk.po, share/po/az.po: Updated Azeri and Slovak files
-
-2001/04/04 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm (tv): add ultracam & usbvideo
- (@skip_modules_on_stage1): kaweth and pegasus doesn't work on stage1, so
- skip them
- (@skip_modules_on_stage1): kaweth and pegasus doesn't work on stage1, so
- skip them
-
- * install_any.pm (kernelVersion): cleanup
-
-2001/04/04 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * install_any.pm: kernelVersion mods for PPC
-
-2001/04/04 daouda
-
- * share/rpmsrate: add gatos for ati tv card .
-
-2001/04/04 Frederic Lepied <flepied@mandrakesoft.com>
-
- * share/rpmsrate: added SCANNER and PHOTO groups
-
-2001/04/04 François Pons <fpons@mandrakesoft.com>
-
- * live_install: unset locale environment for safety
-
- * detect_devices.pm: added missing LD_LOADER reference for /bin/dmesg
- (needed for live upgrade so
- that error message are not printed)
-
- * diskdrake.pm: fixed adding 1 to size for resize2fs, causing a corruption
- some times.
-
- * install_steps_gtk.pm: fixed to use SHARE_PATH instead of /usr/share
-
- * any.pm, netconnect.pm: use SHARE_PATH instead of /usr/share
-
- * install2.pm: added selectPackagesToUpgrade the first time choosePackages
- is called.
-
- * install_any.pm: fixed multiple wait message (looking+finding packages)
-
-2001/04/04 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (setPackages): better handling for tv, photo and scanner
-
- * modules.pm (@skip_modules_on_stage1): kaweth and pegasus doesn't work on
- stage1, so skip them
- - add photo, tv and scanner
- - add pegasus and kaweth modules
-
-2001/04/04 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: typo
-
-2001/04/04 daouda
-
- * share/rpmsrate: add gatos for ati tv card .
- reput klyx but in lower weight (2)
- removed klyx from rpmsrate (bad idea according to pixel )
- add klyx in install "Office KDE"
-
-2001/04/04 François Pons <fpons@mandrakesoft.com>
-
- * live_install: unset locale environment for safety
-
- * detect_devices.pm: added missing LD_LOADER reference for /bin/dmesg
- (needed for live upgrade so
- that error message are not printed)
-
- * install_steps_gtk.pm: fixed to use SHARE_PATH instead of /usr/share
-
- * any.pm, netconnect.pm: use SHARE_PATH instead of /usr/share
-
- * install2.pm: added selectPackagesToUpgrade the first time choosePackages
- is called.
-
- * install_steps.pm: disable frame buffer for Matrox cards.
-
- * install_any.pm: fixed multiple wait message (looking+finding packages)
-
-2001/04/04 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (setPackages): better handling for tv, photo and scanner
-
- * modules.pm (@skip_modules_on_stage1): kaweth and pegasus doesn't work on
- stage1, so skip them
- - add photo, tv and scanner
- - add pegasus and kaweth modules
-
- * share/compssUsers: remove TV (it is a hardware flag)
-
-2001/04/03 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: keep mount point configuration trhough multi-passes of
- diskdrake and others.
-
- * Xconfigurator.pm: prefer XF3 for SiS card.
-
-2001/04/03 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sr.po, share/po/sp.po, share/po/ko.po: Updated Korean file
-
-2001/04/03 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake.pm: do not use isSpecial which should only be used on
- partitions
- (main): do not have loopback pseudo hd in hds out of diskdrake
-
- * modules.pm (load_raw): add the require install_any
-
- * share/rpmsrate: restore Aurora (i really don't understand what i've done
- with flag AURORA a month ago) to a simple behaviour
-
- * install_steps_interactive.pm (choosePackages): do not make a special
- case for upgrades (was: select the
- min size, which was on contradiction with profile selection)
-
- * fs.pm (real_format_part): give "-v 1" to mkreiserfs if kernel is 2.2
-
- * standalone/mousedrake: fix horrible error (using an undefined $o)
-
- * share/list: add back mkreiserfs
-
- * standalone/XFdrake: don't start xfs if skiptest
-
- * fsedit.pm (get_fstab): restore loopback::loopbacks because hds contains
- only true
- hard drives (not pseudo one like raid, loopback and lvm)
-
- * bootloader.pm (suggest): trap strange error. Should not really fix the
- pb
-
- * install_steps.pm (setupBootloaderBefore): nicer Aurora presence
- detetection
-
- * lang.pm (charset): fix for chineese which have charset in the name
-
- * Makefile: no more special case for mkreiserfs (can be done via -v 1)
-
- * install_steps_gtk.pm (choosePackagesTree): better name than "Automatic
- dependencies"
-
- * install_any.pm (setPackages): don't preselect profiles in upgrade
- (setPackages): handle Flag:<theflag>
- (setPackages): install kernel22 if install kernel is a 2.2
-
- * lvm.pm (get_lvs): remove the setting of flag isFormatted which was wrong
- (didn't
- propose to format it)
- protect the loading of module lvm-mod
-
-2001/04/03 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * install_steps_interactive.pm, mouse.pm: PPC keyboard/mouse button
- emulation
-
-2001/04/03 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: a lot of bugfixs
- corrected bad flag test
- corrected bad priority
-
- * standalone/draknet: typo
- bug fixes
- removed debugging messages and Data::Dumper
- corrected bad flag test
-
-2001/04/03 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/vi.po, share/po/DrakX.pot: Updated Vietnamese file
-
-2001/04/03 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm (load_raw): add the require install_any
-
- * share/rpmsrate: restore Aurora (i really don't understand what i've done
- with flag AURORA a month ago) to a simple behaviour
-
- * lang.pm (charset): fix for chineese which have charset in the name
-
- * install_steps.pm (setupBootloaderBefore): nicer Aurora presence
- detetection
-
- * Makefile: no more special case for mkreiserfs (can be done via -v 1)
-
- * install_steps_interactive.pm (choosePackages): do not make a special
- case for upgrades (was: select the
- min size, which was on contradiction with profile selection)
-
- * fs.pm (real_format_part): give "-v 1" to mkreiserfs if kernel is 2.2
-
- * install_steps_gtk.pm (choosePackagesTree): better name than "Automatic
- dependencies"
-
- * install_any.pm (setPackages): don't preselect profiles in upgrade
- (setPackages): handle Flag:<theflag>
- (setPackages): install kernel22 if install kernel is a 2.2
-
- * share/list: add back mkreiserfs
-
- * standalone/XFdrake: don't start xfs if skiptest
-
- * lvm.pm (get_lvs): remove the setting of flag isFormatted which was wrong
- (didn't
- propose to format it)
- protect the loading of module lvm-mod
-
-2001/04/02 dam's <damien@mandrakesoft.com>
-
- * modules.pm: corrected petite's mistake
-
- * netconnect.pm: protecting against non existent files
-
-2001/04/02 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/make_boot_img, mdk-stage1/.cvsignore: fix
- comply to all.kernels policy
-
- * tools/make_mdkinst_stage2: fix remove of alternate cz modules
-
-2001/04/02 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/cs.po: Updated Czech file
-
- * lang.pm: codepage option to mount requires only numeric values, eg "437"
- and not "cp437"
- Changed accordingly in the lists
-
- * share/rpmsrate: Install latin2 Postscript fonts for latin2 locales,
- install fonts-ttf-thai for Thai locale
-
-2001/04/02 Pixel <pixel@mandrakesoft.com>
-
- * c/Makefile: small cleanup for pcmcia_probe.c
-
- * tools/Makefile (install): s/-r/-rf/
-
- * install_any.pm (setPackages): s/reiserfs-utils/reiserfsprogs/
- (setPackages): install imwheel if nbuttons > 3
-
- * c/Makefile.PL: small cleanup for pcmcia_probe.c
- don't use pcmcia_probe.o from stage1, better compile it here, otherwise
- perl-install require mdk-stage1 to do compiled => circular dependency
-
- * Makefile: ignore dams or at least dams errors
-
- * c/.cvsignore: add pcmcia_probe.c
-
-2001/04/02 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * rescue/make_rescue_img: fix pixelization (aka take advantage of
- all.kernels/.main)
-
-2001/04/02 Pixel <pixel@mandrakesoft.com>
-
- * tools/Makefile (install): s/-r/-rf/
-
-2001/03/30 Pixel <pixel@mandrakesoft.com>
-
- * tools/Makefile (install): fix the globbing for packdrake.pm and
- rpmtools.pm
-
-2001/03/29 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * rescue/drvinst: test for "Card:" and not install, some videoboards are
- not reported as DISPLAY_VGA :-(
-
- * tools/make_mdkinst_stage2, docs/HACKING, rescue/make_rescue_img,
- mdk-stage1/pci-resource/update-pci-ids.pl, docs/README: support more
- than one boot kernel :-)
-
- * rescue/list.i386: add reiserfsck
-
-2001/03/29 dam's <damien@mandrakesoft.com>
-
- * tinyfirewall.pm: bad message at the end if kernel2.4
-
- * netconnect.pm: added missing Device in Ethx when saving/loading
-
- * standalone/draknet: translation
-
-2001/03/28 dam's <damien@mandrakesoft.com>
-
- * standalone/tinyfirewall: typo
-
- * interactive_gtk.pm: corrected pixel shit if embedded
-
- * standalone/draksec: embedded mode
-
- * standalone/draknet: corrected gtkpng in gtkwpm
- added translation
-
- * bootlook.pm: cute button box
-
- * tinyfirewall.pm: workaround to make it work if kernel 2.4
-
-2001/03/28 fcrozat
-
- * share/rpmsrate: gmc is back in standard GNOME install, for people with
- existing home
-
-2001/03/28 François Pons <fpons@mandrakesoft.com>
-
- * standalone/mousedrake, mouse.pm, standalone/XFdrake: fixed for
- standalone XFdrake and mousedrake (multi-mouse and
- correct probe (USB)).
-
- * Xconfig.pm: re-fix mouse fix.
- fixed wrong mouse probe.
- fixed for standalone XFdrake and mousedrake (multi-mouse and
- correct probe (USB)).
-
- * Xconfigurator.pm: restore multi mouse support for XF3.
-
-2001/03/28 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hr.po, share/po/ca.po, share/po/tr.po: Updated Catalan, Danish,
- Finnish, Croatian and Turkish files
-
- * share/po/sk.po, share/po/ko.po: Updated Finnish, Korean and Slovak files
-
- * share/po/az.po: Updated Azeri and Danish files
-
- * share/po/fi.po: Updated Catalan, Danish, Finnish, Croatian and Turkish
- files
- Updated Finnish, Korean and Slovak files
-
- * share/po/da.po: Updated Catalan, Danish, Finnish, Croatian and Turkish
- files
- Updated Azeri and Danish files
-
-2001/03/28 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: add fstab in the log
-
- * interactive_gtk.pm: better default_size setting
-
- * commands.pm: fix typo
- add fstab in the log
-
- * install_gtk.pm (test_mouse): ensure the test mouse is not too big
-
-2001/03/28 warly
-
- * share/rpmsrate: add some commercial apps
-
-2001/03/27 dam's <damien@mandrakesoft.com>
-
- * bootlook.pm: added kill USR2 before main
-
- * share/help.png: changed help button
-
- * share/help.xpm: changed help
-
- * tinyfirewall.pm: workaround to make it xork.
-
-2001/03/27 François Pons <fpons@mandrakesoft.com>
-
- * mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: update boot image.
-
- * Xconfigurator.pm: fixed mouse support for XF3, only one mouse supported
- currently.
-
-2001/03/27 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/nfsmount.c: force 8192 bytes for nfs transfers
-
-2001/03/27 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/i18n_compssUsers, share/po/vi.po, share/po/fi.po,
- share/po/br.po, share/po/DrakX.pot, share/po/ko.po, share/po/ja.po,
- share/po/wa.po, share/po/de.po, share/po/id.po: Updated Vietnamese,
- Indonesian, Japanese, Korean and Walloon files
- changed i18n_compssUsers to make "path" i18n'able
-
-2001/03/27 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm: warnAboutNaughtyServers
- (setPackages): default profiles selection to GNOME, KDE, CONFIG
-
- * install_steps_interactive.pm: warnAboutNaughtyServers
- (summary): fix displaying of printer configured
-
- * pkgs.pm: warnAboutNaughtyServers
-
- * install_steps_gtk.pm (installPackages): catch the no png file exception
- (in case warly is dumb again)
-
- * my_gtk.pm: try to fix displaying in draksec
- (create_box_with_title): save the box_size in field "box_size"
-
- * install2.pm, any.pm: remove use of Bastille. get back to the good state
- we had :)
-
- * interactive_gtk.pm: try to fix displaying in draksec
-
- * share/rpmsrate: move back Bastille-Curses-module to CONFIG
- - cleanup LOCALES"zh_*": when there is LOCALES"zh_*", there is
- LOCALES"zh"
- - raise WindowMaker
- - add xfce
- - am-utils is a server
- - raise some stuff in CONFIG to have stuff there
- - remove drakxtools from CONFIG (DrakConf requires drakxtools)
- - DrakConf from 5 to 4
-
- * lang.pm (langsLANGUAGE): give the list of languages
-
-2001/03/27 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * install_steps_interactive.pm: change verbage on bootloader warning
-
-2001/03/27 siegel
-
- * share/po/de.po: minor typo-fixes
-
-2001/03/27 dam's <damien@mandrakesoft.com>
-
- * share/help.png: changed help button
-
- * share/help.xpm: changed help
-
-2001/03/27 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm, pkgs.pm: fixed too early erasing of old rpmlib db. now
- postponed at end of install
- and only if rpm-4.0 or above has been installed.
-
- * mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: update boot image.
-
- * Xconfigurator_consts.pm, mouse.pm, Xconfigurator.pm, Xconfig.pm: added
- support for two mice (laptop). The second mice is generally PS/2 as
- probe can says it is present.
-
-2001/03/27 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/nfsmount.c: force 8192 bytes for nfs transfers
-
-2001/03/27 Pixel <pixel@mandrakesoft.com>
-
- * any.pm, install2.pm: remove use of Bastille. get back to the good state
- we had :)
-
- * install_any.pm: warnAboutNaughtyServers
- (setPackages): default profiles selection to GNOME, KDE, CONFIG
-
- * share/rpmsrate: move back Bastille-Curses-module to CONFIG
- - cleanup LOCALES"zh_*": when there is LOCALES"zh_*", there is
- LOCALES"zh"
- - raise WindowMaker
- - add xfce
- - am-utils is a server
- - raise some stuff in CONFIG to have stuff there
- - remove drakxtools from CONFIG (DrakConf requires drakxtools)
- - DrakConf from 5 to 4
-
- * install_steps_interactive.pm: warnAboutNaughtyServers
- (summary): fix displaying of printer configured
-
- * lang.pm (langsLANGUAGE): give the list of languages
-
- * pkgs.pm: warnAboutNaughtyServers
-
- * install_steps_gtk.pm (installPackages): catch the no png file exception
- (in case warly is dumb again)
-
-2001/03/27 siegel
-
- * share/po/i18n_compssUsers: i18n group names
-
- * share/po/de.po: minor typo-fixes
- new german version
-
-2001/03/26 daouda
-
- * share/rpmsrate: add mandrake_desk and rootfiles to SYSTEM (rpmsrate)
-
-2001/03/26 fcrozat
-
- * share/rpmsrate: Install xscreensaver when installing GNOME
-
-2001/03/26 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw: first attempt at pixelization of code (till's cups
- patches)
-
-2001/03/26 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/hr.po, share/po/wa.po: Updated Croatian, vietnamese and Walloon
- files
-
- * share/po/vi.po: Updated Croatian, vietnamese and Walloon files
- Updated Portuguese, Swedish and Thai files
-
- * share/po/pt.po, share/po/th.po, share/po/es.po, share/po/de.po,
- share/po/sv.po: Updated Portuguese, Swedish and Thai files
-
-2001/03/25 Pixel <pixel@mandrakesoft.com>
-
- * http.pm (getFile): verify the return value of the server. If not 200
- (aka Ok),
- return undef
-
- * install_steps_interactive.pm (configurePrinter): add Mesa-common for xpp
- and libqtcups2 for kups in
- pkg_install_if_requires_satisfied
-
-2001/03/25 siegel
-
- * share/po/de.po: new german version
-
-2001/03/25 fabman
-
- * share/po/es.po: updated spanish .po file
-
-2001/03/25 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ko.po: Updated Korean file
-
- * share/po/sv.po: Updated Swedish file
-
-2001/03/25 Pixel <pixel@mandrakesoft.com>
-
- * http.pm (getFile): verify the return value of the server. If not 200
- (aka Ok),
- return undef
-
- * install_steps_interactive.pm (configurePrinter): add Mesa-common for xpp
- and libqtcups2 for kups in
- pkg_install_if_requires_satisfied
-
- * any.pm (ask_users): fix dead-loop
-
- * bootloader.pm (suggest): add entry for nt
-
-2001/03/25 siegel
-
- * share/po/de.po: new german version
-
-2001/03/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/vi.po: Updated Vietnamese file
-
-2001/03/24 Pixel <pixel@mandrakesoft.com>
-
- * mdk-stage1/pci-resource/update-pci-ids.pl: remove the "use common" which
- is unneeded (and "member" of merge2pcitable
- was clashing)
-
- * any.pm (ask_users): when "Done" is pressed, do "Accept User" if a user
- is given.
-
- * install_steps.pm (addUser): disable_user_view (in kdm/gdm) if no users
-
- * install_any.pm (disable_user_view): created, takes care of gdm too
- (taken from msec)
-
- * mouse.pm (detect): fix francois... uh, no too hard. easier to fix
- francois's bugs ;pp
-
- * timezone.pm (%l2t): fix for fuzzyChoice
-
- * share/keyboards.tar.bz2:
- - readding with -kb
- - fixing permissions on xmodmap.kr
- remove before adding again with -kb
-
- * modules.pm: have natsemi in network.img
-
-2001/03/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/vi.po,
- share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
- share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/da.po,
- share/po/cs.po, share/po/af.po: Updated Azeri file
-
-2001/03/24 Pixel <pixel@mandrakesoft.com>
-
- * mouse.pm (detect): fix francois... uh, no too hard. easier to fix
- francois's bugs ;pp
-
- * timezone.pm (%l2t): fix for fuzzyChoice
-
- * modules.pm:
- - add missing modules (now in sync with pcitable)
- - add 'media' class
- - cleanup
-
-2001/03/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/vi.po,
- share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
- share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/da.po,
- share/po/cs.po, share/po/af.po: Updated Azeri file
-
-2001/03/24 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (copy_advertising): fix escaping $f causing perl to
- segfault :-(
- (copy_advertising): handle i18n'ed advertising
-
- * pkgs.pm: cleanup
-
- * modules.pm:
- - add missing modules (now in sync with pcitable)
- - add 'media' class
- - cleanup
-
-2001/03/24 dam's <damien@mandrakesoft.com>
-
- * tinyfirewall.pm: corrected bad exited. reincorporated some ugly code,
- need fixing
-
-2001/03/24 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (copy_advertising): handle i18n'ed advertising
-
- * modules.pm (read_stage1_conf): cleanup parport stuff obsolote in kernel
- 2.4
-
-2001/03/23 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: fixed screen id for Device to be present whenever the
- same BusID is used.
- added multiple tablet support (wacom), moved usb probe for mouse and
- tablet
- at the beginning.
-
- * printerdrake.pm: Do not ask to configure a printer if standalone,
- previously only for embended.
-
- * Xconfig.pm: fixed typo for wacom.
- added multiple tablet support (wacom), moved usb probe for mouse and
- tablet
- at the beginning.
-
- * mouse.pm, detect_devices.pm, install_steps_gtk.pm, install2.pm: added
- multiple tablet support (wacom), moved usb probe for mouse and tablet
- at the beginning.
-
-2001/03/23 Pixel <pixel@mandrakesoft.com>
-
- * interactive.pm (ask_from_listf_no_check): fix the fix fix fix
- (ask_from_listf_no_check): fix the fix fix
-
- * common.pm (formatError): created
-
- * network.pm (configureNetworkIntf): gray "IP address" and "Netmask" in
- DHCP/BOOTP
-
- * diskdrake.pm (try): format the error (no more "at line ...")
- (Add2LVM): "new" was not i18n'ed
-
- * install_steps_interactive.pm (exitInstall): no "cancel" button
-
- * partition_table.pm: add Empty to bad_types
-
- * fsedit.pm (change_type): When changing a partition type from ext2fs to
- Linux RAID
- (or LVM), the mount point should be removed.
-
-2001/03/23 siegel
-
- * share/po/de.po: new german version
-
-2001/03/23 dam's <damien@mandrakesoft.com>
-
- * tinyfirewall.pm: corrected bad translation
- correctedd typo
- updated
- code cleaning
- tinyfirewall now works.
-
- * Makefile.config: added tinyfirewall
-
- * any.pm, mouse.pm: added /dev/modem in modem list selection
-
- * standalone/drakxconf: added tinyfirewall entry
-
- * standalone/tinyfirewall: added update code
- updated wrapper to launch tinyfirewall in embedded mode
-
- * netconnect.pm: added /dev/modem in modem list selection
- netconnect doesn't write the file 1
-
-2001/03/23 fcrozat
-
- * share/rpmsrate: nautilus-mozilla and xalf are installed by default in
- GNOME
- gmc is not installed by default in GNOME
- gabber gaim are moved to instant messaging
- gcombust in moved to GNOME CD burner
- gtm is installed by GNOME/File transfer
- mozilla is installed by default as www browser
- galeon is installed by default as www browser for GNOME
-
-2001/03/23 François Pons <fpons@mandrakesoft.com>
-
- * tools/syncrpms: added size-stamp test to copy identical file in version,
- release.
-
- * Xconfig.pm: fixed typo for wacom.
- added multiple tablet support (wacom), moved usb probe for mouse and
- tablet
- at the beginning.
-
- * Xconfigurator.pm: added multiple tablet support (wacom), moved usb probe
- for mouse and tablet
- at the beginning.
- fixed wrong usage of Screen keyword in Device section, should be present
- and
- reseted for any multi head card with only one BusID.
-
- * mouse.pm, detect_devices.pm, install_steps_gtk.pm, install2.pm: added
- multiple tablet support (wacom), moved usb probe for mouse and tablet
- at the beginning.
-
-2001/03/23 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/es.po, share/po/de.po, share/po/fi.po: Added Vietnamese file
- Updated Finnish file
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/fr.po, share/po/bg.po, share/po/ga.po, share/po/sr.po,
- share/po/et.po, share/po/tr.po, share/po/eu.po, share/po/az.po,
- share/po/ru.po, share/po/pt_BR.po, share/po/hr.po, share/po/ko.po,
- share/po/cy.po, share/po/nl.po, share/po/ja.po, share/po/wa.po,
- share/po/is.po, share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po,
- share/po/id.po, share/po/pl.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/vi.po,
- share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
- share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/da.po,
- share/po/cs.po, share/po/af.po: Added Vietnamese file
-
-2001/03/23 Pixel <pixel@mandrakesoft.com>
-
- * any.pm: ifix the dams stuff
-
- * install_steps_interactive.pm (exitInstall): no "cancel" button
-
- * share/po/i18n_compssUsers: fix for better compliance with po format
-
- * netconnect.pm: ifix the dams stuff
- cleanup and enable gzip'ed isdn.db
-
- * Makefile: gzip ldetect-lst files
-
- * modules.pm: add i810_audio (still need a script to add missing one and
- keep in sync)
-
- * bootloader.pm (suggest_floppy): don't add an entry for non-fd0 drives
-
- * interactive.pm (ask_from_listf_no_check): fix the fix fix fix
- (ask_from_listf_no_check): fix the fix fix
- (ask_from_listf_no_check): fix the bad fix
-
- * common.pm (formatError): created
- (openFileMaybeCompressed, catMaybeCompressed): added
- (getVarsFromSh): take care of comments
-
- * network.pm (configureNetworkIntf): gray "IP address" and "Netmask" in
- DHCP/BOOTP
-
- * partition_table.pm: add Empty to bad_types
-
- * mouse.pm (detect): never probe psaux (workaround for kernel/xfree bug)
-
- * fsedit.pm (change_type): When changing a partition type from ext2fs to
- Linux RAID
- (or LVM), the mount point should be removed.
-
- * detect_devices.pm (isUSBFDUDrive, usbfdus): removed, doesn't scale
- (isFloppyOrHD): floppy type is 'fd', not 'floppy'
- (stringlist): nicer (a la new lspcidrake)
-
- * Xconfigurator.pm: enable use of gzip'ed Cards+, CardsNames and
- MonitorsDB
-
- * diskdrake.pm (try): format the error (no more "at line ...")
- (Add2LVM): "new" was not i18n'ed
-
-2001/03/23 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * mouse.pm, bootloader.pm: mods to create/move image, to /export for PPC,
- use vmlinux for PPC
- prepend of_dev to initrd stanza in yaboot.conf
- add 1-button mouse for PPC
-
-2001/03/23 siegel
-
- * share/po/de.po: new german version
-
-2001/03/22 Chmouel Boudjnah <chmouel@mandrakesoft.com>
-
- * tools/i386/netboot/stage1.rtl8139, tools/i386/netboot/stage2.rtl8139:
- Add 8139 grub stage.
-
-2001/03/22 dam's <damien@mandrakesoft.com>
-
- * bootlook.pm: corrected mapn
-
- * standalone/draknet: removed use Data::Dumper
-
- * netconnect.pm: removed mail informat oin
- comment update
-
- * tinyfirewall.pm: removed use Data::Dumper
- working on tinyfirewall
-
-2001/03/22 fabman
-
- * share/po/es.po: changed "swap" for "intercambio" in the spanish .po
- files
- updated DrakX, menudrake and urpmi es.po files
-
-2001/03/22 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: fixed wrong access to undefined value promoted to
- empty array reference.
-
-2001/03/22 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/probing.c, mdk-stage1/tools.h:
- - fix detection of more than 3 scsi attached devices
- - cleaner code for cmp of ptr against static strings
-
-2001/03/22 Pixel <pixel@mandrakesoft.com>
-
- * standalone/mousedrake: remove test ugliness of dams
-
- * c/Makefile.PL: no pcmcia_probe in drakxtools
-
- * modules.pm (load_thiskind): indent as it should be
-
- * install_steps_interactive.pm (generateAutoInstFloppy): fix the message
- which was uptodate only for
- sparc :-(
-
- * Xconfigurator.pm: no need for "use Data::Dumper;"
-
-2001/03/22 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * modules.pm: no imm,ppa PPC, scan mesh,mac53c94 scsi only, pmac should
- have been mace
-
-2001/03/22 yduret
-
- * bootlook.pm: mapn works tx dams
- nmap
- added mapn fun to reduce code.. testing it
- added install of rpm
- xpm png files
-
- * pixmaps/hori.png, pixmaps/gmon.png, pixmaps/tradi.png, pixmaps/hori.xpm,
- pixmaps/verti.png, pixmaps/gmon.xpm, pixmaps/tradi.xpm,
- pixmaps/verti.xpm: convert xpm to png
-
-2001/03/21 dam's <damien@mandrakesoft.com>
-
- * standalone/tinyfirewall, tinyfirewall.pm: new tinyfirewall conf tool
-
- * netconnect.pm: corrected /etc/sysconfig/network-scripts/net_up.* bug
-
-2001/03/21 François Pons <fpons@mandrakesoft.com>
-
- * detect_devices.pm: added pci id reference.
-
- * c/stuff.xs.pm: added support for pci id extraction.
-
- * Xconfigurator.pm: fixed wrong XFree4 version reference.
- fixed null string in monitor identifier.
- added multi-head support in XFdrake.
-
-2001/03/21 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw: honour embedded mode
-
- * share/compssUsers: move NETWORKING_FILE (contains stuff for nfs
- mounting..) from Internet
- Station to Network Computer
-
-2001/03/21 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/pt.po, share/po/DrakX.pot, share/po/es.po,
- share/po/fr.po, share/po/bg.po, share/po/ga.po, share/po/de.po,
- share/po/et.po, share/po/tr.po, share/po/eu.po, share/po/ru.po,
- share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
- share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
- share/po/is.po, share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po,
- share/po/id.po, share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/lt.po, share/po/sl.po, share/po/br.po, share/po/ca.po,
- share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
- share/po/ro.po, share/po/da.po, share/po/cs.po, share/po/af.po: Updated
- Croatian and Serbian files
-
- * share/po/sp.po, share/po/sr.po: Updated Serbian files
- Updated Croatian and Serbian files
-
- * share/po/az.po: Updated Azeri file
- Updated Croatian and Serbian files
-
- * share/po/sk.po: Updated Azeri and Slovak files
- Updated Croatian and Serbian files
-
- * lang.pm: Added fields to charsets table holding info for mount
- (iocharset and
- codepage mount options)
-
-2001/03/21 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (g_default_packages): nice warning if mount in vfat fails
-
- * share/rpmsrate: move webmin to CONFIG
- remove ipchains and iptables, raise gfcc
-
- * docs/README: add cvs howto
-
- * install_steps_interactive.pm (summary): fix
-
- * detect_devices.pm: old code
-
- * bootloader.pm (install_lilo): ensure labels don't contain spaces, lilo
- doesn't like them
- (add_kernel): cleanup
- (suggest): make it work with kernel22-secure and no kernel22
-
- * modules.pm (when_load): move the alias sound to when_load, don't check
- ppc as it
- could be used for non-ppc
- (load_thiskind): fix pb causing imm,ppa,usb-storage to be tested for
- every
- load_thiskind, not only scsi one
-
- * c/stuff.xs.pm (from_utf8): as pablo said...
-
-2001/03/21 siegel
-
- * share/po/de.po: new german version
- new german version
-
-2001/03/20 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm (@drivers_by_category): if_ization
- (load_thiskind): cleanup
-
-2001/03/21 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm (add_kernel): cleanup
- (suggest): make it work with kernel22-secure and no kernel22
-
- * share/rpmsrate: remove ipchains and iptables, raise gfcc
-
-2001/03/20 dam's <damien@mandrakesoft.com>
-
- * interactive.pm: no wizard if warning
-
-2001/03/20 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: fix pcmcia functions only on x86
- - create install_any::unselectMostPackages
- - use it instead of pkgs::unselectAllPackages (otherwise
- default_packages ends up non-selected)
-
- * modules.pm (@drivers_by_category): if_ization
- (load_thiskind): cleanup
-
- * any.pm, install2.pm, share/rpmsrate: use bastille backend
-
- * c/stuff.xs.pm, c/Makefile.PL: fix pcmcia functions only on x86
-
- * install_steps.pm, install_any.pm:
- - create install_any::unselectMostPackages
- - use it instead of pkgs::unselectAllPackages (otherwise
- default_packages ends up non-selected)
-
-2001/03/20 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * modules.pm, install_steps_interactive.pm, any.pm: make_boot_img: add
- routine for - PPC
- any.pm: double "Append" entry in expert mode for yaboot.conf - PPC
- install_steps_interactive: setup dmasound - PPC
- modules.pm: load Mac hardware modules - PPC
-
-2001/03/20 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: corrected bug in reading resolv.conf, and changed chmod
- for net_cnx_*
-
- * interactive.pm: no wizard if warning
-
- * standalone/draknet: added update after {dis}connecting
-
-2001/03/20 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * diskdrake.pm: fix formatting of raid
-
-2001/03/20 Pixel <pixel@mandrakesoft.com>
-
- * share/rpmsrate: use bastille backend
- - add nautilus
-
- * install_steps_interactive.pm: fix pcmcia functions only on x86
- - create install_any::unselectMostPackages
- - use it instead of pkgs::unselectAllPackages (otherwise
- default_packages ends up non-selected)
- (setupSCSI): don't pcmcia_probe if testing
- - tellAboutProprietaryModules moved to setupSCSI
- - miscellaneous step re-enabled, called Security
- - pcmcia_probe moved to setupSCSI, skipped in noauto
-
- * any.pm: use bastille backend
-
- * install2.pm: use bastille backend
- - tellAboutProprietaryModules moved to setupSCSI
- - miscellaneous step re-enabled, called Security
- - pcmcia_probe moved to setupSCSI, skipped in noauto
- have pcmcia_probe in stage2 (for non pcmcia.img, stage1 doesn't give the
- parameter any more)
-
- * netconnect.pm (modem_detect_backend): cleanup
-
- * c/stuff.xs.pm, c/Makefile.PL: fix pcmcia functions only on x86
- have pcmcia_probe in stage2 (for non pcmcia.img, stage1 doesn't give the
- parameter any more)
-
- * Makefile: install cardmgr
-
- * install_any.pm:
- - create install_any::unselectMostPackages
- - use it instead of pkgs::unselectAllPackages (otherwise
- default_packages ends up non-selected)
- (setPackages): install usbd in case of usb
-
- * install_steps.pm:
- - create install_any::unselectMostPackages
- - use it instead of pkgs::unselectAllPackages (otherwise
- default_packages ends up non-selected)
-
-2001/03/20 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * any.pm, netconnect.pm, detect_devices.pm: any.pm: enable module load PPC
- detect_devices.pm: forgot to remove commented code after test
- netconnect.pm: load macserial module for PPC
-
-2001/03/20 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet, netconnect.pm: improved connection windows, and
- loading / saving of /etc/sysconfig/network-script/net-cnx*
-
-2001/03/20 Pixel <pixel@mandrakesoft.com>
-
- * share/rpmsrate:
- - add nautilus
-
- * install_any.pm (setPackages): install usbd in case of usb
-
- * Makefile: install cardmgr
-
-2001/03/19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * fsedit.pm: fix loopback appearing twice in format partition
-
- * diskdrake.pm: fix "loopback" name of loopback tab in diskdrake
-
-2001/03/19 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ko.po: updated korean file
- Updated po files
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/cy.po, share/po/nl.po, share/po/ja.po,
- share/po/wa.po, share/po/sv.po, share/po/is.po, share/po/hu.po,
- share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po, share/po/pl.po,
- share/po/fi.po, share/po/no.po, share/po/zh_CN.GB2312.po,
- share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
- share/po/sl.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
- share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
- share/po/da.po, share/po/cs.po, share/po/af.po: Updated po files
-
-2001/03/19 Pixel <pixel@mandrakesoft.com>
-
- * pkgs.pm (computeGroupSize): fix hacks, better hacks
- (saveCompssUsers): fix
-
- * install_steps_interactive.pm (chooseGroups):
- - make the computed size work
- - unselectAll when a profile is unselected
-
- * interactive_gtk.pm (ask_from_entries_refW): better sizing in case of
- scrolls
-
-2001/03/19 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * mdk-stage1/stage1.c: stage1.c: fix for rescue image PPC
-
-2001/03/19 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: corrected graphical layout for newbies
-
- * netconnect.pm: added net_cnx_{up, down} save
-
-2001/03/19 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ko.po: updated korean file
- Updated po files
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/cy.po, share/po/nl.po, share/po/ja.po,
- share/po/wa.po, share/po/sv.po, share/po/is.po, share/po/hu.po,
- share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po, share/po/pl.po,
- share/po/fi.po, share/po/no.po, share/po/zh_CN.GB2312.po,
- share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
- share/po/sl.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
- share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
- share/po/da.po, share/po/cs.po, share/po/af.po: Updated po files
-
-2001/03/19 Pixel <pixel@mandrakesoft.com>
-
- * pkgs.pm (computeGroupSize): fix hacks, better hacks
- (saveCompssUsers): fix
-
- * share/rpmsrate:
- - add rxvt-CJK
- - exchange xterm and rxvt
- - move bc from SCIENCES to SYSTEM
-
- * interactive_newt.pm (ask_from_entries_refW):
- - ensure the width is less than $width - 7 (in french and 80x25, the
- treelist was too big)
- - if term is very big, use 10 lines instead of 5
- - if no button is asked, but one in any case otherwise it's buggy
-
- * install_steps_interactive.pm (chooseGroups):
- - make the computed size work
- - unselectAll when a profile is unselected
-
- * interactive.pm (ask_from_listf_no_check): fix fix
- (ask_from_listf_no_check): fix the filtering of exceptions
-
-2001/03/19 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * mdk-stage1/stage1.c: stage1.c: fix for rescue image PPC
-
-2001/03/18 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/lomount.h, mdk-stage1/lomount.c, mdk-stage1/disk.c: fix for
- hd-install when you provide a not valid ISO (cd #2 for example)
-
- * mdk-stage1/frontend.h, mdk-stage1/minilibc.h, mdk-stage1/stage1.h,
- mdk-stage1/log.h: use some help with __attribute__
-
-2001/03/17 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * rescue/tree/etc/rc.sysinit: load sr_mod and sd_mod at startup
-
- * mdk-stage1/Makefile.mkinitrd_helper, mdk-stage1/.cvsignore: sync
-
- * mdk-stage1/stdio-frontend.c: handle left and right arrow keys, in
- editing ask_from_entries in stdio mode
-
- * mdk-stage1/pci-resource/Makefile: do not use marfiles for deps
-
-2001/03/17 Pixel <pixel@mandrakesoft.com>
-
- * lang.pm (write_langs): in case of empty %_install_langs, don't write it
-
- * install_steps.pm (pkg_install_if_requires_satisfied): better logging
-
- * share/rpmsrate: add gpm & evolution
-
-2001/03/17 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/insmod-busybox/utility.c: fix insmod calling realloc(0,0) to
- work with dietlibc
-
- * mdk-stage1/insmod-busybox/Makefile: also build standalone insmod-DIET
- for testing purposes..
-
- * mdk-stage1/mkinitrd_helper/Makefile: bump version to 1.0.1 for new
- mkinitrd package release
-
- * mdk-stage1/stdio-frontend.c: handle left and right arrow keys, in
- editing ask_from_entries in stdio mode
-
-2001/03/17 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sv.po: updated Swedish file
-
- * share/keyboards.tar.bz2: Added a Korean keyboard, fixed bug in Japanese
- keyboard
-
- * keyboard.pm: Added choice of Korean keyboard
-
-2001/03/17 Pixel <pixel@mandrakesoft.com>
-
- * lang.pm (write_langs): in case of empty %_install_langs, don't write it
-
- * install_steps.pm (pkg_install_if_requires_satisfied): better logging
-
- * share/rpmsrate: add gpm & evolution
-
-2001/03/16 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/pci-resource/Makefile: refine deps
-
- * mdk-stage1/mkinitrd_helper/mkinitrd_helper.c, mdk-stage1/Makefile,
- mdk-stage1/mkinitrd_helper/Makefile: write down mkinitrd_helper
-
- * mdk-stage1/insmod-busybox/insmod.c: force load
-
-2001/03/16 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (setPackages): set flag "TV" when bttv hardware is there
-
- * share/compssUsers, share/rpmsrate: move out TV from VIDEO
-
- * diskdrake.pm (Type): fix the code verifying size >32 for reiserfs
-
- * modules.pm (write_conf): better logging
-
- * c/stuff.xs.pm: add from_utf8
-
- * c/stuff.pm (headerGetEntry): use from_utf8 on group, summary and
- description
-
-2001/03/16 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * tools/ppc/magic, tools/ppc/mkhybrid-1.12b5.4, tools/ppc/convert,
- tools/ppc/yaboot, tools/ppc/mapping: gi/tools/ppc/convert, magic,
- mapping, mkhybrid-1.12b5.4, yaboot - re-add - my bad
- gi/tools/ppc/convert, magic, mapping, mkhybrid-1.12b5.4, yaboot -
- remove/re-add - did not use -kb switch - thx Pixel
-
-2001/03/15 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: SiS card are no more prefered for XF3.
- added standalone support to prefer XF3 or XF4 to
- keep current used server version.
-
- * standalone/XFdrake: remove duplicate begin label.
- take care of existing configuration.
-
-2001/03/15 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * modules.pm: skip dc395x_trm on stage1
- dc395x_trm is back in 2.4
-
- * share/compssUsers: try to enhance
-
-2001/03/15 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/az.po: updated Azeri file
-
-2001/03/15 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator_consts.pm, Xconfigurator.pm: andre@node1583e.a2000.nl says
- this is not needed anymore :)
-
-2001/03/15 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * tools/ppc/magic, tools/ppc/convert, tools/ppc/iboot,
- tools/ppc/mkINSTALLCD, tools/ppc/mkhybrid-1.12b5.4, tools/ppc/yaboot,
- tools/ppc/mapping: gi/tools/ppc/convert, magic, mapping, mkINSTALLCD,
- mkhybrid-1.12b5.4, yaboot: create PPC CD
-
- * install_steps_interactive.pm, detect_devices.pm, bootloader.pm:
- bootloader.pm, detect_devices.pm, install_steps_interactive.pm: changed
- temporary file read/write per Pixel
-
- * Xconfigurator.pm: force 1024x768 on Powerbook
-
- * tools/ppc/README: README: README for creating PPC boot CD
-
-2001/03/14 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: changed label + profile before types..
-
-2001/03/14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po,
- share/po/i18n_compssUsers, share/po/DrakX.pot, share/po/es.po,
- share/po/fr.po, share/po/bg.po, share/po/ga.po, share/po/sr.po,
- share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
- share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
- share/po/ko.po, share/po/cy.po, share/po/nl.po, share/po/ja.po,
- share/po/wa.po, share/po/sv.po, share/po/is.po, share/po/hu.po,
- share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po, share/po/pl.po,
- share/po/fi.po, share/po/no.po, share/po/zh_CN.GB2312.po,
- share/po/th.po, share/po/el.po, share/po/Changelog, share/po/sk.po,
- share/po/lt.po, share/po/sl.po, share/po/br.po, share/po/ca.po,
- share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
- share/po/ro.po, share/po/da.po, share/po/cs.po, share/po/af.po:
- corrected the script and updated po files
-
-2001/03/14 Pixel <pixel@mandrakesoft.com>
-
- * share/compssUsers: keep only one Development entry
-
- * install_steps_gtk.pm, pkgs.pm: fix the compssUsers interpretation
-
- * bootlook.pm: fix for perl2fcalls
-
- * install_steps_interactive.pm (chooseGroups): disable the size display as
- it is wrong (for the beta2)
-
-2001/03/14 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * install_steps_interactive.pm, install_steps_gtk.pm,
- partition_table_mac.pm, bootloader.pm: fix bootstrap partition
- creation/tracking
- allow Xpmac to launch in 2 modes based on cmdline
-
-2001/03/14 siegel
-
- * share/po/de.po: new german version
-
-2001/03/14 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: changed label + profile before types..
-
-2001/03/14 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: fixed unselect management of choice, propagate unselection
- correctly to all
- packages requiring unselected package.
-
- * install_any.pm: use LD_LOADER when invoking parshedlist.
-
-2001/03/14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/no.po, share/po/nl.po: updated Norwegian file
-
- * share/locales.tar.bz2, share/gconv.tar.bz2, share/list,
- share/fonts.tar.bz2: new fonts and locale files
-
- * share/po/ko.po: Fixed email of Korean translator
- updated Korean file
-
- * install_steps_interactive.pm, install_gtk.pm, lang.pm, keyboard.pm:
- completed language list
- completed language->keyboard guessing list
- aesthetic changes to an English message (removed \n and let gtk+
- do the formatting, it is nicer)
-
- * share/po/az.po: Updated Azeri file
-
-2001/03/14 Pixel <pixel@mandrakesoft.com>
-
- * pkgs.pm: fix the compssUsers interpretation
- (readCompssUsers): change the key of compssUsers, added "label"
- (computeGroupSize): fix bug
- (computeGroupSize): fix logging
-
- * share/gconv.tar.bz2: moved to share/list
-
- * bootlook.pm: fix for perl2fcalls
-
- * share/rpmsrate: CLIENT & SERVER is prohibited
-
- * timezone.pm:
- - add many timezones
- - defaults to GMT
- - verifier added
-
- * install_steps_gtk.pm: fix the compssUsers interpretation
- (choosePackagesTree): fix
-
- * common.pm (bestMatchSentence, bestMatchSentence2): in wantarray, return
- the number
- of matched words/characters
-
- * share/compssUsers: keep only one Development entry
- CLIENT & SERVER is prohibited
-
- * install_steps_interactive.pm (chooseGroups): disable the size display as
- it is wrong (for the beta2)
- (chooseGroups): add path for seperating groups, use "label" for the
- group text
-
- * Makefile: remove gconv
-
-2001/03/13 siegel
-
- * share/po/de.po: Fixed typos.
-
-2001/03/13 siegel
-
- * share/po/de.po: Fixed typos.
-
-2001/03/13 dam's <damien@mandrakesoft.com>
-
- * share/help.png: changed
-
-2001/03/13 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm, install_steps_gtk.pm: compss is deprecated. use compssUsers
- for the tree
-
- * standalone/drakgw: pixelization
-
- * share/rpmsrate: HDF can't be at the beginning of the line or it will be
- taken as a flag
- moved icewm to SYSTEM with !KDE !GNOME
-
- * pkgs.pm: compss is deprecated. use compssUsers for the tree
- (readCompssUsers): get the "path"
-
- * install_steps.pm: compss is deprecated. use compssUsers for the tree
- renamef created and used
-
- * detect_devices.pm (burners): don't use cdroms() which return scdX for
- ide burners, and
- isBurner don't use the same technique. so use get() and grep for type
- "cdrom"
-
- * install_any.pm: compss is deprecated. use compssUsers for the tree
- (setPackages): set {compssUsersChoice}{PCMCIA} if hasPCMCIA
- renamef created and used
-
- * install_steps_interactive.pm: compss is deprecated. use compssUsers for
- the tree
- (chooseGroups): fix to get back the icons
- (chooseGroups): size computed should work
-
- * common.pm: renamef created and used
-
-2001/03/13 siegel
-
- * share/po/de.po: new german translation
-
-2001/03/13 warly
-
- * share/compssUsers: fix {W,w}orkstation
- remove ^Server and ^Development
-
-2001/03/13 Pixel <pixel@mandrakesoft.com>
-
- * standalone/drakgw: pixelization
-
- * install_steps_interactive.pm (chooseGroups): size computed should work
-
- * share/rpmsrate: moved icewm to SYSTEM with !KDE !GNOME
-
- * install_steps.pm, common.pm, install_any.pm: renamef created and used
-
-2001/03/12 dam's <damien@mandrakesoft.com>
-
- * Makefile: removed wizard pixmap from install
-
- * pixmaps/wiz_internet.png, pixmaps/wiz_internet_left.png: updated
- added pixmap for wizard
-
- * my_gtk.pm: new wizard layout, with pixmaps.
- added ugly workaround for ugly Hseparator
-
- * share/step-red.png, share/step-orange.png, share/step-orange-click.png,
- share/step-green-click.png, share/step-green.png, share/step-red-on.png,
- share/step-orange-on.png, share/step-green-on.png,
- share/step-green_s.png, share/step-red-click.png: removing bad png
- files...
-
- * share/help.png: new help button. blah
-
- * install_any.pm: typo
-
- * pixmaps/wiz_default_left.png, pixmaps/wiz_default_up.png: updated
-
- * netconnect.pm: corrected askokcancel -> askyesorno
-
- * interactive.pm: corrected bad okcanel in wizard mode
-
- * install_steps_interactive.pm: added $::isInstall
-
- * share/logo-mandrake_trans.png: new logo for other themes
-
- * services.pm: removed use Data::Dumper
- corrected bug in display
-
-2001/03/12 François Pons <fpons@mandrakesoft.com>
-
- * modules.pm, lang.pm, commands.pm, detect_devices.pm, pkgs.pm,
- live_install2: fixed live update between GLIBC 2.1 and GLIBC 2.2. should
- work for other
- combination but not tested. fixed locale usage and gtk environment
- interaction (added LOCPATH, GCONV_PATH and GTK_EXE_PREFIX).
- created LD_LOADER environment variable to keep track of right ELF loader
- to be used for the GLIBC used by the live update. added internal PATH
- to LD_LIBRARY_PATH as ELF loader only check this one and not PATH.
-
-2001/03/12 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw:
- - make it work as a wizard
- - make it work with iptables (kernel-2.4)
-
- * modules.pm: reflect Jeff Garzik's answers to my questions on kernel@
-
-2001/03/12 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/DrakX.pot, share/po/zh_CN.GB2312.po,
- share/po/th.po, share/po/bg.po, share/po/de.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/br.po, share/po/ca.po,
- share/po/cy.po, share/po/uk.po, share/po/wa.po, share/po/da.po,
- share/po/cs.po, share/po/zh_TW.Big5.po, share/po/af.po: Updated Basque
- file
-
-2001/03/12 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm (afterInstallPackages): save the compssUsers flattened
- for rpmdrake
-
- * install_steps_interactive.pm (summary): remove 'clicked' (labels are
- used)
- put everything in %compssUsers, use field flags for the flags :)
-
- * pkgs.pm (computeGroupSize): log what is found
- (saveCompssUsers): make it work
- (readCompssUsers): clean-up
- (saveCompssUsers): created
- put everything in %compssUsers, use field flags for the flags :)
- (computeGroupSize): created
-
- * share/rpmsrate: lower Zope (anyway Zope is not in main)
-
- * fsedit.pm (hds): search for existing lvm in @hds *and* @lvms
-
- * commands.pm (loadkeys): created
-
- * install_any.pm (setPackages): don't readCompssUsers with $o->{packages}
- (setPackages): kernel-secure doesn't exist anymore, use kernel22-secure.
- don't use kernel-secure as a kernel-smp.
- put everything in %compssUsers, use field flags for the flags :)
- (setPackages): set compssUsersChoice "3D" if 3D enabled graphic card
-
- * interactive_gtk.pm (ask_from_entries_refW): add $set for "label" entries
- add "label" type
-
- * share/compssUsers: change the path format
-
- * detect_devices.pm (get_mac_model): fix for perl2fcalls
-
- * interactive.pm: add "label" type
-
-2001/03/12 warly
-
- * share/compssUsers: add some NETWORKING_* that were empty
- dispach some DEVELOPMENT and SERVER to more appropriate groups
- added path
-
- * share/rpmsrate: add some NETWORKING_* that were empty
- dispach some DEVELOPMENT and SERVER to more appropriate groups
-
-2001/03/11 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * ftp.pm: do not retry on 550 file unavailable
-
-2001/03/12 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (setPackages): set compssUsersChoice "3D" if 3D enabled
- graphic card
-
-2001/03/11 dam's <damien@mandrakesoft.com>
-
- * services.pm: no more restart button
-
-2001/03/11 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * ftp.pm: do not retry on 550 file unavailable
-
-2001/03/11 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (summary): fix clicked empty handler
-
- * share/rpmsrate:
- - lower tftp-server
- - a lot of modifs (thanks to Prana)
-
-2001/03/10 dam's <damien@mandrakesoft.com>
-
- * standalone/drakxservices: embedded mode
-
- * my_gtk.pm: added gtkset_border_width
- typo again
- typo
- added gtkmove
- added gtkset_modal and gtkappenditems
-
- * services.pm: fixed big bug.
- imajor improvement.
- improved.
-
-2001/03/10 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
- share/po/af.po: updated Korean file
-
-2001/03/09 dam's <damien@mandrakesoft.com>
-
- * standalone/drakxconf: added harddrake
-
- * my_gtk.pm: applied gtkradio
- created create_boxradio
- in wizard mode : list -> radio buttons
- added gtkradio
-
- * bootlook.pm: workaround for the graphical layout.
-
- * install_steps_gtk.pm: applied gtkradio
- created create_boxradio
- in wizard mode : list -> radio buttons
-
- * printerdrake.pm: if embedded -> no first question
-
- * interactive_gtk.pm: added tooltips to create_boxradio
- applied gtkradio
- created create_boxradio
- in wizard mode : list -> radio buttons
-
-2001/03/09 Pixel <pixel@mandrakesoft.com>
-
- * share/rpmsrate: a hell lot of modifications, mostly cleanup of
- DEVELOPEMENT
-
-2001/03/09 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * Xconfigurator_consts.pm: keyboard mapping for PPC
-
- * detect_devices.pm: routine to detect MacIntosh model code
-
-2001/03/09 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm: added gtkradio
-
- * standalone/draknet: changed graphical layout, expert mode
-
-2001/03/09 Pixel <pixel@mandrakesoft.com>
-
- * pkgs.pm (read_rpmsrate): handle the special case of packages requiring
- locales-*,
- adding the flag LOCALES"*" for them
-
- * install_steps_interactive.pm (choosePackages): moved the log to
- install2::choosePackages (to have it in
- auto_installs too)
-
- * install_any.pm (setPackages): set compssUsersChoice LOCALES"*"
-
- * install2.pm (choosePackages): log groups choosen
-
- * share/rpmsrate: a hell lot of modifications, mostly cleanup of
- DEVELOPEMENT
- - chineese packages
- - move Aurora's to AURORA (DrakX take care of Aurora)
-
- * install_steps_gtk.pm (remove_advertising): created
-
-2001/03/08 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/init.c: workaround kernel-2.4 bug with /dev/log
-
-2001/03/08 Pixel <pixel@mandrakesoft.com>
-
- * verify_c: fix the regexp
-
- * detect_devices.pm (floppies): load module "floppy" before probing
-
-2001/03/08 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: applied if__
-
-2001/03/08 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/init.c: workaround kernel-2.4 bug with /dev/log
-
-2001/03/08 Pixel <pixel@mandrakesoft.com>
-
- * verify_c: fix the regexp
-
- * share/rpmsrate: add i18n'ed packages
-
- * detect_devices.pm (floppies): load module "floppy" before probing
-
-2001/03/08 dam's <damien@mandrakesoft.com>
-
- * common.pm: added if__
-
- * netconnect.pm: applied if__
-
-2001/03/08 François Pons <fpons@mandrakesoft.com>
-
- * diskdrake.pm: avoid using e2fsck, else it abort by checking partition
- size (which differs).
- fix resize ext2 by using resize2fs.
-
- * pkgs.pm: changed choice of package for selection.
-
- * share/list: added resize2fs and dumpe2fs, removed ext2resize which is
- replaced.
-
-2001/03/08 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/dhcp.c: do not segfault in dhcp stuff, when af_packet is not
- honoured by kernel
-
-2001/03/08 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/no.po: updated Norwegian file
-
-2001/03/08 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm: advertising modifs
- (setPackages): use burners instead of IDEburners
-
- * bootloader.pm: cleanup
-
- * interactive.pm (ask_from_listf_no_check): catch wizcancel and return
- undef
-
- * fs.pm (write_fstab): change again for 'none' checking the mount point
- (write_fstab): special case for device ``none'' (which can be mounted
- twice or more :)
-
- * my_gtk.pm (_create_window): on delete_event, destroy the window and
- raise wizcancel
-
- * share/po/fr.po: fix bad translation
-
- * share/rpmsrate: add i18n'ed packages
- raise kdebase
-
- * install2.pm, install_steps.pm, install_steps_gtk.pm: advertising modifs
-
- * detect_devices.pm: cleanup
- (isBurner): use syslog to detect scsi burners
-
-2001/03/08 Stew Benedict <sbenedict@mandrakesoft.com>
-
- * install_steps_gtk.pm: encourage Xpmac to run in at least 16bpp
-
- * partition_table_mac.pm: fixed variable referencing - thx Pixel
-
-2001/03/08 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: corrected bad pci number -> string
-
-2001/03/08 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/bg.po, share/po/sr.po, share/po/sp.po, share/po/ca.po: updated
- Bulgarian, Catalan and Serbian files
-
-2001/03/08 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm (dev2grub): better error reporting
-
- * tools/cvslog2changelog.pl (%users): add stew
-
- * install_steps.pm (setupBootloaderBefore): aurora stupid renaming fix
-
- * share/rpmsrate: raise kdebase
- xcdroast is the best cd burner ui, raise it above others
- lower some EDITORS
- raise vim-X11
- lower xrn, raise pan
-
- * install_any.pm (setPackages): use burners instead of IDEburners
- (setPackages): at least set BURNER for ide burners
-
- * any.pm: cleanup
-
- * install_steps_interactive.pm, install2.pm: re-add miscellaneous step,
- but always hidden (aka automatic)
-
- * detect_devices.pm (isBurner): use syslog to detect scsi burners
-
- * fs.pm (write_fstab): special case for device ``none'' (which can be
- mounted
- twice or more :)
-
- * tools/i386/netboot/stage2.3c90x, tools/i386/netboot/grub: new versions
- (without mem=)
-
-2001/03/08 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: corrected bad pci number -> string
-
-2001/03/08 Pixel <pixel@mandrakesoft.com>
-
- * tools/i386/netboot/stage2.3c90x, tools/i386/netboot/grub: new versions
- (without mem=)
-
-2001/03/07 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: corrected default focus after detection
- don't test adsl if net install
-
-2001/03/07 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm (add_alias): remove the alias block-major-11 as it's
- overriding the
- default alias to sr_mod, and is uneeded with scsi_hostadapter being
- added
- to /etc/modules.conf
-
- * share/rpmsrate: lower heartbeat
-
-2001/03/07 sbenedict
-
- * help.pm: * perl-install/help.pm - typo in yaboot help
-
- * any.pm: * perl-install/any.pm - fixed two $l vs. @l references -
- bootloader menu, need image/boot in rec mode PPC
- CVl:
- ----------------------------------------------------------------------
-
- * devices.pm: * perl-install/devices.pm - add adbmouse
-
-2001/03/07 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: not use common anymore, uses gtkpng, cosmetic chages
-
-2001/03/07 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm, bootloader.pm: fixed support for other kernel for
- bootloader entries.
- automatically add 2.2 entries for kernel22 (manage hack-kernel too).
-
- * Xconfigurator.pm: remove 32 bit depth for S3 Trio3D card.
-
- * pkgs.pm: added support for killing all child process of a transaction,
- necessary to be
- able to umount cdrom and eject it correctly.
-
-2001/03/07 Pixel <pixel@mandrakesoft.com>
-
- * share/fonts.tar.bz2: use gb16fs instead of gb16st
-
- * modules.pm (add_alias): remove the alias block-major-11 as it's
- overriding the
- default alias to sr_mod, and is uneeded with scsi_hostadapter being
- added
- to /etc/modules.conf
-
- * share/rpmsrate: lower heartbeat
- lower Mesa's rate
-
- * install2.pm (main): save $@ in $err so that it's not modified before
- being used
-
- * share/locales.tar.bz2: remove ending '/' in symlinks not pleasing
- packdrake
-
- * standalone/drakboot: make it please perl2fcalls
-
-2001/03/07 sbenedict
-
- * bootloader.pm, Xconfigurator.pm: * perl-install/Xconfigurator.pm - force
- XF4 for PPC in recommended mode
- * perl-install/bootloader.pm - rework get_of_dev to work in live install
-
- * install_steps_interactive.pm, any.pm, partition_table_mac.pm: *
- perl-install/any.pm - change in partition_table_mac'xxx syntax
- * perl-install/install_steps_interactive.pm - change in
- partition_table_mac'xxx syntax
-
- * perl-install/partition_table_mac.pm - change in
- partition_table_mac'xxx syntax
-
-2001/03/07 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/fr.po: Fixed French typos reported by tester
-
-2001/03/07 Pixel <pixel@mandrakesoft.com>
-
- * share/fonts.tar.bz2: use gb16fs instead of gb16st
-
- * fsedit.pm: fix typo
-
- * install2.pm (main): save $@ in $err so that it's not modified before
- being used
-
- * share/rpmsrate: lower Mesa's rate
-
- * standalone/drakboot: make it please perl2fcalls
-
-2001/03/06 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: corrected bad %intf while savung
- don't ask configuration if expert
- now detecting adsl
-
- * standalone/draknet: remmoved 'quiting appli' screen
-
-2001/03/06 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_any.pm: fix save of automatic stage1 info for static network
-
- * mdk-stage1/init.c: do not display from syslog msg's from RPM telling
- that it
- installed/removed some pkg's
-
- * mdk-stage1/Makefile: fix includes for init
-
-2001/03/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, help.pm, share/po/zh_TW.Big5.po, share/po/it.po,
- share/po/id.po, share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/sl.po, standalone/draknet,
- share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
- share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/da.po,
- share/po/cs.po, share/po/af.po: corrected some typos, Updated Japanese
- file
-
-2001/03/06 Pixel <pixel@mandrakesoft.com>
-
- * perl2fcalls:
- - small fix for bootlook.pm
- - don't display reused
-
- * detect_devices.pm (stringlist): if no text description, display ids
-
- * install_steps_interactive.pm (generateAutoInstFloppy): comment old code
- (summary): fixes
- (setupSCSI): cleanup
- (summary): display sound/tv/isdn cards found
-
- * fsedit.pm (check_mntpoint): don't allow LVM on / or /boot
- (@suggestions_mntpoints): add /boot
-
- * install_any.pm: hack to make perl2fcalls happy
- (getHds): fix for no hd detected in newbie installs
- (setPackages): s/snd-slot/sound-slot/
-
- * install_steps_auto_install.pm (@graphical_steps): add
- beforeInstallPackages so that advertisings are there
-
- * install2.pm (setupSCSI): remove autoSCSI, cleanup
-
- * http.pm, ftp.pm: don't use install_any
-
- * modules.pm: add cciss
-
- * partition_table.pm (add): create 3 primaries before creating an extended
- if DAC960 (/dev/rd/*)
- (add): max number of parts for rd, ida and cciss
-
-2001/03/06 yduret
-
- * bootlook.pm: pixelisation
-
-2001/03/06 dam's <damien@mandrakesoft.com>
-
- * install2.pm: corrected bad file search
- corrected intf setting
-
- * standalone/draknet: added enable/disable networking button.
-
- * standalone/drakxconf: updated to be launched frome DrakConf if no
- DISPLAY
-
- * netconnect.pm: now detecting adsl
- typo
- better load_conf
-
- * Xconfigurator.pm: cleaned png displaying
-
- * common.pm: setinhash -> set_in_hash
- added setinhash
-
- * fs.pm: typo
- use set_in_hash
-
-2001/03/06 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/cdrom.c: enable probing of all the CDROM drives in automatic
- mode
-
- * mdk-stage1/Makefile: fix includes for init
-
-2001/03/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
- share/po/af.po: corrected some typos, Updated Japanese file
- updated Lithuanian file
-
- * help.pm, standalone/draknet: corrected some typos, Updated Japanese file
-
-2001/03/06 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm, any.pm, Xconfigurator.pm: move inittab modifying to
- any::runlevel
-
- * partition_table.pm (add): max number of parts for rd, ida and cciss
-
- * fs.pm, netconnect.pm, common.pm: set_in_hash is now put_in_hash
-
- * diskdrake.pm (Create): pixelization
-
- * fsedit.pm (hds): pixelization
-
- * install_steps_auto_install.pm (@graphical_steps): add
- beforeInstallPackages so that advertisings are there
-
- * modules.pm: add cciss
-
- * install2.pm (main): remove unloading vfat (not needed anymore with
- mdk-stage1)
-
-2001/03/05 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: $mouse->{device} is set if it doesn't exists.
-
- * Makefile: added pixmaps copying
-
-2001/03/05 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * netconnect.pm, bootlook.pm, help.pm: fixed English typos
-
-2001/03/05 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (generateAutoInstFloppy): use
- generate_automatic_stage1_params
-
- * c/stuff.xs.pm, my_gtk.pm: XSetInputFocus now done in perl-GTK
-
- * install_any.pm (generate_automatic_stage1_params): replace
- generate_ks_cfg
-
-2001/03/05 dam's <damien@mandrakesoft.com>
-
- * Makefile: added pixmaps copying
-
- * standalone/draknet: required gtk only if needed, added redirection to
- newt if needed
-
- * netconnect.pm: $mouse->{device} is set if it doesn't exists.
- corrected short circuit if network install
- corrected bad end message,
- added copying of resolv.conf & modules.conf
-
- * install2.pm: moved askrootpasswd and adduser before network conf
-
- * network.pm: removed old NS0 fetching. /etc/resolv.conf is read in
- install2.pm now
- removed setdefaultroute and sethostname
-
-2001/03/05 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
- share/po/af.po: Updated Latvian, Belarussian and Spanish files
-
-2001/03/05 Pixel <pixel@mandrakesoft.com>
-
- * lvm.pm (lv_create): fix typo
-
- * bootloader.pm: add use devices
- (install_grub): ensure the translated messages are not too big the hard
- way
-
- * install_any.pm (generate_automatic_stage1_params): replace
- generate_ks_cfg
- (install_urpmi): have "use hdlist ..." in any case
-
- * my_gtk.pm: XSetInputFocus now done in perl-GTK
- (_create_window): don't care about c::XSetInputFocus not existing
-
- * any.pm (setupBootloader): pixelization
- (setupBootloader): fix call to get_append
-
- * interactive.pm (vnew): cleanup
-
- * common.pm (salt): cleanup
-
- * install_steps_interactive.pm (generateAutoInstFloppy): use
- generate_automatic_stage1_params
-
- * c/stuff.xs.pm: XSetInputFocus now done in perl-GTK
-
- * c/Makefile.PL: compile fix
-
- * diskdrake.pm (create_buttons4partitions_): fix for displaying LVM
-
- * Xconfigurator.pm (xtest): use external xtest if standalone
-
- * install2.pm (main): remove unloading vfat (not needed anymore with
- mdk-stage1)
-
-2001/03/04 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
- diskdrake.pm, share/po/af.po: updated po files
-
-2001/03/04 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake.pm (Add2LVM): fix bug (causing empty list), make cancel work
-
- * share/rpmsrate:
- - remove autologin
- - move X11R6-contrib to DEVELOPEMENT and lower rate
-
-2001/03/04 stew <sbenedict@mandrakesoft.com>
-
- * any.pm - changes to enable yaboot configuration for PPC
-
- * diskdrake.pm, fs.pm, partition_table.pm isBootstrap -> isAppleBootstrap
-
- * install_steps_interactive.pm - auto-add Apple Bootstrap - PPC
-
-2001/03/03 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm, fsedit.pm, lvm.pm, standalone/diskdrake,
- install_interactive.pm, install2.pm: small fixes for LVM
-
- * diskdrake.pm: don't default the LVM name to 'pp' ;pp
- small fixes for LVM
-
-2001/03/03 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: small fixes for LVM
- (doPartitionDisksAfter): small adaptation for LVMs
- use run_or_die
-
- * fsedit.pm: small fixes for LVM
- (hds): detect LVMs and return them
- (add): handling of LVMs
- (@partitions_signatures): add new magic of reiserfs
-
- * bootloader.pm: use run_or_die
-
- * run_program.pm (run_or_die, rooted_or_die): created
-
- * install_steps_interactive.pm: cleanup
-
- * install_any.pm (getHds): handle LVMs. $o->{lvms} contain them
- (setPackages): ask for installation of package lvm when needed
- (suggest_mount_points, find_root_parts): take $fstab as arg instead of
- $hds
-
- * install2.pm: small fixes for LVM
- (formatPartitions): call vgscan if needed when / is mounted
-
- * devices.pm (make): better caller in error
-
- * share/list: add progs for LVM handling
-
- * install_interactive.pm: small fixes for LVM
-
- * diskdrake.pm: small fixes for LVM
- - addition of drive to notebook cleaned
- - various clean-up
- - handling of LVMs
-
- * standalone/diskdrake: small fixes for LVM
- small adaptation
-
- * lvm.pm: small fixes for LVM
- creation
-
- * partition_table.pm: add isLVMBased
-
-2001/03/02 stew <sbenedict@mandrakesoft.com>
-
- * commands.pm - fdisk locks up machine on report_bug - replace with pdisk PPC
-
- * install_steps.pm - no bootfloppy, added yaboot.conf - PPC
-
- * install_interactive.pm - pdisk vs. fdisk - PPC
-
- * bootloader.pm - added code to create yaboot.conf, run ybin - vmlinux vs. vmlinuz
-
-2001/03/02 stew <sbenedict@mandrakesoft.com>
-
- * c/smp.c -stanza for PPC
-
- * detect_devices.pm - added code for MO devices
-
- * help.pm - help information for yaboot - PPC
-
- * partition_table.pm - PPC mods
-
- * partition_table_mac.pm - PPC mods
-
- * modules.pm - PPC mods - parallel port not used
-
- * diskdrake.pm - PPC mods - display like pdisk
-
- * install2.pm - PPC mod - no bootdisk
-
- * fs.pm - bootstrap partition - PPC
-
-2001/02/27 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: pop up a dialog to quit X when accepting
- configuration
-
-2001/02/27 Pixel <pixel@mandrakesoft.com>
-
- * partition_table_raw.pm (@MBR_signatures): add yet another grub signature
-
- * devices.pm (entry): add fd0H1440 and fd1H1440
-
- * bootloader.pm (mkbootdisk): fix for mkbootdisk using fd0H1440. Must be
- created
-
-2001/02/26 dam's <damien@mandrakesoft.com>
-
- * Makefile.drakxtools, pixmaps/hori.xpm, pixmaps/tradi.xpm,
- pixmaps/eth_card_mini.xpm, pixmaps/verti.xpm: new pixmap policy
-
- * Makefile: typo
- new pixmap policy
-
- * bootlook.pm: typo
- new pixmap policy
- need to be merged with bootloader
-
- * standalone/draknet: reincluded Gtk + init Gtk
- thiskind -> thiskind_backend
- new pixmap policy
-
- * standalone/drakboot: short-circuit to bootlook for the moment.
-
-2001/02/26 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po,
- share/po/i18n_compssUsers, share/po/DrakX.pot, share/po/es.po,
- share/po/fr.po, share/po/bg.po, share/po/ga.po, share/po/sr.po,
- share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
- share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
- share/po/ko.po, share/po/cy.po, share/po/nl.po, share/po/ja.po,
- share/po/wa.po, share/po/sv.po, share/po/is.po, share/po/hu.po,
- share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po, share/po/pl.po,
- share/po/fi.po, share/po/no.po, share/po/zh_CN.GB2312.po,
- share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
- share/po/sl.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
- share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
- share/po/da.po, share/po/cs.po, share/po/af.po: Fixed i18n_compssUsers
- script to produce a correct pot file
- Updated Estonian and Walloon files
-
- * bootlook.pm: changed I_() to _() so xgettext cna find the translatable
- strings
-
-2001/02/26 Pixel <pixel@mandrakesoft.com>
-
- * standalone/drakgw: pixelization
-
- * install_steps.pm: remove unneeded "use install_interactive"
-
- * install_steps_gtk.pm (copy_advertising): fix changing for
- advertising_images
-
-2001/02/26 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: should correct bad resolv.conf when swithcinf in
- standalone embedded mode. Not Certified
- fixed standalone edition
- corrected wizard mode.
-
- * Makefile.drakxtools, Makefile, pixmaps/eth_card_mini.xpm: new pixmap
- policy
-
- * standalone/draknet: new pixmap policy
- fixed standalone edition
-
- * bootlook.pm: need to be merged with bootloader
-
- * interactive_gtk.pm: if wizard, show the button
-
- * standalone/drakboot: short-circuit to bootlook for the moment.
-
-2001/02/26 Pixel <pixel@mandrakesoft.com>
-
- * common.pm (if_): fix for use in scalar context
-
- * install_steps_interactive.pm (summary): translate mouse description
-
- * install_steps.pm: remove unneeded "use install_interactive"
-
- * install_steps_gtk.pm (copy_advertising): fix changing for
- advertising_images
-
-2001/02/26 warly
-
- * share/compssUsers, share/rpmsrate: remove some packages
-
-2001/02/26 dam's <damien@mandrakesoft.com>
-
- * interactive_gtk.pm: if wizard, show the button
-
- * netconnect.pm: corrected wizard mode.
-
-2001/02/26 Pixel <pixel@mandrakesoft.com>
-
- * common.pm (if_): fix for use in scalar context
-
- * install_steps_interactive.pm (summary): translate mouse description
-
-2001/02/25 dam's <damien@mandrakesoft.com>
-
- * share/logo-mandrake-Firewall.xpm, share/logo-mandrake.xpm: changed logo.
-
- * netconnect.pm: profile handling.
- profile handling
- corrected wizard.
-
- * standalone/draknet: profile handling.
- profile handling
-
- * install_steps_interactive.pm: updated
-
-2001/02/25 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm (main): move the load_deps before all the loadO's
-
- * install_any.pm (g_auto_install): have formatMountPartitions graphical if
- $graphical
-
- * install_steps_interactive.pm (generateAutoInstFloppy): use "timeout 1"
- for replay
-
- * interactive_gtk.pm (ask_from_entries_refW): ensure "advanced" lists
- center the chosen value
-
-2001/02/24 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm, install2.pm: move writing to config files from
- install2::selectKeyboard to install_steps
-
- * share/list, Makefile, tools/i386/mkreiserfs: for now, have mkreiserfs in
- the CVS since the current cooker version is too recent
-
- * commands.pm (more): handle 'q' to quit
-
-2001/02/24 Pixel <pixel@mandrakesoft.com>
-
- * c/Makefile (stuff): fix the fix's fix :'-(
-
- * detect_devices.pm (pci_probe): fix to clean the log
-
- * install_steps_interactive.pm (setRootPassword): NIS server must be
- editable
-
-2001/02/23 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (g_auto_install): handle $replay flag. It means a 'not
- fully automated install'.
-
- * install_steps_auto_install.pm (@graphical_steps): specify which step
- should be interactive
-
- * c/Makefile (stuff.xs): exporting C_RPM and C_DRAKX is needed
-
- * install_steps.pm (afterInstallPackages): no kdm UserView in NIS
- (configurePrinter): if_'ization
-
- * install_steps_interactive.pm (exitInstall): ask wether Replay or
- Automated
- (generateAutoInstFloppy): handle $replay flag. It means a 'not fully
- automated install'.
- (summary): nicer mouse name
-
-2001/02/23 dam's <damien@mandrakesoft.com>
-
- * network.pm, standalone/draknet, netconnect.pm, my_gtk.pm: new wizard
- layout, no use gtk in draknet, minor bugfixes
-
-2001/02/23 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: added accessor the rpmsrate data of packages.
- avoid rebuilding the database for oem, rpm db is assumed to be fine.
-
- * rescue/make_rescue_img: removed kernel_reread program.
-
- * rescue/tree/etc/oem: removed server from selection.
- added mutli CD support to OEM (NFS/DVD transparent)
- fixed selection of package now select much more than before.
- fixed root partition size set to the minimum.
-
-2001/02/23 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/rpmsrate: move xterm to SYSTEM
-
-2001/02/23 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm: move the 'use my_gtk' in 'require my_gtk' and only if
- needed
-
- * install_steps_auto_install.pm (@graphical_steps): specify which step
- should be interactive
-
- * c/stuff.xs.pm: hack for macroporcessing in term.h
- use C_DRAKX
-
- * install_steps.pm (afterInstallPackages): no kdm UserView in NIS
- (configurePrinter): if_'ization
-
- * share/rpmsrate: add packages installed on demand by DrakX. they are
- specifically flagged
- or flagged 'INSTALL'
-
- * perl2fcalls: handling of ``package''->import(``what to import'')
-
- * interactive.pm (vnew): use /usr/X11R6/bin/xtest instead of c::Xtest
-
- * Makefile (tar-drakxtools): C_RPM and C_DRAKX set to 0
-
- * install_any.pm (g_auto_install): handle $replay flag. It means a 'not
- fully automated install'.
-
- * c/Makefile.PL: use C_DRAKX
-
- * pkgs.pm (setSelectedFromCompssList): fix the fix
-
- * c/Makefile (stuff.xs): exporting C_RPM and C_DRAKX is needed
- add setting C_DRAKX to 1 by default
-
- * install_steps_interactive.pm (exitInstall): ask wether Replay or
- Automated
- (generateAutoInstFloppy): handle $replay flag. It means a 'not fully
- automated install'.
- (summary): nicer mouse name
-
-2001/02/23 Pixel <pixel@mandrakesoft.com>
-
- * interactive_gtk.pm (ask_from_entries_refW): double clicking on list
- means 'Ok'
-
- * pkgs.pm (setSelectedFromCompssList): fix sillyness
-
-2001/02/22 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: corected infinite loop
-
-2001/02/22 François Pons <fpons@mandrakesoft.com>
-
- * rescue/tree/etc/oem: minor cleanup to edit partition size more easily.
- brand new version written in perl, support repartitionning on the fly of
- the
- hard disk and resize of already present FAT partition.
-
- * rescue/list.i386, rescue/list, rescue/Makefile: make rescue build a bit
- more cleaner (added dependancy).
- added missing file for rescue to enable new oem install.
-
-2001/02/22 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/insmod-modutils/include/elf_hppa64.h,
- mdk-stage1/insmod-modutils/util/alias.h,
- mdk-stage1/insmod-modutils/util/xstrcat.c,
- mdk-stage1/insmod-modutils/util/gzfiles.c,
- mdk-stage1/insmod-modutils/include/elf_arm.h,
- mdk-stage1/insmod-modutils/util/sys_qm.c,
- mdk-stage1/insmod-modutils/util/modstat.c,
- mdk-stage1/insmod-modutils/obj/obj_sparc.c,
- mdk-stage1/insmod-modutils/include/elf_m68k.h,
- mdk-stage1/insmod-modutils/Makefile,
- mdk-stage1/insmod-modutils/util/xstrdup.c,
- mdk-stage1/insmod-modutils/obj/obj_arm.c,
- mdk-stage1/insmod-modutils/obj/obj_m68k.c,
- mdk-stage1/insmod-modutils/obj/obj_hppa64.c,
- mdk-stage1/insmod-modutils/include/elf_sparc64.h,
- mdk-stage1/insmod-modutils/util/sys_dm.c,
- mdk-stage1/insmod-modutils/include/elf_s390.h,
- mdk-stage1/insmod-modutils/obj/obj_s390.c,
- mdk-stage1/insmod-modutils/util/xmalloc.c,
- mdk-stage1/insmod-modutils/util/xsystem.c, mdk-stage1/insmod.h,
- mdk-stage1/insmod-modutils/util/xftw.c,
- mdk-stage1/insmod-modutils/include/elf_i386.h,
- mdk-stage1/insmod-modutils/util/sys_gks.c,
- mdk-stage1/insmod-modutils/util/snap_shot.c,
- mdk-stage1/insmod-modutils/obj/obj_i386.c, mdk-stage1/modules.c,
- mdk-stage1/stage1.c, mdk-stage1/insmod-modutils/include/obj.h,
- mdk-stage1/insmod-modutils/include/elf_ppc.h,
- mdk-stage1/insmod-modutils/obj/obj_reloc.c,
- mdk-stage1/insmod-modutils/include/elf_sparc.h,
- mdk-stage1/insmod-modutils/util/sys_nim.c,
- mdk-stage1/insmod-modutils/obj/obj_ppc.c, mdk-stage1/Makefile,
- mdk-stage1/insmod-modutils/include/elf_hppa.h,
- mdk-stage1/insmod-busybox/insmod.c,
- mdk-stage1/insmod-modutils/util/meta_expand.c,
- mdk-stage1/insmod-modutils/util/arch64.c,
- mdk-stage1/insmod-modutils/obj/obj_load.c,
- mdk-stage1/insmod-modutils/obj/obj_hppa.c,
- mdk-stage1/insmod-busybox/insmod.h,
- mdk-stage1/insmod-modutils/include/elf_ia64.h,
- mdk-stage1/insmod-modutils/obj/obj_ia64.c,
- mdk-stage1/insmod-modutils/obj/obj_sparc64.c,
- mdk-stage1/insmod-modutils/include/elf_mips.h,
- mdk-stage1/insmod-modutils/include/module.h,
- mdk-stage1/insmod-modutils/obj/obj_mips.c,
- mdk-stage1/insmod-modutils/util/sys_cm.c,
- mdk-stage1/insmod-modutils/obj/obj_alpha.c,
- mdk-stage1/insmod-modutils/include/kerneld.h,
- mdk-stage1/insmod-modutils/util/xrealloc.c,
- mdk-stage1/insmod-modutils/obj/Makefile,
- mdk-stage1/insmod-modutils/insmod-frontend.c,
- mdk-stage1/insmod-modutils/obj/obj_common.c,
- mdk-stage1/insmod-modutils/include/modstat.h,
- mdk-stage1/insmod-modutils/util/Makefile,
- mdk-stage1/insmod-modutils/include/config.h,
- mdk-stage1/insmod-modutils/util/logger.c,
- mdk-stage1/insmod-modutils/obj/obj_kallsyms.c,
- mdk-stage1/Makefile.common, mdk-stage1/insmod-modutils/include/util.h,
- mdk-stage1/insmod-modutils/util/config.c,
- mdk-stage1/insmod-modutils/include/version.h,
- mdk-stage1/insmod-modutils/include/kallsyms.h,
- mdk-stage1/insmod-modutils/include/elf_alpha.h,
- mdk-stage1/insmod-modutils/util/sys_oim.c,
- mdk-stage1/insmod-modutils/insmod.c: use modutils for non Intel arch's
-
-2001/02/22 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm (write_fstab): clean-up, $fstab takes precedence over @to_add, but
- not
- over existing /etc/fstab. Fix some stupid stuff
-
- * modules.pm, commands.pm: call /usr/bin/insmod_ with full path
-
- * install2.pm (main): don't set a special $remote_path PATH for
- postInstallNonRooted
- (otherwise install's modprobe is not used, and you can't "modprobe
- vfat",
- even if "/usr/bin/modprobe vfat" doesn't work because insmod_ is not
- found.
-
- * my_gtk.pm (create_box_with_title): disallow focusing on text if it is
- non-scrolled
-
-2001/02/22 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/dietlibc/include/stdlib.h, mdk-stage1/minilibc.c,
- mdk-stage1/init-libc-headers.h,
- mdk-stage1/dietlibc/include/sys/select.h, mdk-stage1/Makefile,
- mdk-stage1/init.c, mdk-stage1/minilibc.h,
- mdk-stage1/dietlibc/include/unistd.h,
- mdk-stage1/dietlibc/include/sys/socket.h,
- mdk-stage1/dietlibc/include/signal.h: have "init" compiled against
- dietlibc (rather than glibc) on non-Intel arch's
-
-2001/02/22 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_auto_install.pm: $graphical is now a module variable. Can
- be changed from everywhere
-
- * fs.pm (write_fstab): clean-up, $fstab takes precedence over @to_add, but
- not
- over existing /etc/fstab. Fix some stupid stuff
-
- * modules.pm, commands.pm: call /usr/bin/insmod_ with full path
-
- * install2.pm (main): don't set a special $remote_path PATH for
- postInstallNonRooted
- (otherwise install's modprobe is not used, and you can't "modprobe
- vfat",
- even if "/usr/bin/modprobe vfat" doesn't work because insmod_ is not
- found.
-
- * my_gtk.pm (create_box_with_title): disallow focusing on text if it is
- non-scrolled
-
- * interactive.pm (ask_from_entries_refH_powered_normalize): fix setting
- type to 'list' in
- case of format. should be only set if type is unset
- (ask_from_entries_refH_powered_normalize): if list+format then type is
- 'list', combo not accepted (hacky?)
-
- * interactive_gtk.pm (ask_from_entries_refW): if no button wanted, don't
- call create_okcancel
-
-2001/02/22 Pixel <pixel@mandrakesoft.com>
-
- * interactive.pm (ask_from_entries_refH_powered_normalize): if list+format
- then type is
- 'list', combo not accepted (hacky?)
-
- * install_steps_auto_install.pm: $graphical is now a module variable. Can
- be changed from everywhere
-
- * interactive_gtk.pm (ask_from_entries_refW): if no button wanted, don't
- call create_okcancel
-
-2001/02/21 dam's <damien@mandrakesoft.com>
-
- * network.pm, netconnect.pm: netconnect recode, wizard compatible.
- network.pm modified for wizard. Still need work for ask_yesorno,
- ask_okcancel. +debugging of course
-
- * standalone/draknet: updated (don't remember what)
-
-2001/02/21 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/tools.c, mdk-stage1/Makefile,
- mdk-stage1/dietlibc/lib/vprintf.c, mdk-stage1/dietlibc/lib/vfprintf.c,
- mdk-stage1/minilibc.h, mdk-stage1/minilibc.c,
- mdk-stage1/init-libc-headers.h:
- - fix "init" on ppc (do not use minilibc on non-i386 arch's)
- - fix segfault of dietlibc-linked apps (broken va_stuff in dietlibc)
- - cleanup of "init"
-
- * mdk-stage1/init.c:
- - fix "init" on ppc (do not use minilibc on non-i386 arch's)
- - fix segfault of dietlibc-linked apps (broken va_stuff in dietlibc)
- - cleanup of "init"
- fix up syslog logging stuff
-
-2001/02/21 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm (generateAutoInstFloppy): removed
-
- * install_any.pm (g_auto_install): use selected_leaves for
- default_packages to reduce the
- list of packages (aka cleanup auto_inst.cfg)
- (g_default_packages): created
-
- * install_steps_interactive.pm (exitInstall): add generateAutoInstFloppy
- and g_default_packages calls in
- advanced
-
- * netconnect.pm, partition_table.pm, fsedit.pm: cleanup Data::Dumper use
-
- * pkgs.pm (selected_leaves): created
-
- * install2.pm (main): do postInstallNonRooted before postInstall (so that
- 'modprobe
- vfat' can be done in postInstallNonRooted and used in postInstall)
- - move the loadO of patch/defcfg after loading modules.dep
- - generateAutoInstFloppy is no more a step
- - removed use Data::Dumper
-
-2001/02/21 Chmouel Boudjnah <chmouel@mandrakesoft.com>
-
- * share/rpmsrate: Add iputils to SYSTEM.
-
-2001/02/21 dam's <damien@mandrakesoft.com>
-
- * docs/wizard.doc: putain de doc de merde pout petite qui est trop débile
-
- * interactive.pm, my_gtk.pm: corrected wizard mode.
-
-2001/02/21 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/TECH-INFOS: sync doc with disk automatic installs
-
- * mdk-stage1/disk.c: add support for automatic (ex-kickstart) in disk
- installs
-
-2001/02/21 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/da.po: updated Danish file
-
-2001/02/21 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm (generateAutoInstFloppy): removed
-
- * install_any.pm (g_auto_install): use selected_leaves for
- default_packages to reduce the
- list of packages (aka cleanup auto_inst.cfg)
- (g_default_packages): created
-
- * install_steps_interactive.pm (exitInstall): add generateAutoInstFloppy
- and g_default_packages calls in
- advanced
-
- * netconnect.pm, partition_table.pm, fsedit.pm: cleanup Data::Dumper use
-
- * pkgs.pm (selected_leaves): created
-
- * install2.pm (main): do postInstallNonRooted before postInstall (so that
- 'modprobe
- vfat' can be done in postInstallNonRooted and used in postInstall)
- - move the loadO of patch/defcfg after loading modules.dep
- - generateAutoInstFloppy is no more a step
- - removed use Data::Dumper
-
-2001/02/20 Pixel <pixel@mandrakesoft.com>
-
- * printerdrake.pm: fix typo
-
- * install_steps.pm, install_steps_gtk.pm, install_any.pm: better
- advertising support
-
-2001/02/20 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/url.h, mdk-stage1/url.c, mdk-stage1/network.c: for HTTP
- installs, make use of Content-Length when available, to display
- progressbar
-
-2001/02/20 Pixel <pixel@mandrakesoft.com>
-
- * Makefile: various
- - pcmcia_config.patch now in tools (no more in install which is
- removed)
- - copy xpm's (until step icons work with png's)
- - transform group icons in pngs
-
- * modules.pm, class_discard.pm, my_gtk.pm, Xconfigurator.pm: various
-
- * tools/pcmcia_config.patch: pcmcia_config.patch now here
-
- * printerdrake.pm: fix typo
-
- * install_any.pm, install_steps.pm, install_steps_gtk.pm: better
- advertising support
-
-2001/02/20 warly
-
- * share/compssUsers, share/rpmsrate, share/compssList: update rpmsrate
-
-2001/02/20 François Pons <fpons@mandrakesoft.com>
-
- * c/stuff.xs.pm, live_install, pkgs.pm, live_install2: added RPMRC_FILE
- env variable to choose rpmrc file for rpmlib used
- by DrakX, neccessary for live update from a 7.2 or older.
- Check that if something goes wrong with rebuilddb, avoid removing
- old rpm-3 db files.
- Make sure live_install can start from top directory too.
-
-2001/02/20 Pixel <pixel@mandrakesoft.com>
-
- * Makefile: various
- - pcmcia_config.patch now in tools (no more in install which is
- removed)
- - copy xpm's (until step icons work with png's)
- - transform group icons in pngs
-
- * modules.pm, class_discard.pm: various
-
- * tools/pcmcia_config.patch: pcmcia_config.patch now here
-
- * my_gtk.pm, Xconfigurator.pm: various
- major move. now ask_from_list returns false when canceled (it doesn't
- die 'ask_from_list canceled' anymore)
-
- * interactive_gtk.pm, standalone/mousedrake, install_steps_interactive.pm,
- netconnect.pm, standalone/keyboarddrake, install2.pm, interactive.pm,
- any.pm, printerdrake.pm, diskdrake.pm: major move. now ask_from_list
- returns false when canceled (it doesn't die 'ask_from_list canceled'
- anymore)
-
-2001/02/19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/stage1.c: try to print errno's stuff when symlink to
- /tmp/stage2 failed
-
- * mdk-stage1/dhcp.c: ARP_MAX_RETRIES: s/5/4
-
-2001/02/19 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
- share/po/af.po: updated Estonian file
-
-2001/02/19 Pixel <pixel@mandrakesoft.com>
-
- * interactive.pm (ask_from_listf_no_check): die 'ask_from_list cancel' on
- cancel
-
- * my_gtk.pm (create_packtable): don't use attach_raw anymore (was a
- sillyme)
-
-2001/02/18 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: typo
- make fbastok happy about button placement.
- little improvements.
-
-2001/02/16 dam's <damien@mandrakesoft.com>
-
- * install_gtk.pm: corrected xpm mask
-
- * network.pm: wireless eth support corrected.
-
- * share/step-red.xpm, share/step-orange.xpm, share/step-orange-click.xpm,
- share/step-green-click.xpm, share/step-green.xpm, share/step-red-on.xpm,
- share/step-orange-on.xpm, share/step-green-on.xpm,
- share/step-red-click.xpm: re added these xpm files against display mask
- pb.
-
-2001/02/16 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/init.c: better ansi colors
-
- * mdk-stage1/dhcp.c: comply with glibc-2.2.2 more strict headers
-
- * mdk-stage1/stdio-frontend.c: display more nicely when there is a long
- list to choose from (1, 2 or 4 columns)
-
-2001/02/15 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/TECH-INFOS, mdk-stage1/README: update doc
-
-2001/02/15 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/az.po: updated Azeri file
-
-2001/02/15 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (installPackages): fix i_images
-
- * fsedit.pm (suggestions_mntpoint): fix
-
-2001/02/15 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (installPackages): fix i_images
- (installPackages): traktolpilization and advertising
-
- * Makefile (get_needed_files): copy png files instead of xpm's
-
- * fsedit.pm (suggestions_mntpoint): fix
-
- * my_gtk.pm (gtkcreate_png): add error message, syntax cleanup
-
- * share/list: add GdkImlib stuff
-
- * perl2fcalls: add Gtk::Gdk::ImlibImage
-
- * install2.pm (main): set SHARE_PATH to /export/Mandrake/mdkinst/usr/share
- if it exists
-
-2001/02/15 dam's <damien@mandrakesoft.com>
-
- * my_gtk.pm, any.pm, install_gtk.pm, install_steps_interactive.pm,
- install_steps_gtk.pm, interactive_gtk.pm: added png support. Need to
- test the faces2xpm stuff.
-
- * share/step-orange-click.xpm, share/rpm-selected.xpm,
- share/step-green-click.xpm, share/step-green.xpm, share/rpm-base.xpm,
- share/ftin.xpm, share/step-orange-on.xpm, share/ftout.xpm,
- share/step-red-click.xpm, share/step-green-on.xpm,
- share/rpm-unselected.xpm, share/step-red.xpm, share/step-orange.xpm,
- share/reload.xpm, share/rpm-semiselected.xpm,
- share/logo-mandrake-Desktop.xpm, share/rpm-installed.xpm,
- share/step-red-on.xpm: removed, png are used instead.
-
- * standalone/draknet: updated internet and added eth conf
-
- * share/help.xpm, share/logo-mandrake.xpm: removed, png are used instead.
- added png images
-
- * share/step-red.png, share/step-orange.png, share/reload.png,
- share/logo-mandrake.png, share/rpm-semiselected.png,
- share/logo-mandrake-Desktop.png, share/rpm-installed.png,
- share/logo-mandrake_sav.png, share/step-red-on.png, share/help_sav.png,
- share/rpm-selected.png, share/step-orange-click.png,
- share/step-green-click.png, share/step-green.png, share/rpm-base.png,
- share/logo-mandrake2.png, share/ftin.png, share/help.png,
- share/step-orange-on.png, share/step-green-on.png, share/ftout.png,
- share/step-red-click.png, share/step-green_s.png, share/themes-mdk.rc,
- share/rpm-unselected.png: added png images
-
-2001/02/15 Pixel <pixel@mandrakesoft.com>
-
- * Makefile (get_needed_files): copy png files instead of xpm's
-
- * install2.pm (main): set SHARE_PATH to /export/Mandrake/mdkinst/usr/share
- if it exists
- (selectKeyboard): give clicked as parameter
-
- * my_gtk.pm (gtkcreate_png): add error message, syntax cleanup
-
- * fsedit.pm (suggestions_mntpoint): fix typo
-
- * share/list: add GdkImlib stuff
-
- * perl2fcalls: add Gtk::Gdk::ImlibImage
-
- * install_steps_interactive.pm (summary): better message for i18n
-
- * install_steps_gtk.pm (installPackages): traktolpilization and
- advertising
-
-2001/02/14 dam's <damien@mandrakesoft.com>
-
- * network.pm, standalone/draknet: wireless updated
-
- * share/help.xpm, share/themes-mdk.rc, share/logo-mandrake.xpm: valentin
- theme :)
-
-2001/02/14 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm (afterInstallPackages): add user in group usb
-
-2001/02/14 dam's <damien@mandrakesoft.com>
-
- * share/themes-mdk.rc: valentin theme :)
- added drawing theme section
-
- * network.pm: wireless updated
- updated wireless eth support
-
- * standalone/draknet: wireless updated
-
- * share/help.xpm, share/logo-mandrake.xpm: valentin theme :)
-
-2001/02/13 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: network con initiated in draknet.
- netconnect improvement.
- typo
-
- * network.pm: typo
- corrected domainname setting
-
- * standalone/draknet: network con initiated in draknet.
- netconnect improvement.
-
-2001/02/13 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/frontend.h, mdk-stage1/network.h,
- mdk-stage1/stdio-frontend.c, mdk-stage1/dhcp.c, mdk-stage1/automatic.c,
- mdk-stage1/newt-frontend.c, mdk-stage1/automatic.h, mdk-stage1/disk.c,
- mdk-stage1/network.c: write down Magic Callback (tm) for static ip stuff
-
- * mdk-stage1/modules.c: ask for modules parameters everytime in expert
- mode, to avoid wrong autodetections in certain cases
- - better log of nfs mount errors
- - don't insmod modules already present (important for bzip2 slowness)
-
- * mdk-stage1/cdrom.c: better error msg thx to mcdtg
-
- * mdk-stage1/mount.c, mdk-stage1/nfsmount.c:
- - better log of nfs mount errors
- - don't insmod modules already present (important for bzip2 slowness)
-
- * mdk-stage1/stage1.c, mdk-stage1/init.c: use exit code 66 for rescue
- better console messages at startup
-
-2001/02/13 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: profile handling updated
-
- * network.pm: typo
- corrected domainname setting
-
- * netconnect.pm: finished load_conf
-
-2001/02/13 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * rescue/make_rescue_img, rescue/list: include libs for hostname resolving
-
- * mdk-stage1/stage1.c, mdk-stage1/init.c: better console messages at
- startup
-
- * mdk-stage1/tools.c:
- - save /etc/resolv.conf for rescue
-
-2001/02/13 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (selectKeyboard): can be automatic only in
- non-expert
-
- * any.pm: md5 now done via crypt
-
- * install_steps.pm (exitInstall): catch exception of output report.bug
- (for gc)
-
-2001/02/13 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (selectKeyboard): can be automatic only in
- non-expert
-
- * tools/cvslog2changelog.pl: fix for gc & fpons
- fix for fredl broken CVS
-
- * any.pm: md5 now done via crypt
-
- * install_steps.pm (exitInstall): catch exception of output report.bug
- (for gc)
-
-2001/02/13 dam's <damien@mandrakesoft.com>
-
- * network.pm: experimental wireless eth support. Not tested
-
-2001/02/13 Pixel <pixel@mandrakesoft.com>
-
- * tools/cvslog2changelog.pl: fix for gc & fpons
- fix for fredl broken CVS
-
- * c/stuff.xs.pm, c/Makefile.PL, c/md5.h, c/md5_crypt.c, c/md5.c: md5 can
- be done via crypt of glibc, so remove all this
-
-2001/02/13 dam's <damien@mandrakesoft.com>
-
- * any.pm: merging difference
-
- * netconnect.pm: corrected profile handling
-
- * network.pm: experimental wireless eth support. Not tested
-
-2001/02/12 Pixel <pixel@mandrakesoft.com>
-
- * tools/addchangelog.pl: log more than mdk-stage1 and perl-install (added
- docs, rescue, tools)
-
-2001/02/12 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/probing.c: do not close un unbound socket!!
-
- * c/stuff.xs.pm: close socket everytime in hasNetDevice
-
- * mdk-stage1/Makefile: tag it 8.0beta instead of 8.0, to avoid future
- potential confusions
-
- * modules.pm: re include some network modules
-
-2001/02/12 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * rescue/list: fix vi trouble
- - add lspci, lspcidrake, vim-minimal
- - better /etc/issue
- - better PS1
- - write embryonic tool (installation of detected drivers according to
- pci cards)
-
- * rescue/aliases, rescue/tree/etc/issue: fix vi trouble
-
- * rescue/list.i386, rescue/make_rescue_img, rescue/drvinst:
- - add lspci, lspcidrake, vim-minimal
- - better /etc/issue
- - better PS1
- - write embryonic tool (installation of detected drivers according to
- pci cards)
-
-2001/02/12 Pixel <pixel@mandrakesoft.com>
-
- * rescue/drvinst: pixelization
-
- * docs/README: fix doc about Mandrake/base/compss
-
- * install_steps_gtk.pm (choosePackagesTree): non first choice packages are
- in "Other".
-
- * install_interactive.pm, any.pm, fsedit.pm, diskdrake.pm: auto_allocate
- partitions choice modified. diskdrake in expert asks what kind
- of auto_allocation is wanted, others choose 'simple' in
- %fsedit::suggestions
-
- * install2.pm: auto_allocate partitions choice modified. diskdrake in
- expert asks what kind
- of auto_allocation is wanted, others choose 'simple' in
- %fsedit::suggestions
- (main): gc has done it again! /tmp/conf.modules is now
- /etc/modules.conf,
- so load both to keep compatibility.
-
- * my_gtk.pm: cleanup (remove ask_from_list and _ask_from_list)
-
- * interactive_gtk.pm (ask_from_entries_refW): use
- $common->{advanced_label}
- (create_ctree): add keyboard shortcuts
- (create_clist): moveto only if row_is_visible
-
- * interactive.pm (ask_from_entries_refH_powered_normalize): advanced_label
- defaults to
- _("Advanced")
-
- * tools/addchangelog.pl: log more than mdk-stage1 and perl-install (added
- docs, rescue, tools)
-
- * install_steps_interactive.pm (configurePrinter): cleanup,
- pkg_install_if_requires_satisfied('xpp',
- 'kups') only if a printer is configured (for the case when _("Would you
- like to configure a printer?") is answered no)
-
- * rescue/tree/etc/rc.sysinit: add floppy module for 2.4
-
-2001/02/10 Pixel <pixel@mandrakesoft.com>
-
- * standalone/draknet, standalone/XFdrake: corrected pkgs_install given
-
- * install_any.pm: add preConfigureTimezone
- add step summary. remove steps configureTimezone and configurePrinter
-
- * install_interactive.pm: cleanup
-
- * standalone/keyboarddrake, share/keymaps_generate, keyboard.pm:
- - lang2keyboards handle keyboard percentages
- - xmodmaps now named keyboards
-
- * install_steps_interactive.pm: add step summary. remove steps
- configureTimezone and configurePrinter, modify selectKeyboard
-
- * install2.pm, timezone.pm, install_steps.pm: add step summary. remove
- steps configureTimezone and configurePrinter
-
- * netconnect.pm: corrected back $install call
-
-2001/02/10 Pixel <pixel@mandrakesoft.com>
-
- * standalone/keyboarddrake, share/keymaps_generate, keyboard.pm:
- - lang2keyboards handle keyboard percentages
- - xmodmaps now named keyboards
-
- * install_steps_interactive.pm: add step summary. remove steps
- configureTimezone and configurePrinter, modify selectKeyboard
-
- * standalone/draknet, standalone/XFdrake: corrected pkgs_install given
-
- * install_any.pm: add preConfigureTimezone
- add step summary. remove steps configureTimezone and configurePrinter
-
- * install2.pm, timezone.pm, install_steps.pm: add step summary. remove
- steps configureTimezone and configurePrinter
-
- * install_interactive.pm: cleanup
-
- * netconnect.pm: corrected back $install call
-
-2001/02/09 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm, install_steps_interactive.pm, install2.pm,
- timezone.pm: configureTimezone doesn't take parameter
- /etc/sysconfig/clock
-
-2001/02/09 Pixel <pixel@mandrakesoft.com>
-
- * interactive_gtk.pm, interactive.pm, interactive_newt.pm: add button
- handling, quite weird behaviour though cuz of newt sillyness
-
- * install2.pm: configureTimezone doesn't take parameter
- /etc/sysconfig/clock
- (main): have compatibility with old stage1 (rhimage -> image)
- (formatPartitions):
- s|etc/sysconfig/consoletrans|etc/sysconfig/console/consoletrans|
- as it should now be (see lang.pm 1.143)
-
- * install_steps.pm, install_steps_interactive.pm, timezone.pm:
- configureTimezone doesn't take parameter /etc/sysconfig/clock
-
-2001/02/09 siegel
-
- * share/po/de.po: new german version
-
-2001/02/08 dam's <damien@mandrakesoft.com>
-
- * standalone/drakgw: implemented or updated embedded mode
- added embedded and (ugly) wizard mode.
-
- * standalone/printerdrake, standalone/mousedrake, standalone/diskdrake,
- standalone/keyboarddrake: implemented or updated embedded mode
-
- * standalone/draknet: implemented or updated embedded mode
- added embedded mode
-
- * standalone/XFdrake: implemented or updated embedded mode
- corrected compilation bug.
-
- * standalone/drakboot: implemented or updated embedded mode
- updated embedded mode. Should work, not tested in real world
-
- * netconnect.pm: removed testing wizard instruction
-
-2001/02/08 François Pons <fpons@mandrakesoft.com>
-
- * ftp.pm: fixed wrong URLPREFIX formation if no user given.
-
- * standalone/XFdrake: fix the previous changelog wich was wrong (bad
- spelling),
- added a char in comment to allow a new release (thanks to pixel :-)
- make sure SHARE_PATH is set.
- fixed SHARE_PATH to make sure it is setted.
-
- * Xconfigurator.pm: added DRI experimental support (sis, radeon). Prefer
- XF3 for SiS card.
-
- * pkgs.pm: fixed problem for updating hdlist after going back to partition
- step.
-
-2001/02/08 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/tools.c, mdk-stage1/config-stage1.h, mdk-stage1/network.c:
- better memory detection (from wonderful drakx)
-
-2001/02/08 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
- share/po/af.po: updated Norwegian file
-
-2001/02/08 Pixel <pixel@mandrakesoft.com>
-
- * common.pm (availableRamMB): cleanup
-
- * standalone.pm, standalone/XFdrake: make sure SHARE_PATH is set now in
- standalone
-
-2001/02/07 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fixed unknown package ARRAY... and locales selection
- according to langs.
-
- * modules.pm: fixed module name without text for SCSI configuration
- dialog, add log.
-
-2001/02/07 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/stage1.c, mdk-stage1/probing.h, mdk-stage1/stage1.h,
- mdk-stage1/tools.c, mdk-stage1/automatic.c, mdk-stage1/init.c,
- mdk-stage1/probing.c, mdk-stage1/automatic.h, mdk-stage1/modules.c,
- mdk-stage1/network.c:
- - use description of network cards when you have to select between
- interfaces; has accuracy even in the case of multiple interface for a
- given kernel module
- - write down a small "shell" to change parameters on the fly (needs
- compile option SPAWN_INTERACTIVE)
-
-2001/02/07 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (choosePackages): better fix for getting
- max install size.
- (choosePackages): call setSelectedFromCompssList with empty
- compssUsersChoice meaning max
-
- * common.pm (formatXiB): more precise for cases like 1_234_000 -> 1.2GB
-
-2001/02/07 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fixed unknown package ARRAY... and locales selection
- according to langs.
-
-2001/02/07 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (choosePackages): better fix for getting
- max install size.
- (choosePackages): call setSelectedFromCompssList with empty
- compssUsersChoice meaning max
-
- * common.pm (formatXiB): more precise for cases like 1_234_000 -> 1.2GB
-
-2001/02/07 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/Makefile: tag VERSION as 8.0 since stage2 graphics now show
- 8.0
-
- * mdk-stage1/network.c: don't reverse hostname lookup if dhcp already gave
- hostname+domain
-
-2001/02/07 Pixel <pixel@mandrakesoft.com>
-
- * share/logo-mandrake.xpm: xpm files should be xpm, not pngs :-(
-
- * detect_devices.pm (hasPCMCIA): created (check for /proc/pcmcia)
-
- * install_steps_interactive.pm (miscellaneous): remove asking about
- numlock and hd optimizations,
- deprecates it (aka don't do anything)
-
- * Xconfigurator.pm (main): don't need isLaptop anymore, use
- detect_devices::hasPCMCIA
-
- * bootloader.pm (suggest): read CLEAN_TMP from sysconfig/system, default
- value of memsize
- if given
- (install): save CLEAN_TMP in sysconfig/system
- (get_append, add_append): get or set an append value
- (has_profiles, set_profiles): get or add an entry office for profiles,
- also add prof=Home in
- the default entry
-
- * any.pm (setupBootloader): take care of profiles and memsize
- (facesnames): only display icons capitalized. This goes along the new
- mandrake_desk where capitalized named faces are the new one. [a-z].*
- icons
- being only kept for compatibility. (in case no capitalized icons
- available
- display everything (compatibility with old mandrake_desk)
-
- * standalone/draknet, standalone/XFdrake: don't pass isLaptop
-
- * install_steps.pm (setupBootloaderBefore, miscellaneousBefore): remove
- taking care of
- profiles and memsize. Now in any & bootloader
- (miscellaneousBefore): CLEAN_TMP is now in $o->{bootloader}, not in
- $o->{miscellaneous} anymore
-
- * install_gtk.pm (create_help_window, create_logo_window): use gtkxpm
-
- * netconnect.pm: remove the $isLaptop unused from a hell lot of functions
-
- * install2.pm (@installSteps): remove miscellaneous
- (main): don't remove pcmcia modules anymore (not there anymore), remove
- /sbin/stage1
-
-2001/02/07 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/Makefile: tag VERSION as 8.0 since stage2 graphics now show
- 8.0
-
- * mdk-stage1/network.c: don't reverse hostname lookup if dhcp already gave
- hostname+domain
-
-2001/02/07 Pixel <pixel@mandrakesoft.com>
-
- * share/logo-mandrake.xpm: xpm files should be xpm, not pngs :-(
-
- * detect_devices.pm (hasPCMCIA): created (check for /proc/pcmcia)
-
- * install_steps_interactive.pm (miscellaneous): remove asking about
- numlock and hd optimizations,
- deprecates it (aka don't do anything)
-
- * Xconfigurator.pm (main): don't need isLaptop anymore, use
- detect_devices::hasPCMCIA
-
- * bootloader.pm (suggest): read CLEAN_TMP from sysconfig/system, default
- value of memsize
- if given
- (install): save CLEAN_TMP in sysconfig/system
- (get_append, add_append): get or set an append value
- (has_profiles, set_profiles): get or add an entry office for profiles,
- also add prof=Home in
- the default entry
-
- * any.pm (setupBootloader): take care of profiles and memsize
- (facesnames): only display icons capitalized. This goes along the new
- mandrake_desk where capitalized named faces are the new one. [a-z].*
- icons
- being only kept for compatibility. (in case no capitalized icons
- available
- display everything (compatibility with old mandrake_desk)
-
- * standalone/draknet, standalone/XFdrake: don't pass isLaptop
-
- * install_steps.pm (setupBootloaderBefore, miscellaneousBefore): remove
- taking care of
- profiles and memsize. Now in any & bootloader
- (miscellaneousBefore): CLEAN_TMP is now in $o->{bootloader}, not in
- $o->{miscellaneous} anymore
-
- * install_gtk.pm (create_help_window, create_logo_window): use gtkxpm
-
- * netconnect.pm: remove the $isLaptop unused from a hell lot of functions
-
- * install2.pm (@installSteps): remove miscellaneous
- (main): don't remove pcmcia modules anymore (not there anymore), remove
- /sbin/stage1
-
-2001/02/07 Chmouel Boudjnah <chmouel@mandrakesoft.com>
-
- * share/rpmsrate: Add usbd to SYSTEM.
-
-2001/02/07 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: updated wizard mode, intro and other stuff
-
- * interactive_gtk.pm, interactive.pm, my_gtk.pm: updated wizard mode
-
- * share/logo-mandrake.xpm: new logo
-
-2001/02/07 François Pons <fpons@mandrakesoft.com>
-
- * http.pm, ftp.pm, pkgs.pm: now fully fixed ftp connection (and http too)
- caused by forked DrakX
- with latent ftp connection.
-
-2001/02/07 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/Makefile: tag VERSION as 8.0 since stage2 graphics now show
- 8.0
-
- * mdk-stage1/network.c: don't reverse hostname lookup if dhcp already gave
- hostname+domain
-
-2001/02/07 Pixel <pixel@mandrakesoft.com>
-
- * share/logo-mandrake.xpm: xpm files should be xpm, not pngs :-(
-
- * detect_devices.pm (hasPCMCIA): created (check for /proc/pcmcia)
-
- * install_steps_interactive.pm (miscellaneous): remove asking about
- numlock and hd optimizations,
- deprecates it (aka don't do anything)
-
- * Xconfigurator.pm (main): don't need isLaptop anymore, use
- detect_devices::hasPCMCIA
-
- * bootloader.pm (suggest): read CLEAN_TMP from sysconfig/system, default
- value of memsize
- if given
- (install): save CLEAN_TMP in sysconfig/system
- (get_append, add_append): get or set an append value
- (has_profiles, set_profiles): get or add an entry office for profiles,
- also add prof=Home in
- the default entry
-
- * any.pm (setupBootloader): take care of profiles and memsize
- (facesnames): only display icons capitalized. This goes along the new
- mandrake_desk where capitalized named faces are the new one. [a-z].*
- icons
- being only kept for compatibility. (in case no capitalized icons
- available
- display everything (compatibility with old mandrake_desk)
-
- * standalone/draknet, standalone/XFdrake: don't pass isLaptop
-
- * install_steps.pm (setupBootloaderBefore, miscellaneousBefore): remove
- taking care of
- profiles and memsize. Now in any & bootloader
- (miscellaneousBefore): CLEAN_TMP is now in $o->{bootloader}, not in
- $o->{miscellaneous} anymore
-
- * install_gtk.pm (create_help_window, create_logo_window): use gtkxpm
-
- * netconnect.pm: remove the $isLaptop unused from a hell lot of functions
-
- * install2.pm (@installSteps): remove miscellaneous
- (main): don't remove pcmcia modules anymore (not there anymore), remove
- /sbin/stage1
-
-2001/02/07 siegel
-
- * share/po/de.po: new german version
-
-2001/02/06 François Pons <fpons@mandrakesoft.com>
-
- * ftp.pm: reworked ftp behaviour a bit for cooperative connection (avoid
- opening
- and closing connection too fast for each transaction). There seems
- to be some problem for retrieving twice a package, this cause huge pause
- between each transaction, the best is to avoid them so ?
-
-2001/02/06 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/tools.c, mdk-stage1/stdio-frontend.c, mdk-stage1/stage1.c,
- mdk-stage1/init.c, mdk-stage1/newt-frontend.c, mdk-stage1/network.c,
- mdk-stage1/modules.c, mdk-stage1/disk.c:
- - slighty change the message when exiting successfully from install,
- to not mess with abnormal termination
- - get back dialog for hostname and domain in case of unable to guess
- domain
- - try to resolve DNS if self-ip can't resolve, to guess domain
- - remember entries so that when there is a problem you don't have to
- re-enter everything (ncurses sucking stuff in case of stdio-frontend..)
- - use larger buffer for list_directory since in /dev there can be
- *many* files
-
-2001/02/05 dam's <damien@mandrakesoft.com>
-
- * Makefile.drakxtools, Makefile: added wizard.rc handling in Makfiles.
-
- * standalone/draknet: added infos recovering.
-
- * netconnect.pm: added load_conf() to recover saved infos from conffile.
-
-2001/02/05 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: removed abusive white char.
- updated to use urpmi new format (change fakemedium to better label)
- fixed frame buffer usage if not enabled (installation of Aurora)
- clean up and remove unused code.
-
- * ftp.pm: rebuild URLPREFIX as stage1 does not provide it anymore.
-
- * pkgs.pm: updated to use urpmi new format (change fakemedium to better
- label)
-
- * Xconfigurator.pm: Removed Device3Dfx as it is no more.
-
- * install_steps.pm: fixed frame buffer usage if not enabled (installation
- of Aurora)
- clean up and remove unused code.
-
-2001/02/05 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/list: updated list of gconv modules
-
-2001/02/05 Pixel <pixel@mandrakesoft.com>
-
- * commands.pm (head_tail): fix usage
-
- * interactive_gtk.pm (create_ctree): node_moveto done only if
- node_is_visible is not full
-
-2001/02/04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/mar/mar-frontend.c: fix bug when creating marfiles with
- file-not-found in args
-
-2001/02/04 Pixel <pixel@mandrakesoft.com>
-
- * interactive_newt.pm: fix adaptation to the terminal size, should now
- work in 80x25
-
- * Xconfigurator.pm (monitorConfiguration): better handling of auto_install
-
- * install_steps_interactive.pm (choosePackages): don't call
- chooseSizeToInstall even with experts
-
- * install_steps_gtk.pm (charsetChanged): re-create steps window
-
-2001/02/03 dam's <damien@mandrakesoft.com>
-
- * modules.pm, standalone/draknet, netconnect.pm: corrected module.conf
- update, net conf saving, and no wizard by default.
-
-2001/02/03 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/da.po: updated Danish file
-
-2001/02/03 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm (monitorConfiguration): ease use of {X}{type} in
- auto_installs
-
- * install_steps_gtk.pm (charsetChanged): created, takes care of setting to
- the right charset the windows
-
- * install_steps_interactive.pm (selectLanguage): call charsetChanged
-
- * share/rpmsrate: fix ``LOCALES "zh_CN"'' with ``LOCALES"zh_CN"''
- move ftp to SYSTEM so that it is installed
-
- * Makefile: install cardmgr
-
- * modules.pm (configure_pcmcia): cleanup
-
-2001/02/03 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm (monitorConfiguration): ease use of {X}{type} in
- auto_installs
-
- * install_steps_gtk.pm (charsetChanged): created, takes care of setting to
- the right charset the windows
-
- * install_steps_interactive.pm (selectLanguage): call charsetChanged
-
- * share/rpmsrate: fix ``LOCALES "zh_CN"'' with ``LOCALES"zh_CN"''
- move ftp to SYSTEM so that it is installed
-
- * Makefile: install cardmgr
-
- * modules.pm (configure_pcmcia): cleanup
-
-2001/02/02 dam's <damien@mandrakesoft.com>
-
- * share/wizard.rc: added rc file for wizard mode
-
-2001/02/02 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm (monitorConfiguration): better default for DDC probe
- fails and
- auto_install and not provided any info about the monitor
-
- * my_gtk.pm (gtkcreate_xpm): error handling with error message
-
- * share/rpmsrate: all GNOME and KDE moved out of GRAPHICAL_DESKTOP
-
- * install_steps.pm (configureXBefore): set XKB_IN_USE=no if !$has_xkb in
- /etc/sysconfig/i18n
-
- * mdk-stage1/disk.c (try_with_device): bloody guillaume changed
- /tmp/hdimage to /tmp/disk without even
- telling, changing it back as i don't see any good reason for the move.
-
- * install_any.pm (setPackages): in auto_installs, default to all groups
- chosen, unless
- compssUsersChoice exist. Won't change anything unless compssListLevel is
- used of course
-
- * Xconfigurator_consts.pm: add low_default_monitor for default of
- auto_installs
-
- * interactive_gtk.pm (ask_from_entries_refW): use gtkxpm
-
- * Makefile, partition_table.pm, pkgs.pm, partition_table_raw.pm,
- diskdrake.pm: using the new formatXiB
-
- * detect_devices.pm (getCompaqSmartArray): adapted getCompaqSmartArray to
- the fact that kernel
- 2.4 uses /proc/driver/array instead of /proc/array. Also adapted the
- regexp now that ida/c0d0p? is no more at the beginning of the line.
- (get): cleanup, remove hasIDE hasSCSI...
-
- * common.pm (formatXiB): created, format a number in human readable format
-
-2001/02/02 Pixel <pixel@mandrakesoft.com>
-
- * mdk-stage1/disk.c (try_with_device): bloody guillaume changed
- /tmp/hdimage to /tmp/disk without even
- telling, changing it back as i don't see any good reason for the move.
-
-2001/02/02 dam's <damien@mandrakesoft.com>
-
- * interactive_gtk.pm, standalone/draknet, netconnect.pm, my_gtk.pm,
- standalone/diskdrake: recoded wizard mode
- corrected some stuff.
- trying not to break draknet for cooker snapshot
-
-2001/02/02 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm (monitorConfiguration): better default for DDC probe
- fails and
- auto_install and not provided any info about the monitor
-
- * install_any.pm (setPackages): in auto_installs, default to all groups
- chosen, unless
- compssUsersChoice exist. Won't change anything unless compssListLevel is
- used of course
-
- * share/locales.tar.bz2: yet another LC_NUMERIC, seems like the previous i
- chose was glibc-2.1 :-(
- this one en_US and seems all right!
-
- * Xconfigurator_consts.pm: add low_default_monitor for default of
- auto_installs
-
- * Makefile, partition_table.pm, pkgs.pm, partition_table_raw.pm,
- diskdrake.pm: using the new formatXiB
-
- * install_steps.pm (configureXBefore): set XKB_IN_USE=no if !$has_xkb in
- /etc/sysconfig/i18n
-
- * common.pm (formatXiB): created, format a number in human readable format
-
- * mdk-stage1/disk.c (try_with_device): bloody guillaume changed
- /tmp/hdimage to /tmp/disk without even
- telling, changing it back as i don't see any good reason for the move.
-
-2001/02/01 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: new draknet snapshot. Still unuseable
-
- * interactive_gtk.pm, netconnect.pm, my_gtk.pm: updated embedded mode in
- install.
-
-2001/01/31 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: corected translation and conflict.
-
-2001/01/31 François Pons <fpons@mandrakesoft.com>
-
- * modules.pm: added missing die if modprobe failed on live upgrade.
-
- * pkgs.pm: added rpmrebuilddb directory cleaning before, remove old rpm
- file
- if everything has been successfull.
-
- * install_steps.pm: changed to clean selection for non expert as used for
- group selection
- because it is not cleaned, need better solution TODO.
-
-2001/01/31 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
- share/po/af.po: updated pot file
-
- * standalone/draknet: Fixed English typos (in English you DON'T PUT SPACES
- BEFORE COLON (:);
- and it is "Profile" and not "Profil")
- CV:
- ----------------------------------------------------------------------
-
-2001/01/31 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (choosePackagesTree): created, simple
- ask_many_from_list to choose
- individual packages
- (choosePackages): log for debug
- (choosePackages): don't ask to install in beginner. Max is chosen
- (setRootPassword): help not based on installClass being server or not
- (selectInstallClass): remove installClass choice (was
- normal/devel/server)
- (chooseGroups): fix for individual package selection flag
-
- * netconnect.pm (get_net_device): more cleanup syntax
- (get_net_device): cleanup syntax
-
- * install_steps.pm (selectLanguage): warning for debug
- (miscellaneousBefore): don't use installClass to decide to use
- supermount
- or not. Choice is done on $::corporate. Can't say "no supermount in
- server
- installs" anymore
- (selectInstallClass): emptied
- (setupSCSI): don't configure PCMCIA if there is no PCMCIA
-
- * install_any.pm (g_auto_install): installClass removed
- (setPackages): do not preselect compssUsers entries
-
- * install2.pm (main): don't set installClass=normal meta_class desktop
- (deprecated)
- (miscellaneous): TYPE= removed (was installClass)
- (selectInstallClass): don't set $o->{partitions}. diskdrake will have to
- ask in a set of possibilities
- ($o): replace fclass by fbeginner and fexpert
- ($o): default security level to 2 since it can't be based on
- installClass (deprecated)
-
- * install_steps_gtk.pm: restore window size for time being
-
- * pkgs.pm (psUpdateHdlistsDeps): also copy rpmsrate
-
- * Xconfigurator.pm (main): better error message for auto_install failing
-
- * interactive.pm (ask_many_from_list): fix sorting
-
- * any.pm (set_autologin): log to ensure AUTOLOGIN is not badly set by
- drakx. Still
- need finding the guilty
-
-2001/01/31 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * keyboard.pm: more kbd corrections
- fixed soem keybopard values
-
-2001/01/31 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (choosePackagesTree): created, simple
- ask_many_from_list to choose
- individual packages
- (choosePackages): log for debug
- (choosePackages): don't ask to install in beginner. Max is chosen
- (setRootPassword): help not based on installClass being server or not
- (selectInstallClass): remove installClass choice (was
- normal/devel/server)
- (chooseGroups): fix for individual package selection flag
-
- * install_steps.pm (selectLanguage): warning for debug
- (miscellaneousBefore): don't use installClass to decide to use
- supermount
- or not. Choice is done on $::corporate. Can't say "no supermount in
- server
- installs" anymore
- (selectInstallClass): emptied
- (setupSCSI): don't configure PCMCIA if there is no PCMCIA
-
- * install_any.pm (g_auto_install): installClass removed
- (setPackages): do not preselect compssUsers entries
-
- * install2.pm (main): don't set installClass=normal meta_class desktop
- (deprecated)
- (miscellaneous): TYPE= removed (was installClass)
- (selectInstallClass): don't set $o->{partitions}. diskdrake will have to
- ask in a set of possibilities
- ($o): replace fclass by fbeginner and fexpert
- ($o): default security level to 2 since it can't be based on
- installClass (deprecated)
-
- * install_steps_gtk.pm: restore window size for time being
-
- * pkgs.pm (psUpdateHdlistsDeps): also copy rpmsrate
-
- * Xconfigurator.pm (main): better error message for auto_install failing
-
- * interactive.pm (ask_many_from_list): fix sorting
-
- * any.pm (set_autologin): log to ensure AUTOLOGIN is not badly set by
- drakx. Still
- need finding the guilty
-
-2001/01/30 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: new draknet. unstable
-
- * netconnect.pm: updated
- debugged network card configuration after pixelisation.
-
-2001/01/30 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/stdio-frontend.c, mdk-stage1/newt-frontend.c: prevent from
- trying to set progressbar to more than 100% (rescue is more compressed
- than drakx)
-
- * share/rpmsrate: add ldetect to config stuff I want to have on all
- installs (lspcidrake)
-
-2001/01/30 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm, netconnect.pm, install_interactive.pm:
- adapt format functions given to ask_from_listf. $_ is no more set
-
- * mouse.pm (detect): replace commands::modprobe by modules::load as it
- should (or??)
-
- * perl2etags: adapt to new etags (emacs 21) format
-
- * raid.pm (make): replace commands::modprobe by modules::load as it should
- (or??)
-
- * perl2fcalls (@exclude_calls): add Eth as dam's use it quite a lot in his
- regexps
-
- * share/locales.tar.bz2: misc/LC_NUMERIC tells to use "," as number
- separator instead of ".".
- The sheer result is:
- "0.6" * 10 gives 0
- "0,6" * 10 gives 6
-
- So i have overwritten misc/LC_NUMERIC with
- /usr/share/locale/en/LC_NUMERIC and
- it works nicely now :)
-
-2001/01/29 dam's <damien@mandrakesoft.com>
-
- * standalone/drakboot: corrected typo
-
-2001/01/29 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * modules.pm:
- - deprecate "hdreiser.img" since we have room for "reiserfs.o" in
- "hd.img"
- - following deprecation of "other.img", reintegrate big modules in
- relevant boot disks
-
-2001/01/29 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm, share/po/et.po: updated Estonian file
-
-2001/01/29 Pixel <pixel@mandrakesoft.com>
-
- * detect_devices.pm (getCompaqSmartArray): /proc/array/ida0 can contain
- more than one ida/c0d0p*
-
-2001/01/28 dam's <damien@mandrakesoft.com>
-
- * share/help.xpm, network.pm, ChangeLog, netconnect.pm: updated
-
-2001/01/28 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (choosePartitionsToFormat): fixed horrible
- bug causing reiserfs partitions
- not to be displayed/asked for formatting. The default value being used.
-
- * any.pm (get_autologin): adapt to new format of sysconfig/desktop
-
-2001/01/28 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (choosePartitionsToFormat): fixed horrible
- bug causing reiserfs partitions
- not to be displayed/asked for formatting. The default value being used.
-
- * any.pm (get_autologin): adapt to new format of sysconfig/desktop
-
-2001/01/28 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (choosePartitionsToFormat): fixed horrible
- bug causing reiserfs partitions
- not to be displayed/asked for formatting. The default value being used.
-
- * any.pm (get_autologin): adapt to new format of sysconfig/desktop
-
-2001/01/28 siegel
-
- * share/po/de.po: new german version
-
-2001/01/26 dam's <damien@mandrakesoft.com>
-
- * interactive_gtk.pm: updated embedded mode
-
- * standalone/drakboot: added embedded mode
-
-2001/01/26 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/dietlibc/include/stdio.h: adjust include files to compile
- bzlib
-
- * mdk-stage1/stage1.c: restore passing of pcmcia info to stage2
-
- * mdk-stage1/bzlib/compress.c, mdk-stage1/bzlib/bzlib.c,
- mdk-stage1/bzlib/randtable.c, mdk-stage1/bzlib/huffman.c,
- mdk-stage1/modules.c, mdk-stage1/bzlib/crctable.c,
- mdk-stage1/bzlib/decompress.c, mdk-stage1/bzlib/Makefile,
- mdk-stage1/bzlib/bzlib_private.h, mdk-stage1/tools.c,
- mdk-stage1/Makefile, mdk-stage1/bzlib/blocksort.c:
- - use bzlib instead of zlib to reduce overall size
- - take home my own bzlib code to (1) reduce code size with good
- compile options (2) make it compile and link against dietlibc
-
- * mdk-stage1/mar/mar-extract-only.c, mdk-stage1/mar/mar-extract-only.h,
- mdk-stage1/mar/mar-frontend.c, mdk-stage1/mar/mar.h,
- mdk-stage1/mar/Makefile: mar now uses bzlib, no more zlib
-
- * mdk-stage1/pci-resource/update-pci-ids.pl: comply to new "mar -l" format
-
-2001/01/26 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (installPackages): prepare for advertising...
-
- * interactive_newt.pm (ask_from_entries_refW): major rework for new
- format, still need work
- (ask_from_entries_refW): use NEWT_FLAG_PASSWORD (aka 1<<11) instead of
- NEWT_FLAG_HIDDEN
- (myTextbox): wrap the text if needed
- (myTextbox): use a vertical scrollbar if needed
-
- * Newt/Newt.xs (newtFormAddGrid): new name for
- newtGridAddComponentsToForm, swap
- parameters for much better understanding
- (newtListboxGetCurrent): returns a SV (together with
- newtListboxAddEntry)
- (newtListboxAddEntry): data is now a SV
-
-2001/01/26 siegel
-
- * share/po/de.po: .
-
-2001/01/26 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (installPackages): prepare for advertising...
-
- * interactive_newt.pm (ask_from_entries_refW): major rework for new
- format, still need work
- (ask_from_entries_refW): use NEWT_FLAG_PASSWORD (aka 1<<11) instead of
- NEWT_FLAG_HIDDEN
- (myTextbox): wrap the text if needed
- (myTextbox): use a vertical scrollbar if needed
-
- * Newt/Newt.xs (newtFormAddGrid): new name for
- newtGridAddComponentsToForm, swap
- parameters for much better understanding
- (newtListboxGetCurrent): returns a SV (together with
- newtListboxAddEntry)
- (newtListboxAddEntry): data is now a SV
-
-2001/01/26 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (installPackages): prepare for advertising...
-
- * interactive_newt.pm (ask_from_entries_refW): major rework for new
- format, still need work
- (ask_from_entries_refW): use NEWT_FLAG_PASSWORD (aka 1<<11) instead of
- NEWT_FLAG_HIDDEN
- (myTextbox): wrap the text if needed
- (myTextbox): use a vertical scrollbar if needed
-
- * Newt/Newt.xs (newtFormAddGrid): new name for
- newtGridAddComponentsToForm, swap
- parameters for much better understanding
- (newtListboxGetCurrent): returns a SV (together with
- newtListboxAddEntry)
- (newtListboxAddEntry): data is now a SV
-
-2001/01/25 dam's <damien@mandrakesoft.com>
-
- * install2.pm: disable steps 'packages choice', 'configure X', and
- 'configure' 'printer'
-
- * install_steps_interactive.pm: don't oblige user addition
-
- * network.pm: display ethernet module
-
- * netconnect.pm: network informations filled into
- $prefix/var/lib/naat/configuration
-
-2001/01/25 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/stage1-data/stage1.tar.bz2: restore symlink /sbin/sh ->
- /usr/bin/sh for stage2
-
- * mdk-stage1/probing.h: better tightness of probing stuff
-
- * mdk-stage1/probing.c: better tightness of probing stuff
- print warning message when insmod of PCI-detected device fails
-
- * mdk-stage1/stage1.c:
- - mdk-stage1: now linux-2.4 uses floppy.o to access floppy drives
- - remove fat/vfat modules from some boot floppies now that we don't
- need it anymore
-
- * mdk-stage1/pci-resource/update-pci-ids.pl: re-integrate autoprobe of
- tulip network cards, kernel-2.4 has strange way to classify some of its
- net modules..
-
-2001/01/25 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/it.po: Waw, italian translator is very fast :)
- updated Indonesian and Italian fiels
-
- * share/po/id.po: updated Indonesian and Italian fiels
-
- * share/locales.tar.bz2: added iso9 locale definitions
-
- * lang.pm: fixed LANGUAGE for mk locale
-
-2001/01/25 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (spawnShell): fix error message
-
-2001/01/24 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/stage1-data/stage1.tar.bz2:
- - clean up deprecated symlinks (insmod, rmmod, cardmgr)
- - remove unecessary device files
-
- * mdk-stage1/pcmcia/cardmgr.c, mdk-stage1/pcmcia/lex_config.c,
- mdk-stage1/pcmcia/vg468.h, mdk-stage1/pcmcia/cardmgr.h,
- mdk-stage1/pcmcia/bulkmem.h, mdk-stage1/pcmcia/i82365.h,
- mdk-stage1/pcmcia/cirrus.h, mdk-stage1/pcmcia/driver_ops.h,
- mdk-stage1/pcmcia/config.h, mdk-stage1/pcmcia/version.h,
- mdk-stage1/pcmcia/cistpl.h, mdk-stage1/stage1.c,
- mdk-stage1/pcmcia_config.patch, mdk-stage1/pcmcia/cs.h,
- mdk-stage1/pcmcia/Makefile, mdk-stage1/pcmcia/ds.h,
- mdk-stage1/pcmcia/pcmcia.h, mdk-stage1/pcmcia/cs_types.h,
- mdk-stage1/pcmcia/yacc_config.c, mdk-stage1/Makefile,
- mdk-stage1/pcmcia/tcic.h, mdk-stage1/pcmcia/yacc_config.h,
- mdk-stage1/pcmcia/pcmcia_probe.c: stage1: add pcmcia
-
-2001/01/24 Pixel <pixel@mandrakesoft.com>
-
- * partition_table.pm (%types): s|Compaq|Compaq/HP| per request of fpitoun
-
- * install_steps.pm (afterInstallPackages): cleanup
-
- * interactive.pm: better documentation of ask_from_entries_refH features
- (entry)
-
-2001/01/24 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/stage1-data/stage1.tar.bz2:
- - clean up deprecated symlinks (insmod, rmmod, cardmgr)
- - remove unecessary device files
-
- * mdk-stage1/pcmcia/cardmgr.c, mdk-stage1/pcmcia/lex_config.c,
- mdk-stage1/pcmcia/vg468.h, mdk-stage1/pcmcia/cardmgr.h,
- mdk-stage1/pcmcia/bulkmem.h, mdk-stage1/pcmcia/i82365.h,
- mdk-stage1/pcmcia/cirrus.h, mdk-stage1/pcmcia/driver_ops.h,
- mdk-stage1/pcmcia/config.h, mdk-stage1/pcmcia/version.h,
- mdk-stage1/pcmcia/cistpl.h, mdk-stage1/stage1.c,
- mdk-stage1/pcmcia_config.patch, mdk-stage1/pcmcia/cs.h,
- mdk-stage1/pcmcia/Makefile, mdk-stage1/pcmcia/ds.h,
- mdk-stage1/pcmcia/pcmcia.h, mdk-stage1/pcmcia/cs_types.h,
- mdk-stage1/pcmcia/yacc_config.c, mdk-stage1/Makefile,
- mdk-stage1/pcmcia/tcic.h, mdk-stage1/pcmcia/yacc_config.h,
- mdk-stage1/pcmcia/pcmcia_probe.c: stage1: add pcmcia
-
-2001/01/24 Pixel <pixel@mandrakesoft.com>
-
- * partition_table.pm (%types): s|Compaq|Compaq/HP| per request of fpitoun
-
- * install_steps.pm (afterInstallPackages): cleanup
-
- * interactive.pm: better documentation of ask_from_entries_refH features
- (entry)
-
-2001/01/23 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/pl.po,
- share/po/fi.po, share/po/no.po, share/po/zh_CN.GB2312.po,
- share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
- share/po/sl.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
- share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
- share/po/da.po, share/po/cs.po, share/po/af.po: updated Greek file
-
-2001/01/22 dam's <damien@mandrakesoft.com>
-
- * install_steps_interactive.pm, netconnect.pm: corrected slide bar, and
- added network conf save in /root/networking.tmp
-
-2001/01/22 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/network.c: add automatic support in choice of NET device, in
- case of multiple NET devices
- consistent dot-terminated error messages, consistent no-dot log messages
- re-put Netmask input per default (void entry -> automatic guess)
-
- * mdk-stage1/stage1.c, mdk-stage1/dhcp.c, mdk-stage1/modules.c: consistent
- dot-terminated error messages, consistent no-dot log messages
-
-2001/01/22 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/id.po: updated Indonesian file
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/es.po,
- share/po/fr.po, share/po/bg.po, share/po/ga.po, share/po/sr.po,
- share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
- share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/ko.po,
- share/po/cy.po, share/po/nl.po, share/po/ja.po, share/po/sv.po,
- share/po/is.po, share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po,
- share/po/pl.po, netconnect.pm, share/po/no.po, share/po/fi.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
- share/po/af.po: updated po files
-
- * share/po/wa.po: updated po files
- updated pot file
-
- * install2.pm, lang.pm: fixed the places where console fonts and related
- files are put under
- /etc/sysconfig to the places really used by console-tools
-
- * share/po/DrakX.pot: updated pot file
-
- * share/po/hr.po: updated po files
- updated Croatian file
-
-2001/01/22 Pixel <pixel@mandrakesoft.com>
-
- * pkgs.pm (read_rpmsrate): if $packages is undef, ignore it. That way,
- read_rpmsrate
- can be called standalone.
-
- * network.pm, install_steps_interactive.pm, netconnect.pm, my_gtk.pm,
- install_interactive.pm, install2.pm, partition_table.pm, install_any.pm,
- any.pm, printerdrake.pm, Xconfigurator.pm, diskdrake.pm: $::beginner is
- deprecated, replaced by !$::expert
-
-2001/01/21 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/url.c, mdk-stage1/network.c: allow providing void password in
- network/ftp installs
-
-2001/01/21 Pixel <pixel@mandrakesoft.com>
-
- * interactive_gtk.pm (create_ctree): fix case with formatted list
-
-2001/01/21 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/stage1.c, mdk-stage1/nfsmount.c: fix remaining perror's
-
- * mdk-stage1/url.c, mdk-stage1/network.c: allow providing void password in
- network/ftp installs
-
-2001/01/21 Pixel <pixel@mandrakesoft.com>
-
- * interactive_gtk.pm (create_ctree): fix case with formatted list
-
-2001/01/21 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/stage1.c, mdk-stage1/nfsmount.c: fix remaining perror's
-
-2001/01/21 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt_BR.po, share/po/da.po: updated Danish and Brazilian files
-
-2001/01/21 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/nfsmount.c: fix remaining perror's
-
- * mdk-stage1/stage1.c: fix remaining perror's
- - better msg in fatal errors
- - do not include code to spawn a shell for releases
-
-2001/01/21 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt_BR.po, share/po/da.po: updated Danish and Brazilian files
-
-2001/01/21 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (selectMouse): use ask_from_treelist_
-
- * interactive.pm (ask_from_treelist_): created, split with the separator,
- call translate on
- words, then re-join.
-
-2001/01/19 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: fixes for CD not changeable.
-
- * install_steps_interactive.pm: fixed unselect group and inoperant
- individual package selection.
- removed expert mode and install class.
-
-2001/01/18 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm: fixed obligation of relative large install, now
- minimum is lesser.
-
- * install_steps_gtk.pm: make sure no ratio above 1 can occur, still need
- to see why as it happens
- on install-abort-choices-install or
- install-abort-choices-fs-format(none)-choices-install
-
- * live_install: update live install to match /tmp/image instead of
- /tmp/rhimage.
-
-2001/01/17 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm, install_any.pm: fixes with /tmp/rhimage and
- /tmp/image.
-
- * pkgs.pm: update to use new header file format in hdlist (added arch) but
- depslist has not it...
-
- * install2.pm: fixes with /tmp/rhimage and /tmp/image
-
-2001/01/16 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/bg.po: updated bulgarian file
-
-2001/01/12 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/url.c: use strrchr instead of doing it by hand
-
- * mdk-stage1/insmod-busybox/busybox.h,
- mdk-stage1/insmod-busybox/utility.c, mdk-stage1/insmod-busybox/insmod.c:
-
- - replace remaining perror's with log_perror's
- - little code cleanup
-
- * mdk-stage1/stage1-data/stage1.tar.bz2,
- mdk-stage1/stage1-data/stage1-with-sash.tar.bz2: add /dev/fd0
-
- * mdk-stage1/stage1.c, mdk-stage1/modules.h, mdk-stage1/tools.c,
- mdk-stage1/tools.h, mdk-stage1/disk.c, mdk-stage1/modules.c:
- - add load of third party modules in Expert mode (PS rulz)
-
-2001/01/12 siegel
-
- * share/po/de.po: updates
-
-2001/01/12 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: fixed addUser for invocation of
- any::ask_users.
- fixed bad invocation of installation of X server.
-
-2001/01/12 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/cdrom.c: add more memory carefulness with CDROM install
- - add wait_message for initializing of CDROM's (it can be long when
- it's SCSI)
- - print CDROM drive names (model) in dialogs
-
- * mdk-stage1/mount.c, mdk-stage1/lomount.c, mdk-stage1/disk.c:
- - fix behaviour with bad ISO images (DISK installs)
- - better dialogs for DISK installs
-
-2001/01/12 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm: make lang list in format for tree-selector
-
-2001/01/11 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/disk.c: fix failing umount for DISK installs in some failing
- loopback situations
- act nicely when no partitions are found on some disk
-
- * mdk-stage1/modules.h: polish generic blank.img situation (no modules
- and/or modules.dep available)
-
- * mdk-stage1/lomount.c: fix failing umount for DISK installs in some
- failing loopback situations
- better log messages
- continue anyway when insmod'ing of modules fail (for blank.img)
-
- * mdk-stage1/probing.c: close some fd's
-
- * mdk-stage1/stage1.c, mdk-stage1/modules.c: polish generic blank.img
- situation (no modules and/or modules.dep available)
- continue anyway when insmod'ing of modules fail (for blank.img)
-
-2001/01/11 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/Makefile, mdk-stage1/disk.c:
- - add DISK install from ISO image file
- - add FTP
- - add HTTP
- - use single place for mountpoints and static directories
-
- * mdk-stage1/hack, mdk-stage1/lomount.c, mdk-stage1/lomount.h:
- - add DISK install from ISO image file
-
- * mdk-stage1/stage1.c, mdk-stage1/config-stage1.h, mdk-stage1/stage1.h,
- mdk-stage1/tools.c, mdk-stage1/stdio-frontend.c, mdk-stage1/cdrom.c,
- mdk-stage1/tools.h, mdk-stage1/newt-frontend.c, mdk-stage1/network.c:
- - add FTP
- - add HTTP
- - use single place for mountpoints and static directories
-
- * mdk-stage1/insmod-busybox/Config.h: tweak config
-
-2001/01/11 Pixel <pixel@mandrakesoft.com>
-
- * standalone/adduserdrake: adduserdrake may handles autologin
-
- * install_steps.pm (addUser): set autologin
-
- * install2.pm (addUser): moved setAuthentication to install_steps::addUser
-
- * install_steps_interactive.pm (addUser): fix
-
-2001/01/11 dam's <damien@mandrakesoft.com>
-
- * install_steps.pm, install_steps_interactive.pm, ChangeLog,
- netconnect.pm: updated
-
-2001/01/11 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/pci-resource/update-pci-ids.pl: remove nasty messages when
- mar or marfiles not available to perform consistency check
-
-2001/01/11 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm (configureX): call directly $o->pkg_install, no need to
- add 'XFree86-' at the beginning
- (addUser): use any::write_passwd_user
- (setRootPassword): use any::write_passwd_user
- (configureX): fix bad $install given to Xconfigurator::main
-
- * any.pm (write_passwd_user): add or update an entry in /etc/passwd
- (ask_users): created, interactively ask users to add (used in
- adduserdrake and install)
- (allocUsers, addUsers): changed the prototype
- (setupBootloader): grep out fat partitions for the "Boot device"
- propositions (people are too stupid)
-
- * my_gtk.pm (main): third argument is a function to call before leaving in
- case of
- "cancel" clicked.
-
- * interactive_gtk.pm (create_ctree): fix default value selecting failing
- (in case of "format")
- (ask_from_entries_refW): apply "format" on label when icon is missing
- for iconlist
- (ask_from_entries_refW): handle "canceled" callback. Permits to overrule
- the cancel.
-
- * install_any.pm (g_auto_install): deep copy of $o->{users} because we're
- modifying it
-
- * install_steps_interactive.pm (addUser): use any::ask_users
-
- * standalone/adduserdrake: use any::ask_users
-
- * Xconfig.pm (getinfoFromDDC): removed devices::make("/dev/zero") (now in
- install2::main)
-
- * install2.pm (main): move devices::make("/dev/zero") needed by ddcxinfos
- here
-
- * interactive.pm (ask_from_entries_refH_powered_normalize): "canceled"
- callback defaults
- to "sub { 0 }"
-
-2001/01/11 Pixel <pixel@mandrakesoft.com>
-
- * interactive_gtk.pm (ask_from_entries_refW): apply "format" on label when
- icon is missing for iconlist
- (ask_from_entries_refW): handle "canceled" callback. Permits to overrule
- the cancel.
-
- * install_steps.pm (configureX): call directly $o->pkg_install, no need to
- add 'XFree86-' at
- the beginning
- (addUser): use any::write_passwd_user
- (setRootPassword): use any::write_passwd_user
- (configureX): fix bad $install given to Xconfigurator::main
-
- * any.pm (write_passwd_user): add or update an entry in /etc/passwd
- (ask_users): created, interactively ask users to add (used in
- adduserdrake
- and install)
- (allocUsers, addUsers): changed the prototype
- (setupBootloader): grep out fat partitions for the "Boot device"
- propositions (people are too stupid)
-
- * my_gtk.pm (main): third argument is a function to call before leaving in
- case of
- "cancel" clicked.
-
- * install_any.pm (g_auto_install): deep copy of $o->{users} because we're
- modifying it
-
- * install_steps_interactive.pm (addUser): use any::ask_users
-
- * standalone/adduserdrake: use any::ask_users
-
- * Xconfig.pm (getinfoFromDDC): removed devices::make("/dev/zero") (now in
- install2::main)
-
- * install2.pm (main): move devices::make("/dev/zero") needed by ddcxinfos
- here
-
- * interactive.pm (ask_from_entries_refH_powered_normalize): "canceled"
- callback defaults
- to "sub { 0 }"
-
-2001/01/11 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm (autologin): moved to package any
-
- * interactive_gtk.pm (ask_from_entries_refW): apply "format" on label when
- icon is missing for iconlist
- (ask_from_entries_refW): handle "canceled" callback. Permits to overrule
- the cancel.
-
- * install_steps.pm (configureX): call directly $o->pkg_install, no need to
- add 'XFree86-' at
- the beginning
- (addUser): use any::write_passwd_user
- (setRootPassword): use any::write_passwd_user
- (configureX): fix bad $install given to Xconfigurator::main
-
- * any.pm (write_passwd_user): add or update an entry in /etc/passwd
- (ask_users): created, interactively ask users to add (used in
- adduserdrake
- and install)
- (allocUsers, addUsers): changed the prototype
- (setupBootloader): grep out fat partitions for the "Boot device"
- propositions (people are too stupid)
-
- * my_gtk.pm (main): third argument is a function to call before leaving in
- case of
- "cancel" clicked.
-
- * install_any.pm (g_auto_install): deep copy of $o->{users} because we're
- modifying it
-
- * Makefile.config (STANDALONEPMS): remove netdrake (which is deprecated)
-
- * install_steps_interactive.pm (addUser): use any::ask_users
-
- * standalone/adduserdrake: use any::ask_users
-
- * Xconfig.pm (getinfoFromDDC): removed devices::make("/dev/zero") (now in
- install2::main)
-
- * install2.pm (main): move devices::make("/dev/zero") needed by ddcxinfos
- here
-
- * interactive.pm (ask_from_entries_refH_powered_normalize): "canceled"
- callback defaults
- to "sub { 0 }"
-
-2001/01/10 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * mdk-stage1/dietlibc/dietfeatures.h: tweak dietlibc config to get minimal
- size
-
- * mdk-stage1/dietlibc/lib/vsscanf.c, mdk-stage1/dietlibc/lib/ttyname.c:
- remove warnings from compile
-
-2001/01/10 Pixel <pixel@mandrakesoft.com>
-
- * interactive_gtk.pm (ask_from_entries_refW): add handling of 'changed'
- callback on clist/list/ctree
-
- * install_steps.pm (addUser): use any::pack_passwd
- (setRootPassword): use any::unpack_passwd and any::pack_passwd
-
- * Xconfigurator.pm (cardConfiguration): adapt for $install which is
- generic
- (autologin): use $install which is now generic
-
- * install_steps_interactive.pm (selectLanguage): many_languages choice
- moved there as advanced
-
- * my_gtk.pm (create_packtable): yet another try to have something nice :)
- !! uses Gtk::Table::attach_raw which is available in
- perl-GTK-0.7004-6mdk !!
- (create_box_with_title): with the size given to set_usize for the scroll
- containing the text widget in case of long text. and don't let the
- scroll
- grow.
- (gtktext_insert): remove adding an ending "\n" (no more needed?)
-
- * any.pm (setAutologin): cleanup
- (pack_passwd, unpack_passwd): created
-
-2001/01/10 dam's <damien@mandrakesoft.com>
-
- * install_steps_interactive.pm: corrected last message . firewall
-
-2001/01/10 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * modules.pm: fix modules.pm for modules to be skept in stage1 (ppa, imm,
- parport*, plip)
-
-2001/01/10 Pixel <pixel@mandrakesoft.com>
-
- * interactive_gtk.pm (ask_from_entries_refW): add handling of 'changed'
- callback on clist/list/ctree
-
- * install_steps.pm (addUser): use any::pack_passwd
- (setRootPassword): use any::unpack_passwd and any::pack_passwd
-
- * my_gtk.pm (create_packtable): yet another try to have something nice :)
- !! uses Gtk::Table::attach_raw which is available in
- perl-GTK-0.7004-6mdk !!
- (create_box_with_title): with the size given to set_usize for the scroll
- containing the text widget in case of long text. and don't let the
- scroll
- grow.
- (gtktext_insert): remove adding an ending "\n" (no more needed?)
-
- * any.pm (setAutologin): cleanup
- (pack_passwd, unpack_passwd): created
-
- * Xconfigurator.pm (cardConfiguration): adapt for $install which is
- generic
- (autologin): use $install which is now generic
-
- * install_steps_interactive.pm (selectLanguage): many_languages choice
- moved there as advanced
-
- * standalone/printerdrake, standalone/keyboarddrake, standalone/draknet2,
- standalone/livedrake, standalone/drakboot, standalone/draksec,
- standalone/netdrake, standalone/mousedrake, standalone/drakgw,
- standalone/drakxservices, standalone.pm, standalone/draknet,
- standalone/XFdrake, standalone/diskdrake, standalone/adduserdrake,
- standalone/drakxconf: use standalone and standalone::pkgs_install
-
-2001/01/09 Pixel <pixel@mandrakesoft.com>
-
- * any.pm (drakx_version): nicer (4gc)
-
- * install2.pm (main): log::l the drakx_version
-
- * my_gtk.pm (create_packtable): no_expand option added
-
- * interactive.pm (ask_from_entries_refH_powered_normalize): field
- "disabled" added,
- "advanced_messages" added
-
- * lang.pm (langs): created (transform the $o->{langs} hash ref in a list)
- (pack_langs): use lang::langs
-
- * install_steps.pm (selectLanguage): $o->{langs} is now a ref so
- initialize as such
-
- * Makefile (get_needed_files): generate /usr/share/VERSION which contains
- the version
- of ChangeLog (which is updated at each upload)
-
- * install_steps_interactive.pm (choosePartitionsToFormat): handle "check
- for bad blocks" as advanced
- (setRootPassword): remove choosing non-md5 or non-shadow passwords.
-
- * install_any.pm (setPackages): use lang::langs instead of using
- $o->{langs} as a array ref (it is not so anymore)
- (spawnShell): print the drakx_version
-
-2001/01/08 Pixel <pixel@mandrakesoft.com>
-
- * interactive.pm: fixes
- (ask_from_treelistf, ask_from_treelist): now use ask_from_entries_refH
- (ask_from_entries_refH_powered): remove "1;" (was there for debugging)
-
- * interactive_gtk.pm: fixes
- (ask_from_treelistW): removed
- (create_ctree): created, used for ``type => treelist'' entries
-
- * my_gtk.pm: fixes
-
- * ChangeLog: New snapshot uploaded
-
-2001/01/07 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sr.po, share/po/sp.po, share/po/no.po, share/po/cs.po: updated
- Czech, Norwegian and Serbian files
-
-2001/01/07 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm: update code for new ask_from_entries_refH
- which doesn't handle optional ok/cancel names in arg 1.
- must be handled via ask_from_entries_refH_powered
- (selectLanguage, selectKeyboard): use ask_from_entries_refH instead of
- ask_from_listf_, it enables the use of advanced
-
- * any.pm, printerdrake.pm: update code for new ask_from_entries_refH which
- doesn't handle optional ok/cancel names in arg 1.
- must be handled via ask_from_entries_refH_powered
-
- * interactive.pm: update code for new ask_from_entries_refH which doesn't
- handle optional ok/cancel names in arg 1.
- must be handled via ask_from_entries_refH_powered
- (ask_from_listf_no_check): replaces ask_from_list_no_check
- (ask_from_entries_refH_powered): sorts the list if needed or wanted
-
- * partition_table_raw.pm (test_for_bad_drives): created
- - ugly stuff needed mainly for Western Digital IDE drives
- - try writing what we've just read, yells if it fails
- - testing on last sector of head #0 (unused in 99% cases)
-
- * ftp.pm (getFile): make it work (it used to dead-loop when getFile'ing an
- non-existent
- file, stressing the ftp server :-/ )
- for the moment, just release cdrom.img, hd.img and hdreiser.img
- others should should come...
-
- * install_steps.pm: for the moment, just release cdrom.img, hd.img and
- hdreiser.img
- others should should come...
-
- * interactive_gtk.pm (ask_from_listW): removed
- (create_list): calls "format" on list elems before prompting them
- (create_clist): created
- (ask_from_entries_refW): calls create_clist in case of list with no help
-
- * install_steps_gtk.pm (installPackages): autoflush stdout before beeping
- (installPackages): don't take into account the time when prompting the
- user
-
- * common.pm (may_apply): added
-
- * install_any.pm (getHds): test_for_bad_drives called on hard drives
- (getHds): ensure $o->{hds} is not set until the hard drives are checked
-
-2001/01/06 Pixel <pixel@mandrakesoft.com>
-
- * keyboard.pm (setup): don't xmodmap if DISPLAY is unset
-
- * ChangeLog: New snapshot uploaded
- New snapshot uploaded
-
-2001/01/06 Pixel <pixel@mandrakesoft.com>
-
- * keyboard.pm (setup): don't xmodmap if DISPLAY is unset
-
- * ChangeLog: New snapshot uploaded
-
-2001/01/06 Pixel <pixel@mandrakesoft.com>
-
- * keyboard.pm (setup): don't xmodmap if DISPLAY is unset
-
- * standalone/rpmdrake: deprecated (and has been for a long time now)
-
- * network.pm, install_steps_interactive.pm, netconnect.pm,
- install_interactive.pm, standalone/adduserdrake, any.pm,
- Makefile.config, printerdrake.pm, Xconfigurator.pm, diskdrake.pm:
- ask_from_entries_refH parameter format has changed so change all
- accesses to it.
-
-2001/01/05 François Pons <fpons@mandrakesoft.com>
-
- * lang.pm, keyboard.pm: forget _exit in child process after a fork of
- DrakX
- removed need of packdrake binary
-
- * Xconfigurator.pm: use of SHARE_PATH for MonitorsDB, Cards+, CardsNames
-
- * live_install2: cleanup to keep libperl.so but the right one
-
- * live_install: no more copy of files on live system, now use environment
- variable by DrakX cleanup
-
- * perl2fcalls: added packdrake call (via new but incomplete) and package
-
- * install_any.pm, commands.pm, pkgs.pm: removed need of packdrake binary
-
- * netconnect.pm: fixed syntax error
-
- * modules.pm: eval insmoding ide-cd (just in case)
- removed need of packdrake binary
-
-2001/01/05 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ja.po, share/po/ca.po, share/po/az.po: updated Azeri, Catalan
- and Japanese files
-
-2001/01/05 Pixel <pixel@mandrakesoft.com>
-
- * mouse.pm: help cperl-mode
-
- * interactive_gtk.pm, network.pm, install_steps_interactive.pm, my_gtk.pm,
- interactive.pm, printerdrake.pm, Xconfigurator.pm, diskdrake.pm: move to
- new ask_from's:
- - ask_from_entries_ref is deprecated, use ask_from_entries_refH
- - ask_from_list now calls ask_from_entries_refH_powered
- still not done:
- - ask_from_treelist should use ask_from_entries_refH_powered,
- and lists with no help should use CList (List is bad)
- - keyboard and mouse binding is still rough
- - enhance the look
-
- * keyboard.pm: add the percentage of each keyboard types (as a comment for
- now)
-
-2001/01/04 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: cleaned... everything should be buggy.
-
-2001/01/04 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: fixed some old $p->{file} by new $p->[$FILE]
- code cleanup and fixes for lilo not upgrade
-
-2001/01/04 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * install_any.pm: fixed the functions doing the lists of languages
-
- * lang.pm: fixed the functions doing the lists of languages
- The list of languages now has complete locale names insted of just
- language
- code (that is needed to differentiate zh_CN and zh_TW among others)
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
- share/po/ko.po, share/po/cy.po, share/po/nl.po, share/po/ja.po,
- share/po/wa.po, share/po/sv.po, share/po/is.po, share/po/hu.po,
- share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po, share/po/pl.po,
- share/po/fi.po, share/po/no.po, share/po/zh_CN.GB2312.po,
- share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
- share/po/sl.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
- share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
- share/po/da.po, share/po/cs.po, share/po/af.po: updated Brazilian file
-
- * share/po/eu.po: updated Basque file
- updated Brazilian file
-
-2001/01/04 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm: some pixelization using the new if_
-
- * install_steps_interactive.pm (setRootPassword): fix pixelization
- keep $o->{langs} unpacked to simplify things
- if_ pixelization
-
- * common.pm (%EXPORT_TAGS): add if_ in "common" exported tags
- (if_): created. Use it to replace things like
- ($::expert ? $val : ()) by if_($::expert, $val)
-
- * keyboard.pm: nl keyboard is not used, so defaults to us_intl
-
- * lang.pm, install_steps.pm, pkgs.pm, install_any.pm: keep $o->{langs}
- unpacked to simplify things
-
- * netconnect.pm: quite a few clean-up (and buggying)
-
-2001/01/03 dam's <damien@mandrakesoft.com>
-
- * install_steps_interactive.pm: admin user removed before beeing added
-
- * netconnect.pm: corrected typo
- LAN is configured with default value if firewall
-
-2001/01/03 François Pons <fpons@mandrakesoft.com>
-
- * diskdrake.pm: fixed invocation of change_type by clicking on legend
- unless expert
-
- * install2.pm: fixed usage with testing
-
- * install_steps.pm: fixed some other services to start in case something
- gets wrong,
- this fixes some deadlock on upgrade from 7.0.
- fixed usage with testing
-
- * partition_table.pm: fixed overlapping partitions between one extended
- and one regular primary.
- should be accepted (log printed instead of error) as diskdrake allow
- their
- creation in expert.
-
-2001/01/03 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * modules.pm: add checks of dependencies on marfiles
- fix a couple of broken dependencies in modules.pm
-
-2001/01/03 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm, share/locales.tar.bz2: locales in glibc 2.2 format
-
-2001/01/03 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm (main): move the setting of PATH and spawnShell *after*
- setting $prefix
-
-2000/12/31 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/rpmsrate: added a few locales dependences
-
-2000/12/29 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm (addUser): typo fix
-
- * ChangeLog: New snapshot uploaded
-
- * ftp.pm (getFile): recall getFile after rewindGetFile
-
-2000/12/29 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm (addUser): typo fix
-
- * ftp.pm (getFile): recall getFile after rewindGetFile
-
-2000/12/28 Pixel <pixel@mandrakesoft.com>
-
- * Makefile: now /usr/lib/X11 is a relative symlink to please mirrors and
- jako
-
-2000/12/26 Chmouel Boudjnah <chmouel@mandrakesoft.com>
-
- * keyboard.pm: Add the very ghost option REMOVE_MOD_META_L.
-
-2000/12/26 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
- share/po/af.po: updated Lithuanian file
-
-2000/12/22 dam's <damien@mandrakesoft.com>
-
- * install_steps.pm, install_steps_interactive.pm: corrected admin user
- setting for firewall install.
-
-2000/12/22 François Pons <fpons@mandrakesoft.com>
-
- * modules.pm: fixed load_multi on live.
- added back all removed module with the new great mdk-stage1 of gégé.
-
-2000/12/22 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * modules.pm: make them work with kernel-2.4 by disabling non existent
- modules
-
-2000/12/22 Pixel <pixel@mandrakesoft.com>
-
- * interactive_gtk.pm, install2.pm: commit symlink /tmp/image /tmp/rhimage
-
-2000/12/21 Pixel <pixel@mandrakesoft.com>
-
- * ChangeLog: New snapshot uploaded
-
-2000/12/21 dam's <damien@mandrakesoft.com>
-
- * install2.pm: firewall : automatic class set when firewall (beginner=0)
-
- * install_steps_interactive.pm: if firewall, admin password obliged
-
- * install_steps.pm: added setAdminpassword (a little bit redundant, sorry)
-
- * any.pm: corrected module stuff.. Thanx to pixel
-
-2000/12/20 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (selectMouse): unsure the device exists
-
- * unused/christmas-karaoke.patch: handle isa cards
-
-2000/12/19 Pixel <pixel@mandrakesoft.com>
-
- * ChangeLog: New snapshot uploaded
- New snapshot uploaded
-
-2000/12/19 dam's <damien@mandrakesoft.com>
-
- * standalone/pixmaps/logo1.xpm, standalone/pixmaps/px3.xpm,
- standalone/pixmaps/draknet4.xpm, standalone/pixmaps/draknet1.xpm,
- standalone/pixmaps/modem.xpm, standalone/pixmaps/logo2.xpm,
- standalone/pixmaps/util6.gif, standalone/pixmaps/unknown.xpm,
- standalone/pixmaps/drakgw.xpm, standalone/pixmaps/px4.xpm,
- standalone/pixmaps/draknet5.xpm, standalone/pixmaps/px1.xpm,
- standalone/pixmaps/draknet2.xpm, standalone/pixmaps/logo3.xpm,
- standalone/pixmaps/util7.gif, standalone/pixmaps/port.xpm,
- standalone/pixmaps/draknet.xpm, standalone/pixmaps/ethernet.xpm,
- standalone/pixmaps/isdn.xpm, standalone/pixmaps/px2.xpm,
- standalone/pixmaps/draknet3.xpm: added control-center.
-
-2000/12/19 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm: when loading /snd-card-/ module, load snd-pcm-oss
-
- * unused/christmas-karaoke.patch: Happy Christmas :)
-
- * install_any.pm: spawnShell: set DISPLAY, just in case :)
-
- * install2.pm: set PATH before doing spawnShell
-
- * Makefile: /usr/lib/X11 now exists on non-sparc (was only for sparc)
-
- * ChangeLog: New snapshot uploaded
-
-2000/12/18 dam's <damien@mandrakesoft.com>
-
- * interactive_gtk.pm: added embedded support for control-center
- corrected embedded support.
- new control center and related
-
- * netconnect.pm: corrected typo
- corrected typo
-
- * standalone/drakxservices, standalone/control-center, ChangeLog,
- standalone/XFdrake, standalone/draknet2, standalone/adduserdrake,
- standalone/drakboot: new control center and related
-
- * install_gtk.pm: added firewall support
-
- * install2.pm: included firewall handling
- changed firewall comportement
-
- * install_steps_interactive.pm: changed firewall comportement
-
- * modules.pm: corrected bad mergeinconf
-
-2000/12/18 Pixel <pixel@mandrakesoft.com>
-
- * Makefile, share/keymaps_generate: tar and bzip2 is cfj/xfj and no more
- cfI/xfI
- remove isdndb.net
-
-2000/12/19 dam's <damien@mandrakesoft.com>
-
- * standalone/pixmaps/logo1.xpm, standalone/pixmaps/px3.xpm,
- standalone/pixmaps/draknet4.xpm, standalone/pixmaps/draknet1.xpm,
- standalone/pixmaps/modem.xpm, standalone/pixmaps/logo2.xpm,
- standalone/pixmaps/util6.gif, standalone/pixmaps/unknown.xpm,
- standalone/pixmaps/drakgw.xpm, standalone/pixmaps/px4.xpm,
- standalone/pixmaps/draknet5.xpm, standalone/pixmaps/px1.xpm,
- standalone/pixmaps/draknet2.xpm, standalone/pixmaps/logo3.xpm,
- standalone/pixmaps/util7.gif, standalone/pixmaps/port.xpm,
- standalone/pixmaps/draknet.xpm, standalone/pixmaps/ethernet.xpm,
- standalone/pixmaps/isdn.xpm, standalone/pixmaps/px2.xpm,
- standalone/pixmaps/draknet3.xpm: added control-center.
-
-2000/12/19 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm: when loading /snd-card-/ module, load snd-pcm-oss
-
- * unused/christmas-karaoke.patch: Happy Christmas :)
-
- * install_any.pm: spawnShell: set DISPLAY, just in case :)
-
- * install2.pm: set PATH before doing spawnShell
-
- * Makefile: /usr/lib/X11 now exists on non-sparc (was only for sparc)
-
-2000/12/18 dam's <damien@mandrakesoft.com>
-
- * interactive_gtk.pm: added embedded support for control-center
- corrected embedded support.
- new control center and related
-
- * netconnect.pm: corrected typo
- corrected typo
-
- * standalone/drakxservices, standalone/control-center, ChangeLog,
- standalone/XFdrake, standalone/draknet2, standalone/adduserdrake,
- standalone/drakboot: new control center and related
-
- * install_gtk.pm: added firewall support
-
- * install2.pm: included firewall handling
- changed firewall comportement
-
- * install_steps_interactive.pm: changed firewall comportement
-
- * modules.pm: corrected bad mergeinconf
-
-2000/12/18 Pixel <pixel@mandrakesoft.com>
-
- * Makefile, share/keymaps_generate: tar and bzip2 is cfj/xfj and no more
- cfI/xfI
- remove isdndb.net
-
-2000/12/16 Pixel <pixel@mandrakesoft.com>
-
- * standalone/mousedrake, standalone/drakgw: use ldetect-lst
-
- * Makefile.drakxtools: fix daminetsex
- use ldetect-lst
- pci_probing now done by libldetect
- config files moved in package ldetect-lst
-
- * share/list: use ldetect-lst
- pci_probing now done by libldetect
- config files moved in package ldetect-lst
-
- * any.pm: fix daminetsex
-
- * modules.pm, live_install, install2.pm, standalone/lspcidrake, pkgs.pm,
- mouse.pm: use ldetect-lst for usb => now auto detects mice types :)
-
- * c/stuff.xs.pm, detect_devices.pm: use ldetect-lst for usb => now auto
- detects mice types :)
- use ldetect-lst
- pci_probing now done by libldetect
- config files moved in package ldetect-lst
-
- * Makefile.config: fix daminetsex
- use ldetect-lst
-
- * Makefile: use ldetect-lst for usb => now auto detects mice types :)
- use ldetect-lst
-
- * netconnect.pm, share/CardsNames, c/Makefile.PL, Xconfigurator_new.pm,
- Xconfigurator.pm, share/Cards+, share/MonitorsDB, share/isdndb.net,
- share/Cards2CardsNames: pci_probing now done by libldetect
- config files moved in package ldetect-lst
-
-2000/12/15 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm: Cards+ and CardsNames are moved to ldetect-lst
-
- * install_steps.pm: clean all unneeded stuff
-
-2000/12/14 dam's <damien@mandrakesoft.com>
-
- * any_new.pm, netconnect_new.pm: preparing for big jump.
-
- * netconnect.pm: Big jump. The *_new.pm are replaced by *.pm
- Everything should work, but you better test :)
-
- * standalone/control-center: big improvement and cosmetic changes
- a lot of improvement. Is able to launch multiples soft passing in
- arguments.
- new file. Its location should change soon.
-
- * any.pm: Big jump. The *_new.pm are replaced by *.pm
- Everything should work, but you better test :)
- corrected typo.
-
-2000/12/14 Pixel <pixel@mandrakesoft.com>
-
- * share/compssList: obsoleted by rpmsrate
-
- * share/rpmsrate: obsoletes compssList
-
- * share/compssUsers, install_steps.pm, install_steps_interactive.pm,
- Makefile, install_steps_gtk.pm, install2.pm, pkgs.pm, install_any.pm:
- move from compssList to rpmsrate
-
- * Newt/Newt.xs: cleanup (use of alloca to pass parameters)
-
-2000/12/13 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/it.po: updated Italian file
-
-2000/12/12 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: typo + if firewall, don't display 'disable network'
-
- * standalone/draknet2: new version... still working on it
-
- * ChangeLog: commit
-
- * share/themes-mdk-Firewall.rc: added firewall theme
-
- * modules.pm: my fault, corrected renaud's patch incorporation
-
- * share/logo-mandrake-Firewall.xpm: new logo
-
-2000/12/12 François Pons <fpons@mandrakesoft.com>
-
- * share/list: added packdrake.pm as packdrake has been splited.
-
- * pkgs.pm: fixed versionCompare to always return number. added checking of
- version to
- select obsoletes on upgrade.
-
-2000/12/11 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: Radeon uses 3D now.
-
- * lang.pm: fixed write_langs for upgrade.
- i18n sucking fixes.
-
- * Xconfigurator.pm: Radeon uses 3D hw accel theoritically now.
-
-2000/12/09 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm: Added configuration of Vietnamese input server
-
-2000/12/09 Pixel <pixel@mandrakesoft.com>
-
- * standalone/adduserdrake: remove debugging code
-
- * install2.pm (selectInstallClass): give $clicked to selectInstallClass
-
- * interactive_newt.pm (ask_from_entries_refW): reset all hidden entries to
- null in case of error
- on hidden entry cuz newt doesn't display null entries, disturbing
-
- * install_steps_interactive.pm (formatMountPartitions): the format
- partition dialog created at first use,
- so that it doesn't appear if no partitions are formatted.
- (selectInstallClass): ensure expert choice is kept if it was prechosen
- (selectInstallClass): if expert pre-chosen, ensure expert is kept
-
- * interactive_gtk.pm, install_steps.pm: small renicing
-
-2000/12/08 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: fixed bug in list of packages provided by another one.
-
-2000/12/08 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt_BR.po, share/po/no.po, share/po/DrakX.pot, share/po/es.po,
- share/po/fr.po, share/po/wa.po, share/po/da.po, share/po/de.po,
- share/po/az.po, share/po/tr.po: updated Brazilian file
-
-2000/12/08 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm (main): warn if VERSION file doesn't exist
- (formatPartitions): call rotate_logs after mounting the partitions
-
- * mouse.pm (write_conf): fix to make make test_pms happy
-
- * install_steps.pm (exitInstall): save the report.bug in /root/report.bug
-
- * any.pm (rotate_logs): created, rotates ddebug.log and install.log in
- /root
-
- * ftp.pm (new): retry in case of ftp connection/login
-
- * commands.pm: report_bug: created, returns a string
-
-2000/12/07 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: corrected ADSL connection choice.
- corrected typo
-
-2000/12/06 dam's <damien@mandrakesoft.com>
-
- * install2.pm: erare humanum es
- firewall begins to infect the install :).
- new meta_class.
-
- * share/logo-mandrake-Firewall.xpm: aded logo for firewall
-
- * install_gtk.pm: corrected errors
- left pixmap centered if firewall
- improved the firewall theme.
- errare humanum es
- firewall infects the install.
- The logo is changed if firewall.
-
-2000/12/06 Pixel <pixel@mandrakesoft.com>
-
- * standalone/keyboarddrake: add possibility to use keyboarddrake
- non-interactive (aka give the keyboard as
- first parameter)
-
- * lang.pm, install_steps.pm, install_steps_interactive.pm, install2.pm,
- install_any.pm: adapt to the fact that RPM_INSTALL_LANG is obsoloted.
- Now rpm uses %_install_langs in /etc/rpm/macros
-
-2000/12/05 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: final fixes to versionCompare to make sure no deadlock can
- occurs.
-
- * Xconfigurator.pm: restored Matrox G200/G400 hw 3d accel configuration.
-
-2000/12/05 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pt_BR.po, share/po/pl.po, share/po/da.po, share/po/fi.po,
- share/po/es.po: updated several pofiles
-
-2000/12/04 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: use isCdNotEjectable.
-
- * common.pm: added function isCdNotEjectable.
-
- * share/Cards+: SiS620 card are said to be unsupported by XF4.
-
- * pkgs.pm: load only one hdlist in memory if CD is not ejectable (low
- memory).
- fixed compareVersion for deadlock. removed silly CODE print on deporder
- problems.
-
- * Xconfigurator.pm: add Options sw_cursor for SiS 6326 in XF3 mode.
-
-2000/12/03 dam's <damien@mandrakesoft.com>
-
- * mouse.pm: incorporated cmodifications in the firewall branch
-
- * netconnect.pm: netconnect_new > netconnect.pm
-
- * netconnect_consts.pm: incorporated in the firewall branch.
-
- * standalone/draknet2: incoporated in the firewall branch
-
- * any_new.pm: any_new > any, so we remove it now.
-
- * netconnect_new.pm: netconnect_new > netconnect, so we remove it now.
- incorporated in the firewall branch
-
- * modules.pm: incorporated modifications to the firewall branch. Hope they
- won't break anything...
-
-2000/12/02 dam's <damien@mandrakesoft.com>
-
- * share/po/az.po: correction in firewall incorporated
-
- * ChangeLog: first attempt ro build the firewall install
-
- * standalone/mousedrake: incorporated in the firewall branch
-
- * share/po/ru.po, share/po/no.po, share/po/sk.po: correction incorporated
- in the firewall branch
-
-2000/11/28 dam's <damien@mandrakesoft.com>
-
- * modules.pm: included reno's patches. Now should work without kudzu.
- branch to build the firewall install.
-
- * standalone/pixmaps/port.xpm, standalone/pixmaps/.xvpics/px4.xpm,
- standalone/pixmaps/ethernet.xpm, standalone/pixmaps/.xvpics/px1.xpm,
- standalone/pixmaps/px2.xpm, standalone/pixmaps/unknown.xpm,
- standalone/pixmaps/.xvpics/px3.xpm, standalone/pixmaps/px4.xpm,
- standalone/pixmaps/px1.xpm, standalone/pixmaps/.xvpics/px2.xpm,
- standalone/pixmaps/px3.xpm, standalone/pixmaps/modem.xpm,
- standalone/pixmaps/isdn.xpm: Initial revision
- branch to build the firewall install.
-
- * partition_table_dos.pm, share/po/bg.po, share/po/sr.po,
- share/template.in/cdrom.kdelnk.in,
- share/template.in/cdrom.fsdev.kdelnk.in, share/po/hr.po, c/silo.c,
- Makefile, share/consolefonts/lat0-sun16,
- share/themes/DarkMarble-check_off.png,
- share/themes/marble3d-button_def.png, share/locales.tar.bz2.sparc,
- do_resize_fat, share/po/wa.po, share/po/is.po,
- share/themes/DarkMarble-button3_out_prelight.png, resize_fat/main.pm,
- class_discard.pm, .cvsignore, share/step-orange.xpm, share/reload.xpm,
- install_interactive.pm, c/README, Xconfig.pm, share/themes.rc,
- share/themes/marble3d-bg1.png, perl2fcalls, share/themes-blackwhite.rc,
- share/themes-blueHeart.rc, pkgs.pm, keyboard.pm,
- share/rpm-installed.xpm, share/po/gl.po, share/po/lv.po,
- standalone/icons/ftout.xpm, Makefile.drakxtools, http.pm,
- share/step-green-click.xpm, partition_table_sun.pm,
- share/themes/focus.png, share/keymaps_generate, lang.pm, verify_c,
- share/po/.cvsignore, share/ftin.xpm, standalone/draksec,
- resize_fat/info_sector.pm, share/compssUsers, share/step-orange-on.xpm,
- Makefile.config, share/list.sparc, share/po/hu.po, run_program.pm,
- share/themes/marble3d-button4.png, share/rpm-unselected.xpm,
- share/list.i386, netconnect.pm, share/themes/DarkMarble-button3_out.png,
- c/md5_crypt.c, share/themes/mdk-toggle_on.png, partition_table.pm,
- standalone/livedrake, share/diskdrake.rc,
- share/themes/DarkMarble-check_on.png, standalone/draknet,
- share/po/br.po, Newt/typemap, share/themes/blueHeart-button2.png,
- share/po/ro.po, share/list, share/po/cs.po, share/po/be.po,
- share/po/sp.po, share/step-orange-click.xpm, modparm.pm,
- share/step-green.xpm, share/rpm-base.xpm,
- share/themes/marble3d-check1.png, crypto.pm, share/po/eu.po,
- share/themes/marble3d-button1.png, c/stuff.pm, install_steps.pm,
- share/Cards2CardsNames, Newt/Makefile.PL,
- share/themes/mdk-Desktop-bg.png, netconnect_consts.pm, share/po/id.po,
- share/themes/mdk-check_on.png, share/po/fi.po, share/po/sk.po,
- standalone/icons/findf.xpm, share/po/lt.po,
- share/themes/mdk-check_off.png, fs.pm, c/.cvsignore,
- share/themes/mdk-toggle_off.png, share/po/ca.po, timezone.pm,
- detect_devices.pm, share/consolefonts/ruscii_8x16, diskdrake.pm,
- standalone/icons/reload.xpm, share/rpm-selected.xpm, resize_fat/io.pm,
- Newt/Newt.xs, Newt/.cvsignore, install2, share/po/pt_BR.po,
- share/themes-marble3d.rc, resize_fat/fat.pm, sbus_probing/main.pm,
- share/template.in/floppy.fsdev.kdelnk.in, printer.pm, share/po/it.po,
- resize_fat/.cvsignore, install_steps_interactive.pm,
- share/themes/mdk-button4.png, live_install, standalone/draknet2,
- any_new.pm, share/list.alpha, share/rpm-semiselected.xpm, c.pm,
- share/logo-mandrake-Desktop.xpm, printerdrake.pm, network.pm,
- share/step-red-on.xpm, share/themes-mdk.rc, share/po/validate.pl,
- swap.pm, share/themes/blueHeart-button4.png, standalone/keyboarddrake,
- g_auto_install, share/po/es.po, standalone/lspcidrake, share/po/de.po,
- partition_table_mac.pm, standalone/mousedrake, devices.pm,
- share/po/ru.po, resize_fat/c_rewritten.xs, share/po/cy.po,
- share/themes/mdk-button1.png, netconnect_new.pm, install_any.pm,
- share/po/nl.po, share/aliases, share/keyboards.tar.bz2, share/po/sv.po,
- Newt/Av_CharPtrPtr.c, c/stuff.xs.pm, share/themes-DarkMarble.rc,
- share/step-red.xpm, Newt/Av_CharPtrPtr.h, c/smp.c,
- share/po/zh_CN.GB2312.po, commands.pm, standalone/icons/find.xpm,
- perl2etags, share/po/Changelog, standalone/drakboot,
- resize_fat/dir_entry.pm, share/fonts.tar.bz2, share/install.rc,
- share/themes/blueHeart-button1.png, share/Cards+, share/po/uk.po,
- share/MonitorsDB, share/template.in/Dos_.kdelnk.in,
- standalone/printerdrake, services.pm, share/kmap2bkmap,
- share/themes/blueHeart-button_def.png, share/po/az.po, share/po/tr.po,
- common.pm, getpkgs_deps, standalone/drakxconf, share/ftout.xpm,
- install_gtk.pm, Xconfigurator_consts.pm, share/consolefonts/lat2-sun16,
- share/po/no.po, resize_fat/boot_sector.pm, share/CardsNames,
- c/Makefile.PL, share/themes-mdk-Desktop.rc,
- share/themes/blueHeart-brown_bg1.png, share/logo-mandrake.xpm,
- share/consolefonts/Cyr_a8x16, standalone/netdrake, standalone/drakgw,
- share/po/sl.po, standalone/rpmdrake, share/makedev.sh,
- share/themes/DarkMarble-button3_in_prelight.png, share/themes-blue.rc,
- install_steps_newt.pm, resize_fat/Makefile.PL, partition_table_empty.pm,
- my_gtk.pm, share/po/i18n_compssUsers, install2.pm, share/compssList,
- share/po/fr.po, share/themes/DarkMarble-button3_in.png,
- standalone/icons/ftin.xpm, share/modparm.lst, raid.pm,
- standalone/diskdrake, share/po/ko.po,
- share/template.in/zip.fsdev.kdelnk.in, share/compssUsers.desktop,
- share/po/ja.po, any.pm, share/isdndb.net,
- share/template.in/floppy.kdelnk.in, share/step-green-on.xpm,
- share/step-red-click.xpm, share/po/Makefile, help.pm,
- share/po/zh_TW.Big5.po, c/sbus.c, genmodparm, share/po/pl.po,
- share/themes-savane.rc, install_steps_stdio.pm, share/po/th.po,
- loopback.pm, resize_fat/any.pm, share/po/el.po, install_steps_gtk.pm,
- Newt/Newt.pm, Xconfigurator.pm, interactive_gtk.pm,
- standalone/drakxservices, resize_fat/Makefile, fsedit.pm,
- interactive_stdio.pm, live_install2, resize_fat/directory.pm,
- share/po/pt.po, install_steps_auto_install.pm, share/po/DrakX.pot,
- share/themes/mdk-bg.png, share/list.ppc, share/po/ga.po, share/po/et.po,
- share/keymaps.tar.bz2, partition_table_bsd.pm, c/md5.c, share/help.xpm,
- share/themes/marble3d-check2.png, ftp.pm, c/md5.h,
- standalone/adduserdrake, share/themes/marble3d-button2.png,
- partition_table_raw.pm, share/template.in/zip.kdelnk.in,
- share/locales.tar.bz2, standalone/icons/fileopen.xpm,
- share/template.in/kppprc.in, ChangeLog, resize_fat/README, mouse.pm,
- commands, standalone/XFdrake, share/gconv.tar.bz2, share/po/eo.po,
- interactive.pm, log.pm, share/themes/DarkMarble-gloom2.png,
- interactive_newt.pm, share/po/da.po, resize_fat/c_rewritten.pm,
- bootloader.pm, share/po/af.po: branch to build the firewall install.
-
-2000/11/28 François Pons <fpons@mandrakesoft.com>
-
- * install2.pm: change upgrade section for keyboard.
-
- * install_steps_gtk.pm: extended chooseSizeToInstall.
-
- * install_steps.pm: updated comment.
-
- * pkgs.pm: fixed misuse of map with values returing list which are indexed
- afterward.
-
- * install_any.pm: removed some more logs.
-
- * keyboard.pm: keep track of unknown keyboard (for upgrade)
-
- * install_steps_interactive.pm: modified def_mark to 59 (gl hw
- acceleration level) and upgrade use this level
- for newbies so.
- make sure a recommended upgrade get the minimum and a little more (80).
- choose default size according to a default mark (currently 49).
-
-2000/11/27 dam's <damien@mandrakesoft.com>
-
- * netconnect_consts.pm: added isdn Gazel card 10b5 1151
-
-2000/11/27 Pixel <pixel@mandrakesoft.com>
-
- * partition_table.pm (@bad_types): list of the different type of extended
- partitions
- (important_types): remove @bad_types from important_types
-
-2000/11/25 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ru.po: updated Russian file
-
-2000/11/24 dam's <damien@mandrakesoft.com>
-
- * mouse.pm: doc + split
-
- * netconnect_new.pm: added depmod after having writed modules.conf
-
- * standalone/mousedrake: splited
-
-2000/11/24 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: avoid .la files for selection.
-
- * install_steps.pm: added missing portmap.
-
-2000/11/23 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet2: progressbar.
-
-2000/11/23 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm, install_steps_gtk.pm: updated with
- structural change of pkgs.
-
- * install_any.pm: removed some ugly logs.
- updated with structural change of pkgs.
-
- * install_steps.pm: added tempory fix for initscripts %post.
- updated with structural change of pkgs.
-
- * pkgs.pm: synced versionCompare() with rpmtools-2.1-4mdk.
- removed ugly log on transaction.
- added special case to avoid counting kernels space when upgrading
- as these package are not upgraded (just installed).
- Memory usage optimization, change structure of storing
- package informations. lot of fork to make sure of
- freeing memory by perl (no free on used hashes or arrays
- usable by other than perl), now upgrade takes as much as
- install which takes at least 0.5Mb less than before.
-
-2000/11/23 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/compssList: put all tina stuff to weight 0
-
-2000/11/21 François Pons <fpons@mandrakesoft.com>
-
- * Xconfig.pm: added more subtil upgrade from /etc/X11/XF86Config* files,
- keep
- wacom entries.
-
- * Xconfigurator.pm: upgrade for XF86Config, take care of resolution and
- depth wanted.
-
- * install_steps.pm: always try to get default from /etc/X11/XF86Config
- removing logs.
-
- * pkgs.pm: cosmetic changes for upgrade, removing some logs.
-
- * install_steps_interactive.pm: removed code to ask if take care of
- /etc/X11/XF86Config* files.
- added wait message during rebuild of rpm database as it takes some time.
-
- * Xconfigurator_new.pm: WARNING
-
-2000/11/21 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/az.po: updated Azeri file
-
-2000/11/20 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: clean up as today filelist is no more.
- use parsehdlist from rpmtools-2.1-3mdk or above instead of
- perl code from DrakX forking to simulate a filelist server.
- this increase performance by 100 to 150% on selection of
- packages to upgrade.
-
- * share/list: added parsehdlist.
-
- * c/stuff.xs.pm: removed logs.
-
-2000/11/20 Pixel <pixel@mandrakesoft.com>
-
- * share/Cards+: add radeon
-
- * install_steps_auto_install.pm (exitInstall): fix message
-
- * install_steps.pm (afterInstallPackages): moved the
- writeandclean_ldsoconf here
-
- * fsedit.pm: add /var/ftp and /var/www in the list of propose mount-points
-
-2000/11/17 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * install_any.pm: add openuniverse to the list of gl apps
-
-2000/11/16 dam's <damien@mandrakesoft.com>
-
- * netconnect_new.pm: corrected isdn_get_{list, info}
-
-2000/11/16 François Pons <fpons@mandrakesoft.com>
-
- * share/list: include /usr/lib/rpm/macros else rpmlib gets crazy :-)
-
- * modules.pm: tempory version for current glibc, a lot of module have been
- removed due to
- problem of stage1 increase in size when compiled with glibc-2.2 and
- current
- modutils.
-
- * c/Makefile.PL: updated with rpmlib 4.
-
- * c/stuff.xs.pm: completed something that seems to work almost correctly
- at the first look
- with rpmlib 4.
-
-2000/11/16 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/compssList: add netscape-german, thx to florin
- isdn4k-utils gets same weight as isdn4net, thx to Florin
-
-2000/11/16 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/no.po: updated Norwegian file
-
- * share/po/sk.po: updated Slovak file
-
-2000/11/15 dam's <damien@mandrakesoft.com>
-
- * netconnect_new.pm: added isdn_get_list and isdn_get_info
- calls modules::write_conf to fill the modules.conf.
-
- * Xconfigurator_new.pm: added to fork frontends backends. Not operationnal
- at all for now.
-
- * modules.pm: when loading a new module, add an alias for it, even in
- standalone mode.
-
-2000/11/15 François Pons <fpons@mandrakesoft.com>
-
- * c/stuff.xs.pm: updated for rpm 4.
-
- * pkgs.pm: rpmdepOrder again (for new TAGp)
-
-2000/11/15 Pixel <pixel@mandrakesoft.com>
-
- * c/Makefile.PL: add librpmio
-
- * c/stuff.xs.pm: workaround for kernel-headers not in sync with glibc
- (dev_t)
-
-2000/11/14 dam's <damien@mandrakesoft.com>
-
- * netconnect_new.pm: better structure for the ethx-driver.
- added call to add_alias and write_conf
-
- * standalone/draknet2: updated
-
-2000/11/14 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: removed foreach (<... which are eating memory
- fork install on upgrade for searching trhough filelist, this saves
- about 20Mb of memory before rpmlib transaction are started so its is
- more than 2 times faster for upgrading a system, sorry it was
- effectively
- a machine two overloaded that makes the upgrade slower.
- make rpmlib not to check size as DrakX should do it.
- added special cases for selection of packages according to files, avoid
- all kde-i18n packages if their locales-$lang is not selected, avoid
- a -devel package if only one files is updated (typical for fixes on
- package by moving files around).
-
- deactivated rpmdepOrder as it should be done directly in
- depslist.ordered
- file.
-
- fixed obsoletes which never run correctly, even if almost no package are
- selected explicitely this way.
-
- added log during selection of packages to upgrade to keep a track of
- what DrakX is doing.
-
- * modules.pm, network.pm, netconnect.pm, common.pm, modparm.pm,
- Xconfig.pm, commands.pm, lang.pm, fsedit.pm, detect_devices.pm,
- printer.pm, Xconfigurator.pm: removed foreach (<... which are eating
- memory
-
-2000/11/14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/da.po: updated Danish file
-
-2000/11/13 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw: Integrate Till's patches for better work with Cups.
-
-2000/11/12 Pixel <pixel@mandrakesoft.com>
-
- * standalone/mousedrake: fix for bug #1350
- (mousedrake dies with: Undefined subroutine &mouse::serial_ports_names)
-
- * pkgs.pm (psUpdateHdlistsDeps): fixed an ugly typo (uses .cz2 for .cz and
- .cz22 for
- .cz2) that makes for than one CD install breaks :-(
-
-2000/11/11 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
- share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
- share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
- share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
- share/po/pl.po, share/po/fi.po, share/po/no.po,
- share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
- share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/br.po,
- share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
- share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
- share/po/af.po: updated pot file
-
-2000/11/10 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet2: draknet2 : new version of draknet, post-install
- only, uses only libDrakX backend, beautyfull
-
- * netconnect_new.pm: completed adsl_conf_backend
- corrected conf_network_card_backend : return interface and module
- separately
- splitted pppconfig.
-
-2000/11/10 François Pons <fpons@mandrakesoft.com>
-
- * share/po/fr.po: typo fixing
-
- * printerdrake.pm: fixed wrong case for managing IP for remove CUPS server
- updated typo for remote CUPS server configuration dialog
-
-2000/11/10 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/sk.po, share/po/lv.po: updated Latvian and Slovak files
-
- * share/po/wa.po, share/po/da.po: updated Danish and Walloon files
-
-2000/11/10 Pixel <pixel@mandrakesoft.com>
-
- * c/stuff.xs.pm: initIMPS2 move where it should be (in non-C_RPM dependent
- section)
-
-2000/11/09 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: added handling for 2 ethernet cards with the same module
-
-2000/11/09 François Pons <fpons@mandrakesoft.com>
-
- * share/po/fr.po: add some missing translation (mainly printer for CUPS
- remote config)
-
- * printer.pm: make sure to restart cups when cupsd.conf is modified.
-
- * printerdrake.pm: fixed modification of BrowsePoll on a existing file.
-
-2000/11/08 dam's <damien@mandrakesoft.com>
-
- * netconnect_new.pm: updated
-
-2000/11/08 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: make sure class discarding do not destroy result
-
- * pkgs.pm: added new function for selected or installed accessor on pkg
- make sure package already installed for oem are marked as selected, as
- some
- code refer to this state to perform some actions (install_urpmi)
-
- * install_steps.pm: fixed for urpmi again;
-
- * printerdrake.pm: add management of BrowsePoll <ip>:<port> in
- /etc/cups/cupsd.conf
-
- * printer.pm: add minimal management of /etc/cups/cupsd.conf
-
-2000/11/08 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/MonitorsDB: Fixed Samsung SyncMaster 3Ne (bug #1136)
-
-2000/11/08 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/es.po: updated Spanish file
-
-2000/11/07 dam's <damien@mandrakesoft.com>
-
- * mouse.pm: now there are 8 ttyS* available for configuration. Used for
- internal modem configuration that uses ttyS* > 3
-
- * netconnect_new.pm: ttyS0 -> ttyS7 available for configuration
- some doc
-
-2000/11/07 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: fixed text for card prefered in XFree 3.3 (RIVA128).
-
- * install_steps_interactive.pm: use of install_any::boot_medium to avoid
- listing medium used for boot
-
- * install_any.pm: use of $boot_medium where the boot medium is used
- (default 1)
-
-2000/11/07 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/Cards+: fix tseng server for ET4000 W32i, W32p thanks to
- <sileryti@mail.com>
-
-2000/11/07 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm (main): in oem, configureX automatic
- (main): $::oem is now global :-( (needed in install_steps.pm)
-
- * install_steps.pm (afterInstallPackages): give medium 'cdrom' to
- install_urpmi in case of $::oem
-
-2000/11/06 dam's <damien@mandrakesoft.com>
-
- * netconnect_new.pm: backend/frontend fork complete
-
- * any_new.pm: load_thiskind changed to load_thiskind_backend, the wait
- function is passed by argument
-
- * network.pm: configureNetwork2 commented.
-
-2000/11/06 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: created function for examining already installed package on
- install (oem).
-
- * install2.pm: add a flag to allow by default formating /
-
- * install_steps.pm: conditionnal format of / and use already installed
- packages if any on install.
-
-2000/11/06 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/MonitorsDB: added Hitachi CM753 contributed by Adam Julius
- <ajulius@yahoo.com>
-
-2000/11/06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/DrakX.pot, share/po/ru.po, share/po/uk.po: updated pot file
- GRUB/LILO/SILO messages *must* be in ascii only. Changed cyrillic to
- ascii transliteration for them
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/es.po,
- share/po/fr.po, share/po/bg.po, share/po/ga.po, share/po/sr.po,
- share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
- share/po/az.po, share/po/pt_BR.po, share/po/hr.po, share/po/ko.po,
- share/po/cy.po, share/po/nl.po, share/po/ja.po, share/po/wa.po,
- share/po/sv.po, share/po/is.po, share/po/hu.po, share/po/zh_TW.Big5.po,
- share/po/it.po, share/po/id.po, share/po/pl.po, share/po/fi.po,
- share/po/no.po, share/po/zh_CN.GB2312.po, share/po/th.po,
- share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/sl.po,
- share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
- share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
- share/po/af.po: updated pot file
-
- * keyboard.pm, ChangeLog: added the 3 kbd layouts for CZ and SK kbds
-
-2000/11/06 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm (formatPartitions): formatMountPartitions done even in
- upgrade
- (main): set $o->{partitioning}{use_existing_root} in oem
-
- * install_steps.pm (doPartitionDisksAfter): remove the mount_all which is
- plain dumb
- (doPartitionDisksAfter): fs::mount_all moved here
- (doPartitionDisks): use $o->{partitioning}{use_existing_root}
-
- * install_any.pm (use_root_part): fs::mount_all really removed
- (use_root_part): fs::mount_all removed
-
- * install_steps_interactive.pm (choosePartitionsToFormat): don't propose
- already mounted partitions
- (installCrypto): nicer layout
-
-2000/11/05 dam's <damien@mandrakesoft.com>
-
- * mouse.pm: changed 'IntelliMouse label' to 'Generic PS2 Wheel Mouse'
-
-2000/11/05 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/MonitorsDB: added LG StudioWorks520Si contributed by Yves Maniette
- <yves@maniette.com>
-
-2000/11/01 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/eo.po: updated Esperanto file
-
-2000/10/31 dam's <damien@mandrakesoft.com>
-
- * netconnect_new.pm: continuing forking frontend - backend. adsl ist
- nearly finished
-
- * any_new.pm: added this file to fork frontends and backends in any.pm
-
-2000/10/30 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/compssList: heartbeat pixel wonderful un chien vaut mieux que deux
- tu damsera
-
-2000/10/30 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/wa.po: updated Walloon file
-
- * share/keyboards.tar.bz2: updated keyboards
-
-2000/10/30 Pixel <pixel@mandrakesoft.com>
-
- * lang.pm (load_po): backslash @ in po strings, otherwise the eval fails
-
-2000/10/28 dam's <damien@mandrakesoft.com>
-
- * netconnect_new.pm: new version of draknet. Splited frontends - backends
-
-2000/10/28 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/tr.po: updated Turkish file
-
-2000/10/27 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: remove the noising rpm output command line when loging
- installed rpm
- size (only usefull for live_update and just for conveniance).
-
- * pkgs.pm: Make sure $meta_class is defined in readCompsUsers (for HTTP
- hack)
- before reading a compssUsers file.
-
- * live_install: add VERSION in list of file that have to be symlinked.
-
- * common.pm: list_skels returns list of existing directory and writeable.
-
- * live_install2: Make sure to remove font path in /tmp/drakx before
- exiting.
-
-2000/10/26 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/DrakX.pot, share/po/tr.po, share/po/it.po: updated Italian and
- Turkish files
-
-2000/10/24 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/compssList: fortune-mod gets 10/0/10 on request from egil
-
-2000/10/24 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/pl.po: updated Polish file
-
-2000/10/23 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/ca.po: updated Catalan file
-
-2000/10/23 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm, ChangeLog, diskdrake.pm: added some carriage returns
- to please jl :)
-
- * detect_devices.pm (floppies, probeall): add require "modules" as it
- should be
-
- * install_interactive.pm (partitionWizardSolutions): add "require
- resize_fat::main" as it should be
-
-2000/10/22 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/compssList: linuxconf-gui got -1/-1/-1 while gnome-linuxconf has
- 74/0/74
-
-2000/10/21 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/uk.po, share/po/tr.po, share/po/az.po: updated Azeri, Turkish
- and Ukrainian files
-
-2000/10/20 fabman
-
- * share/po/es.po: updated
-
-2000/10/20 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/compssList: ntp to -1/-1/-1
-
-2000/10/19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/compssList: put all packages requiring kde1-compat to 0 except
- kisdn-free
- aumix now gets a high weight (79) because it's required to save the
- mixer
- settings at shutdown
-
-2000/10/19 Pixel <pixel@mandrakesoft.com>
-
- * share/locales.tar.bz2: fix symlink zh_CN.GB2312 (was zh_CN.G23212)
-
-2000/10/19 tlb
-
- * share/po/da.po: 100%, Troels Liebe Bentsen.
-
-2000/10/18 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/az.po: Added AZeri file
-
- * share/po/no.po: updated Norwegian file
-
-2000/10/17 dam's <damien@mandrakesoft.com>
-
- * interactive_gtk.pm, netconnect.pm, netconnect_consts.pm: removed unused
- code in ineractive_gtk
- added some isdn card in pcitable
- corrected typos, and made ISA isdn work
-
-2000/10/17 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/lv.po: updated Latvian file
-
-2000/10/16 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
- share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
- share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
- share/po/eu.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
- share/po/ko.po, share/po/cy.po, share/po/nl.po, share/po/ja.po,
- share/po/wa.po, share/po/sv.po, share/po/is.po, share/po/hu.po,
- share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po, share/po/pl.po,
- share/po/fi.po, share/po/no.po, share/po/zh_CN.GB2312.po,
- share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
- share/po/sl.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
- share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
- share/po/da.po, share/po/cs.po, share/po/af.po: updated pot file
-
- * standalone/keyboarddrake, keyboard.pm, ChangeLog: corrected BackSpace
- setting
-
-2000/10/16 Pixel <pixel@mandrakesoft.com>
-
- * detect_devices.pm (cdroms): fix the setting of scdX for ide burners
-
- * share/compssList: sympa is -1 except for server
-
- * keyboard.pm (write): small pixelization (neater now)
-
- * install_steps.pm (installPackages): don't run ldconfig in g_auto_install
-
-2000/10/15 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/nl.po: updated Dutch file
-
-2000/10/14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm, keyboard.pm: small fix for Swedish locale
-
- * share/po/DrakX.pot, share/po/es.po, share/po/bg.po, share/po/fr.po,
- share/po/wa.po, share/po/de.po: updated Bulgarian file
-
-2000/10/13 François Pons <fpons@mandrakesoft.com>
-
- * partition_table_empty.pm: empty partition table as assumed only if the
- MBR is really composed of only null chars.
-
-2000/10/13 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/compssList: added viavoicemenu
-
-2000/10/12 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm (ask_mntpoint_s): dqs
-
-2000/10/11 Pixel <pixel@mandrakesoft.com>
-
- * .cvsignore: ignore flog files
-
- * install2.pm (main): test
-
- * ChangeLog: qsdqsd
-
- * install_steps_interactive.pm: * (selectKeyboard): set default
- $o->{langs} to $o->{lang}
-
-2000/10/10 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw, ChangeLog: make only one call to urpmi in order to
- install all the needed rpm's
-
-2000/10/10 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/po/no.po, share/po/es.po: updated Norwegian file
-
- * share/po/pl.po: updated Polish file
-
- * share/po/zh_CN.GB2312.po, share/po/zh_TW.Big5.po: updated Chinese file
-
-2000/10/10 tlb
-
- * share/po/da.po: 99%.
-
-2000-10-10 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw: make only one call to urpmi in order
- to install all the needed rpm's
-
-2000-10-10 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-10-10 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm: increase $::VERSION
-
-2000-10-09 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-10-09 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: update after Dam's new messages in netconnect
-
-2000-10-09 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-10-09 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (kdeicons_postinstall): remove the handling of
- doc desktop icons. see dadou
-
-2000-10-09 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/compssUsers: new list (with icons)
-
- * share/list: add icons for compssUsers
-
-2000-10-09 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: added wait message
-
-2000-10-09 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-10-09 Pixel <pixel@mandrakesoft.com>
-
- * share/themes-*.rc: change the fg[INSENSITIVE] entry
-
-2000-10-09 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: added tuxracer in OpenGL games to install if an
- accelerated card has been found.
-
-2000-10-09 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm (main): asking connection after writing start/stop scripts.
- (adsl_conf): if during install, don't use chkconfig, make the
- links directly for the adsl init script.
-
-2000-10-09 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-10-09 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm (afterInstallPackages): UserView in kdmrc is
- now true by default. So put false if security >= 3 instead of
- removing it.
-
-2000-10-09 François Pons <fpons@mandrakesoft.com>
-
- * any.pm: default speed of modem set to 115200.
-
- * fs.pm: fixed format of RAID partition.
-
- * install_interactive.pm: take into account RAID partitions for
- searching / partition.
-
-2000-10-09 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-10-09 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm (selectKeyboard): don't assume $o->{langs} is set
- (selectLanguage): don't set $o->{langs} (so that you can go back
- and it works)
-
- * common.pm (round_up, round_down): ensure number is an integer
-
- * install_steps_interactive.pm (chooseGroups): take into account
- the min_level to compute the size
-
-2000-10-08 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (choosePackages): move the
- computing of max_size before calling chooseGroups (not the one for
- desktop meta_class)
- (chooseGroups): compute the size of Miscellaneous
-
-2000-10-07 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-10-07 Pixel <pixel@mandrakesoft.com>
-
- * share/compssList: don't install locales-* even in 'all' install
- (those files are usefull if RPM_INSTALL_LANG doesn't include that
- lang)
-
-2000-10-07 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-10-07 Pixel <pixel@mandrakesoft.com>
-
- * pkgs.pm (install): log the gonna be installed packages (-> be
- able to track not installed packages that should have been
- installed)
-
-2000-10-06 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-10-06 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm (pppConfig): the domain used for kppp is copied in resolv.conf
- (intro): connection detection improved : now use "ifconfig | grep interface"
- (pppConfig): corrected cnx_up/down
-
-2000-10-06 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-10-06 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm (afterInstallPackages): don't fail if
- kdeglobals file is not there
-
- * share/compssUsers.desktop: fix icons
-
- * detect_devices.pm (cdroms): fix for scsi cdrom drives
-
- * pci_probing/pcitable: put cs46xx instead of snd-card-cs461x
- (dixit jeff)
-
- * diskdrake.pm (Resize): comment ext2&reiserfs resizing for the
- moment
-
-2000-10-06 Frederic Lepied <flepied@mandrakesoft.com>
-
- * Xconfigurator.pm (write_XF86Config): added mode of wacom devices
-
-2000-10-06 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm (ask_connect_now): connection is now tested.
-
-2000-10-06 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm, install_steps_gtk.pm: updated
- license.
-
- * Xconfigurator.pm: removed Matrox G200/G400 3D acceleration by
- DRI, use only Mesa with Utah GLX, fixed autologin for avoiding
- drakres and no wm available, moved Riva128 card from experimental
- to stable, fixed presentations of text.
-
- * pci_probing/pcitable: fixed Cirrus Logic sound card.
-
-2000-10-06 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-10-06 François Pons <fpons@mandrakesoft.com>
-
- * install2.pm: fixed bad call to hasUsb...
-
- * share/Cards+: fixed wrong use of SiS card with 4.0.1, only keep
- 530, 620 and 6326 with XFree 4.0.1.
-
-2000-10-06 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-10-06 Pixel <pixel@mandrakesoft.com>
-
- * share/list: remove /usr/X11R6/lib/X11/Cards, not needed anymore
-
- * install_steps.pm (afterInstallPackages): put the Charset in
- kdeglobals, otherwise kde uses charset iso8859-1 :(
-
- * lang.pm (charset): created
-
- * common.pm (update_userkderc): fix it, change the argument
- passing
-
-2000-10-05 Pixel <pixel@mandrakesoft.com>
-
- * share/compssList: raise kde-i18n-*, should be installed whenever
- kdebase is installed
-
- * pci_probing/pcitable: integrate patch from viet (concerns
- sym53c8xx cards)
-
- * share/compssUsers: use "documentation" as the database icon
-
- * install_steps_interactive.pm (chooseGroups): fix to accept icons
- not in the format "*_section.xpm"
-
- * install2.pm (miscellaneous): put yes/no in sysconfig/usb entries
-
-2000-10-05 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm (adsl_conf): updated pppoe conf.
- (main): added $netc->{minus_one} to avoid to count dhcp configured
- eth when asking to share the connection.
- (adsl-pppoe): improvement. Should work now.
- (miscellaneous): corrected chmod 755 to 744 for connections scripts
-
- * netconnect.pm (main): network is stopped then started, instead
- of restarted.
-
-2000-10-05 François Pons <fpons@mandrakesoft.com>
-
- * live_install: added icons (this fixes the yellow on white
- tooltips problem).
-
- * install_any.pm: added ghostscript-utils in the list of packages
- to copy when changing CD.
-
- * printerdrake.pm: install ghostscript-utils if a lexmark printer
- is selected on cups.
-
-2000-10-05 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-10-05 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (loadO): look for auto_inst.cfg in /, not in
- /Mandrake/base
-
-2000-10-05 François Pons <fpons@mandrakesoft.com>
-
- * netconnect.pm: fixed syntax error.
-
- * share/po/i18n_compssUsers: simplified version and fixed
- dependancies to pkgs.pm (for building drakxtools).
-
-2000-10-04 François Pons <fpons@mandrakesoft.com>
-
- * install_gtk.pm: removed 80 pixel on height for live upgrade.
-
- * install_steps.pm: do not set keyboard when live upgrade after
- setting the language.
-
- * install_steps_gtk.pm: fixed the trying to start a X server on
- live.
-
-2000-10-04 Pixel <pixel@mandrakesoft.com>
-
- * share/po/i18n_compssUsers: fake module ``c'' so that no need to
- build DrakX to use i18n_compssUsers
-
- * install_steps_interactive.pm (selectLanguage): update license
-
- * install_steps_gtk.pm (installPackages): add second license for
- shitty soft (commercial one)
-
-2000-10-04 dam's <damien@mandrakesoft.com>
-
- * draknet (netconnect.pm and network.pm): various translations
- corrected, network is restarted, buttons connect/disconnect
- debugged.
-
-2000-10-04 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-10-04 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm (main): kill prefdm instead of autologin
-
- * install_any.pm (find_root_parts): don't use
- suggest_mount_points, it couldn't do what we wanted
- (guess_mount_point): created, contains the common stuff between
- suggest_mount_points and find_root_parts
-
-2000-10-04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw: fix some failing/untranslated i18n messages
-
- * share/po/fr.po: write translations according to drakgw
-
-2000-10-04 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: removed bad card for 3D Rage Pro.
-
- * install_any.pm: removed Aurora for SiS card, add more case for
- detecting right cdrom for live upgrade, fixed wrong list of
- packages for laptops.
-
- * c/stuff.xs.pm: added time interval of 200ms between update of
- progression bar of install, make sure the last step is seen.
-
-2000-10-04 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-10-04 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm (when_load): stricter regexp for $type is scsi or not
- (so that scsi_mod with is scsi_raw doesn't get an alias
- scsi_hostadapter)
-
- * detect_devices.pm (isLS120Drive): extend the regexp to include
- "Caleb Technology - 144MB FDD UHD Floppy"
-
- * detect_devices.pm (burners, IDEburners): reworked, renamed, now
- works!
- * c/stuff.xs.pm (isBurner): created
-
- * modules.pm (load_ide): make sure ide-cd is loaded!
-
- * install_steps_interactive.pm (chooseGroups): the label and help
- are now translated (at least will be), so use the translations
-
-2000-10-03 Pixel <pixel@mandrakesoft.com>
-
- * share/po/Makefile (DrakX.pot): added the to-be-translated from
- compssUsers
- * share/po/i18n_compssUsers: read the compssUsers's and output the
- to-be-translated in po format
-
- * log.pm (l): log to STDERR instead of STDOUT
-
- * install_any.pm (loadO): use first floppy drive available (won't
- help much though, as stage1 doesn't follow this...)
-
-2000-10-03 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-10-03 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm (autologin): don't propose autologin in
- security > 3
-
- * common.pm (availableRamMB): HACK HACK if i810 and memsize,
- returns 127
-
- * bootloader.pm (suggest): don't use grub if more than 800MB
-
-2000-10-04 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/validate.pl: create this tool
-
- * share/po/fr.po: fix many typos
-
- * share/po/fr.po: make compssUsers translation
-
-2000-10-03 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator_consts.pm: changed resolution allocation.
-
- * fs.pm: removed no more used log.
-
- * install2.pm: add exit button if live upgrade.
-
- * install_any.pm: increased minimal available size to 65Mb.
-
- * install_steps.pm, standalone/printerdrake: fixed cups to CUPS
- for mode.
-
- * printerdrake.pm: fixed not_edit for lpr mode of printerdrake.
-
- * share/Cards+: fixed Savage2000 entry.
-
-2000-10-03 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-10-03 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: updated bad card with Rage Mobility card.
-
- * live_install: added test of root user, abort if not root.
-
-2000-10-03 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/po/fr.po: fixed bug #518 and fixed other misc errors
-
-2000-10-03 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-10-02 François Pons <fpons@mandrakesoft.com>
-
- * diskdrake.pm (Resize): fix to make ext2resizing work a little
- better
-
- * install_steps.pm: fixed installation of urpmi configuration.
-
- * detect_devices.pm: updated comment about UltraDMA66/100
- management.
-
- * modules.pm: updated comment about UltraDMA66/100 management.
-
- * diskdrake.pm: adding a cylinder for the minimum of the resize
- and if there is nothing to do for resize, simply return.
-
- * install_any.pm: added missing require pkgs.
-
-2000-10-02 Pixel <pixel@mandrakesoft.com>
-
- * many files: remove many lnx4win special cases which are not
- needed anymore
-
- * any.pm (addUsers): grpuser output goes to Mr Dave
-
- * bootloader.pm (install_lilo): change the default color of menu
-
- * install_steps_interactive.pm (choosePackages): add 300MB choice
- in desktop
-
- * mouse.pm (fullnames): fix i18n fix
-
- * install_steps.pm (miscellaneous): don't add ide2=0x... for
- ultra66 (otherwise chmouel is not happy, so is hdc being hde)
-
- * Xconfigurator.pm (main): add handling of icewm logout
-
- * c/stuff.xs.pm: changed the stepping of "Progressing installing package"
-
-2000-10-02 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm (main): infos are written only when needed.
- * netconnect.pm (intro): connection checking now works.
-
-2000-10-02 Chmouel Boudjnah <chmouel@mandrakesoft.com>
-
- * pci_probing/pcitable: s|snd-card-via686a|via82cxxx_audio|; like
- jeff request.
-
-2000-09-30 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-30 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm: a LOT of bugs fixed. draknet is now completely
- brok^H^H^H^Hfrozen.
-
-2000-09-29 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-29 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm (adsl_conf): dhcp should better work.
-
- * network.pm (configureNetwork): remove connection script if a
- gateway is given.
-
- * common.pm (setVarsInShMode): created. chmod the file with
- permissions passed in argument.
-
-2000-09-29 François Pons <fpons@mandrakesoft.com>
-
- * modules.pm (load): fixed when standalone, use modprobe.
-
- * pkgs.pm: added preference for wu-ftpd.
-
- * detect_devices.pm: added code to proble USB printer.
-
- * printer.pm: fixed missing PRINTER=yes on CUPS configuration for
- USB printer.
-
- * install_steps.pm: removed possibilty to add an user in urpmi
- group (jloup).
-
- * install_steps_interactive.pm: log if CD not ejectable.
-
-2000-09-29 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/compssList: sync with latest packages
-
- * install_steps_interactive.pm (selectLanguage($)): s/42/43/ in
- MandrakeSoft physical address
-
-2000-09-29 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-29 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm (intro): detection of internet
- configuration/connexion state.
-
- * network.pm (write_resolv_conf): better "ppp temp nameserver" in resolv.conf
-
-2000-09-28 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm (load_thiskind): add read_already_loaded cuz of
- pcmcia
-
-2000-09-28 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/compssList: add nasty DrakSync and DrakProfile with 50 0 50
-
-2000-09-28 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-28 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (choosePackages): the minimum is 25
- in beginner, not 10
-
- * pkgs.pm (readCompssUsers): fix reading description
-
- * install_steps.pm (afterInstallPackages): remove the code to
- handle RPM-GPG-KEYS
-
-2000-09-28 dam's <damien@mandrakesoft.com>
-
- * interactive_gtk.pm (ask_from_list_with_helpW): no more theme
- parsing, no more draknet.rc
-
- * netconnect.pm (read_net_conf): no adsl tree anymore.
-
- * netconnect.pm: drakgw called if enough card are installed.
-
- * netconnect.pm: minor bugs correction.
-
-2000-09-28 François Pons <fpons@mandrakesoft.com>
-
- * Makefile.config: added livedrake for drakxtools.
- * diskdrake.pm: use corrected partition size when resizing a dos
- partition (like the others).
- * install_any.pm: no more pnm2ppa packages and others in package
- to copy when changing CD.
- * live_install: exec live_install2 instead.
- * live_install2: contains post live upgrade stuff now.
- * printerdrake.pm: protect set_help() usage by if $::isInstall,
- removed reference to package pnm2ppa and others.
- * standalone/livedrake: initial release for drakxtools.
-
-2000-09-28 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-28 Pixel <pixel@mandrakesoft.com>
-
- * install_interactive.pm (partitionWizardSolutions): fix the limit
- cases for lnx4win
-
- * share/po/Makefile ($(PMSCFILES)): fix the DrakX.pot generation
-
-2000-09-27 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (choosePackages): set $size2install
- to $availableC in desktop install, as it should be
-
- * install2.pm (choosePackages): remove the code for removing kdesu
- in high security...
-
- * install_steps_interactive.pm (createBootdisk): format more
- nicely the text
-
- * install_steps_gtk.pm (installPackages): add 10 seconds to have a
- better estimation
-
- * install_steps_interactive.pm (chooseGroups): now returns a boolean
- (choosePackages): use chooseGroups return value to redo
- choosePackages
-
- * install_steps_gtk.pm (selectMouse): if mouse type is none, then
- don't test!
-
- * Xconfigurator.pm (monitorConfiguration): rename Unlisted to Custom
-
- * various: replace all Rescue by Update
-
- * pkgs.pm (readCompssUsers): read description for groups
-
- * install_steps_interactive.pm (chooseGroups): add description for
- groups
-
-2000-09-27 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/compssUsers.desktop: added description
-
- * share/compssUsers: added description
-
- * share/compssUsers.desktop: added icon support, reordered,
- renamed
-
- * share/compssUsers: reordered, renamed
-
-2000-09-27 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-27 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (selectLanguage): intregrate
- license again
-
- * pkgs.pm (readCompssUsers): reads compssUsers.meta_class
-
- * diskdrake.pm (Create): replace ``ne "i386"'' by ``!~ /i.86/''
- (as should be)
-
- * install_steps_gtk.pm (selectInstallClass1): if @$l (list of
- install classes) contains only one element, call
- install_steps_interactive::selectInstallClass1
-
- * install_steps_interactive.pm (choosePartitionsToFormat): fix for
- "no partitions selected to format"
-
- * my_gtk.pm (_create_window): alt-e now *toggles* expert/newbie
-
-2000-09-27 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * share/compssList: more for gnupg, -11 for sucking things,
- changed compss-groups to be less than 70.
-
- * share/compssUsers: modified compssUsers with Warly, added
- compssUsers.desktop, simplified for KD (now uses Graphical
- Desktop/KDE instead of listing all relevant packages)
-
-2000-09-27 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm (get_info_adsl_providers, read_adsl_providers):
- Created. adsl provider tree.
- (set_net_conf): better informations storing.
-
- * my_gtk.pm (new): windows are always centered if standalone.
-
-2000-09-27 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: added option "sw_cursor" for S3 Trio3D. fixed
- 3D hw acceleration for i815 (VideoRam). prefer XF3 for all
- NeoMagic cards.
- * install_gtk.pm: re-enabled themes on live upgrade but without
- modifying background image.
- * install_steps_gtk.pm: fixed missing help.
- * live_install: lot of fixes to enable DrakX font, keep upgraded
- system clean (libperl.so which allows graphical login).
- * pkgs.pm: added function allowedToUpgrade to filter kernel
- package.
-
-2000-09-27 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-27 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (configureX): if `clicked' don't go
- to auto mode
-
- * Xconfigurator.pm (monitorConfiguration): fix the translated
- 'Generic' which is not so (and must not be so) anymore
-
-2000-09-26 Pixel <pixel@mandrakesoft.com>
-
- * pkgs.pm: remove all Unskip code
-
- * my_gtk.pm (_create_window): add shortcut alt-e to switch to
- expert
-
- * Xconfigurator.pm (resolutionsConfiguration): fix for setting
- legal resolution
-
- * install_steps_interactive.pm (selectLanguage): use formatAlaTeX
- on the license
-
-2000-09-26 François Pons <fpons@mandrakesoft.com>
-
- * fs.pm: added mounting of swap partition when mounting them
- all (this can help :-)
- * pkgs.pm: fixed correction size code to make (really) a true
- bijection between corrected and rpm size.
-
-2000-09-26 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-26 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (selectLanguage): integrate the
- license (temporary one)
-
- * modules.pm (write_conf): fix the /etc/modules generation
-
- * interactive_gtk.pm (ask_many_from_listW): if more than 5 entries
- in icon format, use scrollbar. In non-icon format, use scrollbar
- for more than 11 entries.
-
- * commands.pm (bug): add ddcxinfos
-
- * pci_probing/pcitable: replace tulip by de4x5 for 2104x cards
-
-2000-09-26 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: added more 3D Rage Pro card for 3D
- acceleration with Utah-GLX (Rage Mobility, Rage XC/XL),
- modified identification for checking acceleration.
- * install_any.pm: added automatic installation (up 60) for
- OpenGL games if a graphic card MAY BE accelerated.
- * live_install: fixed perl idioms in pure shell script and added
- packdrake symlink if not already installed.
- * share/compssList: changed level to -1 for all needing 3D hw
- acceleration packages.
-
-2000-09-26 dam's <damien@mandrakesoft.com>
-
- * network.pm (write_resolv_conf): write temp dns line to be used
- with new initscripts package. Use to set dns live.
-
-2000-09-26 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-26 Pixel <pixel@mandrakesoft.com>
-
- * mouse.pm (read): catch exception if fullname2mouse fails (eg:
- old FULLNAME format)
-
-2000-09-25 Pixel <pixel@mandrakesoft.com>
-
- * share/MonitorsDB: merge with latest redhat MonitorsDB
-
- * pci_probing/pcitable: major merge with latest redhat pcitable
-
- * share/Cards+: added "Intel 815", renamed "Rage 128 (generic)" to
- "Rage 128", added "Rage 128 Mobility"
-
- * install_any.pm (getAvailableSpace): keep 10% of free space on
- big partitions
-
- * Xconfigurator.pm (readMonitorsDB): don't translate Generic
- (otherwise, only a part is translated, see MonitorsDB for the
- non-translated part)
-
- * interactive.pm (ask_many_from_list): fix sorting
-
- * install_gtk.pm (test_mouse): smaller box to fit in 640x480
-
- * install_steps.pm (afterInstallPackages, beforeInstallPackages):
- RPM-GPG-KEYS is copied before installing packages
-
- * pkgs.pm (readCompssUsers): handle icons in compssUsers
-
- * common.pm (truncate_list): ensure the list is not too big
-
- * install_steps_gtk.pm (choosePackagesTree): restrict the list to
- 20 elements if it is too big (use truncate_list)
-
-2000-09-25 François Pons <fpons@mandrakesoft.com>
-
- * bootloader.pm: add Video mode for entry.
- * fs.pm: updated for live upgrade.
- * install2.pm: dropped unuseful steps filtering.
- * install_any.pm: fixed wrong Device3Dfx package name and clean
- postinstall rpms directory on upgrade before filling it.
- * install_gtk.pm: removed window restrictions of live upgrade.
- * install_steps.pm: fixed initrd symlink following in case of
- upgrade.
- * install_steps_gtk.pm, install_steps_interactive.pm: keep always
- upgrade on live upgrade.
- * modules.pm: may fixed pcmcia lost driver (typically on network).
- * pkgs.pm: fixed (uggly?) usage of floating perl data on perl
- script :-)
- * printer.pm: back to "Generic PostScript" for default printer (jloup).
- * printerdrake.pm: make sure an expert can choose among available
- devices.
-
-2000-09-25 dam's <damien@mandrakesoft.com>
-
- * network.pm (write_resolv_conf): write '# ppp temp entry adsl' in
- /etc/resolv.conf if needed.
-
- * netconnect.pm : adsl connection does'nt need any dns anymore.
-
- * netconnect.pm (read_net_conf): created. draknet now stores and
- reload the config.
-
- * netconnect.pm (main): if the user is french and uses french
- keyboard, don't ask his country.
-
-2000-09-25 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm: added 8139too
-
- * share/Cards+: GeForce2 DDR is handled by driver "nv"
-
- * Xconfigurator.pm (main): in killall X for Xdrakres, also killall
- kdm/xdm/gdm/autologin :)
-
-2000-09-25 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-25 dam's <damien@mandrakesoft.com>
-
- * network.pm (configureNetwork): Warn user if he already
- configured the interface.
-
-2000-09-24 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm (mergein_conf): created. call read_conf, fills
- %modules::conf and set $modules::scsi
-
-2000-09-24 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw (fatal_quit($)): add log of reason of fatal_quit
-
-2000-09-24 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-24 Pixel <pixel@mandrakesoft.com>
-
- * commands.pm (bug): use first floppy drive instead of fd0 hard
- coded (nice for LS120's)
-
- * install_steps_gtk.pm (selectMouse): if device changed, do the
- test
- * standalone/mousedrake: fix for serial mice
- * install_steps_interactive.pm (selectMouse): fix for serial mice
-
-2000-09-23 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm (conf_network_card): now displays the modules of
- detected ethernet cards.
-
-2000-09-22 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm (main): calls drakegw.
- * netconnect.pm (get_net_device): fixed
-
-2000-09-22 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw:
- - added logs
- - added verbose mode
- - fixed wrong stopping of named in other languages than english
-
- * netconnect.pm (get_net_device): try to fix it..
-
-2000-09-22 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (selectKeyboard,
- choosePartitionsToFormat, chooseCD, installCrypto): use new ask_many_from_list
- ():
-
- * interactive.pm (ask_many_from_list): now only ask_many_from_list
- exists, obsoleting ask_many_from_list_ref and
- ask_many_from_list_with_help. More flexible and nicer
- * interactive_newt.pm (ask_many_from_listW): adapted to new
- calling type
- * interactive_gtk.pm (ask_many_from_listW): adapted to new calling
- type, handle 'shadow' and 'icon2f'
-
-2000-09-22 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm (main): if /lnx4win/i in VERSION, set $o->{lnx4win}
-
- * Xconfigurator.pm (cardConfiguration): fix setting 4MB of meg for
- i810
- (testFinalConfig): i810 is a verybad_card, aka can't test anything
- on it :-(
- (main): fork to background and stay there while waiting for the WM
- to exit
- (testFinalConfig): update the backgroung image path
-
- * interactive_gtk.pm (exit): flush X before leaving (otherwise the
- mousecursor is not restored)
-
- * run_program.pm (rooted): don't redirect the stdout and stderr to
- ddebug.log if not $::isInstall
-
- * log.pm (l): log on stdout/stderr if !isInstall and !isStandalone
-
- * modules.pm (load_raw): redirect stderr to tty5
-
- * install2.pm (main): set variable $::isInstall
-
-2000-09-22 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-22 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/drakgw: now includes information from netconnect to
- ignore the interface used for Internet connection
-
-2000-09-22 dam's <damien@mandrakesoft.com>
-
- * install_steps_gtk.pm (selectInstallClass1): pixel's typo.
-
- * netconnect.pm (get_net_device): added get_net_device to know
- which interface has been used to configure the internet connection.
- (conf_network_card): ask to restart network if dhcp too.
- (main): enable dialing when modem.
-
- * network.pm (configureNetworkIntf): changed label to warn people
- about already configured eth cards.
-
-2000-09-22 François Pons <fpons@mandrakesoft.com>
-
- * install_gtk.pm: added Desktop themes.
- * share/themes-mdk-Desktop.rc, share/themes/mdk-Desktop-bg.png:
- initial release.
- * install2.pm: moved back to all steps for live upgrade.
- * install_gtk.pm: select right logo if desktop.
- * install_steps_interactive, install_steps_gtk.pm: avoid asking if
- upgrade for a live upgrade.
-
-2000-09-22 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm: add some call to log_sizes to log the
- installed size
-
- * install_steps_gtk.pm (installPackages): beep before changeMedium
-
-2000-09-21 Pixel <pixel@mandrakesoft.com>
-
- * interactive.pm (ask_from_listf): try to call the f translation
- function on the default value with the index
-
- * install_steps.pm (afterInstallPackages): make the gpg code work,
- changed the call to
- "gpg --fast-import --homedir /etc/rpm /root/tmp/RPM-GPG-KEYS"
-
- * detect_devices.pm: cleanup and removed unused code
-
-2000-09-21 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * detect_devices.pm (getNet()): really remove plip in standalone
-
-2000-09-21 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm, netconnect.pm: changed NETWORKING reference
- from false to no.
- * printer.pm: changed timeout from 30 to 60.
- * printerdrake.pm: added wait message when waiting for cups to
- start.
- * pci_probing/pcitable: added erwan VIA Rhine board.
- * network.pm: added DHCP_HOSTNAME reference.
-
-2000-09-21 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-21 Pixel <pixel@mandrakesoft.com>
-
- * standalone/keyboarddrake: fix for XF4
-
- * Xconfigurator.pm (write_XF86Config): comment the omit
- xfree86-dga
-
- * install_steps.pm (afterInstallPackages): configure GPG public
- keyring with mandrake key
-
- * standalone/mousedrake: updated/fixed for new mouse handling
-
- * install2.pm (main): update for handling oem installs
-
- * many files: relGetFile cleanup, updated calls to getFile and
- getAndSaveFile accordingly
-
- * Xconfigurator.pm (testFinalConfig): new XFdrake-image-test.jpg
-
- * detect_devices.pm (@netdevices): plip removed in standalone,
- otherwise plip is always there (because of kmod)
-
- * install_steps_interactive.pm (choosePartitionsToFormat): replace
- the die "cancel" by die "already displayed", so that no error is
- displayed.
-
- * pci_probing/pcitable: replace some rtl8139 by 8139too, added
- cards DELTA8139 and ADDTRON8139 (for jeff)
-
- * Xconfigurator.pm (show_info): also show the colordepth and
- resolution. don't show server if none, show XF4 driver if there's
- one.
- (main): change the "Forget the changes" to "Keep the changes?"
- with displaying the current configuration.
-
-2000-09-21 François Pons <fpons@mandrakesoft.com>
-
- * printer.pm: changed "PostScript" ppd default description to "Raw
- queue (no filtering)", asked by Till.
- * Xconfigurator.pm: add log of what user select for 3D hw
- acceleration.
- * share/compssList: changed XFree86-glide-module to -2 because the
- level is the same for XFree86-Glide* which may have multiple
- different version installed due to dependancies of the first one.
-
-2000-09-21 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm (conf_network_card): added check when dhcp. Cable connection
- should now work.
-
-2000-09-21 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-21 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (exitInstall): call $o->exit if
- "Some steps are not completed"
-
-2000-09-20 Pixel <pixel@mandrakesoft.com>
-
- * bootloader.pm (install_loadlin_config_sys,
- install_loadlin_desktop): extracted from install_loadlin, do not
- call them anymore (remove it?)
- (suggest): put grub in lnx4win install
-
- * common.pm (availableRamMB): fixed (round to a multiple of 4)
-
-2000-09-20 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm (get_info_isdn_providers & read_isdn_providers):
- read file in /usr/share and $prefix/usr/share
- (isdn_write_config): corrected file to be sh compliant.
- (isdn_write_config): added default route settings for isdn.
-
-2000-09-20 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-20 Pixel <pixel@mandrakesoft.com>
-
- * pci_probing/pcitable: replace es1371 by snd-card-ens1371
-
-2000-09-20 dam's <damien@mandrakesoft.com>
-
- * Xconfigurator.pm (autologin): for urpmi, added `--best-output' and suspend/resume
-
-2000-09-20 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * standalone/printerdrake: for urpmi, added `--best-output' and suspend/resume
-
- * standalone/XFdrake: for urpmi, added `--best-output' and suspend/resume
-
-2000-09-20 dam's <damien@mandrakesoft.com>
-
- * standalone/draknet: used new package install function.
-
-2000-09-20 Pixel <pixel@mandrakesoft.com>
-
- * detect_devices.pm (isFloppyOrHD): detects wether a device is a
- floppy or not based on its size (for scsi floppy)
-
- * Xconfigurator.pm (testFinalConfig): check if "server" OR
- "driver" field is set (otherwise XF4 only card won't pass)
-
- * bootloader.pm (suggest): fix for ``installing the last cooker
- from kenobi:/I on an smp machine i don't get anymore an entry for
- linux-up'' (c chmouel)
-
-2000-09-20 dam's <damien@mandrakesoft.com>
-
- * netconnect.pm (read_isdn_providers): corrected typo ($_ -> $_[0])
-
-2000-09-20 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-19 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm (get_pcmcia_devices): fix (especially, now ethernet
- should be detected)
-
- * lang.pm (get_langs): created, gives rpm install langs
- * install_any.pm (setPackages): give langs::get_langs() to
- readCompssList
- * pkgs.pm (readCompssList): don't use RPM_INSTALL_LANG, use given
- $langs instead. This fixes the RPM_INSTALL_LANG=all install.
-
-2000-09-19 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * netconnect.pm: make dhcp-client, pump and such not translatable.
- Those are program names and should therefore not be translated,
- that only confuses translators
-
-2000-09-19 dam's <damien@mandrakesoft.com>
-
- * Xconfigurator.pm (autologin): corrected @users definition and
- passwd cat.
-
-2000-09-19 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-19 Pixel <pixel@mandrakesoft.com>
-
- * many files: changed some access to get_root to get_root_
-
- * install_steps_interactive.pm (choosePackages): added code for
- desktop meta_class install type
-
- * install_steps_gtk.pm (selectMouse): cleanup, give parameter
- emulate3buttons to setMouseLive
- * c/stuff.xs.pm (setMouseLive): add argument emulate3buttons
-
-2000-09-19 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * interactive*.pm: changed `suspend' and `resume' to behave as expected,
- added `enter_console' and `leave_console'
-
-2000-09-19 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-19 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm (miscellaneous): replaced LITTLE_FRIED_OIGNONS by
- META_CLASS
-
- * Xconfigurator.pm (cardConfiguration): when ddcxinfos gives false
- result (not enough VideoRam), also remove the found resolutions
- * Xconfigurator.pm (main): remove the automatic searching of
- resolutions
- * Xconfigurator.pm (resolutionsConfiguration): cleanup, remove the
- automatic searching of resolutions.
-
- * mouse.pm (fullnames): changed the `_' in `[' before Other
- (nicer, uh?)
-
- * install2.pm (selectMouse): changed clicked to !first_time
-
-2000-09-19 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-19 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm (testFinalConfig): remove the bloody prototype
-
-2000-09-19 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-18 Dam's <damien@mandrakesoft.com>
-
- * Xconfigurator (autologin): do it eve, if newbie. Autologin is
- now in separated function.
-
-2000-09-18 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm (testFinalConfig): don't skip the test in auto
- if called via "Test again"
- * Xconfigurator.pm (resolutionsConfiguration): ensure all depth
- are bounded
-
- * bootloader.pm (suggest): don't put "linux-nonfb" if "linux" is
- classic and no-fb
-
- * fsedit.pm (check_mntpoint): add a check for /etc /lib... which
- must not be mount points. Also check that /home, /tmp and /usr are
- on trueFS
-
- * interactive.pm (ask_from_entries_ref): add bounding of "val" in
- case of type "range". die if min > max.
-
-2000-09-18 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-18 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (choosePartitionsToFormat): nicer
- partition/device display
-
- * partition_table_raw.pm (zero_MBR): add on the fly require of the
- good partition_table_$type
-
- * detect_devices.pm (cdroms): fix (yet again) the scd$nb device
- assignment to ide burners
-
- * install_steps.pm (afterInstallPackages): comment out a part of
- the icons mess messing
-
- * Xconfigurator.pm (cardConfiguration): move Unlisted to
- Other/Unlisted
- * share/CardsNames: updated (for Voodoo5)
-
- * install_steps_gtk.pm (selectMouse): fix the test to know wether
- the guy has changed the mouse type (to know wether to test the
- mouse or not)
-
- * install_steps_interactive.pm (selectLanguage): add the license
-
- * install_steps_interactive.pm (choosePackages): have the
- "Recommended" size be the default
- (in the choice Minimum/Recommanded/Complete)
-
- * diskdrake.pm (Type): fix a typo
-
- * install_steps.pm (doPartitionDisksAfter): mark partition as
- mounted
-
-2000-09-17 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-17 Pixel <pixel@mandrakesoft.com>
-
- * install/pcmcia_config.patch: cleaned
-
- * diskdrake.pm (Create, Type): have type field not_editable
-
- * tools/make_mdkinst_stage2: use TMPDIR if available
-
-2000-09-16 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (choosePartitionsToFormat): move
- the setting of toFormat before asking for bad blocks, seems to fix
- things?? weird :-/
-
- * network.pm (miscellaneousNetwork): fix the setting of focus on
- error (tx2Thomas Poindessous :)
-
- * install_steps_interactive.pm (configurePrinter): changed
- "Cancel" to "None" (for Thomas Poindessous :)
-
- * printer.pm (poll_ppd_base): max polling time raised from 10s to
- 30s (for Till)
-
- * install_steps.pm (ask_mntpoint_s): don't force partition type to
- be ext2 (at least if it's a known fs) (for Warly)
-
-2000-09-15 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-15 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (set_help): save the help message displayed
- in $o->{current_help}
- * install_gtk.pm (create_big_help): display $o->{current_help}
-
- * mouse.pm: reworked quite a lot. Now sorts/categorize nicely the mice.
- * install_steps_interactive.pm (selectMouse): adapted for reworked mouse.pm
- * install2.pm (selectMouse): adapted for mouse::read now returning
- an hash ref
-
- * detect_devices.pm (hasMousePS2): remove hasMouseMacUSB, do it in
- one function (now takes the device in the parameter)
-
- * interactive.pm (ask_from_treelistf): added (just like
- ask_from_listf, but with a tree)
-
- * Xconfigurator.pm: the reference is now nbuttons to
- know wether to put Emulate3Buttons or ZAxisMapping.
- * Xconfigurator.pm (cardConfiguration): install Glide_V3-DRI on
- Banshee too.
-
- * Xconfig.pm: guess nbuttons based on Emulate3Buttons and
- ZAxisMapping.
-
- * common.pm (availableRamMB): replace availableRam, now use the
- size of /proc/kcore (what else to find the real ramsize?)
-
- * common.pm (cat__): created
-
- * install2.pm (main): add field meta_class in $o. Can be
- 'desktop', in case option desktop is given, or if /desktop/i is
- found in /VERSION
-
- * install_steps.pm (miscellaneous): for lnx4win, always have
- 'mem=' (so that the initrd is visible by both windows
-
- * install2.pm (main): add option "desktop"
-
- * install_any.pm (generate_ks_cfg): fix for new(?) $o->{intf} format
-
- * install_interactive.pm (partitionWizardSolutions):
- use only TrueFS for existing_part
- (partitionWizard): have only "loopback" for lnx4win
-
- * pci_probing/pcitable: associate Voodoo5 with Voodoo5
-
- * share/Cards+: add Voodoo5
-
- * bootloader.pm (suggest): add entry linux-nonfb (called linux-up
- for smp)
-
-2000-09-14 DrakX <install@mandrakesoft.com>
-
- * snapshot uploaded
-
-2000-09-12 François Pons <fpons@mandrakesoft.com>
-
- * detect_devices.pm, mouse.pm: moved probing serial port before to
- detect a wacom tablet (even if a PS/2 or USB mouse is found).
- * help.pm: corrected reference to previous version of LM (jloup).
- * install2.pm: removed duplicate code for getting network
- configuration, using network module.
- * netconnect.pm: intf is now a hash and no more an array.
- * network.pm: changed nature of intf to hash from array, reworked
- write_resolv_conf function to keep old code in comment but only
- when not used anymore (to make it easier by hand modification).
- * printer.pm: SOCKET accessible to expert only (jloup).
- * printerdrake.pm: local port only available for expert if a
- printer has been detected (jloup).
-
-2000-09-11 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: reorganized choices of 3D optimizations, added
- experimental support for expert users.
- * install_steps_interactive.pm: removed question to keep XF3.
-
-2000-09-05 François Pons <fpons@mandrakesoft.com>
-
- * printerdrake.pm: removed all previous URI specific mode and
- added socket and expert URI general mode.
- * printer.pm: fixed bugs, start lo interface before cups.
-
-2000-09-04 François Pons <fpons@mandrakesoft.com>
-
- * printerdrake.pm: added pnm2ppa and lm110 support in cups
- configuration. probe for printer device (parallel) and try to
- install usb for printer.
- * printer.pm: removed local printer configuration for cups (keep
- only local configuration using URI).
-
-2000-09-01 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: fixes to configure XF86Config-4 when XFree-3.3
- is installed, make 16bits by default on 3D hardware acceleration,
- fixed selection of hardware for hardware acceleration.
- * install_steps.pm: add cups for printer configuration, used for
- auto_install. added new function to add packages only if requires
- are already satisfied.
- * standalone/printerdrake: updated.
-
-2000-08-31 dam's <damien@mandrakesoft.com>
-
- * moved many things to network.pm and any.pm
- * everything should be broken now.
-
-2000-08-31 François Pons <fpons@mandrakesoft.com>
-
- * install2.pm: removed printer default config (now obsoleted).
- * install_steps_interactive.pm: add cups support.
- * printerdrake.pm: add cups support.
- * printer.pm: add cups support.
-
-2000-08-31 Frederic Lepied <flepied@mandrakesoft.com>
-
- * install_any.pm (setPackages): install the right glide module
- according to the Voodoo card detected.
-
- * Xconfigurator.pm (write_XF86Config): ZAxisMapping for XF 4.
- (autoDefaultDepth): default depth to 16 for Voodoo cards except
- for Voodo5 ones.
-
-2000-08-29 dam's <damien@mandrakesoft.com>
-
- * moved pppConfig in netconnect.pm and any.pm
- * moved miscellaneousNetwork in any
- * modem configuration is now useable in standalone mode.
-
-2000-08-29 David BAUDENS <baudens@mandrakesoft.com>
-
- * install_steps_interactive.pm: change Small/Normal/Full ->
- Minimum/Recommanded/Complete (aka make FredB happy)
-
-2000-08-28 dam's <damien@mandrakesoft.com>
-
- * draknet (netconnect): renamed drakfuck -> draknet. standard ADSL
- and french alcatel ADSL implemented.
- * Xconfigurator.pm (autologin) : use of the new autologin system.
-
-2000-08-24 François Pons <fpons@mandrakesoft.com>
-
- * ../update_kernel*: changed reference from extract_archive to
- packadrake.
- * Makefile*: added live_install and live_install2.
- * Xconfigurator.pm: updated Mach64 acceleration to only 3D Rage
- Pro AGP card type, commented SiS and S3ViRGE support by GLX.
- * commands.pm, keyboard.pm, lang.pm, pkgs.pm, list, tools/*:
- updated to use packdrake now.
- * install2.pm, install_steps.pm, install_steps_gtk, Makefile*:
- manage live upgrade.
- * modules.pm: use standard modprobe command for load in live
- upgrade.
- * netconnect.pm: added minimal modification for being compilable.
- * rescue/list: added packdrake and sfdisk.
- * live_install, live_install2: live upgrade of package.
-
-2000-08-22 dam's <damien@mandrakesoft.com>
-
- * drakfuck (netconnect):finished isdn PCI/ISA card implemetation
- * added isdndb.net: providers database
-
-2000-08-20 dam's <damien@mandrakesoft.com>
-
- * moved Netconnect.pm to netconnect.pm
- * moved DrakFuck to drakfuck
-
-2000-08-18 Pixel <pixel@mandrakesoft.com>
-
- * share/Cards+: for i810, force VideoRam
-
-2000-08-18 dam's <damien@mandrakesoft.com>
-
- * modules.pm: added isdn type in @drivers_by_category. corrected
- load_thiskind (thx pixel) : it's not unsafe anymore
- * Netconnect.pm: just display PCI isdn card recognized.
-
-2000-08-17 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm: many cleanup. moved some functions to common,
- any or install_interactive (newly created)
-
-2000-08-16 dam's <damien@mandrakesoft.com>
-
- * install_steps_interactive.pm(configureNetwork): added call to
- isdn configuration
- * added standalone/DrakFuck: standalone entry point to configure
- internet connexion.
- * added Netconnect.pm: internet connexion functions.
-
-2000-08-11 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (selectInstallClass): yet a bigger
- warning so that people don't choose expert installs. Also set the
- focus on "Custom" by default.
-
- * install_steps_interactive.pm (doPartitionDisks): created, calls
- the wizard.
- * install_steps.pm (doPartitionDisksBefore,
- doPartitionDisksAfter): created (was mainly in
- install2::doPartitionDisks)
- * install2.pm (doPartitionDisks): much cleanup
- * install_any.pm (partitionWizard): working state (still rough)
-
-2000-08-08 Pixel <pixel@mandrakesoft.com>
-
- * standalone/rpmdrake (AddMedia): fix the ftp addmedia, fix the
- cdrom addmedia
-
-2000-08-07 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake.pm (Resize):
- * install_steps_gtk.pm (doPartitionDisks): remove the
- before_leaving ensuring the filehandle is closed
- * resize_fat/main.pm (DESTROY): use a better solution for ensuring
- the filehandle is closed
-
-2000-08-07 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: added SiS6326 in the list of chipset that
- needVideoRam, reported on ml.
- * install_steps.pm: fixed auto install of printer.
-
-2000-08-06 Pixel <pixel@mandrakesoft.com>
-
- * interactive.pm (ask_from_listf): created this GREAT function
- that should have been created a long time ago.
- * any.pm, install_any.pm, install_steps_gtk.pm,
- install_steps_interactive.pm: a lot of rewrite to use the new
- ask_from_listf, a lot of nice cleanup!
-
- * fs.pm (df): created, returns the free space of the part. Save it
- in $part->{free}
-
- * install_steps_gtk.pm (doPartitionDisks): ensure the closing of
- the device in case of error
- * resize_fat/main.pm (new): ensure the closing of the device in
- case of error
-
- * install_any.pm (partitionWizard): the great partitioning wizard
- is created. Not finished yet (nor called from anywhere)
-
- * install_steps.pm (doPartitionDisksLnx4win): created function out
- of doPartitionDisks
-
- * install_steps_gtk.pm (installPackages): removed the displaying
- of size to install (people are bothered cuz not the same size)
-
-2000-08-06 dam's <damien@mandrakesoft.com>
-
- * install_steps_gtk.pm (create_steps_window): use drawing area
- instead of button. Implemented all steps events.
-
-2000-08-05 Pixel <pixel@mandrakesoft.com>
-
- * mouse.pm (detect): test a hack for usb mouse via hub
- (sparhawk@enteract.com)
-
- * fsedit.pm (undo): force isDirty and needKernelReread only if hd
- hasBeenDirty, otherwise believe the flag saved
- * partition_table.pm (write): flag hd as hasBeenDirty
-
- * install2.pm: a few renaming of methods so that the step names
- correspond to install2 function and install_steps* methods (eg:
- configureX & setupXfree unified to configureX)
-
-2000-08-04 dam's <damien@mandrakesoft.com>
-
- * any.pm (setAutoLogin): added this method to write xdm-config
- * Xconfigurator.pm: clenead autologin code and use of above method
-
-2000-08-04 Pixel <pixel@mandrakesoft.com>
-
- * pkgs.pm (setSelectedFromCompssList): save $nb to able to restore
- it in case of max_size reached. only purpose is the log!
-
- * install_steps_interactive.pm (choosePackages): in newbie, ask
- between Small/Medium/Full install
- * install_steps_interactive.pm (choosePackages): in expert, have
- the min_mark be 0 instead of 1
-
- * common.pm (find_index): added this nice function
-
- * install_any.pm (getAvailableSpace_mounted): use common::df
- * loopback.pm (getFree): use common::df
- * commands.pm (df): use common::df
- * common.pm (df): added
-
- * diskdrake.pm (Resize)): add resizing of reiserfs
- * share/list.i386: add resize_reiserfs
-
-
-2000-08-02 dam's <damien@mandrakesoft.com>
-
- * Xconfigurator.pm : autologin is functionall. When wmsession.d is
- more up to date, I'll add the list of wm to launch at boot. It
- writes in /etc/X11/xdm/xdm-config.
-
-2000-08-01 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm (miscellaneous): modify as chmouel want (aka, ""
- instead of "no" for MOUSE and KEYBOARD in sysconfig/usb)
-
- * services.pm: separation between interaction and action.
- * install_steps.pm (servicesConfig): the job is now done here
- * install_steps_interactive.pm (servicesConfig): only the asking
- part
-
-2000-08-01 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: fixed the below fixe, now ok.
- * Xconfigurator.pm: fixed a bug for using default card flags
- setting, add support for GeForce DDR for both 3.3 and 4.0.
- * pci_probing/pcitable: fixed NV15 (GeForce2) card entry, now use
- XFree 3.3 as unsupported in XFree 4.0.
- * share/Cards+: added "NVIDIA GeForce2 DDR (generic)".
-
-2000-07-31 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: fixed provided package with choice in deps used with a
- base package, complicated but kernel-fb or similar can be
- unselected now.
-
-2000-07-27 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: changed expert message to ask
- using XFree 3.3 instead of XFree 4.0 used by default (server).
- * Xconfigurator.pm: make sure only one server is installed,
- default to XFree 4.0 if supported unless XFree 3.3 accept
- 3D acceleration and not XFree 4.0, ask user in such case.
- * pci_probing/pcitable: added Intel 815 pci ids.
-
-2000-07-26 dam's <damien@mandrakesoft.com>
-
- * install_steps_gtk.pm: applied new LN stars, logo title and help
- logo. improved steps appearences.
- * modified share/step-*.xpm
- * added share/help.xpm
- * updated ../HACKING to ling help logo.
-
-2000-07-21 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: enable 3D acceleration configuration with
- XFree86, use /usr/X11R6/lib/modules/glx-3.so for X version 3
- Utah-GLX accelerated module.
-
-2000-07-20 dam's <damien@mandrakesoft.com>
-
- * Xconfigurator.pm: use {miscellaneous}{autologuser} instead of
- {miscellaneous}{autologuser} + {miscellaneous}{autologing}.
- * move some README content to ../HACKING
-
-2000-07-19 dam's <damien@mandrakesoft.com>
-
- * Xconfigurator.pm: added autologin boxes.
- result is in {miscellaneous}{autologin} and in
- {miscellaneous}{autologuser}
-
-2000-07-19 François Pons <fpons@mandrakesoft.com>
-
- * any.pm: added default root to existing root device when adding
- an entry in bootloader.
- * bootloader.pm: avoid duplicating entry (floppy and old-floppy)
- when they are identical.
- manage hackkernel by suggest an entry by default if installed.
- * install_steps.pm: reworked symlink closure for bootloader
- to keep previous configuration.
-
-2000-07-11 François Pons <fpons@mandrakesoft.com>
-
- * bootloader.pm: merged lilo.pm and silo.pm inside bootloader.pm,
- this include a configure_entry from silo.pm to build a initrd if
- used.
- * share/compssList: added kde2 packages.
- * share/compssUsers: added kde2 group, renamed kde to kde1 group
- specific.
-
-2000-07-07 François Pons <fpons@mandrakesoft.com>
-
- * install2.pm (choosePackages): always execute setPackage to copy
- hdlist* and depslist files (support mixed partitionDisks and
- choosePackages).
- * install_any.pm (setPackages): avoid clearing upgrade flag.
- * install_steps.pm (choosePackages): use $first_time to avoid
- reselection of packages according to compssList.
- * install_steps_interactive (choosePackages): use $first_time and
- $individual to avoid reselection of packages according if user go
- back to step choosePackages.
- * pkgs.pm: added psUpdateHdlistsDeps to restore hdlist* and
- depslist files in /var/lib/urpmi.
- * diskdrake.pm: fixed uneditable combo for Mount point action.
-
-2000-06-23 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: better approach for Sun* server in newbie.
- * fs.pm: added romfs support for mount.
- * fsedit.pm: changed auto allocation for partitions for sparc*.
- * install2.pm: restored bootdisk creation and auto install boot
- disk creation for sparc*.
- * install_any.pm: changed vfat to romfs when mounting kickstart
- floppy on sparc*.
- * install_steps.pm: avoid proposing formating sunos partition.
- * install_steps_interactive.pm: boot disk for sparc* and support for
- installation of SILO on /boot partition (sparc*).
- * install_steps_newt.pm: removed cylinder 0 bug warning.
- * interactive.pm: fixed typo for not_edit set to 1 by default.
- * partition_table.pm: fixed get_holes on sparc* where a whole disk
- partition caused problems.
- * partition_table_sun.pm: removed cylinder 0 bug as found in mke2fs.
- * silo.pm: handle /boot partition, install silo.conf in /boot and
- make a symlink from /etc.
- * share/list.sparc: added losetup and genromfs for boot disk creation.
-
-2000-06-21 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lang.pm: changed the way console font data is written; not all
- of the [0], [1], [2] values must defined, so three cases must be used.
- Also added a variable $CHARSET for /etc/sysconfig/i18n; it can then
- be used by console-tools to load the proper compose table
-
-2000-06-20 François Pons <fpons@mandrakesoft.com>
-
- * c/sbus.c: added some functions for silo.c integration.
- * c/silo.c: initial release including write in prom, and translation
- of disk name from openprom to linux, rh version modified.
- * silo.pm: added write in prom, support of sunos boot from silo.
- * partition_table.pm: added support for ufs partition like windows one.
- * install_steps_interactive.pm: added other entries in silo.
- * install_steps.pm: support sunos partition.
- * install_any.pm: automatically mount sunos partition with diskdrake.
- * fsedit.pm: added /mnt/sunos suggested mount point.
- * fs.pm: added ufs support for mount.
-
-2000-06-19 François Pons <fpons@mandrakesoft.com>
-
- * crypto.pm: modified for getting sparc crypto file for sparc*.
- * modules.pm: make sure to load sd_mod when needed.
- * pci_probing/main.pm: always use loaw_endian in pci structs.
- * pci_probing/translate-pcitable.pl: added arch specific module name
- translation.
-
-2000-06-16 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm (write_conf): rename conf.modules to modules.conf if
- needed. Outputs to modules.conf
-
- * detect_devices.pm (cdroms): fix using scd0 for ide-burners when
- already a scsi cdrom drive
-
-2000-06-13 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * pkgs.pm: added 'acon' requirement for all right-to-left languages
-
-2000-06-07 François Pons <fpons@mandrakesoft.com>
-
- * diskdrake.pm: added SunOS partition as blue for diskdrake.
- * install_steps_interactive.pm: make sure of no division by zero may
- happen.
- * install_steps_newt.pm: added WARNING for fdisk on sparc*.
- * modules.pm: make sure of loading sd_mod module after any scsi module.
- * sbus_probing/main.pm: insmod openprom before trying sbus probing.
- * pkgs.pm: corrected by use of parabolic solution for size approximation.
- * silo.pm: try with "silo -p 2 -t" if "silo -t" has failed due to bad probe.
-
-2000-06-05 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * install_steps.pm,lang.pm: added load_console_font, to load the
- proper console fonts (text mode install is not very useful otherwise)
-
-2000-06-03 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake.pm (Create): don't accept less than 32MB part for reiserfs
- * diskdrake.pm (Type): don't accept less than 32MB part for reiserfs
-
-2000-06-01 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/fonts.tar.bz2: replaced the Korean 16pt fonts by a 12pt font;
- it fits better with the other fonts. Added a 'README' file with
- some comments and the required copyright notice
-
-2000-05-29 François Pons <fpons@mandrakesoft.com>
-
- * Xconfigurator.pm: added support for SBUS card autodetection.
- * commands.pm: added lssbus to list SBUS devices detected.
- * detect_devices.pm: removed alpha restriction on USB.
- * install_steps_interactive.pm: added SBUS support.
- * c/sbus.c: initial revision, core SBUS support (inspired from kudzu).
- * c/stuff.xs.pm: added wrapper for sbus.c interface.
- * sbus_probing/main.pm: initial revision (inspired from kudzu).
-
-2000-05-27 Adam Lebsack <adam@mandrakesoft.com>
-
- * share/list.ppc: various PPC modifications, for HFS
- * partition_table_mac.pm: bug fixes
- * partition_table.pm: various HFS fixes, isHiddenMacPart()
- * diskdrake.pm: added HFS to top buttons when run on PPC
- * keyboard.pm: fixed name of mac-fr2-ext keymap
- * install_steps_gtk.pm: added Xpmac server support for PPC.
- * install_steps_interactive.pm: disallow hardware configuration on PPC for
- now. All drivers should be in the kernel. setup_this_kind().
- * fsedit.pm: fixed verify_hds for PPC, /proc/partitions will never match
- our partition table read. Added PPC grep condition for PPC in get_visible_fstab.
- * fs.pm: fix argument for HFS formatting.
- * Makefile: special installation of PPC files.
-
-2000-05-25 Chmouel Boudjnah <chmouel@mandrakesoft.com>
-
- * standalone/drakboot: Don't display Configure-/LILO/GRUB/ on
- alpha|sparc.
-
-2000-05-25 François Pons <fpons@mandrakesoft.com>
-
- * silo.pm: added configure_entry to try creating an initrd for an image
- entry in bootloader. fixed wrong usage of run_programm::rooted with 2>.
- * commands.pm: fixed insmod command to take modules64.cz* on sparc*
- * install2.pm: removed create boot disk and create auto install disk on
- sparc*. force writing of /etc/conf.modules for step setupBootloader.
- * install_steps.pm: fixed upgrade for sparc* and disable supermount for sparc*.
- * install_steps_interactive.pm: added missing $prefix for glob_. call
- configure_entry in setupSILO. fixed cancel or None entry on setupBootloader.
- * modules.pm: updated alias for sparc*.
- * any.pm: fixed proprable wrong test for setupBootloader in beginner at
- the very beginning.
- * printer.pm: fixed typo.
- * Xconfigurator.pm: avoid testing if using a Sun* server, added depth and
- resolution for these server too.
-
-2000-05-24 François Pons <fpons@mandrakesoft.com>
-
- * partition_tabel.pm: fixed wrong detection of DOS partition on sparc*.
- * partition_table_sun.pm: fixed a bug when reading partition table
- with unused partition in the middle of the table.
-
-2000-05-23 François Pons <fpons@mandrakesoft.com>
-
- * common.pm: update arch to take into account sparc and sparc64. added
- better_arch and compat_arch function.
- * silo.pm: fixed adding new kernel automatically.
- * install2.pm: removed create boot disk stuff for sparc*.
- * install_steps.pm: added initrd generation for alpha. added ldconfig
- at end of installation. removed /usr/bin/dumpkeys existence test on
- sparc*, should be added in the future.
- * install_steps_interactive.pm: removed supermount for sparc*.
- * install_steps_gtk.pm: added /dev/kbd device creation and permedia2
- support for sparc*. removed screen limit of 1024x768.
- * detect_devices.pm: fixed problem on machine with really no IDE interface.
- * modules.pm: added support for 32 and 64 bit architectures on sparc*.
- * install_any.pm: fixed getAvailableSpace_mounted if /usr is not a separate
- partition.
- * pkgs.pm: added support for multi-arch rpm file (need for sparc*),
- fixed correctSize and invCorrectSize to take back a linear approximation
- above 9Gb approximatively. removed ftp rewind as broken currently.
- * keyboard.pm: fixed bad list of available keyboard (broke sparc*), fixed
- globing (removed) against existing '*'.
- * partition_table.pm: removed support for non SUN partition table, as it
- may freeze the kernel or may be blanked?
- * Xconfigurator.pm: take Sun24 server by default on sparc*, add support
- for permedia2 card (3DLabs server).
- * share/list.sparc: added perl-5.6.0 for sparc*, fixed for sparc*.
- * Makefile: added support for modules and modules64 for sparc*.
- * c/stuff.xs.pm: added kernel_arch function for getting the current true
- architecture provided by the kernel (uname -m).
-
-2000-05-09 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (kdeicons_postinstall): the URL link to doc must
- be $lang/index.html, not only $lang.
-
- * standalone/mousedrake: add handling of XF86Config-4
-
- * any.pm (setupBootloader): fix bug (was adding 2 glob_'s)
-
-2000-05-08 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm (main): move the touch of some files here to please linuxconf
-
- * install2.pm (miscellaneous): s/KBD/KEYBOARD/
-
- * lilo.pm (install_grub): don't keep symlinks for reiserfs
- * lilo.pm (suggest): allow grub everytime now (not only if !reiserfs)
-
- * install_any.pm (getHds): default mount point for windobe in
- lowercased for StartOffice(!)
-
-2000-05-08 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/keyboards.tar.bz2: Fixed Brazilian keyboard (.br); added
- Iranian (.ir), Arabic (.ar) and new Lithuanian (.lt_new) keyboards
- * keyboard.pm: Added new Lithuanian keyboard and changed the
- string for brazilian ABNT-2 to state more clearly its ABNT nature
- (it is not a standard PC keyboard; it uses some different keycodes)
-
-2000-05-07 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm (choosePackages): return availableCorrected
- instead of available
-
- * pkgs.pm (correctSize): add 18MB for full multi-cd (many hdlist's)
-
- * modules.pm (text2driver): same as text2lang below
- * keyboard.pm (text2keyboard): same as text2lang below
- * lang.pm (text2lang): replace the while (... each) by a foreach
- (keys) (because each is dangerous if loop is exited)
-
- * install_steps_interactive.pm (selectKeyboard): better handling
- of multiple langs question.
-
- * ftp.pm (new): Timeout set to 60 (seconds), was default (120)
-
- * install_steps_interactive.pm (setup_thiskind): remove ide-*
- from modules displayed as loaded.
-
-2000-05-06 Pixel <pixel@mandrakesoft.com>
-
- * fsedit.pm (check_mntpoint): verify that standard mntpoints (/
- /usr) are not on not trueFS
-
- * any.pm (setupBootloader): add $prefix for the 2 glob_'s
-
-2000-05-07 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * share/keyboards.tar.bz2: added Ukrainian keyboard xmodmap.ua
-
-2000-05-06 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * printerdrake.pm: fixed English error
-
-2000-05-05 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm (monitorConfiguration): remove the special case
- for fbdev.
-
- * install_steps_interactive.pm (setup_thiskind): replace return by
- next in case load_module fails.
-
- * install_steps_gtk.pm (selectInstallClass1): translate Install/Upgrade
-
- * Xconfigurator.pm (cardConfiguration): force xf4 for rage 128's
- * Xconfigurator.pm (testFinalConfig): force $bad_card for xf4
-
- * pkgs.pm (correctSize): updated for 7.1
-
- * install_any.pm (getAvailableSpace): move the removing of
- $minAvailableSize here.
-
-2000-05-04 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm (configurePrinter): give clicked to printerConfig
-
- * interactive.pm (ask_from_entries_ref): set default val if not_edit
-
- * interactive_newt.pm (ask_from_entries_refW): remove setting of
- default val. Now done in interactive::ask_from_entries_ref
-
- * interactive_gtk.pm (ask_from_entries_refW): handle empty value
-
- * modules.pm (read_already_loaded): ensure that already loaded
- modules are put in %loaded.
- * modules.pm (load_ide): add loading if ide-probe-mod (for new kernel)
-
- * lilo.pm (install_lilo): truncate label's to 15 chars
-
- * install_any.pm (generate_ks_cfg): fix missing space
- * install_any.pm (generate_ks_cfg): fix bug for nfs comand
-
- * install2.pm: get rid of autoformat
- * install_steps.pm (choosePartitionsToFormat): get rid of autoformat
-
-2000-05-03 Pixel <pixel@mandrakesoft.com>
-
- * any.pm (setupBootloader): replace ask_many_from_list by
- ask_from_list for bootloader choice
-
- * services.pm (drakxservices): stop immediately service if removed
-
- * install_steps.pm (configureNetwork): replaced dhcpxd by dhcpcd
- * install_steps.pm (afterInstallPackages): touch some files to
- please linuxconf
-
-2000-05-03 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm: updated min size, fixed kppprc generation.
- * install_any.pm: make sure postinstall-rpm is here before
- erasing (avoid error on reboot only).
-
-2000-05-02 Pixel <pixel@mandrakesoft.com>
-
- * raid.pm (format_part): don't call raid::make if part is already
- formatted (as raidstop fails)
-
- * Xconfigurator_consts.pm: Rage128 and 3dfx are not available any
- more
-
- * install_steps_interactive.pm (setup_thiskind): make insmod'ing
- fail a simple warning.
-
- * Xconfigurator.pm (readMonitorsDB): adapt to new MonitorsDB
- * share/MonitorsDB: take new one from RedHat
-
- * standalone/drakboot: added kfloppy
-
- * g_auto_install: add $dir/lib to LD_LIBRARY_PATH (it was silly
- not to have it)
-
-2000-05-01 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (setRootPassword): remove
- NIS_server, use NIS instead
- * install_any.pm (setAuthentication): remove NIS_server, use NIS instead
-
- * standalone/rpmdrake (AddMedia): hdlist.cz2 instead of hdlist
-
-2000-04-28 Pixel <pixel@mandrakesoft.com>
-
- * install_steps.pm (afterInstallPackages): fix yet another bug for
- ttf from windobe handling
-
- * install_steps_interactive.pm (selectInstallClass): hide beginner
- mode in corporate. Display special help.
-
-2000-04-29 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * my_gtk.pm: added call to Gtk->init; that makes 16 bit locales
- text to be properly aligned (reported by Craig Chang
- <craig_chang@taipei.siscomm.com.tw>)
- * common.pm: now that po handling is correct, I changed the order
- of reading variables so that it follows the standards ($LANGUAGE first)
- * share/fonts.tar.bz2, lang.pm: added an 8pt font for cp1251
-
-2000-04-28 François Pons <fpons@mandrakesoft.com>
-
- * install_steps*.pm: added support for selection of package during
- upgrade the same way it is done for installation. added check of
- minimal size, abort else (at least let the user know about :-)
- fixed crypto if no network interface available.
- * install2.pm: fixed problem during upgrade that lost network
- configuration.
-
-2000-04-28 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm (load_raw): don't call commands::insmod, do it in
- place. Merge with load_multi
-
- * install_steps.pm (afterInstallPackages): fix windobe ttfonts
- symlinking
-
- * Xconfigurator.pm (cardConfiguration): load module agpgart for
- i810
-
- * install_any.pm (getHds): changed the mount point setting for
- windows partitions as device_windobe is not unique
-
-2000-04-27 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (create_steps_window): changed to adapt to
- new hidden format
-
- * install2.pm (@installSteps): changed the way hidden is handled.
- Now it is a true perl expression (great power now)
-
- * install_steps_gtk.pm (selectInstallClass1): update steps window
- before asking normal/devel/server. Nicer!
-
- * install_steps_interactive.pm (configureNetwork): when "Cancel"
- pressed at network interface configuration do not skip all
- configuration.
-
-2000-04-26 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm (pppConfig): modified a lot, removed template
- file for ifcfg and chat file.
-
-2000-04-26 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (choosePackagesTree): use a fix width for
- the tree column (so that the checkbox are always visible without
- scrolling)
-
- * standalone/drakboot: drakfloppy and gfloppy are X only, no need
- to propose them in console
-
- * install_any.pm (relGetFile): added auto_inst to files to get
- from Mandrake/base
-
- * install2.pm (main): changed auto_inst behaviour
-
- * standalone/adduserdrake: fix a bug (s/$o/$in/g)
-
- * interactive_newt.pm (ask_from_entries_refW): now handling
- complete/changed/focus_out callbacks (at least more than before)
-
- * Newt/Newt.xs: added rough callback handling
-
-2000-04-25 François Pons <fpons@mandrakesoft.com>
-
- * printerdrake.pm: added support for PPA more easily, allow
- printers entry using ppa driver event if pnm2ppa not installed,
- install it if neccessary after.
- * network.pm, install_steps.pm, install_steps_interactive.pm:
- added support for stoping a network interface, usefull for ppp0 to
- avoid using it too long.
- * install_steps.pm: fixed missing local on pap_secrets file.
-
-2000-04-25 Pixel <pixel@mandrakesoft.com>
-
- * lilo.pm (install): moved the generation of the keytable here. It
- is used by both lilo & grub (lilo is not always installed as was
- assumed)
-
- * common.pm (formatAlaTeX): remove bounding spaces
-
- * pkgs.pm (setSelectedFromCompssList): remove the hack for min
- mark 25 in beginner
- * install_steps_interactive.pm (choosePackages): set $min_mark to
- 25 in beginner
-
-2000-04-24 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (setupXfree): add a yesorno
- question for choosing between XF4 and XF3 in expert
-
- * install_steps_gtk.pm (choosePackagesTree): enlarge the tree window
-
- * install_any.pm (update_userkderc): make sure uid and gid are kept
-
- * diskdrake.pm (Create): add Extended_0x85 as a choice for expert
-
- * partition_table.pm (add_extended): handle a 3rd arg,
- $extended_type to tell which kind of extended partition is wanted
- * partition_table.pm (adjust_main_extended): in non-expert,
- automatically set extended to linux-extended if there's only
- linux-type partitions.
-
-2000-04-22 Pablo Saratxaga <pablo@madrakesoft.com>
-
- * install_steps_interactive.pm: s/Mb/MB/ as 'b' is symbol for bit
- and not for byte. RAM is expressed in megabytes -> MB
-
-2000-04-19 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: fixed crazy mutli CD manipulation.
- * printer.pm: fixed wrong prototype of print_pages.
- * install2.pm: set version to 7.1 for crypto stuff.
- * crypto.pm: commented ackbar crypto site.
-
-2000-04-17 Pixel <pixel@mandrakesoft.com>
-
- * lilo.pm (suggest): in failsafe, runlevel ASKRUNLEVEL (handled by
- linuxconf)
-
-2000-04-14 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (choosePartitionsToFormat): don't
- ask about checking bad blocks for reiserfs, cuz not handled
-
- * fs.pm (mount): reiserfs handling
- * fs.pm (format_reiserfs): added
- * fs.pm (write_fstab): add option "notail" for reiserfs if
- the partition holds the kernel (/boot or /)
-
- * partition_table.pm (isTrueFS): added, replaces most occurences
- of isExt2
-
-2000-04-12 François Pons <fpons@mandrakesoft.com>
-
- * install2.pm: force installation step if package have been
- selected on step choose packages.
- * install_any.pm: protected against die in perl (setstep or
- theme_changed).
-
-2000-04-11 François Pons <fpons@mandrakesoft.com>
-
- * resize_fat: added some limits verification.
- * interactive_gtk.pm: corrected swap of arg with help adding.
-
-2000-04-10 François Pons <fpons@mandrakesoft.com>
-
- * interactive_gtk.pm, my_gtk.pm: added tooltips for ask_from_list,
- which is used by printerdrake only. drops key bindings.
-
-2000-04-07 François Pons <fpons@mandrakesoft.com>
-
- * tools/serial_probe: obsoleting pnp_serial which is now replaced
- by this one, taken from kudzu, really faster and probe all serial
- devices at one time. modified to probe correctly modem :-)
- * mouse.pm: updated to use serial_probe interface of
- detect_devices.pm.
- * detect_devices.pm: modified to use serial_probe, cache probed
- devices to avoid reprobing.
-
-2000-04-06 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm, install_steps.pm: added support
- for peerdns options of ppp, so removed dns address unless expert.
-
-2000-04-05 François Pons <fpons@mandrakesoft.com>
-
- * crypto.pm, install_steps_interactive.pm, install2.pm,
- install_steps.pm: added crypto stuff to support hdlist-crypto.cz2
- and depslist-crypto. dependancies are not supported but with a
- simpler format of depslist file where closure are not done and
- only package name are used for dependancies.
- * pkgs.pm: added better support for multi CD manipulation,
- including selection and refus.
-
-2000-04-04 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm: modified selection packages from compssList by
- incremental selection, much more quickly.
- added selected medium for selecting a package.
- * install_any.pm: refused media hash transfered to selected value
- of media table.
- @needToCopy list should only have package of default medium.
-
-2000-04-03 Pixel <pixel@mandrakesoft.com>
-
- * fs.pm (format_ext2): add options "-b 1024 -O none" for alpha
-
-2000-03-31 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_gtk.pm: made changeMedium sub modification
- permanent.
- * pkgs.pm: modified upgrade to avoid use of header.
-
-2000-03-31 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * keyboard.pm: some more choices for PPC keyboards
-
-2000-03-30 François Pons <fpons@mandrakesoft.com>
-
- * install2pm: added eval around loading af_packet and postinstall
- copy of RPMS.
- * devices.pm: added /dev/kdb for SPARC.
- * install_any.pm: modified multi CD management, postinstall copy
- of RPMS.
- * install_steps_gtk.pm: added support for Xsun server for SPARC.
- * install_steps_interactive.pm: added multi CD dialog box for
- selecting CD available. Serialized ethernet configuration and ppp
- configuration.
- * pkgs.pm: added check for infinite recursion for bad depslist.
- * printer.pm: better test for reparse of printerdb.
- * Xconfigurator.pm: added support for Xsun server for SPARC.
-
-2000-03-30 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (choosePackagesTree): enhance tree selection
-
-2000-03-29 Pixel <pixel@mandrakesoft.com>
-
- * interactive_gtk.pm (wait_messageW): add some padding (nicer)
-
- * install_steps_interactive.pm (generateAutoInstFloppy): created,
- creates a floppy for auto installs.
-
- * install_any.pm (generate_ks_cfg): created, generates stage1
- ks.cfg file
-
- * share/po/DrakX.pot: added special comment for grub entry
-
-2000-03-28 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (selectKeyboard): sort langs for
- many-lang install
-
- * mouse.pm (write): add WHEEL telling if a wheel mouse is there
-
-2000-03-28 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * keyboard.pm: added entries for all three Armenian keyboards
-
-2000-03-26 Pixel <pixel@mandrakesoft.com>
-
- * install_any.pm (install_urpmi): full support for multi-hdlist's
-
- * pkgs.pm (extractHeaders): look for hdlist in /tmp instead of
- $prefix/var/lib/urpmi
- * pkgs.pm (psUsingHdlists): put hdlist's in /var/lib/urpmi with a
- fake name. Access via /tmp/$hdlist is given for non-fake name
-
- * detect_devices.pm (hasHPT): return undef if no htp (silly me :-/)
-
-2000-03-25 Pixel <pixel@mandrakesoft.com>
-
- * lilo.pm: updated to the new format of entries. It was an hash.
- Now the key is field kernel_or_dev, and entries is an array.
-
- (get): added, it returns the entry using a kernel
- (needed because entries is no more a hash)
-
- * install_steps_interactive.pm (setupLILO): adapted to the new format
-
- * Xconfigurator.pm (write_XF86Config): basic XF86Config-4 handling
-
- * fsedit.pm (suggest_part): if suggested part contains a field
- "hd", ensure the partition is created on this hard drive
-
- * install2.pm (main): before leaving installation, remove
- /var/lib/urpmi if urpmi not installed
-
- * diskdrake.pm (Resize): ext2resize to size $part->{size} instead
- of $size
-
-2000-03-24 Pixel <pixel@mandrakesoft.com>
-
- * detect_devices.pm (hasHPT): added. Now nice handling of hpt366
- (ultra66) without rebooting and making special floppy :)
-
- * lilo.pm (install_grub): much better grub configuration (better
- than lilo's :pp)
-
- * install_steps.pm (setupBootloaderBefore): remove entry floppy
- for security > 3
-
-2000-03-23 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (selectMouse): added, takes care of telling
- the X server if the user changed the mouse type. Only done if
- a serial mouse is chosen.
-
- * install_steps_newt.pm (doPartitionDisks): add a call to
-
- * mouse.pm (write): added "device=" in etc/sysconfig/mouse for
- devfs (it looses the symlink /dev/mouse)
-
-2000-03-22 Pixel <pixel@mandrakesoft.com>
-
- * pci_probing/pcitable: replace Server:Rage128 by proper XFree entry
-
-2000-03-20 François Pons <fpons@mandrakesoft.com>
-
- * detect_devices.pm, fs.pm, install_any.pm: added supports for
- LS-120 floppy drive and icons on desktop of KDE (untested).
- * printer.pm, printerdrake.pm: added supports for PPA interface in
- new rhs-printfilters, always enable "Print text as postscript"
- option for such printers.
-
-2000-03-20 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * keyboard.pm: changed XKB name for Swedish keyboard
- changed XKB names for Russian and German keyboards
- added a choice for "Croatian" keyboard
- * share/compss{,List}: added various new locales-*, ispell-*
- and netscape-* files. changed ppa to pnm2ppa.
-
-2000-03-17 François Pons <fpons@mandrakesoft.com>
-
- * install_steps.pm: added setup for all configured queue.
- * install_steps_interactive.pm: modified for retrieving packages
- or current configuration.
- * printer.pm: correction, tested retrieve of printer
- configuration without printtool comments in printcap file: added
- update of entry according to gsdriver used (untested again).
- * printerdrake.pm: better handling of cancel, manage of multiple
- queue definition together (as lp|My printer).
-
-2000-03-16 François Pons <fpons@mandrakesoft.com>
-
- * install_steps_interactive.pm: moved in printerdrake.pm the test
- of printer usage.
- * printerdrake.pm: heavy modification to handle multiple queue,
- corrected some bugs too, added much more features as printtool.
- * printer.pm: added more features for filter, allow printer to be
- retrieved without help of printtool id in printcap file (untested).
-
-2000-03-14 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake.pm (Loopback): handling of the file loopback: test
- existence of the file and take its size.
-
-2000-03-14 François Pons <fpons@mandrakesoft.com>
-
- * install_any.pm: corrected for duplicate file on other CD.
-
-2000-03-13 Pixel <pixel@mandrakesoft.com>
-
- * detect_devices.pm (floppies): don't return hash but the device name
-
-2000-03-13 François Pons <fpons@mandrakesoft.com>
-
- * pkgs.pm, install_any.pm: small correction for multiple media
- installation.
- * tools/syncrpms: added for handling synchronisation of multiple source
- rpm directories (and multiple target), include cleaning.
- * tools/closurepkgs: tools to get rpm that may be installed by DrakX
- after normal packages installation (printer, network, X11...), may
- be used to duplicate on other CD some important stuff of the first
- one.
-
-2000-03-12 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_interactive.pm (choosePackages): compute the
- max_size very simply (sum of all package sizes), otherwise too costly
-
- * pkgs.pm (install): call cleanHeaders at the end
- * pkgs.pm (cleanHeaders): created
-
- * install2.pm (miscellaneous): /etc/msec/init.sh is now
- /usr/sbin/msec (yoann thanks for not telling :pp)
-
- * pkgs.pm (install): remove the $prefix of mountpoints for not
- enough room to install error message
-
-2000-03-11 Pixel <pixel@mandrakesoft.com>
-
- * my_gtk.pm (_create_window): add callback on focus to
- ensure_focus. The result is no more 3 focus states with 2 buttons.
-
- * interactive_gtk.pm (ask_from_treelistW): better keyboard handling
-
- * raid.pm (make): check the result of mkraid. Suggest raidtools
- are missing in standalone diskdrake
-
- * devices.pm (set_loop): created, searches for an available
- loopback and sets the file to it
-
- * lilo.pm (dev2grub): fixed a missing slash
-
- * interactive_gtk.pm (wait_message_nextW): do not update if same
- message, otherwise silly gtk won't do anything and we'll wait
- forever :(
-
-2000-03-10 François Pons <fpons@mandrakesoft.com>
-
- * *.pm: heavy modification to take into account multiple media
- installation.
-
-2000-03-10 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm (@install_classes): cleanup, no more i18n (is now in
- install_steps_interactive), remove old entries
-
-2000-03-09 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm (write_conf): don't add alias block-major-11 in every case
- * modules.pm (add_alias): special case oss (post-installs modprobe snd-pcm-oss)
-
- * fs.pm (format_*): move the @options before the device
-
- * loopback.pm: created, added a lot of stuff for loopback in
- diskdrake.pm, fs.pm...
-
-2000-03-08 Pixel <pixel@mandrakesoft.com>
-
- * partition_table.pm: %type2fs replaced ox402 by 0x402
-
- * detect_devices.pm (cdroms): fix "scd" (should be "scd0")
-
- * install_any.pm (install_urpmi): update for new hdlist.cz2
-
-2000-03-07 Pixel <pixel@mandrakesoft.com>
-
- * interactive_gtk.pm (ask_from_treelistW): s/focus_row/set_focus_row/
-
- * install_steps_interactive.pm (addUser): force add a normal user
- for security 4
-
-2000-03-05 Pixel <pixel@mandrakesoft.com>
-
- * my_gtk.pm (_ask_from_list): replace focus_row with set_focus_row
- (tis the Gtk-Perl 0.7002 was of doing)
-
-2000-03-04 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm (write_conf): add ide-floppy to the modprobes of
- post-install supermount
-
-2000-03-03 Pixel <pixel@mandrakesoft.com>
-
- * commands.pm (ps): add RSS to ps command
-
-2000-03-02 Adam Lebsack <adam@mandrakesoft.com>
-
- * mouse.pm: added mac mouse detection to mouse::detect.
- * detect_devices.pm: added a routine to probe /dev/usbmouse on macs.
-
-2000-03-01 François Pons <fpons@mandrakesoft.com>
-
- * *.pm: heavy modification to take into account smaller
- transaction during installation.
- still a lot of test to perform, no provides updated currently and
- building of hdlist.cz2 and depslist.ordered need old files...
- nothing done for hdlist.gz during post installation, but
- hdlist.cz2 is already copied in /var/lib/urpmi [and is used during
- installation of packages as extract_archive need a true file].
-
-2000-03-01 Pixel <pixel@mandrakesoft.com>
-
- * lilo.pm (install_grub): creation
-
- * network.pm (write_interface_conf): ONBOOT = !pcmcia
-
- * install_steps_gtk.pm (new): more intelligent SIGCHLD handler
-
-2000-02-29 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm: moved common network stuff from "net" to "network"
- (modules like nfs lockd...)
-
- * fs.pm (write_fstab): moved the sort to the right place
-
- * services.pm (drakxservices): chkconfig --list is i18n'ed :(
- set LANGUAGE=C before
-
- * partition_table_raw.pm (get_geometry): geom{cylinders} must not
- be a decimal value :)
-
- * install_steps_gtk.pm (create_logo_window): set_name logo for
- logo window
- * share/install.rc: force disabling of background image theme
-
- * install_steps_gtk.pm (enteringStep): add step information for
- console 1
-
- * any.pm (addKdmIcon): new function
- * install_steps.pm (addUser): handle field icon
- * install_steps_interactive.pm (addUser): add choice of kdm icon
- * standalone/adduserdrake: add choice of kdm icon
-
- * diskdrake.pm (ask_all_data...): change for easier i18n
-
- * install_steps.pm (miscellaneous): add CLEAN_TMP handling
- (need cleaning?)
- * install_steps_interactive.pm (miscellaneous): add CLEAN_TMP
- option in expert
- * install2.pm (miscellaneous): add CLEAN_TMP option for
- /etc/sysconfig/system
-
- * install_steps_interactive.pm (miscellaneous): forbidden
- useSupermount if high security.
-
- * mouse.pm (detect): fix bug (ttyS instead of ttyS0)
-
-2000-02-28 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (createXconf): do not use "Generic VGA" for
- svga and accel. SVGA also wants 16 bpp. added ugly modeline for
- 800x600.
-
- * partition_table_raw.pm (get_geometry): when the
- HDIO_GET_IDENTITY fails, defaults to what GETGEO gave
-
- * install2.pm (main): use modules::load_multi to increase boot
- start time
-
- * modules.pm (load_multi): added this function for loading many
- modules at once.
-
- * install_steps_gtk.pm (new): increase time before timeout
-
- * detect_devices.pm (cdroms): change the device associated with
- ide-burners (hdX -> scdX). Problem is how to know the X in scdX :(
-
- * modules.pm (write_conf): sort scsi_hostadapter's
-
-2000-02-27 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm (main): load ide-probe and the like in 'prereq' type
- so no aliases are added to conf.modules
-
-2000-02-25 Pixel <pixel@mandrakesoft.com>
-
- * devices.pm (make): small code cleanup
-
- * partition_table_raw.pm (adjustEnd): more explicit error message
-
- * fsedit.pm (allocatePartitions): fix a bug (size was getting too
- big after each allocation) making adjustEnd cry
-
-2000-02-24 Pixel <pixel@mandrakesoft.com>
-
- * interactive_gtk.pm (new): added the "new" method to initialize
- windowheight for isStandalone
-
- * install_steps_gtk.pm (new): returns undef in case no X server
- works
-
- * install2.pm (main): moved the ejectCdrom from install_steps::END
- to here
- * install2.pm (main): fix the $SIG{SEGV} handler
- * install2.pm (main): added a "try again" in text install if the
- "new" fails
-
- * install_steps_interactive.pm (createBootdisk): fix an error for
- non fdX choice of floppy drive
-
- * install_steps_interactive.pm (setup_thiskind): remove the
- "defined @l"
-
-2000-02-23 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm (%suggestedPartitions): remove any /boot entries
- * install2.pm (selectInstallClass): removed the special code to
- /boot entries from suggestedPartitions for on non-intel (and it
- was buggy :)
- * fsedit.pm (@suggestions): remove the /boot entry
- * fsedit.pm (check_mntpoint): remove the 1024 cylinder check
- * fsedit.pm (suggest_part): remove the 1024 cylinder special case
-
- * install_steps_interactive.pm (setupLILO): replace linear option
- by lba32
-
- * lilo.pm (suggest): add lba32 by default
-
- * install_steps_interactive.pm (load_thiskind): moved the HPT
- stuff to install_any::ultra66 and call it.
- Add sound card configuration (3 lines :)
-
- * my_gtk.pm and interactive_gtk: resize the list and tree based on
- root window size
-
- * install_steps_gtk: $width and $height goes $::rootwidth and
- $::rootheight, also other dimensions goes global (main::)
-
- * commands.pm (strings): replace the typo \{$n,} by {$n,}
-
-2000-02-23 François Pons <fpons@mandrakesoft.com>
-
- * build_archive, extract_archive: changed format of TOC to speed
- up extraction of archive, now 5 to 6 times faster to read TOC :-)
-
-2000-02-22 Pixel <pixel@mandrakesoft.com>
-
- * Xconfigurator.pm: load "Cards" database only to translate NAME
- to fields. Added file CardsNames created from Cards using
- share/Cards2CardsNames. Kind of list of normalized NAMEs
-
- * MonitorsDB: replace the ` ' separator for vendor by `|'
-
- * install_steps_interactive.pm (timeConfig): use ask_from_treelist
-
- * interactive_gtk.pm (ask_from_treelist): creation of
- ask_from_treelist. Usage is just the same as ask_from_list with
- one more argument (the separator eg: |, /)
-
-2000-02-21 François Pons <fpons@mandrakesoft.com>
-
- * diskdrake.pm: fixed deadlock while trying to create partition
- when available space is equal or less than 2 cylinders. fixed
- Create action on corrupted partition by removing stalling window.
- Blocked partition table writing if there are error by forcing user
- to correct partition table.
- * partition_table.pm: fixed typo in verifyParts with cdie, added
- verifyParts on Resize action.
-
-2000-02-21 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (create_big_help): display the help in full
- screen
-
- * my_gtk.pm (_create_window): add big help on F1
-
- * common.pm (add2hash): now returns the first parameter
-
- * mouse.pm (detect): really defaults to serial mouse
-
- * interactive.pm: add ask_many_from_list_with_help and
- ask_many_from_list_with_help_ref
-
- * services.pm: creation, it handles what was in
- standalone/drakxservices
-
-2000-02-18 Pixel <pixel@mandrakesoft.com>
-
- * install_steps_gtk.pm (createXconf): added /dev/ (X wants
- "/dev/psaux" and not "psaux")
-
- * diskdrake.pm (Create): show start sector even for non-expert on
- non-i386
-
-2000-02-16 Pixel <pixel@mandrakesoft.com>
-
- * mouse.pm (detect): add defaults to serial mouse
-
- * install_steps_gtk.pm (createXconf): remove the defaults to
- serial mouse
-
-2000-02-15 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake.pm: "After %s partition %s," inlined otherwise does
- not please pablo and translators...
-
-2000-02-14 Pixel <pixel@mandrakesoft.com>
-
- * diskdrake.pm (Create): hide start sector choice for non-expert
-
-2000-02-11 Pixel <pixel@mandrakesoft.com>
-
- * partition_table_raw.pm (get_geometry): do not use the cylinder
- number given by HDIO_GETGEO cuz limited to 16bits. Compute using
- the total_sectors using HDIO_GET_IDENTITY
-
- * c/stuff.xs.pm: added total_sectors (gives the number of sector
- of a drive)
-
- * modules.pm (load): ignore error in loading prereq's
-
- * modules.pm (@drivers_by_category): rcpci instead of rcpci45,
- z85230 added
-
- * commands.pm (mount): add modules::load_deps otherwise the
- fs::mount won't succeed insmoding vfat if needed
-
-2000-02-11 François Pons <fpons@mandrakesoft.com>
-
- * fixed diskdrake to handle limit case when creating and resizing
- partition table, address size limit and start sector limit.
-
-2000-02-11 Pixel <pixel@mandrakesoft.com>
-
- * install2.pm (main): add a callback on SEGV
- -> message printed
- -> that way, ENDs are called (otherwise skipped)
-
- * install_steps_interactive.pm (setup_thiskind): handles the undef
- value returned by load_thiskind
-
- * install_steps_interactive.pm (exitInstall): do not call
- install_steps::exitInstall
-
- * install_steps (exitInstall): removed
- * install_steps (END): added (it does ejectCdrom)
-
- * install_steps_interactive.pm (load_thiskind): returns undef if
- error loading a module
-
- * fs.pm (format_part): changed the prototype from $;$@ to $;@
- otherwise, @options always have a value (mostly undef) and mkdosfs
- fails (with "mkdosfs", "/dev/hdXX", undef, "-F", 32)
-
- * install_steps_interactive.pm (setup_thiskind):
- add a $auto_probe_pci that overrules $o->{auto_probe_pci}
- (that way no pci probe the second time)
-
-2000-02-10 François Pons <fpons@mandrakesoft.com>
-
- * heavy modification of build_archive and extract_archive to manage
- a TOC directly in archive file, handle bzip2 or gzip compression,
- extract_archive can extract multiple files a time, with minimal
- invocation of uncompress program and follow symlink and expand
- directory contents.
- * use build_archive/extract_archive for locales.
- * fixed a min/max in install_steps_gtk for Resize/Create partition.
- * fixed adjustEnd with dos partition table, take care of magic 63
- sectors at beginning of partitions, a more solid method should be
- used for that.
-
-2000-02-10 Pixel <pixel@mandrakesoft.com>
-
- * modules.pm (load_thiskind): skip modules "unknown" and "ignore"
-
-2000-02-09 Pixel <pixel@mandrakesoft.com>
-
- * partition_table.pm (add): cdie if maximum number of partitions
- handled by linux is reached
-
- * Xconfigurator.pm (chooseResolutionsGtk): display the graphic
- card or server found
-
- * install_any.pm (relGetFile): for mdkinst files, take care not to
- have a double '/' (see debbugs #591)
-
- * install_steps_interactive.pm (configureNetwork):
- purpose: add ability to configure both modem and lan
- clean up the behaviour
-
- * fs.pm (write_fstab):
- purpose: sort the fstab per mount point (cuz /usr must be before /usr/local)
- also: rewrite of the part writing the fstab.
diff --git a/perl-install/Makefile b/perl-install/Makefile
index 5124e60e3..24ddca843 100644
--- a/perl-install/Makefile
+++ b/perl-install/Makefile
@@ -1,47 +1,27 @@
-PACKAGE=drakxtools
-PKGVERSION:=$(shell rpm -q --qf '%{VERSION}\n' --specfile $(PACKAGE).spec|head -n 1)
-RELEASE:=$(shell rpm -q --qf '%{RELEASE}\n' --specfile $(PACKAGE).spec|head -n 1)
-TAG := $(shell echo "V$(PKGVERSION)_$(RELEASE)" | tr -- '-.' '__')
-
include ../Makefile.config
include Makefile.config
+PACKAGE = drakxtools
+PKGVERSION = $(VERSION)
+
POFILES = $(shell ls share/po/*.po)
MOFILES = $(POFILES:%.po=%.mo)
-DISTFILES = *.pm $(PMS_DIRS) Makefile Makefile.config drakxtools.spec serial_probe share/po share/diskdrake.rc $(STANDALONEPMS) standalone/icons standalone/man/C/* pixmaps pixmaps/langs standalone/interactive_http rpcinfo-flushed.c share/rpmsrate standalone/convert standalone/finish-install.xsetup standalone/service_harddrake.sh
OTHERS = $(OTHERDIRS) $(OTHERFILES)
OTHERDIRS = tools/serial_probe
OTHERFILES = tools/rpcinfo-flushed.c
-STAGE1 = ../mdk-stage1
-
-USE_PCMCIA := n
-ifeq ($(ARCH),i386)
-USE_PCMCIA := y
-endif
-ifeq ($(ARCH),x86_64)
-USE_PCMCIA := y
-endif
-
-.PHONY: all $(DIRS) install clean stage2 full_stage2
-
-all: list_modules.pm TAGS $(DIRS)
-
-up:
- (cd ..; cvs up;cd -;make localsrpm;up /home/tv/rpm/SRPMS/drakxtools-$(PKGVERSION)-$(RELEASE:).src.rpm)
+.PHONY: all $(DIRS) install clean
+all: TAGS $(DIRS)
xs: $(DIRS)
-list_modules.pm:
- ln -sf ../kernel/list_modules.pm
-
TAGS: $(ALLPMS)
- @etags -o - $^ /usr/lib/perl5/*/*/MDK/Common/*.pm | ./perl2etags > $@
+ -etags $^ /usr/lib/perl5/*/*/MDK/Common/*.pm
clean:
- for i in $(DIRS) share/po; do $(MAKE) -C $$i clean; done;:
- rm -rf auto ../drakxtools.tar.bz2 *.bak
+ for i in $(DIRS) share/po install/help/po install/share/po; do $(MAKE) -C $$i clean; done;:
+ rm -rf auto drakxtools*.tar* *.bak
find . -name "*~" -o -name ".#*" -o -name "TAGS" -o -name "*.old" | xargs rm -f
check_pms_encoding:
@@ -53,174 +33,49 @@ check: check_pms_encoding
check2:
perl -I. -Mkeyboard -e 'keyboard::check'
-localcopy: clean
- rm -rf standalone/pixmaps
- $(MAKE) -C ../tools clean || :
- cd .. ; rm -rf $(PACKAGE)-$(PKGVERSION) ; cp -af perl-install $(PACKAGE)-$(PKGVERSION) ; cp -af $(OTHERS) $(PACKAGE)-$(PKGVERSION)
- cd .. ; rm -f $(PACKAGE)-$(PKGVERSION)/c/probe.c; cp -a mdk-stage1/{log.h,pcmcia_/{probe.c,*.h}} $(PACKAGE)-$(PKGVERSION)/c/
- cd
- @make nuke_perl
-
-
$(DIRS):
install -d auto
$(MAKE) -C $@
test_pms:
- perl_checker install2.pm install_steps_gtk.pm install_steps_stdio.pm partition_table/*.pm standalone/{harddrake2,diskdrake,draksec}
+ perl_checker install/install2.pm install/steps_gtk.pm install/steps_stdio.pm partition_table/*.pm standalone/{harddrake2,diskdrake,draksec}
test_pms_all:
- perl_checker $(shell echo $(ALLPMS) | perl -pe 's!(printer|share/advertising)\S+!!g')
+ perl_checker -v --generate-package-dependencies-graph .deps $(ALLPMS)
%.mo: %.po
msgfmt -o $@ $<
-install_pms: $(DIRS)
- [ -d $(DEST) ] || $(MISC_DEST)/mdkinst_stage2_tool $(STAGE2_DEST)
-
- for i in `perl -ne 's/sub (\w+?)_?(\(\))? {.*/$$1/ and print' commands.pm` sync; do ln -sf commands $(DEST)/usr/bin/$$i; done
-
- install -d $(DESTREP4PMS)
- find $(DESTREP4PMS) -name "*.pm.gz" | xargs rm -f
- for i in $(PMS); do \
- dest=$(DESTREP4PMS)/`dirname $$i`; \
- install -d $$dest; \
- perl -ne 'print' $$i > $(DESTREP4PMS)/$$i; \
- perl -pe 's/#[-+].*//; $$_ = "\n" if (/^=(head|begin)/ .. /^=cut/) || /use (diagnostics|strict|vars|warnings)/' $$i > $(DESTREP4PMS)/$$i; \
- done
-
- cp share/*.rc $(DESTREP4PMS)
- chmod a+x $(DESTREP4PMS)/install2
- chmod a+x $(DESTREP4PMS)/commands
+install_pms stage2 full_stage2:
+ make -C install $@
mo_files : $(MOFILES)
-get_needed_files: $(DIRS) mo_files
- REP4PMS=$(REP4PMS) ../tools/install-xml-file-list share/list.xml $(DEST)
- $(SUDO) chmod u-s -R $(DEST)
-
- mv -f $(DEST)/usr/{$(LIB),X11R6/$(LIB)}/*.so* $(DEST)/$(LIB)
- ../tools/simplify-drakx-modules $(DEST)/usr/*/*/*/utf8_heavy.pl
-
- cp -f $(STAGE1)/init-stage2 $(DEST)/etc/init
-
- cat share/symlinks `../tools/specific_arch share/symlinks` > $(DEST)/usr/share/symlinks
-
- perl -I. -Mlang -e 'symlink "UTF-8", "$(DEST)/usr/share/locale/$$_" foreach lang::list_langs()'
-
- perl -ane 'symlink "$$F[1]", "$(DEST)$$F[0]"' share/aliases
-ifeq (ia64,$(ARCH))
- ln -sf bash $(DEST)/bin/sh
-else
- ln -sf ash $(DEST)/bin/sh
-endif
-
- mkfontdir $(DEST)/usr/X11R6/lib/X11/fonts
- fc-cache -f $(DEST)/usr/X11R6/lib/X11/fonts
-
- for i in `ls ../kernel/all.kernels`; do cp -f ../kernel/all.kernels/$$i/modules.cz $(DEST)/lib/modules.cz-$$i; done
- ls ../kernel/all.kernels | grep '^2' > $(STAGE2_DEST)/mdkinst.kernels
-
- $(MAKE) -C share/po install SUDO= NAME=libDrakX LOCALEDIR=$(DEST)/usr/share/locale_special
-# POFILES to disable for installation:
-# be,fur: too few messages translated;
-# ta: font problem
- rm -rf $(DEST)/usr/share/locale_special/{be,fur,ta}
-
-ifeq (y,$(USE_PCMCIA))
- install -s /sbin/cardmgr $(DEST)/sbin
- cp -a /etc/pcmcia $(DEST)/etc
- ../tools/patch_pcmcia_config.pl $(DEST)/etc/pcmcia/config ../kernel/all.kernels/`cat ../kernel/RPMS/.main`/modules.dep
-endif
-
- install -d $(MEDIA_INFO_DEST)
- grep ChangeLog CVS/Entries > $(STAGE2_DEST)/VERSION
-
- cd share ; cp compssUsers.pl* rpmsrate $(MEDIA_INFO_DEST)
- clean-rpmsrate $(MEDIA_INFO_DEST)/rpmsrate $(MAIN_RPMS_DIR)
-
-full_stage2:
- $(MAKE) stage2
- $(MAKE) clp
-
-clp:
- $(MISC_DEST)/mdkinst_stage2_tool $(STAGE2_DEST)
-
-stage2:
- if [ `id -u` = 0 ]; then rm -rf $(DEST); else $(SUDO) rm -rf $(DEST); fi
- mkdir -p $(DEST)
- $(MAKE) get_needed_files
- $(MAKE) install_pms
-
-# rules to build a test rpm
-
-localrpm: localdist buildrpm
-
-localsrpm: spec_test localdist buildsrpm
-
-srpm: spec_test cvstag localsrpm
-
-localdist: cleandist localcopy tar
-
-cleandist:
- rm -rf ../$(PACKAGE)-$(PKGVERSION) ../$(PACKAGE)-$(PKGVERSION).tar.bz2
-
-spec_test:
- @if [[ -z "$(PKGVERSION)" ]]; then echo "unable to get spec version"; exit 3;fi
- @if [[ -z "$(RELEASE)" ]]; then echo "unable to get spec release"; exit 2;fi
-
-tar:
- cd ../$(PACKAGE)-$(PKGVERSION) && perl -pi -e 's/^all: help/all:/' share/po/Makefile
- cd ../$(PACKAGE)-$(PKGVERSION) && rm -rf install2.pm install_[^m]* pkgs.pm help.pm ftp.pm http.pm crypto.pm t.pm debug.log `find -name CVS`
- cd ../$(PACKAGE)-$(PKGVERSION) && mv -f Makefile.drakxtools Makefile
- cd ../$(PACKAGE)-$(PKGVERSION) && rm -f list_modules.pm && cp -f ../kernel/list_modules.pm .
- cd ..; tar cfj $(PACKAGE)-$(PKGVERSION).tar.bz2 $(patsubst %,$(PACKAGE)-$(PKGVERSION)/%,$(DISTFILES))
- cd ..; rm -rf $(PACKAGE)-$(PKGVERSION)
+# rules to build tarball
+localcopy: clean
+ rm -rf $(PACKAGE)-$(PKGVERSION)*
+ mkdir -p $(PACKAGE)-$(PKGVERSION)/tools
+ svn export -q . $(PACKAGE)-$(PKGVERSION)/perl-install
+ for i in $(OTHERS); do svn export -q ../$$i $(PACKAGE)-$(PKGVERSION)/$$i; done
+ rm -rf $(PACKAGE)-$(PKGVERSION)/perl-install/{install,unused,list_modules.pm}
+ cp -f ../kernel/list_modules.pm $(PACKAGE)-$(PKGVERSION)/perl-install
+ cd $(PACKAGE)-$(PKGVERSION)/perl-install ; mv -f Makefile.drakxtools Makefile
+ @make nuke_perl
-buildrpm:
- rpm -ta ../$(PACKAGE)-$(PKGVERSION).tar.bz2
+localdist: tar
-buildsrpm:
- rpm -ts --nodeps ../$(PACKAGE)-$(PKGVERSION).tar.bz2
+tar: localcopy
+ tar cfj $(PACKAGE)-$(PKGVERSION).tar.bz2 $(PACKAGE)-$(PKGVERSION)
+ rm -rf $(PACKAGE)-$(PKGVERSION)
# rules to build a distributable rpm
-rpm: cvstag dist buildrpm
-
-slowsrpm: spec_test cvstag dist buildsrpm
-
-dist: cleandist export tar
-
-export:
- cd ..; cvs export -d $(PACKAGE)-$(PKGVERSION) -r $(TAG) $(PACKAGE)
- cd ../$(PACKAGE)-$(PKGVERSION) && rm -rf $(OTHERDIRS) && set -x && for f in $(OTHERDIRS); do cvs -d `cat ../CVS/Root` export -r $(TAG) -d `basename $$f` gi/$$f; done
- cd ..; set -x && for f in $(OTHERFILES); do cvs -d `cat ../CVS/Root` export -r $(TAG) -d $(PACKAGE)-$(PKGVERSION) gi/$$f; done
- @make nuke_perl
-
-cvstag:
- cvs tag $(CVSTAGOPT) $(TAG)
- cd ..; cvs tag $(CVSTAGOPT) $(TAG) $(OTHERS)
-
nuke_perl:
- find ../$(PACKAGE)-$(PKGVERSION) -name '*.pm' | xargs ../tools/simplify-drakx-modules
- find ../$(PACKAGE)-$(PKGVERSION)/standalone -type f | xargs ../tools/simplify-drakx-modules
-
-dont_run_directly_stage2:
- [ -d $(DEST) ] || $(MISC_DEST)/mdkinst_stage2_tool $(STAGE2_DEST)
- echo -e '#!/bin/sh\n\nexec /usr/bin/busybox sh' > $(DEST)/usr/bin/runinstall2.sh
- chmod a+x $(DEST)/usr/bin/runinstall2.sh
- ln -sf runinstall2.sh $(DEST)/usr/bin/runinstall2
-
-trace_stage2:
- [ -d $(DEST) ] || $(MISC_DEST)/mdkinst_stage2_tool $(STAGE2_DEST)
- f=`perldoc -l Devel::Trace`; install -m 644 -D $$f $(DEST)$$f
- perl -pi -e 's|(#!/usr/bin/perl).*|$$1 -d:Trace|' $(DEST)/usr/bin/runinstall2
+ find $(PACKAGE)-$(PKGVERSION)/perl-install -name '*.pm' | xargs ../tools/simplify-drakx-modules
+ find $(PACKAGE)-$(PKGVERSION)/perl-install/standalone -type f | xargs ../tools/simplify-drakx-modules
# [pixel] for my grep looking for any .pm files
pixel_standalone_links:
rm -rf .standalone_apps.swa
mkdir .standalone_apps.swa
for i in $(STANDALONEPMS_); do ln -sf ../standalone/$$i .standalone_apps.swa/$$i.pm; done
-
-# [pixel] after make install_pms:
-# CLEAN=1 sudo perl ../tools/drakx-in-chroot /export /tmp/rr --useless_thing_accepted --kickstart install/auto_inst.cfg.local.pl
diff --git a/perl-install/Makefile.config b/perl-install/Makefile.config
index e8698a58a..46279fe92 100644
--- a/perl-install/Makefile.config
+++ b/perl-install/Makefile.config
@@ -1,20 +1,21 @@
# -*- Makefile -*-
+VERSION:=10.4.129
+
SUDO = sudo
TMPDIR = /tmp
SO_FILES = c/blib/arch/auto/c/c.so
-PMS_DIRS = Newt Xconfig c xf86misc diskdrake harddrake interactive modules network partition_table printer resize_fat security fs
-PMS = *.pm $(PMS_DIRS:%=%/*.pm) commands install2
-STANDALONEPMS_ = XFdrake adduserdrake autosetupprintqueues bootloader-config diskdrake drakTermServ drakauth drakautoinst drakbackup drakboot drakbug drakbug_report drakclock drakconnect drakedm drakfirewall drakfont drakgw drakhelp drakhosts drakids draknfs draksambashare drakperm drakproxy drakroam draksec draksound draksplash drakupdate_fstab drakups drakxservices drakxtv fileshareset finish-install harddrake2 keyboarddrake listsupportedprinters localedrake logdrake lsnetdrake mousedrake net_applet net_monitor printerdrake scannerdrake service_harddrake service_harddrake_confirm
+
+# PMS_DIRS is used only in drakxtools
+PMS_DIRS = c diskdrake harddrake interactive modules partition_table resize_fat security fs fs/remote
+
+PMS = *.pm $(PMS_DIRS:%=%/*.pm) install/*.pm install/help/*.pm install/commands install/install2
+STANDALONEPMS_ = adduserdrake bootloader-config diskdrake drakauth drakautoinst drakboot drakbug drakbug_report drakclock drakedm drakfont drakhelp drakperm draksec draksound draksplash drakupdate_fstab drakups drakxservices drakxtv fileshareset finish-install harddrake2 localedrake logdrake lsnetdrake scannerdrake service_harddrake service_harddrake_confirm
STANDALONEPMS = $(STANDALONEPMS_:%=standalone/%)
-ALLPMS = $(PMS) $(STANDALONEPMS) share/advertising/*.pl share/compssUsers.pl*
-REP4PMS = /usr/lib/libDrakX
-ROOTDEST = /export
-DEST = $(STAGE2_LIVE)
-DESTREP4PMS = $(DEST)$(REP4PMS)
+ALLPMS = $(PMS) $(STANDALONEPMS)
PERL = perl
LOCALFILES = $(patsubst %, ../tools/%,serial_probe/serial_probe xhost+)
-DIRS = c Newt resize_fat xf86misc #po
+DIRS = c resize_fat #po
CFLAGS = -Wall
override CFLAGS += -pipe
diff --git a/perl-install/Makefile.drakxtools b/perl-install/Makefile.drakxtools
index f0444da64..049eff3dc 100644
--- a/perl-install/Makefile.drakxtools
+++ b/perl-install/Makefile.drakxtools
@@ -1,10 +1,11 @@
# -*- Makefile -*-
include Makefile.config
-INLIBDEST_DIRS = Newt c resize_fat xf86misc
-HAVEINST_DIRS = share/po standalone/interactive_http
-DIRS = $(INLIBDEST_DIRS) $(HAVEINST_DIRS) harddrake printer serial_probe
+INLIBDEST_DIRS = c resize_fat xf86misc
+HAVEINST_DIRS = share/po standalone/po standalone/interactive_http
+DIRS = $(INLIBDEST_DIRS) $(HAVEINST_DIRS) harddrake printer ../tools/serial_probe
NAME = libDrakX
+XSETUPLEVEL=40
PREFIX =
LIBDIR = $(PREFIX)/usr/lib
MENUDIR= $(LIBDEST)/menu
@@ -13,32 +14,28 @@ ICONSDIR= $(DATADIR)/icons
BINDEST = $(PREFIX)/usr/bin
SBINDEST = $(PREFIX)/usr/sbin
ETCDEST = $(PREFIX)/etc/gtk
-BINX11DEST = $(PREFIX)/usr/X11R6/bin
-LIBX11DEST = $(PREFIX)/usr/X11R6/lib/X11
LIBDEST = $(LIBDIR)/$(NAME)
PIXDIR = $(DATADIR)/$(NAME)/pixmaps
INITDIR = $(PREFIX)/etc/rc.d/init.d
.PHONY: $(DIRS)
-all: rpcinfo-flushed $(DIRS)
+all: ../tools/rpcinfo-flushed $(DIRS)
$(DIRS):
install -d auto
- rm -f share/po/DrakX.pot # force rebuild of po's
[ ! -e $@/Makefile ] || $(MAKE) -C $@
install:
- mkdir -p $(BINDEST) $(ETCDEST) $(SBINDEST) $(DATADIR)/{harddrake,pixmaps,icons/{large,mini},autostart} $(BINX11DEST) $(LIBX11DEST) $(PIXDIR) $(INITDIR) $(MENUDIR)
+ mkdir -p $(BINDEST) $(ETCDEST) $(SBINDEST) $(DATADIR)/{harddrake,pixmaps,icons/{large,mini},autostart} $(PIXDIR) $(INITDIR) $(MENUDIR)
install -d $(INLIBDEST_DIRS:%=$(LIBDEST)/%)
install $(STANDALONEPMS) standalone/service_harddrake.sh standalone/convert $(SBINDEST)
- install -s rpcinfo-flushed serial_probe/serial_probe $(SBINDEST)
- ln -s ../../$(patsubst $(PREFIX)/usr%,%,$(SBINDEST))/XFdrake $(BINX11DEST)/Xdrakres
+ install -s ../tools/rpcinfo-flushed ../tools/serial_probe/serial_probe $(SBINDEST)
+ ln -s XFdrake $(SBINDEST)/Xdrakres
ln -s fileshareset $(SBINDEST)/filesharelist
mv -f $(SBINDEST)/lsnetdrake $(BINDEST)
mv -f $(SBINDEST)/drakbug $(BINDEST)
mv -f $(SBINDEST)/drakhelp $(BINDEST)
mv -f $(SBINDEST)/localedrake $(BINDEST)
- mv -f $(SBINDEST)/net_applet $(BINDEST)
install -m 644 *.pm $(LIBDEST)
for i in $(PMS_DIRS); do install -d $(LIBDEST)/$$i ; install -m 644 $$i/*.pm $(LIBDEST)/$$i/;done
@@ -48,12 +45,12 @@ install:
install -d $(PREFIX)/etc/security
echo 'RESTRICT=yes' > $(PREFIX)/etc/security/fileshare.conf
- install -D standalone/finish-install.xsetup $(PREFIX)/etc/X11/xsetup.d/finish-install.xsetup
+ install -D standalone/finish-install.xsetup $(PREFIX)/etc/X11/xsetup.d/$(XSETUPLEVEL)finish-install.xsetup
install -d $(PREFIX)/etc/sysconfig
echo 'FINISH_INSTALL=yes' > $(PREFIX)/etc/sysconfig/finish-install
for i in $(HAVEINST_DIRS); do \
- $(MAKE) -C $$i install PREFIX=$(PREFIX) SUDO= DATADIR=$(DATADIR) NAME=$(NAME) ; \
+ $(MAKE) -C $$i install PREFIX=$(PREFIX) SUDO= DATADIR=$(DATADIR) ; \
done
find auto -follow -name .exists -o -name "*.bs" | xargs rm -f
@@ -67,7 +64,6 @@ install:
rmdir $(LIBDEST)/icons/harddrake2/menu
mv $(LIBDEST)/icons/harddrake2/ $(DATADIR)/pixmaps/
mv $(SBINDEST)/service_harddrake.sh $(INITDIR)/harddrake
- install share/rpmsrate $(DATADIR)/harddrake/
mv $(SBINDEST)/convert $(DATADIR)/harddrake
mv $(SBINDEST)/service_harddrake $(DATADIR)/harddrake/
ln -s {XFdrake,$(SBINDEST)/drakx11}
@@ -78,8 +74,5 @@ install:
ln -s {localedrake,$(BINDEST)/draklocale}
ln -s {logdrake,$(SBINDEST)/draklog}
ln -s {mousedrake,$(SBINDEST)/drakmouse}
- ln -s {net_monitor,$(SBINDEST)/draknet_monitor}
ln -s {printerdrake,$(SBINDEST)/drakprinter}
ln -s {scannerdrake,$(SBINDEST)/drakscanner}
- mkdir -p $(PREFIX)/usr/share/man/man{5,8}
- for i in 5 8; do install -m 644 standalone/man/C/man$$i/* $(PREFIX)/usr/share/man/man$$i; done
diff --git a/perl-install/NEWS b/perl-install/NEWS
new file mode 100644
index 000000000..e4828f41a
--- /dev/null
+++ b/perl-install/NEWS
@@ -0,0 +1,111 @@
+- fix ext3 formatting with label and progress bar (#30032)
+
+Version 10.4.127 - 30 March 2007, by Olivier "blino" Blin
+
+- don't configure /etc/kde/kdm/kdmrc if it doesn't exist
+ (other kdmrc.rpmnew will be created, many important values will be missing)
+- finish-install: source mandriva-release profile script to get
+ correct gtk theme (Frederic Crozat)
+
+Version 10.4.126 - 29 March 2007, by Olivier "blino" Blin
+
+- use pci_domain when matching sysfs device and computing
+ sysfs device path
+
+Version 10.4.125 - 29 March 2007, by Olivier "blino" Blin
+
+- fix multiple detection of PCI network cards with the same driver (#29688)
+
+Version 10.4.123 - 26 March 2007, by Olivier "blino" Blin
+
+- blacklist ax*, rose*, nr*, bce* and scc* Hamradio devices
+ when detecting network interfaces (#28776)
+- harddrake service: fallback on the right driver for ATI gfx cards
+ when fglrx module is missing
+- introduce shared bootloader functions so that draklive-install and
+ drakboot add correct command line parameters (such as resume=)
+- use grub by default (noticeable in One install)
+
+Version 10.4.121 - 23 March 2007, by Thierry Vignaud
+
+- interactive::curses:
+ o handle multi-line labels, and wrap too long labels (#29060)
+- do not use bold&big for advanced_messages
+ (fixes authentication choice being big & ugly, #28676)
+
+Version 10.4.118 - 22 March 2007, by Thierry Vignaud
+
+- diskdrake:
+ o minimal support for switching from ntfs to ntfs-3g
+ o move ntfs in the list of "important" filesystems
+- enable to set up 32bit media on x86_64
+- fix lang configuration in KDE by writting it in current profile
+
+Version 10.4.117 - 21 March 2007, by Thierry Vignaud
+
+- detect all known TV cards (#29633)
+- harddrake service:
+ o load modules for DVB & TV cards (#29633)
+ o switch ATI cards to free driver if binary driver isn't installed
+- use http://api.mandriva.com/mirrors/$type.$version.$arch instead of simply
+ $version.$arch (useful to differentiate CorpoDesktop4)
+
+Version 10.4.116 - 19 March 2007, by Thierry Vignaud
+
+- handle more drivers (dvb, ethernet, gigabit, ide, pcmcia, sata,
+ sound, tv, usb hosts, wan, webcam, wireless)
+- diskdrake: handle mkntfs
+- localedrake: remove error running grub-gfxmenu when /boot/gfxmenu doesn't exit
+
+Version 10.4.114 - 16 March 2007, by Thierry Vignaud
+
+- do not load anymore floppy module (#23158, #25975, #28911, #29280)
+- fix testing success exit of child processes (mdkapplet)
+- localedrake: set grub gfxmenu language
+
+Version 10.4.113 - 16 March 2007, by Pascal "Pixel" Rigaux
+
+- drakboot --boot: allow choosing a non-installed bootloader
+ (ease switching from lilo to grub)
+- use grub-gfxmenu comand to configure /boot/gfxmenu for grub
+
+Version 10.4.112 - 15 March 2007, by Thierry Vignaud
+
+- die on downloading mirror list faillure
+- log using mirror API into explanations
+
+Version 10.4.110 - 15 March 2007, by Thierry Vignaud
+
+- add sizing dialog support for rpmdrake
+- do not buggily use speedstep-centrino on Core2 duo, but use it on
+ P4M (as initially intended?) (blino)
+
+Version 10.4.108 - 13 March 2007, by Thierry Vignaud
+
+- load tifm_sd if needed (#25133)
+- drakbug:
+ o fix finding package for keyboarddrake
+ o fix managing --incident MandrivaUpdate
+ o menudrake was replaced by drakmenustyle
+ o some tools were splited out of drakxtools; enable to lookup the proper package
+
+Version 10.4.105 - 9 March 2007, by Thierry Vignaud
+
+- configure "tifm_7xx1" driven card_reader (#25133)
+- enhance wrapping in some dialogs
+
+Version 10.4.104 - 7 March 2007, by Thierry Vignaud
+
+- do not bother configure old modutils
+- handle SD cards (#24054)
+- harddrake2: list SD card readers in their own category
+
+Version 10.4.102 - 6 March 2007, by Thierry Vignaud
+
+- diskdrake in text mode: when choosing a partition, "Empty space on hdx"
+ instead of "Empty" (#29087)
+- harddrake service:
+ o adapt to new nvidia drivers (#29052)
+ o when switching from nvidia to nv, do setup gl_conf alternative
+- symlinkf_update_alternatives: remove broken files for missing slave files
+ (useful for not having a broken /etc/modprobe.d/nvidia.conf (XFdrake))
diff --git a/perl-install/Newt/.cvsignore b/perl-install/Newt/.cvsignore
deleted file mode 100644
index 25fe4e1c1..000000000
--- a/perl-install/Newt/.cvsignore
+++ /dev/null
@@ -1,5 +0,0 @@
-Newt.bs
-Newt.c
-pm_to_blib
-blib
-Makefile_c
diff --git a/perl-install/Newt/Av_CharPtrPtr.c b/perl-install/Newt/Av_CharPtrPtr.c
deleted file mode 100644
index f28fa6315..000000000
--- a/perl-install/Newt/Av_CharPtrPtr.c
+++ /dev/null
@@ -1,99 +0,0 @@
-#ifdef __cplusplus
-extern "C" {
-#endif
-#include "EXTERN.h"
-#include "perl.h"
-#include "XSUB.h"
-#include "Av_CharPtrPtr.h" /* XS_*_charPtrPtr() */
-#ifdef __cplusplus
-}
-#endif
-
-
-/* Used by the INPUT typemap for char**.
- * Will convert a Perl AV* (containing strings) to a C char**.
- */
-char **
-XS_unpack_charPtrPtr( rv )
-SV *rv;
-{
- AV *av;
- SV **ssv;
- char **s;
- int avlen;
- int x;
-
- if( SvROK( rv ) && (SvTYPE(SvRV(rv)) == SVt_PVAV) )
- av = (AV*)SvRV(rv);
- else {
- warn("XS_unpack_charPtrPtr: rv was not an AV ref");
- return( (char**)NULL );
- }
-
- /* is it empty? */
- avlen = av_len(av);
- if( avlen < 0 ){
- warn("XS_unpack_charPtrPtr: array was empty");
- return( (char**)NULL );
- }
-
- /* av_len+2 == number of strings, plus 1 for an end-of-array sentinel.
- */
- s = (char **)safemalloc( sizeof(char*) * (avlen + 2) );
- if( s == NULL ){
- warn("XS_unpack_charPtrPtr: unable to malloc char**");
- return( (char**)NULL );
- }
- for( x = 0; x <= avlen; ++x ){
- ssv = av_fetch( av, x, 0 );
- if( ssv != NULL ){
- if( SvPOK( *ssv ) ){
- s[x] = (char *)safemalloc( SvCUR(*ssv) + 1 );
- if( s[x] == NULL )
- warn("XS_unpack_charPtrPtr: unable to malloc char*");
- else
- strcpy( s[x], SvPV( *ssv, PL_na ) );
- }
- else
- warn("XS_unpack_charPtrPtr: array elem %d was not a string.", x );
- }
- else
- s[x] = (char*)NULL;
- }
- s[x] = (char*)NULL; /* sentinel */
- return( s );
-}
-
-/* Used by the OUTPUT typemap for char**.
- * Will convert a C char** to a Perl AV*.
- */
-void
-XS_pack_charPtrPtr( st, s )
-SV *st;
-char **s;
-{
- AV *av = newAV();
- SV *sv;
- char **c;
-
- for( c = s; *c != NULL; ++c ){
- sv = newSVpv( *c, 0 );
- av_push( av, sv );
- }
- sv = newSVrv( st, NULL ); /* upgrade stack SV to an RV */
- SvREFCNT_dec( sv ); /* discard */
- SvRV( st ) = (SV*)av; /* make stack RV point at our AV */
-}
-
-
-/* cleanup the temporary char** from XS_unpack_charPtrPtr */
-void
-XS_release_charPtrPtr(s)
-char **s;
-{
- char **c;
- for( c = s; *c != NULL; ++c )
- safefree( *c );
- safefree( s );
-}
-
diff --git a/perl-install/Newt/Av_CharPtrPtr.h b/perl-install/Newt/Av_CharPtrPtr.h
deleted file mode 100644
index 765f1a731..000000000
--- a/perl-install/Newt/Av_CharPtrPtr.h
+++ /dev/null
@@ -1,4 +0,0 @@
-char ** XS_unpack_charPtrPtr _(( SV *rv ));
-void XS_pack_charPtrPtr _(( SV *st, char **s ));
-void XS_release_charPtrPtr _(( char **s ));
-
diff --git a/perl-install/Newt/Makefile b/perl-install/Newt/Makefile
deleted file mode 100644
index 613ca8a1c..000000000
--- a/perl-install/Newt/Makefile
+++ /dev/null
@@ -1,10 +0,0 @@
-.PHONY: clean
-
-Newt: %: %.xs
- test -e Makefile_c || perl Makefile.PL
- $(MAKE) -f Makefile_c LD_RUN_PATH= || $(MAKE) -f Makefile_c LD_RUN_PATH=
- rm -f ../auto/Newt ; ln -s ../Newt/blib/arch/auto/Newt ../auto
-
-clean:
- test ! -e Makefile_c || $(MAKE) -f Makefile_c clean
- rm -f *~ *.o
diff --git a/perl-install/Newt/Makefile.PL b/perl-install/Newt/Makefile.PL
deleted file mode 100644
index 6378a8f31..000000000
--- a/perl-install/Newt/Makefile.PL
+++ /dev/null
@@ -1,13 +0,0 @@
-use ExtUtils::MakeMaker;
-# See lib/ExtUtils/MakeMaker.pm for details of how to influence
-# the contents of the Makefile that is written.
-
-WriteMakefile(
- 'NAME' => 'Newt',
- 'OBJECT' => 'Av_CharPtrPtr.o Newt.o',
- 'MAKEFILE' => 'Makefile_c',
- 'OPTIMIZE' => '-Os',
- 'VERSION_FROM' => 'Newt.pm', # finds $VERSION
- 'LIBS' => ['-lnewt -lslang'],
- 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
-);
diff --git a/perl-install/Newt/Newt.pm b/perl-install/Newt/Newt.pm
deleted file mode 100644
index 1a93f02a0..000000000
--- a/perl-install/Newt/Newt.pm
+++ /dev/null
@@ -1,20 +0,0 @@
-package Newt; # $Id$
-
-use strict;
-use vars qw($VERSION @ISA);
-use DynaLoader;
-
-use vars qw($VERSION @ISA);
-@ISA = qw(DynaLoader);
-$VERSION = '0.01';
-Newt->bootstrap($VERSION);
-
-package Newt::Component;
-
-our @ISA = qw(); # help perl_checker
-
-package Newt::Grid;
-
-our @ISA = qw(); # help perl_checker
-
-1;
diff --git a/perl-install/Newt/Newt.xs b/perl-install/Newt/Newt.xs
deleted file mode 100644
index 7b2317cc7..000000000
--- a/perl-install/Newt/Newt.xs
+++ /dev/null
@@ -1,498 +0,0 @@
-#include "EXTERN.h"
-#include "perl.h"
-#include "XSUB.h"
-#include <newt.h>
-#include <slang/slang.h>
-
-static void suspend() {
- newtSuspend();
- raise(SIGTSTP);
- newtResume();
-}
-
-static void componentCallback(newtComponent co, void *data) {
- dSP;
- PUSHMARK(SP);
- perl_call_sv((SV *) data, G_DISCARD);
-}
-
-
-typedef newtComponent Newt__Component;
-typedef newtGrid Newt__Grid;
-
-
-MODULE = Newt PACKAGE = Newt PREFIX = newt
-
-PROTOTYPES: DISABLE
-
-
-void
-DESTROY()
- CODE:
- {
- newtFinished();
- }
-
-int
-newtInit(setlocale)
- int setlocale
- CODE:
- SLsmg_Setlocale = setlocale;
- newtInit();
-
-int
-newtFinished()
-
-void
-newtCls()
-
-void
-newtSuspend()
-
-void
-newtResume()
-
-int
-newtCenteredWindow(width,height,title)
- int width;
- int height;
- const char * title;
-
-void
-newtPopWindow()
-
-void
-newtRefresh()
-
-void
-newtPushHelpLine(text)
- const char * text;
-
-void
-newtDrawRootText(row,col,text)
- int row;
- int col;
- const char * text;
-
-void
-newtGetScreenSize()
- PPCODE:
-{
- int cols, rows;
- newtGetScreenSize(&cols, &rows);
- PUSHs(sv_2mortal(newSViv(cols)));
- PUSHs(sv_2mortal(newSViv(rows)));
-}
-
-void
-newtSetSuspendCallback()
- CODE:
- {
- newtSetSuspendCallback(suspend, NULL);
- }
-
-
-void
-newtWinMessage(title,buttonText,text)
- char * title;
- char * buttonText;
- char * text;
-
-int
-newtWinChoice(title,button1,button2,text)
- char * title;
- char * button1;
- char * button2;
- char * text;
-
-int
-newtWinTernary(title,button1,button2,button3,message)
- char * title;
- char * button1;
- char * button2;
- char * button3;
- char * message;
-
-MODULE = Newt PACKAGE = Newt::Component PREFIX = newt
-
-void
-addCallback(co, callback)
- Newt::Component co;
- SV *callback;
- CODE:
- newtComponentAddCallback(co, componentCallback, callback);
-
-Newt::Component
-newtCompactButton(text)
- const char * text;
- CODE:
- RETVAL = newtCompactButton(-1, -1, text);
- OUTPUT:
- RETVAL
-
-Newt::Component
-newtButton(text)
- const char * text;
- CODE:
- RETVAL = newtButton(-1, -1, text);
- OUTPUT:
- RETVAL
-
-Newt::Component
-newtCheckbox(text,defValue,seq)
- const char * text;
- char *defValue;
- const char * seq;
- CODE:
- RETVAL = newtCheckbox(-1, -1, text, defValue[0], seq, NULL);
- OUTPUT:
- RETVAL
-
-int
-newtCheckboxGetValue(co)
- Newt::Component co;
-
-void
-newtCheckboxSetValue(co, value)
- Newt::Component co;
- char *value;
- CODE:
- newtCheckboxSetValue(co, value[0]);
-
-Newt::Component
-newtLabel(text)
- const char * text;
-CODE:
- RETVAL = newtLabel(-1, -1, text);
-OUTPUT:
- RETVAL
-
-void
-newtLabelSetText(co,text)
- Newt::Component co;
- const char * text;
-
-Newt::Component
-newtVerticalScrollbar(height,normalColorset,thumbColorset)
- int height;
- int normalColorset;
- int thumbColorset;
-CODE:
- RETVAL = newtVerticalScrollbar(-1, -1, height,normalColorset,thumbColorset);
-OUTPUT:
- RETVAL
-
-void
-newtScrollbarSet(co,where,total)
- Newt::Component co;
- int where;
- int total;
-
-Newt::Component
-newtListbox(height,flags)
- int height;
- int flags;
-CODE:
- RETVAL = newtListbox(-1, -1, height, flags);
-OUTPUT:
- RETVAL
-
-SV *
-newtListboxGetCurrent(co)
- Newt::Component co;
-CODE:
- RETVAL = SvREFCNT_inc(newtListboxGetCurrent(co));
-OUTPUT:
- RETVAL
-
-
-void
-newtListboxSetCurrent(co,indice)
- Newt::Component co;
- int indice;
-
-void
-newtListboxSetWidth(co,width)
- Newt::Component co;
- int width;
-
-int
-newtListboxAddEntry(co,text,data)
- Newt::Component co;
- const char * text;
- SV * data;
-CODE:
- RETVAL = newtListboxAddEntry(co, text, data);
-OUTPUT:
- RETVAL
-
-
-Newt::Component
-newtTree(height,want_scroll)
- int height;
- int want_scroll;
- CODE:
- RETVAL = newtCheckboxTree(-1,-1,height, (want_scroll ? NEWT_FLAG_SCROLL : 0) | NEWT_CHECKBOXTREE_HIDE_BOX);
- OUTPUT:
- RETVAL
-
-int
-newtTreeAdd(co,text,data,parents)
- Newt::Component co;
- const char * text;
- int data;
- SV * parents;
- CODE:
- {
- int l[10];
- int i;
- AV *av = (AV*) SvRV(parents);
- for (i = 0; i <= av_len(av); i++) l[i] = SvIV(*av_fetch(av, i, 0));
- l[i++] = NEWT_ARG_APPEND;
- l[i] = NEWT_ARG_LAST;
- RETVAL = newtCheckboxTreeAddArray(co, text, (void *) data, 0, l);
- }
- OUTPUT:
- RETVAL
-
-void
-newtTreeSetCurrent(co, data)
- Newt::Component co;
- int data;
- CODE:
- newtCheckboxTreeSetCurrent(co, (void *) data);
-
-void
-newtTreeSetWidth(co,width)
- Newt::Component co;
- int width;
- CODE:
- newtCheckboxTreeSetWidth(co, width);
-
-int
-newtTreeGetCurrent(co)
- Newt::Component co;
-CODE:
- RETVAL = (int) newtCheckboxTreeGetCurrent(co);
-OUTPUT:
- RETVAL
-
-
-Newt::Component
-newtTextbox(left,top,width,height,want_scroll)
- int left;
- int top;
- int width;
- int height;
- int want_scroll;
- CODE:
- RETVAL = newtTextbox(left,top,width,height, (want_scroll ? NEWT_FLAG_SCROLL : 0) | NEWT_FLAG_WRAP);
- OUTPUT:
- RETVAL
-
-void
-newtTextboxSetText(co,text)
- Newt::Component co;
- const char * text;
-
-void
-newtTextboxSetHeight(co,height)
- Newt::Component co;
- int height;
-
-int
-newtTextboxGetNumLines(co)
- Newt::Component co;
-
-char *
-newtReflowText(text,width,flexDown,flexUp,actualWidth,actualHeight)
- char * text;
- int width;
- int flexDown;
- int flexUp;
- int * actualWidth;
- int * actualHeight;
-
-Newt::Component
-newtForm(vertBar,help,flags)
- Newt::Component vertBar;
- char * help;
- int flags;
-
-void
-newtFormSetSize(co)
- Newt::Component co;
-
-Newt::Component
-newtFormGetCurrent(co)
- Newt::Component co;
-
-void
-newtFormSetBackground(co,color)
- Newt::Component co;
- int color;
-
-void
-newtFormSetCurrent(co,subco)
- Newt::Component co;
- Newt::Component subco;
-
-void
-newtFormAddComponent(form,co)
- Newt::Component form;
- Newt::Component co;
-
-void
-newtFormAddGrid(form,grid,recurse)
- Newt::Component form;
- Newt::Grid grid;
- int recurse;
- CODE:
- newtGridAddComponentsToForm(grid,form,recurse);
-
-void
-newtFormSetHeight(co,height)
- Newt::Component co;
- int height;
-
-void
-newtFormSetWidth(co,width)
- Newt::Component co;
- int width;
-
-Newt::Component
-newtRunForm(form)
- Newt::Component form;
-
-void
-newtDrawForm(form)
- Newt::Component form;
-
-Newt::Component
-newtEntry(initialValue,width,flag)
- const char * initialValue;
- int width;
- int flag;
- CODE:
- {
- const char *result;
- RETVAL = newtEntry(-1, -1, initialValue,width,&result,flag);
- }
- OUTPUT:
- RETVAL
-
-void
-newtEntrySet(co,value,cursorAtEnd)
- Newt::Component co;
- const char * value;
- int cursorAtEnd;
-
-char *
-newtEntryGetValue(co)
- Newt::Component co;
-
-void
-newtFormDestroy(form)
- Newt::Component form;
-
-MODULE = Newt PACKAGE = Newt::Grid PREFIX = newt
-
-Newt::Grid
-newtCreateGrid(cols,rows)
- int cols;
- int rows;
-
-Newt::Grid
-HCloseStacked3(c1, c2, c3)
- Newt::Component c1;
- Newt::Component c2;
- Newt::Component c3;
- CODE:
- {
- RETVAL = newtGridHCloseStacked(NEWT_GRID_COMPONENT, c1, NEWT_GRID_COMPONENT, c2, NEWT_GRID_COMPONENT, c3);
- }
-OUTPUT:
-RETVAL
-
-
-Newt::Grid
-newtGridBasicWindow(text,middle,buttons)
- Newt::Component text;
- Newt::Grid middle;
- Newt::Grid buttons;
-
-
-Newt::Grid
-newtGridSimpleWindow(text,middle,buttons)
- Newt::Component text;
- Newt::Component middle;
- Newt::Grid buttons;
-
-void
-newtGridSetField(grid,col,row,type,val,padLeft,padTop,padRight,padBottom,anchor,flags)
- Newt::Grid grid;
- int col;
- int row;
- enum newtGridElement type;
- void * val;
- int padLeft;
- int padTop;
- int padRight;
- int padBottom;
- int anchor;
- int flags;
-
-
-void
-newtGridFree(grid,recurse)
- Newt::Grid grid;
- int recurse;
-
-void
-newtGridPlace(grid,left,top)
- Newt::Grid grid;
- int left;
- int top;
-
-void
-newtGridGetSize(grid)
- Newt::Grid grid;
- PPCODE:
-{
- int width;
- int height;
- newtGridGetSize(grid, &width, &height);
- PUSHs(sv_2mortal(newSViv(width)));
- PUSHs(sv_2mortal(newSViv(height)));
-}
-
-void
-newtGridWrappedWindow(grid,title)
- Newt::Grid grid;
- char * title;
-
-Newt::Grid
-newtButtonBar(button1, ...)
- char * button1;
- PPCODE:
- {
- static newtComponent p[11];
- int i;
- EXTEND(SP, items + 1);
-#define a(i) (char *)SvPV(ST(i),PL_na)
- PUSHs(sv_setref_pv(sv_newmortal(), "Newt::Grid",
- newtButtonBar(items > 0 ? a( 0) : NULL, items > 0 ? &p[ 0] : NULL,
- items > 1 ? a( 1) : NULL, items > 1 ? &p[ 1] : NULL,
- items > 2 ? a( 2) : NULL, items > 2 ? &p[ 2] : NULL,
- items > 3 ? a( 3) : NULL, items > 3 ? &p[ 3] : NULL,
- items > 4 ? a( 4) : NULL, items > 4 ? &p[ 4] : NULL,
- items > 5 ? a( 5) : NULL, items > 5 ? &p[ 5] : NULL,
- items > 6 ? a( 6) : NULL, items > 6 ? &p[ 6] : NULL,
- items > 7 ? a( 7) : NULL, items > 7 ? &p[ 7] : NULL,
- items > 8 ? a( 8) : NULL, items > 8 ? &p[ 8] : NULL,
- items > 9 ? a( 9) : NULL, items > 9 ? &p[ 9] : NULL,
- items > 10 ? a(10) : NULL, items > 10 ? &p[10] : NULL,
- NULL)));
-#undef a
- for (i = 0; i < items; i++) PUSHs(sv_setref_pv(sv_newmortal(), "Newt::Component", p[i]));
- }
diff --git a/perl-install/Newt/typemap b/perl-install/Newt/typemap
deleted file mode 100644
index 5aaa2f668..000000000
--- a/perl-install/Newt/typemap
+++ /dev/null
@@ -1,25 +0,0 @@
-TYPEMAP
-
-const char * T_PV
-const void * T_PV
-int * T_PV
-void ** T_PACKED
-
-enum newtFlagsSense T_IV
-enum newtGridElement T_IV
-SV ** T_SV
-
-Newt::Component NewtComponent
-Newt::Grid NewtGrid
-
-INPUT
-NewtComponent
- $var = ($type) SvIV((SV*)SvRV($arg))
-NewtGrid
- $var = ($type) SvIV((SV*)SvRV($arg))
-
-OUTPUT
-NewtComponent
- sv_setref_pv($arg, "Newt::Component", (void*) $var);
-NewtGrid
- sv_setref_pv($arg, "Newt::Grid", (void*) $var);
diff --git a/perl-install/any.pm b/perl-install/any.pm
index 271dfe845..751a8392e 100644
--- a/perl-install/any.pm
+++ b/perl-install/any.pm
@@ -87,8 +87,7 @@ sub create_user {
if (@existing && $::isInstall && ($uid != $existing[4] || $gid != $existing[5])) {
log::l("chown'ing $home from $existing[4].$existing[5] to $uid.$gid");
- require commands;
- eval { commands::chown_("-r", "$uid.$gid", "$::prefix$home") };
+ eval { common::chown_('recursive', $uid, $gid, "$::prefix$home") };
}
}
@@ -104,26 +103,102 @@ sub add_users {
}
}
-sub hdInstallPath() {
- my $tail = first(readlink("/tmp/image") =~ m|^(?:/tmp/)?hdimage/*(.*)|);
- my $head = first(readlink("/tmp/hdimage") =~ m|$::prefix(.*)|);
- log::l("search HD install path, tail=$tail, head=$head, tail defined=" . to_bool(defined $tail));
- defined $tail && ($head ? "$head/$tail" : "/mnt/hd/$tail");
-}
-
sub install_acpi_pkgs {
my ($do_pkgs, $b) = @_;
my $acpi = bootloader::get_append_with_key($b, 'acpi');
my $use_acpi = !member($acpi, 'off', 'ht');
if ($use_acpi) {
- $do_pkgs->ensure_is_installed('acpi', '/usr/bin/acpi');
- $do_pkgs->ensure_is_installed('acpid', '/usr/sbin/acpid');
+ $do_pkgs->ensure_is_installed('acpi', '/usr/bin/acpi', $::isInstall);
+ $do_pkgs->ensure_is_installed('acpid', '/usr/sbin/acpid', $::isInstall);
}
require services;
services::set_status($_, $use_acpi, $::isInstall) foreach qw(acpi acpid);
}
+sub setupBootloaderBeforeStandalone {
+ my ($do_pkgs, $b, $all_hds, $fstab) = @_;
+ require keyboard;
+ my $keyboard = keyboard::read_or_default();
+ my $allow_fb = listlength(cat_("/proc/fb"));
+ my $cmdline = cat_('/proc/cmdline');
+ my $vga_fb = first($cmdline =~ /\bvga=(\S+)/);
+ my $quiet = $cmdline =~ /\bsplash=silent\b/;
+ setupBootloaderBefore($do_pkgs, $b, $all_hds, $fstab, $keyboard, $allow_fb, $vga_fb, $quiet);
+}
+
+sub setupBootloaderBefore {
+ my ($do_pkgs, $bootloader, $all_hds, $fstab, $keyboard, $allow_fb, $vga_fb, $quiet) = @_;
+ require bootloader;
+
+ #- auto_install backward compatibility
+ #- one should now use {message_text}
+ if ($bootloader->{message} =~ m!^[^/]!) {
+ $bootloader->{message_text} = delete $bootloader->{message};
+ }
+
+ #- remove previous ide-scsi lines
+ bootloader::modify_append($bootloader, sub {
+ my ($_simple, $dict) = @_;
+ @$dict = grep { $_->[1] ne 'ide-scsi' } @$dict;
+ });
+
+ if (cat_("/proc/cmdline") =~ /mem=nopentium/) {
+ bootloader::set_append_with_key($bootloader, mem => 'nopentium');
+ }
+ if (cat_("/proc/cmdline") =~ /\b(pci)=(\S+)/) {
+ bootloader::set_append_with_key($bootloader, $1, $2);
+ }
+ if (my ($acpi) = cat_("/proc/cmdline") =~ /\bacpi=(\w+)/) {
+ if ($acpi eq 'ht') {
+ #- the user is using the default, which may not be the best
+ my $year = detect_devices::computer_info()->{BIOS_Year};
+ if ($year >= 2002) {
+ log::l("forcing ACPI on recent bios ($year)");
+ $acpi = '';
+ }
+ }
+ bootloader::set_append_with_key($bootloader, acpi => $acpi);
+ }
+ if (cat_("/proc/cmdline") =~ /\bnoapic/) {
+ bootloader::set_append_simple($bootloader, 'noapic');
+ }
+ my ($MemTotal) = cat_("/proc/meminfo") =~ /^MemTotal:\s*(\d+)/m;
+ if (my ($biggest_swap) = sort { $b->{size} <=> $a->{size} } grep { isSwap($_) } @$fstab) {
+ log::l("MemTotal: $MemTotal < ", $biggest_swap->{size} / 2);
+ if ($MemTotal < $biggest_swap->{size} / 2) {
+ bootloader::set_append_with_key($bootloader, resume => devices::make($biggest_swap->{device}));
+ }
+ }
+
+ #- check for valid fb mode to enable a default boot with frame buffer.
+ my $vga = $allow_fb && (!detect_devices::matching_desc__regexp('3D Rage LT') &&
+ !detect_devices::matching_desc__regexp('Rage Mobility [PL]') &&
+ !detect_devices::matching_desc__regexp('i740') &&
+ !detect_devices::matching_desc__regexp('Matrox') &&
+ !detect_devices::matching_desc__regexp('Tseng.*ET6\d00') &&
+ !detect_devices::matching_desc__regexp('SiS.*SG86C2.5') &&
+ !detect_devices::matching_desc__regexp('SiS.*559[78]') &&
+ !detect_devices::matching_desc__regexp('SiS.*300') &&
+ !detect_devices::matching_desc__regexp('SiS.*540') &&
+ !detect_devices::matching_desc__regexp('SiS.*6C?326') &&
+ !detect_devices::matching_desc__regexp('SiS.*6C?236') &&
+ !detect_devices::matching_desc__regexp('Voodoo [35]|Voodoo Banshee') && #- 3d acceleration seems to bug in fb mode
+ !detect_devices::matching_desc__regexp('828[14][05].* CGC') #- i810 & i845 now have FB support during install but we disable it afterwards
+ );
+ my $force_vga = $allow_fb && (detect_devices::matching_desc__regexp('SiS.*630') || #- SiS 630 need frame buffer.
+ detect_devices::matching_desc__regexp('GeForce.*Integrated') #- needed for fbdev driver (hack).
+ );
+
+ #- propose the default fb mode for kernel fb, if aurora or bootsplash is installed.
+ my $need_fb = $do_pkgs->are_installed('bootsplash');
+ bootloader::suggest($bootloader, $all_hds,
+ vga_fb => ($force_vga || $vga && $need_fb) && $vga_fb,
+ quiet => $quiet);
+
+ $bootloader->{keytable} ||= keyboard::keyboard2kmap($keyboard);
+}
+
sub setupBootloader {
my ($in, $b, $all_hds, $fstab, $security) = @_;
@@ -141,6 +216,18 @@ sub setupBootloader {
1;
}
+sub setupBootloaderUntilInstalled {
+ my ($in, $b, $all_hds, $fstab, $security) = @_;
+ do {
+ my $before = fs::fstab_to_string($all_hds);
+ setupBootloader($in, $b, $all_hds, $fstab, $security) or $in->exit;
+ if ($before ne fs::fstab_to_string($all_hds)) {
+ #- for /tmp using tmpfs when "clean /tmp" is chosen
+ fs::write_fstab($all_hds);
+ }
+ } while !installBootloader($in, $b, $all_hds);
+}
+
sub installBootloader {
my ($in, $b, $all_hds) = @_;
return if detect_devices::is_xbox();
@@ -249,6 +336,7 @@ sub setupBootloader__mbr_or_not {
my $default = find { $_->[1] eq $b->{boot} } @l;
$in->ask_from_({ title => N("LILO/grub Installation"),
+ icon => 'banner-bootL',
messages => N("Where do you want to install the bootloader?"),
interactive_help_id => 'setupBootloaderBeginner',
},
@@ -268,11 +356,12 @@ sub setupBootloader__general {
return if detect_devices::is_xbox();
my @method_choices = bootloader::method_choices($all_hds);
my $prev_force_acpi = my $force_acpi = bootloader::get_append_with_key($b, 'acpi') !~ /off|ht/;
- my $prev_force_noapic = my $force_noapic = bootloader::get_append_simple($b, 'noapic');
- my $prev_force_nolapic = my $force_nolapic = bootloader::get_append_simple($b, 'nolapic');
+ my $prev_enable_apic = my $enable_apic = !bootloader::get_append_simple($b, 'noapic');
+ my $prev_enable_lapic = my $enable_lapic = !bootloader::get_append_simple($b, 'nolapic');
my $memsize = bootloader::get_append_memsize($b);
my $prev_clean_tmp = my $clean_tmp = any { $_->{mntpoint} eq '/tmp' } @{$all_hds->{special} ||= []};
my $prev_boot = $b->{boot};
+ my $prev_method = $b->{method};
$b->{password2} ||= $b->{password} ||= '';
$::Wizard_title = N("Boot Style Configuration");
@@ -284,37 +373,36 @@ sub setupBootloader__general {
$boot_devices{$dev} = $_->{info} ? "$dev ($_->{info})" : $dev;
}
- $in->ask_from_({ messages => N("Bootloader main options"),
+ $in->ask_from_({ #messages => N("Bootloader main options"),
title => N("Bootloader main options"),
icon => 'banner-bootL',
interactive_help_id => 'setupBootloader',
- callbacks => {
- complete => sub {
- !$memsize || $memsize =~ /^\d+K$/ || $memsize =~ s/^(\d+)M?$/$1M/i or $in->ask_warn('', N("Give the ram size in MB")), return 1;
- #- $security > 4 && length($b->{password}) < 6 and $in->ask_warn('', N("At this level of security, a password (and a good one) in lilo is requested")), return 1;
- $b->{restricted} && !$b->{password} and $in->ask_warn('', N("Option ``Restrict command line options'' is of no use without a password")), return 1;
- $b->{password} eq $b->{password2} or !$b->{restricted} or $in->ask_warn('', [ N("The passwords do not match"), N("Please try again") ]), return 1;
- 0;
- },
- },
}, [
+ #title => N("Bootloader main options"),
+ { label => N("Bootloader"), title => 1 },
{ label => N("Bootloader to use"), val => \$b->{method}, list => \@method_choices, format => \&bootloader::method2text },
if_(arch() !~ /ia64/,
- { label => N("Boot device"), val => \$b->{boot}, list => \@boot_devices, format => sub { $boot_devices{$_[0]} }, not_edit => !$::expert },
+ { label => N("Boot device"), val => \$b->{boot}, list => \@boot_devices, format => sub { $boot_devices{$_[0]} } },
),
+ { label => N("Main options"), title => 1 },
{ label => N("Delay before booting default image"), val => \$b->{timeout} },
{ text => N("Enable ACPI"), val => \$force_acpi, type => 'bool' },
- if_(!$force_nolapic,
- { text => N("Force no APIC"), val => \$force_noapic, type => 'bool' },
- ),
- { text => N("Force No Local APIC"), val => \$force_nolapic, type => 'bool' },
+ { text => N("Enable APIC"), val => \$enable_apic, type => 'bool', advanced => 1, disabled => sub { !$enable_lapic } },
+ { text => N("Enable Local APIC"), val => \$enable_lapic, type => 'bool', advanced => 1 },
if_($security >= 4 || $b->{password} || $b->{restricted},
- { label => N("Password"), val => \$b->{password}, hidden => 1 },
+ { label => N("Password"), val => \$b->{password}, hidden => 1,
+ validate => sub {
+ my $ok = $b->{password} eq $b->{password2} or $in->ask_warn('', [ N("The passwords do not match"), N("Please try again") ]);
+ my $ok2 = !($b->{password} && $b->{method} eq 'grub-graphic') or $in->ask_warn('', N("You can not use a password with %s", bootloader::method2text($b->{method})));
+ $ok && $ok2;
+ } },
{ label => N("Password (again)"), val => \$b->{password2}, hidden => 1 },
- { text => N("Restrict command line options"), val => \$b->{restricted}, type => "bool", text => N("restrict") },
+ { text => N("Restrict command line options"), val => \$b->{restricted}, type => "bool", text => N("restrict"),
+ validate => sub { my $ok = !$b->{restricted} || $b->{password} or $in->ask_warn('', N("Option ``Restrict command line options'' is of no use without a password")); $ok } },
),
{ text => N("Clean /tmp at each boot"), val => \$clean_tmp, type => 'bool', advanced => 1 },
- { label => N("Precise RAM size if needed (found %d MB)", availableRamMB()), val => \$memsize, advanced => 1 },
+ { label => N("Precise RAM size if needed (found %d MB)", availableRamMB()), val => \$memsize, advanced => 1,
+ validate => sub { my $ok = !$memsize || $memsize =~ /^\d+K$/ || $memsize =~ s/^(\d+)M?$/$1M/i or $in->ask_warn('', N("Give the ram size in MB")); $ok } },
]) or return 0;
} else {
$b->{boot} = $partition_table::mac::bootstrap_part;
@@ -325,7 +413,7 @@ sub setupBootloader__general {
}, [
{ label => N("Bootloader to use"), val => \$b->{method}, list => \@method_choices, format => \&bootloader::method2text },
{ label => N("Init Message"), val => \$b->{'init-message'} },
- { label => N("Boot device"), val => \$b->{boot}, list => [ map { "/dev/$_" } (map { $_->{device} } (grep { isAppleBootstrap($_) } @$fstab)) ], not_edit => !$::expert },
+ { label => N("Boot device"), val => \$b->{boot}, list => [ map { "/dev/$_" } (map { $_->{device} } (grep { isAppleBootstrap($_) } @$fstab)) ] },
{ label => N("Open Firmware Delay"), val => \$b->{delay} },
{ label => N("Kernel Boot Timeout"), val => \$b->{timeout} },
{ label => N("Enable CD Boot?"), val => \$b->{enablecdboot}, type => "bool" },
@@ -343,20 +431,19 @@ sub setupBootloader__general {
delete $b->{'raid-extra-boot'} if $b->{'raid-extra-boot'} eq 'mbr';
}
- if ($b->{method} eq 'grub') {
- $in->do_pkgs->ensure_binary_is_installed('grub', "grub", 1) or return 0;
- }
+ bootloader::ensure_pkg_is_installed($in->do_pkgs, $b) or return 0;
+
bootloader::suggest_message_text($b) if ! -e "$::prefix/boot/message-text"; #- in case we switch from grub to lilo
bootloader::set_append_memsize($b, $memsize);
if ($prev_force_acpi != $force_acpi) {
bootloader::set_append_with_key($b, acpi => ($force_acpi ? '' : 'ht'));
}
- if ($prev_force_noapic != $force_noapic) {
- ($force_noapic ? \&bootloader::set_append_simple : \&bootloader::remove_append_simple)->($b, 'noapic');
+ if ($prev_enable_apic != $enable_apic) {
+ ($enable_apic ? \&bootloader::remove_append_simple : \&bootloader::set_append_simple)->($b, 'noapic');
}
- if ($prev_force_nolapic != $force_nolapic) {
- ($force_nolapic ? \&bootloader::set_append_simple : \&bootloader::remove_append_simple)->($b, 'nolapic');
+ if ($prev_enable_lapic != $enable_lapic) {
+ ($enable_lapic ? \&bootloader::remove_append_simple : \&bootloader::set_append_simple)->($b, 'nolapic');
}
if ($prev_clean_tmp != $clean_tmp) {
@@ -366,11 +453,17 @@ sub setupBootloader__general {
@{$all_hds->{special}} = grep { $_->{mntpoint} ne '/tmp' } @{$all_hds->{special}};
}
}
+
+ if (bootloader::main_method($prev_method) eq 'lilo' &&
+ bootloader::main_method($b->{method}) eq 'grub') {
+ log::l("switching for lilo to grub, ensure we don't read lilo.conf anymore");
+ renamef("$::prefix/etc/lilo.conf", "$::prefix/etc/lilo.conf.unused");
+ }
1;
}
sub setupBootloader__entries {
- my ($in, $b, $_all_hds, $fstab) = @_;
+ my ($in, $b, $all_hds, $fstab) = @_;
require Xconfig::resolution_and_depth;
@@ -381,12 +474,22 @@ sub setupBootloader__entries {
my $vga = Xconfig::resolution_and_depth::from_bios($e->{vga});
my ($append, $netprofile) = bootloader::get_append_netprofile($e);
+ my %hd_infos = map { $_->{device} => $_->{info} } fs::get::hds($all_hds);
+ my %root_descr = map {
+ my $info = delete $hd_infos{$_->{rootDevice}};
+ my $dev = "/dev/$_->{device}";
+ $dev => $info ? "$dev ($info)" : $dev;
+ } @$fstab;
+
my @l;
if ($e->{type} eq "image") {
@l = (
{ label => N("Image"), val => \$e->{kernel_or_dev}, list => [ map { "/boot/$_" } bootloader::installed_vmlinuz() ], not_edit => 0 },
-{ label => N("Root"), val => \$e->{root}, list => [ map { "/dev/$_->{device}" } @$fstab ], not_edit => !$::expert },
+{ label => N("Root"), val => \$e->{root}, list => [ map { "/dev/$_->{device}" } @$fstab ], format => sub { $root_descr{$_[0]} } },
{ label => N("Append"), val => \$append },
+ if_($e->{xen},
+{ label => N("Xen append"), val => \$e->{xen_append} }
+ ),
if_(arch() !~ /ppc|ia64/,
{ label => N("Video mode"), val => \$vga, list => [ '', Xconfig::resolution_and_depth::bios_vga_modes() ], format => \&Xconfig::resolution_and_depth::to_string, advanced => 1 },
),
@@ -395,7 +498,7 @@ sub setupBootloader__entries {
);
} else {
@l = (
-{ label => N("Root"), val => \$e->{kernel_or_dev}, list => [ map { "/dev/$_->{device}" } @$fstab, detect_devices::floppies() ], not_edit => !$::expert },
+{ label => N("Root"), val => \$e->{kernel_or_dev}, list => [ map { "/dev/$_->{device}" } @$fstab, detect_devices::floppies() ] },
);
}
if (arch() !~ /ppc/) {
@@ -408,9 +511,7 @@ sub setupBootloader__entries {
unshift @l, { label => N("Label"), val => \$e->{label}, list => ['macos', 'macosx', 'darwin'] };
if ($e->{type} eq "image") {
@l = ({ label => N("Label"), val => \$e->{label} },
- $::expert ? @l[1..4] : (@l[1..2], { label => N("Append"), val => \$append }),
- if_($::expert, { label => N("Initrd-size"), val => \$e->{initrdsize}, list => [ '', '4096', '8192', '16384', '24576' ] }),
- if_($::expert, $l[5]),
+ (@l[1..2], { label => N("Append"), val => \$append }),
{ label => N("NoVideo"), val => \$e->{novideo}, type => 'bool' },
{ text => N("Default"), val => \$default, type => 'bool' }
);
@@ -431,7 +532,7 @@ sub setupBootloader__entries {
$b->{default} = $old_default || $default ? $default && $e->{label} : $b->{default};
$e->{vga} = ref($vga) ? $vga->{bios} : $vga;
bootloader::set_append_netprofile($e, $append, $netprofile);
- bootloader::configure_entry($e); #- hack to make sure initrd file are built.
+ bootloader::configure_entry($b, $e); #- hack to make sure initrd file are built.
1;
};
@@ -473,7 +574,7 @@ You can create additional entries or change the existing ones."), [ {
format => sub {
my ($e) = @_;
ref($e) ?
- "$e->{label} ($e->{kernel_or_dev})" . ($b->{default} eq $e->{label} && " *") :
+ ($b->{default} eq $e->{label} ? " * " : " ") . "$e->{label} ($e->{kernel_or_dev})" :
translate($e);
}, list => $b->{entries},
} ], Add => $Add, Modify => $Modify, Remove => $Remove)) {
@@ -489,10 +590,10 @@ sub get_autologin() {
my $desktop = $desktop{DESKTOP} || 'KDE';
my $autologin = do {
if (($desktop{DISPLAYMANAGER} || $desktop) eq 'GNOME') {
- my %conf = read_gnomekderc("$::prefix/etc/X11/gdm/gdm.conf", 'daemon');
+ my %conf = read_gnomekderc("$::prefix/etc/X11/gdm/custom.conf", 'daemon');
text2bool($conf{AutomaticLoginEnable}) && $conf{AutomaticLogin};
} else { # KDM / MdkKDM
- my %conf = read_gnomekderc("$::prefix/usr/share/config/kdm/kdmrc", 'X-:0-Core');
+ my %conf = read_gnomekderc("$::prefix/etc/kde/kdm/kdmrc", 'X-:0-Core');
text2bool($conf{AutoLoginEnable}) && $conf{AutoLoginUser};
}
};
@@ -500,18 +601,18 @@ sub get_autologin() {
}
sub set_autologin {
- my ($o_user, $o_wm) = @_;
+ my ($do_pkgs, $o_user, $o_wm) = @_;
log::l("set_autologin $o_user $o_wm");
my $autologin = bool2text($o_user);
#- Configure KDM / MDKKDM
- eval { update_gnomekderc("$::prefix/usr/share/config/kdm/kdmrc", 'X-:0-Core' => (
+ eval { common::update_gnomekderc_no_create("$::prefix/etc/kde/kdm/kdmrc", 'X-:0-Core' => (
AutoLoginEnable => $autologin,
AutoLoginUser => $o_user,
)) };
#- Configure GDM
- eval { update_gnomekderc("$::prefix/etc/X11/gdm/gdm.conf", daemon => (
+ eval { update_gnomekderc("$::prefix/etc/X11/gdm/custom.conf", daemon => (
AutomaticLoginEnable => $autologin,
AutomaticLogin => $o_user,
)) };
@@ -520,8 +621,9 @@ sub set_autologin {
if (member($o_wm, 'KDE', 'GNOME')) {
unlink $xdm_autologin_cfg;
} else {
+ $do_pkgs->ensure_is_installed('autologin', '/usr/bin/startx.autologin') if $o_user;
setVarsInShMode($xdm_autologin_cfg, 0644,
- { USER => $o_user, AUTOLOGIN => bool2yesno($o_user), EXEC => '/usr/X11R6/bin/startx.autologin' });
+ { USER => $o_user, AUTOLOGIN => bool2yesno($o_user), EXEC => '/usr/bin/startx.autologin' });
}
if ($o_user) {
@@ -611,11 +713,11 @@ sub inspect {
}
sub ask_user_one {
- my ($in, $users, $security, $u, %options) = @_;
+ my ($in, $users, $security, $u, $suggested_names, %options) = @_;
$options{needauser} ||= $security >= 3;
- my @icons = facesnames();
+ my @suggested_names = grep { ! defined getpwnam($_) } @$suggested_names;
my %high_security_groups = (
xgrp => N("access to X programs"),
@@ -631,13 +733,14 @@ sub ask_user_one {
my $names = @$users ? N("(already added %s)", join(", ", map { $_->{realname} || $_->{name} } @$users)) : '';
my %groups;
+
+ require authentication;
my $verif = sub {
- $u->{password} eq $u->{password2} or $in->ask_warn('', [ N("The passwords do not match"), N("Please try again") ]), return 1,2;
- $security > 3 && length($u->{password}) < 6 and $in->ask_warn('', N("This password is too simple")), return 1,2;
- $u->{name} or $in->ask_warn('', N("Please give a user name")), return 1,0;
+ authentication::check_given_password($in, $u, $security > 3 ? 6 : 0) or return 1,2;
+ $u->{name} or $in->ask_warn('', N("Please give a user name")), return 1,0;
$u->{name} =~ /^[a-z]+?[a-z0-9_-]*?$/ or $in->ask_warn('', N("The user name must contain only lower cased letters, numbers, `-' and `_'")), return 1,0;
length($u->{name}) <= 32 or $in->ask_warn('', N("The user name is too long")), return 1,0;
- member($u->{name}, 'root', map { $_->{name} } @$users) and $in->ask_warn('', N("This user name has already been added")), return 1,0;
+ defined getpwnam($u->{name}) || member($u->{name}, map { $_->{name} } @$users) and $in->ask_warn('', N("This user name has already been added")), return 1,0;
foreach ([ $u->{uid}, N("User ID") ],
[ $u->{gid}, N("Group ID") ]) {
my ($id, $name) = @$_;
@@ -656,24 +759,18 @@ sub ask_user_one {
if_(!$::isInstall, ok => N("Done")),
cancel => $options{noaccept} ? '' : N("Accept user"),
callbacks => {
- focus_out => sub {
- if ($_[0] eq '0') {
- $u->{name} ||= lc first($u->{realname} =~ /([a-zA-Z0-9_-]+)/);
- }
- },
canceled => $verif,
ok_disabled => sub { $options{needauser} && !@$users || $u->{name} },
} }, [
- { label => N("Real name"), val => \$u->{realname} },
- { label => N("Login name"), val => \$u->{name} },
+ { label => N("Real name"), val => \$u->{realname}, focus_out => sub {
+ $u->{name} ||= lc first($u->{realname} =~ /([a-zA-Z0-9_-]+)/);
+ } },
+ { label => N("Login name"), val => \$u->{name}, list => \@suggested_names, not_edit => 0 },
{ label => N("Password"),val => \$u->{password}, hidden => 1 },
{ label => N("Password (again)"), val => \$u->{password2}, hidden => 1 },
- { label => N("Shell"), val => \$u->{shell}, list => [ shells() ], not_edit => !$::expert, advanced => 1 },
+ { label => N("Shell"), val => \$u->{shell}, list => [ shells() ], advanced => 1 },
{ label => N("User ID"), val => \$u->{uid}, advanced => 1 },
{ label => N("Group ID"), val => \$u->{gid}, advanced => 1 },
- if_($security <= 3 && !$options{noicons} && @icons,
- { label => N("Icon"), val => \ ($u->{icon} ||= 'default'), list => \@icons, icon2f => \&face2png, format => \&translate },
- ),
if_($security > 3,
map {
{ label => $_, val => \$groups{$_}, text => $high_security_groups{$_}, type => 'bool' };
@@ -693,8 +790,7 @@ sub ask_users {
while (1) {
my $u = {};
- $u->{name} = shift @$suggested_names;
- ask_user_one($in, $users, $security, $u) and return;
+ ask_user_one($in, $users, $security, $u, $suggested_names) and return;
}
}
@@ -733,12 +829,19 @@ sub autologin {
sub acceptLicense {
my ($o) = @_;
- require install_messages;
+ require messages;
+
+ $o->{release_notes} = join("\n\n", grep { $_ } map {
+ if ($::isInstall) {
+ my $f = install::any::getFile_($o->{stage2_phys_medium}, $_);
+ $f && cat__($f);
+ } else {
+ my $file = $_;
+ my $d = find { -e "$_/$file" } glob_("/usr/share/doc/*-release-*");
+ $d && cat_("$d/$file");
+ }
+ } 'release-notes.txt', 'release-notes.' . arch() . '.txt');
- $o->{release_notes} = join("\n\n", map {
- my $f = install_any::getFile($_);
- $f && cat__($f);
- } 'release-notes.txt', 'release-notes.' . arch() . '.txt') if $::isInstall;
return if $o->{useless_thing_accepted};
@@ -746,10 +849,11 @@ sub acceptLicense {
$o->ask_from_({ title => N("License agreement"),
icon => 'banner-license',
+ focus_first => 1,
cancel => N("Quit"),
- messages => formatAlaTeX(install_messages::main_license() . "\n\n\n" . install_messages::warning_about_patents()),
+ messages => formatAlaTeX(messages::main_license() . "\n\n\n" . messages::warning_about_patents()),
interactive_help_id => 'acceptLicense',
- if_(!$::globetrotter, more_buttons => [ [ N("Release Notes"), sub { $o->ask_warn(N("Release Notes"), $o->{release_notes}) }, 1 ] ]),
+ if_(!$::globetrotter && $o->{release_notes}, more_buttons => [ [ N("Release Notes"), sub { $o->ask_warn(N("Release Notes"), $o->{release_notes}) }, 1 ] ]),
callbacks => { ok_disabled => sub { $r eq 'Refuse' } },
},
[ { list => [ N_("Accept"), N_("Refuse") ], val => \$r, type => 'list', format => sub { translate($_[0]) } } ])
@@ -759,9 +863,11 @@ sub acceptLicense {
if ($::globetrotter) {
run_program::run('killall', 'Xorg');
exec("/sbin/reboot");
+ } else {
+ install::media::umount_phys_medium($o->{stage2_phys_medium});
+ install::media::openCdromTray($o->{stage2_phys_medium}{device}) if !detect_devices::is_xbox() && $o->{method} eq 'cdrom';
+ $o->exit;
}
- install_any::ejectCdrom();
- $o->exit;
};
}
@@ -796,28 +902,27 @@ sub selectLanguage_install {
$lang = first($add_location->($lang));
}
- my $last_utf8 = $locale->{utf8};
+ my $non_utf8 = 0;
+ my $utf8_forced;
add2hash($common, { cancel => '',
+ focus_first => 1,
advanced_messages => formatAlaTeX(N("Mandriva Linux can support multiple languages. Select
the languages you would like to install. They will be available
when your installation is complete and you restart your system.")),
advanced_label => N("Multi languages"),
- callbacks => { advanced => sub { $langs->{$listval2val->($lang)} = 1 },
- changed => sub {
- if ($last_utf8 == $locale->{utf8}) {
- $last_utf8 = $locale->{utf8} = lang::utf8_should_be_needed({ lang => $listval2val->($lang), langs => $langs });
- } else {
- $last_utf8 = -1; #- disable auto utf8 once touched
- }
- } } });
+ });
$in->ask_from_($common, [
{ val => \$lang, separator => '|',
if_($using_images, image2f => sub { $name2l{$_[0]} =~ /^[a-z]/ && "langs/lang-$name2l{$_[0]}" }),
format => sub { $_[0] =~ /(.*\|)(.*)/ ? $1 . lang::l2name($2) : lang::l2name($_[0]) },
- list => \@langs, sort => 0 },
+ list => \@langs, sort => 0, changed => sub {
+ #- very special cases for langs which do not like UTF-8
+ $non_utf8 = $lang =~ /\bzh/ if !$utf8_forced;
+ }, focus_out => sub { $langs->{$listval2val->($lang)} = 1 } },
if_(!$::move,
- { val => \$locale->{utf8}, type => 'bool', text => N("Use Unicode by default"), advanced => 1 },
+ { val => \$non_utf8, type => 'bool', text => N("Old compatibility (non UTF-8) encoding"),
+ advanced => 1, changed => sub { $utf8_forced = 1 } },
{ val => \$langs->{all}, type => 'bool', text => N("All languages"), advanced => 1 },
map {
{ val => \$langs->{$_->[0]}, type => 'bool', disabled => sub { $langs->{all} },
@@ -827,6 +932,7 @@ when your installation is complete and you restart your system.")),
} sort { $a->[1] cmp $b->[1] } map { [ $_, $sort_func->($_) ] } lang::list_langs(),
),
]) or return;
+ $locale->{utf8} = !$non_utf8;
%$langs = grep_each { $::b } %$langs; #- clean hash
$langs->{$listval2val->($lang)} = 1;
@@ -842,12 +948,13 @@ sub selectLanguage_standalone {
interactive_help_id => 'selectLanguage' };
my @langs = sort { lang::l2name($a) cmp lang::l2name($b) } lang::list_langs(exclude_non_installed => 1);
- die 'one lang only' if @langs == 1;
+ my $non_utf8 = !$locale->{utf8};
$in->ask_from_($common, [
{ val => \$locale->{lang}, type => 'list',
- format => sub { lang::l2name($_[0]) }, list => \@langs },
- { val => \$locale->{utf8}, type => 'bool', text => N("Use Unicode by default"), advanced => 1 },
+ format => sub { lang::l2name($_[0]) }, list => \@langs, allow_empty_list => 1 },
+ { val => \$non_utf8, type => 'bool', text => N("Old compatibility (non UTF-8) encoding"), advanced => 1 },
]);
+ $locale->{utf8} = !$non_utf8;
lang::set($locale);
Gtk2->set_locale if $in->isa('interactive::gtk');
}
@@ -866,9 +973,7 @@ sub selectLanguage_and_more_standalone {
selectCountry($in, $locale) or goto language;
};
if ($@) {
- if ($@ =~ /^one lang only/) {
- selectCountry($in, $locale) or $in->exit(0);
- } elsif ($@ !~ /wizcancel/) {
+ if ($@ !~ /wizcancel/) {
die;
} else {
$in->exit(0);
@@ -888,8 +993,9 @@ sub selectCountry {
} @lang::locales;
@best == 1 and @best = ();
- my ($other, $ext_country);
- member($country, @best) or ($ext_country, $country) = ($country, $ext_country);
+ my $other = !member($country, @best);
+ my $ext_country = $country;
+ $other and @best = ();
$in->ask_from_(
{ title => N("Country / Region"),
@@ -898,13 +1004,11 @@ sub selectCountry {
interactive_help_id => 'selectCountry',
if_(@best, advanced_messages => N("Here is the full list of available countries")),
advanced_label => @best ? N("Other Countries") : N("Advanced"),
- advanced_state => $ext_country && scalar(@best),
- callbacks => { changed => sub { $_[0] != 2 and $other = $_[0] == 1 } },
},
[ if_(@best, { val => \$country, type => 'list', format => \&lang::c2name,
- list => \@best, sort => 1 }),
+ list => \@best, sort => 1, changed => sub { $other = 0 } }),
{ val => \$ext_country, type => 'list', format => \&lang::c2name,
- list => [ @countries ], advanced => scalar(@best) },
+ list => [ @countries ], advanced => scalar(@best), changed => sub { $other = 1 } },
{ val => \$locale->{IM}, type => 'combo', label => N("Input method:"),
sort => 0, separator => '|',
list => [ '', sort(lang::get_ims()) ],
@@ -919,7 +1023,7 @@ sub selectCountry {
sub set_login_serial_console {
my ($port, $speed) = @_;
- my $line = "s$port:12345:respawn:/sbin/getty ttyS$port DT$speed ansi\n";
+ my $line = "s$port:12345:respawn:/sbin/agetty ttyS$port $speed ansi\n";
substInFile { s/^s$port:.*//; $_ = $line if eof } "$::prefix/etc/inittab";
}
@@ -938,7 +1042,7 @@ sub report_bug {
header("dmidecode"), `dmidecode`,
header("fdisk"), arch() =~ /ppc/ ? `pdisk -l` : `fdisk -l`,
header("scsi"), cat_("/proc/scsi/scsi"),
- header("/sys/bus/scsi/devices"), `ls -l /sys/bus/scsi/devices`,
+ header("/sys/bus/scsi/devices"), -d '/sys/bus/scsi/devices' ? `ls -l /sys/bus/scsi/devices` : (),
header("lsmod"), cat_("/proc/modules"),
header("cmdline"), cat_("/proc/cmdline"),
header("pcmcia: stab"), cat_("$::prefix/var/lib/pcmcia/stab") || cat_("$::prefix/var/run/stab"),
@@ -953,55 +1057,18 @@ sub report_bug {
header("fstab"), cat_("$::prefix/etc/fstab"),
header("modprobe.conf"), cat_("$::prefix/etc/modprobe.conf"),
header("lilo.conf"), cat_("$::prefix/etc/lilo.conf"),
- header("menu.lst"), cat_("$::prefix/boot/grub/menu.lst"),
+ header("grub: menu.lst"), cat_("$::prefix/boot/grub/menu.lst"),
+ header("grub: install.sh"), cat_("$::prefix/boot/grub/install.sh"),
+ header("grub: device.map"), cat_("$::prefix/boot/grub/device.map"),
header("xorg.conf"), cat_("$::prefix/etc/X11/xorg.conf"),
+ header("urpmi.cfg"), cat_("$::prefix/etc/urpmi/urpmi.cfg"),
header("modprobe.preload"), cat_("$::prefix/etc/modprobe.preload"),
header("sysconfig/i18n"), cat_("$::prefix/etc/sysconfig/i18n"),
+ header("/proc/iomem"), cat_("/proc/iomem"),
+ header("/proc/ioport"), cat_("/proc/ioports"),
map_index { even($::i) ? header($_) : $_ } @other;
}
-sub devfssymlinkf {
- my ($if_struct, $of) = @_;
- my $if = $if_struct->{device};
-
- my $devfs_if = $if_struct->{devfs_device};
- $devfs_if ||= devices::to_devfs($if);
- $devfs_if ||= $if;
-
- #- example: $of is mouse, $if is usbmouse, $devfs_if is input/mouse0
-
- output_p("$::prefix/etc/devfs/conf.d/$of.conf",
-"REGISTER ^$devfs_if\$ CFUNCTION GLOBAL mksymlink $devfs_if $of
-UNREGISTER ^$devfs_if\$ CFUNCTION GLOBAL unlink $of
-");
-
- output_p("$::prefix/etc/devfs/conf.d/$if.conf",
-"REGISTER ^$devfs_if\$ CFUNCTION GLOBAL mksymlink $devfs_if $if
-UNREGISTER ^$devfs_if\$ CFUNCTION GLOBAL unlink $if
-") if $devfs_if ne $if && $if !~ /^hd[a-z]/ && $if !~ /^sr/ && $if !~ /^sd[a-z]/;
-
- #- add a specific udev script, we can't do it with a udev rule,
- #- eg, ttySL0 is a symlink
- output_with_perm("$::prefix/etc/udev/conf.d/$of.conf", 0755, "ln -sf $if /dev/$of\n")
- if $of !~ /dvd|mouse/;
-
- #- when creating a symlink on the system, use devfs name if devfs is mounted
- symlinkf($devfs_if, "$::prefix/dev/$if") if $devfs_if ne $if && detect_devices::dev_is_devfs();
- symlinkf($if, "$::prefix/dev/$of");
-}
-sub devfs_rawdevice {
- my ($if_struct, $of) = @_;
-
- my $devfs_if = $if_struct->{devfs_device};
- $devfs_if ||= devices::to_devfs($if_struct->{device});
- $devfs_if ||= $if_struct->{device};
-
- output_p("$::prefix/etc/devfs/conf.d/$of.conf",
-"REGISTER ^$devfs_if\$ EXECUTE /etc/dynamic/scripts/rawdevice.script add /dev/$devfs_if /dev/$of
-UNREGISTER ^$devfs_if\$ EXECUTE /etc/dynamic/scripts/rawdevice.script del /dev/$of
-");
-}
-
sub fix_broken_alternatives {
my ($force_default) = @_;
#- fix bad update-alternatives that may occurs after upgrade (and sometimes for install too).
@@ -1114,7 +1181,7 @@ sub monitor_full_edid() {
}
sub running_window_manager() {
- my @window_managers = qw(kwin gnome-session icewm wmaker afterstep fvwm fvwm2 fvwm95 mwm twm enlightenment xfce blackbox sawfish olvwm fluxbox);
+ my @window_managers = qw(kwin gnome-session icewm wmaker afterstep fvwm fvwm2 fvwm95 mwm twm enlightenment xfce blackbox sawfish olvwm fluxbox compiz);
foreach (@window_managers) {
my @pids = fuzzy_pidofs(qr/\b$_\b/) or next;
@@ -1163,6 +1230,23 @@ sub ask_window_manager_to_logout_then_do {
), $wm, $pid, $action;
}
+sub ask_for_X_restart {
+ my ($in) = @_;
+
+ $::isStandalone && $in->isa('interactive::gtk') or return;
+
+ my ($wm, $pid) = running_window_manager();
+
+ if (!$wm) {
+ $in->ask_warn('', N("Please log out and then use Ctrl-Alt-BackSpace"));
+ return;
+ }
+
+ $in->ask_okcancel('', N("You need to log out and back in again for changes to take effect"), 1) or return;
+
+ ask_window_manager_to_logout_then_do($wm, $pid, 'killall X');
+}
+
sub alloc_raw_device {
my ($prefix, $device) = @_;
my $used = 0;
@@ -1178,24 +1262,18 @@ sub alloc_raw_device {
}
sub config_dvd {
- my ($prefix, $have_devfsd) = @_;
-
- #- can not have both a devfs and a non-devfs config
- #- the /etc/sysconfig/rawdevices solution gives errors with devfs
+ my ($prefix) = @_;
my @dvds = grep { detect_devices::isDvdDrive($_) } detect_devices::cdroms() or return;
log::l("configuring DVD: " . join(" ", map { $_->{device} } @dvds));
#- create /dev/dvd symlink
each_index {
- devfssymlinkf($_, 'dvd' . ($::i ? $::i + 1 : ''));
- devfs_rawdevice($_, 'rdvd' . ($::i ? $::i + 1 : '')) if $have_devfsd;
+ devices::symlink_now_and_register($_, 'dvd' . ($::i ? $::i + 1 : ''));
} @dvds;
- if (!$have_devfsd) {
- my $raw_dev = alloc_raw_device($prefix, 'dvd');
- symlink($raw_dev, "$prefix/dev/rdvd");
- }
+ my $raw_dev = alloc_raw_device($prefix, 'dvd');
+ symlink($raw_dev, "$prefix/dev/rdvd");
}
sub config_mtools {
@@ -1210,4 +1288,42 @@ sub config_mtools {
} $file;
}
+sub configure_timezone {
+ my ($in, $timezone, $ask_gmt) = @_;
+
+ require timezone;
+ $timezone->{timezone} = $in->ask_from_treelist(N("Timezone"), N("Which is your timezone?"), '/', [ timezone::getTimeZones() ], $timezone->{timezone}) or return;
+
+ my $ntp = to_bool($timezone->{ntp});
+ my $servers = timezone::ntp_servers();
+ $timezone->{ntp} ||= 'pool.ntp.org';
+
+ require POSIX;
+ use POSIX qw(strftime);
+ my $time_format = "%H:%M:%S";
+ local $ENV{TZ} = $timezone->{timezone};
+
+ $in->ask_from_({ interactive_help_id => 'configureTimezoneGMT',
+ title => N("Date, Clock & Time Zone Settings"),
+ }, [
+ { label => N("Date, Clock & Time Zone Settings"), title => 1 },
+ { label => N("What is the best time?") },
+ { val => \$timezone->{UTC},
+ type => 'list', list => [ 0, 1 ], format => sub {
+ $_[0] ?
+ N("%s (hardware clock set to UTC)", POSIX::strftime($time_format, localtime())) :
+ N("%s (hardware clock set to local time)", POSIX::strftime($time_format, gmtime()));
+ } },
+ { label => N("NTP Server"), title => 1 },
+ { text => N("Automatic time synchronization (using NTP)"), val => \$ntp, type => 'bool' },
+ { val => \$timezone->{ntp}, disabled => sub { !$ntp },
+ type => "list", separator => '|',
+ list => [ keys %$servers ], format => sub { $servers->{$_[0]} } },
+ ]) or goto &configure_timezone if $ask_gmt || $ntp;
+
+ $timezone->{ntp} = '' if !$ntp;
+
+ 1;
+}
+
1;
diff --git a/perl-install/authentication.pm b/perl-install/authentication.pm
index 3e276e959..badefc499 100644
--- a/perl-install/authentication.pm
+++ b/perl-install/authentication.pm
@@ -107,7 +107,7 @@ sub ask_parameters {
my @srvs = query_srv_names($authentication->{AD_domain});
$authentication->{AD_server} ||= $srvs[0] if @srvs;
- my %sub_kinds = my @sub_kinds = (
+ my %sub_kinds = (
simple => N("simple"),
tls => N("TLS"),
ssl => N("SSL"),
@@ -178,8 +178,9 @@ sub ask_root_password_and_authentication {
my @kinds = kinds($in->do_pkgs, $meta_class);
$in->ask_from_({
- title => N("Set administrator (root) password and network authentication methods"),
+ title => N("Authentication"),
messages => N("Set administrator (root) password"),
+ icon => 'banner-pw',
advanced_label => N("Authentication method"),
advanced_messages => kind2description(@kinds),
interactive_help_id => "setRootPassword",
@@ -189,9 +190,7 @@ sub ask_root_password_and_authentication {
focus_first => 1,
callbacks => {
complete => sub {
- $superuser->{password} eq $superuser->{password2} or $in->ask_warn('', [ N("The passwords do not match"), N("Please try again") ]), return 1,0;
- length $superuser->{password} < 2 * $security
- and $in->ask_warn('', N("This password is too short (it must be at least %d characters long)", 2 * $security)), return 1,0;
+ check_given_password($in, $superuser, 2 * $security) or return 1,0;
return 0;
} } }, [
{ label => N("Password"), val => \$superuser->{password}, hidden => 1 },
@@ -202,16 +201,36 @@ sub ask_root_password_and_authentication {
ask_parameters($in, $net, $authentication, $kind) or goto &ask_root_password_and_authentication;
}
+sub check_given_password {
+ my ($in, $u, $min_length) = @_;
+ if ($u->{password} ne $u->{password2}) {
+ $in->ask_warn('', [ N("The passwords do not match"), N("Please try again") ]);
+ 0;
+ } elsif (length $u->{password} < $min_length) {
+ $in->ask_warn('', N("This password is too short (it must be at least %d characters long)", $min_length));
+ 0;
+ } else {
+ 1;
+ }
+}
sub get() {
- my @pam_kinds = get_pam_authentication_kinds();
- my @kinds = grep { intersection(\@pam_kinds, $kind2pam_kind{$_}) } keys %kind2pam_kind;
-
my $system_auth = cat_("/etc/pam.d/system-auth");
- {
+ my $authentication = {
md5 => $system_auth =~ /md5/, shadow => $system_auth =~ /shadow/,
- if_(@kinds, $kinds[0] => ''),
};
+
+ my @pam_kinds = get_pam_authentication_kinds();
+ if (my $kind = find { intersection(\@pam_kinds, $kind2pam_kind{$_}) } keys %kind2pam_kind) {
+ $authentication->{$kind} = '';
+ } else {
+ #- we can't use pam to detect NIS
+ if (my $yp_conf = read_yp_conf()) {
+ $authentication->{NIS} = 1;
+ map_each { $authentication->{"NIS_$::a"} = $::b } %$yp_conf;
+ }
+ }
+ $authentication;
}
sub install_needed_packages {
@@ -328,11 +347,21 @@ sub set_raw {
} elsif ($kind eq 'NIS') {
my $domain = $net->{network}{NISDOMAIN};
- $domain || $authentication->{NIS_server} ne "broadcast" or die N("Can not use broadcast with no NIS domain");
- my $t = $domain ? "domain $domain" . ($authentication->{NIS_server} ne "broadcast" && " server") : "ypserver";
+ my $NIS_server = $authentication->{NIS_server};
+ $domain || $NIS_server ne "broadcast" or die N("Can not use broadcast with no NIS domain");
+ my $t = $domain ?
+ ($NIS_server eq 'broadcast' ?
+ "domain $domain broadcast" :
+ "domain $domain server $NIS_server") :
+ "server $NIS_server";
+
substInFile {
- $_ = "#~$_" unless /^#/;
- $_ .= "$t $authentication->{NIS_server}\n" if eof;
+ if (/^#/) {
+ $_ = '' if /^#\Q[PREVIOUS]/;
+ } else {
+ $_ = "#[PREVIOUS] $_";
+ }
+ $_ .= "$t\n" if eof;
} "$::prefix/etc/yp.conf";
#- no need to modify system-auth for nis
@@ -347,8 +376,8 @@ sub set_raw {
my $domain = uc $authentication->{WINDOMAIN};
- require network::smb;
- network::smb::write_smb_conf($domain);
+ require fs::remote::smb;
+ fs::remote::smb::write_smb_conf($domain);
run_program::rooted($::prefix, "chkconfig", "--level", "35", "winbind", "on");
mkdir_p("$::prefix/home/$domain");
run_program::rooted($::prefix, 'service', 'smb', 'restart');
@@ -357,7 +386,8 @@ sub set_raw {
#- defer running smbpassword until the network is up
$when_network_is_up->(sub {
- run_program::rooted($::prefix, 'net', 'join', $domain, '-U', $authentication->{winuser} . '%' . $authentication->{winpass});
+ run_program::raw({ root => $::prefix, sensitive_arguments => 1 },
+ 'net', 'join', $domain, '-U', $authentication->{winuser} . '%' . $authentication->{winpass});
});
} elsif ($kind eq 'SMBKRB') {
$authentication->{AD_server} ||= 'ads.' . $authentication->{AD_domain};
@@ -366,8 +396,8 @@ sub set_raw {
configure_krb5_for_AD($authentication);
- require network::smb;
- network::smb::write_smb_ads_conf($domain,$realm);
+ require fs::remote::smb;
+ fs::remote::smb::write_smb_ads_conf($domain,$realm);
run_program::rooted($::prefix, "chkconfig", "--level", "35", "winbind", "on");
mkdir_p("$::prefix/home/$domain");
run_program::rooted($::prefix, 'net', 'time', 'set', '-S', $authentication->{AD_server});
@@ -375,7 +405,8 @@ sub set_raw {
run_program::rooted($::prefix, 'service', 'winbind', 'restart');
$when_network_is_up->(sub {
- run_program::rooted($::prefix, 'net', 'ads', 'join', '-U', $authentication->{winuser} . '%' . $authentication->{winpass});
+ run_program::raw({ root => $::prefix, sensitive_arguments => 1 },
+ 'net', 'ads', 'join', '-U', $authentication->{winuser} . '%' . $authentication->{winpass});
});
}
1;
@@ -416,11 +447,12 @@ sub set_pam_authentication {
my (@authentication_kinds) = @_;
my %special = (
- auth => \@authentication_kinds,
- account => [ difference2(\@authentication_kinds, [ 'castella' ]) ],
+ auth => [ difference2(\@authentication_kinds,, [ 'mount' ]) ],
+ account => [ difference2(\@authentication_kinds, [ 'castella', 'mount' ]) ],
password => [ intersection(\@authentication_kinds, [ 'ldap', 'krb5' ]) ],
);
my %before_first = (
+ auth => member('mount', @authentication_kinds) ? pam_format_line('auth', 'required', 'pam_mount') : '',
session =>
intersection(\@authentication_kinds, [ 'winbind', 'krb5', 'ldap' ])
? pam_format_line('session', 'optional', 'pam_mkhomedir', 'skel=/etc/skel/', 'umask=0022') :
@@ -428,7 +460,11 @@ sub set_pam_authentication {
? pam_format_line('session', 'optional', 'pam_castella') : '',
);
my %after_deny = (
- session => member('krb5', @authentication_kinds) ? pam_format_line('session', 'optional', 'pam_krb5') : '',
+ session =>
+ member('krb5', @authentication_kinds)
+ ? pam_format_line('session', 'optional', 'pam_krb5') :
+ member('mount', @authentication_kinds)
+ ? pam_format_line('session', 'optional', 'pam_mount') : '',
);
substInFile {
@@ -486,6 +522,18 @@ sub set_nsswitch_priority {
} "$::prefix/etc/nsswitch.conf";
}
+sub read_yp_conf() {
+ my $yp_conf = cat_("$::prefix/etc/yp.conf");
+
+ if ($yp_conf =~ /^domain\s+(\S+)\s+(\S+)\s*(.*)/m) {
+ { domain => $1, server => $2 eq 'broadcast' ? 'broadcast' : $3 };
+ } elsif ($yp_conf =~ /^server\s+(.*)/m) {
+ { server => $1 };
+ } else {
+ undef;
+ }
+}
+
my $special_ldap_cmds = join('|', 'nss_map_attribute', 'nss_map_objectclass');
sub _after_read_ldap_line {
my ($s) = @_;
@@ -599,6 +647,7 @@ sub krb5_conf_overwrite_category {
} $file;
}
+#- same as update_gnomekderc(), but allow spaces around "="
sub krb5_conf_update {
my ($file, $category, %subst_) = @_;
@@ -657,6 +706,16 @@ sub enable_shadow() {
run_program::rooted($::prefix, "grpconv") or log::l("grpconv failed");
}
+sub salt {
+ my ($nb) = @_;
+ require devices;
+ open(my $F, devices::make("random")) or die "missing random";
+ my $s; read $F, $s, $nb;
+ $s = pack("b8" x $nb, unpack "b6" x $nb, $s);
+ $s =~ tr|\0-\x3f|0-9a-zA-Z./|;
+ $s;
+}
+
sub user_crypted_passwd {
my ($u, $isMD5) = @_;
if ($u->{password}) {
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm
index 93f3215c1..7c3eab5ad 100644
--- a/perl-install/bootloader.pm
+++ b/perl-install/bootloader.pm
@@ -37,10 +37,16 @@ sub vmlinuz2version {
my ($vmlinuz) = @_;
expand_vmlinuz_symlink($vmlinuz) =~ /$decompose_vmlinuz_name/ && $2;
}
-sub vmlinuz2basename {
+sub vmlinuz2kernel_str {
my ($vmlinuz) = @_;
- expand_vmlinuz_symlink($vmlinuz) =~ /$decompose_vmlinuz_name/ && $1;
+ my ($basename, $version) = expand_vmlinuz_symlink($vmlinuz) =~ /$decompose_vmlinuz_name/ or return;
+ {
+ basename => $basename,
+ version => $version,
+ $version =~ /(.*md[kv])-?(.*)/ ? (ext => $2, version_no_ext => $1) : (version_no_ext => $version),
+ };
}
+
sub basename2initrd_basename {
my ($basename) = @_;
$basename =~ s!vmlinuz-?!!; #- here we do not use $vmlinuz_regexp since we explictly want to keep all that is not "vmlinuz"
@@ -73,21 +79,12 @@ sub kernel_str2initrd_short {
}
}
-sub vmlinuz2kernel_str {
- my ($vmlinuz) = @_;
- my ($basename, $version) = expand_vmlinuz_symlink($vmlinuz) =~ /$decompose_vmlinuz_name/ or return;
- {
- basename => $basename,
- version => $version,
- $version =~ /(.*mdk)-?(.*)/ ? (ext => $2, version_no_ext => $1) : (version_no_ext => $version),
- };
-}
sub kernel_str2label {
my ($kernel, $o_use_long_name) = @_;
my $base = $kernel->{basename} eq 'vmlinuz' ? 'linux' : $kernel->{basename};
$o_use_long_name || $kernel->{use_long_name} ?
sanitize_ver($base, $kernel) :
- $kernel->{ext} ? "$base-$kernel->{ext}" : $base;
+ $kernel->{ext} ? "$base-" . short_ext($kernel) : $base;
}
sub get {
@@ -102,10 +99,9 @@ sub get_label {
}
sub mkinitrd {
- my ($kernel_version, $entry) = @_;
+ my ($kernel_version, $bootloader, $entry, $initrd) = @_;
- my $initrd = $entry->{initrd};
- $::testing || -e "$::prefix/$initrd" and return 1;
+ $::testing || -e "$::prefix/$initrd" and return $initrd;
my $loop_boot = fs::loopback::prepare_boot();
@@ -118,11 +114,23 @@ sub mkinitrd {
unlink("$::prefix/$initrd");
die "mkinitrd failed:\n(mkinitrd @options))";
}
- add_boot_splash($entry->{initrd}, $entry->{vga});
+ add_boot_splash($initrd, $entry->{vga} || $bootloader->{vga});
fs::loopback::save_boot($loop_boot);
- -e "$::prefix/$initrd";
+ -e "$::prefix/$initrd" && $initrd;
+}
+
+sub rebuild_initrd {
+ my ($kernel_version, $bootloader, $entry, $initrd) = @_;
+
+ my $old = $::prefix . $entry->{initrd} . '.old';
+ unlink $old;
+ rename "$::prefix$initrd", $old;
+ if (!mkinitrd($kernel_version, $bootloader, $entry, $initrd)) {
+ log::l("rebuilding initrd failed, putting back the old one");
+ rename $old, "$::prefix$initrd";
+ }
}
sub remove_boot_splash {
@@ -141,6 +149,13 @@ sub add_boot_splash {
log::l("unknown vga bios mode $vga");
}
}
+sub update_splash {
+ my ($bootloader) = @_;
+
+ foreach (@{$bootloader->{entries}}) {
+ bootloader::add_boot_splash($_->{initrd}, $_->{vga} || $bootloader->{vga}) if $_->{initrd};
+ }
+}
sub read {
my ($all_hds) = @_;
@@ -163,11 +178,8 @@ sub read {
if (m!/fd\d+$!) {
warn "not checking the method on floppy, assuming $main_method is right\n";
$main_method;
- } elsif ($main_method eq 'yaboot') {
- #- not checking on ppc, there's only yaboot anyway :)
- $main_method;
- } elsif ($main_method eq 'cromwell') {
- #- XBox
+ } elsif (member($main_method, qw(yaboot cromwell silo))) {
+ #- not checking, there's only one bootloader anyway :)
$main_method;
} elsif (my $type = partition_table::raw::typeOfMBR($_)) {
warn "typeOfMBR $type on $_ for method $main_method\n" if $ENV{DEBUG};
@@ -179,9 +191,11 @@ sub read {
my @prefered_entries = map { get_label($_, $bootloader) } $bootloader->{default}, 'linux';
if (my $default = find { $_ && $_->{type} eq 'image' } (@prefered_entries, @{$bootloader->{entries}})) {
- $bootloader->{default_vga} = $default->{vga};
+ $bootloader->{default_options} = $default;
$bootloader->{perImageAppend} ||= $default->{append};
log::l("perImageAppend is now $bootloader->{perImageAppend}");
+ } else {
+ $bootloader->{default_options} = {};
}
return $bootloader;
}
@@ -234,14 +248,10 @@ sub read_grub_menu_lst {
} else {
if ($keyword eq 'kernel') {
$e->{type} = 'image';
- (my $kernel, $e->{append}) = split(' ', $v, 2);
- $e->{root} = $1 if $e->{append} =~ s/root=(\S*)\s*//;
- $e->{kernel_or_dev} = grub2file($kernel, $grub2dev, $fstab);
- } elsif ($keyword eq 'root') {
+ $e->{kernel} = $v;
+ } elsif ($keyword eq 'root' || $keyword eq 'rootnoverify') {
$e->{type} = 'other';
- if ($v !~ /,/) {
- $e->{unsafe} = 1;
- }
+ $e->{grub_noverify} = 1 if $keyword eq 'rootnoverify';
$e->{kernel_or_dev} = grub2dev($v, $grub2dev);
$e->{append} = "";
} elsif ($keyword eq 'initrd') {
@@ -257,11 +267,23 @@ sub read_grub_menu_lst {
}
#- sanitize
- foreach (@{$b{entries}}) {
- my ($vga, $other) = partition { /^vga=/ } split(' ', $_->{append});
+ foreach my $e (@{$b{entries}}) {
+ if ($e->{kernel} =~ /xen/ && @{$e->{modules}} == 2 && $e->{modules}[1] =~ /initrd/) {
+ (my $xen, $e->{xen_append}) = split(' ', $e->{kernel}, 2);
+ ($e->{kernel}, my $initrd) = @{delete $e->{modules}};
+ $e->{xen} = grub2file($xen, $grub2dev, $fstab);
+ $e->{initrd} = grub2file($initrd, $grub2dev, $fstab);
+ }
+ if (my $v = delete $e->{kernel}) {
+ (my $kernel, $e->{append}) = split(' ', $v, 2);
+ $e->{append} = join(' ', grep { !/^BOOT_IMAGE=/ } split(' ', $e->{append}));
+ $e->{root} = $1 if $e->{append} =~ s/root=(\S*)\s*//;
+ $e->{kernel_or_dev} = grub2file($kernel, $grub2dev, $fstab);
+ }
+ my ($vga, $other) = partition { /^vga=/ } split(' ', $e->{append});
if (@$vga) {
- $_->{vga} = $vga->[0] =~ /vga=(.*)/ && $1;
- $_->{append} = join(' ', @$other);
+ $e->{vga} = $vga->[0] =~ /vga=(.*)/ && $1;
+ $e->{append} = join(' ', @$other);
}
}
@@ -271,12 +293,7 @@ sub read_grub_menu_lst {
$b{default} = min($b{default}, scalar(@{$b{entries}}) - 1);
$b{default} = $b{entries}[$b{default}]{label};
}
- $b{method} = $b{splashimage} ? 'grub-graphic' : 'grub-menu';
-
- if ($b{splashimage} =~ m!^/boot! && ! -e "$::prefix$b{splashimage}") {
- log::l("dropping bootloader splashimage since $b{splashimage} doesn't exist");
- delete $b{splashimage};
- }
+ $b{method} = $b{gfxmenu} ? 'grub-graphic' : 'grub-menu';
\%b;
}
@@ -299,46 +316,70 @@ sub yaboot2file {
}
}
+sub read_silo() {
+ my $bootloader = read_lilo_like("/boot/silo.conf", sub {
+ my ($f) = @_;
+ "/boot$f";
+ });
+ $bootloader->{method} = 'silo';
+ $bootloader;
+}
sub read_cromwell() {
my %b;
$b{method} = 'cromwell';
\%b;
}
-sub read_yaboot() { &read_lilo }
+sub read_yaboot() {
+ my $bootloader = read_lilo_like("/etc/yaboot.conf", \&yaboot2file);
+ $bootloader->{method} = 'yaboot';
+ $bootloader;
+}
sub read_lilo() {
- my $file = sprintf("$::prefix/etc/%s.conf", arch() =~ /ppc/ ? 'yaboot' : 'lilo');
+ my $bootloader = read_lilo_like("/etc/lilo.conf", sub { $_[0] });
+
+ delete $bootloader->{timeout} unless $bootloader->{prompt};
+ $bootloader->{timeout} = $bootloader->{timeout} / 10 if $bootloader->{timeout};
+
+ my $submethod = member($bootloader->{install}, 'text', 'menu') ? $bootloader->{install} : 'menu';
+ $bootloader->{method} = "lilo-$submethod";
+
+ $bootloader;
+}
+sub read_lilo_like {
+ my ($file, $filter_file) = @_;
+
my $global = 1;
- my ($e, $v);
+ my ($e);
my %b;
- -e $file or return;
- foreach (cat_($file)) {
- next if /^\s*#/ || /^\s*$/;
- ($_, $v) = /^\s*([^=\s]+)\s*(?:=\s*(.*?))?\s*$/ or log::l("unknown line in $file: $_"), next;
-
- if (/^(?:image|other|macos|macosx|bsd|darwin)$/) {
- $v = yaboot2file($v) if arch() =~ /ppc/;
- push @{$b{entries}}, $e = { type => $_, kernel_or_dev => $v };
+ -e "$::prefix$file" or return;
+ foreach my $line (cat_("$::prefix$file")) {
+ next if $line =~ /^\s*#/ || $line =~ /^\s*$/;
+ my ($cmd, $v) = $line =~ /^\s*([^=\s]+)\s*(?:=\s*(.*?))?\s*$/ or log::l("unknown line in $file: $line"), next;
+
+ if ($cmd =~ /^(?:image|other|macos|macosx|bsd|darwin)$/) {
+ $v = $filter_file->($v);
+ push @{$b{entries}}, $e = { type => $cmd, kernel_or_dev => $v };
$global = 0;
} elsif ($global) {
- if ($_ eq 'disk' && $v =~ /(\S+)\s+bios\s*=\s*(\S+)/) {
+ if ($cmd eq 'disk' && $v =~ /(\S+)\s+bios\s*=\s*(\S+)/) {
$b{bios}{$1} = $2;
- } elsif ($_ eq 'bios') {
+ } elsif ($cmd eq 'bios') {
$b{bios}{$b{disk}} = $v;
- } elsif ($_ eq 'init-message') {
+ } elsif ($cmd eq 'init-message') {
$v =~ s/\\n//g;
$v =~ s/"//g;
$b{'init-message'} = $v;
} else {
- $b{$_} = $v eq '' ? 1 : $v;
+ $b{$cmd} = $v eq '' ? 1 : $v;
}
} else {
- if ((/map-drive/ .. /to/) && /to/) {
+ if (($cmd eq 'map-drive' .. $cmd eq 'to') && $cmd eq 'to') {
$e->{mapdrive}{$e->{'map-drive'}} = $v;
} else {
- if (arch() =~ /ppc/ && $_ eq 'initrd') {
- $v = yaboot2file($v);
+ if ($cmd eq 'initrd') {
+ $v = $filter_file->($v);
}
- $e->{$_} = $v || 1;
+ $e->{$cmd} = $v || 1;
}
}
}
@@ -359,14 +400,16 @@ sub read_lilo() {
foreach ('append', 'root', 'label') {
$entry->{$_} = remove_quotes_and_spaces($entry->{$_}) if $entry->{$_};
}
- }
-
- if (arch() =~ /ppc/) {
- $b{method} = 'yaboot';
- } else {
- delete $b{timeout} unless $b{prompt};
- $b{timeout} = $b{timeout} / 10 if $b{timeout};
- $b{method} = 'lilo-' . (member($b{install}, 'text', 'menu', 'graphic') ? $b{install} : 'graphic');
+ if ($entry->{kernel_or_dev} =~ /\bmbootpack\b/) {
+ $entry->{initrd} = $entry->{kernel_or_dev};
+ $entry->{initrd} =~ s/\bmbootpack/initrd/;
+ $entry->{kernel_or_dev} =~ s/\bmbootpack/vmlinuz/;
+ $entry->{kernel_or_dev} =~ s/.img$//;
+ #- assume only xen is configured with mbootpack
+ $entry->{xen} = '/boot/xen.gz';
+ $entry->{root} = $1 if $entry->{append} =~ s/root=(\S*)\s*//;
+ ($entry->{xen_append}, $entry->{append}) = split '\s*--\s*', $entry->{append}, 2;
+ }
}
# cleanup duplicate labels (in case file is corrupted)
@@ -419,7 +462,7 @@ sub same_entries {
my ($a, $b) = @_;
foreach (uniq(keys %$a, keys %$b)) {
- if (member($_, 'label', 'append', 'mapdrive', 'readonly')) {
+ if (member($_, 'label', 'append', 'mapdrive', 'readonly', 'makeactive')) {
next;
} else {
next if $a->{$_} eq $b->{$_};
@@ -492,13 +535,17 @@ sub _do_the_symlink {
return;
}
- #- the symlink is going to change!
- #- replace all the {$kind} using this symlink to the real file
- my $old_long_name = $existing_link =~ m!^/! ? $existing_link : "/boot/$existing_link";
- if (-e "$::prefix$old_long_name") {
- $bootloader->{old_long_names}{$link} = $old_long_name;
- } else {
- log::l("ERROR: $link points to $old_long_name which does not exist");
+ if ($existing_link) {
+ #- the symlink is going to change!
+ #- replace all the {$kind} using this symlink to the real file
+ my $old_long_name = $existing_link =~ m!^/! ? $existing_link : "/boot/$existing_link";
+ if (-e "$::prefix$old_long_name") {
+ $bootloader->{old_long_names}{$link} = $old_long_name;
+ } else {
+ log::l("ERROR: $link points to $old_long_name which does not exist");
+ }
+ } elsif (-e "$::prefix$link") {
+ log::l("ERROR: $link is not a symbolic link");
}
#- changing the symlink
@@ -518,9 +565,49 @@ sub cmp_kernel_versions {
$r || $rel_a <=> $rel_b || $rel_a cmp $rel_b;
}
+sub get_mbootpack_filename {
+ my ($entry) = @_;
+ my $mbootpack_file = $entry->{initrd};
+ $mbootpack_file =~ s/\binitrd/mbootpack/;
+ $entry->{xen} && $mbootpack_file;
+}
+
+sub build_mbootpack {
+ my ($entry) = @_;
+
+ my $mbootpack = '/usr/bin/mbootpack';
+ -f $::prefix . $entry->{kernel_or_dev} && -f $::prefix . $entry->{initrd} or return;
+
+ my $mbootpack_file = get_mbootpack_filename($entry);
+ -f ($::prefix . $mbootpack_file) and return 1;
+
+ my $error;
+ my $xen_kernel = '/tmp/xen_kernel';
+ my $xen_vmlinux = '/tmp/xen_vmlinux';
+ my $_b = before_leaving { unlink $::prefix . $_ foreach $xen_kernel, $xen_vmlinux };
+ run_program::rooted($::prefix, '/bin/gzip', '>', $xen_kernel, '2>', \$error, '-dc', $entry->{xen})
+ or die "unable to uncompress xen kernel";
+ run_program::rooted($::prefix, '/bin/gzip', '>', $xen_vmlinux, '2>', \$error, '-dc', $entry->{kernel_or_dev})
+ or die "unable to uncompress xen vmlinuz";
+
+ run_program::rooted($::prefix, $mbootpack,
+ "2>", \$error,
+ '-o', $mbootpack_file,
+ '-m', $xen_vmlinux,
+ '-m', $entry->{initrd},
+ $xen_kernel)
+ or die "mbootpack failed: $error";
+
+ 1;
+}
+
sub add_kernel {
my ($bootloader, $kernel_str, $v, $b_nolink, $b_no_initrd) = @_;
+ if (short_ext($kernel_str) eq 'xen' && -f '/boot/xen.gz') {
+ $v->{xen} = '/boot/xen.gz';
+ }
+
add2hash($v,
{
type => 'image',
@@ -530,6 +617,10 @@ sub add_kernel {
#- normalize append and handle special options
{
my ($simple, $dict) = unpack_append("$bootloader->{perImageAppend} $v->{append}");
+ if ($v->{label} eq 'failsafe') {
+ #- perImageAppend contains resume=/dev/xxx which we don't want
+ @$dict = grep { $_->[0] ne 'resume' } @$dict;
+ }
if (-e "$::prefix/sbin/udev" && cmp_kernel_versions($kernel_str->{version_no_ext}, '2.6.8') >= 0) {
log::l("it is a recent kernel, so we remove any existing devfs= kernel option to enable udev");
@$dict = grep { $_->[0] ne 'devfs' } @$dict;
@@ -553,8 +644,7 @@ sub add_kernel {
if (!$b_no_initrd) {
my $initrd_long = kernel_str2initrd_long($kernel_str);
- $v->{initrd} = "/boot/$initrd_long";
- mkinitrd($kernel_str->{version}, $v) or undef $v->{initrd};
+ $v->{initrd} = mkinitrd($kernel_str->{version}, $bootloader, $v, "/boot/$initrd_long");
if ($v->{initrd} && !$b_nolink) {
$v->{initrd} = '/boot/' . kernel_str2initrd_short($kernel_str);
_do_the_symlink($bootloader, $v->{initrd}, $initrd_long);
@@ -564,6 +654,19 @@ sub add_kernel {
add_entry($bootloader, $v);
}
+sub rebuild_initrds {
+ my ($bootloader) = @_;
+
+ my %done;
+ foreach my $v (grep { $_->{initrd} } @{$bootloader->{entries}}) {
+ my $kernel_str = vmlinuz2kernel_str($v->{kernel_or_dev});
+ my $initrd_long = '/boot/' . kernel_str2initrd_long($kernel_str);
+ next if $done{$initrd_long}++;
+
+ rebuild_initrd($kernel_str->{version}, $bootloader, $v, $initrd_long);
+ }
+}
+
sub duplicate_kernel_entry {
my ($bootloader, $new_label) = @_;
@@ -686,12 +789,13 @@ sub set_append_netprofile {
}
sub configure_entry {
- my ($entry) = @_;
+ my ($bootloader, $entry) = @_;
$entry->{type} eq 'image' or return;
if (my $kernel_str = vmlinuz2kernel_str($entry->{kernel_or_dev})) {
- $entry->{initrd} ||= '/boot/' . kernel_str2initrd_short($kernel_str);
- mkinitrd($kernel_str->{version}, $entry) or undef $entry->{initrd};
+ $entry->{initrd} =
+ mkinitrd($kernel_str->{version}, $bootloader, $entry,
+ $entry->{initrd} || '/boot/' . kernel_str2initrd_short($kernel_str));
}
}
@@ -732,26 +836,33 @@ sub get_kernel_labels {
@kernels_str;
}
+sub short_ext {
+ my ($kernel_str) = @_;
+
+ my $short_ext = {
+ 'i586-up-1GB' => 'i586',
+ 'i686-up-4GB' => '4GB',
+ 'xen0' => 'xen',
+ }->{$kernel_str->{ext}};
+
+ $short_ext || $kernel_str->{ext};
+}
sub sanitize_ver {
my ($name, $kernel_str) = @_;
$name = '' if $name eq 'linux';
- my ($v, $ext) = ($kernel_str->{version_no_ext}, $kernel_str->{ext});
+ my $v = $kernel_str->{version_no_ext};
if ($v =~ s/-\d+\.mm\././) {
$name = join(' ', grep { $_ } $name, 'multimedia');
+ } elsif ($v =~ s/-(desktop|server|laptop)-/-/) {
+ $name = join(' ', grep { $_ } $name, $1);
}
- $v =~ s!mdk$!!;
+ $v =~ s!md[kv]$!!;
$v =~ s!-0\.(pre|rc)(\d+)\.!$1$2-!;
- my $short_ext = {
- 'i586-up-1GB' => 'i586',
- 'i686-up-4GB' => '4GB',
- }->{$ext};
- $ext = $short_ext if $short_ext;
-
- my $return = join(' ', grep { $_ } $name, $ext, $v);
+ my $return = join(' ', grep { $_ } $name, short_ext($kernel_str), $v);
length($return) < 30 or $return =~ s!secure!sec!;
length($return) < 30 or $return =~ s!enterprise!ent!;
@@ -773,8 +884,14 @@ wait for default boot.
");
my $msg = translate($msg_en);
- #- use the english version if more than 20% of 8bits chars
- $msg = $msg_en if int(grep { $_ & 0x80 } unpack "c*", $msg) / length($msg) > 0.2;
+ #- use the english version if more than 40% of 8bits chars
+ #- else, use the translation but force a conversion to ascii
+ #- to be sure there won't be undisplayable characters
+ if (int(grep { $_ & 0x80 } unpack "c*", $msg) / length($msg) > 0.4) {
+ $msg = $msg_en;
+ } else {
+ $msg = Locale::gettext::iconv($msg, "utf-8", "ascii//TRANSLIT");
+ }
$bootloader->{message_text} = $msg;
}
}
@@ -845,7 +962,7 @@ sub suggest {
@{$bootloader->{entries}} = grep { $_->{label} ne 'failsafe' } @{$bootloader->{entries}};
add_kernel($bootloader, $kernels[0],
- { root => $root, label => 'failsafe', append => 'devfs=nomount failsafe' });
+ { root => $root, label => 'failsafe', append => 'failsafe' });
if (arch() =~ /ppc/) {
#- if we identified a MacOS partition earlier - add it
@@ -878,7 +995,7 @@ sub suggest {
$bootloader->{default} ||= $preferred;
}
$bootloader->{default} ||= "linux";
- $bootloader->{method} ||= first(method_choices($all_hds));
+ $bootloader->{method} ||= first(method_choices($all_hds, 1));
}
sub detect_main_method {
@@ -908,11 +1025,11 @@ sub config_files() {
sub method2text {
my ($method) = @_;
+{
- 'lilo-graphic' => N("LILO with graphical menu"),
'lilo-menu' => N("LILO with text menu"),
'grub-graphic' => N("GRUB with graphical menu"),
'grub-menu' => N("GRUB with text menu"),
'yaboot' => N("Yaboot"),
+ 'silo' => N("SILO"),
}->{$method};
}
@@ -921,24 +1038,25 @@ sub method_choices_raw {
detect_devices::is_xbox() ? 'cromwell' :
arch() =~ /ppc/ ? 'yaboot' :
arch() =~ /ia64/ ? 'lilo' :
+ arch() =~ /sparc/ ? 'silo' :
(
- if_(!$b_prefix_mounted || whereis_binary('lilo', $::prefix),
- 'lilo-graphic', 'lilo-menu'),
if_(!$b_prefix_mounted || whereis_binary('grub', $::prefix),
'grub-graphic', 'grub-menu'),
+ if_(!$b_prefix_mounted || whereis_binary('lilo', $::prefix),
+ 'lilo-menu'),
);
}
sub method_choices {
- my ($all_hds) = @_;
+ my ($all_hds, $b_prefix_mounted) = @_;
my $fstab = [ fs::get::fstab($all_hds) ];
my $root_part = fs::get::root($fstab);
my $have_dmraid = find { fs::type::is_dmraid($_) } @{$all_hds->{hds}};
grep {
(!/lilo/ || !isLoopback($root_part) && !$have_dmraid)
- && (!/lilo-graphic/ || !detect_devices::matching_desc__regexp('ProSavageDDR'))
- && (!/grub/ || !isRAID($root_part));
- } method_choices_raw(1);
+ && (!/grub/ || !isRAID($root_part))
+ && (!/grub-graphic/ || cat_("/proc/cmdline") !~ /console=ttyS/);
+ } method_choices_raw($b_prefix_mounted);
}
sub main_method_choices {
my ($b_prefix_mounted) = @_;
@@ -971,6 +1089,8 @@ sub create_link_source() {
-d $_ or next;
log::l("creating symlink $_/build");
symlink "/usr/src/linux-$version", "$_/build";
+ log::l("creating symlink $_/source");
+ symlink "/usr/src/linux-$version", "$_/source";
}
}
}
@@ -1017,7 +1137,7 @@ sub write_yaboot {
my @conf;
if (!get_label($bootloader->{default}, $bootloader)) {
- log::l("default bootloader entry $bootloader->{default} is invalid, choose another one");
+ log::l("default bootloader entry $bootloader->{default} is invalid, choosing another one");
$bootloader->{default} = $bootloader->{entries}[0]{label};
}
push @conf, "# yaboot.conf - generated by DrakX/drakboot";
@@ -1073,7 +1193,7 @@ sub install_yaboot {
sub when_config_changed_yaboot {
my ($bootloader) = @_;
$::testing and return;
- if (defined $install_steps_interactive::new_bootstrap) {
+ if (defined $partition_table::mac::new_bootstrap) {
run_program::run("hformat", $bootloader->{boot}) or die "hformat failed";
}
my $error;
@@ -1093,14 +1213,19 @@ sub when_config_changed_cromwell {
log::l("XBox/Cromwell - nothing to do...");
}
-sub make_label_lilo_compatible {
+sub simplify_label {
my ($label) = @_;
length($label) < 31 or $label =~ s/\.//g;
$label = substr($label, 0, 31); #- lilo does not handle more than 31 char long labels
$label =~ s/ /_/g; #- lilo does not support blank character in image names, labels or aliases
- qq("$label");
+ $label;
+}
+
+sub make_label_lilo_compatible {
+ my ($label) = @_;
+ '"' . simplify_label($label) . '"';
}
sub write_lilo {
@@ -1149,20 +1274,22 @@ sub write_lilo {
foreach my $entry (@{$bootloader->{entries}}) {
delete $entry->{restricted} if !$entry->{password} && !$bootloader->{password};
}
+ if (get_append_with_key($bootloader, 'console') =~ /ttyS(.*)/) {
+ $bootloader->{serial} ||= $1;
+ }
if (!get_label($bootloader->{default}, $bootloader)) {
- log::l("default bootloader entry $bootloader->{default} is invalid, choose another one");
+ log::l("default bootloader entry $bootloader->{default} is invalid, choosing another one");
$bootloader->{default} = $bootloader->{entries}[0]{label};
}
push @conf, "# File generated by DrakX/drakboot";
push @conf, "# WARNING: do not forget to run lilo after modifying this file\n";
push @conf, "default=" . make_label_lilo_compatible($bootloader->{default}) if $bootloader->{default};
- push @conf, map { $_ . '=' . $quotes_if_needed->($bootloader->{$_}) } grep { $bootloader->{$_} } qw(boot root map install vga keytable raid-extra-boot menu-scheme);
+ push @conf, map { $_ . '=' . $quotes_if_needed->($bootloader->{$_}) } grep { $bootloader->{$_} } qw(boot root map install serial vga keytable raid-extra-boot menu-scheme);
push @conf, grep { $bootloader->{$_} } qw(linear geometric compact prompt nowarn restricted static-bios-codes);
push @conf, "append=" . $quotes->($bootloader->{append}) if $bootloader->{append};
push @conf, "password=" . $bootloader->{password} if $bootloader->{password}; #- also done by msec
push @conf, "timeout=" . round(10 * $bootloader->{timeout}) if $bootloader->{timeout};
- push @conf, "serial=" . $1 if get_append_with_key($bootloader, 'console') =~ /ttyS(.*)/;
push @conf, "message=$bootloader->{message}" if $bootloader->{message};
@@ -1171,14 +1298,23 @@ sub write_lilo {
push @conf, map_each { "disk=$::a bios=$::b" } %{$bootloader->{bios}};
foreach my $entry (@{$bootloader->{entries}}) {
- push @conf, "$entry->{type}=" . $file2fullname->($entry->{kernel_or_dev});
+ my $mbootpack_file = get_mbootpack_filename($entry);
+ if ($mbootpack_file && !build_mbootpack($entry)) {
+ warn "mbootpack is required for xen but unavailable, skipping\n";
+ next;
+ }
+
+ push @conf, "$entry->{type}=" . $file2fullname->($mbootpack_file || $entry->{kernel_or_dev});
my @entry_conf;
push @entry_conf, "label=" . make_label_lilo_compatible($entry->{label}) if $entry->{label};
if ($entry->{type} eq "image") {
- push @entry_conf, 'root=' . $quotes_if_needed->($entry->{root}) if $entry->{root};
- push @entry_conf, "initrd=" . $file2fullname->($entry->{initrd}) if $entry->{initrd};
- push @entry_conf, "append=" . $quotes->($entry->{append}) if $entry->{append};
+ push @entry_conf, 'root=' . $quotes_if_needed->($entry->{root}) if $entry->{root} && !$entry->{xen};
+ push @entry_conf, "initrd=" . $file2fullname->($entry->{initrd}) if $entry->{initrd} && !$mbootpack_file;
+ my $append = join(' ', if_($entry->{xen_append}, $entry->{xen_append}),
+ if_($entry->{xen}, '--', 'root=' . $entry->{root}),
+ if_($entry->{append}, $entry->{append}));
+ push @entry_conf, "append=" . $quotes->($append) if $append;
push @entry_conf, "vga=$entry->{vga}" if $entry->{vga};
push @entry_conf, grep { $entry->{$_} } qw(read-write read-only optional);
} else {
@@ -1223,12 +1359,17 @@ sub install_lilo {
if ($bootloader->{message_text}) {
output("$::prefix/boot/message-text", $bootloader->{message_text});
}
- my $message = "message-" . ($bootloader->{method} ne 'lilo-graphic' ? 'text' : 'graphic');
+ my $message = "message-text";
if (-r "$::prefix/boot/$message") {
symlinkf $message, "$::prefix/boot/message";
$bootloader->{message} = '/boot/message';
}
+ #- ensure message does not contain the old graphic format
+ if ($bootloader->{message} && -s "$::prefix$bootloader->{message}" > 65_000) {
+ output("$::prefix$bootloader->{message}", '');
+ }
+
write_lilo($bootloader, $all_hds);
when_config_changed_lilo($bootloader);
@@ -1293,9 +1434,13 @@ sub device2grub {
$device->{rootDevice} ?
(fs::get::device2part($device->{rootDevice}, $sorted_hds), $device->{device} =~ /(\d+)$/) :
$device;
- my $bios = find_index { $hd eq $_ } @$sorted_hds;
- my $part_string = defined $part_nb ? ',' . ($part_nb - 1) : '';
- "(hd$bios$part_string)";
+ my $bios = eval { find_index { $hd eq $_ } @$sorted_hds };
+ if (defined $bios) {
+ my $part_string = defined $part_nb ? ',' . ($part_nb - 1) : '';
+ "(hd$bios$part_string)";
+ } else {
+ undef;
+ }
}
sub read_grub_device_map() {
@@ -1341,6 +1486,34 @@ sub grub2file {
}
}
+sub boot_copies_dir() { '/boot/copied' }
+sub create_copy_in_boot {
+ my ($file) = @_;
+
+ my $s = $file;
+ $s =~ s!/!_!g;
+ my $file2 = boot_copies_dir() . "/$s";
+
+ log::l("$file is not available at boot time, creating a copy ($file2)");
+ mkdir_p(boot_copies_dir());
+ output("$file2.link", $file . "\n");
+ update_copy_in_boot("$file2.link");
+
+ $file2;
+}
+sub update_copy_in_boot {
+ my ($link) = @_;
+ my $orig = chomp_(cat_("$::prefix$link"));
+ (my $dest = $link) =~ s/\.link$// or internal_error("update_copy_in_boot: $link");
+ if (-e "$::prefix$orig") {
+ log::l("updating $dest from $orig");
+ cp_af("$::prefix$orig", "$::prefix$dest");
+ } else {
+ log::l("removing $dest since $orig does not exist anymore");
+ unlink "$::prefix$link", "$::prefix$orig";
+ }
+}
+
sub write_grub {
my ($bootloader, $all_hds) = @_;
@@ -1349,71 +1522,90 @@ sub write_grub {
my @sorted_hds = sort_hds_according_to_bios($bootloader, $all_hds);
write_grub_device_map(\@legacy_floppies, \@sorted_hds);
- my $file2grub = sub {
+ my $file2grub; $file2grub = sub {
my ($file) = @_;
if ($file =~ m!^\(.*\)/!) {
$file; #- it's already in grub format
} else {
- my ($part, $rel_file) = fs::get::file2part($fstab, $_[0], 'keep_simple_symlinks');
- device2grub($part, \@sorted_hds) . $rel_file;
+ my ($part, $rel_file) = fs::get::file2part($fstab, $file, 'keep_simple_symlinks');
+ if (my $grub = device2grub($part, \@sorted_hds)) {
+ $grub . $rel_file;
+ } elsif (!begins_with($file, '/boot/')) {
+ log::l("$file is on device $part->{device} which is not available at boot time. Copying it");
+ $file2grub->(create_copy_in_boot($file));
+ } else {
+ log::l("ERROR: $file is on device $part->{device} which is not available at boot time. Defaulting to a dumb value");
+ "(hd0,0)$file";
+ }
}
};
if (get_append_with_key($bootloader, 'console') =~ /ttyS(\d),(\d+)/) {
$bootloader->{serial} ||= "--unit=$1 --speed=$2";
$bootloader->{terminal} ||= "--timeout=" . ($bootloader->{timeout} || 0) . " console serial";
- } elsif ($bootloader->{splashimage} eq '' && $bootloader->{method} eq 'grub-graphic') {
- $bootloader->{splashimage} ||= '/boot/grub/mdv-grub_splash.xpm.gz';
- $bootloader->{viewport} ||= "3 2 77 22";
- $bootloader->{shade} ||= "1";
- } elsif ($bootloader->{method} eq 'grub-menu') {
+ } elsif ($bootloader->{method} eq 'grub-graphic') {
+ my $bin = '/usr/sbin/grub-gfxmenu';
+ if ($bootloader->{gfxmenu} eq '' && -x "$::prefix/usr/sbin/grub-gfxmenu") {
+ my $locale = $::o->{locale} || do { require lang; lang::read() };
+ run_program::rooted($::prefix, $bin, '--lang', $locale->{lang}, '--update-gfxmenu');
+ $bootloader->{gfxmenu} ||= '/boot/gfxmenu';
+ }
+ #- not handled anymore
delete $bootloader->{$_} foreach qw(splashimage viewport shade);
+ } else {
+ delete $bootloader->{gfxmenu};
}
{
my @conf;
- push @conf, map { "$_ $bootloader->{$_}" } grep { $bootloader->{$_} } qw(timeout color serial shade terminal viewport background foreground);
- push @conf, map { $_ . ' ' . $file2grub->($bootloader->{$_}) } grep { $bootloader->{$_} } qw(splashimage);
+ push @conf, map { "$_ $bootloader->{$_}" } grep { $bootloader->{$_} } qw(timeout color password serial shade terminal viewport background foreground);
+ push @conf, map { $_ . ' ' . $file2grub->($bootloader->{$_}) } grep { $bootloader->{$_} } qw(gfxmenu);
eval {
push @conf, "default " . (find_index { $_->{label} eq $bootloader->{default} } @{$bootloader->{entries}});
};
- foreach (@{$bootloader->{entries}}) {
- my $title = "\ntitle $_->{label}";
-
- if ($_->{type} eq "image") {
- my $vga = $_->{vga} || $bootloader->{vga};
- push @conf, $title,
- join(' ', 'kernel', $file2grub->($_->{kernel_or_dev}),
- if_($_->{root}, $_->{root} =~ /loop7/ ? "root=707" : "root=$_->{root}"), #- special to workaround bug in kernel (see #ifdef CONFIG_BLK_DEV_LOOP)
- $_->{append},
- if_($_->{'read-write'}, 'rw'),
+ foreach my $entry (@{$bootloader->{entries}}) {
+ my $title = "\ntitle $entry->{label}";
+
+ if ($entry->{type} eq "image") {
+ push @conf, $title;
+ push @conf, grep { $entry->{$_} } 'lock';
+ push @conf, join(' ', 'kernel', $file2grub->($entry->{xen}), $entry->{xen_append}) if $entry->{xen};
+
+ my $vga = $entry->{vga} || $bootloader->{vga};
+ push @conf, join(' ', $entry->{xen} ? 'module' : 'kernel',
+ $file2grub->($entry->{kernel_or_dev}),
+ $entry->{xen} ? '' : 'BOOT_IMAGE=' . simplify_label($entry->{label}),
+ if_($entry->{root}, $entry->{root} =~ /loop7/ ? "root=707" : "root=$entry->{root}"), #- special to workaround bug in kernel (see #ifdef CONFIG_BLK_DEV_LOOP)
+ $entry->{append},
+ if_($entry->{'read-write'}, 'rw'),
if_($vga && $vga ne "normal", "vga=$vga"));
- push @conf, "module " . $_ foreach @{$_->{modules} || []};
- push @conf, "initrd " . $file2grub->($_->{initrd}) if $_->{initrd};
+ push @conf, "module " . $_ foreach @{$entry->{modules} || []};
+ push @conf, join(' ', $entry->{xen} ? 'module' : 'initrd', $file2grub->($entry->{initrd})) if $entry->{initrd};
} else {
- my $dev = eval { device_string2grub($_->{kernel_or_dev}, \@legacy_floppies, \@sorted_hds) };
+ my $dev = eval { device_string2grub($entry->{kernel_or_dev}, \@legacy_floppies, \@sorted_hds) };
if (!$dev) {
- log::l("dropping bad entry $_->{label} for unknown device $_->{kernel_or_dev}");
+ log::l("dropping bad entry $entry->{label} for unknown device $entry->{kernel_or_dev}");
next;
}
- push @conf, $title, "root $dev";
+ push @conf, $title;
+ push @conf, join(' ', $entry->{grub_noverify} ? 'rootnoverify' : 'root', $dev);
- if ($_->{table}) {
- if (my $hd = fs::get::device2part($_->{table}, \@sorted_hds)) {
+ if ($entry->{table}) {
+ if (my $hd = fs::get::device2part($entry->{table}, \@sorted_hds)) {
if (my $bios = find_index { $hd eq $_ } @sorted_hds) {
#- boot off the nth drive, so reverse the BIOS maps
my $nb = sprintf("0x%x", 0x80 + $bios);
- $_->{mapdrive} ||= { '0x80' => $nb, $nb => '0x80' };
+ $entry->{mapdrive} ||= { '0x80' => $nb, $nb => '0x80' };
}
}
}
- if ($_->{mapdrive}) {
- push @conf, map_each { "map ($::b) ($::a)" } %{$_->{mapdrive}};
+ if ($entry->{mapdrive}) {
+ push @conf, map_each { "map ($::b) ($::a)" } %{$entry->{mapdrive}};
}
- push @conf, "makeactive" if $_->{makeactive};
+ push @conf, "makeactive" if $entry->{makeactive};
push @conf, "chainloader +1";
}
}
@@ -1430,7 +1622,7 @@ sub write_grub {
output_with_perm($f, 0755,
"grub --device-map=/boot/grub/device.map --batch <<EOF
root $files_dev
-setup $boot_dev
+setup --stage2=/boot/grub/stage2 $boot_dev
quit
EOF
");
@@ -1441,7 +1633,7 @@ EOF
sub configure_kdm_BootManager {
my ($name) = @_;
- eval { update_gnomekderc("$::prefix/usr/share/config/kdm/kdmrc", 'Shutdown' => (
+ eval { common::update_gnomekderc_no_create("$::prefix/etc/kde/kdm/kdmrc", 'Shutdown' => (
BootManager => $name
)) };
}
@@ -1468,6 +1660,8 @@ sub install_raw_grub() {
sub when_config_changed_grub {
my ($_bootloader) = @_;
#- do not do anything
+
+ update_copy_in_boot($_) foreach glob($::prefix . boot_copies_dir() . '/*.link');
}
sub action {
@@ -1489,6 +1683,19 @@ sub install {
action($bootloader, 'install', $all_hds);
}
+sub ensure_pkg_is_installed {
+ my ($do_pkgs, $bootloader) = @_;
+
+ my $main_method = bootloader::main_method($bootloader->{method});
+ if ($main_method eq 'grub' || $main_method eq 'lilo') {
+ $do_pkgs->ensure_binary_is_installed($main_method, $main_method, 1) or return 0;
+ if ($bootloader->{method} eq 'grub-graphic') {
+ $do_pkgs->ensure_is_installed('mandriva-gfxboot-theme', '/usr/share/gfxboot/themes/Mandriva/boot/message', 1) or return 0;
+ }
+ }
+ 1;
+}
+
sub update_for_renumbered_partitions {
my ($in, $renumbering, $all_hds) = @_;
diff --git a/perl-install/bootsplash.pm b/perl-install/bootsplash.pm
index e657f6bf3..6507e46ef 100644
--- a/perl-install/bootsplash.pm
+++ b/perl-install/bootsplash.pm
@@ -3,10 +3,6 @@ package bootsplash;
use common;
use Xconfig::resolution_and_depth;
-use Exporter;
-our @ISA = qw(Exporter);
-our %EXPORT_TAGS = (drawing => [qw(rectangle2xywh xywh2rectangle distance farthest nearest)]);
-our @EXPORT_OK = map { @$_ } values %EXPORT_TAGS;
my $themes_dir = "/usr/share/bootsplash/themes";
my $themes_config_dir = "/etc/bootsplash/themes";
@@ -20,7 +16,7 @@ sub get_framebuffer_resolution() {
require bootloader;
require fsedit;
my $bootloader = bootloader::read(fsedit::get_hds());
- my $x_res = Xconfig::resolution_and_depth::from_bios($bootloader->{default_vga});
+ my $x_res = Xconfig::resolution_and_depth::from_bios($bootloader->{default_options}{vga});
$x_res ?
($x_res->{X} . 'x' . $x_res->{Y}, 1) :
(first(@resolutions), 0);
diff --git a/perl-install/c/.cvsignore b/perl-install/c/.cvsignore
deleted file mode 100644
index 665b57e54..000000000
--- a/perl-install/c/.cvsignore
+++ /dev/null
@@ -1,9 +0,0 @@
-Makefile
-Makefile_c
-stuff.c
-stuff.bs
-pm_to_blib
-Makefile_c.old
-blib
-stuff.xs
-pcmcia_probe.c
diff --git a/perl-install/c/Makefile.PL b/perl-install/c/Makefile.PL
index 14c1df855..405c02ecc 100644
--- a/perl-install/c/Makefile.PL
+++ b/perl-install/c/Makefile.PL
@@ -8,17 +8,14 @@ my $lib = arch() =~ /x86_64/ ? 'lib64' : 'lib';
my $libs = '-lldetect';
-my $pcmcia_dir = $Config{archname} =~ /i.86/ ? '../../mdk-stage1/pcmcia_' : '';
-
-symlink "$pcmcia_dir/probe.c", "probe.c" if $pcmcia_dir;
+my $pcmcia_probe_o = "/usr/$lib/drakx-installer-binaries/pcmcia_probe.o";
WriteMakefile(
'NAME' => 'stuff',
'OPTIMIZE' => '-Os',
'MAKEFILE' => 'Makefile_c',
- 'OBJECT' => "stuff.o " . ($pcmcia_dir && " probe.o"),
+ 'OBJECT' => "stuff.o " . (-e $pcmcia_probe_o && " $pcmcia_probe_o"),
'VERSION_FROM' => 'stuff.pm', # finds $VERSION
'LIBS' => [$libs], # e.g., '-lm'
'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
- 'INC' => ($pcmcia_dir && " -I$pcmcia_dir -I$pcmcia_dir/.."),
);
diff --git a/perl-install/c/stuff.xs.pl b/perl-install/c/stuff.xs.pl
index d0fc09779..c6d7df927 100644
--- a/perl-install/c/stuff.xs.pl
+++ b/perl-install/c/stuff.xs.pl
@@ -5,9 +5,6 @@ print '
#include "perl.h"
#include "XSUB.h"
-/* workaround for glibc and kernel header files not in sync */
-#define dev_t dev_t
-
#include <ctype.h>
#include <stdlib.h>
#include <stdio.h>
@@ -38,7 +35,6 @@ print '
#include <net/route.h>
#include <netinet/in.h>
#include <linux/sockios.h>
-#include <locale.h>
// for ethtool structs:
typedef unsigned long long u64;
@@ -54,11 +50,7 @@ typedef __uint8_t u8;
#include <libldetect.h>
-#include <langinfo.h>
#include <string.h>
-#include <iconv.h>
-
-#include <libintl.h>
#define SECTORSIZE 512
@@ -69,14 +61,8 @@ char *pcmcia_probe(void);
';
print '
-#undef Fflush
-#undef Mkdir
-#undef Stat
-
-';
-
-print '
+/* log_message and log_perror are used in stage1 pcmcia probe */
void log_message(const char * s, ...) {
va_list args;
va_list args_copy;
@@ -101,6 +87,10 @@ void log_message(const char * s, ...) {
fclose(logtty);
va_end(args_copy);
}
+void log_perror(const char *msg) {
+ log_message("%s: %s", msg, strerror(errno));
+}
+
';
@@ -234,25 +224,6 @@ total_sectors(fd)
RETVAL
void
-unlimit_core()
- CODE:
- {
- struct rlimit rlim = { RLIM_INFINITY, RLIM_INFINITY };
- setrlimit(RLIMIT_CORE, &rlim);
- }
-
-int
-getlimit_core()
- CODE:
- {
- struct rlimit rlim;
- getrlimit(RLIMIT_CORE, &rlim);
- RETVAL = rlim.rlim_cur;
- }
- OUTPUT:
- RETVAL
-
-void
openlog(ident)
char *ident
CODE:
@@ -266,7 +237,7 @@ syslog(priority, mesg)
int priority
char *mesg
CODE:
- syslog(priority, mesg);
+ syslog(priority, "%s", mesg);
void
setsid()
@@ -279,9 +250,6 @@ void
usleep(microseconds)
unsigned long microseconds
-int
-dmiDetectMemory()
-
void
pci_probe()
PPCODE:
@@ -293,9 +261,9 @@ pci_probe()
EXTEND(SP, entries.nb);
for (i = 0; i < entries.nb; i++) {
struct pciusb_entry *e = &entries.entries[i];
- snprintf(buf, sizeof(buf), "%04x\t%04x\t%04x\t%04x\t%d\t%d\t%d\t%s\t%s\t%s",
- e->vendor, e->device, e->subvendor, e->subdevice, e->pci_bus, e->pci_device, e->pci_function,
- pci_class2text(e->class_), e->module ? e->module : "unknown", e->text);
+ snprintf(buf, sizeof(buf), "%04x\t%04x\t%04x\t%04x\t%d\t%d\t%d\t%d\t%s\t%s\t%s\t%s",
+ e->vendor, e->device, e->subvendor, e->subdevice, e->pci_domain, e->pci_bus, e->pci_device, e->pci_function,
+ pci_class2text(e->class_id), e->class, e->module ? e->module : "unknown", e->text);
PUSHs(sv_2mortal(newSVpv(buf, 0)));
}
pciusb_free(&entries);
@@ -310,7 +278,7 @@ usb_probe()
EXTEND(SP, entries.nb);
for (i = 0; i < entries.nb; i++) {
struct pciusb_entry *e = &entries.entries[i];
- struct usb_class_text class_text = usb_class2text(e->class_);
+ struct usb_class_text class_text = usb_class2text(e->class_id);
snprintf(buf, sizeof(buf), "%04x\t%04x\t%s|%s|%s\t%s\t%s\t%d\t%d",
e->vendor, e->device, class_text.usb_class_text, class_text.usb_sub_text, class_text.usb_prot_text, e->module ? e->module : "unknown", e->text, e->pci_bus, e->pci_device);
PUSHs(sv_2mortal(newSVpv(buf, 0)));
@@ -352,23 +320,6 @@ get_usb_ups_name(int fd)
RETVAL
-
-int
-hasNetDevice(device)
- char * device
- CODE:
- struct ifreq req;
- int s = socket(AF_INET, SOCK_DGRAM, 0);
- if (s == -1) { RETVAL = 0; return; }
-
- strncpy(req.ifr_name, device, IFNAMSIZ);
-
- RETVAL = ioctl(s, SIOCGIFFLAGS, &req) == 0;
- close(s);
- OUTPUT:
- RETVAL
-
-
int
isNetDeviceWirelessAware(device)
char * device
@@ -385,25 +336,6 @@ isNetDeviceWirelessAware(device)
RETVAL
-int enable_net_device(device)
- char * device
- CODE:
- struct ifreq ifr;
- int err;
- int s = socket(AF_INET, SOCK_DGRAM, 0);
-
- strncpy(ifr.ifr_name, device, IFNAMSIZ);
- err = ioctl(s, SIOCGIFFLAGS, &ifr);
- if (!err && !(ifr.ifr_flags & IFF_UP)) {
- ifr.ifr_flags |= IFF_UP;
- err = ioctl(s, SIOCSIFFLAGS, &ifr);
- }
- if (err)
- perror("SIOCSIFFLAGS");
- RETVAL = err;
- OUTPUT:
- RETVAL
-
void
get_netdevices()
PPCODE:
@@ -556,14 +488,6 @@ kernel_version()
OUTPUT:
RETVAL
-int
-is_tagged_utf8(s)
- SV *s
- CODE:
- RETVAL = SvUTF8(s);
- OUTPUT:
- RETVAL
-
void
set_tagged_utf8(s)
SV *s
@@ -571,12 +495,6 @@ set_tagged_utf8(s)
SvUTF8_on(s);
void
-upgrade_utf8(s)
- SV *s
- CODE:
- sv_utf8_upgrade(s);
-
-void
get_iso_volume_ids(int fd)
INIT:
struct iso_primary_descriptor voldesc;
@@ -592,10 +510,11 @@ get_iso_volume_ids(int fd)
';
@macros = (
- [ qw(int S_IFCHR S_IFBLK S_IFIFO KDSKBENT KT_SPEC K_NOSUCHMAP NR_KEYS MAX_NR_KEYMAPS BLKRRPART TIOCSCTTY
+ [ qw(int S_IFCHR S_IFBLK S_IFIFO KDSKBENT K_NOSUCHMAP NR_KEYS MAX_NR_KEYMAPS BLKRRPART TIOCSCTTY
HDIO_GETGEO LOOP_GET_STATUS
MS_MGC_VAL O_WRONLY O_RDWR O_CREAT O_NONBLOCK F_SETFL F_GETFL WNOHANG
- VT_ACTIVATE VT_WAITACTIVE VT_GETSTATE CDROM_LOCKDOOR CDROMEJECT CDROM_DRIVE_STATUS
+ VT_ACTIVATE VT_WAITACTIVE VT_GETSTATE
+ CDROMEJECT CDROMCLOSETRAY CDROM_LOCKDOOR
LOG_WARNING LOG_INFO LOG_LOCAL1
LC_COLLATE
) ],
diff --git a/perl-install/common.pm b/perl-install/common.pm
index 63c1d0980..9d8923096 100644
--- a/perl-install/common.pm
+++ b/perl-install/common.pm
@@ -10,7 +10,7 @@ use run_program;
use Exporter;
our @ISA = qw(Exporter);
-our @EXPORT = qw($SECTORSIZE N N_ check_for_xserver files_exist formatTime formatXiB makedev mandrake_release removeXiBSuffix require_root_capability salt setVirtual set_alternative set_l10n_sort set_permissions translate unmakedev);
+our @EXPORT = qw($SECTORSIZE N P N_ check_for_xserver files_exist formatTime formatXiB makedev mandrake_release removeXiBSuffix require_root_capability setVirtual set_alternative set_l10n_sort set_permissions translate unmakedev);
# perl_checker: RE-EXPORT-ALL
push @EXPORT, @MDK::Common::EXPORT;
@@ -27,47 +27,51 @@ our $SECTORSIZE = 512;
#- Functions
#-#####################################################################################
+sub P {
+ my ($s_singular, $s_plural, $nb, @para) = @_;
+ sprintf(translate($s_singular, $s_plural, $nb), @para);
+}
+
sub N {
my ($s, @para) = @_;
- $::one_message_has_been_translated ||= join(':', (caller(0))[1,2]); #- see mygtk2.pm
- my $t = translate($s);
- sprintf($t, @para);
+ sprintf(translate($s), @para);
}
sub N_ { $_[0] }
-sub salt {
- my ($nb) = @_;
- require devices;
- open(my $F, devices::make("random")) or die "missing random";
- my $s; read $F, $s, $nb;
- $s = pack("b8" x $nb, unpack "b6" x $nb, $s);
- $s =~ tr|\0-\x3f|0-9a-zA-Z./|;
- $s;
-}
-
sub makedev { ($_[0] << 8) | $_[1] }
sub unmakedev { $_[0] >> 8, $_[0] & 0xff }
sub translate_real {
- my ($s) = @_;
+ my ($s, $o_plural, $o_nb) = @_;
$s or return '';
foreach (@::textdomains, 'libDrakX') {
- my $s2 = Locale::gettext::dgettext($_, $s);
+ my $s2;
+ if ($o_nb) {
+ $s2 = Locale::gettext::dngettext($_, $s, $o_plural, $o_nb);
+ } else {
+ $s2 = Locale::gettext::dgettext($_, $s);
+ }
+ # when utf8 pragma is in use, Locale::gettext() returns an utf8 string not tagged as such:
+ c::set_tagged_utf8($s2) if !utf8::is_utf8($s2) && utf8::is_utf8($s);
return $s2 if $s ne $s2;
}
$s;
}
-sub translate {
- my $s = translate_real(@_);
- $::need_utf8_i18n and c::set_tagged_utf8($s);
-
+sub remove_translate_context {
+ my ($s) = @_;
#- translation with context, kde-like
$s =~ s/^_:.*\n//;
$s;
}
+sub translate {
+ my $s = translate_real(@_);
+ $::one_message_has_been_translated ||= join(':', (caller(1))[1,2]); #- see mygtk2.pm
+ remove_translate_context($s);
+}
+
sub from_utf8 {
my ($s) = @_;
Locale::gettext::iconv($s, "utf-8", undef); #- undef = locale charmap = nl_langinfo(CODESET)
@@ -90,15 +94,6 @@ sub set_l10n_sort() {
}
-BEGIN { undef *availableRamMB }
-sub availableRamMB() {
- my $s = MDK::Common::System::availableRamMB();
- #- HACK HACK: if i810 and memsize
- require detect_devices;
- return $s - 1 if $s == 128 && detect_devices::matching_driver__regexp('^Card:Intel 810$');
- $s;
-}
-
sub setVirtual {
my ($vt_number) = @_;
my $vt = '';
@@ -111,7 +106,7 @@ sub setVirtual {
sub nonblock {
my ($F) = @_;
- fcntl($F, c::F_SETFL(), fcntl($F, c::F_GETFL(), 0) | c::O_NONBLOCK());
+ fcntl($F, c::F_SETFL(), fcntl($F, c::F_GETFL(), 0) | c::O_NONBLOCK()) or die "can not fcntl F_SETFL: $!";
}
sub removeXiBSuffix {
@@ -131,7 +126,7 @@ sub formatXiB {
($nb, $base) = ($newnb, $newbase);
$base >= 1024 ? ($newbase = $base / 1024) : ($newnb = $nb / 1024);
};
- foreach ('', N("KB"), N("MB"), N("GB")) {
+ foreach (N("B"), N("KB"), N("MB"), N("GB")) {
$decr->();
if ($newnb < 1 && $newnb * $newbase < 1) {
my $v = $nb * $base;
@@ -176,6 +171,22 @@ sub formatError {
&MDK::Common::String::formatError($err);
}
+sub group_by(&@) {
+ my $f = shift;
+ @_ or return;
+ my $e = shift;
+ my @l = my $last_l = [$e];
+ foreach (@_) {
+ if ($f->($e, $_)) {
+ push @$last_l, $_;
+ } else {
+ push @l, $last_l = [$_];
+ $e = $_;
+ }
+ }
+ @l;
+}
+
# Group the list by n. Returns a reference of lists of length n
sub group_n_lm {
my $n = shift;
@@ -212,30 +223,46 @@ sub set_alternative {
sub files_exist { and_(map { -f "$::prefix$_" } @_) }
+sub open_file {
+ my ($file) = @_;
+ my $F;
+ open($F, $file) ? $F : do { log::l("Can not open $file: $!"); undef };
+}
+
+
sub secured_file {
my ($f) = @_;
c::is_secure_file($f) or die "can not ensure a safe $f";
$f;
}
+sub chown_ {
+ my ($b_recursive, $name, $group, @files) = @_;
+
+ my ($uid, $gid) = (getpwnam($name) || $name, getgrnam($group) || $group);
+
+ require POSIX;
+ my $chown; $chown = sub {
+ foreach (@_) {
+ POSIX::lchown($uid, $gid, $_) or die "chown of file $_ failed: $!\n";
+ ! -l $_ && -d $_ && $b_recursive and &$chown(glob_($_));
+ }
+ };
+ $chown->(@files);
+}
+
+
sub set_permissions {
my ($file, $perms, $o_owner, $o_group) = @_;
# We only need to set the permissions during installation to be able to
- # print test pages. After installation the devfsd daemon does the business
- # automatically.
+ # print test pages. After installation udev does the business automatically.
return 1 unless $::isInstall;
- if ($o_owner && $o_group) {
- run_program::rooted($::prefix, "/bin/chown", "$o_owner.$o_group", $file)
- or die "Could not start chown!";
- } elsif ($o_owner) {
- run_program::rooted($::prefix, "/bin/chown", $o_owner, $file)
- or die "Could not start chown!";
- } elsif ($o_group) {
- run_program::rooted($::prefix, "/bin/chgrp", $o_group, $file)
- or die "Could not start chgrp!";
+ if ($o_owner || $o_group) {
+ $o_owner ||= (lstat($file))[4];
+ $o_group ||= (lstat($file))[5];
+ chown_(0, $o_owner, $o_group, $file);
}
- run_program::rooted($::prefix, "/bin/chmod", $perms, $file)
- or die "Could not start chmod!";
+ chmod(oct($perms), $file) or die "chmod of file $file failed: $!\n";
}
sub release_file {
@@ -247,20 +274,28 @@ sub release_file {
);
}
+sub parse_LDAP_namespace_structure {
+ my ($s) = @_;
+ my %h = map { if_(/(.*?)=(.*)/, $1 => $2) } split(',', $s);
+ \%h;
+}
+
sub mandrake_release {
my ($o_dir) = @_;
my $f = release_file($o_dir);
$f && chomp_(cat_("$o_dir$f"));
}
+sub wrap_command_for_root {
+ my ($name, @args) = @_;
+ ([ 'consolehelper', $name ], @args);
+}
+
sub require_root_capability() {
return if $::testing || !$>; # we're already root
- if (check_for_xserver()) {
- if (fuzzy_pidofs(qr/\bkwin\b/) > 0) {
- exec("kdesu", "--ignorebutton", "-c", "$0 @ARGV") or die N("kdesu missing");
- }
- }
- exec { 'consolehelper' } $0, @ARGV or die N("consolehelper missing");
+
+ my ($command, @args) = wrap_command_for_root($0, @ARGV);
+ exec { $command->[0] } $command->[1], @args or die N("command %s missing", $command->[0]);
# still not root ?
die "you must be root to run this program" if $>;
@@ -299,6 +334,7 @@ sub unpack_with_refs {
@r;
}
+#- used in userdrake and mdkonline
sub md5file {
require Digest::MD5;
my @md5 = map {
@@ -313,4 +349,61 @@ sub md5file {
return wantarray() ? @md5 : $md5[0];
}
+sub load_modules_from_base {
+ my ($base) = @_;
+ $base =~ s|::|/|g;
+ my $base_file = $base . ".pm";
+ require $base_file;
+ my ($inc_path) = substr($INC{$base_file}, 0, -length($base_file));
+ my @files = map { substr($_, length($inc_path)) } glob_($inc_path . $base . '/*.pm');
+ require $_ foreach @files;
+ #- return the matching modules list
+ map { local $_ = $_; s|/|::|g; s|\.pm$||g; $_ } @files;
+}
+
+sub get_alternatives {
+ my ($name) = @_;
+
+ my $dir = '/var/lib/rpm/alternatives';
+ my ($state, $main_link, @l) = chomp_(cat_("$dir/$name")) or return;
+ my @slaves;
+ while (@l && $l[0] ne '') {
+ my ($name, $link) = splice(@l, 0, 2);
+ push @slaves, { name => $name, link => $link };
+ }
+ shift @l; #- empty line
+ my @alternatives;
+ while (@l && $l[0] ne '') {
+ my ($file, $weight, @slave_files) = splice(@l, 0, 2 + @slaves);
+
+ push @alternatives, { file => $file, weight => $weight, slave_files => \@slave_files };
+ }
+ { name => $name, link => $main_link, state => $state, slaves => \@slaves, alternatives => \@alternatives };
+}
+
+sub symlinkf_update_alternatives {
+ my ($name, $wanted_file) = @_;
+ my $conf = get_alternatives($name);
+ my $chosen = find { $_->{file} eq $wanted_file } @{$conf->{alternatives}} or return;
+ symlinkf("/etc/alternatives/$name", $::prefix . $conf->{link});
+ symlinkf($wanted_file, "$::prefix/etc/alternatives/$name");
+ mapn {
+ my ($slave, $file) = @_;
+ if ($file) {
+ symlinkf("/etc/alternatives/$slave->{name}", $::prefix . $slave->{link});
+ symlinkf($file, "$::prefix/etc/alternatives/$slave->{name}");
+ } else {
+ unlink $::prefix . $slave->{link};
+ unlink "$::prefix/etc/alternatives/$slave->{name}";
+ }
+ } $conf->{slaves}, $chosen->{slave_files};
+}
+
+sub update_gnomekderc_no_create {
+ my ($file, $category, %subst_) = @_;
+ if (-e $file) {
+ update_gnomekderc($file, $category, %subst_);
+ }
+}
+
1;
diff --git a/perl-install/cpufreq.pm b/perl-install/cpufreq.pm
new file mode 100644
index 000000000..34862c015
--- /dev/null
+++ b/perl-install/cpufreq.pm
@@ -0,0 +1,149 @@
+package cpufreq;
+
+use common;
+use detect_devices;
+
+my %vendor_ids = (
+ GenuineIntel => "Intel",
+ AuthenticAMD => "AMD",
+ CyrixInstead => "Cyrix",
+ "Geode by NSC" => "NSC",
+ TransmetaCPU => "Transmeta",
+ GenuineTMx86 => "Transmeta",
+ CentaurHauls => "Centaur",
+);
+
+sub get_vendor {
+ my ($cpu) = @_;
+ $vendor_ids{$cpu->{vendor_id}};
+}
+
+sub has_flag {
+ my ($cpu, $flag) = @_;
+ $cpu->{flags} =~ /\b$flag\b/;
+}
+
+my @cpus;
+sub get_cpus() {
+ @cpus ? @cpus : @cpus = detect_devices::getCPUs();
+}
+
+my @pci;
+sub pci_probe() {
+ @pci ? @pci : @pci = detect_devices::pci_probe();
+}
+
+sub find_pci_device {
+ my (@devices) = @_;
+ any { my $dev = $_; any { $_->{vendor} == $dev->[0] && $_->{id} == $dev->[1] } pci_probe() } @devices;
+}
+
+sub probe_centrino() {
+ any {
+ get_vendor($_) eq "Intel" &&
+ has_flag($_, 'est') && (
+ $_->{'cpu family'} == 6 && member($_->{model}, 9, 13, 14) ||
+ $_->{'cpu family'} == 15 && member($_->{model}, 3, 4)
+ );
+ } get_cpus();
+}
+
+sub probe_ich() { find_pci_device([ 0x8086, 0x244c ], [ 0x8086, 0x24cc ], [ 0x8086, 0x248c ]) }
+
+sub probe_smi() { find_pci_device([ 0x8086, 0x7190 ]) }
+
+sub probe_nforce2() { find_pci_device([ 0x10de, 0x01e0 ]) }
+
+sub probe_gsx() {
+ any { member(get_vendor($_), "Cyrix", "NSC") } get_cpus() &&
+ find_pci_device([ 0x1078, 0x0100 ], [ 0x1078, 0x0002 ], [ 0x1078, 0x0000 ]);
+}
+
+sub probe_powerpc() {
+ arch() =~ /ppc/ && any {
+ member($_->{motherboard}, ('PowerBook3,4', 'PowerBook3,5', 'PowerBook4,1', 'PowerBook3,2', 'MacRISC3')) &&
+ # Kernel contains a special case for the supported 750FX,
+ # not sure if the cpu name can be used, so use same test as kernel
+ first($_->{revision} =~ /\bpvr\s+(\d+)\b/) == 7000;
+ } get_cpus();
+}
+
+sub probe_p4() {
+ any {
+ get_vendor($_) eq "Intel" &&
+ $_->{'cpu family'} == 15;
+ } get_cpus();
+}
+
+sub probe_powernow_k6() {
+ any {
+ get_vendor($_) eq "AMD" &&
+ $_->{'cpu family'} == 5 &&
+ member($_->{model}, 12, 13);
+ } get_cpus();
+}
+
+sub probe_powernow_k7() {
+ any {
+ get_vendor($_) eq "AMD" &&
+ $_->{'cpu family'} == 6;
+ } get_cpus();
+}
+
+sub probe_powernow_k8() {
+ any {
+ get_vendor($_) eq "AMD" &&
+ $_->{'cpu family'} == 15 &&
+ ($_->{'power management'} =~ /\bfid\b/ || has_flag($_, 'fid')); # frequency ID control
+ } get_cpus();
+}
+
+sub probe_longhaul() {
+ any {
+ get_vendor($_) eq "Centaur" &&
+ $_->{'cpu family'} == 6 &&
+ member($_->{model}, 6, 7, 8, 9);
+ } get_cpus();
+}
+
+sub probe_longrun() {
+ any {
+ get_vendor($_) eq "Transmeta" &&
+ has_flag($_, 'longrun');
+ } get_cpus();
+}
+
+my @modules = (
+ # probe centrino first, it will get detected on ICH chipset and
+ # speedstep-ich doesn't work with it
+ [ "speedstep-centrino", \&probe_centrino ],
+ # try to find cpufreq compliant northbridge
+ [ "speedstep-ich", \&probe_ich ],
+ [ "speedstep-smi", \&probe_smi ],
+ [ "cpufreq-nforce2", \&probe_nforce2 ],
+ [ "gsx-suspmod", \&probe_gsx ],
+ # try to find a cpufreq compliant processor
+ [ "p4-clockmod", \&probe_p4 ],
+ [ "powernow-k6", \&probe_powernow_k6 ],
+ [ "powernow-k7", \&probe_powernow_k7 ],
+ [ "powernow-k8", \&probe_powernow_k8 ],
+ [ "longhaul", \&probe_longhaul ],
+ [ "longrun", \&probe_longrun ],
+);
+
+sub find_driver() {
+ my $m = find { $_->[1]->() } @modules;
+ $m && $m->[0];
+}
+
+my @governor_modules = map { "cpufreq_$_" } qw(performance powersave conservative ondemand);
+
+sub get_modules() {
+ my $module;
+ if (probe_powerpc() || ($module = find_driver())) {
+ return if_($module, $module), @governor_modules;
+ }
+ ();
+}
+
+1;
diff --git a/perl-install/dbus_object.pm b/perl-install/dbus_object.pm
index 445fc73ba..1b4a4264e 100644
--- a/perl-install/dbus_object.pm
+++ b/perl-install/dbus_object.pm
@@ -23,11 +23,6 @@ sub attach_object {
$o->{object} = $service->get_object($o->{path}, $o->{interface});
}
-sub dispatch {
- my ($o) = @_;
- $o->{bus}{connection}->dispatch;
-}
-
sub call_method {
my ($o, $method, @args) = @_;
$o->{object}->$method(@args);
@@ -41,7 +36,7 @@ sub safe_call_method {
};
if ($@) {
print STDERR "($method) exception: $@\n";
- $o->dispatch;
+ $o->{bus}{connection}->dispatch;
return;
}
@ret;
@@ -49,8 +44,12 @@ sub safe_call_method {
sub set_gtk2_watch {
my ($o) = @_;
+ set_gtk2_watch_helper($o->{bus});
+}
- $o->{bus}{connection}->set_watch_callbacks(sub {
+sub set_gtk2_watch_helper {
+ my ($bus) = @_;
+ $bus->{connection}->set_watch_callbacks(sub {
my ($con, $watch) = @_;
my $flags = $watch->get_flags;
require Net::DBus::Binding::Watch;
@@ -65,7 +64,7 @@ sub set_gtk2_watch {
#- do nothing for WRITABLE watch, we dispatch when needed
}, undef, undef); #- do nothing when watch is disabled or toggled yet
- $o->dispatch;
+ $bus->{connection}->dispatch;
}
1;
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm
index 1cbe8bd76..4340a9d3f 100644
--- a/perl-install/detect_devices.pm
+++ b/perl-install/detect_devices.pm
@@ -22,8 +22,6 @@ my %serialprobe;
#-######################################################################################
#- Functions
#-######################################################################################
-sub dev_is_devfs() { -e "/dev/.devfsd" } #- no $::prefix, returns false during install and that's nice :)
-
sub get() {
#- Detect the default BIOS boot harddrive is kind of tricky. We may have IDE,
@@ -41,25 +39,26 @@ sub cdroms() { grep { $_->{media_type} eq 'cdrom' } get() }
sub burners() { grep { isBurner($_) } cdroms() }
sub dvdroms() { grep { isDvdDrive($_) } cdroms() }
sub raw_zips() { grep { member($_->{media_type}, 'fd', 'hd') && isZipDrive($_) } get() }
-#-sub jazzs { grep { member($_->{media_type}, 'fd', 'hd') && isJazzDrive($_) } get() }
sub ls120s() { grep { member($_->{media_type}, 'fd', 'hd') && isLS120Drive($_) } get() }
sub zips() {
map {
$_->{device} .= 4;
- $_->{devfs_device} = $_->{devfs_prefix} . '/part4';
$_;
} raw_zips();
}
-sub floppies() {
+sub floppies {
+ my ($o_not_detect_legacy_floppies) = @_;
require modules;
my @fds;
- eval { modules::load("floppy") if $::isInstall };
- if (!is_xbox()) {
- @fds = map {
- my $info = (!dev_is_devfs() || -e "/dev/fd$_") && c::floppy_info(devices::make("fd$_"));
- if_($info && $info ne '(null)', { device => "fd$_", devfs_device => "floppy/$_", media_type => 'fd', info => $info });
- } qw(0 1);
+ if (!$o_not_detect_legacy_floppies) {
+ eval { modules::load("floppy") if $::isInstall };
+ if (!is_xbox()) {
+ @fds = map {
+ my $info = c::floppy_info(devices::make("fd$_"));
+ if_($info && $info ne '(null)', { device => "fd$_", media_type => 'fd', info => $info });
+ } qw(0 1);
+ }
}
my @ide = ls120s() and eval { modules::load("ide-floppy") };
@@ -105,35 +104,6 @@ sub get_sys_cdrom_info {
}
}
-sub get_usb_storage_info_24 {
- my (@l) = @_;
-
- my %usbs = map {
- my $s = cat_(glob_("$_/*"));
- my ($host) = $s =~ /^\s*Host scsi(\d+):/m; #-#
- my ($vendor_name) = $s =~ /^\s*Vendor: (.*)/m;
- my ($vendor, $id) = $s =~ /^\s*GUID: (....)(....)/m;
- if_(defined $host, $host => { vendor_name => $vendor_name, usb_vendor => hex $vendor, usb_id => hex $id });
- } glob_('/proc/scsi/usb-storage-*') or return;
-
- #- only the entries matching the following conditions can be usb-storage devices
- @l = grep { $_->{channel} == 0 && $_->{id} == 0 && $_->{lun} == 0 } @l;
- my %l; push @{$l{$_->{host}}}, $_ foreach @l;
-
- foreach my $host (keys %usbs) {
- my @choices = @{$l{$host} || []} or log::l("weird, host$host from /proc/scsi/usb-storage-*/* is not in /proc/scsi/scsi"), next;
- if (@choices > 1) {
- @choices = grep { $_->{info} =~ /^\Q$usbs{$host}{vendor_name}/ } @choices;
- @choices or log::l("weird, can not find the good entry host$host from /proc/scsi/usb-storage-*/* in /proc/scsi/scsi"), next;
- @choices == 1 or log::l("argh, can not determine the good entry host$host from /proc/scsi/usb-storage-*/* in /proc/scsi/scsi"), next;
- }
- add2hash($choices[0], $usbs{$host});
- }
- complete_usb_storage_info(@l);
-
- @l;
-}
-
sub complete_usb_storage_info {
my (@l) = @_;
@@ -154,20 +124,6 @@ sub complete_usb_storage_info {
}
}
-sub get_devfs_devices {
- my (@l) = @_;
-
- my %h = (cdrom => 'cd', hd => 'disc');
-
- foreach (@l) {
- $_->{devfs_prefix} = sprintf('scsi/host%d/bus%d/target%d/lun%d', $_->{host}, $_->{channel}, $_->{id}, $_->{lun})
- if $_->{bus} eq 'SCSI';
-
- my $t = $h{$_->{media_type}} or next;
- $_->{devfs_device} = $_->{devfs_prefix} . '/' . $t;
- }
-}
-
sub isBurner {
my ($e) = @_;
$e->{capacity} =~ /burner/ and return 1;
@@ -185,9 +141,7 @@ sub isDvdDrive {
$f && c::isDvdDrive(fileno($f));
}
sub isZipDrive { $_[0]{info} =~ /ZIP\s+\d+/ } #- accept ZIP 100, untested for bigger ZIP drive.
-sub isJazzDrive { $_[0]{info} =~ /\bJAZZ?\b/i } #- accept "iomega jaz 1GB"
sub isLS120Drive { $_[0]{info} =~ /LS-?120|144MB/ }
-sub isRemovableUsb { begins_with($_[0]{usb_media_type} || '', 'Mass Storage') && usb2removable($_[0]) }
sub isKeyUsb { begins_with($_[0]{usb_media_type} || '', 'Mass Storage') && $_[0]{media_type} eq 'hd' }
sub isFloppyUsb { $_[0]{usb_driver} && $_[0]{usb_driver} eq 'Removable:floppy' }
sub may_be_a_hd {
@@ -199,6 +153,13 @@ sub may_be_a_hd {
);
}
+sub get_sysfs_field_from_link {
+ my ($device, $field) = @_;
+ my $l = readlink("$device/$field");
+ $l =~ s!.*/!!;
+ $l;
+}
+
sub get_sysfs_usbpath_for_block {
my ($device) = @_;
my $host = readlink("/sys/block/$device/device");
@@ -212,55 +173,11 @@ sub get_scsi_driver {
foreach (@l) {
next if $_->{driver};
my $host = get_sysfs_usbpath_for_block($_->{device});
- $_->{driver} = readlink("/sys/block/$_->{device}/$host/driver");
- $_->{driver} =~ s!.*/!!;
+ $_->{driver} = get_sysfs_field_from_link("/sys/block/$_->{device}/$host", 'driver');
}
}
-sub getSCSI_24() {
- my $err = sub { log::l("ERROR: unexpected line in /proc/scsi/scsi: $_[0]") };
-
- my ($first, @l) = common::join_lines(cat_("/proc/scsi/scsi")) or return;
- $first =~ /^Attached devices:/ or $err->($first);
-
- @l = map_index {
- my ($host, $channel, $id, $lun) = m/^Host: scsi(\d+) Channel: (\d+) Id: (\d+) Lun: (\d+)/ or $err->($_);
- my ($vendor, $model) = /^\s*Vendor:\s*(.*?)\s+Model:\s*(.*?)\s+Rev:/m or $err->($_);
- my ($type) = /^\s*Type:\s*(.*)/m or $err->($_);
- { info => "$vendor $model", host => $host, channel => $channel, id => $id, lun => $lun,
- device => "sg$::i", raw_type => $type, bus => 'SCSI' };
- } @l;
-
- get_usb_storage_info_24(@l);
-
- each_index {
- my $dev = "sd" . chr($::i + ord('a'));
- put_in_hash $_, { device => $dev, media_type => isFloppyUsb($_) ? 'fd' : 'hd' };
- } grep { $_->{raw_type} =~ /Direct-Access|Optical Device/ } @l;
-
- each_index {
- put_in_hash $_, { device => "st$::i", media_type => 'tape' };
- } grep { $_->{raw_type} =~ /Sequential-Access/ } @l;
-
- each_index {
- put_in_hash $_, { device => "sr$::i", media_type => 'cdrom' };
- } grep { $_->{raw_type} =~ /CD-ROM|WORM/ } @l;
-
- # Old hp scanners report themselves as "Processor"s
- # (see linux/include/scsi/scsi.h and sans-find-scanner.1)
- each_index {
- put_in_hash $_, { media_type => 'scanner' };
- } grep { $_->{raw_type} =~ /Scanner/ || $_->{raw_type} =~ /Processor / } @l;
-
- delete $_->{raw_type} foreach @l;
-
- get_devfs_devices(@l);
- get_sys_cdrom_info(@l);
- get_scsi_driver(@l);
- @l;
-}
-
-sub getSCSI_26() {
+sub getSCSI() {
my $dev_dir = '/sys/bus/scsi/devices';
my @scsi_types = (
@@ -276,37 +193,39 @@ sub getSCSI_26() {
"Communications",
);
- my @l = map {
+ my @l;
+ foreach (all($dev_dir)) {
my ($host, $channel, $id, $lun) = split ':' or log::l("bad entry in $dev_dir: $_"), next;
-
my $dir = "$dev_dir/$_";
+
+ # handle both old and new kernels:
+ my $node = -e "$dir/block" ? "$dir/block" : top(glob_("$dir/block*"));
+ my ($device) = readlink($node) =~ m!/block/(.*)!;
+ warn("cannot get info for device ($_)"), next if !$device;
+
+ my $usb_dir = readlink("$node/device") =~ m!/usb! && "$node/device/../../../..";
+ my $get_usb = sub { chomp_(cat_("$usb_dir/$_[0]")) };
+
my $get = sub {
my $s = cat_("$dir/$_[0]");
$s =~ s/\s+$//;
$s;
};
- my $usb_dir = readlink("$dir/block/device") =~ m!/usb! && "$dir/block/device/../../../..";
- my $get_usb = sub { chomp_(cat_("$usb_dir/$_[0]")) };
-
- # handle both old and new kernels:
- my $node = -e "$dir/block" ? "$dir/block" : top(glob_("$dir/block*"));
- my ($device) = readlink($node) =~ m!/block/(.*)!;
- warn "cannot get info for device ($host, $channel, $id, $lun)" if !$device;
-
- my $media_type = ${{ st => 'tape', sr => 'cdrom', sd => 'hd' }}{substr($device, 0, 2)};
# Old hp scanners report themselves as "Processor"s
# (see linux/include/scsi/scsi.h and sans-find-scanner.1)
my $raw_type = $scsi_types[$get->('type')];
- $media_type ||= 'scanner' if $raw_type =~ /Scanner|Processor/;
- { info => $get->('vendor') . ' ' . $get->('model'), host => $host, channel => $channel, id => $id, lun => $lun,
+ my $media_type = ${{ st => 'tape', sr => 'cdrom', sd => 'hd' }}{substr($device, 0, 2)} ||
+ $raw_type =~ /Scanner|Processor/ && 'scanner';
+
+ push @l, { info => $get->('vendor') . ' ' . $get->('model'), host => $host, channel => $channel, id => $id, lun => $lun,
bus => 'SCSI', media_type => $media_type, device => $device,
$usb_dir ? (
usb_vendor => hex($get_usb->('idVendor')), usb_id => hex($get_usb->('idProduct')),
) : (),
};
- } all($dev_dir);
+ }
@l = sort { $a->{host} <=> $b->{host} || $a->{channel} <=> $b->{channel} || $a->{id} <=> $b->{id} || $a->{lun} <=> $b->{lun} } @l;
@@ -316,12 +235,10 @@ sub getSCSI_26() {
$_->{media_type} = 'fd' if $_->{media_type} eq 'hd' && isFloppyUsb($_);
}
- get_devfs_devices(@l);
get_sys_cdrom_info(@l);
get_scsi_driver(@l);
@l;
}
-sub getSCSI() { c::kernel_version() =~ /^\Q2.6/ ? getSCSI_26() : getSCSI_24() }
my %eide_hds = (
@@ -373,14 +290,11 @@ sub getIDE() {
my $host = $num;
($host, my $id) = divide($host, 2);
($host, my $channel) = divide($host, 2);
- my $devfs_prefix = sprintf('ide/host%d/bus%d/target%d/lun0', $host, $channel, $id);
push @idi, { media_type => $type, device => basename($d),
- devfs_prefix => $devfs_prefix,
info => $info, host => $host, channel => $channel, id => $id, bus => 'ide',
if_($vendor, Vendor => $vendor), if_($model, Model => $model) };
}
- get_devfs_devices(@idi);
get_sys_cdrom_info(@idi);
@idi;
}
@@ -401,6 +315,10 @@ sub getCompaqSmartArray() {
my ($name) = m|/(.*)|;
for (my $i = 0; -r ($f = "${prefix}$i"); $i++) {
my @raw_devices = cat_($f) =~ m|^\s*($name/.*?):|gm;
+
+ #- this is ugly and buggy. keeping it for 2007.0
+ #- on a cciss, cciss/cciss0 didn't contain c0d0, but cciss/cciss1 did contain c0d1
+ #- the line below adds both c0d0 and c0d1 for cciss0, and so some duplicates
@raw_devices or @raw_devices = grep { m!^$name/! } block_devices();
foreach my $raw_device (@raw_devices) {
@@ -411,7 +329,8 @@ sub getCompaqSmartArray() {
}
}
}
- @idi;
+ #- workaround the buggy code above. this should be safe though
+ uniq_ { $_->{device} } @idi;
}
sub getDAC960() {
@@ -464,37 +383,128 @@ sub ix86_cpu_frequency() {
cat_('/proc/cpuinfo') =~ /cpu MHz\s*:\s*(\d+)/ && $1;
}
+sub probe_category {
+ my ($category) = @_;
+
+ require list_modules;
+ my @modules = list_modules::category2modules($category);
+
+ if_($category =~ /sound/ && arch() =~ /ppc/ && get_mac_model() !~ /IBM/,
+ { driver => 'snd-powermac', description => 'Macintosh built-in' },
+ ),
+ grep {
+ if ($category eq 'network/isdn') {
+ my $b = $_->{driver} =~ /ISDN:([^,]*),?([^,]*)(?:,firmware=(.*))?/;
+ if ($b) {
+ $_->{driver} = $1;
+ $_->{type} = $2;
+ $_->{type} =~ s/type=//;
+ $_->{firmware} = $3;
+ $_->{driver} eq "hisax" and $_->{options} .= " id=HiSax";
+ }
+ $b;
+ } else {
+ member($_->{driver}, @modules);
+ }
+ } probeall();
+}
+
sub getSoundDevices() {
- modules::probe_category('multimedia/sound');
+ probe_category('multimedia/sound');
}
sub isTVcardConfigurable { member($_[0]{driver}, qw(bttv cx88 saa7134)) }
-sub getTVcards() { modules::probe_category('multimedia/tv') }
+sub getTVcards() { probe_category('multimedia/tv') }
sub getInputDevices() {
my (@devices, $device);
foreach (cat_('/proc/bus/input/devices')) {
if (/^I:/) {
- push @devices, $device if $device;
$device = {};
- $device->{vendor} = $1 if /Vendor=([0-9a-f]+)/;
- $device->{id} = $1 if /Product=([0-9a-f]+)/;
- }
- $device->{description} = "|$1" if /N: Name="(.*)"/;
- $device->{driver} = $1 if /H: Handlers=(\w+)/;
- if (/P: Phys=(.*)/) {
+ $device->{vendor} = /Vendor=(\w+)/ && $1;
+ $device->{id} = /Product=(\w+)/ && $1;
+ } elsif (/N: Name="(.*)"/) {
+ my $descr = $1;
+ $device->{description} = "|$descr";
+
+ #- I: Bus=0011 Vendor=0002 Product=0008 Version=7321
+ #- N: Name="AlpsPS/2 ALPS GlidePoint"
+ #- P: Phys=isa0060/serio1/input0
+ #- H: Handlers=mouse1 event2 ts1
+ #- B: EV=f
+ #- B: KEY=420 0 70000 0 0 0 0 0 0 0 0 #=> BTN_LEFT BTN_RIGHT BTN_MIDDLE BTN_TOOL_FINGER BTN_TOUCH
+ #- or B: KEY=420 0 670000 0 0 0 0 0 0 0 0 #=> same with BTN_BACK
+ #- B: REL=3 #=> X Y
+ #- B: ABS=1000003 #=> X Y PRESSURE
+
+ #- I: Bus=0011 Vendor=0002 Product=0008 Version=2222
+ #- N: Name="AlpsPS/2 ALPS DualPoint TouchPad"
+ #- P: Phys=isa0060/serio1/input0
+ #- S: Sysfs=/class/input/input2
+ #- H: Handlers=mouse1 ts1 event2
+ #- B: EV=f
+ #- B: KEY=420 0 70000 0 0 0 0 0 0 0 0
+ #- B: REL=3
+ #- B: ABS=1000003
+
+ #- I: Bus=0011 Vendor=0002 Product=0007 Version=0000
+ #- N: Name="SynPS/2 Synaptics TouchPad"
+ #- P: Phys=isa0060/serio1/input0
+ #- S: Sysfs=/class/input/input1
+ #- H: Handlers=mouse0 event1 ts0
+ #- B: EV=b
+ #- B: KEY=6420 0 70000 0 0 0 0 0 0 0 0 #=> BTN_LEFT BTN_RIGHT BTN_MIDDLE BTN_TOOL_FINGER BTN_TOUCH BTN_TOOL_TRIPLETAP
+ #- or B: KEY=6420 0 670000 0 0 0 0 0 0 0 0 #=> same with BTN_BACK
+ #- or B: KEY=420 30000 670000 0 0 0 0 0 0 0 0 #=> same without BTN_TOOL_TRIPLETAP but with BTN_B
+ #- B: ABS=11000003 #=> X Y PRESSURE TOOL_WIDTH
+
+ $device->{Synaptics} = $descr eq 'SynPS/2 Synaptics TouchPad';
+ $device->{ALPS} = $descr =~ m!^AlpsPS/2 ALPS!;
+
+ } elsif (/H: Handlers=(\w+)/) {
+ $device->{driver} = $1;
+ } elsif (/P: Phys=(.*)/) {
$device->{location} = $1;
$device->{bus} = 'isa' if $device->{location} =~ /^isa/;
$device->{bus} = 'usb' if $device->{location} =~ /^usb/i;
- }
+ } elsif (/B: REL=(.* )?(.*)/) {
+ #- REL=3 #=> X Y
+ #- REL=103 #=> X Y WHEEL
+ #- REL=143 #=> X Y HWHEEL WHEEL
+ #- REL=1c3 #=> X Y HWHEEL DIAL WHEEL
+ my $REL = hex($2);
+ $device->{HWHEEL} = 1 if $REL & (1 << 6);
+ $device->{WHEEL} = 1 if $REL & (1 << 8); #- not reliable ("Mitsumi Apple USB Mouse" says REL=103 and KEY=1f0000 ...)
+
+ } elsif (/B: KEY=(\S+)/) {
+ #- some KEY explained:
+ #- (but note that BTN_MIDDLE can be reported even if missing)
+ #- (and "Mitsumi Apple USB Mouse" reports 1f0000)
+ #- KEY=30000 0 0 0 0 0 0 0 0 #=> BTN_LEFT BTN_RIGHT
+ #- KEY=70000 0 0 0 0 0 0 0 0 #=> BTN_LEFT BTN_RIGHT BTN_MIDDLE
+ #- KEY=1f0000 0 0 0 0 0 0 0 0 #=> BTN_LEFT BTN_RIGHT BTN_MIDDLE BTN_SIDE BTN_EXTRA
+ my $KEY = hex($1);
+ $device->{SIDE} = 1 if $KEY & (1 << 0x13);
+
+ } elsif (/^\s*$/) {
+ push @devices, $device if $device;
+ undef $device;
+ }
}
- push @devices, $device if $device;
@devices;
}
-sub getSynapticsTouchpads() {
- grep { $_->{description} =~ m,^\|(?:SynPS/2 Synaptics TouchPad$|AlpsPS/2 ALPS), } getInputDevices();
+sub getInputDevices_and_usb() {
+ my @l = getInputDevices();
+
+ foreach my $usb (usb_probe()) {
+ if (my $e = find { hex($_->{vendor}) == $usb->{vendor} && hex($_->{id}) == $usb->{id} } @l) {
+ $e->{usb} = $usb;
+ }
+ }
+
+ @l;
}
sub getSerialModem {
@@ -518,27 +528,25 @@ sub getSerialModem {
foreach my $modem (@modems) {
#- add an alias for macserial on PPC
$modules_conf->set_alias('serial', $serdev) if arch() =~ /ppc/ && $modem->{device};
- foreach (@devs) { $_->{type} =~ /serial/ and $modem->{device} = $_->{device} }
+ foreach (@devs) { $_->{device} and $modem->{device} = $_->{device} }
}
@modems;
}
sub getModem {
my ($modules_conf) = @_;
- getSerialModem($modules_conf, {}), matching_driver__regexp('www\.linmodems\.org'),
- matching_driver(list_modules::category2modules('network/modem'), list_modules::category2modules('network/slmodem'));
+ getSerialModem($modules_conf, {}), get_winmodems();
}
-sub getSpeedtouch() {
- grep { $_->{description} eq 'Alcatel|USB ADSL Modem (Speed Touch)' } probeall();
+sub get_winmodems() {
+ matching_driver__regexp('www\.linmodems\.org'),
+ matching_driver(list_modules::category2modules('network/modem'),
+ list_modules::category2modules('network/slmodem'));
}
sub getBewan() {
matching_desc__regexp('Bewan Systems\|.*ADSL|BEWAN ADSL USB|\[Unicorn\]');
}
-sub getSagem() {
- matching_driver(qw(eagle-usb ueagle-atm));
-}
# generate from the following from eci driver sources:
# perl -e 'while (<>) { print qq("$1$2",\n"$3$4",\n) if /\b([a-z\d]*)\s*([a-z\d]*)\s*([a-z\d]*)\s*([a-z\d]*)$/ }' <modems.db|sort|uniq
@@ -572,27 +580,34 @@ sub getECI() {
grep { member(sprintf("%04x%04x%04x%04x", $_->{vendor}, $_->{id}, $_->{subvendor}, $_->{subid}), @ids) } usb_probe();
}
+sub get_xdsl_usb_devices() {
+ my @bewan = detect_devices::getBewan();
+ $_->{driver} = $_->{bus} eq 'USB' ? 'unicorn_usb_atm' : 'unicorn_pci_atm' foreach @bewan;
+ my @eci = detect_devices::getECI();
+ $_->{driver} = 'eciusb' foreach @eci;
+ my @usb = detect_devices::probe_category('network/usb_dsl');
+ $_->{description} = "USB ADSL modem (eagle chipset)" foreach
+ grep { $_->{driver} eq 'ueagle-atm' && $_->{description} eq '(null)' } @usb;
+ @usb, @bewan, @eci;
+}
+
sub is_lan_interface {
- # we want LAN like interfaces here (eg: ath|br|eth|fddi|plip|ra|tr|usb|wifi|wlan).
+ # we want LAN like interfaces here (eg: ath|br|eth|fddi|plip|ra|tr|usb|wlan).
# there's also bnep%d for bluetooth, bcp%d...
# we do this by blacklisting the following interfaces:
# - ippp|isdn|plip|ppp (initscripts suggest that isdn%d can be created but kernel sources claim not)
# ippp%d are created by drivers/isdn/i4l/isdn_ppp.c
# plip%d are created by drivers/net/plip.c
# ppp%d are created by drivers/net/ppp_generic.c
- #
- # we need both detection schemes since:
- # - get_netdevices() use the SIOCGIFCONF ioctl that does not list interfaces that are down
- # - /proc/net/dev does not list VLAN and IP aliased interfaces
-
is_useful_interface($_[0]) &&
- $_[0] !~ /^(?:lo|ippp|isdn|plip|ppp|sit0|wifi)/;
+ $_[0] !~ /^(?:ippp|isdn|plip|ppp)/;
}
sub is_useful_interface {
# - sit0 which is *always* created by net/ipv6/sit.c, thus is always created since net.agent loads ipv6 module
# - wifi%d are created by 3rdparty/hostap/hostap_hw.c (pseudo statistics devices, #14523)
- $_[0] !~ /^(?:lo|sit0|wifi)/;
+ # ax*, rose*, nr*, bce* and scc* are Hamradio devices (#28776)
+ $_[0] !~ /^(?:lo|sit0|wifi|ax|rose|nr|bce|scc)/;
}
sub is_wireless_interface {
@@ -604,34 +619,64 @@ sub is_wireless_interface {
#- i.e interfaces for which get_wireless_stats() is available
c::isNetDeviceWirelessAware($interface) || -e "/sys/class/net/$interface/wireless";
}
-sub get_wireless_interface() { find { is_wireless_interface($_) } getNet() }
+
+sub get_all_net_devices() {
+ # we need both detection schemes since:
+ # - get_netdevices() use the SIOCGIFCONF ioctl that does not list interfaces that are down
+ # - /proc/net/dev does not list VLAN and IP aliased interfaces
+ uniq(
+ (map { if_(/^\s*([A-Za-z0-9:\.]*):/, $1) } cat_("/proc/net/dev")),
+ c::get_netdevices(),
+ );
+}
+
+sub get_lan_interfaces() { grep { is_lan_interface($_) } get_all_net_devices() }
+sub get_net_interfaces() { grep { is_useful_interface($_) } get_all_net_devices() }
+sub get_wireless_interface() { find { is_wireless_interface($_) } get_lan_interfaces() }
sub is_bridge_interface {
my ($interface) = @_;
-f "/sys/class/net/$interface/bridge/bridge_id";
}
-sub get_sysfs_device_id_map {
+sub get_ids_from_sysfs_device {
my ($dev_path) = @_;
- my $is_usb = -f "$dev_path/bInterfaceNumber";
- $is_usb ?
- { id => '../idProduct', vendor => '../idVendor' } :
- { id => "device", subid => "subsystem_device", vendor => "vendor", subvendor => "subsystem_vendor" };
+ my $dev_cat = sub { chomp_(cat_("$dev_path/$_[0]")) };
+ my $usb_root = -f "$dev_path/bInterfaceNumber" && "../" || -f "$dev_path/idVendor" && "";
+ my $is_pcmcia = -f "$dev_path/card_id";
+ my $sysfs_ids;
+ my $bus = get_sysfs_field_from_link($dev_path, "bus");
+ #- FIXME: use $bus
+ if ($is_pcmcia) {
+ $sysfs_ids = { modalias => $dev_cat->('modalias') };
+ } else {
+ $sysfs_ids = $bus eq 'ieee1394' ?
+ {
+ version => "../vendor_id",
+ specifier_id => "specifier_id",
+ specifier_version => "version",
+ } :
+ defined $usb_root ?
+ { id => $usb_root . 'idProduct', vendor => $usb_root . 'idVendor' } :
+ { id => "device", subid => "subsystem_device", vendor => "vendor", subvendor => "subsystem_vendor" };
+ $_ = hex($dev_cat->($_)) foreach values %$sysfs_ids;
+ if ($bus eq 'pci') {
+ my $device = basename(readlink $dev_path);
+ my @ids = $device =~ /^(.{4}):(.{2}):(.{2})\.(.+)$/;
+ @{%$sysfs_ids}{qw(pci_domain pci_bus pci_device pci_function)} = map { hex($_) } @ids if @ids;
+ }
+ }
+ $sysfs_ids;
}
-sub get_all_net_devices() {
- uniq(
- (map { if_(/^\s*([A-Za-z0-9:\.]*):/, $1) } cat_("/proc/net/dev")),
- c::get_netdevices(),
- );
+sub device_matches_sysfs_ids {
+ my ($device, $sysfs_ids) = @_;
+ every { defined $device->{$_} && member($device->{$_}, $sysfs_ids->{$_}, 0xffff) } keys %$sysfs_ids;
}
-sub getNet() {
- grep { is_lan_interface($_) } get_all_net_devices();
- }
-
-sub get_net_interfaces() {
- grep { is_useful_interface($_) } get_all_net_devices();
+sub device_matches_sysfs_device {
+ my ($device, $dev_path) = @_;
+ device_matches_sysfs_ids($device, get_ids_from_sysfs_device($dev_path));
}
#sub getISDN() {
@@ -658,7 +703,7 @@ sub getUPS() {
$_->{media_type} = 'UPS';
$_->{driver} = 'newhidups';
$_;
- } grep { $_->{driver} =~ /ups$/ && $_->{description} !~ /American Power Conversion\|Back-UPS|Keyboard|Logitech|WingMan/ } @usb_devices);
+ } grep { $_->{driver} =~ /ups$/ && $_->{description} !~ /American Power Conversion\|Back-UPS|Chicony|Keyboard|Logitech|SAITEK|WingMan/ } @usb_devices);
}
$pcitable_addons = <<'EOF';
@@ -705,9 +750,10 @@ my (@pci, @usb);
sub pci_probe__real() {
add_addons($pcitable_addons, map {
my %l;
- @l{qw(vendor id subvendor subid pci_bus pci_device pci_function media_type driver description)} = split "\t";
+ @l{qw(vendor id subvendor subid pci_domain pci_bus pci_device pci_function media_type nice_media_type driver description)} = split "\t";
$l{$_} = hex $l{$_} foreach qw(vendor id subvendor subid);
$l{bus} = 'PCI';
+ $l{sysfs_device} = sprintf('/sys/bus/pci/devices/%04x:%02x:%02x.%d', $l{pci_domain}, $l{pci_bus}, $l{pci_device}, $l{pci_function});
\%l;
} c::pci_probe());
}
@@ -727,6 +773,7 @@ sub usb_probe__real() {
@l{qw(vendor id media_type driver description pci_bus pci_device)} = split "\t";
$l{media_type} = join('|', grep { $_ ne '(null)' } split('\|', $l{media_type}));
$l{$_} = hex $l{$_} foreach qw(vendor id);
+ $l{sysfs_device} = "/sys/class/usb_device/usbdev$l{pci_bus}.$l{pci_device}/device";
$l{bus} = 'USB';
\%l;
} c::usb_probe());
@@ -778,37 +825,45 @@ sub firewire_probe() {
}
sub pcmcia_controller_probe() {
- require list_modules;
- my @modules = list_modules::category2modules('bus/pcmcia');
- grep { member($_->{driver}, @modules) } probeall();
-}
-
-sub real_pcmcia_probe() {
- return if $::testing;
-
- c::pcmcia_probe() || first(map { $_->{driver} } pcmcia_controller_probe());
+ my ($controller) = probe_category('bus/pcmcia');
+ if (!$controller && !$::testing && !$::noauto && arch() =~ /i.86/) {
+ my $driver = c::pcmcia_probe();
+ $controller = { driver => $driver, description => "PCMCIA controller ($driver)" } if $driver;
+ }
+ $controller;
}
sub pcmcia_probe() {
- -e '/var/run/stab' || -e '/var/lib/pcmcia/stab' or return ();
-
- my (@devs, $desc);
- foreach (cat_('/var/run/stab'), cat_('/var/lib/pcmcia/stab')) {
- if (/^Socket\s+\d+:\s+(.*)/) {
- $desc = $1;
- } else {
- my (undef, $type, $module, undef, $device) = split;
- push @devs, { description => $desc, driver => $module, type => $type, device => $device };
- }
- }
- @devs;
+ require modalias;
+ require modules;
+ my $dev_dir = '/sys/bus/pcmcia/devices';
+ map {
+ my $dir = "$dev_dir/$_";
+ my $get = sub { chomp_(cat_("$dir/$_[0]")) };
+ my $class_dev = first(glob_("$dir/tty*"));
+ my $device = $class_dev && get_sysfs_field_from_link($dir, basename($class_dev));
+ my $modalias = $get->('modalias');
+ my $driver = get_sysfs_field_from_link($dir, 'driver');
+ #- fallback on modalias result
+ #- but only if the module isn't loaded yet (else, it would already be binded)
+ #- this prevents from guessing the wrong driver for multi-function devices
+ my $module = $modalias && first(modalias::get_modules($modalias));
+ $driver ||= !member($module, modules::loaded_modules()) && $module;
+ {
+ description => join(' ', grep { $_ } map { $get->("prod_id$_") } 1 .. 4),
+ driver => $driver,
+ if_($modalias, modalias => $modalias),
+ if_($device, device => $device),
+ bus => 'PCMCIA',
+ };
+ } all($dev_dir);
}
my $dmi_probe;
sub dmi_probe() {
$dmi_probe ||= [ map {
/(.*?)\t(.*)/ && { bus => 'DMI', driver => $1, description => $2 };
- } c::dmi_probe() ];
+ } $> ? () : c::dmi_probe() ];
@$dmi_probe;
}
@@ -819,6 +874,10 @@ sub probeall() {
pci_probe(), usb_probe(), firewire_probe(), pcmcia_probe(), dmi_probe();
}
+sub probeall__real() {
+ return if $::noauto;
+ pci_probe__real(), usb_probe__real(), firewire_probe(), pcmcia_probe(), dmi_probe();
+}
sub matching_desc__regexp {
my ($regexp) = @_;
grep { $_->{description} =~ /$regexp/i } probeall();
@@ -845,13 +904,16 @@ sub probe_unique_name {
$l[0];
}
-sub stringlist() {
+sub stringlist {
+ my ($b_verbose) = @_;
map {
+ my $ids = $b_verbose || $_->{description} eq '(null)' ? sprintf("vendor:%04x device:%04x", $_->{vendor}, $_->{id}) : '';
+ my $subids = $_->{subid} && $_->{subid} != 0xffff ? sprintf("subv:%04x subd:%04x", $_->{subvendor}, $_->{subid}) : '';
sprintf("%-16s: %s%s%s",
$_->{driver} || 'unknown',
- $_->{description} eq '(null)' ? sprintf("Vendor=0x%04x Device=0x%04x", $_->{vendor}, $_->{id}) : $_->{description},
+ $_->{description},
$_->{media_type} ? sprintf(" [%s]", $_->{media_type}) : '',
- $_->{subid} && $_->{subid} != 0xffff ? sprintf(" SubVendor=0x%04x SubDevice=0x%04x", $_->{subvendor}, $_->{subid}) : '',
+ $ids || $subids ? " ($ids" . ($ids && $subids && " ") . "$subids)" : '',
);
} probeall();
}
@@ -899,6 +961,7 @@ my (@dmis, $dmidecode_already_runned);
sub dmidecode() {
return @dmis if $dmidecode_already_runned;
+ return if $>;
my ($ver, @l) = run_program::get_stdout('dmidecode');
my $tab = "\t";
@@ -906,7 +969,7 @@ sub dmidecode() {
#- new dmidecode output is less indented
$tab = '';
#- drop header
- shift @l while $l[0] ne "\n";
+ shift @l while @l && $l[0] ne "\n";
}
foreach (@l) {
@@ -960,7 +1023,10 @@ sub isLaptop() {
matching_desc__regexp('Neomagic.*Magic(Media|Graph)') ||
matching_desc__regexp('ViRGE.MX') || matching_desc__regexp('S3.*Savage.*[IM]X') ||
matching_desc__regexp('ATI.*(Mobility|LT)'))
- || cat_('/proc/cpuinfo') =~ /\bmobile\b/i;
+ || cat_('/proc/cpuinfo') =~ /\bmobile\b/i
+ || probe_unique_name("Type") eq 'laptop'
+ #- ipw2100/2200/3945 are Mini-PCI (Express) adapters
+ || (any { member($_->{driver}, qw(ipw2100 ipw2200 ipw3945)) } pci_probe());
}
sub BIGMEM() {
@@ -974,7 +1040,7 @@ sub is_i586() {
}
sub is_xbox() {
- any { $_->{vendor} == 0x10de && $_->{id} == 0x02a5 } detect_devices::pci_probe();
+ any { $_->{vendor} == 0x10de && $_->{id} == 0x02a5 } pci_probe();
}
sub has_cpu_flag {
@@ -982,17 +1048,14 @@ sub has_cpu_flag {
cat_('/proc/cpuinfo') =~ /^flags.*\b$flag\b/m;
}
-sub matching_type {
- my ($type) = @_;
- if ($type =~ /laptop/i) {
- return isLaptop();
- } elsif ($type =~ /wireless/i) {
- return to_bool(get_wireless_interface());
- }
+sub matching_types() {
+ +{
+ laptop => isLaptop(),
+ '64bit' => to_bool(arch() =~ /64/),
+ wireless => to_bool(get_wireless_interface() || probe_category('network/wireless')),
+ };
}
-sub usbMice() { grep { $_->{media_type} =~ /\|Mouse/ && $_->{driver} !~ /wacom/ ||
- $_->{driver} =~ /Mouse:USB/ } usb_probe() }
sub usbWacom() { grep { $_->{driver} =~ /wacom/ } usb_probe() }
sub usbKeyboards() { grep { $_->{media_type} =~ /\|Keyboard/ } usb_probe() }
sub usbStorage() { grep { $_->{media_type} =~ /Mass Storage\|/ } usb_probe() }
diff --git a/perl-install/devices.pm b/perl-install/devices.pm
index f6b04f516..be31387e3 100644
--- a/perl-install/devices.pm
+++ b/perl-install/devices.pm
@@ -23,6 +23,7 @@ sub find_free_loop() {
}
sub set_loop {
my ($file, $o_encrypt_key, $o_encryption) = @_;
+ require modules;
eval { modules::load('loop') };
my $dev = find_free_loop();
@@ -34,12 +35,13 @@ sub set_loop {
print $F $o_encrypt_key;
close $F or die "losetup failed";
} else {
- run_program::run("losetup", $dev, $file) or return;
+ run_program::run("losetup", $dev, $file)
+ || run_program::run("losetup", "-r", $dev, $file) or return;
}
$dev;
}
-sub find_clp_loop {
+sub find_compressed_image {
my ($name) = @_;
foreach (0..255) {
my $dev = make("loop$_");
@@ -56,6 +58,7 @@ sub get_dynamic_major {
}
sub init_device_mapper() {
+ require modules;
eval { modules::load('dm-mod') };
make('urandom');
my $control = '/dev/mapper/control';
@@ -152,7 +155,6 @@ sub entry {
"tty" => [ c::S_IFCHR(), 5, 0 ],
"input/mice"
=> [ c::S_IFCHR(), 13, 63 ],
- "usbmouse" => [ c::S_IFCHR(), 13, 63 ], #- aka /dev/input/mice
"adbmouse" => [ c::S_IFCHR(), 10, 10 ], #- PPC
"vcsa" => [ c::S_IFCHR(), 7, 128 ],
"zero" => [ c::S_IFCHR(), 1, 5 ],
@@ -180,13 +182,6 @@ sub make($) {
my ($type, $major, $minor) = entry($_);
- if ($file =~ m|/dev/| && -e '/dev/.devfsd') {
- #- argh, creating devices is no good with devfs...
- #- return the file even if the device file does not exist
- #- the caller will fail or not, better compatibility than raising an exception here
- return $file;
- }
-
#- make a directory for this inode if needed.
mkdir_p(dirname($file));
@@ -195,28 +190,6 @@ sub make($) {
$file;
}
-
-#- only isomorphic entries are allowed,
-#- i.e. entries which can go devfs -> normal and normal -> devfs
-my %to_devfs = (
- psaux => 'misc/psaux',
- usbmouse => 'input/mice',
-);
-my %to_devfs_prefix = (
- ttyS => 'tts/',
-);
-
-sub to_devfs {
- my ($dev) = @_;
- if (my $r = $to_devfs{$dev}) {
- return $r;
- } elsif ($dev =~ /(.*?)(\d+)$/) {
- my $r = $to_devfs_prefix{$1};
- return "$r$2" if $r;
- }
- readlink("/dev/" . $dev);
-}
-
sub simple_partition_scan {
my ($part) = @_;
$part->{device} =~ /([hs]d[a-z])(\d+)$/;
@@ -230,4 +203,17 @@ sub part_prefix {
(simple_partition_scan($part))[0];
}
+sub symlink_now_and_register {
+ my ($if_struct, $of) = @_;
+ my $if = $if_struct->{device};
+
+ #- add a specific udev script, we can't do it with a udev rule,
+ #- eg, ttySL0 is a symlink
+ output_with_perm("$::prefix/etc/udev/conf.d/$of.conf", 0755, "ln -sf $if /dev/$of\n")
+ if $of !~ /dvd|mouse/;
+
+ symlinkf($if, "$::prefix/dev/$of");
+}
+
+
1;
diff --git a/perl-install/diskdrake/dav.pm b/perl-install/diskdrake/dav.pm
index 1229d5f3f..4950b2bb0 100644
--- a/perl-install/diskdrake/dav.pm
+++ b/perl-install/diskdrake/dav.pm
@@ -9,7 +9,7 @@ sub main {
my ($in, $all_hds) = @_;
my $davs = $all_hds->{davs};
- $in->do_pkgs->ensure_binary_is_installed('davfs', 'mount.davfs') or return;
+ $in->do_pkgs->ensure_binary_is_installed('davfs2', 'mount.davfs2') or return;
my $quit;
do {
@@ -33,7 +33,7 @@ points, select \"New\".")) },
sub create {
my ($in, $all_hds) = @_;
- my $dav = { fs_type => 'davfs' };
+ my $dav = { fs_type => 'davfs2' };
ask_server($in, $dav, $all_hds) or return;
push @{$all_hds->{davs}}, $dav;
config($in, $dav, $all_hds);
diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm
index 85e600607..a54fa6d74 100644
--- a/perl-install/diskdrake/hd_gtk.pm
+++ b/perl-install/diskdrake/hd_gtk.pm
@@ -4,6 +4,7 @@ use diagnostics;
use strict;
use common;
+use mygtk2 qw(gtknew);
use ugtk2 qw(:helpers :wrappers :create);
use partition_table;
use fs::type;
@@ -43,7 +44,7 @@ notebook current_kind[]
=cut
sub main {
- ($in, $all_hds, my $nowizard, $do_force_reload, my $interactive_help) = @_;
+ ($in, $all_hds, $do_force_reload) = @_;
@notebook = ();
@@ -74,7 +75,7 @@ sub main {
$lock = 1;
partition_table::assign_device_numbers($_) foreach fs::get::hds($all_hds);
create_automatic_notebooks($notebook_widget);
- general_action_box($general_action_box, $nowizard, $interactive_help);
+ general_action_box($general_action_box);
per_kind_action_box($per_kind_action_box, $current_kind);
current_kind_changed($in, $current_kind);
current_entry_changed($current_kind, $current_entry);
@@ -89,7 +90,8 @@ sub main {
});
$w->sync;
$done_button->grab_focus;
- $in->ask_okcancel(N("Read carefully!"), N("Please make a backup of your data first"), 1) or return
+ $in->ask_from_list_(N("Read carefully!"), N("Please make a backup of your data first"),
+ [ N_("Exit"), N_("Continue") ], N_("Continue")) eq N_("Continue") or return
if $::isStandalone;
$in->ask_warn('',
N("If you plan to use aboot, be careful to leave a free space (2048 sectors is enough)
@@ -119,7 +121,7 @@ sub try_ {
$current_entry = '' if !diskdrake::interactive::is_part_existing($current_entry, $all_hds);
$update_all->();
- Gtk2->main_quit if $v && member($name, 'Done', 'Wizard');
+ Gtk2->main_quit if $v && member($name, 'Done');
}
################################################################################
@@ -143,13 +145,23 @@ sub add_kind2notebook {
$kind;
}
+sub interactive_help {
+ my ($in) = @_;
+ if ($::isInstall) {
+ $in->interactive_help_sub_display_id('partition_with_diskdrake');
+ } else {
+ require run_program;
+ run_program::raw({ detach => 1 }, 'drakhelp', '--id', 'diskdrake');
+ }
+}
+
sub general_action_box {
- my ($box, $nowizard, $interactive_help) = @_;
+ my ($box) = @_;
$_->destroy foreach $box->get_children;
- gtkadd($box, gtksignal_connect(Gtk2::Button->new(N("Help")), clicked => $interactive_help)) if $interactive_help;
+ gtkadd($box, gtksignal_connect(Gtk2::Button->new(N("Help")), clicked => \&interactive_help));
- my @actions = (if_($::isInstall && !$nowizard, N_("Wizard")),
+ my @actions = (
diskdrake::interactive::general_possible_actions($in, $all_hds),
N_("Done"));
foreach my $s (@actions) {
@@ -202,7 +214,9 @@ sub per_entry_info_box {
} elsif ($kind->{type} =~ /hd|lvm/) {
$info = diskdrake::interactive::format_hd_info($kind->{val});
}
- gtkpack($box, gtkadd(Gtk2::Frame->new(N("Details")), gtkset_justify(Gtk2::Label->new($info), 'left')));
+ gtkpack($box, gtkadd(gtkcreate_frame(N("Details")),
+ gtknew('HBox', border_width => 5, children_loose => [
+ gtkset_alignment(gtkset_justify(Gtk2::Label->new($info), 'left'), 0, 0) ])));
}
sub current_kind_changed {
@@ -274,7 +288,9 @@ sub create_buttons4partitions {
};
foreach my $entry (@parts) {
- my $w = Gtk2::ToggleButton->new_with_label($entry->{mntpoint} || '') or die '';
+ my $info = $entry->{mntpoint};
+ $info .= "\n" . ($entry->{size} ? formatXiB($entry->{size}, 512) : N("Unknown")) if $info;
+ my $w = Gtk2::ToggleButton->new_with_label($info) or internal_error('new_with_label');
$w->signal_connect(clicked => sub {
$current_button != $w or return;
current_entry_changed($kind, $entry);
@@ -354,9 +370,17 @@ sub createOrChangeType {
{ pt_type => 0, start => 1, size => $hd->{totalsectors} - 1 };
$part or return;
if ($fs_type eq 'other') {
- $in->ask_warn('', N("Use ``%s'' instead", isEmpty($part) ? N("Create") : N("Type")));
+ if (isEmpty($part)) {
+ try('Create', $hd, $part);
+ } else {
+ try('Type', $hd, $part);
+ }
} elsif (!$fs_type) {
- $in->ask_warn('', N("Use ``%s'' instead", N("Delete"))) if !isEmpty($part);
+ if (isEmpty($part)) {
+ $in->ask_warn(N("Warning"), N("This partition is already empty"));
+ } else {
+ try('Delete', $hd, $part);
+ }
} elsif (isEmpty($part)) {
fs::type::set_fs_type($part, $fs_type);
diskdrake::interactive::Create($in, $hd, $part, $all_hds);
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm
index 1f311105e..728cb4543 100644
--- a/perl-install/diskdrake/interactive.pm
+++ b/perl-install/diskdrake/interactive.pm
@@ -34,9 +34,7 @@ struct part {
int part_number # 1 for hda1...
string device # 'hda5', 'sdc1' ...
- string devfs_device # 'ide/host0/bus0/target0/lun0/part5', ...
- string prefer_devfs_name # should the {devfs_device} or the {device} be used in fstab
- string device_LABEL # volume label. LABEL=xxx can be used in fstab instead of
+ string device_LABEL # volume label. LABEL=xxx or /dev/disk/by-label/xxx can be used in fstab instead of the device
bool prefer_device_LABEL # should the {device_LABEL} or the {device} be used in fstab
bool faked_device # false if {device} is a real device, true for nfs/smb/dav/none devices. If the field does not exist, we do not know
@@ -63,7 +61,7 @@ struct part {
loopback loopback[] # loopback living on this partition
# internal
- string real_device # '/dev/loop0', '/dev/loop1' ...
+ string real_device # '/dev/loop0', '/dev/loop1' ... (used for encrypted loopback)
# internal CHS (Cylinder/Head/Sector)
int start_cyl, start_head, start_sec, end_cyl, end_head, end_sec,
@@ -182,7 +180,7 @@ struct all_hds {
sub main {
- my ($in, $all_hds, $_nowizard, $do_force_reload, $_interactive_help) = @_;
+ my ($in, $all_hds, $do_force_reload) = @_;
if ($in->isa('interactive::gtk')) {
require diskdrake::hd_gtk;
@@ -263,17 +261,12 @@ sub Undo {
undo($all_hds);
}
-sub Wizard {
- $::o->{wizard} = 1;
- goto &Done;
-}
-
sub Done {
my ($in, $all_hds) = @_;
eval { raid::verify($all_hds->{raids}) };
if (my $err = $@) {
$::expert or die;
- $in->ask_okcancel('', [ formatError($err), N("Continue anyway?") ]) or return;
+ $in->ask_okcancel(N("Confirmation"), [ formatError($err), N("Continue anyway?") ]) or return;
}
foreach (@{$all_hds->{hds}}) {
if (!write_partitions($in, $_, 'skip_check_rebootNeeded')) {
@@ -283,7 +276,7 @@ sub Done {
}
if (!$::isInstall) {
my $new = fs::fstab_to_string($all_hds);
- if ($new ne $all_hds->{current_fstab} && $in->ask_yesorno('', N("Do you want to save /etc/fstab modifications"), 1)) {
+ if ($new ne $all_hds->{current_fstab} && $in->ask_yesorno(N("Confirmation"), N("Do you want to save /etc/fstab modifications"), 1)) {
$all_hds->{current_fstab} = $new;
fs::write_fstab($all_hds);
}
@@ -295,7 +288,7 @@ sub Done {
}
}
if (my $part = find { $_->{mntpoint} && !maybeFormatted($_) } fs::get::fstab($all_hds)) {
- $in->ask_okcancel('', N("You should format partition %s.
+ $in->ask_okcancel(N("Warning"), N("You should format partition %s.
Otherwise no entry for mount point %s will be written in fstab.
Quit anyway?", $part->{device}, $part->{mntpoint})) or return if $::isStandalone;
}
@@ -364,7 +357,7 @@ sub More {
);
my $r;
- $in->ask_from('', '',
+ $in->ask_from(N("More"), '',
[
{ val => N("Save partition table"), clicked_may_quit => sub { SaveInFile($in, $hd); 1 } },
{ val => N("Restore partition table"), clicked_may_quit => sub { ReadFromFile($in, $hd); 1 } },
@@ -389,14 +382,14 @@ sub ReadFromFile {
} else {
undef $h; #- help perl_checker
my $name = $hd->{device}; $name =~ s!/!_!g;
- ($h, $fh) = install_any::media_browser($in, '', "part_$name") or return;
+ ($h, $fh) = install::any::media_browser($in, '', "part_$name") or return;
}
eval {
catch_cdie { partition_table::load($hd, $file || $fh) }
sub {
$@ =~ /bad totalsectors/ or return;
- $in->ask_yesorno('',
+ $in->ask_yesorno(N("Warning"),
N("The backup partition table has not the same size
Still continue?"), 0);
};
@@ -415,7 +408,7 @@ sub SaveInFile {
} else {
undef $h; #- help perl_checker
my $name = $hd->{device}; $name =~ s!/!_!g;
- ($h, $file) = install_any::media_browser($in, 'save', "part_$name") or return;
+ ($h, $file) = install::any::media_browser($in, 'save', "part_$name") or return;
}
eval { partition_table::save($hd, $file) };
@@ -426,13 +419,13 @@ sub SaveInFile {
sub Rescuept {
my ($in, $hd) = @_;
- my $_w = $in->wait_message('', N("Trying to rescue partition table"));
+ my $_w = $in->wait_message(N("Please wait"), N("Trying to rescue partition table"));
fsedit::rescuept($hd);
}
sub Hd_info {
my ($in, $hd) = @_;
- $in->ask_warn('', [ N("Detailed information"), format_hd_info($hd) ]);
+ $in->ask_warn(N("Warning"), [ N("Detailed information"), format_hd_info($hd) ]);
}
################################################################################
@@ -446,7 +439,7 @@ sub part_possible_actions {
my %actions = my @l = (
N_("Mount point") => '$part->{real_mntpoint} || (!isBusy && !isSwap && !isNonMountable)',
N_("Type") => '!isBusy && $::expert && (!readonly || $part->{pt_type} == 0x83)',
- N_("Options") => '!isNonMountable && $::expert',
+ N_("Options") => '!isSwap($part) && !isNonMountable && $::expert',
N_("Label") => '!isNonMountable && $::expert',
N_("Resize") => '!isBusy && !readonly && !isSpecial || isLVM($hd) && LVM_resizable',
N_("Format") => '!isBusy && !readonly && ($::expert || $::isStandalone)',
@@ -515,11 +508,15 @@ sub Create {
$in->ask_from(N("Create a new partition"), '',
[
+ { label => N("Create a new partition"), title => 1 },
if_($has_startsector,
- { label => N("Start sector: "), val => \$part->{start}, min => $def_start, max => ($max - min_partition_size($hd)), type => 'range' },
+ { label => N("Start sector: "), val => \$part->{start}, min => $def_start, max => ($max - min_partition_size($hd)),
+ type => 'range', SpinButton => $::expert, changed => sub { $mb_size = min($mb_size, ($max - $part->{start}) >> 11) } },
),
- { label => N("Size in MB: "), val => \$mb_size, min => min_partition_size($hd) >> 11, max => $def_size >> 11, type => 'range' },
- { label => N("Filesystem type: "), val => \$type_name, list => [ fs::type::type_names() ], sort => 0 },
+ { label => N("Size in MB: "), val => \$mb_size, min => min_partition_size($hd) >> 11, max => $def_size >> 11,
+ type => 'range', SpinButton => $::expert, changed => sub { $part->{start} = min($part->{start}, $max - ($mb_size << 11)) } },
+ { label => N("Filesystem type: "), val => \$type_name, list => [ fs::type::type_names($::expert) ],
+ sort => 0, if_($::expert, gtk => { wrap_width => 4 }) },
{ label => N("Mount point: "), val => \$part->{mntpoint}, list => [ fsedit::suggestions_mntpoint($all_hds), '' ],
disabled => sub { my $p = fs::type::type_name2subpart($type_name); isSwap($p) || isNonMountable($p) }, type => 'combo', not_edit => 0,
},
@@ -529,17 +526,7 @@ sub Create {
if_($::expert && isLVM($hd),
{ label => N("Logical volume name "), val => \$part->{lv_name}, list => [ qw(root swap usr home var), '' ], sort => 0, not_edit => 0 },
),
- ], changed => sub {
- if ($part->{start} + ($mb_size << 11) > $max) {
- if ($_[0] == 0) {
- # Start sector changed => restricting Size
- $mb_size = ($max - $part->{start}) >> 11;
- } else {
- # Size changed => restricting Start sector
- $part->{start} = $max - ($mb_size << 11);
- }
- }
- }, complete => sub {
+ ], complete => sub {
$part->{size} = from_Mb($mb_size, min_partition_size($hd), $max - $part->{start}); #- need this to be able to get back the approximation of using MB
put_in_hash($part, fs::type::type_name2subpart($type_name));
$do_suggest_mount_point = 0 if !$part->{mntpoint};
@@ -587,7 +574,7 @@ sub Delete {
lvm::lv_delete($hd, $part);
} elsif (isLoopback($part)) {
my $f = "$part->{loopback_device}{mntpoint}$part->{loopback_file}";
- if (-e $f && $in->ask_yesorno('', N("Remove the loopback file?"))) {
+ if (-e $f && $in->ask_yesorno(N("Warning"), N("Remove the loopback file?"))) {
unlink $f;
}
my $l = $part->{loopback_device}{loopback};
@@ -606,28 +593,32 @@ sub Delete {
sub Type {
my ($in, $hd, $part) = @_;
- my $warn = sub { ask_alldatawillbelost($in, $part, N_("After changing type of partition %s, all data on this partition will be lost")) };
+ my $warned;
+ my $warn = sub {
+ $warned = 1;
+ ask_alldatawillbelost($in, $part, N_("After changing type of partition %s, all data on this partition will be lost"));
+ };
#- for ext2, warn after choosing as ext2->ext3 can be achieved without loosing any data :)
- $part->{fs_type} eq 'ext2' or $warn->() or return;
+ $part->{fs_type} eq 'ext2' || $part->{fs_type} =~ /ntfs/ or $warn->() or return;
- my @types = fs::type::type_names();
+ my @types = fs::type::type_names($::expert);
#- when readonly, Type() is allowed only when changing {fs_type} but not {pt_type}
#- eg: switching between ext2, ext3, reiserfs...
@types = grep { fs::type::type_name2pt_type($_) == $part->{pt_type} } @types if $hd->{readonly};
my $type_name = fs::type::part2type_name($part);
- $in->ask_from_({ title => N("Change partition type"),
- messages => N("Which filesystem do you want?"),
- focus_first => 1,
- },
- [ { label => N("Type"), val => \$type_name, list => \@types, sort => 0, not_edit => !$::expert } ]) or return;
+ $in->ask_from_({ title => N("Change partition type") },
+ [
+ { label => N("Which filesystem do you want?"), title => 1 },
+ { label => N("Type"), val => \$type_name, list => \@types, sort => 0,
+ focus => sub { 1 }, not_edit => 1, gtk => { wrap_width => 4 } } ]) or return;
my $type = $type_name && fs::type::type_name2subpart($type_name);
if (member($type->{fs_type}, 'ext2', 'ext3')) {
- my $_w = $in->wait_message('', N("Switching from ext2 to ext3"));
+ my $_w = $in->wait_message(N("Please wait"), N("Switching from ext2 to ext3"));
if (run_program::run("tune2fs", "-j", devices::make($part->{device}))) {
put_in_hash($part, $type);
set_isFormatted($part, 1); #- assume that if tune2fs works, partition is formatted
@@ -636,9 +627,15 @@ sub Type {
fs::format::disable_forced_fsck($part->{device});
return;
}
+ } elsif ($type->{fs_type} =~ /ntfs/ && $part->{fs_type} =~ /ntfs/) {
+ if ($type->{fs_type} eq 'ntfs-3g') {
+ $in->do_pkgs->ensure_binary_is_installed('ntfs-3g', 'mount.ntfs-3g') or return;
+ }
+ put_in_hash($part, $type);
+ return;
}
#- either we switch to non-ext3 or switching losslessly to ext3 failed
- $part->{fs_type} ne 'ext2' or $warn->() or return;
+ $warned or $warn->() or return;
if (defined $type) {
check_type($in, $type, $hd, $part) and fsedit::change_type($type, $hd, $part);
@@ -647,8 +644,11 @@ sub Type {
sub Label {
my ($in, $_hd, $part) = @_;
- $in->ask_from('', N("Which volume label?"),
- [ { val => \$part->{device_LABEL} } ]) or return;
+ $in->ask_from(N("Which volume label?"), '',
+
+ [
+ { label => N("Which volume label?"), title => 1 },
+ { label => N("Label:"), val => \$part->{device_LABEL} } ]) or return;
$part->{prefer_device_LABEL} = to_bool($part->{device_LABEL});
}
@@ -662,13 +662,12 @@ sub Mount_point {
fs::get::has_mntpoint('/', $all_hds) || $part_->{mntpoint} eq '/boot' ? $part_->{mntpoint} : '/';
} else { '' }
};
- $in->ask_from_({ messages =>
- isLoopback($part) ? N("Where do you want to mount the loopback file %s?", $part->{loopback_file}) :
- N("Where do you want to mount device %s?", $part->{device}),
- focus_first => 1,
+ my $msg = isLoopback($part) ? N("Where do you want to mount the loopback file %s?", $part->{loopback_file}) :
+ N("Where do you want to mount device %s?", $part->{device});
+ $in->ask_from_({
callbacks => {
complete => sub {
- !isPartOfLoopback($part) || $mntpoint or $in->ask_warn('',
+ !isPartOfLoopback($part) || $mntpoint or $in->ask_warn(N("Error"),
N("Can not unset mount point as this partition is used for loop back.
Remove the loopback first")), return 1;
$part->{mntpoint} eq $mntpoint || check_mntpoint($in, $mntpoint, $part, $all_hds) or return 1;
@@ -676,8 +675,11 @@ Remove the loopback first")), return 1;
0;
} },
},
- [ { label => N("Mount point"), val => \$mntpoint,
+ [
+ { label => $msg, title => 1 },
+ { label => N("Mount point"), val => \$mntpoint,
list => [ uniq(if_($mntpoint, $mntpoint), fsedit::suggestions_mntpoint($all_hds), '') ],
+ focus => sub { 1 },
not_edit => 0 } ],
) or return;
$part->{mntpoint} = $mntpoint;
@@ -693,9 +695,11 @@ sub Mount_point_raw_hd {
my $mntpoint = $part->{mntpoint} || shift @propositions;
$in->ask_from(
+ N("Mount point"),
'',
- N("Where do you want to mount %s?", $part->{device}),
- [ { label => N("Mount point"), val => \$mntpoint,
+ [
+ { label => N("Where do you want to mount %s?", $part->{device}), title => 1 },
+ { label => N("Mount point"), val => \$mntpoint,
list => [ if_($mntpoint, $mntpoint), '', @propositions ],
not_edit => 0 } ],
complete => sub {
@@ -754,7 +758,7 @@ sub Resize {
#- make sure that even after normalizing the size to cylinder boundaries, the minimun will be saved,
#- this save at least a cylinder (less than 8Mb).
$min += partition_table::raw::cylinder_size($hd);
- $min >= $max and return $in->ask_warn('', N("This partition is not resizeable"));
+ $min >= $max and return $in->ask_warn(N("Warning"), N("This partition is not resizeable"));
#- for these, we have tools to resize partition table
#- without losing data (or at least we hope so :-)
@@ -766,8 +770,12 @@ sub Resize {
}
my $mb_size = $part->{size} >> 11;
- $in->ask_from(N("Resize"), N("Choose the new size"), [
- { label => N("New size in MB: "), val => \$mb_size, min => $min >> 11, max => $max >> 11, type => 'range' },
+ my ($gmin, $gmax) = ($min >> 11, $max >> 11);
+ $in->ask_from(N("Resize"), '', [
+ { label => N("Choose the new size"), title => 1 },
+ { label => N("New size in MB: "), val => \$mb_size, min => $gmin, max => $gmax, type => 'range', SpinButton => $::expert },
+ { label => N("Minimum size: %s MB", $gmin) },
+ { label => N("Maximum size: %s MB", $gmax) },
]) or return;
@@ -797,7 +805,7 @@ sub Resize {
$adjust->(1) or return if $size > $oldsize;
- my $wait = $in->wait_message(N("Resizing"), '');
+ my $wait = $in->wait_message(N("Please wait"), N("Resizing"));
if ($nice_resize{fat}) {
local *log::l = sub { $wait->set(join(' ', @_)) };
@@ -808,14 +816,14 @@ sub Resize {
log::l("ntfs resize to $part->{size} sectors");
$nice_resize{ntfs}->resize($part->{size});
$wait = undef;
- $in->ask_warn('', N("To ensure data integrity after resizing the partition(s),
+ $in->ask_warn(N("Warning"), N("To ensure data integrity after resizing the partition(s),
filesystem checks will be run on your next boot into Microsoft Windows®"));
} elsif ($nice_resize{reiserfs}) {
log::l("reiser resize to $part->{size} sectors");
- run_program::run('resize_reiserfs', '-f', '-q', '-s' . int($part->{size}/2) . 'K', devices::make($part->{device}));
+ run_program::run_or_die('resize_reiserfs', '-f', '-q', '-s' . int($part->{size}/2) . 'K', devices::make($part->{device}));
} elsif ($nice_resize{xfs}) {
#- happens only with mounted LVM, see above
- run_program::run("xfs_growfs", $part->{mntpoint});
+ run_program::run_or_die("xfs_growfs", $part->{mntpoint});
}
if (%nice_resize) {
@@ -841,7 +849,7 @@ sub Mount {
my $w;
fs::mount::part($part, 0, sub {
my ($msg) = @_;
- $w ||= $in->wait_message('', $msg);
+ $w ||= $in->wait_message(N("Please wait"), $msg);
$w->set($msg);
});
}
@@ -849,7 +857,7 @@ sub Add2RAID {
my ($in, $_hd, $part, $all_hds) = @_;
my $raids = $all_hds->{raids};
- my $md_part = $in->ask_from_listf('', N("Choose an existing RAID to add to"),
+ my $md_part = $in->ask_from_listf(N("Add to RAID"), N("Choose an existing RAID to add to"),
sub { ref($_[0]) ? $_[0]{device} : $_[0] },
[ @$raids, N_("new") ]) or return;
@@ -866,13 +874,14 @@ sub Add2LVM {
my $lvms = $all_hds->{lvms};
write_partitions($in, $_) or return foreach isRAID($part) ? @{$all_hds->{hds}} : $hd;
- my $lvm = $in->ask_from_listf_('', N("Choose an existing LVM to add to"),
+ my $lvm = $in->ask_from_listf_(N("Add to LVM"), N("Choose an existing LVM to add to"),
sub { ref($_[0]) ? $_[0]{VG_name} : $_[0] },
[ @$lvms, N_("new") ]) or return;
require lvm;
if (!ref $lvm) {
# create new lvm
- my $name = $in->ask_from_entry('', N("LVM name?")) or return;
+ # FIXME: when mdv2006 is out: remove the question mark from the dialog title
+ my $name = $in->ask_from_entry(N("LVM name?"), N("LVM name?")) or return;
$lvm = new lvm($name);
push @$lvms, $lvm;
}
@@ -900,9 +909,9 @@ sub RemoveFromLVM {
if (@{$lvm->[0]{disks}} > 1) {
my ($used, $_total) = lvm::pv_physical_extents($part);
if ($used) {
- $in->ask_yesorno('', N("Physical volume %s is still in use.
+ $in->ask_yesorno(N("Warning"), N("Physical volume %s is still in use.
Do you want to move used physical extents on this volume to other volumes?", $part->{device})) or return;
- my $_w = $in->wait_message('', N("Moving physical extents"));
+ my $_w = $in->wait_message(N("Please wait"), N("Moving physical extents"));
lvm::pv_move($part);
}
lvm::vg_reduce($lvm->[0], $part);
@@ -920,7 +929,7 @@ sub Loopback {
write_partitions($in, $hd) or return;
- my $handle = any::inspect($real_part) or $in->ask_warn('', N("This partition can not be used for loopback")), return;
+ my $handle = any::inspect($real_part) or $in->ask_warn(N("Error"), N("This partition can not be used for loopback")), return;
my ($min, $max) = (1, fs::loopback::getFree($handle->{dir}, $real_part));
$max = min($max, 1 << (31 - 9)) if $real_part->{fs_type} eq 'vfat'; #- FAT does not handle file size bigger than 2GB
@@ -935,15 +944,15 @@ sub Loopback {
my $mb_size = $part->{size} >> 11;
$in->ask_from(N("Loopback"), '', [
{ label => N("Loopback file name: "), val => \$part->{loopback_file} },
- { label => N("Size in MB: "), val => \$mb_size, min => $min >> 11, max => $max >> 11, type => 'range' },
- { label => N("Filesystem type: "), val => \$type_name, list => [ fs::type::type_names() ], not_edit => !$::expert, sort => 0 },
+ { label => N("Size in MB: "), val => \$mb_size, min => $min >> 11, max => $max >> 11, type => 'range', SpinButton => $::expert },
+ { label => N("Filesystem type: "), val => \$type_name, list => [ fs::type::type_names($::expert) ], not_edit => !$::expert, sort => 0 },
],
complete => sub {
- $part->{loopback_file} or $in->ask_warn('', N("Give a file name")), return 1, 0;
+ $part->{loopback_file} or $in->ask_warn(N("Give a file name"), N("Give a file name")), return 1, 0;
$part->{loopback_file} =~ s|^([^/])|/$1|;
if (my $size = fs::loopback::verifFile($handle->{dir}, $part->{loopback_file}, $real_part)) {
- $size == -1 and $in->ask_warn('', N("File is already used by another loopback, choose another one")), return 1, 0;
- $in->ask_yesorno('', N("File already exists. Use it?")) or return 1, 0;
+ $size == -1 and $in->ask_warn(N("Warning"), N("File is already used by another loopback, choose another one")), return 1, 0;
+ $in->ask_yesorno(N("Warning"), N("File already exists. Use it?")) or return 1, 0;
delete $part->{notFormatted};
$part->{size} = divide($size, 512);
} else {
@@ -965,21 +974,28 @@ sub Options {
my ($options, $unknown) = fs::mount_options::unpack($part);
my %help = fs::mount_options::help();
- my %prev_options = %$options;
+ my %callbacks = (
+ # we don't want both user and users
+ user => sub { $options->{users} = 0; $options->{$_} = $options->{user} foreach @$user_implies },
+ users => sub { $options->{user} = 0; $options->{$_} = $options->{users} foreach @$user_implies },
+ );
+
+
$in->ask_from(N("Mount options"),
'',
[
+ { label => N("Mount options"), title => 1 },
(map {
{ label => $_, text => scalar warp_text(formatAlaTeX($help{$_})), val => \$options->{$_}, hidden => scalar(/password/),
- advanced => !$part->{rootDevice} && !member($_, @simple_options), if_(!/=$/, type => 'bool') };
+ advanced => !$part->{rootDevice} && !member($_, @simple_options), if_(!/=$/, type => 'bool'),
+ if_($callbacks{$_}, changed => $callbacks{$_}),
+ };
} keys %$options),
{ label => N("Various"), val => \$unknown, advanced => 1 },
],
- changed => sub {
- if (my $user = find { $prev_options{$_} != $options->{$_} } 'users', 'user') {
- $options->{$user eq 'user' ? 'users' : 'user'} = 0 if $options->{$user}; # we don't want both user and users
- $options->{$_} = $options->{$user} foreach @$user_implies;
- %prev_options = %$options;
+ complete => sub {
+ if (($options->{usrquota} || $options->{grpquota}) && !$::isInstall) {
+ $in->do_pkgs->ensure_binary_is_installed('quota', 'quotacheck');
}
if ($options->{encrypted}) {
# modify $part->{options} for the check
@@ -1002,8 +1018,7 @@ sub Options {
delete $options->{'encryption='};
delete $part->{encrypt_key};
}
- },
- ) or return;
+ }) or return;
fs::mount_options::pack($part, $options, $unknown);
1;
@@ -1039,10 +1054,10 @@ sub is_part_existing {
sub modifyRAID {
my ($in, $raids, $md_part) = @_;
my $new_device = $md_part->{device};
- $in->ask_from('', '',
+ $in->ask_from(N("Options"), '',
[
{ label => N("device"), val => \$new_device, list => [ $md_part->{device}, raid::free_mds($raids) ], sort => 0 },
-{ label => N("level"), val => \$md_part->{level}, list => [ qw(0 1 4 5 linear) ] },
+{ label => N("level"), val => \$md_part->{level}, list => [ qw(0 1 4 5 6 linear) ] },
{ label => N("chunk size in KiB"), val => \$md_part->{'chunk-size'} },
],
) or return;
@@ -1075,7 +1090,7 @@ sub ask_alldatawillbelost {
sub partitions_suggestions {
my ($in) = @_;
my $t = $::expert ?
- $in->ask_from_list_('', N("What type of partitioning?"), [ keys %fsedit::suggestions ]) :
+ $in->ask_from_list_(N("Type"), N("What type of partitioning?"), [ keys %fsedit::suggestions ]) :
'simple';
$fsedit::suggestions{$t};
}
@@ -1084,10 +1099,10 @@ sub check_type {
my ($in, $type, $hd, $part) = @_;
eval { fs::type::check($type->{fs_type}, $hd, $part) };
if (my $err = $@) {
- $in->ask_warn('', formatError($err));
+ $in->ask_warn(N("Error"), formatError($err));
return;
}
- if ($::isStandalone && $type->{fs_type}) {
+ if ($::isStandalone && $type->{fs_type} && fs::format::known_type($type)) {
fs::format::check_package_is_installed($in->do_pkgs, $type->{fs_type}) or return;
}
1;
@@ -1097,10 +1112,10 @@ sub check_mntpoint {
my $seen;
eval {
catch_cdie { fsedit::check_mntpoint($mntpoint, $part, $all_hds) }
- sub { $seen = 1; $in->ask_okcancel('', formatError($@)) };
+ sub { $seen = 1; $in->ask_okcancel(N("Error"), formatError($@)) };
};
if (my $err = $@) {
- $in->ask_warn('', formatError($err)) if !$seen;
+ $in->ask_warn(N("Error"), formatError($err)) if !$seen;
return;
}
1;
@@ -1149,6 +1164,9 @@ sub format_ {
if ($::isStandalone) {
fs::format::check_package_is_installed($in->do_pkgs, $part->{fs_type}) or return;
}
+ if ($::expert && !member($part->{fs_type}, 'reiserfs', 'xfs')) {
+ $part->{toFormatCheck} = $in->ask_yesorno(N("Confirmation"), N("Check bad blocks?"));
+ }
$part->{isFormatted} = 0; #- force format;
my ($_w, $wait_message) = $in->wait_message_with_progress_bar;
fs::format::part($all_hds, $part, $wait_message);
@@ -1162,7 +1180,11 @@ sub need_migration {
if (@l && $::isStandalone) {
my $choice;
my @choices = (N_("Move files to the new partition"), N_("Hide files"));
- $in->ask_from('', N("Directory %s already contains data\n(%s)", $mntpoint, formatList(5, @l)),
+ $in->ask_from(N("Warning"), N("Directory %s already contains data
+(%s)
+
+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)",
+ $mntpoint, formatList(5, @l)),
[ { val => \$choice, list => \@choices, type => 'list', format => sub { translate($_[0]) } } ]) or return;
$choice eq $choices[0] ? 'migrate' : 'hide';
} else {
@@ -1173,7 +1195,7 @@ sub need_migration {
sub migrate_files {
my ($in, $_hd, $part) = @_;
- my $wait = $in->wait_message('', N("Moving files to the new partition"));
+ my $wait = $in->wait_message(N("Please wait"), N("Moving files to the new partition"));
my $handle = any::inspect($part, '', 'rw');
my @l = glob_("$part->{mntpoint}/*");
foreach (@l) {
@@ -1196,7 +1218,7 @@ sub warn_if_renumbered {
my @l = map {
my ($old, $new) = @$_;
N("partition %s is now known as %s", $old, $new) } @$l;
- $in->ask_warn('', join("\n", N("Partitions have been renumbered: "), @l));
+ $in->ask_warn(N("Warning"), join("\n", N("Partitions have been renumbered: "), @l));
}
#- unit of $mb is mega bytes, min and max are in sectors, this
@@ -1217,7 +1239,6 @@ sub format_part_info {
$info .= N("Mount point: ") . "$part->{mntpoint}\n" if $part->{mntpoint};
$info .= N("Device: ") . "$part->{device}\n" if $part->{device} && !isLoopback($part);
- $info .= N("Devfs name: ") . "$part->{devfs_device}\n" if $part->{devfs_device} && $::expert;
$info .= N("Volume label: ") . "$part->{device_LABEL}\n" if $part->{device_LABEL} && $::expert;
$info .= N("DOS drive letter: %s (just a guess)\n", $part->{device_windobe}) if $part->{device_windobe};
if (arch() eq "ppc") {
@@ -1271,7 +1292,8 @@ sub format_part_info {
sub format_part_info_short {
my ($hd, $part) = @_;
- isEmpty($part) ? format_part_info($hd, $part) : partition_table::description($part);
+ isEmpty($part) ? N("Empty space on %s (%s)", $hd->{device}, formatXiB($part->{size}, 512))
+ : partition_table::description($part);
}
sub format_hd_info {
@@ -1332,8 +1354,8 @@ sub choose_encrypt_key {
messages => N("Choose your filesystem encryption key"),
callbacks => {
complete => sub {
- length $encrypt_key < 6 and $in->ask_warn('', N("This encryption key is too simple (must be at least %d characters long)", 6)), return 1,0;
- $encrypt_key eq $encrypt_key2 or $in->ask_warn('', [ N("The encryption keys do not match"), N("Please try again") ]), return 1,1;
+ length $encrypt_key < 6 and $in->ask_warn(N("Warning"), N("This encryption key is too simple (must be at least %d characters long)", 6)), return 1,0;
+ $encrypt_key eq $encrypt_key2 or $in->ask_warn(N("Error"), [ N("The encryption keys do not match"), N("Please try again") ]), return 1,1;
return 0;
} } }, [
{ label => N("Encryption key"), val => \$encrypt_key, hidden => 1 },
diff --git a/perl-install/diskdrake/removable.pm b/perl-install/diskdrake/removable.pm
index a38671848..a4d225475 100644
--- a/perl-install/diskdrake/removable.pm
+++ b/perl-install/diskdrake/removable.pm
@@ -37,7 +37,7 @@ sub options {
}
sub mount_point {
my ($in, $raw_hd, $all_hds) = @_;
- diskdrake::interactive::Mount_point_raw_hd($in, $raw_hd, $all_hds, "/mnt/$raw_hd->{device}");
+ diskdrake::interactive::Mount_point_raw_hd($in, $raw_hd, $all_hds, "/media/$raw_hd->{device}");
}
sub type {
my ($in, $raw_hd) = @_;
@@ -45,7 +45,7 @@ sub type {
my $fs_type = $raw_hd->{fs_type};
$in->ask_from(N("Change type"),
N("Which filesystem do you want?"),
- [ { label => N("Type"), val => \$fs_type, list => [@fs], not_edit => !$::expert } ]) or return;
+ [ { label => N("Type"), val => \$fs_type, list => [@fs] } ]) or return;
$raw_hd->{fs_type} = $fs_type;
}
diff --git a/perl-install/diskdrake/smbnfs_gtk.pm b/perl-install/diskdrake/smbnfs_gtk.pm
index 81b3581ec..dcb6e6c40 100644
--- a/perl-install/diskdrake/smbnfs_gtk.pm
+++ b/perl-install/diskdrake/smbnfs_gtk.pm
@@ -7,8 +7,9 @@ use fs::get;
use diskdrake::interactive;
use common;
use interactive;
-use network::smb;
-use network::nfs;
+use fs::remote::smb;
+use fs::remote::nfs;
+use mygtk2 qw(gtknew gtkset);
use ugtk2 qw(:helpers :wrappers :create);
my ($all_hds, $in, $tree_model, $current_entry, $current_leaf, %icons);
@@ -59,7 +60,7 @@ sub per_entry_info_box {
my ($box, $kind, $entry) = @_;
my $info = $entry ? diskdrake::interactive::format_raw_hd_info($entry) : '';
$kind->{per_entry_info_box}->destroy if $kind->{per_entry_info_box};
- gtkpack($box, $kind->{per_entry_info_box} = gtkadd(Gtk2::Frame->new(N("Details")), gtkset_justify(Gtk2::Label->new($info), 'left')));
+ gtkpack($box, $kind->{per_entry_info_box} = gtknew('Frame', text => N("Details"), child => gtknew('Label', text => $info, justify => 'left')));
}
sub per_entry_action_box {
@@ -70,7 +71,7 @@ sub per_entry_action_box {
push @buttons, map {
my $s = $_;
- gtksignal_connect(Gtk2::Button->new(translate($s)), clicked => sub { try($kind, $s, {}, $entry) });
+ gtknew('Button', text => translate($s), clicked => sub { try($kind, $s, {}, $entry) });
} (if_($entry->{isMounted}, N_("Unmount")),
if_($entry->{mntpoint} && !$entry->{isMounted}, N_("Mount"))) if $entry;
@@ -82,11 +83,11 @@ sub per_entry_action_box {
);
push @buttons, map {
my ($txt, $f) = @$_;
- $f ? gtksignal_connect(Gtk2::Button->new(translate($txt)), clicked => sub { try_($kind, $txt, $f, $entry) })
- : Gtk2::Label->new("");
+ $f ? gtknew('Button', text => translate($txt), clicked => sub { try_($kind, $txt, $f, $entry) })
+ : gtknew('Label', text => "");
} group_by2(@l);
- gtkadd($box, gtkpack(Gtk2::HBox->new(0,0), @buttons));
+ gtkadd($box, gtknew('HBox', children_loose => [ @buttons]));
}
sub done {
@@ -140,7 +141,7 @@ sub import_tree {
$tree->set_headers_visible(0);
foreach ('default', 'server', 'has_mntpoint', 'mounted') {
- $icons{$_} = gtkcreate_pixbuf("smbnfs_$_");
+ $icons{$_} = gtknew('Pixbuf', file => "smbnfs_$_");
}
my $add_server = sub {
@@ -161,13 +162,13 @@ sub import_tree {
if ($server->{username}) {
$in->ask_warn('', N("Can not login using username %s (bad password?)", $server->{username}));
- network::smb::remove_bad_credentials($server);
+ fs::remote::smb::remove_bad_credentials($server);
} else {
- if (my @l = network::smb::authentications_available($server)) {
+ if (my @l = fs::remote::smb::authentications_available($server)) {
my $user = $in->ask_from_list_(N("Domain Authentication Required"),
N("Which username"), [ @l, N_("Another one") ]) or return;
if ($user ne 'Another one') {
- network::smb::read_credentials($server, $user);
+ fs::remote::smb::read_credentials($server, $user);
goto $find_exports;
}
}
@@ -202,12 +203,12 @@ sub import_tree {
};
{
- my $search = Gtk2::Button->new(N("Search servers"));
+ my $search = gtknew('Button', text => N("Search servers"));
gtkpack__($info_box,
gtksignal_connect($search,
clicked => sub {
$add_server->($_) foreach sort { $a->{name} cmp $b->{name} } $kind->find_servers;
- $search->set_label(N("Search new servers"));
+ gtkset($search, text => N("Search new servers"));
}));
}
@@ -241,16 +242,16 @@ sub add_smbnfs {
my ($widget, $kind) = @_;
die if $kind->{main_box};
- $kind->{info_box} = Gtk2::VBox->new(0,0);
- $kind->{display_box} = create_scrolled_window(import_tree($kind, $kind->{info_box}));
- $kind->{action_box} = Gtk2::HBox->new(0,0);
+ $kind->{info_box} = gtknew('VBox');
+ $kind->{display_box} = gtknew('ScrolledWindow', child => import_tree($kind, $kind->{info_box}));
+ $kind->{action_box} = gtknew('HBox');
$kind->{main_box} =
- gtkpack_(Gtk2::VBox->new(0,7),
- 1, gtkpack(Gtk2::HBox->new(0,7),
- gtkset_size_request($kind->{display_box}, 200, 0),
- $kind->{info_box}),
+ gtknew('VBox', spacing => 7, children => [
+ 1, gtknew('HBox', spacing => 7, children_loose => [
+ gtkset($kind->{display_box}, width => 200),
+ $kind->{info_box}]),
0, $kind->{action_box},
- );
+ ]);
$widget->add($kind->{main_box});
$current_entry = undef;
@@ -259,11 +260,11 @@ sub add_smbnfs {
}
sub nfs2kind() {
- network::nfs->new({ type => 'nfs', name => 'NFS', val => $all_hds->{nfss}, no_auto => 1 });
+ fs::remote::nfs->new({ type => 'nfs', name => 'NFS', val => $all_hds->{nfss}, no_auto => 1 });
}
sub smb2kind() {
- network::smb->new({ type => 'smb', name => 'Samba', val => $all_hds->{smbs}, no_auto => 1 });
+ fs::remote::smb->new({ type => 'smb', name => 'Samba', val => $all_hds->{smbs}, no_auto => 1 });
}
diff --git a/perl-install/do_pkgs.pm b/perl-install/do_pkgs.pm
index d5ea08a0c..4ea4d812c 100644
--- a/perl-install/do_pkgs.pm
+++ b/perl-install/do_pkgs.pm
@@ -13,7 +13,7 @@ sub ensure_is_installed {
my ($do, $pkg, $o_file, $b_auto) = @_;
if (! $o_file || ! -e "$::prefix$o_file") {
- $do->in->ask_okcancel('', N("The package %s needs to be installed. Do you want to install it?", $pkg), 1)
+ $do->in->ask_okcancel(N("Warning"), N("The package %s needs to be installed. Do you want to install it?", $pkg), 1)
or return if !$b_auto && $do->in;
if (!$do->install($pkg)) {
$do->in->ask_warn(N("Error"), N("Could not install the %s package!", $pkg)) if $do->in;
@@ -21,7 +21,7 @@ sub ensure_is_installed {
}
}
if ($o_file && ! -e "$::prefix$o_file") {
- $do->in->ask_warn('', N("Mandatory package %s is missing", $pkg)) if $do->in;
+ $do->in->ask_warn(N("Error"), N("Mandatory package %s is missing", $pkg)) if $do->in;
return;
}
1;
@@ -36,7 +36,11 @@ sub ensure_are_installed {
or return if !$b_auto && $do->in;
if (!$do->install(@not_installed)) {
- $do->in->ask_warn(N("Error"), N("Could not install the %s package!", $not_installed[0]));
+ if ($do->in) {
+ $do->in->ask_warn(N("Error"), N("Could not install the %s package!", $not_installed[0]));
+ } else {
+ log::l("Could not install packages: " . join(' ', @not_installed));
+ }
return;
}
1;
@@ -46,15 +50,15 @@ sub ensure_binary_is_installed {
my ($do, $pkg, $binary, $b_auto) = @_;
if (!whereis_binary($binary, $::prefix)) {
- $do->in->ask_okcancel('', N("The package %s needs to be installed. Do you want to install it?", $pkg), 1)
+ $do->in->ask_okcancel(N("Warning"), N("The package %s needs to be installed. Do you want to install it?", $pkg), 1)
or return if !$b_auto && $do->in;
if (!$do->install($pkg)) {
- $do->in->ask_warn(N("Error"), N("Could not install the %s package!", $pkg));
+ $do->in->ask_warn(N("Error"), N("Could not install the %s package!", $pkg)) if $do->in;
return;
}
}
if (!whereis_binary($binary, $::prefix)) {
- $do->in->ask_warn('', N("Mandatory package %s is missing", $pkg));
+ $do->in->ask_warn(N("Error"), N("Mandatory package %s is missing", $pkg)) if $do->in;
return;
}
1;
@@ -79,20 +83,23 @@ sub is_installed {
$do->are_installed($name);
}
+#- takes something like "ati-kernel"
+#- returns:
+#- - the various ati-kernel-2.6.XX-XXmdk available for the installed kernels
+#- - dkms-ati if available
sub check_kernel_module_packages {
- my ($do, $base_name, $o_ext_name) = @_;
+ my ($do, $base_name) = @_;
require bootloader;
- my @rpms = $do->are_available(if_($base_name =~ /^(.*)-kernel$/, "dkms-$1"),
- map {
- $base_name . '-' . bootloader::vmlinuz2version($_);
- } bootloader::installed_vmlinuz());
- my @ext = $o_ext_name ? $do->are_available($o_ext_name) : ();
+ my @rpms = (
+ 'dkms-' . $base_name,
+ map { $base_name . '-kernel-' . bootloader::vmlinuz2version($_) } bootloader::installed_vmlinuz()
+ );
+ @rpms = $do->are_available(@rpms) or return;
- log::l("found kernel module packages $_") foreach @rpms, @ext;
+ log::l("those kernel module packages can be installed: " . join(' ', @rpms));
- #- we want at least a kernel package and the ext package if specified
- @rpms && (!$o_ext_name || @ext) && [ @rpms, @ext ];
+ \@rpms;
}
################################################################################
@@ -107,7 +114,7 @@ sub new {
$in->isa('interactive') or undef $in;
- require pkgs;
+ require install::pkgs;
bless { in => $in, o => $::o }, $type;
}
@@ -121,26 +128,27 @@ sub install {
log::l("do_pkgs_during_install::install");
if ($::testing || $::globetrotter) {
log::l("i would install packages " . join(' ', @l));
- return 1;
+ 1;
} else {
$do->{o}->pkg_install(@l);
+ 1; #- HACK, need better fix in install::steps::pkg_install()
}
}
sub what_provides {
my ($do, $name) = @_;
- map { $_->name } pkgs::packagesProviding($do->{o}{packages}, $name);
+ map { $_->name } install::pkgs::packagesProviding($do->{o}{packages}, $name);
}
sub are_available {
my ($do, @pkgs) = @_;
- grep { pkgs::packageByName($do->{o}{packages}, $_) } @pkgs;
+ grep { install::pkgs::packageByName($do->{o}{packages}, $_) } @pkgs;
}
sub are_installed {
my ($do, @l) = @_;
grep {
- my $p = pkgs::packageByName($do->{o}{packages}, $_);
+ my $p = install::pkgs::packageByName($do->{o}{packages}, $_);
$p && $p->flag_available;
} @l;
}
@@ -149,8 +157,8 @@ sub remove {
my ($do, @l) = @_;
@l = grep {
- my $p = pkgs::packageByName($do->{o}{packages}, $_);
- pkgs::unselectPackage($do->{o}{packages}, $p) if $p;
+ my $p = install::pkgs::packageByName($do->{o}{packages}, $_);
+ install::pkgs::unselectPackage($do->{o}{packages}, $p) if $p;
$p;
} @l;
run_program::rooted($::prefix, 'rpm', '-e', @l);
@@ -160,7 +168,7 @@ sub remove_nodeps {
my ($do, @l) = @_;
@l = grep {
- my $p = pkgs::packageByName($do->{o}{packages}, $_);
+ my $p = install::pkgs::packageByName($do->{o}{packages}, $_);
if ($p) {
$p->set_flag_requested(0);
$p->set_flag_required(0);
@@ -185,10 +193,6 @@ sub new {
sub in {
my ($do) = @_;
- $do->{in} ||= do {
- require interactive;
- interactive->vnew;
- };
$do->{in};
}
@@ -202,12 +206,12 @@ sub install {
return 1;
}
- my $_wait = $do->in->wait_message('', N("Installing packages..."));
- $do->in->suspend;
- log::explanations("installed packages @l");
+ my $_wait = $do->in && $do->in->wait_message(N("Please wait"), N("Installing packages..."));
+ $do->in->suspend if $do->in;
+ log::explanations("installing packages @l");
#- --expect-install added in urpmi 4.6.11
my $ret = system('urpmi', '--allow-medium-change', '--auto', '--no-verify-rpm', '--gui', '--expect-install', @l) == 0;
- $do->in->resume;
+ $do->in->resume if $do->in;
$ret;
}
@@ -216,16 +220,15 @@ sub are_available {
my %pkgs = map { $_ => 1 } @pkgs;
eval {
- local *_;
- require urpm;
+ require urpm::media;
my $urpm = urpm->new;
- $urpm->read_config(nocheck_access => 1);
- foreach (grep { !$_->{ignore} } @{$urpm->{media} || []}) {
- $urpm->parse_synthesis("$urpm->{statedir}/synthesis.$_->{hdlist}");
- }
+ $urpm->{log} = \&log::l;
+ urpm::media::configure($urpm,
+ nocheck_access => 1,
+ no_skiplist => 1,
+ no_second_pass => 1);
map { $_->name } grep { $pkgs{$_->name} } @{$urpm->{depslist} || []};
};
-
}
sub what_provides {
@@ -249,11 +252,11 @@ sub are_installed {
sub remove {
my ($do, @l) = @_;
- my $_wait = $do->in->wait_message('', N("Removing packages..."));
- $do->in->suspend;
- log::explanations("removed packages @l");
+ my $_wait = $do->in && $do->in->wait_message(N("Please wait"), N("Removing packages..."));
+ $do->in->suspend if $do->in;
+ log::explanations("removing packages @l");
my $ret = system('rpm', '-e', @l) == 0;
- $do->in->resume;
+ $do->in->resume if $do->in;
$ret;
}
diff --git a/perl-install/drakxtools.spec b/perl-install/drakxtools.spec
deleted file mode 100644
index 2bd05dc67..000000000
--- a/perl-install/drakxtools.spec
+++ /dev/null
@@ -1,6664 +0,0 @@
-# EDIT IN CVS NOT IN SOURCE PACKAGE (NO PATCH ALLOWED).
-
-Summary: The drakxtools (XFdrake, diskdrake, keyboarddrake, mousedrake...)
-Name: drakxtools
-Version: 10.4.12
-Release: %mkrel 1
-Url: http://qa.mandriva.com/twiki/bin/view/Main/DrakXTools
-Source0: %name-%version.tar.bz2
-License: GPL
-Group: System/Configuration/Other
-Requires: %{name}-newt = %version-%release, perl-Gtk2 >= 1.072-1mdk, perl-Glib >= 1.072-1mdk, xtest, font-tools, usermode >= 1.63-5mdk, perl-MDK-Common >= 1.1.23, mandrake-doc-common >= 9.2-5mdk, perl-Net-DBus
-Requires: foomatic-db-engine
-Requires: drakconf-icons
-Requires: gtkdialogs
-Conflicts: drakconf < 10.3-0.6mdk
-Conflicts: rpmdrake < 2.1-29mdk
-Conflicts: mandrake_doc-drakxtools-en < 9.2, mandrake_doc-drakxtools-es < 9.2, mandrake_doc-drakxtools-fr < 9.2
-Conflicts: bootloader-utils < 1.8-4mdk, bootsplash < 2.1.7-1mdk
-BuildRequires: gettext, gtk+2-devel, ldetect-devel >= 0.5.3-1mdk, ncurses-devel, newt-devel, perl-devel >= 1:5.8.0-20mdk, libext2fs-devel, perl-MDK-Common-devel >= 1.1.8-3mdk
-BuildRoot: %_tmppath/%name-buildroot
-Provides: draksec
-Obsoletes: draksec
-%define _requires_exceptions perl(Net::FTP)\\|perl(Time::localtime)\\|perl(URPM)
-
-%package newt
-Summary: The drakxtools (XFdrake, diskdrake, keyboarddrake, mousedrake...)
-Group: System/Configuration/Other
-Requires: perl-base >= 2:5.8.6-1mdk, urpmi >= 4.6.13, usermode-consoleonly >= 1.44-4mdk
-Requires: perl-Locale-gettext
-Requires: module-init-tools
-Requires: %{name}-backend = %version-%release
-Requires: monitor-edid >= 1.5
-Requires: netprofile
-Obsoletes: diskdrake kbdconfig mouseconfig printtool setuptool drakfloppy
-Provides: diskdrake, kbdconfig mouseconfig printtool setuptool, drakfloppy = %version-%release
-Provides: perl(Newt::Newt)
-Provides: perl(network::isdn_consts)
-
-%package backend
-Summary: Drakxtools libraries and background tools
-Group: System/Configuration/Other
-Requires: ldetect-lst >= 0.1.71
-Requires: dmidecode
-# for fileshareset and filesharelist (#17123)
-Requires: perl-suid
-Conflicts: drakxtools-newt < 10-51mdk
-
-
-%package http
-Summary: The drakxtools via http
-Group: System/Configuration/Other
-Requires: %{name}-newt = %version-%release, perl-Net_SSLeay >= 1.22-1mdk, perl-Authen-PAM >= 0.14-1mdk, perl-CGI >= 2.91-1mdk
-Requires(pre): rpm-helper
-Requires(post): rpm-helper
-
-%package -n drakx-finish-install
-Summary: First boot configuration
-Group: System/Configuration/Other
-Requires: %{name} = %version-%release
-
-%package -n harddrake
-Summary: Main Hardware Configuration/Information Tool
-Group: System/Configuration/Hardware
-Requires: %{name}-newt = %version-%release
-Requires: hwdb-clients
-Obsoletes: kudzu, kudzu-devel, libdetect0, libdetect0-devel, libdetect-lst, libdetect-lst-devel, detect, detect-lst
-Provides: kudzu, kudzu-devel, libdetect0, libdetect0-devel, libdetect-lst, libdetect-lst-devel, detect, detect-lst
-Requires(pre): rpm-helper
-Requires(post): rpm-helper
-
-%package -n harddrake-ui
-Summary: Main Hardware Configuration/Information Tool
-Group: System/Configuration/Hardware
-Requires: %name = %version-%release
-Requires: sane-backends
-
-%description
-Contains many Mandriva Linux applications simplifying users and
-administrators life on a Mandriva Linux machine. Nearly all of
-them work both under XFree (graphical environment) and in console
-(text environment), allowing easy distant work.
-
-drakbug: interactive bug report tool
-
-drakbug_report: help find bugs in DrakX
-
-drakclock: date & time configurator
-
-drakfloppy: boot disk creator
-
-drakfont: import fonts in the system
-
-draklog: show extracted information from the system logs
-
-draknet_monitor: connection monitoring
-
-drakperm: msec GUI (permissions configurator)
-
-drakprinter: detect and configure your printer
-
-draksec: security options managment / msec frontend
-
-draksplash: bootsplash themes creation
-
-drakTermServ: terminal server configurator
-
-listsupportedprinters: list printers
-
-net_applet: applet to check network connection
-
-%description backend
-See package %name
-
-%description newt
-Contains many Mandriva Linux applications simplifying users and
-administrators life on a Mandriva Linux machine. Nearly all of
-them work both under XFree (graphical environment) and in console
-(text environment), allowing easy distant work.
-
-adduserdrake: help you adding a user
-
-diskdrake: DiskDrake makes hard disk partitioning easier. It is
-graphical, simple and powerful. Different skill levels are available
-(newbie, advanced user, expert). It's written entirely in Perl and
-Perl/Gtk. It uses resize_fat which is a perl rewrite of the work of
-Andrew Clausen (libresize).
-
-drakauth: configure authentification (LDAP/NIS/...)
-
-drakautoinst: help you configure an automatic installation replay
-
-drakbackup: backup and restore your system
-
-drakboot: configures your boot configuration (Lilo/GRUB,
-Bootsplash, X, autologin)
-
-drakconnect: LAN/Internet connection configuration. It handles
-ethernet, ISDN, DSL, cable, modem.
-
-drakfirewall: simple firewall configurator
-
-drakgw: internet connection sharing
-
-drakkeyboard: configure your keyboard (both console and X)
-
-draklocale: language configurator, available both for root
-(system wide) and users (user only)
-
-drakmouse: autodetect and configure your mouse
-
-drakproxy: proxies configuration
-
-drakscanner: scanner configurator
-
-draksound: sound card configuration
-
-drakx11: menu-driven program which walks you through setting up
-your X server; it autodetects both monitor and video card if
-possible
-
-drakxservices: SysV services and daemons configurator
-
-drakxtv: auto configure tv card for xawtv grabber
-
-lsnetdrake: display available nfs and smb shares
-
-lspcidrake: display your pci information, *and* the corresponding
-kernel module
-
-%description http
-This add the capability to be runned behind a web server to the drakx tools.
-See package %name
-
-
-%description -n drakx-finish-install
-For OEM-like duplications, it allows at first boot:
-- network configuration
-- creating users
-- setting root password
-- choosing authentication
-
-
-%description -n harddrake
-The harddrake service is a hardware probing tool run at system boot
-time to determine what hardware has been added or removed from the
-system.
-It then offer to run needed config tool to update the OS
-configuration.
-
-
-%description -n harddrake-ui
-This is the main configuration tool for hardware that calls all the
-other configuration tools.
-It offers a nice GUI that show the hardware configuration splitted by
-hardware classes.
-
-
-%prep
-%setup -q
-
-%build
-%make CFLAGS="$RPM_OPT_FLAGS"
-
-%install
-rm -rf $RPM_BUILD_ROOT
-
-%make PREFIX=$RPM_BUILD_ROOT install
-mkdir -p $RPM_BUILD_ROOT/{%_initrddir,%_sysconfdir/{X11/xinit.d,sysconfig/harddrake2}}
-touch $RPM_BUILD_ROOT/etc/sysconfig/harddrake2/previous_hw
-
-dirs1="usr/lib/libDrakX usr/share/libDrakX"
-(cd $RPM_BUILD_ROOT ; find $dirs1 usr/bin usr/sbin ! -type d -printf "/%%p\n")|egrep -v 'bin/.*harddrake' > %{name}.list
-(cd $RPM_BUILD_ROOT ; find $dirs1 -type d -printf "%%%%dir /%%p\n") >> %{name}.list
-
-perl -ni -e '/dbus_object\.pm|network\/(ifw|monitor)\.pm|clock|drak(backup|bug|clock|floppy|font|hosts|ids|log|net_monitor|nfs|perm|printer|sec|splash|TermServ)|gtk|icons|logdrake|net_applet|net_monitor|pixmaps|printer|roam|xf86misc|\.png$/ ? print STDERR $_ : print' %{name}.list 2> %{name}-gtk.list
-perl -ni -e '/http/ ? print STDERR $_ : print' %{name}.list 2> %{name}-http.list
-perl -ni -e 'm!lib/libDrakX|bootloader-config|fileshare|lsnetdrake|drakupdate_fstab|rpcinfo|serial_probe! && !/newt/i ? print STDERR $_ : print' %{name}.list 2> %{name}-backend.list
-perl -ni -e '/finish-install/ ? print STDERR $_ : print' %{name}.list 2> finish-install.list
-
-#mdk menu entry
-mkdir -p $RPM_BUILD_ROOT/%_menudir
-
-cat > $RPM_BUILD_ROOT%_menudir/drakxtools-newt <<EOF
-?package(drakxtools-newt): \
- needs="X11" \
- section="System/Configuration/Other" \
- title="LocaleDrake (System)" \
- longtitle="System wide language configurator" \
- command="/usr/bin/drakconf --start-with=Localization" \
- icon="localedrake.png"
-
-?package(drakxtools-newt): \
- needs="X11" \
- section="System/Configuration/Other" \
- title="LocaleDrake (User)" \
- longtitle="Language configurator" \
- command="/usr/bin/localedrake" \
- icon="localedrake.png"
-
-EOF
-
-cat > $RPM_BUILD_ROOT%_menudir/harddrake-ui <<EOF
-?package(harddrake-ui):\
- needs="X11"\
- section="Configuration/Hardware"\
- title="HardDrake"\
- longtitle="Hardware Central Configuration/information tool"\
- command="/usr/sbin/harddrake2"\
- icon="harddrake.png"
-EOF
-
-cat > $RPM_BUILD_ROOT%_menudir/net_applet <<EOF
-?package(drakxtools):\
- needs="X11"\
- section="System/Monitoring"\
- title="NetApplet"\
- longtitle="Network monitoring applet"\
- command="/usr/bin/net_applet --force"\
- icon="/usr/share/libDrakX/pixmaps/connected.png"
-EOF
-
-cat > $RPM_BUILD_ROOT%_sysconfdir/X11/xinit.d/harddrake2 <<EOF
-#!/bin/sh
-exec /usr/share/harddrake/service_harddrake X11
-EOF
-
-cat > $RPM_BUILD_ROOT%_sysconfdir/X11/xinit.d/net_applet <<EOF
-#!/bin/sh
-DESKTOP=\$1
-case \$DESKTOP in
- KDE|GNOME|IceWM|Fluxbox|XFce4) exec /usr/bin/net_applet;;
-esac
-EOF
-
-mv $RPM_BUILD_ROOT%_sbindir/service_harddrake_confirm $RPM_BUILD_ROOT%_datadir/harddrake/confirm
-
-chmod +x $RPM_BUILD_ROOT{%_datadir/harddrake/{conf*,service_harddrake},%_sysconfdir/X11/xinit.d/{harddrake2,net_applet}}
-# temporary fix until we reenable this feature
-rm -f $RPM_BUILD_ROOT%_sysconfdir/X11/xinit.d/harddrake2
-
-%find_lang libDrakX
-cat libDrakX.lang >> %name.list
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-%post
-%update_menus
-[[ ! -e %_sbindir/kbdconfig ]] && %__ln_s -f keyboarddrake %_sbindir/kbdconfig
-[[ ! -e %_sbindir/mouseconfig ]] && %__ln_s -f mousedrake %_sbindir/mouseconfig
-[[ ! -e %_bindir/printtool ]] && %__ln_s -f ../sbin/printerdrake %_bindir/printtool
-:
-
-%postun
-%clean_menus
-for i in %_sbindir/kbdconfig %_sbindir/mouseconfig %_bindir/printtool;do
- [[ -L $i ]] && %__rm -f $i
-done
-:
-
-%post http
-%_post_service drakxtools_http
-
-%preun http
-%_preun_service drakxtools_http
-
-%post newt
-%update_menus
-
-%postun newt
-%clean_menus
-
-%post -n harddrake-ui
-%update_menus
-
-%postun -n harddrake-ui
-%clean_menus
-
-%post -n harddrake
-%_post_service harddrake
-
-%preun -n harddrake
-%_preun_service harddrake
-
-%postun -n harddrake
-file /etc/sysconfig/harddrake2/previous_hw | fgrep -q perl && %_datadir/harddrake/convert || :
-
-%files backend -f %{name}-backend.list
-%defattr(-,root,root)
-%config(noreplace) /etc/security/fileshare.conf
-%attr(4755,root,root) %_sbindir/fileshareset
-
-%files newt -f %name.list
-%defattr(-,root,root)
-%_menudir/drakxtools-newt
-%doc diskdrake/diskdrake.html
-%_iconsdir/localedrake.png
-%_iconsdir/large/localedrake.png
-%_iconsdir/mini/localedrake.png
-%_mandir/*/*
-
-%files -f %{name}-gtk.list
-%defattr(-,root,root)
-/usr/X11R6/bin/*
-%_sysconfdir/X11/xinit.d/net_applet
-%_menudir/net_applet
-
-%files -n harddrake
-%defattr(-,root,root)
-%config(noreplace) %_initrddir/harddrake
-%dir /etc/sysconfig/harddrake2/
-%config(noreplace) /etc/sysconfig/harddrake2/previous_hw
-%dir %_datadir/harddrake/
-%_datadir/harddrake/*
-#%_sysconfdir/X11/xinit.d/harddrake2
-
-%files -n harddrake-ui
-%defattr(-,root,root)
-%dir /etc/sysconfig/harddrake2/
-%_sbindir/harddrake2
-%_datadir/pixmaps/harddrake2
-%_menudir/harddrake-ui
-%_iconsdir/large/harddrake.png
-%_iconsdir/mini/harddrake.png
-%_iconsdir/harddrake.png
-
-%files -n drakx-finish-install
-%defattr(-,root,root)
-%config(noreplace) %_sysconfdir/sysconfig/finish-install
-%_sysconfdir/X11/xsetup.d/finish-install.xsetup
-%_sbindir/finish-install
-
-%files http -f %{name}-http.list
-%defattr(-,root,root)
-%dir %_sysconfdir/drakxtools_http
-%config(noreplace) %_sysconfdir/pam.d/miniserv
-%_sysconfdir/init.d/drakxtools_http
-%config(noreplace) %_sysconfdir/drakxtools_http/conf
-%config(noreplace) %_sysconfdir/drakxtools_http/authorised_progs
-%config(noreplace) %_sysconfdir/logrotate.d/drakxtools-http
-
-%changelog
-* Thu Mar 9 2006 Thierry Vignaud <tvignaud@mandriva.com> 10.4.12-1mdk
-- adduserdrake: sanitize the GUI (pixel)
-- autosetupprintqueues: fix Plug'n'Print: Name of user logged in on
- the desktop is in /var/run/console/console.lock now -til()
-- diskdrake (pixel):
- o allow to modify xbox partitions on non-xbox (stew)
- o better management of reiserfs4
- o enable creating a md with only one device (#21214)
- o fix untranslated messages (me, #21326)
- o load ide-generic as a fallback (me)
-- drakboot:
- o enable/disable acpi/acpid services when needed (blino, #21316)
- o display disk names (pixel, #21524)
-- drakbackup: create index files for direct-to-tape too clean up some
- issues with direct-to-tape that came with the star additions
- compress the index files (stew)
-- draksplash.pm: fix listing themes (blino)
-- finish-install (blino):
- o ask license after language (#21266)
- o ask for timezone (#21271)
- o allow to rename an old user instead of creating a new one
- o fix country selection
- o reload sys clock from hc once we know the real timezone (#21511)
- o don't try to destroy potentially non-existent wizard window (if
- some steps are skipped for example)
-- harddrake: sync v4l lists with latests kernels
-- service_harddrake:
- o autoconf bluetooth controllers (blino)
- o autoconf laptop services when switching between laptop and desktop
- and toggle the numlock service (blino)
- o fix adding storage controllers
- o manage hardware_raid too
- o really detect firewire controllers (blino)
- o update shorewall interfaces list when a new interface is detected
- (blino, #21252)
-
-* Wed Feb 15 2006 Thierry Vignaud <tvignaud@mandriva.com> 10.4.11-1mdk
-- do require msec anymore (installed by draksec)
-- diskdrake: enable to resize big ext3 fs
-- drakfont:
- o handle *.ttc fonts too
- o fix some confusing labels
- o enable to select fonts with upcase letters in file extensions
- (#16948)
-- draksambashare: small bug fix (aginies)
-- harddrake: fix detecting some ATA devices (#21034)
-
-* Fri Jan 27 2006 Thierry Vignaud <tvignaud@mandriva.com> 10.4.10-1mdk
-- add support for new snd-als300 sound driver
-- handle new dmidecode output (pixel)
-- diskdrake: handle partitions bigger than 2TB (up to 100_000TB)
-- drakboot (pixel):
- o read all per entry entries (esp. makeactive)
- o write makeactive
- o have makeactive for windows entries (#20081)
-- drakkeyboard: updated list of console keyboards (pablo)
-- draksound: prevent some "unlisted sound card" error messages
-- drakTermServ (stew):
- o add tooltips (#20384)
- o check/sanitize user input MAC addresses
- o more support for TS2
-- drakxtv: sync with kernel-2.6.16-rc1-mm2
-- fileshareset (pixel):
- o put kde's enhancements (backward compatible)
- o multi distro
- o new variables in fileshare.conf
-- harddrake: typo fix resulting in undetected sound cards (#20355)
-- harddrake service:
- o convert parallel init to LSB (blino)
- o not an interactive service
- o require dkms (blino)
-- printerdrake:
- o fixed HPLIP setup when setting up a printer without auto-detection (#20231)
- o give priority to custom PPD file if printer queue record in
- printerdrake is broken, use "Postscript" if Foomatic driver is
- wrongly set to "PPD" (#20028.)
- o make sure that when a user supplies an updated PPD file, the new
- file and not the old one from the system gets used
- o moved button for daemon-less CUPS client mode to the top of the
- CUPS configuration dialog to catch accidentally enabling
- o improve and fix printer model/driver listing:
- * fix handling of PPD links in Foomatic printer XML files
- * Avoid duplicate PPD entries for Foomatic-generated PPDs and
- identical pre-generated Foomatic PPDs when hplip-hpijs-ppds is
- installed
- * some polishing of list entries
-- scannerdrake:
- o load kernel modules before the port checking step (the device file
- is usually generated when the module is loaded)
- o support for loading kernel modules only in case of a certain
- connection type (SCSI, USB, Parport)
- o let kernel module only be added to /etc/modules and
- /etc/modprobe.preload if loading of the module with "modprobe"
- succeeded
- o do not die when loading of a kernel module does not succeed
-- XFdrake:
- o defaulting to 1024x768 instead of 800x600 when the monitor size is
- unknown (pixel, #20304)
- o 1024x768@70Hz monitor is too high (pixel, #20304)
- o option IgnoreEDID is no more needed with nvidia driver
-
-* Mon Jan 2 2006 Thierry Vignaud <tvignaud@mandriva.com> 10.4.9-1mdk
-- diskdrake: be more tolerant with devices we cannot guess all info
- about (#20340)
-
-* Mon Jan 2 2006 Thierry Vignaud <tvignaud@mandriva.com> 10.4.8-1mdk
-- drakTermServ (stew):
- o add support for custom kernel args in initrd
- o add support for future unionfs/TS2
-- drakfirewall: don't install and configure mandi-ifw if ifw is
- disabled (blino)
-- harddrake service: add parallel init support (Couriousous)
-- XFdrake: search harder for nvidia driver (blino)
-
-* Mon Dec 19 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.4.7-1mdk
-- diskdrake: handle kernel-2.6.14+
-
-* Sun Dec 18 2005 Pixel <pixel@mandriva.com> 10.4.6-1mdk
-- autosetupprintqueues (till)
- o Removed "localhost" from the DISPLAY veriable, it broke
- the authorization to pop up the printerdrake window
- on the user's desktop when a new USB printer was plugged.
-- net_applet: replace sprintf_fixutf8 with simple sprintf
-- fix running lilo (run_program.pm)
-- allow drakxtools-backend tools to work without perl-Locale-gettext
-
-* Thu Dec 15 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.4.5-1mdk
-- drakbackup (stew):
- o fix some instances of 100% cpu on combo-box 'changed' in "Advanced When"
- o add drakbackup man page
- o update drakbackup.conf man page with new options
-- diskdrake (pixel):
- o add user_xattr (useful for beagle, #15068)
- o lilo handles / on RAID1, so don't warn in that case (#20021)
-- drakconnect (blino):
- o don't overwrite ONBOOT setting when writing adsl configuration
- o fix default metric setting for wifi interfaces
- o fix firewire not being loaded in automatic mode
-- drakproxy: add support for https proxy (blino, #19666)
-- finish-install: ask for license agreement before doing anything else
-- use Locale::gettext (pixel)
-
-* Wed Nov 30 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.4.4-1mdk
-- drakboot: fix getting raid-extra-boot (pixel, #19965)
-- drakfirewall: update zones file for shorewall 3.0 (blino)
-- draksound: automatically install packages
-
-* Fri Nov 25 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.4.3-1mdk
-- drakconnect: preselect first ISP of user's country
-- finish-install:
- o allow to blacklist steps in /etc/sysconfig/finish-install (blino)
- o be able to set up keyboard (pixel)
-- drakfont: fix the need to press twice the "close" button (blino, #14314)
-
-* Mon Nov 21 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.4.2-1mdk
-- diskdrake: handle missing dmraid (pixel, l#19849)
-- draksound: install aoss when switching from OSS to ALSA
-
-* Fri Nov 18 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.4.1-1mdk
-- diskdrake (pixel):
- o add button "Label" (in expert mode) to set the "volume label" (and
- so get LABEL= in fstab and lilo.conf)
- o dmraid log is mixed with valid data (#19654)
- o handle "users" the way "user" is handled
- o handle dmraid-1.0.0 RC9 (#19654)
-- drakconnect (blino):
- o don't screw up eagle-usb devices if the firmware is already loaded
- o fix zd1201 devices detection as well
-- drakroam (blino):
- o don't crash if mandi isn't started (#19608)
- o fix wireless network list using iwlist (#19742)
- o remember 'restricted' wireless mode
-
-* Mon Nov 7 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.4-0.3mdk
-- requires perl-suid for fileshareset and filesharelist (#17123)
-- drakconnect (blino):
- o don't duplicate variables (MTU, NETMASK, IPADDR) in ifcfg files
- (#19325)
- o don't let interfaces with unknown drivers be configured
- o temporary workaround to have device-independant config files in
- wireless.d
- o use standard 'mac' modifier in iftab for IEEE1394, EUI64 and IRDA
- o workaround missing "device" link in sysfs for rt2400/rt2500
-- net_applet: misc small fixes (blino)
-- printerdrake: fix setting up printers with pre-made Foomatic PPD in
- /usr/share/cups/model (till, #19524)
-- XFdrake: properly handle switch between nvidia & nvidia_legacy
-
-* Tue Oct 18 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.4-0.2mdk
-- diskdrake (pixel):
- o separate hpfs and ntfs entries (even if they both use the same
- type id in partition table) (#19322)
- o use vol_id in order to find device type
- o fix using mdadm 1.12.0
-- harddrake2:
- o do not merge AGP section into BRIDGES one
- o Club integration for proprietary drivers
-- net_applet: use disconnected icon if no route, even if wifi is
- associated (blino)
-
-* Mon Oct 17 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.4-0.1mdk
-- drakauth: hide the password (pixel, #18800)
-- drakbackup (stew):
- o avoid wiping out user cron
- o extended ACL support user star (#17761)
- o multiple email recipients
- o fix restoring with file in 2 archives
- o profile support (#17566)
- o enhance cron support
- o weekday ranges (#18290)
-- drakboot: use compact by default (pixel, #8752)
-- drakconnect (blino):
- o set hostname only after packages have been installed, thus
- preventing graphical urpmi may fail
- o restart ethernet interface for PPPoE connections
-- drakfont: fix layout
-- drakhelp: fallback nicely, trying english if i18n doc not available (pixel)
-- drakproxy: better explanations (#17261)
-- draksound: do display the driver description (#5403)
-- drakTermServ (stew):
- o install mkisofs if needed
- o refuse to creates images without a NIC
-- harddrake: properly report no configurable parameter (#17579)
-- keyboarddrake (pablo):
- o add "fo" keyboard
- o synchronize XKB keyboard names with what is in latest xorg
-- net_applet: show IFW button even if not connected (blino, #18708)
-- printerdrake (till):
- o do not auto-install "sane-frontends" for MF devices
- o let parallel HP printers be set up with HPLIP
- o removed HPOJ support (HPOJ obsolete, now completely replaced by HPLIP).
- o warn if an HP printer is connected via a port not supported by
- HPLIP
- o fix freezing when choosing a machine as remote CUPS server (for
- daemon-less client) which does not exist or does not run CUPS.
- o let network printer detection also work if the DNS is
- misconfigured
- o hide "Printer options" entry in printer editing menu only if there
- are really no options (also for Sagem MF3625 with empty
- manufacturer name in the PPD)
- o fix raw queue being shown with "driver: PPD" (not "driver: raw")
- o do not use "Unknown model" and "Unknown Model", this somtimes
- broke identifying a print queue as being for an unknown printer
- o fix loop of determining the HPLIP device URI for local printers in
- the "printer::main::start_hplip()" function
-- XFdrake:
- o handle nvidia_legacy
- o don't run ldconfig when not needed
- o prevent x11 segfaulting with nvidia driver (loading both
- Xorg's glx and nvidia's glx)
- o prevent GL apps from segfaulting when using nv driver while nvidia
- packages're installed
-
-* Mon Sep 19 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.64mdk
-- drakconnect:
- o really restart ethernet interface for PPPOE connection (blino)
- o fix hostap/orinoco driver detection (#18294)
-- net_applet: force menu refresh when interface status is modified
- (blino, #18636)
-
-* Sun Sep 18 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.63mdk
-- add sr_mod in modprobe.preload if needed (blino, #18641)
-- drakconnect:
- o use ifplugd with b44
- o don't use ifplugd for ethernet devices associated with a
- pppoe/pptp connection (blino)
- o fix probing the PPPOE login name (blino)
- o keep changed made by modem tools run by drakconnect
-- drakbackup: remove unclear text (stew, #18619)
-- drakroam (blino):
- o increase timeout after a wireless network is selected
- o fix crash
-- draksec: ensure wait dialogs contents is showed on applying msec
- config
-- harddrake:
- o display parallel port controllers in the "system" section rather
- than in the "unknown" one
- o display the vendor name rather than "printer" in the left tree for
- printers
-- net_applet: fix crash when only one interface is configured
-- printerdrake (till):
- o handle new HPIJ
- o fix list of displayed printers
-- XFdrake: don't load "glx" with "fbdev" (pixel)
-
-* Thu Sep 15 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.62mdk
-- bootloader-config: fix entry "linux" when removing a kernel (pixel)
-- diskdrake: check if resize2fs failed (pixel)
-- drakconnect (blino):
- o fix start/stop of interfaces that are not set to start on boot
- o fix device path for HCF modems
- o fortify PPP configuration
- o install madwifi drivers if needed
- o restart hsf/hcfpci services when needed
- o rewrite shorewall config at end of setup
- o support AVM FRITZ!Card DSL USB v2.0
-- drakconnect/drakroam (blino):
- o better handling of ASCII WEP keys (#18558)
- o write wireless settings in wireless.d/ as well
-- drakfirewall: read shorewall net interface from configuration file (blino)
-- drakgw: fix untranslated messages (blino, #17969)
-- drakroam (blino):
- o don't automatically refresh networks list
- o show refresh icon if network isn't connected
-- harddrake GUI: show the main window earlier (thus fixing
- windows' icons)
-- harddrake service: write /etc/iftab if needed (blino)
-- keyboarddrake: fix some keyboards (fredl)
-- localedrake:
- o do not force font name since fontconfig handle it perfectly
- (funda wang)
- o fix --apply managment (ennael, misc)
-- net_applet (blino):
- o allow to up/down any network interface
- o refresh wireless networks every minute only
-- net_applet/drakroam (blino):
- o fallback to wpa_cli or iwlist/iwconfig when wpa_supplicant is not
- used (#18516)
- o adjust signal level given by wpa_supplicant
-- XFdrake: use nvidia legacy drivers for TNT2/GeForce/GeForce2 (blino)
-- require gtkdialogs for urpmi --gui (rafael)
-
-* Mon Sep 12 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.61mdk
-- drakboot: misc fixes (pixel)
-- drakperm: check if path, username & group are valid
-- localedrake:
- o use SCIM for vietnamese
- o im-ja supports gtk-immodule but not qt-immodule (Yukiko Bando)
- o install scim-tomoe for japanese
-- XFdrake: sync kbd list with current Xorg (fredl)
-
-* Mon Sep 12 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.60mdk
-- drakconnect (blino):
- o keep modem specific stuff in ifcfg-*
- o list and configure wireless interfaces for which the firmware
- isn't available (#18195)
- o misc tweaks for 3rd party drivers
-- localedrake: use qtimmodule again
-
-* Fri Sep 9 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.59mdk
-- drakboot: misc fixes (pixel)
-- drakconnect: support soft modems through ALSA (blino)
-- draksplash: fix adjustments creation (blino, #18295)
-
-* Thu Sep 8 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.58mdk
-- drakids: allow to blacklist/whitelist from the log
-- drakconnect (blino):
- o fix ISDN configurations
- o do not use wrong orinoco driver (#18214)
-
-* Thu Sep 8 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.57mdk
-- drakfirewall: don't enable custom IFW rules (blino)
-- drakconnect (blino):
- o disable roaming for rt2400/rt2500
- o really read system kppp configuration
- o do not let modem settings be overriden by previous ppp0 settings
- o misc fixes for 3rd party drivers
-- harddrake service: prevent wiping /etc/modprobe.preload (#16181)
-- localedrake: unset QT_IM_MODULE due to unsatisfied qtimmodule
- support in KDE (funda wang)
-- logdrake: insensitive categories for which file is missing, thus
- preventing crashing (#16935)
-- net_monitor (blino):
- o really preselect default interface
- o show ppp/isdn interfaces as well (#18303)
-- printerdrake: fix setup of HP's multi-function printers on 64-bit
- boxes (till)
-- XFdrake (pixel):
- o when changing the card/monitor, ensure the resolution is still
- valid
- o when switching to fbdev, ensure we have a bios resolution
-
-* Wed Sep 7 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.56mdk
-- harddrake service: blacklist audio too (#12731)
-
-* Tue Sep 6 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.55mdk
-- drakfirewall: fix port range parser (blino)
-- draksec: install chkrootkit if needed (#17896)
-- harddrake service: fix status message (#16925)
-- printerdrake (till):
- o make it work on 64-bit systems
- o only install "desktop-printing" when "gnome-panel" is installed
- o fixes in handling unknown printers
- o fix endless loop when clicking "Back" in model selection and when
- no model was automatically found.
-
- o do not set margins in CUPS for HPIJS driver
-
-* Mon Sep 5 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.54mdk
-- drakauth, finish-install: handle required package(s) not installed
- correctly (pixel, #18180)
-- drakconnect: set SSID for rt2400/rt2500 cards using WPA with an
- iwpriv command (blino, #18205)
-- printerdrake (till):
- o fix printer list filtering in the main window
- o prevent auto-refreshing to happen while refreshing
- o auto-refresh the list of remote printers in the main windows every
- 5 seconds.
-
-* Sat Sep 3 2005 Olivier Blin <oblin@mandriva.com> 10.3-0.53mdk
-- printerdrake (Till):
- o let also network printers be found which do not answer to a
- broadcast ping (most newer HP), this is done only in class C
- and smaller networks, to not scan too many machines
- o made reloading of parallel port kernel modules (for auto-detection)
- also working if "ppdev" module is loaded
- o make building of main window of printerdrake much faster
- o check for CUPS daemon running without console output
-
-* Fri Sep 2 2005 Olivier Blin <oblin@mandriva.com> 10.3-0.52mdk
-- drakhelp: prefix file path with file://
- (mozilla-firefox needs a valid url)
-- net_applet: don't exec new binary on update (#16051)
-- printerdrake (Till): use printer name determined by HPLIP to
- auto-select PPD file of a network printer where the model name
- was not determined by SNMP
-
-* Thu Sep 1 2005 Olivier Blin <oblin@mandriva.com> 10.3-0.51mdk
-- drakfirewall: allow to install and configure Interface Firewall
-- net_applet:
- o run drakids on click if an alert is still available
- o don't display keyring icon if the wireless network doesn't
- need a key (thanks to Couriousous)
- o allow to use vlan/alias interfaces (thanks to Michael Scherer)
-- drakconnect:
- o fix include path (#18103)
- o don't blacklist madwifi_pci for ifplugd
- o fix isdn config in manage interface
-- drakroam: fix embedded mode (#18113)
-- mygtk2:
- o fix return value in window method
- (fix net_monitor crash, #18136, Pixel & me)
- o improve progress bars and banners (Pixel)
-- XFdrake (Pixel): drivers/fglrx_drv.o is now drivers/fglrx_drv.so
-- drakboot (Pixel):
- o handle "=" between keyword and value (esp. useful for reading
- Conectiva's menu.lst) (bugzilla #18090)
- o ensure /boot/message-text exists
- (useful when switching from grub to lilo)
-- drakauth (Pixel & Vincent Guardiola):
- o allow Active Directory even on non corporate product
- o change definition for Active Directory with SFU and
- Active Directory Winbind
- o remove idmap ldap backend for winbind AD (obsolete, see Samba 3.0.20)
- o remove default_tgs_enctypes, default_tkt_enctypes, permitted_enctypes
- from /etc/krb5.conf for winbind configuration (#15232)
-- printerdrake:
- o added recording of IEEE-1284 device ID string, for USB printers
- o fix parallel printer auto-detection
- o pre-select newly added PPD file in the printer/driver list
- o fix recognition of alredy set up queues for auto queue setup
- (for several Xerox Phaser printers, the user was asked again and again)
- o support for HPLIP URIs with "?device=..." (#18041, #18053)
-- draksplash (Warly): add a lot more settings (text and progress bars)
-
-* Tue Aug 30 2005 Olivier Blin <oblin@mandriva.com> 10.3-0.50mdk
-- drakroam: rewrite it to use wpa_supplicant and mandi
-- net_applet:
- o use new wireless icons
- o display wireless link icon in tray icon if connected
- through wireless
- o check wireless every 20 seconds only
- o detect use vlan/alias interfaces (thanks to Michael Scherer)
- o rephrase IFW interactive/automatic checkbox label in
- the settings menu
-- generic wireless:
- o configure wpa_supplicant correctly for shared or passwordless
- connections
- o wpa_supplicant may list some networks twice, handle it
-- drakconnect:
- o restart associated ethernet device for dsl connections needing it
- o rephrase "DSL connection type" message, the preselected type
- has better to be kept
- o don't blacklist ifplugd for pcmcia interfaces
- o use lower case 'i' for iwconfig/iwpriv/iwspy (#18031)
-- draksplash: restrict mouse motion to image
-- drakfont: allow to import Windows Fonts (#15531)
-- printerdrake (Till):
- o when setting up new queue with HPLIP old HPOJ, delete config
- o restart CUPS after installing HPLIP for a network printer
- o autosetupprintqueues: use correct language
- o disable margins with Gutenprint
- o removed "Do not print testy page" in test page step of add printer
- wizard (bug #15861)
- o fix message window in the case that no local printer was found
- when running the add printer wizard in beginner's mode (bug #16757)
-- drakhosts/draksambashare/draknfs (Antoine Ginies): use new icons
-- draknfs (Antoine Ginies):
- o in case of all_squash use anongid=65534 and anongid=65534
- o create dir if it does not exist
- o fix typo (#17978)
-- draksambashare (Antoine Ginies):
- o add popup menu to easily modify/remove share
- o add printer support, notebook support, and user tab
-- interactive layer (Pixel): fix "Cancel" in ask_okcancel
-- bootlader-config (Pixel):
- o vga_fb expects the vga mode, not a boolean
- o propose to create a default bootloader configuration when no
- bootloader is found
- o conectiva 10's grub detection
- o install grub stage files in install_grub(), not write_grub()
- (#17830, thanks to herton)
-- XFdrake (Pixel): handle nvidia's libglx.so being now in extensions/nvidia
-- drakTermServ (Stew): reverse xdm-config logic for XDMCP
-- drakfirewall (Thierry): use banner and icon
-- harddrake (Thierry):
- o add more icons
- o sync with latest saa7134 driver
- o ldetect runs gzip now, reduce time spent by using a cache
- o find driver of host controller from sysfs in all cases (not just usb-storage)
-- diskdrake: (Thierry)
- o document 'encrypted' option (#13562, Per Oyvind Karlsen)
- o Grub really is named GRUB (it makes the pull-down more consistent)
-
-* Wed Aug 24 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.49mdk
-- interactive layer: do not crash when given an empty list (blino, #17718)
-- diskdrake, XFdrake: misc bug fixes (pixel)
-- drakbackup: enable tape hardware compression (stew, #17565)
-- draknetconnect (blino):
- o fix network restart condition for 6to4
- o use wext driver for ipw cards in wpa_supplicant
-- drakids (blino):
- o add log tab
- o allow to clear logs
-- drakTermServ (stew, Diogo):
- o don't use "X -ac" for thin clients
- o clear main window on tab change
- o offer to install i586 kernel for old clients
- o progress display while creating all kernel images
- o move dhcpd config to more logical area
-- net_applet (blino):
- o allow to whitelist attackers in popup
- o show attacks of unknown type
- o stop icon blinking when drakids is run or clear logs, or when an
- Interactive Firewall alert isn't processed
- o present drakids window on click on menu if drakids is already run
-- printerdrake (till):
- o fixed problem of current printer/driver not chosen in the printer
- editing menu (in expert mode and with manufacturer-supplied PPD)
- o support for one pre-built PPD:
- * for non-PostScript drivers (eg: PCL-XL PPDs from Ricoh)
- * being linked from multiple printer database entries
-
-* Mon Aug 22 2005 Olivier Blin <oblin@mandriva.com> 10.3-0.48mdk
-- from Pixel:
- o mousedrake: don't use a udev rule, this doesn't always work
- for input/mice, and never for ttySL0
- o fix Mandrivalinux to Mandriva Linux in description
- (Eskild Hustvedt)
- o diskdrake: enhance grub device.map parsing (#17732)
-
-* Sat Aug 20 2005 Olivier Blin <oblin@mandriva.com> 10.3-0.47mdk
-- net_applet:
- o use Gtk2::NotificationBubble for IFW
- o do not crash when unexpanding details in IFW window
- o do not fail to start if messagebus is down
- o do not show drakids in menu if IFW isn't available
-- drakids: display protocol as text
-- drakconnect: install bpalogin if needed only
-- localedrake (Thierry): enable to select scim+pinyin
-- drakTermServ (Stew): ignore config file for First Time Wizard,
- assume defaults (#17673)
-
-* Fri Aug 19 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.46mdk
-- drakconnect: only install bpalogin if needed (blino)
-- drakTermServ (stew):
- o client tree edit fix (#17653),
- o write to floppy (#17655)
-- harddrake service: use the new way to blacklist modules (#12731)
-- harddrake GUI: only install HW packages of high priority
-- net_applet: cosmetic fixes (blino)
-- printerdrake: removed stuff for automatic print queue setup when
- starting CUPS (till)
-
-* Thu Aug 18 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.45mdk
-- rpmlint fixes
-- diskdrake: better reiser4 support (pixel)
-- drakids (blino):
- o use "Allowed addresses" instead of "Attacker" in whitelist
- o improve list removal workaround using a copying grep
-- keyboardrake: revert removal of keyboard layout weight of zh.
- (Funda Wang, #16873)
-- printerdrake: misc enhancements
-- net_applet (blino):
- o use balloons to notify attacks
- o show attack window on balloon click
-
-* Thu Aug 11 2005 Flavio Bruno Leitner <flavio@mandriva.com> 10.3-0.44mdk
-- changed requires from modutils to module-init-tools
-
-* Wed Aug 10 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.43mdk
-- diskdrake: fix misc bugs with encrypted folders (pixel, #16893 & #17142)
-- harddrake service: speedup startup on some old machines
-- mousedrake: do write an udev rule for serial mice (pixel, #17114)
-
-* Tue Aug 9 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.42mdk
-- localedrake: fix switch to a language that need an input methd (#17352)
-- diskdrake (pixel):
- o differentiate (nfs)servers on ip first to have less dups (#17236)
- o fix update boot loader on renumbering partitions (#16786)
- o write /etc/mdadm.conf when creating a new md (#15502)
-- drakconnect (blino):
- o do not write aliases interfaces in iftab
- o handle access point roaming using wpa_supplicant
- o initial IPv6 support (6to4 tunnel)
- o keep MS_DNS1, MS_DNS2 and DOMAIN variables in ifcfg files
- o overwrite previous wpa_supplicant entries with same SSID or BSSID
-- drakhosts, draknfs: do not crash when config file is empty (antoine,
- #17255)
-
-* Fri Aug 5 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.41mdk
-- drakconnect (blino):
- o allow to use WEP keys in wpa_supplicant
- o use ifplugd for wireless interfaces
- o use ifup/ifdown with the boot option to handle ifplugd
-- draksplash (blino):
- o handle progress bar color
- o install jpegtopnm if needed
-- drakTermServ: GUI enhancements (stew)
-- drakUPS: do not detect some keyboards as UPSes
-- drakxtv: fix configuring drivers other than bttv
-- autosetupprintqueues: fix logs (till, #17264)
-- harddrake:
- o do not detect PCI/USB modems twice (as modems and as unknown
- devices)
- o run keyboardrake for keyboards
- o do not offer to configure driver of keyboards and mice (#17254)
-- localedrake: fix global KDE config when switching locales and when
- font changes whereas KDE charset doesn't (Mashrab Kuvatov)
-- printerdrake: Added special handling for the "capt" driver (Canon
- LBP-810/1120 winprinters) (till)
-- scannerdrake: fix detecting scanners
-- XFdrake (pixel): don't have empty ModeLines lying around (#16960)
-
-* Wed Aug 3 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.40mdk
-- do not write rules conflicting with udev ones
-- don't package dbus stuff && finish-install in drakxtools-backend
-- diskdrake: minimal reiser4 support (pixel, #15839)
-- drakclock: add some ntp servers from brazil (pixel, #16879)
-- drakconnect (blino):
- o apply gateway modifications (#17260)
- o fix applying DNS change (#17253)
- * fix for new sysfs tree architecture
-- drakgw: make sure shorewall gets enabled (blino, #17238)
-- draksound: handle a couple more drivers
-- net_applet: put wireless items in a submenu (blino)
-
-* Fri Jul 29 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.39mdk
-- do not detect WingMan & Logitech devices as UPSes (#16995, #16994)
-- drakconnect: fix testing network connection (blino)
-- draksound: emphasize if drivers are OSS or ALSA based (#15902)
-- localedrake: fixed KDE font for extended cyrillic languages (pablo)
-- net_applet: add support for active firewall (blino)
-- printerdrake (till):
- o fix configuring sane
- o print queue auto setup
-
-* Wed Jul 27 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.38mdk
-- enforce GNOME button order when not under KDE
-- make more dialogs transient if possible
-- drakconnect (blino):
- o fix ISDN configuration
- o fix writing module aliases
- o write hosts in correct order in /etc/hosts (#15039)
- o do not kill mcc (#17024)
-- drakfirewall (blino):
- o don't write alias interfaces in shorewall interfaces file
- o run shorewall clear if firewall is stopped (#17046)
-- drakhosts, draknfs: improved GIU (antoine)
-- draksound: fix intel support (#16944)
-- mousedrake: fix alps touchpads detection (blino)
-- net_applet (blino):
- o enable activefw
- o misc wireless enhancements
-- XFdrake: adopt to new mandriva-theme package naming schema (Funda
- Wang, #16977)
-
-* Tue Jul 19 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.37mdk
-- fix layout for programms embedded with their menubar (eg: harddrake,
- printerdrake, rpmdrake) (#13931)
-- draknfs: remove ipnet/32 in access_list (antoine)
-- harddrake2: really reap zombie children and let be able to run a
- second config tool again (#16851)
-- net_applet: misc improvments (blino)
-
-* Mon Jul 18 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.36mdk
-- drakconnect: write firewire mac_addresses again (oblin)
-- draknfs:
- o fix displaying help the second time
- o make sub dialogs modal and transcient to their main window
- o advanced options' help:
- * improve layout
- * fix text phrasing
- * make it consistent with the GUI (ensure labels are named the
- same way on buttons and in help) and speak about labels not
- actual option names in config file
-- drakhosts:
- o make sub dialogs modal and transcient to their main window
- o improve layout (hidden buttons)
-- draksplash: do not die if loaded file isn't an image (blino, #16829)
-- drakxtv: really display sg when there's no card (blino, #16716)
-- require perl-Net-DBus (for net_applet and drakids) (blino)
-
-* Fri Jul 15 2005 Olivier Blin <oblin@mandriva.com> 10.3-0.35mdk
-- net_applet: initial wireless support
-- drakgw: move wait message after package installation
- (or else the interface isn't active)
-- draknfs (Antoine):
- o move menu above banner
- o use expander to show/hide advanced options,
- o remove empty value in advanced option
- o change draknfs tittle (thx Fabrice Facorat)
- o add exit on ok button
- o ensure nfs-utils is installed
-- drakTermServ (Stew): add/remove entries to default PXE config
-
-* Mon Jul 11 2005 Olivier Blin <oblin@mandriva.com> 10.3-0.34mdk
-- really write modem/adsl ifcfg files (fix ONBOOT setting)
-- don't restart network service at drakconnect startup
-- draknfs (Antoine):
- o always display ok_cancel button
- o add a checkbox to enable/disable advanced options
-- drakTermServ (Stew):
- don't try to manipulate PXE stuff if the directory isn't present
-
-* Fri Jul 8 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.33mdk
-- drakboot: add support for graphical grub (Herton Ronaldo Krzes)
-- draknfs: various adjustement in main windows (antoine)
-- drakvpn: fix untranslated strings (#16736)
-
-* Thu Jul 7 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.32mdk
-- drakconnect: do not restart network to apply modifications, run ifup
- or ifplugd instead (blino)
-- draknfs, drakhosts: GUI improvements (antoine)
-
-* Tue Jul 5 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.31mdk
-- drakfloppy: do not package it anymore since kernel is too big
- (#10565)
-- drakhosts, draknfs: new tools (antoine)
-- harddrake service: fix faillure on startup
-
-* Fri Jul 1 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.30mdk
-- diskdrake:
- o misc LVM enhancements (pixel, the "Anne" effect, #16168, #16176,
- #16189, #16668)
- o enhanced dmraid support (pixel)
- o don't allow labels on "/" for !extX fs since mkinitrd only handle
- ext2/ext3 labels (pixel)
- o describe "grpquota" and "usrquota" mount options (#15671)
-- drakbug: fix reporting bugs for "Standalone Tools" and prevent shell
- parsing unquoted bugzilla URL(blino & me, #16580)
-- drakfirewall (blino):
- o add 'routeback' option for bridge interfaces in shorewall
- interfaces file
- o don't write loc to fw ACCEPT rules, we always reset the policy to
- accept (#16087)
-- draksplash (blino):
- o write progress bars in bootsplash config files
- o update crossbars when scale values are modified
-- net_applet: reduce memory footprint (#15308)
-
-* Thu Jun 30 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.29mdk
-- do not load librpm when not needed (rafael, me)
-- diskdrake: enhanced dmraid support (pixel)
-- drakboot: handle no bootloader configuration found (pixel)
-
-* Mon Jun 27 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.28mdk
-- drakxtv:
- o enable to configure cx88 driver
- o update card lists from kernel-2.6.12
-- net_applet: reduce fork()/exec() pressure on system (blino)
-- service_harddrake: fix switch from nvidia to nv for X.org
-
-* Fri Jun 24 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.27mdk
-- diskdrake (pixel):
- o enhanced dmraid support
- o some free space computing for LVM
- o support labels for more file systems
-- drakauth (blino, pixel):
- o fix crash (#16564)
- o fix NISDOMAIN
-- localedrake: add scim-ccinput support (funda wang)
-- net_monitor: fix crash (blino)
-- more PXE infrastructure (blino)
-
-* Mon Jun 20 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.26mdk
-- drakconnect: don't strip VLAN and MTU fields from ifcfg files (blino)
-- diskdrake: initial dmraid support (pixel)
-- fix some programs after cleanups:
- o drakconnect, drakvpn (blino, #16505, #16502)
- o harddrake2 (#16472)
-- XFdrake: fix 3D on ATI cards
-
-* Fri Jun 17 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.25mdk
-- drakboot:
- o make it use stage1_5 thus enabling to survive disk change, ie
- geometry alteration (pixel)
- o fix reading config with new grub (thus fixing detectloader,
- bootloader-config & installkernel)
-- harddrake: make it load mouse modules on change, since
- modprobe.preload is read before harddrake is run, thus fixing
- synaptics (blino)
-
-* Wed Jun 15 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.24mdk
-- fix banner widget breaking rpmdrake and the like
-- XFdrake: prevent loading/unloading twice the same glx module on non
- NV cards
-
-* Tue Jun 14 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.23mdk
-- drakauth: stop messing with likeauth and nullok options and keep
- them on the pam_unix line (pixel, #12066)
-- drakboot:
- o adapt to new grub
- o don't drop "shade" and "viewport" lines (pixel, #16372)
-- drakconnect: add senegal ADSL provider entry (daouda)
-- XFdrake: protect quotes in monitor names (pixel, #16406)
-
-* Wed Jun 8 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.22mdk
-- drakfirewall (blino):
- o do not crash when restarting shorewall
- o do not write buggy shorewall masqfile when connection sharing is
- disabled
-
-* Tue Jun 7 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.21mdk
-- bootloader-config, drakboot, diskdrake: fix some LABEL bugs (pixel)
-- drakauth: read existing authentication conf (pixel)
-- drakbackup: tape backup/restore fixes to work with new .backupignore
- scheme & other bug fixes (stew)
-- drakboot: keep read-only, read-write and label as verbatim as
- possible (pixel)
-- drakconnect (blino):
- o big code base cleanups
- o keep NETWORKING_IPV6 and FORWARD_IPV4 variables in
- /etc/sysconfig/network
- o fix old ISDN modems
- o fix calling s2u on system hostname change
-- drakedm: get list of DM from /etc/X11/dm.d/*.conf (pixel)
-- draksplash: misc fixes (blino)
-- finish-install: add language selection to finish-install
-
-* Mon May 30 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.20mdk
-- handle more DVB cards
-- drakconnect: third party support update (blino):
- o point the user to the relevant packages/documentation/url if
- needed,
- o do not allow to configure a device if its requirements aren't
- satisfied
-- harddrake service: load drivers for newly added devices so that they
- work out of the box on first boot after card plugging (AGP, IDE, DVB,
- SCSI, TV)
-- printerdrake: support for PPD file names with spaces (till, #16172)
-
-* Fri May 27 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.19mdk
-- drakedm: handle /etc/X11/dm.d/* entries (as proposed by Loic Baudry)
-- localedrake:
- o display SCIM combinaisons in a sub menu
- o enable to select extra SCIM combinaisons: scim+anthy, scim+canna,
- scim+fcitx, scim+m17n, scim+prime, and scim+skk;
-
-* Fri May 27 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.18mdk
-- drakgw, drakshorewall: misc fixes (blino)
-- draksplash (blino):
- o use scrollbar in preview window
- o try not to be larger than screen size minus toolbars size
- o close_window -> close_all
-- harddrake: fix misdetecing USB mass storage devices (#13569)
-- localedrake:
- o enable to select scim+uim again
- o install needed packages for kinput2
-- net_applet: let user call drakroam (blino, #16019)
-
-* Tue May 24 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.17mdk
-- drakgw (blino):
- o wizardify
- o allow not to enable DNS, dhcpd and proxy servers
- o allow not to enable CUPS broadcast
- o use network interfaces instead of network addresses in CUPS
- configuration
-- harddrake: use mousedrake to configure tablets & touchscreens
-
-* Sun May 22 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.16mdk
-- interactive layer: fix canceling managment in text mode
-- XFdrake: only run ldconfig if needed (aka only if GL config was
- altered), thus speeding up auto-config of X in harddrake service
-- fix joystick detection (pixel, #16099)
-
-* Thu May 19 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.15mdk
-- drakconnect, harddrake: detect all ADSL modems of each kind
-- harddrake GUI:
- o detect yet more webcams and USB audio devices
- o DVB support:
- * list DVB cards in their own category
- * install needed packages for DVB
- o list tablets and touchscreens in their own category
- o fix detecting joysticks
- o really list ATM devices
-- harddrake service: install/remove DVB drivers if needed
-
-* Thu May 19 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.14mdk
-- interactive layer: handle canceling wizards in text mode
-- hardware support:
- o detect more webcams
- o detect more ADSL USB modems (needs further drakconnect work)
-- harddrake:
- o create new categories for USB audio, ATM, Bluetooth, WAN, and radio devices
- o split joysticks category into real joystick and gameport controller ones
-- localedrake: clarify "other countries" vs "advanced" label depending if the
- language is spoken in several countries and if the language needs an IM method
-
-* Tue May 17 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.13mdk
-- drakboot (blino):
- o add the "Create new theme" button back
- o allow to choose between "text only", "verbose" and "silent"
- bootsplash modes
-- drakconnect (blino):
- o use iwpriv for WPA with rt2x00 drivers (since they don't support
- wpa_supplicant)
- o keep # and * characters in phone number (#16031)
-- drakroam:
- o fix perms on /etc/wlandetect.conf (#16020)
- o really write waproamd config files (blino)
-
-* Mon May 16 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.12mdk
-- fix GtkTextView wrapper
-- drakups: do not detect MS joystick as UPS (#15930)
-
-* Thu May 12 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.11mdk
-- diskdrake: default to "Custom" when group fileshare exists (pixel, #15917)
-- drakbackup (stew):
- o drop webdav support (can be mounted as a normal net filesystem
- these days)
- o remove translation on "tape" media selection (#15437)
- o rework .backupignore handling (#12352)
-- drakconnect: netconnect.pm: reorder drakconnect first screen (blino)
-- drakups: fix detecting Wingman gamepad as UPS (#15750)
-- harddrake: ensure wait message is centered on mcc
-- harddrake service: fix PCMCIA breakage (#15742)
-- fix serial controllers detection (#15457)
-
-* Tue May 10 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.10mdk
-- draksplash (blino):
- o improved layout (separate window for image previews, notebook to
- split silent/verbose/console settings)
- o update scale factors when the theme name is changed too
- o use default jpeg image path in config file for both silent and
- verbose images
- o force the exact image size when writing a theme
- o write bootsplash v3 configuration files (progress bar still
- missing)
- o allow to modify progress bar and console box by dragging the mouse
- o really get default vga mode
- o shrink preview window on resolution change
- o handle both silent and verbose images
-- localedrake (UTUMI Hirosi):
- o add support for iiimf
- o do not install anymore uim-anthy for japanese users
-
-* Wed May 4 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.9mdk
-- diskdrake (pixel):
- o fix displaying number of logical extents
- o allow resizing ext3 LV if not mounted
- o allow resizing reiserfs LV even if not mounted
-- drakbackup (stew):
- o clarify quota message, optional delete old backups (#15066)
- o optional mail "From" address (#15293)
- o fix automagic addition of /root to backups when not desired
-- drakconnect (blino):
- o ask wireless settings before boot protocol selection
- o remove useless warning in install, we never override configuration (#10827)
-- draksplash (blino):
- o fix theme creation
- o preview theme in real time, cleanups
- o use default values for scale settings
- o draw a cross inside the text box
-- drakTermServ (stew):
- o update for new etherboot
- o predict NBI disk space usage and check
- o catch failed NBI creation (#13902)
- o catch failed dhcpd.conf creation (#13943)
- o misc small bug fixes
-
-* Mon May 2 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.8mdk
-- ensure most sub dialogs reuse the icon of their main window
-- drakboot: improve layout
-- drakconnect: fix USB devices detection for ndiswrapper (blino)
-- harddrake: fix SATA & hw RAID detection (detect them pior to detecting PATA)
-
-* Fri Apr 29 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.7mdk
-- drakconnect (blino):
- o don't write /etc/ppp/options anymore, adjust options in peer files
- o display VPI/VCI values in decimal
- o configure pppoe connections in a ppp peer file
-- drakroam (blino):
- o do not write blank ESSID
- o exit and warn when no wireless interface is found (#15244)
-- drakups: do not detect IR devices as UPSes (#15495)
-- XFdrake: if one prefer using "Modes" instead of "Virtual", keep it
- as is (pixel)
-
-* Mon Apr 25 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.3-0.6mdk
-- drakconnect (blino):
- o fix WPA key (#15621)
- o allow to disable WPA even if no key is used
- o handle errors in wireless packages installation
-- drakroam: fix Signal Quality parsing (blino)
-
-* Thu Apr 21 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.3-0.5mdk
-- mandrakesoft is now mandriva
-
-* Thu Apr 21 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.3-0.4mdk
-- drakconnect: basic tokenring support
-
-* Thu Apr 21 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.3-0.3mdk
-- drakbackup, drakfont, draksplash: switch to gtk+-2.6's new file selector
-- drakbackup, drakroam: fix layout
-- drakfont: filter file list so that only fonts are displayed
-
-* Wed Apr 20 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.3-0.2mdk
-- drakconnect (blino):
- o merge wireless steps and move advanced settings in advanced mode (#15501)
- o configure wpa driver in drakconnect, wpa_supplicant init script is dropped
- o fix default wireless mode to be "Managed" instead of "Secondary"
- o really use given encryption key
- o improve ndiswrapper driver configuration (allow to select driver,
- device and many errors handling)
- o fix fallback sysfs if ethtool failled
- o do not write zeroed MAC addresses in iftab, it confuses ifrename
- o do not crash if modprobe fails
- o unload ndiswrapper first so that the newly installed .inf files
- will be read
- o allow to choose the wireless encryption mode between "None", "Open
- WEP", "Restricted WEP" and "WPA Pre-Shared Key"
-- drakfirewall: fix automatic net interface detection (blino)
-- drakroam: fix SSID listing (blino)
-- keyboardrake: update keyboard list for next xorg-x11 (pablo)
-- mousedrake (blino):
- o preselect synaptics touchpad if no external mouse is present
- o better detection for touchpad
- o append evdev in modprobe.preload if a touchpad is detected
- o always configure an universal mouse so that USB mices can be hotplugged
- o always set synaptics touchpad as secondary and don't list them in
- mousedrake
-- net_applet: increase network check timeout to lower the load (blino)
-- XFdrake: suggest 1280x1024 instead of 1280x960 which causes pbs (pixel)
-
-* Fri Apr 15 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.3-0.1mdk
-- drakbackup: fix direct-to-tape backup/restore issues (stew, #15293)
-- drakconnect (blino):
- o use sysfs as fallback to detect wireless interfaces (eg:
- rt2x00/prism2_*)
- o allow to modify METRIC settings in the wizard
- o fix displaying wifi data in manage interface
-
-* Tue Apr 12 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-24mdk
-- drakconnect: fix connection establishment (rafael)
-
-* Mon Apr 11 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-23mdk
-- drakconnect (blino):
- o fix error reporting for ndiswrapper package installation (#15373)
- o handle spaces in ndiswrapper drivers path
-- XFdrake (pixel):
- o fix empty ModeLine lines
- o 1152x864 needs more modelines than the poor 1152x864@75Hz builtin
- xorg (#11698)
-
-* Fri Apr 8 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-22mdk
-- drakconnect: always restart slmodem, even if it was already
- installed (blino)
-- harddrake: fix harddrake crash with USB/PCI DSL modems (blino, #15034)
-
-* Thu Apr 7 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-21mdk
-- drakconnect (blino):
- o fix support for fix h[cs]f modems
- o create correct /dev/modem && install correct package for HCF modems
-- drakroam (blino):
- o don't truncate default gateway (#15247)
- o hide roaming frame by default
-- net_applet (blino):
- o really allow users to start connection without having to type the
- root password
- o fix refresh
-
-* Tue Apr 5 2005 Olivier Blin <oblin@mandrakesoft.com> 10.2-20mdk
-- mousedrake: really apply specific ALPS touchpad settings (#14510)
-- drakconnect:
- o install dkms packages if found
- o support more slmodems
-- net_monitor: improve wifi detection
-- drakroam:
- o do not crash if no essid is selected (partially fix #15244)
- o hide unavailable features, add close button
-- drakboot (Pixel): apply patch from bugzilla #15216, adding support for
- "password=..." and "restricted" at per-entry level (thanks to jarfil)
-- misc charset fixes (Pixel, Pablo)
-
-* Mon Apr 4 2005 Olivier Blin <oblin@mandrakesoft.com> 10.2-19mdk
-- drakconnect:
- o only switch up wireless devices during detection
- o do not reupload firmware for eagle-usb modems if already done
- o disconnect internet interface before trying to connect
-- mousedrake: configure wacom devices with synaptics touchpads too
-- printerdrake (Till):
- o Fixed bug #4319: Printer options cannot be set after renaming the
- printer or changing the connection type
- o Fixed bug of PostScript printers with manufacturer-supplied PPD
- cannot be renamed at all
- o Fixed bug of print queue being deleted when renaming fails
- o Fixed bug of printerdrake trying to open a message window when
- non-interactive queue generation fails
- o Fixed pre-definition of $printer->{ARGS}, this bug made printerdrake
- crashing sometimes
-- diskdrake (Pixel): add /usr/local and /opt to suggestions_mntpoints
-
-* Fri Apr 1 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-18mdk
-- drakconnect: enable ethernet interfaces during detection, thus
- fixing Ralink wireless detection (blino)
-- harddrake: fix crash
-- mousedrake: configure wacom devices with synaptics touchpads too
- (blino)
-
-* Thu Mar 31 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-17mdk
-- drakconnect: do not use ifplugd for wireless cards (and don't allow
- to enable it) (blino)
-- drakfirewall: make it usable (pixel, #15116)
-- drakups: do not detect USB joystics as UPSes (#15131)
-- harddrake:
- o do not try to install packages that are not availlable (#15106)
- o do no try to install too generic hw packages (#15101)
- o do not detect USB joystics as UPSes (#15102)
-- localedrake: do not try to logout wm (pixel, #15087)
-
-* Wed Mar 30 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-16mdk
-- drakconnect (blino):
- o fix speedtouch microcode url (#15095)
- o fix sagem modem config
- o try to use the country specific CMV for sagem modems
-- harddrake:
- o list hardware RAID controllers in their own section (so that they do not
- appear in the unknown one)
- o ensure we detect all known SATA controllers and all known sound cards
- o fix optical mice detection (#15082)
-- net_applet: really load network configuration at start (blino)
-- printerdrake: do not mis-detect some USB keyboards as printers (till)
-
-* Tue Mar 29 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-15mdk
-- drakconnect (blino):
- o fix eaglectrl path (#15033)
- o detect more Bewan devices
- o fix support for sagem modems not using pppoa
-- harddrake: add an option in harddrake to probe imm/ppa (pixel,
- #12560)
-- localedrake:
- o fix russian size (pixel, #14988)
- o "unicode" checkbox is visible only in expert mode
-- fix tools' crash when drakconf is not installing (#13392)
-
-* Fri Mar 25 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-14mdk
-- drakroam:
- o do not crash (blino)
- o fix translations
-- net_applet (blino):
- o ask for root password if needed when setting a new profile
- o force refresh if asked by user from the menu
-
-* Thu Mar 24 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-13mdk
-- banners: make banner be RTL aware (aka follow language direction and
- display itself mirrored for RTL languages) (#11910)
-- diskdrake (pixel):
- o ensure we use/propose a free md when creating a new one
- o after "mdadm --assemble" there can be some inactivate mds busying
- devices, stopping them
-- drakconnect (blino):
- o make Bewan PCI modems work again
- o add support for modems using pppoatm (e.g. SpeedTouch) and ISP
- using RFC 1483 Routed VC MUX (e.g. Free Degroupe)
-
-* Wed Mar 23 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-12mdk
-- XFdrake: fix probing on neomagic (pixel)
-- harddrake: package rpmsrate so that installing hw packages works
-
-* Tue Mar 22 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-11mdk
-- drakconnect: do not list wifi* interfaces (blino, #14523)
-- harddrake2: install packages needed for hw support
-- keyboarddrake: run dmidecode only once we acquired root capabilities
- (pixel, #13619)
-
-* Mon Mar 21 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-10mdk
-- drakboot: enhance yaboot macos entry handling (cjw, #14642)
-- drakconnect: disable network hotplug for the via-velocity driver
- (#14763)
-- drakups:
- o fix driver for APC UPSes for auto USB probing
- o set extra parameters if present
-- net_applet (blino):
- o force start from menu (#14858)
- o don't modify autostart config file value if started with --force
-- XFdrake (blino):
- o use new recommended settings for synaptics-0.14.0
- o use specific Synaptics settings for ALPS devices (#14512)
-
-* Fri Mar 18 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-9mdk
-- drakTermServ: detect all NIC that're know to drakconnect
-- drakups: fix device path when manually adding an UPS (#12290)
-- logdrake: fix explanation mode only displaying last line (#14368)
-
-* Fri Mar 18 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-8mdk
-- diskdrake (pixel):
- o fix remove on LVM in newt interface (#14254)
- o remove the lvm if destroying it succeeds (#14249)
-- drakboot: handle grub file names that do not correspond to a mounted
- filesystem (pixel, #14410)
-- drakconnect: remove other mac address occurrences in iftab (blino)
-- drakTermServ (stew):
- o lose the "system" calls
- o use pxe.include now
-- drakperm:
- o do not ignore groups with empty password field (#14777)
- o better looking GUI: span groups & users on several columns (up to 3)
-- localedrake: always warn the user to logout, even if we can't help
- (pixel, #14403)
-
-* Thu Mar 17 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-7mdk
-- drakconnect:
- o fix localized sorting (#14634)
- o manage interface (blino):
- * allow to modify non configured devices
- * really detect wireless devices
-- harddrake: fix adsl devices detection (blino, #14747)
-- logdrake: fix save dialog (blino)
-- printerdrake: fix queue name auto-generation, it sometimes hanged in
- an endless loop (till, #14426, #14525, #14563)
-- XFdrake (pixel):
- o instead of having xorg.conf symlinked to XF86Config, do the
- contrary
- o use monitor-probe-using-X
- o remove the "ratio" combo and have the resolutions from current
- ratio by default and allow "Other" to see all others
-
-* Wed Mar 16 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-6mdk
-- drakboot: fix dropping line macos in yaboot.conf (pixel, #14642)
-- drakconnect (blino):
- o allow to display multiple instances of the similar adsl devices
- o fix unicorn packages installation
-- interactive layer: fix some nasty bug
-- localekdrake:
- o preserve utf-8 setting (#12308)
- o properly set UTF-8 for HAL mount options if needed (#13833)
- o enable to enable/disable utf-8
- o install scim-input-pad when switching IM for japanese
- o ensure there's never a "previous" button on first step (even when
- stepping back)
-- printerdrake: fix setting of default printer on daemon-less CUPS
- client (till, #13940)
-- XFdrake: probe DDC, then fallbacks on DMI
-
-* Tue Mar 15 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-5mdk
-- diskdrake: add support for XBox (stew, pixel)
-- drakboot: don't die when we have no entries in grub menu.lst (pixel)
-- drakconnect (blino):
- o allow not to set gateway device (#14633)
- o fix and force CMVs symlink creation for eagle-usb
-- drakfirewall: allow connections from local net to firewall (blino,
- #14586)
-- XFdrake (pixel):
- o for 1400x1050, put the resolutions (60 and 75Hz are already in
- extramodes, but they are GTF modelines, we can overrule them)
- o don't add modelines for 1280x1024, they are already in standard
- vesamodes (builtin Xorg)
- o when adding gtf modelines, sort them with high frequencies first
- (since Xorg prefer the first matching modeline (!))
-
-* Thu Mar 10 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-4mdk
-- harddrake2: enable to upload the hardware list
-- XFdrake:
- o fix crash when called from hwdb-clients
- o skip the 4/3 detailed_timings otherwise they conflict with the
- Xorg builtin vesamodes (pixel)
-- drakconnect (blino):
- o use a higher timeout for modem dialing (#10814)
- o make wpa_supplicant.conf readable by root only
-
-* Wed Mar 9 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-3mdk
-- drakconnect:
- o workaround buggy sk98lin kernel driver (#14163)
- o write selected dhcp client in ifcfg files (blino)
-- draksec: fix setting null values (#14364)
-
-* Tue Mar 8 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-2mdk
-- drakconnect (oblin):
- o scan hidden ssid
- o manage interface:
- * handle more DHCP options
- * move DHCP settings in a notebook page
-- XFdrake: choose a 4/3 resolution by default (pixel)
-- XBox support (stew)
-
-* Mon Mar 7 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-1mdk
-- diskdrake: allow live resizing of reiserfs on lvm (pixel)
-- drakboot: fix detecting yaboot (pixel)
-- drakconnet (blino):
- o configure CMV for sagem modems
- o delete gateway:
- * if reconfiguring the gateway interface to dhcp
- * if gateway device is invalid (#11761)
- * if needed when configuring DSL devices (#13978)
- o manage interface:
- * detect all ethernet interfaces
- * allow to modify DHCP settings
-- localedrake: let's be able to setup gcin (funda wang)
-- printerdrake: detect if the user has manually edited
- /etc/cups/client.conf (till)
-- XFdrake: still improving monitors support (pixel)
-
-* Wed Mar 2 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.35mdk
-- drakboot (pixel):
- o fix corrupted "Precise RAM size" field (#13874)
- o handle boot-as and master-boot (#13846)
-- drakconnect: workaround buggy kernel (#12609)
-- net_applet: refresh every second, and do not reread network conf on
- each refresh (blino, #11467)
-- printerdrake (till):
- o add possibility to add a remote LPD printer in beginner's mode (#13734)
- o fix incorrect display of accentuated characters in PPD options
- also for boolean options (#13928)
- o let detected LPD printer model be shown in a pop-up window and not
- in the add printer wizard
- o let detected socket printer model be shown if the IP/port was
- manually entered
- o fix selection of test pages
- o ensure that recommended driver is preselected in expert mode, even
- if the recommended driver is a manufacturer-supplied PPD with
- language tag
-- ugtk2 layer: misc fixes
-- XFdrake (pixel):
- o add a ratio choice, and restrict the resolutions to this choice
- o add 1280x600 for VAIO PCG-C1M (#5192)
- o fix section with only comments
- o "keyboard" InputDevice can also be called "kbd"
- o do not only add modelines not defined in xorg, otherwise xorg will
- prefer the modelines we provide (eg: it will use 1024x768@50
- whereas it could have used 1024x768@60)
-- configure iocharset and codepage option for hal (pixel, #13833)
-
-* Tue Mar 1 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.34mdk
-- diskdrake: allow to choose encryption algorithm (blino, #13472)
-- drakhelp, drakbug: use www-browser (daouda)
-- printerdrake: fix "add printer" wizard chen embedded in the MCC (#13929)
-- XFdrake: further monitor fixes (pixel)
-
-* Tue Mar 1 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.33mdk
-- drakconnect: enhance "wrong network mask format" message (blino, #10712)
-- drakTermServ: sort list of nbis (stew, #13998)
-- keyboardrake: set compose key as "rwin" if not set (pablo)
-- XFdrake (pixel):
- o replaced by use monitor-edid instead of ddcxinfos
- o add many resolutions
- o set the "Monitor preferred modeline" from EDID in xorg.conf
- o handle lower than 640 resolutions
- o set better resolution
-
-* Mon Feb 28 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.32mdk
-- drakboot: make sure /boot/grub/install.sh is 755 (pixel)
-- drakconnect (blino):
- o allow to alter DHCP timeout (# 11435)
- o add support for PEERDNS, PEERYP and PEERNTPD (#9982)
- o workaround broken ethtool from hostap drivers (#13979)
- o handle USERCTL settings for modems too
-- net_applet (blino):
- o add menu entry (#11898)
- o netprofile support (#12094)
- o allow to select watched interface
-- printerdrake: let country and not language decide about default
- paper size (till)
-
-* Fri Feb 25 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.31mdk
-- drakconnect (blino):
- o allow users to start the connection (#12837)
- o pre-detect modem device
-- keyboarddrake: new default keyboard is "us" for Chinese (pablo)
-- printerdrake: driver "oki4w" was renamed to "oki4drv" (till)
-
-* Fri Feb 25 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.30mdk
-- drakconnect :allow to select "unlisted" provider in adsl provider
- list (blino)
-- drakfont: fix uninstalling fonts (#9324)
-- drakproxy: do not update kde config file if kde isn't installed (blino)
-
-* Thu Feb 24 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.29mdk
-- drakconnect:
- o add norwegian ADSL providers (Eskild Hustvedt)
- o remove all non-digit characters in phone number (blino, #10813)
- o minimal WPA support (blino)
-- drakxtv: scan TV channels for TV cards that do not require any
- driver configuration (#13865)
-- drakups:
- o fix crash due to latest perl-Libconf
- o fix reading UPS db
-- net_applet: fix name of mcc tool (blino & me, #13896)
-- printerdrake:
- o enable to alter options of a not set up non-Foomatic queu
- o fix accentuated characters in PPDs not correctly reproduced in the
- printer options dialog
-- GUI layers:
- o fix displaying "Advanced" instead of "Basic" in advanced_state by
- default (pixel, #13944)
- o force to open file selector as a modal window (rafael, #13942)
-
-* Tue Feb 22 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.28mdk
-- drakfont: allow to select multiple files (blino)
-- localedrake:
- o adapt to new uim splitting (UTUMI Hirosi)
- o adapt to new scim packages splitting (Funda Wang)
- o fix koi8-u font size (Funda Wang, #13809)
-- keyboardrake: handle lb locale (pablo)
-- printerdrake: if a printer is set up with HPLIP and has still an old
- HPOJ configuration, it will be automatically removed (till)
-- scannerdrake (till):
- o display unsupported scanners as such in the scanners list (#12049)
- o load kernel modules (and make them loaded on boot) if specified in
- ScannerDB
- o tell user if his scanner requires manual editing of config files
- to work (the appropriate scanner models are marked in ScannerDB)
-
-* Wed Feb 16 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.27mdk
-- drakboot: make it more robust (pixel)
-- drakproxy: set up KDE too (blino)
-- harddrake: list usb mice that are not listed in usbtable (#13575)
-- interactive layer: use the new gtk+ file chooser (pixel)
-- keyboarddrake: make keyboard layout more user friendly
-- printerdrake (till):
- o force only ASCII letters, numbers, and underscores being used in
- print queue names
- o wait for CUPS being ready before querying the printer states for
- the printer list in the main window
-- reduce drakxtools-backend's requires (pixel)
-
-* Mon Feb 14 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.26mdk
-- draksound, service_harddrake: handle more sound cards
-- localedrake: alter font settings for zh_CN and zh_TW (funda wang)
-- printerdrake (till):
- o allow HPLIP setup also when setting up the print queue manually
- o fix undetection of network printers without DNS hostname entry
- o longer timeouts for "ping", as some network printers were missed
-- service_harddrake: handle removal of cards (#7049)
-
-* Fri Feb 11 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.25mdk
-- harddrake service: fix removing PCMCIA controller
-- hardware support: detect & load modules for RNG (crypto hw)
-
-* Thu Feb 10 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.24mdk
-- drakxtv:
- o only offer to configure tv cards that (may) need to be configured
- o do not complain about no tv cards when there're but they do not
- require any configuration beyond loading proper module (#7443,
- #11270, ...)
-- harddrake:
- o detect more webcams
- o do not detect speakers as keyboards
-- printerdrake: misc fixes (till)
-
-* Thu Feb 10 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.23mdk
-- printerdrake (till):
- o add automatic setup of HP printers with HPLIP
- o fixes for embedded mode
-- drakconnect:
- o add support for ACP (Mwave) modems
- o fix stepping back from lan interface step with ndiswrapper
- o fix ndiswrapper installing
-- interactive layer: fix selecting a file (eg: ndiswrapper's drivers)
-- hardware support:
- o detect & load modules for:
- * toshiba driver for some laptops
- * some multiport serial cards
- * DVB
- * joysticks
- o add support for multiple different AGP controllers
- o handle a few more special serial port cards
-
-* Wed Feb 9 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.22mdk
-- localedrake: switch arabic font for KDE from "Roya" to "Terafik"
- that supports ascii glyphs (pablo)
-- ugtk2: API changes for rpmdrake (rafael)
-
-* Wed Feb 9 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.21mdk
-- drakboot: fix ACPI checkbox (pixel, #13335)
-- drakkeyboard: synchronized keyboards with X11 (pablo)
-- harddrake service: prevent adding spurious empty lines at end of
- /etc/hotplub/blacklist on stop
-- printerdrake: updates
-
-* Tue Feb 8 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.20mdk
-- drakconnect (blino):
- o add basic ndiswrapper support
- o select manual adsl connection type if the network interface was
- static
- o add missing protocol for Free and Telecom Italia in ISB DB
-- drakproxy: support gnome proxy (blino)
-- printerdrake (till):
- o adapt to new printer drivers packages
- o limit automatically generated print queue names to 12 characters
- and warn user if he manually enters longer names (which will make
- the printer unaccessible for some Windows clients) (#12674).
-- allow upper case letters in users' real names (rafael)
-- net_applet: automatically start in fluxbox and XFce4 too (blino)
-
-* Fri Feb 4 2005 Olivier Blin <blino@mandrake.org> 10.2-0.19mdk
-- drakconnect: add bpalogin support for cable connections
-
-* Thu Feb 3 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.18mdk
-- drakconnect: fix CAPI kernel drivers installation (blino)
-- drakfirewall: port 445 is used for Samba (w/o NetBios) (blino)
-
-* Fri Jan 28 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.17mdk
-- diskdrake: fix autocheck flag in /etc/fstab for / (pixel, #13283)
-- drakbackup: Wizard, System Backup configuration problems (stew, #13235)
-- harddrake service:
- o fix PCMCIA autoconfig
- o make --force force harddrake to reconfigure everything
-
-* Wed Jan 26 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.16mdk
-- diskdrake: use the new option auto=dev instead of auto=yes when
- configuring mdadm (pixel)
-- drakTermServ (stew):
- o drop quasi-pxe setup in dhcp.conf as we can use real pxe now
- o portmap check, dhcpd.conf.pxe.include (#13138 & #13139)
-- package installation: use the new --gui option to urpmi for the
- drakxtools to ask for media change (rafael)
-- mygtk2 related fixes (pixel)
-
-* Fri Jan 21 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.15mdk
-- fix mygtk2 for drakloop (pixel)
-- printerdrake: fix main loop (daouda)
-
-* Fri Jan 21 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.14mdk
-- drakconnect: update ISP db (baud)
-- harddrake: fix pcmcia controllers detection
-
-* Fri Jan 21 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.13mdk
-- keyboarddrake: minimal XkbModel support (pixel)
-- diskdrake (pixel):
- o don't write /etc/mdadm.conf when no raid
- o use option "auto=yes" in mdadm.conf to ensure mdadm will create
- /dev/mdX devices when needed
-- printerdrake:
- o fix subdialogs when embedded in mcc
- o fix banner's title by initializing l10n domains before ugtk2
-
-* Wed Jan 19 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.12mdk
-- diskdrake: progress bar when formatting ext3 (pixel)
-- drakauth: fix switching back nsswitch.conf to local authentication
- (pixel, #13024)
-- drakbackup: custom cron configuration (stew, #13056)
-- drakboot: do not create a maping table when uneeded (#12307)
-- drakconnect: fix bug introduced by mygtk2 (pixel)
-- drakfirewall: fix ethernet card detection (pixel, #12996)
-- harddrake2: fix crash on opening help windows
-- interactive layer: separate alignement for basic and advanced
- entries (pixel)
-- XFdrake (pixel):
- o when reading an existing X config file, ensure it is not too bad,
- otherwise propose to start from scratch (#8548)
- o set up framebuffer in standalone mode too
- o for fbdev, advise to reboot instead of restarting X server
-
-* Wed Jan 12 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.11mdk
-- harddrake2: display the menubar and the banner when embedded
-
-* Wed Jan 12 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.10mdk
-- drakbackup, drakTermServ: silent install of terminal-server (urpmi
- --X is deprecated) (rafael)
-- localedrake (Funda Wang):
- o install scim-chewing for zh locale
- o fix font setting for zh_CN
-- printerdrake: show banner when embedded
-- write in lilo.conf the global root= (pixel, #12312)
-
-* Thu Jan 6 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.9mdk
-- diskdrake: display a progress bar while formating (pixel)
-- localedrake: fix UIM config b/c of new UIM-0.4.5
-
-* Wed Jan 5 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.8mdk
-- drakauth: "Administrator (root)" is more user-friendly than "root"
-- drakbackup (stew):
- o directories with spaces Mandrakeclub
- o perms on tarballs too (#12861)
-- drakconnect: update ADSL ISPs list (baud)
-- drakfirewall: "Samba server" is better named "Windows Files Sharing
- (SMB)" (pixel, #10585)
-- draksound, harddrake service: handle a couple of new ALSA drivers
-- handle handle spaces in SMB username (pixel)
-- keyboardrake: handle various new keyboard layouts (pablo)
-- localedrake: do not localize console in japanese (Funda Wang)
-- remove codepage= option for fs types which don't handle it (eg:
- ntfs) (pixel)
-
-* Thu Dec 23 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.7mdk
-- detect more floppies when dmidecode is supported (pixel)
-- drakconnect:
- o do not crash when configuring a modem
- o fix NETMASK autofilling
-- localedrake: do not localize console when using jp (Funda Wang)
-- XFdrake: make "XFdrake --auto" fully automatic (pixel)
-
-* Wed Dec 15 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.6mdk
-- handle more PCMCIA/CardBus cards
-- do not try to load floppy module if there's no floppy drive (#8211)
-- drakTermServ: misc GUI enhancements (pixel, stew)
-- harddrake service: configure PCMCIA host controller if needed
-- new package drakx-finish-install (pixel)
-- new mygtk2 layer
-
-* Fri Nov 26 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.5mdk
-- diskdrake: handle common geometry XXX/240/63 is quite common thus
- fixing yet another infamous "XP doesn't boot" (though it should
- already be fixed via EDD) (pixel)
-- XFdrake: don't write X config when there is none (otherwise we write
- a partial and broken X config)
-
-* Thu Nov 25 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.4mdk
-- diskdrake: more intelligent sort of fstab to handle loopback files
- or bind directory (pixel, bug anthil #1198)
-- drakboot: detect on lilo on floppy (pixel, #12213)
-- drakconnect: in "ADSL provider" step, reset the protocol on provider
- switch
-- draksound: handle new sound drivers from kernel-tmb and kernel-multimedia
-- drakupdate_fstab: fix /dev//dev/foobar in /etc/fstab (pixel, #12224)
-- harddrake service:
- o fix setting scsi and usb probell in live CD (thus fixing
- mousedrake --auto with USB mice on live CD)
- o do not die if sound never was configured (aka on first boot from a
- live CD)
-
-* Wed Nov 17 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.3mdk
-- bootloader: let be kernel-i686-up-64GB aware (pixel)
-- diskdrake: LVM/DM/MD fixes (pixel)
-- drakupdate_fstab: use the right encoding when creating an entry for
- /etc/fstab (pixel, #12387)
-- PPC fixes (Christiaan Welvaart, pixel)
-- service_harddrake: on startup, redo ethX aliases
-
-* Fri Nov 12 2004 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com> 10.2-0.2mdk
-- Rebuild for new perl
-- drakauth (pixel):
- o correctly restore pam.d/system-auth when setting "local" authentication
- o no use_first_pass on "auth sufficient pam_unix.so" line for pam_castella
-- localedrake: switch zh_CN to GBK (Funda Wang)
-- logdrake: speed it up
-
-* Wed Nov 10 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.1mdk
-- drakauth: add SmartCard authentication (pixel)
-- drakbackup: advise user about anacron (stew, anthill #1134)
-- drakconnect:
- o add support for Philips Semiconductors DSL card (blino)
- o security fix: let ifcfg files be readable only by root when a WEP
- key is set (blino, #12177)
- o update/add ADSL ISP entries (baud)
-- drakTermServ (stew):
- o create cfg dir if needed
- o use xorg.conf
- o touch /etc/dhcpd.conf.etherboot.kernel if missing
- o ignore vmnet for broadcast address
- o start reworking PXE support.
-- harddrake2: display more information about memory
-- localedrake: fix configuring fcitx IM (Funda Wang)
-- XFdrake: do not detect smartcards (pixel)
-
-* Thu Oct 28 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-27mdk
-- bootloader: run grub chrooted (gwenole)
-- diskdrake:
- o show older partition types (eg: ntfs) on x86_64 (gwenole)
- o newly created raids must have a fs_type (pixel)
-- drakconnect:
- o add support for freebox v4 ADSL modem with USB link
- o show correct strings for freebox and n9box ADSL modems
-- drakups: fix again MGE USB UPSes
-
-* Tue Oct 12 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-26mdk
-- bootloader-config: in grub menu.lst, keep previous "serial ..." and
- "terminal ..." lines (pixel, #12054)
-- drakconnect:
- o fix crash in delete wizard
- o workaround more buggy drivers that returns a bogus driver name for
- the GDRVINFO command of the ETHTOOL ioctl
-
-* Mon Oct 11 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-25mdk
-- drakconnect: workaround buggy prism2_usb that returns a bogus driver
- name for the GDRVINFO command of the ETHTOOL ioctl
-
-* Mon Oct 11 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-24mdk
-- drakconnect (blino):
- o delete wizard: remove /etc/sysconfig/network-scripts/ethX files
- o ADSL configuration:
- * remove /etc/sysconfig/network-scripts/ethX files that may have
- been created by sagem scripts
- * don't write ifcfg-ppp0 for static/dhcp connections
-
-* Fri Oct 8 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-23mdk
-- drakconnect:
- o fix encapsulation for chinese ISPs (Funda Wang, #10965)
- o fix H[CS]F modems configuration (adapt to new kernel packages
- names)
- o start slmodemd when installing it (thus preventing the average
- user to have to restart his machine in order to get a working
- connection)
- o try /dev/ttyS14 too for serial modems (ie internal PCI modems that
- don't need any driver but export a serial port instead)
-
-* Fri Oct 8 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-22mdk
-- bootloader-config: on a recent kernel, remove any existing devfs=
- kernel option in order to enable udev (pixel)
-- drakconnect: add chinese ISPs (Funda Wang, #10965)
-- XFdrake: fix parsing fully commented Section (pixel)
-
-* Wed Oct 6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-21mdk
-- bootloader-config: fix installing kernel-2.6.8.1-12.1mdk (pixel)
-- drakups: fix brown paper bug in USB detection
-
-* Tue Oct 5 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-20mdk
-- drakups:
- o fix port for MGE's USB UPSes
- o fix drivers for MGE UPSes
- o fix installing nut
- o add support for "American Power Conversion" UPSes
- o restart upsd daemon once nut config is written
- o write config in pure wizard mode
- o when manual adding an UPS:
- * fix reading driver DB
- * fix reading driver from the list
-- diskdrake: do not fail with c0d0p* devices (pixel)
-- drakconnect: applying changes can be quite time expensive,
- especially with ppp and wifi connections thus let's show a "wait"
- message
-- drakfont: fix closing import dialog (#11052)
-
-* Tue Oct 5 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-19mdk
-- drakconnect:
- o ADSL DB (baud):
- * add a few new ADSL ISPs
- * fix wrong VCI which wasn't in hexa for brazililan Velox/Telemar ISP
- o manage interface (blino:
- * recompute NETWORK and BROADCAST fiels
- * use both type and device name in non-ethernet interfaces list
- * do not crash if BOOTPROTO is empty, use 'none' by default (#11899)
-
-* Mon Oct 4 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-18mdk
-- drakconnect: do not lose GATEWAYDEV if it is a non wireless one and
- a static wireless card is configured (and vice versa) (blino)
-
-* Mon Oct 4 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-17mdk
-- 64-bit fixes (gwenole)
-- drakconnect: write wlan-ng config files for prism2 drivers (blino)
-- harddrake service:
- o do not disable glx when switching from nvidia driver to nv
- (indirect support, #11285)
- o do not fail when hw db is corrupted
-
-* Mon Oct 4 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-16mdk
-- drakconnect (blino):
- o only write TYPE field in ifcfg files for xDSL connection
- o do not lose ONBOOT setting for manual/DHCP DSL connections
- o fix the "IP %s address is usually reserved" warning
- o sagem modems:
- * fix again DHCP/static connections with sagem
- * write static IP in eagle-usb.conf if needed
- * load specific modules/programs before config is written
- * do not reset IP address when configuring
- * automatically guess gateway for static connections
-
-* Fri Oct 1 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-15mdk
-- fix serial UPS detection
-
-* Fri Oct 1 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-14mdk
-- mousedrake, harddrake service: do not crash with touchpads (blino)
-- harddrake service: on stop, blacklist snd-usb-audio (#8004)
-
-* Fri Oct 1 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-13mdk
-- diskdrake: don't die when device-mapper is missing (eg on 2.4
- kernel) (pixel, #11834)
-- drakconnect : call the scripts in
- /etc/sysconfig/network-scripts/hostname.d like the network scripts
- are doing when changing the hostname (fredl)
-- drakups:
- o add --wizard option in order to directly run the wizard
- o do not show banner when embedded
-- harddrake:
- o list tablets with mice
- o fix UPS devices listed in both "UPS" and "unknown" classes
- o provide more data on UPS
-- localedrake:
- o set KDE in m17n emvironment if needed
- o split its menu entry in two (one for user config, one for system
- embedded in mcc)
-
-* Thu Sep 30 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-12mdk
-- disable the new gtk smart search which display an entry box (pixel)
-- preload nvram on laptops
-- print translated usage message (#5657)
-- bootloader-config, drakboot: add raid-extra-boot=mbr when installing
- on mdX (pixel, #11699)
-- diskdrake (pixel):
- o fix LVM2 support
- o fix "Illegal division by zero" when installing lilo (#11738)
- o skip unopenable devices when looking for device geometry
-- drakperm: list users rather than groups when requested for (anthill #1161)
-- drakroam: specify device to iwconfig when applying settings (blino,
- #11279)
-- localedrake:
- o fix KDE font names to match currently shiped Xfs font names (pablo)
- o fix setting fonts at install time
-- drakconnect (blino):
- o all linmodems (including Hsf and Hcf ones) are now supported with
- 2.6 kernels
- o ask to connect for modem/isdn connections again
- o better default connection detection
- o check if IP address is already used for static interfaces
- o handle madwifi (fredl)
- o try to detect default connection in adsl > isdn > modem > ethernet
- order
-- drakups: really fix refreshing UPS list when adding a new UPS though
- the add wizard
-- harddrake: list all mice and keyboards (thus lowering unknown
- hardware in hwdb-clients)
-- mousedrake, XFdrake: use input/mice instead of psaux for synaptics
- touchpads with 2.6 kernels (blino, #11771)
-- net_applet (blino):
- o do not destroy/re-create menu if state hasn't changed, or else the
- menu may disappear without any reason
- o fix again running processes detection
-- net_monitor (blino):
- o fix start/stop
- o check every 5 seconds (instead of 20) for new or disconnected
- interfaces (#11780)
-- printerdrake: misc fixes (pixel)
-- XFdrake: use driver "keyboard" instead of "Keyboard" (fix Xorg-6.8
- support) (pixel)
-
-* Fri Sep 24 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-11mdk
-- handle aes-i586 instead of aes (pixel, #11588)
-- bootloader-config: fix typos in usage (pixel)
-- diskdrake (pixel):
- o get geometry from EDD
- o don't add /dev/pts line in fstab anymore (already done in initrd
- and by udev)
- o log more explanations
- o remove every PVs when destroying a VG (#11579)
- o handle renamed devices (eg: hde->hda or hda->sda)
- o silently ignore encrypted filesystems with no encrypt_key
-- drakconnect (blino):
- o zeroconf:
- * really enable zeroconf if zeroconf is requested
- * write blank zeroconf hostname if zeroconf is disabled
- * fix disabling zeroconf
- * do not disable not installed (prevent warnings in console)
- * zcip isn't a service,
- * stop tmdns service if zeroconf is disabled,
- o move "Start at boot" step for lan-like adsl/cable connections
- o do not disable ifplugd support for wireless cards
- o do not let speedtouch-start launch connection
- o fix installing kernel packages for winmodems
- o fix /dev/modem symlink on ttySL0 (#8947 again)
- o use avmadsl option for capi cards to use settings generated by
- drdsl
- o PPPoA: fix reseting vpi and vci if vpi equals zero
- o ADSL provider DB: rename "Télé2 128k " as "Télé2"
-- drakupdate_fstab: allow SYNC=no option in /etc/sysconfig/dynamic
- (blino)
-- drakups:
- o refresh UPS list when adding a new UPS though the add wizard
- o fix automatically detect/add an UPS
- o default to automatic detection
-- localedrake:
- o add support for SKIM IM
- o install x-unikey when switching to vietnamese
- o always use "Sazanami Gothic" font in japanese
-- mousedrake: prevent a broken X configuration to break mouse
- configuration (pixel)
-- net_monitor: remove connection time timer if connection fails (#11590)
-- XFdrake: allow ignoring X config file when it contains errors (pixel)
-
-* Fri Sep 17 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-10mdk
-- drakbackup: use radio buttons in media selection (wildman)
-- drakconnect (blino):
- o better looking description list in drivers list (me)
- o remove the "speedtch off" alias (fix mdk10.0 upgrade)
- o don't write aliases for pcmcia cards, thus fixing the pcmcia
- service startup
- o stop capi service before new config is written so that capiinit
- can unload the old driver
- o make isdn over capi work again
- o do not ask which driver to use when only capidrv is supported
- o install unicorn-kernel package for Bewan modems if available
- o add "Unlisted - edit manually" entry in modem provider list (#11549)
-- harddrake service (blino):
- o probe firewire and pcmcia network devices too
- o update iftab when new ethernet devices are detected
-
-* Wed Sep 15 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-9mdk
-- drakconnect:
- o don't create empty pppoe.conf if the package isn't installed
- o load modules and run start programs
-- bootloader-config: fix crash when when removing some break entries (pixel)
-- keyboarddrake, XFdrake: better turkish support (pablo)
-
-* Tue Sep 14 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-8mdk
-- localedrake: offer to select IM if language has one preselected
- (eg: CJKV, else option is only availlable in advanced mode)
-- harddrake service: adapt to new nvidia driver location
-
-* Tue Sep 14 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-7mdk
-- add man pages for drakbackup and drakconnect
-- drakauth: misc fixes (stew)
-- drakconnect:
- o misc cleanups (blino)
- o setup slmodem (blino)
- o workaround buggy eth1394 that returns a bogus driver name for the
- GDRVINFO command of the ETHTOOL ioctl (so that we set a
- sensible name for firewire network adapters in GUIes)
-
-* Tue Sep 14 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-6mdk
-- drakconnect: install firmware if needed for CAPI devices (blino)
-- harddrake:
- o detect not yet supported ethernet cards too
- o detect more bridges and the like
-- scannerdrake: try harder not to detect non scanner USB devices (#7057)
-
-* Tue Sep 14 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-5mdk
-- drakbackup:
- o fix crashes in CD/Tape setup (stew)
- o fix wizard's UI behavior (Nicolas Adenis-Lamarre)
-- drakconnect (blino):
- o handle CAPI drivers
- o add support for xDSL over CAPI (eg: AVM cards)
- o fix pppoe configuration
-- draksec: move help from tooltips into separate page (#9894)
-- scannerdrake: fix "dynamic()" in scannerdrake to do not contain
- anything interactive (till)
-
-* Mon Sep 13 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-4mdk
-- drakbug_report: fix crash
-- XFdrake: adapt to new proprietary package naming (pixel)
-
-* Fri Sep 10 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-3mdk
-- net_applet (blino):
- o fix crash on connect/disconnect (#11389)
- o refresh status on every 5 second
-
-* Fri Sep 10 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-2mdk
-- description
- o split drakxtools description in drakxtools and drakxtools-newt
- o describe missing tools
- o sanitize tool names
-- drakconnect: do not ask twice if network should be started on boot
- for ADSL modem (blino)
-- keyboarddrake, XFdrake (pablo):
- o fix compose:rwin
- o fix some keyboard layout on xorg in order to match to match x.org
-
-* Fri Sep 10 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-1mdk
-- fix console UIs (pixel)
-- drakboot: do not kill the whole bootsplash wizard when embedded (blino)
-- drakconnect: fix cnx status in "internet" interface (blino)
-- harddrake service: autoconfigure mice if needed
-- localedrake: fix ENC setting when IM is disabled
-
-* Thu Sep 9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.27mdk
-- localedrake:
- o really reset IM on language switch
- o set ENC and locale specific stuff even when IM is disabled
- o fix thai IM
-
-* Thu Sep 9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.26mdk
-- bootloader-config: handle raid-extra-boot (pixel, #11350)
-- drakboot: handles more cases where lilo wants to assign a new Volume
- ID (pixel)
-- localedrake:
- o install miniChinput when configuring chinput
- o fix miniChinput configuration for Singapore
- o handle languages with default IM w/o any configured IM (aka keep
- "none" user choice) but default to per locale default IM when
- switching between locales
- o fix configuration of IM when altering depending on encoding (eg:
- miniChinput)
-
-* Thu Sep 9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.25mdk
-- bootloader-config (pixel):
- o fix regexp to work with "linux-2.6.8.1-10mdk"
- o handle lilo "static-bios-codes" option
- o prevent LILO from reading from tty
- o only expand symlinks when renaming "linux" into the kernel version
- based label (eg: "2681-10")
-- drakboot:
- o ensure ~/.dmrc is owned by user else GDM complains about
- o handles the lilo case where it wants to assign a new Volume ID (pixel)
-- drakconnect:
- o ignore rpm's backups (#10816)
- o always update iftab when config is written (blino)
- o detect slamr, slusb and ltmodem modules for modems (fredl)
-- drakupdate_fstab: handle options in any order (fix harddrake service
- regarding amove media as well as regarding cdroms, burners and dvds)
-- harddrake service: log which tools are runned
-
-* Wed Sep 8 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.24mdk
-- drakboot (blino, #11282):
- o update splash when removed too
- o use Mandrakelinux theme by default
- o don't give theme name to remove-theme
-- drakconnect: fix empty "manage interface" (blino, #11287)
-- drakperm: fix freeze (#11274)
-- harddrake service: fix X11 autoconfiguration
-
-* Tue Sep 7 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.23mdk
-- bootloader-config: take care of symlink based bootloader entries (pixel)
-- diskdrake (pixel):
- o ignore first line of /proc/swaps
- o partially handle /udev/xxx device names in fstab
- o ignore rootfs "device"
- o don't warn for loopback files
-- drakbug: fix --report and --incident (daouda)
-- drakconnect (blino):
- o "delete network interface" wizard:
- * use long device names
- * be aware of internet service -> regular ifcfg files
- o misc fixes (especially regarding sagem ADSL modems)
-- harddrake service: really autoconf TV cards
-- more synaptics fixes (blino)
-- use "users" options for removable devices (so that users can unmount
- them if the devices were mounted by root) (blino)
-
-* Mon Sep 6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.22mdk
-- diskdrake (pixel):
- o detect linux software raid magic
- o detect LVM2
- o misc fixes
- o fix displaying "mdmd0" instead of "md0"
-- drakboot: ensure we do not enable autologin w/o any user
-- drakconnect (blino):
- o fix detection in 2.4 kernel for net devices with high traffic
- o only complain about kernel-2.4.x for h[cs]f modems
- o fix kppp config reread
- o read kppp config when user dir is configured
- o use /dev/modem if no modem was detected (do not crash when we edit
- a connection whose modem is unplugged)
-- harddrake service: everything should be done automagically now
-- localedrake:
- o list specific packages to install for japanese when using SCIM
- o install scim-m17n as well for generic SCIM configuration (more
- input methods)
- o log more explanations
- o set QT_IM_MODULE too since it's needed by Qt-immodule-20040819
- (UTUMI Hirosi)
- o disable translations on console for kn, pa, ug too (pablo)
-
-* Mon Sep 6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.21mdk
-- misc GUI enhancements
-- diskdrake: be more failsafe with half broken existing raids (pixel)
-- drakconnect: fix crashes (#11100)
-- harddrake service: really add module for storage controllers, AGP
- controllers, TV cards
-- mousedrake, XFdrake: fix synaptics configuration (blino)
-
-* Fri Sep 3 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.20mdk
-- detect more devices
-- misc GUI cleanups
-- netconnect: support DHCP and static for sagem devices (blino)
-
-* Thu Sep 2 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.19mdk
-- add icons to most tools' windows
-- drakboot: do not crash if default autologin or default desktop
- doesn't exist (blino)
-- drakupdate_fstab: do not use supermount by default for removable
- devices (blino)
-- localedrake:
- o enable SCIM for Amharic language
- o fix missing banner title
-- net_applet: tell when internet connection is not configured (blino)
-- printerdrake: misc enhancements (till)
-- service_harddrake: add modules to conf files if a tv card is detected (blino)
-
-* Tue Aug 31 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.18mdk
-- drakclock (warly):
- o check if the ntpdate command succeed or not
- o do not perform a date command when we use ntpdate
- o fix hour setting though mouse on the clock
- o make the hour tick shorter
- o repaint the calendar (especially when the day changed)
-- drakconnect:
- o fix crashes (#11100)
- o misc fixes (blino)
-- drakfirewall: use the loc zone in sharewall policy only if the loc
- interface exists (florin, #10539)
-- harddrake2:
- o add UPS class (fredl)
- o be more enable friendly regarding themes (eg font size properly
- adapt to theme changes)
-- net_applet: make it start again
-
-* Mon Aug 30 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.17mdk
-- drakclock: fix layout so that NTP frame is not badly cut on small
- resolution (#10971)
-- net_applet:
- o allow to connect/disconnect from net_applet
- o launch net_monitor once
- o launch net_monitor in background
-- printerdrake:
- o add column to show whether the printers are enabled or disabled to
- the list of available print queues in the main window
- o add command to the edit-printer window to enable and disable print
- queues
- o fix managment of "--expert" command line option
-
-* Sun Aug 29 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.16mdk
-- drakconnect: add metric support according to connection type (blino)
-- drakroam (Austin):
- o fix "Add" button behavior
- o don't show channel 0 for auto mode
- o move DHCP column to left for better sizing
-- drakupdate_fstab: do not mount and add/delete in fstab when many
- partitions (blino, #11005)
-- logdrake: fix displaying only last parsed file
-- printerdrake (till):
- o add support for daemon-less CUPS client
- o fix graying out of buttons/menu entries in the main window
- o fix unrecognized local queues when the spooler daemon is not
- running during printerdrake startup
-- XFdrake: fix crash on resolution change
-
-* Fri Aug 27 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.15mdk
-- GUI cleanups:
- o drakboot: fix canceling first step
- o localedrake: let's look & behave like a wizard (fix cancel on
- country choice)
-- drakconnect: detect Intel & ATI PCI modems
-- localedrake: really install proper packages depending on (locale,
- input method) tuple (and not just those depending on IM)
-- XFdrake: add dell D800 specific modeline and resolution (Olivier
- Thauvin)
-
-* Thu Aug 26 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.14mdk
-- fix ddcprobe for other archictectures
-- drakconnect: restart network for non ethernet adsl devices (blino)
-- harddrake service:
- o add --force parameter (#9613)
- o do run configurator
- o restore bootsplash (blino)
-- printerdrake: prepare support for daemonless CUPS client (till)
-- XFdrake: fix synaptics configuration (blino)
-
-* Wed Aug 25 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.13mdk
-- fix modules conf parsing (blino)
-- ddcxinfos: extensive rewrite and cleanups to use the new int10
- interface and a last-resort means to get VBE/EDID information from
- special -BOOT kernel during early boot (gwenole)
-- drakconnect (blino):
- o add Siol (the bigest ADSL provider in Slovenia) in ADSL providers
- DB (Gregor Pirnaver)
- o allow multiple aliases per host
- o always add an hostname alias and add it on the loopback device
- (#10345)
- o do not ask the user to do an inifinite looping in MCC ...
- o prevent recognize ppp0 as both modem and adsl (#10772)
-- drakroam: fix crash when config directory does not exist (#10935)
-- listsupportedprinters (till): introduce it for auto-generation of
- Mandrakelinux hardware support DB
-- localedrake:
- o fix country selection (blino, #10938)
- o install proper packages depending on (locale, input method) tuple
-- mousedrake, XFdrake (blino):
- o synaptics touchpad support
- o fix wacom support
-- printerdrake:
- o fix crash
- o handle print queues with the "lbp660" and "ml85p" drivers (which
- directly communicate with the printer instead of sending the
- output to a CUPS backend) (till)
- o prevent queues using "lbp660" and "ml85p" from opening message
- windows when the print queues are auto-generated by
- dynamic/hotplug (till)
- o if the user gets an error/warning message during setup of a
- lbp660/ml85p queue, he is automatically put back to the previous
- step in the add-printer wizard (till)
- o do not embedd warning messages in the add-printer wizard, as they
- have no "Previous" button (till)
-
-* Mon Aug 23 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.12mdk
-- really fix drakxtools build for ppc & sparc
-- use sysfs to detect firewire devices thus fixing eth1394 detection
- (blino)
-- drakconnect (blino):
- o ensure iftab is always up-to-date
- o fix spurious ifcfg-ippp0 creation
-- net_monitor (blino):
- o do not assume internet isn't configured if obsoleted cnx scripts
- do not exist
- o fix connect button sensitivity
- o watch connection time, not disconnection time
-- printerdrake:
- o added fully automatic, non-interactive, X-less print queue set up
- by the "autosetupprintqueues" command, preferrably to be started
- by hotplug
- o fix file check for package installation
- o fix problem of Brother laser printer on parallel port not showing
- its name in auto-detection result.
- o let printer name, description, location be entered after
- determining the model in the add printer wizard
- o let default print queue name be derived from the model instead of
- being "Printer", "Printer1", ...
- o simplify print queue name generation in non-interactive printer
- setup
- o fix "Previous" button in the test page step of the add printer
- wizard
-- XFdrake: do not set DRI mode anymore which is not needed anymore
- with latest PAM
-
-* Thu Aug 19 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.11mdk
-- drakconnect: use mac_ieee1394 descriptor in iftab for firewire links
- (WIP) (oblin)
-- fix drakxtools build for ppc & sparc
-- keyboarddrake: fix it not modifying xkb (pixel)
-- printerdrake:
- o fix crash
- o prevent potential crashes (blino)
- o do not ignore some internal errors (blino)
- o fix unloaded "usblp" kernel module before local printer
- auto-detection (blino)
- o do not install anymore gimpprint (included in gimp2_0) (till)
- o do not configure GIMP and OpenOffice.org which were patched so
- that they do not need anymore to be configured regarding print
- queues (till)
- o text fix for scanners in HP's multi-function devices (till)
-- service_harddrake: check usb controllers on boot (oblin, #9613)
-
-* Wed Aug 18 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.10mdk
-- drakconnect (oblin):
- o do not write 'ifcfg-Manually load a driver' file
- o fix sagem pty in pppd config
- o prevent boot from timeoutingforever if modem can't be synchronized
-- localedrake: fix default IM setting when switching language (#10831)
-- net_applet: fix tooltip's messages
-- harddrake: add a PCMCIA controllers class
-
-* Tue Aug 17 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.9mdk
-- drakboot:
- o install acpi and acpid if needed (pixel, #10760)
- o allow to choose net profile in advanced mode (oblin)
- o enable to allow to choose a video mode if boot is not graphical
- while configuring bootsplash (oblin)
-- drakbug: better wrapping
-- drakconnect (oblin):
- o do not use noipdefault pppd option for pptp connections
- o fix pppoe with sagem ADSL modem
- o write MAC addresses into /etc/iftab
- o pppoe/pptp fixes
-- drakroam: support multiple roaming daemons support (oblin)
-- drakupdate_fstab: fix adding usb medias (oblin, #10399)
-- drakvpn: do not assume drakvpn is already configured if the tunnel
- file is made of comments only (oblin)
-- localedrake: handle turkmen and tatar (pablo)
-- net_monitor:
- o let's be more l10n-friendly
- o fix default connection time (Fabrice FACORAT)
-- XFdrake (pixel):
- o do not use XF86Config-4 anymore
- o handle /etc/X11/xorg.conf
-- typo fixes (#10713, ...)
-
-* Wed Aug 11 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.8mdk
-- bootloader-config: log command on mkinitrd faillure
-- drakbug (olivier):
- o update product list and fix case (bugzilla is case sensitive)
- o fix product, component and version for bugzilla
- o fix bugzilla url
-- drakhelp (daouda):
- o use webclient-kde instead of konqueror
- o add epiphany browser
-- drakroam:
- o initial import of wlandetect version, from Austin Action
-- mousedrake, diskdrake: create /etc/udev/conf.d/xxx.conf as well as
- devfsd rules (pixel)
-- net_monitor:
- o add a horizontal separator in stats to prevent visual disguts
- between supposed non aligned labels
- o fix looking aka vertical alignment of labels (Fabrice FACORAT, #10300)
- o fix resizing (Fabrice FACORAT, #10300)
-- XFdrake: s/XFree/Xorg/ (pixel)
-
-* Mon Aug 9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.7mdk
-- diskdrake: switch from raidtools to mdadm (pixel)
-- drakboot: sort themes, users and WMs lists
-- drakupdate_fstab: do not complain about ips in /etc/fstab (pixel)
-- localedrake:
- o changed default font for gb2312 (Funda Wang)
- o rename the "More" button as "Other Countries" (pixel)
-- net_applet:
- o do not die when gateway canot be guessed (Joe Bolin)
- o fix status toolip
- o allow multiple instances, but only one per user (Joe Bolin)
-
-* Fri Aug 6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.6mdk
-- add a 6px border around scrolled TextViews (Fabrice FACORAT, #10561)
-- drakbackup: fix crash when selecting an entry in pull down menus
-- localedrake:
- o fix configuring IM
- o fix x-unikey support (Larry Nguyen)
-
-* Fri Aug 6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.5mdk
-- drakclock: if ntp is used, get the new time before updating the
- hwclock (Emmanuel Blindauer, #10537)
-- drakconnect (oblin):
- o install kdenetwork-kppp-provider when configuring a modem
- o fix external ISDN modem configuration (Anthill #1033)
- o use ifup/ifdown rather than restarting the network service for
- ADSL & ISDN
-- draksound:
- o add support for ALSA on PPC and SPARC
- o update sound drivers list
- o map dmasound_pmac <=> snd-powermac (Christiaan Welvaart)
-- fix autologin somewhat (pixel)
-- localedrake:
- o add x-unikey support for Vietnamese
- o switch korean to scim-hangul IM by default
-- update ppc support (Christiaan Welvaart, pixel)
-- XFdrake: replaced XFree86 and XFree with Xorg (pixel, #10531)
-
-* Wed Aug 4 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.4mdk
-- don't set /etc/sysconfig/desktop anymore, configure ~/.wmrc,
- ~/.gnome2/gdm and ~/.desktop instead (pixel)
-
-* Tue Aug 3 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.3mdk
-- bootloader-config (pixel):
- o try to keep the order of kernel options
- o don't allow unknown kernel names to mess everything
- o handle win4lin kernels
-- draksec: sanitize GUI:
- o upcase fields values
- o fix spacing issues
-- localedrake:
- o fix current IM setting reading
- o reset IM setting when switching to a new IM
- o support nabi input method too
-- net_applet: automatic launch for KDE, GNOME and IceWM (daouda)
-- misc typo fixes
-- diskdrake: fix LMV resizing (anthill #994) (pixel)
-- service_harddrake: fix nuking x.org config on 2.4.x <-> 2.6.x kernel
- switch (#10487) (pixel)
-
-* Fri Jul 30 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.2mdk
-- drakbackup (stew):
- o fixes Anthill #1009 and #1010 (DVD recording, disk quota)
- o direct-to-tape enahancement
-- drakconnect:
- o do not restart the network service if ethernet modem
- o only restart network for ADSL if we use an ethernet modem
- o fix sagem ADLS modem support (olivier)
-- draksec: sync with msec-0.44
-- draksplash:
- o do not crash when the image format is unknown
- o fix preview refresh
-- localedrake:
- o enable to choose input method in advanced mode
- o support im-ja input method too
-- service_harddrake: do not offer to configure mouse if we've already
- automatically reconfigure it b/c of 2.4.x vs 2.6.x switch
-
-* Thu Jul 29 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.1mdk
-- diskdrake: fix Compaq Smart Array support (pixel)
-- drakauth: misc (vincent)
-- drakbackup, drakTermServ: fix crashes on append_set (stew)
-- drakbug: (daouda)
- o scroll down text while typing
- o many cleanups
- o stable releases are 'Official' and 'Community'
-- explanations: only log succesfull renamings
-- harddrake GUI: do not automatically configure removable media but
- use diskdrake
-- modules: read modutils or module-init-tools config depending on
- which kernel is run (pixel)
-- net_monitor: save/restore options
-
-* Wed Jul 21 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-57mdk
-- drakauth (vincent):
- o restart services if needed
- o describe authentification kinds
- o modify nss_path one to sub config winbind for AD
-- drakconnect: misc bug fixes (olivier)
-- localedrake: fix xmodifiers setting which is broken since
- perl-MDK-Common-1.1.13-1mdk
-- net_monitor:
- o fix GraphicalContext memory leak (olivier)
- o translate connection type (Fabrice Facorat)
- o fix spacing (from Fabrice Facorat, #10300)
-
-* Mon Jul 19 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-56mdk
-- bootloader-config (pixel):
- o save prior boot loader config file (#10072)
- o don't unset prompt when timeout is undefined (and don't care when
- timeout is 0)
- o also add long name when adding add short name
-- net_monitor:
- o add a border spacing of 5 pixel (Fabrice Facorat, #10299)
- o disable the connect button if up interface is found (there is
- currently no reliable way to find the gateway interface)
- (olivier blin)
- o use ifup/ifdown to connect/disconnect (olivier blin)
- o no need to be root to monitor connection (olivier blin)
-- drakconnect (olivier blin):
- o make connection status check work as non root
- o do not write wireless encryption key if empty
- o use blacklist too for adsl connections
-
-* Sat Jul 17 2004 Daouda LO <daouda@mandrakesoft.com> 10-55mdk
-- remove historical consolehelper files (pam.d and console.apps)
-
-* Thu Jul 15 2004 Olivier Blin <blino@mandrake.org> 10-54mdk
-- drakboot: use bootloader and Xconfig instead of detect-resolution
-- net_applet:
- o use drakconnect to configure network
- o use 'ip route show' to find the gateway device when no GATEWAYDEV
- is defined
-- drakauth: add "Active Directory" through winbind (pixel)
-- bootloader-config: fix installation on floppy (#10260) (pixel)
-- drakedm: typo fix (lost -> lose) (rvojta)
-
-* Thu Jul 8 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-53mdk
-- bootloader-config (pixel):
- o nicer "usage: ..."
- o add actions "add-entry" and "remove-entry"
- o add option --label
- o add option --chainload
- o rename --vmlinuz to --image
- o remove unneeded spaces in append=" foo"
- o handles "optional" in LILO
-- drakbackup: fixes for Anthill #927 & #929 (filenames with spaces,
- .backupignore, gui behavior)
-- drakboot: update bootsplash even if framebuffer was disabled (oblin)
-- XFdrake: add 1024x480 (pixel, #5192)
-- redo modules managment (prepare for reading either modprobe.conf or
- modules.conf based on the running kernel version) (pixel)
-- fix build with new glibc
-
-* Mon Jul 5 2004 Pixel <pixel@mandrakesoft.com> 10-53mdk
-- drakxtools-backend needs ldetect-lst (for complete_usb_storage_info())
-
-* Mon Jul 5 2004 Pixel <pixel@mandrakesoft.com> 10-52mdk
-- ensure proper upgrade: explictly tell urpmi that old drakxtools-newt
- conflicts with drakxtools-backend
-- drakauth: more features (vincent guardiola)
-- drakconnect: pptp support (#6515) (olivier blin)
-- localedrake: configure menu-method's language too so that altering
- language is done for KDE menu entries too (instead of just programs'
- messages) (Thierry Vignaud)
-
-* Thu Jul 1 2004 Pixel <pixel@mandrakesoft.com> 10-51mdk
-- create package drakxtools-backend
-- bootloader configuration: misc fixes (pixel)
-- XFdrake: fix typo causing multiple "Keyboard" entries in XF86Config
- (pixel, #10163)
-
-* Thu Jul 1 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-50mdk
-- drakupdate_fstab (oblin): fix moving mount point (#6982, #10175)
-- drakauth: for Active Directory, allow: Kerberos, SSL/TLS, simple and
- anonymous (pixel)
-- net_monitor (oblin):
- o always display a speed label for transmitted graph
- o allow the user to use different scales for received and
- transmitted (#10177)
- o always draw an arrow next to transmitted amount
-
-* Tue Jun 29 2004 Pixel <pixel@mandrakesoft.com> 10-49mdk
-- add bootloader-config (used by bootloader-utils and bootsplash scripts)
-- drakboot (pixel):
- o major backend rewrite b/c of code sharing with new installkernel
- o when adding a new kernel, have a nicer new name for conflicting
- entry
- o when modifying kernel parameters in all entries, skip the
- "failsafe" entry (#10143)
- o when modifying a symlink, ensure we also use the long name for the
- old symlink in the existing entries
-- drakconnect (Olivier Blin):
- o never disable "DHCP host name" entry box, it shouldn't be linked
- with "Assign host name from DHCP address" checkbox (#2759, #9981)
- o unblacklist sis900 since its link beat detection works with latest
- kernels
-- draksound: remove unneeded "above" lines in modules::write_conf
- (Olivier Blin) (#8288)
-- ugtk2 layer: catch missing wizard pixmap, otherwise we end up with
- unshown windows and error messages can't pop up (pixel)
-- don't require mkbootdisk
-
-* Wed Jun 23 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-48mdk
-- drakboot (oblin):
- o ask for bootloader choice when framebuffer isn't configured (#9925)
- o do not update bootsplash in autologin wizard
-- drakclock: be mouse wheel aware (oblin, #9926)
-- drakconnect (olivier blin):
- o blacklists the sis900 driver (#9233) for network hotplugging
- o properly handle ascii WEP keys (#9884)
- o rephrase zeroconf dialog (cybercfo)
-- drakxtv: fix tv driver not loaded on boot (oblin, #9112)
-- localedrake: new default IM for CKJ
- o set up SCIM for chinese
- o set uo SCIM+UIM for japanese
-- mousedrake: load usbhid instead of hid is now named (pixel, svetljo)
-- XFdrake (pixel):
- o better auto monitor config
- o sync with bootsplash's detect-resolution
-
-* Tue Jun 22 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-47mdk
-- add net_applet (daouda)
-- drakconnect: update ADSL ISP database (baud <baud123@tuxfamily.org>):
- o default to pppoa method whenever encapsulation is 6 (PPPoA VCmux),
- o default to pppoe method whenever encapsulation is 1 (PPPoE LLC)
- o add new ISP entries : Belgium ADSL Office, Brasil (4 ISP),
- Bulgaria ISDN/POTS, Greece, Switzerland BlueWin / Swisscom Telecom
- Italia/Office Users, Turboline Austria Telstra,
-- harddrake2: do not display version number in title bar
-- shorewall configuration: accept from fw to loc (florin)
-
-* Mon Jun 21 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-46mdk
-- harddrake service:
- o do not uselessy fork shells
- o faster auto mouse reconfiguration on major kernel switch
- o fix logs of newly added hardware
- o fix mouse autoconfiguration done on every boot instead of on 2.4.x/2.6.x
- switches
- o handle newly added wireless network card (broken since early 2004/02)
- o log error when we cannot run the config tool or when it isn't executable
- o only log about nv <-> nvidia swtich only if we do have to perform it
-- harddrake GUI:
- o display media type for mass storage devices
- o enhanced data for mice and hard disks
- o fix undisplayed fields
- o show disk ID if we cannot guess its vendor string from it
- o show splited vendor and description fields for USB hard disks too
- o really ensure that "identification" section is displayed first
-
-* Fri Jun 18 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-45mdk
-- authentication: more LDAP work (pixel)
-- drakbackup: fix .backupignore issue (stew)
-- drakupdate_fstab: add support for floppies
-- harddrake service:
- o mouse: autoreconfigure it when switching between 2.4.x and 2.6.x kernels
- o network: automatic config with DHCP of new cards
- o removable media: automatically config
- o x11:
- * do not automatically swtich from nv to nvidia driver (b/c the
- nvidia driver is buggy on some machines)
- * automatic configuration of new card
- o only stop the boot progress bar if we've a non automatic tool to run
-- harddrake GUI:
- o show more data on SCSI disks
- o do not display USB disks in both harddisks and unknown sections
- o fix cpu and SCSI hd help
- o show right driver for USB devices (from /proc/bus/usb/devices)
- o enhanced help
- o show detailled data on bus connection
-- interactive layer: display "cancel" button instead of "previous" in
- wizards' first step
-
-* Mon Jun 14 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-44mdk
-- diskdrake: fix hde devfs link (pixel)
-- drakconnect: start to make strings more helpfull
-- drakperm: enable drag 'n drop (only when looking at customized settings)
-- draksec: do not show empty pages in notebook if security level is not set
-- draksplash: make it work again...
-- harddrake2:
- o do not list usb hard disk as unknown (fix doble entries)
- o fix misdetection of nvidia nforce ethernet cards (broken since forcedeth
- replaced nvnet on 2004-01-21 in MDK10's ldetect-lst)
- o ethernet card detection: only rely on driver for matching ethernet cards,
- thus preventing mislisting of other/unwanted devices and enableing to catch
- ldetect/ldetect-lst/detect_devices bugs where some devices are *not* seen by
- drakx and drakconnect.
- o display more data about hard disks (geometry, number of primary/extended
- partitions)
-
-* Wed Jun 9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-43mdk
-- drakauth: add "Active Directory" authentication (WIP) (pixel)
-- drakbackup: (stew)
- o deal with kernel ring buffer that is flooded with msgs for tape
- device detection (#9877)
- o GUI fixes
- o enforce binary ftp transfers
-- drakconnect: (poulpy)
- o switch ONBOOT to on/off for isdn and adsl connections
- o new way to specify how to up connection for pppoe(xDSL) and
- others(ADSL)
- o rename /etc/ppp/peers/adsl as /etc/ppp/peers/ppp0 as we now use
- ifup-ppp for adsl, it will look for ppp0
-- drakservices: add descriptions for NFS and SMB (#9940) (pixel)
-- harddrake service: run it earlier (aka before network service)
-- XFdrake: add resolution 1920x1200 called WUXGA (used by Dell Laptops
- Inspiron 8500, 8600 and Latitude D800) (#6795) (pixel)
-- XFdrake, drakedm: switch to x.org (pixel)
-
-* Tue Jun 1 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-42mdk
-- handle the nfs/smb service disabled (Olivier Blin)
-- drakconnect:
- o handle interface w/o ip addresses
- o make LAN wizard more user friendly: move "manual choice" after
- detected interfaces
- o detect again ethernet interfaces that are down (got broken in 10-38mdk)
-- drakboot:
- o do not write partial GRUB config file (thus garbaging previous config) if an
- error occured
- o fix "two windows appears on canceling after an exception" bug
-
-* Fri May 28 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-41mdk
-- drakconnect:
- o fix protocol switching from manual to DHCP when stepping back in
- wizard
- o read VLAN and IP aliased interfaces config too
-- drakbackup: fix typo in tape restore (Federico Belvisi).
-
-* Fri May 28 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-40mdk
-- drakconnect:
- o blacklist loopback interface in new detection scheme
- o switch from internet service to regular ifcfg files (poulpy) (WIP)
- o fallback on sysfs in order to get driver and card description when
- ethtool is not supported (eg: ipw2100 driver for intel centrino)
-
-* Thu May 27 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-39mdk
-- diskdrake (pixel):
- o allow /home on nfs (#7460)
- o disable package instead of removing nfs-utils or samba-server
- (when "diskdrake --fileshare" disables a export kind) (#9804)
-
-* Thu May 27 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-38mdk
-- detect aliased network interfaces too
-- drakfirewall: handle BitTorrent (robert vojta)
-- keyboardrake (pablo):
- o support more keyboards
- o Nepali uses devanagari script
-- localedrake: handle Latgalian language (pablo)
-- net_monitor: ignore sit0
-- switch Japanese input method to "uim" (pablo)
-
-* Tue May 25 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-37mdk
-- drakbackup: fix dropped .txt files when running mkisofs (stew)
- (Anthill #799)
-- drakconnect (#9669):
- o prevent identification mismatch on ethtool results
- o fix card name lookup when driver does not support GDRVINFO command
- from ETHTOOL ioctl and there's only one card managed by this
- driver
-- switch from deprecated OptionMenu into new ComboBox widget
-
-* Mon May 24 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-36mdk
-- ugtk2:: still provide compat stuff for OptionMenu widget (#9826)
-- drakTermServ: add /etc/modprobe* mount points for client hardware
- config (stew)
-
-* Wed May 19 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-35mdk
-- authentication:
- o fix winbind configuration and do the same for LDAP
- and NIS (vincent guardiola, pixel)
- o install autofs for nis authentication (florin & fcrozat)
-- diskdrake: handle LABEL=foobar in /etc/fstab (pixel)
- (ex2/3 only for now, no xfs)
-- drakclock: do saner check for ntp package (Robert Vojta)
-- drakconnect:
- o fix speedtouch ADSL model (using kernel mode) (poulpy)
- o better LAN vs wireless filtering by using SIOCGIWNAME ioctl)
- o handle ipw2100 wireless driver
- o do not offer to set DOMAINNAME2 since it is never saved nor read
- (#9580)
- o kill "speedtouch and ISDN only work under 2.4 kernel" warnings
- (poulpy)
-- drakfirewall: open more ports for samba
-- harddrake service: do not run XFdrake in automatic mode
-- misc cleanups & bug fixes (pixel)
-- scannerdrake: fix firmware installation (till)
-- XFdrake (pixel):
- o can now configure monitors on heads > 1
- o do not succeed automatic configuration (not auto_install) when
- there is many cards (as requested by Joe Bolin)
- o speed-up monitor choosing dialog when {VendorName} is undef
- o vmware doesn't like 24bpp (#9755)
- o defaults to the greatest depth rather than 24
-- do not prefer devfs names when reading /proc/mounts (which uses
- devfs names) (pixel)
-- ugtk2 layer: transparently replace obsolete OptionMenu widget by the
- new ComboBox widget
-
-* Tue May 4 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-34mdk
-- drakconnect:
- o fix last step of interface destruction wizard
- o wizard: take ISDN protocol into account for people outside Europe
- to use it (poulpy)
-- drakupdate_fstab: fix adding twice an entry in fstab, one with the
- old name, one with the devfs name (pixel)
-- XFdrake: kill XFree86 3.x support (pixel)
-
-* Fri Apr 30 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-33mdk
-- create ~/tmp if needed when running a program
-- device managment: fix sdX <=> scsi devices mapping (especially for
- USB devices) (pixel)
-- drakclock: time is displayed as HH:MM:SS with RTL languages
-- drakconnect (poulpy):
- o manage interface: more gui layout fixes
- o try harder to locate firmware on windows partition (#3793)
- o no need to up ippp0 in net_cnx_up, it's been up'ed at startup
-- harddrake gui: list SATA controllers in their own category (anthill
- #741)
-- harddrake service: log removed/added hw
-- localedrake: use utf8 if any of the languages chosen is utf8, not
- only the main one (pixel)
-
-* Fri Apr 23 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-32mdk
-- diskdrake, XFdrake: make --auto really not interactive
-- drakconnect:
- o wizard: fix ISDN support (poulpy)
- o manage interface: smoother layout
-- drakxtv:
- o fix brown paper bag bug regarding tv cards detection
- o sync card and tuner lists with 2.6.6-rc2
-- harddrake GUI: split USB sontrollers and ports
- o new data structure
-- harddrake service: autoconfigure X11, sound and removable media
-- log more actions regarding modules managment in explanations
-
-* Tue Apr 20 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-31mdk
-- drakbackup: some drives don't return "ATIP info from disk" (stew)
-- drakclock: check /etc/init.d/ntpd instead of /etc/ntp.conf for ntp
- installation (daouda)
-- drakfont: fix font importing (#9423) (dam's)
-- drakconnect (manage interface): fix insensitive IPADDR, NETMASK and
- GATEWAY fields by default are not sensitive by default in DHCP
- (broken by #8498 fix) (poulpy)
-
-* Thu Apr 8 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-30mdk
-- fix inverted translations in french catalog (#8217)
-- fix drakxtools postuninstall script
-- drakbackup (stew):
- o remove config-info (will be in a man page)
- o reuse more code from ugtk2 layer regarding cursors managment
- o combine/rework restore code
-- drakTermServ (stew):
- o do not move existing dhcpd.conf
- o add an include for terminal-server instead
-- drakups: update to new libconf-0.32 API (dam's)
-- harddrake service: log nv<=>nvidia switches
-- localedrake: set default font to use in KDE for devanagari and
- malayalam scripts
-- ugtk2: fix faillure with perl-Gtk+-1.04x (#9411)
-
-* Mon Mar 29 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-29mdk
-- harddrake service: skip nv/nvidia test when there's no nvidia card
-
-* Mon Mar 29 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-28mdk
-- harddrake service: fix disabling nvidia driver (#9300)
-
-* Fri Mar 26 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-27mdk
-- drakconnect:
- o fix some bugs in ISDN configuration
- o warn than speedtouch only works with 2.4.x kernels for now
- o fix "manage interface" that broke speedtouch configuration
- o blacklist b44 for ifplugd
-- drakboot blacklist again Savage gfx cards, they're broken again with
- lilo
-
-* Wed Mar 24 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-26mdk
-- diskdrake: tag removable medias as noauto in fstab file (pixel, #9076)
-- drakboot: add nolapic support option (planel)
-- drakclock (Robert Vojta, #9141):
- o display current timezone
- o sort servers
-- drakclock, drakperm: GUI fixes (Robert Vojta: #9141, #9153)
-- drakconnect:
- o complain louder about supported kernels for ISDN cards
- o enable to delete ADSL and ISDN connections
- o do not complain anymore about kernel when using bewan adsl modems
- since they works now with 2.6.x kernels
- o do write drakconnect config file when there's only one configured
- interface (#8998)
- o fix speedtouch support: use kernel mode on 2.6.x kernels
-- drakgw: fix drakgw removing MII_NOT_SUPPORTED parameter from ifcfg
-- drakTermServ: fix button layout
-- drakxtv:
- o read current configuration (Scott Mazur)
- o fix setting options for bttv instead of saa7134 (#5612)
- o fix saa7134 detection (#5612)
- o fix wiping out /etc/modules.conf (Scott Mazur)
- o default canada-cable to NTSC (Scott Mazur)
- o handle tv cards managed by cx88 and saa7134 (#9112)
- o use right device (#3193)
- o offer to set the user to config (#3193)
- o sync with 2.6.3-4mdk
-- firewall: do not write the REDIRECT squid rules if one has only one
- NIC connected to the net zone (florin)
-- harddrake service: switch between nv and nvidia driver if commercial driver
- isn't installed
-- keyboarddrake: az, tr and tr_f needs XkbOptions 'caps:shift' (pixel)
-- logdrake: fix non first searches (#9115)
-
-* Fri Mar 19 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-25mdk
-- add missing icons for localedrake menu entry (dadou)
-- diskdrake: fix compaq smart array support (pixel, #9029)
-- drakboot: reread current bootsplash config (olivier blin, #8888)
-- drakconnect:
- o always offer to restart adsl connections
- o fix bewan adsl modem support by providing an ad-how
- /etc/ppp/options
- o only warn about the fact we need 2.4.x kernel
- * when we're under 2.6.x
- * for bewan modem (not for other adsl modems) and pci rtc modems
- o only kill pppoa for sagem modem (fix bewan modem shutdown)
-- draksound: install alsa-utils if needed (#6288)
-- include drakups again
-
-* Wed Mar 17 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-24mdk
-- set window icon
-- diskdrake: (pixel)
- o fix "xp does not boot anymore" (#7302, #7959, #8891)
- o add --change-geometry=<device>=[<cylinders>,]<heads>,<sectors>
- option in order to allow forcing the geometry used in the partition
- table. This allows helping poor Windows booting using old int13
- function 2. This should work when Windows has not been resized.
-- drakclock: fix server lookup (#8846)
-- drakconnect:
- o do not pass eth interface and user to adsl-start, they're already
- provided in pppoe.conf (#2004)
- o fix pci modem support
- o fix SmartLink modem managment (#8959)
- o really fix modem symlink (#7967)
- o try harder to get a name (in wizard) and information (in manage
- interface) for cards whose driver do not support ethtool ioctl
- o update wanadoo dns servers ip addresses
- o wizard:
- * bewan support
- * fix adsl stop on pppoa links
- * preselect pppoa for bewan modems
- * for ADSL Bewan, ISDN and PCI modems, warn that only 2.4.x
- kernels are supported
- * only show encapsulation parameter for sagem modem
- o "internet access" window:
- * enable to alter hostname
- * do not offer to alter domain name since this is achievable
- through FQDN
-- drakfont: make subdialogs be transcient for main window when not
- embedded
-- drakedm: fix dm restart
-- draksound (olivier blin, #8501):
- o do not alter oss<->alsa drivers mapping table
- o when current driver doesn't match current sound card, list
- alternatives for both current driver and the default driver
-- drakTermServ: fix misnamed inittab (stew)
-- drakupdate_fstab: choose wether to use supermount is now based on
- variable SUPERMOUNT in /etc/sysconfig/dynamic (pixel)
-- harddrake2:
- o show module for system bridges if it's not unknown (aka not
- managed by kernel core)
- o update icons
-- localedrake: list Filipino, Low-Saxon and Kyrgyz (pablo)
-- logdrake: fix wizard
-- service_harddrake:
- o remove /etc/asound.state *before* restarting sound service
- o add agpgart modules to modprobe.preload if needed
-
-* Mon Mar 15 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-23mdk
-- drakbackup: (stew)
- o install extra packages when using wizard too
- o report error on key transfer in GUI if needed
-- drakboot:
- o list yes/no for autologin in a more intuitive way, that is yes is
- grouped with user and wm pull down menus (robert.vojta@qcm.cz,
- anthill #390)
- o always generate a precise entry using the precise version and
- remove the linux-2.4 or linux-2.6 (but keep the "linux" entry)
- (pixel)
-- drakclock: make the ntpdate after stopping the ntpd (manu@agat.net,
- #8141)
-- drakfont: make "install" button be insensitive when there's no
- selected fonts
-- drakconnect:
- o fix misdetection of some network cards (aka do not try to match a
- physical device when SIOCETHTOOL ioctl is not supported) (#8010)
- o fix missing quotes around wireless encryption key (#8887)
- o wizard:
- * do not list anymore wireless cards in LAN connection, only in
- wireless connections
- * fix unlisted ADSL modems when there's no network card (#8611)
- * handle orinoco_pci and orinoco_plx driven card as wireless ones
- * skip "start on boot" step for LAN (already managed by network
- scripts)
- * write ether conf later on QA request
- o renew "internet access" window:
- * sanitize buttons layout (#8637)
- * sanitize fields layout
- * fix config reading/writing
- * fix connection status (#7800)
- * fix unlisted first dns server
- o manage interface:
- * do not write IPADDR, NETMASK and NETWORK fields in ifcfg-ethX
- when using DHCP (fix writing "no ip"/"no netmask" in config file)
- * default protocol is dhcp (fix fields checking when an interface
- isn't yet configured)
- * fix gateway setting (#6527)
-- drakfirewall, drakgw: add ppp+ and ippp+ at the interfaces list
- (florin) (#8419)
-- localedrake: always define KDM fonts dependending on encoding
- (pablo, #8714)
-- logdrake: fix explanations in mcc that got broken by #8412 speedup
-- printerdrake: install "scanner-gui" instead of "xsane" when it sets
- up an HP multi-function device (till)
-- scannerdrake: install "scanner-gui" instead of "xsane", so that
- scanning GUI actually used can be determined by the system
- environment (till)
-
-* Thu Mar 11 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-22mdk
-- fix imm & ppa managment on kernel 2.6 (pixel)
-- no entry in fstab for zips (now cleanly done by hotplug) (pixel)
-- drakbackup (stew):
- o fix crash on first wizard run (#8654)
- o deal with mixture of formats on restore
- o do not save host passwd when user requests not to (#8700)
- o fix issue with first incremental pass not using base as
- comparison
- o support for plain tar (#8676)
-- drakconnect wizard:
- o start to handle bewan ADSL modems
- o port old ISDN wizard upon new wizard layer
-- drakfirewall, drakgw: network card name rather than just ethX in device list
- (florin and me)
-- drakgw (florin):
- o add some tests for the REDIRECT squid rules
- o fix previous button on first step (anthill #386)
- o fix "sharing already configured" #8669 (florin)
- o fix the proxy REDIRECT shorewall rule,
- o fix the disable, enable functions
- o fix the shorewall interfaces configuration
- o really enable the proxy squid
-- draksplash: make it works again
-- drakTermServ (stew):
- o add gdm user if needed
- o autologin warning
- o copy server X keyboard config to client
- o default kernel version
- o default thin client setup
- o do not destroy "fat" client inittab
- o use std banner
-- drakgw: fix previous button on first step (anthill #387)
-- harddrake2: fix ISDN cards detection
-- keyboardrake: list jp106 keyboard too (pablo)
-- logdrake: searching speedup (#8412)
-- printerdrake (till):
- o let URIs listed by "lpinfo -v" be shown in the dialog for entering
- a URI manually
- o make first dialog be somewhat clearer
-- XFdrake: catch exception (#8726) (pixel)
-
-* Wed Mar 3 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-21mdk
-- drakconnect: add australia in adsl providers db (#5056)
-- support cryptoloop and aes when using encryption on kernel 2.6 (pixel)
-
-* Wed Mar 3 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-20mdk
-- drakbackup: use preferred conf file read/write method (stew)
-- drakconnect: hide dns settings by default when using dhcp
-- drakupdate_fstab (pixel):
- o fix device removal
- o log calls
-- printerdrake: fix HPOJ configuration when manually setting up a
- device (till)
-
-* Tue Mar 2 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-19mdk
-- fix doble ISDN detection (#6535)
-- drakconnect: fix modem symlink (#7967)
-- drakboot --boot is now a wizard
-- printerdrake: fix missing "default settings" option in the printer
- options dialog (till)
-
-* Tue Mar 2 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-18mdk
-- drakboot (pixel):
- o if the default bootloader entry is invalid, choose another one
- o remove "VT8751 [ProSavageDDR P4M266] VGA Controller" (0x5333,
- 0x8d04) from graphical lilo blacklist (#8133)
-- drakconnect:
- o fix pci modem type matching
- o list pump in dhcp clients list (synced with ifup one)
- o preselect first availlable dhcp client (according to ifup priority
- list)
-
-* Tue Mar 2 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-17mdk
-- logdrake mail alert: fix crash due to icon renaming
-
-* Mon Mar 1 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-16mdk
-- adduserdrake: default to "man" icon (pixel)
-- drakconnect manage interface: fix bootproto filling (#8498)
-- harddrake2: update icons
-- printerdrake (till):
- o do not configure the GIMP-Print plug-in on more than 50 users (#6423)
- o fix no "ptal:/..." in manual device URI list (#8483)
-- scannerdrake (till): fix firmware not found by "gt68xx" SANE backend
- (#7242)
-
-* Mon Mar 1 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-15mdk
-- left align labels
-- drakfirewall: remove the masq zone and add policies, rules only if
- there is an interface in loc (florin)
-- draksec:
- o sanitize main explanation text
- o prevent pull-down menus to fill availlable space in packtables
-- printerdrake (till):
- o fix HPOJ config
- o support new HP multi-function devices
- o better Lexmark X125 printer support
-
-* Fri Feb 27 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-14mdk
-- drakautoinst: support two-floppies boot style for replay_install
- disk as well (gc)
-- drakbackup: fix tape backup/restore (#8284) (stew)
-- drakconnect: fix crash on manually choosing modem again
-- printerdrake: better layout for about dialog box (dadou)
-
-* Thu Feb 26 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-13mdk
-- drakconnect wizard:
- o never delete up/down scripts
- o only write internet service if start at boot requested
-- banners: prevent shadow to be darker on theme switches
-
-* Thu Feb 26 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-12mdk
-- drakbackup: use ATAPI:/dev/hdX for both 2.4/2.6 compatibility (stew)
-- drakconnect wizard:
- o do not ask for apply settings since most just have been written
- o only write ether config for lan...
- o install needed packages for pppoa, pppoe, pptp
-- drakTermServ (stew):
- o really filter symlinked kernels. nohup the dm restart
- o don't let any kernel symlinks be visible for making NBIs
-- harddrake-ui package: requires sane-backends so that scanner
- detection works smoothly (#8305)
-- localedrake: use xim by default for CJK languages for which we don't
- ship good enough native gtk2 input methods (pablo)
-
-* Wed Feb 25 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-11mdk
-- harddrake service:
- o look at sound cards changes on bootstrapping
- o when sound card is added/removed, delete current sound levels so
- that sound service reset it to sg sane
-
-* Wed Feb 25 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-10mdk
-- drakbackup: rework CD recording for ATA device setup (stew)
-- drakconnect manage interface (poulpy):
- o modem configuration has been completed
- o write /root/.kde/share/config/kppprc for any local change
-
-* Tue Feb 24 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-9mdk
-- drakconnect: alter both /etc/analog/adiusbadsl.conf and
- /etc/eagle-usb/eagle-usb.conf when configuring sagemXXX
-
-* Tue Feb 24 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-8mdk
-- drakconnect wizard:
- o ethernet: fix module lookup for pcmcia cards
- o adsl ISP db (Benoit Audouard):
- * set default protocol to pppoa for various ISPs
- * update 9telecom entry
- * add encapsulation method for "tiscali 512k.fr"
- * fix wrongly inverted encapsulation methods for "Free" isp cnx
- offers
-- drakTermServ (stew):
- o mknbi-set always wants a kernel version now
- o deal with conflicts with msec > 3 and exporting / (use
- no_root_squash).
- o always pass a kernel to mkinitrd-net (#8216)
- o add --restart option for terminal-server.
-- printerdrake, scannerdrake: misc gui fixes (till)
-- printerdrake (till):
- o give clear warning/error messages if a package installation fails
- o let printer model in first-time dialog also be shown if there is
- no description field in the device ID of the printer
-- scannerdrake: ask user before installing packages (till)
-
-* Mon Feb 23 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-7mdk
-- drakconnect
- o add wizard:
- * always write up/down scripts
- * only write initscript when starting at boot was choosen
- * write ethX aliases and ifup/ifdown scripts when configuring a LAN
- connection
- o remove wizard:
- * when no network configuration is configured, just report it
- * only list configured interfaces when offering to delete them
- * keep ethX aliases b/c in order to prevent ethX be renumbered on
- next boot
- * down the network interface when deleting it
-
-* Mon Feb 23 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-6mdk
-- drakconnect: fix sagem8xx && speedtouch adsl modem scripts
-
-* Mon Feb 23 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-5mdk
-- drakconnect: write vci and vpi parameters in decimal base when
- configuring speedtouch
-
-* Mon Feb 23 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-4mdk
-- drakbackup (stew):
- o verify user has selected a cron interval and media (#8138)
- o tweak wizard setup
-- drakconnect:
- o misc santizing in manual module loading
- o adsl provider db: fix vci number for Belgium and France (poulpy)
- o wizard:
- * modem:
- + enable one to manually choose the serial port to use while
- configuring modem
- + really default to dynamic dns, gateway and ip (really fix #7705)
- + do not overwrite current kppp settings with provider db ones
- but on provider switch
- * adsl: prevent having to choose between '' and 'adsl' connections
- * ethernet: enable one to manually load a driver like expert mode
- in old pre-10.0 wizard
- o manage interface:
- * modem:
- + read kppp authentication method
- + handle new PAP/CHAP method
- * ethernet:
- + handle and translate BOOTPROTO
- + do not complain about gateway format when it's not set
- * fix untranslated strings
-
-* Fri Feb 20 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-3mdk
-- drakconnect: fix empty vci/vpi paremeters when speetouch firmware
- wasn't provided
-- logdrake: fix title when run from mcc (#8111)
-
-* Fri Feb 20 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-2mdk
-- drakboot/diskdrake updates regarding partition renumbering (pixel)
-- drakconnect:
- o do not overwrite provider vpi/vci settings (poulpy)
- o detect more sagem 8xx modems
- o enable to refuse network restarting
- o add "Free non degroupe 1024/256" in adsl provider db
-- drakperm: fix "current" checkbox vs "group" and "user" pull-down
- menus
-- localedrake: better uim support (pablo)
-- modules configuration: fix some agpgart aliases issues regarding
- 2.4.x/2.6.x kernels (pixel)
-
-* Fri Feb 20 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-1mdk
-- drakconnect: fix writing modules aliases (fix broken speedtouch)
-- drakbackup: use Gnome icon order (stew)
-
-* Thu Feb 19 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.21mdk
-- drakboot: fix theme displaying under console (Olivier Blin)
-- drakconnect: since no PCMCIA cards support link status notification,
- ifplugd should be disabled for all pcmcia cards by default (#8031)
-- XFdrake: kill spurious icons (pixel)
-- fix some wrapping (pixel)
-- do not use global scrolled window but many local scrolled windows
- instead (pixel)
-- fix uim-xim input method (pablo)
-
-* Thu Feb 19 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.20mdk
-- fix broken "advanced" and "help" buttons (pixel)
-- switch japanese from kinput2 to uim input method
-- fix file dialog when embedded (#7984) (pixel)
-- drakbackup (stew):
- o fix issue with multisession CDs (Anthill #349)
- o encourage user to finish configuring media before leaving wizard.
-- drakvpn (florin):
- o add plenty of help files, add anonymous support for sainfo
- o add quite much help explanations
- o add anonymous support in sainfo
-- harddrake2: sanitize buttons layout when embedded
-
-* Wed Feb 18 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.19mdk
-- diskdrake: type 0x17 can be ntfs
-- drakbackup: rework backupignore behavior (Anthill #306) (stew)
-- drakconnect
- o wizard:
- * do not use ifplugd on wireless connections by default
- * fix "network needs to be restarted" step
- * do not overwrite current wireless parameters with default
- values
- * tag some wireless options as advanced ones
- o manage interface:
- * update adsl (poulpy)
- * sanitize buttons layout
-
-* Tue Feb 17 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.18mdk
-- new default icon for wizards banner
-- drakconnect
- o wizard:
- * handle atmel_cs wireless driver
- * sort lan protocols
- o manage interface: update (poulpy)
-- drakvpn: one can now start from scratch with ipsec.conf (florin)
-- enforce gnome button order everywhere
-- harddrake: really fix doble blanked ISDN detection
-- mousedrake (pixel):
- o detection defaults on automatic choices
- o fix mouse detection on kernel 2.4
-- printerdrake: fix problem that not used parallel ports were detected
- as printers (till)
-
-* Tue Feb 17 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.17mdk
-- drakboot: remove bad entries after reading existing conf file (pixel)
-- drakclock: let's look better when embedded
-- drakconnect:
- o wizard:
- * explain about DNS (#7908)
- * fix automatically found "...2" dns when network is done
- o manage interface: check gateway entry (poulpy)
-- drakfont: new banner style
-- drakvpn:
- o fix drakvpn logic when translated
- o fix steps skiped b/c of translations
- o start to sanitize gui (more user friendly labels, pull-down menus, ...)
- o fix the ";" mark in the "Security Policies" section (florin)
-- interactive layer: don't have a scroll inside a scroll which causes
- display pbs (#7433) (pixel)
-- printerdrake (till):
- o recognize parallel printers also when they miss the
- "CLASS:PRINTER;" in their device ID string (ex: Brother HL-720,
- bug #7753)
- o warn when there's no network access
- o remove printer list button when there's no network also in expert
- mode.
-
-* Sun Feb 15 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.16mdk
-- fix harddrake crash (#7897)
-- printerdrake (till):
- o handle weird printer ID strings, as the one of the Brother HL-720
- with empty manufacturer and description fields (#7753).
- o recognize also "SN:" as serial number field in printer ID string
- (HP PhotoSmart 7760, bug #6534).
- o load the "usblp" module instead of the "printer" one on kernel
- 2.6.x
-
-* Sat Feb 14 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.15mdk
-- drakbackup: (stew)
- o FTP restore failure feedback
- o allow multiple catalog/file restore selection
-- drakconnect:
- o fix automatically found "...2" dns server
- o fix crash on canceling "already configured net device"
- configuration (#7679)
- o by default do not start connection at boot for modems (#7705)
- o prevent displaying dummy empty fields in text mode (#7593)
-- harddrake:
- o fix ISDN detection (#6535)
- o prevent detecting twice the same devices (#4906)
- o workaround sane-find-scanner detecting too much usb scanners
-- center popup windows (pixel)
-- don't have a wait_message above another empty wait_message when
- probing hardware (pixel)
-- add support for embedding rpmdrake
-
-* Fri Feb 13 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.14mdk
-- drakboot: better grub support, esp. when /boot is a separate
- partition (pixel)
-- diskdrake: reconfigure boot loader on partition renumbering
-- wizards: add relief around trees and lists
-
-* Fri Feb 13 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.13mdk
-- all tools: new banner style
-- add drakvpn (florin)
-- drakbackup: fix crash on file search, failure to report ftp error
- (stew)
-- drakconnect:
- o wizard:
- * fix wireless network interfaces detection
- * ask isp for ip and gateway by default (#7705)
- o manage interface: (poulpy)
- * fix adsl/eth confusion
- * fix apply button
-- harddrake service: only probe for local printers
-- harddrake2:
- o remove statusbar on interface team request
- o do not force black color for fields values which badly conflict
- with inverted accessibility themes
-- fix module dependancies problem because of 2.4/2.6 mappings, better
- support 2.4 and 2.6 alltogether by keeping 2.4 names in modules.conf
- (gc)
-- XFdrake: handle packages not found (#7786)
-
-* Thu Feb 12 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.12mdk
-- drakconnect:
- o preselect right protocol for ethernet though connections
- o only offer to connect now for ppp connections
- o fix module retrieving when configuring an adsl connection over
- ethernet
-- authentication: (pixel)
- o install ldap packages *before* doing ldapsearch
- o pam*.so modules do not have /lib/security/ prefix anymore
-
-* Thu Feb 12 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.11mdk
-- drakconnect wizard:
- o fix choosing dhcp as adsl protocol
- o do not allow to step forward if no network card was found
- (workaround #7672)
-- keyboardrake: support 2.6.x kernel (pixel)
-- drakbackup: misc changes (stew)
-- draksec: fix unable to save checks when config file is empty
-- harddrake: support more webcams
-
-* Tue Feb 10 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.10mdk
-- fix poped dialogs when embedded (#7246) (pixel)
-- drakbackup/drakTermServ: misc updates (stew)
-
-* Mon Feb 9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.9mdk
-- drakconnect wizard:
- o fix unability to select gateway (#7585)
- o detect athX interfaces too (#7531)
-- drakfont: fix crash on option toggling (#7248)
-
-* Mon Feb 9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.8mdk
-- drakconnect wizard:
- o blacklist forcedeth for network hotplug (#7389)
- o fix ethernet devices description matching
- o fix unwritten ethernet interface config
- o fix empty list in "multiple internet_connexions" step
-- fix vendor/description for some Lite-On drives
-- ugtk2 layer: fix some layout (spurious space at window bottom)
- (pixel)
-
-* Sun Feb 8 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.7mdk
-- drakx11: make XFdrake startup be instantenous for non nv|ati cards
-- drakTermServ: add PXE image support (Venantius Kumar)
-
-* Fri Feb 6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.6mdk
-- move drakbug, drakclock, drakperm, draksec, drakTermServ,
- net_monitor in drakxtools since they require ugtk2 (#7413)
-- workaround gtk+ bug #133489 (behaviour on click when in scrolled
- window) (pixel)
-- drakboot: do not try anymore to set global video mode and compat
- option
-- drakfirewall: handle ip ranges (#7172) (pixel)
-- draksound: advertize alsaconf too since sndconfig failled for cards
- only managed by ALSA (#7456)
-- logdrake: do not fail when disabling twice the alert mail cron
-- mousedrake: allow changing protocol in standalone (pixel)
-
-* Fri Feb 6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.5mdk
-- fix embedded apps
-
-* Fri Feb 6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.4mdk
-- print --help on stdout rather than stderr (gc according to gnu std)
-- diskdrake: (pixel)
- o fix lvm support when devfs is not mounted
- o fix lvm extent sizing (fix illegal division by 0)
- o fix getting the output of pvs vgs lvs commands
- o fix get_lvs() (and use lvs instead of vgdisplay)
- o don't display start sector and cylinders used for LVs
- o display "Number of logical extents" of LVs
-- drakbackup: provide more detailed info on files backed
- up/ignored. (Anthill #306) (stew)
-- drakboot: write fstab for /tmp using tmpfs when "clean /tmp" is
- chosen (pixel)
-- drakboot, drakconnect: fix some layouts
-- drakconnect wizard:
- o fix pcmcia card config (#7401, #7431)
- o fix wireless settings (#7432, faillure to set parameters)
- o split wireless step into two steps since there way too much
- options
-- draktermserv: fix user list in mdkkdm (stew)
-- harddrake: fix module parameters with kernel-2.6.x
-- keyboardrake, localedrake: fix some locales (pablo)
-- mousedrake: use protocol "ExplorerPS/2" instead of "auto" for kernel
- 2.6 (pixel)
-- XFdrake: (pixel)
- o do not test X config under vmware (#5346)
- o allow 24bpp for DRI (since all drivers now support it)
-
-* Mon Feb 2 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.3mdk
-- drakconnect wizard:
- o support more wireless cards
- o split out "wireless connection" configuration out of "lan
- connections" path
-- logdrake: (arnaud)
- o make cron script be able to use either local smtp server or a
- remote one
- o add "remove cron entry" on arnaud request
-
-* Mon Feb 2 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.2mdk
-- draconnect: preselect pppoa for speetouch again
-
-* Mon Feb 2 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.1mdk
-- harddrake: fix adsl modem detection
-- draksound: handle new aureal drivers
-- do not user ide-scsi emulation for ide ZIPs (pixel)
-- do no ide-scsi emulation for cd burners with kernel-2.6.x (pixel)
-
-* Mon Feb 2 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-28mdk
-- drakconnect:
- o enable to set hostname even when using DHCP (#7230)
- o handle not loaded drivers (#7273)
-
-* Fri Jan 30 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-27mdk
-- drakconnect:
- o wizard:
- * fix configuring unconfigured eth interfaces
- * ignore spurious .directory entries when loading kppp provider db
- * do not offer to select dhcp client for static interfaces
- o manage: only show gateway for eth devices (poulpy)
-- diskdrake (pixel):
- o fix overflows at 4GB when adding partitions
- o tell kernel to remove the extended partition
- o replace iocharset= with nls= for ntfs in /etc/fstab
-
-* Thu Jan 29 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-26mdk
-- drakconnect: use somewhat nicer interfaces name (eg: "eth0: 3com
- 905") in manage interface (poulpy)
-- drakTermServ: configure clients with defined IPs to set hostname so
- gnome works (stew)
-- fix accentued characters with fr and ru locales (pablo)
-
-* Thu Jan 29 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-25mdk
-- drakconnect:
- o wizard:
- * fix ethernet network card list
- * fix interface config file writing
- * fix DHCP client installation
- * fix static/dhcp step branching
- o manage interface: (poulpy)
- * fix modem login fetching
- * use somewhat nicer interfaces name (eg: ethernet0 rather than
- eth0)
- * fix adsl loading and saving
-- draksec:
- o add help for newly introduced MAIL_EMPTY_CONTENT item
- o notify that shell timeout is in seconds
- o fix parsing of default values for multi argument msec functions
-- net_monitor: do not force switch to last page on network interface
- reload
-
-* Wed Jan 28 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-23mdk
-- drakbackup: (stew)
- o another cron issue reported on Anthill
- o fix broken sys, other restore
-- drakconnect:
- o new drakconnect wizard:
- * remaining issues: isdn and zeroconf config, bewan modem, isapnp
- cards, X11 behavior on name change
- * provider database for modem and adsl connections
- * renewed steps
- * show device name rather than ethX
- * modem:
- + handle CHAP/PAP
- + enable to use dynamic ip/dns/gateway
- * adsl:
- + update for eagle package replacing adiusb
- + detect eci modems and explain why we cannot handle them
- o manage part: update (poulpy)
-- draksound: fix unwriten sound aliases when configuring not yet
- configured cards (#6988)
-- printerdrake: kill stupid userdrake dependancy (gc)
-- ugtk2 / interactive layers:
- o make trees and lists take all availlable space
- o pack/align checkboxes to left
- o rework window sizing: size all windows and add a scrollbar for the
- whole window if needed (not just around advanced settings) (pixel)
-- misc fixes for 2.6.x kernels (gc, pixel & planel)
-
-* Tue Jan 20 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-22mdk
-- drakboot: add a warning telling to run lilo after modifying
- lilo.conf (#6924)
-- drakconnect: enhanced "manage" part (poulpy)
-- drakfirewall: add icmp support and "Echo request (ping)" choice
- (pixel)
-- drakgw: transparent proxy support (florin)
-- more kernel 2.6.x support (pixel)
-- fix subdialogs when embedded (#6899)
-
-* Thu Jan 15 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-21mdk
-- prevent spurious top windows to appears when embedded in mcc
-
-* Thu Jan 15 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-20mdk
-- diskdrake:
- o more lvm2 support (pixel / Luca Berra)
- o update partition reread on kernel side and rebooting if needed (pixel)
-- drakboot:
- o boot loader config: do not complain on canceling
- o graphical boot theme config:
- * handle grub too (bootsplash being independant of boot loader)
- * fix layout when embedded
-- drakconnect: update manage interfaces (poulpy)
-- drakTermServ: first time wizard (stew)
-
-* Wed Jan 14 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-19mdk
-- diskdrake: updated lvm2 support (pixel)
-- drakboot: boot theme configuration is back (warly)
-- drakboot, drakclock, drakconnect, drakfloppy, drakfont, drakperm,
- draksec: sanitize buttons bar
-- drakedm: fix dm list
-- printerdrake: sort printer models list
-
-* Mon Jan 12 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-18mdk
-- drakedm: when offering to restart dm, offer yes/no as choice rather
- than ok/cancel (#6810)
-- drakdisk: sanitize buttons when working on mount points (smb,
- webdav, ...)
-- drakfloppy: handle both kernel 2.4.x and 2.6.x (before size field
- was not properly when switching between threes b/c we looked for
- module.ko instead of module.o.gz and the like)
-- drakfont: renew GUI through subdialogs
-- localedrake: update languages list (pablo)
-- printerdrake: do not push anymore help menu at right
-
-* Mon Jan 12 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-17mdk
-- drakfirewall: allow a range of ports (anthill bug #267) (pixel)
-- drakfont:
- o fix unstalling fonts
- o sanitize application options, about, font import and font removeal
- layouts
-- fix behavior when embedded in interactive layer:
- o prevent subwindows being too small
- o prevent subwindows breaking when canceled
-- run_program layer: don't print refs in log when output is redirected
- (blino)
-- wizards layer: only complain if a problem actually happened
-- drakconnect:
- o first snapshot of new manage wizard (poulpy)
- o "delete network interface" wizard:
- * show a finish button on last step
- * exit once delete interface wizard has ended instead of then
- running the std add wizard...
- * list ppp interfaces too
-
-* Fri Jan 9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-16mdk
-- support newer gtk2 bindings
-- fix drakboot --boot embedding
-- fix logdrake wizard when embedded
-
-* Fri Jan 9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-15mdk
-- alias scannerdrake => drakscanner
-- drakauth: integrate chkauth (which is now deprecated) (pixel)
-- drakbackup: (stew)
- o DVD+RW support,
- o fix bogus cron message
-- drakboot:
- o split it into bootloader and autologin configuration
- o drop no more handled keytable line in grub config file (pixel)
- o simplify lilo boot message. Not mentioning the timeout parameter
- (#5429) (pixel)
- o remove /boot/grub/messages and don't use the i18n command which
- are obsolete since grub doesn't handle it anymore (pixel)
-- drakconnect: fix sagem800 configuration (poulpy)
-- drakdisk: basic lvm2 support (pixel)
-- drakfloppy must not be in drakxtools-newt, must now require mkbootdisk
- (which is not installed by default anymore)
-- drakperm: do not discard 0 when perms are 0xx like
-- drakTermServ: support new etherboot floppy image syntax and file
- locations (stew)
-- drakxservices: fix descriptions (#1704) (pixel)
-- enable other packages to override libDrakx translations with those
- from their own domains
-- handle /etc/modprobe.preload
-- harddrake: detect megaraid controllers as scsi ones
-- harddrake service:
- o for removable devices, we've to remove/add them one by one, so
- when several devices of the same class are removed/added, we ask
- if we should handle them several time.
- o let ask confirmation once per class instead (olivier blin, #6649)
- o do no ask several times the kernel to switch into verbose mode
- (olivier blin)
- o really display which devices were removed
-- misc cleanups
-- tool layout:
- o add a separator below buttons
- o really pack the two button sets at edges
- o try to have a better layout when embedded: let's have only one
- scrollbar that scroll the whole window
-
-* Tue Dec 30 2003 Guillaume Cottenceau <gc@mandrakesoft.com> 9.3-14mdk
-- ugtk2.pm: fix ask_dir dialog (#6152)
-
-* Mon Dec 22 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-13mdk
-- do not show useless "ignore" button when requesting root password
- through kdesu
-- drakperm: keep changes when switching view moed
-- drakclock:
- o prevent one to open zillions of sub dialogs
- o reuse std dialogs
- o remove stock icons
-- fix buttons layouts and text wrapping in in drakboot, drakfloppy and
- drakperm
-- logdrake's mail alert wizard:
- o properly handle faillure
- o accept local user names as well as emails
-- printerdrake, harddrake2: push help menu at right
-- scannerdrake: (till)
- o add upload firmware feature
- o configure non-root access to parallel port scanners automatically.
-
-* Tue Dec 9 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-12mdk
-- net_monitor:
- o properly handle multiple interfaces (each one having its own pixmap)
- o make it fit when embedded
- o kill icons on button
- o kill profile managment (duplicated features already availlable
- within mcc)
-- drakconnect:
- o split in multiples pieces
- o move profile support into mcc
- o fix writing spurious "WIRELESS_NWID=HASH(0x8e93758)" in ifcfg-<intf>
- o add "delete an interface" wizard
-- draksound: handle new snd-bt87x driver
-
-* Fri Nov 28 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-11mdk
-- improve buttons layout in interactive written tools
-- drakconnect:
- o fix sagem configuration
- o do not silently ignore internal errors
-- drakgw:
- o make --testing somewhat more useful
- o log more explanations
- o really support embedding
-- wizards: do not show up anymore banners when embeeded
-
-* Tue Nov 25 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-10mdk
-- detect serial MGE ups
-- drakconnect:
- o fix #5664: list ppp0 for modem and adsl connections too and ippp0
- too for isdn ones
- o fix #6184: read back "Connection Name" and "Domain Name" fields
- when configuring modem
- o fix adsl configuration steps that were hidden
- o configure all isdn cards, not only the first one
- o fix "kid exited -1" warnings
- o handle zaurus connected through USB cables resulting in usbnet
- driver creating usbX interfaces
-- mousedrake: default to "PS/2|Automatic" for ps/2 mice (automagically
- use IMPS/2 when needed)
-- XFdrake: misc fixes
-
-* Wed Nov 19 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-9mdk
-- resync serial_probe with kudzu
-- fix some untranslated strings
-
-* Mon Nov 17 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-8mdk
-- rebuild for reupload
-
-* Sat Nov 15 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-7mdk
-- fix links
-
-* Fri Nov 14 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-6mdk
-- drakconnect: fix speedtouch start/stop scripts when firmware is
- already there or when firmware installation is canceled
-- harddrake2: do not show module if unknow for system bridges since
- it's normal
-- harddrake service: remove net aliases if needed
-- move clock.pl from mcc into drakxtools package
-- provide drakclock, drakdisk, drakhardware, drakkeyboard, draklocale,
- draklog, drakmouse, draknet_monitor, drakprinter, drakx11 new names
-- XFdrake: choose a not-to-bad default when X auto config fails in
- auto install
-
-* Sat Nov 8 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-5mdk
-- drakconnect:
- o fix lan always marked as detected even when no detection was performed or
- when there's no ethernet devices
- o list acx100_pci as a wireless network cards driver so that one can
- set wireless parameters for it (#6312)
-- harddrake2:
- o do not display "unknown module" in red for modems known to not
- need any module (#3047)
- o enumerate cpus from 1 instead of 0 (#4704)
- o typo fix #6134: (JAZ drives are nothing to do with jazz music)
-
-* Fri Nov 7 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-4mdk
-- drakconnect:
- o mcc view: fix network interfaces list update (really remove from
- the Gtk+ list lost interfaces)
- o prevent droping wireless parameters for modules not listed in
- wireless modules list
- o more usb wireless detection fix
-
-* Thu Nov 6 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-3mdk
-- drakconnect:
- o fix wireless cards detection (#3690, #4181, #5143, #5814, ...)
- o always list sagem_dhcp in list, showing it only in expert mode is
- confusing
-- drakconnect/localedrake: fix a few unstranslated strings
-
-* Wed Nov 5 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-2mdk
-- drakbackup: enable bz2 compression option (stew)
-- drakconnect: detect again unconfigured network interfaces
-
-* Tue Nov 4 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-1mdk
-- overall misc cleanups
-- diskdrake: check both nfs servers version 2 and version 3, and
- remove duplicates (bug #6055) (pixel)
-- drakconnect:
- o fix going back in some places (isdn, ...)
- o fix #6159: fix detection when a local name server is faking the
- connection because of its cache by checking at least a packet is
- ack-ed
- o translate a few strings (part of #5670)
- o handle more than 4 ethernet cards
-- drakconnect, drakfirewall, drakgw: show up a combo box with detected
- network interfaces (but still let the user manually type it sg like
- ppp0 if needed) instead of letting the user guessing the network
- interface
-- drakfont: support getting fonts from samba (Salane KIng)
-- harddrake:
- o show isdn & adsl adapters too (adsl adapters were previously
- classed as modems)
- o use drakconnect to configure modems
-- drakfirewall: translate services names
-- "mail alert" wizard from logdrake:
- o save options into /etc/sysconfig/mail_alert instead of hardcoding
- them in the cron task and restore them when configuring it again
- o ensure services are always listed in the same order
- o send the mail only if there's really sg to warn about (aka do not
- sent empty mails)
- o generate perl_checker compliant cron tasks
-- translations: updates, breakages
-
-* Tue Nov 4 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-19mdk
-- drakboot: disable lun detections for ide burners
-- drakconnect:
- o fix empty fields in expert mode
- o fix anthill bug #50: ensure /etc/ppp/pap-secrets is not world
- readable since it contains password/user mapping for dialup
-- net_monitor: handle multiple network interfaces
-
-* Mon Oct 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-18mdk
-- drakconnect:
- o do not blacklist anymore bcm4400 for network hotplugging
- o support ISDN usb adapters
-- drakperm:
- o force user|group|other rights order in edit dialog
- o one was able to alter system rules in memory wheareas this is not
- supported since they're enforced by msec.
- disable "ok" button for system rules to prevent confusion.
-- harddrake service: workaround anthill bug #18 (do not overwrite sound
- aliases when no hardware change occured)
-- misc amd64 fixes (gwenole)
-- net_monitor:
- o fix connection status detection
- o fix profile managment switch
-
-* Thu Oct 16 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-17mdk
-- drakbackup: all users overrides individual selection in wizard
- (#5916) (stew)
-- drakconnect:
- o fix #425, #1881: wireless adapters settings were lost when
- altering network configuration when not from wizard mode
- o when steping back in wizard, do not overwrite first card
- parameters with last one's (#3276)
- o fix expert mode (lost checkboxes states when "expert mode" option
- is checked)
- o blacklist bcm4400 for network hotplugging
-- drakfont:
- o fix ttf conversion (#5088)
- o log more explanations
-- draksec: fix unsaved security administrator setting (#6103)
-- misc chinese fixes (arnaud, pablo)
-- printerdrake: fix lpd call (pablo)
-- translations updates (pablo)
-- misc amd64 fixes (gwenole)
-
-* Fri Sep 19 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-16mdk
-- drakconnect: fix #5825 (hostname set as ARRAY(0x...))
-
-* Thu Sep 18 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-15mdk
-- drakboot: (pixel)
- o fix switching from grub to lilo
- o fix drakboot crashing once bootloader has been altered in text
- mode
-- printerdrake: further fix cups configuration (till)
-- update translations
-
-* Wed Sep 17 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-14mdk
-- printerdrake: fix cups configuration regarding commented out rules
-
-* Wed Sep 17 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-13mdk
-- diskdrake: (pixel)
- o fix writting wrong types in fstab
- o fix handling of mount points with underscoresb (#5728)
- o do not check current partition for already used mount point
-- drakauth : fix NIS managment (#5668) (pixel)
-- drakhelp: load online drakbug help (daouda)
-- draksound: (#5403)
- o make sure to use OptionMenu instead of Combo boxes
- o move help into a tooltip
-- upate translations
-
-* Tue Sep 16 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-12mdk
-- diskdrake: (pixel)
- o fix growing ext2/ext3 partitions
- o handle beos partitions with filesystem befs (#5523)
-- drakbackup:
- o use hd as default daemon media (stew)
- o fix translation issues (Arpad Biro)
- o fix user cron misbehavior (Keld Jørn Simonsen)
-- drakTermServ:
- o fix translation issues (Arpad Biro)
- o fix help text format (stew)
-- drakboot: when "Back" is pressed, restore the list of entries in
- bootloader (#5680) (pixel)
-- drakbug: add support for bug submission about stable releases into
- anthill (stew)
-- drakconnect: (poulpy)
- o fix adsl support regarding ppoe.conf (#5674)
- o fix speedtouch (#5056)
-- draksound:
- o do not overwrite current driver if it's a viable driver for the
- current sound card (#5488)
- o show the current driver too (being preselected) so that users do
- not get confused
-- drakupdate_fstab: fix supermount handling (pixel)
-- fix hidden or cutted buttons (#1919, #2364, #2705, #3667, ...)
-- fix expert mode resulting in advanced setting being displayed by
- default but label still being "advanced" instead of "basic" (#4353)
-- harddrake service: switch to verbose mode when using bootsplash
- (warly)
-- localedrake: fix chinese input (#4408)
-- printerdrake: (till)
- o fix LIDIL devices management
- o really handle PSC 1xxx and OfficeJet 4xxx
- o added support for user-mode-only HPOJ devices (HP PSC 1xxx and
- OfficeJet 4xxx) (#5641)
-- standalone tools: speedup startup by invoking "rpm -qa" only once (fpons)
-- XFdrake:
- o use 24bit for fglrx in automatic mode (fpons)
- o prevent lost Xauth access (pixel)
- o fix logout from gnome (pixel)
- o fix not translated test page (pixel)
-
-* Thu Sep 11 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-11mdk
-- drakboot: misc fixes (pixel, fpons)
-- drakconnect:
- o do not set hostname if there's a dynamic interface
- o fix firmware loading (poulpy)
- o fix profiles with spaces in name (#5586)
-- drakfont: fix faillure to install fonts (#5571)
-- drakfirewall: make it work with dialup connexion (#4424) (florin)
-- drakgw: fix canceling info steps (florin)
-- harddrake2:
- o fix freeze while configuring modules (infamous #4136)
- o warn about no module parameters instead of not showing the dialog
-- localedrake: configure kdmrc too (pixel)
-- logdrake: always display the log domain names in the same order
-- printerdrake: help making printerdrake icon bar be shorter (#5282)
-- update wizard banners (davod beidebs)
-- XFdrake: handle ati drivers (nplanel, fpons)
-
-* Tue Sep 9 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-10mdk
-- disdrake: fix userdrake not runnable (#5447) (pixel)
-- drakboot:
- o fix too small kernels window width (#5040)
- o fix too big main window
-- drakconnect:
- o when no profile is set, use default one (poulpy)
- o add support for sagem dhcp (francois)
-- drakperm: do not complain about saving on view change
-- drakxtv: install xawtv if needed (#5130)
-- logdrake: fix infinite entries (#5448)
-- printerdrake: fix options saving (#5423) (till)
-
-* Mon Sep 8 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-9mdk
-- drakfont: fix not being able to select directories (#4964)
-- drakconnect:
- o fix profiles managment (poulpy & tv)
- o fix firmware loading (#5307, poulpy)
-- fix net_monitor not working as root
-- printerdrake:
- o use new help scheme (daouda)
- o reread database when switching between normal and expert mode
- (till)
-- scannerdrake: complain if saned could not be installed
-- XFdrake: use OptionMenu's rather than Combo's (more consistent gui
- and better behavior when embedded)
-
-* Sun Sep 7 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-8mdk
-- localedrake: configuration fixes (gc)
-- drakgw: fix #2120 & #2405 (florin)
-- drakconnect: (poulpy)
- o workaround messed up ppp0 configration
- o fix profiles
-
-* Thu Sep 4 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-7mdk
-- diskdrake: fix #5204 (pixel)
-- drakbackup: fix untranslatable strings, ... (stew)
-- drakconnect:
- o fix #5242: loop on winmodem connection if no windomem but winmodem
- is selected
- o offer to select modem device
-- fix buildrequires for 64bits ports
-- fix lsnetdrake on AMD64 (gwenole)
-
-* Sun Aug 31 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-6mdk
- - drakboot: default parameters are those of the default target (pixel)
- - drakedm: in non expert mode, only display the list of *installed* display
- managers
- - drakfloppy, drakconnect: fix more dialogs height
- - fix requires
-
-* Thu Aug 28 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-5mdk
-- drakhelp: add support for contextual help (daouda)
-- explanations are back (pixel)
-- fix autologin for xdm (pixel)
-- drakconnect:
- o fix dialogs height
- o fix #4372 (poulpy)
- o profiles are back
-- printerdrake: new GUI (till)
-
-* Wed Aug 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-4mdk
-- drakconnect:
- o non wizard gui
- * fix hostname setting
- * set hostname at the same time we apply dns changes (on apply
- button press)
- o both wizard and non wizard modes: (poulpy)
- * fix #4363
- * fix speedtouch firmware file name
-- drakxtv: resync with kernel's bttv
-- printerdrake: misc fixes (till)
-
-* Tue Aug 26 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-3mdk
-- drakconnect (non wizard gui):
- o add --skip-wizard option to get into non wizard mode
- o hide profile in "internet config" dialog if profiles are disabled
- o "Configure hostname..." button: offer to configure DNS too
- o only allow to run one wizard at once
- o reload the configuration once the wizard exited
- o prevent one to do concurrent config changes from the gui while the
- wizard is run
- o only write conf & install packages on exit if something really has
- been altered so that we do not write the config twice if the
- "apply" button was already pressed
-
-* Tue Aug 26 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-2mdk
-- diskdrake: (pixel)
- o fix WebDAV configuration embedding (#4703)
- o use fs=ext2:vfat or fs=udf:iso9600 for supermount-ng
-- printerdrake: misc fixes (till)
-- service_harddrake: prevent depmod to be runned everytime
-- XFdrake: more fixes for multilayout keyboards
-
-* Mon Aug 25 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-1mdk
-- drakfloppy: make it CJK aware
-- drakTermServ: add /etc/modules for local hardware config (stew)
-- fix #4579: drakconnect not working on console (poulpy)
-- printerdrake: misc fixes (till)
-
-* Sat Aug 23 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.35mdk
-- drakperm:
- o add new rules at top
- o always display editable rules before non editable ones
- o disable up button when selected rule is the first one
- o disable down button when selected rule is the latest one or when
- next rule is non editable
- o fix moving up/down rules
- o fix no saving if we've sort rules
-
-* Sat Aug 23 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.34mdk
-- disdrake: explain why ntfs resizing had failled (pixel)
-- drakbackup: (stew)
- o fix crash on file select of "Other" finish custom cron
- configuration
- o normal users can now do cron backups
-- drakconnect:
- o fix no detection in expert mode
- o better firmware load from floppy managment (poulpy)
- o fix pppoa use for speedtouch USB (poulpy)
-- drakfirewall: add samba in services list
-- drakperm: make security level menu be more understandable & usuable
-- draksec: translate default value in help tooltips too
-- fix CJK wrapping in more places (#3670 and the like)
-- make interactive button order be the same as gtk dialogs one and our
- dialogs but only in standalone mode
-- misc fixes from pixel
-
-* Thu Aug 21 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.33mdk
-- fix CJK wrapping in interactive tools (#4642)
-- remove ugly border around standalone tools
-- wizards: increase height to prevent some hidden or cutted buttons
-- diskdrake: fix small unallocated area at the end of the drive
- (pixel)
-- drakconnect: (poulpy)
- o allow user to copy firmware from a floppy
- o fix another back step
- o fix wrong url
-- drakxtv: only offer to configure xawtv if bttv was configured
-- XFdrake: fix #3976 (francois)
-- update keyboards list & translations (pablo)
-
-* Tue Aug 19 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.32mdk
-- pci hardware discovery: do full-probe by default
-- show advanced options by default if --expert was passed or if expect
- checkbox was checked (#4353)
-- drakconnect: fix internet reconnection (poulpy)
-
-* Tue Aug 19 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.31mdk
-- drakbackup: user definable crontab entry (stew)
-
-- drakconnect:
- o fix up/down interface detection (poulpy)
- o fix some more previous buttons in drakconnect wizard mode
- o fix crash on interface enabling/disabling
- o fix lan changes (#4088)
-
-- drakfloppy:
- o fix long-standing broken mkbootdisk call bug
- o sort modules and directories in treeview
- o save the options & modules list on exit and them restore it on
- load
- o try to be more user friendly:
- * if no error, display a success message, then exit
- * on error, instead of displaying the raw exit code that has no
- meaning for the end user, display in red the log message of mkbootdisk
- * remove insane expert button and so called expert frame
-
-- drakpxe: match new pxe dhcp.conf configuration file (francois)
-
-- harddrake2:
- o display the right fields description when no device is selected
- o make dialogs be modals and transcient
-
-- diskdrake: (pixel)
- o fix lvm managment(#4239)
- o fix underscores being underlines (#4678)
- o fix interaction with mcc
-
-- fix misc issues with shadow passwords and package managment
- (francois/pixel)
-* Sun Aug 17 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.2-0.30mdk
-
-- drakconnect mcc:
- - allow hostname change
- - dhcp to static fixes
-
-* Tue Aug 12 2003 Guillaume Cottenceau <gc@mandrakesoft.com> 9.2-0.29mdk
-- drakconnect: fix message (#4564)
-- drakbackup: (stew)
- o fix #4381
- o search for files to restore
- o fix looping in catalog restore
- o gui enhancements (fabrice facorat)
- o deal with users that are deleted from the system (#4541)
-- drakxtools depends on gurpmi
-- lot of misc bug fixes
-
-* Thu Aug 7 2003 Pixel <pixel@mandrakesoft.com> 9.2-0.28mdk
-- drakxservices: xinetd services have a special treatment
-- localedrake: fix the "zh_TW with country China" case
-- no more stock icons
-
-* Mon Aug 4 2003 Guillaume Cottenceau <gc@mandrakesoft.com> 9.2-0.27mdk
-- ugtk2.pm:
- - revert "use checkboxes instead of icons"
- - fix not possible to select with mouse anymore (rpmdrake etc)
-
-* Mon Aug 4 2003 Pixel <pixel@mandrakesoft.com> 9.2-0.26mdk
-- various fixes
-- clean tarball with no Makefile_c (thanks to Christiaan Welvaart)
-
-* Sat Aug 2 2003 Pixel <pixel@mandrakesoft.com> 9.2-0.25mdk
-- drakauth first appearance
-- diskdrake --nfs and --smb:
- o instead of removing the "Search servers" button when the search is over,
- keep it to allow searching for new servers
- (the label is changed from "Search servers" to "Search new servers") (bug #4297)
-- XFdrake
- o use something like """Virtual 1280 960""" instead of """Modes "1280x960" "1024x768" "800x600" "640x480""""
- o fix test dialog box
-- drakbackup (various changes)
-- drakboot
- o allow to choose /dev/fd0 for the boot device
-
-* Thu Jul 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.24mdk
-- drakbug:
- o use option menus instead of combos
- o use std button layout
-- drakconnect:
- o double click on ethernet interface list lines run lan config
- dialog
- o remove nonsense expert button
-- drakperm: fix crash on adding new permission
-- harddrake: fix #4258
-- mousedrake: use std button layout
-- ugtk2:
- o add infrastucture for rpmlint toggle (semi-selected state mis-functionnal)
- o restore mouse selection
-
-* Thu Jul 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.23mdk
-- drakperm:
- o main window:
- * "ok" button should exit after having saved the preferences
- * localize levels in option menu
- o preferences dialog :
- * fix preferences saving on exit
- * fix tips
-- draksec:
- o restore help for msec checks
- o enhanced help in tooltips
-
-* Thu Jul 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.22mdk
-- drakautoinst, drakper, draksound, and many other tools: use option
- menus instead of combo boxes when the user is selecting from a fixed
- set of options
-- drakboot: hide non working splash stuff
-- drakperm:
- o sanitize gui (upcased labels, understandable labels, ...)
- o settings dialog:
- * localize all fields
- * add tips for all check boxes
- * use std button layout
- * use stock icons
- o rules toolbar: use stock icons
-- net_monitor: fix crash on profile change due to netconnect api
- change
-
-* Wed Jul 23 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.21mdk
-- drakbackup: misc fixes (stew)
-- drakboot: directly configure gdm & kdm
-- drakconnect: fix #4050
-- drakfont: fix #1679 & #3673
-- drakgw:
- o fix not being able to step backward
- o fix canceling resulting in broken dhcp config
- o make --testing option being usefull
-- drakhelp: fix no help for de/it/ru locales (daouda)
-
-* Tue Jul 22 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.20mdk
-- drakconnect: fix "lan config" dialog where fields were not filled
-- draksec: vertically align OptionMenus
-
-* Mon Jul 21 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.19mdk
-- diskdrake, drakconnect: add an help button in standalone mode
-- draksec
- o describe all security levels
- o make it clear that security admin is not a security level
- o colorize security levels names
- o do not offer to set syadmin when reports are disabled
- o fix infamous "when embedded draksec can be enlarged but never shrink back"
- o make 1st tab title somewhat clearer
-- harddrake2: workaround buggy gtk+-2.x that do not enable wrapping textviews when
- realized
-- renew drakconnect wizard gui (2/x):
- o make previous button always be availlable when configuring lan
- o keep user changes when going back to main connection types menu
- o do not loop if one refuse to save changes, just skip the save step
- o fix final success message
- o really translate type connection to be translated
- o try to get more space on screen
- o dhcp host name cannot be set if one want to get it from dhcp server
-
-* Sat Jul 19 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.18mdk
-- draksec:
- o sort functions & checks when writing configuration
- o really fix config load
-
-* Fri Jul 18 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.17mdk
-- draksec:
- o fix preferences loading & saving
- o sort again functions & checks
-
-* Thu Jul 17 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.16mdk
-- do not exit the whole application when one destroy a dialog
-- drop gtk+1 requires
-- renew drakconnect gui (1/x):
- o embedded mode:
- * remove ugly icon
- * fix internet gateway buttons layout
- * smaller dialogs
- * correctly align fields in "lan configuration" dialog
- * run wizard in background (no more main window freeze until
- wizard exit)
- o wizard mode:
- * proxy configuration step: do not go back two steps back on
- "previous" click, but only one back
- * properly use checkboxes (do not put extra labels before when
- checkbox's label is empty)
-- wizard mode:
- o stock items in wizards for previous/next
- o do not force permanent center of wizard windows, which is not
- user-friendly
- o always use s/TextView/Label/
-
-* Tue Jul 15 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.15mdk
-- drakbackup, drakperm: fix button layout
-- drakboot, drakfloppy: use option menus rather than non editable
- combo
-- drakboot:
- o grey theme config instead of hiding it
- o describe user and desktop lists
-- drakfloppy: grey remove button if no module to remove in modules
- list
-- draksec: wrap labels
-- fix interactive apps on X11 (eg diskdrake)
-- fix error and warning dialogs
-- logdrake: ensure we got a valied email in "email alert"
-- printerdrake: make printerdrake runable
-- xfdrake: make it use stock items too
-
-* Mon Jul 14 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.14mdk
-- drakboot: fix /etc/lilo.conf generation when reading grub config by setting
- valid "boot=" parameter
-- drakconnect, drakfloppy: make checkboxes out of ugly "expert <-> normal modes"
- buttons (saner gui)
-- drakconnect:
- o kill duplicated code, share it with drakfloppy and others
- o renew GUI:
- * make sub windows be modal, centered on parent and trancient dialogs
- instead of toplevel windows
- * fix "Internet connection configuration" dialog
- * fix layout of main window:
- + pack together expert mode toggle and wizard button
- + merge wizard label and button
-- drakfloppy:
- o fix warning on menu building
- o fix module browsing after gtk2-perl-xs switch
- o support new 2.5.x kernels' kbuild
- o fix old brown paper bug (mdk8.2/9.0 :-() not passing extra selected modules
- to mkinitrd
- o fix unable to pick a module again after having removed it from selection
- o renew GUI:
- * window with enabled expert options is too big when embedded: let's move
- expert options into a sub dialog
- * use stock dialogs
-- draksec:
- o translate msec options' default values
- o display descriptions rather than raw function names
-- drakTermserv: fix entry filling
-- logdrake: fix crash when called from net_monitor
-- net_monitor: switch from gtk+-1.2.x to gtk+-2.2.x (fix #3998 btw)
-- sanitize guis, especially button layouts:
- o use std layout (ButtonBoxes) for buttons everywhere
- o use stock items everywhere
- o let interactive apps using stock items on x11 and old drak translated items
- in other backends
- o pack buttons always in the same order and places
- o use OptionMenu instead of Combo Boxes when the user is selecting from a
- fixed set of options
-
-* Thu Jul 10 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.13mdk
-- drakfloppy: one cannot edit output buffer
-- drakperm: fix crash when moving lines around sorted columns
-- draksec: more stock icons
-- logdrake: fixes
-
-* Thu Jul 10 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.12mdk
-- drakboot, drakfont: use stock button
-- drakconnect, drakfloppy: grey widgest instead of hiding them when
- not in expert mode
-- drakconnect, draksec: fix crash
-- drakbackup: misc fixes (stew)
-
-* Wed Jul 9 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.11mdk
-- more work on new perl binding for gtk+-2, especially for drakbug and
- rpmdrake
-
-* Wed Jul 9 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.10mdk
-- switch from gtk2-perl to gtk2-perl-xs
-- a few more stock items
-
-* Sun Jul 6 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.9mdk
-- increase gui coherency of drakxtools vs other gtk+ apps: use stock icons
-- drakbackup: (stew)
- o show units for hard-drive allocation
- o add "View Configuration" 1st screen.
- o honor user defined limits for backup disk consumption
- o log last backup and to enable view last backup log
- o fix gui crash on restore. (Keld Jorn Simonsen/Cooker list)
-- drakconnect, drakfloppy, drakperm: let columns be sortable
-- drakconnect (isdn): virtual interface ippp0 is started at boot
- (dam's)
-- harddrake2: colorize help
-- keyboard managment: added various new keyboard layouts (pablo)
-
-* Tue Jul 1 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.8mdk
-- drakbackup: try to better fit gui when embedded (fix #4111) (stew)
-- drakTermServ: enable local client hardware configuration (stew)
-- harddrake2: let gui behave better when embedded
-- ugtk2: locales setting fix for rpmdrake (gc)
-
-* Tue Jun 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.7mdk
-- drakboot: more work on grub conf reread
-- drakedm: fix crash on service restart
-- drakfont: fix crash when trying to remove empty font list (#1944)
-
-* Tue Jun 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.6mdk
-- autoinstall: (pixel)
- o fix regarding LVMs
- o support encrypted partitions
-- draconnect: misc fixes (poulpy)
-- drakboot: reread grub config file if grub is the current boot loader
- (#3965)
-- diskdrake: fix for nfs mount points (pixel)
-- drakgw: reread current network conf (florin) (#468)
-- i18n fixes (#3647 and co)
-- mousedrake: add mouse test in non-embedded mode (#2049) (gc)
-
-* Tue May 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.5mdk
-- keyboardrake: resync with XFree86-4.3 (pablo)
-
-* Tue May 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.4mdk
-- drakconnect: fix #3628 (ensure 644 perms on /etc/resolv.conf)
-
-* Wed May 21 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.3mdk
-- drakbackup: fixes regarding file names in differntial mode (stew)
-- drakboot, drakconnect, harddrake2, printerdrake: misc cleaning
-- drakconnect:
- o workaround #3341 (display "Bad ip" instead of a blank field if we
- failled to parse the ip)
- o fix #853 (check ip) (poulpy)
-- printerdrake: fix #1342 (english rephrasing)
-- requires: fix #3485
-
-* Tue May 20 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.2mdk
-- printerdrake: misc bug fixes
-- drakconnect: fix #763, #2336 (ethX aliases on network card changes)
- (poulpy)
-
-* Tue May 20 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.1mdk
-- drakconnect: fix #2530 (extraneous vindow on wizard error) (poulpy)
-- drakedm: fix #1743 (offer to restart the dm service)
-- drakfont: fix #3960 (divide by zero execption)
-- draksec: fix #3616 (draksec discarding changes)
-- my_gtk: fix #3952 (non working drakcronat)
-
-* Fri May 16 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-38mdk
-- drakboot:
- o do not install both lilo and grub when grub is choosen
- o further fix #2826: replace spaces by underscores in labels
- o further fix #3560: update main bootloader label after the
- bootloader switch
- o raise a wait message window so that the user can figure out what
- occurs (lilo installation being quite long)
-- harddrake: localize drive capabilites (aka burning, dvd managment, ...)
-- drakconnect: fix #852: add a step to warn user before writing
- settings (poulpy)
-
-* Thu May 15 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-37mdk
-- drakfont: fix #1352 (do not add font directory with dummy messages)
-- harddrake2: fix #3487 (invalid charset in help windows)
-- drakconnect: fix "isdn modem choice step is skipped" bug (poulpy)
-
-* Mon May 12 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-36mdk
-- drakboot:
- o do not loop on console (part of #3560) (pixel)
- o do not log localized messages
- o if the bootsplash is missing, just go back to main config window
-
-* Wed Apr 30 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-35mdk
-- draksec: fix #3618 (let one pick any security level)
-- harddrake service: display all removed devices
-
-* Tue Apr 29 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-34mdk
-- drakedm: fix #3701 (return back to the display managers menu if one
- cancel the installation of the required packages)
-- drakfont: empty the font queue when step back (poulpy)
-
-* Thu Apr 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-33mdk
-- fix provides
-
-* Wed Apr 23 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-32mdk
-- translation snapshot
-
-* Mon Apr 7 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-31mdk
-- harddrake gui: fix menu entry description
-- drakbtoot: fix #2826 (aka crash when one enter space in lilo label)
-- ugtk2: fix #3633
-- drakconnect:
- o fix #1675: swap the text and button widgets
- o typo fix (dam's)
-- new perl_checker compliance (pixel)
-- xfdrake: better keyboard managment (pixel)
-- update translations (pablo)
-- build fix for 64bits arch (gwenole)
-
-* Fri Apr 4 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-30mdk
-- fix drakfloppy crash on boot floppy creation
-- ugtk2.pm: fix slight pb with gtktext_insert (#3633) (gc)
-
-* Fri Mar 28 2003 Pixel <pixel@mandrakesoft.com> 9.1-29mdk
-- use ServerFlags DontVTSwitch for i845, i865 and i85x
-
-* Mon Mar 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-28mdk
-- drakconnect: add support for ltpmodem
-
-* Fri Mar 21 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-27mdk
-- harddrake service: increase default timeout from 5 to 25 seconds
-
-* Sun Mar 16 2003 Warly <warly@mandrakesoft.com> 9.1-26mdk
-- do a correct cvs up of all gi before (me sux)
-
-* Sat Mar 15 2003 Warly <warly@mandrakesoft.com> 9.1-25mdk
-- fix drakperm fatal error in editable mode
-
-* Fri Mar 14 2003 Pixel <pixel@mandrakesoft.com> 9.1-24mdk
-- fix XFdrake handling NVidia proprietary drivers
-
-* Thu Mar 13 2003 Till Kamppeter <till@mandrakesoft.com> 9.1-23mdk
-- printerdrake: Fixed bug #417: '$' character in printer URI was not
- correctly handled.
-- Desktop group simplification (francois).
-- Translation updates (pablo, fabian).
-
-* Thu Mar 13 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-22mdk
-- drakboot/drakx: fix #3161 (ensure right permissions on
- /etc/sysconfig/autologin for bad root umask case)
-- enable smooth sound configuration update from mdk9.0 (new unified
- via sound driver) and from mdk8.x
-- scannerdrake detection fixes (till)
-- drakTermServ: Fix IP pool range (stew)
-
-* Wed Mar 12 2003 Pixel <pixel@mandrakesoft.com> 9.1-21mdk
-- diskdrake: have a default mount point for newly added removables
-- drakupdate_fstab: allow --del to remove fd0 & fd1
-
-* Wed Mar 12 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-20mdk
-- drakedm: install dm if needed
-- harddrake service: handle multiple remvable devices in the same hw
- class (eg: 2+ cd burners or 2+ dvd drives or 2 floppies, ...)
-- drakgw: really use the chosen net_connect interface (florin)
-- drakbackup: gtk2 port fixes (stew)
-- drakboot: fix #3048 (pixel)
-
-* Tue Mar 11 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-19mdk
-- ugtk2: fix still seldom happening #1445 (clicking two times too
- fast) (gc)
-- drakxservices: fix embedding and packing in standalone mode (tv)
-- localedrake: add menu entry (fix #1461) (tv)
-- draksec: fix wait messages displaying (label was not displayed) in
- both standalone and embedded modes (tv)
-- printerdrake fixes (till)
-- translation updates
-
-* Fri Mar 7 2003 Guillaume Cottenceau <gc@mandrakesoft.com> 9.1-18mdk
-- ugtk2.pm: fix rpmdrake dumping core when multiple searchs in some
- sorting modes (#2899)
-- network/adsl.pm: one small logical fix (fpons)
-
-* Thu Mar 6 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-17mdk
-- draksplash:
- o fix #1766
- o do not crash when browsing (#1947)
- o do not crash on color selection
-- avoid virtual ethX to be reconfigured by drakconnect (francois)
-
-* Thu Mar 6 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-16mdk
-- draksound: fix #1929
-- moved code of XFdrake NVIDIA support to generic in standalone. (francois)
-
-* Thu Mar 6 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-15mdk
-- fix infamous #2672
-- let draksec fit in 800x600
-- harddrake: fix detection of mod_quickcam's webcams
-- scannerdrake: do not detect mod_quickcam's webcams as scanners
-- logdrake:
- o do not update the text buffer when filling it
- o show the wait message also when searching while embedded (else the
- user will be confused and will wonder why logdrake is freezed
-- fix drakwizard ("next" button being packed too far) (pixel)
-
-* Wed Mar 5 2003 Guillaume Cottenceau <gc@mandrakesoft.com> 9.1-14mdk
-- localedrake: fix behaviour when only one lang is available (clicking
- on "cancel" on the country selection didn't cancel it)
-- drakconnect: fixes in isdn configuration (flepied)
-- drakperm (tv):
- o fix #1776
- o fix small memory leak (tree iterators)
- o restore edit dialog on doble click
-- logdrake: restore "pre gtk+-2 port" search behavior (tv)
- o empty log buffer on search startup
- o freeze buffer while searching
- o scroll down the log buffer on filling
-- localedrake: don't categorize langs, for better looking (since
- most people will have very few of them) (gc)
-- fixed wizard mode not taken into account for drakconnect in
- drakconf. (francois)
-- fixed expert mode in drakconnect for dhcp for cleaning
- variables. (francois)
-- fixed not to use invalid ethX. (francois)
-
-* Mon Mar 3 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-13mdk
-- drakboot: fix #2091, #2480
-
-* Mon Mar 3 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-12mdk
-- drakperm: fix rules saving
-- printerdrake: various fixes (till)
-
-* Fri Feb 28 2003 Guillaume Cottenceau <gc@mandrakesoft.com> 9.1-11mdk
-- drakconnect is no more supporting profiles. (francois)
-- drakconnect support for sagem Fast 800 used by free.fr (francois)
-- drakconnect support for ltmodem. (francois)
-
-* Thu Feb 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-10mdk
-- harddrake service:
- o offer to configure cdrom/dvd/burners/floppies/
- and the like mount points
- o configure firewire controllers
-- diskdrake fixes (pixel)
-- drakconnect fixes (francois)
-
-* Thu Feb 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-9mdk
-- drakconnect:
- o fix lan configuration window filling
- o fix net configuration window sizing
-- drakperm: make it fit better in both embedded and non embedded modes
-- drakgw: fix embedding
-- logdrake: fix scrolling for embedded explanations
-- mousedrake: fix embedding (gc)
-
-* Thu Feb 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-8mdk
-- drakfloppy gtk+2 port
-- drakboot:
- o cleanups
- o disable autologin settings when autologin is disabled
- o make embedded app look better
-- harddrake2:
- o fix #1858 (usb adsl speed touch modem misdetection)
- o provides "options" and "help" pull down menu when embedded
- o detect firewire controllers
-- drakedm: strip empty lines
-- lot of network fixes (francois)
-- drakbackup gtk+2 port fixes: #1753, #1754, #1933, #2159 (stew)
-
-* Tue Feb 25 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-7mdk
-- drakfloppy:
- o fix #1761
- o only list physically present floppies
-- harddrake gui:
- o better support for zip devices
- o removable devices cleanups
- o display dvd/burning capacities
-- harddrake service:
- o do not flash the screen if nothing has to be configured
- o removable devices cleanups
-- fix #1802 (pixel)
-
-* Mon Feb 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-6mdk
-- fix logdrake's mail alerts (services alert, don't crash)
-- drakperm: fix #1771, non editable combo1
-- drakfloppy: fix #1760
-- drakxservices: fix #502
-
-* Mon Feb 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-5mdk
-- clean up tools embeddeding in the mcc
- o make it hard to freeze the mcc
- o make tools loo better when embedded (no embedded wait messages,
- ...)
-- harddrake2:
- o add "/dev" to devfs paths
- o do not offer to configure module when there's no module or when
- driver is an url or a graphic server
- o fix embedding
-
-* Fri Feb 21 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-4mdk
-- drakconnect fixes
-
-* Thu Feb 20 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-3mdk
-- drakboot: fix #1922
-- drakgw, drakboot: remove gtk+ warnings
-- harddrake2: fix latest l10n bugs
-- disdkrake fixes (pixel)
-- drakconnect: dhcp fix (poulpy)
-- printerdrake fix (pixel)
-
-* Thu Feb 20 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-2mdk
-- logdrake: fix #1829
-- translation updates
-- scannerdrake:fix embedding
-- drakxtv: workaround a drakx bug which don't always add bttv to
- /etc/modules (fix #)
-- printerdrake:
- o fix embedding
- o hide the icon when embedded to get more space
- o various improvements (till)
-- drakfont: fc-cache enhancement (pablo)
-- drakTermServ: fix #1774, #1775 (stew)
-- newt bindind: better trees managment on console (pixel)
-- diskdrake fixes (pixel)
-- xfdrake: log failure sources (pixel)
-
-* Tue Feb 18 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-1mdk
-- fix "nothing to edit" in drakperm (#1769)
-- fix draksec help
-- drakedm: fix badly generated config file by 3rd party progs
-- i18n fixes (pablo, gc)
-- scannerdrake updates (till)
-- diskdrake fixes: raid, ... (pixel)
-- printerdrake fixes (till)
-- drakconnect fix (poulpy)
-
-* Mon Feb 17 2003 Till Kamppeter <till@mandrakesoft.com> 9.1-0.34mdk
-- Fixed automatic print queue generation for HP DeskJet 990C.
-
-* Mon Feb 17 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.33mdk
-- fix wizard mode (pixel)
-
-* Mon Feb 17 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.32mdk
-- harddrake: fix #1718
-- translation snapshot
-
-* Sun Feb 16 2003 Till Kamppeter <till@mandrakesoft.com> 9.1-0.31mdk
-- Various fixes/improvements on printerdrake:
- o Restructured function "main()"
- o Auto-generation of print queues during installation
- o Support for unknown printers in auto-detection and auto-generation of
- print queues
- o Fixed display of printer help pages
- o Fixed determination of default printer
-
-* Fri Feb 14 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.30mdk
-- drakperm fixes
-- drakfont fixes
-
-* Thu Feb 13 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.29mdk
-- fix gc breakage
-
-* Thu Feb 13 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.28mdk
-- vastly improved scannerdrake (till):
- o fixed scsi/usb/parrallel scanners detection
- o new known scanners
- o support scanners with multiple ports
- o better configuration files
- o fix "SnapScan" <-> "snapscan" bug
- o fix "HP scanners had no manufacturer field"
-- drakxservices fixes (pixel)
-
-* Wed Feb 12 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.27mdk
-- fix embedded drakconnect:
- o no crash on expert "configure" buttons
- o better behaviour when buttons are hidden/showx
-- harddrake/draksound: card list update
-- pixel:
- o diskdrake:
- * discrimate hpfs and ntfs
- * more precise message when formatting / fsck'ing / mounting
- partitions
- * hide passwords for smb mount points
- o XFdrake: fix #707
-- drakperm: first gtk+2 port fixes, still more to come (pouly & me)
-- fix drakbug help (daouda)
-- drakconnect fixes (frederic lepied)
-- updated translations (pablo)
-
-* Fri Feb 7 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.26mdk
-- drakconnect : dhcp & zeroconf fixes
-- drakfont : full Gtk2
-
-* Thu Feb 6 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.25mdk
-- drakconnect fixes
-
-* Thu Feb 6 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.24mdk
-- fix drakfloppy
-- diskdrake: s/fat/windows/ because of ntfs
-- poulpy:
- o drakfont updates
- o drakconnect fixes
-- translation updates (pablo & co)
-- add drakedm to choose display manager
-- drakhelp: install help on demand (deush)
-- harddrake2: fix for rtl languages
-
-* Wed Feb 5 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.23mdk
-- draksec cleanups
-- fix harddrake2 embedding in mcc
-- update translations (pablo)
-
-* Tue Feb 4 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.22mdk
-- add support for adiusbadsl 1.0.2 (fponsinet)
-- faster draksec shutdown
-
-* Mon Feb 3 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.21mdk
-- draksec:
- o gui look nicer
- o add help for check cron
- o fix "first notebook page do not show up"
- o do not be listed in drakxtools-http
- o faster startup
-- sanitize draxktools-http service script
-- diskdrake: ntfs resizing bug fixes (pixel)
-
-* Fri Jan 31 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.20mdk
-- drakconnect: add more zeroconf support
-
-* Thu Jan 30 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.19mdk
-- printerdrake: fixes for new foomatic
-- requires a recent enought perl-GTK2
-- harddrake2:
- o fix misdetection of nvnet part of nvforce2 chips
- o move nforce system controllers in bridge class (which is renamed
- "bridges and system controllers")
- o mark class names as being translatable
-- logdrake works again in both embedded and non embedded cases
-- translation updates, add Tajiki (pablo)
-- interactive: add support for trees on console (pixel)
-- diskdrake: ntfs resizing support (pixel) (acked by ntfsresize author)
-
-* Wed Jan 29 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.18mdk
-- fix locales managment for non interactive tools (aka pure gtk+ tools)
-- harddrake2:
- o restore cd/dvd burners detection
- o fix doble detection of pci modems
- o don't display vendor & description when we don't have them for ata disks
- o fix ghost modem detection
- o logdrake is embeddable again
-
-* Tue Jan 28 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.17mdk
-- drakfont updates (poulpy):
- o fix progress bar,
- o about box,
- o ugly border when embedded.
-- printerdrake: various fixes for local printer (till)
-- small fix in drakgw (florin)
-
-* Mon Jan 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.16mdk
-- fix wait messages (gc)
-- vietnamese translation update
-
-* Mon Jan 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.15mdk
-- diskdrake:
- o make sub window be modal
- o fix text mode (pixel)
-- drakconnect:
- o don't log actions not done
- o fix modem detection (poulpy)
- o cleanups (poulpy, pixel)
-- draksound: remove last source of "unlisted driver" because of hand
- edited /etc/modules.conf
-- drakxtv: add test mode
-- fix encoding conversions for non latin1 (gc)
-- harddrake2:
- o use new help system
- o make sub window be modal
- o configure sound slots on bootstrapping
-- logdrake:
- o don't display "wait while parsing" window when embedded in mcc
- o log all drakx tools (not only the first one)
-- mousedrake: cleanups (pixel, gc)
-- printerdrake: updates for new foomatic (till)
-- requires old perl-gtk for drakfloppy and net_monitor which works
- again
-- translation updates (pablo)
-- xfdrake: various fixes (pixel)
-
-* Fri Jan 24 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.14mdk
-- drakconnect :
- o get back serial modem detection
-
-* Thu Jan 23 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.13mdk
-- fix standalone apps error on --help
-- many enhancements to draksound:
- o no more unlisted message
- o "how to debug sound problem" window
- o offer to pick any driver if no detected sound card (for eg isa
- card owners) or if no alternative driver
- o handle proprietary drivers
- o fix unchrooted chkconfig call
-- draksec: display help in tooltips
-- drakconnect :
- o cleaning (poulpy, me)
- o zeroconf support (poulpy)
-- big interactive cleanup for drakx and focus handling (pixel)
-- boot floppy fixes (pixel)
-- diskdrake: don't display twice the same mount point (pixel)
-- keyboardrake:
- o cleanups (pixel)
- o update supported keyboard layouts ... (pablo)
-- xfdrake: (pixel)
- o cleanups
- o don't use anymore qiv to render background while testing X config
-- add drakpxe (francois)
-- printerdrake:
- o updates (till)
- o fix chrooted services (me)
-- translation updates (many people)
-- mousedrake: fix scrolling test (gc)
-- ugtk2: fix some (small) memory leaks (gc)
-- ppc updates (stew)
-- english sentences proofreading (pablo, stew)
-- fix gtk+-2 port of mousedrake (me),
-
-* Fri Jan 17 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.12mdk
-- drakconnect :
- o little dhcp behavior rework
- o fix /etc/hosts localdomain
-
-* Thu Jan 16 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.11mdk
-- snapshot
-
-* Thu Jan 09 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.10mdk
-- draksound : fix and update driver list
-- printerdrake: fix staroffice/ooffice configuration (till)
-
-* Tue Jan 07 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.9mdk
-- fix wizards
-
-* Tue Jan 7 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.8mdk
-- update french translation
-- harddrake: treat usb hubs as usb controllers
-- logdrake: set it non editable
-- printerdrake:
- o simplify gimp-print configuration
- o let it work
-- various cleanups (pixel)
-- standalone tools: first help system bits (deush)
-
-* Mon Jan 6 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.7mdk
-- printerdrake fixes
-
-* Thu Jan 2 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.6mdk
-- embedding fixes
-- wizard fixes
-- fix permissions setting
-- internals cleanups
-- drakconnect & printerdrake fixes
-- gtk+-2 fixes
-- faster xfdrake startup
-- translations update
-- fix redefinition warnings
-
-* Mon Dec 30 2002 Stefan van der Eijk <stefan@eijk.nu> 9.1-0.5mdk
-- BuildRequires: perl-MDK-Common-devel
-
-* Thu Dec 19 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.4mdk
-- gtk+2 snapshot
-
-* Wed Dec 04 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.3mdk
-- snapshot for mcc
-
-* Mon Nov 18 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.2mdk
-- more printerdrake redesign
-- more perl_checker fixes
-- standalone : provide a common cli options/help manager
-- logdrake : use my_gtk to transparently handle embedding and ease future gtk2 port
-- kill dead code
-
-* Fri Nov 15 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.1mdk
-- bump version
-- add missing printer/ directory
-- typo fix in drakxtv
-
-* Thu Nov 14 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.12-1mdk
-- printerdrake cleanups
-- various perl lifting
-- harddrake:
- o display floppy driver type as well as mouse type & network printer port
- o fix vendor/model spliting for eide disks when there's neither
- space nor separator
- o v4l card lists : resync with latest bttv & saa7134 drivers
-
-* Mon Nov 11 2002 Pixel <pixel@mandrakesoft.com> 1.1.11-3mdk
-- bug fix (most drakxtools)
-
-* Sun Nov 10 2002 Pixel <pixel@mandrakesoft.com> 1.1.11-2mdk
-- bug fix (printerdrake, netconnect)
-
-* Thu Nov 7 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.11-1mdk
-- harddrake:
- o only display "selected" fields, skip other (aka only display
- fields we described)
- o print name and value of skipped fields on console
- o only display help topics related to currently displayed fields in
- right "information" frame
- o if no device selected, display a message explaining the help dialog
- o don't display modem when there're none
- o describe most cpu fields
- o simplify the coloring logic
-
-- detect_devices :
- o getModem() : simplify
- o getCPUs() : fix cpu fields parsing
-
-* Wed Nov 6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.10-4mdk
-- s/_(/N(/
-
-* Tue Nov 05 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.10-3mdk
-- rebuild for newt
-
-* Mon Nov 4 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.10-2mdk
-- snapshot
-
-* Wed Oct 16 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.10-1mdk
-- harddrake :
- o try to discriminate webcams from video cards
- o fix not displayed unknow devices
-- detection engin :
- o update eide vendors list
- o detect cpus
- o adsl work (damien)
-- drakbug:
- o make ui faster
- o fix displayed result when the package isn't installed
-- drakTermServ : fixes (stew)
-- smb updates (stew)
-- fix broken danish translations (wrong unicode encoding) (pablo)
-- update other translations by the way (pablo)
-
-* Fri Sep 20 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-53mdk
-- remove useless warnings from harddrake
-
-* Fri Sep 20 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-52mdk
-- fix draksec
-
-* Fri Sep 20 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-51mdk
-- printerdrake: various fixes (till)
-- drabug:
- o fix spurious '1' file creation
- o don't print error messages when a program isn't found
-
-* Tue Sep 17 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-50mdk
-- draksec:
- o add ignore option to pull-down list
- o remove not anymore used libsafe option
- o save items
- o reread already set item
-
-* Tue Sep 17 2002 Warly <warly@mandrakesoft.com> 1.1.9-49mdk
-- printerdrake fix for webfetch
-
-* Mon Sep 16 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-48mdk
-- fix die wizcancel in non wizard mode (dams sucks?)
-
-* Sat Sep 14 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-47mdk
-- fix printerdrake network scanning for printers/print servers hangs
- on with firewalled machines (till)
-- fix printerdrake curl dependancy break urpmi (till)
-- obsoletes drakfloppy (daouda)
-
-* Thu Sep 12 2002 Damien Chaumette <dchaumette@mandrakesoft.com> 1.1.9-46mdk
-- fix broken net_monitor
-
-* Thu Sep 12 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-45mdk
-- try to fix drakgw & drakfirewall thx to pixel and florin
-- fix drakfloppy and logdrake (tv)
-
-* Wed Sep 11 2002 Damien Chaumette <dchaumette@mandrakesoft.com> 1.1.9-44mdk
-- drakconnect :
- o fix RTC, ISDN detection
- o fix pcmcia cards detection / module list
- o check DNS and Gateway IPs
-
-* Mon Sep 9 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-43mdk
-- move back draksec to drakxtools
-- harddrake:
- o don't pollute sbin namespace with one shot scripts
- o add run wrapper script for harddrake service
- o disable ?dm part
-- draksound:
- o really display default driver
- o wait message while switching
-- update translations
-
-* Sat Sep 7 2002 Daouda LO <daouda@mandrakesoft.com> 1.1.9-42mdk
-- cvs up before packaging (fix messy drakboot conf).
-
-* Fri Sep 6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-41mdk
-- fix harddrake service, run non essential checks after dm start
-
-* Fri Sep 6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-40mdk
-- harddrake:
- o fix usb mouse detection
- o list --test in -h|--help
- o enhanced draksound :
- * blacklist cs46xx and cs4281 drivers : we won't unload these
- drivers since they're know to oopses the kernel but just warn
- the user
- * chroot aware - can be used in drakx
- * workaround alsaconf's aliases
- * add an help button that describe ALSA and OSS
- * display current driver, its type (OSS or ALSA), and the default
- driver for the card
- * if there's no (usb|pci) sound card, print a note about sndconfig
- for isa pnp cards
-
-* Fri Sep 06 2002 David BAUDENS <baudens@mandrakesoft.com> 1.1.9-39mdk
-- Re-add old obsolete Aurora's images needed by drakboot (this is stupid)
-
-* Fri Sep 06 2002 David BAUDENS <baudens@mandrakesoft.com> 1.1.9-38mdk
-- Update mdk_logo.png
-- Update drakbackup icons
-
-* Fri Sep 6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-37mdk
-- drakperm, drakbackup: fix embedded mode
-
-* Fri Sep 6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-36mdk
-- gtkicons_labels_widget() :
- o add support for mcc' big icon animation
- o cleanups
- o simplify notebook redrawing vs flick/icon_aligment
-
-* Thu Sep 5 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-35mdk
-- Update banners (David Baudens)
-- my_gtk snapshot for rpmdrake (gc)
-
-* Wed Sep 4 2002 Stew Benedict <sbenedict@mandrakesoft.com> 1.1.9-34mdk
-- add perl-Expect requires for drakbackup (now enabled)
-
-* Wed Sep 4 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-33mdk
-- harddrake: fix scrolling tree
-
-* Wed Sep 4 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-32mdk
-- embbed drakbackup
-
-* Wed Sep 4 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-31mdk
-- snapshot for gtktext_insert with color/font capabilities (rpmdrake)
-
-* Tue Sep 3 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-30mdk
-- ugtk:
- o better fix for glib warning that don't make drakx feel mad
- o make icons more transparent when selected in mcc
-
-* Mon Sep 2 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-29mdk
-- harddrake:
- o use new icons
- o add menu icon
-- mcc: ensure all binaries're there
-- ugtk: remove all glib warnings
-
-* Mon Sep 2 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-28mdk
-- tinyfirewall is now drakfirewall (daouda)
-
-* Fri Aug 30 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-27mdk
-- ugtk: add alpha blendering support for mcc's icons through pixbufs
- o readd gdkpixbuf support
- o ensure imlib is used by default to load files, not gdk-pixbuf
- o compose_with_back(): load a png icon into a pixbuf and call
- compose_pixbufs with background pixbuf
- o compose_pixbufs(): render transparent icon onto background into a
- new pixbuf
- o merge gtkcreate_png_pixbuf() from gdk-pixbuf-0-branch : load an
- icon into a pixbuf
- gdk-pixbuf-0-branch also uses it to simplify a lot of code
- o gtkicons_labels_widget() :
- * add a new background pixbuf parameter that'll be composited with icons
- * render icons with alpha blender in right area
- * kill imlib_counter
- * kill imlib usage for
- * kill dead code (was dead since i fixed mcc memory leaks)
-- fix init-script-without-chkconfig-{post,preun}
-
-* Thu Aug 29 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-26mdk
-- harddrake:
- o quit button really work in embedded mode
- o move so called eide raid controllers from unknown to ata
- controllers
-- logdrake: add a scrollbar when embedded in mcc
-
-* Thu Aug 29 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-25mdk
-- snapshot (drakupdate_fstab --auto feature (pixel), logdrake don't
- display too much information in explanations to save space for what's
- useful)
-
-* Thu Aug 29 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-24mdk
-- snapshot for display_info availability in ask_browse for rpmdrake
-
-* Thu Aug 29 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-23mdk
-- drakupdate_fstab first appearance
-
-* Wed Aug 28 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-22mdk
-- harddrake: don't display the menu bar in embedded mode, but a "quit"
- button
-
-* Tue Aug 27 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-21mdk
-- drakconnect fixes (damien)
-
-* Fri Aug 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-20mdk
-- draksound: display right message ("no alternative") when no
- alternative rather than "no known module"
-- fixes for multiple NIC boxes (florin)
-
-* Fri Aug 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-19mdk
-- draksound: use right sound slot
-
-* Fri Aug 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-18mdk
-- ugtk: fix most mcc memory leaks (pending ones seems related to perl-gtk)
-- tinyfirewall: misc fixes (pixel)
-
-* Fri Aug 23 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-17mdk
-- snapshot (including new tinyfirewall)
-
-* Thu Aug 22 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-16mdk
-- snapshot (for rpmdrake)
-
-* Wed Aug 21 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-15mdk
-- add draksound
-- mousedrake: default usbmouse link to input/mice rather than
- input/mouse0, thus giving support for multiple mouse, wacom tables,
- ...
-
-* Wed Aug 21 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-14mdk
-- fix dangling waiting watch mousecursor (well, please test!)
-- adding draksplash (nathan)
-
-* Mon Aug 19 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-13mdk
-- snapshot (including better XFdrake)
-
-* Wed Aug 14 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-12mdk
-- snapshot (fix diskdrake making a hell of fstab)
-
-* Tue Aug 13 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-11mdk
-- snapshot (including "diskdrake --dav")
-
-* Mon Aug 12 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-10mdk
-- snapshot (various bug fixes including no-floppy-box-segfault)
-
-* Fri Aug 9 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-9mdk
-- harddrake:
- o module configuration window:
- * read current options
- * don't display ranges, we cannot really know when a range
- is needed and so display them in wrong cases
- * read & parse modules.conf only when configuring the module,
- not on each click in the tree
- * don't display ranges, we cannot really know when a range is needed
- and so display them in wrong cases (kill code, enable us to simplify
- modparm::parameters after
-
-* Fri Aug 9 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-8mdk
-- snapshot
-
-* Tue Aug 6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-7mdk
-- harddrake, scannerdrake: add scsi scanner detection support
-- harddrake: detect external modems
-
-* Tue Aug 6 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-6mdk
-- rebuild for perl thread-multi
-
-* Mon Aug 5 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-5mdk
-- snapshot for rpmdrake
-
-* Fri Aug 2 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-4mdk
-- have interactive::gtk::exit in my_gtk so that my_gtk apps can call
- it and then fix the problem of clock mouse cursor on exit
-
-* Thu Aug 1 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-3mdk
-- keyboarddrake now handles choosing toggle key (XkbOptions)
-
-* Thu Aug 1 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-2mdk
-- remove obsoleted drakconf
-- various fixes
-- [ugtk::gtkcreate_png] suppress all gtk warnings
-- updated vietnamese translation (pablo)
-- [interactive::gtk] fix many warnings when {icon} is not given (pixel)
-
-* Thu Aug 1 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-1mdk
-- integrate patches in my_gtk and ugtk for new rpmdrake:
- - [ugtk] add "gtkentry" so that we can create an entry and set
- initial value in one call
- - [my_gtk::main] don't set the events, to fix keyboard focus
- problem in entries when embedded
- - [my_gtk::_create_window] add $::noBorder, to not have a frame
- in the main window, so that it's possible to end up with
- windows with no border
- - [my_gtk] add ask_dir which is a ask_file with only the dir list
- - [my_gtk] add ask_browse_tree_info to the export tags, and:
- - add support for parents with no leaves, so that then we can
- partially build the trees (for speedup)
- - add "delete_all" and "delete_category" callbacks
- - use Gtk::CList::clear when removing all the nodes, much
- speedup
-- Titi, harddrake :
- o workaround for the busy mouse cursor set by
- gtkset_mousecursor_wait() in my_gtk::destroy
- o remove debugging prints
- o cleanups
- - drakx: various cleanups
-
-* Thu Aug 1 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-16mdk
-- my_gtk:
- o splitup it into my_gtk and ugtk as done by dams
- o resync with dams
- o increase the icon blinkage from 50ms to 100ms
-- harddrake:
- o use new embedded managment
-
-* Thu Aug 1 2002 Pixel <pixel@mandrakesoft.com> 1.1.8-15mdk
-- harddrake (titi):
- o add embedded mode for drakconf
- o print less gtk warnings
- o module configuration window
-- fix mousedrake
-- fix XFdrake in embedded
-- enhance XFdrake
-- don't require detect-lst (titi)
-- printerdrake work in progress (till)
-
-* Wed Jul 31 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-14mdk
-- harddrake:
- o fix pcmcia network card detection (unknown => ethernet)
- o fix scsi detection :
- * fix SCSI controllers detection (unknown => scsi controllers)
- * fix misdetection of scsi devices as scsi host adapter
- * fix double scsi devices detection (both unknown and real
- category)
-- updated translations
-- fix mousedrake (pixel)
-- drakbug, drakbackup: spell/i18n fixes (pixel, me)
-- xfdrake: fixes (pixel)
-- new draksex (stew)
-- diskdrake: (pixel)
- o fix LVM on RAID
- o explain the pb when maximal number of primary partitions is reached
-
-* Mon Jul 29 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-13mdk
-- harddrake:
- o service: fix config file conversion
- o harddrake::ui :
- * s/channel/Channel/
- * bus_id is for usb devices too
- * remove obsolete fields info and name
- * add nbuttons, device, old_device descriptions
-- updated XFdrake (gtk resolution chooser work, i810 fixes, ...) (pixel)
-- remove "Requires: groff" (nobody know why it's there) (Pixel)
-- updated translations (nl/id/vi)
-- standalone/logdrake: (deush)
- o don't display services that are not installed
- o word wrap string correctly
- o cleanup
-- bootloader.pm: (pixel)
- o let the bootloader::mkinitrd error be seen by the GUI
- o fix dying when mkinitrd doesn't create an initrd
-- interactive.pm: error messages fixes (pixel)
-- diskdrake: add 0x35 partition table id meaning JFS (under OS/2)
- (thank to Mika Laitio)
-- printerdrake: first step of automatic HP multi-function device
- configuration with HPOJ 0.9. (till)
-- drakTermServ (stew)
- o Check for/install terminal-server and friends.
- o More intelligent error message when mkisofs fails.
- o Cleanup code for use strict.
- o Fix crash when no backup dhcpd.conf.
-- drakbackup: (stew)
- o Numerous GUI crash fixes, oddities.
- o Install needed packages.
- o Fix email, daemon modes.
- o Add rsync, webdav, cd, tape capabilities.
- o Consolidate net method setup screens.
- o Add CD device capability query.
-
-* Thu Jul 25 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-12mdk
-- simplify harddrake service:
- o we don't need to set media_type, we don't use it
- o mouse and mass storage media use the same key, let merge their
- code path
- o merge timeout and cancel cases
-
-- harddrake::data : only do one probeall here (there's still many in
- detect_devices, probing caching should go there)
-
-- harddrake:ui :
- o add a fields data structure:
- * put together field translation and field description
- * this enable to get rid of %reverse_fields usage & creation
- * this ensure all field names & translations are marked
- translatables for gettext
- * move $wait declaration around its usage and explicit its
- destruction
- * remove usb debugging message needed to trace the null
- description bug i fixed in ldetect
- * simplify the device fields rendering "because of" the
- above
- * simplify the help window creation/display/destruction
- (only one statement left)
- o explicitely call interactive->exit
- o remove all "no signal to disconnect" gtk+ warnings
-
-
-* Thu Jul 25 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-11mdk
-- rebuild against new libldetect (fix (null) descriptions)
-- new XFdrake (pixel)
-- harddrake:
- o devfs names
- o scanner support;
- * don't account scanners as unknown devices
- * split scannerdrake:val into vendor and description
- * don't display bogus "val:%HASH"
-- updated translations (fr, pl)
-- tools can be runned on console again
-
-* Tue Jul 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-10mdk
-- harddrake :
- o remove - between vendor and model for ibm eide disks
- o network devices are configurable again now
-- draksec : typo fix (deush)
-
-* Tue Jul 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-9mdk
-- harddrake :
- o don't show "cancel" button in about and help windows
- o service: convert config file from plain perl to Storable binary
- file (faster startup)
-- general reorganization cleanup:
- o move interactive_* into interactive::*
- o move partition_table_* into partition_table::*
-- XFdrake: more cleanups (pixel)
-
-* Sun Jul 21 2002 Pixel <pixel@mandrakesoft.com> 1.1.8-8mdk
-- new snapshot (beware of XFdrake)
-
-* Thu Jul 18 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-7mdk
-- remove last draknet reference in harddrake::ui
-- disable diagnostics and strict mode
-
-* Thu Jul 18 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-6mdk
-- able to restart WindowMaker if needed
-- draknet is dead; vival el drakconnect
-- devices managment:
- o no need to write /etc/sysconfig/harddrake2/previous_hw in
- %%post since harddrake2 service doesn't configure anything if
- previous config was empty
- o fix usb mac mouse detection
- o move scsi/ata controllers, burners, dvd, ... from
- unknown/others into their own"non configurable" sections
- o fix problems with usb-interface
-- XFdrake: big cleanup
-- general cleanups
-- translation updates
-
-* Thu Jul 11 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-5mdk
-- drakx :
- o code enhancement: increase coherency around the whole drakx
- code regarding devices
- o decrease the debug verbosity
-- harddrake2 :
- o i18n:
- * move $version out of translatable strings
- o ui:
- * increase default main window size
- * put back the hw tree root
- * eide devices: split info between vendor and model strings
-- spec :
- o fix parrallel build
- o list and describe all gui tools from drakxtools
-
-* Wed Jul 10 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-4mdk
-- fix perl depandancy
-
-* Tue Jul 09 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-3mdk
-- harddrake2:
- o no need to 'use strict' in "binary" => remove warnings
- o fix boot freeze on hw change: initscript was running us with
- stdout redirected to /dev/null; just use a small sh wrapper to
- fix it
- o harddrake::bttv: only log in standalone mode
- o display channel of eide devices
-
-- spec:
- o reorder entries in description
- o list all entries in first line of description
- o fix post: add start argument
-
-* Mon Jul 08 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-2mdk
-- spec :
- o enhance descriptions
- o various spec clean
- o harddrake :
- * obsoletes/provides libdetect-lst, libdetect-lst-devel, detect,
- detect-lst, kudzu-devel
- * split package between harddrake and harddrake-ui to minimize
- the harddrake service dependancies
- * add missing /etc/sysconfig/harddrake2
-- harddrake2 :
- o cache detect_devices::probeall(1) so that hw probe is run once
- o hw configuration :
- * eide devices: split up info field into vendor and model fields
- o ui:
- * enhanced help
- * mice:
- - s/nbuttons/Number of buttons/
- - delete qw(MOUSETYPE XMOUSETYPE unsafe)
- * complete help
- * center the main window
- * remove drakx decorations
- * don't display "run config tool" button if no configurator
- availlable
- o logic:
- * skip configuration on firt run
- * don't restart harddrake on install
- * skip hw classes without configurator (which'll have a
- configurator after porting updfstab)
- o service :
- * only do the job at startup
- * add "please wait" message
- * really don't cry when no previous config
-
-* Mon Jul 08 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-1mdk
-- snapshot
-- new entries:
- o harddrake2 : new hardware detection && configuration tool
- o drakbugreport: bug reporting tool a la Kde (not working!)
- o drakTermServ : configuration tool for diskless stations.
-- updated programs :
- o drakxtv: if runned by root, offer to configure bttv for most tv cards
- o disdrake:
- * enhanced raid & lvm support,
- * check if programs (ie jfsprogs) are installed
- * cleanups
- o Xconfigurator: bug fix
-- general : better supermout support, use new libldetect, various bug fixes
-
-* Tue Jun 18 2002 Frederic Lepied <flepied@mandrakesoft.com> 1.1.7-99mdk
-- added new draksec from Christian and a new way to build the packages (make rpm)
-
-* Mon Apr 15 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.7-98mdk
-- snapshot
-- add drakxtv description
-- drakxtv : now auto guess the country and the freq table
-
-* Fri Mar 15 2002 dam's <damien@mandrakesoft.com> 1.1.7-97mdk
-- snapshot. final release 1
-
-* Tue Mar 12 2002 dam's <damien@mandrakesoft.com> 1.1.7-96mdk
-- added onboot options foreach network cards
-- resolv.conf and domain name bug fixed
-
-* Tue Mar 12 2002 dam's <damien@mandrakesoft.com> 1.1.7-95mdk
-- included drakproxy
-- corrected various timeout (net_monitor, internet connection tests)
-- snapshot
-
-* Mon Mar 11 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-94mdk
-- various
-
-* Fri Mar 8 2002 dam's <damien@mandrakesoft.com> 1.1.7-93mdk
-- drakfont GUI corrected
-- new drakproxy
-
-* Fri Mar 08 2002 François Pons <fpons@mandrakesoft.com> 1.1.7-92mdk
-- fixes for NVIDIA drivers support in XFdrake.
-
-* Thu Mar 7 2002 dam's <damien@mandrakesoft.com> 1.1.7-91mdk
-- lot of bugfixes
-- (dams)
- * standalone/net_monitor: make gc happy
- * modparm.pm, share/po/fr.po: corrected
- * standalone/draknet: corrected network/internet restart when already
- connected
- * standalone/drakfont: corrected bad system command
- * standalone/drakautoinst: corrected HASH and ARRAY label
-- (gc)
- * standalone/drakgw:
- - call net_monitor to disable internet connection before
- network-restart
- - user return value when status'ing the
- initscripts rather than grepping their text output
-- (pixel)
- * standalone/fileshareset (nfs_exports::update_server): ensure portmap
- is running
-
-* Wed Mar 6 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-90mdk
-- corrected font in wizard (dams)
-- localedrake: (pixel)
- * fix dummy entries in .i18n for chineese
- * take sysconfig/i18n into account when no .i18n
- * when called by kcontrol with --apply, don't modify kde config files,
- kcontrol takes care of it more nicely
-- diskdrake: translate actions in text mode (pixel)
-- drakxtv fixed (titi)
-
-* Sun Mar 3 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-89mdk
-- (gtkicons_labels_widget): pass the widget instead of directly passing the font
- (for drakconf)
-
-* Sun Mar 3 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-88mdk
-- (gtkicons_labels_widget): pass the style instead of directly passing the font
- (for drakconf)
-
-* Fri Mar 1 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-87mdk
-- new snapshot (including a modified localedrake)
-
-* Thu Feb 28 2002 dam's <damien@mandrakesoft.com> 1.1.7-86mdk
-- corrected modinfo path. isa modules options should now work.
-
-* Thu Feb 28 2002 dam's <damien@mandrakesoft.com> 1.1.7-85mdk
-- corrected spec so that net_monitor.real get included too.
-
-* Thu Feb 28 2002 dam's <damien@mandrakesoft.com> 1.1.7-84mdk
-- snapshot
-
-* Wed Feb 27 2002 dam's <damien@mandrakesoft.com> 1.1.7-83mdk
-- snapshot
-
-* Tue Feb 26 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-82mdk
-- move XFdrake to drakxtools from drakxtools-newt
-(otherwise it doesn't work, since it needs perl-GTK & xtest)
-
-* Tue Feb 26 2002 dam's <damien@mandrakesoft.com> 1.1.7-81mdk
-- added groff require
-
-* Tue Feb 26 2002 dam's <damien@mandrakesoft.com> 1.1.7-80mdk
-- isa card modules correction. Should work in post install
-- drakfont correction
-
-* Sat Feb 23 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-79mdk
-- require latest perl-MDK-Common
-- corrected icon paths (thanks to garrick)
-- don't create devices when /dev is devfs mounted (thanks to Andrej Borsenkow)
-
-* Fri Feb 22 2002 dam's <damien@mandrakesoft.com> 1.1.7-78mdk
-- corrected icon paths
-
-* Thu Feb 21 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-77mdk
-- now we can live without kdesu ; and drakxtools-newt only requires
- usermode-consoleonly
-
-* Tue Feb 19 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-76mdk
-- fix diskdrake --nfs & --smb
-
-* Tue Feb 19 2002 dam's <damien@mandrakesoft.com> 1.1.7-75mdk
-- required specific version of perl MDK Common
-
-* Tue Feb 19 2002 dam's <damien@mandrakesoft.com> 1.1.7-74mdk
-- various things not described by the last packager
-- new png/wpm search policy in my_gtk
-
-* Mon Feb 18 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-73mdk
-- snapshot
-
-* Sat Feb 16 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-72mdk
-- localedrake now handles KDE
-- diskdrake now handles XFS on LVM live resizing (growing only)
-
-* Fri Feb 15 2002 dam's <damien@mandrakesoft.com> 1.1.7-71mdk
-- snapshot
-
-* Thu Feb 14 2002 dam's <damien@mandrakesoft.com> 1.1.7-70mdk
-- snapshot
-
-* Mon Feb 11 2002 dam's <damien@mandrakesoft.com> 1.1.7-69mdk
-- fixed bad stuff.so in drakxtools
-
-* Fri Feb 8 2002 dam's <damien@mandrakesoft.com> 1.1.7-68mdk
-- new gfx
-- various fix
-- major printerdrake updates
-
-* Thu Feb 07 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.7-67mdk
-- add drakxtv
-
-* Thu Feb 7 2002 dam's <damien@mandrakesoft.com> 1.1.7-66mdk
-- new package, various wizard, mygtk, disdrake improvment.
-
-* Wed Feb 6 2002 dam's <damien@mandrakesoft.com> 1.1.7-65mdk
-- logdrake updates
-- wizard fix
-
-* Tue Jan 29 2002 dam's <damien@mandrakesoft.com> 1.1.7-64mdk
-- last mygtk, drakbackup...
-- disdrake fixed
-- snapshot
-
-* Sun Jan 27 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-63mdk
-- cleanup drakxtools-newt (move all gtk stuff to drakxtools)
-- reworked and split diskdrake
-- add logdrake
-
-* Fri Jan 25 2002 dam's <damien@mandrakesoft.com> 1.1.7-62mdk
-- bug corrections, improvements
-- new advertising engine
-- new gtkicons_labels_widget
-
-* Tue Jan 22 2002 dam's <damien@mandrakesoft.com> 1.1.7-61mdk
-- new gtkicons_labels_widget for new mcc.
-
-* Fri Jan 18 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-60mdk
-- first support for 'Explanations'
-
-* Fri Jan 18 2002 Sebastien Dupont <sdupont@mandrakesoft.com> 1.1.7-59mdk
-- Drakbackup without unstable options for qa.
-- DrakFont update warning message (qa).
-
-* Wed Jan 16 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-58mdk
-- ensure lsnetdrake is included
-
-* Tue Jan 15 2002 Sebastien Dupont <sdupont@mandrakesoft.com> 1.1.7-57mdk
-- Drakbackup daemon, backend mode (-show-conf -daemon -debug -help -version) and report mail corrections.
-- DrakFont gi and progress bar problems.
-
-* Tue Jan 14 2002 Sebastien Dupont <sdupont@mandrakesoft.com> 1.1.7-56mdk
-- New drakbackup version, ftp backup work, new pixmaps.
-- DrakFont with new pixmaps.
-
-* Mon Jan 14 2002 Stefan van der Eijk <stefan@eijk.nu> 1.1.7-55mdk
-- BuildRequires
-
-* Fri Jan 11 2002 dam's <damien@mandrakesoft.com> 1.1.7-54mdk
-- snapshot
-
-* Wed Jan 9 2002 dam's <damien@mandrakesoft.com> 1.1.7-53mdk
-- snapshot
-- new code in my_gtk
-
-* Tue Jan 8 2002 Sebastien Dupont <sdupont@mandrakesoft.com> 1.1.7-52mdk
-- New drakbackup version, incremental backup and restore should work.
-
-* Sat Dec 22 2001 Sebastien Dupont <sdupont@mandrakesoft.com> 1.1.7-51mdk
-- fix conflicts in drakbackup cvs version.
-
-* Sat Dec 22 2001 Sebastien Dupont <sdupont@mandrakesoft.com> 1.1.7-50mdk
-- new drakbackup version.
-
-* Mon Dec 10 2001 Sebastien Dupont <sdupont@mandrakesoft.com> 1.1.7-49mdk
-- fix drakfont path problem.
-- new version of drakbakup
-
-* Wed Dec 5 2001 dam's <damien@mandrakesoft.com> 1.1.7-48mdk
-- corrected syntax error
-
-* Tue Dec 4 2001 dam's <damien@mandrakesoft.com> 1.1.7-47mdk
-- avoid network test freeze
-- added drackbackup
-- snapshot
-
-* Fri Nov 30 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-46mdk
-- add diskdrake --fileshare
-
-* Thu Nov 29 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-45mdk
-- new diskdrake including fileshareset/filesharelist stuff
-
-* Mon Nov 26 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-44mdk
-- use the CVS, not my devel (instable) version
-
-* Fri Nov 23 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-43mdk
-- any.pm fixed
-
-* Mon Nov 19 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-42mdk
-- scannerdrake update to add dynamic support
-
-* Mon Nov 12 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-41mdk
-- scannerdrake update with new fat ScannerDB
-
-* Mon Nov 5 2001 dam's <damien@mandrakesoft.com> 1.1.7-40mdk
-- corrected typo in drakautoinst
-
-* Fri Nov 2 2001 dam's <damien@mandrakesoft.com> 1.1.7-39mdk
-- release
-
-* Fri Oct 26 2001 dam's <damien@mandrakesoft.com> 1.1.7-38mdk
-- drakautoinst & drakfont updated
-
-* Thu Oct 25 2001 dam's <damien@mandrakesoft.com> 1.1.7-37mdk
-- big improvement on drakautoinst
-- draknet : connection script updated
-
-* Thu Oct 18 2001 dam's <damien@mandrakesoft.com> 1.1.7-36mdk
-- draknet/net_monitor corrected
-- corrected bad stuff.so
-
-* Tue Oct 16 2001 dam's <damien@mandrakesoft.com> 1.1.7-35mdk
-- make rplint happier
-
-* Wed Oct 10 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-34mdk
-- snapshot with scanner stuff
-
-* Mon Sep 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-33mdk
-- snapshot
-
-* Mon Sep 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-32mdk
-- Last translations.
-
-* Mon Sep 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-31mdk
-- snapshot. draknet bugfix.
-
-* Sun Sep 23 2001 dam's <damien@mandrakesoft.com> 1.1.7-30mdk
-- snapshot. Included last printer and draknet corrections.
-
-* Fri Sep 21 2001 dam's <damien@mandrakesoft.com> 1.1.7-29mdk
-- typo in adsl.pm, Xconfigurator fix.
-
-* Thu Sep 20 2001 dam's <damien@mandrakesoft.com> 1.1.7-28mdk
-- snapshot. draknet works now.
-
-* Wed Sep 19 2001 dam's <damien@mandrakesoft.com> 1.1.7-27mdk
-- snapshot
-
-* Mon Sep 17 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-26mdk
-- snapshot
-
-* Mon Sep 17 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-25mdk
-- snapshot
-
-* Sat Sep 15 2001 dam's <damien@mandrakesoft.com> 1.1.7-24mdk
-- snapshot with printer, draknet & install fixes
-
-* Fri Sep 14 2001 François Pons <fpons@mandrakesoft.com> 1.1.7-23mdk
-- snapshot with latest XFdrake fixes.
-
-* Fri Sep 14 2001 dam's <damien@mandrakesoft.com> 1.1.7-22mdk
-- snapshot
-
-* Thu Sep 13 2001 François Pons <fpons@mandrakesoft.com> 1.1.7-21mdk
-- fix Xinerama for Matrox cards (restore XFree86 4.1.0 without DRI).
-- removed Modeline 1024x768 in 97.6 Hz which troubles XF4 a lot.
-
-* Thu Sep 13 2001 François Pons <fpons@mandrakesoft.com> 1.1.7-20mdk
-- snapshot with XFdrake fixes (G550 support, no DRI with Xinerama,
- no XFree86 3.3.6 proposed wiht dual head).
-
-* Wed Sep 12 2001 dam's <damien@mandrakesoft.com> 1.1.7-19mdk
-- snapshot
-
-* Wed Sep 12 2001 dam's <damien@mandrakesoft.com> 1.1.7-18mdk
-- snapshot.
-
-* Mon Sep 10 2001 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-17mdk
-- remove dependency on "perl" since pixel added Data::Dumper in perl-base
-
-* Mon Sep 10 2001 dam's <damien@mandrakesoft.com> 1.1.7-16mdk
-- new snapshot, bug corrections.
-
-* Thu Sep 6 2001 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-15mdk
-- drakgw should be working now
-
-* Tue Sep 04 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-14mdk
-- snaphsot, better interaction with mcc (diskdrake printerdrake).
-
-* Tue Sep 4 2001 dam's <damien@mandrakesoft.com> 1.1.7-13mdk
-- snapshot.
-
-* Thu Aug 30 2001 dam's <damien@mandrakesoft.com> 1.1.7-12mdk
-- snapshot. locales corected, nicer wizards.
-
-* Thu Aug 30 2001 François Pons <fpons@mandrakesoft.com> 1.1.7-11mdk
-- new snapshot, mousedrake fixes again.
-
-* Wed Aug 29 2001 François Pons <fpons@mandrakesoft.com> 1.1.7-10mdk
-- new snapshot, mousedrake fixes.
-
-* Fri Aug 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-9mdk
-- snapshot for 8.1 beta2.
-
-* Fri Aug 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-8mdk
-- bugfix.
-- new snapshot. mousedrake experimental.
-
-* Thu Aug 23 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-7mdk
-- fix drakboot bug
-- macros to fix some rpmlint warnings
-
-* Wed Aug 22 2001 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-6mdk
-- put a require on "perl" which is needed for Data::Dumper in drakautoinst
-
-* Wed Aug 22 2001 dam's <damien@mandrakesoft.com> 1.1.7-5mdk
-- snapshot. draknet improvments, bug fixes.
-
-* Mon Aug 20 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-4mdk
-- new fstab munching code
-
-* Sat Aug 18 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-3mdk
-- new diskdrake (with interactive version => newt)
-- drakxtools-http fix
-
-* Tue Aug 14 2001 dam's <damien@mandrakesoft.com> 1.1.7-2mdk
-- added doc (it's a shame...)
-
-* Tue Aug 14 2001 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-1mdk
-- add drakautoinst
-
-* Mon Aug 13 2001 dam's <damien@mandrakesoft.com> 1.1.6-3mdk
-- snapshot
-
-* Tue Aug 7 2001 dam's <damien@mandrakesoft.com> 1.1.6-2mdk
-- added draknet_splash pixmap
-
-* Tue Aug 7 2001 Pixel <pixel@mandrakesoft.com> 1.1.6-1mdk
-- add drakxtools_http
-
-* Fri Aug 3 2001 dam's <damien@mandrakesoft.com> 1.1.5-106mdk
-- added network/*.pm
-
-* Tue Jul 31 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-105mdk
-- add require perl-MDK-Common
-- fix for cp -rf (fuck FreeBSD (c))
-
-* Tue Jul 31 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-104mdk
-- fix my error: %%files with 2 times "-f <file>" doesn't work :-(
-
-* Mon Jul 30 2001 dam's <damien@mandrakesoft.com> 1.1.5-103mdk
-- updated with cooker install.
-- added require on XFree86-75dpi-fonts
-- merged with pixel specfile to handle mo.
-
-* Mon May 7 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-102mdk
-- updated bootloader.pm according to new lilo package (lilo-{menu,graphic,text})
-
-* Wed Apr 25 2001 François Pons <fpons@mandrakesoft.com> 1.1.5-101mdk
-- updated with oem update for DrakX.
-- minor bug correction on printerdrake.
-- added minor features to XFdrake.
-
-* Wed Apr 18 2001 dam's <damien@mandrakesoft.com> 1.1.5-100mdk
-- added require on usermode.
-- added source 2 and 3.
-- snapshot. netconnect corrections. final package
-
-* Tue Apr 17 2001 dam's <damien@mandrakesoft.com> 1.1.5-99mdk
-- snapshot. mousedrake corrected. RC6
-
-* Tue Apr 17 2001 dam's <damien@mandrakesoft.com> 1.1.5-98mdk
-- snapshot. autologin corrected. RC5
-
-* Tue Apr 17 2001 dam's <damien@mandrakesoft.com> 1.1.5-97mdk
-- snapshot. RC4
-
-* Tue Apr 17 2001 dam's <damien@mandrakesoft.com> 1.1.5-96mdk
-- snapshot. RC3
-
-* Mon Apr 16 2001 dam's <damien@mandrakesoft.com> 1.1.5-95mdk
-- snapshot. RC2
-
-* Mon Apr 16 2001 dam's <damien@mandrakesoft.com> 1.1.5-94mdk
-- snapshot. RC
-
-* Mon Apr 16 2001 dam's <damien@mandrakesoft.com> 1.1.5-93mdk
-- draknet and tinyfirewall fixes
-
-* Sun Apr 15 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-92mdk
-- bootlook fix & layout
-
-* Fri Apr 13 2001 dam's <damien@mandrakesoft.com> 1.1.5-91mdk
-- snapshot
-
-* Fri Apr 13 2001 dam's <damien@mandrakesoft.com> 1.1.5-90mdk
-- snapshot
-
-* Thu Apr 12 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-89mdk
-- snapshot
-
-* Thu Apr 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-88mdk
-- snapshot. pcmcia network corrected
-
-* Thu Apr 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-87mdk
-- snapshot. Better network configuration
-
-* Thu Apr 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-86mdk
-- snapshot.
-
-* Wed Apr 11 2001 François Pons <fpons@mandrakesoft.com> 1.1.5-85mdk
-- really fix printerdrake and snap.
-
-* Wed Apr 11 2001 François Pons <fpons@mandrakesoft.com> 1.1.5-84mdk
-- fix printerdrake and snap.
-
-* Tue Apr 10 2001 dam's <damien@mandrakesoft.com> 1.1.5-83mdk
-- bug correction.
-
-* Mon Apr 9 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-82mdk
-- snap as always
-
-* Mon Apr 9 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-81mdk
-- snaphshot again and again
-
-* Mon Apr 9 2001 dam's <damien@mandrakesoft.com> 1.1.5-80mdk
-- snapshot. bug fix
-
-* Sun Apr 8 2001 dam's <damien@mandrakesoft.com> 1.1.5-79mdk
-- snapshot. bug fix.
-
-* Sun Apr 8 2001 dam's <damien@mandrakesoft.com> 1.1.5-78mdk
-- added require on XFree86-100dpi-fonts
-- various debugging
-- new tinyfirewall
-
-* Sun Apr 8 2001 dam's <damien@mandrakesoft.com> 1.1.5-77mdk
-- snapshot
-- net_monitor added.
-
-* Fri Apr 6 2001 dam's <damien@mandrakesoft.com> 1.1.5-76mdk
-- corrected compilation error.
-
-* Fri Apr 6 2001 yves <yduret@mandrakesoft.com> 1.1.5-75mdk
-- snapshot : drakgw updated, boot config fix
-
-* Thu Apr 5 2001 dam's <damien@mandrakesoft.com> 1.1.5-74mdk
-- snapshot.
-
-* Mon Apr 2 2001 dam's <damien@mandrakesoft.com> 1.1.5-73mdk
-- snapshot.
-
-* Mon Apr 2 2001 dam's <damien@mandrakesoft.com> 1.1.5-72mdk
-- snapshot, typo fixs.
-
-* Fri Mar 30 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-71mdk
-- snapshot & fixes
-
-* Fri Mar 30 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-70mdk
-- snapshot : boot coonfig updated
-
-* Thu Mar 29 2001 dam's <damien@mandrakesoft.com> 1.1.5-69mdk
-- snapshot
-
-* Thu Mar 29 2001 dam's <damien@mandrakesoft.com> 1.1.5-68mdk
-- snapshot.
-
-* Thu Mar 29 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-67mdk
-- new snapshot (XFdrake should be working)
-
-* Wed Mar 28 2001 dam's <damien@mandrakesoft.com> 1.1.5-66mdk
-- corrected tinyfirewall last step
-
-* Wed Mar 28 2001 François Pons <fpons@mandrakesoft.com> 1.1.5-65mdk
-- fixed wrong generation of second mouse support
-
-* Wed Mar 28 2001 François Pons <fpons@mandrakesoft.com> 1.1.5-64mdk
-- fixed multi-mouse support for XF3
-- fixed XFdrake (read old config file before so probe overwrite)
-
-* Wed Mar 28 2001 dam's <damien@mandrakesoft.com> 1.1.5-63mdk
-- added draksec embedded mode
-- corrected tinyfirewall for 2.4 kernels
-- corrected bad translations in draknet
-
-* Tue Mar 27 2001 dam's <damien@mandrakesoft.com> 1.1.5-62mdk
-- idem.
-
-* Sat Mar 24 2001 dam's <damien@mandrakesoft.com> 1.1.5-61mdk
-- corrected tinyfirewall
-
-* Fri Mar 23 2001 dam's <damien@mandrakesoft.com> 1.1.5-60mdk
-- snapshot
-- corrected require.
-
-* Fri Mar 23 2001 dam's <damien@mandrakesoft.com> 1.1.5-59mdk
-- added ldetect in require.
-- tinyfirewall included.
-
-* Thu Mar 22 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-58mdk
-- updated drakboot, new snapshot
-
-* Thu Mar 22 2001 dam's <damien@mandrakesoft.com> 1.1.5-57mdk
-- draknet without mail conf, new snapshot.
-
-* Thu Mar 22 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-56mdk
-- new version that will work with perl-base (at least XFdrake)
-
-* Thu Mar 22 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-55mdk
-- require perl-base not perl, it should be enough
-
-* Thu Mar 22 2001 dam's <damien@mandrakesoft.com> 1.1.5-54mdk
-- first release with tinyfirewall. Not stable.
-- corrected gmon pb, I suck.
-
-* Tue Mar 20 2001 dam's <damien@mandrakesoft.com> 1.1.5-53mdk
-- corrected bad links.
-
-* Tue Mar 20 2001 dam's <damien@mandrakesoft.com> 1.1.5-52mdk
-- no crash anymore.
-
-* Tue Mar 20 2001 dam's <damien@mandrakesoft.com> 1.1.5-51mdk
-- updated draknet. new snapshot.
-
-* Wed Mar 14 2001 dam's <damien@mandrakesoft.com> 1.1.5-50mdk
-- some minor label improvements.
-
-* Tue Mar 13 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-49mdk
-- updated bootlook
-- macros
-
-* Mon Mar 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-48mdk
-- correted wizard pixmaps name
-
-* Mon Mar 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-47mdk
-- new and shinny drakxservices
-
-* Tue Mar 6 2001 dam's <damien@mandrakesoft.com> 1.1.5-46mdk
-- XFdrake works + other improvements
-
-* Thu Mar 1 2001 dam's <damien@mandrakesoft.com> 1.1.5-45mdk
-- updated embedded mode.
-
-* Wed Feb 28 2001 dam's <damien@mandrakesoft.com> 1.1.5-44mdk
-- XFdrake : new look.
-- draknet : some corrections.
-- install : some improvements
-
-* Mon Feb 26 2001 dam's <damien@mandrakesoft.com> 1.1.5-43mdk
-- corrected draknet, and some other stuff
-
-* Mon Feb 26 2001 dam's <damien@mandrakesoft.com> 1.1.5-42mdk
-- new draknet, with wizard and profiles.
-- drakboot short-circuited.
-- new pixmaps policy.
-
-* Fri Feb 23 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-41mdk
-- require perl-GTK-GdkImlib, fix XFdrake and draknet with no perl-GTK
-
-* Fri Feb 23 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-40mdk
-- split in drakxtools and drakxtools-newt
-
-* Thu Feb 8 2001 dam's <damien@mandrakesoft.com> 1.1.5-39mdk
-- install() and SHAR_PATH bug fixed in standalone.pm
-
-* Thu Feb 8 2001 dam's <damien@mandrakesoft.com> 1.1.5-38mdk
-- bug fix.
-
-* Thu Feb 8 2001 dam's <damien@mandrakesoft.com> 1.1.5-37mdk
-- bug correction inclusion.
-
-* Wed Feb 7 2001 dam's <damien@mandrakesoft.com> 1.1.5-36mdk
-- snapshot. Included embedded mode (for control-center), and wizard mode.
-
-* Mon Dec 18 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-35mdk
-- new version (lspcidrake not here anymore, requires ldetect-lst => don't
-include pcitable/... anymore)
-
-
-* Tue Nov 14 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-34mdk
-- snapshot
-- get rid of the rpmlib dependency
-
-* Sat Oct 21 2000 dam's <damien@mandrakesoft.com> 1.1.5-33mdk
-- RC1_fixed tagged cvs version.
-- Video cards handling enhanced
-- isa isdn-cards and non detected isdn pci-cards spported.
-
-* Thu Oct 19 2000 dam's <damien@mandrakesoft.com> 1.1.5-32mdk
-- snapshot.
-
-* Mon Oct 9 2000 dam's <damien@mandrakesoft.com> 1.1.5-31mdk
-- snapshot.
-
-* Fri Oct 6 2000 dam's <damien@mandrakesoft.com> 1.1.5-30mdk
-- snapshot.
-
-* Fri Oct 6 2000 dam's <damien@mandrakesoft.com> 1.1.5-29.1mdk
-- snapshot. not fully stable.
-
-* Thu Oct 5 2000 dam's <damien@mandrakesoft.com> 1.1.5-29mdk
-- snapshot.
-
-* Thu Oct 05 2000 François Pons <fpons@mandrakesoft.com> 1.1.5-28mdk
-- snapshot.
-
-* Tue Oct 03 2000 François Pons <fpons@mandrakesoft.com> 1.1.5-27mdk
-- snapshot.
-
-* Sun Oct 1 2000 dam's <damien@mandrakesoft.com> 1.1.5-26mdk
-- snapshot.
-
-* Sat Sep 30 2000 dam's <damien@mandrakesoft.com> 1.1.5-25mdk
-- snapshot.
-
-* Sat Sep 30 2000 dam's <damien@mandrakesoft.com> 1.1.5-24mdk
-- snapshot. draknet frozen.
-
-* Fri Sep 29 2000 dam's <damien@mandrakesoft.com> 1.1.5-23mdk
-- snapshot.
-
-* Thu Sep 28 2000 dam's <damien@mandrakesoft.com> 1.1.5-22mdk
-- modified spec.
-- snapshot
-- liveupdate
-
-* Wed Sep 27 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-21mdk
-- snapshot
-
-* Tue Sep 26 2000 dam's <damien@mandrakesoft.com> 1.1.5-20mdk
-- snapshot
-
-* Mon Sep 25 2000 dam's <damien@mandrakesoft.com> 1.1.5-19mdk
-- snapshot.
-
-* Fri Sep 22 2000 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.5-18mdk
-- new snapshot
-- remove BuildRequires kudzu-devel, I suck bigtime..
-
-* Thu Sep 21 2000 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.5-17mdk
-- new snapshot
-- BuildRequires kudzu-devel since ddcprobe/ddcxinfos.c uses /usr/include/vbe.h
-
-* Wed Sep 20 2000 dam's <damien@mandrakesoft.com> 1.1.5-16mdk
-- cvs snapshot. See changelog file
-
-* Wed Sep 20 2000 dam's <damien@mandrakesoft.com> 1.1.5-15mdk
-- cvs snapshot. See changelog file
-
-* Fri Sep 15 2000 dam's <damien@mandrakesoft.com> 1.1.5-14mdk
-- cvs snapshot.
-- draknet : better dsl configuration.
-
-* Thu Sep 14 2000 dam's <damien@mandrakesoft.com> 1.1.5-13mdk
-- cvs snapshot.
-- draknet : wizard mode. isdn_db.txt moved to /usr/share. No makedev.sh any more
-
-* Mon Sep 11 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-12mdk
-- add handling for gnome and kde2 in Xdrakres
-
-* Thu Sep 7 2000 dam's <damien@mandrakesoft.com> 1.1.5-11mdk
-- corrected draknet launch error.
-
-* Thu Sep 7 2000 dam's <damien@mandrakesoft.com> 1.1.5-10mdk
-- ISDN connection should work. test it!
-
-* Tue Sep 5 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-9mdk
-- setAutologin fixed in XFdrake
-
-* Tue Sep 5 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-8mdk
-- adduserdrake fixed
-
-* Sat Sep 2 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-7mdk
-- fix some typos in standalone/keyboarddrake
-- add require perl
-
-* Sat Sep 2 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-6mdk
-- add %%lang tags
-
-* Tue Aug 29 2000 dam's <damien@mandrakesoft.com> 1.1.5-5mdk
-- draknet : isa cards better recognized.
-
-* Mon Aug 28 2000 dam's <damien@mandrakesoft.com> 1.1.5-4mdk
-- corrected draknet. Please test it!
-
-* Sun Aug 27 2000 dam's <damien@mandrakesoft.com> 1.1.5-3mdk
-- Added draknet in standalone
-
-* Fri Aug 18 2000 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.5-2mdk
-- add requires to modutils >= 2.3.11 because drakgw is reading
- /etc/modules.conf which has been introduced in 2.3.11
-
-* Fri Aug 18 2000 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.5-1mdk
-- added `drakgw' in standalone (Internet Connection Sharing tool)
-
-* Fri Aug 11 2000 Pixel <pixel@mandrakesoft.com> 1.1.4-3mdk
-- new snapshot
-
-* Thu Aug 10 2000 Pixel <pixel@mandrakesoft.com> 1.1.4-2mdk
-- add noreplace for diskdrake.rc
-
-* Thu Aug 10 2000 Pixel <pixel@mandrakesoft.com> 1.1.4-1mdk
-- new snapshot
-
-* Mon Aug 07 2000 Frederic Lepied <flepied@mandrakesoft.com> 1.1.3-2mdk
-- automatically added BuildRequires
-
-* Fri Jul 21 2000 Pixel <pixel@mandrakesoft.com> 1.1.3-1mdk
-- new version, BM
-
-* Wed Jul 05 2000 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.2-2mdk
-- build against new libbz2
-
-* Mon Jun 26 2000 Pixel <pixel@mandrakesoft.com> 1.1.2-1mdk
-- new version
-
-* Tue Jun 13 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-13mdk
-- hopefully fix XFdrake and DDR nvidia cards (silly xfree that is)
-
-* Mon Jun 5 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-12mdk
-- fix sbus missing
-
-* Sat Jun 3 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-10mdk
-- fix draksec calling init.sh instead of msec
-
-* Thu May 25 2000 Chmouel Boudjnah <chmouel@mandrakesoft.com> 1.1.1-9mdk
-- Don't display x86 stuff on drakboot when we are on others arch.
-
-* Thu May 25 2000 François Pons <fpons@mandrakesoft.com> 1.1.1-8mdk
-- update with first version for sparc and sparc64.
-- fix for printer configuration for SAMBA and NCP (security issue).
-
-* Tue May 9 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-7mdk
-- many small fixes (bis)
-
-* Tue May 2 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-6mdk
-- many small fixes
-
-* Wed Apr 26 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-5mdk
-- new version (fix in adduserdrake, enhance interactive_newt)
-
-* Wed Apr 19 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-4mdk
-- llseek works, not lseek64 :( (need more testing)
-
-* Wed Apr 19 2000 François Pons <fpons@mandrakesoft.com> 1.1.1-3mdk
-- updated with CVS of DrakX.
-
-* Fri Mar 31 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-2mdk
-- obsoletes setuptool, link setuptool to drakxconf
-
-* Fri Mar 31 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-1mdk
-- new version (added drakboot for lilo/grub, XFdrake -xf4 for XFree4)
-
-* Sat Mar 25 2000 Pixel <pixel@mandrakesoft.com> 1.1-1mdk
-- new group
-- new version
-
-* Wed Jan 12 2000 François PONS <fpons@mandrakesoft.com>
-- complete update with DrakX, small fixe on printerdrake again.
-
-* Wed Jan 12 2000 François PONS <fpons@mandrakesoft.com>
-- corrected missing generic postscript and text driver for
- printderdrake.
-
-* Wed Jan 12 2000 François PONS <fpons@mandrakesoft.com>
-- corrected bad resolution setting in printerdrake.
-
-* Wed Jan 12 2000 François PONS <fpons@mandrakesoft.com>
-- fixed print on STDOUT in printerdrake.
-- corrected printerdrake against not available drivers in gs.
-
-* Mon Jan 10 2000 Pixel <pixel@mandrakesoft.com>
-- new version (bis)
-- printerdrake install rhs-printfilters via urpmi if needed
-
-* Fri Jan 07 2000 François PONS <fpons@mandrakesoft.com>
-- updated XFdrake and PrinterDrake.
-
-* Fri Jan 7 2000 Pixel <pixel@mandrakesoft.com>
-- fixed a bug causing no i18n for rpmdrake
-- add require urpmi
-
-* Thu Jan 6 2000 Pixel <pixel@mandrakesoft.com>
-- fix an error case in XFdrake
-
-* Tue Jan 4 2000 Pixel <pixel@mandrakesoft.com>
-- adduserdrake accept user names on command line
-- minor fixes
-
-* Fri Dec 31 1999 Pixel <pixel@mandrakesoft.com>
-- 32mdk
-
-* Wed Dec 29 1999 Pixel <pixel@mandrakesoft.com>
-- make rpmlint happier
-- minor fixes
-
-* Mon Dec 27 1999 Pixel <pixel@mandrakesoft.com>
-- better XFdrake and minor fixes
-
-* Fri Dec 24 1999 Pixel <pixel@mandrakesoft.com>
-- new version (better adduserdrake and more)
-- add /usr/bin/* (for lspcidrake)
-
-* Wed Dec 22 1999 Pixel <pixel@mandrakesoft.com>
-- do not try display :0 if DISPLAY is unset
-
-* Mon Dec 20 1999 Pixel <pixel@mandrakesoft.com>
-- fixed a bug in drakxservices
-- XFdrake now install XFree86 and XFree86-75dpi-fonts if needed
-- XFdrake now calls /etc/rc.d/init.d/xfs start if needed
-- minor fix
-
-* Sat Dec 18 1999 Pixel <pixel@mandrakesoft.com>
-- added kpackage's icons for rpmdrake
-
-* Thu Dec 16 1999 Pixel <pixel@mandrakesoft.com>
-- bzip2 .po's
-- mount /proc in XFdrake to avoid freeze when called by kudzu
-- added Xdrakres
-
-* Thu Dec 16 1999 Chmouel Boudjnah <chmouel@mandrakesoft.com>
-- Remove the netdrake ghost.
-
-* Thu Dec 16 1999 Pixel <pixel@mandrakesoft.com>
-- fix draksec
-- many changes in libDrakX
-
-* Sat Dec 11 1999 Pixel <pixel@mandrakesoft.com>
-- adduserdrake added and some more
-
-* Thu Dec 9 1999 Pixel <pixel@linux-mandrake.com>
-- added drakxconf, drakxservices
-- handle non root via kdesu if X
-- warning go to syslog
-
-* Wed Dec 8 1999 Chmouel Boudjnah <chmouel@mandrakesoft.com>
-- Add %post and %postun to link redhat tools to our tools.
-- Obsoletes: Xconfigurator mouseconfig kbdconfig printtool
-- A lots of changes/fix.
-
-* Thu Dec 2 1999 Pixel <pixel@linux-mandrake.com>
-- keyboarddrake added, and many changes
-- fixed typos
-
-* Fri Nov 26 1999 Pixel <pixel@linux-mandrake.com>
-- new version (printerdrake) (did i say lspcidrake was there too?)
-
-* Wed Nov 24 1999 Pixel <pixel@linux-mandrake.com>
-- new version
-- fixed *.o bundled in the %source
-
-* Sun Nov 21 1999 Pixel <pixel@mandrakesoft.com>
-- removed %config for diskdrake.rc (should i?)
-- removed xtest from the requires
-- added %config for diskdrake.rc (should i?)
-- strip .so and ddcxinfos (nice rpmlint :)
-
-* Sat Nov 20 1999 Pixel <pixel@mandrakesoft.com>
-- added MonitorsDB to %files (silly me:-!)
-
-* Thu Nov 18 1999 Pixel <pixel@mandrakesoft.com>
-- precised the required version for perl-GTK
-
-* Thu Nov 18 1999 Pixel <pixel@mandrakesoft.com>
-- First version
-
-
-# end of file
diff --git a/perl-install/fs.pm b/perl-install/fs.pm
index 850538db5..15c2f9240 100644
--- a/perl-install/fs.pm
+++ b/perl-install/fs.pm
@@ -22,7 +22,7 @@ sub read_fstab {
my ($prefix, $file, @reading_options) = @_;
if (member('keep_default', @reading_options)) {
- push @reading_options, 'freq_passno', 'keep_devfs_name', 'keep_device_LABEL';
+ push @reading_options, 'freq_passno', 'keep_device_LABEL';
}
my %comments;
@@ -78,19 +78,17 @@ sub read_fstab {
put_in_hash($h, fs::wild_device::to_subpart($dev));
- if ($h->{device_LABEL} && member('keep_device_LABEL', @reading_options)) {
+ if ($h->{device_LABEL} && !$h->{device_alias} && member('keep_device_LABEL', @reading_options)) {
$h->{prefer_device_LABEL} = 1;
- } elsif ($h->{devfs_device} && member('keep_devfs_name', @reading_options)) {
- $h->{prefer_devfs_name} = 1;
}
if ($h->{options} =~ /credentials=/ && !member('verbatim_credentials', @reading_options)) {
- require network::smb;
+ require fs::remote::smb;
#- remove credentials=file with username=foo,password=bar,domain=zoo
#- the other way is done in fstab_to_string
my ($options, $unknown) = fs::mount_options::unpack($h);
my $file = delete $options->{'credentials='};
- my $credentials = network::smb::read_credentials_raw($file);
+ my $credentials = fs::remote::smb::read_credentials_raw($file);
if ($credentials->{username}) {
$options->{"$_="} = $credentials->{$_} foreach qw(username password domain);
fs::mount_options::pack($h, $options, $unknown);
@@ -117,8 +115,9 @@ sub merge_fstabs {
add2hash($p, $p2);
} else {
$p->{isMounted} ||= $p2->{isMounted};
+ $p->{real_mntpoint} ||= $p2->{real_mntpoint};
}
- $p->{device_alias} ||= $p2->{device_alias} || $p2->{device} if $p->{device} ne $p2->{device} && $p2->{device} !~ m|/|;
+ $p->{device_alias} ||= $p2->{device_alias} if $p->{device} ne $p2->{device} && $p2->{device} !~ m|/|;
$p->{fs_type} && $p2->{fs_type} && $p->{fs_type} ne $p2->{fs_type}
&& $p->{fs_type} ne 'auto' && $p2->{fs_type} ne 'auto' and
@@ -136,7 +135,7 @@ sub add2all_hds {
my $s =
$_->{fs_type} eq 'nfs' ? 'nfss' :
$_->{fs_type} eq 'smbfs' ? 'smbs' :
- $_->{fs_type} eq 'davfs' ? 'davs' :
+ $_->{fs_type} eq 'davfs2' ? 'davs' :
isTrueLocalFS($_) || isSwap($_) || isOtherAvailableFS($_) ? '' :
'special';
push @{$all_hds->{$s}}, $_ if $s;
@@ -166,12 +165,8 @@ sub merge_info_from_mtab {
foreach (@l1, @l2) {
log::l("found mounted partition on $_->{device} with $_->{mntpoint}");
- if ($::isInstall && $_->{mntpoint} =~ m!/tmp/(image|hdimage)!) {
+ if ($::isInstall && $_->{mntpoint} =~ m!^/tmp/\w*image$!) {
$_->{real_mntpoint} = delete $_->{mntpoint};
- if ($_->{real_mntpoint} eq '/tmp/hdimage') {
- log::l("found hdimage on $_->{device}");
- $_->{mntpoint} = "/mnt/hd"; #- remap for hd install.
- }
}
$_->{isMounted} = 1;
set_isFormatted($_, 1);
@@ -232,8 +227,8 @@ sub prepare_write_fstab {
my $options = $_->{options};
if ($_->{fs_type} eq 'smbfs' && $options =~ /password=/ && !$b_keep_smb_credentials) {
- require network::smb;
- if (my ($opts, $smb_credentials) = network::smb::fstab_entry_to_credentials($_)) {
+ require fs::remote::smb;
+ if (my ($opts, $smb_credentials) = fs::remote::smb::fstab_entry_to_credentials($_)) {
$options = $opts;
push @smb_credentials, $smb_credentials;
}
@@ -296,7 +291,7 @@ sub write_fstab {
my $fstab = [ fs::get::really_all_fstab($all_hds), @{$all_hds->{special}} ];
my ($s, $smb_credentials) = prepare_write_fstab($fstab, $o_prefix, '');
output("$o_prefix/etc/fstab", $s);
- network::smb::save_credentials($_) foreach @$smb_credentials;
+ fs::remote::smb::save_credentials($_) foreach @$smb_credentials;
}
sub set_removable_mntpoints {
@@ -308,7 +303,7 @@ sub set_removable_mntpoints {
$name eq 'zip' and next;
my $s = ++$names{$name};
- $_->{mntpoint} ||= "/mnt/$name" . ($s == 1 ? '' : $s);
+ $_->{mntpoint} ||= "/media/$name" . ($s == 1 ? '' : $s);
}
}
@@ -323,7 +318,7 @@ sub get_raw_hds {
my @fstab = read_fstab($prefix, '/etc/fstab', 'keep_default');
$all_hds->{nfss} = [ grep { $_->{fs_type} eq 'nfs' } @fstab ];
$all_hds->{smbs} = [ grep { $_->{fs_type} eq 'smbfs' } @fstab ];
- $all_hds->{davs} = [ grep { $_->{fs_type} eq 'davfs' } @fstab ];
+ $all_hds->{davs} = [ grep { $_->{fs_type} eq 'davfs2' } @fstab ];
$all_hds->{special} = [
(grep { $_->{fs_type} eq 'tmpfs' } @fstab),
{ device => 'none', mntpoint => '/proc', fs_type => 'proc' },
diff --git a/perl-install/fs/any.pm b/perl-install/fs/any.pm
new file mode 100644
index 000000000..53e526ba1
--- /dev/null
+++ b/perl-install/fs/any.pm
@@ -0,0 +1,66 @@
+package fs::any; # $Id$
+
+use diagnostics;
+use strict;
+
+use common;
+use fsedit;
+use fs::mount_point;
+
+sub get_hds {
+ my ($all_hds, $fstab, $manual_fstab, $partitioning_flags, $skip_mtab, $o_in) = @_;
+
+ my $probed_all_hds = fsedit::get_hds($partitioning_flags, $o_in);
+ my $hds = $probed_all_hds->{hds};
+
+ if (is_empty_array_ref($hds) && !$::move) { #- no way
+ die N("An error occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem");
+ }
+
+ #- try to figure out if the same number of hds is available, use them if ok.
+ @{$all_hds->{hds} || []} == @$hds and return 1;
+
+ fs::get_raw_hds('', $probed_all_hds);
+ fs::add2all_hds($probed_all_hds, @$manual_fstab);
+
+ %$all_hds = %$probed_all_hds;
+ @$fstab = fs::get::really_all_fstab($all_hds);
+
+ if (!$skip_mtab) {
+ #- do not mount the windows partition
+ fs::merge_info_from_mtab($fstab);
+ fs::mount_point::suggest_mount_points_always($fstab);
+ }
+
+ 1;
+}
+
+sub write_hds {
+ my ($all_hds, $fstab, $set_mount_defaults, $on_reboot_needed, $opts) = @_;
+ if (!$::testing) {
+ my $hds = $all_hds->{hds};
+ partition_table::write($_) foreach @$hds;
+ $_->{rebootNeeded} and $on_reboot_needed->() foreach @$hds;
+ }
+
+ fs::set_removable_mntpoints($all_hds);
+ fs::mount_options::set_all_default($all_hds, %$opts, lang::fs_options($opts->{locale}))
+ if $set_mount_defaults;
+
+ @$fstab = fs::get::fstab($all_hds);
+}
+
+sub check_hds_boot_and_root {
+ my ($all_hds, $fstab) = @_;
+ fs::get::root_($fstab) or die "Oops, no root partition";
+
+ if (arch() =~ /ppc/ && detect_devices::get_mac_generation() =~ /NewWorld/) {
+ die "Need bootstrap partition to boot system!" if !(defined $partition_table::mac::bootstrap_part);
+ }
+
+ if (arch() =~ /ia64/ && !fs::get::has_mntpoint("/boot/efi", $all_hds)) {
+ die N("You must have a FAT partition mounted in /boot/efi");
+ }
+}
+
+1;
diff --git a/perl-install/fs/dmraid.pm b/perl-install/fs/dmraid.pm
index 54c6532f1..2e67ba669 100644
--- a/perl-install/fs/dmraid.pm
+++ b/perl-install/fs/dmraid.pm
@@ -75,11 +75,16 @@ sub _sets() {
foreach (@sets) {
my $name = $_->{name};
my @l = grep { begins_with($name, $_->{vg}) } @raid_devices;
+ log::l("ERROR: multiple match for set $name: " . join(' ', map { $_->{vg} } @l)) if @l > 1;
+
+ @l = grep { begins_with($_->{vg}, $name) } @raid_devices if !@l;
+
if (@l) {
- log::l("ERROR: multiple match for set $name: " . join(' ', map { $_->{vg} } @l)) if @l > 1;
- my ($raid) = @l;
- add2hash($_, $raid);
- $_->{status} = $raid->{status} if $_->{status} eq 'ok' && $::isInstall;
+ foreach my $raid (@l) {
+ push @{$_->{disks}}, @{$raid->{disks}};
+ add2hash($_, $raid);
+ $_->{status} = $raid->{status} if $_->{status} eq 'ok' && $::isInstall;
+ }
} else {
log::l("ERROR: no matching raid devices for set $name");
}
@@ -180,7 +185,18 @@ EO
# ERROR: multiple match for set nvidia_bcjdbjfa: nvidia_bcjdbjfa
},
-
+ nvidia_with_subsets => {
+ '-s' => <<'EO',
+nvidia_bfcciffh:625163520:128:raid10:ok:2:4:0
+EO
+ '-r' => <<'EO',
+/dev/sda:nvidia:nvidia_bfcciffh-0:stripe:ok:312581806:0
+/dev/sdb:nvidia:nvidia_bfcciffh-0:stripe:ok:312581806:0
+/dev/sdc:nvidia:nvidia_bfcciffh-1:stripe:ok:312581806:0
+/dev/sdd:nvidia:nvidia_bfcciffh-1:stripe:ok:312581806:0
+EO
+ # ERROR: multiple match for set nvidia_bcjdbjfa: nvidia_bcjdbjfa
+ },
);
*call_dmraid = sub {
diff --git a/perl-install/fs/format.pm b/perl-install/fs/format.pm
index f342be09f..c1b6dc05b 100644
--- a/perl-install/fs/format.pm
+++ b/perl-install/fs/format.pm
@@ -2,6 +2,7 @@ package fs::format; # $Id$
use diagnostics;
use strict;
+use String::ShellQuote;
use run_program;
use common;
@@ -20,6 +21,7 @@ my %cmds = (
dos => [ 'dosfstools', 'mkdosfs' ],
vfat => [ 'dosfstools', 'mkdosfs', '-F', '32' ],
swap => [ 'util-linux', 'mkswap' ],
+ ntfs => [ 'ntfsprogs', 'mkntfs' ],
);
my %LABELs = ( #- option, length, handled_by_mount
@@ -119,7 +121,7 @@ sub part_raw {
if ($cmd eq 'mkfs.ext2' && $wait_message) {
mkfs_ext2($wait_message, @args) or die N("%s formatting of %s failed", $fs_type, $dev);
} else {
- run_program::raw({ timeout => 60 * 60 }, @args) or die N("%s formatting of %s failed", $fs_type, $dev);
+ run_program::raw({ timeout => 'never' }, @args) or die N("%s formatting of %s failed", $fs_type, $dev);
}
if ($fs_type eq 'ext3') {
@@ -132,7 +134,9 @@ sub part_raw {
sub mkfs_ext2 {
my ($wait_message, @args) = @_;
- open(my $F, "@args |");
+ my $cmd = shell_quote_best_effort(@args);
+ log::l("running: $cmd");
+ open(my $F, "$cmd |");
local $/ = "\b";
local $_;
@@ -160,6 +164,14 @@ sub formatMount_part {
if ($part->{toFormat}) {
fs::format::part($all_hds, $part, $wait_message);
}
+
+ #- setting user_xattr on /home (or "/" if no /home)
+ if (!$part->{isMounted} && $part->{fs_type} eq 'ext3'
+ && ($part->{mntpoint} eq '/home' ||
+ !fs::get::has_mntpoint('/home', $all_hds) && $part->{mntpoint} eq '/')) {
+ run_program::run('tune2fs', '-o', 'user_xattr', devices::make($part->{real_device} || $part->{device}));
+ }
+
fs::mount::part($part, 0, $wait_message);
}
diff --git a/perl-install/fs/get.pm b/perl-install/fs/get.pm
index 02e18fed5..0cdb55969 100644
--- a/perl-install/fs/get.pm
+++ b/perl-install/fs/get.pm
@@ -26,13 +26,14 @@ sub really_all_fstab {
}
sub fstab_and_holes {
- my ($all_hds) = @_;
- hds_fstab_and_holes(hds($all_hds)), @{$all_hds->{raids}}, @{$all_hds->{loopbacks}};
+ my ($all_hds, $b_non_readonly) = @_;
+ my @hds = grep { !($b_non_readonly && $_->{readonly}) } hds($all_hds);
+ hds_fstab_and_holes(@hds), @{$all_hds->{raids}}, @{$all_hds->{loopbacks}};
}
sub holes {
- my ($all_hds) = @_;
- grep { isEmpty($_) } fstab_and_holes($all_hds);
+ my ($all_hds, $b_non_readonly) = @_;
+ grep { isEmpty($_) } fstab_and_holes($all_hds, $b_non_readonly);
}
sub hds_holes {
grep { isEmpty($_) } hds_fstab_and_holes(@_);
@@ -141,8 +142,7 @@ sub is_same_hd {
my ($s2) = $hd2->{device} =~ m|https?://(.+?)/*$|;
$s1 eq $s2;
} else {
- $hd1->{devfs_device} && $hd2->{devfs_device} && $hd1->{devfs_device} eq $hd2->{devfs_device}
- || $hd1->{device_LABEL} && $hd2->{device_LABEL} && $hd1->{device_LABEL} eq $hd2->{device_LABEL}
+ $hd1->{device_LABEL} && $hd2->{device_LABEL} && $hd1->{device_LABEL} eq $hd2->{device_LABEL}
|| $hd1->{device} && $hd2->{device} && $hd1->{device} eq $hd2->{device};
}
}
diff --git a/perl-install/fs/mount.pm b/perl-install/fs/mount.pm
index 0d59de1cc..baf1ce837 100644
--- a/perl-install/fs/mount.pm
+++ b/perl-install/fs/mount.pm
@@ -11,6 +11,7 @@ use log;
sub set_loop {
my ($part) = @_;
+ $part->{device} ||= fs::get::mntpoint_prefixed($part->{loopback_device}) . $part->{loopback_file};
$part->{real_device} ||= devices::set_loop(devices::make($part->{device}), $part->{encrypt_key}, $part->{options} =~ /encryption=(\w+)/);
}
@@ -37,7 +38,7 @@ sub mount {
my @fs_modules = qw(ext3 hfs jfs nfs ntfs romfs reiserfs ufs xfs vfat);
my @types = (qw(ext2 proc sysfs usbfs usbdevfs iso9660 devfs devpts), @fs_modules);
- push @types, 'smb', 'smbfs', 'davfs' if !$::isInstall;
+ push @types, 'smb', 'smbfs', 'davfs2' if !$::isInstall;
if (!member($fs, @types) && !$::move) {
log::l("skipping mounting $dev partition ($fs)");
@@ -56,6 +57,11 @@ sub mount {
my @mount_opt = split(',', $o_options || '');
+ if ($::isInstall) {
+ #- those options need nls_XXX modules, and we don't this at install
+ @mount_opt = grep { $_ ne 'utf8' && !/^iocharset=/ } @mount_opt;
+ }
+
if ($fs eq 'vfat') {
@mount_opt = 'check=relaxed';
} elsif ($fs eq 'ntfs') {
@@ -70,7 +76,6 @@ sub mount {
push @mount_opt, 'ro' if $b_rdonly;
- log::l("calling mount -t $fs $dev $where @mount_opt");
$o_wait_message->(N("Mounting partition %s", $dev)) if $o_wait_message;
run_program::run('mount', '-t', $fs, $dev, $where, if_(@mount_opt, '-o', join(',', @mount_opt))) or die N("mounting partition %s in directory %s failed", $dev, $where);
}
@@ -108,9 +113,9 @@ sub umount {
$mntpoint =~ s|/$||;
log::l("calling umount($mntpoint)");
- syscall_('umount2', $mntpoint, 0) or do {
+ run_program::run('umount', $mntpoint) or do {
kill 15, fuzzy_pidofs('^fam\b');
- syscall_('umount2', $mntpoint, 0) or die N("error unmounting %s: %s", $mntpoint, $!);
+ run_program::run('umount', $mntpoint) or die N("error unmounting %s: %s", $mntpoint, $!);
};
substInFile { $_ = '' if /(^|\s)$mntpoint\s/ } '/etc/mtab'; #- do not care about error, if we can not read, we will not manage to write... (and mess mtab)
@@ -120,35 +125,37 @@ sub part {
my ($part, $b_rdonly, $o_wait_message) = @_;
log::l("mount_part: " . join(' ', map { "$_=$part->{$_}" } 'device', 'mntpoint', 'isMounted', 'real_mntpoint'));
- if ($part->{isMounted} && $part->{real_mntpoint} && $part->{mntpoint}) {
- log::l("remounting partition on " . fs::get::mntpoint_prefixed($part) . " instead of $part->{real_mntpoint}");
- if ($::isInstall) { #- ensure partition will not be busy.
- require install_any;
- install_any::getFile('XXX');
- }
- eval {
- umount($part->{real_mntpoint});
- rmdir $part->{real_mntpoint};
- symlinkf fs::get::mntpoint_prefixed($part), $part->{real_mntpoint};
- delete $part->{real_mntpoint};
- $part->{isMounted} = 0;
- };
- }
- return if $part->{isMounted};
+ return if $part->{isMounted} && !($part->{real_mntpoint} && $part->{mntpoint});
unless ($::testing) {
if (isSwap($part)) {
$o_wait_message->(N("Enabling swap partition %s", $part->{device})) if $o_wait_message;
swapon($part->{device});
+ } elsif ($part->{real_mntpoint}) {
+ my $mntpoint = fs::get::mntpoint_prefixed($part);
+
+ mkdir_p($mntpoint);
+ run_program::run_or_die('mount', '--move', $part->{real_mntpoint}, $mntpoint);
+
+ rmdir $part->{real_mntpoint};
+ symlinkf $mntpoint, $part->{real_mntpoint};
+ delete $part->{real_mntpoint};
+
+ my $dev = $part->{real_device} || fs::wild_device::from_part('', $part);
+ run_program::run_or_die('mount', $dev, $mntpoint, '-o', join(',', 'remount', $b_rdonly ? 'ro' : 'rw'));
} else {
$part->{mntpoint} or die "missing mount point for partition $part->{device}";
my $mntpoint = fs::get::mntpoint_prefixed($part);
my $options = $part->{options};
- if (isLoopback($part) || $part->{encrypt_key}) {
+ if ($part->{encrypt_key}) {
set_loop($part);
- $options = join(',', grep { !/^(encryption=|encrypted$)/ } split(',', $options)); #- we take care of this, don't let it mount see it
+ $options = join(',', grep { !/^(encryption=|encrypted$|loop$)/ } split(',', $options)); #- we take care of this, don't let it mount see it
+ } elsif (isLoopback($part)) {
+ #- mount will take care, but we must help it
+ devices::make("loop$_") foreach 0 .. 7;
+ $options = join(',', uniq('loop', split(',', $options))); #- ensure the loop options is used
} elsif ($part->{options} =~ /encrypted/) {
log::l("skip mounting $part->{device} since we do not have the encrypt_key");
return;
@@ -156,7 +163,19 @@ sub part {
$mntpoint = "/initrd/loopfs";
}
my $dev = $part->{real_device} || fs::wild_device::from_part('', $part);
- mount($dev, $mntpoint, $part->{fs_type}, $b_rdonly, $options, $o_wait_message);
+ my $fs_type = $part->{fs_type};
+ if ($fs_type eq 'auto' && $part->{media_type} eq 'cdrom' && $::isInstall) {
+ $fs_type = 'iso9660';
+ }
+ mount($dev, $mntpoint, $fs_type, $b_rdonly, $options, $o_wait_message);
+
+ if ($options =~ /usrquota|grpquota/ && $part->{fs_type} eq 'ext3') {
+ if (! find { -e "$mntpoint/$_" } qw(aquota.user aquota.group quota.user quota.group)) {
+ #- quotacheck will create aquota.user and/or aquota.group,
+ #- needed for quotas on ext3.
+ run_program::run('quotacheck', $mntpoint);
+ }
+ }
}
}
$part->{isMounted} = 1;
@@ -166,7 +185,7 @@ sub part {
sub umount_part {
my ($part) = @_;
- $part->{isMounted} || $part->{real_mntpoint} or return;
+ $part->{isMounted} or return;
unless ($::testing) {
if (isSwap($part)) {
@@ -174,7 +193,7 @@ sub umount_part {
} elsif (fs::type::carry_root_loopback($part)) {
umount("/initrd/loopfs");
} else {
- umount(fs::get::mntpoint_prefixed($part) || devices::make($part->{device}));
+ umount($part->{real_mntpoint} || fs::get::mntpoint_prefixed($part) || devices::make($part->{device}));
devices::del_loop(delete $part->{real_device}) if $part->{real_device};
}
}
@@ -186,8 +205,9 @@ sub umount_all {
log::l("unmounting all filesystems");
- foreach (sort { $b->{mntpoint} cmp $a->{mntpoint} } @$fstab) {
- $_->{mntpoint} and umount_part($_);
+ foreach (sort { $b->{mntpoint} cmp $a->{mntpoint} }
+ grep { $_->{mntpoint} && !$_->{real_mntpoint} } @$fstab) {
+ umount_part($_);
}
}
diff --git a/perl-install/fs/mount_options.pm b/perl-install/fs/mount_options.pm
index 71f05d129..596c3378d 100644
--- a/perl-install/fs/mount_options.pm
+++ b/perl-install/fs/mount_options.pm
@@ -31,7 +31,7 @@ sub unpack {
ntfs => [ qw(umask=0 umask=0022) ],
nfs => [ qw(rsize=8192 wsize=8192) ],
smbfs => [ qw(username= password=) ],
- davfs => [ qw(username= password= uid= gid=) ],
+ davfs2 => [ qw(username= password= uid= gid=) ],
reiserfs => [ 'notail' ],
);
push @{$per_fs{$_}}, 'usrquota', 'grpquota' foreach 'ext2', 'ext3', 'xfs';
@@ -136,11 +136,13 @@ have suidperl(1) installed.)"),
'supermount' => '',
- 'users' => N("Allow an ordinary user to mount the file system."),
+ 'users' => N("Allow every user to mount and umount the file system."),
+
+ 'user' => N("Allow an ordinary user to mount the file system."),
'usrquota' => N("Enable user disk quota accounting, and optionally enforce limits"),
- 'user_xattr' => N("Support user. extended attributes"),
+ 'user_xattr' => N("Support \"user.\" extended attributes"),
'umask=0' => N("Give write access to ordinary users"),
diff --git a/perl-install/fs/mount_point.pm b/perl-install/fs/mount_point.pm
new file mode 100644
index 000000000..b21a37b62
--- /dev/null
+++ b/perl-install/fs/mount_point.pm
@@ -0,0 +1,130 @@
+package fs::mount_point; # $Id$
+
+use diagnostics;
+use strict;
+
+use common;
+use any;
+use fs::type;
+
+sub guess_mount_point {
+ my ($part, $prefix, $user) = @_;
+
+ my %l = (
+ '/' => 'etc/fstab',
+ '/boot' => 'vmlinuz',
+ '/tmp' => '.X11-unix',
+ '/usr' => 'src',
+ '/var' => 'catman',
+ );
+
+ my $handle = any::inspect($part, $prefix) or return;
+ my $d = $handle->{dir};
+ my $mnt = find { -e "$d/$l{$_}" } keys %l;
+ $mnt ||= (stat("$d/.bashrc"))[4] ? '/root' : '/home/user' . ++$$user if -e "$d/.bashrc";
+ $mnt ||= (any { -d $_ && (stat($_))[4] >= 500 && -e "$_/.bashrc" } glob_($d)) ? '/home' : '';
+ ($mnt, $handle);
+}
+
+sub suggest_mount_points {
+ my ($fstab, $prefix, $uniq) = @_;
+
+ my $user;
+ foreach my $part (grep { isTrueFS($_) } @$fstab) {
+ $part->{mntpoint} && !$part->{unsafeMntpoint} and next; #- if already found via an fstab
+
+ my ($mnt, $handle) = guess_mount_point($part, $prefix, \$user) or next;
+
+ next if $uniq && fs::get::mntpoint2part($mnt, $fstab);
+ $part->{mntpoint} = $mnt; delete $part->{unsafeMntpoint};
+
+ #- try to find other mount points via fstab
+ fs::merge_info_from_fstab($fstab, $handle->{dir}, $uniq, 'loose') if $mnt eq '/';
+ }
+ $_->{mntpoint} and log::l("suggest_mount_points: $_->{device} -> $_->{mntpoint}") foreach @$fstab;
+}
+
+sub suggest_mount_points_always {
+ my ($fstab) = @_;
+
+ my @win = grep { isFat_or_NTFS($_) && maybeFormatted($_) && !$_->{is_removable} } @$fstab;
+ log::l("win parts: ", join ",", map { $_->{device} } @win) if @win;
+ if (@win == 1) {
+ #- Suggest /boot/efi on ia64.
+ $win[0]{mntpoint} = arch() =~ /ia64/ ? "/boot/efi" : "/mnt/windows";
+ } else {
+ my %w; foreach (@win) {
+ my $v = $w{$_->{device_windobe}}++;
+ $_->{mntpoint} = $_->{unsafeMntpoint} = "/mnt/win_" . lc($_->{device_windobe}) . ($v ? $v+1 : ''); #- lc cuz of StartOffice(!) cf dadou
+ }
+ }
+
+ my @sunos = grep { $_->{pt_type} == 2 } @$fstab; #- take only into account root partitions.
+ if (@sunos) {
+ my $v = '';
+ map { $_->{mntpoint} = $_->{unsafeMntpoint} = "/mnt/sunos" . ($v && ++$v) } @sunos;
+ }
+ #- a good job is to mount SunOS root partition, and to use mount point described here in /etc/vfstab.
+}
+
+sub validate_mount_points {
+ my ($fstab) = @_;
+
+ #- TODO: set the mntpoints
+
+ my %m; foreach (@$fstab) {
+ my $m = $_->{mntpoint};
+
+ $m && $m =~ m!^/! or next; #- there may be a lot of swaps or "none"
+
+ $m{$m} and die N("Duplicate mount point %s", $m);
+ $m{$m} = 1;
+
+ #- in case the type does not correspond, force it to ext3
+ fs::type::set_fs_type($_, 'ext3') if !isTrueFS($_) && !isOtherAvailableFS($_);
+ }
+ 1;
+}
+
+sub ask_mount_points {
+ my ($in, $fstab, $all_hds) = @_;
+
+ 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 = $in->wait_message('', N("Scanning partitions to find mount points"));
+ suggest_mount_points($fstab, $::prefix, 'uniq');
+ log::l("default mntpoint $_->{mntpoint} $_->{device}") foreach @fstab;
+ }
+ if (@fstab == 1) {
+ $fstab[0]{mntpoint} = '/';
+ } else {
+ $in->ask_from_({ messages => N("Choose the mount points"),
+ title => N("Partitioning"),
+ icon => 'banner-part',
+ interactive_help_id => 'ask_mntpoint_s',
+ callbacks => {
+ complete => sub {
+ require diskdrake::interactive;
+ eval { 1, find_index {
+ !diskdrake::interactive::check_mntpoint($in, $_->{mntpoint}, $_, $all_hds);
+ } @fstab };
+ },
+ },
+ },
+ [ map {
+ {
+ label => partition_table::description($_),
+ val => \$_->{mntpoint},
+ not_edit => 0,
+ list => [ '', fsedit::suggestions_mntpoint(fs::get::empty_all_hds()) ],
+ };
+ } @fstab ]) or return;
+ }
+ validate_mount_points($fstab);
+}
+
+1;
diff --git a/perl-install/fs/partitioning.pm b/perl-install/fs/partitioning.pm
new file mode 100644
index 000000000..16a07cb5b
--- /dev/null
+++ b/perl-install/fs/partitioning.pm
@@ -0,0 +1,82 @@
+package fs::partitioning; # $Id$
+
+use diagnostics;
+use strict;
+
+use common;
+use fs::format;
+use fs::type;
+
+sub guess_partitions_to_format {
+ my ($fstab) = @_;
+ foreach (@$fstab) {
+ $_->{mntpoint} = "swap" if isSwap($_);
+ $_->{mntpoint} or next;
+
+ add2hash_($_, { toFormat => $_->{notFormatted} }) if $_->{fs_type}; #- eg: do not set toFormat for isRawRAID (0xfd)
+ $_->{toFormatUnsure} ||= member($_->{mntpoint}, '/', '/usr');
+
+ if (!$_->{toFormat}) {
+ my $fs_type = fs::type::fs_type_from_magic($_);
+ if (!$fs_type || $fs_type ne $_->{fs_type}) {
+ log::l("setting toFormatUnsure for $_->{device} because <$_->{fs_type}> ne <$fs_type>");
+ $_->{toFormatUnsure} = 1;
+ }
+ }
+ }
+}
+
+sub choose_partitions_to_format {
+ my ($in, $fstab) = @_;
+
+ guess_partitions_to_format($fstab);
+
+ my @l = grep { !$_->{isMounted} && $_->{mntpoint} && !isSwap($_) &&
+ (!isFat_or_NTFS($_) || $_->{notFormatted}) &&
+ (!isOtherAvailableFS($_) || $_->{toFormat});
+ } @$fstab;
+ $_->{toFormat} = 1 foreach grep { isSwap($_) } @$fstab;
+
+ return if @l == 0 || every { $_->{toFormat} } @l;
+
+ #- keep it temporary until the guy has accepted
+ $_->{toFormatTmp} = $_->{toFormat} || $_->{toFormatUnsure} foreach @l;
+
+ $in->ask_from_(
+ { messages => N("Choose the partitions you want to format"),
+ icon => 'banner-part',
+ 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($_) && !member($_->{fs_type}, 'reiserfs', 'xfs', '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};
+ set_isFormatted($_, 0);
+ }
+}
+
+sub format_mount_partitions {
+ my ($in, $all_hds, $fstab) = @_;
+ my ($w, $wait_message) = $in->wait_message_with_progress_bar;
+ catch_cdie {
+ fs::format::formatMount_all($all_hds, $fstab, $wait_message);
+ } sub {
+ $@ =~ /fsck failed on (\S+)/ or return;
+ $in->ask_yesorno('', N("Failed to check filesystem %s. Do you want to repair the errors? (beware, you can lose data)", $1), 1);
+ };
+ undef $w; #- help perl (otherwise wait_message stays forever in curses)
+ die N("Not enough swap space to fulfill installation, please add some") if availableMemory() < 40 * 1024;
+}
+
+1;
diff --git a/perl-install/install_interactive.pm b/perl-install/fs/partitioning_wizard.pm
index 00be04908..d833f5b26 100644
--- a/perl-install/install_interactive.pm
+++ b/perl-install/fs/partitioning_wizard.pm
@@ -1,28 +1,16 @@
-package install_interactive; # $Id$
+package fs::partitioning_wizard; # $Id$
use diagnostics;
use strict;
use utf8;
use common;
-use partition_table;
-use partition_table::raw;
-use fs::type;
-use detect_devices;
-use install_steps;
-use install_any;
use devices;
use fsedit;
-use log;
-
-
-sub tellAboutProprietaryModules {
- my ($o) = @_;
- my @l = detect_devices::probe_name('Bad') or return;
- $o->ask_warn('', formatAlaTeX(
-N("Some hardware on your computer needs ``proprietary'' drivers to work.
-You can find some information about them at: %s", join(", ", @l))));
-}
+use fs::type;
+use fs::mount_point;
+use partition_table;
+use partition_table::raw;
#- unit of $mb is mega bytes, min and max are in sectors, this
#- function is used to convert back to sectors count the size of
@@ -36,39 +24,35 @@ sub from_Mb {
}
sub partition_with_diskdrake {
- my ($o, $all_hds, $nowizard) = @_;
+ my ($in, $all_hds, $fstab, $manual_fstab, $partitions, $partitioning_flags, $skip_mtab) = @_;
my $ok;
do {
$ok = 1;
my $do_force_reload = sub {
- $o->{all_hds} = fs::get::empty_all_hds();
- install_any::getHds($o, $o);
- $all_hds = $o->{all_hds};
- $o->{all_hds};
+ my $new_hds = fs::get::empty_all_hds();
+ fs::any::get_hds($new_hds, $fstab, $manual_fstab, $partitioning_flags, $skip_mtab, $in);
+ %$all_hds = %$new_hds;
+ $all_hds;
};
require diskdrake::interactive;
{
- local $::expert = $::expert;
- diskdrake::interactive::main($o, $all_hds, $nowizard, $do_force_reload, $o->interactive_help_sub_display_id('partition_with_diskdrake'));
- }
- if (delete $o->{wizard}) {
- partitionWizard($o, 'nodiskdrake') or redo;
- return 1;
+ local $::expert = 0;
+ diskdrake::interactive::main($in, $all_hds, $do_force_reload);
}
my @fstab = fs::get::fstab($all_hds);
unless (fs::get::root_(\@fstab)) {
$ok = 0;
- $o->ask_okcancel(N("Partitioning"), N("You must have a root partition.
+ $in->ask_okcancel(N("Partitioning"), N("You must have a root partition.
For this, create a partition (or click on an existing one).
Then choose action ``Mount point'' and set it to `/'"), 1, 'banner-part') or return;
}
if (!any { isSwap($_) } @fstab) {
- $ok &&= $o->ask_okcancel('', N("You do not have a swap partition.\n\nContinue anyway?"));
+ $ok &&= $in->ask_okcancel('', N("You do not have a swap partition.\n\nContinue anyway?"));
}
if (arch() =~ /ia64/ && !fs::get::has_mntpoint("/boot/efi", $all_hds)) {
- $o->ask_warn('', N("You must have a FAT partition mounted in /boot/efi"));
+ $in->ask_warn('', N("You must have a FAT partition mounted in /boot/efi"));
$ok = '';
}
} until $ok;
@@ -76,7 +60,7 @@ Then choose action ``Mount point'' and set it to `/'"), 1, 'banner-part') or ret
}
sub partitionWizardSolutions {
- my ($o, $all_hds) = @_;
+ my ($in, $all_hds, $all_fstab, $manual_fstab, $partitions, $partitioning_flags, $skip_mtab) = @_;
my $hds = $all_hds->{hds};
my $fstab = [ fs::get::fstab($all_hds) ];
my @wizlog;
@@ -93,7 +77,7 @@ sub partitionWizardSolutions {
my @hds_rw = grep { !$_->{readonly} } @$hds;
my @hds_can_add = grep { $_->can_raw_add } @hds_rw;
if (fs::get::hds_free_space(@hds_can_add) > $min_linux) {
- $solutions{free_space} = [ 20, N("Use free space"), sub { fsedit::auto_allocate($all_hds, $o->{partitions}); 1 } ];
+ $solutions{free_space} = [ 20, N("Use free space"), sub { fsedit::auto_allocate($all_hds, $partitions); 1 } ];
} else {
push @wizlog, N("Not enough free space to allocate new partitions") . ": " .
(@hds_can_add ?
@@ -103,7 +87,7 @@ sub partitionWizardSolutions {
if (my @truefs = grep { isTrueLocalFS($_) } @$fstab) {
#- value twice the ext2 partitions
- $solutions{existing_part} = [ 6 + @truefs + @$fstab, N("Use existing partitions"), sub { $o->ask_mntpoint_s($fstab) } ];
+ $solutions{existing_part} = [ 6 + @truefs + @$fstab, N("Use existing partitions"), sub { fs::mount_point::ask_mount_points($in, $fstab, $all_hds) } ];
} else {
push @wizlog, N("There is no existing partition to use");
}
@@ -115,9 +99,9 @@ sub partitionWizardSolutions {
[ -10 - @fats, N("Use the Microsoft Windows® partition for loopback"),
sub {
my ($s_root, $s_swap);
- my $part = $o->ask_from_listf('', N("Which partition do you want to use for Linux4Win?"), \&partition_table::description, \@ok_forloopback) or return;
+ my $part = $in->ask_from_listf('', N("Which partition do you want to use for Linux4Win?"), \&partition_table::description, \@ok_forloopback) or return;
$max_swap = $min_swap + 1 if $part->{free} - $max_swap < $min_linux;
- $o->ask_from('', N("Choose the sizes"), [
+ $in->ask_from('', N("Choose the sizes"), [
{ label => N("Root partition size in MB: "), val => \$s_root, min => $min_linux >> 11, max => min($part->{free} - $max_swap, $max_linux) >> 11, type => 'range' },
{ label => N("Swap partition size in MB: "), val => \$s_swap, min => $min_swap >> 11, max => $max_swap >> 11, type => 'range' },
]) or return;
@@ -137,7 +121,7 @@ sub partitionWizardSolutions {
$solutions{resize_fat} =
[ 6 - @ok_for_resize_fat, N("Use the free space on the Microsoft Windows® partition"),
sub {
- my $part = $o->ask_from_listf_raw({ messages => N("Which partition do you want to resize?"),
+ my $part = $in->ask_from_listf_raw({ messages => N("Which partition do you want to resize?"),
interactive_help_id => 'resizeFATChoose',
}, \&partition_table::description, \@ok_for_resize_fat) or return;
my $hd = fs::get::part2hd($part, $all_hds);
@@ -154,7 +138,7 @@ sub partitionWizardSolutions {
$@ and die N("The FAT resizer is unable to handle your partition,
the following error occurred: %s", formatError($@));
my $min_win = do {
- my $_w = $o->wait_message(N("Resizing"), N("Computing the size of the Microsoft Windows® partition"));
+ my $_w = $in->wait_message(N("Resizing"), N("Computing the size of the Microsoft Windows® partition"));
$resize_fat->min_size;
};
#- make sure that even after normalizing the size to cylinder boundaries, the minimun will be saved,
@@ -162,7 +146,7 @@ the following error occurred: %s", formatError($@));
$min_win += partition_table::raw::cylinder_size($hd);
$part->{size} > $min_linux + $min_swap + $min_freewin + $min_win or die N("Your Microsoft Windows® partition is too fragmented. Please reboot your computer under Microsoft Windows®, run the ``defrag'' utility, then restart the Mandriva Linux installation.");
- $o->ask_okcancel('', formatAlaTeX(
+ $in->ask_okcancel('', formatAlaTeX(
#-PO: keep the double empty lines between sections, this is formatted a la LaTeX
N("WARNING!
@@ -173,11 +157,11 @@ Your Microsoft Windows® partition will be now resized.
Be careful: this operation is dangerous. If you have not already done so, you first need to exit the installation, run \"chkdsk c:\" from a Command Prompt under Microsoft Windows® (beware, running graphical program \"scandisk\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), optionally run defrag, then restart the installation. You should also backup your data.
-When sure, press %s.",N("Next")))) or return;
+When sure, press %s.", N("Next")))) or return;
my $mb_size = $part->{size} >> 11;
- $o->ask_from('', N("Which size do you want to keep for Microsoft Windows® on"), [
- { label => N("partition %s", partition_table::description($part)), val => \$mb_size, min => $min_win >> 11, max => ($part->{size} - $min_linux - $min_swap) >> 11, type => 'range' },
+ $in->ask_from('', N("Which size do you want to keep for Microsoft Windows® on partition %s?", partition_table::description($part)), [
+ { label => N("Size"), val => \$mb_size, min => $min_win >> 11, max => ($part->{size} - $min_linux - $min_swap) >> 11, type => 'range' },
]) or return;
my $oldsize = $part->{size};
@@ -186,7 +170,7 @@ When sure, press %s.",N("Next")))) or return;
$hd->adjustEnd($part);
eval {
- my $_w = $o->wait_message(N("Resizing"), N("Resizing Microsoft Windows® partition"));
+ my $_w = $in->wait_message(N("Resizing"), N("Resizing Microsoft Windows® partition"));
$resize_fat->resize($part->{size});
};
if (my $err = $@) {
@@ -194,7 +178,7 @@ When sure, press %s.",N("Next")))) or return;
die N("FAT resizing failed: %s", formatError($err));
}
- $o->ask_warn('', N("To ensure data integrity after resizing the partition(s),
+ $in->ask_warn('', N("To ensure data integrity after resizing the partition(s),
filesystem checks will be run on your next boot into Microsoft Windows®")) if $part->{fs_type} ne 'vfat';
set_isFormatted($part, 1);
@@ -202,7 +186,7 @@ filesystem checks will be run on your next boot into Microsoft Windows®")) if $
partition_table::adjust_local_extended($hd, $part);
partition_table::adjust_main_extended($hd);
- fsedit::auto_allocate($all_hds, $o->{partitions});
+ fsedit::auto_allocate($all_hds, $partitions);
1;
} ];
} else {
@@ -213,29 +197,31 @@ filesystem checks will be run on your next boot into Microsoft Windows®")) if $
$solutions{wipe_drive} =
[ 10, fsedit::is_one_big_fat_or_NT($hds) ? N("Remove Microsoft Windows®") : N("Erase and use entire disk"),
sub {
- my $hd = $o->ask_from_listf_raw({ messages => N("You have more than one hard drive, which one do you install linux on?"),
+ my $hd = $in->ask_from_listf_raw({ messages => N("You have more than one hard drive, which one do you install linux on?"),
title => N("Partitioning"),
icon => 'banner-part',
interactive_help_id => 'takeOverHdChoose',
},
\&partition_table::description, \@hds_rw) or return;
- $o->ask_okcancel_({ messages => N("ALL existing partitions and their data will be lost on drive %s", partition_table::description($hd)),
+ $in->ask_okcancel_({ messages => N("ALL existing partitions and their data will be lost on drive %s", partition_table::description($hd)),
title => N("Partitioning"),
icon => 'banner-part',
interactive_help_id => 'takeOverHdConfirm' }) or return;
partition_table::raw::zero_MBR($hd);
- fsedit::auto_allocate($all_hds, $o->{partitions});
+ fsedit::auto_allocate($all_hds, $partitions);
1;
} ];
}
if (@hds_rw) {
- $solutions{diskdrake} = [ 0, N("Custom disk partitioning"), sub { partition_with_diskdrake($o, $all_hds, 'nowizard') } ];
+ $solutions{diskdrake} = [ 0, N("Custom disk partitioning"), sub {
+ partition_with_diskdrake($in, $all_hds, $all_fstab, $manual_fstab, $partitions, $partitioning_flags, $skip_mtab);
+ } ];
}
$solutions{fdisk} =
[ -10, N("Use fdisk"), sub {
- $o->enter_console;
+ $in->enter_console;
foreach (@$hds) {
print "\n" x 10, N("You can now partition %s.
When you are done, do not forget to save using `w'", partition_table::description($_));
@@ -248,25 +234,29 @@ When you are done, do not forget to save using `w'", partition_table::descriptio
}
waitpid($pid, 0);
}
- $o->leave_console;
+ $in->leave_console;
0;
- } ] if $o->{partitioning}{fdisk};
+ } ] if $partitioning_flags->{fdisk};
log::l("partitioning wizard log:\n", (map { ">>wizlog>>$_\n" } @wizlog));
%solutions;
}
-sub partitionWizard {
- my ($o, $b_nodiskdrake) = @_;
+sub warn_reboot_needed {
+ my ($in) = @_;
+ $in->ask_warn(N("Partitioning"), N("You need to reboot for the partition table modifications to take place"), icon => 'banner-part');
+}
+
+sub main {
+ my ($o, $all_hds, $fstab, $manual_fstab, $partitions, $partitioning_flags, $skip_mtab, $b_nodiskdrake) = @_;
- my %solutions = partitionWizardSolutions($o, $o->{all_hds});
+ my %solutions = partitionWizardSolutions($o, $all_hds, $fstab, $manual_fstab, $partitions, $partitioning_flags, $skip_mtab);
delete $solutions{diskdrake} if $b_nodiskdrake;
my @solutions = sort { $b->[0] <=> $a->[0] } values %solutions;
- my $level = $::expert ? -9999 : 0;
- my @sol = grep { $_->[0] >= $level } @solutions;
+ my @sol = grep { $_->[0] >= 0 } @solutions;
log::l('' . "solutions found: " . join('', map { $_->[1] } @sol) .
" (all solutions found: " . join('', map { $_->[1] } @solutions) . ")");
@@ -286,21 +276,8 @@ sub partitionWizard {
log::l("partitionWizard calling solution $sol->[1]");
my $ok = eval { $sol->[2]->() };
$@ and $o->ask_warn('', N("Partitioning failed: %s", formatError($@)));
- $ok or goto &partitionWizard;
+ $ok or goto &main;
1;
}
-sub upNetwork {
- my ($o, $b_pppAvoided) = @_;
- my $_w = $o->wait_message('', N("Bringing up the network"));
- install_steps::upNetwork($o, $b_pppAvoided);
-}
-sub downNetwork {
- my ($o, $b_pppOnly) = @_;
- my $_w = $o->wait_message('', N("Bringing down the network"));
- install_steps::downNetwork($o, $b_pppOnly);
-}
-
-
-
1;
diff --git a/perl-install/fs/proc_partitions.pm b/perl-install/fs/proc_partitions.pm
index 1cb3acfd1..b65ff747a 100644
--- a/perl-install/fs/proc_partitions.pm
+++ b/perl-install/fs/proc_partitions.pm
@@ -19,30 +19,17 @@ sub read {
my ($hds) = @_;
my @all = read_raw();
- my ($parts, $disks) = partition { $_->{dev} =~ /\d$/ && $_->{dev} !~ /^(sr|scd)/ } @all;
-
- my $devfs_like = any { $_->{dev} =~ m|/disc$| } @$disks;
+ my ($parts, $_disks) = partition { $_->{dev} =~ /\d$/ && $_->{dev} !~ /^(sr|scd)/ } @all;
fs::get_major_minor($hds);
- my %devfs2normal = map {
- my $hd = $_;
- my $disk = find { $_->{major} == $hd->{major} && $_->{minor} == $hd->{minor} } @$disks;
- $disk->{dev} => $_->{device};
- } @$hds;
-
my $prev_part;
foreach my $part (@$parts) {
- my $dev;
- if ($devfs_like) {
- $dev = -e "/dev/$part->{dev}" ? $part->{dev} : sprintf("0x%x%02x", $part->{major}, $part->{minor});
- $part->{rootDevice} = $devfs2normal{dirname($part->{dev}) . '/disc'};
- } else {
- $dev = $part->{dev};
- if (my $hd = find { $part->{dev} =~ /^\Q$_->{device}\E./ } @$hds) {
- put_in_hash($part, partition_table::hd2minimal_part($hd));
- }
+ my $dev = $part->{dev};
+ if (my $hd = find { $part->{dev} =~ /^\Q$_->{device}\E./ } @$hds) {
+ put_in_hash($part, partition_table::hd2minimal_part($hd));
}
+
undef $prev_part if $prev_part && ($prev_part->{rootDevice} || '') ne ($part->{rootDevice} || '');
$part->{device} = $dev;
diff --git a/perl-install/network/smbnfs.pm b/perl-install/fs/remote.pm
index bc5b92b60..ea22a04af 100644
--- a/perl-install/network/smbnfs.pm
+++ b/perl-install/fs/remote.pm
@@ -1,4 +1,4 @@
-package network::smbnfs; # $Id$
+package fs::remote; # $Id$
use strict;
use diagnostics;
diff --git a/perl-install/network/nfs.pm b/perl-install/fs/remote/nfs.pm
index 194a9c678..f946a4323 100644
--- a/perl-install/network/nfs.pm
+++ b/perl-install/fs/remote/nfs.pm
@@ -1,13 +1,13 @@
-package network::nfs; # $Id$
+package fs::remote::nfs; # $Id$
use strict;
use diagnostics;
use common;
-use network::smbnfs;
+use fs::remote;
use log;
-our @ISA = 'network::smbnfs';
+our @ISA = 'fs::remote';
sub to_fstab_entry {
my ($class, $e) = @_;
diff --git a/perl-install/network/smb.pm b/perl-install/fs/remote/smb.pm
index 7fca6d65c..933941326 100644
--- a/perl-install/network/smb.pm
+++ b/perl-install/fs/remote/smb.pm
@@ -1,4 +1,4 @@
-package network::smb; # $Id$
+package fs::remote::smb; # $Id$
use strict;
use diagnostics;
@@ -6,10 +6,10 @@ use diagnostics;
use common;
use fs::mount_options;
use network::network;
-use network::smbnfs;
+use fs::remote;
-our @ISA = 'network::smbnfs';
+our @ISA = 'fs::remote';
sub to_fstab_entry {
my ($class, $e) = @_;
@@ -120,7 +120,7 @@ sub to_credentials {
sub fstab_entry_to_credentials {
my ($part) = @_;
- my ($server_name) = network::smb->from_dev($part->{device}) or return;
+ my ($server_name) = fs::remote::smb->from_dev($part->{device}) or return;
my ($options, $unknown) = fs::mount_options::unpack($part);
$options->{'username='} && $options->{'password='} or return;
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm
index 807da7712..3cf99f307 100644
--- a/perl-install/fs/type.pm
+++ b/perl-install/fs/type.pm
@@ -26,11 +26,13 @@ my (%type_name2pt_type, %type_name2fs_type, %fs_type2pt_type, %pt_type2fs_type,
if_(arch() =~ /ppc|i.86|ia64|x86_64/,
0x83 => 'xfs', 'Journalised FS: XFS',
),
-if_(arch() =~ /ppc|i.86/,
+if_(arch() =~ /ppc|i.86|x86_64/,
0x83 => 'jfs', 'Journalised FS: JFS',
),
if_(arch() =~ /i.86|ia64|x86_64/,
0x0b => 'vfat', 'FAT32',
+ 0x07 => 'ntfs', 'NTFS',
+ 0x07 => 'ntfs-3g', 'NTFS-3G',
),
if_(arch() =~ /ppc/,
0x401 => '', 'Apple Bootstrap',
@@ -78,7 +80,6 @@ if_(arch() =~ /ppc/,
0x03 => '', 'XENIX usr',
0x04 => 'vfat', 'FAT16 <32M',
0x06 => 'vfat', 'FAT16',
- 0x07 => 'ntfs', 'NTFS',
0x07 => 'hpfs', 'HPFS',
0x08 => '', 'AIX',
),
@@ -123,7 +124,9 @@ if_(arch() !~ /ppc/,
0x75 => '', 'PC/IX',
0x80 => '', 'Old Minix',
0x81 => '', 'Minix / old Linux',
+ if_(!$::isInstall,
0x83 => 'reiser4', 'Journalised FS: Reiser4',
+ ),
0x84 => '', 'OS/2 hidden C: drive',
0x86 => '', 'NTFS volume set',
0x87 => '', 'NTFS volume set ',
@@ -182,9 +185,10 @@ if_(arch() !~ /ppc/,
}
-sub type_names() {
+sub type_names {
+ my ($expert) = @_;
my @l = @{$type_names{important}};
- push @l, @{$type_names{less_important}}, sort @{$type_names{other}} if $::expert;
+ push @l, @{$type_names{less_important}}, sort @{$type_names{other}} if $expert;
@l;
}
@@ -276,7 +280,7 @@ sub type_subpart_from_magic {
my ($part) = @_;
my $ids = call_vol_id($part);
- $part->{LABEL_from_magic} = $ids->{ID_FS_LABEL_SAFE} if $ids->{ID_FS_LABEL_SAFE};
+ $part->{LABEL_from_magic} = $ids->{ID_FS_LABEL} if $ids->{ID_FS_LABEL};
my $p;
if ($ids->{ID_FS_USAGE} eq 'raid') {
@@ -307,7 +311,7 @@ sub isRawLVM { $_[0]{pt_type} == 0x8e }
sub isRawRAID { $_[0]{pt_type} == 0xfd }
sub isSwap { $_[0]{fs_type} eq 'swap' }
sub isDos { arch() !~ /^sparc/ && ${{ 1 => 1, 4 => 1, 6 => 1 }}{$_[0]{pt_type}} }
-sub isFat_or_NTFS { member($_[0]{fs_type}, 'vfat', 'ntfs') }
+sub isFat_or_NTFS { member($_[0]{fs_type}, 'vfat', 'ntfs', 'ntfs-3g') }
sub isApple { $_[0]{pt_type} == 0x401 && defined $_[0]{isDriver} }
sub isAppleBootstrap { $_[0]{pt_type} == 0x401 && defined $_[0]{isBoot} }
diff --git a/perl-install/fs/wild_device.pm b/perl-install/fs/wild_device.pm
index 8fd38b0ce..dea15a4d3 100644
--- a/perl-install/fs/wild_device.pm
+++ b/perl-install/fs/wild_device.pm
@@ -43,17 +43,20 @@ sub to_subpart {
my $symlink = readlink("$::prefix$dev");
$dev =~ s!/u?dev/!!;
- if ($symlink && $symlink =~ m|^[^/]+$|) {
- $part{device_alias} = $dev;
- $dev = $symlink;
+ if ($symlink && $symlink !~ m!^/!) {
+ my $keep = 1;
+ if ($symlink =~ m!/!) {
+ $symlink = MDK::Common::File::concat_symlink("/dev/" . dirname($dev), $symlink);
+ $symlink =~ s!^/dev/!! or $keep = 0;
+ }
+ if ($keep) {
+ $part{device_LABEL} = $1 if $dev =~ m!^disk/by-label/(.*)!;
+ $part{device_alias} = $dev;
+ $dev = $symlink;
+ }
}
-
- if (my (undef, $part_number) = $dev =~ m!/(disc|part(\d+))$!) {
- $part{part_number} = $part_number if $part_number;
- $part{devfs_device} = $dev;
- } else {
- my $part_number = devices::part_number(\%part);
- $part{part_number} = $part_number if $part_number;
+ if (my $part_number = devices::part_number(\%part)) {
+ $part{part_number} = $part_number;
}
$part{device} = $dev;
return \%part;
@@ -73,8 +76,6 @@ sub from_part {
if ($part->{prefer_device_LABEL}) {
'LABEL=' . $part->{device_LABEL};
- } elsif ($part->{prefer_devfs_name}) {
- "/dev/$part->{devfs_device}";
} elsif ($part->{device_alias}) {
"/dev/$part->{device_alias}";
} else {
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm
index 58d5d736d..3266ec5d7 100644
--- a/perl-install/fsedit.pm
+++ b/perl-install/fsedit.pm
@@ -22,20 +22,20 @@ use fs;
%suggestions = (
N_("simple") => [
{ mntpoint => "/", size => 300 << 11, fs_type => 'ext3', ratio => 5, maxsize => 8000 << 11 },
- { mntpoint => "swap", size => 64 << 11, fs_type => 'swap', ratio => 1, maxsize => 1100 << 11 },
+ { mntpoint => "swap", size => 64 << 11, fs_type => 'swap', ratio => 1, maxsize => 4000 << 11 },
{ mntpoint => "/home", size => 300 << 11, fs_type => 'ext3', ratio => 3 },
], N_("with /usr") => [
- { mntpoint => "/", size => 250 << 11, fs_type => 'ext3', ratio => 1, maxsize => 2000 << 11 },
- { mntpoint => "swap", size => 64 << 11, fs_type => 'swap', ratio => 1, maxsize => 1100 << 11 },
+ { mntpoint => "/", size => 250 << 11, fs_type => 'ext3', ratio => 1, maxsize => 4000 << 11 },
+ { mntpoint => "swap", size => 64 << 11, fs_type => 'swap', ratio => 1, maxsize => 4000 << 11 },
{ mntpoint => "/usr", size => 300 << 11, fs_type => 'ext3', ratio => 4, maxsize => 8000 << 11 },
{ mntpoint => "/home", size => 100 << 11, fs_type => 'ext3', ratio => 3 },
], N_("server") => [
- { mntpoint => "/", size => 150 << 11, fs_type => 'ext3', ratio => 1, maxsize => 1600 << 11 },
- { mntpoint => "swap", size => 64 << 11, fs_type => 'swap', ratio => 2, maxsize => 1600 << 11 },
+ { mntpoint => "/", size => 150 << 11, fs_type => 'ext3', ratio => 1, maxsize => 4000 << 11 },
+ { mntpoint => "swap", size => 64 << 11, fs_type => 'swap', ratio => 2, maxsize => 4000 << 11 },
{ mntpoint => "/usr", size => 300 << 11, fs_type => 'ext3', ratio => 4, maxsize => 8000 << 11 },
{ mntpoint => "/var", size => 200 << 11, fs_type => 'ext3', ratio => 3 },
{ mntpoint => "/home", size => 150 << 11, fs_type => 'ext3', ratio => 3 },
- { mntpoint => "/tmp", size => 150 << 11, fs_type => 'ext3', ratio => 2, maxsize => 2000 << 11 },
+ { mntpoint => "/tmp", size => 150 << 11, fs_type => 'ext3', ratio => 2, maxsize => 4000 << 11 },
],
);
foreach (values %suggestions) {
@@ -99,7 +99,7 @@ sub lvms {
}
sub handle_dmraid {
- my ($drives) = @_;
+ my ($drives, $o_in) = @_;
@$drives > 1 or return;
@@ -111,6 +111,16 @@ sub handle_dmraid {
my @vgs = fs::dmraid::vgs();
log::l(sprintf('dmraid: ' . join(' ', map { "$_->{device} [" . join(' ', @{$_->{disks}}) . "]" } @vgs)));
+ if ($o_in && @vgs && $::isInstall) {
+ @vgs = grep {
+ $o_in->ask_yesorno('', N("BIOS software RAID detected on disks %s. Activate it?", join(' ', @{$_->{disks}})), 1);
+ } @vgs or do {
+ fs::dmraid::call_dmraid('-an');
+ return;
+ };
+ }
+ log::l("using dmraid on " . join(' ', map { $_->{device} } @vgs));
+
my @used_hds = map {
my $part = fs::get::device2part($_, $drives) or log::l("handle_dmraid: can't find $_ in known drives");
if_($part, $part);
@@ -129,7 +139,7 @@ sub get_hds {
my @drives = detect_devices::hds();
#- replace drives used in dmraid by the merged name
- handle_dmraid(\@drives) if !$flags->{nodmraid};
+ handle_dmraid(\@drives, $o_in) if !$flags->{nodmraid};
foreach my $hd (@drives) {
$hd->{file} = devices::make($hd->{device});
@@ -146,6 +156,7 @@ sub get_hds {
if (my $err = $@) {
log::l("test_for_bad_drives returned $err");
if ($err =~ /write error:/) {
+ log::l("setting $hd->{device} readonly");
$hd->{readonly} = 1;
} elsif ($err =~ /read error:/) {
next;
@@ -159,11 +170,7 @@ sub get_hds {
partition_table::raw::zero_MBR_and_dirty($hd);
} else {
my $handle_die_and_cdie = sub {
- if ($hd->{readonly}) {
- log::l("using /proc/partitions since diskdrake failed :(");
- fs::proc_partitions::use_($hd);
- 1;
- } elsif (my $type = fs::type::type_subpart_from_magic($hd)) {
+ if (my $type = fs::type::type_subpart_from_magic($hd)) {
#- non partitioned drive?
if (exists $hd->{usb_description} && $type->{fs_type}) {
#- USB keys
@@ -181,6 +188,10 @@ sub get_hds {
} else {
0;
}
+ } elsif ($hd->{readonly}) {
+ log::l("using /proc/partitions since diskdrake failed :(");
+ fs::proc_partitions::use_($hd);
+ 1;
} else {
0;
}
@@ -410,11 +421,11 @@ You should create a /boot partition first") if $mntpoint eq "/" && isLVM($part)
cdie N("This directory should remain within the root filesystem")
if member($mntpoint, qw(/root));
die N("This directory should remain within the root filesystem")
- if member($mntpoint, qw(/bin /dev /etc /lib /sbin /mnt));
+ if member($mntpoint, qw(/bin /dev /etc /lib /sbin /mnt /media));
die N("You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount point\n")
if !isTrueLocalFS($part) && $mntpoint eq '/';
die N("You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount point\n")
- if !isTrueFS($part) && member($mntpoint, fs::type::directories_needed_to_boot());
+ if !isTrueFS($part) && member($mntpoint, '/home', fs::type::directories_needed_to_boot());
die N("You can not use an encrypted file system for mount point %s", $mntpoint)
if $part->{options} =~ /encrypted/ && member($mntpoint, qw(/ /usr /var /boot));
@@ -443,7 +454,7 @@ sub allocatePartitions {
my @to_add = @$to_add;
- foreach my $part_ (fs::get::holes($all_hds)) {
+ foreach my $part_ (fs::get::holes($all_hds, 'non_readonly')) {
my ($start, $size, $dev) = @$part_{"start", "size", "rootDevice"};
my ($part, $suggested);
while ($suggested = suggest_part($part = { start => $start, size => 0, maxsize => $size, rootDevice => $dev },
diff --git a/perl-install/ftp.pm b/perl-install/ftp.pm
deleted file mode 100644
index fe507598a..000000000
--- a/perl-install/ftp.pm
+++ /dev/null
@@ -1,86 +0,0 @@
-package ftp; # $Id$
-
-use Net::FTP;
-
-use network::network;
-use log;
-
-my %hosts;
-
-1;
-
-sub fromEnv() {
- #- now URLPREFIX is generated from what is given by mdk-stage1 which is only this 4 variables.
- $ENV{URLPREFIX} = "ftp://" . ($ENV{LOGIN} && ($ENV{LOGIN} . ($ENV{PASSWORD} && ":$ENV{PASSWORD}") . '@')) .
- "$ENV{HOST}/$ENV{PREFIX}";
- @ENV{qw(HOST PREFIX LOGIN PASSWORD)};
-}
-
-sub new {
- my ($host, $prefix, $o_login, $o_password) = @_;
- my @l = do { if ($hosts{"$host$prefix"}) {
- @{$hosts{"$host$prefix"}};
- } else {
- my %options = (Passive => 1, Timeout => 60, Port => 21);
- $options{Firewall} = $ENV{PROXY} if $ENV{PROXY};
- $options{Port} = $ENV{PROXYPORT} if $ENV{PROXYPORT};
- unless ($o_login) {
- $o_login = 'anonymous';
- $o_password = '-drakx@';
- }
-
- my $ftp;
- foreach (1..10) {
- $ftp = Net::FTP->new(resolv($host), %options) or die "Can't resolve hostname '$host'\n";
- $ftp && $ftp->login($o_login, $o_password) and last;
-
- log::l("ftp login failed, sleeping before trying again");
- sleep 5 * $_;
- }
- $ftp or die "unable to open ftp connection to $host\n";
- $ftp->binary;
- $ftp->cwd($prefix);
-
- my @l = ($ftp, \ (my $_retr));
- $hosts{"$host$prefix"} = \@l;
- @l;
- } };
- wantarray() ? @l : $l[0];
-}
-
-sub getFile {
- my ($f, @para) = @_;
- $f eq 'XXX' and rewindGetFile(), return; #- special case to force closing connection.
- foreach (1..3) {
- my ($ftp, $retr) = new(@para ? @para : fromEnv());
- eval { $$retr->close if $$retr };
- $@ and rewindGetFile(); #- in case Timeout got us on "->close"
- $$retr = $ftp->retr($f) and return $$retr;
- $ftp->code == 550 and log::l("FTP: 550 file unavailable"), return;
- rewindGetFile();
- log::l("ftp get failed, sleeping before trying again");
- sleep 1;
- }
-}
-
-#-sub closeFiles() {
-#- #- close any existing connections
-#- foreach (values %hosts) {
-#- my $retr = $_->[1] if ref $_;
-#- $$retr->close if $$retr;
-#- undef $$retr;
-#- }
-#-}
-
-sub rewindGetFile() {
- #- close any existing connection.
- foreach (values %hosts) {
- my ($ftp, $retr) = @{$_ || []};
- #- do not let Timeout kill us!
- eval { $$retr->close } if $$retr;
- eval { $ftp->close } if $ftp;
- }
-
- #- make sure to reconnect to server.
- %hosts = ();
-}
diff --git a/perl-install/harddrake/autoconf.pm b/perl-install/harddrake/autoconf.pm
index baffc7647..791185b67 100644
--- a/perl-install/harddrake/autoconf.pm
+++ b/perl-install/harddrake/autoconf.pm
@@ -9,10 +9,15 @@ sub xconf {
require Xconfig::default;
require do_pkgs;
- $o->{raw_X} = Xconfig::default::configure(do_pkgs_standalone->new);
+ my $do_pkgs = do_pkgs_standalone->new;
+ $o->{raw_X} = Xconfig::default::configure($do_pkgs);
require Xconfig::main;
- Xconfig::main::configure_everything_auto_install($o->{raw_X}, do_pkgs_standalone->new, {}, { allowFB => 1 });
+ Xconfig::main::configure_everything_auto_install($o->{raw_X}, $do_pkgs, {}, { allowFB => 1 });
+
+ #- always disable compositing desktop effects when configuring a new video card
+ require Xconfig::glx;
+ Xconfig::glx::write({});
modules::load_category($modules_conf, 'various/agpgart');
}
@@ -33,16 +38,8 @@ sub mouse_conf {
sub pcmcia {
my ($pcic) = @_;
-
- #- should be set after installing the package above otherwise the file will be renamed.
- setVarsInSh("$::prefix/etc/sysconfig/pcmcia", {
- PCMCIA => bool2yesno($pcic),
- PCIC => $pcic,
- PCIC_OPTS => "",
- CORE_OPTS => "",
- });
- require services;
- services::set_status("pcmcia", $pcic);
+ require modules;
+ modules::set_preload_modules("pcmcia", if_($pcic, $pcic));
}
sub bluetooth {
@@ -81,4 +78,9 @@ sub laptop {
services::set_status("numlock", !$on_laptop);
}
+sub cpufreq() {
+ require cpufreq;
+ modules::set_preload_modules("cpufreq", cpufreq::get_modules());
+}
+
1;
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm
index 996b19c16..48c8fd11d 100644
--- a/perl-install/harddrake/data.pm
+++ b/perl-install/harddrake/data.pm
@@ -13,7 +13,7 @@ my @devices = detect_devices::probeall();
# Update me each time you handle one more devices class (aka configurator)
sub unknown() {
- grep { $_->{media_type} !~ /BRIDGE|class\|Mouse|DISPLAY|Hub|MEMORY_RAM|MULTIMEDIA_(VIDEO|AUDIO|OTHER)|NETWORK|Printer|SERIAL_(USB|SMBUS)|STORAGE_(IDE|OTHER|SCSI)|SYSTEM_OTHER|tape|UPS/
+ grep { $_->{media_type} !~ /BRIDGE|class\|Mouse|DISPLAY|Hub|MEMORY_RAM|MULTIMEDIA_(VIDEO|AUDIO|OTHER)|NETWORK|Printer|SERIAL_(USB|SMBUS)|STORAGE_(IDE|OTHER|RAID|SCSI)|SYSTEM_OTHER|tape|UPS/
&& !member($_->{driver}, qw(cpia_usb cyber2000fb forcedeth ibmcam megaraid mod_quickcam nvnet ohci1394 ov511 ov518_decomp scanner ultracam usbvideo usbvision))
&& $_->{driver} !~ /^ISDN|Mouse:USB|Removable:zip|class\|Mouse|sata|www.linmodems.org/
&& $_->{type} ne 'network'
@@ -23,7 +23,7 @@ sub unknown() {
my @alrd_dected;
sub f {
- my @devs = grep { !member(pciusb_id($_), @alrd_dected) } @_;
+ my @devs = grep { !member(pciusb_id($_), @alrd_dected) } grep { $_ } @_;
push @alrd_dected, map { pciusb_id($_) } @devs;
@devs;
}
@@ -138,7 +138,7 @@ our @tree =
string => N("AGP controllers"),
icon => "memory.png",
configurator => "",
- detector => sub { f(modules::probe_category('various/agpgart')) },
+ detector => sub { f(detect_devices::probe_category('various/agpgart')) },
checked_on_boot => 1,
},
@@ -156,7 +156,7 @@ our @tree =
class => "DVB",
string => N("DVB card"),
icon => "tv.png",
- detector => sub { f(modules::probe_category('multimedia/dvb')) },
+ detector => sub { f(detect_devices::probe_category('multimedia/dvb')) },
checked_on_boot => 1,
},
@@ -165,7 +165,8 @@ our @tree =
string => N("Tvcard"),
icon => "tv.png",
configurator => "/usr/bin/XawTV",
- detector => sub { f(grep { $_->{media_type} =~ /MULTIMEDIA_VIDEO/ && $_->{bus} eq 'PCI' || $_->{driver} eq 'usbvision' } @devices) },
+ detector => sub { f(detect_devices::probe_category('multimedia/tv')),
+ f(grep { $_->{media_type} =~ /MULTIMEDIA_VIDEO/ && $_->{bus} eq 'PCI' } @devices) },
checked_on_boot => 1,
},
@@ -198,8 +199,8 @@ our @tree =
configurator => "",
detector => sub {
require list_modules;
- my @modules = list_modules::category2modules('multimedia/webcam');
- f(grep { $_->{media_type} =~ /MULTIMEDIA_VIDEO/ && $_->{bus} ne 'PCI' || member($_->{driver}, @modules) } @devices);
+ my @modules = (list_modules::category2modules('multimedia/webcam'), 'Removable:camera');
+ f(grep { $_->{media_type} =~ /MULTIMEDIA_VIDEO|Video\|Video Control/ && $_->{bus} ne 'PCI' || member($_->{driver}, @modules) } @devices);
},
# managed by hotplug:
checked_on_boot => 0,
@@ -212,7 +213,7 @@ our @tree =
configurator => "",
detector => sub { detect_devices::getCPUs() },
# maybe should we install schedutils?
- checked_on_boot => 0,
+ checked_on_boot => 1,
},
{
@@ -220,7 +221,7 @@ our @tree =
string => N("ISDN adapters"),
icon => "modem.png",
configurator => "$sbindir/drakconnect",
- detector => sub { require network::isdn; my $isdn = network::isdn::detect_backend($modules_conf); if_(@$isdn, f(@$isdn)) },
+ detector => sub { require network::connection::isdn; my $isdn = network::connection::isdn::detect_backend($modules_conf); if_(@$isdn, f(@$isdn)) },
# we do not check these b/c this need user interaction (auth, ...):
checked_on_boot => 0,
},
@@ -231,7 +232,7 @@ our @tree =
string => N("USB sound devices"),
icon => "sound.png",
configurator => "",
- detector => sub { f(modules::probe_category('multimedia/usb_sound')) },
+ detector => sub { f(detect_devices::probe_category('multimedia/usb_sound')) },
checked_on_boot => 0,
},
@@ -240,7 +241,7 @@ our @tree =
string => N("Radio cards"),
icon => "tv.png",
configurator => "",
- detector => sub { f(modules::probe_category('multimedia/radio')) },
+ detector => sub { f(detect_devices::probe_category('multimedia/radio')) },
checked_on_boot => 0,
},
@@ -249,7 +250,7 @@ our @tree =
string => N("ATM network cards"),
icon => "hw_network.png",
configurator => "",
- detector => sub { f(modules::probe_category('network/atm')) },
+ detector => sub { f(detect_devices::probe_category('network/atm')) },
checked_on_boot => 0,
},
@@ -258,7 +259,7 @@ our @tree =
string => N("WAN network cards"),
icon => "hw_network.png",
configurator => "",
- detector => sub { f(modules::probe_category('network/wan')) },
+ detector => sub { f(detect_devices::probe_category('network/wan')) },
checked_on_boot => 0,
},
@@ -267,7 +268,7 @@ our @tree =
string => N("Bluetooth devices"),
icon => "hw_network.png",
configurator => "",
- detector => sub { f(modules::probe_category('bus/bluetooth')) },
+ detector => sub { f(detect_devices::probe_category('bus/bluetooth')) },
checked_on_boot => 1,
},
@@ -303,11 +304,9 @@ our @tree =
string => N("ADSL adapters"),
icon => "modem.png",
configurator => "$sbindir/drakconnect",
- detector => sub {
- require network::adsl;
- my $a = network::adsl::adsl_detect();
- $a ? f(map { @$_ } grep { defined($_) } values %$a) : ();
- },
+ detector => sub { f(detect_devices::get_xdsl_usb_devices()),
+ f(grep { $_->{description} =~ /Cohiba 3887 rev0/ } @devices);
+ },
# we do not check these b/c this need user interaction (auth, ...):
checked_on_boot => 0,
},
@@ -340,7 +339,7 @@ our @tree =
N("Game port controllers"),
icon => "joystick.png",
configurator => "",
- detector => sub { f(modules::probe_category('multimedia/gameport')) },
+ detector => sub { f(detect_devices::probe_category('multimedia/gameport')) },
checked_on_boot => 0,
},
@@ -349,7 +348,7 @@ our @tree =
string => N("Joystick"),
icon => "joystick.png",
configurator => "",
- detector => sub { f(modules::probe_category('input/joystick')), f(grep { $_->{description} =~ /Joystick/ } @devices) },
+ detector => sub { f(detect_devices::probe_category('input/joystick')), f(grep { $_->{description} =~ /Joystick/i } @devices) },
checked_on_boot => 0,
},
@@ -359,7 +358,7 @@ our @tree =
string => N("SATA controllers"),
icon => "ide_hd.png",
configurator => "",
- detector => sub { f(modules::probe_category('disk/sata')) },
+ detector => sub { f(detect_devices::probe_category('disk/sata')) },
checked_on_boot => 1,
},
@@ -368,7 +367,8 @@ our @tree =
string => N("RAID controllers"),
icon => "ide_hd.png",
configurator => "",
- detector => sub { f(modules::probe_category('disk/hardware_raid')) },
+ detector => sub { f(detect_devices::probe_category('disk/hardware_raid')),
+ f(grep { $_->{media_type} =~ /STORAGE_RAID/ } @devices) },
checked_on_boot => 1,
},
@@ -377,12 +377,30 @@ our @tree =
string => N("(E)IDE/ATA controllers"),
icon => "ide_hd.png",
configurator => "",
- detector => sub { f(modules::probe_category('disk/all_ide'), modules::probe_category('disk/ide')),
+ detector => sub { f(detect_devices::probe_category('disk/all_ide'), detect_devices::probe_category('disk/ide')),
f(grep { $_->{media_type} =~ /STORAGE_(IDE|OTHER)/ } @devices) },
checked_on_boot => 1,
},
{
+ class => "USB_STORAGE",
+ string => N("USB Mass Storage Devices"),
+ icon => "usb.png",
+ configurator => "",
+ detector => sub { f(grep { member($_->{driver}, qw(usb-storage ub)) } @devices) },
+ checked_on_boot => 0,
+ },
+
+ {
+ class => "CARD_READER",
+ string => N("Card readers"),
+ icon => "ide_hd.png",
+ configurator => "",
+ detector => sub { f(detect_devices::probe_category('disk/card_reader')) },
+ checked_on_boot => 1,
+ },
+
+ {
class => "FIREWIRE_CONTROLLER",
string => N("Firewire controllers"),
icon => "usb.png",
@@ -405,7 +423,7 @@ our @tree =
string => N("SCSI controllers"),
icon => "scsi.png",
configurator => "",
- detector => sub { f(grep { $_->{media_type} =~ /STORAGE_SCSI/ } @devices) },
+ detector => sub { f(detect_devices::probe_category('disk/scsi'), grep { $_->{media_type} =~ /STORAGE_SCSI/ } @devices) },
checked_on_boot => 1,
},
@@ -441,7 +459,7 @@ our @tree =
string => N("Bridges and system controllers"),
icon => "memory.png",
configurator => "",
- detector => sub { f(grep { $_->{media_type} =~ /BRIDGE|MEMORY_RAM|SYSTEM_OTHER/
+ detector => sub { f(grep { $_->{media_type} =~ /BRIDGE|MEMORY_RAM|SYSTEM_OTHER|MEMORY_OTHER|SYSTEM_PIC/
|| $_->{description} =~ /Parallel Port Adapter/;
} @devices) },
checked_on_boot => 0,
@@ -464,7 +482,7 @@ our @tree =
class => "MISC_INPUT",
string => N("Tablet and touchscreen"),
icon => "hw_mouse.png",
- detector => sub { f(modules::probe_category('input/tablet'), modules::probe_category('input/touchscreen')) },
+ detector => sub { f(detect_devices::probe_category('input/tablet'), detect_devices::probe_category('input/touchscreen')) },
configurator => "$sbindir/mousedrake",
checked_on_boot => 0,
},
diff --git a/perl-install/harddrake/sound.pm b/perl-install/harddrake/sound.pm
index 134fe0dba..72c53d8d1 100644
--- a/perl-install/harddrake/sound.pm
+++ b/perl-install/harddrake/sound.pm
@@ -260,10 +260,11 @@ To use alsa, one can either use:
[
{
label => N("Driver:"), val => \$new_driver, list => \@alternative, default => $new_driver, sort =>1,
- help => join("\n\n", map { qq("$_": ) . $des{$_} } @alternative),
allow_empty_list => 1,
format => sub { my ($drv) = @_;
- sprintf(($des{$drv} ? "$des{$drv} (%s [%s])" : "%s [%s]"), $drv, $drv =~ /^snd[-_]/ ? 'ALSA' : 'OSS');
+ $drv eq 'unknown' ? $drv :
+ sprintf(($des{$drv} ? "$des{$drv} (%s [%s])"
+ : "%s [%s]"), $drv, $drv =~ /^snd[-_]/ ? 'ALSA' : 'OSS');
}
},
{
@@ -316,7 +317,7 @@ sub trouble {
- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses
by default
-- \"grep sound-slot /etc/modules.conf\" will tell you what driver it
+- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it
currently uses
- \"/sbin/lsmod\" will enable you to check if its module (driver) is
diff --git a/perl-install/harddrake/v4l.pm b/perl-install/harddrake/v4l.pm
index d286a0f1c..a36621471 100644
--- a/perl-install/harddrake/v4l.pm
+++ b/perl-install/harddrake/v4l.pm
@@ -476,10 +476,6 @@ If your card is misdetected, you can force the right tuner and card types here.
[
{ label => N("Card model:"), val => \$conf{card}, list => [ keys %cards_list ], default => -1, sort =>1, separator => '|' },
{ label => N("Tuner type:"), val => \$conf{tuner}, list => [keys %tuners_lst], format => sub { $tuners_lst{$_[0]} }, sort => 1, separator => '|' },
- { label => N("Number of capture buffers:"), val => \$conf{gbuffers}, min => $min_gbuffers, max => $max_gbuffers, sort => 1, default => 0, type => 'range', advanced => 1, help => N("number of capture buffers for mmap'ed capture") },
- if_($driver eq 'bttv',
- { label => N("PLL setting:"), val => \$conf{pll}, list => [keys %pll_lst], format => sub { $pll_lst{$_[0]} }, sort => 1, default => 0, advanced =>1 },
- { label => N("Radio support:"), val => \$conf{radio}, type => "bool", text => N("enable radio support") }),
]
))
{
diff --git a/perl-install/install/Makefile b/perl-install/install/Makefile
new file mode 100644
index 000000000..7684ebf3d
--- /dev/null
+++ b/perl-install/install/Makefile
@@ -0,0 +1,101 @@
+include ../../Makefile.config
+include ../Makefile.config
+
+PRODUCT=drakx-installer-stage2
+
+ROOTDEST = /export
+STAGE2_DEST = $(ROOTDEST)/install/stage2
+DEST = $(STAGE2_DEST)/live
+
+REP4PMS = /usr/lib/libDrakX
+DESTREP4PMS = $(DEST)$(REP4PMS)
+
+all: xs
+
+clean xs:
+ make -C .. $@
+
+tar:
+ rm -rf $(PRODUCT)*.tar* $(PRODUCT)-$(VERSION)
+ mkdir -p $(PRODUCT)-$(VERSION)
+ svn export -q .. $(PRODUCT)-$(VERSION)/perl-install
+ svn export -q ../../tools $(PRODUCT)-$(VERSION)/tools
+ svn export -q ../../kernel $(PRODUCT)-$(VERSION)/kernel
+ cp ../../Makefile.config $(PRODUCT)-$(VERSION)/
+ tar cfj $(PRODUCT)-$(VERSION).tar.bz2 $(PRODUCT)-$(VERSION)
+ rm -rf $(PRODUCT)-$(VERSION)
+
+install:
+ $(MAKE) full_stage2
+ echo $(VERSION) > $(STAGE2_DEST)/VERSION
+
+install_pms:
+ [ -d $(DEST) ] || ../../tools/mdkinst_stage2_tool --uncompress $(STAGE2_DEST)
+
+ for i in `perl -ne 's/sub (\w+?)_?(\(\))? {.*/$$1/ and print' commands.pm` sync; do ln -sf commands $(DEST)/usr/bin/$$i; done
+
+ install -d $(DESTREP4PMS)
+ cd .. ; for i in $(PMS); do \
+ dest=$(DESTREP4PMS)/`dirname $$i`; \
+ install -d $$dest; \
+ perl -pe 's/#[-+].*//; $$_ = "\n" if (/^=(head|begin)/ .. /^=cut/) || /use (diagnostics|strict|vars|warnings)/' $$i > $(DESTREP4PMS)/$$i; \
+ done
+
+ cp ../share/*.rc share/*.rc $(DESTREP4PMS)
+ chmod a+x $(DESTREP4PMS)/install/install2
+ chmod a+x $(DESTREP4PMS)/install/commands
+
+get_needed_files: xs
+ REP4PMS=$(REP4PMS) ../../tools/install-xml-file-list share/list.xml $(DEST)
+ chmod u-s -R $(DEST) # for mount/umount
+ share/generate-xlocales $(DEST)
+
+ mv -f $(DEST)/usr/$(LIB)/*.so* $(DEST)/$(LIB)
+ ../../tools/simplify-drakx-modules $(DEST)/usr/*/*/*/utf8_heavy.pl
+
+ perl -I.. -Mlang -e 'symlink "UTF-8", "$(DEST)/usr/share/locale/$$_" foreach lang::list_langs()'
+
+ perl -ane 'symlink "$$F[1]", "$(DEST)$$F[0]"' share/aliases
+ifeq (ia64,$(ARCH))
+ ln -sf bash $(DEST)/bin/sh
+else
+ ln -sf ash $(DEST)/bin/sh
+endif
+
+ mkfontdir $(DEST)/usr/share/fonts
+ fc-cache -f $(DEST)/usr/share/fonts
+
+ $(MAKE) -C ../share/po install SUDO= LOCALEDIR=$(DEST)/usr/share/locale_special
+ $(MAKE) -C help/po install SUDO= LOCALEDIR=$(DEST)/usr/share/locale_special
+ $(MAKE) -C share/po install SUDO= LOCALEDIR=$(DEST)/usr/share/locale_special
+# POFILES to disable for installation:
+# be,fur: too few messages translated;
+# ta: font problem
+ rm -rf $(DEST)/usr/share/locale_special/{be,fur,ta}
+
+full_stage2:
+ $(MAKE) stage2
+ $(MAKE) compress
+
+compress:
+ ../../tools/mdkinst_stage2_tool --clean --compress $(STAGE2_DEST)
+
+stage2:
+ rm -rf $(DEST)
+ mkdir -p $(DEST)
+ $(MAKE) get_needed_files
+ $(MAKE) install_pms
+
+dont_run_directly_stage2:
+ [ -d $(DEST) ] || ../../tools/mdkinst_stage2_tool --uncompress $(STAGE2_DEST)
+ echo -e '#!/bin/sh\n\nexec /usr/bin/busybox sh' > $(DEST)/usr/bin/runinstall2.sh
+ chmod a+x $(DEST)/usr/bin/runinstall2.sh
+ ln -sf runinstall2.sh $(DEST)/usr/bin/runinstall2
+
+trace_stage2:
+ [ -d $(DEST) ] || ../../tools/mdkinst_stage2_tool --uncompress $(STAGE2_DEST)
+ f=`perldoc -l Devel::Trace`; install -m 644 -D $$f $(DEST)$$f
+ perl -pi -e 's|(#!/usr/bin/perl).*|$$1 -d:Trace|' $(DEST)/usr/bin/runinstall2
+
+# [pixel] after make install_pms:
+# sudo sh -c 'CLEAN=1 perl ../../tools/drakx-in-chroot /export /tmp/rr --useless_thing_accepted --kickstart install/auto_inst.cfg.local.pl'
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
new file mode 100644
index 000000000..ed4e7c23f
--- /dev/null
+++ b/perl-install/install/NEWS
@@ -0,0 +1,119 @@
+- really allow having name with "/" in media.cfg
+
+Version 10.4.129 - 4 April 2007, by Pascal "Pixel" Rigaux
+
+- move advertising out of drakx-installer-stage2 into drakx-installer-advertising
+
+Version 10.4.128 - 3 April 2007, by Pascal "Pixel" Rigaux
+
+- don't configure /etc/kde/kdm/kdmrc if it doesn't exist
+ (other kdmrc.rpmnew will be created, many important values will be missing)
+- fix ext3 formatting with label and progress bar (#30032)
+- fix taking screenshot
+- prefering libkdebase4-kmenuedit over libkdebase46-kmenuedit to ensure
+ kdebase-kmenuedit is chosen instead of kdebase4-kmenuedit
+
+Version 10.4.126 - 29 March 2007, by Olivier "blino" Blin
+
+- use pci_domain when matching sysfs device and computing
+ sysfs device path
+
+Version 10.4.124 - 29 March 2007, by Olivier "blino" Blin
+
+- correctly mark "update" media in urpmi.cfg
+- fix multiple detection of PCI network cards with the same driver (#29688)
+- rename o->{build_live_system} as more generic o->{match_all_hardware} name
+- automatically install network drivers when matching all hardware
+
+Version 10.4.122 - 29 March 2007, by Thierry Vignaud
+
+- final banner image
+- fix installing kernel-source-stripped
+- include mmc_block for card readers
+
+Version 10.4.120 - 23 March 2007, by Pascal "Pixel" Rigaux
+
+- allow having name with "/" in media.cfg
+- interactive::curses:
+ o handle multi-line labels, and wrap too long labels (#29060)
+- do not use bold&big for advanced_messages
+ (fixes authentication choice being big & ugly, #28676)
+
+Version 10.4.119 - 22 March 2007, by Pascal "Pixel" Rigaux
+
+- use concat_symlink to get rid of ../../ in urpmi.cfg on x86_64 for main32 medium
+- don't complain about missing pata drivers
+- do not install nspluginwrapper on ia32 (#29808)
+- use http://api.mandriva.com/mirrors/$type.$version.$arch instead of simply
+ $version.$arch (useful to differentiate CorpoDesktop4)
+- fix ati/nvidia drivers installation on One
+
+Version 10.4.116 - 19 March 2007, by Thierry Vignaud
+
+- do not fallback on english HTML help but on on old translated help
+- handle more drivers (dvb, ethernet, gigabit, ide, pcmcia, sata,
+ sound, tv, usb hosts, wan, webcam, wireless)
+- 2007 RC logo
+- diskdrake: handle mkntfs
+
+Version 10.4.115 - 16 March 2007, by Pascal "Pixel" Rigaux
+
+- use kernel-*latest to select the kernel,
+ and also kernel-source-stripped-latest when dkms is installed on upgrade
+- add some nice code selecting the various kernel-source-stripped (or
+ kernel-.*-devel) corresponding to the chosen kernels
+- allow having rpmsrate on CD0 overriding rpmsrate on CD1
+ (bugged introduced in rev 37253)
+- when using 2 media_cfg in auto_inst,
+ allow specifying which rpmsrate will be used
+- for locales with fallback (eg: br:fr), try main language before
+ english
+
+Version 10.4.114 - 16 March 2007, by Pascal "Pixel" Rigaux
+
+- use grub-gfxmenu command to configure /boot/gfxmenu for grub
+
+Version 10.4.111 - 15 March 2007, by Olivier "blino" Blin
+
+- correctly translate Driver2 to package name (fix ati packages installation on One)
+
+Version 10.4.109 - 15 March 2007, by Thierry Vignaud
+
+- display HTML help if availlable
+- load tifm_sd if needed (#25133)
+
+Version 10.4.107 - 13 March 2007, by Pascal "Pixel" Rigaux
+
+- prefer kde3 packages over kde4 packages
+
+Version 10.4.106 - 12 March 2007, by Pascal "Pixel" Rigaux
+
+- move the lib64 symlink in share/symlinks (to fix drakx-in-chroot),
+ this will leave a harmless dangling symlink in most cases though
+- configure "tifm_7xx1" driven card_reader (#25133)
+- do not bother configure old modutils
+- fix PCI descriptions returned from pci_probe()
+- enhance wrapping in wizards
+
+Version 10.4.103 - 6 March 2007, by Pascal "Pixel" Rigaux
+
+- add icons needed by xorg configuration (#29069)
+
+Version 10.4.98 - 22 February 2007, by Thierry Vignaud
+
+- do not install athcool on ia32, it freeze at least some nforce2 machines
+- fix regexp for kernel-2.6.17.10mdv for autoinstall install & liveCD building
+- include fsck.jfs on x86_64 too (#28821)
+- update kernel/list_modules.pm
+
+Version 10.4.96 - 16 February 2007, by Pascal "Pixel" Rigaux
+
+- handle vga=0x3.. instead of vga=7..
+- prefer free-kde-config (otherwise one-kde-config is chosen)
+- use system-wide raghu.ttf (pablo)
+- fix rights on files
+- fix automatic selection of proprietary video kernel packages (blino)
+- modify custom.conf instead of gdm.conf (blino)
+
+10.4.93
+- really fix command bug
diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm
new file mode 100644
index 000000000..19d3dff22
--- /dev/null
+++ b/perl-install/install/any.pm
@@ -0,0 +1,1411 @@
+package install::any; # $Id$
+
+use strict;
+
+our @ISA = qw(Exporter);
+our @EXPORT_OK = qw(addToBeDone);
+
+#-######################################################################################
+#- misc imports
+#-######################################################################################
+use common;
+use run_program;
+use fs::type;
+use fs::format;
+use fs::any;
+use partition_table;
+use devices;
+use modules;
+use detect_devices;
+use install::media 'getFile_';
+use lang;
+use any;
+use log;
+
+our @advertising_images;
+
+sub drakx_version {
+ my ($o) = @_;
+
+ if ($::move) {
+ sprintf "DrakX-move v%s", cat_('/usr/bin/stage2/move.pm') =~ /move\.pm,v (\S+ \S+ \S+)/;
+ } else {
+ my $version = cat__(getFile_($o->{stage2_phys_medium}, "install/stage2/VERSION"));
+ sprintf "DrakX v%s", chomp_($version);
+ }
+}
+
+#-######################################################################################
+#- Functions
+#-######################################################################################
+sub dont_run_directly_stage2() {
+ readlink("/usr/bin/runinstall2") eq "runinstall2.sh";
+}
+
+sub is_network_install {
+ my ($o) = @_;
+ member($o->{method}, qw(ftp http nfs));
+}
+
+
+sub start_i810fb() {
+ my ($vga) = cat_('/proc/cmdline') =~ /vga=(\S+)/;
+ return if !$vga || listlength(cat_('/proc/fb'));
+
+ my %vga_to_xres = (0x311 => '640', 0x314 => '800', 0x317 => '1024');
+ my $xres = $vga_to_xres{$vga} || '800';
+
+ log::l("trying to load i810fb module with xres <$xres> (vga was <$vga>)");
+ eval { modules::load('intel-agp') };
+ eval {
+ my $opt = "xres=$xres hsync1=32 hsync2=48 vsync1=50 vsync2=70 vram=2 bpp=16 accel=1 mtrr=1"; #- this sucking i810fb does not accept floating point numbers in hsync!
+ modules::load_with_options([ 'i810fb' ], { i810fb => $opt });
+ };
+}
+
+sub spawnShell() {
+ return if $::local_install || $::testing || dont_run_directly_stage2();
+
+ my $shellpid_file = '/var/run/drakx_shell.pid';
+ return if -e $shellpid_file && -d '/proc/' . chomp_(cat_($shellpid_file));
+
+ if (my $shellpid = fork()) {
+ output($shellpid_file, $shellpid);
+ return;
+ }
+
+ $ENV{DISPLAY} ||= ":0"; #- why not :pp
+
+ local *F;
+ sysopen F, "/dev/tty2", 2 or log::l("cannot open /dev/tty2 -- no shell will be provided: $!"), goto cant_spawn;
+
+ open STDIN, "<&F" or goto cant_spawn;
+ open STDOUT, ">&F" or goto cant_spawn;
+ open STDERR, ">&F" or goto cant_spawn;
+ close F;
+
+ print drakx_version($::o), "\n";
+
+ c::setsid();
+
+ ioctl(STDIN, c::TIOCSCTTY(), 0) or warn "could not set new controlling tty: $!";
+
+ my @args; -e '/etc/bashrc' and @args = qw(--rcfile /etc/bashrc);
+ foreach (qw(/bin/bash /usr/bin/busybox /bin/sh)) {
+ -x $_ or next;
+ my $program_name = /busybox/ ? "/bin/sh" : $_; #- since perl_checker is too dumb
+ exec { $_ } $program_name, @args or log::l("exec of $_ failed: $!");
+ }
+
+ log::l("cannot open any shell");
+cant_spawn:
+ c::_exit(1);
+}
+
+sub getAvailableSpace {
+ my ($o) = @_;
+
+ #- make sure of this place to be available for installation, this could help a lot.
+ #- currently doing a very small install use 36Mb of postinstall-rpm, but installing
+ #- these packages may eat up to 90Mb (of course not all the server may be installed!).
+ #- 65mb may be a good choice to avoid almost all problem of insuficient space left...
+ my $minAvailableSize = 65 * sqr(1024);
+
+ my $n = !$::testing && getAvailableSpace_mounted($::prefix) ||
+ getAvailableSpace_raw($o->{fstab}) * 512 / 1.07;
+ $n - max(0.1 * $n, $minAvailableSize);
+}
+
+sub getAvailableSpace_mounted {
+ my ($prefix) = @_;
+ my $dir = -d "$prefix/usr" ? "$prefix/usr" : $prefix;
+ my (undef, $free) = MDK::Common::System::df($dir) or return;
+ log::l("getAvailableSpace_mounted $free KB");
+ $free * 1024 || 1;
+}
+sub getAvailableSpace_raw {
+ my ($fstab) = @_;
+
+ do { $_->{mntpoint} eq '/usr' and return $_->{size} } foreach @$fstab;
+ do { $_->{mntpoint} eq '/' and return $_->{size} } foreach @$fstab;
+
+ if ($::testing) {
+ my $nb = 450;
+ log::l("taking ${nb}MB for testing");
+ return $nb << 11;
+ }
+ die "missing root partition";
+}
+
+sub preConfigureTimezone {
+ my ($o) = @_;
+ require timezone;
+
+ #- can not be done in install cuz' timeconfig %post creates funny things
+ add2hash($o->{timezone}, timezone::read()) if $o->{isUpgrade};
+
+ $o->{timezone}{timezone} ||= timezone::bestTimezone($o->{locale}{country});
+
+ my $utc = every { !isFat_or_NTFS($_) } @{$o->{fstab}};
+ my $ntp = timezone::ntp_server();
+ add2hash_($o->{timezone}, { UTC => $utc, ntp => $ntp });
+}
+
+sub ask_suppl_media_method {
+ my ($o) = @_;
+ our $suppl_already_asked;
+
+ my $msg = $suppl_already_asked
+ ? N("Do you have further supplementary media?")
+ : formatAlaTeX(
+#-PO: keep the double empty lines between sections, this is formatted a la LaTeX
+ N("The following media have been found and will be used during install: %s.
+
+
+Do you have a supplementary installation medium to configure?",
+ join(", ", map { $_->{name} } install::media::allMediums($o->{packages}))));
+
+ my %l = my @l = (
+ '' => N("None"),
+ 'cdrom' => N("CD-ROM"),
+ 'http' => N("Network (HTTP)"),
+ 'ftp' => N("Network (FTP)"),
+ 'nfs' => N("Network (NFS)"),
+ );
+
+ $o->ask_from(
+ '', $msg,
+ [ {
+ val => \my $suppl,
+ list => [ map { $_->[0] } group_by2(@l) ],
+ type => 'list',
+ format => sub { $l{$_[0]} },
+ } ],
+ );
+
+ $suppl_already_asked = 1;
+ $suppl;
+}
+
+#- if the supplementary media is networked, but not the main one, network
+#- support must be installed and network started.
+sub prep_net_suppl_media {
+ my ($o) = @_;
+
+ require network::tools;
+ my (undef, $is_up, undef) = network::tools::get_internet_connection($o->{net});
+
+ return if our $net_suppl_media_configured && $is_up;
+ $net_suppl_media_configured = 1;
+
+ #- install basesystem now
+ $o->do_pkgs->ensure_is_installed('basesystem', undef, 1);
+
+ require network::netconnect;
+ network::netconnect::real_main($o->{net}, $o, $o->{modules_conf});
+ require install::interactive;
+ install::interactive::upNetwork($o);
+ sleep(3);
+}
+
+sub ask_url {
+ my ($in, $o_url) = @_;
+
+ my $url = $o_url;
+ $in->ask_from_({ messages => N("URL of the mirror?"), focus_first => 1 }, [
+ { val => \$url,
+ validate => sub {
+ if ($url =~ m!^(http|ftp)://!) {
+ 1;
+ } else {
+ $in->ask_warn('', N("URL must start with ftp:// or http://"));
+ 0;
+ }
+ } } ]) && $url;
+}
+sub ask_mirror {
+ my ($o, $type, $o_url) = @_;
+
+ require mirror;
+
+ my $mirrors = eval {
+ my $_w = $o->wait_message('', N("Contacting Mandriva Linux web site to get the list of available mirrors..."));
+ mirror::list($o->{product_id}, $type);
+ };
+ my $err = $@;
+ if (!$mirrors) {
+ $o->ask_warn('', N("Failed contacting Mandriva Linux web site to get the list of available mirrors") . "\n$err");
+ return ask_url($o, $o_url);
+ }
+
+ my $give_url = { country => '-', host => 'URL' };
+
+ my $mirror = $o_url ? (find { $_->{url} eq $o_url } @$mirrors) || $give_url
+ #- use current time zone to select best mirror
+ : mirror::nearest($o->{timezone}{timezone}, $mirrors);
+
+ $o->ask_from_({ messages => N("Choose a mirror from which to get the packages"),
+ cancel => N("Cancel"),
+ }, [ { separator => '|',
+ format => \&mirror::mirror2text,
+ list => [ @$mirrors, $give_url ],
+ val => \$mirror,
+ },
+ ]) or return;
+
+ my $url;
+ if ($mirror eq $give_url) {
+ $url = ask_url($o, $o_url) or goto &ask_mirror;
+ } else {
+ $url = $mirror->{url};
+ }
+ $url =~ s!/main/?$!!;
+ log::l("chosen mirror: $url");
+ $url;
+}
+
+sub ask_suppl_media_url {
+ my ($o, $method, $o_url) = @_;
+
+ if ($method eq 'ftp' || $method eq 'http') {
+ install::any::ask_mirror($o, 'distrib', $o_url);
+ } elsif ($method eq 'cdrom') {
+ 'cdrom://';
+ } elsif ($method eq 'nfs') {
+ my ($host, $dir) = $o_url ? $o_url =~ m!nfs://(.*?)(/.*)! : ();
+ $o->ask_from_(
+ { title => N("NFS setup"),
+ messages => N("Please enter the hostname and directory of your NFS media"),
+ focus_first => 1,
+ callbacks => {
+ complete => sub {
+ $host or $o->ask_warn('', N("Hostname missing")), return 1, 0;
+ $dir eq '' || begins_with($dir, '/') or $o->ask_warn('', N("Directory must begin with \"/\"")), return 1, 1;
+ 0;
+ },
+ } },
+ [ { label => N("Hostname of the NFS mount ?"), val => \$host },
+ { label => N("Directory"), val => \$dir } ],
+ ) or return;
+ $dir =~ s!/+$!!;
+ $dir ||= '/';
+ "nfs://$host$dir";
+ } else { internal_error("bad method $method") }
+}
+sub selectSupplMedia {
+ my ($o) = @_;
+ my $url;
+
+ ask_method:
+ my $method = ask_suppl_media_method($o) or return;
+
+ #- configure network if needed
+ if (!scalar keys %{$o->{net}{ifcfg}} && $method !~ /^(?:cdrom|disk)/ && !$::local_install) {
+ prep_net_suppl_media($o);
+ }
+
+ ask_url:
+ $url = ask_suppl_media_url($o, $method, $url) or goto ask_method;
+
+ my $phys_medium = install::media::url2mounted_phys_medium($o, $url, undef, N("Supplementary")) or $o->ask_warn('', formatError($@)), goto ask_url;
+ $phys_medium->{is_suppl} = 1;
+ $phys_medium->{unknown_CD} = 1;
+
+ my $arch = $o->{product_id}{arch};
+ my $field = $phys_medium->{device} ? 'rel_path' : 'url';
+ my $val = $phys_medium->{$field};
+ my $val0 = $val =~ m!^(.*?)(/media)?/?$! && "$1/media";
+ my $val2 = $val =~ m!^(.*?)(/\Q$arch\E)?(/media)?/?$! && "$1/$arch/media";
+
+ foreach (uniq($val0, $val, $val2)) {
+ log::l("trying with $field set to $_");
+ $phys_medium->{$field} = $_;
+
+ #- first, try to find a media.cfg file
+ eval { install::media::get_media_cfg($o, $phys_medium, $o->{packages}, undef, 'force_rpmsrate') };
+ if (!$@) {
+ delete $phys_medium->{unknown_CD}; #- we have a known CD now
+ return 1;
+ }
+ }
+ #- restore it
+ $phys_medium->{$field} = $val;
+
+ #- try using media_info/hdlist.cz
+ my $medium_id = int(@{$o->{packages}{mediums}});
+ eval { install::media::get_standalone_medium($o, $phys_medium, $o->{packages}, { name => "Supplementary media $medium_id" }) };
+ if (!$@) {
+ log::l("read suppl hdlist (via $method)");
+ delete $phys_medium->{unknown_CD}; #- we have a known CD now
+ return 1;
+ }
+
+ install::media::umount_phys_medium($phys_medium);
+ install::media::remove_from_fstab($o->{all_hds}, $phys_medium);
+ $o->ask_warn('', N("Can't find a package list file on this mirror. Make sure the location is correct."));
+ goto ask_url;
+}
+
+sub load_rate_files {
+ my ($o) = @_;
+ #- must be done after getProvides
+
+ install::pkgs::read_rpmsrate($o->{packages}, $o->{rpmsrate_flags_chosen}, '/tmp/rpmsrate', $o->{match_all_hardware});
+
+ ($o->{compssUsers}, $o->{gtk_display_compssUsers}) = install::pkgs::readCompssUsers('/tmp/compssUsers.pl');
+
+ defined $o->{compssUsers} or die "Can't read compssUsers.pl file, aborting installation\n";
+}
+
+sub setPackages {
+ my ($o) = @_;
+
+ require install::pkgs;
+ {
+ $o->{packages} = install::pkgs::empty_packages();
+
+ my $media = $o->{media} || [ { type => 'media_cfg', url => 'drakx://media' } ];
+
+ my ($suppl_method, $copy_rpms_on_disk) = install::media::get_media($o, $media, $o->{packages});
+
+ if ($suppl_method) {
+ 1 while $o->selectSupplMedia;
+ }
+
+ #- open rpm db according to right mode needed (ie rebuilding database if upgrading)
+ $o->{packages}{rpmdb} ||= install::pkgs::rpmDbOpen($o->{isUpgrade});
+
+ {
+ my $_wait = $o->wait_message('', N("Looking at packages already installed..."));
+ install::pkgs::selectPackagesAlreadyInstalled($o->{packages});
+ }
+
+ if (my $extension = $o->{upgrade_by_removing_pkgs_matching}) {
+ my $time = time();
+ my ($_w, $wait_message) = $o->wait_message_with_progress_bar;
+ $wait_message->(N("Removing packages prior to upgrade..."));
+ my ($current, $total);
+ my $callback = sub {
+ my (undef, $type, $_id, $subtype, $amount) = @_;
+ if ($type eq 'user') {
+ ($current, $total) = (0, $amount);
+ } elsif ($type eq 'uninst' && $subtype eq 'stop') {
+ $wait_message->('', $current++, $total);
+ }
+ };
+ push @{$o->{default_packages}}, install::pkgs::upgrade_by_removing_pkgs($o->{packages}, $callback, $extension, $o->{isUpgrade});
+ log::l("Removing packages took: ", formatTimeRaw(time() - $time));
+ }
+
+ mark_skipped_packages($o);
+
+ #- always try to select basic kernel (else on upgrade, kernel will never be updated provided a kernel is already
+ #- installed and provides what is necessary).
+ my $kernel_pkg = install::pkgs::bestKernelPackage($o->{packages});
+ install::pkgs::selectPackage($o->{packages}, $kernel_pkg, 1);
+ if ($o->{isUpgrade} && $o->{packages}{sizes}{dkms}) {
+ log::l("selecting kernel-source-stripped-latest (since dkms was installed)");
+ install::pkgs::select_by_package_names($o->{packages}, ['kernel-source-stripped-latest'], 1);
+ }
+
+ install::pkgs::select_by_package_names_or_die($o->{packages}, ['basesystem'], 1);
+
+ my $rpmsrate_flags_was_chosen = $o->{rpmsrate_flags_chosen};
+
+ put_in_hash($o->{rpmsrate_flags_chosen} ||= {}, rpmsrate_always_flags($o)); #- must be done before install::pkgs::read_rpmsrate()
+ load_rate_files($o);
+
+ install::media::copy_rpms_on_disk($o) if $copy_rpms_on_disk;
+
+ set_rpmsrate_default_category_flags($o, $rpmsrate_flags_was_chosen);
+
+ push @{$o->{default_packages}}, default_packages($o);
+ select_default_packages($o);
+ }
+
+ if ($o->{isUpgrade}) {
+ {
+ my $_w = $o->wait_message('', N("Finding packages to upgrade..."));
+ install::pkgs::selectPackagesToUpgrade($o->{packages});
+ }
+ if ($o->{packages}{sizes}{'kdebase-progs'}) {
+ log::l("selecting task-kde (since kdebase-progs was installed)");
+ install::pkgs::select_by_package_names($o->{packages}, ['task-kde']);
+ }
+ }
+}
+
+sub create_minimal_files() {
+ mkdir "$::prefix/$_", 0755 foreach
+ qw(dev etc etc/profile.d etc/rpm etc/sysconfig etc/sysconfig/console
+ etc/sysconfig/network-scripts etc/sysconfig/console/consolefonts
+ etc/sysconfig/console/consoletrans
+ home mnt tmp var var/tmp var/lib var/lib/rpm var/lib/urpmi);
+ mkdir "$::prefix/$_", 0700 foreach qw(root root/tmp root/drakx);
+
+ devices::make("$::prefix/dev/null");
+ chmod 0666, "$::prefix/dev/null";
+}
+
+sub count_files {
+ my ($dir) = @_;
+ -d $dir or return 0;
+ opendir my $dh, $dir or return 0;
+ my @list = grep { !/^\.\.?$/ } readdir $dh;
+ closedir $dh;
+ my $c = 0;
+ foreach my $n (@list) {
+ my $p = "$dir/$n";
+ if (-d $p) { $c += count_files($p) } else { ++$c }
+ }
+ $c;
+}
+
+sub cp_with_progress {
+ my $wait_message = shift;
+ my $current = shift;
+ my $total = shift;
+ my $dest = pop @_;
+ @_ or return;
+ @_ == 1 || -d $dest or die "cp: copying multiple files, but last argument ($dest) is not a directory\n";
+
+ foreach my $src (@_) {
+ my $dest = $dest;
+ -d $dest and $dest .= '/' . basename($src);
+
+ unlink $dest;
+
+ if (-l $src) {
+ unless (symlink(readlink($src) || die("readlink failed: $!"), $dest)) {
+ warn "symlink: can't create symlink $dest: $!\n";
+ }
+ } elsif (-d $src) {
+ -d $dest or mkdir $dest, (stat($src))[2] or die "mkdir: can't create directory $dest: $!\n";
+ cp_with_progress($wait_message, $current, $total, glob_($src), $dest);
+ } else {
+ open(my $F, $src) or die "can't open $src for reading: $!\n";
+ open(my $G, ">", $dest) or die "can't cp to file $dest: $!\n";
+ local $/ = \4096;
+ local $_; while (<$F>) { print $G $_ }
+ chmod((stat($src))[2], $dest);
+ $wait_message->('', ++$current, $total);
+ }
+ }
+ 1;
+}
+
+sub set_rpmsrate_default_category_flags {
+ my ($o, $rpmsrate_flags_was_chosen) = @_;
+
+ #- if no cleaning needed, populate by default, clean is used for second or more call to this function.
+ if ($::auto_install && ($o->{rpmsrate_flags_chosen} || {})->{CAT_ALL}) {
+ $o->{rpmsrate_flags_chosen}{"CAT_$_"} = 1 foreach map { @{$_->{flags}} } @{$o->{compssUsers}};
+ }
+ if (!$rpmsrate_flags_was_chosen && !$o->{isUpgrade}) {
+ #- use default selection seen in compssUsers directly.
+ $_->{selected} = $_->{default_selected} foreach @{$o->{compssUsers}};
+ set_rpmsrate_category_flags($o, $o->{compssUsers});
+ }
+}
+
+sub set_rpmsrate_category_flags {
+ my ($o, $compssUsers) = @_;
+
+ $o->{rpmsrate_flags_chosen}{$_} = 0 foreach grep { /^CAT_/ } keys %{$o->{rpmsrate_flags_chosen}};
+ $o->{rpmsrate_flags_chosen}{"CAT_$_"} = 1 foreach map { @{$_->{flags}} } grep { $_->{selected} } @$compssUsers;
+ $o->{rpmsrate_flags_chosen}{CAT_SYSTEM} = 1;
+ $o->{rpmsrate_flags_chosen}{CAT_MINIMAL_DOCS} = 1;
+}
+
+
+sub rpmsrate_always_flags {
+ my ($o) = @_;
+
+ my $rpmsrate_flags_chosen = {};
+ $rpmsrate_flags_chosen->{qq(META_CLASS"$o->{meta_class}")} = 1;
+ $rpmsrate_flags_chosen->{uc($_)} = 1 foreach grep { $o->{match_all_hardware} || detect_devices::probe_category("multimedia/$_") } modules::sub_categories('multimedia');
+ $rpmsrate_flags_chosen->{uc($_)} = 1 foreach detect_devices::probe_name('Flag');
+ $rpmsrate_flags_chosen->{UTF8} = $o->{locale}{utf8};
+ $rpmsrate_flags_chosen->{BURNER} = 1 if $o->{match_all_hardware} || detect_devices::burners();
+ $rpmsrate_flags_chosen->{DVD} = 1 if $o->{match_all_hardware} || detect_devices::dvdroms();
+ $rpmsrate_flags_chosen->{USB} = 1 if $o->{match_all_hardware} || $o->{modules_conf}->get_probeall("usb-interface");
+ $rpmsrate_flags_chosen->{PCMCIA} = 1 if $o->{match_all_hardware} || detect_devices::hasPCMCIA();
+ $rpmsrate_flags_chosen->{HIGH_SECURITY} = 1 if $o->{security} > 3;
+ $rpmsrate_flags_chosen->{BIGMEM} = 1 if detect_devices::BIGMEM();
+ $rpmsrate_flags_chosen->{SMP} = 1 if detect_devices::hasSMP();
+ $rpmsrate_flags_chosen->{CDCOM} = 1 if any { $_->{name} =~ /commercial/i } install::media::allMediums($o->{packages});
+ $rpmsrate_flags_chosen->{'3D'} = 1 if
+ $o->{match_all_hardware} ||
+ detect_devices::matching_desc__regexp('Matrox.* G[245][05]0') ||
+ detect_devices::matching_desc__regexp('Rage X[CL]') ||
+ detect_devices::matching_desc__regexp('3D Rage (?:LT|Pro)') ||
+ detect_devices::matching_desc__regexp('Voodoo [35]') ||
+ detect_devices::matching_desc__regexp('Voodoo Banshee') ||
+ detect_devices::matching_desc__regexp('8281[05].* CGC') ||
+ detect_devices::matching_desc__regexp('Rage 128') ||
+ detect_devices::matching_desc__regexp('Radeon ') || #- all Radeon card are now 3D with 4.3.0
+ detect_devices::matching_desc__regexp('[nN]Vidia.*T[nN]T2') || #- TNT2 cards
+ detect_devices::matching_desc__regexp('[nN][vV]idia.*NV[56]') ||
+ detect_devices::matching_desc__regexp('[nN][vV]idia.*Vanta') ||
+ detect_devices::matching_desc__regexp('[nN][vV]idia.*[gG]e[fF]orce') || #- GeForce cards
+ detect_devices::matching_desc__regexp('[nN][vV]idia.*NV1[15]') ||
+ detect_devices::matching_desc__regexp('[nN][vV]idia.*Quadro');
+
+ foreach (lang::langsLANGUAGE($o->{locale}{langs})) {
+ $rpmsrate_flags_chosen->{qq(LOCALES"$_")} = 1;
+ }
+ $rpmsrate_flags_chosen->{'CHARSET"' . lang::l2charset($o->{locale}{lang}) . '"'} = 1;
+
+ $rpmsrate_flags_chosen;
+}
+
+sub default_packages {
+ my ($o) = @_;
+ my @l;
+
+ push @l, "brltty" if cat_("/proc/cmdline") =~ /brltty=/;
+ push @l, "nfs-utils-clients" if $o->{method} eq "nfs";
+ push @l, "mdadm" if !is_empty_array_ref($o->{all_hds}{raids});
+ push @l, "lvm2" if !is_empty_array_ref($o->{all_hds}{lvms});
+ push @l, "dmraid" if any { fs::type::is_dmraid($_) } @{$o->{all_hds}{hds}};
+ push @l, 'powernowd' if cat_('/proc/cpuinfo') =~ /AuthenticAMD/ && arch() =~ /x86_64/
+ || cat_('/proc/cpuinfo') =~ /model name.*Intel\(R\) Core\(TM\)2 CPU/;
+ push @l, detect_devices::probe_name('Pkg');
+
+ my $dmi_BIOS = detect_devices::dmidecode_category('BIOS');
+ my $dmi_Base_Board = detect_devices::dmidecode_category('Base Board');
+ if ($dmi_BIOS->{Vendor} eq 'COMPAL' && $dmi_BIOS->{Characteristics} =~ /Function key-initiated network boot is supported/
+ || $dmi_Base_Board->{Manufacturer} =~ /^ACER/ && $dmi_Base_Board->{'Product Name'} =~ /TravelMate 610/) {
+ #- FIXME : append correct options (wireless, ...)
+ modules::append_to_modules_loaded_at_startup_for_all_kernels('acerhk');
+ }
+
+ push @l, 'quota' if any { $_->{options} =~ /usrquota|grpquota/ } @{$o->{fstab}};
+ push @l, uniq(grep { $_ } map { fs::format::package_needed_for_partition_type($_) } @{$o->{fstab}});
+
+ my @locale_pkgs = map { install::pkgs::packagesProviding($o->{packages}, 'locales-' . $_) } lang::langsLANGUAGE($o->{locale}{langs});
+ unshift @l, uniq(map { $_->name } @locale_pkgs);
+
+ @l;
+}
+
+sub mark_skipped_packages {
+ my ($o) = @_;
+ install::pkgs::skip_packages($o->{packages}, $o->{skipped_packages}) if $o->{skipped_packages};
+}
+
+sub select_default_packages {
+ my ($o) = @_;
+ install::pkgs::select_by_package_names($o->{packages}, $o->{default_packages});
+}
+
+sub unselectMostPackages {
+ my ($o) = @_;
+ install::pkgs::unselectAllPackages($o->{packages});
+ select_default_packages($o);
+}
+
+sub warnAboutNaughtyServers {
+ my ($o) = @_;
+ my @naughtyServers = install::pkgs::naughtyServers($o->{packages}) or return 1;
+ my $r = $o->ask_from_list_('',
+formatAlaTeX(
+ #-PO: keep the double empty lines between sections, this is formatted a la LaTeX
+ N("You have selected the following server(s): %s
+
+
+These servers are activated by default. They do not have any known security
+issues, but some new ones could be found. In that case, you must make sure
+to upgrade as soon as possible.
+
+
+Do you really want to install these servers?
+", join(", ", @naughtyServers))), [ N_("Yes"), N_("No") ], 'Yes') or return;
+ if ($r ne 'Yes') {
+ log::l("unselecting naughty servers: " . join(' ', @naughtyServers));
+ install::pkgs::unselectPackage($o->{packages}, install::pkgs::packageByName($o->{packages}, $_)) foreach @naughtyServers;
+ }
+ 1;
+}
+
+sub warnAboutRemovedPackages {
+ my ($o, $packages) = @_;
+ my @removedPackages = keys %{$packages->{state}{ask_remove} || {}} or return;
+ if (!$o->ask_yesorno('',
+formatAlaTeX(
+ #-PO: keep the double empty lines between sections, this is formatted a la LaTeX
+ N("The following packages will be removed to allow upgrading your system: %s
+
+
+Do you really want to remove these packages?
+", join(", ", @removedPackages))), 1)) {
+ $packages->{state}{ask_remove} = {};
+ }
+}
+
+sub addToBeDone(&$) {
+ my ($f, $step) = @_;
+
+ return &$f() if $::o->{steps}{$step}{done};
+
+ push @{$::o->{steps}{$step}{toBeDone}}, $f;
+}
+
+sub set_authentication {
+ my ($o) = @_;
+
+ my $when_network_is_up = sub {
+ my ($f) = @_;
+ #- defer running xxx - no network yet
+ addToBeDone {
+ require install::steps;
+ install::steps::upNetwork($o, 'pppAvoided');
+ $f->();
+ } 'configureNetwork';
+ };
+ require authentication;
+ authentication::set($o, $o->{net}, $o->{authentication} ||= {}, $when_network_is_up);
+}
+
+#-###############################################################################
+#- kde stuff
+#-###############################################################################
+sub kdemove_desktop_file {
+ my ($prefix) = @_;
+ my @toMove = qw(doc.kdelnk news.kdelnk updates.kdelnk home.kdelnk printer.kdelnk floppy.kdelnk cdrom.kdelnk FLOPPY.kdelnk CDROM.kdelnk);
+
+ #- remove any existing save in Trash of each user and
+ #- move appropriate file there after an upgrade.
+ foreach my $dir (grep { -d $_ } list_skels($prefix, 'Desktop')) {
+ renamef("$dir/$_", "$dir/Trash/$_")
+ foreach grep { -e "$dir/$_" } @toMove, grep { /\.rpmorig$/ } all($dir);
+ }
+}
+
+
+#-###############################################################################
+#- auto_install stuff
+#-###############################################################################
+sub auto_inst_file() { "$::prefix/root/drakx/auto_inst.cfg.pl" }
+
+sub report_bug() {
+ any::report_bug('auto_inst' => g_auto_install('', 1));
+}
+
+sub g_auto_install {
+ my ($b_replay, $b_respect_privacy) = @_;
+ my $o = {};
+
+ require install::pkgs;
+ $o->{default_packages} = install::pkgs::selected_leaves($::o->{packages});
+
+ my @fields = qw(mntpoint fs_type size);
+ $o->{partitions} = [ map {
+ my %l; @l{@fields} = @$_{@fields}; \%l;
+ } grep {
+ $_->{mntpoint} && fs::format::known_type($_);
+ } @{$::o->{fstab}} ];
+
+ exists $::o->{$_} and $o->{$_} = $::o->{$_} foreach qw(locale authentication mouse net timezone superuser keyboard users partitioning isUpgrade manualFstab nomouseprobe crypto security security_user libsafe useSupermount autoExitInstall X services postInstall postInstallNonRooted); #- TODO modules bootloader
+
+ local $o->{partitioning}{auto_allocate} = !$b_replay;
+ $o->{autoExitInstall} = !$b_replay;
+ $o->{interactiveSteps} = [ 'doPartitionDisks', 'formatPartitions' ] if $b_replay;
+
+ #- deep copy because we're modifying it below
+ $o->{users} = $b_respect_privacy ? [] : [ @{$o->{users} || []} ];
+
+ my @user_info_to_remove = (
+ if_($b_respect_privacy, qw(realname pw)),
+ qw(oldu oldg password password2),
+ );
+ $_ = { %{$_ || {}} }, delete @$_{@user_info_to_remove} foreach $o->{superuser}, @{$o->{users} || []};
+
+ if ($b_respect_privacy && $o->{net}) {
+ if (my $type = $o->{net}{type}) {
+ my @net_type_to_remove = qw(passwd login phone_in phone_out);
+ $_ = { %{$_ || {}} }, delete @$_{@net_type_to_remove} foreach $o->{net}{$type};
+ }
+ }
+ my $warn_privacy = $b_respect_privacy ? "!! This file has been simplified to respect privacy when reporting problems.
+# You should use /root/drakx/auto_inst.cfg.pl instead !!\n#" : '';
+
+ require Data::Dumper;
+ my $str = join('',
+"#!/usr/bin/perl -cw
+# $warn_privacy
+# You should check the syntax of this file before using it in an auto-install.
+# You can do this with 'perl -cw auto_inst.cfg.pl' or by executing this file
+# (note the '#!/usr/bin/perl -cw' on the first line).
+", Data::Dumper->Dump([$o], ['$o']));
+ $str =~ s/ {8}/\t/g; #- replace all 8 space char by only one tabulation, this reduces file size so much :-)
+ $str;
+}
+
+sub getAndSaveAutoInstallFloppies {
+ my ($o, $replay) = @_;
+ my $name = ($replay ? 'replay' : 'auto') . '_install';
+ my $dest_dir = "$::prefix/root/drakx";
+
+ eval { modules::load('loop') };
+
+ if (arch() =~ /ia64/) {
+ #- nothing yet
+ } else {
+ my $mountdir = "$::prefix/root/aif-mount"; -d $mountdir or mkdir $mountdir, 0755;
+ my $param = 'kickstart=floppy ' . generate_automatic_stage1_params($o);
+
+ my $img = install::media::getAndSaveInstallFloppies($o, $dest_dir, $name) or return;
+
+ {
+ my $dev = devices::set_loop($img) or log::l("couldn't set loopback device"), return;
+ find { eval { fs::mount::mount($dev, $mountdir, $_, 0); 1 } } qw(ext2 vfat) or return;
+
+ if (-e "$mountdir/menu.lst") {
+ # hd_grub boot disk is different than others
+ substInFile {
+ s/^(\s*timeout.*)/timeout 1/;
+ s/\bautomatic=method:disk/$param/;
+ } "$mountdir/menu.lst";
+ } elsif (-e "$mountdir/syslinux.cfg") {
+ #- make room first
+ unlink "$mountdir/help.msg", "$mountdir/boot.msg";
+
+ substInFile {
+ s/timeout.*/$replay ? 'timeout 1' : ''/e;
+ s/^(\s*append)/$1 $param/;
+ } "$mountdir/syslinux.cfg";
+
+ output "$mountdir/boot.msg", $replay ? '' : "\n0c" .
+"!! If you press enter, an auto-install is going to start.
+ All data on this computer is going to be lost,
+ including any Windows partitions !!
+" . "07\n";
+ }
+
+ {
+ local $o->{partitioning}{clearall} = !$replay;
+ eval { output("$mountdir/auto_inst.cfg", g_auto_install($replay)) };
+ $@ and log::l("Warning: <", formatError($@), ">");
+ }
+
+ fs::mount::umount($mountdir);
+ devices::del_loop($dev);
+ }
+ rmdir $mountdir;
+ $img;
+ }
+}
+
+
+sub g_default_packages {
+ my ($o) = @_;
+
+ my ($_h, $file) = media_browser($o, 'save', 'package_list.pl') or return;
+
+ require Data::Dumper;
+ my $str = Data::Dumper->Dump([ { default_packages => install::pkgs::selected_leaves($o->{packages}) } ], ['$o']);
+ $str =~ s/ {8}/\t/g;
+ output($file,
+ "# You should always check the syntax with 'perl -cw auto_inst.cfg.pl'\n" .
+ "# before testing. To use it, boot with ``linux defcfg=floppy''\n" .
+ $str);
+}
+
+sub loadO {
+ my ($O, $f) = @_; $f ||= auto_inst_file();
+ if ($f =~ /^(floppy|patch)$/) {
+ my $f = $f eq "floppy" ? 'auto_inst.cfg' : "patch";
+ my $o;
+ foreach (removable_media__early_in_install()) {
+ my $dev = devices::make($_->{device});
+ foreach my $fs (arch() =~ /sparc/ ? 'romfs' : ('ext2', 'vfat')) {
+ eval { fs::mount::mount($dev, '/mnt', $fs, 'readonly'); 1 } or next;
+ if (my $abs_f = find { -e $_ } "/mnt/$f", "/mnt/$f.pl") {
+ $o = loadO_($O, $abs_f);
+ }
+ fs::mount::umount("/mnt");
+ goto found if $o;
+ }
+ }
+ die "Could not find $f";
+ found:
+ modules::unload(qw(vfat fat));
+ $o;
+ } else {
+ loadO_($O, $f);
+ }
+}
+
+sub loadO_ {
+ my ($O, $f) = @_;
+
+ my $o;
+ {
+ my $fh;
+ if (ref $f) {
+ $fh = $f;
+ } else {
+ -e "$f.pl" and $f .= ".pl" unless -e $f;
+
+ $fh = -e $f ? common::open_file($f) : getFile_($O->{stage2_phys_medium}, $f) || die N("Error reading file %s", $f);
+ }
+ my $s = cat__($fh);
+ close $fh;
+ {
+ no strict;
+ eval $s;
+ $@ and die;
+ }
+ $O and add2hash_($o ||= {}, $O);
+ }
+ $O and bless $o, ref $O;
+
+ handle_old_auto_install_format($o);
+
+ $o;
+}
+
+sub handle_old_auto_install_format {
+ my ($o) = @_;
+
+ #- handle backward compatibility for things that changed
+ foreach (@{$o->{partitions} || []}, @{$o->{manualFstab} || []}) {
+ if (my $type = delete $_->{type}) {
+ if ($type =~ /^(0x)?(\d*)$/) {
+ fs::type::set_pt_type($_, $type);
+ } else {
+ fs::type::set_fs_type($_, $type);
+ }
+ }
+ }
+ #- {rpmsrate_flags_chosen} was called {compssUsersChoice}
+ if (my $rpmsrate_flags_chosen = delete $o->{compssUsersChoice}) {
+ $o->{rpmsrate_flags_chosen} = $rpmsrate_flags_chosen;
+ }
+ #- compssUsers flags are now named CAT_XXX
+ if ($o->{rpmsrate_flags_chosen} &&
+ ! any { /^CAT_/ } keys %{$o->{rpmsrate_flags_chosen}}) {
+ #- we don't really know if this is needed for compatibility, but it won't hurt :)
+ foreach (keys %{$o->{rpmsrate_flags_chosen}}) {
+ $o->{rpmsrate_flags_chosen}{"CAT_$_"} = $o->{rpmsrate_flags_chosen}{$_};
+ }
+ #- it used to be always selected
+ $o->{rpmsrate_flags_chosen}{CAT_SYSTEM} = 1;
+ }
+ if ($o->{updates} && $o->{updates}{mirror}) {
+ $o->{updates}{url} = delete $o->{updates}{mirror};
+ }
+
+ #- backward compatibility for network fields
+ exists $o->{intf} and $o->{net}{ifcfg} = delete $o->{intf};
+ exists $o->{netcnx}{type} and $o->{net}{type} = delete $o->{netcnx}{type};
+ exists $o->{netc}{NET_INTERFACE} and $o->{net}{net_interface} = delete $o->{netc}{NET_INTERFACE};
+ my %netc_translation = (
+ resolv => [ qw(dnsServer dnsServer2 dnsServer3 DOMAINNAME DOMAINNAME2 DOMAINNAME3) ],
+ network => [ qw(NETWORKING FORWARD_IPV4 NETWORKING_IPV6 HOSTNAME GATEWAY GATEWAYDEV NISDOMAIN) ],
+ auth => [ qw(LDAPDOMAIN WINDOMAIN) ],
+ );
+ foreach my $dest (keys %netc_translation) {
+ exists $o->{netc}{$_} and $o->{net}{$dest}{$_} = delete $o->{netc}{$_} foreach @{$netc_translation{$dest}};
+ }
+ delete @$o{qw(netc netcnx)};
+
+ $o;
+}
+
+sub generate_automatic_stage1_params {
+ my ($o) = @_;
+
+ my $method = $o->{method};
+ my @ks;
+
+ if ($o->{method} eq 'http') {
+ $ENV{URLPREFIX} =~ m!(http|ftp)://([^/:]+)(.*)! or die;
+ $method = $1; #- in stage1, FTP via HTTP proxy is available through FTP config, not HTTP
+ @ks = (server => $2, directory => $3);
+ } elsif ($o->{method} eq 'ftp') {
+ my @l = install::ftp::parse_ftp_url($ENV{URLPREFIX});
+ @ks = (server => $l[0], directory => $l[1], user => $l[2], pass => $l[3]);
+ } elsif ($o->{method} eq 'nfs') {
+ cat_("/proc/mounts") =~ m|(\S+):(\S+)\s+/tmp/media| or internal_error("can not find nfsimage");
+ @ks = (server => $1, directory => $2);
+ }
+ @ks = (method => $method, @ks);
+
+ if (is_network_install($o)) {
+ if ($ENV{PROXY}) {
+ push @ks, proxy_host => $ENV{PROXY}, proxy_port => $ENV{PROXYPORT};
+ }
+ my $intf = first(values %{$o->{net}{ifcfg}});
+ push @ks, interface => $intf->{DEVICE};
+ if ($intf->{BOOTPROTO} eq 'dhcp') {
+ push @ks, network => 'dhcp';
+ } else {
+ push @ks, network => 'static', ip => $intf->{IPADDR}, netmask => $intf->{NETMASK}, gateway => $o->{net}{network}{GATEWAY};
+ require network::network;
+ if (my @dnss = network::network::dnsServers($o->{net})) {
+ push @ks, dns => $dnss[0];
+ }
+ }
+ }
+
+ #- sync it with ../mdk-stage1/automatic.c
+ my %aliases = (method => 'met', network => 'netw', interface => 'int', gateway => 'gat', netmask => 'netm',
+ adsluser => 'adslu', adslpass => 'adslp', hostname => 'hos', domain => 'dom', server => 'ser',
+ directory => 'dir', user => 'use', pass => 'pas', disk => 'dis', partition => 'par');
+
+ 'automatic=' . join(',', map { ($aliases{$_->[0]} || $_->[0]) . ':' . $_->[1] } group_by2(@ks));
+}
+
+sub find_root_parts {
+ my ($fstab, $prefix) = @_;
+
+ my $extract = sub {
+ my ($prefix, $f, $part) = @_;
+ chomp(my $s = cat_("$prefix$f"));
+ $s =~ s/\s+for\s+\S+//;
+ log::l("find_root_parts found $part->{device}: $s" . ($f !~ m!/etc/! ? " in special release file $f" : ''));
+ { release => $s, release_file => $f, part => $part };
+ };
+
+ if ($::local_install) {
+ my $f = common::release_file('/mnt') or return;
+ return $extract->('/mnt', $f, {});
+ }
+
+ map {
+ my $handle = any::inspect($_, $prefix);
+ if (my $f = $handle && common::release_file($handle->{dir})) {
+ $extract->($handle->{dir}, $f, $_);
+ } else { () }
+ } grep { isTrueLocalFS($_) } @$fstab;
+}
+
+sub migrate_device_names {
+ my ($all_hds, $from_fstab, $new_root, $root_from_fstab, $o_in) = @_;
+
+ log::l("warning: fstab says root partition is $root_from_fstab->{device}, whereas we were reading fstab from $new_root->{device}");
+ my ($old_prefix, $old_part_number) = devices::simple_partition_scan($root_from_fstab);
+ my ($new_prefix, $new_part_number) = devices::simple_partition_scan($new_root);
+
+ if ($old_part_number != $new_part_number) {
+ log::l("argh, $root_from_fstab->{device} and $old_part_number->{device} are not the same partition number");
+ return;
+ }
+
+ log::l("replacing $old_prefix with $new_prefix");
+
+ my %h;
+ foreach (@$from_fstab) {
+ if ($_->{device} =~ s!^\Q$old_prefix!$new_prefix!) {
+ #- this is simple to handle, nothing more to do
+ } elsif ($_->{part_number}) {
+ my $device_prefix = devices::part_prefix($_);
+ push @{$h{$device_prefix}}, $_;
+ } else {
+ #- hopefully this does not need anything special
+ }
+ }
+ my @from_fstab_per_hds = values %h or return;
+
+
+ my @current_hds = grep { $new_root->{rootDevice} ne $_->{device} } fs::get::hds($all_hds);
+
+ found_one:
+ @from_fstab_per_hds or return;
+
+ foreach my $from_fstab_per_hd (@from_fstab_per_hds) {
+ my ($matching, $other) = partition {
+ my $hd = $_;
+ every {
+ my $wanted = $_;
+ my $part = find { $_->{part_number} eq $wanted->{part_number} } partition_table::get_normal_parts($hd);
+ $part && $part->{fs_type} && fs::type::can_be_this_fs_type($wanted, $part->{fs_type});
+ } @$from_fstab_per_hd;
+ } @current_hds;
+ @$matching == 1 or next;
+
+ my ($hd) = @$matching;
+ @current_hds = @$other;
+ @from_fstab_per_hds = grep { $_ != $from_fstab_per_hd } @from_fstab_per_hds;
+
+ log::l("$hd->{device} nicely corresponds to " . join(' ', map { $_->{device} } @$from_fstab_per_hd));
+ foreach (@$from_fstab_per_hd) {
+ partition_table::compute_device_name($_, $hd);
+ }
+ goto found_one;
+ }
+
+ #- we can not find one and only one matching hd
+ my @from_fstab_not_handled = map { @$_ } @from_fstab_per_hds;
+ log::l("we still do not know what to do with: " . join(' ', map { $_->{device} } @from_fstab_not_handled));
+
+
+ if (!$o_in) {
+ log::l("well, ignoring them!");
+ return;
+ }
+
+ my $propositions_valid = every {
+ my $wanted = $_;
+ my @parts = grep { $_->{part_number} eq $wanted->{part_number}
+ && $_->{fs_type} && fs::type::can_be_this_fs_type($wanted, $_->{fs_type}) } fs::get::hds_fstab(@current_hds);
+ $wanted->{propositions} = \@parts;
+ @parts > 0;
+ } @from_fstab_not_handled;
+
+ $o_in->ask_from('',
+ N("The following disk(s) were renamed:"),
+ [ map {
+ { label => N("%s (previously named as %s)", $_->{mntpoint}, $_->{device}),
+ val => \$_->{device}, format => sub { $_[0] && $_->{device} },
+ list => [ '',
+ $propositions_valid ? @{$_->{propositions}} :
+ fs::get::hds_fstab(@current_hds) ] };
+ } @from_fstab_not_handled ]);
+}
+
+sub use_root_part {
+ my ($all_hds, $part, $o_in) = @_;
+ return if $::local_install;
+
+ my $migrate_device_names;
+ {
+ my $handle = any::inspect($part, $::prefix) or internal_error();
+
+ my @from_fstab = fs::read_fstab($handle->{dir}, '/etc/fstab', 'keep_default');
+
+ my $root_from_fstab = fs::get::root_(\@from_fstab);
+ if (!fs::get::is_same_hd($root_from_fstab, $part)) {
+ $migrate_device_names = 1;
+ log::l("from_fstab contained: $_->{device} $_->{mntpoint}") foreach @from_fstab;
+ migrate_device_names($all_hds, \@from_fstab, $part, $root_from_fstab, $o_in);
+ log::l("from_fstab now contains: $_->{device} $_->{mntpoint}") foreach @from_fstab;
+ }
+ fs::add2all_hds($all_hds, @from_fstab);
+ log::l("fstab is now: $_->{device} $_->{mntpoint}") foreach fs::get::fstab($all_hds);
+ }
+ isSwap($_) and $_->{mntpoint} = 'swap' foreach fs::get::really_all_fstab($all_hds); #- use all available swap.
+ $migrate_device_names;
+}
+
+sub getHds {
+ my ($o, $o_in) = @_;
+ fs::any::get_hds($o->{all_hds} ||= {}, $o->{fstab} ||= [],
+ $o->{manualFstab}, $o->{partitioning}, $::local_install, $o_in);
+}
+
+sub removable_media__early_in_install() {
+ eval { modules::load('usb-storage', 'sd_mod') } if detect_devices::usbStorage();
+ my $all_hds = fsedit::get_hds({});
+ fs::get_raw_hds('', $all_hds);
+
+ my @l1 = grep { detect_devices::isKeyUsb($_) } @{$all_hds->{hds}};
+ my @l2 = grep { $_->{media_type} eq 'fd' || detect_devices::isKeyUsb($_) } @{$all_hds->{raw_hds}};
+ (fs::get::hds_fstab(@l1), @l2);
+}
+
+my %media_browser;
+sub media_browser {
+ my ($in, $save, $o_suggested_name) = @_;
+
+ my %media_type2text = (
+ fd => N("Floppy"),
+ hd => N("Hard Disk"),
+ cdrom => N("CDROM"),
+ );
+ my @network_protocols = (if_(!$save, N_("HTTP")), if_(0, N_("FTP")), N_("NFS"));
+
+ my $to_text = sub {
+ my ($hd) = @_;
+ ($media_type2text{$hd->{media_type}} || $hd->{media_type}) . ': ' . partition_table::description($hd);
+ };
+
+ ask_media:
+ my $all_hds = fsedit::get_hds({}, $in);
+ fs::get_raw_hds('', $all_hds);
+
+ my @raw_hds = grep { !$save || $_->{media_type} ne 'cdrom' } @{$all_hds->{raw_hds}};
+ my @dev_and_text = group_by2(
+ (map { $_ => $to_text->($_) } @raw_hds),
+ (map {
+ my $hd = $to_text->($_);
+ map { $_ => join('\1', $hd, partition_table::description($_)) } grep { isTrueFS($_) || isOtherAvailableFS($_) } fs::get::hds_fstab($_);
+ } fs::get::hds($all_hds)),
+ if_(is_network_install($::o) || install::steps::hasNetwork($::o),
+ map { $_ => join('\1', N("Network"), translate($_)) } @network_protocols),
+ );
+
+ $in->ask_from_({
+ messages => N("Please choose a media"),
+ }, [
+ { val => \$media_browser{dev}, separator => '\1', list => [ map { $_->[1] } @dev_and_text ] },
+ ]) or return;
+
+ my $dev = (find { $_->[1] eq $media_browser{dev} } @dev_and_text)->[0];
+
+ my $browse = sub {
+ my ($dir) = @_;
+
+ browse:
+ my $file = $in->ask_filename({ save => $save,
+ directory => $dir,
+ if_($o_suggested_name, file => "$dir/$o_suggested_name"),
+ }) or return;
+ if (-e $file && $save) {
+ $in->ask_yesorno('', N("File already exists. Overwrite it?")) or goto browse;
+ }
+ if ($save) {
+ if (!open(my $_fh, ">>$file")) {
+ $in->ask_warn('', N("Permission denied"));
+ goto browse;
+ }
+ $file;
+ } else {
+ common::open_file($file) || goto browse;
+ }
+ };
+ my $inspect_and_browse = sub {
+ my ($dev) = @_;
+
+ if (my $h = any::inspect($dev, $::prefix, $save)) {
+ if (my $file = $browse->($h->{dir})) {
+ return $h, $file;
+ }
+ undef $h; #- help perl
+ } else {
+ $in->ask_warn(N("Error"), formatError($@));
+ }
+ ();
+ };
+
+ if (member($dev, @network_protocols)) {
+ require install::interactive;
+ install::interactive::upNetwork($::o);
+
+ if ($dev eq 'HTTP') {
+ require install::http;
+ $media_browser{url} ||= 'http://';
+
+ while (1) {
+ $in->ask_from('', 'URL', [
+ { val => \$media_browser{url} }
+ ]) or last;
+
+ if ($dev eq 'HTTP') {
+ my $fh = install::http::getFile($media_browser{url});
+ $fh and return '', $fh;
+ }
+ }
+ } elsif ($dev eq 'NFS') {
+ while (1) {
+ $in->ask_from('', 'NFS', [
+ { val => \$media_browser{nfs} }
+ ]) or last;
+
+ my ($kind) = fs::wild_device::analyze($media_browser{nfs});
+ if ($kind ne 'nfs') {
+ $in->ask_warn('', N("Bad NFS name"));
+ next;
+ }
+
+ my $nfs = fs::wild_device::to_subpart($media_browser{nfs});
+ $nfs->{fs_type} = 'nfs';
+
+ if (my ($h, $file) = $inspect_and_browse->($nfs)) {
+ return $h, $file;
+ }
+ }
+ } else {
+ $in->ask_warn('', 'todo');
+ goto ask_media;
+ }
+ } else {
+ if (!$dev->{fs_type} || $dev->{fs_type} eq 'auto' || $dev->{fs_type} =~ /:/) {
+ if (my $p = fs::type::type_subpart_from_magic($dev)) {
+ add2hash($p, $dev);
+ $dev = $p;
+ } else {
+ $in->ask_warn(N("Error"), N("Bad media %s", partition_table::description($dev)));
+ goto ask_media;
+ }
+ }
+
+ if (my ($h, $file) = $inspect_and_browse->($dev)) {
+ return $h, $file;
+ }
+
+ goto ask_media;
+ }
+}
+
+sub X_options_from_o {
+ my ($o) = @_;
+ {
+ freedriver => $o->{freedriver},
+ allowFB => $o->{allowFB},
+ ignore_bad_conf => $o->{isUpgrade} =~ /redhat|conectiva/,
+ };
+}
+
+sub screenshot_dir__and_move() {
+ my ($dir0, $dir1, $dir2) = ('/root', "$::prefix/root", '/tmp');
+ if (-e $dir0 && ! -e '/root/non-chrooted-marker.DrakX') {
+ $dir0; #- it occurs during pkgs install when we are chrooted
+ } elsif (-e $dir1) {
+ if (-e "$dir2/DrakX-screenshots") {
+ cp_af("$dir2/DrakX-screenshots", $dir1);
+ rm_rf("$dir2/DrakX-screenshots");
+ }
+ $dir1;
+ } else {
+ $dir2;
+ }
+}
+
+sub take_screenshot {
+ my ($in) = @_;
+ my $dir = screenshot_dir__and_move() . '/DrakX-screenshots';
+ my $warn;
+ if (!-e $dir) {
+ mkdir $dir or $in->ask_warn('', N("Can not make screenshots before partitioning")), return;
+ $warn = 1;
+ }
+ my $nb = 1;
+ $nb++ while -e "$dir/$nb.png";
+ system("fb2png /dev/fb0 $dir/$nb.png 0");
+
+ $in->ask_warn('', N("Screenshots will be available after install in %s", "/root/DrakX-screenshots")) if $warn;
+}
+
+sub copy_advertising {
+ my ($o) = @_;
+
+ return if $::rootwidth < 800;
+
+ my $f;
+ my $source_dir = "install/extra/advertising";
+ foreach ("." . $o->{locale}{lang}, "." . substr($o->{locale}{lang},0,2), '') {
+ $f = getFile_($o->{stage2_phys_medium}, "$source_dir$_/list") or next;
+ $source_dir = "$source_dir$_";
+ }
+ if (my @files = <$f>) {
+ my $dir = "$::prefix/tmp/drakx-images";
+ mkdir $dir;
+ unlink glob_("$dir/*");
+ foreach (@files) {
+ chomp;
+ install::media::getAndSaveFile_($o->{stage2_phys_medium}, "$source_dir/$_", "$dir/$_");
+ (my $pl = $_) =~ s/\.png/.pl/;
+ install::media::getAndSaveFile_($o->{stage2_phys_medium}, "$source_dir/$pl", "$dir/$pl");
+ }
+ @advertising_images = map { "$dir/$_" } @files;
+ }
+}
+
+sub remove_advertising() {
+ eval { rm_rf("$::prefix/tmp/drakx-images") };
+ @advertising_images = ();
+}
+
+sub disable_user_view() {
+ substInFile { s/^UserView=.*/UserView=true/ } "$::prefix/etc/kde/kdm/kdmrc";
+ substInFile { s/^Browser=.*/Browser=0/ } "$::prefix/etc/X11/gdm/custom.conf";
+}
+
+sub set_security {
+ my ($o) = @_;
+ require security::various;
+ security::level::set($o->{security});
+ security::various::config_libsafe($::prefix, $o->{libsafe});
+ security::various::config_security_user($::prefix, $o->{security_user});
+}
+
+sub write_fstab {
+ my ($o) = @_;
+ fs::write_fstab($o->{all_hds}, $::prefix)
+ if !$o->{isUpgrade} || $o->{isUpgrade} =~ /redhat|conectiva/ || $o->{migrate_device_names};
+}
+
+sub move_compressed_image_to_disk {
+ my ($o) = @_;
+
+ our $compressed_image_on_disk;
+ return if $compressed_image_on_disk || $::local_install;
+
+ my $name = 'mdkinst.sqfs';
+ my ($loop, $current_image) = devices::find_compressed_image($name) or return;
+ my $compressed_image_size = (-s $current_image) / 1024; #- put in KiB
+
+ my $dir;
+ if (availableRamMB() > 400) {
+ $dir = '/tmp'; #- on tmpfs
+ } else {
+ my $tmp = fs::get::mntpoint2part('/tmp', $o->{fstab});
+ if ($tmp && fs::df($tmp, $::prefix) / 2 > $compressed_image_size * 1.2) { #- we want at least 20% free afterwards
+ $dir = "$::prefix/tmp";
+ } else {
+ my $root = fs::get::mntpoint2part('/', $o->{fstab});
+ my $root_free_MB = fs::df($root, $::prefix) / 2 / 1024;
+ my $wanted_size_MB = $o->{isUpgrade} || fs::get::mntpoint2part('/usr', $o->{fstab}) ? 150 : 300;
+ log::l("compressed image: root free $root_free_MB MB, wanted at least $wanted_size_MB MB");
+ if ($root_free_MB > $wanted_size_MB) {
+ $dir = $tmp ? $::prefix : "$::prefix/tmp";
+ } else {
+ $dir = '/tmp'; #- on tmpfs
+ if (availableRamMB() < 200) {
+ log::l("ERROR: not much ram (" . availableRamMB() . " MB), we're going in the wall!");
+ }
+ }
+ }
+ }
+ $compressed_image_on_disk = "$dir/$name";
+
+ if ($current_image ne $compressed_image_on_disk) {
+ log::l("move_compressed_image_to_disk: copying $current_image to $compressed_image_on_disk");
+ cp_af($current_image, $compressed_image_on_disk);
+ run_program::run('losetup', '-r', $loop, $compressed_image_on_disk);
+ unlink $current_image if $current_image eq "/tmp/$name";
+ }
+}
+
+sub deploy_server_notify {
+ my ($o) = @_;
+ my $fallback_intf = "eth0";
+ my $fallback_port = 3710;
+
+ my ($server, $port) = $o->{deploy_server} =~ /^(.*?)(?::(\d+))?$/;
+ if ($server) {
+ require network::tools;
+ require IO::Socket;
+ $port ||= $fallback_port;
+ my $intf = network::tools::get_current_gateway_interface() || $fallback_intf;
+ my $mac = c::get_hw_address($intf);
+ my $sock = IO::Socket::INET->new(PeerAddr => $server, PeerPort => $port, Proto => 'tcp');
+ if ($sock) {
+ print $sock "$mac\n";
+ close($sock);
+ log::l(qq(successfully notified deploy server $server on port $port));
+ } else {
+ log::l(qq(unable to contact deploy server $server on port $port));
+ }
+ } else {
+ log::l(qq(unable to parse deploy server in string $o->{deploy_server}));
+ }
+}
+
+#-###############################################################################
+#- pcmcia various
+#-###############################################################################
+sub configure_pcmcia {
+ my ($o) = @_;
+ my $controller = detect_devices::pcmcia_controller_probe();
+ $o->{pcmcia} ||= $controller && $controller->{driver} or return;
+ log::l("configuring PCMCIA controller ($o->{pcmcia})");
+ symlink "/tmp/stage2/$_", $_ foreach "/etc/pcmcia";
+ eval { modules::load($o->{pcmcia}, 'pcmcia') };
+ run_program::run("pcmcia-socket-startup");
+}
+
+1;
diff --git a/perl-install/commands b/perl-install/install/commands
index 442da9ed3..7a5fc908c 100755
--- a/perl-install/commands
+++ b/perl-install/install/commands
@@ -5,7 +5,7 @@ use strict;
use lib qw(/usr/lib/libDrakX .);
use common;
-use commands;
+use install::commands;
$::isInstall = 1;
$::prefix = '/mnt';
@@ -13,7 +13,7 @@ my $progname = basename($0);
eval {
# hack as some functions are defined by perl... so chmod -> chmod_
- &{$commands::{$progname} || $commands::{$progname . "_"} || \&err}(@ARGV), exit 0;
+ &{$install::commands::{$progname} || $install::commands::{$progname . "_"} || \&err}(@ARGV), exit 0;
};
die formatError($@) . "\n";
diff --git a/perl-install/commands.pm b/perl-install/install/commands.pm
index c57468cb0..982667d20 100644
--- a/perl-install/commands.pm
+++ b/perl-install/install/commands.pm
@@ -1,10 +1,10 @@
-package commands; # $Id$
+package install::commands; # $Id$
#-########################################################################
#- This file implement many common shell commands:
#- true, false, cat, which, dirname, basename, rmdir, lsmod, grep, tr,
-#- mount, umount, mkdir, mknod, ln, rm, chmod, chown, swapon,
-#- swapoff, ls, cp, ps, dd, head, tail, strings, hexdump, more, insmod,
+#- mount, mkdir, mknod, ln, rm, chmod, chown, swapon,
+#- swapoff, ls, cp, ps, dd, head, tail, strings, hexdump, more,
#- modprobe, route, df, kill, lspci, lssbus, dmesg, sort, du,
#-########################################################################
@@ -60,13 +60,6 @@ sub tr_ {
eval "(tr/$set1/$set2/$s$d$c, print) while <>";
}
-sub umount {
- @_ == 1 or die "umount expects a single argument\n";
-
- require fs::mount;
- fs::mount::umount($_[0]);
-}
-
sub mkdir_ {
my ($_rec) = getopts(\@_, qw(p));
mkdir_p($_) foreach @_;
@@ -126,16 +119,7 @@ sub chown_ {
my ($name, $group) = (split('\.'), $_);
- my ($uid, $gid) = (getpwnam($name) || $name, getgrnam($group) || $group);
-
- require POSIX;
- my $chown; $chown = sub {
- foreach (@_) {
- POSIX::lchown($uid, $gid, $_) or die "chown of file $_ failed: $!\n";
- -d $_ && $rec and &$chown(glob_($_));
- }
- };
- &$chown(@_);
+ common::chown_($rec, $name, $group, @_);
}
sub swapon {
@@ -249,7 +233,7 @@ sub head_tail {
my ($h, $n) = getopts(\@_, qw(hn));
$h || @_ < to_bool($n) and die "usage: $0 [-h] [-n lines] [<file>]\n";
$n = $n ? shift : 10;
- my $fh; @_ ? open($fh, $_[0]) || die "error: can not open file $_[0]\n" : ($fh = *STDIN);
+ my $fh = @_ ? common::open_file($_[0]) || die "error: can not open file $_[0]\n" : *STDIN;
if ($0 eq 'head') {
local $_;
@@ -306,26 +290,6 @@ sub more {
}
}
-sub insmod {
- my ($h) = getopts(\@_, qw(h));
- $h || @_ == 0 and die "usage: insmod <module> [options]\n";
- my $f = shift;
-
- require run_program;
- require modules;
-
- if (! -r $f) {
- my $name = basename($f);
- $name =~ s/\.k?o$//;
- ($f) = modules::extract_modules('/tmp', $name);
- }
- if (! -r $f) {
- die "can not find module $f\n";
- }
- run_program::run(["insmod_", "insmod"], "-f", $f, @_) or die("insmod $f failed");
- unlink $f;
-}
-
sub modprobe {
my ($h) = getopts(\@_, qw(h));
$h || @_ == 0 and die "usage: modprobe <module> [options]\n";
@@ -397,19 +361,19 @@ sub kill {
kill $signal, @_ or die "kill failed: $!\n";
}
-sub lspci() { lspcidrake() }
-sub lspcidrake() {
+sub lssbus { &lspci }
+sub lspci { &lspcidrake }
+sub lspcidrake {
require detect_devices;
- print join "\n", detect_devices::stringlist(), '';
+ print join "\n", detect_devices::stringlist($_[0] eq '-v'), '';
}
-*lssbus = \&lspci;
sub dmesg() { print cat_("/tmp/syslog") }
sub sort {
my ($n, $h) = getopts(\@_, qw(nh));
$h and die "usage: sort [-n] [<file>]\n";
- my $fh; @_ ? open($fh, $_[0]) || die "error: can not open file $_[0]\n" : ($fh = *STDIN);
+ my $fh = @_ ? common::open_file($_[0]) || die "error: can not open file $_[0]\n" : *STDIN;
if ($n) {
print(sort { $a <=> $b } <$fh>);
} else {
@@ -435,7 +399,7 @@ sub bug {
my ($o_part_device) = @_;
$h and die "usage: bug [device]\nput file report.bug on a floppy or usb key\n";
- require fsedit;
+ require any;
require modules;
modules::load_dependencies("/modules/modules.dep");
@@ -446,15 +410,9 @@ sub bug {
require interactive::stdio;
my $in = interactive::stdio->new;
- eval { modules::load('usb-storage', 'sd_mod') } if detect_devices::usbStorage();
- my $all_hds = fsedit::get_hds({}, $in);
- fs::get_raw_hds('', $all_hds);
-
- my @l1 = grep { detect_devices::isKeyUsb($_) } @{$all_hds->{hds}};
- my @l2 = grep { $_->{media_type} eq 'fd' || detect_devices::isKeyUsb($_) } @{$all_hds->{raw_hds}};
- my @l = (fs::get::hds_fstab(@l1), @l2);
-
- $part = $in->ask_from_listf('', "Which device?", \&partition_table::description, \@l) or return;
+ require install::any;
+ $part = $in->ask_from_listf('', "Which device?", \&partition_table::description,
+ [ install::any::removable_media__early_in_install() ] ) or return;
}
warn "putting file report.bug on $part->{device}\n";
@@ -462,9 +420,9 @@ sub bug {
fs::mount::mount(devices::make($part->{device}), '/fd', $fs_type);
- require install_any;
- output('/fd/report.bug', install_any::report_bug());
- umount '/fd';
+ require install::any;
+ output('/fd/report.bug', install::any::report_bug());
+ fs::mount::umount('/fd');
common::sync();
}
diff --git a/perl-install/install/ftp.pm b/perl-install/install/ftp.pm
new file mode 100644
index 000000000..292fd2d3d
--- /dev/null
+++ b/perl-install/install/ftp.pm
@@ -0,0 +1,100 @@
+package install::ftp; # $Id$
+
+use Net::FTP;
+
+use network::network;
+use log;
+
+my %hosts;
+
+1;
+
+sub parse_ftp_url {
+ my ($url) = @_;
+ $url =~ m!^ftp://(?:(.*?)(?::(.*?))?\@)?([^/]+)/(.*)! &&
+ ($3, $4, $1, $2);
+}
+
+sub _new {
+ my ($url) = @_;
+ my ($host, $prefix, $login, $password) = parse_ftp_url($url);
+
+ if ($hosts{"$host$prefix"}) {
+ return @{$hosts{"$host$prefix"}};
+ }
+
+ my %options = (Passive => 1, Timeout => 60, Port => 21);
+ $options{Firewall} = $ENV{PROXY} if $ENV{PROXY};
+ $options{Port} = $ENV{PROXYPORT} if $ENV{PROXYPORT};
+ unless ($login) {
+ $login = 'anonymous';
+ $password = '-drakx@';
+ }
+
+ my $ftp;
+ foreach (1..10) {
+ $ftp = Net::FTP->new(network::network::resolv($host), %options) or die "Can't resolve hostname '$host'\n";
+ $ftp && $ftp->login($login, $password) and last;
+
+ log::l("ftp login failed, sleeping before trying again");
+ sleep 5 * $_;
+ }
+ $ftp or die "unable to open ftp connection to $host\n";
+ $ftp->binary;
+ $ftp->cwd($prefix);
+
+ my @l = ($ftp, \ (my $_retr));
+ $hosts{"$host$prefix"} = \@l;
+ @l;
+}
+
+sub getFile {
+ my ($f, $url) = @_;
+ my ($_size, $fh) = get_file_and_size($f, $url) or return;
+ $fh;
+}
+sub get_file_and_size {
+ my ($f, $url) = @_;
+
+ foreach (1..3) {
+ my ($ftp, $retr) = _new($url);
+ eval { $$retr->close if $$retr };
+ if ($@) {
+ log::l("FTP: closing previous retr failed ($@)");
+ _rewindGetFile(); #- in case Timeout got us on "->close"
+ redo;
+ }
+
+ my $size = $ftp->size($f);
+ $$retr = $ftp->retr($f) and return $size, $$retr;
+
+ my $error = $ftp->code;
+ $error == 550 and log::l("FTP: 550 file unavailable"), return;
+
+ _rewindGetFile();
+ log::l("ftp get failed, sleeping before trying again (error:$error)");
+ sleep 1;
+ }
+}
+
+#-sub closeFiles() {
+#- #- close any existing connections
+#- foreach (values %hosts) {
+#- my $retr = $_->[1] if ref $_;
+#- $$retr->close if $$retr;
+#- undef $$retr;
+#- }
+#-}
+
+sub _rewindGetFile() {
+ #- close any existing connection.
+ foreach (values %hosts) {
+ my ($ftp, $retr) = @{$_ || []};
+ #- do not let Timeout kill us!
+ eval { $$retr->close } if $$retr;
+ eval { $ftp->close } if $ftp;
+ }
+
+ #- make sure to reconnect to server.
+ %hosts = ();
+}
diff --git a/perl-install/install_gtk.pm b/perl-install/install/gtk.pm
index 17b4843e3..877f62596 100644
--- a/perl-install/install_gtk.pm
+++ b/perl-install/install/gtk.pm
@@ -1,4 +1,4 @@
-package install_gtk; # $Id$
+package install::gtk; # $Id$
use diagnostics;
use strict;
@@ -56,7 +56,7 @@ sub load_rc {
my ($o, $name) = @_;
my $f = $name;
- -r $name or $f = find { -r $_ } map { "$_/themes-$name.rc" } ("share", $ENV{SHARE_PATH}, dirname(__FILE__));
+ -r $name or $f = find { -r $_ } map { "$_/themes-$name.rc" } ("share", $ENV{SHARE_PATH}, dirname(__FILE__) . '/..');
if ($f) {
Gtk2::Rc->parse_string($o->{doc} ? $theme_overriding_for_doc : scalar cat_($f));
}
@@ -133,10 +133,10 @@ sub create_steps_window {
]);
};
- my @l = $category->(N("System installation"));
+ my @l = $category->(N("Installation"));
foreach (grep { !eval $o->{steps}{$_}{hidden} } @{$o->{orderedSteps}}) {
if ($_ eq 'setRootPassword') {
- push @l, '', $category->(N("System configuration"));
+ push @l, '', $category->(N("Configuration"));
}
my $img = gtknew('Image', file => 'steps_off.png');
$steps{steps}{$_}{img} = $img;
@@ -213,13 +213,14 @@ q(<fontconfig>
}
#------------------------------------------------------------------------------
-sub init_sizes() {
+sub init_sizes {
+ my ($o) = @_;
($::rootwidth, $::rootheight) = (Gtk2::Gdk->screen_width, Gtk2::Gdk->screen_height);
$::stepswidth = $::rootwidth <= 640 ? 0 : 200 if !$::move;
($::logowidth, $::logoheight) = $::rootwidth <= 640 ? (0, 0) : (800, 75);
- ($::windowwidth, $::windowheight) = ($::rootwidth - $::stepswidth, $::rootheight - $::helpheight - $::logoheight);
+ ($o->{windowwidth}, $o->{windowheight}) = ($::rootwidth - $::stepswidth, $::rootheight - $::helpheight - $::logoheight);
($::real_windowwidth, $::real_windowheight) = (576, 418);
- $::move and $::windowwidth -= 100;
+ $::move and $o->{windowwidth} -= 100;
}
sub handle_unsafe_mouse {
@@ -239,7 +240,7 @@ sub special_shortcuts {
my (undef, $event) = @_;
my $d = ${{ $Gtk2::Gdk::Keysyms{F2} => 'screenshot', $Gtk2::Gdk::Keysyms{Home} => 'restart' }}{$event->keyval};
if ($d eq 'screenshot') {
- install_any::take_screenshot($::o);
+ install::any::take_screenshot($::o);
} elsif ($d eq 'restart' && member('control-mask', @{$event->state}) && member('mod1-mask', @{$event->state})) {
log::l("restarting install");
ugtk2->exit(0x35);
@@ -263,7 +264,7 @@ sub createXconf {
if ($Driver) {
output($file, sprintf(<<'END', ($::globetrotter ? "" : 'Option "XkbDisable"'), $mouse_type, $Driver, $Driver eq 'fbdev' ? '"default"' : '"800x600" "640x480"'));
Section "Files"
- FontPath "/usr/X11R6/lib/X11/fonts:unscaled"
+ FontPath "/usr/share/fonts:unscaled"
EndSection
Section "InputDevice"
diff --git a/perl-install/install/help/Makefile b/perl-install/install/help/Makefile
new file mode 100644
index 000000000..cca58ff11
--- /dev/null
+++ b/perl-install/install/help/Makefile
@@ -0,0 +1,9 @@
+help:
+ @if [ ! -d doc ]; then \
+ echo "Checking out doc stuff now ..."; \
+ cvs -d :ext:cvs.mandriva.com:/cooker co doc/manualB/{entities,manuals,modules}; \
+ else \
+ echo "Updating doc stuff now ..."; \
+ cd doc ; cvs update manualB/{entities,manuals,modules}; \
+ fi
+ ./help_xml2pm.pl
diff --git a/perl-install/help.pm b/perl-install/install/help/help.pm
index aa7d274f6..dd30f1457 100644
--- a/perl-install/help.pm
+++ b/perl-install/install/help/help.pm
@@ -1,7 +1,9 @@
-package help;
+package install::help::help;
use common;
use utf8;
+push @::textdomains, 'DrakX-help';
+
1;
# IMPORTANT: Do not edit this File - It is automatically generated
@@ -180,12 +182,6 @@ on this icon will ask you to insert the floppy disk created at the end of
another installation. See the second tip of the last step on how to create
such a floppy.", N("No"), N("Yes"), N("Automatic dependencies"));
}
-sub configurePrinter() {
- N("\"%s\": clicking on the \"%s\" button will open the printer configuration
-wizard. Consult the corresponding chapter of the ``Starter Guide'' for more
-information on how to set up a new printer. The interface presented in our
-manual is similar to the one used during installation.", N("Printer"), N("Configure"));
-}
sub configureServices() {
N("This dialog is used to select which services you wish to start at boot
time.
@@ -372,7 +368,7 @@ drive. Be careful -- it is a powerful but dangerous choice and you can very
easily lose all your data. That's why this option is really only
recommended if you have done something like this before and have some
experience. For more instructions on how to use the DiskDrake utility,
-refer to the ``Managing Your Partitions'' section in the ``Starter Guide''.", N("Use free space"), N("Use existing partition"), N("Use the free space on the Microsoft Windows® partition"), N("Erase entire disk"), N("Remove Windows"), N("Custom disk partitioning"));
+refer to the ``Managing Your Partitions'' section in the ``Starter Guide''.", N("Use free space"), N("Use existing partition"), N("Use the free space on the Microsoft Windows® partition"), N("Erase entire disk"), N("Remove Microsoft Windows®"), N("Custom disk partitioning"));
}
sub exitInstall() {
N("There you are. Installation is now complete and your GNU/Linux system is
@@ -810,11 +806,6 @@ correct.
* \"%s\": verify the current mouse configuration and click on the button
to change it if necessary.
- * \"%s\": clicking on the \"%s\" button will open the printer
-configuration wizard. Consult the corresponding chapter of the ``Starter
-Guide'' for more information on how to set up a new printer. The interface
-presented in our manual is similar to the one used during installation.
-
* \"%s\": if a sound card is detected on your system, it'll be displayed
here. If you notice the sound card is not the one actually present on your
system, you can click on the button and choose a different driver.
@@ -853,7 +844,7 @@ Mandriva Linux Control Center.
* \"%s\": through this entry you can fine tune which services will be run
on your machine. If you plan to use this machine as a server it's a good
-idea to review this setup.", N("Configure"), N("Keyboard"), N("Country / Region"), N("Configure"), N("More"), N("Timezone"), N("Configure"), N("Mouse"), N("Printer"), N("Configure"), N("Sound card"), N("TV card"), N("Configure"), N("ISDN card"), N("Configure"), N("Graphical Interface"), N("Configure"), N("Network"), N("Proxies"), N("Security Level"), N("Firewall"), N("Bootloader"), N("Services"));
+idea to review this setup.", N("Configure"), N("Keyboard"), N("Country / Region"), N("Configure"), N("More"), N("Timezone"), N("Configure"), N("Mouse"), N("Sound card"), N("TV card"), N("Configure"), N("ISDN card"), N("Configure"), N("Graphical Interface"), N("Configure"), N("Network"), N("Proxies"), N("Security Level"), N("Firewall"), N("Bootloader"), N("Services"));
}
sub takeOverHdChoose() {
N("Choose the hard drive you want to erase in order to install your new
diff --git a/perl-install/share/po/help_xml2pm.pl b/perl-install/install/help/help_xml2pm.pl
index a4f495487..742bd9b78 100755
--- a/perl-install/share/po/help_xml2pm.pl
+++ b/perl-install/install/help/help_xml2pm.pl
@@ -22,6 +22,7 @@ my %helps = map {
output($template_file, template($lang, @l));
system("$xsltproc id.xsl $template_file > $file") == 0 or die "$xsltproc id.xsl $template_file failed\n";
+ warn "parsing $file\n";
my $p = new XML::Parser(Style => 'Tree');
my $tree = $p->parsefile($file);
@@ -35,19 +36,18 @@ save_help($base);
foreach my $lang (keys %helps) {
(my $rlang = $lang) =~ s/_(.*)/_\U$1/;
print "Now transforming: $lang\n";
- my ($charset) = cat_("$rlang.po") =~ /charset=([^\\]+)/ or die "missing charset in $rlang.po\n";
- open(my $F, ">:encoding($charset)", "help-$rlang.pot");
+ open(my $F, ">:encoding(utf8)", "po/$rlang.po");
print $F <<EOF;
msgid ""
msgstr ""
-"Content-Type: text/plain; charset=$charset\\n"
+"Content-Type: text/plain; charset=UTF-8\\n"
EOF
foreach my $id (keys %{$helps{$lang}}) {
# warn "Writing id=$id in lang=$lang\n";
$base->{$id} or warn "$lang:$id doesn't exist in english\n", next;
- print $F qq(# DO NOT BOTHER TO MODIFY HERE, SEE:\n# cvs.mandrakesoft.com:/cooker/$dir/$lang/drakx-chapter.xml\n);
- print_in_PO($F, to_ascii($base->{$id}[0]), $helps{$lang}{$id}[0]);
+ print $F qq(# DO NOT BOTHER TO MODIFY HERE, SEE:\n# cvs.mandriva.com:/cooker/$dir/$lang/drakx-chapter.xml\n);
+ print_in_PO($F, $base->{$id}[0], $helps{$lang}{$id}[0]);
}
}
unlink(".memdump");
@@ -65,20 +65,23 @@ sub print_in_PO {
sub save_help {
my ($help, $inside_strings) = @_;
- open(my $F, ">:encoding(ascii)", "../../help.pm");
+ open(my $F, ">:encoding(utf8)", "help.pm");
print $F <<'EOF';
-package help;
+package install::help::help;
use common;
+use utf8;
+
+push @::textdomains, 'DrakX-help';
1;
-# IMPORTANT: Don't edit this File - It is automatically generated
+# IMPORTANT: Do not edit this File - It is automatically generated
# from the manuals !!!
-# Write a mail to <documentation@mandrakesoft.com> if
+# Write a mail to <documentation@mandriva.com> if
# you want it changed.
EOF
foreach (sort keys %$help) {
- my ($main, @inside) = map { '"' . to_ascii($_) . '"' } @{$help->{$_}};
+ my ($main, @inside) = map { qq("$_") } @{$help->{$_}};
my $s = join(', ', $main, map { qq(N($_)) } @inside);
print STDERR "Writing id=$_\n";
print $F <<EOF;
@@ -159,21 +162,20 @@ sub rewrite2 {
$help;
}
-my @inside_strings;
sub rewrite2_ {
my ($tree, @parents) = @_;
ref($tree) or return $tree;
!$tree->{attr}{condition} || $tree->{attr}{condition} !~ /no-inline-help/ or return '';
- my @prev_inside_strings;
my ($id) = $tree->{attr}{id} ? $tree->{attr}{id} =~ /drakxid-([^-]+)$/ : ();
- if ($id) {
- @prev_inside_strings = @inside_strings;
- @inside_strings = ();
- }
+ my @inside_strings;
my $text = do {
- my @l = map { rewrite2_($_, $tree, @parents) } @{$tree->{children}};
+ my @l = map {
+ my ($s, @l) = rewrite2_($_, $tree, @parents);
+ push @inside_strings, @l;
+ $s;
+ } @{$tree->{children}};
my $text = "";
foreach (@l) {
s/^ // if $text =~ /\s$/;
@@ -189,14 +191,16 @@ sub rewrite2_ {
$t =~ s/^\s+//;
my @footnotes = map {
- my $s = rewrite2_({ %$_, tag => 'para' });
+ my ($s, @l) = rewrite2_({ %$_, tag => 'para' });
+ push @inside_strings, @l;
$s =~ s/^\s+//;
"(*) $s";
} find_tag('footnote', $tree);
$help->{$id} = [ aerate($t . join('', @footnotes)), @inside_strings ];
- unshift @inside_strings, @prev_inside_strings;
+ return '';
}
+ my $text_ = do {
if (0) {
} elsif (member($tree->{tag}, 'formalpara', 'para', 'itemizedlist', 'orderedlist')) {
$text =~ s/^\s(?!\s)//;
@@ -236,7 +240,7 @@ sub rewrite2_ {
'keycombo', 'note', 'sect1', 'sect2', 'sect3',
'superscript', 'systemitem', 'option',
'tip', 'ulink', 'xref', 'varlistentry', 'variablelist', 'term',
- 'phrase', 'hardware',
+ 'phrase', 'hardware', 'procedure', 'step', 'bridgehead',
)) {
# ignored tags
$text;
@@ -247,12 +251,15 @@ sub rewrite2_ {
abstract book chapter)
)) {
# dropped tags
+ @inside_strings = ();
'';
} elsif ($tree->{tag} eq 'screen') {
qq(\n$text\n);
} else {
warn "unknown tag $tree->{tag}\n";
}
+ };
+ $text_, @inside_strings;
}
sub aerate {
@@ -263,15 +270,6 @@ sub aerate {
$s2;
}
-sub to_ascii {
- local $_ = $_[0];
- tr[ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ]
- [AAAAAAACEEEEIIIIDNOOOOOxOUUUUY_aaaaaaaceeeeiiiionooooo_ouuuuy_y];
- s/\x81//g; #- why is this needed???
- s/ß/ss/g;
- $_;
-}
-
sub template {
my ($lang, @l) = @_;
my $entities = join("\n", map { qq(<!ENTITY $_ SYSTEM '$_.xml'>) } @l);
@@ -298,16 +296,10 @@ $entities
%button-list;
<!ENTITY % companies SYSTEM "../../entities/$lang/companies.ent" >
%companies;
-<!ENTITY % icon-list SYSTEM "../../entities/$lang/icon_list.ent" >
-%icon-list;
<!ENTITY % menu-list SYSTEM "../../entities/$lang/menu_list.ent" >
%menu-list;
-<!ENTITY % tab-list SYSTEM "../../entities/$lang/tab_list.ent" >
-%tab-list;
<!ENTITY % tech SYSTEM "../../entities/$lang/tech.ent" >
%tech;
-<!ENTITY % text-field-list SYSTEM "../../entities/$lang/text_field_list.ent" >
-%text-field-list;
<!ENTITY % titles SYSTEM "../../entities/$lang/titles.ent" >
%titles;
<!ENTITY % typo SYSTEM "../../entities/$lang/typo.ent" >
diff --git a/perl-install/share/po/id.xsl b/perl-install/install/help/id.xsl
index 4897a204f..4897a204f 100644
--- a/perl-install/share/po/id.xsl
+++ b/perl-install/install/help/id.xsl
diff --git a/perl-install/install/help/po/DrakX-help.pot b/perl-install/install/help/po/DrakX-help.pot
new file mode 100644
index 000000000..3b1f3f647
--- /dev/null
+++ b/perl-install/install/help/po/DrakX-help.pot
@@ -0,0 +1,1109 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr ""
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr ""
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr ""
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr ""
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr ""
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr ""
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr ""
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr ""
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr ""
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr ""
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr ""
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr ""
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr ""
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr ""
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr ""
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr ""
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr ""
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr ""
diff --git a/perl-install/install/help/po/Makefile b/perl-install/install/help/po/Makefile
new file mode 100644
index 000000000..457a7cbae
--- /dev/null
+++ b/perl-install/install/help/po/Makefile
@@ -0,0 +1,35 @@
+NAME = DrakX-help
+LOCALEDIR = ${prefix}/share/locale
+PL_FILES = ../help.pm
+
+MAIN_PO_FILES = ../../../share/po/libDrakX.pot ../../share/po/DrakX.pot
+
+POFILES = $(wildcard *.po)
+MOFILES = $(POFILES:%.po=%.mo)
+LANGS = $(POFILES:%.po=%)
+
+default: $(MOFILES)
+
+%.mo: %.po
+ msgfmt -o $@ $<
+
+merge: $(NAME).pot
+ for n in $(POFILES); do \
+ echo "Merging $$n"; \
+ msgmerge $$n $(NAME).pot > "$$n"t ; \
+ mv -f "$$n"t $$n ; \
+ done
+
+$(NAME).pot: $(PL_FILES)
+ perl_checker -q --generate-pot .$@ $(PL_FILES)
+ xgettext $(MAIN_PO_FILES:%=-x %) -o $@ .$@
+ rm -f .$@
+
+install: $(MOFILES)
+ for l in $(LANGS); do \
+ install -d $(LOCALEDIR)/$$l/LC_MESSAGES; \
+ install -m 644 $$l.mo $(LOCALEDIR)/$$l/LC_MESSAGES/$(NAME).mo; \
+ done
+
+clean:
+ @rm -rf *.mo $(POFILES:%=%t)
diff --git a/perl-install/install/help/po/af.po b/perl-install/install/help/po/af.po
new file mode 100644
index 000000000..828c570a4
--- /dev/null
+++ b/perl-install/install/help/po/af.po
@@ -0,0 +1,1839 @@
+# translation of DrakX-af21-09.po to Afrikaans
+# translation of DrakX-af.po to Afrikaans
+# KTranslator Generated File
+# KTranslator Generated File
+# Copyright (C) 2000,2003, 2004 Free Software Foundation, Inc.
+# Schalk W. Cronjé <schalkc@ntaba.co.za>, 2000.
+# Dirk van der Walt <mandrake@webmail.co.za>, 2003.
+# Dirk van der Walt <dirkvanderwalt@webmail.co.za>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-af\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-04-21 17:33+0200\n"
+"Last-Translator: Dirk van der Walt <dirkvanderwalt@webmail.co.za>\n"
+"Language-Team: Afrikaans\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.0.2\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Voordat u voortgaan, lees asb die lisensieterme noukeurig deur. Dit dek\n"
+"die hele Mandriva Linux distribusie. Indien u saamstem met al die\n"
+"voorwaardes daarin, merk die \"%s\" boksie. Indien nie, kan u op die\n"
+"\"%s\" knoppie druk om teherlaai."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux is 'n multigebruikerstelsel, dit beteken dat elke gebruiker sy\n"
+"eie voorkeure kan stel, met sy eie lêers ens. U kan meer hieroor in die\n"
+"\"Starter Guide\" lees. Andersins as 'root' (die supergebruiker) kan\n"
+"gebruikers wat u hier byvoeg niks behalwe hul eie lêers en eie\n"
+"konfigurasie verander nie. U moet ten minste een gewone gebruiker vir uself\n"
+"skep.\n"
+"Hierdie gebruker is die een waaronder u moet inteken vir normale gebruik\n"
+"van die rekenaar. Alhoewel dit baie gemaklik is om as 'root' in te teken "
+"vir\n"
+"daaglikse werk, is dit baie gevaarlik. 'n Eenvoudige fout kan moontlik u\n"
+"stelsel\n"
+"breek. 'n Fout wat as gewone gebruiker gemaak word, sal net daardie\n"
+"gebruiker\n"
+"beïnvloed en nie hele stelsel nie.\n"
+"\n"
+"Eers moet u, u eie naam intik. Dit is nie verpligtend nie, want u kan\n"
+"eintlik\n"
+"enigiets intik, as u wil. DrakX sal dan die eerste woord wat u ingetik het,\n"
+"in die\n"
+"\"%s\" veld plaas. U kan hier verander indien u wil. Dit is die\n"
+"gebruikernaam waarmee\n"
+"die gebruiker op die rekenaar sal aanteken. U moet dan ook 'n wagwoord\n"
+"voorsien.\n"
+"'n Gewone gebruiker se wagwoord is nie so krities soos dié van die\n"
+"supergebruiker\n"
+"(uit 'n sekuriteitsoogpunt) nie, maar daar is geen\n"
+"rede om agterlosig met u data te wees nie.\n"
+"\n"
+"\n"
+"Indien u op \"%s\" kliek sal die gebruiker geskep word en kan u nog\n"
+"gebruikers byvoeg.\n"
+"U kan vir al u vriende gebruikername skep, sommer een vir pa en ma ook. \n"
+"Sodra u klaar is, kliek op \"%s\".\n"
+"Kliek op die \"%s\" knoppie indien u die verstek-instruksiedop vir die\n"
+"gebruiker\n"
+"wil verander.\n"
+"Dit is bash by verstek.\n"
+"\n"
+"Sodra u klaar is met die skep van gebruikers, sal u gevra word om 'n\n"
+"gebruiker\n"
+"te kies wie outomaties sal inteken sodra Linux klaar selfgelaai het. Indien\n"
+"u hierdie funksie wil gebruik (en plaaslike sekuriteit tans nie vreeslik\n"
+"belangrik is nie), kies asseblief die verlangde gebruiker en venstermaker,\n"
+"klik dan op \"%s\".\n"
+"Indien u NIE hierdie funksie wil gebruik nie, sorg dat \"%s\" NIE gemerk is\n"
+"nie. "
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Wil u hierdie funksie gebruik?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Hier is 'n lys van die bestaande Linux partisies wat opgespoor is.\n"
+"U kan die assistent se keuses behou, hulle is gewoonlik geskik vir die\n"
+"meeste installasies. Sou u wil verander, moet u ten minste 'n wortel-\n"
+"partisie (\"/\") voorsien. Dit moet nie te klein wees nie, anders kan ons \n"
+"nie genog sagteware installeer nie. Indien u die data op 'n aparte \n"
+"partisie wil stoor, moet u ook 'n \"/home\"-partisie skep.\n"
+"(waarvoor u meer as een Linux partisie nodig het).\n"
+"\n"
+"Elke partisie word as volg gelys: \"Naam\", \"Kapasiteit\".\n"
+"\n"
+"\"Naam werk as volg\" \"tipe hardeskyf\", \"nommer van hardeskyf\",\n"
+"\"nommer van partisie\" (byvoorbeeld: \"hda1\").\n"
+"\n"
+"Indien u 'n IDE tipe hardeskyf het sal die tipe \"hd\" wees, en SCSI, sal \n"
+"\"sd\" wees\n"
+"\n"
+"Die nommer van die hardeskyf is altyd 'n letter, wat volg na \"hd\" \n"
+"of \"sd\".\n"
+"Met IDE hardeskywe:\n"
+"\n"
+" * \"a\" beteken \"meester-hardeskyf op die primêre IDE-beheerder\";\n"
+"\n"
+" * \"b\" beteken \"slaaf-hardeskyf op die primêre IDE-beheerder\";\n"
+"\n"
+" * \"c\" beteken \"meester-hardeskyf op die sekondêre IDE-beheerder\";\n"
+"\n"
+" * \"e\" beteken \"slaaf-hardeskyf op die sekondêre IDE-beheerder\";\n"
+"\n"
+"Met SCSI-hardeskywe, beteken 'n \"a\" die kleinste SCSI-ID,\"b\" sal\n"
+"dan die volgende ID verteenwoordig ens."
+
+#: ../help.pm:88
+#, fuzzy, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Die Mandriva Linux installasie is versprei oor 'n aantal CD-ROMs.DrakX\n"
+"weet wanneer 'n gekose pakket op 'n ander CD-ROM is. DrakX sal in so\n"
+"geval die huidige CD uitskop en aandui watter een benodig word."
+
+#: ../help.pm:95
+#, fuzzy, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Nou moet u spesifiseer watter programme u op die rekenaar wil\n"
+"installeer. Daar is duisende pakkette beskikbaar vir Mandriva Linux, en\n"
+"om alles meer eenvoudig te maak, is die pakkette gegroepeer onder\n"
+"groepe van selfde tipe programme.\n"
+"\n"
+"Die groepe is so saamgestel dat dit saamval met die tipe gebruik van u\n"
+"rekenaar. Mandriva Linux het vier vooraf gespesifseerde installasies\n"
+"beskikbaar. Dink aan hierdie tipes as houers met verskillende pakkette.\n"
+"U kan wel uit die verskillende houers, verskillende pakkette kies.\n"
+"Dus kan u \"Werkstasie\" ook programme uit die \"Ontwikkeling\"\n"
+"bevat.\n"
+"( Amper soos die \"pick 'n mix\" by 'n Clicks of 'n winkel van u keuse! )\n"
+"\n"
+" * \"%s\": indien u die rekenaar as 'n werkstasie wil gebruik, kies een of\n"
+"meer hieruit.\n"
+"\n"
+" * \"%s\": indien u ontwikkelling op die masjien wil doen, kan u hier\n"
+"kies en keur.\n"
+"\n"
+" * \"%s\": mense wat 'n bediener wil opstel, hier is vir julle keuses.\n"
+"\n"
+" * \"%s\": Grafiese-omgewings. Indien u 'n grafiese omgewing wil\n"
+"gebruik, moet u ten minste een hier kies.\n"
+"\n"
+"Beweeg u muis stadig oor elke groep om meer inligting daaroor te bekom.\n"
+"Indien u NIKS kies nie gedurende 'n normale installasie, sal 'n venster\n"
+"opspring met verskillende keuses vir hierdie minimale installasie:\n"
+"\n"
+" * \"%s\": installeer die minimale programme vir 'n werkende grafiese\n"
+"werksomgewing.\n"
+"\n"
+" * \"%s\": installeer 'n basiese stelsel met basiese nutsporgramme en hul\n"
+"dokumentasie. Dit is geskik om 'n bediener op te stel.\n"
+"\n"
+" * \"%s\": sal 'n absolute minimale installasie doen, sodat u bloot 'n\n"
+"werkende Linux rekenaar het. Die grootte sal so 65 megagrepe wees.\n"
+"\n"
+"U kan die \"%s\" blokkie merk, dit is handig indien u vertroud is met al\n"
+"die beskikbare pakette, en u meer beheer verlang.\n"
+"\n"
+"Indien u die installasie in \"%s\"-modus begin het, kan u NIKS kies nie\n"
+"om te verhoed dat nuwe pakette installeer. Baie handig wanneer u 'n\n"
+"bestaande stelsel opdateeer, of herstel."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Opgradeer"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Met basiese dokumentasie"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Werklike minimale installasie"
+
+#: ../help.pm:152
+#, fuzzy, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Inidein u gespesifiseer het dat u individuele pakkette wil kies,\n"
+"sal daar 'n boom-struktuur aan u vertoon word met al die pakkette\n"
+"wat opgedeel is in groepe en sub-groepe. Soos u die deur hulle rits\n"
+"kan u hele groepe of sub-groepe kies, of self individuele pakkette.\n"
+"\n"
+"Sodra u 'n pakket kies, sal daar 'n beskrywing aan die regterkant verskyn\n"
+"wat aandui waarvoor die pakket gebruik word.\n"
+"\n"
+"Indien u 'n diensprogram kies, of dit nou deel is van 'n groepe pakkette of\n"
+"'n enkel een, sal u gevra word om die installasie daarvan te bevestig.\n"
+"Mandriva Linux sal by verstek alle bediener-programme afskop nadat u die\n"
+"rekenaar aangeskakel het. Hierdie bediener-programme is verpak sonder\n"
+"enige probleme bekend. Dit kon intussen verander het, nadat sekuriteits-"
+"gate\n"
+"gevind is. Indien u nie weet wat 'n diens veronderstel is om te doen nie, "
+"of\n"
+"waarom dit geïnstalleer word nie, klik op \"%s\". Deur op \"%s\" te klik "
+"sal\n"
+"die bediener-program geïnstalleer word en afskop sodra die Linux laai!!\n"
+"\n"
+"Die \"%s\"-opsie VERSPER die waarskuwings-dialoog wat verskyn\n"
+"sodra die installeerder ander pakkette moet kies a.g.v. afhanklikhede\n"
+"Afhanklikhede werk as volg: Sommige pakkette moet ander programme\n"
+"installeer om korrek te funksioneer, maar hierdie programme maak soms deel\n"
+"uit van 'n ander pakket, dus sal die installeer-program daardie pakkette\n"
+"ook installeer.\n"
+"\n"
+"Die klein disket-ikoon aan die lys se onderkant laat u toe om 'n lys van\n"
+"pakkette van 'n vorige installeasie te laai. Dit is handig indien u 'n\n"
+"aantal masjiene identies wil konfigureer. As u hierop klik, sal u gevra\n"
+"word om die disket te voorsien wat aan die einde van 'n vorige\n"
+"installasie geskep is. Raadpleeg die tweede wenk van die laaste stap\n"
+"oor hoe mens so disket skep."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Outomatiese-afhanklikhede"
+
+#: ../help.pm:186
+#, fuzzy, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": deur op die \"%s\" knoppie te klik, sal u toegang tot die 'printer\n"
+"configuration wizard' kry. Gaan gerus die ooreenstemde hoofstuk in die\n"
+"\"Starter Guide\" na vir meer inligting. Dit stem baie ooreen met die een."
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"U kan nou dienste kies wat by herlaaityd moet afskop.\n"
+"\n"
+"Wanneer u die muis oor 'n item beweeg, sal 'n klein ballon opspring\n"
+"wat die rol van die diens verduidelik.\n"
+"\n"
+"Wees versigtig met hierdie stap. Indien u beplan om dié rekenaar as 'n\n"
+"bediener te gebruik wil u nie dienste afskop wat u nie gaan gebruik nie."
+
+#: ../help.pm:209
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux gebruik die GMT (Greenwich Mean Time) as verwysing en verstel\n"
+"dan die tyd volgens u tydsone. Dit beteken dat, in Suid-Afrika,\n"
+"die tyd op die moederbord sowat twee ure \"uit\" sal wees,\n"
+"indien u Johannesburg as tydsone kies. U kan GNU/Linux forseer om\n"
+"die moederbord en plaaslike tyd dieselfde te hou deur NIE die \"%s\" te\n"
+"merk NIE. Gebruik dit so wanneer die rekenaar\n"
+"ander bedryfstelsels ook kan laai, byvoorbeeld Windows.\n"
+"\n"
+"Die \"%s\"-opsie sal outomaties die klok reguleer deur gebruik te maak van\n"
+"'n eksterne tyd-bediener op die Internet. U sal natuurlik 'n werkende\n"
+"Internetkonneksie daarvoor benodig. Kies 'n bediener naby u. Hierdie opsie\n"
+"laat u toe om hierdie rekenaar self as 'n tyd-bediener te gebruik."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Outotydsinkronisasie"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Grafiesekaart\n"
+"\n"
+" Die installeer-program sal in meeste gevalle u grafiesekaart outomaties\n"
+"opspoor. Indien daar probleme is, kan u self van hierdie lys die kaart\n"
+"kies.\n"
+"\n"
+" Dit mag gebeur dat daar verskillende tipe X-bedieners beskikbaar sal\n"
+"wees vir u kaart, met of sonder 3D-versnelling, kies dan die een wat u\n"
+"behoefdes die beste sal bevredig."
+
+#: ../help.pm:234
+#, fuzzy, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (staan vir X Window Stelsel -let geen 's') is die hart van die GNU/Linux \n"
+"se grafiese-koppelvlak. Bo-op X, laai grafiese omgewings. ( dit sluit\n"
+"KDE, GNOME, AfterStep, WindowMaker ens. in)\n"
+"\n"
+"Hier is 'n lys van verstellings wat u kan verander om die beste resultate\n"
+"te verkry: Grafiesekaart\n"
+"\n"
+"Die program sal gewoonlik die regte grafiesekaart optel en opstel.\n"
+"Indien nie, kan u self die regte een vanaf hierdie lys kies.\n"
+"\n"
+" Dit mag gebeur dat daar verskillende tipe X-bedieners beskikbaar sal\n"
+"wees vir u kaart, met of sonder 3D-versnelling, kies dan die een wat u\n"
+"behoefdes die beste sal bevredig.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Die program sal gewoonlik u monitor korrek kies.\n"
+"Indien nie, kan u self die regte een vanaf hierdie lys kies.\n"
+"\n"
+"\n"
+"\n"
+"Resolusie\n"
+"\n"
+" Hier kan u die resolusie en aantal kleure kies wat vir u hardeware\n"
+"beskikbaar is. Kies die een wat u die beste sal pas.( let dat u wel\n"
+"hierdie keuse weer kan verander na die installasie). 'n voorbeeld\n"
+"van die gekose konfigurasie word vertoon op die skerm.\n"
+"\n"
+"\n"
+"\n"
+"Toets\n"
+"\n"
+" Afhangende van u hardeware, sal die inskrywing moontlik weg wees.\n"
+"\n"
+" ons gaan 'n grafiese skerm probeer opstel met die verstellings\n"
+"wat u gemaak het. Indien u die boodskap daarop kan sien en \"%s\"\n"
+"antwoord, sal DrakX na die volgende stap gaan. Indien u nie die boodskap\n"
+"kan sien nie, dui dit aan dat iets nie reg opgestel is nie. Die toets sal "
+"dan\n"
+"na 12 sekondes eindig, en terugval na die kieslys toe. Verander dan u\n"
+"keuses vir nog 'n probeerslag.\n"
+"\n"
+"\n"
+"\n"
+"Opsies\n"
+"\n"
+" Hier kan u spesifiseer indien u rekenaar die grafiese-koppelvlak moet\n"
+"begin tydens selflaai. U kan \"%s\" merk indien u 'die rekenaar as bediener\n"
+"gaan gebruik, of indien u nie X met sukses kon opstel nie"
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+"\n"
+" Die program sal gewoonlik u monitor korrek kies.\n"
+"Indien nie, kan u self die regte een vanaf hierdie lys kies."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Resolusie\n"
+"\n"
+" Hier kan u die resolusie en aantal kleure kies wat vir u hardeware\n"
+"beskikbaar is. Kies die een wat u die beste sal pas.( let dat u wel hierdie\n"
+"keuse weer kan verander na die installasie). 'n voorbeeld van die gekose\n"
+"konfigurasie word vertoon op die skerm."
+
+#: ../help.pm:306
+#, fuzzy, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Indien daar verskillende tipe bedieners vir u kaart beskikbaar is, met of\n"
+"sonder 3D-versnelling, sal u gevra word om die een te kies wat u die beste\n"
+"sal pas."
+
+#: ../help.pm:311
+#, fuzzy, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Opsies\n"
+"\n"
+" hier kan u kies of u die rekenaar wil laat eindig in 'n grafiese "
+"koppelvlak\n"
+"na dit aangeskakel is. U sal natuurlik \"%s\" kies indien die rekenaar as\n"
+"'n bediener gebruik gaan word, of u nie die skerm reg kon opstel nie."
+
+#: ../help.pm:319
+#, fuzzy, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Op hierdie tydstip moet u besluit waar op die hardeskyf u Mandriva Linux\n"
+"wil installeer. Indien u 'n leë hardeskyf het, of indien 'n bestaande\n"
+"bedryfstelsel al die beskikbare spasie gebruik, sal u partisies moet\n"
+"skep. Om 'n partisie te skep veroorsaak dat u die hardeskyf logies\n"
+"verdeel, om spasie te skep vir u nuwe Mandriva Linux bedryfstelsel.\n"
+"\n"
+"Indien u 'n onervare gebruiker is, kan die skep van partisies vreemd en\n"
+"intimiderend wees.\n"
+"Die skep van partisies is gewoonlik onomkeerbaar en kan dataverlies\n"
+"meebring indien daar reeds 'n bestaande bedryfstelsel op die hardeskyf is.\n"
+"Gelukkig sluit DrakX 'n assisstent in wat die proses vergemaklik.\n"
+"Voor u verder gaan, lees die volgende deel deeglik deur, en wees rustig!\n"
+"(Moet nie stres kap nie! - Chill Dude!)\n"
+"\n"
+"Afhangende van hoe u hardeskyf gekonfigureer is, is daar 'n aantal opsies\n"
+"beskikbaar:\n"
+"\n"
+" * \"%s\": hierdie opsie sal die partisies op u leë hardeskyf outomaties\n"
+"opstel.\n"
+"Indien u die een kies, is dit al inset wat u hoef te lewer.\n"
+"\n"
+" * \"%s\": die assistent het een of meer bestaande Linux-partisies op die\n"
+"hardeskyf gekry. Indien u wil gebruik maak van hulle, kies hierdie opsie.\n"
+"Daar is verstek hegpunte, wat u kan verander, indien u wil, maar ons stel\n"
+"voor u hou daarby.\n"
+"\n"
+" * \" %s\": indien u Microsoft Windows op u hardeskyf geïnstalleer het, en\n"
+"dit neem al die spasie in beslag, moet ons eers 'n plekkie vir Linux skep. U "
+"kan die Microsoft Windows partisie met al die data uitwis\n"
+"(verwys na 'Erase entie disk' oplossing)\n"
+"of u kan die Microsoft Windows FAT of NTFS partisie verklein. Dit kan "
+"geskied\n"
+"sonner verlies van data, mits u die partisie gedefragmenteer het.Ons beveel "
+"ten sterkste aan dat u 'n rugsteun maak van u data. Hierdie is\n"
+"die beste metode indien u beide Mandriva Linux en Microsoft Windows op die\n"
+"rekenaar wil gebruik.\n"
+"\n"
+"Neem tog kennis dat dit die beskikbare oop spasie in Microsoft Windows sal\n"
+"verminder, aangesien ons plek moet maak vir Linux op die hardeskyf.\n"
+"\n"
+" * \"%s\": Indien u alle data op alle partisies op u hardeskyf wil uitwis,\n"
+"en dit dan vervang met Mandriva Linux, kan u hierdie opsie kies.\n"
+"Wees versigtig die opsie is onomkeerbaar!\n"
+"\n"
+" !! Net weer waarsku: alle data op die skyf sal vernietig word. !! \n"
+" * \"%s\" hierdie opsie gaan doodeenvoudig alles uitwis en van vooraf\n"
+"die hardeskyf partisies skep. Alle data sal verlore gaan.\n"
+"\n"
+" !! Net weer waarsku: alle data up die skyf sal vernietig word. !! \n"
+" * \"%s\": kies hierdie opsie indien u self die partisies wil opstel. Wees\n"
+"uiters versigtig -- dit is 'n gevaarlike keuse en u kan maklik al u data "
+"verloor. Hierdieopsie word aanbeveel vir persone wat ondervinding\n"
+"het en vertroud is met Linux .\n"
+"U kan verder oplees oor hoe om te werk te gaan in die \"Managing Your\n"
+"Partitions deel van die \"Starter Guide\"."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Gebruik bestaande partisies"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Wis hele skyf"
+
+#: ../help.pm:380
+#, fuzzy, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Fluit-fluit my storie is uit! Die installasie het tot 'n einde gekom en u\n"
+"GNU/Linux reknaar is gereed vir gebruik. Klik bloot op \"%s\" om\n"
+"te herlaai.Onthou tog om die installasie-media (CDROM of Disket)\n"
+"te verwyder. Die eerste skerm wat u sal sien, na die rekenaar sy\n"
+"hardeware-toetse uitgevoer het, is die herlaaistelsel se kieslys.\n"
+"Daar kan u die bedryfstelsel kies wat moet laai.\n"
+"\n"
+"Die \"%s\" knoppie sal nog twee knoppies laat verskyn:\n"
+"\n"
+" * \"%s\": om 'n installasie-disket te skep wat die hele installasie\n"
+"aotomaties sal doen, sonner die hulp van 'n persoon.\n"
+"Dit sal soortgelyk aan hierdie een wees.\n"
+"\n"
+" Let daarop dat twee verskillende opsies daarna beskikbaar sal wees:\n"
+"\n"
+" * \"%s\" Gedeeltelik outomaties. Die skep van partisies benodig 'n\n"
+"persoon om te spesifiseer.\n"
+"\n"
+" * \"%s\" Volkome outomaties. Die hardeskyf word totaal gewis, alle\n"
+"data word verloor.\n"
+"\n"
+" Hierdie is handig wanneer u 'n paar van dieselfde masjiene moet\n"
+"installeer.\n"
+"Besoek gerus ons webwerf vir meer inligting hieroor.\n"
+"\n"
+" * \"%s\": stoor 'n lys van die gekose pakette in hierdie installasie.\n"
+"Om hierdie keuses met 'n volgende installasie te gebruik, plaas disket\n"
+"in aandrywer en begin die installasie. Kies [F1] en tik '>> linux\n"
+"defcfg=\"floppy\" <<' in."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Skep outo-installasieskyf"
+
+#: ../help.pm:415
+#, fuzzy, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Enige nuwe partisies moet eers geformatteer word voor dit bruikbaar is.\n"
+"(formatteer beteken dan ons 'n lêerstelsel daarop skep).\n"
+"\n"
+"U kan ook nou kies om bestaande partisies te formatteer om so al die\n"
+"data daarop uit te vee. Kies asseblief dan nou daardie partisies ook.\n"
+"\n"
+"Let tog daarop dat die NIE nodig is om al die vooraf-bestaande partisies\n"
+"weer te formatteer NIE. U moet wel partisies wat die bedryfstelsel bevat\n"
+"formatteer. ( byvoorbeeld \"/\",\"/usr\" of \"/var\") maar partisies met\n"
+"data wat u graag wil hou ( bv \"/home\") moet nie geformatteer word\n"
+"nie.\n"
+"\n"
+"Wees daarom versigtig wanneer u die partisies kies. Na dit geformatteer\n"
+"is, sal ALLE data daarop vernietig wees.\n"
+"\n"
+"Klik op \"%s\" sodra u gereed is om te formatteer.\n"
+"\n"
+"Klik op \"%s\" indien u 'n ander partisie vir die installasie van u nuwe\n"
+"Madrake Linux bedryfstelsel wil kies\n"
+"\n"
+"Klik op \"%s\" indien u partisies wil kies wat dan ondersoek en\n"
+"getoets moet word."
+
+#: ../help.pm:437
+#, fuzzy, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Teen die tyd wat u Mandriva Linux installeer, is dit hoogs waarskynlik\n"
+"dat van die pakkette intussen opgedateer is. Foute kom reggestel wees,\n"
+"of sekuriteits probleme is dalk opgelos. Om voordeel hieruit te put, kan\n"
+"u hulle nou van die Internet aflaai. Merk \"%s\" indien u 'n werkende\n"
+"Internetkonneksie het, of \"%s\" sou u dit eers later wil doen\n"
+"\n"
+"Deur \"%s\" te kies, kan u 'n lys plekke sien waarvanaf hierdie\n"
+" pakkette gelaai kan word. Kies 'n geskikte een. 'n Boom-struktuur\n"
+" met die nuwwe pakkette in sal verskyn. As u gelukkig is met almal,kan u\n"
+" \"%s\" klik om hulle af te laai en te installeer, of \"%s\" om te ontsnap."
+
+#: ../help.pm:450
+#, fuzzy, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Op hierdie tydstip laat DrakX u toe om die sekuriteitsvlak vir die\n"
+"rekenaar te kies. 'n Algemene reel is dat die sekuriteit hoër behoort\n"
+"te wees indien die masjien belangrike inligting bevat, of direk aan\n"
+"die Internet gekoppel is. Hierdie hoër sekuriteit kom met die koste dat\n"
+"dit algemene gebruik op die rekenaar moeiliker maak.\n"
+"\n"
+"Indien u onseker is oor wat om te kies, bly by die verstek opsie. U\n"
+"kan altyd later die vlak verander deur draksec in die Mandriva Linux "
+"Control\n"
+"Center te grbruik.\n"
+"\n"
+"Die \"%s\" veld kan boodskappe stuur na 'n gekose persoon wat\n"
+"verantwoordelik is vir die sekuriteit. Hy/sy sal dan gereelde boodskappe\n"
+"ontvang rakende die stand van die sekuriteit."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Sekuriteits-admin:"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Nou moet u asseblief besluit watter partisie(s) u gaan gebruik vir die\n"
+"installasie van u Mandriva Linux rekenaar.Indien die partisies reeds\n"
+"geskep is gedurende 'n vorige GNU/Linux installasie of deur 'n ander\n"
+"partisie-program, kan u hulle gebruik.Indien nie, moet u eerstens\n"
+"partisies skep.\n"
+"\n"
+"Die skep van 'n partisie behels dat u 'n hardeskyf kies.U kan klik op\n"
+"\"hda\" om die eerste IDE hardeskyf te kies, \"hdb\" is die tweede ens.\n"
+"\"sda\" is die eerste SCSI skyf.\n"
+"\n"
+"Hier is die opsies wanneer u partisies skep op die gekose hardeskyf:\n"
+"\n"
+" * \"%s\": hierdie opsie wis alle partisies op die gekose skyf uit.\n"
+"\n"
+" * \"%s\": hierdie opsie sal outomaties 'ext3' en 'swap' partisies in die\n"
+"vrye spasie op die hardeskyf skep.\n"
+"\n"
+"\"%s\": gee u toegang tot verdere keuses:\n"
+"\n"
+" * \"%s\": stoor die partisielys op 'n disket. Handig indien u later die\n"
+"partisielys wil herstel.Ons beveel hierdie stap aan.\n"
+"\n"
+" * \"%s\": stel u in staat om 'n vorige gestoorde partisielys van 'n\n"
+"disket af te herstel.\n"
+"\n"
+" * \"%s\": indien u partisielys beskadig is, kan u poog om dit te\n"
+" herstel met hierdie opsie. Wees asseblief versigtig, en onthou\n"
+"dat dit nie altyd werk nie.\n"
+"\n"
+" * \"%s\": ignoreer al die veranderinge en herlaai die partisielys wat\n"
+"oorspronklik op die hardeskyf was.\n"
+"\n"
+" * \"%s\": deur hierdie opsie NIE te merk NIE, sal u gebruikers verplig\n"
+"om verwyderbere media soos diskette en CD-ROMs self te heg en\n"
+"te ontheg.\n"
+"\n"
+" * \"%s\": gebruik die opsie indien u 'n assistent verlang wat sal help\n"
+" met die skep van partisies. Word aanbeveel indien u nie vertroud met\n"
+"die skep van partisies is nie\n"
+"\n"
+" * \"%s\": kanselleer al u veranderinge.\n"
+"\n"
+" * \"%s\": laat ekstra aksies toe op die partisies (tipe, opsies, formaat)\n"
+"en gee ook eksta inligting omtrent die hardeskyf.\n"
+"\n"
+" * \"%s\": sodra u klaar is, sal sal dit u veranderinge stoor\n"
+"\n"
+"Wanneer u die grootte spesifiseer, kan u die fyner verstellings spesifiseer\n"
+"deur u sleutelbord se Pyltjie sleutels te gebruik.\n"
+"\n"
+"Aandag: U kan enige opsie bereik deur die sleutelbort te gebruik. Gebruik\n"
+"bloot die [Tab] sleutel en die [Op/Af] pyltjies. om 'n partisie te kies\n"
+"\n"
+"Wanneer 'n partisie gekies is, kan u die volgende doen:\n"
+"\n"
+" * Ctrl-c om 'n nuwe partisie te skep (mits 'n leë partisie gekies is)\n"
+"\n"
+" * Ctrl-d om 'n partisie uit te wis\n"
+"\n"
+" * Ctrl-m om 'n hegpunt te spesifiseer\n"
+"\n"
+"Om inligting rakende die verskillende beskikbare lêerstelsels te bekom, "
+"lees\n"
+"asseblief die ext2FS hoofstuk in die \"Reference Manual\".\n"
+"\n"
+"Indien u op 'n PPC masjien installeer, sal u 'n klien HFS 'bootstrap'\n"
+"partisie van ten minste 1MB wil skep. Dit sal deur 'yaboot' herlaai-\n"
+" stelsel gebruik word. Maak dit bietjie groter vir spaar 'kernel' en\n"
+"'ramdisk' beelde vir hulp in nood situasies."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Outoheg van verwyderbare media"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Skakel tussen normale/kenner modus"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Ons het meer as een Microsoft-partisie op u hardeskyf gevind.\n"
+"Kies dan nou die een wie se grootte u wil verander, om plek te maak\n"
+"vir u nuwe Mandriva Linux bedryfstelsel.\n"
+"\n"
+"Elke partisie is as volg gelys: \"Linux-naam\", \"Windows-naam\"\n"
+"\"Kapasiteit\".\n"
+"\n"
+"\"Linux-naam werk as volg\" \"tipe hardeskyf\", \"nommer van hardeskyf\",\n"
+"\"nommer van partisie\" (byvoorbeeld: \"hda1\").\n"
+"\n"
+"Indien u 'n IDE tipe hardeskyf het sal die tipe \"hd\" wees, en SCSI, sal \n"
+"\"sd\" wees\n"
+"\n"
+"Die nommer van die hardeskyf is altyd 'n letter, wat volg na \"hd\" of\n"
+"\"sd\".\n"
+"Met IDE hardeskywe:\n"
+"\n"
+" * \"a\" beteken \"meester-hardeskyf op die primêre IDE-beheerder\";\n"
+"\n"
+" * \"b\" beteken \"slaaf-hardeskyf op die primêre IDE-beheerder\";\n"
+"\n"
+" * \"c\" beteken \"meester-hardeskyf op die sekondêre IDE-beheerder\";\n"
+"\n"
+" * \"d\" beteken \"slaaf-hardeskyf op die sekondêre IDE-beheerder\";\n"
+"\n"
+"Met SCSI-hardeskywe, beteken 'n \"a\" die kleinste SCSI-ID,\"b\" sal\n"
+"dan die volgende ID verteenwoordig ens.\n"
+"\n"
+"\"Windows-naam\" is die letter van u hardeskyf onder Windoes ( die eerste\n"
+"skyf of partisie word \"C:\" genoem.)"
+
+#: ../help.pm:567
+#, fuzzy, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": ondersoek die huidige landskeuse. Indien u nie in daardie land\n"
+"is nie, klik op die \"%s\"-knoppie en kies die regte een. Indien u land\n"
+"nie in daardie lys teenwoordig is nie, kies die \"%s\"-knoppie vir 'n\n"
+"volledige lys."
+
+#: ../help.pm:572
+#, fuzzy, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Hierdie stap word slegs gedoen indien ou GNU/Linux partisies op die\n"
+"rekenaar gevind is.\n"
+"\n"
+"DrakX moet nou weet of u 'n nuwe installasie of 'n opgradering van 'n\n"
+"bestaande Mandriva Linux wil doen:\n"
+"\n"
+" * \"%s\": Hierdie deel word grootliks gebruik vir 'n hele nuwe "
+"installasie.\n"
+"Indien u aan die hardeskywe se partisies of die lêerstelsel wil verander,\n"
+"moet u hierdie opsie kies. Maar u kan ook hierdie een kies indien u sekere\n"
+"van u partisies se data wil behou.\n"
+"\n"
+" * \"%s\": hierdie tipe installasie laat u toe om pakkette op te dateer\n"
+"wat deel uitmaak van u huidige Mandriva Linux installasie. Die partisies\n"
+"en gebruiker se data bly onveranderd. Ander stappe is baie dieselfde as\n"
+"'n normale installasie.\n"
+"\n"
+"Die gebruik van die 'Opdateer' opsie behoort reg te werk vir al die\n"
+"weergawes vanaf \"8.1\" en opwaarts. Ons raai u af on dit op weergawes\n"
+"ouer as \"8.1\" te probeer."
+
+#: ../help.pm:594
+#, fuzzy, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Afhangende van die verstek taal wat u kies, sal DrakX outomaties 'n\n"
+"betrokke steutelbord-konfigurasie kies. U mag moontlik 'n sleutelbord\n"
+"besit wat nie 100-persent ooreenstem met u taal nie: byvoorbeeld as u 'n\n"
+"Ingelse Sweed is, sal u dalk 'n sweedse sleutelbord besit. Hier is nog\n"
+"een: gestel jy is 'n Afrikaner wat werk in Quebec, u sal dalk met 'n ander\n"
+"tipe sleutelbord moet klaarkom as wat u gewoond is. Wel, hier kan u die\n"
+"gepaste sleutelbord uit 'n lys kies.\n"
+"\n"
+"Klik op die \"%s\"-knoppie vir 'n lys van al die ondersteunde sleutelborde\n"
+"\n"
+"Indien u 'n nie-Latynse sleutelbord kies, sal die volgende dialoog u\n"
+"toelaat om sleutel-bindings tussen Latynse en nie-Latynse uitlegte\n"
+"te kies."
+
+#: ../help.pm:612
+#, fuzzy, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Die taal wat u hier kies sal die dokumentasie se taal, die installeer\n"
+"program, en rekenaar oor die algemeen, beïnvloed. Kies eerstens\n"
+"die area waar u woon, en daarna die taal wat u praat.\n"
+"( Jammer, geen inskrywing vir die wat 'nonsens' wou kies nie! )\n"
+"\n"
+"Deur op die \"%s\"-knoppie te klik, kan u ander tale by kies.\n"
+"Dit sal dan dokumentasie en programme toelaat in daardie ekstra tale.\n"
+"Sou daar byvoorbeeld Spaanse gebruikers op die masjien inteken, kies\n"
+"Afrikaans(of Engels) as die verstek taal en \"%s\" in die Gevorderde\n"
+"seksie.\n"
+"\n"
+"Deur 'n sekere taal te kies, sal vertalings, lettertipes,\n"
+"spelkykers ens vir die betrokke taal geïnstalleer word.\n"
+"\n"
+"Boonop kan die \"%s\" merkblokkie u toelaat om die gebruik van 'unicode\n"
+"(UTF-8)' af te dwing. Let daarop dat dit eksperimenteel is. Indien u "
+"verskillende tale met verskillende koderings kies, sal\n"
+"'nicode'-ondersteuning geïnstalleer word.\n"
+"\n"
+"Let tog daarop dat u nie verbind is tot slegs een ekstra taal nie. U kan 'n\n"
+"paar van hulle kies, as u nou regtig wild wil raak, installeer almal deur\n"
+"die \"%s\" blokkie te merk!\n"
+"Om tussen verskillende tale te skakel, gebruik \"/usr/bin/localedrake\"\n"
+"Wanneer die supergebruiker (root) dit doen sal dit die taal vir almal\n"
+"verander, en wanneer 'n gewone gebruiker dit doen , sal dit net vir\n"
+"daardie gebruiker verander."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Espanol"
+
+#: ../help.pm:653
+#, fuzzy, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"DrakX het gewoonlik geen probleme met die speur van die aantal muisknoppies\n"
+"nie. Indien wel, sal dit aanneem dat die muis twee knoppies het, en sal dan\n"
+"3-knop emulasie konfigureer. Die 3de knoppie kan \"gedruk\" word deur beide\n"
+"knoppies gelyktydig te klik. DrakX sal vanself weet watter tipe muis u het,\n"
+"of dit nou 'n PS/2, sierie of USB muis mag wees.\n"
+"\n"
+"Indien u muis 3 knoppies het, maar nie 'n wielletjie nie, kan u \"%s\" kies\n"
+"DrakX sal dan u muis so opstel dat die wielletjie gesimuleer word. Druk\n"
+"die middel knoppie en beweeg die muis op en af - maklik!\n"
+"\n"
+"Indien u moontlik 'n ander tipe muis wil spesifiseer, kies dit vanaf die\n"
+" voorsiende lys.\n"
+"\n"
+"Indien u gekose muis verskil van die verstek muis, sal 'n toetsskerm\n"
+"vertoon word. Gebruik die knoppies en wielletjie om seker te maak\n"
+"alles werk korrek.\n"
+"Indien u probleme ondervind, druk die spasiebalk of [ Enter ] sleutel om\n"
+"die toets te kansselleer en weer te kies.\n"
+"\n"
+"Wielmuise word soms verkeerdelik geïdentifiseer, dan moet u self u\n"
+"muis vanaf die lys kies.\n"
+"Maak tog seker u kies die regte poort waaraan die muis\n"
+"gekoppel is. Na u die muis gekies, en \"%s\" geklik het, sal 'n beeld van\n"
+" 'n muis verskyn.\n"
+"Rol die wielletjie om te bevestig dat dit korrek funksioneer. Sodra u\n"
+"die beeld van die muis se wielletjie sien reageer, kan u ook die knoppies\n"
+"en beweging van u muis toets."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "met wielletjie-emulasie"
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Enige PS/2 & USB muis"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Kies asb. die korrekte poort. Onthou dat COM1 onder MS Windows \n"
+"ttyS0 onder GNU/Linux is."
+
+#: ../help.pm:691
+#, fuzzy, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Hierdie is die belangrikste oomblik vir u GNU/Linux-rekenaar se sekuriteit:\n"
+"u moet 'n wagwoord voorsien vir \"root\". \"Root\" is die supergebruiker "
+"wat\n"
+"dinge doen soos om die sagteware op te dateer, gebruikers by te voeg,\n"
+"en die konfigurasie te verander. \"Root\" kan alles doen! Hieroor moet\n"
+"u 'n deeglike wagwoord vir \"root\" kies - (DrakX sal jou tune as die wag-\n"
+"woord nie op spec is nie.) U kan wel die wagwoord uitlaat, maar dit word\n"
+"te sterkste afgeraai. GNU/Linux is net so vatbaar vir foute soos enige\n"
+"ander bedryfstelsel. Aangesien \"root\" geen perke het nie, kan hy/sy\n"
+"maklik skade aanrig as die persoon roekeloos handel. Dit moet dus\n"
+"moeilik wees vir 'n persoon om \"root\" te word.\n"
+"\n"
+"Die wagwoord behoort 'n mengsel van letters en syfers te wees en ten minste\n"
+"8 karakters lank te wees. Moet dit nie neerskryf nie, dit veroorsaak 'n\n"
+"swak skakel\n"
+"\n"
+"Moet dit ook nie te vreemd maak nie, u moet dit tog kan onthou!\n"
+"\n"
+"Indien u gebruik maak van 'n eksterne bediener wat die toegang beheer,\n"
+"klik op die \"%s\"-knoppie.\n"
+"\n"
+"Indien u netwerk gebruik maak van LDAP, NIS of 'n Windows PDC, moet\n"
+"u die gepaste diens vir \"%s\" kies. Vra u administrateur indien u nie weet\n"
+"watter een om te kies nie.\n"
+"\n"
+"Indien u probleme ondervind om wagwoorde te onthou, en die rekenaar is\n"
+"ver van die Internet af, en u vertrou almal wat die masjien gebruik, kan u\n"
+"kies om \"%s\" te gebruik. -once & heavy!-"
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "magtiging"
+
+#: ../help.pm:728
+#, fuzzy, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"LILO en grup is herlaaistelsels vir GNU/Linux. Hierdie stap is normaalweg\n"
+"geheel en al outomaties. DrakX sal u hardeskyf se selflaai-sektor nagaan\n"
+"en dienooreenkomstig handel met wat dit vind:\n"
+"\n"
+" * indien 'n Windows selflaai-sektor teenwoordig is, sal dit met 'n grub/\n"
+"LILO een vervang word. Dit sal u toelaat om te kan kies watter\n"
+"bedryfstelsel om te laai sodra u die masjien aanskakel.\n"
+"\n"
+" * indien 'n grub of LILO selflaai-sektor teenwoordig is, sal dit vervang\n"
+"word.\n"
+"\n"
+"Indien DrakX nie self kan besluit nie, sal u gevra word om 'n ligging vir\n"
+"die herlaaistelsel te voorsien. Gewoonlik is die veiligste plek \"%s\". Deur "
+"\"%s\" te kies, sal DrakX geen herlaaistelsel installeer nie."
+
+#: ../help.pm:745
+#, fuzzy, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Dit is nou tyd om u drukkerstelsel te kies. Ander bedryfstelsels sal\n"
+"seker net een aan u bied, maar Mandriva Linux gee twee. Elk van hulle\n"
+"is beter as die ander in sekere gevalle.\n"
+"\n"
+" * \"%s\" -- wat vir \"print, do not queue\" staan. Kies dit indien u\n"
+"'n direkte konneksie na die drukker het, en u blitsig wil inmeng sodra\n"
+"daar probleme is, ook indien u nie netwerk-drukkers het nie. (\"%s\"\n"
+"hanteer net eenvoudige netwerk-toegang en is effe stadig deur die netwerk)\n"
+"Ons beveel aan dat u \"pdq\" gebruik indien u nog groen is met GNU/Linux.\n"
+"\n"
+" * \"%s\" - 'Common Unix Printing System', is 'n uitstekende keuse om na\n"
+"u plaaslike drukker, of na een in myle vanaf u, te druk. Eenvoudig om\n"
+"op te stel, kan kliënt of bediener rolle vertolk vir die lpd-fossiel. Dit\n"
+" beteken dat ons omsien na ons veterane! Dit is baie kragtig, maar 'n\n"
+"elementêre opstel is byna so maklik soos \"pdq\". Indien u 'n lpd-\n"
+"bediener wil nastreef, maak seker dat u die \"cups-lpd\"-daemoon\n"
+"loop. \"%s\" sluit grafiese programme in om vanaf te druk of om\n"
+"opsies te keis en drukkers te bestuur.\n"
+"\n"
+"Sou u die keuse nou, later wil verander, gaan gerus na 'PrinterDrake'\n"
+"in die 'Mandriva Linux Control Center' en klik op die \"Kenner\" knoppie."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Ervare"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX sal eerstens vir IDE toestelle op die rekenaar soek.\n"
+"Daarna sal dit probeer om vir PCI SCSI-kaarte te kry.\n"
+"Indien DrakX 'n SCSI-kaart bespeur en weet watter drywer\n"
+"om te gebruik sal dit outomaties installeer word.\n"
+"\n"
+"Omrede hierdie proses nie altyd alles opspoor nie, sal u dalk self u\n"
+"hardeware moet spesifiseer.\n"
+"\n"
+"Indien u self 'n drywer moes spesifiseer, sal DrakX u ook vra vir enige\n"
+"spesifieke opsies.\n"
+"U kan egter DrakX toelaat om self die hardeware te ondervra. Dit werk\n"
+"gewoonlik die beste.\n"
+"\n"
+"Lees die installasie inligting hoe om hierdie tipe inligting m.b.v. die\n"
+"Windows-bedryfstelsel te bekom.\n"
+"U kan dit ook vanaf die internet onttrek indien u sulke toegang het."
+
+#: ../help.pm:789
+#, fuzzy, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\" die bespeurde klankkaart op u rekenaar sal hier vertoon word.\n"
+"Indien die aangeduide klankkaart verskil van die werklike een op u\n"
+"rekenaar,\n"
+"kan u op die knoppie klik, om 'n ander drywer te kies."
+
+#: ../help.pm:794
+#, fuzzy, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"DrakX sal u 'n oorsig bied van u rekenaar se inligting. Afhangende van die\n"
+"sagteware wat u geïnstalleer het, sal u sommige of al die volgende\n"
+"afdelings hê. Elke inskrywing bestaan uit die item wat gekonfigureer\n"
+"moet word, asook 'n kernopsomming oor die huidige stand.\n"
+"Klik op die ooreenkomstige \"%s\"-knoppie om dit te verander.\n"
+"\n"
+" * \"%s\": bekyk die huidige sleutelbord-uitleg en verander indien nodig.\n"
+"\n"
+" * \"%s\": bekyk die huidige keuse van u land. Indien u nie in hierdie land\n"
+"woon nie, klik op die \"%s\"-knoppie om 'n ander te kies. Sou dit nie in\n"
+"die lys wees nie, klik op die \"%s\"-knoppie vir 'n volledige lys.\n"
+"\n"
+" *\"%s\": By verstek word u tydsone aangepas, afhangende van die land\n"
+"wat u kies. Klik op die \"%s\"-knoppie indien dit verkeerd is.\n"
+"\n"
+" * \"%s\": ondersoek die huidige muiskonfigurasie en klik op die knoppie\n"
+"on dit te verander.\n"
+"\n"
+" * \"%s\": deur op die \"%s\"-knoppie te klik, sal u die drukker-assistent\n"
+"loods. Raadpleeg die ooreenkomstige hoofstuk in die \"Starter Guide\"\n"
+"vir meer inligting daaroor.\n"
+"\n"
+" * \"%s\": sou ons 'n klankkaart opspoor op die rekenaar, sal dit hier\n"
+"vertoon word. Indien u verskil van ons keuse, klik op die knoppie om\n"
+"'n ander drywer te kies.\n"
+"\n"
+" * \"%s\": DrakX stel u skerm op met 'n resolusie van \"800x600\"\n"
+" of \"1024x768\" by verstek. Indien u wil verander, kan u \"%s\"\n"
+"kies om dit te herkonfigureer.\n"
+"\n"
+" * \"%s\": indien 'n TV-kaart opgespoor is, sal dit hier vertoon. Inidien\n"
+"nie, en u het wel een, klik op \"%s\" om dit self op te stel.\n"
+"\n"
+" * \"%s\": indien 'n ISDN-kaart opgespoor is, sal dit hier vertoon. Klik\n"
+"op \"%s\" om verstellings daarop aan te bring\n"
+"\n"
+" * \"%s\": Indien u die netwerk en Internet toegang nou wil opstel\n"
+"\n"
+" * \"%s\": hier kan u die sekuriteitsvlak verander wat in 'n vorige stap \n"
+"opgestel is.\n"
+"\n"
+" * \"%s\": Indien die masjien toegang tot die Internet sal hê, kan u gerus\n"
+"u rekenaar beskem teen die hansworse daar buite, deur 'n vuurmuur op te\n"
+"stel. Lees gerus meer daaroor op in die \"Starter Guide\"\n"
+"\n"
+" * \"%s\": indien u die herlaaistelsel se konfigurasie wil verander. Word\n"
+"meer vir slimkoppe aanbeveel.\n"
+"\n"
+" * \"%s\": hier kan u fyner verstellings maak op die dienste wat sal afskop\n"
+"Ondersoek dit gerus indien u die rekenaar as bediener gaan gebruik."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN-kaart"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Grafiese koppelvlak"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Kies die hardeskyf wat u wil wis, om u nuwe Mandriva Linux\n"
+"te kan installeer. Wees tog versigtig, alle huidige data op daardie\n"
+"partisie sal vernietig word!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Klik op \"%s\" sou u al die data an al die partisies wat tans op hierdie\n"
+"hardeskyf is wil uitwis. Wees versigtig! Na u \"%s\" geklik het, sal u nie\n"
+"weer enige van die data of partisies kan red nie, dit sluit data op\n"
+"Windows-partisies in.\n"
+"\n"
+"Klik op \"%s\" indien u hierdie aksie wil staak, sonder om data te verloor."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Volgende ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Vorige"
+
+#
diff --git a/perl-install/install/help/po/am.po b/perl-install/install/help/po/am.po
new file mode 100644
index 000000000..a13e3c08c
--- /dev/null
+++ b/perl-install/install/help/po/am.po
@@ -0,0 +1,1108 @@
+# Latest versions of po files are at http://www.mandrivalinux.com/l10n/am.php3
+# Copyright (C) 2004 Mandriva SA
+# Alemayehu Gemeda <alemayehu@gmx.at>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2004-06-01 03:36+0100\n"
+"Last-Translator: Alemayehu <alemayehu@gmx.at>\n"
+"Language-Team: Amharic <am-translate@geez.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "ይህንን ሁኔታ መጠቀም ይፈልጋሉ?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr ""
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "ከመሰረታዊ ማስረጃ ጋር"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "በእውነት አነስተኛ ተከላ"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "ራስ-ገዛዊ ራስን መቻል"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, fuzzy, c-format
+msgid "Automatic time synchronization"
+msgstr "ቀን እና ሰዓት"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "የነበረውን ክፋይ ተጠቀም"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "ዲስኩን እንዳለ ደምስስ"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr ""
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "የደህንነት ተቆጣጣሪ"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr ""
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "ስፓኒሽ"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "with Wheel emulation"
+msgstr "አኃዞች (ከክፍተት ጋር)"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr ""
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, fuzzy, c-format
+msgid "Expert"
+msgstr "የመሸፈኛ ዘዴ"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "የISDN ካርድ"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "ንድፋዊ እይታ"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "የሚቀጥለው ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- የቀድሞው"
+
diff --git a/perl-install/install/help/po/ar.po b/perl-install/install/help/po/ar.po
new file mode 100644
index 000000000..a33dab8c8
--- /dev/null
+++ b/perl-install/install/help/po/ar.po
@@ -0,0 +1,1919 @@
+# translation of DrakX.po to Arabic
+# Amr Fathy <amr10@menanet.net>, 2001.
+# Mohammed Gamal <f2c2001@yahoo.com>, 2002.
+# Youcef Rabah Rahal <rahal@arabeyes.org>, 2004.
+# Ossama M. Khayat <okhayat@yahoo.com>, 2004, 2005.
+# Munzir Taha <munzir@kacst.edu.sa>, 2004.
+# Abdulaziz Al-Arfaj <alarfaj@arabeyes.org>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-03-03 01:06+0300\n"
+"Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n"
+"Language-Team: Arabic <support@arabeyes.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.9.1\n"
+"Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : n>=3 && n<=10 ? 2 : "
+"3\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"قبل المتابعة، عليك قراءة بنود الترخيص جيداً.. إنها\n"
+"تغطي كل توزيعة ماندريبا لينكس. إذا كنت توافق على كل البنود\n"
+"الموجودة فيها، قم بالتأشير على مربّع \"%s\". إن لم يكن كذلك، فبالضّغط على زرّ "
+"\"%s\"\n"
+"سيتم إعادة تشغيل جهازك."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"نظام جنو/لينكس هو نظام متعدد المستخدمين، مما يعني أن كل مستخدم\n"
+"له تفضيلاته الخاصة و ملفاته الخاصة و ما إلى ذلك. لكن على غرار المستخدم \"root"
+"\"، والذي هو مدير النظام، فإن المستخدمين الذين تُضيفهم حتى هذه النقطة لن "
+"يكونوا مُخوّلين\n"
+"بتغيير أي شيء عدا ملفّاتهم الخاصّة وإعداداتهم،\n"
+"لحماية النظام من أيّ تغييرات مشبوهة أو غير مقصودة والتي\n"
+"قد تكون ذات تأثير على النّظام بشكل كامل. سيتعيّن عليك إنشاء مستخدم واحد على "
+"الأقل لنفسك -- والذي هو حساب عليك استخدامه للعمل الروتيني اليومي.\n"
+"مع أنّه من السهل تسجيل الدخول كـ\"root\" لعمل\n"
+"أي شيء وكل شيء، إلا أنّه قد يكون أيضاً خطراً جداً. الخطأ البسيط جداً\n"
+"قد يعني أنّ نظامك لن يعمل بعد ذلك. إن قمت بخطأ جسيم\n"
+"كمستخدم عادي، فإنّ أسوأ ما قد يحدث أنّك ستفقد\n"
+"بعض المعلومات، ولكن لن تُؤثّر على النظام ككلّ.\n"
+"\n"
+"\n"
+"الحقل الأول سيسألك عن اسمك الحقيقي. بالطبع هذا الحقل\n"
+"ليس اجبارياً -- يمكنك إدخال أي شئ تريد. DrakX سيستخدم الكلمة\n"
+"الأولى التي قمت بإدخالها في هذا الحقل وينقلها إلى حقل \"%s\"، الذي\n"
+"هو الاسم الذي سيدخله المستخدم للدخول على النظام. إن أحببت، يمكنك تخطّي\n"
+"المُدخل الافتراضي وتغيّر اسم المستخدم. الخطوة التالية هي إدخال كلمة المرور.\n"
+"من وجهة نظر أمنية، فإن كلمة مرور المستخدم العادي بدون صلاحيات\n"
+"ليست بأهمّيّة كلمة مرور المستخدم \"الجذر\"، لكن ليس هذا سبب للتغاضي\n"
+"عنها أو جعلها فارغة أو جعلها سهلة جداً: على كلّ حال، ملفاتك قد تكون هي\n"
+"التي في خطر.\n"
+"\n"
+"بمجرد ضغطك على زر \"%s\"، يمكنك إضافة مستخدمين أخر. أضف اسم مستخدم\n"
+"لكل صديق من أصدقائك أو لأبيك أو لأختك،مثلاً. اضغط \"%s\" عندما\n"
+"تنتهي من إضافة المستخدمين.\n"
+"\n"
+"ضغط زرّ \"%s\" يسمح لك بتغيير \"الصَّدفة\"\n"
+"لذلك المستخدم (bash هو الافتراضي).\n"
+"\n"
+"عندما تنتهي من إضافة المستخدمين، سيتم سؤالك عما إذا كنت تريد اختيار مستخدم\n"
+"يتم الدخول بواسطته إلى النظام تلقائياً عند بدء التشغيل.\n"
+"إذا كنت مهتماً بهذه الميزة (و لم تكن مهتماً كثيراً بالأمن المحلّي)،\n"
+"اختر المستخدم المطلوب و مدير النوافذ ثم اضغط \"%s\".\n"
+"إن لم تكن مهتماً بهذه الميزة، قم بإزالة التأشير من مربّع الاختيار \"%s\"."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "هل تريد استخدام هذه الميزة؟"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"في الأعلى ستجد تجزيئات لينكس الموجودة والتي عثر عليها على القرص الصلب الخاص "
+"بك.\n"
+"يمكنك أن تُبقي اختيارات المرشد، وهي جيدة لأغلب أنواع التثبيت.\n"
+"إذا قمت بعمل أي تغييرات فيجب عليك أن تعرف التجزيء الجذر (\"/\"). لا تختر\n"
+"تجزيئات صغيرة جدا و إلا لن تستطيع تثبيت برامج كافية. إذا كنت تريد تخزين "
+"البيانات\n"
+"على تجزيء مستقل فستحتاج إلى عمل تجزيء لـ\"/home\"\n"
+"(ممكن فقط إذا كان لديك أكثر من تجزيء للينكس).\n"
+"\n"
+"كل تجزيء مُعطى بالشكل التالي: \"الإسم\"، \"السعة\".\n"
+"\n"
+"\"الإسم\" مركب بالسكل التالي: \"نوع القرص الصلب\"، \"رقم القرص الصلب\"،\n"
+"\"رقم التجزيء\" (مثلا، \"hda1\").\n"
+"\n"
+"\"رقم القرص الصلب\" دائما هو حرف بعد \"hd\" أو \"sd\". بالنسبة للأقراص "
+"الصلبة\n"
+"من نوع IDE فإن:\n"
+" * \"a\" تعني \"القرص الصلب الأساسي على متحكم IDE الأساسي\"،\n"
+"\n"
+" * \"b\" تعني \"القرص الصلب الثانوي على متحكم IDE الأساسي\"،\n"
+"\n"
+" * \"c\" تعني \"القرص الصلب الأساسي على متحكم IDE الثانوي\"،\n"
+"\n"
+" * \"d\" تعني \"القرص الصلب الثانوي على متحكم IDE الثانوي\"،\n"
+"\n"
+"أما بالنسبة لأقراص سكزي SCSI فالحرف \"a\" يعني \"أقل معرف SCSI\"، و الحرف \"b"
+"\"\n"
+"يعني \"ثاني أقل معرف SCSI\"، الخ."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"تثبيت ماندريبا لينكس موزّع على العديد من الأقراص.\n"
+"إن كانت حزمة ما في قرص آخر، سيقوم DrakX بإخراج القرص\n"
+"الحالي و سيطلب منك أن تدخل القرص المطلوب. إن لم يكن القرص المطلوب لديك،\n"
+"فقط اضغط على \"%s\"، ولن يتمّ تثبيت تلك الحزم.."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"حان الوقت الآن لتحديد أيّ البرامج تريد تثبيتها على نظامك.\n"
+"هناك الآلاف من الحزم المتوفّرة لماندريبا لينكس، و\n"
+"لكي نجعلها أسهل إدارة فقد وضعت الحزم في مجموعات من\n"
+"التّطبيقات المتشابهة.\n"
+"\n"
+"يصنف ماندريبا لينكس الحزم في أصناف أربعة. يمكنك \n"
+"خلط ومطابقة التّطبيقات من الأصناف المتعدّدة، بحيث\n"
+"يحتوي تثبيت \"محطّة عمل\" على تطبيقات من فئة خادم.\"\n"
+"\n"
+" * \"%s\": إن كنت تنوي استخدام جهازك كمحطّة عمل، اختر واحد أو\n"
+"أكثر من المجموعات التي في فئة محطّة العمل.\n"
+"\n"
+" * \"%s\": إن كنت تنوي استخدام جهازك للبرمجة، اختر\n"
+"المجموعات المناسبة من تلك الفئة. مجموعة \"LSB\" المميزة سوف\n"
+"تهيئ نظامك بحيث يتوافق قدر الإمكان مع توصيات قاعدة لينكس القياسية.\n"
+"\n"
+" اختيار مجموعة \"LSB\" سوف يثبت أيضاً تسلسل النواة \"2.4\"،\n"
+"بدلاً من \"2.6\" الافتراضيّة. هذا للتأكيد على التوافق الكامل للنظام مع LSB.\n"
+"على كل حال، إن لم تختر مجموعة \"LSB\" فسوف\n"
+"لا يزال يكون لديك نظام متوافق 100%% تقريباً مع LSB.\n"
+"\n"
+" * \"%s\": إن كان جهازك سيستخدم كخادم، اختر أيّاً من\n"
+"الخدمات الأكثر شيوعاً ترغب في تثبيتها على جهازك.\n"
+"\n"
+" * \"%s\": هذا هو المكان الذّي تحدّد فيه بيئتك الرّسوميّة المفضّلة.\n"
+"يجب على الأقلّ اختيار واحدة إن كنت تريد أن يكون لديك\n"
+"واجهة رسوميّة متوفّرة.\n"
+"\n"
+"تحريك مؤشّر الماوس عبر اسم مجموعة سيظهر نصّ شرحٍ مختصرٍ\n"
+"عن تلك المجموعة.\n"
+"\n"
+"يمكنك اختيار مربّع \"%s\"، والذي هو مفيد إن كنت معتاداً على\n"
+"الحزم المُوفّرة أو إن كنت متحكماً تماماً\n"
+"بما سيتم تثبيته.\n"
+"\n"
+"إن بدأت التثبيت بالوضع \"%s\"، يمكنك إزالة اختيار كل المجموعات ومنع تثبيت أي "
+"حزم جديدة. هذا مفيد\n"
+"لإصلاح أو تحديث نظام موجود.\n"
+"\n"
+"إن قمت بإلغاء تحديد كلّ المجموعات عند القيام بتثبيت عاديّ\n"
+"(كما هو الحال في التّحديث)، سينبثق حوار يقترح\n"
+"خيارات متعدّدة للتثبيت الأدنى:\n"
+"\n"
+" * \"%s\": تثبيت أقلّ عدد من الحزم الممكنة لتحصل\n"
+"على سطح مكتب رسوميّ عامل.\n"
+"\n"
+" * \"%s\": بتثبيت النّظام الأساسي بالإضافة إلى الأدوات البسيطة وتوابعها\n"
+"من المواثقة. هذا التثبيت مناسب لإعداد خادم.\n"
+"\n"
+" * \"%s\": سوف يثبت أقلّ عدد ممكن من الحزم الضّروريّة\n"
+"للحصول على نظام لينكس عامل. بهذا التّثبيت ستحصل فقط على\n"
+"واجهة سطر الأوامر. الحجم الكلّي لهذا التّثبيت هو حوالي 65\n"
+"ميجابايت."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "ترقية"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "مع وثائق المساعدة الأساسية"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "تثبيت مصغّر جداً"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"إن أخبرت برنامج التثبيت أنك تريد اخيار الحزم فرديّاً،\n"
+"فسوف يقدّم لك شجرة تحتوي كلّ الحزم مصنّفةً بحسب المجموعات و\n"
+"المجموعات الفرعيّة. خلال استعراض الشّجرة، يمكنك تحديد مجموعات بالكامل،\n"
+"مجموعات فرعيّة، أو حزم مفردة.\n"
+"\n"
+"حينما تحدّد حزمة من الشّجرة، يظهر وصفٌ على\n"
+"اليمين يعلمك بالغرض من الحزمة.\n"
+"\n"
+"!! إن تمّ اختيار حزمة خادم، إمّا بسبب أنّك حدّدتها\n"
+"قصداً أو بسبب أنّها كانت جزءً من مجموعة حزم،\n"
+"سوف تسأل التّأكيد على أنّك حقّاً تريد تلك الخادمات أن تكون\n"
+"مثبتة. بشكل افتراضي سيقوم ماندريبا لينكس بتشغيل أي خدمات مثبّتة تلقائيّاً\n"
+"عند بدء التّشغيل. حتى إن كانت آمنة وليس لها أيّ مسائل معروفة حين\n"
+"وقت شحن التّوزيعة، فإنّه من الممكن جدّاً أن\n"
+"تكون الثّغرات الأمنيّة اكتشفت بعد أن تمّ الانتهاء من هذه النّسخة من ماندريبا "
+"لينكس.\n"
+"إن لم تكن تعرف ما يفترض من خدمة معيّنة\n"
+"عمله أو لم سيتمّ تثبيتها، فاضغط على\"%s\". الضّغط على \"%s\"سوف\n"
+"يثبت الخدمات المُسردة وسوف يتمّ تشغيلها تلقائيّاً\n"
+"بشكل افتراضي خلال الإقلاع.!!\n"
+"\n"
+"يستخدم الخيار \"%s\" لتعطيل حوار التّحذير الذي يظهر\n"
+"حينما يحدّد برنامج التثبيت حزمة ليحلّ\n"
+"مسألة اعتماد. بعض الحزم بينها علاقات بحيث\n"
+"يكون تثبيت أحدها يتطلّب تثبيت برامج أخرى أيضاً.\n"
+"يستطيع برنامج التثبيت تحديد الحاجة إلى أي من هذه الحزم\n"
+"لإرضاء الاعتماد لإكمال التّثبيت ينجاح.\n"
+"\n"
+"تسمح لك الأيقونة الصّغيرة للقرص المرن في أسفل اللائحة بتحميل\n"
+"لائحة الحزم المُنشأة خلال تثبيت سابق. يكون هذا نافعاً إن كان\n"
+"لديك عدد من الأجهزة التي تودّ تهيئتها بشكل مشابه. الضّغط\n"
+"على هذه الأيقونة سيسألك إدخال قرص مرن أنشئ في\n"
+"نهاية تثبيت آخر. انظر التّلميح الثّاني من الخطوة الأخيرة عن كيفيّة\n"
+"إنشاء قرص مرن كهذا."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "مُعتمدات آلية"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": الضغط على \"%s\" سيفتح معالج تهيئة\n"
+"الطابعة. اقرأ الفصل المختص في ``دليل المبتدئ''\n"
+"لمزيد من المعلومات عن كيفية تهيئة طابعة جديدة. الواجهة\n"
+"المقدمة في دليلنا\n"
+"هي مماثلة لتلك المستخدمة أثناء التثبيت."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"يستخدم هذا الحوار لاختيار الخدمات التي تودّ تشغيلها عند بدء التشغيل.\n"
+"\n"
+"سيقوم DrakX بعرض قائمة بكل الخدمات المتوفرة في هذا التثبيت.\n"
+"راجع كل خدمة بتمعن و قم بإزالة التأشير من تلك الخدمات التي لا تحتاجها\n"
+"بشكل دائم عند الإقلاع.\n"
+"\n"
+"سيتم عرض شرح قصير حول الخدمة عند\n"
+"اختيارها. عموماً، إن لم تكن متأكد ما إذا كانت الخدمة مفيدة أم لا،\n"
+"فمن الأفضل ترك الخيار الإفتراضي.\n"
+"\n"
+"!! في هذه المرحلة كن حذراُ إذا كنت تريد استخدام ماكينتك\n"
+"كخادم: ربما لن تريد بدء أي خدمات لا تحتاجها.\n"
+"فضلاً تذكر أن العديد من الخدمات قد تكون خطرة إذا كانت\n"
+"متاحة على الخادم. بشكل عام اختر فقط الخدمات التي تحتاجها بالفعل !!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"يقوم جنو/لينكس بإدارة الوقت بحسب توقيت غرينتش ثم يترجمه إلى\n"
+"التوقيت المحلي بحسب المنطقة الزّمنية التي اخترتها. إذا كانت الساعة\n"
+"التي في اللّوحة الرئيسية مضبوطة على التوقيت المحلي، يمكنك تعطيل ذلك\n"
+"عن طريق إزالة اختيار \"%s\" و التي ستجعل\n"
+"جنو/لينكس يعلم أن ساعة النظام وساعة الجهاز في نفس المنطقة الزّمنيّة. هذا مفيد "
+"عندما يستضيف الجهاز\n"
+"أيضاً نظام تشغيل آخر.\n"
+"\n"
+"الخيار \"%s\" سيقوم آلياً بضبط الساعة عن طريق الإتصال\n"
+"بخادم وقت بعيد على الإنترنت. كي تعمل هذه الميزة، يجب أن تكون لديك\n"
+"وصلة انترنت عاملة. من الأفضل اختيار خادم الوقت\n"
+"الأقرب إليك. في الحقيقة يُثبت هذا الخيار خادم وقت يمكن استخدامه\n"
+"من قبل الأجهزة الأخرى على الشبكة المحلية أيضاً."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "تزامن وقت آلي"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"بطاقة الرسوم\n"
+"\n"
+" برنامج التثبيت يقوم باكتشاف وتهيئة\n"
+"البطاقة الموجودة على نظامك بشكل آلي. إن لم يحدث ذلك، يمكنك\n"
+"اختيار البطاقة المُتثبيتة لديك بالفعل من القائمة.\n"
+"\n"
+" في حال كانت هناك خادمات رسومية مختلفة لبطاقتك،\n"
+"مع أو بدون تعزيز للرسوم ثلاثية الأبعاد، ستُسأل اختيار الخادم الذي\n"
+"يناسب احتياجاتك أكثر."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"؛X (إشارةً إلى نظام نوافذ X) هو قلب الواجهة الرّسوميّة لجنو/لينكس\n"
+"الذي تعتمد عليه كل البيئات الرّسوميّة (كيدي، جينوم، AfterStep،\n"
+"WindowMaker، وغيرها) المضمّنة مع ماندريبا لينكس.\n"
+"\n"
+"سوف تقدّم لك لائحة من معامِلاتٍ مختلفة يمكنك تغييرها للحصول\n"
+"على العرض الرّسوميّ الأمثل.\n"
+"\n"
+"بطاقة الرسوم\n"
+"\n"
+" عادةً سيقوم المثبت بالاستكشاف والتّهيئة الآليّة\n"
+"للبطاقة الرّسوميّة المثبّثة على جهازك. إن لم يكن ذلك الحال، فيمكنك\n"
+"اختيار البطاقة الموجودة لديك بالفعل من هذه القائمة.\n"
+"\n"
+" في حال توفّرت عدّة خادماتٍ لبطاقتك،\n"
+"مع أو بدون التعزيز الثّلاثي الأبعاد، سوف يطلب منك أن تحدّد الخادم\n"
+"الأكثر ملائمة لحاجاتك.\n"
+"\n"
+"\n"
+"\n"
+"الشّاشة\n"
+"\n"
+" عادةً سيقوم المُتثبيت بالاستكشاف والتهيئة الآليّة\n"
+"للشّاشة المُتّصلة بجهازك. إن لم تكن صحيحة، فيمكنك\n"
+"اختيار الشّاشة المتّصلة بجهازك بالفعل من هذه القائمة.\n"
+"\n"
+"\n"
+"\n"
+"الاستبانة\n"
+"\n"
+" يمكنك هنا اختيار الاستبانة وعمق الألوان المتوفّرين\n"
+"لعتادك الرّسومي. اختر الأكثر مناسبةً لحاجاتك (سوف تكون قادراً على\n"
+"تغيير ذلك بعد التّثبيت على كل حال). تظهر عيّنة من التهيئة\n"
+"المحدّدة في صورة الشّاشة.\n"
+"\n"
+"\n"
+"\n"
+"اختبار\n"
+"\n"
+" قد لا يظهر هذا المُدخل بحسب عتادك.\n"
+"\n"
+" سوف يحاول النّظام فتح شاشة رسوميّة بالاستبانة المرغوبة.\n"
+"إذا رأيت رسالة الاختبار خلال الاختبار وأجبت بـ\"%s\"،\n"
+"فسوف يتقدّم DrakX إلى الخطوة التّالية. إن لم تستطع رؤية الرّسالة، فهذا\n"
+"يعني أن جزءً ما من التّهيئة المكتشفة آلياً كان غير صحيح\n"
+"وسينتهي الاختبار تلقائيّاً بعد 12 ثانية، معيداً إيّاك إلى\n"
+"القائمة. غيّر الإعدادات حتّى تحصل على عرض رسوميّ صحيح.\n"
+"\n"
+"\n"
+"\n"
+"خيارات\n"
+"\n"
+" يمكنك هنا اختيار ما إذا كنت تريد جهازك أن يبدّل تلقائيّاً\n"
+"إلى الواجهة الرّسوميّة عند الإقلاع. طبعاً ستفضّل\n"
+"أن تختار \"%s\" إن كان جهازك سيعمل كخادم، أو إن كنت لم تنجح في\n"
+"تهيئة العرض."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"الشاشة\n"
+"\n"
+" يمكن لبرنامج التثبيت اكتشاف و تهيئة الشاشة المتصلة بماكينتك\n"
+"آلياً. ان لم يحدث ذلك، يمكنك اختيار الشاشة التي لديك\n"
+"من القائمة."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"الاستبانة\n"
+"\n"
+" يمكنك اختيار الاستبانة وعمق الألوان في الحدود المتوفرة للعتاد.\n"
+"اختر تلك التي تناسب احتياجاتك (لا تزال\n"
+"تستطيع تغيير تلك الخيارات بعد التثبيت). يتم عرض عينة\n"
+"من التهيئة المختارة في صورة الشاشة."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"في حال كانت هناك خادمات مختلفة للبطاقة الخاصة بك، مع أو\n"
+"دون تعزيز للرسوم ثلاثية الأبعاد، ستُسأل اختيار الخادم الذي\n"
+"يناسب احتياجاتك."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"الخيارات\n"
+"\n"
+" تخولك هذه الخطوة اختيار ما إذا كنت تريد بدء الواجهة الرسومية\n"
+"عند بدء النظام تلقائيّاً. بوضوح،\n"
+"ستختار \"%s\" إذا كانت ماكينتك ستستخدم كجهاز\n"
+"خادم، أو إذا لم تنجح في تهيئة العرض\n"
+"بشكل صحيح."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"عند هذه النقطة، عليك أن تقرر أين تريد تثبيت نظام\n"
+"التشغيل ماندريبا لينكس على القرص الصلب الخاص بك. إذا كان القرص الصلب\n"
+"فارغاً أو أن نظام تشغيل آخر يستخدم كل المساحة المتوفرة فسوف\n"
+"تحتاج إلى تجزئة القرص الصلب. بشكل عام، تجزئة القرص الصلب\n"
+"تعني تقسيم القرص الصلب منطقياً لإنشاء المساحة المطلوبة لتثبيت\n"
+"نظام ماندريبا لينكس الجديد الخاص بك.\n"
+"\n"
+"عملية تقسيم القرص الصلب لا يمكن التّراجع عنها عادةًَ\n"
+"كما أنها قد تتسبب في خسارة للبيانات إن وجد هناك نظام تشغيل\n"
+"آخر مثبت على هذا القرص الصلب، لذا فإنّ تجزئة القرص قد تكون عمليّةً صعبةً ومرهقة\n"
+"إن لم تكن مستخدماً محترفاً. من حسن الحظ، يوفّر DrakX معالجاً يسهل العملية.\n"
+"قبل متابعة هذه الخطوة، اقرأ بقية هذا القسم و قبل كل شئ، خذ وقتك.\n"
+"\n"
+"اعتماداً على إعدادات القرص الصلب، تتوفر العديد من الخيارات:\n"
+"\n"
+" * \"%s\": هذا الخيار سيقوم بعملية تجزئة آلية\n"
+"للأقراص الصلبة الفارغة. إذا استخدمت هذا الخيار، لن تكون هناك إشعارات أخرى.\n"
+"\n"
+" * \"%s\": يكون المرشد قد اكتشف تجزيء أو أكثر من\n"
+"تجزيئات لينكس على القرص الصلب. إذا كنت تريد استخدامها، اختر هذا\n"
+"الخيار. سيتم بعد ذلك سؤالك عن أماكن التركيب المرتبطة بكل\n"
+"تجزيء. يتم اختيار أماكن التركيب المعتادة افتراضياً،\n"
+"ولأغلب المستخدمين فإنها فكرة جيدة تركها كما هي.\n"
+"\n"
+" * \"%s\" : إذا كان ميكروسوفت ويندوز مثبتاً على القرص الصلب و يحتل كل "
+"المساحة \n"
+"التي عليه، ستحتاج إلى إنشاء مساحة فارغة لبيانات جنو/لينكس. لعمل ذلك يمكنك "
+"حذف\n"
+"تجزيء و بيانات ميكروسوفت ويندوز (انظر حلّ ``إزالة القرص بأكمله'')\n"
+"أو قم بتغيير حجم تجزيء ميكروسوفت ويندوز FAT. يمكن تصغير الحجم\n"
+"دون أي خسارة للبيانات، إن كنت قمت بإزالة تجزّئات التجزيء الخاص بويندوز.\n"
+"يفضّل بشدّة نسخ بياناتك احتياطياً.. استخدام هذا الخيار\n"
+"منصوح به إذا كنت تريد استخدام كل من ماندريبا لينكس و ميكروسوفت ويندوز\n"
+"على نفس الحاسب.\n"
+"\n"
+" قبل اختيارك لهذا الخيار، عليك أن تعلم أنه بعد هذا\n"
+"الإجراء، ستتقلص مساحة تجزيء ميكروسوفت ويندوز عن ما قبل\n"
+"ستكون لديك مساحة فارغة أقل على ميكروسوفت ويندوز\n"
+"لتخزين بياناتك أو تثبيت برامج جديدة.\n"
+"\n"
+" * \"%s\": إذا كنت تريد حذف كل البيانات و كل التجزيئات\n"
+"الموجودة على القرص الصلب و استبدالها بنظام ماندريبا لينكس الجديد\n"
+"الخاص بك، اختر هذا الخيار. كن حذراً، لأنك لن تتمكن من التراجع\n"
+"بعد أن تقوم بالتأكيد.\n"
+"\n"
+" !! إن اخترت هذا الخيار، سيتم حذف كل البيانات الموجودة على القرص. !!\n"
+"\n"
+"؛ * \"%s\". هذا الخيار يظهر في حال كان القرص محتلاً بأكمله\n"
+"من قبل ميكروسوفت ويندوز. سيقوم هذا الخيار ببساطة بمحو كل شيء على القرص و\n"
+"بدء التثبيت من الصفر، مجزّأً كلّ شيء من لاشيء.\n"
+"\n"
+" !! إن اخترت هذا الخيار، ستخسر كلّ البيانات على القرص الخاص بك. !!\n"
+"\n"
+" * \"%s\": اختر هذا الخيار إذا كنت تريد\n"
+"تقسيم القرص الصلب بشكل يدوي. كن حذراً -- هذا الخيار قوي\n"
+"لكنه خطير و من الممكن أن تفقد بياناتك بسهولة. لهذا فإن\n"
+"هذا الخيار مفضّل فقط إذا كنت قد قمت بشئ مماثل من قبل \n"
+"و لديك بعض الخبرة. لمزيد من التعليمات حول استخدام أداة DiskDrake\n"
+"راجع قسم ``إدارة التجزيئات'' في\n"
+"``دليل المبتدئ''."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "استخدام التجزيء الموجود"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "مسح كل القرص"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"ها أنت ذا. التثبيت قد اكتمل الآن ونظام جنو/لينكس الخاصّ بك\n"
+"جاهز للاستخدام. فقط اضغط \"%s\" لإعادة تشغيل نظامك. لا تنْسَ أن\n"
+"تزيل وسط التّثبيت (قرص مدمج أو مرن). أوّل شيء يجب أن\n"
+"تراه بعد أن ينتهي حاسبك من فحص عتاده هو\n"
+"قائمة محمّل الإقلاع، والتي تعطيك الخيار لأيّ نظام تشغيل تريد بدءه.\n"
+"\n"
+"زرّ \"%s\" يظهر زرّين إضافيّين كي:\n"
+"\n"
+" * \"%s\": تنشئ قرص تثبيت مرن يساعدك آليّاً\n"
+"بالقيام بالتّثبيت بأكمله دون مساعدة المُشغّل، كما هو\n"
+"التّثبيت الذي قمت بتهيئته للتّوّ.\n"
+"\n"
+" لاحظ أن خيارين مختلفين متوفّرين بعد الضّغط على الزّر:\n"
+"\n"
+" * \"%s\". هذا تثبيت آليّ جزئيّاً. خطوة التّجزئة\n"
+"هي الإجراء الوحيد التّفاعليّ.\n"
+"\n"
+" \"%s\". التّثبيت الآليّ بالكامل: يُعاد كتابة القرص الصّلب\n"
+"بالكامل، وتفقد كلّ البيانات.\n"
+"\n"
+" هذه الميزة مفيدة جدّاً عند تثبيت عدد من الماكينات المتشابهة.\n"
+"راجع قسم التّثبيت الآلي على موقعنا لمزيد من المعلومات.\n"
+"\n"
+" * \"%s\": يحفظ لائحة بالحزم المُختارة في هذا التّثبيت. كي\n"
+"تستخدم هذا الاختيار مع تثبيت آخر، أدخل القرص المرن وابدأ\n"
+"التّثبيت. على الملقن، اضغط مفتاح [F1] واكتب\n"
+">> linux defcfg=\"floppy\" << ثمّ اضغط مفتاح الإدخال.\n"
+"\n"
+"(*) ستحتاج إلى قرص مرن منسّق بنسق FAT. لإنشاءه على GNU/Linux، أدخل\n"
+"\"mformat a:\"، أو \"fdformat /dev/fd0\" تتبعها \"mkfs.vfat\n"
+"/dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "إنشاء قرص تثبيت آلي"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"إن اخترت إعادة استخدام بعض تجزيئات جنو/لينكس القديمة، قد ترغب\n"
+"بإعادة تنسيق بعضها ومسح أية بيانات تحتويها. لعمل ذلك، الرجاء،\n"
+"اختيار تلك التجزيئات أيضاً.\n"
+"\n"
+"الرجاء ملاحظة أنّه ليس من الضّروري إعادة تنسيق كل التّجزيئات الموجودة مسبقاً.\n"
+"يجب عليك إعادة تنسيق التجزيئات التي تحتوي نظام\n"
+"التشغيل (مثل \"/\", \"/usr\" or \"/var\"( ولكن ليس عليك\n"
+"إعادة تنسيق التجزيئات التي تحتوي بيانات تودّ الاحتفاظ بها (عادة\n"
+"\"/home\").\n"
+"\n"
+"رجاء كن على حذر عند اختيار التّجزيئات. بعد إعادة التّنسيق، كلّ البيانات التي\n"
+"على التّجزيئات المحدّدة سوف تُحذف ولن تكون قادراً على\n"
+"استعادتها.\n"
+"\n"
+"اضغط على \"%s\" عندما تكون جاهزاً لتنسيق التّجزيئات.\n"
+"\n"
+"اضغط على \"%s\" إن كنت تريد اختيار تجزيء آخر من أجل\n"
+"تثبيت نظام التّشغيل ماندريبا لينكس الخاصّ بك.\n"
+"\n"
+"اضغط على \"%s\" إن كنت ترغب باختيار تجزيئات سيتمّ تفحّصها من أجل\n"
+"الكتل السّيئة على القرص."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"في الوقت الذي تقوم فيه بتثبيت ماندريبا لينكس، قد يكون تم تحديث\n"
+"بعض الحزم منذ الإصدار الأول. قد يكون تم إصلاح بعض العيوب\n"
+"أو حل المشاكل الأمنية. لكي تستفيد من هذه التحديثات، يمكنك\n"
+"الآن تنزيل هذه التحديثات عبر الإنترنت. اختر\n"
+"\"%s\" إذا كانت لديك وصلة انترنت عاملة، أو \"%s\" إذا كنت تفضل\n"
+"تثبيت هذه التحديثات لاحقاً.\n"
+"\n"
+"اختيار \"%s\" يعرض قائمة بالأماكن التي يمكن منها الحصول\n"
+"على التحديثات. اختر المكان الأقرب إليك. سيتم عرض قائمة شجريّة بالحزم:\n"
+"راجع اختياراتك، ثم اضغط \"%s\" لجلْب و تثبيت\n"
+"الحزم المختارة، أو \"%s\" لإلغاء التّحديث."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"عند هذه النقطة، سيسمح لك DrakX باختيار المستوى الأمني الذي ترغب به\n"
+"لهذا الجهاز. بديهياً، يجب تعيين مستوى أمني\n"
+"عالٍ إذا كان الجهاز يحتوي على معلومات هامة، أو إذا كان الجهاز\n"
+"سيُستخدم للإتصال بالإنترنت. إنّ استخدام مستوى أمن عالٍ يأتي\n"
+"عادة على حساب سهولة الإستخدام.\n"
+"\n"
+"إن لم تكن تعرف ماذا تختار، أبق الاختيار الافتراضي. سوف تكون\n"
+"قادراً على تغيير مستوى الأمن لاحقاً باستخدام الأداة draksec من\n"
+"لوحة تحكّم ماندريبا .\n"
+"\n"
+"يُعْلم الحقل \"%s\" نظام المُستخدم على هذا الجهاز الذي\n"
+"سيكون مسؤولاً عن الأمن. رسائل الأمن ستُرسل إلى ذلك\n"
+"العنوان."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "مدير الأمن"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"عند هذه النقطة، تحتاج لاختيار أي التجزيئات ستستخدم\n"
+"لتثبيت نظام ماندريبا لينكس. إن كانت التجزيئات بالفعل\n"
+"مُعرّفة، إمّا من تثبيت سابق لجنو/لينكس أو بواسطة\n"
+"أداة أخرى، يمكن أن تستخدم التجزيئات الحاليّة . وإلا، يجب أن تُعَرَّف\n"
+"تجزيئات القرص الصّلب.\n"
+"\n"
+"لإنشاء التجزيئات، يجب أوّلاً يجب أن تختار قرص صلب. يمكن أن تختار\n"
+"قرص للتّجزئة بالضّغط على ''hda'' لقرص IDE الأوّل،\n"
+"\"hdb\" للثّاني، \"sda\" لقرص SCSI الأوّل وهكذا.\n"
+"\n"
+"لتقوم بتجزئة القرص الصّلب المحدّد، يمكنك استخدام هذه الخيارات:\n"
+"\n"
+" * \"%s\": هذا الخيار يحذف كل التجزيئات على القرص الصّلب المحدّد\n"
+"\n"
+" * \"%s\": هذا الخيار يمكّنك من إنشاء تجزيئات ext3 والذّاكرة البديلة آليّاً\n"
+"في المساحة الشّاغرة لقرصك الصّلب\n"
+"\n"
+" * %s: يعطي حقّ الوصول إلى مزايا إضافيّة:\n"
+"\n"
+" * \"%s\": يحفظ جدول التجزئة إلى قرص مرن. مفيد لاسترجاع لاحق\n"
+"لجدول التجزئة إن كان ضروريّاً. من المُستحسن جداً\n"
+"أن تقوم بهذه الخطوة.\n"
+"\n"
+" * %s: يسمح لك باستعادة جدول تجزئة محفوظ مسبقاً من\n"
+"قرص مرن.\n"
+"\n"
+" * \" %s\": إن كان جدول التّجزئة معطوباً، يمكنك محاولة استعادته\n"
+"باستخدام هذا الخيار. رجاءً كن على حذر وتذكّر أنّه لا\n"
+"يعمل دائماً.\n"
+"\n"
+" * \"%s\": يتجاهل كلّ التّغييرات ويعيد تحميل جدول التّجزئة الذي كان\n"
+"أصلاً على القرص الصّلب.\n"
+"\n"
+" * \"%s\": إزالة اختيار هذا الخيار سيجبر المستخدمين على القيام يدويّاً بتجهيز "
+"و\n"
+"فكّ الوسائط القابلة للإزالة كالأقراص المرنة والمدمجة.\n"
+"\n"
+" * \"%s\": استخدم هذا الخيار إن رغبت في استخدام المرشد لتجزئة\n"
+"قرصك الصّلب. هذا مستحسن إن لم يكن لديك فهم جيّد\n"
+"للتّجزئة.\n"
+"\n"
+" * \"%s\": استخدم هذا الخيار لإلغاء تغييراتك.\n"
+"\n"
+" * \"%s\": يوفّر أعمالاً إضافيّة على التجزيئات )النّوع، الخيارات، التّنسيق(\n"
+"ويعطيك المزيد من المعلومات حول القرص الصّلب.\n"
+"\n"
+" * \"%s\": عندما تنتهي من تجزئة قرصك الصّلب، سوف يقوم هذا\n"
+"بحفظ تغييرات إلى القرص.\n"
+"\n"
+"عند تحديد الحجم لتجزيء ما، يمكنك تحديد حجم التّجزيء بدقّة\n"
+"باستخدام مفاتيح الأسهم للوحة مفاتيحك.\n"
+"\n"
+"ملاحظة: يمكنك الوصول إلى أيّ خيار باستخدام لوحة المفاتيح. تنقّل بين\n"
+"التجزيئات باستخدام [TAB] وأسهم أعلى/أسفل.\n"
+"\n"
+"عندما تُحدّد تجزيءً، يمكنك استخدام:\n"
+"\n"
+" * Ctrl-c لإنشاء تجزيء جديد )عندما يكون تجزيء فارغ مُحدّد(.\n"
+"\n"
+" * Ctrl-d لحذف تجزيء\n"
+"\n"
+" * Ctrl-m لتحدّد مكان التركيب.\n"
+"\n"
+"لتحصل على معلومات حول أنواع أنظمة الملفّات المختلفة المتوفّرة، رجاءً\n"
+"اقرا فَصْل ext2FS من ``الدّليل المرجعي``.\n"
+"\n"
+"إن كنت تقوم بالتّثبيت على ماكينة PPC، ستحتاج أن تنشئ تجزيء HFS\n"
+"``bootstrap`` صغير بحجم 1 ميجابايت على الأقلّ والذي سيستخدم بواسطة مُحمّل "
+"الإقلاع yaboot.\n"
+"إن اخترت أن تجعل التجزيء أكبر قليلاً، لنقل 50 ميجابايت، قد تجده\n"
+"مفيد لتخزين نواة احتياطية وصور ramdisk من أجل\n"
+"أوضاع الإقلاع الطّارئة."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "التركيب الآلي للوسائط القابلة للإزالة"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "التغيير إلى الوضع العادي/وضع الخبير"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"تمّ اكتشاف أكثر من تجزيء ميكروسوفت على قرصك الصّلب.\n"
+"رجاء اختيار القرص الذي تريد تغيير حجمه كي تتثبيت\n"
+"نظام تشغيل ماندريبا لينكس الجديد.\n"
+"\n"
+"كل تجزيء مُسرد كما يلي: \"اسم لينكس\"، \"اسم ويندوز\"\n"
+"\"الكثافة\".\n"
+"\n"
+"\"اسم لينكس\" مركّب: \"نوع القرص الصلب\"، \"رقم القرص الصلب\"،\n"
+"\"رقم التّجزيء\" (مثلاً، \"hda1\").\n"
+"\n"
+"\"نوع القرص الصلب\" هو \"hd\" إن كان القرص من نوع IDE و\n"
+"\"sd\" إن كان من نوع SCSI.\n"
+"\n"
+"\"رقم القرص الصّلب\" هو دائماً حرف بعد \"hd\" أو \"sd\". لأقراص IDE الصّلبة:\n"
+"\n"
+" * \"a\" يعني \"القرص الصّلب الرّئيسي على مُتحكّم IDE الأوّلي\"؛\n"
+"\n"
+" * \"b\" يعني \"القرص الصّلب الثّانوي على مُتحكّم IDE الأوّلي\"؛\n"
+"\n"
+" * \"c\" يعني \"القرص الصّلب الرّئيسي على مُتحكّم IDE الثّانوي\"؛\n"
+"\n"
+" * \"d\" يعني \"القرص الصّلب الثّانوي على مُتحكّم IDE الثّانوي\"؛\n"
+"\n"
+"بالنّسبة لأقراص SCSI الصّلبة، \"a\" يعني \"أقلّ رقم تعريف SCSI\"، و\"b\" يعني\n"
+"\"ثاني أقلّ رقم تعريف SCSI\"، إلخ.\n"
+"\n"
+"\"اسم ويندوز\" هو الحرف الخاص بقرصك الصّلب ضمن ويندوز (القرص الأوّل\n"
+"أو التجزيء المسمّى \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": تأكد من اختيار البلد الحالي. إذا لم تكن في هذا\n"
+"البلد، اضغط على زر \"%s\" و اختر بلداً آخر. إذا لم تكن\n"
+"بلدك في القائمة اضغط زر \"%s\" لإظهار قائمة كاملة\n"
+"بالبلدان."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"يتم تنشيط هذه الخطوة فقط إذا عُثر على تجزيء جنو/لينكس موجود\n"
+"على ماكينتك.\n"
+"\n"
+"يحتاج DrakX الآن إلى معرفة ما إذا كنت تريد القيام بتثبيت جديد أو ترقية\n"
+"نظام ماندريبا لينكس الموجود لديك مسبقاً:\n"
+"\n"
+" * \"%s\": في الأغلب، يقوم هذا بإزالة النظام القديم.\n"
+"على أيّ، بناءً على طريقة تجزئتك، يمكنك منع الكتابة على بعض\n"
+"من بياناتك الموجودة مسبقاً (بالطبع الأدلة \"المنزلية\").\n"
+"إن كنت تريد تغيير طريقة تجزئة القرص الصلب، أو تريد تغيير نظام\n"
+"الملفّات، عليك باستخدام هذا الخيار.\n"
+"\n"
+" * \"%s\": صنف التثبيت هذا يسمح لك بتحديث الحزم\n"
+"المثبّتة حاليّاً على نظام ماندريبا لينكس الخاص بك. لن يتم تغيير\n"
+"بياناتك أو تقسيمات القرص الصلب. أغلب\n"
+"خطوات التهيئة الأخرى لا تزال متوفّرة، مثل التثبيت الاعتيادي.\n"
+"\n"
+"استخدام خيار ``الترقية'' يجب أن يعمل بشكل جيد على أنظمة ماندريبا لينكس\n"
+"التي تعمل على إصدار \"8.1\" أو ما بعده. لا ينصح بالترقية\n"
+"من إصدرات ماندريبا لينكس قبل \"8.1\"."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"اعتماداً على اللغة التي اخترتها ()، سيقوم DrakX آليّاً\n"
+"باختيار تهيئة لوحة المفاتيح. تحقّق من أنّ\n"
+"الاختيار يناسبك أو اختر توزيعة لوحة مفاتيح أخرى.\n"
+"\n"
+"أيضاً، قد لا تكون لديك لوحة مفاتيح توافق لغتك تماماً:\n"
+"مثلاً ربما تكون سويسريّاً متكلماً للغة الإنجليزية، قد تكون لديك\n"
+"لوحة مفاتيح سويسرية. أو إذا كنت تتكلم الإنجليزية لكنك موجود في كيبك،\n"
+"ربما تجد نفسك في نفس الموقف حيث لا تتطابق لغتك الأم\n"
+"مع لوحة المفاتيح. في الحالتين، ستسمح لك خطوة التثبيت\n"
+"باختيار لوحة مفاتيح مناسبة من القائمة.\n"
+"\n"
+"اضغط زر \"%s\" لعرض قائمة بكل\n"
+"لوحات المفاتيح المدعومة.\n"
+"\n"
+"إذا اخترت لوحة مفاتيح لحروف غير لاتينية، فسيسمح لك\n"
+"الحوار التالي باختيار اختصارات لوحة المفاتيح التي\n"
+"ستبدل وضع لوحة المفاتيح بين الحروف اللاتينية والغير لاتينية."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"الخطوة الأولى هي اختيار اللغة المفضلة.\n"
+"\n"
+"اختيارك للغة المفضلة سيؤثر على برنامج التثبيت،\n"
+"والنظام بشكل عام. أولاً، اختر المنطقة التي\n"
+"تقع فيها، ثم اللغة التي تتحدثها.\n"
+"\n"
+"ضغط زر \"%s\" سيسمح لك باختيار لغات\n"
+"أخرى ليتم تثبيتها على محطة عملك، ومن ثم\n"
+"تثبيت الملفات الخاصة باللغات لوثائق المساعدة والتطبيقات. مثلاً\n"
+"إذا كنت ستستضيف مستخدمين من أسبانيا على ماكينتك، اختر الإنجليزية\n"
+"كلغة افتراضية في العرض الشجري و\"%s\" في القسم المتقدم.\n"
+"\n"
+"حول دعم UTF-8 (يونيكود): يونيكود هي طريقة تشفير محارف جديدة غرضها\n"
+"تغطية كلّ اللّغات الموجودة. مع ذلك فإن دعمها الكامل في جنو/لينكس ما\n"
+"زال قيد التّطوير. لذلك السّبب، سيستخدمها ماندريبا لينكس أو لا يستخدمها\n"
+"بناءً على خيارات المستخدم:\n"
+"\n"
+" * إن اخترت لغة ذات تراث قويّ (اللّغات\n"
+"لاتيني1، والروسيّة، واليابانيّة، والصينيّة، والكوريّة، والتايلنديّة، واليونانيّة، "
+"والتّركيّة،\n"
+"ومعظم لغات iso-8859-2(، فسيستخدم التّشفير التّراثيّ بشكل افتراضي؛\n"
+"\n"
+" * اللّغات الأخرى ستستخدم يونيكود بشكل افتراضيّ؛\n"
+"\n"
+"إن كان هناك حاجة للغتين أو أكثر، وتلك اللّغات لا تستخدم\n"
+"نفس التّشفير، فسيستخدم يونيكود للنّظام بأكمله؛\n"
+"\n"
+" * أخيراً، يُمكن إجبار استخدام يونيكود للنظام بطلب المستخدم بواسطة\n"
+"اختيار الخيار \"%s\" بشكل منفصل والذي\n"
+"اختيرت لغته.\n"
+"\n"
+"لاحظ أنّك غير محدود باختيار لغة إضافيّة واحدة.\n"
+"يمكنك اختيار عدّة لغات، أو حتّى تثبيتها كلّها باختيار مربّع \"%s\".\n"
+"اختيار دعم لغة يعني أن التّرجمات، والخطوط، ومدقّقات\n"
+"الإملاء، إلخ. لتلك اللّغة سوف تكون مثبتة أيضاً.\n"
+"\n"
+"للتبديل بين اللغات المختلفة المثبتة على نظامك، يمكن\n"
+"تشغيل الأمر \"/usr/sbin/localedrake\" كمستخدم \"root\" لتغيير\n"
+"اللّغة المستخدمة من قبل النّظام بأكمله. تشغيل الأمر كمستخدم عاديّ\n"
+"سوف يغيّر فقط إعدادت اللّغة الخاصّة بذلك المستخدم بذاته."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "الأسبانية"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"عادة، لا يواجه DrakX مشاكل في استكشاف عدد الأزرار في\n"
+"الماوس الخاصّة بك. إذا حدث ذلك، يفترض أن لديك ماوس ذات زرّين وسوف\n"
+"يقوم بتهيأتها لمحاكاة الزرّ الثالث. الزرّ الثالث للماوس ذات\n"
+"الزرّين يمكن الحصول على تأثيره بالضّغط على الزرّين الأيسر\n"
+"والأيمن بنفس الوقت. سوف يعرف DrakX تلقائيّاً ما إذا كانت الماوس الخاصّة بك "
+"تستخدم\n"
+"واجهة PS/2، أو متوالية أو USB.\n"
+"\n"
+"في حال كان لديك ماوس ذات ثلاثة أزرار دون عجل، يمكنك اختيار الماوس\n"
+"التي تظهر بإسم \"%s\". سيقوم DrakX بعدها بتهيأت الماوس الخاصّة بك حتّى تستطيع\n"
+"مُحاكاة العجل بها: لتقوم بذلك، اضغط الزرّ الأوسط وحرّك\n"
+"الماوس للأعلى وللأسفل.\n"
+"\n"
+"إن رغبت لسبب ما اختيار نوع ماوس آخر، اخترها\n"
+"من اللائحة المُقدَّمة.\n"
+"\n"
+"يمكنك تحديد المُدخل \"%s\" لاختيار نوع ماوس ``شامل'' والذي\n"
+"سوف يعمل تقريباً مع كل الأنواع.\n"
+"\n"
+"إن اخترت ماوس غير الافتراضيّة، سوف تظهر شاشة\n"
+"اختباريّة. استخدم الأزرار والعجل للتأكّد من أن الإعدادات\n"
+"صحيحة وأنّ الماوس تعمل بشكل صحيح. إن لم تكن الماوس\n"
+"تعمل بشكل جيّد، اضغط مفتاح المسافة أو [الإرجاع] لإلغاء الاختبار و\n"
+"العودة إلى لائحة الخيارات.\n"
+"\n"
+"كثيراً ما يتعذر استكشاف أجهزة الماوس ذات العجلات تلقائيّاً، لذا ستحتاج\n"
+"لاختيار الماوس من القائمة. تأكّد من اختيار التي تطابق\n"
+"المنفذ الذي تتّصل به الماوس الخاصّة بك. بعد اختيار الماوس و\n"
+"الضّغط على الزّرّ \"%s\"، تظهر صورة الماوس على الشّاشة. أدرْ\n"
+"عجل الماوس للتّأكّد من أنّه مُنشّط بشكل صحيح. أثناء تحريك\n"
+"عجل الماوس، ستراه كذلك يتحرك على الشاشة.\n"
+"قم باختبار الأزرار وتحقق من أن المؤشر يتحرك على الشاشة\n"
+"بينما تقوم بتحريكه حولها."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "بمحاكاة العجلة"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "عالمي | أيّ ماوس PS/2 و USB"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"الرجاء اختيار المنفذ الصحيح. مثلاً لمنفذ \"COM1\" في\n"
+"ويندوز اسمه \"ttys0\" في لينكس."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"هذه هي أهم خطوة تتخذها لأمن نظام جنو/لينكس الخاصّ بك:\n"
+"عليك إدخال كلمة مرور المستخدم \"root\". \"Root\" هو\n"
+"مدير النظام والمستخدم الوحيد المخوّل بتحديث النظام، وإضافة المستخدمين،\n"
+"وتغيير تهيئة النظام بشكل عام، الخ. باختصار يمكن للمستخدم \"root\" أن يفعل\n"
+"كل شئ! لذا عليك اختيار كلمة مرور صعبة\n"
+"التّخمين: سيخبرك DrakX إذا كانت كلمة المرور التي تستخدمها سهلة. كما\n"
+"ترى، لست مجبراً على إدخال كلمة مرور، لكننا ننصح بشدة ألا تفعل هذا. جنو/لينكس "
+"مُعرّص لأخطاء المُشغّل كأيّ\n"
+"نظام تشغيل آخر. وحيث أن \"الجذر\" يمكنه تعدي كل الحدود\n"
+"و قد يحذف كل البيانات عن غير قصد بالوصول إلى التجزيئات بلا مبالاة\n"
+"فإنّه من المهمّ أن يكون من الصّعب أن تصبح المستخدم\n"
+"\"root\".\n"
+"\n"
+"يجب أن تكون كلمة المرور خليطاً من الحروف والأرقام كما يجب أن تحتوي\n"
+"على 8 حروف على الأقل. لا تكتب كلمة مرور \"الجذر\" على ورق -- هذا يسهّل\n"
+"اختراق النظام إذا رأى أحد كلمة المرور.\n"
+"\n"
+"نصيحة أخرى -- لا تجعل كلمة المرور طويلة جداً أو معقّدة لأنك يجب أن تكون\n"
+"قادراً على تذكرها!\n"
+"\n"
+"لن يتم عرض كلمة المرور على الشاشة عند كتابتها. لتقليل فرصة حدوث\n"
+"خطأ أثناء الكتابة، ستحتاج إلى إدخال كلمة المرور مرتين.\n"
+"إذا أخطأت في الكتابة في المرتين، فسيجب استخدام كلمة\n"
+"المرور \"الخاطئة\" في المرة الأولى التي ستحاول فيها الاتصال كمستخدم \"جذر"
+"\".\n"
+"\n"
+"إذا أردت أن يكون الوصول إلى هذا الحاسب يتحكّم به\n"
+"خادم مواثقة، اضغط \"%s\".\n"
+"\n"
+"إذا كانت شبكتك تستخدم LDAP، أوNIS، أو خدمات PDC مواثقة نطاق ويندوز، اختر "
+"الخيار المناسب لـ\"%s\". إن لم تعرف أيّها تريد\n"
+"استخدامه، اسأل مدير الشبكة لديك.\n"
+"\n"
+"إذا كانت لديك مشكلة في تذكر كلمات المرور، يمكنك اختيار\n"
+"\"%s\" إذا لم يكن الحاسب الخاص بك متصلاً بالإنترنت،\n"
+"أو أنك تثق في جميع من يستخدمون حاسبك."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "المواثقة"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"محمّل الإقلاع هو برنامج بسيط يشغلّه حاسبك وقت الإقلاع.\n"
+"وهو المسؤول عن بدء تشغيل النظام بأكمله. عادة، يكون\n"
+"تثبيت محمّل الإقلاع آلياً بالكامل. سيقوم DrakX بتحليل قطاع التركيب الخاص "
+"بالقرص\n"
+"ويتصرف بحسب ما يجد هناك:\n"
+"\n"
+" * إن عثر على قطاع تحميل ويندوز، فسيقوم باستبداله بقطاع تحميل LILO/GRUB.\n"
+"بهذه الطريقة ستستطيع تحميل جنو/لينكس أو أيّ\n"
+"نظام تشغيل آخر على ماكينتك.\n"
+"\n"
+" * إذا تم العثور على قطاع تحميل LILO أو GRUB، سيتم استبداله بقطاع جديد.\n"
+"\n"
+"إن لم يستطع DrakX أن يقرر مكان وضع قطاع الإقلاع، فسيسألك\n"
+"عن المكان الأكثر أماناً لوضعه فيه. عامة، \"%s\" هو الأكثر أماناً.\n"
+"اختيار \"%s\" لن يقوم بتثبيت أيّ محمّل إقلاع. اسخدم هذا الخيار فقط\n"
+"إن كنت تعرف ماذا تفعل."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"الآن، حان وقت اختيار نظام الطباعة لحاسبك. قد توفّر أنظمة التشغيل الأخرى\n"
+"نظام طباعة واحد، لكن ماندريبا لينكس يوفر لك نظامين. كل نظام مناسب\n"
+"لنوع معين من التهيئة.\n"
+"\n"
+" * \"%s\" -- وهو اختصار لـ``اطبع و لا تصفّ''، هو الخيار الأمثل\n"
+"إذا كانت لديك وصلة مباشرة بالطابعة، و تريد أن تكون قادراً على\n"
+"تفادي أي ارتباك في الطابعة، وليس لديك طابعات شبكيّة.(يقوم \"%s\"\n"
+"بالتعامل مع حالات الشبكة البسيطة ويعيبه البطء عند الاستخدام\n"
+"مع الشبكات). من الأفضل أن تستخدم \"pdq\" إذا.\n"
+"كانت هذه تجربتك الأولى مع جنو/لينكس.\n"
+"\n"
+" * \"%s\" - ``نظام طباعة يونكس الشّائع CUPS''، هو الخيار الأمثل\n"
+"للطباعة على طابعتك المحلية أو حتى على طابعة في النصف الآخر من الكوكب. إنه\n"
+"سهل الإعداد و يمكن أن يتصرف كخادم أو كعميل لأنظمة طباعة \"lpd\"\n"
+"القديمة، لذا فإنه متوافق مع أنظمة التشغيل القديمة\n"
+"التي لا تزال تحتاج إلى خدمات الطباعة. بينما التهيئة سهلة\n"
+"و قوية مثل \"pdq\". إذا كنت تحتاج إلى محاكاة خادم \"lpd\"، تأكّد\n"
+"من تشغيل عفريت \"cups-lpd\".\n"
+"يحتوي \"%s\" على واجهات\n"
+"رسوميّة للطّباعة أو لتحديد خيارات الطّابعة\n"
+"ولإدارة الطابعة.\n"
+"\n"
+"إذا قررت اختيارك الآن، ثم لم يعجبك نظام الطباعة\n"
+"فيما بعد، يمكنك تغييره عن طريق تشغيل PrinterDrake من مركز تحكم ماندريبا "
+"لينكس\n"
+"و الضغط على زرّ \"%s\"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "وضعية الخبير"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"سيقوم DrakX أولاً بالتحقق من أي أجهزة IDE مرتبطة بالحاسب. سيقوم\n"
+"أيضا بالتحقق من وجود بطاقات PCI SCSI على نظامك. إذا تم ايجاد\n"
+"بطاقة SCSI، سيقوم DrakX تلقائياً بتثبيت المُشغّل المناسب.\n"
+"\n"
+"لأن التحقق الآلي من العتاد غير خالي من الأخطاء، قد يتعذر\n"
+"على DrakX التحقق من أقراصك الصلبة. لذا سيكون عليك تحديد عتادك يدوياً.\n"
+"\n"
+"إذا اضطررت إلى تحديد موائم PCI SCSI يدوياً، سيسألك DrakX عمّا إذا\n"
+"كنت تريد تهيئة الخيارات الخاصة به. يجب أن تسمح لـ DrakX بأن\n"
+"يقوم بالتحقق الآلي من العتاد لكي يحدد الخيارات الخاصة بالبطاقة\n"
+"و التي يحتاج اليها لتشغيل الموائم. في أغلب الأحيان، سيتخطى DrakX\n"
+"هذه الخطوة بدون أي مشاكل.\n"
+"\n"
+"إذا تعذر على DrakX التحقق من الخيارات آلياً ستحتاج\n"
+"إلى تهيئة المُشغّل يدوياً."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": إذا تم اكتشاف بطاقة صوت على نظامك، سيتم عرضها\n"
+"هنا. إذا لاحظت أن بطاقة الصوت المعروضة هنا ليست تلك الموجودة\n"
+"فعلاً على نظامك، يمكنك الضغط على الزر و اختيار مشغل\n"
+"آخر."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"كمُراجعة، سيقدّم DrakX تلخيص المعلومات التي استجمعها حول\n"
+"نظامك. بناءً على عتادك المثبت، قد يكون لديك بعض أو كلّ\n"
+"المُدخلات التّالية. كل مُدخل مكوّن من عنصر التهيئة المطلوب\n"
+"تهيئته، متبوعاً بملخّص سريع من التّهيئة الحاليّة.\n"
+"اضغط على الزّر المرافق \"%s\" لتغييّر ذلك.\n"
+"\n"
+"* \"%s\": تحقّق من تهيئة خريطة لوحة المفاتيح الحاليّة وغيّرها إن كان\n"
+"ضروريّاً.\n"
+"\n"
+" * \"%s\": تحقّق من اختيار الدّولة الحالي. إن لم تكن في هذه\n"
+"الدّولة، اضغط على زرّ \"%s\" واختر دولة أخرى. إن لم تكن دولتك\n"
+"في القائمة المعروضة الأولى، اضغط على الزّر \"%s\" لتحصل على لائحة\n"
+"الدّول الكاملة.\n"
+"\n"
+" * \"%s\": بشكل افتراضي، يخفّض DrakX توقيتك الزّمني بناءً على الدّولة\n"
+"التي اخترتها. يمكنك الضّغط على الزّر \"%s\" هنا إن لم يكن ذلك\n"
+"صحيحاً.\n"
+"\n"
+" * \"%s\": تحقّق من تهيئة الماوس الحاليّة واضغط على الزّر كي\n"
+"تغيّرها إن كان ضروريّاً.\n"
+"\n"
+" * \"%s\": الضّغط على الزّر \"%s\" سيفتح\n"
+"معالج تهيئة الطّابعة. راجع الفصل المتعلّق من ``دليل\n"
+"المبتدئ'' للمزيد من المعلومات حول كيفيّة تهيئة طابعة جديدة. الواجهة\n"
+"المعروضة هناك مشابهة للتي هي مستخدمة خلال التّثبيت.\n"
+"\n"
+" * \"%s\": إن اكتشف بطاقة صوت في نظامك، سوف تُعرض\n"
+"هنا. إن لاحظت أنّ بطاقة الصّوت المعروضة ليست هي التّي\n"
+"فعليّاً موجودة في نظامك، يمكنك الضّغط على الزّر واختيار\n"
+"مشغّل آخر.\n"
+"\n"
+" * \"%s\": إن كانت لديك بطاقة تلفزيون على نظامك، يتمّ عرضها\n"
+"هنا وإن كانت لديك ولم تُكتشف،\n"
+"اضغط على \"%s\" تحاول تهيئتها يدوياً.\n"
+"\n"
+" * \"%s\": يمكنك الضغط على \"%s\" كي تُغيّر المُعطيات المرتبطة\n"
+"مع البطاقة إن شعرت بخطأ ما في التهيئة.\n"
+"\n"
+" * \"%s\": بشكل افتراضي، يهيّء DrakX واجهتك الرّسوميّة\n"
+"بدقّة \"800×600\" أو \"1024×768\". إن لم يناسبك ذلك، اضغط على\n"
+"\"%s\" كي تهيّء واجهتك الرّسوميّة.\n"
+"\n"
+"\n"
+" * \"%s\": إن رغبت بتهيئة الوصول إلى الإنترنت والشّبكة المحل، فيمكنك عمل ذلك "
+"الآن. راجع الكتيّبات المطبوعة أو\n"
+"استخدم مركز تحكّم ماندريبا لينكس بعض الانتهاء من التثبيت كي تستفيد\n"
+"من المساعدة المُدرجة بالكامل.\n"
+"\n"
+" * \"%s\": يمكنك من تهيئة عناوين بروكسي HTTP و FTP إن كانت الماكينة التي\n"
+"تقوم بالتثبيت عليها واقعة خلف خادم بروكسي.\n"
+"\n"
+" * \"%s\": هذا المُدخل يمكنّك من إعادة تعريف مستوى الأمن كما هو محدّد في\n"
+"الخطوة السّابقة ().\n"
+"\n"
+" * \"%s\": إن كنت تنوي وصل ماكينتك إلى الإنترنت، فإنّها لفكرة جيّدة\n"
+"أن تحمي نفسك من التّدخّلات الخارجيّة بإعداد جدار ناريّ. راجع\n"
+"الفصل المتعلّق من ``دليل المبتدئ'' لتفاصل\n"
+"إعدادات الجدار النّاري.\n"
+"\n"
+" * \"%s\": إن رغبت بتغيير تهيئة محمّل الإقلاع، اضغط ذلك\n"
+"الزّر. يجب أن يُحتفظ بهذا للمستخدمين المُتقدّم راجع الكتيبات المطبوعة أو "
+"المساعدة المضمنة حول تهيئة محمل الإقلاع من خلال\n"
+"مركز تحكم ماندريبا لينكس.\n"
+"\n"
+" * \"%s\": سيمكنك هذا من ضبط التّحكّم بالخدمات التي سوف تشغّل\n"
+"على ماكينتك. إن نويت استخدام هذه الماكنية كخادم فإنّها لفكرة جيّدة\n"
+"أن تُراجع هذه الخطوة."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "بطاقة ISDN"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "الواجهة الرسومية"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"اختر القرص الصلب الذي تريد محوه لتثبيت تجزيء\n"
+"ماندريبا لينكس الجديدة. خذ حذرك، كل البيانات الموجود عليه ستضيع\n"
+"و لن يمكن استعادتها!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"اضغط \"%s\" إن كنت تريد حذف كل التجزيئات الموجودة على القرص\n"
+"الصلب. خذ حذرك، بعد ضغطك لزر \"%s\" لن تتمكن من استعادة\n"
+"أي بيانات أو تجزئات كانت موجودة على هذا القرص الصلب، بما في ذلك\n"
+"أي بيانات ويندوز.\n"
+"\n"
+"اضغط \"%s\" لإيقاف هذه العملية دون خسارة أي بيانات أو تجزيئات\n"
+"موجودة على القرص الصلب."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "التالي ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- السابق "
+
diff --git a/perl-install/install/help/po/az.po b/perl-install/install/help/po/az.po
new file mode 100644
index 000000000..f8948da00
--- /dev/null
+++ b/perl-install/install/help/po/az.po
@@ -0,0 +1,1926 @@
+# translation of DrakX-az.po to Azerbaijani
+# translation of DrakX-az.po to Azerbaijani Turkish
+# DrakX-az.po faylının Azərbaycan dilinə tərcüməsi
+# Copyright (C) 2000,2003, 2004 Free Software Foundation, Inc.
+# Copyright (c) 2000 Mandriva
+# Vasif Ismailoglu MD<azerb_linux@hotmail.com> , 2000-2001
+# Mətin Əmirov <metin@karegen.com>, 2001-2003, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-az\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-03-31 14:21+0200\n"
+"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
+"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3.1\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: ../help.pm:14
+#, fuzzy, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Davam etmədən əvvəl, diqqətlə lisenziyanın qaydalarını oxumalısınız. O,\n"
+"bütün Mandriva Linux distribusiyasını əhatə edir. Əgər lisenziyadakı bütün\n"
+"qaydalarla razısınızsa, qutusunu \"%s\" işarələyin. Əgər razı deyilsəniz, "
+"sadəcə olaraq kompüterinizi bağlayın."
+
+#: ../help.pm:20
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linuks çox istifadəçili əməliyyat sistemidir, bu da o deməkdir ki\n"
+"hər istifadəçinin öz xüsusi seçimləri, faylları və s. ola bilər. Ancaq \n"
+"sistem idarəçisi olan \"ali istifadəçi\" xaricindəki indi əlavə edəcəyiniz\n"
+"istifadəçilər öz faylları və qurğuları xaricində sistemin heç bir təhlükəli\n"
+"yeri ilə iş görə bilməz və beləcə də sistem istənməyən pozulmalara qarşı\n"
+"qorunmuş olacaq. Ən az bir dənə sıravi istifadəçi yaradmalısınız və bu "
+"hesabı\n"
+"gündəlik işləriniz üçün istifadə etməlisiniz. Ali İstifadəçi olaraq giriş "
+"etmək də\n"
+"olduqca asanddır ancaq bu eyni zamanda çox təhlükəlidir. Çox kiçik bir xəta "
+"ilə\n"
+"sistemi qeyri-fəal vəziyyətə gətirə bilərsiniz. Ancaq sıravi istifadəçi "
+"olaraq xəta\n"
+"ediləndə ancaq bəzi mə'lumatları itirəcək, sisteminiz yenə də sağlam \n"
+"qalacaqdır.\n"
+"\n"
+"Birinci sahə sizdən adı soruşacaq. Əlbəttə ki bunu yazmaq məcburi deyil. \n"
+"Oraya istədiyiniz kəlmələri yaza bilərsiniz. DrakX buraya yazdığınız "
+"kəlmələrin\n"
+"ilk kəlməsini alıb \"%s\" sahəsinə köçürəcək, bu istifadəçinin sistemə "
+"girmək\n"
+"üçün işlədəcəyi istifadəçi adı olacaq. İstəsəniz bunu da dəyişdirə "
+"bilərsiniz.\n"
+"Sonrakı addım şifrə girməkdir. Təhlükəsizlik nəzər nöqtəsindən şifrəsi "
+"olmayan\n"
+"sıravi istifadəçi ali istifadəçi qədər səlahiyyətli ola bilməz ancaq yenə də "
+"sizə\n"
+"hər bir istifadəçiyə tapılması asand olmayan bir şifrə tə'yin etmənizi \n"
+"məsləhət görürük\n"
+"\n"
+"\"%s\" basdıqdan sonra başqa istifadəçiləri də əlavə edə bilərsiniz. Hər "
+"dostunuz\n"
+"üçün bir istifadəçi əlavə edin, misal üçün atanız, qardaşınız kimi. "
+"İstifadəçiləri əlavə \n"
+"etməyi bitirəndə \"%s\" düyməsinə basın.\n"
+"\n"
+"\"%s\" düyməsi istifadəçinin işlədəcəyi qabığı dəyişdirmək üçündür. \n"
+"(əsas olan bash qabığıdır).\n"
+"\n"
+"İstifadəçiləri əlavə edib bitirəndə sizə kompüteriniz açılanda hansı "
+"istifadəçinin\n"
+"avtomatik olaraq sistemə daxil etmək istədiyiniz sualı veriləcəkdir. Əgər "
+"bu\n"
+"xüsusiyyət xoşunuza gəlirsə və təhlükəsizlik haqqında elə də "
+"maraqlanmırsınızsal\n"
+"istədiyiniz istifadəçini və pəncərə idarəçisini seçib \"%s\" düyməsinə "
+"basın.\n"
+"Əgər bu xassə sizi maraqlandırmırsa \"%s\" qutusunun seçimini silin."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Bu xüsusiyyəti istifadə etmək istəyirsiniz?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Burada sürücünüzdə tapılan Linuks bölmələri sıralanıb.\n"
+"Sehirbazın məsləhətlərinə qulaq asın, onlar çox vaxt işə yarayır.\n"
+"Əgər hər hansı bir dəyişiklik etsəniz ən azından kök bölməsini (\"/\") "
+"müəyyən\n"
+"etməlisiniz. Çox kiçik bölmə seçməyin, yoxsa kifayət qədər proqram "
+"tə'minatı\n"
+"qura bilməyəcəksiniz. Əgər mə'lumatlarınızı başqa bölmədə tutmaq "
+"istəyirsinizsə,\n"
+"o zaman bir də \"/home\" bölməsi yaratmalısınız (yalnız birdən çox Linuks\n"
+"bölməniz var isə mümkündür).\n"
+"\n"
+"Hər bölmə bu cür sıralanıb; \"Ad\",\"Həcm\".\n"
+"\n"
+"\"Ad\" bu cür qurulub: \"sabit disk növü\", \"sabit disk nömrəsi\",\n"
+"\"bölmə nömrəsi\" (məsələn, \"hda1\").\n"
+"\n"
+"\"Sabit disk növü\" diskiniz İDE sürücüsü isə \"hd\"dir, SCSİ sürücüsü isə\n"
+"\"sd\"dir.\n"
+"\n"
+"\"Sabit disk nömrəsi\" həmişə \"hd\" və ya \"sd\"dən sonrakı rəqəmdir. İDE \n"
+"sürücülər üçün:\n"
+"\n"
+"* \"a\" mə'nası \"birinci İDE idarəçisində ali (master) sürücü\",\n"
+"\n"
+"* \"b\" mə'nası \"birinci İDE idarəçisində qul (slave) sürücü\",\n"
+"\n"
+"* \"c\" mə'nası \"ikinci İDE idarəçisində ali (master) sürücü\",\n"
+"\n"
+"* \"d\" mə'nası \"ikinci İDE idarəçisində qul (slave) sürücü\".\n"
+"\n"
+"\n"
+"SCSİ sürücülərində, \"a\"nın mə'nası \"ən düşük SCSİ ID\",\n"
+"\"b\"nin mə'nası \"ikinci ən düşük SCSİ ID\"dir, vs..."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linux qurulumu müxtəlif CD-lər üstündə gəlir. DrakX\n"
+"seçili paketlərin hansı CD'də olduğunu bilir ona görə də lazım olanda\n"
+"hazırkı CD-ni çıxardıb sizdən lazım olan CD-ni daxil etməyi istəyəcək.\n"
+"Əgər əlinizin altında istənən CD yoxdursa \"%s\" düyməsinə basın və istənən\n"
+"paketlər qurulmayacaqdır."
+
+#: ../help.pm:95
+#, fuzzy, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"İndi sisteminizə qurmaq istədiyiniz proqramları müəyyən etmə vaxtıdır.\n"
+"Mandriva Linux daxilində minlərcə proqram mövcuddur və idarələrinin\n"
+"asan olması üçün onlar bənzər paketlər qruplarına ayrılıblar.\n"
+"\n"
+"Paketlər sisteminizin xüsusui istifadə sahəsinə görə qruplanıb.\n"
+"Mandriva Linuxda dörd əvvəldən müəyyən edilmiş qurulum növü mövcuddur.\n"
+"Yalnız siz bu qrupları yenə də qarışdıra bilərsiniz və istədiyiniz əlavə.\n"
+"proqramları seçə bilərsiniz. Misal üçün ''İş Stansiyası'' qurulumu\n"
+"``İnkişaf'' qurulumundakı proqramları daxil edə bilər.\n"
+"\n"
+" * \"%s\": əgər sisteminiz iş stansiyası olaraq istifadə ediləcəksə, bu\n"
+"qrupda yer alan bir ya da daha çox proqramı seçin.\n"
+"\n"
+" * \"%s\": əgər sisteminizi proqramlaşdırma və inkişaf üçün işlədəcəksəniz,\n"
+"bu qrupdakı proqramları seçə bilərsiniz.\n"
+"\n"
+" * \"%s\": əgər sisteminiz verici olacaqsa, sisteminizə hansı xidmətləri\n"
+"qurmaq istədiyinizi buradan seçin.\n"
+"\n"
+" * \"%s\": qrafiki istifadəçi mühidini burada seçəcəksiniz. Əgər "
+"sisteminizdə\n"
+"qrafiki mühit işlətmək istəyirsinizsə ən az birisi seçilməlidir.\n"
+"\n"
+"Siçanın oxu qrup adının üstünə gələndə o qrup haqqında qısa izahat\n"
+"göstəriləcək. Əgər sistemi qurarkən bu qruplardan heç birini seçməsəniz\n"
+"minimal qurulum üçün fərqli seçimləri təqdim edən bir pəncərə\n"
+"göstəriləcək:\n"
+"\n"
+" * \"%s\": minimal ədəddə paket qur, işləyən qrafiki ara üzə malik\n"
+"olma mümkündür.\n"
+"\n"
+" * \"%s\": sistem bazası və əsas tə'minatlar və sənədləri qurulacaq.\n"
+"Bu qurulum növü verici quraşdırmaq üçün uyğundur.\n"
+"\n"
+" * \"%s\": işləyən Linuks sistemi üçün lazım olan ən minimal paketlər\n"
+"qurulacaq. Bu qurulum ilə yalnız əmr sətirinə malik olacaqsınız.\n"
+"Qurulumun ümumi böyüklüyü təqribən 65 meqabayt olacaq.\n"
+"\n"
+"Təklif edilən paketləri tanıyırsınızsa ya da qurulan hər paket üstündə\n"
+"tam idarə sahibi olmaq istəyirsinizsə\"%s\" qutusunu işarələyə bilərsiniz\n"
+"\n"
+"Əgər qurulumu \"%s\" modunda başlatmışsınızsa, yeni paketlərin\n"
+"qurulmasının qabağını almaq üçün bütün qrupların seçimini silə\n"
+"bilərsiniz. Bu əsasən sistem tə'mir edilirkən ya da yenilənirkən\n"
+"sərfəlidir."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Yeniləmə"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Əsas sənədlərlə birlikdə"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Həqiqətən minimal qurulum"
+
+#: ../help.pm:152
+#, fuzzy, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Əgər qurulum proqramına paketləri ayrı ayrı seçmək istədiyinizi dedinizsə,\n"
+"o, qrup və alt qruplara ayrılmış paketləri ağac şəklində sizə göstərəcək.\n"
+"Bu ağacda gəzərkən, bütün qrupu, alt qrupu ya da paketləri ayrı ayrı seçə "
+"biləcəksiniz\n"
+"\n"
+"Hər paket seçişinizdə sağ tərəfdə bu paket ilə əlaqəli və onun nə işə\n"
+"yaradığını göstərən mə'lumat yer alacaq.\n"
+"\n"
+"!! Əgər paketin ya da paketin daxil oduğu alt qrupun seçilməsi ilə bir "
+"verici\n"
+"seçilsə, sizə bu vericini həqiqətən də qurmaq istədiyinizi soruşan və "
+"sizdən\n"
+"təsdiq istəyən pəncərə göstəriləcək. Əsas olaraq Mandriva Linux bütün "
+"qurulu\n"
+"olan xidmətləri açılışda fəal edir. Distribusiyanın çıxdığı vaxt onların "
+"bilinən heç bir\n"
+"xətası ya da təhlükəli yanı olmasa da, mümkündür ki, müəyyən vaxt sonra\n"
+"təhlükəsizlik nöqtələri aşkar edilə bilər. Əgər seçilən xidmətin nə etdiyini "
+"və nəyə\n"
+"yaradığını bilmirsinizsə, \"%s\" düyməsinə basın. \"%s\" düyməsini seçsəniz "
+"isə\n"
+"xidmət sisteminizə qurulacaq və sisteminizin açılışında fəal hala "
+"gətiriləcək.\n"
+"Qeyd: Xidmətlərin açılışda fəal olub olmamasını qurulum bitdikdən sonra da\n"
+"Mandriva Linux İdarə Mərkəzindən quraşdıra bilərsiniz!!\n"
+"\n"
+"\"%s\" seçimi, bir proqramı seçdiyiniz zaman qurulum proqramının o proqram "
+"ilə\n"
+"əlaqəli diqər paket ya da asıllılıqların avtomatik seçməsi üçündür.\n"
+"Bə'zi paketlər bir birindən aslıdır və birinin qurulması digərinin də "
+"qurulmasını\n"
+"məcbur qılır. Bu paketləri qurulum proqramı müvəffəqiyyətlə taparaq "
+"sisteminizə\n"
+"quracaq.\n"
+"\n"
+"Siyahının altındakı kiçik disket rəsmi isə daha əvvəlki qurulumda (əgər "
+"yaratmışsınızsa)\n"
+"yaradılan paket siyahısı faylını yükləmək üçündür. Bu, birdən çox kompüterə "
+"eyni\n"
+"paket ya da proqramları qurmaq istədiyiniz zaman çox əlverişlidir. Düyməyə\n"
+"basdıqdan sonra sizdən disketi daxil etməniz xahiş ediləcək.\n"
+"Belə bir disketi necə yaradılacağını bilmək istəyirsinizsə son qurulum "
+"addımının \n"
+"ikinci yardım abzasına baxa bilərsiniz."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Avtomatik asıllılıqlar"
+
+#: ../help.pm:186
+#, fuzzy, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": \"%s\" düyməsinə basmaq çapçı quraşdırma sehirbazını başladacaq."
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Bu dialoq, açılışda avtomatik olaraq başlamasını istədiyiniz xidmətləri \n"
+"seçmək üçündür.\n"
+"\n"
+"DrakX hazırkı qurulumda mövcud olan bütün xidmətləri siyahıda göstərəcək.\n"
+"Hər birini diqqətlə nəzərdən keçirin və açılış vaxtı ehtiyac hiss "
+"etmədiyiniz\n"
+"xidmətlərin qabağındakı seçimi silin.\n"
+"\n"
+" Siçan xidmətin üzərinə gələndə o xidmətin vəzifəsini başa salan mətn\n"
+"göstəriləcək. Yalnız, əgər xidmətin faydalı olub olmamasından əmin "
+"deyilsəniz\n"
+"ən yaxşısı onu olduğu kimi saxlamaq olacaq.\n"
+"\n"
+"!! Əgər kompüteriniz verici olaraq istifadə ediləcəksə, bu addıma diqqət\n"
+"ayırmalısınız: istəmədiyiniz xidmətləri başlanğıcda başlatmaq "
+"istəməyəcəksiniz.\n"
+"Diqqətinizdə saxlayın ki, bə'zi xidmətlər fəal isə, bu verici üstündə "
+"təhlükəli ola bilər.\n"
+"!!"
+
+#: ../help.pm:209
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linuks vaxtı GMT (Greenwich Mean Time) ilə idarə edir və onu yerli\n"
+"vaxtı seçdiyiniz vaxt zolağına bağlı olaraq seçir. Əgər ana kartınızın "
+"saatı\n"
+"yerli saata quraşdırılıbsa, bunu, \"%s\"i seçərək qeyri-fəallaşdıra "
+"bilərsiniz,\n"
+"Bu, Linuksa sistem vaxtı ilə avadanlıq vaxtının eyni vaxt zolağında "
+"olduğunu\n"
+"bildirəcək. Bu, sistemdə Windows kimi digər əməliyyat sistemi mövcuddursa\n"
+"faydalıdır.\n"
+"\n"
+"\"%s\" seçimi isə, saatınızı internetdəki uzaq zaman vericisinə bağlanaraq\n"
+"düzəldəcək. Bu xüsusiyyətin işləməsi üçün, internet bağlantınız olmalıdır.\n"
+"Sizə ən yaxın olan vericini seçmək məsləhət edilir.\n"
+"Bu seçim əslində yerli şəbəkənizdəki başqa kompüterlərin də istifadə edə\n"
+"biləcəyi zaman vericisini qurur."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Avtomatik zaman sinxronlaşdırılması"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Səs Kartı\n"
+"\n"
+" Qurulum proqramı sisteminizə bağlı olan səs kartını əsasən avtomatik "
+"olaraq\n"
+"aşkar edəcəkvə quraşdıracaq. Əgər səhv tapılsa həqiqətən sisteminizə bağlı "
+"olan\n"
+"səs kartını siyahıdan seçə bilərsiniz. \n"
+" Əgər kartınız üçün həm 3D dəstəyi olan həm də olmayan vericilər "
+"mövcudsa,\n"
+"sizdən ehtiyaclarınıza ən gözəl cavab verən vericini seçməniz xahiş ediləcək."
+
+#: ../help.pm:234
+#, fuzzy, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (X Pəncərə Sistemi) GNU/Linuks qrafiki ara üzünün qəlbidir.\n"
+"Mandriva Linuxla bərabər gələn qrafiki mühitlərin hamısı (KDE, \n"
+"GNOME, AfterStep, WindowMaker, vs.) buna bağlıdır.\n"
+"\n"
+"Optimal görünüşü almaq üçün sizə dəyişdiriləcək fərqli parametrlər\n"
+"təqdim ediləcək.\n"
+"\n"
+" Qurulum proqramı sisteminizə bağlı olan qrafika kartını əsasən avtomatik "
+"olaraq\n"
+"aşkar edəcək və quraşdıracaq. Əgər səhv tapılsa həqiqətən sisteminizə bağlı "
+"olan\n"
+"səs kartını siyahıdan seçə bilərsiniz.\n"
+" Əgər kartınız üçün həm 3D dəstəyi olan həm də olmayan vericilər "
+"mövcudsa,\n"
+"sizdən ehtiyaclarınıza ən gözəl cavab verən vericini seçməniz xahiş "
+"ediləcək.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Qurulum proqramı sisteminizə bağlı olan monitoru əsasən avtomatik olaraq\n"
+"aşkar edəcək və quraşdıracaq. Əgər səhv tapılsa həqiqətən sisteminizə bağlı "
+"olan\n"
+"monitoru siyahıdan seçə bilərsiniz.\n"
+"\n"
+"\n"
+"Həlledilirlik\n"
+"\n"
+" Burada avadanlığınız üçün mümkün olan həlledilirlik və rəng "
+"dərinliklərini\n"
+"seçə bilərsiniz. Ehtiyaclarınıza ən gözəl cavab verəni seçin. (Bunları "
+"qurulum\n"
+"tamamlandıqdan sonra da dəyişdirə biləcəksiniz). Seçilən qurğuların bir\n"
+"nümunəsi monitorda göstərilir.\n"
+"\n"
+"\n"
+"\n"
+"Sınaq\n"
+"\n"
+" Sistem, seçilən həlledilirlikdə qrafiki ekranı açmağa cəhd edəcək.\n"
+"Əgər sınaq sırasında ismarışı görüb \"%s\" düyməsinə bassanız, DrakX\n"
+"növbəti mərhələyə keçəcək. Əgər ismarışı görə bilmirsinizsə, bu avtomatik\n"
+"aşkar edilən quraşdırmanın bir hissəsi səhvdir və sınaq 12 saniyə sonra\n"
+"sonlanaraq sizi menyuya geri götürəcək.\n"
+"Düzgün qrafiki görünüş alana qədər qurğuları dəyişdirin.\n"
+"\n"
+"\n"
+"\n"
+"Seçimlər\n"
+"\n"
+" Burada, sisteminiz başlarkən avtomatik olaraq qrafiki ekrana keçməsini\n"
+"seçə bilərsiniz. Yalnız, əgər sisteminiz bir verici olacaqsa ya da ekran "
+"qurğularını\n"
+"müvəffəqiyyətlə sazlaya bilmədinizsə hər halda \"%s\" seçimini seçmək "
+"istəyəcəksiniz."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+"\n"
+" Qurulum proqramı sisteminizə bağlı olan monitoru əsasən avtomatik olaraq\n"
+"aşkar edəcək. Əgər səhv tapılsa həqiqətən sisteminizə bağlı olan monitoru\n"
+"siyahıdan seçə bilərsiniz."
+
+#: ../help.pm:298
+#, fuzzy, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Həlledilirlik\n"
+"\n"
+" Burada, avadanlığınız üçün mövcud olan həlledilirlik və rəng "
+"dərinliklərini\n"
+"seçə bilərsiniz. Ehtiyacınıza ən yaxşı cavab verəni seçin (qurulumdan sonra\n"
+"bunu dəyişdirə biləcəksiniz). Seçilən qurğunun bir nümunəsi\n"
+"monitorda göstərilir."
+
+#: ../help.pm:306
+#, fuzzy, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Əgər kartınız üçün həm 3D dəstəyi olan həm də olmayan vericilər mövcudsa,\n"
+"sizdən ehtiyaclarınıza ən gözəl cavab verən vericini seçməniz xahiş ediləcək."
+
+#: ../help.pm:311
+#, fuzzy, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Seçimlər\n"
+"\n"
+" Burada, sisteminiz başlarkən avtomatik olaraq qrafiki ekrana keçməsini\n"
+"seçə bilərsiniz. Yalnız, əgər sisteminiz bir verici olacaqsa ya da ekran "
+"qurğularını\n"
+"müvəffəqiyyətlə sazlaya bilmədinizsə hər halda \"%s\" seçimini seçmək "
+"istəyəcəksiniz."
+
+#: ../help.pm:319
+#, fuzzy, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Bu nöqtədə Mandriva Linuxi sabit diskinizdə haraya quracağınıza\n"
+"qərar verəcəksiniz. Əgər diskiniz boş isə və ya bir başqa sistem\n"
+"bütün yeri doldurmuş isə, o zaman diskinizdə Mandriva Linux üçün\n"
+"yer açmalısınız. Bölmələndirmə əsasən diskinizdə Mandriva Linuxu\n"
+"qurmaqməntiqi sürücülər yaratmaqdan ibarətdir.\n"
+"\n"
+"Ümumiyyətlə bölmələndirmənin təsiri geri dönülməzdir və mə'lumat\n"
+"itirilməsinə səbəb ola bilər. Ona görə də əgər sisteminizdə başqa bir\n"
+"əməliyyat sistemi quruludursa və siz Linuksla yeni tanışırsınızsa bu iş\n"
+"çox gərgin və yorucudur. Ancaq DrakX sabit diski çox rahat bölmələndirməniz\n"
+"üçün çox sadə bir sehirbaz daxil edir. Başlamadan əvvəl xahiş edirik, "
+"buradakı\n"
+"mə'lumatları oxuyun, və bu iş üçün bir az vaxt ayırın.\n"
+"\n"
+"Sabit diskinizin qurğularına nəzarən birdən çox seçim mövcud ola bilər:\n"
+"\n"
+" * \"%s\": bu seçim boş sürücülərinizi avtomatik olaraq bölmələndirəcək\n"
+"Bu seçənəyi seçsəniz sizə heç bir sual verilməyəcək.\n"
+"\n"
+" * \"%s\": sehirbaz sabit diskinizdə bir ya da daha çox mövcud Linuks \n"
+"bölməsi aşkar edib. Onları istifadə etmək istəyirsinizsə bu seçənəyi "
+"işlədin.\n"
+"Daha sonra hər bölmə ilə əlaqələndirilmiş bağlama nöqtəsi seçəcəksiniz.\n"
+"Əvvəldən qalan bağlama nöqtələri əsas olaraq seçilidir və onları eləcə də\n"
+"saxlamaq gözəl fikirdir.\n"
+"\n"
+" * \"%s\": sabit diskinizdə Microsoft Windows quruludur və üstündəki bütün\n"
+" sahəni əhatə edir, bu vəziyyətdə siz Linuks üçün boş yer ayırmalısınız.\n"
+"Bunu etmək üçün Microsoft Windows bölməsini və mə'lumatlarını silə "
+"bilərsiniz.\n"
+"(baxın ``Bütün diski sil'' həlli) ya da Microsoft Windows FAT ya da NTFS "
+"bölmənizin\n"
+" böyüklüyünü dəyişdirə bilərsiniz. Ölçüləndirmə qaydalara riayət edilərsə "
+"heç bir mə'lumat\n"
+"itirilməsinə yol açmaz. Qaydalar isə əvvəlcədən Windows bölməniz üstündə "
+"'Scandisk' və\n"
+"'Defraq' əmrlərinin icra edilməsinir. Eyni zamanda mə'lumatlarınızın ehtiyat "
+"nüsxəsini almayı\n"
+"da qətiyyən unutmayın. Kompüteriniz üstündə həm Mandriva Linux həm də "
+"Microsoft\n"
+"Windows ƏS'lərini işlətmək istəyirsinizsə bu seçənəyi seçin. Unutmayın ki "
+"Microsoft\n"
+"Windows bölmənizin böyüklüyünü Windows altında da bəzi (PartitionMagic) "
+"proqramlar\n"
+"vasitəsi ilə dəyişdirə bilərsiniz.\n"
+"\n"
+" Bu seçənəyi seçmədən əvvəl nəzərə alın ki bu əməliyyatdan sonra Microsoft "
+"Windows\n"
+"bölməniz əvvəlkindən daha kiçik olacaq.\n"
+"\n"
+" * \"%s\": əgər sisteminizdəki bütün mövcud bölmələri silmək və yerinə\n"
+"Mandriva Linux sistemini qurmaq istəyirsinizsə bu seçənəyi seçin.\n"
+"Diqqətli olun, ona görə ki seçiminizi təsdiqlədikdən sonra geri ala "
+"bilməyəcəksiniz.\n"
+"\n"
+" !! Əgər bu seçənəyi seçsəniz, diskinizdəki bütün mə'lumat "
+"silinəcəkdir. !!\n"
+"\n"
+" * \"%s\": bu sabit disk üstündəki hər şeyi siləcək və sıfırdan təzə bir "
+"bölmələmə,\n"
+"həyata keçirəcəkdir. Diskinizdəki bütün mə'lumat silinəcəkdir.\n"
+"\n"
+" !! Əgər bu seçənəyi seçsəniz, diskinizdəki bütün mə'lumat "
+"silinəcəkdir. !!\n"
+"\n"
+" * \"%s\": diskinizi əllə bölmələmək istəyirsinizsə bu seçənəyi seçin. \n"
+"Diqqətli olun -- bu çox qüvvətli ancaq təhlükəli seçimdir. Ona görə də bu \n"
+"seçimi ancaq daha əvvəl buna oxşar bir şey etmişsinizsə və bu sahədə\n"
+"bilikləriniz mövcuddursa seçin. Yaxşısı budur ki bu əməliyyat sırasında\n"
+"yanınızda daha əvvəl bunu etmiş dostunuz da olsun. DiskDrake vasitəsinin\n"
+"istifadəsi haqqında mə'lumatı ``Starter Guide'' kitabçasının ``Managing \n"
+"Your Partitions '' qismində tapa bilərsiniz."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Mövcud bölməni işlət"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Bütün diski sil"
+
+#: ../help.pm:380
+#, fuzzy, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Təbrik edirik! Qurulum başa çattı və GNU/Linuks sisteminiz indi\n"
+"istifadəyə hazırdır. Sadəcə olaraq sisteminizi yenidən başlatmaq üçün\n"
+"\"%s\" düyməsinə basın. Kompüteriniz başlarkən avadanlıq yoxlamasından\n"
+"sonra görəcəyiniz açılış yükləyici menyusunda sizə başlatmaq\n"
+"istədiyiniz əməliyyat sistemlərinin siyahısı göstəriləcək.\n"
+"\n"
+"\"%s\" düyməsi seçimə bağlı olaraq aşağıdakı iki seçimi göstərir:\n"
+"\n"
+" * \"%s\": indi etdiyiniz quruluma bənzər və operatora (kompüterin\n"
+"yanında oturana) ehtiyaca qalmadan qurulumu etmək üçün avtomatik\n"
+"qurulum disketi yaratma imkanı verir.\n"
+"\n"
+" Düyməni basdıqdan sonra iki fərqli seçim görəcəksiniz:\n"
+"\n"
+" * \"%s\". Qismən avtomatikləşdirilmiş qurulum. Yalnız disk bölmələmə\n"
+"addımı interaktiv olacaq və sizin istəklərinizə qulaq asacaq.\n"
+"\n"
+" * \"%s\". Tamamilə avtomatikləşdirilmiş qurulum: sabit disk tamamilə\n"
+"yenidən yazılacaq, bütün mə'lumat yox olacaq.\n"
+"\n"
+" Bu xassə, əsasən birdən çox eyni sistemin qurulmasında çox əlverişlidir.\n"
+"Daha çox mə'lumat üçün saytımızın Auto install qisminə baxın.\n"
+"\n"
+" * \"%s\"(*): bu, qurulum sırasında seçilən paketlərin siyahısını disketə\n"
+"qeyd edər. Bu disketi başqa qurulum ilə işlətmək üçün, disketi daxil edin "
+"və\n"
+"quruluma başlayın. Promptda, [F1] düyməsinə basın və >>linux\n"
+"defcfg=\"floppy\" << yazın.\n"
+"\n"
+"(*) Bunun üçün FAT ilə şəkilləndirilmiş disketə ehtiyacınız olacaq. (GNU/"
+"Linuks\n"
+"altında bunu yaratmaq üçün \"mformat a:\" əmrini verin)"
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Avtomatik qurulum disketi hazırla"
+
+#: ../help.pm:415
+#, fuzzy, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Yeni yaradılan bütün bölmələr şəkilləndirilməlidir\n"
+"(şəkilləndirmək, fayl sistemini yaratmaq deməkdir - format).\n"
+"\n"
+"Bu arada var olan hazır bölmələri də üstündəkiləri silmək üçün yenidən\n"
+"şəkilləndirmək istəyə bilərsiniz.\n"
+"Bunu istəyirsinizsə xahiş edirik, bu bölmələri də seçin.\n"
+"\n"
+"Ağlınızda tutun ki var olan bütün bölmələri şəkilləndirmək\n"
+"məcburi deyil. Əməliyyat sistəmini əmələ gətirən bölmələri\n"
+"(yəni \"/\", \"usr\" və ya \"var\"ı yenidən şəkilləndirmək üçün\n"
+"seçə bilərsiniz. Mə'lumatlar olan \"home\"u isə toxunmadan\n"
+"saxlaya bilərsiniz).\n"
+"\n"
+"Bölmələri seçərkən diqqətli olun. Şəkilləndirdiyiniz bölmələrdəki\n"
+"mə'lumatlar itiriləcək və geri gəlməyəcək.\n"
+"\n"
+"Bölmələri şəkilləndirməyə hazır olanda \"%s\" düyməsini basın.\n"
+"\n"
+"Yeni Mandriva Linux sisteminizi qurmaq üçün başqa bölmə seçmək\n"
+"istəyirsinizsə \"%s\" düyməsinə basın.\n"
+"\n"
+"Üstündəki xəsərli blokların yoxlanmasını istədiyiniz bölmələri seçmək\n"
+"üçün \"%s\" düyməsinə basın."
+
+#: ../help.pm:437
+#, fuzzy, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Mandriva Linuxu qurduğunuz vaxtda çox güman ki bə'zi paketlər \n"
+"ilk çıxışlarından sonra yenilənmiş ola bilər. Bunlarla bir çox xəta "
+"düzəldilmiş\n"
+"ya da təhlükəsizlik qüvvətləndirilmiş ola bilər. Bu yeniləmələrdən istifadə\n"
+"etmək üçün indi siz İnternetdən endirmə əməliyyatına başlaya bilərsiniz.\n"
+"Əgər fəal internet bağlantınız varsa \"%s\", yoxsa, yenilənmiş paketləri\n"
+"daha sonra qurmaq üçün \"%s\" düyməsinə basın.\n"
+"\n"
+"\"%s\" seçilərsə, yeniləmələrin endirilə biləcəyi yerlərin siyahı "
+"göstəriləcək.\n"
+"Sizə ən yaxın olanı seçməlisiniz. Paket seçim ağacı göstəriləcək, bu bölümü\n"
+"gözdən keçirin və paketləri endirib qurmaq üçün \"%s\" düyməsinə basın.\n"
+"Ləğv etmək üçün isə \"%s\" düyməsindən istifadə edə bilərsiniz."
+
+#: ../help.pm:450
+#, fuzzy, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Bu nöqtədə, DrakX sizə sisteminiz üçün təhlükəsizlik səvissəyini seçmə\n"
+"imkanını təqdim edəcək. Qayda olaraq, əgər kompüter vacib mə'lumat daxil\n"
+"edir ya da internetə birbaşa açıq sistem olacaqsa təhlükəsizlik səviyyəsi\n"
+"yüksək seçilməlidir. Bunun gətirdiyi əlverişsiz şərait isə sistemin "
+"istifadəsinin\n"
+"daha çətin olmasıdır.\n"
+"\n"
+"Əgər nə seçəcəyinizi bilmirsinizsə, seçili qurğuları olduğu kimi saxlayın."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Təhlükəsizlik İdarəçisi"
+
+#: ../help.pm:464
+#, fuzzy, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Bu nöqtədə siz Mandriva Linux yüklənəcək bölmə(lər)i seçməlisiniz. Əgər\n"
+"bölmələr əvvəldən mövcuddursa (sistemdə əvvəllər qurulu olan GNU/Linuks \n"
+"bölmələri və ya başqa bölmələndirmə vasitələri ilə hazırladığınız "
+"bölmələr),\n"
+"onları istifadə edə bilərsiniz, əks halda onları müəyyən etməlisiniz.\n"
+"\n"
+"Bölmələri yaratmaq üçün əvvəlcə diski seçməlisiniz. Diski seçmək üçün \n"
+"birinci İDE sürücüsü üçün ``hda''nı, ikincisi üçün ``hdb''ni, birinci SCSİ \n"
+"sürücüsü üçün isə ``sda'' v.s. üstünə tıqlamalısınız.\n"
+"\n"
+"Seçdiyiniz sürücünü bölmələndirmək üçün aşağıdakı seçimləri etməyə "
+"qadirsiniz:\n"
+"\n"
+" * \"%s\": Bu seçim seçili sabit disk üstündəki bütün bölmələri silər\n"
+"\n"
+" * \"%s\": Bu seçim sizə avtomatik olaraq sabit diskinizin boş sahəsində\n"
+"ext3 və dəyiş-toqquş sahəsi yaratma imkanı verəcək\n"
+"\n"
+"\"%s\": Əlavə xüsusiyyətlərə yetişmə imkanı verir\n"
+"\n"
+" * \"%s\": Bölmə cədvəlini disketə qeyd edər. Bu disket daha sonra əmələ "
+"gələ\n"
+"biləcək disk bölmə cədvəli xətalarını bərpa etmək üçün işlədilir. Bu addımı "
+"həyata keçirməyi\n"
+"sizə şiddətlə məsləhət edirik.\n"
+"\n"
+" * \"%s\": Daha əvvəl disketə qeyd edilən bölmə cədvəlini bərpa etmək "
+"(yenidən\n"
+"yükləmək) üçün bu seçimi işlədin.\n"
+"\n"
+" * \"%s\": Əgər bölmə cədvəliniz pozulubsa, onu bu seçimlə düzəldə\n"
+"bilərsiniz. Diqqətli olun və unutmayın ki bu həmişə işləməyə bilər.\n"
+"\n"
+" * \"%s\": Bütün dəyişiklikləri silərək sabit diskin əvvəlki bölmə "
+"cədvəlini\n"
+"geri yükləyəcək.\n"
+"\n"
+" * \"%s\": Bu seçimin işarəsini silərsəniz, istifadəçilər CD-ROM'lar və "
+"disketlər\n"
+"kimi çıxardıla bilən mediyaları əl ilə bağlamaq (mount) məcburiyyətində "
+"qalacaq.\n"
+"\n"
+" * \"%s\": Əgər diskinizi bölmələmək üçün bir sehirbaza ehtiyac hiss "
+"edirsinizsə,\n"
+"bu seçimi seçin. Bu yol, bölmələmədən yaxşı başı çıxmayanlar üçündür.\n"
+"\n"
+" * \"%s\": Dəyişikliklərinizi rədd etmək üçün bu seçimi işlədin.\n"
+"\n"
+" * \"%s\": Sabit disk haqqında ətraflı mə'lumat verir və onun üstündə əlavə\n"
+"əməliyyatlar (növ, seçimlər, şəkilləndirmə) icra etmə icazəsi verir.\n"
+"\n"
+" * \"%s\": Sabit diskinizi bölmələyib bitirdiyiniz vaxt bu seçim "
+"dəyişiklikləri\n"
+"sabit diskinizə qeyd edəcək.\n"
+"\n"
+"Bölmənin böyüklüyünü müəyyən edərkən klaviaturadakı istiqamət düymələri\n"
+"ilə seçiminizi sazlaya bilərsiniz.\n"
+"\n"
+"Qeyd: bütün seçimlərə klaviatura ilə yetişə bilərsiniz. Bölmələr arasında "
+"[Tab]\n"
+"və [Yuxarı/Aşağı] düymələri ilə hərəkət edə bilərsiniz.\n"
+"\n"
+"Bir bölmə seçili ikən bu qısa yolları istifadə edə bilərsiniz:\n"
+"\n"
+" * Ctrl-c -> yeni bölmə yaratmaq üçün (əgər boş bölmə seçilidirsə)\n"
+"\n"
+" * Ctrl-d -> bölməni silmək üçün\n"
+"\n"
+" * Ctrl-m -> bağlama nöqtəsi seçmək üçün\n"
+"\n"
+"Fərqli fayl sistem növləri haqqında daha ətraflı mə'lumat üçün, xahiş "
+"edirik,\n"
+"``Reference Manual'' kitabının ext2FS bölümünü oxuyun.\n"
+"\n"
+"Əgər PPC kompüterdə qurulum aparırsınızsa, ən az 1 MBlıq balaca bir HFS \n"
+"``bootstrap'' bölməsini yaboot açılış yükləyicisi üçün seçmək "
+"istəyəcəksiniz.\n"
+"Əgər daha çox yeriniz varsa, məsələn 50 MB, onda bütün kernel və ramdisk \n"
+"açılış əkslərinizi təcili hallar üçün burada saxlaya bilərsiniz."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Sökülə bilən avadanlıqların avtomatik bağlanması"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Normal modla mütəxəssis modu arasında keç"
+
+#: ../help.pm:536
+#, fuzzy, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Sürücünüzdə bir və ya daha çox Microsoft bölməsi tapıldı.\n"
+"Xahiş edirik, Mandriva Linuxi qurmaq üçün onlardan hansını\n"
+"yenidən ölçüləndirmək istədiyinizi seçin.\n"
+"\n"
+"Hər bölmə bu cür sıralanıb; \"Linuks adı\",\"Windows adı\"\n"
+"\"Həcm\".\n"
+"\n"
+"\"Linuks adı\" bu cür qurulub: \"sabit disk növü\", \"sabit disk nömrəsi\",\n"
+"\"bölmə nömrəsi\" (məsələn, \"hda1\").\n"
+"\n"
+"\"Sabit disk növü\" diskiniz İDE sürücüsü isə \"hd\"dir, SCSİ sürücüsü isə\n"
+"\"sd\"dir.\n"
+"\n"
+"\"Sabit disk nömrəsi\" həmişə \"hd\" və ya \"sd\"dən sonrakı rəqəmdir. İDE \n"
+"sürücülər üçün:\n"
+"\n"
+"* \"a\" mə'nası \"birinci İDE idarəçisində ali (master) sürücü\",\n"
+"\n"
+"* \"b\" mə'nası \"birinci İDE idarəçisində qul (slave) sürücü\",\n"
+"\n"
+"* \"c\" mə'nası \"ikinci İDE idarəçisində ali (master) sürücü\",\n"
+"\n"
+"* \"d\" mə'nası \"ikinci İDE idarəçisində qul (slave) sürücü\".\n"
+"\n"
+"\n"
+"SCSİ sürücülərində, \"a\"nın mə'nası \"ən düşük SCSİ ID\",\n"
+"\"b\"nin mə'nası \"ikinci ən düşük SCSİ ID\"dir, vs...\n"
+"\n"
+"\"Windows adı\" sabit diskinizin Windows altındakı adıdır (birinci\n"
+"disk ya da bölmənin adı \"C:\"dir, vs...)."
+
+#: ../help.pm:567
+#, fuzzy, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": hazırkı ölkə seçimini yoxlayın. Əgər bu ölkədə deyilsəniz \"%s\"\n"
+"düyməsinə basaraq başqasını seçin. Əgər ölkəniz göstərilən ilk siyahıda\n"
+"deyilsə, tam ölkə siyahısını görmək üçün \"%s\" düyməsinə basın."
+
+#: ../help.pm:572
+#, fuzzy, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Bu addım, yalnız sisteminizdə daha əvvəldən qurulu olan GNU/Linuks bölməsi\n"
+"tapılanda fəal olur.\n"
+"\n"
+"DrakX indi mövcud Mandriva Linux sisteminizi yeniləmək mi, yoxsa yenidən\n"
+"qurmaq mı istədiyinizi bilməlidir.\n"
+"\n"
+" * \"%s\": Bu seçim köhnə sistemi tamamilə siləcək. Əgər sabit "
+"disklərinizin\n"
+"bölmələndirilməsini dəyişdirmək ya da fayl sistemini dəyişdirmək "
+"istəyirsinizsə\n"
+"bu seçimi seçin. Yalnız, bölmələndirmə sxeminizdən aslı olaraq bə'zi mövcud\n"
+"mə'lumatlarınızın üstündən yazılmasının qabağını ala bilərsiniz.\n"
+"\n"
+" * \"%s\": Hazırkı Mandriva Linux sisteminizdə qurulu olan paketləri "
+"yeniləmə\n"
+"imkanı verir. Qurulum hazırkı bölmələmə sxemi və istifadəçi mə'lumat və "
+"sənədlərinə\n"
+"dəyməyəcək və dəyişdirməyəcək. Digər qurulum addımlarının çoxu isə standart\n"
+"qurulumdakının eynisi olacaq. Bu seçimi \"8.1\" versiyasından əvvəlki "
+"Mandriva Linuxlarda\n"
+"tədbiq etmək uyğun görülmür."
+
+#: ../help.pm:594
+#, fuzzy, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Bölümdə seçdiyiniz dilə bağlı olaraq, DrakX uyğun gələn klaviatura növü\n"
+"quraşdırmasını seçəcək. Yalnız, dilinizə tam uyğun olmayan klaviatura "
+"yiyəsi\n"
+"də ola bilərsiniz: misal üçün Azərbaycanda yaşayan Rus dilli şəxs isəniz\n"
+"klaviaturanızı Rus dilində istifadə etmək istəyəcəksiniz, ya da Rusiyada "
+"yaşayan\n"
+"Azərbaycanlı isəniz klaviaturanızı Rus dilində yox Azərbaycan dilində "
+"istifadə\n"
+"etmək istəyə bilərsiniz. İki vəziyyətdə də istədiyiniz klaviaturlarını "
+"siyahıdan seçə\n"
+"bilərsiniz.\n"
+"\n"
+"Dəstəklənən klaviaturaların tam siyahısını görmək üçün \"%s\" \n"
+"düyməsinə basın\n"
+"\n"
+"Əgər Latın əlifbası əsasında olmayan klaviatura düzülüşü seçsəniz, növbəti\n"
+"dialoq sizə Latın və Latın olmayan düzülüşlər arasında keçiş üçün\n"
+"qısa yol seçmə imkanı verəcək."
+
+#: ../help.pm:612
+#, fuzzy, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Seçdiyiniz dil, sənədlər , qurulum və ümumi sistemə tə'sir edəcəkdir.\n"
+"İlk olaraq qaldığınız yerin coğrafi bölgəsini seçin, daha sonra\n"
+"istifadə etdiyiniz dili seçin.\n"
+"\"%s\" düyməsi əlavə dilləri seçmə imkanı verəcəkdir. Bu imkan\n"
+"fərqli bir dili də eyni zamanda istifadə etmə imkanı verəcək. Bu qurğunu\n"
+"\"%s\" ətraflı menyusundan həyata keçirə bilərsiniz.\n"
+"Qeyd: Əlavə dil seçməkdə bir dil ilə məhdud deyilsiniz. \"%s\" "
+"qutusundanistədiyiniz qədər dil seçə bilərsiniz. \n"
+"Bir dil seçimi bərabərində tərcümələr, yazı növləri və\n"
+"imla yoxlayıcıları kimi bə'zi üstünlükləri gətirəcəkdir.\n"
+"Ayrıca \"%s\" qutusundan sistemi UTF-8 (yunikod) kodlamasını işlətmək\n"
+"üçün zorlaya bilərsiniz.\n"
+"Qurduğunuz dillər arasında keçiş etmək üçün ali istifadəçi səlahiyyətləri\n"
+"ilə konsolda \"/usr/sbin/localedrake\" əmrini verə bilər ya da menyunuzdan\n"
+" \"localedrake\"'i seçərək dəyişdirə bilərsiniz. Bu, bütün sisteminya da\n"
+"yalnız bir istifadəçinin bütün dil qurğularını dəyişdirmə imkanı verir.\n"
+"Əgər bunları sıravi istifadəçi olaraq həyata keçirsəniz yalnız öz xüsusi\n"
+"dil qurğularınızı dəyişdirəcəksiniz."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "İspanca"
+
+#: ../help.pm:653
+#, fuzzy, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Adətən DrakX siçanınızdakı düymə ədədini tapmaqda əziyyət çəkməyəcək. Əgər\n"
+"müvəffəqiyyətsiz olsa, siçanınızı iki düyməli qəbul edəcək və üçüncü düymə \n"
+"emulyasiyasını fəallaşdıracaq. İki düyməli siçanda üçüncü düyməyə "
+"``basmaq''\n"
+"üçün sağ və sol düyməyə bərabər basmalısınız. DrakX, siçanınızın PS/2 ya da "
+"USB bağlantısından hansını işlətdiyini özü tapacaq.\n"
+"\n"
+"Əgər fərqli bir siçan növü seçmək istəsəniz verilən siyahıdan seçməniz\n"
+"kifayətdir.\n"
+"\n"
+"Əgər əsas siçan xaricində başqa bir siçan seçmək istəsəniz bir sınaq ekranı\n"
+"göstəriləcək. Sİçanın qurğularının düz olduğundn əmin olmaq üçün\n"
+"düymələri və çarxı sınayın. Əgər siçan düzgün işləmirsə boşluq ya da\n"
+"[Return] düyməsinə basıb seçim siyahısına geri dönə bilərsiniz.\n"
+"\n"
+"Çərxli siçanlar adətən avtomatik aşkar edilə bilmir, bu səbəblə\n"
+"siçanınızı siyahıdan seçməniz lazım ola bilər. Siçanızın taxılı olduğu "
+"qapını\n"
+"və siçanınızı seçəndən sonra \"%s\" düyməsinə basın, ekranda bir siçan\n"
+"rəsmi göstəriləcək. Çərxin düzgün işlədiyini yoxlamaq üçün onu döndərin.\n"
+"Ekrandakı siçan çərxinin döndüyünü görəndən sonra siçanın düymələrini \n"
+"oxun ekrandakı hərəkətini yoxlayın."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "Çərx emulyasiyalı"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Universal | Hər hansı bir PS/2 və USB siçan"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Xahiş edirik, doğru qapını seçin. Məsələn, Windows'dakı COM1\n"
+"GNU/Linuks'da ttyS0'dır."
+
+#: ../help.pm:691
+#, fuzzy, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Bu, GNU/Linuks sisteminizin təhlükəsizliyi üçün ən əsas mərhələdir.\n"
+"\"Ali istifadəçi (root)\" şifərsini daxil edəcəksiniz. \"Ali istifadəçi\" "
+"sistemin\n"
+"idarəçisidir və yalnız o yeniləmələri, istifadəçiləri əlavə edib/silməyi\n"
+"sistemin bütün qurğularını dəyişdirə bilər. Qısaca, \"ali istifadəçi\" hər\n"
+"şeyi edə bilər! Buna görə də tapılması çətin olan bir şifrə seçməlisiniz.\n"
+"DrakX seçdiyiniz şifrənin asan olub olmadığını sizə bildirəcək. Görüdüyünüz\n"
+"kimi, şifrə müəyyən etməkdə məcbur deyilsiniz, yalnız bunu sizə şiddətlə\n"
+"məsləhət etmirik. GNU/Linuks da diqər əməliyyat sistemləri kimi "
+"istifadəçinin\n"
+"xətasından çox tə'sir ala bilər. \"Ali istifadəçi\" bütün həddləri keçərək\n"
+"bütün bölmələrdəki bütün mə'lumatları silə bilər. Ona görə də ali "
+"istifadəçi\n"
+"olma imkanını olduqca çətinləşdirməlisiniz.\n"
+"\n"
+"Şifrəniz ədəd və hərflərin qarışığı olmalıdır və 8 hərfdən qısa "
+"olmamalıdır.\n"
+"Şifrəni heçvaxt başqa bir yerə qeyd etməyin.\n"
+"\n"
+"Yalnız şifrəni çox uzun ya da çətin də seçməyin ona görə ki onu əzbərləmək\n"
+"məcburiyyətindəsiniz!\n"
+"\n"
+"Şifrənizi yazarkən ekranda göstərilməyəcək. Xəta riskini azaltmaq üçün\n"
+"şifrəni iki dəfə daxil edəcəksiniz. Burada diqqətli olun və eyni xətanı\n"
+"iki dəfə etməyin.\n"
+"\n"
+"Əgər bu kompüterə yetişmənin səlahiyyət vericisi tərəfindən idarə "
+"edilməsini\n"
+"istəyirsinizsə, \"%s\" düyməsinə basın.\n"
+"\n"
+"Əgər şəbəkəniz LDAP, NIS, ya da PDC Windows Domain authentication\n"
+"xidmətlərindən birisini işlədirsə, \"%s\" üçün uyğun gələnini seçin. Əgər\n"
+"hansını işlədəcəyinizi bilmirsinizsə, şəbəkə idarəçinizdən soruşun.\n"
+"\n"
+"Əgər şifrələri yadda saxlamaqda çətinlik çəkirsinizsə, internetə heç\n"
+"vaxt bağlanmayacaqsanızsa ya da kompüterini işlədən hamıya e'tibar\n"
+"edirsinizsə \"%s\" seçimini seçə bilərsiniz."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "səlahiyyətləndirmə"
+
+#: ../help.pm:728
+#, fuzzy, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"LILO və grub ikisi də GNU/Linuks açılış yükləyiciləridir. Normalda bu "
+"mərhələ\n"
+"tamamilə avtomatikdir. DrakX diskin kök sektorunu yoxlayacaq və orada "
+"tapacağı\n"
+"mə'lumatlara görə açağıdakı addımları tətbiq edəcək:\n"
+"\n"
+" * əgər Windows açılış sektoru aşkar edilərsə, DrakX onu grub/LILO açılış "
+"sektoru\n"
+"ilə dəyişdirəcək. Beləliklə, siz həm GNU/Linuksu həm də digər əməliyyat "
+"sisteminizi\n"
+"(Windows ya da MacOS) aça biləcəksiniz.\n"
+"\n"
+" * əgər grub ya da LILO açılış sektoru aşkar edilərsə, o, yenisiylə əvəz "
+"ediləcək.\n"
+"\n"
+"Əgər müəyyən edib qərara gələ bilməzsə, DrakX açılış yükləyicisini hara "
+"yazmaq\n"
+"istədiyinizi sizə soruşacaq."
+
+#: ../help.pm:745
+#, fuzzy, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"İndi kompüteriniz üçün çap sistemini seçmə vaxtı gəldi. Digər ƏS'ləri sizə "
+"bir\n"
+"dənəsini təqdim edə bilərlər, yalnız Mandriva Linux ikisini təqdim edir.\n"
+"Hər çap sistemi xüsusi quraşdırma növləri üçün uyğundur.\n"
+"\n"
+" * \"%s\" -- bu seçim``çap et, növbəyə alma'' mə'nasına gəlir.\n"
+"Əgər kompüterinizə bağlı olan çapçı varsa, çap yığılmalarından qurtulmaq\n"
+"istəyirsinizsə və şəbəkə çapçılarınız yoxdursa, bunu seçin. (\"%s\"\n"
+"yalnız çox sadə şəbəkə hallarını idarə edə bilər və şəbəkələrlə işlədiləndə\n"
+"biraz yavaş qalır. Əgər bu GNU/Linuks ilə ilk tanışmanızdırsa, sizə \"pdq\"\n"
+"işlətməyi məsləhət edirik.\n"
+"\n"
+" * \"%s\" - `` Ümumi Unix Çap Sistemi'', isə həm öz kompüterinizə\n"
+"bağlı olan həm də bu dünyadakı istənən yerə qurulan çapçıdan istifadə\n"
+"etmək üçün ideal vasitədir və quraşdırılması çox asandır.\n"
+"Əsas quraşdırma \"pdq\" qədər asandır. Əgər bir \"lpd\" vericisini\n"
+"emulyasiya etmək istəyirsinizsə, \"cups-lpd \" demonunu başlatdığınıza\n"
+"əmin oun. .\"%s\" eyni zamanda çapçının quraşdırılması və idarəsi və çap\n"
+"üçün qrafiki ara üzlərə də sahibdir. \n"
+"Əgər indi birisini seçib sonra çap sistemini bəyənməzsəniz, onu Mandriva "
+"Linux\n"
+"İdarə Mərkəzindəki PrinterDrake bölməsindəki mütəxəssis düyməsi vasitəsiylə\n"
+"dəyişdirə bilərsiniz."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Usta"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX əvvəlcə kompüterinizdə mövcud olan bütün İDE adapterleri \n"
+"axtarmağa cəhd edəcək. Eyni zamanda sisteminizdəki PCİ SCSİ kartları\n"
+"da axtarılacaq. Əgər SCSİ kart tapılsa sürücüsü avtomatik qurulacaq\n"
+"\n"
+"Bəzən DrakX sabit disklərinizi müvəffəqiyyətlə aşkar etməyə bilər.\n"
+"Bu vəziyyətdə avadanlığınızı əllə müəyyən etməli olacaqsınız.\n"
+"\n"
+"Əgər PCİ SCSİ adapterini əllə müəyyən etsəniz DrakX sizdən onun qurğularını\n"
+"sazlamak istədiyinizi soruşacaq, sizə sisteminizdə SCSİ\n"
+"adapteri olub olmadığı soruşulacaq. İmkan verin ki, DrakX sərbəstcə özü\n"
+"xüsusiyyətləri tapsın. Çox vaxt DrakX bu addımdan müvəffəqiyyətlə\n"
+"və xətasız çıxacaq.\n"
+"Əgər DrakX avadanlığa avtomatik olaraq hansı parametrlərin yollanacağını\n"
+"tapmaq üçün seçimləri qurğulaya bilməzsə sürücünü əllə siz quraşdırmaq\n"
+"məcburiyyətində qalacaqsınız."
+
+#: ../help.pm:789
+#, fuzzy, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": əgər sisteminizdə səs kartı tapılıbsa burada göstəriləcək.\n"
+"Əgər burada göstərilən səs kartının sisteminizdəkindən fərqli olduğu\n"
+"nəzərinizə çatsa, düyməyə basıb başqa bir sürücü seçə bilərsiniz."
+
+#: ../help.pm:794
+#, fuzzy, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"İcmal olaraq, DrakX sisteminiz haqqında malik olduğu mə'lumatı göstərəcək.\n"
+"Qurulu avadanlığınıza bağlı olaraq, aşağıdakı girişlərin hamısını ya da bir "
+"neçəsi\n"
+"icmalda yer ala bilər. Hər giriş, quraşdırılan üzvdən və hazırkı qurğusunun "
+"qısa\n"
+"izahatından ibarətdir.\n"
+"Qurğunu dəyişdirmək üçün uyğun olan \"%s\" düyməsinə basın.\n"
+"\n"
+" * \"%s\": hazırkı klaviatura düzülüşünü göstərir. Lazımdırsa, bunu "
+"dəyişdirin.\n"
+"\n"
+" * \"%s\": hazırkı ölkə seçimini göstərir. Əgər bu ölkədə deyilsəniz,\"%s\"\n"
+"düyməsinə basaraq başqasını seçin. Ölkəniz siyahıda yer almırsa ölkələrin\n"
+"tam siyahısını görmək üçün \"%s\" düyməsinə basın.\n"
+"\n"
+" * \"%s\": əsasən, DrakX vaxt zolağınızı yaşadığınız ölkəyə görə müəyyən\n"
+"edir. Yalnız seçim düzgün deyilsə, \"%s\" düyməsinə basaraq onu dəyişdirə\n"
+"bilərsiniz.\n"
+"\n"
+" * \"%s\": hazırkı siçan qurğularını yoxlayın və lazımdırsa düyməyə basın.\n"
+"\n"
+" * \"%s\": \"%s\" düyməsinə basaraq çapçı quraşdırma sehirbazını işə sala\n"
+"bilərsiniz. Ətraflı mə'lumat üçün ''Başlanğıc Bələdçisi'' kitabçasının "
+"uyğun\n"
+"bölümünə baxın.\n"
+"\n"
+" * \"%s\": əgər sisteminizdə səs kartı tapılıbsa, burada göstəriləcək.\n"
+"Əgər buradakı səs kartının sisteminizdə olandan fərqli olduğu nəzərinizə\n"
+"çatarsa, düyməyə basaraq başqa sürücü seçə bilərsiniz.\n"
+"\n"
+" * \"%s\": əsasən, DrakX qrafiki ara üzünüzü \"800x600\" ya da \"1024x768\"\n"
+"həlledirliyində quraşdırır. Bu sizə uyğun deyilsə, \"%s\" düyməsinin köməyi "
+"ilə\n"
+"qrafiki ara üzünüzü yenidən quraşdıra bilərsiniz.\n"
+"\n"
+" * \"%s\": əgər sisteminizdə televiziya kartı tapılıbsa, burada "
+"göstəriləcək.\n"
+"Əgər televiziya kartınız var olub aşkar edilməyibsə, \"%s\" düyməsinə\n"
+"basaraq onu əllə quraşdırmağı sınayın.\n"
+"\n"
+" * \"%s\": əgər sisteminizdə ISDN kartı aşkar edilibsə, burada "
+"göstəriləcək.\n"
+"Kart ilə əlaqəli parametrləri dəyişdirmək üçün \"%s\" düyməsinə basa "
+"bilərsiniz.\n"
+"\n"
+" * \"%s\": əgər İnternet ya da şəbəkənizi indi quraşdırmaq istəyirsinizsə.\n"
+"\n"
+" * \"%s\": bu, əvvəlki addımda seçilən təhlükəsizlik səviyyəsini dəyişdirmə "
+"imkanı\n"
+"verir.\n"
+"\n"
+" * \"%s\": əgər İnternetə bağlanmağı fikirləşirsinizsə, sisteminizi qorumaq "
+"üçün\n"
+"atəş divarı quraşdırmaq yaxşı fikirdir. Ətraflı mə'lumat üçün ''Başlanğıc "
+"Bələdçisi''\n"
+"kitabçasının uyğun bölümünə baxın.\n"
+"\n"
+" * \"%s\": əgər açılış yükləyicisi qurğularınızı dəyişdirmək istəyirsinizsə, "
+"bu düyməyə\n"
+"basın. Bu, əsasən mütəxəssis istifadəçilər üçündür.\n"
+"\n"
+" * \"%s\": burada, sistemdə hansı xidmətlərin işləyəcəyini sazlaya "
+"bilərsiniz.\n"
+"Əgər sisteminizi verici olaraq işlətəcəksəniz, bu qurğuları gözdən keçirin."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN kartı"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Qrafiki Ara Üz"
+
+#: ../help.pm:861
+#, fuzzy, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Yeni Mandriva Linux'izi qurmaq üçün silmək istədiyiniz sürücünü seçin.\n"
+"Diqqətli olun, sürücüdəki bütün mə'lumatlar silinəcək\n"
+"və geri gəlməyəcək!"
+
+#: ../help.pm:866
+#, fuzzy, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Sürücüdəki bütün mə'lumatları və bölmələri silmək üçün\n"
+"\"%s\" düyməsinə basın. Diqqətli olun,\"%s\" düyməsinə basdıqdan sonra\n"
+"Windows mə'lumatları də daxil olmaq üzərə bütün bölmə mə'lumatı geri\n"
+"dönməyəcək şəkildə silinəcək.\n"
+"\n"
+"Bölmədəki mə'lumatları qorumaq üçün və əməliyyatı ləğv etmək üçün \"%s\" "
+"düyməsinə basın."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Sonrakı ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Əvvəlki"
+
diff --git a/perl-install/install/help/po/be.po b/perl-install/install/help/po/be.po
new file mode 100644
index 000000000..681952245
--- /dev/null
+++ b/perl-install/install/help/po/be.po
@@ -0,0 +1,1108 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 1999 Mandriva.
+# Alexander Bokovoy <ab@avilink.net>, 2000
+# Maryia Davidouskaia <maryia@scientist.com>, 2000
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
+"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
+"Language-Team: be\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+
+#: ../help.pm:54
+#, fuzzy, c-format
+msgid "Do you want to use this feature?"
+msgstr "Вы жадаеце выкарыстоўваць aboot?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+
+#: ../help.pm:149 ../help.pm:591
+#, fuzzy, c-format
+msgid "Upgrade"
+msgstr "Аркады"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "With basic documentation"
+msgstr "Аўтэнтыфікацыя"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr ""
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+
+#: ../help.pm:183
+#, fuzzy, c-format
+msgid "Automatic dependencies"
+msgstr "Аўтаматычнае вызначэнне"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, fuzzy, c-format
+msgid "Automatic time synchronization"
+msgstr "Аўтаматычнае вызначэнне"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+
+#: ../help.pm:377
+#, fuzzy, c-format
+msgid "Use existing partition"
+msgstr "Выкарыстоўваць існуючы раздзел"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Сцёрці дадзеныя на ўсім дыску"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+
+#: ../help.pm:412
+#, fuzzy, c-format
+msgid "Generate auto-install floppy"
+msgstr "Стварэнне дыскеты для ўсталявання"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+
+#: ../help.pm:461
+#, fuzzy, c-format
+msgid "Security Administrator"
+msgstr "Сістэмнае адміністраваньне"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr ""
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Звычайны рэжым"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, fuzzy, c-format
+msgid "Espanol"
+msgstr "Эсперанто:"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr ""
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, fuzzy, c-format
+msgid "authentication"
+msgstr "Аўтэнтыфікацыя"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr ""
+
+#: ../help.pm:768
+#, fuzzy, c-format
+msgid "Expert"
+msgstr "/Графік"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "ISDN card"
+msgstr "Унутраная ISDN карта"
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "Graphical Interface"
+msgstr "Запуск X пры старце сістэмы"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Далей ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- прылада"
+
diff --git a/perl-install/install/help/po/bg.po b/perl-install/install/help/po/bg.po
new file mode 100644
index 000000000..3c1d84745
--- /dev/null
+++ b/perl-install/install/help/po/bg.po
@@ -0,0 +1,1633 @@
+# translation of DrakX-bg.po to Bulgarian
+# Copyright (C) 2000,2003 Free Software Foundation, Inc.
+# Copyright (c) 2000 Mandriva
+# Bozhan Boiadzhiev <bozhan@plov.omega.bg>, 2000.
+# Borislav Aleksandrov <B.Aleksandrov@cnsys.bg>, 2003.
+# Boyan Ivanov <boyan17@bulgaria.com>, 2003.
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-bg\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2004-09-15 13:27+0200\n"
+"Last-Translator: Boyan Ivanov <boyan17@bulgaria.com>\n"
+"Language-Team: Bulgarian <dict@linux.zonebg.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.0.2\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+
+#: ../help.pm:14
+#, fuzzy, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Преди да продължите, трябва внимателно да прочетете условията на лиценза. "
+"Той\n"
+"покрива цялата Mandriva Linux дистрибуция, и, ако сте съгласни с всички "
+"условия\n"
+"в него, сложете отметка на \"%s\".Ако не сте съгласни,просто спрете "
+"компютъра си."
+
+#: ../help.pm:20
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux е многопотребителска система, която означава, че всеки потребител "
+"може\n"
+"да има свои предпочитания, файлове и т.н.. можете да прочетете Ръководството "
+"на\n"
+"Потребителя, за да научите повече.\n"
+"За разлика от Root, който е администраторът, потребителите, които ще "
+"добавите тук\n"
+"няма да могат да променят нищо освен собствените си файлове и техните "
+"настройки.\n"
+"Ще трябва да създадете поне един обикновен потребител за себе си.\n"
+"С този акаунт ще трябва да влизате за рутинна дейност. Въпреки това "
+"практиката\n"
+"да влизате като root ежедневно, може да бъде много опасна ! И най-малката "
+"грешка\n"
+"може да означава, че системата ви няма да работи повече. Ако направите някоя "
+"сериозна\n"
+"грешка като потребител, това може са да доведе до загуба на част от "
+"информацията,\n"
+"но не и на цялата система.\n"
+"\n"
+"Първо, трябва да си въведете името. Това не е задължително, разбира се, "
+"всъщност\n"
+"можете да въведете каквото и да е. DrakX след това ще избере първата "
+"въведена\n"
+"в кутийката дума и ще го изкара като потребителско име. Това е името, с "
+"което\n"
+"всъщност определеният потребител ще влиза в системата. Можете да го "
+"промените.\n"
+"Трябва да въведете и парола тук. Паролата на непревилегирован (обикновен) "
+"потребител\n"
+"не е толкова фатална като тази на Root от гледна точка на сигурността, но "
+"все\n"
+"пак няма причина да я подценявате, тъй като рискувате файловете си.\n"
+"\n"
+"След като цъкнете на \"Приеми потребител\", можете да добавите колкото си "
+"искате.\n"
+"Добавете по един потребител за всеки от приятелите си: баща си, сестра си, "
+"например.\n"
+"Когато сте добавили всички потребители, които искате, цъкнете Готово.\n"
+"\n"
+"Цъкнете на бутона \"Напредничав\", за да промените обвивката по подразбиране "
+"на\n"
+"потребителя (bash по подразбиране)."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Искате ли да използвате тази особеност?"
+
+#: ../help.pm:57
+#, fuzzy, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"По-горе са изброени засечените Linux дялове съществуващи\n"
+"на твърдия ви диск. Можете да запазите избора направен от магьосника, те са\n"
+"добри за обща употреба. Ако ги промените, трябва да поне да определите\n"
+"root дял (\"/\"). Не избирайте прекалено малки дялове, защото няма да "
+"можете\n"
+"да инсталирате достатъчно софтуер. Ако искате да съхранявате данните си на\n"
+"отделен дял, трябва да изберете \"/home\" (възможно е само, ако имате "
+"повече\n"
+"от един Linux дял).\n"
+"\n"
+"\n"
+"За информация, всеки дял е показан, както следва: \"Име\", \"Капацитет\".\n"
+"\n"
+"\n"
+"\"Името\" се кодира както следва: \"тип на диска\", \"номер на диска\",\n"
+"\"номер на дял\" (например, \"hda1\").\n"
+"\n"
+"\n"
+"\"Типът на диска\" може да е \"hd\", ако е IDE твърд диск, или \"sd\", ако "
+"е\n"
+"SCSI твърд диск.\n"
+"\n"
+"\n"
+"\"Номерът на диска\" винаги е буквата след \"hd\" или \"sd\". При IDE "
+"дискове:\n"
+"\n"
+" * \"a\" означава \"master диск на първия IDE контролер\",\n"
+" * \"b\" означава \"slave диск на първия IDE контролер\",\n"
+" * \"c\" означава \"master диск на втория IDE контролер\",\n"
+" * \"d\" означава \"slave диск на втория IDE контролер\".\n"
+"\n"
+"\n"
+"При SCSI устройства, \"a\" означава \"първи твърд диск\", \"b\" означава "
+"\"втори твърд диск\" и т.н.."
+
+#: ../help.pm:88
+#, fuzzy, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Инсталацията на Mandriva Linux е разположена на няколко CDROM-а. DrakX\n"
+"знае дали избран пакет не се намира на друг CDROM,така че ще извади "
+"текущото\n"
+"CD и ще ви остави да вкарате това, от което има нужда."
+
+#: ../help.pm:95
+#, fuzzy, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Сега е моментът да определите кои програми искате да бъдат инсталирани на\n"
+"системата ви. В Mandriva Linux дистрибуцията има хиляди пакети, но не е\n"
+"задължително да ги знаете наизуст.\n"
+"\n"
+"Ако извършвате стандартна инстлация от CDROM, първо ще бъдете попитани кои\n"
+"CD-та имате (в Експертен режим). Проверете заглавията на CD-тата и посочете\n"
+"кутийките съответстващи на CD-тата, с които разполагате. Цъкнете \"OK\",\n"
+"когато сте готови да продължите.\n"
+"\n"
+"Пакетите са подредени в групи съответстващи на практическата употреба на\n"
+"машината ви. Групите, сами по себе си, са подредени в четири секции:\n"
+"\n"
+" * \"Работна станция\": ако смятате да използвате машината си като работна "
+"станция,\n"
+"изберете една или повече съответните групи.\n"
+"\n"
+" * \"Разработка\": ако машината ви ще бъде използване за програмиране, "
+"изберете\n"
+"желаната(ите) група(и).\n"
+"\n"
+" * \"Сървър\": накрая, ако машината ви ще бъде използвана за сървър, ще\n"
+"можете да изберете кои от най-често използваните услуги искате да имате\n"
+"инсталирани на машината.\n"
+"\n"
+" * \"Графична среда\": тук можете да изберете предпочитаната графична "
+"среда.\n"
+"Поне една трябва да бъде избрана, ако искате да имате графична среда !\n"
+"\n"
+"Премествайки курсора на мишната над името на групата, ще видите кратък\n"
+"обясненителен текст за нея.\n"
+"\n"
+"Можете да цъкнете кутийката \"Индивидуален избор на пакети\", която е "
+"полезна,\n"
+"ако сте запознати с пакетите, които ще ви бъдат предложени или ако искате "
+"да\n"
+"имате пълен контрол над това, което да бъде инсталирано.\n"
+"\n"
+"Ако сте започнали инсталацията в режим на \"Обновяване\", можете да "
+"изключите\n"
+"всички групи, за да избегнете инсталирането на нови пакети. Това е полезно\n"
+"при поправка или обновяване на съществуващата система."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Обновяване"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "С базова документация"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Наистина минимална инсталация"
+
+#: ../help.pm:152
+#, fuzzy, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Накрая, в зависимост от избора ви дали да избирате пакети един по един, ще\n"
+"ви бъде представено дърво съдържащо всички пакети подредени по групи и\n"
+"подргрупи. Докато обхождате дървото, можете да изберете цели групи, "
+"подгрупи\n"
+"или отделни пакети.\n"
+"\n"
+"Когато посочите пакет от дървото, ще се появи описание вдясно. Когато\n"
+"изборът е приключен, цъкнете бутона \"Инсталирай\", който ще пусне процеса\n"
+"на инсталация. В зависимост от скоростта на хардуера ви и броя на пакетите,\n"
+"които искате да бъдат инсталирани, процесът може да отнеме известно време.\n"
+"Очакваното време за приключване на процеса, че бъде показано на екрата, за\n"
+"да ви помогне да прецените дали имате достатъчно време да се насладите на\n"
+"чаша кафе.\n"
+"\n"
+"!! Ако е избран сървърен пакет, било то умишлено или защото е част от цяла\n"
+"група, ще бъдете помолени за потвърждение, че наистина искате този сървър\n"
+"да бъде инсталиран. В Mandriva Linux, всички сървъри тръгват по "
+"подразбиране\n"
+"при зареждане.Даже ако са сигурни и нямат известни проблеми, когато\n"
+"дистрибуцията се разпространява, може да се случи така, че да се появят\n"
+"дупки в сигурността, след като версията на Mandriva Linux е завършена. Ако\n"
+"не знаете за какво служи определена услуга или защо е инсталирана, цъкнете\n"
+"\"Не\". С цъкане на \"Да\" ще инсталирате изброени услуги и те ще бъдат\n"
+"стартирани автоматично по подразбиране. !!\n"
+"\n"
+"Опцията \"Автоматични зависимости\" изключва предупредителните диалози,\n"
+"когато инсталаторът авоматично реши избере пакет. Това се случва, защото\n"
+"е решил, че се нуждае да задоволи зависимост с друг пакет, за да приключи\n"
+"успешно инсталацията.\n"
+"\n"
+"Малката иконка на дискетка в дъното на списъка позволява да заредите списък\n"
+"с пакети от предишна инсталация. Ако цъкнете на тази иконка, ще бъдете\n"
+"помолени да вкарате дискета създадена преди това в края на друга "
+"инсталация.\n"
+"Вижте втората подсказка по време на последната стъпка, за това как да\n"
+"създадете такава дискета."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr ""
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Сега можете да изберете кои услуги да се пускат при стартиране.\n"
+"\n"
+"Тук са представени всички услуги, достъпни с настоящата инсталация.\n"
+"Прегледайте ги внимателно и изключете тези, които не ви трябват винаги при "
+"стартиране.\n"
+"\n"
+"Можете да видите кратък обяснителен текст за услугата, като поставите курора "
+"на мишката си\n"
+"над името на услугата. Ако не сте сигурни, дали услугата е полезна или не, "
+"по-добре\n"
+"е да оставите избора по подразбиране.\n"
+"\n"
+"Внимавайте с тази стъпка, ако смятате да използвате машината си като "
+"сървър:\n"
+"сигурно не бихте искали да пускате услуги, от които не се нуждаете. Моля,\n"
+"запомнете, че някои услуги могат да бъдат опасни, ако са включени на "
+"сървъра.\n"
+"По принцип, избирайте само услугите, от които наистина се нуждаете.\n"
+"!!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Автоматична синхронизация на времето"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, fuzzy, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Накрая, ще бъдете попитани дали искате да виждате графичния интерфейс при\n"
+"зареждане. Отбележете, че този въпрос ще ви бъде зададен даже ако изберете,\n"
+"да не тествате настройката. Очевидно, бихте отговорили с \"Не\", ако "
+"машината\n"
+"ще работи като сървър или ако няма успешно настроен дисплей."
+
+#: ../help.pm:319
+#, fuzzy, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"В този момент трябва изберете къде на твърдия си диска да инсталирате "
+"вашата\n"
+"Mandriva Linux операционна система. Ако твърдият ви диск е празен или друга\n"
+"операционна система използва цялото пространство, ще трябва да го "
+"разделите.\n"
+"Казано простичко, разделянето на твърдия диск се състои в логическо "
+"разделяне\n"
+"цел да се създаде място за инсталация на новата Mandriva Linux система.\n"
+"\n"
+"Тъй като процесът на разделяне обикновено е необратим, разделянето може да\n"
+"изглежда плашещ и стряскащ, ако сте неопитен потребител. Слава Богу, има\n"
+"магьосник, който опростява този процес. Преди да започнете, консултирайте "
+"се\n"
+"с ръководството и не бързайте.\n"
+"\n"
+"Ако пускате инсталацията в Експертен режим, ще бъдете въведени в DiskDrake,\n"
+"разделящия инструмент на Mandriva Linux, който ви позволява да донастроите\n"
+"дяловете си. Вижте главата DiskDrake от ръководството. От инсталационния\n"
+"интерфейс можете да използвате магьосниците, като натиснете бутона\n"
+"\"Магьосник\" на диалога.\n"
+"\n"
+"Ако дяловете са вече определени, дали от предишна инсталация или от друг\n"
+"иструмент за разделяне, просто изберете на кой да инсталирате Linux\n"
+"системата.\n"
+"\n"
+"Ако дяловете не са определени, ще трябва да създадете такива използвайки\n"
+"магьосника. В зависимост от настройката на твърдия диск, са възможни "
+"няколко\n"
+"опции:\n"
+"\n"
+" * \"%s\" тази опция просто ще доведе до автоматично поделяне на празното "
+"пространство на твърдия ви диск. Няма да бъдете питани за това.\n"
+"\n"
+" * \"%s\": магьосникът е засякъл един или повече\n"
+"съществуващи Linux дялове на твърдия ви диск. Ако искате да ги използвате,\n"
+"изберете тази опция.\n"
+"\n"
+" * \"%s\": ако имате инсталиран\n"
+"Microsoft Windows на твърдия си диск и той заема цялото достъпно\n"
+"пространство на него, трябва да освободите място за Linux данни. За да\n"
+"направитетова, можете да изтриете Microsoft Windows дяла и данните (вижте\n"
+"решенията \"Изтрий целия диск\" или \"Екпертен режим\") или да промените\n"
+"големината на Microsoft Windows дяла. Промяната на големината може да бъде\n"
+"извършена без загуба на данни. Това решение се препоръчва, ако искате\n"
+"едновременно Mandriva Linux и Microsoft Windows на един и същи компютър.\n"
+"\n"
+" Преди да изберете тази опция, моля, разберете, че след тази процедура,\n"
+"големината на Microsoft Windows дяла ще бъде по-малка, отколкото преди "
+"това.\n"
+"Ще имате по-малко място под Microsoft Windows за съхраняване на данни или "
+"за\n"
+"инсталира на нов софтуер.\n"
+"\n"
+" * \"%s\": ако искате да изтриете всички данни и дялове, които\n"
+"съществуват на вашия твърд диск и да ги замените с новата Mandriva Linux\n"
+"система, изберете тази опция. Бъдете внимателни с това решения, защото няма\n"
+"да можете да върнете обратно избора си, след като потвърдите.\n"
+"\n"
+" !! Ако изберете тази опция, всички данни на диска ви ще бъдат "
+"загубени !!\n"
+"\n"
+" * \"%s\": Това просто ще изтрие всичко на диска и ще започне на\n"
+"чисто, разделяне от раз. Всякакви данни на диска ви ще бъдат загубени.\n"
+"\n"
+" !! Ако изберете тази опция, всички данни на диска ви ще бъдат "
+"загубени !!\n"
+"\n"
+" * \"%s\": изберете тази опция, ако искате ръчно да разделите\n"
+"твърдия си диск. Бъдете внимателни - това е мощен, но опасен избор. Можете\n"
+"много лесно да загубите всички данни. Така че не избирайте това, ако не\n"
+"знаете какво правите."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Изпозване на съществуващ дял"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Изтрий целия диск"
+
+#: ../help.pm:380
+#, fuzzy, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"А така ! Инсталацията е завършена и GNU/Linux системата ви е готова за\n"
+"употреба. Просто цъкнете \"OK\", за да рестартирате системата. Можете да\n"
+"стартирате GNU/Linux или Windows, което предпочитате (ако имате две "
+"системи),\n"
+"веднага след като компютърът стартира отново.\n"
+"\n"
+"Бутона \"Напредничав\" (само в \"Експертен\") показва още два бутона за:\n"
+"\n"
+" * \"генериране на дискета за автоматична инсталация\": за да създадете\n"
+"инсталационна дискета, която след това автоматично да изчършва цялата\n"
+"инсталация без помощта на оператор, приличаща на инсталацията, която току-"
+"що\n"
+"сте извършили.\n"
+"\n"
+" Отбележете, че две различни опции са достъни, чрез цъкане на бутона:\n"
+"\n"
+" * \"Преиграй\". Това е частично автоматизирана инсталация като стъпките\n"
+"по разделяне на дялове остават интерактивни.\n"
+"\n"
+" * \"Автоматична\". Напълно автоматична инсталация: твърдият диск се\n"
+"презаписва напълно, всякакви данни се загубват.\n"
+"\n"
+" Тази особеност е много удобна, когато инсталирате голям брой подобно\n"
+"машини. Вижте секцията за автоматична инсталация на нашия web-сайт.\n"
+"\n"
+" * \"Запази избора на пакети\"(*): запазва избора на пакети, така както "
+"е\n"
+"направен преди. Когато правите друга инсталация, вкарайте дискетата в\n"
+"устройството и пуснете инсталацията да върви чрез помощния екран, като\n"
+"натиснете клавиша [F1] и като напишете >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) Трябва ви FAT-форматирана дискета (за да създадете таква под GNU/Linux,\n"
+"напишете \"mformat a:\")"
+
+#: ../help.pm:412
+#, fuzzy, c-format
+msgid "Generate auto-install floppy"
+msgstr "Подготвя дискета за автоматична инсталация"
+
+#: ../help.pm:415
+#, fuzzy, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Всички новодефинирани дялове трябва да бъдат форматирани, за да се "
+"използват\n"
+"(форматиране означава създаване на файлова система).\n"
+"\n"
+"В този момента може би искате да преформатирате някои съществуващи дялове, "
+"за\n"
+"да изтриете всякакви данни, които съдържат. Ако искате да го направите, "
+"моля\n"
+"изберете тях.\n"
+"\n"
+"Моля, отбележете, че не е необходимо да преформатирате всички дялове\n"
+"съществуващи отпреди. Трябва да преформатирате дяловете съдържащи\n"
+"операционната система (като \"/\", \"/usr\" или \"/var\"), но това не е\n"
+"задължително за дялове съдържащи данни, които искате да запазите "
+"(обикновено\n"
+"\"/home\").\n"
+"\n"
+"Моля, бъдете внимателни, когато избирате дяловете. След форматиране всички\n"
+"данни на посочените дялове ще бъдат изтрити и няма да можете да ги\n"
+"възстановите.\n"
+"\n"
+"Цъкнете \"OK\", когато сте готови да форматирате далове.\n"
+"\n"
+"Цъкнете \"Отказ\", ако искате да изберете други дялове за инсталация на "
+"новата\n"
+"си Mandriva Linux операционна система.\n"
+"\n"
+"Цъкнете \"Напредничав\", ако искате да изберете дялове, които да бъдат\n"
+"проверени за лоши блокове от диска."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, fuzzy, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"В този момент, трябва да изберете нивото на сигурност, което искате за\n"
+"машината. По правило, колкото повече машината ви е достъпна и колкото "
+"повече\n"
+"данни се съхраняват на нея, толкова по-високо трябва да е нивото на "
+"сигурност.\n"
+"Въпреки това, високата сигурност е за сметка на лекотата на работа.\n"
+"Обърнете се към главата MSEC на Reference Manual, за да получите повече "
+"информация\n"
+"за значението на тези нива.\n"
+"\n"
+"Ако не знаете както да изберете, изберете опцията по подразбиране."
+
+#: ../help.pm:461
+#, fuzzy, c-format
+msgid "Security Administrator"
+msgstr "Администратор по защита:"
+
+#: ../help.pm:464
+#, fuzzy, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"В този момент трябва да изберете кой дялове да бъдат използвани за "
+"инсталация\n"
+"на вашата Mandriva Linux система. Ако дяловете вече са определени, дали от\n"
+"предишна инсталация на GNU/Linux или от друг инструмент за разделяне, "
+"можете\n"
+"да използвате съществуващите далове. В противен случай трябва да определите\n"
+"дялове от твърдия диск.\n"
+"\n"
+"За да създадете дялове, трябва първо да изберете твърд диск. Можете да\n"
+"изберете диск за разделяне, като цъкнете на \"hda\" за първо IDE "
+"устройство,\n"
+"\"hdb\" за второто, \"sda\" за първо SCSI устройство и т.н..\n"
+"\n"
+"За да разделите избрания твър диск, можете да използвате следния опции:\n"
+"\n"
+" * \"Изчисти всичко\": тази опция изтрива всички дялове на избрания диск.\n"
+"\n"
+" * \"Автоматично създаване\": тази опция позволява автоматично да съзадете\n"
+"Ext2 и swap дялове в свободното пространство на твърдия ви диск.\n"
+"\n"
+" * \"Спаси таблицата с дялове\": ако таблицата с дялове е повредена, можете\n"
+"да се опитате да я възстановите с тази опция. Моля, бъдете внимателни и\n"
+"помнете, че може да не стане.\n"
+"\n"
+" * \"Върни\": използвайте тази опция, за да отмените промените.\n"
+"\n"
+" * \"Презареди\": можете да използвате тази опция, ако искате да върнете\n"
+"всички промени и да заредите първоначалната таблица с дялове.\n"
+"\n"
+" * \"Магьосник\": използвайте тази опция, ако искате да използвате "
+"магьосник,\n"
+"да раздели твърдия ви диск. Това се препоръчва, ако нямате достатъчно "
+"познания\n"
+"за разделянето.\n"
+"\n"
+" * \"Възстанови от дискета\": тази опция ще ви позволи да възстановите "
+"запазена\n"
+"преди това на дискета таблица с дялове.\n"
+"\n"
+" * \"Запази на дискета\": запазва таблицата с дялове на дискета. Полезно е "
+"при\n"
+"евентуално възстановяване на таблицата при необходимост. Силно се "
+"препоръчва\n"
+"да направите това.\n"
+"\n"
+" * \"Готово\": когато сте свършили с разделянето на твърдия си диск, това "
+"ще\n"
+"запише промените върху диска.\n"
+"\n"
+"Забележета: можете да достигнете всяка опция използвайки клавиатурата.\n"
+"Минавайте през дяловете използвайки [Tab} и стрелките нагоре/надолу.\n"
+"\n"
+"Когато е избран дял, можете да използвате:\n"
+"\n"
+" * Ctrl-c, за да създадете нов дял (ако е избран празен дял);\n"
+"\n"
+" * Ctrl-d, за да изтриете дял;\n"
+"\n"
+" * Ctrl-m, за да установите точка на монтиране.\n"
+"\n"
+"Ако инсталите на PPC машина, сигурно ще искате да създадете малък HFS\n"
+"\"bootstrap\" дял от поне 1 МБ, който ще бъде използват от boot loader-ът\n"
+"yaboot. Ако смятате да направите дяла по-голям, например 50 МБ, можете да "
+"го\n"
+"намерите за полезно място, където да съхранявате някое ядро или image на\n"
+"ramdisk в случай на извънредни ситуации."
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Removable media auto-mounting"
+msgstr "Автоматично монтиране на сменяем носител"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Премини в нормален/експертен режим"
+
+#: ../help.pm:536
+#, fuzzy, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Беше засечен повече от един Microsoft Windows дял\n"
+"на твърдия ви диска. Изберете този, чиято дължина искате да промените, за "
+"да\n"
+"инсталирате Mandriva Linux операционна система.\n"
+"\n"
+"\n"
+"За информация, всеки дял е изброен както следва: \"Linux име\", \"Windows име"
+"\", \"Капацитет\".\n"
+"\n"
+"\"Linux името\" се кодира както следва: \"тип на диска\", \"номер на диска"
+"\",\n"
+"\"номер на дял\" (например, \"hda1\").\n"
+"\n"
+"\n"
+"\"Типът на диска\" може да е \"hd\", ако е IDE твърд диск, или \"sd\", ако "
+"е\n"
+"SCSI твърд диск.\n"
+"\n"
+"\n"
+"\"Номерът на диска\" винаги е буквата след \"hd\" или \"sd\". При IDE "
+"дискове:\n"
+"\n"
+" * \"a\" означава \"master диск на първия IDE контролер\",\n"
+" * \"b\" означава \"slave диск на първия IDE контролер\",\n"
+" * \"c\" означава \"master диск на втория IDE контролер\",\n"
+" * \"d\" означава \"slave диск на втория IDE контролер\".\n"
+"\n"
+"\n"
+"При SCSI устройства, \"a\" означава \"първи твърд диск\", \"b\" означава "
+"\"втори твърд диск\" и т.н..\n"
+"\n"
+"\"Windows името\" е буквата на твърдия ви диск под Windows (първият диск "
+"или\n"
+"дял се нарича \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, fuzzy, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Обикновено, DrakX би трябвало да избере правилната за вас клавиатура (в "
+"зависимост\n"
+"от езика, който сте избрали) и няма да се наложи да видите тази стъпка. "
+"Обаче може да\n"
+"нямате клавиатура съответстваща точно на вашия език: например, ако сте "
+"англоговорящ швед,\n"
+"може би ще искате клавиатурата ви да бъде шведска. Или ако говорите "
+"английски, но сте\n"
+"в Квебек, може би ще сте в същата ситуация. И в двата случая, ще трябва да "
+"се върнете\n"
+"към тази инсталационна стъпка и да изберете правилната клавиатура от "
+"списъка.\n"
+"\n"
+"Всичко, което трябва да направите, е да посочите предпочитаната клавиатурна "
+"наредба\n"
+"от списъка, който ще се появи пред вас.\n"
+"\n"
+"Ако имате клавиатура от език различен от този използван по подразбиране, "
+"цъкнете\n"
+"на бутона \"Напредничав\". Ще ви бъде предоставен пълен списък с "
+"поддържаните клавиатури."
+
+#: ../help.pm:612
+#, fuzzy, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Моля, цъкнете на предпочитания език на инсталация и системна употреба.\n"
+"\n"
+"Цъкането на бутона \"Напредничав\" ще ви позволи да изберете други езици\n"
+"да бъдат инсталирани на работната ви станция. Избирането на други езици\n"
+"ще инсталира файлове специвични за езиците за системна документация и\n"
+"приложения. Например, ако имате потребители от Изпания на машината си,\n"
+"изберете английски като главен език в дървовидната форма и в секция\n"
+"\"Напредничав\" цъкнете на сивата звезда съответстваща на\n"
+"\"Испански|Испания\".\n"
+"Отбележете, че могат да бъдат инсталирани няколко езика. Веднъж избран\n"
+"някакъв локал, цъкнете бутона \"OK\", за да продължите."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr ""
+
+#: ../help.pm:653
+#, fuzzy, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"По подразбиране, DrakX предполага че имате двубутонна мишка и ще включи\n"
+"симулиране на три бутона. DrakX автоматично разбира дали е PS/2, серийна "
+"или\n"
+"USB мишка.\n"
+"\n"
+"Ако искате да определите друг тип на мишката, изберете подходящ от списъка,\n"
+"който ще ви бъде представен.\n"
+"\n"
+"Ако изберете мишка различна от тази по подразбиране, ще ви бъде предоставен\n"
+"екран за проба. Използвайте бутоните и колелцето, за да проверите, че\n"
+"настройката е дора. Ако мишката не работи, както трябва, натиснете интервал\n"
+"или СЕ ВЪРНЕТЕ към \"Отказ\" и изберете пак."
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "with Wheel emulation"
+msgstr "3 бутона с емулация на колелце"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Моля, изберете верния порт. Например, портът COM1 под Windows под GNU/Linux\n"
+"се нарича ttyS0."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "идентификация"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, fuzzy, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Дойде времето да изберете система за печат за вашия компютър.Другите\n"
+"операционни системи може да ви предлагат една,но ние ви предлагаме две.\n"
+"Всяка от тях е пригодена за даден тип конфигурация.\n"
+"\n"
+" * \"%s\"-- е акроним на \"print,do not queue\"(\"пачатай,не чакай\"),е "
+"идеалният\n"
+"избор,ако имате директна връзка с принтера,искате да го контролирате,или\n"
+"нямате мрежови принтери.(\"%s\" може да работи само в много прости\n"
+"ситуации и е някак бавен,когато се ползва в мрежа.) Препоръчително е да \n"
+"изполвате \"pdq\" ако нямате опит с GNU/Linux. \n"
+" * \"%s\" - `` Common Unix Printing System``(обичайна система за печат за "
+"Unix)\n"
+"е отличен избор,за печат както на собствения ви принтер,така и на друг,на\n"
+"половин свят разстояние.Тя е лесна за конфигуриране и може работи като\n"
+"клиент или сървър на архаичната\"lpd \",което я прави напълно съвместима\n"
+"с по-стари операционни системи,които може все още да се нуждаят от тази\n"
+"услуга.Въпреки че е доста мощна,основната инсталация е почти толкова \n"
+"лесна,колкото и тази на \"pdq\".Ако искате да емулирате \"lpd\" сървър,\n"
+"уверете се,че \"cups-lpd\" демона е пуснат.\"%s\" включва графични \n"
+"интерфейси за пречат и избор на опции за принтера,както и за\n"
+"конфигурирането му.\n"
+"\n"
+"Ако сега направите избор,а по-късно разберете,че не харесвате системата\n"
+"си за печат,можете да я смените като пуснете PrinterDrake от Мандрива "
+"линукс \n"
+"контролия център и цъкнете на \"експерт\"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Трудно"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+
+#: ../help.pm:789
+#, fuzzy, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\"ако намеря звукова карта,ще видите съобщение за това.\n"
+"Ако забележите,че намерената звукова карта не отговаря на истината,\n"
+"можете да цъкнете на бутона и да изберете друг драйвер."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN карта"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Графичен интерфейс"
+
+#: ../help.pm:861
+#, fuzzy, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Изберете твърдия диск, който искате да изтриете, за да\n"
+"инсталирам новия ви Mandriva Linux дял. Внимание, всички данни на него ще "
+"бъдат загубени\n"
+"и няма да могат да се възстановят."
+
+#: ../help.pm:866
+#, fuzzy, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Цъкнете на \"%s\", ако искате да изтриете всички данни и\n"
+"дялове съществуващи на този твърд диск. Внимание, след цъкане на \"%s\", "
+"няма да можете да възстановите каквито и да било данни и дялове съществуващи "
+"на този твърд диск,\n"
+"включително каквито и да е Windows данни.\n"
+"\n"
+"Цъкнете \"%s\", за да отмените тази операция без загуба да данните и\n"
+"дяловете съществуващи на този твърд диск."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Следващ ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Предишен"
+
diff --git a/perl-install/install/help/po/bn.po b/perl-install/install/help/po/bn.po
new file mode 100644
index 000000000..608c3b016
--- /dev/null
+++ b/perl-install/install/help/po/bn.po
@@ -0,0 +1,1510 @@
+# Copyright (C) 2004 Free Software Foundation, Inc.
+# Omi Azad <omi@altruists.org>, 2004.
+# Khandakar Mujahidul Islam <suzan@BengaLinux.Org>, 2004.
+# Progga <progga@BengaLinux.Org>, 2004.
+# Jamil Ahmed <jamil@BengaLinux.Org>, 2004, 2005.
+# Samia <mailsamia2001@yahoo.com>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX HEAD\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-03-19 23:18+0600\n"
+"Last-Translator: Samia <mailsamia2001@yahoo.com>\n"
+"Language-Team: Bangla <mdk-translation@bengalinux.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"চালিয়ে যাওয়ার আগে, লাইসেন্সের শর্তগুলো আপনার সাবধানতার পড়া উচিত। এটা সম্পূর্ণ\n"
+"ম্যান্ড্রিব লিনাক্স ডিস্ট্রিবিউশন পূর্ণ করে। যদি আপনি এখানকার সব শর্তের সাথে একমত \n"
+"থাকেন, \"%s\" বাক্সটি চেক্‌ করুন। যদি না হয়, তাহলে \"%s\" বাটনে ক্লিক \n"
+"করলে আপনার কম্পিউটার রিবুট হবে।"
+
+# সাম:
+# \"shell\" = ?
+# bash
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux একটি বহু‌-ব্যবহারকারী সিস্টেম যেখানে প্রতিটি ব্যবহারকারী নিজস্ব পছন্দ ও\n"
+"ফাইলসমূহ আলাদাভাবে রক্ষণাবেক্ষণ করতে পারে। কিন্ত এসব সংযোজিত ব্যবহারকারীরা,\n"
+"\"root\"‌ (যে কিনা সিস্টেম অ্যাডমিনিস্ট্রেটর) এর মত, তাদের নিজস্ব ফাইল ও "
+"কনফিগারেশন\n"
+"ছাড়া অন্য কিছু বদলাতে অনুমোদিত নয়। এটি সিস্টেমকে অনিচ্ছাকৃত বা অস্বাভাবিক পরিবর্তন "
+"থেকে রক্ষা করে,\n"
+"যা কিনা সম্পূর্ণ সিস্টেমের ক্ষতি করতে পারে। আপনাকে নিজের জন্য অন্তত একটি সাধারণ "
+"ব্যবহারকারী\n"
+" তৈরী করতে হবে -- যে অ্যাকাউন্টটি আপনি নিয়মিত কাজের জন্য ব্যবহার করবেন। যদিও "
+"\"root\"\n"
+" হিসেবে লগ ইন করে সব কাজই করা সম্ভব, এটি বিপদজনকও বটে! একটি ছোটখাটো ভুলের "
+"কারণে\n"
+" আপনার সম্পূর্ণ সিস্টেম অচল হয়ে যেতে পারে। একজন সাধারণ ব্যবহারকারী খুব বড় ভুল "
+"করলেও হয়ত\n"
+" কিছু তথ্য হারাতে পারে তবে সম্পূর্ণ সিস্টেমের ক্ষতি করতে পারে না।\n"
+"\n"
+"প্রথম ক্ষেত্রটিতে একটি আসল নাম দিন। তবে এটি অত্যাবশ্যকীয় নয় -- আপনি অন্য কিছুও "
+"লিখতে\n"
+"পারেন। DrakX, এর প্রথম শব্দটি নিয়ে \"%s\" এ কপি করবে, যা দিয়ে কিনা এই "
+"ব্যবহারকারী\n"
+"সিস্টেমে লগ ইন করবে। প্রয়োজন হলে আপনি ডিফল্ট নামটি বদল করতে পারেন। এরপর আপনাকে\n"
+"একটি পাসওয়ার্ড দিতে হবে। নিরাপত্তার দৃষ্টিকোণ থেকে সাধারণ ব্যবহারকারীর পাসওয়ার্ড, "
+"\"root\" এর\n"
+"পাসওয়ার্ডের মত জরুরী নয় তবে এটিকে খালি রাখা বা সহজ পাসওয়ার্ড দেয়া উচিত নয়, কারণ "
+"এতে\n"
+"আপনার ফাইলসমূহ অরক্ষিত থেকে যায়।\n"
+"\n"
+"\"%s\" তে ক্লিক করার পর আপনি আরও ব্যবহারকারী তৈরী করতে পারেন। আপনার পরিবারের\n"
+"সদস্য ও বন্ধুদের জন্য আলাদা আলাদা একাউন্ট তৈরী করুন। শেষ হলে \"%s\" ক্লিক করুন।\n"
+"\n"
+"\"%s\" বাটনে ক্লিক করে আপনি একজন ব্যবহারকারীর ডিফল্ট \"শেল\" বদল করতে পারেন\n"
+"(ডিফল্ট মান bash)।\n"
+"\n"
+"সব ব্যবহারকারী তৈরীর পর আপনাকে একটি বেছে নিতে হবে যা কিনা কম্পিউটার বুট করার "
+"পর\n"
+"স্বয়ংক্রিয়ভাবে লগইন হবে। আপনি যদি এই ফিচারে আগ্রহী হন(এবং স্থানীয় নিরাপত্তা নিয়ে "
+"বিচলিত\n"
+"না হন), তবে পছন্দনুযায়ী ব্যবহারকারী ও উইন্ডো ম্যানেজার নির্বাচন করুন এবং \"%s\" "
+"টিতে ক্লিক\n"
+"করুন। অন্যথায় \"%s\" চেকবক্সটি আনচেক করুন।"
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "এই সুবিধাটি কি আপনি ব্যবহার করতে চান?"
+
+# সাম:
+# secondary = সহকারী?
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"আপনার হার্ড ড্রাইভে বর্তমানে নিম্নলিখিত লিনাক্স পার্টিশনগুলো বিদ্যমান।\n"
+"আপনি উইজার্ড কর্তৃক বাছাইকৃত সেটিংসমূহ রাখতে পারেন কারণ বেশীরভাগ\n"
+"সাধারণ ইনস্টলেশনের ক্ষেত্রে এটিই যথেষ্ট। যদি পরিবর্তন করতে চান, আপনাকে অন্তত একটি\n"
+"রুট পার্টিশন তৈরী করতে হবে (\"/\")। পার্টিশনের সাইজ খুব ছোট না হওয়া জরুরী, কারন\n"
+"অন্যথা আপনি যথেষ্ট সফ্টওয়্যার ইনস্টল করতে পারবেন না। আপনার তথ্যসমূহ আলাদা\n"
+"পার্টিশনে রাখতে চাইলে, আপনাকে আরও একটি \"/home\" পার্টিশন তৈরী করতে হবে\n"
+"(যা কিনা একাধিক লিনাক্স পার্টিশন থাকলেই সম্ভব)।\n"
+"\n"
+"পার্টিশনগুলো তালিকায় এভাবে দেখানো হয়েছে: \"নাম\", \"ধারণক্ষমতা\".\n"
+"\n"
+"\"নাম\" এর কাঠামো হচ্ছে: \"হার্ড ড্রাইভের ধরন\", \"হার্ড ড্রাইভ নাম্বার\",\n"
+"\"পার্টিশন নাম্বার\" (যেমন, \"hda1\").\n"
+"\n"
+"যদি আপনার হার্ড ড্রাইভটি IDE হার্ড ড্রাইভ হলে \"হার্ড ড্রাইভের ধরন\" হবে \"hd\", "
+"আর\n"
+" SCSI হার্ড ড্রাইভ হলে হবে \"sd\"।\n"
+"\n"
+"\"হার্ড ড্রাইভ নাম্বার\", হচ্ছে \"hd\" বা \"sd\" এর পরের একটি অক্ষর। IDE হার্ড "
+"ড্রাইভের\n"
+"জন্য:\n"
+"\n"
+" * \"a\" অর্থ \"প্রাথমিক IDE কনট্রোলারে মাস্টার হার্ড ড্রাইভ\";\n"
+"\n"
+" * \"b\" অর্থ \"প্রাথমিক IDE কনট্রোলারে স্লেভ হার্ড ড্রাইভ\";\n"
+"\n"
+" * \"c\" অর্থ \"সহকারী IDE কনট্রোলারে মাস্টার হার্ড ড্রাইভ\";\n"
+"\n"
+" * \"d\" অর্থ \"সহকারী IDE কনট্রোলারে স্লেভ হার্ড ড্রাইভ\".\n"
+"\n"
+"SCSI হার্ড ড্রাইভের জন্য, \"a\" অর্থ \"সর্বনিম্ন SCSI ID\", \"b\" অর্থ\n"
+"\"দ্বিতীয় সর্বনিম্ন SCSI ID\", ইত্যাদি।"
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"ম্যান্ড্রিব লিনাক্স ইনস্টলেশন কয়েকটি সিডি'তে ভাগ করা থাকে। যদি একটি চিহ্নিত "
+"প্যাকেজ\n"
+"অন্য সিডি'তে থেকে থাকে, তাহলে DrakX বর্তমান সিডি'টি বের করে দেয় এবং "
+"প্রয়োজনীয়টি\n"
+"প্রবেশ করাতে জিজ্ঞেস করে। যদি এরকম অনুরোধ না আসে, তাহলে \"%s\" তে ক্লিক করুন,\n"
+"যথাযথ প্যাকেজগুলো ইনস্টল হবে না।"
+
+# সাম:
+# documentation = ডকুমেন্টেশন
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"এখন আপনাকে নির্বাচন করতে হবে আপনি কোন কোন প্রোগ্রাম সিস্টেমে ইনস্টল করতে চান।\n"
+"Mandriva Linux এর জন্য কয়েক হাজার প্যাকেজ রয়েছে, এবং ব্যাবস্থাপনার সুবিধার্থে "
+"সেগুলোকে\n"
+"অ্যাপ্লিকেশনের ধরন অনুযায়ী ভাগ করা হয়েছে।\n"
+"\n"
+"Mandriva Linux সব প্যাকেজগ্রুপসমূহ চারটি শ্রেণীতে ভাগ করে। আপনি বিভিন্ন শ্রেণীর\n"
+"অ্যাপ্লিকেশনমিলিয়ে ও মিশিয়ে ইনস্টল করতে পারেন, যেমন একটি ``Workstation''\n"
+"ইনস্টলেশনে আপনি ''Server'' শ্রেণী থেকে অ্যাপ্লিকেশন ইনস্টল\n"
+"করতে পারেন।\n"
+"\n"
+" * \"%s\": আপনি যদি আপনার মেশিনটি ওয়ার্কস্টেশন হিসেবে ব্যবহার করতে চান, "
+"Workstation''\n"
+"শ্রেণী থেকে এক বা একাধিক গ্রুপ নির্বাচন করুন।\n"
+"\n"
+" * \"%s\": আপনি যদি আপনার মেশিনটি প্রোগ্রামিংএর জন্য ব্যবহার করতে চান, সে "
+"অনুযায়ী\n"
+"গ্রুপ নির্বাচন করুন। \"LSB\" নামের বিশেষ গ্রুপটি আপনার সিস্টেমকে এমনভাবে\n"
+"কনফিগার করবে যাতে তা Linux Standard Base স্পেসিফিকেশনের সাথে যতদূর\n"
+"সম্ভব সামঞ্জস্য বজায় রাখে।\n"
+"\n"
+"\"LSB\" গ্রুপটি নির্বাচন করলে, ডিফল্ট \"2.6\" কার্নেল সিরিজের বদলে\n"
+"\"2.4\" সিরিজটি ইনস্টল হবে। এটি করা হয় সিস্টেমকে 100%%-LSB সামঞ্জস্যপূর্ণ\n"
+"করার জন্য। তবে, আপনি \"LSB\" গ্রুপটি নির্বাচন না করলেও আপনার সিস্টেম প্রায়\n"
+"100%%-LSB সামঞ্জস্যপূর্ণ হবে।\n"
+"\n"
+"* \"%s\": আপনার মেশিনটি যদি সার্ভার হিসেবে ব্যবহৃত হয়, আপনার মেশিনে কোন সাধারন\n"
+" সার্ভিসসমূহ ইনস্টল করতে চান তা নির্বাচন করুন।\n"
+"\n"
+" * \"%s\": এখানে আপনার পছন্দ অনুযায়ী গ্রাফিক্যাল প্রতিবেশ নির্বাচন\n"
+"করুন। আপনি যদি গ্রাফিক্যাল ইন্টারফেস ব্যবহার করতে চান, অন্তত একটি অবশ্যই\n"
+"নির্বাচন করতে হবে।\n"
+"\n"
+"কোন গ্রুপ নামের উপর মাউস কার্সার রাখলে ঐ গ্রুপ সম্পর্কে টীকা প্রদর্শিত হবে।\n"
+"\n"
+"আপনি \"%s\" বক্সটি চেক করতে পারেন, যা কিনা প্রয়োজনীয় যদি আপনি প্যাকেজগুলো\n"
+"সম্পর্কে পরিচিত হন বা কোন কোন প্যাকেজ ইনস্টল হবে তা সম্পূর্ণভাবে নিয়ন্ত্রন\n"
+"করতে চান।\n"
+"\n"
+"\"%s\" মোডে ইনস্টলেশন শুরু করলে, আপনি সব গ্রুপ ডিসিলেক্ট করে নতুন প্যাকেজ\n"
+"ইনস্টলেশন বাতিল করতে পারেন। এটি একটি বিদ্যমান সিস্টেম মেরামত ও আপডেট\n"
+"করার জন্য প্রযোজ্য।\n"
+"\n"
+"আপনি যদি একটি সাধারণ ইনস্টলেশনের ক্ষেত্রে (আপগ্রেড নয়), সব গ্রুপ\n"
+"ডিসিলেক্ট করে থাকেন, তবে একটি পপআপ ডায়ালগে সর্বনিম্ন ইনস্টলেশনের কিছু\n"
+"অপশন পরামর্শ করা হবে:\n"
+"\n"
+"* \"%s\": একটি সক্রিয় গ্রাফিক্যাল ডেস্কটপের জন্য প্রয়োজনীয় সর্বনিম্ন প্যাকেজ ইনস্টল "
+"কর।\n"
+"\n"
+"* \"%s\": মূল সিস্টেম, প্রাথমিক ইউটিলিটিসমূহ ও তাদের ডকুমেন্টেশন ইনস্টল করে। এই "
+"ইনস্টলেশনটি সার্ভার সেটআপ করার জন্য উপযুক্ত।\n"
+"\n"
+"* \"%s\": একটি সক্রিয় Linux সিস্টেমের জন্য জরুরী সর্বনিম্ন সংখ্যক প্যাকেজ ইনস্টল করে। "
+"এ\n"
+" ইনস্টলেশনে আপনি শুধু একটি কমান্ড লাইন ইন্টারফেস পাবেন। ইনস্টলেশনে মোট সাইজ প্রায় "
+"৬৫\n"
+" মেগাবাইট।"
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "আপগ্রেড"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "সাধারণ ডকুমেন্টেশন"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "এক্কেবারেই সল্প ইনস্টলেশন"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "সয়ংক্রিয় নির্ভরতা"
+
+# sam
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": \"%s\" বাটনে ক্লিক করলে প্রিন্টার কনফিগারেশন উইজার্ড খুলবে।\n"
+"প্রিন্টার কনফিগারেশন সম্বন্ধে আরো জানতে, \"স্টার্টার গাইড\" এর যথাযথ\n"
+"অধ্যায়ের পরামর্শ নিন। আমাদের সহায়িকাতে দেখানো ইন্টারফেসটি, ইনস্টলেশনে\n"
+"ব্যবহৃত ইন্টারফেসের অনুরুপ। "
+
+# সাম
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"এই ডায়ালগটি আপনি বুট করার সময় কি কি সার্ভিস শুরু করতে চান তা নির্বাচন করার জন্য।\n"
+"\n"
+"DrakX বর্তমান ইনস্টলেশনে বিদ্যমান সব সার্ভিস দেখাবে। প্রতিটি সার্ভিস ভালভাবে দেখুন "
+"এবং\n"
+"বুটের সময় যেগুলো প্রয়োজন না হয়, সেগুলো আনচেক করুন।\n"
+"\n"
+"একটি সার্ভিস নির্বাচন করলে, সার্ভিসটি সম্পর্কে সংক্ষিপ্ত তথ্য প্রদর্শিত হবে। আপনি যদি "
+"কোন সার্ভিসের\n"
+"আবশ্যকতা সম্পর্কে নিশ্চিত না হন তবে ডিফল্ট মানে রেখে দেয়াই নিরাপদ।\n"
+"\n"
+"!! আপনি আপনার মেশিন সার্ভার হিসেবে ব্যবহার করতে চাইলে খুব সাবধান থাকবেন: আপনি "
+"অবশ্যই\n"
+"কোন অবাঞ্ছনীয় সার্ভিস চালু করতে চান না কারন কিছু সার্ভিস সার্ভারে সক্রিয় করাটা "
+"বিপদজনক।\n"
+"এক কথায়, শুধু সেসব সার্ভিসই চালু করুন যেসব আপনার প্রয়োজন। !!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "সয়ংক্রিয় সময় মেলানো"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"গ্রাফিক কার্ড\n"
+"\n"
+" সাধারণত ইনস্টলার আপনার মেশিনে ইনস্টলকৃত গ্রাফিক কার্ড স্বয়ংক্রিয়ভাবে সন্ধান করবে\n"
+"এবং কন্‌ফিগার করবে। যদি এটি সঠিক না হয়, তাহলে আপনি এই তালিকা থেকে যেই কার্ড\n"
+"আপনি ইনস্টল করেছেন সেটা বেছে নিতে পারবেন।\n"
+"\n"
+" এই অবস্থাতে যেখানে আপনার কার্ডের জন্য বিভিন্ন সার্ভার পাওয়া যায়, 3D \n"
+"acceleration সহ অথবা ছাড়া, আপনার প্রয়োজন অনুযায়ী সেরা সার্ভার বেছে নিতে\n"
+"আপনাকে জিজ্ঞেস করা হবে।"
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"মনিটর\n"
+"\n"
+" সাধারণত ইনস্টলার আপনার মেশিনে সংযুক্ত মনিটর স্বয়ংক্রিয়ভাবে সন্ধান করবে\n"
+"এবং কন্‌ফিগার করবে। যদি এটি সঠিক না হয়, তাহলে আপনি এই তালিকা থেকে যেই মনিটর\n"
+"আপনার কম্পিউটারে সংযুক্ত করেছেন সেটা বেছে নিতে পারবেন।"
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"রেজ্যুলুশন\n"
+"\n"
+" এখানে আপনার গ্রাফিক্‌স হার্ডওয়্যারের রেজ্যুলুশন এবং রংয়ের গভীরতা বেছে নিতে \n"
+"পারেন। আপনার প্রয়োজনের সাথে যেটি সবচেয়ে ভাল হয় তার যেকোন একটি বেছে নিন\n"
+"(ইনস্টলেশনের পর আপনি তা পরিবর্তন করতে সমর্থ হবেন)। বেছে নেয়া কন্‌ফিগারেশনের\n"
+"নমুনা মনিটরের ছবিতে দেখানো হচ্ছে।"
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"এই অবস্থাতে যেখানে আপনার কার্ডের জন্য বিভিন্ন সার্ভার পাওয়া যায়, 3D \n"
+"acceleration সহ অথবা ছাড়া, আপনার প্রয়োজন অনুযায়ী সেরা সার্ভার বেছে নিতে\n"
+"আপনাকে জিজ্ঞেস করা হবে।"
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"অপশন\n"
+"\n"
+" এই ধাপগুলো বুট করার সময় স্বয়ংক্রিয়ভাবে আপনি যেখানে আপনার মেশিনের গ্রাফিকাল\n"
+"ইন্টারফেস বাছাই করার অনুমতি পাবেন। সুস্পষ্টভাবেই, যদি আপনার মেশিনকে একটি সার্ভার "
+"হিসেবে\n"
+"ব্যবহার করতে চান, তাহলে আপনি \"%s\" দিয়ে পরীক্ষা করে নিতে পারেন, অথবা যদি "
+"আপনি\n"
+"সফলভাবে ডিসপ্লে কন্‌ফিগার করতে না পারেন।"
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "উপস্থিত পার্টিশন ব্যবহার করো"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "সম্পূর্ণ ডিস্ক মুছে ফেলো"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "সয়ংক্রিয়-ইনস্টল ফ্লপি তৈরী করো"
+
+# সাম
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"আপনি যদি পুরানো GNU/Linux পার্টিশন আবার ব্যবহার করতে চান, আপনি হয়ত কোন পার্টিশন "
+"নতুন করে ফরম্যাট করে পুরানো তথ্য মুছে ফেলতে চাইবেন। এটি করতে হলে, ঐ পার্টিশনগুলোও "
+"নির্বাচন করুন।\n"
+"\n"
+"মনে রাখবেন, সব পার্টিশন ফরম্যাট করা জরুরী নয়। যে পার্টিশনে অপারেটিং সিস্টেম থাকবে "
+"(যেমন \"/\", \"/usr\" বা \"/var\") সেটি অবশ্যই ফরম্যাট করতে হবে কিন্তু যেসব "
+"পার্টিশনের তথ্য আপনি সংরক্ষন করতে চান (সাধারনত \"/home\") সেগুলো ফরম্যাট করা "
+"অত্যাবশ্যকীয় নয়।\n"
+"\n"
+"পার্টিশন নির্বাচন করতে সাবধানতা অবলম্বন করবেন। ফরম্যাট করলে নির্বাচিত পার্টিশনের "
+"সব তথ্য মুছে যাবে এবং তা আর ফিরে পাওয়া যাবে না।\n"
+"\n"
+"পার্টিশন ফরম্যাট শুরু করতে \"%s\" চাপুন।\n"
+"\n"
+"আপনার নতুন Mandriva Linux অপারেটিং সিস্টেম ইনস্টেশনের জন্য আপনি যদি অন্য একটি "
+"পার্টিশন নির্বাচন করতে, তবে \"%s\" ক্লিক করুন।\n"
+"\n"
+"যদি আপনি পার্টিশনের জন্য ডিস্কের খারাপ ব্লক সনাক্ত করাতে চান তাহলে \"%s\" ক্লিক "
+"করুন।"
+
+# সাম
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"আপনি যখন Mandriva Linux ইনস্টল করবেন, সম্ভবত প্রথম রিলিজ থেকে কিছু\n"
+"প্যাকেজ আপডেট হয়ে গেছে। কোন সাধারন বা নিরাপত্তা ত্রুটি সমাধান করা হয়েছে।\n"
+"আপনাকে এই সুবিধাগুলি দেয়ার লক্ষ্যে এই আপডেটগুলো ইন্টারনেট থেকে ডাউনলোড\n"
+"করার সুযোগ দেয়া হয়েছে। যদি আপনার সক্রিয় ইন্টারনেট সংযোগ থাকে, \"%s\" চেক\n"
+"করুন, আর \"%s\" চেক করুন যদি আপাতত ইনস্টল করতে না চান।\n"
+"\n"
+"\"%s\" বাছাই করলে আপাকে কিছু ওয়েব লোকেশনের তালিকা দেয়া হবে যেখান থেকে\n"
+"আপডেট পাওয়া যাবে। আপনি আপনার কাছের একটি লোকেশন পছন্দ করুন। এরপর\n"
+"একটি প্যাকেজ নির্বাচন করার জন্য একটি ট্রী দেখানো হবে। প্যাকেজগুলো দেখুন এবং\n"
+"ডাউনলোড করে ইনস্টল করতে \"%s\" বাটন চাপুন। অথবা \"%s\" ক্লিক করে বের হয়ে আসুন।"
+
+# সাম
+# নিরাপত্তা স্তর
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"এই সময়ে DrakX আপনার মেশিনের জন্য আপনার ইচ্ছানুযায়ী নিরাপত্তা স্তর\n"
+"বেছে নেয়ার সুযোগ দেবে। সাধারন নিয়ম অনুযায়ী, যদি একটি মেশিনে জরুরী\n"
+"তথ্য থাকে বা মেশিনটি ইন্টারনেটে সংযুক্ত থাকে তবে নিরাপত্তা বাড়িয়ে দেয়া\n"
+"হয়। নিরাপত্তা যত বেশী, ব্যবহারের স্বাচ্ছন্দ্য তত কমে যায়।\n"
+"\n"
+"আপনি যদি নিশ্চিত না হন কোন অপশনটি রাখবেন তবে ডিফল্ট অপশনটিই রাখুন।\n"
+"পরবর্তীতে আপনি এটি draksec টুল (যেটি Mandriva Linux নিয়ন্ত্রন কেন্দ্রের একটি অংশ)\n"
+"দিয়ে পরিবর্তন করতে পারবেন।\n"
+"\n"
+"\"%s\" ক্ষেত্রটিতে যিনি নিরাপত্তার দায়িত্বে নিয়োজিত তার ই-মেইল অ্যাড্রেস দিন।\n"
+"নিরাপত্তা বিষয়ক বার্তাগুলো এই অ্যাড্রেসে পাঠানো হবে। "
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "সিকিউরিটি এ্যডমিনিস্ট্রেটর"
+
+# সাম
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"এই সময়ে আপনাকে Mandriva Linux যে পার্টিশনে ইনস্টল হবে তা নির্বাচন\n"
+"করতে হবে। যদি আগে থেকেই পার্টিশন তৈরী থাকে, (GNU/Linux এর পুর্বের\n"
+"কোন ইনস্টলেশনের কারনে বা অন্য কোন পার্টিশন টুল দিয়ে তৈরী করা) আপনি\n"
+"সেগুলো ব্যবহার করতে পারেন। অন্যথায় হার্ডড্রাইভ পার্টিশন তৈরী করতে হবে।\n"
+"\n"
+"পার্টিশন তৈরী করতে প্রথমে একটি হার্ডড্রাইভ নির্বাচন করুন। প্রথম পার্টিশন\n"
+"নির্বাচনের জন্য \"hda\", দ্বিতীয় পার্টিশনের জন্য \"hdb\", প্রথম SCSI ড্রাইভের\n"
+"জন্য \"sda\" ইত্যাদি ক্লিক করুন।\n"
+"\n"
+"নির্বাচিত ড্রাইভটি পার্টিশন করতে নিম্নলিখিত অপশনসমূহ ব্যবহার করুন:\n"
+"\n"
+" * \"%s\": এই অপশনটি নির্বাচিত ড্রাইভের সব পার্টিশন মুছে দিবে\n"
+"\n"
+" * \"%s\": এই অপশনটি আপনার হার্ডড্রাইভের খালি অংশে স্বয়ংক্রিয়ভাবে ext3 এবং\n"
+"swap পার্টিশন তৈরী করতে দিবে।\n"
+"\n"
+"\"%s\": আরও ফিচার ব্যবহার করার সুযোগ দেয়:\n"
+"\n"
+" * \"%s\": পার্টিশন টেবিলটি ফ্লপিতে সংরক্ষন করে যা কিনা পরবর্তীতে পার্টিশন\n"
+"টেবিল উদ্ধার করতে কাজে লাগে। এটি খুবই গুরুত্বপুর্ণ একটি ধাপ যেটি আপনার\n"
+"করা উচিত।\n"
+"\n"
+" * \"%s\": ফ্লপি ডিস্কে সংরক্ষিত পার্টিশন টেবিল এনে তা পুর্বাবস্থায় ফিরিয়ে নেয়।\n"
+"\n"
+" * \"%s\": আপনার পার্টিশন টেবিল নষ্ট হলে আপনি এই অপশনটি দিয়ে তা মেরামত\n"
+"করার চেষ্টা করতে পারেন। অনুগ্রহ করে সাবধানতা অবলম্বন করবেন এবং মনে রাখবেন\n"
+"এই প্রক্রিয়া সবসময় সফল নাও হতে পারে।\n"
+"\n"
+" * \"%s\": সব পরিবর্তন বাতিল করে দিয়ে হার্ডড্রাইভের পুর্বের মূল পার্টিশন টেবিল লোড "
+"করে।\n"
+"\n"
+" * \"%s\": এই অপশনটি অনির্বাচিত করলে, ব্যবহারকারীদের রিমুভেবল মাধ্যম যেমন\n"
+"ফ্লপি এবং CD-ROM নিজে নিজে মাউন্ট/আনমাউন্ট করার প্রায়োজন পরবে।\n"
+"\n"
+" * \"%s\": এই অপশনটি ব্যবহার করুন যদি হার্ডড্রাইভ পার্টিশন আপনি উইজার্ডের\n"
+"মাধ্যমে করতে চান। পার্টিশন সম্বন্ধে ভাল ধারনা না থাকলে এই অপশনটি পরামর্শনীয়।\n"
+"\n"
+" * \"%s\": এই অপশনটি ব্যবহার করে পরিবর্তনগুলো বাতিল করুন।\n"
+"\n"
+" * \"%s\": আপনার পার্টিশনে আরও কিছু কাজ (ধরন, অপশন ফরম্যাট) করার অপশন\n"
+"দেয় ও হার্ডড্রাইভ সম্পর্কে আরও তথ্য দেয়।\n"
+"\n"
+" * \"%s\": পার্টিশন করা শেষ হলে এই অপশন আপনার সেটিংগুলো ডিস্কে সংরক্ষণ করবে।\n"
+"\n"
+"পার্টিশনের সাইজ ঠিক করতে আপনি কীবোর্ডের তীর চিহ্নিত কীগুলো ব্যবহার করতে পারেন।\n"
+"\n"
+"দ্রষ্টব্য: আপনি যেকোন অপশন কীবোর্ড দিয়ে নির্বাচন করতে পারেন। পার্টিশন নির্বাচন\n"
+"করতে [Tab] এবং [Up/Down] তীর চিহ্নগুলো ব্যবহার করুন।\n"
+"\n"
+"যখন একটি পার্টিশন নির্বাচন অবস্থায় আছে, আপনি নিম্নলিখিত কীগুলো ব্যবহার করতে "
+"পারেন:\n"
+"\n"
+" * Ctrl-c নতুন পার্টিশন তৈরী করার জন্য (যখন একটি খালি পার্টিশন নির্বাচন করা "
+"হয়েছে)\n"
+"\n"
+" * Ctrl-d একটি পার্টিশন মুছে দিতে\n"
+"\n"
+" * Ctrl-m মাউন্ট পয়েন্ট সেট করতে\n"
+"\n"
+"বিদ্যমান ফাইল সিস্টেমের ধরন সম্পর্কে জানতে হলে \"Reference Manual\" এর\n"
+"ext2FS অধ্যায়টি পড়ুন।\n"
+"\n"
+"আপনি যদি PPC মেশিনে ইনস্টল করেন, তাহলে আপনাকে yaboot বুটলোডারের\n"
+"ব্যবহারের জন্য একটি ছোট অন্তত ১ এমবি এর HFS \"বুটস্ট্র্যাপ\" পার্টিশন তৈরী করতে "
+"হবে।\n"
+"আপনি যদি পার্টিশনটি আরও বড় করতে চান, যেমন ৫০ MB, আপনি কোন জরুরী বুট সমস্যার\n"
+"জন্য একটি আলাদা কার্নেল এবং ramdisk তৈরী করে এই পার্টিশনে রাখতে পারেন।"
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "রিমুভযোগ্য মিডিয়া সয়ংক্রিয়ভাবে মাউন্ট করা হচ্ছে"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "সাধারণ/দক্ষ মোডের মধ্যে পরিবর্তন"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": বর্তমান দেশ নির্বাচন পরীক্ষা করুন। আপনি যদি এই দেশের জন্য না হন,\n"
+"তাহলে \"%s\" বাটনে ক্লিক করুন এবং অন্য একটি বেছে নিন। যদি আপনার দেশ\n"
+"উল্লেখিত তালিকায় না থাকে, তাহলে \"%s\" বাটনে ক্লিক করে সম্পূর্ণ দেশের তালিকায় "
+"পেয়ে যান।"
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+# সাম
+# ইনস্টলেশন
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"আপনার ভাষা নির্বাচনের উপর ভিত্তি করে, DrakX স্বয়ংক্রিয়ভাবে একটি কীবোর্ড\n"
+"কনফিগারেশন বেছে নেবে। এই নির্চনটি বাঞ্ছনীয় কিনা দেখে নিন বা অন্য একটি\n"
+"লেআউট পছন্দ করুন।\n"
+"\n"
+"আপনার ভাষার সাথে সম্পূর্ন মিলিয়ে কীবোর্ড আপনি নাও পেতে পারেন:\n"
+"যেমন যদি আপনি ইংরেজী ভাষাভাষী একজন সুইস নাগরিক হন, আপনি সুইস কীবোর্ড\n"
+"ব্যবহার করতে পারেন। কিন্তু আপনি যদি ইংরেজী ভাষী হয়ে Quebec এ বসবাস\n"
+"করেন আপনার পরিস্থিতি এমন হতে পারে যেখানে country-set কীবোর্ড এবং\n"
+"নিজস্ব ভাষা একই নয়। যেকোন ক্ষেত্রেই আপনি আপনি একটি তালিকা থেকে সঠিক\n"
+"কীবোর্ডটি বেছে নিতে পারেন।\n"
+"\n"
+"সমর্থিত কীবোর্ডের তালিকা দেখতে \"%s\" বাটনে ক্লিক করুন।\n"
+"\n"
+"যদি আপনি নন‌-ল্যাটিন বর্ণমালার কীবোর্ডে লেআউট বাছাই করেন, পরবর্তী ডায়ালগটি\n"
+"আপনাকে ল্যাটিন ও নন‌-ল্যাটিন কীবোর্ডের মধ্যে সুইচ করার জন্য একটি কী বাইন্ডিং\n"
+"বাছাই করতে হবে।"
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "স্পেনীয়"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "চাকার বৈশিষ্ঠ অনুহকরণ"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Universal | যে কোন PS/2 এবং ইউএসবি মাউস"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"সঠিক পোর্টটি নির্বাচন করুন। যেমন, উইন্ডোজের \"COM1\" পোর্টটি GNU/Linux-এ\n"
+"\"ttyS0\" নামে পরিচিত।"
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "অনুমোদন"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+# সাম
+# emulate = এমুলেট?
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"এখন সময় আপনার কম্পিউটারের জন্য একটি প্রিন্টিং সিস্টেম নির্বাচন করার। অনান্য\n"
+"অপারেটিং সিস্টেম আপনাকে একটি অপশন দিতে পারে কিন্তু Mandriva Linux দেবে দুটি।\n"
+"প্রিন্টিং সিস্টেমগুলো বিভিন্ন কনফিগারেশনের জন্য প্রযোজ্য।\n"
+"\n"
+" * \"%s\" -- অর্থ হচ্ছে \"প্রিন্ট করো, সারিতে রাখবেনা\". এটি নির্বাচন করুন যদি "
+"আপনার কোন\n"
+"প্রিন্টারের সাথে সরাসরি সংযোগ থাকে, আপনি প্রিন্টার জ্যাম থেকে জরুরীভাবে বের হয়ে "
+"যেতে\n"
+"চান এবং যদি আপনার নেটওয়ার্ক প্রিন্টার না থাকে।(\"%s\" শুধুমাত্র খুবই সাধারন "
+"নেটওয়ার্ক\n"
+"সামলাতে পারে এবং কিছুটা ধীর হয়)। এটি আপনার GNU/Linux এর প্রথম অভিজ্ঞতা হলে\n"
+"আপনার \"pdq\" ব্যবহার করাটাই শ্রেয়।\n"
+"\n"
+" * \"%s\" অর্থ \"সাধারন Unix প্রিন্টিং সিস্টেম\" এবং এটি আপনার স্থানীয় প্রিন্টার "
+"হোক\n"
+"বা পৃথিবীর অন্য প্রান্তে অবস্থিত কোন প্রিন্টারই হোক যেকোন ক্ষেত্রেই একটি উত্‍কৃষ্ট "
+"সিস্টেম।\n"
+"এটি কনফিগার করতে সহজ এবং পুরোনো \"lpd\" প্রিন্টিং সিস্টেমের জন্য সার্ভার বা "
+"ক্লায়েন্ট\n"
+"হিসেবে কাজ করতে পারে। অতএব এটি পুরানো অপারেটিং সিস্টেম যেগুলোর সার্ভিস প্রয়োজন\n"
+"তাদের সাথেও সামঞ্জস্যপূর্ণ। যদিও খুব শক্তিশালী, মূল সেটআপটি প্রায় \"pdq\" এর মত "
+"সহজ।\n"
+"আপনি যদি \"lpd\" সার্ভার এমুলেট করতে চান, তবে \"cups-lpd\" daemon টি চালু করতে\n"
+"ভুলবেন না। \"%s\" এর প্রিন্টার অপশন বাছাই করা ও প্রিন্টার ব্যবস্থাপনার জন্য একটি "
+"গ্রাফিক্যাল\n"
+"ইন্টারফেস রয়েছে।\n"
+"\n"
+"আপনার বাছাইকৃত প্রিন্টিং সিস্টেমটি যদি আপনার পরে পছন্দ না হয়,\n"
+"তবে আপনি Mandriva Linux নিয়ন্ত্রন কেন্দ্র থেকে PrinterDrake চালিয়ে ও \"%s\" বাটন "
+"ক্লিক\n"
+"করে তা বদল করতে পারেন।"
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "দক্ষ"
+
+# সাম
+# check উচিত spelling, zwj didn't work for me...
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX প্রথমে আপনার কম্পিউটারে বিদ্যমান IDE ডিভাইস সনাক্ত করবে। এটি আপনার\n"
+"সিস্টেমে এক বা একাধিক PCI SCSI কার্ডের জন্যেও স্ক্যান করবে। যদি SCSI কার্ড পাওয়া\n"
+"যায়, DrakX নিজে নিজেই সঠিক ড্রাইভারটি ইনস্টল করবে।\n"
+"\n"
+"যেহেতু হার্ডওয়্যার সনাক্তকরন কোন অব্যার্থ পক্রিয়া নয়, DrakX আপনার হার্ডড্রাইভ সনাক্ত\n"
+"নাও করতে পারে। এ ক্ষেত্রে আপনাকে হার্ডওয়্যারটি নিজ হাতে নির্দিষ্ট করে দিতে হবে।\n"
+"\n"
+"PCI SCSI adapter নিজ হাতে নির্দিষ্ট করে দিতে হলে, DrakX আপনাকে জিজ্ঞাসা করবে\n"
+"আপনি অপশন কনফিগার করতে চান কিনা। আপনার DrakX কে হার্ডওয়্যারটির নির্দিষ্ট কার্ডের\n"
+"অপশনের জন্য প্রোব করতে দেয়া উচিত্‍ যা কিনা adapter ইনিশিয়ালাইজ করতে প্রয়োজন।\n"
+"বেশীরভাগ ক্ষেত্রে DrakX এই কাজটি কোন ঝামেলা ছাড়াই সম্পন্ন করবে।\n"
+"\n"
+"DrakX যদি প্রোব করে হার্ডওয়্যারে পাঠানোর জন্য প্যারামিটারগুলো নির্ধারন করতে না "
+"পারে\n"
+"তাহলে আপনাকে তা নিজে হাতে কনফিগারেশন করতে হবে।\n"
+" "
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": যদি আপনার সিস্টেমে একটি সাউন্ড কার্ড পাওযা যায়, সেটা এখানে দেখানো হবে।\n"
+"যদি আপনি জানান যে আসলে এই সাউন্ড কার্ডটি আপনার সিস্টেমে উপস্থিত নেই, তাহলে আপনি\n"
+"বাটনে ক্লিক করুন এবং অন্য একটি ড্রাইভার বেছে নিন।"
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN কার্ড"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "গ্রাফিকাল ইন্টারফেস"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"হার্ড ড্রাইভ বেছে নিন যেটি আপনি আপনার নতুন ম্যান্ড্রিব লিনাক্স পার্টিশন ইনস্টল করার "
+"জন্য\n"
+"মুছে ফেলতে চান। সাবধান, এই ড্রাইভে থাকা সকল ডাটা হারিয়ে যাবে এবং আর কখনই\n"
+"পাওয়া যাবে না!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"যদি এই হার্ড ড্রাইভে থাকা সব ডাটা এবং পার্টিশন মুছে ফেলতে চান তাহলে আপনি\n"
+"\"%s\"তে ক্লিক করুন। সাবধান, \"%s\"তে ক্লিক করার পর, উইন্ডোজ ডাটাসহ,\n"
+"আপনি এই হার্ড ড্রাইভে থাকা কোন ডাটা এবং পার্টিশন ফিরে\n"
+"পাবেন না।\n"
+"\n"
+"এই অপারেশনের মাধ্যমে হার্ড ড্রাইভের উপস্থিত ডাটা এবং পার্টিশন হারাতে না চাইলে \"%s"
+"\"তে ক্লিক করুন।"
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "পরবর্তী ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- পূর্ববর্তী"
+
diff --git a/perl-install/install/help/po/br.po b/perl-install/install/help/po/br.po
new file mode 100644
index 000000000..df8901d60
--- /dev/null
+++ b/perl-install/install/help/po/br.po
@@ -0,0 +1,1120 @@
+# DrakX e Brezhoneg.
+# Copyright (C) 1999-2005 Mandriva
+# Thierry Vignaud <tvignaud@mandriva.com>, 1999-2005
+# Jañ-Mai Drapier <jan-mai.drapier@mail.dotcom.fr>, 1999-2000
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX 10.2\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2006-04-06 19:37+0200\n"
+"Last-Translator: Thierry Vignaud <tvignaud@mandriva.com>\n"
+"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1;plural=0\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Mennout a rit implijout an arc'hwel-mañ ?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Bremanaat"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Gant teuliadur bihan"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Staliadur bihan gwir"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr ""
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Bremañ e c'hellit diuz pe servijoù a vennit e vije lañset pa loc'her.\n"
+"Pa zeu ho logodenn war un draez, ul lagadenn skoazell a zeuio war wel hag\n"
+"a zisplego pal ar servij-se.\n"
+"\n"
+"Bezit aketuz-kenañ el lankad-mañ ma vennit implijout ho ardivink evel ur\n"
+"servijer : mennout a rit emichañs chom hep loc'hañ kement servij n'ho peus "
+"ket\n"
+"c'hoant."
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr ""
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Impliji parzhadur o vezañ"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Chetañ an holl planedenn"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Krouiñ ur bladennig staliañ emgefreek"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Melestradur an surentez"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Emvarc'hañ ar skoroù lem/laka"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Tremen er mod boas/mailh"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Spagnoleg"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "gant kendarvanerezh ar rodell"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Hollvedel | Ul logodenn bennak (PS/2 pe USB)"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Dibabit ar porzh a zere mar plij. Da skouer, porzh « COM1 » dindan MS\n"
+"Windows a vez anvet « ttyS0 » gant Linux."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "dilesadur"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Mod mailh"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Kartenn ISDN"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Ketal Kevregañ"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "A heul ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Diaraog"
+
diff --git a/perl-install/install/help/po/bs.po b/perl-install/install/help/po/bs.po
new file mode 100644
index 000000000..6a3a81143
--- /dev/null
+++ b/perl-install/install/help/po/bs.po
@@ -0,0 +1,1945 @@
+# translation of bs.po to Bosanski
+# translation of DrakX-bs.po to Bosanski
+# Copyright (C) 2001, 2003, 2004, 2005. Free Software Foundation, Inc.
+# Amila Akagić <bono@lugbih.org>, 06. 2001.
+# Vedran Ljubovic <vljubovic@smartnet.ba>, 2002, 2003, 2004, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: bs\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-02-26 11:13+0100\n"
+"Last-Translator: Vedran Ljubovic <vljubovic@smartnet.ba>\n"
+"Language-Team: Bosanski <lokal@lugbih.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Prije nego što nastavimo, trebate pažljivo pročitati uvjete licence. Ona\n"
+"pokriva cijelu Mandriva Linux distribuciju. Ako se slažete sa svim\n"
+"uvjetima u njoj, izaberite opciju \"%s\". Ako ne, klikom na \"%s\" ćete\n"
+"restartovati vaš računar."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux je višekorisnički sistem, što znači da svaki korisnik može imati\n"
+"vlastite preference, vlastite datoteke i tako dalje. Možete pročitati "
+"''Početnički\n"
+"vodič'' da biste saznali više o višekorisničkim sistemima. Ali za razliku "
+"od\n"
+"\"root\"-a, koji je administrator sistema, korisnicima koje dodate u ovom "
+"trenutku\n"
+"neće biti dozvoljeno da promijene ništa osim vlastitih datoteka i vlastite\n"
+"konfiguracije, čime je sistem zaštićen od nenamjernih ili zlonamjernih "
+"izmjena\n"
+"koje mogu uticati na cijeli sistem. Moraćete kreirati najmanje jednog "
+"korisnika\n"
+"za vas same -- ovo je račun koji trebate koristiti za rutinsku, svakodnevnu\n"
+"upotrebu. Iako je vrlo lako prijaviti se kao \"root\" da biste radili sve i "
+"svašta,\n"
+"to takođe može biti i vrlo opasno! Jedna greška može značiti da vaš sistem\n"
+"više ne radi. Ako napravite ozbiljnu pogrešku kao običan korisnik, najgore\n"
+"što se može desiti jeste da izgubite neke informacije, ali ne i da utičete "
+"na\n"
+"cijeli sistem.\n"
+"\n"
+"U prvom polju unosite vaše pravo ime i prezime. Naravno, ovo nije obavezno\n"
+"-- u stvari možete ovdje unijeti šta god hoćete. DrakX će koristiti prvu "
+"riječ\n"
+"koju unesete i kopirati je u polje \"%s\", što je ime koje će ovaj\n"
+"korisnik unositi da bi ušao na sistem. Ako želite, možete promijeniti\n"
+"ponuđenu vrijednost. Idući korak je da unesete šifru. Sa sigurnosne tačke\n"
+"gledišta, šifra neprivilegovanog (običnog) korisnika nije tako važna kao "
+"\"root\"\n"
+"šifra, ali to nije razlog da je zanemarite tako što ćete je ostaviti praznom "
+"ili\n"
+"prejednostavnom: na kraju krajeva, vaše lične datoteke je ono što je u\n"
+"riziku.\n"
+"\n"
+"Jednom kada kliknete na \"%s\", možete ih dodati još.\n"
+"Dodajte po jednog korisnika za svakog od vaših prijatelja: na primjer za\n"
+"vašeg oca ili sestru. Kliknite na \"%s\" kada završite dodavanje korisnika.\n"
+"\n"
+"Klikanjem na dugme \"%s\" možete promijeniti osnovni \"shell\" za tog\n"
+"korisnika (ponuđen je bash).\n"
+"\n"
+"Kada završite dodavanje svih korisnika, bićete upitani da odaberete\n"
+"korisnika koji se može automatski prijaviti prilikom pokretanja sistema.\n"
+"Ako ste zainteresovani za ovu mogućnost (i ne brinete previše o lokalnoj\n"
+"sigurnosti), izaberite željenog korisnika i window manager, zatim kliknite\n"
+"na \"%s\". Ako niste zainteresovani za to, isključite opciju\n"
+"\"%s\"."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Da li želite koristiti ovu mogućnost?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Ovdje su navedene Linux particije koje već postoje na vašem hard disku.\n"
+"Možete zadržati izbore koje je napravio čarobnjak, pošto su oni dobri za\n"
+"uobičajene instalacije. Ako napravite neke izmjene, morate, ako ništa\n"
+"drugo, definisati root particiju (\"/\"). Nemojte izabrati premalu "
+"particiju\n"
+"ili nećete moći instalirati dovoljno softvera. Ako želite držati vaše "
+"podatke\n"
+"na zasebnoj particiji, trebate takođe napraviti \"/home\" particiju (što je\n"
+"moguće samo ako imate više od jedne Linux particije na raspolaganju).\n"
+"\n"
+"Svaka particija je navedena ovako: \"Ime\", \"Kapacitet\".\n"
+"\n"
+"\"Ime\" se sastoji od: \"vrsta hard diska\", \"broj hard diska\", \"broj\n"
+"particije\" (na primjer, \"hda1\").\n"
+"\n"
+"\n"
+"\"Vrsta hard diska\" je \"hd\" ako je vaš hard disk IDE, a \"sd\" ako je\n"
+"u pitanju SCSI hard disk.\n"
+"\n"
+"\"Broj hard diska\" je uvijek slovo nakon \"hd\" ili \"sd\". Kod IDE hard\n"
+"diskova:\n"
+"\n"
+" * \"a\" znači \"master hard disk na primarnom IDE kontroleru\";\n"
+"\n"
+" * \"b\" znači \"slave hard disk na primarnom IDE kontroleru\";\n"
+"\n"
+" * \"c\" znači \"master hard disk na sekundarnom IDE kontroleru\";\n"
+"\n"
+" * \"d\" znači \"slave hard disk na sekundarnom IDE kontroleru\";\n"
+"\n"
+"Kod SCSI hard diskova, \"a\" je \"disk sa najnižim SCSI IDom\", \"b\"\n"
+"je \"drugi najniži SCSI ID\", itd."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linux instalacija se prostire na nekoliko CDova. Ako je neki\n"
+"paket smješten na drugom CDu, DrakX će izbaciti trenutni CD i zamoliti vas\n"
+"da ubacite neki drugi po potrebi. Ako nemate potreban CD pri ruci,\n"
+"samo kliknite na \"%s\", odgovarajući paketi neće biti instalirani."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Sada je vrijeme da izaberete koje programe želite instalirati na vaš\n"
+"sistem. Za Mandriva Linux su dostupne hiljade paketa, pa da bi\n"
+"njihovo upravljanje bilo lakše, organizovani su u grupe slične\n"
+"primjene.\n"
+"\n"
+"Paketi su sortirani u grupe ovisno o tipičnoj namjeni vašeg računara.\n"
+"U Mandriva Linuxu date su četiri predefinisane kategorije. Možete\n"
+"miješati i poklapati programe iz raznih grupa, pa tako instalacija ``Radna\n"
+"stanica'' može sadržavati programe iz grupe ``Programiranje''.\n"
+"\n"
+" * \"%s\": ako planirate da koristite vaš računar kao radnu stanicu, "
+"izaberite\n"
+"jednu ili više grupa koje se nalaze u ovoj kategoriji.\n"
+"\n"
+" * \"%s\": ako planirate koristiti vaš računar za programiranje, izaberite\n"
+"odgovarajuće grupe iz te kategorije. Posebna \"LSB\" grupa će podesiti\n"
+"vaš sistem tako da on bude sukladan specifikaciji Linux Standard Base\n"
+"koliko god je to moguće.\n"
+"\n"
+" Izborom \"LSB\" grupe također ćete koristiti kernel serije \"2.4\",\n"
+"umjesto uobičajenog \"2.6\". Ovo je kako bi se osigurala 100%%\n"
+"sukladnost sistema sa LSBom. Ipak, čak i ako niste izabrali opciju\n"
+"\"LSB\" imaćete sistem koji je skoro 100%% sukladan sa LSBom.\n"
+"\n"
+" * \"%s\": ako je vaš računar zamišljen kao server, izaberite koje od\n"
+"uobičajenih servisa želite instalirati na vaš računar.\n"
+"\n"
+" * \"%s\": ovdje možete izabrati vašu preferiranu grafičku okolinu. Barem\n"
+"jedna od njih mora biti izabrana ako želite da imate grafički interfejs.\n"
+"\n"
+"Držanjem kursora miša iznad imena grupe će nakratko prikazati kratko\n"
+"objašnjenje o pojedinoj grupi.\n"
+"\n"
+"Možete aktivirati opciju \"%s\", koja je zgodna ako se upoznati sa "
+"ponuđenim\n"
+"paketima ili ako želite imati potpunu kontrolu nad onim što će se "
+"instalirati.\n"
+"\n"
+"Ako ste započeli instalaciju u \"%s\" režimu, možete isključiti sve grupe\n"
+"kako biste izbjegli instalaciju bilo kojeg novog paketa. Ovo je pogodno za\n"
+"popravljanje ili unaprjeđenje postojećeg sistema.\n"
+"\n"
+"Ako isključite sve grupe prilikom obavljanja obične instalacije (a ne\n"
+"upgrade), iskočiće dijalog koji vam nudi razne opcije za minimalnu "
+"instalaciju:\n"
+"\n"
+" * \"%s\": instalira minimalan mogući broj paketa potrebnih da imate\n"
+"funkcionalan grafički desktop.\n"
+"\n"
+" * \"%s\": instalira bazni sistem plus osnovne alate i njihovu\n"
+"dokumentaciju.\n"
+" Ova instalacija je prikladna za podešavanje servera.\n"
+"\n"
+" * \"%s\": ovo će instalirati apsolutni minimum paketa potrebnih da imate\n"
+"funkcionalan Linux sitsem. Sa ovom instalacijom imaćete samo komandnu\n"
+"liniju. Ukupna veličina ove instalacije je oko 65 megabajta."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Unaprijedi"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Sa osnovnom dokumentacijom"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Stvarno minimalna instalacija"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Ako ste naveli da želite individualno izabrati pakete, biće vam prikazano\n"
+"stablo koje sadrži sve pakete klasifikovane po grupama i podgrupama.\n"
+"Pregledajući stablo, možete izabrati čitave grupe, podgrupe ili\n"
+"individualne pakete.\n"
+"\n"
+"Kad god izaberete paket na stablu, desno od njega se pojavljuje opis koji\n"
+"vam objašnjava svrhu paketa.\n"
+"\n"
+"!! Ako izaberete neki serverski paket, zato što ste specifično izabrali taj\n"
+"paket ili zato što je on dio grupe paketa, bićete zamoljeni da potvrdite da\n"
+"zaista želite da taj server bude instaliran. Mandriva Linux obično\n"
+"automatski pokreće sve instalirane servise prilikom pokretanja sistema.\n"
+"Čak i ako su sigurni i nemaju poznatih problema u trenutku pakovanja\n"
+"distribucije, sasvim je moguće da su neke sigurnosne rupe otkrivene\n"
+"nakon što je dovršena ova verzija Mandriva Linuxa. Ako niste sigurni\n"
+"čemu tačno služi taj paket ili zašto ga treba instalirati, kliknite na \"%s"
+"\".\n"
+"Klikom na \"%s\" instalirate navedene servise i oni će biti automatski\n"
+"pokrenuti tokom pokretanja sistema. !!\n"
+"\n"
+"Opcija \"%s\" se koristi da bi se isključio dijalog upozorenja\n"
+"koji se pojavljuje svaki put kada instalacioni program automatski izabere\n"
+"neki paket kako bi razriješio neku zavisnost. Pojedini paketi imaju\n"
+"zavisnost jedan od drugog u smislu da instalacija jednog paketa traži\n"
+"da bude instaliran i drugi. Instalacioni program može odrediti koji paketi\n"
+"su potrebni da bi se zadovoljila zavisnost i uspješno završila instalacija.\n"
+"\n"
+"Mala ikona sa disketom na dnu liste vam omogućuje da učitate listu paketa\n"
+"koja je napravljena tokom neke ranije instalacije. Ovo je korisno ako "
+"želite\n"
+"da imate nekoliko računara koji su identično podešeni. Nakon klika na ovu\n"
+"ikonu bićete zamoljeni da u disketnu jedinicu stavite disketu napravljenu\n"
+"tokom ranije instalacije. Pogledajte drugi savjet na zadnjem koraku da "
+"biste\n"
+"saznali kako se pravi ova disketa."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Automatske ovisnosti"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": klikanjem na dugme \"%s\" otvorićete čarobnjak za\n"
+"podešavanje štampača. Konsultujte odgovarajuće poglavlje ``Vodiča za\n"
+"početnike'' za više informacija o tome kako podesiti novi štampač.\n"
+"Interfejs koji je tamo prikazan je vrlo sličan onom koji se koristi\n"
+"prilikom instalacije."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Ovim dijalogom možete izabrati koje servise želite pokretati prilikom "
+"boota.\n"
+"\n"
+"Ovdje su predstavljeni svi servisi koji su dostupni u trenutnoj\n"
+"instalaciji. Pregledajte ih pažljivo i isključite sve one koji nisu\n"
+"potrebni prilikom boota.\n"
+"\n"
+"Kada izaberete servis dobićete kratki tekst koji objašnjava taj servis.\n"
+"Ipak, ako niste sigurni da li je servis koristan ili ne, sigurnije je da ne\n"
+"mijenjate predloženi izbor.\n"
+"\n"
+"!! Budite vrlo pažljivi sa ovim korakom ako namjeravate koristiti vaš\n"
+"računar kao server: vjerovatno ne želite da pokrenete neke servise koji\n"
+"vam ne trebaju. Molim vas da zapamtite da pojedini servisi mogu biti\n"
+"opasni ako su aktivni na serveru. Općenito, izaberite samo one servise\n"
+"koji vam stvarno trebaju. !!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux koristi vrijeme u GMT (Greenwich Mean Time) obliku i prevodi ga\n"
+"u lokalno vrijeme u skladu sa vremenskom zonom koju ste izabrali. Ako je\n"
+"sat na vašoj matičnoj ploči podešen na lokalno vrijeme, možete isključiti "
+"ovu\n"
+"opciju isključujući \"%s\", što će saopštiti GNU/Linuxu da su sistemski sat\n"
+"i hardverski sat u istoj vremenskoj zoni. Ovo je korisno kada se na "
+"računaru\n"
+"takođe nalazi i drugi operativni sistem kao što je Windows.\n"
+"\n"
+"Opcija \"%s\" će automatski regulisati sat spajajući se na udaljeni time "
+"server\n"
+"na Internetu. Kako bi ova mogućnost radila, morate imati ispravnu Internet\n"
+"konekciju. Najbolje je izabrati time server negdje u vašoj blizini. Ova "
+"opcija\n"
+"će ustvari instalirati time server koji mogu koristiti i drugi računari u "
+"vašoj\n"
+"lokalnoj mreži."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Automatska sinhronizacija vremena"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Grafička kartica\n"
+"\n"
+" Instalacija obično automatski prepoznaje i podešava grafičku karticu\n"
+"koja je instalirana na računar. Ako se ovo nije desilo, možete izabrati\n"
+"sa liste karticu koja je ugrađena u vaš računar.\n"
+"\n"
+" U slučaju da postoji više dostupnih servera za vašu karticu, sa ili bez\n"
+"3D ubrzanja, biće vam ponuđeno da izaberete server koji najbolje odgovara\n"
+"vašim potrebama."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (skraćeno od X Window System) je srce GNU/Linux grafičkog interfejsa\n"
+"o kojem ovise sve grafičke okoline (KDE, GNOME, AfterStep,\n"
+"WindowMaker itd.) uključene u Mandriva Linux.\n"
+"\n"
+"Biće vam predstavljena lista različitih parametara koje možete promijeniti\n"
+"da biste dobili optimalan grafički prikaz.\n"
+"\n"
+"Grafička kartica\n"
+"\n"
+" Instalacija obično automatski prepoznaje i podešava grafičku karticu\n"
+"koja je instalirana na računar. Ako se ovo nije desilo, možete izabrati\n"
+"sa liste karticu koja je ugrađena u vaš računar.\n"
+"\n"
+" U slučaju da postoji više dostupnih servera za vašu karticu, sa ili bez\n"
+"3D ubrzanja, biće vam ponuđeno da izaberete server koji najbolje odgovara\n"
+"vašim potrebama.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Instalacioni program obično može prepoznati i podesiti monitor koji\n"
+"je povezan na vaš računar. Ako se ovo ne desi, možete odabrati neki\n"
+"monitor sa ove liste.\n"
+"\n"
+"\n"
+"\n"
+"Rezolucija\n"
+"\n"
+" Ovdje možete izabrati rezoluciju i broj boja među vrijednostima koje su\n"
+"moguće na vašem hardveru. Izaberite one vrijednosti koje vam najbolje\n"
+"odgovaraju (moći ćete ih promijeniti nakon instalacije). Primjer izabrane\n"
+"konfiguracije je prikazan na slici monitora.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Ovisno o vašem hardveru, ova opcija možda neće biti dostupna.\n"
+"\n"
+" Sistem će pokušati prikazati grafički ekran na željenoj rezoluciji.\n"
+"Ako možete vidjeti poruku tokom testa i odgovorite sa \"%s\", DrakX\n"
+"će produžiti na idući korak. Ako ne možete vidjeti poruku, to znači\n"
+"da je neki dio automatski prepoznate konfiguracije bio pogrešan.\n"
+"Test će automatski završiti nakon 12 sekundi, čime ćete biti vraćeni na\n"
+"meni. Mijenjajte postavke dok ne dobijete ispravan grafički prikaz.\n"
+"\n"
+"\n"
+"\n"
+"Opcije\n"
+"\n"
+" Ovdje možete izabrati da li želite da vaš računar automatski pređe na\n"
+"grafički interfejs nakon uključivanja. Očito, trebate odgovoriti \"%s\" ako\n"
+"će vaš računar imati ulogu servera ili ako imate problema sa\n"
+"podešavanjem ekrana."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+"\n"
+" Instalacioni program obično može prepoznati i podesiti monitor koji\n"
+"je povezan na vaš računar. Ako se ovo ne desi, možete odabrati sa ove\n"
+"liste monitor koji je ustvari povezan na vaš računar."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Rezolucija\n"
+"\n"
+" Ovdje možete izabrati rezoluciju i broj boja među vrijednostima koje su\n"
+"moguće na vašem hardveru. Izaberite one vrijednosti koje vam najbolje\n"
+"odgovaraju (moći ćete ih promijeniti nakon instalacije). Primjer izabrane\n"
+"konfiguracije je prikazan na slici monitora."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"U slučaju da postoji više dostupnih servera za vašu karticu, sa ili bez\n"
+"3D ubrzanja, biće vam ponuđeno da izaberete server koji najbolje odgovara\n"
+"vašim potrebama."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Opcije\n"
+"\n"
+" Ovdje možete izabrati da li želite da vaš računar automatski pređe na\n"
+"grafički interfejs nakon uključivanja. Očito, trebate odgovoriti \"%s\" ako\n"
+"će vaš računar imati ulogu servera ili ako imate problema sa\n"
+"podešavanjem ekrana."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Na ovom mjestu trebate izabrati gdje želite instalirati Mandriva Linux\n"
+"operativni sistem na vašem hard disku. Ako je disk prazan ili ako postojeći\n"
+"operativni sistem koristi sav prostor na njemu, potrebno je da ga\n"
+"particionirate. U biti, particioniranje hard diska predstavlja logičko\n"
+"organiziranje kako bi se stvorio prostor za instaliranje vašeg novog\n"
+"Mandriva Linux sistema.\n"
+"\n"
+"Pošto su efekti particioniranja obično nepovratni, i mogu voditi do gubitka\n"
+"podataka na eventualnom postojećem operativnom sistemu, particioniranje\n"
+"može biti zastrašujuće i stresno ako ste neiskusan korisnik. Srećom, "
+"postoji\n"
+"čarobnjak koji pojednostavljuje taj proces. Prije započinjanja, molim\n"
+"pročitajte pažljivo ovaj tekst i, prije svega, nemojte žuriti.\n"
+"\n"
+"Ovisno o konfiguraciji vašeg hard diska, može biti dostupno nekoliko\n"
+"mogućnosti:\n"
+"\n"
+" * \"%s\": Ova opcija vodi na automatsko particioniranje vašeg praznog\n"
+"diska (diskova). Ako izaberete ovu opciju, neće biti postavljana\n"
+"nikakva daljnja pitanja.\n"
+"\n"
+" * \"%s\": Čarobnjak je detektovao jednu ili više postojećih\n"
+"Linux particija na vašem hard disku. Ako ih želite zadržati, izaberite ovu\n"
+"opciju. U tom slučaju, bićete upitani da izaberete tačke montiranja koje\n"
+"odgovaraju svakoj od ovih particija. Automatski će biti predložene ranije\n"
+"tačke montiranja, i najčešće je pametno zadržati ih.\n"
+"\n"
+" * \"%s\": Ako je na vašem hard\n"
+"disku instaliran Microsoft Windows koji je zauzeo sav slobodan prostor,\n"
+"moraćete napraviti nešto slobodnog prostora za GNU/Linux. To možete učiniti\n"
+"brišući vašu Microsoft Windows particiju zajedno sa podacima (vidi opciju\n"
+"``Obriši čitav disk'' ispod) ili možete promijeniti veličinu vaše Microsoft\n"
+"Windows FAT ili NTFS particije. Promjena veličine se može izvršiti bez "
+"gubitka\n"
+"podataka, pod uslovom da prethodno defragmentirate Windows particiju\n"
+"i da ona koristi FAT format. Backupovanje vaših podataka je strogo\n"
+"preporučeno. Ova mogućnost je preporučena ako namjeravate koristiti i\n"
+"Mandriva Linux i Microsoft Windows na istom računaru.\n"
+"\n"
+" Prije izbora ove opcije, molim da imate na umu da će, nakon ove\n"
+"procedure, veličina vaše Microsoft Windows particije biti manja nego\n"
+"trenutno. To znači da će Microsoft Windows prijavljivati da imate manje\n"
+"prostora za smještaj podataka ili instaliranje novog softwarea.\n"
+"\n"
+" * \"%s\": Ako želite da obrišete sve podatke i sve particije koje su\n"
+"prisutne na vašem hard disku i umjesto njih postavite vaš novi Mandriva\n"
+"Linux sistem, možete izabrati ovu opciju. Budite oprezni sa ovom\n"
+"mogućnošću, jer nećete moći poništiti vaš izbor nakon potvrde.\n"
+"\n"
+" !! Ako izaberete ovu opciju, svi podaci na vašem disku će biti "
+"izgubljeni. !!\n"
+"\n"
+" * \"%s\": Ova opcija se javlja kada je čitav disk zauzet Microsoft\n"
+"Windowsom. Ovo će jednostavno pobrisati sve na disku i početi od\n"
+"početka, particionirajući ga.\n"
+"\n"
+" !! Ako izaberete ovu opciju, svi podaci na vašem disku će biti "
+"izgubljeni. !!\n"
+"\n"
+" * \"%s\": Ako želite da ručno particionirate vaš hard disk,\n"
+"izaberite ovu opciju. Budite oprezni -- to je moćan, ali i opasan izbor. "
+"Vrlo\n"
+"lako možete izgubiti sve vaše podatke. Zato ovu opciju ne preporučujemo,\n"
+"osim ako ste nešto ovakvo već radili i imate nekog iskustva. Više uputstava\n"
+"za korištenje DiskDrake alata možete naći u ``Vodiču za početnike'', "
+"odjeljak\n"
+"``Upravljanje vašim particijama''."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Koristi postojeću particiju"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Pobriši čitav disk"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"To je to. Instalacija je sada završena i vaš GNU/Linux sistem je spreman\n"
+"za upotrebu. Samo kliknite na \"%s\" da restartujete sistem. Ne zaboravite\n"
+"da izvadite instalacioni medij (CD-ROM ili disketu). Prva stvar\n"
+"koju ćete ugledati nakon što računar završi hardverske provjere je meni\n"
+"bootloadera, koji vam nudi izbor operativnog sistema koji želite pokrenuti.\n"
+"\n"
+"Dugme \"%s\" će vam ponuditi još dva dugmeta za:\n"
+"\n"
+" * \"%s\": da biste napravili instalacionu\n"
+"disketu koja će automatski izvršiti cijelu instalaciju bez intervencije\n"
+"operatora, sličnu instalaciji koju ste upravo konfigurisali.\n"
+"\n"
+" Obratite pažnju na dvije različite opcije koje su dostupne nakon\n"
+"klikanja na ovo dugme:\n"
+"\n"
+" * \"%s\". Ovo je djelomično automatizirana instalacija. Korak\n"
+"particioniranja je jedini interaktivni dio.\n"
+"\n"
+" * \"%s\". Potpuno automatska instalacija: hard disk je\n"
+"potpuno prepisan, svi podaci su izgubljeni.\n"
+"\n"
+" Ova mogućnost je vrlo prikladna kada instalirate nekoliko sličnih\n"
+"računara. Pogledajte odjeljak Automatska instalacija na našoj web stranici\n"
+"za više informacija.\n"
+"\n"
+" * \"%s\": snima listu paketa koje ste izabrali u ovoj\n"
+"instalaciji. Da biste upotrijebili ovaj izbor sa drugom instalacijom,\n"
+"ubacite disketu i započnite instalaciju. Na upitu, pritisnite tipku [F1]\n"
+"i ukucajte >>linux defcfg=\"floppy\" <<."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Napravi auto-instalacijsku disketu"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Ako želite koristiti neke stare GNU/Linux particije, možda ćete poželjeti\n"
+"da reformatirate neke od njih kako biste pobrisali podatke koje sadrže.\n"
+"Ako želite to učiniti, molim takođe izaberite i te particije.\n"
+"\n"
+"Molim obratite pažnju da nije neophodno formatirati sve postojeće\n"
+"particije. Morate reformatirati particije koje sadrže operativni sistem\n"
+"(kao što su \"/\", \"/usr\" ili \"var\") ali ne morate reformatirati "
+"particije\n"
+"koje sadrže podatke koje želite zadržati (tipično /home).\n"
+"\n"
+"Molim da pažljivo izaberete particije. Nakon formatiranja, svi podaci na\n"
+"odabranim particijama će biti pobrisani i nećete biti u mogućnosti da ih\n"
+"povratite.\n"
+"\n"
+"Kliknite na \"%s\" kada budete spremni za formatiranje particija.\n"
+"\n"
+"Kliknite na \"%s\" ako želite da izaberete druge particije za instalaciju\n"
+"vašeg novog Mandriva Linux operativnog sistema.\n"
+"\n"
+"Kliknite na \"%s\" da izaberete particije koje želite provjeriti radi\n"
+"loših blokova."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Kada završite instalaciju Mandriva Linuxa, moguće je da su neki paketi\n"
+"ažurirani od zadnjeg izdanja. Moguće je da su ispravljeni bugovi ili\n"
+"rješena neka sigurnosna pitanja. Ako želite iskoristiti ova unaprjeđenja,\n"
+"možete ih sada dobaviti sa Interneta. Izaberite \"%s\" ako imate ispravnu\n"
+"Internet vezu, ili \"%s\" ako ćete radije instalirati ažurirane pakete\n"
+"kasnije.\n"
+"\n"
+"Ako izaberete \"%s\" dobićete listu web lokacija sa kojih se mogu skinuti\n"
+"novi paketi. Izaberite ono najbliže vama. Pojaviće se stablo za izbor\n"
+"paketa: pregledajte izabrano i pritisnite \"%s\" da dobavite i\n"
+"instalirate izabrane pakete, ili \"%s\" za prekid."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Na ovom mjestu, DrakX vam omogućuje da izaberete sigurnosni nivo\n"
+"koji želite imati na ovom računaru. Kao pravilo, sigurnosni nivo treba biti\n"
+"tim viši što su važniji podaci na računaru, a pogotovo ako će računar biti\n"
+"direktno izložen Internetu. Većim nivoom sigurnosti obično gubite na\n"
+"jednostavnosti korištenja.\n"
+"\n"
+"Ako ne znate šta izabrati, zadržite ponuđenu opciju. Možete promijeniti\n"
+"nivo sigurnosti naknadno koristeći program draksec iz Mandriva Linux\n"
+"Kontrolnog centra.\n"
+"\n"
+"Polje \"%s\" obavještava sistem o korisniku koji će biti odgovoran za\n"
+"sigurnost. Njemu će biti upućena sigurnosna obavještenja."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Sigurnosni administrator"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Sada trebate izabrati koje particije želite koristiti za instalaciju vašeg\n"
+"Mandriva Linux sistema. Ako su particije već definisane, iz prijašnje\n"
+"GNU/Linux instalacije ili nekim drugim alatom za particioniranje, možete\n"
+"koristiti postojeće particije. U suprotnom, sada morate definisati\n"
+"particije vašeg hard diska.\n"
+"\n"
+"Da biste napravili particije, najprije morate izabrati hard disk. Možete\n"
+"izabrati disk za particioniranje klikom na ''hda'' za prvi IDE disk, "
+"''hdb''\n"
+"za drugi, ''sda'' za prvi SCSI disk i slično.\n"
+"\n"
+"Pri particioniranju hard diska, možete koristiti sljedeće opcije:\n"
+"\n"
+" * \"%s\": ova opcija briše sve particije na izabranom hard disku\n"
+"\n"
+" * \"%s\": ova opcija vam omogućuje da automatski napravite ext3\n"
+"i swap particije u slobodnom prostoru vašeg hard diska\n"
+"\n"
+"\"%s\" omogućuje pristup dodatnim mogućnostima:\n"
+"\n"
+" * \"%s\": snima tabelu particija na disketu. Ovo je korisno za\n"
+"kasnije vraćanje tabele particija, ako je potrebno. Strogo je preporučeno\n"
+"da izvršite ovaj korak.\n"
+"\n"
+" * \"%s\": omogućuje vam da vratite ranije snimljenu tabelu\n"
+"particija sa diskete.\n"
+"\n"
+" * \"%s\": ako je vaša tabela particija oštećena, možete je pokušati\n"
+"obnoviti koristeći ovu opciju. Molim budite pažljivi i zapamtite da\n"
+"ova opcija ne uspijeva svaki put.\n"
+"\n"
+" * \"%s\": poništava sve promjene i ponovo učitava originalnu tabelu\n"
+"particija sa hard diska.\n"
+"\n"
+" * \"%s\": isključivanjem ove opcije ćete prisiliti korisnike da ručno\n"
+"montiraju i demontiraju izmjenjive medije kao što su diskete i\n"
+"CD-ROMovi.\n"
+"\n"
+" * \"%s\": koristite ovu opciju ako želite koristiti čarobnjak za\n"
+"particioniranje vašeg hard diska. Ovo je preporučeno ako nemate\n"
+"izraženo razumijevanje particioniranja.\n"
+"\n"
+" * \"%s\": koristite ovu opciju da poništite vaše izmjene.\n"
+"\n"
+" * \"%s\": omogućuje dodatne akcije na particijama (tip, opcije,\n"
+"formatiranje) i daje više informacija o hard disku.\n"
+"\n"
+" * \"%s\": kada završite particioniranje diska, ovo će zapisati\n"
+"vaše izmjene na disk.\n"
+"\n"
+"Prilikom definisanja veličine particije, možete fino podešavati veličinu\n"
+"particije koristeći dugmad sa strjelicama na vašoj tastaturi.\n"
+"\n"
+"Napomena: svaku opciju možete postići tastaturom. Između particija\n"
+"se krećete koristeći dugme [Tab] i strjelice [Gore/Dolje].\n"
+"\n"
+"Kada izaberete particiju, možete koristiti:\n"
+"\n"
+" * Ctrl-C da napravite novu particiju (ako ste izabrali prazan prostor)\n"
+"\n"
+" * Ctrl-D da obrišete particiju\n"
+"\n"
+" * Ctrl-M da podesite tačku montiranja\n"
+"\n"
+"Da biste dobili informacije o raznim tipovima datotečnog sistema koji\n"
+"su dostupni, pročitajte poglavlje o ext2FS iz ''Referentnog priručnika''.\n"
+"\n"
+"Ako instalirate na PPC računar, trebate napraviti malu HFS ''bootstrap''\n"
+"particiju od najmanje 1 MB koju će koristiti yaboot bootloader. Ako se\n"
+"odlučite da ovu particiju učinite nešto većom, npr. 50 MB, primjetićete\n"
+"da je ona korisno mjesto za čuvanje rezervnog kernela ili ramdisk slika\n"
+"za hitne slučajeve."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Automatsko montiranje izmjenjivog medija"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Prekidač normalnog/ekspertnog moda"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Na vašem hard disku ustanovljeno je više od jedne Microsoft particije.\n"
+"Molim izaberite onu koju želite smanjiti kako biste instalirali vaš\n"
+"Mandriva Linux operativni sistem.\n"
+"\n"
+"Svaka particija je navedena ovako: \"Linux ime\", \"Windows ime\",\n"
+"\"Kapacitet\".\n"
+"\n"
+"\"Linux ime\" se sastoji od: \"vrste hard diska\", \"broja hard diska\",\n"
+"\"broja particije\" (na primjer, \"hda1\").\n"
+"\n"
+"\"Vrsta hard diska\" je \"hd\" ako je vaš hard disk IDE, a \"sd\" ako je\n"
+"u pitanju SCSI hard disk.\n"
+"\n"
+"\"Broj hard diska\" je uvijek slovo nakon \"hd\" ili \"sd\". Kod IDE hard\n"
+"diskova:\n"
+"\n"
+" * \"a\" znači \"master hard disk na primarnom IDE kontroleru\";\n"
+"\n"
+" * \"b\" znači \"slave hard disk na primarnom IDE kontroleru\";\n"
+"\n"
+" * \"c\" znači \"master hard disk na sekundarnom IDE kontroleru\";\n"
+"\n"
+" * \"d\" znači \"slave hard disk na sekundarnom IDE kontroleru\";\n"
+"\n"
+"Kod SCSI hard diskova, \"a\" je \"disk sa najnižim SCSI IDom\", \"b\"\n"
+"je \"drugi najniži SCSI ID\", itd.\n"
+"\n"
+"\"Windows ime\" je slovo kojim je vaš hard disk označen pod Windowsom\n"
+"(prva particija prvog diska se zove \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": provjerite trenutni izbor države. Ako se ne nalazite ovdje,\n"
+"kliknite na dugme \"%s\" i izaberite neku drugu državu. Ako se vaša\n"
+"zemlja ne nalazi na listi, kliknite na dugme \"%s\" kako biste dobili\n"
+"listu svih država."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Ovaj korak se aktivira samo ako je na vašem računaru pronađena postojeća\n"
+"GNU/Linux particija.\n"
+"\n"
+"DrakX sada treba znati da li želite izvršiti novu instalaciju ili\n"
+"nadogradnju postojećeg Mandriva Linux sistema:\n"
+"\n"
+" * \"%s\". Najčešće ovo će u potpunosti obrisati stari sistem. Ipak,\n"
+"ovisno o vašoj šemi particioniranja, možete spriječiti da neki od vaših\n"
+"postojećih podataka (prije svega \"home\" direktoriji) budu prepisani.\n"
+"Ako želite promijeniti particioniranje starog hard diska ili promijeniti\n"
+"datotečni sistem, trebate koristiti ovu opciju.\n"
+"\n"
+" * \"%s\". Ova vrsta instalacije vam omogućuje da ažurirate pakete\n"
+"koji su trenutno instalirani na vašem Mandriva Linux sistemu. Vaša trenutna\n"
+"šema particioniranja i korisnički podaci neće biti izmijenjeni. Većina\n"
+"ostalih koraka konfiguracije ostaju kao što jesu, slično običnoj "
+"instalaciji.\n"
+"\n"
+"Opcija ''Nadogradi'' bi trebala raditi ispravno na Mandriva Linux sistemima\n"
+"koji koriste verziju \"8.1\" ili kasniju. Obavljanje nadogradnje na ranijim\n"
+"verzijama Mandriva Linuxa, prije verzije \"8.1\", nije preporučeno."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Ovisno o jeziku koji izaberete (), DrakX će\n"
+"automatski izabrati određeni tip tastature. Provjerite da li vam izabrano\n"
+"odgovara ili odaberite neki drugi raspored tastature.\n"
+"\n"
+"Ipak, možda nemate tastaturu koja tačno odgovara vašem jeziku: npr.\n"
+"ako ste Švajcarac koji govori engleski, možda imate švajcarsku tastaturu.\n"
+"Ili ako govorite engleski ali se nalazite u Kvibeku, možda ćete se naći u\n"
+"situaciji gdje se vaš jezik i tastatura ne poklapaju. U svakom slučaju, "
+"ovaj\n"
+"korak instalacije vam omogućava da izaberete odgovarajuću tastaturu sa "
+"liste.\n"
+"\n"
+"Kliknite na dugme \"%s\" kako bi vam bila predstavljena potpuna lista\n"
+"podržanih tastatura.\n"
+"\n"
+"Ako izaberete raspored tipaka koji je baziran na ne-latiničnoj abecedi,\n"
+"sljedeći dijalog će vam ponuditi da izaberete tipke pomoću kojih možete\n"
+"prebaciti tastaturu između latiničnog i ne-latiničnog rasporeda."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Prvi korak je da izaberete preferirani jezik.\n"
+"\n"
+"Vaš izbor preferiranog jezika će se odraziti na jezik dokumentacije,\n"
+"instalacione procedure i generalno sistema. Najprije izaberite oblast u\n"
+"kojoj se nalazite, a zatim jezik kojim govorite.\n"
+"\n"
+"Klikanjem na dugme \"%s\" možete izabrati druge jezike koje\n"
+"želite instalirati na vašu radnu stanicu, time instalirajući sistemsku\n"
+"dokumentaciju i programe za svaki od izabranih jezika. Na primjer, ako\n"
+"će vaš računar koristiti osobe iz španije, izaberite Engleski kao osnovni\n"
+"jezik na listi, a \"%s\" u oblasti Više opcija.\n"
+"\n"
+"O UTF-8 (Unicode) podršci. Unicode je novi način kodiranja znakova čiji\n"
+"je cilj da obuhvati sve postojeće jezike. Ipak puna podrška za njega pod\n"
+"GNU/Linuxom je još uvijek u razvoju. Iz tog razloga, Mandriva Linux će ga\n"
+"koristiti ovisno o drugim izborima korisnika:\n"
+"\n"
+" * Ako izaberete jezike sa raširenim starim kodiranjem (latin1 jezici, "
+"ruski,\n"
+"japanski, kineski, korejanski, tajlandski, grčki, turski, većina iso-8859-2\n"
+"jezika), biće korišteno staro kodiranje;\n"
+"\n"
+" * Za ostale jezike podrazumijeva se Unicode;\n"
+"\n"
+" * Ako je potrebno dva ili više jezika koji ne koriste isto kodiranje, "
+"Unicode\n"
+"će se koristiti za čitav sistem;\n"
+"\n"
+" * Konačno, Unicode može biti nametnut sistemu ako korisnik to odluči\n"
+"izborom opcije \"%s\" bez obzira na izabrane jezike.\n"
+"n\n"
+"Obratite pažnju da niste ograničeni na samo jedan dodatni jezik. Možete\n"
+"ih izabrati nekoliko ili čak ih instalirati sve klikom na polje \"%s\".\n"
+"Vaš izbor podrške za neki jezik označava da će biti instaliran prijevod,\n"
+"fontovi, pravila za provjeru pravopisa itd. za taj jezik.n\n"
+"\n"
+"Da biste izabrali između raznih jezika instaliranih na vašem sistemu, "
+"možete\n"
+"pokrenuti kao \"root\" naredbu \"localedrake\", čime mijenjate\n"
+"jezik koji koristi čitav sistem. Izvršavanjem te naredbe kao običan\n"
+"korisnik mijenjate jezičke postavke samo za tog konkretnog korisnika."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Espanol"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Obično DrakX nema problema da odredi broj dugmadi na vašem mišu.\n"
+"Ako ima, pretpostaviće da imate miš sa dva dugmeta i podesiće simulaciju\n"
+"trećeg dugmeta. Treće dugme se može postići na mišu sa dva dugmeta\n"
+"istovremenim klikom na lijevo i desno dugme miša. DrakX će automatski\n"
+"znati da li miš koristi PS/2, serijski ili USB interfejs.\n"
+"\n"
+"Ako imate miš sa tri dugmeta bez točkića, možete izabrati tip miša pod\n"
+"imenom \"%s\". DrakX će zatim konfigurisati vašeg miša tako da može\n"
+"simulirati rad točkića trećim dugmetom. Da biste ovo postigli, držite\n"
+"srednje dugme miša i pomjerajte ga gore-dolje.\n"
+"\n"
+"Ako iz nekog razloga želite navesti drugačiji tip miša, izaberite ga sa\n"
+"ponuđene liste.\n"
+"\n"
+"Možete izabrati stavku \"%s\" da izaberete ``opšti'' tip miša koji bi\n"
+"trebao raditi sa skoro svim miševima.\n"
+"Ako izaberete miš različit od ponuđenog, biće prikazan testni ekran.\n"
+"Koristite miš i točkić da potvrdite da su postavke tačne i da miš radi\n"
+"ispravno. Ako miš ne radi kako treba, pritisnite razmaknicu ili tipku Enter\n"
+"da prekinete test i vratite se na listu izbora.\n"
+"\n"
+"Miševi sa točkićem često nisu prepoznati automatski, stoga trebate izabrati\n"
+"miš na listi. Pazite da izaberete odgovarajući port na koji je vaš miš\n"
+"priključen. Nakon izbora miša i pritiska na dugme \"%s\", na ekranu će\n"
+"biti prikazana slika miša. Pomjerajte točkić miša kako biste provjerili da "
+"li\n"
+"ispravno funkcioniše. Kada vidite da se točkić na ekranu pomjera onako\n"
+"kako vi vrtite stvarni točkić, provjerite dugmad i provjerite da li se "
+"pokazivač\n"
+"na ekranu pomjera onako kako vi pomjerate miš."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "sa simulacijom točkića"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Univerzalni | Bilo koji PS/2 ili USB miš"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Molim izaberite ispravan port. Na primjer, \"COM1\" port pod Windows\n"
+"operativnim sistemom, pod GNU/Linuxom se zove \"ttyS0\" ."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Ovo je najvažnija odluka za sigurnost vašeg GNU/Linux sistema: trebate\n"
+"unijeti \"root\" šifru, \"Root\" je sistemski administrator i jedini\n"
+"korisnik kojem je dozvoljeno da updatuje sistem, dodaje druge korisnike,\n"
+"mijenja konfiguraciju sistema itd. Ukratko, \"root\" može raditi sve! Stoga\n"
+"trebate izabrati šifru koju je teško pogoditi - DrakX će vam reći da li je "
+"šifra\n"
+"koju ste odabrali prejednostavna. Kao što možete vidjeti, niste prisiljeni "
+"da\n"
+"unesete šifru, ali vam savjetujemo da to uradite. GNU/Linux je podložan\n"
+"operatorskim greškama kao i bilo koji drugi operativni sistem. Pošto\n"
+"\"root\" može prevazići sva ograničenja i nenamjerno pobrisati sve podatke\n"
+"na particijama neoprezno im pristupajući, važno je da je teško postati \"root"
+"\".\n"
+"\n"
+"Šifra treba biti kombinacija alfanumeričkih znakova i biti barem 8 znakova\n"
+"duga. Nikad ne zapisujte \"root\" šifru -- time vaš sistem postaje lagano\n"
+"kompromitovati.\n"
+"\n"
+"Jedan izuzetak: ne dozvolite da šifra bude preduga ili prekomplikovana\n"
+"pošto ćete je morati zapamtiti!\n"
+"\n"
+"Šifra neće biti prikazana na ekranu dok je unosite. Da bismo smanjili\n"
+"mogućnost greške zbog kucanja naslijepo, moraćete unijeti šifru dva puta.\n"
+"Ako nekim slučajem ponovite istu grešku dva puta, ovu ''neispravnu'' šifru\n"
+"trebate koristiti prilikom prve prijave kao \"root\".\n"
+"\n"
+"Ako želite da pristup ovom računaru bude kontroliran pomoću servera za\n"
+"provjeru identiteta (authentication), kliknite na dugme \"%s\".\n"
+"\n"
+"Ako vaša mreža koristi LDAP, NIS ili PDC Windows domen servise za\n"
+"provjeru identiteta, izaberite odgovarajući kao \"%s\". Ako ne znate koji\n"
+"koristiti, pitajte vašeg mrežnog administratora.\n"
+"\n"
+"Ako imate problema sa pamćenjem šifara, ako vaš računar neće biti spojen\n"
+"na Internet i ako apsolutno vjerujete svakome ko mu ima fizički pristup,\n"
+"možete izabrati opciju \"%s\"."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "provjera autentičnosti"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"\"Boot loader\" je mali program koji se pokreće prilikom paljenja računara.\n"
+"On je odgovoran za izbor i pokretanje operativnog sistema. Faza izbora boot\n"
+"loadera je obično automatizovana. DrakX će analizirati boot sektor diska i\n"
+"postupati u skladu s onim što zatekne tamo:\n"
+"\n"
+" * ako pronađe Windows boot sektor, biće zamijenjen sa GRUB/LILO boot\n"
+"sektorom. Na ovaj način bićete u mogućnosti da učitate ili GNU/Linux ili\n"
+"neki drugi OS koji je instaliran na vašem računaru.\n"
+"\n"
+" * ako pronađe GRUB ili LILO boot sektor, zamijeniće ga novim.\n"
+"\n"
+"Ako ne može donijeti odluku, DrakX će vas pitati gdje da postavi\n"
+"bootloader. Generalno, \"%s\" je najsigurnije mjesto. Birajući \"%s\"\n"
+"izbjeći ćete instalaciju bootloadera. Koristite ovu opciju samo ako znate\n"
+"šta radite."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Sada je vrijeme da izaberete sistem štampe za vaš računar. Drugi\n"
+"operativni sistemi vam možda nude jedan, ali Mandriva Linux nudi\n"
+"dva. Svaki od ovih sistema je najbolji za određenu vrstu konfiguracije.\n"
+"\n"
+"* \"%s\" -- skraćeno za ``štampaj i nemoj stavljati u red'' (print, do not\n"
+"queue) je najbolji izbor ako imate direktnu vezu na štampač, želite izlaz\n"
+"za paniku u slučajevima zaglavljivanja papira i nemate mrežne štampače.\n"
+"(\"%s\" može riješiti samo vrlo jednostavne mrežne slučajeve i pomalo je\n"
+"spor kada se koristi sa mrežama.) Preporučujemo da koristite \"pdq\" ako\n"
+"je ovo vaše prvo iskustvo sa GNU/Linuxom.\n"
+"\n"
+"* \"%s\" znači ``Common UNIX Printing System'' (uobičajeni UNIX sistem "
+"štampe)\n"
+"je odličan izbor za štampanje na štampač koji se nalazi lokalno ili s druge\n"
+"strane planete. Vrlo ga je jednostavno podesiti i može služiti kao server "
+"ili\n"
+"klijent za prastari \"lpd\" sistem štampe, tako da je kompatibilan sa "
+"starijim\n"
+"operativnim sistemima kojima možda još trebaju usluge štampanja. Mada je\n"
+"vrlo moćan, osnovno podešavanje je skoro jednako lagano kao za \"pdq\".\n"
+"Ako želite simulirati \"lpd\" server, provjerite da li ste pokrenuli \"cups-"
+"lpd\"\n"
+"servis. \"%s\" uključuje grafičke alate za štampanje ili izbor opcija "
+"štampača,\n"
+"te za upravljanje štampačem.\n"
+"\n"
+"Ako sada napravite izbor, pa kasnije zaključite da vam se ne sviđa izabrani\n"
+"sistem štampe, možete ga promijeniti pokretanjem PrinterDrake iz\n"
+"Mandriva Linux Kontrolnog centra i klikanjem na dugme \"%s\"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Ekspert"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX će najprije potražiti sve IDE uređaje prisutne na vašem računaru.\n"
+"Također će pretražiti sistem za jednu ili više PCI SCSI kartica. Ako\n"
+"SCSI kartica bude pronađena, DrakX će automatski instalirati odgovarajući\n"
+"drajver.\n"
+"\n"
+"Budući da pronalaženje hardware-a nikad nije savršeno, DrakX možda neće\n"
+"pronaći vaše hard diskove. Ako se to desi, moraćete ih navesti ručno.\n"
+"\n"
+"Ako je potrebno da ručno odaberete PCI SCSI adapter, DrakX će vas pitati\n"
+"da li želite navesti neke opcije za njega. Trebate dopustiti DrakXu da\n"
+"ispita hardware za neke opcije specifične za tu karticu. Obično DrakX "
+"prolazi\n"
+"kroz ovaj korak bez problema.\n"
+"\n"
+"Ako DrakX ne može ispitati opcije koje trebaju biti proslijeđene, moraćete\n"
+"ručno navesti opcije za drajver."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": ako je na vašem sistemu otkrivena zvučna kartica, ona će\n"
+"biti prikazana ovdje. Ako primijetite da prikazana zvučna kartica nije ona\n"
+"koja je ustvari dio vašeg sistema, možete kliknuti na dugme i odabrati neki\n"
+"drugi drajver."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"DrakX će vam pružiti sažetak raznih informacija koje su prikupljene\n"
+"o vašem sistemu. Ovisno o instaliranom hardveru, vjerovatno imate\n"
+"neke ili sve od navedenih stavki. Pojedinačna stavka se sastoji od\n"
+"onoga što je potrebno podesiti, nakon čega slijedi kraći sažetak trenutne\n"
+"konfiguracije. Da biste ovo izmijenili, kliknite na odgovarajuće dugme \"%s"
+"\".\n"
+"\n"
+"* \"%s\": provjerite trenutnu mapu tastature i izmijenite je ako je\n"
+" potrebno.\n"
+"\n"
+"* \"%s\": provjerite trenutno izabranu državu. Ako se nalazite negdje\n"
+"drugo, kliknite na dugme \"%s\" i izaberite neku drugu. Ako se vaša\n"
+"zemlja ne nalazi na prikazanoj listi, kliknite na dugme \"%s\" da biste\n"
+"dobili cjelokupnu listu zemalja.\n"
+"\n"
+"* \"%s\": DrakX automatski određuje vašu vremensku zonu\n"
+"na osnovu države koju ste izabrali. Možete kliknuti na dugme \"%s\"\n"
+"ako ovo nije ispravno.\n"
+"\n"
+"* \"%s\": provjerite trenutnu konfiguraciju miša i klinite na dugme da je\n"
+"promijenite ako je to potrebno.\"\n"
+"\n"
+"* \"%s\": klikanjem na dugme \"%s\" otvoriće se čarobnjak za\n"
+"podešavanje štampača. Pogledajte odgovarajuće poglavlje ''Vodiča za\n"
+"početnike'' za više informacija o podešavanju novog štampača. Interfejs\n"
+"koji je prikazan u našem priručniku je sličan onom koji će biti korišten "
+"tokom instalacije.\n"
+"\n"
+"* \"%s\": ako je na vašem sistemu otkrivena zvučna kartica, ona će\n"
+"biti prikazana ovdje. Ako primjetite da prikazana zvučna kartica nije ona\n"
+"koja je ustvari dio vašeg sistema, možete kliknuti na dugme i odabrati neki\n"
+"drugi drajver.\n"
+"\n"
+"* \"%s\": ako je na vašem sistemu prepoznata TV kartica, biće\n"
+"prikazana ovdje. Ako imate TV karticu koja nije prepoznata, kliknite na\n"
+"dugme \"%s\" kako biste pokušali podesiti je ručno.\n"
+"\n"
+" * \"%s\": možete kliknuti na \"%s\" da promijenite parametre pridružene\n"
+"kartici ako mislite da je konfiguracija neispravna.\n"
+"\n"
+"* \"%s\": DrakX će podesiti vaš grafički interfejs za rad na\n"
+"rezoluciji \"800x600\" ili \"1024x768\". Ako vam to ne odgovara, kliknite\n"
+"na dugme \"%s\" kako biste drugačije podesili vaš interfejs.\n"
+"\n"
+"* \"%s\": ako želite, možete podesiti vaš Internet pristup ili pristup\n"
+"lokalnoj mreži. Pogledajte štampanu dokumentaciju ili koristite\n"
+"Mandriva Linux Kontrolni centar nakon što je završena instalacija\n"
+"kako biste koristili ugrađenu pomoć. \n"
+" * \"%s\": omogućuje vam da podesite adrese HTTP i FTP proxyja ako\n"
+"se računar na koji instalirate nalazi iza proxy servera.\n"
+"\n"
+"* \"%s\": ovdje možete promijeniti nivo sigurnosti sistema koji\n"
+"je podešen u prethodnom koraku ().\n"
+"\n"
+"* \"%s\": ako planirate povezati vaš računar na Internet, pametno je\n"
+"zaštititi ga od upada postavljanjem firewalla. Pogledajte odgovarajuće\n"
+"poglavlje ''Vodiča za početnike'' za detalje o podešavanju firewalla.\n"
+"\n"
+"* \"%s\": ako želite promijeniti postavke bootloadera, kliknite na to\n"
+"dugme. Ovo bi trebalo biti rezervisano za napredne korisnike. Pogledajte\n"
+"štampanu dokumentaciju ili pomoć za bootloader konfiguraciju uključenu\n"
+"u Mandriva Linux Kontrolni centar.\n"
+"\n"
+"* \"%s\": ovdje možete fino podešavati koji servisi će biti pokrenuti\n"
+"na vašem računaru. Ako planirate koristiti ovaj računar kao server,\n"
+"dobra je ideja još jednom pregledati ove postavke."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN kartica"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Grafički interfejs"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Izaberite hard disk koji želite obrisati kako biste instalirali vašu novu\n"
+"Mandriva Linux particiju. Budite pažljivi, svi podaci koji se nalaze na\n"
+"njemu će biti izgubljeni i neće se moći vratiti!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Kliknite na \"%s\" ako želite obrisati sve podatke i particije koje\n"
+"su prisutne na ovom hard disku. Budite oprezni, jer nakon klikanja na\n"
+"\"%s\" nećete moći vratiti podatke i particije koji se trenutno nalaze\n"
+"na ovom hard disku, uključujući i sve Windows podatke.\n"
+"\n"
+"Kliknite na \"%s\" da prekinete ovu operaciju bez gubitka\n"
+"podataka i particija na ovom hard disku."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Dalje ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Nazad"
+
diff --git a/perl-install/install/help/po/ca.po b/perl-install/install/help/po/ca.po
new file mode 100644
index 000000000..fc6d9a848
--- /dev/null
+++ b/perl-install/install/help/po/ca.po
@@ -0,0 +1,1966 @@
+# translation of ca.po to Catalan
+# translation of DrakX.po to Catalan
+# Copyright (C) 2000-2004, 2005 Free Software Foundation, Inc.
+# Softcatala, softcatala.org, 2000-2003
+# Albert Astals Cid <astals11@terra.es>, 2003-2004, 2005.
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: ca\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-09-13 23:24+0200\n"
+"Last-Translator: Albert Astals Cid <astals11@terra.es>\n"
+"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.9.1\n"
+"Plural-Forms: nplurals=2; plural=n!=1;\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Abans de continuar, llegiu atentament les clàusules de la llicència. "
+"Cobreix\n"
+"tota la distribució Mandriva Linux. Si esteu d'acord amb tots els termes de "
+"la\n"
+"llicència, feu clic al quadre \"%s\"; si no, prémer el botó \"%s\"\n"
+"reiniciarà el vostre ordinador."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"El GNU/Linux és un sistema multiusuari; això vol dir que cada usuari pot\n"
+"tenir les seves pròpies preferències, els seus propis fitxers, etc. Podeu "
+"llegir\n"
+"la ``Guia d'iniciació''\n"
+" per aprendre més coses sobre els sistemes\n"
+"multiusuari. Però, a diferència del \"root\", que és l'administrador del "
+"sistema,\n"
+"als usuaris que afegiu aquí no se'ls permetrà modificar res tret dels seus "
+"propis\n"
+"fitxers i configuracions, protegint així el sistema de canvis, intencionats "
+"o no, \n"
+" que tenen efecte sobre tot el sistema . Cal que us creeu, com a mínim, un "
+"usuari\n"
+"normal, i és aquest compte el que heu d'utilitzar per a l'ús quotidià. Tot i "
+"que\n"
+"és molt fàcil entrar com a \"root\" per a tot, també pot ser molt perillós: "
+"la més\n"
+"petita errada podria significar que el sistema deixés de funcionar. Si "
+"cometeu\n"
+"una errada greu com a usuari normal el pitjor que pot passar és que perdeu\n"
+"algunes daDES, però sense afectar a tot el sistema.\n"
+"\n"
+"Primer, heu d'introduir el vostre nom real. Per suposat, això no és "
+"obligatori,\n"
+"ja que podeu introduir el que vulgueu. DrakX agafarà la primera paraula\n"
+"que heu introduït en aquest camp i la copiarà en el camp \"%s\", que serà "
+"el\n"
+"nom que utilitzarà aquest usuari per entrar al sistema (ho podeu canviar si\n"
+"voleu). Després cal que introduïu una contrasenya. Des del punt de vista de\n"
+"la seguretat, una contrasenya d'un usuari no privilegiat (habitual) no és "
+"tan\n"
+"important com la del \"root\" des del punt de vista de la seguretat, però no "
+"hi\n"
+"ha cap raó per menystenir-la, deixant-la en blanc o fent-la massa senzilla: "
+"al\n"
+"cap i a la fi, els vostres fitxers poden estar en joc.\n"
+"\n"
+"Un cop hagueu fet clic a \"%s\" podreu afegir altres usuaris. Afegiu-ne un\n"
+"per a tothom que hagi de fer servir l'ordinador. Feu clic a \"%s\" quan "
+"hagueu\n"
+"acabat d'afegir-ne.\n"
+"\n"
+"Feu clic al botó \"%s\" per canviar l'intèrpret d'ordres (\"shell\") per "
+"defecte\n"
+"(bash) de l'usuari seleccionat. \n"
+"\n"
+"Quan hagueu acabat d'afegir usuaris, se us proposarà decidir quin usuari\n"
+"entrarà automàticament en el sistema en arrencar l'ordinador. Si us\n"
+"interessa aquesta característica (i no us importa gaire la seguretat "
+"local), \n"
+"trieu l'usuari i el gestor de finestres desitjat i feu clic a \"%s\".\n"
+"Si no hi esteu interessat, desactiveu el quadre \"%s\"."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Voleu utilitzar aquesta característica?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Aquestes són les particions de Linux existents que s'han detectat al disc "
+"dur.\n"
+"Podeu conservar les decisions preses per l'auxiliar, atès que són les "
+"adequades\n"
+"per a les instal·lacions més habituals. Si hi feu algun canvi, com a mínim "
+"heu\n"
+"de definir una partició arrel (\"/\"). No trieu una partició massa petita "
+"perquè\n"
+"no podríeu instal·lar-hi prou programari. Si voleu emmagatzemar les dades en "
+"una\n"
+"altra partició, us caldrà crear una partició \"/home\" (això només serà "
+"possible\n"
+"si hi ha més d'una partició de Linux disponible).\n"
+"\n"
+"Cada partició està identificada d'aquesta manera: \"Nom\", \"Capacitat\".\n"
+"\n"
+"\"Nom\" es compon de: \"tipus d'unitat de disc\", \"número d'unitat de disc"
+"\",\n"
+"\"número de la partició\" (per exemple, \"hda1\").\n"
+"\n"
+"El \"Tipus d'unitat de disc\" és \"hd\" si la vostre unitat de disc és IDE i "
+"\"sd\" si és SCSI.\n"
+"\n"
+"El \"Número de la unitat de disc\" és sempre una lletra després d'\"hd\" o "
+"\"sd\".\n"
+"Per a unitats de disc IDE:\n"
+"\n"
+" * \"a\" significa \"unitat de disc mestra en el controlador IDE primari\",\n"
+"\n"
+" * \"b\" significa \"unitat de disc esclava en el controlador IDE primari"
+"\",\n"
+"\n"
+" * \"c\" significa \"unitat de disc mestra en el controlador IDE secundari"
+"\",\n"
+"\n"
+" * \"d\" significa \"unitat de disc esclava en el controlador IDE secundari"
+"\".\n"
+"\n"
+"Amb unitats de disc SCSI, una \"a\" significa \"ID SCSI més baixa\",\n"
+"una \"b\" significa \"segona ID SCSI més baixa\", etc."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"La instal·lació del Mandriva Linux està repartida en diversos CD-ROM. Si\n"
+"un dels paquets escollits està en un altre CD-ROM, DrakX expulsarà el CD\n"
+"actual i us demanarà que n'inseriu un altre. Si no teniu el CD necessari a\n"
+"mà, premeu \"%s\" i els paquets corresponents no s'instal·laran."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Ha arribat el moment d'indicar els programes que voleu instal·lar en el\n"
+"sistema. Mandriva Linux té milers de paquets, i per facilitar-ne la\n"
+"gestió s'han distribuït en grups d'aplicacions similars.\n"
+"\n"
+"Mandriva Linux agrupa els paquets en quatre categories. Podeu mesclar i fer\n"
+"coincidir aplicacions de grups diversos, de manera que una instal·lació\n"
+"d'``Estació de treball'' pot perfectament tenir instal·lades aplicacions\n"
+"de la categoria ``Servidor'' \n"
+" * \"%s\": si voleu utilitzar l'ordinador com a estació de treball,\n"
+"seleccioneu un o més grups de la categoria estació de treball.\n"
+"\n"
+" * \"%s\": si penseu utilitzar la vostra màquina per programar, escolliu\n"
+"els grups adients d'aquesta categoria. El grup especial \"LSB\"\n"
+"configurarà el vostre sistema per tal que compleixi tant com sigui\n"
+"possible amb les especificacions Linux Standard Base.\n"
+"\n"
+" Seleccionar el grup \"LSB\" també instal·larà un kernel \"2.4\",\n"
+"en comptes del \"2.6\". Això es fa per assegurar que els sistema\n"
+"compleixi al 100%% amb LSB. Si no seleccioneu el grup \"LSB\"\n"
+"encara tindreu un sistema que compleix la LSB quasi al 100%%.\n"
+"\n"
+" * \"%s\": si l'ordinador s'ha d'utilitzar com a servidor, seleccioneu\n"
+"quins dels serveis més habituals voleu instal·lar\n"
+"\n"
+" * \"%s\": aquí és on escollireu quin és el vostre entorn gràfic\n"
+"preferit. Heu de seleccionar-ne un com a mínim si voleu tenir una\n"
+"interfície gràfica.\n"
+"\n"
+"Si moveu el cursor per sobre d'un nom de grup veureu una breu explicació\n"
+"d'aquest grup.\n"
+"\n"
+"Podeu marcar la casella \"%s\", que és útil si esteu familiaritzat amb els\n"
+"diversos paquets o si voleu tenir un control total sobre el que "
+"s'instal·larà.\n"
+"\n"
+"Si heu començat la instal·lació en el mode \"%s\", podeu desseleccionar \n"
+"tots els grups si voleu evitar que s'instal·li cap paquet nou. Això és\n"
+"útil per reparar o actualitzar un sistema existent.\n"
+"Si desseleccioneu tots els grups quan estigueu fent una\n"
+"instal·lació normal (i no una actualització), se us presentarà un diàleg \n"
+"proposant-vos diferents opcions per a una instal·lació mínima:\n"
+"\n"
+" * \"%s\": instal·la els mínims paquets necessaris per tenir un\n"
+"entorn gràfic funcional\n"
+"\n"
+" * \"%s\": instal·la el sistema base i les utilitats bàsiques amb la seva\n"
+"documentació. Aquesta instal·lació és adequada per configurar un servidor;\n"
+"\n"
+" * \"%s\": instal·la el nombre mínim de paquets necessari per aconseguir un\n"
+"sistema Linux operatiu, només amb una interfície de línia d'ordres. Aquesta\n"
+"instal·lació ocupa uns 65 MB."
+
+#
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Actualitza"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Amb la documentació bàsica"
+
+#
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Instal·lació mínima real"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Si heu dit a l'instal·lador que volíeu seleccionar els paquets "
+"individualment\n"
+"se us presentarà un arbre amb tots els paquets classificats per grups i\n"
+"subgrups. Mentre navegueu per l'arbre, podeu seleccionar grups complets,\n"
+"subgrups o paquets individuals.\n"
+"\n"
+"Cada cop que seleccioneu un paquet de l'arbre, apareixerà una descripció a \n"
+"la dreta que us informarà de la finalitat del paquet.\n"
+"\n"
+"!! Si heu seleccionat un paquet de servidor, intencionadament o perquè\n"
+"formava part d'un grup, se us demanarà que confirmeu si realment voleu\n"
+"instal·lar aquests servidors. Per defecte, Mandriva Linux "
+"iniciaràautomàticament qualsevol servidor durant l'arrencada. Tot i que\n"
+"siguin segurs i no tinguin cap problema conegut quan es publica la\n"
+"distribució, és totalment possible que es descobreixin forats de seguretat\n"
+"després que aquesta versió de Mandriva Linux quedi finalitzada.\n"
+"Si no sabeu què se suposa que fa un servei en particular, o per què s'està\n"
+"instal·lant, feu clic a \"%s\". Per defecte, si feu clic a \"%s\" els "
+"serveis\n"
+"llistats s'instal·laran i s'iniciaran automàticament durant l'arrencada. !!\n"
+"\n"
+"L'opció \"%s\" s'utilitza per inhabilitar el diàleg d'advertència que\n"
+"apareix quan l'instal·lador selecciona automàticament un paquet per "
+"resoldre\n"
+"dependències. Alguns paquets estan relacionats els uns amb els\n"
+"altres, de manera que la instal·lació d'un paquet fa que calgui instal·lar\n"
+"també algun altre programa. L'instal·lador pot determinar quins paquets "
+"calen\n"
+"per satisfer una dependència i completar la instal·lació satisfactòriament.\n"
+"\n"
+"La diminuta icona d'un disquet al peu de la llista us permet carregar una\n"
+"llista de paquets creada en una instal·lació anterior. Això és útil si "
+"teniu\n"
+"un cert nombre d'ordinadors que voleu configurar de manera idèntica. Si feu\n"
+"clic a aquesta icona se us demanarà que inseriu un disquet creat "
+"anteriorment\n"
+"al final d'una altra instal·lació. Vegeu el segon suggeriment de l'últim "
+"pas\n"
+"per saber com crear aquest disquet."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Dependències automàtiques"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": feu clic al botó \"%s\" per obrir l'auxiliar de configuració de la\n"
+"impressora. Consulteu el capítol corresponent de la ``Guia d'iniciació''\n"
+"per tenir més informació en quant a la configuració de noves impressores.\n"
+"La interfície que apareix és similar a la que s'utilitza durant la "
+"instal·lació."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"En aquest diàleg escollireu els serveis que voleu que s'iniciïn durant "
+"l'arrencada.\n"
+"\n"
+"DrakX farà una llista de tots els serveis disponibles en la instal·lació "
+"actual.\n"
+"Reviseu-los amb cura i desmarqueu aquells que no siguin necessaris durant "
+"l'arrencada.\n"
+"\n"
+"Podeu obtenir una explicació breu sobre un servei si el seleccioneu. Si no\n"
+"esteu segur de la utilitat d'un servei, el més segur és deixar el "
+"comportament\n"
+"per defecte.\n"
+"\n"
+"!! Aneu especialment amb cura en aquest pas si penseu utilitzar l'ordinador "
+"com\n"
+"a servidor: segurament no voldreu iniciar serveis que no necessiteu.\n"
+"Recordeu que hi ha diversos serveis que poden ser perillosos si s'habiliten\n"
+"en un servidor. En general, seleccioneu només els serveis que realment "
+"necessiteu. !!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux gestiona l'hora en GMT (Greenwich Mean Time) i el tradueix a\n"
+"l'hora local d'acord amb la zona horària seleccionada. Si el rellotge de la\n"
+"placa base indica l'hora local, podeu desactivar-ho desseleccionant \"%s\", "
+"i\n"
+"això informarà a GNU/Linux que el rellotge del sistema i el rellotge del\n"
+"maquinari són a la mateixa zona horària. Això és convenient quan la màquina\n"
+"també té instal·lat un altre sistema operatiu.\n"
+"\n"
+"L'opció \"%s\" regularà automàticament l'hora connectant-se a un servidor\n"
+"horari remot d'Internet. Per tal que funcioni aquesta funció us caldrà "
+"tenir\n"
+"connexió a Internet. És millor triar un servidor que estigui ubicat a prop\n"
+"vostre. De fet, aquesta opció instal·la un servidor d'hora que altres "
+"màquines\n"
+"de la vostra xarxa local també podran utilitzar."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Sincronització automàtica de la hora"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Targeta gràfica\n"
+"\n"
+" Normalment, l'instal·lador detectarà automàticament i configurarà la\n"
+"targeta gràfica que tingueu instal·lada a l'ordinador. Si no fos així, la\n"
+"podeu seleccionar d'aquesta llista.\n"
+"\n"
+" Cas que hi hagi diferents servidors per a la targeta, amb o sense\n"
+"acceleració 3D, se us demanarà que trieu el servidor que us sigui\n"
+"més convenient."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (per sistema X Window) és el cor de la interfície gràfica de GNU/Linux\n"
+"de què depenen tots els entorns gràfics (KDE, GNOME, AfterStep, \n"
+"WindowMaker, etc.) que venen amb Mandriva Linux.\n"
+"\n"
+"Veureu una relació de diferents paràmetres que podeu canviar per aconseguir\n"
+"una visualització gràfica òptima.\n"
+"\n"
+"Targeta gràfica\n"
+"\n"
+" Normalment, l'instal·lador detectarà i configurarà automàticament la\n"
+"targeta gràfica instal·lada a l'ordinador. Si no fos així, podeu escollir\n"
+"de la llista la targeta que realment tingueu instal·lada.\n"
+"\n"
+" En cas que hi hagi diferents servidors disponibles per a la vostra\n"
+"targeta, amb o sense acceleració 3D, se us demanarà que escolliu el que\n"
+"més us convingui.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normalment, l'instal·lador detectarà i configurarà automàticament el\n"
+"monitor que teniu connectat a l'ordinador. Si no és correcte, podreu triar\n"
+"d'aquesta llista el monitor que realment teniu connectat a l'ordinador.\n"
+"\n"
+"\n"
+"\n"
+"Resolució\n"
+"\n"
+" Aquí podeu triar les resolucions i profunditats de color disponibles per\n"
+"al vostre maquinari. Trieu la que us vagi més bé (tot i que podreu\n"
+"canviar-la després de la instal·lació). Al monitor veureu una mostra de la\n"
+"configuració triada.\n"
+"\n"
+"\n"
+"\n"
+"Prova\n"
+"\n"
+" Depenent del maquinari aquesta entrada pot no aparèixer.\n"
+"\n"
+" El sistema intentarà obrir una pantalla gràfica amb la resolució\n"
+"desitjada. Si podeu veure el missatge durant la prova i responeu \"%s\",\n"
+"DrakX passarà al pas següent. Si no el podeu veure, vol dir que la\n"
+"configuració detectada automàticament no era del tot correcta i la prova\n"
+"finalitzarà automàticament al cap de 12 segons, portant-vos de nou al menú.\n"
+"Canvieu els paràmetres fins que obtingueu una pantalla gràfica correcta.\n"
+"\n"
+"\n"
+"\n"
+"Opcions\n"
+"\n"
+" Aquí podeu decidir si voleu que l'ordinador canviï automàticament a una\n"
+"interfície gràfica en arrencar. Òbviament, voldreu activar \"%s\" si\n"
+"l'ordinador ha d'actuar com a servidor, o si no heu aconseguit\n"
+"configurar la pantalla."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+"\n"
+" Normalment, l'instal·lador detectarà i configurarà automàticament el\n"
+"monitor que teniu connectat a l'ordinador. Si no és correcte, podreu triar\n"
+"d'aquesta llista el monitor que realment teniu connectat a l'ordinador."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Resolució\n"
+"\n"
+" Aquí podeu triar les resolucions i profunditats de color disponibles per\n"
+"al vostre maquinari. Trieu la que us vagi més bé (tot i que podreu\n"
+"canviar-la després de la instal·lació). Al monitor veureu una mostra de la\n"
+"configuració triada."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"En cas que hi hagi diferents servidors disponibles per a la vostra\n"
+"targeta, amb o sense acceleració 3D, se us demanarà que escolliu\n"
+"el servidor que més us convingui."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Opcions\n"
+"\n"
+" Aquí podeu decidir si voleu que l'ordinador canviï automàticament a una\n"
+"interfície gràfica en arrencar. Òbviament, activareu \"%s\" si l'ordinador\n"
+"ha de ser un servidor, o si no heu pogut configurar la pantalla."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Ara és quan heu de decidir en quin lloc del vostre disc dur voleu\n"
+"instal·lar el sistema operatiu Mandriva Linux. Si el disc és buit,\n"
+"o si un sistema operatiu existent n'utilitza tot l'espai disponible,\n"
+"us caldrà particionar-lo. Bàsicament, particionar un disc dur\n"
+"consisteix a dividir-lo de manera lògica per crear espai on\n"
+"instal·lar el nou sistema Mandriva Linux.\n"
+"\n"
+"Atès que els efectes d'aquest procés solen ser irreversibles i poden\n"
+"implicar pèrdua de dades si ja teniu un sistema operatiu instal·lat, el\n"
+"particionament us pot espantar si sou un usuari sense experiència.\n"
+"Per sort, DrakX inclou un auxiliar que simplifica aquest procés.\n"
+"Abans de continuar, però, llegiu la resta d'aquesta secció i,\n"
+"sobre tot, preneu-vos el temps que calgui.\n"
+"\n"
+"Segons la configuració del vostre disc dur, hi ha diverses opcions\n"
+"possibles:\n"
+"\n"
+" * \"%s\": aquesta opció particionarà automàticament les unitats buides.\n"
+"Amb aquesta opció no se us farà cap pregunta més.\n"
+"\n"
+" * \"%s\": l'auxiliar ha detectat una o més particions de Linux al vostre\n"
+"disc dur. Si voleu utilitzar-les, escolliu aquesta opció. Se us demanarà\n"
+"que trieu els punts de muntatge associats a cadascuna de les particions.\n"
+"Els punts de muntatge existents se seleccionen per defecte, i en la\n"
+"majoria dels casos és bona idea conservar-los.\n"
+"\n"
+" * \"%s\" Si teniu el Microsoft Windows instal·lat al disc dur i n'ocupa\n"
+"tot l'espai disponible, caldrà crear espai lliure per a GNU/Linux. Per\n"
+"fer-ho, podeu suprimir la partició i les dades del Windows\n"
+"(consulteu la solució ``Esborrar completament el disc'') o canviar\n"
+"la mida de la partició FAT o NTFS de Windows. Aquest canvi de mida\n"
+"es pot dur a terme sense cap pèrdua de dades, sempre que la\n"
+"partició de Windows hagi estat desfragmentada prèviament.\n"
+"És molt recomanable, fer una còpia de seguretat de les dades.\n"
+"Aquesta opció és la més recomanable si voleu utilitzar tant\n"
+"Mandriva Linux com Microsoft Windows al mateix ordinador.\n"
+"\n"
+" Abans de decidir-vos per aquesta opció, penseu que en acabar la partició\n"
+"de Microsoft Windows serà més petita que anteriorment. Tindreu menys espai\n"
+"lliure a Microsoft Windows per emmagatzemar-hi dades o instal·lar-hi més "
+"programari.\n"
+"\n"
+" *\"%s\": si voleu suprimir totes les dades i particions que teniu al disc\n"
+"dur i substituir-les pel sistema Mandriva Linux, podeu escollir aquesta\n"
+"opció. Aneu amb compte, però, perquè, un cop la confirmeu, no podreu\n"
+"fer-vos enrere.\n"
+"\n"
+" ¡¡ Si trieu aquesta opció, totes les dades del disc s'esborraran !!.\n"
+"\n"
+" *\"%s\": aquesta opció apareix quan el disc dur està completament ple\n"
+"per Microsoft Windows. Escollir aquest opció esborrarà tot el contingut del "
+"disc i\n"
+"començarà de nou, particionant des de zero.\n"
+" ¡¡ Si trieu aquesta opció, totes les dades del disc s'esborraran !!.\n"
+"\n"
+" * \"%s\": si voleu particionar el disc dur manualment, podeu triar aquesta\n"
+"opció. Aneu amb compte: és una opció molt potent però també perillosa, ja\n"
+"que podeu perdre fàcilment totes les dades. Per tant, aquesta opció només "
+"és\n"
+"recomanable si heu fet abans alguna cosa similar i teniu una mica\n"
+"d'experiència. Trobareu més instruccions sobre la utilitat DiskDrake a la\n"
+"secció ``Gestió de les particions'' de la ``Guia d'iniciació''."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Utilitza les particions existents"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Esborra tot el disc"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Ja ho teniu. S'ha completat la instal·lació i el vostre sistema GNU/Linux\n"
+"està preparat per fer-se servir. Simplement premeu \"%s\" per reiniciar el\n"
+"sistema. No oblideu treure la font d'instal·lació (CD-ROM o disquet).\n"
+"La primera cosa que veureu, després que l'ordinador hagi finalitzat les\n"
+"comprovacions de maquinari, és el menú del carregador d'arrencada, que us\n"
+"deixa triar el sistema operatiu amb què voleu iniciar.\n"
+"\n"
+"El botó \"%s\" mostra dos botons més per:\n"
+"\n"
+" * \"%s\": per crear un disquet d'instal·lació que realitzarà\n"
+"automàticament una instal·lació completa sense l'ajuda d'un operador,\n"
+"semblant a la instal·lació que acabeu de configurar.\n"
+"\n"
+" Tingueu en compte que hi ha dues opcions diferents després de fer clic al "
+"botó:\n"
+"\n"
+" * \"%s\". Aquesta és una instal·lació parcialment automatitzada; el pas\n"
+"de particionament és l'únic procediment interactiu.\n"
+"\n"
+" * \"%s\". Instal·lació completament automatitzada: el disc dur es\n"
+"reescriu completament i totes les dades es perden.\n"
+"\n"
+" Aquesta característica és força útil quan es fa una instal·lació a un\n"
+"cert nombre d'ordinadors similars. En trobareu més informació a la secció\n"
+"d'instal·lació automàtica del nostre lloc web.\n"
+"\n"
+" * \"%s\": desa una llista dels paquets seleccionats en aquesta\n"
+"instal·lació. Per utilitzar aquesta selecció en una altra instal·lació,\n"
+"inseriu el disquet i inicieu la instal·lació. A l'indicador, premeu la\n"
+"tecla F1, i escriviu >>linux defcfg=\"floppy\"<< i premeu la tecla [Enter].\n"
+"\n"
+"(*) Cal un disquet formatejat amb FAT. Per crear-ne un a GNU/Linux, \n"
+"escriviu \"mformat a:\", o \"fdformat /dev/fd0\" seguit de\n"
+"\"mkfs.vfat /dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Genera un disquet per a la instal·lació automàtica"
+
+#: ../help.pm:415
+#, fuzzy, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Per poder utilitzar les particions que s'acaben de definir cal formatar-les\n"
+"(la formatació consisteix a crear-hi un sistema de fitxers).\n"
+"\n"
+"En aquest punt, potser voldreu tornar a formatar algunes de les particions\n"
+"existents per eliminar les dades que contenen. Si és així, seleccioneu\n"
+"també aquestes particions.\n"
+"\n"
+"Tingueu en compte que no cal tornar a formatar totes les particions que ja\n"
+"existien; heu de tornar a formatar les particions que continguin el sistema\n"
+"operatiu (com ara \"/\", \"/usr\" o \"/var\"), però no les que contenen\n"
+"dades que voleu conservar (habitualment, \"/home\").\n"
+"\n"
+"Aneu amb compte en seleccionar les particions; després de la formatació,\n"
+"totes les dades s'hauran suprimit i no en podreu recuperar cap.\n"
+"\n"
+"Feu clic a \"%s\" quan estigueu a punt per formatar les particions.\n"
+"\n"
+"Feu clic a \"%s\" si voleu seleccionar una altra partició per instal·lar\n"
+"el nou sistema Mandriva Linux.\n"
+"\n"
+"Feu clic a \"%s\" si voleu seleccionar particions on cercar-hi blocs "
+"defectuosos."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Ara esteu instal·lant Mandriva Linux, és probable que alguns paquets\n"
+"hagin estat actualitzats des de la data de llançament. Alguns errors poden\n"
+"haver estat resolts, i problemes de seguretat poden estar ja corregits.\n"
+"Per beneficiar-vos d'aquestes actualitzacions, les podeu baixar d'Internet.\n"
+"Trieu \"%s\" si teniu una connexió a Internet operativa, o \"%s\" si\n"
+"preferiu instal·lar-les més tard.\n"
+"\n"
+"Si trieu \"%s\" apareixerà una llista de llocs des d'on podeu baixar les\n"
+"actualitzacions. Escolliu la ubicació més propera. Aleshores, apareixerà\n"
+"un arbre de selecció de paquets: comproveu la selecció i premeu \"%s\" per\n"
+"baixar i instal·lar els paquets seleccionats, o \"%s\" per abandonar."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Ara és el moment de triar el nivell de seguretat desitjat per a la màquina.\n"
+"Com a norma general, el nivell de seguretat ha de ser més alt si la màquina\n"
+"conté dades importants, o si està connectada directament a Internet.\n"
+"Tanmateix, un nivell alt de seguretat sovint comporta una disminució de la\n"
+"facilitat d'ús.\n"
+"\n"
+"Si no sabeu quin escollir, deixeu l'opció per defecte.. Podreu canviar\n"
+"el nivell de seguretat més tard amb l'eina draksec del\n"
+"Centre de Control Mandriva Linux.\n"
+"\n"
+"Ompliu el camp \"%s\" amb l'adreça electrònica de la persona responsable\n"
+"de la seguretat. Els missatges de seguretat s'enviaran a aquesta adreça."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Administrador de seguretat"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Ara és quan heu de decidir quina(es) partició(ns) voleu utilitzar per\n"
+"instal·lar el sistema Mandriva Linux. Si ja s'han definit les particions\n"
+"en una instal·lació anterior de GNU/Linux o mitjançant una altra eina de\n"
+"particionament, podeu utilitzar les particions existents. En cas contrari,\n"
+"s'han de definir particions al disc dur.\n"
+"\n"
+"Per crear particions, primer heu de seleccionar un disc dur. Podeu\n"
+"seleccionar el disc que s'ha de particionar fent clic a ``hda'' per a la\n"
+"primera unitat IDE, ``hdb'' per a la segona, ``sda'' per a la primera "
+"unitat\n"
+"SCSI, etc.\n"
+"\n"
+"Per particionar el disc dur seleccionat, podeu utilitzar aquestes opcions:\n"
+"\n"
+" * \"%s\": aquesta opció suprimeix totes les particions que hi ha al\n"
+"disc dur seleccionat.\n"
+"\n"
+" * \"%s\": aquesta opció us permet crear automàticament les particions\n"
+"ext3 i d'intercanvi en l'espai lliure del disc dur.\n"
+"\n"
+"\"%s\": dóna accés a funcions addicionals:\n"
+"\n"
+" * \"%s\": desa la taula de particions en un disquet. És útil per a una\n"
+"recuperació posterior de la taula de particions si fos necessari. És molt\n"
+"recomanable que efectueu aquesta operació.\n"
+"\n"
+" * \"%s\": permet restaurar d'un disquet una taula de particions que hi\n"
+"hagueu desat prèviament.\n"
+"\n"
+" * \"%s\": si la taula de particions està malmesa, podeu provar de\n"
+"recuperar-la utilitzant aquesta opció. Aneu amb compte i recordeu que no\n"
+"sempre funciona.\n"
+"\n"
+" * \"%s\": descarta tots els canvis fets i torna a carregar la taula\n"
+"de particions original.\n"
+"\n"
+" * \"%s\": si desseleccioneu aquesta opció fareu que els usuaris hagin\n"
+"de muntar i desmuntar manualment les unitats de suports extraïbles, com ara\n"
+"els disquets i els CD-ROM.\n"
+"\n"
+" * \"%s\": utilitzeu aquesta opció si voleu utilitzar un auxiliar per\n"
+"particionar el vostre disc dur. Es recomana que l'utilitzeu si no teniu\n"
+"sòlids coneixements sobre particionament.\n"
+"\n"
+" * \"%s\": utilitzeu aquesta opció per cancel·lar els canvis.\n"
+"\n"
+" * \"%s\": permet accions addicionals en les particions (tipus,\n"
+"opcions, format) i dóna més informació sobre el disc dur.\n"
+"\n"
+" * \"%s\": quan hagueu acabat de particionar el disc dur, aquesta opció\n"
+"desarà els canvis al disc.\n"
+"\n"
+"En definir la mida d'una partició, podeu acabar d'afinar-la mitjançant\n"
+"les tecles de fletxa del teclat.\n"
+" \n"
+"Nota: podeu accedir a qualsevol opció mitjançant el teclat. Moveu-vos per\n"
+"les particions amb les tecles Tab i Fletxa amunt/Fletxa avall.\n"
+"\n"
+"Quan seleccioneu una partició, podeu utilitzar:\n"
+"\n"
+" * Ctrl+c per crear una nova partició (quan se n'ha seleccionat una de "
+"buida)\n"
+"\n"
+" * Ctrl+d per suprimir una partició\n"
+"\n"
+" * Ctrl+m per definir el punt de muntatge\n"
+"\n"
+"Per a més informació sobre els diferents sistemes de fitxers disponibles,\n"
+"llegiu el capítol sobre ext2FS del ``Manual de Referència''.\n"
+"\n"
+"Si esteu fent la instal·lació en un ordinador PPC, voldreu crear una\n"
+"petita partició ``bootstrap'' HFS d'un mínim d'1 MB per a ús del carregador\n"
+"d'arrencada yaboot. Si decidiu fer-la una mica més gran, per exemple de\n"
+"50 MB, us serà d'utilitat per emmagatzemar un nucli de recanvi i imatges\n"
+"del disc RAM per a situacions d'emergència durant l'arrencada."
+
+#
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Muntatge automàtic dels dispositius extraïbles"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Commuta entre els modes normal i expert"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"S'ha detectat més d'una partició de Microsoft a la unitat de disc.\n"
+"Si us plau, trieu quina d'elles voleu redimensionar per instal·lar el nou\n"
+"sistema operatiu Mandriva Linux.\n"
+"\n"
+"Cada partició està identificada d'aquesta manera: \"Nom Linux\",\n"
+"\"Nom Windows\" \"Capacitat\".\n"
+"\n"
+"\"Nom Linux\" es compon de: \"tipus d'unitat de disc dur\",\n"
+"\"número d'unitat de disc dur\", \"número de la partició\"\n"
+"(per exemple, \"hda1\").\n"
+"\n"
+"\"Tipus d'unitat de disc dur\" és \"hd\" si la vostre unitat de disc dur és\n"
+"IDE i \"sd\" si és SCSI.\n"
+"\n"
+"\"Número de la unitat de disc dur\" és sempre una lletra després d'\"hd\" o\n"
+"\"sd\". Amb unitats de disc IDE:\n"
+"\n"
+" * \"a\" significa \"unitat de disc mestra en el controlador IDE primari\",\n"
+"\n"
+" * \"b\" significa \"unitat de disc esclava en el controlador IDE primari"
+"\",\n"
+"\n"
+" * \"c\" significa \"unitat de disc mestra en el controlador IDE secundari"
+"\",\n"
+"\n"
+" * \"d\" significa \"unitat de disc esclava en el controlador IDE secundari"
+"\".\n"
+"\n"
+"Amb les unitats de disc SCSI, una \"a\" significa \"ID SCSI més baixa\",\n"
+"una \"b\" significa \"segona ID SCSI més baixa\", etc.\n"
+"\n"
+"\"Nom Windows\" és la lletra de la vostra unitat de disc sota Windows (el\n"
+"primer disc o partició s'anomena \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": comproveu que la selecció del país és correcta. Si no sou a\n"
+"aquest país, feu clic al botó \"%s\" i seleccioneu-ne un altre.\n"
+"Si el vostre país no és a la primera llista, feu clic al botó \"%s\" per\n"
+"obtenir una llista de països completa."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Aquest pas només s'activa si s'ha trobat una partició GNU/Linux antiga\n"
+"al vostre ordinador.\n"
+"\n"
+"DrakX necessita saber si voleu realitzar una instal·lació nova o\n"
+"una actualització d'un sistema Mandriva Linux existent:\n"
+"\n"
+" * \"%s\": aquesta opció destrueix gairebé del tot el sistema antic. Si\n"
+"voleu canviar les particions dels discs durs, o el sistema de fitxers,\n"
+"heu d'utilitzar aquesta opció. No obstant això, i depenent de l'esquema de\n"
+"particionament que tingueu, podeu evitar que part de les dades existents\n"
+"(per exemple els directoris \"home\") se sobreescriguin.\n"
+"\n"
+" * \"%s\": aquest tipus d'instal·lació us permet actualitzar els paquets\n"
+"que ja estan instal·lats al sistema Mandriva Linux. L'esquema de\n"
+"particionament actual i les dades d'usuari no queden afectades. La\n"
+"majoria de les altres fases de configuració queden disponibles, de\n"
+"manera similar a una instal·lació estàndard.\n"
+"\n"
+"L'opció “Actualitza” ha de funcionar correctament en sistemes Mandriva\n"
+"Linux amb la versió \"8.1\" o posteriors. No es recomana realitzar una\n"
+"actualització en versions de Mandriva Linux anteriors a la \"8.1\"."
+
+#: ../help.pm:594
+#, fuzzy, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"DrakX seleccionarà automàticament la configuració de teclat correcta\n"
+"segons l'idioma que hagueu escollit a Secció. Comproveu que la selecció\n"
+"us vagi bé o escolliu una altra configuració de teclat.\n"
+"\n"
+"Tanmateix, pot ser que tingueu un teclat que no correspongués exactament al\n"
+"vostre idioma: per exemple, si sou un suís que parla anglès, potser teniu "
+"un\n"
+"teclat suís. O, si parleu anglès però viviu al Quebec, us podeu trobar en "
+"la\n"
+"mateixa situació i el vostre teclat no coincidirà amb el vostre idioma. En\n"
+"tots dos casos, aquesta fase de la instal·lació us permetrà triar un teclat\n"
+"adequat d'una llista.\n"
+"\n"
+"Feu clic al botó \"%s\" per veure la llista completa de teclats "
+"disponibles.\n"
+"\n"
+"Si trieu una disposició de teclat basada en un alfabet no llatí, el diàleg\n"
+"següent us permetrà escollir la tecla que servirà per canviar entre les\n"
+"configuracions llatina i no llatina."
+
+#: ../help.pm:612
+#, fuzzy, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"L'idioma preferit que trieu afectarà a l'idioma de la documentació,\n"
+"l'instal·lador i a tot el sistema en general. Seleccioneu primer la\n"
+"regió on us trobeu i després l'idioma que parleu.\n"
+"\n"
+"Si feu clic al botó \"%s\" podreu seleccionar altres idiomes que vulgueu\n"
+"instal·lar a la vostra estació de treball. S'instal·laran els fitxers\n"
+"d'idioma específics de la documentació i de les aplicacions. Per exemple,\n"
+"si heu de tenir usuaris espanyols a l'ordinador, podeu triar l'anglès com a\n"
+"idioma per defecte a la vista d'arbre i marcar \"%s\" a la secció Avançat.\n"
+"\n"
+"En quant al suport UTF-8 (unicode): Unicode és una nova codificació de\n"
+"caràcters que cobreix tots els idiomes existents. El suport complet a\n"
+"GNU/Linux encara està sota desenvolupament. Per aquesta raó, Mandriva Linux\n"
+"l'usarà o no depenent de les opcions que esculli l'usuari:\n"
+"\n"
+" * Si escolliu un idioma amb una codificació existent forta(idiomes\n"
+"llatins, rus, japonès, xinès, coreà, thai, grec, turc, la majoria dels\n"
+"idiomes iso-8859-2), la codificació existent s'usarà per defecte;\n"
+"\n"
+" * La resta d'idiomes usaran unicode per defecte;\n"
+"\n"
+" * Si s'instal·len dos o més idiomes i aquests idiomes no usen la mateixa\n"
+"codificació, llavors s'usarà unicode per tot el sistema;\n"
+"\n"
+" * Finalment, es pot forçar l'ús de unicode si s'escull la opció\"%s\"\n"
+"independentment dels idiomes escollits.\n"
+"\n"
+"Noteu que no esteu limitats a escollir només un idioma addicional. Podeu\n"
+"triar diversos idiomes addicionals, i fins i tot instal·lar-los tots\n"
+"activant la casella \"%s\". Si habiliteu un idioma esteu instal·lant les\n"
+"traduccions, els tipus de lletra, els verificadors ortogràfics, etc. "
+"d'aquest idioma.\n"
+"\n"
+"Per passar d'un dels idiomes a un altre, podeu executar com a \"root\"\n"
+"l'ordre \"/usr/sbin/localedrake\" per canviar l'idioma de tot el sistema. "
+"Si\n"
+"l'executeu com a usuari normal, només es canviarà l'idioma d'aquest\n"
+"usuari concret."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Espanyol"
+
+#: ../help.pm:653
+#, fuzzy, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"DrakX generalment detecta el nombre de botons que té el vostre ratolí.\n"
+"Si no pot, assumeix que teniu un ratolí de dos botons i el configurarà per\n"
+"emular el tercer botó. Es pot ``prémer' ' el tercer botó d'un ratolí de dos\n"
+"botons fent clic simultàniament als botons dret i esquerre. DrakX\n"
+"detectarà automàticament si el ratolí utilitza la interfície PS/2, sèrie o "
+"USB.\n"
+"\n"
+"En cas que tingueu un ratolí de 3 botons sense rodeta, podeu escollir\n"
+"\"%s\". DrakX configurarà el ratolí per tal de simular la rodeta,\n"
+"per fer-ho premeu el botó central i moveu el ratolí a dalt i a baix.\n"
+"\n"
+"Si per alguna raó voleu especificar un altre tipus de ratolí,\n"
+"seleccioneu-lo a la llista.\n"
+"\n"
+"Si escolliu un ratolí diferent del ratolí per defecte, es mostrarà una\n"
+"pantalla de prova. Utilitzeu els botons i la roda per verificar que la\n"
+"configuració és correcta i que el ratolí funciona bé. Si el ratolí no\n"
+"funciona bé, premeu la barra d'espai o la tecla [Intro] per cancel·lar la\n"
+"prova i tornar a la llista.\n"
+"\n"
+"De vegaDES, la roda del ratolí no es detecta automàticament. En aquest cas,\n"
+"haureu de seleccionar-lo a la llista. Assegureu-vos de triar el que\n"
+"correspon al port a què esta connectat el ratolí. Després de seleccionar un\n"
+"ratolí i prémer el botó \"%s\", a la pantalla apareixerà un ratolí. Mogueu "
+"la\n"
+"roda del ratolí per assegurar-vos que s'ha activat correctament, comprovant\n"
+"que es mou també a la pantalla; després comproveu els botons i que el "
+"cursor\n"
+"de la pantalla es mou quan moveu el ratolí."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "amb emulació de rodeta"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Universal | Qualsevol ratolí PS/2 o USB"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Si us plau, seleccioneu el port correcte. Per exemple, el port \"COM1\" a\n"
+"Windows s'anomena \"ttyS0\" a GNU/Linux."
+
+#: ../help.pm:691
+#, fuzzy, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Aquesta és la decisió més important quant a la seguretat del vostre sistema\n"
+"GNU/Linux: heu d'introduir la contrasenya de l'usuari \"root\". El \"root\"\n"
+"és l'administrador del sistema i és l'únic autoritzat a fer "
+"actualitzacions,\n"
+"afegir usuaris, canviar la configuració del tot el sistema, etc. En poques\n"
+"paraules, el \"root\" ho pot fer tot! És per això que heu d'escollir una\n"
+"contrasenya que sigui difícil d'endevinar; DrakX us avisarà si és massa\n"
+"fàcil. Com veieu, podeu optar per no introduir cap contrasenya, però us\n"
+"aconsellem vivament que no ho feu. GNU/Linux és tan vulnerable als errors\n"
+"de l'operador com qualsevol altre sistema operatiu. Com que l'usuari\n"
+"\"root\" pot superar totes les limitacions i esborrar accidentalment totes\n"
+"les dades de qualsevol partició com a conseqüència d'accedir-hi sense\n"
+"precaucions, és molt important que sigui difícil esdevenir \"root\".\n"
+"\n"
+"La contrasenya ha de ser una mescla de caràcters alfanumèrics i, com a\n"
+"mínim, de 8 caràcters de longitud. No apunteu enlloc la contrasenya de\n"
+"\"root\" ja que és molt fàcil comprometre el sistema si ho feu.\n"
+"\n"
+"Tot i això, no feu la contrasenya massa llarga o complicada perquè heu de\n"
+"poder recordar-la!\n"
+"\n"
+"La contrasenya no es mostrarà per pantalla quan la teclegeu. Per tant,\n"
+"haureu d'escriure-la dues vegades per reduir la probabilitat d'errors en\n"
+"l'escriptura. Si, malauradament, feu el mateix error dues vegaDES, haureu\n"
+"d'usar aquesta contrasenya ``incorrecta'' el primer cop que us connecteu.\n"
+"\n"
+"Si voleu que aquest ordinador sigui controlat per un servidor\n"
+"d'autenticació, feu clic al botó \"%s\".\n"
+"\n"
+"Si la vostra xarxa usa els serveis d'autenticació LDAP, NIS o Windows\n"
+"Domain, seleccioneu l'adient per a \"%s\" . Si no sabeu quin utilitzar,\n"
+"pregunteu-ho al vostre administrador de xarxa.\n"
+"\n"
+"Si teniu problemes per recordar les contrasenyes, si l'ordinador mai no es\n"
+"connectarà a Internet o si confieu absolutament en tothom que utilitza\n"
+"l'ordinador, podeu triar tenir \"%s\"."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "autenticació"
+
+#: ../help.pm:728
+#, fuzzy, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"LILO i GRUB són carregadors d'arrencada de GNU/Linux. Normalment,\n"
+"aquesta fase es realitza de manera totalment automàtica. DrakX analitzarà\n"
+"el sector d'arrencada del disc i actuarà conforme al que hi trobi:\n"
+"\n"
+" * si troba un sector d'arrencada del Windows, el reemplaçarà amb un sector\n"
+"d'arrencada de GRUB/LILO. D'aquesta manera podreu carregar GNU/Linux\n"
+"o un altre SO.\n"
+"\n"
+" * si troba un sector d'arrencada grub o LILO, el reemplaçarà amb un nou.\n"
+"\n"
+"Si no pot prendre una decisió, DrakX us preguntarà on ha de col·locar el\n"
+"carregador d'arrencada. Normalment, \"%s\" és el lloc més segur. Si "
+"escolliu\n"
+"\"%s\" no s'instal·larà cap carregador d'arrencada. Utilitzeu-lo només si\n"
+"sabeu que esteu fent."
+
+#: ../help.pm:745
+#, fuzzy, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Ara cal seleccionar el sistema d'impressió del vostre ordinador. Altres\n"
+"sistemes operatius us poden oferir un, però el Mandriva Linux n'ofereix\n"
+"dos. Cada sistema d'impressió és el més convenient per a un tipus de\n"
+"configuració determinat.\n"
+"\n"
+" * \"%s\", acrònim de \"print, do not queue\" (imprimeix, no facis cua), és\n"
+"la millor opció si teniu una connexió directa amb la impressora i voleu\n"
+"evitar els embussos a l'hora d'imprimir, i no teniu impressores de xarxa.\n"
+"(\"%s\" només gestionarà xarxes molt senzilles i és una mica lenta quan\n"
+"s'usa en xarxa.) Escolliu \"pdq\" si és la vostra primera incursió\n"
+"en GNU/Linux.\n"
+"\n"
+" * \"%s\" `` Common Unix Printing System'', Sistema d'impressió comú de\n"
+"Unix, és una elecció excel·lent tant si voleu imprimir a la vostra\n"
+"impressora local com a l'altra punta del món. És senzilla de configurar i\n"
+"pot actuar com a servidor o client per a l'antic sistema d'impressió \"lpd"
+"\"\n"
+"i, per tant, és compatible amb sistemes operatius antics que encara\n"
+"necessitin serveis d'impressió. És força potent, però la configuració "
+"bàsica\n"
+"és gairebé tan senzilla com la de \"pdq\". Si necessiteu emular un servidor\n"
+"\"lpd\", heu d'habilitar el dimoni \"cups-lpd\". \"%s\" inclou frontals\n"
+"gràfics per a la impressió o per escollir les opcions d'impressió\n"
+"i per gestionar la impressora.\n"
+"\n"
+"Si ara feu una tria, i després veieu que el sistema d'impressió no us\n"
+"agrada, podeu canviar-lo executant el PrinterDrake des del Centre de "
+"control\n"
+"de Mandriva Linux i fent clic al botó Expert."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Expert"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"Primer, DrakX detectarà qualsevol dispositiu IDE en l'ordinador. També\n"
+"cercarà una o més targetes SCSI PCI. Si troba una targeta SCSI, DrakX\n"
+"instal·larà automàticament el controlador adequat.\n"
+"\n"
+"Com que la detecció de maquinari no és infal·lible, pot ser que DrakX no "
+"trobi\n"
+"els discos durs; si és així, caldrà que indiqueu el vostre maquinari "
+"manualment.\n"
+"\n"
+"Si heu de seleccionar l'adaptador SCSI PCI manualment, DrakX us preguntarà "
+"si\n"
+"voleu configurar-ne les opcions. Convé que deixeu que DrakX comprovi\n"
+"el maquinari per saber les opcions específiques de la targeta que calen per "
+"inicialitzar\n"
+"l'adaptador. La majoria de vegaDES, DrakX realitzarà aquest pas sense "
+"problemes.\n"
+"\n"
+"Si DrakX no pot comprovar les opcions per determinar automàticament els "
+"paràmetres\n"
+"que s'han de passar al maquinari, us caldrà configurar el controlador "
+"manualment."
+
+#: ../help.pm:789
+#, fuzzy, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": si es detecta una targeta de so al vostre sistema, es mostra aquí.\n"
+"Si veieu que la targeta de so que es mostra no és la que realment teniu al\n"
+"sistema, podeu fer clic al botó i seleccionar un altre programa de control."
+
+#: ../help.pm:794
+#, fuzzy, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Com a revisió, DrakX presentarà un resum de la informació que\n"
+"té sobre el vostre sistema. Segons el maquinari instal·lat, podeu\n"
+"tenir algunes o totes les entrades següents. Cada entrada consta\n"
+"de l'element de configuració que cal configurar, seguit d'un breu\n"
+"resum de la configuració actual.\n"
+"Feu clic al botó \"%s\" corresponent per canviar-ho.\n"
+"\n"
+" * \"%s\": comproveu la configuració actual del mapa de teclat i\n"
+"canvieu-la si és necessari.\n"
+"\n"
+" * \"%s\": comproveu la selecció actual de país. Si no sou a aquest\n"
+"país, feu clic al botó \"%s\" i escolliu-ne un altre. Si el vostre\n"
+"país no és a la primera llista que es mostra, feu clic al botó \"%s\"\n"
+"per obtenir una llista de països completa.\n"
+"\n"
+" * \"%s\": per defecte, DrakX dedueix la vostra zona horària en\n"
+"funció del país que hagueu escollit. Aquí podeu fer clic al botó \"%s\"\n"
+"si no fos correcta.\n"
+"\n"
+" * \"%s\": comproveu la configuració actual del ratolí i feu clic al\n"
+"botó per canviar-la si fos necessari.\n"
+"\n"
+" * \"%s\": feu clic al botó \"%s\" per obrir l'auxiliar de configuració\n"
+"de la impressora. Consulteu el capítol corresponent de la ``Guia d'\n"
+"iniciació'' per tenir més informació sobre la configuració d'una nova\n"
+"impressora. Aquesta interfície és similar a la utilitzada durant la\n"
+"instal·lació.\n"
+"\n"
+" * \"%s\": si es detecta una targeta de so al vostre sistema, es\n"
+"mostra aquí. Si veieu que que no és la que realment teniu al sistema,\n"
+"podeu fer clic al botó per triar un altre controlador.\n"
+"\n"
+" * \"%s\": per defecte, DrakX configura la vostra interfície\n"
+"gràfica a una resolució de \"800x600\" or \"1024x768\". Si no us\n"
+"va bé, feu clic a \"%s\" per reconfigurar la interfície gràfica.\n"
+"\n"
+" * \"%s\": si es detecta una targeta de TV al sistema, es mostra\n"
+"aquí. Si en teniu una però no és detectada, feu clic a \"%s\" per\n"
+"intentar configurar-la manualment.\n"
+"\n"
+" * \"%s\": si es detecta una targeta XDSI al sistema, es mostra\n"
+"aquí. Podeu fer clic a \"%s\" per canviar els paràmetres associats\n"
+"amb la targeta.\n"
+"\n"
+" * \"%s\": si voleu configurar ara l'accés a Internet o a la xarxa local.\n"
+"\n"
+" * \"%s\": aquesta entrada un permet redefinir el nivell de seguretat\n"
+"definit en un pas anterior ().\n"
+"\n"
+" * \"%s\": si teniu previst connectar-vos a Internet, és bona idea\n"
+"protegir-vos d'intrusions instal·lant un tallafocs. Consulteu-ne\n"
+"els detalls a la secció corresponent de la ``Guia d'iniciació''.\n"
+"\n"
+" * \"%s\": si voleu canviar la configuració del carregador d'arrencada,\n"
+"feu clic a aquest botó. Es recomana que això només ho facin els usuaris\n"
+"avançats.\n"
+"\n"
+" * \"%s\": aquí podreu acabar d'ajustar els serveis que s'executaran\n"
+"en el vostre ordinador. Si teniu previst utilitzar aquesta màquina com\n"
+"a servidor, és aconsellable que reviseu aquesta configuració."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Targeta XDSI"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Interfície gràfica"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Escolliu el disc dur que voleu buidar per instal·lar la nova partició\n"
+"Mandriva Linux. Aneu amb compte, totes les dades actuals es perdran i no\n"
+"es podran recuperar!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Feu clic a \"%s\" si voleu suprimir totes les dades i particions\n"
+"que hi ha en aquest disc dur. Aneu amb compte perquè, un cop\n"
+"hagueu fet clic a \"%s\", no podreu recuperar cap dada ni partició\n"
+"del disc, incloent les dades del Windows.\n"
+"\n"
+"Feu clic a \"%s\" per aturar aquesta operació sense perdre cap dada\n"
+"ni partició d'aquest disc."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Següent ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Anterior"
+
diff --git a/perl-install/install/help/po/cs.po b/perl-install/install/help/po/cs.po
new file mode 100644
index 000000000..fad687c81
--- /dev/null
+++ b/perl-install/install/help/po/cs.po
@@ -0,0 +1,1952 @@
+# Translation of cs.po to Czech
+# Translation of DrakX-cs.po to Czech
+# Copyright (C) 1999,2003, 2004, 2005 Free Software Foundation, Inc.
+# Radek Vybiral <Radek.Vybiral@vsb.cz>, 2000, 2001-2003.
+# Michal Bukovjan <bukm@centrum.cz>, 2002-2003, 2004, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: cs\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-09-19 00:26+0200\n"
+"Last-Translator: Michal Bukovjan <bukm@centrum.cz>\n"
+"Language-Team: Czech <cs@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: KBabel 1.10.2\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Předtím, než budete pokračovat, přečtěte si pozorně licenční podmínky. Ty\n"
+"se vztahují k celé distribuci Mandriva Linux a pokud s nimi souhlasíte,\n"
+"klepněte na tlačítko \"%s\". Pokud ne, klepněte na tlačítko \"%s \" a "
+"počítač bude restartován."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux je víceuživatelský systém, což znamená, že každý uživatel může\n"
+"mít své vlastní nastavení, soubory atd. Více se dočtete v příručce \"Začínáme"
+"\".\n"
+"Na rozdíl od uživatele root, který je správcem počítače, uživatelé, kteří "
+"jsou\n"
+"zde vytvořeni, nemají oprávnění měnit nic kromě svých vlastních souborů a\n"
+"nastavení. Doporučuje se vytvořit účet pro minimálně jednoho běžného "
+"uživatele.\n"
+"Tento účet se používá na všechny běžné úkoly. Ačkoliv je velmi praktické\n"
+"přihlašovat se každý den jako uživatel root, je to také velmi nebezpečné!\n"
+"Jedna malá chyba může způsobit, že celý operační systém již nebude funkční.\n"
+"Pokud uděláte chybu jako normální uživatel, můžete přijít pouze o své "
+"informace,\n"
+"ale nepoškodí se celý systém.\n"
+"\n"
+"Jako první zadejte vaše skutečné jméno. To není samozřejmě povinné - můžete\n"
+"zadat co chcete. Aplikace DrakX použije první slovo jako uživatelské jméno,\n"
+"pod kterým se bude uživatel hlásit do systému, a předvyplní jej do políčka\n"
+"\"%s\". To je možné následně změnit.\n"
+"Dále se zadává heslo pro uživatele. Volba hesla pro normální uživatele sice "
+"není\n"
+"z hlediska bezpečnosti tak kritická jako v případě správce, ale i tak se "
+"doporučuje\n"
+"ji nepodceňovat; koneckonců, jde o zabezpečení souborů tohoto uživatele.\n"
+"\n"
+"Pokud klepnete na \"%s\", můžete přidávat uživatelů, kolik\n"
+"potřebujete, např. své přátele, účet pro otce či sestru. Pokud máte všechny\n"
+"uživatele vytvořeny, klepněte na tlačítko \"%s\". \n"
+"\n"
+"Klepnutím na tlačítko \"%s\" můžete pro nový účet změnit shell, který\n"
+"bude uživatel používat (výchozí je bash).\n"
+"\n"
+"Až dokončíte přidávání uživatelů, budete dotázáni na to, jaký uživatel má "
+"být\n"
+"zvolen pro automatické přihlášení do systému po jeho spuštění. Pokud chcete\n"
+"tuto možnost využít (a neobáváte se o bezpečnost), vyberte požadovaného\n"
+"uživatele a správce oken a klepněte na \"%s\".\n"
+"Pokud tuto možnost nechcete využít, odškrtněte políčko \"%s\"."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Chcete použít tuto vlastnost?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Zde je vypsán seznam již existujících detekovaných oddílů na pevném disku.\n"
+"Můžete ponechat volby detekované průvodcem, protože ve většině případů\n"
+"vyhovují. Pokud chcete provést nějaké změny, musíte definovat aspoň "
+"kořenový\n"
+"oddíl (\"/\"). Velikost oddílů zvolte dostatečnou, jinak nebude možné "
+"nainstalovat\n"
+"dostatečné množství programů. Pokud chcete ukládat data na zvláštní oddíl,\n"
+"vytvořte také oddíl \"/home\".\n"
+"\n"
+"Každý oddíl vypsaný níže má: \"Název\", \"Velikost\".\n"
+"\n"
+"\"Název\" je složen následovně: \"typ pevného disku\", \"číslo disku\",\n"
+"\"číslo oddílu\". (například \"hda1\").\n"
+"\n"
+"Pokud máte IDE disky, pak je \"typ pevného disku\" \"hd\", pokud máte SCSI,\n"
+"označení bude \"sd\".\n"
+"\n"
+"\"Číslo disku\" je vždy písmeno za \"hd\" nebo \"sd\". Pro IDE disky je to "
+"takto:\n"
+"\n"
+" * \"a\" znamená \"master disk na primárním IDE řadiči\",\n"
+"\n"
+" * \"b\" znamená \"slave disk na primárním IDE řadiči\",\n"
+"\n"
+" * \"c\" znamená \"master disk na sekundárním IDE řadiči\",\n"
+"\n"
+" * \"d\" znamená \"slave disk na sekundárním IDE řadiči\".\n"
+"\n"
+"Pro SCSI disky platí, že \"a\" je \"nejmenší SCSI ID\", \"b\" je \"druhé\n"
+"nejmenší SCSI ID\" atd."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Distribuce Mandriva Linux je složena z několika CD. Instalační program ví,\n"
+"na kterém disku je umístěn jaký balíček a v případě potřeby vysune CD a "
+"vyžádá\n"
+"si výměnu CD za požadované. Pokud nemáte požadované CD po ruce, klikněte\n"
+"na \"%s\" a odpovídající balíčky nebudou nainstalovány."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"V této chvíli je možné vybrat, které programy chcete nainstalovat na váš "
+"systém.\n"
+"Mandriva Linux obsahuje tisíce balíčků s programy a pro snadnější orientaci\n"
+"byly rozděleny do skupin, které sdružují podobné aplikace.\n"
+"\n"
+"Balíčky jsou rozděleny do skupin, které odpovídají tomu, jak je nejčastěji\n"
+"počítač používán. Skupiny samotné jsou umístěny do čtyř sekcí. Výběr "
+"aplikací\n"
+"z těchto sekcí lze různě kombinovat, takže můžete mít celou instalovánu "
+"sekci\n"
+"\"Pracovní stanice\" a k ní nějaké aplikace ze sekce \"Server\".\n"
+"\n"
+" * \"%s\": pokud plánujete používat počítač převážně na\n"
+"běžnou práci, vyberte si balíčky ze skupin kategorie pracovní stanice.\n"
+"\n"
+" * \"%s\": pokud budete na počítači programovat, můžete si z této\n"
+"sekce vybrat další skupiny. Zvláštní skupina \"LSB\" nastaví váš systém "
+"tak,\n"
+"aby co nejvíce odpovídal specifikaci Linux Standard Base.\n"
+"\n"
+" Výběr skupiny \"LSB\" rovněž nainstaluje jádro řady \"2.4\" místo "
+"výchozího\n"
+"jádra řady \"2.6\", pro zajištění plné kompatibility se specifikací LSB. I "
+"když ale\n"
+"skupinu LSB nevyberete, bude systém téměř úplně specifikaci odpovídat.\n"
+"\n"
+" * \"%s\": pokud bude počítač provozován jako server, máte možnost\n"
+"vybrat si ty nejběžnější služby, které chcete nainstalovat.\n"
+"\n"
+" * \"%s\": pokud preferujete grafické prostředí, zde je\n"
+"nabídka několika prostředí, ze které si musíte vybrat nejméně jedno,\n"
+"aby bylo možné grafické prostředí nainstalovat.\n"
+"\n"
+"Pokud přejedete myší nad skupinou, objeví se krátký text, který vysvětluje,\n"
+"co je obsahem dané skupiny.\n"
+"\n"
+"Pokud zatrhnete volbu \"%s\", zobrazí se seznam všech\n"
+"balíčků, které je možno nainstalovat. To je to užitečné v případě, že "
+"chcete\n"
+"mít absolutní kontrolu nad tím, co se bude instalovat.\n"
+"\n"
+"Pokud jste spustili instalaci v režimu \"%s\", můžete zrušit výběr\n"
+"daných skupin, čímž zabráníte instalaci nových balíčků. To je užitečné\n"
+"pro případ opravy nebo aktualizace existujícího systému.\n"
+"\n"
+"Pokud nevyberete při běžné instalaci žádnou skupinu (na rozdíl od\n"
+"aktualizace), zobrazí se otázka na instalaci několika typů minimální\n"
+"instalace:\n"
+"\n"
+" * \"%s\" Provede instalaci minima balíčků s podporou grafického prostředí.\n"
+"\n"
+" * \"%s\" Nainstaluje systém se základními programy a jejich dokumentací. \n"
+"Tento typ je vhodný pro instalaci serveru.\n"
+"\n"
+" * \"%s\" Nainstaluje se opravdu nezbytné minimum, aby bylo\n"
+"možné provozovat Linux z příkazové řádky. Instalace zabere asi\n"
+"65MB."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Aktualizovat"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Obsahuje základní dokumentaci"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Opravdu minimální instalace"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"V závislosti na tom, zda jste zvolili individuální výběr balíčků, se "
+"nabídne\n"
+"stromová struktura obsahující všechny balíčky organizované do skupin\n"
+"a podskupin. Při procházení stromu můžete vybrat jednotlivé balíčky, "
+"podskupiny\n"
+"nebo celé skupiny.\n"
+"\n"
+"Pokud vyberete ze stromu balíček, objeví se v pravé části jeho popis.\n"
+"\n"
+"!! Pokud se nachází mezi vybranými balíčky serverové programy, ať už "
+"vybrané\n"
+"záměrně nebo jako součást skupiny, zobrazí se dotaz na to,\n"
+"zda opravdu chcete tyto servery nainstalovat. V distribuci Mandriva Linux\n"
+"jsou tyto servery spuštěny při startu systému. I když v době vydání "
+"distribuce\n"
+"nejsou známy žádné bezpečnostní problémy, mohou se vyskytnout později.\n"
+"Pokud nevíte, k čemu jsou určeny některé serverové služby, klepněte na \"%s"
+"\".\n"
+"Klepnutím na \"%s\" se dané služby nainstalují a automaticky spustí při "
+"startu !!\n"
+"\n"
+"Volba \"%s\" vypne varovné hlášení, které se objeví\n"
+"vždy, když vyberete balíček, který má další závislosti a instalační program\n"
+"musí vybrat další potřebné balíčky, aby instalace mohla proběhnout úspěšně.\n"
+"\n"
+"Malá ikonka diskety dole umožňuje nahrát již předem vybraný seznam balíčků.\n"
+"To je užitečné, pokud máte několik počítače a chcete na nich shodnou "
+"instalaci.\n"
+"Po klepnutí na ikonu budete dotázáni na vložení diskety, která byla "
+"vytvořena na\n"
+"konci jiné instalace. Ve druhém tipu při posledním kroku najdete návod, jak "
+"si\n"
+"tuto disketu vytvořit. "
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Ošetří automaticky závislosti"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": klepnutím na \"%s\" se otevře průvodce nastavením tiskárny.\n"
+"Jak nastavit tiskárnu se také dozvíte z odpovídající kapitoly z příručky\n"
+"\"Začínáme\". Rozhraní je podobné tomu, které vidíte při instalaci."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Nyní si zvolte, které služby mají být spuštěny při startu počítače.\n"
+"\n"
+"Je zde seznam všech služeb, které jsou aktuálně nainstalovány.\n"
+"Prohlédněte si seznam pozorně a zrušte ty, které nepotřebujete při startu\n"
+"počítače spouštět.\n"
+"\n"
+"Pokud přejedete myší nad některou položkou, objeví se malá nápověda\n"
+"s popisem, co daná služba dělá. Pokud přesně nevíte, zda je služba užitečná\n"
+"nebo ne, je lepší ji nechat ve výchozím stavu.\n"
+"\n"
+"!! Rozvažte, co za služby spustit, zvláště pokud budete počítač provozovat\n"
+"jako server: nepotřebujete všechny služby. Pamatujte, že čím více služeb\n"
+"je spuštěno, tím je větší nebezpečí nežádoucího proniknutí do počítače.\n"
+"Takže povolte opravdu jen ty služby, které nezbytně potřebujete !!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux spravuje čas podle GMT (Greenwich Mean Time) a převádí ho na\n"
+"čas podle příslušné vybrané časové zóny. Pokud je čas na vaší mateřské "
+"desce\n"
+"nastaven jako lokální, je možné toto zrušit odznačením volby \"%s\" a pak "
+"budou\n"
+"systémové hodiny stejné jako hardwarové a ve stejné časové zóně.\n"
+"To je užitečné tehdy, když je na počítači jiný operační systém.\n"
+"\n"
+"Volba \"%s\" provádí automatické nastavení hodin pomocí připojení k "
+"časovému\n"
+"serveru na Internetu. Vyberte si v seznamu ten server, který je vám "
+"nejblíž.\n"
+"Je samozřejmé, že pro správnou funkci musíte mít funkční připojení\n"
+"k Internetu. Na počítač se také nainstaluje časový server, který mohou\n"
+"volitelně používat jiné počítače ve vaší lokální síti."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Automatická synchronizace času"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Grafická karta\n"
+"\n"
+" Instalační program je schopen automaticky detekovat a nastavit grafickou\n"
+"kartu instalovanou v počítači. Pokud se to nepodaří, máte možnost si ze\n"
+"seznamu vybrat příslušnou grafickou kartu ručně.\n"
+"\n"
+" V případě, že pro vaši kartu je možné použít více různých serverů, buď\n"
+"s 3D akcelerací nebo bez, je pouze na vás, který server si vyberete jako\n"
+"nejvíce vyhovující vašim potřebám."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (X Window System) je srdcem grafického rozhraní pro GNU/Linux, které\n"
+"využívají dodávané grafické prostředí (KDE, GNOME, AfterStep, WindowMaker) "
+"se systémem Mandriva Linux.\n"
+"\n"
+"Nyní bude zobrazen seznam různých parametrů, které je možné změnit pro\n"
+"dosažení optimálního grafického zobrazení\n"
+"\n"
+"Grafická karta\n"
+"\n"
+" Instalační program je schopen automaticky detekovat a nastavit grafickou\n"
+"kartu instalovanou v počítači. Pokud se to nepodaří, máte možnost si ze\n"
+"seznamu vybrat příslušnou grafickou kartu ručně.\n"
+"\n"
+" V případě, že pro vaši kartu je možné použít více různých serverů, s 3D\n"
+"akcelerací nebo bez, je pouze na vás, který server si vyberete jako nejvíce\n"
+"vyhovující vašim potřebám.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Instalační program dokáže většinou automaticky detekovat a správně \n"
+"nastavit monitor připojený k vašemu počítači. Pokud se to nezdaří, lze se\n"
+"seznamu vybrat monitor, který máte.\n"
+"\n"
+"\n"
+"\n"
+"Rozlišení\n"
+"\n"
+" Zde si můžete vybrat rozlišení a barevnou hloubku, které vaše karta \n"
+"podporuje. Vyberte si to co vám nejvíce vyhovuje (výběr lze po instalaci\n"
+"samozřejmě změnit). Na monitoru bude zobrazen příklad nastavení.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Systém se pokusí otestovat grafickou obrazovku v požadovaném rozlišení.\n"
+"Pokud během testu uvidíte zprávy a odpovíte na ni \"%s\", instalační "
+"program\n"
+"bude pokračovat dalším krokem. Pokud zprávu neuvidíte, znamená to, že "
+"některá\n"
+"část automatické detekce neproběhla v pořádku a test automaticky za 12 "
+"vteřin\n"
+"skončí s tím, že se provede návrat k základní nabídce. Následně je možné "
+"opět\n"
+"provést změny až do té doby, než bude zobrazeno správné rozlišení.\n"
+"\n"
+"\n"
+"\n"
+"Volby\n"
+"\n"
+" Zde si můžete vybrat, zda chcete provést automatický start grafického\n"
+"prostředí po spuštění systému. Je samozřejmé, že pokud bude počítač\n"
+"provozován jako server nebo pokud se nepodařilo nastavit grafickou kartu,\n"
+"je nutné odpovědět \"%s\"."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+"\n"
+" Instalační program dokáže většinou automaticky detekovat a správně \n"
+"nastavit monitor připojený k vašemu počítači. Pokud se to nezdaří, lze si\n"
+"ze seznamu vybrat monitor, který máte."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Rozlišení\n"
+"\n"
+" Zde si můžete vybrat rozlišení a barevnou hloubku, které vaše karta \n"
+"podporuje. Vyberte si to, co vám nejvíce vyhovuje (výběr lze po instalaci\n"
+"samozřejmě změnit). Na monitoru bude zobrazen příklad nastavení."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"V případě, že je pro vaši kartu možno použít více různých serverů s 3D\n"
+"akcelerací nebo bez, záleží na vašem výběru, který vám nejvíce vyhovuje."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Volby\n"
+"\n"
+" Tento krok vám umožňuje nastavit automatické spouštění grafického "
+"prostředí\n"
+"při startu. Je zřejmé, že odpovíte \"%s\" v případě, že počítač bude "
+"pracovat\n"
+"jako server nebo v případě, že se nepodařilo správně nastavit grafickou "
+"kartu."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"V tomto bodě si musíte rozhodnout, na které diskové oddíly budete\n"
+"instalovat nový operační systém Mandriva Linux. Pokud je disk prázdný\n"
+"nebo existující operační systém používá celý disk, je nutné ho rozdělit.\n"
+"Rozdělení disku spočívá ve vytvoření volného prostoru pro instalaci\n"
+"systému Mandriva Linux.\n"
+"\n"
+"Protože rozdělení disku je nenávratná operace, je to velmi nebezpečná\n"
+"akce pro ty uživatele, kteří nemají žádné zkušenosti.\n"
+"Pro tyto uživatele je dobrý průvodce, který zjednoduší daný proces.\n"
+"Ještě před započetím rozdělování disku si pročtěte zbytek této sekce a "
+"hlavně\n"
+"nespěchejte.\n"
+"\n"
+"Na základě vaší stávající konfigurace nabídne průvodce několik řešení:\n"
+"\n"
+" * \"%s\": takto se jednoduše automaticky disk(y) rozdělí\n"
+"a již se o nic nemusíte starat.\n"
+"\n"
+" * \"%s\": průvodce detekoval jeden nebo více existujících\n"
+"Linuxových oddílů a ty nabídne pro instalaci. Budete muset definovat ke "
+"každému\n"
+"oddílu přípojný bod. Původní přípojné body jsou předvyplněny a obvykle by\n"
+"jste je měli ponechat.\n"
+"\n"
+" * \"%s\": pokud máte na disku nainstalovány Microsoft Windows a tyto\n"
+"zabírají celý disk, je možné tento prostor zmenšit a použít ho pro "
+"instalaci.\n"
+"Oddíl a data lze také vymazat (viz volba \"Smazat celý disk\") nebo\n"
+"změnit velikost FAT či NTFS oddílu s Microsoft Windows. Změna velikosti\n"
+"oddílu je provedena beze ztráty dat a je možná, pokud jste předtím tento "
+"oddíl ve\n"
+"Windows defragmentovali. Je doporučeno zazálohovat vaše data. Tento postup\n"
+"je doporučený, pokud chcete na disku provozovat současně systém\n"
+"Mandriva Linux i Microsoft Windows.\n"
+"\n"
+" Před výběrem této volby si prosím uvědomte, že velikost oddílu s "
+"Microsoft\n"
+"Windows bude menší než je nyní. To znamená, že budete mít méně místa pro\n"
+"uložení dat nebo instalaci programů do Microsoft Windows.\n"
+"\n"
+" * \"%s\": pokud chcete smazat veškerá data a všechny oddíly na disku\n"
+"a použít je pro instalaci systému Mandriva Linux, vyberte toto řešení.\n"
+"Zde postupujte opatrně, po výběru již není možné vzít tuto volbu zpět.\n"
+"\n"
+" !! Pokud zvolíte tuto možnost, všechna data na disku budou ztracena.!!\n"
+"\n"
+" * \"%s\": Tato volba se objeví, pokud celý disk zabírá operační systém\n"
+"Microsoft Windows. Tato volba jednoduše smaže vše na disku a znovu disk\n"
+"rozdělí.\n"
+"\n"
+" !! Pokud vyberete tuto volbu, veškerá data budou ztracena. !!\n"
+"\n"
+" * \"%s\": pokud chcete disk rozdělit ručně. Před touto volbou buďte "
+"opatrní,\n"
+"je sice mocná, ale nebezpečná. Velmi jednoduše zde můžete přijít o svá "
+"data.\n"
+"Nedoporučuje se těm, kteří přesně nevědí, co dělají. Chcete-li se dozvědět\n"
+"více o nástroji DiskDrake, který se v tomto případě používá, prostudujte "
+"sekci\n"
+"\"Správa vašich oddílů\" v příručce \"Začínáme\"."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Použije existující oddíl"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Smazat celý disk"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Nyní je instalace ukončena a operační systém GNU/Linux je připraven k "
+"použití.\n"
+"Klepněte na \"%s\" a systém bude restartován. Nezapomeňte vyjmout "
+"instalační\n"
+"médium (CD-ROM nebo disketu). První věcí, kterou uvidíte po skončení\n"
+"hardwarových testů po zapnutí počítače, bude zavaděč s menu, kde si můžete\n"
+"vybrat, který operační systém chcete spustit.\n"
+"\n"
+"Tlačítko \"%s\" zobrazí další dvě tlačítka:\n"
+"\n"
+" * \"%s\": vytvoří disketu, se kterou\n"
+"lze celou instalaci opakovat bez zásahu operátora se stejnými volbami,\n"
+"které byly zvoleny při instalaci.\n"
+"\n"
+" Po klepnutí na toto tlačítko se zobrazí další dvě volby:\n"
+"\n"
+" * : \"%s\": je to částečně automatická instalace, kdy se potvrzuje\n"
+"krok při rozdělování disků (a pouze tento krok).\n"
+"\n"
+" * : \"%s\": plně automatická instalace, data na pevném disku\n"
+"budou zrušena a disk přepsán.\n"
+"\n"
+" Tato volba je velmi užitečná, když potřebujete nainstalovat větší počet\n"
+"stejných počítačů. Více o této možnosti je na našich WWW stránkách.\n"
+"\n"
+" * \"%s\"(*): uloží výběr balíčků, který byl zvolen při\n"
+"instalaci. Pokud budete instalovat další počítač, vložte disketu do "
+"mechaniky\n"
+"a spusťte instalaci, stiskněte [F1] a napište na příkazový řádek \n"
+">> linux defcfg=\"floppy\" << a stiskněte klávesu Enter.\n"
+"\n"
+"(*) Budete potřebovat disketu naformátovanou systémem souborů FAT.\n"
+"Chcete-li si takovou disketu vytvořit v systému GNU/Linux, napište příkaz\n"
+"\"mformat a:\" nebo \"fdformat /dev/fd0\" a poté \"mkfs.vfat /dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Vytvoří disketu pro automatickou instalaci"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Každý nově vytvořený diskový oddíl musí být před použitím zformátován\n"
+"(formátováním se myslí vytvoření souborového systému).\n"
+"\n"
+"Nyní lze formátovat již existující diskové oddíly pro vymazání\n"
+"všech dat, která obsahují. Pokud to chcete provést, vyberte diskové oddíly\n"
+"pro přeformátování.\n"
+"\n"
+"Není ale nutné přeformátovat všechny již existující diskové oddíly.\n"
+"Je nutné přeformátovat oddíly, které obsahují operační systém (jako je \"/"
+"\",\n"
+"\"/usr\" nebo \"/var\") ale není nutné přeformátovat oddíly, které obsahují\n"
+"data, která chcete zachovat (typicky \"/home\").\n"
+"\n"
+"Při výběru diskových oddílů, které se budou formátovat buďte opatrní, "
+"všechna\n"
+"data na formátovaných oddílech budou ztracena a nelze je již obnovit.\n"
+"\n"
+"Pokud je vše připraveno pro formátování, klepněte na \"%s\".\n"
+"\n"
+"Pokud chcete vybrat jiné oddíly pro instalaci systému Mandriva Linux,\n"
+"klepněte na \"%s\" \n"
+"\n"
+"Klepnutím na \"%s\" můžete vybrat, které oddíly budou otestovány\n"
+"na vadné bloky."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Pokaždé, když instalujete distribuci Mandriva Linux, je možné, že některé\n"
+"balíčky byly od vydání distribuce aktualizovány. Mohly to být opravy chyb\n"
+"či řešení možných bezpečnostních problémů. Pokud chcete využít právě\n"
+"této nabídky, je možné tyto balíčky nyní stáhnout z Internetu. Zvolte \"%s"
+"\"\n"
+"pokud máte funkční připojení na Internet nebo \"%s\", pokud budete\n"
+"instalovat aktualizace později.\n"
+"\n"
+"Po zvolení \"%s\" se zobrazí seznam míst, odkud mohou být aktualizace "
+"získány.\n"
+"Vyberte si nejbližší místo. Následně se objeví stromový seznam balíčků,\n"
+"který je možno ještě upravit a stisknutím tlačítka \"%s\" se provede "
+"stažení\n"
+"a instalace vybraných balíčků. Akci můžete přerušit klepnutím na \"%s\"."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Nyní si vyberte úroveň zabezpečení vašeho počítače Je zřejmé, že čím více\n"
+"je počítač využíván a čím cennější data obsahuje, tím je potřeba zvolit "
+"vyšší\n"
+"úroveň, stejně tak pokud je přímo vystaven na síti Internet. Na druhou "
+"stranu,\n"
+"vyšší úroveň znesnadňuje některé obvyklé postupy.\n"
+"\n"
+"Pokud nevíte co vybrat, ponechte výchozí nastavení. Úroveň zabezpečení\n"
+"lze později změnit pomocí nástroje draksec z Ovládacího centra Mandriva.\n"
+"\n"
+"V políčku \"%s\" je jméno uživatele, který bude odpovědný za zabezpečení\n"
+"počítače. Všechny bezpečnostní zprávy systému budou odeslány na tuto adresu."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Správce zabezpečení"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"V této chvíli je potřeba určit, který(é) oddíl(y) budou použity pro "
+"instalaci\n"
+"systému Mandriva Linux. Pokud byly oddíly již jednou definovány, buď\n"
+"z předchozí instalace GNU/Linux nebo jiným programem na rozdělení disku,\n"
+"je možné použít právě tyto oddíly. Jinak musí být oddíly nově definovány.\n"
+"\n"
+"Pro vytvoření oddílu musíte nejdříve vybrat pevný disk. Klepněte na \n"
+"\"hda\", což je první IDE disk, nebo na \"hdb\", což je druhý disk,\n"
+"případně na \"sda\", což je první SCSI disk.\n"
+"\n"
+"Pro rozdělení vybraného disku můžete použít tyto volby:\n"
+"\n"
+" * \"%s\": tato volba smaže všechny oddíly na vybraném disku.\n"
+"\n"
+" * \"%s\": dojde k automatickému vytvoření oddílu pro Ext2 a swap ve volném\n"
+"prostoru disku.\n"
+"\n"
+" * \"%s\": nabídne další možnosti:\n"
+"\n"
+" * \"%s\": uloží tabulku oddílů na disketu. To je\n"
+"vhodné pro případ poškození tabulky, kdy ji lze z této zálohy obnovit.\n"
+"Doporučujeme využít tuto možnost.\n"
+"\n"
+" * \"%s\": obnoví tabulku oddílů, která byla již dříve\n"
+"uložena na disketu.\n"
+"\n"
+" * \"%s\": pokud je tabulka poškozena, můžete se\n"
+"pokusit ji opravit. Buďte ale opatrní a pamatujte na to, že se to nemusí "
+"vždy\n"
+"podařit.\n"
+"\n"
+" * \"%s\": zruší všechny změny a nahraje původní\n"
+"tabulku oddílů.\n"
+"\n"
+" \"%s\": odznačení této volby\n"
+"způsobí, že při připojování a odpojování vyjímatelných médií jako jsou CD-"
+"ROM\n"
+"disky a floppy disky je nutné použít ručně příkaz mount.\n"
+"\n"
+" * \"%s\": pokud nemáte dobré znalosti o rozdělování disků, použijte\n"
+"tuto volbu, kdy se spustí průvodce. Doporučujeme, pokud nemáte dobré "
+"znalosti\n"
+"o vytváření oddílů na disku.\n"
+"\n"
+" * \"%s\": zruší všechny provedené změny.\n"
+"\n"
+" * \"%s\": dovoluje další akce s oddíly\n"
+"(typ oddílu, volby, formátování) a zobrazí další informace.\n"
+"\n"
+" * \"%s\": pokud máte disk rozdělen, uloží se změny na disk.\n"
+"\n"
+"Pokud definujete velikost oddílu, můžete přesněji jejich velikost určit "
+"pomocí\n"
+"kurzorových šipek na klávesnici.\n"
+"\n"
+"Poznámka: každou volbu je možné zadat také z klávesnice. Mezi oddíly se\n"
+"můžete pohybovat pomocí kláves [Tab] a [Šipka nahoru/šipka dolů].\n"
+"\n"
+"Pokud je vybrán oddíl, lze použít tyto volby:\n"
+"\n"
+" * Ctrl-c pro vytvoření nového oddílu (pokud je vybrán prázdný oddíl);\n"
+"\n"
+" * Ctrl-d pro smazání oddílu;\n"
+"\n"
+" * Ctrl-m pro zadání bodu připojení.\n"
+"\n"
+"Více informací o jednotlivých druzích souborových systémů naleznete\n"
+"v kapitole o ext2fs v \"Referenční příručce\".\n"
+"\n"
+"Pokud instalujete na počítač PPC, je potřeba vytvořit malý oddíl HFS,\n"
+"tzv. \"bootstrap\" o minimální velikosti 1MB, který bude použit pro zavaděč\n"
+"Yaboot. Pokud vytvoříte tento oddíl větší, např. 50 MB, je to dobré místo "
+"pro\n"
+"uložení ramdisku a jádra pro situace záchrany disku."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Automatické připojování pro vyjímatelná média"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Přepne mezi normální/expertním režimem"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Instalační program nalezl na disku více než jeden oddíl s Microsoft "
+"Windows.\n"
+"Prosím vyberte si jeden z nich, který je potřeba pro novu instalaci systému\n"
+"Mandriva Linux zmenšit.\n"
+"\n"
+"Každý oddíl je zobrazen následovně: \"Pojmenování v Linuxu\",\n"
+"\"Název ve Windows\", \"Velikost\".\n"
+"\n"
+"\"Pojmenování v Linuxu\" je složeno následovně: \"typ pevného disku\",\n"
+"\"číslo disku\", \"číslo oddílu\". (například \"hda1\").\n"
+"\n"
+"Pokud máte IDE disky, pak je \"typ pevného disku\" \"hd\", pokud máte SCSI,\n"
+"označení bude \"sd\".\n"
+"\n"
+"\"Číslo disku\" je vždy písmeno za \"hd\" nebo \"sd\". Pro IDE disky je "
+"takto:\n"
+"\n"
+" * \"a\" znamená \"master disk na primárním IDE řadiči\",\n"
+"\n"
+" * \"b\" znamená \"slave disk na primárním IDE řadiči\",\n"
+"\n"
+" * \"c\" znamená \"master disk na sekundárním IDE řadiči\",\n"
+"\n"
+" * \"d\" znamená \"slave disk na sekundárním IDE řadiči\".\n"
+"\n"
+"Pro SCSI disky platí, že \"a\" je \"nejmenší SCSI ID\", \"b\" je \"druhé\n"
+"nejmenší SCSI ID\" atd.\n"
+"\n"
+"\"Název ve Windows\" je písmeno, které je použito ve Windows\n"
+"(první oddíl nebo disk má písmeno \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": zkontrolujte aktuální výběr země. Pokud nejste v dané zemi, "
+"klepněte\n"
+"na tlačítko \"%s\" a vyberte si jinou. Pokud vaše země není na prvním "
+"seznamu,\n"
+"klepněte na tlačítko \"%s\" a získáte kompletní seznam zemí."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Tento krok se objeví pouze tehdy, pokud je na vašem počítači nalezen starší\n"
+"oddíl GNU/Linuxu.\n"
+"\n"
+"Instalační program potřebuje vědět, zda má provést instalaci nebo pouze\n"
+"aktualizaci existujícího systému Mandriva Linux.\n"
+"\n"
+" * \"%s\": Nejběžnější volba, provede kompletní výmaz starého systému.\n"
+"V závislosti na rozvržení oddílů vašeho starého systému je však možné\n"
+"zachovat obsah některých oddílů (např. adresáře \"/home\") a uchránit je "
+"před přepsáním. Pokud si přejete změnit rozmístění oddílů, změnit\n"
+"souborový systém, použijte tuto volbu.\n"
+"\n"
+" * \"%s\": tato volba provede aktualizaci balíčků instalovaných na vašem\n"
+"systému Mandriva Linux. Aktuální rozmístění diskových oddílů a uživatelská\n"
+"data zůstanou zachována. Bude ale provedena většina konfiguračních kroků,\n"
+"stejně jako při instalaci.\n"
+"\n"
+"Použití volby \"Aktualizace\" bude fungovat bez problémů na stávající "
+"verzi \n"
+"\"8.1\" a novější. Aktualizace na verzích starších než \"8.1\" není "
+"doporučována."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Normálně zvolí instalační program správnou klávesnici na základě zvoleného\n"
+"jazyka, takže v tomto kroku není potřeba nic měnit. Zkontrolujte jeho volbu "
+"a případně\n"
+"ji změňte.\n"
+"\n"
+"Může se stát, že nemáte klávesnici, která odpovídá vašemu jazyku: například\n"
+"pokud jste anglicky hovořící Švýcar, stejně chcete mít švýcarskou "
+"klávesnici.\n"
+"Nebo pokud mluvíte anglicky, ale žijete v Quebecu, je to stejný případ. V "
+"obou\n"
+"případech se můžete vrátit na tento instalační krok a vybrat si "
+"odpovídající\n"
+"klávesnici ze seznamu.\n"
+"\n"
+"Pokud máte klávesnici pro jiný jazyk, klepněte na tlačítko \"%s\"\n"
+"a zobrazí se kompletní seznam všech podporovaných rozložení klávesnic.\n"
+"\n"
+"Pokud vyberete rozložení klávesnice založené na abecedě jiné než latince,\n"
+"budete v dalším dialogu vyzváni k výběru klávesové zkratky, která bude "
+"přepínat\n"
+"rozložení klávesnice mezi latinkou a vámi zvoleným rozložením."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Prvním krokem je výběr preferovaného jazyka.\n"
+"\n"
+"Výběr preferovaného jazyka ovlivňuje dokumentaci, jazyk instalačního "
+"programu\n"
+"a všech programů obecně. V prvním kroku si vyberete region kde žijete\n"
+"a potom jazyk kterým mluvíte.\n"
+"\n"
+"Tlačítko \"%s\" umožňuje zvolit další jazyky, které budou také\n"
+"nainstalovány a můžete je použít v systému. Výběrem dalších jazyků "
+"nainstalujete\n"
+"soubory s aplikacemi a dokumentací specifické pro tyto jazyky. Pokud "
+"například\n"
+"na počítači pracují občas lidé ze Španělska, vyberte angličtinu jako hlavní\n"
+"jazyka pod tlačítkem rozšířené zatrhněte volbu \"%s\".\n"
+"\n"
+"Podpora UTF-8 (unicode): Unicode je nové kódování znaků, které obsahuje\n"
+"všechny známé jazyky. Plná podpora v GNU/Linuxu je stále ve vývoji.\n"
+"Z toho důvodu bude nebo nebude v systému použita podle volby uživatele:\n"
+"\n"
+" * Pokud vyberete jazyk s jasně daným kódováním (latin1, Ruština, "
+"Japonština\n"
+"Čínština, Korejština, Thajština, Řečtina, Turečtina, většina jazyků "
+"používajících kódování\n"
+"iso-8859-2), bude implicitně použito minulostí staré kódování;\n"
+"\n"
+" * Ostatní jazyky používají implicitně Unicode.\n"
+" * Pokud potřebujete dva nebo více jazyků a tyto jazyky nepoužívají stejné\n"
+"kódování, bude pro celý systém použito kódování Unicode;\n"
+"\n"
+" * Pokud uživatel vybere volbu \"%s\", bude použito kódování Unicode "
+"nezávisle\n"
+"na výběru jazyků pro celý systém.\n"
+"\n"
+"Při výběru jazyka nejste omezeni pouze na jediný další. Můžete si jich "
+"vybrat\n"
+"více nebo dokonce nainstalovat všechny vybráním volby \"%s\".\n"
+"Podpora jazyka zahrnuje instalaci lokalizací programů, písem, kontroly\n"
+"pravopisu, atd. \n"
+"\n"
+"Změnu různých jazyků instalovaných v systému lze provést pomocí příkazu\n"
+"\"localedrake\" spuštěného jako uživatel \"root\". Spuštění pod\n"
+"běžným uživatelem způsobí změnu nastavení pouze pro daného uživatele."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Španělské"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Aplikace DrakX obvykle zjistí počet tlačítek na vaší myši. Pokud ne, "
+"předpokládá,\n"
+"že máte dvoutlačítkovou myš a nastaví emulaci pro třetí tlačítko myši.\n"
+"Emulace třetího tlačítka se provádí současným stiskem levého i pravého\n"
+"tlačítka. Aplikace také umí rozpoznat, zda se jedná o myš PS/2, USB\n"
+"nebo sériovou.\n"
+"\n"
+"Pokud máte třítlačítkovou myš bez kolečka, můžete si vybrat typ myši \"%s"
+"\".\n"
+"Instalační program potom nastaví emulaci tak, že se posun kolečkem simuluje\n"
+"stisknutím prostředního tlačítka a posunováním myší nahoru a dolů.\n"
+"\n"
+"Pokud chcete zadat jiný typ myši, vyberte odpovídající typ se seznamu.\n"
+"\n"
+"Můžete rovněž vybrat položku \"%s\", kterou zvolíte \"obecný\" typ myši,\n"
+"který by měl pracovat správně s téměř každou myší.\n"
+"\n"
+"Pokud vyberete jinou myš než ta, která byla detekována, zobrazí se "
+"testovací\n"
+"obrazovka. Zde otestujte jak tlačítka tak i kolečko a ověřte, zda je "
+"nastavení\n"
+"správné. Pokud myš nepracuje správně, stiskněte mezerník nebo klávesu Enter\n"
+"a vyberte jiný typ myši.\n"
+"\n"
+"Myši s kolečkem nejsou v některých případech automaticky rozpoznány. Budete\n"
+"je muset vybrat ze seznamu. Ujistěte se, že vyberete myš s odpovídajícím "
+"typem\n"
+"portu, ke kterému je připojená. Poté, co stisknete tlačítko \"%s\", \n"
+"zobrazí se obrázek s myší. Posunujte kolečkem, aby se správně aktivovalo; "
+"kolečko\n"
+"na obrazovce by se mělo pohybovat. Poté ověřte tlačítka a zda-li se myš "
+"pohybuje\n"
+"na obrazovce správně."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "s emulací kolečka"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Univerzální | Libovolná PS/2 & USB myš"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Vyberte prosím správný port. Například \"COM1\" pod MS Windows má\n"
+"v Linuxu název \"ttyS0\"."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Následující rozhodnutí je jedním z těch, které ovlivňují celkovou "
+"bezpečnost\n"
+"systému GNU/Linux, tj. volba hesla pro uživatele \"Root\". Root je správcem\n"
+"systému, je jediný odpovědný za provádění aktualizací, přidávání uživatelů a "
+"také\n"
+"za celkové nastavení systému. Zkráceně: \"root\" může úplně všechno!\n"
+"To je také důvodem, proč se heslo volí takové, aby se nedalo lehce uhodnout\n"
+"a instalační program DrakX zkontroluje, zda není příliš jednoduché. Jak "
+"vidíte,\n"
+"je možné heslo nezadat, ale toto velmi důrazně nedoporučujeme, a to z "
+"jednoho\n"
+"důvodu. Nemyslete si, že pokud spustíte systém GNU/Linux, že je vše bezpečné "
+"a že se nemůže nic stát.. Vzhledem k tomu, že na uživatele \"root\" se "
+"nevztahují\n"
+"běžná omezení, může nenávratně poškodit celý systém, smazat data z jiných\n"
+"oddílů na disku a operačních systémů, vymazat potřebné soubory nebo celé\n"
+"oddíly, atd. Proto je důležité, aby nebylo jednoduché se tímto uživatelem "
+"stát.\n"
+"\n"
+"Zvolené heslo by se mělo skládat ze znaků a číslic a mělo by být dlouhé\n"
+"minimálně 8 znaků. Také není dobré si ho kamkoliv poznamenávat - po\n"
+"nalezení vaší poznámky může být velmi jednoduché se do vašeho systému\n"
+"dostat.\n"
+"\n"
+"Nevolte však heslo příliš dlouhé nebo komplikované, bude nutné si jej bez\n"
+"větších potíží zapamatovat.\n"
+"\n"
+"Při zadávání nebude heslo na obrazovce zobrazeno. Proto se heslo zadává\n"
+"dvakrát pro ověření, zda nedošlo k překlepu při prvním pokusu. Tak je možné\n"
+"heslo opravit a zadat dvakrát stejné. Pokud se vám přesto podaří zadat "
+"stejný\n"
+"překlep dvakrát, budete muset toto heslo s překlepem použít při prvním\n"
+"přihlášení.\n"
+"\n"
+"Jestliže chcete použít ověřovací server, klepněte na tlačítko \"%s\".\n"
+"\n"
+"Pokud se ve vaší síti používá pro ověřování uživatelů protokol LDAP, NIS\n"
+"nebo ověřovací doména Windows PDC, vyberte odpovídající protokol pro \"%s"
+"\".\n"
+"Pokud o tom nic nevíte, zeptejte se správce vaší sítě.\n"
+"\n"
+"Pokud máte problémy se zapamatováním si hesel nebo pokud není počítač\n"
+"připojen do žádné spravované sítě a věříte všem, kteří mají k počítači "
+"přístup,\n"
+"můžete vybrat volbu \"%s\"."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "ověření"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Zavaděč je malý program, který se spustí ihned po startu počítače a je\n"
+"zodpovědný za zavedení operačního systému. Tato část je obvykle plně\n"
+"automatická. Instalační program analyzuje zaváděcí sektor disku a zachová\n"
+"se podle toho, co zde nalezne:\n"
+"\n"
+" * pokud nalezne zaváděcí sektor Windows, přepíše ho sektorem pro LILO/GRUB\n"
+"tak, aby bylo možné spouštět jak systém Windows tak i Linux či jiný OS "
+"instalovaný\n"
+"na vašem počítači;\n"
+"\n"
+" * pokud nalezne zaváděcí sektor pro LILO nebo GRUB, tak jej přepíše novým.\n"
+"\n"
+"Pokud instalační program nedokáže rozhodnout, zeptá se na to, kam má "
+"zavaděč\n"
+"umístit. Obecně je nejbezpečnější místo \"%s\". Zvolením \"%s\" se "
+"neprovede\n"
+"instalace žádného zavaděče. Použijte to pouze tehdy, pokud víte, co děláte."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Zde si můžete vybrat tiskový systém, který budete používat. Jiné OS "
+"nabízejí\n"
+"jeden, Mandriva Linux nabízí dva. Každý z nich je vhodnější pro různé typy\n"
+"konfigurací.\n"
+"\n"
+" * \"%s\" - což znamená 'print, do not queue' a je vhodný tehdy, pokud máte\n"
+"přímo připojenou lokální tiskárnu, chcete rychle řešit zaseklý papír a "
+"nemáte\n"
+"žádné síťové tiskárny. \"%s\" zvládá pouze několik možností a tisk na něj ze "
+"sítě\n"
+"je velmi pomalý. Pokud s GNU/Linuxem teprve začínáte, pak je \"pdq\"\n"
+"doporučený tiskový systém pro vás.\n"
+"\n"
+" * \"%s\"'Common Unix Printing System' je vynikající v tisku na lokální\n"
+"tiskárny stejně jako při tisku na tiskárnu na druhé straně planety. "
+"Nastavení\n"
+"je jednoduché a může fungovat jako klient i server pro klienty z \"lpd\"\n"
+"systému, takže je kompatibilní se staršími systémy. Je možné nastavit\n"
+"spoustu voleb, ale základní nastavení je velmi jednoduché, téměř jako u \"pdq"
+"\".\n"
+"Pokud potřebujete emulovat \"lpd\" server, stačí spustit démona \"cups-lpd"
+"\".\n"
+"\"%s\" má také grafické prostředí pro tisk a nastavení tiskárny.\n"
+"\n"
+"Pokud nyní provedete volbu a později budete chtít tiskový systém změnit,\n"
+"můžete to provést pomocí nástroje PrinterDrake z ovládacího centra Mandriva "
+"tak,\n"
+"že klepnete na tlačítko \"%s\"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Expert"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"Aplikace DrakX se nejdříve pokusí najít všechny pevné disky v počítači.\n"
+"Také se pokusí nalézt jeden nebo více PCI SCSI adaptérů. Pokud nějaký "
+"najde,\n"
+"automaticky nainstaluje správný ovladač.\n"
+"\n"
+"Protože automatická detekce hardware nemusí vždy nalézt všechny typy "
+"hardware,\n"
+"budete v dialogu dotázáni, zda vůbec máte nějaký SCSI adaptér. \n"
+"\n"
+"Pokud si budete muset vybrat ovladač ručně, aplikace DrakX se zeptá,\n"
+"zda pro něj chcete zadat nějaké volby Měli byste povolit aplikaci DrakX,\n"
+"ať se pokusí zjistit, které volby jsou pro danou kartu potřeba. Většinou to\n"
+"funguje dobře.\n"
+"\n"
+"Pokud to nebude fungovat, budete muset zadat další informace pro ovladač "
+"ručně."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": pokud je detekována v počítači zvuková karta, je zde\n"
+"zobrazena. Pokud ale vidíte, že zobrazená karta není přesně tak, kterou\n"
+"máte v počítači, můžete klepnutím na tlačítko vybrat jinou kartu a ovladač."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Zde jsou shromážděny různé informace, které se vztahují k tomuto počítači.\n"
+"V závislosti na tom, zda je či není přítomen daný hardware, můžete nebo\n"
+"nemusíte některé z těchto položek vidět. Každý záznam má krátký souhrn\n"
+"s aktuální konfigurací. Klepnutím na odpovídající tlačítko \"%s\" jej "
+"můžete\n"
+"změnit.\n"
+"\n"
+" * \"%s\": zkontrolujte nastavení rozložení kláves, pokud je to nutné, \n"
+"klepnutím na tlačítko lze změnit rozložení kláves, .\n"
+"\n"
+" * \"%s\": zkontrolujte výběr země. Pokud výběr nesouhlasí, klepnutím na\n"
+"tlačítko \"%s\" můžete vybrat jinou zemi. Pokud vaše země není na prvním\n"
+"seznamu, můžete si klepnutím na tlačítko \"%s\" zobrazit kompletní seznam.\n"
+"\n"
+" * \"%s\": instalační program se pokusí odhadnout časové pásmo na\n"
+"základě vámi vybraného jazyka. Pokud není odhadnuto správně, můžete jej\n"
+"pomocí tlačítka \"%s\" změnit.\n"
+"\n"
+" * \"%s\": zkontrolujte vaši myš. Pokud je to nutné, lze ji také změnit.\n"
+"\n"
+" * \"%s\": Klepnutím na tlačítko \"%s\" se spustí průvodce\n"
+"nastavením tiskárny. V odpovídající kapitole v \"Uživatelské příručce\" se\n"
+"dozvíte více o tom, jak tiskárnu nastavit. Rozhraní, které je v ní popsané, "
+"je\n"
+"podobné rozhraní použitému při této instalaci.\n"
+"\n"
+" * \"%s\": pokud byla při instalaci detekována zvuková karta, je\n"
+"zde zobrazena. Pokud uvedený ovladač není správný, lze provést výběr "
+"správného.\n"
+"\n"
+" * \"%s\": pokud byla detekována televizní karta, je zde zobrazena.\n"
+"Pokud karta nebyla automaticky detekována, klepnutím na tlačítko \"%s\"\n"
+"můžete provést ruční nastavení.\n"
+"\n"
+" * \"%s\": pokud byla detekována ISDN karta, je zde zobrazena.\n"
+"Klepnutím na tlačítko \"%s\" můžete měnit parametry pro tuto kartu.\n"
+"\n"
+" * \"%s\": instalační program jako výchozí rozlišení zvolí\n"
+"rozlišení \"800×600\" nebo \"1024×768\". Pokud vám to nevyhovuje, je možné\n"
+"to pomocí tlačítka \"%s\" změnit.\n"
+"\n"
+" * \"%s\": pokud chcete nyní nastavit připojení k Internetu nebo k lokální\n"
+"síti, klepnutím na tlačítko se spustí průvodce. Plnou dokumentaci naleznete\n"
+"v tištěné příručce, případně můžete po instalaci využít ovládací centrum\n"
+"Mandriva Linux, kde rovněž naleznete kompletní nápovědu.\n"
+"\n"
+" * \"%s\": umožňuje nastavit adresu HTTP a FTP proxy, což je užitečné,\n"
+"pokud se počítač nachází za firewallem.\n"
+"\n"
+" * \"%s\": tato položka dovoluje předefinovat úroveň zabezpečení, která "
+"byla\n"
+"nastavena v předchozím kroku\n"
+"\n"
+" * \"%s\": pokud budete počítač připojovat do Internetu, je doporučeno "
+"spustit\n"
+"ochranu před napadením aktivací firewallu. Více o nastavení firewallu se\n"
+"dočtete v odpovídající kapitole příručky \"Začínáme\".\n"
+"\n"
+" * \"%s\": pokud chcete změnit nastavení zavaděče, můžete to provést\n"
+"klepnutím na toto tlačítko. Změny by měly provádět pouze zkušení uživatelé.\n"
+"Více informací lze nalézt v tištěné dokumentaci nebo online nápověde\n"
+"v ovládacím centru Mandriva Linux.\n"
+"\n"
+" * \"%s\": zde si můžete konkrétně určit, které služby budou na vašem "
+"počítači\n"
+"spuštěny. Pokud bude tento počítač používán jako server, je vhodné provést\n"
+"kontrolu toho, co je nastaveno."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN karta"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Grafické rozhraní"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Vyberte disk, který chcete smazat pro instalaci oddílu Mandriva Linux.\n"
+"Pamatujte na to, že všechna data budou ztracena a nelze je již obnovit!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Klepněte na \"%s\", pokud chcete smazat všechna data a oddíly na tomto\n"
+"pevném disku. Buďte opatrní, po odklepnutí tlačítka \"%s\" nelze obnovit "
+"žádná dřívější data ani oddíly a to i pro Windows.\n"
+"\n"
+"Klepnutím na \"%s\" zrušíte tuto operaci bez ztráty dat a oddílů na disku."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Další ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Předchozí"
+
diff --git a/perl-install/install/help/po/cy.po b/perl-install/install/help/po/cy.po
new file mode 100644
index 000000000..b9bdc1582
--- /dev/null
+++ b/perl-install/install/help/po/cy.po
@@ -0,0 +1,1909 @@
+# translation of DrakX-cy.po to Cymraeg
+# Copyright (C) 2003 Free Software Foundation, Inc.
+# Rhoslyn Prys <rhoslyn.prys@ntlworld.com>, 2003,2004,2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Mandriva DrakX.cy\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2006-03-08 19:38-0000\n"
+"Last-Translator: Rhoslyn Prys <post@meddal.com>\n"
+"Language-Team: Cymraeg <post@meddal.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Welsh\n"
+"X-Poedit-Country: UNITED KINGDOM\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"Plural-Forms: nplurals=2; plural=(n == 2) ? 1 : 0;\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Cyn parhau dylech ddarllen amodau'r drwydded yn ofalus. Mae'n ymwneud\n"
+"â holl ddosbarthiad Mandriva Linux. Os ydych yn cytuno â'r holl amodau,\n"
+"cliciwch flwch \"%s\". Os nad, bydd clicio ar y botwm \"%s\" yn\n"
+"ail gychwyn eich cyfrifiadur."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"Mae GNU/Linux yn system aml-ddefnyddiwr, ac mae hyn yn golygu bod pob\n"
+"defnyddiwr yn gallu cael ei ddewisiadau ei hun, ei ffeiliau ei hun ac yn y "
+"blaen.\n"
+"Gallwch ddarllen yr \"Starter Guide\" i ddysgu mwy. Ond yn annhebyg i "
+"\"gwraidd\",\n"
+"sef y gweinyddwr, ni fydd modd i'r defnyddiwr fyddwch yn eu creu yma'n "
+"gallu\n"
+"newid dim ond eu ffeiliau a'u ffurfweddiad ei hun gan amddiffyn y system "
+"rhag\n"
+"newidiadau anfwriadol neu faleisus fydd yn effeithio'r system gyfan. Bydd "
+"rhaid\n"
+"i chi greu un defnyddiwr cyffredin ar gyfer chi eich hun. Dyma'r cyfrif "
+"ddylech\n"
+"fewngofnodi iddo ar gyfer defnydd bob dydd. Er ei fod yn ymarferol iawn i "
+"fewngofnodi fel\n"
+"\"root\" gall fod yn beryglus iawn!. Gall y camgymeriad lleiaf olygu nad yw "
+"eich\n"
+"system yn gweithio ragor. Os wnewch chi gamgymeriad mawr fel defnyddiwr\n"
+"cyffredin, byddwch ond yn colli rhywfaint o wybodaeth, ac nid y system "
+"gyfan.\n"
+"\n"
+"Yn gyntaf rhowch eich enw go iawn. Does dim rhaid, wrth gwrs - mae modd\n"
+"i chi rhoi beth bynnag hoffech chi. Bydd DraX yn cymryd yr enw cyntaf a'i "
+"roi yn\n"
+"yr \"%s\" Dyma'r enw bydd y defnyddiwr hwn yn ei ddefnyddio i\n"
+"fewngofnodi i'r system. Mae modd ei newid. Yna rhowch gyfrinair. Nid yw\n"
+"cyfrinair defnyddiwr cyffredin mor bwysig ag un \"gwraidd\" o safbwynt "
+"diogelwch\n"
+"ond nid yw hynny'n rheswm i'w esgeuluso - wedi'r cyfan mae eich ffeiliau "
+"mewn\n"
+"perygl\n"
+"\n"
+"Os wnewch chi glicio \"%s\", bydd modd ychwanegu faint\n"
+"fynnoch. Ychwanegwch ddefnyddiwr ar gyfer pob un o'ch ffrindiau: eich tad\n"
+"neu eich chwaer, e.e. Ar ôl ychwanegu'r holl ddefnyddwyr, cliciwch \"%s\".\n"
+"\n"
+"Bydd clicio'r botwm \"%s\" yn caniatáu i chi newid y \"cragen\" "
+"rhagosodedig\n"
+"ar gyfer y defnyddiwr hwnnw (bash yw'r rhagosodedig).\n"
+"\n"
+"Pan fyddwch wedi cwblhau ychwanegu defnyddwyr, bydd gofyn i chi ddewis\n"
+"defnyddiwr sy'n gallu mewngofnodi'n awtomatig mewngofnodi i'r system pan\n"
+"fydd y cyfrifiadur yn cychwyn.Os oes gennych ddiddordeb yn y nodwedd hon\n"
+"a dim gwahaniaeth am ddiogelwch, dewiswch y defnyddiwr a rheolwr ffenestr\n"
+"a chlicio \"%s\". Os nad dad-diciwch blwch \"%s\" ."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Ydych chi eisiau defnyddio'r nodwedd?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Dyma'r rhaniadau Linux sydd wedi canfod ar eich disg caled.\n"
+"Gallwch gadw'r dewisiadau sydd wedi eu gwneud gan y dewin, maen nhw'n iawn\n"
+"ar gyfer y rhan fwyaf o osodiadau. Os ydych am wneud newidiadau, rhaid i chi "
+"o leiaf\n"
+"ddiffinio rhaniad gwraidd (\"/\"). Peidiwch ddewis rhaniad sy'n rhy fach neu "
+"fidicon"
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mae gosodiad Mandriva Linux i'w gael ar nifer o CD-ROMau. Mae DrakX\n"
+"yn gwybod os yw pecyn penodol wedi ei leoli ar CD-ROM arall a bydd yn bwrw\n"
+"allan y CD cyfredol a gofyn am y llall. Os nad yw'r CD angenrheidiol "
+"gennych\n"
+"wrth law, cliciwch \"%s\", ac ni fydd y pecynnau hynny'n cael eu gosod."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Mae'n amser penderfynu pa raglenni rydych am eu gosod ar eich\n"
+"system. Mae yna filoedd o becynnau ar gael ar gyfer Mandriva Linux, ond\n"
+"i'w gwneud hi'n haws eu rheoli maent wedi cael eu gosod mewn grwpiau\n"
+"o raglenni tebyg.\n"
+"\n"
+"Mae Mandriva Linux wedi trefnu'r grwpiau pecynnau i bedwar categori. Mae\n"
+"modd dewis a dethol rhaglenni o'r categorïau gwahanol, fel bo \"Man Gwaith"
+"\"\n"
+"yn medru cael rhaglenni o'r categori \"Gweinydd\".\n"
+"\n"
+" * \"%s\": os ydych yn bwriadu defnyddio eich peiriant fel man\n"
+"gwaith yna dewiswch un o'r grwpiau cyfatebol.\n"
+"\n"
+" * \"%s\": os yw'r peiriant yn cael ei ddefnyddio i raglennu, dewiswch\n"
+" y grwpiau perthnasol. Bydd y grŵp arbennig \"LSB\" yn ffurfweddu\n"
+"eich system fel ei fos yn cyd-fynd gymaint ag y bo modd gyda manyleb\n"
+"Linux Standard Base.\n"
+"\n"
+" Bydd dewis grŵp \"LSB\" hefyd yn gosod cnewyllyn cyfres \"2.4\",\n"
+"yn lle'r \"2.6\" rhagosodedig. Mae hyn i sicrhau cydymffurfiad llawn\n"
+"y system gyda LSB. Er hynny, os nad ydych yn dewis grŵp \"LSB\"\n"
+"bydd eich system yn cydymffurfio bron yn 100%% gyda LSB.\n"
+"\n"
+" * \"%s\": os yw'n fwriad defnyddio eich peiriant fel gweinydd dewiswch\n"
+" y gwasanaethau cyffredin rydych am eu gosod ar eich peiriant.\n"
+"\n"
+" * \"%s\": dyma'r lle i ddewis eich amgylchedd graffigol.\n"
+"Rhaid dewis o leiaf un er mwyn cael man gwaith graffigol!\n"
+"\n"
+"Bydd symud cyrchwr y llygoden dros enw grŵp yn amlygu esboniad byr am y\n"
+"grŵp hwnnw.\n"
+"\n"
+"Ticiwch flwch \"%s\", sy'n ddefnyddiol os ydych yn gyfarwydd â'r\n"
+"pecynnau sydd ar gael neu os ydych am gael rheolaeth lwyr dros\n"
+"beth fydd yn cael ei osod.\n"
+"\n"
+"Os fyddwch yn cychwyn y gosod ym modd \"%s\" gallwch ddad-ddewis\n"
+"pob grŵp ac atal gosod unrhyw becynnau newydd. Mae hyn yn ddefnyddiol\n"
+"ar gyfer trwsio neu ddiweddaru system bresennol.\n"
+"\n"
+"Os ydych wedi dad-ddewis pob grŵp wrth wneud gosodiad\n"
+"arferol ac nid uwchraddiad), bydd dialog yn ymddangos a chynnig\n"
+"dewisiadau amrywiol ar gyfer y gosodiad lleiaf\n"
+"\n"
+" * \"%s\" Gosod y nifer lleiaf o becynnau i gael bwrdd gwaith graffigol\n"
+"i weithio.\n"
+"\n"
+" * \"%s\" Gosod y system sylfaenol yn ogystal â gwasanaethau elfennol\n"
+"a'u dogfennau. Mae'r gosodiad hwn yn addas ar gyfer gosod gweinydd.\n"
+"\n"
+" * \"%s\" Gosod y lleiafswm posibl o becynnau i greu system Linux \n"
+"llinell orchymyn weithredol. Cyfanswm maint y gosodiad fydd tua 65MB."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Uwchraddio"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Gyda dogfennaeth elfennol"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Gosodiad lleiaf posibl"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Os ydych wedi dewis gosod pecynnau'n unigol unigol, bydd y gosodwr\n"
+"yn cyflwyno coeden sy'n cynnwys yr holl becynnau wedi eu dosbarthu yn ôl\n"
+"grwp ac isgrwp. Wrth bori'r goeden, gallwch ddewis grwp cyfan, isgrwp \n"
+"neu becyn unigol.\n"
+"\n"
+"Pryd bynnag fyddwch wedi dewis pecyn ar y goeden, bydd disgrifiad yn\n"
+"ymddangos ar y dde. \n"
+"\n"
+"!! Os oes pecyn gweinydd wedi ei ddewis, yn fwriadol neu am ei fod yn rhan\n"
+"o grwp cyfan, bydd angen i chi gadarnhau eich bod eisiau i'r gweinyddion\n"
+"gael eu gosod. Ym Mandriva Linux mae unrhyw weinydd sydd wedi ei\n"
+"osod yn cael ei gychwyn fel rhagosodiad wrth gychwyn. Hyd yn oed os ydynt\n"
+"yn ddiogel a doedd dim materion pryder pan gafodd y dosbarthiad ei ryddhau,\n"
+"mae'n bosibl i fylchau diogelwch gael eu darganfod wedi i'r fersiwn hwn o\n"
+"Mandriva Linux gael ei gwblhau. Os nad ydych yn gwybod beth mae\n"
+"gwasanaeth arbennig i fod i'w wneud na pham mae wedi ei osod, yna\n"
+"cliciwch\"%s\". Bydd clicio \"%s\" yn gosod y gwasanaethau hynny a\n"
+"byddant yncael eu cychwyn yn awtomatig drwy ragosodiad!!\n"
+"\n"
+"Mae'r dewis \"%s\"yn analluogi'r deialog rhybudd sy'nymddangos bob\n"
+" tro fydd y gosodwr yn dewis pecyn yn awtomatig. Mae hyn yn digwydd\n"
+"am ei fod wedi penderfynu ei fod angen bodlon dibyniad gyda phecyn arall\n"
+"er mwyn cwblhau'r gosodiad yn llwyddiannus\n"
+"\n"
+"Mae'r eicon disg medal bychan ar waelod y rhestr yn caniatáu llwytho'r\n"
+"rhestr pecynnau dewiswyd yn ystod gosodiad blaenorol. Bydd clicio\n"
+"ar yr eicon hwn yn gofyn i chi osod yn y peiriant disg meddal grëwyd ar\n"
+"ddiwedd gosodiad arall. Gwelwch yr ail neges o'r cam diwethaf ar sut i\n"
+"greu disg meddal o'r fath."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Dibyniaethau awtomatig"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": mae clicio ar y botwm\"%s\" yn agor dewin ffurfweddu argraffydd.\n"
+"Darllenwch y pennawd penodol yn y 'Starter Guide' am ragor o \n"
+"wybodaeth ar sut i osod argraffydd newydd. Mae'r rhyngwyneb yn y llawlyfr\n"
+"yn debyg i'r un welwyd wrth osod y system."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Dewiswch pa wasanaethau rydych am eu cael wrth gychwyn eich cyfrifiadur.\n"
+"\n"
+"Bydd DrakX yn rhestri'r holl wasanaethau sydd ar gael gyda'r gosodiad "
+"cyfredol.\n"
+"Darllenwch y rhestr yn ofalus a dad-diciwch y rhai nad oes eu hangen bob "
+"tro\n"
+"wrth gychwyn.\n"
+"\n"
+"Mae modd cael esboniad byr am wasanaeth wrth eu dewis. Ond, os nad ydych\n"
+"yn siwr a yw'r gwasanaeth o werth neu beidio, mae'n well cadw at y drefn\n"
+"rhagosodedig\n"
+"\n"
+"!!Byddwch yn ofalus iawn os ydych am ddefnyddio eich peiriant fel gweinydd:\n"
+"mwy na thebyg na fyddwch eisiau cychwyn unrhyw wasanaethau nad oes eu\n"
+"hangen. Cofiwch fod cael nifer o wasanaethau wedi eu galluogi ar y "
+"gweinydd,\n"
+"fod yn beryglus. Yn gyffredinol, dim ond dewis y gwasanaethau mae'n rhaid eu "
+"cael !!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"Mae GNU/Linux yn rheoli amser drwy GMT (Greenwich Mean Time)\n"
+"a'i drosi i amser lleol yn ôl y parth amser rydych wedi ei ddewis.\n"
+"Mae'n bosib dad-ddewis hyn drwy ddad-ddewis \"%s\" fel bod y cloc\n"
+"caledwedd yr un a chloc y system yr un peth. Mae hyn yn ddefnyddiol\n"
+"pan fo'r peiriant yn westai i system arall.\n"
+"\n"
+"Bydd y dewis \"%s\" yn rheoli'r cloc yn awtomatig drwy gysylltu \n"
+"â gweinydd amser ar y Rhyngrwyd. Yn y rhestr sy'n cael ei gynnig \n"
+"dewiswch yr agosaf atoch. Rhaid i'ch cyswllt â'r we fod yn gweithio\n"
+"i hyn ddigwydd. Bydd yn gosod ar eich peiriant wasanaethwr amser fydd\n"
+"o ddewis yn medru cael ei ddefnyddio gan beiriannau eraill ar eich "
+"rhwydwaith."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Cydweddi amser awtomatig"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Cerdyn Graffeg\n"
+"\n"
+" Mae'r gosodwr fel rheol yn canfod ac yn ffurfweddu'n awtomatig\n"
+"y cerdyn graffig sydd ar eich cyfrifiadur. Os nad yw hyn yn wir,\n"
+"dewiswch eich cerdyn o'r rhestr.\n"
+"\n"
+" Mewn achos lle mae gweinyddion eraill i'w cael i'ch cerdyn, gyda\n"
+"neu heb gyflymydd 3D, mae cynnig i chi ddewis y gweinydd gorau\n"
+"ar eich cyfer."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (sef X Window System) yw calon rhyngwyneb graffigol GNU/Linux a'r\n"
+"hyn mae'r holl amgylcheddau graffigol (KDE, Gnome, AterStep,\n"
+"WindowMaker, etc) sy'n dod gyda Mandriva Linux yn dibynnu arno.\n"
+"\n"
+"Byddwch yn derbyn rhestr o baramedrau gwahanol i'w newid i gael\n"
+"y dangosiad graffigol gorau:\n"
+"\n"
+" Cerdyn Graffeg\n"
+"\n"
+" Mae'r gosodwr fel rheol yn canfod ac yn ffurfweddu'n awtomatig\n"
+"y cerdyn graffeg sydd ar eich cyfrifiadur. Os nad yw hyn yn wir,\n"
+"dewiswch eich cerdyn.\n"
+"\n"
+" Mewn achos lle mae gweinyddion eraill i'w cael i'ch cerdyn, gyda\n"
+"neu heb gyflymydd 3D, mae cynnig i chi ddewis y gweinydd gorau\n"
+"ar eich cyfer.\n"
+"\n"
+"\n"
+"Dangosydd\n"
+"\n"
+" Mae'r gosodwr fel rheol yn canfod ac yn ffurfweddu'n awtomatig\n"
+"y dangosydd sy'n gysylltiedig â'ch cyfrifiadur. Os nad yw hyn yn gywir,\n"
+"mae'n dangos eich dangosydd.\n"
+"\n"
+"\n"
+"\n"
+"Cydraniad\n"
+"\n"
+" Cewch ddewis yma gydraniad a dyfnder lliw rhwng y rhai sydd ar gael\n"
+"ar gyfer eich caledwedd. Dewiswch yr un sydd orau ar eich cyfer (bydd\n"
+"modd newid hynny wedi'r gosod) Mae enghraifft o ffurfweddiad i'w weld\n"
+"ar y dangosydd.\n"
+"\n"
+"\n"
+"\n"
+"Prawf\n"
+"\n"
+" Bydd y system yn ceisio agor sgrin graffigol yn unol â'r cydraniad "
+"dewisol.\n"
+"Os ydych yn gweld y neges yn ystod y prawf ac ateb \"%s\", yna bydd\n"
+"DrakX yn symud ymlaen i'r cam nesaf. Os nad ydych yn gweld y neges nesaf\n"
+"mae'n golygu fod rhan o'r drefn awtoganfod yn anghywir a bydd y prawf\n"
+"yn dod i ben ar ôl 12 eiliad, gan ddod a chi nôl i'r ddewislen. Newidiwch y\n"
+"gosodiadau nes i chi gael y sgrin i edrych yn iawn.\n"
+"\n"
+"\n"
+"\n"
+"Dewisiadau\n"
+"\n"
+" Yma cewch ddewis p'un ai i drefnu i'ch cyfrifiadur newid yn awtomatig i\n"
+"rhyngwyneb graffigol wrth gychwyn. Yn amlwg byddwch angen ticio \"%s\"\n"
+"os yw eich peiriant i weithredu fel gweinydd, neu os na fuoch yn\n"
+"llwyddiannus yn ffurfweddu'r dangosydd."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Dangosydd\n"
+"\n"
+" Mae'r gosodwr fel rheol yn canfod ac yn ffurfweddu'n awtomatig\n"
+"y dangosydd sy'n gysylltiedig â'ch cyfrifiadur. Os nad yw hyn yn wir,\n"
+"dewiswch eich dangosydd o'r rhestr."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Cydraniad\n"
+"\n"
+" Cewch ddewis yma gydraniad a dyfnder lliw rhwng y rhai sydd ar gael\n"
+"ar gyfer eich caledwedd. Dewiswch yr un sydd orau ar eich cyfer (bydd\n"
+"modd newid hynny wedi'r gosod) Mae enghraifft o ffurfweddiad i'w weld\n"
+"ar y dangosydd."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Mewn achos lle mae gweinyddion eraill i'w cael i'ch cerdyn, gyda\n"
+"neu heb gyflymydd 3D, mae cynnig i chi ddewis y gweinydd gorau\n"
+"ar eich cyfer."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Dewisiadau\n"
+"\n"
+" Yma gallwch ddewis os ydych am i'ch cyfrifiadur droi i ryngwyneb graffig\n"
+"wrth gychwyn y cyfrifiadur. Yn amlwg, byddwch am ateb \"%s\" os yw\n"
+"eich peiriant i weithredu fel gweinydd, neu os nad oeddech yn\n"
+"llwyddiannus yn cael eich dangosydd i ffurfweddu'n gywir."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Mae angen i chi nawr ddewis lle ar eich disg caled i osod eich system\n"
+"weithredu Mandriva Linux. Os yw eich disg caled yn wag neu os oes\n"
+"yna system weithredol eisoes yn cymryd yr holl le sydd ar gael, bydd\n"
+"angen i chi greu rhaniadau arno. Yn y bôn, mae rhannu disg caled yn\n"
+"golygu ei rhannu'n rhesymegol i greu lle i osod eich system Mandriva\n"
+"Linux newydd.\n"
+"\n"
+"Gan fo effaith y broses rannu'n ddidroi nôl, gan arwain at golli data os\n"
+"oes system weithredol eisoes ar y gyrrwr, gall creu rhaniadau fod yn\n"
+"broses anodd a straenus os ydych yn ddefnyddiwr dibrofiad. Yn ffodus,\n"
+"mae gan DrakX ddewin sy'n symleiddio'r broses. Cyn cychwyn, \n"
+"darllenwch y llawlyfr a chymerwch bwyll.\n"
+"\n"
+"Yn ddibynnol ar ffurfweddiad eich disg caled, mae dewisiadau ar gael:\n"
+"\n"
+" * \"%s\": mae'r dewis hwn yn arwain at greu rhaniadau awtomatig\n"
+"o'ch disg(iau) caled gwag. Bydd dim cwestiynau eraill os byddwch\n"
+"yn defnyddio'r dewis hwn.\n"
+"\n"
+" * \"%s\": mae'r dewin wedi canfod un neu fwy o raniadau Linux\n"
+"cyfredol ar eich disg caled. Os ydych am eu defnyddio, dewiswch y\n"
+"dewis hwn. Bydd gofyn i chi ddewis pwyntiau gosod yn gysylltiedig\n"
+"â phob rhaniad. Mae'r pwyntiau gosod gosodedig wedi eu dewis,\n"
+"ac ar y cyfan mae'n syniad da cadw atynt.\n"
+"\n"
+" * \"%s\": os yw Microsoft Windows ar eich disg caled ac yn cymryd\n"
+"y lle i gyd, bydd rhaid i chi greu lle ar gyfer data Linux. I wneud hynny\n"
+"gallwch ddileu eich rhaniad a data Microsoft Windows (Gw. atebion\n"
+"\"Dileu'r ddisg gyfan \") neu ail-lunio maint rhaniad FAT Microsoft "
+"Windows.\n"
+"Mae modd ail lunio maint y rhaniad heb golli data cyn belled eich bod wedi\n"
+"dad-ddarnio rhaniad Windows ac mae'n defnyddio fformat Windows.\n"
+"Argymhellir cadw data wrth gefn hefyd. Argymhellir gwneud hyn os ydych\n"
+"am ddefnyddio Mandriva Linux a Microsoft Windows ar yr un cyfrifiadur.\n"
+"\n"
+" Cyn gwneud y dewis hwn, cofiwch y bydd maint eich rhaniad Microsoft\n"
+"Windows yn llai nag yw ar hyn o bryd ar ol dilyn y drefn yma. Bydd gennych\n"
+"llai o le yn Microsoft Windows i gadw data neu i osod meddalwedd newydd\n"
+"\n"
+" * \"%s\" os ydych am ddileu'r holl ddata a rhaniadau presennol ar\n"
+"eich disg caled a'u cyfnewid am system Mandriva Linux, yna dewiswch\n"
+"hwn. Byddwch yn ofalus wrth wneud hyn gan na fydd modd troi nôl\n"
+"ar ôl cadarnhau.\n"
+"\n"
+" !! Os ydych yn dewis hwn, byddwch yn colli'r holl ddata ar eich disg. !!\n"
+"\n"
+" * \"%s\": Bydd y dewis yma'n ymddangos pam mae'r ddisg gyfan wedi\n"
+"ei chymryd gan Microsoft Windows. Bydd hwn yn dileu popeth o'r disg\n"
+"caled a chychwyn popeth o'r newydd, gan greu rhaniadau newydd.\n"
+"\n"
+" !! Os ydych yn dewis hwn, byddwch yn colli'r holl ddata ar eich disg. !!\n"
+"\n"
+" * \"%s\": dewiswch hwn os ydych am rannu'r disg caled gyda llaw.\n"
+"Byddwch ofalus - mae'n ddewis pwerus a pheryglus. Mae modd i chi \n"
+"golli'ch holl ddata. Peidiwch dewis hwn oni bai eich bod yn gwybod beth\n"
+"ydych yn ei wneud.. Am ragor o wybodaeth ar sut i ddefnyddio DiskDrake,\n"
+"darllenwch adran \"Managing your Partitions\" yn y \"Starter Guide\"."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Defnyddiwch y rhaniadau presennol"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Dileu'r ddisg gyfan"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Dyna ni, mae'r gosodiad wedi ei gwblhau ac mae eich system GNU/Linux\n"
+"yn barod i'w ddefnyddio. Cliciwch \"%s\" i ailgychwyn y cyfrifiadur. "
+"Peidiwch\n"
+"anghofio tynnu'r cyfrwng gosod (CD-ROM neu feddal). Y peth cyntaf i chi\n"
+"weld ar ôl i'ch cyfrifiadur gwblhau ei brofion caledwedd yw'r ddewislen\n"
+"llwytho, sy'n rhoi dewis o ba system i'w chychwyn.\n"
+"\n"
+"Mae'r botwm \"%s\" yn dangos dau fotwm arall:\n"
+"\n"
+" *\"%s\": i greu disg meddal gosod fydd yn creu yn awtomatig osodiad\n"
+"cyflawn heb gymorth gweithredwr, yn debyg i'r gosodiad sydd\n"
+"newydd ei ffurfweddu.\n"
+"\n"
+"Sylwer bod dau ddewis gwahanol i'w gael wedi clicio'r botwm:\n"
+"\n"
+" *\"%s\". Gosodiad rhannol awtomatig gan fod mai'r cam o greu\n"
+"rhaniad yw'r unig ran ryngweithiol o'r broses.\n"
+"\n"
+" *\"%s\".Gosodiad cwbl awtomatig: mae'r disg caled wedi ei\n"
+"ailysgrifennu'n llwyr, a'r holl ddata wedi ei golli.\n"
+"\n"
+"Mae hwn yn nodwedd ddefnyddiol iawn wrth osod ar nifer fawr o\n"
+"beiriannau tebyg. Gw. yr adran Auto install ar ein safle gwe.\n"
+"\n"
+"*\"%s\":(*): mae hwn yn cadw'r dewis o becynnau wnaed cynt.\n"
+"Wrth wneud gosodiad arall, rhowch ddisg meddal yn y gyrrwr a rhedeg\n"
+"y gosodiad gan fynd i'r sgrin cymorth drwy wasgu'r fysell [F1], \n"
+"a theipio >>linux defcfg=\"floppy\"<< a phwyso bysell [Enter].\n"
+"\n"
+"(*) Bydd angen disg meddal wedi ei fformatio fel FAT (i greu un yn\n"
+"GNU/Linux, teipiwch \"mformat a:\" neu \"fdformat /dev/fd0\" wedi\n"
+"ei ddilyn gan \"mkfs.vfat /dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Creu disg meddal awto gosod"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Efallai y byddwch eisiau ailfformatio rhai rhaniadau presennol i ddileu "
+"data\n"
+"sydd arnynt. Os ydych am wneud hynny, dewiswch y rhaniadau hynny hefyd.\n"
+"\n"
+"Sylwch nad oes angen ailfformatio'r holl raniadau sy'n bodoli eisoes. "
+"Rhaid \n"
+"ailfformatio'r rhaniadau sy'n cynnwys y system weithredu [megis \"/\",\"usr"
+"\"\n"
+"neu \"/var\") ond nid oes rhaid i chi ail fformatio rhaniadau sy'n cynnwys\n"
+"data rydych am ei gadw (e.e. \"/home\").\n"
+"\n"
+"Byddwch ofalus wrth ddewis rhaniadau. Ar ôl fformatio bydd yr holl ddata ar\n"
+"y rhaniadau'n cael eu dileu ac ni fydd modd ei adfer.\n"
+"\n"
+"Cliciwch \"%s\" pan ydych yn barod i fformatio rhaniadau.\n"
+"\n"
+"Cliciwch \"%s\" os ydych am ddewis rhaniad arall ar gyfer eich gosodiad\n"
+"Mandriva Linux newydd\n"
+"\n"
+"Cliciwch \"%s\" os ydych am ddewis rhaniadau i'w gwirio am flociau\n"
+"gwallus ar y ddisg."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Erbyn i chi osod Mandriva Linux, mae'n debygol y bydd rhai \n"
+"pecynnau wedi eu diweddaru ers y rhyddhad cychwynnol. Bydd rhai \n"
+"gwallau wedi eu cywiro a materion diogelwch wedi eu datrys. I ganiatáu\n"
+"i chi fanteisio ar hyn mae cynnig i chi eu llwytho i lawr o'r rhyngrwyd.\n"
+"Dewiswch \"%s\" os oes gennych gyswllt gweithredol â'r rhyngrwyd,\n"
+"neu \"%s\"\"os ydych am osod pecynnau mwy diweddar rhywbryd eto.\n"
+"\n"
+"Bydd dewis \"%s\" yn dangos rhestr o leoedd o le mae modd derbyn\n"
+"diweddariadau. Dewiswch yr un agosaf atoch. Yna, bydd coeden dewis\n"
+"pecynnau yn ymddangos: Wedi i chi benderfynu ar eich dewis, cliciwch\n"
+"\"%s\" i estyn a gosod y pecynnau hynny neu \"%s\" i beidio."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Yma mae DrakX yn caniatáu i chi ddewis lefel diogelwch y peiriant. Fel\n"
+"rheol, y mwyaf agored yw'r peiriant, y mwyaf pwysig yw'r data'r uchaf\n"
+"ddylai'r lefel diogelwch fod neu fod gan y peiriant gysylltiad uniongyrchol\n"
+"gyda'r rhyngrwyd. Er hynny, mae diogelwch yn dod ar draul\n"
+"hwylustod. \n"
+"\n"
+"Os nad ydych yn siŵr beth i'w ddewis, dewiswch y rhagosodedig. Byddwch\n"
+"yn gallu newid y lefel diogelwch yn ddiweddarach gyda draksec o\n"
+"Ganolfan Rheoli Mandriva.\n"
+"\n"
+"Mae maes \"%s\" yn gallu dweud wrth y system o'r defnyddiwr sydd â\n"
+"chyfrifoldeb am ddiogelwch. Bydd negeseuon diogelwch yn cael eu hanfon\n"
+"at y cyfeiriad hwnnw. "
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Cyfrinair Gweinyddwr"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Yn awr mae angen i chi ddewis pa raniadau i'w defnyddio ar gyfer gosodiad\n"
+"eich system Mandriva Linux. Os oes rhaniadau wedi eu diffinio eisoes, un\n"
+"ai drwy osodiad blaenorol o GNU/Linux neu gan offeryn rhannu arall, mae\n"
+"modd i chi ddefnyddio'r rhaniadau presennol. Os nad, rhaid i' rhaniadau'r\n"
+"ddisg caled gael eu diffinio.\n"
+"\n"
+"I greu rhaniadau, rhaid yn gyntaf ddewis disg caled. Mae modd dewis disg\n"
+"i'w rannu drwy glicio ar \"hda\" ar gyfer y ddisg IDE cyntaf., \"hdb\" ar\n"
+"gyfer yr ail, \"sda\" ar gyfer y ddisg SCSI cyntaf, ac yn y blaen.\n"
+"\n"
+"I greu'r rhaniad, mae modd defnyddio'r dewisiadau hyn:\n"
+"\n"
+" *\"%s\": mae'r dewis hwn yn dileu pob rhaniad ar ddisg.\n"
+"\n"
+" *\"%s\": mae'r dewis hwn yn caniatáu i chi greu'n awtomatig\n"
+"Ext2 a rhaniadau cyfnewid mewn lle gwag ar eich disg.\n"
+"\n"
+" *\"%s\": yn rhoi mynediad i ragor o nodweddion:\n"
+"\n"
+" *\"%s\": mae hwn yn cadw'r tabl rhaniad i ddisg\n"
+"meddal. Mae hyn yn ddefnyddiol ar gyfer adfer tabl rhaniad, os fydd angen\n"
+"\n"
+" \"%s\": mae hyn yn caniatáu adfer tabl rhaniad blaenorol\n"
+"o ddisg meddal.\n"
+"\n"
+" \"%s\": os yw eich tabl rhaniad wedi ei ddifrodi, mae modd\n"
+"ceisio ei adfer drwy'r dewis yma. Byddwch ofalus a chofiwch fod modd iddo\n"
+"fethu.\n"
+"\n"
+" \"%s\": mae hwn yn dileu pob newid ac yn ail lwytho'r\n"
+"tabl rhaniad gwreiddiol.\n"
+"\n"
+" *\"%s\": dad-diciwch y dewis hwn i osod a dad osod\n"
+"gyda llaw, cyfryngau symudol megis disgiau meddal ac CD-ROMau\n"
+"\n"
+" *\"%s\": defnyddiwch y dewis hwn os ydych am ddefnyddio'r dewin i rannu\n"
+"eich disg caled. Dyma'sydd orau os nad oes gennych wybodaeth sylweddol ar\n"
+"rhannu\n"
+"\n"
+" *\"%s\": defnyddiwch y dewis hwn i ddileu eich newidiadau\n"
+"\n"
+" *\"%s\": mae hwn yn caniatáu gweithredoedd\n"
+"pellach ar raniadau. (Math, dewisiadau, fformat) ac mae'n cynnig mwy o\n"
+" wybodaeth.\n"
+"\n"
+" *\"%s\":pan fyddwch wedi gorffen rhannu eich disg, bydd hwn yn cadw\n"
+" eich newidiadau yn ôl i'r ddisg\n"
+"\n"
+"Sylwer: mae modd cyrraedd y dewisiadau drwy'r bysellfwrdd. Symudwch drwy'r\n"
+" rhaniadau gan ddefnyddio [Tab] a'r saethau [I Fyny/I Lawr].\n"
+"\n"
+"Pan fydd rhaniad wedi ei ddewis, gallwch ddefnyddio:\n"
+"\n"
+" *Ctrl-c i greu rhaniad newydd (pan fo rhaniad gwag yn cael ei ddewis);\n"
+"\n"
+" *Ctrl-d i ddileu rhaniad;\n"
+"\n"
+" *Ctrl-m i greu pwynt gosod;\n"
+"\n"
+"I dderbyn gwybodaeth am yr amrywiol systemau ffeil sydd ar gael, darllenwch "
+"y\n"
+" pennawd ar ext2fs yn y ``Reference Manual''.\n"
+"\n"
+"Os ydych yn gosod ar beiriant PPC, bydd angen i chi greu \"ymlwythwr\" \n"
+" bychan o leiaf 1MB o faint, fydd yn cael ei ddefnyddio gan ymlwythwr "
+"yaboot.\n"
+"Os ydych yn dewis gwneud y rhaniad rhywfaint yn fwy, dyweder tua 50MB, yna\n"
+"gall fod yn le defnyddiol i gadw cnewyllyn sbâr a delweddau ramdisk ar "
+"gyfer\n"
+" sefyllfaoedd cychwyn argyfyngus!"
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Awto gosod cyfrwng symudol"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Amnewid rhwng modd arferol/arbenigol"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Mae mwy nag un rhaniad Microsoft wedi ei ganfod ar eich disg caled.\n"
+"Dewiswch ba un rydych am newid ei faint er mwyn gosod eich\n"
+"system weithredu Mandriva Linux newydd\n"
+"\n"
+"Mae pob rhaniad wedi ei restri fel hyn: \"Enw Linux\", \"Enw Windows\",\n"
+"\"Maint\".\n"
+"\n"
+"Mae \"Enw Linux\" wedi ei strwythuro fel hyn: \"math o ddisg caled\", \n"
+"\"rhif y disg caled\", \"rhif y rhaniad\" (e.e., \"hda1\").\n"
+"\n"
+"\"hd\" yw'r \"Math o ddisg caled\" os mai disg caled IDE sydd gennych\n"
+"a \"sd\" yw disg caled SCSI.\n"
+"\n"
+"Llythyren wedi'r \"hd\" neu \"sd\" yw'r \"Rhif disg caled\" bob tro.\n"
+"Gyda disgiau caled IDE:\n"
+"\n"
+" * mae \"a\" yn golygu \"prif ddisg caled ar y rheolydd IDE cyntaf\",\n"
+"\n"
+" * mae \"b\" yn golygu \"ddisg caled gwas ar y rheolydd IDE cyntaf\",\n"
+"\n"
+" * mae \"c\" yn golygu \"prif ddisg caled ar yr ail reolydd IDE\",\n"
+"\n"
+" * mae \"d\" yn golygu \"ddisg caled gwas ar yr ail reolydd IDE\",\n"
+"\n"
+"Gyda disgiau caled SCSI mae \"a\" yn golygu'r \"enw SCSI isaf\", ac mae\n"
+" \"b\" yn golygu'r \"ail enw SCSI isaf\", ag ati.\n"
+"\n"
+"Mae \"Enw Windows\" yn cyfeirio at y llythyren y disg caled o dan\n"
+" Windows (\"C:\" yw'r ddisg neu raniad cyntaf)."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\":gwiriwch y dewis gwlad. Os nad ydych yn y wlad hon cliciwch y\n"
+"botwm \"%s\"a dewis un arall. Os nad yw eich gwlad ar y rhestr gyntaf,\n"
+"cliciwch \"%s\" i edrych ar y rhestr gyflawn."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Mae'r cam hwn yn cael ei weithredu os oes hen raniad GNU/Linux wedi\n"
+"ei ganfod ar y cyfrifiadur.\n"
+"\n"
+"Bydd DrakX angen gwybod a ydych am osod o'r newydd neu uwchraddio\n"
+"system Mandriva Linux presennol.\n"
+"\n"
+" *\"%s\" Ar y cyfan, mae hwn yn tynnu'r hen system gyfan oddi ar eich\n"
+"cyfrifiadur. Er hynny, yn ddibynnol ar eich trefn rhannu, mae modd atal\n"
+"peth o'ch data (yn arbennig, cyfeiriaduron \"home\" ) rhag cael ei "
+"ysgrifennu drosto. Os ydych am newid rhaniadau eich disgiau caled, neu newid "
+"y\n"
+"system ffeil, dylech ddewis hwn.\n"
+"\n"
+" *\"%s\": Mae'r dosbarth gosod hwn yn caniatáu i chi ddiweddaru'r\n"
+"pecynnau sydd wedi eu gosod ar eich system Mandriva Linux. Bydd eich\n"
+"rhaniadau presenol a'ch data personol yn cael eu cadw. Bydd y rhan fwyaf\n"
+"o'r camau ffurfweddu ar gael fel gyda'r gosod arferol.\n"
+"\n"
+"Dylai defnyddio \"Diweddaru\" weithio'n iawn ar systemau Mandriva Linux\n"
+"sy'n rhedeg systemau \"8.1\" neu'n ddiweddarach. Nid yw uwchraddio\n"
+"fersiynau cyn Mandriva Linux \"8.1\" yn cael ei gymeradwyo."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Fel arfer mae DrakX yn dewis y bysellfwrdd cywir ar eich cyfer ( gan "
+"ddibynnu pa\n"
+" iaith rydych wedi ei ddewis(). Gwiriwch fod y dewis yn addas neu dewiswch "
+"gynllun\n"
+"bysellfwrdd arall.\n"
+"\n"
+"Efallai nad oes gennych fysellfwrdd sy'n cyfateb yn union i'ch iaith: e.e., "
+"os ydych\n"
+"yn Americanwr sy'n siarad Cymraeg, efallai eich bod am gadw eich "
+"bysellfwrdd\n"
+"Americanaidd. Neu os ydych yn siarad Cymraeg ac yn byw yn Hong Kong mae'r\n"
+" un sefyllfa'n codi. Yn y ddwy achos bydd angen i chi fynd yn ôl i'r cam yma "
+"yn y\n"
+" gosodiad a dewis y bysellfwrdd perthnasol o'r rhestr.\n"
+"\n"
+"Cliciwch ar fotwm \"%s\" i dderbyn y rhestr o fysellfyrddau sy'n cael eu "
+"cynnal.\n"
+" \n"
+"Os fyddwch yn dewis cynllun bysellfwrdd wedi ei seilio ar wyddor an-"
+"Lladinaidd, \n"
+"bydd y deialog nesaf yn caniatáu i chi ddewis rwymiad allwedd fydd yn newid "
+"y\n"
+"bysellfwrdd rhwng cynlluniau Lladin ac an-Lladin."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Y cam cyntaf yw dewis eich hoff iaith.\n"
+"\n"
+"Bydd eich dewis iaith yn effeithio ar iaith y gosodwr, y ddogfennaeth\n"
+" a'r system yn gyffredinol. Dewiswch yr ardal lle rydych ac yna eich iaith.\n"
+"\n"
+"Bydd clicio ar y botwm \"%s\" yn caniatáu i chi ddewis ieithoedd eraill\n"
+"i'w gosod ar eich peiriant gwaith. Bydd dewis ieithoedd eraill yn gosod\n"
+"ffeiliau penodol sy'n cynnwys dogfennaeth a rhaglenni yn yr ieithoedd\n"
+"hynny. Er enghraifft, os ydych yn westeiwr ar gyfer defnyddwyr o Sbaen,\n"
+"dewiswch Gymraeg fel y rhagosodedig yng ngolwg coeden ac yn yr Uwch\n"
+"adran cliciwch \"%s\". \n"
+"\n"
+"Ynghylch cefnogaeth UTF-8 (unicode): Amgodiad nod newydd yw Unicode\n"
+"sydd i gynnwys pob iaith. Er hynny, mae cefnogaeth i bob iaith o fewn\n"
+"GNU/Linux yn dal yn cael ei ddatblygu Oherwydd hynn mae defnydd\n"
+"Mandriva Linux o UTF-8 yn ddibynnol ar ddewis y defnyddiwr:\n"
+"\n"
+" * Os ydych yn dewis iaith gyda hen amgodiad cryf (ieithoedd lladin1\n"
+"Rwsieg, Siapanëeg, Tsieinëeg, Corëeg, Thai, Groeg, Twrceg, y rhan\n"
+" fwyaf o ieithoedd iso-8859-2) bydd yr hen amgodiad yn cael ei ddefnyddio;\n"
+"\n"
+" * Bydd ieithoedd eraill yn defnyddio unicode drwy ragosodiad;\n"
+"\n"
+" * Os oes angen dwy neu fwy o ieithoedd, ac nid yw'r ddwy iaith yn "
+"defnyddio'r\n"
+"un amgodiad, yna bydd unicode yn cael ei ddefnyddio drwy'r holl system\n"
+"\n"
+" * Yn olaf, mae modd gorfodi'r defnydd o unicode drwy'r system gyfan ar\n"
+"gais y defnyddiwr drwy ddewis \"%s\" yn annibynnol o ba iaith sydd wedi cêl "
+"ei ddewis.\n"
+"\n"
+"Sylwer bod modd gosod mwy nag un iaith. Mae modd i chi ddewis mwy\n"
+"nag un, neu hyd yn oed eu gosod i gyd, drwy ddewis y blwch \"%s\".\n"
+"Mae dewis cefnogaeth i bob iaith yn golygu gosod cyfieithiadau, ffontiau, \n"
+"gwiryddion sillafu, ag ati, ar gyfer yr iaith honno.\n"
+"\n"
+"I newid rhwng yr ieithoedd amrywiol sydd ar y system gallwch gychwyn\n"
+"y gorchymyn \"/usr/sbin/localedrake\" fel \"root\" i newid yr iaith\n"
+"sy'n cael ei ddefnyddio gan y system gyfan. Bydd rhedeg y gorchymyn fel\n"
+"defnyddiwr cyffredin yn gweithio dim ond ar gyfer yr unigolyn hwnnw."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Sbaeneg"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Fel rheol does gan DrakX ddim problem yn canfod y nifer o fotymau ar eich\n"
+"llygoden. Os yw, bydd yn cymryd for gennych lygoden dau fotwm a bydd yn\n"
+"ffurfweddu efelychiad trydydd botwm. Mae modd pwyso trydydd botwm\n"
+"llygoden dau fotwm ar unwaith gan glicio'r botymau chwith a de. Bydd DrakX\n"
+"yn gwybod yn awtomatig p'un ai yw'r llygoden yn defnyddio rhyngwyneb PS/2\n"
+"cyfresol neu USB.\n"
+"\n"
+"Lle mae gennych lygoden 3 botwm heb olwyn, cewch ddewis y llygoden sy'n\n"
+"dweud \"%s\". Bydd DrakX yn ffurfweddu eich llygoden fel bod modd "
+"efelychu'r\n"
+"olwyn gydag ef: i wneud hynny pwyswch y botwm canol a symud eich llygoden "
+"nôl a blaen.\n"
+"\n"
+"Os am ryw reswm yr hoffech nodi llygoden o fath gwahanol, dewiswch un\n"
+"o'r rhestr amgaeëdig.\n"
+"\n"
+"Gallwch ddewis \"%s\" i ddewis math llygoden ``generic'' sy'n gweithio gyda\n"
+"bron bob llygoden.\n"
+"\n"
+"Os fyddwch yn dewis llygoden wahanol i'r rhagosodedig gyd sgrin\n"
+"profi'n cael ei ddangos. Defnyddiwch y botymau a'r olwyn i wirio fod\n"
+"y gosodiadau'n gywir a bod y llygoden yn gweithio'n iawn. Os nad yw'r\n"
+"llygoden yn gweithio'n dda, pwyswch y bar bylchu neu fysell [Return] i\n"
+"i ddiddymu'r prawf ac i fynd nôl i'r rhestr dewis.\n"
+"\n"
+"Ar brydiau nid yw llygod olwyn yn cael eu canfod yn awtomatig, felly bydd\n"
+"angen dewis eich llygoden o'r rhestr. Gwnewch yn siŵr eich bod yn dewis\n"
+"y porth sy'n cyfateb i le mae eich llygoden. Ar ôl dewis llygoden a "
+"phwyso'r\n"
+"botwm \"%s\" , bydd delwedd llygoden yn cael ei dangos ar y sgrin. Trowch\n"
+"olwyn y llygoden i sicrhau ei fod yn gweithio'n iawn. Unwaith i chi weld yr\n"
+"olwyn ar y sgrin yn symud wrth i chi droi'r olwyn. profwch y botymau a "
+"gwirio fod\n"
+"pwyntydd y llygoden yn symud ar y sgrin wrth i chi symud y llygoden."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "gydag efelychiad Olwyn"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Cyffredinol | Unrhyw lygoden PS/2 ac USB"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Dewiswch y porth cywir. Mae porth \"COM1\" o dan MS Windows yn cael ei alw "
+"yn\n"
+"\"ttyS0\" yn GNU/Linux, e.e."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Mae hwn yn fan pwysig ynghylch diogelwch eich system GNU/Linux; rhaid\n"
+"rhoi cyfrinair \"root\".\"Root\" yw gweinyddwr y system a'r unig un sydd â'r "
+"hawl\n"
+"i wneud diweddariadau, ychwanegu defnyddwyr, newid ffurfweddiad cyffredinol\n"
+"y system, ac yn y blaen. Yn fyr mae \"root\" yn medru gwneud popeth! Dyna\n"
+"pam mae'n rhaid dewis cyfrinair sy'n anodd ei ddyfalu - bydd DrakX yn dweud\n"
+"wrthych os yw'n rhy hawdd. Fel y gwelwch, mae modd peidio gorfod cynnig\n"
+"cyfrinair, ond rydym yn argymell yn erbyn hyn, hyd yn oed am un rheswm:\n"
+"peidiwch â meddwl bod eich systemau gweithredu eraill yn ddiogel rhag\n"
+"camgymeriadau, gan eich bod wedi cychwyn o GNU/Linux. Gan fod \"root\" yn\n"
+"medru goresgyn unrhyw gyfyngiadau a dileu data'n anfwriadol ar bob rhaniad,\n"
+"drwy fynd at y rhaniadau'n ddi-hid, yna mae'n bwysig ei gwneud hi'n anodd "
+"bod\n"
+"yn \"root\".\n"
+"\n"
+"Dylai'r cyfrinair fod yn gyfuniad o rifau a llythrennau ac o leiaf 8 nod o "
+"hyd.\n"
+"Peidiwch ysgrifennu cyfrinair \"root\" ar bapur - bydd yn ei gwneud hi'n "
+"rhy\n"
+"hawdd gwanhau'r system.\n"
+"\n"
+"Er hynny, peidiwch â gwneud y cyfrinair yn rhy hir neu gymhleth am fod rhaid "
+"i\n"
+"chi fedri ei gofio heb ormod o drafferth.\n"
+"\n"
+"Ni fydd y cyfrinair yn cael ei ddangos ar y sgrin wrth i chi ei deipio. "
+"Felly bydd\n"
+" rhaid i chi deipio'r cyfrinair ddwywaith i leihau'r siawns o deipio gwall. "
+"Os ydych\n"
+"yn digwydd gwneud yr un gwall teipio ddwywaith, bydd rhaid defnyddio'r "
+"cyfrinair\n"
+"\"anghywir\" i gychwyn y tro cyntaf fel \"root\".\n"
+"\n"
+"Os hoffech i fynediad i'r cyfrifiadur gael ei reoli gan wasanaethwr dilysu, "
+"cliciwch\n"
+"y botwm \"%s\".\n"
+"Os yw eich rhwydwaith yn defnyddio protocol gwasanaethau dilysu LDAP, NIS\n"
+"neu PDC Windows Domain, dewiswch un addas fel \"%s\",\n"
+"Os nad ydych yn gwybod, gofynnwch i'ch gweinyddwr rhwydwaith\n"
+"\n"
+"Os ydych yn cael anawsterau atgoffa cyfrineiriau, gallwch ddewis\n"
+"\"%s\", os na fydd eich cyfrifiadur yn cael cyswllt â'r we ac rydych\n"
+"yn ymddiried yn y defnyddiwr."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "dilysu"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Rhaglen fechan yw'r cychwynnwr sy'n cael ei gychwyn gan y cyfrifiadur.\n"
+"Mae'n gyfrifol am gychwyn y system i gyd. Fel rheol mae'r rhan yma'n\n"
+"digwydd yn awtomatig. Bydd DrakX yn dadansoddi'r adran cychwyn\n"
+"disg a gweithredu yn â'r yr hyn mae'n ei ganfod yno.\n"
+"\n"
+" *os yw'n canfod adran cychwyn Windows, bydd yn ei amnewid gyda\n"
+"adran cychwyn GRUB/LILO. O ganlyniad bydd modd i chi gychwyn un\n"
+"ai GNU/Linux neu system arall.\n"
+"\n"
+" *os fydd adran gychwyn GRUB neu LILO'n cael ei ganfod bydd yn ei\n"
+"amnewid gydag un mwy diweddar.\n"
+"\n"
+"Os nad yw'n medru penderfynu, bydd DrakX yn gofyn i chi lle i osod\n"
+"y cychwynnydd. Yn gyffredinol, \"%s\" yw'r man mwyaf diogel. Ni fydd\n"
+" dewis \"%s\" yn gosod cychwynnydd. Dim ond ar gyfer y gwybodus."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Yma byddwn yn dewis system argraffu i'ch cyfrifiadur ei ddefnyddio. Efallai\n"
+"bod systemau eraill yn cynnig un i chi, ond mae Mandriva yn cynnig dwy.\n"
+"Mae 'r systemau'n addas gar gyfer ffurfweddiad arbennig.\n"
+"\n"
+" *\"%s\" - sy'n golygu \"print, do not queue\", yw'r dewis os oes gennych\n"
+"gysylltiad uniongyrchol â'ch argraffydd a'ch bod eisiau medru tynnu allan o "
+"waith\n"
+"argraffu pan fo'r papur wedi mynd yn sownd ac nad oes gennych argraffyddion\n"
+"wedi eu cysylltu drwy rwydwaith. (Dim ond rhwydweithiau syml mae \"%s\" yn "
+"ei\n"
+"drin ac mae'n araf ar rwydweithiau). Dewiswch \"pdq\" os mai dyma yw eich\n"
+"tro cyntaf yn GNU/Linux.\n"
+"\n"
+" *\"%s\" - \"Common Unix Printing System\". Mae hwn yn dda ar gyfer\n"
+"argraffu i argraffyddion lleol a hanner ffordd rownd y byd. Mae'n symlach, "
+"yn\n"
+"gallu gweithredu fel gwasanaethwr neu gleient ar gyfer yr hen system \"lpd"
+"\"\n"
+"ac felly mae'n cydweddi â'r systemau sydd wedi mynd o'i flaen. Mae'n gallu\n"
+"gwneud nifer o driciau, ond mae bron mor syml i'w osod \"pdq\". Os ydych\n"
+"amgen hwn i efelychu gwasanaethwr \"lpd\", yna rhaid cychwyn aemon\n"
+"\"cups-lpd\". Mae gan \"%s\" wyneb graffigol ar gyfer argraffu dewis\n"
+"argraffydd neu reoli'r argraffu.\n"
+"\n"
+"\n"
+"Os ydych yn dewis yn awr ac yn ddiweddarach yn penderfynu eich bod\n"
+"am newid eich system argraffu gallwch ei newid drwy gyfrwng PrinterDrake\n"
+"yng Nghanolfan Rheoli Mandriva a chlicio'r botwm %s."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Arbenigwr"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"Bydd DrakX yn canfod unrhyw ddyfais IDE sydd ar eich cyfrifiadur. Bydd yn\n"
+"chwilio am un neu fwy o gardiau SCSI PCI ar eich system. Os oes Cerdyn\n"
+"SCSI'n cael ei ganfod bydd DrakX yn awtomatig yn gosod y gyrrwr priodol.\n"
+"\n"
+"Oherwydd nad yw canfod caledwedd bob tro'n canfod darn o galedwedd,\n"
+"gall DrakX fethu canfod eich disgiau caled. Os felly, bydd rhaid i chi "
+"bennu\n"
+"eich caledwedd â llaw.\n"
+"\n"
+"Os ydych wedi pennu eich addaswr PCI SCS gyda llaw, bydd DrakX yn\n"
+"gofyn i chi ydych am bennu dewisiadau ar ei gyfer. Dylech adael i DrakX "
+"ofyn\n"
+"i'r cerdyn am ddewisiadau penodol i'r cerdyn mae angen i'r caledwedd eu\n"
+"cychwyn. Mae hyn fel rheol yn gweithio'n dda\n"
+"\n"
+"Os nad yw DrakX yn gallu holi am y dewisiadau sydd eu hangen, bydd rhaid i\n"
+" chi ffurfweddu'r gyrrwr gyda llaw. "
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": os yw cerdyn sain yn cael ei ganfod ar eich cyfrifiadur, bydd \n"
+"yn cael ei ddangos yma. Os ydych yn sylwi nad y cerdyn sain sydd ar eich\n"
+"cyfrifiadur sy'n cael ei ddangos, yna cliciwch ar y botwm a dewis\n"
+"gyrrwr arall."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"I grynhoi, bydd DrakX yn cyflwyno crynodeb o'r wybodaeth amrywiol\n"
+"sydd ganddo am eich system. Yn ddibynnol ar eich caledwedd, mae'n bosib\n"
+"bod gennych rywfaint o'r nodweddion canlynol. Mae pob cofnod yn cynnwys\n"
+"eitem ffurfweddadwy, a chrynodeb o'r ffurfweddiad presennol. Cliciwch ar y\n"
+"botwm \"%s\" perthnasol i'w newid.\n"
+"\n"
+" *\"%s\": gwirio ffurfweddiad map y bysellfwrdd a'i newid os oes angen.\n"
+"\n"
+" *\"%s\": gwirio'r dewis gwlad. Os nad ydych yn y wlad hon, cliciwch y "
+"botwm\n"
+"\"%s\" a dewis un arall. Os nad yw eich gwlad ar y rhestr gyntaf i'w\n"
+"dangos, cliciwch y botwm \"%s\" am y rhestr gyflawn o wledydd.\n"
+"\n"
+"\n"
+" *\"%s\": Mae DrakX yn dyfalu eich parth amser yn ôl y wlad rydych\n"
+"wedi ei dewis. Mae modd clicio ar y botwm \"%s\" i'w gywiro.\n"
+"\n"
+" *\"%s\": gwirio ffurfweddiad y llygoden bresennol a chlicio ar y botwm\n"
+"i'w newid os oes angen.\n"
+"\n"
+" \"%s\": bydd clicio ar y botwm \"%s\" yn agor y dewin\n"
+"ffurfweddu argraffydd. Darllenwch y pennawd yn y \"Starter Guide\" ar\n"
+"sut i osod argraffydd newydd. Mae'r rhyngwyneb yn debyg i'r un ar gyfer\n"
+"ei osod yn y man cyntaf.\n"
+"\n"
+" *\"%s\": os oes cerdyn sain wedi ei ganfod ar eich system bydd\n"
+"yn cael ei ddangos yma. Os ydych yn sylwi nad y cerdyn sain sy'n cael ei\n"
+"ddangos yw'r un sydd ar eich system, yna cliciwch y botwm a dewis\n"
+"gyrrwr arall.\n"
+"\n"
+" * \"%s\": os oes cerdyn teledu wedi ei ganfod ar eich system\n"
+"bydd yn cael ei ddangos yma. Os oes gennych gerdyn ac nid yw wedi cael\n"
+"ei ganfod, cliciwch \"%s\" i geisio ei ffurfweddu â llaw.\n"
+"\n"
+" * \"%s\": cliciwch ar \"%s\" i newid paramedrau cysylltiedig â'r cerdyn\n"
+"os yw'r ffurfweddiad yn anghywir.\n"
+"\n"
+" *\"%s\": fel rheol bydd DrakX yn gosod eich rhyngwyneb\n"
+"i gydraniad \"800x600\" neu \"1024x768\". Os nad yw hyn yn addas ar\n"
+"eich cyfer cliciwch y botwm \"%s\" i'w newid.\n"
+" \n"
+" * \"%s\": os ydych am ffurfweddu eich mynediad i'r Rhyngrwyd neu\n"
+"eich rhwydwaith lleol, mae modd gwneud hynny. Darllenwch y deunydd\n"
+"ysgrifenedig neu ddefnyddio Canolfan Reoli Mandriva Linux wedi i'r gosod\n"
+"orffen i fanteisio ar gymorth ar-lein llawn.\n"
+"\n"
+" * \"%s\": os ydych am ffurfweddu cyfeiriadau dirprwyol HTTP ac FTP os\n"
+"yw'r peiriant rydych yn ei osod i fod tu nôl i weinydd dirprwyol.\n"
+"\n"
+" * \"%s\": mae modd ail ddiffinio'r lefel diogelwch a osodwyd yn\n"
+"flaenorol ().\n"
+"\n"
+" *\"%s\": mae'n syniad da gosod mur cadarn i'ch amddiffyn rhag\n"
+"ymyriadau os ydych yn bwriadu cysylltu eich cyfrifiadur â'r Rhyngrwyd.\n"
+"Darllenwch y bennod berthnasol yn y \"Starter Guide\" am fanylion\n"
+"gosodiadau mur cadarn.\n"
+"\n"
+" * \"%s\": os hoffech newid ffurfweddiad eich cychwynnwr\n"
+"cliciwch y botwm yma. Ar gyfer defnyddwyr profiadol. Darllenwch y\n"
+"deunydd ysgrifenedig neu'r cymorth ar-lein am ffurfweddiad\n"
+"cychwynwyr yng Nghanolfan Rheoli Mandriva Linux.\n"
+"\n"
+" *\"%s\": yma bydd modd i chi wneud man newidiadau i'r\n"
+"gwasanaethau sy'n cael eu rhedeg ar eich cyfrifiadur. Os ydych yn\n"
+" bwriadu defnyddio'r cyfrifiadur fel gwasanaethwr mae'n syniad da\n"
+"darllen y gosodiadau'n fanwl."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Cerdyn ISDN"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Rhyngwyneb Graffigol"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Dewiswch y ddisg galed rydych am ei ddileu er mwy n gosod eich rhaniad\n"
+"Mandriva Linux newydd. Byddwch ofalus, bydd yr holl ddata sydd arno'n\n"
+"cael ei ddileu ac ni fydd modd ei adfer!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Cliciwch \"%s\" os ydych am ddileu'r holl ddata a rhaniadau sy'n bresennol\n"
+"ar y disg. Byddwch ofalus, wedi i chi glicio \"%s\" ni fydd modd i chi\n"
+"adfer unrhyw ddata na rhaniadau presennol ar y disg caled, gan gynnwys\n"
+"data Windows.\n"
+"\n"
+"Cliciwch \"%s\" i atal y weithred hon heb golli unrhyw ddata\n"
+"a rhaniadau sy'n bresennol ar y ddisg galed."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Nesaf ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Blaenorol"
+
diff --git a/perl-install/install/help/po/da.po b/perl-install/install/help/po/da.po
new file mode 100644
index 000000000..d6d4c540f
--- /dev/null
+++ b/perl-install/install/help/po/da.po
@@ -0,0 +1,1906 @@
+# translation of da.po to
+# translation of da1.po to Danish
+# translation of da.po to Danish
+# translation of DrakX-da.po to Danish
+# Copyright (C) 2000,2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+# Troels Liebe Bentsen <tlb@iname.com> 2000.
+# Keld Simonsen <keld@dkuug.dk>, 2000-2003, 2004, 2005.
+# Keld Simonsen <keld@rap.dk>, 2005, 2006.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: da\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2006-03-05 18:46+0100\n"
+"Last-Translator: Keld Simonsen <keld@rap.dk>\n"
+"Language-Team: <da@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Før du går videre bør du læse betingelserne i licensen omhyggeligt. Den "
+"omfatter hele Mandriva Linux distributionen. Hvis du er enig i alle "
+"betingelserne i den, så klik på '%s'-boksen. Hvis ikke, så vil klikning på "
+"\"%s\"-knappen genstarte din maskine."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux er et flerbrugersystem, det vil sige at hver bruger kan have sine "
+"egne præferencer, sine egne filer og så videre. Du kan læse "
+"startvejledningen for at lære mere om flerbrugersystemer.\n"
+"Men i modsætning til 'root', som er systemadministratoren, vil brugerne som "
+"du tilføjer her ikke have lov til at ændre nogetsomhelst, undtagen deres "
+"egne filer og deres egne opsætninger, hvilket beskytter systemet mod "
+"utilsigtede eller ondartede ændringer som påvirker hele systemet. Du skal "
+"oprette i det mindste én almindelig bruger til dig selv - dette er den konto "
+"som du bør bruge til almindelig dagligt brug. Selvom det er meget nemt at "
+"logge ind som root for at gøre alt, kan det også være meget farligt!\n"
+"En meget simpel fejltagelse kan betyde at dit system ikke virker mere. Hvis "
+"du laver en alvorlig fejltagelse som almindelig bruger, vil det værste der "
+"kan ske at du vil tabe nogen information, men det vil ikke påvirke hele "
+"systemet.\n"
+"\n"
+"Det første felt spørger efter dit rigtige navn. Dette er naturligvis ikke "
+"krævet -du kan faktisk skrive hvad du lyster. DrakX vil bruge det første ord "
+"du indtastede i feltet og kopiere det til '%s'-feltet, hvilket er navnet, "
+"som denne bruger skal indtaste for at logge ind på systemet. Hvis du ønsker "
+"det kan du tilsidesætte det forvalgte og ændre brugernavnet. Det næste trin "
+"er at indtaste en adgangskode. Fra et sikkerhedsmæssigt synspunkt er "
+"adgangskoden for en ikke-priviligeret (normal) bruger er ikke så afgørende "
+"som 'Root'-adgangskoden, men det er ingen grund til at negligere det "
+"alligevel, ved at lade det være blankt eller at gøre det for nemt - når det "
+"kommer til stykket er det dine egne filer, der er i fare.\n"
+"\n"
+"Når du har klikket på '%s', kan du tilføje andre brugere. Tilføj en bruger "
+"for hver af dine venner, din far eller din søster. Når du har tilføjet alle "
+"de brugere du ønsker, klik da på '%s'.\n"
+"\n"
+"Klik på '%s'-knappen lader dig ændre standard-'skál' for denne bruger\n"
+"(bash er standard). \n"
+"\n"
+"Når du er færdig med at tilføje brugere, vil du blive spurgt om at vælge en "
+"bruger som automatisk kan logge ind på systemet når maskinen startes op. "
+"Hvis du er interesseret i denne facilitet (og ikke kærer dig synderligt om "
+"lokal sikkerhed), så vælg den ønskede bruger og vindueshåndtering og klik '%"
+"s'. Hvis du ikke er interesseret i denne facilitet, så afmarkér boksen med '%"
+"s'."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Ønsker du at bruge denne facilitet?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Her er listet de eksisterende Linux-partitioner genkendt på din disk. Du kan "
+"beholde valgene gjort af vejlederen, de er velegnede til almindelig brug. "
+"Hvis du ændrer disse valg skal du i det mindste definere en rod-partition "
+"'/'. Lad være med at vælge en for lille partition, ellers vil du ikke kunne "
+"installere nok programmel. Hvis du ønsker at lagre data på en separat "
+"partition, skal du også vælge en '/home' (kun muligt hvis du har mere end én "
+"Linux-partition). \n"
+"Hver partition er listet som følger: 'Navn', 'Kapacitet'.\n"
+"\n"
+"'Navn' er kodet som følger: 'drevtype', 'drevnummer', "
+"'partitionsnummer' (for eksempel '/hda1').\n"
+"\n"
+"'drevtype' er 'hd' hvis dit diskdrev er et IDE drev, og 'sd' hvis det er et "
+"SCSI drev.\n"
+"\n"
+"'drevnummer' er altid et bogstav efter 'hd' eller 'sd'. For IDE drev:\n"
+"\n"
+" * 'a' betyder 'hoved-drev på den primære IDE controller',\n"
+"\n"
+" * 'b' betyder 'slave-drev på den primære IDE controller',\n"
+"\n"
+" * 'c' betyder 'hoved-drev på den sækundære IDE controller',\n"
+"\n"
+" * 'd' betyder 'slave-drev på den sækundære IDE controller'.\n"
+"\n"
+"For SCSI drev betyder 'a' det 'første drev', 'b' betyder det 'andet drev', "
+"osv."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linux installationen bliver distribueret på flere cdrom-er. Hvis en "
+"valgt pakke ligger på en anden cdrom, vil DrakX udskyde den nuværende cd og "
+"bede dig om at isætte den forespurgte cd. Hvis du ikke har den forespurgte "
+"cd ved hånden, så klik bare på '%s' - de tilsvarende pakker vil da ikke "
+"blive installerede."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Det er nu tid til at angive hvilke pakker du vil installere på dit system. "
+"Der er tusindvis af pakker til dit Mandriva Linux system, og for at gøre det "
+"nemmere at håndtere dem er pakkerne blevet placeret i grupper af lignende "
+"programmer.\n"
+"\n"
+"Mandriva Linux opdeler pakkegrupper i fire kategorier. Du kan vælge og vrage "
+"programmer fra de forskellige grupper, så en installation af "
+"'Arbejdsstation' kan også have programmer fra 'Udvikling'-kategorien "
+"installeret.\n"
+"\n"
+" * '%s': Hvis din maskine skal bruges som en arbejdsstation, vælg da en "
+"eller flere af programmerne der er i arbejdsstationskategorien.\n"
+"\n"
+" * '%s': hvis du vil bruge maskinen til programmering, vælg da de relevante "
+"pakker fra denne kategori. Den særlige 'LSB'-gruppe vil konfigurere dit "
+"system så det er så meget som muligt i overensstemmelse med Linux Standards "
+"Base specifikationerne.\n"
+"\n"
+" Valg af 'LSB'-gruppen vil også installere kerne '2.4'-serien, i stedet "
+"for den normale '2.6'-kerne. Dette for at sikre 100%% LSB overensstemmelse "
+"for systemet. Hvis du ikke vælger -LSB--gruppen vil du dog stadig have et "
+"system der er næsten 100%% LSB-overensstemmende.\n"
+"\n"
+" * '%s': hvis det er planen at maskinen skal være en server, så vælg de mere "
+"almindelige tjenester, som du ønsker at installere på maskinen.\n"
+"\n"
+" * '%s': her skal du vælge foretrukne grafiske miljø. Vælg mindst ét, hvis "
+"du ønsker at have en grafisk grænseflade tilgængelig.\n"
+"\n"
+"Ved flytning af musen over et gruppenavn vises en kort forklarende tekst om "
+"denne gruppe.\n"
+"\n"
+"Du kan afkrydse '%s'-boksen, hvilket er nyttigt hvis du er bekendt med de "
+"pakker der tilbydes, eller hvis du ønsker at have helt styr på hvad der skal "
+"installeres.\n"
+"\n"
+"Hvis du starter installationen i '%s'-tilstand, kan du fravælge alle grupper "
+"og forhindre installationen af enhver ny pakke. Dette er nyttigt ved "
+"reparation eller opdatering af et ekisterende system.\n"
+" \n"
+"Hvis du fravælger alle grupper ved udførelse af en almindelig installation "
+"(i modsætning til en opgradering), vil en dialog komme frem som foreslår "
+"dig forskellige former for minimal installation: \n"
+"\n"
+" * '%s' installerer de færrest mulige antal pakker for at få en fungerende "
+"grafisk arbejdsstation.\n"
+"\n"
+" * '%s' installerer det basale system plus basale nytteprogrammer og "
+"tilhørende dokumentation. Denne installation er passende til at sætte en "
+"server op.\n"
+"\n"
+" * '%s' vil installere det absolut mindst mulige antal pakker nødvendigt for "
+"at få et virkende Linux-system. Med denne installation fås kun en "
+"grænseflade med kommandolinjer. Den totale størrelse af denne installation "
+"er omkring 65 megabyte."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Opgradér"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Med basal dokumentation"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Virkeligt minimale installation"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Hvis du vælger at installere pakker individuelt, vil installeringen vise et "
+"træ med alle pakker opdelt i grupper og undergrupper. Under gennembladring "
+"af træet kan du udvælge hele grupper, undergrupper eller individuelle "
+"pakker.\n"
+"\n"
+"Hver gang du udvælger en pakke i træet vil en beskrivelse fremkomme til "
+"højre for at lade dig vide formålet med denne pakke. \n"
+"\n"
+"!! Når en server-pakke er blevet valgt, enten fordi du specielt valgte den "
+"individuelle pakke, eller fordi den var en del af en gruppe af pakker, vil "
+"du blive spurgt om at bekræfte at du virkelig ønsker at installere disse "
+"servere. Som standard under Mandriva Linux bliver installerede servere "
+"startet op ved opstart af maskinen. Selvom de er sikre og ikke har nogen "
+"kendte problemer på udgivelsestidspunktet for distributionen, er det absolut "
+"muligt at sikkerhedshuller blev opdaget efter at denne version af Mandriva "
+"Linux blev færdiggjort. Hvis du ikke véd hvad en bestemt tjeneste vil gøre "
+"eller hvorfor den skal installeres, så klik '%s' her. Et klik med '%s' her "
+"vil installere de nævnte servere og de vil blive startet automatisk under "
+"opstarten!!\n"
+"\n"
+"'%s'-valget deaktiverer advarselsdialogen, som vises hver gang "
+"installeringsprogrammet automatisk vælger en pakke for at løse et "
+"afhængighedsproblem. Nogen pakker afhænger af andre oginstallation af en "
+"bestemt pakke kan kræve installationen af andre pakker. "
+"Installationsprogrammet kan beregne hvilke pakker der er krævet for at "
+"tilfredsstille en afhængighed for at kunne færdiggøre en installation "
+"problemfrit.\n"
+"\n"
+"Den klejne disketteikon i bunden af listen muliggør indlæsning af en "
+"pakkeliste oprettet ved en tidligere installation. Dette er nyttigt hvis du "
+"har et antal maskiner som du ønsker at konfigurere på samme måde. Klik på "
+"denne ikon vil bede dig om at indsætte disketten lavet i slutningen på en "
+"anden installation. Se råd nr to i det sidste trin for hvordan en sådan "
+"diskette kan laves."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Automatiske afhængigheder"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"'%s': Et klik på '%s'-knappen vil åbne vejlederen for printerkonfigurering. "
+"Kig i det tilhørende kapitel i 'Startvejledningen' for mere information om "
+"hvordan man opsætter en ny printer. Grænsefladen\n"
+"præsenteret i vores manual ligner den som bruges på installationstidspunktet."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Denne dialog bruges til at vælge hvilke tjenester du ønsker skal startes ved "
+"opstart af maskinen.\n"
+"\n"
+"DrakX vil præsentere alle tjenester, som er med i den aktuelle installation. "
+"Gennemse hver enkelt af dem omhyggeligt og vælg dem fra som ikke er "
+"nødvendige på opstartstidspunktet.\n"
+"\n"
+"En kort forklarende tekst om en tjeneste bliver vist når den vælges. Hvis du "
+"ikke er sikker på om en tjeneste er nyttig eller ej, er det dog sikrere at "
+"bruge den foreslåede opførsel.\n"
+"\n"
+"Vær specielt varsom på dette trin hvis du planlægger at bruge maskinen som "
+"server: du vil formentlig ønske ikke at starte nogensomhelst tjeneste op som "
+"du ikke har brug for. Husk at nogen tjenester kan være farlige hvis de er "
+"aktiveret på en server. Vælg som hovedregel kun de tjenester som du virkelig "
+"behøver."
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux håndterer tiden i GMT (Greenwich Mean Time) og oversætter den til "
+"lokal tid ifølge den tidszone du har valgt. Hvis uret på bundkortet er sat "
+"til lokal tid, kan du deaktivere dette ved at fravælge '%s', hvilket vil "
+"lade GNU/Linux vide at systemuret og maskinens ur er i samme tidszone. Dette "
+"er nyttigt når maskinen også bruges til andre operativsystemer.\n"
+"\n"
+"Muligheden '%s' vil automatisk tilpasse systemuret ved at forbinde til en "
+"ekstern tidsserver på internettet. For at denne facilitet kan virke, skal du "
+"have en fungerende internetforbindelse. Vi anbefaler at du vælger en "
+"tidsserver med en placering nær ved dig. Denne mulighed installerer faktisk "
+"en tidsserver som også kan bruges af andre maskiner på dit lokalnetværk."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Automatisk tidssynkronisering"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Grafikkort\n"
+"\n"
+" Installationsprogrammet vil normalt automatisk finde og konfigurere "
+"grafikkortet installeret på din maskine. Hvis dette ikke er tilfældet, kan "
+"du fra denne liste vælge det kort du faktisk har installeret.\n"
+" I tilfælde af at forskellige drivere er tilgængelige til dit kort, med "
+"eller uden 3D-accelleration, bliver du spurgt om at vælge den server der "
+"bedst opfylder dine behov."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (for X Window System) er hjertet af GNU/Linux' grafiske grænseflade som "
+"alle de grafiske miljøer (KDE, GNOME, AfterStep, WindowMaker, mv.) der "
+"kommer sammen med Mandriva Linux afhænger af.\n"
+"\n"
+"Du vil se en liste med forskellige parametre der kan ændres for at få den "
+"bedst mulige grafiske fremvisning:\n"
+"\n"
+"Grafikkort\n"
+"\n"
+" Installationsprogrammet vil normalt automatisk finde ud af at konfigurere "
+"grafikkortet installeret på din maskine. Hvis dette ikke er rigtigt kan du "
+"fra denne liste vælge det kort du faktisk har installeret.\n"
+"\n"
+" I tilfælde af at forskellige drivere er tilgængelige til dit kort, med "
+"eller uden 3D-accelleration, bliver du spurgt om at vælge den server der "
+"bedst opfylder dine behov.\n"
+"\n"
+"\n"
+"Skærm\n"
+"\n"
+" Normalt vil Installationsprogrammet automatisk finde ud af at konfigurere "
+"skærmen tilsluttet din maskine. Hvis dette ikke er rigtigt, kan du fra denne "
+"liste vælge den skærm som er tilsluttet din maskine.\n"
+"\n"
+"\n"
+"\n"
+"Opløsning\n"
+"\n"
+" Her kan du vælge de opløsninger og farvedybder som er tilstede for dit "
+"grafikudstyr. Vælg dem som bedst opfylder dine behov (du vil kunne ændre "
+"dette efter installationen). En prøve på den valgte konfiguration vil blive "
+"vist på skærmen.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Afhængigt af dit udstyr vil denne indgang muligvis ikke vises.\n"
+"\n"
+" Systemet vil prøve at åbne en grafisk skærm i den ønskede opløsning. Hvis "
+"du ser testbeskeden under afprøvningen og svarer '%s', så vil DrakX gå "
+"videre til næste trin. Hvis du ikke ser beskeden, så betyder det at en del "
+"af den automatisk fundne konfiguration var forkert og testen vil automatisk "
+"slutte efter 12 sekunder, og bringe dig tilbage til menuen. Ændr "
+"indstillingerne til du får en korrekt grafisk fremvisning.\n"
+"\n"
+"\n"
+"\n"
+"Valgmuligheder\n"
+"\n"
+" Dette trin lader dig vælge om du ønsker at din maskine automatisk skal "
+"skifte til en grafisk grænseflade ved opstart. Selvfølgelig vil du ønske at "
+"svare '%s', hvis din maskine skal bruges som server, eller hvis ikke "
+"lykkedes dig at få skærmen konfigureret. "
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Skærm\n"
+"\n"
+" Installationsprogrammet vil normalt automatisk finde ud af at konfigurere "
+"skærmen tilsluttet din maskine. Hvis dette ikke er den rigtige, kan du i "
+"denne liste vælge den skærm du faktisk har tilsluttet din maskine."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Opløsning\n"
+"\n"
+" Hér kan du vælge opløsninger og farvedybder ud af de tilgængelige "
+"muligheder for dit udstyr. Vælg dem som bedst opfylder dine behov (du vil "
+"dog kunne ændre dette efter installationen). Et eksempel på den valgte "
+"konfiguration vil blive vist på skærmen."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"I tilfælde af at forskellige servere er tilgængelige for dit kort, med eller "
+"uden 3D-accelleration, bliver du spurgt om at vælge den server der bedst "
+"opfylder dine behov."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Til sidst valgmulighederne\n"
+"\n"
+"Dette trin lader dig vælge om du ønsker automatisk at skifte til en grafisk "
+"grænseflade ved opstart. Selvfølgelig vil du ønske at svare '%s', hvis din "
+"maskine skal bruges som server, eller hvis ikke lykkedes dig at få skærmen "
+"konfigureret."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Nu skal du vælge hvor på din harddisk du vil installere dit Mandriva Linux-"
+"operativsystem. Hvis disken er tom eller et eksisterende operativsystem "
+"bruger alt pladsen på den, bliver du nødt til at partitionere drevet. "
+"Partitionering vil sige at diskdrevet opdeles i logiske dele for at lave den "
+"plads der behøves til at installere dit nye Mandriva Linux-system.\n"
+"\n"
+"Da partitioneringen af en disk normalt ikke kan fortrydes og kan føre til "
+"tab af data, kan det godt være frustrerende og stressende for uøvede "
+"brugere. Heldigvis har DrakX en vejleder som forenkler denne proces. Før du "
+"fortsætter med dette trin kan du gennemlæse resten af dette afsnit, og ikke "
+"mindst tage dig den tid du behøver.\n"
+"\n"
+"Afhængig af dit diskdrevs konfiguration er flere muligheder tilstede:\n"
+"\n"
+" * '%s': Denne mulighed vil udføre en automatisk opdeling af dine tomme "
+"diskdrev. Hvis du bruger denne mulighed vil du ikke blive spurgt om mere.\n"
+"\n"
+" * '%s': Vejlederen har fundet en eller flere eksisterende Linux-partitioner "
+"på dit diskdrev. Hvis du vil bruge dem, så vælg denne mulighed. Du vil så "
+"blive spurgt om monteringspunkter tilknyttet hver af partitionerne. De gamle "
+"monteringspunkter er forvalgt og i de fleste tilfælde er det en god idé at "
+"beholde dem.\n"
+"\n"
+" * '%s': Hvis Microsoft Windows er installeret på din disk og bruger al "
+"pladsen, bliver du nødt til at lave fri plads til GNU/Linux. For at gøre "
+"dette kan du slette dine Microsoft Windows partitioner og data (se "
+"muligheden \"Slet hele disken\") eller ændre størrelsen på din Microsoft "
+"Windows-FAT- eller NTFS-partition. Størrelsesændringen kan fortages uden tab "
+"af data, hvis du i forvejen har defragmenteret Windows-partitionen. Det "
+"anbefales på det kraftigste at du laver en sikkerhedskopi først. Denne "
+"mulighed anbefales hvis du vil bruge både Mandriva Linux og Microsoft "
+"Windows på samme maskine.\n"
+"\n"
+" Før du vælger denne løsning, bør du forstå at størrelsen på din Microsoft "
+"Windows partition vil blive mindre end da du startede. Du vil have mindre "
+"fri plads under Microsoft Windows til at gemme dine data eller installere "
+"nyt programmel.\n"
+"\n"
+" * '%s': Hvis du vil slette alle data på alle partitioner på denne disk og "
+"erstatte dem med dit nye Mandriva Linux-system, kan du vælge denne mulighed. "
+"Vær forsigtig, for du vil ikke være i stand til at fortryde denne handling "
+"efter at du har sagt ja.\n"
+"\n"
+" !! Hvis du bruger denne mulighed vil alle eksisterende data på din disk "
+"gå tabt. !!\n"
+"\n"
+" * '%s': Denne mulighed kommer til syne når diskdrevet er fuldstændigt "
+"optaget af Microsoft Windows. Valg af denne mulighed vil simpelthen slette "
+"alt på disken og begynde fra en frisk, og partitionere det hele fra ny.\n"
+"\n"
+" !! Hvis du bruger denne mulighed vil alle eksisterende data på din disk "
+"gå tabt. !!\n"
+"\n"
+" * '%s': Vælg denne mulighed hvis du vil partitionere disken i hånden. Vær "
+"forsigtig - det er en stærk , men også farlig mulighed. og du kan meget nemt "
+"komme til at slette alle dine data. Derfor er denne mulighed kun anbefalet "
+"hvis du har lavet noget lignende før og har nogen erfaring. For flere "
+"instruktioner om brugen af DiskDrake-programmet kan du se i afsnittet "
+"'Administrér dine partitioner' i 'Startervejledningen'."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Brug eksisterende partition"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Slet hele disken"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Værsgo'. Installationen en nu færdig og dit GNU/Linux-system er nu klar til "
+"brug. Klik blot på '%s' for at genstarte systemet. Glem ikke at fjerne "
+"installationsmediet (cdrom eller diskette). Den første ting, som du burde "
+"se, efter din maskine har lavet sine test af maskinel, er opstartsmenuen, "
+"som lader dig vælge det operativsystem der skal startes.\n"
+"\n"
+"'%s'-knappen viser to ekstra knapper for:\n"
+"\n"
+" * '%s': at oprette en installerings-diskette, som automatisk vil udføre en "
+"hel installation uden hjælp fra en operatør, magen til den installation du "
+"lige har konfigureret.\n"
+"\n"
+" Bemærk at to forskellige muligheder er tilstede efter klik på denne "
+"knap:\n"
+"\n"
+" * '%s': Dette er en delvist automatiseret installering. "
+"Partitioneringstrinnet er den eneste interaktive procedure.\n"
+"\n"
+" * '%s': Fuldautomatisk installering: harddisken bliver fuldstændig "
+"genoverskrevet, alle data forsvinder.\n"
+"\n"
+" Denne facilitet er meget nyttig ved installering af et antal lignende "
+"maskiner. Se afsnittet om autoinstallering på vores websted for yderligere "
+"oplysninger.\n"
+"\n"
+" * '%s'(*): gemmer en liste med de pakker der er valgt under denne "
+"installation. For at bruge dette pakkevalg i en anden installation kan "
+"disketten indsættes i drevet og installeringen kan startes. Brug [F1]-tasten "
+"på opstartsskærmen og indtast >>linux defcfg=\"floppy\"<< og trykke på "
+"[Enter]-tasten.\n"
+". \n"
+"(*) Du har brug for en FAT-formatteret diskette. For at lave en under GNU/"
+"Linux skal du taste\n"
+"\"mformat a:\", eller \"fdformat /dev/fd0\" fulgt af \"mkfs.vfat\n"
+"/dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Lav autoinstallations-diskette"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Hvis du vælger at genbruge nogle gamle GNU/Linux-partitioner, kan duønske at "
+"omformatere nogle af dem og slette de data som de indeholder. For at gøre "
+"dette skal du også vælge disse partitioner.\n"
+"\n"
+"Bemærk at det ikke er nødvendigt at omformatere alle allerede eksisterende "
+"partitioner. Det er nødvendigt at omformatere de partitioner, der indeholder "
+"operativsystemet (såsom '/', '/usr' og '/var', men du er ikke nødt til at "
+"omformatere partitioner som du ønsker at beholde (typisk /home).\n"
+"\n"
+"Vær forsigtig med valg af partitioner; efter formatering vil alle data være "
+"slettede på de valgte partitioner, og du vil ikke kunne redde nogetsomhelst "
+"af det.\n"
+"\n"
+"Klik på '%s' når du er klar til at formatere partitionerne.\n"
+"\n"
+"Klik på '%s' hvis du ønsker at vælge andre partitioner til at installere dit "
+"nye Mandriva Linux operativsystem.\n"
+"\n"
+"Klik på '%s' for at vælge partitioner som du ønsker at tjekke for dårlige "
+"blokke."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"På det tidspunkt hvor du installerer Mandriva Linux er det sandsynligt at "
+"nogen af pakkerne er blevet opdaterede siden den oprindelige udgivelse. Fejl "
+"er måske blevet rettet, og sikkerhedsproblemer måske løst. Det er nu muligt "
+"for dig at hente disse ned fra internettet for at disse opdateringer kan "
+"komme dig til gode. Vælg '%s' hvis du har en fungerende internet- "
+"forbindelse eller '%s' hvis du foretrækker at installere opdaterede pakker "
+"senere.\n"
+"\n"
+"Valg af '%s' viser en liste af netsteder hvorfra opdateringer kan hentes. Du "
+"bør vælge en der er nær ved dig. Så vil et træ med pakkevalg blive vist: "
+"gennemse valget og tryk '%s' for at modtage og installere de valgte pakker "
+"eller '%s' for at afbryde."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Nu vil DrakX give dig mulighed for at vælge det sikkerhedsniveau du ønsker "
+"for maskinen. Hovedreglen er at sikkerhedsniveauet bør sættes højere, hvis "
+"maskinen skal indeholde vigtige data, eller hvis den skal være direkte "
+"offentligt på Internettet. Men et højere sikkerhedsniveau vindes normalt på "
+"bekostning af letheden af anvendelsen.\n"
+"\n"
+"Hvis du ikke véd hvad du skal vælge, så behold den foreslåede mulighed. Du "
+"vil kunne ændre det senere med værktøjet draksec som er en del af Mandriva "
+"Linux Kontrolcentret.\n"
+"\n"
+"Udfyld '%s'-feltet med epost-adressen på den person, som er ansvarlig for "
+"sikkerhed. Sikkerhedsmeddelelser vil blive sendt til denne adresse."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Sikkerhedsadministrator"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Nu skal du vælge hvilke partitioner som skal bruges til installering af dit "
+"Mandriva Linux system. Hvis partitionerne allerede er blevet defineret, "
+"enten fra en tidligere installation af GNU/Linux eller med et andet "
+"partitioneringsværktøj, kan du bruge de eksisterende partitioner. Ellers "
+"skal disk-partitionerne defineres først.\n"
+"\n"
+"For at lave partitioner skal du først vælge et diskdrev. Du kan vælge "
+"diskdrevet der skal partitioneres ved at trykke på \"hda\" for det første "
+"IDE drev, \"hdb\" for det andet eller \"sda\" for det første SCSI-drev og så "
+"videre.\n"
+"\n"
+"For at partitionere det valgte diskdrev kan du bruge disse muligheder:\n"
+"\n"
+" * '%s': Dette valg sletter alle partitioner på det valgte diskdrev.\n"
+"\n"
+" * '%s': dette valg tillader dig automatisk at lave Ext3 og swappartitioner "
+"på den fri plads på dit drev.\n"
+"\n"
+"'%s': giver adgang til flere faciliteter:\n"
+"\n"
+" * '%s': Gemmer din partitionstabel på en diskette. Nyttigt ved senere "
+"redning af partitionstabellen, om nødvendigt. Det anbefales meget at du "
+"bruger dette trin.\n"
+"\n"
+" * '%s': lader dig genskabe en tidligere gemt partitionstabel fra diskette.\n"
+"\n"
+" * '%s': hvis din partitionstabel er beskadiget, kan du prøve at redde den "
+"med denne mulighed. Vær forsigtig og husk at det ikke altid virker.\n"
+"\n"
+" * '%s': forkaster alle ændringer og genindlæser partitionstabellen som "
+"oprindeligt lå på diskdrevet\n"
+"\n"
+" * '%s': fravalg af denne mulighed vil tvinge brugere til at manuelt montere "
+"og afmontere medier såsom disketter og cdrommer\n"
+"\n"
+" * '%s': Hvis du ønsker at bruge vejlederen til at partitionere dit "
+"diskdrev, kan du bruge denne mulighed. Dette anbefales, hvis du ikke har den "
+"store forståelse om partitionering\n"
+"\n"
+" * '%s': Du kan bruge denne mulighed for at annullere dine ændringer\n"
+"\n"
+" * '%s': giver mulighed for yderligere handlinger på partitioner (type, "
+"valgmuligheder, format) og giver mere information om diskdrevet\n"
+"\n"
+" * '%s': når du er færdig med partitionering af din disk, vil dette skrive "
+"ændringerne tilbage på disken.\n"
+"\n"
+"Ved definering af en partitionsstørrelse kan du finjustere denne ved at "
+"bruge piletasterne på tastaturet.\n"
+"\n"
+"Bemærk: du kan nå enhver valgmulighed ved brug af tastaturet: navigér gennem "
+"partitionerne med Tab og op- og ned-pilene.\n"
+"\n"
+"Når en partition er valgt kan du bruge:\n"
+"\n"
+" * Ctrl-c for at lave en ny partition (Når en tom partition er valgt)\n"
+"\n"
+" * Ctrl-d for at slette en partition\n"
+"\n"
+" * Ctrl-m for at sætte et monteringssti\n"
+"\n"
+"For at få information om de forskellige tilgængelige filsystemstyper kan du "
+"læse kapitlet ext2fs i 'Referencemanualen'.\n"
+"\n"
+"Hvis du er i gang med at installere på en PPC-maskine skal du lave en lille "
+"HFS-'bootstrap'-partition på mindst 1 MB til Yaboot-systemstarteren. Hvis du "
+"vælger at lave partitionen en smule større, f.eks. 50 MB kan den være nyttig "
+"til at gemme en ekstra kerne og ramdisk-billede for nødsituationer ved "
+"opstart."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Automontering af flytbare medier"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Skift mellem normal og ekspert-tilstand"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Mere end én Microsoft Windows partition er blevet genkendt på dit diskdrev. "
+"Vælg den som du ønsker at ændre størrelse på for at kunne installere dit nye "
+"Mandriva Linux operativsystem.\n"
+"\n"
+"Hver partition er listet som følger: 'Linux navn', 'Windows navn', "
+"'Kapacitet'.\n"
+"\n"
+"'Linux navn' er kodet som følger: 'drevtype', 'drevnummer', "
+"'partitionsnummer' (for eksempel '/hda1').\n"
+"\n"
+"'drevtype' er 'hd' hvis dit diskdrev er et IDE drev, og 'sd' hvis det er et "
+"SCSI drev.\n"
+"\n"
+"'drevnummer' er altid et bogstav efter 'hd' eller 'sd'. For IDE drev "
+"gælder:\n"
+"\n"
+" * 'a' betyder 'hoved-drev på den primære IDE controller',\n"
+"\n"
+" * 'b' betyder 'slave-drev på den primære IDE controller',\n"
+"\n"
+" * 'c' betyder 'hoved-drev på den sækundære IDE controller',\n"
+"\n"
+" * 'd' betyder 'slave-drev på den sækundære IDE controller'.\n"
+"\n"
+"For SCSI drev betyder 'a' det 'laveste SCSI-nummer', 'b' betyder det "
+"'næstlaveste SCSI-nummer', osv.\n"
+"\n"
+"'Windows navn' er det bogstav som dit drev har under Windows (den første\n"
+"disk eller partition kaldes 'C:')."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"'%s': Tjek det aktuelle valg af land. Hvis du ikke er i dette land, så klik "
+"på '%s'-knappen og vælg et andet. Hvis dit land ikke er på den første liste "
+"der vistes, så klik på '%s'-knappen for at få den komplette liste over lande."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Dette trin bliver kun aktiveret hvis der bliver fundet en eksisterende\n"
+"GNU/Linux partition på din maskine.\n"
+"\n"
+"DrakX skal nu vide om du vil udføre en ny installation eller en opgradering\n"
+"af et eksisterende Mandriva Linux-system.\n"
+"\n"
+" * \"%s\": Dette vil stort sét slette hele det gamle system. Dog kan du "
+"afhængigt af din partitionsopsætning forhindre at nogen af dine ekisterende "
+"data (især kataloger i '/home') fra at blive overskrevet. Hvis du ønsker at "
+"ændre hvordan dine diskdrev er partitioneret, eller ændre på filsystemet, "
+"bør du bruge denne mulighed.\n"
+"\n"
+" * \"%s\": Denne installationsklasse lader dig opgradere pakkene som er "
+"installeret på dit nuværende Mandriva Linux-system. Din nuværende "
+"partitionsopsætning og brugerdata bliver ikke berørt. De fleste andre "
+"konfigurationstrin forbliver tilgængelige, i lighed med en "
+"standardinstallation.\n"
+"\n"
+"\"Opgradér\"-valget bør fungere fint på Mandriva Linux-systemer som kører "
+"version '8.1' eller nyere. Udførelse af Opgradér på versioner tidligere end "
+"Mandriva Linux '8.1' er ikke anbefalet."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Afhængigt af det sprog du har valgt vil DrakX automatisk vælge en bestemt "
+"type tastaturopsætning. Tjek at valget er passende, eller vælg en anden "
+"tastaturudlægning.\n"
+"Men du har måske ikke et tastatur som svarer nøjagtigt til dit sprog: for "
+"eksempel hvis du er en engelsktalende svejtser, vil du måske have et "
+"svejtsisk tastatur. Eller hvis du taler engelsk og bor i Québec, er du måske "
+"i samme situation, hvor dit modersmål og tastaturet for landet ikke passer "
+"sammen. I begge tilfælde giver dette installationstrin mulighed for at vælge "
+"et passende tastatur fra listen.\n"
+"\n"
+"Klik på '%s'-tasten for at få víst en liste af understøttede tastaturer.\n"
+"\n"
+"Hvis du vælger en tastaturudlægning baseret på et ikke-latinsk alfabet, vil "
+"den næste dialog give dig mulighed for at vælge den tastekombination, der "
+"vil skifte mellem den latinske og den ikke-latinske udlægning."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Det første trin er at vælge dit foretrukne sprog.\n"
+"\n"
+"Dit valg af foretrukkent sprog vil påvirke sproget for installeringen, "
+"dokumentationen og systemet generelt. Vælg den verdensdel du befinder dig i, "
+"og så det sprog, du taler.\n"
+"\n"
+"Hvis du klikker på '%s'-knappen kan du vælge andre sprog, der installeres "
+"på maskinen, og derved installeres de sprogspecifikke filer for "
+"systemdokumentation og programmer. Hvis spanske brugere skal bruge din "
+"maskine, vælg da dansk som standardsproget i træ-visningen, og '%s' i den "
+"avancerede afdeling.\n"
+"\n"
+"Om UTF-8 (ISO 10646)-understøttelse. ISO 10646 er en ny tegnkodning som er "
+"beregnet til at dække alle eksiterende sprog. Dog er fuld understøttelse for "
+"dette i GNU/Linux stadig under udvikling. Af denne årsag vil Mandriva Linux' "
+"brug af UTF-8 afhænge af brugerens valg:\n"
+"\n"
+" * Hvis du vælger et sprog som har en lang tradition for tegnkodning (latin1 "
+"sprog, russisk, japansk, kinesisk, koreansk, thai, græsk, tyrkisk, de fleste "
+"iso-8859-2 sprog) vil den traditionelle tegnkodning blive brugt som "
+"standard;\n"
+"\n"
+" * Andre sprog vil bruge ISO 10646 som standard;\n"
+"\n"
+" * Hvis to eller flere sprog er krævet, og disse sprog ikke bruger samme "
+"kodning, så vil ISO 10646 blive brugt for hele systemet;\n"
+"\n"
+" * Endeligt kan ISO 10646 blive gennemtvunget for brugeren på hele systemet "
+"på foranledning af brugeren ved at vælge muligheden '%s' uafhængigt af "
+"hvilket sprog der er valgt.\n"
+"\n"
+"Bemærk at du ikke er begrænset til at vælge et enkelt yderligere sprog. Du "
+"kan vælge flere sprog, eller endog installere dem alle ved at markere '%s'-"
+"boksen. Valg af understøttelse for et sprog betyder at oversættelser, "
+"skrifttyper, stavekontrol mv for dette sprog bliver installeret. \n"
+"For at skifte mellem de forskellige sprog installeret på systemet kan du "
+"starte programmet '/usr/sbin/localedrake' som 'root' for at ændre det sprog "
+"der bruges af hele systemet. Kørsel af dette program som almindelig bruger "
+"vil kun ændre sprogindstillingerne for denne bruger."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Spansk"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Normalt har DrakX ingen problemer med at finde ud af hvor mange knapper du "
+"har på din mus. Den antager at du har en to-knapsmus og vil lave en "
+"opsætning hvor den tredje knap emuleres. Den tredje knap for en to-knaps mus "
+"kan fås ved at trykke på den venstre og højre museknap samtidigt. DrakX vil "
+"automatisk vide om din mus bruger et PS/2, et serielt eller et USB-"
+"grænsesnit.\n"
+"\n"
+"Hvis du har en 3-knaps mus uden hjul, kan du vælge '%s'-musen. DrakX vil så "
+"konfigurere din mus så du kan simulere hjulet med den: for at gøre dette "
+"skal du trykke på midterknappen og flyttte op og ned på musen.\n"
+"\n"
+"Hvis du ønsker en anden type mus, vælg da den rigtige type mus fra den viste "
+"liste.\n"
+"\n"
+"Du kan vælge '%s'-indgangen for at få en 'generisk' musetype som vil virke "
+"med næsten alle mus.\n"
+"\n"
+"Hvis du vælger en mus forskellig fra den forvalgte, vil der blive vist en "
+"afprøvningsskærm. Brug knapperne og hjulet for at efterprøve om indstillerne "
+"er korrekte, og at musen virker korrekt. Hvis musen ikke virker godt, tryk "
+"da på mellemrumstangenten eller vognretur for at annullere testen, og du vil "
+"vende tilbage til listen med mus.\n"
+"\n"
+"Til tider findes mus med hjul ikke automatisk, så du vil behøve at vælge din "
+"mus fra en liste. Forsikr dig om at du vælger den der passer til porten som "
+"din mus er tilsluttet. Efter valg af en mus og trykning på '%s'-knappen vil "
+"et billede blive vist med en mus på skærmen. Rul med musehjulet for at "
+"forsikre dig om at det er aktiveret korrekt. Når du ruller med dit musehjul "
+"vil du se musehjulet på skærmen bevæger sig. Afprøv knapperne og tjek at "
+"musemarkøren flytter sig når du flytter rundt på musen."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "med hjul-emulering"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Universel | Alle PS/2 & USB mus"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Vælg den rigtige port. For eksempel er navnet for COM1-porten under MS "
+"Windows 'ttyS0' under GNU/Linux."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Dette er den vanskeligste beslutning omkring sikkerheden af dit GNU/Linux- "
+"system: Du skal indtaste din 'root'-adgangskode. 'Root' er "
+"systemadministratoren og er den eneste bruger, der har lov til at lave "
+"opdateringer, tilføje brugere, ændre i den overordnede systemkonfiguration "
+"og så videre. Kort sagt, 'root' kan gøre alt! Derfor skal du vælge en "
+"adgangskode der er svær at gætte - DrakX vil fortælle dig hvis adgangskoden "
+"du valgte er for simpel. Som du kan se er du ikke tvunget til at indtaste en "
+"adgangskode, men vi advarer på det kraftigste mod dette. GNU/Linux er lige "
+"så udsat for behandlingsfejl som ethvert andet operativsystem. Da 'root' kan "
+"overvinde alle forhindringer og uforvarende slette alle data på partitioner "
+"ved sorgløst at behandle partitionerne selv, er det vigtigt at det er "
+"vanskeligt at blive 'root'.\n"
+"\n"
+"Adgangskoden bør være en blanding af bogstaver og tal og mindst 8 tegn "
+"langt. Skriv aldrig en adgangskode ned for 'root' - det gør det alt for nemt "
+"at bryde ind i dit system.\n"
+"\n"
+"Gør dog ikke adgangskoden for lang eller for kompliceret da du skal være i "
+"stand til at huske den uden for stort besvær!\n"
+"\n"
+"Adgangskoden vil ikke blive vist på skærmen når du indtaster den. Du skal "
+"derfor indtaste adgangskoden to gange, for at begrænse risikoen for "
+"tastefejl. Hvis du kommer til at lave den samme tastefejl to gange, skal du "
+"bruge denne 'ukorrekte' adgangskode den første gang du prøver at koble op "
+"som 'root'.\n"
+"\n"
+"Hvis du ønsker at en autentificerings-server skal styre adgangen til din "
+"maskine, så klik på '%s'-knappen.\n"
+"\n"
+"Hvis dit netværk bruger LDAP, NIS eller PDC Windows domæne-"
+"autentificeringstjenester, vælg da den rigtige som '%s'. Hvis du ikke véd "
+"hvilken der skal bruges, så bør du spørge din systemadministrator.\n"
+"\n"
+"Hvis du har problemer med at huske adgangskoder, så kan du vælge '%s' hvis "
+"din maskine ikke vil være forbundet til Internettet, og du stoler på alle "
+"som kan få adgang til maskinen. "
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "autentifikation"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"En opstartsindlæser er et lille program som startes af maskinen på "
+"opstartstidspunktet. Det er ansvarligt for at starte hele systemet op. "
+"Normalt er dette trin helt automatisk. DrakX vil analysere opstartssektoren "
+"på disken og handle ud fra det som findes der.\n"
+"\n"
+" * Hvis en opstartssektor for Windows bliver fundet, vil den erstatte denne "
+"med en GRUB- eller LILO-opstartsektor. På denne måde kan du indlæse enten "
+"GNU/Linux eller ethvert andet operativsystem installeret på din maskine.\n"
+"\n"
+" * Hvis en opstartsektor for grub eller LILO bliver fundet, vil den blive "
+"erstattet med en ny.\n"
+"\n"
+"Hvis det ikke er mulig at afgøre dette automatisk, vil DrakX spørge dig hvor "
+"opstartsindlæseren skal installeres. Generelt er '%s' det sikreste sted. "
+"Valg af '%s' vil ikke installere nogen opstartsindlæser. Brug kun dette hvis "
+"du véd hvad du gør."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Nu er det tid til at vælge et udskrivningssystem for din maskine. Andre "
+"styresystemer tilbyder måske ét, men Mandriva tilbyder to. Printersystemerne "
+"er hver især bedst til en bestemt konfigurationstype.\n"
+"\n"
+" * '%s' - som betyder 'print, do not queue' (udskriv, kø ej), er valget, "
+"hvis du har en direkte forbindelse til din printer, og du ønsker at kunne "
+"klare printproblemer med det samme, og du ikke har nogen printere via "
+"netværk. ('%s' vil kun behandle meget simple netværkstilfælde, og er lidt "
+"sløvt på netværk.) Det anbefales at du bruger 'pdq' hvis dette er din første "
+"erfaring med GNU/Linux.\n"
+"\n"
+" * '%s' - står for 'Common Unix Printing System' (Fælles printersystem for "
+"Unix) er fremragende til at udskrive på din lokale printer, og også på den, "
+"der står på den anden side af jordkloden. Det er nemt at konfigurere, og kan "
+"virke som en server eller klient for det bedagede 'lpd'-printsystem, så det "
+"er kompatibelt med ældre styresystemer, som stadig kan have brug for "
+"udskriftstjenester. Det er ganske stærkt, men den basale opsætning er næsten "
+"lige så nem som for 'pdq'. Hvis du har brug for at dette efterligner en "
+"'lpd'-server, skal du aktivere 'cups-lpd'-dæmonen. '%s' har grafiske "
+"grænseflader for udskrivning og valg af printermuligheder, og for "
+"administration af printeren.\n"
+"\n"
+"Hvis du laver et valg nu og senere finder ud af at du ikke kan lide dit "
+"udskriftssystem, kan du ændre det ved at køre PrinterDrake fra Mandriva "
+"Linuxs Kontrolcenter, og klikke på '%s'-knappen."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Ekspert"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX vil først finde alle IDE-enheder der er tilstede på din maskine. Den "
+"vil også lede efter en eller flere PCI SCSI-kort på dit system. Hvis et SCSI-"
+"kort finDES, vil DrakX automatisk installere en driver til det.\n"
+"\n"
+"Da maskineleftersøgningen ikke er idiotsikker, kan DrakX fejle i at finde "
+"dine diskdrev. I så fald må du angive dit maskinel manuelt.\n"
+"\n"
+"Hvis du måtte angive dit PCI SCSI-kort manuelt, vil DrakX spørge om du vil "
+"specificere nogle indstillingsmuligheder for den. Du bør lade DrakX spørge "
+"udstyret om opsætning af kortspecifikke indstillinger, som er nødvendige for "
+"at initialisere kortet. De fleste gange vil DrakX finde ud af dette uden "
+"problemer.\n"
+"\n"
+"Hvis DrakX ikke kan få oplysninger om indstillinger ud af udstyret, som skal "
+"bruges til opsætningen, skal du angive opsætningsinformation til driveren. "
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"'%s': Hvis et lydkort er blevet fundet på dit system, vil det blive vist "
+"her. Hvis du bemærker at lydkortet ikke er det som faktisk er til stede på "
+"systemet, kan du klikke på knappen og vælge en anden driver."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Som en opsummering vil DrakX give dig en oversigt over information som den "
+"har indsamlet om dit system. Afhængig af det maskinel der er installeret på "
+"din maskine kan du have et eller flere af de følgende punkter. Hvert punkt "
+"består af den maskinelle enhed der skal konfigureres fulgt af en kort "
+"opsummering af den nuværende konfiguration. Klik på den tilsvarende \"%s\"-"
+"knap for at ændre på opsætningen.\n"
+"\n"
+" * \"%s\": Tjek at din tastaturopsætning er korrekt og ændr om nødvendigt.\n"
+"\n"
+" * \"%s\": Tjek det nuværende valg af land. Hvis du ikke er i dette land, så "
+"klik på \"%s\"-knappen og vælg et andet land. Hvis dit land ikke er i "
+"listen, så klik på \"%s\"-knappen for at få en fuldstændig liste over "
+"lande.\n"
+"\n"
+" ' \"%s\": Som standard bestemmer DrakX din tidszone ud fra hvilket land du "
+"har valgt. Du kan klikke på \"%s\" her, hvis dette ikke er korrekt.\n"
+"\n"
+" * \"%s\" :Tjek den nuværende museopsætning og klik på knappen for at ændre "
+"om nødvendigt.\n"
+"\n"
+" * \"%s\": Ved at klikke på \"%s\"-knappen åbnes printeropsætnings-\n"
+"hjælperen. Konsultér det tilhørende kapitel i begynderguiden for mere\n"
+"information om hvordan en printer kan sættes op. Grænsefladen som er vist\n"
+"i vores manual er magen til den som benyttes under installationen.\n"
+"\n"
+" * '%s': Hvis et lydkort er blevet fundet på dit system, vil det blive vist "
+"hér. Hvis du bemærker at lydkortet ikke er det som faktisk er til stede på "
+"systemet, kan du klikke på knappen og vælge en anden driver.\n"
+"\n"
+" * \"%s\": Hvis du har et TV-kort, så er det her at information om dets "
+"konfiguration bliver vist. Hvis du har et TV-kort som ikke er fundet, så "
+"klik på \"%s\" for at sætte det op manuelt.\n"
+"\n"
+" * \"%s\": Du kan klikke på \"%s\" for at ændre på parameterne til kortet, "
+"hvis du synes at konfigurationen er forkert.\n"
+"\n"
+" * \"%s\": Som standard vil DrakX opsætte din grafiske grænseflade i "
+"opløsningen 800x600 eller 1024x768. Hvis dette ikke passer dig, så klik på '%"
+"s'-knappen for at ændre på opsætningen.\n"
+"\n"
+" * \"%s\": Hvis du ønsker at konfigurere din adgang til internet eller "
+"lokalnet, kan du gøre dette nu. Kig i den trykte dokumentation eller brug "
+"Mandriva Linux Kontrolcenter efter installationen er afsluttet for at drage "
+"nytte af den fulde indbyggede vejledning. \n"
+"\n"
+" * \"%s\": lader dig konfigurere HTTP- og FTP-proxyadresser, hvis maskinen, "
+"du installerer på, skal placeres bag en proxyserver.\n"
+"\n"
+" * \"%s\": Du kan her ændre på sikkerhedsniveauet som defineret i et "
+"tidligere trin.\n"
+"\n"
+" * \"%s\": Hvis du skal koble din maskine direkte til internet, er det en "
+"god idé at beskytte sig mod indtrængning med en brandmur. Kig i det "
+"tilsvarende afsnit i Begyndervejledningen for detaljer om opsætning af "
+"brandmur.\n"
+"\n"
+" * \"%s\": Hvis du vil ændre på konfigurationen for opstartsindlæseren, så "
+"klik på denne knap. Dette bør forbeholdes avancerede brugere. Kig i den "
+"trykte dokumentation eller i den indbyggede hjælp om konfiguration af "
+"opstartsindlæser i Mandriva Linux Kontrolcenter.\n"
+"\n"
+" * \"%s\": her kan du fininstille hvilke tjenester som skal startes på din "
+"maskine. Hvis du skal bruge maskinen som server er det en god idé at "
+"gennemse denne opsætning."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN-kort"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Grafisk grænseflade"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Vælg det diskdrev som du vil slette for at installere din nye Mandriva Linux "
+"partition. Vær forsigtig, alle data som er på denne partition vil gå tabt og "
+"vil ikke kunne genskabes!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Klik på '%s' hvis du ønsker at slette alle data og partitioner der ligger på "
+"dette diskdrev. Vær omhyggelig, efter klik på '%s' vil du ikke være i stand "
+"til at redde nogen data eller partitioner, der ligger på dette diskdrev, "
+"inklusive alle Windows data.\n"
+"Klik på '%s' for at stoppe denne handling uden at tabe nogen data og "
+"partitioner der er tilstede på dette diskdrev."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Næste ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Forrige"
+
diff --git a/perl-install/share/po/help-de.pot b/perl-install/install/help/po/de.po
index c454dccdf..e688af7b3 100644
--- a/perl-install/share/po/help-de.pot
+++ b/perl-install/install/help/po/de.po
@@ -1,167 +1,63 @@
+# translation of de.po to deutsch
+# translation of DrakX-de.po to deutsch
+# translation of de.po to Deutsch
+# translation of DrakX-de.po to german
+# german translation of the MandrivaInstaller.
+# Copyright (C) 2000-2003 Mandriva S.A.
+# Stefan Siegel <siegel@linux-mandrake.com>, 2000, 2001, 2002, 2003.
+# Sebastian Deutscher <sebastian_deutscher@web.de>, 2003,2004.
+# Gerhard Ortner <gerhard.ortner@aon.at>, 2003, 2004.
+# Roy Steuber <roysteuber@mittweida-net.de>, 2004.
+# Marcus Fischer <i18n@marcusfischer.com>, 2004.
+# Frank Köster <frank@dueppel13.de>, 2004, 2005.
+# Ronny Standtke <Ronny.Standtke@gmx.de>, 2003, 2004.
+# Ronny Standtke <Ronny.Standtke@gmx.net>, 2004, 2005.
+# Nicolas Bauer <webmaster@mandrakeusers.de>, 2005.
+# Frank Koester <frank@dueppel13.de>, 2005.
msgid ""
msgstr ""
+"Project-Id-Version: DrakX-de\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-09-20 17:12+0200\n"
+"Last-Translator: Frank Koester <frank@dueppel13.de>\n"
+"Language-Team: deutsch\n"
+"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"You now need to decide where you want to install the Mandrivalinux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandrivalinux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandrivalinux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandrivalinux system, choose\n"
-"this option. Be careful, because you won't be able to undo this operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-"Sie müssen nun entscheiden, wo auf Ihrer/n Festplatte(n) Ihr Mandrivalinux\n"
-"System installiert werden soll. Sofern alles leer ist bzw. ein\n"
-"Betriebssystem alles belegt, müssen die Platte(n) neu partitioniert werden.\n"
-"Prinzipiell besteht das Partitionieren der Platte(n) darin, den\n"
-"Plattenplatz so aufzuteilen, dass Ihr Mandrivalinux darauf installiert\n"
-"werden kann.\n"
-"\n"
-"Da dieser Schritt normalerweise irreversibel ist und auch zu Datenverlusten\n"
-"führen kann haben manche unerfahrenen User Hemmungen, diesen Schritt\n"
-"auszuführen. Glücklicherweise enthält DrakX einen Assistenten, der den\n"
-"Prozess sehr vereinfacht. Lesen Sie dennoch vor Beginn im Handbuch die\n"
-"entsprechenden Passagen und lassen Sie sich Zeit mit der Entscheidung.\n"
-"\n"
-"Abhängig vom aktuellen Zustand Ihrer Platte(n) haben Sie verschiedene\n"
-"Alternativen:\n"
-"\n"
-" * „%s“: Dies führt einfach dazu, dass Ihre leere(n) Festplatte(n)\n"
-"automatisch partitioniert werden; Sie müssen sich also um nichts weiter\n"
-"kümmern.\n"
-"\n"
-" * „%s“: Der Assistent hat eine oder mehrere existierende Linux-Partitionen\n"
-"auf Ihrer Platte gefunden. Wählen Sie diese Schaltfläche, falls Sie sie\n"
-"behalten wollen. Sie werden dann gebeten, die Einhängpunkte der Partitionen\n"
-"anzugeben. Als Vorgabe erhalten Sie die Einhängpunkte der gefundenen\n"
-"Distribution, normalerweise ist es nicht nötig diese zu ändern.\n"
-"\n"
-" * „%s“: Falls der gesamte Plattenplatz aktuell für Microsoft Windows(TM)\n"
-"verschwendet ist, müssen Sie für GNU/Linux Platz schaffen. Um dies zu\n"
-"erreichen, können Sie entweder Ihre Microsoft Windows(TM) Partition(en)\n"
-"samt Daten löschen (siehe „Komplette Platte löschen“) oder Ihre Microsoft\n"
-"Windows NTFS oder FAT Partition verkleinern. Letzteres geht ohne\n"
-"Datenverlust, vorausgesetzt Sie haben ihre Windows Partition(en) vorher\n"
-"defragmentiert. Dennoch sollten Sie vor diesem Schritt eine Sicherungskopie\n"
-"Ihrer Daten auf einem anderem Medium als der zu verändernden Festplatte\n"
-"vornehmen. Sie sollten diese Variante wählen, falls Sie beide\n"
-"Betriebssysteme (Microsoft Windows und Mandrivalinux) nebeneinander nutzen\n"
-"wollen.\n"
-"\n"
-" Bevor Sie sich für diese Variante entscheiden, sei hier noch einmal\n"
-"betont, dass das bedeutet, Sie haben weniger Platz für Microsoft Windows\n"
-"als momentan.\n"
-"\n"
-" * „%s“: Falls Sie alle Daten Ihrer Platte verlieren, und sie durch Ihr\n"
-"neues Mandrivalinux System ersetzen wollen, wählen Sie diese Schaltfläche.\n"
-"Beachten Sie, dass dieser Schritt nicht rückgängig gemacht werden kann.\n"
-"\n"
-" !! Wenn Sie diese Variante wählen, werden alle Ihre Daten auf der Platte\n"
-"gelöscht! !!\n"
-"\n"
-" * „%s“: Diese Option erscheint, wenn der gesamte Platz von Microsoft\n"
-"Windows eingenommen wird. Bei der Auswahl der Option wird einfach der\n"
-"gesamte Inhalt der Platte gelöscht und neu partitioniert.\n"
-"\n"
-" !! Wenn Sie diese Variante wählen, werden alle Ihre Daten auf der Platte\n"
-"gelöscht! !!\n"
-"\n"
-" * „%s“: Wenn Sie Ihre Festplatte selbst von Hand partitionieren wollen,\n"
-"dann können Sie diese Option wählen. Seien Sie bitte sehr sorgfältig, wenn\n"
-"Sie diese Lösung wählen, da Sie zwar alle möglichen Einstellungen\n"
-"vornehmen, aber gleichzeitig auch sehr leicht Daten verlieren können. Diese\n"
-"Option ist nur geeignet, wenn Sie wissen, was Sie tun. Um zu erfahren, wie\n"
-"Sie DiskDrake verwenden können, lesen Sie bitte das Kapitel „Ihre\n"
-"Partitionen verwalten“ im „Starter Handbuch“."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:14
+#, c-format
msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
msgstr ""
-"Auflösung\n"
-"\n"
-" Sie können hier Auflösung und Farbtiefe für Ihre Hardware wählen.\n"
-"Entscheiden Sie sich, welche Variante Ihren Wünschen am ehesten entspricht\n"
-"(Sie können diese Angaben natürlich nach der Installation noch ändern).\n"
-"Anhand des abgebildeten Monitors können Sie sich einen sofortigen Eindruck\n"
-"bilden."
+"Lesen Sie bitte aufmerksam die Lizenz, bevor Sie fortfahren. Sie umfasst\n"
+"die gesamte Mandriva Linux Distribution. Sollten Sie nicht in allen Punkten\n"
+"zustimmen, betätigen Sie bitte die Schaltfläche „%s“, um die Installation\n"
+"abzubrechen. Um mit der Installation fortzufahren, betätigen Sie die\n"
+"Schaltfläche „%s“."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:20
+#, c-format
msgid ""
"GNU/Linux is a multi-user system which means each user can have his or her\n"
"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point won't be authorized\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
"to change anything except their own files and their own configurations,\n"
"protecting the system from unintentional or malicious changes which could\n"
"impact on the system as a whole. You'll have to create at least one regular\n"
"user for yourself -- this is the account which you should use for routine,\n"
"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system won't work any more. If you make a\n"
+"mistake could mean that your system will not work any more. If you make a\n"
"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you won't affect the entire system.\n"
+"lose some information, but you will not affect the entire system.\n"
"\n"
"The first field asks you for a real name. Of course, this is not mandatory\n"
"-- you can actually enter whatever you like. DrakX will use the first word\n"
@@ -182,7 +78,7 @@ msgid ""
"\n"
"When you're finished adding users, you'll be asked to choose a user who\n"
"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and don't care much about local\n"
+"you're interested in that feature (and do not care much about local\n"
"security), choose the desired user and window manager, then click on\n"
"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
msgstr ""
@@ -226,102 +122,31 @@ msgstr ""
"Sie Ihre Auswahl durch betätigen der Schaltfläche „%s“. Andernfalls löschen\n"
"Sie einfach die Markierung des Punktes „%s“."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandrivalinux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandrivalinux system. Your current partitioning\n"
-"scheme and user data won't be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandrivalinux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandrivalinux version \"8.1\" is not recommended."
-msgstr ""
-"Dieser Schritt wird nur aufgerufen, wenn mindestens eine GNU/Linux\n"
-"Partition auf Ihren Festplatten gefunden wird.\n"
-"\n"
-"DrakX fragt Sie nun nach der gewünschten Installationsart. Sie haben die\n"
-"Wahl zwischen einer Aktualisierung einer bereits vorhandenen\n"
-"Mandrivalinux-Version oder einer kompletten Neuinstallation:\n"
-"\n"
-" * „%s“: Entfernt komplett ältere Versionen von Mandrivalinux, die noch\n"
-"installiert sind - um genau zu sein, können Sie je nach aktuellem Inhalt\n"
-"Ihrer Platte auch einige ältere Linux- oder anderweitige Partitionen\n"
-"unangetastet behalten. Diese Installationsart ist gut, wenn Sie die\n"
-"Partitionseinteilung auf Ihrer Festplatte sowieso ändern oder das benutzte\n"
-"Dateisystem austauschen wollen\n"
-"\n"
-" * „%s“: Mit dieser Variante können Sie eine existierende Mandrivalinux\n"
-"Version aktualisieren. Die Partitionstabellen sowie die persönlichen\n"
-"Verzeichnisse der Anwender bleiben erhalten. Alle anderen\n"
-"Installationsschritte werden wie bei einer Installation ausgeführt.\n"
-"\n"
-"Aktualisierungen von Mandrivalinux „8.1“ oder neueren Systemen sollten\n"
-"problemlos funktionieren. Ältere Versionen von Mandrivalinux sollten Sie\n"
-"nicht zu aktualisieren versuchen."
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Möchten Sie diese Möglichkeit nutzen?"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:57
+#, c-format
msgid ""
-"By the time you install Mandrivalinux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-"Es ist sehr wahrscheinlich, dass zum Zeitpunkt Ihrer Mandrivalinux\n"
-"Installation bereits einige Pakete aktualisiert wurden, etwa da noch Fehler\n"
-"entdeckt und beseitigt wurden oder da in Paketen Sicherheitslücken entdeckt\n"
-"wurden, für die bereits Lösungen existieren. Um von diesen aktualisierten\n"
-"Paketen Gebrauch zu machen, wird Ihnen nun angeboten, diese aus dem\n"
-"Internet nachzuladen. Betätigen Sie die Schaltfläche „%s“, wenn Sie einen\n"
-"Internetzugang haben, um die Pakete zu installieren, andernfalls betätigen\n"
-"Sie die Schaltfläche „%s“. Sie können diese Pakete natürlich auch jederzeit\n"
-"nach der Installation noch installieren.\n"
-"\n"
-"Betätigen der Schaltfläche „%s“ zeigt Ihnen eine Liste von Servern, von\n"
-"denen Sie die Aktualisierungen herunterladen können. Wählen Sie einen in\n"
-"Ihrer Nähe. Sie erhalten dann einen Paketauswahldialog: Kontrollieren Sie\n"
-"die Auswahl und bestätigen Sie diese durch Betätigen von „%s“. Die Pakete\n"
-"werden nun angefordert und installiert. Sollten Sie das nicht wünschen,\n"
-"betätigen Sie einfach die Schaltfläche „%s“."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandrivalinux operating system.\n"
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
"\"sd\" if it is a SCSI hard drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard drives:\n"
"\n"
" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
@@ -333,18 +158,20 @@ msgid ""
" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
+"\"second lowest SCSI ID\", etc."
msgstr ""
-"Es wurde mehr als eine Windows-Partition gefunden. Wählen Sie bitte, welche\n"
-"Sie verkleinern wollen, um Platz für Ihr neues Mandrivalinux zu schaffen.\n"
+"Sie erhalten die Liste, der auf Ihren Festplatten gefundenen GNU/Linux\n"
+"Partitionen. Sie können die Auswahl des Assistenten beibehalten - sie\n"
+"sollte normalerweise Ihren Bedürfnissen entsprechen. Falls Sie es vorziehen\n"
+"die Einhängpunkte selbst zu definieren, denken Sie bitte daran, dass Sie\n"
+"zumindest eine Verzeichnisbaumwurzel („/“) benötigen. Wählen Sie die\n"
+"Partitionen nicht zu klein, da Sie sonst nicht genügend Programme\n"
+"installieren können. Wenn Sie Ihre persönlichen Daten auf einer eigenen\n"
+"Partition halten wollen, legen Sie sich eine Partition namens „/home“ an.\n"
"\n"
-"Die Partitionen werden folgendermaßen aufgelistet: „Linux-Name“,\n"
-"„Windows-Name“, „Kapazität“.\n"
+"Die Partitionen werden folgendermaßen aufgelistet: „Name“, „Kapazität“.\n"
"\n"
-"„Linux-Name“ hat folgende Struktur: „Festplattentyp“, „Festplattennummer“,\n"
+"„Name“ hat folgende Struktur: „Festplattentyp“, „Festplattennummer“,\n"
"„Partitionsnummer“ (etwa „hda1“).\n"
"\n"
"„Festplattentyp“ ist „hd“, falls Ihre Platte eine IDE/ATAPI-Platte ist, und\n"
@@ -353,202 +180,47 @@ msgstr ""
"„Festplattennummer“ ist immer der Buchstabe hinter dem Festplattentyp. Bei\n"
"IDE-Platten bedeutet:\n"
"\n"
-" * „a“ ist „Master-Platte am primären IDE-Controller“;\n"
+" * „a“ bedeutet „Master-Platte am primären IDE-Controller“;\n"
"\n"
-" * „b“ ist „Slave-Platte am primären IDE-Controller“;\n"
+" * „b“ bedeutet „Slave-Platte am primären IDE-Controller“;\n"
"\n"
-" * „c“ ist „Master-Platte am sekundären IDE-Controller“;\n"
+" * „c“ bedeutet „Master-Platte am sekundären IDE-Controller“;\n"
"\n"
-" * „d“ ist „Slave-Platte am sekundären IDE-Controller“;\n"
+" * „d“ bedeutet „Slave-Platte am sekundären IDE-Controller“;\n"
"\n"
"Bei SCSI-Platten steht „a“ für „niedrigste SCSI-ID“, „b“ für\n"
-"„zweitniedrigste SCSI-ID“, etc.\n"
-"\n"
-"„Windows-Name“ ist der Buchstabe, den die Partition (vermutlich) unter\n"
-"Windows erhalten würde (die erste Partition der ersten Platte heißt „C:“)."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrivalinux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"X (das X Window System) ist das Herz der grafischen Benutzeroberfläche von\n"
-"GNU/Linux. Es bildet die Grundlage für die Vielzahl grafischer\n"
-"Benutzerumgebungen, die Mandrivalinux Ihnen anbietet (wie etwa KDE, GNOME,\n"
-"AfterStep oder WindowMaker).\n"
-"\n"
-"Sie erhalten eine Liste möglicher Parameter, mit deren Hilfe Sie die\n"
-"Grafikausgabe ändern können:\n"
-"\n"
-"Grafikkarte\n"
-"\n"
-" DrakX erkennt normalerweise automatisch Ihre Grafikkarte und richtet sie\n"
-"entsprechend ein. Sollten dabei Probleme auftreten, können Sie in der hier\n"
-"aufgeführten Liste Ihr Modell auswählen.\n"
-"\n"
-" Falls für Ihre Karte verschiedene Server zur Verfügung stehen, etwa mit\n"
-"und ohne 3D-Beschleunigung, werden Sie gebeten, den zu wählen, der Ihren\n"
-"Bedürfnissen am besten entspricht.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" DrakX erkennt normalerweise automatisch Ihren Monitor. Sollten dabei\n"
-"Probleme auftreten, können Sie in der hier aufgeführten Liste Ihr Modell\n"
-"auswählen.\n"
-"\n"
-"\n"
-"\n"
-"Auflösung\n"
-"\n"
-" Sie können hier Auflösung und Farbtiefe für Ihre Hardware wählen.\n"
-"Entscheiden Sie sich, welche Variante Ihren Wünschen am ehesten entspricht\n"
-"(Sie können diese Angaben natürlich nach der Installation noch ändern).\n"
-"Anhand des abgebildeten Monitors können Sie sich einen sofortigen Eindruck\n"
-"bilden.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Je nach Hardware kann es sein, dass dieser Eintrag nicht erscheint.\n"
-"\n"
-" DrakX versucht eine Testbild mit denen von Ihnen gewünschten\n"
-"Einstellungen zu öffnen. Falls Sie während des Tests einen Dialog sehen, in\n"
-"dem Sie gefragt werden, ob sie die getroffenen Einstellungen behalten\n"
-"wollen, antworten Sie mit „%s“, damit DrakX mit dem nächsten\n"
-"Installationsschritt fortfährt. Sollten Sie die Nachricht nicht sehen,\n"
-"bedeutet das, dass eine oder mehrere getroffene Einstellungen nicht korrekt\n"
-"sind. Nach 12 Sekunden sollten Sie wieder das Installationsmenü sehen. Sie\n"
-"können nun die Einstellungen ändern, bis Sie das Testbild sehen.\n"
-"\n"
-"\n"
-"\n"
-"Optionen\n"
-"\n"
-" Sie können direkt bei Betriebssystemstart die grafische Umgebung\n"
-"aktivieren. Durch Betätigen der Schaltfläche „%s“ wird in eine reine\n"
-"Textumgebung gestartet. Das ist sinnvoll für Server oder wenn Sie bei dem\n"
-"Versuch die grafische Umgebung zu konfigurieren erfolglos waren."
+"„zweitniedrigste SCSI-ID“, etc."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:88
+#, c-format
msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandrivalinux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, don't queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you don't have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you don't like your printing\n"
-"system you may change it by running PrinterDrake from the Mandrivalinux\n"
-"Control Center and clicking on the \"%s\" button."
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
msgstr ""
-"Hier können Sie das Drucksystem für Ihren Rechner wählen. Andere\n"
-"Betriebssysteme bieten Ihnen nur eines, bei Mandrivalinux können Sie\n"
-"zwischen zwei verschiedenen wählen. jedes dieser Systeme ist für eine\n"
-"bestimmte Konfiguration des Systems am besten geeignet.\n"
-"\n"
-" * „%s“ -- Es steht für „print, don't queue“ (engl. für „Drucken ohne\n"
-"Warteschlange“). Falls Sie einen Drucker haben, der direkt an Ihrem Rechner\n"
-"hängt und Sie keine Netzwerkdrucker verwenden wollen, ist dies das\n"
-"Drucksystem Ihrer Wahl. Es kann zwar auch mit Netzwerkdruckern umgehen, ist\n"
-"dabei aber extrem langsam. Wählen Sie „pdq“, wenn Sie ein GNU/Linux Neuling\n"
-"sind.\n"
-"\n"
-" * „%s“ - Mit dem „Common Unix Printing System“ (engl. für „Allgemeines\n"
-"Unix-Drucksystem“) können Sie ebensogut auf Ihrem direkt angeschlossenen\n"
-"Drucker drucken, wie auf einem Drucker, der an einem Server auf der anderen\n"
-"Seite der Welt hängt. Es ist einfach zu bedienen und kann sowohl als Server\n"
-"als auch als Klient für das alte „lpd“-Drucksystem verwendet werden - Es\n"
-"ist somit rückwärtskompatibel. Es ist sehr mächtig, in seiner\n"
-"Grundeinstellung verhält es sich jedoch genau wie „pdq“. Wenn Sie einen\n"
-"„lpd“ Server benötigen, müssen Sie einfach nur den „cups-lpd“ Dämon\n"
-"starten. „%s“ bietet grafische Konfigurations- und Druckmenüs.\n"
-"\n"
-"Sie können diese Wahl später immer wieder ändern, indem Sie PrinterDrake\n"
-"aus dem Mandrivalinux Control Center starten und dort die Schaltfläche „%s“\n"
-"betätigen."
+"Die Mandriva Linux-Distribution wird auf mehreren CD-ROMs ausgeliefert. Es\n"
+"kann daher vorkommen, dass DrakX Pakete von anderen, als der\n"
+"Installations-CD-ROM installieren will. In diesem Fall wird es die aktuelle\n"
+"CD auswerfen und nach einer anderen fragen. Wenn Sie dieses CD nicht haben,\n"
+"klicken Sie einfach auf „%s“. Die entsprechenden Pakete werden in dem Fall\n"
+"nicht installiert."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:95
+#, c-format
msgid ""
"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandrivalinux, and to make it\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
"simpler to manage, they have been placed into groups of similar\n"
"applications.\n"
"\n"
-"Mandrivalinux sorts package groups in four categories. You can mix and\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
"match applications from the various categories, so a ``Workstation''\n"
"installation can still have applications from the ``Server'' category\n"
"installed.\n"
@@ -600,7 +272,7 @@ msgid ""
"megabytes."
msgstr ""
"Nun ist es Zeit sich zu entscheiden, welche Programme Sie auf Ihrem Rechner\n"
-"installieren wollen. Es gibt tausende von Paketen für Mandrivalinux, und\n"
+"installieren wollen. Es gibt tausende von Paketen für Mandriva Linux, und\n"
"Sie müssen sie nicht alle auswendig kennen.\n"
"\n"
"Die Pakete sind nach ihrer Verwendung in vier Kategorien eingeteilt. Sie\n"
@@ -654,121 +326,25 @@ msgstr ""
"GNU/Linux-Distribution. Es versteht sich von selbst, dass das nur eine\n"
"Kommandozeileninstallation sein kann."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"The Mandrivalinux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-"Die Mandrivalinux-Distribution wird auf mehreren CD-ROMs ausgeliefert. Es\n"
-"kann daher vorkommen, dass DrakX Pakete von anderen, als der\n"
-"Installations-CD-ROM installieren will. In diesem Fall wird es die aktuelle\n"
-"CD auswerfen und nach einer anderen fragen. Wenn Sie dieses CD nicht haben,\n"
-"klicken Sie einfach auf „%s“. Die entsprechenden Pakete werden in dem Fall\n"
-"nicht installiert."
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Aktualisierung"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: don't make the password too long or too complicated because you\n"
-"must be able to remember it!\n"
-"\n"
-"The password won't be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you don't know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-"Dies ist der wichtigste Punkt in der Absicherung Ihres neuen\n"
-"GNU/Linux-Systems: Sie müssen das Passwort für „root“ eingeben. „root“ ist\n"
-"der Systemadministrator. Er ist der einzige der berechtigt ist, neue\n"
-"Software zu installieren, Systemdateien zu ändern oder neue\n"
-"Benutzerkennzeichen anzulegen. Kurz gesagt: „root“ darf alles! Daher müssen\n"
-"Sie auch ein Passwort auswählen, was nicht leicht zu erraten ist; DrakX\n"
-"teilt Ihnen mit, wenn das Passwort zu einfach ist. Sie sehen, dass es auch\n"
-"möglich ist, kein Passwort zu vergeben. Wir raten Ihnen jedoch dringend\n"
-"davon ab! Glauben Sie nicht, dass nur, weil Sie GNU/Linux geladen haben,\n"
-"Ihre anderen Betriebssysteme vor Fehlern sicher sind. »root« hat keine\n"
-"Beschränkungen. Er könnte beispielsweise unbeabsichtigterweise alle Daten\n"
-"auf allen Partitionen löschen. Also sollte es schwierig gemacht werden,\n"
-"„root“ zu werden!\n"
-"\n"
-"Das Passwort sollte eine Mischung aus alphanumerischen Zeichen sein und\n"
-"mindestens acht Zeichen lang. Es sollte niemals irgendwo aufgeschrieben\n"
-"werden.\n"
-"\n"
-"Machen Sie das Passwort aber nicht zu lang oder zu kompliziert: Sie sollten\n"
-"es sich ohne großen Aufwand merken können.\n"
-"\n"
-"Bei der Eingabe des Passwortes wird nichts angezeigt. Um ein Verschreiben\n"
-"bei dieser „Blindeingabe“ zu vermeiden müssen Sie das Passwort zweimal\n"
-"eingeben - ein Tippfehler beim ersten Versuch könnte sonst zu einem Problem\n"
-"werden, da Sie anschließend das „falsche“ Passwort bei der Verbindung mit\n"
-"dem System eingeben müssten.\n"
-"\n"
-"Wenn Sie wollen, dass der Zugang zu diesem Rechner über einen\n"
-"Authentifizierungsserver verwaltet wird, betätigen Sie die Schaltfläche\n"
-"„%s“.\n"
-"\n"
-"Falls in Ihrem Netzwerk LDAP, NIS oder PDC zur Authentifizierung verwendet\n"
-"wird, wählen Sie bitte den entsprechenden Menüpunkt. Falls Sie nicht\n"
-"wissen, welches Protokoll Sie verwenden sollen, fragen Sie Ihren\n"
-"Netzwerkadministrator.\n"
-"\n"
-"Wenn Sie Probleme haben, sich Passwörter zu merken, oder Ihr Computer nie\n"
-"mit dem Internet verbunden wird und Sie allen Benutzern Ihres Computers\n"
-"absolut vertrauen, können Sie die Option „%s“ wählen."
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Mit minimaler Dokumentation (Empfohlen)"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-"Betätigen Sie die Schaltfläche „%s“, wenn Sie alle Partitionen und die\n"
-"darauf befindlichen Daten löschen wollen. Bedenken Sie, dass Sie nach\n"
-"betätigen der Schaltfläche „%s“ auch an die möglicherweise noch vorhandenen\n"
-"Windows-Daten nicht mehr gelangen werden!\n"
-"\n"
-"Wählen Sie „%s“, um die Aktion ohne Datenverlust abzubrechen."
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Minimal-Installation"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:152
+#, c-format
msgid ""
"If you choose to install packages individually, the installer will present\n"
"a tree containing all packages classified by groups and subgroups. While\n"
@@ -781,11 +357,12 @@ msgid ""
"!! If a server package has been selected, either because you specifically\n"
"chose the individual package or because it was part of a group of packages,\n"
"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandrivalinux will automatically start any installed\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
"services at boot time. Even if they are safe and have no known issues at\n"
"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandrivalinux was\n"
-"finalized. If you don't know what a particular service is supposed to do or\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
"the listed services and they will be started automatically at boot time. !!\n"
"\n"
@@ -803,17 +380,20 @@ msgid ""
"another installation. See the second tip of the last step on how to create\n"
"such a floppy."
msgstr ""
-"Falls Sie sich für „%s“ entschieden haben erhalten Sie eine Baumliste aller\n"
-"Pakete, nach Gruppen und Untergruppen klassifiziert. Beim Durchstöbern des\n"
-"Baums, können Sie Gruppen, Untergruppen oder einzelne Pakete markieren oder\n"
-"deren Markierung entfernen.\n"
+"Falls Sie sich für die einzelne Paketauswahl entschieden haben erhalten Sie "
+"eine\n"
+"Baumliste aller Pakete, nach Gruppen und Untergruppen klassifiziert. Beim\n"
+"Durchstöbern des Baums können Sie Gruppen, Untergruppen oder einzelne "
+"Pakete\n"
+"auswählen.\n"
"\n"
-"Sobald Sie ein Paket auswählen, erscheint rechts eine kurze Beschreibung.\n"
+"Wenn Sie ein Paket auswählen, erscheint rechts eine kurze Beschreibung.\n"
"\n"
"!! Es kommt vor, dass Server- und Dienst-Pakete angewählt wurden - entweder\n"
"absichtlich, oder als Paket einer ganzen Gruppe; sollte das der Fall sein,\n"
"werden Sie nun gefragt, ob Sie diese wirklich installiert haben wollen.\n"
-"Unter Mandrivalinux werden installierte Server und Dienste automatisch beim\n"
+"Unter Mandriva Linux werden installierte Server und Dienste automatisch "
+"beim\n"
"Betriebssystemstart gestartet. Selbst wenn zum Zeitpunkt, als die\n"
"Distribution zusammengestellt wurde, keine Sicherheitslücken oder Fehler in\n"
"diesen Paketen bekannt waren, ist natürlich nicht auszuschließen, dass\n"
@@ -825,7 +405,7 @@ msgstr ""
"Die Option „%s“ unterdrückt nur die Warnungen, die erscheinen, wenn das\n"
"Installationsprogramm Pakete automatisch markiert, um Paketabhängigkeiten\n"
"aufzulösen, wenn Sie ein Paket auswählen. Einige Pakete hängen von der\n"
-"Existenz anderer Pakete ab und die Installation eines Paketes mag die\n"
+"Existenz anderer Pakete ab und die Installation eines Pakets mag die\n"
"Installation eines anderen voraussetzen. Das Installprogramm ist in der\n"
"Lage, diese Abhängigkeiten zu erkennen und zu erfüllen.\n"
"\n"
@@ -837,194 +417,13 @@ msgstr ""
"erstellen, lesen Sie bitte den zweiten Tipp des vorangegangenen\n"
"Installationsschrittes."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can't determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" won't install any boot loader. Use this option only if you\n"
-"know what you're doing."
-msgstr ""
-"Ein Betriebssystemstarter ist ein kleines Programm, das vom Computer\n"
-"während des Startvorganges aufgerufen wird. Es ist für den Start des\n"
-"gesamten Systems verantwortlich. Im Normalfall läuft die Installation des\n"
-"Betriebssystemstarters vollkommen automatisch ab. DrakX analysiert den\n"
-"Bootsektor und ergreift dann die passenden Maßnahmen:\n"
-"\n"
-" * Findet DrakX einen Windows-Bootsektor, ersetzt es ihn durch einen GRUB-\n"
-"oder LILO-Bootsektor. Sie erhalten dadurch die Möglichkeit, beim\n"
-"Systemstart zwischen Windows (bzw. anderen Betriebssystemen, sofern\n"
-"vorhanden) und GNU/Linux auszuwählen;\n"
-"\n"
-" * Findet DrakX einen Linux-Bootsektor vor, ersetzt es ihn durch einen\n"
-"neuen;\n"
-"\n"
-"Falls DrakX nicht weiß, wo der Betriebssystemstarter installiert werden\n"
-"soll, wird es Sie um Ihre Meinung bitten. Normalerweise sollte die\n"
-"Installation auf dem „%s“ erfolgen. Durch Auswahl von „%s“ wird überhaupt\n"
-"kein Starter installiert. Verwenden Sie diese Möglichkeit nur, wenn Sie\n"
-"genau wissen was Sie tun."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"DrakX versucht nun alle IDE Festplatten Ihres Systems zu finden. Unter\n"
-"Anderem sucht DrakX auch nach PCI-SCSI-Karten, die es kennt, um sie\n"
-"automatisch mit dem richtigen Treiber einzubinden.\n"
-"\n"
-"Falls DrakX nicht weiß, welcher Treiber funktioniert, werden Sie gebeten,\n"
-"DrakX zu helfen.\n"
-"\n"
-"Sollten Sie die PCI-SCSI-Karte selbst angegeben haben, wird DrakX Sie\n"
-"fragen, ob Sie weitere Parameter angeben wollen. Sie sollten DrakX\n"
-"erlauben, die kartenspezifischen Informationen selbst zu finden. In den\n"
-"meisten Fällen wird DrakX diesen Schritt ohne Ihre Hilfe bewerkstelligen.\n"
-"\n"
-"Falls DrakX nicht in der Lage ist, die Parameter selbst zu finden, die dem\n"
-"Modul zu übergeben sind, müssen Sie diese angeben.\n"
-"\n"
-"Sie können die benötigten Informationen etwa unter Windows (sofern das auf\n"
-"Ihren Rechner installiert ist) finden, aus den Handbüchern, die sie mit dem\n"
-"Adapter erhalten haben oder von den Web-Seiten des Hardware-Anbieters\n"
-"(sofern Sie einen WWW-Zugang haben)."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandrivalinux's use of UTF-8 will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-"Als ersten Schritt wählen Sie bitte die gewünschte Sprache.\n"
-"\n"
-"Wählen Sie Ihre bevorzugte Sprache für den Installationsvorgang und\n"
-"Systemlaufzeit. Wählen Sie zuerst die Region, in der Sie sich befinden,\n"
-"anschließend die Sprache, die Sie sprechen.\n"
-"\n"
-"Durch Betätigen der Schaltfläche „%s“ erhalten Sie die Möglichkeit, weitere\n"
-"Sprachen auf Ihrem Rechner zu installieren, um diese später verwenden zu\n"
-"können. Wollen Sie etwa Spaniern muttersprachlichen Zugang zu Ihrem System\n"
-"erlauben, wählen Sie Deutsch als Hauptsprache in der Liste und im\n"
-"Fortgeschrittenen-Bereich „%s“.\n"
-"\n"
-"Zur UTF-8 (Unicode) Unterstützung: Unicode ist ein Zeichenkodierung, die\n"
-"die existierenden Kodierungen ablösen soll und die Zeichen aller\n"
-"existierender Sprachen beinhalten. Komplette Unterstützung in GNU/Linux ist\n"
-"leider immer noch nicht gegeben. Daher verwendet Mandrivalinux diese\n"
-"Kodierung nur auf Wunsch des Anwenders:\n"
-"\n"
-" * Falls Sie eine Sprache nutzen, die eine gut unterstütztes Kodierung\n"
-"verwendet (Sprachen mit Lateinischen Zeichen, Russisch, Griechisch,\n"
-"Japanisch, Chinesisch, Koreanisch, Thailändisch), wird standardmäßig das\n"
-"klassische Kodierung beibehalten;\n"
-"\n"
-" * Alle anderen Sprachen verwenden standardmäßig Unicode;\n"
-"\n"
-" * Fall Sie zwei oder mehr Sprachen verwenden wollen, die unterschiedliche\n"
-"klassische Kodierungen verwenden, wird ebenfalls Unicode verwendet;\n"
-"\n"
-" * Schlussendlich kann Unicode vom Anwender auch für Sprachen mit\n"
-"klassischer Kodierung ausgewählt werden, indem er den Punkt „%s“ markiert.\n"
-"\n"
-"Sie sind nicht auf eine weitere Sprache begrenzt. Sie können so viele\n"
-"auswählen, wie Sie wollen, ja sogar alle, indem Sie die Schaltfläche „%s“\n"
-"verwenden. Das Auswählen einer Sprache beeinflusst die installierten\n"
-"Übersetzungen der Programme, Schriften, Rechtschreibkorrekturen, etc.\n"
-"\n"
-"Um die Spracheinstellungen des ganzen Systems zwischen verschiedenen\n"
-"Sprachen umzuschalten, starten Sie einfach „localedrake“ unter dem\n"
-"privilegierten Kennzeichen „root“. Wollen Sie die Einstellungen nur für ein\n"
-"Kennzeichen ändern starten Sie denselben Befehl mit eben diesem\n"
-"Kennzeichen."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card isn't the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-"„%s“: Falls eine Soundkarte in Ihrem Rechner gefunden wurde, wird sie hier\n"
-"angezeigt. Sollte die von DrakX getroffene Auswahl nicht korrekt sein,\n"
-"betätigen Sie einfach die Schaltfläche, um sie zu korrigieren."
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Automatische Abhängigkeiten"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrivalinux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Bitte wählen Sie die Festplatte, die Sie löschen wollen, um Ihr neues\n"
-"Mandrivalinux zu installieren. Bedenken Sie dabei, dass alle Daten auf\n"
-"dieser Platte nach diesem Schritt unwiederbringlich verloren sind!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:186
+#, c-format
msgid ""
"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
@@ -1036,326 +435,14 @@ msgstr ""
"des „Starter Handbuch“. Das dort vorgestellte Programm entspricht dem\n"
"während der Installation angebotenen."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"Optionen\n"
-"\n"
-" Sie können direkt bei Betriebssystemstart die grafische Umgebung\n"
-"aktivieren. Durch Betätigen der Schaltfläche „%s“ wird in eine reine\n"
-"Textumgebung gestartet. Das ist sinnvoll für Server oder wenn Sie bei dem\n"
-"Versuch die grafische Umgebung zu konfigurieren erfolglos waren."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Wählen Sie bitte den richtigen Anschluss. So ist etwa der unter Windows\n"
-"„COM1“ genannte Anschluss in GNU/Linux unter „ttyS0“ erreichbar."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
-"\n"
-"If you don't know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandrivalinux\n"
-"Control Center.\n"
-"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-"Nun ist es an der Zeit, mittels DrakX die gewünschte Sicherheitsebene für\n"
-"Ihr System festzulegen. Als Faustregel sollte hier dienen: Je zugänglicher\n"
-"die Maschine ist und je kritischer die auf ihr gesicherten Daten sind,\n"
-"desto höher sollte die Sicherheitsebene sein. Andererseits geht die\n"
-"gewonnene Sicherheit zulasten der Benutzerfreundlichkeit und Einfachheit.\n"
-"\n"
-"Sollten Sie sich an dieser Stelle nicht sicher sein, so behalten Sie die\n"
-"Standardeinstellung bei. Sie können die Ebene später noch mittels draksec\n"
-"im Mandrivalinux Control Center anpassen.\n"
-"\n"
-"Das Feld „%s“ dient dazu, dem System mitzuteilen, wer für die Sicherheit\n"
-"dieses Rechners verantwortlich ist. An dieses Kennzeichen/diese E-Mail\n"
-"Adresse werden sicherheitsrelevante Informationen per E-Mail versandt."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"isn't in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card isn't the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it isn't\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that doesn't suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandrivalinux Control Center after the installation has finished to benefit\n"
-"from full in-line help.\n"
-"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandrivalinux Control Center.\n"
-"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-"Nun bekommen Sie eine Zusammenfassung verschiedener Informationen Ihres\n"
-"Systems. Je nach vorhandener Hardware sehen Sie hier (oder eben nicht) die\n"
-"folgende Einträge. Jeder Eintrag besteht aus einem konfigurierbaren Gerät\n"
-"gefolgt vom dessen aktuellen Zustand. Durch Betätigen der Schaltfläche „%s“\n"
-"können Sie diesen ändern.\n"
-"\n"
-" * „%s“: Kontrollieren Sie die aktuelle Tastaturvorgabe und wählen Sie die\n"
-"Schaltfläche, falls Sie die Vorgabe ändern wollen.\n"
-"\n"
-" * „%s“: Kontrollieren Sie, ob die Auswahl des Staates, in dem Sie sich\n"
-"befinden korrekt ist. Falls nicht, betätigen Sie bitte die Schaltfläche\n"
-"„%s“ und wählen Sie den richtigen. Ist Ihr Staat nicht in der Liste, können\n"
-"Sie über die Schaltfläche „%s“ eine vollständigere Liste erzwingen.\n"
-"\n"
-" * „%s“: DrakX versucht die Zeitzone anhand des gewählten Staates zu\n"
-"setzen. Sollte diese Auswahl nicht korrekt sein können Sie durch Betätige\n"
-"der Schaltfläche „%s“ Ihre lokale Zeitzone setzen.\n"
-"\n"
-" * „%s“: Kontrollieren Sie die konfigurierte Maus und betätigen Sie, falls\n"
-"notwendig, die Schaltfläche.\n"
-"\n"
-" * „%s“: Durch Anwahl der Schaltfläche „%s“ startet den Druckerassistenten.\n"
-"Weitere Informationen zu diesem Assistenten erhalten Sie im Drucker-Kapitel\n"
-"des „Starter Handbuch“. Das dort vorgestellte Programm entspricht dem\n"
-"während der Installation angebotenen.\n"
-"\n"
-" * „%s“: Falls eine Soundkarte in Ihrem Rechner gefunden wurde, wird sie\n"
-"hier angezeigt. Sollte die von DrakX getroffene Auswahl nicht korrekt sein,\n"
-"betätigen Sie einfach die Schaltfläche, um sie zu korrigieren.\n"
-"\n"
-" * „%s“: Falls eine TV-Karte in Ihrem Rechner gefunden wurde, wird sie hier\n"
-"angezeigt. Falls Sie eine TV-Karte besitzen, die hier nicht richtig erkannt\n"
-"wurde, können Sie versuchen, diese manuell einzurichten. Betätigen Sie\n"
-"einfach die Schaltfläche „%s“.\n"
-"\n"
-" * „%s“: Falls eine ISDN Karte in Ihrem Rechner gefunden wurde, wird sie\n"
-"hier angezeigt. Durch Anwahl der Schaltfläche „%s“ können Sie die Parameter\n"
-"ändern.\n"
-"\n"
-" * „%s“: DrakX richtet Ihre Grafikumgebung normalerweise in der Auflösung\n"
-"„800×600“ bzw. „1024×768“ ein. Sollte Ihnen das nicht zusagen, können Sie\n"
-"es durch betätigen der Schaltfläche „%s“ ändern.\n"
-"\n"
-" * „%s“: Falls Sie Ihren Internetzugang oder Ihr lokales Netzwerk nun\n"
-"einrichten wollen, können Sie das hier tun. Lesen Sie sich dazu die\n"
-"gedruckte Dokumentation durch oder benutzen Sie das Mandrivalinux Control\n"
-"Center nachdem die Installation beendet ist.\n"
-"\n"
-" * „%s“: Hier können Sie HTTP- und FTP-Proxyadressen eintragen falls Ihre\n"
-"Maschine die Verbindung über einen Proxyserver abwickelt.\n"
-"\n"
-" * „%s“: Dieser Eintrag ermöglicht es Ihnen, die Sicherheitsebene Ihres\n"
-"Systems zu ändern, die Sie in einem früheren Installationsschritt ()\n"
-"gewählt haben.\n"
-"\n"
-" * „%s“: Falls Sie Ihren Rechner mit dem Internet verbinden wollen, ist es\n"
-"sinnvoll sich vor ungebetenen Eindringlingen durch Einrichten einer\n"
-"Firewall zu schützen. Weitere Informationen erhalten Sie im „Starter\n"
-"Handbuch“.\n"
-"\n"
-" * „%s“: Falls Sie die Konfiguration Ihres Betriebssystemstarters\n"
-"(„Bootloader“) ändern wollen, wählen Sie diese Schaltfläche. Es sei\n"
-"angemerkt, dass dieser Punkt sich an fortgeschrittenere Nutzer richtet.\n"
-"Hilfe finden Sie in der gedruckten Dokumentation oder im integrierten\n"
-"Hilfeteil des Mandrivalinux Control Center.\n"
-"\n"
-" * „%s“: Sie können hier die Dienste wählen, die ab dem Start von\n"
-"Mandrivalinux zur Verfügung gestellt werden sollen. Wollen Sie den Rechner\n"
-"als Server verwenden, sollten Sie unbedingt einen Blick auf diese Liste\n"
-"werfen."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-"Falls für Ihre Karte verschiedene Server zur Verfügung stehen, etwa mit und\n"
-"ohne 3D-Beschleunigung, werden Sie gebeten, den zu wählen, der Ihren\n"
-"Bedürfnissen am besten entspricht."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
-"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-"DrakX versucht normalerweise die Anzahl der Tasten Ihrer Maus zu erkennen.\n"
-"Sollte das nicht möglich sein, so behandelt es Ihre Maus als\n"
-"Zwei-Tasten-Maus und emuliert die mittlere Taste. Die mittlere Taste kann\n"
-"dann durch gleichzeitiges Drücken der rechten und Linken Taste simuliert\n"
-"werden. Üblicherweise erkennt DrakX korrekt, ob es sich um eine serielle,\n"
-"eine PS/2- oder um eine USB-Maus handelt.\n"
-"\n"
-"Falls Sie eine 3-Button-Maus ohne Rad haben können Sie eine Maus „%s“\n"
-"auswählen. DrakX wird dann Ihre Maus so einrichten, dass Sie das Rad in der\n"
-"folgenden Weise simulieren können: Sie drücken die mittlere Maustaste und\n"
-"bewegen Ihren Mauszeiger auf und ab.\n"
-"\n"
-"Sollte dies nicht Ihren Vorstellungen entsprechen: Wählen Sie einfach Ihren\n"
-"Maustyp aus der Liste, die Ihnen angezeigt wird.\n"
-"\n"
-"Einen generischen Maustyp, der mit fast allen Maustypen funktioniert,\n"
-"können Sie über „%s“ einstellen.\n"
-"\n"
-"Sollten Sie einen anderen als den vorgeschlagenen Maustyp gewählt haben, so\n"
-"wird Ihnen ein Testfenster angezeigt. Verwenden Sie die Knöpfe und\n"
-"gegebenenfalls das Mausrad, um sicherzustellen, dass die festgelegten\n"
-"Einstellungen funktionieren. Falls nicht, drücken Sie die Leertaste oder\n"
-"die Eingabetaste, um zurück zum Auswahlmenü zu gelangen und suchen Sie\n"
-"einen anderen Treiber aus.\n"
-"\n"
-"Es kommt vor, dass Mäuse mit Rädern nicht korrekt erkannt werden. Wählen\n"
-"Sie in diesem Fall die richtige Maus aus der vorgegebenen Liste. Stellen\n"
-"Sie sicher, dass Sie auch den Anschluss richtig angegeben haben. Nach\n"
-"betätigen der Schaltfläche „%s“, wird Ihnen ein Bild der gewählten Maus\n"
-"gezeigt. Bewegen Sie Räder und Tasten, um sicherzustellen, dass die Maus\n"
-"richtig erkannt wurde."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-"Grafikkarte\n"
-"\n"
-" DrakX erkennt normalerweise automatisch Ihre Grafikkarte und richtet sie\n"
-"entsprechend ein. Sollten dabei Probleme auftreten, können Sie in der hier\n"
-"aufgeführten Liste Ihr Modell auswählen.\n"
-"\n"
-" Falls für Ihre Karte verschiedene Server zur Verfügung stehen, etwa mit\n"
-"und ohne 3D-Beschleunigung, werden Sie gebeten, den zu wählen, der Ihren\n"
-"Bedürfnissen am besten entspricht."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandrivalinux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-"Lesen Sie bitte aufmerksam die Lizenz, bevor Sie fortfahren. Sie umfasst\n"
-"die gesamte Mandrake Linux Distribution. Sollten Sie nicht in allen Punkten\n"
-"zustimmen, betätigen Sie bitte die Schaltfläche „%s“, um die Installation\n"
-"abzubrechen. Um mit der Installation fortzufahren, betätigen Sie die\n"
-"Schaltfläche „%s“."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:192
+#, c-format
msgid ""
"This dialog is used to select which services you wish to start at boot\n"
"time.\n"
"\n"
"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which aren't needed at boot\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
"time.\n"
"\n"
"A short explanatory text will be displayed about a service when it is\n"
@@ -1363,7 +450,8 @@ msgid ""
"it is safer to leave the default behavior.\n"
"\n"
"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably don't want to start any services which you don't need.\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
"Please remember that some services can be dangerous if they're enabled on a\n"
"server. In general, select only those services you really need. !!"
msgstr ""
@@ -1386,23 +474,8 @@ msgstr ""
"im Serverbetrieb laufen. Also, nur die Dienste einschalten, die Sie\n"
"wirklich brauchen! !!"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
-msgstr ""
-"Monitor\n"
-"\n"
-" DrakX erkennt normalerweise automatisch Ihren Monitor. Sollten dabei\n"
-"Probleme auftreten, können Sie in der hier aufgeführten Liste Ihr Modell\n"
-"auswählen."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:209
+#, c-format
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
"local time according to the time zone you selected. If the clock on your\n"
@@ -1431,171 +504,361 @@ msgstr ""
"Internetverbindung. Mit dieser Option installieren Sie einen Time-Server,\n"
"der von weiteren Maschinen Ihres lokalen Netzwerks genutzt werden kann."
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Automatische Zeit-Synchronisation (durch NTP)"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Grafikkarte\n"
+"\n"
+" DrakX erkennt normalerweise automatisch Ihre Grafikkarte und richtet sie\n"
+"entsprechend ein. Sollten dabei Probleme auftreten, können Sie in der hier\n"
+"aufgeführten Liste Ihr Modell auswählen.\n"
+"\n"
+" Falls für Ihre Karte verschiedene Server zur Verfügung stehen, etwa mit\n"
+"und ohne 3D-Beschleunigung, werden Sie gebeten, den zu wählen, der Ihren\n"
+"Bedürfnissen am besten entspricht."
+
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:234
+#, c-format
msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
+"Graphic Card\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"Monitor\n"
"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
msgstr ""
-"Sie erhalten die Liste, der auf Ihren Festplatten gefundenen GNU/Linux\n"
-"Partitionen. Sie können die Auswahl des Assistenten beibehalten - sie\n"
-"sollte normalerweise Ihren Bedürfnissen entsprechen. Falls Sie es vorziehen\n"
-"die Einhängpunkte selbst zu definieren, denken Sie bitte daran, dass Sie\n"
-"zumindest eine Verzeichnisbaumwurzel („/“) benötigen. Wählen Sie die\n"
-"Partitionen nicht zu klein, da Sie sonst nicht genügend Programme\n"
-"installieren können. Wenn Sie Ihre persönlichen Daten auf einer eigenen\n"
-"Partition halten wollen, legen Sie sich eine Partition namens „/home“ an.\n"
+"X (das X Window System) ist das Herz der grafischen Benutzeroberfläche von\n"
+"GNU/Linux. Es bildet die Grundlage für die Vielzahl grafischer\n"
+"Benutzerumgebungen, die Mandriva Linux Ihnen anbietet (wie etwa KDE, GNOME,\n"
+"AfterStep oder WindowMaker).\n"
"\n"
-"Die Partitionen werden folgendermaßen aufgelistet: „Name“, „Kapazität“.\n"
+"Sie erhalten eine Liste möglicher Parameter, mit deren Hilfe Sie die\n"
+"Grafikausgabe ändern können:\n"
"\n"
-"„Name“ hat folgende Struktur: „Festplattentyp“, „Festplattennummer“,\n"
-"„Partitionsnummer“ (etwa „hda1“).\n"
+"Grafikkarte\n"
"\n"
-"„Festplattentyp“ ist „hd“, falls Ihre Platte eine IDE/ATAPI-Platte ist, und\n"
-"„sd“, wenn es sich um eine SCSI-Platte handelt.\n"
+" DrakX erkennt normalerweise automatisch Ihre Grafikkarte und richtet sie\n"
+"entsprechend ein. Sollten dabei Probleme auftreten, können Sie in der hier\n"
+"aufgeführten Liste Ihr Modell auswählen.\n"
"\n"
-"„Festplattennummer“ ist immer der Buchstabe hinter dem Festplattentyp. Bei\n"
-"IDE-Platten bedeutet:\n"
+" Falls für Ihre Karte verschiedene Server zur Verfügung stehen, etwa mit\n"
+"und ohne 3D-Beschleunigung, werden Sie gebeten, den zu wählen, der Ihren\n"
+"Bedürfnissen am besten entspricht.\n"
"\n"
-" * „a“ bedeutet „Master-Platte am primären IDE-Controller“;\n"
"\n"
-" * „b“ bedeutet „Slave-Platte am primären IDE-Controller“;\n"
"\n"
-" * „c“ bedeutet „Master-Platte am sekundären IDE-Controller“;\n"
+"Monitor\n"
"\n"
-" * „d“ bedeutet „Slave-Platte am sekundären IDE-Controller“;\n"
+" DrakX erkennt normalerweise automatisch Ihren Monitor. Sollten dabei\n"
+"Probleme auftreten, können Sie in der hier aufgeführten Liste Ihr Modell\n"
+"auswählen.\n"
"\n"
-"Bei SCSI-Platten steht „a“ für „niedrigste SCSI-ID“, „b“ für\n"
-"„zweitniedrigste SCSI-ID“, etc."
+"\n"
+"\n"
+"Auflösung\n"
+"\n"
+" Sie können hier Auflösung und Farbtiefe für Ihre Hardware wählen.\n"
+"Entscheiden Sie sich, welche Variante Ihren Wünschen am ehesten entspricht\n"
+"(Sie können diese Angaben natürlich nach der Installation noch ändern).\n"
+"Anhand des abgebildeten Monitors können Sie sich einen sofortigen Eindruck\n"
+"bilden.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Je nach Hardware kann es sein, dass dieser Eintrag nicht erscheint.\n"
+"\n"
+" DrakX versucht eine Testbild mit denen von Ihnen gewünschten\n"
+"Einstellungen zu öffnen. Falls Sie während des Tests einen Dialog sehen, in\n"
+"dem Sie gefragt werden, ob sie die getroffenen Einstellungen behalten\n"
+"wollen, antworten Sie mit „%s“, damit DrakX mit dem nächsten\n"
+"Installationsschritt fortfährt. Sollten Sie die Nachricht nicht sehen,\n"
+"bedeutet das, dass eine oder mehrere getroffene Einstellungen nicht korrekt\n"
+"sind. Nach 12 Sekunden sollten Sie wieder das Installationsmenü sehen. Sie\n"
+"können nun die Einstellungen ändern, bis Sie das Testbild sehen.\n"
+"\n"
+"\n"
+"\n"
+"Optionen\n"
+"\n"
+" Sie können direkt bei Betriebssystemstart die grafische Umgebung\n"
+"aktivieren. Durch Betätigen der Schaltfläche „%s“ wird in eine reine\n"
+"Textumgebung gestartet. Das ist sinnvoll für Server oder wenn Sie bei dem\n"
+"Versuch die grafische Umgebung zu konfigurieren erfolglos waren."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:291
+#, c-format
msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country isn't in the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
msgstr ""
-"„%s“: Kontrollieren Sie, ob die Auswahl des Staates, in dem Sie sich\n"
-"befinden korrekt ist. Falls nicht, betätigen Sie bitte die Schaltfläche\n"
-"„%s“ und wählen Sie den richtigen. Ist Ihr Staat nicht in der Liste, können\n"
-"Sie über die Schaltfläche „%s“ eine vollständigere Liste erzwingen."
+"Monitor\n"
+"\n"
+" DrakX erkennt normalerweise automatisch Ihren Monitor. Sollten dabei\n"
+"Probleme auftreten, können Sie in der hier aufgeführten Liste Ihr Modell\n"
+"auswählen."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Auflösung\n"
+"\n"
+" Sie können hier Auflösung und Farbtiefe für Ihre Hardware wählen.\n"
+"Entscheiden Sie sich, welche Variante Ihren Wünschen am ehesten entspricht\n"
+"(Sie können diese Angaben natürlich nach der Installation noch ändern). Sie\n"
+"können sich einen Eindruck anhand des abgebildeten Monitors bilden."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Falls für Ihre Karte verschiedene Server zur Verfügung stehen, etwa mit und\n"
+"ohne 3D-Beschleunigung, werden Sie gebeten, den zu wählen, der Ihren\n"
+"Bedürfnissen am besten entspricht."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Optionen\n"
+"\n"
+" Sie können direkt bei Betriebssystemstart die grafische Umgebung\n"
+"aktivieren. Durch Betätigen der Schaltfläche „%s“ wird in eine reine\n"
+"Textumgebung gestartet. Das ist sinnvoll für Server oder wenn Sie bei dem\n"
+"Versuch die grafische Umgebung zu konfigurieren erfolglos waren."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:319
+#, c-format
msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you don't have to reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"won't be able to recover it.\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrivalinux operating system installation.\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
msgstr ""
-"Sie erhalten hier die Möglichkeit bereits existierende Partitionen neu zu\n"
-"formatieren, um die darauf vorhandenen Daten zu löschen. Markieren Sie\n"
-"diese einfach ebenfalls in der Liste.\n"
+"Sie müssen nun entscheiden, wo auf Ihrer Festplatte Ihr Mandriva Linux\n"
+"System installiert werden soll. Sofern alles leer ist bzw. ein\n"
+"Betriebssystem alles belegt, muss die Festplatte neu partitioniert werden.\n"
+"Prinzipiell besteht das Partitionieren der Festplatte darin, den\n"
+"Plattenplatz so aufzuteilen, dass Ihr Mandriva Linux darauf installiert\n"
+"werden kann.\n"
"\n"
-"Es sei angemerkt, dass nicht alle Partitionen neu formatiert werden müssen.\n"
-"Sie sollten normalerweise nur die Partitionen neu formatieren, die\n"
-"Systemdateien, jedoch keine Privatdaten enthalten (etwa „/“, „/usr“ oder\n"
-"„/var“). Partitionen wie etwa „/home“ sollten Sie normalerweise nicht neu\n"
-"formatieren.\n"
+"Da dieser Schritt normalerweise irreversibel ist und auch zu Datenverlusten\n"
+"führen kann, haben manche unerfahrenen Benutzer Hemmungen, diesen Schritt\n"
+"auszuführen. Glücklicherweise enthält DrakX einen Assistenten, der den\n"
+"Prozess sehr vereinfacht. Lesen Sie dennoch vor Beginn im Handbuch die\n"
+"entsprechenden Passagen und lassen Sie sich Zeit mit der Entscheidung.\n"
"\n"
-"Seien Sie sorgfältig bei der Auswahl der Partitionen. Nach dem Formatieren\n"
-"sind alle zuvor darauf existierenden Daten unwiederbringlich verloren.\n"
+"Abhängig vom aktuellen Zustand Ihrer Festplatte haben Sie verschiedene\n"
+"Alternativen:\n"
"\n"
-"Wenn Sie alle Einstellungen vorgenommen haben, betätigen Sie die\n"
-"Schaltfläche „%s“, um mit dem Formatieren der Partitionen zu beginnen.\n"
+" * „%s“: Dies führt einfach dazu, dass Ihre leere(n) Festplatte(n)\n"
+"automatisch partitioniert werden; Sie müssen sich also um nichts weiter\n"
+"kümmern.\n"
"\n"
-"Betätigen Sie „%s“, wenn Sie eine andere Partition für Ihr neues\n"
-"Mandrivalinux vorgesehen haben.\n"
+" * „%s“: Der Assistent hat eine oder mehrere existierende Linux-Partitionen\n"
+"auf Ihrer Platte gefunden. Wählen Sie diese Schaltfläche, falls Sie sie\n"
+"behalten wollen. Sie werden dann gebeten, die Einhängpunkte der Partitionen\n"
+"anzugeben. Als Vorgabe erhalten Sie die Einhängpunkte der gefundenen\n"
+"Distribution, normalerweise ist es nicht nötig diese zu ändern.\n"
"\n"
-"Betätigen Sie die Schaltfläche „%s“, falls Sie Partitionen auf defekte\n"
-"Blöcke untersuchen wollen."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
+" * „%s“: Falls der gesamte Plattenplatz aktuell für Microsoft Windows™\n"
+"verschwendet ist, müssen Sie für GNU/Linux Platz schaffen. Um dies zu\n"
+"erreichen, können Sie entweder Ihre Microsoft Windows™ Partition(en)\n"
+"samt Daten löschen (siehe „Komplette Platte löschen“) oder Ihre Microsoft\n"
+"Windows NTFS oder FAT Partition verkleinern. Letzteres geht ohne\n"
+"Datenverlust, vorausgesetzt Sie haben ihre Windows Partition(en) vorher\n"
+"defragmentiert. Dennoch sollten Sie vor diesem Schritt eine Sicherungskopie\n"
+"Ihrer Daten auf einem anderem Medium als der zu verändernden Festplatte\n"
+"vornehmen. Sie sollten diese Variante wählen, falls Sie beide\n"
+"Betriebssysteme (Microsoft Windows und Mandriva Linux) nebeneinander nutzen\n"
+"wollen.\n"
"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard don't match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
+" Bevor Sie sich für diese Variante entscheiden, sei hier noch einmal\n"
+"betont, dass das bedeutet, Sie haben weniger Platz für Microsoft Windows\n"
+"als momentan.\n"
"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+" * „%s“: Falls Sie alle Daten Ihrer Platte verlieren, und sie durch Ihr\n"
+"neues Mandriva Linux System ersetzen wollen, wählen Sie diese Schaltfläche.\n"
+"Beachten Sie, dass dieser Schritt nicht rückgängig gemacht werden kann.\n"
"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-"Entsprechend der ausgewählten Sprache ()versucht DrakX das für Sie passende\n"
-"Tastaturlayout aus.\n"
+" !! Wenn Sie diese Variante wählen, werden alle Ihre Daten auf der Platte\n"
+"gelöscht! !!\n"
"\n"
-"Möglicherweise haben Sie jedoch eine Tastatur, die nicht dieser Einstellung\n"
-"entspricht: wenn Sie beispielsweise in der Schweiz eine deutsche Tastatur\n"
-"verwenden wollen oder wenn Sie in Québec (dem französischsprachigen Teil\n"
-"Kanadas) eine französischsprachige Tastatur besitzen. Wählen Sie einfach\n"
-"ein passendes Layout aus der Liste.\n"
+" * „%s“: Diese Option erscheint, wenn der gesamte Platz von Microsoft\n"
+"Windows eingenommen wird. Bei der Auswahl der Option wird einfach der\n"
+"gesamte Inhalt der Platte gelöscht und neu partitioniert.\n"
"\n"
-"Sollten Sie eine andere als die zur gewählten Sprache gehörende Tastatur\n"
-"verwenden wollen, wählen Sie die Schaltfläche „%s“. Sie erhalten dann eine\n"
-"Liste aller unterstützten Tastaturen.\n"
+" !! Wenn Sie diese Variante wählen, werden alle Ihre Daten auf der Platte\n"
+"gelöscht! !!\n"
"\n"
-"Sollten Sie sich für ein Tastaturlayout einer nicht lateinischen Sprache\n"
-"entschieden haben, werden Sie im nächsten Schritt gefragt, mit welcher\n"
-"Tastenkombination Sie zwischen dem von Ihnen gewählten und dem lateinischen\n"
-"Layout umschalten wollen."
+" * „%s“: Wenn Sie Ihre Festplatte selbst von Hand partitionieren wollen,\n"
+"dann können Sie diese Option wählen. Seien Sie bitte sehr sorgfältig, wenn\n"
+"Sie diese Lösung wählen, da Sie zwar alle möglichen Einstellungen\n"
+"vornehmen, aber gleichzeitig auch sehr leicht Daten verlieren können. Diese\n"
+"Option ist nur geeignet, wenn Sie wissen, was Sie tun. Um zu erfahren, wie\n"
+"Sie DiskDrake verwenden können, lesen Sie bitte das Kapitel „Ihre\n"
+"Partitionen verwalten“ im „Starter Handbuch“."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Verwende existierende Partition(en)"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Komplette Platte löschen"
+
+#: ../help.pm:380
+#, c-format
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Don't forget\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
"to remove the installation media (CD-ROM or floppy). The first thing you\n"
"should see after your computer has finished doing its hardware tests is the\n"
"boot-loader menu, giving you the choice of which operating system to start.\n"
@@ -1666,11 +929,138 @@ msgstr ""
"„fdformat /dev/fd0“, gefolgt von „mkfs.vfat /dev/fd0“ können Sie unter\n"
"GNU/Linux eine solche erstellen)."
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Erstellen einer Autoinstallations-Diskette"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Sie erhalten hier die Möglichkeit bereits existierende Partitionen neu zu\n"
+"formatieren, um die darauf vorhandenen Daten zu löschen. Markieren Sie\n"
+"diese einfach ebenfalls in der Liste.\n"
+"\n"
+"Es sei angemerkt, dass nicht alle Partitionen neu formatiert werden müssen.\n"
+"Sie sollten normalerweise nur die Partitionen neu formatieren, die\n"
+"Systemdateien, jedoch keine Privatdaten enthalten (etwa „/“, „/usr“ oder\n"
+"„/var“). Partitionen wie etwa „/home“ sollten Sie normalerweise nicht neu\n"
+"formatieren.\n"
+"\n"
+"Seien Sie sorgfältig bei der Auswahl der Partitionen. Nach dem Formatieren\n"
+"sind alle zuvor darauf existierenden Daten unwiederbringlich verloren.\n"
+"\n"
+"Wenn Sie alle Einstellungen vorgenommen haben, betätigen Sie die\n"
+"Schaltfläche „%s“, um mit dem Formatieren der Partitionen zu beginnen.\n"
+"\n"
+"Betätigen Sie „%s“, wenn Sie eine andere Partition für Ihr neues\n"
+"Mandriva Linux vorgesehen haben.\n"
+"\n"
+"Betätigen Sie die Schaltfläche „%s“, falls Sie Partitionen auf defekte\n"
+"Blöcke untersuchen wollen."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Es ist sehr wahrscheinlich, dass zum Zeitpunkt Ihrer Mandriva Linux\n"
+"Installation bereits einige Pakete aktualisiert wurden, etwa da noch Fehler\n"
+"entdeckt und beseitigt wurden oder da in Paketen Sicherheitslücken entdeckt\n"
+"wurden, für die bereits Lösungen existieren. Um von diesen aktualisierten\n"
+"Paketen Gebrauch zu machen, wird Ihnen nun angeboten, diese aus dem\n"
+"Internet nachzuladen. Betätigen Sie die Schaltfläche „%s“, wenn Sie einen\n"
+"Internetzugang haben, um die Pakete zu installieren, andernfalls betätigen\n"
+"Sie die Schaltfläche „%s“. Sie können diese Pakete natürlich auch jederzeit\n"
+"nach der Installation noch installieren.\n"
+"\n"
+"Betätigen der Schaltfläche „%s“ zeigt Ihnen eine Liste von Servern, von\n"
+"denen Sie die Aktualisierungen herunterladen können. Wählen Sie einen in\n"
+"Ihrer Nähe. Sie erhalten dann einen Paketauswahldialog: Kontrollieren Sie\n"
+"die Auswahl und bestätigen Sie diese durch Betätigen von „%s“. Die Pakete\n"
+"werden nun angefordert und installiert. Sollten Sie das nicht wünschen,\n"
+"betätigen Sie einfach die Schaltfläche „%s“."
+
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Nun ist es an der Zeit, mittels DrakX die gewünschte Sicherheitsebene für\n"
+"Ihr System festzulegen. Als Faustregel sollte hier dienen: Je zugänglicher\n"
+"die Maschine ist und je kritischer die auf ihr gesicherten Daten sind,\n"
+"desto höher sollte die Sicherheitsebene sein. Andererseits geht die\n"
+"gewonnene Sicherheit zulasten der Benutzerfreundlichkeit und Einfachheit.\n"
+"\n"
+"Sollten Sie sich an dieser Stelle nicht sicher sein, so behalten Sie die\n"
+"Standardeinstellung bei. Sie können die Ebene später noch mittels draksec\n"
+"im Mandriva Linux Control Center anpassen.\n"
+"\n"
+"Das Feld „%s“ dient dazu, dem System mitzuteilen, wer für die Sicherheit\n"
+"dieses Rechners verantwortlich ist. An dieses Kennzeichen/diese E-Mail\n"
+"Adresse werden sicherheitsrelevante Informationen per E-Mail versandt."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Sicherheitsadministrator:"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:464
+#, c-format
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrivalinux system. If partitions have already been\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
"defined, either from a previous installation of GNU/Linux or by another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
@@ -1696,7 +1086,7 @@ msgid ""
"floppy disk.\n"
"\n"
" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it doesn't always\n"
+"using this option. Please be careful and remember that it does not always\n"
"work.\n"
"\n"
" * \"%s\": discards all changes and reloads the partition table that was\n"
@@ -1740,11 +1130,11 @@ msgid ""
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"Sie müssen nun entscheiden, auf welche(n) Partition(en) Ihr neues\n"
-"Mandrivalinux System installiert werden soll. Falls bereits Partitionen\n"
-"existieren (etwa von einer früheren Installation von GNU/Linux oder durch\n"
-"das Erzeugen mit einem anderen Partitionierungswerkzeug), können Sie diese\n"
-"verwenden. Anderenfalls müssen Sie Partitionen definieren.\n"
+"Sie müssen nun entscheiden, auf welche(n) Partition(en) Ihr neues Mandriva\n"
+"Linux System installiert werden soll. Falls bereits Partitionen existieren\n"
+"(etwa von einer früheren Installation von GNU/Linux oder durch das Erzeugen\n"
+"mit einem anderen Partitionierungswerkzeug), können Sie diese verwenden.\n"
+"Anderenfalls müssen Sie Partitionen definieren.\n"
"\n"
"Um Partitionen zu erzeugen müssen Sie erst eine Festplatte wählen. Sie\n"
"können die Platte wählen in dem Sie „hda“ für die erste IDE-Platte wählen,\n"
@@ -1780,7 +1170,7 @@ msgstr ""
"\n"
" * „%s“: Falls Sie keine Ahnung haben wie Sie die Festplatte partitionieren\n"
"sollen, wählen Sie diese Schaltfläche. Sie überlassen damit die gesamte\n"
-"Arbeit unserem Assistenten, der mittels „Abra Kadabra“(TM) Ihre Platte\n"
+"Arbeit unserem Assistenten, der mittels „Abra Kadabra“™ Ihre Platte\n"
"partitioniert.\n"
"\n"
" * „%s“: Mit dieser Schaltfläche können Sie alle Einstellungen rückgängig\n"
@@ -1817,3 +1207,810 @@ msgstr ""
"einen Rettungskern samt RamDisk abzulegen, um in Notfällen starten zu\n"
"können."
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Wechselmedien automatisch einhängen"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "In den Normal-Modus wechseln"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Es wurde mehr als eine Windows-Partition gefunden. Wählen Sie bitte, welche\n"
+"Sie verkleinern wollen, um Platz für Ihr neues Mandriva Linux zu schaffen.\n"
+"\n"
+"Die Partitionen werden folgendermaßen aufgelistet: „Linux-Name“,\n"
+"„Windows-Name“, „Kapazität“.\n"
+"\n"
+"„Linux-Name“ hat folgende Struktur: „Festplattentyp“, „Festplattennummer“,\n"
+"„Partitionsnummer“ (etwa „hda1“).\n"
+"\n"
+"„Festplattentyp“ ist „hd“, falls Ihre Platte eine IDE/ATAPI-Platte ist, und\n"
+"„sd“, wenn es sich um eine SCSI-Platte handelt.\n"
+"\n"
+"„Festplattennummer“ ist immer der Buchstabe hinter dem Festplattentyp. Bei\n"
+"IDE-Platten bedeutet:\n"
+"\n"
+" * „a“ ist „Master-Platte am primären IDE-Controller“;\n"
+"\n"
+" * „b“ ist „Slave-Platte am primären IDE-Controller“;\n"
+"\n"
+" * „c“ ist „Master-Platte am sekundären IDE-Controller“;\n"
+"\n"
+" * „d“ ist „Slave-Platte am sekundären IDE-Controller“;\n"
+"\n"
+"Bei SCSI-Platten steht „a“ für „niedrigste SCSI-ID“, „b“ für\n"
+"„zweitniedrigste SCSI-ID“, etc.\n"
+"\n"
+"„Windows-Name“ ist der Buchstabe, den die Partition (vermutlich) unter\n"
+"Windows erhalten würde (die erste Partition der ersten Platte heißt „C:“)."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"„%s“: Kontrollieren Sie, ob die Auswahl des Staates, in dem Sie sich\n"
+"befinden korrekt ist. Falls nicht, betätigen Sie bitte die Schaltfläche\n"
+"„%s“ und wählen Sie den richtigen. Ist Ihr Staat nicht in der Liste, können\n"
+"Sie über die Schaltfläche „%s“ eine vollständigere Liste erzwingen."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Dieser Schritt wird nur aufgerufen, wenn mindestens eine GNU/Linux\n"
+"Partition auf Ihren Festplatten gefunden wird.\n"
+"\n"
+"DrakX fragt Sie nun nach der gewünschten Installationsart. Sie haben die\n"
+"Wahl zwischen einer Aktualisierung einer bereits vorhandenen\n"
+"Mandriva Linux-Version oder einer kompletten Neuinstallation:\n"
+"\n"
+" * „%s“: Entfernt komplett ältere Versionen von Mandriva Linux, die noch\n"
+"installiert sind - um genau zu sein, können Sie je nach aktuellem Inhalt\n"
+"Ihrer Platte auch einige ältere Linux- oder anderweitige Partitionen\n"
+"unangetastet behalten. Diese Installationsart ist gut, wenn Sie die\n"
+"Partitionseinteilung auf Ihrer Festplatte sowieso ändern oder das benutzte\n"
+"Dateisystem austauschen wollen\n"
+"\n"
+" * „%s“: Mit dieser Variante können Sie eine existierende Mandriva Linux\n"
+"Version aktualisieren. Die Partitionstabellen sowie die persönlichen\n"
+"Verzeichnisse der Anwender bleiben erhalten. Alle anderen\n"
+"Installationsschritte werden wie bei einer Installation ausgeführt.\n"
+"\n"
+"Aktualisierungen von Mandriva Linux „8.1“ oder neueren Systemen sollten\n"
+"problemlos funktionieren. Ältere Versionen von Mandriva Linux sollten Sie\n"
+"nicht zu aktualisieren versuchen."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Entsprechend der ausgewählten Sprache ()versucht DrakX das für Sie passende\n"
+"Tastaturlayout aus.\n"
+"\n"
+"Möglicherweise haben Sie jedoch eine Tastatur, die nicht dieser Einstellung\n"
+"entspricht: wenn Sie beispielsweise in der Schweiz eine deutsche Tastatur\n"
+"verwenden wollen oder wenn Sie in Québec (dem französischsprachigen Teil\n"
+"Kanadas) eine französischsprachige Tastatur besitzen. Wählen Sie einfach\n"
+"ein passendes Layout aus der Liste.\n"
+"\n"
+"Sollten Sie eine andere als die zur gewählten Sprache gehörende Tastatur\n"
+"verwenden wollen, wählen Sie die Schaltfläche „%s“. Sie erhalten dann eine\n"
+"Liste aller unterstützten Tastaturen.\n"
+"\n"
+"Sollten Sie sich für ein Tastaturlayout einer nicht lateinischen Sprache\n"
+"entschieden haben, werden Sie im nächsten Schritt gefragt, mit welcher\n"
+"Tastenkombination Sie zwischen dem von Ihnen gewählten und dem lateinischen\n"
+"Layout umschalten wollen."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Als ersten Schritt wählen Sie bitte die gewünschte Sprache.\n"
+"\n"
+"Wählen Sie Ihre bevorzugte Sprache für den Installationsvorgang und\n"
+"Systemlaufzeit. Wählen Sie zuerst die Region, in der Sie sich befinden,\n"
+"anschließend die Sprache, die Sie sprechen.\n"
+"\n"
+"Durch Betätigen der Schaltfläche „%s“ erhalten Sie die Möglichkeit, weitere\n"
+"Sprachen auf Ihrem Rechner zu installieren, um diese später verwenden zu\n"
+"können. Wollen Sie etwa Spaniern muttersprachlichen Zugang zu Ihrem System\n"
+"erlauben, wählen Sie Deutsch als Hauptsprache in der Liste und im\n"
+"Fortgeschrittenen-Bereich „%s“.\n"
+"\n"
+"Zur UTF-8 (Unicode) Unterstützung: Unicode ist ein Zeichenkodierung, die\n"
+"die existierenden Kodierungen ablösen soll und die Zeichen aller\n"
+"existierender Sprachen beinhalten. Komplette Unterstützung in GNU/Linux ist\n"
+"leider immer noch nicht gegeben. Daher verwendet Mandriva Linux diese\n"
+"Kodierung nur auf Wunsch des Anwenders:\n"
+"\n"
+" * Falls Sie eine Sprache nutzen, die eine gut unterstütztes Kodierung\n"
+"verwendet (Sprachen mit Lateinischen Zeichen, Russisch, Griechisch,\n"
+"Japanisch, Chinesisch, Koreanisch, Thailändisch), wird standardmäßig das\n"
+"klassische Kodierung beibehalten;\n"
+"\n"
+" * Alle anderen Sprachen verwenden standardmäßig Unicode;\n"
+"\n"
+" * Fall Sie zwei oder mehr Sprachen verwenden wollen, die unterschiedliche\n"
+"klassische Kodierungen verwenden, wird ebenfalls Unicode verwendet;\n"
+"\n"
+" * Schlussendlich kann Unicode vom Anwender auch für Sprachen mit\n"
+"klassischer Kodierung ausgewählt werden, indem er den Punkt „%s“ markiert.\n"
+"\n"
+"Sie sind nicht auf eine weitere Sprache begrenzt. Sie können so viele\n"
+"auswählen, wie Sie wollen, ja sogar alle, indem Sie die Schaltfläche „%s“\n"
+"verwenden. Das Auswählen einer Sprache beeinflusst die installierten\n"
+"Übersetzungen der Programme, Schriften, Rechtschreibkorrekturen, etc.\n"
+"\n"
+"Um die Spracheinstellungen des ganzen Systems zwischen verschiedenen\n"
+"Sprachen umzuschalten, starten Sie einfach „localedrake“ unter dem\n"
+"privilegierten Kennzeichen „root“. Wollen Sie die Einstellungen nur für ein\n"
+"Kennzeichen ändern starten Sie denselben Befehl mit eben diesem\n"
+"Kennzeichen."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Spanisch"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"DrakX versucht normalerweise die Anzahl der Tasten Ihrer Maus zu erkennen.\n"
+"Sollte das nicht möglich sein, so behandelt es Ihre Maus als\n"
+"Zwei-Tasten-Maus und emuliert die mittlere Taste. Die mittlere Taste kann\n"
+"dann durch gleichzeitiges Drücken der rechten und Linken Taste simuliert\n"
+"werden. Üblicherweise erkennt DrakX korrekt, ob es sich um eine serielle,\n"
+"eine PS/2- oder um eine USB-Maus handelt.\n"
+"\n"
+"Falls Sie eine 3-Button-Maus ohne Rad haben können Sie eine Maus „%s“\n"
+"auswählen. DrakX wird dann Ihre Maus so einrichten, dass Sie das Rad in der\n"
+"folgenden Weise simulieren können: Sie drücken die mittlere Maustaste und\n"
+"bewegen Ihren Mauszeiger auf und ab.\n"
+"\n"
+"Sollte dies nicht Ihren Vorstellungen entsprechen: Wählen Sie einfach Ihren\n"
+"Maustyp aus der Liste, die Ihnen angezeigt wird.\n"
+"\n"
+"Einen generischen Maustyp, der mit fast allen Maustypen funktioniert,\n"
+"können Sie über „%s“ einstellen.\n"
+"\n"
+"Sollten Sie einen anderen als den vorgeschlagenen Maustyp gewählt haben, so\n"
+"wird Ihnen ein Testfenster angezeigt. Verwenden Sie die Knöpfe und\n"
+"gegebenenfalls das Mausrad, um sicherzustellen, dass die festgelegten\n"
+"Einstellungen funktionieren. Falls nicht, drücken Sie die Leertaste oder\n"
+"die Eingabetaste, um zurück zum Auswahlmenü zu gelangen und suchen Sie\n"
+"einen anderen Treiber aus.\n"
+"\n"
+"Es kommt vor, dass Mäuse mit Rädern nicht korrekt erkannt werden. Wählen\n"
+"Sie in diesem Fall die richtige Maus aus der vorgegebenen Liste. Stellen\n"
+"Sie sicher, dass Sie auch den Anschluss richtig angegeben haben. Nach\n"
+"betätigen der Schaltfläche „%s“, wird Ihnen ein Bild der gewählten Maus\n"
+"gezeigt. Bewegen Sie Räder und Tasten, um sicherzustellen, dass die Maus\n"
+"richtig erkannt wurde."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "mit Mausrad Emulation"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Universal | Alle PS/2 & USB-Mäuse"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Wählen Sie bitte den richtigen Anschluss. So ist etwa der unter Windows\n"
+"„COM1“ genannte Anschluss in GNU/Linux unter „ttyS0“ erreichbar."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Dies ist der wichtigste Punkt in der Absicherung Ihres neuen\n"
+"GNU/Linux-Systems: Sie müssen das Passwort für „root“ eingeben. „root“ ist\n"
+"der Systemadministrator. Er ist der einzige der berechtigt ist, neue\n"
+"Software zu installieren, Systemdateien zu ändern oder neue\n"
+"Benutzer anzulegen. Kurz gesagt: „root“ darf alles! Daher müssen\n"
+"Sie auch ein Passwort auswählen, was nicht leicht zu erraten ist; DrakX\n"
+"teilt Ihnen mit, wenn das Passwort zu einfach ist. Sie sehen, dass es auch\n"
+"möglich ist, kein Passwort zu vergeben. Wir raten Ihnen jedoch dringend\n"
+"davon ab! GNU/Linux ist genauso anfällig für Fehler wie jedes andere \n"
+"Betriebssystem. »root« hat keine Beschränkungen. Er könnte beispielsweise\n"
+"unbeabsichtigterweise alle Daten auf allen Partitionen löschen. Also sollte\n"
+"es schwierig gemacht werden, „root“ zu werden!\n"
+"\n"
+"Das Passwort sollte eine Mischung aus alphanumerischen Zeichen sein und\n"
+"mindestens acht Zeichen lang. Es sollte niemals irgendwo aufgeschrieben\n"
+"werden.\n"
+"\n"
+"Machen Sie das Passwort aber nicht zu lang oder zu kompliziert: Sie sollten\n"
+"es sich ohne großen Aufwand merken können.\n"
+"\n"
+"Bei der Eingabe des Passwortes wird nichts angezeigt. Um ein Verschreiben\n"
+"bei dieser „Blindeingabe“ zu vermeiden müssen Sie das Passwort zweimal\n"
+"eingeben - ein Tippfehler beim ersten Versuch könnte sonst zu einem Problem\n"
+"werden, da Sie anschließend das „falsche“ Passwort bei der Verbindung mit\n"
+"dem System eingeben müssten.\n"
+"\n"
+"Wenn Sie wollen, dass der Zugang zu diesem Rechner über einen\n"
+"Authentifizierungsserver verwaltet wird, betätigen Sie die Schaltfläche\n"
+"„%s“.\n"
+"\n"
+"Falls in Ihrem Netzwerk LDAP, NIS oder PDC zur Authentifizierung verwendet\n"
+"wird, wählen Sie bitte den entsprechenden Menüpunkt für „%s“. Falls Sie "
+"nicht\n"
+"wissen, welches Protokoll Sie verwenden sollen, fragen Sie Ihren\n"
+"Netzwerkadministrator.\n"
+"\n"
+"Wenn Sie Probleme haben, sich Passwörter zu merken, oder Ihr Computer nie\n"
+"mit dem Internet verbunden wird und Sie allen Benutzern Ihres Computers\n"
+"absolut vertrauen, können Sie die Option „%s“ wählen."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "Authentifizierung"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Ein Betriebssystemstarter ist ein kleines Programm, das vom Computer\n"
+"während des Startvorganges aufgerufen wird. Es ist für den Start des\n"
+"gesamten Systems verantwortlich. Im Normalfall läuft die Installation des\n"
+"Betriebssystemstarters vollkommen automatisch ab. DrakX analysiert den\n"
+"Bootsektor und ergreift dann die passenden Maßnahmen:\n"
+"\n"
+" * Findet DrakX einen Windows-Bootsektor, ersetzt es ihn durch einen GRUB-\n"
+"oder LILO-Bootsektor. Sie erhalten dadurch die Möglichkeit, beim\n"
+"Systemstart zwischen Windows (bzw. anderen Betriebssystemen, sofern\n"
+"vorhanden) und GNU/Linux auszuwählen;\n"
+"\n"
+" * Findet DrakX einen Linux-Bootsektor vor, ersetzt es ihn durch einen\n"
+"neuen;\n"
+"\n"
+"Falls DrakX nicht weiß, wo der Betriebssystemstarter installiert werden\n"
+"soll, wird es Sie um Ihre Meinung bitten. Normalerweise sollte die\n"
+"Installation auf dem „%s“ erfolgen. Durch Auswahl von „%s“ wird überhaupt\n"
+"kein Starter installiert. Verwenden Sie diese Möglichkeit nur, wenn Sie\n"
+"genau wissen was Sie tun."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Hier können Sie das Drucksystem für Ihren Rechner wählen. Andere\n"
+"Betriebssysteme bieten Ihnen nur eines, bei Mandriva Linux können Sie\n"
+"zwischen zwei verschiedenen wählen. jedes dieser Systeme ist für eine\n"
+"bestimmte Konfiguration des Systems am besten geeignet.\n"
+"\n"
+" * „%s“ -- Es steht für „print, do not queue“ (engl. für „Drucken ohne\n"
+"Warteschlange“). Falls Sie einen Drucker haben, der direkt an Ihrem Rechner\n"
+"hängt und Sie keine Netzwerkdrucker verwenden wollen, ist dies das\n"
+"Drucksystem Ihrer Wahl. „%s“ kann zwar auch mit Netzwerkdruckern umgehen, "
+"ist\n"
+"dabei aber extrem langsam. Wählen Sie „pdq“, wenn Sie ein GNU/Linux Neuling\n"
+"sind.\n"
+"\n"
+" * „%s“ - Mit dem „Common Unix Printing System“ (engl. für „Allgemeines\n"
+"Unix-Drucksystem“) können Sie ebensogut auf Ihrem direkt angeschlossenen\n"
+"Drucker drucken, wie auf einem Drucker, der an einem Server auf der anderen\n"
+"Seite der Welt hängt. Es ist einfach zu bedienen und kann sowohl als Server\n"
+"als auch als Klient für das alte „lpd“-Drucksystem verwendet werden - Es\n"
+"ist somit rückwärtskompatibel. Es ist sehr mächtig, in seiner\n"
+"Grundeinstellung verhält es sich jedoch genau wie „pdq“. Wenn Sie einen\n"
+"„lpd“ Server benötigen, müssen Sie einfach nur den „cups-lpd“ Dämon\n"
+"starten. „%s“ bietet grafische Konfigurations- und Druckmenüs.\n"
+"\n"
+"Sie können diese Wahl später immer wieder ändern, indem Sie PrinterDrake\n"
+"aus dem Mandriva Linux Control Center starten und dort die Schaltfläche „%"
+"s“\n"
+"betätigen."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Expertenmodus"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX versucht nun alle IDE Festplatten Ihres Systems zu finden. Unter\n"
+"Anderem sucht DrakX auch nach PCI-SCSI-Karten, die es kennt, um sie\n"
+"automatisch mit dem richtigen Treiber einzubinden.\n"
+"\n"
+"Falls DrakX nicht weiß, welcher Treiber funktioniert, werden Sie gebeten,\n"
+"DrakX zu helfen.\n"
+"\n"
+"Sollten Sie die PCI-SCSI-Karte selbst angegeben haben, wird DrakX Sie\n"
+"fragen, ob Sie weitere Parameter angeben wollen. Sie sollten DrakX\n"
+"erlauben, die kartenspezifischen Informationen selbst zu finden. In den\n"
+"meisten Fällen wird DrakX diesen Schritt ohne Ihre Hilfe bewerkstelligen.\n"
+"\n"
+"Falls DrakX nicht in der Lage ist, die Parameter selbst zu finden, die dem\n"
+"Modul zu übergeben sind, müssen Sie diese angeben.\n"
+"\n"
+"Sie können die benötigten Informationen etwa unter Windows (sofern das auf\n"
+"Ihren Rechner installiert ist) finden, aus den Handbüchern, die sie mit dem\n"
+"Adapter erhalten haben oder von den Web-Seiten des Hardware-Anbieters\n"
+"(sofern Sie einen WWW-Zugang haben)."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"„%s“: Falls eine Soundkarte in Ihrem Rechner gefunden wurde, wird sie hier\n"
+"angezeigt. Sollte die von DrakX getroffene Auswahl nicht korrekt sein,\n"
+"betätigen Sie einfach die Schaltfläche, um sie zu korrigieren."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Nun bekommen Sie eine Zusammenfassung verschiedener Informationen Ihres\n"
+"Systems. Je nach vorhandener Hardware sehen Sie hier (oder eben nicht) die\n"
+"folgende Einträge. Jeder Eintrag besteht aus einem konfigurierbaren Gerät\n"
+"gefolgt vom dessen aktuellen Zustand. Durch Betätigen der Schaltfläche „%s“\n"
+"können Sie diesen ändern.\n"
+"\n"
+" * „%s“: Kontrollieren Sie die aktuelle Tastaturvorgabe und wählen Sie die\n"
+"Schaltfläche, falls Sie die Vorgabe ändern wollen.\n"
+"\n"
+" * „%s“: Kontrollieren Sie, ob die Auswahl des Staates, in dem Sie sich\n"
+"befinden korrekt ist. Falls nicht, betätigen Sie bitte die Schaltfläche\n"
+"„%s“ und wählen Sie den richtigen. Ist Ihr Staat nicht in der Liste, können\n"
+"Sie über die Schaltfläche „%s“ eine vollständigere Liste erzwingen.\n"
+"\n"
+" * „%s“: DrakX versucht die Zeitzone anhand des gewählten Staates zu\n"
+"setzen. Sollte diese Auswahl nicht korrekt sein können Sie durch Betätige\n"
+"der Schaltfläche „%s“ Ihre lokale Zeitzone setzen.\n"
+"\n"
+" * „%s“: Kontrollieren Sie die konfigurierte Maus und betätigen Sie, falls\n"
+"notwendig, die Schaltfläche.\n"
+"\n"
+" * „%s“: Durch Anwahl der Schaltfläche „%s“ startet den Druckerassistenten.\n"
+"Weitere Informationen zu diesem Assistenten erhalten Sie im Drucker-Kapitel\n"
+"des „Starter Handbuch“. Das dort vorgestellte Programm entspricht dem\n"
+"während der Installation angebotenen.\n"
+"\n"
+" * „%s“: Falls eine Soundkarte in Ihrem Rechner gefunden wurde, wird sie\n"
+"hier angezeigt. Sollte die von DrakX getroffene Auswahl nicht korrekt sein,\n"
+"betätigen Sie einfach die Schaltfläche, um sie zu korrigieren.\n"
+"\n"
+" * „%s“: Falls eine TV-Karte in Ihrem Rechner gefunden wurde, wird sie hier\n"
+"angezeigt. Falls Sie eine TV-Karte besitzen, die hier nicht richtig erkannt\n"
+"wurde, können Sie versuchen, diese manuell einzurichten. Betätigen Sie\n"
+"einfach die Schaltfläche „%s“.\n"
+"\n"
+" * „%s“: Falls eine ISDN Karte in Ihrem Rechner gefunden wurde, wird sie\n"
+"hier angezeigt. Durch Anwahl der Schaltfläche „%s“ können Sie die Parameter\n"
+"ändern.\n"
+"\n"
+" * „%s“: DrakX richtet Ihre Grafikumgebung normalerweise in der Auflösung\n"
+"„800×600“ bzw. „1024×768“ ein. Sollte Ihnen das nicht zusagen, können Sie\n"
+"es durch betätigen der Schaltfläche „%s“ ändern.\n"
+"\n"
+" * „%s“: Falls Sie Ihren Internetzugang oder Ihr lokales Netzwerk nun\n"
+"einrichten wollen, können Sie das hier tun. Lesen Sie sich dazu die\n"
+"gedruckte Dokumentation durch oder benutzen Sie das Mandriva Linux Control\n"
+"Center nachdem die Installation beendet ist.\n"
+"\n"
+" * „%s“: Hier können Sie HTTP- und FTP-Proxyadressen eintragen falls Ihre\n"
+"Maschine die Verbindung über einen Proxyserver abwickelt.\n"
+"\n"
+" * „%s“: Dieser Eintrag ermöglicht es Ihnen, die Sicherheitsebene Ihres\n"
+"Systems zu ändern, die Sie in einem früheren Installationsschritt ()\n"
+"gewählt haben.\n"
+"\n"
+" * „%s“: Falls Sie Ihren Rechner mit dem Internet verbinden wollen, ist es\n"
+"sinnvoll sich vor ungebetenen Eindringlingen durch Einrichten einer\n"
+"Firewall zu schützen. Weitere Informationen erhalten Sie im „Starter\n"
+"Handbuch“.\n"
+"\n"
+" * „%s“: Falls Sie die Konfiguration Ihres Betriebssystemstarters\n"
+"(„Bootloader“) ändern wollen, wählen Sie diese Schaltfläche. Es sei\n"
+"angemerkt, dass dieser Punkt sich an fortgeschrittenere Nutzer richtet.\n"
+"Hilfe finden Sie in der gedruckten Dokumentation oder im integrierten\n"
+"Hilfeteil des Mandriva Linux Control Center.\n"
+"\n"
+" * „%s“: Sie können hier die Dienste wählen, die ab dem Start von\n"
+"Mandriva Linux zur Verfügung gestellt werden sollen. Wollen Sie den Rechner\n"
+"als Server verwenden, sollten Sie unbedingt einen Blick auf diese Liste\n"
+"werfen."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN-Karte"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Grafikumgebung"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Bitte wählen Sie die Festplatte, die Sie löschen wollen, um Ihr neues\n"
+"Mandriva Linux zu installieren. Bedenken Sie dabei, dass alle Daten auf\n"
+"dieser Platte nach diesem Schritt unwiederbringlich verloren sind!"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Betätigen Sie die Schaltfläche „%s“, wenn Sie alle Partitionen und die\n"
+"darauf befindlichen Daten löschen wollen. Bedenken Sie, dass Sie nach\n"
+"betätigen der Schaltfläche „%s“ auch an die möglicherweise noch vorhandenen\n"
+"Windows-Daten nicht mehr gelangen werden!\n"
+"\n"
+"Wählen Sie „%s“, um die Aktion ohne Datenverlust abzubrechen."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Weiter ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Zurück"
+
diff --git a/perl-install/install/help/po/el.po b/perl-install/install/help/po/el.po
new file mode 100644
index 000000000..7269f5adf
--- /dev/null
+++ b/perl-install/install/help/po/el.po
@@ -0,0 +1,1791 @@
+# translation of DrakX-el.po to Greek
+# Greek translation for drakfloppy.
+# Copyright (C) 2001,2003 Free Software Foundation, Inc.
+# Thanos Kyritsis <djart@hellug.gr>, 2001.
+# Νίκος Νύκταρης (Nick Niktaris) <niktarin@yahoo.com>, 2003
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-el\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2004-09-15 13:28+0200\n"
+"Last-Translator: Νίκος Νύκταρης (Nick Niktaris) <niktarin@yahoo.com>\n"
+"Language-Team: Greek <nls@tux.hellug.gr>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.0.1\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../help.pm:14
+#, fuzzy, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"\n"
+" Linux\n"
+" Αποδοχή\n"
+"."
+
+#: ../help.pm:20
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"Linux χρήστης χρήστης\n"
+"\n"
+" χρήστης\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" χρήστης\n"
+"\n"
+"\n"
+"\n"
+" χρήστης\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Χρήστης\n"
+" χρήστης\n"
+" εξ' ορισμού\n"
+" χρήστης\n"
+"\n"
+" απλό\n"
+"\n"
+"\n"
+" Αποδοχή χρήστης Προσθήκη χρήστης\n"
+"\n"
+" Επόμενο\n"
+"\n"
+" Για Προχωρημένους εξ' ορισμού\n"
+" χρήστης εξ' ορισμού\n"
+"\n"
+" Πότε χρήστης\n"
+"\n"
+"\n"
+" χρήστης Επόμενο\n"
+" Ολοκληρώθηκε\n"
+"."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Θέλετε να χρησιμοποιήσετε αυτή τη λειτουργία;"
+
+#: ../help.pm:57
+#, fuzzy, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Linux ανιχνεύθηκε\n"
+"\n"
+"\n"
+" Ολοκληρώθηκε\n"
+"\n"
+"\n"
+" Linux\n"
+"\n"
+" Όνομα\n"
+"\n"
+" Όνομα\n"
+"\n"
+"\n"
+" IDE\n"
+"\n"
+"\n"
+" IDE\n"
+"\n"
+"\n"
+" πρωτεύουσα IDE\n"
+"\n"
+" πρωτεύουσα IDE\n"
+"\n"
+" δευτερεύουσα IDE\n"
+"\n"
+" δευτερεύουσα IDE\n"
+"\n"
+"\n"
+"."
+
+#: ../help.pm:88
+#, fuzzy, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Η εγκατάσταση του Mandriva Linux είναι μοιρασμένο σε αρκετά CD-ROM. Το \n"
+"DrakX ξέρει αν ένα επιλεγμένο πακέτο υπάρχει σε άλλο CD-ROM, θα εξάγει το \n"
+"τρέχον CD και θα ζητήσει να εισάγετε ένα άλλο όταν αυτό θα χρειαστεί."
+
+#: ../help.pm:95
+#, fuzzy, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"\n"
+" Linux\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Linux\n"
+"\n"
+"\n"
+" Σταθμός Εργασίας\n"
+" Ανάπτυξη\n"
+"\n"
+" Σταθμός Εργασίας\n"
+"\n"
+"\n"
+"\n"
+" Ανάπτυξη\n"
+"\n"
+"\n"
+" Εξυπηρετητής εξυπηρετητής\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Μετακίνηση σε εξέλιξη Ομάδα εργασίας:\n"
+" Ομάδα εργασίας:\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" εξυπηρετητής\n"
+"\n"
+"\n"
+" Linux\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Αναβάθμιση\n"
+" νέο\n"
+"."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Αναβάθμιση"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "With basic documentation"
+msgstr "Με την βασική τεκμηρίωση (συνιστάται!)"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "Truly minimal install"
+msgstr "Ελάχιστη Εγκατάσταση"
+
+#: ../help.pm:152
+#, fuzzy, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" εξυπηρετητής\n"
+" Ομάδα εργασίας:\n"
+"\n"
+" εξ' ορισμού Linux\n"
+"\n"
+"\n"
+" Linux\n"
+"\n"
+" Όχι Ναι\n"
+"\n"
+" εξ' ορισμού\n"
+"\n"
+" απενεργοποίηση\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr ""
+
+#: ../help.pm:186
+#, fuzzy, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"Εκτυπωτής Όχι Εκτυπωτής\n"
+"\n"
+" νέο\n"
+"."
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" εξ' ορισμού\n"
+"\n"
+"\n"
+" εξυπηρετητής\n"
+"\n"
+" εξυπηρετητής\n"
+"!"
+
+#: ../help.pm:209
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"Linux\n"
+"\n"
+"\n"
+" HardDrake Linux\n"
+"\n"
+" Τομέας Windows \n"
+"\n"
+"\n"
+" εξυπηρετητής Διαδίκτυο\n"
+" Διαδίκτυο\n"
+" εξυπηρετητής\n"
+" εξυπηρετητής."
+
+#: ../help.pm:220
+#, fuzzy, c-format
+msgid "Automatic time synchronization"
+msgstr "Αυτόματος συγχρονισμός ώρας (χρήση NTP)"
+
+#: ../help.pm:223
+#, fuzzy, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" εξυπηρετητής\n"
+"."
+
+#: ../help.pm:234
+#, fuzzy, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Σύστημα Linux\n"
+"\n"
+" Linux\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" εξυπηρετητής\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Οθόνη\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Ανάλυση\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Δοκιμή\n"
+"\n"
+"\n"
+" Ναι\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Επιλογές\n"
+"\n"
+"\n"
+"\n"
+" Όχι εξυπηρετητής\n"
+"."
+
+#: ../help.pm:291
+#, fuzzy, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Οθόνη\n"
+"\n"
+"\n"
+"\n"
+"."
+
+#: ../help.pm:298
+#, fuzzy, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Ανάλυση\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"."
+
+#: ../help.pm:306
+#, fuzzy, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"\n"
+" εξυπηρετητής\n"
+"."
+
+#: ../help.pm:311
+#, fuzzy, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"\n"
+"\n"
+" Όχι\n"
+" εξυπηρετητής\n"
+"."
+
+#: ../help.pm:319
+#, fuzzy, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"\n"
+" Linux\n"
+"\n"
+"\n"
+" νέο\n"
+" Linux\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" χρήστης\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" ανιχνεύθηκε\n"
+" Linux\n"
+"\n"
+" εξ' ορισμού\n"
+"\n"
+"\n"
+" Τομέας Windows Τομέας Windows \n"
+"\n"
+" Linux Διαγραφή\n"
+" Τομέας Windows \n"
+" Τομέας Windows Αλλαγή μεγέθους\n"
+"\n"
+" Τομέας Windows \n"
+"\n"
+" Linux Τομέας Windows \n"
+"\n"
+"\n"
+" Τομέας Windows \n"
+"\n"
+" Τομέας Windows νέο\n"
+"\n"
+" Διαγραφή\n"
+" νέο Linux\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Λίστα Αφαίρεσης Τομέας Windows \n"
+" Όλα\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Προσαρμοσμένο\n"
+"\n"
+"\n"
+" Ολοκληρώθηκε\n"
+"\n"
+"\n"
+"."
+
+#: ../help.pm:377
+#, fuzzy, c-format
+msgid "Use existing partition"
+msgstr "Χρήση υπαρχουσών κατατμήσεων"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Διαγραφή ολόκληρου του δίσκου"
+
+#: ../help.pm:380
+#, fuzzy, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Linux\n"
+" Επόμενο\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Για Προχωρημένους\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Επαναφόρτωση\n"
+"\n"
+"\n"
+" Αυτόματο\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Αποθήκευση\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Linux\n"
+
+#: ../help.pm:412
+#, fuzzy, c-format
+msgid "Generate auto-install floppy"
+msgstr "Δημιουργία δισκέτας αυτόματης εγκατάστασης"
+
+#: ../help.pm:415
+#, fuzzy, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Επόμενο\n"
+"\n"
+" Προηγούμενο\n"
+" νέο Linux\n"
+"\n"
+" Για Προχωρημένους\n"
+"."
+
+#: ../help.pm:437
+#, fuzzy, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Linux\n"
+"\n"
+"\n"
+" Διαδίκτυο\n"
+" Ναι Διαδίκτυο Όχι\n"
+"\n"
+"\n"
+" Ναι\n"
+"\n"
+" Εγκατάσταση\n"
+" Άκυρο."
+
+#: ../help.pm:450
+#, fuzzy, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"επίπεδο\n"
+" επίπεδο\n"
+"\n"
+" Διαδίκτυο επίπεδο\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" εξ' ορισμού."
+
+#: ../help.pm:461
+#, fuzzy, c-format
+msgid "Security Administrator"
+msgstr "Διαχειριστής Ασφαλείας:"
+
+#: ../help.pm:464
+#, fuzzy, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"\n"
+" Linux\n"
+" Linux\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" IDE\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Άλλα\n"
+"\n"
+" Αποθήκευση\n"
+"\n"
+"\n"
+"\n"
+" Επαναφορά\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" μετά βίας\n"
+"\n"
+"\n"
+"\n"
+" Οδηγός\n"
+"\n"
+"\n"
+"\n"
+" Αναίρεση\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Ολοκληρώθηκε\n"
+"\n"
+"\n"
+" Πότε\n"
+"\n"
+"\n"
+"\n"
+" Ολοκληρώθηκε\n"
+"\n"
+" Πότε\n"
+"\n"
+" νέο\n"
+"\n"
+" Διαγραφή\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" HFS\n"
+"\n"
+"\n"
+"\n"
+"."
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Removable media auto-mounting"
+msgstr "Αυτόματη σύνδεση αποσπώμενων μονάδων"
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Αλλαγή σε κανονικό τρόπο λειτουργίας"
+
+#: ../help.pm:536
+#, fuzzy, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Περισσότερες των μία κατατμήσεις Windows βρέθηκαν στον δίσκο σας. Παρακαλώ \n"
+"επιλέξτε ποια θέλετε να συρρικνώσετε για να εγκαταστήσετε το Mandriva "
+"Linux.\n"
+"\n"
+"Κάθε κατάτμηση αναφέρεται ως: \"Όνομα Linux\", \"Όνομα Windows\"\n"
+"\"Χωρητικότητα\".\n"
+"\n"
+"Το όνομα Linux σημαίνει τα εξής: \"Τύπος δίσκου\",\"αριθμός δίσκου\",\n"
+"\"αριθμός κατάτμησης για παράδειγμα, \"hda1\").\n"
+"\n"
+"Ο \"Τύπος δίσκου\" είναι \"hd\" εάν πρόκειται για δίσκο IDE και \"sd\" \n"
+"για SCSI δίσκο.\n"
+"\n"
+"Ο \" αριθμός δίσκου\"είναι πάντα ένα γράμμα μετά το \"hd\" ή \"sd\". Για\n"
+"τους IDE δίσκους: \n"
+"\n"
+" * \"a\" είναι ο \"master δίσκος στον πρώτο ελεγκτή IDE\",\n"
+"\n"
+" * \"b\" είναι ο \"slave δίσκος στον πρώτο ελεγκτή IDE\",\n"
+"\n"
+" * \"c\" είναι ο \"master δίσκος στον δεύτερο ελεγκτή IDE\",\n"
+"\n"
+" * \"d\" είναι ο \"slave δίσκος στον δεύτερο ελεγκτή IDE\".\n"
+"\n"
+"Για δίσκους SCSI, \"a\" είναι ο πρώτος δίσκος, \"b\" είναι ο δεύτερος "
+"δίσκος\n"
+" κλπ...\n"
+"\n"
+"Το \"Όνομα Windows\" είναι το γράμμα της κατάτμησης όπως φαίνεται από τα\n"
+"Windows (ο πρώτος δίσκος ή κατάτμηση λέγεται \"C:\")."
+
+#: ../help.pm:567
+#, fuzzy, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"Χώρα\": ελέγξτε την επιλογή χώρας. Αν δεν είστε σε αυτή τη χώρα,\n"
+"κάντε κλικ στο πλήκτρο και επιλέξτε μια άλλη."
+
+#: ../help.pm:572
+#, fuzzy, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"ενεργοποίηση τώρα Linux\n"
+"\n"
+"\n"
+" νέο\n"
+" Linux\n"
+"\n"
+" Εγκατάσταση\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Αναβάθμιση\n"
+" Linux\n"
+" χρήστης\n"
+"\n"
+"\n"
+" Αναβάθμιση Linux\n"
+" εκτελείται Αναβάθμιση\n"
+" Linux."
+
+#: ../help.pm:594
+#, fuzzy, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"εξ' ορισμού\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Άλλα\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"."
+
+#: ../help.pm:612
+#, fuzzy, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"\n"
+"\n"
+"\n"
+"\n"
+" Για Προχωρημένους\n"
+"\n"
+"\n"
+" Ισπανία\n"
+" εξ' ορισμού Για Προχωρημένους\n"
+"\n"
+"\n"
+"\n"
+" Επόμενο\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" χρήστης\n"
+" χρήστης."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr ""
+
+#: ../help.pm:653
+#, fuzzy, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" σειριακό\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" εξ' ορισμού\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Με ροδάκι ανιχνεύθηκε\n"
+"\n"
+"\n"
+" Επόμενο\n"
+" ενεργοποίηση τώρα\n"
+"\n"
+"\n"
+"."
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "with Wheel emulation"
+msgstr "Προσομοίωση Κουμπιών"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Παρακαλώ επιλέξτε την κατάλληλη θύρα. Για παράδειγμα,\n"
+"η\"COM1\" στα Windows ονομάζεται \"ttyS0\" στο GNU/Linux."
+
+#: ../help.pm:691
+#, fuzzy, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Linux\n"
+" Root\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Linux\n"
+"\n"
+"\n"
+" σημαντικό\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" εξυπηρετητής Για Προχωρημένους\n"
+"\n"
+" LDAP NIS Τομέας Windows Τομέας\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" Όχι Διαδίκτυο\n"
+"."
+
+#: ../help.pm:725
+#, fuzzy, c-format
+msgid "authentication"
+msgstr "Πιστοποίηση"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, fuzzy, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Άλλο\n"
+" Linux\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" απλό\n"
+"\n"
+" Linux\n"
+"\n"
+" CUPS Εκτύπωση Σύστημα\n"
+"\n"
+" απλό εξυπηρετητής\n"
+"\n"
+"\n"
+" εξυπηρετητής\n"
+" CUPS\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" εκτελείται\n"
+"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Εξπέρ"
+
+#: ../help.pm:771
+#, fuzzy, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"IDE\n"
+" PCI\n"
+"\n"
+"\n"
+"\n"
+" PCI Ναι\n"
+" Όχι\n"
+"\n"
+" ανιχνεύθηκε\n"
+" Επόμενο Επόμενο\n"
+"\n"
+"\n"
+" PCI\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"\n"
+"."
+
+#: ../help.pm:789
+#, fuzzy, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"ανιχνεύθηκε\n"
+"\n"
+"\n"
+"."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "ISDN card"
+msgstr "Εσωτερική κάρτα ISDN"
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "Graphical Interface"
+msgstr "Γραφικό περιβάλλον"
+
+#: ../help.pm:861
+#, fuzzy, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Επιλέξτε τον δίσκο που θέλετε να διαγράψετε για να εγκαταστήσετε \n"
+"την νέα κατάτμηση Mandriva Linux. ΠΡΟΣΟΧΗ: Όλα τα δεδομένα θα διαγραφούν\n"
+"και θα είναι αδύνατη η επαναφορά τους!"
+
+#: ../help.pm:866
+#, fuzzy, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Κάντε κλικ στο \"Επόμενο ->\" εάν θέλετε να διαγράψετε όλα τα δεδομένα\n"
+"τις κατατμήσεις που βρίσκονται στον σκληρό σας δίσκο. Προσοχή μετά\n"
+"που θα κλικ στο \"Επόμενο ->\"δεν θα μπορείτε να ανακτήσετε τα δεδομένα\n"
+"και τις κατατμήσεις που βρίσκονται στον δίσκο μαζί και τα Windows\n"
+" Επόμενο\n"
+"\n"
+"Κάντε κλικ στο \"<- Προηγούμενο\" για να τερματίσετε τη λειτουργία αυτή\n"
+"χωρίς να χάσετε τα δεδομένα και τις κατατμήσεις σας στο δίσκο."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Επόμενο ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Προηγούμενο"
+
diff --git a/perl-install/install/help/po/eo.po b/perl-install/install/help/po/eo.po
new file mode 100644
index 000000000..0a09d09e4
--- /dev/null
+++ b/perl-install/install/help/po/eo.po
@@ -0,0 +1,1196 @@
+# Esperanto drakbootdisk
+# Copyright (C) 2000, 2001 Mandriva
+# D. Dale Gulledge <dsplat@rochester.rr.com>, 2000.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2003-03-12 18:31-0400\n"
+"Last-Translator: Vilhelmo Lutermano <vlutermano@free.fr>\n"
+"Language-Team: esperanto <eo@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.9.6\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Ĉu vi deziras uzi tiun funkcion?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Aktualigo"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "With basic documentation"
+msgstr "Kun baza dokumentaĵo (rekomendita!)"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "Truly minimal install"
+msgstr "Minimuma instalado"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr ""
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Tiu ĉi dialogo uzeblas por elekti kiujn servojn vi deziras startigi kiam vi "
+"startigas\n"
+"vian komputilon.\n"
+"DrakX listigos ĉiujn servojn atingeblajn en la nuna instalaĵo.\n"
+"Kontrolu ĉiujn zorge kaj malelektu tiujn kiuj ne estas ĉiam bezonataj\n"
+"dum la starto.\n"
+"Kiam via muso estas supre de ero, malgranda balono\n"
+"ekaperas por helpi vin. Ĝi priskribas la rolon de la servo.\n"
+"Tamen, se vi ne certas ĉu iu servo utilas aŭ ne, prefere lasu la defaŭltan "
+"sintenon.\n"
+"\n"
+"!!Zorgegu en ĉi tiu paŝo se vi intencas uzi vian komputilon kiel servilo:\n"
+"ne startu servojn kiujn vi ne bezonas. Memoru ke certaj servoj povas esti\n"
+"danĝeraj se ili estas aktivigitaj en servilo. Ĝenerale,\n"
+"elektu nur tiujn servojn kiujn vi vere bezonas.\n"
+"!!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, fuzzy, c-format
+msgid "Automatic time synchronization"
+msgstr "Auxtomata hor-sinkronizado (uzante NTP) "
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+
+#: ../help.pm:377
+#, fuzzy, c-format
+msgid "Use existing partition"
+msgstr "Uzu ekzistantajn subdiskojn"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Forviŝu la tutan diskon"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+
+#: ../help.pm:412
+#, fuzzy, c-format
+msgid "Generate auto-install floppy"
+msgstr "Kreu aŭtoinstalan disketon"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+
+#: ../help.pm:461
+#, fuzzy, c-format
+msgid "Security Administrator"
+msgstr "Malproksimaj lpd Printilaj Opcioj"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Removable media auto-mounting"
+msgstr "Aŭtomata kroĉado de demeteblaj aparatoj"
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Ŝanĝu al Normala reĝimo"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr ""
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "with Wheel emulation"
+msgstr "Loĝiteka MouseMan"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Bonvolu elekti la ĝustan pordon. Ekzemple, la \"COM1\"-a\n"
+"pordo sub MS Vindozo estas nomata \"ttyS0\" sub GNU/Linukso."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, fuzzy, c-format
+msgid "authentication"
+msgstr "Aŭtentikigado"
+
+#: ../help.pm:728
+#, fuzzy, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"LILO kaj grub estas GNU/Linuksaj startigiloj. Normale, tiu paŝo estas "
+"komplete\n"
+"aŭtomata. DrakX analizos la startsektoron de la disko kaj agas laŭ tio\n"
+"kion ĝi trovas tie:\n"
+"\n"
+" * se ĝi trovas vindozan startsektoron, ĝi anstataŭigos tiun per grub/LILO-"
+"a startsektoro.\n"
+"Tiel vi povos ŝargi aŭ GNU/Linukson aŭ alian mastrumsistemon.\n"
+"\n"
+" * se ĝi trovas grub- aŭ LILO-startsektoron, ĝi anstataŭigos tiun per "
+"nova.\n"
+"\n"
+" * se ĝi ne povas determini, DrakX demandos vin kien ĝi metu la\n"
+"startigilon.\n"
+"\n"
+"\"Boot device\": En plej multaj okazoj, vi ne ŝanĝu la defaŭltan (\"Unua\n"
+"sektoro de la disko (MBR)\"), sed se vi preferas, la startigilo povas esti\n"
+"instalata sur la dua fiksdisko (\"/dev/hdb\"), aŭ eĉ sur disketo\n"
+"(\"Sur disketo\")."
+
+#: ../help.pm:745
+#, fuzzy, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Nun estas tempo por elekti pressistemon por via komputilo. Aliaj mastrum-"
+"sistemoj\n"
+"proponas al vi unu, sed Mandriva Linukso proponas du. Ĉiu el la "
+"pressistemoj\n"
+"plej taŭgas por aparta tipo de konfigurado.\n"
+"\n"
+" * \"pdq\" -- kio estas akronimo por \"print, do not queue\" (presu, ne "
+"vicigu), elektindas\n"
+"se vi havas rektan konekton kun via presilo, vi ŝatus eskapi el problemoj "
+"kun\n"
+"aliaj presiloj, kaj vi ne havas retajn presilojn. (\"pdq\"\n"
+"pritraktos nur tre simplajn retokazojn kaj estas iom malrapida se\n"
+"uzata kun retoj.) Konsilindas uzi \"pdq\" se tio ĉi estas via\n"
+"unua sperto kun GNU/Linukso.\n"
+"\n"
+" * \"%s\" - \"Common Unix Printing System\", estas bonega elekto por\n"
+"presigi vian lokan presilon aŭ iun ie tra la planedo. Ĝi estas\n"
+"facile konfigurebla kaj povas agi kiel servilo aŭ kiel kliento por la "
+"antaŭa\n"
+"\"lpd \" pressistemo, kaj estas kongrua kun pli malnovaj mastrum-sistemoj\n"
+"kiuj eble ankoraŭ bezonas presservojn. Kvankam tre potenca, la baza "
+"konfigurado\n"
+"estas preskaŭ same simpla kiel \"pdq\". Se vi bezonas imiti \"lpd\"-"
+"servilon,\n"
+"certiĝu ke vi aktivigis la \"cups-lpd\"-demonon. \"%s\" enhavas grafikajn\n"
+"'front-ends' por presi aŭ por elekti presil-opciojn kaj por mastrumi\n"
+"la presilon.\n"
+"\n"
+"Se vi faras vian elekton nun, kaj poste trovas ke vi ne ŝatas vian "
+"pressistemon,\n"
+"vi povas ŝanĝi ĝin rulante PrinterDrake ekde la Mandriva KontrolCentro kaj\n"
+"alklaki la eksperto-butonon."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Spertulo"
+
+#: ../help.pm:771
+#, fuzzy, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX unue detektos iujn IDE-aparatojn en via komputilo. Ĝi ankaŭ\n"
+"serĉas unu aŭ plurajn PCI-SCSI-kartojn en via sistemo. Se SCSI-karto\n"
+"estas trovita, DrakX aŭtomate instalos la taŭgan pelilon.\n"
+"\n"
+"Ĉar detektado de aparataro ne estas absolute senerara, DrakX povas\n"
+"malsukcesi detektante viajn fiksdiskojn. Se tiel, vi devos mem mane entajpi\n"
+"vian aparataron.\n"
+"\n"
+"Se vi devis mane entajpi vian PCI-SCSI-adaptilon, DrakX demandos ĉu vi\n"
+"deziras konfiguri opciojn por ĝi. Prefere permesu al DrakX provi la "
+"aparatojn\n"
+"por la kartospecifaj opcioj kiuj estas bezonataj por inici la adaptilon. "
+"Plej ofte,\n"
+"DrakX trairos tiun paŝon sen ajna problemo.\n"
+"\n"
+"Se DrakX ne kapablas provi kiujn parametrojn la opcioj aŭtomate devas doni "
+"al la\n"
+"aparatoj, vi devos mane konfiguri la pelilon."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "ISDN card"
+msgstr "Interna ISDN-karto"
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "Graphical Interface"
+msgstr "Grafika interfaco"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Sekvanta ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Antaŭa"
+
diff --git a/perl-install/share/po/help-es.pot b/perl-install/install/help/po/es.po
index 4a26d308e..0a14c851b 100644
--- a/perl-install/share/po/help-es.pot
+++ b/perl-install/install/help/po/es.po
@@ -1,166 +1,59 @@
+# traducción de DrakX-es.po to Español
+# spanish translation of DrakX
+# Copyright (C) 2000, 2001,2002 Mandriva S.A.
+# Fabian Mandelbaum <fabman@mandriva.com>, 2000, 2001, 2002,2003, 2004.
+# Fabian Mandelbaum <fmandelbaum@hotmail.com>, 2003, 2004.
+# Pablo Saratxaga <pablo@mandriva.com>, 2004.
+# Jaime Crespo <505201@unizar.es>, 2004, 2005.
+# José Manuel Pérez <jmprodu@hotmail.com>, 2005.
+#
msgid ""
msgstr ""
+"Project-Id-Version: DrakX-es\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-04-24 11:46+0200\n"
+"Last-Translator: José Manuel Pérez <jmprodu@hotmail.com>\n"
+"Language-Team: Español <es@li.org>\n"
+"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:14
+#, c-format
msgid ""
-"You now need to decide where you want to install the Mandrivalinux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandrivalinux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandrivalinux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandrivalinux system, choose\n"
-"this option. Be careful, because you won't be able to undo this operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-"Ahora necesita elegir el lugar de su disco rígido donde se instalará su\n"
-"sistema operativo Mandrivalinux. Si su disco rígido está vacío o si un\n"
-"sistema operativo existente está utilizando todo el espacio disponible,\n"
-"necesitará particionar el disco. Básicamente, particionar un disco rígido\n"
-"consiste en dividirlo lógicamente para crear espacio para instalar su\n"
-"sistema Mandrivalinux nuevo.\n"
-"\n"
-"Debido a que el proceso de particionado de un disco rígido por lo general\n"
-"es irreversible y puede llevar a pérdida de datos, el particionado puede\n"
-"ser intimidante y estresante si Usted es un usuario inexperto. Por fortuna,\n"
-"DrakX incluye un asistente que simplifica este proceso. Antes de continuar\n"
-"con este paso, por favor lea el resto de esta sección y, por sobre todo,\n"
-"tómese su tiempo.\n"
-"\n"
-"Dependiendo de la configuración de su disco rígido, están disponibles\n"
-"varias opciones:\n"
-"\n"
-" * \"%s\". Esta opción simplemente llevará a un particionado automático de\n"
-"su(s) disco(s) vacío(s). Si elige esta opción, no se le pedirán más\n"
-"detalles ni se le formularán más preguntas.\n"
-"\n"
-" * \"%s\". El asistente ha detectado una o más particiones Linux existentes\n"
-"en su disco rígido. Si desea utilizarlas, elija esta opción. Entonces se le\n"
-"pedirá que elija los puntos de montaje asociados a cada una de las\n"
-"particiones. Los puntos de montaje legados se seleccionan de manera\n"
-"predeterminada, y por lo general es buena idea mantenerlos.\n"
-"\n"
-" * \"%s\". Si Microsoft Windows está instalado en su disco rígido y ocupa\n"
-"todo el espacio disponible en el mismo, Usted tendrá que liberar espacio\n"
-"para Linux. Para hacerlo, puede borrar su partición y datos Microsoft\n"
-"Windows (vea la solución \"Borrar el disco entero\") o cambiar el tamaño de\n"
-"su partición Microsoft Windows FAT o NTFS. El cambio de tamaño se puede\n"
-"realizar sin la pérdida de datos, siempre y cuando Usted haya\n"
-"desfragmentado con anterioridad la partición Windows. Es altamente\n"
-"recomendable hacer una copia de respaldo de sus datos. Se recomienda usar\n"
-"esta solución si desea utilizar tanto Mandrivalinux como Microsoft Windows\n"
-"en la misma computadora.\n"
-"\n"
-" Antes de elegir esta opción, por favor comprenda que después de este\n"
-"procedimiento el tamaño de su partición Microsoft Windows será más pequeño\n"
-"que cuando comenzó. Tendrá menos espacio bajo Microsoft Windows para\n"
-"almacenar sus datos o instalar software nuevo.\n"
-"\n"
-" * \"%s\". Si desea borrar todos los datos y todas las particiones\n"
-"presentes en su disco rígido y reemplazarlos con su nuevo sistema\n"
-"Mandrivalinux, seleccione esta opción. Tenga cuidado con esta solución ya\n"
-"que no podrá revertir su elección después de confirmarla.\n"
-"\n"
-" !! Si elige esta opción, se perderán todos los datos en su disco. !!\n"
-"\n"
-" * \"%s\". Esta opción aparece cuando todo el disco está tomado por\n"
-"Microsoft Windows. Al elegir esta opción simplemente se borrará todo el\n"
-"disco y se comenzará desde cero, particionando todo de nuevo.\n"
-"\n"
-" !! Si elige esta opción, se perderán todos los datos en su disco. !!\n"
-"\n"
-" * \"%s\": elija esta opción si desea particionar manualmente su disco\n"
-"rígido. Tenga cuidado - esta es una elección potente pero peligrosa y puede\n"
-"perder todos sus datos con facilidad. Esa es la razón por la cual esta\n"
-"opción realmente sólo se recomienda si ha hecho algo como esto antes y\n"
-"tiene algo de experiencia. Para más instrucciones acerca de la utilización\n"
-"del utilitario DiskDrake, consulte la sección \"Administrar sus\n"
-"particiones\" de la \"Guía de Comienzo\"."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
msgstr ""
-"Resolución\n"
-"\n"
-" Aquí puede elegir las resoluciones y profundidades de color disponibles\n"
-"para su hardware de gráficos. Seleccione la que mejor se ajuste a sus\n"
-"necesidades (podrá hacer cambios luego de la instalación). En la imagen del\n"
-"monitor se muestra un ejemplo de la configuración elegida."
+"Antes de continuar, debería leer cuidadosamente los términos de la\n"
+"licencia. La misma cubre a toda la distribución Mandriva Linux. Si está de\n"
+"acuerdo con todos los términos en la misma, haga clic en el botón \"%s\".\n"
+"Si no, haga clic en el botón \"%s\" lo que reiniciará su computadora."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:20
+#, c-format
msgid ""
"GNU/Linux is a multi-user system which means each user can have his or her\n"
"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point won't be authorized\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
"to change anything except their own files and their own configurations,\n"
"protecting the system from unintentional or malicious changes which could\n"
"impact on the system as a whole. You'll have to create at least one regular\n"
"user for yourself -- this is the account which you should use for routine,\n"
"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system won't work any more. If you make a\n"
+"mistake could mean that your system will not work any more. If you make a\n"
"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you won't affect the entire system.\n"
+"lose some information, but you will not affect the entire system.\n"
"\n"
"The first field asks you for a real name. Of course, this is not mandatory\n"
"-- you can actually enter whatever you like. DrakX will use the first word\n"
@@ -181,7 +74,7 @@ msgid ""
"\n"
"When you're finished adding users, you'll be asked to choose a user who\n"
"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and don't care much about local\n"
+"you're interested in that feature (and do not care much about local\n"
"security), choose the desired user and window manager, then click on\n"
"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
msgstr ""
@@ -227,98 +120,33 @@ msgstr ""
"casilla \"%s\". Haga clic sobre \"%s\" una vez que seleccionó su\n"
"preferencia."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandrivalinux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandrivalinux system. Your current partitioning\n"
-"scheme and user data won't be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandrivalinux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandrivalinux version \"8.1\" is not recommended."
-msgstr ""
-"Este paso se activa sólo si se encontró una partición GNU/Linux existente\n"
-"en su máquina.\n"
-"\n"
-"DrakX ahora necesita saber si desea realizar una instalación nueva o una\n"
-"actualización de un sistema Mandrivalinux existente:\n"
-"\n"
-" * \"%s\". En gran parte, esta opción borrará por completo el sistema\n"
-"anterior. Sin embargo, dependiendo de su esquema de particiones, puede\n"
-"evitar que se sobre-escriban algunos datos existentes (notablemente los\n"
-"directorios de \"home\"). Si desea cambiar la forma en la que se\n"
-"particionan sus discos, debería usar esta opción.\n"
-"\n"
-" * \"%s\": Esta clase de instalación le permite actualizar los paquetes que\n"
-"en este momento están instalados en su sistema Mandrivalinux. No se alteran\n"
-"las particiones corrientes de sus discos ni los datos de los usuarios. La\n"
-"mayoría de los otros pasos de configuración permanecen disponibles y son\n"
-"similares a una instalación estándar.\n"
-"\n"
-"El uso de la opción \"Actualizar\" debería funcionar sin problemas para los\n"
-"sistemas Mandrivalinux que corren la versión \"8.1\" o una posterior. No se\n"
-"recomienda realizar una actualización sobre versiones anteriores a\n"
-"Mandrivalinux versión \"8.1\"."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"By the time you install Mandrivalinux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-"Es probable que cuando instale Mandrivalinux algunos paquetes se hayan\n"
-"actualizado desde la publicación inicial. Se pueden haber corregido errores\n"
-"y solucionado problemas de seguridad. Para permitir que Usted se beneficie\n"
-"de estas actualizaciones, ahora las puede descargar desde la Internet.\n"
-"Marque \"%s\" si tiene funcionando una conexión con la Internet, o \"%s\"\n"
-"si prefiere instalar los paquetes actualizados más tarde.\n"
-"\n"
-"Al elegir \"%s\" se mostrará una lista de lugares desde los que se pueden\n"
-"obtener las actualizaciones. Debería elegir el más cercano a Usted.\n"
-"Aparecerá un árbol de selección de paquetes: revise la selección y presione\n"
-"\"%s\" para obtener e instalar los paquetes seleccionados, o \"%s\" para\n"
-"abortar."
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "¿Desea usar esta característica?"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:57
+#, c-format
msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandrivalinux operating system.\n"
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
"\"sd\" if it is a SCSI hard drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard drives:\n"
"\n"
" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
@@ -330,20 +158,21 @@ msgid ""
" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
+"\"second lowest SCSI ID\", etc."
msgstr ""
-"Se ha detectado más de una partición Microsoft Windows en su disco rígido.\n"
-"Por favor, elija aquella a la cual desea cambiar el tamaño para poder\n"
-"instalar su sistema operativo Mandrivalinux nuevo.\n"
+"Aquí se listan las particiones Linux existentes que se detectaron en su\n"
+"disco rígido. Puede mantener las elecciones hechas por el asistente, ya que\n"
+"las mismas son buenas para las instalaciones más comunes. Si hace cambios,\n"
+"al menos debe definir una partición raíz (\"/\"). No elija una partición\n"
+"muy pequeña o no podrá instalar software suficiente. Si desea almacenar sus\n"
+"datos en una partición separada, también puede necesitar crear una\n"
+"partición para \"/home\" (sólo es posible si tiene más de una partición\n"
+"Linux disponible)\n"
"\n"
-"Cada partición se lista como sigue: \"Nombre Linux\", \"Nombre Windows\",\n"
-"\"Capacidad\".\n"
+"Cada partición se lista como sigue: \"Nombre\", \"Capacidad\".\n"
"\n"
-"\"Nombre Linux\" está estructurado: \"tipo de disco rígido\", \"número de\n"
-"disco rígido\", \"número de partición\" (por ejemplo, \"hda1\").\n"
+"\"Nombre\" está estructurado: \"tipo de disco rígido\", \"número de disco\n"
+"rígido\", \"número de partición\" (por ejemplo, \"hda1\").\n"
"\n"
"\"Tipo de disco rígido\" es \"hd\" si su disco es un disco IDE y \"sd\" si\n"
"el mismo es un disco SCSI.\n"
@@ -364,191 +193,37 @@ msgstr ""
"secundaria\".\n"
"\n"
"Para los discos SCSI, una \"a\" significa \"SCSI ID menor\", una \"b\"\n"
-"significa \"segunda SCSI ID menor\", etc.\n"
-"\n"
-"\"Nombre Windows\" es la letra de su unidad de disco bajo Windows (el\n"
-"primer disco o partición se denomina \"C:\")."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrivalinux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"X (por \"X Window System\") es el corazón de la interfaz gráfica de\n"
-"GNU/Linux en el que se apoyan todos los entornos gráficos (KDE, GNOME,\n"
-"AfterStep, WindowMaker, etc.) que se incluyen con Mandrivalinux.\n"
-"\n"
-"Se le presentará la lista de parámetros diferentes a cambiar para obtener\n"
-"una presentación gráfica óptima.\n"
-"\n"
-"Tarjeta gráfica\n"
-"\n"
-" Normalmente el instalador puede detectar y configurar automáticamente la\n"
-"tarjeta de vídeo instalada en su máquina. Si este no es el caso, en esta\n"
-"lista puede elegir la tarjeta que realmente tiene instalada.\n"
-"\n"
-" En caso de que estén disponibles diferentes servidores para su tarjeta,\n"
-"con o sin aceleración de 3D, entonces se le va a proponer elegir el\n"
-"servidor que mejor satisface sus necesidades.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normalmente el instalador puede detectar y configurar automáticamente el\n"
-"monitor conectado a su máquina. Si es incorrecto, en esta lista puede\n"
-"elegir el monitor que realmente posee.\n"
-"\n"
-"\n"
-"\n"
-"Resolución\n"
-"\n"
-" Aquí puede elegir las resoluciones y profundidades de color disponibles\n"
-"para su hardware de gráficos. Seleccione la que mejor se ajuste a sus\n"
-"necesidades (podrá hacer cambios luego de la instalación). En la imagen del\n"
-"monitor se muestra un ejemplo de la configuración elegida.\n"
-"\n"
-"\n"
-"\n"
-"Probar\n"
-"\n"
-" Esta entrada puede no aparecer, dependiendo de su hardware.\n"
-"\n"
-" El sistema intentará abrir una pantalla gráfica con la resolución\n"
-"deseada. Si ve el mensaje durante la prueba, y responde \"%s\", entonces\n"
-"DrakX continuará con el paso siguiente. Si no puede ver el mensaje,\n"
-"entonces significa que alguna parte de la configuración detectada\n"
-"automáticamente era incorrecta y la prueba terminará automáticamente luego\n"
-"de unos segundos, restaurando el menú. Cambie los ajustes hasta obtener una\n"
-"pantalla gráfica correcta.\n"
-"\n"
-"\n"
-"\n"
-"Opciones\n"
-"\n"
-" Este paso le permite elegir si desea que su máquina cambie\n"
-"automáticamente a la interfaz gráfica al arrancar. Obviamente, querrá\n"
-"marcar \"%s\" si su sistema actuará como servidor, o si no tuvo éxito en la\n"
-"configuración de su pantalla."
+"significa \"segunda SCSI ID menor\", etc."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:88
+#, c-format
msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandrivalinux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, don't queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you don't have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you don't like your printing\n"
-"system you may change it by running PrinterDrake from the Mandrivalinux\n"
-"Control Center and clicking on the \"%s\" button."
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
msgstr ""
-"Ahora es el momento de seleccionar un sistema de impresión para su\n"
-"computadora. Otros sistemas operativos pueden ofrecerle uno, pero\n"
-"Mandrivalinux le ofrece dos. Cada uno de los sistemas de impresión es más\n"
-"adecuado para tipos de configuración particulares.\n"
-"\n"
-" * \"%s\" - \"print, don't queue\" (imprimir sin poner en cola) es la\n"
-"elección si Usted tiene una conexión directa a su impresora y desea evitar\n"
-"el pánico de los papeles trabados, y no tiene impresora en red alguna\n"
-"(\"%s\" manejará sólo casos de red muy simples y es algo lento cuando se\n"
-"utiliza con las redes) Se recomienda utilizar \"pdq\" si esta es su primer\n"
-"experiencia con GNU/Linux.\n"
-"\n"
-" * \"%s\" - \"Common Unix Printing System\"punta (Sistema de Impresión\n"
-"Común de Unix) es una elección excelente para imprimir en su impresora\n"
-"local o en una que se encuentre al otro lado del planeta. Es simple de\n"
-"configurar y puede actuar como servidor o cliente para el sistema de\n"
-"impresión antiguo \"lpd\", por lo que es compatible con sistemas operativos\n"
-"más antiguos que todavía pueden necesitar servicios de impresión. Si bien\n"
-"es bastante potente, la configuración básica es tan simple como la de\n"
-"\"pdq\". Si necesita que emule a un servidor \"lpd\", debe activar el\n"
-"demonio \"cups-lpd\". \"%s\" incluye interfaces gráficas para imprimir o\n"
-"elegir las opciones de la impresora y para administrar la impresora.\n"
-"\n"
-"Si hace una elección ahora y más tarde encuentra que a Usted no le gusta su\n"
-"sistema de impresión, puede cambiarlo ejecutando PrinterDrake desde el\n"
-"Centro de Control de Mandrivalinux y haciendo clic sobre el botón \"%s\"."
+"La instalación de Mandriva Linux se distribuye en varios CD-ROM. Si un\n"
+"paquete seleccionado se encuentra en otro CD-ROM, DrakX expulsará el CD\n"
+"corriente y le pedirá que inserte el necesario. Si no tiene el CD necesario\n"
+"a mano, simplemente haga clic sobre \"%s\", no se instalarán los paquetes\n"
+"correspondientes."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:95
+#, c-format
msgid ""
"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandrivalinux, and to make it\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
"simpler to manage, they have been placed into groups of similar\n"
"applications.\n"
"\n"
-"Mandrivalinux sorts package groups in four categories. You can mix and\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
"match applications from the various categories, so a ``Workstation''\n"
"installation can still have applications from the ``Server'' category\n"
"installed.\n"
@@ -600,11 +275,12 @@ msgid ""
"megabytes."
msgstr ""
"Ahora es el momento de especificar los programas que desea instalar en su\n"
-"sistema. Hay miles de paquetes disponibles para Mandrivalinux, y para hacer\n"
+"sistema. Hay miles de paquetes disponibles para Mandriva Linux, y para "
+"hacer\n"
"más simple el manejo de los paquetes, los mismos se han puesto en grupos de\n"
"aplicaciones similares.\n"
"\n"
-"Mandrivalinux clasifica los grupos de paquetes en cuatro categorías. Puede\n"
+"Mandriva Linux clasifica los grupos de paquetes en cuatro categorías. Puede\n"
"mezclar y hacer coincidir aplicaciones de varias categorías, por lo que una\n"
"instalación de \"Estación de trabajo\" puede tener instaladas aplicaciones\n"
"de la categoría \"Desarrollo\".\n"
@@ -655,121 +331,25 @@ msgstr ""
"Linux que funciona. Con esta instalación sólo tendrá una interfaz de línea\n"
"de comandos. Esta instalación ocupa alrededor de 65 MB."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"The Mandrivalinux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-"La instalación de Mandrivalinux se distribuye en varios CD-ROM. Si un\n"
-"paquete seleccionado se encuentra en otro CD-ROM, DrakX expulsará el CD\n"
-"corriente y le pedirá que inserte el necesario. Si no tiene el CD necesario\n"
-"a mano, simplemente haga clic sobre \"%s\", no se instalarán los paquetes\n"
-"correspondientes."
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Actualización"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: don't make the password too long or too complicated because you\n"
-"must be able to remember it!\n"
-"\n"
-"The password won't be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you don't know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-"Este es el punto de decisión más crucial para la seguridad de su sistema\n"
-"GNU/Linux: tendrá que ingresar la contraseña de \"root\". El usuario\n"
-"\"root\" es el administrador del sistema y es el único autorizado a hacer\n"
-"actualizaciones, agregar usuarios, cambiar la configuración general del\n"
-"sistema, etc. Resumiendo, ¡\"root\" puede hacer de todo! Es por esto que\n"
-"deberá elegir una contraseña que sea difícil de adivinar - DrakX le dirá si\n"
-"la que eligió es demasiado fácil. Como puede ver, no es forzoso ingresar\n"
-"una contraseña, pero le recomendamos encarecidamente que ingrese una.\n"
-"GNU/Linux es tan propenso a errores del operador como cualquier otro\n"
-"sistema operativo. Es importante que sea difícil convertirse en \"root\"\n"
-"debido a que \"root\" puede sobrepasar todas las limitaciones y borrar, sin\n"
-"intención, todos los datos que se encuentran en las particiones accediendo\n"
-"a las mismas sin el cuidado suficiente.\n"
-"\n"
-"La contraseña debería ser una mezcla de caracteres alfanuméricos y tener al\n"
-"menos una longitud de 8 caracteres. Nunca escriba la contraseña de \"root\"\n"
-"- por ejemplo, en un papel - eso hace que sea muy fácil comprometer su\n"
-"sistema.\n"
-"\n"
-"Sin embargo, no debería hacer la contraseña muy larga o complicada ¡debido\n"
-"a que Usted debe poder recordarla!\n"
-"\n"
-"La contraseña no se mostrará en la pantalla a medida que Usted la teclee.\n"
-"Deberá teclear la contraseña dos veces para reducir la posibilidad de un\n"
-"error de tecleo a ciegas. Si ocurre que Usted comete dos veces el mismo\n"
-"error de tecleo, tendrá que utilizar esta contraseña \"incorrecta\" la\n"
-"primera vez que intente conectarse como \"root\".\n"
-"\n"
-"Si desea utilizar un servidor de autenticación para controlar el acceso a\n"
-"su computadora, haga clic sobre el botón \"%s\".\n"
-"\n"
-"Si su red usa los protocolos LDAP, NIS, o servicios de autenticación de PDC\n"
-"Dominio de Windows, seleccione el apropiado como método de autenticación.\n"
-"Si no sabe cual utilizar, debería preguntar al administrador de su red.\n"
-"\n"
-"Si ocurre que tiene problemas para recordar contraseñas, o si su\n"
-"computadora nunca estará conectada a la Internet y Usted confía\n"
-"absolutamente en cualquier persona que tenga acceso a la misma, puede\n"
-"elegir el botón \"%s\"."
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Con documentación básica"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-"Haga clic sobre \"%s\" si desea borrar todos los datos y particiones\n"
-"presentes en esta unidad de disco. Tenga cuidado, luego de hacer clic sobre\n"
-"\"%s\", no podrá recuperar los datos y las particiones presentes en esta\n"
-"unidad de disco, incluyendo los datos de Windows.\n"
-"\n"
-"Haga clic sobre \"%s\" para detener esta operación sin perder los datos ni\n"
-"las particiones presentes en esta unidad de disco rígido."
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Instalación realmente mínima"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:152
+#, c-format
msgid ""
"If you choose to install packages individually, the installer will present\n"
"a tree containing all packages classified by groups and subgroups. While\n"
@@ -782,11 +362,12 @@ msgid ""
"!! If a server package has been selected, either because you specifically\n"
"chose the individual package or because it was part of a group of packages,\n"
"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandrivalinux will automatically start any installed\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
"services at boot time. Even if they are safe and have no known issues at\n"
"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandrivalinux was\n"
-"finalized. If you don't know what a particular service is supposed to do or\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
"the listed services and they will be started automatically at boot time. !!\n"
"\n"
@@ -819,11 +400,11 @@ msgstr ""
"seleccionó específicamente el paquete individual o porque el mismo era\n"
"parte de un grupo de paquetes, se le pedirá que confirme que realmente\n"
"desea que se instalen esos servidores. De manera predeterminada,\n"
-"Mandrivalinux iniciará automáticamente todos los servicios instalados al\n"
+"Mandriva Linux iniciará automáticamente todos los servicios instalados al\n"
"momento del arranque. Aunque estos son seguros y no tienen problemas\n"
"conocidos al momento en que se publicó la distribución, es muy posible que\n"
"se descubran vulnerabilidades en la seguridad luego que se terminó con esta\n"
-"versión de Mandrivalinux. Si no sabe que es lo que se supone que hace un\n"
+"versión de Mandriva Linux. Si no sabe que es lo que se supone que hace un\n"
"servicio o la razón por la cual se está instalando, entonces haga clic\n"
"sobre \"%s\". Si hace clic sobre \"%s\" se instalarán todos los servicios\n"
"listados y los mismos se iniciarán automáticamente al momento del arranque.\n"
@@ -844,192 +425,15 @@ msgstr ""
"disquete creado al final de otra instalación. Vea el segundo consejo del\n"
"último paso para información sobre como crear dicho disquete."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can't determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" won't install any boot loader. Use this option only if you\n"
-"know what you're doing."
-msgstr ""
-"Un cargador de arranque es un pequeño programa que la computadora inicia al\n"
-"momento del arranque. Es el responsable de arrancar todo el sistema.\n"
-"Normalmente la instalación del cargador de arranque está completamente\n"
-"automatizada. DrakX analizará el sector de arranque del disco y actuará en\n"
-"función de lo que encuentre allí:\n"
-"\n"
-" * Si encuentra un sector de arranque de Windows, lo reemplazará con un\n"
-"sector de arranque de GRUB/LILO de forma tal que Usted pueda cargar\n"
-"GNU/Linux o cualquier otro sistema operativo instalado en su máquina.\n"
-"\n"
-" * Si encuentra un sector de arranque de GRUB o LILO, lo reemplazará con\n"
-"uno nuevo.\n"
-"\n"
-"Si no puede realizar una determinación, DrakX le preguntará dónde colocar\n"
-"el cargador de arranque. Generalmente, el \"%s\" es el lugar más seguro. Si\n"
-"no va a instalar cargador de arranque alguno seleccione \"%s\". Úselo\n"
-"solamente si sabe lo que está haciendo."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"DrakX primero detectará cualquier dispositivo IDE presente en su\n"
-"computadora. También buscará una o más tarjetas SCSI PCI en su sistema. Si\n"
-"se encuentra una tarjeta SCSI, DrakX instalará automáticamente el\n"
-"controlador apropiado.\n"
-"\n"
-"Debido a que la detección de hardware no es a prueba de errores, DrakX\n"
-"puede no detectar sus discos rígidos. De ser así, Usted tendrá que\n"
-"especificar su hardware manualmente.\n"
-"\n"
-"Si tuviese que especificar su adaptador SCSI PCI manualmente, DrakX le\n"
-"preguntará si desea configurar opciones para el mismo. Debería permitir a\n"
-"DrakX sondear el hardware en busca de las opciones específicas de la\n"
-"tarjeta que son necesarias para inicializar el adaptador. La mayoría de las\n"
-"veces, DrakX saldrá adelante en este paso sin problema alguno.\n"
-"\n"
-"Si DrakX no puede sondear las opciones para determinar automáticamente qué\n"
-"parámetros debe pasar al hardware, Usted deberá configurar manualmente el\n"
-"controlador."
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Dependencias automáticas"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandrivalinux's use of UTF-8 will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-"El primer paso es elegir el idioma que prefiere.\n"
-"\n"
-"Su elección de idioma preferido afectará al idioma del instalador, de la\n"
-"documentación, y del sistema en general. Seleccione primero la región en la\n"
-"que se encuentra, y luego el idioma que habla.\n"
-"\n"
-"Al hacer clic sobre el botón \"%s\" (Avanzada) podrá seleccionar otros\n"
-"idiomas para instalar en su sistema, instalando así los archivos\n"
-"específicos para esos idiomas para la documentación y las aplicaciones. Por\n"
-"ejemplo, si albergará a gente de Francia en su máquina, seleccione Español\n"
-"como idioma principal en la vista de árbol y \"%s\" en la sección avanzada.\n"
-"\n"
-"Acerca del soporte UTF-8 (Unicode): Unicode es una codificación nueva de\n"
-"caracteres que pretende cubrir todos los idiomas existentes. Sin embargo,\n"
-"el soporte completo para Unicode bajo GNU/Linux todavía está en desarrollo.\n"
-"Por esta razón, Mandrivalinux lo usará o no dependiendo de las elecciones\n"
-"del usuario:\n"
-"\n"
-" * Si elige un idioma con codificación legada fuerte (idiomas latin1, ruso,\n"
-"japonés, chino, coreano, thai, griego, turco, la mayoría de los idiomas\n"
-"ISO-8859-2), de manera predeterminada se usará la codificación legada.\n"
-"\n"
-" * Otros idiomas utilizarán Unicode de manera predeterminada.\n"
-"\n"
-" * Si se necesitan dos o más idiomas, y dichos idiomas no utilizan la misma\n"
-"codificación, entonces el sistema completo utilizará Unicode.\n"
-"\n"
-" * Finalmente, también se puede forzar el uso de Unicode para todo el\n"
-"sistema a pedido del usuario seleccionando la opción \"%s\" sin importar\n"
-"qué idiomas han sido seleccionados.\n"
-"\n"
-"Note que no está limitado a elegir un único idioma adicional. Puede elegir\n"
-"varios, o incluso instalarlos a todos marcando la casilla \"%s\".\n"
-"Seleccionar el soporte para un idioma significa que se instalarán las\n"
-"traducciones, tipografías, correctores ortográficos, etc. para dicho\n"
-"idioma.\n"
-"\n"
-"Puede ejecutar el comando \"localedrake\" como \"root\" para cambiar el\n"
-"idioma de todo el sistema de uno a otro. Ejecutar el comando como usuario\n"
-"no privilegiado sólo cambiará la configuración de idioma para ese usuario\n"
-"en particular."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card isn't the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-"\"%s\": si se detecta una tarjeta de sonido en su sistema, la misma se\n"
-"mostrará aquí. Si nota que la tarjeta de sonido no es la que está realmente\n"
-"presente en su sistema, puede hacer clic sobre el botón y elegir un\n"
-"controlador diferente."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrivalinux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Elija la unidad de disco que desea borrar para instalar su partición\n"
-"Mandrivalinux nueva. Tenga cuidado, ¡se perderán todos los datos presentes\n"
-"en dicha unidad de disco y no se podrán recuperar!."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:186
+#, c-format
msgid ""
"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
@@ -1043,356 +447,228 @@ msgstr ""
"durante la instalación."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:192
+#, c-format
msgid ""
-"Options\n"
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
msgstr ""
-"Opciones\n"
+"Este diálogo se usa para elegir cuáles servicios Usted desea que se inicien\n"
+"durante el arranque.\n"
"\n"
-" Este paso le permite elegir si desea que su máquina cambie\n"
-"automáticamente a la interfaz gráfica al arrancar. Obviamente, querrá\n"
-"marcar \"%s\" si su sistema actuará como servidor, o si no tuvo éxito en la\n"
-"configuración de su pantalla."
+"DrakX listará todos los servicios disponibles en la instalación corriente.\n"
+"Revíselos con cuidado y quite la marca de aquellos que no son necesarios al\n"
+"arrancar.\n"
+"\n"
+"Cuando se selecciona un servicio obtendrá un pequeño texto explicativo\n"
+"acerca del mismo. Sin embargo, si no está seguro si un servicio es útil o\n"
+"no, es más seguro dejar el comportamiento predeterminado.\n"
+"\n"
+"!! Tenga mucho cuidado en esta etapa si pretende usar su máquina como un\n"
+"servidor: probablemente no desea iniciar servicios que no necesita. Por\n"
+"favor recuerde que algunos servicios pueden ser peligrosos si están\n"
+"habilitados en un servidor. En general, seleccione sólo aquellos servicios\n"
+"que realmente necesita. !!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:209
+#, c-format
msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
msgstr ""
-"Por favor, seleccione el puerto correcto. Por ejemplo, el puerto \"COM1\"\n"
-"bajo Windows se denomina \"ttyS0\" bajo GNU/Linux."
+"GNU/Linux administra la hora en GMT (\"Greenwich Mean Time\", Hora del\n"
+"Meridiano de Greenwich) y la traduce a la hora local de acuerdo al huso\n"
+"horario que Usted seleccionó. Sin embargo, es posible desactivar esto\n"
+"quitando la marca de la casilla \"%s\", lo que hará que GNU/Linux sepa que\n"
+"el reloj del sistema y el reloj de hardware están en el mismo huso horario.\n"
+"Esto es útil cuando la máquina también alberga otro sistema operativo.\n"
+"\n"
+"La opción \"%s\" regulará automáticamente el reloj del sistema conectándose\n"
+"a un servidor remoto de la hora en la Internet. Para que esta\n"
+"característica funcione, debe tener una conexión con la Internet\n"
+"funcionando. Le recomendamos que elija un servidor de la hora ubicado cerca\n"
+"de Usted. En realidad, esta opción instala un servidor de la hora que\n"
+"también puede ser utilizado por otras máquinas en su red local."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Sincronización automática de la hora"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:223
+#, c-format
msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
+"Graphic Card\n"
"\n"
-"If you don't know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandrivalinux\n"
-"Control Center.\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
msgstr ""
-"En este punto, DrakX le permitirá elegir el nivel de seguridad que desea\n"
-"para su máquina. Como regla general, el nivel de seguridad debería ser\n"
-"mayor si la máquina va a contener datos cruciales, o si estará expuesta\n"
-"directamente a la Internet. No obstante, un nivel de seguridad más alto\n"
-"generalmente se obtiene a expensas de la facilidad de uso.\n"
+"Tarjeta gráfica\n"
"\n"
-"Si no sabe cual elegir, mantenga la opción predeterminada. Podrá cambiarla\n"
-"más adelante con la herramienta draksec, que es parte del Centro de Control\n"
-"de Mandrivalinux.\n"
+" Normalmente el instalador puede detectar y configurar automáticamente la\n"
+"tarjeta de vídeo instalada en su máquina. Si este no es el caso, en esta\n"
+"lista puede elegir la tarjeta que realmente tiene instalada.\n"
"\n"
-"Complete el campo \"%s\" con la dirección de correo electrónico de la\n"
-"persona responsable de la seguridad. Los mensajes relativos a la seguridad\n"
-"se enviarán a esa dirección."
+" En caso de que estén disponibles diferentes servidores para su tarjeta,\n"
+"con o sin aceleración de 3D, entonces se le va a proponer elegir el\n"
+"servidor que mejor satisface sus necesidades."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:234
+#, c-format
msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"isn't in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card isn't the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it isn't\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that doesn't suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandrivalinux Control Center after the installation has finished to benefit\n"
-"from full in-line help.\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
+"Graphic Card\n"
"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandrivalinux Control Center.\n"
"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-"A manera de revisión, DrakX presentará un resumen de las distintas\n"
-"informaciones que recopiló acerca de su sistema. Dependiendo del hardware\n"
-"instalado en su máquina, puede tener algunas o todas las entradas\n"
-"siguientes. Cada entrada está compuesta del elemento a configurar, seguido\n"
-"de un pequeño resumen de la configuración actual. Haga clic sobre el botón\n"
-"\"%s\" correspondiente para hacer los cambios.\n"
"\n"
-" * \"%s\": verifique la configuración de la disposición actual del teclado\n"
-"y cámbiela si es necesario.\n"
+"Monitor\n"
"\n"
-" * \"%s\": verifique la selección actual del país. Si Usted no se encuentra\n"
-"en este país haga clic sobre el botón \"%s\" y seleccione otro. Si su país\n"
-"no se muestra en la primer lista que se muestra, haga clic sobre el botón\n"
-"\"%s\" para obtener la lista completa de países.\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
"\n"
-" * \"%s\": De manera predeterminada DrakX deduce su huso horario basándose\n"
-"en el país que ha elegido. Puede hacer clic sobre el botón \"%s\" si esto\n"
-"no es correcto.\n"
"\n"
-" * \"%s\": verifique la configuración del ratón y haga clic sobre el botón\n"
-"para cambiarla, si es necesario.\n"
"\n"
-" * \"%s\": al hacer clic sobre el botón \"%s\" se abrirá el asistente de\n"
-"configuración de la impresora. Consulte el capítulo correspondiente de la\n"
-"\"Guía de Comienzo\" para más información sobre cómo configurar una\n"
-"impresora nueva. La interfaz presentada allí es similar a la utilizada\n"
-"durante la instalación.\n"
+"Resolution\n"
"\n"
-" * \"%s\": si se detecta una tarjeta de sonido en su sistema, la misma se\n"
-"mostrará aquí. Si nota que la tarjeta de sonido no es la que está realmente\n"
-"presente en su sistema, puede hacer clic sobre el botón y elegir un\n"
-"controlador diferente.\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
"\n"
-" * \"%s\": si se detecta una tarjeta de TV en su sistema, la misma se\n"
-"muestra aquí. Si tiene una tarjeta de TV y la misma no se detecta, haga\n"
-"clic sobre \"%s\" para intentar configurarla a mano.\n"
"\n"
-" * \"%s\": Puede hacer clic sobre \"%s\" para cambiar los parámetros\n"
-"asociados a la tarjeta si cree que no son los correctos.\n"
"\n"
-" * \"%s\": de manera predeterminada DrakX configura su interfaz gráfica en\n"
-"\"800x600\" o \"1024x768\" de resolución. Si eso no le satisface, haga clic\n"
-"sobre \"%s\" para cambiar la configuración su interfaz gráfica.\n"
+"Test\n"
"\n"
-" * \"%s\": si desea configurar ahora el acceso a la Internet o a su red\n"
-"local, puede hacerlo ahora. Consulte la documentación impresa o utilice el\n"
-"Centro de Control de Mandrivalinux luego que finalizó la instalación para\n"
-"aprovechar la ayuda en línea completa.\n"
+" Depending on your hardware, this entry might not appear.\n"
"\n"
-" * \"%s\": permite configurar las direcciones de los proxy HTTP y FTP si la\n"
-"máquina sobre la que está instalando estará ubicada detrás de un servidor\n"
-"proxy.\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
"\n"
-" * \"%s\": esta entrada le ofrece volver a definir el nivel de seguridad\n"
-"como se ajustó en un paso previo (ver ).\n"
"\n"
-" * \"%s\": si planifica conectar su máquina a la Internet, es una buena\n"
-"idea protegerse de las intrusiones configurando un cortafuegos. Consulte la\n"
-"sección correspondiente de la \"Guía de Comienzo\" para detalles acerca de\n"
-"los ajustes del cortafuegos.\n"
"\n"
-" * \"%s\": si desea cambiar la configuración de su cargador de arranque,\n"
-"haga clic sobre este botón. Esto debería estar reservado para los usuarios\n"
-"avanzados. Consulte la documentación impresa o la ayuda en línea acerca de\n"
-"la configuración del cargador de arranque en el Centro de Control de\n"
-"Mandrivalinux.\n"
+"Options\n"
"\n"
-" * \"%s\": por medio de esta entrada podrá tener un control fino sobre qué\n"
-"servicios correrán en su máquina. Si planifica utilizar esta máquina como\n"
-"servidor es una buena idea revisar estos ajustes."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
msgstr ""
-"En caso de que estén disponibles diferentes servidores para su tarjeta, con\n"
-"o sin aceleración de 3D, entonces se le va a proponer elegir el servidor\n"
-"que mejor satisface sus necesidades."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
+"X (por \"X Window System\") es el corazón de la interfaz gráfica de\n"
+"GNU/Linux en el que se apoyan todos los entornos gráficos (KDE, GNOME,\n"
+"AfterStep, WindowMaker, etc.) que se incluyen con Mandriva Linux.\n"
"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
+"Se le presentará la lista de parámetros diferentes a cambiar para obtener\n"
+"una presentación gráfica óptima.\n"
"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
+"Tarjeta gráfica\n"
"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
+" Normalmente el instalador puede detectar y configurar automáticamente la\n"
+"tarjeta de vídeo instalada en su máquina. Si este no es el caso, en esta\n"
+"lista puede elegir la tarjeta que realmente tiene instalada.\n"
"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
+" En caso de que estén disponibles diferentes servidores para su tarjeta,\n"
+"con o sin aceleración de 3D, entonces se le va a proponer elegir el\n"
+"servidor que mejor satisface sus necesidades.\n"
"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-"Por lo general, DrakX no tiene problemas en detectar la cantidad de botones\n"
-"de su ratón. Si no es así, asume que Usted tiene un ratón de dos botones y\n"
-"lo configurará para que emule el tercero. El tercer botón del ratón en un\n"
-"ratón de dos botones se puede \"obtener\" haciendo clic simultáneamente\n"
-"sobre el botón izquierdo y el derecho. DrakX sabrá automáticamente si su\n"
-"ratón utiliza una interfaz PS/2, serie o USB.\n"
"\n"
-"En caso que tenga un ratón de 3 botones sin rueda, puede elegir un ratón\n"
-"\"%s\". Entonces, DrakX configurará su ratón de forma tal que pueda simular\n"
-"la rueda con el mismo: para hacerlo, presione el botón del medio y, sin\n"
-"soltarlo, mueva el puntero de su ratón arriba y abajo.\n"
"\n"
-"Si, por alguna razón, desea especificar un tipo de ratón diferente,\n"
-"selecciónelo de la lista que se proporciona.\n"
+"Monitor\n"
"\n"
-"Puede seleccionar la entrada \"%s\" para elegir un tipo de ratón\n"
-"\"genérico\" que funcionará con casi todos los ratones.\n"
+" Normalmente el instalador puede detectar y configurar automáticamente el\n"
+"monitor conectado a su máquina. Si es incorrecto, en esta lista puede\n"
+"elegir el monitor que realmente posee.\n"
"\n"
-"Si elige un ratón distinto al predeterminado, se mostrará una pantalla de\n"
-"prueba. Use los botones y la rueda para verificar que los ajustes son\n"
-"correctos y que el ratón está funcionando correctamente. Si el ratón no\n"
-"está funcionando bien, presione la [barra espaciadora] o la tecla [Intro]\n"
-"para cancelar la prueba y volverá a la lista de opciones.\n"
"\n"
-"Ocasionalmente, los ratones con rueda no se detectan automáticamente, por\n"
-"lo que deberá seleccionar su ratón de una lista. Debe asegurarse de\n"
-"seleccionar el correspondiente al puerto en el cual está conectado su\n"
-"ratón. Después de seleccionar un ratón y presionar el botón \"%s\", se\n"
-"mostrará la imagen de un ratón en la pantalla. Mueva la rueda de su ratón\n"
-"para asegurarse que está activa correctamente. A medida que mueva la rueda,\n"
-"verá que se mueve la rueda en la pantalla. Pruebe los botones y verifique\n"
-"que el puntero del ratón se mueve en la pantalla a medida que mueve su\n"
-"ratón."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"Graphic Card\n"
"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
+"Resolución\n"
"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-"Tarjeta gráfica\n"
+" Aquí puede elegir las resoluciones y profundidades de color disponibles\n"
+"para su hardware de gráficos. Seleccione la que mejor se ajuste a sus\n"
+"necesidades (podrá hacer cambios luego de la instalación). En la imagen del\n"
+"monitor se muestra un ejemplo de la configuración elegida.\n"
"\n"
-" Normalmente el instalador puede detectar y configurar automáticamente la\n"
-"tarjeta de vídeo instalada en su máquina. Si este no es el caso, en esta\n"
-"lista puede elegir la tarjeta que realmente tiene instalada.\n"
"\n"
-" En caso de que estén disponibles diferentes servidores para su tarjeta,\n"
-"con o sin aceleración de 3D, entonces se le va a proponer elegir el\n"
-"servidor que mejor satisface sus necesidades."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandrivalinux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-"Antes de continuar, debería leer cuidadosamente los términos de la\n"
-"licencia. La misma cubre a toda la distribución Mandrivalinux. Si está de\n"
-"acuerdo con todos los términos en la misma, haga clic en el botón \"%s\".\n"
-"Si no, haga clic en el botón \"%s\" lo que reiniciará su computadora."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which aren't needed at boot\n"
-"time.\n"
+"Probar\n"
"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
+" Esta entrada puede no aparecer, dependiendo de su hardware.\n"
"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably don't want to start any services which you don't need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-"Este diálogo se usa para elegir cuáles servicios Usted desea que se inicien\n"
-"durante el arranque.\n"
+" El sistema intentará abrir una pantalla gráfica con la resolución\n"
+"deseada. Si ve el mensaje durante la prueba, y responde \"%s\", entonces\n"
+"DrakX continuará con el paso siguiente. Si no puede ver el mensaje,\n"
+"entonces significa que alguna parte de la configuración detectada\n"
+"automáticamente era incorrecta y la prueba terminará automáticamente luego\n"
+"de unos segundos, restaurando el menú. Cambie los ajustes hasta obtener una\n"
+"pantalla gráfica correcta.\n"
"\n"
-"DrakX listará todos los servicios disponibles en la instalación corriente.\n"
-"Revíselos con cuidado y quite la marca de aquellos que no son necesarios al\n"
-"arrancar.\n"
"\n"
-"Cuando se selecciona un servicio obtendrá un pequeño texto explicativo\n"
-"acerca del mismo. Sin embargo, si no está seguro si un servicio es útil o\n"
-"no, es más seguro dejar el comportamiento predeterminado.\n"
"\n"
-"!! Tenga mucho cuidado en esta etapa si pretende usar su máquina como un\n"
-"servidor: probablemente no desea iniciar servicios que no necesita. Por\n"
-"favor recuerde que algunos servicios pueden ser peligrosos si están\n"
-"habilitados en un servidor. En general, seleccione sólo aquellos servicios\n"
-"que realmente necesita. !!"
+"Opciones\n"
+"\n"
+" Este paso le permite elegir si desea que su máquina cambie\n"
+"automáticamente a la interfaz gráfica al arrancar. Obviamente, querrá\n"
+"marcar \"%s\" si su sistema actuará como servidor, o si no tuvo éxito en la\n"
+"configuración de su pantalla."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:291
+#, c-format
msgid ""
"Monitor\n"
"\n"
@@ -1407,205 +683,204 @@ msgstr ""
"elegir el monitor que realmente posee."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:298
+#, c-format
msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
+"Resolution\n"
"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
msgstr ""
-"GNU/Linux administra la hora en GMT (\"Greenwich Mean Time\", Hora del\n"
-"Meridiano de Greenwich) y la traduce a la hora local de acuerdo al huso\n"
-"horario que Usted seleccionó. Sin embargo, es posible desactivar esto\n"
-"quitando la marca de la casilla \"%s\", lo que hará que GNU/Linux sepa que\n"
-"el reloj del sistema y el reloj de hardware están en el mismo huso horario.\n"
-"Esto es útil cuando la máquina también alberga otro sistema operativo.\n"
+"Resolución\n"
"\n"
-"La opción \"%s\" regulará automáticamente el reloj del sistema conectándose\n"
-"a un servidor remoto de la hora en la Internet. Para que esta\n"
-"característica funcione, debe tener una conexión con la Internet\n"
-"funcionando. Le recomendamos que elija un servidor de la hora ubicado cerca\n"
-"de Usted. En realidad, esta opción instala un servidor de la hora que\n"
-"también puede ser utilizado por otras máquinas en su red local."
+" Aquí puede elegir las resoluciones y profundidades de color disponibles\n"
+"para su hardware de gráficos. Seleccione la que mejor se ajuste a sus\n"
+"necesidades (podrá hacer cambios luego de la instalación). En la imagen del\n"
+"monitor se muestra un ejemplo de la configuración elegida."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:306
+#, c-format
msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
msgstr ""
-"Aquí se listan las particiones Linux existentes que se detectaron en su\n"
-"disco rígido. Puede mantener las elecciones hechas por el asistente, ya que\n"
-"las mismas son buenas para las instalaciones más comunes. Si hace cambios,\n"
-"al menos debe definir una partición raíz (\"/\"). No elija una partición\n"
-"muy pequeña o no podrá instalar software suficiente. Si desea almacenar sus\n"
-"datos en una partición separada, también puede necesitar crear una\n"
-"partición para \"/home\" (sólo es posible si tiene más de una partición\n"
-"Linux disponible)\n"
-"\n"
-"Cada partición se lista como sigue: \"Nombre\", \"Capacidad\".\n"
+"En caso de que estén disponibles diferentes servidores para su tarjeta, con\n"
+"o sin aceleración de 3D, entonces se le va a proponer elegir el servidor\n"
+"que mejor satisface sus necesidades."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
"\n"
-"\"Nombre\" está estructurado: \"tipo de disco rígido\", \"número de disco\n"
-"rígido\", \"número de partición\" (por ejemplo, \"hda1\").\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Opciones\n"
"\n"
-"\"Tipo de disco rígido\" es \"hd\" si su disco es un disco IDE y \"sd\" si\n"
-"el mismo es un disco SCSI.\n"
+" Este paso le permite elegir si desea que su máquina cambie\n"
+"automáticamente a la interfaz gráfica al arrancar. Obviamente, querrá\n"
+"marcar \"%s\" si su sistema actuará como servidor, o si no tuvo éxito en la\n"
+"configuración de su pantalla."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
"\n"
-"\"Número de disco rígido\" siempre es una letra que sigue a \"hd\" o a\n"
-"\"sd\". Para los discos IDE:\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
"\n"
-" * \"a\" significa \"disco rígido maestro en la controladora IDE\n"
-"primaria\",\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
"\n"
-" * \"b\" significa \"disco rígido esclavo en la controladora IDE\n"
-"primaria\",\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
"\n"
-" * \"c\" significa \"disco rígido maestro en la controladora IDE\n"
-"secundaria\",\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
"\n"
-" * \"d\" significa \"disco rígido esclavo en la controladora IDE\n"
-"secundaria\".\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
"\n"
-"Para los discos SCSI, una \"a\" significa \"SCSI ID menor\", una \"b\"\n"
-"significa \"segunda SCSI ID menor\", etc."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country isn't in the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-"\"%s\": verifique la selección actual del país. Si Usted no se encuentra en\n"
-"este país haga clic sobre el botón \"%s\" y seleccione otro. Si su país no\n"
-"se muestra en la primer lista que se muestra, haga clic sobre el botón\n"
-"\"%s\" para obtener la lista completa de países."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you don't have to reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"won't be able to recover it.\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrivalinux operating system installation.\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
msgstr ""
-"Si desea volver a utilizar algunas particiones GNU/Linux legadas, puede\n"
-"desear volver a formatear algunas de ellas y borrar cualquier dato que\n"
-"pudieran contener. Para hacerlo, por favor seleccione también dichas\n"
-"particiones.\n"
+"Ahora necesita elegir el lugar de su disco rígido donde se instalará su\n"
+"sistema operativo Mandriva Linux. Si su disco rígido está vacío o si un\n"
+"sistema operativo existente está utilizando todo el espacio disponible,\n"
+"necesitará particionar el disco. Básicamente, particionar un disco rígido\n"
+"consiste en dividirlo lógicamente para crear espacio para instalar su\n"
+"sistema Mandriva Linux nuevo.\n"
"\n"
-"Por favor note que no es necesario volver a formatear todas las particiones\n"
-"preexistentes. Debe volver a formatear las particiones que contienen el\n"
-"sistema operativo (tales como \"/\", \"/usr\" o \"/var\") pero no tiene que\n"
-"volver a formatear particiones que contienen datos que desea preservar\n"
-"(típicamente \"/home\")\n"
+"Debido a que el proceso de particionado de un disco rígido por lo general\n"
+"es irreversible y puede llevar a pérdida de datos, el particionado puede\n"
+"ser intimidante y estresante si Usted es un usuario inexperto. Por fortuna,\n"
+"DrakX incluye un asistente que simplifica este proceso. Antes de continuar\n"
+"con este paso, por favor lea el resto de esta sección y, por sobre todo,\n"
+"tómese su tiempo.\n"
"\n"
-"Por favor, tenga sumo cuidado cuando selecciona las particiones. Después de\n"
-"formatear se borrarán todos los datos en las particiones seleccionadas y no\n"
-"podrá recuperarlos en absoluto.\n"
+"Dependiendo de la configuración de su disco rígido, están disponibles\n"
+"varias opciones:\n"
"\n"
-"Haga clic sobre \"%s\" cuando esté listo para formatear las particiones.\n"
+" * \"%s\". Esta opción simplemente llevará a un particionado automático de\n"
+"su(s) disco(s) vacío(s). Si elige esta opción, no se le pedirán más\n"
+"detalles ni se le formularán más preguntas.\n"
"\n"
-"Haga clic sobre \"%s\" si desea elegir otra partición para la instalación\n"
-"de su sistema operativo Mandrivalinux nuevo.\n"
+" * \"%s\". El asistente ha detectado una o más particiones Linux existentes\n"
+"en su disco rígido. Si desea utilizarlas, elija esta opción. Entonces se le\n"
+"pedirá que elija los puntos de montaje asociados a cada una de las\n"
+"particiones. Los puntos de montaje legados se seleccionan de manera\n"
+"predeterminada, y por lo general es buena idea mantenerlos.\n"
"\n"
-"Haga clic sobre \"%s\" si desea seleccionar las particiones del disco en\n"
-"las que se buscarán bloques defectuosos."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
+" * \"%s\". Si Microsoft Windows está instalado en su disco rígido y ocupa\n"
+"todo el espacio disponible en el mismo, Usted tendrá que liberar espacio\n"
+"para Linux. Para hacerlo, puede borrar su partición y datos Microsoft\n"
+"Windows (vea la solución \"Borrar el disco entero\") o cambiar el tamaño de\n"
+"su partición Microsoft Windows FAT o NTFS. El cambio de tamaño se puede\n"
+"realizar sin la pérdida de datos, siempre y cuando Usted haya\n"
+"desfragmentado con anterioridad la partición Windows. Es altamente\n"
+"recomendable hacer una copia de respaldo de sus datos. Se recomienda usar\n"
+"esta solución si desea utilizar tanto Mandriva Linux como Microsoft Windows\n"
+"en la misma computadora.\n"
"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard don't match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
+" Antes de elegir esta opción, por favor comprenda que después de este\n"
+"procedimiento el tamaño de su partición Microsoft Windows será más pequeño\n"
+"que cuando comenzó. Tendrá menos espacio bajo Microsoft Windows para\n"
+"almacenar sus datos o instalar software nuevo.\n"
"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+" * \"%s\". Si desea borrar todos los datos y todas las particiones\n"
+"presentes en su disco rígido y reemplazarlos con su nuevo sistema\n"
+"Mandriva Linux, seleccione esta opción. Tenga cuidado con esta solución ya\n"
+"que no podrá revertir su elección después de confirmarla.\n"
"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-"Dependiendo del idioma que eligió (ver ), DrakX seleccionará\n"
-"automáticamente un tipo particular de configuración del teclado. Verifique\n"
-"que la selección le satisface o elija otra distribución de teclado.\n"
+" !! Si elige esta opción, se perderán todos los datos en su disco. !!\n"
"\n"
-"También, puede ser que Usted no tenga un teclado que se corresponde\n"
-"exactamente con su idioma: por ejemplo, si Usted es un argentino que habla\n"
-"inglés, puede ser que tenga un teclado latino americano. O si habla\n"
-"castellano pero está en Inglaterra puede estar en la misma situación en la\n"
-"cual su idioma nativo y su teclado no coinciden. En cualquier caso, este\n"
-"paso de instalación le permitirá elegir un teclado apropiado de una lista.\n"
+" * \"%s\". Esta opción aparece cuando todo el disco está tomado por\n"
+"Microsoft Windows. Al elegir esta opción simplemente se borrará todo el\n"
+"disco y se comenzará desde cero, particionando todo de nuevo.\n"
"\n"
-"Haga clic sobre el botón \"%s\" para que se le presente la lista completa\n"
-"de los teclados soportados.\n"
+" !! Si elige esta opción, se perderán todos los datos en su disco. !!\n"
"\n"
-"Si eligió una distribución de teclado basada en un alfabeto no latino, el\n"
-"próximo diálogo le permitirá elegir la combinación de teclas que cambiará\n"
-"la distribución del teclado entre la latina y la no latina."
+" * \"%s\": elija esta opción si desea particionar manualmente su disco\n"
+"rígido. Tenga cuidado - esta es una elección potente pero peligrosa y puede\n"
+"perder todos sus datos con facilidad. Esa es la razón por la cual esta\n"
+"opción realmente sólo se recomienda si ha hecho algo como esto antes y\n"
+"tiene algo de experiencia. Para más instrucciones acerca de la utilización\n"
+"del utilitario DiskDrake, consulte la sección \"Administrar sus\n"
+"particiones\" de la \"Guía de Comienzo\"."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Usar la partición existente"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Borrar el disco entero"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:380
+#, c-format
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Don't forget\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
"to remove the installation media (CD-ROM or floppy). The first thing you\n"
"should see after your computer has finished doing its hardware tests is the\n"
"boot-loader menu, giving you the choice of which operating system to start.\n"
@@ -1673,11 +948,135 @@ msgstr ""
"teclee \"mformat a:\", o \"fdformat /dev/fd0\" seguido de \"mkfs.vfat\n"
"/dev/fd0\"."
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Generar un disquete de instalación automática"
+
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Si desea volver a utilizar algunas particiones GNU/Linux legadas, puede\n"
+"desear volver a formatear algunas de ellas y borrar cualquier dato que\n"
+"pudieran contener. Para hacerlo, por favor seleccione también dichas\n"
+"particiones.\n"
+"\n"
+"Por favor note que no es necesario volver a formatear todas las particiones\n"
+"preexistentes. Debe volver a formatear las particiones que contienen el\n"
+"sistema operativo (tales como \"/\", \"/usr\" o \"/var\") pero no tiene que\n"
+"volver a formatear particiones que contienen datos que desea preservar\n"
+"(típicamente \"/home\")\n"
+"\n"
+"Por favor, tenga sumo cuidado cuando selecciona las particiones. Después de\n"
+"formatear se borrarán todos los datos en las particiones seleccionadas y no\n"
+"podrá recuperarlos en absoluto.\n"
+"\n"
+"Haga clic sobre \"%s\" cuando esté listo para formatear las particiones.\n"
+"\n"
+"Haga clic sobre \"%s\" si desea elegir otra partición para la instalación\n"
+"de su sistema operativo Mandriva Linux nuevo.\n"
+"\n"
+"Haga clic sobre \"%s\" si desea seleccionar las particiones del disco en\n"
+"las que se buscarán bloques defectuosos."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Es probable que cuando instale Mandriva Linux algunos paquetes se hayan\n"
+"actualizado desde la publicación inicial. Se pueden haber corregido errores\n"
+"y solucionado problemas de seguridad. Para permitir que Usted se beneficie\n"
+"de estas actualizaciones, ahora las puede descargar desde la Internet.\n"
+"Marque \"%s\" si tiene funcionando una conexión con la Internet, o \"%s\"\n"
+"si prefiere instalar los paquetes actualizados más tarde.\n"
+"\n"
+"Al elegir \"%s\" se mostrará una lista de lugares desde los que se pueden\n"
+"obtener las actualizaciones. Debería elegir el más cercano a Usted.\n"
+"Aparecerá un árbol de selección de paquetes: revise la selección y presione\n"
+"\"%s\" para obtener e instalar los paquetes seleccionados, o \"%s\" para\n"
+"abortar."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"En este punto, DrakX le permitirá elegir el nivel de seguridad que desea\n"
+"para su máquina. Como regla general, el nivel de seguridad debería ser\n"
+"mayor si la máquina va a contener datos cruciales, o si estará expuesta\n"
+"directamente a la Internet. No obstante, un nivel de seguridad más alto\n"
+"generalmente se obtiene a expensas de la facilidad de uso.\n"
+"\n"
+"Si no sabe cual elegir, mantenga la opción predeterminada. Podrá cambiarla\n"
+"más adelante con la herramienta draksec, que es parte del Centro de Control\n"
+"de Mandriva Linux.\n"
+"\n"
+"Complete el campo \"%s\" con la dirección de correo electrónico de la\n"
+"persona responsable de la seguridad. Los mensajes relativos a la seguridad\n"
+"se enviarán a esa dirección."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Administrador de seguridad"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:464
+#, c-format
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrivalinux system. If partitions have already been\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
"defined, either from a previous installation of GNU/Linux or by another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
@@ -1703,7 +1102,7 @@ msgid ""
"floppy disk.\n"
"\n"
" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it doesn't always\n"
+"using this option. Please be careful and remember that it does not always\n"
"work.\n"
"\n"
" * \"%s\": discards all changes and reloads the partition table that was\n"
@@ -1748,8 +1147,8 @@ msgid ""
"emergency boot situations."
msgstr ""
"Ahora necesita elegir qué particiones se utilizarán para la instalación de\n"
-"su sistema Mandrivalinux. Si ya se han definido particiones, ya sea por una\n"
-"instalación previa de GNU/Linux o con otra herramienta de particionado,\n"
+"su sistema Mandriva Linux. Si ya se han definido particiones, ya sea por\n"
+"una instalación previa de GNU/Linux o con otra herramienta de particionado,\n"
"puede utilizarlas. De lo contrario, se deben definir particiones en el\n"
"disco rígido.\n"
"\n"
@@ -1825,3 +1224,823 @@ msgstr ""
"50 MB, puede ver que es un lugar útil para almacenar un núcleo y ramdisk\n"
"alternativos para arrancar en situaciones de emergencia."
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Montaje automático de soportes extraíbles"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Cambiar entre el modo normal/experto"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Se ha detectado más de una partición Microsoft Windows en su disco rígido.\n"
+"Por favor, elija aquella a la cual desea cambiar el tamaño para poder\n"
+"instalar su sistema operativo Mandriva Linux nuevo.\n"
+"\n"
+"Cada partición se lista como sigue: \"Nombre Linux\", \"Nombre Windows\",\n"
+"\"Capacidad\".\n"
+"\n"
+"\"Nombre Linux\" está estructurado: \"tipo de disco rígido\", \"número de\n"
+"disco rígido\", \"número de partición\" (por ejemplo, \"hda1\").\n"
+"\n"
+"\"Tipo de disco rígido\" es \"hd\" si su disco es un disco IDE y \"sd\" si\n"
+"el mismo es un disco SCSI.\n"
+"\n"
+"\"Número de disco rígido\" siempre es una letra que sigue a \"hd\" o a\n"
+"\"sd\". Para los discos IDE:\n"
+"\n"
+" * \"a\" significa \"disco rígido maestro en la controladora IDE\n"
+"primaria\",\n"
+"\n"
+" * \"b\" significa \"disco rígido esclavo en la controladora IDE\n"
+"primaria\",\n"
+"\n"
+" * \"c\" significa \"disco rígido maestro en la controladora IDE\n"
+"secundaria\",\n"
+"\n"
+" * \"d\" significa \"disco rígido esclavo en la controladora IDE\n"
+"secundaria\".\n"
+"\n"
+"Para los discos SCSI, una \"a\" significa \"SCSI ID menor\", una \"b\"\n"
+"significa \"segunda SCSI ID menor\", etc.\n"
+"\n"
+"\"Nombre Windows\" es la letra de su unidad de disco bajo Windows (el\n"
+"primer disco o partición se denomina \"C:\")."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": verifique la selección actual del país. Si Usted no se encuentra en\n"
+"este país haga clic sobre el botón \"%s\" y seleccione otro. Si su país no\n"
+"se muestra en la primer lista que se muestra, haga clic sobre el botón\n"
+"\"%s\" para obtener la lista completa de países."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Este paso se activa sólo si se encontró una partición GNU/Linux existente\n"
+"en su máquina.\n"
+"\n"
+"DrakX ahora necesita saber si desea realizar una instalación nueva o una\n"
+"actualización de un sistema Mandriva Linux existente:\n"
+"\n"
+" * \"%s\". En gran parte, esta opción borrará por completo el sistema\n"
+"anterior. Sin embargo, dependiendo de su esquema de particiones, puede\n"
+"evitar que se sobre-escriban algunos datos existentes (notablemente los\n"
+"directorios de \"home\"). Si desea cambiar la forma en la que se\n"
+"particionan sus discos, debería usar esta opción.\n"
+"\n"
+" * \"%s\": Esta clase de instalación le permite actualizar los paquetes que\n"
+"en este momento están instalados en su sistema Mandriva Linux. No se "
+"alteran\n"
+"las particiones corrientes de sus discos ni los datos de los usuarios. La\n"
+"mayoría de los otros pasos de configuración permanecen disponibles y son\n"
+"similares a una instalación estándar.\n"
+"\n"
+"El uso de la opción \"Actualizar\" debería funcionar sin problemas para los\n"
+"sistemas Mandriva Linux que corren la versión \"8.1\" o una posterior. No "
+"se\n"
+"recomienda realizar una actualización sobre versiones anteriores a\n"
+"Mandriva Linux versión \"8.1\"."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Dependiendo del idioma que eligió (ver ), DrakX seleccionará\n"
+"automáticamente un tipo particular de configuración del teclado. Verifique\n"
+"que la selección le satisface o elija otra distribución de teclado.\n"
+"\n"
+"También, puede ser que Usted no tenga un teclado que se corresponde\n"
+"exactamente con su idioma: por ejemplo, si Usted es un argentino que habla\n"
+"inglés, puede ser que tenga un teclado latino americano. O si habla\n"
+"castellano pero está en Inglaterra puede estar en la misma situación en la\n"
+"cual su idioma nativo y su teclado no coinciden. En cualquier caso, este\n"
+"paso de instalación le permitirá elegir un teclado apropiado de una lista.\n"
+"\n"
+"Haga clic sobre el botón \"%s\" para que se le presente la lista completa\n"
+"de los teclados soportados.\n"
+"\n"
+"Si eligió una distribución de teclado basada en un alfabeto no latino, el\n"
+"próximo diálogo le permitirá elegir la combinación de teclas que cambiará\n"
+"la distribución del teclado entre la latina y la no latina."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"El primer paso es elegir el idioma que prefiere.\n"
+"\n"
+"Su elección de idioma preferido afectará al idioma del instalador, de la\n"
+"documentación, y del sistema en general. Seleccione primero la región en la\n"
+"que se encuentra, y luego el idioma que habla.\n"
+"\n"
+"Al hacer clic sobre el botón \"%s\" (Avanzada) podrá seleccionar otros\n"
+"idiomas para instalar en su sistema, instalando así los archivos\n"
+"específicos para esos idiomas para la documentación y las aplicaciones. Por\n"
+"ejemplo, si albergará a gente de Francia en su máquina, seleccione Español\n"
+"como idioma principal en la vista de árbol y \"%s\" en la sección avanzada.\n"
+"\n"
+"Acerca del soporte UTF-8 (Unicode): Unicode es una codificación nueva de\n"
+"caracteres que pretende cubrir todos los idiomas existentes. Sin embargo,\n"
+"el soporte completo para Unicode bajo GNU/Linux todavía está en desarrollo.\n"
+"Por esta razón, Mandriva Linux lo usará o no dependiendo de las elecciones\n"
+"del usuario:\n"
+"\n"
+" * Si elige un idioma con codificación legada fuerte (idiomas latin1, ruso,\n"
+"japonés, chino, coreano, thai, griego, turco, la mayoría de los idiomas\n"
+"ISO-8859-2), de manera predeterminada se usará la codificación legada.\n"
+"\n"
+" * Otros idiomas utilizarán Unicode de manera predeterminada.\n"
+"\n"
+" * Si se necesitan dos o más idiomas, y dichos idiomas no utilizan la misma\n"
+"codificación, entonces el sistema completo utilizará Unicode.\n"
+"\n"
+" * Finalmente, también se puede forzar el uso de Unicode para todo el\n"
+"sistema a pedido del usuario seleccionando la opción \"%s\" sin importar\n"
+"qué idiomas han sido seleccionados.\n"
+"\n"
+"Note que no está limitado a elegir un único idioma adicional. Puede elegir\n"
+"varios, o incluso instalarlos a todos marcando la casilla \"%s\".\n"
+"Seleccionar el soporte para un idioma significa que se instalarán las\n"
+"traducciones, tipografías, correctores ortográficos, etc. para dicho\n"
+"idioma.\n"
+"\n"
+"Puede ejecutar el comando \"localedrake\" como \"root\" para cambiar el\n"
+"idioma de todo el sistema de uno a otro. Ejecutar el comando como usuario\n"
+"no privilegiado sólo cambiará la configuración de idioma para ese usuario\n"
+"en particular."
+
+# este es el idioma de ejemplo en la ayuda de la seleccion de idiomas;
+# en la traduccion de la ayuda se usa el frances como idioma extra de ejemplo
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Français"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Por lo general, DrakX no tiene problemas en detectar la cantidad de botones\n"
+"de su ratón. Si no es así, asume que Usted tiene un ratón de dos botones y\n"
+"lo configurará para que emule el tercero. El tercer botón del ratón en un\n"
+"ratón de dos botones se puede \"obtener\" haciendo clic simultáneamente\n"
+"sobre el botón izquierdo y el derecho. DrakX sabrá automáticamente si su\n"
+"ratón utiliza una interfaz PS/2, serie o USB.\n"
+"\n"
+"En caso que tenga un ratón de 3 botones sin rueda, puede elegir un ratón\n"
+"\"%s\". Entonces, DrakX configurará su ratón de forma tal que pueda simular\n"
+"la rueda con el mismo: para hacerlo, presione el botón del medio y, sin\n"
+"soltarlo, mueva el puntero de su ratón arriba y abajo.\n"
+"\n"
+"Si, por alguna razón, desea especificar un tipo de ratón diferente,\n"
+"selecciónelo de la lista que se proporciona.\n"
+"\n"
+"Puede seleccionar la entrada \"%s\" para elegir un tipo de ratón\n"
+"\"genérico\" que funcionará con casi todos los ratones.\n"
+"\n"
+"Si elige un ratón distinto al predeterminado, se mostrará una pantalla de\n"
+"prueba. Use los botones y la rueda para verificar que los ajustes son\n"
+"correctos y que el ratón está funcionando correctamente. Si el ratón no\n"
+"está funcionando bien, presione la [barra espaciadora] o la tecla [Intro]\n"
+"para cancelar la prueba y volverá a la lista de opciones.\n"
+"\n"
+"Ocasionalmente, los ratones con rueda no se detectan automáticamente, por\n"
+"lo que deberá seleccionar su ratón de una lista. Debe asegurarse de\n"
+"seleccionar el correspondiente al puerto en el cual está conectado su\n"
+"ratón. Después de seleccionar un ratón y presionar el botón \"%s\", se\n"
+"mostrará la imagen de un ratón en la pantalla. Mueva la rueda de su ratón\n"
+"para asegurarse que está activa correctamente. A medida que mueva la rueda,\n"
+"verá que se mueve la rueda en la pantalla. Pruebe los botones y verifique\n"
+"que el puntero del ratón se mueve en la pantalla a medida que mueve su\n"
+"ratón."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "Con emulación de rueda"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Universal | Cualquier ratón PS/2 y USB"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Por favor, seleccione el puerto correcto. Por ejemplo, el puerto \"COM1\"\n"
+"bajo Windows se denomina \"ttyS0\" bajo GNU/Linux."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Este es el punto de decisión más crucial para la seguridad de su sistema\n"
+"GNU/Linux: tendrá que ingresar la contraseña de \"root\". El usuario\n"
+"\"root\" es el administrador del sistema y es el único autorizado a hacer\n"
+"actualizaciones, agregar usuarios, cambiar la configuración general del\n"
+"sistema, etc. Resumiendo, ¡\"root\" puede hacer de todo! Es por esto que\n"
+"deberá elegir una contraseña que sea difícil de adivinar - DrakX le dirá si\n"
+"la que eligió es demasiado fácil. Como puede ver, no es forzoso ingresar\n"
+"una contraseña, pero le recomendamos encarecidamente que ingrese una.\n"
+"GNU/Linux es tan propenso a errores del operador como cualquier otro\n"
+"sistema operativo. Es importante que sea difícil convertirse en \"root\"\n"
+"debido a que \"root\" puede sobrepasar todas las limitaciones y borrar, sin\n"
+"intención, todos los datos que se encuentran en las particiones accediendo\n"
+"a las mismas sin el cuidado suficiente.\n"
+"\n"
+"La contraseña debería ser una mezcla de caracteres alfanuméricos y tener al\n"
+"menos una longitud de 8 caracteres. Nunca escriba la contraseña de \"root\"\n"
+"- por ejemplo, en un papel - eso hace que sea muy fácil comprometer su\n"
+"sistema.\n"
+"\n"
+"Sin embargo, no debería hacer la contraseña muy larga o complicada ¡debido\n"
+"a que Usted debe poder recordarla!\n"
+"\n"
+"La contraseña no se mostrará en la pantalla a medida que Usted la teclee.\n"
+"Deberá teclear la contraseña dos veces para reducir la posibilidad de un\n"
+"error de tecleo a ciegas. Si ocurre que Usted comete dos veces el mismo\n"
+"error de tecleo, tendrá que utilizar esta contraseña \"incorrecta\" la\n"
+"primera vez que intente conectarse como \"root\".\n"
+"\n"
+"Si desea utilizar un servidor de autenticación para controlar el acceso a\n"
+"su computadora, haga clic sobre el botón \"%s\".\n"
+"\n"
+"Si su red usa los protocolos LDAP, NIS, o servicios de autenticación de PDC\n"
+"Dominio de Windows, seleccione el apropiado como método de %s.\n"
+"Si no sabe cual utilizar, debería preguntar al administrador de su red.\n"
+"\n"
+"Si ocurre que tiene problemas para recordar contraseñas, o si su\n"
+"computadora nunca estará conectada a la Internet y Usted confía\n"
+"absolutamente en cualquier persona que tenga acceso a la misma, puede\n"
+"elegir el botón \"%s\"."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "autenticación"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Un cargador de arranque es un pequeño programa que la computadora inicia al\n"
+"momento del arranque. Es el responsable de arrancar todo el sistema.\n"
+"Normalmente la instalación del cargador de arranque está completamente\n"
+"automatizada. DrakX analizará el sector de arranque del disco y actuará en\n"
+"función de lo que encuentre allí:\n"
+"\n"
+" * Si encuentra un sector de arranque de Windows, lo reemplazará con un\n"
+"sector de arranque de GRUB/LILO de forma tal que Usted pueda cargar\n"
+"GNU/Linux o cualquier otro sistema operativo instalado en su máquina.\n"
+"\n"
+" * Si encuentra un sector de arranque de GRUB o LILO, lo reemplazará con\n"
+"uno nuevo.\n"
+"\n"
+"Si no puede realizar una determinación, DrakX le preguntará dónde colocar\n"
+"el cargador de arranque. Generalmente, el \"%s\" es el lugar más seguro. Si\n"
+"no va a instalar cargador de arranque alguno seleccione \"%s\". Úselo\n"
+"solamente si sabe lo que está haciendo."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Ahora es el momento de seleccionar un sistema de impresión para su\n"
+"computadora. Otros sistemas operativos pueden ofrecerle uno, pero\n"
+"Mandriva Linux le ofrece dos. Cada uno de los sistemas de impresión es más\n"
+"adecuado para tipos de configuración particulares.\n"
+"\n"
+" * \"%s\" - \"print, do not queue\" (imprimir sin poner en cola) es la\n"
+"elección si Usted tiene una conexión directa a su impresora y desea evitar\n"
+"el pánico de los papeles trabados, y no tiene impresora en red alguna\n"
+"(\"%s\" manejará sólo casos de red muy simples y es algo lento cuando se\n"
+"utiliza con las redes) Se recomienda utilizar \"pdq\" si esta es su primer\n"
+"experiencia con GNU/Linux.\n"
+"\n"
+" * \"%s\" - \"Common Unix Printing System\"punta (Sistema de Impresión\n"
+"Común de Unix) es una elección excelente para imprimir en su impresora\n"
+"local o en una que se encuentre al otro lado del planeta. Es simple de\n"
+"configurar y puede actuar como servidor o cliente para el sistema de\n"
+"impresión antiguo \"lpd\", por lo que es compatible con sistemas operativos\n"
+"más antiguos que todavía pueden necesitar servicios de impresión. Si bien\n"
+"es bastante potente, la configuración básica es tan simple como la de\n"
+"\"pdq\". Si necesita que emule a un servidor \"lpd\", debe activar el\n"
+"demonio \"cups-lpd\". \"%s\" incluye interfaces gráficas para imprimir o\n"
+"elegir las opciones de la impresora y para administrar la impresora.\n"
+"\n"
+"Si hace una elección ahora y más tarde encuentra que a Usted no le gusta su\n"
+"sistema de impresión, puede cambiarlo ejecutando PrinterDrake desde el\n"
+"Centro de Control de Mandriva Linux y haciendo clic sobre el botón \"%s\"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Experto"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX primero detectará cualquier dispositivo IDE presente en su\n"
+"computadora. También buscará una o más tarjetas SCSI PCI en su sistema. Si\n"
+"se encuentra una tarjeta SCSI, DrakX instalará automáticamente el\n"
+"controlador apropiado.\n"
+"\n"
+"Debido a que la detección de hardware no es a prueba de errores, DrakX\n"
+"puede no detectar sus discos rígidos. De ser así, Usted tendrá que\n"
+"especificar su hardware manualmente.\n"
+"\n"
+"Si tuviese que especificar su adaptador SCSI PCI manualmente, DrakX le\n"
+"preguntará si desea configurar opciones para el mismo. Debería permitir a\n"
+"DrakX sondear el hardware en busca de las opciones específicas de la\n"
+"tarjeta que son necesarias para inicializar el adaptador. La mayoría de las\n"
+"veces, DrakX saldrá adelante en este paso sin problema alguno.\n"
+"\n"
+"Si DrakX no puede sondear las opciones para determinar automáticamente qué\n"
+"parámetros debe pasar al hardware, Usted deberá configurar manualmente el\n"
+"controlador."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": si se detecta una tarjeta de sonido en su sistema, la misma se\n"
+"mostrará aquí. Si nota que la tarjeta de sonido no es la que está realmente\n"
+"presente en su sistema, puede hacer clic sobre el botón y elegir un\n"
+"controlador diferente."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"A manera de revisión, DrakX presentará un resumen de las distintas\n"
+"informaciones que recopiló acerca de su sistema. Dependiendo del hardware\n"
+"instalado en su máquina, puede tener algunas o todas las entradas\n"
+"siguientes. Cada entrada está compuesta del elemento a configurar, seguido\n"
+"de un pequeño resumen de la configuración actual. Haga clic sobre el botón\n"
+"\"%s\" correspondiente para hacer los cambios.\n"
+"\n"
+" * \"%s\": verifique la configuración de la disposición actual del teclado\n"
+"y cámbiela si es necesario.\n"
+"\n"
+" * \"%s\": verifique la selección actual del país. Si Usted no se encuentra\n"
+"en este país haga clic sobre el botón \"%s\" y seleccione otro. Si su país\n"
+"no se muestra en la primer lista que se muestra, haga clic sobre el botón\n"
+"\"%s\" para obtener la lista completa de países.\n"
+"\n"
+" * \"%s\": De manera predeterminada DrakX deduce su huso horario basándose\n"
+"en el país que ha elegido. Puede hacer clic sobre el botón \"%s\" si esto\n"
+"no es correcto.\n"
+"\n"
+" * \"%s\": verifique la configuración del ratón y haga clic sobre el botón\n"
+"para cambiarla, si es necesario.\n"
+"\n"
+" * \"%s\": al hacer clic sobre el botón \"%s\" se abrirá el asistente de\n"
+"configuración de la impresora. Consulte el capítulo correspondiente de la\n"
+"\"Guía de Comienzo\" para más información sobre cómo configurar una\n"
+"impresora nueva. La interfaz presentada allí es similar a la utilizada\n"
+"durante la instalación.\n"
+"\n"
+" * \"%s\": si se detecta una tarjeta de sonido en su sistema, la misma se\n"
+"mostrará aquí. Si nota que la tarjeta de sonido no es la que está realmente\n"
+"presente en su sistema, puede hacer clic sobre el botón y elegir un\n"
+"controlador diferente.\n"
+"\n"
+" * \"%s\": si se detecta una tarjeta de TV en su sistema, la misma se\n"
+"muestra aquí. Si tiene una tarjeta de TV y la misma no se detecta, haga\n"
+"clic sobre \"%s\" para intentar configurarla a mano.\n"
+"\n"
+" * \"%s\": Puede hacer clic sobre \"%s\" para cambiar los parámetros\n"
+"asociados a la tarjeta si cree que no son los correctos.\n"
+"\n"
+" * \"%s\": de manera predeterminada DrakX configura su interfaz gráfica en\n"
+"\"800x600\" o \"1024x768\" de resolución. Si eso no le satisface, haga clic\n"
+"sobre \"%s\" para cambiar la configuración su interfaz gráfica.\n"
+"\n"
+" * \"%s\": si desea configurar ahora el acceso a la Internet o a su red\n"
+"local, puede hacerlo ahora. Consulte la documentación impresa o utilice el\n"
+"Centro de Control de Mandriva Linux luego que finalizó la instalación para\n"
+"aprovechar la ayuda en línea completa.\n"
+"\n"
+" * \"%s\": permite configurar las direcciones de los proxy HTTP y FTP si la\n"
+"máquina sobre la que está instalando estará ubicada detrás de un servidor\n"
+"proxy.\n"
+"\n"
+" * \"%s\": esta entrada le ofrece volver a definir el nivel de seguridad\n"
+"como se ajustó en un paso previo (ver ).\n"
+"\n"
+" * \"%s\": si planifica conectar su máquina a la Internet, es una buena\n"
+"idea protegerse de las intrusiones configurando un cortafuegos. Consulte la\n"
+"sección correspondiente de la \"Guía de Comienzo\" para detalles acerca de\n"
+"los ajustes del cortafuegos.\n"
+"\n"
+" * \"%s\": si desea cambiar la configuración de su cargador de arranque,\n"
+"haga clic sobre este botón. Esto debería estar reservado para los usuarios\n"
+"avanzados. Consulte la documentación impresa o la ayuda en línea acerca de\n"
+"la configuración del cargador de arranque en el Centro de Control de\n"
+"Mandriva Linux.\n"
+"\n"
+" * \"%s\": por medio de esta entrada podrá tener un control fino sobre qué\n"
+"servicios correrán en su máquina. Si planifica utilizar esta máquina como\n"
+"servidor es una buena idea revisar estos ajustes."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Tarjeta RDSI"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Interfaz gráfica"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Elija la unidad de disco que desea borrar para instalar su partición\n"
+"Mandriva Linux nueva. Tenga cuidado, ¡se perderán todos los datos presentes\n"
+"en dicha unidad de disco y no se podrán recuperar!."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Haga clic sobre \"%s\" si desea borrar todos los datos y particiones\n"
+"presentes en esta unidad de disco. Tenga cuidado, luego de hacer clic sobre\n"
+"\"%s\", no podrá recuperar los datos y las particiones presentes en esta\n"
+"unidad de disco, incluyendo los datos de Windows.\n"
+"\n"
+"Haga clic sobre \"%s\" para detener esta operación sin perder los datos ni\n"
+"las particiones presentes en esta unidad de disco rígido."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Siguiente ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Anterior"
+
diff --git a/perl-install/install/help/po/et.po b/perl-install/install/help/po/et.po
new file mode 100644
index 000000000..e1dbfcb70
--- /dev/null
+++ b/perl-install/install/help/po/et.po
@@ -0,0 +1,1945 @@
+# Translation of DrakX.po to Estonian.
+# Copyright (C) 2003 Free Software Foundation, Inc.
+# Riho Kurg <rx@linux.ee>, 1999-2003.
+# Marek Laane <bald@starman.ee>, 2002-2006.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-et\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2006-03-07 12:20+0200\n"
+"Last-Translator: Marek Laane <bald@starman.ee>\n"
+"Language-Team: Estonian <et@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Enne jätkamist lugege hoolikalt läbi litsentsileping. See kehtib kogu\n"
+"Mandriva Linuxi distributsiooni kohta. Kui Te kõigi selle tingimustega\n"
+"nõus olete, märkige ära kast \"%s\". Kui Teile aga miski ei meeldi, siis\n"
+"klõps nupule \"%s\" sooritab arvuti taaskäivitamise."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux on mitmekasutajasüsteem, mis tähendab, et igal kasutajal\n"
+"võivad olla oma eelistused, failid jne. Selle kontseptsiooni kohta leiab "
+"lähemat\n"
+"infot \"Kasutaja käsiraamatust\". Kuid erinevalt administraatorist ei ole\n"
+"kasutajal õigust muuta midagi muud kui vaid omaenda faile ja seadistusi.\n"
+"Te peaksite looma ka endale vähemalt ühe tavakasutaja konto, millele sisse\n"
+"logida igapäevategevuseks. Kuigi võib olla vägagi praktiline logida iga "
+"päev\n"
+"sisse administraatorina, võib see olla ka väga ohtlik! Vähimgi viga võib "
+"sel\n"
+"puhul tähendada, et süsteem lakkab töötamast. Kui teete tõsise vea "
+"tavakasutajana,\n"
+"võite kaotada ainult mõningat infot, kuid süsteem jääb töökorda.\n"
+"\n"
+"Kõigepealt tuleks sisestada oma tegelik nimi. See ei ole mõistagi "
+"kohustuslik - tegelikult võite sisestada, mida soovite. DrakX võtab esimese "
+"sisestatud sõna\n"
+"ning kopeerib selle väljale \"%s\". See on siis nimi, mille all konkreetne "
+"kasutaja\n"
+"saab ennast süsteemi sisse logida. Soovi korral võite DrakX'i pakutut ka\n"
+"muuta. Seejärel tuleb sisestada parool. Privileegideta (tavalise) kasutaja\n"
+"parool ei ole turvalisuse mõttes nii oluline kui administraatori oma,\n"
+"kuid pole põhjust sellest ka naljanumbrit teha:\n"
+"lõppeks on ju mängus Teie failid.\n"
+"\n"
+"Kui klõpsate nupule \"%s\", võite lisada veel nii palju kasutajaid, kui "
+"vaja.\n"
+"Lisage üks kasutaja iga inimese kohta, kes Teie arvutit kasutab. Kui olete "
+"kõik\n"
+"soovitud sisestanud, klõpsake nupule \"%s\".\n"
+"\n"
+"Klõps nupule \"%s\" võimaldab muuta kasutajale määratavat shelli\n"
+"(vaikimisi on see bash).\n"
+"\n"
+"Kui olete kasutajate lisamise lõpetanud, pakutakse Teile valida kasutaja, "
+"kel on\n"
+"õigus logida süsteemi automaatselt, kui arvuti käivitub. Kui see võimalus\n"
+"Teile huvi pakub (ja kohalik turvalisus muret ei valmista), valige "
+"meelepärane\n"
+"kasutaja ning aknahaldur ja klõpsake nupule \"%s\". Kui Te sellest aga "
+"huvitatud ei ole,\n"
+"eemaldage märge kastist \"%s\"."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Kas soovite seda lubada?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Ülal on toodud kõik Teie kõvakettal olemasolevad Linuxi partitsioonid\n"
+"Vaikimisi on need enamasti üsna mõistlikud. Kui teete nendes muutusi,\n"
+"pidage meeles, et kindlasti vajate juurpartitsiooni (\"/\"). Liiga väikeste\n"
+"partitsioonide puhul võib tekkida raskusi piisava hulga tarkvara "
+"paigaldamisel.\n"
+"Kasutajate jaoks on sageli mõistlik luua eraldi \"/home\" partitsioon.\n"
+"(Seda mõistagi juhul, kui tegemist on enam kui ühe Linuxi partitsiooniga).\n"
+"\n"
+"Iga partitsiooni juures on toodud abiinfona \"Nimi\" ja \"Mahutavus\".\n"
+"\n"
+"\"Nimi\" koosneb kõvakettatüübist, selle numbrist ja partitsiooni\n"
+"numbrist (näiteks \"hda1\").\n"
+"\n"
+"Kõvaketta tüüp on \"hd\", kui on tegemist IDE kettaga, ning \"sd\", kui on\n"
+"tegemist SCSI kettaga.\n"
+"\n"
+"Kõvaketta number on alati täht \"hd\" või \"sd\" järel. IDE ketastel:\n"
+"\n"
+" * \"a\" - esmase IDE kontrolleri ülem,\n"
+"\n"
+" * \"b\" - esmase IDE kontrolleri allutatu,\n"
+"\n"
+" * \"c\" - teisese IDE kontrolleri ülem,\n"
+"\n"
+" * \"d\" - teisese IDE kontrolleri allutatu.\n"
+"\n"
+"SCSI ketaste puhul on \"a\" esimene, \"b\" teine ja nii edasi."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linuxi paigalduspaketid on jagatud mitme CD vahel.\n"
+"DrakX suudab ära tunda, kui valitud pakett asub muul CD-l,\n"
+"ning väljastab siis seesoleva CD ja palub sisestada selle,\n"
+"mida parajasti vaja läheb.\n"
+"Kui Teil ei ole nõutavat CD-d käepärast, klõpsake nupul \"%s\"\n"
+"ning vastavat tarkvara ei paigaldata."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Nüüd on aeg valida rakendused, mida soovite oma süsteemi paigaldada.\n"
+"Mandriva Linux pakub tuhandeid pakette ja mõistagi ei eelda keegi,\n"
+"et Te neid kõiki juba ette tunneksite.\n"
+"\n"
+"Paketid on rühmitatud gruppidesse vastavalt nende kasutusalale.\n"
+"Grupid ise on jagatud nelja sektsiooni, mida võib valida mistahes "
+"kombinatsioonis:\n"
+"\n"
+" * \"%s\": kui kavatsete kasutada arvutit tööjaamana,\n"
+"valige siit sektsioonist üks või enam grupp.\n"
+"\n"
+" * \"%s\": kui kavatsete kasutada arvutit programmeerimiseks, valige\n"
+"soovitud grupid siit. Spetsiaalne grupp \"LSB\" seadistab Teie süsteemi "
+"nii,\n"
+"et see vastab võimalikult hästi Linux Standard Base'i standardile.\n"
+"\n"
+" Grupi \"LSB\" valimine paigaldab Teie arvutisse Linuxi kerneli seeriast "
+"\"2.4\",\n"
+"mitte muidu vaikimisi paigaldatavast seeriast \"2.6\".\n"
+"Seda tehakse täieliku ühilduvuse saavutamiseks LSB standardiga.\n"
+"Kui Te aga jätate grupi \"LSB\" valimata, saate ikkagi süsteemi,\n"
+"mis vastab peaaegu täielikult LSB standardile.\n"
+"\n"
+" * \"%s\": kui arvuti peab täitma serveri ülesandeid, saate siit valida,\n"
+"milliseid levinumaid teenuseid oma süsteemi paigaldada.\n"
+"\n"
+" * \"%s\": lõpuks saate siit valida ka meelepärase graafilise töökeskkonna.\n"
+" Kui soovite kasutada graafilist töökeskkonda, tuleb Teil siit valida "
+"vähemalt üks variant.\n"
+"\n"
+"Hiire liigutamine grupi nimele toob nähtavale selle lühikirjelduse.\n"
+"\n"
+"Märkida võib ka kasti \"%s\", mis on eriti mõttekas siis, kui tunnete\n"
+"pakette, mida Teile pakutakse, või kui soovite täielikku kontrolli selle\n"
+"üle, mida Teie süsteemi paigaldatakse.\n"
+"\n"
+"Kui käivitasite paigaldamise režiimis \"%s\", võite jätta kõik grupid "
+"valimata,\n"
+"mis takistab uute pakettide paigaldamist.\n"
+"Seda tasub tarvitada näiteks olemasoleva süsteemi parandamisel või "
+"värskendamisel.\n"
+"\n"
+"Kui olete tavapärast paigaldamist tehes kõik grupid valimata jätnud\n"
+"(seega talitanud vastupidi uuendamise mõttele), ilmub dialoog,\n"
+"mis pakub mitmesuguseid võimalusi minimaalseks paigalduseks.\n"
+"\n"
+" * \"%s\": paigaldatakse minimaalselt graafiliseks töölauaks vajalikud "
+"paketid.\n"
+"\n"
+" * \"%s\": paigaldatakse baassüsteem ning põhilised utiliidid ja nende "
+"dokumentatsioon.\n"
+"See peaks sobima näiteks serverile.\n"
+"\n"
+" * \"%s\": paigaldatakse minimaalne hulk pakette,\n"
+"mida on vaja Linuxi töötamiseks (vaid käsurealt).\n"
+"See võtab ruumi umbes 65 MB."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Uuendus"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Baasdokumentatsiooniga"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Tõeliselt minimaalne paigaldus"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Sõltuvalt sellest, kas valisite individuaalse pakettide valiku või mitte,\n"
+"näidatakse Teile gruppidesse ja alamgruppidesse rühmitatult kõiki pakette\n"
+"sisaldavat puud. Seda mööda liikudes võite valida või etteantud valiku\n"
+"tühistada tervete gruppide, alamgruppide või üksikute pakettide kaupa.\n"
+"\n"
+"Kui valite puus mõne paketi, ilmub paremal selle kirjeldus,\n"
+"mis annab teada, milline on paketi ülesanne.\n"
+"\n"
+"!! Kui tahtlikult või seetõttu, et asi kuulus gruppi,\n"
+"on valitud mõni serveripakett, palutakse Teilt kinnitust,\n"
+"et Te ikka tõesti soovite neid servereid paigaldada.\n"
+"Mandriva Linux käivitab kõik paigaldatud serverid vaikimisi alglaadimise "
+"ajal.\n"
+"Isegi kui nad olid turvalised ja teadaolevalt probleemivabad ajal,\n"
+"mis valmis distributsioon, võib kergesti juhtuda,\n"
+"et pärast Mandriva Linuxi praeguse versiooni valmimist leiti neist "
+"turvaauke.\n"
+"Kui Te ei tea, mida konkreetne teenus pakub või miks see üldse "
+"paigaldatakse,\n"
+"klõpsake nupul \"%s\", sest klõps nupul \"%s\" paigaldab loetletud serverid\n"
+"ning nad käivituvad alglaadimise ajal automaatselt. !!\n"
+"\n"
+"Lisavõimalus \"%s\" lihtsalt keelab hoiatava dialoogi,\n"
+"mis ilmub alati, kui paigaldaja valib automaatselt mõne paketi.\n"
+"See juhtub siis, kui leitakse, et paigaldamise edukaks lõpetamiseks\n"
+"on vajalik paigaldada veel mõni muu pakett.\n"
+"\n"
+"Väike disketiikoon nimekirja all võimaldab avada\n"
+"eelmise paigaldamise ajal valitud pakettide nimekirja.\n"
+"Sellel klõpsamise järel palutakse Teil sisestada diskett,\n"
+"mille lõite eelmise paigaldamise lõpul.\n"
+"Vaadake ka eelmise sammu teist nõuannet selle kohta, kuidas sellist disketti "
+"luua."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Automaatsõltuvused"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": klõps nupul \"%s\" avab printeri seadistamise nõustaja.\n"
+"Uurige lähemalt \"Põhiteadmiste käsiraamatu\" (\"Starter Guide\")\n"
+"vastavast peatükist, kuidas uut printerit häälestada.\n"
+"Siin näidatav sarnaneb sellele, mida võisite näha paigaldamise ajal."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Nüüd saate valida, millised teenused peaks käivitama alglaadimisel.\n"
+"\n"
+"Siin on üles loetud kõik teenused, mis on saadaval antud paigalduse puhul.\n"
+"Uurige neid hoolega ja jätke valimata kõik, mida ei ole alglaadimise ajal\n"
+"tingimata vajalik käivitada.\n"
+"\n"
+"Konkreetset teenust valides näete selle kohta lühikest seletavat teksti. "
+"Kui\n"
+"Te ei ole aga kindel, kas teenus on kasulik või mitte, on mõistlik jätta "
+"kehtima\n"
+"vaikevalik (olgu see siis lubav või mitte).\n"
+"\n"
+"!! Kui kavatsete oma süsteemi kasutada serverina, olge eriti tähelepanelik:\n"
+"tõenäoliselt ei soovi Te käivitada mittevajalikke teenuseid. Pidage meeles, "
+"et\n"
+"mõned teenused võivad serveris kasutatuna olla isegi ohtlikud. Üldiselt "
+"tasub\n"
+"valida ainult neid teenuseid, mida Teil tõesti vaja läheb.\n"
+"!!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux kasutab GMT (Greenwichi) aega ning teisendab selle\n"
+"kohalikuks ajaks vastavalt Teie valitud ajavööndile. Seda võib siiski ka "
+"välja\n"
+"lülitada, kui jätta märkimata \"%s\". Sellisel juhul kajastab\n"
+"arvutikell sama aega, mis süsteemi kell. See võib olla kasulik, kui masinas "
+"on\n"
+"veel mõni operatsioonisüsteem, näiteks Windows.\n"
+"\n"
+"Võimalus \"%s\" võimaldab kellaaega reguleerida,\n"
+"ühendudes Internetis mõne ajaserveriga. Pakutavas nimekirjas valige mõni\n"
+"lähemal asuv server. Mõistagi peab selle võimaluse kasutamiseks olema ka\n"
+"Internetiühendus. Tegelikult paigaldab see Teie arvutisse ajaserveri, mida "
+"saab\n"
+"kasutada isegi teiste kohtvõrgus olevate masinate aja täpsustamiseks."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Aja automaatne sünkroniseerimine"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Videokaart\n"
+"\n"
+" Paigaldaja tuvastab ja seadistab tavaliselt automaatselt masinasse\n"
+"paigaldatud videokaardi. Kui see ei õnnestu, saate nimekirjast valida\n"
+"kaardi, mis tegelikult on masinass paigaldatud.\n"
+"\n"
+" Juhul, kui Teie kaardile peaks saada olema erinevaid servereid nii 3D\n"
+"kiirendusega kui ilma, saate valida serveri, mis Teie vajadustele\n"
+"kõige enam vastab."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (ehk X Window System) kujutab endast GNU/Linuxi graafilise "
+"kasutajaliidese\n"
+"tuuma ja südant, millele toetuvad kõik Mandriva Linuxiga kaasas käivad\n"
+"graafilised töökeskkonnad (KDE, GNOME, AfterStep, WindowMaker jne).\n"
+"\n"
+"Siin näidatakse Teile tervet nimekirja parameetreid, mida saab muuta,\n"
+"et graafiline kasutajaliides oleks just Teile meelepärane:\n"
+"\n"
+"Videokaart\n"
+"\n"
+" Paigaldaja tuvastab ja seadistab tavaliselt automaatselt masinasse\n"
+"paigaldatud videokaardi. Kui see ei õnnestu, saate nimekirjast valida\n"
+"kaardi, mis tegelikult on masinas paigaldatud.\n"
+"\n"
+" Juhul, kui Teie kaardile peaks saada olema erinevaid servereid nii 3D\n"
+"kiirendusega kui ilma, saate valida serveri, mis Teie vajadustele\n"
+"kõige enam vastab.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Paigaldaja tuvastab ja seadistab tavaliselt automaatselt Teie masinaga\n"
+"ühendatud monitori. Kui see ei peaks siiski õnnestuma, saate siin toodud\n"
+"nimekirjast valida monitori, mis Teil tegelikult on.\n"
+"\n"
+"\n"
+"\n"
+"Ekraanilahutus\n"
+"\n"
+" Siin saate valida Teie riistvaraga sobiva ekraanilahutuse ja "
+"värvisügavuse.\n"
+"Kui Te paigaldamise järel leiate, et siin valitu siiski ei kõlba, saate "
+"seda\n"
+"hiljem muuta. Valitud seadistust näidatakse monitoril.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Sõltuvalt Teie riistvarast ei pruugi seda näha olla.\n"
+"\n"
+" süsteem püüab avada graafilist akent soovitud ekraanilahutusega. Kui "
+"näete\n"
+"testi ajal sõnumit ja vastate \"%s\", suundub DrakX järgmise sammu juurde.\n"
+"Kui Te sõnumit ei näe, tähendab see, et miski automaatselt tuvastatud\n"
+"seadistuses oli mäda ja test lõpeb automaatselt 12 sekundi pärast, tuues\n"
+"Teid menüüsse tagasi. Seal saate muuta seadistusi, kuni Teil õnnestub\n"
+"leida see, mis tagab korrektse ja meelepärase graaafilise kasutajaliidese.\n"
+"\n"
+"\n"
+"\n"
+"Eelistused\n"
+"\n"
+" Siin saab määrata, kas soovite, et masin käivitaks alglaadimise ajal\n"
+"automaatselt graafilise kasutajaliidese. Ilmselt on Teie vastus \"%s\",\n"
+"kui soovite, et masin toimiks serverina, või kui Teid ei kippunud\n"
+"seadistamise ajal edu saatma."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+"\n"
+" Paigaldaja tuvastab ja seadistab tavaliselt automaatselt Teie masinaga\n"
+"ühendatud monitori. Kui see ei peaks siiski õnnestuma, saate siin toodud\n"
+"nimekirjast valida monitori, mis Teil tegelikult on."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Ekraanilahutus\n"
+"\n"
+" Siin saate valida Teie riistvaraga sobiva ekraanilahutuse ja "
+"värvisügavuse.\n"
+"Kui Te paigaldamise järel leiate, et siin valitu siiski ei kõlba, saate "
+"seda\n"
+"hiljem muuta. Valitud seadistust näidatakse monitoril."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Juhul, kui Teie kaardile peaks saada olema erinevaid servereid nii 3D\n"
+"kiirendusega kui ilma, saate valida serveri, mis Teie vajadustele\n"
+"kõige enam vastab."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Eelistused\n"
+"\n"
+" Siin saab valida, kas soovite kasutada graafilist töökeskkonda\n"
+"kohe alglaadimisel. Pange tähele, et seda päritakse ka siis, kui Te ei "
+"proovinudki\n"
+"seadistusi testida. On üsna ilmne, et vastus kõlab \"%s\", kui masina "
+"ülesanne\n"
+"on tegutseda serverina või kui Teid ei kippunud seadistamise ajal edu saatma."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Olete jõudnud punkti, kus peate otsustama, kuhu täpselt Mandriva Linux\n"
+"oma kõvakettal paigaldada. Kui kõvaketas on tühi või mõni muu\n"
+"operatsioonisüsteem seda täielikult kasutab, on vaja see osadeks jagada\n"
+"ehk partitsioneerida.\n"
+"Partitsioneerimine on tegevus, mille käigus tekitatakse kettale loogilised\n"
+"piirkonnad Teie uue Mandriva Linuxi süsteemi paigaldamiseks.\n"
+"\n"
+"Kuna kõvaketta jagamine on pöördumatu protsess, siis peab kogemusteta\n"
+"kasutaja olema iseäranis ettevaatlik! Selle tegevuse lihtsustamiseks ja\n"
+"vigade vähendamiseks on Teie jaoks loodudki käesolev nõustaja. Siiski,\n"
+"palun varuge natuke ettevalmistusaega.\n"
+"\n"
+"Sõltuvalt kõvaketta omadustest on ketta jagamiseks ehk partitsioneerimiseks\n"
+"mitmeid võimalusi.\n"
+"\n"
+" * \"%s\": see jagab lihtsalt Teie tühja(d) kõvaketta(d).\n"
+"Mingeid edasisi küsimusi ei esitata.\n"
+"\n"
+" * \"%s\": nõustaja leidis kõvakettalt vähemalt\n"
+"ühe Linuxi partitsiooni. Kui soovite seda/neid kasutada, valige see "
+"võimalus.\n"
+"Seejärel palutakse valida iga partitsiooniga seotud haakepunktid. Vaikimisi\n"
+"valitakse need juba ette ära ja üldiselt oleks mõistlik neid mitte muuta.\n"
+"\n"
+" * \"%s\": kui kõvakettale on paigaldatud\n"
+"Microsoft Windows ja see haarab enda alla kogu kõvaketta, tuleb Teil "
+"tekitada\n"
+"vaba ruum GNU/Linuxi andmetele. Selleks võib hävitada Microsoft Windowsi\n"
+"partitsiooni koos andmetega (vaata võimalusi \"Puhasta kogu ketas\" või\n"
+"\"Ekspertrežiim\") või selle suurust muuta. Viimast on võimalik sooritada "
+"ilma\n"
+"andmeid kaotamata, seda küll eeldusel, et olete varem Windowsi partitsiooni\n"
+"defragmenteerinud. Siiski ei tule kindlasti kahjuks ka andmetest varukoopia\n"
+"valmistamine... See lahendus on soovitatav, kui tahate kasutada ühes "
+"arvutis\n"
+"nii Mandriva Linuxit kui Microsoft Windowsit.\n"
+"\n"
+" Enne selle valiku kasuks otsustamist pidage silmas, et kirjeldatud "
+"protseduuri\n"
+"järel on Teie Microsoft Windowsi partitsioon senisest väiksem, mis tähendab, "
+"et\n"
+"sellel on ka vähem ruumi andmete salvestamiseks või uue tarkvara "
+"paigaldamiseks.\n"
+"\n"
+" * \"%s\": kui soovite kustutada kõik andmed ja partitsioonid, mis\n"
+"kõvakettal parajasti on, ning asendada need uue Mandriva Linuxi süsteemiga, "
+"on\n"
+"see õige valik. Aga tasub olla ettevaatlik, sest pärast selle valiku "
+"langetamist\n"
+"tagasiteed enam ei ole...\n"
+"\n"
+" !! Kui valite selle võimaluse, kaotate kõik kõvakettal olevad andmed. !!\n"
+"\n"
+" * \"%s\": see puhastab kõvaketta senistest andmetest ja\n"
+"käivitab uue paigaldusprotsessi, luues kõik partitsioonid uuesti. Kaovad ka\n"
+"kõik kettal olnud andmed.\n"
+"\n"
+" !! Kui valite selle võimaluse, kaotate kõik kõvakettal olevad andmed. !!\n"
+"\n"
+" * \"%s\": valige see, kui soovite ise kontrollida kõvaketta jagamist.\n"
+"Kuid olge ettevaatlik - see on küll võimas, aga ohte sisaldav\n"
+"valik, mille puhul võib kergesti kaotada olemasolevad andmed. Seepärast ei\n"
+"peaks seda valima, kui Te pole endas päris kindel. Täpsemalt saab teada,\n"
+"kuidas kasutada DiskDrake'i võimalusi, \"Põhiteadmiste käsiraamatu"
+"\" (\"Starter\n"
+"Guide\") alapeatükist \"Partitsioonide haldamine\"."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Olemasolevate partitsioonide kasutamine"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Kogu ketta tühjendamine"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Ja nüüd ongi paigaldamine selja taga ning Teie GNU/Linuxi süsteem valmis "
+"tööks.\n"
+"Selleks tuleb vaid klõpsata \"%s\" ning arvuti teeb taaskäivituse. Ärge\n"
+"unustage eemaldamast paigaldus-andmekandjat (CD või diskett). Seejärel\n"
+"võite valida, kas käivitada GNU/Linux või Windows (kui Teie arvutis on mitu\n"
+"süsteemi).\n"
+"\n"
+"Nupp \"%s\" pakub veel kaks võimalust:\n"
+"\n"
+" * \"%s\": loob paigaldusdisketi, mis sooritab kogu\n"
+"paigaldamise ilma kasutajata, paigaldamine ise on samasugune nagu äsja\n"
+"seljataha jäänu.\n"
+"\n"
+" Selle valiku korral ilmub veel kaks erinevat võimalust:\n"
+"\n"
+" * \"%s\". See on osaliselt automaatne, sest kõvaketta jagamisel\n"
+"(aga ka ainult seal) on võimalik sekkuda.\n"
+"\n"
+" * \"%s\". Täisautomaatne paigaldus: kõvaketas kirjutatakse täielikult\n"
+"uuesti, kõik varasemad andmed kustutatakse.\n"
+"\n"
+" See võimalus võib olla kasulik, kui paigaldamine on kavas ette võtta "
+"paljudel\n"
+"ühesugustel masinatel. Lähemalt vaadake meie veebileheküljel\n"
+"automaatpaigalduse sektsiooni.\n"
+"\n"
+" * \"%s\"(*): salvestab paigaldamise käigus valitud pakettide\n"
+"nimekirja. Kui nüüd võtate ette uue paigalduse, asetage diskett seadmesse "
+"ning\n"
+"käivitage paigaldamine klahvile [F1] vajutades abiekraani vahendusel, andes "
+"käsu\n"
+">>linux defcfg=\"floppy\"<< ja vajutades seejärel klahvi [Enter].\n"
+"\n"
+"(*) Teil läheb vaja FAT-vorminduses disketti. Sellise loomiseks GNU/Linuxi\n"
+"keskkonnas andke käsureal korraldus \"mformat a:\" või \"fdformat /dev/fd0"
+"\"\n"
+"ning seejärel \"mkfs.vfat /dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Loo kiirpaigaldusdiskett"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Kõik värskelt loodud partitsioonid tuleb enne kasutamist vormindada\n"
+"ehk sinna tuleb luua failisüsteemid.\n"
+"\n"
+"Samuti võib vormindada varem olemas olnud partitsioonid, kui soovite\n"
+"seal leiduvad andmed ära kustutada.\n"
+"\n"
+"Pange tähele, et alati ei ole kõigi vanade partitsioonide vormindamine\n"
+"vajalik. Kindlasti tuleb vormindada partitsioonid, kus varem asus \"/\", \"/"
+"usr\"\n"
+"või \"/var\", aga kasutajate faile sisaldav \"/home\" võiks jääda alles.\n"
+"\n"
+"Olge partitsioonide valikul hoolas. Pärast vormindamist on kõik valitud\n"
+"partitsioonidel asunud andmed kustutatud ning neid ei ole võimalik "
+"taastada.\n"
+"\n"
+"Klõpsake \"%s\", kui olete vormindamiseks valmis.\n"
+"\n"
+"Klõpsake \"%s\", kui soovite valida oma uue Mandriva Linuxi süsteemi\n"
+"paigaldamiseks mõne muu partitsiooni.\n"
+"\n"
+"Klõpsake \"%s\", kui soovite valida partitsioone, millel kontrollitaks\n"
+"vigaste plokkide olemasolu."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"On tõenäoline, et praegu, kui Te paigaldate Mandriva Linuxit, on mõned\n"
+"paketid jõudnud pärast väljalaset juba uuenduskuuri üle elada. Mõnes on ära\n"
+"parandatud paar väiksemat viga, mõnes turvaprobleemid. Et võiksite neist\n"
+"uuendustest tulu lõigata, on Teil nüüd võimalik need Internetist alla "
+"laadida.\n"
+"Klõpsake \"%s\", kui Teie internetiühendus töötab, või \"%s\", kui "
+"eelistate\n"
+"pakette uuendada millalgi hiljem.\n"
+"\n"
+"Kui valite \"%s\", näidatakse Teile nimekirja kohtadega, kust uuendusi "
+"tõmmata\n"
+"saab. Valige endale lähim paik. Seejärel ilmub paketivaliku puu. Vaadake "
+"see\n"
+"üle ning klõpsake nupule \"%s\", kui soovite valitud paketi(d) alla laadida "
+"ja\n"
+"paigaldada, või \"%s\", kui Te ei soovi seda teha."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Nüüd on aeg valida masinale sobiv turvatase. Rusikareeglina peaks\n"
+"turvatase olema seda kõrgem, mida ligipääsule avatum arvuti on ja mida "
+"rohkem\n"
+"leidub selles olulise tähtsusega andmeid. Samas muudab kõrgem turvatase\n"
+"enamasti kasutamise mõnevõrra keerukamaks.\n"
+"\n"
+"Kui Te ei tea, mida valida, jätke kehtima vaikimisi pakutud valik. Hiljem\n"
+"saate turvataset muuta Mandriva Linuxi juhtimiskeskuses abivahendiga "
+"Draksec.\n"
+"\n"
+"Väli \"%s\" on mõeldud süsteemi turvalisuse eest vastutava kasutaja\n"
+"teavitamiseks. Turvalisusega seotud teated saadetakse sellele aadressile."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Turvaadministraator"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Nüüd peate valima partitsiooni(d), kuhu soovite Mandriva Linuxi paigaldada.\n"
+"Kui need on juba olemas kas GNU/Linuxi varasema paigalduse või mõne muu\n"
+"kettajagamisvahendi tegevuse tulemusena, võite kasutada olemasolevaid\n"
+"partitsioone. Vastasel juhul tuleb need luua.\n"
+"\n"
+"Partitsioon on loogiliselt eraldatud kõvaketta piirkond, mille suurust\n"
+"ei ole võimalik hiljem, töötavas süsteemis enam muuta. Samuti hävivad\n"
+"partitsiooni kustutamisel kõik selles leiduvad andmed.\n"
+"\n"
+"Kõvaketta jagamise lihtsustamiseks on loodud nõustaja, mille soovitused\n"
+"on harilikult mõistlikud.\n"
+"\n"
+"Partitsioonide loomiseks valige esmalt kõvaketas. \"hda\" tähendab siin "
+"esimest\n"
+"IDE-ketast, \"hdb\" teist IDE-ketast, \"sda\" esimest SCSI-ketast ja nii "
+"edasi.\n"
+"\n"
+"Valitud ketta jagamiseks on järgmised võimalused:\n"
+"\n"
+" * \"%s\": kustutatakse kõik olemasolevad partitsioonid\n"
+"sellel kettal.\n"
+"\n"
+" * \"%s\": sel juhul tekitatakse Linuxile vajalikud\n"
+"partitsioonid kõvaketta vabale osale automaatselt.\n"
+"\n"
+"\"%s\" pakub mõned lisavõimalused:\n"
+" * \"%s\": salvestab partitsioonitabeli disketile.\n"
+"Sellest on kasu hilisemal partitsioonitabeli taastamisel, kui seda vaja\n"
+"peaks olema. Igal juhul on äärmiselt soovitav see samm ette võtta.\n"
+"\n"
+" * \"%s\": võimaldab taastada disketilt varem\n"
+"salvestatud partitsioonitabeli.\n"
+"\n"
+" * \"%s\": kui partitsioonitabel on vigastatud, võib\n"
+"proovida seda parandada. Palun ärge selle peale siiski liiga palju lootke.\n"
+"\n"
+" * \"%s\": kui soovite tühistada kõik enda tehtud muutused ja alustada algse "
+"partitsioonitabeliga.\n"
+"\n"
+" * \"%s\": selle võimaluse\n"
+"tühistamine sunnib kasutajaid käsitsi haakima ja lahutama eemaldatavaid\n"
+"andmekandjaid, st diskette ja CD-sid.\n"
+"\n"
+" * \"%s\": kui soovite uue partitsioonitabeli loomisel samm-sammulist\n"
+"juhatust. See on soovitatav, kui Te ei ole varem midagi sellist teinud.\n"
+"\n"
+" * \"%s\": selle võimalusega saab tühistada kõik tehtud muudatused.\n"
+"\n"
+" * \"%s\": võimaldab partitsioonidega ette\n"
+"võtta lisaoperatsioone (tüüp, võtmed, vorming) ning pakub rohkem infot.\n"
+"\n"
+" * \"%s\": kui olete kõvaketta jagamise lõpetanud, saate sellele nupule\n"
+"klõpsates tehtud muudatused salvestada.\n"
+"\n"
+"Partitsiooni suurust määrates saate seda täpselt paika panna klaviatuuril\n"
+"asuvaid nooleklahve kasutades.\n"
+"\n"
+"Märkus: igale võimalusele pääseb ligi ka klaviatuuri abil. Partitsioonidel\n"
+"saab liikuda klahvidega [Tab] ning üles-alla nooleklahvidega.\n"
+"\n"
+"Partitsiooni valimisel saab ette võtta järgmisi toiminguid:\n"
+"\n"
+" * Ctrl+C uue partitsiooni loomine (kui valitud on tühi partitsioon).\n"
+"\n"
+" * Ctrl+D partitsiooni kustutamine.\n"
+"\n"
+" * Ctrl+M haakepunkti määramine.\n"
+"\n"
+"Lähemat infot erinevate failisüsteemitüüpide kohta leiab \"Süvateadmiste\n"
+"käsiraamatu\" (\"Reference Manual\") peatükist \"Linuxi failisüsteem\".\n"
+"\n"
+"Kui paigaldamine toimub PPC-masinas, tuleks luua vähemalt 1MB suurune\n"
+"väike HFS \"bootstrap\"-partitsioon, mida kasutab alglaadur yaboot. Kui Te\n"
+"aga teete selle partitsiooni natukene suuremaks (näiteks nii umbes 50MB),\n"
+"on see päris hea koht, kuhu hädaolukorraks paigutada tagavarakernel\n"
+"ja ramdisk-laadepildid."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Eemaldatava andmekandja automaatne haakimine"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Tava- ja ekspertrežiimi lülitamine"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Teie arvuti kõvakettal on rohkem kui üks Microsoft Windowsi partitsioon.\n"
+"Palun valige välja see, mille suurust soovite Mandriva Linuxi jaoks muuta.\n"
+"\n"
+"Teie abistamiseks on igal partitsioonil näidatud \"Nimi Linuxis\", \"Nimi "
+"Windowsis\" ja \"Mahutavus\".\n"
+"\n"
+"\"Nimi Linuxis\" koosneb kõvakettatüübist, selle numbrist ja partitsiooni\n"
+"numbrist (näiteks \"hda1\").\n"
+"\n"
+"Kõvaketta tüüp on \"hd\", kui on tegemist IDE-kettaga, ja \"sd\", kui on\n"
+"tegemist SCSI-kettaga.\n"
+"\n"
+"Kõvaketta number on alati täht \"hd\" või \"sd\" järel. IDE-ketastel:\n"
+"\n"
+" * \"a\" - esmase IDE kontrolleri ülem,\n"
+"\n"
+" * \"b\" - esmase IDE kontrolleri allutatu,\n"
+"\n"
+" * \"c\" - teisese IDE kontrolleri ülem,\n"
+"\n"
+" * \"d\" - teisese IDE kontrolleri allutatu.\n"
+"\n"
+"SCSI-ketaste puhul on \"a\" esimene, \"b\" teine ja nii edasi.\n"
+"\n"
+"\n"
+"\"Nimi Windowsis\" on täht, millega Microsoft Windows vastavat seadet\n"
+"tähistab (esimene ketas või partitsioon kannab nime \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": võimaldab kontrollida praegust riigi valikut. Kui see ei ole riik,\n"
+"kus Te viibite, klõpsake nupule \"%s\" ja valige mõni muu riik. Kui\n"
+"Teie riiki ei ole ilmuvas nimekirjas, klõpsake nupule \"%s\", mis avab\n"
+"riikide täisnimekirja."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Seda sammu on vaja ainult siis, kui masinas leiti varasem\n"
+"GNU/Linuxi partitsioon.\n"
+"\n"
+"DrakX soovib nüüd teada, kas tahate paigaldada uue süsteemi või uuendada\n"
+"olemasolevat Mandriva Linuxi süsteemi:\n"
+"\n"
+" * \"%s\": üldiselt pühib see vana süsteemi täielikult minema. Kui\n"
+"soovite muuta praeguseid partitsioone või failisüsteemi, siis võiks seda "
+"võimalust\n"
+"kasutada. Sõltuvalt kettajagamise viisist on võimalik ka mõningaid andmeid\n"
+"ülekirjutamise eest päästa.\n"
+"\n"
+" * \"%s\": see paigaldamisviis võimaldab uuendada praegu olemasolevasse\n"
+"Mandriva Linuxi süsteemi paigaldatud pakette. Kettajagamisskeemi ega "
+"kasutajate\n"
+"andmeid ei muudeta. Enamik seadistussamme on kasutatavad sarnaselt "
+"tavapärasele\n"
+"paigaldamisele.\n"
+"\n"
+"Võimalus \"Uuendus\" peaks toimima edukalt Mandriva Linuxi süsteemides\n"
+"alates versioonist 8.1. Uuenduse proovimist varasemate versioonide peal\n"
+"me siiski ei soovita."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Tavaliselt valib DrakX klaviatuuri Teie eest juba ära (sõltuvalt valitud\n"
+"keelest). Kuid see võib tekitada olukorra, kus Teil ikkagi pole just see\n"
+"klaviatuur, mida soovite: kui olete näiteks eesti keelt kõnelev\n"
+"hispaanlane, võite siiski soovida hispaania asetusega klaviatuuri. Teine "
+"kohe\n"
+"pähe tulev juhtum on läti keele kõneleja Eestis. Mõlemal juhul on\n"
+"mõtet naasta paigaldamise selle sammu juurde ja valida nimekirjast vajalik\n"
+"klaviatuur.\n"
+"\n"
+"Klõpsake nupul \"%s\", mis näitab kõiki toetatud klaviatuure.\n"
+"\n"
+"Kui valite mitte-ladina tähestikuga klaviatuuri, palutakse Teil järgmises\n"
+"dialoogis valida klahv või klahvikombinatsioon, mis vahetab ladina ja\n"
+"mitte-ladina asetusega klaviatuuri."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Esimene samm on vajaliku keele valik. Siin saate valida keele,\n"
+"mida kasutada paigaldamisel ja hilisemas töös. Valige esmalt riik,\n"
+"kus asute, ning seejärel vajalik keel.\n"
+"\n"
+"Klõpsates nupul \"%s\", võite valida muid keeli, mida Teie tööjaamale\n"
+"paigaldada. Teiste keelte valikul paigaldatakse vastava keele rakenduste\n"
+"ja dokumentatsiooni failid. Kui Teie masinaga töötab näiteks kasutajaid\n"
+"Hispaaniast, valige puuvaates põhikeeleks eesti keel ning sektsioonis\n"
+"\"Muud\" märkige ära \"%s\".\n"
+"\n"
+"Mõni sõna UTF-8 (unicode) toetuse kohta. Unicode on uus kodeering, mis\n"
+"peaks hõlmama kõiki keeli. Selle täielik toetus ei ole GNU/Linuxis\n"
+"siiski veel täielikult teostatud. Seetõttu lähtub Mandriva Linux selle\n"
+"kasutamisel või mittekasutamisel järgmistest asjaoludest:\n"
+"\n"
+" * Kui valite keele, mis üldreeglina kasutab muud kodeeringut (latin1 \n"
+"keeled, vene, jaapani, hiina, korea, tai, kreeka, türgi keel, enamik\n"
+"ISO-8859-2 keeli), kasutatakse vaikimisi vastavat kodeeringut;\n"
+"\n"
+" * Muude keelte puhul võetakse vaikimisi kasutusele Unicode;\n"
+"\n"
+" * Kui valite mitu keelt, mis ei kasuta ühesugust kodeeringut,\n"
+"tarvitatakse vaikimisi Unicode'i;\n"
+" * Ja lõpuks: kui kasutaja seda soovib, võimaldab valik \"%s\"\n"
+"sõltumata valitud keelest kasutada kogu süsteemis Unicode'i.\n"
+"\n"
+"Te võite igal juhul valida soovi korral ka mitu keelt, märkides ära\n"
+"kasti \"%s\" Täiendavate keelte valimine tähendab, et süsteemi\n"
+"paigaldatakse ka neile keeltele vajalikud fondid, õigekirja\n"
+"kontrollijad, rakenduste ja dokumentatsiooni tõlked jms.\n"
+"\n"
+"Ühelt keelelt teisele lülitumiseks võite administraatorina anda käsu\n"
+"\"/usr/sbin/localedrake\", mis võimaldab muuta kogu süsteemi keelt,\n"
+"või tavakasutajana muuta ainult enda kohta käivat keeleseadistust."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Hispaania"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Tavaliselt tuvastab DrakX hõlpsasti, mitme nupuga hiirt Te kasutate. Kui\n"
+"see välja ei tule, eeldatakse, et Teil on kahe nupuga hiir, ning "
+"kasutatakse\n"
+"kolmanda nupu emuleerimist. Kahenupulisel hiirel saab kolmandat nuppu\n"
+"\"klõpsata\" üheaegselt vasakut ja paremat nuppu alla vajutades. DrakX "
+"tuvastab\n"
+"automaatselt, kas tegemist on PS/2, jadapordi või USB-hiirega.\n"
+"\n"
+"Kui Teil on kolme nupuga, aga ilma rattata hiir, võite valida tüübiks\n"
+"\"%s\". DrakX seadistab seejärel hiire nii, et saate matkida hiireratast.\n"
+"Selleks klõpsake keskmist nuppu ja liigutage hiirt üles või alla.\n"
+"\n"
+"Kui soovite muuta hiiretüüpi, valige pakutud nimekirjast sobiv tüüp.\n"
+"\n"
+"Te võite alati valida võimaluse \"%s\", mis peaks toimima peaaegu igasuguse\n"
+"hiire korral.\n"
+"Kui valite mõne muu hiiretüübi kui vaikimisi määratu, palutakse Teil seda\n"
+"testida. Kasutage nuppe ja ratast kontrollimaks, et valik oli õige. Kui\n"
+"hiir ei käitu korralikult, vajutage tühikuklahvi või klahvi [Return], mis "
+"viib\n"
+"Teid tagasi dialoogi ja lubab uuesti valida.\n"
+"\n"
+"Vahel ei õnnestu rattaga hiirt automaatselt tuvastada. Siis tuleb see "
+"nimekirjast\n"
+"käsitsi valida. Kontrollige, et valite õigesse porti ühendatud hiiretüübi. "
+"Kui\n"
+"klõpsate nupule \"%s\", näidatakse hiire kujutist. Siis tuleb Teil "
+"liigutada\n"
+"hiireratast, et see korrektselt aktiveerida. Seejärel testige, kas kõik "
+"nupud\n"
+"ja liigutused toimivad korralikult."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "Ratta emuleerimisega"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Universaalne | Suvaline PS/2 ja USB hiir"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Palun valige õige port. Näiteks MS Windowsi \"COM1\" kannab\n"
+"GNU/Linuxis nime \"ttyS0\"."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Nüüd on kätte jõudnud kõige olulisem hetk Teie arvuti turvalisuse "
+"tagamisel:\n"
+"Teil tuleb määrata administraatori (\"root\") parool. Administraator haldab "
+"kogu\n"
+"süsteemi ja ainult temal on õigus seda uuendada, kasutajaid lisada, muuta\n"
+"kogu süsteemi seadistusi ja nii edasi. Ehk teisisõnu - administraator võib "
+"teha\n"
+"kõike! Seepärast tuleks parool valida selline, mida oleks raske ära arvata.\n"
+"DrakX ütleb Teile, kui parool tundub olevat liiga lihtne. Te võite muidugi "
+"jätta\n"
+"ka parooli sisestamata, aga me soovitame väga tungivalt seda siiski teha.\n"
+"Nagu iga muu operatsioonisüsteem, ei ole ka GNU/Linuxi süsteem täielikult\n"
+"kaitstud vigade eest. Kuna administraator võib kõiki piiranguid muuta ning\n"
+"vahel tahtmatultki kustutada oma hooletu tegevusega kõik andmed mingilt\n"
+"partitsioonilt, on päris oluline, et administraatoriks saamine ei oleks\n"
+"eriti lihtne.\n"
+"\n"
+"Parool võib koosneda nii tähtedest kui numbritest ja peab olema vähemalt\n"
+"8 (kaheksa) märki pikk. Ärge pange kunagi administraatori parooli kirja - "
+"see\n"
+"võib muuta ligipääsu Teie süsteemile võõrastele liiga hõlpsaks.\n"
+"\n"
+"Väike soovitus - ärge siiski parooli liiga keeruliseks või pikaks ajage,\n"
+"sest lõppeks peaksite seda ju suutma ka meelde jätta!\n"
+"\n"
+"Kui Te parooli sisestate, seda ekraanil ei näidata. Juhuslike näpuvigade\n"
+"vältimiseks peate selle sisestama kaks korda järjest. Siiski, kui teete\n"
+"mõlemal korral ühesuguse vea, on just see \"vigane\" parool, mida Teilt "
+"oodatakse\n"
+"administraatorina sisselogimisel.\n"
+"\n"
+"Kui soovite, et ligipääsu käesolevale arvutile kontrolliks mõni\n"
+"autentimisserver, klõpsake nupul \"%s\".\n"
+"\n"
+"Kui Teie võrgus on kasutusel LDAP, NIS või PDC Windowsi domeeni autentimise\n"
+"teenused, valige neist sobilik \"%s\". Kui Te aga ei juhtu teadma,\n"
+"mida teha, pöörduge oma võrgu administraatori poole.\n"
+"\n"
+"Kui Teil on probleeme parooli meelespidamisega, Teie arvuti ei ole\n"
+"ühendatud ühtegi administreeritavasse võrku või Te usaldate täielikult\n"
+"kõiki, kes Teie arvutit kasutavad, on mõttekas valida \"%s\"."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "autentimisviis"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Alglaadur on väike programm, mille arvuti käivitab alglaadimise ajal.\n"
+"Tavaliselt tuvastatakse see täiesti automaatselt.\n"
+"DrakX uurib ketta alglaadimissektorit ja talitab vastavalt sellele,\n"
+"mida ta sealt leiab:\n"
+"\n"
+" * kui leitakse Windowsi alglaadimissektor, asendatatakse see grub/LiLo\n"
+"alglaadimissektoriga. Nii võite laadida kas GNU/Linuxi või mõne muu OS-i.\n"
+"\n"
+" * kui leitakse grub-i või LiLo alglaadimissektor, asendatakse see uuega.\n"
+"\n"
+"Kui DrakX ei suuda asjast aru saada, küsitakse Teie käest, kuhu alglaadur\n"
+"paigutada. Üldiselt on \"%s\" kindlaim valik. Kui valida \"%s\", ei\n"
+"paigaldata alglaadurit üldse. Aga seda kasutage küll ainult siis, kui\n"
+"VÄGA TÄPSELT teate, mida teete!"
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Siin saate valida oma arvuti trükkimissüsteemi. Teised "
+"operatsioonisüsteemid\n"
+"võivad Teile pakkuda vaid üht süsteemi, kuid Mandriva Linuxi puhul saate\n"
+"valida tervelt kahe seast.\n"
+"\n"
+" * \"%s\" - mis tähendab \"trüki kohe\" (\"print, do not queue\") - tuleks "
+"valida siis,\n"
+"kui Teil on printeriga otseühendus, Te ei soovi näha mingeid järjekordi ja "
+"Teil\n"
+"ei ole võrgus asuvaid printereid. Võrkude puhul on \"%s\" mõnevõrra aeglane "
+"ja\n"
+"tal võib esineda tegutsemisraskusi. Kui see on Teie esimene retk GNU/Linuxi\n"
+"maailma, valige \"pdq\".\n"
+"\n"
+" * \"%s\" - \"tavaline UNIXi trükkimissüsteem\" (\"Common Unix Printing\n"
+"System\") - on hiilgav valik trükkimiseks Teie kohalikul printeril või ka "
+"mõnel teisel pool maakera asuvas\n"
+"printeris. See on lihtne süsteem, mis võib olla nii kliendiks kui serveriks "
+"iidsele\n"
+"trükkimissüsteemile \"lpd\". See on ka ühilduv varasemate süsteemidega.\n"
+"suudab teha palju asju, kuid põhitegutsemine on sama lihtne kui \"pdq\" "
+"puhul.\n"
+"Kui Teil on vajadus emuleerida \"lpd\"-serverit, tuleb sisse lülitada\n"
+"\"cups-lpd\"-deemon. \"%s\" pakub ka mitut graafilist kasutajaliidest\n"
+"trükkimiseks või printeri seadistamiseks.\n"
+"\n"
+"Kui leiate hiljem, et siinkohal langetatud valik polnud vahest kõige parem,\n"
+"siis saate seda muuta Mandriva Linuxi juhtimiskeskuses PrinterDrake abil,\n"
+"klõpsates seal nupule \"%s\"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Ekspertrežiim"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"Esmalt otsib DrakX üles kõik Teie arvuti IDE-seadmed, püüdes samal ajal\n"
+"tuvastada ka PCI siini SCSI-liideseid. Kui viimaseid leitakse ja vastav(ad)\n"
+"draiver(id) on teada, siis laetakse ja paigaldatakse kõik vajalik "
+"automaatselt.\n"
+"\n"
+"Riistvara tuvastamine ei pruugi alati siiski õnnestuda ja kui see nii "
+"peaks \n"
+"minema, palub DrakX Teil teatada, kas masinas on mõni PCI SCSI-liides.\n"
+"\n"
+"Kui peate oma adapteri käsitsi määrama, küsib DrakX, kas soovite määrata\n"
+"ka selle parameetrid. Siin oleks mõtet lasta tegutseda DrakX'il, mis "
+"proovib\n"
+"järele liidese spetsiifilised omadused, mida see initsialiseerimiseks "
+"vajab.\n"
+"Tavaliselt õnnestub see edukalt.\n"
+"\n"
+"Kui automaatne parameetrite otsimine ei tööta, tuleb liides käsitsi "
+"seadistada.\n"
+"Selleks tutvuge palun lähemalt oma SCSI liidese dokumentatsiooniga\n"
+"või küsige abi riistvara müüjalt."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": kui süsteemis leiti helikaart, näidatakse seda siin.\n"
+"Kui märkate, et näidatav helikaart ei ole mitte see, mis süsteemis\n"
+"Teie teada tegelikult on, klõpsake nuppu ja valige uus draiver."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Siin näidatakse mitmeid Teie süsteemi puudutavaid parameetreid. Sõltuvalt\n"
+"riistvarast võite siin näha kõiki või osa järgmistest kirjetest. Iga kirje\n"
+"juures on ära toodud elemendid, mida on võimalik seadistada, ning Teie "
+"masinas\n"
+"praegu kehtiv seadistus. Selle muutmiseks klõpsake nupule \"%s\".\n"
+"\n"
+" * \"%s\": võimaldab kontrollida klaviatuuritabeli seadistusi\n"
+"ja neid vajaduse korral muuta.\n"
+"\n"
+" * \"%s\": võimaldab kontrollida asukohariigi valikut. Kui Te ei asu\n"
+"vaikimisi määratud riigis, klõpsake nupule \"%s\" ja valige uus\n"
+"riik. Kui Teie riiki ei ole ilmuvas nimekirjas, klõpsake nupule\n"
+"\"%s\", mis avab riikide täisnimekirja.\n"
+"\n"
+" * \"%s\": DrakX tuletab ajavööndi valitud riigi põhjal. Kui see ei peaks\n"
+"Teile sobima, klõpsake nupule \"%s\".\n"
+"\n"
+" * \"%s\": võimaldab kontrollida hiire seadistusi ja neid vajadusel muuta.\n"
+"\n"
+" * \"%s\": klõps nupule \"%s\" avab printeri seadistamise nõustaja.\n"
+"Seda, kuidas uut printerit seadistada, vaadake lähemalt \"Põhiteadmiste\n"
+"käsiraamatu\" vastavast peatükist. Siin nähtav on sarnane paigaldamise ajal "
+"nähtuga.\n"
+"\n"
+" * \"%s\": kui süsteemis leiti helikaart, näidatakse seda.\n"
+"Kui märkate, et siintoodud helikaart pole see, mis tegelikult on\n"
+"süsteemi paigaldatud, klõpsake nupule ja valige sobiv draiver.\n"
+"\n"
+" * \"%s\": kui süsteemis leiti TV-kaart, näidatakse seda.\n"
+"Kui Teil on TV-kaart, aga seda ei leitud, klõpsake nupule \"%s\"\n"
+"ning püüdke see käsitsi määrata.\n"
+"\n"
+" * \"%s\": nupule \"%s\" klõpsates saab muuta kaardiga seotud\n"
+"parameetreid, kui arvate, et need pole korrektsed.\n"
+"\n"
+" * \"%s\": vaikimisi määrab DrakX Teie graafilise liidese\n"
+"ekraanilahutuseks \"800x600\" või \"1024x768\". Kui see Teile ei sobi,\n"
+"klõpsake nupule \"%s\" ja valige mõni muu võimalus.\n"
+"\n"
+" * \"%s\": Kui soovite kohe seadistada juurdepääsu Internetti või "
+"kohtvõrku,\n"
+"saate seda teha nupule klõpsates.\n"
+"\n"
+" * \"%s\": siin saab määrata HTTP ja FTP puhverserveri aadressid,\n"
+"kui Teie masin asub puhverserveri taga.\n"
+"\n"
+" * \"%s\": see võimaldab muuta eelmisel sammul paika pandud turvataset.\n"
+"\n"
+" * \"%s\": kui kavatsete oma süsteemi Internetti ühendada, kuluks\n"
+"ära enda kaitsmine rünnakute eest tulemüüriga. Vaadake\n"
+"üksikasju, kuidas tulemüüri seadistada, \"Põhiteadmiste käsiraamatu\" "
+"vastavast peatükist.\n"
+"\n"
+" * \"%s\": kui soovite muuta alglaaduri seadistusi, klõpsake\n"
+"sellele nupule. See on mõeldud siiski vaid kogenud kasutajatele.\n"
+"Täpsemat infot leiab käsiraamatust või Mandriva Linuxi juhtimiskeskusest.\n"
+"\n"
+" * \"%s\": saate täpselt kontrollida, millised teenused Teie\n"
+"süsteemis töötavad. Kui kavatsete kasutada oma masinat serverina, kuluks\n"
+"ära seadistused üle vaadata."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN kaart"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Graafiline kasutajaliides"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Valige kõvaketas, mida soovite puhastada oma uue Mandriva Linuxi\n"
+"paigaldamiseks. Ettevaatust, kõik sellel leiduvad andmed hävitatakse\n"
+"ja neid ei saa enam taastada."
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Valige \"%s\", kui soovite kustutada kõik sellel kettal asuvad\n"
+"partitsioonid. Ettevaatust, pärast \"%s\" klõpsamist ei ole enam\n"
+"võimalik sellelt kettalt andmeid taastada.\n"
+"\n"
+"Loobumiseks valige \"%s\", mis katkestab tegevuse ilma andmeid\n"
+"ja käesoleval kõvakettal olevaid partitsioone kustutamata."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Järgmine ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Eelmine"
+
diff --git a/perl-install/install/help/po/eu.po b/perl-install/install/help/po/eu.po
new file mode 100644
index 000000000..4f405031b
--- /dev/null
+++ b/perl-install/install/help/po/eu.po
@@ -0,0 +1,2003 @@
+# translation of eu.po to EUSKARA
+# translation of DrakX-eu.po to EUSKARA
+# translation of DrakX-eu.po to basque
+# EUSKARA: Mandriva Linux translation.
+# Copyright (C) 2002,2003, 2004, 2005 Free Software Foundation, Inc.
+# Iñigo Salvador Azurmendi <xalba@euskalnet.net>, 2001-2002,2003,2004, 2005.
+# Hizkuntza Politikarako Sailburuordetza <hizpol@ej-gv.es>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-eu\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-12-31 14:02+0100\n"
+"Last-Translator: Iñigo Salvador Azurmendi <xalba@euskalnet.net>\n"
+"Language-Team: EUSKARA <itzulpena@euskalgnu.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Aurrera jarraitu aurretik lizentziaren baldintzak arretaz irakurri. \n"
+"Mandriva Linux banaketa osoa hartzen du. Baldintza guztiekin ados \n"
+"bazaude, hautatu \"%s\" laukia. Onartzen ez badituzu, \"%s\" botoian klik\n"
+"egin eta ordenagailua berrabiaraziko da."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux erabiltzaile anitzeko sistema da, eta beraz erabiltzaile\n"
+"bakoitzak bere hobespenak, bere fitxategiak eta abar eduki ditzake. \n"
+"``Hasiberrien gida'' irakur dezakezu, erabiltzaile anitzeko sistemei buruz"
+"\"gehiago ikasteko. Baina \"root\"ak, hau da, \n"
+"sistema-administratzaileak ez bezala, hemen gehitzen dituzun \n"
+"erabiltzaileek ezingo dute ezer aldatu, beren fitxategiak eta beren \n"
+"konfigurazioa izan ezik, eta, hortaz, sistema babestuta egongo da \n"
+"sistema osoan eragina duten nahigabeko aldaketetatik edo intentzio \n"
+"txarrez egindakoetatik. \n"
+"Gutxienez, erabiltzaile arrunt bat sortu behar duzu zuretzat - hori da \n"
+"eguneroko lanetarako erabili behar duzuna. Oso erraza den arren saioa beti \n"
+"\"root\" gisa hastea, kontuan izan oso arriskutsua izan daitekeela! \n"
+"Hutsegiterik txikienak sistema funtzionatu ezinda utz dezake. Erabiltzaile \n"
+"arrunt gisa akats larriren bat egiten baduzu, gerta litekeen okerrena \n"
+"informazioa galtzea da, baina ez du eraginik izango sistema osoan\n"
+"\n"
+"Lehen eremuan benetako izena eskatuko zaizu. Jakina, hori ez da \n"
+"nahitaezkoa -nahi duzun izena idatz dezakezu. DrakX-k eremu honetan \n"
+"idatzitako lehen hitza gordeko du, eta \"%s\" eremuan kopiatuko du.\n"
+"Horixe izango da erabiltzaile honek sisteman saioa hasteko idatziko duena. \n"
+"Nahi izanez gero, lehenetsia gainidatz dezakezu, eta erabiltzaile-izena \n"
+"aldatu. Hurrengo urratsa pasahitza idaztea da.\n"
+"Segurtasunaren ikuspegitik, pribilegio gabeko erabiltzaile (arrunt) baten\n"
+"pasahitza ez da \"root\"arena bezain garrantzizkoa; baina, hala ere, ez da\n"
+"axolagabeki jokatu behar, hutsik utziz edo pasahitz errazegia erabiliz: \n"
+"azken batean, zure fitxategiak arriskuan egon litezke.\n"
+"\n"
+"\"%s\"(e)n klik egindakoan, beste erabiltzaile batzuk gehitu ditzakezu. \n"
+"Gehitu erabiltzaile bat zure lagun bakoitzarentzat: zure aitarentzat edo \n"
+"arrebarentzat, adibidez. Erabiltzaileak gehitutakoan, hautatu \"%s\".\n"
+"\n"
+"\"%s\" botoian klik eginez, \"shell\" lehenetsia aldatu ahal izango diozu\n"
+"erabiltzaile horri (bash lehenespenez).\n"
+"\n"
+"Erabiltzaileak gehitzen amaitutakoan, ordenagailua abiaraztean automatikoki\n"
+"saioa has dezakeen erabiltzailea aukeratzeko eskatuko zaizu. Eginbide\n"
+"hori interesatzen bazaizu (ez du eragin handirik segurtasun lokalean),\n"
+"hautatu erabiltzailea eta leiho-kudeatzailea, eta egin klik \"%s\"(e)n. \n"
+"Eginbidea interesatzen ez bazaizu, garbitu \"%s\" laukia."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Eginbide hau erabili nahi duzu?"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Hemen dituzu zure disko zurrunean detektatutako Linux partizioak.\n"
+"Morroiak egindako aukerak manten ditzakezu, egokiak baitira instalazio\n"
+"ohikoenetarako. Aldaketarik egiten baduzu, gutxienez erroko partizio bat\n"
+"definitu behar duzu (\"/\"). Ez aukeratu partizio txikiegirik edo ezin \n"
+"izango duzu nahikoa software instalatu. Datuak beste partizio batean \n"
+"gorde nahi badituzu, \"/home\"rako partizio bat ere sortu beharko duzu\n"
+"(Linux partizio bat baino gehiago baduzu soilik da posible).\n"
+"\n"
+"Partizio bakoitza honela azaltzen da: \"Izena\", \"Edukiera\".\n"
+"\n"
+"\"Izena\" honela osatzen da: \"disko zurrun mota\", \"disko \n"
+"zurrun zenbakia\", \"partizio-zenbakia\" (adibidez, \"hda1\").\n"
+"\n"
+"\"Disko zurrun mota\" \"hd\" izaten da, disko zurruna IDE motakoa\n"
+"bada, eta \"sd\", SCSI motakoa bada.\n"
+"\n"
+"\"Disko zurrun zenbakia\" beti letra bat izaten da \"hd\" edo\n"
+"\"sd\"ren ondoren. \n"
+"IDE disko zurrunetan:\n"
+"\n"
+" * \"a\"k esan nahi du \"IDE kontroladore primarioko disko zurrun\n"
+"nagusia\";\n"
+"\n"
+" * \"b\"k esan nahi du \"IDE kontroladore primarioko mendeko disko\n"
+"zurruna\";\n"
+"\n"
+" * \"c\"k esan nahi du \"IDE kontroladore sekundarioko disko zurrun\n"
+"nagusia\";\n"
+"\n"
+" * \"d\"k esan nahi du \"IDE kontroladore sekundarioko mendeko disko\n"
+"zurruna\".\n"
+"\n"
+"SCSI disko zurrunetan, \"a\"k esan nahi du\"SCSI ID baxuena\", \"b\"k\n"
+"\"bigarren SCSI ID baxuena\", etab."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linux instalazioa zenbait CD-ROMetan banatuta dago. \n"
+"Hautatutako pakete bat beste CD-ROM batean badago, DrakX-k du\n"
+"uneko CDa egotziko eta behar den CDa sartzeko eskatuko dizu.\n"
+"Eskatzen zaizun CDa ez badaukazu eskura, sakatu \"%s\",\n"
+"dagozkion paketeak ez dira instalatuko."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Sisteman zein programa instalatu nahi dituzun zehazteko garaia da.\n"
+"Mandriva Linux-erako milaka pakete dituzu erabilgarri, eta kudeaketa\n"
+"errazteko, antzeko aplikazioen multzotan kokatu dira.\n"
+"\n"
+"Mandriva Linux-ek pakete multzoak lau kategoriatan antolatzen ditu.\n"
+"Kategoria anitzetako aplikazioak nahastu eta bateratu ditzakezu, honela\n"
+"\"Lanpostua\" instalazio batek \"Zerbitzari\" kategoriako aplikazioak\n"
+"instalatuta izan ditzake.\n"
+"\n"
+" * \"%s\": makina lanpostu gisa erabiltzeko asmoa baduzu,\n"
+"hautatu 'lanpostua' kategoriako taldeetako bat edo gehiago.\n"
+"\n"
+" * \"%s\": zure makina programazioan erabiltzeko asmoa baduzu, hautatu\n"
+"kategoria horretako talde egokiak. \"LSB\" talde bereziak zure sistema\n"
+"Linux eStandar Base-ren zehaztapenekin ahalik bateragarrien izan\n"
+"dadin konfiguratuko du.\n"
+"\n"
+" \"LSB\" taldea hautatzeak \"2.4\" nukleoaren seriea ere instalatuko da,\n"
+"\"2.6\" lehenetsiaren ordez. Hau sistemaren %%100 LSB bateragarritasuna\n"
+"ziurtatzeko egiten da. Hala ere, \"LSB\" taldea aukeratzen ez baduzu ere\n"
+"LSB-rekin ia %%100 bateragarria den sistema izango duzu.\n"
+"\n"
+" * \"%s\": zure makina zerbitzaria izatea nahi baduzu, aukeratu\n"
+"zerbitzu ohikoenetatik zeintzu instalatu nahi dituzun zure makinan.\n"
+"\n"
+" * \"%s\": hemen aukeratuko duzu nahien duzun ingurune grafikoa.\n"
+"Bat behintzat hautatu behar duzu, interfaze grafikoa erabili nahi\n"
+"baduzu behintzat.\n"
+"\n"
+"Saguaren kurtsorea talde izen baten gainetik pasatuta, talde\n"
+"horri buruzko azalpen labur bat bistaratuko da.\n"
+"\n"
+"\"%s\" laukia markatu dezakezu, erabilgarria da eskainitako paketeak\n"
+"ezagun badituzu edo instalatuko denaren gaineko erabateko kontrola \n"
+"nahi baduzu.\n"
+"\n"
+"Instalazioa \"%s\" moduan hasten baduzu, talde guztiak desautatu\n"
+"ditzakezu eta edozein pakete berriren instalazioa eragozteko. Hau\n"
+"erabilgarria da exisitzen den sistema bat konpondu edo eguneratzeko.\n"
+"\n"
+"Instalazio arrunt bat (hau da, eguneraketa ez dena) egiterakoan talde\n"
+"guztiak desautatzen badituzu, elkarrizketa bat aterako zaizu instalazio\n"
+"minimo bat egiteko aukera desberdinak aholkatuz:\n"
+"\n"
+" * \"%s\": Instalatu ahalik eta pakete kopuru txikiena dabilen idaztegi "
+"grafiko bat izateko.\n"
+"\n"
+" * \"%s\": oinarrizko sistema gehi oinarrizko utilitateak eta heuren\n"
+"dokumentazioa instalatzen ditu. Egokia da zerbitzari bat ezartzeko.\n"
+"\n"
+" * \"%s\": Linux sistema batekin lan egin ahal izateko behar den pakete\n"
+"kopuru txikiena instalatzen du. Instalazio honekin, komando-lerroko \n"
+"interfazea bakarrik izango duzu. Instalazio honen neurri osoa 65\n"
+"megabyte ingurukoa da."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Bertsio-berritzea"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Oinarrizko dokumentazioarekin"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Instalazio minimo-minimoa"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Paketeak banaka instalatzea hautatzen baduzu, instalatzaileak pakete\n"
+"guztiak talde eta azpitaldetan klasifikatuta dituen zuhaitz bat aurkeztuko "
+"du.\n"
+"Zuhaitza arakatzerakoan, talde osoak, azpitaldeak edo banako paketeak\n"
+"hauta ditzakezu.\n"
+"\n"
+"Pakete bat hautatzen duzun bakoitzean, azalpen bat agertuko\n"
+"da eskuinean, paketearen helburua jakinarazteko.\n"
+"\n"
+"Zerbitzari pakete bat hautatu bada, pakete hori zehazki hautatu duzulako\n"
+"edo pakete-talde bateko zati zelako, zerbitzari horiek instalatu nahi "
+"dituzula\n"
+" berresteko eskatuko zaizu. Lehenespenez Mandriva Linux-ek instalatutako\n"
+"edozein zerbitzu abioan automatikoki abiaraziko du. Nahiz eta seguruak\n"
+" diren eta arazo ezagunik ez duten banaketa kaleratzeko garaian, guztiz\n"
+" posible da Mandriva Linux bertsio hau amaitu eta gero segurtasun zuloak\n"
+" aurkitu izana. Ez badakizu zerbitzu zehatz batek zer egiten duen edo "
+"zergatik\n"
+" instalatu den, klikatu \"%s\". \"%s \" klikatzeak zerrendatutako "
+"zerbitzuak\n"
+" instalatuko ditu eta abiapen garaian automatikoki hasiko dira!!\n"
+"\n"
+"\"%s\" aukera menpekotasun arazoak konpontzeko xedez instalatzaileak\n"
+" automatikoki pakete bat hautatzen duenean agertzen den abisua ezgaitzeko\n"
+" erabiltzen da. Pakete batzuk beste batzurekiko menpekotasuna izaten dute,\n"
+" eta zenbait pakete instalatu ahal izateko beste pakete batzuk instalatuta\n"
+" eduki behar izaten dira. Instalatzaileak zehatz dezake instalazioa behar\n"
+"bezala burutu dadin, menpekotasun bat asetzeko, zein pakete behar diren.\n"
+"\n"
+"Zerrendaren azpian agertzen den diskete ikonoak aukera ematen du\n"
+"aurreko instalazio batean sortutako pakete-zerrenda bat zamatzeko. Oso\n"
+"erabilgarria da hainbat makina berdin konfiguratu nahi badituzu. Ikono\n"
+"honetan klik egiten baduzu, beste instalazio baten amaieran sortutako\n"
+" disketea sartzeko eskatuko dizu. Ikus diskete hori sortzeko azken "
+"urratseko\n"
+"bigarren iradokizuna."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Mendekotasun automatikoak"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": \"%s\" botoian klik eginda inprimagailuak konfiguratzeko morroia\n"
+"irekiko da. Begiratu \"Starter Guide\"/\"Hasiberrien Gida\"-n dagokion\n"
+"kapitulua inprimagailu berria nola ezarri jakiteko. Gure eskuliburuan \n"
+"aurkeztutako interfazea instalazio garaian erabilitakoaren antzekoa da."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Elkarrizketa hau abio garaian zein zerbitzu hastea nahi duzun aukeratzeko\n"
+" erabiltzen da.\n"
+"\n"
+"DrakX-ek uneko instalazioan erabilgarri dauden zerbitzu guztiak zerrendatuko "
+"ditu. Aztertu haietako bakoitza arretaz eta ezautatu abio garaian behar ez\n"
+" direnak.\n"
+"\n"
+"Zerbitzu bat hautatzean, azalpen-testu labur bat bistaratuko da.\n"
+"Hala ere, ez bazaude ziur zerbitzu bat erabiltzea komeni den ala ez,\n"
+"seguruagoa da jokabide lehenetsia uztea.\n"
+"\n"
+"Etapa honetan, oso kontuz ibili zure makina zerbitzari gisa erabiltzeko\n"
+"asmoa baduzu: seguru asko ez duzu nahi izango behar ez duzun zerbitzurik \n"
+"abiaraztea. Gogoan izan zerbitzu batzuk arriskutsuak izan daitezkeela \n"
+"zerbitzari batean gaitzen badira. Oro har, benetan behar dituzun zerbitzuak\n"
+"soilik hautatu!!"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux-ek GMT (Greenwich Mean Time) ordua erabiltzen du eta tokian\n"
+"tokiko ordura aldatzen du, hautatutako ordu-gunearen arabera. Zure plaka\n"
+"nagusiko ordua bertako orduan ezarrita badago, hau desaktibatu dezakezu\n"
+"\"%s \" aukera ezautatuz, GNU/Linux-i sistemaren ordua eta hardwarearena\n"
+" ordu-gune berean daudela jakinaraziko diolarik. Hau erabilgarria da\n"
+"makinak beste sistema eragile bati ere ostatu ematen badio.\n"
+"\n"
+"\"%s\" aukerak automatikoki doituko du sistemaren ordularia, Interneteko\n"
+" urruneko ordu zerbitzari batekin konektatuz. Ezaugarri hau erabili ahal\n"
+" izateko, Interneteko konexioa behar duzu. Zugandik hurbil dagoen ordu\n"
+" zerbitzaria aukeratzea gomendatzen dizugu. Aukera honek ordu zerbitzari\n"
+" bat instalatzen du zure bertako sareko beste makinek ere erabili dezaketena."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Ordu-sinkronizazio automatikoa"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Txartel grafikoa\n"
+"\n"
+" Instalatzaileak normalean automatikoki detektatzen eta konfiguratzen\n"
+"du makinan instalatutako txartel grafikoa. Ez badu automatikoki detektatzen\n"
+"zerrendan hauta dezakezu zure txartel grafikoa.\n"
+"\n"
+" Zure txartelarentzat zerbitzari bat baino gehiago badaude erabilgarri, \n"
+"3D azeleraziodunak nahiz gabeak, zure beharren arabera ondoen datorkizuna\n"
+"aukeratu beharko duzu."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (X Window sistema) GNU/Linux-en interfaze grafikoaren bihotza da,\n"
+" Mandriva Linux-ekin bildutako ingurune grafiko guztiek (KDE, Gnome,\n"
+"Afterstep, WindowMaker...) erabiltzen dutena.\n"
+"\n"
+"Bistaratze grafiko optimoa lortzeko aldatu daitekeen parametro zerrenda\n"
+"bat ikusiko duzu.\n"
+"\n"
+"Txartel Grafikoa\n"
+"\n"
+" Instalatzaileak normalean automatikoki detektatu eta konfiguratuko\n"
+"du makinan instalatutako txartel grafikoa. Hau zuzena ez bada, zerrendatik\n"
+"hauta dezakezu instalatuta daukazun txartela.\n"
+"\n"
+" Zure txartelarentzat zerbitzari desberdinak erabilgarri badaude, 3D\n"
+"azelerazioarekin edo gabe, zure beharretara ondoen egokitzen den\n"
+"zerbitzaria hautatzeko eskatuko zaizu.\n"
+"\n"
+"\n"
+"\n"
+"Monitorea\n"
+"\n"
+" Normalean instalatzaileak automatikoki detektatu eta konfiguratuko\n"
+"du makinara lotutako monitorea. Hau zuzena ez bada, zerrendatik\n"
+"hauta dezakezu lotuta daukazun monitorea.\n"
+"\n"
+"\n"
+"\n"
+"Bereizmena\n"
+"\n"
+" Hemen, zure grafikoen hardwarearentzako erabilgarri dauden bereizmen\n"
+"eta kolore sakonerak hautatu ditzakezu. Aukeratu zure beharretara hobe\n"
+"egokitzen dena (instalazio ondoren aldaketak egiteko aukera izango duzu).\n"
+"Hautatutako konfigurazioa erakusten da monitorearen irudian.\n"
+"\n"
+"\n"
+"\n"
+"Proba\n"
+"\n"
+" Zure hardwarearen arabera, baliteke sarrera hau ez agertzea.\n"
+"\n"
+" Sistema nahi duzun bereizmeneko pantaila grafiko bat irekitzen saiatuko\n"
+"da. Proba mezua ikusi eta \"%s\" erantzuten baduzu, DrakX hurrengo \n"
+"urratsera jarraituko du. Ikusten ez baduzu , horrek esan nahi du\n"
+"automatikoki detektatutako konfigurazioaren zatiren bat gaizki zegoela\n"
+"eta proba automatikoki amaituko da 12 segundo igarotakoan, eta menura\n"
+" itzuliko da. Aldatu ezarpenak bistaratze grafiko zuzena lortu arte.\n"
+"\n"
+"\n"
+"\n"
+"Aukerak\n"
+"\n"
+" Urrats hauek zure makina abiaraztean automatikoki interfaze grafikora\n"
+" aldatzea nahi duzun aukeratzeko bidea emango dizute. Jakina, \"%s\"\n"
+"aukeratu nahiko duzu makinak zerbitzari moduan lanegingo badu, edo\n"
+"bistaratzea konfiguratzea lortu ez baduzu."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitorea\n"
+"\n"
+" Normalean instalatzaileak automatikoki detektatzen eta konfiguratzen\n"
+"du makinari konektatutako monitorea. Egokia ez bada, zerrendan\n"
+"aukera dezakezu ordenagailuan konektatuta daukazun monitorea."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Bereizmena\n"
+"\n"
+" Bereizmena eta kolore-sakonera hauta ditzakezu, zure hardwarearentzat\n"
+"erabilgarri daudenen artean. Aukeratu zure beharren arabera ondoen \n"
+"datorkizuna (edonola ere, instalazioaren ondoren aldatu ahal izango duzu). \n"
+"Aukeratutako konfigurazioaren adibide bat erakutsiko zaizu monitorean."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Zure txartelarentzako zerbitzari ugari dauden kasurako, 3D azeleraziodunak \n"
+"nahiz gabeak, zure beharretara hobe egokitzen dena aukera dezazun "
+"galdegiten\n"
+"zaizu."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Aukerak\n"
+"\n"
+" Makina abiaraztean automatikoki interfaze grafikora aldatu dadin nahi\n"
+"duzun hautatzeko aukera ematen dizu. Jakina, \"%s\" erantzun nahi \n"
+"izango duzu zure ordenagailuak zerbitzari gisa jokatu behar badu, edo \n"
+"bistaratzea konfiguratzea lortzen ez baduzu."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Hona iritsita, Mandriva Linux sistema eragilea disko zurrunean non\n"
+"instalatu aukeratu behar duzu. Zure disko zurruna hutsik badago edo\n"
+"lehendik dagoen sistema eragile batek leku erabilgarri guztia betetzen\n"
+"badu, diska zatikatu beharko duzu. Disko zurruna zatikatzea, funtsean, \n"
+"diskoa logikoki zatitzea da, Mandriva Linux sistema berria instalatzeko\n"
+"behar den lekua sortzeko.\n"
+"\n"
+"Disko zurruna zatikatzeko prozesua normalean itzulbiderik gabea denez\n"
+"eta datuen galera eragin dezakeenez, zatikatzeak beldurra eta estresa "
+"eragin\n"
+" dezake esperientzia gabeko erabiltzaileengan. Zorionez, DrakX-ek prozesu\n"
+" hau errazten duen morroi bat dauka. Urrats honekin jarraitu aurretik, "
+"irakurri\n"
+" atal honetako gainerako zatia eta guztiaren gainetik hartu behar adina "
+"denbora.\n"
+"\n"
+"Disko zurrunaren konfigurazioaren arabera, hainbat aukera izango dituzu:\n"
+"\n"
+" * \"%s\": Aukera honek zatikaketa automatia gauzatuko du hutsik dagoen\n"
+" unitatean. Aukera hau erabiltzen baduzu, ez zaizu beste galderarik egingo \n"
+"\n"
+" * \"%s\": Morroiak Linux partizio bat edo gehiago detektatu ditu zure "
+"disko\n"
+" zurrunean. Erabili nahi badituzu, hautatu aukera hau. Partizio bakoitzari\n"
+" dagokion muntatze-puntua aukeratzeko eskatuko zaizu. Oinordetzan\n"
+" hartutako muntatze-puntuak hautatzen dira lehenespenez, eta gehienetan\n"
+" ona izaten da haiek mantentzea.\n"
+"\n"
+" * \"%s\": Microsoft Windows disko zurrunean instalatuta badago eta\n"
+"bertako leku erabilgarri guztia hartzen badu, lekua askatu beharko duzu\n"
+" GNU/Linux-entzat. Horretarako, Microsoft Windows-en partizioa eta datuak\n"
+" ezaba ditzakezu (ikus ``Ezabatu disko osoa'' aukera) edo Windows-en FAT\n"
+" edo NTFS partizioei neurria aldatu. Neurri aldaketa datu galerarik gabe\n"
+"gauzatu daiteke baldin eta aurretik Windows partizioa desfragmentatu\n"
+" baduzu. Oso gomendagarria da datuen babeskopiak egitea. Aukera hau\n"
+" erabiltzea gomendatzen da Mandriva Linux eta Microsoft Windows, biak,\n"
+" konputagailu berean erabili nahi badituzu.\n"
+"\n"
+" Aukera hau hautatu aurretik, ulertu ezazu prozedura honen ondoren,\n"
+" Microsoft Windows partizioaren neurria hasi aurretik baino txikiagoa\n"
+"izango dela. Leku aske gutxiago izango duzu Microsoft Windows-en\n"
+"zure datuak gorde edo software berria instalatzeko.\n"
+"\n"
+" * \"%s\": Disko zurrunean dauden datu eta partizio guztiak ezabatu eta \n"
+"Mandriva Linux sistema berriarekin ordeztu nahi badituzu, hautatu aukera\n"
+" hau. Kontuz, berretsi ondoren ezingo baituzu eragiketa desegin.\n"
+"\n"
+" !! Aukera hau hautatzen baduzu, diskoko datu guztiak ezabatuko dira. !!\n"
+"\n"
+" * \"%s\": Aukera hau diko osoa Microsoft Windows-ek hartzen duenean\n"
+" agertzen da. Aukera hau hautatzeak unitatean dagoen guztia ezabatuko du\n"
+" eta berriro hasiko da hutsetik partizioak sortzen.\n"
+"\n"
+" !! Aukera hau hautatzen baduzu, diskoko datu guztiak galduko dituzu. !!\n"
+"\n"
+" * \"%s\": Hautatu aukera hau, disko zurruna eskuz zatikatu nahi baduzu.\n"
+"Kontuz ibili -- aukera ahaltsu bezain arriskutsua da, eta oso erraz gal\n"
+" ditzakezu datu guztiak. Horregatik, aurretik horrelako gauzak egin "
+"dituztenei\n"
+" eta esperientzia dutenei bakarrik gomendatzen zaie aukera hau. DiskDrake\n"
+" erabiltzeko jarraibide gehiago nahi izanez gero, irakurri ``Hasiberrien\n"
+" gida''ko ``Partizioen kudeaketa''atala."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Erabili lehendik dagoen partizioa"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Borratu disko osoa"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Hortxe duzu. Instalazioa osatu da eta zure GNU/Linux sistema erabiltzeko\n"
+" prest duzu. Sakatu \"%s\" sistema berrabiarazteko. Ez ahaztu instalazio\n"
+" euskarria ateratzeaz (CD-ROMa edo disketea). Konputagailuak bere\n"
+" hardware probak amaitutakoan ikusi beharko zenuken lehen gauza\n"
+" abio-zamatzailearen menua da, zein sistema eragile abiarazi hautatzeko\n"
+"aukera emanez.\n"
+"\n"
+"\"%s\" Botoiak bi botoi gehiago erakusten ditu:\n"
+"\n"
+" * \"%s\": Instalazio-diskete bat sortzeko aukera ematen dizu, "
+"automatikoki,\n"
+" operadore baten laguntzarik gabe instalazio oso bat egingo duena, oraintxe\n"
+" konfiguratu duzun instalazioaren antzera.\n"
+"\n"
+" Kontuan izan beste bi aukera daudela erabilgarri botoian klik egin "
+"ostean:\n"
+"\n"
+" * \"%s\". Hau instalazio erdi-automatikoa da. Zatikaketa urratsa da\n"
+" prozedura interaktibo bakarra.\n"
+"\n"
+" * \"%s\". Instalazio guztiz automatikoa: disko zurruna erabat "
+"berridatziko\n"
+" da, eta datu guztiak galduko dira.\n"
+"\n"
+" Eginbide hau oso praktikoa da antzeko ordenagailu asko instalatzen\n"
+"direnerako. Ikus auto-instalazioaren atala gure web gunean informazio "
+"gehiago nahi izanez gero.\n"
+"\n"
+" * \"%s\"(*): Instalazio honetan hautatutako paketeen zerrenda gordetzen\n"
+" du. Hautapen hau beste instalazio batean erabiltzeko, sartu disketea eta\n"
+" abiatu instalazioa. Gonbitan, sakatu [F1] tekla eta idatzi >>linux\n"
+"defcfg=\"floppy\" << eta sakatu [Sartu] tekla.\n"
+"\n"
+"(*) FAT-ekin eratutako diskete bat behar duzu. GNU/Linux-en bat sortzeko\n"
+"idatzi \"mformat a:\", edo \"fdformat /dev/fd0\" eta ondoren \"mkfs vfat\n"
+"/dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Sortu auto-instalazioko disketea"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Oinordetzan hartutako zenbait GNU/Linux partizio berrerabiltzea hautatzen\n"
+"baduzu, haietako batzuk berreratu eta bertako datuak ezabatu nahi izan\n"
+"dezakezu. Hori egiteko, mesedez partizio horiek ere aukeratu.\n"
+"\n"
+"Kontuan izan ez dela beharrezkoa lehendik dauden partizio guztiak\n"
+" berreratzea. Sistema eragilea gordetzen duten partizioak berreratu behar\n"
+" dituzu (\"/\", \"/usr\" edo \"/var\") baino ez mantendu nahi dituzun "
+"datuak\n"
+" gordetzen dituzten partizioak (normalean \"/home\").\n"
+"\n"
+"Kontuz ibili partizioak aukeratzerakoan. Eraketa amaitu ondoren,\n"
+" aukeratutako partizioetako datu guztiak ezabatu egingo dira eta ezin\n"
+"izango dituzu berreskuratu.\n"
+"\n"
+"Klikatu \"%s\" partizioak eratzeko prest zaudenean.\n"
+"\n"
+"Klikatu \"%s\" Mandriva Linux sistema eragile berria instalatzeko beste "
+"partizio\n"
+" bat aukeratu nahi baduzu.\n"
+"\n"
+"Klikatu \"%s\" diskoan hondatutako blokeak aurkitzeko egiaztatuko diren\n"
+" partizioak aukeratu nahi badituzu."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Mandriva Linux instalatzen duzunerako, litekeena da pakete batzuk\n"
+"hasierako argitalpenetik aldatu izana. Baliteke akatsak zuzendu eta \n"
+"segurtasun arazoak konpondu izatea. Eguneratzeez baliatu ahal izan\n"
+"zaitezen, orain, Internetetik jaitsi ditzakezu. Markatu \"%s\" dabilen "
+"Internet\n"
+"lotura badaukazu, edo \"%s\" pakete eguneratuak geroago instalatu nahi\n"
+" badituzu.\n"
+"\n"
+"\"%s\" hautatzen baduzu, eguneratzeak eskaintzen dituzten lekuen zerrenda \n"
+"azalduko zaizu. Zugandik gertu dagoen bat aukeratu behar zenuke. Pakete\n"
+" hautatzeko zuhaitza agertuko da: berrikusi hautapena, eta hautatu \"%s\" \n"
+"aukeratutako paketeak hartu eta instalatzeko, edo \"%s\" galerazteko."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Puntu honetan, DrakX-ek zure makinarentzako nahi duzun segurtasun maila\n"
+" hautatzeko aukera emango dizu. Arau nagusi bezala, segurtasun maila\n"
+"handiagoa ezarri behar da makinak ezinbesteko datuak gorde behar baditu,\n"
+"edo zuzenean Interneten agerian badago. Segurtasun maila handiagoa\n"
+"ezartzean, normalean erabilera erraztasuna galtzen da.\n"
+"\n"
+"Zer aukeratu ez badakizu, hautatu aukera lehenetsia. Gero aldatu \n"
+"ahal izango duzu draksec tresnarekin, Mandriva Linux Aginte Gunearen\n"
+"zati bat.\n"
+"\n"
+"Bete \"%s\" eremua segurtasun arduradunaren postaE helbidearekin.\n"
+"Segurtasun-mezuak helbide horretara bidaliko dira."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Segurtasun-administratzailea"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Orain, Mandriva Linux sistema instalatzeko zein partizio erabiliko\n"
+"d(ir)en aukeratu behar duzu. Partizioak jadanik definituta badaude,\n"
+"(GNU/Linux-en aurreko instalazio batek edo beste partizio-tresna batek\n"
+"definituta), lehendik dauden partizioak erabil ditzakezu. Bestela, disko \n"
+"zurruneko partizioak definitu behar dituzu.\n"
+"\n"
+"Partizioak sortzeko, aurrena disko zurrun bat hautatu behar duzu. "
+"Partizioa \n"
+"egiteko diskoa hautatzeko sakatu ``hda'' lehen IDE unitaterako,\n"
+"``hdb'' bigarrenerako, ``sda'' lehen SCSI unitaterako, eta abar.\n"
+"\n"
+"Hautatutako disko zurrunaren partizioa egiteko, aukera hauek\n"
+"erabil ditzakezu:\n"
+"\n"
+" * \"%s\": aukera honek hautatutako disko zurruneko partizio guztiak \n"
+"ezabatzen ditu\n"
+"\n"
+" * \"%s\": aukera honekin automatikoki sor ditzakezu ext3 eta\n"
+"swap partizioak disko zurruneko leku librean\n"
+"\n"
+"\"%s\": eginbide gehiagotarako aukera ematen du:\n"
+"\n"
+" * \"%s\": partizio-taula diskete batean gordetzen du. \n"
+"Baliagarria da geroago partizio-taula berreskuratzeko, behar izanez gero. \n"
+"Oso gomendagarria da urrats hau egitea.\n"
+"\n"
+" * \"%s\": lehen gordetako partizio-taula disketetik berreskuratzeko erabil\n"
+"daiteke.\n"
+"\n"
+" * \"%s\": partizio-taula hondatuta badago, \n"
+"berreskuratzen saia zaitezke aukera honen bidez. Kontuz ibili eta gogoan \n"
+"izan huts egin dezakeela.\n"
+"\n"
+" * \"%s\": aldaketa guztiak desegiten ditu\n"
+"eta hasierako partizio-taula kargatzen du.\n"
+"\n"
+" * \"%s\": aukera hau desgaitzen baduzu, \n"
+"euskarri aldagarriak (disketeak, CD-ROMak eta horrelakoak) eskuz muntatu \n"
+"eta desmuntatzera behartuko dituzu erabiltzaileak.\n"
+"\n"
+" * \"%s\": erabili aukera hau disko zurruneko partizioa egiteko morroia\n"
+"erabili nahi baduzu. Partizioak egiten ongi ez badakizu, morroia erabiltzea\n"
+"gomendatzen dizugu.\n"
+"\n"
+" * \"%s\": aukera hau aldaketak bertan behera uzteko erabil dezakezu.\n"
+"\n"
+" * \"%s\": partizioekin gauza gehiago egiteko aukera ematen \n"
+"du (mota, aukerak, formatua) eta disko zurrunari buruzko informazio \n"
+"gehiago ematen du.\n"
+"\n"
+" * \"%s\": disko zurrunaren partizioak egiten amaitutakoan, diskoari\n"
+"egindako aldaketak gordeko ditu.\n"
+"\n"
+"Partizio baten tamaina definitzean, doitasunez zehatz dezakezu\n"
+"tamaina, teklatuko gezi-teklak erabiliz.\n"
+"\n"
+"Oharra: edozein aukera eskura dezakezu teklatuaren bidez. Partizio batetik \n"
+"bestera joateko, [Tab] eta [Gora/Behera] geziak erabil ditzakezu.\n"
+"\n"
+"Partizio bat hautatuta dagoenean, aukera hauek dituzu:\n"
+"\n"
+" * Ktrl-c beste partizio bat sortzeko (partizio huts bat hautatuta\n"
+"dagoenean)\n"
+"\n"
+" * Ktrl-d partizio bat ezabatzeko\n"
+"\n"
+" * Ktrl-m muntatze-puntua ezartzeko\n"
+"\n"
+"Erabil daitezkeen fitxategi-sistema desberdinei buruzko informazioa\n"
+"lortzeko, irakurri ``Erreferentzia Eskuliburuko'' ext2FS kapitulua.\n"
+"\n"
+"PPC makina batean instalatu behar baduzu, gutxienez 1 Mbko HFS\n"
+"``bootstrap'' partizio txiki bat sortzea komeni zaizu, yaboot\n"
+"abioko kargatzaileak erabil dezan. Partizioa handixeagoa egitea hautatzen \n"
+"baduzu, adibidez 50 MBkoa, leku egokia izan daiteke ordezko nukleo bat\n"
+"eta ramdisk imajinak biltegiratzeko emergentziazko abioa egin ahal izateko."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Euskarri aldagarriak automuntatzea"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Aldatu modu normalera/aditu modura"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Microsoft partizio bat baino gehiago aurkitu dira zure disko zurrunean.\n"
+"Hautatu zeinen tamaina aldatu nahi duzun, Mandriva Linux sistema\n"
+"berria instalatu ahal izateko.\n"
+"\n"
+"Partizioak honela azaltzen dira: \"Linux izena\", \"Windows izena\"\n"
+"\"Edukiera\".\n"
+"\n"
+"\"Linux izena\" honela osatzen da: \"disko zurrun mota\", \"disko \n"
+"zurrun zenbakia\", \"partizio-zenbakia\" (adibidez, \"hda1\").\n"
+"\n"
+"\"Disko zurrun mota\" \"hd\" izaten da, disko zurruna IDE motakoa\n"
+"bada, eta \"sd\", SCSI motakoa bada.\n"
+"\n"
+"\"Disko zurrunaren zenbakia\" beti letra bat izaten da \"hd\" edo\n"
+"\"sd\"ren ondoren. IDE\n"
+"disko zurrunetan:\n"
+"\n"
+" * \"a\"k esan nahi du \"IDE kontroladore primarioko disko zurrun\n"
+"nagusia\";\n"
+"\n"
+" * \"b\"k esan nahi du \"IDE kontroladore primarioko mendeko disko\n"
+"zurruna\";\n"
+"\n"
+" * \"c\"k esan nahi du \"IDE kontroladore sekundarioko disko zurrun\n"
+"nagusia\";\n"
+"\n"
+" * \"d\"k esan nahi du \"IDE kontroladore sekundarioko mendeko disko\n"
+"zurruna\".\n"
+"\n"
+"SCSI disko zurrunetan, \"a\"k esan nahi du\"SCSI ID baxuena\", \"b\"k\n"
+"\"bigarren SCSI ID baxuena\", etab.\n"
+"\n"
+"\"Windows izena\" Windows-en dagoen disko zurrunaren letra da\n"
+"(lehen diskoak edo partizioak \"C:\" du izena)."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": egiaztatu hautatuta dagoen estatua. Estatu horretan ez bazaude,\n"
+"egin klik \"%s\" botoian eta hautatu beste bat. Zure estatua ez badago\n"
+"aurkeztutako zerrendan, klikatu \"%s\" botoia, estatuen zerrenda osoa "
+"jasotzeko."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Zure makinan GNU/Linux partizio zahar bat aurkitzen bada bakarrik\n"
+"aktibatzen da urrats hau.\n"
+"\n"
+"DrakX-k orain jakin behar du instalazio berri bat egin behar duzun edo\n"
+"lehendik dagoen Mandriva Linux sistema baten bertsioa berritu nahi duzun:\n"
+"\n"
+" * \"%s\": Zatirik handienean, sistema zaharra guztiz ezabatzen du. \n"
+"Disko zurruneko partizio-banaketa aldatu nahi baduzu, edo fitxategi-sistema\n"
+"aldatu, erabili aukera hau. Nolanahi ere, zure partizio-eskemaren arabera,\n"
+"lehendik dauden datu batzuk gainidaztea saihestu dezakezu.\n"
+"\n"
+" * \"%s\" instalazio-mota honek unean Mandriva Linux sisteman \n"
+"instalatuta dituzun paketeak eguneratzeko aukera ematen du. Uneko \n"
+"partizio-eskema eta erabiltzaile-datuak ez dira aldatzen. Bestelako \n"
+"konfigurazio-urrats gehienak erabilgarri mantentzen dira, instalazio\n"
+"estandarretan bezalatsu.\n"
+"\n"
+"``Bertsio-berritu'' aukerak ondo funtzionatu behar luke Mandriva Linux\n"
+"sistemaren \"8.1\" bertsioetan edo berriagoetan. Mandriva Linux-en \"8.1\" \n"
+"baino bertsio zaharragoetan ez da gomendatzen Bertsio-berritzea."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Hautatzen duzun hizkuntzaren arabera (), DrakX-k automatikoki hautatuko du\n"
+" teklatu konfigurazio jakin bat. Egiaztatu hautapenak asetzen zaituen edo\n"
+" hautatu beste teklatu diseinu bat.\n"
+"\n"
+"Baliteke zure hizkuntzarekin guztiz bat ez datorren teklatu bat erabiltzea:\n"
+"adibidez, ingelesez mintzatzen den suitzarra bazara, teklatu suitzarra izan\n"
+" dezakezu. Edo Quebec-en bizi eta ingelesez mintzo bazara, baliteke zure\n"
+" jatorrizko hizkuntza eta teklatuaren diseinua bat ez etortzea. Nolanahi "
+"ere,\n"
+" instalazio urrats honek zerrenda batetik teklatu egokia aukeratzen "
+"lagunduko\n"
+" dizu.\n"
+"Klikatu \"%s\" botoia aukeran dauden teklatu guztien zerrenda ikusteko.\n"
+"\n"
+"Latindarra ez den alfabetoan oinarritutako teklatua hautatzen baduzu,\n"
+"hurrengo elkarrizketak diseinu latindar eta ez-latindarraren artean "
+"aldatzeko \n"
+"laster-teklak konfiguratzeko aukera emango dizu."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Lehenengo urratsa zure hizkuntza hobetsia aukeratzea da.\n"
+"\n"
+"Egiten duzun hizkuntza hobetsiaren aukerak instalatzaileari,\n"
+" dokumentazioari, eta orokorrean sistemari eragingo die. Lehendabizi\n"
+"hautatu zure eskualdea, ondoren hitzegiten duzun hizkuntza.\n"
+"\n"
+"\"%s\" botoian klik eginez, lan-estazioan instalatu beharreko beste "
+"hizkuntza batzuk hautatu ahal izango dituzu, eta horrela, sistemaren "
+"dokumentazio eta aplikazioentzako hizkuntzaren fitxategi zehatzak\n"
+"instalatuko dira. Adibidez, zure makina Espainiako erabiltzaileek\n"
+"erabili behar badute, hautatu Euskara hizkuntza lehenetsi gisa zuhaitz\n"
+"ikuspegian eta \"%s\" Aurreratua atalean.\n"
+"\n"
+"UTF-8 (unicode) euskarriari buruz: Unicode karaktere kodeketa berri bat da,\n"
+"existitzen diren hizkuntza guztiak hartu nahi dituena. Hala ere, "
+"berarentzako\n"
+"erabateko euskarria oraindik garatzen ari da GNU/Linux-en, Mandriva Linux-"
+"en\n"
+"UTF-8 erabilera erabiltzailearen hautaketen araberakoa da:\n"
+"\n"
+" * Jatorrizko kodeketa ahaltsua duen hizkuntza bat aukeratzen baduzu \n"
+"(latin1 hizkuntzak, errusiera, japoniera, txinera, koreera, thailandiera,\n"
+"grekoa, turkiera, iso-8859-2 hizkuntza gehienak), jatorrizko kodeketa hori\n"
+"erabiliko da lehenespen gisa;\n"
+"\n"
+" * Beste hizkuntzek unicode erabiliko dute lehenespen gisa;\n"
+"\n"
+" * Bi hizkuntza edo gehiago behar badira, eta hizkuntza horiek kodeketa\n"
+"bera erabiltzen ez badute, unicode erabiliko da sistema osorako;\n"
+"\n"
+" * Azkenik, erabiltzaileak hala eskatuta, sistema unicode erabiltzera\n"
+"behartu daiteke, \"%s\" aukera hautatuz, hautatu diren hizkuntzak \n"
+"edozein direla ere.\n"
+"\n"
+"Gogoan izan hizkuntza gehigarri bat baino gehiago hauta dezakezula. \n"
+"Hainbat hizkuntza hauta ditzakezu, edo zerrendako guztiak, \"%s\"\n"
+"koadroa hautatuz. Hizkuntza baten euskarria hautatzean, hizkuntza horren\n"
+"itzulpenak, letra-tipoak, zuzentzaile ortografikoak, etab ere instalatuko "
+"dira.\n"
+"\n"
+"Zure sisteman instalatutako hizkuntzen artean aldatzeko, \"localdrake\"\n"
+" komandoa dei dezakezu \"root\" gisa zure sistema osoak erabiltzen duen\n"
+"hizkuntza aldatzeko. Erabiltzaile arrunt gisa exekutatzen baduzu, soilik\n"
+" erabiltzaile horren hizkuntza-ezarpenak aldatuko dira."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Gaztelania"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Normalean, DrakX-k ez du arazorik izaten saguaren botoi kopurua\n"
+" detektatzean. Izango balu, bi botoidun sagua duzula suposatuko du, eta \n"
+"hirugarren botoia emula dezan konfiguratuko du. Bi botoidun sagu batean\n"
+"hirugarren botoia sakatzeko, ezker eta eskuin botoiak aldi berean sakatu\n"
+"behar dira. DrakX-k automatikoki atzemango du saguak PS/2, serie edo\n"
+"USB interfazea erabiltzen duen.\n"
+"\n"
+"Gurpilik gabeko hiru botoidun sagua baduzu, \"%s\" sagua aukeratu\n"
+" dezakezu. DrakX-k sagua konfiguratuko du, gurpila edukiko balu\n"
+"bezala erabil dezazun: horretarako, sakatu erdiko botoia eta mugitu\n"
+" saguaren gezia gora eta behera.\n"
+"\n"
+"Beste sagu-mota bat zehaztu nahi baduzu, hauta ezazu eskainitako\n"
+"zerrendan.\n"
+"\n"
+"\"%s\" sarrera hautatu dezakezu ia edozein sagurekin ibiliko den sagu\n"
+" mota``generiko'' bat aukeratzeko.\n"
+"\n"
+"Lehenetsia ez beste sagu bat hautatzen baduzu, probarako pantaila\n"
+"bat bistaratuko da. Erabili botoiak eta gurpila ezarpenak egokiak direla \n"
+"eta sagua ondo dabilela egiaztatzeko. Sagua behar bezala ez badabil,\n"
+"sakatu zuriune-barra edo [Itzuli] tekla, proba bertan behera uzteko eta\n"
+" aukeren zerrendara itzultzeko zara.\n"
+"\n"
+"Batzuetan sagu gurpildunak ez dira automatikoki detektatzen, beraz\n"
+"sagua zerrendatik hautatu beharko duzu. Ziurtatu zure sagua lotuta\n"
+"dagoen atakari dagokiona hautatu duzula. Sagua hautatu eta \n"
+"\"%s\" botoia sakatu ondoren, sagu-irudi bat agertuko da pantailan. \n"
+"Biratu zure saguaren gurpila, pantailako sagu gurpila higitzen ikusiko\n"
+"duzu. Probatu botoiak eta egiaztatu saguaren gezia pantailan mugitzen\n"
+" dela zuk sagua mugitzen duzunean."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "gurpil-emulazioarekin"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Unibertsala | Edozein PS/2 eta USB sagu"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Hautatu ataka egokia. Adibidez, Windows-eko \"COM1\" atakak\n"
+"\"ttyS0\" izena du GNU/Linux-en."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Hau da erabaki puntu garrantzitsuena zure GNU/Linux sistemaren\n"
+" segurtasunerako: \"root\" pasahitza idatzi behar duzu. \"Root\" sistema\n"
+" administratzailea da eta berak bakarrik dauka sistema eguneratu,\n"
+" erabiltzaileak erantsi, konfigurazio orokorra aldatu eta horrelakoetarako\n"
+" baimena. Labur esateko, \"root\"ek guztia egin dezake! Horregatik aukeratu\n"
+"behar duzu asmatzeko zaila den pasahitza. DrakX-k esango dizu aukeratzen\n"
+"duzun pasahitza errazegia den. Ikus dezakezunez ez zaude pasahitz bat\n"
+"sartzera behartuta, baino biziki gomendatzen dizugu horrelakorik ez egitea.\n"
+"GNU/Linux, erabilzaileen akatsetara beste edozein sistema eragilek adina\n"
+" joera dauka. \"root\"-ek muga guztiak gaindi ditzakeenez eta nahi gabe\n"
+" partizioetako datu guztiak ezaba ditzakeenez beraietara behar bezain\n"
+"kontuz ez sartzeagatik, garrantzi handia dauka \"root\" gisa sartzea\n"
+"zaila izatea.\n"
+"\n"
+"Pasahitzak karaktere alfanumerikoen nahasketa izan behar luke, gutxienez\n"
+"8 karakterekoa. Ez idatzi inon \"root\" pasahitza - zure sistema arriskuan\n"
+"jartzea izugarri errazten du.\n"
+"\n"
+"Oharra - ez egin pasahitza luzeegia edo konplexuegia, gero zuk gogoratzeko\n"
+"modukoa izan behar baitu!\n"
+"\n"
+"Pasahitza ez da pantailan bistaratuko zuk idatzi bitartean. Tekleatzean\n"
+"egindako akatsak saihesteko, pasahitza bi aldiz idatzi beharko duzu.\n"
+"Akats tipografiko bera bil aldiz egiten baduzu, pasahitz ``oker'' hori "
+"erabili\n"
+" beharko duzu \"root\" bezela konektatzen zaren lehen aldian.\n"
+"\n"
+"Ordenagailu honen sarbidea autentifikazio-zerbitzari batek kontrolatzea\n"
+"nahi baduzu, egin klik \"%s\" botoian.\n"
+"\n"
+"Zure sareak LDAP, NIS, edo PDC Windows domeinuen autentifikazio\n"
+" zerbitzuak erabiltzen baditu, hautatu \"%s\"ri dagokiona. Zein erabili ez\n"
+" badakizu, galdetu sare-administratzaileari.\n"
+"\n"
+"Pasahitzak gogoratzeko arazoak badituzu, edo zure ordenagailua inoiz ez\n"
+" bada Internetera konektatuta egongo eta konfiantza osoa baduzu\n"
+" ordenagailua erabiltzen duten guztiengan, \"%s\" hauta dezakezu."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "egiaztatzea"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Abio zamatzailea konputagailuak abio garaian martxan jartzen duen\n"
+"programa txiki bat da.Sistema osoa martxan jartzearen arduraduna da.\n"
+"Normalean abio zamatzailearen instalazioa erabat automatikoa da.\n"
+"DrakX-k diskoaren abio sektorea analizatu eta han aurkitzen duenaren arabera "
+"jokatuko du:\n"
+" * Windows-en abio sektorea aurkitzen badu, GRUB/LILO abio sektore batekin\n"
+"ordeztuko du. Horrela, GNU/Linux edo makinan instalatutako beste edozein SE\n"
+"zamatzeko gai izango zara.\n"
+"\n"
+" * GRUB edo LILO abio sektore bat aurkitzen bada, berri batekin ordeztuko "
+"du.\n"
+"\n"
+"Berak erabaki ezin badu, DrakX-k zuri galdetuko dizu abioko zamatzailea non\n"
+"kokatu. Normalean, \"%s\" da lekurik seguruena. \"%s\" hautatuz ez da abio\n"
+"zamatzailerik instalatuko. Erabili aukera hau soilik zer egiten ari zaren "
+"badakizu."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Inprimatzeko sistema bat hautatzeko unea da orain.Eeste sistema eragile \n"
+"batzuk bakarra eskainiko dizute, baina Mandriva Linux-ek bi eskaintzen "
+"ditu.\n"
+"Inprimaketa sistema bakoitza egokiago da konfigurazio mota batzuetarako.\n"
+"\n"
+" * \"%s\" -- ``print, do not queue'' esapidearen akronimoa da, eta aukera\n"
+"hori hautatu behar duzu inprimagailuarekin zuzeneko konexioa baduzu, \n"
+"inprimagailu-buxadurak askatu nahi badituzu, eta sareko inprimagailurik\n"
+"ez baduzu. (\"%s\" sareko kasu oso sinpleak bakarrik maneiatzen ditu eta \n"
+"zertxobait mantsoa da sareekin erabiltzen denean.) GNU/Linux-ekin duzun \n"
+"lehen esperientzia bada, \"pdq\" erabiltzea gomendatzen dizugu.\n"
+"\n"
+" * \"%s\" - `` Common Unix Printing System'', aukera egokia da zure\n"
+"bertako inprimagailuan edo mundu erdira dagoenean inprimatzeko.\n"
+"Konfiguratzen erraza da eta \"lpd \" inprimatze-sistema zaharraren\n"
+"zerbitzari edo bezero gisa joka dezake, beraz, inprimatze-zerbitzuak behar "
+"dituzten sistema eragile zaharragoekin bateragarria da. Berez ahaltsua\n"
+" bada ere, oinarrizko konfigurazioa ia \"pdq\"-rena bezain erraza da.\n"
+"\"lpd\" zerbitzari bat emulatu behar baduzu, egiaztatu \"cups-lpd \"\n"
+"deabrua aktibatu duzula. \"%s\"ek inprimatzeko, inprimagailuaren aukerak "
+"hautatzeko eta inprimagailua kudeatzeko interfaze grafikoak ditu.\n"
+"\n"
+"Hautapena orain egiten baduzu, eta beranduago ohartzen bazara zure\n"
+" inprimaketa sistema ez zaizula guztoko Mandriva Linux Aginte Guneko\n"
+" PrintDrake exekutatuz eta \"%s\" botoian klik eginez alda zenezake."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Aditu"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX-k zure ordenagailuko IDE gailu guztiak detektatuko ditu orain. Zure \n"
+"sisteman PCI SCSI txartelik dagoen ere begiratuko du. SCSI txartela\n"
+"aurkitzen badu, DrakX-k automatikoki instalatuko du kontrolatzaile egokia.\n"
+"\n"
+"Hardwarearen detekzioa erabat segurua ez denez, DrakX-k huts egin lezake \n"
+"hardwarea detektatzean. Horrela bada, hardwarea eskuz zehaztu beharko duzu.\n"
+"\n"
+"PCI SCSI moldagailua eskuz zehaztu behar baduzu, aukerak eskuz\n"
+"konfiguratu nahi dituzun galdetuko dizu DrakX-k. Moldagailua hasieratzeko \n"
+"behar dituen aukera zehatzak bila ditzan, hardwarea aztertzen utzi beharko \n"
+"zenioke DrakX-ri. Gehienetan, DrakX-k ez du arazorik izango prozesu hori \n"
+"burutzeko.\n"
+"\n"
+"DrakX-k ezin baditu egiaztatu hardwareari pasatu behar zaizkion "
+"parametroak \n"
+"zein diren automatikoki erabakitzeko aukerak, eskuz konfiguratu beharko \n"
+"duzu kontrolatzailea."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": zure sisteman soinu-txartel bat detektatu ezkero, hemen bistaratuko\n"
+"da. Bistaratutako soinu-txartela zure sisteman dagoena ez dela Ikusten "
+"baduzu,\n"
+"botoian klik egin eta beste gidari bat hauta dezakezu."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Errepaso gisa, DrakX-ek zure sistemari buruz bildu duen informazioaren\n"
+" laburpena erakutsiko du. Zure makinan instalatutako hardwarearen\n"
+" arabera, ondorengo sarrera hauetako batzuk edo guztiak izan ditzakezu.\n"
+" Sarrera honela osatzen da: konfiguratu beharreko elementua, eta ondoan, "
+"uneko konfigurazioaren laburpen laburra. Klikatu dagokion \"%s\" botoia\n"
+"aldaketa egiteko.\n"
+"\n"
+" * \"%s\": egiaztatu uneko teklatu maparen konfigurazioa eta aldatu\n"
+"behar izan ezkero.\n"
+"\n"
+" * \"%s\": egiaztatu uneko herrialdea. Herrialde horretan ez bazaude\n"
+"egin klik \"%s\" botoian, eta hautatu beste bat. Zure herrialdea "
+"erakutsitako\n"
+"zerrendan falta bada, klikatu \"%s\" botoia herrialdeen zerrenda osoa\n"
+"jasotzeko.\n"
+"\n"
+" * \"%s\": Lehenespenez, DrakX-ek hautatutako herrialdearen arabera\n"
+" ondorioztatzen du ordu gunea. \"%s\" botoia klikatu dezakezu zuzena.\n"
+"ez bada.\n"
+"\n"
+" * \"%s\": egiaztatu uneko sagu konfigurazioa eta klikatu botoia aldatzea\n"
+"beharrezka bada.\n"
+"\n"
+" * \"%s\": \"%s\" botoian klikatzeak inprimagailu konfigurazio morroia\n"
+"irekiko du. Kontsultatu ``Hasiberrien Gida''n dagokion atala inprimagailu\n"
+"berri bat nola ezarri jakiteko. Bertan azaldutako interfazea instalazioan\n"
+" erabiltzen denaren antzekoa da.\n"
+"\n"
+" * \"%s\": zure sisteman soinu txartel bat detektatzen bada, hemen\n"
+" bistaratuko da. Bistaratutako soinu-txartela zure sisteman instalatuta "
+"dagoena ez dela Ikusten baduzu, botoian klikatu eta beste gidari bat\n"
+"hauta dezakezu.\n"
+"\n"
+" * \"%s\": telebista txartel bat badaukazu, hemen erakutsiko da bere\n"
+"konfigurazioari buruzko informazioa. Telebista txartela izan eta ez badu \n"
+"detektatzen, klikatu \"%s\"n, eskuz konfiguratzen saiatzeko.\n"
+"\n"
+" * \"%s\": \"%s\" klikatu dezakezu txartelarekin zerikusia duten "
+"parametroak\n"
+"aldatzeko konfigurazioa okerra dela uste baduzu.\n"
+"\n"
+" * \"%s\": lehenespenez, DrakX-ek \"800x600\" edo \"1024x768\" \n"
+"bereizmenarekin konfiguratzen du interfaze grafikoa. Zuretzako ez bada\n"
+"egokia, klikatu \"%s\" zure interfaze grafikoa birkonfiguratzeko.\n"
+"\n"
+" * \"%s\": zure Internet edo bertako sare sarrera konfiguratu nahi baduzu,\n"
+"orain egin dezakezu. Jo inprimatutako dokumentaziora edo erabili\n"
+"Mandriva Aginte Gunea instalazioa amaitutakoan lerroko laguntza\n"
+"osatuaz baliatzeko.\n"
+"\n"
+" * \"%s\": HTTP eta FTP proxy helbideak konfiguratzeko aukera eskaintzen\n"
+"du instalatzen ari zaren makina proxy zerbitzari baten atzean badago.\n"
+"\n"
+" * \"%s\": sarrera honek aurreko urratsean () egin bezala segurtasun maila\n"
+" berdefinitzen uzten dizu.\n"
+"\n"
+" * \"%s\": zure makina Internetera konektatzeko asmoa baduzu,\n"
+"ideia ona da zure burua suhesi bat ezarriz babestea. Kontsultatu\n"
+"``Hasiberrien Gida''n suhesi ezarpenari dagokion atala.\n"
+"\n"
+" * \"%s\": abio zamatzailearen konfigurazioa aldatu nahi baduzu, klikatu\n"
+"botoi hontan. Erabiltzaile aurreratuek bakarrik erabili behar lukete. Jo\n"
+"inprimatutako dokumentaziora edo Mandriva Linux Aginte Guneko\n"
+" abio-zamatzailearen konfigurazioari buruzko lerroko laguntzara.\n"
+"\n"
+" * \"%s\": sarrera honen bitartez zehatz doitu dezakezu zure makinan\n"
+"zein zerbitzu exekutatuko diren. Makina hau zerbitzari moduan erabiltzeko\n"
+"asmoa badaukazu ona litzateke ezarpen hau errepasatzea.zure makinan zein "
+"zerbitzu exekutatuko diren doitasunez \n"
+"kontrola dezakezu hemendik. Makina hau zerbitzari gisa erabiltzeko asmoa \n"
+"baduzu, konfigurazio hau berrikustea komeni zaizu."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN txartela"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Interfaze grafikoa"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Hautatu Mandriva Linux partizio berria instalatu ahal izateko ezabatu nahi\n"
+"duzun disko zurruna. Kontuz ibili, unitate horretako datu guztiak galdu\n"
+"egingo dira eta ezin izango dira berreskuratu!"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Sakatu \"%s\" disko zurrun honetako datu eta partizio guztiak \n"
+"ezabatu nahi badituzu. Kontuz ibili, \"%s\" sakatu ondoren \n"
+"ezin izango duzu disko zurrun honetako daturik eta partiziorik "
+"berreskuratu,\n"
+"Windows-eko datuak barne.\n"
+"\n"
+"Sakatu \"%s\" disko zurrun honetako daturik eta partiziorik\n"
+"galdu gabe eragiketa hau bertan behera uzteko."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Hurrengoa ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Aurrekoa"
+
diff --git a/perl-install/install/help/po/fa.po b/perl-install/install/help/po/fa.po
new file mode 100644
index 000000000..4e321363f
--- /dev/null
+++ b/perl-install/install/help/po/fa.po
@@ -0,0 +1,1938 @@
+# translation of DrakX-fa.po to Persian
+# Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
+# Abbas Izad <abbasizad@hotmail.com>, 2003, 2004, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-fa\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-02-26 06:31+0100\n"
+"Last-Translator: Abbas Izad <abbasizad@hotmail.com>\n"
+"Language-Team: Persian\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3.1\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"قبل از ادامه، شما باید شروط مجوز را با دقت بخوانید. آن تمام انتشار\n"
+"لینوکس ماندریبا را پوشش می‌دهد. اگر با همه‌ی شروط آن موافقت\n"
+"می‌کنید، جعبه‌ی \"%s\" را علامت بزنید. اگر نه، کلیک بر دکمه‌ی \"%s\"\n"
+"رایانه‌اتان آغازگری مجدد خواهد شد."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"لینوکس/گنو یک سیستم چند کاربرانه است، بدین معنی که هر کاربر ترجیحات و\n"
+"پرونده‌های خود را دارا می‌باشد. شما می‌توانید ``راهنمای مبتدی'' را برای آموختن\n"
+"بیشتر درباره‌ی سیستم‌های چند کاربرانه مطالعه کنید. ولی برخلاف \"مدیر\"، که "
+"مدیر\n"
+"سیستم می‌باشد، کاربرانی را که شما در این مرحله اضافه می‌کنید اجازه تغییر چیزی\n"
+"جز پرونده‌ها و پیکربندی‌های خود را ندارند. این برای حفاظت سیستم از تغییرات غیر "
+"مترقبه\n"
+" یا خطرناکی است که تمام سیستم را تحت تاثیر قرار می‌دهد. شما باید حداقل یک "
+"کاربر\n"
+"معمولی برای خود ایجاد کنید -- این حسابی است که شما برای استفاده روزانه‌ی خود\n"
+"باید از آن استفاده کنید.هرچند این خیلی آسان است که مانند \"root\" وارد "
+"سیستم\n"
+"شده و هر کاری را بدون محدودیت انجام داد، ولی ممکن است این خیلی خطرناک باشد!\n"
+"یک اشتباه کوچک می‌تواند باعث شود که سیستم‌تان دیگر کار نکند. اگر شما مثل یک\n"
+"کاربر ساده اشتباه جدی را مرتکب شوید، بدترین چیزی که می‌تواند اتفاق بیافتد از\n"
+"دست دادن مقداری اطلاعات خواهد شد ولی تاثیری بر تمام سیستم نخواهد گذاشت.\n"
+"\n"
+"اولین منطقه نام حقیقی شما را می‌پرسد. البته این اجباری نیست -- شما می‌توانید\n"
+"در واقع هر چه می‌خواهید وارد کنید. برنامه‌ی نصب DrakX اولین واژه را که در این\n"
+"منطقه وارد کرده‌اید به منطقه \"%s\" کپی می‌کند که این نام کاربری ورود به\n"
+"سیستم خواهد شد. اگر بخواهید می‌توانید پیش‌فرض را نادیده گرفته و نام کاربر را "
+"تغییر\n"
+"دهید. گام بعدی وارد کردن گذرواژه‌ای است. از نظر امنیتی یک گذرواژه‌ی (عادی) "
+"بدون\n"
+"امتیاز مانند گذرواژه‌ی \"مدیر\" دارای حساسیت نمی‌باشد، اما آن دلیلی برای عدم "
+"استفاده\n"
+"از آن و خالی گذاشتن آن یا تعیین گذرواژه‌ی بسیار ساده‌ای نیست. بلاخره این "
+"پرونده‌های\n"
+"شما هستند که در معرض خطر هستند.\n"
+"\n"
+"وقتی که شما بر روی \"%s\" کلیک کنید، می‌توانید کاربرهای دیگری نیز اضافه "
+"کنید.\n"
+"افزودن یک کاربر برای هر یک از دوستان، پدرتان یا برادرتان برای مثال.\n"
+"وقتی افزودن کاربران را تمام کردید بر روی \"%s\" کلیک کنید.\n"
+"\n"
+"با کلیک کردن بر دکمه‌ی \"%s\" به شما اجازه‌ی تغییر \"پوسته\"پیش‌فرض برای\n"
+"آن کاربر (پیش‌فرض bash) داده خواهد شد.\n"
+"\n"
+"وقتی شما افزودن کاربران را تمام کردید از شما برای انتخاب کاربری که بتواند\n"
+"هنگام آغازگری رایانه بطور خودکار وارد سیستم شود سؤال خواهد شد. اگر این مورد\n"
+"برای شما جالب بوده (و امنیت محلی اهمیت چندانی برای شما ندارد) ، کاربر دلخواه "
+"و\n"
+"محیط گرافیک را انتخاب نموده سپس بر روی \"%s\" کلیک کنید. اگر شما علاقه‌ای\n"
+" به این مورد ندارید جعبه \"%s\" را غیر فعال کنید."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "آیا می‌خواهید از این قابلیت استفاده کنید؟"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"قسمت‌بندی‌های لینوکس شناسائی شده‌ی موجود بر دیسک شما در اینجا فهرست شده‌اند.\n"
+"شما می‌توانید انتخاب‌های انجام شده توسط جادوگر را نگهداشته چرا که آنها برای\n"
+"بیشتر نصب‌های عادی مناسب می‌باشند. اگر شما هر تغییری انجام دهید باید حداقل\n"
+"یک قسمت‌بندی ریشه (\"/\") را تعیین کنید. قسمت‌بندی خیلی کوچک انتخاب نکنید\n"
+"وگرنه نخواهید توانست نرم‌افزار کافی نصب کنید. اگر می‌خواهید داده‌های خود را بر\n"
+"یک قسمت‌بندی جداگانه ذخیره کنید، مجبور خواهید بود که یک قسمت‌بندی \"/home\"\n"
+"را ایجاد کنید (فقط در صورتی که شما بیش از یک قسمت‌بندی لینوکس داشته باشید).\n"
+"هر قسمت‌بندی بطریق بدنبال آمده فهرست شده است: \"نام\", \"ظرفیت\".\n"
+"ساختار \"نام\" : \"نوع دستگاه دیسک\", \"شماره‌ی دستگاه دیسک\",\n"
+"\"شماره‌ی قسمت‌بندی\" (برای مثال، \"hda1\").\n"
+"\n"
+"\"نوع دستگاه دیسک\" اگر دستگاه دیسک یک IDE باشد \"hd\" است و\n"
+"اگر آن یک دستگاه دیسک SCSI باشد \"sd\" می‌باشد.\n"
+"\n"
+"\"شماره‌ی دستگاه دیسک\" همیشه یک حرف الفبا بعد از \"hd\" یا \"sd\" می‌باشد.\n"
+"برای دستگاه‌های سخت:\n"
+"\n"
+" * \"a\" بمعنی \"دستگاه سخت ارشد بر کنترل کننده‌ی اول IDE\";\n"
+"\n"
+" * \"b\" بمعنی \"دستگاه سخت زیردست بر کنترل کننده‌ی اول IDE\";\n"
+"\n"
+" * \"c\" بمعنی \"دستگاه سخت ارشد بر کنترل کننده‌ی دوم IDE\";\n"
+"\n"
+" * \"d\" بمعنی \"دستگاه سخت زیردست بر کنترل کننده‌ی دوم IDE\".\n"
+"\n"
+"در دستگاه‌های سخت SCSI یک \"a\" بمعنی \"کمترین شناسه‌ی SCSI\", یک \"b\" بمعنی\n"
+"\"دومین کمترین شناسه SCSI\"، و غیره."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"نصب لینوکس ماندریبا در چند سی‌دی پخش شده است. اگر بسته انتخاب شده بر روی\n"
+"سی‌دی دیگری قرار دارد DrakX سی‌دی کنونی را بیرون زده و از شما میخواهد که\n"
+"سی‌دی خواسته شده را داخل کنید. اگر آن سی‌دی مورد تقاضا را ندارید فقط بر روی \"%"
+"s\"\n"
+"کلیک کنید و بسته‌های مربوطه نصب نخواهند شد."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"اکنون وقت آن رسیده است که برنامه هایی را که میخواهید بر روی سیستمتان نصب "
+"کنید مشخص نمایید.\n"
+"هزاران بسته برای لینوکس ماندریبا در دسترس بوده* و برای آسانتر کزدن مدیریت "
+"آن، آنها در\n"
+"گروه‌هایی با برنامه های شبیه بهم قرار داده شده‌اند.\n"
+"\n"
+"لینوکس ماندریبا گروههای بسته را در چهار رده مرتب کرده است. شما میتوانید "
+"برنامه ها را از\n"
+"رده های گوناگون ترکیب و مطابقت دهید، بطوریکه یک نصب پایگاه کاری میتواند "
+"برنامه هایی از\n"
+"رده کارگزار را نصب کرده باشد.\n"
+"\n"
+" * \"%s\": اگر خیال دارید از رایانه خود مانند یک پایگاه کاری استفاده کنید، "
+"یک یا چند گروه\n"
+"را از رده پایگاه کاری انتخاب کنید.\n"
+"\n"
+" * \"%s\": اگر خیال دارید از رایانه خود برای برنامه نویسی استفاده کنید، "
+"گروههای مناسب را\n"
+"از آن رده انتخاب کنید. گروه مخصوص \"LSB\" سیستمتان را طوری پیکربندی\n"
+"خواهد کرد تا هر چه بیشتر با مقررات پایه استاندارد لینوکس مطابقت داشته باشد.\n"
+"\n"
+" انتخاب گروه \"LSB\" همچنین سریال هسته \"2.4\" را نیز بجای پیش فرض \"2.6"
+"\" \n"
+"نصب خواهد کرد. این برای اطمینان ۱۰۰٪٪-مطابقت سیستم است. هر چند، اگر گروه\n"
+"\"LSB\" را انتخاب نکنید سیستمی خواهید داشت که تقریبا ۱۰۰٪٪ LSB-تطبیق دارد.\n"
+"\n"
+" * \"%s\": اگر رایانه تان قرار است کارگزار بشود، سرویسهای معمول را که خیال "
+"دارید بر\n"
+"روی رایانه تان نصب کنید انتخاب نمائید.\n"
+"\n"
+" * \"%s\": این جائی است که محیط گرافیکی ترجیحی خود را انتخاب میکنید.\n"
+"اگر میخواهید واسط گرافیکی داشته باشید حداقل یکی را باید انتخاب کنید.\n"
+"\n"
+"حرکت مکان نمای موشی بر روی نام گروهی متن توضیحی کوتاهی را درباره آن گروه\n"
+"نشان خواهد داد.\n"
+"\n"
+"شما میتوانید جعبه \"%s\" را تیک کنید، که خیلی مفید است اگر با بسته های ارائه "
+"شده آشنائید\n"
+"یا اگر میخواهید بر آنچه نصب میگردد کاملا کنترل داشته باشید.\n"
+"\n"
+"اگر نصب را در حالت \"%s\" شروع کنید، میتوانید همه گروهها را نگزینید و از "
+"نصب\n"
+"هر بسته جدید جلوگیری کنید. این برای تعمیر و بروزسازی یک سیستم موجود مفید "
+"است.\n"
+"\n"
+"اگر همه گروهها را هنگام یک نصب عادی (برخلاف یک بروزسازی) نگزیده اید،\n"
+"گفتگوئی ظاهر شده که گزینه های گوناگونی را برای یک حداقل نصب پیشنهاد میکند:\n"
+"\n"
+" * \"%s\": حداقل تعداد بسته ممکن را برای داشتن یک رومیزی گرافیکی کارآرا نصب "
+"میکند.\n"
+"\n"
+" * \"%s\": سیستم پایه بعلاوه وسایل اولیه و نوشتارهای آنها را نصب میکند. این "
+"نصب برای \n"
+"برپاسازی یک کارگزار مناسب است.\n"
+"\n"
+" * \"%s\": حداقل تعداد ممکن بسته های ضروری برای یک سیستم لینوکس کارآرا نصب\n"
+"خواهد گردید. با این نصب شما فقط واسط خط-فرمان خواهید داشت.\n"
+"اندازه کل این نصب حدود ۶۵ مگابایت است."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "ارتقاء"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "با نوشتار پایه"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "کوچکترین نصب واقعی"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"اگر شما به نصب‌گر گفته‌اید که می‌خواهید بسته‌ها را دانه‌ای انتخاب کنید،\n"
+"آن درختی را شامل تمام بسته‌های دسته‌بندی شده بوسیله‌ی گروه‌ها و زیرگروه‌ها\n"
+"عرضه می‌کند. هنگام مرور بر درخت، می‌توانید همه‌ی گروه‌ها، زیرگروه‌ها،\n"
+"یا بسته‌های دانه‌ای را انتخاب کنید.\n"
+"\n"
+"هروقت شما بسته‌ای را در این درخت انتخاب می‌کنید، یک توضیح در قسمت\n"
+"راست ظاهر شده که به شما هدف بسته را معرفی می‌کند.\n"
+"\n"
+"!! اگر یک بسته کارگزار انتخاب شده باشد، یا اینکه شما مخصوصا بسته‌ی دانه‌ای\n"
+"را انتخاب کردید یا برای اینکه آن قسمتی از یک گروه از بسته‌ها باشد، از شما \n"
+"برای تایید آنکه واقعا می‌خواهید آنها را نصب کنید سؤال خواهد شد.\n"
+"پیش‌فرض لینوکس ماندریبا هر سرویس نصب شده را در زمان آغازگری \n"
+"بطور خودکار اجرا می‌کند. هرچند آنها امن بوده و هیچ اشکالی در زمان انتشار \n"
+"ندارند، احتمال دارد که سوراخ‌های امنیتی بعد از تکمیل این نسخه لینوکس \n"
+"مان‌درایک کشف شوند. اگر شما نمی‌دانید که یک سرویس بخصوص قرار \n"
+"است چکار کند یا چرا نصب شده است، پس \"%s\" را کلیک کنید. با کلیک \n"
+"بر \"%s\"سرویس‌های فهرست شده نصب خواهند شد و آنها بوسیله پیش‌فرض \n"
+"بطور خودکار هنگام آغازگری شروع می‌شوند. !! \n"
+"\n"
+"گزینه‌ی \"%s\" برای غیرفعال کردن گفتگوی هشدارهایی که هر وقت برنامه‌ی\n"
+" نصب بسته‌ای را برای حل یک مشکل وابستگی بطور خودکار انتخاب می‌کند \n"
+"استفاده می‌شود. بعضی از بسته‌ها با هم روابطی دارند بطوری که نصب یک \n"
+"بسته مستلزم نصب آن بسته‌ی دیگر می‌باشد. برنامه نصب می‌تواند تعیین کند \n"
+"که کدام بسته برای ارضای یک وابستگی لازم است تا نصب را با موفقیت تکمیل\n"
+"نماید.\n"
+"\n"
+"شمایل ریز دیسکچه در پایین فهرست به شما اجازه می‌دهد که یک\n"
+"فهرست ایجاد شده هنگام نصب قبلی را بارگذاری کنید. این روش اگر\n"
+"بخواهید تعدادی رایانه را یکسان پیکربندی کنید مفید است. کلیک بر این شمایل\n"
+"از شما می‌خواهد که آن دیسکچه را که در پایان نصب قبلی ایجاد کرده‌اید\n"
+"وارد کنید. به راهنمایی دوم آخرین مرحله برای چگونگی ایجاد چنین دیسکچه‌ای\n"
+"نگاهی بیاندازید."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "وابستگی‌های خودکار"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": با کلیک بر دکمه‌ی \"%s\" جادوگر پیکربندی چاپگر باز خواهد شد\n"
+"به فصل مربوط در ``Starter Guide'' برای اطلاعات بیشتر برای نصب یک چاپگر\n"
+"جدید مراجعه کنید. ظاهر عرضه شده در آنجا شبیه به آن است که در هنگام\n"
+"نصب استفاده می‌گردد."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"این گفتگو برای انتخاب سرویس‌هایی است که می‌خواهید هنگام آغازگری راه‌اندازی\n"
+"شوند استفاده می‌شود. \n"
+"\n"
+"برنامه‌ی DrakX همه‌ی سرویس‌های موجود را در نصب کنونی فهرست خواهد کرد.\n"
+"هر یک را بدقت ملاحظه کرده و آنهایی را که در زمان آغازگری لازم ندارید انتخاب "
+"نکنید.\n"
+"\n"
+"اگر یک سرویس انتخاب شود یک توضیح کوتاه درباره آن نشان داده خواهد شد. \n"
+"اگر شما مطمئن نیستید که آیا سرویسی مفید است یا نه، بهتر است پیش‌فرض \n"
+"را به حال خود بگذارید. \n"
+"\n"
+"!! در این مرحله خیلی دقت کنید، اگر قصد دارید از رایانه خود مانند کارگزاری\n"
+"استفاده کنید: احتمالا نمی‌خواهید هیچ سرویسی را که لازم ندارید راه‌اندازی "
+"کنید.\n"
+"لطفاً بخاطر داشته باشید که چندین سرویس در صورتی که بر یک کارگزار بکار\n"
+" بیافتند می‌توانند خطرناک باشند. بطور عمومی، فقط سرویس‌هایی را انتخاب \n"
+"کنید که واقعاً لازم دارید.\n"
+"!!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"گنو/لینوکس زمان را بر اساس GMT (Greenwich Mean Time) اداره کرده\n"
+"و آن را به زمان محلی طبق منطقه‌ی زمانی که شما انتخاب کرده‌اید برمی‌گرداند.\n"
+"اگر ساعت روی کارت ‌الکترونیکی مادر بر اساس زمان محلی گذاشته شده باشد،\n"
+"می‌توانید این را از طریق انتخاب نکردن \"%s\" غیرفعال کنید، که به گنو/لینوکس\n"
+"اجازه می‌دهد که بداند که ساعت سیستم شما و ساعت سخت‌افزار در یک منطقه‌زمانی\n"
+"قرار دارند. دانستن این وقتی که ماشین شما سیستم عامل دیگری نظیر ویندوز را "
+"میزبان\n"
+"باشد مفید می‌باشد. \n"
+"\n"
+"گزینه‌ی \"%s\" ساعت را از طریق اتصال به کارگزار از راه دور زمان بر اینترنت\n"
+"میزان می‌کند. برای کار کردن این قابلیت باید یک اتصال اینترنت فعال داشته\n"
+"باشید. بهتر است یک کارگزار زمان نزدیک به خود را انتخاب کنید. این گزینه "
+"اتفاقاً\n"
+"کارگزار زمانی را نصب می‌کند که می‌تواند بوسیله‌ی ماشین های دیگر بر روی\n"
+"شبکه‌اتان گردد."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "هم‌گاه‌سازی خودکار زمان"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"کارت گرافیک\n"
+"\n"
+" برنامه نصب‌گر معمولا کارت گرافیک نصب شده بر ماشین شما را بطور خودکار\n"
+"شناسایی و پیکربندی می‌کند. اگر چنین نشده، می‌توانید کارتی را که خود نصب "
+"کرده‌اید\n"
+"از این لیست انتخاب کنید.\n"
+"\n"
+" در صورتی که کارگزارهای مختلف برای کارت شما در دسترس می‌باشند، با یا بدون\n"
+"شتاب دهنده‌ی ۳بعدی، از شما برای انتخاب کارگزاری که برای شما مناسب‌تر می‌باشد \n"
+"سؤال خواهد شد."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (برای سیستم پنجره X ) قلب واسط تصویری لینوکس/گنو می‌باشد که تمام محیط‌های \n"
+"تصویری (KDE, GNOME, AfterStep, WindowMaker وغیره) بسته بندی شده با \n"
+"لینوکس مان‌درایک بر روی آن تکیه دارند.\n"
+"\n"
+"یک لیست ار اجزای گوناگون برای تغییر و تهیه بهترین نمایش تصویری به شما عرضه\n"
+"خواهد شد:\n"
+"\n"
+" کارت گرافیک\n"
+"\n"
+" نصب کننده معمولاً بطور خودکار کارت گرافیک بر روی ماشین شما را شناسایی\n"
+"و تنظیم خواهد کرد. اگر چنین نشد، می‌توانید کارت خود را از این لیست انتخاب "
+"کنید.\n"
+"\n"
+" در صورتی که کارگزارهای گوناگونی برای کارت شما وجود دارند، با یا بدون\n"
+"شتاب‌دهنده‌ی ۳ بعدی، از شما برای انتخاب کارگزاری که بهتر جوابگوی احتیاجات \n"
+"شما می‌باشد سوال خواهد شد.\n"
+"\n"
+"\n"
+"\n"
+"نمایشگر\n"
+"\n"
+" نصب کننده معمولاً بطور خودکار نمایشگر وصل شده به ماشین شما را شناسایی\n"
+"و تنظیم خواهد کرد. اگر چنین نشد، می‌توانید نمایشگر خود را از این لیست انتخاب "
+"نمایید.\n"
+"\n"
+"\n"
+"\n"
+"وضوح\n"
+"\n"
+" در اینجا می‌توانید وضوح و عمق‌های رنگ موجود برای سخت‌افزار خود را انتخاب\n"
+"نمایید. آن را که بهترین جوابگوی احتیاجات شما می‌باشد را انتخاب کنید (شما "
+"قادر\n"
+"خواهید بود که آن را بعد از نصب تغییر دهید). یک نمونه از تنظیمات انتخاب شده "
+"در\n"
+"نمایشگر نشان داده خواهد شد.\n"
+"\n"
+"\n"
+"\n"
+"آزمایش\n"
+"\n"
+" سیستم تلاش خواهد کرد تا یک صفحه تصویری را با وضوح مورد خواست باز کند.\n"
+"اگر شما بتوانید پیغام هنگام آزمایش را مشاهده نمایید و جواب \"%s\"را بدهید،\n"
+"پس DrakX به مرحله‌ی بعدی ادامه خواهد داد. اگر شما نتوانیدپیغام را ببینید، "
+"بدین\n"
+"معنی است که بعضی از قسمت‌های تنظیمات شناسایی خودکار صحیح نبوده و آزمایش\n"
+"بعد از ۱۲ ثانیه بطور خودکار تمام شده، شما را به فهرست برمیگرداند. تنظیمات "
+"را\n"
+"تا وقتی که نمایش تصویری درست را بدست نیاورده‌اید تغییر دهید.\n"
+"\n"
+"\n"
+"\n"
+"گزینه‌ها\n"
+"\n"
+" در اینجا میتوانید تعویض خودکار به واسط تصویری را در آغازگری انتخاب "
+"نمایید.\n"
+"روشن است که اگر ماشین شما قرار است کارگزار شود، یا اگر شما در تنظیم "
+"نمایشگر \n"
+"موفق نبوده‌اید بخواهید \"%s\" را علامت بزنید."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"نمایشگر\n"
+"\n"
+" برنامه‌ی نصب‌گر معمولاً بطور خودکار نمایشگر وصل شده به رایانه‌ی شما را \n"
+"شناسائی و پیکربندی خواهد کرد. اگر درست نبود، می‌توانید نمایشگری را\n"
+"که به رایانه‌ی خود وصل کرده‌اید از این لیست انتخاب کنید."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"تفکیک‌پذیری\n"
+"\n"
+" در اینجا می‌توانید تفکیک‌پذیری و عمق رنگ در دسترس را برای سخت‌افزارتان\n"
+"را انتخاب کنید. آن را که برای شما بهتر است انتخاب کنید (بعد از نصب می‌توانید\n"
+"آن را تغییر دهید). نمونه‌ای از پیکربندی انتخاب شده در نمایشگر نشان داده می‌شود."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"در صورتی که کارگزارهای گوناگونی برای کارت‌تان در دسترس هستند، با\n"
+"یا بدون شتاب دهنده ۳ بعدی ، از شما برای انتخاب مناسبترین کارگزار\n"
+" سؤال خواهد شد."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"گزینه‌ها\n"
+"\n"
+" در اینجا می‌توانید انتخاب کنید که آیا می‌خواهید رایانه شما بطور خودکار به\n"
+"یک واسط گرافیکی در آغازگری عوض شود. روشن است که شما بخواهید \"%s\" \n"
+"را علامت زده اگر ماشین شما مانند یک کارگزار باید عمل کند، یا اگر شما در\n"
+"پیکربندی نمایشگر خود موفق نبوده‌اید."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"در این مرحله، باید تصمیم بگیرید که در کجای دیسک خود می‌خواهید سیستم عامل\n"
+"لینوکس ماندریبا را نصب کنید. اگر دیسک شما خالی یا اگر سیستم عامل موجودی\n"
+"همه‌ی فضای در دسترس دیسک را در اختیار دارد مجبور خواهید بود دیسک خود را\n"
+"قسمت‌بندی کنید. اساسا، قسمت‌بندی دیسکی شامل قسمت کردن منطقی آن برای\n"
+"ایجاد فضای لازم برای نصب سیستم لینوکس ماندریبا جدیدتان می‌باشد.\n"
+"\n"
+"بخاطر غیر قابل برگشت بودن پروسه‌ی قسمت‌بندی و اینکه می‌تواند به از دست رفتن\n"
+"داده‌ها منتهی شود، مخصوصا اگر سیستم عاملی از قبل وجود داشته و بر روی دیسک\n"
+"نصب شده باشد، اگر شما کاربری بی‌تجربه هستید قسمت‌بندی می‌تواند عصبی\n"
+"کننده و هیجان آور باشد. خوشبختانه، DrakX جادوگر راهنمایی را برای آسان کردن\n"
+"این پروسه ضمیمه دارد. قبل از ادامه به این مرحله بقیه این بخش را بخوانید و \n"
+"بیش از هر چه وقت کافی را بخود بدهید.\n"
+"\n"
+"بستگی به پیکربندی دیسک‌تان، چندین گزینه در دسترس است:\n"
+"\n"
+" * \"%s\": این گزینه قسمت‌بندی خودکار دستگاه دیسک خالی شما را انجام می‌دهد.\n"
+"اگر از این گزینه استفاده کنید دیگر از شما سؤال دیگری نخواهد شد.\n"
+" \n"
+" * \"%s\": جادوگر یک یا چند قسمت‌بندی موجود لینوکس را بر روی دیسک شما\n"
+"شناسایی کرده است. اگر می‌خواهید از آنها استفاده کنید این گزینه را انتخاب "
+"کنید.\n"
+"از شما سپس پرسیده خواهد شد که نقاط سوارسازی مربوط به هر قسمت‌بندی را\n"
+"انتخاب کنید. نقاط سوارسازی صحیح بوسیله‌ی پیش‌فرض انتخاب خواهند شد، در بیشتر \n"
+"موارد نظر خوبی است که آنها را نگه دارید.\n"
+"\n"
+" * \"%s\": اگر ویندوز مایکروسافت بر دیسک شما نصب شده است و همه فضای موجود\n"
+"بر آن را در اختیار دارد، شما می‌بایست فضای آزاد برای لینوکس را ایجاد کنید\n"
+"برای انجام این کار، شما می‌توانید قسمت‌بندی و داده‌های ویندوز مایکروسافت\n"
+" را حذف کرده (راه حل ''پاک کردن تمام دیسک'' را ببینید) یا قسمت‌بندی FAT \n"
+"ویندوز مایکروسافت را تغییر اندازه دهید. تغییر اندازه می‌تواند بدون از دست\n"
+"دادن هیچ داده‌ای به این شرط که شما از قبل قسمت‌بندی ویندوز را نظم داده\n"
+"یا defragmented بشود و اینکه آن از قالب FAT استفاده کند. ذخیره‌ی داده‌های\n"
+"شما بشدت سفارش می‌شود. استفاده از این گزینه اگر می‌خواهید هم لینوکس\n"
+"و هم ویندوز مایکروسافت را بر روی یک رایانه داشته باشید سفارش می‌شود.\n"
+"\n"
+" قبل از انتخاب این گزینه، لطفا توجه کنید که بعد از این پروسه اندازه‌ی\n"
+"قسمت‌بندی ویندوز مایکروسافت شما کوچکتر از وقتی که شروع کرده‌اید خواهد\n"
+"شد شما فضای آزاد کمتری زیر ویندوز مایکروسافت برای ذخیره‌ی داده‌ها‌ی خود یا\n"
+"نصب نرم‌افزار جدید خواهید داشت.\n"
+"\n"
+" * \"%s\": اگر می‌خواهید تمام داده‌ها و قسمت‌بندی‌های موجود بر روی دیسک\n"
+"را حذف و آنها را با سیستم لینوکس ماندریبا جدید خود جایگزین کنید، این \n"
+"گزینه را انتخاب کنید. دقت کنید، شما قادر نخواهید بود انتخاب خود را \n"
+"بعد از تأیید پس بگیرید.\n"
+"\n"
+" !! اگر این گزینه را انتخاب کنید، همه‌ی داده‌های بر روی دیسک شما حذف خواهند "
+"شد. !! \n"
+"\n"
+" * \"%s\": این همه چیز را از دیسک پاک کرده و از نو شروع به قسمت‌بندی هر \n"
+"چیز از پایه می‌کند. هر داده‌ای بر روی دیسک شما از دست خواهد رفت. \n"
+"\n"
+" !! اگر شما این گزینه را انتخاب کنید، همه داده‌های بر دیسک شما از دست خواهد "
+"رفت. !! \n"
+"\n"
+" * \"%s\": این گزینه را اگر خودتان می‌خواهید دیسک را قسمت‌بندی کنید انتخاب\n"
+" نمایید. دقت کنید -- این گزینه‌ی باقدرت ولی خطرناکی است و شما می‌توانید \n"
+"بسادگی تمام داده‌های خود را از دست بدهید. برای همین این گزینه واقعا فقط \n"
+"اگر شما چنین کاری را قبلا انجام داده‌اید و تجربه دارید سفارش می‌شود. برای \n"
+"راهنمایی چگونگی استفاده از وسیله‌ی DiskDrake به قسمت``مدیریت\n"
+"قسمت‌بندی‌های خود'' در ``راهنمای مبتدی'' مراجعه کنید."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "استفاده از قسمت‌بندی‌های موجود"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "تمام دیسک پاک شود"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"بفرمائید. نصب اکنون تکمیل شده است و سیستم گنو/لینوکس آماده‌ی استفاده است.\n"
+"فقط بر \"%s\" کلیک کرده تا سیستم آغازگری مجدد شود. فراموش نکنید که رسانه‌ی\n"
+"نصب (سی‌دی-رم یا دیسکچه) را بردارید.اولین چیزی که شما بعد از اینکه\n"
+"رایانه‌اتان سخت‌افزار خود را آزمایش می‌کند فهرست بارگذار آغازگری است،\n"
+"که به شما اجازه‌ی انتخاب راه‌اندازی یکی از سیستم‌های عامل را می‌دهد.\n"
+"\n"
+"دکمه‌ی \"%s\" دو دکمه‌ی دیگر را نشان داده برای: \n"
+" * \"%s\": ایجاد یک دیسکچه نصب که تمام نصب را بطور خودکار بدون کمک \n"
+"کسی، شبیه به نصبی که شما اکنون پیکربندی کردید را انجام می‌دهد. \n"
+"\n"
+" توجه کنید که بعد از کلیک بر این دکمه دو گزینه در دسترس هستند:\n"
+"\n"
+" * \"%s\". این نصب نسبتاً خودکاراست. گام قسمت‌بندی تنها \n"
+"مرحله‌ی گفتگویی است.\n"
+"\n"
+" * \"%s\". نصب کاملاً خودکار: دیسک سخت کاملاً بازنویسی شده،\n"
+"تمام داده‌ها از دست خواهند رفت.\n"
+"\n"
+" این قابلیت وقتی چندین ماشین قرار است شبیه به هم نصب شوند مفید است.\n"
+"قسمت نصب خودکار را در پایگاه اینترنت ما برای اطلاعات بیشتر ملاحظه کنید.\n"
+"\n"
+" * \"%s\"(*): یک لیست از بسته‌های انتخاب شده در این نصب را ذخیره می‌کند.\n"
+"برای استفاده از این انتخاب با نصب دیگر، دیسکچه را داخل کرده و نصب\n"
+"را شروع کنید. در اعلان, کلید [F1] را فشار داده و بنویسید >>\n"
+"linux defcfg=\"floppy\" << و کلید ورود را فشار دهید.\n"
+"\n"
+"(*) شما به دیسکچه‌ای با قالب FAT نیاز دارید. برای ساختن آن در گنو/لینوکس، \n"
+"\"mformat a:\"، یا \"fdformat/dev/fd0\" و بدنبالش \"mkfs.vfat\n"
+"/dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "تولید دیسکچه‌ی نصب-خودکار"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"اگر تصمیم گرفتید تا از بعضی از قسمت‌بندیهای گنو/لینوکس استفاده مجدد کنید، "
+"میبایست\n"
+"بعضی از آنها را قسمت‌بندی مجدد کرده و هر داده روی آنها پاک شود. برای انجام "
+"اینکار\n"
+"لطفا آن قسمت‌بندیها را نیز انتخاب کنید\n"
+"\n"
+"لطفاً توجه کنید که ضروری نیست که تمام قسمت‌بندی‌های موجود قالب‌بندی مجدد\n"
+"شوند. شما باید قسمت‌بندیهای حاوی سیستم عامل (مانند \"/\", \"/usr\" یا \"/var"
+"\")\n"
+"را قالب‌بندی مجدد کرده اما شما مجبور به قالب‌بندی مجدد قسمت‌بندی‌های حاوی\n"
+"داده‌هایی که می‌خواهید نگهدارید نیستید (معمولاً \"/home\").\n"
+"\n"
+"لطفاً هنگام انتخاب قسمت‌بندی‌ها دقت کنید. بعد از قالب‌بندی تمام داده‌های\n"
+"بر قسمت‌بندی‌های انتخاب شده حذف خواهند شد و قادر به تعمیر آنها نخواهید بود\n"
+"\n"
+"وقتی برای قالب‌بندی قسمت‌بندی‌ها آماده شدید بر \"%s\" کلیک کنید.\n"
+"\n"
+"اگر می‌خواهید قسمت‌بندی دیگری برای نصب سیستم عامل لینوکس ماندریبا\n"
+"جدید خود انتخاب کنید بر %s کلیک نمایید.\n"
+"\n"
+"اگر می‌خواهید قسمت‌بندی‌هایی که باید برای بلوک‌های بد بر دیسک کنترل شوند\n"
+"را انتخاب کنید بر %s کلیک کنید."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"در زمانی که در حال نصب لینوکس ماندریبا هستید، به احتمال زیاد بعضی \n"
+"از بسته‌ها از زمان شروع پخش بروزسازی شده‌اند. اشکالات ممکن است تعمیر \n"
+"شده و مسایل امنیتی رفع شده باشند. برای استفاده از فواید این بروزسازی‌ها،\n"
+"اکنون میتوانید آنها را از اینترنت بارگیری نمایید. \"%s\" را اگر شما یک "
+"ارتباط\n"
+"کارآرای اینترنت دارید علامت زده، یا \"%s\" را اگر ترجیح می‌دهید بسته‌ها را\n"
+"بعداً بروزسازی کنید.\n"
+"\n"
+"انتخاب \"%s\" لیستی از مکان‌هایی که آن بروزسازی‌ها می‌توانند دریافت شوند\n"
+"را نشان خواهد داد. شما باید مکانی که به شما نزدیکتر است را انتخاب کنید.\n"
+"درخت مجموعه-بسته ظاهر خواهد شد: مجموعه را مرور کرده، و \"%s\" را برای\n"
+"دریافت و نصب بسته‌های انتخاب شده، یا \"%s\" را برای ترک فشار دهید."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"در این نقطه، DrakX به شما اجازه‌ی انتخاب سطح امنیتی مورد نظر را برای ماشین\n"
+"می‌دهد. روش معمول این است که اگر ماشین حاوی داده‌های مهم خواهد شد، یا اگر\n"
+"آن ماشینی خواهد بود که مستقیماً در معرض اینترنت قرار می‌گیرد سطح امنیتی باید\n"
+"بالاتر گذاشته شود. ضرر این معامله در داشتن سطح بالاتر امنیتی عموماً در "
+"پرداخت\n"
+"آسانی استفاده بدست آورده می‌شود.\n"
+"\n"
+"اگر نمی‌دانید کدام را باید انتخاب کنید، گزینه‌ی پیش‌فرض را نگه دارید.\n"
+" بعداً می‌توانید با ابزار draksec از مرکز کنترل ماندریبا سطح امنیتی را تغییر "
+"دهید.\n"
+"\n"
+"منطقه‌ی \"%s\"میتواند سیستم را از وجود کاربری که مسئول امنیت بر این رایانه\n"
+"خواهد گردید مطلع سازد. پیغام‌های امنیتی به آن نشانی فرستاده خواهد شد."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "مدیر امنیت"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"در این نقطه، شما مجبور به انتخاب قسمت‌بندی(های) که برای نصب سیستم لینوکس \n"
+"ماندریبا استفاده خواهد شد هستید.اگر قسمت‌بندی‌هایی که یا از یک نصب قبلی \n"
+"گنو/لینوکس یا بوسیله ابزار قسمت‌بندی دیگر وجود دارند، می‌توانید از آنها \n"
+"استفاده کنید. در غیر این صورت، قسمت‌بندی‌ها باید ایجاد شوند. \n"
+"\n"
+"برای ایجاد قسمت‌بندی‌ها، شما باید اول یک دستگاه دیسک را انتخاب کنید. \n"
+"شما می‌توانید آن دیسک را بوسیله‌ی کلیک بر ``hda'' برای اولین دستگاه IDE \n"
+" و ``hdb'' برای دومین، ``sda'' برای اولین دستگاه SCSI و غیره برای\n"
+"قسمت‌بندی انتخاب کنید.\n"
+"\n"
+"برای قسمت‌بندی دستگاه دیسک انتخاب شده، می‌توانید از این گزینه‌ها استفاده کنید:\n"
+"\n"
+" * \"%s\": این گزینه تمام قسمت‌بندی‌های روی دیسک انتخاب شده را حذف می‌کند\n"
+"\n"
+" * \"%s\": این گزینه بر روی فضای آزاد دیسک شما بطور خودکار قسمت‌بندی‌های\n"
+"ext3 و حافظه مبادله را ایجاد می‌کند\n"
+"\n"
+"\"%s\": دسترسی به قابلیت‌های دیگر را فراهم می‌سازد\n"
+"\n"
+" * \"%s\": جدول قسمت‌بندی را بر دیسکچه ذخیره می‌کند.در صورت لزوم \n"
+"بعدا می‌توان آن را بازنشانی کرد. انجام این گام بشدت سفارش می‌شود.\n"
+"\n"
+" * \"%s\": به شما اجازه‌ی باز‌نشانی جدول قسمت‌بندی ذخیره شده را از دیسکچه "
+"می‌دهد.\n"
+"\n"
+" * \"%s\": اگر جدول قسمت‌بندی شما خراب شده باشد با این گزینه می‌توانید\n"
+"آن را بازنشانی کنید. لطفا دقت کنید و بخاطر داشته باشید که این همیشه درست\n"
+"کار نمی‌کند.\n"
+"\n"
+" * \"%s\": تمام تغییرات باطل شده و جدول قسمت‌بندی اصلی بر دستگاه دیسک\n"
+"بارگذاری مجدد می‌شود.\n"
+"\n"
+" * \"%s\": غیرفعال کردن این گزینه کاربران را مجبور می‌کند که رسانه‌های قابل\n"
+"حمل از قبیل دیسکچه و سی‌دی را دستی سوار یا پیاده کنند.\n"
+"\n"
+" * \"%s\": اگر می‌خواهید از یک جادوگر برای قسمت‌بندی دیسک خود استفاده کنید از\n"
+"این گزینه استفاده نمایید. این گزینه اگر شما تجربه‌ی قبلی از قسمت‌بندی\n"
+"کردن دیسک ندارید پیشنهاد می‌شود.\n"
+"\n"
+" * \"%s\": برای لغو تغییرات خود از این گزینه استفاده کنید.\n"
+"\n"
+" * \"%s\": عملیات بیشتری را بر قسمت‌بندی‌ها اجازه داده (نوع، گزینه‌ها، "
+"قالب‌بندی)\n"
+"و اطلاعات بیشتری را درباره دستگاه دیسک می‌دهد.\n"
+"\n"
+" * \"%s\": وقتی شما قسمت‌بندی دستگاه دیسک خود را به اتمام رساندید،\n"
+"این تغییرات شما را بر دیسک ذخیره می‌سازد.\n"
+"\n"
+"وقتی اندازه‌ی یک قسمت‌بندی را تعیین می‌کنید، می‌توانید بخوبی از کلیدهای جهت‌دار\n"
+"صفحه‌کلید خود استفاده کنید.\n"
+"\n"
+"توجه: می‌توانید به هر گزینه توسط صفحه‌کلید دسترسی پیدا کنید. در طول\n"
+"قسمت‌بندی با استفاده از جهت‌های [پرش] و [بالا/پایین] مرور کنید.\n"
+"\n"
+"وقتی یک قسمت‌بندی انتخاب شده باشد، می‌توانید از:\n"
+"\n"
+" * Ctrl-c برای ایجاد یک قسمت‌بندی جدید (وقتی یک قسمت‌بندی خالی انتخاب\n"
+"شده باشد)\n"
+"\n"
+" * Ctrl-d برای حذف یک قسمت‌بندی \n"
+"\n"
+" * Ctrl-m برای تعیین نقطه‌ی سوارسازی\n"
+"\n"
+"برای دریافت اطلاعات درباره انواع سیستم پرونده موجود، لطفاً فصل ext2FS \n"
+"را از ` دستورالعمل مرجع'' بخوانید.\n"
+"\n"
+"اگر شما بر یک ماشین PPC نصب می‌کنید، شما باید یک قسمت‌بندی کوچک HFS \n"
+"``bootstrap'' حداقل ۱ مگابایت که برای بارگذار آغازگر yaboot\n"
+"استفاده می‌شود را ایجاد کنید اگر شما بطور اختیاری آن قسمت‌بندی را بزرگتر\n"
+"بسازید، مثلاً ۵۰ مگابایت، شما آن را برای انبار یک هسته یدک و تصاویر ramdisk\n"
+"در شرایط آغازگری اضطراری مفید خواهید یافت."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "سوارسازی-خودکار رسانه‌ی قابل انتقال"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "تعویض بین حالت عادی/کارشناسی"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"بیش از یک قسمت‌بندی مایکروسافت بر دیسک شما شناسایی شده است. \n"
+"لطفا آن قسمت‌بندی را که برای نصب سیستم عامل لینوکس ماندریبا می‌خواهید \n"
+"تغییر اندازه دهید انتخاب کنید.\n"
+"\n"
+"هر قسمت‌بندی فهرست شده بدنبال می‌آید: \"نام لینوکس\", \"نام ویندوز\" \n"
+"\"ظرفیت\".\n"
+"\n"
+"\"نام لینوکس\" دارای ساختار: \"نوع دستگاه دیسک\", \"شماره دستگاه دیسک\",\n"
+"\"شماره قسمت‌بندی\" (برای مثال, \"hda1\").\n"
+"\n"
+"\"نوع دستگاه دیسک\" اگر دستگاه دیسک شما یک دستگاه دیسک IDE باشد \"hd\" است "
+"و\n"
+"\"sd\" اگر آن یک دستگاه دیسک SCSI باشد.\n"
+"\n"
+"\"شماره دستگاه دیسک\" همیشه یک حرف الفبا بعد از \"hd\" یا \"sd\"می‌باشد.\n"
+"با دستگاه‌های دیسک IDE:\n"
+"\n"
+" * \"a\" بمعنی \"دیسک ارشد بر کنترل کننده‌ی اول IDE \";\n"
+"\n"
+" * \"b\" بمعنی \"دیسک زیردست بر کنترل کننده‌ی اول IDE \";\n"
+"\n"
+" * \"c\" بمعنی \"دیسک ارشد بر کنترل کننده‌ی دوم IDE \";\n"
+"\n"
+" * \"d\" بمعنی \"دیسک زیردست بر کنترل کننده‌ی دوم IDE \".\n"
+"\n"
+"با دستگاه‌های دیسک SCSI, یک \"a\" بمعنی \"پایین‌ترین SCSI ID\", یک \"b\"\n"
+"بمعنی \"پایین‌ترین SCSI ID دومی\", و غیره.\n"
+"\n"
+"\"نام ویندوز\" حرف الفبای دستگاه دیسک شما در ویندوز می‌باشد (اولین\n"
+"دیسک یا قسمت‌بندی \"C:\" نامیده می‌شود)."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": انتخاب کشور کنونی را بررسی کنید. اگر شما در این کشور زندگی نمی‌کنید،\n"
+"بر دکمه‌ی \"%s\" کلیک کرده و یکی دیگر را انتخاب کنید. اگر کشور شما\n"
+"در لیست نشان داده شده وجود ندارد، دکمه‌ی \"%s\" را برای دریافت لیست\n"
+"کامل کشورها کلیک کنید."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"این گام فقط در صورتی که یک قسمت‌بندی قدیمی لینوکس/گنو بر ماشین شما پیدا شود\n"
+"فعال می‌گردد. \n"
+"\n"
+"DrakX اکنون احتیاج دارد بداند که آیا شما می‌خواهید یک نصب جدید یا یک ارتقا\n"
+"سیستم لینوکس ماندریبا موجود را انجام دهید:\n"
+"\n"
+" * \"%s\": در مجموع این سیستم قدیمی را کاملاً پاک می‌کند اگر می‌خواهید روش\n"
+"قسمت‌بندی دستگاه‌های دیسک خود را تغییر دهید، یا سیستم پرونده را تغییر دهید، \n"
+"بایستی از این گزینه استفاده کنید. هرچند، بستگی به طرح قسمت‌بندی‌تان،\n"
+"می‌توانید از بر-نگارش بعضی از داده‌های موجودتان جلوگیری کنید.\n"
+"\n"
+" * \"%s\": این رده‌ی نصب به شما اجازه می‌دهد تا بسته‌های نصب شده‌ی کنونی\n"
+"لینوکس ماندریبا را بروزسازی کنید. طرح قسمت‌بندی کنونی‌تان و داده‌های کاربر دست\n"
+"نخواهند خورد و بیشتر گام‌های پیکربندی در دسترس باقی خواهند بود،\n"
+"شبیه به یک نصب استاندارد.\n"
+"\n"
+"استفاده از گزینه‌ی ``ارتقاء'' بایستی برای سیستم‌های لینوکس ماندریبا نسخه‌ی\n"
+"\"8.1\"یا بعدی کارآرایی خوبی داشته باشد. اجرای ارتقاء بر نسخ پیشتر از "
+"لینوکس\n"
+"ماندریبا ۸٬۱ سفارش نمی‌شود."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"بنابر زبان پیش‌فرضی که در این قسمت انتخاب کرده‌اید، DrakX نوع بخصوصی\n"
+"از پیکربندی صفحه‌کلید را بطور خودکار انتخاب می‌کند. اگر چه ممکن است شما\n"
+"صفحه‌کلیدی را که دقیقاً مطابق زبان شما باشد نداشته باشید: برای مثال، اگر شما\n"
+"یک شخص انگلیسی زبان سوئیسی باشید، ممکن است یک صفحه‌کلید سوئیسی\n"
+"داشته باشید. یا اگر شما انگلیسی صحبت کرده ولی در کوبک کانادا زندگی می‌کنید،\n"
+"ممکن است خود را در شرایطی بیابید که زبان بومی شما و صفحه‌کلید مطابقت\n"
+"نداشته باشند. در هر دو صورت، این مرحله‌ی نصب به شما اجازه‌ی انتخاب\n"
+"صفحه‌کلید مناسب را از یک لیست می‌دهد.\n"
+"\n"
+"برای عرضه‌ی لیست کامل صفحه‌کلید‌های حمایت شده بر دکمه‌ی \"%s\" کلیک کنید.\n"
+"\n"
+"اگر شما صفحه‌کلیدی را بر اساس یک الفبای غیر لاتین انتخاب کنید، گفتگوی \n"
+"بعدی به شما اجازه‌ی ترکیب کلیدی را که بتوانید بین طرح‌های صفحه‌کلید لاتین\n"
+"و غیر لاتین تعویض کنید خواهد داد."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"انتخاب زبان ترجیحی شما زبان نوشتجات، نصب‌گر و سیستم‌تان را در مجموع مورد\n"
+"تأثیر قرار خواهد داد. در ابتدا منطقه‌ای را که در آن قرار دارید و سپس زبانی را "
+"که\n"
+"صحبت می‌کنید انتخاب نمایید.\n"
+"\n"
+"کلیک بر دکمه‌ی \"%s\" به شما اجازه می‌دهد تا زبان‌های دیگری را بر ایستگاه\n"
+"کارتان انتخاب کرده، و بدین طریق پرونده‌های مخصوص-زبان را برای سیستم\n"
+"نوشتجات و برنامه‌ها نصب کنید. برای نمونه، اگر شما کاربرانی از اسپانیا را بر\n"
+"رایانه‌اتان میزبان هستید، انگلیسی را مانند زمان پیش‌فرض در درخت‌نما انتخاب\n"
+"کرده و \"%s\" را در قسمت پیشرفته انتخاب کنید.\n"
+"\n"
+"درباره‌ی پشتیبانی از UTF-8 (یونی‌کد): یونی‌کد کدگذاری نویسه‌ی جدیدی\n"
+"برای پوشش دادن همه‌ی زبان‌های موجود است. هرچند پشتیبانی کامل برای\n"
+"آن در لینوکس/گنو هنوز تحت تولید است. بدین دلیل، لینوکس ماندریبا از آن\n"
+"استفاده خواهد کرد یا بدلیل عدم وابستگی به گزینش‌های کاربر:\n"
+"\n"
+" * اگر زبانی را با کدگذاری سنتی قوی (زبان‌های لاتین۱، روسی، ژاپنی،\n"
+"چینی، کره‌ای، تایلندی، یونانی، ترکی، بیشتر زبان‌های iso-8859-2) انتخاب\n"
+"کنید، کدگذاری سنتی بوسیله‌ی پیش‌فرض استفاده خواهد گردید:\n"
+"\n"
+" * بقیه‌ی زبان‌ها در پیش‌فرض از یونی‌کد استفاده خواهند کرد:\n"
+"\n"
+" * اگر دو یا زبان‌های بیشتری مورد نیاز است، و آن زبان‌ها از کدگذاری\n"
+"یکسان استفاده نمی‌کنند، پس یونی‌کد برای تمام سیستم استفاده خواهد شد.\n"
+"\n"
+" * در پایان، یونی‌کد می‌تواند برای سیستم با درخواست کاربر بوسیله‌ی\n"
+"انتخاب گزینه‌ی \"%s\" بدون وابستگی به زبان‌(های) گزیده شده اجبار گردد.\n"
+"\n"
+"توجه کنید که شما به انتخاب زبان اضافه‌ی تکی محدود نیستید. شما می‌توانید\n"
+"چندین زبان، حتی تمام آنها را بوسیله‌ی انتخاب جعبه‌ی \"%s\" انتخاب کنید.\n"
+"انتخاب کردن پشتیبانی برای زبانی بمعنی ترجمه‌ها، قلم‌ها، غلط‌یاب‌ها\n"
+"وغیره برای آن زبان که نصب خواهد شد می‌باشد.\n"
+"\n"
+"برای تعویض بین زبان‌های گوناگون نصب شده بر سیستم، می‌توانید\n"
+"فرمان \"/usr/sbin/localedrake\" را مانند \"root\" برای تغییر زبان استفاده\n"
+"شده بوسیله‌ی تمام سیستم اجرا کنید. اجرای این فرمان مانند یک کاربر عادی\n"
+"تنظیم زبان را تنها برای آن کاربر عوض خواهد نمود."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "اسپانول"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"DrakX معمولا مشکلی برای شناسایی تعداد دکمه های موشی شما ندارد.\n"
+"اگر اشکالی پیش آمد فرض بر داشتن دو دکمه و پیکربندی آن برای شبیه سازی دکمه "
+"سوم\n"
+"گذارده خواهد شد. دکمه سوم موشی دو-دکمه ای توسط کلیک همزمان دکمه های راست و "
+"چپ\n"
+"بدست خواهد آمد. DrakX بطور خودکار خواهد دانست که آیا موشی شما از واسط USB\n"
+"یا PS/2 یا سریال استفاده میکند.\n"
+"\n"
+"اگر شما موشی سه-دکمه ای بدون چرخ دارید، میتوانید موشی \"%s\" را انتخاب "
+"کنید.\n"
+"DrakX موشی شما را بطوری پیکربندی خواهد کرد تا بتوانید چرخ آن را شبیه سازی "
+"کنید:\n"
+"برای اینکار دکمه وسطی را فشار داده و اشاره گر موشی خود را به بالا و پایین "
+"حرکت دهید.\n"
+"\n"
+"اگر بدلایلی میخواهید نوع دیگر از موشی را مشخص کنید، آن را از لیست عرضه شده\n"
+"انتخاب کنید.\n"
+"\n"
+"شما میتوانید ورودی \"%s\" را برای گزینش نوع موشی همگانی که تقریبا با همه "
+"موشیها\n"
+"کار خواهد کرد انتخاب کنید.\n"
+"\n"
+"اگر موشی غیر از پیش فرض انتخاب کرده اید، صفحه آزمایشی نمایش داده خواهد شد.\n"
+"از دکمه ها و چرخ برای امتحان درستی تنظیمات استفاده کرده و اینکه موشی بدرستی\n"
+"کار میکند. اگر موشی خوب کار نمیکند، دکمه فاصله یا ورودی را فشار دهید تا "
+"آزمایش\n"
+"لغو گردیده و شما به لیست موشی باز خواهید گشت.\n"
+"\n"
+"بعضی وقتها چرخ موشی بطور خودکار شناسایی نمیشوند، و شما نیاز خواهید داشت\n"
+"موشی خود را از یک لیست انتخاب کنید. مطمئن شوید که آن را که به درگاه موشی "
+"شما\n"
+"وصل شده انتخاب میکنید. بعد از انتخاب موشی و فشردن دکمه \"%s\"، تصویر موشی\n"
+"بر صفحه ظاهر خواهد گردید. چرخ موشی را بچرخانید تا مطمئن شوید که آن بدرستی\n"
+"فعال شده است. همانطور که چرخ موشی را میچرخانید، حرکت چرخ را بر روی صفحه\n"
+"مشاهده خواهد کرد. دکمه ها را امتحان کرده و کنترل کنید که حرکت مکان نمای موشی "
+"بر\n"
+"روی صفحه بهمان نحو است که شما آن را حرکت میدهید. "
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "با شبیه‌سازی چرخ"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "جهانی | هر موشی PS/2 & USB"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"لطفاً درگاه درست را انتخاب کنید، برای مثال، درگاه \"COM1\" در ویندوز \n"
+"بنام \"ttyS0\" در لینوکس خوانده می‌شود."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"این مهمترین نقطه‌ی تصمیم گیری برای امنیت سیستم لینوکس/گنوی شما است.\n"
+"شما باید گذرواژه‌ی \"root\" را وارد کنید. \"Root\" مدیر سیستم است و تنها\n"
+"کاربری است که می‌تواند بروزسازی کرده، کاربران را اضافه کند، پیکربندی همگانی\n"
+"سیستم را تغییر دهد، و همچنین بقیه کارهای از این قبیل را. بطور خلاصه، \"root"
+"\"\n"
+"هر کاری را می‌تواند انجام دهد! برای همین شما باید گذرواژه‌ای را انتخاب کنید "
+"که\n"
+" حدس زدنش سخت باشد - DrakX اگر گذرواژه خیلی ساده باشد به شما تذکر داده\n"
+"خواهد شد. همانطور که مشاهده می‌کنید، شما مجبور به وارد کردن یک گذرواژه "
+"نیستید،\n"
+"ولی ما بشدت برعکس این را به شما نصیحت می‌کنیم. لینوکس/گنو مانند هر سیستم\n"
+"عامل دیگری برای خطاهای کارکنان مستعد است. چون \"root\" هیچ محدودیت اجرایی\n"
+"ندارد و بطور غیر عمدی تمام دادهها بر قسمت بندیها را بوسیله دستیابی بی توجه "
+"به\n"
+"قسمت بندیهای خود پاک کند، این امر مهمی است که بسختی بتوان \"root\" شد.\n"
+"\n"
+"گذرواژه بایستی ترکیبی از نویسه‌های الفبا و حداقل دارای ۸ نویسه باشد. هرگز\n"
+"گذرواژه \"root\" یادداشت نشود-- آن به آسانی سیستم را تسلیم میکند.\n"
+"\n"
+"یک نصیحت -- گذرواژه را طولانی یا پیچیده نسازید برای اینکه باید بتوانید\n"
+"آنرا بخاطر بسپارید!\n"
+"\n"
+"گذرواژه هنگام نگارش آن برصفحه نشان داده نخواهد شد. برای کم کردن احتمال\n"
+"خطای نگارش کورکورانه لازم است که گذرواژه را دوبار وارد کنید. اگر اتفاقی\n"
+"هر دوبار همان خطای نگارشی را انجام دهید، این گذرواژه‌ی نادرست همانی\n"
+"می‌شود که باید بار اول از آن استفاده کنید.\n"
+"\n"
+"اگر می‌خواهید دستیابی به این رایانه از طریق یک کارگزار تأیید هویت کنترل شود،\n"
+"دکمه‌ی \"%s\" را کلیک کنید.\n"
+"\n"
+"اگر شبکه‌اتان نه از LDAP ،NIS، یا سرویس‌های تأیید هویت دامنه‌ی ویندوز PDC\n"
+"استفاده می‌کند، سرویس مناسبی را برای \"%s\" انتخاب کنید. اگر نمی‌دانید از\n"
+"کدام باید استفاده کنید، باید این را از مدیر سیستم شبکه‌اتان سؤال کنید.\n"
+"\n"
+"اگر شما در بخاطر سپردن گذرواژه مشکل دارید، اگر رایانه شما هرگز به اینترنت\n"
+"وصل نخواهد شد یا شما مطلقاً به همه‌ی کسانی که از رایانه‌تان استفاده\n"
+"می‌کنند اطمینان دارید، می‌توانید داشتن \"%s\" را انتخاب کنید."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "تأیید هویت"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"LILO و GRUB بارگذارهای لینوکس/گنو هستند. معمولا این مرحله کاملا \n"
+"خودکار است. DrakX بندهای آغازگری دیسک را بررسی کرده و بر اساس\n"
+"آنچه در آنجا پیدا می‌کند عمل خواهد کرد:\n"
+"\n"
+" * اگر بند آغازگری ویندوز یافت شود، آن را بوسیله یک بند آغازگر\n"
+"GRUB/LILO جایگزین می‌کند. بدین ترتیب شما قادر خواهید بود یا\n"
+"لینوکس/گنو یا سیستم عامل دیگری را آغازگری کنید.\n"
+"\n"
+" * اگر یک بند آغازگری GRUB یا LILO یافت شود، آن را با یکی دیگر جایگزین\n"
+"می‌کند.\n"
+"\n"
+"اگر نتواند چیزی پیدا کند، DrakX مکانی را برای گذاشتن بارگذار آغازگر سؤال\n"
+"خواهد کرد. معمولاً، \"%s\" مطمئن‌ترین مکان است. گزینش \"%s\" هیچ\n"
+"بارگذار آغازگر را نصب نخواهد کرد. فقط اگر می‌دانید چکار می‌کنید از آن\n"
+"استفاده کنید."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"اکنون زمان آن رسیده است که سیستم چاپ را بر روی رایانه خود انتخاب کنید. "
+"سیستمهای\n"
+"عامل دیگر ممکن است یکی را ارائه دهند، ولی لینوکس ماندریبا دو تا را ارائه "
+"میدهد.\n"
+"هر یک از سیستمهای چاپ برای انواع مشخصی از پیکربندی مناسب هستند.\n"
+"\n"
+" * \"%s\" -- که سرنام برای ``print, do not queue'' است، گزینه ای است اگر "
+"شما\n"
+" اتصال مستقیم به چاپگرتان داشته و میخواهید بتوانید از ترافیک چاپگر بیرون "
+"بکشانید،\n"
+"و شما چاپگران شبکه ندارید. (\"%s\" فقط موارد خیلی ساده شبکه را اداره خواهد "
+"کرد و قدری\n"
+"هنگام استفاده در شبکه آهسته است.) اگر این اولین تجربه شما با گنو/لینوکس است "
+"سفارش میشود\n"
+"که از \"pdq\" استفاده کنید.\n"
+"\n"
+" * \"%s\" سرنام برای `` Common Unix Printing System'' است و گزینه\n"
+"عالی است برای چاپ به چاپگر محلیتان یا به انطرف دنیا. پیکربندی آن آسان است و "
+"میتواند\n"
+"مانند یک کارگزار یا یک کارگیر برای سیستم چاپ قدیمی \"lpd\" عمل کند، پس "
+"بنابرین\n"
+"آن با سیستمهای عامل قدیمی که هنوز نیاز سرویسهای چاپ دارند همخوانی دارد. با "
+"وجود\n"
+"قدرتمندی، برپاسازی پایه بسادگی \"pdq\" است. اگر نیاز به شبیه سازی یک\n"
+"کارگزار \"lpd\" دارید، مطمئن شوید که شبح \"cups-lpd\" را روشن کرده اید.\n"
+"\"%s\" دارای ظاهر گرافیکی برای چاپ یا انتخاب گزینه های چاپگر \n"
+"و برای مدیریت چاپگر میباشد.\n"
+"\n"
+"اگر شما اکنون انتخاب کنید، و بعدا از سیستم چاپ خود راضی نبودید میتوانید آن "
+"را با اجرای\n"
+"برنامه PrinterDrake از مرکز کنترل لینوکس ماندریبا و کلیک بر دکمه \"%s\" آن\n"
+"را تغییر دهید."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "کارشناس"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"برنامه‌ی درایک‌ایکس در ابتدا هر دستگاه موجود IDE را در رایانه‌اتان شناسائی "
+"خواهد\n"
+"کرد. آن همچنین برای یافتن یک یا چند کارت IDE /SCSI بر سیستم شما پویش\n"
+"خواهد کرد.اگر یک کارت SCSI یافت شود، درایک‌ایکس بطور خودکار راه‌انداز مناسب\n"
+"را نصب خواهد کرد.\n"
+"\n"
+"برای اینکه شناسائی سخت‌افزار کامل نمی‌باشد، درایک‌ایکس ممکن است در شناسائی\n"
+"سخت‌افزار شما شکست بخورد. اگر چنین شود مجبور خواهید شد که سخت‌افزار\n"
+"خود را دستی مشخص کنید.\n"
+"\n"
+"اگر مجبور شدید کارت PCI SCSI خود را دستی مشخص کنید، درایک‌ایکس از شما برای \n"
+"پیکربندی گزینه‌های آن سؤال خواهد کرد. شما باید به درایک‌ایکس اجازه دهید که\n"
+"سخت‌افزار را برای گزینه‌های بخصوص-کارت که برای تطبیق کارت لازمند جستجو\n"
+"کند. در بیشتر مواقع درایک‌ایکس بدون هیچ مشکلی این مرحله را طی می‌کند.\n"
+"\n"
+"اگر درایک‌ایکس نتواند سخت‌افزار را برای گزینه‌ها را به منظور یافتن پارامترهایی "
+"که\n"
+"لازمند به سخت‌افزار داده شوند وارسی کند، باید راه‌انداز را دستی پیکربندی کنید."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": اگر یک کارت صوت در سیستم شما شناسائی شده است در اینجا نشان داده \n"
+"میشود. اگر کارت نشان داده شده آن نیست که در سیستم شما وجود دارد، \n"
+"میتوانید بر دکمه کلیک کرده و راه‌انداز دیگری را انتخاب کنید."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"مانند پیش‌نمایش، DrakX خلاصه از اطلاعات خود را درباره سیستمتان\n"
+"عرضه می‌دارد. بستگی به نرم‌افزارهای نصب شده، می‌توانید بعضی یا همه‌ی\n"
+"ورودی‌های بدنبال آمده را دارا باشید. هر ورودی از عنصری که باید پیکربندی\n"
+"شود و یک خلاصه‌ی کوتاه از پیکربندی کنونی بدنبال آمده آن ساخته شده است.\n"
+" بر دکمه‌ی مربوطه‌ی \"%s\" برای تغییر آن کلیک کنید.\n"
+"\n"
+" * \"%s\":پیکربندی نقشه صفحه‌کلید کنونی را کنترل کرده و آن را اگر لازم است\n"
+"تغییر دهید.\n"
+"\n"
+" * \"%s\": انتخاب کشور کنونی را کنترل کنید. اگر شما در این کشور نیستید،\n"
+"بر دکمه‌ی \"%s\" کلیک کرده و یکی دیگر را انتخاب کنید. اگر کشور شما در اولین\n"
+"لیست نشان داده شده نیست، بر دکمه‌ی \"%s\" برای دریافت لیست کامل\n"
+" کشورها کلیک کنید.\n"
+"\n"
+" * \"%s\": بوسیله پیش‌فرض، DrakX منطقه زمانی‌تان را بر اساس کشوری که\n"
+"انتخاب کرده‌اید استنتاج می‌کند. می‌توانید بر دکمه‌ی \"%s\" اگر این درست\n"
+"نیست کلیک کنید.\n"
+"\n"
+" * \"%s\": پیکربندی موشی کنونی را بررسی کرده و اگر لازم است آن را با کلیک\n"
+"بر دکمه تغییر دهید.\n"
+"\n"
+" * \"%s\": کلیک کردن بر دکمه‌ی \"%s\" جادوگر پیکربندی چاپگر را باز خواهد کرد\n"
+"به فصل مربوط ``راهنمای شروع'' برای اطلاعات بیشتر در چگونه یک چاپگر جدید را\n"
+"برپاسازی کنیم مراجعه کنید. ظاهر عرضه شده در آنجا شبیه به آن است که در طول\n"
+"نصب استفاده شده است.\n"
+"\n"
+" * \"%s\": اگر کارت صوتی بر سیستم‌تان شناسایی شده است، در اینجا نمایش\n"
+"داده می‌شود. اگر متوجه شدید که کارت صوتی نشان داده شده آن نیست که واقعاً \n"
+"بر سیستمتان وجود دارد میتوانید بر آن دکمه برای انتخاب راه‌انداز دیگری کلیک "
+"کنید.\n"
+"\n"
+" * \"%s\": اگر شما کارت تلویزیونی دارید، این جایی است که اطلاعات درباره "
+"پیکربندیش\n"
+"نشان داده خواهد شد. اگر شما کارت تلویزیونی داشته ولی شناسایی نگردیده،\n"
+"برای تلاش به پیکربندی کردن دستی آن بر روی \"%s\" کلیک کنید.\n"
+"\n"
+" * \"%s\": شما میتوانید بر روی \"%s\" برای تغییر پارامترهای مربوط به کارت "
+"کلیک\n"
+"کنید، البته اگر احساس میکنید که پیکربندی اشتباه است.\n"
+"\n"
+" * \"%s\": بوسیله پیش‌فرض, DrakX تفکیک‌پذیری واسط تصویری شما را\n"
+"\"800x600\" یا \"1024x768\" پیکربندی می‌کند. اگر آن برای شما مناسب نیست، \n"
+"برای پیکربندی مجدد واسط تصویری خود بر \"%s\" کلیک کنید.\n"
+"\n"
+" * \"%s\": اگر میخواهید دستیابی به اینترنت یا به شبکه محلیتان را اکنون "
+"پیکربندی کنید\n"
+"میتوانید اینکار را اکنون انجام دهید. به نوشتارهای چاپی مراجعه کرده یا از\n"
+"مرکز کنترل لینوکس ماندریبا بعد از اتمام نصب برای بهره بردن از راهنمای\n"
+"کامل استفاده کنید.\n"
+"\n"
+" * \"%s\": به شما اجازه میدهد تا نشانیهای پراکسی FTP و HTTP را اگر رایانه\n"
+"نصب شما در پشت یک کارگزار پراکسی قرار خواهد گرفت پیکربندی کنید.\n"
+"\n"
+" * \"%s\": این ورودی به شما اجازه‌ی تعریف مجدد سطح امنیت را که در مرحله‌ی\n"
+"پیشین تعیین شده میدهد.\n"
+"\n"
+" * \"%s\": اگر طرحی برای اتصال ماشین خود به اینترنت دارید, فکر خوبی است\n"
+"که رایانه خود را از رسوخ دیگران بوسیله برپاسازی دیوارآتش حفاظت کنید. به فصل\n"
+"مربوط ``راهنمای مبتدی'' برای تشریحات درباره تنطیمات دیوارآتش مراجعه کنید.\n"
+"\n"
+" * \"%s\": اگر می‌خواهید پیکربندی بارگذار آغازگر را تغییر دهید, آن دکمه را\n"
+"کلیک کنید این بایستی برای کاربران پیشرفته رزرو شود. به نوشتارهای چاپی\n"
+" مراجعه کرده یا از مرکز کنترل لینوکس ماندریبا بعد از اتمام نصب برای \n"
+"بهره بردن از راهنمای کامل استفاده کنید.\n"
+"\n"
+" * \"%s\": در اینجا قادر خواهید بود سرویس‌هایی را که بر ماشین شما اجرا\n"
+"خواهند شد را میزان کنید. اگر می‌خواهید از این ماشین مانند یک\n"
+"کارگزار استفاده کنید فکر خوبی است که این برپاسازی را مرور کنید."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "کارت ISDN"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "واسط گرافیکی"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"دستگاه دیسکی را که می‌خواهید برای نصب قسمت‌بندی جدید لینوکس ماندریبا\n"
+"پاک کنید انتخاب نمایید. دقت کنید چون تمام داده‌های موجود بر آن از دست خواهند\n"
+"رفت و دیگر نمی‌توان آنها را بازیابی نمود!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"اگر می‌خواهید تمام داده‌ها و قسمت‌بندی‌های موجود بر این دیسک را حذف کنید \n"
+"بر \"%s\" کلیک نمایید. دقت کنید که بعد از کلیک بر \"%s\"، دیگر نمی‌توانید\n"
+"هیچ داده و قسمت‌بندی موجود بر این دیسک، به اضافه‌ی هر داده‌ی ویندوز را\n"
+"بازیابی کنید.\n"
+"\n"
+"برای توقف این عملیات بدون از دست دادن هیچ داده‌ای و قسمت‌بندی موجود بر\n"
+"این دیسک بر \"%s\" کلیک کنید."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "بعدی ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- پیشین"
+
diff --git a/perl-install/install/help/po/fi.po b/perl-install/install/help/po/fi.po
new file mode 100644
index 000000000..87e5f32eb
--- /dev/null
+++ b/perl-install/install/help/po/fi.po
@@ -0,0 +1,1914 @@
+# DrakX-fi - Finnish Translation
+#
+# Copyright (C) 2002,2003, 2004, 2005 Free Software Foundation, Inc.
+# Copyright (C) 2002 Mandriva
+# Matias Griese <mahagr@utu.fi>, 2001.
+# Taisto Kuikka <69319@batman.jypoly.fi>, 2003,2004.
+# Esa Linna <denzo@mbnet.fi>, 2004.
+# Thomas Backlund <tmb@mandrake.org>, 2002, 2003, 2004, 2005.
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-fi - LE2005 Release\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-04-03 20:59+0300\n"
+"Last-Translator: Thomas Backlund <tmb@mandrake.org>\n"
+"Language-Team: Finnish <fi@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.9.1\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Ennen jatkamista sinun pitäisi lukea huolellisesti lisenssin ehdot.\n"
+"Lisenssi kattaa koko Mandriva Linux jakelun. Jos hyväksyt kaikki\n"
+"ehdot, valitse \"%s\" valinta. Jos et hyväksy ehtoja, painamalla \n"
+"\"%s\" painiketta tietokoneesi käynnistyy uudestaan."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux on monen käyttäjän järjestelmä ja tämä tarkoittaa että jokainen\n"
+"käyttäjä voi pitää omat asetukset, omat tiedostot jne. Voit lukea ``Starter\n"
+"Guide'':a saadaksesi tästä lisätietoa. Mutta toisin kuin \"root\"-käyttäjä,\n"
+"joka on järjestelmän ylläpitäjä, käyttäjät, joita lisäät tässä, eivät pysty\n"
+"muuttamaan mitään muuta paitsi omia tiedostojaan ja asetuksiaan. Tällä\n"
+"tavalla suojataan järjestelmää erehdyksiltä tai tahallisilta muutoksilta,\n"
+"jotka vaikuttavat järjestelmään. Sinun pitää luoda ainakin yksi tavallinen\n"
+"käyttäjä itsellesi. Se on tili jota sinun kannattaa käyttää jokapäiväisessä\n"
+"työssäsi. Vaikkakin on kätevämpää kirjautua sisään \"root\"-tunnuksella,\n"
+"se on myös paljon vaarallisempaa! Pienikin virhe voi merkitä sitä ettei\n"
+"järjestelmäsi toimi enää. Jos teet vakavan virheen tavallisena käyttäjänä,\n"
+"voit mahdollisesti menettää jotain tietoja, mutta et koko järjestelmää.\n"
+"\n"
+"Ensin sinun pitää antaa oikea nimesi. Tämä ei ole pakollista -- voithan\n"
+"kirjoittaa mitä tahansa. DrakX kopioi ensimmäisen kirjoittamasi sanan\n"
+"kenttään \"%s\". Tämä on se nimi jolla kyseinen käyttäjä kirjautuu\n"
+"järjestelmään. Voit muuttaa sitä halutessasi. Sinun pitää myös syöttää\n"
+"salasana. Tavallisen käyttäjän salasana ei ole niin kriittinen kuin \"root"
+"\"\n"
+"-käyttäjän turvallisuusnäkökulmasta, mutta tämä ei ole syy tietoturvan\n"
+"laiminlyömiseen: Onhan kysymys tiedostojesi turvasta.\n"
+"\n"
+"Kun painat \"%s\", voit lisätä muita käyttäjiä. Lisää käyttäjä jokaiselle\n"
+"henkilölle, jonka on tarkoitus käyttää tätä tietokonetta. Kun olet lisännyt\n"
+"kaikki haluamasi käyttäjät, valitse \"%s\".\n"
+"\n"
+"Jos painat \"%s\" painiketta voit muuttaa oletus-\"komentotulkin\" "
+"kyseiselle\n"
+"käyttäjälle (vakiona bash).\n"
+"\n"
+"Kun olet lisännyt kaikki käyttäjät, sinua pyydetään valitsemaan käyttäjä,\n"
+"joka voi kirjautua automaattisesti järjestelmään koneen käynnistyessä. Jos\n"
+"olet kiinnostunut tästä ominaisuudesta (etkä paljon piittaa paikallisesta\n"
+"tietoturvasta), valitse haluttu käyttäjä ja ikkunointijärjestelmä ja paina\n"
+"\"%s\". Jos et ole kiinnostunut tästä ominaisuudesta,\n"
+"poista valinta \"%s\""
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Haluatko käyttää tätä ominaisuutta?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Tässä on listaus olemassa olevista tunnistetuista Linux-osioista\n"
+"kiintolevylläsi. Voit säilyttää velhon tekemät valinnat, koska ne ovat\n"
+"hyviä useimmille yleisimmille asennuksille. Jos teet muutoksia, sinun\n"
+"pitää ainakin luoda juuri-osio (\"/\"). Älä valitse liian pientä osiota tai\n"
+"et voi asentaa riittävästi ohjelmia. Jos haluat tallentaa tietojasi "
+"erilliselle\n"
+"osiolle, sinun täytyy luoda myös \"/home\"-osio (mahdollista vain jos\n"
+"sinulla on enemmän kuin yksi Linux-osio käytettävissä).\n"
+"\n"
+"Jokainen osio on listattu seuraavasti: \"Nimi\", \"Koko\".\n"
+"\n"
+"\"Nimi\" rakenne on seuraava: \"kiintolevytyyppi\". \"kiintolevynumero\", \n"
+"\"osionumero\" (esim. \"hda1\").\n"
+"\n"
+"\"kiintolevytyyppi\" on \"hd\" jos kiintolevysi on IDE-tyyppinen, ja \"sd\" "
+"jos\n"
+"se on SCSI-tyyppinen.\n"
+"\n"
+"\"kiintolevynumero\" on aina kirjain \"hd\":n tai \"sd\":n perässä.\n"
+"IDE-kiintolevyille: \n"
+"\n"
+" * \"a\" tarkoittaa \"isäntälevy ensisijaisella IDE-ohjaimella\";\n"
+"\n"
+" * \"b\" tarkoittaa \"orjalevy ensisijaisella IDE-ohjaimella\";\n"
+"\n"
+" * \"c\" tarkoittaa \"isäntälevy toissijaisella IDE-ohjaimella\";\n"
+"\n"
+" * \"d\" tarkoittaa \"orjalevy toissijaisella IDE-ohjaimella\";\n"
+"\n"
+"SCSI kiintolevyillä \"a\" tarkoittaa \"pienin SCSI ID\", \"b\" tarkoittaa\n"
+"\"toiseksi pienin SCSI ID\", jne..."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linuxin asennus koostuu useasta CD-ROM-levystä. DrakX tietää,\n"
+"onko valittu paketti toisella CD:llä ja osaa syöttää nykyisen levyn ulos\n"
+"ja pyytää sinua asettamaan oikean levyn tarvittaessa. Jos sinulla ei ole\n"
+"kyseistä CD-levyä käytettävissä, klikkaa vain \"%s\", ja kyseiset paketit\n"
+"ei asenneta."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Nyt on aika valita mitä ohjelmia haluat asentaa järjestelmääsi. Tarjolla\n"
+"on tuhansia paketteja Mandriva Linux jakelussa, ja pakettien\n"
+"hallinnan helpottamiseksi ne on koottu samanlaisten ohjelmistojen\n"
+"ryhmiin.\n"
+"\n"
+"Paketit on ryhmitelty ryhmiin koneesi käyttötarkoituksen mukaisesti.\n"
+"Mandriva Linux sisältää neljä eri ennakkoon määriteltyä asennustapaa.\n"
+"Voit verrata asennustapoja pakettiryhmiin. Voit tietysti asentaa paketteja\n"
+"eri ryhmistä niin halutessasi, joten ``Työasema''-asennus voi sisältää\n"
+"ohjelmia esimerkiksi ``Kehitysympäristö''-ryhmästä.\n"
+"\n"
+" * \"%s\": Jos aiot käyttää konettasi työasemana, valitse yksi tai useampi\n"
+" ohjelma tästä ryhmästä.\n"
+"\n"
+" * \"%s\": Jos konettasi aiotaan käyttää ohjelmakehitykseen, valitse yksi "
+"tai\n"
+"useampi haluttu paketti tästä ryhmästä. Erillinen \"LSB\" ryhmä asettaa\n"
+"järjestelmäsi seuraamaan Linux Standard Base määritykset \n"
+"mahdollisimman tarkoin.\n"
+"\n"
+" Valitsemalla \"LSB\" ryhmää asentaa myös \"2.4\" sarjan ytimet, vakiona\n"
+"olevien \"2.6\" sarjan ytimien sijasta. Tämä jotta varmistetaan 100%% LSB-\n"
+"yhteensopivuutta järjestelmässä. Huomioi, vaikka jätät \"LSB\" ryhmää\n"
+"valitsematta, sinulla on kummiskin järjestelmä joka on melkein 100%%\n"
+"\"LSB\"-yhteensopiva.\n"
+"\n"
+" * \"%s\": Jos koneesi on tarkoitettu toimimaan palvelimena' valitse yksi "
+"tai\n"
+"useampi haluttu palvelu tai palvelinohjelma tästä ryhmästä.\n"
+"\n"
+" * \"%s\": täältä valitset haluamasi graafisen ympäristön. Ainakin yksi "
+"pitää\n"
+"olla valittu jos haluat graafisen työaseman!\n"
+"\n"
+"Jos siirrät hiiren kohdistinta ryhmänimen yläpuolella, lyhyt selostus "
+"ryhmän\n"
+"sisällöstä tulee näkyviin. Jos poistat kaikki ryhmävalinnat kun teet \n"
+"tavallisen asennuksen (päivityksen sijasta), esille tulee dialogi, joka \n"
+"ehdottaa kolmea eri optiota vähimmäisasennukseen:\n"
+"\n"
+" * \"%s\": asenna vain tarvittavat paketit, joilla saat toimivan graafisen\n"
+"työpöydän;\n"
+"\n"
+" * \"%s\": asentaa perusjärjestelmän ja perustyökalut sekä niiden\n"
+"dokumentaatiot. Tämä valinta sopii palvelinasennukseen;\n"
+"\n"
+" * \"%s\": asentaa ainoastaan tarvittavat osat saadaksesi toimivan\n"
+"komentorivipohjaisen Linux-järjestelmän. Tämä asennus vie vain noin \n"
+"65 Mt tilaa.\n"
+"\n"
+"Voit valita \"%s\" jos tarjolla olevat paketit ovat tuttuja sinulle tai jos "
+"haluat\n"
+"täydellisen hallinnan asennettaviin paketteihin.\n"
+"\n"
+"Jos aloitit asennuksen \"%s\"-tilassa, voit poistaa kaikkien ryhmien "
+"valinnat\n"
+"välttääksesi uusien pakettien asentamisen. Tämä on hyödyllistä jos haluat\n"
+"korjata tai päivittää olemassa olevaa järjestelmää."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Päivitä"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Perusdokumentaation kanssa"
+
+# Asennuksen sivuvalikko
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Todella minimaalinen asennus"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Jos valitsit mahdollisuuden valita yksittäisiä paketteja, sinulle\n"
+"näytetään hakemistopuu, jossa kaikki paketit ovat luokiteltuina\n"
+"ryhmien ja alaryhmien mukaan. Kun selaat puuta, voit valita koko\n"
+"ryhmät, alaryhmät tai yksittäiset paketit.\n"
+"\n"
+"Kun valitset paketin hakemistopuussa, sen kuvaus näkyy oikean-\n"
+"puoleisessa ikkunassa, jotta tietäisit paketin tarkoituksen.\n"
+"\n"
+"!! Jos palvelinpaketti on valittu, joko tarkoituksella tai koska se kuului\n"
+"johonkin valitsemaasi ryhmään, sinulta pyydetään vahvistusta,\n"
+"haluatko varmasti asentaa palvelimen. Oletuksena Mandriva Linux\n"
+"käynnistää jokaisen asennetun palvelin koneen käynnistyksen\n"
+"yhteydessä. Vaikka ne ovat turvallisia eikä niillä ole tunnettuja\n"
+"ongelmia jakelun julkaisuajankohtana, niistä voi löytyä turvallisuus-\n"
+"reikiä jakelun valmistumisen jälkeen. Jos et tiedä mihin joku tietty\n"
+"palvelu on tarkoitettu, tai miksi sitä asennetaan, paina \"%s\". Jos\n"
+"painat \"%s\" listatut palvelut asennetaan sekä käynnistetään\n"
+"automaattisesti oletuksena koneen käynnistyksessä !!\n"
+"\n"
+"Optio \"%s\" estää virhedialogin\n"
+"joka ilmestyy joka kerta kun asennusohjelma automaattisesti\n"
+"valitsee paketin riippuvuuksien täyttämiseksi. Jotkut paketit sisältävät\n"
+"riippuvuuksia jotka vaativat että joku toinen paketti on jo asennettu\n"
+"ennen kuin se voidaan asentaa. Asennusohjelma osaa itse huolehtia\n"
+"siitä että nämä riippuvuudet on täytetty jotta asennus valmistuisi\n"
+"onnistuneesti.\n"
+"\n"
+"Listan alla olevalla levykkeen kuvakkeella voit hakea pakettilistan\n"
+"joka on luotu edellisessä asennuksessa. Tämä on hyödyllistä jos\n"
+"sinulla on monta konetta joihin haluat suorittaa samanlaisen asennuksen.\n"
+"Jos painat tätä kuvaketta, sinua pyydetään asettamaan levyke joka on\n"
+"luotu toisen asennuksen lopussa. Katso edellisen vaiheen toisesta\n"
+"vihjeestä, miten luot sellaisen levykkeen."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Automaattiset riippuvuudet"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": painamalla \"%s\" painiketta avautuu tulostimen\n"
+"asetusvelho. Katso tätä vastaava lukua ``Aloitusoppaasta'' saadaksesi\n"
+"lisätietoa miten asetat uuden tulostimen. Oppaassa näytetty\n"
+"käyttöliittymä on vastaava kuin asennuksen aikana käytetty."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Voit nyt valita mitkä palvelut haluat käynnistää konetta käynnistettäessä.\n"
+"\n"
+"DrakX listaa kaikki palvelut, jotka löytyvät nykyisestä asennuksesta.\n"
+"Käy lista läpi huolellisesti ja poista kaikki ne palvelut, joita ei tarvita\n"
+"jokaisella käynnistyskerralla.\n"
+"\n"
+"Saat kustakin palvelusta lyhyen kuvaustekstin valitsemalla sen. Jos et\n"
+"kuitenkaan ole varma palvelun hyödyllisyydestä, on yleensä varmempaa\n"
+"jättää se oletusarvoiseksi.\n"
+"\n"
+"!! Tässä vaiheessa sinun pitää olla erityisen huolellinen, jos aiot käyttää\n"
+"konettasi palvelimena: et varmaankaan halua käynnistää niitä palveluita,\n"
+"joita et tarvitse. Muista myös, että jotkin palvelut voivat olla\n"
+"vaarallisia, jos ne ovat aktivoituja palvelimessa. Yleensä kannattaa valita\n"
+"vain ne palvelut, joita todella tarvitaan !!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux määrittää ajan GMT (Greenwich Mean Time) -tilassa ja muuntaa\n"
+"siitä paikalliseen aikaan valitsemasi aikavyöhykkeen mukaisesti. Voit myös\n"
+"muuttaa tämän käytännön poistamalla valinnan \"%s\"\n"
+"jolloin laitteistokello on sama kuin järjestelmäkello. Tämä on hyödyllistä\n"
+"jos koneessa on toinen käyttöjärjestelmä, esimerkiksi Windows.\n"
+"\n"
+"Optio \"%s\" säätää järjestelmäsi kellon\n"
+"automaattisesti oikeaan aikaan yhdistämällä johonkin Internetin "
+"aikapalvelimeen.\n"
+"Valitse listasta palvelin joka on lähelläsi tai kirjoita sen osoite suoraan "
+"kenttään.\n"
+"Sinulla pitää tietysti olla toimiva Internet-yhteys jotta tämä ominaisuus "
+"toimisi.\n"
+"Tämä myös asentaa aikapalvelimen koneeseesi jota muut paikallisverkkosi\n"
+"koneet voivat käyttää."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Automaattinen kellon synkronointi"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Näytönohjain\n"
+"\n"
+" Asennusohjelma yleensä tunnistaa ja asettaa koneeseesi asennetun\n"
+"näytönohjaimen. Mikäli tämä ei onnistunut, voit itse valita oikean mallin\n"
+"listasta omistamasi kortin mukaisesti.\n"
+"\n"
+" Mikäli eri palvelimia on käytettävissä kortillesi, 3D tuella vai ilman,\n"
+"sinua pyydetään valitsemaan palvelin joka vastaa tarpeitasi."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (eli X Ikkunointijärjestelmä) on GNU/Linuxin graafisen käyttöliittymän\n"
+"sydän jota kaikki graafiset ympäristöt (KDE, Gnome, AfterStep,\n"
+"WindowMaker jne.), jotka seuraavat Mandriva Linuxin mukana,\n"
+"käyttävät alustanaan.\n"
+"\n"
+"Sinulle näytetään lista eri parametreista joita voit asettaa saadaksesi\n"
+"optimaalisen graafisen näytön:\n"
+"\n"
+"Näytönohjain\n"
+"\n"
+" Asennusohjelma yleensä tunnistaa ja asettaa koneeseesi asennetun\n"
+"näytönohjaimen. Mikäli tämä ei onnistunut, voit itse valita oikean mallin\n"
+"listasta omistamasi korttisi mukaisesti.\n"
+"\n"
+" Mikäli eri palvelimia on käytettävissä kortillesi, 3D tuella vai ilman,\n"
+"sinua pyydetään valitsemaan palvelin joka parhaiten vastaa tarpeitasi.\n"
+"\n"
+"\n"
+"\n"
+"Näyttö\n"
+"\n"
+" Asennusohjelma normaalisti tunnistaa ja asettaa koneeseesi liitetyn\n"
+"näytön automaattisesti. Jos tunnistus epäonnistuu voit valita oikean\n"
+"näytön listasta.\n"
+"\n"
+"\n"
+"\n"
+"Näyttötila\n"
+"\n"
+" Tässä voit valita näyttötilan ja värisyvyyden jota laitteistosi tukee.\n"
+"Valitse se joka parhaiten vastaa tarpeitasi (voit tietysti vaihtaa sitä\n"
+"asennuksen jälkeenkin). Malli valitusta asetuksesta näytetään näytössä.\n"
+"\n"
+"\n"
+"\n"
+"Testi\n"
+"\n"
+" Järjestelmä yrittää avata graafisen tilan halutussa näyttötilassa.\n"
+"Jos näet viestin testauksen aikana ja vastaat \"%s\", DrakX jatkaa\n"
+"seuraavaan vaiheeseen. Jos et näe viestiä, se tarkoittaa että jokin osa\n"
+"automaattisesti tunnistetusta asetuksesta oli virheellistä, ja testi\n"
+"loppuu automaattisesti 12 sekunnin jälkeen, jolloin pääset takaisin\n"
+"asetusvalikkoon. Muuta asetuksia kunnes saat oikean graafisen näytön.\n"
+"\n"
+"\n"
+"\n"
+"Optiot\n"
+"\n"
+" Täällä voit valita haluatko järjestelmän automaattisesti käynnistävän\n"
+"graafisen käyttöliittymän. Luonnollisesti valitset \"%s\" jos koneesi\n"
+"toimii palvelimena tai jos et pystynyt määrittämään toimivaa graafista tilaa."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Näyttö\n"
+"\n"
+" Asennusohjelma yleensä tunnistaa ja asettaa koneeseesi liitetyn\n"
+"näytön automaattisesti. Jos tämä ei toimi, voit itse valita näyttösi\n"
+"listauksesta."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Näyttötila\n"
+"\n"
+" Tässä voit valita näyttötilan ja värisyvyyden jota laitteistosi tukee.\n"
+"Valitse se joka parhaiten vastaa tarpeitasi (voit tietysti vaihtaa sitä\n"
+"asennuksen jälkeenkin). Malli valitusta asetuksesta näytetään näytössä."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Mikäli tarjolla on eri palvelimia ohjaimellesi, 3D tuella tai ilman,\n"
+"sinua pyydetään valitsemaan palvelin joka parhaiten vastaa tarpeitasi."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Optiot\n"
+"\n"
+" Täällä voit valita haluatko koneesi käynnistyvän suoraan graafiseen\n"
+"käyttöliittymään. Huomaa, että kysymys esitetään vaikka et olisi\n"
+"testannut asetuksia. Haluat varmaankin vastata \"%s\", jos koneesi\n"
+"on tarkoitettu palvelimeksi tai jos näytön asetus epäonnistui."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Nyt sinun pitää valita miten haluat asentaa Mandriva Linux käyttö-\n"
+"järjestelmän kiintolevyllesi. Jos kiintolevysi on tyhjä, tai nykyinen\n"
+"käyttöjärjestelmäsi käyttää siltä kaiken vapaan tilan, sinun pitää osioida\n"
+"se. Käytännössä osiointi tarkoittaa kiintolevyn loogista jakamista\n"
+"osiin tehdäksesi tilaa Mandriva Linux-järjestelmän asennukselle.\n"
+"\n"
+"Koska osiointiprosessin muutoksia ei yleensä voi peruuttaa, ja se voi\n"
+"johtaa tietojen häviämiseen jos toinen käyttöjärjestelmä on jo asennettuna,\n"
+"osiointi voi olla pelottavaa ja stressaavaa jos olet kokematon käyttäjä.\n"
+"Onneksi DrakX sisältää velhon, joka yksinkertaistaa tämän prosessin.\n"
+"Ennen kuin aloitat, lue nämä ohjeet rauhassa.\n"
+"\n"
+"Riippuen kiintolevyasetuksistasi, tarjolla on useita eri vaihtoehtoja:\n"
+"\n"
+" * \"%s\": tämä vaihtoehto suorittaa vapaana olevan tilan\n"
+"automaattisen osioinnon. Sinulta ei kysytä mitään muuta.\n"
+"\n"
+" * \"%s\": velho on tunnistanut olemassa olevat\n"
+"Linux-osiot. Jos haluat käyttää niitä, valitse tämä vaihtoehto. Sinua\n"
+"pyydetään seuraavaksi valitsemaan osioiden liitospisteet. Ennestään\n"
+"käytettyjä liitoskohtia ehdotetaan oletuksena ja yleensä niitä ei kannata\n"
+"muuttaa.\n"
+"\n"
+" * \"%s\": jos Microsoft Windows on\n"
+"asennettu kiintolevyllesi ja se vie kaiken tilan, sinun pitää luoda vapaata\n"
+"tilaa Linuxille. Tehdäksesi tämän voit joko poistaa Windows-osion (katso\n"
+"``Tyhjennä koko levy''-vaihtoehto) tai muuttaa FAT-osion kokoa. Osion\n"
+"koon muuttaminen voidaan tehdä ilman tietojen hävittämistä, kunhan olet\n"
+"eheyttänyt sen ja se käyttää FAT-tiedostojärjestelmää. Tietojen varmistus\n"
+"on kuitenkin suotavaa. Tämä vaihtoehto on suositeltu jos haluat käyttää\n"
+"Mandriva Linuxia ja Microsoft Windowsia samassa koneessa.\n"
+"\n"
+" Ennen kuin valitset tämän vaihtoehdon, sinun pitää ymmärtää että tämän\n"
+"toimenpiteen jälkeen Windows-osiosi on pienempi kuin tällä hetkellä.\n"
+"Sinulla tulee olemaan vähemmän vapaata tilaa Windowsille, johon voit\n"
+"tallentaa tietojasi tai asentaa uusia ohjelmia.\n"
+"\n"
+" * \"%s\": valitse tämä jos haluat poistaa kaikki tiedot\n"
+"ja osiot ja asentaa Mandriva Linux -järjestelmäsi niiden tilalle. Ole\n"
+"varovainen tämän valinnan kanssa, koska et pysty peruuttamaan\n"
+"valintaasi kun olet hyväksynyt tämän toimenpiteen.\n"
+"\n"
+" !! Jos valitset tämän vaihtoehdon, kaikki tiedot kiintolevylläsi "
+"tuhoutuu !!\n"
+"\n"
+" * \"%s\": tämä vaihtoehto näkyy ainoastaan jos koko kovalevysi on\n"
+"Microsoft Windowsin käytössä. Tämä yksinkertaisesti poistaa kaikki\n"
+"tiedot kiintolevyltä ja aloittaa puhtaalta levyltä osioimalla kaikki alusta\n"
+"asti. Kaikki tiedot kiintolevylläsi tuhoutuu.\n"
+"\n"
+" !! Jos valitset tämän vaihtoehdon, kaikki tiedot kiintolevylläsi "
+"tuhoutuu !!\n"
+"\n"
+" * \"%s\": valitse tämä vaihtoehto, jos haluat itse\n"
+"määrittää kiintolevysi osioinnin. Ole varovainen - tämä on tehokas mutta\n"
+"vaarallinen vaihtoehto. Voit helposti menettää kaikki tietosi. Eli,\n"
+"älä käytä tätä vaihtoehtoa, jos et tiedä tarkalleen mitä teet. Jos haluat\n"
+"lisätietoja DiskDrake työkalun käytöstä, katso osaa ``Managing Your \n"
+"Partitions'' osiota ``Starter Guidessa''."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Käytä olemassa olevia osioita"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Tyhjennä koko levy"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Ole hyvä. Asennus on valmis ja GNU/Linux -järjestelmäsi on valmis\n"
+"käytettäväksi. Paina \"%s\" käynnistääksesi järjestelmän\n"
+"uudelleen. Ensimmäinen asia mitä näet sen jälkeen kun tietokoneesi\n"
+"on suorittanut laitteistotestit, on käynnistysvalikko josta voit valita\n"
+"minkä käyttöjärjestelmän haluat käynnistää.\n"
+"\n"
+"\"%s\" painike näyttää kaksi lisäpainiketta:\n"
+"\n"
+" * \"%s\": luodaksesi levykkeen, joka suorittaa\n"
+"koko asennuksen ilman käyttäjän ohjausta, samoilla asetuksilla ja\n"
+"valinnoilla kuin nykyinen asennus.\n"
+"\n"
+" Huomaa, että tämä valinta näyttää kaksi vaihtoehtoa sinulle:\n"
+"\n"
+" * \"%s\": Tämä on osittain automaattinen asennus, voit päättää\n"
+"ainoastaan levyn osioinnista;\n"
+"\n"
+" * \"%s\": Täysautomaattinen asennus: koko kiintolevy\n"
+"kirjoitetaan uudestaan ja kaikki vanhat tiedot poistetaan.\n"
+"\n"
+" Tämä toiminto helpottaa työtä, kun asennus on tehtävä monille\n"
+"samanlaisille koneille. Katso meidän webbisivustoa, aiheella\n"
+"automaattiasennus (Auto Install).\n"
+"\n"
+" * \"%s\"(*): tallentaa listan valituista paketeista\n"
+"levykkeelle. Sitten kun teet toisen asennuksen, aseta levyke asemaan,\n"
+"siirry apusivulle painamalla [F1] painiketta, ja kirjoita komentoriville\n"
+" linux defcfg=\"floppy\" ja paina 'enter'.\n"
+"\n"
+"(*) Tarvitset FAT-formatoidun levykkeen. Luodaksesi levykkeen\n"
+"Linuxissa kirjoita \"mformat a:\" tai \"fdformat /dev/fd0\" ja \"mkfs.vfat\n"
+"/dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Luo automaattinen asennuslevyke"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Kaikki vasta määritellyt osiot täytyy alustaa käyttöä varten (alustaminen\n"
+"tarkoittaa tiedostojärjestelmän luomista).\n"
+"\n"
+"Samalla voit haluta alustaa uudelleen myös olemassaolevia osioita\n"
+"poistaaksesi kaiken niissä olevan tiedon. Jos haluat haluat tehdä niin,\n"
+"valitse myös ne osiot.\n"
+"\n"
+"Huomaa, että sinun ei ole pakko alustaa kaikkia jo olemassa olevia\n"
+"osioita. Sinun pitää alustaa ne osiot, joilla käyttöjärjestelmä\n"
+"sijaitsee (kuten \"/\", \"/usr\" ja \"/var\"), mutta voit säilyttää osiot,\n"
+"joilla henkilökohtaiset tiedostosi sijaitsevat (tavallisesti \"/home\").\n"
+"\n"
+"Ole huolellinen osioita valitessasi. Alustamisen jälkeen kaikki tieto\n"
+"valituilla osioilla on poissa eikä niiden palauttaminen enää onnistu.\n"
+"\n"
+"Valitse \"%s\" kun olet valmis alustamaan osiot.\n"
+"\n"
+"Valitse \"%s\", jos haluat valita toisen osion Mandriva Linuxin\n"
+"asentamiseen.\n"
+"\n"
+"Valitse \"%s\", jos haluat valita osiot, jotka tarkistetaan\n"
+"levyllä olevien viallisten lohkojen varalta."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Tässä vaiheessa, kun asennat Mandriva Linuxia, on todennäköistä että\n"
+"jotkut paketit on päivitetty alkujulkaisun jälkeen. Joitakin virheitä voi "
+"olla\n"
+"korjattu ja turvallisuusaukkoja paikattu. Hyödyntääksesi näitä päivityksiä,\n"
+"sinulla on nyt mahdollisuus hakea ne Internetistä. Valitse \"%s\" jos\n"
+"sinulla on toimiva Internet yhteys, tai \"%s\" jos haluat asentaa\n"
+"päivitykset myöhemmin.\n"
+"\n"
+"Valitsemalla \"%s\" sinulle näytetään lista päivityspalvelimista.\n"
+"Valitse lähin palvelin. Sen jälkeen sinulle näytetään lista päivityksistä:\n"
+"tarkista valinnat ja paina \"%s\" jolloin paketit haetaan ja\n"
+"asennetaan, tai \"%s\" poistuaksesi päivityksestä."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Tässä vaiheessa DrakX antaa sinun valita tietokoneellesi sopivan\n"
+"turvatason. Yleisesti mitä enemmän tärkeää tietoa on tallennettu\n"
+"koneellesi, tai jos se on kytketty Internetiin, sitä korkeampi turvatason\n"
+"pitäisi olla. Huomaa kuitenkin, että korkeampi turvallisuustaso\n"
+"saavutetaan yleensä käytettävyyden kustannuksella.\n"
+"\n"
+"Jos et tiedä mitä valita, käytä oletuksena olevaa vaihtoehtoa. Voit\n"
+"myöhemmin vaihtaa turvatason Mandriva Ohjauskeskuksesta löytyvällä\n"
+"draksec-työkalulla.\n"
+"\n"
+"\"%s\" asetus kertoo järjestelmälle käyttäjän, joka vastaa turvasta.\n"
+"Turvaan liittyvät viestit lähetetään hänelle kyseiseen "
+"sähköpostiosoitteeseen."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Tietoturvan ylläpitäjä:"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Tässä vaiheessa sinun pitää määrittää mitkä osiot käytetään Mandriva Linux\n"
+"-järjestelmäsi asennuksessa. Jos osioita on jo määritelty, joko\n"
+"edellisestä GNU/Linux-asennuksesta tai jonkun toisen osiointityökalun\n"
+"tekeminä, niin voit käyttää olemassa olevia osioita. Muussa tapauksissa\n"
+"osiot pitää luoda.\n"
+"\n"
+"Luodaksesi osioita, sinun pitää ensin valita kiintolevy. Voit valita "
+"osioitavan\n"
+"levyn painamalla 'hda' ensimmäiselle IDE-levylle, 'hdb' toiselle, 'sda'\n"
+"ensimmäiselle SCSI-levylle ja niin edelleen.\n"
+"\n"
+"Osioidaksesi valitun levyn voit valita näistä vaihtoehdoista:\n"
+"\n"
+" * \"%s\": tämä toiminto poistaa kaikki osiot kiintolevyllä\n"
+"\n"
+" * \"%s\": tämä toiminto luo automaattisesti\n"
+"tarvittavat ext3-osiot ja sivutusosion levyn tyhjästä tilasta\n"
+"\n"
+"\"%s\": näyttää seuraavat lisätoiminnot:\n"
+"\n"
+" * \"%s\": tallentaa osiotaulun levykkeelle. Tämä on\n"
+"hyödyllinen levyke, jos pitää palauttaa osiotaulu. Suosittelemme\n"
+"tämän levykkeen tekoa\n"
+"\n"
+" * \"%s\": palauttaa aikaisemmin tallennetun osiotaulun\n"
+"levykkeeltä\n"
+"\n"
+" * \"%s\": jos osiotaulusi on viottunut, voit kokeilla sen\n"
+"korjaamista tällä toiminnolla. Ole varovainen, ja muista että tämä\n"
+"voi epäonnistua\n"
+"\n"
+" * \"%s\": hylkää kaikki tekemäsi muutokset ja\n"
+"palauta alkuperäinen osiotaulu\n"
+"\n"
+" * \"%s\": tämän valinnan\n"
+"poistaminen pakottaa käyttäjät itse liittämään ja irrottamaan\n"
+"vaihdettavat levyt, esim. levykkeet ja CD-levyt\n"
+"\n"
+" * \"%s\": valitse tämä vaihtoehto jos haluat velhon osioimaan\n"
+"kiintolevysi. Tämä on suositeltua sinulle jos osiointi ei ole tuttua\n"
+"\n"
+" * \"%s\": tämä vaihtoehto poistaa tekemäsi muutokset\n"
+"\n"
+" * \"%s\": sallii lisätoimintoja\n"
+"osioille (tyyppi, optiot, formaatti) ja näyttää lisätietoja\n"
+"\n"
+" * \"%s\": kun kiintolevyn osiointi on valmis, tämä toiminto\n"
+"tallentaa tekemäsi muutokset levylle ja jatkaa asennusta.\n"
+"\n"
+"Kun määrität osion kokoa, voit hienosäätää kokoa käyttämällä\n"
+"näppäimistön nuolinäppäimiä.\n"
+"\n"
+"Huom!: Voit myös käyttää kaikkia toimintoja näppäimistöllä. Siirry\n"
+"osioiden ja toimintojen välillä käyttämällä [Tab] ja [Ylös/Alas] näppäimiä.\n"
+"\n"
+"Kun osio tai tyhjä tila on valittu voit käyttää:\n"
+"\n"
+" * Ctrl-C luodaksesi uuden osion (kun tyhjä tila on valittu)\n"
+"\n"
+" * Ctrl-D poistaaksesi osion\n"
+"\n"
+" * Ctrl-M valitaksesi liitospisteen\n"
+"\n"
+"Saadaksesi lisätietoja käytettävissä olevista tiedostojärjestelmistä,\n"
+"lue lisää ``Reference Manual'':sta osasta ext2FS.\n"
+"\n"
+"Jos olet asentamassa PPC-koneelle, sinun pitää luoda pieni HFS\n"
+"``bootstrap''-osio kooltaan vähintään 1Mt, joka tulee Yaboot\n"
+"käynnistyslataajan käyttöön. Jos päätät tehdä osiosta vähän suuremman,\n"
+"esim. 50Mt, on hyvä ajatus asentaa ylimääräinen ydin ja ramdisk-kuva\n"
+"virhetilanteiden käynnistystarpeeseen."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Vaihdettavan median automaattinen liittäminen"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Vaihda vakio-/asiantuntijatilan välillä"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Useampi kuin yksi Microsoft-osio on löydetty kiintolevyltäsi. Ole hyvä\n"
+"ja valitse osio jonka kokoa haluat muuttaa asentaaksesi uuden\n"
+"Mandriva Linux -käyttöjärjestelmäsi.\n"
+"\n"
+"Jokainen osio on lueteltu seuraavasti: \"Linux nimi\", Windows nimi\", \"Koko"
+"\".\n"
+"\n"
+"\"Linux nimi\" rakenne on seuraava: \"kiintolevytyyppi\". \"kiintolevynumero"
+"\", \n"
+"\"osionumero\" (esim. \"hda1\").\n"
+"\n"
+"\"kiintolevytyyppi\" on \"hd\" jos kiintolevysi on IDE-tyyppinen ja \"sd\" "
+"jos\n"
+"se on SCSI-tyyppinen.\n"
+"\n"
+"\"kiintolevynumero\" on aina kirjain \"hd\":n tai \"sd\":n perässä.\n"
+"IDE-kiintolevyille: \n"
+"\n"
+" * \"a\" tarkoittaa \"isäntälevy ensisijaisella IDE ohjaimella\";\n"
+"\n"
+" * \"b\" tarkoittaa \"orjalevy ensisijaisella IDE ohjaimella\";\n"
+"\n"
+" * \"c\" tarkoittaa \"isäntälevy toissijaisella IDE ohjaimella\";\n"
+"\n"
+" * \"d\" tarkoittaa \"orjalevy toissijaisella IDE ohjaimella\";\n"
+"\n"
+"SCSI kiintolevyillä \"a\" tarkoittaa \"pienin SCSI ID\", \"b\" tarkoittaa\n"
+"\"toiseksi pienin SCSI ID\", jne.\n"
+"\n"
+"\"Windows nimi\" on Windowsissa näkyvä osiota vastaava kirjain\n"
+"(ensimmäinen osio on \"C:\", seuraava \"D:\" jne.)."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": tarkista maa-asetukset. Jos et ole maassa, joka on valittu,\n"
+"paina \"%s\" painiketta ja valitse joku muu. Jos maasi ei ole\n"
+"listassa, paina \"%s\" painiketta jolloin näet listan kaikista maista."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Tämä vaihe asennuksesta näytetään ainoastaan jos vanha GNU/Linux-\n"
+"osio on löydetty koneestasi.\n"
+"\n"
+"DrakX haluaa nyt tietää, haluatko suorittaa uuden asennuksen vai vanhan\n"
+"Mandriva Linux -järjestelmän päivityksen:\n"
+"\n"
+" * \"%s\": oletuksena tämä tapa poistaa vanhan asennuksen. Jos haluat\n"
+"muuttaa miten kiintolevysi on osioitu tai vaihtaa tiedostojärjestelmää, "
+"sinun\n"
+"kannattaa valita tämä vaihtoehto. Riippuen nykyisestä osioinnistasi, voit\n"
+"ehkä valita niin ettei kaikkia tietojasi hävitetä.\n"
+"\n"
+" * \"%s\": tämä vaihtoehto sallii sinun päivittää paketteja\n"
+"nykyisessä Mandriva Linux -järjestelmässäsi. Nykyistä osiointiasi\n"
+"eikä käyttäjien tietoja muuteta. Suurin osa muista asennuksen\n"
+"vaiheista on käytössäsi niin kuin ne ovat vakioasennuksessa.\n"
+"\n"
+"``Päivitä''-ominaisuuden pitäisi toimia Mandriva Linux\n"
+"-järjestelmän versiosta \"8.1\" eteenpäin. Vanhemman version\n"
+"kuin \"8.1\" päivittämistä ei suositella."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Tavallisesti DrakX valitsee sinulle oikean näppäimistön sen mukaan, minkä\n"
+"kielen olet valinnut. Kuitenkaan sinulla ei välttämättä ole näppäimistöä, "
+"joka\n"
+"vastaa suoraan kieltäsi. Jos olet esimerkiksi englanninkielinen "
+"sveitsiläinen,\n"
+"voit silti haluta sveitsiläisen näppäimistön. Tai jos puhut englantia, mutta "
+"asut\n"
+"Quebecissä, sinulla voi olla samanlainen tilanne, missä kieli ja "
+"näppäimistö\n"
+"eivät vastaa toisiaan. Molemmissa tapauksissa tämä asennusvaihe antaa\n"
+"sinulle mahdollisuuden valita sopivan näppäimistön listasta.\n"
+"\n"
+"Valitse \"%s\" saadaksesi täydellisen listan tuetuista\n"
+"näppäimistöistä.\n"
+"\n"
+"Jos valitset näppäimistön joka ei perustu latinalaiseen kirjaimistoon, "
+"sinulta\n"
+"kysytään näppäinyhdistelmää joka vaihtaa latinalaisen ja ei-latinalaisen\n"
+"järjestyksen välillä."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Ensimmäinen askel on valita toivottu kieli.\n"
+"\n"
+"Valitsemasi oletuskieli päättää minkä kielinen dokumentaatio\n"
+"asennetaan, kuten myös asennusohjelman ja järjestelmän\n"
+"kielen. Valitse ensin missä asut ja sitten mitä kieltä käytät.\n"
+"\n"
+"Valitsemalla \"%s\" saat mahdollisuuden valita\n"
+"myös muita kieliä asennettavaksi työasemallesi. Muiden kielten\n"
+"valitseminen asentaa kielikohtaiset tiedostot järjestelmän\n"
+"dokumentoinnista ja ohjelmistoista. Esimerkiksi jos sinulla\n"
+"koneessasi espanjalaisia käyttäjiä, valitse suomi (tai englanti)\n"
+"pääkieleksi ja lisäasetusten puolelta \"%s\".\n"
+"\n"
+"Tietoja UTF-8 (unicode) tuesta: Unicode on uusi kirjasinten \n"
+"määrittelytapa joka on määrä kattaa kaikki olemassa olevat kielet.\n"
+"Huomaa etttä täysi tuki GNU/Linuxissa on viellä työn alla. Tästä syystä\n"
+"Mandriva Linuxin UTF-8 käyttö riippuu käyttäjän valinnasta:\n"
+"\n"
+" * Jos valitset kielen jossa on vahva \"vanhanaikainen\" kirjasinmäärittely\n"
+"(latin1 kielet, Venäjä, Japani, Kiina, Korea, Thai, Kreikka, Turkki, suurin "
+"osa\n"
+"iso-8859-2 kielet), \"vanhanaikainen koodaus käytettään oletuksena.\n"
+"\n"
+" * Muut kielet käyttävät unicode oletuksena.\n"
+"\n"
+" * Jos kaksi (tai enemmän) kieltä tarvitaan, ja ne eivät käytä samaa\n"
+"koodausta, käytetään unicode koko järjestelmälle.\n"
+"\n"
+" * Viimeisenä, voit myös pakottaa järjestelmän käyttämään Unicodea \n"
+"(UTF-8) valitsemalla \"%s\"\n"
+"\n"
+"Huomaa, että voit valita useita ylimääräisiä kieliä tai jopa kaikki\n"
+"valitsemalla \"%s\". Kielituen valinta tarkoittaa käännösten,\n"
+"kirjasinten, oikolukuohjelmien jne. asentamista kyseiselle kielelle.\n"
+"\n"
+"Vaihtaaksesi eri kielten välillä voit suorittaa \"/usr/bin/localedrake\"\n"
+"\"root\"-käyttäjänä, jolloin vaihdat koko järjestelmän kieltä, tai\n"
+"tavallisena käyttäjänä, jolloin vaihdat vain sen käyttäjän vakiokielen."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "espanja"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"DrakX yleensä tunnistaa hiiren painikkeiden määrän. Jos tunnistus\n"
+"epäonnistuu DrakX olettaa, että sinulla on kaksipainikkeinen hiiri\n"
+"ja liittää siihen kolmannen painikkeen emulaatiolla. Kolmatta painiketta\n"
+"kaksipainikkeisessa hiiressä voidaan käyttää painamalla molempia\n"
+"painikkeita samanaikaisesti. DrakX tietää myös automaattisesti, onko\n"
+"sinulla PS/2-, sarja- vai USB-hiiri.\n"
+"\n"
+"Mikäli sinulla on kolmipainikkeinen hiiri ilman rullaa, voit valita hiiren\n"
+"tyypiksi \"%s\". DrakX lisää tällöin rullaemulaation, joka toimii\n"
+"painamalla keskimmäistä painiketta ja liikuttamalla hiirtä.\n"
+"\n"
+"Jos haluat asettaa eri tyyppisen hiiren, valitse sopiva tyyppi oheisesta\n"
+"listasta.\n"
+"\n"
+"Voit valita \"%s\" jolla valitset ``yleisen'' hiirimallin joka toimii lähes\n"
+"kaikki hirten kanssa.\n"
+"\n"
+"Jos valitset muun kuin oletushiiren, saat eteesi hiiren testiruudun.\n"
+"Kokeile hiiren näppäimiä ja rullaa varmistaaksesi, että asetukset ovat\n"
+"oikein. Jos hiiri ei toimi kunnolla, paina välilyöntiä tai [enter]\n"
+"peruuttaaksesi, minkä jälkeen voit valita uudelleen.\n"
+"\n"
+"Joskus rullahiirtä ei tunnisteta oikein. Sinun pitää valita oikea malli\n"
+"listasta. Varmista, että valitset mallin joka vastaa porttia johon\n"
+"hiiresi on liitetty. Kun olet painanut \"%s\", hiiren kuva tulee esille.\n"
+"Sitten sinun PITÄÄ pyörittää rullaa, jotta se aktivoituisi oikein.\n"
+"Varmista sitten kaikkien painikkeiden toiminta sekä hiiren liikkuminen."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "Rullaemulaatiolla"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Yleinen | Mikä tahansa PS/2- ja USB-hiiri"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Valitse oikea portti. Esimerkiksi \"COM1\" portti Windowsissa\n"
+"on nimetty \"ttyS0\":ksi GNU/Linuxissa."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Tämä on tärkein päätös joka koskee GNU/Linux-järjestelmäsi turvallisuutta:\n"
+"sinun pitää syöttää \"root\" salasana. \"Root\" on järjestelmän ylläpitäjä\n"
+"ja ainoa, jolla on oikeudet päivittää järjestelmää, lisätä käyttäjiä, "
+"muuttaa\n"
+"järjestelmän asetuksia jne. Lyhyesti, \"root\" voi tehdä mitä vain! Tämän\n"
+"vuoksi sinun pitää valita salasana joka on vaikea arvata - DrakX kertoo\n"
+"sinulle jos salasana on liian helppo. Kuten huomaat, voit jättää salasanan\n"
+"syöttämättä, mutta suosittelemme ettet tee niin, ainakin yhdestä syystä:\n"
+"GNU/Linux on yhtä altis käyttäjän virheille kuin muutkin "
+"käyttöjärjestelmät.\n"
+"Koska \"root\" voi ohittaa kaikki rajoitukset ja vahingossa poistaa kaikki\n"
+"tiedot osioilta on tärkeää, että on vaikea päästä \"root\"-käyttäjäksi.\n"
+"\n"
+"Salasanan pitäisi koostua kirjaimista ja numeroista sekä olla vähintään\n"
+"8 merkkiä pitkä. Älä koskaan kirjoita \"root\" salasanaa paperille - se\n"
+"tekisi järjestelmään murtautumisesta liian helppoa.\n"
+"\n"
+"Älä myöskään valitse liian pitkää tai monimutkaista salasanaa koska sinun\n"
+"pitää itse muistaa se ongelmitta.\n"
+"\n"
+"Salasanaa ei näytetä kun syötät sitä ja tästä syystä sinun pitää syöttää\n"
+"se kahdesti, jolla pyritään ehkäisemään kirjoitusvirheitä. Jos sattumalta\n"
+"teet saman kirjoitusvirheen kahdesti, joudut käyttämään tätä ``väärää''\n"
+"salasanaa ensimmäisessä sisäänkirjautumisessa.\n"
+"\n"
+"Jos haluat että pääsyä tähän koneeseen hallitaan tunnistuspalvelimen\n"
+"kautta, paina \"%s\"-painiketta.\n"
+"\n"
+"Jos verkkosi käyttää LDAP, NIS tai PDC Windows verkkoalueen\n"
+"tunnistuspalvelua, valitse oikea \"%s\" vaihtoehto.\n"
+"Jos sinulla ei ole tietoa, kysy verkon ylläpitäjältä.\n"
+"\n"
+"Jos sinulla on ongelmia muistaa salasanoja, jos koneesi ei ole\n"
+"yhteydessä Internetiin tai jos uskot kaikkiin koneesi käyttäjiin,\n"
+"voit valita \"%s\"."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "tunnistustapa"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Käynnistyslataaja on pieni ohjelma joka käynnistyy tietokoneen\n"
+"käynnistyksen yhteydessä. Sen tarkoitus on käynnistää koko järjestelmää.\n"
+"Yleensä tämä askel on automaattinen, eli DrakX analysoi käynnistys-\n"
+"sektorin ja toimii sen mukaan mitä sieltä löytyy:\n"
+"\n"
+" * jos Windows käynnistyssektori löytyy, sen tilalle asennetaan GRUB/LILO\n"
+"käynnistyssektori. Tällä tavalla voit käynnistää GNU/Linuxin tai jonkin\n"
+"muun käyttöjärjestelmän.\n"
+"\n"
+" * jos käynnistyssektorilta löytyy GRUB tai LILO, se päivitetään uudempaan\n"
+"versioon.\n"
+"\n"
+"Jos DrakX ei osaa tehdä päätöstä, se kysyy sinulta mihin haluat asentaa\n"
+"käynnistyslataajan. Yleensä paras paikka on \"%s\". Valitsemalla \"%s\"\n"
+"käynnistyslataajaa ei asenneta. Tee tämä vain mikäli tiedät mitä teet."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Nyt on aika valita tulostusjärjestelmä tietokoneellesi. Muut "
+"käyttöjärjestelmät\n"
+"saattavat tarjota sinulle yhden järjestelmän, mutta Mandriva Linux tarjoaa\n"
+"kaksi. Kukin tulostusjärjestelmä sopii parhaiten tietyille asetuksille.\n"
+"\n"
+" * \"%s\" -- joka tarkoittaa ``tulosta, älä jonota'' (print, do not "
+"queue).\n"
+"Tämä on sopiva valinta jos sinulla on suora yhteys tulostimeesi ja haluat\n"
+"mahdollisuuden 'hätäkatkaisuun' jos tulostin menee tukkoon, eikä sinulla\n"
+"ole verkkoon liitettyjä tulostimia. (\"%s\" tukee ainoastaan "
+"yksinkertaisimpia\n"
+"verkkoasetelmia ja on hidas verkkokäyttöön.) Valitse \"pdq\" jos tämä on\n"
+"ensimmäinen GNU/Linux tuttavuutesi.\n"
+"\n"
+" * \"%s\" -- ``Common Unix Printing System'', eli Yleinen Unix Tulostus-\n"
+"järjestelmä, on mainio tulostettaessa paikalliseen tulostimeen tai\n"
+"vaikkapa maapallon toiselle puolelle. Se on yksinkertainen järjestelmä\n"
+"ja voi toimia tulostuspalvelimena tai asiakkaana vanhalle \"lpd\"-\n"
+"tulostusjärjestelmälle. Näin ollen, se on yhteensopiva vanhempien\n"
+"järjestelmien kanssa. Se on monitaitoinen, mutta perusasetuksen\n"
+"teko on melkein yhtä helppoa kuin \"pdq\". Jos tarvitset \"lpd\"-palvelimen\n"
+"emulointia, sinun pitää käynnistää \"cups-lpd\" -demoni. \"%s\"\n"
+"sisältää graafisen käyttöliittymän jota voidaan käyttää tulostamiseen\n"
+"tai asetuksien tekoon.\n"
+"\n"
+"Jos teet valinnan nyt, ja myöhemmin huomaat ettet pidä nykyisestä\n"
+"tulostusjärjestelmästä voit muuttaa valintaasi Mandrivan Ohjauskeskuksesta\n"
+"löytyvässä PrinterDrakessa valitsemalla \"%s\"-painikkeen."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Asiantuntija"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"Aluksi DrakX tunnistaa kaikki IDE-laitteet, jotka on kytketty "
+"järjestelmääsi.\n"
+"Samalla myös tutkitaan löytyykö järjestelmästä PCI SCSI -ohjaimia. Jos\n"
+"SCSI-ohjain löytyy, asentaa DrakX tarvittavat ajurit.\n"
+"\n"
+"Koska laitteiston tunnistaminen ei ole idiootinvarma, DrakX voi\n"
+"epäonnistua. Siinä tapauksessa joudut määrittämään laitteistosi\n"
+"itse.\n"
+"\n"
+"Jos sinun pitää määrittää PCI SCSI -ohjaintasi, DrakX kysyy sinulta\n"
+"haluatko määrittää ohjaimen asetuksia. Ehdotamme että sallit DrakX:n\n"
+"tunnistaa tarvittavat asetukset laitteiston alustamiseen. Yleensä DrakX\n"
+"suorittaa tämän toiminnon ongelmitta.\n"
+"\n"
+"Jos DrakX ei pystykään tunnistamaan tarvittavia asetuksia joilla ohjain\n"
+"pitää alustaa, joudut itse syöttämään ne ajurille."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": jos äänikortti on tunnistettu järjestelmässäsi, se\n"
+"näytetään täällä. Jos huomaat että näytetty äänikortti ei vastaa sitä\n"
+"joka on asennettu koneeseesi, voit painaa tätä painiketta ja valita toisen\n"
+"ajurin."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"DrakX näyttää yhteenvedon laitteistoasi koskevista tiedoista\n"
+"jotka se on kerännyt. Asennetusta laitteistosta riippuen, näet joitakin\n"
+"tai kaikki seuraavista tietueista. Jokainen tietue koostuu asetettavasta\n"
+"laitteesta ja lyhyestä selostuksesta laitteen asetuksien nykytilasta.\n"
+"Paina tietuetta vastaavaa \"%s\" painiketta jos haluat muuttaa sitä.\n"
+"\n"
+" * \"%s\": tarkista näppäinasettelu ja vaihda sitä tarvittaessa.\n"
+"\n"
+" * \"%s\": tarkista maa-asetukset. Jos et ole maassa, joka on valittu,\n"
+"paina \"%s\"-painiketta ja valitse oikea. Jos maasi ei ole\n"
+"listassa paina \"%s\"-painiketta, jolloin näet listan kaikista maista.\n"
+"\n"
+" * \"%s\": DrakX oletuksena arvioi aikavyöhykkeesi riippuen\n"
+"siitä, minkä kielen olet valinnut. Jos tämä ei ole oikea, voit muuttaa sitä\n"
+"painamalla \"%s\".\n"
+"\n"
+" * \"%s\": tarkista nykyiset hiiriasetukset ja muuta niitä tarvittaessa.\n"
+"\n"
+" * \"%s\": painamalla \"%s\"-painiketta avaat tulostuksen\n"
+"asetusvelhon. Lue lisää asiaa koskevasta luvusta ``Aloitusoppaasta''\n"
+"saadaksesi lisätietoa miten asettaa uusi tulostin. Käyttöliittymä\n"
+"joka oppaassa esitetään on vastaava kuin se jota käytetään asennuksen\n"
+"aikana.\n"
+"\n"
+" * \"%s\": jos äänikortti on tunnistettu järjestelmässäsi, se\n"
+"näytetään täällä. Jos huomaat että näytetty äänikortti ei vastaa sitä\n"
+"joka on asennettu koneeseesi, voit nappia painamalla valita toisen\n"
+"ajurin.\n"
+"\n"
+" * \"%s\": jos TV-kortti on tunnistettu järjestelmässäsi, se\n"
+"näytetään täällä. Jos sinulla on TV-kortti eikä sitä ole tunnistettu,\n"
+"voit painaa \"%s\" ja yrittää asettaa sen itse.\n"
+"\n"
+" * \"%s\": paina \"%s\" jos haluat muuttaa parametreja joka\n"
+"koskee korttia jaka mielestäsi on väärin asetettu.\n"
+"\n"
+" * \"%s\": oletuksena DrakX asettaa graafisen\n"
+"käyttöliittymäsi käyttämään \"800x600\" tai \"1024x768\" näyttötilaa.\n"
+"Jos tämä ei sovi sinulle, paina \"%s\" muuttaaksesi asetuksia.\n"
+"\n"
+" * \"%s\": jos haluat asettaa Internet- tai paikallisverkkoasetuksesi,\n"
+"voit tehdä sen nyt. Katso ohjekirjasta, tai käytä Mandriva Linux\n"
+"Ohjauskeskus asennuksen jälkeen hyödyntääksesi sisäiset ohjeet.\n"
+"\n"
+" * \"%s\": sallii sinua asettamaan HTTP ja FTP välityspalvelimia jos\n"
+"asentamasi kone on välitysåpalvelimen takana.\n"
+"\n"
+" * \"%s\": tässä voit muuttaa asennuksen alussa asettamaasi\n"
+"turvatasoa jos haluat.\n"
+"\n"
+" * \"%s\": Jos aiot yhdistää koneesi Internetiin, kannattaa\n"
+"suojautua verkon vaaroilta asettamalla palomuuri. Katso\n"
+"``Aloitusoppaasta'' tätä aihetta vastaavaa lukua saadaksesi lisätietoa\n"
+"palomuurin asetuksista.\n"
+"\n"
+" * \"%s\": jos haluat muuttaa käynnistyslataajan asetuksia,\n"
+"paina vastaavaa nappia. Tätä ei kannata muuttaa jos et ole asiantuntija.\n"
+"\n"
+" * \"%s\": täällä voit määrittää mitä palveluja järjestelmässäsi\n"
+"toimii. Jos aiot käyttää tätä konetta palvelimena, kannattaa nämä\n"
+"asetukset tarkistaa."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN-kortti"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Graafinen käyttöliittymä"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Valitse kiintolevy, jonka haluat tyhjentää uudelle Mandriva Linux\n"
+"-asennusosiolle. Ole varovainen, koska kaikki asemalla oleva tieto\n"
+"tuhoutuu eikä ole enää palautettavissa!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Valitse \"%s\" jos haluat tuhota kaiken tällä kiintolevyllä olevan\n"
+"tiedon sekä osiot. Ole varovainen, sillä valittuasi \"%s\"\n"
+"et voi enää palauttaa mitään tällä kiintolevyllä olleita tietoja ja "
+"osioita,\n"
+"mukaanlukien kaikki Windows-tiedostot.\n"
+"\n"
+"Valitse \"%s\" keskeyttääksesi tämän toiminnon ilman että\n"
+"menetät mitään kiintolevyllä ollutta tietoa ja osioita."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Seuraava ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Edellinen"
+
diff --git a/perl-install/share/po/help-fr.pot b/perl-install/install/help/po/fr.po
index 56353ecfa..cacfe913c 100644
--- a/perl-install/share/po/help-fr.pot
+++ b/perl-install/install/help/po/fr.po
@@ -1,166 +1,121 @@
+# translation of DrakX-fr.po to Français
+# Translation file of Mandriva Linux graphic install
+# Copyright (C) 1999,2000,2001,2002,2003,2004,2005,2006 Mandriva
+#
+# Veuillez ne pas mettre à jour ce fichier à moins d'être
+# certain tant de vos traductions que de votre grammaire et
+# de votre orthographe. Ces dernières sont trop souvent
+# approximatives. Elles nécessitent alors des relectures et
+# des corrections qui n'ont d'autre conséquence que de faire
+# perdre du temps à tout le monde (à vous si votre travail est
+# imparfait et aux relecteurs qui doivent rechercher puis corriger
+# vos éventuelles fautes).
+#
+# VEUILLEZ RESPECTER LA TYPOGRAPHIE FRANÇAISE !
+# Les majuscules doivent être accentuées si besoin est. Respectez
+# les espaces nécessaires pour la ponctuation (espace après la virgule et
+# le point, espace insécables avant les points d'interrogation,
+# d'exclamation, les deux-points et le point virgule, espace aussi après
+# le point virgule).
+# N'enlevez pas l'espace qui suit un signe de ponctuation en fin de
+# phrase; vous devez respecter la version originale. Dans ce type de
+# cas, il est extrèmement probable que le programme va afficher
+# quelque chose d'autre à la fin. En enlevant l'espace, vous allez
+# accoller deux mots.
+#
+# ESPACES INSÉCABLES
+# Vous devez utiliser un espace insécable (c'est un espace qui ne peut
+# pas servir de rupture à la ligne) avant le point d'exclamation, le
+# point d'interrogation, le deux-points, le point virgules, et pour les
+# "quantités", entre le nombre et l'unité abbrégée (par exemple "10 g").
+# L'espace normal en ISO et UTF8 est le caractere 0x20 tandis que l'espace
+# insécable est le caractère 0xA0. Sous Emacs en utilisant le po mode
+# livré avec gettext >= 0.10.40-4mdk vous pouvez voir celui-ci avec un
+# fond de couleur spécial. Sous Vi celui-ci est normalement affiché
+# précédé du caractère pipe "|". Pour le taper sous la plupart des
+# éditeurs, vous pouvez utiliser la touche "Compose" puis en tapant
+# deux espaces. Si vous n'avez pas de touche compose, vous pouvez
+# donner cette fonction à la touche "Windows" droite de votre clavier
+# avec la commande suivante :
+# xmodmap -e 'keycode 116 = Multi_key'
+#
+# Les guillemets françaises sont « et » et non ". La guillemet ouvrante
+# « est suivie d'un espace insécable et la guillemet fermante » est
+# précédée du même type d'espace. Pour le taper, vous pouvez utiliser
+# la combinaison Compose < <, et Compose > > (ou alt-z et alt-x).
+#
+# Enfin, traduisez INTELLIGEMMENT et non mot à mot. Certaines traductions
+# n'ont aucun sens en français.
+#
+# MOTS À ÉVITER
+# - application. Ce terme n'étant pas compris par le grand public, il est
+# préférable de le remplacer par le mot "programme".
+#
+# Nous vous remercions de votre compréhension.
+#
+#
+#
+# Stéphane Teletchéa, 2005.
+# David BAUDENS <baudens@mandriva.com>, 1999-2004.
+# David ODIN <odin@mandriva.com>, 2000.
+# Pablo Saratxaga <pablo@mandriva.com>, 2001, 2005.
+# KAtiOS <katios@nolabel.net>, 2001.
+# Guillaume Cottenceau <gc@mandriva.com>, 2001-2002.
+# Thierry Vignaud <tvignaud@mandriva.com>, 2001-2004.
+# Christophe Combelles <ccomb@free.fr>, 2002,2003.
+# Adrien REZER <monsieurdidi@free.fr>, 2003.
+# RICHARD Nicolas <richardnicolas22@yahoo.fr>, 2004.
+# Lecureuil Nicolas <n1c0l4s.l3@wanadoo.fr>, 2004.
+# Teletchéa <steletch@free.fr>, 2004, 2005.
+# Christophe Berthelé <cpjc@free.fr>, 2005, 2006.
+# Didier Hérisson <didier.herisson@angstrom.uu.se>, 2005.
+# Nicolas Lécureuil <neoclust@mandriva.org>, 2005.
msgid ""
msgstr ""
+"Project-Id-Version: DrakX-fr\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2006-03-23 02:02+0100\n"
+"Last-Translator: Lécureuil Nicolas <neoclust@mandriva.org>\n"
+"Language-Team: Français <cooker-i18n@mandrivalinux.org>\n"
+"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11\n"
+"Plural-Forms: nplurals=2;plural=(n>1);\n"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:14
+#, c-format
msgid ""
-"You now need to decide where you want to install the Mandrivalinux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandrivalinux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandrivalinux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandrivalinux system, choose\n"
-"this option. Be careful, because you won't be able to undo this operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-"Cette étape vous permet de déterminer précisément l'emplacement de votre\n"
-"installation de Mandrivalinux. Si votre disque est vide ou utilisé par un\n"
-"autre système d'exploitation, vous devrez repartitionner votre disque.\n"
-"Partitionner un disque désigne l'opération consistant à le diviser\n"
-"précisément afin de créer un espace pour votre installation.\n"
-"\n"
-"Comme les effets du partitionnement sont irréversibles (l'ensemble du\n"
-"disque est effacé), le partitionnement est généralement intimidant et\n"
-"stressant pour un utilisateur inexpérimenté. Heureusement, un assistant a\n"
-"été prévu à cet effet. Avant de commencer, lisez le reste de ce document et\n"
-"surtout, prenez votre temps.\n"
-"\n"
-"Selon la configuration de votre disque, plusieurs options sont disponibles\n"
-":\n"
-"\n"
-" * « %s » : cette option tentera simplement de partitionner automatiquement\n"
-"l'espace inutilisé sur votre disque. Il n'y aura pas d'autre question.\n"
-"\n"
-" * « %s » : l'assistant a détecté une ou plusieurs partitions Linux\n"
-"existant sur votre disque. Si vous voulez les utiliser, choisissez cette\n"
-"option. Il vous sera alors demandé de choisir les points de montage\n"
-"associés à chacune des partitions. Les anciens points de montage sont\n"
-"sélectionnés par défaut, et vous devriez généralement les garder.\n"
-"\n"
-" * « %s » : si Microsoft Windows est installé sur votre disque et en prend\n"
-"toute la place vous devez faire de la place pour votre installation\n"
-"GNU/Linux. Pour ce faire, vous pouvez tout effacer (voir « effacer tout le\n"
-"disque ») ou vous pouvez redimensionner la partition Windows FAT ou NTFS.\n"
-"Le redimensionnement peut être effectué sans pertes de données, à condition\n"
-"que vous ayez préalablement défragmenté la partition Windows. Une\n"
-"sauvegarde de vos données ne fera pas de mal non plus. Cette solution est\n"
-"recommandée pour faire cohabiter Mandrivalinux et Microsoft Windows sur le\n"
-"même ordinateur.\n"
-"\n"
-" Avant de choisir cette option, il faut comprendre qu'après cette\n"
-"procédure l'espace disponible pour Windows sera réduit. Vous aurez moins\n"
-"d'espace pour installer des logiciels ou sauvegarder de l'information avec\n"
-"Windows.\n"
-"\n"
-" * « %s »: si vous voulez effacer toutes les données et les applications\n"
-"installées sur votre système et les remplacer par votre nouveau système\n"
-"Mandrivalinux, choisissez cette option. Soyez prudent, car ce choix est\n"
-"irréversible et permanent. Il vous sera impossible de retrouver vos données\n"
-"effacées.\n"
-"\n"
-" !! En choisissant cette option, l'ensemble du contenu de votre disque\n"
-"sera détruit. !!\n"
-"\n"
-" * « %s »: ce choix apparaît lorsque l'intégralité du disque dur est occupé\n"
-"par Microsoft Windows. Choisir cette option effacera tout simplement ce que\n"
-"contient le disque et recommencera à zéro. Toutes les données et les\n"
-"programmes présents sur le disque seront effacés.\n"
-"\n"
-" !! En choisissant cette option, l'ensemble de votre disque sera effacé\n"
-"!!\n"
-"\n"
-" * « %s » : permet de partitionner manuellement votre disque. Soyez\n"
-"prudent, car bien que plus puissante, cette option est dangereuse. Vous\n"
-"pouvez facilement perdre l'ensemble du contenu d'un disque. Donc, ne\n"
-"choisissez pas cette option si vous ne savez pas exactement ce que vous\n"
-"devez faire. Pour en savoir plus sur DiskDrake, référez-vous à « Gérer ses\n"
-"partitions » du « Guide de démarrage »."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
msgstr ""
-"Résolution\n"
-"\n"
-" Vous pouvez choisir ici la résolution et nombre de couleurs parmi celles\n"
-"disponibles pour votre matériel. Choisissez la configuration optimale pour\n"
-"votre utilisation (vous pourrez néanmoins modifier cela après\n"
-"l'installation). Un échantillon de la configuration choisie apparaît dans\n"
-"le dessin du moniteur."
+"Avant d'aller plus loin, il est fortement recommandé de lire attentivement\n"
+"les termes et conditions d'utilisation de la licence. Celle-ci régit\n"
+"l'ensemble de la distribution Mandriva Linux. Si vous en acceptez tous les\n"
+"termes, cochez la case « %s », sinon, cliquez sur le bouton « %s » pour\n"
+"redémarrer votre ordinateur."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:20
+#, c-format
msgid ""
"GNU/Linux is a multi-user system which means each user can have his or her\n"
"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point won't be authorized\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
"to change anything except their own files and their own configurations,\n"
"protecting the system from unintentional or malicious changes which could\n"
"impact on the system as a whole. You'll have to create at least one regular\n"
"user for yourself -- this is the account which you should use for routine,\n"
"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system won't work any more. If you make a\n"
+"mistake could mean that your system will not work any more. If you make a\n"
"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you won't affect the entire system.\n"
+"lose some information, but you will not affect the entire system.\n"
"\n"
"The first field asks you for a real name. Of course, this is not mandatory\n"
"-- you can actually enter whatever you like. DrakX will use the first word\n"
@@ -181,7 +136,7 @@ msgid ""
"\n"
"When you're finished adding users, you'll be asked to choose a user who\n"
"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and don't care much about local\n"
+"you're interested in that feature (and do not care much about local\n"
"security), choose the desired user and window manager, then click on\n"
"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
msgstr ""
@@ -220,69 +175,33 @@ msgstr ""
"gestionnaire de fenêtres, puis cliquez sur « %s ». Si cela ne vous\n"
"intéresse pas, décochez la case « %s »."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandrivalinux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandrivalinux system. Your current partitioning\n"
-"scheme and user data won't be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandrivalinux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandrivalinux version \"8.1\" is not recommended."
-msgstr ""
-"Cette étape ne s'affichera que si une partition GNU/Linux a été détectée\n"
-"sur votre disque dur.\n"
-"\n"
-"DrakX doit maintenant savoir si vous désirez lancer une « %s » ou une\n"
-"« %s » d'un système Mandrivalinux déjà installé :\n"
-"\n"
-" * « %s » : remplace l'ancien système. Cependant, selon votre table de\n"
-"partition, vous pourrez éviter l'effacement de vos données existantes\n"
-"(notamment les répertoires « home »). Si vous souhaitez changer le\n"
-"partitionnement de vos disques durs, ou changer votre système de fichiers,\n"
-"vous devriez utiliser cette option.\n"
-"\n"
-" * « %s » : cette classe d'installation vous permet de mettre à jour\n"
-"seulement les paquetages qui composent votre système Mandrivalinux. Elle\n"
-"conserve les partitions existantes, ainsi que la configuration des\n"
-"utilisateurs. La plupart des autres étapes d'une installation classique\n"
-"sont accessibles.\n"
-"\n"
-"La mise à jour devrait fonctionner correctement pour les systèmes\n"
-"Mandrivalinux à partir de la version « 8.1 ». Essayer de lancer une mise à\n"
-"jour sur les versions antérieures à « 8.1 » n'est pas recommandé."
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Voulez-vous utiliser cette fonctionnalité ?"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:57
+#, c-format
msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandrivalinux operating system.\n"
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
"\"sd\" if it is a SCSI hard drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard drives:\n"
"\n"
" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
@@ -294,249 +213,76 @@ msgid ""
" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Plus d'une partition Windows a été détectée sur votre disque dur. Veuillez\n"
-"choisir celle que vous choisissez pour votre nouvelle installation de\n"
-"Mandrivalinux.\n"
-"\n"
-"Chaque partition est identifiée comme suit: \"Nom linux\", \"Nom Windows\",\n"
-"\"Capacité\".\n"
-"\n"
-"Le \"Nom\" est structuré ainsi : \"type de disque dur\", \"numéro du disque\n"
-"dur\", \"numéro de partition\". Par exemple, « hda1 ».\n"
-"\n"
-"Le \"Type de disque dur\" correspond à hd si votre disque est IDE. Pour un\n"
-"disque SCSI, vous lirez \"sd\".\n"
-"\n"
-"Le numéro du disque est toujours listé après le \"hd\" ou \"fd\". Pour les\n"
-"disques IDE :\n"
-"\n"
-" * \"a\" signifie \"disque primaire maître sur le premier contrôleur IDE\";\n"
-"\n"
-" * \"b\" signifie \"disque primaire esclave sur le premier contrôleur\n"
-"IDE\";\n"
-"\n"
-" * \"c\" indique \"disque primaire maître sur le second contrôleur IDE\";\n"
-"\n"
-" * \"d\" signifie \"disque primaire esclave sur le second contrôleur IDE\";\n"
-"\n"
-"Avec les disques SCSI, le \"a\" indique le plus petit SCSI ID, et ainsi de\n"
-"suite.\n"
-"\n"
-"\"Windows name\" c'est la lettre assignée à votre disque, (le premier\n"
-"disque ou partition \"C:\")"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"By the time you install Mandrivalinux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-"Au moment où vous installez Mandrivalinux, il est possible que certains\n"
-"paquetages aient été mis à jour depuis la sortie du produit. Des bogues ont\n"
-"pu être corrigés, et des problèmes de sécurité résolus. Pour vous permettre\n"
-"de bénéficier de ces mises à jour, il vous est maintenant proposé de les\n"
-"télécharger depuis Internet. Choisissez « %s » si vous avez une connexion\n"
-"Internet, ou « %s » si vous préférez installer les mises à jour plus tard.\n"
-"\n"
-"En choisissant « %s », la liste des sites depuis lesquels les mises à jour\n"
-"peuvent être téléchargées est affichée. Choisissez le site le plus proche\n"
-"de chez vous. Puis un arbre de choix des paquetages apparaît : vérifiez la\n"
-"sélection, puis cliquez sur « %s » pour télécharger et installer les mises\n"
-"à jour sélectionnées, ou « %s » pour abandonner."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrivalinux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
+"\"second lowest SCSI ID\", etc."
msgstr ""
-"X (pour le système X Window) est le coeur de votre interface graphique sous\n"
-"GNU/Linux. Tous les environnements graphiques (KDE, GNOME, WindowMaker\n"
-"etc.) présents sur Mandrivalinux dépendent de X.\n"
-"\n"
-"Il vous sera présenté une liste de divers paramètres à changer pour obtenir\n"
-"un affichage optimal :\n"
-"\n"
-"Carte graphique\n"
-"\n"
-" Le programme d'installation détecte et configure automatiquement la\n"
-"carte graphique présente sur votre machine. Si ce n'est pas le cas, vous\n"
-"pouvez choisir dans cette liste la carte que vous utilisez effectivement.\n"
-"\n"
-" Dans le cas où différents serveurs seraient disponibles pour votre\n"
-"carte, avec ou sans accélération 3D, il vous est alors proposé de choisir\n"
-"le serveur qui vous conviendra le mieux.\n"
-"\n"
-"\n"
-"\n"
-"Moniteur\n"
-"\n"
-" Le programme d'installation détecte et configure automatiquement les\n"
-"moniteurs connectés à votre unité centrale. Si ce n'est pas le cas, vous\n"
-"pouvez choisir dans cette liste le moniteur que vous utilisez\n"
-"effectivement.\n"
-"\n"
-"\n"
-"\n"
-"Résolution\n"
-"\n"
-" Vous pouvez choisir ici la résolution et nombre de couleurs parmi celles\n"
-"disponibles pour votre matériel. Choisissez la configuration optimale pour\n"
-"votre utilisation (vous pourrez néanmoins modifier cela après\n"
-"l'installation). Un échantillon de la configuration choisie apparaît dans\n"
-"le dessin du moniteur.\n"
+"La liste présentée plus haut identifie les partitions GNU/Linux détectées\n"
+"sur votre système. Vous pouvez accepter les choix proposés par l'assistant,\n"
+"qui s'avèrent bons dans la grande majorité des cas. Si vous faites un\n"
+"changement, vous devez au moins avoir une partition racine root (« / »).\n"
+"Prenez garde de vous réserver suffisamment d'espace pour installer toutes\n"
+"les applications qui vous intéressent. Si vous souhaitez stocker les "
+"données\n"
+"des utilisateurs sur une partition spécifique, vous devrez également créer\n"
+"une partition « /home ». Cependant, ceci ne sera possible que si vous\n"
+"disposez de plus d'une partition GNU/Linux disponible.\n"
"\n"
+"Chaque partition est listée comme suit : « Nom », « Capacité ».\n"
"\n"
+"Le « Nom » est structuré ainsi : « type de disque dur », « numéro du disque\n"
+"dur », « numéro de partition ». Par exemple, « hda1 ».\n"
"\n"
-"Test\n"
+"Le « type de disque dur » correspond à hd si votre disque est IDE. Pour un\n"
+"disque SCSI, vous lirez « sd ».\n"
"\n"
-" Selon votre matériel cette option peut ne pas apparaître.\n"
+"Le « numéro du disque » est toujours listé après le « hd » ou « sd ». Pour "
+"les\n"
+"disques durs IDE :\n"
"\n"
-" le système va ici essayer d'ouvrir un écran graphique à la résolution\n"
-"choisie. Si vous pouvez voir le message pendant le test, et répondez\n"
-"« %s », alors DrakX passera à l'étape suivante. Si vous ne pouvez pas voir\n"
-"de message, cela signifie que vos paramètres sont incompatibles, et le test\n"
-"se terminera automatiquement après 12 secondes. Changez la configuration\n"
-"jusqu'à obtenir un affichage correct lors du test.\n"
+" * « a » signifie « disque primaire maître sur le premier contrôleur IDE »;\n"
"\n"
+" * « b » signifie le « disque primaire esclave sur le premier contrôleur\n"
+"IDE »;\n"
"\n"
+" * « c » indique le « disque primaire maître sur le second contrôleur\n"
+"IDE »;\n"
"\n"
-"Options\n"
+" * « d » signifie le « disque primaire esclave sur le second contrôleur\n"
+"IDE »;\n"
"\n"
-" Vous pourrez également choisir ici de démarrer l'interface graphique au\n"
-"lancement de la machine. Il est préférable de choisir « %s » si vous êtes\n"
-"en train d'installer un serveur, ou si vous n'avez pas réussi à configurer\n"
-"l'écran correctement."
+"Avec les disques SCSI, le « a » indique le plus petit SCSI ID, et « b » le\n"
+"« deuxième plus petit ID », etc."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:88
+#, c-format
msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandrivalinux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, don't queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you don't have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you don't like your printing\n"
-"system you may change it by running PrinterDrake from the Mandrivalinux\n"
-"Control Center and clicking on the \"%s\" button."
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
msgstr ""
-"Il faut choisir ici un système d'impression pour votre ordinateur. D'autres\n"
-"OS en offrent un, Mandrivalinux en propose deux. Chaque système\n"
-"d'impression convient le mieux à certains types de configuration.\n"
-"\n"
-" * « %s » - qui veut dire « print, don't queue », (ou, impression sans\n"
-"passer par la file d'attente) est un bon choix si votre imprimante est\n"
-"branchée directement sur votre poste et que vous voulez pouvoir arrêter\n"
-"l'impression directement en cas de problème et que vous n'avez pas\n"
-"d'imprimante réseau. Il prendra en charge de simples cas en réseau, mais\n"
-"les performances sont plutôt mauvaises dans ces cas. Choisissez pdq si vous\n"
-"débutez sous Linux.\n"
-"\n"
-" * « %s » - « Common Unix Printing System », est fabuleux autant pour une\n"
-"imprimante locale que pour imprimer à l'autre bout du monde. C'est simple\n"
-"et il peut agir comme un serveur ou un client avec l'ancien système\n"
-"d'impression « lpd ». Il s'agit d'un outil très puissant et les\n"
-"configurations de base sont aussi simples que « pdq ». Pour émuler un\n"
-"serveur « lpd », lancez le démon (« daemon ») « cups-lpq ». Enfin, « %s »\n"
-"offre une interface simple pour imprimer et choisir les imprimantes.\n"
-"\n"
-"Si vous choisissez votre système d'impression maintenant et que par la\n"
-"suite vous n'en seriez pas convaincu, vous pourrez le changer\n"
-"ultérieurement en lançant PrinterDrake depuis le Centre de contrôle\n"
-"Mandrivalinux puis en cliquant sur le bouton « %s »."
+"Les paquetages requis à l'installation de Mandriva Linux sont distribués "
+"sur\n"
+"plusieurs CD-ROM. Si un paquetage requis se trouve sur un autre CD-ROM,\n"
+"DrakX éjectera celui présent dans le lecteur et vous demandera d'insérer le\n"
+"CD-ROM approprié. Si vous ne possédez pas le CD demandé, cliquez tout\n"
+"simplement sur « %s », et les paquetages correspondants ne seront pas\n"
+"installés."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:95
+#, c-format
msgid ""
"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandrivalinux, and to make it\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
"simpler to manage, they have been placed into groups of similar\n"
"applications.\n"
"\n"
-"Mandrivalinux sorts package groups in four categories. You can mix and\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
"match applications from the various categories, so a ``Workstation''\n"
"installation can still have applications from the ``Server'' category\n"
"installed.\n"
@@ -588,18 +334,18 @@ msgid ""
"megabytes."
msgstr ""
"C'est maintenant le moment de choisir les paquetages qui seront installés\n"
-"sur votre système. Sachez que Mandrivalinux contient plusieurs milliers de\n"
+"sur votre système. Sachez que Mandriva Linux contient plusieurs milliers de\n"
"paquetages à installer, et ces paquetages ont été rangés par groupes chacun\n"
"correspondant à un usage particulier de l'ordinateur.\n"
"\n"
-"Mandrivalinux range ces groupes en quatre catégories. Vous pouvez mélanger\n"
+"Mandriva Linux range ces groupes en quatre catégories. Vous pouvez mélanger\n"
"des groupes de plusieurs catégories de sorte qu'« une station de travail »\n"
"peut toujours proposer des applications pour la catégorie « Serveur ».\n"
"\n"
-" * « %s » : si vous comptez utiliser votre machine ainsi, sélectionner un\n"
+" * « %s » : si vous comptez utiliser votre machine ainsi, sélectionner un\n"
"ou plusieurs groupes y correspondant.\n"
"\n"
-" * « %s » : si votre système doit être utilisé pour la programmation,\n"
+" * « %s » : si votre système doit être utilisé pour la programmation,\n"
"choisissez les groupes désirés. Le groupe spécial « LSB » configurera votre\n"
"système de manière à ce qu'il corresponde le plus possible avec la Linux\n"
"Standard Base.\n"
@@ -610,10 +356,10 @@ msgstr ""
"groupe « LSB » vous aurez quand même un système presque entièrement\n"
"compatible LSB.\n"
"\n"
-" * « %s » : enfin, si votre système doit fonctionner en tant que serveur,\n"
+" * « %s » : enfin, si votre système doit fonctionner en tant que serveur,\n"
"vous pourrez sélectionner les services que vous voulez installer.\n"
"\n"
-" * « %s » : ce groupe vous permettra de déterminer quel environnement\n"
+" * « %s » : ce groupe vous permettra de déterminer quel environnement\n"
"graphique vous voulez avoir sur votre système. Évidemment, il vous en faut\n"
"au moins un pour utiliser votre station en mode graphique.\n"
"\n"
@@ -631,132 +377,36 @@ msgstr ""
"\n"
"Si vous désélectionnez tous les groupes lors d'une installation standard\n"
"(en opposition à une mise à jour), une boîte de dialogue apparaîtra et vous\n"
-"proposera différentes options pour une installation minimale :\n"
+"proposera différentes options pour une installation minimale :\n"
"\n"
-" * « %s » : installe le moins de paquetages possible pour avoir un\n"
-"environnement de travail graphique ;\n"
+" * « %s » : installe le moins de paquetages possible pour avoir un\n"
+"environnement de travail graphique ;\n"
"\n"
-" * « %s » : installe le système de base plus certains utilitaires de base\n"
+" * « %s » : installe le système de base plus certains utilitaires de base\n"
"et leur documentation. Cette installation est utilisable comme base pour\n"
-"monter un serveur ;\n"
+"monter un serveur ;\n"
"\n"
-" * « %s » : installera le strict minimum nécessaire pour obtenir un système\n"
+" * « %s » : installera le strict minimum nécessaire pour obtenir un système\n"
"GNU/Linux fonctionnel, en ligne de commande. Cette installation prend à peu\n"
"près 65 Mo."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"The Mandrivalinux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-"Les paquetages requis à l'installation de Mandrivalinux sont distribués sur\n"
-"plusieurs CD-ROM. Si un paquetage requis se trouve sur un autre CD-ROM,\n"
-"DrakX éjectera celui présent dans le lecteur et vous demandera d'insérer le\n"
-"CD-ROM approprié. Si vous ne possédez pas le CD demandé, cliquez tout\n"
-"simplement sur « %s », et les paquetages correspondants ne seront pas\n"
-"installés."
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Mise à jour"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: don't make the password too long or too complicated because you\n"
-"must be able to remember it!\n"
-"\n"
-"The password won't be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you don't know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-"Vous devez prendre ici une décision cruciale pour la sécurité de votre\n"
-"système GNU/Linux : vous devez entrer un mot de passe « root ».\n"
-"L'utilisateur « root » est l'administrateur du système qui a tous les\n"
-"droits d'accès aux fichiers de configuration, etc. Il est donc impératif de\n"
-"choisir un mot de passe difficile à deviner (pensez aux systèmes prévus à\n"
-"cet effet qui anticipent les combinaisons communes des utilisateurs). DrakX\n"
-"vous avertira si le mot de passe entré est trop facile à deviner. Comme\n"
-"vous pouvez le voir, il est également possible de ne pas entrer de mot de\n"
-"passe. Nous déconseillons fortement cette pratique. Comme l'erreur est\n"
-"humaine, un utilisateur avec tous les droits peut tout détruire sur votre\n"
-"système, c'est pourquoi le mot de passe doit agir comme barrière à\n"
-"l'entrée.\n"
-"\n"
-"Le mot de passe choisi devrait contenir au moins 8 caractères\n"
-"alphanumériques. Ne jamais écrire le mot de passe « root », forcez-vous à\n"
-"vous en souvenir par coeur.\n"
-"\n"
-"Ne choisissez pas de mot de passe trop long ou trop compliqué, ménagez\n"
-"accessibilité et mémoire : un mot de passe de 30 caractères est presque\n"
-"impossible à mémoriser.\n"
-"\n"
-"Afin d'éviter les regards indiscrets, le mot de passe n'apparaîtra pas à\n"
-"l'écran. Il vous faudra donc l'inscrire deux fois afin d'éviter les erreurs\n"
-"de frappe. Évidemment, si vous faites deux fois la même erreur, celle-ci\n"
-"sera sauvegardée et vous devrez la reproduire afin d'accéder à votre\n"
-"système pour la première fois en tant qu'administrateur.\n"
-"\n"
-"Si vous souhaitez que l'accès à cette machine soit contrôlé par un serveur\n"
-"d'authentification, cliquez sur le bouton « %s ».\n"
-"\n"
-"Si votre réseau utilise soit LDAP, NIS, ou un PDC Windows, choisissez-le\n"
-"comme protocole d'authentification. En cas de doute, demandez à votre\n"
-"administrateur réseau.\n"
-"\n"
-"Si vous avez des problèmes à vous souvenir de vos mots de passe, vous\n"
-"pouvez choisir « %s », si votre ordinateur ne sera pas connecté à Internet,\n"
-"et si vous avez confiance en tous ceux qui auront accès à cette machine."
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Avec la documentation de base"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-"Cliquez sur « %s » si vous voulez vraiment effacer toute l'information et\n"
-"les partitions. Soyez prudent, après avoir cliqué sur « %s », vous ne\n"
-"pourrez plus récupérer les données ou les partitions, y compris les données\n"
-"Windows.\n"
-"\n"
-"Cliquez sur « %s » pour renoncer à cette opération sans perdre de données."
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Installation réellement minimale"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:152
+#, c-format
msgid ""
"If you choose to install packages individually, the installer will present\n"
"a tree containing all packages classified by groups and subgroups. While\n"
@@ -769,11 +419,12 @@ msgid ""
"!! If a server package has been selected, either because you specifically\n"
"chose the individual package or because it was part of a group of packages,\n"
"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandrivalinux will automatically start any installed\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
"services at boot time. Even if they are safe and have no known issues at\n"
"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandrivalinux was\n"
-"finalized. If you don't know what a particular service is supposed to do or\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
"the listed services and they will be started automatically at boot time. !!\n"
"\n"
@@ -801,14 +452,14 @@ msgstr ""
"apparaît à droite.\n"
"\n"
"!! Si un paquetage serveur a été sélectionné, vous devrez confirmer que\n"
-"vous voulez vraiment que celui-ci soit installé. Sous Mandrivalinux , par\n"
+"vous voulez vraiment que celui-ci soit installé. Sous Mandriva Linux , par\n"
"défaut, tous les services installés sont lancés au démarrage. Malgré tous\n"
"les efforts investis pour vous livrer une distribution Linux sécurisée, il\n"
"est possible que certaines failles de sécurité affectent les serveurs\n"
"installés au-delà de la date de publication. Si vous ne savez pas\n"
"précisément à quoi sert un service en particulier ou pourquoi il est\n"
"installé, cliquez sur « %s ». En cliquant sur « %s », le serveur sera\n"
-"installé et le service rendu disponible au démarrage. !!\n"
+"installé et le service rendu disponible au démarrage. !!\n"
"\n"
"L'option « %s » désactive les avertissements qui apparaissent à chaque fois\n"
"que l'installeur sélectionne un nouveau paquetage. Parfois, pour qu'un\n"
@@ -822,550 +473,250 @@ msgstr ""
"créée lors d'une installation précédente. Voir la deuxième astuce de la\n"
"dernière étape afin de savoir comment créer une telle disquette."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can't determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" won't install any boot loader. Use this option only if you\n"
-"know what you're doing."
-msgstr ""
-"Un programme d'amorce est un petit programme qui est lancé par le machine\n"
-"au démarrage. Il est en charge du démarrage du sytème. Normalement,\n"
-"l'installation d'un programme d'amorce est complètement automatique. DrakX\n"
-"analyse le secteur de démarrage (« master boot record ») et agit en\n"
-"fonction de ce qu'il peut y lire :\n"
-"\n"
-" * si un secteur de démarrage Windows est détecté, il sera remplacé par\n"
-"GRUB/LILO. Donc, vous serez capable de démarrer GNU/Linux ou tout autre\n"
-"système d'exploitation installé sur votre machine.\n"
-"\n"
-" * si GRUB ou LILO est détecté, il sera remplacé par la nouvelle version;\n"
-"\n"
-"En cas de doute, DrakX affiche différentes options. En général, le « %s »\n"
-"est l'endroit le plus sûr. Si vous choisissez « %s », aucun chargeur de\n"
-"démarrage ne sera installé. À vos risques et périls."
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Dépendances automatiques"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"DrakX détecte maintenant tous les périphériques IDE présents sur votre\n"
-"système. DrakX recherchera aussi les périphériques SCSI. Enfin, selon les\n"
-"composantes détectées, DrakX installera tous les pilotes nécessaires à son\n"
-"fonctionnement.\n"
-"\n"
-"Compte tenu de la vaste gamme de périphériques disponibles sur le marché,\n"
-"dans certains cas la détection de matériel ne fonctionnera pas. Si c'est le\n"
-"cas, vous devrez alors configurer votre matériel à la main.\n"
-"\n"
-"Si vous devez configurer votre carte SCSI manuellement, DrakX vous\n"
-"demandera si vous souhaitez spécifier à la main les options du\n"
-"périphérique. Laissez en fait DrakX chercher automatiquement les options\n"
-"nécessaires à la configuration de votre carte, cela fonctionne\n"
-"généralement.\n"
-"\n"
-"Il peut arriver que DrakX soit incapable de vérifier les options\n"
-"nécessaires. Dans ce cas, vous devrez les déterminer manuellement."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card isn't the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-"« %s » : si une carte son a été détectée, elle apparaîtra ici. Si vous\n"
-"remarquez que la carte configurée n'est pas celle qui se trouve\n"
-"effectivement sur votre système, vous pouvez cliquer sur le bouton pour\n"
-"choisir un pilote différent ."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandrivalinux's use of UTF-8 will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-"La première étape consiste à choisir votre langue.\n"
-"\n"
-"Le choix de la langue sera appliqué au programme d'installation, à la\n"
-"documentation et au système en général. Commencez par choisir la région où\n"
-"vous vous situez, puis la langue que vous parlez.\n"
-"\n"
-"En cliquant sur « %s », le programme vous proposera également des langues\n"
-"complémentaires pouvant être installées sur votre poste de travail. En\n"
-"choisissant des langues supplémentaires, le programme vous installera toute\n"
-"la documentation et les applications nécessaires à l'utilisation de ces\n"
-"langues. Par exemple, si vous prévoyez d'accueillir des utilisateurs\n"
-"d'Espagne sur votre machine, choisissez le français comme langue principale\n"
-"dans l'arborescence, et « %s », dans la section avancée.\n"
-"\n"
-"À propos de l'encodage UTF-8 (unicode) : Unicode est un nouveau système\n"
-"d'encodage des caractères censé couvrir tous les langues existantes.\n"
-"Cependant son intégration dans GNU/Linux est encore imparfaite. Pour cette\n"
-"raison, Mandrivalinux l'utilisera ou non selon les critères suivants :\n"
-"\n"
-" * Si vous choisissez une langue avec un encodage ayant une longue histoire\n"
-"(langues associées à « latin1 », Russe, Japonais, Chinois, Coréen, Thaï,\n"
-"Grec, Turc, et la plupart des langues « iso-8859-2 »), l'encodage\n"
-"historique sera utilisé;\n"
-"\n"
-" * Les autres langues entraîneront l'utilisation d'unicode par défaut;\n"
-"\n"
-" * Si vous demandez l'installation de plus d'une langue, et que ces langues\n"
-"n'utilisent pas le même encodage, alors unicode sera utilisé pour tout le\n"
-"système;\n"
-"\n"
-" * Enfin, unicode peut aussi être utilisé quelque soit votre configuration\n"
-"des langues à utiliser, en sélectionnant l'option « %s ».\n"
-"\n"
-"Remarquez que vous n'êtes pas limité à une langue supplémentaire. Vous\n"
-"pouvez en choisir plusieurs, ou même les installer toutes en choisissant\n"
-"« %s ». Choisir le support pour une langue signifie ajouter les\n"
-"traductions, les polices, correcteurs orthographiques, etc.\n"
-"\n"
-"Pour passer d'une langue à l'autre, vous pouvez lancer l'utilitaire\n"
-"« /usr/sbin/localedrake » en tant que « root » pour changer la langue\n"
-"utilisée dans tout le système ; connectez-vous en simple utilisateur pour\n"
-"ne changer que la langue de cet utilisateur."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrivalinux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Choisissez le disque dur à effacer pour installer votre partition\n"
-"GNU/Linux. Soyez prudent, toute l'information stockée sur le disque sera\n"
-"détruite."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:186
+#, c-format
msgid ""
"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
"information on how to set up a new printer. The interface presented in our\n"
"manual is similar to the one used during installation."
msgstr ""
-"« %s » : en cliquant sur « %s », l'outil de configuration d'impression sera\n"
+"« %s » : en cliquant sur « %s », l'outil de configuration d'impression sera\n"
"démarré. Consultez le chapitre correspondant du « Guide de démarrage » pour\n"
"plus de renseignements. L'interface qui y est documentée est similaire à\n"
"celle rencontrée lors de l'installation."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:192
+#, c-format
msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"Options\n"
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
"\n"
-" Vous pourrez également choisir ici de démarrer l'interface graphique au\n"
-"lancement de la machine. Il est préférable de choisir « %s » si vous êtes\n"
-"en train d'installer un serveur, ou si vous n'avez pas réussi à configurer\n"
-"l'écran correctement."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
"\n"
-"If you don't know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandrivalinux\n"
-"Control Center.\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
msgstr ""
-"À cette étape, DrakX vous permettra de déterminer le niveau de sécurité\n"
-"requis par votre système. Il se détermine en fonction de l'exposition du\n"
-"système à d'autres utilisateurs (s'il est connecté directement sur\n"
-"Internet, par exemple) et selon le niveau de sensibilité de l'information\n"
-"contenue dans le système. Sachez toutefois que plus la sécurité d'un\n"
-"système est élevée, plus il est complexe à utiliser.\n"
+"Vous pouvez maintenant choisir les services disponibles au démarrage de\n"
+"votre système.\n"
"\n"
-"Si vous ne savez pas quel niveau choisir, gardez la sélection par défaut.\n"
-"Vous pourrez le modifier ultérieurement avec l'outil draksec, qui se trouve\n"
-"dans le Mandrivalinux Control Center\n"
+"Ici sont présentés tous les services disponibles avec l'installation en\n"
+"place. Faites une bonne vérification et enlevez tout ce qui n'est pas\n"
+"absolument nécessaire au démarrage du système.\n"
"\n"
-"Remplissez le champ « %s » avec l'adresse électronique de l'utilisateur qui\n"
-"sera responsable de la sécurité. Les messages de sécurité lui seront\n"
-"adressés."
+"Vous pouvez obtenir une courte explication des services en les\n"
+"sélectionnant spécifiquement. Cela dit, si vous n'êtes pas sûr de\n"
+"l'application d'un service, conservez les paramètres par défaut.\n"
+"\n"
+"!! À cette étape, soyez particulièrement attentif dans le cas d'un système\n"
+"destiné à agir comme serveur. Dans ce cas, vous voudrez probablement\n"
+"permettre exclusivement les services nécessaires. Souvenez-vous que\n"
+"certains services peuvent s'avérer dangereux s'il sont activés sur un\n"
+"serveur. En général, n'installez que les services dont vous avez absolument\n"
+"besoin. !!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:209
+#, c-format
msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
msgstr ""
-"Sélectionnez le bon port. Par exemple: l'équivalent du port « COM1 » sur\n"
-"Windows, se nomme « ttyS0 » sous GNU/Linux."
+"GNU/Linux manipule l'heure au format GMT (« Greenwich Mean Time ») et la\n"
+"convertit en temps local selon le fuseau horaire choisi. Il est néanmoins\n"
+"possible de désactiver cela en désélectionnant « %s » de façon à ce que\n"
+"GNU/Linux sache que l'horloge matérielle est la même que celle du système.\n"
+"Cela est particulièrement utile si la machine accueille un autre système\n"
+"d'exploitation.\n"
+"\n"
+"La « %s » permet de régler l'heure automatiquement en se connectant à un\n"
+"serveur de temps sur Internet. Dans la liste qui est alors présentée,\n"
+"choisissez un serveur géographiquement proche de vous. Vous devez bien\n"
+"entendu avoir une connexion Internet pour que cela fonctionne. Cela\n"
+"installera en fait sur votre machine un serveur de temps local qui pourra,\n"
+"en option, être lui-même utilisé par d'autres machines de votre réseau\n"
+"local."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Synchronisation automatique de l'horloge"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:223
+#, c-format
msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"isn't in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
+"Graphic Card\n"
"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card isn't the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it isn't\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Carte graphique\n"
"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
+" Le programme d'installation détecte et configure automatiquement la\n"
+"carte graphique présente sur votre machine. Si ce n'est pas le cas, vous\n"
+"pouvez choisir dans cette liste la carte que vous utilisez effectivement.\n"
"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that doesn't suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
+" Dans le cas où différents serveurs seraient disponibles pour votre\n"
+"carte, avec ou sans accélération 3D, il vous est alors proposé de choisir\n"
+"le serveur qui vous conviendra le mieux."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandrivalinux Control Center after the installation has finished to benefit\n"
-"from full in-line help.\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
+"Graphic Card\n"
"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandrivalinux Control Center.\n"
"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-"On vous présente ici diverses informations sur la configuration actuelle.\n"
-"Selon le matériel installé, certaines entrées seront présentes et d'autres\n"
-"pas. Chaque paramètre est constitué du nom du matériel installé, suivi d'un\n"
-"cours résumé de la configuration actuelle. Cliquez sur le bouton « %s »\n"
-"correspondant pour effectuer un changement.\n"
"\n"
-" * « %s » : vérifiez la configuration choisie pour le clavier.\n"
+"Monitor\n"
"\n"
-" * « %s » : vérifiez la sélection du pays. Si vous ne vous trouvez pas dans\n"
-"ce pays, cliquez sur le bouton « %s » et choisissez le bon. Si votre pays\n"
-"ne se trouve pas dans la première liste, cliquez sur « %s » pour avoir la\n"
-"liste complète.\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
"\n"
-" * « %s »: DrakX, par défaut, configure le fuseau horaire selon le pays\n"
-"dans lequel vous vous trouvez. Cliquez sur le bouton « %s » si ce n'est pas\n"
-"le bon.\n"
"\n"
-" * « %s »: pour vérifier la configuration actuelle de la souris. Cliquez\n"
-"sur le bouton pour modifier les options.\n"
"\n"
-" * « %s » : en cliquant sur « %s », l'outil de configuration d'impression\n"
-"sera démarré. Consultez le chapitre correspondant du « Guide de démarrage »\n"
-"pour plus de renseignements. L'interface qui y est documentée est similaire\n"
-"à celle rencontrée lors de l'installation.\n"
+"Resolution\n"
"\n"
-" * « %s » : si une carte son a été détectée, elle apparaîtra ici. Si vous\n"
-"remarquez que la carte configurée n'est pas celle qui se trouve\n"
-"effectivement sur votre système, vous pouvez cliquer sur le bouton pour\n"
-"choisir un pilote différent .\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
"\n"
-" * « %s » : si une carte d'entrée/sortie vidéo (carte TV) a été détectée,\n"
-"elle apparaîtra ici. Si vous avez une carte TV et qu'elle n'a pas été\n"
-"détectée, cliquez sur ce bouton pour la configurer à la main.\n"
"\n"
-" * « %s » : si une carte RNIS (ISDN) est détectée, elle apparaîtra ici.\n"
-"Vous pouvez cliquer sur le bouton « %s » pour en modifier les paramètres si\n"
-"vous estimez que la configuration actuelle est inexacte.\n"
"\n"
-" * « %s » : par défaut, DrakX configure votre interface graphique avec une\n"
-"résolution de « 800x600 » ou « 1024x768 ». Si cela ne vous convient pas,\n"
-"cliquez sur « %s » pour changer la configuration de votre interface\n"
-"graphique.\n"
+"Test\n"
"\n"
-" * « %s » : si vous souhaitez configurer votre accès Internet ou réseau\n"
-"local dès maintenant. Lisez la documentation fournie ou éxécutez\n"
-"Mandrivalinux Control Center après l'installation pour avoir droit à une\n"
-"aide complète en ligne.\n"
+" Depending on your hardware, this entry might not appear.\n"
"\n"
-" * « %s »: permet de configurer les adresses proxy HTTP et FTP si la\n"
-"machine que vous installez se trouve derrière un serveur proxy.\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
"\n"
-" * « %s » : il vous est ici proposé de redéfinir votre niveau de sécurité\n"
-"tel que défini dans une étape précédente ().\n"
"\n"
-" * « %s » : si vous avez l'intention de connecter votre ordinateur à\n"
-"Internet, c'est une bonne idée de le protéger des intrusions grâce à un\n"
-"pare-feu. Consultez la section correspondante du « Guide de démarrage »\n"
-"pour plus de renseignements.\n"
"\n"
-" * « %s » : si vous souhaitez changer la configuration par défaut de votre\n"
-"chargeur de démarrage. À réserver aux utilisateurs expérimentés. Lisez la\n"
-"documentation fournie ou l'aide en ligne sur la configuration de chargeur\n"
-"de démarrage présente dans Mandrivalinux Control Center.\n"
+"Options\n"
"\n"
-" * « %s » : vous pourrez ici contrôler finement les services disponibles\n"
-"sur votre machine. Si vous envisagez de monter un serveur, c'est une bonne\n"
-"idée de vérifier cette configuration."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
msgstr ""
-"Dans le cas où différents serveurs seraient disponibles pour votre carte,\n"
-"avec ou sans accélération 3D, il vous est alors proposé de choisir le\n"
-"serveur qui vous conviendra le mieux."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
+"X (pour le système X Window) est le coeur de votre interface graphique sous\n"
+"GNU/Linux. Tous les environnements graphiques (KDE, GNOME, WindowMaker\n"
+"etc.) présents sur Mandriva Linux dépendent de X.\n"
"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
+"Il vous sera présenté une liste de divers paramètres à changer pour obtenir\n"
+"un affichage optimal :\n"
"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
+"Carte graphique\n"
"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
+" Le programme d'installation détecte et configure automatiquement la\n"
+"carte graphique présente sur votre machine. Si ce n'est pas le cas, vous\n"
+"pouvez choisir dans cette liste la carte que vous utilisez effectivement.\n"
"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
+" Dans le cas où différents serveurs seraient disponibles pour votre\n"
+"carte, avec ou sans accélération 3D, il vous est alors proposé de choisir\n"
+"le serveur qui vous conviendra le mieux.\n"
"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-"DrakX détecte généralement le nombre de boutons de votre souris. Sinon, il\n"
-"prend pour acquis que vous avez une souris à deux boutons et configurera\n"
-"l'émulation du troisième bouton. Le troisième bouton correspond aux clics\n"
-"simultanés du bouton gauche et du bouton droit de la souris. De plus, DrakX\n"
-"saura automatiquement si vous avez une souris PS/2, série ou USB.\n"
"\n"
-"Si vous avez une souris à trois boutons sans molette, vous pouvez choisir\n"
-"une souris « %s ». DrakX configurera alors la souris de manière à simuler\n"
-"une molette : pour ce faire, cliquez sur le bouton du milieu et faites\n"
-"bouger votre souris de haut en bas.\n"
"\n"
-"Si vous désirez installer une souris différente, veuillez la sélectionner à\n"
-"partir de la liste qui vous est proposée.\n"
+"Moniteur\n"
"\n"
-"Vous pouvez sélectionner une souris « %s » qu'elle soit PS/2 ou USB pour\n"
-"choisir un type de souris générique qui fonctionne avec presque tout.\n"
+" Le programme d'installation détecte et configure automatiquement les\n"
+"moniteurs connectés à votre unité centrale. Si ce n'est pas le cas, vous\n"
+"pouvez choisir dans cette liste le moniteur que vous utilisez\n"
+"effectivement.\n"
"\n"
-"Si vous sélectionnez une souris différente de celle choisie par défaut,\n"
-"DrakX vous présentera un écran de test. Utilisez les boutons et la molette\n"
-"pour vous assurer que tout fonctionne correctement. Si votre souris ne\n"
-"fonctionne pas normalement, appuyez sur la barre d'espace ou la touche\n"
-"[Entrée] pour annuler le test et retourner à la liste de choix de la\n"
-"souris.\n"
"\n"
-"Parfois, les souris à molette ne sont pas détectées automatiquement, vous\n"
-"devrez alors sélectionner manuellement une souris dans la liste. Assurez\n"
-"vous de choisir celle qui correspond au bon port de connexion. Après avoir\n"
-"sélectionné la souris et pressé le bouton « %s », une image de souris\n"
-"apparaît. Vous devez alors faire tourner la molette afin de l'activer\n"
-"correctement. Après activation, vous verrez la molette de l'écran bouger.\n"
-"Testez alors que tous les mouvements et boutons fonctionnent correctement."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandrivalinux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-"Avant d'aller plus loin, il est fortement recommandé de lire attentivement\n"
-"les termes et conditions d'utilisation de la licence. Celle-ci régit\n"
-"l'ensemble de la distribution Mandrivalinux. Si vous en acceptez tous les\n"
-"termes, cochez la case « %s », sinon, cliquez sur le bouton « %s » pour\n"
-"redémarrer votre ordinateur."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"Graphic Card\n"
"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
+"Résolution\n"
"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-"Carte graphique\n"
+" Vous pouvez choisir ici la résolution et nombre de couleurs parmi celles\n"
+"disponibles pour votre matériel. Choisissez la configuration optimale pour\n"
+"votre utilisation (vous pourrez néanmoins modifier cela après\n"
+"l'installation). Un échantillon de la configuration choisie apparaît dans\n"
+"le dessin du moniteur.\n"
"\n"
-" Le programme d'installation détecte et configure automatiquement la\n"
-"carte graphique présente sur votre machine. Si ce n'est pas le cas, vous\n"
-"pouvez choisir dans cette liste la carte que vous utilisez effectivement.\n"
"\n"
-" Dans le cas où différents serveurs seraient disponibles pour votre\n"
-"carte, avec ou sans accélération 3D, il vous est alors proposé de choisir\n"
-"le serveur qui vous conviendra le mieux."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which aren't needed at boot\n"
-"time.\n"
+"Test\n"
"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
+" Selon votre matériel cette option peut ne pas apparaître.\n"
"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably don't want to start any services which you don't need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-"Vous pouvez maintenant choisir les services disponibles au démarrage de\n"
-"votre système.\n"
+" le système va ici essayer d'ouvrir un écran graphique à la résolution\n"
+"choisie. Si vous pouvez voir le message pendant le test, et répondez\n"
+"« %s », alors DrakX passera à l'étape suivante. Si vous ne pouvez pas voir\n"
+"de message, cela signifie que vos paramètres sont incompatibles, et le test\n"
+"se terminera automatiquement après 12 secondes. Changez la configuration\n"
+"jusqu'à obtenir un affichage correct lors du test.\n"
"\n"
-"Ici sont présentés tous les services disponibles avec l'installation en\n"
-"place. Faites une bonne vérification et enlevez tout ce qui n'est pas\n"
-"absolument nécessaire au démarrage du système.\n"
"\n"
-"Vous pouvez obtenir une courte explication des services en les\n"
-"sélectionnant spécifiquement. Cela dit, si vous n'êtes pas sûr de\n"
-"l'application d'un service, conservez les paramètres par défaut.\n"
"\n"
-"!! À cette étape, soyez particulièrement attentif dans le cas d'un système\n"
-"destiné à agir comme serveur. Dans ce cas, vous voudrez probablement\n"
-"permettre exclusivement les services nécessaires. Souvenez-vous que\n"
-"certains services peuvent s'avérer dangereux s'il sont activés sur un\n"
-"serveur. En général, n'installez que les services dont vous avez absolument\n"
-"besoin. !!"
+"Options\n"
+"\n"
+" Vous pourrez également choisir ici de démarrer l'interface graphique au\n"
+"lancement de la machine. Il est préférable de choisir « %s » si vous êtes\n"
+"en train d'installer un serveur, ou si vous n'avez pas réussi à configurer\n"
+"l'écran correctement."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:291
+#, c-format
msgid ""
"Monitor\n"
"\n"
@@ -1381,203 +732,202 @@ msgstr ""
"effectivement."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:298
+#, c-format
msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
+"Resolution\n"
"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
msgstr ""
-"GNU/Linux manipule l'heure au format GMT (« Greenwich Mean Time ») et la\n"
-"convertit en temps local selon le fuseau horaire choisi. Il est néanmoins\n"
-"possible de désactiver cela en désélectionnant « %s » de façon à ce que\n"
-"GNU/Linux sache que l'horloge matérielle est la même que celle du système.\n"
-"Cela est particulièrement utile si la machine accueille un autre système\n"
-"d'exploitation.\n"
+"Résolution\n"
"\n"
-"La « %s » permet de régler l'heure automatiquement en se connectant à un\n"
-"serveur de temps sur Internet. Dans la liste qui est alors présentée,\n"
-"choisissez un serveur géographiquement proche de vous. Vous devez bien\n"
-"entendu avoir une connexion Internet pour que cela fonctionne. Cela\n"
-"installera en fait sur votre machine un serveur de temps local qui pourra,\n"
-"en option, être lui-même utilisé par d'autres machines de votre réseau\n"
-"local."
+" Vous pouvez choisir ici la résolution et nombre de couleurs parmi celles\n"
+"disponibles pour votre matériel. Choisissez la configuration optimale pour\n"
+"votre utilisation (vous pourrez néanmoins modifier cela après\n"
+"l'installation). Un échantillon de la configuration choisie apparaît dans\n"
+"le dessin du moniteur."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:306
+#, c-format
msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
msgstr ""
-"La liste présentée plus haut identifie les partitions GNU/Linux détectées\n"
-"sur votre système. Vous pouvez accepter les choix proposés par l'assistant,\n"
-"qui s'avèrent bon dans la grande majorité des cas. Si vous faites un\n"
-"changement, vous devez au moins avoir une partition root (\"/\"). root\n"
-"partition (« / »). Prenez garde de vous réserver suffisamment d'espace pour\n"
-"installer toutes les applications qui vous intéressent. Vous devrez\n"
-"également créer une partition «  /home ». Ceci s'avère exclusivement\n"
-"possible lorsque vous avez déjà au moins une partition GNU/Linux de\n"
-"configurée.\n"
-"\n"
-"Chaque partition est listée comme suit: \"Nom\", \"Capacité\".\n"
+"Dans le cas où différents serveurs seraient disponibles pour votre carte,\n"
+"avec ou sans accélération 3D, il vous est alors proposé de choisir le\n"
+"serveur qui vous conviendra le mieux."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
"\n"
-"Le \"Nom\" est structuré ainsi : \"type de disque dur\", \"numéro du disque\n"
-"dur\", \"numéro de partition\". Par exemple, « hda1 ».\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Options\n"
"\n"
-"Le \"Type de disque dur\" correspond à hd si votre disque est IDE. Pour un\n"
-"disque SCSI, vous lirez \"sd\".\n"
+" Vous pourrez également choisir ici de démarrer l'interface graphique au\n"
+"lancement de la machine. Il est préférable de choisir « %s » si vous êtes\n"
+"en train d'installer un serveur, ou si vous n'avez pas réussi à configurer\n"
+"l'écran correctement."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
"\n"
-"Le numéro du disque est toujours listé après le \"hd\" ou \"fd\". Pour les\n"
-"disques IDE :\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
"\n"
-" * \"a\" signifie \"disque primaire maître sur le premier contrôleur IDE\";\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
"\n"
-" * \"b\" signifie le \"disque primaire esclave sur le premier contrôleur\n"
-"IDE\";\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
"\n"
-" * \"c\" indique le \"disque primaire maître sur le second contrôleur\n"
-"IDE\";\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
"\n"
-" * \"d\" signifie le \"disque primaire esclave sur le second contrôleur\n"
-"IDE\";\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
"\n"
-"Avec les disques SCSI, le \"a\" indique le plus petit SCSI ID, et « b » le\n"
-"« deuxième plus petit ID », etc."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country isn't in the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-"« %s » : vérifiez la sélection du pays. Si vous ne vous trouvez pas dans ce\n"
-"pays, cliquez sur le bouton « %s » et choisissez le bon. Si votre pays ne\n"
-"se trouve pas dans la première liste, cliquez sur « %s » pour avoir la\n"
-"liste complète."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you don't have to reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"won't be able to recover it.\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrivalinux operating system installation.\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
msgstr ""
-"Si vous choisissez de réutiliser des partitions GNU/Linux existantes, vous\n"
-"pouvez en reformater quelques unes et effacer les données présentes. Vous\n"
-"devrez alors les sélectionner.\n"
+"Cette étape vous permet de déterminer précisément l'emplacement de votre\n"
+"installation de Mandriva Linux. Si votre disque est vide ou utilisé par un\n"
+"autre système d'exploitation, vous devrez repartitionner votre disque.\n"
+"Partitionner un disque désigne l'opération consistant à le diviser\n"
+"précisément afin de créer un espace pour votre installation.\n"
"\n"
-"Sachez qu'il n'est pas nécessaire de reformater toutes les partitions\n"
-"existantes. Vous devez formater les partitions contenant le système\n"
-"d'exploitation (comme « / », « /usr » ou « /var », mais il n'est pas\n"
-"nécessaire de formater les partitions de données, notamment « /home »...\n"
+"Comme les effets du partitionnement sont irréversibles (l'ensemble du\n"
+"disque est effacé), le partitionnement est généralement intimidant et\n"
+"stressant pour un utilisateur inexpérimenté. Heureusement, un assistant a\n"
+"été prévu à cet effet. Avant de commencer, lisez le reste de ce document et\n"
+"surtout, prenez votre temps.\n"
"\n"
-"Soyez prudent. Une fois que les partitions sélectionnées seront\n"
-"reformatées, il sera impossible de récupérer des données.\n"
+"Selon la configuration de votre disque, plusieurs options sont "
+"disponibles :\n"
"\n"
-"Cliquez sur « %s » lorsque vous êtes prêt à formater les partitions.\n"
"\n"
-"Cliquez sur « %s » pour choisir une autre partition où installer votre\n"
-"nouveau système d'exploitation Mandrivalinux.\n"
+" * « %s » : cette option tentera simplement de partitionner automatiquement\n"
+"l'espace inutilisé sur votre disque. Il n'y aura pas d'autre question.\n"
"\n"
-"Cliquer sur « %s » si vous désirez sélectionner des partitions pour une\n"
-"vérification des secteurs défectueux (« Bad Blocks »)."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
+" * « %s » : l'assistant a détecté une ou plusieurs partitions Linux\n"
+"existant sur votre disque. Si vous voulez les utiliser, choisissez cette\n"
+"option. Il vous sera alors demandé de choisir les points de montage\n"
+"associés à chacune des partitions. Les anciens points de montage sont\n"
+"sélectionnés par défaut, et vous devriez généralement les garder.\n"
"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard don't match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
+" * « %s » : si Microsoft Windows est installé sur votre disque et en prend\n"
+"toute la place vous devez faire de la place pour votre installation\n"
+"GNU/Linux. Pour ce faire, vous pouvez tout effacer (voir « effacer tout le\n"
+"disque ») ou vous pouvez redimensionner la partition Windows FAT ou NTFS.\n"
+"Le redimensionnement peut être effectué sans pertes de données, à condition\n"
+"que vous ayez préalablement défragmenté la partition Windows. Une\n"
+"sauvegarde de vos données ne fera pas de mal non plus. Cette solution est\n"
+"recommandée pour faire cohabiter Mandriva Linux et Microsoft Windows sur le\n"
+"même ordinateur.\n"
"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+" Avant de choisir cette option, il faut comprendre qu'après cette\n"
+"procédure l'espace disponible pour Windows sera réduit. Vous aurez moins\n"
+"d'espace pour installer des logiciels ou sauvegarder de l'information avec\n"
+"Windows.\n"
"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-"Selon la langue principale que vous avez choisie précédemment (), DrakX\n"
-"sélectionnera le clavier approprié. Vérifiez que cela correspond\n"
-"effectivement à votre configuration de clavier ou choisissez une autre\n"
-"configuration dans la liste.\n"
+" * « %s » : si vous voulez effacer toutes les données et les applications\n"
+"installées sur votre système et les remplacer par votre nouveau système\n"
+"Mandriva Linux, choisissez cette option. Soyez prudent, car ce choix est\n"
+"irréversible et permanent. Il vous sera impossible de retrouver vos données\n"
+"effacées.\n"
"\n"
-"Cela dit, il est possible que vous ayez un clavier ne correspondant pas\n"
-"exactement à votre langue d'utilisation. Par exemple, si vous habitez le\n"
-"Québec et parlez le français et l'anglais, vous pouvez vous trouver dans la\n"
-"situation où votre langue et votre configuration de clavier ne sont pas les\n"
-"mêmes. Dans ces cas, cette étape vous permet de sélectionner un autre\n"
-"clavier à partir de la liste.\n"
+" !! En choisissant cette option, l'ensemble du contenu de votre disque\n"
+"sera détruit. !!\n"
"\n"
-"Cliquez sur « %s » pour voir toutes les options proposées.\n"
+" * « %s » : ce choix apparaît lorsque l'intégralité du disque dur est "
+"occupé\n"
+"par Microsoft Windows. Choisir cette option effacera tout simplement ce que\n"
+"contient le disque et recommencera à zéro. Toutes les données et les\n"
+"programmes présents sur le disque seront effacés.\n"
"\n"
-"Si vous choisissez un clavier basé sur un alphabet non-latin, il vous sera\n"
-"demandé de choisir la combinaison de touches permettant d'alterner entre\n"
-"ceux-ci au prochain écran."
+" !! En choisissant cette option, l'ensemble de votre disque sera effacé\n"
+"!!\n"
+"\n"
+" * « %s » : permet de partitionner manuellement votre disque. Soyez\n"
+"prudent, car bien que plus puissante, cette option est dangereuse. Vous\n"
+"pouvez facilement perdre l'ensemble du contenu d'un disque. Donc, ne\n"
+"choisissez pas cette option si vous ne savez pas exactement ce que vous\n"
+"devez faire. Pour en savoir plus sur DiskDrake, référez-vous à « Gérer ses\n"
+"partitions » du « Guide de démarrage »."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Utiliser une partition existante"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Effacer tout le disque"
+
+#: ../help.pm:380
+#, c-format
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Don't forget\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
"to remove the installation media (CD-ROM or floppy). The first thing you\n"
"should see after your computer has finished doing its hardware tests is the\n"
"boot-loader menu, giving you the choice of which operating system to start.\n"
@@ -1610,21 +960,21 @@ msgid ""
"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
"/dev/fd0\"."
msgstr ""
-"Votre installation de Mandrivalinux est maintenant terminée et votre\n"
-"système est prêt à être utilisé. Cliquez sur « %s » pour redémarrer votre\n"
-"système. N'oubliez pas de retirer la source d'installation(CD-ROM ou\n"
-"disquette). La première chose que vous verrez alors après que l'ordinateur\n"
-"ait fait ses propres tests matériels est le menu de démarrage, permettant\n"
-"de démarrer tous les systèmes présents sur votre machine.\n"
+"Votre installation de Mandriva Linux est maintenant terminée et votre\n"
+"système est prêt à être utilisé. Cliquez sur « %s » pour le redémarrer.\n"
+"N'oubliez pas de retirer la source d'installation(CD-ROM ou disquette).\n"
+"La première chose que vous verrez alors, après que l'ordinateur ait \n"
+"fait ses propres tests matériels, est le menu de démarrage permettant\n"
+"de choisir quel système lancer parmi ceux présents sur votre machine.\n"
"\n"
-"Le bouton « %s » permet deux autres options :\n"
+"Le bouton « %s » permet deux autres options :\n"
"\n"
-" * « %s »: Pour créer une disquette d'installation qui permettra de\n"
+" * « %s » : Pour créer une disquette d'installation qui permettra de\n"
"reproduire l'installation que vous venez de réaliser sans l'aide d'un\n"
"administrateur.\n"
"\n"
" Notez que les deux options suivantes apparaissent après avoir cliqué sur\n"
-"le bouton :\n"
+"le bouton :\n"
"\n"
" * « %s ». C'est une installation partiellement automatique où il est\n"
"possible de personnaliser le partitionnement du disque (exclusivement).\n"
@@ -1638,17 +988,133 @@ msgstr ""
" * « %s » (*) sauvegarde la sélection des paquetages installés. Puis,\n"
"lorsque vous ferez une autre installation, insérez la disquette dans le\n"
"lecteur et accédez au menu d'aide en tapant [F1], entrez la commande\n"
-"suivante : « linux defcfg=\"floppy\" »et appuyez sur la touche [Entrée].\n"
+"suivante : « linux defcfg=\"floppy\" »et appuyez sur la touche [Entrée].\n"
"\n"
"(*) Vous avez besoin d'une disquette formatée avec FAT (pour la créer sous\n"
"Linux, tapez « mformat a: » ou « fdformat /dev/fd0 » suivi de « mkfs.vfat\n"
"/dev/fd0 »)"
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Créer une disquette d'installation automatique"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Si vous choisissez de réutiliser des partitions GNU/Linux existantes, vous\n"
+"pouvez en reformater quelques unes et effacer les données présentes. Vous\n"
+"devrez alors les sélectionner.\n"
+"\n"
+"Sachez qu'il n'est pas nécessaire de reformater toutes les partitions\n"
+"existantes. Vous devez formater les partitions contenant le système\n"
+"d'exploitation (comme « / », « /usr » ou « /var », mais il n'est pas\n"
+"nécessaire de formater les partitions de données, notamment « /home »...\n"
+"\n"
+"Soyez prudent. Une fois que les partitions sélectionnées seront\n"
+"reformatées, il sera impossible de récupérer les données.\n"
+"\n"
+"Cliquez sur « %s » lorsque vous êtes prêt à formater les partitions.\n"
+"\n"
+"Cliquez sur « %s » pour choisir une autre partition où installer votre\n"
+"nouveau système d'exploitation Mandriva Linux.\n"
+"\n"
+"Cliquez sur « %s » si vous désirez sélectionner des partitions pour une\n"
+"vérification des secteurs défectueux (« Bad Blocks »)."
+
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Au moment où vous installez Mandriva Linux, il est possible que certains\n"
+"paquetages aient été mis à jour depuis la sortie du produit. Des bogues ont\n"
+"pu être corrigés, et des problèmes de sécurité résolus. Pour vous permettre\n"
+"de bénéficier de ces mises à jour, il vous est maintenant proposé de les\n"
+"télécharger depuis Internet. Choisissez « %s » si vous avez une connexion\n"
+"Internet, ou « %s » si vous préférez installer les mises à jour plus tard.\n"
+"\n"
+"En choisissant « %s », la liste des sites depuis lesquels les mises à jour\n"
+"peuvent être téléchargées est affichée. Choisissez le site le plus proche\n"
+"de chez vous. Puis un arbre de choix des paquetages apparaît : vérifiez la\n"
+"sélection, puis cliquez sur « %s » pour télécharger et installer les mises\n"
+"à jour sélectionnées, ou « %s » pour abandonner."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"À cette étape, DrakX vous permettra de déterminer le niveau de sécurité\n"
+"requis par votre système. Il se détermine en fonction de l'exposition du\n"
+"système à d'autres utilisateurs (s'il est connecté directement sur\n"
+"Internet, par exemple) et selon le niveau de sensibilité de l'information\n"
+"contenue dans le système. Sachez toutefois que plus la sécurité d'un\n"
+"système est élevée, plus il est complexe à utiliser.\n"
+"\n"
+"Si vous ne savez pas quel niveau choisir, gardez la sélection par défaut.\n"
+"Vous pourrez le modifier ultérieurement avec l'outil draksec, qui se trouve\n"
+"dans le Centre de Contrôle Mandriva Linux\n"
+"\n"
+"Remplissez le champ « %s » avec l'adresse électronique de l'utilisateur qui\n"
+"sera responsable de la sécurité. Les messages de sécurité lui seront\n"
+"adressés."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Administrateur sécurité"
+
+#: ../help.pm:464
+#, c-format
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrivalinux system. If partitions have already been\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
"defined, either from a previous installation of GNU/Linux or by another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
@@ -1674,7 +1140,7 @@ msgid ""
"floppy disk.\n"
"\n"
" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it doesn't always\n"
+"using this option. Please be careful and remember that it does not always\n"
"work.\n"
"\n"
" * \"%s\": discards all changes and reloads the partition table that was\n"
@@ -1719,7 +1185,8 @@ msgid ""
"emergency boot situations."
msgstr ""
"À cette étape, vous devez sélectionner quelle partition sera utilisée pour\n"
-"votre système Mandrivalinux. Si votre disque est déjà partitionné, soit par\n"
+"votre système Mandriva Linux. Si votre disque est déjà partitionné, soit "
+"par\n"
"une autre installation GNU/Linux ou par un autre outil de partitionnement,\n"
"vous pourrez les utiliser. Sinon, les partitions devront être créées.\n"
"\n"
@@ -1729,52 +1196,54 @@ msgstr ""
"SCSI, et ainsi de suite.\n"
"\n"
"Pour partitionner le disque dur sélectionné, vous pouvez utiliser les\n"
-"options suivantes :\n"
+"options suivantes :\n"
"\n"
-" * « %s »: cette option effacera toutes les partitions sur le disque\n"
+" * « %s » : cette option effacera toutes les partitions sur le disque\n"
"sélectionné;\n"
"\n"
-" * « %s »: cette option permet de créer un système de ficher ext3 et\n"
+" * « %s » : cette option permet de créer un système de ficher ext3 et\n"
"« Swap » dans l'espace libre sur votre disque;\n"
"\n"
-"« %s »: permet d'accéder à des fonctionnalités supplémentaires :\n"
+"« %s » : permet d'accéder à des fonctionnalités supplémentaires :\n"
"\n"
-" * « %s »: sauvegarde la table de partition sur un disque amovible. Cette\n"
+" * « %s » : sauvegarde la table de partition sur un disque amovible. Cette\n"
"option s'avère particulièrement pratique pour réparer des partitions\n"
"endommagées. Il est fortement recommandé de procéder ainsi;\n"
"\n"
-" * « %s »: permet de restaurer une table de partition sauvegardée au\n"
+" * « %s » : permet de restaurer une table de partition sauvegardée au\n"
"préalable sur une disquette.\n"
"\n"
-" * « %s »: si votre table de partition est endommagée, vous pouvez essayer\n"
+" * « %s » : si votre table de partition est endommagée, vous pouvez essayer\n"
"de la récupérer avec ces options. Soyez prudent et sachez que cela ne\n"
"fonctionne pas à coup sûr.\n"
"\n"
-" * « %s »: écarte les changements et charge la table de partition initiale;\n"
+" * « %s » : écarte les changements et charge la table de partition "
+"initiale;\n"
"\n"
-" * « %s »: en cochant cette case, les CD-ROM et disquettes (et autres\n"
+" * « %s » : en cochant cette case, les CD-ROM et disquettes (et autres\n"
"supports) seront chargés automatiquement.\n"
"\n"
-" * « %s »: utilisez cette option si vous souhaitez utiliser un assistant\n"
+" * « %s » : utilisez cette option si vous souhaitez utiliser un assistant\n"
"pour partitionner votre disque. Cette option est particulièrement\n"
"recommandée si vous faites vos premiers pas avec les partitions.\n"
"\n"
-" * « %s »: utilisez cette option pour annuler vos changements;\n"
+" * « %s » : utilisez cette option pour annuler vos changements;\n"
"\n"
-" * « %s »: permet des actions supplémentaires sur les partitions (type,\n"
+" * « %s » : permet des actions supplémentaires sur les partitions (type,\n"
"options, format) et donne plus d'informations;\n"
"\n"
-" * « %s »: une fois le partitionnement terminé, ce bouton vous permettra de\n"
+" * « %s » : une fois le partitionnement terminé, ce bouton vous permettra "
+"de\n"
"sauvegarder vos changements sur le disque.\n"
"\n"
"Lorsque vous définissez la taille d'une partition, vous pouvez choisir\n"
"précisément la taille de celle-ci en utilisant les Flèches de votre\n"
"clavier.\n"
"\n"
-"Note: vous pouvez atteindre toutes les options en utilisant le clavier.\n"
+"Note : vous pouvez atteindre toutes les options en utilisant le clavier.\n"
"Naviguer avec les flèches et [Tab].\n"
"\n"
-"Une fois la partition sélectionnée, vous pouvez utiliser :\n"
+"Une fois la partition sélectionnée, vous pouvez utiliser :\n"
"\n"
" * Ctrl-c pour créer un nouvelle partition (lorsqu'une partition vide est\n"
"sélectionnée;\n"
@@ -1792,3 +1261,806 @@ msgstr ""
"grande, disons 50Mo, vous trouverez utile d'y placer des noyaux et des\n"
"images « ramdisk » accessibles en cas de problème."
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Auto-montage des périphériques amovibles"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Basculer entre les modes expert et normal"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Plus d'une partition Windows a été détectée sur votre disque dur. Veuillez\n"
+"choisir celle que vous choisissez pour votre nouvelle installation de\n"
+"Mandriva Linux.\n"
+"\n"
+"Chaque partition est identifiée comme suit : « Nom Linux », « Nom "
+"Windows »,\n"
+"« Capacité ».\n"
+"\n"
+"Le « Nom » est structuré ainsi : « type de disque dur », « numéro du disque\n"
+"dur », « numéro de partition ». Par exemple, « hda1 ».\n"
+"\n"
+"Le « Type de disque dur » correspond à « hd » si votre disque est IDE. Pour "
+"un\n"
+"disque SCSI, vous lirez « sd ».\n"
+"\n"
+"Le numéro du disque est toujours listé après le « hd » ou « fd ». Pour les\n"
+"disques IDE :\n"
+"\n"
+" * « a » signifie « disque primaire maître sur le premier contrôleur IDE »;\n"
+"\n"
+" * « b » signifie « disque primaire esclave sur le premier contrôleur\n"
+"IDE »;\n"
+"\n"
+" * « c » indique « disque primaire maître sur le second contrôleur IDE »;\n"
+"\n"
+" * « d » signifie « disque primaire esclave sur le second contrôleur IDE »;\n"
+"\n"
+"Avec les disques SCSI, le « a » indique le plus petit SCSI ID, et ainsi de\n"
+"suite.\n"
+"\n"
+"« Nom Windows » c'est la lettre assignée à votre disque, (le premier\n"
+"disque ou partition « C: »)"
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"« %s » : vérifiez la sélection du pays. Si vous ne vous trouvez pas dans ce\n"
+"pays, cliquez sur le bouton « %s » et choisissez le bon. Si votre pays ne\n"
+"se trouve pas dans la première liste, cliquez sur « %s » pour avoir la\n"
+"liste complète."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Cette étape ne s'affichera que si une partition GNU/Linux a été détectée\n"
+"sur votre disque dur.\n"
+"\n"
+"DrakX doit maintenant savoir si vous désirez lancer une « Installation » ou "
+"une\n"
+"« Mise à jour » d'un système Mandriva Linux déjà installé :\n"
+"\n"
+" * « %s » : remplace l'ancien système. Cependant, selon votre table de\n"
+"partition, vous pourrez éviter l'effacement de vos données existantes\n"
+"(notamment les répertoires « home »). Si vous souhaitez changer le\n"
+"partitionnement de vos disques durs, ou changer votre système de fichiers,\n"
+"vous devriez utiliser cette option.\n"
+"\n"
+" * « %s » : cette classe d'installation vous permet de mettre à jour\n"
+"seulement les paquetages qui composent votre système Mandriva Linux. Elle\n"
+"conserve les partitions existantes, ainsi que la configuration des\n"
+"utilisateurs. La plupart des autres étapes d'une installation classique\n"
+"sont accessibles.\n"
+"\n"
+"La mise à jour devrait fonctionner correctement pour les systèmes\n"
+"Mandriva Linux à partir de la version « 8.1 ». Essayer de lancer une mise à\n"
+"jour sur les versions antérieures à « 8.1 » n'est pas recommandé."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Selon la langue principale que vous avez choisie précédemment (), DrakX\n"
+"sélectionnera le clavier approprié. Vérifiez que cela correspond\n"
+"effectivement à votre configuration de clavier ou choisissez une autre\n"
+"configuration dans la liste.\n"
+"\n"
+"Cela dit, il est possible que vous ayez un clavier ne correspondant pas\n"
+"exactement à votre langue d'utilisation. Par exemple, si vous habitez le\n"
+"Québec et parlez le français et l'anglais, vous pouvez vous trouver dans la\n"
+"situation où votre langue et votre configuration de clavier ne sont pas les\n"
+"mêmes. Dans ces cas, cette étape vous permet de sélectionner un autre\n"
+"clavier à partir de la liste.\n"
+"\n"
+"Cliquez sur « %s » pour voir toutes les options proposées.\n"
+"\n"
+"Si vous choisissez un clavier basé sur un alphabet non-latin, il vous sera\n"
+"demandé de choisir la combinaison de touches permettant d'alterner entre\n"
+"ceux-ci au prochain écran."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"La première étape consiste à choisir votre langue.\n"
+"\n"
+"Le choix de la langue sera appliqué au programme d'installation, à la\n"
+"documentation et au système en général. Commencez par choisir la région où\n"
+"vous vous situez, puis la langue que vous parlez.\n"
+"\n"
+"En cliquant sur « %s », le programme vous proposera également des langues\n"
+"complémentaires pouvant être installées sur votre poste de travail. En\n"
+"choisissant des langues supplémentaires, le programme vous installera toute\n"
+"la documentation et les applications nécessaires à l'utilisation de ces\n"
+"langues. Par exemple, si vous prévoyez d'accueillir des utilisateurs\n"
+"d'Espagne sur votre machine, choisissez le français comme langue principale\n"
+"dans l'arborescence, et « %s », dans la section avancée.\n"
+"\n"
+"À propos de l'encodage UTF-8 (unicode) : Unicode est un nouveau système\n"
+"d'encodage des caractères censé couvrir tous les langues existantes.\n"
+"Cependant son intégration dans GNU/Linux est encore imparfaite. Pour cette\n"
+"raison, Mandriva Linux l'utilisera ou non selon les critères suivants :\n"
+"\n"
+" * Si vous choisissez une langue avec un encodage ayant une longue histoire\n"
+"(langues associées à « latin1 », Russe, Japonais, Chinois, Coréen, Thaï,\n"
+"Grec, Turc, et la plupart des langues « iso-8859-2 »), l'encodage\n"
+"historique sera utilisé;\n"
+"\n"
+" * Les autres langues entraîneront l'utilisation d'unicode par défaut;\n"
+"\n"
+" * Si vous demandez l'installation de plus d'une langue, et que ces langues\n"
+"n'utilisent pas le même encodage, alors unicode sera utilisé pour tout le\n"
+"système;\n"
+"\n"
+" * Enfin, unicode peut aussi être utilisé quelque soit votre configuration\n"
+"des langues à utiliser, en sélectionnant l'option « %s ».\n"
+"\n"
+"Remarquez que vous n'êtes pas limité à une langue supplémentaire. Vous\n"
+"pouvez en choisir plusieurs, ou même les installer toutes en choisissant\n"
+"« %s ». Choisir le support pour une langue signifie ajouter les\n"
+"traductions, les polices, correcteurs orthographiques, etc.\n"
+"\n"
+"Pour passer d'une langue à l'autre, vous pouvez lancer l'utilitaire\n"
+"« /usr/sbin/localedrake » en tant que « root » pour changer la langue\n"
+"utilisée dans tout le système ; connectez-vous en simple utilisateur pour\n"
+"ne changer que la langue de cet utilisateur."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Espagnol"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"DrakX détecte généralement le nombre de boutons de votre souris. Sinon, il\n"
+"prend pour acquis que vous avez une souris à deux boutons et configurera\n"
+"l'émulation du troisième bouton. Le troisième bouton correspond aux clics\n"
+"simultanés du bouton gauche et du bouton droit de la souris. De plus, DrakX\n"
+"saura automatiquement si vous avez une souris PS/2, série ou USB.\n"
+"\n"
+"Si vous avez une souris à trois boutons sans molette, vous pouvez choisir\n"
+"une souris « %s ». DrakX configurera alors la souris de manière à simuler\n"
+"une molette : pour ce faire, cliquez sur le bouton du milieu et faites\n"
+"bouger votre souris de haut en bas.\n"
+"\n"
+"Si vous désirez installer une souris différente, veuillez la sélectionner à\n"
+"partir de la liste qui vous est proposée.\n"
+"\n"
+"Vous pouvez sélectionner une souris « %s » qu'elle soit PS/2 ou USB pour\n"
+"choisir un type de souris générique qui fonctionne avec presque tout.\n"
+"\n"
+"Si vous sélectionnez une souris différente de celle choisie par défaut,\n"
+"DrakX vous présentera un écran de test. Utilisez les boutons et la molette\n"
+"pour vous assurer que tout fonctionne correctement. Si votre souris ne\n"
+"fonctionne pas normalement, appuyez sur la barre d'espace ou la touche\n"
+"[Entrée] pour annuler le test et retourner à la liste de choix de la\n"
+"souris.\n"
+"\n"
+"Parfois, les souris à molette ne sont pas détectées automatiquement, vous\n"
+"devrez alors sélectionner manuellement une souris dans la liste. Assurez\n"
+"vous de choisir celle qui correspond au bon port de connexion. Après avoir\n"
+"sélectionné la souris et pressé le bouton « %s », une image de souris\n"
+"apparaît. Vous devez alors faire tourner la molette afin de l'activer\n"
+"correctement. Après activation, vous verrez la molette de l'écran bouger.\n"
+"Testez alors que tous les mouvements et boutons fonctionnent correctement."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "avec émulation de la molette"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Universelle | N'importe quelle souris PS/2 ou USB"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Sélectionnez le bon port. Par exemple : l'équivalent du port « COM1 » sur\n"
+"Windows, se nomme « ttyS0 » sous GNU/Linux."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Vous devez prendre ici une décision cruciale pour la sécurité de votre\n"
+"système GNU/Linux : vous devez entrer un mot de passe « root ».\n"
+"L'utilisateur « root » est l'administrateur du système qui a tous les\n"
+"droits d'accès aux fichiers de configuration, etc. Il est donc impératif de\n"
+"choisir un mot de passe difficile à deviner (pensez aux systèmes prévus à\n"
+"cet effet qui anticipent les combinaisons communes des utilisateurs). DrakX\n"
+"vous avertira si le mot de passe entré est trop facile à deviner. Comme\n"
+"vous pouvez le voir, il est également possible de ne pas entrer de mot de\n"
+"passe. Nous déconseillons fortement cette pratique. Comme l'erreur est\n"
+"humaine, un utilisateur avec tous les droits peut tout détruire sur votre\n"
+"système, c'est pourquoi le mot de passe doit agir comme barrière à\n"
+"l'entrée.\n"
+"\n"
+"Le mot de passe choisi devrait contenir au moins 8 caractères\n"
+"alphanumériques. Ne jamais écrire le mot de passe « root », forcez-vous à\n"
+"vous en souvenir par coeur.\n"
+"\n"
+"Ne choisissez pas de mot de passe trop long ou trop compliqué, ménagez\n"
+"accessibilité et mémoire : un mot de passe de 30 caractères est presque\n"
+"impossible à mémoriser.\n"
+"\n"
+"Afin d'éviter les regards indiscrets, le mot de passe n'apparaîtra pas à\n"
+"l'écran. Il vous faudra donc l'inscrire deux fois afin d'éviter les erreurs\n"
+"de frappe. Évidemment, si vous faites deux fois la même erreur, celle-ci\n"
+"sera sauvegardée et vous devrez la reproduire afin d'accéder à votre\n"
+"système pour la première fois en tant qu'administrateur.\n"
+"\n"
+"Si vous souhaitez que l'accès à cette machine soit contrôlé par un serveur\n"
+"d'authentification, cliquez sur le bouton « %s ».\n"
+"\n"
+"Si votre réseau utilise soit LDAP, NIS, ou un PDC Windows, choisissez-le\n"
+"comme protocole d'%s. En cas de doute, demandez à votre\n"
+"administrateur réseau.\n"
+"\n"
+"Si vous avez des problèmes à vous souvenir de vos mots de passe, vous\n"
+"pouvez choisir « %s », si votre ordinateur ne sera pas connecté à Internet,\n"
+"et si vous avez confiance en tous ceux qui auront accès à cette machine."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "authentification"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Un programme d'amorce est un petit programme qui est lancé par la machine\n"
+"au démarrage. Il est en charge du démarrage du sytème. Normalement,\n"
+"l'installation d'un programme d'amorce est complètement automatique. DrakX\n"
+"analyse le secteur de démarrage (« master boot record ») et agit en\n"
+"fonction de ce qu'il peut y lire :\n"
+"\n"
+" * si un secteur de démarrage Windows est détecté, il sera remplacé par\n"
+"GRUB/LILO. Donc, vous serez capable de démarrer GNU/Linux ou tout autre\n"
+"système d'exploitation installé sur votre machine.\n"
+"\n"
+" * si GRUB ou LILO est détecté, il sera remplacé par la nouvelle version;\n"
+"\n"
+"En cas de doute, DrakX affiche différentes options. En général, le « %s »\n"
+"est l'endroit le plus sûr. Si vous choisissez « %s », aucun chargeur de\n"
+"démarrage ne sera installé. À vos risques et périls."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Maintenant, il faut choisir un système d'impression pour votre ordinateur. "
+"D'autres\n"
+"systèmes d'exploitation en offrent un, mais Mandriva Linux en propose deux. "
+"Chaque système\n"
+"d'impression convient le mieux à un type différent de configuration.\n"
+"\n"
+" * « %s » - qui veut dire « print, do not queue », (ou, impression sans\n"
+"passer par la file d'attente) est un bon choix si votre imprimante est\n"
+"branchée directement sur votre poste, que vous voulez pouvoir arrêter\n"
+"l'impression directement en cas de problème et que vous n'avez pas\n"
+"d'imprimante réseau. « %s » prendra en charge des configurations simples en "
+"réseau, mais\n"
+"les performances sont plutôt mauvaises dans ces cas. Choisissez «pdq» si "
+"vous\n"
+"débutez sous GNU/Linux.\n"
+"\n"
+" * « %s » - « Common Unix Printing System », est fabuleux autant pour une\n"
+"imprimante locale que pour imprimer à l'autre bout du monde. C'est simple\n"
+"et il peut agir comme un serveur ou un client avec l'ancien système "
+"d'impression « lpd », de ce fait il est compatible avec les anciens\n"
+" systèmes d'exploitations qui nécessitent encore un service d'impression. Il "
+"s'agit d'un outil très puissant et les\n"
+"configurations de base sont aussi simples que « pdq ». Pour émuler un "
+"serveur « lpd », lancez le démon (« daemon ») « cups-lpq ». « %s » qui offre "
+"une interface graphique simple pour imprimer sur et administrer les "
+"imprimantes.\n"
+"\n"
+"Si vous choisissez votre système d'impression maintenant et que par la suite "
+"vous n'en êtes pas content, vous pourrez le changer\n"
+"ultérieurement en lançant PrinterDrake depuis le Centre de contrôle\n"
+"Mandriva Linux en cliquant sur le bouton « %s »."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Expert"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX détecte maintenant tous les périphériques IDE présents sur votre\n"
+"système. DrakX recherchera aussi les périphériques SCSI. Enfin, selon les\n"
+"composantes détectées, DrakX installera tous les pilotes nécessaires à son\n"
+"fonctionnement.\n"
+"\n"
+"Compte tenu de la vaste gamme de périphériques disponibles sur le marché,\n"
+"dans certains cas la détection de matériel ne fonctionnera pas. Si c'est le\n"
+"cas, vous devrez alors configurer votre matériel à la main.\n"
+"\n"
+"Si vous devez configurer votre carte SCSI manuellement, DrakX vous\n"
+"demandera si vous souhaitez spécifier à la main les options du\n"
+"périphérique. Laissez en fait DrakX chercher automatiquement les options\n"
+"nécessaires à la configuration de votre carte, cela fonctionne\n"
+"généralement.\n"
+"\n"
+"Il peut arriver que DrakX soit incapable de vérifier les options\n"
+"nécessaires. Dans ce cas, vous devrez les déterminer manuellement."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"« %s » : si une carte son a été détectée, elle apparaîtra ici. Si vous\n"
+"remarquez que la carte configurée n'est pas celle qui se trouve\n"
+"effectivement sur votre système, vous pouvez cliquer sur le bouton pour\n"
+"choisir un pilote différent ."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Voici les informations recueillies par DrakX sur la configuration actuelle.\n"
+"Selon le matériel installé, certaines entrées seront présentes et d'autres\n"
+"pas. Chaque paramètre est constitué du nom du matériel installé, suivi d'un\n"
+"court résumé de la configuration actuelle. Cliquez sur le bouton « %s »\n"
+"correspondant pour effectuer un changement.\n"
+"\n"
+" * « %s » : vérifiez la configuration choisie pour le clavier.\n"
+"\n"
+" * « %s » : vérifiez la sélection du pays. Si vous ne vous trouvez pas dans\n"
+"ce pays, cliquez sur le bouton « %s » et choisissez le bon. Si votre pays\n"
+"ne se trouve pas dans la première liste, cliquez sur « %s » pour avoir la\n"
+"liste complète.\n"
+"\n"
+" * « %s » : DrakX, par défaut, configure le fuseau horaire selon le pays\n"
+"dans lequel vous vous trouvez. Cliquez sur le bouton « %s » si ce n'est pas\n"
+"le bon.\n"
+"\n"
+" * « %s » : pour vérifier la configuration actuelle de la souris. Cliquez\n"
+"sur le bouton pour modifier les options.\n"
+"\n"
+" * « %s » : en cliquant sur « %s », l'outil de configuration d'impression\n"
+"sera démarré. Consultez le chapitre correspondant du « Guide de démarrage »\n"
+"pour plus de renseignements. L'interface qui y est documentée est similaire\n"
+"à celle rencontrée lors de l'installation.\n"
+"\n"
+" * « %s » : si une carte son a été détectée, elle apparaîtra ici. Si vous\n"
+"remarquez que la carte configurée n'est pas celle qui se trouve\n"
+"effectivement sur votre système, vous pouvez cliquer sur le bouton pour\n"
+"choisir un pilote différent .\n"
+"\n"
+" * « %s » : si une carte d'entrée/sortie vidéo (carte TV) a été détectée,\n"
+"elle apparaîtra ici. Si vous avez une carte TV et qu'elle n'a pas été\n"
+"détectée, cliquez sur « %s » pour la configurer à la main.\n"
+"\n"
+" * « %s » : si une carte RNIS (ISDN) est détectée, elle apparaîtra ici.\n"
+"Vous pouvez cliquer sur le bouton « %s » pour en modifier les paramètres si\n"
+"vous estimez que la configuration actuelle est inexacte.\n"
+"\n"
+" * « %s » : par défaut, DrakX configure votre interface graphique avec une\n"
+"résolution de « 800x600 » ou « 1024x768 ». Si cela ne vous convient pas,\n"
+"cliquez sur « %s » pour changer la configuration de votre interface\n"
+"graphique.\n"
+"\n"
+" * « %s » : si vous souhaitez configurer votre accès Internet ou réseau\n"
+"local dès maintenant. Lisez la documentation fournie ou exécutez\n"
+"le Centre de Contrôle Mandriva Linux après l'installation pour avoir droit à "
+"une\n"
+"aide complète en ligne.\n"
+"\n"
+" * « %s » : permet de configurer les adresses proxy HTTP et FTP si la\n"
+"machine que vous installez se trouve derrière un serveur proxy.\n"
+"\n"
+" * « %s » : il vous est ici proposé de redéfinir votre niveau de sécurité\n"
+"tel que défini dans une étape précédente ().\n"
+"\n"
+" * « %s » : si vous avez l'intention de connecter votre ordinateur à\n"
+"Internet, c'est une bonne idée de le protéger des intrusions grâce à un\n"
+"pare-feu. Consultez la section correspondante du « Guide de démarrage »\n"
+"pour plus de renseignements.\n"
+"\n"
+" * « %s » : si vous souhaitez changer la configuration par défaut de votre\n"
+"chargeur de démarrage. À réserver aux utilisateurs expérimentés. Lisez la\n"
+"documentation fournie ou l'aide en ligne sur la configuration de chargeur\n"
+"de démarrage présente dans le Centre de Contrôle Mandriva Linux.\n"
+"\n"
+" * « %s » : vous pourrez ici contrôler finement les services disponibles\n"
+"sur votre machine. Si vous envisagez de monter un serveur, c'est une bonne\n"
+"idée de vérifier cette configuration."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Carte RNIS"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Interface graphique"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Choisissez le disque dur à effacer pour installer votre partition\n"
+"GNU/Linux. Soyez prudent, toute l'information stockée sur le disque sera\n"
+"détruite."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Cliquez sur « %s » si vous voulez vraiment effacer toute l'information et\n"
+"les partitions. Soyez prudent, après avoir cliqué sur « %s », vous ne\n"
+"pourrez plus récupérer les données ou les partitions, y compris les données\n"
+"Windows.\n"
+"\n"
+"Cliquez sur « %s » pour renoncer à cette opération sans perdre de données."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Suivant ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Précédent"
+
diff --git a/perl-install/install/help/po/fur.po b/perl-install/install/help/po/fur.po
new file mode 100644
index 000000000..572ae8234
--- /dev/null
+++ b/perl-install/install/help/po/fur.po
@@ -0,0 +1,1110 @@
+# translation of DrakX.po to furlan
+# Copyright (C) 2004 Free Software Foundation, Inc.
+# Andrea Gracco <graccoandrea@tin.it>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2004-06-28 17:41+0200\n"
+"Last-Translator: Andrea Gracco <graccoandrea@tin.it>\n"
+"Language-Team: furlan <gft@freelists.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Vuelistu doprâ cheste fature?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr ""
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr ""
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr ""
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr ""
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr ""
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr ""
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr ""
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr ""
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr ""
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr ""
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr ""
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr ""
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr ""
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr ""
+
+#: ../help.pm:768
+#, fuzzy, c-format
+msgid "Expert"
+msgstr "Eseguìs"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr ""
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Prossim ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Precedent"
+
diff --git a/perl-install/install/help/po/ga.po b/perl-install/install/help/po/ga.po
new file mode 100644
index 000000000..174f4e59e
--- /dev/null
+++ b/perl-install/install/help/po/ga.po
@@ -0,0 +1,1107 @@
+#
+# Alastair McKinstry <mckinstry@computer.org>, 2002
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-09-12 18:04+0200\n"
+"Last-Translator: Alastair McKinstry <mckinstry@computer.org>\n"
+"Language-Team: Irish <ga@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "An mian leat an gné seo a úsáid?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Uasghrádú"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Le doiciméadú bunúsach"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "Truly minimal install"
+msgstr "Eirigh as Feistiú"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr ""
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, fuzzy, c-format
+msgid "Automatic time synchronization"
+msgstr "Cumraigh ADSL"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+
+#: ../help.pm:377
+#, fuzzy, c-format
+msgid "Use existing partition"
+msgstr "Ag iarraidh an clár-ranna a tarrtháil"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Glan diosca ina iomlán"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+
+#: ../help.pm:412
+#, fuzzy, c-format
+msgid "Generate auto-install floppy"
+msgstr "Cruthaigh flapach bootáil"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Riarthóir Slándála"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr ""
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Spáinnis"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "with Wheel emulation"
+msgstr "Luchóg MouseMan"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "deimniú"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Saineolaí"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Carta ISDN"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Comhéadan Grafach"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Teacs ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- feist"
+
diff --git a/perl-install/install/help/po/gl.po b/perl-install/install/help/po/gl.po
new file mode 100644
index 000000000..60fdd27a8
--- /dev/null
+++ b/perl-install/install/help/po/gl.po
@@ -0,0 +1,1948 @@
+# translation of DrakX-help-gl.po to
+# translation of DrakX-help-gl.po to Galician
+# Jesús Bravo Álvarez (mdk) <jba@pobox.com>, 2001.
+# Leandro Regueiro <leandro.regueiro@gmail.com>, 2004, 2005, 2006.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-help-gl\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2006-07-08 20:57+0100\n"
+"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
+"Language-Team: <gl@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.9.1\n"
+"X-Poedit-Language: Gallegan\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Antes de continuar, debe ler atentamente os termos da licenza. Esta\n"
+"licenza cobre toda a distribución Mandriva Linux. Se está de acordo\n"
+"con tódolos termos que contén, marque o cadro \"%s\". Se non o está,\n"
+"prema no botón \"%s\" e reiniciarase o seu ordenador."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux é un sistema multiusuario o que significa que cada usuario pode\n"
+"ter as súas propias preferencias, os seus propios ficheiros, etc. Pero a\n"
+"diferencia de \"root\", que é o administrador do sistema, os usuarios que\n"
+"engada neste punto non estarán autorizados para cambiar nada agás os\n"
+"seus propios ficheiros e as súas propias configuracións, protexendo o\n"
+"sistema de cambios involuntarios ou malintencionados que poderían afectar\n"
+"a todo o sistema. Terá que crear como mínimo un usuario normal para vostede\n"
+"-- esta é a conta que usará para o uso cotián e rutineiro. Ainda que é moi\n"
+"sinxelo entrar no sistema coma \"root\" para facer calquera cousa, tamén\n"
+"pode ser moi perigoso! Un pequeno erro pode significar que o seu sistema\n"
+"non volva funcionar nunca máis. Se vostede comete un erro moi grave\n"
+"coma un usuario normal, o peor que pode suceder é que perda algunha\n"
+"información, pero non afectará a todo o sistema.\n"
+"\n"
+"O primeiro campo pregúntalle un nome real. Dende logo, isto non é\n"
+"obrigatorio -- actualmente pode introducir o que queira. DrakX collerá a\n"
+"primeira palabra que introduza neste campo e copiaraa ó campo\n"
+"\"%s\", que é o nome que o usuario introducirá para entrar no\n"
+"sistema. Se o desexa, pode non facer caso do predeterminado e cambiar\n"
+"o nome de usuario. O seguinte paso é introducir un contrasinal. Dende\n"
+"o punto de vista da seguridade, o contrasinal dun usuario sen\n"
+"privilexios (normal) non é tan crucial coma o contrasinal de \"root\", pero\n"
+"esa non é razón para descoidarse deixándoa en branco ou poñendo unha\n"
+"moi fácil: despois de todo, pode que os seus ficheiros estean en perigo.\n"
+"\n"
+"Se preme en \"%s\", poderá engadir máis usuarios. Engada un usuario\n"
+"para cada un dos seus amigos, o seu pai, a súa irmá, etc. Prema en\n"
+"\"%s\" cando remate de engadir os usuarios.\n"
+"\n"
+"Se preme no botón \"%s\" poderá cambiar a \"shell\" predeteminada\n"
+"para ese usuario (bash por defecto).\n"
+"\n"
+"Cando remate de engadir os usuarios, diráselle que elixa o usuario que\n"
+"entrará automáticamente no sistema cando se arrinque o ordenador. Se\n"
+"lle interesa esta funcionalidade (e non lle preocupa moito a seguridade\n"
+"local), elixa o usuario e mailo xestor de ventás que desexe, e despois\n"
+"prema en \"%s\". Se non está interesado nesta funcionalidade,\n"
+"desmarque o cadro \"%s\"."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Desexa usar esta funcionalidade?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"As particións listadas aquí son as particións Linux existentes detectadas\n"
+"no seu disco duro. Pode manter a selección feita polo asistente, xa que\n"
+"é boa para as instalacións máis comúns. Se fai algún troco, debe\n"
+"definir como mínimo unha partición raíz (\"/\"). Non escolla unha partición\n"
+"moi pequena ou non poderá instalar o software necesario. Se desexa\n"
+"almacenar os seus datos nunha partición á parte, tamén terá que crear\n"
+"unha partición \"/home\" (só será posible se ten dispoñibles máis dunha\n"
+"partición Linux).\n"
+"\n"
+"Cada partición lístase do seguinte xeito: \"Nome\", \"Capacidade\".\n"
+"\n"
+"\"Nome\" ten a estructura: \"tipo de disco duro\", \"número de disco duro"
+"\",\n"
+"\"número de partición\" (por exemplo, \"hda1\").\n"
+"\n"
+"\"Tipo de disco duro\" é \"hd\" se o seu disco duro é un disco duro IDE e\n"
+"\"sd\" se é un disco duro SCSI.\n"
+"\n"
+"\"Número de disco duro\" é sempre unha letra despois de \"hd\" ou \"sd\".\n"
+"Para os discos duros IDE é:\n"
+"\n"
+" * \"a\" significa \"disco duro mestre do controlador IDE primario\";\n"
+"\n"
+" * \"b\" significa \"disco duro escravo do controlador IDE primario\";\n"
+"\n"
+" * \"c\" significa \"disco duro mestre do controlador IDE secundario\";\n"
+"\n"
+" * \"d\" significa \"disco duro escravo do controlador IDE secundario\".\n"
+"\n"
+"Nos discos duros SCSI, un \"a\" significa \"ID SCSI menor\", e \"b\" "
+"significa \"segundo ID SCSI menor\", etc."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"A instalación de Mandriva Linux distribúese en varios CD-ROMs. Se un\n"
+"paquete dos seleccionados está noutro CD-ROM, DrakX expulsará o CD\n"
+"actual e diralle que insira o CD requirido. Se non ten o CD requirido a "
+"man,\n"
+"prema en \"%s\", e os paquetes correspondentes non se instalarán."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Agora terá que especificar que programas desexa instalar no seu sistema.\n"
+"Hai milleiros de paquetes dispoñibles para Mandriva Linux, e para facer que\n"
+"sexa máis sinxelo manexalos, puxéronse en grupos de aplicacións "
+"semellantes.\n"
+"\n"
+"Mandriva Linux ordena os grupos de paquetes en catro categorías. Vostede\n"
+"pode mesturar aplicacións de varias categorías, de xeito que unha "
+"instalación\n"
+"``Estación de Traballo'' poida ter instaladas aplicacións da categoría "
+"``Servidor''.\n"
+"\n"
+" * \"%s\": se ten pensado usar a súa máquina coma unha estación de "
+"traballo,\n"
+"seleccione un ou máis dos grupos da categoría estación de traballo.\n"
+"\n"
+" * \"%s\": se vai usar a súa máquina para programar, seleccione os grupos\n"
+"que desexe desta categoría. O grupo especial \"LSB\" configurará o seu\n"
+"sistema para que cumpra as especificacións Linux Standard Base tanto coma\n"
+"sexa posible.\n"
+"\n"
+" Se selecciona o grupo \"LSB\" instalarase tamén un kernel da serie\n"
+"\"2.4\", en vez do predeterminado da \"2.6\". Isto é para asegurar que o\n"
+"sistema cumpre ó 100%% o LSB. Sen embargo, se non selecciona o grupo\n"
+"\"LSB\" ainda terá un sistema que case cumpre ó 100%% con LSB.\n"
+"\n"
+" * \"%s\": se a súa máquina vai ser un servidor, seleccione cales dos\n"
+"servicios máis comúns desexa instalar na súa máquina.\n"
+"\n"
+" * \"%s\": aquí é onde vai elixir o seu ambiente gráfico preferido. Debe\n"
+"seleccionar como mínimo un se desexa ter dispoñible unha interface gráfica.\n"
+"\n"
+"Se pon o cursor do rato enriba do nome dun grupo amosarase un pequeno\n"
+"texto explicativo acerca dese grupo.\n"
+"\n"
+"Pode marcar o cadro \"%s\", o cal é útil se coñece ben os paquetes que\n"
+"se ofrecen ou se desexa ter un control total sobre o que se vai instalar.\n"
+"\n"
+"Se comeza a instalación en modo \"%s\", poderá deseleccionar tódolos\n"
+"grupos e impedir a instalación de calquera novo paquete. Isto é útil para\n"
+"reparar ou actualizar un sistema xa existente.\n"
+"\n"
+"Se deselecciona tódolos grupos ó levar a cabo unha instalación normal\n"
+"(a diferencia dunha actualización), aparecerá un diálogo suxerindo\n"
+"diferentes opcións para unha instalación mínima:\n"
+"\n"
+" * \"%s\": instala o número mínimo de paquetes posible para ter un\n"
+"ambiente gráfico que funcione.\n"
+"\n"
+" * \"%s\": instala o sistema base máis utilidades básicas e a súa\n"
+"documentación. Esta instalación é a axeitada para configurar un servidor.\n"
+"\n"
+" * \"%s\": instalará o número mínimo de paquetes absolutamente\n"
+"necesario para obter un sistema Linux que funcione. Con esta instalación\n"
+"só terá unha interface de liña de comandos. O tamaño total desta\n"
+"instalación é de máis ou menos 65 megabytes."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Actualizar"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Con documentación básica"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Instalación mínima de verdade"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Se elixe instalar os paquetes individualmente, o instalador amosaralle unha\n"
+"árbore que contén tódolos paquetes clasificados por grupos e subgrupos.\n"
+"Mentres navega pola árbore, pode seleccionar grupos enteiros, subgrupos,\n"
+"ou paquetes individuais.\n"
+"\n"
+"Cando seleccione un paquete da árbore, aparecerá unha descrición á\n"
+"dereita para que saiba cal é o propósito dese paquete.\n"
+"\n"
+"!!Se se selecciona un paquete de servidor, xa sexa porque vostede elixiu\n"
+"dito paquete ou porque é parte dun grupo de paquetes, pediráselle que\n"
+"confirme que desexa instalar estes servidores. De maneira predeterminada\n"
+"Mandriva Linux iniciará automáticamente ó arrincar o sistema tódolos\n"
+"servicios instalados. Incluso se son seguros e non tiñan ningún problema\n"
+"coñecido cando se fixo a distribución, é posible que se descubriran buratos\n"
+"de seguridade despois de que se rematara esta versión de Mandriva Linux.\n"
+"Se non sabe que fai un determinado servicio ou por que se vai instalar,\n"
+"prema en \"%s\". Se preme en \"%s\" instalaranse os servicios listados e\n"
+"iniciaranse automáticamente ó arrincar o sistema!!\n"
+"\n"
+"A opción \"%s\" úsase para deshabilitar o diálogo de advertencia que\n"
+"aparece cando o instalador selecciona automáticamente un paquete para\n"
+"resolver un problema de dependencias. Algúns paquetes dependen doutros\n"
+"e a instalación dun paquete determinado pode requirir a instalación doutro\n"
+"paquete. O instalador pode determinar que paquetes son necesarios para\n"
+"satisfacer unha dependencia e completar con éxito a instalación.\n"
+"\n"
+"A pequena icona cun disquete debuxado que está no fondo da lista\n"
+"permítelle cargar unha lista de paquetes creada durante unha instalación\n"
+"anterior. Isto é útil se ten varias máquinas que desexa configurar igual. "
+"Se\n"
+"preme nesta icona pediráselle que introduza o disquete que se creou ó final\n"
+"da outra instalación. Mire o segundo consello do último paso para ver como\n"
+"se crea dito disquete."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Dependencias automáticas"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": premendo no botón \"%s\" abrirase o asistente de configuración de\n"
+"impresoras. Consulte o capítulo correspondente da ``Guía de Inicio'' para "
+"obter\n"
+"máis información acerca de como configurar unha nova impresora. A interface\n"
+"presente no manual é semellante á que se usa durante a instalación."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Este diálogo úsase para seleccionar que servicios desexa que arrinquen ó\n"
+"iniciar o sistema.\n"
+"\n"
+"DrakX listará tódolos servicios dispoñibles na instalación actual. Examine\n"
+"cada un deles coidadosamente e desmarque aqueles que non son\n"
+"necesarios ó iniciar o sistema.\n"
+"\n"
+"Cando seleccione un servicio amosarase un pequeno texto explicatorio\n"
+"sobre o servicio. Sen embargo, se non está seguro sobre se un servicio\n"
+"é útil ou non, é mellor deixalo como estea.\n"
+"\n"
+"¡¡ Sexa especialmente coidadoso neste paso se pretende utiliza-la súa\n"
+"máquina coma un servidor: probablemente non quererá arrincar servicios que\n"
+"non precisa. Lembre que algúns servicios poden ser perigosos se están\n"
+"activados nun servidor. En xeral, seleccione só aqueles servicios que\n"
+"necesite de verdade !!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux manexa a hora en GMT (Greenwich Mean Time) e tradúcea á\n"
+"hora local de acordo ca zona horaria que seleccionou. Se o reloxo da súa\n"
+"placa base usa a hora local, debería desactivar isto deseleccionando\n"
+"\"%s\", o cal lle permitirá a GNU/Linux saber que o reloxo do sistema e o\n"
+"reloxo do hardware están na mesma zona horaria. Isto é útil cando a máquina\n"
+"tamén contén outro sistema operativo.\n"
+"\n"
+"A opción \"%s\" regulará automáticamente o reloxo do sistema conectándose\n"
+"a un servidor remoto de tempo da Internet. Para que esta funcionalidade\n"
+"funcione, debe ter unha conexión á Internet que funcione. Recomendámoslle\n"
+"que elixa un servidor de tempo que estea situado preto de vostede. Esta\n"
+"opción en realidade instala un servidor de tempo local que tamén poden usar\n"
+"outras máquinas da súa rede local."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Sincronización automática da hora"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Tarxeta Gráfica\n"
+"\n"
+" Normalmente o instalador detecta automáticamente detecta e configura\n"
+"a tarxeta gráfica instalada no ordenador. Se non é a correcta, pode elixir\n"
+"nesta lista a tarxeta gráfica que está instalada no ordenador.\n"
+"\n"
+" Se hai varios servidores dispoñibles para a súa tarxeta, con ou sen\n"
+"aceleración 3D, terá que elixir o servidor que se adapte mellor ás súas\n"
+"necesidades."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"As X (por X Window System) son o corazón da interface gráfica de\n"
+"GNU/Linux do que dependen tódolos ambientes gráficos (KDE, GNOME,\n"
+"AfterStep, WindowMaker, etc.) proporcionados por Mandriva Linux.\n"
+"\n"
+"Vostede verá unha lista dos diferentes parámetros que se poden\n"
+"cambiar para obter unha visualización gráfica óptima.\n"
+"\n"
+"Tarxeta Gráfica\n"
+"\n"
+" O instalador normalmente detectará e configurará automáticamente\n"
+"a tarxeta gráfica instalada na súa máquina. Se esta non é a correcta,\n"
+"pode escoller nesta lista a tarxeta que ten instalada en realidade.\n"
+"\n"
+" Na situación na que haxa dispoñibles diferentes servidores para a súa\n"
+"tarxeta, con ou sen aceleración 3D, pediráselle que elixa o servidor que\n"
+"mellor se adapte ás súas necesidades.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normalmente o instalador detectará e configurará automáticamente o\n"
+"monitor conectado á súa máquina. Se non é o correcto, pode elixir nesta\n"
+"lista o monitor que está conectado ó seu ordenador.\n"
+"\n"
+"\n"
+"\n"
+"Resolución\n"
+"\n"
+" Aquí vostede pode escoller as resolucións e as profundidades de cor\n"
+"dispoñibles para o seu hardware gráfico. Elixa a que mellor se adapte ás\n"
+"súas necesidades (poderá facer cambios despois da instalación).\n"
+"Amosarase unha mostra da configuración elixida na pantalla.\n"
+"\n"
+"\n"
+"\n"
+"Comprobación\n"
+"\n"
+" Dependendo do hardware que teña, esta entrada podería non aparecer.\n"
+"\n"
+" O sistema intentará abrir unha pantalla gráfica ca resolución desexada.\n"
+"Se vostede ve a mensaxe de proba durante a comprobación e responde\n"
+"\"%s\", entón DrakX pasará ó seguinte paso. Se non a ve, entón significa\n"
+"que parte da configuración detectada automáticamente é incorrecta e a\n"
+"comprobación rematará automáticamente despois de 12 segundos e\n"
+"volverá ó menú. Cambie as opcións ata que consiga unha aparencia\n"
+"gráfica correcta.\n"
+"\n"
+"\n"
+"\n"
+"Opcións\n"
+"\n"
+" Este paso permítelle elixir se desexa que a súa máquina inicie\n"
+"automáticamente a interface gráfica ó arrincar. Evidentemente, vostede\n"
+"podería desexar marcar \"%s\" se a súa máquina vai ser un servidor,\n"
+"ou se non conseguiu configurar as X."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+"\n"
+" O instalador normalmente detecta e configura automáticamente o\n"
+"monitor conectado á súa máquina. Se non é o correcto, pode escoller\n"
+"nesta lista o monitor que ten conectado ó seu ordenador."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Resolución\n"
+"\n"
+" Aquí pode escoller as resolucións e as profundidades de cor dispoñibles\n"
+"para o seu hardware gráfico. Escolla o que mellor se adapte ás súas\n"
+"necesidades (poderá facer trocos despois da instalación). Amosarase un\n"
+"exemplo da configuración elixida na pantalla."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Se se da a situación na que hai diferentes servidores dispoñibles para a\n"
+"súa tarxeta, con ou sen aceleración 3D, pediráselle que escolla o servidor\n"
+"que mellor se axuste ás súas necesidades."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Opcións\n"
+"\n"
+" Estes pasos permítenlle escoller se a súa máquina debe iniciar\n"
+"automáticamente unha interface gráfica ó arrincar ou non. Evidentemente,\n"
+"vostede pode querer marcar \"%s\" se a súa máquina vai funcionar\n"
+"coma un servidor, ou se non tivo éxito configurando o sistema gráfico."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Agora ten que decidir onde quere instalar o sistema operativo\n"
+"Mandriva Linux no disco duro. Se o seu disco duro está baleiro, ou se\n"
+"outro sistema operativo está usando todo o espacio dispoñible, terá que\n"
+"particionalo. Básicamente, particionar un disco duro consiste en dividilo\n"
+"lóxicamente para crear o espacio necesario para instalar o seu novo\n"
+"sistema Mandriva Linux.\n"
+"\n"
+"Debido a que o proceso de particionamento é normalmente irreversible\n"
+"e pode provocar perdas de datos, o particionamento pode intimidar e\n"
+"resultar estresante para un usuario sen experiencia. Afortunadamente,\n"
+"DrakX inclúe un asistente que simplifica este proceso. Antes de\n"
+"continuar con este paso, lea toda esta sección e sobre todo, tómese\n"
+"o seu tempo.\n"
+"\n"
+"Dependendo da configuración do seu disco duro, hai varias opcións\n"
+"dispoñibles:\n"
+"\n"
+" * \"%s\". Esta opción levará a cabo un particionamento automático\n"
+"da(s) súa(s) unidade(s) baleira(s). Se usa esta opción non haberá máis\n"
+"avisos.\n"
+"\n"
+" * \"%s\". O asistente detectou que existen unha ou máis particións\n"
+"Linux no seu disco duro. Se desexa usalas, elixa esta opción. Entón\n"
+"pediráselle que escolla os puntos de montaxe asociados con cada unha\n"
+"das particións. Os puntos de montaxe herdados selecciónanse por\n"
+"defecto, e para a maioría é boa idea mantelos.\n"
+" \n"
+" * \"%s\". Se Microsoft Windows está instalado no seu disco duro e\n"
+"ocupa todo o espacio dispoñible nel, terá que crear espacio libre para\n"
+"GNU/Linux. Para facelo, pode eliminar os datos e a partición Microsoft\n"
+"Windows (mire a solución ``Borrar todo o disco'') ou redimensionar a\n"
+"partición Microsoft Windows FAT ou NTFS. O redimensionamento\n"
+"pode levarse a cabo sen a perda de ningún dato, con tal que\n"
+"desfragmente previamente a partición Windows. É moi recomendable\n"
+"que faga unha copia de seguridade dos seus datos. Recoméndase\n"
+"usar esta opción se desexa usar Mandriva Linux e Microsoft\n"
+"Windows no mesmo ordenador.\n"
+"\n"
+" Antes de escoller esta opción, debe comprender que despois deste\n"
+"procedemento, o tamaño da súa partición Microsoft Windows será máis\n"
+"pequeno ca antes. Terá menos espacio libre en Microsoft Windows\n"
+"para almacenar os seus datos ou para instalar novo software.\n"
+"\n"
+" * \"%s\". Se desexa eliminar tódolos datos e as particións presentes no\n"
+"seu disco duro e remprazalas polo seu novo sistema Mandriva Linux, elixa\n"
+"esta opción. Teña coidado, porque non poderá desfacer esta operación\n"
+"despois de que confirme.\n"
+"\n"
+" !! Se elixe esta opción, eliminaranse tódolos datos do seu disco "
+"duro. !!\n"
+"\n"
+" * \"%s\". Esta opción aparece cando Microsoft Windows ocupa todo o\n"
+"disco duro. Se elixe esta opción simplemente eliminarase toda a unidade\n"
+"e comezarase de novo, particionando todo dende cero.\n"
+"\n"
+" !! Se elixe esta opción, perderanse tódolos datos do seu disco duro. !!\n"
+"\n"
+" * \"%s\". Elixa esta opción se desexa particionar a man o seu disco duro.\n"
+"Teña tino -- é unha opción potente pero perigosa e pode perder moi\n"
+"fácilmente tódolos seus datos. É por iso polo que só se recomenda esta\n"
+"opción se fixo algo coma isto antes e ten algunha experiencia. Para obter\n"
+"máis instruccións sobre como usar a utilidade DiskDrake, refírase á sección\n"
+"``Administrando as súas Particións'' da ``Guía de Inicio''."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Usar partición existente"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Borra-lo disco enteiro"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Xa está. A instalación rematou e o seu sistema GNU/Linux está preparado\n"
+"para usalo. Prema en \"%s\" para reiniciar o sistema. Non esqueza extraer\n"
+"o soporte de instalación (CD-ROM ou disquete). A primeira cousa que\n"
+"debería ver despois de que o seu ordenador remate de facer a\n"
+"comprobación do hardware é o menú do cargador de arrinque, dándolle a\n"
+"opción de elixir que sistema operativo se vai iniciar.\n"
+"\n"
+"O botón \"%s\" amosa dous botóns máis para:\n"
+"\n"
+" * \"%s\": permítelle crear un disquete de instalación que levará a cabo\n"
+"automáticamente unha instalación completa semellante á instalación que\n"
+"acaba de facer, sen a axuda dun operador.\n"
+"\n"
+" Teña en conta que despois de premer neste botón hai dispoñibles dúas\n"
+"opcións diferentes:\n"
+"\n"
+" * \"%s\". Esta é unha instalación parcialmente automatizada. O paso\n"
+"do particionamento é o único interactivo.\n"
+"\n"
+" * \"%s\". Instalación totalmente automática: O disco duro rescríbese\n"
+"totalmente, perdendo tódolos datos.\n"
+"\n"
+" Esta funcionalidade é moi práctica cando se está instalando en varias\n"
+"máquinas semellantes. Mire na sección Instalación Automática no noso sitio\n"
+"web para obter máis información.\n"
+"\n"
+" * \"%s\"(*): garda unha lista dos paquetes seleccionados nesta "
+"instalación.\n"
+"Para usar esta selección noutra instalación, insira o disquete e inicie a\n"
+"instalación. Na liña de comandos, prema a tecla [F1], e introduza\n"
+">>linux defcfg=\"floppy\"<< e prema a tecla [Intro].\n"
+"\n"
+"(*) Necesita un disquete formatado con FAT. Para crear un en GNU/Linux,\n"
+"escriba \"mformat a:\", ou \"fdformat /dev/fd0\" seguido de \"mkfs.vfat\n"
+"/dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Xerar un disquete de Instalación Automática"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Se elixe reutilizar algunhas das particións GNU/Linux xa existentes, "
+"podería\n"
+"desexar volver formatar algunhas delas e eliminar tódolos datos que\n"
+"conteñan. Para facer isto seleccione estas particións tamén.\n"
+"\n"
+"Teña en conta que non cómpre volver formatar tódalas particións xa\n"
+"existentes. Debe volver formatar as particións que conteñen o sistema\n"
+"operativo (coma \"/\", \"/usr\" ou \"/var\") pero non ten que volver\n"
+"formatar particións que conteñen datos que desexe gardar (normalmente\n"
+"\"/home\").\n"
+"\n"
+"Teña tino ó seleccionar as particións. Despois de formatalas, tódolos\n"
+"datos das particións seleccionadas estarán eliminados e non poderá\n"
+"recuperalos.\n"
+"\n"
+"Prema en \"%s\" cando estea preparado para formatar as particións.\n"
+"\n"
+"Prema en \"%s\" se desexa elixir outra partición para a instalación do seu\n"
+"novo sistema operativo Mandriva Linux.\n"
+"\n"
+"Prema en \"%s\" se desexa seleccionar as particións nas que se realizarán\n"
+"comprobacións de bloques erróneos."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Cando instale Mandriva Linux é probable que algúns paquetes se\n"
+"actualizaran dende a publicación inicial. Pode ser que se solucionaran "
+"erros,\n"
+"e se resolveran problemas de seguridade. Para beneficiarse destas\n"
+"actualizacións agora, pode descargalas dende a Internet. Marque \"%s\"\n"
+"se ten unha conexión á Internet, ou \"%s\" se prefire instalar os paquetes\n"
+"actualizados máis tarde.\n"
+"\n"
+"Se escolle \"%s\" amosarase unha lista das localizacións web dende as que\n"
+"se poden obter as actualizacións. Debe escoller unha que estea preto de\n"
+"vostede. Aparecerá unha árbore de selección de paquetes: revise a\n"
+"selección, e prema en \"%s\" para descargar e instala-lo(s) paquete(s)\n"
+"seleccionado(s), ou en \"%s\" para abortar."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Neste punto, DrakX permitiralle elixir o nivel de seguridade que desexa\n"
+"que teña a súa máquina. Como regra xeral, o nivel de seguridade debe\n"
+"ser maior se a máquina vai conter datos moi importantes, ou se vai estar\n"
+"exposta directamente á Internet. Normalmente un nivel de seguridade\n"
+"maior obtense a expensas da facilidade de uso.\n"
+"\n"
+"Se non sabe cal escoller, deixe a opción predeterminada. Poderá\n"
+"cambiala máis tarde ca ferramenta draksec, a cal é parte do Centro de\n"
+"Control de Mandriva Linux.\n"
+"\n"
+"Complete o campo \"%s\" co enderezo de correo-e (e-mail) da persoa\n"
+"responsable da seguridade. As mensaxes de seguridade enviaranse a\n"
+"ese enderezo."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Administrador de Seguridade"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Neste punto cómpre que escolla que partición(s) se van usar para a\n"
+"instalación do seu sistema Mandriva Linux. Se as particións xa se\n"
+"crearon, xa sexa nunha instalación anterior de GNU/Linux ou con\n"
+"outra ferramenta de particionamento, poderá usar as particións\n"
+"existentes. Se non é así, débense crear as particións no disco duro.\n"
+"\n"
+"Para crear particións, primeiro debe seleccionar un disco duro. Pode\n"
+"seleccionar o disco a particionar premendo en ``hda'' para a primeira\n"
+"unidade IDE, ``hdb'' para a segunda, ``sda'' para a primeira unidade\n"
+"SCSI, etc.\n"
+"\n"
+"Para particionar o disco duro seleccionado pode usar estas opcións:\n"
+"\n"
+" * \"%s\": esta opción elimina tódalas particións do disco duro\n"
+"seleccionado\n"
+"\n"
+" * \"%s\": esta opción permítelle crear automáticamente particións\n"
+"ext3 e swap no espacio baleiro do disco duro\n"
+"\n"
+"\"%s\": dálle acceso a funcionalidades adicionais:\n"
+"\n"
+" * \"%s\": garda a táboa de particións nun disquete. É útil para\n"
+"recuperacións posteriores da táboa de particións, en caso de ser\n"
+"necesario. É altamente recomendable que leve a cabo este paso.\n"
+"\n"
+" * \"%s\": permítelle restaurar unha táboa de particións gardada\n"
+"previamente nun disquete.\n"
+"\n"
+" * \"%s\": se a súa táboa de particións está danada, pode intentar\n"
+"recuperala usando esta opción. Por favor teña coidado e lembre que non\n"
+"sempre funciona.\n"
+"\n"
+" * \"%s\": desbota tódolos cambios e recarga a táboa de particións orixinal\n"
+"do disco duro.\n"
+"\n"
+" * \"%s\": se desmarca esta opción forzará ós usuarios a montar e\n"
+"desmontar a man os soportes extraíbles coma os disquetes e os CD-ROMs.\n"
+"\n"
+" * \"%s\": use esta opción se desexa usar un asistente para particionar\n"
+"o seu disco duro. Recoméndase isto se non sabe moito sobre o\n"
+"particionamento.\n"
+"\n"
+" * \"%s\": use esta opción para cancelar tódolos seus cambios.\n"
+"\n"
+" * \"%s\": permite accións adicionais sobre as particións (tipo, opcións,\n"
+"formato) e proporciona máis información sobre o disco duro.\n"
+"\n"
+" * \"%s\": cando remate o particionamento do seu disco duro, isto\n"
+"gardará os cambios no disco.\n"
+"\n"
+"Cando estea definindo o tamaño das particións pode establecelo\n"
+"con exactitude usando as teclas das Frechas do teclado.\n"
+"\n"
+"Nota: pode obter calquera opción usando o teclado. Navegue polas\n"
+"particións usando [Tab] e as frechas [Arriba/Abaixo].\n"
+"\n"
+"Cando se selecciona unha partición, poderá usar:\n"
+"\n"
+" * Ctrl-c para crear unha nova partición (cando se seleccionou un\n"
+"espacio baleiro)\n"
+"\n"
+" * Ctrl-d para eliminar unha partición\n"
+"\n"
+" * Ctrl-m para establecer o punto de montaxe\n"
+"\n"
+"Para obter información sobre os diferentes tipos de sistemas de ficheiros\n"
+"dispoñibles, lea o capítulo sobre ext2FS do ``Manual de Referencia''.\n"
+"\n"
+"Se está instalando nunha máquina PPC, quererá crear unha pequena\n"
+"partición HFS para ``bootstrap'' de como mínimo 1MB a cal vai ser usada\n"
+"polo cargador de arrinque yaboot. Se opta por facer a partición un pouco\n"
+"máis grande, digamos de 50MB, podería darse conta de que é un sitio útil\n"
+"para almacenar un kernel de reserva e imaxes ramdisk para situacións de\n"
+"arrinques de emerxencia."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Montar automáticamente os soportes extraíbles"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Cambiar entre modo normal/experto"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Detectouse máis dunha partición Microsoft no seu disco duro. Elixa a que\n"
+"quere redimensionar para poder instalar o seu novo sistema operativo\n"
+"Mandriva Linux.\n"
+"\n"
+"Cada partición está listada do seguinte xeito: \"Nome en Linux\",\n"
+"\"Nome en Windows\", \"Capacidade\".\n"
+"\n"
+"O \"Nome en Linux\" ten esta estructura: \"Tipo de disco duro\", \n"
+"\"Número de disco duro\", \"Número de partición\" (por exemplo, \"hda1\").\n"
+"\n"
+"O \"Tipo de disco duro\" é \"hd\" se o seu disco duro é un disco duro IDE\n"
+"e \"sd\" se é un disco duro SCSI.\n"
+"\n"
+"O \"Número de disco duro\" é sempre unha letra despois de \"hd\" ou\n"
+"\"sd\". En discos duros IDE:\n"
+"\n"
+" * \"a\" significa \"disco duro mestre do controlador IDE primario\";\n"
+"\n"
+" * \"b\" significa \"disco duro escravo do controlador IDE primario\";\n"
+"\n"
+" * \"c\" significa \"disco duro mestre do controlador IDE secundario\";\n"
+"\n"
+" * \"d\" significa \"disco duro escravo do controlador IDE secundario\".\n"
+"\n"
+"Nos discos duros SCSI, un \"a\" significa \"ID SCSI menor\", un \"b\" "
+"significa \"segundo ID SCSI menor\", etc.\n"
+"\n"
+"O \"Nome en Windows\" é a letra que ten o seu disco duro en Windows\n"
+"(o primeiro disco ou partición chámase \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": verifique a selección actual do país. Se non está nese país,\n"
+"prema no botón \"%s\" e escolla o seu. Se o seu país non está na lista\n"
+"que se amosa, prema no botón \"%s\" para obter a lista completa de países."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Este paso actívase só se se atopou algunha partición GNU/Linux na súa\n"
+"máquina.\n"
+"\n"
+"DrakX necesita saber se desexa facer unha nova instalación ou\n"
+"unha actualización dun sistema Mandriva Linux xa existente:\n"
+"\n"
+" * \"%s\". A maioría das veces, isto destrúe completamente o sistema\n"
+"antigo. Sen embargo, dependendo de como sexa o seu esquema de\n"
+"particionamento, poderá impedir que se sobrescriban algúns dos datos\n"
+"existentes (especialmente os directorios \"home\"). Se desexa cambiar o\n"
+"xeito no que están particionados os seus discos duros, ou desexa cambiar\n"
+"o sistema de ficheiros, debe usar esta opción.\n"
+"\n"
+" * \"%s\". Esta clase de instalación permítelle actualiza-los paquetes que\n"
+"están instalados agora mesmo no seu sistema Mandriva Linux. Non se\n"
+"modificarán nin o esquema de particionamento actual nin os datos dos\n"
+"usuarios. A maior parte dos outros pasos de configuración estarán\n"
+"dispoñibles e serán semellantes ós dunha instalación estándar.\n"
+"\n"
+"O uso da opción ``Actualizar'' debería funcionar ben en sistemas con\n"
+"Mandriva Linux versión \"8.1\" ou posteriores. Non se recomenda levar\n"
+"a cabo actualizacións en versións anteriores á versión \"8.1\" de\n"
+"Mandriva Linux."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Dependendo da lingua que escollera, DrakX seleccionará automáticamente\n"
+"unha configuración de teclado determinada. Verifique que a selección é a\n"
+"axeitada ou elixa outra disposición de teclado.\n"
+"\n"
+"Tamén pode ser que non teña un teclado que corresponda exactamente\n"
+"ca súa lingua: por exemplo, se vostede fala Inglés e é nativo de Suíza,\n"
+"vostede terá un teclado suízo. Ou se vostede fala Inglés e está en Quebec,\n"
+"podería atoparse na mesma situación na que a súa lingua e o teclado non\n"
+"concordan. En calquera destes casos, este paso da instalación permitiralle\n"
+"seleccionar o teclado axeitado dunha lista.\n"
+"\n"
+"Prema no botón \"%s\" para ver unha lista dos teclados soportados.\n"
+"\n"
+"Se elixiu unha disposición de teclado baseada nun alfabeto non latino, o\n"
+"seguinte diálogo permitiralle elixir a asociación de teclas que fará que o\n"
+"teclado cambie entre unha disposición Latina e unha non Latina."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"O primeiro paso é escoller a súa lingua preferida.\n"
+"\n"
+"A elección da súa lingua preferida afectaralle ó instalador, á "
+"documentación,\n"
+"e ó sistema en xeral. Primeiro seleccione a rexión na que está situado, e\n"
+"despois o idioma que fala.\n"
+"\n"
+"Se preme no botón \"%s\" poderá seleccionar outras linguas para instalalas\n"
+"na súa estación de traballo, instalando deste xeito os ficheiros "
+"específicos\n"
+"desas linguas para a documentación do sistema e as aplicacións. Por\n"
+"exemplo, se van usar a súa máquina usuarios Españois, seleccione Inglés\n"
+"coma a lingua predeterminada na árbore e \"%s\" na sección Avanzado.\n"
+"\n"
+"Acerca do soporte de UTF-8 (unicode): Unicode é unha nova codificación de\n"
+"caracteres pensada para cubrir tódalas linguas existentes. Sen embargo o\n"
+"soporte completo para ela en GNU/Linux ainda se está desenvolvendo. Por\n"
+"esta razón, o uso de UTF-8 en Mandriva Linux dependerá das eleccións do\n"
+"usuario:\n"
+"\n"
+" * Se selecciona unha lingua cunha codificación fortemente asociada\n"
+"(as linguas latin1, Ruso, Xaponés, Chinés, Coreano, Tai, Grego, Turco, a\n"
+"maioría das linguas iso-8859-2), usarase a codificación asociada de\n"
+"xeito predeterminado;\n"
+"\n"
+" * As outras lingua usarán unicode de xeito predeterminado;\n"
+"\n"
+" * Se se requiren dúas ou máis linguas, e estas linguas non usan a mesma\n"
+"codificación, entón usarase unicode para todo o sistema;\n"
+"\n"
+" * Por último, pode forzarse o uso de unicode en todo o sistema a petición\n"
+"do usuario seleccionando a opción \"%s\" independentemente das linguas\n"
+"que se escolleran.\n"
+"\n"
+"Teña en conta que non está limitado a elixir só unha lingua adicional.\n"
+"Vostede pode escoller varias, ou incluso instalalas todas marcando o\n"
+"cadro \"%s\". A selección do soporte para unha lingua significa que se\n"
+"instalarán as traduccións, fontes, correctores ortográficos, etc. desa "
+"lingua.\n"
+"\n"
+"Para cambiar entre as diferentes linguas instaladas no seu sistema, pode\n"
+"executar o comando \"localedrake\" coma \"root\" para cambiar a lingua\n"
+"de todo o sistema. Se executa o comando coma un usuario normal só\n"
+"cambiará a lingua dese usuario determinado."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Español"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Normalmente, DrakX non ten problemas ó detectar o número de botóns\n"
+"do seu rato. Se os ten, suporá que ten un rato de dous botóns e\n"
+"configurarao para que emule o terceiro botón. Nun rato de dous botóns\n"
+"o terceiro botón pode obterse premendo simultáneamente os botóns\n"
+"dereito e esquerdo do rato. DrakX recoñecerá automáticamente se o\n"
+"seu rato usa unha interface PS/2, serie ou USB.\n"
+"\n"
+"Se vostede ten un rato de 3 botóns sen roda, pode escoller o rato\n"
+"\"%s\". DrakX configurará entón o seu rato de xeito que poida simular\n"
+"a roda: para facer isto, prema o botón do medio e mova o punteiro do\n"
+"rato arriba e abaixo.\n"
+"\n"
+"Se por algunha razón desexa especificar un tipo de rato diferente,\n"
+"seleccióneo da lista que se proporciona.\n"
+"\n"
+"Pode seleccionar a entrada \"%s\" para elixir un tipo de rato ``xenérico''\n"
+"que funcionará con case tódolos ratos.\n"
+"\n"
+"Se elixe un rato diferente do predeterminado, amosarase unha pantalla\n"
+"de probas. Use os botóns e a roda para verificar que a configuración é\n"
+"correcta e que o rato está funcionando correctamente. Se o rato non\n"
+"está funcionando ben, prema a barra de espacio ou a tecla [Retorno]\n"
+"para cancelar a proba e volver á lista de ratos.\n"
+"\n"
+"De cando en vez a roda do rato non se detecta automáticamente, así\n"
+"que terá que seleccionar o seu rato na lista. Asegúrese de seleccionar\n"
+"o correspondente ó porto no que está conectado o seu rato. Despois\n"
+"de seleccionar un rato e premer no botón \"%s\", Amosarase a imaxe\n"
+"dun rato na pantalla. Mova a roda do rato para asegurarse de que se\n"
+"activa correctamente. Mentres move a roda do seu rato verá que se\n"
+"move a roda da imaxe da pantalla. Comprobe os botóns e verifique que\n"
+"o punteiro do rato se move pola pantalla mentres move o seu rato."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "con emulación da Roda"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Universal | Calquera rato PS/2 & USB"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Seleccione o porto correcto. Por exemplo, o porto \"COM1\" de\n"
+"Windows chámase \"ttyS0\" en GNU/Linux."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Esta é a decisión máis importante para a seguridade do seu sistema\n"
+"GNU/Linux: debe introducir o contrasinal de \"root\". \"Root\" é o\n"
+"administrador do sistema e é o único usuario autorizado para facer\n"
+"actualizacións, engadir usuarios, cambiar a configuración de todo o "
+"sistema,\n"
+"etc. En poucas palabras, \"root\" pode facer de todo! Por isto debe "
+"escoller\n"
+"un contrasinal que sexa difícil de adiviñar: DrakX diralle se o contrasinal "
+"que\n"
+"escolleu é demasiado sinxelo. Como pode ver, non está obrigado a introducir\n"
+"un contrasinal, pero recomendámoslle que introduza un. GNU/Linux é tan\n"
+"propenso ós erros do operador coma calquera outro sistema operativo. Xa\n"
+"que \"root\" pode superar tódalas limitacións e eliminar de xeito non\n"
+"intencionado tódolos datos das particións ó acceder sen coidado ás\n"
+"propias particións, é importante que sexa difícil chegar a ser \"root\".\n"
+"\n"
+"O contrasinal debería ser unha mestura de caracteres alfanuméricos e ter "
+"unha\n"
+"lonxitude mínima de 8 caracteres. Nunca escriba nun papel o contrasinal de\n"
+"\"root\" -- isto fai que sexa moito máis sinxelo comprometer o seu sistema.\n"
+"\n"
+"Un consello: non faga que o contrasinal sexa moi longo ou complicado porque\n"
+"terá que ser capaz de lembrarse del!\n"
+"\n"
+"O contrasinal non se amosará na pantalla mentres o escribe. Para reducir as\n"
+"posibilidades dun erro ó escribilo terá que introducilo contrasinal dúas "
+"veces.\n"
+"Se comete dúas veces o mesmo erro de escritura, terá que usar este "
+"contrasinal\n"
+"``incorrecto'' a primeira vez que entre coma \"root\".\n"
+"\n"
+"Se desexa que un servidor de autenticación controle o acceso ó seu "
+"ordenador,\n"
+"prema no botón \"%s\".\n"
+"\n"
+"Se a súa rede usa servicios de autenticación coma LDAP, NIS, ou un PDC\n"
+"dun Dominio Windows, seleccione o axeitado de \"%s\". Se non sabe cal usar,\n"
+"deberialle preguntar ó administrador da súa rede.\n"
+"\n"
+"Se ten problemas para lembrar o contrasinal, ou se o seu ordenador nunca\n"
+"vai estar conectado á Internet e confía en tódalas persoas que usan o seu\n"
+"ordenador, pode elixir \"%s\"."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "autenticación"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Un cargador de arrinque é un pequeno programa que inicia o ordenador ó\n"
+"arrincar. É o responsable de arrincar o sistema enteiro. Normalmente, a\n"
+"instalación do cargador de arrinque é totalmente automática. DrakX\n"
+"analisará o sector de arrinque do disco e actuará de acordo co que atope\n"
+"alí:\n"
+"\n"
+" * se atopa un sector de arrinque de Windows, remprazarao cun sector de\n"
+"arrinque de GRUB/LILO. Deste xeito poderá arrincar GNU/Linux ou\n"
+"calquera outro sistema operativo que teña instalado no seu ordenador.\n"
+"\n"
+" * se atopa un sector de arrinque de GRUB ou LILO, remprazarao cun novo.\n"
+"\n"
+"Se DrakX non pode determinar onde debe situar o sector de arrinque, \n"
+"preguntaralle onde debe situalo. Xeralmente, \"%s\" é o mellor lugar.\n"
+"Se escolle \"%s\" non se instalará ningún cargador de arrinque. Use esta\n"
+"opción só se sabe o que está facendo."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Agora é a hora de seleccionar un sistema de impresión para o seu\n"
+"ordenador. Pode ser que outros sistemas operativos lle ofrezan un, pero\n"
+"Mandriva Linux ofrécelle dous. Cada un dos sistemas de impresión está\n"
+"máis adaptado a determinados tipos de configuración.\n"
+"\n"
+" * \"%s\" -- que é un acrónimo de ``print, do not queue'' (imprime, non o\n"
+"envies á cola), é a elección perfecta se vostede ten unha conexión directa\n"
+"á súa impresora, desexa esquecerse de impresoras saturadas, e non ten\n"
+"impresoras de rede. (\"%s\" só manexará casos de redes moi sinxelas e\n"
+"é algo lento cando se usa en redes.) É recomendable que use \"pdq\" se\n"
+"esta é a súa primeira experiencia con GNU/Linux.\n"
+"\n"
+" * \"%s\" significa `` Common Unix Printing System'' e é unha elección\n"
+"excelente para imprimir na súa impresora local ou nunha que estea na outra\n"
+"punta do planeta . É fácil de configurar e pode actuar coma un servidor ou\n"
+"coma un cliente para o antigo sistema de impresión \"lpd\", así que é\n"
+"compatible con antigos sistemas operativos os cales ainda poden necesitar\n"
+"servicios de impresión. Ainda que é bastante potente, a configuración\n"
+"básica é case tan sinxela coma a de \"pdq\". Se necesita emular un\n"
+"servidor \"lpd\", asegúrese de que activa o daemon \"cups-lpd\". \"%s\"\n"
+"inclúe interfaces gráficas para imprimir ou escoller as opcións da "
+"impresora\n"
+"e para administrar a impresora.\n"
+"\n"
+"Se elixe un agora, e máis tarde se da conta de que non lle gusta o seu\n"
+"sistema de impresión poderá cambialo executando PrinterDrake dende o\n"
+"Centro de Control de Mandriva Linux e premendo no botón \"%s\"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Experto"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX detectará primeiro calquera dispositivo IDE presente no seu "
+"ordenador.\n"
+"Tamén buscará unha ou máis tarxetas SCSI PCI no seu sistema. Se se atopa\n"
+"unha tarxeta SCSI, DrakX instalará automáticamente o driver axeitado.\n"
+"\n"
+"Xa que a detección de hardware non está libre de erros, DrakX podería "
+"fallar\n"
+"ó detectar os discos duros. Se o fai, terá que especificar o seu hardware\n"
+"manualmente.\n"
+"\n"
+"Se tivera que especificar a man o seu adaptador SCSI PCI, DrakX\n"
+"preguntaralle se desexa configurar as súas opcións. Debería deixarlle a\n"
+"DrakX probar as opcións do hardware para atopar as opcións específicas da\n"
+"tarxeta que son necesarias para inicializar o adaptador. A maioría das "
+"veces,\n"
+"DrakX non ha dar problemas neste paso.\n"
+"\n"
+"Se DrakX non é capaz de probar as opcións para determinar\n"
+"automáticamente que parámetros necesita pasarlle ó hardware, terá\n"
+"que configurar o driver a man."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": se se detecta unha tarxeta de son no seu sistema, amosarase\n"
+"aquí. Se ve que a tarxeta de son non é a que ten posta no seu sistema,\n"
+"pode premer no botón e escoller un driver diferente."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"DrakX presentaralle un resumo da información que reuniu sobre o seu\n"
+"sistema para que a repase. Dependendo do hardware que teña instalado\n"
+"na súa máquina, aparecerán ou non algunhas das seguintes entradas.\n"
+"Cada entrada está composta do elemento do hardware que se configurou,\n"
+"seguido por un pequeno resumo da configuración actual. Prema no botón\n"
+"\"%s\" correspondente para cambiala.\n"
+"\n"
+" * \"%s\": comprobe a configuración actual do mapa de teclado e cámbiea\n"
+"se fose necesario.\n"
+"\n"
+" * \"%s\": verifique o país seleccionado. Se non está neste país, prema\n"
+"no botón \"%s\" e elixa outro. Se o seu país non está na lista que se\n"
+"amosa, prema no botón \"%s\" para obter a lista completa de paises.\n"
+"\n"
+" * \"%s\": por defecto, DrakX deduce a súa zona horaria baseándose no\n"
+"país que elixiu. Pode premer no botón \"%s\" se non é a correcta.\n"
+"\n"
+" * \"%s\": verifique a configuración actual do rato e prema no botón para\n"
+"cambiala se fose necesario.\n"
+"\n"
+" * \"%s\": se preme no botón \"%s\" abrirase o asistente de configuración\n"
+"de impresoras. Consulte o capítulo correspondente da ``Guía de Inicio''\n"
+"para obter máis información sobre como configurar unha nova impresora.\n"
+"A interface do manual é semellante á que se usa durante a instalación.\n"
+"\n"
+" * \"%s\": se se detecta unha tarxeta de son no seu sistema, amosarase\n"
+"aquí. Se ve que a tarxeta de son non é a que está no seu ordenador,\n"
+"pode premer no botón e elixir un driver diferente.\n"
+"\n"
+" * \"%s\": se ten unha tarxeta de TV, aquí ó onde se mostra a información\n"
+"sobre a súa configuración. Se ten unha tarxeta de TV e non se detectou,\n"
+"prema en \"%s\" para intentar configurala a man.\n"
+"\n"
+" * \"%s\": pode premer en \"%s\" para cambia-los parámetros asociados\n"
+"ca tarxeta se cre que a configuración non é correcta.\n"
+"\n"
+" * \"%s\": por defecto, DrakX configura a súa interface gráfica cunha\n"
+"resolución \"800x600\" ou \"1024x768\". Se isto non se adapta a vostede,\n"
+"prema en \"%s\" para volver configurar a súa interface gráfica.\n"
+"\n"
+" * \"%s\": se desexa configurar o seu acceso á Internet ou a unha rede\n"
+"local, pode facelo agora. Consulte a documentación impresa ou use o\n"
+"Centro de Control de Mandriva Linux despois de rematar a instalación para\n"
+"sacar partido da axuda en liña.\n"
+"\n"
+" * \"%s\": permítelle configurar os enderezos do proxy HTTP e FTP no\n"
+"caso de que a máquina na que está instalando vaia estar detrás detrás\n"
+"dun servidor proxy.\n"
+"\n"
+" * \"%s\": esta entrada permítelle volver definir o nivel de seguridade que\n"
+"se estableceu nun dos pasos anteriores.\n"
+"\n"
+" * \"%s\": se pensa conectar a súa máquina á Internet, é unha boa idea\n"
+"protexela de intrusos configurando un cortalumes. Consulte a sección\n"
+"correspondente da ``Guía de Inicio'' para obter detalles sobre a\n"
+"configuración do cortalumes.\n"
+"\n"
+" * \"%s\": se desexa cambiar a configuración do seu cargador de arrinque,\n"
+"prema neste botón. Isto deberíano facer só os usuarios avanzados.\n"
+"Consulte a documentación impresa ou a axuda en liña sobre a\n"
+"configuración do cargador de arrinque no Centro de Control de Mandriva\n"
+"Linux.\n"
+"\n"
+" * \"%s\": a través desta entrada pode especificar cales servicios se\n"
+"executarán na súa máquina. Se ten pensado usar esta máquina coma\n"
+"un servidor sería unha boa idea revisar esta configuración."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Tarxeta RDSI"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Interface Gráfica"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Elixa o disco duro que desexa borrar para poder crear a súa nova partición\n"
+"Mandriva Linux. Teña tino, porque se perderán tódolos datos da unidade e\n"
+"non se poderán volver recuperar!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Prema en \"%s\" se desexa eliminar tódolos datos e particións presentes\n"
+"neste disco duro. Teña tino, despois de premer en \"%s\", non poderá\n"
+"recuperar ningún dato ou partición presente neste disco duro, incluindo\n"
+"calquera dato de Windows.\n"
+"\n"
+"Prema en \"%s\" para saír sen perder ningún dato ou partición presentes\n"
+"neste disco duro."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Seguinte ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Anterior"
diff --git a/perl-install/install/help/po/he.po b/perl-install/install/help/po/he.po
new file mode 100644
index 000000000..4c3adb0e1
--- /dev/null
+++ b/perl-install/install/help/po/he.po
@@ -0,0 +1,1493 @@
+# translation of DrakX.po to Hebrew
+# translation of he.po to Hebrew
+# translation of DrakX-he.po to hebrew
+# translation of DrakX-he-new.po to Hebrew
+# translation of DrakX-he.po to Hebrew
+# Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
+# This file is distributed under the GNU GPL license.
+# Ram Matityahu <linuxfun@email.com>, 2003.
+# nadav mavor <nadav@mavor.com>, 2003.
+# el-cuco <cuco3001@yahoo.com>, 2003.
+# Diego Iastrubni <iastrubn@actcom.co.il>, 2003.
+# dovix <dovix2003@yahoo.com>, 2004, 2005.
+# Itay Flikier <itayff@gmail.com>, 2005.
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: he\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-09-10 09:11+0300\n"
+"Last-Translator: dovix <dovix2003@yahoo.com>\n"
+"Language-Team: Hebrew <mdk-hebrew@iglu.org.il>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"לפני המשך ההתקנה, עליך לקרוא בעיון רב את תנאי ההסכם.\n"
+"ההסכם המצ\"ב נוגע להפצת מנדריבה לינוקס כמקשה אחת.\n"
+"אם כל התנאים מוסכמים עליך, עליך לסמן את התיבה \"%s\", \n"
+"אחרת עליך ללחוץ על הכפתור \"%s\" בכדי לאתחל המחשב שלך."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "האם להפעיל אפשרות זו?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"התקנת מנדריבה לינוקס פרוסה על מספר תקליטורים. אם חבילה מסויימת\n"
+"שנבחרה ממוקמת בתקליטור אחר, מגש כונן התקליטורים יפתח לצורך\n"
+"הכנסת תקליטור אחר לפי הצורך. אם התקליטור המבוקש אינו ברשותך,\n"
+"עליך ללחוץ על \"%s\" להמשך ללא התקנת החבילה שאינה זמינה."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"כעת עליך לבחור איזה חבילות ברצונך להתקין במערכת שלך.\n"
+"קיימות אלפי חבילות זמינות עבור מנדריבה לינוקס, ועל מנת\n"
+"לפשט עבורך את בחירת החבילות הגדרנו קבוצות המכילות\n"
+"תוכנות לפי נושא.\n"
+"\n"
+"החבילות השונות שוייכו לקבוצות המייצגות שימושים אפשריים של\n"
+"המערכת שלך. הקבוצות השונות מויינו לארבעה נושאים. באפשרותך\n"
+"לבחור יישומים מנושאים שונים, למשל התקנת \"תחנת עבודה\"\n"
+"יכולה לכלול יישומים מקבוצת \"שרת\". \n"
+"\n"
+" * \"%s\": עליך לבחור קבוצה אחת או יותר\n"
+"מנושא זה באם השימוש המיועד של המחשב הוא כתחנת עבודה.\n"
+"\n"
+" * \"%s\": אם בכוונתך להשתמש במערכת\n"
+"לפיתוח תוכנה, עליך לבחור את הקבוצות הנדרשות מנושא זה.\n"
+"קבוצת \"LSB\" תגדיר את המערכת שלך באופן שתתאים למפרט\n"
+"Linux Standard Base.\n"
+"\n"
+" בחירת בקבוצת \"LSB\" תתקין גם קרנל מסדרת \"2.4\" , במקום\n"
+"ברירת המחדל מסדרה \"2.6\". דבר זה נועד להבטיח תאימות\n"
+"של 100%% לתקן LSB. גם ללא בחירה בקבוצת LSB, המערכת\n"
+"תהיה תואמת למפרט LSB כמעט ב 100%%.\n"
+"\n"
+" * \"%s\": באם השימוש המיועד של מערכת\n"
+"זו הוא כשרת, עליך לבחור את השרותים שברצונך להתקין.\n"
+"\n"
+" * \"%s\": נושא זה מרכז את סביבות העבודה\n"
+"הגרפיות. עליך לבחור לפחות סביבת עבודה גרפית אחת באם\n"
+"ברצונך להשתמש בממשק גרפי במחשב זה.\n"
+"\n"
+"העברת סמן העכבר מעל שם קבוצה תגרום להצגת הסבר קצר\n"
+"על הקבוצה.\n"
+"\n"
+"סימון התיבה \"%s\" שימושי באם ברצונך שליטה מלאה\n"
+"על התקנת החבילות או שיש לך היכרות מוקדמת עם החבילות\n"
+"המוצעות.\n"
+"\n"
+"התחלת ההתקנה באופן \"%s\" תאפשר לך לבטל את\n"
+"הסימון מעל הקבוצות ולמנוע התקנה של חבילות חדשות. אופן\n"
+"זה שימושי לשדרוג או לעדכון מערכת קיימת.\n"
+"\n"
+"יש באפשרותך לבצע התקנה מינימלית ע\"י הסרת הסימון מכל\n"
+"הקבוצות במהלך התקנה רגילה (להבדיל משדרוג). במקרה זה\n"
+"יוצג חלון שיאפשר לך לבחור אפשרויות שונות עבור התקנה שכזו:\n"
+"\n"
+" * \"%s\": התקנת החבילות ההכרחיות בלבד\n"
+"להפעלת שולחן עבודה גרפי.\n"
+"\n"
+" * \"%s\": התקנת בסיס המערכת בתוספת\n"
+"מספר תוכנות עזר והתיעוד שלהן. תצורה זו שימושית להגדרת שרת.\n"
+"\n"
+" * \"%s\": אפשרות זו תתקין את מספר\n"
+"החבילות הקטן ביותר הנדרש למערכת לינוקס עובדת. תצורה זו\n"
+"מאפשרת עבודה רק דרך שורת הפקודה וגודלה הוא כ 65 MB בלבד."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "עדכון"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "עם מסמכים בסיסיים"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "התקנה מינימלית באמת"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"מסך זה מוצג היות וביקשת לבחור את החבילות שיותקנו באופן פרטני.\n"
+"עבור כל נושא מוצגות החבילות שבאפשרותך להתקין, במבנה \"עץ\"\n"
+"ובמיון לקבוצות ותתי-קבוצות. יש באפשרותך לבחור קבוצות, תתי-קבוצות,\n"
+"או לבחור בחבילות בודדות.\n"
+"\n"
+"כל פעם שתיבחר חבילה מהעץ, יופיע תיאור של תוכן החבילה מצד\n"
+"שמאל (באנגלית) שתספק לך מידע אודות החבילה.\n"
+"\n"
+"!! אם נבחרה חבילת שרת, בין אם ישירות או מכיוון שנבחרה קבוצה\n"
+"המכילה חבילה זו, יהיה עליך לאשר שאכן ברצונך להתקין חבילה זו\n"
+"(מסך האישור יוצג בהמשך). כברירת מחדל, מנדריבה לינוקס\n"
+"תפעיל כל שרות מותקן במהלך אתחול המחשב. גם אם שרתים אלו\n"
+"בטוחים ולא ידוע על בעיות אבטחה בזמן שחרור ההפצה, בהחלט\n"
+"ייתכן שבעיות אבטחה התגלו או יתגלו במועד מאוחר יותר. אם לא\n"
+"ידוע לך מה שרות מסויים אמור לעשות או למה הוא יותקן, עליך\n"
+"ללחוץ על \"%s\". בחירה ב \"%s\" תגרום\n"
+"להתקנת השרותים הרשומים ולהפעלתם באופן אוטומטי בזמן אתחול\n"
+"המחשב. !!\n"
+"\n"
+"האפשרות \"%s\" מיועדת לנטרל\n"
+"את הודעת האזהרה המופיעה כאשר תוכנת ההתקנה בוחרת בחבילות\n"
+"הנדרשות לצורך התקנה של חבילות נבחרות עקב תלויות. תלויות בין\n"
+"חבילות פרושן שהתקנת חבילה מסויימת מחייבת התקנת חבילות\n"
+"נוספות. תוכנת ההתקנה יכולה לזהות בעצמה את החבילות שיש\n"
+"להתקין על מנת לספק את התלויות הנדרשות.\n"
+"\n"
+"סמל התקליטון הקטן בתחתית הרשימה מאפשר לך לטעון רשימת\n"
+"חבילות שנוצרה במהלך התקנה קודמת. דבר זה שימושי באם יש\n"
+"ברשותך מספר מחשבים שברצונך להתקין עם מבחר חבילות דומה.\n"
+"בחירה בסמל זה תבקש ממך להכניס תקליטון שנוצר בסיום התקנה\n"
+"קודמת. הטיפ השני בשלב הקודם מסביר כיצד ניתן ליצור תקליטור\n"
+"כזה."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "תלויות אוטומטיות"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "סינכרון זמן אוטומטי"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"אפשרויות\n"
+"\n"
+" השלבים הבאים מאפשרים לך לבחור האם ברצונך שהסביבה\n"
+"הגרפית תופעל בטעינת המערכת. תשובת \"%s\" מתאימה\n"
+"למחשב שאמור לתפקד כשרת, או באם לא הצלחת להגדיר את\n"
+"התצוגה כראוי בשלב ההתקנה."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"בשלב זה, עליך לבחור היכן תותקן מערכת מנדריבה לינוקס בכונן\n"
+"הקשיח שלך. אם הכונן הקשיח שלך ריק או אם מערכת הפעלה אחרת\n"
+"עושה שימוש בכל השטח שעל הכונן, יהיה צורך לבצע חלוקת מחיצות.\n"
+"במילים פשוטות, חלוקת מחיצות משמעה חלוקה לוגית של שטח הכונן\n"
+"לאזורים שונים על מנת ליצור את השטח הנדרש להתקנת מערכת\n"
+"מנדריבה לינוקס החדשה שלך.\n"
+"\n"
+"מאחר ותהליך חלוקת המחיצות הינו בלתי-הפיך ועלול לגרום לאובדן\n"
+"מידע באם כבר מותקנת לך מערכת הפעלה אחרת על הכונן, חלוקת\n"
+"מחיצות הינה תהליך מפחיד ומלחיץ עבור משתמשים חסרי ניסיון.\n"
+"למזלך, תהליך ההתקנה מכיל אשף אשר מפשט את הפעולה. לפני\n"
+"המשך ההתקנה, עליך לקרוא ביסודיות ולהבין את ההוראות שלהלן.\n"
+"\n"
+"כתלות בתצורת הכונן הקשיח שלך, מוצגות בפניך מספר אפשרויות\n"
+"כלהלן:\n"
+" * \"%s\": אפשרות זו תבצע\n"
+"חלוקת מחיצות אוטומטית של שטח(ים) פנוי(ים). בחירה באפשרות\n"
+"זו לא תדרוש ממך שום צעד נוסף.\n"
+"\n"
+" * \"%s\": האשף זיהה מחיצת לינוקס\n"
+"אחת או יותר על הכונן הקשיח. בחירת אפשרות זו תאפשר לך להגדיר\n"
+"את נקודת העיגון של כל אחת מהמחיצות. נקודות העיגון הקיימות\n"
+"יוצגו כברירת מחדל, וברוב המקרים מומלץ שלא לשנות הגדרות אלו.\n"
+"\n"
+" * \"%s\": באם מותקנת\n"
+"על הכונן הקשיח שלך מערכת חלונות של מיקרוסופט העושה שימוש\n"
+"בכל השטח שעל הכונן, יהיה עליך לפנות מקום להתקנת גנו/לינוקס.\n"
+"יש באפשרותך למחוק את מחיצת החלונות לחלוטין כולל כל המידע\n"
+"שעליה (ע\"י בחירה ב\"מחיקת כל המידע הקיים שעל מחיצת חלונות\")\n"
+"או להקטין את גודל מחיצת החלונות העושה שימוש במערכת קבצים\n"
+"FAT או NTFS. שינוי גודל יכול להתבצע ללא אובדן\n"
+"מידע, בתנאי שביצעת איחוי (defragmentation) של מחיצת החלונות\n"
+"בטרם תחילת ההתקנה. מומלץ ביותר לגבות את המידע לפני ביצוע\n"
+"פעולה זו. מומלץ לבחור באפשרות זו באם הנך רוצה להשתמש גם\n"
+"במנדריבה לינוקס וגם בחלונות של מיקרוסופט במחשב זה.\n"
+"\n"
+" לפני בחירה באפשרות זו, עליך להבין שבסיום הפעולה גודל מחיצת\n"
+"החלונות שלך יהיה קטן מהגודל המקורי שלה. לפיכך יישאר לך פחות\n"
+"מקום לשמירת מידע ולהתקנת תוכנות של חלונות.\n"
+"\n"
+" * \"%s\": עליך לבחור באפשרות\n"
+"זו רק אם ברצונך למחוק את כל המידע הקיים בכונן הקשיח שלך\n"
+"ולהתקין את מערכת מנדריבה לינוקס בכל השטח שהתפנה. יש\n"
+"לנקוט משנה זהירות טרם בחירת אפשרות זו, מאחר ואין דרך לשחזר\n"
+"את המצב הקיים אחרי השלמת הפעולה.\n"
+"\n"
+" !! בחירה באפשרות הנ\"ל תגרום למחיקת כל המידע שעל הכונן\n"
+"הקשיח !!\n"
+"\n"
+" * \"%s\": אפשרות זו מופיעה\n"
+"כאשר כל הכונן תפוס על ידי מערכת חלונות של מיקרוסופט. בחירה\n"
+"באפשרות זו תגרום לפירמוט ומחיקת כל המידע שעל הכונן הקשיח.\n"
+"\n"
+" !! בחירה באפשרות הנ\"ל תגרום למחיקת כל המידע שעל הכונן\n"
+"הקשיח !!\n"
+"\n"
+" * \"%s\": יש לבחור באפשרות\n"
+"זו באם ברצונך לבצע חלוקת מחיצות בהתאמה אישית. זהירות - אפשרות\n"
+"זו מסוכנת ושימוש לא מושכל בה עלול לגרום לאובדן כל המידע שקיים\n"
+"בכונן הקשיח שלך. לפיכך, אפשרות זו מומלצת רק אם יש לך נסיון קודם\n"
+"בחלוקת מחיצות, ולאחר עיון בתיעוד המתאים המופיע במדריך המצורף\n"
+"לחבילות מנדריבה לינוקס הנרכשות בחנות."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "שימוש במחיצות קיימות"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "מחיקת כל המידע הקיים בכונן הקשיח"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"ההתקנה הסתיימה כעת, ומערכת הגנו/לינוקס שלך מוכנה לשימוש.\n"
+"עליך ללחוץ \"%s\" בכדי לאתחל את המחשב. נא לא לשכוח להוציא\n"
+"את תקליטור או תקליטון ההתקנה. הדבר הראשון שיופיע על המסך\n"
+"לאחר סיום בדיקות החומרה, הוא מנהל האתחול, שמאפשר לבחור\n"
+"איזו מערכת הפעלה לאתחל.\n"
+"\n"
+" הכפתור \"%s\" משמש להצגת שתי אפשרויות נוספות:\n"
+" \n"
+"* \"%s\": יצירת תקליטון תצורה אשר יאפשר התקנה\n"
+"חוזרת ללא עזרת מפעיל, תוך שימוש בהגדרות זהות להתקנה\n"
+"הנוכחית. \n"
+"\n"
+" לתשומת לבך, אחרי לחיצה על כפתור זה יופיעו שתי אפשרויות\n"
+"נוספות:\n"
+"\n"
+" *\"%s\". שחזור התקנה יתבצע באופן אוטומטי\n"
+"למחצה, כאשר חלוקת מחיצות תתבצע באופן אינטראקטיבי.\n"
+" \n"
+" *\"%s\". שחזור התקנה יתבצע באופן אוטומטי\n"
+"לחלוטין: תכולת הכונן הקשיח תמחק, וכל המידע השמור בו יאבד.\n"
+"\n"
+" אפשרות זאת שימושית מאוד, כאשר עליך לבצע התקנה על מספר\n"
+"רב של מחשבים דומים. ניתן לקבל מידע נוסף באיזור ההתקנה\n"
+"האוטומטית באתר שלנו.\n"
+"\n"
+" * \"%s\"(*): שמירת רשימת החבילות בהתקנה זאת.\n"
+"בכדי להשתמש ברשימה זאת עבור התקנה חדשה, עליך להתחיל\n"
+"התקנות חדשות מתקליטון זה. במסך הפתיחה, עליך ללחוץ על\n"
+"מקש F1 ואז לכתוב linux defcfg=\"floppy\" וללחוץ על Enter.\n"
+"\n"
+"(*) שמירת התצורה דורשת תקליטון מפורמט עם מערכת קבצים\n"
+"FAT. ליצירת תקליטון כזה במערכת לינוקס יש להשתמש בפקודת\n"
+"\"mformat a:\", או \"fdformat /dev/fd0\" ואז \"mkfs.vfat/dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "יצירת תקליטון התקנה אוטומטית"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"בשלב זה, עליך לבחור את סף האבטחה הרצוי עבור מחשב זה.\n"
+"ככלל אצבע, סף האבטחה אמור להיות גבוה יותר באם המערכת\n"
+"כוללת מידע רגיש, או אם המחשב יהיה מקושר לאינטרנט.\n"
+"ה\"מחיר\" של סף אבטחה גבוה יותר יבוא ברוב המקרים על\n"
+"חשבון קלות השימוש.\n"
+"\n"
+"באם קשה לך לבחור, מומלץ לאשר את ברירת המחדל. בכל\n"
+"מקרה יש באפשרותך לשנות את סף האבטחה בשלב מאוחר יותר\n"
+"דרך האשף המתאים במרכז הבקרה.\n"
+"\n"
+"השדה \"%s\" משמש להגדרת מנהל האבטחה האחראי למחשב\n"
+"זה. הודעות הנוגעות לאבטחת המערכת יישלחו לכתובת המצויינת\n"
+"בסעיף זה."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "מנהל אבטחה"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"בשלב זה, עליך לבחור היכן תותקן מערכת מנדריבה לינוקס בכונן הקשיח\n"
+"שלך. אם כבר הוגדרו מחיצותמתאימות, בין אם על ידי התקנה קודמת\n"
+"של גנו/לינוקס או על ידי כלי אחר לחלוקת מחיצותף באפשרותך\n"
+"להשתמש במחיצות שהוגדרו קודם. אחרת, עליך להגדיר את חלוקת\n"
+"המחיצות לצורך ההתקנה.\n"
+"\n"
+"על מנת ליצור את המחיצות, עליך לבחור בשלב ראשון את הכונן הקשיח\n"
+"בו תותקן המערכת. באפשרותך לבחור את הכונן הקשיח הראשון על ידי\n"
+"בחירת hda (או sda לכונן SCSI), לבחור את הכונן השני על ידי בחירת\n"
+"hdb (או sdb לכונן SCSI) וכן הלאה.\n"
+"\n"
+"באפשרותך לבחור אחת מהאפשרויות הבאות כדי לחלק את הכונן הקשיח:\n"
+"\n"
+" * \"%s\": אפשרות זו תמחק את כל המחיצות המוגדרות בכונן הקשיח\n"
+"\n"
+" * \"%s\": אפשרות זו מאפשרת לך ליצור באופן אוטומטי מחיצתext3\n"
+"ומחיצת החלפה בשטח הפנוי של הכונן הקשיח שלך\n"
+"\n"
+"\"%s\": מאפשר לך לבחור באפשרויות נוספות:\n"
+"\n"
+" * \"%s\": גיבוי טבלת המחיצות לתקליטון. אפשרות זו\n"
+"שימושית לשחזור טבלת המחיצות במקרה הצורך. מומלץ מאוד לבצע\n"
+"שלב זה כאמצעי ביטחון.\n"
+"\n"
+" * \"%s\": שחזור טבלת מחיצות שנשמרה קודם לכן בתקליטון.\n"
+"\n"
+" * \"%s\": אם טבלת המחיצות שלך נפגמה, באפשרותך לנסות\n"
+"לשחזר אותה באמצעות אפשרות זו. עליך לנהוג במשנה זהירות ולזכור\n"
+"שהצלחת הפעולה אינה מובטחת.\n"
+"\n"
+" * \"%s\": ביטול כל השינויים ושחזור טבלת המחיצות המקורית\n"
+"של הכונן בטרם בוצעו השינויים.\n"
+"\n"
+" * \"%s\": ביטול הסימון מאפשרות זו יחייב משתמשים לעגן ולנתק\n"
+"באופן ידני מדיות שליפות כגון תקליטורים ותקליטונים.\n"
+"\n"
+" * \"%s\": אפשרות זו תפעיל אשף לחלוקת הכונן הקשיח. השימוש\n"
+"באשף מומלץ למשתמשים לא מנוסים בחלוקת מחיצות.\n"
+"\n"
+" * \"%s\": אפשרות זו מבטלת את השינויים שביצעת.\n"
+"\n"
+" * \"%s\": איפשור פעולות נוספות על המחיצות (סוג,)\n"
+"אפשרויות, פירמוט) והצגת מידע מתקדם על הכונן הקשיח.\n"
+"\n"
+" * \"%s\": אפשרות זו תשמור את השינויים שביצעת לכונן הקשיח\n"
+"לאחר סיום שלב חלוקת המחיצות.\n"
+"\n"
+"בעת הגדרת גודל מחיצה, באפשרותך לשנות את גודל המחיצה\n"
+"בעזרת מקשי החיצים על המקלדת.\n"
+"\n"
+"הערה: באפשרותך להפעיל כל אפשרות בעזרת המקלדת. מקש [Tab]\n"
+"או מקשי החיצים [מעלה/מטה] מאפשרים לך לעבור בין המחיצות.\n"
+"\n"
+"כאשר נבחרה מחיצה, באפשרותך ללחוץ על:\n"
+"\n"
+" * Ctrl-c ליצירת מחיצה חדשה (כאשר נבחרה מחיצה ריקה)\n"
+"\n"
+" * Ctrl-d למחיקת מחיצה\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"הפרק ext2FS במדריך המשתמש (לרוכשי חבילה ממנדריבה)\n"
+"מכיל מידע על סוגי המחיצות השונים שבאפשרותך להגדיר.\n"
+"\n"
+"אם מחשב זה משתמש במעבד PowerPC (למשל מקינטוש), עליך ליצור\n"
+"מחיצת HFS קטנה בגודל 1MB שתשמש את טוען המערכת yaboot.\n"
+"באפשרותך להגדיר יותר מקום למחיצה זו, למשל 50MB, כדי להכין מקום\n"
+"לקבצי kernel ו-ramdisk חלופיים שיאפשרו לך להחלץ ממצבי תקלה\n"
+"שימנעו ממך לאתחל את המערכת באופן הרגיל."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "עיגון אוטומטי של התקן-נשלף"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "מעבר בין מצבי רגיל\"מומחה "
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": עליך לבדוק את בחירת המדינה. אם.\n"
+"מיקומך אינו במדינה זאת, עליך ללחוץ על הכפתור %s\n"
+"ואז לבחור מדינה אחרת. אם המדינה שלך לא מופיעה ברשימה זו,\n"
+"עליך ללחוץ על הכפתור \"%s\" לרשימה מורחבת."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"שלב זה מופעל רק כאשר זוהתה מחיצת גנו/לינוקס קיימת במחשבך.\n"
+"\n"
+"האשף צריך לדעת אם ברצונך לבצע התקנה חדשה או לשדרג את מערכת\n"
+"מנדריבה לינוקס הנוכחית המותקנת במחשב זה.\n"
+"\n"
+" * \"%s\": אופן התקנה זה ימחק ברוב המקרים את המערכת הנוכחית.\n"
+"עם זאת, ובכפוף לחלוקת המחיצות הקיימת שלך, יש באפשרותך למנוע\n"
+"מחלק מהמידע הקיים שלך (בעיקר מחיצת home/) מלהיות משוכתב.\n"
+"אפשרות זו שימושית אם ברצונך לשנות את אופן חלוקת הכונן הקשיח\n"
+"לשנות את מערכת הקבצים.\n"
+"\n"
+" * \"%s\": אופן התקנה זה יאפשר לך לעדכן את החבילות המותקנות\n"
+"במערכת מנדריבה לינוקס שלך. אופן חלוקת המחיצות ומידע המשתמש\n"
+"שלך לא ישוכתבו. רוב שלבי ההתקנה האחרים עדיין זמינים, באופן דומה\n"
+"להתקנה רגילה.\n"
+"\n"
+"הערה:\n"
+"בחירת אפשרות ה\"שדרוג\" אמורה לפעול על מערכות מנדריבה לינוקס\n"
+"מגרסה 8.1 ואילך. שדרוג גרסאות הקודמות לגרסת מנדריבה לינוקס 8.1\n"
+"אינה מומלצת."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"אשף ההתקנה בחר עבורך את פריסות המקלדת המתאימות לשפות שבחרת\n"
+"בשלב קודם. עליך לבחור את פריסת המקלדת מבין האפשרויות המופיעות\n"
+"להלן או לאשר את ברירת המחדל.\n"
+"\n"
+"במקרים מסויימים, יתכן כי המקלדת שברשותך אינה תואמת בדיוק לשפה בה\n"
+"בחרת. לדוגמה, אם שפת האם שלך היא אנגלית אך מקום מגוריך הוא בשוויץ,\n"
+"ייתכן ויש ברשותך מקלדת שוויצרית. לחילופין, אם מקום מגורייך הוא בקוויבק\n"
+"(קנדה) אך בחרת בשפה האנגלית, ייתכן והשפה בה בחרת ופריסת המקלדת\n"
+"שברשותך אינם תואמים. בשני המצבים, השלב הנוכחי בהתקנה יאפשר לך\n"
+"לבחור את פריסת המקלדת הרצוייה מתוך רשימה.\n"
+"\n"
+"באם המקלדת שברשותך לא מופיעה ברשימה, עליך ללחוץ על הכפתור \"%s\"\n"
+"על מנת להציג רשימה מלאה של המקלדות הנתמכות.\n"
+"\n"
+"אם פריסת המקלדת הרצוייה אינה מבוססת לאטינית, החלון הבא יאפשר לך\n"
+"לבחור את צרוף המקשים שיאפשר לך להחליף בין פריסות שונות."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "ספרדית"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "עם הדמיית גלגלת"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "כללי | כל עכבר PS/2 ו-USB"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"נא לבחור את היציאה הנכונה. לדוגמה, יציאה \"COM1\" תחת Windows תקרא, \"ttyS0"
+"\"\n"
+"תחת GNU/Linux."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "אימות"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"כעת עליך לבחור מנגנון הדפסה במערכת. מערכות הפעלה אחרות אפשרו לך\n"
+"להשתמש במערכת הדפסה אחת, אולם מנדריבה לינוקס נותנת לך שתיים\n"
+"כל אחת ממערכות ההדפסה מותאמות לשימושים מסוימים ולתצורות שונות. \n"
+"\n"
+" * \"%s\" שהיא ראשי תיבות של \"הדפס, אל תוסיף לתור\" היא\n"
+"הבחירה המומלצת אם יש לך גישה ישירה למדפסת, ברצונך לתקן בעיות של\n"
+"דפים שנתקעים במדפסת, ואין לך מדפסות רשת. (\"%s\" יכולה\n"
+"לשמש בתצורות רשת פשוטות, אך היא עלולה להיות איטית במקצת).\n"
+"מומלץ להשתמש במערכת זו באם אין לך היכרות קודמת עם גנו/לינוקס.\n"
+"\n"
+"* \"%s\" - שהיא ראשי תיבות של \"מערכת הדפסה\n"
+"סטנדרטית ביוניקס\" מצוינת להדפסה למדפסת מקומית או למדפסת\n"
+"שנמצאת בחצי השני של העולם. היא פשוטה להגדרה ויכולה לשמש\n"
+"בתור לקוח אל מערכת ההדפסה הישנה \"lpd\" , כך שהיא מבטיחה\n"
+"תאימות עם מערכות הפעלה ישנות יותר.אשר אולי יצטרכו שירותי הדפסה.\n"
+"למרות עצמתה הרבה, התצורה הבסיסית פשוטה כמעט כמו \"pdq\".\n"
+" אם נדרשת לך הדמיית שירותי \"lpd\" עליך לאפשר את שרות הרקע\n"
+"\"cups-lpd\" המערכת \"%s\" כוללת גם כלי גרפי \n"
+"להדפסה או לבחירה של אפשרויות הדפסה, וכמו כן לניהול המדפסת.\n"
+"\n"
+"אם לאחר ההתקנה יתברר כי מערכת ההדפסה אינה מתאימה לצרכים\n"
+"שלך, יש באפשרותך לשנות אותה על ידי הרצת אשף המדפסת\n"
+"ממרכז הבקרה של מנדריבה לינוקס ובחירה בכפתור \"%s\"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "מצב מומחה"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"בתחילה יבוצע זיהוי התקני IDE שבמחשבך על ידי DrakX שגם יסרוק אחר אחד או\n"
+" יותר כרטיסי PCI SCSI במערכת שלך. אם כרטיס SCSI נמצא, DrakX יתקין מנהל התקן\n"
+" מתאים באופן אוטומטי.\n"
+" \n"
+" \n"
+"מפני שזיהוי החומרה האוטומטי אינו מובטח, DrakX עלול להיכשל בזיהוי הכוננים "
+"הקשיחים\n"
+" המותקנים במחשבך. במקרה שכזה יהיה עליך להגדיר את החומרה שברשותך באופן ידני.\n"
+" \n"
+" \n"
+" אם היה עליך להגדיר מתאם PC SCSI באופן ידני, DraxX ישאל אם ברצונך לעדכן את\n"
+" ההגדרות עבורו. עליך לאפשר ל DrakX לסרוק את החומרה אחר הגדרות ייחודיות "
+"לכרטיס\n"
+" אשר דרושות לאתחול המתאם. ברוב המקרים DrakX יצליח להשלים שלב זה ללא בעיות\n"
+" מיוחדות.\n"
+" \n"
+" \n"
+" אם DrakX נכשל באיתור האוטומטי של הפרמטרים הנדרשים עבור החומרה, יהיה עליך\n"
+" להגדיר את מנהל ההתקנים בעצמך."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": אם זוהה כרטיס קול במערכת שלך, הוא מוצג להלן.\n"
+"אם שמת לב שהכרטיס הקול שמוצג אינו מתאים לחומרה שלך, באפשרותך,\n"
+"ללחוץ על הכפתור ולבחור מנהל-התקן אחר."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "מודם ISDN "
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "ממשק גרפי"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"עליך לבחור את הכונן הקשיח שברצונך למחוק על מנת לפנות מקום\n"
+"למחיצה החדשה עבור מנדריבה לינוקס. זהירות !!! כל המידע\n"
+"שנמצא על המחיצה יימחק ולא תהיה אפשרות לשחזר אותו!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"עליך ללחוץ על %s אם ברצונך למחוק את כל המחיצות והמידע על כונן קשיח\n"
+"זה. זהירות: אחרי לחיצה על \"%s\" אין דרך לשחזר את המחיצות והמידע\n"
+"המופיעים בכונן קשיח זה, כולל כל מידע של מערכת חלונות.\n"
+"נא ללחוץ על \"%s\" לעצירת תהליך זה ללא איבוד המידע והמחיצות הקיימים."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "המשך ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- קודם"
+
diff --git a/perl-install/install/help/po/hi.po b/perl-install/install/help/po/hi.po
new file mode 100644
index 000000000..42bd30982
--- /dev/null
+++ b/perl-install/install/help/po/hi.po
@@ -0,0 +1,1467 @@
+# translation of DrakX-hi.po to हिन्दी, भारत (Hindi, India)
+# Copyright (C) 2003,2004 Free Software Foundation, Inc.
+# धनञ्जय शर्मा (Dhananjaya Sharma) <dysxhi@yahoo.co.in>, 2003, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-hi\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2004-04-04 21:54+0530\n"
+"Last-Translator: धनञ्जय शर्मा (Dhananjaya Sharma) <dysxhi@yahoo.co.in>\n"
+"Language-Team: हिन्दी (Hindi) <dysxhi@yahoo.co.in>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3\n"
+"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"आगे बढ़ने के पूर्व, आपको अधिकारपत्र की शर्तों को सावधानीपूर्वक पढ़ लेना चहिए। यह समस्त \n"
+"मैनड्रिव लिनक्स वितरण को कवर करता है । यदि आप इसमें दिये हुई सभी शर्तों को मानते है,\n"
+" तो \"%s\" बाक्स पर चिह्नन्ति करें। यदि नहीं, तो \"%s\" बटन पर क्लिक करने से, \n"
+"आपका कम्प्यूटर रीबूट हो जायेगा ।"
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"जीएनयू/लिनक्स एक बहु-उपयोक्ता तंत्र है, इसका अर्थ है कि प्रत्येक उपयोगकर्ता के पास उनकी\n"
+"अपनी वरीयतायें, उनकी अपनी संचिकायें इत्यादि हो सकती है। बहु-उपयोक्ता तंत्रों के बारे में\n"
+"और अधिक जानने के लिए आप ``स्ट्रार्टर निर्देशिका'' को पढ़ सकते है। परन्तु \"रूट\" के जैसे ना\n"
+"होते हुए, जो कि तंत्र प्रबंधक है, उपयोगकर्ता जिनको आप इस समय जोड़ेगे, को कुछ भी परिवर्तित "
+"ना करने\n"
+"की अनुमति होगी सिवाय उनकी अपनी संचिकाओं और उनकी अपनी संरचनाओं की जिससे समूचे तंत्र\n"
+"पर प्रभाव डालने वाले, अनिच्छापूर्वक या हानि-पहुँचाने-के-उद्वेश्य से किये हुए परिवर्तनों से\n"
+"इस तंत्र की रक्षा होती है। आपको अपने लिए कम-से-कम एक नियमित उपयोगकर्ता का\n"
+"निर्माण करना होगा -- ये वह खाता है जिसका आपको नियमित, प्रतिदिन उपयोग हेतु\n"
+"करना चाहिए। हालांकि कुछ भी और सबकुछ करने के लिए \"रूट\" की भांति लॉग\n"
+"करना बहुत सहज है, परन्तु यह अति खतरनाक भी है!\n"
+"एक छोटी सी त्रुटि का अर्थ हो सकता है कि आपका तंत्र अब और कार्य ना करें ।\n"
+"यदि एक नियमित उपयोगकर्ता की भांति आप एक गम्भीर त्रूटि करते है, तो अधिक-से-अधिक यह "
+"हो\n"
+"सकता है कि आप कुछ सूचनाओं को खो बैठें, परन्तु समस्त तंत्र पर इसका कोई प्रभाव नहीं पड़ेगा।\n"
+"\n"
+"प्रथम प्रविष्टी आपके वास्तविक नाम को पूछती है । वास्तव में, यह एक आवश्यक सूचना नहीं है।\n"
+"-- वास्तव में आप जो चाहें वो बता सकते है । इस प्रविष्टी में टाइप किये गये हुए प्रथम शब्द को\n"
+"ड्रैकएक्स उपयोग करेगा और इसकी \"%s\" फ़ील्ड में प्रतिलिपि बनायेगा, जो कि इस उपयोगकर्ता\n"
+" का नाम होगा जिससे तंत्र में लॉग किया जा सकेगा । यदि आप चाहते है, तो आप डिफ़ाल्ट को "
+"बदल\n"
+"सकते है और उपयोगकर्ता के नाम को परिवर्तित कर सकते है । अगला चरण एक कूटशब्द को बताना "
+"है।\n"
+"सुरक्षा की दृष्टि से, एक बिना-अधिकार-वाले (नियमित) उपयोगकर्ता का कूटशब्द, \"रूट\" के "
+"कूटशब्द जितना\n"
+"आवश्यक नहीं है, परन्तु ऐसा कोई कारण नहीं है कि इसे खाली रख कर या अति सरल बना कर,\n"
+"इस पर ध्यान ना दिया जायें: अंत में, यह आपकी संचिकायें होगी जो कि\n"
+"संकट में होगी।\n"
+"\n"
+"जब आप \"%s\" पर क्लिक करते है, तब आप अन्य उपयोगकर्ताओं को जोड़ सकते है। अपने मित्रों में "
+"से\n"
+"हर एक के लिए, एक उपयोगकर्ता को जोड़ें । उदाहरण हेतु अपने पिता या अपनी बहन के लिए । \"%"
+"s\"\n"
+"पर क्लिक करें जब आप उपयोगकर्ताओं का जोड़ना समाप्त कर लें ।\n"
+"\n"
+"\"%s\" बटन पर क्लिक करके आप डिफ़ाल्ट \"shell\" को उस उपयोगकर्ता के लिए\n"
+"बदल सकते है (डिफ़ाल्ट bash है)।\n"
+"\n"
+"जब आप उपयोगकर्ताओं को जोड़ना समाप्त कर चुकेगें, तब आपसे एक उपयोगकर्ता का चयन करने के "
+"लिए\n"
+"पूछा जायेगा जो कि जब कम्प्यूटर आरम्भ होने के बाद स्वाचालित रूप से तंत्र में लॉग कर सके ।\n"
+"यदि आप इस लक्षण में रूचि रखते है (और स्थानीय सुरक्षा के बारे में अधिक चिंता नहीं करते है),\n"
+" तो इच्छित उपयोगकर्ता और विण्डो प्रबंधक का चयन करें और फ़िर \"%s\" पर क्लिक करें।\n"
+"यदि आप इस सुविधा के इच्छुक नहीं है, तो \"%s\" बॉक्स को अचिह्नन्ति करें।"
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "क्या आप इस लक्षण का उपयोग करना चाहते है?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"आपकी हार्ड डिस्क पर खोजे गये विद्यमान लिनक्स विभाजनों की यह सूची है । \n"
+"आप विज़ार्ड द्वारा बनायी गयी पसन्दों को रख सकते है, क्योंकि लगभग सभी सामान्य\n"
+"संसाधनों के लिए यह अच्छी होती है। यदि आप किन्हीं परिवर्तनों को करते है, तो आपको \n"
+"कम-से-कम एक रूट विभाजन (\"/\") को परिभाषित करना चाहिए । एक अति लघु विभाजन का\n"
+" चयन ना करें अन्यथा आप इस पर अधिक सॉफ़्टवेयर को संसाधित नहीं कर पायेगें । यदि आप अपनी\n"
+"सूचनाओं को एक अलग विभाजन पर सुरक्षित रखने चाहते है, तो आपको एक होम \"/home\" विभाजन "
+"का \n"
+"भी निर्माण करना होगा (तभी सम्भव है यदि आपके पास एक से अधिक लिनक्स विभाजन उपलब्ध हो)"
+"।\n"
+"\n"
+"प्रत्येक विभाजन निम्न तौर पर सूचीबद्ध है: \"नाम\", \"क्षमता\"।\n"
+"\n"
+"\"नाम\" व्यवस्थित है: \"हार्ड ड्राइव का प्रकार\", \"हार्ड ड्राइव की संख्या\",\n"
+"\"विभाजन संख्या\" (उदाहरण हेतु , \"hda1\")। \n"
+"\n"
+"\"हार्ड ड्राइव का प्रकार\" \"hd\" है यदि आपकी हार्ड ड्राइव एक आईडीई हार्ड ड्राइव है "
+"और \n"
+"\"sd\" यदि यह एक स्कैसी हार्ड ड्राइव है। \n"
+"\n"
+"\"हार्ड ड्राइव संख्या\" \"hd\" या \"sd\" के बाद की एक संख्या होती है। \n"
+"आईडीई हार्ड ड्राइवों के लिए:\n"
+"\n"
+" * \"a\" का अर्थ है \"मुख्य आईडीई नियंत्रक पर मास्टर हार्ड ड्राइव\";\n"
+"\n"
+" * \"b\" का अर्थ है \"मुख्य आईडीई नियंत्रक पर स्लेव हार्ड ड्राइव\";\n"
+"\n"
+" * \"c\" का अर्थ है \"द्वितीय आईडीई नियंत्रक पर मास्टर हार्ड ड्राइव \";\n"
+"\n"
+" * \"d\" का अर्थ है \"द्वितीय आईडीई नियंत्रक पर स्लेव हार्ड ड्राइव\"।\n"
+"\n"
+"SCSI हार्ड ड्राइवों के साथ, एक \"a\" का अर्थ है \"निम्नतम SCSI पहचानसंख्या\", एक \"b"
+"\" का अर्थ है\n"
+"\"द्वितीय निम्नतम SCSI पहचानसंख्या\", इत्यादि।"
+
+#: ../help.pm:88
+#, fuzzy, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"मैनड्रिव लिनक्स संसाधक को अनेकों सीडी-रॉमों पर वितरित किया जाता है । \n"
+"यदि एक चयनित पैकेज अन्य सीडी-रॉम पर स्थित है, तो ड्रैकएक्स इस वर्तमान \n"
+"सीडी को बाहर निकाल देगा और जैसी की आवश्यकता है आपसे सही सीडी को डालने को कहेगा।"
+
+#: ../help.pm:95
+#, fuzzy, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"अब समय है कि आप बतायें कि आप किन कार्यक्रमों को अपने कम्प्यूटर ।\n"
+"पर संसाधित करना चाहते है । मैनड्रिव लिनक्स के लिए असंख्य पैकेजों की \n"
+"उपलब्धता है, और इसे सहज बनाने हेतु, समान पैकेजों को एक जैसे कार्यक्रमों \n"
+"वाले समूहों में रखा गया है।\n"
+"\n"
+"पैकेजों को आपकी मशीन के एक विशेष उपयोग के लिए सबंधित समूहों में क्रमबद्ध\n"
+"किया गया है । मैनड्रिव लिनक्स पैकेजों को चार वर्गों में क्रमबद्ध करता है। \n"
+"आप विभिन्न वर्गों से कार्यक्रमों से मिला और मेल कर सकते है, इसप्रकार से\n"
+"``कार्यकेन्द्र'' संसाधन ``विकास'' वर्ग में संसाधित कार्यक्रमों को भी ले सकता है।\n"
+"\n"
+" * \"%s\": यदि आप अपनी मशीन को एक कार्यकेन्द्र की भांति उपयोग करने की योजना बना रहे "
+"है, तो\n"
+"कार्यकेन्द्र वर्ग में से एक या अधिक समूहों का चयन करें।\n"
+"\n"
+" * \"%s\": यदि अपनी मशीन को प्रोग्रामिंग के लिए उपयोग करने हेतु योजना बना रहा है,\n"
+"तो इस वर्ग से निर्दिष्ट समूहों का चयन करें।\n"
+"\n"
+" * \"%s\": यदि आप अपनी मशीन एक सर्वर बनाने के इच्छुक है, तो उन सामान्य सेवाओं का चयन "
+"करें जिन्हें \n"
+"आप अपनी मशीन पर संसाधित करना चाहते है।\n"
+"\n"
+" * \"%s\": यह वह स्थान है जहाँ आप अपने पसन्दीदा सचित्र \n"
+"वातावरण का चयन करेगें । यदि आप एक सचित्र इन्टरफ़ेस को \n"
+"रखना चाहते है, तो कम-से-कम एक का चयन किया जाना चाहिए।\n"
+"\n"
+"माउस कर्सर को एक समूह के नाम के ऊपर ले जाने पर, यह उस वर्ग के बारे में एक लघु \n"
+"विवरण दिखायेगा । एक नियमित संसाधन को करते समय (एक उन्नयन के विपरीत), \n"
+"यदि आपने सभी समूहों को अचयनित कर दिया है , तो एक संवाद एकदम से सबसे ऊपर दिखेगा और \n"
+"एक निम्नतम संसाधन के लिए आवश्यक विभिन्न विकल्पों को प्रस्तावित करेगा:\n"
+"\n"
+" * \"%s\": एक कार्यशील सचित्र डेस्कटाप हेतु, कम-से-कम सम्भव पैकेजों को \n"
+"संसाधित करता है।\n"
+"\n"
+" * \"%s\": आधार तंत्र को बेसिक उपयोगिता कार्यक्रमों और उनके प्रलेखन के साथ\n"
+"संसाधित करता है। यह संसाधन एक सर्वर की स्थापना करने हेतु उचित है।\n"
+"\n"
+" * \"%s\": एक कार्यरत लिनक्स तंत्र को पाने के लिए, नितान्त आवश्यक कम-से-कम \n"
+"पैकेजों को संसाधित करता है । इस संसाधन के साथ, आपके पास सिर्फ़ एक\n"
+"कॉमाण्ड लाइन इन्टरफ़ेस होगा । इस संसाधन का कुल आकार लगभग\n"
+"६५ मेगाबाइट है।\n"
+"\n"
+"आपने \"%s\" बाक्स को चिह्नन्ति किया है, जो कि उपयोगी है, यदि आप \n"
+"प्रस्तावित पैकेजों से परिचित है या यदि क्या संसाधित होगा इस पर \n"
+"आप सम्पूर्ण नियंत्रण चाहते है।\n"
+"\n"
+"यदि आपने संसाधन को \"%s\" विधा में आरम्भ किया है, तो किसी नवीन पैकेज के संसाधन से\n"
+"बचाव के लिए, आप सभी वर्गों को अचिह्नन्ति कर सकते है । एक विद्यमान तंत्र की मरम्मत या\n"
+"उन्नयन के लिए यह उपयोगी होता है।"
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "उन्नयन"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "आधारभूत प्रलेखन के साथ"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "वास्तविक निम्नतम संसाधन"
+
+#: ../help.pm:152
+#, fuzzy, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"यदि आपने संसाधन प्रक्रिया को यह बताया है कि आप एक-एक करके पैकेजों का चयन करना चाहते "
+"है,\n"
+"तो यह आपको एक वृक्ष प्रस्तुत करेगा जिसमें कि सभी पैकेजों को समूहों और उप-समूहों में वर्गीकृत\n"
+"किया गया है। इस वृक्ष को देखते समय, आप किसी भी समूहों का, उप-समूहों का,\n"
+"या एक-एक करके पैकेजों का चयन कर सकते है। \n"
+"\n"
+"जब भी आप इस वृक्ष पर स्थित एक पैकेज का चयन करते है, तो दाँयी तरफ़ एक विवरण आता है\n"
+"और आपको ज्ञात करता है कि इस पैकेज का उद्वेश्य क्या है।\n"
+"\n"
+"!! यदि एक सर्वर पैकेज का चयन किया जा चुका है, क्योंकि या तो आपने विशिष्ट रूप से \n"
+"एक अलग पैकेज का चयन किया है या क्योंकि यह एक पैकेजों के समूह का भाग \n"
+"है, तो आपसे यह सुनिश्चित करने को पूछा जायेगा कि वास्तव में इस\n"
+"सर्वरों को संसाधित करना चाहते है। डिफ़ाल्ट के तौर पर, मैनड्रिव लिनक्स स्वतः\n"
+"ही किसी संसाधित सेवाओं को बूट के समय आरम्भ करेगा । यदि वे सुरक्षित भी हो\n"
+"और वितरण जिस समय भेजा जा रहा है उस समय तक उनके बारे में कोई ज्ञात विचारणीय विषय\n"
+"नहीं हो, फ़िर भी यह पूर्णता सम्भव है कि इस मैनड्रिव लिनक्स को अंतिम रूप\n"
+"देने के उपरान्त, सुरक्षा छिद्रों को खोजा गया हो। यदि आप नहीं जानते है\n"
+"कि एक विशेष सेवा को क्या करना चाहिए या इसे क्यों संसाधित किया गया है, \n"
+"तो \"%s\" पर क्लिक करें। \"%s\" पर क्लिक करने से सूचीबद्व सेवाओं का संसाधन\n"
+"किया जायेगा और डिफ़ाल्ट के तौर पर, इन्हें स्वतः ही आरम्भ किया जायेगा ।!!\n"
+"\n"
+"\"%s\" विकल्प का उपयोग चेतावनी संवाद को निष्क्रिय करने के लिए होता है\n"
+"जो कि तब दिखता है जब भी संसाधन प्रक्रिया स्वतः ही आधिनता विषय को स्थिर करने के लिए\n"
+"एक पैकेज का चयन करती है। कुछ पैकेजों के मध्य ऐसा सबंध होता है जिससे कि\n"
+"एक पैकेज के संसाधन को आवश्यकता होती है कि कुछ अन्य कार्यक्रम भी संसाधित हो।\n"
+"संसाधन प्रक्रिया इस बात का निर्णय कर सकती है कि एक आधिनता को सन्तोष देने के लिए,\n"
+"किन पैकेजों की आवश्यकता है जिससे संसाधन सफ़लतापूर्वक सम्पन्न हो जायें।\n"
+"\n"
+"सूची के अंत में दिया हुआ एक छोटा सा फ़्लापी आइकॉन आपको एक पूर्व में किये हुए संसाधन के \n"
+"दौरान निर्मित पैकेजों की सूची को लोड करने की अनुमति प्रदान करता है। यह उपयोगी है यदि\n"
+"आप के पास बहुत सी मशीनें है जिन्हें आप समान रूप से संरचित करना चाहते है। \n"
+"इस आईकॉन पर क्लिक करने से, पूर्व में किये गये अन्य संसाधन के अंत में निर्मित एक फ़्लापी\n"
+"डिस्क को डालने के लिए आपसे कहा जायेगा। ऐसी एक फ़्लापी का निर्माण कैसे करने के लिए, \n"
+"अंतिम चरण के द्वितीय संकेत को पढ़ें।"
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "स्वतः अधिनताऐं"
+
+#: ../help.pm:186
+#, fuzzy, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": \"%s\" बटन पर क्लिक करने से प्रिंटर संरचना विज़ार्ड खुल जायेगा।\n"
+"एक नवीन प्रिंटर को स्थापित कैसे किया जायें इस विषय में और अधिक \n"
+"जानकारी प्राप्त करने हेतु स्टार्टर निर्देशिका में अनुरूप पाठ को देखें । वहाँ प्रस्तुत \n"
+"किया हुआ इन्टरफ़ेस वही है जिसका की उपयोग संसाधन के दौरान किया गया है।"
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"इस संवाद का उपयोग यह चयन करने हेतु किया जाता है कि आप किन सेवाओं को बूट के समय\n"
+"आरम्भ करना चाहते है।\n"
+"\n"
+"वर्तमान संसाधन पर उपलब्ध सभी सेवाओं की सूची को ड्रैक एक्स दिखायेगा ।\n"
+"प्रत्येक की सावधानीपूर्वक समीक्षा करें और जिनकी बूट के समय आवश्यकता नहीं है\n"
+" उन्हें अचिह्नन्ति करें ।\n"
+"\n"
+"एक सेवा के बारे में , जब इसका चयन किया जायें, तो इसके बारे में एक लघु विवरण पाठ को "
+"दिखाया जायेगा।\n"
+"हालांकि, यदि आप सुनिश्चित नहीं है कि एक सेवा उपयोगी होगी कि नहीं, \n"
+"तब इसे इसके डिफ़ाल्ट व्यवहार पर छोड़ना उचित है।\n"
+"\n"
+"!! इस चरण में अति सावधान रहें, यदि आप अपनी मशीन को एक सर्वर की भांति उपयोग करने जा "
+"रहे है:\n"
+"तो सम्भव है कि आप उस किसी सेवा को आरम्भ ना करना चाहगें जिसकी आपको आवश्यकता ना हो।\n"
+"कृपया ध्यान रखें कि अनेकों सेवायें घातक हो सकती है यदि वे एक सर्वर पर सक्रिय कि जायें।\n"
+"सामान्यता, उन सेवाओं का ही चयन करें जिनकी आपको वास्तव में आवश्यकता है। \n"
+"!!"
+
+#: ../help.pm:209
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"जीएनयू/लिनक्स समय का जीएमटी (ग्रीनविच मीन समय) में प्रबंध करता है और आपके द्वारा चयन "
+"किये \n"
+"हुए समय-क्षेत्र के अनुसार स्थानीय समय में परिवर्तित करता है। \n"
+"यदि आपके मदरबोर्ड की घड़ी स्थानीय समय पर स्थापित की गयी है\n"
+", तो आप \"%s\" को अचयनित करके इसे निष्क्रिय कर सकते है, जिससे कि \n"
+"जीएनयू/लिनक्स को ज्ञात हो जायेगा कि तंत्र की घड़ी व हार्डवेयर की घड़ी समान समय क्षेत्र में "
+"है ।\n"
+"यह उस समय उपयोगी है जब मशीन पर विण्डो जैसे अन्य संचालन-तंत्र को भी हो । \n"
+"\n"
+"\"%s\" विकल्प इन्टरनेट पर स्थित एक सुदूर समय सर्वर से सबंध स्थापित करके स्वचालित रूप से\n"
+"घड़ी को नियंत्रित करती है । इस लक्षण के कार्य करने के लिए, आपके पास एक कार्यशील\n"
+"इन्टरनेट कनेक्शन होना चाहिए । आपके समीप स्थित एक समय सर्वर का\n"
+"चयन सबसे अच्छा है । यह विकल्प वास्तव में एक ऐसे समय सर्वर को संसाधित करता है जिसका \n"
+"उपयोग आपके स्थानीय नेटवर्क पर स्थित अन्य मशीनों के द्वारा भी किया जा सकता है।"
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "स्वत: समय एकसारीकरण"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"ग्राफ़िक्स कार्ड\n"
+"\n"
+" सामान्यता संसाधक प्रक्रिया आपकी मशीन पर लगे हुए ग्राफ़िक कार्ड को स्वतः ही खोजती "
+"और \n"
+"संसाधित करती है। यदि ऐसा नहीं है, तो आपने वास्तव में जिस कार्ड को लगाया हो उसका\n"
+"इस सूची में से चयन कर सकते है । \n"
+"\n"
+" उस अवस्था में जब कि आपके कार्ड के लिए त्रीआयामी वेगवृद्वि के साथ या बिना त्रीआयामी "
+"वेगवृद्वि\n"
+"के विभिन्न सर्वरों की उपलब्धता हो, तो आपसे उस सर्वर का चयन करने के लिए कहा जायेगा \n"
+"जो आपकी आवश्यकताओं की सबसे अधिक पूर्ति करता हो ।"
+
+#: ../help.pm:234
+#, fuzzy, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (एक्स विण्डो प्रणाली के अर्थ में) जीएनयू/लिनक्स सचित्र इन्टरफ़ेस का ह्रदय है जिस पर\n"
+"मैनड्रिव लिनक्स के बण्डल किये हुए सभी सचित्र वातावरण (केडीई, गनोम, आफ़्टरस्टेप, "
+"विण्डोमेकर \n"
+"इत्यादि) पर निर्भर रहते है । \n"
+"\n"
+"आपके के सम्मुख विभिन्न पैरामीटरों की एक सूची प्रस्तुत की जायेगी जिन्हें बदलने से \n"
+"आप एक ऐच्छिक सचित्र प्रदर्शन को प्राप्त कर सकते है: ग्राफ़िक कार्ड\n"
+"\n"
+" सामान्यता संसाधक प्रक्रिया आपकी मशीन पर लगे हुए ग्राफ़िक् कार्ड को स्वतः ही खोजती है "
+"और \n"
+"संसाधित करती है। यदि ऐसा नहीं है, तो आपने वास्तव में जिस कार्ड को लगाया हो उसका\n"
+"इस सूची में से चयन कर सकते है । \n"
+"\n"
+" उस अवस्था में जब कि आपके कार्ड के लिए त्रीआयामी वेगवृद्वि के साथ या बिना त्रीआयामी "
+"वेगवृद्वि\n"
+"के विभिन्न सर्वरों की उपलब्धता हो, तो आपसे उस सर्वर का चयन करने के लिए कहा जायेगा \n"
+"जो आपकी आवश्यकताओं की सबसे अधिक पूर्ति करता हो।\n"
+"\n"
+"\n"
+"\n"
+"मॉनिटर\n"
+"\n"
+" सामान्यता संसाधक प्रक्रिया आपकी मशीन पर जुड़े हुए मॉनिटर को स्वतः ही खोजती है और \n"
+"संसाधित करती है। यदि ऐसा नहीं है, तो आपने वास्तव में जिस मॉनिटर को लगाया हो उसका\n"
+"इस सूची में से चयन कर सकते है । \n"
+"\n"
+"\n"
+"\n"
+"रेजॅल्यूशन्\n"
+"\n"
+" यहाँ आप अपने हार्डवेयर के लिए उपलब्ध रेजॅल्यूशन् और रंगों की गहराई का चयन कर सकते है। \n"
+"आपकी आवश्यकताओं को सबसे अधिक सन्तुष्ट करता हो उसका चयन करें \n"
+"(आप संसाधन के उपरान्त इसे परिवर्तित कर सकते है)। एक चयनित की हुई संरचना \n"
+"का नमूना मॉनिटर में दिखाया गया है।\n"
+"\n"
+"\n"
+"\n"
+"परीक्षण\n"
+"\n"
+" इच्छित रेजॅल्यूशन् पर यह तंत्र एक ग्राफ़िक्ल स्क्रीन को खोलने का प्रयत्न करेगा । \n"
+"यदि आप परीक्षण के दौरान संदेश को देख पाते है और \"%s\" उत्तर देते है,\n"
+"तो ड्रैकएक्स अगले चरण में चला जायेगा । यदि आप संदेश नहीं देख सकते है, तब\n"
+"इसका अर्थ है कि स्वतःखोजी संरचना के कुछ भाग ठीक नहीं थे और\n"
+"१२ सेकण्डों के बाद परीक्षण स्वंम ही समाप्त हो जायेगा, और आपको मीनू पर वापस ले जायेगा।\n"
+"समायोजनाओं को तब तक बदलते रहे जब तक आपको एक सही सचित्र प्रदर्शन नहीं मिल जाता है। \n"
+"\n"
+"\n"
+"\n"
+"विकल्पों के बारे में\n"
+"\n"
+" यहाँ आप यह चयन कर सकते है कि क्या आप बूट के समय अपनी मशीन को स्वचालित रूप से "
+"सचित्र\n"
+"इन्टरफ़ेस पर जाने देना चाहते है । स्पष्ट रूप से, आप \"%s\" की जाँच करना चाहते है कि \n"
+" यदि आपकी मशीन को एक सर्वर की भांति कार्य करना हो, या फ़िर\n"
+"आप डिसप्ले को भली-भांति संरचित करने में सफ़ल ना रहे हो । "
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"मॉनिटर\n"
+"\n"
+" सामान्यता संसाधक प्रक्रिया आपकी मशीन पर जुड़े हुए मॉनिटर को स्वतः ही खोजती है और \n"
+"संसाधित करती है। यदि ऐसा नहीं है, तो आपने वास्तव में जिस मॉनिटर को लगाया हो उसका\n"
+"इस सूची में से चयन कर सकते है ।"
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"रेजॅल्यूशन्\n"
+"\n"
+" यहाँ आप अपने हार्डवेयर के लिए उपलब्ध रेजॅल्यूशन् और रंगों की गहराई का चयन कर सकते है। \n"
+"आपकी आवश्यकताओं को सबसे अधिक सन्तुष्ट करता हो उसका चयन करें \n"
+"(हालांकि आप संसाधन के उपरान्त इसे परिवर्तित कर सकते है)। एक चयनित की हुई संरचना \n"
+"का नमूना मॉनिटर में दिखाया गया है।"
+
+#: ../help.pm:306
+#, fuzzy, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+" उस अवस्था में जब कि आपके कार्ड के लिए त्रीआयामी वेगवृद्वि के साथ या बिना त्रीआयामी "
+"वेगवृद्वि\n"
+"के विभिन्न सर्वरों की उपलब्धता हो, तो आपसे उस सर्वर का चयन करने के लिए कहा जायेगा \n"
+"जो आपकी आवश्यकताओं की सबसे अधिक पूर्ति करता हो।"
+
+#: ../help.pm:311
+#, fuzzy, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"विकल्पों के बारे में\n"
+"\n"
+" यहाँ आप यह चयन कर सकते है कि क्या आप बूट के समय अपनी मशीन को स्वचालित रूप से "
+"सचित्र\n"
+"इन्टरफ़ेस पर जाने देना चाहते है । स्पष्ट रूप से, आप \"%s\" की जाँच करना चाहते है कि \n"
+" यदि आपकी मशीन को एक सर्वर की भांति कार्य करना हो, या फ़िर\n"
+"आप डिसप्ले को भली-भांति संरचित करने में सफ़ल ना रहे हो । "
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "विद्यमान विभाजन को उपयोग करें"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "सम्पूर्ण डिस्क को मिटायें"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "स्वतः-संसाधन फ़्लापी का निर्माण"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "सुरक्षा प्रबंधक"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "रीमूव किये जाने जाने योग्य माध्यम का स्वत: आरोहण"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "सामान्य/विशेषज्ञ विधा के मध्य में आना-जाना"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"आपकी हार्ड डिस्क पर एक से अधिक माइक्रोसाफ़्ट विभाजनों को खोजा गया है । \n"
+"कृपया उस विभाजन का चयन करें जिसका आप अपने नये मैनड्रिव लिनक्स संचालन तंत्र \n"
+"को संसाधित करने के लिए पुनः आकार देना चाहते है ।\n"
+"\n"
+"प्रत्येक विभाजन को निम्नलिखित प्रकार से सूचीबद्ध किया गया है: \"लिनक्स नाम\", \"विण्डो "
+"का नाम\"\n"
+"\"क्षमता\"।\n"
+"\"लिनक्स नाम\" व्यवस्थित है: \"हार्ड ड्राइव का प्रकार\", \"हार्ड ड्राइव की संख्या\",\n"
+"\"विभाजन संख्या\" (उदाहरण हेतु , \"hda1\")। \n"
+"\n"
+"\"हार्ड ड्राइव का प्रकार\" \"hd\" है यदि आपकी हार्ड ड्राइव एक आईडीई हार्ड ड्राइव है "
+"और \n"
+"\"sd\" यदि यह एक स्कैसी हार्ड ड्राइव है। \n"
+"\n"
+"\"हार्ड ड्राइव संख्या\" \"hd\" या \"sd\" के बाद की एक संख्या होती है। \n"
+"आईडीई हार्ड ड्राइवों के लिए:\n"
+"\n"
+" * \"a\" का अर्थ है \"मुख्य आईडीई नियंत्रक पर मास्टर हार्ड ड्राइव\";\n"
+"\n"
+" * \"b\" का अर्थ है \"मुख्य आईडीई नियंत्रक पर स्लेव हार्ड ड्राइव\";\n"
+"\n"
+" * \"c\" का अर्थ है \"द्वितीय आईडीई नियंत्रक पर मास्टर हार्ड ड्राइव \";\n"
+"\n"
+" * \"d\" का अर्थ है \"द्वितीय आईडीई नियंत्रक पर स्लेव हार्ड ड्राइव\"।\n"
+"\n"
+"SCSI हार्ड ड्राइवों के साथ, एक \"a\" का अर्थ है \"निम्नतम स्कैसी पहचानसंख्या\", एक \"b"
+"\" का अर्थ है \"द्वितीय निम्नतम स्कैसी पहचानसंख्या\", इत्यादि।\n"
+"\"विण्डो का नाम\" विण्डो के अन्तर्गत आपकी हार्ड ड्राइव का नाम-शब्द है\n"
+"(प्रथम डिस्क या विभाजन को \"C:\" कहा जाता है)।"
+
+#: ../help.pm:567
+#, fuzzy, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": वर्तमान देश चयन की जाँच करें । यदि आप इस देश में नहीं है,\n"
+"तो \"%s\" बटन पर क्लिक करें और किसी अन्य का चयन करें । यदि आपका देश\n"
+"प्रथम सूची में नहीं है, तो सभी देशो की सूची को पाने के लिए,\n"
+" \"%s\" बटन पर क्लिक करें ।"
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Espanol"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "व्हील ऐम्यूलेशन के साथ"
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "कोई भी पीएस/२ व यूएसबी माउस"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"कृपया सही पोर्ट का चयन करें । उदाहरण हेतु, विण्डो के अन्तर्गत \"COM1\" पोर्ट को\n"
+"जीएनयू/लिनक्स के अन्तर्गत \"ttyS0\" के रूप में जाना जाता है ।"
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "प्रमाणीकरण"
+
+#: ../help.pm:728
+#, fuzzy, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"लिलो तथा ग्रब, जीएनयू/लिनक्स के बूटलोडर हैं । सामान्यता यह चरण पूर्णरूप से स्वचालित\n"
+"होता है । डिस्क बूट सेक्टर का ड्रैकएक्स निरीक्षण करेगा और वहाँ क्या मिलता है, \n"
+" उस अनुसार आचरण करेगा:\n"
+"\n"
+" * यदि एक विण्डो बूट सेक्टर मिलता है, तो इसे ग्रब/लिलो बूट सेक्टर द्वारा\n"
+"बदल दिया जायेगा । इस प्रकार से आप जीएनयू/लिनक्स या अन्य किसी संचालन-तंत्र \n"
+"को अपनी मशीन पर बूट करने में सक्षम होगें ।\n"
+"\n"
+" * यदि एक ग्रब या लिलो बूट सेक्टर मिलता है, तो इसे एक \n"
+" नये के साथ बदल दिया जायेगा ।\n"
+"\n"
+"यदि यह एक निर्धारण नहीं कर सकता है, तब ड्रैकएक्स आपसे पूछेगा कि बूटलोडर को कहाँ रक्खा "
+"जायें ।\n"
+"सामान्यताः \"%s\" सबसे सुरक्षित स्थान है । \"%s\" का चयन करने से कोई बूटलोडर संसाधित "
+"नहीं होगा ।\n"
+" इसका उपयोग तभी करें जब आपको ज्ञात हो कि आप क्या कर रहे है ।"
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "पी०डी०क्यू०"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "विशेषज्ञ"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+
+#: ../help.pm:789
+#, fuzzy, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": यदि आपके तंत्र पर एक ध्वनि कार्ड को पहिचाना गया है, तो उसे यहाँ पर दिखाया "
+"गया है ।\n"
+"यदि आपको ऐसा लगता है कि यहाँ पर दिखाया गया साउण्ड कार्ड वह नहीं है जो कि वास्तव में "
+"आपके\n"
+"तंत्र पर स्थित है, तो बटन पर क्लिक कर सकते है और अन्य चालक का चयन\n"
+" कर सकते है।"
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "आई०एस०डी०एन० कार्ड"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "सचित्र इन्टरफ़ेस"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"उस हार्ड ड्राइव का चयन करें जिसे आप अपने नवीन मैनड्रिव लिनक्स विभाजन के संसाधन के लिए \n"
+"खाली करना चाहते है । सावधान रहें, इस विभाजन पर स्थित सभी सूचनायें विलुप्त हो जायेगी \n"
+"और भविष्य में वापस प्राप्त नहीं की जा सकेगी !"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"\"%s\" पर क्लिक करें, यदि आप इस हार्ड ड्राइव पर स्थित सभी सूचनाओं व विभाजनों को\n"
+"मिटाना चाहते है । सावधान रहें, \"%s\" पर क्लिक करने के उपरान्त, \n"
+"विण्डो डाटा को शामिल करते हुए, इस हार्ड ड्राइव पर स्थित किसी सूचना और विभाजनों को,\n"
+"आप पुनः प्राप्त करने में समर्थ नहीं होगें ।\n"
+"\n"
+"इस हार्ड ड्राइव पर स्थित किसी सूचना और विभाजनों को खोयें बिना, इस क्रिया को\n"
+"रोकने के लिए, \"%s\" पर क्लिक करें ।"
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "अगला ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- पिछला"
+
diff --git a/perl-install/install/help/po/hr.po b/perl-install/install/help/po/hr.po
new file mode 100644
index 000000000..569f2734c
--- /dev/null
+++ b/perl-install/install/help/po/hr.po
@@ -0,0 +1,1762 @@
+# Translation of DrakX to Croatian
+# Copyright (C) Croatian team
+# Translators: Danijel Studen <dstuden@vuka.hr>,Denis Lackovic <delacko@fly.srk.fer.hr>,Jerko Škifić <skific@riteh.hr>,Ljubomir Božić <ljubo108@vip.hr>,Nikola Planinac <>,Robert Vuković <robi@surfer.hr>,Sasa Poznanovic <sasa.poznanovic@vuka.hr>,Vedran Vyroubal <vedran.vyroubal@inet.hr>,Vinko Prelac <vinko@buka.hr>,Vlatko Kosturjak <kost@linux.hr>,Zoran Jankovic <zoran.jankovic@inet.hr>,
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX 0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-01-04 21:25+CET\n"
+"Last-Translator: auto\n"
+"Language-Team: Croatian <lokalizacija@linux.hr>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;;\n"
+"X-Generator: TransDict server\n"
+
+#: ../help.pm:14
+#, fuzzy, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Prije nastavka trebate pažljivo pročitati stavke licence. Ona\n"
+"pokriva cijelu Mandriva Linux distribuciju, i ako se ne slažete u svim\n"
+"stavkama sadržanih u njoj, kliknite na \"Odbij\" gumb koji će automatski\n"
+"završiti instalaciju. Za nastavak instalacije, kliknite na\n"
+"\"Prihvati\" gumb."
+
+#: ../help.pm:20
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux je višekorisnički sustav, i to znači da svaki korisnik može imati\n"
+"vlastita podešenja, vlastite datoteke itd. Možete pročitati ``User Guide''\n"
+"da naučite više. Za razliku od \"root\"-a, koji je administrator, korisnici\n"
+"koje ćete dodati ovdje neće imati ovlaštenja za mijenjanje ničega osim "
+"vlastitih\n"
+"datoteka ili vlastitih postavki. Morati ćete napraviti najmanje jednog "
+"normalnog\n"
+"korisnika za vas. Taj račun ćete koristiti za prijavljivanje za rutinsko\n"
+"korištenje. Iako je vrlo praktično se prijaviti kao \"root\" svaki dan,\n"
+"to može biti vrlo opasno! Najmanja pogreška može značiti da vaš sustav\n"
+"neće više moći raditi. Ako napravite ozbiljnu grešku kao normalan korisnik,\n"
+"možete izgubiti samo neke informacije, ali ne cijeli sustav.\n"
+"\n"
+"Prvo, morate unijeti vaše pravo ime. Ono nije obvezno, naravno\n"
+"možete ustvari unijeti što god želite. DrakX će tada uzeti prvu riječ koju\n"
+"ste unijeli u to polje i prenijeti je u \"Korisničko ime\". To je ime kojim "
+"će \n"
+"se taj konkretni korisnik prijavljivati u sustav. Možete ga mijenjati. "
+"Tada \n"
+"morate ovdje upisati lozinku. Sa gledišta sigurnosti, lozinka "
+"neprivilegiranog \n"
+"(običnog) korisnika nije toliko važna kao \"root\" lozinka, ali je ne treba "
+"zbog\n"
+"toga zanemarivati: naposlijetku, radi se o vašim datotekama.\n"
+"\n"
+"Ako pritisnete \"Prihvati korisnika\", možete ih dodati koliko želite. "
+"Dodajte\n"
+"korisnika za svakog prijatelja: oca ili sestru, npr. Kada ste dodali sve "
+"korisnike\n"
+"koje ste željeli, stisnite \"Završi\".\n"
+"\n"
+"Pritiskanjem na \"Napredno\" možete promijeniti predodređenu \"ljusku\" za "
+"tog\n"
+"korisnika (bash je predodređen)."
+
+#: ../help.pm:54
+#, fuzzy, c-format
+msgid "Do you want to use this feature?"
+msgstr "Da li želite koristiti aboot?"
+
+#: ../help.pm:57
+#, fuzzy, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Gore su popisane postojeće Linux particije pronađene na\n"
+"vašem hard disku. Možete zadržati izbore napravljene od strane čarobnjaka, "
+"one su dobre za\n"
+"uobičajenu upotrebu. Ukoliko promjenite izbore, morate barem definirati "
+"root\n"
+"particiju (\"/\"). Nemojte izabrati premalu particiju jer nećete moći \n"
+"instalirati dovoljno software-a. Ako želite spremati vaše podatke na "
+"posebnoj particiji,\n"
+"trebate također izabrati \"/home\" (jedino moguće ako imate više od jedne\n"
+"raspoložive Linux particije).\n"
+"\n"
+"\n"
+"Za informaciju, svaka particija je popisana kako slijedi: \"Ime\", "
+"\"Kapacitet\".\n"
+"\n"
+"\n"
+"\"Ime\" je kodirano kako slijedi: \"tip hard diska\", \"broj hard diska\",\n"
+"\"broj particije\" (naprimjer, \"hda1\").\n"
+"\n"
+"\n"
+"\"Tip hard diska\" je \"hd\" ukoliko je hard disk - IDE hard disk i \"sd\"\n"
+"ukoliko je on SCSI hard disk.\n"
+"\n"
+"\n"
+"\"Broj hard diska\" je uvijek slovo poslije \"hd\" ili \"sd\". Sa IDE hard "
+"diskovima:\n"
+"\n"
+" * \"a\" znači \"master hard disk na primarnom IDE kontroleru\";\n"
+"\n"
+" * \"b\" znači \"slave hard disk na primarnom IDE kontroleru\";\n"
+"\n"
+" * \"c\" znači \"master hard disk na sekundarnom IDE kontroleru\";\n"
+"\n"
+" * \"d\" znači \"slave hard disk na sekundarnom IDE kontroleru\".\n"
+"\n"
+"\n"
+"Sa SCSI hard diskovima, \"a\" znači \"primarni hard disk\", \"b\" znači "
+"\"sekundarni hard disk\", itd..."
+
+#: ../help.pm:88
+#, fuzzy, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linux instalacija je proširena na nekoliko CDROMova. DrakX\n"
+"zna ukoliko se odabrani paket nalazi na drugom CDROMu i izbaciti će\n"
+"trenutni CD i pitati vas da ubacite drugi koji je potreban."
+
+#: ../help.pm:95
+#, fuzzy, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Sada treba odrediti koje programe želite instalirati u svoj sustav. Za "
+"Mandriva \n"
+"Linux su dostupne tisuće paketa, i ne morate ih sve znati na pamet.\n"
+"\n"
+"Ako pokrećete standarnu instalaciju sa CD-ROMa, prvo ćete biti upitani da "
+"navedete\n"
+"CDove koje imate (samo u modu za stručnjake). Provjerite imena CDova i "
+"označite\n"
+"kućice koje odgovaraju CDovima koje imate. Pritisnite \"U redu\" kada ste "
+"spremni\n"
+"nastaviti.\n"
+"\n"
+"Paketi su podijeljeni po grupama koje odgovaraju određenoj svrsi. Grupe su \n"
+"podijeljene u četiri sekcije:\n"
+"\n"
+" * \"Radna stanica\": ako ćete koristiti stroj kao radnu stanicu, izaberite\n"
+"jednu ili više odgovarajućih grupa;\n"
+"\n"
+" * \"Razvoj\": ako će se Vaš stroj koristiti za programiranje, izaberite\n"
+"željene grupe;\n"
+"\n"
+" * \"Poslužitelj\": ako je Vaš stroj određen za poslužitelja, moći ćete "
+"odabrati\n"
+"koje od uobičajenih servisa želite instalirati na njega;\n"
+"\n"
+" * \"Grafičko okružje\": naposlijetku, ovdje birate grafičko okružje. Barem "
+"jedno\n"
+"mora biti odabrano ako želite imati grafičku radnu stanicu!\n"
+"\n"
+"Pomicanjem pokazivača miša na ime grupe će se prikazati kratak opis te "
+"grupe. Ako\n"
+"nijedna grupa nije odabrana pri normalnoj instalaciji (za razliku od "
+"nadogradnje),\n"
+"iskočit će dijalog sa predloženim opcijama za minimalnu instalaciju:\n"
+"\n"
+" * \"Sa Xima\": instaliranje što je manje paketa moguće za grafičko "
+"sučelje;\n"
+"\n"
+" * \"Sa osnovnom dokumentacijom\": instalira osnovni sustav sa osnovnim "
+"pomoćnim\n"
+"programima i njihovom dokumentacijom. Ova instalacija je pogodna za "
+"namještanje\n"
+"poslužitelja;\n"
+"\n"
+" * \"Stvarno malena instalacija\": instalirat će strogi minimum potreban da "
+"bi\n"
+"imali Linux sustav koji radi, samo u komandnoj liniji. Ova instalacija je "
+"velika\n"
+"oko 65Mb.\n"
+"\n"
+"Možete provjeriti \"Inividualni odabir paketa\", što je korisno ako ste "
+"upoznati\n"
+"sa ponuđenim paketima ili ako želite imati potpunu kontrolu nad "
+"instaliranim\n"
+"sadržajem.\n"
+"\n"
+"Ako ste pokrenuli instalaciju u \"Nadogradnja\" načinu, možete odselektirati "
+"sve\n"
+"grupe da izbjegnete instaliranje novih paketa. Ovo je korisno za "
+"popravljanje\n"
+"ili osuvremenjivanje postojećeg sustava."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Nadogradnja"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "With basic documentation"
+msgstr "Sa osnovnom dokumentacijom (preporučeno!)"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "Truly minimal install"
+msgstr "Minimalna instalacija"
+
+#: ../help.pm:152
+#, fuzzy, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Konačno, ovisno o tome da li ste izbrali individualne pakete, prikazat će "
+"vam \n"
+"se stablo sa svim paketima podijeljenim u grupe i podgrupe. Pri "
+"pregledavanju\n"
+"stabla možete izabrati čitave grupe, podgrupe ili pojedine pakete.\n"
+"\n"
+"Kad god izaberet paket na stablu, na desnoj strani se pojavi opisnik. Kada "
+"ste\n"
+"završili odabir, pritisnite \"Instaliraj\", čime ćete pokrenuti proces "
+"instaliranja.\n"
+"Ovisno o brzini računala i broju paketa koji trebaju biti instalirani, "
+"proces može\n"
+"potrajati. Procjena vremena koje će biti potrebno da bi se sve instaliralo "
+"piše\n"
+"na ekranu, da vam pomogne procjeniti imate li vremena za šalicu kave.\n"
+"\n"
+"!! Ako je odabran poslužiteljski paket, namjerno ili jer je pripadao nekoj "
+"grupi,\n"
+"bit ćete upitani da potvrdite da li želite stvarno instalirati te "
+"poslužitelje.\n"
+"Kod Mandriva Linuxa, svi instalirani poslužitelji se pokreću prilikom "
+"podizanja\n"
+"sustava. Čak iako su sigurni, bez poznatih problema u vrijeme izlaska "
+"distribucije,\n"
+"može se dogoditi da se otkriju sigurnosne rupe nakon zgotovljenja ove "
+"inačice\n"
+"Mandriva Linuxa. Ako ne znate što bi pojedini servis trebao raditi ili "
+"zašto \n"
+"se instalira, pritisnite \"Ne\". Pritiskanjem na \"Da\"instalirat će se "
+"navedeni\n"
+"servisi i pokretat će se automatski. !!\n"
+"\n"
+"\"Automatske ovisnosti\" opcija onemogućuje upozorenje koje se pojavi kad "
+"god \n"
+"instalacija automatski izabere paket. Ovo se dešava stoga što je utvrdila "
+"da\n"
+"treba zadovoljiti ovisnost drugim paketom da bi se uspješno završila.\n"
+"\n"
+"Malena ikona diskete na dnu popisa omogućuje učitavanje popisa paketa "
+"izabranih\n"
+"tijekom neke prošle instalacije. Pritiskom na nj upitat će vas da ubacite "
+"disketu\n"
+"napravljenu na kraju neke druge instalacije. Pogledajte drugi savjet u "
+"posljednjem\n"
+"koraku stvaranja takve diskete."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Automatske ovisnosti"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Sada možete izabrati servise koje želite pokreniti pri podizanju.\n"
+"\n"
+"Ovdje su predstavljeni svi servisi dostupni sa trenutnom instalacijom.\n"
+"Pregledajet ih pažljivo i maknite one koje nisu uvijek potrebni prilikom\n"
+"podizanja sustava.\n"
+"\n"
+"Odabiranjem određenog servisa dobit ćete kratki opis tog servisa. Međutim, "
+"ako\n"
+"niste sigurni je li servis koristan ili ne, sigurnije je ostaviti "
+"predodređeno\n"
+"ponašanje.\n"
+"\n"
+"!! Na ovoj razini obratite pozornost na to da li ćete koristiti stroj kao\n"
+"poslužitelj: vjerojatno ne želite pokretati neke servise koje ne trebate.\n"
+"Prisjetite se da neki servisi mogu biti opasni ako su pokrenuti na "
+"poslužitelju.\n"
+"Općenito, izaberite samo one servise koji vam stvarno trebaju.\n"
+"!!"
+
+#: ../help.pm:209
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux upravlja vremenom po GMTu (Greenwich Mean Time) i prevodi ga u\n"
+"lokalno vrijeme prema vremenskoj zoni koju ste izabrali. Moguće je, doduše,\n"
+"ovo isključiti isključivanjem odabira \"Hardverski sat namješten na GMT\" "
+"tako\n"
+"da je hardverski sat jednak sustavskom. Ovo je korisno kada se na računalu\n"
+"nalazi drugi operacijski sustav, poput Windows.\n"
+"\n"
+"Opcija \"Automatska sinhronizacija vremena\" će automatski podešavati sat\n"
+"tako da će se povezivati sa vremenskim poslužiteljem na Internetu. Sa "
+"popisa\n"
+"izaberite poslužitelj najbliže vama. Naravno, morate imati ispravnu vezu sa\n"
+"Internetom da bi ovo radilo. Također, instalirat će vremenski poslužitelj "
+"na\n"
+"vaše računalo kojeg, opcionalno, mogu koristiti druga računala u vašoj\n"
+"lokalnoj mreži."
+
+#: ../help.pm:220
+#, fuzzy, c-format
+msgid "Automatic time synchronization"
+msgstr "Automatska vremenska sinkronizacija (koristeći NTP)"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Grafička kartica\n"
+"\n"
+" Instalacijski program će u uobičajenim okolnostima automatski detektirati "
+"i\n"
+" konfigurirati vašu grafičku karticu. Ukoliko je načinjen pogrešan odabir,\n"
+"možete iz ovog popisa odabrati ispravnu karticu.\n"
+"\n"
+" U slučaju da su za vašu karticu na raspolaganju različiti serveri, sa ili "
+"bez,\n"
+"3D ubrzanja, program će vas pitati koji server najbolje odgovara vašim "
+"potrebama."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, fuzzy, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Konačno ćete biti pitani da li želite vidjeti grafičko sučelje pri\n"
+"dizanju. Primjetite da ovo pitanje će biti pitano iako ne želite "
+"istestirati\n"
+"konfiguraciju. Vjerojatno, želite odgovoriti sa \"Ne\" ukoliko će vaše "
+"računalo\n"
+"raditi kao poslužitelj, ili ako niste bili uspješni u konfiguriranju vašeg\n"
+"zaslona."
+
+#: ../help.pm:319
+#, fuzzy, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"U ovom trenutku, trebate izabrati gdje ćete instalirati vaš\n"
+"Mandriva Linux operativni sustav na vašem tvrdom disku. Ukoliko je prazan "
+"ili \n"
+"ako postojeći operativni sustav koristi čitav prostor na disku, trebate ga\n"
+"particionirati. Jednostavno, particioniranje hard diska sastoji se od\n"
+"logičkog dijeljenja kako bi napravili prostor za instalaciju vašeg novog\n"
+"Mandriva Linux sustava.\n"
+"\n"
+"Zato što su posljedice procesa particioniranja obično nepovratne,\n"
+"particioniranje može biti strašno i stresno ukoliko ste korisnik bez "
+"iskustva.\n"
+"Ovaj čarobnjak pojednostavljuje proces. Prije početka, molimo konzultirajte\n"
+"upute i uzmite vremena koliko vam je potrebno.\n"
+"\n"
+"Ako ste pokrenuli instalaciju u modu za stručnjake, ući ćete u DiskDrake,\n"
+"Mandriva Linuxov alat za particioniranje, s kojim možete fino podešavati\n"
+"particije. Pogledajte DiskDrake odjeljak u ``User Guide''.\n"
+"Iz sučelja instalacije možete koristiti čarobnjake koji su ovdje opisani\n"
+"pritiskom na \"Čarobnjak\" dugme.\n"
+"\n"
+"Ako su particije već određene, od prijašnje instalacije, ili nekog drugog\n"
+"alata za particioniranje, samo ih izaberite da bi instalirali vaš Linux "
+"sustav.\n"
+"\n"
+"Ako particije nisu definirane, morate ih stvoriti korištenjem čarobnjaka.\n"
+"Ovisno o vašem tvrdom disku, nekoliko opcija je dostupno:\n"
+"\n"
+" * \"Koristi slobodni prostor\": ova opcija će jednostavno automatski\n"
+"particionirati vaše prazne diskove. Nećete biti više ništa priupitani;\n"
+"\n"
+" * \"Korištenje postojeće particije\": čarobnjak je detektirao jednu ili "
+"više\n"
+"postojećih Linux particija na vašem hard disku. Ukoliko\n"
+"ih želite zadržati, izaberite ovu opciju.\n"
+"\n"
+" * \"Obriši cijeli disk\": ukoliko želite obrisati sve podatke i sve "
+"particije\n"
+"koje postoje na vašem hard disku i zamjeniti ih sa\n"
+"vašim novim Mandriva Linux sustavom, možete izabrati ovu opciju. Budite\n"
+"pažljivi sa ovim rješenjem, nećete moći\n"
+"povratiti vaš izbor nakon potvrde.\n"
+"\n"
+" * \"Koristiti slobodan prostor na Windows particiji\": ukoliko je "
+"Microsoft\n"
+"Windows instaliran na vašem hard disku i zauzima\n"
+"cjeli raspoloživ prostor na njemu, trebate napraviti slobodan prostor za\n"
+"Linux podatke. Da biste to napravili možete obrisati vašu\n"
+"Microsoft Windows particiju i podatke (pogledajte \"Brisanje cijelog diska"
+"\"\n"
+"ili \"Ekspert mod\" rješenja) ili mijenjati veličinu vaše\n"
+"Microsoft Windows particije. Mijenjanje veličine može se obaviti bez\n"
+"gubitka bilo kakvih podataka, ako prethodno defragmentirate Windows "
+"particiju.\n"
+"Ovo rješenje je preporučeno ukoliko želite koristiti zajedno Mandriva Linux\n"
+"i Microsoft Windows-e na istom računalu.\n"
+"\n"
+" Prije izabiranja ovog rješenja, molimo shvatite da će veličina vaše "
+"Microsoft\n"
+"Windows partiticije biti manja nego što je sada. To znači da ćete imati\n"
+"manje slobodnog prostora pod\n"
+"Microsoft Windows-ima za spremanje vaših podataka ili instaliranje novog "
+"software-a.\n"
+"\n"
+" * \"Obiši Windowse\": ovo će jednostavno obri sati sve na disku i početi\n"
+"particionirati sve ispočetka. Svi podaci na disku će biti izgubljeni;\n"
+"\n"
+" * \"Ekspertni mod\": Ukoliko želite particionirati ručno vaš hard disk, "
+"možete\n"
+"izabrati ovu opciju. Budite pažljivi prije\n"
+"izabiranja ovog rješenja. Vrlo je moćno, ali i vrlo opasno. Možete\n"
+"izgubiti sve vaše podatke vrlo lako. Zato,\n"
+"nemojte izabrati ovo rješenje ukoliko ne znate što radite."
+
+#: ../help.pm:377
+#, fuzzy, c-format
+msgid "Use existing partition"
+msgstr "Koristi postojeće particije"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Obriši cijeli disk"
+
+#: ../help.pm:380
+#, fuzzy, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Eto. Instalacija je završena i vaš GNU/Linux sustav je spreman za "
+"korištenje.\n"
+"Samo pritisnite \"U redu\" da bi ponovno pokrenuli sustav. Možete pokrenuti\n"
+"GNU/Linux ili Windowse, što god želite (ako imate dva sustava), čim se\n"
+"računalo ponovno podigne.\n"
+"\n"
+"\"Napredno\" dugme (samo u modu za stručnjake) će prikazati još dva "
+"dugmeta: \n"
+"\n"
+" * \"napravi disketu za automatsku instalaciju\": za stvaranje "
+"instalacijske\n"
+"diskete koja će automatski izvršiti čitavu instalaciju bez pomoći "
+"operatora,\n"
+"sličnu instalaciji koju ste upravo namjestili.\n"
+"\n"
+" Primjetite da su dvije različite opcije dostupne nakon pritiska na "
+"dugme:\n"
+"\n"
+" * \"Replay\". Ovo je djelomice automatizirana instalacija, pošto\n"
+"particioniranje (i samo to) ostaje interaktivno;\n"
+"\n"
+" * \"Automatska instalacija\". Potpuno automatizirana instalacija: tvrdi\n"
+"disk se u potpunosti prebrisava, svi podaci se gube.\n"
+"\n"
+" Ova opcija je dosta korisna pri instaliranju na veći broj sličnih "
+"mašina.\n"
+"Pogledajte odjeljak za automatsku instalaciju na našem web siteu;\n"
+"\n"
+" * \"Snimi odabir paketa\"(*): snima prethodni odabir paketa. Potom, pri "
+"drugoj\n"
+"instalaciji, stavite disketu u pogon i pokrenite instalaciju odlaskom u\n"
+"ekran za pomoć pritiskom na [F1], te zadavanjem >>linux defcfg=\"floppy\"<<\n"
+"naredbe.\n"
+"\n"
+"(*) Trebate FAT formatiranu disketu (da bi je napravili u GNU/Linuxu, "
+"napišite\n"
+"\"mformat a:\")"
+
+#: ../help.pm:412
+#, fuzzy, c-format
+msgid "Generate auto-install floppy"
+msgstr "Napravi auto instalacijsku disketu"
+
+#: ../help.pm:415
+#, fuzzy, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Svaka novo definirana particija mora biti\n"
+"formatirana za korištenje (formatiranje znači pravljenje datotečnog "
+"sustava).\n"
+"\n"
+"Trenutno, možete htjeti ponovno formatirati neke već postojeće particije\n"
+"kako bi obrisali\n"
+"podatke koje one posjeduju. Ukoliko želite to napraviti,\n"
+"izaberite particije koje želite formatirati.\n"
+"\n"
+"Primjetite da nije nužno ponovno formatirati sve već postojeće particije.\n"
+"Morate ponovno formatirati particije koje sadrže operativni sustav (poput \n"
+"\"/\",\"/usr\" ili \"/var\") ali ne morate ponovno formatirati particije "
+"koje\n"
+"sadrže podatke koje želite zadržati (tipično \"/home\").\n"
+"\n"
+"Molimo budite pažljivi odabirom particija, poslije formatiranja, svi podaci\n"
+"će biti obrisani i nećete ih moći povratiti.\n"
+"\n"
+"Pritisnite na \"U redu\" kada ste spremni za formatiranje particije.\n"
+"\n"
+"Pritisnite na \"Odustani\" kada želite izabrati druge particije za\n"
+"instalaciju vašeg novog Mandriva Linux operativnog sustava.\n"
+"\n"
+"Pritisnite na \"Napredno\" ako želite izabrati particije koje će biti\n"
+"provjeravane radi loših blokova (bad blocks)."
+
+#: ../help.pm:437
+#, fuzzy, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Dok instalirate Mandriva Linux, moguće je da su neki paketi već nadograđeni\n"
+"od prvotne inačice. Neki bugovi su možda uklonjeni, i sigurnost poboljšana.\n"
+"Da bi iskoristili prednosti tih nadogradnji, predloženo vam je da ih\n"
+"skinete s Interneta. Izaberite \"Da\" ako ste povezani s Internetom, ili \"Ne"
+"\"\n"
+"ako biste radije instalirali nadograđene pakete kasnije.\n"
+"\n"
+"Odabir \"Da\" prikazuje popis mjesta otkuda se nadogradnje mogu skinuti.\n"
+"Izaberite ono najbliže vama. Tada će se pojaviti stablo za odabir paketa:\n"
+"pregledajte odabir i stisnite \"Instaliraj\" da bi skinuli i instalirali "
+"odabrane\n"
+"pakete, ili \"Odustani\" za prekid."
+
+#: ../help.pm:450
+#, fuzzy, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Sada treba odabrati željenu razinu sigurnosti računala. Opće pravilo jest "
+"da\n"
+"što je više računalo izloženo i podaci vrijedniji, to bi veća razina "
+"sigurnosti\n"
+"trebala biti. Međutim, veća razina sigurnosti utječe na jednostavnost "
+"korištenja.\n"
+"Pogledajte u \"msec\" poglavlje u ``Reference Manual'' za bolje obješnjenje\n"
+"značenja tih razina.\n"
+"\n"
+"Ako ne znate što biste odabrali, ostavite podrazumijevanu opciju."
+
+#: ../help.pm:461
+#, fuzzy, c-format
+msgid "Security Administrator"
+msgstr "Udaljeno administriranje"
+
+#: ../help.pm:464
+#, fuzzy, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"U ovoj točki instalacije, trebate izabrati koje partiticije ćete koristiti "
+"za\n"
+"instalaciju vašeg novog Mandriva Linux sustava. Ukoliko su\n"
+"particije već definirane (iz prethodne instalacije GNU/Linux-a ili iz\n"
+"drugih particijskih alata), možete koristiti postojeće particije. Inače,\n"
+"moraju biti definirane.\n"
+"\n"
+"Za pravljenje particija, morate prvo izabrati tvrdi disk. Možete izabrati \n"
+"disk za particioniranje klikanjem na \"hda\" za prvi IDE disk, \"hdb\" za\n"
+"drugi ili \"sda\" za prvi SCSI disk i tako dalje.\n"
+"\n"
+"Za particioniranje izabranog hard diska, možete izabrati ove opcije:\n"
+"\n"
+" * \"Obriši sve\": ova opcija će obrisati sve raspoložive particije na\n"
+"odabranom hard disku.\n"
+"\n"
+" * \"Auto alokacija\": ova opcija vam dozvoljava da automatski napravite\n"
+"\"Ext2\" i swap particije u slobodnom prostoru vašeg hard diska.\n"
+"\n"
+" * \"Dodatno\": pristup dodatnim mogućnostima:\n"
+"\n"
+" * \"Spasi particijsku tablicu\": ukoliko je vaša particijska tablica\n"
+"oštećena, možete probati spasiti ju koristeći ovu opciju. Molimo\n"
+"budite pažljivi i zapamtite da ne mora biti uspješna.\n"
+"\n"
+" * \"Povrati\": možete koristiti ovu opciju za odustajanje od vaših "
+"promjena.\n"
+"\n"
+" * \"Ponovno učitaj\": možete koristiti ovu opciju ukoliko želite vratiti\n"
+"unazad sve promjene i učitati vašu inicijalnu particijsku tablicu\n"
+"\n"
+" * \"Čarobnjak\": ukoliko želite koristiti čarobnjak za particioniranje "
+"vašeg\n"
+"hard diska, možete koristiti ovu opciju. Preporučeno je ukoliko \n"
+"nemate dovoljno znanja oko particioniranja.\n"
+"\n"
+" * \"Vrati sa diskete\": ukoliko ste spremili vašu particijsku tablicu na\n"
+"disketu tijekom prijašnje instalacije, možete\n"
+"je vratiti koristeći ovu opciju.\n"
+"\n"
+" * \"Spremi na disketu\": ukoliko želite spremiti vašu particijsku tablicu "
+"na\n"
+"disketu kako biste je mogli kasnije vratiti, možete koristiti ovu\n"
+"opciju. Jako je preporučljivo koristiti ovu opciju\n"
+"\n"
+" * \"Završi\": kada ste završili s particioniranjem vašeg hard diska,\n"
+"koristite ovu opciju za spremanje vaših promjena.\n"
+"\n"
+"Za informaciju, možete dohvatiti bilo koju opciju koristeći tastaturu:\n"
+"navigiranje kroz particije se obavlja koristeći [Tab] i [Up/Down] strelice.\n"
+"\n"
+"Kada je particija odabrana, možete koristiti:\n"
+"\n"
+" * Ctrl-c za pravljenje novih particija (kada je prazna particija\n"
+"izabrana)\n"
+"\n"
+" * Ctrl-d za brisanje particije\n"
+"\n"
+" * Ctrl-m za postavljanje točke montiranja\n"
+"\n"
+"Za informacije o raznim dostupnim datotečnim sustavima, pročitajte ext2fs\n"
+"poglavlje u ``Reference Manual''\n"
+"\n"
+"Ukoliko instalirate na PPC računalo, željet ćete napraviti malu HFS\n"
+"'bootstrap' particiju od najmanje 1MB koju će koristiti\n"
+"yaboot bootloader. Ukoliko se odlučite za pravljenje malo veće \n"
+"particije, recimo 50MB, možete ju pronaći korisnom za stavljanje\n"
+"dodatnog kernela i ramdisk slike u slučaju nužde."
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Removable media auto-mounting"
+msgstr "Automatsko montiranje prenosivog medija"
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Prebaci u normalni mod"
+
+#: ../help.pm:536
+#, fuzzy, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Više od jedne Microsoft Windows particije su pronađene\n"
+"na vašem hard disku. Molimo izaberite jednu kojoj želite promjeniti "
+"veličinu\n"
+"kako bi instalirali vaš novi Mandriva Linux operativni sustav.\n"
+"\n"
+"Svaka je particija popisana kako slijedi; \"Linux ime\", \"Windows ime\"\n"
+"\"Kapacitet\".\n"
+"\n"
+"\"Linux ime\" je kodirano kako slijedi: \"tip hard diska\", \"broj hard diska"
+"\",\n"
+"\"broj particije\" (naprimjer, \"hda1\").\n"
+"\n"
+"\"Tip hard diska\" je \"hd\" ukoliko je hard disk - IDE hard disk i \"sd\"\n"
+"ukoliko je on SCSI hard disk.\n"
+"\n"
+"\"Broj hard diska\" je uvijek slovo poslije \"hd\" ili \"sd\". Sa IDE hard\n"
+"diskovima:\n"
+"\n"
+" * \"a\" znači \"master hard disk na primarnom IDE kontroleru\",\n"
+"\n"
+" * \"b\" znači \"slave hard disk na primarnom IDE kontroleru\",\n"
+"\n"
+" * \"c\" znači \"master hard disk na sekundarnom IDE kontroleru\",\n"
+"\n"
+" * \"d\" znači \"slave hard disk na sekundarnom IDE kontroleru\".\n"
+"\n"
+"Sa SCSI hard diskovima, \"a\" znači \"primarni hard disk\", \"b\" znači\n"
+"\"sekundarni hard disk\", itd...\n"
+"\n"
+"\"Windows ime\" je slovo vašeg hard diska pod Windows-ima (prvi disk\n"
+"ili particija se zove \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, fuzzy, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Obično, DrakX izabere pravu tipkovnicu za vas (ovisno o jeziku koji ste "
+"odabrali)\n"
+"i nećete ni vidjeti ovaj korak. Međutim, možda nemate tipkovnicu koja točno\n"
+"odgovara vašem jeziku: npr. ako ste iz Švicarske a govorite engleski, možda\n"
+"svejedno želite švicarsku tipkovnicu. Ili ako govorite engleski, a živite u\n"
+"Quebecu, možda ćete se naći u sličnoj situaciji. U oba slučaja, morate se "
+"vratiti\n"
+"na ovaj instalacijski korak i odabrati odgovarajuću tipkovnicu iz popisa.\n"
+"\n"
+"Pristisnite \"Dodatno\" da biste dobili potpun popis podržanih tipkovnica."
+
+#: ../help.pm:612
+#, fuzzy, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Izaberite jezik kojim se želite služiti u instalaciji i sustavu.\n"
+"\n"
+"Pritiskom na \"Napredno\" moći ćete izabrati druge jezike koji će biti "
+"instalirani\n"
+"na vašu radnu stanicu. Odabiranjem drugih jezika instalirat će se "
+"specifične\n"
+"jezične datoteke za sustavsku dokumentaciju i aplikacije. Npr. ako ćete na "
+"svom\n"
+"računalu imati korisnike iz Španjolske, u stablu odaberite Engleski kao "
+"glavni\n"
+"jezik i u sekciji Napredno označite kućicu koja odgovara Španjolskoj.\n"
+"\n"
+"Primjetite da se može instalirati više jezika. Kada odredite eventualne "
+"dodatne\n"
+"lokale, stisnite \"U redu\" za nastavak."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Espanol"
+
+#: ../help.pm:653
+#, fuzzy, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"DrakX obično prepozna koliko vaš miš ima dugmeta. Ako ne, pretpostavlja da\n"
+"imate miš sa dva dugmeta, a treće će emulirati. DrakX će automatski znati da "
+"li\n"
+"se radi o PS/2, serijskom ili USB mišu.\n"
+"\n"
+"Ako želite odrediti drugačiji tip miša, odaberite odgovarajući tip iz "
+"ponuđenog\n"
+"popisa.\n"
+"\n"
+"Ako izaberete miš različit od podrazumijevanog, prikazati će se testni "
+"ekran.\n"
+"Koristite dugmad i kotačić da potvrdite da li su postavke točne. Ako miš ne "
+"radi\n"
+"dobro, stisnite razmaknicu ili [Return] da bi odustali i ponovno izabirali."
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "with Wheel emulation"
+msgstr "Emulacija gumbova"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Molim odaberite ispravni port. Na primjer, COM1 port pod MS Windowsima\n"
+"se, pod GNU/Linuxom zove \"ttyS0\"."
+
+#: ../help.pm:691
+#, fuzzy, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Ovo je najvažnija odluka za sigurnost vašeg GNU/Linux sustava: morate "
+"unijeti\n"
+"\"root\" lozinku. \"root\" je sustavski administrator i jedini koji je "
+"ovlašten\n"
+"da vrši nadogradnje, dodaje korisnike, mijenja cjelokupne postavke sustava, "
+"itd.\n"
+"Ukratko, \"root\" može raditi sve! Stoga morate izabrati lozinku koju je "
+"teško\n"
+"pogoditi, DrakX će vam reći da li je prelagana. Kao što vidite, možete "
+"odabrati\n"
+"da ne unesete lozinku, ali jako vam savjetujemo da to ne činite, barem zbog\n"
+"jednog razloga: nemojte mislite da, zbog tog što ste pokrenuli GNU/Linux, su "
+"vaši\n"
+"ostali operacijski sustavi sigurni od grešaka. Pošto \"root\" može "
+"premostiti\n"
+"sva ograničenja i nenamjerno obrisati sve podatke na particijama nemarnim "
+"pristupanjem,\n"
+"važno je da bude teško postati \"root\".\n"
+"\n"
+"Lozinka bi trebala biti kombinacija alfanumeričkih znakova i barem 8 znakova "
+"duga.\n"
+"Nikad ne zapisujte \"root\" lozinku, prelako dovodite sustav u opasnost.\n"
+"\n"
+"Ipak, nemojte izabrati predugu ili presloženu lozinku, jer ćete je morati "
+"lako\n"
+"zapamtiti.\n"
+"\n"
+"Lozinka se neće pojaviti na ekranu kako je budete upisivali. Zato je morate\n"
+"upisati dvaput da bi smanjili mogućnost greške pri upisu. Ako ipak ponovite "
+"istu\n"
+"grešku dva puta, morat ćete koristiti ovu \"netočnu\" lozinku kada se prvi "
+"put\n"
+"budete prijavljivali.\n"
+"\n"
+"U stručnjak modu, bit ćete zapitani da li ćete se spajati na "
+"autentifikacijski\n"
+"poslužitelj, poput NISa ili LDAPa.\n"
+"\n"
+"Ako vaša mreža koristi LDAP (ili NIS) protokole za autentifikaciju, "
+"izaberite\n"
+"\"LDAP\" (ili \"NIS\") kao autentifikaciju. Ako ne znate kako, pitajte\n"
+"administratora mreže.\n"
+"\n"
+"Ako vaše računalo nije povezano sa administriranom mrežom, morat ćete "
+"izabrati\n"
+"\"Lokalne datoteke\" za autentifikaciju."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "ovjera"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, fuzzy, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Ovdje biramo sustav za ispis za vaše računalo. Drugi OSovi možda nude "
+"jedan,\n"
+"ali Mandriva Linux nudi tri.\n"
+"\n"
+" * \"pdq\", što znači ``print, do not queue'' (ispiši, bez stavljanja u "
+"red), je\n"
+"izbor koji ćete koristiti ako imate izravnu vezu sa pisačem, želite izbjeći\n"
+"zastoje u ispisu i nemate pisače u mreži. Ima samo jednostavne mrežne "
+"mogućnosti\n"
+"i ponešto je spor za mrežu. Izaberite \"pdq\" ako ste novi u GNU/Linuxu. "
+"Možete\n"
+"promijeniti odabir poslije instalacije pokretanjem PrinterDrakea iz "
+"Mandriva\n"
+"kontrolnog centra i pritiskom na dugme za stručnjake.\n"
+"\n"
+" * \"%s\"``Common Unix Printing System'', je izvrstan za ispis na vašem "
+"lokalnom\n"
+"računalu, kao i za ispis na drugom kraju svijeta. Jednostavan je i može "
+"poslužiti\n"
+"kao poslužitelj i klijent za drevni \"lpd\" sustav za ispis. Dakle, "
+"kompatibilan je\n"
+"s ranijim sustavima. Ima mnoštvo trikova, ali osnovne postavke su gotovo\n"
+"jednostavne kao i \"pdq\". Ako trebate da vam emulira \"lpd\" poslužitelj, "
+"morate\n"
+"uključiti \"cups-lpd\" daemon. Ima grafička sučelja za ispis i za odabir "
+"opcija\n"
+"za ispis.\n"
+"\n"
+" * \"lprNG\"``line printer daemon New Generation''. Ovaj sustav može raditi\n"
+"otprilike iste stvari kao i ostali, ali će pisati i s pisačima u Novell "
+"mreži,\n"
+"jer podržava IPX protokol, i može ispisivati izravno u komande ljuske. Ako "
+"vam\n"
+"treba Novell ili ispis u komande bez korištenja preusmjeravanja, koristite "
+"lprNG.\n"
+"Inačem CUPS je najbolji jer je jednostavniji i bolje radi preko mreže."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Stručnjak"
+
+#: ../help.pm:771
+#, fuzzy, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX sada pretražuje IDE uređaje prisutne u vašem računalu.Također će "
+"pokušati\n"
+"pronaći PCI SCSI adapter(e). Ukoliko DrakX\n"
+"pronađe SCSI adapter i zna koji upravljački program da koristi, on će \n"
+"automatski biti instaliran.\n"
+"\n"
+"Ukoliko imate SCSI adapter, ISA SCSI adapter ili PCI SCSI adapter koji\n"
+"DrakX ne može prepoznati, biti ćete pitani da li imate SCSI adapter u vašem\n"
+"sustavu. Ukoliko nemate adapter, možete kliknuti na \"Ne\". Ukoliko kliknete "
+"na\n"
+"\"Da\", dobiti ćete popis upravljačkih programa odakle možete izabrati vaš\n"
+"specifičan adapter.\n"
+"\n"
+"Ako trebate ručno specifirati vaš adapter, DrakX će pitati da li želite \n"
+"specifirati opcije za njega. Trebali biste dozvoliti DrakX-u da isproba "
+"opcije za\n"
+"hardware. Ovo obično radi dobro.\n"
+"\n"
+"Ako ne, trebati ćete navesti opcije za upravljački program. Molimo\n"
+"pregledajte User\n"
+"Guide (poglavlje 3, sekciju \"Collecting informations on your hardware\") "
+"za\n"
+"preporuke o pribavljanju ovih informacija iz dokumentacije hardware-a, sa \n"
+"proizvođačevog Web site-a (ukoliko imate Internet pristup) ili iz Microsoft "
+"Windows-a\n"
+"(ukoliko ga imate na vašem sustavu)."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN kartica"
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "Graphical Interface"
+msgstr "X kod pokretanja sustava"
+
+#: ../help.pm:861
+#, fuzzy, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Izaberite hard disk kojeg želite obrisati kako bi instalirali vašu\n"
+"novu Mandriva Linux particiju. Budite pažljivi, svi postojeći podaci\n"
+"biti će izgubljen i neće se moći povratiti!"
+
+#: ../help.pm:866
+#, fuzzy, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Izaberite \"U redu\" ukoliko želite obrisati sve podatke i\n"
+"postojeće particije na navedenom tvrdom disku. Budite pažljivi, nakon\n"
+"klikanja na \"U redu\", nećete moći povratiti bilo kakve postojeće podatke "
+"ili\n"
+"particije na ovom hard disku, uključujući Windows podatke.\n"
+"\n"
+"Pritisnite na \"Odustani\" za prekidanje ove operacije bez gubljenja bilo\n"
+"kakvih postojećih podataka i particija na ovom hard disku."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Slijedeće ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Prijašnje"
+
diff --git a/perl-install/install/help/po/hu.po b/perl-install/install/help/po/hu.po
new file mode 100644
index 000000000..be666a2c9
--- /dev/null
+++ b/perl-install/install/help/po/hu.po
@@ -0,0 +1,1965 @@
+# translation of DrakX to Hungarian
+# Copyright (C) 2000-2001,2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+# Emese Kovacs <emese@gnome.hu>, 2000-2001.
+# Arpad Biro <biro_arpad@yahoo.com>, 2000, 2003, 2004, 2005, 2006.
+# Tamas Szanto <tszanto@mol.hu>, 2001.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hu\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2006-03-05 14:45+0100\n"
+"Last-Translator: Arpad Biro\n"
+"Language-Team: Hungarian\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Mielőtt továbblépne, olvassa át alaposan a licencegyezményt, amely az\n"
+"egész Mandriva Linux disztribúcióra érvényes. Ha elfogadja az abban\n"
+"szereplő feltételeket, akkor jelölje be a(z) \"%s\" opciót.\n"
+"Ha nem fogadja el valamelyik feltételt, akkor kattintson a(z)\n"
+"\"%s\" gombra - ezzel újraindítja a számítógépet."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"A Linux többfelhasználós rendszer; ez azt jelenti, hogy minden\n"
+"felhasználónak lehetnek például külön beállításai és saját fájljai.\n"
+"A \"root\" nevű felhasználótól (ez az azonosító a rendszergazdát\n"
+"jelöli) eltérően az itt felvett felhasználóknak csak a saját fájljaikat\n"
+"és a saját beállításaikat lesz joguk módosítani - az esetleges véletlen\n"
+"vagy rosszindulatú rendszermódosítások elkerülése érdekében.\n"
+"Létre kell hoznia legalább egy \"normál\" felhasználót az Ön saját\n"
+"használatára. Ezen normál felhasználói azonosítóval érdemes elvégezni\n"
+"az olyan tevékenységeket, amelyek nem igényelnek rendszergazdai\n"
+"jogosultságot. Bár nagyon praktikus minden alkalommal rendszergazdaként\n"
+"jelentkezni be, ez nagyon veszélyes is. Egy rendszergazdaként elkövetett\n"
+"hiba hatására meghibásodhat a rendszer. Ha normál felhasználóként követ\n"
+"el hibát, akkor esetleg elveszít bizonyos adatokat, de a rendszert nem\n"
+"teheti tönkre.\n"
+"\n"
+"Az első mezőben a valódi nevét adhatja meg. Ez természetesen nem kötelező;\n"
+"bármit be lehet írni névként. A telepítő az itt megadott név első szavát\n"
+"ajánlja fel a(z) \"%s\" mezőben. Ez utóbbi az a név, amellyel\n"
+"az adott felhasználó be tud majd jelentkezni a rendszerbe. A felkínált\n"
+"felhasználónév módosítható.\n"
+"A felhasználónév megadása után meg kell adni az ahhoz tartozó\n"
+"kívánt jelszót. Egy normál felhasználó jelszava biztonsági szempontból nem\n"
+"annyira kritikus, mint a rendszergazdáé; ez viszont nem ok arra, hogy\n"
+"felületesen legyen kezelve (üres vagy túl egyszerű jelszó megadásával) -\n"
+"végül is az Ön fájljai is veszélybe kerülhetnek.\n"
+"\n"
+"A(z) \"%s\" gomb lenyomása után felvehetők újabb felhasználók is.\n"
+"Vegyen fel egy-egy felhasználónevet mindazok számára, akik a gépet\n"
+"használni fogják. Amikor végzett a felhasználónevek létrehozásával,\n"
+"kattintson a(z) \"%s\" gombra.\n"
+"\n"
+"Ha a(z) \"%s\" gombra kattint, módosíthatja az adott felhasználó\n"
+"alapértelmezett parancsértelmezőjét (alapértelmezés szerint ez a \"bash\").\n"
+"\n"
+"Miután felvette a felhasználókat, lehetősége lesz arra, hogy automatikus\n"
+"bejelentkezést írjon elő. Ehhez meg kell adni a gépindításkor automatikusan\n"
+"bejelentkeztetendő felhasználó azonosítóját. Ha használni kívánja ezt a\n"
+"(biztonsági kockázatot jelentő) funkciót, akkor válassza ki a kívánt\n"
+"felhasználói azonosítót és ablakkezelőt, majd kattintson a(z) \"%s\"\n"
+"gombra. Ellenkező esetben távolítsa el a kijelölést a(z) \"%s\" opció mellől."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Szeretné használni ezt a lehetőséget?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Itt láthatók a lemezen talált, már létező linuxos partíciók.\n"
+"A varázsló javaslatai általában elfogadhatók, általános célú telepítésnél\n"
+"általában megfelelnek. Ha megváltoztatja a beállításokat, mindenképpen\n"
+"jelölje ki a gyökérpartíciót (\"/\"). Ne válassza túl kicsire, mert akkor\n"
+"nem lesz elég hely a szoftverek telepítéséhez. Ha külön partícióra\n"
+"szeretné helyezni a felhasználói adatokat, jelöljön ki egy külön \"/home\"\n"
+"partíciót (ez csak akkor lehetséges, ha legalább két Linux partíció\n"
+"létezik).\n"
+"\n"
+"A partíciók listájának mezői: \"név\", \"kapacitás\".\n"
+"\n"
+"A \"név\" képzési szabálya: \"a merevlemez típusa\", \"a lemez\n"
+"azonosítója\", \"a partíció azonosítója\" (például \"hda1\").\n"
+"\n"
+"\"A merevlemez típusa\" \"hd\", ha a lemez IDE-csatolós, és \"sd\",\n"
+"ha SCSI-csatolós.\n"
+"\n"
+"\"A lemez azonosítója\" egy betű a \"hd\" illetve az \"sd\" után.\n"
+"IDE-csatolós merevlemezek esetén:\n"
+"\n"
+" - \"a\" jelentése: \"első (master) meghajtó az első IDE-vezérlőn\"\n"
+"\n"
+" - \"b\" jelentése: \"második (slave) meghajtó az első IDE-vezérlőn\"\n"
+"\n"
+" - \"c\" jelentése: \"első meghajtó a második IDE-vezérlőn\"\n"
+"\n"
+" - \"d\" jelentése: \"második meghajtó a második IDE-vezérlőn\"\n"
+"\n"
+"SCSI-csatolós lemezeknél az \"a\" jelentése: \"a legalacsonyabb\n"
+"SCSI-azonosító\", \"b\" jelentése: \"a második legalacsonyabb\n"
+"SCSI-azonosító\", ..."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"A Mandriva Linux telepítőanyag több CD-n helyezkedik el. Ha egy "
+"kiválasztott\n"
+"csomag egy másik CD-n található, akkor a telepítő kiadja az\n"
+"aktuális CD-t, és megkéri Önt, hogy helyezze be a megfelelőt.\n"
+"Ha a szóban forgó lemez nincs kéznél, akkor kattintson a(z) \"%s\" gombra,\n"
+"így az adott csomagok nem lesznek telepítve."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Most meg kell adnia, mely programokat kívánja telepíteni a rendszerére.\n"
+"Több ezer program létezik Mandriva Linuxhoz; a kezelésük megkönnyítése\n"
+"érdekében a programok (hasonlóság alapján) csoportokba lettek sorolva.\n"
+"\n"
+"A Mandriva Linux rendszerben négy előredefiniált csomagkategória van\n"
+"meghatározva. A különböző kategóriákban levő csomagok keverhetők is,\n"
+"tehát egy \"Munkaállomás\" típusú telepítés tartalmazhat olyan\n"
+"alkalmazásokat is, amelyek csak a \"Kiszolgáló\" kategóriában vannak\n"
+"benne.\n"
+"\n"
+" - \"%s\": ha munkaállomásként tervezi használni a gépet, akkor\n"
+"válogasson a \"Munkaállomás\" kategóriában szereplő alkalmazások közül.\n"
+"\n"
+" - \"%s\": ha a gép programozásra is lesz használva, akkor\n"
+"válassza ki a kívánt csomagokat a kategóriából. A speciális \"LSB\"\n"
+"csoport telepítése esetén a rendszer úgy lesz beállítva, hogy megfeleljen\n"
+"a Linux Standard Base specifikációnak. Az \"LSB\" csoport kijelölése\n"
+"esetén az alapértelmezett 2.6 verziójú kernel helyett a 2.4 verzió kerül\n"
+"telepítésre - annak érdekében, hogy 100 százalékos legyen az LSB\n"
+"szabványnak való megfelelés. Ha nem jelöli ki az \"LSB\" csoportot,\n"
+"abban az esetben egy közel 100 százalékosan LSB-megfelelő rendszer\n"
+"lesz telepítve.\n"
+"\n"
+" - \"%s\": ha a gép kiszolgálóként lesz használva, válassza ki,\n"
+"hogy a gyakrabban használt szolgáltatások közül melyeket kívánja\n"
+"telepíteni a gépre.\n"
+"\n"
+" - \"%s\": itt választható ki a kívánt grafikus környezet.\n"
+"Ha szeretne grafikus felületet, akkor legalább egyet ki kell választani.\n"
+"\n"
+"Ha az egérkurzort egy csoport neve fölé viszi, akkor megjelenik egy rövid\n"
+"magyarázat az adott csoportról.\n"
+"\n"
+"Bejelölheti a(z) \"%s\" opciót; ez akkor hasznos, ha Ön ismeri a\n"
+"felkínált csomagokat, illetve ha teljes mértékben ellenőrizni kívánja,\n"
+"mi lesz a gépre feltelepítve.\n"
+"\n"
+"Ha a telepítést \"%s\" üzemmódban indította el, akkor megszüntetheti\n"
+"akár az összes csoport kijelölését is, hogy elkerülje új programok\n"
+"telepítését. Ez különösen akkor lehet hasznos, ha egy meglevő rendszert\n"
+"kíván helyreállítani vagy frissíteni.\n"
+"\n"
+"Ha telepítéskor az összes csoport kijelölését megszünteti (frissítésre\n"
+"ez nem vonatkozik), akkor a telepítő választási lehetőséget fog felkínálni\n"
+"a minimális telepítésre vonatkozóan. A következő lehetőségek választhatók:\n"
+"\n"
+" - \"%s\": grafikus rendszer a lehető legkevesebb csomag telepítésével.\n"
+"\n"
+" - \"%s\": az alaprendszer az alapvető programokkal és azok\n"
+"dokumentációjával. Megfelel például kiszolgáló telepítéséhez.\n"
+"\n"
+" - \"%s\": a lehető legkevesebb csomag telepítése; csak parancssoros\n"
+"felülettel rendelkező Linux-rendszer. Körülbelül 65 megabájt méretű "
+"telepítés."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Frissítés"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Alapvető dokumentációval"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Valóban minimális telepítés"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Ha egyedi csomagkiválasztást választott, megjelenik egy fa, amely az\n"
+"összes telepíthető programcsomagot tartalmazza csoportokba és\n"
+"alcsoportokba kategorizálva. A fa böngészése közben nem csak csomagokat\n"
+"jelölhet ki, hanem egész csoportokat illetve alcsoportokat is.\n"
+"\n"
+"Amikor kiválaszt egy csomagot a fában, a jobb oldalon megjelenik egy leírás\n"
+"az adott csomagról.\n"
+"\n"
+"Ha kiszolgálócsomagok is ki lettek választva - akár közvetlenül, akár\n"
+"bizonyos csoportok tagjaként -, a telepítő megerősítést kér Öntől arra\n"
+"vonatkozóan, hogy valóban telepíteni kívánja-e azon kiszolgálószoftvereket.\n"
+"A Mandriva Linux rendszerben alapértelmezésben az összes feltelepített\n"
+"szolgáltatás elindításra kerül a rendszer indulásakor. Még ha azok\n"
+"biztonságosak is illetve nem rendelkeznek ismert problémákkal, akkor is\n"
+"előfordulhat, hogy utóbb biztonsági problémák merülnek fel velük\n"
+"kapcsolatban. Ha nem tudja, hogy egy bizonyos szolgáltatásnak mi a\n"
+"feladata illetve miért kerül telepítésre, akkor kattintson a(z)\n"
+"\"%s\" gombra. Ha a(z) \"%s\" gombra kattint, akkor a felsorolt\n"
+"szolgáltatások telepítésre kerülnek, és alapértelmezés szerint\n"
+"automatikusan elindításra kerülnek majd rendszerindításkor.\n"
+"\n"
+"A(z) \"%s\" opcióval kikapcsolható az a figyelmeztetés,\n"
+"amely akkor jelenik meg, amikor a telepítő - függőségi okokból -\n"
+"automatikusan kijelöl meghatározott csomagokat. Bizonyos csomagok közt\n"
+"függőségi kapcsolat van, ami azt jelenti, hogy egy bizonyos csomagnak a\n"
+"telepítése csak akkor történhet meg, ha egy meghatározott másik csomag\n"
+"már telepítve van. A telepítő képes meghatározni, hogy egy bizonyos\n"
+"függőség esetén mely csomagokra van szükség a telepítés sikeres\n"
+"végrehajtásához.\n"
+"\n"
+"A lista alatt levő, floppylemezt ábrázoló ikon lehetővé teszi egy korábbi\n"
+"telepítés során elmentett csomaglista betöltését. Ez akkor hasznos, ha\n"
+"több gépre szeretné ugyanazon csomagokat telepíteni. Az említett ikonra\n"
+"kattintva a telepítő megkéri Önt, hogy tegyen be egy floppyt, amely egy\n"
+"korábbi telepítés végén készült. Ha szeretné megtudni, hogyan lehet ilyen\n"
+"floppyt készíteni, akkor tekintse meg a telepítés utolsó lépésében szereplő\n"
+"második tippet."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Automatikus függőségek"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": a(z) \"%s\" gombra kattintva elindul a nyomtatóbeállítási\n"
+"varázsló. Nyomtatóbeállítással kapcsolatos további információkat a\n"
+"felhasználói kézikönyvből lehet szerezni. Az ott bemutatott felület hasonló\n"
+"ahhoz, ami a telepítéskor megjelenik."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Ebben a párbeszédablakban lehet kijelölni a rendszerindításkor\n"
+"automatikusan elindítandó szolgáltatásokat.\n"
+"\n"
+"A telepítő megjeleníti a jelenleg telepített összes szolgáltatás listáját.\n"
+"Vizsgálja meg a listát alaposan, és törölje a kijelölést azok mellől,\n"
+"amelyek rendszerindításkor való elindítására nincs szükség.\n"
+"\n"
+"Egy szolgáltatás kiválasztásakor megjelenik a hozzá tartozó rövid leírás.\n"
+"Ha nem tudja biztosan, hogy a szolgáltatásra szükség van-e vagy\n"
+"sem, akkor ne változtassa meg az alapértelmezett indítási módot.\n"
+"\n"
+"Gondosan járjon el, ha a gépet kiszolgálónak fogja használni; ne\n"
+"indítson el egyetlen olyan szolgáltatást sem automatikusan, amelyre nincs\n"
+"szükség. Kiszolgáló esetén bizonyos szolgáltatások biztonsági kockázatot\n"
+"jelentenek. Csak a valóban szükséges szolgáltatásokat engedélyezze."
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"A Linux az időt a GMT (Greenwich Mean Time) alapján kezeli - a\n"
+"kiválasztott időzónának megfelelő helyi időre konvertálja azt. Ha a gép\n"
+"alaplapjának órája helyi időre van állítva, akkor kapcsolja ki az\n"
+"időzónához való igazítást a(z) \"%s\" opció kikapcsolásával -\n"
+"ekkor a rendszeróra szerinti idő azonos lesz a gép órája szerintivel\n"
+"(azaz a két óra ugyanazon időzóna szerint mutatja az időt). Ez\n"
+"akkor hasznos, ha van a gépen más operációs rendszer is.\n"
+"\n"
+"A(z) \"%s\" opció automatikusan beállítja az órát egy internetes\n"
+"időkiszolgálóhoz kapcsolódva. Ehhez szükség van egy beállított\n"
+"internetkapcsolatra. Az időkiszolgálók közül lehetőleg egy Önhöz közel\n"
+"levőt válasszon. Ez a funkció feltelepít az Ön gépére egy időkiszolgálót,\n"
+"amelyet a helyi hálózat többi gépe is használhat."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Automatikus időszinkronizáció"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Grafikus kártya\n"
+"\n"
+"A telepítő általában felismeri és beállítja a gépben levő grafikus kártyát.\n"
+"Ha nem így történik, kiválaszthatja a grafikus kártyák listájából a\n"
+"megfelelőt.\n"
+"\n"
+"Ha több grafikus modul is elérhető az Ön kártyájához - 3D-gyorsítással\n"
+"illetve a nélkül -, akkor kiválaszthatja az Önnek leginkább megfelelőt."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Az X (teljes néven: X Window System) a Linux grafikus felületét nyújtó\n"
+"rendszer. A Mandriva Linuxban levő grafikus környezetek (KDE, GNOME,\n"
+"AfterStep, WindowMaker, ...) ezen grafikus rendszert használják.\n"
+"\n"
+"Egy listát fog látni az elérhető paraméterekről, amelyekkel optimalizálható\n"
+"a grafikus megjelenítés.\n"
+"\n"
+"\n"
+"\n"
+"Grafikus kártya\n"
+"\n"
+"A telepítő általában felismeri és beállítja a gépben levő grafikus kártyát.\n"
+"Ha nem így történik, kiválaszthatja a grafikus kártyák listájából a\n"
+"megfelelőt.\n"
+"\n"
+"Ha több grafikus modul is elérhető az Ön kártyájához - 3D-gyorsítással\n"
+"illetve a nélkül -, akkor kiválaszthatja az Önnek leginkább megfelelőt.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+"A telepítő általában automatikusan megállapítja a monitor típusát, és\n"
+"beállítja azt. Ha nem így történik, kiválaszthatja ebből a listából a\n"
+"monitor típusát.\n"
+"\n"
+"\n"
+"\n"
+"Felbontás\n"
+"\n"
+"Itt kiválaszthatja a kívánt felbontási és színmélységi értékeket az\n"
+"elérhető értékek listájából. Válassza ki az igényeinek legjobban\n"
+"megfelelő értékeket. A beállítások tetszőlegesen módosíthatók a\n"
+"telepítés után is. A képernyőn egy mintakép fog megjelenni a\n"
+"kiválasztott beállítások szemléltetésére.\n"
+"\n"
+"\n"
+"\n"
+"Teszt\n"
+"\n"
+"Bizonyos hardverelemek esetén ez a bejegyzés nem jelenik meg.\n"
+"\n"
+"A rendszer megnyit egy grafikus képernyőt a kívánt felbontással, ha ez\n"
+"lehetséges. Ha látható a tesztelés közben megjelenő üzenet, akkor nyomja\n"
+"le a(z) \"%s\" gombot; a telepítő ekkor a következő lépésre ugrik. Ha\n"
+"viszont az üzenet nem látható, az azt jelenti, hogy a beállítás nem\n"
+"megfelelő. A beállítás tesztelése 12 másodperc elteltével automatikusan\n"
+"véget ér, és ismét a menü jelenik meg a képernyőn. Módosítsa a\n"
+"beállításokat, amíg el nem ér egy megfelelő beállítást.\n"
+"\n"
+"\n"
+"\n"
+"Beállítások\n"
+"\n"
+"Itt beállítható, hogy rendszerindításkor grafikus üzemmódba váltson-e a\n"
+"rendszer. Ha a gép kiszolgálóként fog üzemelni, vagy nem sikerült\n"
+"megfelelően beállítani a grafikus üzemmódot, akkor javasolt a(z) \"%s\"\n"
+"lehetőséget választani."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+"\n"
+"A telepítő általában automatikusan megállapítja a monitor típusát, és\n"
+"beállítja azt. Ha nem így történik, kiválaszthatja ebből a listából a\n"
+"monitor típusát."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Felbontás\n"
+"\n"
+"Itt kiválaszthatja a kívánt felbontási és színmélységi értékeket az\n"
+"elérhető értékek listájából. Válassza ki az igényeinek legjobban megfelelő\n"
+"értékeket. A beállítások tetszőlegesen módosíthatók a telepítés után is.\n"
+"A képernyőn egy mintakép fog megjelenni a kiválasztott beállítások\n"
+"szemléltetésére."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Ha több grafikus modul is elérhető az Ön kártyájához - 3D-gyorsítással\n"
+"illetve a nélkül -, akkor kiválaszthatja az Önnek leginkább megfelelőt."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Beállítások\n"
+"\n"
+"Itt beállítható, hogy rendszerindításkor grafikus üzemmódba váltson-e a\n"
+"rendszer. Ha a gép kiszolgálóként fog üzemelni, vagy nem sikerült\n"
+"megfelelően beállítani a grafikus üzemmódot, akkor a(z) \"%s\"\n"
+"lehetőséget érdemes választani."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Ebben a lépésben kell megadni, hogy a Mandriva Linux telepítése a "
+"merevlemez\n"
+"melyik részére történjen. Ha a lemez még teljesen üres, vagy a korábban\n"
+"telepített operációs rendszer(ek) miatt nincs elég szabad hely, akkor újra\n"
+"kell partícionálni a lemezt. A partícionálás a lemezterület logikai\n"
+"újrafelosztását jelenti - erre a Mandriva Linux telepítéséhez szükséges\n"
+"hely létrehozása érdekében van szükség.\n"
+"\n"
+"A partícionálás veszélyes művelet. Hiba esetén adatvesztéssel járhat\n"
+"(ha a lemez nem volt üres), ráadásul általában nincs lehetőség visszatérni\n"
+"egy korábbi állapothoz. Emiatt kezdő felhasználóknak sok nehézséget\n"
+"okozhat. A telepítő tartalmaz egy varázslót, amely egyszerűbbé teszi a\n"
+"művelet végrehajtását, de mielőtt használatba venné, olvassa végig a\n"
+"leírást.\n"
+"\n"
+"A lemezek tartalmától függően többféle lehetőség van:\n"
+"\n"
+" - \"%s\": ez a lehetőség az üres meghajtók automatikus\n"
+"partícionálását jelenti. Ebben az esetben a telepítő nem tesz\n"
+"fel további kérdéseket.\n"
+"\n"
+" - \"%s\": a varázsló talált egy vagy több\n"
+"linuxos partíciót a lemezen. Ha ezeket szeretné használni a\n"
+"telepítéshez, válassza ezt a lehetőséget. Ezt követően meg kell adnia\n"
+"az ezekhez tartozó csatolási pontokat. Alapértelmezésben a korábbi\n"
+"állapotnak megfelelő csatolási pontok vannak megadva; általában\n"
+"érdemes változatlanul hagyni azokat.\n"
+"\n"
+" - \"%s\": ha a\n"
+"Windows úgy van feltelepítve a lemezre, hogy elfoglalja az összes\n"
+"elérhető területet, akkor annak egy részét fel kell szabadítani a Linux\n"
+"számára. Ez történhet a Windows-partíció törlésével (lásd \"A teljes\n"
+"lemez törlése\" lehetőséget) vagy átméretezésével (az utóbbi a FAT\n"
+"és az NTFS típusú partíciókra vonatkozik).\n"
+"Az átméretezés végrehajtható a lemezen levő adatok\n"
+"elvesztése nélkül - feltéve, hogy azt megelőzően töredezettségmentesítve\n"
+"lett a kérdéses partíció. Javasolt továbbá az adatok mentése is.\n"
+"Ezen módszer a javasolt abban az esetben, ha a Mandriva Linuxot és a\n"
+"Windowst ugyanazon a gépen szeretné használni.\n"
+"\n"
+"Ha ezt a lehetőséget választja, ne feledkezzen meg arról, hogy ennek\n"
+"hatására a windowsos partíció mérete a korábbinál kisebb lesz,\n"
+"tehát a Windows használatakor kevesebb hely lesz az adatok tárolására\n"
+"és új szoftverek telepítésére.\n"
+"\n"
+" - \"%s\": ha minden adatot és minden partíciót\n"
+"törölni szeretne a lemezről, és a telepítéshez az így felszabaduló\n"
+"helyet szeretné használni, akkor válassza ezt a lehetőséget. Legyen\n"
+"nagyon óvatos ezzel a lehetőséggel, mert a lemezen levő adatok\n"
+"véglegesen elvesznek a megerősítés után.\n"
+"\n"
+"Ha ezt a lehetőséget választja, a lemezen levő összes adat törlésre kerül.\n"
+"\n"
+" - \"%s\": ez a funkció akkor használható, ha a Windows az\n"
+"egész lemezt elfoglalja. A funkció egyszerűen letöröl mindent\n"
+"a lemezről, és újrapartícionálja azt.\n"
+"\n"
+"Ha ezt a lehetőséget választja, a lemezen levő összes adat elvész.\n"
+"\n"
+" - \"%s\": ha közvetlenül (varázsló nélkül)\n"
+"szeretné elvégezni a partícionálást, akkor válassza ezt a lehetőséget.\n"
+"Legyen óvatos - sok minden elvégezhető ebben az üzemmódban, de a\n"
+"használata veszélyes. Könnyen elveszítheti a lemezen levő összes adatot\n"
+"ennek a használatával, ezért csak indokolt esetben válassza ezt a\n"
+"funkciót. A DiskDrake program használatáról a felhasználói kézikönyv\n"
+"partíciókezelésről szóló szakaszában találhat további információt."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Már létező partíció használata"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "A teljes lemez törlése"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"A telepítés befejeződött; a Linux rendszer készen áll a használatra.\n"
+"A rendszer újraindításához kattintson a(z) \"%s\" gombra. Ne\n"
+"feledkezzen meg a telepítőlemez eltávolításáról. Miután a\n"
+"gép elvégzi az indítási hardverteszteket, megjelenik a rendszerbetöltő\n"
+"menüje, amelyből kiválasztható, melyik operációs rendszer induljon el.\n"
+"\n"
+"A(z) \"%s\" gomb lenyomására két újabb gomb jelenik meg:\n"
+"\n"
+" - \"%s\": olyan telepítőfloppy\n"
+"készítése, amelynek használatával emberi közreműködés nélkül végezhető\n"
+"a rendszer telepítése. Az így végzett telepítések a jelenlegi telepítés\n"
+"beállításait használják.\n"
+"\n"
+"Két lehetőség közül lehet választani a gomb lenyomása után:\n"
+"\n"
+" - \"%s\". Részben automatizált telepítést jelent;\n"
+"a partícionálási lépés az egyetlen interaktív tevékenység.\n"
+"\n"
+" - \"%s\". Teljesen automatizált telepítés; a merevlemez\n"
+"tartalma felülíródik, az összes korábbi adat elvész.\n"
+"\n"
+"Ez a lehetőség jól használható akkor, amikor nagyobb számú azonos gépre\n"
+"kell a rendszert feltelepíteni. Az automatikus telepítéssel\n"
+"kapcsolatban a Mandriva Linux honlapján találhatók további információk.\n"
+"\n"
+" - \"%s\"(*): elmenti a telepítés során\n"
+"kiválasztott csomagok listáját. Ha egy újabb telepítés alkalmával fel\n"
+"kívánja használni az elmentett listát, akkor helyezze be az azt tartalmazó\n"
+"floppyt a telepítés megkezdésekor, majd - amikor a gép billentyűlenyomásra\n"
+"vár - nyomja le az \"F1\" billentyűt, ez után pedig írja be a következőt:\n"
+"linux defcfg=\"floppy\" - utána pedig nyomja le az Enter billentyűt.\n"
+"\n"
+"\n"
+"(*) Ehhez szükség lesz egy FAT fájlrendszerre formázott floppyra.\n"
+"A formázás Linux alatt a következő paranccsal végezhető el:\n"
+"\"mformat a:\". Másik módszer a formázásra: \"fdformat /dev/fd0\", majd\n"
+"\"mkfs.vfat /dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Automatikus telepítőfloppy készítése"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Ha azt a lehetőséget választotta, hogy fel kíván használni bizonyos,\n"
+"már létező Linux-partíciókat, akkor itt lehetősége van bármelyikük\n"
+"újraformázására. A formázás letörli az adott partíció teljes tartalmát.\n"
+"Ha ezt kívánja tenni, akkor jelölje ki azon partíciókat is.\n"
+"\n"
+"Nem szükséges újraformázni az összes, korábban létrehozott partíciót.\n"
+"Az operációs rendszernek szánt partíció(ka)t mindenképpen le kell formázni\n"
+"(például a \"/\", \"/usr\" és \"/var\" partíciókat), de a felhasználói\n"
+"és egyéb adatokat tartalmazó partíciókat nem szükséges újraformázni (ilyen\n"
+"például a \"/home\").\n"
+"\n"
+"Gondosan ellenőrizze, mely partíciókat jelöli ki, mert a formázás során az\n"
+"adott partíciókon levő adatok törlődnek, és később nem nyerhetők vissza.\n"
+"\n"
+"Kattintson a(z) \"%s\" gombra a formázások megkezdéséhez.\n"
+"\n"
+"Kattintson a(z) \"%s\" gombra, ha más partícióra szeretné telepíteni a\n"
+"Mandriva Linux operációs rendszert.\n"
+"\n"
+"Kattintson a(z) \"%s\" gombra, ha bizonyos partíciókat ellenőriztetni\n"
+"kíván (hibás blokkok keresése)."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Lehetséges, hogy amikor Ön a Mandriva Linux rendszert telepíti, már\n"
+"frissítésre kerültek bizonyos csomagok a rendszer kiadása óta.\n"
+"Elképzelhető, hogy bizonyos hibák ki lettek javítva, illetve\n"
+"hogy meg lettek oldva bizonyos felmerült biztonsági problémák. Ezeket\n"
+"a frissítéseket Ön letöltheti az interneten keresztül.\n"
+"Válassza a(z) \"%s\" lehetőséget, ha van működő internetkapcsolata. Ha\n"
+"inkább később kívánja telepíteni a frissítéseket, akkor a(z) \"%s\"\n"
+"lehetőséget válassza.\n"
+"\n"
+"Ha a(z) \"%s\" lehetőséget választja, akkor megjelenik egy lista azon\n"
+"helyekről, amelyekről a frissítések letölthetők. Válasszon közülük egy\n"
+"Önhöz közel levőt.\n"
+"Ezt követően egy csomagválasztási fa jelenik meg. Ha telepíteni kívánja a\n"
+"kijelölt csomagokat, akkor nyomja le a(z) \"%s\" gombot. Ha nem kíván\n"
+"csomagokat telepíteni, akkor a(z) \"%s\" gombot nyomja le."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Most kiválaszthat egy biztonsági szintet a gép számára. Alapszabály,\n"
+"hogy ha fontos adatok vannak tárolva a gépen, vagy a gép kapcsolódik\n"
+"az internetre, akkor érdemes magasabbra venni a biztonsági szintet.\n"
+"Magasabb szint esetén viszont általában nehézkesebb a gép használata.\n"
+"\n"
+"Ha nem biztos benne, hogy mit volna érdemes választani, akkor válassza\n"
+"az alapértelmezés szerinti lehetőséget. A biztonsági szint később is\n"
+"módosítható a Mandriva Linux Vezérlőközpontban elérhető \"draksec\"\n"
+"eszközzel.\n"
+"\n"
+"A(z) \"%s\" mezőben megadandó a biztonságért felelős személy email-címe.\n"
+"A biztonsági üzenetek azon címre lesznek küldve."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Biztonsági adminisztrátor"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Ebben a lépésben kell kiválasztani a Mandriva Linux rendszer telepítéséhez\n"
+"használni kívánt partíciókat. Ha a kívánt partíciók már létre lettek hozva\n"
+"(egy korábbi Linux-telepítés vagy valamilyen partícionálási segédprogram\n"
+"által), akkor felhasználhatók a már létező partíciók. Ha viszont még nem\n"
+"léteznek, akkor először definiálni kell a partíciókat.\n"
+"\n"
+"Partíció létrehozásánál először ki kell választani egy merevlemezt.\n"
+"Ehhez kattintson a megfelelő azonosítóra: \"hda\" az első IDE-csatolós\n"
+"lemez, \"hdb\" a második; \"sda\" az első SCSI-csatolós lemez, és így\n"
+"tovább.\n"
+"\n"
+"A kijelölt merevlemez partícionálásánál az alábbi lehetőségek közül lehet\n"
+"választani:\n"
+"\n"
+" - \"%s\": ennek hatására a kijelölt merevlemezen található\n"
+"összes partíció törlésre kerül.\n"
+"\n"
+" - \"%s\": ez lehetővé teszi Ext3 és lapozási\n"
+"partíciók automatikus létrehozását a rendelkezésre álló üres területen.\n"
+"\n"
+" - \"%s\": hozzáférést biztosít további lehetőségekhez:\n"
+"\n"
+" - \"%s\": a partíciós tábla mentése floppyra.\n"
+"A floppy használatával később - szükség esetén - helyre lehet állítani\n"
+"(vissza lehet tölteni) a partíciós táblát. Erősen ajánljuk, hogy használja\n"
+"ezt a lehetőséget.\n"
+"\n"
+" - \"%s\": egy korábban elmentett\n"
+"partíciós tábla visszatöltése floppyról.\n"
+"\n"
+" - \"%s\": ha a partíciós tábla\n"
+"megsérült, akkor ezzel lehet megpróbálni annak kijavítását. Legyen nagyon\n"
+"óvatos, mert a javítás nem mindig sikerül.\n"
+"\n"
+" - \"%s\": ennek hatására az összes\n"
+"módosítás elvész; a program ismét betölti a kiindulási partíciós táblát.\n"
+"\n"
+" - \"%s\": ha nincs\n"
+"bejelölve ez az opció, akkor a felhasználóknak kézzel kell végezniük a\n"
+"cserélhető adathordozók (például CD és floppy) csatolását illetve\n"
+"leválasztását.\n"
+"\n"
+" - \"%s\": akkor válassza ezt a lehetőséget, ha a partícionálást\n"
+"varázsló segítségével szeretné végrehajtani. Ha nem ismeri a\n"
+"partícionálás technikai részleteit, akkor érdemes ezt választania.\n"
+"\n"
+" - \"%s\": ezzel lehet a módosításokat visszavonni.\n"
+"\n"
+" - \"%s\": további funkciók elérhetővé tétele\n"
+"(partíciótípus, opciók, formázás) és több információ megjelenítése a\n"
+"merevlemezekkel kapcsolatosan.\n"
+"\n"
+" - \"%s\": a partícionálás befejezése után ezzel lehet a módosításokat\n"
+"elmenteni a lemezre.\n"
+"\n"
+"Egy partíció méretének megadásakor finombeállítást végezhet a billentyűzet\n"
+"nyílbillentyűivel.\n"
+"\n"
+"Az összes funkció elérhető a billentyűzetről. A partíciók között a Tab\n"
+"billentyűvel és a Fel/Le nyilakkal lehet mozogni.\n"
+"\n"
+"Ha egy partíció ki van jelölve, használni lehet a következőket:\n"
+"\n"
+" - Ctrl+C: új partíció létrehozása (ha üres partíció van kijelölve)\n"
+"\n"
+" - Ctrl+D: partíció törlése\n"
+"\n"
+" - Ctrl+M: csatolási (mount) pont megadása\n"
+"\n"
+"Ha információt szeretne a használható fájlrendszertípusokról, olvassa el\n"
+"a kézikönyv Ext2FS fájlrendszerrel foglalkozó fejezetét.\n"
+"\n"
+"Ha a telepítés egy PowerPC gépre történik, akkor érdemes létrehozni egy\n"
+"kisméretű HFS rendszerindítási partíciót (legalább 1 MB) a \"Yaboot\"\n"
+"rendszerbetöltő program számára. Ha nagyobbra veszi a partíciót (például\n"
+"50 MB méretűre), akkor eltárolható lesz rajta például egy tartalék kernel\n"
+"illetve RAM-diszk képfájlok (image-ek) esetleges rendszerhibák esetére."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Cserélhető adathordozó automatikus csatolása"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Váltás a normál és a szakértői módok közt"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Egynél több microsoftos partíció van a lemezen.\n"
+"Válassza ki azt, amelyiket át szeretné méretezni, hogy a\n"
+"Mandriva Linux feltelepíthető legyen.\n"
+"\n"
+"A partíciólista a következő mezőket tartalmazza: \"linuxos név\",\n"
+"\"windowsos név\", \"kapacitás\".\n"
+"\n"
+"A \"linuxos név\" formátuma a következő: \"a merevlemez típusa\",\n"
+"\"a lemez azonosítója\", \"a partíció azonosítója\" (példa a linuxos\n"
+"névre: \"hda1\").\n"
+"\n"
+"Ha a lemez IDE-csatolós, akkor \"a merevlemez típusa\" \"hd\",\n"
+"ha pedig SCSI-csatolós, akkor \"sd\".\n"
+"\n"
+"\"A lemez azonosítója\" mindig egy betű a \"hd\" illetve az \"sd\" után.\n"
+"IDE-csatolós meghajtók esetén:\n"
+"\n"
+" - \"a\" jelentése: \"első (master) meghajtó az első IDE-vezérlőn\"\n"
+"\n"
+" - \"b\" jelentése: \"második (slave) meghajtó az első IDE-vezérlőn\"\n"
+"\n"
+" - \"c\" jelentése: \"első meghajtó a második IDE-vezérlőn\"\n"
+"\n"
+" - \"d\" jelentése: \"második meghajtó a második IDE-vezérlőn\"\n"
+"\n"
+"SCSI-csatolós meghajtóknál az \"a\" jelentése: \"a legalacsonyabb\n"
+"SCSI-azonosító\", \"b\" jelentése: \"a második legalacsonyabb\n"
+"SCSI-azonosító\", és így tovább.\n"
+"\n"
+"A \"windowsos név\" a meghajtó Windows alatt használt azonosítója\n"
+"(az első lemez vagy partíció neve \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": ellenőrizze a jelenlegi országbeállítást. Ha az nem\n"
+"megfelelő, kattintson a(z) \"%s\" gombra és válasszon egy másik országot.\n"
+"Ha a kívánt ország nem szerepel az elsőként megjelenített listában, akkor\n"
+"kattintson a(z) \"%s\" gombra a teljes országlista megjelenítéséhez."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Erre a lépésre csak akkor kerül sor, ha a gépen már van linuxos partíció.\n"
+"\n"
+"Most közölnie kell a telepítővel, hogy új telepítést szeretne-e végezni\n"
+"vagy pedig egy meglevő Mandriva Linux-rendszert kíván frissíteni:\n"
+"\n"
+" - \"%s\": a korábbi rendszer felülírásra kerül. Attól függően, hogy\n"
+"milyen partíciók találhatók a gépen, bizonyos partíciók (például a\n"
+"\"home\" nevű saját könyvtárakat tartalmazók) változatlan tartalommal\n"
+"megőrizhetők. Ha szeretné módosítani a merevlemezek partícionálását\n"
+"vagy a fájlrendszereket, akkor ezt a lehetőséget használja.\n"
+"\n"
+" - \"%s\": lehetővé teszi egy korábbi Mandriva Linux-telepítés\n"
+"csomagjainak frissítését. A merevlemezek partícionálása változatlanul\n"
+"marad, a felhasználók adatai sem módosulnak. A többi beállítási lépés közül\n"
+"a legtöbb elérhető lesz - a folyamat hasonló a normál telepítéshez.\n"
+"\n"
+"Frissítés használata akkor javasolt, ha a számítógépen\n"
+"Mandriva Linux 8.1 vagy újabb kiadás van."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"A telepítő a kiválasztott nyelvtől függően automatikusan kiválaszt\n"
+"egy bizonyos billentyűzetbeállítást. Ellenőrizze, hogy a kiválasztott\n"
+"beállítás megfelel-e Önnek; ha nem felel meg, akkor válasszon másikat.\n"
+"\n"
+"Elképzelhető, hogy Önnek nem a nyelvének megfelelő billentyűzete van;\n"
+"például ha Ön egy angolul beszélő magyar ember, akkor lehetséges,\n"
+"hogy magyar billentyűzete van.\n"
+"Hasonló helyzet adódhat, ha az Ön nyelve magyar, de Ön Quebecben\n"
+"tartózkodik - az Ön által beszélt nyelv nem feltétlenül egyezik meg a\n"
+"billentyűzet nyelvével. Ez a telepítési lépés lehetővé teszi a hasonló\n"
+"esetekre, hogy kiválasszon egy megfelelő billentyűzetet egy listából.\n"
+"\n"
+"Hogy megjelenjen a támogatott billentyűzetek listája, kattintson\n"
+"a(z) \"%s\" nyomógombra.\n"
+"\n"
+"Ha nem latin ábécére épülő billentyűzetkiosztást választ, akkor a\n"
+"következő lépésben kijelölhet egy billentyűkombinációt, amellyel\n"
+"majd a latin és a nem-latin kiosztások közt lehet váltani."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Az első lépés a nyelv kiválasztása.\n"
+"\n"
+"A kiválasztott nyelv befolyásolja a telepítőnek, a dokumentációnak és a\n"
+"rendszer többi részének a nyelvét is. Válassza ki a megfelelő földrajzi\n"
+"helyet, majd a kívánt nyelvet.\n"
+"\n"
+"A(z) \"%s\" nyomógombra kattintva kiválaszthatók további telepítendő\n"
+"nyelvek. További nyelvek választása esetén telepítésre kerülnek az adott\n"
+"nyelvekhez tartozó fájlok is - a rendszerdokumentáció és az alkalmazások\n"
+"szövegei. Ha például a gépet spanyol felhasználók is használni fogják,\n"
+"akkor az alapértelmezett nyelvnek (például magyar) a fában történő\n"
+"kiválasztását követően a Speciális részben jelölje be a(z) \"%s\"\n"
+"lehetőséget.\n"
+"\n"
+"Az UTF-8 (Unicode) szabvány támogatásáról: A Unicode egy új\n"
+"karakterkódolási szabvány az összes létező nyelv lefedésére.\n"
+"A Linux alatti teljes támogatása még fejlesztés alatt áll.\n"
+"A Mandriva Linux UTF-8-használatát befolyásolják a felhasználó\n"
+"által végzett beállítások:\n"
+"\n"
+" - ha olyan nyelvet választ, amelyhez erősen kapcsolódik egy\n"
+"korábbi kódolási módszer (Latin1-nyelvek, orosz, japán, kínai,\n"
+"koreai, thai, görög, török, valamint a legtöbb, ISO-8859-2 kódolást\n"
+"használó nyelv), akkor alapértelmezésben ez a korábbi kódolás lesz\n"
+"használva\n"
+"\n"
+" - egyéb nyelvek esetében a Unicode szabvány lesz használva\n"
+"alapértelmezésben\n"
+"\n"
+" - ha kettő vagy több nyelv kerül telepítésre, és azok eltérő\n"
+"kódolást használnak, akkor a Unicode szabványt fogja használni az\n"
+"egész rendszer\n"
+"\n"
+" - a felhasználó előírhatja, hogy az egész rendszer a Unicode-ot\n"
+"használja - ehhez a(z) \"%s\" lehetőséget kell választani (függetlenül\n"
+"a választott nyelvektől)\n"
+"\n"
+"Tetszőleges számú nyelv telepíthető az alapértelmezett nyelven felül.\n"
+"Telepítheti akár az összeset is - ehhez a(z) \"%s\" opciót kell\n"
+"használni. Egy nyelv támogatásának telepítése azt jelenti, hogy telepítésre\n"
+"kerülnek az adott nyelvhez kapcsolódó fordítások, betűkészletek,\n"
+"helyesírás-ellenőrzők és egyebek.\n"
+"\n"
+"A rendszerre telepített nyelvek közti váltáshoz a \"localedrake\"\n"
+"program használható. Rendszergazdai jogosultsággal az összes felhasználó\n"
+"nyelvbeállításait lehet módosítani, normál felhasználóként futtatva\n"
+"pedig csak az adott felhasználó nyelvbeállításait."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "spanyol"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"A telepítő általában felismeri, hogy hány gomb van az egéren. Ha ez nem így\n"
+"történik, akkor azt feltételezi, hogy Ön kétgombos egérrel rendelkezik,\n"
+"és ez esetben beállítja a harmadik egérgomb emulálását. Kétgombos egér\n"
+"esetén a \"harmadik\" gomb lenyomása a két gomb egyidejű lenyomását\n"
+"jelenti (ha az emulálás be van állítva). A telepítő felismeri, hogy\n"
+"milyen fajtájú az egér: PS/2, soros vagy USB.\n"
+"\n"
+"Ha háromgombos, görgő nélküli egere van, akkor kiválaszthat egy \"%s\"\n"
+"egeret. A telepítő ekkor úgy állítja be az egeret, hogy emulálható\n"
+"legyen a görgő. Emulálási üzemmódban a görgő helyettesítéséhez\n"
+"nyomja le a középső egérgombot, majd mozgassa az egeret előre-hátra\n"
+"irányban.\n"
+"\n"
+"Ha Ön másféle egértípust szeretne megadni, válassza ki a megfelelő típust\n"
+"a listából.\n"
+"\n"
+"\"Általános\" egértípus kiválasztásához használja a(z) \"%s\" bejegyzést.\n"
+"Ez a legtöbb egérhez megfelel.\n"
+"\n"
+"Ha az alapértelmezettől eltérő egeret választ, akkor megjelenik egy\n"
+"tesztelési képernyő. Használja az egérgombokat és a görgőt, hogy\n"
+"ellenőrizze a beállítások helyességét és az egér helyes működését.\n"
+"Ha az egér nem működik helyesen, akkor nyomja le a Szóköz vagy az Enter\n"
+"(Return) billentyűt, és válasszon egy másik fajta egeret a listából.\n"
+"\n"
+"A görgős egereket nem mindig ismeri fel a rendszer. Ha az egér nem lett\n"
+"felismerve, válassza ki saját kezűleg a listából. Ügyeljen arra, hogy az\n"
+"egér portjának megfelelő tételt válassza ki. Miután kiválasztotta a kívánt\n"
+"típust, majd lenyomta a(z) \"%s\" gombot, egy egeret ábrázoló kép\n"
+"jelenik meg a képernyőn. Mozgassa az egér görgőjét, hogy az megfelelően\n"
+"aktiválva legyen. Ha a képernyőn levő görgőt mozogni látja az egérgörgő\n"
+"mozgatásakor, akkor tesztelje le egyrészt az egér gombjainak működését,\n"
+"másrészt azt, hogy megfelelően mozog-e az egérkurzor a képernyőn az egér\n"
+"mozgatásakor."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "görgő-emulációval"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Univerzális | Bármilyen PS/2- vagy USB-egér"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Válassza ki a megfelelő portot. Például a windowsos \"COM1\" port\n"
+"neve Linux alatt \"ttyS0\"."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Ez a legkritikusabb pont a Linux rendszer biztonságára vonatkozóan:\n"
+"meg kell adni a \"root\" nevű felhasználó jelszavát. A \"root\" azonosító\n"
+"a rendszeradminisztrátort jelöli; ez az egyetlen olyan felhasználó,\n"
+"amelynek joga van rendszerfrissítést végezni, felhasználókat létrehozni,\n"
+"módosítani a rendszerbeállításokat illetve hasonló tevékenységeket végezni.\n"
+"Röviden szólva: a \"root\" felhasználó bármit megtehet a rendszeren.\n"
+"Ez az, amiért a jelszót úgy kell megválasztani, hogy azt minél nehezebb\n"
+"legyen kitalálni. A telepítő jelzi az Ön számára, ha a jelszót könnyen\n"
+"kitalálhatónak tartja. Nem kötelező megadni jelszót, de erősen javasolt.\n"
+"A Linux rendszert - ugyanúgy, mint bármely más rendszert - tönkre lehet\n"
+"tenni rendszeradminisztrátori hibákkal. Mivel a \"root\" felhasználóra\n"
+"nem vonatkoznak a korlátozások, ezért ha például óvatlanul kezeli a\n"
+"partíciókat, akkor akár le is törölheti az azokon levő adatokat - ezért\n"
+"fontos, hogy a rendszeradminisztrátori azonosító védve legyen.\n"
+"\n"
+"A jelszónak betűkből és számokból kell állni, és legalább 8 karakter\n"
+"hosszúságúnak kell lenni. Soha ne írja le a rendszeradminisztrátori\n"
+"jelszót - ez veszélyt jelenthetne a rendszerre.\n"
+"\n"
+"A fentiek ellenére ne válasszon túl hosszú vagy túl bonyolult jelszót, mert\n"
+"Önnek fejben kell tartania azt.\n"
+"\n"
+"A jelszó nem jelenik meg a képernyőn, amikor Ön begépeli azt. Az esetleges\n"
+"gépelési hibák miatti problémák elkerülése érdekében kétszer kell beírni a\n"
+"jelszót. Ha esetleg ugyanazt a gépelési hibát követi el a jelszó első és\n"
+"második megadásánál, akkor ezen - helytelenül írt - jelszóval kell majd\n"
+"bejelentkezni a rendszerbe.\n"
+"\n"
+"Ha szeretné a géphez való hozzáférést azonosítási kiszolgálóval\n"
+"(authentication server) vezérelni, akkor kattintson a(z) \"%s\" gombra.\n"
+"\n"
+"Ha az Ön hálózata LDAP-t, NIS-t vagy PDC-t használ azonosításhoz, akkor\n"
+"válassza az ennek megfelelő tételt a(z) \"%s\" pontban. Ha nem tudja,\n"
+"hogy mit kellene megadni, kérdezze meg a rendszergazdát.\n"
+"\n"
+"Ha Önnek problémája van a jelszavak megjegyzésével kapcsolatban, vagy\n"
+"a számítógép nem fog kapcsolódni az internetre és Ön megbízik\n"
+"mindenkiben, aki elérheti a gépet, abban az esetben elfogadható a(z)\n"
+"\"%s\" lehetőség választása."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "felhasználóazonosítás"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"A rendszerindító programot a számítógép indítja el a gép elindításakor,\n"
+"ezt követően ezen program végzi a rendszer elindítását. A rendszerindító\n"
+"program telepítése általában teljesen automatikus. A telepítő elemzi a\n"
+"lemez betöltőszektorát, és annak megfelelően cselekszik, hogy ott mit\n"
+"talál:\n"
+"\n"
+" - Ha windowsos betöltőszektort talál, akkor azt helyettesíteni fogja egy\n"
+"GRUB-/LILO-betöltőszektorral. Így Önnek lehetősége lesz arra is, hogy\n"
+"Linuxot indítson, és arra is, hogy egy másik operációs rendszert.\n"
+"\n"
+" - Ha GRUB- vagy LILO-betöltőszektort talál, helyettesíti azt egy új\n"
+"példánnyal.\n"
+"\n"
+"Ha a telepítő nem tudja meghatározni, hogy hova telepítendő a\n"
+"rendszerindító, akkor kérdést tesz fel Önnek azzal kapcsolatban.\n"
+"Általában \"%s\" a legbiztosabb hely. \"%s\" lehetőség választása\n"
+"esetén nem lesz telepítve rendszerindító. Ezt a lehetőséget csak\n"
+"akkor használja, ha biztos abban, hogy ezt szeretné."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Itt lehet nyomtatórendszert választani a gép számára. Más operációs\n"
+"rendszerekben általában csak egy van, a Mandriva Linuxban viszont kettő is.\n"
+"Mindkettőnek megvannak a maga előnyei bizonyos környezetben használva.\n"
+"\n"
+" - \"%s\": \"print, do not queue\", azaz sorba tevés nélkül történő\n"
+"nyomtatás. Akkor válassza ezt, ha közvetlen kapcsolat van a\n"
+"nyomtatóval, továbbá ha szeretné, hogy egyszerűen meg lehessen oldani a\n"
+"papírberagadási problémákat illetve ha nincsen hálózati nyomtatója. A(z)\n"
+"\"%s\" módszer csak a legegyszerűbb hálózati szolgáltatásokat nyújtja, és\n"
+"hálózaton viszonylag lassú. Ha Ön nem rendelkezik komolyabb linuxos\n"
+"ismeretekkel, akkor érdemes ezt a módszert választania.\n"
+"\n"
+" - \"%s\": \"Common UNIX Printing System\", azaz általános UNIX-os\n"
+"nyomtatórendszer. Helyi és távoli nyomtatókra való nyomtatáshoz remekül\n"
+"használható. Ez egy egyszerűen beállítható rendszer, és képes a régi\n"
+"\"lpd\" nyomtatórendszer kiszolgálójaként vagy klienseként funkcionálni -\n"
+"vagyis kompatibilis a régebbi operációs rendszerekkel. Nagy tudású\n"
+"rendszer, viszont az alapvető beállítások majdnem olyan egyszerűen\n"
+"elvégezhetők benne, mint a \"pdq\" esetében. Ha arra használja, hogy egy\n"
+"\"lpd\" kiszolgálót emuláljon vele, akkor aktiválnia kell a \"cups-lpd\"\n"
+"szolgáltatást. A(z) \"%s\" rendelkezik grafikus felülettel, amely\n"
+"nyomtatásra, a nyomtatóparaméterek kiválasztására illetve nyomtatókezelésre\n"
+"használható.\n"
+"\n"
+"Telepítés után lehetősége lesz a nyomtatórendszer lecserélésére (ha mégsem\n"
+"felel meg az itt kiválasztott) - ehhez a PrinterDrake programot kell\n"
+"elindítani a Mandriva Linux Vezérlőközpontban, majd rá kell kattintani a(z)\n"
+"\"%s\" gombra."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "PDQ"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Szakértő"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"A telepítő megkeresi a gépben levő IDE-eszközöket. Felderíti\n"
+"a PCI SCSI-kártyákat is. A program a felismert SCSI-kártyákhoz\n"
+"automatikusan feltelepíti a megfelelő meghajtóprogramokat.\n"
+"\n"
+"Mivel a hardverfelderítés nem mindig ismeri fel a gépben levő eszközöket,\n"
+"ezért elképzelhető, hogy a telepítő nem ismeri fel a merevlemezeket. Ha így\n"
+"történik, akkor adja meg saját kezűleg a kérdéses eszközök jellemzőit.\n"
+"\n"
+"Ha kézzel kellett megadnia a PCI SCSI-kártya típusát, a telepítő\n"
+"megkérdezi, hogy szeretné-e megadni a kártya jellemzőit. Általában nincs\n"
+"szükség saját kezűleg való beállításra, mivel a telepítő a legtöbb esetben\n"
+"le tudja kérdezni a megfelelő beállításokat.\n"
+"\n"
+"Ha a telepítő nem tudja meghatározni a szükséges jellemzőket, akkor\n"
+"Önnek kell megadnia a meghajtóprogram paramétereit."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": ha a telepítő hangkártyát észlel a gépben, az itt fog\n"
+"megjelenni. Ha az itt megjelenő hangkártya nem azonos a gépben levővel,\n"
+"akkor kattintson a gombra és válasszon egy másik meghajtóprogramot."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Itt a gépéről összegyűjtött adatokat láthatja. A telepített hardvertől\n"
+"függően a következőkben felsorolt elemek jelenhetnek meg. A bejegyzések a\n"
+"beállítható elemeket tartalmazzák azok aktuális beállításaival együtt.\n"
+"Módosítás a megfelelő \"%s\" gombbal végezhető.\n"
+"\n"
+" - \"%s\": ellenőrizze a jelenlegi billentyűzet-kiosztást és\n"
+"szükség esetén módosítsa azt.\n"
+"\n"
+" - \"%s\": ellenőrizze a jelenlegi országbeállítást. Ha az nem\n"
+"megfelelő, kattintson a(z) \"%s\" gombra és válasszon egy másik\n"
+"országot. Ha a kívánt ország nem szerepel az elsőként megjelenített\n"
+"listában, akkor kattintson a(z) \"%s\" gombra a teljes országlista\n"
+"megjelenítéséhez.\n"
+"\n"
+" - \"%s\": a telepítő alapértelmezésben felkínál egy általa\n"
+"megfelelőnek tartott időzóna-beállítást, amelyet az Ön által kiválasztott\n"
+"ország alapján határoz meg. Ha az nem felel meg Önnek, akkor módosítsa a(z)\n"
+"\"%s\" gombbal.\n"
+"\n"
+" - \"%s\": ellenőrizze a jelenlegi egérbeállításokat; a módosításukhoz\n"
+"kattintson a gombra.\n"
+"\n"
+" - \"%s\": a(z) \"%s\" gombra kattintva elindul a\n"
+"nyomtatóbeállítási varázsló. Nyomtatóbeállítással kapcsolatos további\n"
+"információkat a felhasználói kézikönyvből lehet szerezni. Az ott\n"
+"bemutatott felület hasonló ahhoz, ami a telepítéskor megjelenik.\n"
+"\n"
+" - \"%s\": ha a telepítő hangkártyát észlel a gépben, az itt fog\n"
+"megjelenni. Ha az itt megjelenő hangkártya nem azonos a gépben levővel,\n"
+"akkor kattintson a gombra és válasszon egy másik meghajtóprogramot.\n"
+"\n"
+" - \"%s\": ha a telepítő tévékártyát észlel a gépben, az itt\n"
+"fog megjelenni. Ha a telepítő nem észleli a gépben levő tévékártyát,\n"
+"akkor kattintson a(z) \"%s\" gombra és állítsa be kézzel.\n"
+"\n"
+" - \"%s\": ha a(z) \"%s\" gombra kattint, módosíthatja a kártya\n"
+"paramétereit.\n"
+"\n"
+" - \"%s\": a telepítő alapértelmezésben \"800x600\"-as\n"
+"vagy \"1024x768\"-as felbontást állít be a grafikus felülethez. Ha ez nem\n"
+"felel meg Önnek, akkor kattintson a(z) \"%s\" gombra a grafikus felület\n"
+"beállításainak módosításához.\n"
+"\n"
+" - \"%s\": ha be szeretné állítani az internet vagy a helyi hálózat\n"
+"elérését most, akkor kattintson a gombra. Információkat a nyomtatott\n"
+"dokumentációból szerezhet, vagy telepítés után a Mandriva Linux\n"
+"Vezérlőközpontban.\n"
+"\n"
+" - \"%s\": lehetővé teszi a HTTP- és FTP-proxyk beállítását arra az\n"
+"esetre, ha a gép egy proxykiszolgáló mögött lesz.\n"
+"\n"
+" - \"%s\": lehetővé teszi az egyik korábbi lépésben\n"
+"beállított biztonsági szint módosítását.\n"
+"\n"
+" - \"%s\": ha tervezi a gép internetre való kapcsolását, akkor érdemes\n"
+"egy tűzfalat használni az esetleges behatolások ellen. A tűzfalbeállítással\n"
+"kapcsolatban a kézikönyvben találhat részletes információt.\n"
+"\n"
+" - \"%s\": ha szeretné módosítani a rendszerbetöltő\n"
+"beállításait, kattintson a megfelelő gombra. Elsősorban a komolyabb\n"
+"ismeretekkel rendelkező felhasználóknak javasolt. Információkat a\n"
+"nyomtatott dokumentációból szerezhet, vagy telepítés után a\n"
+"Mandriva Linux Vezérlőközpontban a rendszerindítónál.\n"
+"\n"
+" - \"%s\": itt részletesen beállítható, hogy mely\n"
+"szolgáltatások legyenek működtetve a gépen. Ha kiszolgálóként szeretné\n"
+"üzemeltetni a gépet, akkor érdemes átnézni ezt a részt."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN-kártya"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Grafikus felület"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Válassza ki azt a lemezt, amelyet törölni szeretne a\n"
+"Mandriva Linux-partíció létrehozásához. Figyelem: a lemezen\n"
+"található adatok elvesznek, és később nem nyerhetők vissza!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Kattintson a(z) \"%s\" gombra, ha a lemezen található összes adatot\n"
+"és partíciót törölni szeretné. Figyelem! A(z) \"%s\" gomb megnyomása\n"
+"után nincs mód a törölt adatok és partíciók visszaállítására -\n"
+"természetesen akkor sem, ha egy Windows-partíció törlődött.\n"
+"\n"
+"Kattintson a(z) \"%s\" gombra, ha nem kívánja végrehajtani a műveletet\n"
+"(a lemezen található partíciók és adatok ez esetben nem változnak)."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Következő ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Előző"
+
diff --git a/perl-install/install/help/po/id.po b/perl-install/install/help/po/id.po
new file mode 100644
index 000000000..3b241382e
--- /dev/null
+++ b/perl-install/install/help/po/id.po
@@ -0,0 +1,1974 @@
+# Instalator Grafis Mandriva Linux
+# Copyright (C) 1999 Mandriva
+# Budi Rachmanto <rac@mandrivalinux.org>, 2001-2003
+# Linux Indonesia <http://www.linux.or.id>, 1999-2001
+# Mohammad DAMT <mdamt@cdl2000.com>, 1999-2001
+# Andy <chandy@indo.net.id>, 1999
+# Kelana <nk@telkom.net>, 1999
+# Willy Sudiarto Raharjo <willysr@gmail.com>, 2004 - 2005.
+# Erwien Samantha <erwiensamantha@gmail.com>, 2005.
+# Bayu Artanto <bayuart@yahoo.com>, 2005.
+# Ahmad Ramadhana <ahmad_ramadhana@yahoo.com.sg>, 2005.
+# Firdaus <dausnux@gmail.com>, 2005.
+# Sofian <sofianhanafi@yahoo.com>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX 0.1\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2006-03-11 10:45+0700\n"
+"Last-Translator: Willy Sudiarto Raharjo <willysr@gmail.com>\n"
+"Language-Team: Indonesia <mdk-id@yahoogroups.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.6\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Bacalah lisensi sebelum melanjutkan. Lisensi mencakup seluruh distribusi\n"
+"Mandriva Linux. Jika Anda setuju dengan semua pasal di dalamnya, klik\n"
+"kotak \"%s\". Jika tidak, klik pada tombol \"%s\" akan mereboot komputer "
+"Anda."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux adalah sistem multiuser, artinya tiap pengguna bisa punya "
+"kesukaan,\n"
+"file sendiri. Tidak seperti \"root\", sang administrator, pengguna di sini "
+"tidak berhak\n"
+"mengubah apapun kecuali konfigurasi dan file mereka sendiri, menjaga sistem "
+"dari perubahan\n"
+"yang dapat merusak sistem secara keseluruhan. Anda harus membuat setidaknya "
+"satu pengguna \n"
+"reguler untuk Anda sendiri. Account ini Anda pakai untuk rutinitas. Meski "
+"Anda dapat login \n"
+"sebagai \"root\" untuk melakukan apa saja, tapi itu amat berbahaya! "
+"Kesalahan terkecil dapat \n"
+"menyebabkan sistem Anda tidak bekerja selamanya. Meski Anda melakukan "
+"kesalahan serius sebagai \n"
+"pengguna normal, Anda hanya akan kehilangan sebagian informasi, tidak "
+"seluruh sistem.\n"
+"\n"
+"Pertama, Anda harus mengisi nama. Ini tidak wajib, tentu saja - Anda dapat\n"
+"mengisinya sesuka Anda. DrakX akan mengambil kata pertama yang Anda "
+"masukkan\n"
+"pada kotak dan menyalinnya pada \"%s\" sebagai nama yang harus diketikkan "
+"pengguan untuk login ke sistem. \n"
+"Anda dapat mengubahnya. Lalu Anda harus mengisi katasandi. Katasandi "
+"pengguna \n"
+"biasa tidak sepenting katasandi \"root\" dari segi keamanan, tapi tidak "
+"ada \n"
+"alasan untuk mengabaikannya - file Anda bisa beresiko.\n"
+"\n"
+"Setelah Klik pada \"%s\", Anda dapat menambahkan pengguna untuk setiap "
+"rekan,\n"
+"ayah, atau saudara Anda. Klik \"%s\" ketika Anda telah selesai menambahkan "
+"pengguna.\n"
+"\n"
+"Klik pada tombol \"%s\" memungkinkan Anda mengubah \"shell\" standar untuk\n"
+"pengguna terkait (standar: bash).\n"
+"\n"
+"Ketika Anda selesai menambahkan pengguna, Anda akan ditanya untuk memilih "
+"pengguna yang \n"
+"dapat otomatis login saat komputer di-boot. Bila tertarik (dan tak begitu "
+"peduli\n"
+"dengan keamanan lokal), pilihlah pengguna dan manajer window-nya, lalu klik\n"
+"pada \"%s\". Jika tidak tertarik, jangan tandai kotak \"%s\"."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Apakah Anda ingin menggunakan fitur ini?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Berikut adalah daftar partisi Linux yang terdeteksi pada hard drive Anda.\n"
+"Anda dapat memakai pilihan yg dibuatkan, karena itu baik untuk installasi\n"
+"umum. Bila Anda mengubah pilihan, setidaknya Anda perlu mendefinisikan\n"
+"partisi root (\"/\"). Jangan pilih partisi yang terlalu kecil agar dapat\n"
+"menginstal software dengan leluasa. Bila Anda ingin menyimpan data pada "
+"partisi\n"
+"lain, Anda perlu membuat partisi \"/home\" (hanya mungkin jika punya lebih\n"
+"dari satu partisi Linux.)\n"
+"\n"
+"Setiap partisi terdaftar sebagai: \"Nama\", \"Kapasitas\".\n"
+"\n"
+"\"Nama\" berstruktur: \"tipe hard drive\", \"nomor hard drive\",\n"
+"\"nomor partisi\" (misalnya \"hda1\").\n"
+"\n"
+"\"Tipe hard drive\" adalah \"hd\" untuk drive IDE dan \"sd\" untuk drive "
+"SCSI.\n"
+"\n"
+"\"Nomor Hard Drive\", selalu berupa huruf setelah \"hd\" atau \"sd\". Bila "
+"berupa IDE, maka:\n"
+"\n"
+" *\"a\" berarti \"hard drive master pada kontroller IDE primer\",\n"
+"\n"
+" *\"b\" berarti \"hard drive slave pada kontroler IDE primer\",\n"
+"\n"
+" *\"c\" berarti \"hard drive master pada kontroler IDE sekunder\",\n"
+"\n"
+" *\"d\" berarti \"hard drive slave pada kontroler IDE sekunder\",\n"
+"\n"
+"Pada drive SCSI, \"a\" adalah \"ID SCSI terkecil\", \"b\" adalah\"ID SCSI "
+"terkecil kedua\", dan seterusnya."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Installasi Mandriva Linux didistribusikan pada beberapa CDROM. DrakX tahu "
+"jika paket\n"
+"terpilih berada di CDROM lain dan akan mengeluarkan CD yang ada untuk "
+"kemudian\n"
+"meminta Anda memasukkan CD yg diperlukan. Jika Anda tidak memiliki CD yang "
+"diperlukan,\n"
+"cukup klik pada \"%s\", maka paket tidak akan diinstal."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Sekarang waktunya untuk menentukan program yang akan diinstal. Terdapat "
+"ribuan \n"
+"pada Mandriva Linux, dan untuk mempermudah, mereka telah diletakkan pada "
+"grup \n"
+"aplikasi yang sejenis.\n"
+"\n"
+"Mandriva Linux mengurutkan paket dalam empat kategori. Anda bisa "
+"menggabungkan \n"
+"menyesuaikan aplikasi dari berbagai kategori, sehingga installasi "
+"``Workstation''\n"
+"tetap dapat memiliki aplikasi pada installasi ``Server''\n"
+"\n"
+" * \"%s\": jika Anda ingin menggunakan komputer Anda sebagai workstation, "
+"pilih\n"
+"satu/lebih grup dalam kategori workstation.\n"
+"\n"
+" * \"%s\": jika komputer akan digunakan untuk pemrograman, pilih grup\n"
+"dari kategori itu. Grup khusus \"LSB\" akan mengkonfigurasi sistem\n"
+"agar sesuai dengan Spesifikasi Linux Standard Base sedekat mungkin.\n"
+"\n"
+" Memilih grup \"LSB\" juga akan menginstall seri kernel \"2.4\",\n"
+"dan bukan default \"2.6\". Hal ini untuk memastikan kesetaraan 100%% dengan "
+"LSB \n"
+"pada sistem. Namun, jika Anda tidak memilih grub \"LSB\" Anda akan \n"
+"tetap mendapatkan sistem yang hampir setara 100%% dengan LSB.\n"
+"\n"
+" * \"%s\": jika komputer diinginkan menjadi server, Anda dapat\n"
+"memilih layanan paling umum yang akan diinstal.\n"
+"\n"
+" * \"%s\": di sini Anda memilih lingkungan grafis. Minimal Anda\n"
+"harus pilih satu jika ingin punya workstation grafis!\n"
+"\n"
+"Untuk melihat penjelasan singkat, gerakkan kursor mouse ke atas nama grup.\n"
+"\n"
+"Anda bisa menandai kotak \"%s\", yang berguna jika Anda terbiasa dengan \n"
+"paket yang ditawarkan atau jika Anda ingin mempunyai kontrol penuh dari "
+"apa \n"
+"yang akan diinstall.\n"
+"\n"
+"Jika Anda memulai installasi dalam mode \"%s\", Anda bisa menghapus semua "
+"grup\n"
+"dan mencegah installasi paket baru. Hal ini berguna untuk memperbaiki atau \n"
+"mengupdate sistem yang sudah ada.\n"
+"\n"
+"Jika Anda tidak memilih semua grup ketika menjalankan installasi umum "
+"(sebagai\n"
+"kebalikan dari upgrade), sebuah dialog muncul untuk menawarkan opsi lain \n"
+"untuk installasi minimal:\n"
+"\n"
+" * \"%s\": menginstall paket seminimal mungkin untuk mendapatkan sebuah \n"
+"desktop grafis.\n"
+"\n"
+" * \"%s\": menginstall sistem dasar ditambah utilitas dasar dan juga \n"
+"dokumentasi. Installasi ini cocok untuk membuat sebuah server.\n"
+"\n"
+" * \"%s\": akan menginstall paket seminimal mungkin yang diperlukan \n"
+"untuk mendapatkan sistem Linux yang bekerja. Dengan installasi ini, Anda \n"
+"akan mendapatkan antarmuka perintah baris. Ukuran totalnya sekitar 65\n"
+"megabyte."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Upgrade"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Dengan dokumentasi dasar"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Installasi paling minimal"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Jika Anda memilih paket sendiri, installer akan menampilkan sebuah pohon \n"
+"berisi seluruh paket yang diklasifikasikan oleh grup dan sub grup. Selama\n"
+"menjelajah pohon tersebut, Anda bisa memilih seluruh grup, sub grup, atau "
+"paket\n"
+"individu.\n"
+"\n"
+"Setiap kali Anda memilih paket dalam pohon, penjelasan muncul di sisi kanan\n"
+"sehingga Anda tahu tujuan dari paket tersebut.\n"
+"\n"
+"!! Jika paket server terpilih dengan sengaja atau karena merupakan bagian "
+"suatu\n"
+"grup besar, akan ada pertanyaan konfirmasi installasi paket tersebut. Pada\n"
+"Mandriva Linux, secara default semua server terinstal dijalankan saat boot.\n"
+"Meski aman saat distribusi diluncurkan, ada kemungkinan lubang keamanan\n"
+"ditemukan setelah versi Mandriva Linux ini selesai. Jika Anda tidak tahu "
+"apa\n"
+"yang dilakukan oleh suatu layanan atau mengapa ia diinstal, klik \"%s\".\n"
+"Jika Anda menekan \"%s\" layanan terdaftar akan diinstal dan akan "
+"dijalankan\n"
+"secara otomatis. !!\n"
+"\n"
+"Opsi \"%s\" digunakan untuk mematikan dialog yang muncul tiap kali\n"
+"installer memilih suatu paket secara otomatis untuk menyelesaikan masalah\n"
+"ketergantungan. Beberapa paket tergantung pada yang lain dan installasi \n"
+"sebuah paket mungkin membutuhkan installasi paket lain. Installer bisa \n"
+"menentukan paket mana yang diperlukan untuk menyelesaikan ketergantungan\n"
+"dan menyelesaikan installasi.\n"
+"\n"
+"Ikon disket di bagian bawah memungkinkan Anda untuk memuat daftar paket \n"
+"yang diinstal pada installasi sebelumnya. Hal ini berguna jika Anda telah\n"
+"memiliki sejumlah komputer yang hendak Anda konfigurasi secara serupa. Meng-"
+"klik\n"
+"pada ikon ini akan meminta Anda memasukkan disket yang dibuat pada akhir \n"
+"installasi lainnya. Lihat tip kedua di langkah terakhir untuk membuat "
+"floppy \n"
+"tersebut."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Ketergantungan otomatis"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": meng-klik pada \"%s\" untuk membuka konfigurator printer. Baca\n"
+"bab yg bersangkutan di ``Pedoman Pemula'' untuk informasi lebih lanjut "
+"tentang\n"
+"cara setup printer baru. Antarmuka yang ditampilkan di sana sama dengan "
+"yang \n"
+"yang dipakai saat installasi."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Dialog ini digunakan untuk memilih layanan yang Anda jalankan saat boot.\n"
+"\n"
+"DrakX akan menampilkan semua layanan yang tersedia pada installasi ini. "
+"Periksa \n"
+"dengan baik dan jangan tandai layanan yang tidak diperlukan saat boot.\n"
+"\n"
+"Penjelasan singkat tentang layanan akan ditampilkan ketika suatu layanan "
+"dipilih. \n"
+"Namun jika Anda tak yakin kegunaan layanan tersebut, lebih aman menggunakan "
+"default.\n"
+"\n"
+"Pada tahap ini, hati-hati jika Anda bermaksud menjadikan komputer Anda "
+"sebuah\n"
+"server: Anda mungkin tidak ingin menjalankan layanan yang tidak diperlukan. "
+"Ingat,\n"
+"beberapa layanan bisa berbahaya jika dijalankan. Secara umum, pilihlah "
+"hanya\n"
+"layanan yang benar-benar Anda perlukan."
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux mengatur waktu dalam GMT (Greenwich Mean Time) dan "
+"menerjemahkannya\n"
+"ke waktu lokal sesuai zona waktu yang Anda pilih. Jika waktu pada "
+"motherboard\n"
+"Anda diset ke waktu lokal, Anda bisa menonaktifkannya dengan tidak memilih\n"
+"\"%s\" yang akan mengijinkan GNU/Linux mengetahui bahwa waktu sisten dan "
+"waktu\n"
+"perangkat keras berada dalam zona waktu yang sama. Hal ini berguna ketika "
+"komputer\n"
+"juga menggunakan sistem operasi lain.\n"
+"\n"
+"Opsi \"%s\" akan otomatis mengatur jam dengan menghubungi server waktu "
+"remote di \n"
+"internet. Agar fitur ini bekerja, Anda harus memiliki koneksi Internet. "
+"Kami\n"
+"merekomendasikan Anda memilih server terdekat. Opsi ini sebenarnya "
+"menginstall \n"
+"server waktu yang dapat digunakan oleh komputer lain pada jaringan lokal "
+"Anda."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Sinkronisasi waktu otomatis"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Kartu Grafis\n"
+"\n"
+" Installer akan mendeteksi dan mengkonfigurasi kartu grafis yang "
+"terinstall \n"
+"secara otomatis pada komputer Anda. Jika tidak benar, pilih kartu yang "
+"sesuai pada\n"
+"daftar ini.\n"
+"\n"
+" Pada situasi dimana beberapa server tersedia untuk kartu Anda, dengan "
+"atau tanpa\n"
+"akselerasi 3D, Anda akan ditanya mana yang paling sesuai dengan kebutuhan "
+"Anda."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (untuk X Window System) adalah jantung dari interface grafis GNU/Linux\n"
+"yang diperlukan oleh semua lingkungan grafis (KDE, GNOME, AfterStep,\n"
+"WindowMaker, dll.) yang dibundel pada Mandriva Linux.\n"
+"\n"
+"Anda akan melihat daftar parameter yang berbeda untuk merubah untuk "
+"mendapatkan\n"
+"tampilan grafis yang optimal.\n"
+"\n"
+"Kartu Grafis\n"
+"\n"
+" Installer akan secara otomatis mendeteksi dan mengkonfigurasi kartu \n"
+"grafis yang terinstall pada komputer Anda. Jika tidak benar, Anda bisa "
+"memilih\n"
+"dari daftar kartu grafis yang terinstall pada komputer Anda.\n"
+"\n"
+" Pada situasi dimana beberapa server tersedia untuk kartu Anda, dengan "
+"atau tanpa\n"
+"akselerasi 3D, Anda akan ditanya mana yang paling sesuai dengan kebutuhan "
+"Anda.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Biasanya, installer akan secara otomatis mendeteksi dan mengkonfigurasi \n"
+"monitor yang terhubung ke komputer Anda. Jika tidak benar, Anda bisa "
+"memilih\n"
+"dari daftar monitor yang terhubung ke komputer Anda.\n"
+"\n"
+"\n"
+"\n"
+"Resolusi\n"
+"\n"
+" Disini Anda bisa memilih resolusi dan kedalaman warna yang tersedia "
+"untuk\n"
+"perangkat keras grafis Anda. Pilih yang memenuhi kebutuhan Anda (Anda bisa \n"
+"merubahnya setelah installasi). Contoh dari konfigurasi terpilih "
+"ditampilkan\n"
+"pada gambar monitor.\n"
+"\n"
+"\n"
+"\n"
+"Pengujian\n"
+"\n"
+" Bergantung pada perangkat keras Anda, entry ini mungkin tidak muncul.\n"
+"\n"
+" Sistem akan mencoba membuka layar grafis pada resolusi yang diinginkan.\n"
+"Jika Anda melihat pesan pengujian selama tes dan menjawab \"%s\",\n"
+"maka DrakX akan melanjutkan ke langkah selanjutnya. Jika Anda tidak "
+"melihatnya,\n"
+"maka berarti beberapa bagian dari konfigurasi deteksi otomatis salah dan\n"
+"pengujian akan berakhir setelah 12 detik dan kembali ke menu. Ubahlah\n"
+"setting sehingga Anda mendapatkan tampilan grafis yang benar.\n"
+"\n"
+"\n"
+"\n"
+"Opsi\n"
+"\n"
+" Langkah ini mengijinkan Anda untuk memilih apakah komputer Anda hendak "
+"berpindah\n"
+"ke antarmuka grafis secara otomatis saat boot.Biasanya Anda harus melihat \n"
+"\"%s\" jika komputer Anda bertindak sebagai server, atau jika Anda adalah\n"
+"tidak berhasil mendapatkan konfigurasi tampilan."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+"\n"
+" Biasanya, installer akan secara otomatis mendeteksi dan mengkonfigurasi \n"
+"monitor yang terhubung ke komputer Anda. Jika tidak benar, Anda bisa "
+"memilih\n"
+"dari daftar monitor yang terhubung ke komputer Anda."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Resolusi\n"
+"\n"
+" Disini Anda bisa memilih resolusi dan kedalaman warna yang tersedia "
+"untuk\n"
+"perangkat keras grafis Anda. Pilih yang memenuhi kebutuhan Anda (Anda bisa \n"
+"merubahnya setelah installasi). Contoh dari konfigurasi terpilih "
+"ditampilkan\n"
+"pada gambar monitor."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Pada situasi dimana beberapa server tersedia untuk kartu Anda, dengan atau "
+"tanpa\n"
+"akselerasi 3D, Anda akan ditanya mana yang paling sesuai dengan kebutuhan "
+"Anda."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Opsi\n"
+"\n"
+" Langkah ini mengijinkan Anda untuk memilih apakah komputer Anda hendak "
+"berpindah\n"
+"ke antarmuka grafis secara otomatis saat boot.Biasanya Anda harus melihat \n"
+"\"%s\" jika komputer Anda bertindak sebagai server, atau jika Anda adalah\n"
+"tidak berhasil mendapatkan konfigurasi tampilan."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Sekarang Anda harus menentukan dimana Anda hendak menginstall sistem "
+"operasi\n"
+"Mandriva Linux pada harddisk Anda. Jika harddisk Anda kosong atau jika "
+"sebuah\n"
+"sistem operasi menggunakan semua tempat, Anda harus mempartisi drive.\n"
+"Pada dasarnya, mempartisi harddisk berarti membaginya secara logical\n"
+"untuk membuat ruang yang diperlukan sistem Mandriva Linux baru Anda.\n"
+"\n"
+"Karena proses partisi harddisk biasanya tidak bisa dikembalikan dan bisa \n"
+"mengacu pada kehilangan data, partisi bisa menegangkan dan membuat stress\n"
+"bagi pengguna yang tidak terbiasa. Untungnya, DrakX menyertakan wizard yang\n"
+"mempermudah proses ini. Sebelum melanjutkan, baca sisa bagian ini dan "
+"diatas,\n"
+"santai saja.\n"
+"\n"
+"Bergantung pada konfigurasi pada harddisk Anda, beberapa opsi yang "
+"tersedia:\n"
+"\n"
+" * \"%s\". Opsi ini akan melakukan partisi otomatis dari drive kosong Anda.\n"
+"Jika Anda menggunakan opsi ini tidak ada konfirmasi tambahan.\n"
+"\n"
+" * \"%s\". Wizard mendeteksi satu atau lebih partisi Linux pada harddisk "
+"Anda.\n"
+"Jika Anda hendak menggunakannya, pilih opsi ini. Anda akan ditanya untuk "
+"memilih\n"
+"titik mount yang sesuai untuk setiap partisi.\n"
+"Titik mount yang benar telah dipilih secara default, dan untuk sebagian "
+"besar\n"
+"kasus, merupakan ide bagus untuk menggunakannya.\n"
+"\n"
+" * \"%s\". Jika Microsoft Windows terinstall pada harddisk Anda dan "
+"menggunakan \n"
+"semua ruang yang tersedia, Anda harus membuat sebuah ruang kosong untuk GNU/"
+"Linux. \n"
+"Untuk melakukannya, Anda bisa menghapus partisi data Microsoft Windows "
+"Anda \n"
+"(lihat solusi ``Menghapus seluruh disk'') atau merubah ukuran partisi FAT "
+"atau NTFS \n"
+"Microsoft Windows Anda. Merubah ukuran dapat dilakukan tanpa kehilangan "
+"data,\n"
+"dengan sebelumnya Anda sudah mendefrag partisi Windows.\n"
+"Membackup data sangat disarankan. Penggunaan opsi ini sangat "
+"direkomendasikan jika Anda\n"
+"ingin menggunakan Mandriva Linux dan Microsoft Windows pada komputer yang "
+"sama.\n"
+"\n"
+" Sebelum memilih opsi ini, harap dipahami bahwa setelah prosedur ini, "
+"ukuran partisi \n"
+"Microsoft Windows Anda akan berkurang sebelum memulai prosedur. Anda akan "
+"memiliki \n"
+"ruang yang lebih sedikit pada Microsoft Windows untuk menyimpan data atau "
+"menginstall\n"
+"perangkat lunak baru.\n"
+"\n"
+" * \"%s\". Jika Anda hendak menghapus seluruh data dan semua partisi yang "
+"ada pada harddisk\n"
+"Anda dan menggantinya dengan sistem Mandriva Linux yang baru, pilih opsi "
+"ini. Hati-hati, karena\n"
+"Anda tidak bisa membatalkan opsi ini setelah Anda mengkonfirmasikan.\n"
+"\n"
+" !! Jika Anda memilih opsi ini, semua data pada harddisk Anda akan "
+"dihapus !!\n"
+"\n"
+" * \"%s\". Opsi ini tampak ketika harddisk dipakai seluruhnya oleh Microsoft "
+"Windows.\n"
+"Memilih opsi ini akan menghapus semua pada harddisk dan memulai installasi "
+"dan partisi dari awal.\n"
+"\n"
+" !! Jika Anda memilih opsi ini, semua data Anda akan hilang. !!\n"
+"\n"
+" * \"%s\". Pilihlah opsi ini jika Anda mempartisi harddisk Anda secara "
+"manual. Hati-hati \n"
+"-- ini sangatlah handal tetapi pilihan yang berbahaya dan Anda bisa "
+"kehilangan data dengan\n"
+"mudah. Itu sebabnya opsi ini hanya direkomendasikan jika Anda telah "
+"melakukan hal ini sebelumnya\n"
+"atau berpengalaman. Untuk instruksi lebih lanjut bagaimana menggunakan "
+"utilitas DiskDrake,\n"
+"silahkan lihat bagian ``Mengelola Partisi Anda'' pada ``Panduan Pemula''."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Gunakan partisi yang sudah ada"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Hapus seluruh disk"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Installasi kini selesai dan sistem GNU/Linux Anda siap dipakai. Klik\n"
+"\"%s\" untuk reboot. Jangan lupa untuk mengambil media installasi (CD-ROM "
+"atau disket).\n"
+"Hal pertama yang Anda lihat setelah pengujian perangkat keras adalah menu "
+"bootloader,\n"
+"di sana Anda dapat memilih sistem operasi yang akan dijalankan.\n"
+"\n"
+"Tombol \"%s\" menampilkan 2 tombol tambahan untuk:\n"
+"\n"
+" * \"%s\": memungkinkan Anda untuk membuat disket installasi yang akan "
+"secara \n"
+"otomatis melakukan installasi tanpa bantuan operator, serupa dengan "
+"installasi yang \n"
+"baru Anda konfigurasikan.\n"
+"\n"
+" Perhatikan bahwa dua operasi yang berbeda muncul setelah menekan tombol "
+"tersebut:\n"
+"\n"
+" * \"%s\". Installasi semi-otomatis, hanya proses partisi yang tetap\n"
+"interaktif.\n"
+"\n"
+" * \"%s\". Installasi otomatis penuh: harddisk ditulis ulang\n"
+"seluruhnya, semua data hilang.\n"
+"\n"
+" Fitur ini amat praktis untuk installasi banyak komputer dengan "
+"spesifikasi sama.\n"
+"Lihat bagian Auto install di situs web kami untuk informasi lebih lanjut.\n"
+"\n"
+" * \"%s\"(*): simpan daftar paket terpilih pada installasi ini.\n"
+"Untuk menggunakan pilihan ini pada installasi lain, masukkan disket dan \n"
+"mulailah installasi. Saat prompt, tekan [F1] lalu ketik >>linux \n"
+"defcfg=\"floppy\"<< dan tekan [Enter].\n"
+"\n"
+"(*) Anda perlu floppy berformat FAT. Untuk membuatnya di GNU/Linux, "
+"jalankan\n"
+"\"mformat a:\", atau \"fdformat /dev/fd0\" diikuti dengan \"mkfs.vfat /dev/"
+"fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Buat disket installasi otomatis"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Jika Anda memilih untuk menggunakan beberapa partisi GNU/Linux, Anda\n"
+"mungkin akan memformat dan menghapus data. Untuk melakukannya\n"
+"pilih juga partisi tersebut.\n"
+"\n"
+"Perhatikan bahwa format ulang semua partisi tidak diperlukan.\n"
+"Anda harus memformat ulang partisi yang berisi sistem operasi\n"
+"(seperti \"/\", \"/usr\" atau \"/var\") tetapi Anda tidak harus memformat "
+"ulang\n"
+"partisi berisi data yang akan Anda simpan (biasanya \"/home\").\n"
+"\n"
+"Harap berhati-hati ketika memilih partisi. Setelah format selesai\n"
+", semua data pada partisi akan dihapus dan Anda tidak akan bisa\n"
+"mengembalikannya kembali.\n"
+"\n"
+"Klik pada \"%s\" ketika Anda siap memformat partisi.\n"
+"\n"
+"Klik pada \"%s\" jika Anda hendak memilih partisi lain untuk \n"
+"installasi sistem operasi Mandriva Linux baru Anda.\n"
+"\n"
+"Klik pada \"%s\" jika Anda hendak memilih partisi yang hendak \n"
+"diperiksa untuk block rusak pada disk."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Saat Mandriva Linux diinstal, mungkin beberapa paket telah diupdate sejak\n"
+"rilis awal. Beberapa kesalahan mungkin telah diperbaiki / masalah keamanan\n"
+"dipecahkan. Untuk memanfaatkan update ini Anda dapat men-download-nya dari\n"
+"Internet. Pilih \"%s\" jika Anda memiliki koneksi Internet, atau \"%s\" "
+"jika\n"
+"ingin mengupdate paket lain waktu.\n"
+"\n"
+"Memilih \"%s\" akan menampilkan daftar lokasi dimana update bisa "
+"didownload.\n"
+"Pilih yang terdekat. Daftar paket akan muncul: periksa pilihan Anda,\n"
+"tekan \"%s\" untuk mengambil/menginstall paket atau \"%s\" untuk membatalkan."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Saat ini, DrakX akan mengijinkan Anda memilih tingkat keamanan komputer.\n"
+"Sebagai acuan, tingkat keamanan harus semakin tinggi jika berisi data\n"
+"penting, atau langsung terhubung ke Internet. Level keamanan yang \n"
+"tinggi umumnya mengorbankan kemudahan pemakaian.\n"
+"\n"
+"Jika Anda tidak tahu apa yang akan dipilih, gunakan opsi default. Anda\n"
+"mampu mengubahnya menggunakan perkakas draksec, yang merupakan bagian\n"
+"dari dari Pusat Kontrol Mandriva Linux.\n"
+"\n"
+"Isi bagian \"%s\" dengan alamat email dari orang yang bertanggung jawab\n"
+"atas keaman. Pesan keamanan akan dikirimkan pada alamat tersebut."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Administrator Keamanan"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Saat ini, Anda harus memilih partisi yang akan digunakan untuk installasi\n"
+"sistem Mandriva Linux Anda. Jika partisi telah didefinisikan, baik dari\n"
+"installasi GNU/Linux sebelumnya atau melalui perkakas partisi lainnya,\n"
+"Anda bisa menggunakan partisi yang ada. Jika tidak, partisi harddisk \n"
+"harus didefinisikan.\n"
+"\n"
+"Untuk membuat partisi, Anda harus memilih harddisk dahulu. Anda bisa \n"
+"memilih disk untuk dipartisi dengan memilih ``hda'' untuk drive IDE\n"
+"pertama, ``hdb'' untuk kedua, ``sda'' untuk drive SCSI pertama, dst.\n"
+"\n"
+"Untuk mempartisi drive terpilih, Anda bisa menggunakan opsi berikut:\n"
+"\n"
+" * \"%s\": opsi ini menghapus seluruh partisi pada drive terpilih\n"
+"\n"
+" * \"%s\": opsi ini memungkinkan Anda membuat partisi ext3 dan swap\n"
+"secara otomatis pada ruang kosong dari hard disk Anda.\n"
+"\n"
+"\"%s\": memberi akses pada fitur tambahan:\n"
+"\n"
+" * \"%s\": menyimpan tabel partisi pada disket. Berguna untuk proses\n"
+"pengembalian tabel partisi. Anda disarankan untuk melakukan langkah\n"
+"ini.\n"
+"\n"
+" * \"%s\": mengijinkan Anda mengembalikan tabel partisi yang tersimpan\n"
+"sebelumnya dari disket.\n"
+"\n"
+" * \"%s\": jika tabel partisi Anda rusak, Anda bisa mencoba untuk\n"
+"mengembalikannya menggunakan opsi ini. Harap hati-hati dan perlu\n"
+"diingat bahwa proses ini tidak selalu bekerja.\n"
+"\n"
+" * \"%s\": batalkan semua perubahan dan muat ulang tabel partisi\n"
+"orisinal pada hard disk.\n"
+"\n"
+" * \"%s\": tanpa opsi ini akan memaksa pengguna melakukan proses \n"
+"mount dan unmount manual pada media seperti disket dan CD-ROM.\n"
+"\n"
+" * \"%s\": gunakan opsi ini jika Anda hendak menggunakan wizard\n"
+"untuk mempartisi hard disk Anda. Opsi ini disarankan jika Anda\n"
+"tidak memahami cara mempartisi.\n"
+"\n"
+" * \"%s\": gunakan opsi ini untuk membatalkan perubahan Anda.\n"
+"\n"
+" * \"%s\": mengijinkan aksi tambahan pada partisi (jenis, opsi,\n"
+"format) dan memberikan informasi lebih tentang hard disk.\n"
+"\n"
+" * \"%s\": ketika selesai mempartisi, opsi ini akan menyimpan\n"
+"perubahan pada disk.\n"
+"\n"
+"Ketika mendefinisikan ukuran partisi, Anda bisa menggunakan tombol\n"
+"panah dari keyboard Anda.\n"
+"\n"
+"Catatan: Anda bisa mencapai sembarang opsi menggunakan keyboard.\n"
+"Navigasi pada partisi menggunakan [Tab] dan panah [Up/Down].\n"
+"\n"
+"Ketika partisi dipilih, Anda bisa menggunakan:\n"
+"\n"
+" * Ctrl-c untuk membuat partisi baru (ketika partisi kosong dipilih)\n"
+"\n"
+" * Ctrl-d untuk menghapus partisi\n"
+"\n"
+" * Ctrl-m untuk menentukan titik mount\n"
+"\n"
+"Untuk mendapatkan informasi tentang jenis sistem file yang ada, \n"
+"silahkan membaca bab ext2FS dari ``Referensi Manual''.\n"
+"\n"
+"Jika Anda menginstall pada komputer PPC, Anda harus membuat partisi\n"
+"``bootstrap'' HFS kecil paling tidak 1 MB yang akan digunakan oleh\n"
+"bootloader yaboot. Jika Anda membuatnya lebih besar, misalkan 50MB\n"
+"Anda bisa menyimpan kernel dan citra ramdisk untuk situasi darurat."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Mount otomatis media lepas (removable)"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Ubah ke modus normal/ahli"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Terdapat lebih dari satu partisi Microsoft yang terdeteksi pada harddisk\n"
+"Anda. Pilih partisi yang hendak Anda ubah ukurannya untuk installasi sistem\n"
+"operasi Mandriva Linux.\n"
+"\n"
+"Tiap partisi terdaftar sebagai: \"Nama Linux\",\"Nama windows\",\"Kapasitas"
+"\".\n"
+"\n"
+"\"Nama Linux\" berstruktur: \"tipe hard drive\", \"nomor hard drive\",\n"
+"\"nomor partisi\" (misalnya \"hda1\").\n"
+"\n"
+"\"Tipe hard drive\" adalah \"hd\" bila drive bertipe IDE dan \"sd\" jika\n"
+"berupa drive SCSI.\n"
+"\n"
+"\"Nomor Hard Drive\", selalu berupa huruf setelah \"hd\" atau \"sd\". Jika\n"
+"berupa IDE, maka:\n"
+"\n"
+" * \"a\" berarti \"hard drive master pada kontroller IDE primer\",\n"
+"\n"
+" * \"b\" berarti \"hard drive slave pada kontroler IDE primer\",\n"
+"\n"
+" * \"c\" berarti \"hard drive master pada kontroler IDE sekunder\",\n"
+"\n"
+" * \"d\" berarti \"hard drive slave pada kontroler IDE sekunder\",\n"
+"\n"
+"Pada drive SCSI, \"a\" berarti \"ID SCSI terkecil, \"b\" berarti \"ID SCSI\n"
+"terkecil kedua\", dst.\n"
+"\n"
+"\"Nama windows\" adalah huruf hard drive Anda pada Windows (disk pertama\n"
+"pada partisi disebut \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": periksa pilihan negara saat ini. Jika tidak berada di sini, klik\n"
+"\"%s\" dan pilih yang lain. Jika negara Anda tidak ada pada daftar,\n"
+"klik tombol \"%s\" untuk mendapatkan daftar lengkap."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Tahap ini hanya aktif jika partisi GNU/Linux lama ditemukan.\n"
+"\n"
+"DrakX perlu tahu Anda ingin melakukan installasi baru atau upgrade sistem\n"
+"Mandriva Linux yang sudah ada:\n"
+"\n"
+"* \"%s\": Untuk sebagian besar bagian, opsi ini menghapus sistem lama.\n"
+"Namun, bergantung pada skema partisi Anda, Anda bisa mencegah data Anda\n"
+"(biasanya direktori \"home\") untuk ditimpa. Jika Anda hendak mengubah\n"
+"bagaimana hard disk dipartisi, atau untuk mengubah sistem file, Anda\n"
+"harus menggunakan opsi ini.\n"
+"\n"
+"* \"%s\": Kelas installasi ini akan mengupdate paket yang terinstall\n"
+"pada sistem Mandriva Linux Anda. Skema partisi dan data pengguna Anda\n"
+"tidak akan diubah. Sebagian besar langkah konfigurasi yang tersisa\n"
+"serupa pada installasi standar.\n"
+"\n"
+"Menggunakan opsi ``Upgrade'' seharusnya berjalan pada Mandriva Linux\n"
+"versi \"8.1\" keatas. Melakukan upgrade pada versi sebelum \"8.1\"\n"
+"tidak dianjurkan."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Bergantung pada bahasa yang Anda pilih (), DrakX akan memilih tipe\n"
+"keyboard yang sesuai. Periksa apakah pilihan sudah sesuai atau pilih\n"
+"layout keyboard yang lain.\n"
+"\n"
+"Juga, Anda mungkin tidak memiliki keyboard yang sesuai dengan bahasa\n"
+"Anda: misalnya jika Anda orang Swiss yang berbahasa Inggris, Anda\n"
+"mungkin memilih keyboard Swiss. Atau jika Anda berbahasa Inggris\n"
+"tapi tinggal di Quebec, Anda mungkin menghadapi situasi yang sama\n"
+"dengan bahasa Anda dan country-set keyboard tidak sesuai. Pada\n"
+"kedua kasus, langkah installasi ini akan mengijinkan Anda untuk\n"
+"memilih keyboard yang sesuai dari daftar.\n"
+"\n"
+"Klik tombol \"%s\" untuk menampilkan daftar keyboard yang didukung.\n"
+"\n"
+"Jika Anda memilih keyboard berbasis alphabet non-Latin, dialog\n"
+"selanjutnya memungkinkan Anda memilih kunci untuk berpindah keyboard\n"
+"antara layout Latin dan non-Latin."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Langkah pertama adalah menentukan bahasa pilihan Anda.\n"
+"\n"
+"Pilihan bahasa Anda akan mempengaruhi installer, dokumentasi\n"
+"dan juga sistem secara umum. Pertama pilih wilayah Anda, lalu bahasa\n"
+"yang Anda gunakan.\n"
+"\n"
+"Klik pada tombol \"%s\" akan mengijinkan Anda memilih bahasa lain\n"
+"untuk diinstall pada workstation Anda, juga menginstall file bahasa\n"
+"khusus untuk dokumentasi sistem dan aplikasi. Misalnya jika pengguna\n"
+"Spanyol menggunakan komputer Anda, pilih Inggris sebagai bahasa default\n"
+"pada pohon view dan \"%s\" pada bagian Advanced.\n"
+"\n"
+"Tentang dukungan UTF-8 (unicode): Unicode adalah enkoding karakter yang\n"
+"baru yang ditujukan untuk mencakup seluruh bahasa yang ada. Namun \n"
+"dukungan penuh pada GNU/Linux sedang dalam pengembangan. Untuk alasan\n"
+"tersebut, penggunaan UTF-8 pada Mandriva Linux bergantung pada pilihan\n"
+"pengguna:\n"
+"\n"
+" * Jika Anda memilih menggunakan bahasa dengan enkoding yang kuat (bahasa\n"
+"latin, Rusia, Jepang, China, Korea, Thai, Yunani, Turki, sebagian besar\n"
+"bahasa iso-8859-2), enkoding akan digunakan secara default;\n"
+"\n"
+" * Bahasa lain akan menggunakan unicode sebagai default;\n"
+"\n"
+" * Jika dua atau lebih bahasa diperlukan, dan bahasa tersebut tidak\n"
+"memakai enkoding yang sama, maka unicode akan digunakan pada sistem;\n"
+"\n"
+" * Terakhir, unicode juga bisa dipaksa untuk digunakan melalui\n"
+"permintaan pengguna dengan memilih opsi \"%s\" secara terpisah\n"
+"pada bahasa yang dipilih.\n"
+"\n"
+"Perhatikan bahwa Anda tidak terbatas pada satu bahasa tambahan. Anda\n"
+"bisa memilih beberapa, atau semua dengan memilih kotak \"%s\".\n"
+"Memilih dukungan untuk sebuah bahasa berarti translasi, font, penguji\n"
+"ejaan, dll juga akan diinstal untuk bahasa tersebut.\n"
+"\n"
+"Untuk berpindah antar bahasa yang diinstall pada sistem, Anda bisa\n"
+"menjalankan perintah \"localedrake\" sebagai \"root\" untuk merubah\n"
+"bahasa yang digunakan sistem. Menjalankan perintah sebagai pengguna\n"
+"hanya akan merubah setting untuk pengguna tersebut."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Spanyol"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Umumnya, DrakX bisa mendeteksi jumlah tombol mouse Anda. Jika gagal,\n"
+"akan diasumsikan mouse Anda bertombol dua dan akan mengkonfigurasikan\n"
+"emulasi tombol ketiga. Tombol ketiga dari sebuah mouse bertombol dua\n"
+"bisa didapatkan dengan memilih tombol kanan dan kiri bersamaan. DrakX\n"
+"mengetahui mouse menggunakan antarmuka PS/2, serial atau USB secara\n"
+"otomatis.\n"
+"Jika Anda memiliki mouse 3 tombol tanpa roda, Anda bisa memilih mouse\n"
+"\"%s\". DrakX akan mengkonfigurasi mouse Anda sehingga bisa ia bisa\n"
+"mensimulasikan roda: untuk melakukannya, tekan tombol tengah dan\n"
+"gerakkan pointer mouse Anda keatas dan kebawah.\n"
+"\n"
+"Jika Anda ingin menunjuk tipe mouse lain, pilih tipe yang sesuai dari\n"
+"daftar yang disediakan.\n"
+"\n"
+"Anda bisa memilih \"%s\" untuk memilih jenis mouse ``generik'' yang\n"
+"akan bekerja pada sebagian besar mouse.\n"
+"\n"
+"Jika Anda memilih mouse bukan standar, layar pengujian akan ditampilkan.\n"
+"Gunakan tombol dan roda untuk verifikasi setting. Jika mouse tidak \n"
+"bekerja baik tekan spasi atau [Enter] untuk membatalkan dan Anda akan\n"
+"kembali ke daftar mouse.\n"
+"\n"
+"Mouse dengan roda kadang tidak terdeteksi secara otomatis, sehingga Anda\n"
+"harus memilih mouse dari daftar. Pastikan memilih yang sesuai dengan port\n"
+"yang digunakan. Setelah memilih mouse dan menekan tombol \"%s\", sebuah\n"
+"citra mouse akan tampak di layar. Gerakkan rodanya untuk memastikan ia\n"
+"bekerja dengan baik. Ketika Anda menggerakan roda, Anda akan melihat roda\n"
+"pada layar juga bergerak. Ujilah tombol dan pastikan pointer mouse pada\n"
+"layar ikut bergerak."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "Dengan emulasi roda"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Universal | Sembarang mouse PS/2 & USB"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Pilih port yang benar. Misalnya \"COM1\" di Windows akan bernama\n"
+"\"ttyS0\" di GNU/Linux."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Ini adalah poin terpenting penentuan keamanan sistem GNU/Linux Anda: Anda\n"
+"harus mengisi katasandi \"root\". \"Root\" adalah administrator sistem dan\n"
+"yang berhak melakukan update, menambah pengguna, mengubah konfigurasi\n"
+"sistem. Singkatnya, \"root\" dapat melakukan apapun! Karena itu Anda\n"
+"harus memilih katasandi yang sulit ditebak - DrakX akan memberitahu jika\n"
+"terlalu mudah. Seperti Anda lihat, Anda tidak dipaksa untuk memasukkan\n"
+"katasandi, tapi sangat tidak dianjurkan. GNU/Linux juga rawan kesalahan\n"
+"operator seperti sistem operasi lain. Karena \"root\" bisa melewati\n"
+"semua batasan dan secara tidak sengaja menghapus semua data di partisi,\n"
+"sangatlah penting untuk memperketat usaha menjadi \"root\".\n"
+"\n"
+"Katasandi harus berupa campuran nomor dan huruf minimal 8 karakter. Jangan\n"
+"pernah mencatat katasandi \"root\" - itu membuat sistem mudah dibajak.\n"
+"\n"
+"Katasandi juga jangan terlalu panjang/rumit karena Anda harus mampu \n"
+"mengingatnya.\n"
+"Katasandi tidak muncul di layar ketika diketikkan. Untuk mengurangi "
+"kesalahan\n"
+"pengetikkan Anda harus menuliskan katasandi sebanyak dua kali. Jika Anda\n"
+"melakukan kesalahan penulisan kasatandi sebanyak dua kali, Anda harus\n"
+"memakai katasandi yang ``salah'' ini untuk login sebagai \"root\".\n"
+"\n"
+"Jika Anda ingin sebuah server otentikasi mengontrol akses ke komputer Anda,\n"
+"klik pada tombol \"%s\".\n"
+"\n"
+"Jika jaringan Anda memakai protokol otentikasi LDAP/NIS/PDC Windows Domain,\n"
+"pilih yang cocok untuk \"%s\". Jika Anda tidak tahu yang harus digunakan,\n"
+"tanyalah admin jaringan Anda.\n"
+"\n"
+"Jika Anda mengalami masalah untuk mengingat katasandi, atau jika komputer\n"
+"Anda tidak akan terhubung ke Internet dan Anda mempercayai semua orang\n"
+"yang menggunakan komputer Anda, Anda bisa memilih \"%s\"."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "otentikasi"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Bootloader adalah program kecil yang dijalankan ketika komputer boot. Ia\n"
+"bertanggung jawab untuk memulai seluruh sistem. Normalnya, installasi boot\n"
+"loader dilakukan secara otomatis. DrakX akan menganalisa sektor boot disk\n"
+"dan bekerja menurut apa yang ditemukannya:\n"
+"\n"
+" * jika ditemukan sektor boot Windows, ia akan menggantinya dengan sektor\n"
+"boot grub/LILO. Dengan demikian Anda akan dapat memuat GNU/Linux atau OS\n"
+"lain.\n"
+"\n"
+" * jika ditemukan sektor boot grub/LILO, akan diganti dengan yang baru.\n"
+"\n"
+"Jika DrakX tidak dapat mengambil keputusan, ia akan menanyakan tempat\n"
+"meletakkan bootloader. Umumnya, \"%s\" adalah tempat teraman. Memilih\n"
+"\"%s\" tidak akan menginstall sembarang boot loader. Gunakan opsi ini\n"
+"jika Anda tahu apa yang Anda lakukan."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Sekarang, waktunya memilih sistem pencetakan untuk komputer Anda. Sistem\n"
+"operasi lain mungkin menawarkan satu, tetapi Mandriva Linux menawarkan dua.\n"
+"Setiap sistem pencetakan sesuai untuk jenis konfigurasi tertentu.\n"
+"\n"
+" * \"%s\" - yang merupakan akronim untuk ``print, tidak ada antrian'',\n"
+"adalah pilihan jika Anda memiliki koneksi langsung ke printer Anda dan\n"
+"ingin bebas dari masalah kemacetan printer, serta tidak punya printer\n"
+"jaringan. (\"%s\" akan menangani kasus jaringan sederhana sehingga\n"
+"lambat ketika digunakan dalam jaringan. Anda direkomendasikan untuk\n"
+"menggunakan \"pdq\" jika ini pertama kali Anda mengenal GNU/Linux.\n"
+"\n"
+" * \"%s\" - kependekan dari ``Common Unix Printing System'' adalah pilihan\n"
+"yang canggih untuk mencetak ke printer lokal dan juga separuh planet. Opsi\n"
+"ini mudah dikonfigurasikan dan bisa berfungsi sebagai server/klien untuk\n"
+"sistem cetak \"lpd\" yang kuno, sehingga kompatibel dengan sistem lama yang\n"
+"mungkin masih membutuhkan layanan pencetakan. Meskipun handal, setup\n"
+"dasar hampir semudah \"pdq\". Jika Anda perlu mengemulasikan server \"lpd\"\n"
+"pastikan Anda mengaktifkan daemon \"cups-lpd\". %s menyertakan tampilan\n"
+"grafis untuk pencetakan atau memilih opsi printer dan mengelola printer.\n"
+"\n"
+"Jika Anda membuat pilihan sekarang dan nanti Anda tidak menyukai sistem \n"
+"cetak yang Anda pilih saat ini, Anda bisa merubahnya dengan menjalankan\n"
+"PrinterDrake dari Pusat Kontrol Mandriva dan klik tombol \"%s\"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Ahli"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX akan mencoba mendeteksi perangkat IDE yang ada pada komputer Anda.\n"
+"Ia juga mencari kartu SCSI PCI di sistem Anda. Jika kartu SCSI ditemukan\n"
+"DrakX akan otomatis meng-instal driver yang sesuai.\n"
+"\n"
+"Karena perangkat keras terkadang tak terdeteksi, DrakX mungkin gagal\n"
+"mendeteksi harddisk Anda. Jika demikian, Anda harus menentukan sendiri.\n"
+"\n"
+"Jika Anda harus menentukan adaptor SCSI PCI secara manual, DrakX akan\n"
+"menanyakan opsi konfigurasinya. Anda harus mengijinkan DrakX untuk\n"
+"mendeteksi perangkat keras untuk opsi khusus yang diperlukan untuk\n"
+"menginisialisasi adapter. Pada banyak kasus, DrakX biasanya melalui\n"
+"tahap ini tanpa ada masalah.\n"
+"\n"
+"Jika DrakX gagal mendeteksi opsi untuk menentukan parameter yang harus\n"
+"dikirimkan ke perangkat keras secara otomatis, Anda harus mengkonfigurasi\n"
+"driver secara manual."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": jika kartu suara terdeteksi di sistem Anda, akan ditampilkan\n"
+"di sini. Jika kartu suara yang tampil tidak sesuai dengan yang ada pada\n"
+"sistem, Anda bisa klik pada tombol dan pilih driver lain."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Sebagai review, DrakX akan menampilkan ringkasan informasi yang dikumpulkan\n"
+"tentang sistem Anda. Bergantung pada perangkat keras yang terpasang pada\n"
+"komputer Anda, Anda mungkin memiliki beberapa atau semua daftar berikut.\n"
+"Setiap daftar terdiri dari daftar perangkat keras yang harus dikonfigurasi,\n"
+"diikuti dengan ringkasan singkat dari konfigurasi aktual. Klik pada tombol\n"
+"\"%s\" untuk melakukan perubahan.\n"
+"\n"
+" * \"%s\": periksa konfigurasi peta keyboard aktual dan lakukan perubahan "
+"ubah\n"
+"jika diperlukan.\n"
+"\n"
+" * \"%s\": periksa pilihan negara aktual. Jika Anda tidak berada pada "
+"negara\n"
+"ini, klik pada tombol \"%s\" dan pilih yang lain. Jika negara Anda tidak "
+"ada\n"
+"pada daftar berikut, klik tombol \"%s\" untuk mendapatkan daftar lengkap.\n"
+"\n"
+" * \"%s\": secara default, DrakX menyesuaikan zona waktu berdasarkan negara\n"
+"yang Anda pilih. Anda bisa klik pada tombol \"%s\" jika tidak benar.\n"
+"\n"
+" * \"%s\": verifikasi konfigurasi mouse aktual dan klik pada tombol untuk\n"
+"mengubahnya jika diperlukan.\n"
+"\n"
+" * \"%s\": klik pada tombol \"%s\" akan membuka wizard konfigurasi printer.\n"
+"Lihat bab ``Panduan Pemula'' untuk informasi lebih lanjut tentang cara\n"
+"setting printer baru. Antarmuka yang ada pada manual serupa dengan yang\n"
+"digunakan selama installasi.\n"
+"\n"
+" * \"%s\": jika kartu suara terdeteksi pada sistem Anda, akan ditampilkan\n"
+"disini. Jika Anda menyadari kartu suara yang ditampilkan bukan yang ada\n"
+"pada sistem Anda, Anda bisa klik pada tombol dan pilih driver lain.\n"
+"\n"
+" * \"%s\": Jika Anda memiliki kartu TV, informasi konfigurasinya akan\n"
+"ditampilkan disini. Jika Anda memiliki kartu TV dan tidak terdeteksi\n"
+"klik pada \"%s\" untuk mencoba mengkonfigurasinya secara manual.\n"
+"\n"
+" * \"%s\": Anda bisa klik pada \"%s\" untuk merubah parameter yang \n"
+"berhubungan dengan kartu jika Anda merasa konfigurasinya salah.\n"
+"\n"
+" * \"%s\": secara default, DrakX mengkonfigurasi antarmuka grafis Anda\n"
+"dalam resolusi \"800x600\" atau \"1024x768\". Jika tidak sesuai, klik\n"
+"pada \"%s\" untuk mengkonfigurasi ulang antarmuka grafis Anda.\n"
+"\n"
+" * \"%s\": jika Anda hendak mengkonfigurasi akses jaringan Internet\n"
+"atau lokal Anda, Anda bisa melakukannya sekarang. Lihat dokumentasi\n"
+"cetak atau gunakan Pusat Kontrol Mandriva Linux setelah installasi\n"
+"selesai untuk mengambil keuntungan dari bantuannya.\n"
+"\n"
+" * \"%s\": mengijinkan Anda mengkonfigurasi alamat proxy HTTP dan\n"
+"FTP jika komputer yang Anda install berada dibelakang server proxy.\n"
+"\n"
+" * \"%s\": daftar ini mengijinkan Anda mendefinisikan ulang tingkat\n"
+"keamanan seperti yang ditentukan pada langkah sebelumnya ().\n"
+"\n"
+" * \"%s\": jika Anda berencana untuk menghubungkan komputer Anda ke\n"
+"Internet, merupakan ide bagus untuk menjaga dari intrusi dengan \n"
+"memasang firewall. Lihat bab dari ``Panduan Pengguna'' untuk detail\n"
+"tentang setting firewall.\n"
+"\n"
+" * \"%s\": jika Anda hendak merubah konfigurasi bootloader Anda, klik\n"
+"tombol ini. Opsi ini ditujukan untuk pengguna tingkat lanjut. Lihat\n"
+"dokumentasi cetak atau bantuan tentang konfigurasi bootloader pada \n"
+"Pusat Kontrol Mandriva Linux.\n"
+"\n"
+" * \"%s\": melalui daftar ini Anda bisa menentukan layanan apa yang\n"
+"akan dijalankan pada komputer Anda. Jika Anda berencana untuk memakai\n"
+"komputer ini sebagai server, merupakan ide bagus untuk mereview setup\n"
+"ini."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Kartu ISDN"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Antarmuka Grafis"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Pilih harddrive yang akan dihapus untuk menginstall partisi Mandriva Linux\n"
+"baru Anda. Hati-hati, semua data pada drive ini akan hilang dan\n"
+"tidak dapat dikembalikan seperti semula!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Klik pada \"%s\" jika Anda ingin menghapus semua data dan partisi yang ada\n"
+"pada harddisk ini. Hati-hati, setelah mengklik \"%s\" Anda tidak dapat\n"
+"mengembalikan data dan partisi pada drive ini termasuk data Windows.\n"
+"\n"
+"Klik pada \"%s\" untuk keluar dari operasi ini tanpa kehilangan data dan\n"
+"partisi yang ada pada harddisk ini."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Berikutnya ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Sebelumnya"
+
diff --git a/perl-install/install/help/po/is.po b/perl-install/install/help/po/is.po
new file mode 100644
index 000000000..4152a72f9
--- /dev/null
+++ b/perl-install/install/help/po/is.po
@@ -0,0 +1,1921 @@
+# translation of DrakX.po to
+# translation of DrakX.po to Icelandic
+# Translation file for Mandriva Linux graphic install, DrakX
+# Copyright (C) 1999,2003, 2005, 2006 Free Software Foundation, Inc.
+# Copyright (C) 1999 Mandriva
+# Jóhann Þorvarðarson <johann.torvardarson@lais.is>, 1999-2000.
+# Þórarinn (Tony) R. Einarsson <thori@mindspring.com>, 1999-2000.
+# Pjetur G. Hjaltason <pjetur@pjetur.net>, 2003, 2005, 2006.
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2006-03-07 18:42+0000\n"
+"Last-Translator: Pjetur G. Hjaltason <pjetur@pjetur.net>\n"
+"Language-Team: <is@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Áður en þú heldur áfram, ættir þú að lesa vandlega leyfisskilmálana. Þeir\n"
+"taka yfir alla Mandriva Linux dreifinguna. Ef þú er samþykk(ur) öllum þeim\n"
+"skilmálum sem þar standa, krossaðu þá við í \"%s\" reitinn, ef ekki\n"
+"smelltu þá á \"%s\" hnappinn sem mun endurræsa tölvuna þína."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux er fjölnotanda umhverfi sem þýðir að hver notandi getur "
+"skilgreint\n"
+"sitt eigið umhverfi og stillingar, eigin skrár o.s.frv. En ólíkt \"root\" "
+"sem\n"
+"er kerfisstjóri, þá munu þeir notendur sem þú skilgreinir hér ekki hafa\n"
+"leyfi til að breyta neinu nema sínum eigin skrám og stillingum. Þetta\n"
+"verndar kerfið frá óhöppum eða illvígum forritum sem gætu haft áhrif\n"
+"á heildarverkun kerfisins. Þú verður að búa til a.m.k. einn venjulegan\n"
+"notanda fyrir þig sjálfan. -- þetta er það auðkenni sem þú ættir að til\n"
+"daglegrar notkunar. Þó að það sé mjög auðvelt að skrá sig inn sem \"root\"\n"
+"til allrar vinnu, þá getur það einnig verið mjög hættulegt!\n"
+"Ein mjög einföld mistök gætu valdið því að kerfið virki ekki lengur. Ef þú\n"
+"gerir alvarleg mistök sem venjulegur notandi, þá hefur þú í versta falli\n"
+"tapað gögnum, en þú hefur ekki haft áhrif á heildarvirkni kerfisins.\n"
+"\n"
+"Kerfið spyr þig fyrst um raunverulegt nafn. Auðvitað er ekki skylda að\n"
+"fylla þetta rétt út -- þú getur skrifað hvað sem þú vilt. DrakX mun nota\n"
+"fyrsta orðið í þessu svæði og afrita það í \"%s\", sem er notandanafn\n"
+"sem á að nota til að auðkenna sig gagnvart kerfinu. Ef þú vilt, getur þú\n"
+"breytt því sjálfgefna og gefið upp annað notandanafn. Næsta skref er að\n"
+"skrá lykilorð. Frá öryggissjónamiði séð er lykilorð venjulegs notanda ekki\n"
+"jafn mikilvægt og lykilorð kerfisstjóra \"root\", en það er engin ástæða\n"
+"til að hafa það autt eða of einfalt: athugið að þetta gefur fullan aðgang\n"
+"að þínum skrám og gögnum, sem eru þá í húfi.\n"
+"\n"
+"Þegar þú smellir á \"%s\" þá getur þú bætt við öðrum notendum. Bættu\n"
+"við notanda fyrir vini, föður, móður og systkini o.s.frv. Smelltu á \"%s\"\n"
+"þegar þú hefur lokið að bæta við notendum.\n"
+"\n"
+"Með því að smella á \"%s\" getur þú breytt sjálfgefinni \"skel\" fyrir "
+"hvern\n"
+"notanda (sjálfgefið er bash).\n"
+"\n"
+"Þegar þú hefur lokið við að bæta við notendum, þá verður þú beðinn\n"
+"um að velja notanda sem verður sjálfkrafa skráður inn þegar tölvan ræsir.\n"
+"Ef þú vilt nota þér þann möguleika (og hefur ekki miklar áhyggjur af "
+"öryggi),\n"
+"veldu æskilegan notanda og gluggastjóra, smelltu síðan á \"%s\". Ef þú\n"
+"vilt ekki nota þér þennan möguleika, fjarlægðu þá merkinguna við \"%s\"\n"
+"reitinn."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Viltu nota þennan eiginleika?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Hér er listi af núverandi Linux disksneiðum sem fundust á disknum.\n"
+"Þú getur haldið þeim stillingum sem stungið er upp á, því þau eru nokkuð\n"
+"skynsamleg fyrir flestar uppsetningar. Ef þú gerir einhverjar breytingar, "
+"þá\n"
+"verður þú að minnsta kosti að skilgreina rótarsneið (\"/\"). Ekki velja of "
+"litla\n"
+"disksneið því þá munt þú ekki geta sett upp nægan hugbúnað. Ef þú vilt "
+"geyma\n"
+"gögnin þín á annari disksneið, þá verður þú einnig að búa til \"/home\"\n"
+"disksneið (aðeins mögulegt ef þú hefur fleiri en eina sneið tiltæka).\n"
+"\n"
+"Hver sneið á listanum inniheldur \"Nafn\", \"Diskrýmd\".\n"
+"\n"
+"\"Nafn\" er byggt upp af: \"disktegund\", \"disknúmer\",\n"
+"\"disksneið\" (t.d., \"hda1\").\n"
+"\n"
+"\"disktegund\" er \"hd\" ef disknum er stýrt með IDE stýringu og\n"
+"\"sd\" ef það er SCSI diskur.\n"
+"\n"
+"\"Disknúmer\" er alltaf bókstafur eftir \"hd\" eða \"sd\". Fyrir IDE\n"
+"diska:\n"
+"\n"
+" * \"a\" þýðir \"aðal (master) diskur á fyrstu IDE stýringu\";\n"
+"\n"
+" * \"b\" þýðir \"auka (slave) diskur fyrstu IDE stýringu\";\n"
+"\n"
+" * \"c\" þýðir \"aðal (master) diskur á annari IDE stýringu\";\n"
+"\n"
+" * \"d\" þýðir \"auka (slave) diskur annari IDE stýringu\";\n"
+"\n"
+"Á SCSI diskum, þýðir \"a\" \"lægsta SCSI ID\", \"b\" þýðir\n"
+"\"næst-lægsta SCSI ID\", o.s.frv."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linux uppsetningunni er dreift á nokkra geisladiska. Ef valinn\n"
+"pakki er á öðrum geisladiski, þá mun DrakX spýta út núverandi diski\n"
+"og biðja þig um að setja inn rétta diskinn. Ef þú hefur ekki rétta diskinn "
+"við\n"
+"hendina, smelltu þá á \"%s\", viðkomandi pakkar verða þá ekki\n"
+"settir upp."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Nú er tími til að skilgreina hvaða forrit þú vilt að séu sett upp á kerfinu "
+"þínu.\n"
+"Það eru þúsundir pakka til fyrir Mandriva Linux, og til að einfalda\n"
+"umsjón pakkanna hafa þeir verið flokkaðir í hópa af svipuðum forritum.\n"
+"\n"
+"Mandriva Linux skiptir pökkunum í fjóra flokka. Þú getur blandað saman\n"
+"pökkum úr mismunandi flokkum svo að ``Vinnustöðvar'' uppsetning\n"
+"getur innihaldið forrit úr ``Miðlara'' flokknum.\n"
+"\n"
+" * \"%s\": ef þú hefur í hyggju að nota vélina þína sem vinnustöð veldu\n"
+"einn eða fleiri flokka úr vinnustöðvahópunum.\n"
+"\n"
+" * \"%s\": ef þú hefur í hyggju að nota vélina þína fyrir forritun veljið "
+"viðeigandi\n"
+"hópa úr þeim flokki. Hinn sérstaki \"LSB\" hópur mun setja vélina þína upp\n"
+"þannig að hún sé eins samhæfð og mögulegt er við \"Linux Standard Base"
+"\"skilgreiningarnar.\n"
+"\n"
+" Sé \"LSB\" hópurinn valinn, verður \"2.4\" kjarninn einnig settur inn í "
+"stað\n"
+"hins sjálfgefna kjarna \"2.6\". Þetta er til að tryggja 100%%-LSB samhæfni\n"
+"kerfisins. En þó að þú veljir ekki hinn sérstaka \"LSB\" hóp, þá munt þú\n"
+"samt vera með kerfi sem er næstum því 100%% LSB-samhæft.\n"
+"\n"
+" * \"%s\": ef vélin þín á að vera miðlari veldu þær þjónustur sem þú\n"
+"vilt að settar séu settar upp á tölvunni þinni.\n"
+"\n"
+" * \"%s\": Hér getur þú valið hvaða myndræna gluggaumhverfi þú vilt hafa "
+"uppsett.\n"
+"Að minnsta kosti eitt umhverfi verður að vera valið ef þú vilt hafa\n"
+"myndrænt gluggaumhverfi uppsett.\n"
+"\n"
+"Ef þú færir músabendilinn yfir hópnafn þá kemur stutt skýring á þeim hóp.\n"
+"\n"
+"Þú getur krossað við \"%s\" reitinn, ef þú ert kunnug(ur) pökkunum sem eru\n"
+"í boði, eða þú vilt hafa heildarstjórn á pökkum sem verða settir inn.\n"
+"\n"
+"Ef þú byrjar uppsetninguna í \"%s\" ham, þá getur þú af-valið alla hópa\n"
+"og varnað innsetningu nýrra pakka. Þetta er nytsamlegt í því tilfelli\n"
+"ef þörf er á að gera við eða uppfæra núverandi kerfi.\n"
+"\n"
+"Ef þú af-velur alla hópa þegar þú setur upp venjulega uppsetningu (en ekki\n"
+"uppfærslu), þá birtist gluggi sem býður aukavalkosti fyrir "
+"lágmarksuppsetningu:\n"
+"\n"
+" * \"%s\": setur upp lágmarksumhverfi til að geta keyrt myndrænt "
+"gluggakerfi.\n"
+"\n"
+" * \"%s\": setur upp lágmarksumhverfi og nauðsynlegustu tól og handbækur\n"
+"þeirra. Þessi uppsetning er góð grunn uppsetning fyrir miðlara.\n"
+"\n"
+" * \"%s\": setur upp lágmarksumhverfi sem nauðsynlegt er til að fá\n"
+"keyrandi Linux kerfi með þessari uppsetningu er ekkert gluggaumhverfi.\n"
+"Heildarstærð uppsetningarinnar er um 65 megabæti."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Uppfæra"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Með grunn handbókum"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Alger lágmarksuppsetning"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Ef þú velur að setja pakkana inn handvirkt, þá mun uppsetningarforritið\n"
+"birta tré sem inniheldur alla pakkana flokkaða í hópa og undirhópa. Meðan\n"
+"þú flakkar um tréð getur þú valið heila hópa, undirhópa eða einstaka pakka.\n"
+"\n"
+"Í hvert sinn er þú velur pakka í trénu mun lýsing birtast til hægri til að "
+"sýna\n"
+"þér hlutverk þess forritapakka.\n"
+"\n"
+"!! Ef miðlara-pakki hefur verið valinn, annað hvort af því að þú valdir "
+"stakan\n"
+"pakka eða hann var hluti af hóp, verður þú beðinn um að staðfesta að\n"
+"þú viljir fá þessa miðlara uppsetta. Sjálfgefið mun Mandriva Linux ræsa "
+"allar\n"
+"uppsettar þjónustur og miðlara við kerfisræsingu. Jafnvel þó að þeir séu\n"
+"öruggir og engar þekktar villur þegar kerfinu var dreift þá er möguleiki að\n"
+"öryggisholur hafi uppgötvast eftir að gengið var frá þessari útgáfu af\n"
+"Ef þú veist ekki hvað tiltekin þjónusta á að gera eða afhverju hún er sett "
+"inn,\n"
+"smelltu þá á \"%s\". Ef þú smellir á \"%s\" verða þjónusturnar settar inn\n"
+"og þær verða ræstar sjálfkrafa þegar tölvan ræsir !!\n"
+"\n"
+"\"%s\" valkosturinn er notaður til að aftengja \n"
+"viðvörunarglugga sem birtist í hvert sinn er uppsetningarforritið finnur út\n"
+"að það þurfi að aukalega að setja inn pakka sem eru forsenda "
+"uppsetningarinnar.\n"
+"Sumir pakkar eru tengdir öðrum og uppsetning eins pakka getur krafist að\n"
+"annar pakki sé settur inn fyrst. Uppsetningarforritið getur ákvarðað hvaða\n"
+"pakkar eru tengdir og séð um að uppsetningin verði rétt.\n"
+"\n"
+"Litla disklinga-táknmyndin á enda listans leyfir þér að hlaða inn "
+"pakkalista\n"
+"frá fyrri uppsetningu. Þetta er hagkvæmt ef þú þarft að setja upp nokkrar\n"
+"vélar eins. Ef þú smellir á þessa táknmynd verður þú beðinn um að setja\n"
+"inn diskling sem búinn var til í lok fyrri uppsetningar. Sjá síðar við lok\n"
+"uppsetningar um hvernig á a' búa til slíkan diskling."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Uppfylla forkröfur sjálfvirkt"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": smellir þú á \"%s\" hnappinn mun það ræsa prentara-uppsetningar-"
+"ráðgjafann\n"
+"Skoðið viðeigandi kafla í ``Starter Guide'' varðandi meiri upplýsingar um "
+"hvernig\n"
+"á að setja upp nýjan prentara. Viðmótið sem sýnt er í handbókinni okkar er\n"
+"svipað því sem er notað í uppsetningarforritinu."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Þessi gluggi er notaður til að velja hvaða þjónustur eru ræstar við ræsingu "
+"tölvu.\n"
+"\n"
+"DrakX mun sýna lista yfir allar tiltækar þjónustur í núverandi uppsetningu.\n"
+"Skoðið hverja þeirra vandlega og af-veljið þær sem ekki er þörf á við "
+"ræsingu.\n"
+"\n"
+"Stutt lýsing verður birt um hverja þjónustu þegar hún er valin. Ef þú ert "
+"ekki viss\n"
+"um hvort þjónusta er nauðsynleg eða ekki þá er öruggara að nota sjálfgefið "
+"val.\n"
+"\n"
+"!! Farðu mjög varlega á þessu stigi ef þú ætlar að nota tölvuna þína sem "
+"miðlara.\n"
+"Þú vilt sennilega ekki ræsa neinar þjónustur sem ekki er þörf á.\n"
+"Vinsamlega mundu að sumar þjónustur geta verið hættulegar ef þær eru virkar\n"
+"á miðlara. Almennt talað, ræstu aðeins þær sem þú raunverulega þarft. !!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux notar GMT (Greenwich Mean Time) sem innri tíma og breytir\n"
+"honum í staðartíma eftir völdu tímabelti. Ef klukkan á móðurborðinu er\n"
+"stillt á staðartíma, þá gætir þú þurft að aftengja þetta með því að\n"
+"af-velja reitinn \"%s\", sem segir GNU/Linux kerfinu að vélarklukkan\n"
+"og kerfisklukkan séu á sama tímabelti. þetta er fyrst of fremst gagnlegt\n"
+"ef vélin hýsir annað stýrikerfi.\n"
+"\n"
+"\"%s\" valreiturinn mun stilla klukkuna sjálfkrafa með því að tengjast\n"
+"tímamiðlara um Internetið. Til að þetta sé virkt þá verður þú að hafa\n"
+"uppsetta internet-tengingu. Við mælum með að þú veljir tímamiðlara\n"
+"sem er nálægt þér. Þessi valkostur mun í raun setja upp tímamiðlara\n"
+"á vélinni sem þú getur síðan notað af öðrum vélum á staðarnetinu."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Sjálfvirk tímastilling"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Grafískt kort\n"
+"\n"
+" Uppsetningarforritið mun venjulega sjálfkrafa finna og stilla \n"
+"grafísk skjákort sem eru á vélinni þinni. Ef þetta er ekki rétt, þá\n"
+"getur þú valið af þessum lista, það kort sem þú vilt láta setja upp.\n"
+"\n"
+" Í því tilviki að mismunandi miðlarar eru til fyrir kortið þitt, með\n"
+"eða án þrívíddar-hraðals, þá verður þú beðinn um að velja þann\n"
+" miðlara sem best hentar þínum þörfum."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (sem stendur fyrir X-glugga-kerfið) er grunnur myndræna viðmótsins\n"
+"á GNU/Linux. Á því eru byggð öll gluggakerfin (KDE, GNOME, AfterStep,\n"
+"WindowMaker, o.s.frv. ) sem fylgja Mandriva Linux.\n"
+"\n"
+"Þú sérð lista af mismunandi breytum til að stilla bestu myndgæði.\n"
+"\n"
+"Skjákort\n"
+"\n"
+" Uppsetningarforritið mun venjulega finna og stilla skjákortið sem er\n"
+"uppsett á vélinni þinni. Ef það er ekki rétt þá getur þú valið rétta kortið\n"
+"af lista\n"
+"...Í því tilviki að margir X miðlarar séu til staðar fyrir kortið þitt, t.d. "
+"með eða án Þrívíddarhröðunar, þá verður þú að velja þann sem \n"
+"hæfir þínum kröfum best.\n"
+"\n"
+"\n"
+"\n"
+"Skjár\n"
+"\n"
+" Venjulega mun uppsetningarforritið skynja og stilla skjáinn sem er\n"
+"tengdur við vélina þína. Ef þetta er ekki rétt þá getur þú valið réttan\n"
+"skjá sem tengdur er við tölvuna þína af löngum lista.\n"
+"\n"
+"\n"
+"\n"
+"Upplausn\n"
+"\n"
+" Hér getur þú valið upplausnir og litadýpt sem eru tiltækar fyrir þinn\n"
+"grafíska vélbúnað. Veldu þá upplausn sem hæfir þínum kröfum best\n"
+"(þú getur breytt þessu síðar eftir uppsetningu). Dæmi um valdar\n"
+"stillingar eru sýndar á skjámyndinni.\n"
+"\n"
+"\n"
+"\n"
+"Prófun\n"
+"\n"
+" Eftir tegund vélbúnaðar þíns, er þessi hluti ekki alltaf sýnilegur\n"
+"\n"
+" Prófunin mun reyna að opna grafískan skjá með valinni upplausn\n"
+"á skjánum þínum. Ef þú sérð prófunarskeyti á skjánum og svarar \"%s\",\n"
+"þá mun DrakX halda áfram að næsta þrepi. Ef þú sér það ekki, þá\n"
+"þýðir það að einhver hluti að sjálfvirku uppsetningunum var ekki rétt.\n"
+"Prófuninni lýkur eftir 12 sekúndur og þú ert sendur aftur í valmyndina.\n"
+"Breyttu stillingum þar til þú færð prófið til að virka rétt.\n"
+"\n"
+"\n"
+"\n"
+"Aukakostir\n"
+"\n"
+" Þetta þrep leyfir þér að velja hvort þú vilt að vélin þín ræsi upp\n"
+"myndrænt viðmót við ræsingu kerfis. Augljóslega getur þú krossað við\n"
+"\"%s\" ef vélin þín á að vera miðlari eða þér tókst ekki að stilla\n"
+"grafíska skjákortið/upplausnina/skjáinn... rétt."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Skjár\n"
+"\n"
+" Venjulega mun uppsetningarforritið finna tengda skjái sjálfkrafa og\n"
+"setja upp viðeigandi stillingar. Ef valið er ekki rétt getur þú valið\n"
+"réttan skjá af þessum lista - skjáinn sem er tengdur þinni tölvu."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Upplausn\n"
+"\n"
+" Hér getur þú valið upplausn og litadýpt sem eru mögulegir fyrir þinn\n"
+"vélbúnað. Veldu þann sem best hæfir þínum þörfum (þú getur breytt\n"
+"þessum stillingum eftir uppsetningu). Dæmi um valda uppsetningu er\n"
+"sýnt á skjámyndinni."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Í því tilviki að mismunandi miðlarar eru til fyrir kortið þitt, með eða án\n"
+"þrívíddar-hraðals, þá verður þú beðinn um að velja þann miðlara sem best\n"
+"hentar þínum þörfum."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Aukakostir\n"
+"\n"
+" Þetta þrep leyfir þér að velja hvort þú vilt að vélin þín ræsi upp\n"
+"myndrænt viðmót við ræsingu kerfis. Augljóslega getur þú krossað við\n"
+"\"%s\" ef vélin þín á að vera miðlari eða þér tókst ekki að stilla\n"
+"grafíska skjákortið/upplausnina/skjáinn... rétt."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Nú verður þú að ákveða hvar þú vilt setja upp Mandriva Linux\n"
+"stýrikerfið á diskinn þinn. Ef diskurinn þinn er tómur eða núverandi\n"
+"stýrikerfi er að nota allt plássið á disknum, þá verður þú að\n"
+"Endursníða diskinn. Að sníða diskinn þýðir að skipta disknum\n"
+"í hluta sem þörf er á til að setja upp Mandriva Linux kerfið.\n"
+"\n"
+"Af því að skipting disks í sneiðar er venjulega óafturkræf aðgerð\n"
+"og getur leitt til að þú tapir gögnum, þá getur þetta verið erfið og\n"
+"stressandi aðgerð fyrir óvanan notanda. Til allrar hamingju er\n"
+"DrakX með ráðgjafa sem einfaldar aðgerðina. Áður en þú heldur\n"
+"áfram með þetta skref, lestu afganginn af þessum kafla og fyrir\n"
+"alla muni gefðu þér nægan tíma til að ákvarða rétta lausn.\n"
+"\n"
+"Nokkrar mismunandi aðferðir eru mögulegar, þær fara eftir\n"
+"núverandi uppsetningu á diskum:\n"
+"\n"
+" * \"%s\". Þessi aðgerð skiptir auðum svæðum á diskum sjálfkrafa.\n"
+"Ef þú velur þetta verður ekki spurt fleiri spurninga.\n"
+"\n"
+" * \"%s\". Ráðgjafinn hefur fundið eina eða fleiri Linux disksneiðar\n"
+"á disknum. Veldu þennan möguleika ef þú vilt nota þær. Þú verður\n"
+"þá beðin(n) um að velja tengipunkta fyrir hverja disksneið.\n"
+"Venjulegu tengipunktarnir eru sjálfgefið valdir, og það er góð\n"
+"hugmynd að halda þeirri reglu.\n"
+"\n"
+" * \"%s\". Ef Microsoft Windows er uppsett á disknum þínum og tekur\n"
+"upp allt diskplássið. Þá verður þú að búa til laust pláss fyrir GNU/Linux.\n"
+"Til að gera það þá getur þú eytt Microsoft Windows disksneiðinni\n"
+"og gögnum (sjá ``Eyða öllu á disknum'') eða breytt stærð á Microsoft \n"
+"Windows FAT eða NTFS disksneiðinni. Breytingu á stærð disksneiða\n"
+"er hægt að framkvæma án þess að nokkur gögn tapist, ef þú hefur\n"
+"áður þjappað gögnum á Windows disksneiðinni (defragment).\n"
+"Mælt er með að nota þessa aðferð ef þú vilt nota bæði Mandriva \n"
+"Linux og Microsoft Windows á sömu tölvunni.\n"
+"\n"
+"Áður en þú velur þennan valkost, hafðu þá í huga að, eftir þessa aðgerð\n"
+"verður Microsoft Windows disksneiðin minni en þegar þú byrjaðir. Þú\n"
+"munt því hafa minna laust diskpláss þegar þú notar Microsoft Windows\n"
+"til að geyma gögn og setja upp hugbúnað.\n"
+"\n"
+" * \"%s\". Ef þú vilt eyða öllum gögnum og disksneiðum sem nú eru\n"
+"á disknum og skipta þeim út með nýju Mandriva Linux stýrikerfi, veldu\n"
+"þennan valkost. Farðu varlega, því þú getur ekki afturkallað þessar\n"
+"breytingar eftir að þú hefur staðfest þær.\n"
+"\n"
+" !! Ef þú velur þennan valkost þá verður öllum gögnum á disknum eytt. !!\n"
+"\n"
+" * \"%s\". Þessi valkostur birtist þegar allt pláss á disknum er notað af\n"
+"Microsoft Windows. Ef þú velur þennan valkost, verður öllu einfaldlega\n"
+"eytt af disknum og þú byrjar með auðan disk, sem þú getur skipt\n"
+"síðan að vild.\n"
+"\n"
+" !! Ef þú velur þennan valkost þá verður öllum gögnum á disknum eytt. !!\n"
+"\n"
+" * \"%s\" Veldu þennan valkost ef þú vilt sjálfur skipta disknum þínum.\n"
+"Farðu varlega -- Þetta er öflugur en hættulegur valkostur og þú getur\n"
+"auðveldlega tapað öllum gögnum. Þess vegna er þessi valkostur eiginlega\n"
+"aðeins fyrir þá sem hafa gert þetta áður og hafa nokkra reynslu. Frekari\n"
+"upplýsingar um hvernig á að nota DiskDrake forritið er hægt að nálgast\n"
+"í kaflanum ``Managing Your Partitions'' í ``Starter Guide''."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Nota núverandi disksneið"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Eyða öllu á disknum"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Jæja - hingað ertu þá kominn. Uppsetningu er nú lokið og GNU/Linux kerfið\n"
+"er tilbúið til notkunar. Aðeins eftir að smella á \"%s\" til að endurræsa "
+"kerfið\n"
+"Ekki gleyma að fjarlægja uppsetningarmiðilinn (Geisladisk eða diskling).\n"
+"Það fyrsta sem þú sérð eftir að tölvan hefur athugað vélbúnaðinn er\n"
+"ræsivalmynd, sem gefur þér möguleika á að velja hvaða stýrikerfi þú vilt "
+"ræsa\n"
+"\n"
+"Hnappurinn \"%s\" sýnir þér tvo auka hnappa sem:\n"
+"\n"
+" * \"%s\": leyfir þér að búa til uppsetningardisk sem framkvæmir sjálfkrafa\n"
+"alla uppsetninguna án íhlutunar, t.d. ef þú ert að setja upp aðra vél eins "
+"og\n"
+"þú varst að ljúka við að setja upp.\n"
+"\n"
+" Athugið að tveir möguleikar eru á uppsetningardisk sem birtast eftir að\n"
+"þú smellir á þennan hnapp:\n"
+"\n"
+" * \"%s\". Þetta er að hluta til sjálfvirk uppsetning. Diskasneiðing er\n"
+"eina þrepið sem þú þarft að framkvæma.\n"
+"\n"
+" * \"%s\". Algerlega sjálfvirk uppsetning: Öllu á disknum er eytt og\n"
+"diskurinn er algerlega endurskrifaður, öll gögn tapast.\n"
+"\n"
+" Þetta er mjög hagkvæmt ef þú ert að setja upp á margar svipaðar\n"
+"tölvur. Sjá nánar um sjálfvirka uppsetningu á vefsíðum okkar.\n"
+"\n"
+" * \"%s\"(*): vistar lista af öllum pökkum sem þú valdir í þessari\n"
+"uppsetningu. Til að nota þennan lista við aðra uppsetningu, settu inn\n"
+"disklinginn og byrjaðu uppsetningu. Þegar þú færð valskjáinn\n"
+"ýttu á [F1] og sláðu inn >>linux defcfg=\"floppy\"<< og ýttu á\n"
+"[Enter] lykilinn.\n"
+"\n"
+"(*) Þú þarft FAT-forsniðinn diskling. Til að búa til þannig diskling undir\n"
+"GNU/Linux, gefðu skipunina \"mformat a:\", eða \"fdformat /dev/fd0\"\n"
+"og síðan skipunina \"mkfs.vfat /dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Búa til diskling fyrir sjálfvirka uppsetningu"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Ef þú velur að endurnota einhverjar staðlaðar GNU/Linux disksneiðar\n"
+"vilt þú kannski endur-forsníða sumar þeirra og eyða gögnum sem þær\n"
+"innihalda. Til að gera það veldu einnig þær disksneiðar.\n"
+"\n"
+"Vinsamlega athugið að það er ekki nauðsynlegt að endur-forsníða allar\n"
+"disksneiðar sem eru til staðar. Þú þarft að endur-forsníða disksneiðar\n"
+"sem innihalda stýrikerfið (svo sem \"/\", \"/usr\" eða \"/var\") en þú\n"
+"þarft ekki að endur-forsníða disksneiðar sem innihalda gögn sem þú\n"
+"vilt geyma (venjulega \"/home\").\n"
+"\n"
+"Vinsamlega viðhafið varúð þegar þið veljið disksneiðar. Eftir að þær\n"
+"hafa verið forsniðnar, þá hefur öllum gögnum á þeim verið eytt, og þú\n"
+"getur ekki sótt þau aftur.\n"
+"\n"
+"Smelltu á \"%s\" þegar þú ert tilbúinn, og vilt forsníða disksneiðarnar.\n"
+"\n"
+"Smelltu á \"%s\" ef þú vilt velja aðra disksneið fyrir nýja Mandriva Linux\n"
+"stýrikerfið þitt.\n"
+"\n"
+"Smelltu á \"%s\" ef þú vilt velja disksneiðar sem verða skoðaðar\n"
+"sérstaklega m.t.t. galla á diskblokkum."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Þegar þú setur upp Mandriva Linux er líklegt að sumir pakkar hafi verið\n"
+"uppfærðir frá upphaflegri útgáfu. Villur hafa verið lagfærðar, og\n"
+"öryggisvandamál leyst. Til að nýta ykkur þessar uppfærslur, þá getið\n"
+"þið sótt þær nú um Internetið. Krossaðu við \"%s\" ef þú hefur nú\n"
+"þegar internet-tengingu, eða \"%s\" ef þú vilt sækja uppfærslur síðar.\n"
+"\n"
+"Ef þú velur \"%s\", þá færð þú lista af vefsvæðum sem þú getur sótt\n"
+"uppfærslur frá. Þú ættir að velja það vefsvæði sem er næst þér.\n"
+"Þú færð að sjá pakkalista sem þú getur valið úr og smellt á \"%s\"\n"
+"til að sækja og setja upp valda pakka, eða \"%s\" til að hætta við."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Hér leyfir DrakX þér að velja það öryggisstig sem þú óskar að hafa á\n"
+"tölvunni þinni. Þumalfingursregla er að öryggisstig ætti að vera því hærra\n"
+"sem gögnin eru mikilvægari, eða ef vélin verður tengd beint við\n"
+"Internetið. Hærra öryggisstig þýðir þó venjulega að aðgangur að\n"
+"vél og gögnum verður óþjálli.\n"
+"\n"
+"Ef þú veist ekki hvað á að velja, notaðu þá sjálfgefið öryggisstig. Þú\n"
+"getur breytt því seinna með draksec tólinu, sem er hluti af Mandriva Linux\n"
+"stjórnborðinu.\n"
+"\n"
+"Fylltu út í svæðið \"%s\" með netfangi þess aðila sem er ábyrgur fyrir\n"
+"öryggi kerfisins. Skeyti sem varða öryggi kerfis verða send á þetta netfang."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Öryggisfulltrúi"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Hér þarft þú að ákveða hvaða disksneið þú vilt nota fyrir Mandriva Linux\n"
+"stýrikerfið. Ef disksneiðar hafa þegar verið skilgreindar, annað hvort\n"
+"frá fyrri uppsetningu á GNU/Linux, eða af öðru forriti til að stilla\n"
+"disksneiðar, þá getur þú notað þær. Annars verður þú að skilgreina\n"
+"disksneiðar.\n"
+"\n"
+"Til að skilgreina disksneiðar þá verður þú fyrst að velja disk. Þú getur\n"
+"valið disk sem þú ætlar að skipta með því að smella á ``hda'' fyrir\n"
+"fyrsta IDE tengda diskinn, ``hdb'' fyrir þann næsta, ``sda'' fyrir\n"
+"fyrsta SCSI diskinn o.s.frv.\n"
+"\n"
+"Til að skipta völdum diski, þá getur þú notað eftirfarandi aðgerðir:\n"
+"\n"
+" * \"%s\": þessi valkostur eyðir öllum disksneiðum á disknum\n"
+"\n"
+" * \"%s\": þessi valkostur býr sjálfkrafa til ext3 og diskminnis-sneið\n"
+"á lausu plássi á disknum.\n"
+"\n"
+"\"%s\": gefur þér aðgang að aukavalkostum:\n"
+"\n"
+" * \"%s\": vistar disksneiða-töfluna á disklingi. Gott ef síðar þarf að\n"
+"endurbyggja disksneiða-töfluna. Það er mælt með að þú gerir\n"
+"framkvæmir þetta skref.\n"
+"\n"
+" * \"%s\" leyfir þér að endurbyggja disksneiða-töfluna frá disklingi.\n"
+"\n"
+" * \"%s\": ef disksneiða-taflan er skemmd, þá getur þú reynt að\n"
+"endurbyggja hana. Farðu varlega og mundu að þetta virkar ekki alltaf\n"
+"\n"
+" * \"%s\": hendir öllum breytingum og endurhleður disksneiða-töflunni\n"
+"eins og hún var upphaflega á disknum.\n"
+"\n"
+" * \"%s\": ef þú af-velur þennan valkost, þá verða notendur að\n"
+"tengja disklinga og geisladiska sjálfir við tengipunkta\n"
+"\n"
+" * \"%s\": notaðu þennan valkost ef þú vilt nota ráðgjafa til að skipta\n"
+"disknum þínum. Það er mæt með þessu ef þú hefur ekki nákvæmlega\n"
+"hvað á að gera hér.\n"
+"\n"
+" * \"%s\": notaðu þennan valkost ef þú vilt hætta við allar breytingar.\n"
+"\n"
+" * \"%s\": gefur þér aukalega valkosti (tegund, valkosti, forsníða)\n"
+"og gefur þér meiri upplýsingar um diskinn.\n"
+"\n"
+" * \"%s\": þegar þú hefur lokið við að skipta disknum þínum, þá\n"
+"skrifar þetta breytingarnar á diskinn.\n"
+"\n"
+"Þegar þú skilgreinir stærð disksneiðar, þá getur þú fínstillt stærðina\n"
+"á sneiðinni með örvalyklunum á lyklaborðinu.\n"
+"\n"
+"Athugið: Þú getur komist að öllum aðgerðum á skjánum frá\n"
+"lyklaborðinu. Þú færir þig á milli svæða með [Tab] og [Upp/Niður]\n"
+"örvalyklunum.\n"
+"\n"
+"Þegar disksneið er valin, þá getur þú notað:\n"
+"\n"
+" * Ctrl-c til að búa til nýja disksneið (þegar auð disksneið er valin)\n"
+"\n"
+" * Ctrl-d til að eyða disksneið\n"
+"\n"
+" * Ctrl-m til að setja tengipunkt\n"
+"\n"
+"Til að fá upplýsingar um mismunandi skráakerfi, vinsamlega lestu\n"
+"kaflann um ext2FS í ``Reference Manual''.\n"
+"\n"
+"Ef þú ert að setja upp á PPC tölvu, þá ættir þú að búa til litla HFS\n"
+"``ræsi-disksneið'' sem er að minnsta kosti 1M. Þessi disksneið\n"
+"verður notuð af yaboot ræsistjóranum. Ef þú gerir disksneiðina\n"
+"svolítið stærri t.d. 50MB þá er það góður staður til að geyma auka\n"
+"kjarna og ræsidisk-ímyndir fyrir óvæntar uppákomur."
+
+# ## skrytid
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Sjálfvirk tenging aukatækja"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Víxla milli venjulegs/sérfræðings-hams"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Fleiri en ein Microsoft disksneið hefur fundist á disknum.\n"
+"Vinsamlega veldu hverri þeirra þú vilt breyta stærðinni á til að geta sett\n"
+"upp nýja Mandriva Linux stýrikerfið.\n"
+"\n"
+"Hver sneið á listanum inniheldur \"Linux nafn\", \"Windows nafn\" \"Diskrýmd"
+"\".\n"
+"\n"
+"\"Nafn\" er byggt upp af: \"disktegund\", \"disknúmer\",\n"
+"\"disksneið\" (t.d., \"hda1\").\n"
+"\n"
+"\"Disktegund\" er \"hd\" ef disknum er stýrt með IDE stýringu og\n"
+"\"sd\" ef það er SCSI diskur.\n"
+"\n"
+"\"Disknúmer\" er alltaf bókstafur eftir \"hd\" eða \"sd\". Fyrir IDE\n"
+"diska:\n"
+"\n"
+" * \"a\" þýðir \"aðal (master) diskur á fyrstu IDE stýringu\";\n"
+"\n"
+" * \"b\" þýðir \"auka (slave) diskur fyrstu IDE stýringu\";\n"
+"\n"
+" * \"c\" þýðir \"aðal (master) diskur á annari IDE stýringu\";\n"
+"\n"
+" * \"d\" þýðir \"auka (slave) diskur annari IDE stýringu\";\n"
+"\n"
+"Á SCSI diskum, þýðir \"a\" \"lægsta SCSI ID\", \"b\" þýðir\n"
+"\"næst-lægsta SCSI ID\", o.s.frv.\n"
+"\n"
+"\"Windows nafn\" er bókstafurinn á disknum eins og það sést undir\n"
+"Windows (fyrsti diskurinn eða sneiðin er kölluð \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": athugið val lands. Ef valið land er ekki rétt smelltu þá\n"
+"á \"%s\" hnappinn og veldu annað. Ef landið þitt er ekki á listanum,\n"
+"smelltu þá á \"%s\" hnappinn til að sjá heildalista landa."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Þetta skref er aðeins virkjað ef GNU/Linux disksneið hefur fundist á\n"
+"tölvunni þinni.\n"
+"\n"
+"DrakX þarf nú að vita hvort þú vilt setja upp nýtt kerfi eða hvort þú\n"
+"vilt uppfæra uppsett Mandriva Linux kerfi:\n"
+"\n"
+" * \"%s\". Þetta þurkar að mestu út gamla kerfið. En þó fer það\n"
+"svolítið eftir diskssneiðum sem þú hefur sett upp, þá getur þú\n"
+"varnað því að gögn (fyrst og fremst \"home\" möppur) verði\n"
+"yfirskrifuð. Ef þú vilt breyta hvernig diskunum er skipt, eða breyta\n"
+"skráakerfinu, þá ættir þú að velja þennan valkost.\n"
+"\n"
+" * \"%s\". Þessi uppsetning leyfir þér að uppfæra pakkana sem nú\n"
+"eru uppsettir á Mandriva Linux kerfinu þínu. Disksneiðum og gögnum\n"
+"verður ekki breytt. Flest uppsetningarþrep eru enn aðgengileg\n"
+"og eru svipuð venjulegri uppfærslu.\n"
+"\n"
+"Að nota ``Uppfærslu'' aðgerðina ætti að virka vel á Mandriva Linux\n"
+"kerfum sem eru að keyra útgáfu \"8.1\" eða nýrri. Ekki er mælt með\n"
+"uppfærslu á eldri útgáfum en Mandriva Linux \"8.1\"."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Byggt á því tungumáli sem þú velur, þá mun DrakX sjálfkrafa velja\n"
+"lyklaborðs-uppsetningu. Athugaðu hvort valið hentar þér, eða veldu\n"
+"aðra lyklaborðs-uppsetningu.\n"
+"\n"
+"Einnig gæti verið að lyklaborðið henti ekki þínum þörfum eða tungumáli\n"
+"Ef t.d. þú vilt hafa aðgang að íslensku lyklaborði í Sviss. Eða danskt\n"
+"lyklaborð og íslenskt umhverfi. Almennt talað í þannig umhverfi\n"
+"að tungumál og valið lyklaborð passa ekki saman. Hvort sem þú\n"
+"vilt þá getur þú valið lyklaborð af listanum.\n"
+"\n"
+"Smelltu á \"%s\" hnappinn til að sjá lista af mögulegum lyklaborðs-"
+"uppsetningum.\n"
+"\n"
+"Ef þú velur lyklaborðs-uppsetningu sem er ekki byggt á latnesku\n"
+"stafrófi, þá mun næsti gluggi leyfa þér að velja lyklasamsetningu\n"
+"sem víxlar til og frá latneska lyklaborðinu."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Fyrsta þrepið er að velja æskilegt tungumál.\n"
+"\n"
+"Val þitt á æskilegu tungumáli hefur áhrif á uppsetningarforritið,\n"
+"handbækur, og stýrikerfið í heild sinni. Veldu fyrst hvaða svæði\n"
+"þú er búsettur á, síðan tungumál sem þú notar.\n"
+"\n"
+"Ef þú smellir á \"%s\" hnappinn þá getur þú valið önnur tungumál\n"
+"sem verða sett upp á vinnustöðina þína, þá verða skrár sem tengjast\n"
+"því tungumáli settar upp á tölvuna. Til dæmis ef spænskir notendur\n"
+"munu nota tölvuna þína, veldu þá Ensku sem aðaltungumál í\n"
+"valglugganum og \"%s\" í ítarlegri hlutanum.\n"
+"\n"
+"Um UTF-8 (unicode) stuðning: Unicode er ný stafakóðun sem\n"
+"tekur til allra tungumála. En fullur stuðningur fyrir þessa kóðun er\n"
+"enn á þróunarstigi fyrir GNU/Linux. Þess vegna ætti val þitt á\n"
+"að nota UTF-8 að byggja á eftirfarandi:\n"
+"\n"
+" * Ef þú velur tungumál sem hefur sterkan stuðning í venjulegri\n"
+"stafakóðun (latnesk-1 tungumál, Rússneska, Kínverska, Kóreanska,\n"
+"Tælenska, Gríska, Tyrkneska og flest iso-8859-2 tungumál),\n"
+"þá verður eldri stafakóðun valin sjálfgefið;\n"
+"\n"
+" * Önnur tungumál munu sjálfgefið nota unicode;\n"
+"\n"
+" * Ef tvö eða fleiri tungumál eru valin og þau nota ekki sömu kóðun\n"
+"þá verður unicode notað fyrir allt kerfið;\n"
+"\n"
+" * Að lokum, hægt er að þvinga notkun unicode alls staðar í\n"
+"kerfinu með því að velja \"%s\" valkostinn óháð því hvaða\n"
+"tungumál hafa verið valin.\n"
+"\n"
+"Athugið að þú ert ekki takmarkaður við að velja eitt aukalegt tungumál.\n"
+"Þú getur valið nokkur eða jafnvel valið þau öll með því að krossa við\n"
+"\"%s\" reitinn. Ef þú velur stuðning fyrir tungumál þýðir það að\n"
+"þýðingar, letur, stafsetningar-leiðréttingar o.s.frv. verða einnig\n"
+"sett inn fyrir þessi tungumál.\n"
+"\n"
+"Til að víxla milli mismunandi tungumála sem eru uppsett á kerfinu\n"
+"þínu, þá getur þú keyrt \"localedrake\" skipunina sem \"root\" til\n"
+"að breyta sjálfgefnu tunguáli fyrir allt kerfið. Ef þú keyrir skipunina\n"
+"sem venjulegur notandi þá mun það einungis breyta uppsetningu\n"
+"tungumáls fyrir þann notanda."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Spænska"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Venjulega er DrakX ekki í neinum vandræðum með að finna fjölda hnappa\n"
+"á músinni þinni. Ef DrakX lendir í vandræðum gerir það ráð fyrir tveggja\n"
+"hnappa mús og mun setja upp þriggja hnappa hermi. Þriðja hnappinn\n"
+"á tveggja hnappa mús má fá fram með því að smella samtímis á hægri\n"
+"og vinstri hnappana. DrakX mun sjálfkrafa vita hvort músin þín notar\n"
+"PS/2- , rað- eða usb-tengi.\n"
+"\n"
+"Ef þú hefur þriggja hnappa mús án skrunhjóls, þá getur þú valið \"%s\"\n"
+"mús. DrakX mun þá stilla músina þína þannig að þú getir hermt eftir\n"
+"skrunhjóli með því. Til að gera það, smelltu á miðhnappinn og færðu\n"
+"músina upp og niður.\n"
+"\n"
+"Ef þú af einhverri ástæðu vilt skilgreina aðra tegund músar, veldu hana\n"
+"þá úr listanum.\n"
+"\n"
+"Þú getur valið \"%s\" færsluna til að velja ``almenna'' músartegund\n"
+"sem mun virka með flestum músum.\n"
+"\n"
+"Ef þú velur aðra mús en sjálfgefna, þá birtist prufuskjár. Notið hnappana\n"
+"og hólið til að staðfesta að stillingar séu réttar og músin virki rétt.\n"
+"Ef Músin virkar ekki rétt sláðu þá á bilslána eða [Enter] til að hætta\n"
+"prófuninni og þú færð aftur upp lista af músum.\n"
+"\n"
+"Það kemur fyrir að skrunhjóla-mýs séu ekki skynjaðar sjálfvirkt,\n"
+"svo þú verður að velja músina úr lista. Athugaðu vel að velja rétt\n"
+"tengi rað/PS-2/USB sem músin er tengd við. Eftir að þið hafið\n"
+"valið mús og smellt á \"%s\" hnappinn, þá birtist músamynd á\n"
+"skjánum. Notið skrunhjólið til að staðfesta að það sé virkjað rétt.\n"
+"Þegar þú hreyfir hjólið, mun músarhjólið á skjánum hreyfast.\n"
+"Prófaðu hnappana líka til og hreyfðu bendilinn á skjánum til að\n"
+"staðfest að allt virki rétt."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "Með skrunhermi"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Almennt | Einhverjar PS/2 & USB mýs"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Veldu tengið sem þú vilt nota. Tengið \"COM1\" í Windows er kallað\n"
+"\"ttyS0\" í GNU/Linux, \"COM2\" er \"ttyS1\", o.s.frv."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Þetta er ein mest áríðandi ákvörðun sem þú tekur fyrir öryggi GNU/Linux\n"
+"kerfis. Þú verður að gefa upp lykilorð fyrir \"root\". \"root\" er "
+"kerfisstjóri\n"
+"og eini notandinn sem má framkvæma uppfærslur, bæta við notendum,\n"
+"breyta uppsetningu kerfisins, og svo framvegis. Í stuttu máli \"root\" má\n"
+"gera allt!. Þess vegna verður þú að velja lykilorð sem er erfitt að giska "
+"á.\n"
+"DrakX mun segja þér ef lykilorðið er of einfalt. Eins og þú sérð þá þarft\n"
+"þú ekki að slá inn lykilorð, en við ráðleggjum þér alls ekki að hafa það\n"
+"þannig. GNU/Linux er alveg eins viðkvæmt fyrir villum kerfisstjóra og\n"
+"önnur stýrikerfi. Þar sem \"root\" getur farið framhjá öllum takmörkunum\n"
+"og óvart eytt öllum gögnum á disksneiðum með því að vísa kæruleysislega\n"
+"í disksneiðarnar, Það er áríðandi að það sé ekki einfalt að verða \"root\"\n"
+"\n"
+"Lykilorðið ætti að vera blanda af bókstöfum og tölum og að minnsta\n"
+"kosti 8 stafa langt. Aldrei skrifa niður \"root\" lykilorðið -- Þá verður\n"
+"allt of auðvelt að brjótast inn í kerfið.\n"
+"\n"
+"Hafið lykilorðið heldur ekki of langt eða flókið því þú verður að muna það!\n"
+"\n"
+"Lykilorðið verður ekki birt á skjánum þegar þú slærð það inn. Til að\n"
+"minnka hættu á innsláttarvillu ert þú beðinn um að slá lykilorðið tvisvar.\n"
+"Ef þú gerir þá sömu innsláttar villuna tvisvar verður þú að nota þetta\n"
+"``ranga'' lykilorð í fyrsta sinn þegar þú tengist sem \"root\".\n"
+"\n"
+"Ef þú vilt nota auðkenningar-miðlara til að stjórna aðgangi að tölvunni\n"
+"þinni, smelltu þá á \"%s\" hnappinn.\n"
+"\n"
+"Ef þú notar LDAP, NIS eða PDC Windows Domain auðkenningar-\n"
+"þjónustur, veldu réttan valkost fyrir \"%s\". Ef þú veist ekki hvað\n"
+"þú átt að nota spurðu þá net-stjórnandann.\n"
+"\n"
+"Ef þú átt í vandræðum með að muna lykilorð, eða ef tölvan þín verður\n"
+"aldrei tengd Internetinu, og þú treystir algerlega öllum þeim sem koma\n"
+"að tölvunni þinni, þá getur þú valið að hafa \"%s\"."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "auðkenning"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Ræsi-forrit er lítið forrit sem er ræst af tölvunni þegar kveikt er á \n"
+"tölvunni. Það er ábyrgt fyrir að ræsa síðan upp allt kerfið. Venjulega\n"
+"er uppsetning ræsiforritsins algerlega sjálfvirk. DrakX mun athuga\n"
+"ræsigeira disksins og haga aðgerðum eftir því:\n"
+"\n"
+" * Ef Windows ræsigeiri finnst, þá verður honum skipt út með GRUB/LILO\n"
+"ræsigeira. Þannig getur þú ræst annað hvort GNU/Linux eða annað\n"
+"stýrikerfi sem er uppsett á tölvunni þinni.\n"
+"\n"
+" * Ef GRUB eða LILO ræsigeiri finnst, þá verður honum skipt út með nýjum.\n"
+"\n"
+"Ef DrakX getur ekki ákveðið hvar á að setja ræsigeirann, þá munt þú\n"
+"verða spurður hvar eigi að setja hann. Almennt er \"%s\" öruggasti "
+"staðurinn\n"
+"Ef þú velur \"%s\", þá verður ekki sett inn neitt ræsiforrit. Gerðu\n"
+"það aðeins ef þú veist hvað þú ert að gera."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Nú er komið að því að setja upp prentkerfi fyrir tölvuna þína. Önnur\n"
+"stýrikerfis bjóða þér kannski upp á eitt, en Mandriva Linux býður tvö.\n"
+"Hvort þeirra hefur sína kosti\n"
+"\n"
+" * \"%s\" -- sem er skammstöfun fyrir ``prenta ekki biðröð'' \n"
+"(print, do not queue) er rétti valkosturinn ef tölvan er beintengd\n"
+"við prentarann, og þú vilt geta stöðvað snarlega ef pappír festist\n"
+"eða flækist, eða ef þú hefur ekki nettengda prentara.\n"
+"(\"%s\" höndlar aðeins einföldustu nettengingar og er frekar hægvirkt\n"
+"ef það er notað á neti.) Það er þó mælt með að þú notir \"pdq\"\n"
+"ef þetta eru þín fyrstu kynni af GNU/Linux.\n"
+"\n"
+" * \"%s\" stendur fyrir `` Common Unix Printing System'' og er góður\n"
+"kostur hvort sem þú prentar á staðbundinn prentara eða á prentara\n"
+"sem er hinum megin á hnettinum. Það er einfalt að stilla og getur bæði\n"
+"verið miðlari og biðlari fyrir gamalkunnu \"lpd\" prentþjónustuna.\n"
+"Það er því samhæft við eldri stýrikerfi sem þurfa prentþjónustu.\n"
+"Þó að það sé mjög öflugt, þá er einfaldasta uppsetning næstum því\n"
+"eins einföld og \"pdq\". Ef þú þarft að herma eftir \"lpd\", mundu þá eftir\n"
+"að ræsa \"cups-lpd\" þjónustuna. \"%s\" er með myndrænt viðmót fyrir\n"
+"prentaraval og stjórnun á prentara.\n"
+"\n"
+"Hvað sem þú velur núna, þá getur þú breytt prentkerfinu með því að\n"
+"keyra PrinterDrake frá Mandriva Linux stjórnborðinu og smella á \"%s\"\n"
+"hnappinn."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Sérfræðingur"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX mun fyrst leita að öllum IDE tækjum í tölvunni. Síðan er einnig\n"
+"leitað að einu eða fleiri SCSI kortum í tölvunni. Ef SCSI kort finnst þá\n"
+"mun DrakX mun sjálfkrafa setja inn rekil fyrir kortið.\n"
+"\n"
+"Af því að sjálfvirk vélbúnaðarleit er ekki gallalaus, þá finnur DrakX\n"
+"kannski ekki diskana í tölvunni. Ef svo er þá verður þú að skilgreina\n"
+"vélbúnaðinn handvirkt.\n"
+"\n"
+"Ef þú þarft að skilgreina handvirkt PCI SCSI stýringu, þá mun DrakX spyrja\n"
+"hvort þú viljir tilgreina viðföng fyrir kortið. Þú ættir að leyfa DrakX að\n"
+"kanna vélbúnaðinn til að stilla kortið sjálfkrafa. Oftast kemst DrakX\n"
+"áfram án aukalegra viðfanga.\n"
+"\n"
+"Ef DrakX finnur ekki hvaða breytur á að senda til kortsins þá verður þú að\n"
+"stilla kortið og viðföng þess handvirkt."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": ef hljóðkort finnst í tölvunni. þá verða upplýsingar um það sýndar\n"
+"hér. Ef þú sérð að hljóðkortið er ekki það sem er raunverulega í tölvunni,\n"
+"þá getur þú smellt á hnappinn hér og bent á annan rekil."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"DrakX sýnir þér hér samantekt á upplýsingum sem það hefur\n"
+"safnað um tölvuna þína. Það fer síðan eftir því hvaða vélbúnaður er á "
+"vélinni\n"
+"þinni hvort þú sérð alla þá möguleika sem hér fara eftir. Hver færsla\n"
+"er samsett af vélbúnaði sem hægt er að stilla og samantekt um\n"
+"uppsetninguna. Smellið á tilsvarandi \"%s\" til að stilla þessa einingu.\n"
+"\n"
+" * \"%s\": athuga lyklaborðvörpun og breyta henni ef þörf krefur.\n"
+"\n"
+" * \"%s\": athuga landval. Ef valið land er ekki rétt, smelltu þá á\n"
+"\"%s\" hnappinn og veldu annað land. Ef landið er ekki á listanum\n"
+"smelltu þá á \"%s\" hnappinn til að sjá allann listann.\n"
+"\n"
+" * \"%s\": DrakX velur sjálfkrafa tímabelti eftir því landi sem þú hefur\n"
+"valið. Þú getur smellt á \"%s\" hnappinn er það er ekki rétt.\n"
+"\n"
+" * \"%s\": sýna núverandi músastillingar og smelltu á hnappinn til að\n"
+"breyta því ef þörf krefur.\n"
+"\n"
+" * \"%s\": með því að smella á \"%s\" hnappinn opnast prent-stillingar-\n"
+"ráðgjafi. Ráðfærið ykkur við viðeigandi kafla í ``Starter Guide'' varðandi\n"
+"frekari upplýsingar um hvernig á að setja upp nýjan prentara. Viðmótið\n"
+"sem sýnt er þar, er svipað því sem er notað í uppsetningunni.\n"
+"\n"
+" * \"%s\": Ef hljóðkort finnst á kerfinu þínu, þá verður það sýnt hér\n"
+"Ef þú tekur eftir því að það hljóðkort sem sýnt er hér, sé ekki það\n"
+"sem er í raun í kerfinu þínu, þá getur þú smellt á hnappinn og valið\n"
+"annann rekil.\n"
+"\n"
+" * \"%s\": Ef sjónvarpskort finnst í tölvunni þinni þá er það sýnt hér.\n"
+"Ef það er sjónvarpskort í tölvunni og það finnst ekki þá getur þú smellt\n"
+"á \"%s\" hnappinn og reynt að setja það inn handvirkt.\n"
+"\n"
+" * \"%s\": þú getur smellt á \"%s\" til að breyta stillingum á kortinu ef\n"
+"þér finnst að uppsetningin sé röng.\n"
+"\n"
+" * \"%s\": Sjálfgefið stillir DrakX skjákortið/skjáinn þinn í upplausnina\n"
+"\"800x600\" eða \"1024x768\". Ef það er ekki sú upplausn sem þú vilt\n"
+"nota smelltu þá á \"%s\" til að endurstilla skjáupplausnina.\n"
+"\n"
+" * \"%s\": Ef þú vilt stilla Internet eða aðrar nettengingar núna.\n"
+"Þá getur þú gert það hér. Skoðaðu handbókina eða notaðu Mandriva\n"
+"Linux stjórnborðið eftir að uppsetningu er lokið til að fá meiri hjálp.\n"
+"\n"
+" * \"%s\": leyfir þér að stilla vefsel og FTP-sel ef vélin sem þú ert að\n"
+"setja upp á að tengjast netinu um sel.\n"
+"\n"
+" * \"%s\": hér getur þú endurstillt öryggisþrep sem þú settir áður\n"
+"í fyrra þrepi ().\n"
+"\n"
+" * \"%s\": ef þú ætlar að tengja vélina þína Internetinu, þá er\n"
+"góð hugmynd að vernda vélina þína með því að setja upp eldvegg.\n"
+"Lestu viðeigandi kafla í um uppsetningu eldveggs í ``Starter Guide''.\n"
+"\n"
+" * \"%s\": ef þú vilt breyta stillingum ræsistjóra, smelltu á\n"
+"þennan hnapp. Þetta ætti þó ekki að gera nema af kunnugum.\n"
+"\n"
+" * \"%s\": hér getur þú fínstillt hvaða þjónustur verða ræstar á\n"
+"tölvunni þinni. Ef þú ætlar að nota þessa vél sem miðlara þá er góð\n"
+"hugmynd að fara vel yfir þessa uppsetningu."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN spjald"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Myndrænt viðmót"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Veldu diskinn sem þú vilt hreinsa allt af til að setja upp nýja\n"
+"Mandriva Linux disksneið. Varúð, öllum gögnum á disknum verður\n"
+"eytt, og það er ekki hægt að sækja þau aftur!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Smelltu á \"%s\" ef þú vilt eyða öllum gögnum og disksneiðum\n"
+"á þessum disk. Varúð! Eftir að þú hefur smellt á \"%s\", getur\n"
+"þú ekki endurheimt nein gögn eða disksneiðar sem eru nú á þessum diski,\n"
+"Þar með talin Windows gögn.\n"
+"\n"
+"Smelltu á \"%s\" til að stöðva þessa aðgerð án þess að tapa gögnum\n"
+"og disksneiðum sem nú eru á þessum diski."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Næsta ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Fyrra"
+
diff --git a/perl-install/share/po/help-it.pot b/perl-install/install/help/po/it.po
index d10f299bb..17d962bc1 100644
--- a/perl-install/share/po/help-it.pot
+++ b/perl-install/install/help/po/it.po
@@ -1,171 +1,57 @@
+# translation of DrakX.po to Italian
+# translation of DrakX-it.po to Italiano
+# translation of DrakX-it.po to Italian
+# Copyright (C) 2000, 2001 Mandriva S.A.
+# Paolo Lorenzin <pasusu@tin.it>, 2000.
+# Simone Riccio <s.riccio@aeb-informatica.it>, 2002.
+# Roberto Rosselli Del Turco <rosselli@ling.unipi.it>, 2001, 2002,2003.
+# Marco De Vitis <mdv@spin.it>, 2003.
+# Andrea Celli <a.celli@caltanet.it>, 2003, 2004, 2005, 2006.
+# Giuseppe Levi <giuseppe.levi@email.it>, 2005.
+#
msgid ""
msgstr ""
+"Project-Id-Version: DrakX-it\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2006-02-03 21:33+0100\n"
+"Last-Translator: Andrea Celli <a.celli@caltanet.it>\n"
+"Language-Team: Italian <kde-i18n-it@kde.org>\n"
+"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:14
+#, c-format
msgid ""
-"You now need to decide where you want to install the Mandrivalinux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandrivalinux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandrivalinux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandrivalinux system, choose\n"
-"this option. Be careful, because you won't be able to undo this operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
msgstr ""
-"A questo punto dovete scegliere in quali punti del vostro disco rigido\n"
-"installare il sistema operativo Mandrivalinux. Se il disco è vuoto, o se\n"
-"tutto lo spazio disponibile è occupato da un altro sistema operativo già\n"
-"installato, allora dovrete creare o modificare le partizioni. In breve,\n"
-"partizionare un disco rigido consiste nel suddividerlo logicamente in più\n"
-"zone in maniera da creare lo spazio necessario all'installazione di\n"
-"Mandrivalinux.\n"
-"\n"
-"Dato che gli effetti del partizionamento sono di solito irreversibili, e\n"
-"possono causare la perdita di dati, questa operazione può intimidire e\n"
-"rivelarsi stressante per un utente inesperto. Per fortuna DrakX mette a\n"
-"vostra disposizione un assistente che semplifica questa procedura. Prima di\n"
-"cominciare leggete attentamente questa sezione e, soprattutto, fate le cose\n"
-"con calma.\n"
-"\n"
-"In base alla configurazione del vostro disco rigido, saranno disponibili\n"
-"diverse opzioni:\n"
-"\n"
-" * \"%s\": questa opzione causerà un partizionamento automatico dello\n"
-"spazio libero all'interno del vostro disco rigido (o dei dischi, se ne\n"
-"avete più di uno). Non vi verrà posta nessun'altra domanda.\n"
-"\n"
-" * \"%s\": l'assistente ha trovato una o più partizioni Linux già presenti\n"
-"sul vostro disco rigido. Scegliete questa opzione se desiderate usarle. Vi\n"
-"verrà chiesto di scegliere il punto di mount associato a ciascuna\n"
-"partizione: come opzione predefinita verranno selezionati i punti di mount\n"
-"precedenti e, in genere, è buona norma non modificarli.\n"
-"\n"
-" * \"%s\": se Microsoft Windows è installato sul vostro disco rigido e\n"
-"occupa tutto lo spazio disponibile, dovrete creare spazio libero per\n"
-"GNU/Linux. Per farlo potete ridimensionare la partizione FAT o NTFS su cui\n"
-"è installato Windows, oppure cancellare completamente la partizione e tutti\n"
-"i dati in essa contenuti (ricorrendo all'opzione \"Cancella l'intero\n"
-"disco\"). Il ridimensionamento può essere effettuato evitando la perdita di\n"
-"dati, a patto che prima di procedere la partizione Windows sia stata\n"
-"deframmentata. Vi consigliamo caldamente di fare comunque una copia di\n"
-"sicurezza dei vostri dati. Questa è la soluzione consigliata se desiderate\n"
-"usare sia Mandrivalinux che Microsoft Windows sullo stesso computer.\n"
-"\n"
-" Prima di scegliere questa opzione, tenete presente che le dimensioni\n"
-"della partizione su cui risiede Windows saranno ridotte rispetto a quelle\n"
-"iniziali. Ciò significa che avrete meno spazio libero su Windows per\n"
-"archiviare i vostri dati o installare nuovo software.\n"
-"\n"
-" * \"%s\": se desiderate cancellare tutti i dati e tutte le partizioni\n"
-"presenti sul vostro disco rigido e rimpiazzarli con il vostro nuovo sistema\n"
-"Mandrivalinux, potete selezionare questa opzione. Fate molta attenzione,\n"
-"perché dopo aver dato conferma non potrete più tornare indietro.\n"
-"\n"
-" !! Se scegliete questa opzione tutti i dati sul vostro disco saranno\n"
-"cancellati. !!\n"
-"\n"
-" * \"%s\": questa opzione compare quando il disco rigido è interamente\n"
-"occupato da Windows. Se scegliete questa opzione tutto quello che si trova\n"
-"sul disco verrà cancellato e potrete ricominciare da capo, creando le\n"
-"partizioni come se fosse la prima volta.\n"
-"\n"
-" !! Se scegliete questa opzione tutti i dati sul vostro disco saranno\n"
-"cancellati. !!\n"
-"\n"
-" * \"%s\": se volete partizionare manualmente il vostro disco rigido potete\n"
-"scegliere questa opzione. Fate attenzione: è una opzione potente, ma molto\n"
-"pericolosa, e potreste facilmente causare la perdita di tutti i vostri\n"
-"dati. Pertanto la suggeriamo soltanto nel caso abbiate già fatto qualcosa\n"
-"di simile in precedenza e abbiate una certa esperienza. Per ulteriori\n"
-"informazioni riguardo il funzionamento del programma DiskDrake, consultate\n"
-"la sezione \"Gestione delle partizioni\" della \"Guida introduttiva\"."
+"Prima di proseguire dovresti leggere con attenzione le condizioni d'uso che\n"
+"riguardano l'intera distribuzione Mandriva Linux. Se sei d'accordo con\n"
+"tutti i termini della licenza clicca sul pulsante \"%s\". In caso contrario\n"
+"ti basterà un clic sul pulsante \"%s\" per riavviare il computer."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
-msgstr ""
-"Risoluzione\n"
-"\n"
-" Qui potete scegliere risoluzione e profondità di colore tra quelle\n"
-"disponibili per il vostro hardware. Scegliete le impostazioni che meglio si\n"
-"adattano alle vostre necessità (potrete cambiare la configurazione anche\n"
-"dopo l'installazione, comunque). All'interno della figura del monitor è\n"
-"rappresentato un esempio della configurazione selezionata."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:20
+#, c-format
msgid ""
"GNU/Linux is a multi-user system which means each user can have his or her\n"
"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point won't be authorized\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
"to change anything except their own files and their own configurations,\n"
"protecting the system from unintentional or malicious changes which could\n"
"impact on the system as a whole. You'll have to create at least one regular\n"
"user for yourself -- this is the account which you should use for routine,\n"
"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system won't work any more. If you make a\n"
+"mistake could mean that your system will not work any more. If you make a\n"
"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you won't affect the entire system.\n"
+"lose some information, but you will not affect the entire system.\n"
"\n"
"The first field asks you for a real name. Of course, this is not mandatory\n"
"-- you can actually enter whatever you like. DrakX will use the first word\n"
@@ -186,143 +72,77 @@ msgid ""
"\n"
"When you're finished adding users, you'll be asked to choose a user who\n"
"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and don't care much about local\n"
+"you're interested in that feature (and do not care much about local\n"
"security), choose the desired user and window manager, then click on\n"
"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
msgstr ""
-"GNU/Linux è un sistema operativo multiutente, ciò significa che ciascun\n"
+"GNU/Linux è un sistema operativo multi-utente, ciò significa che ciascun\n"
"utente può disporre di una configurazione personalizzata, di uno spazio per\n"
-"i propri file, e così via; consultate la \"Guida introduttiva\" per saperne\n"
-"di più. Ma, a differenza di \"root\", che è l'amministratore del sistema,\n"
-"gli utenti che aggiungerete adesso non avranno il diritto di cambiare\n"
-"nulla, se non i propri file e la propria configurazione. Dovrete crearne\n"
-"almeno uno per voi stessi, da utilizzare per l'uso quotidiano: per quanto\n"
+"i propri file, e così via; consulta la ''Guida introduttiva'' per saperne di "
+"più.\n"
+"Ma, a differenza di \"root\", che è l'amministratore del sistema,\n"
+"gli utenti che aggiungerai adesso non avranno il diritto di cambiare\n"
+"nulla, se non i propri file e la propria configurazione. Dovrai crearne\n"
+"almeno uno per te stesso, da utilizzare per l'uso quotidiano: per quanto\n"
"molto comodo, entrare nel sistema come \"root\" tutti i giorni potrebbe\n"
"essere molto pericoloso! Anche un banale errore potrebbe significare un\n"
"sistema non più in grado di funzionare correttamente. Se, invece,\n"
-"commettete un errore, anche grave, in qualità di utente normale, potreste\n"
-"perdere parte dei vostri dati, ma non compromettere l'intero sistema.\n"
+"commetti un errore, anche grave, in qualità di utente normale, potrai forse\n"
+"perdere parte dei tuoi dati, ma non compromettere l'intero sistema.\n"
"\n"
-"Prima di tutto, inserite il vostro nome reale. Naturalmente questo non è\n"
-"obbligatorio: potete digitare quello che volete. Fatto questo, DrakX\n"
-"prenderà la prima parola che avete inserito nel campo di testo e la copierà\n"
+"Nel primo campo inserisci il vero nome. Naturalmente questo non è\n"
+"un obbligo legale: puoi digitare quello che vuoi. Fatto questo, DrakX\n"
+"prenderà la prima parola che hai inserito nel campo di testo e la copierà\n"
"alla voce \"%s\". Questo è il nome che l'utente dovrà usare per accedere al\n"
-"sistema, ma potete cambiarlo. Poi digitate una password per questo utente.\n"
-"La password di un utente non privilegiato dal punto di vista della\n"
-"sicurezza non è cruciale come quella di \"root\", ovviamente, ma non c'è\n"
-"motivo di essere frettolosi: dopo tutto, si tratta dei vostri file.\n"
-"\n"
-"Se cliccate su \"%s\", potrete poi aggiungerne un altro, e altri ancora, a\n"
-"vostra discrezione. Aggiungete un utente per ciascuno dei vostri amici,\n"
-"oppure per vostro padre e vostro fratello, ad esempio. Dopo aver aggiunto\n"
-"tutti gli utenti che volete, selezionate \"%s\".\n"
-"\n"
-"Cliccando sul pulsante \"%s\" potrete cambiare la \"shell\" per\n"
+"sistema, ma puoi modificarlo. Poi digita una password per questo utente.\n"
+"Ovviamente, dal punto di vista della sicurezza, la password di un utente\n"
+"non privilegiato non è cruciale come quella di \"root\", ma non c'è motivo\n"
+"di essere frettolosi: dopo tutto, si tratta della sicurezza dei tuoi file.\n"
+"\n"
+"Se clicchi su \"%s\", potrai poi aggiungere un altro utente, e altri "
+"ancora,\n"
+"a tua discrezione. Aggiungi un utente per ciascuno dei tuoi amici, oppure\n"
+"per tuo padre e tuo fratello, e così via. Dopo aver aggiunto\n"
+"tutti gli utenti che vuoi, seleziona \"%s\".\n"
+"\n"
+"Cliccando sul pulsante \"%s\" potrai cambiare la \"shell\" per\n"
"quell'utente (quella predefinita è bash).\n"
"\n"
-"Quando avrete finito di aggiungere utenti al sistema, vi verrà proposto di\n"
+"Quando avrai finito di aggiungere utenti al sistema, ti verrà proposto di\n"
"sceglierne uno per effettuare un login automatico ogni volta che il\n"
-"computer ha terminato la fase di boot. Se questa caratteristica vi\n"
-"interessa (e non tenete particolarmente alla sicurezza locale), scegliete\n"
-"l'utente desiderato e l'ambiente grafico che preferite, poi cliccate su\n"
-"\"%s\". Se la cosa non vi interessa, rimuovete il segno di spunta dalla\n"
+"computer ha terminato la fase di boot. Se questa caratteristica ti\n"
+"interessa (e non tieni particolarmente alla sicurezza locale), scegli\n"
+"l'utente desiderato e l'ambiente grafico che preferisci, poi clicca su\n"
+"\"%s\". Se la cosa non ti interessa, rimuovi il segno di spunta dalla\n"
"casella \"%s\"."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandrivalinux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandrivalinux system. Your current partitioning\n"
-"scheme and user data won't be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandrivalinux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandrivalinux version \"8.1\" is not recommended."
-msgstr ""
-"Questo passo viene eseguito soltanto se sulla vostra macchina viene trovata\n"
-"una partizione GNU/Linux preesistente.\n"
-"\n"
-"A questo punto DrakX ha bisogno di sapere se intendete effettuare una nuova\n"
-"installazione o un aggiornamento di un sistema Mandrivalinux esistente:\n"
-"\n"
-" * \"%s\": nella maggior parte dei casi cancella completamente il vecchio\n"
-"sistema. Tuttavia, in base allo schema di partizionamento usato, potete\n"
-"evitare di scrivere sui vostri dati attuali (in particolare le directory\n"
-"\"home\"). Dovreste usare questa opzione se volete modificare le partizioni\n"
-"dei vostri dischi o cambiarne i filesystem.\n"
-"\n"
-" * \"%s\": questo tipo di installazione vi permette di effettuare un\n"
-"semplice aggiornamento dei pacchetti già installati sul vostro sistema\n"
-"Mandrivalinux. Tutte le partizioni attuali del disco rigido vengono\n"
-"conservate, come pure le configurazioni e i dati individuali degli utenti.\n"
-"La maggior parte degli altri passi relativi alla configurazione restano\n"
-"disponibili, come per una installazione normale.\n"
-"\n"
-"L'opzione \"Aggiornamento\" non dovrebbe comportare difficoltà per sistemi\n"
-"Mandrivalinux a partire dalla versione \"8.1\", mentre non è consigliabile\n"
-"utilizzarla per aggiornare versioni di Mandrivalinux precedenti la \"8.1\"."
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Vuoi sfruttare questa possibilità?"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:57
+#, c-format
msgid ""
-"By the time you install Mandrivalinux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-"È molto probabile che, al momento in cui installate Mandrivalinux, alcuni\n"
-"pacchetti siano stati aggiornati rispetto alla versione iniziale;\n"
-"potrebbero essere stati corretti degli errori, o risolti eventuali problemi\n"
-"relativi alla sicurezza. Per permettervi di beneficiare di questi\n"
-"aggiornamenti vi verrà proposto di scaricare la nuova versione dei\n"
-"pacchetti usando Internet. Scegliete \"%s\" se disponete di una connessione\n"
-"a Internet funzionante, oppure \"%s\" se preferite installare i pacchetti\n"
-"aggiornati in un secondo momento.\n"
-"\n"
-"Se scegliete \"%s\" comparirà un elenco di siti da cui poter scaricare i\n"
-"pacchetti aggiornati; dovreste scegliere il sito a voi più vicino.\n"
-"Comparirà quindi un elenco gerarchico grazie al quale potrete selezionare i\n"
-"pacchetti da aggiornare: controllate le vostre scelte e cliccate su \"%s\"\n"
-"per scaricare e installare i pacchetti selezionati, o su \"%s\" per\n"
-"annullare l'operazione."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandrivalinux operating system.\n"
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
"\"sd\" if it is a SCSI hard drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard drives:\n"
"\n"
" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
@@ -334,224 +154,72 @@ msgid ""
" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
+"\"second lowest SCSI ID\", etc."
msgstr ""
-"Sul vostro disco rigido è stata individuata più di una partizione\n"
-"Microsoft. Scegliete quella che deve essere ridimensionata in modo da poter\n"
-"installare il vostro nuovo sistema operativo Mandrivalinux.\n"
+"In alto puoi vedere l'elenco delle partizioni Linux individuate sul\n"
+"tuo disco rigido. Puoi attenerti alle scelte fatte dall'assistente,\n"
+"vanno bene per la maggior parte delle installazioni. Se fai dei\n"
+"cambiamenti, ricorda che devi definire per lo meno una partizione root\n"
+"(''radice'') (\"/\"). Non sceglierla troppo piccola, altrimenti non sarai\n"
+"in grado di installare parte del software. Se poi vuoi conservare i\n"
+"tuoi dati su una partizione separata, dovrai assegnare una partizione\n"
+"anche a \"/home\" (ciò è possibile soltanto se hai a disposizione più\n"
+"partizioni Linux).\n"
"\n"
-"Ogni partizione è elencata in questo modo: \"nome Linux\", \"nome Windows\"\n"
-"\"Dimensione\".\n"
+"Ogni partizione è elencata in base a queste caratteristiche: \"Nome\",\n"
+"\"Capacità\".\n"
"\n"
-"Il \"nome Linux\" è composto da: \"tipo di disco rigido\", \"numero del\n"
+"Il \"Nome\" è strutturato in: \"tipo di disco rigido\", \"numero del\n"
"disco\", \"numero della partizione\" (ad esempio, \"hda1\").\n"
"\n"
-"Il \"tipo di disco rigido\" è \"hd\" se il disco è di tipo IDE, e \"sd\"\n"
-"se, invece, è un disco SCSI.\n"
+"Il \"tipo di disco rigido\" è \"hd\" se il tuo disco è di tipo IDE, e\n"
+"\"sd\" se, invece, è un disco SCSI.\n"
"\n"
"Il \"numero del disco\" è sempre una lettera che segue \"hd\" o \"sd\". Per\n"
"i dischi IDE:\n"
"\n"
-" * \"a\" significa \"disco master sul canale IDE primario\";\n"
-"\n"
-" * \"b\" significa \"disco slave sul canale IDE primario\";\n"
-"\n"
-" * \"c\" significa \"disco master sul canale IDE secondario\";\n"
-"\n"
-" * \"d\" significa \"disco slave sul canale IDE secondario\".\n"
-"\n"
-"Per i dischi di tipo SCSI, invece, una \"a\" rappresenta \"l'ID SCSI più\n"
-"basso\", una \"b\" indica \"il secondo ID SCSI a partire dal basso\", etc.\n"
-"\n"
-"Il \"nome Windows\" è la lettera con cui viene indicato il vostro disco\n"
-"rigido su Windows (il primo disco o partizione è denominato \"C:\")."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrivalinux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"X (abbreviazione per \"X Window System\") è il cuore dell'interfaccia\n"
-"grafica di GNU/Linux, sul quale sono basati tutti gli ambienti grafici\n"
-"inclusi in Mandrivalinux (KDE, GNOME, AfterStep, WindowMaker, etc.).\n"
-"\n"
-"Vi verrà mostrata una lista dei parametri da configurare in modo da avere\n"
-"la miglior visualizzazione possibile:\n"
-"\n"
-"Scheda grafica\n"
-"\n"
-" Il programma di installazione provvederà a identificare e configurare\n"
-"automaticamente la scheda grafica installata sul computer. In caso\n"
-"contrario, potete scegliere da questo elenco la scheda che è effettivamente\n"
-"installata.\n"
-"\n"
-" Se per la vostra scheda sono disponibili più server grafici, con e senza\n"
-"accelerazione 3D, vi verrà chiesto di scegliere il server che meglio si\n"
-"adatta alle vostre necessità.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Il programma di installazione in genere identifica e configura\n"
-"automaticamente il monitor connesso al computer. Se così non fosse, anche\n"
-"in questo caso potete scegliere da una lista il tipo di monitor in vostro\n"
-"possesso.\n"
-"\n"
-"\n"
-"\n"
-"Risoluzione\n"
-"\n"
-" Qui potete scegliere risoluzione e profondità di colore tra quelle\n"
-"disponibili per il vostro hardware. Scegliete le impostazioni che meglio si\n"
-"adattano alle vostre necessità (potrete cambiare la configurazione anche\n"
-"dopo l'installazione, comunque). All'interno della figura del monitor è\n"
-"rappresentato un esempio della configurazione selezionata.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Questa voce potrebbe non comparire, con alcuni tipi di hardware.\n"
-"\n"
-" Il sistema tenterà di aprire uno schermo grafico alla risoluzione\n"
-"specificata. Se potete vedere il messaggio durante il test e rispondete\n"
-"\"%s\", allora DrakX passerà alla fase successiva. Se non potete vedere il\n"
-"messaggio, significa che la configurazione ottenuta con l'identificazione\n"
-"automatica non è corretta in qualche punto: il test terminerà\n"
-"automaticamente dopo 12 secondi, e vi riporterà al menu. Cambiate le\n"
-"impostazioni fino a ottenere una visualizzazione grafica corretta.\n"
+" * \"a\" significa \"disco rigido master sul controller IDE primario\";\n"
"\n"
+" * \"b\" significa \"disco rigido slave sul controller IDE primario\";\n"
"\n"
+" * \"c\" significa \"disco rigido master sul controller IDE secondario\";\n"
"\n"
-"Opzioni\n"
+" * \"d\" significa \"disco rigido slave sul controller IDE secondario\".\n"
"\n"
-" Qui potete scegliere se avviare automaticamente l'interfaccia grafica\n"
-"subito dopo l'avvio del sistema. Ovviamente è opportuno rispondere \"%s\"\n"
-"nel caso in cui la macchina debba funzionare da server, oppure se non siete\n"
-"riusciti a configurare correttamente il server grafico."
+"Per i dischi rigidi di tipo SCSI, invece, una \"a\" significa \"ID SCSI più\n"
+"basso\", una \"b\" significa \"ID SCSI immediatamente successivo ad a\",\n"
+"etc."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:88
+#, c-format
msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandrivalinux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, don't queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you don't have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you don't like your printing\n"
-"system you may change it by running PrinterDrake from the Mandrivalinux\n"
-"Control Center and clicking on the \"%s\" button."
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
msgstr ""
-"Qui potrete scegliere il sistema di stampa da usare con il vostro computer;\n"
-"altri sistemi operativi ve ne offrono uno, ma Mandrivalinux ve ne offre ben\n"
-"due. Ciascuno di essi è adatto a un particolare tipo di configurazione.\n"
-"\n"
-" * \"%s\" -- che sta per \"\"print, don't queue\"\" (\"stampa, non mettere\n"
-"in coda\"), è la scelta migliore se avete una stampante collegata\n"
-"direttamente al computer, volete essere in grado di uscire rapidamente da\n"
-"eventuali situazioni di stallo della stampante, e non disponete di\n"
-"stampanti connesse via rete (\"%s\" può gestire solo configurazioni di rete\n"
-"molto semplici ed è comunque piuttosto lento in caso di stampa in rete).\n"
-"Scegliete \"pdq\" se questa è la vostra prima esperienza con GNU/Linux.\n"
-"\n"
-" * \"%s\" - \"Common Unix Printing System\" (\"Sistema di stampa unificato\n"
-"per Unix\"), offre risultati eccellenti per stampanti sia locali, sia che\n"
-"si trovino sull'altra faccia del pianeta. È semplice da configurare e può\n"
-"agire come server o client per il vecchio sistema di stampa \"lpd\", quindi\n"
-"è compatibile con i sistemi operativi più vecchi che potrebbero avere\n"
-"ancora bisogno di servizi di stampa. Nonostante le grandi potenzialità, la\n"
-"sua configurazione di base è semplice quasi quanto quella di \"pdq\". Se\n"
-"avete bisogno di emulare un server \"lpd\" ricordatevi di attivare il\n"
-"demone \"cups-lpd\". \"%s\" dispone di interfacce grafiche per la stampa,\n"
-"per la configurazione delle opzioni della stampante e per la sua gestione.\n"
-"\n"
-"Se fate una scelta adesso e successivamente cambiate idea, potrete sempre\n"
-"scegliere un diverso sistema di stampa avviando PrinterDrake dal\n"
-"Mandrivalinux Control Center e cliccando sul pulsante \"%s\"."
+"La distribuzione Mandriva Linux è suddivisa su più CD-ROM. Se uno dei\n"
+"pacchetti selezionati si trova su un CD-ROM diverso da quello attualmente\n"
+"inserito nel lettore, DrakX provvederà a espellerlo e a chiedervi di\n"
+"inserire quello corretto. Se non avete a portata di mano il CD richiesto,\n"
+"basta cliccare su \"%s\", e i pacchetti corrispondenti non verranno\n"
+"installati."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:95
+#, c-format
msgid ""
"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandrivalinux, and to make it\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
"simpler to manage, they have been placed into groups of similar\n"
"applications.\n"
"\n"
-"Mandrivalinux sorts package groups in four categories. You can mix and\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
"match applications from the various categories, so a ``Workstation''\n"
"installation can still have applications from the ``Server'' category\n"
"installed.\n"
@@ -604,7 +272,7 @@ msgid ""
msgstr ""
"Adesso è il momento di indicare i programmi che volete siano installati sul\n"
"vostro sistema. Ci sono migliaia di pacchetti disponibili per\n"
-"Mandrivalinux, e sono stati suddivisi in gruppi in base al loro campo di\n"
+"Mandriva Linux, e sono stati suddivisi in gruppi in base al loro campo di\n"
"utilizzo, in modo da facilitarne la gestione.\n"
"\n"
"I gruppi sono a loro volta suddivisi in quattro categorie. Potete\n"
@@ -662,123 +330,25 @@ msgstr ""
"un sistema Linux funzionante, avente come unica interfaccia la riga di\n"
"comando. Questo tipo di installazione occupa in totale circa 65 megabyte."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"The Mandrivalinux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-"La distribuzione Mandrivalinux è suddivisa su più CD-ROM. Se uno dei\n"
-"pacchetti selezionati si trova su un CD-ROM diverso da quello attualmente\n"
-"inserito nel lettore, DrakX provvederà a espellerlo e a chiedervi di\n"
-"inserire quello corretto. Se non avete a portata di mano il CD richiesto,\n"
-"basta cliccare su \"%s\", e i pacchetti corrispondenti non verranno\n"
-"installati."
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Aggiornamento"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: don't make the password too long or too complicated because you\n"
-"must be able to remember it!\n"
-"\n"
-"The password won't be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you don't know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-"Questo è il punto più critico per la sicurezza del vostro sistema\n"
-"GNU/Linux: state per decidere la password di \"root\". \"root\" è\n"
-"l'amministratore del sistema, ed è l'unico utente autorizzato a compiere\n"
-"aggiornamenti, aggiungere altri utenti, cambiare la configurazione globale\n"
-"del sistema, e così via. In breve, \"root\" può fare tutto ciò che vuole!\n"
-"Questo è il motivo per cui dovete scegliere una password che sia difficile\n"
-"da indovinare, e se ne avete scelta una troppo facile DrakX vi avvertirà.\n"
-"Potete anche scegliere di non digitare alcuna password, ma noi vi\n"
-"consigliamo caldamente di farlo, poiché GNU/Linux è vulnerabile a errori da\n"
-"parte dell'utente esattamente come qualsiasi altro sistema operativo.\n"
-"Quindi è molto importante che sia difficile assumere il ruolo di \"root\",\n"
-"potendo quest'ultimo scavalcare ogni limitazione e, magari\n"
-"involontariamente, cancellare tutti i dati presenti sulle partizioni\n"
-"accedendovi in maniera impropria.\n"
-"\n"
-"La password ideale è costituita da un insieme di almeno 8 caratteri\n"
-"alfanumerici. Non appuntate mai da nessuna parte la password di \"root\",\n"
-"renderebbe troppo facile l'accesso al sistema da parte di estranei.\n"
-"\n"
-"Tuttavia, non scegliete una password troppo lunga o complicata, perché\n"
-"dovete essere in grado di ricordarla senza troppo sforzo.\n"
-"\n"
-"La password non verrà mostrata mentre la digitate; quindi, per ridurre il\n"
-"rischio di un errore di battitura, è necessario che venga inserita due\n"
-"volte. Se per caso però commettete lo stesso errore entrambe le volte,\n"
-"questa password \"sbagliata\" sarà quella che verrà richiesta la prima\n"
-"volta che vi connetterete al sistema come \"root\".\n"
-"\n"
-"Se volete che l'accesso al vostro computer sia controllato da un server di\n"
-"autenticazione, cliccate sul pulsante \"%s\".\n"
-"\n"
-"Se la vostra rete utilizza per l'autenticazione i servizi LDAP, NIS, o il\n"
-"PDC di un dominio Windows, selezionate il pulsante \"%s\". Se non\n"
-"siete sicuri sulla scelta da fare, chiedete al vostro amministratore di\n"
-"rete.\n"
-"\n"
-"Se per qualche motivo per voi fosse un problema dovervi ricordare una\n"
-"password, se il vostro computer non sarà mai collegato a Internet, e se\n"
-"avete piena fiducia nelle persone che lo useranno, allora potete ricorrere\n"
-"all'opzione \"%s\"."
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Con la documentazione essenziale"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-"Cliccate sul pulsante \"%s\" se volete cancellare tutte le partizioni e i\n"
-"dati presenti sul disco rigido. Pensate bene a ciò che state facendo,\n"
-"perché dopo aver cliccato su \"%s\" non potrete più recuperare nulla di\n"
-"quello che avete cancellato, compresi eventuali dati di Windows.\n"
-"\n"
-"Cliccate su \"%s\" per annullare questa operazione senza che vada perso\n"
-"niente dei dati o delle partizioni che sono sul disco."
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Installazione veramente minimale"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:152
+#, c-format
msgid ""
"If you choose to install packages individually, the installer will present\n"
"a tree containing all packages classified by groups and subgroups. While\n"
@@ -791,11 +361,12 @@ msgid ""
"!! If a server package has been selected, either because you specifically\n"
"chose the individual package or because it was part of a group of packages,\n"
"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandrivalinux will automatically start any installed\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
"services at boot time. Even if they are safe and have no known issues at\n"
"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandrivalinux was\n"
-"finalized. If you don't know what a particular service is supposed to do or\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
"the listed services and they will be started automatically at boot time. !!\n"
"\n"
@@ -825,11 +396,11 @@ msgstr ""
"!! Se avete selezionato un pacchetto che offre un servizio come server\n"
"(intenzionalmente, oppure perché faceva parte di un gruppo), vi verrà\n"
"chiesta conferma per la sua effettiva installazione. Come opzione\n"
-"predefinita, in Mandrivalinux tutti i servizi installati vengono attivati\n"
+"predefinita, in Mandriva Linux tutti i servizi installati vengono attivati\n"
"automaticamente all'avvio. Sebbene si tratti di servizi sicuri ed esenti da\n"
"problemi noti al momento del rilascio della distribuzione, non è escluso\n"
"che possano essere scoperte falle di sicurezza al loro interno dopo la\n"
-"pubblicazione di questa versione di Mandrivalinux. Quindi, se non avete\n"
+"pubblicazione di questa versione di Mandriva Linux. Quindi, se non avete\n"
"idea di cosa faccia un particolare servizio o del perché debba essere\n"
"installato, cliccate su \"%s\". Scegliendo \"%s\", invece, i servizi\n"
"elencati saranno installati e attivati in automatico all'avvio del sistema.\n"
@@ -852,199 +423,15 @@ msgstr ""
"installazione. Leggete il relativo suggerimento nell'ultimo passo per\n"
"sapere come creare questo dischetto."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can't determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" won't install any boot loader. Use this option only if you\n"
-"know what you're doing."
-msgstr ""
-"Un bootloader è un piccolo programma che il computer esegue automaticamente\n"
-"nella fase di avvio. Ha il compito di far partire tutto il sistema.\n"
-"L'installazione del bootloader è, in genere, del tutto automatica. DrakX,\n"
-"infatti, analizza il settore di avvio del disco, e si comporta in base a\n"
-"quello che vi trova:\n"
-"\n"
-" * se trova un settore di avvio di Windows, lo rimpiazza con uno di GRUB o\n"
-"LILO, in modo da permettervi di avviare GNU/Linux o un qualsiasi altro\n"
-"sistema operativo installato sul computer;\n"
-"\n"
-" * se trova un settore di avvio di GRUB o LILO, lo sostituisce con uno\n"
-"nuovo.\n"
-"\n"
-"Se non è in grado di fare la scelta autonomamente, DrakX vi mostrerà alcune\n"
-"opzioni per l'installazione del bootloader. La soluzione più comune è\n"
-"quella di installarlo nel \"%s\". Selezionando \"%s\" non sarà installato\n"
-"alcun bootloader, ma è una possibilità da usare solo se siete veramente\n"
-"consapevoli di ciò che essa comporta."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"Ora DrakX rileverà eventuali periferiche IDE presenti sul computer, e\n"
-"controllerà anche l'eventuale presenza di schede SCSI PCI. Se viene\n"
-"individuata una scheda SCSI, DrakX installerà automaticamente il driver\n"
-"appropriato.\n"
-"\n"
-"Dato che il riconoscimento automatico non è un'operazione infallibile,\n"
-"DrakX potrebbe non riuscire a individuare i vostri dischi rigidi. In tal\n"
-"caso dovrete inserire manualmente i dati relativi al vostro hardware.\n"
-"\n"
-"Nel caso siate costretti a specificare manualmente il tipo di scheda SCSI\n"
-"PCI in vostro possesso, DrakX vi chiederà se desiderate impostare alcune\n"
-"opzioni al riguardo. Vi consigliamo di lasciare che DrakX esamini\n"
-"l'hardware per stabilire i parametri che dovranno essere usati per\n"
-"l'inizializzazione della vostra scheda; questo metodo in genere funziona\n"
-"senza alcun problema.\n"
-"\n"
-"Se DrakX non dovesse riuscire a stabilire automaticamente i parametri da\n"
-"passare alla scheda, dovrete configurare manualmente il driver."
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Dipendenze automatiche"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandrivalinux's use of UTF-8 will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-"Il primo passo è scegliere la lingua che preferite usare.\n"
-"\n"
-"La lingua che sceglierete a questo punto sarà utilizzata per la procedura\n"
-"di installazione, per la documentazione e per il sistema in generale. Per\n"
-"prima cosa selezionate l'area geografica in cui vivete, e poi la vostra\n"
-"lingua.\n"
-"\n"
-"Cliccando sul pulsante \"%s\" potrete scegliere altre lingue da installare\n"
-"sul computer. La selezione di altre lingue comporta l'installazione dei\n"
-"file relativi alla documentazione e alle applicazioni per ciascuna di esse.\n"
-"Ad esempio, se il vostro computer dovrà essere usato anche da persone di\n"
-"madre lingua spagnola, potete scegliere l'italiano come lingua predefinita\n"
-"nella struttura ad albero e, nella sezione \"Avanzato\", selezionare anche\n"
-"\"%s\".\n"
-"\n"
-"Riguardo al supporto UTF-8 (Unicode): Unicode è un nuovo standard per la\n"
-"codifica dei caratteri, progettato per supportare tutte le lingue\n"
-"esistenti. Il suo supporto su GNU/Linux è ancora in fase di sviluppo, e per\n"
-"questo motivo la sua attivazione su Mandrivalinux dipenderà dalle scelte\n"
-"effettuate dall'utente:\n"
-"\n"
-" * se scegliete lingue fortemente legate alle vecchie codifiche (lingue del\n"
-"gruppo latin1, russo, giapponese, cinese, coreano, tailandese, greco, turco\n"
-"e la maggior parte delle lingue iso-8859-2), come impostazione predefinita\n"
-"sarà usata la vecchia codifica;\n"
-"\n"
-" * per le altre lingue sarà usato Unicode come impostazione predefinita;\n"
-"\n"
-" * se vengono installate due o più lingue, e le lingue scelte non\n"
-"utilizzano la stessa codifica, allora per l'intero sistema sarà usato\n"
-"Unicode;\n"
-"\n"
-" * infine, l'uso di Unicode per l'intero sistema può anche essere imposto\n"
-"dall'utente tramite l'opzione \"%s\", indipendentemente dalle lingue\n"
-"selezionate.\n"
-"\n"
-"Va sottolineato che non siete limitati alla scelta di una sola lingua\n"
-"supplementare: potete sceglierne quante volete, o persino installarle tutte\n"
-"grazie all'opzione \"%s\". La scelta del supporto per una particolare\n"
-"lingua implica l'installazione di traduzioni, caratteri, strumenti di\n"
-"controllo ortografico e tutto ciò che riguarda quella lingua.\n"
-"\n"
-"Per passare da una lingua all'altra fra quelle installate potete utilizzare\n"
-"il comando \"localedrake\": usandolo come \"root\" cambierete la\n"
-"lingua utilizzata in tutto il sistema, mentre come utente normale\n"
-"cambierete solamente la lingua usata da quell'utente."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card isn't the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-"\"%s\": se sul vostro sistema è stata individuata una scheda audio, verrà\n"
-"mostrata qui. Se notate che la scheda audio mostrata non è quella\n"
-"effettivamente presente sul vostro sistema, potete cliccare sul pulsante e\n"
-"scegliere un driver diverso."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrivalinux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Scegliete il disco rigido che volete cancellare per poter creare la nuova\n"
-"partizione su cui installare Mandrivalinux. Attenzione, tutti i dati\n"
-"presenti sul disco selezionato andranno perduti e non potranno più essere\n"
-"recuperati!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:186
+#, c-format
msgid ""
"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
@@ -1058,331 +445,15 @@ msgstr ""
"utilizzata nel corso dell'installazione."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"Opzioni\n"
-"\n"
-" Qui potete scegliere se avviare automaticamente l'interfaccia grafica\n"
-"subito dopo l'avvio del sistema. Ovviamente è opportuno rispondere \"%s\"\n"
-"nel caso in cui la macchina debba funzionare da server, oppure se non siete\n"
-"riusciti a configurare correttamente il server grafico."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Scegliete la porta appropriata. La porta \"COM1\" su Windows, ad esempio, è\n"
-"chiamata \"ttyS0\" su GNU/Linux."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
-"\n"
-"If you don't know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandrivalinux\n"
-"Control Center.\n"
-"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-"A questo punto, DrakX vi permette di scegliere il livello di sicurezza da\n"
-"impostare sul sistema. Come regola generale, quanto più la macchina sarà\n"
-"esposta a Internet e quanto più sono importanti i dati che dovrà contenere,\n"
-"tanto più alto dovrebbe essere il livello di sicurezza. Tenete presente,\n"
-"tuttavia, che a un livello di sicurezza più alto corrisponde in genere una\n"
-"minore facilità d'uso.\n"
-"\n"
-"Se non sapete quale scelta fare, utilizzate l'impostazione predefinita.\n"
-"Potrete comunque cambiare in seguito il livello di sicurezza usando\n"
-"draksec, uno strumento del Mandrivalinux Control Center.\n"
-"\n"
-"Nel campo \"%s\" inserite l'indirizzo email dell'utente che sarà\n"
-"responsabile per la sicurezza: tutti i messaggi relativi alla sicurezza\n"
-"verranno inviati a lui."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"isn't in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card isn't the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it isn't\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that doesn't suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandrivalinux Control Center after the installation has finished to benefit\n"
-"from full in-line help.\n"
-"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandrivalinux Control Center.\n"
-"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-"A questo punto DrakX vi mostrerà un riassunto di varie informazioni che ha\n"
-"raccolto riguardo il vostro sistema. In base all'hardware installato,\n"
-"potrebbero essere visualizzate tutte le voci che descriveremo tra poco, o\n"
-"solo alcune di esse. Ogni voce è rappresentata dall'elemento che può essere\n"
-"configurato, con accanto una breve sintesi della configurazione attuale;\n"
-"cliccate sul pulsante \"%s\" corrispondente per cambiarla.\n"
-"\n"
-" * \"%s\": controllate l'attuale impostazione della tastiera, e cambiatela\n"
-"se necessario.\n"
-"\n"
-" * \"%s\": controllate la selezione attuale della nazione. Se non\n"
-"corrisponde a quella in cui vivete, cliccate sul pulsante \"%s\" e indicate\n"
-"quella corretta. Se la vostra nazione non è nella prima lista che verrà\n"
-"mostrata, cliccate su \"%s\" per avere la lista completa.\n"
-"\n"
-" * \"%s\": il fuso orario è inizialmente dedotto in automatico dalla\n"
-"nazione che avete scelto. Anche in questo caso, se l'impostazione non fosse\n"
-"corretta potete usare il pulsante \"%s\".\n"
-"\n"
-" * \"%s\": controllate la configurazione attuale del mouse, e cliccate sul\n"
-"pulsante per cambiarla, se necessario.\n"
-"\n"
-" * \"%s\": cliccando sul pulsante \"%s\" sarà avviato l'assistente di\n"
-"configurazione della stampante. Consultate il relativo capitolo della\n"
-"\"Guida introduttiva\" per avere maggiori informazioni su come configurare\n"
-"una nuova stampante. L'interfaccia descritta in tale sede è simile a quella\n"
-"utilizzata nel corso dell'installazione.\n"
-"\n"
-" * \"%s\": se sul vostro sistema è stata individuata una scheda audio,\n"
-"verrà mostrata qui. Se notate che la scheda audio mostrata non è quella\n"
-"effettivamente presente sul vostro sistema, potete cliccare sul pulsante e\n"
-"scegliere un driver diverso.\n"
-"\n"
-" * \"%s\": se sul vostro sistema è stata individuata una scheda TV, verrà\n"
-"mostrata qui. Se disponete di una scheda TV che non è stata individuata,\n"
-"cliccate sul pulsante per cercare di configurarla a mano.\n"
-"\n"
-" * \"%s\": se avete l'impressione che la configurazione non sia corretta,\n"
-"potete cliccare sul pulsante \"%s\" per cambiare i parametri relativi alla\n"
-"scheda.\n"
-"\n"
-" * \"%s\": come opzione predefinita, DrakX configura l'interfaccia grafica\n"
-"impostando una risoluzione di \"800x600\" o \"1024x768\". Se questa scelta\n"
-"non vi soddisfa, cliccate su \"%s\" per riconfigurare la vostra interfaccia\n"
-"grafica.\n"
-"\n"
-" * \"%s\": se desiderate configurare l'accesso a Internet o a una rete\n"
-"locale potete farlo adesso. Consultate la documentazione stampata, oppure\n"
-"utilizzate il Mandrivalinux Control Center una volta terminata\n"
-"l'installazione per avere a vostra disposizione un aiuto in linea completo.\n"
-"\n"
-" * \"%s\": vi permette di configurare gli indirizzi di proxy HTTP e FTP,\n"
-"nel caso la macchina sulla quale state effettuando l'installazione dipenda\n"
-"da un server proxy.\n"
-"\n"
-" * \"%s\": questa voce vi permette di modificare il livello di sicurezza\n"
-"configurato in un passo precedente ().\n"
-"\n"
-" * \"%s\": se avete in mente di connettere il vostro computer a Internet, è\n"
-"una buona idea proteggerlo contro eventuali intrusioni configurando un\n"
-"firewall. Consultate la relativa sezione della \"Guida introduttiva\" per\n"
-"ulteriori informazioni sulla configurazione del firewall.\n"
-"\n"
-" * \"%s\": cliccate su questo pulsante per cambiare la configurazione del\n"
-"bootloader. Questa opzione dovrebbe essere utilizzata solo dagli utenti più\n"
-"esperti. Consultate la documentazione stampata o l'aiuto in linea del\n"
-"Mandrivalinux Control Center riguardo la configurazione del bootloader.\n"
-"\n"
-" * \"%s\": qui potrete stabilire in dettaglio quali servizi saranno\n"
-"attivati sul vostro sistema. Se pensate di utilizzare il computer come\n"
-"server è senz'altro una buona idea controllare queste impostazioni."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-"Se per la vostra scheda sono disponibili più server grafici, con e senza\n"
-"accelerazione 3D, vi verrà chiesto di scegliere il server che meglio si\n"
-"adatta alle vostre necessità."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
-"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-"In genere DrakX individua automaticamente il numero di pulsanti presenti\n"
-"sul vostro mouse; in caso contrario, supporrà che si tratti di un mouse a\n"
-"due tasti, e lo imposterà in modo da simulare il terzo tasto. Con un mouse\n"
-"a due tasti è infatti possibile simulare la pressione del terzo tasto\n"
-"premendo contemporaneamente il tasto sinistro e quello destro. DrakX,\n"
-"inoltre, distingue automaticamente tra mouse con interfaccia PS/2, seriale\n"
-"o USB.\n"
-"\n"
-"Se avete un mouse a tre tasti ma senza rotellina, potete scegliere un mouse\n"
-"\"%s\": DrakX, in tal caso, configurerà il mouse in modo che possiate\n"
-"simulare la rotellina, premendo il tasto centrale e spostando il mouse\n"
-"verso l'alto o verso il basso.\n"
-"\n"
-"Se per qualche ragione volete specificare un diverso tipo di mouse,\n"
-"scegliete il modello desiderato dall'elenco che vi viene proposto.\n"
-"\n"
-"Potete selezionare la voce \"%s\" per scegliere un tipo di mouse\n"
-"\"generico\" che vi permetterà di utilizzare quasi tutti i mouse esistenti.\n"
-"\n"
-"Se scegliete un mouse diverso dal tipo suggerito, vi verrà mostrata una\n"
-"finestra dove potrete provarlo. Provate sia i pulsanti, sia l'eventuale\n"
-"rotellina, per controllare che la configurazione sia corretta e che il\n"
-"mouse funzioni a dovere. Se il mouse non dovesse funzionare correttamente,\n"
-"premete la barra spaziatrice o il tasto [Invio] per uscire dal test e\n"
-"tornare all'elenco dei mouse.\n"
-"\n"
-"Talvolta i mouse con rotellina centrale potrebbero non essere individuati\n"
-"automaticamente; in tal caso, dovrete selezionare personalmente dall'elenco\n"
-"il modello giusto. Assicuratevi di sceglierne uno corrispondente alla porta\n"
-"alla quale è collegato il vostro mouse. Dopo aver selezionato un modello\n"
-"premete il pulsante \"%s\", e comparirà l'immagine di un mouse. Muovete la\n"
-"rotellina per controllare che funzioni a dovere: mentre la muovete, vedrete\n"
-"muoversi quella sullo schermo; poi provate i pulsanti e controllate che il\n"
-"puntatore si muova correttamente sullo schermo quando muovete il mouse."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-"Scheda grafica\n"
-"\n"
-" Il programma di installazione provvederà a identificare e configurare\n"
-"automaticamente la scheda grafica installata sul computer. In caso\n"
-"contrario, potete scegliere da questo elenco la scheda che è effettivamente\n"
-"installata.\n"
-"\n"
-" Se per la vostra scheda sono disponibili più server grafici, con e senza\n"
-"accelerazione 3D, vi verrà chiesto di scegliere il server che meglio si\n"
-"adatta alle vostre necessità."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandrivalinux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-"Prima di proseguire dovreste leggere con attenzione le condizioni d'uso che\n"
-"riguardano l'intera distribuzione Mandrivalinux. Se siete d'accordo con\n"
-"tutti i termini della licenza cliccate sul pulsante \"%s\". In caso\n"
-"contrario, semplicemente spegnere il computer per interrompere\n"
-"l'installazione."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:192
+#, c-format
msgid ""
"This dialog is used to select which services you wish to start at boot\n"
"time.\n"
"\n"
"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which aren't needed at boot\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
"time.\n"
"\n"
"A short explanatory text will be displayed about a service when it is\n"
@@ -1390,7 +461,8 @@ msgid ""
"it is safer to leave the default behavior.\n"
"\n"
"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably don't want to start any services which you don't need.\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
"Please remember that some services can be dangerous if they're enabled on a\n"
"server. In general, select only those services you really need. !!"
msgstr ""
@@ -1413,23 +485,9 @@ msgstr ""
"veramente bisogno. !!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
-msgstr ""
-"Monitor\n"
-"\n"
-" Il programma di installazione in genere identifica e configura\n"
-"automaticamente il monitor connesso al computer. Se così non fosse, anche\n"
-"in questo caso potete scegliere da una lista il tipo di monitor in vostro\n"
-"possesso."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:209
+#, c-format
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
"local time according to the time zone you selected. If the clock on your\n"
@@ -1460,177 +518,375 @@ msgstr ""
"essere a sua volta usato anche da altre macchine che si trovino sulla\n"
"stessa rete locale."
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Sincronizzazione automatica dell'orario"
+
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:223
+#, c-format
msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
+"Graphic Card\n"
"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Scheda grafica\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
+" Il programma di installazione provvederà a identificare e configurare\n"
+"automaticamente la scheda grafica installata sul computer. In caso\n"
+"contrario, potete scegliere da questo elenco la scheda che è effettivamente\n"
+"installata.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
+" Se per la vostra scheda sono disponibili più server grafici, con e senza\n"
+"accelerazione 3D, vi verrà chiesto di scegliere il server che meglio si\n"
+"adatta alle vostre necessità."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"Graphic Card\n"
"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
msgstr ""
-"In alto potete vedere l'elenco delle partizioni Linux individuate sul\n"
-"vostro disco rigido. Potete attenervi alle scelte fatte dall'assistente,\n"
-"vanno bene per la maggior parte delle installazioni. Se fate dei\n"
-"cambiamenti, ricordate che dovete definire per lo meno una partizione root\n"
-"(\"radice\") (\"/\"). Non sceglietela troppo piccola, altrimenti non sarete\n"
-"in grado di installare parte del software. Se poi volete archiviare i\n"
-"vostri dati su una partizione separata, dovrete assegnare una partizione\n"
-"anche a \"/home\" (ciò è possibile soltanto se avete a disposizione più\n"
-"partizioni Linux).\n"
+"X (abbreviazione per \"X Window System\") è il cuore dell'interfaccia\n"
+"grafica di GNU/Linux, sul quale sono basati tutti gli ambienti grafici\n"
+"inclusi in Mandriva Linux (KDE, GNOME, AfterStep, WindowMaker, etc.).\n"
"\n"
-"Ogni partizione è elencata in base a queste caratteristiche: \"Nome\",\n"
-"\"Capacità\".\n"
+"Vi verrà mostrata una lista dei parametri da configurare in modo da avere\n"
+"la miglior visualizzazione possibile:\n"
"\n"
-"Il \"Nome\" è strutturato in: \"tipo di disco rigido\", \"numero del\n"
-"disco\", \"numero della partizione\" (ad esempio, \"hda1\").\n"
+"Scheda grafica\n"
"\n"
-"Il \"tipo di disco rigido\" è \"hd\" se il vostro disco è di tipo IDE, e\n"
-"\"sd\" se, invece, è un disco SCSI.\n"
+" Il programma di installazione provvederà a identificare e configurare\n"
+"automaticamente la scheda grafica installata sul computer. In caso\n"
+"contrario, potete scegliere da questo elenco la scheda che è effettivamente\n"
+"installata.\n"
"\n"
-"Il \"numero del disco\" è sempre una lettera che segue \"hd\" o \"sd\". Per\n"
-"i dischi IDE:\n"
+" Se per la vostra scheda sono disponibili più server grafici, con e senza\n"
+"accelerazione 3D, vi verrà chiesto di scegliere il server che meglio si\n"
+"adatta alle vostre necessità.\n"
"\n"
-" * \"a\" significa \"disco rigido master sul controller IDE primario\";\n"
"\n"
-" * \"b\" significa \"disco rigido slave sul controller IDE primario\";\n"
"\n"
-" * \"c\" significa \"disco rigido master sul controller IDE secondario\";\n"
+"Monitor\n"
"\n"
-" * \"d\" significa \"disco rigido slave sul controller IDE secondario\".\n"
+" Il programma di installazione in genere identifica e configura\n"
+"automaticamente il monitor connesso al computer. Se così non fosse, anche\n"
+"in questo caso potete scegliere da una lista il tipo di monitor in vostro\n"
+"possesso.\n"
"\n"
-"Per i dischi rigidi di tipo SCSI, invece, una \"a\" significa \"ID SCSI più\n"
-"basso\", una \"b\" significa \"ID SCSI immediatamente successivo ad a\",\n"
-"etc."
+"\n"
+"\n"
+"Risoluzione\n"
+"\n"
+" Qui potete scegliere risoluzione e profondità di colore tra quelle\n"
+"disponibili per il vostro hardware. Scegliete le impostazioni che meglio si\n"
+"adattano alle vostre necessità (potrete cambiare la configurazione anche\n"
+"dopo l'installazione, comunque). All'interno della figura del monitor è\n"
+"rappresentato un esempio della configurazione selezionata.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Questa voce potrebbe non comparire, con alcuni tipi di hardware.\n"
+"\n"
+" Il sistema tenterà di aprire uno schermo grafico alla risoluzione\n"
+"specificata. Se potete vedere il messaggio durante il test e rispondete\n"
+"\"%s\", allora DrakX passerà alla fase successiva. Se non potete vedere il\n"
+"messaggio, significa che la configurazione ottenuta con l'identificazione\n"
+"automatica non è corretta in qualche punto: il test terminerà\n"
+"automaticamente dopo 12 secondi, e vi riporterà al menu. Cambiate le\n"
+"impostazioni fino a ottenere una visualizzazione grafica corretta.\n"
+"\n"
+"\n"
+"\n"
+"Opzioni\n"
+"\n"
+" Qui potete scegliere se avviare automaticamente l'interfaccia grafica\n"
+"subito dopo l'avvio del sistema. Ovviamente è opportuno rispondere \"%s\"\n"
+"nel caso in cui la macchina debba funzionare da server, oppure se non siete\n"
+"riusciti a configurare correttamente il server grafico."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+"\n"
+" Il programma di installazione di solito identifica e configura\n"
+"automaticamente il monitor connesso al tuo computer. Se fallisce,\n"
+"puoi scegliere da questa lista il tipo di monitor che hai effettivamente."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Risoluzione\n"
+"\n"
+" Qui puoi scegliere risoluzione e profondità di colore tra quelle\n"
+"disponibili per il tuo hardware. Scegli le impostazioni più adatte\n"
+"alle tue esigenze (potrai sempre cambiare la configurazione anche\n"
+"ad installazione finita). Sul monitor è visibile un'immagine di\n"
+"anteprima della configurazione selezionata."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:306
+#, c-format
msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country isn't in the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
msgstr ""
-"\"%s\": controllate la selezione attuale della nazione. Se non corrisponde\n"
-"a quella in cui vivete, cliccate sul pulsante \"%s\" e indicate quella\n"
-"corretta. Se la vostra nazione non è nella prima lista che verrà mostrata,\n"
-"cliccate su \"%s\" per avere la lista completa."
+"Se per la vostra scheda sono disponibili più server grafici, con e senza\n"
+"accelerazione 3D, vi verrà chiesto di scegliere il server che meglio si\n"
+"adatta alle vostre necessità."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:311
+#, c-format
msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
+"Options\n"
"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you don't have to reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Opzioni\n"
"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"won't be able to recover it.\n"
+" Qui potete scegliere se avviare automaticamente l'interfaccia grafica\n"
+"subito dopo l'avvio del sistema. Ovviamente è opportuno rispondere \"%s\"\n"
+"nel caso in cui la macchina debba funzionare da server, oppure se non siete\n"
+"riusciti a configurare correttamente il server grafico."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrivalinux operating system installation.\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-"Se avete scelto di riutilizzare una o più partizioni GNU/Linux\n"
-"preesistenti, potreste volerne formattare qualcuna per cancellare i dati\n"
-"contenuti. In tal caso, selezionate anche quelle partizioni.\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
"\n"
-"Tenete presente che non è necessario formattare tutte le partizioni\n"
-"preesistenti. La formattazione è necessaria per le partizioni che\n"
-"contengono il sistema operativo (come \"/\", \"/usr\" o \"/var\"), ma\n"
-"potete evitare di formattare quelle che contengono dati che desiderate\n"
-"conservare (tipicamente \"/home\").\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
"\n"
-"Fate molta attenzione nella scelta delle partizioni: dopo la formattazione\n"
-"tutti i dati in esse contenuti saranno cancellati e non potrete più\n"
-"recuperarli.\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
"\n"
-"Cliccate su \"%s\" quando siete pronti ad avviare la formattazione.\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
"\n"
-"Cliccate su \"%s\" se desiderate installare il vostro nuovo sistema\n"
-"operativo Mandrivalinux su partizioni diverse da quelle selezionate.\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
"\n"
-"Cliccate su \"%s\" se desiderate selezionare alcune delle partizioni\n"
-"affinché venga controllata la presenza di eventuali blocchi danneggiati su\n"
-"di esse."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard don't match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
msgstr ""
-"DrakX selezionerà automaticamente una particolare configurazione della\n"
-"tastiera in base alla lingua che avete scelto al punto . Controllate che la\n"
-"selezione sia quella giusta per voi, e in caso contrario modificatela.\n"
+"A questo punto dovete scegliere in quali punti del vostro disco rigido\n"
+"installare il sistema operativo Mandriva Linux. Se il disco è vuoto, o se\n"
+"tutto lo spazio disponibile è occupato da un altro sistema operativo già\n"
+"installato, allora dovrete creare o modificare le partizioni. In breve,\n"
+"partizionare un disco rigido consiste nel suddividerlo logicamente in più\n"
+"zone in maniera da creare lo spazio necessario all'installazione di\n"
+"Mandriva Linux.\n"
"\n"
-"Inoltre, potreste anche avere una tastiera che non corrisponde esattamente\n"
-"alla vostra lingua: se siete un francese che parla italiano, ad esempio,\n"
-"potreste avere una tastiera francese. Oppure, se siete italiani ma vivete\n"
-"nel Québec, potreste trovarvi nella stessa situazione, con una tastiera non\n"
-"corrispondente alla vostra lingua nativa. In qualsiasi caso, questo passo\n"
-"dell'installazione vi permette di selezionare una tastiera appropriata\n"
-"dalla lista.\n"
+"Dato che gli effetti del partizionamento sono di solito irreversibili, e\n"
+"possono causare la perdita di dati, questa operazione può intimidire e\n"
+"rivelarsi stressante per un utente inesperto. Per fortuna DrakX mette a\n"
+"vostra disposizione un assistente che semplifica questa procedura. Prima di\n"
+"cominciare leggete attentamente questa sezione e, soprattutto, fate le cose\n"
+"con calma.\n"
"\n"
-"Cliccate sul pulsante \"%s\" per vedere l'elenco completo delle tastiere\n"
-"supportate.\n"
+"In base alla configurazione del vostro disco rigido, saranno disponibili\n"
+"diverse opzioni:\n"
"\n"
-"Se scegliete una mappa di tastiera basata su di un alfabeto non latino,\n"
-"nella finestra di dialogo successiva vi verrà chiesto di scegliere una\n"
-"scorciatoia da tastiera che vi permetterà in seguito di passare dalla mappa\n"
-"latina a quella non latina e viceversa."
+" * \"%s\": questa opzione causerà un partizionamento automatico dello\n"
+"spazio libero all'interno del vostro disco rigido (o dei dischi, se ne\n"
+"avete più di uno). Non vi verrà posta nessun'altra domanda.\n"
+"\n"
+" * \"%s\": l'assistente ha trovato una o più partizioni Linux già presenti\n"
+"sul vostro disco rigido. Scegliete questa opzione se desiderate usarle. Vi\n"
+"verrà chiesto di scegliere il punto di mount associato a ciascuna\n"
+"partizione: come opzione predefinita verranno selezionati i punti di mount\n"
+"precedenti e, in genere, è buona norma non modificarli.\n"
+"\n"
+" * \"%s\": se Microsoft Windows è installato sul vostro disco rigido e\n"
+"occupa tutto lo spazio disponibile, dovrete creare spazio libero per\n"
+"GNU/Linux. Per farlo potete ridimensionare la partizione FAT o NTFS su cui\n"
+"è installato Windows, oppure cancellare completamente la partizione e tutti\n"
+"i dati in essa contenuti (ricorrendo all'opzione \"Cancella l'intero\n"
+"disco\"). Il ridimensionamento può essere effettuato evitando la perdita di\n"
+"dati, a patto che prima di procedere la partizione Windows sia stata\n"
+"deframmentata. Vi consigliamo caldamente di fare comunque una copia di\n"
+"sicurezza dei vostri dati. Questa è la soluzione consigliata se desiderate\n"
+"usare sia Mandriva Linux che Microsoft Windows sullo stesso computer.\n"
+"\n"
+" Prima di scegliere questa opzione, tenete presente che le dimensioni\n"
+"della partizione su cui risiede Windows saranno ridotte rispetto a quelle\n"
+"iniziali. Ciò significa che avrete meno spazio libero su Windows per\n"
+"archiviare i vostri dati o installare nuovo software.\n"
+"\n"
+" * \"%s\": se desiderate cancellare tutti i dati e tutte le partizioni\n"
+"presenti sul vostro disco rigido e rimpiazzarli con il vostro nuovo sistema\n"
+"Mandriva Linux, potete selezionare questa opzione. Fate molta attenzione,\n"
+"perché dopo aver dato conferma non potrete più tornare indietro.\n"
+"\n"
+" !! Se scegliete questa opzione tutti i dati sul vostro disco saranno\n"
+"cancellati. !!\n"
+"\n"
+" * \"%s\": questa opzione compare quando il disco rigido è interamente\n"
+"occupato da Windows. Se scegliete questa opzione tutto quello che si trova\n"
+"sul disco verrà cancellato e potrete ricominciare da capo, creando le\n"
+"partizioni come se fosse la prima volta.\n"
+"\n"
+" !! Se scegliete questa opzione tutti i dati sul vostro disco saranno\n"
+"cancellati. !!\n"
+"\n"
+" * \"%s\": se volete partizionare manualmente il vostro disco rigido potete\n"
+"scegliere questa opzione. Fate attenzione: è una opzione potente, ma molto\n"
+"pericolosa, e potreste facilmente causare la perdita di tutti i vostri\n"
+"dati. Pertanto la suggeriamo soltanto nel caso abbiate già fatto qualcosa\n"
+"di simile in precedenza e abbiate una certa esperienza. Per ulteriori\n"
+"informazioni riguardo il funzionamento del programma DiskDrake, consultate\n"
+"la sezione \"Gestione delle partizioni\" della \"Guida introduttiva\"."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Usa partizioni esistenti"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Cancella l'intero disco"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:380
+#, c-format
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Don't forget\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
"to remove the installation media (CD-ROM or floppy). The first thing you\n"
"should see after your computer has finished doing its hardware tests is the\n"
"boot-loader menu, giving you the choice of which operating system to start.\n"
@@ -1703,11 +959,139 @@ msgstr ""
"crearne uno con GNU/Linux digitate \"mformat a:\", o \"fdformat /dev/fd0\"\n"
"seguito da \"mkfs.vfat /dev/fd0\"."
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Crea il floppy di installazione automatica"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Se avete scelto di riutilizzare una o più partizioni GNU/Linux\n"
+"preesistenti, potreste volerne formattare qualcuna per cancellare i dati\n"
+"contenuti. In tal caso, selezionate anche quelle partizioni.\n"
+"\n"
+"Tenete presente che non è necessario formattare tutte le partizioni\n"
+"preesistenti. La formattazione è necessaria per le partizioni che\n"
+"contengono il sistema operativo (come \"/\", \"/usr\" o \"/var\"), ma\n"
+"potete evitare di formattare quelle che contengono dati che desiderate\n"
+"conservare (tipicamente \"/home\").\n"
+"\n"
+"Fate molta attenzione nella scelta delle partizioni: dopo la formattazione\n"
+"tutti i dati in esse contenuti saranno cancellati e non potrete più\n"
+"recuperarli.\n"
+"\n"
+"Cliccate su \"%s\" quando siete pronti ad avviare la formattazione.\n"
+"\n"
+"Cliccate su \"%s\" se desiderate installare il vostro nuovo sistema\n"
+"operativo Mandriva Linux su partizioni diverse da quelle selezionate.\n"
+"\n"
+"Cliccate su \"%s\" se desiderate selezionare alcune delle partizioni\n"
+"affinché venga controllata la presenza di eventuali blocchi danneggiati su\n"
+"di esse."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"È molto probabile che, al momento in cui installate Mandriva Linux, alcuni\n"
+"pacchetti siano stati aggiornati rispetto alla versione iniziale;\n"
+"potrebbero essere stati corretti degli errori, o risolti eventuali problemi\n"
+"relativi alla sicurezza. Per permettervi di beneficiare di questi\n"
+"aggiornamenti vi verrà proposto di scaricare la nuova versione dei\n"
+"pacchetti usando Internet. Scegliete \"%s\" se disponete di una connessione\n"
+"a Internet funzionante, oppure \"%s\" se preferite installare i pacchetti\n"
+"aggiornati in un secondo momento.\n"
+"\n"
+"Se scegliete \"%s\" comparirà un elenco di siti da cui poter scaricare i\n"
+"pacchetti aggiornati; dovreste scegliere il sito a voi più vicino.\n"
+"Comparirà quindi un elenco gerarchico grazie al quale potrete selezionare i\n"
+"pacchetti da aggiornare: controllate le vostre scelte e cliccate su \"%s\"\n"
+"per scaricare e installare i pacchetti selezionati, o su \"%s\" per\n"
+"annullare l'operazione."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"A questo punto, DrakX vi permette di scegliere il livello di sicurezza da\n"
+"impostare sul sistema. Come regola generale, quanto più la macchina sarà\n"
+"esposta a Internet e quanto più sono importanti i dati che dovrà contenere,\n"
+"tanto più alto dovrebbe essere il livello di sicurezza. Tenete presente,\n"
+"tuttavia, che a un livello di sicurezza più alto corrisponde in genere una\n"
+"minore facilità d'uso.\n"
+"\n"
+"Se non sapete quale scelta fare, utilizzate l'impostazione predefinita.\n"
+"Potrete comunque cambiare in seguito il livello di sicurezza usando\n"
+"draksec, uno strumento del Mandriva Linux Control Center.\n"
+"\n"
+"Nel campo \"%s\" inserite l'indirizzo email dell'utente che sarà\n"
+"responsabile per la sicurezza: tutti i messaggi relativi alla sicurezza\n"
+"verranno inviati a lui."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Amministratore per la sicurezza"
+
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:464
+#, c-format
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrivalinux system. If partitions have already been\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
"defined, either from a previous installation of GNU/Linux or by another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
@@ -1733,7 +1117,7 @@ msgid ""
"floppy disk.\n"
"\n"
" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it doesn't always\n"
+"using this option. Please be careful and remember that it does not always\n"
"work.\n"
"\n"
" * \"%s\": discards all changes and reloads the partition table that was\n"
@@ -1778,15 +1162,15 @@ msgid ""
"emergency boot situations."
msgstr ""
"A questo punto, dovete decidere quali partizioni devono essere usate per\n"
-"l'installazione del vostro sistema Mandrivalinux. Se sono già state\n"
+"l'installazione del vostro sistema Mandriva Linux. Se sono già state\n"
"definite delle partizioni, grazie a una precedente installazione di\n"
"GNU/Linux o usando un altro programma di partizionamento, potete utilizzare\n"
"quelle. In caso contrario, sarà necessario creare o modificare le\n"
"partizioni del disco rigido.\n"
"\n"
"Per creare delle partizioni dovete, per prima cosa, selezionare un disco\n"
-"rigido. Potete scegliere il disco da partizionare cliccando su \"hda\" per\n"
-"il primo disco IDE, \"hdb\" per il secondo, \"sda\" per il primo disco\n"
+"rigido. Potete scegliere il disco da partizionare cliccando su ''hda'' per\n"
+"il primo disco IDE, ''hdb'' per il secondo, ''sda'' per il primo disco\n"
"SCSI, e così via.\n"
"\n"
"Per partizionare il disco selezionato potete scegliere fra le seguenti\n"
@@ -1848,12 +1232,839 @@ msgstr ""
" * Ctrl-m per impostare il punto di mount.\n"
"\n"
"Per ulteriori informazioni in merito ai diversi tipi di filesystem\n"
-"disponibili, consultate il capitolo ext2FS del \"Manuale di riferimento\".\n"
+"disponibili, consultate il capitolo ext2FS del ''Manuale di riferimento''.\n"
"\n"
"Se state effettuando l'installazione su una macchina PPC, sarà meglio\n"
-"creare una piccola partizione HFS di \"bootstrap\" di almeno 1 MB, che\n"
+"creare una piccola partizione HFS di ''bootstrap'' di almeno 1 MB, che\n"
"verrà utilizzata dal bootloader yaboot. Se decidete di creare una\n"
"partizione più grande, diciamo sui 50 MB, essa potrebbe rappresentare un\n"
"utile deposito in cui conservare un kernel di riserva e immagini di avvio\n"
"da utilizzare in caso di emergenza."
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Mount automatico di supporti rimovibili"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Scambio tra modo normale e esperto"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Sul vostro disco rigido è stata individuata più di una partizione\n"
+"Microsoft. Scegliete quella che deve essere ridimensionata in modo da poter\n"
+"installare il vostro nuovo sistema operativo Mandriva Linux.\n"
+"\n"
+"Ogni partizione è elencata in questo modo: \"nome Linux\", \"nome Windows\"\n"
+"\"Dimensione\".\n"
+"\n"
+"Il \"nome Linux\" è composto da: \"tipo di disco rigido\", \"numero del\n"
+"disco\", \"numero della partizione\" (ad esempio, \"hda1\").\n"
+"\n"
+"Il \"tipo di disco rigido\" è \"hd\" se il disco è di tipo IDE, e \"sd\"\n"
+"se, invece, è un disco SCSI.\n"
+"\n"
+"Il \"numero del disco\" è sempre una lettera che segue \"hd\" o \"sd\". Per\n"
+"i dischi IDE:\n"
+"\n"
+" * \"a\" significa \"disco master sul canale IDE primario\";\n"
+"\n"
+" * \"b\" significa \"disco slave sul canale IDE primario\";\n"
+"\n"
+" * \"c\" significa \"disco master sul canale IDE secondario\";\n"
+"\n"
+" * \"d\" significa \"disco slave sul canale IDE secondario\".\n"
+"\n"
+"Per i dischi di tipo SCSI, invece, una \"a\" rappresenta \"l'ID SCSI più\n"
+"basso\", una \"b\" indica \"il secondo ID SCSI a partire dal basso\", etc.\n"
+"\n"
+"Il \"nome Windows\" è la lettera con cui viene indicato il vostro disco\n"
+"rigido su Windows (il primo disco o partizione è denominato \"C:\")."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": controllate la selezione attuale della nazione. Se non corrisponde\n"
+"a quella in cui vivete, cliccate sul pulsante \"%s\" e indicate quella\n"
+"corretta. Se la vostra nazione non è nella prima lista che verrà mostrata,\n"
+"cliccate su \"%s\" per avere la lista completa."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Questo passo viene eseguito soltanto se sulla vostra macchina viene trovata\n"
+"una partizione GNU/Linux preesistente.\n"
+"\n"
+"A questo punto DrakX ha bisogno di sapere se intendete effettuare una nuova\n"
+"installazione o un aggiornamento di un sistema Mandriva Linux esistente:\n"
+"\n"
+" * \"%s\": nella maggior parte dei casi cancella completamente il vecchio\n"
+"sistema. Tuttavia, in base allo schema di partizionamento usato, potete\n"
+"evitare di scrivere sui vostri dati attuali (in particolare le directory\n"
+"\"home\"). Dovreste usare questa opzione se volete modificare le partizioni\n"
+"dei vostri dischi o cambiarne i filesystem.\n"
+"\n"
+" * \"%s\": questo tipo di installazione vi permette di effettuare un\n"
+"semplice aggiornamento dei pacchetti già installati sul vostro sistema\n"
+"Mandriva Linux. Tutte le partizioni attuali del disco rigido vengono\n"
+"conservate, come pure le configurazioni e i dati individuali degli utenti.\n"
+"La maggior parte degli altri passi relativi alla configurazione restano\n"
+"disponibili, come per una installazione normale.\n"
+"\n"
+"L'opzione \"Aggiornamento\" non dovrebbe comportare difficoltà per sistemi\n"
+"Mandriva Linux a partire dalla versione \"8.1\", mentre non è consigliabile\n"
+"utilizzarla per aggiornare versioni di Mandriva Linux precedenti la \"8.1\"."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"DrakX selezionerà automaticamente una particolare configurazione della\n"
+"tastiera in base alla lingua che avete scelto al punto . Controllate che la\n"
+"selezione sia quella giusta per voi, e in caso contrario modificatela.\n"
+"\n"
+"Inoltre, potreste anche avere una tastiera che non corrisponde esattamente\n"
+"alla vostra lingua: se siete un francese che parla italiano, ad esempio,\n"
+"potreste avere una tastiera francese. Oppure, se siete italiani ma vivete\n"
+"nel Québec, potreste trovarvi nella stessa situazione, con una tastiera non\n"
+"corrispondente alla vostra lingua nativa. In qualsiasi caso, questo passo\n"
+"dell'installazione vi permette di selezionare una tastiera appropriata\n"
+"dalla lista.\n"
+"\n"
+"Cliccate sul pulsante \"%s\" per vedere l'elenco completo delle tastiere\n"
+"supportate.\n"
+"\n"
+"Se scegliete una mappa di tastiera basata su di un alfabeto non latino,\n"
+"nella finestra di dialogo successiva vi verrà chiesto di scegliere una\n"
+"scorciatoia da tastiera che vi permetterà in seguito di passare dalla mappa\n"
+"latina a quella non latina e viceversa."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Il primo passo è scegliere la lingua che preferite usare.\n"
+"\n"
+"La lingua che sceglierete a questo punto sarà utilizzata per la procedura\n"
+"di installazione, per la documentazione e per il sistema in generale. Per\n"
+"prima cosa selezionate l'area geografica in cui vivete, e poi la vostra\n"
+"lingua.\n"
+"\n"
+"Cliccando sul pulsante \"%s\" potrete scegliere altre lingue da installare\n"
+"sul computer. La selezione di altre lingue comporta l'installazione dei\n"
+"file relativi alla documentazione e alle applicazioni per ciascuna di esse.\n"
+"Ad esempio, se il vostro computer dovrà essere usato anche da persone di\n"
+"madre lingua spagnola, potete scegliere l'italiano come lingua predefinita\n"
+"nella struttura ad albero e, nella sezione \"Avanzato\", selezionare anche\n"
+"\"%s\".\n"
+"\n"
+"Riguardo al supporto UTF-8 (Unicode): Unicode è un nuovo standard per la\n"
+"codifica dei caratteri, progettato per supportare tutte le lingue\n"
+"esistenti. Il suo supporto su GNU/Linux è ancora in fase di sviluppo, e per\n"
+"questo motivo la sua attivazione su Mandriva Linux dipenderà dalle scelte\n"
+"effettuate dall'utente:\n"
+"\n"
+" * se scegliete lingue fortemente legate alle vecchie codifiche (lingue del\n"
+"gruppo latin1, russo, giapponese, cinese, coreano, tailandese, greco, turco\n"
+"e la maggior parte delle lingue iso-8859-2), come impostazione predefinita\n"
+"sarà usata la vecchia codifica;\n"
+"\n"
+" * per le altre lingue sarà usato Unicode come impostazione predefinita;\n"
+"\n"
+" * se vengono installate due o più lingue, e le lingue scelte non\n"
+"utilizzano la stessa codifica, allora per l'intero sistema sarà usato\n"
+"Unicode;\n"
+"\n"
+" * infine, l'uso di Unicode per l'intero sistema può anche essere imposto\n"
+"dall'utente tramite l'opzione \"%s\", indipendentemente dalle lingue\n"
+"selezionate.\n"
+"\n"
+"Va sottolineato che non siete limitati alla scelta di una sola lingua\n"
+"supplementare: potete sceglierne quante volete, o persino installarle tutte\n"
+"grazie all'opzione \"%s\". La scelta del supporto per una particolare\n"
+"lingua implica l'installazione di traduzioni, caratteri, strumenti di\n"
+"controllo ortografico e tutto ciò che riguarda quella lingua.\n"
+"\n"
+"Per passare da una lingua all'altra fra quelle installate potete utilizzare\n"
+"il comando \"localedrake\": usandolo come \"root\" cambierete la\n"
+"lingua utilizzata in tutto il sistema, mentre come utente normale\n"
+"cambierete solamente la lingua usata da quell'utente."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Spagnolo"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"In genere DrakX individua automaticamente il numero di pulsanti presenti\n"
+"sul vostro mouse; in caso contrario, supporrà che si tratti di un mouse a\n"
+"due tasti, e lo imposterà in modo da simulare il terzo tasto. Con un mouse\n"
+"a due tasti è infatti possibile simulare la pressione del terzo tasto\n"
+"premendo contemporaneamente il tasto sinistro e quello destro. DrakX,\n"
+"inoltre, distingue automaticamente tra mouse con interfaccia PS/2, seriale\n"
+"o USB.\n"
+"\n"
+"Se avete un mouse a tre tasti ma senza rotellina, potete scegliere un mouse\n"
+"\"%s\": DrakX, in tal caso, configurerà il mouse in modo che possiate\n"
+"simulare la rotellina, premendo il tasto centrale e spostando il mouse\n"
+"verso l'alto o verso il basso.\n"
+"\n"
+"Se per qualche ragione volete specificare un diverso tipo di mouse,\n"
+"scegliete il modello desiderato dall'elenco che vi viene proposto.\n"
+"\n"
+"Potete selezionare la voce \"%s\" per scegliere un tipo di mouse\n"
+"\"generico\" che vi permetterà di utilizzare quasi tutti i mouse esistenti.\n"
+"\n"
+"Se scegliete un mouse diverso dal tipo suggerito, vi verrà mostrata una\n"
+"finestra dove potrete provarlo. Provate sia i pulsanti, sia l'eventuale\n"
+"rotellina, per controllare che la configurazione sia corretta e che il\n"
+"mouse funzioni a dovere. Se il mouse non dovesse funzionare correttamente,\n"
+"premete la barra spaziatrice o il tasto [Invio] per uscire dal test e\n"
+"tornare all'elenco dei mouse.\n"
+"\n"
+"Talvolta i mouse con rotellina centrale potrebbero non essere individuati\n"
+"automaticamente; in tal caso, dovrete selezionare personalmente dall'elenco\n"
+"il modello giusto. Assicuratevi di sceglierne uno corrispondente alla porta\n"
+"alla quale è collegato il vostro mouse. Dopo aver selezionato un modello\n"
+"premete il pulsante \"%s\", e comparirà l'immagine di un mouse. Muovete la\n"
+"rotellina per controllare che funzioni a dovere: mentre la muovete, vedrete\n"
+"muoversi quella sullo schermo; poi provate i pulsanti e controllate che il\n"
+"puntatore si muova correttamente sullo schermo quando muovete il mouse."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "con emulazione rotellina"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Universale | Qualsiasi mouse PS/2 o USB"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Scegli la porta appropriata. Per esempio, la porta \"COM1\" di Windows\n"
+"corriponde alla \"ttyS0\" di GNU/Linux."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Questo è il punto più critico per la sicurezza del vostro sistema\n"
+"GNU/Linux: state per decidere la password di \"root\". \"root\" è\n"
+"l'amministratore del sistema, ed è l'unico utente autorizzato a compiere\n"
+"aggiornamenti, aggiungere altri utenti, cambiare la configurazione globale\n"
+"del sistema, e così via. In breve, \"root\" può fare tutto ciò che vuole!\n"
+"Questo è il motivo per cui dovete scegliere una password che sia difficile\n"
+"da indovinare, e se ne avete scelta una troppo facile DrakX vi avvertirà.\n"
+"Potete anche scegliere di non digitare alcuna password, ma noi vi\n"
+"consigliamo caldamente di farlo, poiché GNU/Linux è vulnerabile a errori da\n"
+"parte dell'utente esattamente come qualsiasi altro sistema operativo.\n"
+"Quindi è molto importante che sia difficile assumere il ruolo di \"root\",\n"
+"potendo quest'ultimo scavalcare ogni limitazione e, magari\n"
+"involontariamente, cancellare tutti i dati presenti sulle partizioni\n"
+"accedendovi in maniera impropria.\n"
+"\n"
+"La password ideale è costituita da un insieme di almeno 8 caratteri\n"
+"alfanumerici. Non appuntate mai da nessuna parte la password di \"root\",\n"
+"renderebbe troppo facile l'accesso al sistema da parte di estranei.\n"
+"\n"
+"Tuttavia, non scegliete una password troppo lunga o complicata, perché\n"
+"dovete essere in grado di ricordarla senza troppo sforzo.\n"
+"\n"
+"La password non verrà mostrata mentre la digitate; quindi, per ridurre il\n"
+"rischio di un errore di battitura, è necessario che venga inserita due\n"
+"volte. Se per caso però commettete lo stesso errore entrambe le volte,\n"
+"questa password \"sbagliata\" sarà quella che verrà richiesta la prima\n"
+"volta che vi connetterete al sistema come \"root\".\n"
+"\n"
+"Se volete che l'accesso al vostro computer sia controllato da un server di\n"
+"autenticazione, cliccate sul pulsante \"%s\".\n"
+"\n"
+"Se la vostra rete utilizza per l'autenticazione i servizi LDAP, NIS, o il\n"
+"PDC di un dominio Windows, selezionate il pulsante \"%s\". Se non\n"
+"siete sicuri sulla scelta da fare, chiedete al vostro amministratore di\n"
+"rete.\n"
+"\n"
+"Se per qualche motivo per voi fosse un problema dovervi ricordare una\n"
+"password, se il vostro computer non sarà mai collegato a Internet, e se\n"
+"avete piena fiducia nelle persone che lo useranno, allora potete ricorrere\n"
+"all'opzione \"%s\"."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "autenticazione"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Un bootloader è un piccolo programma che il computer esegue automaticamente\n"
+"nella fase di avvio. Ha il compito di far partire tutto il sistema.\n"
+"L'installazione del bootloader è, in genere, del tutto automatica. DrakX,\n"
+"infatti, analizza il settore di avvio del disco, e si comporta in base a\n"
+"quello che vi trova:\n"
+"\n"
+" * se trova un settore di avvio di Windows, lo rimpiazza con uno di GRUB o\n"
+"LILO, in modo da permettervi di avviare GNU/Linux o un qualsiasi altro\n"
+"sistema operativo installato sul computer;\n"
+"\n"
+" * se trova un settore di avvio di GRUB o LILO, lo sostituisce con uno\n"
+"nuovo.\n"
+"\n"
+"Se non è in grado di fare la scelta autonomamente, DrakX vi mostrerà alcune\n"
+"opzioni per l'installazione del bootloader. La soluzione più comune è\n"
+"quella di installarlo nel \"%s\". Selezionando \"%s\" non sarà installato\n"
+"alcun bootloader, ma è una possibilità da usare solo se siete veramente\n"
+"consapevoli di ciò che essa comporta."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Qui potrete scegliere il sistema di stampa da usare con il vostro computer;\n"
+"altri sistemi operativi ve ne offrono uno, ma Mandriva Linux ve ne offre "
+"ben\n"
+"due. Ciascuno di essi è adatto a un particolare tipo di configurazione.\n"
+"\n"
+" * \"%s\" -- che sta per \"\"print, do not queue\"\" (\"stampa, non mettere\n"
+"in coda\"), è la scelta migliore se avete una stampante collegata\n"
+"direttamente al computer, volete essere in grado di uscire rapidamente da\n"
+"eventuali situazioni di stallo della stampante, e non disponete di\n"
+"stampanti connesse via rete (\"%s\" può gestire solo configurazioni di rete\n"
+"molto semplici ed è comunque piuttosto lento in caso di stampa in rete).\n"
+"Scegliete \"pdq\" se questa è la vostra prima esperienza con GNU/Linux.\n"
+"\n"
+" * \"%s\" - \"Common Unix Printing System\" (\"Sistema di stampa unificato\n"
+"per Unix\"), offre risultati eccellenti per stampanti sia locali, sia che\n"
+"si trovino sull'altra faccia del pianeta. È semplice da configurare e può\n"
+"agire come server o client per il vecchio sistema di stampa \"lpd\", quindi\n"
+"è compatibile con i sistemi operativi più vecchi che potrebbero avere\n"
+"ancora bisogno di servizi di stampa. Nonostante le grandi potenzialità, la\n"
+"sua configurazione di base è semplice quasi quanto quella di \"pdq\". Se\n"
+"avete bisogno di emulare un server \"lpd\" ricordatevi di attivare il\n"
+"demone \"cups-lpd\". \"%s\" dispone di interfacce grafiche per la stampa,\n"
+"per la configurazione delle opzioni della stampante e per la sua gestione.\n"
+"\n"
+"Se fate una scelta adesso e successivamente cambiate idea, potrete sempre\n"
+"scegliere un diverso sistema di stampa avviando PrinterDrake dal\n"
+"Mandriva Linux Control Center e cliccando sul pulsante \"%s\"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Esperto"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"Ora DrakX procederà con il rilevamento di tutti i dischi rigidi e altri\n"
+"dispositivi IDE presenti sul tuo computer, e cercherà anche di stabilire\n"
+"se sul tuo sistema sono presenti una o più schede SCSI di tipo PCI. Se\n"
+"verrà individuato un dispositivo di questo tipo, DrakX installerà\n"
+"automaticamente il driver appropriato.\n"
+"\n"
+"Dato che il riconoscimento automatico non è un'operazione a prova d'errore,\n"
+"DrakX potrebbe non riuscire a individuare i tuoi dischi rigidi. In tal\n"
+"caso dovrai inserire manualmente i dati relativi al tuo hardware.\n"
+"\n"
+"Nel caso tu debba specificare manualmente il tipo di scheda in\n"
+"tuo possesso, DrakX ti chiederà se intendi indicare il valore di\n"
+"alcuni parametri da usare con essa. Ti consigliamo di permettere a DrakX di\n"
+"esaminare l'hardware per stabilire quali parametri specifici dovranno "
+"essere\n"
+"impostati per inizializzare quella particolare scheda ; questo metodo in "
+"genere\n"
+"permette di ottenere buoni risultati.\n"
+"\n"
+"Se DrakX non riesce a stabilire quali sono i parametri da passare alla\n"
+"scheda, dovrai specificarli manualmente."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": se sul vostro sistema è stata individuata una scheda audio, verrà\n"
+"mostrata qui. Se notate che la scheda audio mostrata non è quella\n"
+"effettivamente presente sul vostro sistema, potete cliccare sul pulsante e\n"
+"scegliere un driver diverso."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"A questo punto DrakX vi mostrerà un riassunto di varie informazioni che ha\n"
+"raccolto riguardo il vostro sistema. In base all'hardware installato,\n"
+"potrebbero essere visualizzate tutte le voci che descriveremo tra poco, o\n"
+"solo alcune di esse. Ogni voce è rappresentata dall'elemento che può essere\n"
+"configurato, con accanto una breve sintesi della configurazione attuale;\n"
+"cliccate sul pulsante \"%s\" corrispondente per cambiarla.\n"
+"\n"
+" * \"%s\": controllate l'attuale impostazione della tastiera, e cambiatela\n"
+"se necessario.\n"
+"\n"
+" * \"%s\": controllate la selezione attuale della nazione. Se non\n"
+"corrisponde a quella in cui vivete, cliccate sul pulsante \"%s\" e indicate\n"
+"quella corretta. Se la vostra nazione non è nella prima lista che verrà\n"
+"mostrata, cliccate su \"%s\" per avere la lista completa.\n"
+"\n"
+" * \"%s\": il fuso orario è inizialmente dedotto in automatico dalla\n"
+"nazione che avete scelto. Anche in questo caso, se l'impostazione non fosse\n"
+"corretta potete usare il pulsante \"%s\".\n"
+"\n"
+" * \"%s\": controllate la configurazione attuale del mouse, e cliccate sul\n"
+"pulsante per cambiarla, se necessario.\n"
+"\n"
+" * \"%s\": cliccando sul pulsante \"%s\" sarà avviato l'assistente di\n"
+"configurazione della stampante. Consultate il relativo capitolo della\n"
+"\"Guida introduttiva\" per avere maggiori informazioni su come configurare\n"
+"una nuova stampante. L'interfaccia descritta in tale sede è simile a quella\n"
+"utilizzata nel corso dell'installazione.\n"
+"\n"
+" * \"%s\": se sul vostro sistema è stata individuata una scheda audio,\n"
+"verrà mostrata qui. Se notate che la scheda audio mostrata non è quella\n"
+"effettivamente presente sul vostro sistema, potete cliccare sul pulsante e\n"
+"scegliere un driver diverso.\n"
+"\n"
+" * \"%s\": se sul vostro sistema è stata individuata una scheda TV, verrà\n"
+"mostrata qui. Se disponete di una scheda TV che non è stata individuata,\n"
+"cliccate sul pulsante \"%s\" per cercare di configurarla a mano.\n"
+"\n"
+" * \"%s\": se avete l'impressione che la configurazione non sia corretta,\n"
+"potete cliccare sul pulsante \"%s\" per cambiare i parametri relativi alla\n"
+"scheda.\n"
+"\n"
+" * \"%s\": come opzione predefinita, DrakX configura l'interfaccia grafica\n"
+"impostando una risoluzione di \"800x600\" o \"1024x768\". Se questa scelta\n"
+"non vi soddisfa, cliccate su \"%s\" per riconfigurare la vostra interfaccia\n"
+"grafica.\n"
+"\n"
+" * \"%s\": se desiderate configurare l'accesso a Internet o a una rete\n"
+"locale potete farlo adesso. Consultate la documentazione stampata, oppure\n"
+"utilizzate il Mandriva Linux Control Center una volta terminata\n"
+"l'installazione per avere a vostra disposizione un aiuto in linea completo.\n"
+"\n"
+" * \"%s\": vi permette di configurare gli indirizzi di proxy HTTP e FTP,\n"
+"nel caso la macchina sulla quale state effettuando l'installazione dipenda\n"
+"da un server proxy.\n"
+"\n"
+" * \"%s\": questa voce vi permette di modificare il livello di sicurezza\n"
+"configurato in un passo precedente ().\n"
+"\n"
+" * \"%s\": se avete in mente di connettere il vostro computer a Internet, è\n"
+"una buona idea proteggerlo contro eventuali intrusioni configurando un\n"
+"firewall. Consultate la relativa sezione della \"Guida introduttiva\" per\n"
+"ulteriori informazioni sulla configurazione del firewall.\n"
+"\n"
+" * \"%s\": cliccate su questo pulsante per cambiare la configurazione del\n"
+"bootloader. Questa opzione dovrebbe essere utilizzata solo dagli utenti più\n"
+"esperti. Consultate la documentazione stampata o l'aiuto in linea del\n"
+"Mandriva Linux Control Center riguardo la configurazione del bootloader.\n"
+"\n"
+" * \"%s\": qui potrete stabilire in dettaglio quali servizi saranno\n"
+"attivati sul vostro sistema. Se pensate di utilizzare il computer come\n"
+"server è senz'altro una buona idea controllare queste impostazioni."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Scheda ISDN"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Interfaccia grafica"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Scegli il disco rigido che vuoi cancellare per poter preparare le nuove\n"
+"partizioni per Mandriva Linux. Attenzione! tutti i dati sul disco andranno\n"
+"perduti e non saranno più recuperabili!"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Clicca sul pulsante \"%s\" se vuoi cancellare tutte le partizioni e\n"
+"i dati presenti su questo disco rigido. Stai attento, dopo aver\n"
+"cliccato su \"%s\" non potrai più recuperare le partizioni e i dati\n"
+"presenti su questo disco, compresi eventuali dati di Windows.\n"
+"\n"
+"Clicca su \"%s\" per annullare questa operazione senza che venga\n"
+"perso nessun dato o partizione presente su questo disco rigido."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Avanti ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Indietro"
+
diff --git a/perl-install/install/help/po/ja.po b/perl-install/install/help/po/ja.po
new file mode 100644
index 000000000..c0b825e00
--- /dev/null
+++ b/perl-install/install/help/po/ja.po
@@ -0,0 +1,1841 @@
+# translation of DrakX.po to Japanese
+# Drakbootdisk Japanese translation
+# Copyright (C) 2000,2003, 2004 Free Software Foundation, Inc.
+# YAMAGATA Hiroo <hiyori13@alum.mit.edu>, 2000.
+# UTUMI Hirosi <utuhiro78@yahoo.co.jp>, 2003, 2004.
+# Yukiko Bando <ybando@k6.dion.ne.jp>, 2004-2007.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-help-ja\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2007-03-03 08:00+0900\n"
+"Last-Translator: Yukiko Bando <ybando@k6.dion.ne.jp>\n"
+"Language-Team: Japanese <cooker-i18n@mandrivalinux.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3.1\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"先に進む前にライセンスをよくお読みください。これは Mandriva Linux\n"
+"全体に適用されます。すべての項目に同意する場合は「%s」を押してください。\n"
+"そうでない場合は「%s」をクリックしてコンピュータを再起動してください。"
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux はマルチユーザシステムです。各ユーザが独自の設定を行うことが\n"
+"できます。マルチユーザシステムについては Starter Guide をお読みください。\n"
+"個々のユーザは自分のファイルと自分の設定以外のものを変更することはでき\n"
+"ません。\n"
+"システム全体に影響を与えるような変更は root (システム管理者) にしかでき\n"
+"ません。少なくとも一つのユーザアカウントを作成してください。日常の作業は\n"
+"すべてこのユーザで行ってください。root で作業するのはとても簡単ですが、\n"
+"非常に危険です。ちょっとした間違いでシステム全体を壊しかねません。\n"
+"ユーザアカウントで間違いを犯した場合は、最悪でもデータを少し失う程度で、\n"
+"システム全体には影響を与えません。\n"
+"\n"
+"最初の入力欄にあなたの名前を入れてください。この欄に入力された最初の言葉は\n"
+"「%s」にコピーされ、これがシステムにログインするときに入力するユーザ名に\n"
+"なります。このデフォルトのユーザ名は他の名前に変更してもかまいません。\n"
+"次のステップはパスワードの設定です。\n"
+"\n"
+"セキュリティの観点からいえば、一般ユーザ (non-privileged user) の\n"
+"パスワードは root のパスワードほど重要ではありません。かといって空白や\n"
+"極端に単純なパスワードは、あなたの個人ファイルを危険にさらすことになり\n"
+"ますので、ないがしろにしないでください。\n"
+"\n"
+"「%s」をクリックすると他のユーザを追加できます。お友達やご家族の皆さんに\n"
+"それぞれアカウントを作成してください。ユーザの追加が終了したら\n"
+"「%s」をクリックします。\n"
+"\n"
+"「%s」ボタンを押すと、そのユーザがデフォルトで使用するシェルを変更する\n"
+"ことができます。(デフォルトで bash に設定されています)\n"
+"\n"
+"ユーザの追加が完了すると、今度はコンピュータを起動したときに自動的に\n"
+"ログインするユーザを選べます。この機能を使う場合 (ローカルなセキュリティ\n"
+"を特に気にしない場合) は、ユーザとそのユーザが使うウィンドウマネージャを\n"
+"選んで「%s」をクリックしてください。\n"
+"この機能を使わない場合は「%s」のチェックを外してください。"
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "この機能を使いますか?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"ハードドライブ内で検出した既存の Linux パーティションのリストです。\n"
+"たいていの場合は変更せずにこのままにしておく方が良いでしょう。\n"
+"変更を行う場合は、最低でもルート ( / ) パーティションを定義してください。\n"
+"小さすぎるパーティションは選ばないでください。ソフトウェアをインストール\n"
+"する容量が足りなくなります。個人のデータを独立したパーティションに置く\n"
+"場合は、/home パーティションを作成してください。\n"
+"\n"
+"それぞれのパーティションは次のように表示されます: \"Name\", \"Capacity\"\n"
+"\n"
+"\"Name\" は次の要素で構成されます: ハードドライブタイプ/ハードドライブ番号/\n"
+"パーティション番号 (例: hda1)\n"
+"\n"
+"ハードドライブタイプは、IDE をお使いの場合は \"hd\"、SCSI をお使いの場合は\n"
+"\"sd\" と表示されます。\n"
+"\n"
+"ハードドライブ番号は常に \"hd\" または \"sd\" の後の一文字で表されます。\n"
+"IDE ハードドライブの場合:\n"
+"\n"
+" * \"a\" はプライマリ IDE コントローラのマスターハードドライブ\n"
+"\n"
+" * \"b\" はプライマリ IDE コントローラのスレーブハードドライブ\n"
+"\n"
+" * \"c\" はセカンダリ IDE コントローラのマスターハードドライブ\n"
+"\n"
+" * \"d\" はセカンダリ IDE コントローラのスレーブハードドライブ\n"
+"\n"
+"SCSI ハードドライブの場合は、\"a\" は \"lowest SCSI ID\", \"b\" は\n"
+"\"second lowest SCSI ID\" を意味します。"
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linux のインストールは数枚の CD-ROM から行います。\n"
+"選択したパッケージが別の CD-ROM の中にあると、DrakX は現在の CD を\n"
+"イジェクトして別の CD を入れるよう促します。\n"
+"指示された CD をお持ちでない場合は「%s」をクリックしてください。"
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"ここではインストールするプログラムを選びます。Mandriva Linux には数千\n"
+"ものパッケージが用意されています。それらは管理しやすいように類似した\n"
+"アプリケーションごとにグループ化されています 。\n"
+"\n"
+"Mandriva Linux ではこのグループをさらに四つのカテゴリに分類しています。\n"
+"パッケージの選択に際しては、複数のカテゴリからグループを選ぶことができ\n"
+"ます。例えば「ワークステーション」としてのインストールに「サーバ」\n"
+"カテゴリのグループを加えることもできます。\n"
+"\n"
+" * %s: ワークステーションとしてお使いの場合は、このカテゴリから\n"
+"いくつかグループを選んでください。\n"
+"\n"
+" * %s: プログラミングを目的とする場合は、ここから必要な\n"
+"グループを選んでください。LSB という特別なグループを選ぶと 'Linux\n"
+"Standard Base' 仕様に準拠したシステム構成になります。\n"
+"\n"
+" 'LSB' グループを選択すると、標準の 2.6 系の代わりに 2.4 系のカーネルが\n"
+"インストールされます。これはシステムを 100%% LSB-規格にするためです。\n"
+"注: 'LSB' グループを選択しなくても、ほぼ 100%% LSB-規格に近いシステムに\n"
+"なります。\n"
+"\n"
+" * %s: サーバ用途のマシンであれば、このカテゴリから目的に\n"
+"合ったサービスを選んでください。\n"
+"\n"
+" * %s: ここではお好みのグラフィカル環境を選びます。\n"
+"グラフィカルなインターフェースを使用する場合は、最低一つ選択してください。\n"
+"\n"
+"グループ名の上にカーソルを移動すると、それぞれのグループについて簡単な\n"
+"説明が表示されます。\n"
+"\n"
+"「%s」にチェックを入れるとパッケージを個別に選択\n"
+"することができます。利用可能なパッケージに精通している場合、あるいは何を\n"
+"インストールするかをすべて自分で決めたい場合に利用してください。\n"
+"\n"
+"「%s」モードでインストールを開始し、すべてのグループのチェックを\n"
+"外すと新しいパッケージは一切インストールされません。既存のシステムを修復\n"
+"またはアップグレードする場合に役立ちます。\n"
+"\n"
+"アップグレードではなく通常のインストール中にすべてのグループのチェックを\n"
+"外すと、ダイアログボックスに最小限のインストールをするためのオプションが\n"
+"いくつか提示されます:\n"
+"\n"
+" * %s: グラフィカルなデスクトップを利用するために必要な最低限の\n"
+"パッケージをインストールします。\n"
+"\n"
+" * %s: 基本的なシステムとベーシックなユーティリティ\n"
+"およびそれに関するドキュメントをインストールします。サーバ向きです。\n"
+"\n"
+" * %s: Linux システムを稼動させるために最低限必要な\n"
+"パッケージだけをインストールします。これを選択した場合はグラフィカルな\n"
+"環境はありません。コマンドのみの操作になります。 このインストールの\n"
+"合計サイズは約 65 MB です。"
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "更新"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "基本的なドキュメントを入れる"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "極小インストール"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"インストールするパッケージを個別に選ぶ場合は、すべてのパッケージが\n"
+"グループ別にツリー表示されます。リストから個々のパッケージ/サブグループ/\n"
+"グループ全体を選ぶことができます。\n"
+"\n"
+"パッケージを選択すると右側に説明が表示され、パッケージの目的を知ることが\n"
+"できます。\n"
+"\n"
+"注意!! 選択したグループにサーバ用のパッケージが含まれていたり、あるいは\n"
+"個別にそれを選択すると、本当にインストールしてよいか確認を求めます。\n"
+"Mandriva Linux のデフォルトの設定では、インストールされたサービスはすべて\n"
+"起動時に自動的に開始されます。ディストリビューションがリリースされた時点\n"
+"で既知の問題がなく安全だとされていても、リリース後にセキュリティホールが\n"
+"発見される可能性はあります。\n"
+"それぞれのサービスの内容やなぜインストールされるのかを知るには\n"
+"「%s」をクリックしてください。「%s」をクリックすると選択した\n"
+"サービスがインストールされ起動時に自動的に開始しますのでご注意ください。\n"
+"\n"
+"パッケージのなかには他のパッケージに依存するものがあります。つまり、\n"
+"一つのパッケージをインストールするためには他のパッケージも同時に\n"
+"インストールしなければならない場合があります。インストーラは依存関係を\n"
+"解決するために自動的に必要なパッケージを選択し、その都度メッセージを表示\n"
+"します。「%s」オプションを使うと、この警告ダイアログを\n"
+"無効にすることができます。\n"
+"\n"
+"リストの下にある小さなフロッピーのアイコンは、別のインストール時に作成\n"
+"されたパッケージリストを利用する際に使います。この機能は複数のマシンに\n"
+"同じ設定のインストールをする場合に役立ちます。アイコンをクリックすると\n"
+"自動インストールフロッピーを挿入するように促されます。このフロッピーの\n"
+"作成方法については最終ステップの二番目のヒントを参照してください。"
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "自動的に依存関係を解決する"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": 「%s」をクリックするとプリンタ設定ウィザードが開きます。\n"
+"新しいプリンタのセットアップ方法については Starter Guide をご覧ください。\n"
+"マニュアルに掲載されているインターフェースはインストール中に使用したもの\n"
+"とほぼ同じです。"
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"ここでは起動時に開始するサービスを選択します。\n"
+"\n"
+"DrakX は現在インストールされている利用可能なすべてのサービスを表示します。\n"
+"それぞれをよく読んで、起動時に必要でないものについてはチェックを外して\n"
+"ください。\n"
+"\n"
+"サービスを選択すると簡単な説明が表示されます。本当にそのサービスが必要\n"
+"なのかどうか分からない場合は、デフォルトのままにしておくのが安全です。\n"
+"\n"
+"!!お使いのマシンをサーバとして使用する場合は特に注意してください:\n"
+"必要のないサービスは止めてください。\n"
+"サービスのなかにはサーバで有効にすると危険なものがあります。\n"
+"一般的には、本当に必要なサービスのみを選んでください。\n"
+"!!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux は時間を GMT (グリニッジ標準時) で管理し、選択されたタイムゾーン\n"
+"をもとにこれを現地時間に変換します。マザーボードの時計が現地時間に設定\n"
+"されている場合は、「%s」の選択を外してこの機能を無効にすることができます。\n"
+"そうすると、GNU/Linux はハードウェアクロックとシステムクロックが同じタイム\n"
+"ゾーンにあると認識します。Windows などの別の OS を同じマシンで動かしている\n"
+"場合は、このオプションを無効にする方が良いでしょう。\n"
+"\n"
+"「%s」オプションを選ぶと、インターネットのリモートタイム\n"
+"サーバに接続して自動的に時間を合わせます。表示されるリストの中から一番\n"
+"近いサーバを選んでください。この機能を使うにはインターネット接続が必要\n"
+"です。このオプションを使うと、このマシンをローカルネットワーク内の他の\n"
+"マシンのタイムサーバとして機能させることができます。"
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "自動的に時間を合わせる"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"グラフィックカード\n"
+"\n"
+"普通はインストーラがお使いのマシンに接続されているグラフィックカードを\n"
+"自動的に検出して設定を行います。うまくいかなかった場合は、リストの中\n"
+"から適切なグラフィックカードを選んでください。\n"
+"\n"
+"利用できるサーバが数種類ある場合 (3D アクセラレーションの有無など) は、\n"
+"目的に適したサーバを選んでください。"
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (X ウィンドウシステム) は GNU/Linux のグラフィカルインターフェースの\n"
+"中心となる部分で、Mandriva Linux に収録されている様々なグラフィカル環境\n"
+"(KDE, GNOME, AfterStep, WindowMaker など) はすべてこれに依存しています。\n"
+"\n"
+"最適なグラフィック表示を得るために調整可能な設定項目がいくつかあります。\n"
+"\n"
+"グラフィックカード\n"
+"\n"
+"普通はインストーラがお使いのマシンに接続されているグラフィックカードを\n"
+"自動的に検出して設定を行ないます。うまくいかなかった場合は、リストの中\n"
+"から適切なグラフィックカードを選んでください。\n"
+"\n"
+"利用できるサーバが数種類ある場合 (3D アクセラレーションの有無など) は、\n"
+"目的に適したサーバを選んでください。\n"
+"\n"
+"\n"
+"\n"
+"モニタ\n"
+"\n"
+"普通はインストーラがお使いのマシンに接続されているモニタを自動的に\n"
+"検出して設定を行います。うまくいかなかった場合は、リストの中から\n"
+"適切なモニタを選んでください。\n"
+"\n"
+"\n"
+"\n"
+"解像度\n"
+"\n"
+"お使いのハードウェアで利用可能な解像度と色深度の中から必要に合った\n"
+"ものをお選びください。インストール後に変更することもできます。選択\n"
+"された設定によるサンプル画像がモニタの絵の中に表示されます。\n"
+"\n"
+"\n"
+"\n"
+"テスト\n"
+"\n"
+"システムは指定された解像度でグラフィカルスクリーンの表示を試みます。\n"
+"テスト中にメッセージが表示され「%s」と答えると\n"
+"DrakX は次のステップに進みます。12 秒以内にメッセージが表示されないときは\n"
+"自動設定がうまくできていません。元のメニューに戻りますので、正しく表示\n"
+"されるように設定を変更してください。\n"
+"\n"
+"\n"
+"\n"
+"オプション\n"
+"\n"
+"起動時に自動的にグラフィカルインターフェースに切り替えるかどうかを選択する\n"
+"ことができます。サーバとしてお使いになる場合やディスプレイの設定がうまく\n"
+"できなかった場合は、「%s」を選んでください。"
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"モニタ\n"
+"\n"
+"普通はインストーラがお使いのマシンに接続されているモニタを自動的に\n"
+"検出して設定を行います。うまくいかなかった場合は、リストの中から\n"
+"適切なモニタを選んでください。"
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"解像度\n"
+"\n"
+"お使いのハードウェアで利用可能な解像度と色深度の中から必要に合った\n"
+"ものをお選びください。インストール後に変更することもできます。選択\n"
+"された設定によるサンプル画像がモニタの絵の中に表示されます。"
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"利用できるサーバが数種類ある場合 (3D アクセラレーションの有無など) は、\n"
+"目的に適したサーバを選んでください。"
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"オプション\n"
+"\n"
+"起動時に自動的にグラフィカルインターフェースに切り替えるかどうかを選択する\n"
+"ことができます。サーバとしてお使いになる場合やディスプレイの設定がうまく\n"
+"できなかった場合は、「%s」を選んでください。"
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"ここでは Mandriva Linux をハードドライブのどこにインストールするかを\n"
+"選択します。ハードドライブが空であったり既存の OS がすべての領域を使用\n"
+"している場合は、パーティションを設定しなければなりません。\n"
+"基本的に、Mandriva Linux をインストールするには、ハードドライブを\n"
+"論理分割して領域を確保することが必要です。\n"
+"\n"
+"パーティションの設定は、たいていの場合復元不可能なうえ、データの消失に\n"
+"つながることもあるため、不慣れなユーザにとっては気後れのする作業かも\n"
+"しれません。DrakX にはこの作業を簡単に行うためのウィザードが用意されて\n"
+"います。先に進む前に、まずこのセクションの残りの部分を読んでください。\n"
+"そして落ち着いてゆっくりと実行してください。\n"
+"\n"
+"ハードドライブの状態によっていくつかのオプションが提示されます:\n"
+"\n"
+" * %s: 空のドライブに自動的にパーティションを作成します。\n"
+"このオプションを使うと、これ以降プロンプトの表示はありません。\n"
+"\n"
+" * %s: ハードドライブに一つ以上の\n"
+"Linux パーティションが検出されました。既存のパーティションを利用する場合\n"
+"はこのオプションを選んでください。ウィザードがそれぞれのパーティションの\n"
+"マウントポイントを選択するよう促します。伝統的なマウントポイントが既定値\n"
+"として選択されています。たいていの場合はそのままにしておいた方が良いで\n"
+"しょう。\n"
+"\n"
+" * %s: Microsoft Windows がハードドライブの\n"
+"全領域を占有している場合は GNU/Linux 用に空き領域を作成する必要があります。\n"
+"方法としては、Microsoft Windows のパーティションとデータを消去するか\n"
+"Microsoft Windows の FAT または NTFS パーティションのサイズを変更します。\n"
+"サイズ変更は、Windows のパーティションがあらかじめデフラグ (最適化) されて\n"
+"いれば、データを失うことなく実行できます。(必ずデータのバックアップを\n"
+"しておいてください) Mandriva Linux と Microsoft Windows を両方使う場合は\n"
+"このオプションを選んでください。(Windows を消去する場合は次を参照して\n"
+"ください: ディスク全体を消去)\n"
+"\n"
+" このオプションを使うと、Microsoft Windows のパーティション\n"
+"が小さくなります。その結果、Microsoft Windows でデータを保存したり\n"
+"新しいソフトウェアをインストールするための空き領域は少なくなるので\n"
+"注意してください。\n"
+"\n"
+" * %s: ハードドライブのすべてのデータとパーティション\n"
+"を削除し Mandriva Linux システムに入れ替える場合はこのオプションを選んで\n"
+"ください。確認後は取り消しできませんので十分注意してください。\n"
+"\n"
+" !! このオプションを選ぶとディスク上の全データが消去されます !!\n"
+"\n"
+" * %s: ハードドライブの全領域に Microsoft Windows がインストール\n"
+"されている場合のオプションです。ハードドライブのすべてを消去し\n"
+"パーティションの設定から始めるときに使います。\n"
+"\n"
+" !! このオプションを選ぶとディスク上の全データが消去されます !!\n"
+"\n"
+" * %s: パーティションを手動で設定する場合には\n"
+"このオプションを選んでください。注意: 応用の効く選択肢ですが一歩\n"
+"間違うとすべてのデータが消去されます。経験のない方にはお勧めでき\n"
+"ません。DiskDrake の詳しい使い方については Starter Guide の\n"
+"'Managing Your Partitions' を参照してください。"
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "既存のパーティションを使う"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "ディスク全体を消去"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"インストール完了!これで GNU/Linux システムを利用できる状態になりました。\n"
+"インストールメディア (CD-ROM かフロッピー) を抜いて「%s」をクリックし\n"
+"システムを再起動してください。コンピュータがハードウェアのテストを終える\n"
+"と、ブートローダのメニューが表示されます。そこで起動する OS を指定する\n"
+"ことができます。\n"
+"\n"
+"「%s」ボタンを押すと二つのオプションが提示されます:\n"
+"\n"
+" * %s: 今回と同じようなインストールを\n"
+"オペレータなしで可能にするインストールフロッピーを作成する。\n"
+"\n"
+" 注: 二つのオプションはボタンを押すまで表示されません。\n"
+"\n"
+" * %s: 半自動インストール。パーティションの設定は\n"
+"対話形式で行えます。\n"
+"\n"
+" * %s: 全自動インストール。ハードディスクは完全に\n"
+"上書きされ、すべてのデータが失われます。\n"
+"\n"
+" この機能は何台ものマシンに同じシステムをインストールするのに大変\n"
+"便利です。詳しくは、当社ウェブサイトの 'Auto install' をご覧ください。\n"
+"\n"
+" * %s (*): インストール中に選択された\n"
+"パッケージのリストを保存します。別のインストールに利用するには、\n"
+"フロッピーをドライブに挿入しインストールを開始してください。\n"
+"プロンプトが表示されたら [F1] を押して linux defcfg=\"floppy\" と\n"
+"入力し [Enter] を押します。 \n"
+"\n"
+"(*) FAT 形式のフロッピーが必要です。GNU/Linux で作成するには\n"
+"\"mformat a:\" または \"fdformat /dev/fd0\" と入力し、続けて \"mkfs.vfat\n"
+"/dev/fd0\" と入力します。"
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "自動インストールフロッピーを作成"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"既存の GNU/Linux のパーティションを使用する場合は、そのうちのいくつかを\n"
+"選択して、再フォーマットしてください。\n"
+"\n"
+"注意: 既存のパーティションすべてを再フォーマットする必要はありません。\n"
+"再フォーマットが必要なのは、OS を含むパーティション (例: /, /usr, /var)\n"
+"です。個人のデータが置かれているパーティション (典型的なのは /home) \n"
+"については再フォーマットの必要はありません。\n"
+"\n"
+"パーティションの選択は慎重に行ってください。フォーマットするとその\n"
+"パーティションのデータはすべて消去され復元できなくなります。\n"
+"\n"
+"パーティションをフォーマットする準備ができたら「%s」をクリックしてくださ"
+"い。\n"
+"\n"
+"Mandriva Linux を別のパーティションに新規にインストールする場合は\n"
+"「%s」をクリックしてください。\n"
+"\n"
+"ディスクの不良ブロックを検証するパーティションを選ぶには\n"
+"「%s」をクリックしてください。"
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Mandriva Linux のリリース後に、バグの修正、あるいはセキュリティ問題を解決\n"
+"するために更新されたパッケージがあるかもしれません。これらのパッケージを\n"
+"インターネットからダウンロードしてシステムを更新することができます。既に\n"
+"インターネットに接続していれば「%s」にチェックを入れてください。\n"
+"後で更新する場合は「%s」を選んでください。\n"
+"\n"
+"「%s」を選ぶと更新パッケージを取得するミラーサイトのリストが\n"
+"表示されます。お近くのミラーを選んでください。更新されるパッケージが\n"
+"表示されたら内容を確認し、インストールする場合は「%s」を、中止する\n"
+"場合は「%s」を押してください。"
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"ここでは DrakX を使ってあなたのマシンのセキュリティレベルを設定します。\n"
+"基本的には、マシンに重要なデータが保存されていたり、インターネットに直接\n"
+"接続している場合は、セキュリティレベルを高く設定しなければなりません。\n"
+"しかしセキュリティレベルを高くすると一般的には使い勝手が悪くなります。\n"
+"\n"
+"何を選択してよいか分からない場合はデフォルトのままにしておいてください。\n"
+"設定は後で変更できます。Mandriva Linux コントロールセンターには draksec\n"
+"というそのためのツールが用意されています。\n"
+"\n"
+"%s にセキュリティ管理者のメールアドレスを入力してください。\n"
+"セキュリティに関するメッセージはそこへ送られます。"
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "セキュリティ管理者"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"ここでは Mandriva Linux をインストールするパーティションを選びます。\n"
+"以前にインストールした GNU/Linux システムが残っていたり、別のツールを\n"
+"使って既にパーティションが定義されている場合は、既存のパーティションを\n"
+"利用することができます。そうでない場合はハードドライブのパーティションを\n"
+"定義しなければなりません。\n"
+"\n"
+"パーティションを作成するには、まずハードドライブを選択してください。\n"
+"例えば、IDE の最初のドライブであれば 'hda'、2 番目のドライブなら 'hdb'、\n"
+"SCSI の最初のドライブなら 'sda' をクリックしてください。\n"
+"\n"
+"パーティションの作成には次のオプションが使えます:\n"
+"\n"
+" * %s: 選択したドライブのすべてのパーティションを削除する\n"
+"\n"
+" * %s: ハードドライブの空き領域に自動的に ext3 と swap を\n"
+"作成する\n"
+"\n"
+"%s: ここから拡張機能を利用できます:\n"
+"\n"
+" * %s: パーティションテーブルをフロッピーに保存。後でパーティション\n"
+"テーブルのリカバリが必要になったときに役立つので、実行することを\n"
+"強くお勧めします。\n"
+"\n"
+" * %s: フロッピーからパーティションテーブルを読み込んで復元する\n"
+"\n"
+" * %s: パーティションテーブルが壊れてしまったときはこのオプション\n"
+"を使って修復を試みることができます。慎重に実行してください。\n"
+"(必ずしも修復できるとは限りません)\n"
+"\n"
+" * %s: 変更をすべて破棄し、ハードドライブに元々あった\n"
+"パーティションテーブルを再ロードする\n"
+"\n"
+" * %s: このオプションのチェックを外すと\n"
+"ユーザはフロッピーや CD-ROM などのリムーバブルメディアを手動でマウント\n"
+"しなくてはなりません。\n"
+"\n"
+" * %s: このオプションを選ぶとウィザードを使って\n"
+"パーティションを設定することができます。パーティションについて深く理解\n"
+"されてない方にはこのオプションをお勧めします。\n"
+"\n"
+" * %s: 変更を取り消す\n"
+"\n"
+" * %s: 拡張機能 (タイプ、オプション、フォーマットなど) を追加し\n"
+"ハードドライブの詳細情報を得ることができます。\n"
+"\n"
+" * %s: パーティションの設定完了後、変更をディスクに\n"
+"保存します。\n"
+"\n"
+"キーボードの矢印キーを使うとパーティションのサイズを細かく\n"
+"設定できます。\n"
+"\n"
+"ヒント: すべてのオプションはキーボード操作で実行できます。\n"
+"[Tab] と [Up/Down] キーを使ってパーティションを選択します。\n"
+"\n"
+"パーティションを選択すると次のショートカットが使えます:\n"
+"\n"
+" * Ctrl-c: 空のパーティションに新しいパーティションを作成\n"
+"\n"
+" * Ctrl-d: パーティションを削除\n"
+"\n"
+" * Ctrl-m: マウントポイントを設定\n"
+"\n"
+"使用可能な他のファイルシステムについては、Reference Manual の\n"
+"'ext2FS' の章をお読みください。\n"
+"\n"
+"PPC マシンにインストールする場合は最低 1 MB の HFS bootstrap \n"
+"パーティションを作成してください。yaboot ブートローダが使用します。\n"
+"このパーティションをもう少し大きくしておくと (例えば 50 MB くらい)、\n"
+"スペアカーネルや緊急ブート用の ramdisk イメージを保存するのに利用できます。"
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "リムーバブルメディアを自動的にマウント"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "標準/エキスパートモードの切り替え"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"ハードドライブに Microsoft のパーティションがいくつか検出されました。\n"
+"Mandriva Linux をインストールするためにリサイズするパーティションを\n"
+"選んでください。\n"
+"\n"
+"パーティションは次のように表示されます: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux Name\" は次の要素で構成されます:\n"
+" ハードドライブタイプ/ハードドライブ番号/パーティション番号 (例: hda1)\n"
+"\n"
+"ハードドライブタイプは、IDE をお使いの場合は \"hd\"、SCSI をお使いの場合は\n"
+"\"sd\" となります。\n"
+"\n"
+"ハードドライブ番号は常に \"hd\" または \"sd\" の後の一文字で表されます。\n"
+"IDE ハードドライブの場合:\n"
+"\n"
+" * \"a\" はプライマリ IDE コントローラのマスターハードドライブ\n"
+"\n"
+" * \"b\" はプライマリ IDE コントローラのスレーブハードドライブ\n"
+"\n"
+" * \"c\" はセカンダリ IDE コントローラのマスターハードドライブ\n"
+"\n"
+" * \"d\" はセカンダリ IDE コントローラのスレーブハードドライブ\n"
+"\n"
+"SCSI ハードドライブの場合は、\"a\" は \"lowest SCSI ID\",\n"
+" \"b\" は \"second lowest SCSI ID\"を意味します。\n"
+"\n"
+"\"Windows name\" は Windows のドライブ名\n"
+"(最初のディスクまたはパーティションは\"C:\")"
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"%s: 現在選択されている国名を確認してください。間違っている場合は\n"
+"「%s」をクリックして別の国名を選んでください。リストにない場合は\n"
+"「%s」をクリックするとすべての国名リストが表示されます。"
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"このステップは既存の GNU/Linux パーティションが検出されたときにのみ表示\n"
+"されます。\n"
+"\n"
+"DrakX は既存の Mandriva Linux システムを更新するかそれとも新規にインストー"
+"ル\n"
+"するかを尋ねます:\n"
+"\n"
+" * %s: 基本的には古いシステムを完全に消去してしまいます。\n"
+"しかし、パーティションの扱い方によっては既存のデータ (典型的なものとしては\n"
+"\"home\" ディレクトリ) を残すことができます。パーティションの設定やファイル\n"
+"システムを変更される場合はこのオプションをお使いください。\n"
+"\n"
+" * %s: これは既に Mandriva Linux にインストールされている\n"
+"パッケージをアップデートします。現在のパーティションの設定やユーザデータは\n"
+"変更されません。その他の設定の大部分は標準のインストールと同様に行えます。\n"
+"「アップグレード」は Mandriva Linux のバージョンが \"8.1\" 以降であれば\n"
+"問題ないはずです。\"8.1\" より古いバージョンにはお勧めできません。"
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"使用する言語に応じて、DrakX は自動的にキーボードの種類を選択します。\n"
+"選ばれたキーボードがあなたのキーボードと合っていることを確認してください。\n"
+"また、目的に応じて別のものを選ぶこともできます。\n"
+"\n"
+"お持ちのキーボードがお使いの言語と一致していない場合も、このステップで\n"
+"変更できます。リストの中からお使いのキーボードを選んでください。\n"
+"\n"
+"「%s」を押すとサポートされているキーボードのリストが表示されます。\n"
+"\n"
+"非ラテンキーボードを選択した場合は、次のステップでラテン/非ラテンを\n"
+"切り替えるキーを指定できます。"
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"まず、お使いになる言語を選んでください。\n"
+"\n"
+"ここで選択された言語は、インストーラ、ドキュメントをはじめ、システム全般\n"
+"に適用されます。まず居住地域を選択し、次に使用する言語を選んでください。\n"
+"\n"
+"「%s」を押すと他の言語を追加することができます。例えば日本語と\n"
+"スペイン語を両方使われるのであれば、まずリストから日本語をデフォルト言語に\n"
+"選び「詳細」から「%s」を選んでください。こうすることで、日本語と\n"
+"スペイン語両方のドキュメントと必要なアプリケーションがインストールされま"
+"す。\n"
+"\n"
+"ユニコード (UTF-8) サポートについて: ユニコードは世界中のすべての言語を\n"
+"カバーします。しかしながら、GNU/Linux 環境でのユニコードサポートはまだ開発\n"
+"途上にあります。そのため、Mandriva Linux ではユーザの選択に応じてその使用を\n"
+"制限しています:\n"
+"\n"
+" * レガシーなエンコードを使用する言語 (latin1/ロシア語/日本語/中国語/\n"
+"ハングル/タイ語/ギリシャ語/トルコ語/iso-8859-2の大部分の言語など) を選択\n"
+"すると、それぞれのエンコードが適用されます。\n"
+"\n"
+" * その他の言語にはデフォルトでユニコードを使用します。\n"
+"\n"
+" * 二つ以上のエンコードの異なる言語を選択すると、システム全体に\n"
+"ユニコードが適用されます。\n"
+"\n"
+" * 選択した言語にかかわらず、システム全体にユニコードを強制することも\n"
+"可能です。その場合は「%s」を選んでください。\n"
+"\n"
+"言語はいくつでも追加することができます。「%s」を選ぶと\n"
+"利用可能なすべての言語がインストールされます。それぞれの言語サポートには\n"
+"翻訳されたメッセージ/フォント/スペルチェッカーなどが含まれます。\n"
+"\n"
+"言語設定を切り替えるときは LocaleDrake を使います。システム全体の設定を変更\n"
+"するときは、root 権限で \"localedrake\" を実行してください。一般ユーザ権限\n"
+"で実行すると、そのユーザの言語設定だけが変更されます。"
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "スペイン語"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"DrakX はたいていの場合お使いのマウスのボタン数を正しく検出します。\n"
+"ボタン数が 2 つだと推定した場合は、第 3 ボタンのエミュレーションを\n"
+"設定します。 2 ボタンマウスの第 3 ボタンのエミュレーションは、\n"
+"左右のボタンの同時押しです。DrakX は PS/2, シリアル, USB などの種類を\n"
+"自動的に検出します。\n"
+"\n"
+"ホイールなしの 3 ボタンマウスの場合は「%s」を選んでください。\n"
+"DrakX はホイールエミュレーションを設定します。中ボタンを押してマウス\n"
+"カーソルを上下に動かしてください。\n"
+"\n"
+"何らかの理由で別のタイプのマウスを指定するときは、表示されたリストから\n"
+"選んでください。\n"
+"\n"
+"%s を選択して 'generic' マウスを指定してもかまいません。これはほぼすべての\n"
+"マウスに使えます。\n"
+"\n"
+"デフォルト以外のマウスを選ぶとテストスクリーンになります。ボタンと\n"
+"ホイールを使って正しく動作することを確認してください。うまく動作しない\n"
+"場合はスペースまたはリターンキーを押してテストを中止してください。\n"
+"マウス選択リストに戻ります。\n"
+"\n"
+"ホイールマウスはまれに正しく自動検出されないことがありますので、その場合は\n"
+"リストから選んでください。必ずマウスが接続されているポートに合ったものを\n"
+"選んでください。マウスを選択し「%s」を押すとマウスのイメージが\n"
+"スクリーンに表示されます。ホイールを動かして正しく動作することを確認して\n"
+"ください。ホイールをスクロールすると画面上のホイールが動くはずです。ボタン\n"
+"もテストし、マウスの動きに応じてカーソルが移動することを確認してください。"
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "ホイールエミュレーション付き"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "ユニバーサル/汎用 PS/2 & USB マウス"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"正しいポートを選んでください。例えば、Windows での COM1 ポートは\n"
+"GNU/Linux では ttyS0 という名前になります。"
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"root パスワードの設定は GNU/Linux システムのセキュリティにとって最も重要な\n"
+"ポイントです。root はシステムの管理者であり、アップデート/ユーザの追加/\n"
+"システム設定の変更を行える唯一の存在です。root の権限があれば、どんなこと\n"
+"でもできるのです。推測されにくいパスワードを選ばなければなりません。極端に\n"
+"簡単なパスワードにすると DrakX が警告を発します。root パスワードは必須では\n"
+"ありませんが、ここで設定しておくことを強くお勧めします。GNU/Linux も他の\n"
+"OS と同様にオペレータの誤操作という危険にさらされています。root はすべての\n"
+"制限を越えて、ちょっとした不注意からパーティションの全データを削除すること\n"
+"もできます。したがって、簡単に root になれないようにしておかなければなりま\n"
+"せん。\n"
+"\n"
+"パスワードには数字とアルファベットが使えます。最低でも 8 文字以上にします。\n"
+"決して root のパスワードを書き留めたりしないでください。システムを危険に\n"
+"さらすことになります。\n"
+"\n"
+"警告: パスワードを長くしすぎたり複雑にしすぎたりしないでください。\n"
+"思い出せなくなります!\n"
+"\n"
+"入力したパスワードは画面には表示されません。打ち間違いを防ぐために\n"
+"パスワードは 2 回入力します。同じ打ち間違いを 2 度してしまうと、最初に\n"
+"root になるにはその「意図に反した」パスワードを入力しなければなりません。\n"
+"\n"
+"あなたのコンピュータへのアクセスを認証サーバに管理させる場合は\n"
+"「%s」を押してください。\n"
+"\n"
+"あなたのネットワークが LDAP/NIS/PDC Windows Domain 認証サービスのいずれか\n"
+"を使用している場合は、「%s」に正しいものを選んでください。\n"
+"不明な場合はネットワーク管理者に確認してください。\n"
+"\n"
+"何らかの理由でパスワードを覚えられない、あるいはインターネットには一切\n"
+"接続しない、または、あなたのコンピュータを使うすべての人を全面的に信頼\n"
+"できる、といった場合には「%s」を選んでもいいでしょう。"
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "認証"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"ブートローダはコンピュータ起動時に開始される小さなプログラムです。\n"
+"これがシステムを立ち上げます。ブートローダのインストールは通常完全に\n"
+"自動化されています。DrakX はディスクのブートセクタを分析し検出した\n"
+"ものに応じて以下を実行します:\n"
+"\n"
+" * Windows のブートセクタが検出されると DrakX はこれを GRUB/LILO の\n"
+"ブートセクタに置き換えます。これによって、あなたのマシンにインストール\n"
+"されている他の OS と GNU/Linux のどちらでも起動できるようになります。\n"
+"\n"
+" * GRUB か LILO ブートセクタが検出されると新しいものに置き換えます。\n"
+"\n"
+"どこにブートセクタを置けばいいのか不明なときは、DrakX が質問します。\n"
+"一般的には「%s」が最も安全な場所です。\n"
+"「%s」を選ぶとブートローダはインストールされません。\n"
+"このオプションは意味をよく理解されている場合以外は選ばないでください。"
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"ここでは、コンピュータの印刷システムを選択します。他の OS には一種類しか\n"
+"ありませんが、Mandriva Linux には二種類の印刷システムがあります。それぞれ\n"
+"利点と欠点がありますので、より適したものを選んでください。\n"
+"\n"
+" * %s - 'Print, Do not Queue (印刷する。キューはしない)' の略。\n"
+"マシンにプリンタを直接接続している/紙づまりのときにすぐ中断したい/\n"
+"ネットワークプリンタがない場合はこれを選んでください。(%s は簡単な\n"
+"ネットワークにしか対応していません。また、ネットワーク内で使うと多少遅く\n"
+"なります)。初めて GNU/Linux をお使いの場合はpdqをお勧めします。\n"
+"\n"
+" * %s - 'Common Unix Printing System' の略。\n"
+"ローカルプリンタへの印刷も地球の裏側のプリンタへの印刷も問題なく処理\n"
+"します。サーバとしても使えて、昔ながらの lpd 印刷システムのクライアント\n"
+"にもなるので、印刷サービスを必要とする古いシステムとも互換性があります。\n"
+"強力であるにもかかわらず基本的な設定は pdq と同じくらい簡単です。\n"
+"lpd サーバのエミュレートが必要な場合は cups-lpd デーモンを有効にして\n"
+"ください。「%s」には印刷/プリンタオプションの選択/プリンタの管理などの\n"
+"ためのグラフィカルフロントエンドがあります。\n"
+"\n"
+"選択した印刷システムを後で変更する場合は、Mandriva Linux コントロール\n"
+"センターの PrinterDrake で「%s」をクリックしてください。"
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "エキスパート"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX はまずお使いのコンピュータのIDEデバイスを検出します。PCI/SCSI カード\n"
+"も同時に検出します。SCSI カードが見つかれば、DrakX はそれに適したドライバを\n"
+"自動的にインストールします。\n"
+"\n"
+"ハードウェアの検出はいつも成功するとは限りません。DrakX はハードドライブの\n"
+"検出に失敗することがあります。そのような場合はお使いのハードウェアを手動で\n"
+"指定する必要があります。\n"
+"\n"
+"PCI/SCSI アダプタを手動で指定するときには、DrakX がそれ専用のオプションを\n"
+"設定するかどうか質問してきます。DrakX にハードウェアを調査させて、アダプタ\n"
+"を初期化するために必要なそのカード専用のオプションを検知させてください。\n"
+"たいていの場合、うまくいきます。\n"
+"\n"
+"DrakX がオプションを検知できず、ハードウェアにどのパラメータを送ればよい\n"
+"のかを自動的に判断できなかった場合は、手動でドライバを設定しなければなり\n"
+"ません。"
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"%s: サウンドカードが検出されると、ここに表示されます。\n"
+"表示されたサウンドカードがお使いのものでない場合は、ボタンをクリックして\n"
+"別のドライバを選んでください。"
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"DrakX はあなたのシステムから収集した情報を表示します。ご使用のハードウェア"
+"の\n"
+"構成にもよりますが、下記の一部もしくはすべてについて確認することができま"
+"す。\n"
+"それぞれの項目には検出したハードウェアと現在の設定内容が表示されます。\n"
+"設定を変更するには「%s」をクリックしてください。\n"
+"\n"
+" * %s: 使用中のキーボードの設定を確認/変更できます。\n"
+"\n"
+" * %s: 現在選択されている国を確認できます。変更するには「%s」\n"
+"をクリックして他の国を選んでください。あなたの国がリストにないときは\n"
+"「%s」を押してください。すべての国名リストが表示されます。\n"
+"\n"
+" * %s: DrakX は選択された国に基づいてタイムゾーンを推定\n"
+"します。誤っている場合は「%s」をクリックしてください。\n"
+"\n"
+" * %s: 現在のマウスの設定を確認できます。変更する必要が\n"
+"あるときはボタンを押してください。\n"
+"\n"
+" * %s: 「%s」を押すとプリンタ設定ウィザードが\n"
+"開きます。新しいプリンタの追加方法については Starter Guide の該当する章を\n"
+"参照してください。マニュアルに掲載されているインターフェースは、\n"
+"インストール中に使用したものとほぼ同じです。\n"
+"\n"
+" * %s: サウンドカードが検出されると、ここに表示\n"
+"されます。表示されたものがお使いのものと異なる場合は、ボタンをクリックして\n"
+"別のドライバを選んでください。\n"
+"\n"
+" * %s: テレビカードをお使いであれば、ここに\n"
+"設定情報が表示されます。お持ちのカードが自動検出されなかった場合は\n"
+"「%s」をクリックして手動で設定を試みてください。\n"
+"\n"
+" * %s: 正しく設定されていないときは「%s」を押して正しい\n"
+"パラメータに変更してください。\n"
+"\n"
+" * %s: DrakX はグラフィカルインターフェースの解像度を\n"
+"\"800x600\" か \"1024x768\" に設定します。デフォルトの設定が適当でない場合\n"
+"は「%s」をクリックして設定し直してください。\n"
+"\n"
+" * %s: インターネットとローカルネットワークの設定。\n"
+"マニュアルを参照するか、もしくはインストール完了後に Mandriva Linux\n"
+"コントロールセンターのヘルプに従って行ってください。\n"
+"\n"
+" * %s: あなたのマシンがプロキシサーバの背後にあれば\n"
+"ここで HTTP/FTP プロキシアドレスを設定できます。\n"
+"\n"
+" * %s: 前のステップで設定したセキュリティレベルを\n"
+"設定し直すことができます。\n"
+"\n"
+" * %s: インターネットに接続されるのであれば、侵入などの\n"
+"危険からあなたのマシンを守るためにファイアウォールを設定してください。\n"
+"詳しい設定方法については、Starter Guide の該当する章を参照してください。\n"
+"\n"
+" * %s: ブートローダの設定を変更するときはこのボタンを\n"
+"押してください。(注意:これは上級者向きです) 印刷されたドキュメントまたは\n"
+"Mandriva Linux コントロールセンターのブートローダに関するヘルプを参照して\n"
+"ください。\n"
+"\n"
+" * %s: ここではどのサービスを有効にするかを細かく設定できます。\n"
+"サーバになるマシンであれば設定を見直すことをお勧めします。"
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN カード"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "グラフィカルインターフェース"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Mandriva Linux をインストールするためにフォーマットするハードドライブを\n"
+"選んでください。注意: このドライブのデータはすべて失われ、回復すること\n"
+"はできません。"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"このハードドライブのすべてのデータとパーティションを削除する場合は\n"
+"「%s」をクリックしてください。\n"
+"注意: 「%s」をクリックすると、Windows のデータも含め、このドライブ上の\n"
+"すべてのデータとパーティションは回復できなくなります。\n"
+"\n"
+"このハードドライブのデータとパーティションを消去せずにこの操作を中止\n"
+"する場合は「%s」をクリックしてください。"
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "次へ ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- 戻る"
diff --git a/perl-install/install/help/po/ko.po b/perl-install/install/help/po/ko.po
new file mode 100644
index 000000000..72109c560
--- /dev/null
+++ b/perl-install/install/help/po/ko.po
@@ -0,0 +1,1504 @@
+# Korean translation of drakbootdisk.
+# Copyright (C) 2001 Free Software Foundation, Inc.
+# Jaegeum Choe <baedaron@hananet.net>, 2001.
+#
+# changes asked by HP people -- pablo 2003-01-23
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2002-09-09 09:08+0900\n"
+"Last-Translator: Jaegeum Cze <baedaron@hanafos.com>\n"
+"Language-Team: Korean <beadaron@hanafos.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: ../help.pm:14
+#, fuzzy, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"더 진행하기 전에 사용자 계약서를 자세하게 읽어 보세요.\n"
+"사용자 계약서는 전체 맨드리바 리눅스 배포본을 포괄하는 내용이며,\n"
+"만약 동의하지 않으신다면 「거부」버튼을 누르세요. 거부 버튼은 현재 설치를\n"
+"즉각 종료하게 합니다. 설치를 계속하고 싶다면 「동의」버튼을 누르세요."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+
+#: ../help.pm:54
+#, fuzzy, c-format
+msgid "Do you want to use this feature?"
+msgstr "aboot를 사용하시겠습니까?"
+
+#: ../help.pm:57
+#, fuzzy, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"선택된 하드디스크상의 기존 리눅스 파티션이 위에 열거되어 있습니다.\n"
+"마법사에 의해 이미 설정된 사항을 보존할 수도 있으며, 이는 대부분의 일반\n"
+"설치에 적절한 설정입니다. 만약 직접 변경하시겠다면, 최소한 루트 파티션"
+"(「/」)\n"
+"은 반드시 지정해야 합니다. 너무 작은 파티션을 선택하지는 마세요. 충분한 소프"
+"트웨어\n"
+"를 설치하지 못하는 수가 있습니다. 만약 개인 데이터가 별도의 파티션에 저장되도"
+"록\n"
+"하고 싶다면, 「/home」파티션을 별도로 만드세요.(오직 리눅스 파티션이 둘 이상"
+"일\n"
+"경우에만 가능합니다.)\n"
+"\n"
+"각 파티션은 다음과 같이 열거됩니다: 「이름」,「용량」.\n"
+"\n"
+"「이름」영역의 구조: 「하드디스크 유형」,「하드디스크 번호」,\n"
+"「파티션 번호」(가령, 「hda1」).\n"
+"\n"
+"「하드디스크 유형」은, IDE 디스크일 경우에는 「hd」이며,\n"
+"SCSI 디스크일 경우에는 「sd」입니다.\n"
+"\n"
+"「하드디스크 번호」는 항상 「hd」또는 「sd」뒤에 오는 문자입니다.\n"
+"IDE 하드디스크의 경우:\n"
+"\n"
+" ○ 「a」는 「주 IDE 제어기상의 주 디스크」를 의미합니다.\n"
+"\n"
+" ○ 「b」는 「주 IDE 제어기상의 보조 디스크」를 의미합니다.\n"
+"\n"
+" ○ 「c」는 「보조 IDE 제어기상의 주 디스크」를 의미합니다.\n"
+"\n"
+" ○ 「d」는 「보조 IDE 제어기상의 보조 디스크」를 의미합니다.\n"
+"\n"
+"SCSI 하드디스크의 경우, 「a」는 「최소 SCSI ID」, 「b」는 「다음 최소 SCSI "
+"ID」\n"
+"와 같은 식으로 의미를 가집니다."
+
+#: ../help.pm:88
+#, fuzzy, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"맨드리바 리눅스 설치 시스템은 여러 장의 CD로 구성되어 있습니다.\n"
+"드레이크X는 선택된 각각의 팩키지가 어느 CD에 들어 있는지 이미 알고 있습니"
+"다.\n"
+"필요시 현재 CD를 자동으로 꺼내고 다른 CD의 삽입을 요청할 것입니다."
+
+#: ../help.pm:95
+#, fuzzy, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"이제 시스템상에 설치할 프로그램들을 지정할 차례입니다.\n"
+"맨드리바 리눅스에는 설치할 수 있는 수천 개의 프로그램들이 있기 때문에\n"
+"사용자가 그것들을 모두 다 알지는 못할 것입니다.\n"
+"\n"
+"만약 표준 CD 설치를 수행하고 있는 중이라면, 현재 가지고 있는 CD들에 대해\n"
+"질문할 것입니다. 가지고 있는 CD들의 라벨을 확인하고 현재 님의 상황에 맞는\n"
+"선택 상자를 지정하세요. 계속할 준비가 되었으면, 「확인」을 누르세요.\n"
+"\n"
+"팩키지들은 용도에 따라 그룹으로 나열되어 있습니다.\n"
+"그룹들 자체는 또다시 네 개의 영역으로 나열되어 있습니다:\n"
+"\n"
+" ○ 「워크스테이션」: 시스템을 워크스테이션으로 사용할 계획이라면,\n"
+"하나 이상의 해당 그룹을 선택하세요.\n"
+"\n"
+" ○ 「개발」: 시스템을 프로그래밍의 용도로 사용하려 한다면, 원하는 그룹들을\n"
+"선택하세요.\n"
+"\n"
+" ○ 「서버」: 끝으로, 시스템이 서버되기를 원한다면, 여기서 대부분의 일반 서비"
+"스들이\n"
+"설치되도록 선택할 수 있습니다.\n"
+"\n"
+" ○ 「그래픽 환경」: 여기는 님이 선호하는 그래픽 환경을 선택하는 곳입니다.\n"
+"그래픽 환경 워크스테이션을 원한다면, 최소한 하나는 선택해야 합니다!\n"
+"\n"
+"마우스 포인터를 그룹 이름들 위로 올리면, 해당 그룹에 대한 작은 풍선 도움말"
+"을\n"
+"보여 줄 것입니다.\n"
+"\n"
+"「개별 팩키지 선택」옵션을 선택할 수도 있습니다.\n"
+"이 옵션은 님이 제공되어지는 팩키지들에 대해 잘 알고 있거나, 설치되는 팩키지들"
+"에 대한\n"
+"총체적인 제어를 원할 경우에 유용할 것입니다.\n"
+"\n"
+"만약 님이 「업데이트」모드로 설치를 시작했다면, 기존에 설치되지 않은 팩키지들"
+"이\n"
+"설치되는 것을 막기위해 모든 그룹을 선택해제할 수 있습니다. 이렇게 하는 것은\n"
+"기존 시스템을 업데이트하거나 고치기 위한 좋은 방법입니다."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "업그레이드"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "With basic documentation"
+msgstr "문서"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "Truly minimal install"
+msgstr "최소 설치"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr ""
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"이제 부팅시에 어떤 서비스를 자동으로 시작하게 할지를 선택해야 합니다.\n"
+"\n"
+"현재 설치된 모든 서비스들이 여기에서 보여지고 있습니다.\n"
+"신중하게 검토해서 부팅시에 항상 필요로하는 것이 아니라면 선택을 해제하세요.\n"
+"\n"
+"마우스를 서비스 이름들 위로 올리면, 각 서비스에 대한 간단한 설명을 보여 줄 것"
+"입니다.\n"
+"만약 어떤 서비스가 필요한 것인지 아닌지를 잘 모르겠다면,\n"
+"기본값으로 그냥 두는 것이 안전한 선택입니다.\n"
+"\n"
+"이 컴퓨터를 서버용으로 사용하려 한다면, 이 단계에서 매우 주의해야 합니다.\n"
+"필요하지 않은 서비스가 시작되는 것은 바람직하지 않습니다. 일부 서비스는 \n"
+"서버상에서 실핸된다면 위험할 수도 있다는 것을 명심하세요. 원칙적으로 \n"
+"꼭 필요한 서비스들만 선택하세요."
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, fuzzy, c-format
+msgid "Automatic time synchronization"
+msgstr "자동 시간 동기화 (NTP 사용)"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, fuzzy, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"마지막으로, 부팅시에 자동으로 그래픽 환경을 사용할 것인지를 질문할 것입니"
+"다.\n"
+"주의: 이 질문은 설정을 테스트하지 않았을지라도 나타나게 될 것입니다.\n"
+"시스템을 확실히 서버용으로 사용할 것이거나, 화면 설정에 성공하지 못한 경우라"
+"면\n"
+"「아니오」를 누르세요."
+
+#: ../help.pm:319
+#, fuzzy, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"이제 하드디스크의 어디에 리눅스 맨드리바를 설치할지를\n"
+"선택해야 합니다. 만약 하드디스크가 완전히 비어 있거나 또는\n"
+"다른 운영체제가 하드디스크 전체를 점유하고 있다면, 파티션을\n"
+" 나누어야 합니다. 파티션을 나눈다함은 리눅스 맨드리바가\n"
+"설치될 공간을 확보하기 위하여 디스크를 논리적으로 분할한다는 의미입니다.\n"
+"\n"
+"일반적으로 파티션 과정을 거쳐 버리면 기존 데이터의 복구가 불가능해지기\n"
+"때문에,초보자에게는 고민스럽고 걱정스러운 작업입니다. 하지만 마법사를\n"
+"사용하면 이 작업을 쉽게 할 수 있습니다. 시작하기 전에, 충분한 시간을 가지고\n"
+"사용자 설명서를 읽어 보세요.\n"
+"\n"
+"현재 전문가 모드로 설치를 진행 중이라면, 리눅스 맨드리바의 파티션 분할 도구"
+"인\n"
+"디스크드레이크를 만나게 될 것입니다. 이 도구는 파티션드르이 세밀한 조정을 가"
+"능하게\n"
+"합니다. 설명서의 디스크드레이크 장을 보세요; 사용법이 동일합니다. 위에서 언급"
+"했듯이\n"
+"화면에 있는 「마법사」버튼을 눌러서, 파티션 분할 작업을 위한 마법사를\n"
+"실행할 수도 있습니다.\n"
+"\n"
+"만약 이전에 리눅스를 설치한 적이 있거나 다른 파티션 도구로 만들어 놓은 리눅스"
+"용\n"
+"파티션들이 이미 존재한다면, 리눅스 설치에 사용할 파티션들을\n"
+"선택만 하면 됩니다.\n"
+"\n"
+"만약 아직 리눅스용 파티션이 없다면, 새로 만들어야 합니다. 그러기 위해서는\n"
+"위에 있는 마법사를 사용하세요. 하드디스크의 설정에 따라 다음과 같은\n"
+"몇 가지의 방법이 있습니다:\n"
+"\n"
+" ○ 빈 공간 사용: 빈 디스크의 자동 파티션 분할 작업을 하게 됩니다.\n"
+"파티션 분할 작업에 대해 더 이상 신경쓸 필요가 없게 됩니다.\n"
+"\n"
+" ○ 기존 파티션 사용: 마법사가 기존의 리눅스 파티션을 발견한 경우입니다.\n"
+"기존의 파티션에다가 리눅스를 설치할려면, 이것을 선택하세요.\n"
+"\n"
+" ○ 윈도우즈 파티션의 빈 공간 사용: 만약 MS 윈도우즈가 설치되어 있고 모든 디스"
+"크 공간을 사용하고 있다면,\n"
+"리눅스용 공간을 새로 만들어야 합니다. 이렇게 하기위해서는, 윈도우즈 파티션을 "
+"지우거나(「전체 디스크 삭제」\n"
+"와 「전문가 모드」부분을 참조하세요.), 윈도우즈 파티션의 크기를 재조정하여 공"
+"간을 확보할 수 있습니다. 윈도우즈\n"
+"파티션의 재조정은 기존의 데이터를 파괴하지 않기 때문에, 윈도우즈와 리눅스 맨"
+"드레이크를 한 컴퓨터에서 함께\n"
+"사용하고자 한다면 이것이 권장되는 방법입니다.\n"
+"\n"
+"이 방법을 선택한다면, 윈도우즈 파티션의 크기가 현재보다 줄어들기 때문에 윈도"
+"우즈를\n"
+"사용할 때에는 소프트웨어를 설치하거나 데이터를 저장할 빈 공간이 그만큼 적어진"
+"다는\n"
+"것을 유념하세요.\n"
+"\n"
+" ○ 전체 디스크 삭제: 만약 디스크상의 모든 기존 파티션과 데이터를 삭제하고\n"
+"리눅스 맨드리바를 위한 파티션으로 바꾸고 싶다면, 이것을 선택하세요.\n"
+"주의하세요: 일단 이렇게 하고나면 다시 되돌릴 수 없습니다.\n"
+"\n"
+" !! 이 옵션을 선택하게 되면, 디스크상의 모든 데이터가 손실됩니다. !!\n"
+"\n"
+" ○ 윈도우즈 제거: 디스크상의 모든 파티션을 삭제하고, 초기화된 디스크 상태에"
+"서\n"
+"파티션 작업을 다시 합니다. 디스크상의 모든 데이터는 손실됩니다.\n"
+"\n"
+" !! 이 옵션을 선택하게 되면, 디스크상의 모든 데이터가 손실됩니다. !!\n"
+"\n"
+" ○ 전문가 모드: 만약 수동으로 파티션 작업을 하고자 한다면, 이것을 선택하세"
+"요.\n"
+"이 방법은 대단히 강력하지만 또한 위험할 수 있다는 것을 명심하세요. 쉽게 데이"
+"터를\n"
+"잃어 버릴 수 있습니다. 전문적인 지식이 없다면, 이 방법은 절대 선택하지 마세"
+"요."
+
+#: ../help.pm:377
+#, fuzzy, c-format
+msgid "Use existing partition"
+msgstr "기존의 파티션 사용"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "전체 디스크 삭제"
+
+#: ../help.pm:380
+#, fuzzy, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"설치를 완료하였습니다. 님의 GNU/리눅스 시스템은 이제 사용할 준비가\n"
+"되었습니다. 시스템을 다시 부팅하려면 「확인」을 누르세요.\n"
+"컴퓨터가 다시 부팅되면, (다중 부팅이 설정되었을 경우에) 님이 선호하는\n"
+"운영체제를 시작할 수 있습니다.\n"
+"\n"
+"「고급」버튼(점문가 모드에만 있음)을 누르면 두 개의 추가 버튼이 나타넙니다:\n"
+"\n"
+" ○ 「자동 설치 플로피 생성」: 님이 지금까지 설치한 내용을 관리자의 별다른\n"
+"도움없이 자동으로 전체 설치를 수행하게 하는\n"
+"자동 설치 플로피 디스크를 만듭니다.\n"
+"\n"
+" 주의: 버튼을 누르면 두 개의 개별적인 옵션이 나타납니다:\n"
+"\n"
+" ○ 「재생」: 파티션 나누기 작업만 제외하고, 나머지 과정은 자동설치로\n"
+"수행하는 자동설치 플로피를 만듭니다.\n"
+"\n"
+" ○ 「자동화」: 디스크상의 모든 데이터를 삭제하고 모든 파티션이 다시\n"
+"만들어지는 완벽한 자동 설치를 수행하는 플로피를 만듭니다.\n"
+"\n"
+" 이 기능을 사용하면, 많은 수의 비슷한 컴퓨터에 설치작업을 할 때 편리합니"
+"다.\n"
+" 자세한 정보는 저희 윕사이트의 자동설치관련 부분을 참조하세요.\n"
+"\n"
+" ○ 「팩키지 선택사항 저장」(*): 앞 단계에서 선택한 팩키지 목록을 저장합니"
+"다.\n"
+"또 다른 설치를 수행할 때, 플로피를 드라이브에 넣고, [F1]키를 눌러서\n"
+"설치 화면이 도움말 화면으로 들어가게 한후, 「linux defcfg=\"floppy\"」라고\n"
+"입력하세요.\n"
+"\n"
+"(*) 님은 FAT으로 포맷된 플로피 하나를 가지고 있어야 합니다.\n"
+" (리눅스에서 포맷하려면, 「mformat a:」명령을 사용하세요.)"
+
+#: ../help.pm:412
+#, fuzzy, c-format
+msgid "Generate auto-install floppy"
+msgstr "자동 설치 플로피 디스크 생성"
+
+#: ../help.pm:415
+#, fuzzy, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"새로 만들어진 파티션들은 포맷되어져야 합니다.\n"
+"(포맷이라 함은 파일 시스템을 만든다는 의미입니다.)\n"
+"\n"
+"지금 기존의 데이터를 삭제하기 위해서 기존 파티션들을\n"
+"다시 포맷할 수도 있습니다. 그렇게 하고 싶다면, 해당 파티션들도\n"
+"선택하세요.\n"
+"\n"
+"주의: 모든 기존 파티션들을 다시 포맷할 필요는 없습니다.\n"
+"(「/」,「/usr」,「/var」와 같은) 운영체제를 담고 있는 파티션들은\n"
+"다시 포맷하더라도, (「/home」과 같은) 데이터를 단고 있는 파티션들은\n"
+", 기존 데이터를 보존하고 싶을 경우, 다시 포맷할 필요가 없습니다.\n"
+"\n"
+"파티션들을 선택할 때 주의하세요. 일단 포팩이 되고나면,\n"
+"선택됐던 파티션상에 존재했던 모든 데이터는 삭제되며,\n"
+"복구가 불가능해 집니다.\n"
+"\n"
+"포맷할 준비가 되었으면, 「확인」을 누르세요.\n"
+"\n"
+"맨드리바 리눅스 설치용 파티션을 다시 선택하고 싶다면,\n"
+"「취소」를 누르세요.\n"
+"\n"
+"디스크상의 손상된 블럭을 체크하며 포맷하고 싶다면,\n"
+"「고급」을 누르세요."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, fuzzy, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"이제 컴퓨터의 보안 수준을 선택할 단계입니다.\n"
+"자유로운 사용을 위해서는 컴퓨터가 보다 더 많이 개방되어져야 하며,\n"
+"저장된 데이터의 중요성이 크면 클수록, 더 높은 보안 수준이 유지되어야 합니"
+"다.\n"
+"그러나 일반적으로 보다 높은 보안 수준은 보다 많은 사용상의 불편함을 감수해야"
+"만\n"
+"이루어질 수 있음을 유념하세요. 각 보안 수준이 의미하는 바에 대한 자세한 정보"
+"를\n"
+"알고 싶다면 「사용자 지침서」의 MSEC 장을 참조하세요.\n"
+"\n"
+"어느 것을 선택해야 할지 잘 모르겠다면, 기본값을 유지하세요."
+
+#: ../help.pm:461
+#, fuzzy, c-format
+msgid "Security Administrator"
+msgstr "보안 관리자 (로그인 또는 이메일)"
+
+#: ../help.pm:464
+#, fuzzy, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"이제 어느 파티션이 맨드리바 리눅스의 설치용으로 사용되어야 할지를\n"
+"선택해야 합니다. 이전에 다른 GNU/리눅스를 설치한 적이 있거나, 다른 파티션\n"
+"도구를 사용하여 이미 파티션들이 정의되어 있다면, 기존 파티션을 그대로 사용\n"
+"할 수 있습니다. 그렇지 않다면 하드디스크의 파티션들을 지금 만들어야 합니다.\n"
+"\n"
+"파티션을 만들려면, 먼저 하드디스크를 선택하세요. 파티션을 만들여는 하드디스크"
+"가\n"
+"첫 번째 IDE 디스크라면 「hda」, 두 번째 IDE 디스크라면 「hdb」와 같은 식이"
+"며,\n"
+"첫 번째 SCSI 디스크라면 「sda」와 같은 식입니다.\n"
+"\n"
+"파티션을 나눌 때, 다음 옵션을 사용할 수 있습니다:\n"
+"\n"
+" ○ 「모두 삭제」: 선택된 디스크의 모든 기존 파티션을 삭제합니다.\n"
+"\n"
+" ○ 「자동 할당」: 선택된 디스크의 빈 공간에 자동으로 EXT2와 스왑 파티션을\n"
+"할당합니다.\n"
+"\n"
+" ○ 「파티션 테이블 복구」: 파티션 테이블이 손상되어 있을 경우, 이 옵션으로\n"
+"손산된 테이블을 복구합니다. !!주의!! 복구시도가 실패할 수도 있다는 것을\n"
+"명심하세요.\n"
+"\n"
+" ○ 「되돌리기」: 변경 사항을 취소합니다.\n"
+"\n"
+" ○ 「다시 읽기」: 모든 변경 사항을 취소하고, 초기 파티션 테이블을 다시 읽습"
+"니다.\n"
+"\n"
+" ○ 「마법사」: 마법사를 실행하여 파티션을 나눕니다. 파티션 나누기에 대한 지"
+"식이\n"
+"부족하다면, 이 옵션을 사용하세요.\n"
+"\n"
+" ○ 「플로피로부터 복구」: 이전에 플로피에 저장해둔 파티션 정보을 사용하여\n"
+"파티션 테이블을 복구합니다.\n"
+"\n"
+" ○ 「플로피에 저장」: 파티션 정보를 플로피에 저장합니다. 다음에 파티션 테이"
+"블을 복구할\n"
+"일이 생길 때 사용됩니다. 이 과정을 수행할 것을 권장하는 바입니다.\n"
+"\n"
+" ○ 「완료」: 파티션 나누기 작업을 끝마치면, 이 옵션으로 변경 사항을 저장합니"
+"다.\n"
+"\n"
+"정보: 키보드로 옵션을 선택할 수도 있습니다. 파티션들간의 이동은 [Tab]키와\n"
+"[Up/Down]키를 사용하세요.\n"
+"\n"
+"파티션을 선택하고 난 후에는 다음 키를 사용할 수 있습니다:\n"
+"\n"
+" ○ 「Ctrl + c」: (빈 파티션이 선택된 경우,) 새 파티션 만들기.\n"
+"\n"
+" ○ 「Ctrl + d」: 파티션 삭제하기.\n"
+"\n"
+" ○ 「Ctrl + m」: 마운트 위치 지정하기.\n"
+"\n"
+"만약 PPC 컴퓨터에서 설치하고 있는 중이라면, YABOOT 부트로더가 사용할 최소 "
+"1MB\n"
+"의 HFS 「부트스트랩」파티션을 만들 필요가 있습니다. 만약 그 파티션을 보다 크"
+"게\n"
+"(가령, 50MB) 만들면, 응급 상황시에 사용할 여분의 커널과 램디스크 이미지를\n"
+"저장할 수 있는 유용한 장소가 될 것입니다."
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Removable media auto-mounting"
+msgstr "탈착식 미디어 자동 마운트"
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "일반 모드로 전환"
+
+#: ../help.pm:536
+#, fuzzy, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"둘 이상의 MS 윈도우즈 파티션이 디스크상에서 발견되었습니다.\n"
+"맨드리바 리눅스 운영체제를 설치하기 위해 크기를 조정할\n"
+"파티션을 선택하세요.\n"
+"\n"
+"각 파티션은 다음과 같이 열거됩니다: 「리눅스 이름」,「윈도우즈 이름」,\n"
+"「용량」.\n"
+"\n"
+"「리눅스 이름」영역의 구조: 「하드디스크 유형」,「하드디스크 번호」,\n"
+"「파티션 번호」(가령, 「hda1」).\n"
+"\n"
+"「하드디스크 유형」은, IDE 디스크일 경우에는 「hd」이며,\n"
+"SCSI 디스크일 경우에는 「sd」입니다.\n"
+"\n"
+"「하드디스크 번호」는 항상 「hd」또는 「sd」뒤에 오는 문자입니다.\n"
+"IDE 하드디스크의 경우:\n"
+"\n"
+" ○ 「a」는 「주 IDE 제어기상의 주 디스크」를 의미합니다.\n"
+"\n"
+" ○ 「b」는 「주 IDE 제어기상의 보조 디스크」를 의미합니다.\n"
+"\n"
+" ○ 「c」는 「보조 IDE 제어기상의 주 디스크」를 의미합니다.\n"
+"\n"
+" ○ 「d」는 「보조 IDE 제어기상의 보조 디스크」를 의미합니다.\n"
+"\n"
+"SCSI 하드디스크의 경우, 「a」는 「최소 SCSI ID」, 「b」는 「다음 최소 SCSI "
+"ID」\n"
+"와 같은 식으로 의미를 가집니다.\n"
+"「윈도우즈 이름」은 MS 윈도우즈하에서의 이름입니다.\n"
+"(가령, 첫 번째 디스크 또는 파티션은 「C:」입니다.)"
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, fuzzy, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"일반적으로, 드레이크X는 (선택한 언어에 기반하여) 올바른 키보드를\n"
+"자동으로 선택합니다. 그러나 사용하는 언어에 정확히 일치하는 키보드를\n"
+"가지고 있지 않은 경우도 있을 수 있습니다: 가령, 영어를 사용하는 스위스인은\n"
+"여전히 스위스 키보드를 원할 수도 있습니다. 또한 영어를 사용하지만, 캐나다 퀘"
+"벡주에\n"
+"살고 있다면 또한 이러한 경우가 될 것입니다. 이와 같은 경우라면, 이 단계에서\n"
+"적당한 키보드를 목록에서 선택해야 합니다.\n"
+"\n"
+"지원되는 모든 키보드 목록을 보려면, 「추가정보」를\n"
+"누르세요."
+
+#: ../help.pm:612
+#, fuzzy, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"설치시 그리고 시스템용으로 사용할 언어를 선택하세요.\n"
+"\n"
+"「고급」을 누르면, 다른 언어도 추가로 선택할 수 있습니다.\n"
+"다른 언어도 선택하게 되면, 그 언어와 관련된 시스템 문서 및 프로그램 파일들"
+"도\n"
+"설치하게 됩니다. 가령, 님의 시스템을 일본인도 사용할 수 있도록 하고 싶다면,\n"
+"목록에서 주 언어로 「한국어」를 선택하고, 「고급」에서 「일본어」에 해당하"
+"는\n"
+"회색 별표를 선택하세요.\n"
+"\n"
+"여러개의 추가 언어를 선택할 수도 있습니다. 언어 선택을 끝마쳤으면,\n"
+"「확인」을 눌러서 계속 진행하세요."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr ""
+
+#: ../help.pm:653
+#, fuzzy, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"기본적으로 드레이크X는 님이 2버튼 마우스를 사용한다고 가정할 것이며,\n"
+"세 번째 버튼은 에뮬레이션할 것입니다. 마우스가 PS/2, 시리얼, 혹은 USB용인지"
+"는\n"
+"드레이크X가 자동으로 알아낼 수 있습니다.\n"
+"\n"
+"만약 다른 마우스 유형을 지정하고 싶다면, 제공되는 목록에서 적당한 것을\n"
+"선택하세요.\n"
+"\n"
+"만약 다른 마우스를 선택하게 되면, 마우스 테스트 화면을 보게될 것입니다.\n"
+"그러면, 마우스 버튼과 휠을 조작하여 설정이 정확하게 되었는지 확인하세요.\n"
+"만약 제대로 작동하기 않으면,「취소」버튼 위에서 스페이스 키나 엔터 키를\n"
+"누르고 다시 선택하시기 바랍니다."
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "with Wheel emulation"
+msgstr "버튼 에뮬레이션"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"정확한 포트를 선택하세요. 예를 들어, MS 윈도우즈에서 COM1은\n"
+"리눅스에서는 ttyS0로 명명됩니다."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "사용자 인증"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pDQ"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "전문가"
+
+#: ../help.pm:771
+#, fuzzy, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"드레이크X가 시스템상에 있는 모든 하드 디스크를 검색하고\n"
+"또한 PCI SCSI 어댑터 탐지를 시도할 것입니다.\n"
+"만약 드레이크X가 장치를 발견하게 되면 자동으로\n"
+"올바른 드라이버를 설치할 것입니다.\n"
+"\n"
+"드레이크X의 장치 검색이 실패하더라도, 님께 SCSI 장치의 유무를 질문하게 됩니"
+"다.\n"
+"목록에서 장치를 직접 선택하려면 「예」를, SCSI 장치가 없다면 「아니오」를 선"
+"택하세요.\n"
+"잘 모르겠다면, 「하드웨어 정보 보기」를 선택한 후 「확인」을 눌러서\n"
+"시스템상에 존재하는 하드웨어들을 살펴볼 수도 있습니다.\n"
+"하드웨어에 대한 검토가 끝나면 다시 「확인」버튼을 눌러서 SCSI 인터페이스 질"
+"문 화면\n"
+"으로 돌아 올 수 있습니다.\n"
+"\n"
+"직접 어댑터를 지정해야 할 때에는, 드레이크X가 옵션을 지정할 것인지를 물어\n"
+"볼 것입니다. 이 때는 드레이크X가 필요한 옵션을 탐지하도록 하는 것이 좋습니"
+"다.\n"
+"일반적으로 이 방법은 잘 작동합니다.\n"
+"\n"
+"\n"
+"만약 그렇지 않다면, 직접 드라이버 옵션을 지정해야 합니다. 사용자 설명서(3"
+"장, \n"
+"「하드웨어에 대한 종합정보」색션)를 참조하여, 하드웨어 설명서, \n"
+"(인터넷에 연결할 수 있다면) 제조업체 웹 사이트, \n"
+"또는 (윈도우즈가 설치되어 있다면) MS 윈도우즈에서 어떻게 여기에 필요한 \n"
+"정보를 알아 낼 수 있는지 찾아 보세요."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "ISDN card"
+msgstr "내장 ISDN 카드"
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "Graphical Interface"
+msgstr "시작시 바로 X 실행"
+
+#: ../help.pm:861
+#, fuzzy, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"맨드리바 리눅스 파티션을 만들기 위해서 삭제할 하드디스클르 선택하세요.\n"
+"주의:\n"
+"디스크상의 모든 데이터는 손실되며, 영원히 복구가 불가능해 집니다!"
+
+#: ../help.pm:866
+#, fuzzy, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"이 하드디스크상의 모든 데이터와 파티션을 삭제하려면, 「확인」을 누르세요.\n"
+"!!주의하세요!!일단 「확인」을 누르게 되면, MS 윈도우즈 데이털르 포함하여 이 "
+"디스트상의 모든\n"
+"데이터와 파티션은 복구가 불가능해 집니다.\n"
+"\n"
+"이 작업을 취소하려면, 지금 「취소」를 누르세요. 어떠한 데이터와 파티션도\n"
+"손상되지 않을 것입니다."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "다음 ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- 이전"
+
diff --git a/perl-install/install/help/po/ky.po b/perl-install/install/help/po/ky.po
new file mode 100644
index 000000000..35d10bc24
--- /dev/null
+++ b/perl-install/install/help/po/ky.po
@@ -0,0 +1,1536 @@
+# translation of DrakX-ky.po to Kyrgyz
+# Copyright (C) 2004,2003, 2005 Free Software Foundation, Inc.
+# Timur Jamakeev <ztimur@mail.ru>, 2003,2004.
+# Nurlan Borubaev <nurlan@tamga.info>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-ky\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-04-20 20:27+0500\n"
+"Last-Translator: Nurlan Borubaev <nurlan@tamga.info>\n"
+"Language-Team: Kyrgyz\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Мындан ары улантуу үчүн сиз лицензия шартын көңүл коюп окууңуз керек.\n"
+"Ал Mandriva Linux'тун бардык дистрибутивдерине таратылат. Эгер сиз анын\n"
+"ичиндеги бардык шарттарга көнбөсөңүз, \"%s\" рамкасын тандаңыз. Андай\n"
+"болбосо, \"%s\" баскычын бассаңыз сиздин компьютер кайра жүктөлөт."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux-көп колдонуучулуу система, бул болсо, ар бир колдонуучу\n"
+"үчүн өзү жактырган чөйрөнүн, өз файлдарынын ж.б. болушун түшүндүрөт.\n"
+"Көбүрөөк билүү үчүн сиз ``Баштоочунун колдонмосун' окусаңыз болот.\n"
+"Системанын администратору болгон \"root\" колдонуучусунан айырмаланган,\n"
+"сиз бул жерден кошуу колдонуучулар өздөрүнүн файлдарынан жана\n"
+"конфигурацияларынан башканы өзгөртүүгө укуктары жок. Сиз жок дегенде\n"
+"өзүңүз үчүн бир кадимки колдонуучу аккаунтун түзүшүңүз керек.\n"
+"Бул аккаунтту сиз күн сайын иштөө үчүн колдоносуз. Каалаган нерсеңизди\n"
+"\"root\" катары кирип өзгөртүү өтө жеңил болгону менен, ал ошол эле\n"
+"убакта өтө эле кооптуу! Эң эле майда ката да, сиздин системаңыздын андан\n"
+"ары иштебей калышына алып келиши мүмкүн. Эгер сиз кадимки колдонуучу\n"
+"болуп туруп чоң ката кетрисеңиз, сиз кайсы бир маалыматтарды жоготуп\n"
+"алышыңыз мүмкүн, бирок бардык системаны эмес.\n"
+"\n"
+"Биринчи талаага сиз өз атыңызды киргизесиз. Бул, албетте, милдетүү\n"
+"эмес -- ошондуктан сиз каалаган нерсеңизди киргизе берсеңиз болот. \n"
+"DrakX бул талаадыгы сиз киргизген бирнчи сөздү алып \"%s\" ордуна\n"
+"коёт. Бул атты кадимки колдонуучу системага кирүү үчүн колдонот.\n"
+"можете изменить его. Кааласаңыз бул атты, ж.б. өзгөртсүңүз болот.\n"
+"Андан кийин кадам-пароль киргизүү. Коопсуздук тарабынан алганда\n"
+"\"root\" паролуна караганда привилегиясыз (кадимки) колдонуучунун\n"
+"паролу анча деле критикалуу эмес, буга карбастан ага жөнөкөй\n"
+"пароль берүү же таптакыр бош калтырууга эч кандай себеп жок,\n"
+"не дегенде өз файлдарыңыздан айрылып калышыңыз мүмкүн.\n"
+"\n"
+"Сиз \"%s\" баскычын басып, башка колдонуучуларды кошо аласыз\n"
+"Ар бир досуңуз үчүн, мисалы атаңызга же эжеңизге аккаунт\n"
+"түзүңүз. Колдонуучуларды түзүп бүткөндөн кийин \"%s\"\n"
+"баскычын басыңыз.\n"
+"\n"
+"\"%s\" баскычын басуу бул колдонуучуга алдыалынган\n"
+"\"shell\"-чөйрөнү өзгөртүүгө мүмкүнчүлүк берет (алдыалынганы bash)\n"
+"\n"
+"Бардык колдонуучулар кошулуп бүткөн соң, система жүктөлгөндөн\n"
+"кийин автоматтык түрдө кирүү мүмкүнчүлүгү бар колдонуучуну\n"
+"тандоо сунуш кылынат. Эгер сизди бул мүмкүнчүлүк кызыктырса\n"
+"(сизди локалдык коопсуздук ойлонтпосо), тийиштүү колдонуучуну\n"
+"жана терезе менеджерин тандап \"%s\" баскычын басыңыз.\n"
+"Эгер сизди мындай мүмкүнчүлүк кызыктырбаса, анда \"%s\"\n"
+"чарчыбелгисин тазалап салыңыз."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Мындай мүмкүнчүлүктү каалайсызбы?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Жогорудагы тизме сиздин катуу дискиңиздеги табылган Linux бөлүмдөрү.\n"
+"Сиз аны уста жасагандай калтырсаңыз болот, анткени ал бардык кадимки\n"
+"инсталляциялар үчүн жарактуу. Эгер сиз кандайдыр бир өзгөртүүлөрдү\n"
+"киргизсеңиз, анда жок эле дегенде түпкү-root (\"/\") бөлүмү болушу керек.\n"
+"Анын көлөмүн өтө эле кичине кылбаңыз, антсеңиз сиз жетиштүү сандагы\n"
+"программалык жабдууларды орното албай каласыз. Эгер сиз өзүңүздүн\n"
+"берилиштерңизди башка бөлүмдө сактооңуз келсе, сизге \"/home\"\n"
+"бөлүмүн да түзүүгө туура келет (бирден көп Linux бөлүмдөрү бар\n"
+"учурда гана мүмкүн).\n"
+"\n"
+"Ар бир бөлүм төмөнкүдөй санап көрсөтүлгөн: \"Аты\", \"Көлөмү\".\n"
+"\n"
+"\"Аты\": \"катуу дисктин тиби\", \"катуу дисктин номери\",\n"
+"\"бөлүм номери\" (мисалы, \"hda1\") катары структураланган.\n"
+"\n"
+"\"Катуу дисктин тиби\": \"hd\"-эгер сиздин катуу диск IDE болсо\n"
+"\"sd\"-эгер ал SCSI болсо.\n"
+"\n"
+"\"Катуу дискти номери\" дайыма тамга жана \"hd\" же \"sd\" уландысы.\n"
+"IDE катуу дисктери үчүн:\n"
+"\n"
+" * \"a\" \"биринчи IDE контроллеринин master катуу дискин\" түшүндүрөт;\n"
+"\n"
+" * \"b\" \"биринчи IDE контроллеринин slave катуу дискин\" түшүндүрөт;\n"
+"\n"
+" * \"c\" \"экинчи IDE контроллеринин master катуу дискин\" түшүндүрөт;\n"
+"\n"
+" * \"d\" \"экинчи IDE контроллеринин slave катуу дискин\" түшүндүрөт;\n"
+"\n"
+"SCSI катуу дисктери үчүн , \"a\" болсо \"lowest SCSI ID\" экендигин,\n"
+"ал эми \"b\" болсо \"second lowest SCSI ID\", ж.д.у.с. экендигин берет"
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linux орнотулушу бир нече CD-ROMго бөлүнүп жайгаштырылган. Эгерде\n"
+"тандалган пакет башка CD-ROMдо жатса, DrakX учурдагы CDни чыгарып\n"
+"керектелип жаткан тийишүү CDни салууңузду сурайт. Эгерде Сизде тийиштүү\n"
+"CD кол алдыңызда жок болсо, жөн гана \"%s\" түймөсүн чертиңиз, бул учурда\n"
+"тиешелүү пакет орнотулбай кала берет."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Эми системаңызга кайсы программаларды орнотууну кааларыңызды аныктоого\n"
+"убакыт келип жетти. Mandriva Linux менен кошо миңдеген пакеттер сунуш "
+"кылынат,\n"
+"тандоону жеңилдетүү үчүн алар жакындыгынакарата топторго бөлүнгөн.\n"
+"\n"
+"Пакеттер машинаңыздын колдонуу спецификасына дал келе тургандай\n"
+"болуп топторго иреттелген. Mandriva Linux'та пакетер төрт категория\n"
+"боюнча иреттелет. Сиз ар түрдүү категорияларда жайгашкан тиркемелерди\n"
+"аралаштырып же айкалыштыра аласыз, мисалы ``Иш станциясы'' орнотуу варианты\n"
+"``Иштеп түзүү'' категорясындагы тиркемелерди да камтышы мүмкүн.\n"
+"\n"
+" * \"%s\": эгер сиз машинаны иш станциясы катары колдонгуңуз келсе,\n"
+"иш станциясы категориясынан бир же бир нече тийиштүү группаны\n"
+"тандаңыз.\n"
+"\n"
+" * \"%s\": эгер сиз програмалоо менен алектенгиңиз келсе,\n"
+"бул категориядагы тийиштүү группаны тандаңыз.\n"
+"\n"
+" * \"%s\": эгер сиздин машина сервер катары иштей турган болсо, ага көп\n"
+"колдонулуучу кызматтардын кайсыларын орнотууну кааласаңыз тандаңыз.\n"
+"\n"
+" * \"%s\": бул жерден сиз жактырган графикалык чөйрөнү тандашыңыз\n"
+" керек. Эгер сиз графикалык чөйрөдө иштөөнү кааласаңыз,\n"
+"жок дегенде алардын бири тандалышы керек.\n"
+"\n"
+"Чычкандын сөөмөйүн группанын атына алып келсеңиз, ал группага\n"
+"тийиштүү түшүндүрмө көрсөтүлөт.\n"
+"\n"
+"Сизге \"%s\" чарчыбелгисин тандоо пайдалуу болот, албетте эгерде сиз\n"
+"сунушталып жаткан пакеттерди жакшы билесиңиз, же орнотулуп жаткандарды\n"
+"толук көзөмөлдөп турууну кааласаңыз.\n"
+"\n"
+"Эгер орнотууну \"%s\" режиминде баштасаңыз, кандайдыр бир жаңы пакеттер\n"
+"орнотулушуна жол бербөө үчүн бардык группаларды тандоо чарчыбелгисин "
+"тазалап\n"
+"таштасаңыз болот. Бул орнотулган системаны калыбына келтирүү же жаңылоо "
+"учурунда пайдалуу.\n"
+"\n"
+"Эгеред кадимкидей орнотуу учурунда бир да группа тандабасаңыз (жаңылоого "
+"тийиштүү\n"
+"эмес), минималдык инсталляция үчүн ар кандай опциялары менен\n"
+"диалог пайда болот:\n"
+"\n"
+" * \"%s\": графикалык иш столунун иштешине керектелинүүчү\n"
+"пакеттердин минималдык тобун орнотуу.\n"
+"\n"
+" * \"%s\": негизги системаны жана базалык утилиталарды документациялары "
+"менен\n"
+"кошо орнотуу. Бул инсталляция сервер катары орнотууга туура келет.\n"
+"\n"
+" * \"%s\": Linux системасынын иштеши үчүн керектүү эң эле минималдык "
+"пакеттер\n"
+"орнотулат. Бул вариантта сиз командалык сап режиминде гана иштей аласыз. "
+"Бул\n"
+"орнотуунун жалпы өлчөмү 65 мегабайтты ээлейт."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Жаңылоо"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Базалык документация менен"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Эң минималдык орнотуу"
+
+#: ../help.pm:152
+#, fuzzy, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Эгер сиз инсталляторго пакеттерди өз алдыңызча тандоону билдирсеңиз,\n"
+"анда ал группаларга жана подгруппаларга бөлүнгөн бардык пакеттердин\n"
+"дарагын көрсөтөт. Даракты кароо учурунда сиз группаны толугу менен,\n"
+"подгруппаларды же өз алдынча турган пакеттерди тандасаңыз болот.\n"
+"\n"
+"Дарактан пакетти тандоо учурунда, оң жак тарабына пакеттин максатын\n"
+"баяндоочу жардам чыгарылат.\n"
+"\n"
+"!! Эгерде кандайдыр бир сервердик пакет тандалса, сиз аны атайын\n"
+"тандасаңыз же ал башка пакеттин бөлүгү болсо, сиз аны чынында эле\n"
+"ал серверлерди орнотууну каалагандыгыңызды сурайт. Mandriva Linux\n"
+"бардык орнотулган серверлерлерди жүктөө убагында алдынала ишке\n"
+"киргизилет. Дистрибутив чыгарылып жаткан убакта алар коопсуздук\n"
+"боюнча белгилүү проблемалары жок болгону менен, аларда бул\n"
+"Mandriva Linux версиясы чыгарылгандан кийин да, кооптуу болгон\n"
+"жылчыктар табылышы мүмкүн. Эгер сиз берилген кызмат эмне үчүн\n"
+"колдонорун жана эмне иш кыларын билбесеңиз \"%s\" басыңыз.\n"
+"Эгер сиз \"%s\" бассаңыз тизмедеги бардык кызматтар орнотулуп\n"
+"система жүктөлүү учурунда автоматтык түрө ишке киргизилет!!\n"
+"\n"
+"Инсталлятор менен пакеттерди автоматтык түрдө тандоодо\n"
+"\"%s\" опциясы көз карандылык бардыгын билдирүүчү эскертүү\n"
+"диалогун чыгарууга тыйуу салат. Кээ бир пакеттер бири-бири менен\n"
+"байланышкандыктан инсталляторго кээ бир кошумча программаларды\n"
+"орнотууга туура келет. Инсталлятор орнотуунун ийгиликтүү аякташы\n"
+"максатында, көз карандылыктарды канаатандыруу үчүн кандай\n"
+"пакеттердин керектигин өзү аныктайт.\n"
+"\n"
+"Тизменин төмөн жагындагы флоппинин кичинекей сүрөтбелгиси мындан\n"
+"мурунку инсталляцияда тандалган пакеттердин тизмесин жүктөөгө\n"
+"мүмкүндүк берет. Эгер сиз бул сүрөтбелгини бассаңыз, мындан мурунку\n"
+"инсталляция учурунда даярдалган флоппини салууңузду суранат. Мындай\n"
+"флоппини түзүү үчүн акыркы кадамдагы экинчи кеңешти караңыз."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Автоматтык көз карандылыктар"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": \"%s\" баскычын басуу менен принтерди конфигурацилоо устасы\n"
+"ачылат. Жаңы принтерди кантип орнотуу керектигин билүү үчүн,\n"
+"``Баштоочунун колдонмосундагы'' тийиштүү главаны окуп чыгыңыз.\n"
+"Андагы колдонулган интерфейс орнотуу процессинде колдонулган\n"
+"интерфейске окшош."
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Бул диалог система жүктөлүү учурунда сиз каалаган ишке киргизилүүчү\n"
+"кызматтарды тандоо үчүн колдонулат.\n"
+"\n"
+"DrakX учурдагы инсталляциянын мүмкүн болгон бардык кызматтарынын\n"
+"тизмесин сунуш кылат. Аларды кунт коюуу менен карап чыгып, системаны\n"
+"жүктөө учурунда ишке киргизүүнүн кажети жокторун алып салыңыз.\n"
+"\n"
+"Тизмеден кызматты тандоо менен сиз бул кызмат жөнүндө кыскача түшүндүрмө\n"
+"ала аласыз. Эгер кызматтын пайдалуу же пайдалуу эместигине күмөн санасаңыз,\n"
+"анда аны алдыалынганындай кылып калтыруу дурус.\n"
+"!! Бул этапта өтө этият болуңуз, эгер сиздин машина сервер катары иштесе:\n"
+"мүмкүн сизге кереги жок кызматтарды иштетүүдөн баш тартасыз.\n"
+"Кээ бир кызматтар сервер үчүн потенциалдуу коркунучтуу экендигин эсиңизден\n"
+"чыгарбаңыз. Негизинен, чындыгында эле керектүү болгон кызматтарды гана\n"
+" калтырыңыз.\n"
+"!!"
+
+#: ../help.pm:209
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux убакытты GMT (Greenwich Mean Time) менен башкарат жана\n"
+"сиз тандаган саатык алкакка карата локалдык убакытка которот. Эгер\n"
+"сиздин системалык платадагы саатта локалдык убакыт көрсөтүлсө, анда сиз\n"
+"муну \"%s\" тазалап салуу менен системалык саат менен апаратык саат ар\n"
+" башка саатык алкактарга таандык экендигин GNU/Linux эстеп калуусуна\n"
+"мүмкүндүк берет. Бул мүмкүнчүлүк машинаңызда Windows сыяктуу башка\n"
+"аракеттер системасы орнотулган учурда пайдалуу.\n"
+"\"%s\" опциясы Интернеттеги алыскы убакыт серверинин жардамы менен\n"
+"сиздин саатыңызды автоматтык түрдө тууралоого мүмкүндүк берет.\n"
+"Албетте, мунун иштеши үчүн сизге Интернет байланышы талап кылынат.\n"
+"Эң ылайыктуусу сизге эң жакын серверди тандоо дурус. Бул опция сиздин\n"
+"машинаңызга убакыт серверин орнотуп, аны локалдык тармагыңыздагы башка\n"
+"машиналар колдонууга мүмкүндүк берет."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Убакытты автоматтык синхрондоштуруу"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Видеокарта\n"
+"\n"
+" Инсталлятор демейде сиздин машинаңызда орнотулган видеокартаны\n"
+"автоматтык түрдө таап калыптандырат. Эгер антпесе, сизде орнотулган\n"
+"картаны бул тизмеден тандасаңыз болот.\n"
+"\n"
+" Эгерде сиздин картаңыз үчүн ар кандай серверлер мүмкүн болсо, 3D\n"
+"тездетүүсү менен же анысы жок, сиздин керектөөңүзгө көбүрөөк туура\n"
+"келген серверди тандап алууңузду сунуштайт."
+
+#: ../help.pm:234
+#, fuzzy, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (X Window системасы үчүн) GNU/Linux графикалык интерфейсинин\n"
+"жүрөгү, анын негизинде Mandriva Linux-ка кирген бардык графикалык\n"
+"чөйрөлөр (KDE, GNOME, AfterStep, WindowMaker, ж.б.д.у.с.) иштейт.\n"
+"\n"
+"Оптималдык графикалык көрүнүштү алуу үчүн, сизге ар түрдүү\n"
+"параметрлердин тизмеси сунушталат: Видеокарта\n"
+"\n"
+" Инсталлятор демейде сиздин машинаңызда орнотулган видеокартаны\n"
+"автоматтык түрдө таап калыптандырат. Эгер антпесе, сизде орнотулган\n"
+"картаны бул тизмеден тандасаңыз болот.\n"
+"\n"
+" Эгерде сиздин картаңыз үчүн ар кандай серверлер мүмкүн болсо, 3D\n"
+"тездетүүсү менен же анысы жок, сиздин керектөөңүзгө көбүрөөк туура\n"
+"келген серверди тандап алууңузду сунуштайт.\n"
+"\n"
+"\n"
+"Монитор\n"
+"\n"
+" Инсталлятор демейде сиздин машинаңызга туташкан мониторду\n"
+"автоматтык түрдө таап калыптандырат. Эгер антпесе, сизге туташкан\n"
+"мониторду тизмеден өз алдынча тандасаңыз болот.\n"
+"\n"
+"\n"
+"\n"
+"Мүмкүнчүлүк\n"
+"\n"
+" Бул жерден сиздин техникаңыз колдой алган көрсөтүү мүмкүнчүлүгүн жана\n"
+"түс тереңдигин тандасаңыз болот. Сизге көбүрөөк туура келгенин тандаңыз "
+"(сиз\n"
+"аны инсталляциядан кийин өзгөртө аласыз). Тандалып алынган конфигурациянын\n"
+"үлгүсү мониторго чыгарылат.\n"
+"\n"
+"\n"
+"\n"
+"Текшерүү\n"
+"\n"
+" Сиздин каражатыңызга карата, бул пункт бар же жок болушу мүмкүн.\n"
+"\n"
+" Система тандалган мүмкүнчүлүктү колдонуп графикалык экранды ачуу\n"
+"аракетин жасайт. Эгер сиз текшерүү учурунда маалыматты көрө алсаңыз\n"
+"жана \"%s\" жообун тандасаңыз анда DrakX кийинки кадамга өтөт.\n"
+"Эгер сиз маалыматты көрө албасаңыз, анда автоматтык түрдө аныкталган\n"
+"конфигурциянын бөлүгү туура эмес аныкталган деп түшүнүлүп, автоматтык\n"
+"түрдө 12 секунд өткөн соң сизди менюга кайра алып келет. Туура графикалык\n"
+"сүрөттү алмайынча, параметрлерди оңдоп кайталап көрүңүз.\n"
+"\n"
+"\n"
+"Параметрлер\n"
+"\n"
+" Бул жерден сиз машинаңызды автоматтык түрдө гафикалык интерфейсти\n"
+"жүктөөгө калыптасаңыз болот. Албетте, эгерде сиздин машинаңыз сервер\n"
+"катары иштесе же графикалык режимди калыптандыруу мүмкүн болбосо\n"
+"анда сиз \"%s\" тандооңуз туура."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Монитор\n"
+"\n"
+" Инсталлятор сиздин машинаңызга туташкан мониторду\n"
+"автоматтык түрдө таап калыптандырат. Эгер ал туура болбосо,\n"
+"сизге туташкан мониторду тизмеден тандасаңыз болот."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Мүмкүнчүлүк\n"
+"\n"
+" Бул жерден сиздин каражатыңыз уруксат берген мүмкүнчүлүктү жана түс\n"
+"тереңдигин тандай аласыз. Сизге көбүрөөк туура келгенин тандаңыз (сиз\n"
+"аны инсталляциядан кийин өзгөртө аласыз). Тандалып алынган конфигурациянын\n"
+"үлгүсү мониторго чыгарылат."
+
+#: ../help.pm:306
+#, fuzzy, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Сиздин картаңызга ар түрдүү, 3D тездетүүсү менен же анысы жок, серверлер\n"
+"туура келген учурда, сиздин керектөөңүзгө көбүрөөк туура келген серверди\n"
+"тандоо сунуш кылынат."
+
+#: ../help.pm:311
+#, fuzzy, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Параметрлер\n"
+"\n"
+" Бул жерден сиз машинаңызды автоматтык түрдө гафикалык интерфейсти\n"
+"жүктөөгө калыптасаңыз болот. Албетте, эгерде сиздин машинаңыз сервер\n"
+"катары иштесе же графикалык режимди калыптандыруу мүмкүн болбосо\n"
+"анда сиз \"%s\" тандооңуз туура."
+
+#: ../help.pm:319
+#, fuzzy, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Бул кадамда, Mandriva Linux аркеттер системасын сиздин катуу дисктин\n"
+"кайсы жерине орнотууну чечүүңүзгө туура келет. Эгер сиздин катуу диск бош\n"
+"болсо же орнотулган аракеттери системасы дисктин бардыгын ээлесе, сизге\n"
+"дискиңизди кайра бөлүүгө туура келет. Негизинен дискти бөлүү сиздин\n"
+"жаңы Mandriva Linux системасын орнотуу үчүн дисктен логикалык түрдө\n"
+"орун бөлүүдө турат.\n"
+"\n"
+"Эгерде дискте орнотулган аракеттер системасы болсо, дискти бөлүү кайра\n"
+"калыбына келбөөчү процесс болгондуктан андагы маалыматтарды жоготууга\n"
+"алып келиши мүмкүн экендигинен, үйрөнчүк колдонуучулар үчүн бир топ\n"
+"кыйыныраак жана коркунучтуу момент. Тилекке жараша DrakXте бул\n"
+"процессти жеңилдетүүчү уста бар. Бул кадамды улантуу алдында колдонмонун\n"
+"тийиштүү бөлүгүн окуп чыгыңыз жана шашпаңыз.\n"
+"\n"
+"Катуу дискиңиздин конфигурациясына жараша бир нече параметрлер мүмкүн:\n"
+"\n"
+" * \"%s\": бул опция бош дискти же дисктерди автоматтык түрдө бөлүүнү\n"
+"түшүндүрөт. Эгер бул опция тандалса, андан ары суроо берилбейт;\n"
+"\n"
+" * \"%s\": уста катуу дискиңиздеги Linux бөлүмдөрүн аныктады. Эгер сиз\n"
+"аларды колдонгуңуз келсе бул опцияны тандаңыз. Ар бир бөлүм үчүн\n"
+"бириктирүү чекиттерин көрсөтүү суралат. Алыднала бириктирүү чекиттери\n"
+"салтка жараша тандалгандыктан аны тийбей койсоңуз да болот.\n"
+" * \"%s\": эгерде сиздин дискте Microsoft Windows орнотулуп аны толук "
+"ээлесе,\n"
+"Linux берилиштерин сактоо үчүн бош орун түзүүңүзгө туура келет. Муну түзүү\n"
+"үчүн Microsoft Windows бөлүмүн жана берилиштерин жоготсоңуз, же Microsoft\n"
+"Windows FAT же NTFS бөлүмдөрүнүн өлчөмдөрүн өзгөртсөңүз болот.\n"
+"Өлчөмүн өзгөртүү процессин маалыматтарды жоготпой жасаса да болот, өзгөчө\n"
+"Windows бөлүмү дефрагментация кылынгандан кийин. Маалыматтарыңыздын\n"
+"резервдик копиясын түзүү көптөн-көп сунуш кылынат.Эгер сиз Mandriva Linux\n"
+"жана Microsoft Windows бир компьютерде колдонгуңуз келсе, бул опцияны\n"
+"тандаңыз.\n"
+"\n"
+" Бул опцияны тандоо алдында сиздин Microsoft Windows бөлүмүңүздүн өлчөмү\n"
+"мурдагыдан азыраак болуусун түшүнүүңүз керек. Сизде Microsoft Windows-тун\n"
+"берилиштерин жана жаңы программаларды орнотуу үчүн бош орун азыраак болот.\n"
+"\n"
+" * \"%s\" эгер сиз катуу дискиңиздеги бардык маалыматтарды жоготуп ордуна\n"
+"Mandriva Linux орнотууну кааласаңыз, бул опцияны тандаңыз. Бул чечимди\n"
+"тандоодо этият болуңуз, себеби муну тастыктаган соң бардыгын мурда\n"
+"болгондой кылып калыбына келтире албайсыз.\n"
+"\n"
+" !! Эгер бул опцияны тандасаңыз, катуу дискиңиздеги бардык маалыматтар\n"
+"жоготулат. !!\n"
+"\n"
+" * \"%s\": бул опция катуу дисктеги бардык маалыматты жоготуп бөлүмдөрдү\n"
+"түзүүнү кайра башынан бош жерден баштоого мүмкүндүк берет. Дискиңиздеги\n"
+"бардык информация жоголот.\n"
+"\n"
+" !! Эгер бул опцияны тандасаңыз, катуу дискиңиздеги бардык маалыматтар\n"
+"жоготулат. !!\n"
+"\n"
+" * \"%s\": згер сиз дискти өз алдынча бөлгүңүз келсе бул опцияны тандаңыз.\n"
+"Этият болуңуз - бул кубаттуу жана ошол эле маалда кооптуу мүмкүнчүлүк.\n"
+"Сиз бир заматта болгон мааламаттардын бардыгын жоготуп алышыңыз мүмкүн.\n"
+"Ошондуктан, ушул сыяктуу нерсени мурда жасап, кандайдыр бир тажрыйбаңыз\n"
+"болгон учурда гана бул опцияны тандоо сунуш кылынат. DiskDrake утилитасын\n"
+"кантип колдонуу керектигин билүү үчүн ``Баштоочунун колдонмосу' китебинин\n"
+"``Дисктин бөлүмдөрүн башкаруу'' бөлүмүнө кайрылыңыз."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Бар бөлүмдү колдонуу"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Дискти бүт өчүрүү"
+
+#: ../help.pm:380
+#, fuzzy, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Мына эми сиз бул жердесиз. Орнотуу аяктады жана сиздин GNU/Linux\n"
+"системаңыз колдонууга даяр. Системаны кайра жүктөө үчүн \"%s\"\n"
+"басыңыз. Инсталляция булагын (CD-ROM же флоппи) алып салууну\n"
+"унутпаңыз. Сиздин компьютер техжабдууну текшерүүнү аяктаган соң,\n"
+"эң биринчи сиз көрүүчү нерсе, бул керектүү аракеттер системасын\n"
+"жүктөөнү тандоону сунуш кылуучу баштапкы жүктөгүчтүн менюсу болот.\n"
+"\n"
+"\"%s\" баскычы дагы башка эки баскычты чыгарат:\n"
+"\n"
+" * \"%s\": инсталляциялык флоппини түзүү: мунун жардамы менен\n"
+"жаңы эле атакарылган орнотуу сыяктуу операторсуз, орнотууну\n"
+"автоматтык түрдө жүргүзсө болот.\n"
+"\n"
+" Бул баскычты баскан соң ар башка эки вариант бар экенин байкаңыз:\n"
+"\n"
+" * \"%s\": жарым жартылай автоматтыштырылган орнотуу: бул учурда\n"
+"дискти бөлүү процесси гана инерактивдүү, б.а. колдонуучунун аракетин\n"
+"талап кылат.\n"
+"\n"
+" * \"%s\": толук автоматташытрылган орнотуу: катуу диск толугу бойдон\n"
+"кайра жазылат жана болгон берилиштер жоготулат.\n"
+"\n"
+" бул мүмкүнчүлүк орнотууну бирдей конфигурациядагы машиналарда\n"
+"кайталоодо өтө ыңгайлуу. Кошумча маалымат алуу үчүн биздин веб-\n"
+"сайтыбыздагы Auto install бөлүмүн караңыз.\n"
+"\n"
+" * \"%s\": ушул орнотуудагы орнотулган пакеттердин тизмесин сактайт.\n"
+"Башка орнотууда бул орнотуудагы тандалган пакеттерди колдонуу үчүн\n"
+"флоппини салып орнотууну баштаңыз. Чакыруу сабында [F1] тергичин басып\n"
+"төмөнкүнү териңиз:\n"
+"« linux defcfg=\"floppy\" »."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Авто-орнотуу флопписин жаратуу"
+
+#: ../help.pm:415
+#, fuzzy, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Кайрадан жыңы түзүлгөн бөлүмдөрдү колдонууга киргизүү үчүн аларды\n"
+"форматтоо талап кылынат (форматтоо файл системасын түзүүнү\n"
+"түшүндүрөт).\n"
+"\n"
+"Бул этапта сизде мурда болүнгөн бөлүмдөрдө сакталган берилиштерди өчүрүү\n"
+"үчүн аларды кайра форматто мүмкүнчүлүгү бар. Эгер бул сизге керек болсо,\n"
+"бул бөлүмдөрдү дагы тандаңыз.\n"
+"\n"
+"Мурда түзүлгөн бөлүмдөрдү кайрадан форматтоо дайыма керек эместигин\n"
+"эске алыңыз. Сиз, аракеттер системасы орнотулган (\"/\", \"/usr\" или \"/var"
+"\")\n"
+"бөлүмдөрүн кайра форматтоңуз керек, бирок сиз сактап калууну каалаган\n"
+"бөлүмдөрдү кайра форматтоо талап кылынбайт (демейде бул \"/home\").\n"
+"\n"
+"Бөлүмдөрдү тандоодо этияттаңыз. Форматталган соң көрсөтүлгөн бөлүмдөрдөгү\n"
+"бардык берилиштер жоготулат, ошондуктан аларды кайра калыбына келтирүүгө\n"
+"мүмкүн эмес.\n"
+"\n"
+"Бөлүмдөрдү форматтого даяр болгондон кийин \"%s\" баскычын басыңыз.\n"
+"\n"
+"Эгер сиз Mandriva Linux системасын башка бөлүмгө орноткуңуз келсе \"%s\"\n"
+"баскычын басыңыз.\n"
+"\n"
+"Эгер сиз начар делген блокторду (bad blocks) текшерүүгө бөлүмдөрдү\n"
+"тандагыңыз келсе \"%s\" баскычын басыңыз."
+
+#: ../help.pm:437
+#, fuzzy, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Mandriva Linux орнотуу убагында баштапкы релиздин кээ бир пакеттерин\n"
+"жаңы чыкандары менен жаңыласаңыз жакшы болот. Кээ бир багдар\n"
+"оңдолушу жана коопсуздук проблемалары чечилиши мүмкүн. Бул\n"
+"жаңылоолордон пайда алуу үчүн аларды сиз азыр Интернеттен жүктөп\n"
+"алсаңыз болот. Жаңылоо үчүн, эгер сизде иштеп жаткан Интернет байланышы\n"
+"болсо \"%s\" баскычын басыңыз, же \"%s\" басып пакеттерди\n"
+" жаңылоону кийинчээрек жасасаңыз болот.\n"
+"\n"
+"\"%s\" баскычын басканда жаңылоолорду жүктөп алууга мүмкүн болгон\n"
+"орундарды тизеси чыгат. Сизге эң жакын жайгашканын тандаңыз. Андан\n"
+"соң пакттерди тандоо дарагы чыгат: тизмени карап чыгып тандаган соң\n"
+"кабыл алуу жана орнотуу үчүн \"%s\" же орнотпоо үчүн \"%s\" басыңыз."
+
+#: ../help.pm:450
+#, fuzzy, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Бул этапта DrakX сизге машинаңыз үчүн каалаган коопсуздук деңгээлин\n"
+"тандоого мүмкүндүк берет. Эгерде машинаңызда критикалык маалымат\n"
+"болсо же ал Интернетке түздөн-түз туташкан болсо, эреже катары анда\n"
+"коопсуздук деңгээли жогору болушу керек. Бирок коопсуздуктун\n"
+"жогорураак деңгээли жалып учурда колдонуу ыңгайлуулугун чектөө\n"
+"эсебинен жасалат.\n"
+"Эгер кайсынынсын тандоону билбесеңиз, аны ошол боюнча калтырыңыз.\n"
+"Коопсуздук деңгээлин кийин Mandriva Башкаруу Борборунун draksec\n"
+"утилитинин жардамы менен өзгөртсөңүз болот.\n"
+"\n"
+"\"%s\" талаасында системанын коопсуздугу үчүн жооп берген колдонуучу\n"
+"көрсөтүлөт. Бул адреске коопсуздук боюнча кабарлар жөнөтүлөт."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Коопсуздук администратору"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Чыгарылма түзүлүштөрдү авто-бириктирүү"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Нормалдык/эксперттик режимдерин алмаштыруу"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Испанча"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "дөңгөлөктү эмуляциялоо менен"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Универсалдык | Каалагандай PS/2 & USB чычканы"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Туура портту тандаңыз. Мисалы, Windows \"COM1\" портунун\n"
+"GNU/Linux'тагы аты \"ttyS0\"."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "аутентификация"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Эксперт"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN картасы"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Графикалык интерфейс"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Кийинки ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Мурунку"
+
diff --git a/perl-install/install/help/po/lt.po b/perl-install/install/help/po/lt.po
new file mode 100644
index 000000000..92b14d276
--- /dev/null
+++ b/perl-install/install/help/po/lt.po
@@ -0,0 +1,1403 @@
+#
+# Mykolas Norvai-as <Myka@centras.lt>, 2002
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2000-12-23 13:50+0200\n"
+"Last-Translator: Mykolas Norvai­as <Myka@centras.lt>\n"
+"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+
+#: ../help.pm:54
+#, fuzzy, c-format
+msgid "Do you want to use this feature?"
+msgstr "Ar nori naudoti aboot?"
+
+#: ../help.pm:57
+#, fuzzy, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Aukščiau yra sąrašas Linux skirsnių, kuriuos pavyko rasti tavo\n"
+"kietajame diske. Tu gali pasilikti sprendimus, padarytus meistro, jie tinka\n"
+"daugumai atvejų. Jei nori pakeisti šiuos sprendimus, tu turi nurodyti bent\n"
+"šakninį skirsnį (\"/\"). Nepasirink per mažo skirsnio, nes tuomet tu "
+"negalėsi\n"
+"įdiegti pakankamai programinės įrangos. Jei tu nori laikyti savo duomenis\n"
+"atskirame skirsnyje, pasirink, kurį naudosi \"/home\" (įmanoma tik jei turi "
+"daugiau\n"
+"nei vieną Linux skirsnį).\n"
+"\n"
+"Tavo žiniai, skirsniai rašomi tokiu pavidalu: \"Pavadinimas\", \"Talpa\".\n"
+"\n"
+"\n"
+"\"Pavadinimas\" sudaromas taip: \"kaupiklio tipas\", \"kaupiklio numeris\",\n"
+"\"skirsnio numeris\" (pavyzdžiui \"hda1\").\n"
+"\n"
+"\n"
+"\"Kieto disko tipas\" yra \"hd\", jei tavo kietasis kaupiklis yra IDE tipo, "
+"ir \"sd\", jeigu\n"
+"tai SCSI kaupiklis.\n"
+"\n"
+"\n"
+"\"kaupiklio numeris\" visada yra raidė po \"sd\" arba \"hd\". IDE "
+"kaupikliams:\n"
+"\n"
+" * \"a\" reiškia \"pagrindinis (master) diskas, prijungtas prie pirmojo "
+"(primary) IDE valdiklio\",\n"
+"\n"
+" * \"b\" reiškia \"šalutinis (slave) diskas, prijungtas prie pirmojo IDE "
+"valdiklio\",\n"
+"\n"
+" * \"c\" reiškia \"pagrindinis diskas, prijungtas prie antrojo (secondary) "
+"IDE valdiklio\",\n"
+"\n"
+" * \"d\" reiškia \"šalutinis diskas, prijungtas prie antrojo IDE valdiklio"
+"\",\n"
+"\n"
+"\n"
+"Su SCSI kaupikliais, \"a\" reiškia \"pirmasis diskas\", \"b\" reiškia "
+"\"antrasis diskas\" ir t.t."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Atnaujinti"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "With basic documentation"
+msgstr "Dokumentacija"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "Truly minimal install"
+msgstr "Išmesti"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr ""
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Dabar tu gali pasirinkti tarnybas, kurias nori paleisti įkrovos metu.\n"
+"\n"
+"\n"
+"Užvedus žymeklį ant tarnybos, pasirodys pagalbos užrašas, kuris aprašo "
+"tarnybos\n"
+"vaidmenį tavo sistemoje.\n"
+"\n"
+"\n"
+"Būk ypač atidus šiame žingsnyje, jeigu žadi naudotis savo kompiuteriu kaip\n"
+"serveriu: tu tikriausiai norėsi nepaleisti jokių nereikalingų tarnybų.\n"
+"Prisimink, kad kai kurios tarnybos gali būti pavojingos, jei naudojamos "
+"serveryje.\n"
+"Apskritai, pažymėk tik tas tarnybas, kurių tau tikrai reikia."
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, fuzzy, c-format
+msgid "Automatic time synchronization"
+msgstr "Įdiegimo Tipo Konfiguracija"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:319
+#, fuzzy, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Dabar tu turi nuspręsti, kurioje savo kietojo disko vietoje nori įdiegti\n"
+"Mandriva Linux operacijų sistemą. Jei jis yra tuščias arba jau esanti\n"
+"operacijų sistema naudoja visą vietą jame, tau reikės sudalinti jį. Kietojo\n"
+"disko sudalinimas į skirsnius tiesiog yra jo logiškas padalinimas taip, kad\n"
+"atsirastų laisvos vietos įdiegti tavo naujajai Mandriva Linux sistemai.\n"
+"\n"
+"\n"
+"Kadangi sudalinimo skirsniais padariniai dažniausiai yra negrįžtami,\n"
+"dalinimas gali būti gąsdinantis ir sunkus, jei tu esi nepatyręs vartotojas.\n"
+"Šis meistras supaprastina tą procesą. Prieš pradėdamas, prašau, nepagailėk\n"
+"laiko ir paskaityk žinyną.\n"
+"\n"
+"\n"
+"Tau reikia mažiausiai dviejų skirsnių. Vienas yra pačiai operacijų "
+"sistemai,\n"
+"o kitas -- virtualiai atminčiai (vadinamai swap).\n"
+"\n"
+"\n"
+"Jei skirsniai jau buvo apibrėžti (iš praeito įdiegimo arba kitu dalinimo "
+"įrankiu),\n"
+"tau tereikia pasirinkti juos, kad įdiegtum savo Linux'ą.\n"
+"\n"
+"\n"
+"Jei skirsniai dar nebuvo apibrėžti, tu turi juos sukurti. Kad tai "
+"padarytum,\n"
+"naudokis aukščiau esančiu meistru. Priklausomai nuo tavo kietojo disko\n"
+"situacijos, yra keli skirtingi sprendimai:\n"
+"\n"
+"* Naudoti esamą skirsnį: meistras rado vieną ar daugiau Linux skirsnių tavo "
+"sistemoje. Jei tu nori juos\n"
+" naudoti, pasirink tai.\n"
+"\n"
+"\n"
+"* Išvalyti visą diską: jei tu nori sunaikinti visus duomenis ir skirsnius, "
+"esančius kietajame diske, ir pakeisti juos\n"
+" nauja Mandriva Linux sistema, gali pasirinkti šį variantą. Būk atsargus su "
+"šiuo sprendimu, nes jei sutiksi,\n"
+" nebegalėsi apsigalvoti ir sugrįžti.\n"
+"\n"
+"\n"
+"* Naudoti tuščią vietą Windows skirsnyje: jei Microsoft Windows yra įdiegti "
+"į kietąjį diską ir užima visą vietą,\n"
+" esančią jame, tau teks atlaisvinti vietos Linux duomenims. Kad tai "
+"padarytum, tu gali ištrinti Windows skirsnį\n"
+" ir duomenis (žiūrėk \"Išvalyti visą diską\" bei \"Eksperto režimas\" "
+"sprendimus) arba pakeisti Windows skirsnio\n"
+" dydį. Dydžio pakeitimas gali būti atliktas be duomenų praradimo. Šis "
+"sprendimas yra rekomenduojamas, jei\n"
+" tu nori naudoti tiek Mandriva Linux, tiek Microsoft Windows tame pačiame "
+"kompiuteryje.\n"
+"\n"
+"\n"
+" Prieš pasirinkdamas šį sprendimą, suprask, kad Microsoft Windows skirsnio "
+"dydis bus mažesnis, nei yra\n"
+" dabar. Tai reiškia, kad tu turėsi mažiau laisvos vietos Windows'uose "
+"įrašyti duomenims bei įdiegti naujas\n"
+" programas.\n"
+"\n"
+"\n"
+"* Eksperto režimas: jei tu nori rankomis sudalinti skirsniais savo kietąjį "
+"diską, gali rinktis šį variantą. Įdėmiai\n"
+" pagalvok, prieš pasirinkdamas šį sprendimą. Jis yra galingas, tačiau labai "
+"pavojingas. Tu gali prarasti \n"
+" visus savo duomenis labai lengvai. Taigi, nesirink šio sprendimo, nebent "
+"tikrai žinai, ką darai."
+
+#: ../help.pm:377
+#, fuzzy, c-format
+msgid "Use existing partition"
+msgstr "Naudoti esamą skirsnį"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Ištrinti visą diską"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+
+#: ../help.pm:412
+#, fuzzy, c-format
+msgid "Generate auto-install floppy"
+msgstr "Sukurti automatinio įdiegimo diskelį"
+
+#: ../help.pm:415
+#, fuzzy, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Bet kokie naujai sukurti skirsniai turi būti sužymėti, kad juos\n"
+"būtų galima naudoti (sužymėjimas reiškia bylų sistemos sukūrimą).\n"
+"\n"
+"\n"
+"Dabar tu gali norėti iš naujo sužymėti kai kuriuos esamus skirsnius, kad\n"
+"ištrintum duomenis iš jų. Jei nori tai padaryti, pažymėk ir tuos skirsnius,\n"
+"kuriuos nori sužymėti.\n"
+"\n"
+"\n"
+"Pastaba: nebūtina iš naujo sužymėti visų anksčiau sukurtų skirsnių.\n"
+"Tu privalai sužymėti iš naujo skirsnius, kuriuose bus operacijų sistema\n"
+"(tokius kaip \"/\", \"/usr\" ar \"/var\"), tačiau skirsnių su duomenimis, "
+"kuriuos\n"
+"nori išlaikyti, sužymėti nereikia (dažniausiai \"/home\").\n"
+"\n"
+"\n"
+"Būk atsargus, pasirinkdamas skirsnius, kadangi sužymint visi duomenys\n"
+"bus ištrinti, ir nebebus įmanoma jų atstatyti.\n"
+"\n"
+"\n"
+"Spausk \"Gerai\", kai būsi pasiruošęs skirsnių sužymėjimui.\n"
+"\n"
+"\n"
+"Spausk \"Atšaukti\", jei nori pasirinkti kitus skirsnius, į kuriuos įdiegti\n"
+"Mandriva Linux sistemą."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+
+#: ../help.pm:461
+#, fuzzy, c-format
+msgid "Security Administrator"
+msgstr "Nutolusio lpd spausdintuvo nuostatos"
+
+#: ../help.pm:464
+#, fuzzy, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Dabar tu turi pasirinkti, kuriuos skirsnius naudoti tavo naujai Mandriva "
+"Linux \n"
+"sistemai įdiegti. Jei skirsniai jau buvo apibrėžti (iš praeito įdiegimo arba "
+"kitu dalinimo įrankiu),\n"
+"tu gali naudoti esančius skirsnius. Kitu atveju, skirsniai turi būti "
+"apibrėžti.\n"
+"\n"
+"\n"
+"Kad sukurtum skirsnius, tu pirmiausia turi pasirinkti kietąjį diską. Diską "
+"dalinimui\n"
+"gali pasirinkti, paspaudęs ant \"hda\" jei nori pirmo IDE kaupiklio, \"hdb\" "
+"-- antro,\n"
+"arba \"sda\", jei renkiesi pirmąjį SCSI kaupiklį ir t.t.\n"
+"\n"
+"\n"
+"Kad sudalintum skirsniais pasirinktą kietąjį diską, gali naudotis vienu iš "
+"šių variantų:\n"
+"\n"
+" * Išvalyti viską: šis variantas ištrina visus skirsnius, esančius "
+"pasirinktame kietajame diske.\n"
+"\n"
+"\n"
+"   * Automatiškai paskirti: šis variantas leidžia automatiškai sukurti Ext2 "
+"bei swap skirsnius laisvoje tavo\n"
+" disko vietoje.\n"
+"\n"
+"\n"
+" * Išgelbėti skirsnių lentelę: jei disko skirsnių lentelė yra sugadinta, "
+"tu gali bandyti atstatyti ją su šiuo variantu.\n"
+" Būk atsargus ir prisimink, kad tai gali nepavykti.\n"
+"\n"
+"\n"
+" * Atšaukti: tu gali naudoti šį variantą, kad atšauktum visus tavo "
+"pakeitimus.\n"
+"\n"
+"\n"
+" * Iš naujo: tu gali rinktis šį variantą, kad atsisakytum visų savo "
+"pakeitimų ir įkeltum pradinę skirsnių lentelę.\n"
+"\n"
+"\n"
+" * Meistras: jei tu nori, kad meistras tau padėtų sudalinti kietąjį diską, "
+"rinkis šį variantą. Tai rekomenduojama, jeigu\n"
+" tu nelabai išmanai apie skirsnių dalinimą.\n"
+"\n"
+"\n"
+" * Atkurti iš diskelio: jei tu išsaugojai savo skirsnių lentelę į diskelį "
+"įdiegdamas praeitą kartą, tu gali atkurti ją\n"
+" naudodamasis šiuo variantu.\n"
+"\n"
+"\n"
+" * Išsaugoti į diskelį: jei tu nori išsaugoti savo skirsnių lentelę į "
+"diskelį, kad galėtum paskui atkurti ją, rinkis šį\n"
+" variantą. labai rekomenduojama, kad tu tai padarytum.\n"
+"\n"
+"\n"
+" * Atlikta: jei tu baigei dalinti savo kietąjį diską, rinkis šį variantą, "
+"kad išsaugotum visus pakeitimus.\n"
+"\n"
+"\n"
+"Tavo žiniai, tu gali pasiekti bet kurį variantą naudodamasis klaviatūra: "
+"vaikščiok tarp skirsnių su Tab bei\n"
+"Aukštyn/Žemyn rodyklėmis.\n"
+"\n"
+"\n"
+"Kai skirsnis yra parinktas, gali naudoti:\n"
+"\n"
+"* Ctrl-c kad sukurtum naują skirsnį (jei parinktas tuščias skirsnis)\n"
+"\n"
+"* Ctrl-d kad ištrintum skirsnį.\n"
+"\n"
+"* Ctrl-m kad nurodytum prijungimą tašką."
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Removable media auto-mounting"
+msgstr "Išimamų laikmenų automatinis montavimas"
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Pakeisti į normalų režimą"
+
+#: ../help.pm:536
+#, fuzzy, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Tavo kietajame diske buvo aptiktas vienas ar daugiau Microsoft Windows\n"
+"skirsnis. Prašom pasirinkti, kurio iš jų dydį nori pakeisti, kad įdiegtum "
+"savo\n"
+"naująją Mandriva Linux operacijų sistemą.\n"
+"\n"
+"\n"
+"Tavo žiniai, kiekvienas skirsnis sąraše užrašomas pavidalu \"Linux "
+"pavadinimas\",\n"
+"\"Windows pavadinimas\" \"Talpa\".\n"
+"\n"
+"\"Linux pavadinimas\" sudaromas taip: \"kaupiklio tipas\", \"kaupiklio "
+"numeris\",\n"
+"\"skirsnio numeris\" (pavyzdžiui \"hda1\").\n"
+"\n"
+"\"Kieto disko tipas\" yra \"hd\", jei tavo kietasis kaupiklis yra IDE tipo, "
+"ir \"sd\", jeigu\n"
+"tai SCSI kaupiklis.\n"
+"\n"
+"\n"
+"\"Kaupiklio numeris\" visada yra raidė po \"sd\" arba \"hd\". IDE "
+"kaupikliams:\n"
+"\n"
+" * \"a\" reiškia \"pagrindinis (master) diskas, prijungtas prie pirmojo "
+"(primary) IDE valdiklio\",\n"
+"\n"
+" * \"b\" reiškia \"šalutinis (slave) diskas, prijungtas prie pirmojo IDE "
+"valdiklio\",\n"
+"\n"
+" * \"c\" reiškia \"pagrindinis diskas, prijungtas prie antrojo (secondary) "
+"IDE valdiklio\",\n"
+"\n"
+" * \"d\" reiškia \"šalutinis diskas, prijungtas prie antrojo IDE valdiklio"
+"\",\n"
+"\n"
+"\n"
+"Su SCSI kaupikliais, \"a\" reiškia \"pirmasis diskas\", \"b\" reiškia "
+"\"antrasis diskas\" ir t.t.\n"
+"\n"
+"\n"
+"\"Windows pavadinimas\" yra raidė, kuria tas skirsnis buvo vadinamas "
+"Windows'uose\n"
+"(pirmasis disko skirsnis vadinamas \"C:\")"
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr ""
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "with Wheel emulation"
+msgstr "Logitech MouseMan"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, fuzzy, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Prašom pasirinkti teisingą prievadą. Pavyzdžiui COM1\n"
+"MS Windows'uose vadinamas ttyS0 GNU/Linux'e."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, fuzzy, c-format
+msgid "authentication"
+msgstr "Autentikacija"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Ekspertas"
+
+#: ../help.pm:771
+#, fuzzy, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX bandys surasti PCI SCSI adapterį(-ius). Jei DrakX\n"
+"ras SCSI adapterį ir žinos, kokią tvarkyklę naudoti, ji bus automatiškai\n"
+"įdiegta.\n"
+"\n"
+"\n"
+"Jei tu neturi SCSI adapterio, turi ISA SCSI adapterį ar PCI SCSI adapterį,\n"
+"kurio DrakX nepažįsta, tavęs bus paklausta, ar sistemoje yra SCSI\n"
+"adapteris. Jei nėra nė vieno, gali spausti „Ne“. Jei paspausi „Taip“, bus\n"
+"parodytas tvarkyklių sąrašas, iš kurio galėsi pasirinkti tinkamą savo\n"
+"adapteriui.\n"
+"\n"
+"\n"
+"Jei tau teks rankomis nurodyti savo adapterį, DrakX paprašys tavęs\n"
+"nurodyti jo nuostatas. Tu turėtum leisti DrakX bandyti atpažinti įrangos\n"
+"nuostatas. Dažniausiai tai suveikia.\n"
+"\n"
+"\n"
+"Jei ne, tau teks nurodyti tvarkyklės nuostatas. Prašom peržiūrėti User "
+"Guide\n"
+"(chapter 3, section \"Collective informations on your hardware\") dėl "
+"patarimų,\n"
+"kaip sužinoti informaciją apie įrangos dokumentaciją, iš gamintojo "
+"svetainės\n"
+"tinkle (jei turi priėjimą prie interneto) arba iš Microsoft Windows (jei "
+"turi juos\n"
+"savo sistemoje)."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "ISDN card"
+msgstr "Vidinė ISDN plokštė"
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "Graphical Interface"
+msgstr "X paleidžiant"
+
+#: ../help.pm:861
+#, fuzzy, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Pasirink kietąjį diską, kurį nori ištuštinti, kad įdiegtum naują\n"
+"Mandriva Linux sistemą. Būk atsargus, visi duomenys, esantys jame, bus\n"
+"prarasti, ir jų nebebus įmanoma atkurti."
+
+#: ../help.pm:866
+#, fuzzy, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Spausk \"Gerai\", jei nori ištrinti visus duomenis ir skirsnius, esančius\n"
+"šiame kietajame diske. Būk atsargus, kai paspausi \"Gerai\", tu nebegalėsi\n"
+"atkurti jokių duomenų nei skirsnių, kurie buvo šiame diske, įskaitant bet\n"
+"kokius Windows duomenis.\n"
+"\n"
+"\n"
+"Spausk \"Atšaukti\", kad nutrauktum operaciją ir neprarastum jokių duomenų\n"
+"nei skirsnių, esančių šiame kietajame diske."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Toliau ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Ankstesnis"
+
diff --git a/perl-install/install/help/po/ltg.po b/perl-install/install/help/po/ltg.po
new file mode 100644
index 000000000..fbee1d5a9
--- /dev/null
+++ b/perl-install/install/help/po/ltg.po
@@ -0,0 +1,1401 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Copyright (c) 2000 Mandriva.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2004-02-24 13:01+0200\n"
+"Last-Translator: Māris Laureckis <linux@latgola.lv>\n"
+"Language-Team: Latgalian <linux@latgola.lv>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Pyrms turpynuot, jiusim vajadzātu uzmaneigi izlaseit licencis vīnuošonūs. "
+"Tei nūsadz\n"
+"vysu Mandriva Linux distribuceju. Ja jius napīkreitit vysim tuos "
+"nūteikumiem,\n"
+"puorbaudit \"%s\" kasti, nūspīdit pūgu \"%s\",\n"
+"lai jiusu dators puorstarteitu."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+
+#: ../help.pm:54
+#, fuzzy, c-format
+msgid "Do you want to use this feature?"
+msgstr "Vai vēlaties izmantot aboot?"
+
+#: ../help.pm:57
+#, fuzzy, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Augstāk ir uzskaitītas eksistējošās Linux sadaļas, kas ir atrastas uz jūsu\n"
+"cietā diska. Jūs varat atstāt meistara izdarīto izvēli, jo tā ir laba\n"
+"parastām vajadzībām. Ja jūs izmaināt šo izvēli, jums ir jādefinē vismaz\n"
+"saknes sadaļā(\"/\"). Neizvēlieties pārāk mazu sadaļu, citādi jūs nevarēsit\n"
+"instalēt visas vajadzīgās programmas. Ja vēlaties datus glabāt atsevišķā\n"
+"sadaļā, jums ir jānorāda arī \"/home\" (to var izdarīt tikai tad, ja jums "
+"ir\n"
+"vairākas Linux sadaļas).\n"
+"\n"
+"Jūsu zināšanai, katra sadaļa ir uzskaitīta šādā veidā: \"Nosaukums\", "
+"\"Izmērs\".\n"
+"\n"
+"\"Nosaukums\" ir kodēts šādi: \"cietā diska tips\", \"cietā diska numurs\",\n"
+"\"sadaļas numurs\" (piemēram, \"hda1\").\n"
+"\n"
+"\"Cietā diska tips\" ir \"hd\", ja jūsu cietais disks ir IDE disks, \"sd\",\n"
+"ja tas ir SCSI cietais disks.\n"
+"\n"
+"\"Cietā diska numurs\" vienmēr ir burts pēc \"hd\" vai \"sd\". IDE diskiem:\n"
+"\n"
+" * \"a\" nozīmē \"primārā IDE kontroliera galvenais disks\",\n"
+"\n"
+" * \"b\" nozīmē \"primārā IDE konytroliera pakārtotais disks\",\n"
+"\n"
+" * \"c\" nozīmē \"sekundārā IDE kontroliera galvenais disks\",\n"
+"\n"
+" * \"d\" nozīmē \"sekundārā IDE kontroliera pakārtotais disks\".\n"
+"\n"
+"SCSI diskiem \"a\" nozīmē \"primārais cietais disks\", \"b\" nozīmē\n"
+" \"sekundārais cietais disks\", utt..."
+
+#: ../help.pm:88
+#, fuzzy, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linux instalācija ir sadalīta pa dažiem CD-ROM diskiem. DrakX\n"
+"zin, vai izvēlētā pakotne atrodas uz cita CD-ROM diska, izvirzīs pašreizējo\n"
+"kompaktdisku un palūgs ievietot citu pēc nepieciešamības."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Atjaunynuot"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Ar pamotdokumentaceju"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Ļūti minimala instaleišona"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr ""
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Tagad varat norādīt servisus, kurus jūs vēlaties startēt sistēmas\n"
+"palaišanas laikā.\n"
+"\n"
+"\n"
+"Kad pele pārvietojas pār saraksta elementu, parādās\n"
+"neliels palīdzības balons, kas paskaidro servisa lomu.\n"
+"\n"
+"\n"
+"Esiet īpaši uzmanīgs šajā solī, ja vēlaties sistēmu izmantot ka serveri:\n"
+"iespējams, ka nevēlaties startēt nevienu nevajadzīgu servisu. Atcerieties.\n"
+"ka daži servisi var būt bīstami, ja darbojas serverī.\n"
+"Parasti izvēlieties tikai tos servisus, kas jums tiešām nepieciešami."
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, fuzzy, c-format
+msgid "Automatic time synchronization"
+msgstr "Automātiska laika sinhronizācija (izmantojot NTP)"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, fuzzy, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Opcejis\n"
+"\n"
+" Ite jius varit izavielēt, voi jius gribit, lai mašyna automatiski "
+"puorsaslādz grafiskajā saskarnē\n"
+"pi īluodis. Acimradzūt, jius gribit puorbaudeit \"%s\",\n"
+"ja jiusu dators dorbojās kai servers, voi ari naizadeve veiksmeigi paveikt "
+"ekrana\n"
+"konfigureišonu."
+
+#: ../help.pm:319
+#, fuzzy, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Pošlaik jiusim ir juoizavielej, kur iz cītuo diska instalēt Mandriva Linux\n"
+"opereituojsistemu. Ja disks ir tukšs voi cyta opereituojsistema aizjam vysu\n"
+"vītu iz diska, jiusim byus juoveic diska sadaleišona. Eisumā, cītuo diska\n"
+"sadaleišona nūzeimej tū sadaleit logiskuos daļuos, lai izveiduotu vītu\n"
+"Mandriva Linux sistemys instaleišonai.\n"
+"\n"
+"Sakarā ar tū, ka diska sadaleišonys process parasti ir naatgrīzenisks,\n"
+"napīredziejušam lītuotuojam tys var byut napateikams i stresa pylns.\n"
+"DrakX'a ir meistars, kurs vīnkuoršoj procesu. Pyrms uzsuocot daleišonu, "
+"izlosit\n"
+"rūkysgruomotu i vysu labi puordūmojit.\n"
+"\n"
+"Jiusim ir napīcīšomys vysmoz divejis sadalis. Vīna vajadzeiga pošai "
+"sistemai,\n"
+"otra - virtuālajai atmiņai (Swap).\n"
+"\n"
+"\n"
+"Ja sadaļas jau izveidotas (agrākas instalēšanas laikā vai ar citu diska\n"
+"sadalīšanas rīku), jums tikai jānorāda tās sadaļas, kurās vēlaties\n"
+"instalēt Linux sistēmu.\n"
+"\n"
+"\n"
+"Ja sadaļas vēl nav izveidotas, jums tās ir jāizveido. Lai to izdarītu,\n"
+"izmantojiet augstāk pieejamo meistaru. Atkarībā no jūsu cietā diska \n"
+"konfigurācijas ir iespējami vairāki risinājumi:\n"
+"\n"
+"* Izmantot esošu sadaļu: meistars uz cietā diska ir atklājis vienu vai "
+"vairākas Linux sadaļas. Ja vēlaties\n"
+" tās saglabāt, izvēlieties šo opciju. \n"
+"\n"
+"\n"
+"* Izdzēst visu disku: ja vēlaties izdzēst visus uz diska esošos datus un "
+"sadaļas un aizstāt tās ar jaunu\n"
+" Mandriva Linux sistēmu, varat izvēlēties šo opciju. Esiet uzmanīgi, "
+"izvēloties šo risinājumu, jo pēc\n"
+" apstiprināšanas jūs vairs nevarēsit atteikties no šīs izvēles.\n"
+"\n"
+"\n"
+"* Izmanto brīvo vietu Windows sadaļā: ja uz cietā diska ir instalēts "
+"Microsoft Windows, kas aizņem visu\n"
+" vietu, jums ir jāatbrīvo vieta Linux datiem. Lai to izdarītu, jūs varat "
+"nodzēst Microsoft Windows sadaļu un\n"
+" datus (skatīt risinājumus \"Izdzēst visu disku\" vai \"Eksperta režīms\") "
+"vai izmainīt Microsoft\n"
+" Windows sadaļas izmēru. Sadaļas izmēru var izmainīt bez datu zaudēšanas. "
+"Šis risinājums ir ieteicams, ja\n"
+" jūs savā datorā vēlaties izmantot gan Mandriva Linux, gan Microsoft "
+"Windows.\n"
+"\n"
+"\n"
+" Pirms izvēlaties šo risinājumu, ņemiet vērā, ka Microsoft Windows sadaļas "
+"izmērs būs mazāks, nekā tas ir\n"
+" pašlaik. Tas nozīmē, ka jums Microsoft Windows sistēmā būs mazāk vietas "
+"datiem vai programmu instalēšanai.\n"
+"\n"
+"\n"
+" * \"%s\": ja jius gribit patstuoveigi veiduot diska sadalis, varit "
+"izavielēt itū variantu. Esit\n"
+"uzmaneigi, izavālūt itū rysynuojumu. Tys ir ar plašom īspiejom, bet ļūti "
+"beistams. Jius varit pazaudēt\n"
+"vysus datus, tuopiec izavielejit tikai tod, ja zinot, kū dorot."
+
+#: ../help.pm:377
+#, fuzzy, c-format
+msgid "Use existing partition"
+msgstr "Izmantot jau esošu sadaļu"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Izdzēst vysu disku"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+
+#: ../help.pm:412
+#, fuzzy, c-format
+msgid "Generate auto-install floppy"
+msgstr "Sagatavot auto instalēšanas disketi"
+
+#: ../help.pm:415
+#, fuzzy, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Visas jaunizveidotās sadaļas ir jāformatē, pirms tās var izmantot\n"
+"(formatēšana nozīmē failsistēmas izveidošanu).\n"
+"\n"
+"Tagad jūs arī varat izvēlēties pārformatēt dažas jau esošas sadaļas, lai\n"
+"izdzēstu tajās esošo informāciju. Ja jūs vēlaties to darīt, norādiet\n"
+"sadaļas, kuras vēlaties formatēt.\n"
+"\n"
+"Ņemiet vērā, ka nav nepieciešams pārformatēt visas jau eksistējošas "
+"sadaļas.\n"
+"Jums ir jāformatē sadaļas, kurās atrodas operētājsistēma (piemēram, \"/\",\n"
+"\"/usr\" vai \"/var\"), bet nav jāformatē sadaļas, kurās atrodas dati, ko\n"
+"jūs vēlaties saglabāt (parasti /home).\n"
+"\n"
+"Esiet uzmanīgi, izvēloties sadaļas, jo pēc formatēšanas visi dati būs\n"
+"iznīcināti un jūs vairs nevarēsit tos atjaunot.\n"
+"\n"
+"Noklikšķiniet \"Labi\", kad esat gatavi formatēt sadaļas.\n"
+"\n"
+"Noklikšķiniet \"Atcelt\", ja jūs gribat izvēlēties citas sadaļas, kur\n"
+"instalēt jauno Mandriva Linux operētājsistēmu."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, fuzzy, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Šobrīd ir laiks izvēlēties nepieciešamo datora drošības līmeni.\n"
+"XXXXX jo dators ir atklātāks, un jo kritiskāki ir uz tā novietotie dati,\n"
+"jo augstākam vajadzētu būt drošības līmenim.\n"
+"Taču augstāks drošības līmenis tiek iegūts uz lietošanas ērtuma\n"
+"rēķina. Meklējiet nodaļu \"msec\" rokasgrāmatā ``Reference Manual'',\n"
+"lai iegūtu vairāk informācijas par šo līmeņu nozīmi.\n"
+"\n"
+"Ja Jūs neziniat, ko izvēlēties, atstājiet noklusēto opciju."
+
+#: ../help.pm:461
+#, fuzzy, c-format
+msgid "Security Administrator"
+msgstr "Drošības administrators:"
+
+#: ../help.pm:464
+#, fuzzy, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Pašlaik jums ir jāizvēlas, kurā(s) diska sadaļā(s) instalēt Mandriva Linux\n"
+"operētājsistēmu. Ja sadaļas jau ir izveidotas (agrākas GNU/Linux "
+"instalēšanas\n"
+"laikā vai ar citu diska sadalīšanas rīku), jūs varat izmantot esošās "
+"sadaļas.\n"
+"Citos gadījumos ir jāveido jaunas diska sadaļas.\n"
+"\n"
+"\n"
+"Lai veidotu sadaļas, jums vispirms ir jāizvēlas cietais disks. Jūs varat\n"
+"norādīt sadalāmo disku, noklikšķinot uz \"hda\" pirmajam IDE diskam,\n"
+"\"hdb\" - otrajam diskam, \"sda\" - pirmajam SCSI diskam, utt.\n"
+"\n"
+"\n"
+"Lai sadalītu izvēlēto cieto disku, varat izmantot sekojošas opcijas:\n"
+"\n"
+" * Izdzēst visu: šī opcija izdzēš visas sadaļas, kas atrodas uz izvēlētā "
+"cietā diska.\n"
+"\n"
+"\n"
+" * Izvietot automātiski: šī opcija ļauj jums automātiski izveidot Ext2 un "
+"swap sadaļas jūsu cietā diska\n"
+" brīvajā vietā.\n"
+"\n"
+"\n"
+" * Salabot sadaļu tabulu: ja sadaļu tabula ir bojāta, jūs varat mēģināt to "
+"autjaunot, izmantojot šo opciju.\n"
+" Esiet uzmanīgi un atcerieties, ka tas var neizdoties.\n"
+"\n"
+"\n"
+" * Atsaukt: jūs varat izmantot šo opciju, lai atceltu izmaiņas.\n"
+"\n"
+"\n"
+" * Pārlādēt: jūs varat izmantot šo opciju, ja vēlaties atsaukt visas "
+"izmaiņas un ielādēt sākotnējo sadaļu tabulu.\n"
+"\n"
+"\n"
+" * Meistars: Ja cietā diska sadalīšanai vēlaties izmantot meistaru, varat "
+"lietot šo opciju. Tā ir ieteicama,\n"
+" ja jums nav labu zināšanu par diska sadalīšanu.\n"
+"\n"
+"\n"
+" * Atjaunot no disketes: ja iepriekšējās instalēšanas laikā saglabājāt "
+"sadaļu tabulu disketē, jūs varat\n"
+" to atjaunot, izmantojot šo opciju.\n"
+"\n"
+"\n"
+" * Saglabāt disketē: ja vēlaties sadaļu tabulu saglabāt disketē, lai "
+"varētu to atjaunot, izmantojiet šo\n"
+" opciju. Ir ļoti ieteicams izmantot šo opciju.\n"
+"\n"
+"\n"
+" * Izdarīts: kad esat pabeiguši cietā diska dalīšanu, izmantojiet šo "
+"opciju, lai saglabātu izmaiņas.\n"
+"\n"
+"\n"
+"Jūsu zināšanai, jebkuru opciju var izsaukt ar tastatūru: pārvietojieties "
+"starp sadaļām, izmantojot Tab un Aušup/Lejup bultiņas.\n"
+"\n"
+"\n"
+"Kad ir izvēlēta sadaļa, jūs varat izmantot:\n"
+"\n"
+" * Ctrl-c, lai izveidotu jaunu sadaļu (kad ir izvēlēta tukša "
+"sadaļa)\n"
+"\n"
+" * Ctrl-d, lai izdzēstu sadaļu\n"
+"\n"
+" * Ctrl-m, lai uzstādītu montēšanas punktu"
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Removable media auto-mounting"
+msgstr "Izņemama datu nesēja automontēšana"
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Pārslēgt normālajā režīmā"
+
+#: ../help.pm:536
+#, fuzzy, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Uz jūsu cietā diska ir atrasta vairāk nekā viena Microsoft Windows sadaļa.\n"
+"Lūdzu izvēlieties to sadaļu, kuras izmēru jūs vēlaties izmainīt, lai\n"
+"instalētu jauno Mandriva Linux operētājsistēmu.\n"
+"\n"
+"\n"
+"Jūsu zināšanai, katra sadaļa ir uzskaitīta šādā veidā: \"Linux nosaukums\",\n"
+"\"Windows nosaukums\" \"Izmērs\".\n"
+"\n"
+"\"Linux nosaukums\" ir kodēts šādi: \"cietā diska tips\", \"cietā diska\n"
+"numurs\", \"sadaļas numurs\" (piemēram, \"hda1\").\n"
+"\n"
+"\n"
+"\"Cietā diska tips\" ir \"hd\", ja jūsu cietais disks ir IDE disks, \"sd\",\n"
+"ja tas ir SCSI cietais disks.\n"
+"\n"
+"\n"
+"\"Cietā diska numurs\" vienmēr ir burts pēc \"hd\" vai \"sd\". IDE diskiem:\n"
+"\n"
+" * \"a\" nozīmē \"primārā IDE kontroliera galvenais disks\",\n"
+"\n"
+" * \"b\" nozīmē \"primārā IDE konytroliera pakārtotais disks\",\n"
+"\n"
+" * \"c\" nozīmē \"sekundārā IDE kontroliera galvenais disks\",\n"
+"\n"
+" * \"d\" nozīmē \"sekundārā IDE kontroliera pakārtotais disks\".\n"
+"\n"
+"\n"
+"SCSI diskiem \"a\" nozīmē \"primārais cietais disks\", \"b\" nozīmē\n"
+" \"sekundārais cietais disks\", utt...\n"
+"\n"
+"\"Windows nosaukums\" ir jūsu cietā diska burts Windows vidē (pirmais disks\n"
+"vai sadaļa saucas \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, fuzzy, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Parasti DrakX izvēlas tastatūras izkārtojumu priekš Jums (atkarībā no\n"
+"valodas, kuru Jūs izvēlējāties), tomēr Jums var nebūt tastatūra, kas "
+"atbilst\n"
+"tieši Jūsu valodai.\n"
+"ŠEIT DERĒTU KĀDS PIEMĒRS SAISTĪBĀ \n"
+"AR LATVIEŠIEM :)\n"
+"Klikšķiniet uz pogas \"Vairāk\" lai saņemtu pilnu sarakstu ar atbalstītiem\n"
+"tastatūras izkārtojumiem.\n"
+"\n"
+"Ja Jūs izvēlēsieties tastatūras izkārtojumu, kas balstās uz savādāku, kā\n"
+"latīņu alfabētu, nākamajā dialogā jums tiks pieprasīts izvēlēties taustiņa\n"
+"piesaisti, kas pārslēgs tastatūras izkārtojumu starp latīņu un ne-latīņu\n"
+"izkārtojumiem."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Spāņu"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "ar riteneiša emulaceju"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Lyudzu izavielejit pareizu portu. Pīmāram, MS Windows\n"
+"ports COM1 GNU/Linux vidē saucas ttyS0."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "autentifikaceja"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr ""
+
+#: ../help.pm:768
+#, fuzzy, c-format
+msgid "Expert"
+msgstr "Eksperta režims"
+
+#: ../help.pm:771
+#, fuzzy, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX mēģinās sameklēt PCI SCSI adapteri(us).\n"
+"Ja DrakX atradīs kādu SCSI adapteri un zinās, kuru draiveri izmantot,\n"
+"tas tiks instalēts automātiski.\n"
+"\n"
+"Ja jums nav SCSI adapteru, ir ISA SCSI adapteris vai PCI SCSI adapteris,\n"
+"ko DrakX neatpazīst, jums tiks pajautāts, vai jūsu sistēmā ir SCSI\n"
+"adapteris. Ja nav SCSI adapteru, jūs varat vienkārši izvēlēties 'Nē'.\n"
+"Ja jūs izvēlaties 'Jā', jums tiks parādīts draiveru saraksts, kurā\n"
+"varat izvēlēties vajadzīgo adapteri.\n"
+"\n"
+"\n"
+"Ja jums nepieciešams patstāvīgi norādīt adapteri, DrakX pajautās, vai\n"
+"vēlaties norādīt adaptera opcijas. Jums būtu jāļauj DrakX aptaujāt\n"
+"dzelžus un noskaidrot opcijas. Parasti tas izdodas bez problēmām.\n"
+"\n"
+"Ja neizdodas, jums patstāvīgi jānorāda draivera opcijas.\n"
+"Izlasiet Instalēšanas rokasgrāmatu (3. nodaļu, apakšnodaļu \"Informācijas "
+"savākšana par jūsu dzelžiem\"), lai uzzinātu, kā iegūt šo\n"
+"informāciju no dzelžu dokumentācijas, ražotāja tīkla lapas\n"
+"(ja jums ir pieejams Internets) vai Windows (ja tas ir uzstādīts jūsu "
+"datorā)."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN karte"
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "Graphical Interface"
+msgstr "X pēc startēšanas"
+
+#: ../help.pm:861
+#, fuzzy, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Norādiet cieto disku, ko vēlaties izdzēst, lai izveidotu jaunu\n"
+"Mandriva Linux sadaļu. Esiet uzmanīgi, jo visi diskā esošie dati\n"
+"pazudīs un nebūs atjaunojami."
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Nūspīdit \"%s\", ja gribit izdzēst vysus datus i\n"
+"sadalis, kurys atsarūn iz ituo cītuo diska. Esit uzmaneigi, piec \"%s\" "
+"nūspīsšonys jius navarēsit atjaunuot nikaidus datus voi sadalis iz ituo "
+"diska, tymā skaitā ari Windows datus.\n"
+"\n"
+"Nūspīdit \"%s\", lai atcaltu itū operaceju bez jebkaidu iz ituo diska esūšu "
+"datu voi sadaļu pazaudeišonys."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Tuoļuok ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Atpakaļ"
+
diff --git a/perl-install/install/help/po/lv.po b/perl-install/install/help/po/lv.po
new file mode 100644
index 000000000..815a13930
--- /dev/null
+++ b/perl-install/install/help/po/lv.po
@@ -0,0 +1,1399 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Copyright (c) 2000 Mandriva.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2002-09-27 17:45+0200\n"
+"Last-Translator: Raivo Saars <spaiks@inbox.lv>\n"
+"Language-Team: Latvian <ll10nt@listes.murds.lv>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
+
+#: ../help.pm:14
+#, fuzzy, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Pirms turpināt, Jums vajadzētu uzmanīgi izlasīt licences vienošanos. Tā "
+"nosedz\n"
+"visu Mandriva Linux distribūciju, un ja Jūs nepiekrītat visiem noteikumiem,\n"
+"nospiediet uz pogas \"Noraidīt\", kas nekavējoties pārtrauks instalāciju. "
+"Lai turpinātu\n"
+"instalācijas procesu, nospiediet pogu \"Pieņemt\"."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+
+#: ../help.pm:54
+#, fuzzy, c-format
+msgid "Do you want to use this feature?"
+msgstr "Vai vēlaties izmantot aboot?"
+
+#: ../help.pm:57
+#, fuzzy, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Augstāk ir uzskaitītas eksistējošās Linux sadaļas, kas ir atrastas uz jūsu\n"
+"cietā diska. Jūs varat atstāt meistara izdarīto izvēli, jo tā ir laba\n"
+"parastām vajadzībām. Ja jūs izmaināt šo izvēli, jums ir jādefinē vismaz\n"
+"saknes sadaļā(\"/\"). Neizvēlieties pārāk mazu sadaļu, citādi jūs nevarēsit\n"
+"instalēt visas vajadzīgās programmas. Ja vēlaties datus glabāt atsevišķā\n"
+"sadaļā, jums ir jānorāda arī \"/home\" (to var izdarīt tikai tad, ja jums "
+"ir\n"
+"vairākas Linux sadaļas).\n"
+"\n"
+"Jūsu zināšanai, katra sadaļa ir uzskaitīta šādā veidā: \"Nosaukums\", "
+"\"Izmērs\".\n"
+"\n"
+"\"Nosaukums\" ir kodēts šādi: \"cietā diska tips\", \"cietā diska numurs\",\n"
+"\"sadaļas numurs\" (piemēram, \"hda1\").\n"
+"\n"
+"\"Cietā diska tips\" ir \"hd\", ja jūsu cietais disks ir IDE disks, \"sd\",\n"
+"ja tas ir SCSI cietais disks.\n"
+"\n"
+"\"Cietā diska numurs\" vienmēr ir burts pēc \"hd\" vai \"sd\". IDE diskiem:\n"
+"\n"
+" * \"a\" nozīmē \"primārā IDE kontroliera galvenais disks\",\n"
+"\n"
+" * \"b\" nozīmē \"primārā IDE konytroliera pakārtotais disks\",\n"
+"\n"
+" * \"c\" nozīmē \"sekundārā IDE kontroliera galvenais disks\",\n"
+"\n"
+" * \"d\" nozīmē \"sekundārā IDE kontroliera pakārtotais disks\".\n"
+"\n"
+"SCSI diskiem \"a\" nozīmē \"primārais cietais disks\", \"b\" nozīmē\n"
+" \"sekundārais cietais disks\", utt..."
+
+#: ../help.pm:88
+#, fuzzy, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linux instalācija ir sadalīta pa dažiem CD-ROM diskiem. DrakX\n"
+"zin, vai izvēlētā pakotne atrodas uz cita CD-ROM diska, izvirzīs pašreizējo\n"
+"kompaktdisku un palūgs ievietot citu pēc nepieciešamības."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Atjaunināt"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "With basic documentation"
+msgstr "Ar pamatdokumentāciju (ieteicams!)"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "Truly minimal install"
+msgstr "Minimāla instalēšana"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr ""
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Tagad varat norādīt servisus, kurus jūs vēlaties startēt sistēmas\n"
+"palaišanas laikā.\n"
+"\n"
+"\n"
+"Kad pele pārvietojas pār saraksta elementu, parādās\n"
+"neliels palīdzības balons, kas paskaidro servisa lomu.\n"
+"\n"
+"\n"
+"Esiet īpaši uzmanīgs šajā solī, ja vēlaties sistēmu izmantot ka serveri:\n"
+"iespējams, ka nevēlaties startēt nevienu nevajadzīgu servisu. Atcerieties.\n"
+"ka daži servisi var būt bīstami, ja darbojas serverī.\n"
+"Parasti izvēlieties tikai tos servisus, kas jums tiešām nepieciešami."
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, fuzzy, c-format
+msgid "Automatic time synchronization"
+msgstr "Automātiska laika sinhronizācija (izmantojot NTP)"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, fuzzy, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Visbeidzot, Jums tiks uzdots jautājums vai Jūs vēlaties grafisko saskarni\n"
+"pie ielādes. Šis jautājums tiks Jums uzdots, pat ja Jūs neizvēlējāties\n"
+"pārbaudīt konfigurāciju. Acīmredzot, Jūs vēlaties atbildet \"Nē\" ja šis\n"
+"dators darbosies kā serveris, vai arī neizdevās veiksmīgi paveikt ekrāna\n"
+"konfigurēšanu."
+
+#: ../help.pm:319
+#, fuzzy, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Pašlaik jums ir jāizvēlas, kur uz cietā diska instalēt Mandriva Linux\n"
+"operētājsistēmu. Ja disks ir tukšs vai cita operētājsistēma aizņem visu\n"
+"vietu uz diska, jums būs jāveic diska sadalīšana. Īsumā, cietā diska\n"
+"sadalīšana nozīmē to sadalīt loģiskās daļās, lai izveidotu vietu\n"
+"Mandriva Linux sistēmas instalēšanai.\n"
+"\n"
+"\n"
+"Sakarā ar to, ka diska sadalīšanas process parasti ir neatgriezenisks,\n"
+"nepieredzējušam lietotājam tas var būt nepatīkams un stresa pilns.\n"
+"Šis meistars vienkāršo procesu. Pirms uzsākat dalīšanu, izlasiet\n"
+"rokasgrāmatu un visu labi pārdomājiet.\n"
+"\n"
+"\n"
+"Jums ir nepieciešamas vismaz divas sadaļas. Viena vajadzīga pašai sistēmai,\n"
+"otra - virtuālajai atmiņai (Swap).\n"
+"\n"
+"\n"
+"Ja sadaļas jau izveidotas (agrākas instalēšanas laikā vai ar citu diska\n"
+"sadalīšanas rīku), jums tikai jānorāda tās sadaļas, kurās vēlaties\n"
+"instalēt Linux sistēmu.\n"
+"\n"
+"\n"
+"Ja sadaļas vēl nav izveidotas, jums tās ir jāizveido. Lai to izdarītu,\n"
+"izmantojiet augstāk pieejamo meistaru. Atkarībā no jūsu cietā diska \n"
+"konfigurācijas ir iespējami vairāki risinājumi:\n"
+"\n"
+"* Izmantot esošu sadaļu: meistars uz cietā diska ir atklājis vienu vai "
+"vairākas Linux sadaļas. Ja vēlaties\n"
+" tās saglabāt, izvēlieties šo opciju. \n"
+"\n"
+"\n"
+"* Izdzēst visu disku: ja vēlaties izdzēst visus uz diska esošos datus un "
+"sadaļas un aizstāt tās ar jaunu\n"
+" Mandriva Linux sistēmu, varat izvēlēties šo opciju. Esiet uzmanīgi, "
+"izvēloties šo risinājumu, jo pēc\n"
+" apstiprināšanas jūs vairs nevarēsit atteikties no šīs izvēles.\n"
+"\n"
+"\n"
+"* Izmanto brīvo vietu Windows sadaļā: ja uz cietā diska ir instalēts "
+"Microsoft Windows, kas aizņem visu\n"
+" vietu, jums ir jāatbrīvo vieta Linux datiem. Lai to izdarītu, jūs varat "
+"nodzēst Microsoft Windows sadaļu un\n"
+" datus (skatīt risinājumus \"Izdzēst visu disku\" vai \"Eksperta režīms\") "
+"vai izmainīt Microsoft\n"
+" Windows sadaļas izmēru. Sadaļas izmēru var izmainīt bez datu zaudēšanas. "
+"Šis risinājums ir ieteicams, ja\n"
+" jūs savā datorā vēlaties izmantot gan Mandriva Linux, gan Microsoft "
+"Windows.\n"
+"\n"
+"\n"
+" Pirms izvēlaties šo risinājumu, ņemiet vērā, ka Microsoft Windows sadaļas "
+"izmērs būs mazāks, nekā tas ir\n"
+" pašlaik. Tas nozīmē, ka jums Microsoft Windows sistēmā būs mazāk vietas "
+"datiem vai programmu instalēšanai.\n"
+"\n"
+"\n"
+"* Eksperta režīms: ja jūs vēlaties patstāvīgi veidot diska sadaļas, varat "
+"izvēlēties šo variantu. Esiet\n"
+" uzmanīgi, izveloties šo risinājumu. Tas ir ar plašām iespējām, bet ļoti "
+"bīstams. Jūs varat pazaudēt\n"
+" visus datus, tāpēc izvēlieties tikai tad, ja zinat, ko darāt."
+
+#: ../help.pm:377
+#, fuzzy, c-format
+msgid "Use existing partition"
+msgstr "Izmantot jau esošu sadaļu"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Izdzēst visu disku"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+
+#: ../help.pm:412
+#, fuzzy, c-format
+msgid "Generate auto-install floppy"
+msgstr "Sagatavot auto instalēšanas disketi"
+
+#: ../help.pm:415
+#, fuzzy, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Visas jaunizveidotās sadaļas ir jāformatē, pirms tās var izmantot\n"
+"(formatēšana nozīmē failsistēmas izveidošanu).\n"
+"\n"
+"Tagad jūs arī varat izvēlēties pārformatēt dažas jau esošas sadaļas, lai\n"
+"izdzēstu tajās esošo informāciju. Ja jūs vēlaties to darīt, norādiet\n"
+"sadaļas, kuras vēlaties formatēt.\n"
+"\n"
+"Ņemiet vērā, ka nav nepieciešams pārformatēt visas jau eksistējošas "
+"sadaļas.\n"
+"Jums ir jāformatē sadaļas, kurās atrodas operētājsistēma (piemēram, \"/\",\n"
+"\"/usr\" vai \"/var\"), bet nav jāformatē sadaļas, kurās atrodas dati, ko\n"
+"jūs vēlaties saglabāt (parasti /home).\n"
+"\n"
+"Esiet uzmanīgi, izvēloties sadaļas, jo pēc formatēšanas visi dati būs\n"
+"iznīcināti un jūs vairs nevarēsit tos atjaunot.\n"
+"\n"
+"Noklikšķiniet \"Labi\", kad esat gatavi formatēt sadaļas.\n"
+"\n"
+"Noklikšķiniet \"Atcelt\", ja jūs gribat izvēlēties citas sadaļas, kur\n"
+"instalēt jauno Mandriva Linux operētājsistēmu."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, fuzzy, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Šobrīd ir laiks izvēlēties nepieciešamo datora drošības līmeni.\n"
+"XXXXX jo dators ir atklātāks, un jo kritiskāki ir uz tā novietotie dati,\n"
+"jo augstākam vajadzētu būt drošības līmenim.\n"
+"Taču augstāks drošības līmenis tiek iegūts uz lietošanas ērtuma\n"
+"rēķina. Meklējiet nodaļu \"msec\" rokasgrāmatā ``Reference Manual'',\n"
+"lai iegūtu vairāk informācijas par šo līmeņu nozīmi.\n"
+"\n"
+"Ja Jūs neziniat, ko izvēlēties, atstājiet noklusēto opciju."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Drošības administrators:"
+
+#: ../help.pm:464
+#, fuzzy, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Pašlaik jums ir jāizvēlas, kurā(s) diska sadaļā(s) instalēt Mandriva Linux\n"
+"operētājsistēmu. Ja sadaļas jau ir izveidotas (agrākas GNU/Linux "
+"instalēšanas\n"
+"laikā vai ar citu diska sadalīšanas rīku), jūs varat izmantot esošās "
+"sadaļas.\n"
+"Citos gadījumos ir jāveido jaunas diska sadaļas.\n"
+"\n"
+"\n"
+"Lai veidotu sadaļas, jums vispirms ir jāizvēlas cietais disks. Jūs varat\n"
+"norādīt sadalāmo disku, noklikšķinot uz \"hda\" pirmajam IDE diskam,\n"
+"\"hdb\" - otrajam diskam, \"sda\" - pirmajam SCSI diskam, utt.\n"
+"\n"
+"\n"
+"Lai sadalītu izvēlēto cieto disku, varat izmantot sekojošas opcijas:\n"
+"\n"
+" * Izdzēst visu: šī opcija izdzēš visas sadaļas, kas atrodas uz izvēlētā "
+"cietā diska.\n"
+"\n"
+"\n"
+" * Izvietot automātiski: šī opcija ļauj jums automātiski izveidot Ext2 un "
+"swap sadaļas jūsu cietā diska\n"
+" brīvajā vietā.\n"
+"\n"
+"\n"
+" * Salabot sadaļu tabulu: ja sadaļu tabula ir bojāta, jūs varat mēģināt to "
+"autjaunot, izmantojot šo opciju.\n"
+" Esiet uzmanīgi un atcerieties, ka tas var neizdoties.\n"
+"\n"
+"\n"
+" * Atsaukt: jūs varat izmantot šo opciju, lai atceltu izmaiņas.\n"
+"\n"
+"\n"
+" * Pārlādēt: jūs varat izmantot šo opciju, ja vēlaties atsaukt visas "
+"izmaiņas un ielādēt sākotnējo sadaļu tabulu.\n"
+"\n"
+"\n"
+" * Meistars: Ja cietā diska sadalīšanai vēlaties izmantot meistaru, varat "
+"lietot šo opciju. Tā ir ieteicama,\n"
+" ja jums nav labu zināšanu par diska sadalīšanu.\n"
+"\n"
+"\n"
+" * Atjaunot no disketes: ja iepriekšējās instalēšanas laikā saglabājāt "
+"sadaļu tabulu disketē, jūs varat\n"
+" to atjaunot, izmantojot šo opciju.\n"
+"\n"
+"\n"
+" * Saglabāt disketē: ja vēlaties sadaļu tabulu saglabāt disketē, lai "
+"varētu to atjaunot, izmantojiet šo\n"
+" opciju. Ir ļoti ieteicams izmantot šo opciju.\n"
+"\n"
+"\n"
+" * Izdarīts: kad esat pabeiguši cietā diska dalīšanu, izmantojiet šo "
+"opciju, lai saglabātu izmaiņas.\n"
+"\n"
+"\n"
+"Jūsu zināšanai, jebkuru opciju var izsaukt ar tastatūru: pārvietojieties "
+"starp sadaļām, izmantojot Tab un Aušup/Lejup bultiņas.\n"
+"\n"
+"\n"
+"Kad ir izvēlēta sadaļa, jūs varat izmantot:\n"
+"\n"
+" * Ctrl-c, lai izveidotu jaunu sadaļu (kad ir izvēlēta tukša "
+"sadaļa)\n"
+"\n"
+" * Ctrl-d, lai izdzēstu sadaļu\n"
+"\n"
+" * Ctrl-m, lai uzstādītu montēšanas punktu"
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Removable media auto-mounting"
+msgstr "Izņemama datu nesēja automontēšana"
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Pārslēgt normālajā režīmā"
+
+#: ../help.pm:536
+#, fuzzy, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Uz jūsu cietā diska ir atrasta vairāk nekā viena Microsoft Windows sadaļa.\n"
+"Lūdzu izvēlieties to sadaļu, kuras izmēru jūs vēlaties izmainīt, lai\n"
+"instalētu jauno Mandriva Linux operētājsistēmu.\n"
+"\n"
+"\n"
+"Jūsu zināšanai, katra sadaļa ir uzskaitīta šādā veidā: \"Linux nosaukums\",\n"
+"\"Windows nosaukums\" \"Izmērs\".\n"
+"\n"
+"\"Linux nosaukums\" ir kodēts šādi: \"cietā diska tips\", \"cietā diska\n"
+"numurs\", \"sadaļas numurs\" (piemēram, \"hda1\").\n"
+"\n"
+"\n"
+"\"Cietā diska tips\" ir \"hd\", ja jūsu cietais disks ir IDE disks, \"sd\",\n"
+"ja tas ir SCSI cietais disks.\n"
+"\n"
+"\n"
+"\"Cietā diska numurs\" vienmēr ir burts pēc \"hd\" vai \"sd\". IDE diskiem:\n"
+"\n"
+" * \"a\" nozīmē \"primārā IDE kontroliera galvenais disks\",\n"
+"\n"
+" * \"b\" nozīmē \"primārā IDE konytroliera pakārtotais disks\",\n"
+"\n"
+" * \"c\" nozīmē \"sekundārā IDE kontroliera galvenais disks\",\n"
+"\n"
+" * \"d\" nozīmē \"sekundārā IDE kontroliera pakārtotais disks\".\n"
+"\n"
+"\n"
+"SCSI diskiem \"a\" nozīmē \"primārais cietais disks\", \"b\" nozīmē\n"
+" \"sekundārais cietais disks\", utt...\n"
+"\n"
+"\"Windows nosaukums\" ir jūsu cietā diska burts Windows vidē (pirmais disks\n"
+"vai sadaļa saucas \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, fuzzy, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Parasti DrakX izvēlas tastatūras izkārtojumu priekš Jums (atkarībā no\n"
+"valodas, kuru Jūs izvēlējāties), tomēr Jums var nebūt tastatūra, kas "
+"atbilst\n"
+"tieši Jūsu valodai.\n"
+"ŠEIT DERĒTU KĀDS PIEMĒRS SAISTĪBĀ \n"
+"AR LATVIEŠIEM :)\n"
+"Klikšķiniet uz pogas \"Vairāk\" lai saņemtu pilnu sarakstu ar atbalstītiem\n"
+"tastatūras izkārtojumiem.\n"
+"\n"
+"Ja Jūs izvēlēsieties tastatūras izkārtojumu, kas balstās uz savādāku, kā\n"
+"latīņu alfabētu, nākamajā dialogā jums tiks pieprasīts izvēlēties taustiņa\n"
+"piesaisti, kas pārslēgs tastatūras izkārtojumu starp latīņu un ne-latīņu\n"
+"izkārtojumiem."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr ""
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "with Wheel emulation"
+msgstr "Pogu emulācija"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Lūdzu izvēlieties pareizu portu. Piemēram, MS Windows\n"
+"ports COM1 GNU/Linux vidē saucas ttyS0."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, fuzzy, c-format
+msgid "authentication"
+msgstr "Autentifikācija"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Eksperts"
+
+#: ../help.pm:771
+#, fuzzy, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX mēģinās sameklēt PCI SCSI adapteri(us).\n"
+"Ja DrakX atradīs kādu SCSI adapteri un zinās, kuru draiveri izmantot,\n"
+"tas tiks instalēts automātiski.\n"
+"\n"
+"Ja jums nav SCSI adapteru, ir ISA SCSI adapteris vai PCI SCSI adapteris,\n"
+"ko DrakX neatpazīst, jums tiks pajautāts, vai jūsu sistēmā ir SCSI\n"
+"adapteris. Ja nav SCSI adapteru, jūs varat vienkārši izvēlēties 'Nē'.\n"
+"Ja jūs izvēlaties 'Jā', jums tiks parādīts draiveru saraksts, kurā\n"
+"varat izvēlēties vajadzīgo adapteri.\n"
+"\n"
+"\n"
+"Ja jums nepieciešams patstāvīgi norādīt adapteri, DrakX pajautās, vai\n"
+"vēlaties norādīt adaptera opcijas. Jums būtu jāļauj DrakX aptaujāt\n"
+"dzelžus un noskaidrot opcijas. Parasti tas izdodas bez problēmām.\n"
+"\n"
+"Ja neizdodas, jums patstāvīgi jānorāda draivera opcijas.\n"
+"Izlasiet Instalēšanas rokasgrāmatu (3. nodaļu, apakšnodaļu \"Informācijas "
+"savākšana par jūsu dzelžiem\"), lai uzzinātu, kā iegūt šo\n"
+"informāciju no dzelžu dokumentācijas, ražotāja tīkla lapas\n"
+"(ja jums ir pieejams Internets) vai Windows (ja tas ir uzstādīts jūsu "
+"datorā)."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "ISDN card"
+msgstr "Iekšēja ISDN karte"
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "Graphical Interface"
+msgstr "X pēc startēšanas"
+
+#: ../help.pm:861
+#, fuzzy, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Norādiet cieto disku, ko vēlaties izdzēst, lai izveidotu jaunu\n"
+"Mandriva Linux sadaļu. Esiet uzmanīgi, jo visi diskā esošie dati\n"
+"pazudīs un nebūs atjaunojami."
+
+#: ../help.pm:866
+#, fuzzy, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Nospiediet \"Labi\", ja vēlaties izdzēst visus datus un\n"
+"sadaļas, kas atrodas uz šī cietā diska. Esiet uzmanīgi, pēc \"Labi\" "
+"nospiešanas jūs nevarēsit atjaunot nekādus datus vai sadaļas, kas atradās\n"
+"uz diska, tajā skaitā arī Windows datus.\n"
+"\n"
+"Nospiediet \"Atcelt\", lai atceltu šo operāciju bez jebkādu uz šī diska "
+"esošu datu vai sadaļu pazaudēšanas."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Tālāk ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Atpakaļ"
+
diff --git a/perl-install/install/help/po/mk.po b/perl-install/install/help/po/mk.po
new file mode 100644
index 000000000..80049adff
--- /dev/null
+++ b/perl-install/install/help/po/mk.po
@@ -0,0 +1,2038 @@
+# translation of DrakX-help-mk.po to Macedonian
+# Copyright (C) 2002,2003, 2004, 2006 Free Software Foundation, Inc.
+#
+# Danko Ilik <danko@mindless.com>, 2002,2003.
+# Vladimir Stefanov <vladoboss@mt.net.mk>, 2003.
+# Зоран Димовски <zoki@email.com>, 2003.
+# Danko Ilik <danko@on.net.mk>, 2003.
+# Зоран Димовски <decata@mt.net.mk>, 2004.
+# Zoran Dimovski <zoki.dimovski@gmail.com>, 2006.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-help-mk\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2006-09-19 23:36-0700\n"
+"Last-Translator: Zoran Dimovski <zoki.dimovski@gmail.com>\n"
+"Language-Team: Macedonian\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2; plural= n==1 || n%10==1 ? 0 : 1\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Пред да продолжите, внимателно прочитајте ѓи условите на лиценцата. Таа\n"
+"ја покрива целата дистрибуција на „Mandriva Linux“, Aко се согласувате\n"
+"со сите услови во неа, штиклирајте „%s“. Доколку не се согласувате со\n"
+"лиценцата притиснете на „%s“ и вашиот компјутер ќе се рестартира."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"„GNU/Linux“ е повеќе-кориснички систем, и тоа значи дека секој корисник\n"
+"може да си има свои преференци, свои датотеки, итн. Но, за разлика од "
+"„root“,\n"
+"кој е администратор на системот, корисниците што сега ги додавате, нема да\n"
+"можат да променат ништо освен сопствените датотеки и нивната конфигурација,\n"
+"така што системот се заштитува од ненамерни или злонамерни промени, кои "
+"може\n"
+"целосно да го променат вашиот систем. Треба да направите барен еден обичен\n"
+"корисник -- ова е сметката која треба да ја користите како рутина, за ваша\n"
+"скојдневна работа. Иако е многу лесно да се најавите како „root“ да "
+"направете\n"
+"нешто и сешто, може да е многу опасно. Најмала грешка може да придонесе\n"
+"вашиот ситем повеќе да не работи. Ако направите голема грешка како обичен\n"
+"корисник, најлошото што може да се случи е да изгубите некои информации\n"
+"но нема да има влијание на системот во целост.\n"
+"\n"
+"Во првото поле сте прашани за вашете вистинско име. Се разбира, тоа не е\n"
+"задолжително -- всушност можете да внесете што сакате. DrakX ќе го земе\n"
+"првиот збор од името што сте го внеле и ќе го копира во полето „%s“, што "
+"всушнсот е\n"
+"корисничкото име со кое ќе се најавете на системот. Ако сакате, можете да "
+"го\n"
+"променете и да внесете сопствено. Потоа мора да внесете лозинка. Од "
+"сигурносна\n"
+"гледна точка, не-привилигиран (обичен) корисник, лозинката не е од големо\n"
+"значење како лозинката на „root“, но тоа не е причина да ја занемарите\n"
+"корисничката лозинка оставајќи го полето празно или премногу едноставна:\n"
+"како и да е, вашите датотеки се во ризик.\n"
+"\n"
+"Откако ќе притиснете на копчето „%s“, можете да додадете и други корисници.\n"
+"Додадете по еден корисник за секого по еден на вашите пријатели, вашиот "
+"тактко,\n"
+"сестра, итн. Кога ќе завршите со додавањето корисници,\n"
+"притиснете на копчето „%s“.\n"
+"\n"
+"Со притискање на копчето „%s“, можете да ја промените „школката“ за\n"
+"тој корисник (која вообичаено е „bash“).\n"
+"\n"
+"Кога ќе завршите со додавањето корисници, ќе ви биде предложено да\n"
+"изберете еден корисник кој автоматски ќе се најавува на системот кога\n"
+"компјутерот ќе се вклучи. Ако сте заинтересирани за оваа карактеристика\n"
+"(и не се грижите многу за локалната безбедност), изберете корисник и\n"
+"менаџер на прозорци, и потоа притиснете на „%s“. Ако не сакате да ја "
+"користите\n"
+"оваа карактеристика, одштиклирајте го „%s“."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Дали сакате да ja користите оваа опција?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Горе се наведени постоечките „Linux“ партиции што се откриени на вашиот "
+"диск.\n"
+"Можете да го прифатите изборот направен од волшебникот; кој е добар за \n"
+"вообичаени инсталации. Ако правите некои промени, ќе мора барем да "
+"дефинирате\n"
+"root-партиција („/“). Не избирајте премала партиција, зошто нема да\n"
+"може да се инсталира доволно софтвер. Ако сакате вашите податоци да ги "
+"чувате\n"
+"на посебна партиција, ќе треба да направите и една „/home“ партиција\n"
+"(а тоа е можно ако имате повеќе од една „Linux“ партиција).\n"
+"\n"
+"Секоја партиција во листата е дадена со: „Име“, „Капацитет“.\n"
+"\n"
+"Структурата на „името“ е следнава: „тип на диск“, „број на диск“,\n"
+"„број на партиција“ (на пример, „hda1“).\n"
+"\n"
+"„Типот на дискот“ е „hd“ ако дискот е „IDE“, и „sd“ ако тој е „SCSI“ диск.\n"
+"\n"
+"„Бројот на дискот“ е буква по „hd“ или „sd„. За „IDE“ дискови:\n"
+"\n"
+"* „a“ значи диск што е „master“ на примарниот „IDE“ контролер;\n"
+"\n"
+"* „b“ значи диск што е „slave“ на примарниот „IDE“ контролер;\n"
+"\n"
+"* „c“ значи диск што е „master“ на секундарниот „IDE“ контролер;\n"
+"\n"
+"* „d“ значи диск што е „slave“ на секундарниот „IDE“ контролер;\n"
+"\n"
+"Кај „SCSI“ дисковите, „a“ значи најнизок „SCSI ID“, а „b“ значи\n"
+"втор најнизок „SCSI ID“, итн."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Инсталацијата на „Mandriva Linux“ се дистрибуира на повеќе CD-а. Ако некој\n"
+"избран паќет се наоѓа на друго CD, „DrakX“ ќе го исфрли моменталното\n"
+"и ќе побара од вас да го внесете потребното CD. Ако потребното CD не ви е\n"
+"при рака, само притиснете на „%s“ и соодветниот пакет нема да\n"
+"биде инсталиран."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Сега треба да изберете кои програми сакате да се инсталираат на вашиот "
+"систем.\n"
+"Постојат илјадници пакети за „Mandriva Linux“, и за да полесно се снајдете\n"
+"тие се поделени во групи со слични апликации.\n"
+"\n"
+"„Mandriva Linux“ ги дели групите на пакети во четири категории. Може да "
+"избирате\n"
+"и да мешате паќети од различни категории, така што инсталација на „Работна "
+"станица“\n"
+"може да има инсталирано и апликации од категоријата „Сервер“.\n"
+"\n"
+" * „%s“: ако планирате да ја користите вашата машината како работна "
+"станица,\n"
+"изберете една или повеќе од групите во категоријата „Работна станица“.\n"
+"\n"
+" * „%s“: ако планирате вашиот компјутер да го користите за програмирање,\n"
+"изберете ги соодветните групи од таа категорија. Специјалната група „LSB“\n"
+"ќе го конфигурира вашиот систем така што ќе компајлира најдобро што е можно\n"
+"по спецификациите на „Linux Standard Base“.\n"
+"\n"
+" Исто така, при избирање на групата „LSB“ ќе се инсталира кернел од "
+"сериите „2.4“,\n"
+"наместо стандардниот „2.6“. Ова е за да се обезбеди 100%% согласност со "
+"„LSB“ на\n"
+"вашиот систем. Но, ако не ја изберете групата „LSB“, сеуште ќе имате систем "
+"кој\n"
+"е приближно 100%% во согласност со „LSB“.\n"
+"\n"
+" * „%s“: ако вашата машина е наменета да биде сервер, изберете од\n"
+"повеќето достапни сервиси кои сакате да се инсталираат на вашата машина.\n"
+"\n"
+" * „%s“: овде ја избирате графичката околина кој вие ја\n"
+"претпочитате. Мора да биде избрана барем една, ако сакате да имате \n"
+"достапен графички изглед.\n"
+"\n"
+"Движењето на покажувачот на глушецот врз името на групата ќе прикаже\n"
+"краток тескт кој ја појаснува групата.\n"
+"\n"
+"Можете да го штиклирате „%s“, што е корисно ако сте запознаени со\n"
+"пакетите кои ви се понудени или пак сакате да имате целосна контрола\n"
+"за тоа што ќе се инсталира на вашиот систем.\n"
+"\n"
+"Ако ја започнете инсталацијата во режимот „%s“, можете да ги деселектирате\n"
+"сите групи и да спречите инсталирање на било какви нови пакети. Ова е "
+"корисно\n"
+"за поправање или надградување на постоечки систем.\n"
+"\n"
+"Доколку ги деселектирате сите групи кога извршувате обична инсталација\n"
+"(спротивно на надградување), ќе се појави дијалог кој ви предложува "
+"различни\n"
+"опции за минимална инсталација:\n"
+"\n"
+" * „%s“: инсталирање на најмал можен број пакети за да се добие\n"
+"работна графичка површина.\n"
+"\n"
+" * „%s“: инсталирање на основниот систем заедно со основните помошни\n"
+"алатки и нивна документација. Оваа инсталација е соодветна\n"
+"за поставување на сервер.\n"
+"\n"
+" * „%s“: ќе инсталира апсолутно најмал број на пакети, неопходни за да се\n"
+"добие работен „Linux“ систем. Со оваа инсталација ќе имате само интерфејс\n"
+"за командни линии. Вкупната големина на оваа инсталација изнесува\n"
+"околу 65 мегабајти."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Надгради"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Со основна документација"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Искрено минимална инсталација"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Ако изберете индивидуално да инсталирате пакети, инсталерот ќе ви прикаже\n"
+"дрво што ги содржи сите пакети, распоредени ви групи и подгрупи.\n"
+"Додека го разгледувате дрвото, можете да избирате\n"
+"цели групи, подгрупи или индивидуални пакети.\n"
+"\n"
+"При избор на пакет од дрвото, од вашата десна страна ќе се појави опис,\n"
+"за да знаете за што е наменет пакетот.\n"
+"\n"
+"!! Ако е избран серверски пакет, дали вие го имате изберено пакетот или\n"
+"затоа што е дел од цела група, ќе бидете запрашани да потврдите дали "
+"навистина\n"
+"сакате да се инсталираат тие сервери. Како стандард, во „Mandriva Linux“, "
+"сите инсталирани\n"
+"сервиси автоматски ќе видат вклучени при подигнување. Дури и ако тие се "
+"безбедни\n"
+"и немаат проблеми во време на излегување на дистрибуцијата, може да се "
+"случи\n"
+"да бидат откриени безбедносни дупки по излегувањето на оваа верзија на "
+"„Mandriva Linux“. \n"
+"Ако не знаете што прави одреден сервис или зошто се инсталира, притиснете „%"
+"s“.\n"
+"Со притискање на „%s“ ќе се инсталираат излистаните сервиси и тие\n"
+"автоматски ќе се вклучуваат при подигнување. !!\n"
+"\n"
+"Опцијата „%s“ се користи за оневозможување на дијалогот за предупредување,\n"
+"кој се јавува секогаш кога програмата за инсталирање автоматски\n"
+"избира пакет за да го реши проблемот околу зависностите. Некои пакети\n"
+"зависат едни од други и како такви инсталацијата на пакетот бара\n"
+"да се инсталираат и други програми. Инсталерот може да одреди\n"
+"кои пакети се потребни за да се задоволат зависностите за да\n"
+"инсталацијата биде успешно завршена.\n"
+"\n"
+"Малата икона на дискета во дното на листата овозможува да се вчита листата\n"
+"на пакети што создадена за време на претходна инсталација. Ова е корисно "
+"ако\n"
+"имате повеќе машини кои сакате да ги конфигурирате идентично. Со притискање\n"
+"на оваа икона ќе побара од вас да внесете дискета што претходно била "
+"создадена,\n"
+"на крајот на некоја друга инсталација. Видете го вториот совет од "
+"претходниот\n"
+"чекор за тоа како да направите таква дискета."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Автоматски зависности"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"„%s“: при притискање на копчето „%s“ ќе се вклучи Волшебникот\n"
+"за конфигурирање на принтерот. За повеќе информации како да поставете\n"
+"нов принтер, консултирајте се со соодветното поглавје од „Почетен водич“.\n"
+"Изгледот претставен во нашиот водич е сличен на оној кој се користи при\n"
+"инсталацијата."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Овој дијалог се користи за да ги изберете сервисите што сакате да се \n"
+"стартуваат за време на подигнување.\n"
+"\n"
+"„DrakX“ ќе ги излиста сите достапни сервиси во тековната инсталација.\n"
+"Внимателно разгледајте ги и дештиклирајте ги оние што не се потребни\n"
+"за време на подигнување.\n"
+"\n"
+"Можете да добиете кратко објаснување за некој сервис ако го изберете.\n"
+"Сепак, ако не сте сигурни дали некој сервис е корисен или не, побезбедно\n"
+"е да го оставите како што е.\n"
+"\n"
+"!! Во овој стадиум, бидете внимателни ако планирате да ја користите\n"
+"вашата машина како сервер: веројатно нема да сакате да стартувате некој\n"
+"сервис што не ви е потребен. Ве молиме запомнете дека повеќе сервиси можат\n"
+"да бидат опасни ако бидат овозможени на сервер. Воглавно, изберете ги\n"
+"само сервисите што навистина ви се потребни. !!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux управува со времето според „GMT“ (Greenwich Mean Time) и го "
+"преведува\n"
+"во локално време според временската зона што сте ја избрале. Ако часовникот\n"
+"на вашата матична плоча е наместен на локално време, ова можете да го "
+"деактивирате\n"
+"со деселектирање на „%s“, што ќе му овозможи на „GNU/Linux“ да знае дека "
+"системскиот\n"
+"часовник и хардверскиот часовник се во иста временска зона. Ова е корисно "
+"кога\n"
+"на машината има уште еден оперативен систем.\n"
+"\n"
+"Опцијата „%s“ автоматски ќе го регулира системскиот часовник\n"
+"преку поврзување со далечински временски сервер на Интернет.\n"
+"За да ви работи ова, мора да имате работна Интернет врска. Ви препорачуваме\n"
+"да изберете временски сервер во ваша близина. Всушност,\n"
+"оваа опција инсталира временски сервер што дополнително може да\n"
+"го користат други машини на вашата локална мрежа."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Автоматска синхронизација на време"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Графичка Карта\n"
+"\n"
+" Вообичаено инсталерот автоматски ја пронаоѓа и конфигурира\n"
+"графичката карта инсталирана на вашата машина. Во спротивно можете\n"
+"да изберете од листава всушност која картичка ја имате инсталирано.\n"
+"\n"
+" Во случај да се овозможени различни сервери за вашата картичка, со\n"
+"или без 3Д забрзување, тогаш ве прашуваат да го изберете серверот кој\n"
+"најмногу одговара на вашите потреби."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (за „X Window System“) е срцето на графичкиот изглед на „GNU/Linux“\n"
+"на кој се изградени сите графички околини („KDE“, „GNOME“, „AfterStep“,\n"
+"„WindowMaker“, и.т.н.) вградени во „Mandriva Linux“\n"
+"\n"
+"Ќе видите листа со различни параметри кои можете да ги менувате\n"
+"за да добиете оптимален графички приказ.\n"
+"\n"
+"Графичка карта\n"
+"\n"
+" Вообичаено, инсталерот автоматски ќе ја детектира и конфигурира\n"
+"графичката карта која е инсталирана на вашиот компјутер.\n"
+"Ако ова е неточно, тогаш од листата можете да ја изберете\n"
+"картичката која всушност ја имате инсталирано.\n"
+"\n"
+" Во случај каде повеќе сервери се достапни за вашата картичка, со или\n"
+"без 3Д забрзување, ќе бидете прашани да го изберете серверот\n"
+"кој најмногу одговара за вашите потреби.\n"
+"\n"
+"\n"
+"\n"
+"Монитор\n"
+"\n"
+" Инсталерот автоматски ќе го детектира и конфигурира мониторот\n"
+"кој е поврзан на вашиот компјутер. Ако ова е неточно, тогаш од листата\n"
+"можете да го изберете мониторот кој е поврзан на вашиот компјутер.\n"
+"\n"
+"\n"
+"\n"
+"Резолуција\n"
+"\n"
+" Овде можете да ја изберете резолуцијата и длабочината на бои достапни\n"
+"за вашиот графички хардвер. Изберете една која најмногу одговара на вашите\n"
+"потреби (можете да ги промените по инсталацијата), Пример на избраната\n"
+"конфигурација е прикажан на сликата со мониторот.\n"
+"\n"
+"\n"
+"\n"
+"Тест\n"
+"\n"
+"Зависно вашиот хардвер, овој внес може и да не се појави.\n"
+"\n"
+" Системот ќе се обиде да отвори графичкиот екран со бараната\n"
+"резолуција. Ако можете да ја прочитате прикажаната пораката и одговорете „%"
+"s“,\n"
+"тогаш „DrakX“ ќе продолжи со следниот чекор. Ако не можете да ја прочитате "
+"пораката,\n"
+"тогаш нешто не е во ред со конфигурацијата на автоматската детекција и\n"
+"тестот автоматски ќе завршпо 12 секунди, враќајќи ве назад на менито. \n"
+"Променете ги поставувањата се додека не добиете добар графички приказ.\n"
+"\n"
+"\n"
+"\n"
+"Опции\n"
+"\n"
+" Овој чекор ви овозможува да изберете дали вашиот компјутер автоматски\n"
+"ќе го вклучува графичкиот изглед при подигнување. Очигледно, можеби\n"
+"ќе сакате да изберете „%s“ ако вашиот компјутер се користи како сервер\n"
+"или ако неуспешно сте го конфигурирале приказот."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Монитор\n"
+"\n"
+" Инсталерот автоматски ќе го пронајде и конфигурира мониторот\n"
+"кој е поврзан на вашиот компјутер. Доколку не е истиот, можете од\n"
+"листата да го изберете мониторот кој е поврзан на вашиот компјутер."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Резолуција\n"
+"\n"
+" Овде може да ја изберете резолуцијата и длабочината на бојата достапни "
+"за\n"
+"вашата графичка карта. Изберете ја онаа која најмногу одговара на вашите\n"
+"потреби (иако ќе можете да ја менувате и по инсталацијата). Примерок од\n"
+"избраната конфигурација е прикажана во сликата на мониторот."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Во случај ако имате различни сервери достапни за вашата картичка, со или\n"
+"без 3Д забрзување, ќе бидете прашани да го изберете серверот кој најмногу\n"
+"одговара на вашите потреби."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Опции\n"
+"\n"
+" Овие чекори ќе ви овозможат да изберете дали вашата машина\n"
+"автоматски да го вклучи графичкиот интерфејс при вклучување.\n"
+"Веројатно би сакале да одговорите „%s“, ако планирате вашата машина\n"
+"да е сервер, или ако не сте успеале да го конфигурирате\n"
+"графичкиот приказ."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Сега треба да одлучите каде на вашиот диск сакате да се инсталира\n"
+"оперативниот систем „Mandriva Linux“. Ако вашиот хард диск е празен\n"
+"или сето достапно место го користи постоечки оперативен систем, треба\n"
+"да го партиционирате дискот. Во основа, партиционирање на хард диск значи\n"
+"логичка поделба за создавање на простор потребен за инсталирање на\n"
+"вашиот нов „Mandriva Linux“ систем.\n"
+"\n"
+"Бидејќи процесот на партиционирање на хард дискот вообичаено е "
+"нереверзибилен\n"
+"и може да доведе до губење на податоци. Партиционирањето може да е "
+"зплашувачко\n"
+"и стресно за неискусен корисник. За среќа, „DrakX“ вклучува волшебник кој "
+"овој\n"
+"процес го прави многу едноставен. Пред да продолжите со овој чекор, "
+"прочитајте\n"
+"го остатокот од секцијата и пред се, не брзајте.\n"
+"\n"
+"Во зависност од конфигурацијата на вашиот хард диск, достапни се\n"
+"повеќе опции:\n"
+"\n"
+" * „%s“: оваа опција ќе изведе автоматско партиционирање на празниот(те) диск"
+"(ови).\n"
+"Ако ја користете оваа опција, понатаму нема да сте запрашувани.\n"
+"\n"
+" * „%s“: волшебникот детектирал една или повеќе постоечки „Linux“ партиции\n"
+"на вашиот диск. Ако сакате да ги користите, изберете ја оваа опција.\n"
+"Потоа ќе бидете прашани да ги изберете точките на монтирање асоцирани со "
+"секоја\n"
+"од партициите. Наследните точки на монтирање се изберени како стандардни, и "
+"за\n"
+"поголемиот дел е добра идеја да се задржат.\n"
+"\n"
+" * „%s“: ако на дискот има инсталирано „Microsoft Windows“ и тој го зафаќа "
+"целиот простор,\n"
+"мора да направите празен простор за „GNU/Linux“. За да го сторите ова, "
+"можете да ја\n"
+"избришете партицијата на „Microsoft Windows“ и податоците (видете го "
+"решението\n"
+"„Избриши цел диск“) или пак да ја промените големината на вашата „Microsoft "
+"Windows“\n"
+"дали е тоа „FAT“ или „NTFS“. Промена на големината може да се изврши без "
+"губење на\n"
+"податоците, но претходно е потребно да ja дефрагментирате „Windows“ "
+"партицијата.\n"
+"Строго се препорачува да наравите копија на вашите податоци. Употреба на "
+"оваа опција\n"
+"се препорачува ако на вашиот компјутер сакате да ѓи користите и двата "
+"оперативни системи,\n"
+"и „Mandriva Linux“ и „Microsoft Windows“.\n"
+"\n"
+" Пред да ја изберете оваа опција треба да знаете дека по ова „Microsoft "
+"Windows“\n"
+"партицијата ќе биде помала. Ќе имате помалку слободен простор под "
+"„Microsoft\n"
+"Windows“ за чување на податоци или инсталирање на нов софтвер.\n"
+"\n"
+" * „%s“: ако сакате да ги избришете сите податоци и сите партиции присутни "
+"на\n"
+"вашиот диск и да ги замените со вашиот нов „Mandriva Linux“ систем, изберете "
+"ја\n"
+"оваа опција. Внимавајте, откако ќе потврдите оваа операција не може да\n"
+"биде вратена.\n"
+"\n"
+" !! Ако ја изберете оваа опција, сите податоци на вашиот диск ќе бидат "
+"избришани. !!\n"
+"\n"
+" * „%s“: оваа опција се јавува кога хард дискот е комплетно заземен од\n"
+"„Microsoft Windows“. Ако ја изберете оваа опција едноставно ќе избрише се "
+"што\n"
+"имате на дискот и ќе почнето одново, партиционирајќи се од почеток.\n"
+"\n"
+" !! Ако ја изберете оваа опција, сите податоци на вашиот диск ќе бидат "
+"изгубени. !!\n"
+"\n"
+" * \"%s\": изберете ја оваа опција ако сакате рачно да го партиционирате "
+"вашиот хард\n"
+"диск. Внимавајте -- ова е моќен но опасен избор и можете многу лесно да ги "
+"изгубите\n"
+"сите ваши податоци. Затоа оваа опција е препорачлива само ако веќе имате "
+"правено\n"
+"вакво нешто и имате малку искуство. За повеќе инструкции како да ја "
+"користите\n"
+"алатката „DiskDrake“, обратете се на секцијата „Менаџирање на вашите партиции"
+"„ во\n"
+"„Почетен водич“."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Користи ја постоечката партиција"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Избриши го целиот диск"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Еве сте, инсталацијата заврши и вашиот „GNU/Linux“ систем е подготвен\n"
+"за користење. Само притиснете на „%s“ за да го рестартирате системот.\n"
+"Не заборавајте да го отстраните инсталациониот медиум („CD-ROM“ или "
+"дискета)\n"
+"Прво нешто што треба да проверете по завршувањето на хардверските тестови\n"
+"е подигнувачкото мени, кое ви дава избор кој оперативен систем сакате\n"
+"да го вклучите.\n"
+"\n"
+"Копчето „%s“ прикажува уште две додатни копчиња за:\n"
+"\n"
+" * „%s“: создавање на инсталациска дискета која автоматски ќе го\n"
+"изведе целиот процес на инсталација без помош од оператор,\n"
+"слично на инсталацијата која штотуку ја конфигуриравте.\n"
+"\n"
+" Забележете дека по притискањето на ова копче се појавуваат две\n"
+"различни опции:\n"
+"\n"
+" * „%s“. Ова е делумно автоматизирана инсталација, Чекорот\n"
+"за поделба на дискот е единствената интерактивна процедура.\n"
+"\n"
+" * „%s“. Целосно автоматизирана инсталација: дискот комплетно\n"
+"се пребришува, и сите податоци ќе бидат изгубени.\n"
+"\n"
+" Оваа можност е многу практична при инсталирање на поголем број слични\n"
+"машини. За повеќе информации, видете го одделот за „Автоматска Инсталација“\n"
+"на нашата веб страница.\n"
+"\n"
+" * „%s“(*): да ја зачувува листата на изборот на пакети во оваа "
+"инсталација.\n"
+"За да го користите овој избор за друга инсталација, внесете ја дискетата\n"
+"и започнете ја инсталацијата. Откако ќе го внесете дискот и при "
+"појавувањето\n"
+"на екранот притиснете на кочето „F1“ и внесете >>linux defcfg=\"floppy\"<<\n"
+"и притиснете на тастерот „Enter“.\n"
+"\n"
+"(*) Потребна ви е дискета форматирана со „FAT“ датотечен систем. За да\n"
+"ја креирате под „GNU/Linux“ извршете „mformat a:“ или „fdformat /dev/fd0“\n"
+"проследено со „mkfs.vfat /dev/fd9“."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Генерирај дискета за авто-инсталација"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Ако сте избрале повторно да користите некои наследни „GNU/Linux“\n"
+"партиции, можеби сакате да форматирате некои од нив и да ги\n"
+"избришете сите податоци кои ги содржат. За да направите ова, ве\n"
+"молиме изберете ги ѝ тие партиции.\n"
+"\n"
+"Ве молиме зебележете дека не е неопходно повторно да ги форматирате\n"
+"сите претходно постоечки партиции. Мора повторно да ги форматирате\n"
+"партициите кои го содржат оперативниот систем (како што се „/“ или „/var“),\n"
+"но, не мора да ги форматирате партициите кои содржат податоци кои\n"
+"сакате да ги задржите (вообичаено „/home“).\n"
+"\n"
+"Внимавајте при изборот на партициите. Откако ќе заврши форматирањето,\n"
+"сите податоци на избраните партиции ќе бидат избришани и нема да\n"
+"може да ги вратите.\n"
+"\n"
+"Ако сте подготвени да ги форматирате партициите, притиснете „%s“.\n"
+"\n"
+"Ако сакате да изберете друга партиција за системска инсталација на\n"
+"вашиот нов оперативен систем „Mandriva Linux“, притиснете на „%s“.\n"
+"\n"
+"Ако сакате да изберете партиции за проверка на лоши блокови на дискот,\n"
+"притиснете на „%s“."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Додека го инсталирате „Mandriva Linux“, најверојанто е дека некои пакети\n"
+"веќе имаат надградби од првичното издание. Можеби се поправени грешки,\n"
+"решени се безбедносни проблеми. За да придобиете од овие надградби,\n"
+"сега може да ги преземете од Интернет. Ако имате функционална интернет\n"
+"врска штиклирајте го „%s“ или ако претпочитате подоцна да ги\n"
+"инсталирате надградбите, притиснете на „%s“.\n"
+"\n"
+"Ако го штиклирате „%s“ ќе ви се појави листа со веб локации од каде\n"
+"ќе можете да ги преземете надградбите. Изберете ја онаа локација\n"
+"која е најблиску до вас. Ќе се појави дрво со избор на пакети:\n"
+"прегледајте го изборот, и за да ги преземете и инсталирате избраните\n"
+"пакети притиснете на „%s“. Во спротивно, притиснете на „%s“."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Сега, „DrakX“ ќе ви овозможи да го изберете сигурносното ниво кое го\n"
+"посакувате за вашиот компјутер. Грубо кажано, сигурносното ниво треба\n"
+"да е повисоко ако компјутерот содржи важни податоци или ако е директно\n"
+"изложен на Интернет. Како замена за повисоко сигурносно ниво\n"
+"лесната употреба ќе биде намалена.\n"
+"\n"
+"Ако не знаете што да изберете, задржете ја дадената опција. Нивото на "
+"сигурност\n"
+"ќе можете подоцна да го смените со алатката „draksec“, која е дел од\n"
+"Конгролниот центар на „Mandriva Linux“.\n"
+"\n"
+"Пополнете го полето „%s“ со адресата na е-пошта на личноста која е\n"
+"одговорна за сигурноста. Сигурносните пораки ќе се праќаат на таа адреса."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Администратор за сигурност"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Во овој момент треба да изберете која партициja или партиции ќе ги користите "
+"за\n"
+"инсталација на системот „Mandriva Linux“. Ако партициите се веќе "
+"дефинирани,\n"
+"од претходна инсталација на „GNU/Linux“ или од друга алатка за поделба на "
+"дискот,\n"
+"може да ги користите веќе постоечките партиции. Во спротивно, партициите\n"
+"на хард дискот мора да бидат дефинирани.\n"
+"\n"
+"За да создадете партиции најпрво треба да изберете хард диск. Можете да го\n"
+"изберете дискот за партицирање со притискање на „hda“ за првиот „IDE“ уред,\n"
+"„hdb“ за вториот, „sda“ за првиот „SCSI“ уред итн.\n"
+"\n"
+"За да го поделите избраниот хард диск, можете да ги користите овие опции:\n"
+"\n"
+" * „%s“: оваа опција ги брише сите партиции на избраниот хард диск\n"
+"\n"
+" * „%s“: оваа опција ви овозможува автоматски да создадете „ext3“ и „swap“\n"
+"партиции во слободниот простор од вашиот хард диск\n"
+"\n"
+"„%s“: ви дава пристап до додатни карактеристики: \n"
+"\n"
+" * „%s“: ја зачувува партициската табела на дискета. Корисно за\n"
+"понатамошно враќање на партициската табела, ако е потребно. Строго се\n"
+"препорачува да го изведете овој чекор.\n"
+"\n"
+" * „%s“: ви овозможува да вратите претходно зачувана партициска табела\n"
+"од дискета.\n"
+"\n"
+" * „%s“: ако вашата партициска табела е оштетена, со користење на оваа\n"
+"опција може да се обидете да ја вратите. Ве молиме бидете внимателни\n"
+"и запомнете дека ова не успева секогаш.\n"
+"\n"
+" * „%s“: ги отфрла сите промени и ја превчитува партициската табела\n"
+"која претходно постоела на хард дискот.\n"
+"\n"
+" * „%s“: ако ја одштиклирате оваа опција корисниците ќе бидат приморани\n"
+"рачно да ги монтираат и демонтираат отстранливите медиуми како што\n"
+"се дискетите и CD-ата.\n"
+"\n"
+" * „%s“: изберете ја оваа опција ако сакате да користите волшебник за\n"
+"поделба на вашиот хард диск. Ова е препорачано ако немате добро\n"
+"познавање за поделба на дискови.\n"
+"\n"
+" * „%s“: изберете ја оваа опција за да ги откажете вашите промени.\n"
+"\n"
+" * „%s“: ви овозможува додатни.дејства на партициите (вид, опции, формат)\n"
+"и ви дава повеќе информации за хард дискот.\n"
+"\n"
+" * „%s“: кога ќе завршите со поделбата на хард дискот, ова повторно\n"
+"ќе ги зачувува вашите промени на дискот.\n"
+"\n"
+"Кога дефинирате големина на партиција, на истата големината можете\n"
+"фино да ја поставите со користење на стрелките на тастатурата.\n"
+"\n"
+"Забелешка: сите опции можете да ги користете преку тастатурата. Користете\n"
+"го тастерот „Tab“ и стрелките [Горе/Долу] на тастатурата .\n"
+"\n"
+"Кога е избрана партиција, можете да користите:\n"
+"\n"
+" * „Ctrl-c“ - да создадете нова партиција (кога е избрана празна партиција)\n"
+"\n"
+" * „Ctrl-d“ - да избришете партиција\n"
+"\n"
+" * „Ctrl-m“ - да поставите точка на монтирање.\n"
+"\n"
+"За да добиете информации за различните типови на датотечни системи,\n"
+"прочитајте го одделот за „ext2FS“ од „Упатство за употреба“.\n"
+"\n"
+"Ако инсталирате на „PPC“ машина, ќе сакате да создадете мала „HFS "
+"bootstrap“\n"
+"партиција од барем 1МБ, која ќе се користи од подигнувачот „yaboot“. Ако "
+"сакате\n"
+"да ја направите партицијата малку поголема, на пример 50МБ, тоа може да "
+"биде\n"
+"корисно како место за чување резервен кернел и „ramdisk“ слики за итни "
+"случаи."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Автоматско монтирање на отстранливи медиуми"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Префрлање помеѓу нормален/експертски режим"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"На вашиот диск е пронајдено повеќе од една „Microsoft“ партиција.\n"
+"Изберете ја онаа што сакате да ја намалите/зголемите за да го\n"
+"инсталирате вашиот нов „Mandriva Linux“ оперативен систем.\n"
+"\n"
+"Секоја партиција е излистана со: „Linux име“, „Windows име“\n"
+"„Капацитет“.\n"
+"\n"
+"„Linux име“ е со структура: „тип на диск“, „број на диск“,\n"
+"„број на партиција“ (на пример, „hda1“).\n"
+"\n"
+"„Тип на дискот“ е „hd“ ако дискот е „IDE“, и „sd“ ако дискот е SCSI.\n"
+"\n"
+"„Број на дискот“ е секогаш буква после „hd“ или „sd“. Кај „IDE“ дисковите:\n"
+"\n"
+" * „a“ значи „master“ диск на примарниот „IDE“ контролер;\n"
+"\n"
+" * „b“ значи „slave“ диск на примарниот „IDE“ контролер;\n"
+"\n"
+" * „c“ значи „master“ диск на секундарниот „IDE“ контролер;\n"
+"\n"
+" * „d“ значи „slave“ диск на секундарниот „IDE“ контролер.\n"
+"\n"
+"Кај „SCSI“ дисковите, буквата „a“ значи најнизок „SCSI ID“, а „b“ значи\n"
+"втор најмал „SCSI ID“, итн.\n"
+"\n"
+"„Windows име“ е буквата на дискот под „Windows“ (првиот диск или партиција\n"
+"се вика „C:“)."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"„%s“: проверка за тековниот избор на држава. Ако не сте во оваа држава\n"
+"притиснете на копчето „%s“ и изберете друга. Доколку вашата држава не\n"
+"се наоѓа на прикажаната листа, притиснете на копчето „%s“ за да ја\n"
+"добиете комплетната листа на држави."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Овој чекор се активира само ако на вашиот компјутер претходно е\n"
+"пронајдена постоечка „GNU/Linux“ партиција.\n"
+"\n"
+"„DrakX“ треба да знае дали сакате да извршите нова инсталација или\n"
+"надградба на постоечкиот „Mandriva Linux“ систем:\n"
+"\n"
+" * „%s“: Во најголем број случаеви, ова комплетно го брише стариот систем.\n"
+"Сепак, зависно од шемата на делење на дискот, можете да спречите некои\n"
+"од вашите постоечки податоци (посебно директориумите „home“) да не бидат\n"
+"пребришани. Ако сакате да го промените начинот на кој е поделен вашито диск\n"
+"или да го промените датотечниот систем, треба да ја користете ја оваа "
+"опција.\n"
+"\n"
+" * „%s“: Оваа класа на инсталација ви овозможува да ги надградите пакетите "
+"кои\n"
+"се тековно инсталирани на вашиот „Mandriva Linux“ систем. Вашата тековна "
+"шема на\n"
+"поделба на дискот и корисничките податоци нема да бидат променети. Повеќето "
+"од\n"
+"останатите конфигурациски чекори остануваат достапни и се слични со "
+"стандардната\n"
+"инсталацијата.\n"
+"\n"
+"Користењето на опцијата „Надгради“ работи одлично на „Mandriva Linux“ "
+"системи кои имаат\n"
+"верзија „8.1“ или понова. Извршување на надградба на „Mandriva Linux“ верзии "
+"постари\n"
+"од верзија „8.1“ е строго непрепорачлива."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Зависно од тоа кој јазик го имате избрано, „DrakX“ автоматски ќе го избере\n"
+"одредениот тип за конфигурација на тастатурата. Проверете дали изборот\n"
+"ви одговара или изберете друг распоред за тастатура.\n"
+"\n"
+"Исто така, можеби нема да ја има тастатурата која точно одговара на\n"
+"вашиот јазик: на пример, ако сте Македонец кој зборува Англиски,\n"
+"можеби имате Македонска тастатура. Или, ако зборувате Англиски и се\n"
+"наоѓате во Квебек, може да се најдете во ситуација каде што вашиот\n"
+"мајчин јазик и поставувањата за тастатура не се совпаѓаат. Во било кој\n"
+"случај, овој чекор од инсталацијата ви овозможува да ја изберете\n"
+"соодветната тастатура од листата.\n"
+"\n"
+"За да се прикаже листа на подржани тастатури притиснете на копчето „%s“.\n"
+"\n"
+"Ако изберете распоред на тастатура кој не е базиран на латинска азбука,\n"
+"наредниот прозорец ќе ви овозможи да ги изберете тастерите за промена\n"
+"меѓу Латински и не-Латински распоред."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Првиот чекор е да го изберете јазикот кој го преферирате.\n"
+"\n"
+"Вашиот избор на јазик ќе влијае на инсталерот, документацијата\n"
+"и системот воопшто. Најпрво изберете го регионот каде се наоѓате\n"
+"и потоа јазикот кој го говорите.\n"
+"\n"
+"Со притискање на копчето „%s“ ви се овозможува да изберете други\n"
+"јазици кои ќе се инсталираат на вашата работна станица, притоа ќе се\n"
+"инсталираат системски датотеки, документација и апликации во завиност\n"
+"од избраниот јазик. На пример, доколку Шпански корисници го користат\n"
+"вашиот компјутер, во дрвото изберете Македонски како почетен јазик\n"
+"и „%s“ во одделот „Напредно“.\n"
+"\n"
+"За „UTF-8“ (повеќекодна) подршка: Повеќекодната подршка е ново кодирање\n"
+"на знаци наменето да ги покрие сите постоечки јазици. Но, комплетна подршка\n"
+"во „GNU/Linux“ е сеуште во развој. Поради оваа причина, употребата на „UTF-"
+"8“ во\n"
+"„Mandriva Linux“ ќе зависи од изборот на корисникот:\n"
+"\n"
+" * Ако изберете јазик со силно наследно кодирање („latin1“ јазици,\n"
+"Руски, Јапонски, Кинески, Корејски, Тајландски, Грчки, Турски, повеќето\n"
+"„iso-8859-2“ јазици), наследното кодирање ќе се користи како почетно;\n"
+"\n"
+" * Останатите јазици ќе користат ја повеќекодната табела како почетна;\n"
+"\n"
+" * Ако се потребни два или повеќе јазици и тие јазици не користат иста\n"
+"кодна табела, во тој случај повеќекодната табела ќе се користи за\n"
+"целиот систем;\n"
+"\n"
+" * И за крај, повеќекодната табела може присилно да се користи низ целиот\n"
+"систем по избор на корисникот притоа избирајќи ја опцијата „%s“, независно\n"
+"кои јазици претходно биле избрани.\n"
+"\n"
+"Забележете дека не сте ограничени да изберете само еден додатен јазик.\n"
+"Можете да изберете повеќе или да ѓи инсталирате сите со штиклирање на „%s“.\n"
+"Избирањето на подршка за одреден јазик значи дека ќе се инсталираат "
+"преводи,\n"
+"фонтови, проверувачи на правопис итн. соодветно на избраниот јазик.\n"
+"\n"
+"За да ѓи менувате јазиците кои се инсталирани на вашиот систем, како „root“\n"
+"извршете ја командата „localedrake“ и притоа ќе се смени јазикот на "
+"системско ниво.\n"
+"Ако ја извршите командата како обичен корисник, јазикот ќе се промени само\n"
+"за тој одреден корисник."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Шпански"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Вообичаено, „DrakX“ го детектира бројот на копчиња на вашиот глушец.\n"
+"Ако не успее, тогаш претпоставува дека имате глушец со две копчиња и ќе "
+"постави\n"
+"емулација за трето копче. Третото копче на глушец со две копчиња може да се\n"
+"користи при истовремено притискање на левото и десното копче. „DrakX“ "
+"автоматски\n"
+"препознава дали се работи за „PS/2“, сериски или „USB“ глушец.\n"
+"\n"
+"Ако имате глушец со 3 копчиња без тркалце, може да изберете „%s“ глушец.\n"
+"Тогаш „DrakX“ ќе го конфигурира вашиот глушец така што ќе можете да "
+"симулирате\n"
+"тркалце со него. За да го користите тркалцето, притиснете на средното копче\n"
+"и движете го глушецот нагоре и надолу.\n"
+"\n"
+"Ако поради некоја причина сакате да наведете друг тип на глушец,\n"
+"изберете го соодветниот тип од понудената листа.\n"
+"\n"
+"Може да го изберете внесот „%s“ за да изберете „општ“ тип на глушец\n"
+"кој ќе работи со скоро секој глушец.\n"
+"\n"
+"Ако сте избрале глушец различен од понудениот, ќе се појави екран за\n"
+"тестирање. Употребете ги копчињата и тркалцето за да проверите дали\n"
+"поставувањата се во ред и дека глушецот работи исправно. Ако глушецот\n"
+"не работи како што треба, притиснете на „space“ или на „Enter“ за да го\n"
+"откажете тестот и ќе бидете вратени на листата за глувци.\n"
+"\n"
+"Понекогаш, глувците со тркалце не се детектираат автоматски, па ќе треба\n"
+"да го изберете од листата. Изберете го оној што одговара на портата на\n"
+"која што е приклучен. По избирањето на глушецот и притискање на\n"
+"копчето „%s“, ќе се прикаже слика на глушец на екранот. Движете го "
+"тркалцето\n"
+"за да видите дали работи како што треба. Откога ќе видите дека\n"
+"тркалцето на екранот се движи исто како што го движите вистинското тркалце,\n"
+"тестирајте ѓи копчињата и проверете дека покажувачот се движи по екранот "
+"како што\n"
+"го движите глушецот."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "со емулација на тркало"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Универзално | Било кое „PS/2“ и „USB“ глувче"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Изберете ја вистинската порта. На пример, портата „COM1“ под „Windows“,\n"
+"во „GNU/Linux“се вика „ttyS0“."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Ова е многу важна одлука во врска со безбедноста на вашиот „GNU/Linux“ "
+"систем:\n"
+"треба да ја внесете лозинката за „root“. „Root“ е системскиот администратор\n"
+"и е единствениот корисник кој е авторизиран да надградува, додава \n"
+"корисници, ја менува севкупната системска конфигурација, итн. Во кратки "
+"црти,\n"
+"„root“ може да прави сѐ! Затоа мора да изберете лозинка која што е тешка\n"
+"за погодување -- „DrakX“ ќе ви каже ако е премногу лесна. Како што можете "
+"да\n"
+"видите, не сте принудени да внесете лозинка, но ние строго ви препорачуваме "
+"да\n"
+"не го правите ова. „GNU/Linux“ е исто склон на грешки при работа исто како и "
+"било\n"
+"кој друг оперативен систем. Бидејќи „root“ може да ги надмине сите "
+"ограничувања\n"
+"и ненамерно да ги избрише сите податоци на партициите ако невнимателно им\n"
+"пристапува на истите. Многу е важно да некој тешко се најави\n"
+"како „root“.\n"
+"\n"
+"Лозинката треба да е составена од букви и бројки и да е долга барем 8 "
+"знаци.\n"
+"Никогаш не ја запишувајте лозинката на „root“ -- така премногу\n"
+"лесно се загрозува вашиот систем.\n"
+"\n"
+"Еден ризик: немојте да ја направите лозинката премногу долга или,\n"
+"комплицирана, бидејќи е потребно да ја знаете на памет.\n"
+"\n"
+"Лозинката нема да биде прикажана на екранот додека ја внесувате. За да се\n"
+"намали ризикот при грешка на внесување на лозинката потребно е да ја "
+"внесете\n"
+"двапати. Ако погрешно ја напишете лозинката и при двете внесувања,\n"
+"оваа „неточна“ лозинка ќе треба да ја користите при првиот обид да\n"
+"се најавите како „root“.\n"
+"\n"
+"Ако сакате да користите сервер за проверка за контрола на пристапот\n"
+"на вашиот компјутер, притиснете на копчето „%s“\n"
+"\n"
+"Ако вашата мрежа користи некоја од „LDAP“, „NIS“ или „PDC Windows Domain“\n"
+"сервиси за проверка, изберете го вистинскиот за „%s “. Ако не знаете кој од "
+"овие\n"
+"сервиси користите, потребно е да го прашате вашиот мрежен администратор.\n"
+"\n"
+"Доколку имате проблем со паметење на лозинки или ако вашиот компјутер\n"
+"никогаш нема да се поврзи на Интернет и имате потполна доверба во оние\n"
+"кои го користат вашиот компјутер, може да изберете „%s“."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "проверка"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Подигнувач е мала програма која компјутерот ја вклучува за времето\n"
+"на вклучување. Оваа програма е одговорна за вклучување на целиот\n"
+"систем. Секако, инсталацијата на подигнувачот е целосно автоматизирана.\n"
+"„DrakX“ ќе го анализира секторот за подигнување на дискот и ќе\n"
+"дејствува соодветно на тоа што ќе пронајде:\n"
+"\n"
+" * ако е пронајден сектор за подигнување на „Windows“ ќе го замени со „GRUB/"
+"LILO“\n"
+"сектор за подигнување. Вака ќе можете да го вклучите „GNU/Linux“ или било "
+"кој\n"
+"друг оперативен систем кој е инсталиран на вашата машина.\n"
+"\n"
+" * ако е пронајден „GRUB“ или „LILO“ сектор за подигнување, ќе го замени со "
+"нов.\n"
+"\n"
+"Доколку „DrakX“ не може да одреди каде да го смести секторот за "
+"подигнување,\n"
+"ќе бидете запрашани каде се снима. Општо, најсигурното место е „%s“.\n"
+"При избор на „%s“ нема да се инсталира подигнувач. Користете ја оваа опција\n"
+"само ако знаете што правите."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Сега е време да го изберете системот за печатење за вашиот компјутер.\n"
+"Други оперативни системи може да ви понудат еден, „Mandriva Linux“ нуди\n"
+"два. Секој од системите за печатење најдобро одговара со одредени\n"
+"типови на конфигурација.\n"
+"\n"
+" * „%s“ -- што е акроним од „print, do not queue“, е вистинскиот избор ако\n"
+"имате директна врска со вашиот печатач, не сакате да имате паника при\n"
+"печатење и немате в мрежени печатачи. („%s“ ќе се справи само во случај\n"
+"на многу едноставна мрежа и споро работи кога се користи во мрежи.)\n"
+"Доколку ова е вашето прво искуство со „GNU/Linux“,\n"
+"препорачливо е да го користите „pdq„.\n"
+"\n"
+" * „%s“ -- или „Common Unix Printing System“ е извонреден и за печатење на\n"
+"локалниот печатач и за печатење од другата страна на планетата. Тој е \n"
+"едноставен за конфигурирање и може да се однесува како сервер или клиент\n"
+"за историскиот „lpd“ систем за печатење. Значи е компатибилен со постари\n"
+"оперативни системи на кои сеуште им се потребни сервиси за печатење.\n"
+"Иако е многу моќен, сепак, основното поставување е скоро лесно како и за\n"
+"„pdq“. Ако сакате да емулирате „lpd“ сервер, проверете дали е вклучен\n"
+"сервисот „cups-lpd“. „%s“. Вклучува и графички изглед за печатење или\n"
+"избирање на опции за печатачот и за раководење со истиот.\n"
+"\n"
+"Ако сега се одлучите за избор и подоцна не ви се допаѓа вашиот\n"
+"систем за печатење, можете да го промените со вклучување на\n"
+"„PrinterDrake“ од контролниот центар на „Mandriva Linux“\n"
+"со протискање на копчето „%s“."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Експерт"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"„DrakX“ прво ќе ги детектира „IDE“ уредите присутни на вашиот компјутер. "
+"Исто\n"
+"така, ќе скенира за една или повеќе „PCI SCSI“ картички на вашиот ситем. Ако "
+"е пронајдена\n"
+"„SCSI“ картичка, „DrakX“ автоматски ќе го инсталира драјверот кој најмногу "
+"одговара.\n"
+"\n"
+"Бидејќи хардверската детекција понекогаш не проаѓа, „DrakX“ можеби нема да "
+"успее\n"
+"да ги пронајде вашите хард дискови. Во тој случај треба рачно да го одредите "
+"вашиот хардвер.\n"
+"\n"
+"Ако треба рачно да го одредите вашиот „PCI SCSI“ адаптер, „DrakX“ ќе ве "
+"праша\n"
+"дали сакате да ги конфигурирате опциите за него. Треба да дозволите „DrakX“ "
+"да го проба\n"
+"хардверот со опциите одредени за каритичката кои се потребни да се "
+"иницијализира\n"
+"адаптерот. Поголемиот дел од времето „DrakX“ ќе го помине овој чекор без "
+"никакви\n"
+"проблеми.\n"
+"\n"
+"Ако „DrakX“ не може автоматски да одреди кои параметрки треба да се\n"
+"пренесат на хардверот за опциите , ќе треба рачно да го\n"
+"конфигурирате драјверот."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"„%s“: ако е пронајдена звучната карта на вашиот систем, таа ќе биде\n"
+"прикажана овде. Доколку вашата звучна карта е различна од прикажаната\n"
+"може да притиснете на копчето и да изберете друг драјвер."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Како преглед, „DrakX“ ќе ви приложи резиме од информациите кои ѓи\n"
+"собрал за вашиот систем. Во зависност од хардверот кој е инсталиран\n"
+"на вашата машина може да ѓи имате сите или само некои од следниве\n"
+"внесови. Секој од внесовите е направен со конфигурација за хардверот\n"
+"проследено со брзо резиме за тековната конфигурација. За да извршете\n"
+"промени, соодветно притиснете на копчето „%s“.\n"
+"\n"
+" * \"%s\": проверете го тековниот избор за мапа на тастатура и променете ја\n"
+"доколку тоа е потребно.\n"
+"\n"
+" * „%s“: проверка за тековниот избор на држава. Ако не сте во оваа држава\n"
+"притиснете на копчето „%s“ и изберете друга. Доколку вашата држава не\n"
+"се наоѓа на прикажаната листа, притиснете на копчето „%s“ за да ја\n"
+"добиете комплетната листа на држави.\n"
+"\n"
+" * „%s“: вообичаено, DrakX ја одредува вашата временска зона во зависност\n"
+"кој држава ја имате избрано. Доколку временската зона е неточна,\n"
+"за промена можете да притиснете на копчето „%s“.\n"
+"\n"
+" * „%s“: потврдете ја вашата тековна конфигурација на глушецот и\n"
+"притиснете на копчето да ја промените доколку тоа е потребно.\n"
+"\n"
+" * „%s“: при притискање на копчето „%s“ ќе се вклучи Волшебникот\n"
+"за конфигурирање на принтерот. За повеќе информации како да поставете\n"
+"нов принтер, консултирајте се со соодветното поглавје од „Почетен водич“.\n"
+"Изгледот претставен во нашиот водич е сличен на оној кој се користи при "
+"инсталацијата.\n"
+"\n"
+" * „%s“: ако е пронајдена звучната карта на вашиот систем, таа ќе биде\n"
+"прикажана овде. Доколку вашата звучна карта е различна од прикажаната\n"
+"може да притиснете на копчето и да изберете друг драјвер.\n"
+"\n"
+" * „%s“: ако имате ТВ карта, овде ќе бидат прикажани информациите за\n"
+"нејзината конфигурација. Доколку имате ТВ карта и не е пронајдена, "
+"притиснете\n"
+"на „%s“ и обидете се да ја конфигурирате рачно.\n"
+"\n"
+" * „%s“: ако мислите дека конфигурацијата е погрешна може да притиснете на\n"
+"копчето „%s“ и да ги променете параметрите асоцирани со вашата картичка.\n"
+"\n"
+" * „%s“: вообичаено, DrakX го конфигурира вашиот графички изглед со\n"
+"резолуција од „800х600“ или „1024х768“. Ако ова не ви одговара, притиснете "
+"на\n"
+"„%s“ и повторно конфигурирајте го вашиот графички изглед.\n"
+"\n"
+" * „%s“: ако сакате да конфигурирате пристап кон Интернет или локална "
+"мрежа,\n"
+"можете да го направите тоа. Информирајте се од испечатената документација "
+"или\n"
+"по инсталацијата користете го Контролниот центар на „Mandriva Linux“ за да\n"
+"добиете комплетна помош.\n"
+"\n"
+" * \"%s\": ви дозволува да конфигурирате адреси за „HTTP“ и „FTP“ адреси, "
+"доколку\n"
+"машината на која инсталирате ќе се наоѓа позади прокси сервер.\n"
+"\n"
+" * \"%s\": овој внес ви овозможува повторно да го дефинирате нивото на "
+"сигурност\n"
+"кое е дефинирано во претходниот чекор.\n"
+"\n"
+" * \"%s\": ако планирате да го поврзите вашиот компјутер на Интернет, добра "
+"идеја\n"
+"е да се заштитите од напади со поставување на огнен ѕид (firewall). За "
+"детали околу\n"
+"поставување на огнен ѕид, консултирајте се со соодветното\n"
+"поглавје од „Почетен водич“.\n"
+"\n"
+" * \"%s\": ако сакате да ја промените конфигурацијата на подигнувачот,\n"
+"притиснете на ова копче. Ова би требало да се зачува за напредни корисници.\n"
+"Информирајте се од испечатената документација или од вградената помош за\n"
+"подигнувачот во Контролниот центар на „Mandriva Linux“.\n"
+"\n"
+" * \"%s\": преку овој внес може да поставете кои сервиси ќе се вклучуваат\n"
+"при вклучување на вашата машина. Ако планирате да ја користите како сервер,\n"
+"добро би било да го прегледате ова поставување."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "„ISDN“ картичка"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Графички интерфејс"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Изберете го дискот што сакате да го избришете за да ја инсталирате новата\n"
+"„Mandriva Linux“ партиција. Внимавајте, сите податоци на него ќе бидат\n"
+"изгубени и нема да може да се вратат!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Ако сакате да ги избришете сите податоци и партиции што се наоѓаат\n"
+"на овој диск, притиснете на „%s“. Внимавајте, откако ќе притиснете\n"
+"на „%s“, нема да може да ги вратите податоците и партициите кои се\n"
+"присутни на вашиот диск, вклучувајќи ги и сите податоци на „Windows“.\n"
+"\n"
+"За да ја откажете оваа операција без да изгубите податоци и партиции\n"
+"кои се наоѓаат на овој диск, притиснете на „%s“."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Следно ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Претходно"
diff --git a/perl-install/install/help/po/mn.po b/perl-install/install/help/po/mn.po
new file mode 100644
index 000000000..47f016e19
--- /dev/null
+++ b/perl-install/install/help/po/mn.po
@@ -0,0 +1,1191 @@
+# translation of DrakX.po to Mongolian
+# Copyright (C) 2003, 2004 Free Software Foundation, Inc.
+# Khurelbaatar Lkhagavsuren <hujii247@yahoo.com>, 2003.
+# Khurelbaatar Lkhagvasuren <hujii247@yahoo.com>, 2003.
+# Sanlig Badral <Badral@openmn.org>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2004-01-02 00:35+0100\n"
+"Last-Translator: Sanlig Badral <Badral@openmn.org>\n"
+"Language-Team: Mongolian <openmn-core@lists.sf.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.0.2\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Та энэ чанарыг ашиглахыг хүсэж байна уу?"
+
+#: ../help.pm:57
+#, fuzzy, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"вы вы вы вы вы г вы г бол Нэр г г Нэр бол төрөл г г г Erfitt төрөл бол бол г "
+"бол г г Erfitt бол г\n"
+" г\n"
+" г\n"
+" г\n"
+" г Дугаар г секунд Дугаар."
+
+#: ../help.pm:88
+#, fuzzy, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Мандрива Линуксын суулгац нь хэд хэдэн CD-ROM дээр байдаг. Хэрэв ямар\n"
+"нэгэн сонгогдсон багц нь өөр CD-ROM дээр байвал DrakX үүнийг мэдэх бөгөөд\n"
+"одооны байгаа CD-г гаргаад тухайн хэрэгтэй CD-г оруулахыг хүснэ."
+
+#: ../help.pm:95
+#, fuzzy, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"бол вы аас аас г аас дөрөв Та аас г г Хөгжил бүлэг г\n"
+" с вы аас ямх бүлэг г\n"
+" с бүлэг г\n"
+" с бол аас вы г\n"
+" с бол вы вы г бүлэг нэр бүлэг вы энгийн диалог г\n"
+" с аас г\n"
+" с бол г\n"
+" с аас вы хэмжээ аас бол г с бол вы вы г вы ямх с горим вы шинэ бол."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr ""
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr ""
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr ""
+
+#: ../help.pm:152
+#, fuzzy, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"вы вы Мод Мод вы г вы Мод Тодорхойлолт вы аас г г вы аас бүлэг аас вы үгүй "
+"бол аас вы бол бол с с г с бол диалог бусад аас бусад Программ бол г Эмблем "
+"дор аас жигсаалт вы ачаалах жигсаалт бол вы аас вы Эмблем вы аас секунд аас."
+
+#: ../help.pm:183
+#, fuzzy, c-format
+msgid "Automatic dependencies"
+msgstr "Автоматаар"
+
+#: ../help.pm:186
+#, fuzzy, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr "с с аас шинэ бол."
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"диалог бол вы г жигсаалт г текст бол вы бол бол г г вы вы вы Томоор ерөнхий "
+"вы г!"
+
+#: ../help.pm:209
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"ямх GMT Цаг вы бол вы г с ямх бол Цонхнууд г с Интернэт вы Интернэт бол вы."
+
+#: ../help.pm:220
+#, fuzzy, c-format
+msgid "Automatic time synchronization"
+msgstr "Автоматаар"
+
+#: ../help.pm:223
+#, fuzzy, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Дэлгэц г\n"
+" бол вы жигсаалт вы."
+
+#: ../help.pm:234
+#, fuzzy, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X X Цонх Систем бол аас KDE GNOME г жигсаалт аас г\n"
+" бол вы жигсаалт вы г\n"
+" Томоор вы г г г г\n"
+" бол вы жигсаалт вы г г г г\n"
+" вы вы аас бол ямх г г г г\n"
+" вы с вы аас секунд вы Өөрчилөх вы г г г г\n"
+" вы вы вы г с бол вы."
+
+#: ../help.pm:291
+#, fuzzy, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Дэлгэц г\n"
+" бол вы жигсаалт вы."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, fuzzy, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr "Томоор вы."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr ""
+
+#: ../help.pm:377
+#, fuzzy, c-format
+msgid "Erase entire disk"
+msgstr "Устгах"
+
+#: ../help.pm:380
+#, fuzzy, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"вы бол бол с вы Дууслаа бол Цэс вы аас г с туг г\n"
+" с аас вы г\n"
+" Тэмдэглэл туг г\n"
+" с бол бол г\n"
+" с бол бол г\n"
+" бол аас Авто сайт г\n"
+" с жигсаалт аас ямх төрөл г г Та төрөл г"
+
+#: ../help.pm:412
+#, fuzzy, c-format
+msgid "Generate auto-install floppy"
+msgstr "Үүсгэж байна"
+
+#: ../help.pm:415
+#, fuzzy, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr "Бүх г г вы вы г бол Та вы вы г г вы г с вы г с вы шинэ г с вы."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, fuzzy, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr "Цэг вы аас Интернэт аас аас аас г вы."
+
+#: ../help.pm:461
+#, fuzzy, c-format
+msgid "Security Administrator"
+msgstr "Хамгаалалт:"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Ердийн/мэргэжлийн горимын хооронд шилжих"
+
+#: ../help.pm:536
+#, fuzzy, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"вы ямх шинэ г бол нэр Цонхнууд нэр г г г нэр бол төрөл г г г Erfitt төрөл "
+"бол бол г бол г г Erfitt бол г\n"
+" г\n"
+" г\n"
+" г\n"
+" г Дугаар г секунд Дугаар г г Цонхнууд нэр бол аас Цонхнууд бол."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, fuzzy, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"бол г вы шинэ г\n"
+" с вы вы аас г\n"
+" с вы бол аас бусад г бол."
+
+#: ../help.pm:594
+#, fuzzy, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"вы ямх Хэсэг төрөл аас вы Англи хэл вы вы Англи хэл ямх вы ямх Томоор вы "
+"жигсаалт г с жигсаалт аас г вы Латин Америк вы Латин Америк Латин Америк."
+
+#: ../help.pm:612
+#, fuzzy, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"аас аас ямх ерөнхий вы ямх вы г с вы бусад вы хэрэглэгчид Англи хэл ямх Мод "
+"с ямх Өргөтгөсөн г вы Та с г с вы Тэмдэглэл бол вы г вы Ажиллуулж байна "
+"энгийн."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr ""
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "with Wheel emulation"
+msgstr "Товчинууд тоолуур"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, fuzzy, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr "бол."
+
+#: ../help.pm:691
+#, fuzzy, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"бол Цэг аас вы Эзэн бол бол хэрэглэгчид Томоор бол вы бол вы вы вы вы вы бол "
+"бусад бол г г аас Хэзээч үгүй г вы г вы төрөл ямх тийш аас вы вы г вы вы г "
+"вы с г Цонхнууд Домэйн с вы байхгүй вы г вы хэзээ ч вы вы с."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr ""
+
+#: ../help.pm:728
+#, fuzzy, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"бол г\n"
+" Цонхнууд бол вы ачаалах г\n"
+" бол шинэ байхгүй г вы."
+
+#: ../help.pm:745
+#, fuzzy, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"с Бусад вы туг аас аас г\n"
+" с бол бол вы вы аас вы с бол с вы бол г\n"
+" с Хэвлэх Систем бол бол г вы вы с г вы вы вы Контрол."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Мэргэжлийн"
+
+#: ../help.pm:771
+#, fuzzy, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr "ямх бол г бол ямх вы г вы вы Та аас г бол вы."
+
+#: ../help.pm:789
+#, fuzzy, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr "с бол бол вы бол бол вы."
+
+#: ../help.pm:794
+#, fuzzy, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"аас вы аас бол аас аас с г\n"
+" с г\n"
+" с вы ямх с ямх жигсаалт с жигсаалт г\n"
+" с Та с бол г\n"
+" с г\n"
+" с с аас шинэ бол г\n"
+" с бол бол вы бол бол вы г\n"
+" с ямх г вы г с г\n"
+" с бол бол вы бол с г\n"
+" с ИСДН(ISDN) бол Та с г\n"
+" с вы Интернэт г\n"
+" с вы ямх г\n"
+" с вы Интернэт с аас г\n"
+" с вы хэрэглэгчид г\n"
+" с вы вы с."
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "ISDN card"
+msgstr "ИСДН(ISDN)"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr ""
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+
+#: ../help.pm:866
+#, fuzzy, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr "с вы с вы Цонхнууд г с."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Дараагийн ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr ""
+
diff --git a/perl-install/install/help/po/ms.po b/perl-install/install/help/po/ms.po
new file mode 100644
index 000000000..2dec49c80
--- /dev/null
+++ b/perl-install/install/help/po/ms.po
@@ -0,0 +1,1208 @@
+# DrakX Bahasa Melayu (Malay) (ms).
+# Copyright (C) 2003 Free Software Foundation, Inc.
+# Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>, 2003
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2006-02-19 14:09+0800\n"
+"Last-Translator: Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>\n"
+"Language-Team: Malay <translation-team-ms@lists.sourceforge.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../help.pm:14
+#, fuzzy, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr "dalam off."
+
+#: ../help.pm:20
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"pengguna pengguna fail dan on pengguna fail dan on pengguna dalam dan A "
+"pengguna dalam dan pengguna default dan pengguna tidak fail on Tambah "
+"pengguna default pengguna default pengguna dalam dan lokal pengguna dan "
+"dalam."
+
+#: ../help.pm:54
+#, fuzzy, c-format
+msgid "Do you want to use this feature?"
+msgstr "Anda mahu memadam masukan ini dari buku telefon?"
+
+#: ../help.pm:57
+#, fuzzy, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"on on Nama Nama dan\n"
+" on\n"
+" on\n"
+" on\n"
+" on."
+
+#: ../help.pm:88
+#, fuzzy, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr "on on dan."
+
+#: ../help.pm:95
+#, fuzzy, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"on dan dan Pembangunan\n"
+" dalam\n"
+" on\n"
+" on\n"
+"\n"
+"\n"
+" asas dan\n"
+" jumlah jumlah dalam."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Naik Taraf"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "With basic documentation"
+msgstr "Dokumentasi untuk antlr."
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "Truly minimal install"
+msgstr "Media Pemasangan Yang Diperlukan"
+
+#: ../help.pm:152
+#, fuzzy, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr "dan on on default mula dan tidak dan amaran on."
+
+#: ../help.pm:183
+#, fuzzy, c-format
+msgid "Automatic dependencies"
+msgstr "Kebergantungan tidak diselesaika"
+
+#: ../help.pm:186
+#, fuzzy, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr "on on."
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr "mula on dan default mula on Masuk!"
+
+#: ../help.pm:209
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"dalam Masa dan on lokal dan dalam hos Tetingkap on Internet Internet on "
+"lokal."
+
+#: ../help.pm:220
+#, fuzzy, c-format
+msgid "Automatic time synchronization"
+msgstr "Segerak sedang berjalan"
+
+#: ../help.pm:223
+#, fuzzy, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"\n"
+" dan on\n"
+" Masuk."
+
+#: ../help.pm:234
+#, fuzzy, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Sistem KDE GNOME AfterStep\n"
+" dan on\n"
+" Masuk\n"
+" dan\n"
+" dan A dalam\n"
+" dan dan saat Ubah\n"
+"."
+
+#: ../help.pm:291
+#, fuzzy, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+" dan."
+
+#: ../help.pm:298
+#, fuzzy, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Resolusi\n"
+" dan A dalam."
+
+#: ../help.pm:306
+#, fuzzy, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr "Masuk."
+
+#: ../help.pm:311
+#, fuzzy, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Pilihan\n"
+"."
+
+#: ../help.pm:319
+#, fuzzy, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"on kosong on dan pengguna dan on\n"
+" tidak\n"
+" on default dan\n"
+" Tetingkap on dan on Kepada Tetingkap dan Tetingkap Tetingkap dan dan on\n"
+" Tetingkap\n"
+" dan on dan\n"
+" on\n"
+" on dan Semua on\n"
+" on\n"
+" secara manual dan siap dan on dalam."
+
+#: ../help.pm:377
+#, fuzzy, c-format
+msgid "Use existing partition"
+msgstr "Guna partisyen sedia ada (onpart)"
+
+#: ../help.pm:377
+#, fuzzy, c-format
+msgid "Erase entire disk"
+msgstr "Masukkan cakera liut"
+
+#: ../help.pm:380
+#, fuzzy, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"dan mula\n"
+"\n"
+"\n"
+"\n"
+"\n"
+" on\n"
+" dalam dan dan"
+
+#: ../help.pm:412
+#, fuzzy, c-format
+msgid "Generate auto-install floppy"
+msgstr "Janakan cakera liut Auto Pasang"
+
+#: ../help.pm:415
+#, fuzzy, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr "fail on dan on on on on."
+
+#: ../help.pm:437
+#, fuzzy, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr "Kepada Internet Internet A dan dan."
+
+#: ../help.pm:450
+#, fuzzy, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr "Internet off default."
+
+#: ../help.pm:461
+#, fuzzy, c-format
+msgid "Security Administrator"
+msgstr "Pentadbir Domain:"
+
+#: ../help.pm:464
+#, fuzzy, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"on dan on\n"
+" on\n"
+" dan dalam\n"
+"\n"
+"\n"
+" dan\n"
+" dan on\n"
+" secara manual dan dan\n"
+"\n"
+"\n"
+" on\n"
+" Tab dan Naik Turun\n"
+" Ctrl kosong\n"
+" Ctrl\n"
+" Ctrl fail on dan."
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Removable media auto-mounting"
+msgstr " -a - pilih semua media non-removable.\n"
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "normal"
+
+#: ../help.pm:536
+#, fuzzy, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"on dalam Tetingkap dan\n"
+" on\n"
+" on\n"
+" on\n"
+" on Tetingkap Tetingkap C."
+
+#: ../help.pm:567
+#, fuzzy, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr "dalam on dan dalam."
+
+#: ../help.pm:572
+#, fuzzy, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"on\n"
+" keluar fail on\n"
+" on dan pengguna Tingkatupaya on Tingkatupaya on."
+
+#: ../help.pm:594
+#, fuzzy, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr "on default dalam English English dalam dalam dan Masuk on on dan."
+
+#: ../help.pm:612
+#, fuzzy, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"dan dalam dalam dan on on dan Sepanyol on English default dalam dan dalam "
+"Lanjutan tunggal on pengguna pengguna."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr ""
+
+#: ../help.pm:653
+#, fuzzy, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr "tidak on dan dan bersiri USB default dan dan dan dan on dan on."
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "with Wheel emulation"
+msgstr "Tetikus Beroda (PS/2)"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+
+#: ../help.pm:691
+#, fuzzy, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"dan pengguna dan on Masuk ralat dan on dan Tidak sekali on dalam Kepada "
+"ralat ralat LDAP NIS Tetingkap Domain tiada."
+
+#: ../help.pm:725
+#, fuzzy, c-format
+msgid "authentication"
+msgstr "Pengesahan"
+
+#: ../help.pm:728
+#, fuzzy, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"dan dan\n"
+" Tetingkap\n"
+" tiada."
+
+#: ../help.pm:745
+#, fuzzy, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Lain-lain\n"
+" keluar dan dan\n"
+" Cetakan Sistem lokal dan lpd asas lpd on lpd dan dan dan."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Mahir"
+
+#: ../help.pm:771
+#, fuzzy, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr "dalam on dalam secara manual secara manual."
+
+#: ../help.pm:789
+#, fuzzy, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr "on on on dan."
+
+#: ../help.pm:794
+#, fuzzy, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"on on\n"
+" dan\n"
+" dalam on dan dalam\n"
+" default on on\n"
+" dan on\n"
+" on on\n"
+" on on on dan\n"
+" default dalam on\n"
+" on dan on secara manual\n"
+" on on\n"
+" Internet lokal\n"
+" dalam\n"
+" Internet\n"
+"\n"
+"."
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "ISDN card"
+msgstr "Kad Video"
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "Graphical Interface"
+msgstr "Konfigurasi (X) Antaramuka Grafikal"
+
+#: ../help.pm:861
+#, fuzzy, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr "dalam on dan!"
+
+#: ../help.pm:866
+#, fuzzy, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr "on dan on on dan on Tetingkap on dan on."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Berikut ->"
+
+#: ../help.pm:872
+#, fuzzy, c-format
+msgid "<- Previous"
+msgstr "Terdahulu"
+
diff --git a/perl-install/install/help/po/mt.po b/perl-install/install/help/po/mt.po
new file mode 100644
index 000000000..82cb97b77
--- /dev/null
+++ b/perl-install/install/help/po/mt.po
@@ -0,0 +1,1921 @@
+# translation of mt.po to Maltese
+# translation of DrakX-mt.po to Maltese
+# Copyright (C) 2002,2003, 2004 Free Software Foundation, Inc.
+# Ramon Casha <ramon.casha@linux.org.mt>, 2002,2003, 2004.
+# Ramon Casha <rcasha@waldonet.net.mt>, 2003.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: mt\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2004-10-04 18:45+0200\n"
+"Last-Translator: Ramon Casha <ramon.casha@linux.org.mt>\n"
+"Language-Team: Maltese <mt@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3.1\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Qabel tkompli int mitlub taqra sew it-termini ta' din il-liċenzja. Hija\n"
+"tkopri d-distribuzzjoni sħiħa ta' Mandriva Linux. Jekk taqbel mat-termini\n"
+"kollha tagħha, agħfas il-buttuna \"%s\". Jekk ma taqbilx, agħfas \"%s\" "
+"biex\n"
+"tirributja l-kompjuter."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux hija sistema operattiva \"multi-user\", li jfisser li l-utenti \n"
+"kollha jistgħu ikollhom il-preferenzi tagħhom, fajls personali eċċ. Imma, \n"
+"għall-kuntrarju tal-user \"root\", li huwa l-amministratur tas-sistema, \n"
+"l-utenti li żżid hawn ma jkunu jistgħu jibdlu xejn ħlief il-fajls u \n"
+"konfigurazzjoni personali tagħhom. Dan jipproteġi lis-sistema minn bidliet \n"
+"mhux intenzjonati jew malizzjużi li jaffettwaw lis-sistema sħiħa. Trid \n"
+"toħloq ta' l-inqas utent regolari wieħed għalik. Dan huwa l-kont li bih \n"
+"għandek tagħmel ix-xogħol ta' kuljum. Filwaqt li jista' jkun iżjed faċli \n"
+"tuża l-user \"root\" ta' kuljum, dan huwa perikoluż ħafna. L-iċken żball \n"
+"jista' jwaqqaf is-sistema milli taħdem. Jekk tagħmel anke żball serju "
+"b'user\n"
+"regolari, tista' titlef xi informazzjoni imma mhux is-sistema sħiħa.\n"
+"\n"
+"L-ewwel trid iddaħħal l-isem veru tiegħek. Dan mhux bilfors, ovvjament, u\n"
+"fil-fatt tista' ddaħħal li trid. DrakX imbagħad jieħu l-ewwel kelma u \n"
+"jpoġġiha f' \"%s\". Dan huwa l-isem li jintuża biex tidħol fis-sistema. \n"
+"Tista' tibdel dan l-isem, imbagħad daħħal password. Filwaqt li l-password \n"
+"ta' user regolari mhux kruċjali daqs ta' root, dejjem jaqbillek tagħżel \n"
+"password tajjeb - ftakar li hemm il-fajls tiegħek fin-nofs.\n"
+"\n"
+"Jekk tagħfas \"%s\", tista' żżid users oħra kemm hemm bżonn. Tista' żżid\n"
+"utenti għal ħutek, it-tfal jew ġenituri, jew lill-ħbieb, per eżempju. \n"
+"Meta tlesti milli żżid il-users kollha li trid, agħfas \"%s\".\n"
+"\n"
+"Jekk tagħfas il-buttuna \"%s\", tkun tista' tbiddel ix-\"shell\" \n"
+"impliċita tal-user, li normalment tkun \"bash\".\n"
+"\n"
+"Meta tlesti toħloq users, int tintalab tagħżel user li awtomatikament \n"
+"jiġi lloggjat fis-sistema meta tixgħel. Jekk trid tuża din il-faċilità (u\n"
+"m'intix konċernat dwar sigurtà lokali), agħżel il-user li tixtieq u d-"
+"desktop,\n"
+"u agħfas \"%s\". Jekk ma tixtieqx tuża din il-faċilità, neħħi l-marka \n"
+"mill-kaxxa \"%s\"."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Trid tuża din il-faċilità?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Hawn issib il-partizzjonijiet ta' Linux li nstabu fuq id-diska. Tista' \n"
+"żżomm l-għażliet li għamel is-saħħar, huma tajbin għal ħafna każi.\n"
+"Jekk tagħmel tibdiliet, trid ta' l-inqas tiddefinixxi partizzjoni root (\"/"
+"\")\n"
+"Tagħżilx daqs żgħir wisq inkella ma tkunx tista' tinstalla l-programmi\n"
+"kollha li jkollok bżonn. Jekk tixtieq iżżomm l-informazzjoni fuq "
+"partizzjoni\n"
+"separata, trid toħloq ukoll partizzjoni għal \"/home\" (għal dan irid "
+"ikollok\n"
+"iżjed minn partizzjoni waħda Linux).\n"
+"\n"
+"Kull partizzjoni hija mniżżla b'dan il-mod: \"Isem\", \"Daqs\".\n"
+"\n"
+"L-isem huwa mqassam hekk: \"tip ta' diska\", \"numru ta' diska\", \"numru\n"
+"tal-partizzjoni\", per eżempju, \"hda1\". \n"
+"\n"
+"It-tip ta' diska huwa \"hd\" jekk id-diska hija tip IDE, u \"sd\" jekk "
+"hija \n"
+"tip SCSI.\n"
+"\n"
+"In-numru tad-diska huwa l-ittra ta' wara \"hd\" jew \"sd\". Għal diski IDE,\n"
+"\"a\" hija d-diska \"master\" fuq il-kontrollatur IDE primarju,\n"
+"\"b\" hija d-diska skjav fuq il-kontrollatur IDE primarju,\n"
+"\"c\" hija d-diska \"master\" fuq il-kontrollatur IDE sekondarju,\n"
+"\"d\" hija d-diska skjav fuq il-kontrollatur IDE sekondarju\n"
+"\n"
+"Fuq diski SCSI, \"a\" hija d-diska bl-iżjed ID baxx, \"b\" hija t-tieni, eċċ."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"L-installazzjoni ta' Mandriva Linux hija maqsuma fuq diversi CD-ROMs. Jekk\n"
+"pakkett qiegħed fuq CD-ROM oħra, DrakX jiftaħ is-CDROM u jitolbok iddaħħal "
+"is-\n"
+"CD li jmiss. Jekk m'għandekx dik is-CD tista' tikklikkja \"%s\" u l-pakketti "
+"li\n"
+"hemm fuq dik is-CD ma jiġux installati."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Issa wasal il-mument fejn tagħżel liema programmi tixtieq tinstalla fuq\n"
+"is-sistema tiegħek. Hemm eluf ta' pakketti disponibbli għal Mandriva Linux,\n"
+"u biex ikun iżjed faċli timmaniġġjahom, qegħdin imqassmin fi gruppi ta'\n"
+"programmi simili.\n"
+"\n"
+"Mandriva Linux iqassam il-gruppi ta' pakketti fi tlett kategoriji. Tista' \n"
+"tagħżel u tħallat programmi minn diversi kategoriji, jiġifieri "
+"installazzjoni\n"
+"\"workstation\" tista' tinkludi programmi mis-sezzjoni \"server\", eċċ.\n"
+" * \"%s\": jekk fi ħsiebek tuża l-kompjuter bħala workstation, \n"
+"agħżel wieħed jew iżjed mill-gruppi li tixtieq.\n"
+"\n"
+" * \"%s\": jekk tixtieq tuża l-kompjuter biex tipprogramma, agħżel\n"
+"il-gruppi li trid minn din il-kategorija. Il-grupp speċjali \"LSB\"\n"
+"jikkonfiguralek is-sistema sabiex tiġi taqbel kemm jista' jkun ma' l-\n"
+"ispeċifikazzjonijiet \"Linux Standard Base\". Però jekk ma tagħżilx\n"
+"il-grupp LSB xorta jkollok sistema li hija kważi 100%% kompatibbli ma' LSB\n"
+" * \"%s\": jekk il-kompjuter huwa intenzjonat bħala server. tista' tagħżel\n"
+"l-iżjed servizzi komuni li tixtieq tinstalla fuq il-magna.\n"
+"\n"
+" * \"%s\": hawnhekk tista' tagħżel l-ambjent grafiku li \n"
+"tippreferi. Ta' l-inqas trid tagħżel wieħed minn dawn jekk trid li jkollok \n"
+"ambjent grafiku.\n"
+"\n"
+"Jekk tmexxi l-maws fuq wieħed mill-ismijiet tara deskrizzjoni qasira dwar "
+"dak\n"
+"il-grupp.\n"
+"\n"
+"Tista' timmarka l-kaxxa \"%s\", li hija utli jekk int familjari mal-"
+"pakketti\n"
+"disponibbli, jew jekk trid li jkollok kontroll assolut fuq dak li se jiġi\n"
+"nstallat.\n"
+"\n"
+"Jekk tibda' l-installazzjoni fil-modalità %s, tista' tneħħi l-gruppi kollha\n"
+"u ma tħallix li jiġu nstallati pakketti ġodda. Dan huwa utli biex issewwi\n"
+"jew taġġorna sistema eżistenti.\n"
+"\n"
+"Jekkt neħħi l-gruppi kollha waqt installazzjoni normali (mhux aġġornament),\n"
+"tintwera għażla li tissuġġerixxi għażliet differenti għal installazzjoni \n"
+"minima: * \"%s\" tinstalla s-sistema bażika flimkien mal-minimu ta'\n"
+"pakketti għal sistema grafika;\n"
+"\n"
+" * \"%s\" tinstalla s-sistema bażika flimkien ma' xi\n"
+"programmi sempliċi u d-dokumentazzjoni tagħhom. Dan huwa tajjeb għal "
+"server.\n"
+"\n"
+" * \"%s\" tinstalla strettament l-inqas pakketti \n"
+"possibbli sabiex ikollok Linux b'linja ta' kmand. Din l-installazzjoni "
+"tieħu\n"
+"biss madwar 65MB."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Aġġornament"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "B' dokumentazzjoni bażika"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Installazzjoni assolutament minima"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Jekk għażiltx li tagħżel il-pakketti individwalment, tiġi\n"
+"offruta lista tal-pakketti kollha klassifikati fi gruppi. Waqt li qed "
+"tifli \n"
+"din il-lista, tista' tagħżel gruppi sħaħ jew pakketti individwali.\n"
+"\n"
+"Meta tagħżel pakkett fil-lista, tidher deskrizzjoni maġenbha fuq il-lemin\n"
+"li tgħidlek għal xiex jintuża dak il-pakkett.\n"
+"!! Jekk pakkett ta' server jiġi installat intenzjonalment jew għax jifforma\n"
+"parti minn grupp, int tintalab tikkonferma jekk verament tridx lill dawn\n"
+"is-servizzi jiġu nstallati. Fil-Mandriva Linux, is-servizzi li tinstalla "
+"jiġu\n"
+"mtella' awtomatikament meta tixgħel. Għalkemm dawn kienu siguri u ma kien "
+"fihom\n"
+"ebda problemi meta din il-verżjoni ta' Linux inħarġet, jista' jkun li "
+"jinstabu\n"
+"problemi simili wara li ġiet finalizzata din il-verżjoni. Jekk ma tafx \n"
+"x'suppost jagħmel servizz partikulari jew għaliex qed jiġi nstallat, agħżel\n"
+"\"%s\". Jekk tagħfas \"%s\" dawn is-servizzi jiġu nstallati u jiġu mtella' \n"
+"awtomatikament fil-bidu.\n"
+"\n"
+"L-għażla \"%s\" sempliċiment titfi l-window li twissik\n"
+"kull meta l-installazzjoni tkun se żżid xi pakketti oħra meħtieġa. Dan "
+"jiġri\n"
+"għax il-programm ikun induna li jinħtieġ pakkett ieħor biex il-programmi li\n"
+"tkun għażilt jaħdmu sew.\n"
+"\n"
+"L-ikona ta' diska flopi żgħira fil-qiegħ tippermettilek li ttella' l-\n"
+"lista ta' pakketti li ġew magħżula waqt installazzjoni preċedenti. Jekk \n"
+"tikklikkja din l-ikona int tintalab iddaħħal flopi li tkun ħloqt waqt \n"
+"installazzjoni oħra. Ara t-tieni ħjiel fl-aħħar stadju biex tara kif toħloq\n"
+"diska simili."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Dipendenzi awtomatiċi"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": jekk tagħfas il-buttuna \"%s\" jinfetaħ saħħar tal-konfigurazzjoni \n"
+"tal-printer. Ikkonsulta l-kapitlu korrispondenti tal-iStarter Guide għal "
+"iżjed\n"
+"tagħrif dwar kif tissettja printer ġdid. L-interfaċċja preżentata hawn hija "
+"simili\n"
+"għal dik użata waqt l-installazzjoni."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Hawnhekk tista' tagħżel liema servizzi tixtieq ittella' mal-bidu.\n"
+"\n"
+"Dawn huma s-servizzi kollha disponibbli mal-konfigurazzjoni kurrenti.\n"
+"Iċċekkjahom sew u neħħi dawk li m'għandekx bżonn kull darba li titla'\n"
+"s-sistema.\n"
+"\n"
+"Tintwera spjagazzjoni qasira dwar kull servizz meta dan jingħażel. Però,\n"
+"jekk m'intix ċert dwar jekk servizz hux meħtieġ, aħjar tħalli l-għażla\n"
+"impliċita.\n"
+"!! F'dan l-istadju, oqgħod attent jekk tixtieq tuża l-kompjuter bħala "
+"server:\n"
+"aktarx ma jkollokx bżonn ittella' servizzi li m'intix se tuża. Ftakar li xi\n"
+"servizzi jistgħu ikunu perikolużi fuq server. Bħala regola ġenerali, ħalli\n"
+"biss dawk is-servizzi li verament għandek bżonn. !!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux jimmaniġġja l-ħin bħala GMT (Greenwich Mean Time) u jaqilbu "
+"għall-\n"
+"ħin lokali skond iż-żona orarja li tagħżel. Huwa possibbli però li titfi "
+"din\n"
+"il-faċilità billi titfi l-għażla \"%s\" biex il-ħin\n"
+"tal-kompjuter jiġi l-istess bħall-ħin tas-sistema. Dan huwa utli jekk il-\n"
+"kompjuter tintuża għal sistemi operattivi bħall-Windows.\n"
+"\n"
+"L-għażla \"%s\" tħallik awtomatikament \n"
+"tirregola l-ħin billi taqbad ma' server speċjali fuq l-internet. Fil-lista\n"
+"li tiġi preżentata, agħżel server viċin tiegħek. Ovvjament irid ikollok\n"
+"konnessjoni mal-internet issettjata biex tuża din il-faċilità. Jekk tuża\n"
+"din l-għażla jiġi nstallat programm apposta fuq il-kompjuter li "
+"jippermettilu\n"
+"li jintuża bħala server tal-ħin għal kompjuters oħra fuq in-network lokali."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Sinkronizzazzjoni tal-ħin awtomatiku"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Kard grafika\n"
+"\n"
+" L-installatur normalment jagħraf u jikkonfigura l-kard grafika "
+"installata\n"
+"fuq il-kompjuter tiegħek. Jekk din l-għażla mhix tajba, tista' tagħżel mil-\n"
+"lista il-kard li għandek installata.\n"
+"\n"
+" F'każ li iżjed minn server wieħed jeżisti għall-kard tiegħek, bil- jew \n"
+"mingħajr aċċelerazzjoni 3D, int tintalab tagħżel is-server li jaqdi \n"
+"ħtiġijietek l-aħjar."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (għal Sistema X Window) huwa l-qalb ta' l-interfaċċja grafika GNU/Linux\n"
+"li fuqu huma bbażati l-ambjenti grafiċi kollha inklużi ma' Mandriva Linux "
+"(KDE,\n"
+"GNOME, AfterStep, WindowMaker, eċċ).\n"
+"\n"
+"Tista' tara lista ta' diversi parametri li tista' tibdel sabiex ikollok\n"
+"l-aħjar dehra grafika.\n"
+"\n"
+"Kard Grafika\n"
+"\n"
+" L-isntallatur normalment jagħraf u jikkonfiguralek il-kard tal-grafika\n"
+"li għandek awtomatikament. Jekk dan mhux korrett, tista' tagħżel il-kard\n"
+"tajba minn din il-lista.\n"
+"\n"
+" F'każ fejn jeżistu servers differenti għall-kard tiegħek, bil- jew "
+"mingħajr\n"
+"aċċelerazzjoni 3D, int tintalab tagħżel liema server l-iżjed japplika "
+"għalik,\n"
+"\n"
+"\n"
+"\n"
+"Reżoluzzjoni\n"
+"\n"
+" Hawn tista' tagħżel ir-reżoluzzjoni u numru ta' kuluri disponibbli fuq\n"
+"il-ħardwer tiegħek. Agħżel dik li l-iżjed tgħodd għalik (int tkun tista' \n"
+"tibdel l-għażla wara l-installazzjoni). Kampjun tal-konfigurazzjoni "
+"magħżula\n"
+"tintwera fl-istampa tal-iskrin.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Skond il-ħardwer li għandek, tista' tintwera din l-għażla.\n"
+"\n"
+" Is-sistema tipprova tiftaħ skrin grafiku fir-reżoluzzjoni mitliba.\n"
+"Jekk tara l-messaġġ waqt it-test u tirrispondi \"%s\", DrakX jipproċedi "
+"għall-\n"
+"pass li jmiss. Jekk ma tarahx, ifisser li xi parti mill-konfigurazzjoni\n"
+"awtomatika kienet inkorretta u t-test jispiċċa waħdu wara 12-il sekonda, u\n"
+"terġa' lura fil-menu. Ibdel is-setings sakemm ikollok wirja korretta "
+"grafika\n"
+"fuq l-iskrin.\n"
+"\n"
+"\n"
+"\n"
+"Għażliet\n"
+"\n"
+" Dan il-pass iħallik tagħżel jekk tridx lill-kompjuter jidħol f'modalità \n"
+"grafika awtomatikament malli jitla'. Ovvjament, tista tagħżel \"%s\" jekk "
+"il-\n"
+"kompjuter se jaħdem bħala server, jew jekk ma rnexxielekx tissettja l-kard\n"
+"grafika sew."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Skrin\n"
+"\n"
+" Normalment l-installatur jagħraf u jikkonfiguralek l-iskrin li\n"
+"għandek imqabbad awtomatikament. Jekk din l-għażla mhix tajba, tista' \n"
+"tagħżel mil-lista l-iskrin li għandek imqabbad mal-kompjuter."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Reżoluzzjoni\n"
+"\n"
+" Hawn tista' tagħżel ir-reżoluzzjoni u numru ta' kuluri disponibbli fuq \n"
+"il-ħardwer tiegħek. Agħżel dak li l-aħjar jaqdi ħtiġijietek (tista' \n"
+"tibdel l-għażliet tiegħek wara). Kampjun tal-konfigurazzjoni magħżula \n"
+"jintwera fuq l-iskrin."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Fis-sitwazzjoni fejn hemm servers differenti disponibbli għall-kard tiegħek, "
+"bil- jew mingħajr aċċelerazzjoni 3D, int tintalab tagħżel is-server li l-"
+"iżjed jaqdi l-ħtiġijiet tiegħek."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Għażliet\n"
+"\n"
+" F'dan il-pass, tista' tagħżel jekk tridx l-interfaċċja grafika mill-bidu.\n"
+"Ovvjament, tista' tagħżel \"%s\" jekk il-kompjuter se jintuża biss bħala \n"
+"server, jew jekk ma rnexxielekx tissettja l-X sew."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"F'dan il-punt int trid tagħżel fejn, fuq il-ħard disk, trid tinstalla s-\n"
+"sistema operattiva Mandriva Linux. Jekk il-ħard disk huwa vojt, jew jekk\n"
+"hemm sistema operattiva qed tokkupaha kollha, l-ewwel trid toħloq \n"
+"partizzjonijiet. Bażikament, il-partizzjonijiet tal-ħard disk jaqsmu d-"
+"diska\n"
+"f'partijiet biex ikun hemm sezzjonijiet fejn tiġi nstallata s-sistema ġdida\n"
+"Mandriva Linux.\n"
+"\n"
+"Peress li l-effett ta' partizzjonament tal-ħard disk m'humiex riversibbli,\n"
+"u jista' jwassal għal telf ta' informazzjoni, dan il-proċess jista' jidher\n"
+" intimidanti jekk m'għandekx esperjenza. Fortunatament, hemm \"saħħar\" li "
+"jissimplifika l-proċess kollu. Qabel tibda', aqra sew din is-sezzjoni u ħu \n"
+"l-ħin tiegħek. Skond il-konfigurazzjoni tal-ħard disk tiegħek, jista' "
+"jkollok\n"
+"diversi għażliet:\n"
+"\n"
+" * \"%s\": Din l-għażla toħloq partizzjonijiet awtomatikament.\n"
+"Jekk tuża din l-għażla ma tintalabx iżjed informazzjoni.\n"
+"\n"
+" * \"%s\": Is-saħħar sab partizzjoni waħda jew iżjed\n"
+"tal-Linux fuq il-ħard disk. Jekk trid tuża lilhom, agħżel din. \n"
+"Int tiġi mistoqsi fejn trid timmonta dawn il-partizzjonijiet. \n"
+"L-għażliet antiki jingħażlu impliċitament, u ġeneralment hija\n"
+"ideja tajba żżomm lilhom.\n"
+" * \"%s\": Jekk għandek Microsoft Windows installat fuq il-ħard disk \n"
+"u qed jokkupa l-ispazju kollu, trid toħloq ftit spazju għal-Linux. \n"
+"Biex tagħmel dan, trid jew tħassar il-partizzjoni tal-Windows\n"
+"u kull m'hemm fiha (ara \"Ħassar id-diska sħiħa\"), jew iċċekken \n"
+"il-partizzjoni FAT jew NTFS tal-Windows. Tista' ċċekken il-partizzjoni \n"
+"Windows mingħajr ma titlef informazzjoni sakemm għamilt \"defragment\" fuq\n"
+"id-diska minn qabel. Din is-soluzzjoni hija rakkomandata biex tuża l-"
+"Windows \n"
+"u l-Linux flimkien fuq l-istess kompjuter.\n"
+"\n"
+" Qabel tagħżel din l-għażla, kun af li wara din il-proċedura, il-\n"
+"partizzjoni tal-Windows tkun iżgħar milli hi bħalissa. Ikollok inqas spazju "
+"taħt\n"
+"il-Microsoft Windows fejn iżżomm informazzjoni jew tinstalla programmi "
+"ġodda.\n"
+"\n"
+" * \"%s\": Jekk tixtieq tħassar l-informazzjoni kollha u\n"
+"l-partizzjonijiet kollha li għandek fuq il-ħard disk u tpoġġi l-Mandriva "
+"Linux\n"
+"minflokhom, tista' tagħżel din. Oqgħod attent minn din l-għażla għax ma "
+"tkunx\n"
+"tista' tibdel fehemtek wara li tikkonferma.\n"
+"\n"
+" !! Jekk tagħżel din l-għażla, kull m'hemm fuq id-diska jintilef !!\n"
+"\n"
+" * \"%s\": Din l-għażla tidher meta l-ħard disk hija kompletament okkupata \n"
+"mill-Microsoft Windows. Din l-għażla sempliċiment tħassar kull ma' hemm "
+"fuq \n"
+"il-ħard disk u tibda' kollox mill-ġdid.\n"
+"\n"
+" !! Jekk tagħżel din l-għażla, kull m'hemm fuq id-diska jintilef !!\n"
+"\n"
+" * \"%s\": Agħżel dan jekk trid tippartizzjona l-ħard disk \n"
+"manwalment. Oqgħod attent - hija għażla li tagħti kontroll imma hija \n"
+"perikoluża. Tista' faċilment titlef l-informazzjoni kollha b'dan il-mod. \n"
+"Għalhekk, tużax din l-għażla jekk ma tafx x'qed tagħmel. Għal iżjed tagħrif\n"
+"dwar kif tuża l-għodda DiskDrake, irreferi għas-sezzjoni \"Managing Your \n"
+"Partitions\" fil-manwal \"Starter Guide\"."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Uża partizzjoni eżistenti"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Ħassar kull m'hemm fid-diska"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Dak kollox! L-installazzjoni issa hija lesta u s-sistema GNU/Linux issa\n"
+"lesta biex tintuża. Agħfas \"%s\" biex tirristartja l-kompjuter. Tinsiex "
+"tneħħi l-media ta' l-installazzjoni (CDROM jew flopi). L-ewwel ħaġa li \n"
+"għandek tara meta l-kompjuter ilesti l-iċċekkjar tal-ħardwer huwa menu\n"
+"tal-bidu, li jagħtik l-opportunità tagħżel liema sistema operattiva trid\n"
+"ittella'.\n"
+"\n"
+"Il-buttuna \"%s\" turik żewġ buttuni oħra:\n"
+"\n"
+" * \"%s\": toħloqlok flopi li tippermettilek tirrepeti l-istess \n"
+"installazzjoni fuq kompjuter ieħor identiku, mingħajr l-intervent \n"
+"tiegħek.\n"
+"\n"
+" Innota li meta tagħfas din il-buttuna jintwerew żewġ għażliet oħra:\n"
+"\n"
+" * \"%s\". Din hija installazzjoni semi-awtomatika, għax il-pass ta'\n"
+"partizzjonament (u dak biss) jibqa' manwali.\n"
+"\n"
+" * \"%s\". Installazzjoni totalment awtomatika - il-ħard disk\n"
+"titħassar u tinkiteb mill-ġdid, u kull informazzjoni fuqha tintilef.\n"
+"\n"
+" Din il-faċilità hija utli meta qed tinstalla numru kbir ta' kompjuters\n"
+"identiċi. Ara s-sezzjoni \"Auto install\" fuq il-websajt tagħna.\n"
+"\n"
+" * \"%s\"(*): jikteb l-għażla ta' pakketti li\n"
+"nstallajt. Meta qed tagħmel installazzjoni oħra, daħħal il-flopi fid-drajv\n"
+"u meta tibda l-installazzjoni, agħfas [F1], ittajpja \n"
+">>linux defcfg=\"floppy\"<< u agħfas it-tast [Enter].\n"
+"\n"
+"(*) Għandek bżonn flopi formattjata FAT (DOS). Biex toħloq waħda mil-Linux,\n"
+"ittajpja \"mformat a:\", jew \"fdformat /dev/fd0\" u \"mkfs.vfat\n"
+"/dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Oħloq flopi awto-installazzjoni"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Jekk tagħżel li terġa' tuża xi partizzjonijiet antiki GNU/Linux, tista'\n"
+"tiddeċiedi li terġa' tifformattja wħud minnhom u tħassar l-informazzjoni\n"
+"kollha li fihom. F'dak il-każ, agħżel dawk il-partizzjonijiet ukoll.\n"
+"Innota li mhux meħtieġ li terġa' tifformattja l-partizzjonijiet kollha\n"
+"eżistenti. Trid però tifformattja dawk il-partizzjonijiet li jkollhom is-\n"
+"sistema operattiva fuqhom (eż, \"/\", \"/usr\" jew \"/opt\"), imma "
+"m'għandekx\n"
+"bżonn tifformattja dawk li fihom l-informazzjoni tiegħek (tipikament \"/home"
+"\").\n"
+"\n"
+"Oqgħod attent meta tagħżel il-partizzjonijiet. Wara li jiġu formattjati,\n"
+"l-informazzjoni kollha li kien hemm fuqhom tintilef u m'hemmx mod biex "
+"iġġibha\n"
+"lura.\n"
+"\n"
+"Agħfas \"%s\" meta tkun lest biex tifformattja l-partizzjonijiet.\n"
+"\n"
+"Agħfas \"%s\" jekk trid tagħżel partizzjoni oħra għas-sistema ġdida\n"
+"Mandriva Linux.\n"
+"\n"
+"Agħfas \"%s\" biex tagħżel partizzjonijiet biex jiġu ċċekkjati għal blokki\n"
+"ħżiena fuq id-diska."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Fid-data meta tinstalla l-Mandriva Linux, aktarx ikunu ġew aġġornati xi\n"
+"pakketti minn meta ġiet pubblikata. Xi żbalji jistgħu ikunu ġew irranġati,\n"
+"u problemi ta' sigurtà ġew riżolti. Sabiex tibbenifika minn dawn l-\n"
+"aġġornamenti, jaqbillek tniżżilhom minn fuq l-internet. Agħżel \"%s\" jekk\n"
+"għandek konnessjoni mal-internet issettjata, jew \"%s\" jekk tippreferi li\n"
+"tinstalla l-aġġornamenti iżjed tard.\n"
+"\n"
+"Jekk tagħżel %s, tintwera lista ta' postijiet minn fejn l-aġġornamenti \n"
+"jistgħu jitniżżlu (\"mirja\"). Agħżel l-iżjed wieħed viċin tiegħek. "
+"Imbagħad\n"
+"tintwera lista ta' pakketti. Dur dawn il-pakketti, agħżel liema trid u \n"
+"agħfas \"%s\" biex tniżżilhom u tinstallahom jew \"%s\" biex twaqqaf."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"F'dan il-punt, trid tagħżel livell ta' sigurtà għal dan il-kompjuter.\n"
+"Bħala regola ġenerali, iżjed m'hu espost il-kompjuter, u iżjed m'hi "
+"kruċjali\n"
+"l-informazzjoni ta' fuqu, iżjed irid ikun għoli l-livell ta' sigurtà. Innota "
+"li\n"
+"livell ta' sigurtà iżjed għoli ġeneralment ifisser iżjed diffikultà fl-użu.\n"
+"\n"
+"Jekk ma tafx liema tagħżel, żomm l-għażla impliċita. Tkun tista' tibdel dan\n"
+"il-livell iżjed 'il quddiem bl-għodda draksex, li jifforma parti miċ-Ċentru\n"
+"ta' Kontroll Mandriva Linux.\n"
+"\n"
+"Imla' l-kaxxa \"%s\" bl-indirizz tal-imejl tal-persuna responsabbli mis-"
+"sigurtà.\n"
+"Il-messaġġi ta' sigurtà jintbagħtu lil dak l-indirizz."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Amministratur tas-sigurtà"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"F'dan il-punt trid tagħżel liema partizzjoni(jiet) se jintużaw għall-\n"
+"installazzjoni tas-sistema Mandriva Linux. Jekk diġà ġew definiti xi\n"
+"partizzjonijiet, jew minn installazzjoni preċedenti ta' GNU/Linux jew minn\n"
+"għodda ta' partizzjonament oħra, tista' tuża l-partizzjonijiet eżistenti.\n"
+"Altrimenti, l-partizzjonijiet tal-ħard disk iridu jiġu definiti.\n"
+"\n"
+"Biex toħloq il-partizzjonijiet, l-ewwel trid tagħżel ħard disk.\n"
+"Tista' tagħżel diska għall-partizzjonament billi tagħżel \"hda\" għal l-\n"
+"ewwel diska IDE, \"hdb\" għat-tieni, eċċ, jew \"sda\" għal l-ewwel\n"
+"diska SCSI, eċċ.\n"
+"\n"
+"Biex tippartizzjona l-ħard disk magħżula għandek dawn l-għażliet:\n"
+"\n"
+" * \"%s\": din l-għażla tħassar il-partizzjonijiet kollha\n"
+"mill-ħard disk magħżula.\n"
+"\n"
+" * \"%s\": din l-għażla awtomatikament toħloqlok partizzjonijiet\n"
+"ext3 u swap fl-ispazju vojt tad-diska.\n"
+"\n"
+" * \"%s\" jagħtik aċċess għal iżjed faċilitajiet:\n"
+"\n"
+" * \"%s\": jikteb it-tabella \n"
+"tal-partizzjonijiet fuq flopi. Utli biex tirkupra t-tabella iżjed tard jekk\n"
+"hemm bżonn. Dan il-pass huwa rakkomandat.\n"
+"\n"
+" * \"%s\": tħallik tirrestawra t-\n"
+"tabella tal-partizzjonijiet minn flopi disk fejn ġew miktuba.\n"
+"\n"
+" * \"%s\": jekk it-tabella tal-partizzjonijiet\n"
+"ġiet korrotta b'xi mod, din l-għażla tħallik tipprova terġa' tirkupraha. \n"
+"Oqgħod attent b'din l-għażla u ftakar li mhux dejjem taħdem.\n"
+"\n"
+" * \"%s\": jinsa l-bidliet kollha u jerġa' jaqra t-tabella\n"
+"mill-ħard disk.\n"
+"\n"
+" * \"%s\": jekk tneħħi din l-għażla l-utenti\n"
+"jkollhom jimmontaw u jiżmuntaw manwalment diski li jinħarġu bħal flopi u "
+"CDROM.\n"
+"\n"
+" * \"%s\": uża dan il-metodu jekk trid tuża saħħar li jippartizzjonalek\n"
+"il-ħard disk. Dan huwa rakkomandat jekk ma tifhimx sew kif tagħmel il-\n"
+"partizzjonijiet int.\n"
+"\n"
+" * \"%s\": uża din l-għażla biex tikkanċella l-bidliet li għamilt.\n"
+"\n"
+" * \"%s\": jagħtik iżjed azzjonijiet fuq il-\n"
+"partizzjonijiet (tip, għażliet, format) u jagħti iżjed dettalji.\n"
+"\n"
+" * \"%s\": meta tlesti mill-partizzjonament, dan jikteb il-bidliet li\n"
+"għamilt lid-diska.\n"
+"\n"
+"Meta tiddefinixxi d-daqs tal-partizzjoni, tista' tissettja d-daqs bl-eżatt\n"
+"billi tuża l-vleġeġ tat-tastiera.\n"
+"\n"
+"Nota: tista' tilħaq kull għażla mit-tastiera. Dur il-partizzjonijiet bit-"
+"TAB\n"
+"u l-vleġeġ 'il fuq u 'l isfel.\n"
+"\n"
+"Meta tkun fuq il-partizzjoni li trid, tista' tuża:\n"
+"\n"
+" * Ctrl-C biex toħloq partizzjoni (meta tkun magħżula partizzjoni vojta)\n"
+"\n"
+" * Ctrl-D biex tħassar partizzjoni\n"
+"\n"
+" * Ctrl-M biex tissettja l-punt ta' mmuntar.\n"
+"\n"
+"Biex tikseb iżjed informazzjoni dwar il-filesystems differenti disponibbli,\n"
+"jekk jogħġbok aqra l-kapitlu ext2fs fil-Manwal ta' Referenza.\n"
+"\n"
+"Jekk qed tinstalla fuq kompjuter PPC, tkun trid toħloq partizzjoni żgħira\n"
+"HFS \"bootstrap\", ta' l-inqas 1MB, li tintuża mill-bootloader yaboot. Jekk\n"
+"tiddeċiedi li tagħmlu ftit ikbar, ngħidu aħna 50MB, tista' ssibu post utli\n"
+"fejn tqiegħed kernel u ramdisk \"spare\" għal emerġenzi."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Awtomuntar ta' diski li jinħarġu"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Aqleb bejn modalità normali u esperta"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Instabu iżjed minn partizzjoni waħda tal-Microsoft fuq il-ħard disk. Jekk \n"
+"jogħġbok agħżel liema minnhom trid iċċekken biex tinstalla s-sistema \n"
+"operattiva Mandriva Linux.\n"
+"\n"
+"Kull partizzjoni hija mmarkata hekk: \"Isem tal-Linux\", \"Isem fil-Windows"
+"\",\n"
+"\"Daqs\".\n"
+"\n"
+"L-isem tal-Linux huwa mqassam hekk: \"tip ta' diska\", \"numru ta' diska"
+"\", \n"
+"\"numru tal-partizzjoni\" (per eżempju, \"hda1\"). \n"
+"\n"
+"It-tip ta' diska huwa \"hd\" jekk id-diska hija tip IDE, u \"sd\" jekk "
+"hija \n"
+"tip SCSI.\n"
+"\n"
+"In-numru tad-diska huwa l-ittra ta' wara \"hd\" jew \"sd\". Għal diski IDE:\n"
+"\n"
+" * \"a\" hija d-diska \"master\" fuq il-kontrollatur IDE primarju,\n"
+"\n"
+" * \"b\" hija d-diska skjav fuq il-kontrollatur IDE primarju,\n"
+"\n"
+" * \"c\" hija d-diska \"master\" fuq il-kontrollatur IDE sekondarju,\n"
+"\n"
+" * \"d\" hija d-diska skjav fuq il-kontrollatur IDE sekondarju\n"
+"\n"
+"Fuq diski SCSI, \"a\" hija d-diska bl-iżjed ID baxx, \"b\" hija t-tieni, "
+"eċċ.\n"
+"\n"
+"\"Isem tal-Windows\" huwa l-ittra li jkollha din il-ħard disk taħt il-"
+"Windows\n"
+"(l-ewwel diska jew partizzjoni hija \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": iċċekkja l-għażla ta' pajjiż kurrenti. Jekk m'intix f'dan il-\n"
+"pajjiż, agħfas il-buttuna \"%s\" u agħżel ieħor. Jekk pajjiżek ma jidhirx\n"
+"fil-lista' agħfas il-buttuna \"%s\" għal lista sħiħa ta' pajjiżi."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Dan il-pass jiġi attivat biss jekk instabet partizzjoni eżistenti GNU/Linux\n"
+"fuq il-kompjuter.\n"
+"\n"
+"DrakX issa għandu bżonn ikun jaf jekk tridx tagħmel installazzjoni ġdida\n"
+"jew aġġornament tas-sistema eżistenti Mandriva Linux:\n"
+"\n"
+" * \"%s\". Fil-parti l-kbira, din tħassar is-sistema antika għal kollox.\n"
+"Però, skond l-iskema ta' partizzjonijiet, tista' ma tħallix ċerti \n"
+"partizzjonijiet jitħassru (speċjalment id-direttorji \"home\"). Jekk trid\n"
+"tibdel kif jiġu partizzjonati l-ħard disks, jew biex tibdel is-sistema ta'\n"
+"fajls, għandek tagħżel din l-għażla.\n"
+"\n"
+" * \"%s\". Din il-klassi ta' installazzjoni tħallik taġġorna l-pakketti\n"
+"installati bħalissa fuq is-sistema Mandriva Linux. Il-partizzjonijiet "
+"eżistenti\n"
+"u d-data tal-utenti ma jintmessux. Ħafna mill-passi l-oħra tal-"
+"konfigurazzjoni\n"
+"jibqgħu disponibbli u huma simili għal installazzjoni normali.\n"
+"\n"
+"L-użu tal-għażla \"Aġġorna\" għandha taħdem tajjeb fuq sistemi Mandriva "
+"Linux\n"
+"minn verżjoni \"8.1\" 'il fuq. Mhux rakkomandat li tagħmel aġġornament ta'\n"
+"sistema Mandriva Linux qabel 8.1."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Skond liema lingwa għażilt (), DrakX awtomatikament jagħżel \n"
+"tqassim tat-tastiera. Iċċekkja li din l-għażlia hija tajba, jew\n"
+"għażel tastiera oħra.\n"
+"\n"
+"Apparti minn hekk, jista' jkun li t-tastiera magħżula ma taqbilx mal-\n"
+"lingwa tiegħek. Jekk per eżempju int Malti imma tgħix fl-Italja jista'\n"
+"jkun ikollok tastiera Taljana. F'dak il-każ dan il-pass iħallik\n"
+"tagħżel t-tastiera tajba mil-lista.\n"
+"\n"
+"Klikkja l-buttuna \"%s\" biex tara lista sħiħa ta' tastieri sapportiti.\n"
+"\n"
+"Jekk tagħżel tastiera ibbażata fuq alfabett mhux Latin, il-pass li jmiss\n"
+"iħallik tagħżel il-kombinazzjoni ta' tasti li jibdlu bejn tqassim Latin\n"
+"u mhux Latin."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"L-ewwel pass huwa li tagħżel il-lingwa preferuta tiegħek.\n"
+"\n"
+"L-għażla tal-lingwa preferuta jaffettwa l-installatur, id-dokumentazzjoni,\n"
+"u s-sisetma in ġenerali. L-ewwel agħżel ir-reġjun fejn qiegħed, u mbgħad\n"
+"il-lingwa li titkellem.\n"
+"Jekk tagħfas il-buttuna \"%s\" tista' tagħżel lingwi oħra li tixtieq \n"
+"tinstalla fuq is-sistema. Jekk tagħżel lingwi oħra, il-fajls speċifiċi "
+"għal \n"
+"dik il-lingwa jiġu nstallati fuq is-sistema. Per eżempju, jekk se jkun hemm\n"
+"utenti Spanjoli fuq il-kompjuter, agħżel l-Ingliż bħala lingwa ewlenija "
+"fil-\n"
+"lista ta' fuq, u \"%s\" fis-sezzjoni avvanzata.\n"
+"Dwar sapport għall--UTF-8 (unicode): Unicode hija sistema ġdida ta' "
+"kodifika\n"
+"tal-karattri intenzjonata biex tipprovdi sapport għal-lingwi kollha. Però \n"
+"s-sapport għaliha fil-Linux għadu qed jiġi żviluppat. Għalhekk, l-użu tal-"
+"UTF-8\n"
+"fil-Mandriva Linux jiddependi mill-għażla tal-utent:\n"
+"\n"
+"* Jekk tagħżel lingwa b'ħafna sapport eżistenti f'kodifika oħra (eż, "
+"lingwi \n"
+"latin1, Russu, Ġappuniz, Ċiniż, Korean, Tajlandiż, Grieg, Tork u ħafna "
+"lingwi\n"
+"latin2), tintuża l-kodifika antika.\n"
+"\n"
+"Lingwi oħra jużaw unicode impliċitament;\n"
+"\n"
+" * Jekk tnejn jew iżjed lingwi huma meħtieġa, u dawn m'għandhomx l-istess \n"
+"kodifika, jintuża unicode fuq is-sistema kollha.\n"
+"\n"
+" * Finalment, tista' ġġiegħel li jintuża unicode fis-sistema kollha billi \n"
+"tittikkja l-għażla \"%s\" indipendentement minn liema lingwi huma magħżula.\n"
+"\n"
+"Innota li m'intix limitat li tagħżel lingwa waħda addizzjonali. Tista' "
+"tagħżel\n"
+"diversi, jew anke tinstalla kollox billi tagħżel il-kaxxa \"%s\". Li "
+"tagħżel \n"
+"lingwa ifisser traduzzjonijiet, fonts, spell checkers eċċ jiġu nstallati "
+"għal \n"
+"dik il-lingwa."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Espanol"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Normalment, DrakX ma jsibx problemi biex jinduna kemm għandu buttuni\n"
+"l-maws. Jekk ikollu, huwa jassumi li għandek maws b'żewġ buttuni u "
+"jissettjah\n"
+"għall-emulazzjoni tat-tielet buttuna. It-tielet buttuna f'dan il-każ "
+"tfisser \n"
+"li tagħfas iż-żewġ buttuni l-oħrajn flimkien. DrakX kapaċi jinduna waħdu "
+"jekk \n"
+"il-maws huwiex PS/2, serjali jew USB.\n"
+"\n"
+"Jekk għandek maws bi 3 buttuni mingħajr rota, tista' tagħżel il-maws \"%s"
+"\". \n"
+"DrakX jissettjalek il-maws biex tista' tissimula r-rota: biex tagħmel dan,\n"
+"żomm il-buttuna tan-nofs magħfusa u mexxi l-maws 'il fuq u 'l isfel.\n"
+"\n"
+"Jekk tixtieq tispeċifika tip ta' maws differenti, agħżel it-tip tajjeb mil-\n"
+"lista provduta.\n"
+"\n"
+"Tista' tagħżel \"%s\" sabiex tuża tip ġeneriku li jaħdem kważi mal-"
+"mawsijiet\n"
+"kollha.\n"
+"\n"
+"Jekk tagħżel tip ta' maws differenti mill-oriġinali, tiġi provduta faċilità\n"
+"biex tittestja s-setings. Uża l-buttuni kollha u r-rota biex tivverifika li "
+"s-\n"
+"setings jaħdmu sew. Jekk il-maws ma jaħdimx sew agħfas \"spazju\" jew\n"
+"[Enter] biex tikkanċella t-test u tagħżel maws ieħor.\n"
+"\n"
+"Maws bir-rota ġieli ma jiġix magħruf sew awtomatikament, għalhekk ikollok\n"
+"tagħżel it-tip minn lista. Ara li tagħżel dak li jikkorrispondi mal-port "
+"fejn huwa\n"
+"mqabbad il-maws. Wara li tagħżel maws u tagħfas il-buttuna \"%s\", "
+"tittella'\n"
+"stampa ta' maws. Mexxi r-rota biex tiżgura li din tiġi ssettjata sew. Meta "
+"tara\n"
+"r-rota fuq l-iskrin timxi meta ċċaqlaq ir-rota fuq il-maws, iċċekkja li l-"
+"buttuni \n"
+"jaħdmu u li l-vleġġa fuq l-iskrin timxi meta ċċaqlaq il-maws."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "b' emulazzjoni tar-rota"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Universali | Kwalunkwe maws PS/2 jew USB"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Jekk jogħġbok agħżel il-port it-tajjeb. Per eżempju, il-port \"COM1\" fil-\n"
+"Windows huwa ekwivalenti għal \"ttyS0\" fil-GNU/Linux."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Dan huwa punt ta' deċiżjoni kruċjali għas-sigurtà tas-sistema GNU/Linux\n"
+"tiegħek: trid tagħżel password għal \"root\". \"root\" huwa l-utent li\n"
+"jintuża bħala amministratur tas-sistema, u huwa l-uniku user awtorizzat\n"
+"li jaġġorna s-sistema, iżid utenti, jibdel il-konfigurazzjoni. eċċ. Fi "
+"kliem\n"
+"ieħor, \"root\" kapaċi jagħmel kollox! Għalhekk huwa importanti li tagħżel\n"
+"password li diffiċli biex taqtagħha: DrakX iwissik jekk tagħżel waħda faċli\n"
+"wisq. Kif tista' tinduna, huwa anke possibbli li ma ddaħħal xejn bħala "
+"password,\n"
+"imma dan huwa perikoluż ĦAFNA u aħna ma nirrikmandawh qatt. Peress li \"root"
+"\"\n"
+"jista' jegħleb kull limitazzjoni, saħansitra jħassar l-informazzjoni u \n"
+"partizzjonijiet kollha, huwa mportanti li jkun diffiċli kemm jista' jkun li\n"
+"nies oħra jidħlu bħala \"root\".\n"
+"\n"
+"Il-password għandu jkun taħlita ta' ittri u numri, u ta' l-inqas twil 8 \n"
+"karattri. M'għandek qatt tikteb il-password ta' \"root\" x'inkien - dan \n"
+"jagħmilha faċli wisq tikkomprometti s-sistema.\n"
+"\n"
+"Fl-istess ħin tagħmilx il-password twil jew kumplikata wisq għax int trid\n"
+"tkun kapaċi tiftakarha.\n"
+"\n"
+"Il-password mhux se jintwera fuq l-iskrin waqt li tittajpjah. Għalhekk trid\n"
+"tittajpjah darbtejn biex jonqos iċ-ċans li tagħmel żball waqt li tittajpja.\n"
+"Jekk tagħmel l-istess żball darbtejn, trid tittajpja l-password b'dan il-"
+"mod\n"
+"sakemm tibdlu.\n"
+"\n"
+"Jekk trid tuża server ta' awtentikazzjoni biex jikkontrolla l-aċċess għall-\n"
+"kompjuter, agħfas il-buttuna \"%s\".\n"
+"Jekk in-network tiegħek juża protokoll LDAP, NIS jew PDC tal-Windows\n"
+"għall-awtentikazzjoni, agħżel dak li jgħodd għal \"%s\". Jekk ma tafx, "
+"staqsi \n"
+"lill-amministratur tan-network.\n"
+"\n"
+"Jekk għandek problema tiftakar il-passwords, jew jekk il-kompjuter qatt "
+"m'hu\n"
+"se jiġi mqabbad ma' l-internet u assolutament tafda lil kull min juża l-"
+"kompjuter,\n"
+"tista' tagħżel \"%s\"."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "awtentikazzjoni"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Il-\"boot loader\" huwa programm żgħir li jiġi mħaddem mill-kompjuter meta\n"
+"tixgħelu. Huwa responsabbli li jtella' s-sistema sħiħa. Normalment, l-\n"
+"installazzjoni tal-boot loader huwa totalment awtomatizzat. DrakX "
+"janalizza \n"
+"s-settur \"boot\" tad-diska u jaġixxi skond x'isib hemm:\n"
+"\n"
+" * Jekk isib settur \"boot\" tal-Windows, huwa jibdlu ma' settur boot ta' \n"
+"grub/LILO. B'dan il-mod tista' ttella' kemm GNU/Linux jew xi sistema \n"
+"operattiva oħra.\n"
+"\n"
+" * Jekk isib settur boot eżistenti ta' grub jew LILO, dan jibdlu mal-ġdida.\n"
+"\n"
+"Jekk ma jistax jiddetermina t-tip, DrakX jistaqsik fejn trid tpoġġi l-\n"
+"bootloader. Ġeneralment, l-aħjar huwa \"%s\". Jekk tagħżel \"%s\" ma jiġi \n"
+"nstallat ebda boot loader. Din ta' l-aħħar għanda tintuża biss jekk taf sew\n"
+"x'qed tagħmel."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Issa wasal il-waqt li tagħżel sistema ta' printjar għall-kompjuter tiegħek.\n"
+"Sistemi operattivi oħra joffrulek waħda, Mandriva Linux jagħtik tnejn.\n"
+"Kull waħda minn dawn is-sistema hija idejali għal ċirkostanzi differenti.\n"
+" * \"%s\" - li jfisser \"printja minngħajr kju\", hija l-aħjar għażla\n"
+"jekk għandek konnessjoni diretta mal-printer, trid il-faċilità li twaqqaf\n"
+"printjar malajr, u m'għandekx printers bin-network (\"%s\" jaċċetta\n"
+"biss networking sempliċi, u mhux effiċjenti fuq network). Tista' tagħżel \n"
+"\"pdq\" jekk din hija l-ewwel esperjenza tiegħek fuq GNU/Linux.\n"
+"\n"
+" * \"%s\"\"Sistema ta' Printjar Komuni tal-Linux\" huwa eċċellenti\n"
+"kemm biex tipprintja fuq printer lokali kif ukoll fuq printer in-naħa l-"
+"oħra\n"
+"tad-dinja. Huwa sempliċi u jista' jaħdem kemm bħala server kif ukoll bħala\n"
+"klijent għal sistemi antiki \"lpd\", għalhekk huwa kompatibbli ma' sistemi\n"
+"antiki. Kapaċi jagħmel ħafna affarijiet, imma l-konfigurazzjoni bażika hija\n"
+"sempliċi kważi daqs \"pdq\". Biex jemula server \"lpd\", trid tħaddem is-\n"
+"servizz \"cups-lpd\". %s għandu interfaċċji grafiċi biex tipprintja jew\n"
+"tissettja l-għażliet tal-printer.\n"
+"\n"
+"Jekk tagħmel għażla issa, u wara tiskopri li ma togħġbokx din is-sistema,\n"
+"tista' tibdilha billi tħaddem PrinterDrake miċ-ċentru tal-kontroll ta' \n"
+"Mandriva Linux u tikklikkja l-buttuna \"%s\"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Espert"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX issa se jfittex apparat IDE fuq il-kompjuter tiegħek. Huwa wkoll\n"
+"ifittex kard waħda jew iżjed SCSI PCI fuq is-sistema. Jekk tinstab kard\n"
+"SCSI, DrakX awtomatikament jinstalla d-drajver għaliha.\n"
+"\n"
+"Peress li dan il-proċess mhux dejjem isib ċerti apparat, DrakX jista' ma\n"
+"jsibx il-ħard disks tiegħek. F'dak il-każ trid tissettja l-ħardwer "
+"manwalment.\n"
+"\n"
+"Jekk trid tissettja l-adattur SCSI manwalment, DrakX jistaqsik jekk tridx \n"
+"tispeċifika għażliet għalih. Jaqbillek tħalli lill DrakX jeżamina l-ħardwer\n"
+"biex isir jaf liema għażliet għandu bżonn l-apparat biex jaħdem. Dan \n"
+"normalment jaħdem sew.\n"
+"\n"
+"Jekk DrakX mhux kapaċi jagħraf l-għażliet li jridu jiġu mgħoddija, trid\n"
+"tispeċifikahom manwalment lid-drajver."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": jekk tinstab kard ta' l-awdjo fuq is-sistema, tintwera hawn.\n"
+"Jekk tinduna li l-kard ta' l-awdjo murija mhix dik li għandek fis-sistema,\n"
+"tista' tikklikkja fuq il-buttuna u tagħżel drajver differenti."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Fit-tmiem, DrakX jippreżentalek sommarju ta' informazzjoni li ġabar dwar\n"
+"is-sistema. Skond il-ħardwer li hemm installat, jista' jkollok dawn l-\n"
+"elementi jew uħud minnhom. Kull element huwa magħmul mit-tagħmir li għandu\n"
+"jiġi konfigurat, u sommarju tal-konfigurazzjoni kurrenti. Klikkja fuq il-\n"
+"buttuna \"%s\" korrispondenti biex tagħmel tibdila.\n"
+"\n"
+" * \"%s\": iċċekkja t-taqsim tat-tastiera kurrenti u ibdilha jekk hemm\n"
+"bżonn.\n"
+"\n"
+" * \"%s\": iċċekkja l-għażla tal-pajjiż. Jekk m'intix f'dan il-pajjiż,\n"
+"klikkja l-buttuna \"%s\" u agħżel ieħor. Jekk il-pajjiż mhux fil-lista\n"
+"murija, klijja l-buttuna \"%s\" biex tikseb lista sħiħa ta' pajjiżi.\n"
+"\n"
+" * \"%s\": impliċitament, DrakX jiddeduċi ż-żona tal-ħin skond il-pajjiż\n"
+"li għażilt. Tista' tagħfas il-buttuna \"%s\" jekk dan mhux tajjeb.\n"
+"\n"
+" * \"%s\": ivverifika l-konfigurazzjoni tal-maws u klikkja l-buttuna biex\n"
+"tibdilha jekk hemm bżonn.\n"
+"\n"
+" * \"%s\": ikklikkja l-buttuna \"%s\" biex tħaddem is-saħħar tal-\n"
+"konfigurazzjoni tal-printer. Ikkonsulta l-kapitlu korrispondenti tal-manwal\n"
+"\"Starter Guide\" għal iżjed tagħrif dwar kif tissettja printer ġdid. L-\n"
+"interfaċċja ppreżentata fil-manwal hija simili għal dik użata waqt l-\n"
+"installazzjoni.\n"
+" * \"%s\": Jekk tinstab kard tal-awdjo fis-sistema, tintwera hawn. Jekk\n"
+"tinduna li l-kard murija mhix dik attwalment preżenti fis-sistema, tista'\n"
+"tikklikkja l-buttuna u tagħżel drajver differenti.\n"
+" * \"%s\": jekk għandek kard tat-TV, hawn tintwera informazzjoni dwar il-\n"
+"konfigurazzjoni tagħha. Jekk għandek kard tat-TV imma ma ngħarfitx \n"
+"awtomatikament, klikkja \"%s\" biex tissettjaha manwalment.\n"
+"\n"
+" * \"%s\": klikkja \"%s\" biex tibdel il-parametri assoċjati mal-kard jekk\n"
+"taħseb li l-konfigurazzjoni hija inkorretta.\n"
+"\n"
+" * \"%s\": impliċitament, DrakX jikkonfiguralek l-interfaċċja grafika\n"
+"f'reżoluzzjoni ta' 800x600 jew 1024x768. Jekk dan ma jgħoddx għalik, "
+"klikkha\n"
+"\"%s\" biex tikkonfigura l-interfaċċja grafika.\n"
+"\n"
+" * \"%s\": jekk tixtieq tikkonfigura l-aċċess għall-internet jew network\n"
+"lokali tista tagħmel dan issa. Irreferi għad-dokumentazzjoni stampata jew\n"
+"uża ċ-Ċentru tal-Kontroll Mandriva Linux wara li tlesti l-installazzjoni "
+"biex\n"
+"tikseb għajnuna online sħiħa.\n"
+"\n"
+" * \"%s\": jippermettilek tissettja indirizzi proxy għall-HTTP u FTP jekk "
+"il-\n"
+"kompjuter qiegħed wara server proxy.\n"
+"\n"
+" * \"%s\": dan l-element iħallik terġa' tiddefinixxi l-livell ta' sigurtà\n"
+"minn kif kien issettjat f'pass ta' qabel ().\n"
+"\n"
+" * \"%s\": jekk intenzjonat tqabbad il-kompjuter ma' l-internet, hija "
+"ideja \n"
+"tajba tipproteġi lilek innifsek minn intrużjonijiet billi tissettja "
+"firewall.\n"
+"Ikkonsulta s-sezzjoni korrispondenti fil-manwal \"Starter Guide\" għal "
+"iżjed\n"
+"dettalji dwar il-firewall.\n"
+"\n"
+" * \"%s\": jekk tixtieq tissettja l-konfigurazzjoni tal-bootloader, klikkja\n"
+"din il-buttuna. Dan għandu jsir minn utenti avvanzati biss. Irreferi għad-\n"
+"dokumentazzjoni stampata, jew l-għajnuna online dwar il-konfigurazzjoni "
+"tal-\n"
+"bootloader fiċ-Ċentru tal-Kontroll Mandriva Linux.\n"
+"\n"
+" * \"%s\": permezz ta' dan l-element tista' tirfina liema servizzi se \n"
+"jitħaddmu fuq il-kompjuter. Jekk qed tippjana li tuża l-kompjuter bħala \n"
+"server hija ideja tajba tirrevedi din is-sezzjoni."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Kard ISDN"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Interfaċċja grafika"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Agħżel liema ħard disk trid tħassar biex tinstalla l-partizzjonijiet tal-\n"
+"Mandriva Linux fuqha. Oqgħod attent, l-informazzjoni kollha fuq din id-\n"
+"diska jintilef u ma jkunx jista' jinġab lura!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Klikkja fuq \"%s\" jekk trid tħassar l-informazzjoni u partizzjonijiet \n"
+"kollha li hemm fuq dan il-ħard disk. Oqgħod attent, wara li tagħfas \"%s\"\n"
+"ma tkunx tista' terġa' tikseb l-informazzjoni u partizzjonijiet li hemm\n"
+"fuq dan il-ħard disk, inkluż fajls tal-Windows.\n"
+"\n"
+"Klikkja \"%s\" biex twaqqaf dan il-proċess minngħajr ma tħassar\n"
+"l-informazzjoni u partizzjonijiet fuq dan il-ħard disk."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Li jmiss ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Ta' qabel"
+
diff --git a/perl-install/install/help/po/nb.po b/perl-install/install/help/po/nb.po
new file mode 100644
index 000000000..d45ce6e0c
--- /dev/null
+++ b/perl-install/install/help/po/nb.po
@@ -0,0 +1,2029 @@
+# translation of nb.po to Norwegian Bokmål
+# translation of nb.po to Norsk Bokmål
+# translation of DrakX-nb.po to Norwegian Bokmål
+# KTranslator Generated File
+# Translation file of Mandriva Linux graphic install
+# Copyright (C) 1999 Mandriva
+# Terje Bjerkelia <terje@bjerkelia.com>, 1999-2000.
+# Andreas Bergstrøm <abergstr@halden.net>, 2000.
+# Kenneth Rørvik <kenneth@argon.no-ip.com>, 2003.
+# Per Øyvind Karlsen <peroyvind@sintrax.net>, 2003, 2004.
+# Keld Simonsen <keld@dkuug.dk>, 2004.
+# Per Øyvind Karlsen <peroyvind@mandrivalinux.org>, 2004, 2005.
+# Eskild Hustvedt <eskild@goldenfiles.com>, 2004.
+# Eskild Hustvedt <zerodogg@skolelinux.no>, 2004, 2005.
+# Per Øyvind Karlsen <pkarlsen@mandriva.com>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: nb\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-09-21 23:11+0200\n"
+"Last-Translator: Per Øyvind Karlsen <pkarlsen@mandriva.com>\n"
+"Language-Team: Norwegian Bokmål <cooker-i18n@mandrivalinux.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Før du går videre bør du lese betingelsene i lisensen nøye. Den dekker hele\n"
+"Mandriva Linux-distribusjonen. Hvis du er enig med alle betingelsene,\n"
+"sjekk av \"%s\"-boksen- Hvis ikke, så vil det år trykke på '%s'k-knappen "
+"starte\n"
+"maskinen din på nytt."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux er ett flerbrukersystem, og dette betyr at hver bruker kan ha\n"
+"sine egne instillinger, sine egne filer osv. Du kan lese ``Starter "
+"Guide'''n\n"
+"for å lære mer om flerbrukersystemer.\n"
+" Men i motsetning til 'root', som er\n"
+"systemadministratoren, så vil brukerne du legger til her ikke ha rett til å\n"
+"forandre noe annet enn deres egne filer og oppsett, noe som\n"
+"beskytte systemet for uheldige eller skumle forandringer som endrer\n"
+"hele systemet. Du må lage minst en bruker for deg selv -- denne kontoen\n"
+"bør du bruke rutinemessig, for hverdagslig bruk. Selv om det er praktisk å\n"
+"logge inn som \"root\" for å gjøre alt mulig hver dag, kan det også være\n"
+"veldig farlig! Den minste feil kan bety at systemet ditt ikke lenger vil "
+"fungere.\n"
+"Hvis du gjør en stor feil som en vanlig bruker, så er det verste som kan "
+"skje\n"
+"at du mister noe informasjon, men det vil ikke påvirke hele systemet.\n"
+"\n"
+"Det første feltet spørr etter ditt virkelige navn. Dette er selvfølgelig "
+"ikke nødvendig\n"
+"-- du kan faktisk skrive inn hva du vil. DrakX vil ta det første ordet du "
+"legger inn\n"
+"og kopiere det til \"%s\"-feltet, som er det navnet den brukeren vil bruke\n"
+"for å logge seg på systemet. Hvis du vil, så kan du endre brukernavnet. Det\n"
+"neste steget blir å sette et passord. Fra ett sikkerhetsmessig åsyn, så er "
+"ikke\n"
+"en upriviligiert (vanlig) brukers passord så kritisk som \"root\"-passordet, "
+"men\n"
+"det er ingen grunn til å neglisere det ved å gjøre det blankt eller for "
+"enkelt:\n"
+"tross alt, det kan være dine filer som ligger i faresonen.\n"
+"\n"
+"Når du klikker på \"%s\", så kan du legge til flere brukere. Legg feks. til "
+"en for hver\n"
+"av dine venner, din far eller din søster .\n"
+"Klikk \"%s\" når du er ferdig med å legge til brukere.\n"
+"\n"
+"Ved å klikke på \"%s\"-knappen kan du forandre hvilket \"skall\" brukeren "
+"har\n"
+"som standard (det vanlige er bash).\n"
+"\n"
+"Når du er ferdig med å legge til brukere, så kan du velge en bruker som kan\n"
+"automatisk logge seg på systemet når maskinen starter opp. Hvis du er\n"
+"interessert i denne finessen (og ikke bryr deg mye om lokal sikkerhet),\n"
+"så velg den ønskede brukeren og vindushåndtereren, så klikk på \"%s\".\n"
+"Hvis du ikke er interessert i denne finessen, sjekk ut \"%s\"-boksen."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Ønsker du å bruke denne finessen?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Her er de eksisterende Linux-partisjonene som ble oppdaget på din harddisk.\n"
+"Du kan beholde valgene som er gjort av veiviseren, de er gode for de fleste\n"
+"vanlige installasjoner. Hvis du endrer disse valgene, må du i hvertfall "
+"definere\n"
+"en root-partisjon (\"/\"). Ikke velg for liten partisjon ellers vil du ikke "
+"kunne\n"
+"installere nok programvare. Hvis du ønsker å lagre dine data på en separat\n"
+"partisjon må du også velge en \"/home\"-partisjon (bare mulig hvis du har "
+"mer\n"
+"enn en Linux partisjon tilgjengelig).\n"
+"\n"
+"Hver partisjon er listet som følger: \"Navn\", \"Kapasitet\".\n"
+"\n"
+"\"Navn\" er strukturert som følger: \"harddisktype\", \"harddisknummer\",\n"
+"\"partisjonsnummer\" (feks. \"hda1\").\n"
+"\n"
+"\n"
+"\"Harddisktype\" er \"hd\" hvis harddisken din er en IDE-harddisk og \"sd\"\n"
+"hvis det er en SCSI-harddisk.\n"
+"\n"
+"\"Harddisknummer\" er alltid en bokstav etter \"hd\" eller \"sd\". For\n"
+"IDE-harddisker:\n"
+"\n"
+" * \"a\" betyr \"master harddisk på primær IDE-kontroller\",\n"
+"\n"
+" * \"b\" betyr \"slave harddisk på primær IDE-kontroller\",\n"
+"\n"
+" * \"c\" betyr \"master harddisk på sekundær IDE-kontroller\",\n"
+"\n"
+" * \"d\" betyr \"slave harddisk på sekundær IDE-kontroller\".\n"
+"\n"
+"\n"
+"Med SCSI-harddisker, en \"a\" betyr \"laveste SCSI-ID\", en \"b\" betyr "
+"\"nest laveste SCSI-ID\", etc."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linux-installasjonen er spredd ut over flere CD-ROMer. \n"
+"Hvis en valgt pakke er på en annen CDROM, vil DrakX løse ut den nåværende\n"
+"CD og be deg sette i en den rette CDen som kreves. Hvis du ikke har den som\n"
+"trengs nå, bare klikk på «%s», pakken(e) vil da ikke bli installert."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Det er nå på tide å spesifisere hvilke programmer du ønsker å installere på\n"
+"systemet ditt. Det er tusenvis av pakker tilgjengelig for Mandriva Linux, "
+"for\n"
+"å gjøre det enklere å håndtere pakkene så har de blitt plassert i grupper "
+"med\n"
+"lignende applikasjoner.\n"
+"\n"
+"Pakkene er delt inn i grupper som svarer til forskjellig typisk bruk av din "
+"maskin.\n"
+"Mandriva Linux har fire forhåndsdefinerte installasjoner tilgjengelig.\n"
+"Du kan mikse og matche applikasjoner fra forskjellige grupper, så en\n"
+"``Arbeidsstasjon''-installasjon kan fortsatt ha applikasjoner fra\n"
+"``Utvikling''-gruppa installert.\n"
+"\n"
+" * \"%s\": hvis du planlagger å bruke din maskin som arbeidsstasjon, velg\n"
+"en eller flere av applikasjonene som er i arbeidsstasjon-gruppen.\n"
+"\n"
+" * \"%s\": hvis du planlegger å bruke maskinen til programmering, velg\n"
+"ønskede grupper fra den kategorien. Den spesielle «LSB»-gruppen vil\n"
+"sette opp systemet ditt slik at den samsvarer mest mulig med\n"
+"Linux Standard Base spesifikasjonene.\n"
+"\n"
+" * \"%s\": hvis maskinen skal brukes som tjener, velg hvilke av de mer "
+"vanlige\n"
+"tjenestene som du ønsker installert på din maskin.\n"
+"\n"
+" * \"%s\": det er her du kan velge ditt ønskede grafiske miljø. Du\n"
+"må velge minst ett hvis du ønsker å ha ett grafisk grensesnitt "
+"tilgjengelig.\n"
+"\n"
+"Ved å flytte musepekeren over et gruppenavn vil en kort forklarende tekst\n"
+"dukke opp over den gruppen.\n"
+"\n"
+"Du kan merke av i «%s»-boksen, som er nyttig hvis du er kjent med\n"
+"pakkene som blir tilbudt, ellr du vil ha total kontroll over hva som vil "
+"bli\n"
+"installert.\n"
+"Hvis du starter installasjonen i «%s»-modus trenger du ikke å velge noen "
+"grupper\n"
+"og hindre installasjon av alle nye pakker. Dette er nyttig for å reparere\n"
+"eller oppdatere et allerede installert system.\n"
+"\n"
+"Hvis du ikke velger noen grupper når du utfører en normal installasjon (i\n"
+"motsetning til en oppgradering) vil en dialogboks dukke opp og foreslå\n"
+"forskjellige valg for en minimal installasjon:\n"
+"\n"
+"* \"%s\": installer et minimum av pakker som trengs for å ha et fungerende\n"
+"grafisk skrivebord.\n"
+"\n"
+" * \"%s\": installerer basesystemet pluss standard verktøy og dokumentasjon\n"
+"for disse. Denne installasjonen passer til å sette opp en server.\n"
+"\n"
+" * \"%s\" vil installere det absolutte minimum som er nødvendig for å få\n"
+"Linux systemet opp og gå. Med denne installasjonen så vil du\n"
+"kun ha et kommandolinje-grensesnitt. Denne installasjonen er på rundt 65 "
+"megabyte."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Oppgrader"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Med grunnleggende dokumentasjon"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Virkelig minimal installasjon"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Hvis du fortalte installasjonsrutinen at du ønsket å velge enkeltpakker,\n"
+"så vil du få se ett tre som innholder alle pakkene sortert etter grupper\n"
+"og undergrupper. Når du blar gjennom treet, kan du velge grupper, \n"
+"undergrupper eller individuelle pakker.\n"
+"\n"
+"Når du velger en pakke i treet, vil en beskrivelse dukke opp til høyre\n"
+"side for å la deg vite hva pakkens hensikt er.\n"
+"\n"
+"!! Hvis en tjenerpakke har blitt valgt, enten på grunn av at du valgte den "
+"spesifikt\n"
+"eller fordi den var medlem av en gruppe pakker, vil du bli bedt om å "
+"bekrefte at du\n"
+"virkelig ønsker å installere de valgte tjenerne.\n"
+"Som standard i Mandriva Linux vil alle installerte tjenere bli startet ved "
+"oppstart.\n"
+"Selv om de er sikre og ikke har noen kjente sikkerhetshull når denne "
+"distribusjonen\n"
+"ble sluppet,\n"
+"så kan det være at sikkerhetshull ble oppdaget etter at denne versjonen\n"
+"av Mandriva Linux ble sluppet. Hvis du ikke vet hva en type tjener gjør, "
+"eller\n"
+"hvorfor den blir installert, klikk «%s».\n"
+"«%s» vil installere de listede tjenerene og de vil bli\n"
+"startet automatisk som standard under oppstart. !!\n"
+"\n"
+"«%s»-valget er brukt for å deaktivere advarselsdialogen som vises\n"
+"når installasjonen automatisk velger en pakke for å løse avhengigheter.\n"
+"Noen pakker er avhengig av at andre pakker er installert.\n"
+"Installasjonsprogrammet kan finne ut hvilke pakker som trengs for å\n"
+"oppfylle avhengigheten til en pakke for å utføre en vellykket installasjon.\n"
+"\n"
+"Det lille diskett-ikonet på bunnen av denne listen lar deg laste en\n"
+"pakkeliste lagd under en tidligere installasjon. Dette er nyttig hvis du\n"
+"har flere maskiner som du vil sette opp identisk. Ved å klikke på dette\n"
+"ikonet vil du bli bedt om å sette inn disketten laget ved slutten av\n"
+"en annen installasjon. Se det andre tipset i det siste steget om hvordan du\n"
+"kan lage en slik diskett."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Automatiske avhengigheter"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"«%s»: Klikk på «%s»-knappen for å åpne skriverveiviseren.\n"
+"Konsulter det korresponderende kapitlet i oppstartsguiden for mer\n"
+"informasjon om hvordan du setter opp en skriver. Grensesnittet som\n"
+"brukes her er tilsvarende det som benyttes under installasjon."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Denne dialogen benyttes til å velge hvilke tjenester som skal startes når\n"
+"maskinen startes opp.\n"
+"\n"
+"DrakX vil liste opp alle tjenestene som er tilgjengelige i den gjeldende "
+"installasjonen.\n"
+"Gå nøye gjennom hver enkelt og fjern haken på de som ikke er nødvendige å\n"
+"starte.\n"
+"\n"
+"En kort forklarende tekst vil vises for hver tjeneste når de velges. Dersom "
+"du\n"
+"ikke er sikker på om en tjeneste er nødvendig, er det sikrest å la det\n"
+"forhåndsvalgte alternativet stå.\n"
+"\n"
+"!! på dette tidspunktet bør du være forsiktig dersom du ønsker å bruke "
+"maskinen\n"
+"som tjener: Du vil sannsynligvis ikke ønske å starte tjenester som du ikke "
+"trenger.\n"
+"Husk at noen tjenester kan representere en sikkerhetsrisiko dersom de er\n"
+"tilgjengelige på en tjener. Generelt bør du kun skru på tjenester som du "
+"trenger.\n"
+"!!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux passer tiden i GMT (Greenwich Mean Time), og oversetter denne\n"
+"til lokal tid avhengig av tidssonen du valgte. Dersom klokka på ditt "
+"hovedkort\n"
+"er satt til lokal tid, kan du deaktivere dette ved å velge bort «%s»,\n"
+"som lar GNU/Linux vite at systemklokka og maskinvareklokka\n"
+"er i samme tidssone. Dette er nyttig når maskinen din har andre\n"
+"operativsystemer slik som Windows.\n"
+"\n"
+"«%s»-valget vil stille klokka di ved å koble seg til en ekstern tidstjener\n"
+"på internett. For at dette skal fungere, må du ha en internettforbindelse "
+"som\n"
+"fungerer. Det er best å velge en tidstjener som er i nærheten av deg. Dette\n"
+"valget installerer dessuten en tidstjener som kan brukes av andre maskiner\n"
+"på ditt lokale nettverk."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Automatisk tidssynkronisering"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Skjermkort\n"
+"\n"
+" Installasjonsprogrammet vil vanligvis automatisk finne og sette opp "
+"skjermkortet\n"
+"som er installert på din maskin. Hvis dette ikke lar seg gjøre, kan du "
+"velge\n"
+"hva slags kort du har i denne listen.\n"
+"\n"
+" I tilfelle det er flere tjenere tilgjengelige for ditt kort, med eller "
+"uten\n"
+"3D-akselerasjon, blir du bedt om å velge tjeneren som passer dine behov\n"
+"best."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (for X Window System) er hjertet i GNU/Linux sitt grafiske grensesnitt "
+"som\n"
+"alle de grafiske miljøene (KDE, GNOME Afterstep, Windowmaker osv.)\n"
+"som følger med Mandriva Linux er avhengige av.\n"
+"\n"
+"Du vil få en liste med forkjellige parametre som kan forandres for å få et\n"
+"optimalt grafisk grensesnitt: \n"
+"\n"
+"Skjermkort\n"
+"\n"
+" Installasjonsrutinen kan vanligvis automatisk oppdage og sette opp\n"
+"skjermkortet som er installert i din maskin. Dersom dette ikke er tilfellet, "
+"kan\n"
+"du velge det kortet du faktisk har installert, fra denne listen.\n"
+"\n"
+" I tilfelle det er flere tjenere tilgjengelig for ditt kort, med eller "
+"uten\n"
+"3D-akselerasjon, vil du så kunne velge den tjeneren som best passer\n"
+"dine behov.\n"
+"\n"
+"\n"
+"\n"
+"Skjerm\n"
+"\n"
+" Installasjonsrutinen kan normalt automatisk oppdage og sette opp "
+"skjermen\n"
+"som er koblet til din maskin. Hvis dette ikke er korrekt, kan du velge "
+"skjermen du\n"
+"faktisk har fra listen.\n"
+"\n"
+"\n"
+"\n"
+"Oppløsning\n"
+"\n"
+" Her kan du velge hvilke oppløsninger og fargedybder du vil bruke fra de "
+"som\n"
+"er tilgjengelige for din maskinvare. Velg den kombinasjonen som best passer\n"
+"dine behov (Du kan forandre dette etter installasjon). En prøve av det "
+"valgte\n"
+"oppsettet vil vises i skjermen.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Avhengig av din maskinvare vil denne oppføringen kanskje ikke vises.\n"
+"\n"
+" systemet vil forsøke å starte en grafisk skjerm med den valgte\n"
+"oppløsningen. Dersom du kan se meldingen som vises under testen og \n"
+"svarer \"%s\" vil DrakX fortsette til neste trinn. Hvis du ikke kan se "
+"meldingen\n"
+"betyr det at en del av oppsettet er gal, og testen vil avsluttes etter 12\n"
+"sekunder. Du vil da bli tatt tilbake til menyen. Forandre innstillingene til "
+"du får\n"
+"et oppsett som fungerer. \n"
+"\n"
+"\n"
+"\n"
+"Valg\n"
+"\n"
+" Her kan du velge om du vil at maskinen automatisk skal starte det "
+"grafiske\n"
+"grensesnittet når maskinen starter. Du vil selvsagt ønske å sjekke av for \"%"
+"s\"\n"
+"dersom maskinen skal fungere som en tjener, eller om du ikke fikk satt opp\n"
+"det grafiske grensesnittet riktig."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Skjerm\n"
+"\n"
+" Installereren kan vanligvis automatisk oppdage og sette opp\n"
+"skjermen som er koblet til maskinen din. Dersom dette ikke fungerer, kan\n"
+"du velge fra denne lista hvilken skjerm du faktisk har tilkobliet din maskin."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Oppløsning\n"
+"\n"
+" Her kan du velge oppløsning og fargedybde blant de som er tilgjengelige\n"
+"for din maskinvare. Velg den du synes passer best til dine behov (du kan\n"
+"forandre dette etter installasjon). En prøve av det valgte oppsettet\n"
+"er vist i skjermen."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"I tilfelle det er flere tjenere tilgjengelig for ditt kort, med eller uten\n"
+"3D-akselerasjon, blir du så spurt om å velge den tjeneren som best\n"
+"passer dine behov."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Valg\n"
+"\n"
+" Dette steget lar deg velge om du vil starte et grafisk grensesnitt "
+"automatisk\n"
+"under oppstart. Du vil selvsagt ønske å svare «%s» dersom maskinen skal\n"
+"fungere som tjener, eller hvis du ikke kunne sette opp det grafiske "
+"grensesnittet."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Du må nå avgjøre hvor du ønsker å installere Mandriva Linux-"
+"operativsystemet\n"
+"på din harddisk. Hvis din harddisk er tom, eller et eksisterende\n"
+"operativsystem benytter all plassen som er tilgjengelig, vil du bli nødt til "
+"å\n"
+"ompartisjonere disken. Partisjonering av en harddisk vil si å dele den inn "
+"i\n"
+"logiske enheter for å skape plassen som trengs for å installere ditt nye\n"
+"Mandriva Linux-system.\n"
+"\n"
+"Ettersom partisjoneringsprosessen ikke kan tilbakestilles, og kan føre til "
+"tapte\n"
+"data hvis det allerede finnes et operativsystem på disken, kan "
+"partisjonering\n"
+"virke skremmendes dersom du er en uerfaren bruker. Heldigvis har DrakX en\n"
+"veiviser som forenkler denne prosessen. Før du fortsetter installasjonen, "
+"bør\n"
+"du lese gjennom resten av denne teksten, og ikke minst: Ta deg god tid.\n"
+"\n"
+"Avhengig av ditt harddiskoppsett, er flere valg tilgjengelige:\n"
+"\n"
+" *«%s»: dette valget utfører automatisk partisjonering av dine\n"
+"harddisker. Dersom du velger dette, vil det ikke ble stilt flere spørsmål.\n"
+"\n"
+" * «%s»: veiviseren har funnet en eller flere linux-partisjoner på "
+"harddisken\n"
+"din. Hvis du vil bruke disse, velg dette valget. Du vil bli spurt om å angi\n"
+"monteringspunkter for hver partisjon. De allerede oppsatte "
+"monteringspunktene\n"
+"er valgt som standard, og det er normalt lurt å beholde disse.\n"
+"\n"
+" * \"%s\": hvis Microsoft Windows er installert på din harddisk, og tar all "
+"tilgjengelig\n"
+"plass, må du lage ledig plass for GNU/Linux. For å oppnå dette, kan du enten "
+"slette\n"
+"hele Microsoft Windows-partisjonen med tilhørende data (Se ``Slett hele "
+"disken''-valget),\n"
+"eller forandre størrelsen på din Microsoft Windows FAT- eller NTFS-"
+"partisjon.\n"
+"Forandring av diskstørrelse kan utføres uten tap av data forutsatt at du "
+"har\n"
+"defragmentert Windows-partisjonen. Det anbefales sterkt at du tar \n"
+"sikkerhetskopi av dine data. Dette valget er anbefalt, dersom du ønsker \n"
+"å kjøre både Mandriva Linux og Microsoft Windows på samme maskin.\n"
+"\n"
+" Før du velger dette valget, må du være klar over at størrelsen på din\n"
+"Microsoft Windows-partisjon vil være mindre enn når du startet. Du vil \n"
+"dermed ha mindre ledig plass under Microsoft Windows til å lagre data \n"
+"og installere programvare på.\n"
+"\n"
+" * \"%s\": hvis du ønsker å slette alle partisjoner og data, og erstatte dem "
+"med ditt\n"
+"nye Mandriva Linux-system, så velg dette valget. Vær forsiktig, du vil ikke "
+"kunne gjøre\n"
+"om dette etter at du har bekreftet valget.\n"
+"\n"
+" !! Hvis du velger dette valget, vil alle data på harddisken bli "
+"slettet. !!\n"
+"\n"
+" * \"%s\": dette vil enkelt og greit slette alt fra harddisken og starte en "
+"ny partisjonering\n"
+"fra bunn av. Alle data på harddisken vil bli tapt.\n"
+"\n"
+" !! Hvis du velger dette valget, vil du miste alle data på harddisken. !!\n"
+"\n"
+" * \"%s\": velg dette dersom du vil partisjonere disken manuelt.\n"
+"Vær forsiktig -- dette er en kraftig, men farlig operasjon, og du kan lett "
+"miste alle\n"
+"dine eksisterende data. Derfor er dette valget kun anbefalt dersom du har "
+"gjort\n"
+"dette før, og har en del erfaring. For mer veiledning i bruk av DiskDrake-"
+"verktøyet\n"
+"se kapittelet ``Managing Your Partitions''-seksjonen i ``Starter Guide''."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Bruk eksisterende partisjon"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Slette hele disken"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Sånn! Installasjonen er nå ferdig og ditt flunkende nye GNU/Linux system\n"
+"er nå klart til bruk. Bare klikk «%s» for å restarte systemet. Ikke glem å\n"
+"fjerne installasjonsmediet (CDROM eller diskett). Det første du vil\n"
+"se etter at maskinen er ferdig med maskinvaretestene er oppstartslasterens\n"
+"meny, som lar deg velge hvilket operativsystem du vil starte.\n"
+"\n"
+"«%s»-knappen vil vise to nye knapper:\n"
+"\n"
+" * «%s»: for å lage en installasjonsdiskett som automatisk vil utføre en\n"
+"hel installasjon uten operatørhjelp, helt lik den installasjonen du nettopp "
+"har utført.\n"
+"\n"
+" Merk at to forskjellige valg vil være tilgjengelige etter at knappen "
+"trykkes:\n"
+"\n"
+" * «%s»: Dette er en delvis automatisert installasjon. Partisjonering er\n"
+"den eneste interaktive prosedyren.\n"
+"\n"
+" * «%s»: Dette er en fullstendig automatisert installasjon: harddisken "
+"vil bli\n"
+"helt overskrevet, og alle data vil bli overskrevet.\n"
+"\n"
+" Denne funksjonen er nyttig når du skal installere et antall identiske "
+"maskiner.\n"
+"Se Auto-installasjonsavsnittet på våre websider for mer informasjon.\n"
+"\n"
+" * «%s» (*): lagrer en liste over pakkene som er blitt installert under "
+"denne\n"
+"installasjonen. For å benytte denne listen under en annen installasjon, sett "
+"inn\n"
+"disketten og start installasjonen. Når kommandopromptet kommer opp, trykk "
+"på\n"
+"[F1]-tasten og skriv: \"linux defcfg=\"floppy\" <<\n"
+"\n"
+"(*) Du trenger en FAT-formatert diskett (for å lage en under GNU/Linux, "
+"skriv\n"
+"«mformat a:», eller «fdformat /dev/fd0» etterfulgt av «mkfs.vfat\n"
+"/dev/fd0»."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Generer autoinstallasjonsdiskett"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Hvis du valgte å bruke noen gamle GNU/Linux-partisjoner, kan det\n"
+" hende du ønsker å omformatere enkelte\n"
+"eksisterende partisjoner for å slette data på disse. Hvis du ønsker å\n"
+"gjøre dette, kan du velge disse partisjonene også.\n"
+"(å formatere betyr å opprette ett filsystem)\n"
+"\n"
+"Legg merke til at det ikke er nødvendig å formatere alle eksisterende\n"
+"partisjoner. Du må reformatere partisjonene som skal innholde\n"
+"operativsystemet (som «/», «/usr» eller «/var»), men du trenger ikke\n"
+"å omformatere partisjoner som inneholder data du vil beholde\n"
+"(typisk «/home»).\n"
+"\n"
+"Vær forsiktig når du velger partisjoner. Etter formatering vil alle data\n"
+"på de valgte partisjonene bli slettet uten at du kan hente dataene\n"
+"tilbake.\n"
+"\n"
+"Klikk «%s» når du er klar til å formatere partisjonene.\n"
+"\n"
+"Klikk «%s» om du vil velge andre partisjoner for din nye\n"
+"Mandriva Linux-operativsysteminstallasjon. \n"
+"\n"
+"Klikk på «%s» hvis du ønsker å velge partisjoner som skal sjekkes for\n"
+"ødelagte blokker på disken."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Når du installerer Mandriva Linux, er det sannsynlig at enkelte pakker\n"
+"er blitt oppdatert siden denne versjonen ble sluppet. Noen feil kan ha\n"
+"blitt fikset, eller sikkerhetsproblemer løst. For at du skal få utnytte\n"
+"disse forbedringene kan du nå laste dem ned fra internett. Kryss av «%s»\n"
+"dersom du har en fungerende internettforbindelse, eller «%s» dersom\n"
+"du heller vil installere oppdateringene senere.\n"
+"\n"
+"Når du velger «%s» får du en liste over tjenere som oppdateringene kan\n"
+"lastes ned fra. Velg en som er nærmest deg. Et pakkevalgstre vil da\n"
+"dukke opp. Gå gjennom valgene, og klikk «%s» for å hente og installere\n"
+"de(n) valgte pakkene(ne), eller «%s» for å avbryte."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"På dette punktet vil DrakX la deg velge sikkerhetsnivået som er ønsket for\n"
+"maskinen. Som en tommelfingerregel bør sikkerhetsnivået settes høyere,\n"
+"hvis maskinen skal ha viktige data lagret der, eller hvis den skal være\n"
+"direkte tilgjengelig på internettet. Men, et høyere sikkerhetsnivå går \n"
+"gjerne på bekostning av brukervennligheten.\n"
+"\n"
+"Hvis du ikke vet hva du skal velge, behold standardvalget. Du vil kunne\n"
+"endre sikkerhetsnivået senere med verktøyet draksec fra Mandriva Linux\n"
+"Kontrollsenter.\n"
+"\n"
+"'%s'-feltet kan informere systemet om den bruker på systemet som\n"
+"vil være ansvarlig for sikkerheten. Sikkerhetsbeskjeder vil bli sendt til\n"
+"denne adressen."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Sikkerhetsadministrator"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"På dette punktet må du velge hvilke partisjon(er) som skal brukes til å\n"
+"installere ditt nye Mandriva Linux-system på. Hvis partisjoner allerede har\n"
+"blitt definert enten fra en tidligere installasjon av GNU/Linux eller fra et "
+"annet\n"
+"partisjoneringsverktøy, kan du bruke eksisterende partisjoner. I andre\n"
+"tilfeller må harddiskpartisjoner defineres.\n"
+"\n"
+"For å opprette partisjoner må du først velge en harddisk. Du kan velge disk\n"
+"for partisjonering ved å klikke på ``hda'' for den første IDE-disken,\n"
+"``hdb'' for den andre eller ``sda'' for den første SCSI-disken osv.\n"
+"\n"
+"For å partisjonere den valgte harddisken kan du bruke disse valgene:\n"
+"\n"
+" * \"%s\": dette valget sletter alle partisjoner tilgjengelig på den valgte "
+"harddisken.\n"
+"\n"
+" * \"%s\": dette valget lar deg automatisk opprette ext3 og\n"
+"swappartisjoner på din harddisk's ledige plass.\n"
+"\n"
+"\"%s\": gir deg tilgang til ekstra finesser:\n"
+"\n"
+" * \"%s\":lagrer partisjonstabellen din på en diskett. Nyttig hvis "
+"partisjonen\n"
+"trengs å gjenopprettes senere. Det anbefales på det sterkeste at du utfører "
+"dette trinn.\n"
+"\n"
+" * \"%s\": gir deg muligheten til å gjenopprette en tidligere lagret "
+"partisjonstabell\n"
+"fra en diskett.\n"
+"\n"
+" * \"%s\": hvis partisjonstabellen din er skadet kan du forsøke å redde den "
+"ved å\n"
+"bruke dette valget. Vær forsiktig og husk at det kan gå galt.\n"
+"\n"
+" * \"%s\": ignorerer alle forandringer og laster inn harddiskens "
+"opprinnelige\n"
+"partisjonstabell på nytt.\n"
+"\n"
+" * \"%s\": ved å sjekke vekk dette valget, så vil brukere bli nødt til å "
+"manuelt montere\n"
+"og avmontere flyttbare medium som disketter og CDer.\n"
+"\n"
+" * \"%s\": bruk dette valget om du vil bruke en veiviser for å partisjonere\n"
+"harddisken din. Dette er anbefalt om du ikke har gode nok kunnskaper om\n"
+"partisjonering.\n"
+"\n"
+" * \"%s\": du kan bruke dette valget til å forkaste endringene dine.\n"
+"\n"
+" * \"%s\": gir deg ekstra valg under partisjoneringen (type, instillinger, "
+"format)\n"
+"og gir deg mere informasjon om harddisken.\n"
+"\n"
+" * \"%s\": når du er ferdig med å partisjonere harddisken din, så bruk dette "
+"valget\n"
+"for å lagre endringene dine på disken.\n"
+"\n"
+"Når du definerer størrelsen på en partisjon, så kan du finjustere størrelsen "
+"med\n"
+"piltastene på tastaturet ditt.\n"
+"\n"
+"Merk: du kan nå valgene ved å bruke tastaturet. . Naviger gjennom "
+"partisjonene ved å bruke [Tab] og [Opp/Ned]-piltastene.\n"
+"\n"
+"Når en partisjon er valgt kan du bruke:\n"
+"\n"
+" * Ctrl-c for å opprette en ny partisjon (når en tom partisjon er valgt).\n"
+"\n"
+" * Ctrl-d for å slette en partisjon.\n"
+"\n"
+" * Ctrl-m for å sette monteringspunktet.\n"
+"\n"
+"For å få informasjon om de forskjellige filsystemene som er tilgjengelige,\n"
+"vennlist les ext2FS-kapittelet fra ``Reference Manual''.\n"
+"\n"
+"Hvis du installerer på en PPC-maskin, så vil du nok lage en liten\n"
+"HFS-'bootstrap-partisjon' på minst en megabyte for bruk av\n"
+"yaboot-oppstartslasteren. Hvis du ønsker å lage partisjonen litt større,\n"
+"la oss si 50 MB, så kan du lagre en ekstra kjerne og ramdiskbilde for "
+"nødsituasjoner."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Automontering av fjernbart media"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Skift mellom normal-/ekspert-modus"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Mer enn en Microsoft Windows-partisjon har blitt oppdaget på harddisken "
+"din.\n"
+"Velg den du ønsker å endre størrelsen på for å installere ditt nye\n"
+"Mandriva Linux-operativsystem.\n"
+"\n"
+"Hver partisjon er listet som følger: \"Linux-navn\",\n"
+" \"Windows-navn\", \"Kapasitet\".\n"
+"\n"
+"\"Linux-navn\" er kodet som følger: \"harddisktype\", \"harddisknummer\",\n"
+"\"partisjonsnummer\" (f.eks., \"hda1\").\n"
+"\n"
+"\"Harddisktype\" er \"hd\" hvis harddisken din er en IDE harddisk og\n"
+"\"sd\" hvis det er en SCSI harddisk.\n"
+"\n"
+"\"Harddisknummer\" er alltid en bokstav etter \"hd\" eller \"sd\". Med\n"
+"IDE-harddisker:\n"
+"\n"
+" * \"a\" betyr \"master-harddisk på primær IDE kontroller\",\n"
+"\n"
+" * \"b\" betyr \"slave-harddisk på primær IDE kontroller\",\n"
+"\n"
+" * \"c\" betyr \"master-harddisk på sekundær IDE kontroller\",\n"
+"\n"
+" * \"d\" betyr \"slave-harddisk på sekundær IDE kontroller\".\n"
+"\n"
+"Med SCSI-harddisker betyr en \"a\" en \"primær harddisk\", en \"b\" betyr "
+"\"sekundær harddisk\", osv.\n"
+"\n"
+"\"Windows-navn\" er bokstaven på harddisken din under Windows (den første\n"
+"disken eller partisjonen er kalt \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"«%s»: Sjekk ditt valg av land. Dersom du ikke befinner deg i dette landet,\n"
+"klikk på «%s»-knappen og velg et annet. Dersom ditt land ikke er i\n"
+"den første lista, klikk på «%s»\"-knappen for å få den fullstendige lista\n"
+" over land."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Dette trinnet blir bare aktivert dersom det blir funnet en eksisterende\n"
+"GNU/Linux-partisjon på maskinen din.\n"
+"\n"
+"DrakX trenger nå å vite om du vil utføre en ny installasjon eller en "
+"oppgradering\n"
+"av et eksisterende Mandriva Linux-system:\n"
+"\n"
+" * «%s»: Dette vil stort sett slette hele det gamle systemet. Dersom du\n"
+"ønsker å forandre hvordan harddiskene blir partisjonert, eller forandre på\n"
+"filsystemene, bør du velge dette. Men avhengig av hvordan du partisjonerer "
+"kan\n"
+"du avverge at noen av de gamle dataene blir overskrevet.\n"
+"\n"
+" * «%s»: Denne installasjonsklassen lar deg oppgradere pakkene som\n"
+"er installert på ditt nåværende Mandriva Linux-system. Dine nåværende\n"
+"partisjonsoppdelinger og brukerdata blir ikke berørt. De fleste andre "
+"oppsettstrinn\n"
+"forblir tilgjengelige, i likhet med en standard installasjon.\n"
+"\n"
+"«Oppgrader»-valget bør fungere fint på Mandriva Linux systemer som kjører\n"
+"versjon «8.1» eller nyere. Oppgradering av versjoner tidligere enn «8.1» er\n"
+" ikke anbefalt. "
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Avhengig av standardspråket du har valgt, vil DrakX automatisk velge\n"
+"et tilsvarende tastaturoppsett. Sjekk at valget passer deg, eller velg\n"
+"et annet tastaturoppsett.\n"
+"\n"
+"Det kan også hende at du ikke har et tastatur som passer presist \n"
+"til ditt språk.\n"
+"Hvis du for eksempel er en engelsktalende sveitsisk person, kan\n"
+"det være at du har et sveitsisk tastatur, eller hvis du snakker engelsk, "
+"men\n"
+"oppholder deg i Quebec så kan du finne deg i den samme situasjonen hvor\n"
+"ditt eget språk og tastatur ikke stemmer overens. I slike tilfeller vil "
+"dette\n"
+"installasjonstrinnet la deg velge et passende tastatur fra en liste.\n"
+"\n"
+"Klikk på «%s»-knappen for å få en komplett liste over støttede tastaturer.\n"
+"\n"
+"Hvis du velger et tastatur som ikke er basert på det latinske alfabetet,\n"
+"vil den neste dialogen tillate at du setter opp en tastekombinasjon\n"
+"som vil bytte mellom latin og ikke-latinsk tastaturoppsett."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Det første trinnet er å velge ditt foretrukne språk.\n"
+"\n"
+"Ditt valg av foretrukket språk vil påvirke språket til dokumentasjonen,\n"
+"installasjonsrutinen og systemet generelt. Velg først regionen du befinner\n"
+"deg i, og deretter språket du bruker.\n"
+"\n"
+"Om du klikker på «%s»-knappen får du mulighet til å velge andre\n"
+"språk som du ønsker å installere på din arbeidsstasjon. Du installerer da\n"
+"samtidig de språkspesifikke filene for systemdokumentasjon og\n"
+"applikasjoner. Hvis du ønsker norsk som standardspråk, men også\n"
+"ønsker å tilrettelegge for spanske brukere på maskinen, kan du velge\n"
+"norsk som standardspråk i trevisningen, og «%s» i det avanserte avsnitt.\n"
+"\n"
+"Om UTF-8 (ISO 10646) støtte. ISO 10646 er en ny tegnsettskoding det\n"
+"er ment til å dekke alle eksisterende språk. Men full støtte for det i GNU/"
+"Linux er\n"
+"stadig under utvikling. Av denne grunnen vil Mandriva Linux bruke det\n"
+"eller ei avhengig av brukerens valg:\n"
+"\n"
+" * Hvis du velger et språk med sterk binding til gammel kodnng (latin1-\n"
+"språk, russisk, japansk, kinesisk, koreansk, thai, gresk, tyrkisk, de "
+"fleste\n"
+"ISO-8859-2-språk) vil den gamle kodingen bli brukt som standard;\n"
+"\n"
+"Andre språk vil bruke ISO 10646 som standard;\n"
+"\n"
+" * Hvis to eller flere språk er krevd, og ikke disse språk bruker samme "
+"koding,\n"
+"vil ISO 10646 bli brukt for hele systemet;\n"
+"\n"
+" * Endelig kan ISO 10646 også bli påtvunget systemet ved brukervalg\n"
+"ved å velge '%s'-valget uavhengig av hvilke språk som er valgt.\n"
+"\n"
+"Legg merke til at du ikke er begrenset til et enkelt tilleggsspråk. Du\n"
+"kan velge flere, eller til og med alle ved å sjekke av i «%s»-boksen.\n"
+"Valg av språkstøtte betyr at oversettelser, skrifttyper, stavekontroller,\n"
+"osv. for språket også vil bli installert.\n"
+"\n"
+"For å bytte mellom de installerte språkene på systemet, kan du starte\n"
+"programmet «/usr/sbin/localedrake» som «root» for å bytte språket som\n"
+"systemet bruker. Dersom dette programmet kjøres under en vanlig bruker,\n"
+"vil bare språket for denne brukeren endres."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Spansk"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"DrakX oppdager vanligvis antall knapper på musen din. Hvis ikke, så vil det\n"
+"antas at du har en to-knappers mus og det vil settes opp treknappers-"
+"emulering.\n"
+"Den tredje museknappen kan på en toknappers-mus bli brukt ved å\n"
+"trykke ned både høyre og venstre museknapp samtidig. DrakX vil\n"
+"automatisk oppdage om din mus bruker PS/2-, seriell- eller USB-grensesnitt.\n"
+"\n"
+"Hvis du har en 3-knappsmus uten hjul, kan du velge musen\n"
+"«%s». DrakX vil så konfugurere musen din så du kan simulere hjulet med den;\n"
+"for å gjøre dette skal du trykke på den tredje knappen og flytte musen din\n"
+"opp og ned.\n"
+"\n"
+"Hvis du ønsker å spepesifisere en annerledes musetype, velg den passende\n"
+"typen fra listen du blir vist.\n"
+"\n"
+"Du kan velge «%s» eller velge en ``generisk\" mus-type som vil fungere\n"
+"med alle mus.\n"
+"\n"
+"Hvis du velger en annen mus enn hva som er forhåndsvalgt, så vil en\n"
+"testskjerm bli vist. Bruk knappene og musehjulet for å sjekke at\n"
+"oppsettet er riktig, og at musa virker ordentlig. Hvis musa ikke virker "
+"riktig,\n"
+"trykk [Space] eller [Enter] for å avbryte testen og gå tilbake til listen "
+"over valg.\n"
+"\n"
+"Noen ganger så blir ikke musehjulet automatisk oppdaget. Du vil da måtte\n"
+"velge manuelt fra listen. Vær sikker på at du velger en som er på riktig "
+"port.\n"
+"Etter at du har klikket på «%s»-knappen, så vil et musebilde bli vist på "
+"skjermen.\n"
+"Du må da bevege musehjulet for å aktivere det riktig. Når du ser at "
+"musehjulet på\n"
+"skjermen beveges etter som du ruller på det, sjekk også at knappene fungerer "
+"og\n"
+"at musepekeren på skjermen beveger seg når du flytter på musa."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "med hjulemulering"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Universal | Alle PS/2- & USB-mus"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Velg den riktige porten. F.eks., \"COM1\"-porten under\n"
+"Windows blir kalt \"ttyS0\" i GNU/Linux."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Dette er det mest kritisike valget med hensyn til sikkerheten på ditt\n"
+"GNU/Linux-system: du må skrive inn «root»-passordet. «Root» er\n"
+"systemadministratoren og er den eneste som er autorisert til å gjøre\n"
+"oppdateringer, legge til brukere, endre på generellt oppsett, etc.\n"
+"Kort sagt, «root» kan gjøre alt! Derfor er det viktig at du velger et\n"
+"root-passord som er vanskelig å gjette -- DrakX vil si i fra hvis det er\n"
+"for enkelt. Som du ser, så kan du velge å ikke skrive inn noe passord,\n"
+"men det er noe vi anbefaler på det sterkeste å ikke gjøre. Man kan lage\n"
+"feil på GNU/Linux så lett som på ethvert annet operativsystem.\n"
+"Siden «root» kan omgå alle begrensninger og ved uhell kan slette\n"
+"alle data på en partisjon ved ubetenksomt bare å røre partisjonene selv,\n"
+"så er det viktig å gjøre det vanskelig å bli «root».\n"
+"\n"
+"Passordet bør være en blanding av alfanummeriske tegn og være på minst 8\n"
+"tegn. Aldri skriv ned «roo»\"-passordet -- det gjør det for enkelt å bryte "
+"seg\n"
+"inn på systemet ditt. \n"
+"\n"
+"Uansett -- du bør ikke lage passordet for langt og komplisert siden du må \n"
+"være i stand til å huske det uten altfor mye trøbbel.\n"
+"\n"
+"Passordet vil ikke bli vist på skjermen når du skriver det. Dermed må du\n"
+"skrive inn passordet to ganger for å minske sjansen for å skrive feil. Hvis\n"
+"du klarer å skrive passordet feil to ganger, så må dette ``feilaktige'' "
+"passordet\n"
+"bli brukt første gang du logger inn.\n"
+"\n"
+"Hvis du ønsker å autentisere deg via en autentiserings-tjener, klikk på\n"
+"«%s»-knappen.\n"
+"\n"
+"Hvis nettverket ditt bruker enten LDAP-, NIS- eller PDC Windows-\n"
+"domenepåloggingstjeneste, så velg det tilsvarende til\n"
+"«%s». Har du ingen anelse, så spørr nettverksadministratoren din.\n"
+"\n"
+"Hvis du skulle ha problemer med å huske passord, hvis maskinen din aldri "
+"vil\n"
+"brukes for å koble til internett, eller at du stoler på absolutt alle som "
+"bruker din\n"
+"maskin, så kan du velge «%s»."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "autentisering"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"En oppstartslaster er et lite program som er startet av datamaskinen\n"
+"når den starter opp. Den er ansvarlig for å starte hele systemet. Vanligvis\n"
+"er oppstartslaster-installasjonen helt automatisk. DrakX vil analysere\n"
+"oppstartssektoren på harddisken og sette oppstartslasteren opp etter hva\n"
+"den finner der.\n"
+"\n"
+" * Hvis en oppstartssektor for Windows blir funnet, vil den erstatte denne "
+"med\n"
+"en GRUB- eller LILO-oppstartsektor. På denne måten kan du laste enten\n"
+"GNU/Linux eller ethvert annet operativsystem installert på din maskin.\n"
+"\n"
+" * Hvis en oppstartsektor for GRUB eller LILO blir funnet, vil den bli "
+"erstattet\n"
+"med en ny.\n"
+"\n"
+"Dersom det ikke er mulig å avgjøre dette automatisk, vil DrakX spørre deg "
+"hvor\n"
+"oppstartslasteren skal installeres. Vanligvis er «%s» det sikreste stedet.\n"
+"Valg av «%s» vil ikke installere noen oppstartslaster. Bruk kun dette\n"
+"hvis du vet hva du gjør."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Nå er det på tide å velge utskriftsystemet for din maskin. Andre\n"
+"operativsystemer tilbyr kanskje en, men Mandriva Linux tilbyr to.\n"
+"Hvert av systemene er best for et spesiell type oppsett.\n"
+"\n"
+" * «%s» -- som står for ``print, do not queue'', er valget hvis du har en\n"
+"direkte tilkobling til din printer og du vil ha muligheten til å flykte fra\n"
+"printerkræsj, og du ikke har nettverksskrivere. («%s» vil bare håndtere\n"
+"veldig enkle nettverkstilfeller og er nogenlunde treg for nettverk.) Det er\n"
+"anbefalt at du bruker «pdq» hvis dette er din første erfaring med GNU/"
+"Linux.\n"
+"\n"
+" * «%s» står for ``Common Unix Printing System'', er perfekt til å skrive "
+"til\n"
+"din egen lokale skriver, og også til skrivere på andre siden av kloden.\n"
+"Den er simpel og kan opptrå som både skriver og klient for det "
+"forhistoriske\n"
+"«lpd»-utskriftssystemet, så den er kompatibel med de eldre operativsystemer\n"
+"som fortsatt trenger utskriftstjenester. Selv om den er ganske kraftig, så "
+"er\n"
+"basisoppsettet nesten like enkelt som «pdq». Hvis du trenger å emulere en\n"
+"«lpd»-tjener, må du slå på «cups-lpd»-tjenesten. «%s» inkluderer et grafisk "
+"grensesnitt for utskrift eller oppsett av skriver og styring av skriver.\n"
+"\n"
+"Hvis du gjør et valg nå, og så senere finner ut at du ikke liker ditt "
+"utskriftssystem,\n"
+"så kan du endre det ved å kjøre PrinterDrake fra Mandriva Linux "
+"Kontrollsenter og\n"
+"klikke på «%s»-knappen. "
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Ekspert"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX vil nå oppdage alle IDE-enheter som er tilstede på ditt system. Det\n"
+"vil også scanne etter en eller flere PCI SCSI-kort på systemet ditt. Hvis "
+"et\n"
+"SCSI-kort er tilstede, så vil DrakX automatisk installere den passende "
+"driveren.\n"
+"\n"
+"På grunn av at maskinvareoppdagelse ikke er feilfritt, så kan det være at\n"
+"DrakX ikke klarer å oppdage dine harddisker. Hvis dette skjer, så må du\n"
+"spesifisere din maskinvare for hånd.\n"
+"\n"
+"Hvis du må spesifisere PCI SCSI-kontrolleren din manuelt, så vil DrakX\n"
+"spørre deg om å gjøre noen valg for det. Du burde tillate DrakX å teste\n"
+"maskinvaren for kort-spesifikke valg som trengs for å initialisere\n"
+"maskinvaren. Som regel så vil DrakX klare å gå igjennom dette steget uten\n"
+"problemer.\n"
+"\n"
+"Hvis DrakX ikke er i stand til å oppdage de riktige parametrene som trengs\n"
+"for din maskinvare, så må du manuelt sette opp driveren."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"«%s»: hvis et lydkort blir oppdaget på systemet ditt, blir det vist her.\n"
+"Hvis du oppdager at lydkortet som blir vist her ikke er det som\n"
+"faktisk er til stede på ditt system, så kan du klikke på denne knappen for\n"
+"å velge en annen driver."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Som en oppsummering vil DrakX gi deg en oversikt over informasjon som\n"
+"den har om systemet ditt. Avhengig av installert maskinvare, kan du ha et\n"
+"eller flere av de følgende punktene. Hvert punkt består av en overskrift "
+"fulgt\n"
+"av en kort oppsummering av det nåværende oppsettet. Klikk på\n"
+"den korresponderende «%s»-knappen for å endre på det.\n"
+"\n"
+" * «%s»: sjekk ditt gjeldende tastaturoppsett og endre om nødvendig.\n"
+"\n"
+" * «%s»: sjekk ditt gjeldende valg av land. Hvis du ikke er i dette landet,\n"
+"klikk på «%s»-knappen og velg et annet land. Hvis landet ditt ikke er i\n"
+"den først viste listen, klikk «%s»-knappen for å få en fullstendig liste "
+"over land.\n"
+"\n"
+" ' «%s»\": som standard bestemmer DrakX din tidssone ut i fra hvilket land "
+"du\n"
+"har valgt. Du kan klikke på «%s»-knappen her om dette ikke er korrekt.\n"
+"\n"
+" * «%s» :sjekk det gjeldende museoppsettet og klikk på knappen for å endre\n"
+"om nødvendig.\n"
+"\n"
+" * «%s»: ved å klikke på «%s»-knappen åpnes skriveroppsett-veiviseren.\n"
+"Konsulter det tilhørende kapittelet i oppstartsguiden for mer\n"
+"informasjon om hvordan en skriver kan settes opp. Grensesnittet som er vist\n"
+"der er likt det som benyttes under installasjonen.\n"
+"\n"
+" * \"%s\": hvis det er funnet et lydkort i ditt system, er det vist her. "
+"Hvis du\n"
+"finner ut at lydkortet som er vist ikke stemmer overens med det som faktisk "
+"er\n"
+"installert i din maskin, kan du klikke på knappen og velge en annen driver.\n"
+"\n"
+" * «%s»: hvis du har ett TV-kort, dette er der informasjonen om oppsettet "
+"til det\n"
+"vil blir vist. Hvis du har et TV-kort og det ikke er oppdaget, klikk på «%"
+"s»\n"
+"for å forsøke å sette det opp manuelt\n"
+"\n"
+" * «%s»: Du kan klikke på «%s» for å forandre parameterene til kortet hvis "
+"du\n"
+"syntes at oppsettet er feil.\n"
+"\n"
+" * «%s»: Vanligvis setter DrakX opp ditt grafiske grensesnitt i\n"
+"«800x600» eller «1024x768» oppløsning. Hvis det ikke er det du vil ha\n"
+"klikk på «%s« for å sette opp ditt grafiske grensesnitt.\n"
+"\n"
+" * «%s»: hvis du vil sette opp din internett- eller lokale "
+"nettverkstilkobling\n"
+"kan du gjøre det nå. Sjekk den utskrevne dokumentasjonen eller bruk\n"
+"Mandriva Linux Kontrollsenter etter at installasjonen er ferdig for å\n"
+"få full hjelp med oppsettet.\n"
+"\n"
+" * «%s»: lar deg sette opp HTTP og FTP mellomtjener-adresser hvis maskinen\n"
+"du installerer på er bak en mellomtjener.\n"
+"\n"
+" * «%s»: dette valget lar deg omdefinere sikkerhetsnivået som ble satt i et "
+"tidligere\n"
+"steg ().\n"
+"\n"
+" * «%s»: hvis du planlegger å koble din maskin til internett er det en god "
+"idé\n"
+"å beskytte deg selv fra inntrengere ved å sette opp en brannmur. Se den\n"
+"korresponderende seksjonen i ``Starter Guiden\" for detaljer om brannmur\n"
+"innstillinger.\n"
+"\n"
+" * «%s»: dersom du ønsker å endre ditt oppstartslaster-oppsett, klikk på "
+"denne\n"
+"knappen. Dette er kun for avanserte brukere. Sjekk den utskrevne "
+"dokumentasjonen\n"
+"eller innebygd hjelp om oppstartslaster-oppsettet i Mandriva Linux "
+"Kontrollsenter.\n"
+"\n"
+" * «%s»: igjennom dette valget kan du finjustere hvilke tjenester som skal "
+"kjøre på din\n"
+"maskin. Hvis du planlegger å bruke maskinen som en tjener er det en god ide "
+"å se\n"
+"igjennom dette."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN-kort"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Grafisk grensesnitt"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Velg den harddisken du ønsker å slette for å installere din nye\n"
+"Mandriva Linux-partisjon. Vær forsiktig, alle data på denne partisjonen vil "
+"gå tapt\n"
+"og vil ikke kunne gjenopprettes!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Klikk på \"%s\" hvis du ønsker å slette alle data og partisjoner på denne\n"
+"harddisken. Vær forsiktig, etter at du har klikket på \"%s\" vil du ikke\n"
+"kunne gjenopprette data og partisjoner på denne harddisken inkludert Windows-"
+"data.\n"
+"\n"
+"Klikk på \"%s\" for å avslutte denne operasjonen uten å miste data og\n"
+"partisjoner på denne harddisken."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Neste ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Forrige"
+
diff --git a/perl-install/install/help/po/nl.po b/perl-install/install/help/po/nl.po
new file mode 100644
index 000000000..a6a878542
--- /dev/null
+++ b/perl-install/install/help/po/nl.po
@@ -0,0 +1,2006 @@
+# translation of DrakX-nl.po to Nederlands
+# Dutch translation of DrakX.
+# Copyright (C) 2000, 2005 Free Software Foundation, Inc.
+# Copyright (c) 2000 Mandriva
+# Niels Gras <niels.gras@wanadoo.nl>, 2000.
+# Jeroen ten Berge <j.ten.berge@twinbit.nl>, 2002.
+# Reinout van Schouwen <reinout@cs.vu.nl>, 2002-2005.
+# Peter Bosch <peter.bosch@hccnet.nl>, 2002.
+# Rob Teng <mandrake.tips@free.fr>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-nl\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-09-20 00:24+0200\n"
+"Last-Translator: Reinout van Schouwen <reinout@cs.vu.nl>\n"
+"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Voordat u verdergaat dient u eerst de voorwaarden in de licentie\n"
+"aandachtig te lezen. Zij beslaan de gehele Mandriva Linux distributie.\n"
+"Indien u akkoord gaat met alle voorwaarden erin kruist u het\n"
+"\"%s\"-vakje aan. Zoniet, dan zal het klikken van de \"%s\"-knop\n"
+"uw computer herstarten."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux is een multi-gebruikerssysteem, dit betekent dat iedere "
+"gebruiker \n"
+"haar eigen voorkeuren, bestanden enzovoort kan hebben. U kunt de \n"
+"''Beginnershandleiding'' lezen om hierover meer te weten te komen. Maar \n"
+"in tegenstelling tot \"root\", de beheerder, zullen de gebruikers die\n"
+"u hier toevoegt geen recht hebben om iets te veranderen behalve hun eigen \n"
+"bestanden en hun eigen configuratie, waarmee het systeem beschermd wordt \n"
+"tegen onbedoelde danwel kwaadwillende veranderingen die het systeem als\n"
+"geheel beïnvloeden. U zult tenminste één algemene gebruiker voor \n"
+"uzelf aan moeten maken. Dit account behoort u voor de dagelijkse routine\n"
+"te gebruiken. Alhoewel het erg praktisch is om iedere dag als \"root\" \n"
+"aan te melden, om van alles en nog wat te doen, kan het ook erg gevaarlijk\n"
+"zijn! De kleinste vergissing kan ervoor zorgen dat uw hele systeem niet\n"
+"meer werkt. Wanneer u een grote vergissing maakt als een gewone\n"
+"gebruiker, zou u in het ergste geval sommige gegevens kunnen\n"
+"verliezen, maar niet het hele systeem beschadigen.\n"
+"\n"
+"Het eerste veld is voor uw echte naam in. Dit is uiteraard niet verplicht -\n"
+"u kunt alles invoeren wat u wilt. DrakX neemt dan het eerste woord dat u\n"
+"had ingevuld en brengt het over naar het veld \"%s\". Met deze\n"
+"naam kan de betreffende gebruiker zich aanmelden op het systeem. \n"
+"Desgewenst kunt u de voorgestelde gebruikersnaam veranderen.\n"
+"De volgende stap is het invoeren van een wachtwoord. Het \n"
+"wachtwoord van een (gewone) gebruiker zonder privileges is niet zo \n"
+"cruciaal als dat van de \"root\"-gebruiker vanuit veiligheidsperspectief, \n"
+"maar dat is geen reden om het te verwaarlozen door het leeg te laten of het\n"
+"te eenvoudig te maken: tenslotte staan uw bestanden op het spel.\n"
+"\n"
+"Wanneer u klikt op \"%s\", dan kunt u daarna andere \n"
+"gebruikers toevoegen. Voeg een gebruiker toe voor elk van uw \n"
+"bekenden, uw vader of uw zus bijvoorbeeld. Als u klaar bent met het \n"
+"toevoegen van gebruikers, klik dan op \"%s\".\n"
+"\n"
+"Klikken op de \"%s\"-knop stelt u in staat om de standaard\n"
+"\"shell\" voor een gebruiker te veranderen (standaard is dit bash).\n"
+"\n"
+"Wanneer u alle gebruikers hebt toegevoegd, dan wordt u gevraagd een \n"
+"gebruiker te kiezen die zich vanzelf aanmeldt wanneer de computer opstart.\n"
+"Indien u geïnteresseerd bent in deze functie (en lokale beveiliging niet\n"
+"zo belangrijk vindt), kies dan de gewenste gebruiker en werkomgeving en\n"
+"klik vervolgens op \"%s\". Wenst u deze functie niet, wis dan\n"
+"het kruisje bij het vakje \"%s\"."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Wilt u van deze mogelijkheid gebruik maken?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Hier zijn de bestaande Linuxpartities afgebeeld die op uw harde\n"
+"schijf gevonden zijn. U kunt de keuzes die gemaakt zijn door de wizard\n"
+"behouden, ze zijn goed voor de meeste doorsnee installaties.\n"
+"Indien u veranderingen maakt, moet u in ieder geval een root partitie\n"
+"(\"/\") definiëren. Kies een partitie niet te klein, anders zult u niet in\n"
+"staat zijn genoeg software te installeren. Indien u uw gegevens op een\n"
+"aparte partitie wilt bewaren, dient u tevens een \"/home\" partitie te\n"
+"creëren (alleen mogelijk wanneer er meer dan één Linux partitie\n"
+"beschikbaar is).\n"
+"\n"
+"Elke partitie is als volgt afgebeeld: \"Naam\", \"Capaciteit\".\n"
+"\n"
+"\"Naam\" is als volgt opgebouwd: \"type harde schijf\",\n"
+"\"harde schijf-teken\", \"partitienummer\" (bijvoorbeeld \"hda1\").\n"
+"\n"
+"\"Type harde schijf\" is \"hd\" als uw harde schijf van het IDE-type is en\n"
+"\"sd\" wanneer deze van het SCSI-type is.\n"
+"\n"
+"\"Harde schijf-teken\" is altijd een letter na \"hd\" of \"sd\". Voor IDE\n"
+"harde schijven:\n"
+"\n"
+" * \"a\" betekent \"master harde schijf op de primaire IDE controller\",\n"
+"\n"
+" * \"b\" betekent \"slave harde schijf op de primaire IDE controller\",\n"
+"\n"
+" * \"c\" betekent \"master harde schijf op de secundaire IDE controller\",\n"
+"\n"
+" * \"d\" betekent \"slave harde schijf op de secundaire IDE controller\".\n"
+"\n"
+"Bij SCSI harde schijven betekent een \"a\" \"laagste SCSI ID\",\n"
+"een \"b\" \"het op één na laagste SCSI ID\", etc."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"De Mandriva Linux-installatie is verdeeld over meerdere CD-ROMs. Als een \n"
+"geselecteerd pakket te vinden is op een andere CD-ROM, zal het \n"
+"installatieprogramma de huidige CD uitwerpen en u vragen om de\n"
+"correcte CD in te leggen. Mocht u de betreffende CD niet bij de hand "
+"hebben,\n"
+"klik dan gewoon op \"%s\", de corresponderende pakketten zullen dan niet\n"
+"worden geïnstalleerd."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Het is nu tijd om te bepalen welke programma's u op uw systeem\n"
+"wenst te installeren. Er zijn duizenden pakketten beschikbaar voor Mandriva\n"
+"Linux, en om het overzichtelijker te maken zijn de pakketten in groepen\n"
+"van vergelijkbare toepassingen geplaatst.\n"
+"\n"
+"Mandriva Linux sorteert groepen pakketten in vier categorieën.\n"
+"U kunt de toepassingen uit de verschillende categorieën uitkiezen\n"
+"en samenvoegen naar eigen inzicht, zodat een ``Werkstation''-installatie\n"
+"nog steeds toepassingen geïnstalleerd kan hebben uit de ``Server''\n"
+"categorie.\n"
+"\n"
+"* \"%s\": indien u van plan bent uw computer als werkstation te\n"
+"gaan gebruiken, selecteer dan één of meer van de groepen in de\n"
+"werkstation-categorie.\n"
+"\n"
+"* \"%s\": indien u van plan bent om uw computer voor programmeren\n"
+"te gebruiken, kiest u de gewenste groepen uit die categorie.\n"
+"De speciale \"LSB\"-groep configureert uw systeem zodanig dat het\n"
+"zoveel mogelijk tegemoetkomt aan de specificaties van de Linux\n"
+"Standard Base.\n"
+"\n"
+" Het selecteren van de \"LSB\" groep zal tevens de \"2.4\" kernelserie,\n"
+"installeren, in plaats van de standaard \"2.6\". Dit is om het systeem \n"
+"100%% te laten voldoen aan de LSB. Als u de \"LSB\"-groep niet selecteert\n"
+"dan heeft u nog steeds een systeem dat bijna 100%% voldoet aan de LSB.\n"
+"\n"
+"* \"%s\": als de computer bestemd is voor server-doeleinden, dan\n"
+"kunt u aangeven welke van de meest voorkomende diensten u op uw\n"
+"computer wilt installeren.\n"
+"\n"
+"* \"%s\": dit is waar u uw voorkeur voor een grafische\n"
+"omgeving kunt aangeven. Tenminste één moet geselecteerd zijn als u een\n"
+"grafische werkomgeving wilt hebben.\n"
+"\n"
+"Bij het bewegen van de muispijl boven een groepnaam zal er een korte "
+"verklarende tekst over die groep getoond worden. \n"
+"\n"
+"U kunt het \"%s\"-vakje aankruisen, wat nuttig is wanneer u bekend bent \n"
+"met de aangeboden pakketten of wanneer u volledige controle wilt hebben \n"
+"over wat er geïnstalleerd wordt.\n"
+"\n"
+"Indien u de installatie in \"%s\"-modus start, dan kunt u alle groepen\n"
+"deselecteren en voorkomen dat er enige nieuwe pakketten geïnstalleerd\n"
+"worden. Dit kan van pas komen bij het repareren of bijwerken van een \n"
+"bestaand systeem.\n"
+"\n"
+"Indien u alle groepen deselecteert bij het uitvoeren van een reguliere\n"
+"installatie (in tegenstelling tot opwaarderen), dan zal een dialoogvenster\n"
+"verschijnen met verscheidene opties voor een minimale installatie:\n"
+"\n"
+" * \"%s\": installeert zo min mogelijk pakketten met behoud van een werkende "
+"grafische werkomgeving.\n"
+" \n"
+" * \"%s\" installeert het basissysteem plus algemene hulpprogramma's\n"
+"en bijbehorende documentatie. Deze installatie is geschikt om een\n"
+"server mee in te richten.\n"
+"\n"
+" * \"%s\" zal het absolute minimum installeren dat nodig is\n"
+"om een werkend Linux-systeem te verkrijgen. Met deze installatie\n"
+"zult u slechts een opdrachtregelinterface hebben.\n"
+"Deze installatie is in totaal ongeveer 65 megabyte groot."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Opwaardering"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Met basis-documentatie"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Zeer minimale installatie"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Afhankelijk van uw keus om al dan niet individuele pakketten\n"
+"te selecteren, zal het installatieprogramma u een boom tonen die alle\n"
+"pakketten bevat, geclassificeerd in groepen en subgroepen. Terwijl u door\n"
+"de boom bladert, kunt u gehele groepen, subgroepen of individuele pakketten\n"
+"selecteren.\n"
+"\n"
+"Wanneer u een pakket in de boom selecteert, verschijnt een beschrijving\n"
+"aan de rechterkant om u te informeren over het doel van het pakket.\n"
+"\n"
+"!! Als een server-pakket geselecteerd is, ofwel omdat u dat pakket\n"
+"specifiek gekozen heeft ofwel omdat het onderdeel is van een hele groep\n"
+"pakketten, zal u gevraagd worden om te bevestigen dat u deze servers echt\n"
+"wilt installeren. Onder Mandriva Linux worden alle geïnstalleerde servers\n"
+"standaard ingeschakeld tijdens het opstarten. Zelfs wanneer zij veilig\n"
+"zijn en geen bekende beveiligingsgebreken hadden op het moment dat de\n"
+"distributie werd uitgebracht, kan het gebeuren dat beveiligingsfouten\n"
+"ontdekt worden nadat deze versie van Mandriva Linux afgemaakt werd.\n"
+"Indien u niet weet wat een bepaalde dienst geacht wordt te doen of waarom\n"
+"deze geïnstalleerd wordt, klikt u dan \"%s\". Klikken op \"%s\" zal\n"
+"de getoonde diensten installeren en ze zullen automatisch worden\n"
+"ingeschakeld tijdens het opstarten van de computer. !!\n"
+"\n"
+"De \"%s\"-optie schakelt het\n"
+"waarschuwingsvenster uit dat verschijnt wanneer het installatieprogramma\n"
+"automatisch een pakket selecteert om een afhankelijkheid te vervullen.\n"
+"Sommige pakketten zijn afhankelijk van andere en de installatie van\n"
+"het ene pakket vereist dan de installatie van een ander pakket. Het\n"
+"installatieprogramma kan uitzoeken welke pakketten benodigd zijn\n"
+"om een afhankelijkheid te vervullen om de installatie succesvol te\n"
+"voltooien.\n"
+"\n"
+"Het kleine diskette-pictogram onderaan de lijst stelt u in staat de\n"
+"pakketten-lijst te laden die tijdens een eerdere installatie gekozen was.\n"
+"Als u klikt op dit pictogram zal u gevraagd worden een diskette in het\n"
+"diskettestation te plaatsen welke gecreëerd was aan het eind van een\n"
+"andere installatie. Zie de tweede tip van de laatste stap over hoe u een\n"
+"dergelijke diskette aanmaakt."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Automatische afhankelijkheden"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": klikken op de \"%s\"-knop zal de printerconfiguratie-\n"
+"wizard openen. Raadpleeg het overeenkomstige hoofdstuk uit de ``Beginners-\n"
+"handleiding'' voor meer informatie over het instellen van een nieuwe "
+"printer.\n"
+"De in onze handleiding getoonde interface lijkt sterk op degene gebruikt\n"
+"tijdens de installatie."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"In dit dialoogvenster kunt u kiezen welke diensten u wenst te starten\n"
+"tijdens de opstartfase van uw computer.\n"
+"\n"
+"Het installatieprogramma toont alle diensten die beschikbaar zijn in de "
+"huidige\n"
+"installatie. Kijk ze aandachtig na en de-selecteer degenen die niet \n"
+"nodig zijn bij het opstarten.\n"
+"\n"
+"Een korte verklarende tekst wordt gegeven over een dienst bij de selectie\n"
+"ervan. Wanneer u niet zeker bent of een dienst nuttig is of niet,\n"
+"dan is het veiliger om de standaardinstelling over te nemen.\n"
+"\n"
+"!! Wees vooral voorzichtig in deze stap als u uw machine als server \n"
+"wilt gebruiken: u zult waarschijnlijk de diensten die u niet nodig heeft\n"
+"niet willen starten. Onthoudt dat een aantal diensten riskant kunnen\n"
+"zijn indien ze geactiveerd zijn op een server. In het algemeen geldt: kies\n"
+"alleen de diensten die u echt nodig heeft. !!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux houdt de tijd bij in GMT (Greenwich Mean Time) en vertaalt\n"
+"het naar lokale tijd volgens de tijdzone die u geselecteerd heeft. Als\n"
+"de klok op uw moederbord op lokale tijd is ingesteld, dan kunt u dit\n"
+"deactiveren door \"%s\" te deselecteren,\n"
+"hetgeen GNU/Linux laat weten dat de systeemklok en hardwareklok op\n"
+"dezelfde tijdzone staan. Dit is nuttig wanneer er op de computer nog\n"
+"een ander besturingssysteem staat.\n"
+"\n"
+"De \"%s\"-optie zal de klok automatisch\n"
+"bijstellen door verbinding te maken met een tijdsserver op internet.\n"
+"U dient een werkende internetverbinding hebben voordat deze functie\n"
+"werkt. Het is het beste om een tijdserver te kiezen die dichtbij is.\n"
+"Deze optie zorgt er tevens voor dat er een tijdserver op uw computer\n"
+"wordt geïnstalleerd die gebruikt kan worden door andere computers\n"
+"op uw lokale netwerk."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Automatische tijdssynchronisatie"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Grafische kaart\n"
+"\n"
+" Het installatieprogramma zal normaal gesproken de grafische kaart\n"
+"in uw computer automatisch vinden en configureren. Mocht dit niet\n"
+"het geval zijn, dan kunt u uit deze lijst de kaart kiezen die u\n"
+"daadwerkelijk heeft.\n"
+"\n"
+" In het geval dat er meerdere servers voor uw kaart beschikbaar zijn,\n"
+"met of zonder 3D-versnelling, dan wordt u gevraagd de server te kiezen\n"
+"die het best bij uw omstandigheden past."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (voor X Window System) is het hart van de grafische interface van GNU/\n"
+"Linux waarvan alle grafische omgevingen (KDE, GNOME, AfterStep, "
+"WindowMaker,\n"
+"etc.) die bij Mandriva Linux worden geleverd, afhankelijk zijn.\n"
+"\n"
+"U krijgt een lijst te zien van verschillende parameters die u kunt "
+"aanpassen\n"
+"om een optimale grafische weergave te verkrijgen:\n"
+"Grafische kaart\n"
+"\n"
+" Het installatieprogramma vindt normaal gesproken automatisch de \n"
+"grafische kaart in uw computer en configureert deze. Als dit niet het \n"
+"geval is, kunt u uit deze lijst de kaart kiezen die u daadwerkelijk heeft.\n"
+"\n"
+" In het geval dat er verschillende X-servers zijn voor uw kaart, met of\n"
+"zonder 3D-versnelling, dan wordt u voorgesteld om de server te kiezen die\n"
+"het beste bij uw omstandigheden past.\n"
+"\n"
+"\n"
+"\n"
+"Beeldscherm\n"
+"\n"
+" Het installatieprogramma kan normaal gesproken het aangesloten\n"
+"beeldscherm automatisch bespeuren en configureren. Als dit niet \n"
+"correct is, dan kunt u uit deze lijst de monitor kiezen die \n"
+"daadwerkelijk op uw computer is aangesloten.\n"
+"\n"
+"\n"
+"\n"
+"Resolutie\n"
+"\n"
+" U kunt hier de resolutie en kleurdiepte kiezen uit degenen die\n"
+"beschikbaar zijn voor uw apparatuur. Kies degene die het best bij uw\n"
+"omstandigheden past (u kunt dit na installatie evengoed wijzigen). Een\n"
+"voorbeeld van de gekozen configuratie wordt op het scherm getoond.\n"
+"\n"
+"\n"
+"\n"
+"Testen\n"
+"\n"
+" Afhankelijk van uw apparatuur kan het zijn dat dit item niet verschijnt.\n"
+"\n"
+" Het systeem zal trachten een grafisch scherm te openen in de gewenste\n"
+"resolutie. Wanneer u het bericht tijdens de test kunt zien en \"%s\"\n"
+"antwoordt, dan gaat de installatie door naar de volgende stap. Als u het \n"
+"bericht niet kunt zien, dan betekent dat dat een gedeelte van de gevonden\n"
+"configuratie niet klopt en zal de test automatisch na 12 seconden eindigen,\n"
+"waarmee u terugkomt in het menu. Pas de instellingen aan totdat u een "
+"correcte grafische weergave krijgt.\n"
+"\n"
+"\n"
+"\n"
+"Opties\n"
+"\n"
+" Hier kunt u kiezen of u uw computer automatisch wilt laten omschakelen\n"
+"naar een grafisch gebruiksoppervlak bij het opstarten. Vanzelfsprekend zult\n"
+"u \"%s\" willen aankruisen als uw computer gaat functioneren als server, of\n"
+"als u het niet gedaan kreeg het beeldscherm goed te configureren."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+"\n"
+" Het installatieprogramma kan normaal gesproken de aangesloten monitor\n"
+"automatisch bespeuren en configureren. Als dit niet correct is, dan kunt u\n"
+"uit deze lijst de monitor kiezen die werkelijk aan uw computer verbonden is."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Resolutie\n"
+"\n"
+" U kunt hier de resolutie en kleurdiepte kiezen uit degenen die\n"
+"beschikbaar zijn voor uw apparatuur. Kies degene die het best bij uw\n"
+"omstandigheden past (u kunt dit na installatie evengoed wijzigen). Een\n"
+"voorbeeld van de gekozen configuratie wordt op het scherm getoond."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"In het geval dat er verschillende servers beschikbaar zijn voor uw kaart,\n"
+"met of zonder 3D-versnelling, dan wordt u de keuze geboden voor de server\n"
+"die het beste bij uw omstandigheden past."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Opties\n"
+"\n"
+"In deze stap kunt u kiezen of u wilt dat uw computer automatisch\n"
+"naar een grafische interface omschakelt bij het opstarten. Vanzelfsprekend\n"
+"wilt u \"%s\" aankruisen als uw machine als server moet dienen, of\n"
+"als u er niet in slaagde het beeld te configureren."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Op dit punt dient u te kiezen waar op uw harde schijf u uw Mandriva Linux\n"
+"besturingssysteem wilt installeren. Als uw harde schijf leeg is of als een\n"
+"ander besturingssysteem alle beschikbare ruimte inneemt, dan zult u\n"
+"de harde schijf moeten partitioneren. Partitioneren houdt in dat u uw harde\n"
+"schijf in logische stukken onderverdeelt om ruimte te creëren voor uw\n"
+"nieuwe Mandriva Linux besturingssysteem.\n"
+"\n"
+"Omdat de effecten van het partitioneringsproces over het algemeen niet\n"
+"terug te draaien zijn en kan leiden tot gegevensverlies als er reeds een\n"
+"besturingssysteem op de schijf geïnstalleerd is, kan partitioneren\n"
+"intimiderend en spannend zijn voor een onervaren gebruiker. Gelukkig is\n"
+"er een wizard die dit proces vereenvoudigt. Leest u de rest van dit\n"
+"hoofdstukje voordat u verder gaat en neemt u vooral de tijd.\n"
+"\n"
+"Afhankelijk van de configuratie van uw harde schijf, zijn er\n"
+"verscheidene opties beschikbaar:\n"
+"\n"
+" * \"%s\": deze optie zal leiden tot het automatisch\n"
+"partitioneren van uw lege schijf/schijven. Er worden u verder geen vragen\n"
+"gesteld bij deze optie.\n"
+"\n"
+" * \"%s\": de wizard heeft één of meer bestaande Linux-partities op \n"
+"uw harde schijf gevonden. Indien u deze wilt gebruiken, kiest \n"
+"u deze optie. Vervolgens zal u gevraagd worden de koppelpunten te\n"
+"kiezen die met elk van de partities geassocieerd zijn. De bestaande\n"
+"koppelpunten zijn standaard al geselecteerd en meestal is het het beste\n"
+"als u deze behoudt.\n"
+"\n"
+" * \"%s\": indien Microsoft Windows\n"
+"op uw harde schijf is geïnstalleerd en alle beschikbare ruimte in beslag "
+"neemt,\n"
+"dient u vrije ruimte te creëren voor GNU/Linux. Om dat te doen, kunt u\n"
+"uw Microsoft Windows-partitie en -gegevens wissen (zie het punt\n"
+"``Gehele schijf wissen'') of uw Microsoft Windows FAT- of NTFS-partitie\n"
+"verkleinen. Het aanpassen van de grootte kan bewerkstelligd worden zonder\n"
+"verlies van enige gegevens, vooropgesteld dat u eerst de Windows-partitie\n"
+"gedefragmenteerd heeft. Een reservekopie maken van uw gegevens is\n"
+"uitdrukkelijk aangeraden. Deze optie is aanbevolen indien u zowel\n"
+"Mandriva Linux als Microsoft Windows op dezelfde computer wilt gebruiken.\n"
+"\n"
+" Laat het goed tot u doordringen, voordat u deze optie kiest, dat uw\n"
+"Microsoft Windows partitie na afloop van deze procedure minder groot\n"
+"zal zijn dan hij nu is. U zult minder vrije ruimte hebben onder\n"
+"Microsoft Windows om uw gegevens op te slaan of om nieuwe software te\n"
+"installeren.\n"
+"\n"
+" * \"%s\": indien u alle gegevens en alle partities op uw\n"
+"harde schijf wilt verwijderen en vervangen door uw nieuwe Mandriva Linux-\n"
+"systeem, kiest u deze optie. Weest u voorzichtig met deze oplossing omdat u\n"
+"na bevestiging deze keuze niet meer ongedaan kunt maken.\n"
+"\n"
+" !! Als u deze optie kiest, zullen alle gegevens op uw schijf verloren "
+"gaan. !!\n"
+"\n"
+" * \"%s\": Deze optie verschijnt wanneer de harde schijf volledig in \n"
+"beslag genomen is door Microsoft Windows. Het kiezen van deze optie wist\n"
+"simpelweg alles op de schijf en begint van voren af aan met\n"
+"partitioneren.\n"
+"\n"
+" !! Als u deze optie kiest, zullen alle gegevens op uw schijf verloren "
+"gaan. !!\n"
+"\n"
+" * \"%s\": kies deze optie indien u handmatig\n"
+"uw harde schijf wenst te partitioneren. Weest u voorzichtig - het is een\n"
+"krachtige maar riskante keuze en u kunt erg gemakkelijk al uw gegevens\n"
+"kwijtraken. Derhalve is deze optie slechts aanbevolen indien u zoiets\n"
+"al eens eerder gedaan hebt en enige ervaring hebt. Voor meer instructies\n"
+"voor het gebruik van het DiskDrake-hulpprogramma zij u verwezen naar het\n"
+"hoofdstuk ``Uw partities beheren'' in de ``Beginnershandleiding''."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Een bestaande partitie gebruiken"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Volledige harde schijf wissen"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Alstublieft. De installatieprocedure is voltooid en uw GNU/Linux-systeem\n"
+"is klaar voor gebruik. U hoeft alleen nog op \"%s\" te klikken om uw\n"
+"computer opnieuw te starten. Vergeet niet de installatiemedia (CD-ROM of \n"
+"diskette) te verwijderen. Het eerste dat u te zien krijgt nadat uw\n"
+"computer the apparatuurtests heeft afgerond is het opstartladermenu,\n"
+"dat u de keus geeft welk besturingssysteem te starten.\n"
+"\n"
+"De \"%s\"-knop toont twee extra knoppen voor:\n"
+"\n"
+" * \"%s\": om een installatiediskette aan te maken welke de gehele\n"
+"installatie automatisch zal uitvoeren zonder een\n"
+"toezichthouder, gelijkend op de installatie die u zojuist\n"
+"heeft geconfigureerd.\n"
+"\n"
+" Merk op dat er twee verschillende opties zijn na het aanklikken\n"
+" van deze knop:\n"
+"\n"
+" * \"%s\". Dit is een gedeeltelijk geautomatiseerde installatie.\n"
+"De partitioneringsstap is de enige interactieve procedure.\n"
+"\n"
+" * \"%s\". Volledig geautomatiseerde installatie: de harde\n"
+"schijf wordt volledig overschreven en alle gegevens erop raken verloren.\n"
+"\n"
+" Deze mogelijkheid is erg handig wanneer u een grote hoeveelheid\n"
+"soortgelijke computers installeert. Zie ook de Auto-installatie afdeling op\n"
+"onze webstek voor meer informatie.\n"
+"\n"
+" * \"%s\"(*): slaat de pakketlijst op zoals geselecteerd\n"
+"in deze installatie. Om deze selectie bij een andere installatie\n"
+"te gebruiken, plaatst u de diskette in het diskettestation en start u het\n"
+"installatieprogramma. Bij het opstartscherm drukt u op de [F1]-toets en\n"
+"voert u ''linux defcfg=\"floppy\" '' in en drukt u op de [Enter]-toets.\n"
+"\n"
+"(*) U heeft hiervoor een FAT-geformatteerde diskette nodig. Om er één te\n"
+"maken onder GNU/Linux, typt u \"mformat a:\" of \"fdformat /dev/fd0\" \n"
+"gevolgd door \"mkfs.vfat /dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Auto-installatiediskette aanmaken"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Indien u kiest om enkele bestaande GNU/Linux-partities te hergebruiken, \n"
+"wenst u wellicht om enkele ervan opnieuw te formatteren en alle gegevens\n"
+"die erop staan te wissen. Om dit te doen, dient u de partities waar het\n"
+"om gaat ook te selecteren.\n"
+"\n"
+"Merk op dat het niet nodig is om alle reeds bestaande partities te\n"
+"herformatteren. U dient de partities waar het besturingssysteem op\n"
+"staat te herformatteren (zoals \"/\", \"/usr\" of \"/var\") maar u hoeft\n"
+"geen partities te herformatteren die gegevens bevatten die u wenst\n"
+"te bewaren (gewoonlijk \"/home\").\n"
+"\n"
+"Weest u alstublieft voorzichtig met het selecteren van partities. Na het\n"
+"formatteren zullen alle gegevens op de geselecteerde partities definitief\n"
+"verwijderd zijn, zonder herstelmogelijkheid.\n"
+"\n"
+"Klik op \"%s\" wanneer u klaar bent om de partities te formatteren.\n"
+"\n"
+"Klik op \"%s\" indien u een andere partitie voor uw nieuwe\n"
+"Mandriva Linux besturingssysteem wilt kiezen.\n"
+"\n"
+"Klik op \"%s\" indien u partities wenst te selecteren die op\n"
+"onleesbare blokken gecontroleerd moeten worden."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Op het moment dat u Mandriva Linux installeert, is het waarschijnlijk\n"
+"dat sommige pakketten herzien zijn sinds het moment dat het werd\n"
+"uitgebracht. Sommige onvolkomenheden kunnen gerepareerd zijn en\n"
+"beveiligingsproblemen opgelost. Om u te kunnen laten profiteren van\n"
+"deze herzieningen kunt u ze nu ophalen van het Internet.\n"
+"Kruis \"%s\" aan als u een werkende internetverbinding heeft, of \"%s\"\n"
+"als u liever later herziene pakketten installeert.\n"
+"\n"
+"Wanneer u \"%s\" kiest, verschijnt er een lijst van plaatsen op het web\n"
+"waar herzieningen van kunnen worden opgehaald. Kies degene waar\n"
+"u zich het dichtst bij in de buurt bevindt. Daarna verschijnt een\n"
+"pakketselectieboom: ga de selectie na en druk op \"%s\"\n"
+"om de geselecteerde pakket(ten) op te halen en te installeren, of\n"
+"op \"%s\" om af te breken."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Op dit punt bent u in de gelegenheid het gewenste beveiligingsniveau te\n"
+"kiezen voor deze computer. Als een vuistregel is aan te houden dat \n"
+"het beveiligingsniveau hoger ingesteld hoort te zijn als de computer\n"
+"cruciale gegevens bevat, of als hij direct is blootgesteld aan het\n"
+"internet. Een hoger beveiligingsniveau gaat meestal echter ten koste\n"
+"van gebruiksgemak.\n"
+"\n"
+"Als u niet weet wat te kiezen, behoudt u de standaard optie. U zult \n"
+"later nog in staat zijn het beveiligingsniveau te veranderen met het\n"
+"draksec-hulpprogramma vanuit het Mandriva Linux Configuratiecentrum.\n"
+"\n"
+"Vul in het \"%s\"-veld het e-mailadres in van de persoon die\n"
+"verantwoordelijk is voor de beveiliging. Beveiligingsmeldingen\n"
+"worden naar dat adres verstuurd."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Beveiligingsbeheerder"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Op dit punt dient u te kiezen welke partitie(s) gebruikt zullen worden voor\n"
+"de installatie van uw Mandriva Linux systeem. Indien er reeds partities\n"
+"gedefinieerd zijn, van een vorige GNU/Linux installatie of door een\n"
+"ander partitioneringsprogramma, kunt u bestaande partities gebruiken.\n"
+"In andere gevallen moeten er harde schijf-partities gedefinieerd worden.\n"
+"\n"
+"Om partities te creëren, dient u eerst een harde schijf te kiezen. U kunt "
+"de\n"
+"te partitioneren schijf selecteren door op \"hda\" te klikken voor de "
+"eerste\n"
+"IDE-schijf, \"hdb\" voor de tweede, \"sda\" voor de eerste SCSI-schijf\n"
+"enzovoort.\n"
+"\n"
+"Om de geselecteerde harde schijf te partitioneren, kunt u deze opties\n"
+"gebruiken:\n"
+"\n"
+" * \"%s\": deze optie verwijdert alle partities op de\n"
+"geselecteerde harde schijf.\n"
+"\n"
+" * \"%s\": deze optie creëert automatisch ext3- en swap-\n"
+"partities in de vrije ruimte op uw harde schijf.\n"
+"\n"
+" \"%s\": geeft toegang tot extra opties:\n"
+"\n"
+" * \"%s\": slaat de partitietabel op op een diskette. Nuttig om\n"
+"later zonodig de partitietabel te herstellen. Het is sterk aanbevolen deze "
+"stap uit\n"
+"te voeren.\n"
+"\n"
+" * \"%s\": deze optie stelt u in staat om een eerder opgeslagen\n"
+"partitietabel van diskette te herstellen.\n"
+"\n"
+" * \"%s\": indien uw partitietabel is beschadigd, kunt u hem\n"
+"trachten te herstellen met deze optie. Weest u voorzichtig en onthoudt dat\n"
+"dit niet altijd werkt.\n"
+"\n"
+" * \"%s\": gooit alle veranderingen weg en laadt de\n"
+"partitietabel die oorspronkelijk op de harde schijf stond.\n"
+"\n"
+" * \"%s\": het deselecteren van deze optie\n"
+"dwingt gebruikers om handmatig verwisselbare media zoals diskettes en\n"
+"CD-ROMs te koppelen en te ontkoppelen.\n"
+"\n"
+" * \"%s\": gebruik deze optie indien u een wizard wenst te gebruiken om\n"
+"uw harde schijf mee te partitioneren. Dit is aanbevolen als u geen brede "
+"kennis\n"
+"heeft over partitioneren.\n"
+"\n"
+" * \"%s\": gebruik deze optie om uw wijzigingen te annuleren.\n"
+"\n"
+" * \"%s\" laat extra handelingen toe op\n"
+"partities (type, opties, formaat) en geeft meer informatie over de schijf.\n"
+"\n"
+" * \"%s\": wanneer u klaar bent met het partitioneren van uw harde schijf, "
+"zal dit\n"
+"de wijzigingen wegschrijven naar schijf.\n"
+"\n"
+"Bij het definiëren van de partitiegrootte kunt u de grootte fijnafregelen\n"
+"met de pijltjestoetsen op uw toetsenbord.\n"
+"\n"
+"Merk op: u kunt iedere optie met behulp van het toetsenbord bereiken. "
+"Navigeer door\n"
+"de partities met behulp van [Tab] en [Omhoog/Omlaag] pijlen.\n"
+"\n"
+"Wanneer een partitie is geselecteerd, kunt u deze toetscombinaties "
+"gebruiken:\n"
+"\n"
+" * Ctrl+c om een nieuwe partitie te creëren (als een lege ruimte is "
+"geselecteerd)\n"
+"\n"
+" * Ctrl+d om een partitie te verwijderen\n"
+"\n"
+" * Ctrl+m om het koppelpunt in te stellen\n"
+"\n"
+"Voor meer informatie over de verschillende types bestandssystemen die er "
+"zijn,\n"
+"leest u het hoofdstuk 'ext2FS' van de ``Referentiehandleiding''.\n"
+"\n"
+"In het geval dat u op een PPC computer aan het installeren bent, zult u een "
+"kleine\n"
+"HFS \"bootstrap\"-partitie van tenminste 1MB willen creëren voor gebruik\n"
+"door de yaboot-opstartlader. Indien u liever de partitie wat groter maakt,\n"
+"zeg 50MB, dan vindt u het misschien een nuttige plek om een reserve kernel-\n"
+"en ramdisk beeldbestand in op te slaan voor opstart-noodgevallen."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Automatische koppeling van verwisselbare media"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Normale/expert-modus"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Er is meer dan één Microsoft-partitie op uw harde schijf gevonden.\n"
+"Kiest u degene die u wilt verkleinen om uw nieuwe Mandriva Linux\n"
+"besturingssysteem te kunnen installeren.\n"
+"\n"
+"Elke partitie wordt getoond als volgt: \"Linux naam\", \"Windows naam\"\n"
+"\"Capaciteit\".\n"
+"\n"
+"\"Linux naam\" is gestructureerd: \"harde schijf-type\", \n"
+"\"harde schijf-teken\", \"partitienummer\" (bijvoorbeeld \"hda1\").\n"
+"\n"
+"\"Harde schijf-type\" is \"hd\" indien uw harde schijf een IDE-schijf is en\n"
+"\"sd\" indien het een SCSI-schijf is.\n"
+"\n"
+"\"Harde schijf-teken\" is altijd een letter na \"hd\" of \"sd\". Bij IDE-\n"
+"harde schijven:\n"
+"\n"
+" * \"a\" betekent \"master harde schijf op de primaire IDE controller\",\n"
+"\n"
+" * \"b\" betekent \"slave harde schijf op de primaire IDE controller\",\n"
+"\n"
+" * \"c\" betekent \"master harde schijf op de secundaire IDE controller\",\n"
+"\n"
+" * \"d\" betekent \"slave harde schijf op de secundaire IDE controller\".\n"
+"\n"
+"Bij SCSI harde schijven betekent een \"a\" \"laagste SCSI ID\", een \"b\" "
+"\"op één na laagste SCSI ID\", enzovoort.\n"
+"\n"
+"\"Windows naam\" is de letter van uw harde schijf onder Windows (de\n"
+"eerste schijf of partitie wordt \"C:\" genoemd)."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": de huidige landselectie nagaan. Indien u zich niet in dit land\n"
+"bevindt, klik dan op de \"%s\"-knop en kies een ander land. Als uw land niet "
+"in de getoonde lijst staat, klik dan op de \"%s\"-knop om de complete\n"
+"landenlijst op te vragen."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Deze stap activeert slechts wanneer een bestaande GNU/Linux-partitie\n"
+"gevonden is op uw computer.\n"
+"\n"
+"Nu is het noodzakelijk dat u aangeeft of u een nieuwe installatie\n"
+"of een opwaardering van een bestaand Mandriva Linux-systeem\n"
+"wilt uitvoeren:\n"
+"\n"
+" * \"%s\". Dit verwijdert het oude systeem vrijwel volledig.\n"
+"Afhankelijk van uw partitionering, kunt u echter voorkomen dat\n"
+"een gedeelte van uw gegevens (met name \"home\"-directory's) \n"
+"worden overschreven. \n"
+"Indien u de partitionering van uw harde schijven wilt wijzigen, of het\n"
+"bestandssysteem wenst te wijzigen, dan dient u deze optie te kiezen.\n"
+"\n"
+" * \"%s\". Deze installatieklasse stelt u in staat de pakketten\n"
+"die momenteel op uw Mandriva Linux-systeem zijn geïnstalleerd te verversen.\n"
+"Uw huidige partitioneringsschema en gebruikersgegevens worden niet\n"
+" veranderd. De meeste andere configuratiestappen blijven beschikbaar,\n"
+"zoals bij een gewone installatie.\n"
+"\n"
+"Het gebruik van de ``Opwaardering''-optie zou prima moeten werken op\n"
+"Mandriva Linux versie \"8.1\" of recenter. Het uitvoeren van een\n"
+"opwaardering op versies eerder dan Mandriva Linux versie \"8.1\" is "
+"afgeraden."
+
+# Extra stukje toegevoegd over Nederlandse layout
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Afhankelijk van de taal die u heeft gekozen, selecteert DrakX automatisch\n"
+"een bepaalde toetsenbordindeling. Ga na of de geselecteerde indeling u "
+"bevalt, en zoniet kies dan een andere toetsenbordindeling.\n"
+"\n"
+"Merk op dat de getoonde lijst toetsenbordindelingen bevat, en geen talen.\n"
+"Wanneer u in Nederland woont, heeft u waarschijnlijk een toetsenbord van "
+"het\n"
+"type \"VS (internationaal)\". Toetsenborden met een \"Nederlandse\" "
+"indeling\n"
+"komen niet veel voor. Het kan ook zijn dat u een Nederlands sprekende "
+"inwoner\n"
+"van België bent en gebruik maakt van een toetsenbord met Franse indeling.\n"
+"Deze installatiestap zorgt ervoor dat u in alle gevallen de juiste\n"
+"toetsenbordindeling kunt kiezen.\n"
+"\n"
+"Klik op de \"%s\"-knop om de complete lijst van ondersteunde\n"
+"toetsenbordindelingen te zien.\n"
+"\n"
+"Als u een toetsenbordindeling kiest welke gebaseerd is op een niet-Latijns\n"
+"alfabet, zal het volgende dialoogvenster u vragen om de toetscombinatie\n"
+"te kiezen die zal schakelen tussen de Latijn- en niet-Latijnse indelingen."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"De eerste stap is het kiezen van uw voorkeurstaal.\n"
+"\n"
+"Uw taalkeuze beïnvloedt de taal van de documentatie, het\n"
+"installatieprogramma en het systeem in het algemeen. Selecteer eerst\n"
+"de regio waarin u zich bevindt, en daarna de taal die u spreekt.\n"
+"\n"
+"Door te klikken op de \"%s\"-knop kunt u andere talen selecteren\n"
+"die op uw werkstation geïnstalleerd moeten worden. Het selecteren van\n"
+"andere talen zal de taalspecifieke bestanden voor systeemdocumentatie\n"
+"en toepassingen installeren. Als u bijvoorbeeld gastheer bent voor Spaanse\n"
+"gebruikers op uw machine, selecteert u Nederlands als eerste taal in het\n"
+"boom-overzicht en in de Geavanceerd-afdeling selecteert u \"%s\".\n"
+"\n"
+"Over UTF-8 (unicode)-ondersteuning: Unicode is een nieuwe tekencodering\n"
+"bedoeld om alle bestaande geschreven talen te omvatten. Volledige\n"
+"GNU/Linux-ondersteuning ervoor is echter nog in ontwikkeling.\n"
+"Daarom gebruikt Mandriva Linux het al dan niet, afhankelijk van de keuze\n"
+"van de gebruiker:\n"
+"\n"
+" * Indien u talen kiest met een sterke coderingstraditie (latin1\n"
+"talen, Russisch, Japans, Chinees, Koreaans, Thais, Grieks, Turks, meeste\n"
+"iso-8859-2 talen), dan wordt de gebruikelijke codering in eerste instantie\n"
+"gebruikt;\n"
+"\n"
+" * Andere talen gebruiken standaard Unicode;\n"
+"\n"
+" * Als twee of meer talen vereist zijn, en deze talen gebruiken niet \n"
+"dezelfde codering, dan wordt Unicode voor het hele systeem gebruikt;\n"
+"\n"
+" * Tenslotte, Unicode kan ook op aanvraag van de gebruiker voor het hele\n"
+"systeem worden afgedwongen door de optie \"%s\" te selecteren onafhankelijk\n"
+"van welke ta(a)l(en) u gekozen heeft.\n"
+"\n"
+"Merk op dat er geen beperking is in het aantal extra uit te kiezen talen.\n"
+"U kunt er meerdere kiezen of ze zelfs allemaal installeren door het \"%s\"\n"
+"vakje aan te kruisen. Ondersteuning voor een taal selecteren betekent dat\n"
+"vertalingen, lettertypen, spellingscontrole etc. ook voor die taal zullen\n"
+"worden geïnstalleerd.\n"
+"\n"
+"Om te schakelen tussen de diverse talen die op uw computer zijn\n"
+"geïnstalleerd, kunt u de opdracht \"localedrake\" uitvoeren\n"
+"als \"root\" om de taal voor het gehele systeem te veranderen.\n"
+"Het uitvoeren van deze opdracht als een gewone gebruiker zal slechts\n"
+"de taalinstellingen voor die individuele gebruiker veranderen."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Spaans"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Normaal gesproken ziet DrakX vanzelf het aantal knoppen op uw muis.\n"
+"Zoniet, dan neemt het aan dat u een tweeknops-muis heeft en\n"
+"zal deze instellen voor het nadoen van een derde knop. De derde\n"
+"muisknop van een tweeknopsmuis kan worden ``ingedrukt'' door\n"
+"tegelijkertijd de linker- en rechterknop te klikken.\n"
+"DrakX zoekt zelf uit of dit een PS/2-, seriële- of USB-muis is.\n"
+"\n"
+"Mocht u in het bezit zijn van een 3-knopsmuis zonder wieltje, dan kunt u\n"
+"de muis kiezen waarbij \"%s\" staat. Het installatieprogramma \n"
+"configureert uw muis dan zodanig dat u het wieltje kunt simuleren: om dit\n"
+"te doen, drukt u de middelste knop in en beweegt u de muis op en neer.\n"
+"\n"
+"Indien u een ander type muis wenst te specificeren, selecteer dan het\n"
+"gewenste type uit de getoonde lijst.\n"
+"\n"
+"U kunt het item \"%s\" selecteren om een ``algemeen'' muistype te kiezen\n"
+"dat met bijna alle muizen zal werken.\n"
+"Indien u een andere muis kiest dan de standaardmuis, zult u een muis-\n"
+"testscherm te zien krijgen. Gebruik de knoppen en het wieltje om te\n"
+"controleren dat de instellingen goed zijn en dat de muis goed werkt.\n"
+"Als de muis niet correct werkt, druk dan op de spatiebalk of de [Enter]-\n"
+"toets om de test te annuleren en terug te gaan naar de keuzelijst.\n"
+"\n"
+"Af en toe worden wielmuizen niet automatisch gevonden, dus dan dient u uw\n"
+"muis te selecteren uit de lijst. Zorg ervoor dat u degene kiest die\n"
+"correspondeert met de poort waaraan de muis verbonden is. Nadat u\n"
+"de muis geselecteerd heeft en op de \"%s\"-knop heeft geklikt,\n"
+"wordt een afbeelding van een muis op het scherm weergegeven. U dient dan\n"
+"het wieltje van uw muis te bewegen om uzelf ervan te verzekeren dat het\n"
+"correct geactiveerd is. Zodra u het muiswieltje beweegt, zult u het\n"
+"schermwieltje zien meebewegen. Test de knoppen en ga na dat de muispijl\n"
+"over het scherm beweegt wanneer u uw muis beweegt."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "met wiel-emulatie"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Universeel | Iedere PS/2 & USB-muis"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Gelieve de juiste poort te kiezen. COM1 onder Windows wordt bijvoorbeeld\n"
+"\"ttyS0\" genoemd onder GNU/Linux."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Dit is de meest cruciale beslissing voor de beveiliging van uw GNU/Linux\n"
+"systeem: u dient het \"root\"-wachtwoord in te voeren. \"Root\" is de\n"
+"systeembeheerder en is de enige die geautoriseerd is om vernieuwingen uit\n"
+"te voeren, gebruikers toe te voegen, de algehele systeemconfiguratie te\n"
+"wijzigen, enzovoort. Kortom, \"root\" kan alles doen! Daarom dient u een\n"
+"lastig te raden wachtwoord te kiezen - DrakX vertelt het u als het te \n"
+"makkelijk is. Zoals u kunt zien is het niet verplicht een wachtwoord in te\n"
+"vullen, maar dit raden wij sterk af. GNU/Linux is net zo gevoelig voor\n"
+"bedieningsfouten als andere besturingssystemen.\n"
+"Omdat \"root\" alle beperkingen kan overschrijden en onbedoeld alle\n"
+"gegevens op partities kan wissen door achteloos deze partities te\n"
+"benaderen, is het belangrijk dat het lastig is om \"root\" te worden.\n"
+"\n"
+"Het wachtwoord behoort een mix van alfanumerieke tekens te zijn en\n"
+"tenminste 8 tekens lang. Schrijf nooit het \"root\"-wachtwoord op -\n"
+"dat maakt het te makkelijk om een systeem te compromitteren.\n"
+"\n"
+"Het addertje onder het gras: maak ook het wachtwoord niet te lang of\n"
+"gecompliceerd omdat u het moet kunnen onthouden!\n"
+"\n"
+"Het wachtwoord zal niet op het scherm getoond worden wanneer u het\n"
+"intypt. Vandaar dat u het wachtwoord tweemaal moet intypen om de kans\n"
+"te verminderen dat u een typfout maakt. Indien u toevallig dezelfde typfout\n"
+"twee keer maakt, dan zal dit ``incorrecte'' wachtwoord gebruikt moeten\n"
+"worden bij de eerste keer dat u zich aanmeldt als \"root\".\n"
+"\n"
+"Indien u wenst dat de toegang tot deze computer gecontroleerd wordt door\n"
+"een aanmeldingscontrole-server, klik dan op de \"%s\"-knop.\n"
+"\n"
+"Indien uw netwerk LDAP, NIS, of PDC Windows domeinaanmeldingscontrole-\n"
+"diensten gebruikt, selecteer dan de overeenkomende optie\n"
+"als \"%s\". In het geval dat u niet weet welke te kiezen,\n"
+"raadpleeg dan uw netwerkbeheerder.\n"
+"\n"
+"Mocht u het lastig vinden wachtwoorden te onthouden, als uw computer\n"
+"nooit verbonden zal zijn met het internet of als u absoluut iedereen\n"
+"vertrouwt die toegang heeft tot uw computer, kunt u kiezen voor \"%s\"."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "aanmeldingscontrole"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Een opstartlader is een klein programmaatje dat door de computer gestart\n"
+"wordt tijdens het opstarten. Het is verantwoordelijk voor het opstarten\n"
+"van het hele systeem. Normaal gesproken gaat de installatie van de\n"
+"opstartlader volkomen automatisch. Het installatieprogramma analyseert de\n"
+"bootsector van de schijf handelt naar bevind van zaken:\n"
+"\n"
+" * als een Windows-bootsector is gevonden, dan zal het deze vervangen door "
+"een GRUB/LILO bootsector. Op deze manier zult u de mogelijkheid hebben om "
+"ofwel GNU/Linux te starten, ofwel een ander besturingssysteem.\n"
+"\n"
+" * als een GRUB- of LILO-bootsector is gevonden, dan zal het deze vervangen "
+"door een nieuwe.\n"
+"\n"
+"Wanneer het installatieprogramma niet kan bepalen waar de bootsector "
+"geplaatst moet worden dan zal DrakX u vragen waar de\n"
+"opstartlader terecht moet komen. In het algemeen is \"%s\" de\n"
+"veiligste locatie. Met de keuze \"%s\" wordt er in het geheel geen \n"
+"opstartlader geïnstalleerd. Gebruik dit alleen als u weet wat u doet."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Het is nu tijd een afdruksysteem voor uw computer te selecteren. Andere\n"
+"besturingssystemen geven u er wellicht maar één, maar Mandriva Linux\n"
+"biedt er twee. Elk van deze afdruksystemen is het meest geschikt voor\n"
+"bepaalde typen configuraties.\n"
+"\n"
+" * \"%s\" - een afkorting van \"print, do not queue\", is de keuze indien\n"
+"u een directe verbinding tussen uw computer en uw printer heeft en u\n"
+"in staat wilt zijn om printtaken snel te stoppen in het geval van\n"
+"papierstoringen en u niet beschikt over netwerkprinters. (\"%s\" kan\n"
+"alleen omgaan met erg simpele netwerkprinttaken en is enigszins\n"
+"langzaam wanneer gebruikt in een netwerk.) \"pdq\" is de aanbevolen keuze\n"
+"als dit uw eerste kennismaking met GNU/Linux is.\n"
+"\n"
+" * \"%s\" staat voor ``Common Unix Printing System'' en is uitstekend \n"
+"geschikt om naar uw lokale printer af te drukken maar ook naar eentje aan\n"
+"de andere kant van de planeet. Het is eenvoudig te configureren en kan\n"
+"dienstdoen als een server of een client voor het antieke \"lpd\"\n"
+"afdruksysteem, zodat het overweg kan met oudere besturingssystemen\n"
+"die wellicht afdrukdiensten vereisen. Alhoewel het behoorlijk krachtig is,\n"
+"is de basisinstallatie bijna net zo eenvoudig als \"pdq\". In het geval dat\n"
+"u een \"lpd\"-server-emulatie nodig heeft, dient u de \"cups-lpd\"-"
+"voorziening\n"
+"in te schakelen. \"%s\" biedt grafische schillen voor het afdrukken en\n"
+"het beheren van de printer.\n"
+"\n"
+"Wanneer u nu een keuze maakt en er later achter komt dat uw afdruksysteem\n"
+"u niet bevalt dan kunt u het veranderen door PrinterDrake uit te voeren\n"
+"vanuit het Mandriva Linux Configuratiecentrum en op de \"%s\"-knop te "
+"klikken."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Expert"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX zal om te beginnen zoeken naar IDE-apparaten die in uw\n"
+"computer aanwezig zijn. Het zal tevens zoeken naar één of meer PCI\n"
+"SCSI-kaart(en) in uw systeem. Als een SCSI-kaart gevonden is, zal\n"
+"DrakX automatisch het geschikte stuurprogramma installeren.\n"
+"\n"
+"Omdat hardware-bespeuring niet altijd gegarandeerd foutloos werkt,\n"
+"is het mogelijk dat DrakX uw harde schijven niet vindt. In dat geval\n"
+"zult u uw apparatuur handmatig moeten specificeren.\n"
+"\n"
+"In het geval dat u handmatig uw PCI SCSI-adapter heeft moeten specificeren,\n"
+"zal DrakX u vragen of u er opties aan wilt meegeven. Staat u DrakX toe om\n"
+"de apparatuur na te gaan voor kaartspecifieke opties die nodig zijn om de\n"
+"adapter te initialiseren. In de meeste gevallen zal DrakX deze stap\n"
+"probleemloos doorlopen.\n"
+"\n"
+"Als DrakX niet in staat is om automatisch te onderzoeken welke opties\n"
+"doorgegeven moeten worden aan de apparatuur, zult u handmatig het\n"
+"stuurprogramma moeten configureren."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": als een geluidskaart op uw computer gevonden is, dan staat\n"
+"dat hier weergegeven. In het geval dat de weergegeven geluidskaart niet\n"
+"degene is die daadwerkelijk aanwezig is in uw computer, dan kunt u op de\n"
+"knop klikken en een ander stuurprogramma kiezen."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Bij wijze van overzicht zal het installatieprogramma een lijstje tonen\n"
+"van de informatie die het heeft over uw computer.\n"
+"Afhankelijk van welke apparatuur u heeft, krijgt u enkele of alle van de\n"
+"onderstaande punten te zien. Elk punt bestaat uit het te configureren item,\n"
+"gevolgd door een korte samenvatting van de huidige configuratie. Klik op\n"
+"de corresponderende \"%s\"-knop om die aan te passen.\n"
+"\n"
+" * \"%s\": de huidige toetsenbordindeling nagaan en zonodig\n"
+"aanpassen.\n"
+" * \"%s\": de huidige landselectie nagaan. Indien u zich niet in dit\n"
+"land bevindt, klik dan op de \"%s\"-knop om een ander land te\n"
+"kiezen. Als uw land niet in de eerste getoonde lijst staat, klik dan op\n"
+"de \"%s\"-knop om de complete landenlijst te zien.\n"
+"\n"
+" * \"%s\": Normaal gesproken leidt DrakX uw tijdzone af aan de hand\n"
+"van het land dat u gekozen heeft. U kunt op de \"%s\" knop\n"
+"drukken als dit incorrect is.\n"
+"\n"
+" * \"%s\": de huidige muisconfiguratie nagaan. Zonodig kunt u op de knop "
+"klikken om hem aan te passen.\n"
+"\n"
+" * \"%s\": klikken op de \"%s\"-knop zal de\n"
+"printerconfiguratie-wizard openen. Raadpleeg het corresponderende\n"
+"hoofdstuk van de ``Beginnershandleiding'' voor meer informatie over\n"
+"hoe u een nieuwe printer instelt. De in onze handleiding getoonde interface\n"
+"lijkt op degene die tijdens de installatie gebruikt wordt.\n"
+"\n"
+" * \"%s\": indien een geluidskaart gevonden is op uw systeem,\n"
+"wordt dat hier weergegeven. In het geval dat de aangegeven geluidskaart\n"
+"niet degene is die daadwerkelijk aanwezig is in uw computer, dan kunt u\n"
+"op deze knop klikken en een ander stuurprogramma uitkiezen.\n"
+"\n"
+" * \"%s\": mocht u in het bezit zijn van een TV-kaart, dan staat hier\n"
+"de informatie over de configuratie ervan. Wanneer u een TV-kaart heeft\n"
+"die niet gevonden is, klik dan op \"%s\" om een poging te doen om hem\n"
+"handmatig te configureren.\n"
+"\n"
+" * \"%s\": u kunt op \"%s\" klikken om de met de kaart geassocieerde \n"
+"parameters te wijzigen, als u denkt dat de configuratie verkeerd is.\n"
+"\n"
+" * \"%s\": normaal gesproken configureert DrakX uw\n"
+" grafische interface in een resolutie van \"800x600\" of \"1024x768\".\n"
+"Indien daarmee niet tevreden bent, klik dan op de \"%s\"-knop\n"
+"om uw grafische interface te herconfigureren.\n"
+"\n"
+" * \"%s\": Als u uw internettoegang of toegang tot het lokale\n"
+"netwerk wilt instellen, kunt u dat nu doen. Raadpleeg de gedrukte\n"
+"documentatie of gebruik het Mandriva Linux Configuratiecentrum nadat\n"
+"de installatie klaar is om te profiteren van volledige on-line hulp.\n"
+"\n"
+" * \"%s\": stelt u in staat HTTP- en FTP-proxy adressen te configureren\n"
+"als de computer waarop u installeert achter een proxyserver komt te staan.\n"
+"\n"
+" * \"%s\": dit item biedt u de mogelijkheid het beveiligingsniveau\n"
+"ingesteld in een eerdere stap opnieuw te definiëren.\n"
+"\n"
+" * \"%s\": indien u van plan bent uw computer te verbinden met het\n"
+"Internet dan is het een goed idee om uzelf te beschermen tegen indringers\n"
+"door een firewall op te zetten. Raadpleeg het corresponderende hoofdstuk\n"
+"uit de ``Beginnershandleiding'' voor details over de firewall-instellingen.\n"
+"\n"
+" * \"%s\": indien u uw opstartlader-configuratie wenst te \n"
+"veranderen, klikt u op deze knop. Alleen aankomen als u een gevorderde\n"
+"gebruiker bent. Raadpleeg de gedrukte documentatie of de on-line hulp\n"
+"over de configuratie van een opstartlader in het Mandriva Linux \n"
+"Configuratiecentrum.\n"
+" * \"%s\": U bent hier in staat om de diensten die op uw computer\n"
+"actief zullen zijn, fijn af te regelen. Indien u deze computer als server\n"
+"gaat inzetten dan is het een goed idee om deze instellingen na te lopen."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Interne ISDN kaart"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Grafische interface"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Kies de harde schijf die u wilt wissen om uw nieuwe Mandriva Linux-\n"
+"partitie op te installeren. Wees voorzichtig, alle gegevens die\n"
+"op deze schijf staan zullen verloren gaan, en niet terug te halen zijn!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Klik op \"%s\" wanneer u alle gegevens en partities die zich \n"
+"op deze harde schijf bevinden, wilt wissen. Wees voorzichtig, want na het\n"
+"klikken op \"%s\" zult u niet in staat zijn om enige op de schijf\n"
+"aanwezige gegevens of partities terug te halen, met inbegrip van alle "
+"Windows-gegevens.\n"
+"\n"
+"Klik op \"%s\" om deze operatie te stoppen zonder daarbij \n"
+"gegevens of partities op de schijf te verliezen."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Volgende ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Vorige"
+
diff --git a/perl-install/install/help/po/nn.po b/perl-install/install/help/po/nn.po
new file mode 100644
index 000000000..5a5b0342d
--- /dev/null
+++ b/perl-install/install/help/po/nn.po
@@ -0,0 +1,1654 @@
+# Translation of nn to Norwegian Nynorsk
+# Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
+# Karl Ove Hufthammer <karl@huftis.org>, 2004, 2005, 2006.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: nn\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2006-01-13 19:46+0100\n"
+"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
+"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Du bør lesa vilkåra i lisensavtala nøye før du eventuelt held fram.\n"
+"Avtala dekkjer heile Mandriva Linux-distribusjonen. Kryss av for\n"
+"«%s» berre viss du er einig i alle vilkåra. Elles vil «%s»-knappen\n"
+"starta maskina på nytt."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux er eit fleirbrukarsystem, der kvar brukar har sine eigne "
+"innstillingar\n"
+"og filer. Sjå «Starter Guide» for meir informasjon om fleirbrukarsystem. Men "
+"i\n"
+"motsetning til «root», som er systemadministratoren, kan ikkje brukarar du "
+"legg\n"
+"til no endra noko anna enn sine eigne filer og oppsett. Dette vernar "
+"systemet mot\n"
+"utilsikta eller vondsinna skadelege endringar frå brukarane.\n"
+"\n"
+"Du må laga minst éin vanleg brukarkonto for deg sjølv, og det er denne som "
+"er\n"
+"meint for dagleg bruk. Sjølv om det er veldig lett å logga inn som «root», "
+"og gjera\n"
+"kva som helst der, er det òg veldig farleg! Ein enkelt feil kan gjera at "
+"systemet\n"
+"ikkje lenger fungerer. Det verste som kan skje om du gjer ein alvorleg feil "
+"som vanleg\n"
+"brukar, er at du mistar noko data, men dette går då ikkje utover heile "
+"systemet.\n"
+"\n"
+"Første feltet spør etter heile namnet ditt. Dette er sjølvsagt ikkje "
+"obligatorisk, og\n"
+"du kan skriva inn kva du måtte ønskja. Første ord du skriv inn vert kopiert "
+"til\n"
+"«%s»-feltet, som er brukarnamnet brukaren skal bruka for å logga på "
+"systemet.\n"
+"Du kan òg endra dette brukarnamnet, om du ønskjer.\n"
+"\n"
+"Neste steg er å velja eit passord. Frå eit tryggleikssynspunkt er ikkje "
+"passordet til\n"
+"ein vanleg brukar like viktig som «root»-passordet, men du bør likevel ikkje "
+"gjera\n"
+"det for lett å gjetta, eller la det stå tomt. Det er filene dine passordet "
+"er meint å verna.\n"
+"\n"
+"Du har trykt på «%s», kan du leggja til andre brukarar. Legg for eksempel "
+"til éin\n"
+"brukar for kvar av vennane dine, far din, søster di, og så vidare. Trykk «%"
+"s» når\n"
+"du er ferdig å leggja til brukarar.\n"
+"\n"
+"Du kan velja standardskal (bash er standard) ved å trykkja «%s».\n"
+"\n"
+"Når du er ferdig med å leggja til brukarar, vert du spurd om å velja ein "
+"brukar som\n"
+"automatisk vert logga på systemet når maskina startar opp. Om du ønskjer å\n"
+"bruka denne funksjonen (og er lite opptatt av lokal tryggleik), kan du velja "
+"brukar\n"
+"og vindaugsbehandlar, og så trykkja «%s». Om du ikkje ønskjer å ha bruka "
+"denne\n"
+"funksjonen, så fjern merket for «%s»."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Ønskjer du å bruka denne funksjonen?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Her er ei oversikt over Linux-partisjonar på harddisken. Du bør vanlegvis\n"
+"bruka vala gjort her, då dei er gode for dei fleste maskinoppsett. Men viss\n"
+"du gjer endringar, må du hugsa å definera ein rotpartisjon («/»). Ikkje lag "
+"han\n"
+"så liten at du ikkje kan installera all programvara du treng. Om du ønskjer\n"
+"å lagra filene dine på ein annan partisjon, må du òg laga ein «/home»-"
+"partisjon\n"
+"(berre mogleg om du har meir enn éin Linux-partisjon tilgjengeleg).\n"
+"\n"
+"Følgjande vert vist for kvar partisjon: «namn», «kapasitet».\n"
+"\n"
+"«Namn» er ordna slik: «harddisktype», «harddisknummer»,\n"
+"«partisjonsnummer» (eks. «hda1»).\n"
+"\n"
+"«Harddisktype» er «hd» viss harddisken er ein IDE-harddisk, og\n"
+"«sd» viss han er ein SCSI-harddisk.\n"
+"\n"
+"«Harddisknummer» er alltid ein bokstav etter «hd» eller «sd». For\n"
+"IDE-harddiskar:\n"
+"\n"
+" – «a» tyder «hovudharddisk på første IDE-kontrollar».\n"
+" \n"
+" – «b» tyder «slaveharddisk på første IDE-kontrollar».\n"
+" \n"
+" – «c» tyder «hovudharddisk på andre IDE-kontrollar».\n"
+" \n"
+" – «c» tyder «slaveharddisk på andre IDE-kontrollar».\n"
+" \n"
+" Med SCSI-harddiskar tyder «a» lågaste SCSI-ID, og «b»\n"
+" nest lågaste SCSI-ID, og så vidare."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linux-distribusjonen ligg fordelt på fleire plater. Viss ein pakke "
+"ligg på ei anna plate, vert du automatisk bedt om å setja ho i. Berre trykk "
+"«%s» om du ikkje har denne plata. Dei aktuelle pakkane vert då ikkje "
+"installerte."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Det må no velja kva program du ønskjer å installera på maskina. Det finst\n"
+"tusenvis av programpakkar for Mandriva Linux, og desse er her ordna i "
+"grupper.\n"
+"\n"
+"Pakkane er grupperte i fire kategoriar, men du kan velja program frå alle\n"
+"kategoriane, så eit «Arbeidsstasjon»-system kan godt ha program frå\n"
+" «Tenar»-kategorien.\n"
+"\n"
+" – «%s»: Om du har tenkt å bruka maskina som ein arbeidsstasjon, vel éi\n"
+"eller fleire av gruppene i arbeidsstasjonskategorien.\n"
+"\n"
+" – «%s»: Om du har tenkt å bruka maskina for programmering, vel dei gruppene "
+"du ønskjer i programmeringskategorien. «LSB»-gruppa vil prøva\n"
+"å setja opp systemet i samsvar med «Linux Standard Base»-standarden.\n"
+"\n"
+" Vel du «LSB»-gruppa vert lg 2.4-kjernen og ikkje 2.6-kjernen installert.\n"
+"Dette er for å sikra 100 %% samsvar med LSB. Men sjølv om du ikkje vel\n"
+"«LSB»-gruppa vil du framleis ha eit system som er nesten 100 %% i samsvar\n"
+"med denne standarden.\n"
+"– «%s»: Om du har tenkt å bruka maskina som ein tenar, vel dei av tenestene\n"
+"du ønskjer å installera på maskina.\n"
+"\n"
+" – «%s»: Det er her du vel det grafiske skrivebordsmiljøet du vil ha. Du må\n"
+"velja minst eitt for at å ha det grafiske grensesnittet tilgjengeleg.\n"
+"\n"
+"Om du plasserer peikaren over eit gruppenamn, vert det vist ei kort\n"
+"forklaring for den gruppa.\n"
+"\n"
+"Du kan kryssa av for «%s» om du kjenner til pakkane, eller av annan grunn\n"
+"ønskjer full kontroll over kva som vert installert.\n"
+"\n"
+"Om du starta installasjonen i «%s»-modus, kan du fjerna alle grupper, for\n"
+"å unngå installera nye pakkar. Dette er nyttig for å reparera eller "
+"oppgradera\n"
+"eit system.\n"
+"\n"
+"Om du fjernar alle gruppene ved ei vanleg installering (ikkje\n"
+"ei oppgradering), vert du spurd om kva type minimal installering du "
+"ønskjer:\n"
+"\n"
+" – «%s»: Installer minst mogleg pakkar for å ha eit grafisk skrivebord.\n"
+"\n"
+" – «%s»: Installer grunnsystemet, pluss grunnverktøya og hjelpetekst for\n"
+"desse. Dette oppsettet passar for tenarar.\n"
+"\n"
+" – «%s»: Installer absolutt minst mogleg pakkar for eit fungerande Linux-\n"
+"system. Du vil då berre få eit kommandolinjegrensesnitt. Total storleik for\n"
+"dette valet er rundt 65 MiB."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Oppgrader"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Med grunnleggjande hjelpetekstar"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Heilt minimal installasjon"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Viss du vil velja kva einskildpakkar du vil installera sjølv, får du ei\n"
+"oversikt over alle pakkar, delt inn i grupper og undergrupper. Du kan\n"
+"velja å installera heile grupper, undergrupper eller einskildpakkar.\n"
+"\n"
+"Du vil sjå ei kort pakkeskildring til høgre når du vel ein pakke.\n"
+"\n"
+"!! Viss du har valt å installera ein tenarpakke, anten direkte, eller som "
+"del\n"
+"av ei gruppe, vert du bedt om å stadfesta at du verkeleg vil installera "
+"han.\n"
+"Som standard vert alle installerte tenester starta automatisk ved oppstart.\n"
+"Sjølv om tenarane ikkje hadde nokon kjente tryggleikshol når distribusjonen\n"
+"vart laga, er det mogleg at at nye hol er oppdaga no. Om du ikkje veit kva\n"
+"ei teneste er der for, trykk «%s». Trykkjer du «%s» vert tenestene "
+"installerte,\n"
+"og automatisk starta ved oppstart. !!\n"
+"\n"
+"«%s»-valet er brukt for å slå av åtvaringa som du får når installasjons-\n"
+" programmet automatisk vel ein pakke for å ordna opp i avhengnader.\n"
+"Nokre pakkar er avhengige av kvarandre, sånn at du må installera éin\n"
+"særskild pakke før du kan installera ein annan. Dette kan installasjons-\n"
+"programmet ordna opp i sjølv, heilt automatisk.\n"
+"\n"
+"Du kan henta inn ei ferdiglaga pakkeliste ved å trykkja på det litle\n"
+"diskettikonet nedt i lista. Dette er nyttig viss du har mange maskiner som\n"
+"du vil installera dei same programma på. Sjå det andre tipset i siste\n"
+"installasjonssteg for meir informasjon om korleis du lagar ei slik "
+"pakkeliste."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Automatisk avhengnadshandtering"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"«%s»: Trykk «%s» for å opna vegvisaren for skrivaroppsett. Sjå\n"
+"brukarrettleiinga for meir informasjon om oppsett av skrivarar. "
+"Brukargrensesnittet\n"
+"vist der liknar på det brukt ved installering."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"No kan du velja kva tenester du vil starta ved oppstart.\n"
+"\n"
+"Her er ei oversikt over alle tenestene som er tilgjengeleg under denne\n"
+"installasjonen. Sjå nøye gjennom lista, og kryss vekk dei du ikkje treng.\n"
+"\n"
+"Trykk på ei teneste for å sjå ei kort skildring av ho. Om du ikkje veit\n"
+"om du treng ei teneste eller ikkje, bør du la standardinnstillinga vera.\n"
+"\n"
+"!! Ver veldig forsiktig om du ønskjer å bruka maskina som tenar. Du bør\n"
+"ikkje starta tenester du ikkje er heilt sikker på at du treng. Hugs at "
+"fleire\n"
+"av tenestene kan vera farlege om dei køyrer på ein tenar.!!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux handterer klokka internt etter GMT (Greenwich Mean Time), men\n"
+"viser ho etter den tidssona du sjølv vel. Men om klokka på hovudkortet "
+"heller\n"
+"er sett til lokaltid, kan du slå av denne funksjonen ved å trykkja «%s». "
+"Dette\n"
+"er nyttig om maskina køyrer andre operativsystem i tillegg, som Windows™.\n"
+"\n"
+"«%s»-valet stiller automatisk klokka etter ein tidstenar over Internett.\n"
+"Du må ha eit Internett-samband for at dette skal fungera. Du bør velja\n"
+"ein tenar som ligg geografisk nær deg. Valet installerer faktisk ein "
+"tidstenar\n"
+"som andre maskiner på lokalnettet òg kan bruka."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Automatisk tidssynkronisering"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Skjermkort\n"
+"\n"
+"Installasjonsprogrammet klarar vanlegvis å finna ut kva skjermkort du har,\n"
+"og å setja dette opp automatisk. Men viss dette ikkje går, kan du velja "
+"kortet\n"
+"sjølv frå denne oversikta.\n"
+"\n"
+"Viss det finst tenarar med og utan 3D-akselerasjon for skjermkortet ditt,\n"
+"kan du velja tenaren som passar best for deg."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X er hjarta i det grafiske grensesnittet til GNU/Linux, og alle dei "
+"grafiske\n"
+"skrivebordsmiljøa (KDE, GNOME, AfterStep, WindowsMaker, med fleire)\n"
+"som følgjer med Mandriva Linux avheng av X.\n"
+"\n"
+"Du vil sjå ei liste over forskjellige innstillingar til det grafiske "
+"oppsettet:\n"
+"\n"
+"Skjermkort\n"
+"\n"
+" Installasjonsprogrammet vil vanlegvis finna og setja opp skjermkortet på\n"
+"maskina di automatisk, men du kan òg velja kortet frå lista sjølv.\n"
+"\n"
+" Om det finst to tenarar, éin med og éin utan 3D-støtte, for kortet ditt,\n"
+"må du sjølv velja kven av dei du ønskjer.\n"
+"\n"
+"\n"
+"\n"
+"Skjerm \n"
+" Installasjonsprogrammet vil vanlegvis finna og setja opp skjermen kopla\n"
+"til maskina di automatisk, men du kan òg velja skjermen frå lista sjølv.\n"
+"\n"
+"\n"
+"\n"
+"Skjermoppløysing\n"
+"\n"
+" Her kan du velja skjermoppløysing og fargedjupn for skjermen din. Vel\n"
+"dei innstillingane som passar best for deg, og hugs at du alltids kan endra\n"
+"dei igjen etter installasjonen. Det vert òg vist eit bilete av korleis "
+"oppsettet\n"
+" vil sjå ut på skjermen.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Om denne innstillingen vert vist er avhengig av maskinvaren din.\n"
+"\n"
+" Systemet vil prøva å visa eit testskjermbilete med innstillingane du "
+"valde.\n"
+"Klarar du å sjå spørsmålet på testbiletet, og svara «%s», går vegvisaren\n"
+"vidare til neste steg. Viss ikkje, er nokre av innstillingane feil, og "
+"testbiletet\n"
+"forsvinn etter 12 sekund. Du kan då endra innstillingane til du har eit "
+"skjerm-\n"
+"oppsett som fungerer.\n"
+"\n"
+"\n"
+"\n"
+"Val\n"
+"\n"
+" Her kan du velja om vil starta det grafiske grensesnittet automatisk ved\n"
+"oppstart. Du bør velja «%s» berre om maskina skal brukast til tenar, eller\n"
+"om du ikkje klarte å setja opp X rett."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Skjerm\n"
+"\n"
+"Installasjonsprogrammet klarar vanlegvis å finna ut kva skjerm du har,\n"
+"og å setja denne opp automatisk. Men viss dette ikkje går, kan du velja "
+"skjermen\n"
+"sjølv frå denne oversikta."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Oppløysing\n"
+"\n"
+"Her kan du velja kva skjermoppløysing og fargedjupn du vil køyra med.\n"
+"Vel dei innstillingane som passar best for deg (du kan òg endra "
+"innstillingane\n"
+"i ettertid). Det vert vist eit eksempel på valt oppsett på skjermbiletet."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Viss det både finst tenarar med og utan 3D-akselerasjon for skjermkortet "
+"ditt,\n"
+"kan du velja tenaren som passar best for deg."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Val\n"
+"\n"
+" Her kan du velja om du vil starta opp i eit grafisk brukargrensesnitt\n"
+"automatisk. Du bør velja «%s» viss du skal bruka maskina som ein tenar,\n"
+"eller du før ikkje har klart å setja opp det grafiske oppsettet."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"No må du velja kor du vil installera Mandriva Linux på harddisken din. Viss\n"
+"harddisken er tom, eller viss eit anna operativsystem brukar heile disken,\n"
+"må du først partisjonera han. Å partisjonera vil seia å dela opp disken,\n"
+"slik at for eksempel kvart operativsystem får sin eigen del.\n"
+"\n"
+"Då du vanlegvis ikkje kan angra partisjonering av harddisken, og feilaktig\n"
+"partisjonering kan føra til at du mistar data om det allereie er installert\n"
+"eit operativsystem, kan dette vera noko vanskeleg for uvørne brukarar.\n"
+"Heldigvis finst det her ein vegvisar som losar deg gjennom heile prosessen.\n"
+"Før du held fram bør du først ta deg godt tid til å lesa denne "
+"hjelpeteksten.\n"
+"\n"
+"Litt avhengig av harddiskoppsettet ditt kan du ha eitt eller fleire av desse "
+"vala:\n"
+"\n"
+"– «%s»: Dette utfører automatisk partisjonering av den tomme harddisken "
+"din.\n"
+"Du vil ikkje få fleire spørsmål om du vel dette.\n"
+"\n"
+"– «%s»: Vegvisaren har funne éin eller fleire Linux-partisjonar på "
+"harddisken din.\n"
+"Vel dette om du ønskjer å bruka dei. Du vert så bedt om å velja "
+"monteringspunkt\n"
+"for kvar av partisjonane. Dei gamle monteringspunkta vert valt som standard, "
+"og\n"
+"vanlegvis bør du ikkje endra på desse.\n"
+"\n"
+"– «%s»: Om Microsoft Windows er installert og tar opp all plass på "
+"harddisken din,\n"
+"må du frigjera noko plass til Mandriva Linux. Du kan anten sletta Windows-\n"
+"partisjonen din (sjå «Slett heile disken»-valet), eller endra storleiken på "
+"Windows-\n"
+"partisjonen (både FAT- og NTFS-filsystema er støtta). Du vil ikkje mista "
+"noko\n"
+"data ved endra storleiken på partisjonen, så lenge du har defragmentert han\n"
+"på førehand. Men du bør uansett ta reservekopi av alle dataa. Du bør velja "
+"dette\n"
+"valet om du ønskjer å bruka både Mandriva Linux og Microsoft Windows på "
+"same\n"
+"maskina.\n"
+"\n"
+" Før du vel dette, bør du vera klar over at Windows-partisjonen vil vera "
+"mindre\n"
+"etterpå, slik at du har mindre ledig plass til å lagra dokument eller "
+"installera\n"
+"programvare.\n"
+"\n"
+"– «%s»: Vel dette om du ønskjer å sletta alle data og alle partisjonar på\n"
+"harddisken din, og installera Mandriva Linux over desse. Ver forsiktig, då "
+"du ikkje\n"
+"kan angra denne handlinga.\n"
+"\n"
+" !! Viss du vel dette, vert alle dataa på harddisken din sletta. !!\n"
+"\n"
+"– «%s»: Dette valet er synleg viss heile harddisken er oppteken av "
+"Microsoft\n"
+"Windows. Dette vil sletta alt på harddisken, og partisjonera alt på nytt.\n"
+" \n"
+"\n"
+" !! Viss du vel dette, vert alle dataa på harddisken din sletta. !!\n"
+"\n"
+"– «%s»: Vel dette om du vil partisjonera harddisken manuelt. Ver forsiktig. "
+"Dette er eit kraftig verktøy, og det er lett å mista data. Derfor bør du "
+"berre velja dette om du har erfaring med dette frå før. Sjå bruksrettleiinga "
+"for meir informasjon."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Bruk gammal partisjon"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Slett heile disken"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Sånn! Installasjonen er no ferdig, og Mandriva Linux er klar til bruk. "
+"Berre\n"
+"trykk «%s» for å starta maskina på nytt. Ikkje gløym å fjerna installasjons\n"
+"mediet (CD-ROM-en eller disketten) først. Når maskina er starta opp att,\n"
+"får du sjå ein meny der du kan velja kva operativsystem du vil køyra.\n"
+"\n"
+"«%s»-knappen viser to knappar til:\n"
+"\n"
+"– «%s»: Lag ein installasjonsdiskett for automatisk installering med same\n"
+"oppsettet du har brukt no.\n"
+"\n"
+" Du får òg to nye val når du har trykt på knappen:\n"
+" – «%s»: Halvautomatisk installering. Det er berre partisjoneringsdelen\n"
+" som er manuell.\n"
+" – «%s»: Heilautomatisk installering. Harddisken vert heilt tømt, og "
+"alle\n"
+"gamle data går tapt.\n"
+"\n"
+" Denne funksjonen er veldig nyttig når du skal installera Mandriva Linux "
+"på\n"
+" fleire like maskiner. Sjå avsnittet om automatisk installering på "
+"nettstaden vår for\n"
+"meir informasjon.\n"
+"\n"
+"– «%s»: Lagrar ei liste over pakkane brukt i denne installasjonen. Du kan "
+"bruka\n"
+"denne pakkelista når du skal installera på ei anna maskin ved å setja inn "
+"disketten,\n"
+"og starta installasjonen. Trykk «F1» når installasjonsprogrammet startar, "
+"skriv\n"
+"inn «linux defcfg=\"floppy\"» og trykk så «Enter».\n"
+"\n"
+"Til dette siste treng du ein FAT-formatert diskett. For å laga ein kan du "
+"skriva\n"
+"inn «mformat a:» eller «fdformat /dev/fd0» etterfølgd av «mkfs.vfat /dev/"
+"fd0»."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Lag diskett for automatisk installering"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Vis du vil bruka gamle partisjonar, kan du velja å formatera dei på nytt\n"
+"for å sletta alle data på dei. Viss du vil dette, så vel desse "
+"partisjonane.\n"
+"\n"
+"Merk at det ikkje er nødvendig å formatera alle gamle partisjonar på nytt.\n"
+" Du må formatera partisjonane som inneheld operativsystemet (som «/»,\n"
+"«/usr» og «/var»), men du treng ikkje formatera partisjonar med brukardata\n"
+"du ønskjer å behalda (som «/home»).\n"
+"\n"
+"Ver forsiktig når du vel partisjonar. Etter formatering vert alle data på "
+"partisjonane sletta, og du ikkje gjenoppretta dei seinare.\n"
+"\n"
+"Trykk «%s» når du er klar til å formatera partisjonane.\n"
+"\n"
+"Trykk «%s» om du vil velja ein annan partisjon for Mandriva Linux-systemet.\n"
+"\n"
+"Trykk «%s» om du ønskjer å velja partisjonar å gjennomsøkja etter fysiske "
+"feil."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Det har no truleg komme fleire oppdateringar til pakkane i Mandriva Linux\n"
+"sidan denne utgåva vart produsert. Det kan for eksempel vera feil som er\n"
+"fiksa, eller tryggleikshol som er tetta. Du kan lasta ned desse "
+"oppdateringane\n"
+"frå Internett om du ønskjer. Kryss av for «%s» om du har eit fungerande\n"
+"Internett-samband, eller vel «%s» om du heller vil installera "
+"oppdateringane\n"
+"seinare.\n"
+"\n"
+"Vel du «%s», får du ei liste over plassar du kan lasta ned oppdateringar\n"
+"frå. Du bør velja ein plass nær deg. Du vil så få sjå ei pakkeliste. Vel "
+"pakkane\n"
+"du ønskjer å oppdatera, og trykk «%s» for lasta dei ned og installera dei, "
+"eller\n"
+"vel «%s» for å avbryta."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Du kan no velja tryggleiksnivå for maskina. Vanlegvis bør du ha høgare\n"
+"tryggleiksnivå viss maskina inneheld svært viktige data, eller er kopla\n"
+"direkte til Internett. Men merk at eit høgare tryggleiksnivå gjerne fører "
+"til\n"
+"eit mindre brukarvenleg system.\n"
+"\n"
+"Vel «standard» om du ikkje veit kva nivå du skal ha. Du kan uansett\n"
+"endra tryggleiksnivået frå kontrollpanelet seinare.\n"
+"\n"
+"I «%s»-feltet kan du velja kven som skal vera tryggleiksansvarleg for\n"
+"maskina. Han eller ho får då tilsendt alle tryggleiksmeldingar."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Tryggleiksansvarleg"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"No må du velja kva partisjonar du vil installera Mandriva Linux på. Om du "
+"allereie har ferdige partisjonar, frå tidlegare installasjonar av GNU/Linux "
+"eller av partisjoneringsverktøy, kan du bruka desse. Elles må du laga nye "
+"partisjonar.\n"
+"\n"
+"For å laga partisjonar, må du først velja ein harddisk. Du gjer dette ved å "
+"velja «hda» for første IDE-harddisk, «hdb» for andre, «sda» for første SCSI-"
+"harddisk, og så vidare.\n"
+"\n"
+"Du har desse vala ved partisjonering av harddisken du valte:\n"
+"\n"
+" – «%s»: Slettar alle partisjonar på harddisken.\n"
+"\n"
+" – «%s»: Lagar automatisk ext3- og vekslepartisjonar på den ledige "
+"harddiskplassen.\n"
+"\n"
+"«%s»: Gjev tilgang til fleire funksjonar:\n"
+"\n"
+" – «%s»: Lagrar partisjonstabellen på ein diskett. Dette er nyttig for "
+"eventuell seinare gjenoppretting. Du bør lagra partisjonstabellen.\n"
+"\n"
+" – «%s»: Lèt deg gjenoppretta ein tidlegare lagra partisjonstabell frå ein "
+"diskett.\n"
+"\n"
+" – «%s»: Om partisjonstabellen er øydelagt, kan du prøva å gjenoppretta han "
+"her. Ver forsiktig, og hugs at dette ikkje alltid vil verka.\n"
+"\n"
+" – «%s»: Avbryter alle endringar, og lastar inn den opphavlege "
+"partisjonstabellen.\n"
+"\n"
+" – «%s»: Viss du fjernar krysset her, må brukarane manuelt montera og "
+"avmontera flyttbare medium, som diskettar og CD-plater.\n"
+"\n"
+" – «%s»: Bruk dette valet om du vil bruka ein vegvisar til å partisjonera "
+"harddisken. Du bør velja dette om du ikkje har god kjennskap til "
+"harddiskpartisjonering.\n"
+"\n"
+" – «%s»: Bruk dette valet for å avbryta endringane.\n"
+"\n"
+" – «%s»: Fleire partisjonsval og meir informasjon om harddisken.\n"
+"\n"
+" – «%s»: Når du er ferdig å partisjonera harddisken, vil dette lagra "
+"endringane dine.\n"
+"\n"
+"Du kan fininnstilla partisjonsstorleiken ved å bruka piltastane på "
+"tastaturet.\n"
+"\n"
+"Merk: Du har tilgang til alle funksjonane frå tastaturet. Du kan flytta "
+"mellom partisjonar med «Tab», «Pil opp»- og «Pil ned»-tastane.\n"
+"\n"
+"Når ein partisjon er valt kan du bruka:\n"
+"\n"
+" – «Ctrl + C» for å laga ein ny partisjon (når ein tom partisjon er valt).\n"
+"\n"
+" – «Ctrl + D» for å sletta ein partisjon.\n"
+"\n"
+" – «Ctrl + M» for å definera monteringspunkt.\n"
+"\n"
+"Du kan lesa meir om forskjellige filsystem i kapittelet «ext2FS» i "
+"referansehandboka.\n"
+"\n"
+"Om du installerer på ei PPC-maskin, bør du laga ein liten HFS-"
+"oppstartslastarpartisjon på minst 1 MiB for yaboot. Vis du lagar partisjonen "
+"større, kanskje 50 MiB, kan du bruka han til å lagra ein ekstra kjerne, og "
+"eventuelt ramdisk-bilete for nødsituasjonar.r"
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Automatisk montering av fjernbare medium"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Byt mellom normal- og ekspertmodus"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Oppdaga meir enn éin Microsoft-partisjon på harddisken.\n"
+"Vel kven av dei du vil endra storleiken på for å installera det nye\n"
+"Mandriva Linux-operativsystemet.\n"
+"Kvar partisjon vert vist slik: Linux-namn, Windows-namn, storleik.\n"
+"Linuxnamnet er skriven slik: harddisktype, harddisknummer, partisjonsnummer "
+"(for eksempel «hda1»).\n"
+"\n"
+"Harddisktypen er «hd» viss harddisken er ein IDE-harddisk og «sd»\n"
+"viss han er ein SCSI-harddisk.\n"
+"Harddisknummeret er alltid ein bokstav etter «hd» eller «sd». For\n"
+"IDE-harrdiskar:\n"
+"\n"
+" * «a» tyder hovudharddisk på primær IDE-kontrollar.\n"
+"\n"
+" * «b» tyder slaveharddisk på primær IDE-kontrollar.\n"
+"\n"
+" * «c» tyder hovudharddisk på sekundær IDE-kontrollar.\n"
+"\n"
+" * «d» tyder slaveharddisk på sekundær IDE-kontrollar.\n"
+"\n"
+"For SCSI-harddiskar tyder «a» lågaste SCSI-ID, «b» nest lågaste\n"
+"SCSI-ID, og så vidare.\n"
+"Windowsnamnet er stasjonsbokstaven til harddisken under Windows\n"
+"(første disk eller partisjon vert kalla «C:»."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"«%s»: Kontroller landsvalet. Trykk «%s» for velja eit anna land.\n"
+"Du kan velja «%s» for å få ei fullstendig liste over land."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"DrakX vil automatisk velja eit passande tastaturoppsett avhengig av språket\n"
+"du valde. Sjå etter at tastaturoppsettet stemmer, og vel eventuelt eit "
+"anna.\n"
+"\n"
+"Det kan òg vera at du ikkje har eit tastatur som passar heilt til språket "
+"ditt.\n"
+"Du kan for eksempel ha eit sveitsisk tastatur om du er ein engelsktalande\n"
+"sveitsar. Du kan då velja eit passande tastaturoppsett her.\n"
+"\n"
+"Trykk «%s» for ei fullstendig liste over støtta tastatur.\n"
+"\n"
+"Om du vel eit tastaturoppsett som ikkje er basert på det latinske "
+"alfabetet,\n"
+"kan du på neste skjermbilete velja ein snøggtast for å byta mellom latinsk "
+"og\n"
+"ikkje-latinsk oppsett."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Spansk"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "med hjulemulering"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Universell (alle PS/2- og USB-mus)"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Vel porten som er brukt. For eksempel har porten som heiter\n"
+"«COM1» under Windows fått namnet «ttyS0» i GNU/Linux."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "autentisering"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Ekspert"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"«%s»: Eventuelle lydkort funne vert vist her. Viss lydkortet vist her ikkje "
+"er\n"
+"installert i maskina di, kan du trykkja knappen og velja ein annan drivar."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN-kort"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Grafisk grensesnitt"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Vel harddisken du ønskjer å sletta for å installera den nye Mandriva Linux-\n"
+"partisjonen. Alle data på denne stasjonen vil då gå tapt for all framtid."
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Trykk «%s» om du ønskjer å sletta alle data og partisjonar på denne\n"
+"harddisken. Ver forsiktig, då du ikkje kan gjenoppretta eventuelle data\n"
+"eller partisjonar, heller ikkje Windows-data, på harddisken etter å ha "
+"trykt\n"
+"«%s».\n"
+"\n"
+"Trykk «%s» for å avbryta operasjonen utan å tapa data eller partisjonar\n"
+"på harddisken."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Neste ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Førre"
+
diff --git a/perl-install/install/help/po/pa_IN.po b/perl-install/install/help/po/pa_IN.po
new file mode 100644
index 000000000..83d9be578
--- /dev/null
+++ b/perl-install/install/help/po/pa_IN.po
@@ -0,0 +1,1163 @@
+# translation of DrakX.po to Punjabi
+# translation of DrakX.po to Panjabi
+# Copyright (C) 2005 Free Software Foundation, Inc.
+# Kanwaljeet Singh Brar <kanwaljeetbrar@yahoo.co.in>, 2005.
+# Jaswinder Singh Phulewala <jaswinderphulewala@yahoo.com>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-03-27 17:55+0530\n"
+"Last-Translator: Jaswinder Singh Phulewala <jaswinderphulewala@yahoo.com>\n"
+"Language-Team: Punjabi <punlinux-i18n@lists.soruceforge.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.9.1\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"ਜਾਰੀ ਕਰਨ ਤੋਂ ਪਹਿਲਾਂ, ਤੁਹਾਨੂੰ ਲਾਈਸਿੰਸ ਧਿਆਨ ਨਾਲ ਪੜਨਾ ਚਾਹੀਦਾ ਹੈ। ਇਹ\n"
+"ਪੂਰੇ ਮੈਂਡਰਿਵ-ਲੀਨਕਸ ਵੰਡ ਨੂੰ ਦਰਸਾਉਂਦੀ ਹੈ। ਜੇ ਤੁਸੀਂ ਸਾਰੀਆਂ ਗੱਲਾਂ ਨਾਲ ਸਹਿਮਤ\n"
+"ਹੋ ਜੋ ਇਸ ਵਿੱਚ ਸ਼ਾਮਿਲ ਹਨ, \"%s\" ਬਕਸੇ ਨੂੰ ਚੁਣੋ। ਜੇ ਨਹੀਂ, \"%s\" ਬਟਨ ਤੇ ਕਲਿੱਕ\n"
+"ਕਰਕੇ ਕੰਪਿਊਟਰ ਮੁੜ ਚੱਲੇਗਾ।"
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "ਕੀ ਤੁਸੀਂ ਇਹ ਵਿਸ਼ੇਸ਼ਤਾ ਵਰਤਣੀ ਚਾਹੁੰਦੇ ਹੋ?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"ਮੈਂਡਰਿਵ-ਲੀਨਕਸ ਇੰਸਟਾਲੇਸ਼ਨ ਕਈ CD-ROM ਤੇ ਵੰਡੀ ਗਈ ਹੈ। ਜੇ ਇੱਕ ਚੁਣਿਆ\n"
+"ਪੈਕੇਜ ਹੋਰ CD-ROM ਤੇ ਸਥਿਤ ਹੈ, DrakX ਮੌਜੂਦਾ CD ਨੂੰ ਰੱਦ ਕਰ ਦੇਵੇਗਾ\n"
+"ਤੁਹਾਨੂੰ ਲੋੜੀਂਦੀ CD ਪਾਉਣ ਲਈ ਪੁੱਛੇਗਾ। ਜੇ ਤੁਹਾਡੇ ਕੋਲ ਲੋੜੀਂਦੀ CD ਨਹੀਂ\n"
+"ਹੈ, ਸਿਰਫ \"%s\" ਤੇ ਕਲਿੱਕ ਕਰੋ, ਅਨੁਸਾਰੀ ਪੈਕੇਜ ਇੰਸਟਾਲ ਨਹੀਂ\n"
+"ਹੋਵੇਗਾ।"
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "ਨਵੀਨੀਕਰਨ"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "ਮੁੱਢਲੀ ਦਸਤਾਵੇਜ਼ੀ ਨਾਲ"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "ਯਕੀਨਨ ਘੱਟੋ-ਘੱਟ ਇੰਸਟਾਲ"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "ਸਵੈ-ਚਾਲਤ ਨਿਰਭਰਤਾ"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": \"%s\" ਬਟਨ ਤੇ ਕਲਿੱਕ ਕਰਕੇ ਪ੍ਰਿੰਟਰ ਸੰਰਚਨਾ ਤਖਤੀ ਖੁੱਲੇਗੀ।\n"
+"ਨਵਾਂ ਪ੍ਰਿੰਟਰ ਨਿਰਧਾਰਿਤ ਕਰਨ ਵਾਸਤੇ ਵਧੇਰੇ ਜਾਣਕਾਰੀ ਲਈ ``Starter Guide''\n"
+"ਦਾ ਅਨੁਸਾਰੀ ਅਧਿਆਇ ਵੇਖੋ। ਸਾਡੇ ਦਸਤਾਵੇਜ਼ ਵਿੱਚ ਦਿੱਤਾ ਇੰਟਰਫੇਸ\n"
+"ਇੰਸਟਾਲੇਸ਼ਨ ਦੌਰਾਨ ਵਰਤੇ ਇੰਟਰਫੇਸ ਵਰਗਾ ਹੈ।"
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "ਸਵੈਚਾਲਤ ਸਮਾਂ ਸਮਕਾਲਤਾ"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"ਮਾਨੀਟਰ\n"
+"\n"
+" ਆਮ ਤੌਰ ਤੇ ਇੰਸਟਾਲਰ ਸਵੈ ਹੀ ਤੁਹਾਡੇ ਸਿਸਟਮ ਤੇ ਜੁੜੇ ਮਾਨੀਟਰ ਨੂੰ ਖੋਜਦਾ ਅਤੇ\n"
+"ਸੰਰਚਿਤ ਕਰਦਾ ਹੈ। ਜੇ ਇਹ ਠੀਕ ਨਹੀਂ, ਤੁਸੀਂ ਮਾਨੀਟਰਾਂ ਦੀ ਸੂਚੀ ਵਿੱਚੋਂ\n"
+"ਆਪਣੇ ਕੰਪਿਊਟਰ ਨਾਲ ਜੁੜਿਆ ਮਾਨੀਟਰ ਚੁਣ ਸਕਦੇ ਹੋ।"
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"ਰੈਜ਼ੋਲੂਸ਼ਨ\n"
+"\n"
+" ਇੱਥੇ ਤੁਸੀਂ ਆਪਣੇ ਗਰਾਫਿਕਸ਼ ਹਾਰਡਵੇਅਰ ਲਈ ਉਪਲੱਬਧ ਰੈਜ਼ੋਲੁਸ਼ਨ ਅਤੇ ਰੰਗ ਡੂੰਘਾਈ\n"
+"ਚੁਣ ਸਕਦੇ ਹੋ। ਇੱਕ ਜੋ ਤੁਹਾਡੀ ਲੋੜ ਪੂਰੀ ਕਰਦਾ ਹੈ ਚੁਣੋ (ਤੁਸੀਂ ਇੰਸਟਾਲੇਸ਼ਨ ਤੋਂ ਬਾਅਦ\n"
+"ਤਬਦੀਲੀ ਕਰ ਦੇ ਯੋਗ ਹੋਵੋਗੇ)। ਚੁਣੀ ਸੰਰਚਨਾ ਦਾ ਨਮੂਨਾ ਮਾਨੀਟਰ ਤਸਵੀਰ\n"
+"ਵਿੱਚ ਵਿਖਾਇਆ ਗਿਆ ਹੈ।"
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"ਜਦੋਂ ਤੁਹਾਡੇ ਕਾਰਡ ਲਈ 3D ਪ੍ਰਵੇਗ ਸਮੇਤ ਜਾਂ ਬਿਨਾਂ, ਵੱਖ-ਵੱਖ ਸਰਵਰ\n"
+"ਉਪਲੱਬਧ ਹੋਣ, ਤੁਹਾਨੂੰ ਸਰਵਰ ਪੁੱਛਿਆ ਜਾਵੇਗਾ ਜੋ ਤੁਹਾਡੀ ਜਰੂਰਤ ਵਧੀਆ\n"
+"ਪੂਰੀ ਕਰਦਾ ਹੈ।"
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"ਚੋਣ\n"
+"\n"
+" ਇਹ ਪਗ਼ ਤੁਹਾਨੂੰ ਚੁਣਨ ਦੇਵੇਗਾ ਕਿ ਕੀ ਤੁਹਾਡੀ ਮਸ਼ੀਨ ਸਵੈ ਹੀ ਬੂਟ ਦੌਰਾਨ\n"
+"ਗਰਾਫੀਕਲ ਵਿੱਚ ਤਬਦੀਲ ਹੋ ਸਕਦੀ ਹੈ ਜਾਂ ਨਹੀਂ। ਜਰੂਰ, ਤੁਸੀਂ \"%s\" ਨੂੰ\n"
+"ਨੂੰ ਚੁਣਨਾ ਚਾਹੋਗੇ ਜੇ ਤੁਹਾਡੀ ਮਸ਼ੀਨ ਨੇ ਸਰਵਰ ਤੌਰ ਤੇ ਕੰਮ ਕਰਨਾ ਹੈ, ਜਾਂ ਜੇ\n"
+"ਤੁਸੀਂ ਸੰਰਚਿਤ ਦ੍ਰਿਸ਼ ਪ੍ਰਾਪਤ ਕਰਨ ਵਿੱਚ ਸਫਲ ਨਹੀਂ ਹੋਏ।"
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "ਮੌਜੂਦਾ ਭਾਗ ਵਰਤੋ"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "ਸਾਰੀ ਡਿਸਕ ਸਾਫ"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "ਸਵੈ-ਇੰਸਟਾਲ ਫਲਾਪੀ ਬਣਾਓ"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "ਸੁਰੱਖਿਆ ਪ੍ਰਬੰਧਕ"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "ਹਟਾਉਣ ਯੋਗ ਮਾਧਿਅਮ ਸਵੈ-ਮਾਊਂਟ ਹੋ ਰਿਹਾ ਹੈ"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "ਸਧਾਰਨ/ਮਾਹਿਰ ਵਿਧੀ ਵਿਚਕਾਰ ਤਬਦੀਲੀ"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": ਵਰਤਮਾਨ ਦੇਸ਼ ਚੋਣ ਦੀ ਜਾਂਚ ਕਰਦੀ ਹੈ। ਜੇ ਤੁਸੀਂ ਇਸ ਦੇਸ਼ ਵਿੱਚ ਨਹੀਂ,\n"
+"\"%s\" ਬਟਨ ਦਬਾਓ ਅਤੇ ਹੋਰ ਚੁਣੋ। ਜੇ ਤੁਹਾਡਾ ਦੇਸ਼ ਵਿਖਾਈ ਸੂਚੀ ਵਿੱਚ\n"
+"ਨਹੀਂ ਹੈ, ਦੇਸ਼ ਸੂਚੀ ਪੂਰੀ ਕਰਨ ਲਈ \"%s\" ਬਟਨ ਦਬਾਓ।"
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Espanol"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "ਚੱਕਰ ਸਮਰੂਪਤਾ ਨਾਲ"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "ਵਿਆਪਕ | ਕੋਈ PS/2 ਤੇ USB ਮਾਊਸ"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"ਕਿਰਪਾ ਕਰਕੇ ਠੀਕ ਪੋਰਟ ਚੁਣੋ। ਉਦਾਹਰਨ ਵਜੋਂ, Windows ਦੇ ਅਧੀਨ \"COM1\"\n"
+"GNU/ਲੀਨਕਸ ਦੇ ਅਧਿਨ \"ttyS0\" ਕਹਿਲਾਉਂਦੀ ਹੈ।"
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "ਪ੍ਰਮਾਣਿਕਤਾ"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "ਮਾਹਿਰ"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": ਜੇ ਤੁਹਾਡੇ ਸਿਸਟਮ ਤੇ ਕੋਈ ਸਾਊਂਡ ਕਾਰਡ ਲੱਭਿਆ ਹੈ, ਇਹ ਇੱਥੇ ਵਿਖਾਇਆ\n"
+"ਜਾਵੇਗਾ। ਜੇ ਲੱਭਿਆ ਕਾਰਡ ਤੁਹਾਡੇ ਸਿਸਟਮ ਵਾਲਾ ਸਾਊਂਡ ਕਾਰਡ ਨਹੀਂ ਹੈ,\n"
+"ਤੁਸੀਂ ਬਟਨ ਦਬਾ ਸਕਦੇ ਹੋ ਅਤੇ ਹੋਰ ਡਰਾਈਵਰ ਚੁਣ ਸਕਦੇ ਹੋ।"
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN ਕਾਰਡ"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "ਗਰਾਫੀਕਲ ਇੰਟਰਫੇਸ"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"ਤੁਹਾਡਾ ਨਵਾਂ ਮੈਂਡਰਿਵ-ਲੀਨਕਸ ਭਾਗ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਸਾਫ ਕਰਨ ਵਾਸਤੇ\n"
+"ਹਾਰਡ ਡਰਾਈਵ ਚੁਣੋ। ਧਿਆਨ ਰੱਖੋ, ਇਸ ਡਰਾਈਵ ਤੇ ਸਾਰਾ ਡਾਟਾ ਗੁੰਮ ਹੋ ਜਾਵੇਗਾ\n"
+"ਅਤੇ ਮੁੜ ਪ੍ਰਾਪਤ ਹੋਣ ਯੋਗ ਨਹੀਂ ਰਹੇਗਾ!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"\"%s\" ਤੇ ਕਲਿੱਕ ਕਰੋ ਜੇ ਤੁਸੀਂ ਇਸ ਹਾਰਡ ਡਰਾਈਵ ਤੇ ਸਾਰਾ ਡਾਟਾ ਅਤੇ ਭਾਗ\n"
+"ਹਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ। ਧਿਆਨ ਰੱਖੋ, \"%s\" ਤੇ ਕਲਿੱਕ ਕਰਨ ਮਗਰੋਂ, ਤੁਸੀਂ ਇਸ ਡਰਾਈਵ\n"
+"ਉੱਪਰਲਾ ਡਾਟਾ ਅਤੇ ਭਾਗ ਮੁੜ ਪ੍ਰਾਪਤ ਕਰ ਨਹੀਂ ਸਕਦੇ, ਕੋਈ Windows\n"
+"ਡਾਟਾ ਵੀ।\n"
+"\n"
+"ਇਸ ਹਾਰਡ ਡਰਾਈਵ ਉੱਪਰਲਾ ਡਾਟਾ ਅਤੇ ਭਾਗ ਹਟਾਏ ਬਿਨਾਂ ਬਾਹਰ ਜਾਣ ਲਈ\n"
+"\"%s\" ਤੇ ਕਲਿੱਕ ਕਰੋ।"
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "ਅੱਗੇ ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- ਪਿੱਛੇ"
+
diff --git a/perl-install/install/help/po/pl.po b/perl-install/install/help/po/pl.po
new file mode 100644
index 000000000..70d68ef2e
--- /dev/null
+++ b/perl-install/install/help/po/pl.po
@@ -0,0 +1,1969 @@
+# translation of drakx.po to polish
+# translation of pl.po to polish
+# translation of DrakX-pl.po to polski
+# translation of pl.po to Polish
+# Polish translation file
+# tomek, 2005.
+# Paweł Jabłoński <pj@linux-mandrake.com>, 2001,2002.
+# Arkadiusz Lipiec <arkadiusz.lipiec@gazeta.pl>, 2002-2004.
+# Tomasz Bednarski <bednarski@skrzynka.pl>, 2005.
+# Tomasz Bednarski <tomasz.bednarski@mandriva.pl>, 2005.
+# Maciej Walkowiak <m.walkowiak@computer.org>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: pl\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-10-22 14:46+0200\n"
+"Last-Translator: Tomasz Bednarski <tomasz.bednarski@mandriva.pl>\n"
+"Language-Team: polish <pl@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Przed kontynuowaniem, należy przeczytać uważnie warunki licencji dotyczącej "
+"całej dystrybucji Mandriva Linux. Jeśli zgadzasz się\n"
+"z wszystkimi warunkami w niej zawartymi, zaznacz opcję \"%s\".\n"
+"Jeśli nie kliknij na przycisk \"%s\" w celu ponownego uruchomienia\n"
+"komputera."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux jest systemem wielodostępnym, co oznacza, że każdy użytkownik\n"
+"posiada własne ustawienia, własne pliki, może pracować równocześnie\n"
+"z innymi użytkownikami na tym samym komputerze itd. Jednak, \n"
+"w przeciwieństwie do użytkownika \"root\", będącym administratorem,\n"
+"użytkownicy tutaj dodani nie będą mieli możliwości zmiany czegokolwiek\n"
+"ponad swoje własne ustawienia, co chroni przed niezamierzonymi lub\n"
+"złośliwymi zmianami mogącymi wpływać na działanie całego systemu.\n"
+"Należy utworzyć co najmniej jednego zwykłego użytkownika dla siebie. Należy "
+"się logować do tego konta w trakcie normalnej pracy. Pomimo, że\n"
+"logowanie jako \"root\" jest bardzo praktyczne, to jednak może być\n"
+"bardzo niebezpieczne! Najmniejsza pomyłka może spowodować nieodwracalne\n"
+"uszkodzenie systemu. Jeśli z konta zwykłego użytkownika zostanie \n"
+"wykonany nawet poważny błąd, utracona zostanie tylko część danych tego\n"
+"użytkownika, a nie cały system.\n"
+"\n"
+"Najpierw należy wprowadzić rzeczywiste imię. Nie jest to czynność wymagana\n"
+"-- można wprowadzić dowolny ciąg znaków. Instalator pobierze pierwszy wyraz "
+"z\n"
+"wprowadzonego ciągu i przeniesie go do pola \"%s\", określającego nazwę\n"
+"użytkownika wprowadzaną podczas logowania się do systemu. Oczywiście,\n"
+"można ją zmienić. Ważna jest wielkość liter - dla Linuksa \"a\" i \"A\" to\n"
+"dwie różne litery. Następnie należy ustawić dla tego użytkownika hasło.\n"
+"Mimo, że hasło zwykłego użytkownika nie jest tak newralgiczne, jak \n"
+"hasło \"roota\", to jednak z powodów bezpieczeństwa nie należy go pomijać.\n"
+"\n"
+"Po kliknięciu \"%s\", można dodać kolejnych użytkowników, Nie ma żadnych\n"
+"ograniczeń na ich liczbę. Dodaj np. konta dla wszystkich przyjaciół, dla\n"
+"ojca, siostry itd. Po zakończeniu dodawania wybierz \"%s\".\n"
+"\n"
+"Po kliknięciu przycisku \"%s\" można zmienić domyślną \"powłokę\"\n"
+"dla użytkownika (domyślnie bash).\n"
+"\n"
+"Po zakończeniu dodawania wszystkich użytkowników, zostanie zadane\n"
+"pytanie o to, który użytkownik będzie automatycznie logowany\n"
+"podczas uruchamiania komputera. Jeśli masz ochotę używać tej funkcji\n"
+"(oraz nie dbasz za bardzo o bezpieczeństwo lokalne), wybierz żądanego\n"
+"użytkownika oraz menedżera okien, a następnie kliknij \"%s\".\n"
+"Jeśli nie chcesz używać tej funkcji, odznacz opcję \"%s\"."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Czy chcesz wykorzystać tą funkcję?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Powyżej pokazano wykryte na Twoim dysku istniejące partycje linuksowe.\n"
+"Można zastosować wybory określone przez druida, są one odpowiednie\n"
+"w większości przypadków. Jeśli wprowadza się zmiany, należy określić "
+"przynajmniej partycję root (\"/\"). Nie należy wybierać zbyt małej \n"
+"partycji - nie będzie można wówczas zainstalować zbyt dużo \n"
+"oprogramowania. Jeśli dane mają być przechowywane na \n"
+"oddzielnej partycji, należy także utworzyć partycję \"/home\"\n"
+"(jest to możliwe tylko wtedy, jeśli\n"
+"dostępnych jest więcej niż jedna partycja linuksowa)\n"
+"\n"
+"Dla informacji, każda partycja jest określona przez \"Nazwę\" i \"Rozmiar"
+"\".\n"
+"\n"
+"\"Nazwa\" jest określana następująco: \"typ dysku\",\"numer dysku\",\n"
+"\"numer partycji\". (na przykład \"hda1\").\n"
+"\n"
+"\"Typ dysku\" to \"hd\" w przypadku dysków IDE, \"sd\" w przypadku SCSI\n"
+"\n"
+"\"Numer dysku\" to litera po \"hd\" lub \"sd\". W przypadku dysków IDE:\n"
+"\n"
+" * \"a\" oznacza \"pierwszy dysk na pierwszym kontrolerze IDE\";\n"
+"\n"
+" * \"b\" oznacza \"drugi dysk na pierwszym kontrolerze IDE\";\n"
+"\n"
+" * \"c\" oznacza \"pierwszy dysk na drugim kontrolerze IDE\";\n"
+"\n"
+" * \"d\" oznacza \"drugi dysk na drugim kontrolerze IDE\"\n"
+"\n"
+"W przypadku dysków SCSI, \"a\" oznacza \"najniższy ID SCSI\", zaś \"b\",\n"
+"oznacza \"drugi w kolejności ID SCSI\", itd."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Instalacja Mandriva Linux jest rozpowszechniana na kilku płytach CD.\n"
+"Jeśli wybrany pakiet jest zlokalizowany na innej płycie CD\n"
+" instalator wysunie bieżącą płytę CD oraz wyświetli prośbę\n"
+"o włożenie wymaganej płyty CD. Jeśli nie posiadasz wymaganej\n"
+"płyty CD w ręku, kliknij \"%s\", związane z nią pakiety nie zostaną\n"
+"zainstalowane."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Nadszedł czas na określenie, jakie programy mają zostać zainstalowane w\n"
+"systemie. Dla Mandriva Linux są dostępne tysiące pakietów. Aby uczynić\n"
+"zarządzanie pakietami łatwiejszym, zostały one uporządkowane na podstawie\n"
+"podobieństwa aplikacji.\n"
+"\n"
+"Pakiety są podzielone na grupy tematyczne. Dostępne są cztery wstępnie\n"
+"zdefiniowane kategorie instalacji. Można mieszać i dopasowywać aplikacje\n"
+"z różnych sekcji, tak więc na przykład instalacja \"Stacja robocza\"\n"
+"może także zawierać aplikacje z sekcji \"Serwer\".\n"
+"\n"
+" * \"%s\": jeśli komputer będzie pracował jako stacja\n"
+"robocza, należy wybrać jedną lub więcej związanych z tą sekcją grup.\n"
+"\n"
+" * \"%s\": jeśli komputer będzie używany do programowania, należy\n"
+"wybrać odpowiednie grupy związane z tą sekcją. Specjalna grupa \"LSB\"\n"
+"skonfiguruje system, tak aby był jak najbardziej zgodny ze standardem\n"
+"Linux Standard Base.\n"
+"\n"
+" Wybranie grupy \"LSB\" zainstaluje także jądro serii \"2.4\", zamiast\n"
+"domyślnego \"2.6\". Dzieje się tak dlatego, aby mieć 100%% pewność,\n"
+"że komputer jest zgodny z LSB. Jednak jeśli nie zaznaczysz\n"
+"grupy \"LSB\", system wciąż będzie niemal 100%% zgodny z LSB.\n"
+"\n"
+" * \"%s\": jeśli komputer będzie pracował jako serwer, pojawi się\n"
+"możliwość wyboru różnych usług, które mogą być zainstalowane na komputerze;\n"
+"\n"
+" * \"%s\": na końcu można określić preferowane środowisko\n"
+"graficzne. Co najmniej jedna grupa musi zostać wybrana, jeśli komputer\n"
+"ma pracować jako stacja z interfejsem graficznym!\n"
+"\n"
+"Przesuwając kursor myszy nad nazwą grupy, wyświetli się krótki tekst\n"
+"opisujący daną grupę.\n"
+"\n"
+"Można zaznaczyć \"%s\", która to opcja jest\n"
+"użyteczna jeśli użytkownik zna przeznaczenie pakietów i jeśli chce mieć\n"
+"całkowitą kontrolę nad tym co zostanie zainstalowane w systemie.\n"
+"\n"
+"Jeśli została uruchomiona instalacja w trybie \"%s\", można\n"
+"odznaczyć wszystkie grupy, zapobiegając w ten sposób instalacji nowych\n"
+"pakietów. Ta opcja jest użyteczna przy naprawianiu lub aktualizacji\n"
+"już istniejącego systemu\n"
+"\n"
+"Jeśli odznaczone zostaną wszystkie grupy w trakcie\n"
+"przeprowadzania zwykłej instalacji (przeciwieństwo do aktualizacji),\n"
+"wyświetlone zostanie okienko z propozycjami grup określających\n"
+"inne opcje związane z instalacją minimalną:\n"
+". \n"
+" * \"%s\": instalacja minimalnej liczby pakietów koniecznej do\n"
+"uruchomienia stacji graficznej.\n"
+"\n"
+" * \"%s\": instalacja systemu podstawego wraz z podstawowymi\n"
+"narzędziami i dokumentacją dla nich. Ta instalacja jest zalecana\n"
+"przy pracy jako serwer.\n"
+"\n"
+" * \"%s\": instalacja absolutnie minimalnej liczby pakietów\n"
+"koniecznych do otrzymania działającego Linuksa. Po wybraniu\n"
+"tej opcji użytkownik będzie miał dostęp jedynie do interfejsu\n"
+"wiersza poleceń. Całkowity rozmiar tej instalacji to ok. 65\n"
+"megabajtów."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Uaktualnij"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Z podstawową dokumentacją"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Naprawdę minimalna instalacja"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Jeżeli zaznaczono opcję wyboru indywidualnych\n"
+"pakietów, to wyświetlona zostanie struktura drzewa zawierająca\n"
+"wszystkie pakiety podzielone na grupy i podgrupy. W trakcie przeglądania\n"
+"drzewa można wybrać całą grupę, podgrupę lub pojedyncze pakiety.\n"
+"\n"
+"Po wybraniu pakietu ze struktury, po prawej stronie wyświetlony zostanie \n"
+"opis, pomagający w zorientowaniu się do czego pakiet służy.\n"
+"\n"
+"!! Jeśli zostanie wybrany pakiet serwera, niezależnie czy wybrany został\n"
+"w drodze indywidualnego wyboru pakietów, lub też jako pakiet grupy,\n"
+"zostanie wyświetlona prośba o potwierdzenie wyboru pakietu serwera\n"
+"przed jego instalacją. W systemie Mandriva Linux, wszystkie zainstalowane\n"
+"serwery są uruchamiane domyślnie w trakcie\n"
+"uruchamiania całego systemu. Nawet jeśli dany pakiet jest uważany\n"
+"za bezpieczny i w trakcie instalacji nie są znane żadne problemy z nim\n"
+"związane, może się zdarzyć, że zostaną wykryte luki w jego\n"
+"zabezpieczeniach już po instalacji. Jeśli użytkownik nie posiada\n"
+"informacji o tym, do czego dana usługa jest przeznaczona lub też dlaczego\n"
+"jest instalowana, wówczas powinien kliknąć przycisk \"%s\".\n"
+"Kliknięcie \"%s\" spowoduje zainstalowanie wypisanych usług, które\n"
+"będą automatycznie uruchamiane w trakcie uruchamiania całego systemu. !!\n"
+"\n"
+"Opcja \"%s\" jest używana do zablokowania okna ostrzeżeń\n"
+"pojawiającego się w momencie automatycznego wyboru pakietów przez\n"
+"instalatora w celu spełnienia zależności. Niektóre pakiety zależą od "
+"innych,\n"
+"tak więc instalacja określonego pakietu może wymagać instalacji innego.\n"
+"Instalator potrafi określić, jakie pakiety są wymagane do spełnienia\n"
+"zależności oraz do pomyślnego zakończenia instalacji.\n"
+"\n"
+"Niewielka ikona dyskietki na dole listy umożliwia wczytanie listy pakietów\n"
+"wybranych w trakcie poprzedniej instalacji. Jest to użyteczna opcja\n"
+"w przypadku posiadania wielu maszyn, które muszą zostać skonfigurowane\n"
+"w identyczny sposób. Kliknięcie tej ikony spowoduje wyświetlenie prośby\n"
+"o włożenie dyskietki utworzonej po zakończeniu poprzedniego procesu\n"
+"instalacji. Zobacz drugą podpowiedź ostatniego kroku, zawierającą\n"
+"informację o tym, jak utworzyć taką dyskietkę."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Automatyczne zależności"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": kliknięcie przycisku \"%s\" spowoduje otwarcie\n"
+"druida konfiguracji drukarki. Przeczytaj odpowiedni rozdział\n"
+"podręcznika, aby uzyskać więcej informacji na temat sposobu konfiguracji\n"
+"nowej drukarki. Interfejs wykorzystywany w tym miejscu jest podobny\n"
+"do interfejsu używanego w czasie instalacji."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"To okno dialogowe jest używane do wybrania usług włączanych podczas\n"
+"uruchamianiu systemu.\n"
+"\n"
+"Zaprezentowane zostaną wszystkie dostępne usługi z bieżącej instalacji.\n"
+"Przejrzyj je uważnie i odznacz te z nich, które nie są zawsze potrzebne\n"
+"przy uruchamianiu systemu.\n"
+"\n"
+"Po zaznaczeniu elementu listy, pojawi się objaśnienie z opisem tej usługi.\n"
+"Jednak w przypadku braku pewności, czy dana usługa jest\n"
+"potrzebna czy nie, bezpieczniej jest pozostawić ustawienie domyślne.\n"
+"\n"
+"!! Należy zachować szczególną ostrożność przy wyborze, jeżeli maszyna\n"
+"ma pracować jako serwer - zazwyczaj nie będzie potrzeby uruchamiania\n"
+"niektórych usług. Należy pamiętać, że uruchomienie niektórych z nich na\n"
+"serwerze może być niebezpieczne. W ogólności, należy uruchamiać tylko\n"
+"te usługi, które naprawdę są naprawdę potrzebne.!!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux zarządza czasem w formacie GMT (Greenwich Mean Time)\n"
+"i tłumaczy go na czas lokalny w zależności od wybranej strefy czasowej.\n"
+"Jest jednak możliwe wyłączenie tej opcji poprzez wybór \"%s\",\n"
+"co spowoduje, że zegar sprzętowy będzie wskazywał ten sam czas co zegar\n"
+"systemowy. Jest to użyteczne, jeśli komputer zarządza innym systemem\n"
+"operacyjnym.\n"
+"\n"
+"Opcja \"%s\" automatycznie ustawi zegar łącząc się\n"
+"ze zdalnym serwerem czasu przez Internet. Oczywiście trzeba posiadać\n"
+"działające połączenie internetowe, aby to udogodnienie zadziałało.\n"
+"Najlepiej wybrać serwer czasu zlokalizowany niedaleko miejsca instalacji.\n"
+"Na komputerze zostanie zainstalowany serwer czasu, który może być\n"
+"używany przez inne komputery w sieci lokalnej."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Automatyczna synchronizacja czasu"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Karta graficzna\n"
+"\n"
+" Instalator zazwyczaj automatycznie wykrywa i konfiguruje\n"
+"kartę graficzną zainstalowaną na komputerze. Jeśli jednak nie zostanie\n"
+"wykryta, można wybrać posiadaną kartę z listy.\n"
+"\n"
+" W przypadku gdy dla karty dostępne są różne serwery, z lub bez\n"
+"akceleracji 3D, zostanie wyświetlona prośba o wybranie serwera\n"
+"najlepiej odpowiadającego potrzebom użytkownika."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (od systemu X Window) to serce graficznego interfejsu GNU/Linux,\n"
+"z którego korzystają wszystkie środowiska graficzne (KDE, GNOME,\n"
+"AfterStep, WindowMaker, itd.) dostępne w systemie Mandriva Linux.\n"
+"\n"
+"Zostanie wyświetlona lista różnych parametrów pozwalających\n"
+"na zmianę sposobu wyświetlania.\n"
+"\n"
+"Karta graficzna\n"
+"\n"
+" Instalator zazwyczaj automatycznie wykrywa i konfiguruje kartę\n"
+"graficzną zainstalowaną na komputerze. Jeśli nie zostanie wykryta,\n"
+"użytkownik może wybrać posiadaną kartę z listy.\n"
+"\n"
+" W przypadku, gdy dla karty graficznej dostępne są różne serwery,\n"
+"z lub bez akceleracji 3D, użytkownik może wybrać serwer najlepiej\n"
+"odpowiadający jego potrzebom.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Instalator zazwyczaj automatycznie rozpoznaje i konfiguruje\n"
+"monitor podłączony do komputera. W innym przypadku należy\n"
+"ręcznie wybrać z listy posiadany monitor.\n"
+"\n"
+"\n"
+"\n"
+"Rozdzielczość\n"
+"\n"
+" W tym miejscu można wybrać rozdzielczość i głębię kolorów spośród\n"
+"opcji dostępnych dla danego sprzętu. Wybierz tą, która najlepiej\n"
+"spełnia twoje wymagania (będzie można zmienić wybrane parametry\n"
+"także po instalacji). Przykład wybranej konfiguracji jest wyświetlony\n"
+"na monitorze.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"--W zależności od sprzętu ten wpis może się pojawić lub nie.\n"
+"\n"
+" System będzie próbował otworzyć ekran graficzny o żądanej\n"
+"rozdzielczości. Jeśli użytkownik będzie widział komunikat wyświetlany\n"
+"w trakcie testu oraz odpowie \"%s\", wówczas instalator podejmie\n"
+"kolejny krok. W przypadku, gdy komunikat nie będzie widoczny,\n"
+"oznacza to, że jakaś część automatycznie wykrytej konfiguracji jest\n"
+"niepoprawna. Test zakończy się automatycznie po 12 sekundach,\n"
+"przenosząc użytkownika z powrotem do menu. Należy zmieniać\n"
+"konfigurację, aż do momentu, gdy grafika będzie poprawnie wyświetlana.\n"
+"\n"
+"\n"
+"\n"
+"Opcje\n"
+"\n"
+" W tym miejscu można wybrać, czy komputer ma być automatycznie\n"
+"przełączany w tryb graficzny podczas uruchamiania. Oczywiście, lepiej\n"
+"jest wybrać \"%s\" jeśli maszyna ma pracować jako serwer lub też,\n"
+"gdy nie udało się poprawnie skonfigurować wyświetlania."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+"\n"
+" Instalator zazwyczaj automatycznie wykrywa i konfiguruje monitor\n"
+"podłączony do komputera. Jeśli jednak ten przypadek nie nastąpi, można\n"
+"wybrać z listy aktualnie podłączony do komputera monitor."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Rozdzielczość\n"
+"\n"
+" W tym miejscu można wybrać rozdzielczość oraz głębię kolorów spośród\n"
+"opcji dostępnych dla danego sprzętu. Wybierz te opcje, które najlepiej\n"
+"odpowiadają twoim potrzebom (te ustawienia będzie można zmienić także\n"
+"po instalacji). Przykład wybranej konfiguracji jest wyświetlony na\n"
+"monitorze."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"W przypadku, gdy twojej karty dostępne są różne serwery, z lub bez\n"
+"akceleracji 3D, będzie można wybrać serwer najlepiej odpowiadający\n"
+"potrzebom użytkownika."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Opcje\n"
+"\n"
+" Ten krok umożliwia wybór czy komputer ma przełączać się automatycznie\n"
+"do interfejsu graficznego podczas uruchamiania. Oczywiście, można zaznaczyć\n"
+"\"%s\" jeśli komputer ma działać jako serwer, lub jeśli nie udało się\n"
+"skonfigurować ekranu graficznego."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"W tym etapie instalacji należy określić, gdzie na dysku zostanie\n"
+"zainstalowany system operacyjny Mandriva Linux. Jeśli dysk jest pusty\n"
+"lub istniejące systemy operacyjne zajmują całe dostępne miejsce,\n"
+"należy podzielić dysk na partycje.\n"
+"Partycjonowanie to po prostu logiczny podział twardego dysku na oddzielne\n"
+"obszary w celu zainstalowania systemu Mandriva Linux.\n"
+"\n"
+"Ponieważ efekt partycjonowania jest nieodwracalny, czynność wydaje się\n"
+"niebezpieczna i jest stresująca dla niedoświadczonych użytkowników.\n"
+"Na szczęście, instalator zawiera druida upraszczającego ten proces.Przed "
+"zdecydowaniem się na ten krok warto poświęcić nieco czasu na\n"
+"zapoznanie się z dokumentacją.\n"
+"\n"
+"Możliwych jest kilka rozwiązań zależnych od konfiguracji dysku twardego:\n"
+"\n"
+" * \"%s\": ta opcja po prostu oznacza automatyczne\n"
+"partycjonowanie niezapisanych dysków. Nie zostaną wyświetlone żadne\n"
+"dodatkowe pytania.\n"
+"\n"
+" * \"%s\": gdy druid wykrył jedną lub więcej\n"
+"istniejących partycji linuksowych. Wybierz to rozwiązanie, jeśli\n"
+"chcesz użyć tych partycji do nowej instalacji. Zostanie wyświetlona\n"
+"prośba o wybranie punktu montowania dla każdej z tych partycji.\n"
+"Domyślnie wybierane są już zdefiniowane punkty montowania,\n"
+"w większości przypadków lepiej ich nie zmieniać.\n"
+"\n"
+" * \"%s\": jeśli na komputerze\n"
+"został zainstalowany Microsoft Windows, który zajmuje całą przestrzeń\n"
+"dyskową, to należy utworzyć wolne miejsce dla Linuksa. Aby to zrobić, można\n"
+"usunąć partycję MS Windows wraz z danymi (zobacz rozwiązanie \"Kasowanie\n"
+"zawartości dysku\") lub też zmienić rozmiar partycji FAT lub NTFS Windows.\n"
+"Operacja zmiany wielkości partycji może być przeprowadzona bez utraty\n"
+"danych, po przeprowadzeniu defragmentacji. Archiwizacja danych jest\n"
+"jednak wysoce wskazana. To rozwiązanie jest zalecane w przypadku chęci\n"
+"używania zarówno Linuksa, jak i MS Windows na tym samym komputerze\n"
+"\n"
+" Przed wybraniem tej opcji, należy uświadomić sobie, że partycja Microsoft\n"
+"Windows będzie mniejsza, niż jest obecnie. Oznacza to także mniej miejsca\n"
+"do instalacji nowych programów lub przechowywania danych.\n"
+"\n"
+" * \"%s\": Jeśli chcesz usunąć z dysku\n"
+"wszystkie dane i wszystkie partycje istniejące na dysku oraz zainstalować\n"
+"w to miejsce nowy system Mandriva Linux, wybierz to rozwiązanie.\n"
+"Pamiętaj, że po zatwierdzeniu tego wyboru nie nie będzie możliwości "
+"odwrotu.\n"
+"\n"
+" !! Po wybraniu tej opcji wszystkie dane zostaną utracone !!\n"
+"\n"
+" * \"%s\": ta opcja spowoduje wymazanie wszystkich danych\n"
+"oraz rozpoczęcie instalacji na czystym dysku. Wszystkie zapisane dane\n"
+"zostaną utracone.\n"
+"\n"
+" !! Po wybraniu tej opcji wszystkie dane zostaną utracone !!\n"
+"\n"
+"* \"%s\": wybierz tą opcję, jeśli chcesz\n"
+"partycjonować dysk ręcznie. Wybranie tej opcji daje duże możliwości, lecz\n"
+"jest bardzo niebezpieczne. Bardzo łatwo można utracić wszystkie dane.\n"
+"Ta opcja jest dlatego zalecana tylko dla użytkowników posiadających\n"
+"już doświadczenie w partycjonowaniu dysków. Aby uzyskać więcej informacji\n"
+"na temat tego, w jaki sposób korzystać z narzędzia DiskDrake, przeczytaj\n"
+"podręcznik (rozdział \"Zarządzanie partycjami\")."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Wykorzystaj istniejące partycje"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Wymaż cały dysk"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Tak więc instalacja zakończyła się i system GNU/Linux jest gotowy do \n"
+"użycia. Kliknij przycisk \"%s\", aby ponownie uruchomić system.\n"
+"Nie zapomnij o usunięciu nośnika instalacyjnego (CD lub dyskietka).\n"
+"Pierwszą rzeczą jaką użytkownik zobaczy po zakończeniu testów sprzętu\n"
+"jest menu programu rozruchowego, dające możliwość wybrania systemu,\n"
+"który powinien zostać uruchomiony.\n"
+"\n"
+"Przycisk \"%s\" powoduje wyświetlenie dwóch dodatkowych przycisków:\n"
+"\n"
+" * \"%s\": aby utworzyć dyskietkę\n"
+"służącą do przeprowadzenia instalacji bez pomocy operatora, w ten\n"
+"sam sposób, jak przeprowadzona przed chwilą instalacja.\n"
+"\n"
+" Uwaga: po kliknięciu przycisku dostępne będą dwie różne opcje:\n"
+"\n"
+" * \"%s\": określa częściowo zautomatyzowaną instalację, zaś\n"
+"w przypadku kroku partycjonowania (i tylko w tym) przypomina tryb \n"
+"interaktywny\n"
+"\n"
+" * \"%s\" Pełna automatyzacja instalacji: twardy dysk jest\n"
+"całkowicie przepisywany, wszystkie dane zostaną utracone.\n"
+"\n"
+" Ta funkcja jest bardzo użyteczna w przypadku instalacji na dużej liczbie\n"
+"podobnych komputerów. Zajrzyj do rozdziału o automatycznej instalacji na\n"
+"naszej stronie www;\n"
+"\n"
+" * \"%s\"(*): zapisuje listę pakietów wybranych\n"
+"w trakcie instalacji. Wówczas podczas przeprowadzania innych instalacji\n"
+"należy włożyć dyskietkę do napędu, uruchomić instalację\n"
+"rozpoczynającą się od ekranu pomocy przez naciśnięcie klawisza [F1],\n"
+"wpisanie polecenie >>linux defcfg=\"floppy\"<< oraz naciśnięcie klawisza\n"
+"[Enter].\n"
+"\n"
+"(*) Wymagana jest dyskietka sformatowana z systemem plików FAT. Aby\n"
+"utworzyć taką dyskietkę w systemie GNU/Linux, wpisz polecenie\n"
+"\"mformat a:\", lub \"fdformat /dev/fd0\", a następnie \"mkfs.vfat /dev/fd0"
+"\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Tworzenie dyskietki automatycznej instalacji"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Jeśli wybierzesz ponowne użycie jakichś partycji GNU/Linux, może\n"
+"istnieć potrzeba ponownego sformatowania ich w celu usunięcia\n"
+"wszystkich danych, które zawierają. Aby to uczynić, wybierz także te\n"
+"partycje.\n"
+"\n"
+"Należy pamiętać, że nie jest konieczne formatowanie wszystkich istniejących\n"
+"już partycji. Sformatowane muszą być partycje zawierające system "
+"operacyjny:\n"
+"\"/\", \"/usr\" oraz \"/var\", nie jest natomiast konieczne formatowanie\n"
+"partycji zawierających dane, które chcesz zachować (zazwyczaj \"/home\").\n"
+"\n"
+"Uważnie wybieraj partycje do sformatowania. Po sformatowaniu, wszystkie\n"
+"dane zostaną utracone bez możliwości ich odzyskania.\n"
+"\n"
+"Kliknij \"%s\", jeśli już można przystąpić do formatowania partycji.\n"
+"\n"
+"Kliknij \"%s\", jeśli chcesz wybrać inne partycje dla nowej instalacji\n"
+"Mandriva Linux.\n"
+"\n"
+"Kliknij \"%s\" jeśli chcesz wybrać sprawdzanie niektórych partycji\n"
+"w poszukiwaniu uszkodzonych sektorów na dysku."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"W czasie, jaki upłynął od początkowego wydania Mandriva Linux, być może "
+"niektóre pakietyzostały zaktualizowane. Niektóre błędy mogły\n"
+"zostać naprawione, zaś problemy z bezpieczeństwem rozwiązane. Aby\n"
+"skorzystać z możliwości aktualizacji, dobrze jest pobrać część danych\n"
+"z Internetu. Wybierz \"%s\", jeśli posiadasz działające połączenie\n"
+"internetowe lub \"%s\", jeśli wolisz zainstalować pakiety aktualizacyjne\n"
+"później.\n"
+"\n"
+"Po wybraniu \"%s\" zostanie wyświetlona lista miejsc, z których można\n"
+"pobrać dane aktualizacyjne. Wybierz najbliższą lokalizację. Pojawi się\n"
+"wówczas drzewo wyboru: przejrzyj informacje i naciśnij \"%s\"\n"
+",aby pobrać i zainstalować wybrane pakiety lub \"%s\", aby anulować."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Nadszedł czas na wybór poziomu bezpieczeństwa, który ma zostać ustawiony\n"
+"na komputerze. Jako żelazną zasadę należy przyjąć, że im komputer bardziej\n"
+"jest dostępny w sieci i dane przechowywane są ważniejsze, tym wyższy\n"
+"powinien być poziom bezpieczeństwa. Jednak wyższe bezpieczeństwo\n"
+"zazwyczaj okupione jest zwiększeniem poziomu trudności używania systemu.\n"
+"\n"
+"Jeśli nie wiesz co wybrać, użyj domyślnej opcji. Będzie można zmienić "
+"poziom\n"
+"bezpieczeństwa w późniejszym czasie przy użyciu narzędzia draksec\n"
+"uruchamianego z Centrum Sterowania Mandriva Linux.\n"
+"\n"
+"Pole \"%s\" może informować system o użytkowniku komputera odpowiedzialnego\n"
+"za bezpieczeństwo. Komunikaty bezpieczeństwa będą przesyłane na ten adres."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Administrator zabezpieczeń"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"W tym etapie instalacji wybierasz partycje, na których będzie instalowany\n"
+"Mandriva Linux. Jeśli partycje istnieją (np. pozostały po poprzedniej "
+"instalacji,\n"
+"lub też zostały założone innym narzędziem), to można ich użyć do "
+"instalacji.\n"
+"W innym przypadku należy je utworzyć.\n"
+"\n"
+"Utworzenie partycji należy rozpocząć od wybrania dysku. Robi się to przez\n"
+"kliknięcie na zakładce \"hda\" dla pierwszego dysku IDE, \"hdb\" dla "
+"drugiego,\n"
+"lub \"sda1\" dla pierwszego dysku SCSI, itd.\n"
+"\n"
+"W celu podzielenia dysku na partycje można użyć następujących opcji:\n"
+"\n"
+" * \"%s\": ta opcja kasuje wszystkie partycje na wybranym dysku.\n"
+"\n"
+" * \"%s\": ta opcja automatycznie tworzy partycje\n"
+" ext3 oraz swap na wolnej (niespartycjonowanej) przestrzeni na dysku\n"
+"\n"
+" * \"%s\": daje dostęp do dodatkowych opcji:\n"
+"\n"
+" * \"%s\": zapisuje tablicę partycji na dyskietkę.\n"
+" Opcja ta jest użyteczna w przypadku konieczności odzyskania tablicy\n"
+" w późniejszym czasie. Zalecane jest wykonanie tego kroku.\n"
+"\n"
+" * \"%s\": pozwala na przywrócenie poprzednio\n"
+" zapisanej na dyskietce tablicy partycji.\n"
+"\n"
+" * \"%s\": jeśli tablica partycji została\n"
+" uszkodzona można spróbować ją naprawić. Należy pamiętać że opcja ta\n"
+" może zakończyć się niepowodzeniem.\n"
+"\n"
+" * \"%s\": porzuca wszelkie zmiany i wczytuje początkową tablicę "
+"partycji.\n"
+"\n"
+" * \"%s\": odznaczenie tej opcji\n"
+" powoduje, że konieczność ręcznego montowania takich napędów, jak "
+"stacje\n"
+" dyskietek czy napędy CD.\n"
+"\n"
+" * \"%s\": jeśli chcesz skorzystać z druida, aby wykonać proces\n"
+" partycjonowania dysku. Opcja zalecana w przypadku gdy użytkownik nie\n"
+" posiada wiedzy dotyczącej partycjonowania dysków.\n"
+"\n"
+" * \"%s\": użyj tej opcji jeśli chcesz wycofać wszystkie zmiany\n"
+"\n"
+" * \"%s\": umożliwia uzyskanie\n"
+" dostępu do dodatkowych akcji dotyczących dysku (typ, opcje, format)\n"
+" oraz podaje więcej informacji na jego temat.\n"
+"\n"
+" * \"%s\": Jeśli proces partycjonowania został zakończony, opcja ta\n"
+" zapisze zmiany na dysk.\n"
+"\n"
+"Podczas definiowania rozmiaru partycji, można ustawić dokładnie\n"
+"rozmiar, używając klawiszy strzałek na klawiaturze.\n"
+"\n"
+"Uwaga: Można uzyskać dostęp do dowolnych opcji za pomocą klawiatury,\n"
+"przy pomocy klawiszy [Tab] oraz strzałek [Góra/Dół].\n"
+"\n"
+"Po wybraniu partycji można użyć klawiszy:\n"
+"\n"
+" * Control-c, aby utworzyć nową partycję (jeśli wybrano pustą partycję);\n"
+"\n"
+" * Control-d, aby usunąć partycję;\n"
+"\n"
+" * Control-m, aby ustawić punkt montowania;\n"
+"\n"
+"Aby uzyskać informacje dotyczące różnych dostępnych rodzajów systemów\n"
+"plików, należy przeczytać rozdział ext2fs podręcznika.\n"
+"\n"
+"Jeśli instalacja odbywa się na komputerze PPC, system będzie wymagał\n"
+"utworzenia małej partycji HFS \"rozruchowej\" (bootstrap) o wielkości\n"
+"co najmniej 1MB, która będzie używana przez program rozruchowy yaboot.\n"
+"Jeśli chcesz, aby ta partycja była większa, powiedzmy 50 MB, można\n"
+"ją traktować jako użyteczne miejsce np. do przechowywania zapasowego\n"
+"jądra oraz obrazów do uniknięcia skutków ewentualnych awarii "
+"uniemożliwiających\n"
+"rozruch systemu z normalnej partycji."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Automatyczne montowanie nośników wymiennych"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Przełącz między trybem zwykłym a zaawansowanym"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Na dysku wykryto więcej niż jedną partycję Windows. Wybierz, którą\n"
+"z nich chcesz zmniejszyć w celu zainstalowania systemu Mandriva Linux\n"
+"\n"
+"Każda partycja jest określana za pomocą informacji: \"Nazwa linuksowa\",\n"
+"\"Nazwa Windows\" i \"Rozmiar\".\n"
+"\n"
+"Nazwa linuksowa jest określana następująco: \"typ dysku\",\"numer dysku\",\n"
+"\"numer partycji\". (na przykład \"hda1\").\n"
+"\n"
+"\"Typ dysku\" to \"hd\" w przypadku dysków IDE, \"sd\" w przypadku SCSI\n"
+"\n"
+"\"Numer dysku\" to litera po \"hd\" lub \"sd\". W przypadku dysku IDE:\n"
+"\n"
+" * \"a\" oznacza pierwszy dysk na pierwszym kontrolerze IDE\n"
+"\n"
+" * \"b\" oznacza drugi dysk na pierwszym kontrolerze IDE\n"
+"\n"
+" * \"c\" oznacza pierwszy dysk na drugim kontrolerze IDE\n"
+"\n"
+" * \"d\" oznacza drugi dysk na drugim kontrolerze IDE\n"
+"\n"
+"W przypadku dysków SCSI \"a\" oznacza najniższy identyfikator SCSI,\n"
+"\"b\" - drugi kolejny identyfikator SCSI, itd.\n"
+"\n"
+"\"Nazwa Windows\" to litera dysku w systemie Windows (pierwszy dysk \n"
+"lub partycja to \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": zaznacz odpowiedni kraj. Jeśli nie znajdujesz się w tym kraju,\n"
+"kliknij przycisk \"%s\" oraz wybierz inny kraj. Jeśli twój kraj\n"
+"nie jest wyświetlony na pierwszej liście, kliknij przycisk \"%s\"\n"
+"aby otrzymać pełną listę krajów."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Ten krok jest aktywowany tylko wtedy, jeśli na komputerze została\n"
+"znaleziona stara partycja GNU/Linux.\n"
+"\n"
+"Instalator musi teraz otrzymać informację, czy chcesz przeprowadzić nową\n"
+"instalację, czy też uaktualnić istniejący system Mandriva Linux:\n"
+"\n"
+" * \"%s\": W większości przypadków, ta opcja powoduje całkowite\n"
+"usunięcie starego systemu. Jednak w zależności od schematu\n"
+"partycjonowania, można zapobiec nadpisaniu niektórych z istniejących\n"
+"danych (szczególnie katalogów \"home\"). Jeśli chcesz zmienić sposób\n"
+"partycjonowania twardych dysków, lub też system plików, należy użyć tej "
+"opcji.\n"
+"\n"
+" * \"%s\": Ta klasa instalacji umożliwia uaktualnienie pakietów\n"
+"aktualnie zainstalowanych w systemie Mandriva Linux. Twój bieżący\n"
+"schemat partycjonowania oraz dane użytkownika nie zostaną zmienione.\n"
+"Większość innych kroków konfiguracyjnych pozostanie dostępna,\n"
+"podobnie do instalacji standardowej.\n"
+"\n"
+"Użycie wersji \"Uaktualnienie\" powinno zadziałać dobrze na systemach\n"
+"Mandriva Linux w wersji \"8.1\" i późniejszych. Przeprowadzanie\n"
+"uaktualnienia z wersji wcześniejszych niż \"8.1\" nie jest zalecane."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"W zależności od wybranego języka, instalator automatycznie\n"
+"dobierze określony typ konfiguracji klawiatury. Zaznacz, że wybór\n"
+"ci odpowiada lub wybierz inny układ klawiatury.\n"
+"\n"
+"Jednak można nie mieć\n"
+"klawiatury odpowiadającej danemu językowi. Na przykład, Szwajcar mówiący\n"
+"po angielsku, może wciąż chcieć używać klawiatury szwajcarskiej. Albo\n"
+"jeśli osoba porozumiewa się po angielsku i mieszka w prowincji Quebec,\n"
+"język rodzimy oraz układ klawiatury nie będą się ze sobą zgadzać.\n"
+"Jeśli zachodzi taka sytuacja można wrócić, aby wybrać odpowiedni\n"
+"układ klawiatury z listy.\n"
+"\n"
+"Kliknij przycisk \"%s\", aby wyświetlić pełną listę\n"
+"obsługiwanych klawiatur.\n"
+"\n"
+"Po wybraniu układu klawiatury nie opartego na alfabecie łacińskim, następne\n"
+"okno umożliwi wybranie skrótów klawiszowych przełączających układ\n"
+"klawiatury z łacińskiego na narodowy."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Pierwszym krokiem jest wybór preferowanego języka.\n"
+"\n"
+"Twój wybór preferowanego języka będzie miał wpływ na język\n"
+"dokumentacji, instalatora oraz systemu w ogólności. Najpierw należy\n"
+"wybrać region, w którym znajduje się użytkownik a następnie język\n"
+"jakiego używa.\n"
+"\n"
+"Kliknięcie przycisku \"%s\", pozwoli na wybranie innych\n"
+"języków, które zostaną zainstalowane na komputerze.\n"
+"Wybranie innych języków spowoduje zainstalowanie plików zależnych\n"
+"od języka dla dokumentacji oraz aplikacji. Na przykład, jeśli na komputerze\n"
+"pracują użytkownicy z Hiszpanii należy wybrać angielski z widoku\n"
+"głównego drzewa zaś w sekcji \"Zaawansowane\" zaznaczyć opcję\n"
+"\"%s\".\n"
+"\n"
+"Uwaga dotycząca obsługi UTF-8 (unikodu): Unikod jest nowym kodowaniem\n"
+"znaków umożliwiającym równoczesną osługę wszystkich istniejących\n"
+"języków. Jednak pełna obsługa tego standardu jest wciąż w trakcie\n"
+"rozwoju w systemach GNU/Linux. Z tego powodu, Mandriva Linux\n"
+"używa go lub nie w zależności od wyboru użytkownika:\n"
+"\n"
+"* Po wybraniu języków z często używanym kodowaniem (języki latin1,\n"
+"rosyjski, japoński, chiński, koreański, rajski, grecki, turecki, większość\n"
+"języków używających iso-8859-2), kodowanie to będzie używane domyślnie;\n"
+"\n"
+"* Inne języki będą domyślnie używały Unicode;\n"
+"\n"
+"* Jeśli wymagane są dwa lub więcej języków i te języki nie używają\n"
+"identycznego kodowania, to Unicode będzie zainstalowany domyślnie dla\n"
+"całego systemu;\n"
+"\n"
+"* W końcu, unicode może być także wymuszony dla systemu na żądanie\n"
+"użytkownika poprzez zaznaczenie opcji \"%s\" niezależnie od wybranego "
+"języka.\n"
+"\n"
+"Nie ma ograniczeń na liczbę języków dodanych dodatkowo do już wybranego.\n"
+"Można wybrać kilka, lub nawet zainstalować je wszystkie wybierając\n"
+"opcję \"%s\". Zaznaczenie obsługi dla języka oznacza tłumaczenia, czcionki,\n"
+"słowniki, itd. dla każdego zainstalowanego języka.\n"
+"\n"
+"Aby przełączać się pomiędzy różnymi językami zainstalowanymi w systemie,\n"
+"można uruchomić polecenie \"localedrake\" z poziomu\n"
+"użytkownika \"root\" co spowoduje zmianę języka używanego przez cały\n"
+"system. Uruchomienie polecenia z konta zwykłego użytkownika spowoduje\n"
+"zmianę ustawień językowych tylko dla tego użytkownika."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Hiszpański"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Instalator zazwyczaj wykrywa liczbę przycisków myszy. W innym przypadku\n"
+"zakłada, że mysz posiada dwa przyciski i ustawi system na emulacje\n"
+"trzech przycisków. Trzeci przycisk myszy dwuprzyciskowej\n"
+"może być \"użyty\" poprzez równoczesne kliknięcie lewego i prawego\n"
+"przycisku myszy. Instalator automatycznie wykryje także czy mysz jest\n"
+"typu PS/2, szeregowa czy też USB.\n"
+"\n"
+"W przypadku posiadania myszy 3-przyciskowej bez kółka, można\n"
+"wybrać mysz \"%s\". Instalator następnie skonfiguruje mysz\n"
+"w taki sposób, że będzie można zasymulować za jej pomocą kółko.\n"
+"Robi się to poprzez naciśnięcie środkowego przycisku i poruszanie\n"
+"myszy w górę lub w dół.\n"
+"\n"
+"Jeśli z różnych powodów chcesz wybrać inny typ myszy, należy wybrać\n"
+"odpowiednią pozycję z listy.\n"
+"\n"
+"Można wybrać opcję \"%s\" aby ustawić \"zwykły\" typ myszy, który\n"
+"będzie działać prawie z każdą myszą.\n"
+"\n"
+"Jeśli zostanie wybrana mysz inna niż domyślna, zostanie wyświetlony\n"
+"ekran testowy. Użytkownik powinien sprawdzić przyciski oraz kółka,\n"
+"aby upewnić się co do poprawności konfiguracji. Jeśli mysz nie pracuje\n"
+"poprawnie, należy nacisnąć klawisz spacji lub [Enter] aby anulować test\n"
+"oraz wrócić do listy wyboru. \n"
+"\n"
+"Mysz z kółkiem czasem nie jest wykrywana automatycznie. Należy\n"
+"wówczas wybrać odpowiednią pozycję z listy. Trzeba upewnić się, czy "
+"wybrano \n"
+"mysz podłączoną do odpowiedniego portu. Po zakończeniu wybierania\n"
+"i naciśnięciu przycisku \"%s\", zostanie wyświetlony na ekranie obraz\n"
+"myszy. Poruszaj kółkiem, aby upewnić się czy zostało ono poprawnie\n"
+"aktywowane. Jeśli mysz na ekranie będzie zmieniała ustawienie kółka\n"
+"podczas przesuwania kółka myszy, sprawdź przyciski oraz upewnij się,\n"
+"że wskaźnik przesuwa się po ekranie przy zmianie położenia."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "z emulacją kółka"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Uniwersalna | Dowolna mysz PS/2 i USB"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Wybierz właściwy port. Na przykład numer portu \"COM1\" z MS Windows\n"
+"w GNU/Linux nazywa się \"ttyS0\"."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Nadszedł czas na podjęcie najważniejszej decyzji dotyczącej bezpieczeństwa\n"
+"twojego systemu GNU/Linux: należy podać hasło użytkownika \"root\". \n"
+"\"root\" jest administratorem systemu i jedynym użytkownikiem mającym\n"
+"prawa do wykonywania aktualizacji, dodawania użytkowników, zmiany\n"
+"konfiguracji systemu itd. W skrócie \"root\" może zrobić w systemie\n"
+"wszystko! Z tego powodu hasło nie może być łatwe do odgadnięcia\n"
+"i instalator poinformuje cię, jeśli będzie ono zbyt proste. Można\n"
+"wcale nie ustawiać hasła, lecz nie jest zalecane pozostawianie go pustym\n"
+"z jednego powodu. Nie należy zakładać, że gdy uruchamiasz GNU/Linux to\n"
+"inne systemy operacyjne są wolne od błędów. Ponieważ \"root\" może\n"
+"obejść wszelkie zabezpieczenia i niechcący wymazać wszelkie dane z dysku,\n"
+"zalecana jest ostrożność przy logowaniu się na to konto.\n"
+"\n"
+"Hasło powinno zawierać znaki alfanumeryczne i posiadać długość\n"
+"co najmniej 8 znaków. Nigdy nie należy zapisywać hasła użytkownika\n"
+"\"root\", gdyż zostawia to zbyt dużą lukę bezpieczeństwa w systemie.\n"
+"\n"
+"Jednak zbyt długie lub zbyt skomplikowane hasło trudno jest zapamiętać!\n"
+"\n"
+"Hasło nie będzie wyświetlane na ekranie podczas wpisywania. Dlatego też\n"
+"musi być ono dodatkowo potwierdzone w celu zminimalizowania możliwości\n"
+"popełniania błędu. Jeśli dwa razy zostanie wpisane to samo \"błędne\"\n"
+"hasło, należy go użyć podczas pierwszego logowania i zmienić je na\n"
+"właściwe.\n"
+"\n"
+"Jeśli chcesz aby komputer, był kontrolowany\n"
+"przez serwer uwierzytelniania, kliknij przycisk \"%s\".\n"
+"\n"
+"Można wybrać odpowiednią opcję \"%s\" spośród LDAP, NIS lub Domeny PDC\n"
+"Windows. Jeśli nie wiesz, której opcji wybrać, zapytaj administratora sieci\n"
+"\n"
+"Jeśli masz problemy z zapamiętywaniem haseł, można wybrać opcję \"%s\"\n"
+"w przypadku, gdy komputer nie jest połączony z Internetem i ufasz\n"
+"wszystkim osobom posiadającym do niego dostęp."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "uwierzytelnianie"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Program rozruchowy to niewielki program uruchamiający komputer tuż po\n"
+"jego włączeniu. Jest on odpowiedzialny za uruchomienie całego systemu.\n"
+"Zazwyczaj instalacja programu rozruchowego jest całkowicie zautomatyzowana\n"
+"Instalator przeanalizuje sektor rozruchowy oraz wykona operacje zależne od\n"
+"tego, co zostanie tam znalezione:\n"
+"\n"
+" * jeśli zostanie znaleziony sektor rozruchowy Windows zostanie on\n"
+"zastąpiony sektorem rozruchowym GRUB/LILO. Dzięki temu będzie możliwość\n"
+"uruchamiania zarówno systemu GNU/Linux jak i innego systemu operacyjnego.\n"
+"\n"
+" * jeśli zostanie znaleziony sektor rozruchowy GRUB lub LILO zostanie\n"
+"on zastąpiony nowym sektorem.\n"
+"\n"
+"W przypadku, gdy nie będzie można określić sektora rozruchowego, instalator\n"
+"wyświetli pytanie, gdzie należy go umieścić. Zazwyczaj \"%s\" jest\n"
+"najbezpieczniejszym miejscem. Wybranie \"%s\" nie spowoduje zainstalowania\n"
+"żadnego programu rozruchowego. Użyj tej opcji tylko w przypadku gdy\n"
+"wiesz co robisz."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Nadszedł czas na wybranie systemu drukowania. Inne systemy operacyjne\n"
+"mogą zaoferować jeden, lecz Mandriva Linux oferuje dwa. Każdy z tych\n"
+"systemów wydruku jest najlepszy dla określonego typu konfiguracji.\n"
+"\n"
+" * \"%s\" oznaczający \"print, do not queue\" (drukuj, nie buforuj),\n"
+"może zostać wybrany, jeśli komputer jest bezpośrednio połączony z drukarką,\n"
+"jeśli nie boisz się zatorów papieru w drukarce lub też nie posiadasz\n"
+"drukarki sieciowej. (\"%s\" obsłuży tylko bardzo proste sieci i jest\n"
+"cokolwiek wolny w przypadku korzystania z innych sieci.)\n"
+"Wybranie opcji \"pdq\" jest zalecane, jeżeli jest to twoje pierwsze\n"
+"doświadczenie z GU/Linux.\n"
+"\n"
+" * \"%s\" - \"Common Unix Printing System\"(zwykły system drukowania\n"
+"Uniksa), jest niezastąpiony, jeśli chodzi o drukowanie za pomocą drukarki\n"
+"lokalnej. Jest jednym z częściej używanych systemów drukowania. Jest on\n"
+"prosty i może pracować jako serwer lub też klient dla starożytnego systemu\n"
+"drukowania \"lpd\", więc pracować także ze starszymi systemami "
+"operacyjnymi,\n"
+"które wciąż potrzebują usług drukowania. Będąc całkiem wydajnym, podstawowa\n"
+"konfiguracja jest prawie tak łatwa jak w przypadku \"pdq\". Jeśli chcesz\n"
+"emulować serwer \"lpq\", upewnij się, że włączony jest demon \"cups-lpd\".\n"
+"\"%s\" zawiera graficzne nakładki do drukowania lub wyboru opcji\n"
+"służących do zarządzania drukarką.\n"
+"\n"
+"Jeśli wybór zostanie dokonany w tym miejscu, zaś później okaże się,\n"
+"że system wydruku nie odpowiada twoim potrzebom, można go zmienić,\n"
+"uruchamiając program PrinterDrake z Centrum Sterowania Mandriva.\n"
+"Należy tam także kliknąć przycisk \"%s\"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Tryb zaawansowany"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"Instalator próbuje najpierw wykryć urządzenia IDE obecne w komputerze.\n"
+"Wykrywana jest także jedna (lub więcej) karta PCI SCSI. Jeśli karta SCSI\n"
+"zostanie znaleziona, instalator automatycznie zainstaluje odpowiedni\n"
+"sterownik.\n"
+"\n"
+"Trzeba jednak przyznać, że proces wykrywania nie zawsze zakończy się\n"
+"wykryciem całego sprzętu. Jeśli taki przypadek zajdzie, należy ręcznie "
+"wybrać\n"
+"odpowiednie urządzenie.\n"
+"Jeśli istnieje potrzeba ręcznego wyboru karty SCSI, instalator zapyta, czy\n"
+"dla niej mają zostać ustawione jakiś opcje. Należy zezwolić na zbadanie\n"
+"sprzętu w celu ustawienia specyficznych dla karty opcji, które powinny "
+"zostać\n"
+"zainicjowane. Zazwyczaj działa to dobrze.\n"
+"\n"
+"Jeśli instalator nie będzie potrafił zbadać sprzętu w celu określenia,\n"
+"które z parametrów muszą zostać ustawione do poprawnego działania sprzętu,\n"
+"należy ręcznie skonfigurować sterownik."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": jeśli karta dźwiękowa została wykryta w systemie, jest ona\n"
+"wyświetlana w tym miejscu. Jeśli zauważysz, że wyświetlana karta\n"
+"nie jest tą, która jest aktualnie obecna w systemie, możesz kliknąć\n"
+"przycisk i wybrać inny sterownik."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Instalator przeglądowo zaprezentuje zestawienie różnych informacji, jakie\n"
+"posiada na temat systemu. W zależności od zainstalowanego sprzętu, można\n"
+"przejrzeć kilka (lub wszystkie) z poniższych pozycji. Każdej pozycji\n"
+"towarzyszy narzędzie konfiguracyjne umożliwiające jej zmianę, uruchamiane\n"
+"po kliknięciu przycisku \"%s\".\n"
+"\n"
+" * \"%s\": sprawdzanie aktualnej konfiguracji układu klawiatury\n"
+"oraz możliwość jej zmiany.\n"
+"\n"
+" * \"%s\": sprawdzanie bieżącego wyboru kraju. Jeśli nie przebywasz\n"
+"w danym kraju, kliknij przycisk \"%s\" i zmień kraj na inny.\n"
+"Jeśli twój kraj nie znajduje się na pierwszej wyświetlanej liście,\n"
+"należy kliknąć przycisk \"%s\", aby uzyskać możliwość wyboru pozycji z\n"
+"pełnej listy krajów.\n"
+"\n"
+" * \"%s\": domyślnie instalator ustawia strefę czasową\n"
+"w oparciu o wybrany kraj. Można kliknąć przycisk \"%s\", jeśli\n"
+"to ustawienie nie jest poprawne.\n"
+"\n"
+" * \"%s\": sprawdzanie bieżącej konfiguracji myszy oraz możliwość\n"
+"jej zmiany w razie potrzeby.\n"
+"\n"
+" * \"%s\": kliknięcie przycisku \"%s\" spowoduje otwarcie\n"
+"druida konfiguracji drukarki. Przeczytaj odpowiedni rozdział\n"
+"podręcznika, aby uzyskać więcej informacji na temat konfiguracji nowej\n"
+"drukarki. Interfejs wykorzystywany w tym miejscu jest podobny do tego,\n"
+"który jest używany w trakcie instalacji.\n"
+"\n"
+" * \"%s\": jeśli karta dźwiękowa została wykryta w systemie,\n"
+"zostanie ona tutaj wyświetlona. Jeśli zauważysz, że wyświetlona karta\n"
+"nie jest tą, która jest obecna w systemie, kliknij przycisk i wybierz\n"
+"inny sterownik.\n"
+"\n"
+" * \"%s\": jeśli w systemie została wykryta karta TV,\n"
+"jest ona tutaj wyświetlana. Jeśli posiadasz kartę telewizyjną, a nie\n"
+"została ona wykryta, kliknij przycisk \"%s\", aby spróbować\n"
+"skonfigurować ją ręcznie.\n"
+"\n"
+" * \"%s\": można kliknąć przycisk \"%s\" aby zmienić parametry\n"
+"powiązane z kartą w przypadku niepoprawnej konfiguracji.\n"
+"\n"
+" * \"%s\": domyślnie instalator konfiguruje interfejs\n"
+"graficzny w rozdzielczości \"800x600\" lub \"1024x768\". Jeśli chcesz\n"
+"wybrać inną opcję, kliknij przycisk \"%s\", aby zmienić ustawienie\n"
+"interfejsu graficznego.\n"
+"\n"
+" * \"%s\": jeśli chcesz skonfigurować połączenie z Internetem lub\n"
+"sieć lokalną użyj tej opcji. Zobacz na wydrukowaną dokumentację lub\n"
+"użyj Centrum Sterownia Mandriva Linux po zakończeniu instalacji,\n"
+"aby otrzymać pełną pomoc.\n"
+"\n"
+" * \"%s\": umożliwia konfigurację adresów pośrednika HTTP i FTP,\n"
+"w przypadku gdy komputer znajduje się za serwerem pośrednika.\n"
+"\n"
+" * \"%s\": ta pozycja umożliwia zmianę ustawień\n"
+"poziomu bezpieczeństwa wybranych w poprzednim kroku ().\n"
+"\n"
+" * \"%s\": jeśli planujesz łączenie komputera z Internetem,\n"
+"dobrym pomysłem jest zapewnienie ochrony przed włamaniami poprzez\n"
+"ustawienie zapory sieciowej. Przeczytaj odpowiedni\n"
+"rozdział podręcznika, aby uzyskać szczegóły dotyczące ustawień\n"
+"zapory sieciowej.\n"
+"\n"
+" * \"%s\": w razie potrzeby można zmienić konfigurację programu\n"
+"rozruchowego. Kliknij odpowiedni przycisk. Ta opcja powinna być używana\n"
+"przez doświadczonych użytkowników.\n"
+"\n"
+" * \"%s\": tutaj można wybrać, które usługi będą uruchamiane na\n"
+"komputerze. Jeśli planujesz używać tego komputera jako serwera,\n"
+"dobrze jest przejrzeć te ustawienia."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Karta ISDN"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Interfejs graficzny"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Wybierz dysk, który chcesz wykasować, by założyć na nim\n"
+"partycję Mandriva Linux. Pamiętaj, że wszystkie dane z tego\n"
+"dysku zostaną utracone bez możliwości odzyskania!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Wybierz \"%s\", jeśli chcesz usunąć wszystkie dane i partycje zapisane\n"
+"na tym dysku. Pamiętaj, po wybraniu \"%s\", nie będzie\n"
+"możliwe odzyskanie żadnych danych oraz partycji obecnych na dysku,\n"
+"włączając w to dane partycji Windows.\n"
+"\n"
+"Wybierz \"%s\", by anulować tą operację bez utraty danych i partycji\n"
+"obecnych w systemie."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Dalej ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Wstecz"
+
diff --git a/perl-install/install/help/po/pt.po b/perl-install/install/help/po/pt.po
new file mode 100644
index 000000000..6123254ac
--- /dev/null
+++ b/perl-install/install/help/po/pt.po
@@ -0,0 +1,1943 @@
+# translation of pt.po to Português
+#
+# Latest versions of po files are at http://www.mandrivalinux.com/l10n/pt.php3
+#
+# Copyright (C) 2000 Mandriva
+#
+# Fernando Moreira <fmoreira@netc.pt>, 1999.
+# Jorge Costa <Jorgercosta@netc.pt>, 2001.
+# José JORGE <jose.jorge@oreka.com>, 2002,2003.
+# Jose Jorge <jjorge@free.fr>, 2003, 2004, 2005.
+# Jose Carlos D. S. Saraiva <jose.d.s.saraiva@clix.pt>, 2004.
+# Zé <mmodem00@netvisao.pt>, 2004, 2005, 2006.
+# Américo José Melo <mmodem00@netvisao.pt>, 2004, 2005.
+# Ze <mmodem00@netvisao.pt>, 2004.
+# José Melo <mmodem00@gmail.com>, 2005.
+# José Melo <mmodme00@gmail.com>, 2005.
+# Jose JORGE <jjorge@free.fr>, 2005.
+# Zé <mmodem00@gmail.com>, 2006, 2007.
+msgid ""
+msgstr ""
+"Project-Id-Version: pt\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2007-02-18 17:17+0000\n"
+"Last-Translator: Zé <mmodem00@gmail.com>\n"
+"Language-Team: Português <pt@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Antes de continuar, deve ler atentamente os termos da licença. A licença\n"
+"cobre toda a distribuição Mandriva Linux. Se concorda com todos os termos\n"
+"presentes, active a caixa \"%s\". Se não concorda, clique no botão \"%s\"\n"
+"para reiniciar o seu computador."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux é um sistema multi-utilizador, o que significa que cada "
+"utilizador\n"
+"tem as suas próprias preferências, ficheiros e por aí a fora. Mas ao invés\n"
+"do root, que é o administrador do sistema, os utilizadores que adiciona\n"
+"neste ponto não serão autorizador a fazer qualquer mudança, excepto os\n"
+"seus próprios ficheiros e configurações, protegendo o sistema de mudanças\n"
+"não intencionais ou maliciosas que poderiam ter impacto. Vai ter que criar\n"
+"pelo menos um utilizador regular para si próprio -- esta é a conta que pode\n"
+"usar por rotina, no dia-à-dia. Contudo é muito fácil entrar como root,\n"
+"para fazer o que quer que seja, pode também ser muito perigoso! Um\n"
+"simples erro pode significar que o seu sistema não volte a trabalhar.\n"
+"Se cometer um erro sério como utilizador regular, o pior que pode\n"
+"acontecer, é que possa perder alguma informação, mas não afectará\n"
+"todo o sistema.\n"
+"\n"
+"O primeiro campo pergunta por um nome real. Claro que não é imperativo\n"
+"-- realmente até pode digitar o que quiser. O DrakX irá usar a primeira\n"
+"palavra que digitar neste campo e copiá-la para este campo \"%s\",\n"
+"que é o nome que este utilizador irá digitar para fazer se autenticar no\n"
+"sistema. O próximo passo é para digitar uma senha. De um posto de vista\n"
+"seguro, uma senha de um utilizador não privilegiado (regular) não é crucial\n"
+"como uma senha \"root\", mas não há razão para negligenciar a senha\n"
+"fazendo-a demasiado simples, ou simplesmente deixar em branco: claro\n"
+"que seriam os seus ficheiros que ficariam em risco.\n"
+"\n"
+"Assim que clicar em \"%s\",pode adicionar outros utilizadores. Adicionar\n"
+"um utilizador para cada um dos seus amigos, o seu pai, a sua irmã, etc.\n"
+"Clique em \"%s\" sempre que acabar de adicionar um utilizador.\n"
+"Ao clicar em \"%s\" permite-lhe mudar a \"shell\" predefinida para esse\n"
+"utilizador (bash por omissão).\n"
+"\n"
+"Quando terminar de adicionar utilizadores, será-lhe dado a escolher um\n"
+"utilizador que entrará automaticamente no sistema quando o computador\n"
+"arrancar. Se está interessado nessa opção (e não se importa com a\n"
+"segurança local), escolha o utilizador desejado e o gestor de janelas,\n"
+"depois clique em \"%s\".\n"
+"Se não está interessado nesta opção, desmarque a caixa \"%s\"."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Deseja usar esta opção?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Aqui estão listadas partições Linux existentes detectadas no seu disco.\n"
+"Pode manter as escolhas feitas pelo assistente, desde que sejam boas\n"
+"para a maioria das instalações comuns. Se fizer alguma alteração, tem\n"
+"que pelo menos definir uma partição root (\"/\"). Não escolha uma partição\n"
+"demasiado pequena ou não será capaz de instalar todo o software.\n"
+"Se quiser guardar os seus dados numa partição separada, irá também\n"
+"precisar de criar uma partição \"/home\" (apenas possível se tiver mais\n"
+"do que uma parição Linux disponível).\n"
+"\n"
+"Cada partição é listada como se segue: \"Nome\", \"Capacidade\".\n"
+"\n"
+"O \"Nome\" está estruturado: \"tipo do dispositivo do disco\", \"número do\n"
+"dispositivo\", \"número da partição\" (por exemplo, \"hda1\").\n"
+"\n"
+"\"O tipo do dispositivo do disco\" é \"hd\" se o controlador do disco for\n"
+"um dispositivo IDE e \"sd\" se for um dispositivo SCSI.\n"
+"\n"
+"\"O número do dispositivo do disco\" é sempre uma letra a seguir a \"hd\"\n"
+"ou \"sd\". Para os dispositivos IDE:\n"
+"\n"
+" * \"a\" significa \"dispositivo principal (master) do disco no primeiro\n"
+"controlador IDE\";\n"
+"\n"
+" * \"b\" significa \"dispositivo secundário (slave) do disco no primeiro\n"
+"controlador IDE\";\n"
+"\n"
+" * \"c\" significa \"dispositivo principal (master) do disco no segundo\n"
+"controlador IDE\";\n"
+"\n"
+" * \"d\" significa \"dispositivo secundário (slave) do disco no segundo\n"
+"controlador IDE\".\n"
+"\n"
+"Com os dispositivos SCSI, um \"a\" significa \"ID SCSI mais baixo\", um\n"
+"\"b\" significa \"ID SCSI segundo mais baixo\", etc."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"A instalação Mandriva Linux é distribuída em vários CD-ROMs. Se um pacote\n"
+"seleccionado estiver localizado noutro CD-ROM, o DrakX irá ejectar o actual\n"
+"CD e pedir para inserir o CD pedido. Se não tiver o CD em questão à mão,\n"
+"clique apenas em \"%s\", os pacote correspondentes não será instalados."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"É agora tempo de especificar que programas deseja instalar no seu\n"
+"sistema. Há centenas de pacotes disponíveis para o Mandriva Linux, e para\n"
+" simplificar a gestão, foram colocados em grupos de aplicações similares.\n"
+"\n"
+"O Mandriva Linux classifica os grupos de pacotes em quatro categorias.\n"
+"Pode misturar e combinar aplicações de várias categorias, para que a\n"
+"instalação de uma ``Estação de trabalho'' possa ainda ter aplicações da\n"
+"categoria ``Servidor'' instaladas.\n"
+"\n"
+" * \"%s\": se planeia usar a sua máquina como uma estação de trabalho,\n"
+"escolha um ou mais dos grupos dessa mesma categoria.\n"
+"\n"
+" * \"%s\": se planeia usar a sua máquina para programar, seleccione os\n"
+"grupos apropriados dentro dessa categoria. O grupo especial \"LSB\" irá\n"
+"configurar o seu sistema para que cumpra o mais possível com as \n"
+"especificações Linux Standard Base.\n"
+"\n"
+" Ao seleccionar o grupo \"LSB\" irá também instalar as séries kernel \"2.4"
+"\",\n"
+"em vez do \"2.6\" predefinido. Isto é para garantir concordância 100%%- LSB\n"
+"do sistema. No entanto, se não seleccionar o grupo \"LSB\", terá na mesma\n"
+"um sistema que é 100%% LSB-concordante.\n"
+"\n"
+" * \"%s\": se pretende que a sua máquina seja um servidor, seleccione\n"
+"qual dos serviços comuns deseja instalar.\n"
+"\n"
+" * \"%s\": aqui é onde irá escolher o seu ambiente gráfico preferido. Pelo\n"
+" menos deve ser seleccionado se deseja ter um interface gráfico disponível.\n"
+"\n"
+"Movendo o cursor do rato sobre o nome de um grupo, irá mostrar um breve\n"
+"texto explanatório acerca desse grupo.\n"
+"\n"
+"Pode seleccionar a caixa \"%s\", que é útil se está familiarizado com os\n"
+"pacotes oferecidos ou se quer ter controlo total sobre o que é instalado.\n"
+"\n"
+"Se iniciar a instalação em modo \"%s\", pode desseleccionar todos os\n"
+"grupos e prevenir a instalação de novos pacotes. Isto é útil para reparar\n"
+"ou actualizar um sistema existente.\n"
+"\n"
+"Se desseleccionar todos os grupos quando executa uma instalação regular\n"
+"(em oposição a uma actualização), um diálogo irá aparecer a sugestionar\n"
+"opções diferentes para uma instalação mínima:\n"
+"\n"
+" * \"%s\": instala o número mínimo de pacotes possíveis para ter um\n"
+"ambiente gráfico instalado.\n"
+"\n"
+" * \"%s\": instala o sistema base mais utilidades básicas e a sua\n"
+"documentação. Esta instalação é apropriada para configurar um servidor.\n"
+"\n"
+" * \"%s\": irá instalar o número mínimo absoluto de pacotes necessários\n"
+"para ter um sistema Linux funcional. Com esta instalação irá apenas ter um\n"
+"interface de linha de comandos. O tamanho total desta instalação é cerca\n"
+"de 65 megabytes."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Actualizar"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Com documentação básica"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Verdadeira instalação mínima"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Se escolheu instalar pacotes individualmente, o instalador irá apresentar\n"
+"uma árvore contendo todos os pacotes classificados por grupos e subgrupos.\n"
+"Enquanto pesquisa na árvore, pode seleccionar grupos inteiros, subgrupos,\n"
+"ou pacotes individuais.\n"
+"\n"
+"Sempre que seleccionar um pacote na árvore, uma descrição irá aparecer\n"
+"à sua direita para o informar acerca do propósito desse pacote.\n"
+"\n"
+"!! Se um pacote servidor foi seleccionado, ou porque escolheu\n"
+"especificamente o pacote individual ou porque fazia parte de um grupo de\n"
+"pacotes, será-lhe pedido para confirmar que realmente quer que esses\n"
+"servidores sejam instalados. Por omissão o Mandriva Linux irá\n"
+"automaticamente iniciar qualquer serviço instalado no arranque. Mesmo\n"
+"que sejam seguros e não tenham qualquer problema conhecido na altura\n"
+"da saída da distribuição, é bem possível que sejam descobertos 'buracos'\n"
+"na segurança a seguir à finalização desta versão Mandriva Linux. Se não\n"
+"souber que serviço particular é suposto fazer ou porque é instalado, então\n"
+"clique em \"%s\". Ao clicar em \"%s\" irá instalar os serviços listados e\n"
+"serºao iniciados automaticamente no arranque. !!\n"
+"\n"
+"A opção \"%s\" é usada para desactivar o dialogo de aviso que\n"
+"aparece sempre que o instalador escolhe automaticamente um pacote\n"
+"para resolver problemas de dependências. alguns pacotes dependem de\n"
+"outros e a instalação de um determinado pacote pode requerer a instalação\n"
+"de outro pacote. O instalador pode determinar que pacotes são necessários\n"
+"para satisfazer uma dependência para terminar com sucesso a instalação.\n"
+"\n"
+"O pequeno ícone de disquete no fundo desta lista permite-lhe carregar uma\n"
+"lista de pacotes escolhida durante uma instalação anterior. Isto é útil se\n"
+"tiver um número de máquinas que deseja configurar identicamente. Ao\n"
+"clicar neste ícone irá-lhe pedir para inserir uma disquete criada no fim\n"
+"de outra instalação. Veja a segunda dica do último passo sobre como criar\n"
+"essa disquete."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Dependências automáticas"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": ao clicar no botão \"%s\"irá iniciar o assistente de configuração "
+"de\n"
+"impressoras. Consulte o capítulo correspondente no ''Guia do Utilizador''\n"
+"para obter mais informações sobre como configurar uma nova impressora.\n"
+"O interface apresentado no nosso manual é semelhante ao usado durante\n"
+"a instalação."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Este diálogo é usado para escolher que serviços deseja iniciar no arranque.\n"
+"\n"
+"O DrakX irá listar todos os serviços disponíveis na actual instalação\n"
+"Reveja cada um deles cuidadosamente e desmarque aqueles que não são\n"
+"necessários no arranque.\n"
+"\n"
+"Um breve texto de introdução será mostrado acerca do serviço quando\n"
+"este é seleccionado. No entanto, se não tem certeza se o serviço é útil\n"
+"ou não, é mais seguro deixa-lo como estava.\n"
+"\n"
+"!! Nesta altura, tenha muito cuidado se deseja usar a sua máquina como\n"
+"um servidor: provavelmente não quererá iniciar qualquer serviço que\n"
+"não conheça. Por favor lembre-se que alguns serviços podem ser\n"
+"perigosos se forem activados num servidor. Em geral, seleccione\n"
+"apenas aqueles servque realmente precisa. !!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"O GNU/Linux gere o tempo em GMT (Greenwich Mean Time) e traduz em\n"
+"hora local conforme a zona que escolheu. Se o relógio da sua placa mãe\n"
+"estiver definido para hora local, pode desactivar isto ao de-seleccionar \n"
+"\"%s\", que dará indicação ao GNU/Linux que o relógio do\n"
+"sistema e o de material estão no mesmo fuso horário. É muito útil\n"
+"quando a máquina 'opera' outro sistema operativo.\n"
+"\n"
+"A opção \"%s\" irá regular automaticamente o relógio do sistema ao\n"
+"ligar-se a um servidor horário remoto na Internet. Para esta opção\n"
+"funcionar, precisa ter uma conexão internet activa. Recomendamos\n"
+"que escolha um servidor horário localizado perto de si. Na realidade,\n"
+"esta opção instala um servidor horário que poderá ser usado por outras\n"
+"máquinas na sua rede local."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Sincronização automática da hora"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Placa Gráfica\n"
+"\n"
+" Normalmente o instalador detecta e configura automáticamente \n"
+"a placa gráfica instalada na sua máquina. Se isto não é correcto,\n"
+"pode escolher da lista a placa que tem instalada.\n"
+"\n"
+" Na caso caso de existirem vários servidores disponíveis para a sua "
+"placa,\n"
+"com ou sem aceleração 3D, ser-lhe-á pedido que escolha o servidor\n"
+"que melhor sirva as suas necessidades."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (para Sistema X Window) é o coração do interface gráfico GNU/Linux no\n"
+"qual todos os ambientes gráficos (KDE, GNOME, AfterStep, WindowMaker,\n"
+"etc.) fornecidos com o Mandriva Linux, funcionam.\n"
+"\n"
+"Irá ver uma lista de parâmetros diferentes para mudar, para poder\n"
+"ter uma boa apresentação gráfica\n"
+"\n"
+"Placa Gráfica\n"
+"\n"
+" O instalador irá normalmente detectar e configurar automaticamente\n"
+"a placa gráfica da sua máquina. Se isto não estiver correcto, pode\n"
+"escolher da lista a placa gráfica que tem instalada.\n"
+"\n"
+" Se na situação de haver diferentes servidores disponíveis para a sua\n"
+"placa, com ou sem aceleração 3D, será-lhe dado a escolher o servidor\n"
+"que melhor sirva as suas necessidades\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normalmente o instalador irá automaticamente detectar e configurar o\n"
+"ecrã/monitor ligado á sua máquina. Se não estiver correcto, pode escolher\n"
+"da lista o monitor que está ligado ao seu computador.\n"
+"\n"
+"\n"
+"\n"
+"Resolução\n"
+"\n"
+" Aqui pode escolher as resoluções e cores disponíveis para o seu\n"
+"material gráfico. Escolha o que melhor sirva as suas necessidades\n"
+"(poderá fazer alterações a seguir à instalação)\n"
+"Um exemplo da configuração escolhida é mostrada no ecrã.\n"
+"\n"
+"\n"
+"\n"
+"Teste\n"
+"\n"
+" Dependendo do seu material, esta entrada poderá não apareder.\n"
+"\n"
+" S sistema irá tentar abrir um ecrã gráfico na resolução escolhida.\n"
+"Se conseguir ver a mensagem teste durante o teste e responder \"%s\",\n"
+"então o DrakX irá proceder á etapa seguinte. Se não o vir, então\n"
+"significa que alguma parte da configuração auto detectada está\n"
+"incorrecta e o teste irá acabar automáticamente ao fim de 12 segundos,\n"
+"e retornará ao menu. Mude as configurações até obtenha a correcta\n"
+"disposição gráfica.\n"
+"\n"
+"\n"
+"\n"
+"Opções\n"
+"\n"
+" Aqui pode escolher se deseja que o computador arranque\n"
+"automáticamente em modo gráfico. De facto, pode querer verificar\n"
+"\"%s\" se a sua máquina é um servidor, ou se não conseguir obter\n"
+"uma boa configuração de ecrã."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+"\n"
+" Normalmente o instalador detectar e configurar automaticamente o\n"
+"monitor ligado à sua máquina. Se não estiver correcto, pode escolher desta\n"
+"lista o monitor que está ligado ao computador."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Resolução\n"
+"\n"
+" Aqui pode escolher uma resolução e uma profundidade de cor entre as\n"
+"disponíveis para o seu material. Escolha a que melhor se adapta às\n"
+"suas necessidades (poderá, no entanto, alterar após a instalação). Uma\n"
+"amostra da configuração escolhida será apresentada no monitor."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Na situação, onde há diferentes servidores disponíveis para a sua placa,\n"
+"com ou sem aceleração 3D, é-lhe pedido que escolha o servidor que\n"
+"melhor sirva as suas necessidades."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Opções\n"
+"\n"
+" Este passo permite-lhe escolher se quer que a sua máquina "
+"automáticamente\n"
+"mude para um interface gráfico ao arrancar. Obviamente, pode querer "
+"seleccionar\n"
+"\"%s\" se a sua máquina está para agir como um servidor, ou se não foi bem\n"
+"sucedido a configurar o monitor."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Agora precisa decidir onde deseja instalar o sistema operativo\n"
+"Mandriva Linux no seu disco rígido. Se o seu disco rígido estiver vazio\n"
+"ou, se um sistema operativo existente usa todo o espaço disponível,\n"
+"irá ser preciso particionar o disco. Básicamente, particionar um disco\n"
+"rígido significa dividi-lo de maneira lógica para criar o espaço\n"
+"necessário para instalar o seu novo sistema Mandriva Linux.\n"
+"\n"
+"Como os efeitos da operação de particionamento são geralmente\n"
+"irreversíveis, e pode levar a perda de dados, particionar pode ser\n"
+"intimidante para um utilizador inexperiente. Felizmente, o DrakX tem\n"
+"um assistente que simplifica o processo.Antes de avançar para o\n"
+"próximo passo lê pelo resto da secção e todo o resto, leve o tempo\n"
+"que achar necessário.\n"
+"\n"
+"Dependendo da configuração do disco rígido, várias opções\n"
+"estão disponíveis.\n"
+"\n"
+" * \"%s\". Esta opção irá automaticamente particionar o(s) disco(s)\n"
+"vazio(s). Se usar esta opção, não irão haver mais perguntas.\n"
+"\n"
+" * \"%s\". O assistente detectou uma ou mais partições Linux no disco\n"
+"rígido. Se as deseja usar, escolha esta opção. Será-lhe então pedido\n"
+"para escolher o ponto de montagem associado a cada partição. Os\n"
+"pontos habituais de montagem são seleccionados por omissão, e para\n"
+" a maioria é uma boa ideia mantê-los assim.\n"
+"\n"
+" * \"%s\". Se a Microsoft Windows é instalada no seu disco rígido e \n"
+"utiliza todo o espaço disponível, irá ter que criar espaço livre para o\n"
+"GNU/Linux. Para o fazer, pode apagar a sua partição Microsoft Windows\n"
+"e dados (ver a solução ``Apagar o disco todo'') ou redimensionar a partição\n"
+"FAT ou NTFS do Microsoft Windows. O redimensionamento pode ser feito\n"
+"sem a perda de qualquer dado, desde que previamente tenha desfragmentado\n"
+"a partição Windows. Recomenda-se que faça cópias de segurança.\n"
+"Recomenda-se que use esta opção, se quer usar os dois sistemas\n"
+"operativos, Mandriva Linux e Microsoft Windows no mesmo computador.\n"
+"\n"
+" Antes de escolher esta opção, por favor compreenda que a seguir a este\n"
+"procedimento, o tamanho da partição do seu Microsoft Windows será mais\n"
+"pequeno. Terá menos espaço livre no Microsoft Windows para gravar os\n"
+"seus dados ou instalar novo software.\n"
+"\n"
+" * \"%s\". Se deseja apagar todos os dados e todas as partições presentes\n"
+"no disco rígido e substituí-los pelo seu novo sistema Mandriva Linux,\n"
+"escolha esta opção. Seja cuidadoso, porque não será mais capaz de\n"
+"desfazer esta operação após ter confirmado.\n"
+"\n"
+" !! Se escolher esta opção, todos os dados no disco serão apagados!!\n"
+"\n"
+" * \"%s\": Esta opção aparece quando o disco rígido é inteiramente do\n"
+"sistema Microsoft Windows. Escolher esta opção irá simplesmente apagar\n"
+"tudo no disco e começar de novo a particionar tudo do princípio.\n"
+"\n"
+" !! Se escolher esta opção, todos os dados no disco vai ser perdidos. !!\n"
+"\n"
+" * \"%s\". Escolha esta opção se deseja particionar manualmente o seu\n"
+"disco rígido. Tenha cuidado -- é uma opção potente mas perigosa e pode\n"
+"muito facilmente perder todos os seus dados. É por isso que esta opção\n"
+"é apenas recomendada a alguém que já tenha feito alguma coisa parecida\n"
+"anteriormente e tenha alguma experiência. Para mais instruções em como\n"
+"usar a utilidade DiskDrake, refira-se à secção ``Gerir As Suas Partições''\n"
+"no ``Guia Inicial''."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Usar partição existente"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Apagar disco inteiro"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Parabéns, a instalação está agora completa e o seu sistema GNU/Linux\n"
+"está pronto a ser usado. Clique em \"%s\" para reiniciar o sistema.\n"
+"Não se esqueça de remover a média de instalação (CD-ROM ou disquete).\n"
+"A primeira coisa que deve ver a seguir ao computador acabar os testes\n"
+"de material, é o menu do carregador de arranque, dando-lhe a opção\n"
+"de escolher qual o sistema operativo a iniciar.\n"
+"\n"
+"O botão \"%s\" mostra mais dois botões para:\n"
+"\n"
+" * \"%s\": permite-lhe criar uma disquete de instalação que irá\n"
+"automáticamente executar uma instalação completa sem a ajuda de\n"
+"um operador similar ao da instalação que ainda agora configurou.\n"
+"\n"
+" Note que duas opções diferentes são disponíveis depois de clicar\n"
+"naquele botão:\n"
+"\n"
+" * \"%s\". Isto é uma instalação parcial automática. O passo de\n"
+"particionar é o único procedimento interactivo.\n"
+"\n"
+" * \"%s\". Instalação completamente automática: o disco rígido\n"
+"é completamente reescrito, todos os dados serão perdidos.\n"
+"\n"
+" Esta opção é muito prática para instalar várias máquinas similares.\n"
+"Veja a secção Auto Instalação no nosso sítio web para mais\n"
+"informações.\n"
+"\n"
+" * \"%s\"(*): grava uma lista de pacotes seleccionados na instalação.\n"
+"Para usar esta selecção com outra instalação, insira uma disquete\n"
+"e inicie a instalação. Na linha de comandos, prima a tecla [F1],\n"
+"digite >>linux defcfg=\"floppy\"<< e prima a tecla [Enter].\n"
+"\n"
+"(*) Precisa de uma disquete formatada FAT. Para criar uma em GNU/Linux,\n"
+"digite \"mformat a:\", ou \"fdformat /dev/fd0\" seguido de \"mkfs.vfat\n"
+"/dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Gerar disquete auto-instal"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Se escolher usar algumas partições GNU/Linux, pode querer formatar\n"
+"algumas delas e apagar os dados nelas contidos. Para o fazer, por favor\n"
+"escolha essas partições.\n"
+"\n"
+"Por favor note que não é necessário formatar todas a partições já\n"
+"existentes. Tem que formatar as partições que tenham sistemas\n"
+"operativos (tais como \"/\", \"/usr\" ou \"/var\") mas não tem que\n"
+"formatar partições que contenham dados que deseja manter\n"
+"(tipicamente \"/home\").\n"
+"\n"
+"Por favor tenha atenção quando seleccionar as partições. A seguir à\n"
+"formatação estar completa, todos os dados nas partições seleccionadas\n"
+"serão perdidos e não será capaz de os recuperar.\n"
+"\n"
+"Clique em \"%s\" quando estiver pronto para formatar as partições.\n"
+"\n"
+"Clique em \"%s\" se deseja escolher outra partição para o seu novo\n"
+"sistema operativo Mandriva Linux.\n"
+"\n"
+"Clique em \"%s\" se deseja escolher partições para verificar se\n"
+"fisicamente há blocos defeituosos (\"bad blocks\") no disco."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"No momento que instala o Mandriva Linux, é quase certo que alguns\n"
+"pacotes terão sido actualizados desde a distribuição inicial. Alguns\n"
+"erros podem ter sido corrigidos, e problemas de segurança resolvidos.\n"
+"Para lhe permitir beneficiar destas actualizações, está agora apto\n"
+"a fazer a transferi-las da Internet. Escolha \"%s\" se tem uma\n"
+"conexão Internet activa, ou \"%s\" se preferir instalar os\n"
+"pacotes actualizados mais tarde.\n"
+"\n"
+"Ao escolher \"%s\" mostra uma lista das localizações web de onde as\n"
+"actualizações podem ser transferidas. Deve escolher a que estiver\n"
+"mais perto de si. Irá aparecer uma selecção de pacotes em árvore:\n"
+"reveja a selecção, e clique em \"%s\" para transferir e instalar os\n"
+"pacotes seleccionados, ou clique em \"%s\" para abortar."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Nesta fase, o DrakX irá permitir-lhe escolher o nível de segurança desejado\n"
+"para a sua máquina. Como regra de ouro, o nível de segurança deve ser maior\n"
+"quando a máquina contém informação crucial, ou quando está directamente\n"
+"exposta à internet. Porém, um nível de segurança superior, geralmente é\n"
+"obtido á custa de menos facilidade de uso/manuseamento.\n"
+"\n"
+"Se não sabe o que escolher, deixe o valor predefinido. Poderá alterá-lo\n"
+"mais tarde com a ferramenta draksec, que faz parte do Centro de Controlo\n"
+"Mandriva Linux.\n"
+"\n"
+"Preencha o campo \"%s\" com o endereço de correio electrónico da pessoa\n"
+"responsável pela segurança. As mensagens de segurança serão enviadas\n"
+"para esse endereço."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Administrador de Segurança"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Neste fase, precisa escolher que partições vão ser utilizadas para a\n"
+"instalação do seu sistema Mandriva Linux. Se já foram definidas partições,\n"
+"seja por uma instalação anterior do GNU/Linux seja por outra ferramenta de\n"
+"particionamento, pode utilizar-las . Senão, precisa definir partições no\n"
+"disco rígido.\n"
+"\n"
+"Para criar partições, tem primeiro que escolher um disco rígido. Pode\n"
+"escolher o disco que quer particionar clicando em ``hda'' para o primeiro\n"
+"disco IDE, ``hdb'' para o segundo, ``sda'' para o primeiro disco SCSI e\n"
+"por aí adiante.\n"
+"\n"
+"Para particionar o disco selecionado, pode usar estas opções:\n"
+"\n"
+" * \"%s\": esta opção apaga todas as partições do disco seleccionado\n"
+"\n"
+" * \"%s\": esta opção permite criar automaticamente partições\n"
+"ext3 e partições swap no espaço livre do seu disco\n"
+"\n"
+"\"%s\": dá acesso para opções adicionais:\n"
+"\n"
+" * \"%s\": grava a tabela das partições para uma disquete. Útil para\n"
+"mais tarde recuperar a tabela das partições, se necessário. É fortemente\n"
+"recomendado que execute este passo.\n"
+"\n"
+" * \"%s\": permite restaurar uma tabela de partições anteriormente\n"
+"gravada numa disquete;\n"
+"\n"
+" * \"%s\": se a sua tabela das partições está danificada, pode-a tentar\n"
+"recuperar com esta opção. Por favor esteja atento e lembre-se que isto\n"
+"nem sempre resulta.\n"
+"\n"
+" * \"%s\": apaga todas as alterações e recarrega a tabela de partições\n"
+"que estava originalmente no disco.\n"
+"\n"
+" * \"%s\": desmarque esta opção para forçar os utilizadores a montar\n"
+"e desmontar manualmente as médias amoviveis como disquetes e CD-ROMs.\n"
+"\n"
+" * \"%s\": use esta opção se deseja usar um assistente para particionar o\n"
+"disco rígido. Isto é recomendado se não tem um bom conhecimento de \n"
+"como se faz um bom particionamento do disco.\n"
+"\n"
+" * \"%s\": use esta opção para cancelar as alterações.\n"
+"\n"
+" * \"%s\": permite acções suplementares nas partições (tipo, opções,\n"
+"formatar) e dá mais informações sobre o disco rígido.\n"
+"\n"
+" * \"%s\": quando tiver acabado de particionar o seu disco rígido, isto irá\n"
+"gravar as suas alterações no disco.\n"
+"\n"
+"Quando a definir o tamanho de uma partição, pode finalmente configurar\n"
+"o tamanho usando as teclas de setas do seu teclado.\n"
+"\n"
+"Nota: pode chegar a qualquer opção usando o teclado. Navegue através\n"
+"das partições usando as teclas [Tab] e as setas [Subir/Descer].\n"
+"\n"
+"Quando uma partição é selecionada, pode usar:\n"
+"\n"
+" * Ctrl-c para criar uma nova partição (quando escolhe uma partição vazia)\n"
+"\n"
+" * Ctrl-d para apagar uma partição\n"
+"\n"
+" * Ctrl-m para definir o ponto de montagem\n"
+"\n"
+"Para obter mais informações acerca dos diferentes tipos de sistemas de\n"
+"ficheiros disponíveis, por favor leia o capítulo ext2FS do ``Manual de\n"
+"Referência''.\n"
+"\n"
+"Se está a instalar numa máquina PPC, irá querer criar umas pequena partição\n"
+"de arranque HFS com pelo menos 1MB, que será usada pelo carregador de\n"
+"arranque yaboot. Se optar por criar uma partição maior, tipo 50MB, pode-lhe\n"
+"ser útil para gravar um kernel e a uma imagem ramdisk para situações de\n"
+"de emergência."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Automontagem dos dispositivos amovíveis"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Alterna entre os modos normal/perito"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Mais do que uma partição Microsoft foi detectada no seu disco rígido.\n"
+"Por favor escolha qual deseja redimencionar para poder instalar o seu\n"
+"novo sistema operativo Mandriva Linux.\n"
+"\n"
+"Cada partição é listada da seguinte maneira: \"Nome Linux\",\n"
+"\"Nome Windows\", \"Capacidade\".\n"
+"\n"
+"O \"Nome Linux\" é estruturado: \"tipo de disco rígido\",\n"
+" \"numero de disco\", \"numero da partição\" (por exemplo, \"hda1\").\n"
+"\n"
+"O \"Tipo de Disco\" é \"hd\" se o disco rígido é IDE e \"sd\" se é um\n"
+"disco rígido SCSI.\n"
+"\n"
+"O \"Numero de disco\" é sempre uma letra depois de \"hd\" ou \"sd\".\n"
+"Com os discos rígidos IDE:\n"
+"\n"
+" * \"a\" significa \"disco rígido master no controlador IDE principal\";\n"
+"\n"
+" * \"b\" significa \"disco rígido slave no controlador IDE principal\";\n"
+"\n"
+" * \"c\" significa \"disco rígido master no controlador IDE segundario\";\n"
+"\n"
+" * \"d\" significa \"disco rígido slave no controlador IDE segundario\";\n"
+"\n"
+"Com os discos rígidos SCSI, um \"a\" significa \"SCSI ID mais baixo\",\n"
+"um \"b\" significa \"segundo SCSI ID mais baixo\", etc.\n"
+"\n"
+"O \"nome Windows\" é a letra do seu disco rígido sob Windows\n"
+"(o primeiro disco ou partição é chamado \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": verifique o país seleccionado. Se não está neste país, clique no\n"
+"botão \"%s\" e escolha outro. Se o seu país não estiver na lista dada,\n"
+"clique no botão \"%s\" para obter a lista completa dos países."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Este passo só fica disponível se uma partição GNU/Linux existente for\n"
+"encontrada na sua máquina.\n"
+"\n"
+"O DrakX agora precisa saber se deseja fazer uma nova instalação ou uma\n"
+"actualização num sistema Mandriva Linux existente:\n"
+"\n"
+" * \"%s\": Para a maior parte, isto apaga completamente o sistema antigo.\n"
+"No entanto, dependendo no seu esquema de particionamento, pode prevenir\n"
+"que parte dos seus dados existentes (principalmente os directórios \"home"
+"\")\n"
+"sejam substituídos. Se desejar alterar como o particionamento dos seus\n"
+"discos rígidos é feito, ou mudar o seu sistema de ficheiros, deve usar esta "
+"opção.\n"
+"\n"
+" * \"%s\": Este tipo de instalação permite actualizar os pacotes "
+"actualmente\n"
+"instalados no seu sistema Mandriva Linux. O seu actual esquema de\n"
+"particionamento, assim como os dados dos utilizadores não serão alterados.\n"
+"A maior parte dos outros passos da configuração permanece disponível e "
+"similar a uma instalação standard.\n"
+"\n"
+"A opção ``Actualizar'' deverá funcionar correctamente nos sistemas\n"
+"Mandriva Linux versão \"8.1\" ou superior. É desaconselhável actualizar\n"
+"versões anteriores à versão \"8.1\" do Mandriva Linux."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Dependendo da linguagem que escolhe (), o DrakX irá automáticamente\n"
+"escolher um determinado tipo de configuração do teclado. Seleccione a opção\n"
+"que melhor lhe sirva ou escolha outra disposição de teclado.\n"
+"\n"
+"Também, pode não ter um teclado que corresponde exactamente à sua\n"
+"linguagem: por exemplo, se é Francês mas fala Português, pode desejar,\n"
+"mesmo assim um teclado Francês. Ou se fala Português mas vive em\n"
+"Inglaterra, irá encontrar-se na mesma situação. Nos dois casos, pode\n"
+"escolher o teclado apropriado da lista.\n"
+"\n"
+"Clique no botão \"%s\" para obter a lista de todos os teclados suportados.\n"
+"\n"
+"Se escolheu a disposição de um teclado baseado num alfabeto diferente de\n"
+"latim, o próximo diálogo irá-lhe permitir escolher a mapeação de teclas que\n"
+"lhe permita mudar o teclado entre uma disposição Latim uma não Latim."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"O primeiro passo, é escolher a sua linguagem preferida.\n"
+"\n"
+"A sua escolha da linguagem preferida irá afectar o instalador, a\n"
+"documentação, e o sistema em geral. Primeiro seleccione a região\n"
+"onde está localizado, depois a linguagem que fala.\n"
+"\n"
+"Ao clicar no botão \"%s\" irá permitir-lhe escolher outras linguagens\n"
+"para instalar na sua área de trabalho, consequentemente instalará os\n"
+"ficheiros para a documentação do sistema e aplicações referentes à\n"
+"linguagem especificada . Porexemplo, se utilizadores espanhóis estão\n"
+"para usar a sua máquina, escolha Inglês como linguagem predefinida\n"
+"na vista em árvore e \"%s\" na secção Avançada.\n"
+"\n"
+"Sobre o suporte UTF-8 (unicode): Unicode é uma codificação de caracter\n"
+"feito para cobrir todas as linguagens existentes. No entanto o seu suporte\n"
+"completo em GNU/Linux ainda está a ser desenvolvido. Por essa razão,\n"
+"o uso de UTF-8 em Mandriva Linux depende das escolhas do utilizador:\n"
+"\n"
+" * Se escolher uma linguagem com um forte legado de codificação\n"
+"(linguagens latin1, Russo, Japonês, ChinêsCoreano, Tailandês, grego, turco,\n"
+"maior parte de linguagens iso-8859-2), o legado da codificação será usado\n"
+"por omissão\n"
+"\n"
+" * Outras linguagens irão usar unicode por omissão;\n"
+"\n"
+" * Finalmente, o unicode pode também ser forçado para uso através do\n"
+"por um pedido do utilizador ao selecionar a opção \"%s\",\n"
+"independentemente como as linguagens tenham sido escolhidas.\n"
+"\n"
+"Notar que não está limitado a escolher uma única linguagem adicional.\n"
+"Pode escolher várias, ou até instala-las ao seleccionar a caixa\"%s\".\n"
+"Seleccionar suporte para uma linguagem, quer dizer traduções, fontes,\n"
+"verificadores de ortografia, etc., que será também instalados para essa\n"
+"linguagem.\n"
+"\n"
+"Para trocar entre as várias linguagens instaladas no seu sistema, pode\n"
+"correr o comando \"/usr/sbin/localedrake\" como \"root\" para mudar a\n"
+"linguagem usada por todo o sistema. Correndo o comando como utilizador\n"
+"normal , irá apenas mudar as configurações da linguagem para esse\n"
+"utilizador em particular."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Espanhol"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Usualmente, o DrakX não tem problemas em detectar o numero de botões\n"
+"no seu rato. Se tiver, assume que tem um rato de dois botões e irá\n"
+"configurá-lo para a emulação do terceiro botão. O terceiro botão de um rato\n"
+"de dois botões, pode ser obtido por simultaneamente clicar nos botões\n"
+"esquerdo e direito. O DrakX irá automaticamente saber se o seu rato usa\n"
+"um interface PS/2 ou USB.\n"
+"\n"
+"Se tem um rato de 3 botões sem roda, pode escolher um rato \"%s\".\n"
+"O DrakX irá então configurar o seu rato para que possa simular a roda: para\n"
+"o fazer, prima o botão do meio e mova o apontador do seu rato para cima\n"
+"e para baixo.\n"
+"\n"
+"Se por alguma razão deseja especificar um tipo diferente de rato, "
+"seleccione\n"
+"o tipo desejado a partir da lista fornecida.\n"
+"\n"
+"Pode escolher a entrada \"%s\" para escolher um rato ``genérico'' que\n"
+"trabalhe praticamente com todos os ratos.\n"
+"\n"
+"Se escolher outro rato diferente do predefinido, um teste no ecrã será\n"
+"mostrado. Use os botões e a roda para verificar se as configurações estão\n"
+"correctas e o rato está a trabalhar correctamente. Se o rato não estiver\n"
+"a funcionar bem, prima a tecla espaço ou [Return] para cancelar o teste\n"
+"e retornar à lista de ratos.\n"
+"\n"
+"Ocasionalmente a roda do rato não é detectada automaticamente, então é\n"
+"necessário seleccionar o rato da lista. Certifique-se que selecciona o\n"
+"correspondente à porta a que o seu rato está ligado. Depois de seleccionar\n"
+"o rato e premir o botão \"%s\", uma imagem será mostrada no ecrã a mover\n"
+"a roda. Teste os botões e verifique se o apontador do rato se move no ecrã \n"
+"assim como move o rato."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "com emulação de Roda"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Universal | Qualquer rato PS/2 & USB"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Por favor escolha a porta correcta. Por exemplo, em Windows é \"COM1\",\n"
+"em GNU/Linux já é \"ttyS0\"."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Este é o ponto mais crucial de decisão para a segurança do seu sistema\n"
+"GNU/Linux: deve escolher a senha do \"root\". O \"root\" é o administrador\n"
+"do sistema e é o único utilizador autorizado para fazer actualizações,\n"
+"adicionar utilizadores, mudar a configuração global do sistema, e por aí a\n"
+" fora. Em poucas palavras, o \"root\" pode fazer tudo! É por isso que deve\n"
+"escolher uma senha que seja difícil de adivinhar: o DrakX irá-lhe dizer se\n"
+"a senha que escolheu é muito simples. Como pode ver, não é obrigado a\n"
+"digitar uma senha, mas aconselhamos vivamente a não o fazer.O GNU/Linux\n"
+"é tão propenso ao erro do operador como qualquer outro sistema operativo.\n"
+"Já que o \"root\" pode ultrapassar todas as limitações e involuntariamente\n"
+"apagar todos os dados nas partições ao aceder descuidadamente a estas,\n"
+"é muito importante que haja dificuldades em aceder/tornar-se \"root\".\n"
+"\n"
+"A senha deve ser uma mistura de caracteres alfa numéricos e com pelos\n"
+"menos 8 caracteres de comprimento.Nunca aponte a senha do \"root\" --\n"
+"torna demasiado fácil comprometer o seu sistema.\n"
+"\n"
+"Uma advertência: não faça a senha demasiado longa ou muito complicada\n"
+"para que seja capaz de se lembrar dela.\n"
+"\n"
+"A senha não vai ser mostrada no ecrã à medida que a escreve. Para reduzir\n"
+"a hipótese de ser mal digitado, é necessário que a senha seja digitada duas\n"
+"vezes. Se lhe acontecer o mesmo erro duas vezes, aí terá que usar essa\n"
+"senha ``incorrecta'' na primeira vez que tentar ligar-se como \"root\".\n"
+"\n"
+"Se deseja um servidor de autenticação para controlar o acesso ao seu\n"
+"computador, clique em \"%s\".\n"
+"\n"
+"Se a sua rede usa seja LDAP, NIS ou a autenticação de serviços para um\n"
+"domínio PDC Windows, seleccione o apropriado para \"%s\".\n"
+"Se não sabe qual usar, deve perguntar ao administrador da sua rede.\n"
+"\n"
+"Se lhe acontecer ter problemas em relembrar senhas, ou se o seu\n"
+"computador nunca for conectado à Internet, se confia em toda a gente que\n"
+"usa o seu computador, aí pode escolher em ter \"%s\"."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "Autenticação"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"O carregador de arranque é um pequeno programa que é iniciado pelo\n"
+"computador no seu arranque. É responsável pela inicialização de todo o\n"
+"sistema. Normalmente, a fase de instalação do gestor de arranque é\n"
+"completamente automática. O DrakX irá analisar o sector de arranque do\n"
+"disco e agir de acordo com o que lá encontrar:\n"
+"\n"
+" * se encontrar um sector de arranque Windows, irá trocá-lo por um sector\n"
+"de arranque GRUB/LILO. Desta maneira será capaz de escolher entre carregar\n"
+"o GNU/Linux ou qualquer outro Sistema Operativo instalado na sua máquina.\n"
+"\n"
+" * se encontrar um sector de arranque GRUB ou LILO, irá trocá-lo por um "
+"novo.\n"
+"\n"
+"Se o DrakX não conseguir determinar onde deve colocar o sector de arranque,\n"
+"irá-lhe perguntar onde o quer colocar. Geralmente, o \"%s\" é o local mais\n"
+"seguro. Ao escolher \"%s\" nenhum gestor de arranque será instalado. Use\n"
+"esta opção apenas se souber o que está a fazer."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Agora, é tempo de escolher o sistema de impressão para o seu computador.\n"
+"Outros sistemas operativos podem oferecer um, mas o Mandriva Linux\n"
+"oferece dois. Cada um dos sistemas de impressão é bem servido para tipos\n"
+"particulares de configuração.\n"
+"\n"
+".*.\"%s\" -- que é um anacronismo para ``imprimir, não meter em fila'',\n"
+"é a escolha se tem uma conexão directa à sua impressora e deseja poder\n"
+"parar tudo nos erros de impressão, e não tem impressoras em rede.\n"
+"(\"%s\" só irá gerir os casos mais simples de rede e é algo lento quando\n"
+"usado em redes). Recomenda-se que use \"lpd\" se é a sua primeira\n"
+"experiência com GNU/Linux.\n"
+"\n"
+".*.\"%s\" -- O `` Sistema de Impressão Comum Unix'', é excelente para\n"
+"imprimir para a sua impressora local e também para o outro lado do\n"
+"mundo. É simples e pode agir como servidor ou cliente para o antigo\n"
+"sistema de impressão \"lpd\". Portanto, é compatível com os sistemas\n"
+"anteriores. Pode fazer muitas coisas, mas a configuração de base é\n"
+"quase tão simples como \"lpd\". Se precisa dele para emular um\n"
+"servidor \"lpd\", tem que activar o servidor \"cups-lpd\". \"%s\" tem\n"
+"interfaces gráficos para imprimir ou escolher as opções de impressão.\n"
+"\n"
+"Poderá mudar a sua escolha de sistema após a instalação correndo o\n"
+"PrinterDrake a partir do Centro de Controlo Mandriva Linux e clicando\n"
+"no botão \"%s\"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Perito"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"O DrakX irá primeiro detectar os dispositivos IDE presentes no seu\n"
+"computador. Irá também procurar por um ou mais adaptadores PCI SCSI\n"
+"no seu sistema. Se um adaptador SCSI for encontrado, o DrakX irá\n"
+"automáticamente instalar o controlador apropriado.\n"
+"\n"
+"Porque a detecção de material não é a toda a prova, o DrakX pode falhar\n"
+"a detectar os discos rígidos. Se isso acontecer, terá de indicar o seu\n"
+"material á mão..\n"
+"\n"
+"Se tiver que o especificar manualmente o seu adaptador PCI SCSI, o DrakX\n"
+"irá-lhe perguntar se quer configurar as opções deste. Deve permitir que o\n"
+"DrakX verifique o material para as opções específicas das placas que são\n"
+"necessárias para inicializar o adaptador. Na maior parte do tempo, o DrakX\n"
+"irá executar este passo sem qualquer problema.\n"
+"\n"
+"Se o DrakX não conseguir verificar quais são as opções que automáticamente\n"
+"determinem que parâmetros são necessários para o material em questão, irá\n"
+"precisar de configurar o controlador manualmente."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": se foi detectada uma placa de som no seu sistema, será\n"
+"listada aqui. Se verificar que a placa de som listada não é a placa que "
+"está\n"
+"presente no seu sistema, pode clicar no botão e escolher outro controaldor."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Em revisão, o DrakX irá apresentar um sumário que junta a informação\n"
+"recolhida sobre o seu sistema. Dependendo do material instalado na sua\n"
+" máquina, poderá ter uma ou todas das seguintes entradas.\n"
+"Cada entrada é feita sobre o item de material para ser configurado,\n"
+"seguido de um rápido sumário da corrente configuração.\n"
+"Clica no botão correspondente \"%s\" para fazer as alterações.\n"
+"\n"
+" * \"%s\": verifique a configuração actual do mapa do teclado corrente\n"
+"e mude-a se necessário.\n"
+"\n"
+" * \"%s\": verifique a selecção de país actual. Se não estiver neste país,\n"
+"clique no botão \"%s\" e escolha outro. Se o seu país não aparecer na lista\n"
+"mostrada, clica no botão \"%s\" para obter a lista completa de países.\n"
+"\n"
+" * \"%s\": por omissão, o DrakX escolhe o fuso horário do país\n"
+"escolhido. Pode clicar no botão \"%s\" se esta não é a opção correcta.\n"
+"\n"
+" * \"%s\": verifique a actual configuração do rato e clique no botão para\n"
+"mudar se necessário.\n"
+"\n"
+" * \"%s\": clique no botão \"%s\" para abrir o assistente de configuração\n"
+"de impressoras. Consulte o capítulo correspondente do ``Guia do "
+"Utilizador'',\n"
+"para mais informação sobre como configurar uma nova impressora.\n"
+"O interface apresentado no nosso manual, é similar ao usado na instalação.\n"
+"\n"
+" * \"%s\": se uma placa de som for detectada no seu sistema,será mostrada\n"
+"aqui. SE notar que a placa de som não é actualmente presente no seu\n"
+"sistema, pode clicar no botão para escolher um controlador diferente.\n"
+"\n"
+" * \"%s\": se tem uma placa de TV, é aqui que a informação acerca da\n"
+"configuração é mostrada, Se tem uma placa de TV e não é detectada,\n"
+"clique em \"%s\" para a tentar configurar manualmente.\n"
+"\n"
+" * \"%s\": pode clicar em \"%s\" para mudar os parâmetros associados\n"
+"com a placa se acha que a configuração está errada.\n"
+"\n"
+" * \"%s\": por omissão, o DrakX configura o seu interface gráfico nas\n"
+"resoluções \"800x600\" ou \"1024x768\". Se isso não lhe serve, pode\n"
+"clicar em \"%s\" para configurar o seu interface gráfico.\n"
+"\n"
+" * \"%s\": se deseja configurar a sua Internet ou acesso de rede local\n"
+"pode fazê-lo. Refira-se a documentação impressa ou use o Centro de\n"
+"Controlo do Mandriva Linux a seguir a instalação ter terminado de\n"
+"beneficiar da ajuda incluída.\n"
+"\n"
+" * \"%s\": permite-lhe configurar endereços HTTP e FTP proxy se a máquina\n"
+"onde está a instalar é para ser localizada atrás de um servidor proxy.\n"
+"\n"
+" * \"%s\": esta entrada permite-lhe redefinir o nível de segurança como\n"
+"configurado num passo anterior.\n"
+"\n"
+" * \"%s\": se planeia ligar a sua máquina à Internet, é uma boa ideia\n"
+"proteger-se de intrusões ao configurar uma firewall. Consultar secção\n"
+"correspondente do ``Guia de Utilizador'' para detalhes acerca de como\n"
+"configurar uma firewall.\n"
+"\n"
+" * \"%s\": se deseja mudar a configuração do carregador de arranque,\n"
+"clique nesse botão. Isto deveria ser reservado aos utilizadores\n"
+"avançados.Referira-se à documentação impressa, ou à linha de ajuda\n"
+"sobre a configuração de carregador de arranque (bootloader) no\n"
+"Centro de Controlo Mandriva Linux.\n"
+"\n"
+" * \"%s\": através desta entrada pode ajustar quais os serviços que serão\n"
+"executados na sua máquina. Se planeia configurar esta máquina como\n"
+"um servidor, é uma boa ideia rever a configuração."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Placa ISDN"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Interface gráfico"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Escolha o disco que deseja apagar para instalar a sua nova partição\n"
+"Mandriva Linux. Tenha cuidado, todos os ficheiros no disco serão\n"
+"perdidos de forma irrecuperável!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Clique em \"%s\" se deseja apagar todos os dados e partições\n"
+"presentes neste disco rígido.Tenha cuidado, depois de clicar em \"%s\",\n"
+"não será capaz de recuperar qualquer dado e partição presente neste\n"
+"disco rígido, incluindo qualquer dado do Windows.\n"
+"\n"
+"Clique em \"%s\" para anular esta operação sem perder dados\n"
+"e partições presentes neste disco."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Próximo ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Anterior"
+
diff --git a/perl-install/install/help/po/pt_BR.po b/perl-install/install/help/po/pt_BR.po
new file mode 100644
index 000000000..0f8bca67e
--- /dev/null
+++ b/perl-install/install/help/po/pt_BR.po
@@ -0,0 +1,2021 @@
+# translation of pt_BR.po to
+# translation of pt_BR.po to Brazilian Portuguese
+# translation of DrakX-pt_BR.po to Brazilian Portuguese
+# tradução de DrakX-pt_BR.po para Português do Brasil
+# DRAKX PT_BR PO FILE
+# Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
+# Lisiane Sztoltz Teixeira <lisiane@mandriva.com>
+# Andrei Bosco Bezerra Torres <andrei_bosco@yahoo.com.br>, 2000, 2003.
+# Bruno Dorfman Buys <brunobuys@zipmail.com.br>, 2002.
+# Tiago da Cruz Bezerra <tiagocruz18@uol.com.br>,2002 2003, 2004.
+# Ricardo de Castilho <cast_brasil@ig.com.br>, 2003.
+# Carlinhos Cecconi <carlinux@terra.com.br>, 2003, 2004.
+# Deivi Lopes Kuhn <deivikuhn@yahoo.com.br>, 2003, 2004.
+# Cristiano Otto Von Trompczynski <cris@mandriva.com>, 2005.
+# Arthur R. Mello <renato@conectiva.com.br>, 2005.
+# Arthur Renato Mello <renato@conectiva.com.br>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: pt_BR\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-10-24 08:51-0200\n"
+"Last-Translator: Arthur Renato Mello <renato@conectiva.com.br>\n"
+"Language-Team: <pt@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Antes de continuar, você deve ler com atenção os termos da licença. Ela \n"
+"cobre a distribuição Mandriva Linux inteira. Se você concorda com todos os "
+"termos,\n"
+"clique em \"%s\". Se não concordar, clique no botão \"%s\"\n"
+"para reiniciar seu computador."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux é um sistema multiusuário, e isto significa que cada usuário pode\n"
+"ter suas próprias preferências, seus próprios arquivos, e assim por diante. "
+"Mas,\n"
+"ao contrário do \"root\", que é o administrador do sistema, os usuários\n"
+"adicionados aqui não terão direito de modificar nada, a não ser seus\n"
+"próprios arquivos e suas próprias configurações, protegendo o sistema \n"
+"contra mudanças involuntárias ou maliciosas, que poderiam impactar no "
+"sistema como um todo. Você deverá criar ao menos uma\n"
+"conta regular para você mesmo - esta é a conta que você deverá usar no seu\n"
+"dia-a-dia. Embora seja muito prático acessar o sistema como \"root\" para "
+"fazer tudo,\n"
+"também pode ser muito perigoso! O menor engano pode fazer com que seu\n"
+"sistema não funcione mais. Como usuário regular, mesmo cometendo um erro\n"
+"sério, o pior que pode acontecer é você perder informação, mas não o "
+"sistema\n"
+"inteiro.\n"
+"\n"
+"Primeiro, você deve digitar o seu nome real. Isto não é obrigatório, é "
+"claro,\n"
+"pois você pode digitar, na verdade, o que você quiser.\n"
+"O DrakX pegará a primeira palavra que você digitou na caixa e colocará\n"
+"no campo \"%s\". Este é o nome que esse usuário específico utilizará para "
+"acessar o sistema. Você pode mudá-lo, caso queira. Depois você deverá\n"
+"digitar uma senha. Uma senha de usuário não-privilegiado (regular) não é "
+"tão\n"
+"crucial quanto a de \"root\", do ponto de vista da segurança. Mas isto não "
+"é\n"
+"razão para negligenciar esta senha, deixando-a em branco ou escolhendo uma\n"
+"muito simples: mais tarde, seus arquivos poderão correr sérios riscos.\n"
+"\n"
+"Clicando em \"%s\" você poderá adicionar outros usuários. Adicione um\n"
+"usuário para cada um dos seus amigos: seu pai ou sua irmã, por exemplo.\n"
+"Depois que terminar de adicionar os usuários, clique em \"%s\".\n"
+"\n"
+"Clicando no botão \"%s\" você poderá mudar o \"shell\" padrão do usuário\n"
+"(o padrão é o bash).\n"
+"\n"
+"Quando você terminar de adicionar usuários, você poderá escolher um usuário\n"
+"para que ele acesse automaticamente o sistema quando o computador for "
+"iniciado.\n"
+"Caso você esteja interessado neste recurso (e não precisar de muita\n"
+"segurança local), escolha o usuário e o gerenciador de janelas,\n"
+"e então clique em \"%s\". Se não estiver interessado neste recurso, "
+"desmarque\n"
+"a opção \"%s\""
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Você quer usar este recurso?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Aqui estão listadas as partições Linux detectadas no seu disco rígido.\n"
+"Você pode manter as opções feitas pelo assistente, elas são\n"
+"boas para o uso diário. Se você quiser alterar estas opções, você deve ao\n"
+"menos definir uma partição (\"/\"). Não escolha uma partição muito pequena\n"
+"ou você não será capaz de instalar todos os softwares desejados. Se você\n"
+"quiser guardar seus dados em uma partição separada, você precisa escolher\n"
+"uma partição \"/home\" (apenas possível se você tiver mais de \n"
+"uma partição Linux disponível).\n"
+"\n"
+"Cada partição é listada da seguinte forma: \"Nome\", \"Capacidade\".\n"
+"\n"
+"\"Nome\" é codificado da seguinte maneira: \"tipo do disco rígido\", "
+"\"número\n"
+"do disco rígido\", \"número da partição\" (por exemplo, \"hda1\").\n"
+"\n"
+"\n"
+"\"Tipo do disco rígido\" é \"hd\" se seu disco rígido for IDE e \"sd\"\n"
+"se ele for um disco rígido SCSI.\n"
+"\n"
+"\n"
+"\"Número do disco rígido\" é sempre uma letra depois de \"hd\" ou \"sd\".\n"
+"Para os discos rígidos IDE:\n"
+"\n"
+" * \"a\" significa \"disco rígido mestre na controladora IDE primária\",\n"
+"\n"
+" * \"b\" significa \"disco rígido escravo na controladora IDE primária\",\n"
+"\n"
+" * \"c\" significa \"disco rígido mestre na controladora IDE secundária\",\n"
+"\n"
+" * \"d\" significa \"disco rígido escravo na controladora IDE secundária\",\n"
+"\n"
+"\n"
+"Com discos rígidos SCSI, um \"a\" significa \"SCSI ID mais baixo\", um \"b\" "
+"significa \"segundo SCSI ID mais baixo\", e assim por diante."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"O instalador do Mandriva Linux está espalhado em diferentes CD-ROMs.\n"
+"Se o pacote selecionado estiver localizado em outro CD-ROM, O DrakX irá\n"
+"ejetar o CD atual e pedir para você inserir o CD necessário. Se você não "
+"tiver com o CD em mãos, basta clicar em \"%s\", e os pacotes correspondentes "
+"não\n"
+"serão instalados."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Agora você deverá especificar quais programas deseja instalar no seu\n"
+"sistema. Existem centenas de pacotes disponíveis para o Mandriva Linux, e\n"
+"para facilitar sua escolha eles foram agrupados em grupos de aplicações\n"
+"similares.\n"
+"\n"
+"O Mandriva Linux separou os pacotes em quatro categorias. Você pode\n"
+"misturar as aplicações de vários grupos, e assim a \"Estação de Trabalho\" "
+"pode ter aplicações do grupo \"Servidor\".\n"
+"\n"
+" * \"%s\": Se você planeja usar sua máquina como estação de trabalho,\n"
+"selecione um ou mais dos grupos desta categoria.\n"
+"\n"
+" * \"%s\": Se a máquina será usada para programação e/ou compilação, escolha "
+"os pacotes apropriados desta categoria. O grupo especial\n"
+"\"LSB\" irá configurar seus sistema para ficar o mais compatível possível\n"
+"com a especificação Linux Standard Base.\n"
+"\n"
+" Selecionar o grupo \"LSB\" irá também instalar o kernel da séria \"2.4\", "
+"ao\n"
+"invés da série padrão \"2.6\". Isto garante 100%% de compatibilidade com LSB "
+"no\n"
+"sistema. No entanto, se você não selecionar o grupo \"LSB\" você ainda terá\n"
+"um sistema próximo a 100%% de compatibilidade com a LSB.\n"
+"\n"
+" * \"%s\": se a máquina será um servidor, você poderá escolher quais dos\n"
+"serviços deseja instalar na máquina.\n"
+"\n"
+" * \"%s \": este é o grupo em que você escolherá seus ambientes\n"
+"gráficos preferidos. Pelo menos um tem que ser selecionado se você quer\n"
+"ter uma estação de trabalho gráfica.\n"
+"\n"
+"Ao mover o ponteiro do mouse sobre um nome de grupo, uma pequena explicação\n"
+"sobre seu conteúdo aparecerá.\n"
+"\n"
+"Você pode marcar a caixa \"%s\", ela é útil se você tiver um pouco de "
+"experiência\n"
+"com o nome dos pacotes oferecidos ou se você deseja ter total controle "
+"sobre\n"
+"o que irá ser instalado.\n"
+"\n"
+"Se você iniciar uma instalação no modo \"%s\", você pode desmarcar todos\n"
+"os grupos e prevenir a instalação de qualquer pacote adicional. Isto é útil "
+"para\n"
+"reparar ou atualizar um sistema já existente.\n"
+"\n"
+"Se você não selecionar nenhum grupo quando em uma instalação regular (o "
+"oposto\n"
+"de uma atualização), uma caixa de diálogo aparecerá propondo diferentes\n"
+"opções para uma instalação mínima:\n"
+"\n"
+" * \"%s\": Instala o mínimo de pacotes possíveis para se ter uma estação\n"
+"de trabalho gráfica.\n"
+"\n"
+" * \"%s\": Instala a base do sistema acrescida de utilitários básicos e\n"
+"documentação. Esta Instalação é útil para configurar um servidor.\n"
+"\n"
+" * \"%s\": Instala os pacotes mínimos necessários para obter um sistema\n"
+"Linux funcionando. Com esta instalação você terá somente interface de\n"
+"linha de comando. O tamanho total desta instalação é de 65 megabytes."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Atualizar"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Com documentação básica"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Instalação realmente mínima"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Se você escolheu selecionar pacotes individualmente, será apresentada uma\n"
+"árvore contendo todos os pacotes classificados por grupos e subgrupos.\n"
+"Navegando nesta árvore, você poderá selecionar grupos inteiros, subgrupos\n"
+" ou pacotes individuais.\n"
+"\n"
+"Quando você seleciona um pacote individual na árvore, uma breve \n"
+"descrição sobre o pacote aparecerá na janela da direita.\n"
+"\n"
+"!! Quando um pacote de servidor foi selecionado, intencionalmente ou por\n"
+"ser parte de um grupo, será pedido para que você confirme se realmente "
+"deseja que\n"
+"estes servidores sejam instalados. Por padrão, no Mandriva Linux qualquer\n"
+"serviço instalado será iniciado quando a máquina for iniciada.\n"
+"Mesmo que sejam seguros e não existam quaisquer dúvidas a respeito\n"
+"da distribuição, é possível que brechas de segurança\n"
+"sejam descobertas depois que esta versão do Mandriva Linux foi concluída.\n"
+"Se você não sabe o que um determinado serviço faz ou porque está sendo\n"
+"instalado, clique em \"%s\". Clicando em \"%s\", os serviços listados\n"
+"serão instalados e serão iniciados automaticamente quando o\n"
+"sistema for iniciado!!\n"
+"\n"
+"A opção \"%s\" desabilita a caixa de diálogo com o aviso que aparece quando\n"
+"o instalador seleciona um pacote automaticamente por ter resolvido\n"
+"dependências. Alguns pacotes dependem de outros e a instalação de \n"
+"de um ou mais pacotes pode ser requisitada para que se instale um programa\n"
+"específico. O instalador pode determinar quais pacotes são necessários\n"
+"para satisfazer uma dependência e assim completar a instalação.\n"
+"\n"
+"O pequeno ícone de disco flexível no fim da lista permite gravar a lista\n"
+"de pacotes escolhida durante uma instalação. Isto é útil quando você tiver\n"
+"um número de máquinas que deseja configurar de forma idêntica. Ao clicar\n"
+"neste ícone, será pedido a você que insira um disquete, criado no final de "
+"outra\n"
+"instalação. Veja a segunda dica no último passo sobre\n"
+"como criar esse disquete."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Dependências automáticas"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": clique no botão \"%s\" para abrir o assistente de configuração de\n"
+"impressora. Consulte o capítulo correspondente do \"Guia do Iniciante\" "
+"para\n"
+"mais informações sobre como configurar uma nova impressora. A interface\n"
+"apresentada no manual é similar à utilizada durante a instalação."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Esta janela é utilizada para selecionar quais serviços você deseja iniciar\n"
+"durante o processo de inicialização (boot) da máquina.\n"
+"\n"
+"O DrakX irá listar todos os serviços disponíveis na instalação atual.\n"
+"Reveja cuidadosamente e desabilite aqueles que não são sempre necessários \n"
+"durante a inicialização.\n"
+"\n"
+"Um pequeno texto de ajuda descrevendo a função do serviço será mostrado \n"
+"quando o mesmo for selecionado. Contudo, caso você não tenha certeza se um \n"
+"serviço é útil ou não, é seguro manter o comportamento padrão.\n"
+"\n"
+"!! Tenha muito cuidado neste passo, caso você pretenda usar sua máquina como "
+"um \n"
+"servidor: você provavelmente vai querer que serviços indesejados não sejam "
+"iniciados.\n"
+"Lembre-se de que vários serviços podem ser perigosos se forem habilitados em "
+"um\n"
+"servidor. Em geral, selecione apenas os serviços que você realmente "
+"precisa. !!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"O GNU/Linux gerencia a hora em GMT (Greenwich Mean Time) e calcula a hora\n"
+"local de acordo com o fuso horário que você escolheu. Se o relógio em sua\n"
+"placa mãe está configurado para o horário local, é possível desativá-lo, "
+"desmarcando\n"
+"\"%s\", permitindo ao GNU/Linux saber que o relógio do hardware e o relógio "
+"do\n"
+"sistema são os mesmos. Isto é útil quando a máquina também tem outro sistema "
+"operacional.\n"
+"\n"
+"A opção \"%s\" irá automaticamente ajustar o relógio, conectando-o a um\n"
+"servidor remoto de hora na Internet. Obviamente, você deve dispor de uma\n"
+"conexão na Internet para isso. Recomendamos que você escolha um servidor de "
+"hora localizado próximo a você, na lista apresentada.\n"
+"Esta opção, na verdade, instala um servidor de hora que poderá ser\n"
+"usado também por outras máquinas de sua rede local."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Sincronização automática da hora "
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Placa de vídeo\n"
+"\n"
+" O instalador normalmente detecta e configura automaticamente a placa de\n"
+"vídeo instalada em seu computador. Se não for o caso, você pode escolher\n"
+"na lista a placa que você possui atualmente instalada.\n"
+"\n"
+" Em casos nos quais diferentes servidores são disponíveis para sua placa\n"
+"de vídeo, com ou sem aceleração 3D, você será questionado para escolher\n"
+"um servidor que atenda melhor às suas necessidades."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (para X Window System ou Sistema de Janelas X) é o coração da interface "
+"gráfica do GNU/Linux\n"
+"no qual todos os ambientes gráficos (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) fornecidos com o Mandriva Linux se baseiam.\n"
+"\n"
+"Você verá uma lista de parâmetros para alterações, para poder\n"
+"obter uma ótima resolução gráfica. \n"
+"Placa de Vídeo\n"
+"\n"
+" O instalador normalmente poderá detectar e configurar automaticamente \n"
+"a placa de vídeo da sua máquina. Se esta configuração não estiver correta, "
+"você pode\n"
+"escolher na lista a placa correspondente instalada.\n"
+"\n"
+" Se existirem diferentes servidores possíveis para a sua placa, com ou "
+"sem\n"
+"aceleração 3D, será oferecido para você escolher o servidor que melhor "
+"atenda as\n"
+"necessidades.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" O instalador pode normalmente detectar e configurar automaticamente\n"
+"o monitor da sua máquina. Se não for o correto, você pode escolher na\n"
+"lista o monitor que está conectado a seu computador.\n"
+"\n"
+"\n"
+"\n"
+"Resolução\n"
+"\n"
+" Aqui você pode escolher a resolução e a profundidade das cores que seu\n"
+"hardware pode exibir. Escolha a resolução que melhor lhe agrada (você\n"
+"poderá alterá-la após a instalação). Um exemplo da configuração escolhida\n"
+"é mostrada na tela.\n"
+"\n"
+"\n"
+"\n"
+"Teste\n"
+"\n"
+" Dependendo do seu hardware, esta opção pode não ser mostrada.\n"
+"\n"
+" O sistema testará a resolução gráfica escolhida.\n"
+"Se você ver a mensagem durante o teste e responder \"%s\",\n"
+"o DrakX seguirá para a etapa seguinte. Se não puder ver a mensagem,\n"
+"significa que algo na configuração está errado, e o teste vai acabar\n"
+"automaticamente depois de 12 segundos, voltando ao menu. Mude\n"
+"as configurações até obter uma boa resolução gráfica.\n"
+"\n"
+"\n"
+"\n"
+"Opções\n"
+"\n"
+" Aqui você pode escolher se deseja que o computador inicie\n"
+"automaticamente em modo gráfico. Obviamente, você vai querer marcar o\n"
+"\"%s\" se a sua máquina é um servidor, ou caso não tenha conseguido obter\n"
+"uma boa configuração de vídeo."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+"\n"
+" O instalador normalmente detecta e configura automaticamente o\n"
+"monitor conectado ao seu computador. Se a configuração não estiver correta, "
+"escolha \n"
+"na lista o monitor correto que está conectado em seu computador."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Resolução\n"
+"\n"
+" Você pode escolher aqui as resoluções e profundidade de cores disponíveis "
+"para\n"
+"o seu hardware. Escolha as que atendam melhor às suas necessidades (você\n"
+"poderá alterar esta configuração após a instalação). Uma amostra da "
+"configuração\n"
+"será mostrada no monitor."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"No caso de existirem vários servidores disponíveis para a sua placa,\n"
+"com ou sem aceleração 3D, escolha o servidor que melhor se adapta\n"
+"às suas necessidades."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Opções\n"
+"\n"
+" Aqui você pode escolher se deseja que o computador inicie\n"
+"automaticamente em modo gráfico. Obviamente, você vai querer marcar o\n"
+"\"%s\" se a sua máquina é um servidor, ou caso não tenha conseguido obter\n"
+"uma boa configuração de resolução de vídeo."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Neste ponto, você precisa escolher onde instalar o seu sistema\n"
+"Mandriva Linux no seu disco rígido. Se seu disco estiver vazio ou se um\n"
+"sistema operacional existente usa todo o espaço disponível, você terá que\n"
+"particioná-lo. Basicamente, particionar um disco rígido consiste em\n"
+"dividi-lo logicamente para criar espaço para o seu novo sistema Mandriva "
+"Linux.\n"
+"\n"
+"Como os efeitos de um processo de particionamento são normalmente\n"
+"irreversíveis, podendo levar à perda de dados do sistema operacional atual,\n"
+"ele pode ser intimidante e estressante para um usuário inexperiente.\n"
+"Felizmente, o DrakX traz um assistente que simplifica este processo. Antes\n"
+"de continuar, leia o restante desta seção, e faça todos os passos\n"
+"com calma.\n"
+"\n"
+"Dependendo da configuração do seu disco rígido, várias soluções podem estar\n"
+"disponíveis:\n"
+"\n"
+"* \"%s\": esta opção particionará automaticamente seu(s) disco(s) vazio(s).\n"
+"Se você usar esta opção não haverá mais nenhum alerta adicional.\n"
+"\n"
+"* \"%s\": o assistente detectou uma ou mais partições Linux em seu disco\n"
+"rígido. Se você deseja usá-las, escolha esta opção. Será pedido para que "
+"você escolha os pontos de montagem associados\n"
+"a cada uma das partições. Alguns pontos de montagem já existentes serão "
+"selecionados\n"
+"automaticamente, e na maioria das vezes é uma boa idéia mantê-los.\n"
+"\n"
+"* \"%s\": se o Microsoft Windows estiver instalado no seu disco rígido e\n"
+"ocupar todo o espaço disponível, você terá que criar espaço livre para o\n"
+"GNU/Linux. Para fazer isto, você pode remover a sua partição Microsoft "
+"Windows\n"
+"(leia-se: usar a opção 'Apagar disco inteiro') ou redimensionar a sua "
+"partição Microsoft\n"
+"Windows do tipo FAT ou NTFS. O redimensionamento pode ser feito sem a perda "
+"de dados, desde\n"
+"que você tenha desfragmentado previamente sua partição e a mesma esteja\n"
+"formatada em FAT ou NTFS. Recomendamos fortemente o backup de seus\n"
+"dados. Esta solução é útil se você quiser usar o Mandriva Linux e o\n"
+"Microsoft Windows no mesmo computador.\n"
+"\n"
+"Antes de escolher esta solução, compreenda que o tamanho de sua partição\n"
+"Microsoft Windows será menor do que é agora. Isto significa que você terá\n"
+"menos espaço livre no Microsoft Windows para guardar os seus dados ou\n"
+"instalar novos programas.\n"
+"\n"
+"* \"%s\": se você quiser apagar todos os dados e todas as partições\n"
+"existentes no disco rígido e substituí-las pelo seu novo sistema Mandriva "
+"Linux, você pode escolher esta opção. Tenha cuidado, pois\n"
+"você não pode reverter sua escolha após a confirmação.\n"
+"\n"
+"!! Se você escolher esta opção, todos seus dados atuais serão perdidos. !!\n"
+"\n"
+" * \"%s\" Esta opção aparecerá quando seu disco rígido estiver totalmente\n"
+"ocupado pelo Microsoft Windows. Ao escolher esta opção, todo o conteúdo do "
+"seu \n"
+"disco rígido será apagado, sendo assim, todo ele particionado do início.\n"
+"\n"
+" !! Se você escolher esta opção, todo os dados do seu disco rígido serão "
+"perdidos. !!\n"
+"\n"
+"* \"%s\": escolha esta opção se você quiser particionar manualmente o seu\n"
+"disco rígido. Tenha cuidado -- ela é muito poderosa, mas muito perigosa. "
+"Você\n"
+"pode perder todos os seus dados facilmente. Escolha esta solução somente\n"
+"se souber o que está fazendo ou já tiver experiência com particionamento. "
+"Para mais\n"
+"informações de como usar o utilitário DiskDrake, leia a seção 'Gerenciando "
+"suas \n"
+"Partições' do 'Guia do Iniciante'."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Usar partição existente"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Apagar disco inteiro"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"E aqui estamos! A instalação agora está completa e o seu GNU/Linux está\n"
+"pronto para ser usado. Clique em \"%s\" para reiniciar o sistema. Não "
+"esqueça\n"
+"de remover a mídia de instalação (CD-ROM ou disquete). A primeira coisa\n"
+"que você deverá ver, após seu computador terminar os testes de hardware,\n"
+"será o menu do gerenciador de inicialização, que fornecerá para você uma "
+"lista de opções, para que você escolha qual sistema\n"
+"operacional iniciar.\n"
+"\n"
+"O botão \"%s\" mostra mais dois botões:\n"
+"\n"
+" * \"%s\": para criar um disco de instalação que automaticamente fará\n"
+"uma instalação completa, sem a ajuda de um operador, semelhante à\n"
+"instalação que você acabou de fazer.\n"
+"\n"
+" Note que duas opções diferentes estão disponíveis depois que você clicar\n"
+"no botão:\n"
+"\n"
+" * \"%s\". É uma instalação parcialmente automática, porque a seção\n"
+"de particionamento (somente esta) permanece interativa.\n"
+"\n"
+" * \"%s\". Completamente automatizada: o disco rígido é completamente\n"
+"reescrito, e todos os dados anteriores serão perdidos.\n"
+"\n"
+" Esta funcionalidade é muito adequada quando se deseja instalar o\n"
+"sistema em um grande número de máquinas semelhantes. Veja a seção\n"
+"de instalação automática do nosso website para mais informações.\n"
+"\n"
+" * \"%s\": salva a seleção de pacotes feita nesta instalação.\n"
+"Para usar esta seleção em outra instalação, insira o disquete e inicie\n"
+"a instalação. No 'prompt', pressione a tecla F1 e digite >> linux\n"
+"defcfg=\"floppy\" << e pressione [Enter].\n"
+"\n"
+"(*) Você precisa de um disquete formatado com FAT. Para criar um pelo\n"
+"GNU/Linux, digite \"mformat a:\", ou \"fdformat /dev/fd0\" seguido por\n"
+"\"mkfs.vfat /dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Criar disquete de instalação automática"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Se você escolher reutilizar algumas partições GNU/Linux existentes, poderá "
+"reformatar algumas delas e \n"
+"apagar os dados contidos nelas. Se você deseja fazer isto, por favor, "
+"selecione\n"
+"quais partições você deseja formatar.\n"
+"\n"
+"Note que não é necessário reformatar todas as partições já existentes.\n"
+"Você deve reformatar as partições contendo o sistema operacional\n"
+"(tais como \"/\",\"/usr\" ou \"/var\"), mas você não tem que\n"
+"reformatar as partições contendo dados que você deseja manter\n"
+"(a partição \"/home\" é exemplo típico).\n"
+"\n"
+"Tenha cuidado ao selecionar as partições. Após formatá-las, todos os\n"
+"dados serão apagados e não poderão ser recuperados.\n"
+"\n"
+"Clique em \"%s\" quando estiver pronto para formatar as partições.\n"
+"\n"
+"Clique em \"%s\" se você desejar escolher outras partições para instalar\n"
+"o seu novo sistema operacional Mandriva Linux.\n"
+"\n"
+"Clique em \"%s\" para selecionar partições as quais você deseja que sejam "
+"verificadas, \n"
+"para a busca por blocos defeituosos."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Neste momento em que você está instalando o Mandriva Linux, é possível que\n"
+"alguns pacotes tenham sido atualizados após o lançamento inicial. Alguns\n"
+"erros e falhas de seguranças podem ter sido corrigidos. Para poder se\n"
+"beneficiar destas atualizações, você pode fazer o download destes pacotes\n"
+"da Internet. Escolha \"%s\" se você possui uma conexão à Internet\n"
+"funcionando, ou \"%s\" se você preferir instalar os pacotes atualizados\n"
+"mais tarde.\n"
+"\n"
+"Escolhendo \"%s\", aparecerá uma lista de locais de onde você poderá pegar\n"
+"as atualizações. Escolha a mais próxima de você. Quando a árvore de\n"
+"seleção de pacotes aparecer, marque o que desejar e pressione \"%s\" para\n"
+"fazer o download e instalar o(s) pacote(s) selecionado(s), ou \"%s\" para\n"
+"interromper."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Neste ponto, o DrakX permite a escolha do nível de segurança desejado para\n"
+"a máquina. Em geral, o nível da segurança deve ser ajustado para o mais alto "
+"possível, \n"
+"se a máquina contiver dados cruciais, ou se for uma máquina exposta\n"
+"diretamente à Internet. Contudo, os níveis mais altos de segurança\n"
+"diminuem a facilidade de uso do computador.\n"
+"\n"
+"Se você não souber o que escolher, fique com a opção padrão. Você poderá\n"
+"trocar o nível de segurança depois usando a ferramenta draksec, no Centro\n"
+"de Controle Mandriva Linux.\n"
+"\n"
+"Preencha o campo \"%s\" com o endereço de e-mail da pessoa responsável\n"
+"pela segurança. Assim, mensagens de segurança serão enviadas para esse "
+"endereço."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Administrador de Segurança"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Agora você precisa escolher qual(is) partição(ões) serão usadas para "
+"instalar o\n"
+"seu novo sistema Mandriva Linux. Se as partições já estiverem definidas \n"
+"(através de uma instalação anterior do GNU/Linux ou outro software\n"
+"particionador), você poderá utilizá-las. Caso contrário, as partições\n"
+"devem ser definidas.\n"
+"\n"
+"Para criar partições, você deve primeiro selecionar um disco rígido. Você\n"
+"pode selecionar o disco clicando em \"hda\" para o primeiro drive IDE,\n"
+"\"hdb\" para o segundo, \"sda\" para o primeiro drive SCSI e assim por\n"
+"diante.\n"
+"\n"
+"Para particionar o disco selecionado, você pode usar as seguintes opções:\n"
+"\n"
+" * \"%s\": esta opção removerá todas as partições do disco rígido "
+"selecionado.\n"
+"\n"
+" * \"%s\": esta opção permite criar automaticamente partições ext3 e swap "
+"no\n"
+" espaço livre do seu disco rígido.\n"
+"\n"
+"\"%s\": acesso a características adicionais:\n"
+"\n"
+" * \"%s\": se você quiser salvar sua tabela de partição em um disquete para\n"
+" poder recuperá-la, você pode usar esta opção. É altamente recomendável\n"
+" utilizá-la.\n"
+"\n"
+" * \"%s\": se você salvou a sua tabela de partição em um disquete de uma\n"
+"instalação anterior, você pode recuperá-la com esta opção.\n"
+"\n"
+" * \"%s\": se sua tabela de partição estiver danificada, você pode tentar\n"
+"recuperá-la usando esta opção. Tenha cuidado e lembre-se de que isto pode\n"
+"falhar.\n"
+"\n"
+" * \"%s\": descarta todas as alterações e carrega a tabela de partição que\n"
+"estava originalmente no disco rígido.\n"
+"\n"
+" * \"%s\": ao desmarcar esta opção, os usuários serão forçados a montar e "
+"desmontar\n"
+" manualmente as mídias removíveis, tais como discos flexíveis e CD-ROMs.\n"
+"\n"
+" * \"%s\": se você desejar utilizar um assistente para particionar o seu\n"
+" disco rígido, você pode usar esta opção. É recomendada caso não tenha\n"
+" conhecimento sobre particionamento.\n"
+"\n"
+" * \"%s\": você pode usar esta opção para cancelar suas alterações.\n"
+"\n"
+" * \"%s\": permite ações adicionais nas partições (tipo, opções, formato)\n"
+" e fornece mais informações sobre o disco rígido\n"
+"\n"
+" * \"%s\": quando você terminar de particionar o seu disco rígido, use esta\n"
+" opção para salvar as alterações.\n"
+"\n"
+"Quando definir o tamanho da partição, você pode fazê-lo com as setas\n"
+"direcionais de seu teclado.\n"
+"Nota: você pode utilizar qualquer opção usando o teclado: navegue entre as\n"
+"partições usando [Tab] e as setas [para cima/baixo].\n"
+"\n"
+"Quando a partição estiver selecionada, você pode usar:\n"
+"\n"
+" * Ctrl-c para criar uma nova partição (quando uma partição vazia estiver\n"
+" selecionada)\n"
+"\n"
+" * Ctrl-d para apagar uma partição\n"
+"\n"
+" * Ctrl-m para especificar um ponto de montagem\n"
+"\n"
+"Para mais informações sobre os diferentes tipos de sistemas de arquivos \n"
+"disponíveis, por favor, leia o capítulo sobre ext2FS do \"Manual de "
+"Referência\".\n"
+"\n"
+"Se você está instalando em uma Máquina PPC, você vai precisar criar uma\n"
+"pequena partição \"bootstrap\" HFS de no mínimo 1MB para usar com o \n"
+"gerenciador de boot yaboot. Se você quiser criar uma partição um\n"
+"pouco maior, digamos 50MB, você pode usar o espaço para guardar\n"
+"um kernel extra e uma imagem ramdisk para situações de emergência."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Montagem automática de mídia removível"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Mudar entre modo normal/expert"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Mais de uma partição Microsoft Windows foi detectada em seu disco\n"
+"rígido. Por favor, escolha a que você quer redimensionar para instalar o "
+"seu\n"
+"novo sistema operacional Mandriva Linux.\n"
+"\n"
+"Cada partição é listada da seguinte forma: \"Nome Linux\", \"Nome\n"
+"Windows\" \"Capacidade\".\n"
+"\n"
+"\"Nome Linux\" é codificado da seguinte maneira: \"tipo do disco rígido\", "
+"\"número do disco rígido\", \"número da partição\" (por exemplo, \"hda1\").\n"
+"\n"
+"\"Tipo do disco rígido\" é \"hd\" se seu disco rígido for IDE e \"sd\"\n"
+"se ele for um disco rígido SCSI.\n"
+"\n"
+"\"Número do disco rígido\" é sempre uma letra depois de \"hd\" ou \"sd\".Com "
+"discos rígidos IDE:\n"
+"\n"
+" * \"a\" significa \"disco rígido mestre na controladora IDE primária\",\n"
+"\n"
+" * \"b\" significa \"disco rígido escravo na controladora IDE primária\",\n"
+"\n"
+" * \"c\" , \"disco rígido mestre na controladora IDE secundária\",\n"
+"\n"
+" * \"d\" , \"disco rígido escravo na controladora IDE secundária\".\n"
+"\n"
+"Com discos rígidos SCSI, \"a\" significa \"SCSI ID mais baixo\", um \"b\"\n"
+"significa \"segundo SCSI ID mais baixo\", etc.\n"
+"\n"
+"O \"Nome Windows\" é a letra do seu disco rígido no Windows (o primeiro\n"
+"disco ou partição é chamado \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": confere a seleção do país atual. Se você não está neste país,\n"
+"clique no botão \"%s\" e escolha outro. Se seu país não está na \n"
+"lista mostrada, clique no botão \"%s\" para pegar a lista completa de países."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Este passo só é mostrado quando uma partição antiga do GNU/Linux foi\n"
+"encontrada em seu computador.\n"
+"\n"
+"O DrakX precisa saber agora se você quer executar uma nova instalação\n"
+"ou fazer uma atualização do Mandriva Linux existente no seu sistema:\n"
+"\n"
+" * \"%s\": na maioria das vezes, isto remove completamente o sistema "
+"antigo.\n"
+"Porém, dependendo do seu modo de particionamento, você pode evitar que\n"
+"alguns dos dados existentes sejam sobrescritos (como o diretório \"home\").\n"
+"Se você deseja mudar o particionamento dos seus discos rígidos, ou mudar o "
+"sistema de arquivos, você deve usar esta opção.\n"
+"\n"
+" * \"%s\": este método de instalação lhe permite atualizar os pacotes\n"
+"atualmente instalados em seu sistema Mandriva Linux. Seu esquema\n"
+"atual de particionamento e dados de usuário não serão alterados. A maioria\n"
+"dos outros passos de configuração permanecerão disponíveis, semelhantes a "
+"uma instalação normal.\n"
+"\n"
+"O uso da opção \"Atualizar\" deve funcionar bem em sistemas Mandriva Linux \n"
+"versão \"8.1\" ou superior. Executar uma atualização de versões anteriores\n"
+"ao Mandriva Linux \"8.1\" não é recomendado."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Dependendo do idioma que você escolheu, o DrakX escolherá uma\n"
+"configuração de teclado particular para você. Selecione esta opção ou\n"
+"escolha um outro layout de teclado.\n"
+"\n"
+"Contudo, você pode ter um teclado que não corresponde exatamente\n"
+"ao idioma que você escolheu: por exemplo, se você for um suíço, porém\n"
+"o idioma é o inglês, você pode preferir continuar usando um teclado suíço.\n"
+"Ou se você fala inglês mas mora em Quebec, você pode estar na mesma\n"
+"situação quando sua língua nativa e seu teclado não são os mesmos. Nestes\n"
+"casos, este passo da instalação permitirá que você escolha o teclado "
+"apropriado na lista.\n"
+"\n"
+"Clique em \"%s\" para ver uma lista completa com os teclados disponíveis. \n"
+"\n"
+"Se você escolher um layout baseado em um alfabeto não-latino, o próximo\n"
+"diálogo permitirá que você escolha a tecla que irá vincular a troca entre o\n"
+"teclado latino e o não-latino."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"O primeiro passo é escolher o seu idioma preferido.\n"
+"\n"
+"A escolha de seu idioma preferido afetará a documentação do sistema, o "
+"instalador\n"
+"e o sistema em geral. Selecione primeiro a região onde você está localizado\n"
+"e o idioma que você fala.\n"
+"\n"
+"Clicando em \"%s\" você poderá selecionar outros idiomas para serem\n"
+"instalados no seu sistema. Ao selecionar outros idiomas também serão \n"
+"instalados os arquivos específicos para documentação e aplicativos. Por "
+"exemplo, se\n"
+"você pretende adicionar usuários espanhóis na sua máquina, selecione\n"
+"Inglês como idioma padrão na árvore de visualização e \"%s\" na seção\n"
+"Avançado.\n"
+"\n"
+"Sobre o suporte a UTF-8 (unicode): Unicode é o novo conjunto de codificação "
+"de caracteres\n"
+"para todas os idiomas existentes. O suporte completo em GNU/Linux ainda\n"
+"está em desenvolvimento. Por esta razão, o uso dele no Mandriva Linux \n"
+"dependerá da escolha do usuário:\n"
+"\n"
+"* Se você escolher idiomas legados, que possuem uma codificação forte "
+"(idiomas\n"
+"latinos, Russo, Japonês, Chinês, Coreano, Thai, Grego, Turco e a maioria dos "
+"idiomas com iso-8859-2), a codificação legada será usada por padrão;\n"
+"\n"
+"* Outros idiomas usarão o unicode por padrão;\n"
+"\n"
+"* Se dois ou mais idiomas forem requeridos, e tais idiomas não\n"
+"usarem a mesma codificação, então o unicode irá ser usado em todo o "
+"sistema;\n"
+"\n"
+"* Finalmente, o uso do unicode poderá ser forçado para o sistema que o "
+"usuário\n"
+"solicitar, através da opção \"%s\". independente do(s) idioma(s)\n"
+"selecionado(s).\n"
+"\n"
+"Note que você não está limitado a escolher um único idioma. Você pode\n"
+"selecionar vários, ou instalar todos selecionando a opção \"%s\". Selecionar "
+"o suporte para um idioma significa que as traduções, fontes, dicionários e "
+"corretores ortográficos, entre outros itens, serão também instaladas para "
+"este idioma.\n"
+"\n"
+"Para trocar entre os vários idiomas instalados no sistema, você pode\n"
+"executar o comando \"/usr/sbin/localedrake\" como \"root\" para alterar o\n"
+"idioma usado pelo sistema inteiro, e para todos os usuários. Executando o "
+"comando como usuário\n"
+"comum, a mudança apenas afetará o usuário em questão."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Espanhol"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Normalmente, o DrakX não tem problemas em detectar o número de botões\n"
+"de seu mouse. Caso isto ocorra, ele assume que você tem um mouse\n"
+"de dois botões, e irá configurá-lo para emulação do terceiro botão. O\n"
+"terceiro botão pode ser acionado pressionando simultaneamente os botões\n"
+"esquerdo e direito do mouse. O DrakX saberá automaticamente se a interface\n"
+"é PS/2, serial ou USB.\n"
+"\n"
+"Se você tiver um mouse com 3 botões que não possua roda (wheel), você pode\n"
+"escolher um mouse \"%s\". DrakX irá então configurar seu mouse para que "
+"você\n"
+"possa simular o uso da roda da seguinte maneira: pressione o botão do meio "
+"e\n"
+"mova o ponteiro do seu mouse para cima e para baixo.\n"
+"\n"
+"Se por alguma razão você quiser especificar um tipo diferente de mouse,\n"
+"selecione o tipo da lista.\n"
+"\n"
+"Você pode selecionar a entrada \"%s\" para escolher um tipo de mouse\n"
+"\"genérico\" o qual deve funcionar com todos os mouses novos.\n"
+"\n"
+"Se você escolher um mouse diferente do padrão, uma tela será mostrada.\n"
+"Use os botões e a roda para verificar se as configurações estão corretas\n"
+"e se o mouse está configurado corretamente. Se o mouse não funcionar\n"
+"corretamente, pressione a barra de espaços ou o [Enter] para \n"
+"cancelar o teste e voltar para a lista de escolhas.\n"
+"\n"
+"Ocasionalmente, a roda do mouse (wheel) não será detectada automaticamente,\n"
+"e então você necessitará selecionar seu mouse de uma lista. Escolha\n"
+"corretamente a porta que seu mouse está conectado. Após selecionar\n"
+"um mouse e ter pressionado no botão \"%s\", uma imagem do mouse será\n"
+"mostrada na tela. Mova toda a roda do mouse para assegurar-se de que\n"
+"esteja ativada corretamente. Após verificar o funcionamento da roda\n"
+"do mouse, teste os botões e certifique-se de que o ponteiro do mouse\n"
+"move-se junto com o mesmo."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "com emulação de roda"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Universal | Qualquer mouse PS/2 & USB"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Por favor, selecione a porta correta. Por exemplo, a porta COM1\n"
+"no MS Windows é chamada \"ttyS0\" no GNU/Linux."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Este ponto é crucial para a segurança do seu sistema GNU/Linux: você\n"
+"deverá digitar a senha de \"root\". \"Root\" é o administrador do sistema,\n"
+"e é o único autorizado a fazer atualizações, adicionar usuários e mudar\n"
+" configurações gerais do computador. Em suma: \"root\" pode fazer tudo! Por "
+"isso\n"
+"você deve escolher uma senha difícil de adivinhar - o DrakX irá avisá-lo se "
+"a senha que você digitar for muito simples. Você pode também escolher não\n"
+"digitar uma senha, mas nós desaconselhamos fortemente esta opção. O sistema\n"
+"GNU/Linux é tão vulnerável a erros cometidos pelo operador como qualquer "
+"outro.\n"
+"O \"root\"\n"
+"pode contornar todas as limitações do sistema e desavisadamente apagar \n"
+" todos os dados de uma partição, por exemplo. É muito importante, portanto, "
+"que seja\n"
+"difícil se tornar \"root\".\n"
+"\n"
+"A senha deve ser um mistura de caracteres alfanuméricos, com pelo menos 8 \n"
+"caracteres. Nunca escreva a senha de \"root\" num papel -- isto facilita "
+"para \n"
+" alguém comprometer seu sistema\n"
+"\n"
+"Porém, não faça também uma senha muito complicada e longa, porque você\n"
+" deve ser capaz de lembrá-la!\n"
+"\n"
+"A senha não será mostrada na tela enquanto você digita. Portanto você\n"
+"deverá digitar a senha duas vezes para reduzir a chance de erro. Se ocorrer\n"
+"de você digitar o mesmo erro duas vezes, você deverá fazer o primeiro login\n"
+"no sistema com esta senha \"errada\".\n"
+"\n"
+"Se seu acesso a este computador é controlado por um servidor de "
+"autenticação,\n"
+"clique no botão \"%s\".\n"
+"\n"
+"Se sua rede usa o protocolo LDAP, NIS ou autenticação em um PDC Windows,\n"
+"selecione o servidor apropriado em \"%s\". Se você não sabe, pergunte ao "
+"seu\n"
+"administrador de rede.\n"
+"\n"
+"Se você tiver problemas para lembrar de suas senhas, se seu computador "
+"nunca\n"
+" será conectado à internet ou se você confiar em absolutamente todas as\n"
+"pessoas que usam seu computador, você pode escolher usar \"%s\"."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "autenticação"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Um gerenciador de inicialização (ou boot loader) é um pequeno programa que é "
+"mostrado na inicialização (boot)de um computador. Ele é responsável por\n"
+"iniciar todo o sistema. Normalmente, a sua instalação é totalmente "
+"automática.\n"
+"O DrakX irá analisar o setor de boot de seu disco e proceder de acordo com\n"
+"o que for encontrado nele:\n"
+"\n"
+" * se um setor de boot Windows for encontrado, ele será substituído por um\n"
+"setor de boot GRUB/LILO. Desta forma, você será capaz de carregar qualquer\n"
+"sistema GNU/Linux ou qualquer outro sistema operacional instalado em sua "
+"máquina.\n"
+"\n"
+" * se um setor de boot GRUB ou LILO for encontrado, ele será substituído por "
+"um novo.\n"
+"\n"
+"Se o DrakX não puder determinar aonde deverá ser armazenado o setor de "
+"boot,\n"
+"ele irá perguntar para você. Geralmente, o \"%s\" é o lugar mais seguro.\n"
+"Escolhendo \"%s\", nenhum gerenciador de inicialização será instalado. Use "
+"esta opção somente se\n"
+"você souber o que está fazendo."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Aqui você seleciona o sistema de impressão para o seu computador.\n"
+"Outros sistemas operacionais podem oferecer-lhe apenas um, mas o Mandriva\n"
+"Linux oferece dois. Cada um se encaixa melhor em um tipo particular de "
+"configuração.\n"
+"\n"
+" * \"%s\" -- que significa 'print, do not queue' ou 'imprima não deixe na\n"
+"fila', e é a escolha caso você tenha uma conexão direta com sua\n"
+"impressora e você queira ser capaz decorrigir falhas na impressão, e\n"
+"também se você não possuir impressoras em rede. (\"%s\" só funcionará em "
+"redes\n"
+"bem simples e se tornará lento quando usado em redes). É recomendado que vc "
+"use \"pdq\"\n"
+"se este é sua primeira experiência com GNU/Linux.\n"
+"\n"
+" * \"%s\" -- 'Common Unix Printing System' ou 'Sistema de Impressão Comum do "
+"Unix', é excelente para imprimir em\n"
+"sua impressora local e também através do mundo. É simples de se configurar\n"
+"e pode agir como servidor ou cliente para o antigo sistema de impressão \"lpd"
+"\".\n"
+"Por isto, é compatível com os sistemas antigos que podem precisar de "
+"serviços de\n"
+"impressão. Pode fazer vários truques, mas a configuração é quase tão fácil "
+"quanto a\n"
+"do \"pdq\". Se você precisar emular um servidor \"lpd\", você deve ativar o "
+"serviço chamado \"cups-lpd\".\n"
+"\" \"%s\" possui várias interfaces gráficas para selecionar as opções de "
+"impressão ou\n"
+"gerenciar a impressão.\n"
+"\n"
+"Você poderá mudar a sua escolha após a instalação utilizando o\n"
+"PrinterDrake no Centro de Controle Mandriva Linux, e clicando no botão \"%s"
+"\"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Expert"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"O DrakX tentará localizar primeiramente qualquer dispositivo IDE presente "
+"em\n"
+"sua máquina. Ele também tentará encontrar um ou mais placas PCI SCSI. Se o\n"
+"DrakX encontrar um adaptador SCSI ele instalará automaticamente o driver\n"
+"apropriado.\n"
+"\n"
+"Como a detecção do hardware não é à prova de falhas, o DrakX pode falhar ao\n"
+"tentar detectar seus discos. Se isto acontecer, você precisará especificar "
+"seu\n"
+"hardware manualmente. \n"
+"\n"
+"Se você tiver que especificar manualmente o seu adaptador, o DrakX\n"
+"perguntará se você quer especificar opções para ele. Você pode deixar\n"
+"que o DrakX examine o hardware para descobrir as opções. Isto\n"
+"normalmente funciona bem.\n"
+"\n"
+"Se o DrakX não conseguir detectar as opções automaticamente para determinar\n"
+"quais parâmetros são necessários passar ao hardware, você precisará "
+"fornecer\n"
+"configurar o para o driver manualmente."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": se uma placa de som for detectada em seu sistema, ela estará\n"
+"indicada aqui. Se você observar que a placa de som indicada não é a que\n"
+"realmente está presente em seu sistema, você pode clicar no botão e escolher "
+"outro driver."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"A título de revisão, o DrakX irá resumir em uma lista as informações que "
+"tem\n"
+"sobre o seu sistema. Dependendo do hardware instalado, você pode ter\n"
+"uma ou todas estas entradas. Cada uma delas é um elemento a ser\n"
+"configurado, seguido de um breve resumo da configuração atual.\n"
+"Clique no botão \"%s\" correspondente para fazer alguma alteração.\n"
+"\n"
+" * \"%s\": verifica a configuração atual do mapa de teclado e modifica-o, \n"
+"caso necessário.\n"
+"\n"
+" * \"%s\": verifica a seleção atual de país. Se não estiver neste país, "
+"clique\n"
+"no botão \"%s\" e escolha outro. Se o seu país não aparecer na primeira\n"
+"lista mostrada, pressione \"%s\" para obter a lista completa dos\n"
+"países.\n"
+"\n"
+" * \"%s\": Por padrão, o DrakX deduz seu fuso horário baseado no país\n"
+"escolhido. Pressione o botão \"%s\" para mudar caso não esteja correto.\n"
+"\n"
+" * \"%s\": verifique a configuração do mouse atual e mude-a se for "
+"necessário.\n"
+"\n"
+" * \"%s\": clique no botão \"%s\" para abrir o assistente de\n"
+"configuração da impressora. Veja o capítulo correspondente no\n"
+"'Guia do Iniciante' para saber mais sobre como configurar uma\n"
+"impressora. A interface utilizada no manual é semelhante à usada\n"
+"durante a instalação\n"
+"\n"
+" * \"%s\": se uma placa de som for detectada no seu sistema, ela\n"
+"será mostrada aqui. Se a placa mostrada for diferente daquela que se\n"
+"encontra no seu sistema, clique no botão e escolha a correta.\n"
+"\n"
+" * \"%s\":se uma placa de TV foi detectada no seu sistema, ela será "
+"indicada \n"
+"aqui. Se existe uma placa e ela não foi detectada, clique\n"
+"no botão \"%s\" para tentar configurá-la manualmente.\n"
+"\n"
+" * \"%s\": você pode clicar em \"%s \" para mudar os parâmetros associados\n"
+"com a placa, se você achar que a configuração está incorreta.\n"
+"\n"
+" * \"%s\": por padrão, o DrakX configura o seu vídeo com a resolução de "
+"\"800x600\" ou \"1024x768\". Se isto não é o que deseja, clique em\n"
+"\"%s\" para reconfigurar a interface gráfica.\n"
+"\n"
+" * \"%s\": se você deseja configurar a Internet ou o acesso a uma rede\n"
+"local, você pode fazê-lo agora. Verifique a documentação impressa ou use\n"
+"o Centro de Controle Mandriva Linux após a instalação ter terminado para\n"
+"utilizar a ajuda integrada completa.\n"
+"\n"
+" * \"%s\": permite configurar endereços de proxies HTTP e FTP se a máquina\n"
+"que você está instalando estiver localizada atrás de um servidor proxy.\n"
+"\n"
+" * \"%s\": aqui você pode redefinir o nível de segurança que escolheu\n"
+"anteriormente.\n"
+"\n"
+" * \"%s\": se você pretende conectar a sua máquina à Internet, é uma boa\n"
+"idéia protegê-la contra intrusos, configurando um firewall. Veja o capítulo\n"
+"correspondente no \"Guia do Usuário\" para mais detalhes sobre como\n"
+"configurar um firewall.\n"
+"\n"
+" * \"%s\": se você deseja mudar sua configuração do gerenciador de\n"
+"inicialização, clique neste botão. Recomendado apenas para usuários\n"
+"avançados. Veja documentação impressa ou a ajuda integrada, sobre\n"
+"como configurar o gerenciador de inicialização no Centro de Controle\n"
+"do Mandriva Linux.\n"
+"\n"
+" * \"%s\": você poderá escolher aqui quais serviços que serão iniciados\n"
+"em sua máquina. Se você pretende usar sua máquina como servidor, é uma\n"
+"boa idéia verificar esta configuração e desativar o que não for necessário."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Placa ISDN"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Interface gráfica"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Escolha o disco rígido que você quer apagar para instalar sua nova\n"
+"partição Mandriva Linux. Tenha cuidado, pois todos os dados existentes\n"
+"serão perdidos e não poderão ser recuperados!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Clique em \"%s\" se você quiser apagar todos os dados e partições \n"
+"existentes neste disco rígido. Tenha cuidado, pois após clicar em \"%s\", \n"
+"você não será capaz de recuperar os dados/partições existentes neste\n"
+"disco rígido, incluindo quaisquer dados do Windows.\n"
+"\n"
+"Clique em \"%s\" para sair desta operação, sem perder qualquer dado\n"
+"e/ou partição presente neste disco rígido."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Próximo ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Anterior"
+
diff --git a/perl-install/install/help/po/ro.po b/perl-install/install/help/po/ro.po
new file mode 100644
index 000000000..4124e5d84
--- /dev/null
+++ b/perl-install/install/help/po/ro.po
@@ -0,0 +1,1129 @@
+# Translation file of Mandriva Linux graphic install
+# Copyright (c) 2000 Mandriva
+# Florin Grad <florin@mandriva.com>, 1999-2000
+# Dragos Marian Barbu <dragosb@softhome.net>, 2000
+# Ovidiu Constantin <ovidiu.constantin@gmx.net>, 2002, 2003
+# Harald Ersch <harald@ersch.ro>,2003
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX 7.1\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2003-09-11 18:11+0200\n"
+"Last-Translator: Ovidiu Constantin <ovidiu.constantin@gmx.net>\n"
+"Language-Team: Romanian Translators for Free Software <rtfs-project@lists."
+"sourceforge.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3;plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Vreţi să folosiţi această facilitate?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Actualizare"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Cu documentaţie de bază"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Instalare cu adevărat minimă"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr ""
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Sincronizare automată a ceasului"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Foloseşte o partiţie existentă"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Şterge tot discul"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+
+#: ../help.pm:412
+#, fuzzy, c-format
+msgid "Generate auto-install floppy"
+msgstr "generează dischetă de autoinstalare"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+
+#: ../help.pm:461
+#, fuzzy, c-format
+msgid "Security Administrator"
+msgstr "Administrator de securitate:"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Removable media auto-mounting"
+msgstr "Automontare mediu detaşabil"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Schimbă între modul normal/expert"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr ""
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "with Wheel emulation"
+msgstr "3 butoane cu rotiţă emulată"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Vă rog selectaţi portul corect. De exemplu, portul \"COM1\" din Windows e\n"
+"numit \"ttyS0\" în GNU/Linux."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "autentificare"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Expert"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Placă ISDN"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Interfaţă grafică"
+
+#: ../help.pm:861
+#, fuzzy, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Alegeţi discul fix pe care doriţi să îl ştergeţi pentru a instala noua "
+"partiţie\n"
+"Makdrake Linux. Aveţi grijă, toate datele existente pe această partiţie\n"
+"se vor pierde şi nu vor putea fi recuperate!"
+
+#: ../help.pm:866
+#, fuzzy, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Clic pe \"%s\" dacă doriţi ştergerea tuturor datelor şi partiţiilor "
+"existente\n"
+"pe acest disc fix. Fiţi atent(ă), după ce faceţi clic pe \"%s\", nu veţi "
+"putea\n"
+"recupera nici un fel de date sau partiţii de pe discul fix, inclusiv orice "
+"dată\n"
+"Windows.\n"
+"\n"
+"Clic pe \"%s\" pentru a opri această operaţie fără a pierde date\n"
+"şi partiţii prezente pe discul fix."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Următorul ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Precedentul"
+
diff --git a/perl-install/share/po/help-ru.pot b/perl-install/install/help/po/ru.po
index b56f80cd3..c219f43a1 100644
--- a/perl-install/share/po/help-ru.pot
+++ b/perl-install/install/help/po/ru.po
@@ -1,164 +1,53 @@
+# Translation of DrakX.po to Russian
+# Russian translation of drakX messages
+# Copyright (C) 1999-2003 Mandriva
+# Pavel Maryanov <acid_jack@ukr.net>, 2002,2003, 2005.
+# Alice Lafox <alice@lafox.com.ua>, 2003.
+# Alice Lafox <alice@lafox.net>, 2004, 2005.
+#
msgid ""
msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-09-20 18:19+0300\n"
+"Last-Translator: Pavel Maryanov <acid_jack@ukr.net>\n"
+"Language-Team: Russian <doc@lafox.net>\n"
+"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:14
+#, c-format
msgid ""
-"You now need to decide where you want to install the Mandrivalinux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandrivalinux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandrivalinux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandrivalinux system, choose\n"
-"this option. Be careful, because you won't be able to undo this operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-"На этом шаге вам прийдется решить, куда вы хотите установить операционную\n"
-"систему Mandrivalinux на вашем жестком диске. Если ваш жесткий диск пуст,\n"
-"или существующая операционная система на нем занимает все дисковое\n"
-"пространство, вам прийдется диск переразбить (partition). Разделение диска\n"
-"в основном состоит в том, чтобы логически выделить на нем свободное\n"
-"пространство для установки вашей новой системы Mandrivalinux.\n"
-"\n"
-"Поскольку разделение диска - это обычно необратимый процесс и может\n"
-"привести к потере данных, если на диске уже есть установленная операционная\n"
-"система, то для начинающего пользователя это несколько напряженный и\n"
-"пугающий момент. К счастью, в DrakX существует мастер, упрощающий этот\n"
-"процесс. Пожалуйста, прочтите руководство перед началом и не торопитесь.\n"
-"\n"
-"В зависимости от конфигурации вашего жесткого диска, доступно несколько\n"
-"параметров:\n"
-"\n"
-" * \"%s\": эта опция означает автоматическое разделение пустого диска или\n"
-"дисков. Если вы выбираете эту опцию, то далее вопросов задаваться не будет;\n"
-"\n"
-" * \"%s\": мастер определил наличие существующих разделов Linux на вашем\n"
-"жестком диске. Если вы собираетесь их использовать, выберите эту опцию. Вас\n"
-"попросят указать точки монтирования для каждого раздела. По умолчанию\n"
-"выбираются традиционные точки монтирования и вы можете вообще их не менять.\n"
-"\n"
-" * \"%s\": если на вашем жестком диске установлена и занимает все доступное\n"
-"место Microsoft Windows, вам нужно будет создать свободное место для данных\n"
-"Linux. Чтобы это сделать, вы можете удалить ваш Microsoft Windows раздел и\n"
-"данные (см. решение `` Очистить весь диск'') или изменить размер раздела\n"
-"FAT или NTFS Microsoft Windows. Изменение размера может проводиться без\n"
-"потери данных, особенно если вы предварительно провели дефрагментацию\n"
-"раздела Windows. Резервное копирование ваших данных настойчиво\n"
-"рекомендуется.. Рекомендуем выбрать эту опцию, если вы собираетесь\n"
-"использовать Mandrivalinux и Microsoft Windows на одном компьютере.\n"
-"\n"
-" Перед тем, как выбрать эту опцию, вы должны осознать, что размер вашего\n"
-"раздела Microsoft Windows станет меньше, чем был. У вас будет меньше\n"
-"свободного места под Microsoft Windows для хранения данных и инсталляции\n"
-"новых программ.\n"
-"\n"
-" * \"%s\" выберите эту опцию, если вы хотите удалить все данные на всех\n"
-"разделах вашего жесткого диска и заменить их новой системой Mandrivalinux.\n"
-"Будьте осторожны в этом решении, потому что после подтверждения вы не\n"
-"сможете вернуть обратно все как было.\n"
-"\n"
-" !! Если вы выбираете эту опцию, все данные на вашем жестком диске будут\n"
-"удалены. !!\n"
-"\n"
-" * \"%s\": эта опция позволит просто удалить всю информацию на диске и\n"
-"начать создание разделов диска на пустом месте. Вся информация на вашем\n"
-"диске будет утеряна.\n"
-"\n"
-" !! Если вы выберете эту опцию, все данные на вашем диске будут потеряны.\n"
-"!!\n"
-"\n"
-" * \"%s\": выберите эту опцию, если вы желаете разбить ваш диск вручную.\n"
-"Будьте осторожны -- это мощная и одновременно опасная возможность. Вы\n"
-"запросто можете потерять все данные. Поэтому выбор этой опции рекомендуется\n"
-"только в том случае, если вы уже делали что либо подобное раньше и имеете\n"
-"некоторый опыт. Чтобы узнать, как использовать утилиту DiskDrake,\n"
-"обратитесь к разделу ``Управление разделами диска'' книги ``Стартовое\n"
-"руководство пользователя''."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
msgstr ""
-"Разрешение\n"
-"\n"
-" Здесь вы можете выбрать разрешение и глубину цвета из того, что доступно\n"
-"для вашего оборудования. Выберите то, что вам больше подходит (вы сможете\n"
-"это изменить после инсталляции). Пример выбранной конфигурации отображается\n"
-"на мониторе."
+"Прежде чем продолжить, вы должны внимательно прочитать условия лицензии.\n"
+"Лицензия распространяется на весь дистрибутив Mandriva Linux. Если вы\n"
+"согласны со всеми условиями лицензии, отметьте пункт \"%s\". Если нет -\n"
+"нажатие на кнопку \"%s\" приведет к перезагрузке вашего компьютера."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:20
+#, c-format
msgid ""
"GNU/Linux is a multi-user system which means each user can have his or her\n"
"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point won't be authorized\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
"to change anything except their own files and their own configurations,\n"
"protecting the system from unintentional or malicious changes which could\n"
"impact on the system as a whole. You'll have to create at least one regular\n"
"user for yourself -- this is the account which you should use for routine,\n"
"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system won't work any more. If you make a\n"
+"mistake could mean that your system will not work any more. If you make a\n"
"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you won't affect the entire system.\n"
+"lose some information, but you will not affect the entire system.\n"
"\n"
"The first field asks you for a real name. Of course, this is not mandatory\n"
"-- you can actually enter whatever you like. DrakX will use the first word\n"
@@ -179,7 +68,7 @@ msgid ""
"\n"
"When you're finished adding users, you'll be asked to choose a user who\n"
"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and don't care much about local\n"
+"you're interested in that feature (and do not care much about local\n"
"security), choose the desired user and window manager, then click on\n"
"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
msgstr ""
@@ -220,95 +109,33 @@ msgstr ""
"нажмите \"%s\". Если вам не нужна эта возможность, снимите выбор с пункта\n"
"\"%s\""
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandrivalinux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandrivalinux system. Your current partitioning\n"
-"scheme and user data won't be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandrivalinux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandrivalinux version \"8.1\" is not recommended."
-msgstr ""
-"Этот шаг появляется только в случае, если на вашей машине найден старый\n"
-"раздел GNU/Linux.\n"
-"\n"
-"DrakX теперь должен узнать, хотите ли вы провести новую установку или\n"
-"обновление существующей системы Mandrivalinux:\n"
-"\n"
-" * \"%s\": в большинстве случаев этот вариант приведет к уничтожению старой\n"
-"системы. Если вы желаете изменить разделы вашего жесткого диска или\n"
-"изменить файловую систему, вы должны выбрать этот пункт. Однако, в\n"
-"зависимости от того, как разбит ваш диск, вам, возможно, удастся сохранить\n"
-"от перезаписи некоторые свои данные.\n"
-"\n"
-" * \"%s\": этот класс установки позволит вам обновить пакеты, установленные\n"
-"в вашей системе Mandrivalinux. Текущая схема разделов диска и\n"
-"пользовательские данные останутся нетронутыми. Большинство других шагов\n"
-"будут доступны, как и при стандартной установке.\n"
-"\n"
-"``Обновление'' будет неплохо работать на системах Mandrivalinux начиная с\n"
-"\"8.1\" и выше. Проведение обновления на системах Mandrivalinux старше\n"
-"\"8.1\" не рекомендуется."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"By the time you install Mandrivalinux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-"В данный момент установки Mandrivalinux было бы неплохо обновить некоторые\n"
-"пакеты из исходного релиза. Некоторые баги могут быть уже исправлены и\n"
-"решены проблемы безопасности. Чтобы получить пользу от этих обновлений,\n"
-"сейчас вы можете загрузить их из Интернет. Нажмите \"%s\", если у вас есть\n"
-"работающее соединение с Интернет, или \"%s\", если вы хотели бы обновить\n"
-"пакеты позже.\n"
-"\n"
-"При выборе \"%s\" появится список мест, из которых можно получить\n"
-"обновления. Выберите ближайший к вам сервер. Затем появится дерево выбора\n"
-"пакетов: просмотрите список и нажмите \"%s\" для получения и установки\n"
-"выбранных пакетов, или \"%s\" для отмены."
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Хотите использовать эту возможность?"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:57
+#, c-format
msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandrivalinux operating system.\n"
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
"\"sd\" if it is a SCSI hard drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard drives:\n"
"\n"
" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
@@ -320,218 +147,68 @@ msgid ""
" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
+"\"second lowest SCSI ID\", etc."
msgstr ""
-"На вашем жестом диске обнаружено несколько разделов Microsoft. Выберите\n"
-"необходимый раздел для изменения его размера с целью установки вашей новой\n"
-"операционной системы Mandrivalinux.\n"
+"Перечисленное выше является существующими разделами Linux, определенными на\n"
+"вашем жестком диске. Вы можете оставить без изменений сделанное мастером,\n"
+"потому что это хорошо подходит для большинства обычных инсталляций. Если вы\n"
+"делаете какие-либо изменения, вы должны определить как минимум раздел root\n"
+"(\"/\"). Не делайте его слишком маленьким, иначе вы не сможете\n"
+"инсталлировать достаточное количество программного обеспечения. Если вы\n"
+"хотите хранить данные на другом разделе, вам также прийдется создать раздел\n"
+"\"/home\" (возможно только при наличии более чем одного раздела Linux).\n"
"\n"
-"Каждый раздел перечислен так: \"Linux имя\", \"Windows имя\" \"Размер\".\n"
+"Каждый раздел перечислен следующим образом: : \"Название\", \"Размер\".\n"
"\n"
-"\"Linux имя\" разделено на: \"тип жесткого диска\", \"номер жесткого\n"
+"\"Название\" разделяется на: \"тип жесткого диска\", \"номер жесткого\n"
"диска\", \"номер раздела\" (например, \"hda1\").\n"
"\n"
-"\"Тип жесткого диска\" это \"hd\" если ваш жесткий диск IDE и \"sd\" если\n"
+"\"Hard drive type\" это \"hd\", если ваш жесткий диск IDE и \"sd\", если он\n"
"SCSI.\n"
"\n"
-"\"Номер жесткого диска\" это всегда буква после \"hd\" или \"sd\". Для\n"
-"жестких дисков IDE:\n"
+"\"Номер жесткого диска\" всегда является буквой после \"hd\" или \"sd\".\n"
+"Для жестких дисков IDE:\n"
"\n"
" * \"a\" означает \"master жесткий диск на первичном IDE контроллере\";\n"
"\n"
-" * \"b\" означает \"slave жесткий диск на первичном IDE контроллере\";;\n"
+" * \"b\" означает \"slave жесткий диск на первичном IDE контроллере\";\n"
"\n"
" * \"c\" означает \"master жесткий диск на вторичном IDE контроллере\";\n"
"\n"
" * \"d\" означает \"slave жесткий диск на вторичном IDE контроллере\".\n"
"\n"
-"Для жестких дисков SCSI \"a\" означает \"lowest SCSI ID\", \"b\" означает\n"
-"\"second lowest SCSI ID\", и т.д.\n"
-"\n"
-"\"Windows name\" это буква жесткого диска под Windows (первый диск или\n"
-"раздел называется \"C:\")."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrivalinux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"X (для системы X Window) это сердце графического интерфейса GNU/Linux, на\n"
-"базе которого работают все графические среды (KDE, GNOME, AfterStep,\n"
-"WindowMaker, и т.д..), входящие в Mandrivalinux.\n"
-"\n"
-"Вам будет представлен список различных параметров для получения\n"
-"оптимального графического отображения: Видеокарта\n"
-"\n"
-" Инсталлятор обычно автоматически определяет и настраивает видеокарту,\n"
-"установленную в вашей машине. Если это не так, вы можете выбрать в этом\n"
-"списке карту, которая у вас действительно установлена.\n"
-"\n"
-" В случае, когда для вашей карты доступны различные сервера, с 3D\n"
-"ускорением и без, вам предложат выбрать, какой сервер больше соответствует\n"
-"вашим потребностям.\n"
-"\n"
-"\n"
-"\n"
-"Монитор\n"
-"\n"
-" Инсталлятор обычно может автоматически определить и настроить монитор,\n"
-"подключенный к вашей машине. Если ему это не удалось, вы можете\n"
-"самостоятельно выбрать ваш монитор из списка.\n"
-"\n"
-"\n"
-"\n"
-"Разрешение\n"
-"\n"
-" Здесь вы можете выбрать разрешение и глубину цвета из того, что доступно\n"
-"для вашего оборудования. Выберите то, что вам больше подходит (вы сможете\n"
-"это изменить после инсталляции). Пример выбранной конфигурации отображается\n"
-"на мониторе.\n"
-"\n"
-"\n"
-"\n"
-"Проверить\n"
-"\n"
-" В зависимости от вашего оборудования, данный пункт может либо появляться\n"
-"либо отсутствовать.\n"
-"\n"
-" Система попытается открыть графический экран в выбранном разрешении.\n"
-"Если вы сможете увидеть сообщение во время проверки и ответить \"%s\",\n"
-"тогда DrakX перейдет к следующему шагу. Если вы не увидите сообщения, это\n"
-"значит, что часть определенной автоматически конфигурации была неверна и\n"
-"проверка автоматически завершится через 12 секунд, вернув вас в меню.\n"
-"Поправьте настройки и проверьте заново, пока вы не получите корректное\n"
-"графическое изображение.\n"
-"\n"
-"\n"
-"\n"
-"Параметры\n"
-"\n"
-" Здесь вы можете настроить вашу машину на автоматическую загрузку в\n"
-"графическом интерфейсе. Очевидно, что вам следует выбрать \"%s\", если ваша\n"
-"машина будет работать в качестве сервера или вам не удалось настроить\n"
-"графический режим."
+"Для жестких дисков SCSI, \"a\" означает \"lowest SCSI ID\", а \"b\"\n"
+"означает \"second lowest SCSI ID\", и т.д."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:88
+#, c-format
msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandrivalinux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, don't queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you don't have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you don't like your printing\n"
-"system you may change it by running PrinterDrake from the Mandrivalinux\n"
-"Control Center and clicking on the \"%s\" button."
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
msgstr ""
-"Теперь пришло время выбрать систему печати для вашего компьютера. Другие OS\n"
-"могут предложить вам одну, а Mandrivalinux предлагает две. Каждая из систем\n"
-"является лучшей для определенной конфигурации.\n"
-"\n"
-" * \"%s\" -- что означает ``печатать, не ставить в очередь'' (``print,\n"
-"don't queue''), это удобный вариант, если вы напрямую подключены к своему\n"
-"принтеру, вы хотите избежать проблем с зажевыванием бумаги, и у вас нет\n"
-"сетевых принтеров. (\"%s\" сможет cправиться только с очень простыми\n"
-"реализациями сетей и является для них довольно медленным.) Рекомендуется\n"
-"использовать \"pdq \" в случае, если вы только начинаете свой путь в\n"
-"GNU/Linux.\n"
-"\n"
-" * \"%s\" - `` Common Unix Printing System'' (Общая система печати Unix),\n"
-"это превосходная печать на вашем локальном принтере, а также на половине\n"
-"всей планеты. Она проста в настройке и может выступать в качестве сервера\n"
-"или клиента для древних систем печати \"lpd \", поэтому она совместима с\n"
-"ранее выпущенными системами, которым возможно еще требуются сервисы печати.\n"
-"Несмотря на всю свою мощь, базовые настройки у нее проще чем у \"pdq\".\n"
-"Если вам нужно эмулировать \"lpd\", вы должны включить демон \"cups-lpd \".\n"
-"\"%s\" имеет графический интерфейс для печати или выбора параметров\n"
-"принтера и для управления принтером.\n"
-"\n"
-"Если вы сделаете свой выбор сейчас, а позже обнаружите, что система печати\n"
-"вам не подходит, вы сможете изменить ее, запустив PrinterDrake из Центра\n"
-"Управления Mandrake и нажав на кнопку эксперт."
+"Инсталляция Mandriva Linux размещена на нескольких CD-ROMах. Если выбранный\n"
+"пакет находится на другом CD-ROM, DrakX будет отдавать текущий CD и просить\n"
+"вас вставить другой по мере надобности. Если у вас нет требуемого CD под "
+"руками,\n"
+"просто нажмите \"%s\", тогда соответствующие пакеты не будут устанавливаться."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:95
+#, c-format
msgid ""
"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandrivalinux, and to make it\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
"simpler to manage, they have been placed into groups of similar\n"
"applications.\n"
"\n"
-"Mandrivalinux sorts package groups in four categories. You can mix and\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
"match applications from the various categories, so a ``Workstation''\n"
"installation can still have applications from the ``Server'' category\n"
"installed.\n"
@@ -583,11 +260,11 @@ msgid ""
"megabytes."
msgstr ""
"Теперь настало время определить, какие программы вы хотите установить в\n"
-"вашу систему. С Mandrivalinux поставляются тысячи пакетов и, для упрощения\n"
+"вашу систему. С Mandriva Linux поставляются тысячи пакетов и, для упрощения\n"
"выбора, они разбиты на группы.\n"
"\n"
"Пакеты сортированы по группам, которые соответствуют специфике\n"
-"использования вашей машины. В Mandrivalinux пакеты сортируются по четырем\n"
+"использования вашей машины. В Mandriva Linux пакеты сортируются по четырем\n"
"категориям. Вы можете смешивать и сочетать приложения из различных\n"
"категорий, например, вариант установки ``Рабочая станция'' может иметь\n"
"приложения из категории ``Разработка''.\n"
@@ -600,7 +277,7 @@ msgstr ""
"соответствующие группы из этой категории.\n"
"\n"
" * \"%s\": если ваша машина будет работать сервером, выберите какие из\n"
-"часто используемых сервисов вы желаете установить на нее.\n"
+"часто используемых служб вы желаете установить на нее.\n"
"\n"
" * \"%s\": здесь вам нужно выбрать предпочитаемую графическую среду. Хотя\n"
"бы одна из них должна быть выбрана, если вы хотите работать в графическом\n"
@@ -615,8 +292,7 @@ msgstr ""
"\n"
"Если вы начали инсталляцию в режиме \"%s\", вы можете убрать выбор всех\n"
"групп, чтобы предотвратить инсталляцию какого-либо нового пакета. Это\n"
-"полезно в случае восстановления или обновления существующей системы."
-"\n"
+"полезно в случае восстановления или обновления существующей системы.\n"
"\n"
"Если вы не выберете ни одной группы в процессе\n"
"выполнения обычной инсталляции (не касается обновления), появится диалог с\n"
@@ -632,115 +308,25 @@ msgstr ""
"Linux системы. В это варианте вы сможете работать только в режиме командной\n"
"строки. Общий размер этой установки занимает 65 мегабайт."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"The Mandrivalinux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-"Инсталляция Mandrivalinux размещена на нескольких CD-ROMах. Если выбранный\n"
-"пакет находится на другом CD-ROM, DrakX будет отдавать текущий CD и просить\n"
-"вас вставить другой по мере надобности."
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Обновление"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: don't make the password too long or too complicated because you\n"
-"must be able to remember it!\n"
-"\n"
-"The password won't be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you don't know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-"Это самое важное решение в деле безопасности вашей системы GNU/Linux: вы\n"
-"должны ввести пароль \"root\". \"Root\" является администратором системы, и\n"
-"только он имеет право производить обновления, добавлять пользователей,\n"
-"изменять конфигурацию системы и так далее. Короче говоря, \"root\" может\n"
-"все! Вот поэтому вы должны придумать пароль, который трудно подобрать -\n"
-"DrakX сообщит вам, если пароль слишком прост. Как вы видите, можно вообще\n"
-"не вводить пароль, но мы серьезно советуем вам этого не делать по одной\n"
-"простой причине: не думайте, что если вы загрузили GNU/Linux, то ваши\n"
-"остальные операционные системы защищены от ошибок. Так как \"root\" может\n"
-"переступить все ограничения и непреднамеренно стереть все данные на\n"
-"разделах диска, обращаясь небрежно с разделами, то очень важно, чтобы стать\n"
-"\"root\" было трудно.\n"
-"\n"
-"Пароль должен быть сочетанием цифровых и буквенных символов и иметь длину\n"
-"не менее 8 символов. Никогда не записывайте пароль \"root\" - это делает\n"
-"очень легкой возможность скомпрометировать систему.\n"
-"\n"
-"Одно предостережение -- не делайте пароль слишком длинным или слишком\n"
-"сложным, потому что вы должны его без особых усилий запомнить!\n"
-"\n"
-"Пароль не будет отображаться на экране так же, как вы его вводите. Кроме\n"
-"того, вам прийдется повторить ввод пароля, чтобы предупредить возможность\n"
-"опечатки. Если случится так, что вы опечатались дважды, тогда этот\n"
-"``неверный'' пароль прийдется использовать при первой загрузке.\n"
-"\n"
-"Если вы желаете, чтобы доступ к этому компьютеру контролировался сервером\n"
-"аутентификации, нажмите на кнопку \"%s\".\n"
-"\n"
-"Если ваша сеть использует сервисы аутентификации LDAP, NIS или PDC Windows\n"
-"Domain выберите соответствующий тип \"%s\". Если не знаете что выбрать,\n"
-"спросите своего администратора сети.\n"
-"\n"
-"Если у вас возникли проблемы с запоминанием паролей, вы можете выбрать\n"
-"опцию \"%s\", если ваш компьютер не будет подключаться к Интернет и если вы\n"
-"доверяете всем доступ к своей машине."
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "С базовой документацией"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-"Нажмите \"%s\", если вы хотите удалить все данные и разделы на данном\n"
-"жестком диске. Будьте осторожны, потому что после нажатия \"%s\" вы не\n"
-"сможете восстановить данные и разделы на этом диске, включая данные\n"
-"Windows.\n"
-"\n"
-"Нажмите \"%s\" для отмены этой операции без потери данных и разделов на\n"
-"данном жестком диске."
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Самая минимальная установка"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:152
+#, c-format
msgid ""
"If you choose to install packages individually, the installer will present\n"
"a tree containing all packages classified by groups and subgroups. While\n"
@@ -753,11 +339,12 @@ msgid ""
"!! If a server package has been selected, either because you specifically\n"
"chose the individual package or because it was part of a group of packages,\n"
"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandrivalinux will automatically start any installed\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
"services at boot time. Even if they are safe and have no known issues at\n"
"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandrivalinux was\n"
-"finalized. If you don't know what a particular service is supposed to do or\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
"the listed services and they will be started automatically at boot time. !!\n"
"\n"
@@ -785,12 +372,12 @@ msgstr ""
"\n"
"!! Если был выбран какой-либо серверный пакет, специально или он был частью\n"
"какой-либо группы, вас попросят подтвердить, действительно ли вы желаете\n"
-"установить эти сервера. Под Mandrivalinux все установленные сервера\n"
+"установить эти сервера. Под Mandriva Linux все установленные сервера\n"
"запускаются по умолчанию в процессе загрузки. Даже если они безопасны и не\n"
"имеют известных проблем на момент выпуска дистрибутива, в них могут быть\n"
-"обнаружены дыры в безопасности после выпуска данной версии Mandrivalinux.\n"
-"Если вы не знаете, зачем нужен данный сервис и что он делает, нажмите\n"
-"\"%s\". Если вы нажмете \"%s\", тогда все сервисы из списка будут\n"
+"обнаружены дыры в безопасности после выпуска данной версии Mandriva Linux.\n"
+"Если вы не знаете, зачем нужен данная служба и что она делает, нажмите\n"
+"\"%s\". Если вы нажмете \"%s\", тогда все службы из списка будут\n"
"установлены и автоматически запущены при загрузке системы. !!\n"
"\n"
"Опция \"%s\" запрещает показ диалога предупреждения, который появляется при\n"
@@ -806,184 +393,15 @@ msgstr ""
"предыдущей инсталляцией. Смотрите второй совет последнего шага, где описано\n"
"как создать такой диск."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can't determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" won't install any boot loader. Use this option only if you\n"
-"know what you're doing."
-msgstr ""
-"LILO и GRUB -- это начальные загрузчики GNU/Linux. Этот шаг обычно\n"
-"полностью автоматизирован. DrakX проанализирует загрузочный (boot) сектор\n"
-"диска и будет действовать согласно тому, что он там найдет:\n"
-"\n"
-" * если найден загрузочный сектор Windows, он заменит его на загрузочный\n"
-"сектор GRUB/LILO. Следовательно, вы сможете загружать и GNU/Linux и другую\n"
-"OS, установленную на вашей машине.\n"
-"\n"
-" * если найден загрузочный сектор GRUB или LILO, он заменит его на новый.\n"
-"\n"
-"Если возникают сомнения, DrakX спросит вас куда разместить загрузчик. В\n"
-"общем случае, \"%s\" это лучший вариант выбора. Если выбрать \"%s\", тогда\n"
-"начальный загрузчик не будет установлен вообще. Используйте этот вариант\n"
-"только если вы знаете, что вы делаете."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"Сначала DrakX определит любые IDE устройства, присутствующие в вашей\n"
-"системе. Также он проверит наличие одной или больше PCI SCSI карт в\n"
-"системе. Если будет найдена SCSI карта, DrakX автоматически установит\n"
-"соответствующий драйвер.\n"
-"\n"
-"Так как обнаружение аппаратного обеспечения не всегда ошибкоустойчиво,\n"
-"DrakX может не справиться с определением ваших жестких дисков. Если это\n"
-"случится, тогда вам прийдется вручную указать ему оборудование.\n"
-"\n"
-"Если вам пришлось вручную указать PCI SCSI адаптер, DrakX спросит вас,\n"
-"хотите ли вы настроить его параметры. Вы должны разрешить DrakX проверить\n"
-"специфические для карты опции, которые нужны для инициализации адаптера.\n"
-"Обычно DrakX проходит этот шаг без проблем.\n"
-"\n"
-"Если DrakX не в состоянии автоматически определить, какие параметры нужны\n"
-"оборудованию, вам прийдется вручную настроить драйвер."
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Автоматические зависимости"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandrivalinux's use of UTF-8 will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-"Ваш выбор предпочитаемого языка повлияет на язык документации, сам\n"
-"инсталлятор и систему в целом. Выберите сначала регион, в котором вы\n"
-"находитесь, затем язык на котором вы говорите.\n"
-"\n"
-"По нажатию на кнопку \"%s\" вы сможете выбрать другие языки, которые можно\n"
-"установить на вашей рабочей станции. Таким образом будут установлены\n"
-"имеющие отношение к языку файлы системной документации и приложения.\n"
-"Например, если у вас в системе будут работать пользователи из Испании,\n"
-"выберите в дереве English как основной, и \"%s\" в дополнительном разделе.\n"
-"\n"
-"О поддержке UTF-8 (unicode): Unicode это новая кодировка, которая включает\n"
-"в себя все существующие языки. Однако ее полная поддержка в GNU/Linux пока\n"
-"находится в стадии разработки. Поэтому Mandrivalinux будет определять\n"
-"использовать ее или нет в зависимости от выбора пользователя:\n"
-"\n"
-" * Если вы выбираете языки, которые имеют свою традиционную устоявшуюся\n"
-"кодировку (языки latin1, русский, японский, китайский, корейский, тайский,\n"
-"греческий, турецкий, большинство языков с iso-8859-2), будет взята по\n"
-"умолчанию их кодировка;\n"
-"\n"
-" * Для остальных языков будет использоваться юникод по умолчанию;\n"
-"\n"
-" * Если выбираются несколько языков, имеющих различную кодировку, будет\n"
-"использован юникод по умолчанию для всей системы;\n"
-"\n"
-" * И наконец, юникод может быть также выбран по запросу пользователя,\n"
-"опцией \"%s\" не зависимо от того, какие языки выбраны.\n"
-"\n"
-"Заметим, что вы не ограничены в выборе дополнительных языков. Вы можете\n"
-"выбрать сколько угодно дополнительных языков, даже установить все языки,\n"
-"отметив пункт \"%s\". Выбор поддержки языка означает наличие переводов,\n"
-"шрифтов, проверку орфографии и т.д. для установленных языков.\n"
-"\n"
-"Для переключения между различными установленными языками в вашей системе вы\n"
-"можете запускать команду \"/usr/sbin/localedrake\" с правами \"root\",\n"
-"чтобы изменить язык для всей системы. Запуск этой команды с правами\n"
-"обычного пользователя позволит изменить настройки языка для данного\n"
-"конкретного пользователя."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card isn't the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-"\"%s\": если в вашей системе найдена звуковая карта, здесь это будет\n"
-"показано. Если вы увидите, что показанная звуковая карта не соответствует\n"
-"тому, что у вас реально есть в системе, вы можете нажать на кнопку и\n"
-"выбрать другой драйвер."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrivalinux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Выберите жесткий диск, который нужно очистить для инсталляции вашего нового\n"
-"раздела Mandrivalinux. Будьте осторожны, все данные на нем будут потеряны и\n"
-"их нельзя будет восстановить!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:186
+#, c-format
msgid ""
"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
@@ -996,337 +414,224 @@ msgstr ""
"там интерфейс подобен используемому в процессе установки."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:192
+#, c-format
msgid ""
-"Options\n"
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
msgstr ""
-"Параметры\n"
+"Этот диалог используется для выбора служб, которые должны стартовать при\n"
+"загрузке системы.\n"
"\n"
-" Здесь вы можете настроить вашу машину на автоматическую загрузку в\n"
-"графическом интерфейсе. Очевидно, что вам следует выбрать \"%s\", если ваша\n"
-"машина будет работать в качестве сервера или вам не удалось настроить\n"
-"графический режим."
+"DrakX предоставит список всех служб, которые доступны при настройках\n"
+"текущей инсталляции. Пересмотрите их внимательно и уберите все, которые не\n"
+"являются необходимыми для старта во время загрузки системы.\n"
+"\n"
+"Вы можете получить короткие пояснения относительно службы, выбрав ее в\n"
+"списке. Однако, если вы не уверены, полезна служба или нет, лучше всего\n"
+"оставить как было по умолчанию.\n"
+"\n"
+"!! На этом этапе будьте предельно внимательны, если ваша машина будет\n"
+"сервером: возможно вы не захотите запускать службы, которые вам не нужны.\n"
+"Пожалуйста помните, что некоторые службы потенциально опасны для сервера.\n"
+"В общем, оставьте только те службы, которые вам действительно нужны. !!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:209
+#, c-format
msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
msgstr ""
-"Пожалуйста, выберите правильный порт. Например, порт \"COM1\" под Windows\n"
-"называется \"ttyS0\" под GNU/Linux."
+"GNU/Linux управляет временем в GMT (Greenwich Mean Time) и транслирует его\n"
+"в локальное согласно выбранного вами часового пояса. Если часы на вашей\n"
+"материнской плате установлены в локальное время, вы можете деактивировать\n"
+"это, убрав выбор \"%s\", что позволит GNU/Linux помнить, что системные часы\n"
+"и аппаратные часы принадлежат разным часовым поясам. Это полезно в случае,\n"
+"когда на машине размещена другая операционная система типа Windows.\n"
+"\n"
+"Опция \"%s\" позволит автоматически подстраивать часы, соединяясь с\n"
+"удаленным сервером в Интернет. Естественно, чтобы это работало, вам\n"
+"необходимо соединение с Интернет. Лучше всего выбрать ближайший к вам\n"
+"сервер времени. Эта опция устанавливает на вашу машину сервер времени,\n"
+"который опционально может использоваться другими машинами в вашей локальной\n"
+"сети."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Автоматическая синхронизация времени"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:223
+#, c-format
msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
+"Graphic Card\n"
"\n"
-"If you don't know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandrivalinux\n"
-"Control Center.\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
msgstr ""
-"На этом этапе DrakX позволит вам выбрать для машины желаемый уровень\n"
-"безопасности. Как правило, уровень безопасности должен быть выше, если на\n"
-"машине содержатся критические данные или машина непосредственно подключена\n"
-"к Интернет. Однако, более высокий уровень безопасности, в общем случае,\n"
-"достигается в обмен на удобство использования.\n"
+"Видеокарта\n"
"\n"
-"Если вы не знаете что выбрать, оставьте выбор по умолчанию. Вы сможете\n"
-"изменить этот уровень безопасности потом с помощью утилиты draksec из\n"
-"Mandrivalinux Control Center.\n"
+" Инсталлятор обычно автоматически определяет и настраивает видеокарту,\n"
+"установленную в вашей машине. Если это не так, вы можете выбрать в этом\n"
+"списке карту, которая у вас действительно установлена.\n"
"\n"
-"В поле \"%s\" системе указывается пользователь, который будет отвечать за\n"
-"безопасность. На этот адрес будут посылаться сообщения по безопасности."
+" В случае, когда для вашей карты доступны различные сервера, с 3D\n"
+"ускорением и без, вам предложат выбрать, какой сервер больше соответствует\n"
+"вашим потребностям."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:234
+#, c-format
msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"isn't in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card isn't the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it isn't\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
+"Graphic Card\n"
"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that doesn't suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandrivalinux Control Center after the installation has finished to benefit\n"
-"from full in-line help.\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
+"Monitor\n"
"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandrivalinux Control Center.\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-"В качестве обзора DrakX представит сводку имеющейся у него различной\n"
-"информации о вашей системе. В зависимости от установленного у вас\n"
-"оборудования, вы можете увидеть все или некоторые из следующих пунктов.\n"
-"Каждый пункт состоит из конфигурационных элементов для настройки,\n"
-"сопровождаемых небольшой сводкой о текущей конфигурации. Нажмите на\n"
-"соответствующую кнопку \"%s\", чтобы изменить настройки.\n"
"\n"
-" * \"%s\": проверьте текущую настройку раскладки клавиатуры и сделайте\n"
-"поправку если необходимо.\n"
"\n"
-" * \"%s\": проверьте текущий выбор страны Если вы находитесь не в этой\n"
-"стране, нажмите на кнопку \"%s\" и выберите другую. Если ваша страна не\n"
-"присутствует в первом показанном списке, нажмите кнопку \"%s\", чтобы\n"
-"увидеть полный список.\n"
+"Resolution\n"
"\n"
-" * \"%s\": По умолчанию, DrakX выбирает часовой пояс, основываясь на\n"
-"выбранной вами стране. Вы можете здесь нажать на кнопку \"%s\", если\n"
-"выбранное неверно.\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
"\n"
-" * \"%s\": проверьте текущую конфигурацию мыши и нажмите на кнопку, если\n"
-"необходимо что-либо изменить.\n"
"\n"
-" * \"%s\": по нажатию на кнопку \"%s\" откроется мастер настройки принтера.\n"
-"Прочитайте соответствующую главу в книге ``Стартовое руководство\n"
-"пользователя'', чтобы узнать как установить новый принтер. Представленный\n"
-"там интерфейс подобен используемому в процессе установки.\n"
"\n"
-" * \"%s\": если в вашей системе найдена звуковая карта, здесь это будет\n"
-"показано. Если вы увидите, что показанная звуковая карта не соответствует\n"
-"тому, что у вас реально есть в системе, вы можете нажать на кнопку и\n"
-"выбрать другой драйвер.\n"
+"Test\n"
"\n"
-" * \"%s\": по умолчанию DrakX настраивает ваш графический интерфейс на\n"
-"разрешение \"800x600\" или \"1024x768\". Если вас это не устраивает,\n"
-"нажмите \"%s\" для внесения изменений в конфигурацию вашего графического\n"
-"интерфейса.\n"
+" Depending on your hardware, this entry might not appear.\n"
"\n"
-" * \"%s\": если в вашей системе была обнаружена TV карта, она будет здесь\n"
-"показана. Если у вас есть TV карта, но она не была определена, нажмите на\n"
-"кнопку \"%s\" и попробуйте настроить ее вручную.\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
"\n"
-" * \"%s\": если в вашей системе обнаружена ISDN-карта, она будет здесь\n"
-"показана. Вы можете нажать на кнопку \"%s\" для изменения связанных с ней\n"
-"параметров.\n"
"\n"
-" * \"%s\": если вы хотите настроить доступ в Интернет или локальную сеть\n"
-"прямо сейчас.\n"
"\n"
-" * \"%s\": этот пункт предлагает вам переопределить уровень безопасности\n"
-"как это делалось на предыдущем шаге ().\n"
+"Options\n"
"\n"
-" * \"%s\": если вы собираетесь подключать вашу машину к Интернет, неплохой\n"
-"идеей будет защитить себя от вторжений извне, установив файервол.\n"
-"Прочитайте соответствующий раздел книги ``Стартовое руководство\n"
-"пользователя'', где описаны детали настройки файервола.\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (для системы X Window) это сердце графического интерфейса GNU/Linux, на\n"
+"базе которого работают все графические среды (KDE, GNOME, AfterStep,\n"
+"WindowMaker, и т.д..), входящие в Mandriva Linux.\n"
"\n"
-" * \"%s\": если вы желаете изменить конфигурацию начального загрузчика,\n"
-"нажмите эту кнопку. Эта опция предназначена для опытных пользователей.\n"
+"Вам будет представлен список различных параметров для получения\n"
+"оптимального графического отображения: Видеокарта\n"
"\n"
-" * \"%s\": здесь вы сможете проконтролировать какие сервисы будут запущены\n"
-"на вашей машине. Если ваша машина будет сервером, вам стоит проверить эти\n"
-"установки."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-"В случае, когда для вашей карты доступны различные сервера, с 3D ускорением\n"
-"и без, вам предложат выбрать, какой сервер больше соответствует вашим\n"
-"потребностям."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
+" Инсталлятор обычно автоматически определяет и настраивает видеокарту,\n"
+"установленную в вашей машине. Если это не так, вы можете выбрать в этом\n"
+"списке карту, которая у вас действительно установлена.\n"
"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
+" В случае, когда для вашей карты доступны различные сервера, с 3D\n"
+"ускорением и без, вам предложат выбрать, какой сервер больше соответствует\n"
+"вашим потребностям.\n"
"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
+"Монитор\n"
"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-"Обычно у DrakX не возникает проблем с определением количества кнопок вашей\n"
-"мыши. Если все-таки у него это не получается, тогда он будет рассматривать\n"
-"вашу мышь как двух-кнопочную и настроит эмуляцию трех кнопок. Третья кнопка\n"
-"двухкнопочной мыши может быть ``нажата'' одновременным нажатием на левую и\n"
-"правую кнопку. DrakX автоматически определит какой интерфейс использует\n"
-"ваша мышь: PS/2, serial или USB.\n"
+" Инсталлятор обычно может автоматически определить и настроить монитор,\n"
+"подключенный к вашей машине. Если ему это не удалось, вы можете\n"
+"самостоятельно выбрать ваш монитор из списка.\n"
"\n"
-"Если, по каким-либо причинам, вы желаете указать другой тип мыши, выберите\n"
-"нужную мышь из предоставленного списка.\n"
"\n"
-"Если вы выбираете другую мышь, отличную от выбранной по умолчанию, появится\n"
-"тестовый экран. Понажимайте кнопки и покрутите колесико для проверки\n"
-"правильности настроек и того, что мышь работает корректно. Если мышь ведет\n"
-"себя неверно, нажмите пробел или клавишу [Return], чтобы отменить\n"
-"тестирование и вернуться к списку мышей.\n"
"\n"
-"Мыши с колесиками иногда автоматически не определяются. В этом случае вам\n"
-"прийдется выбрать свою мышь из списка. Проверьте, что вы правильно выбрали\n"
-"порт подключения мыши. Когда мышь будет выбрана и нажата кнопка \"%s\",\n"
-"появится картинка с изображением мыши. Покрутите колесико мыши для проверки\n"
-"того, что все работает правильно. Как только вы увидите, что колесико на\n"
-"экране движется синхронно с движениями настоящего колесика, проверьте также\n"
-"работу кнопок и движение курсора, который должен двигаться по экрану\n"
-"соответственно вашим перемещениям мыши."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"Graphic Card\n"
+"Разрешение\n"
"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
+" Здесь вы можете выбрать разрешение и глубину цвета из того, что доступно\n"
+"для вашего оборудования. Выберите то, что вам больше подходит (вы сможете\n"
+"это изменить после инсталляции). Пример выбранной конфигурации отображается\n"
+"на мониторе.\n"
"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-"Видеокарта\n"
"\n"
-" Инсталлятор обычно автоматически определяет и настраивает видеокарту,\n"
-"установленную в вашей машине. Если это не так, вы можете выбрать в этом\n"
-"списке карту, которая у вас действительно установлена.\n"
"\n"
-" В случае, когда для вашей карты доступны различные сервера, с 3D\n"
-"ускорением и без, вам предложат выбрать, какой сервер больше соответствует\n"
-"вашим потребностям."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandrivalinux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-"Прежде чем продолжить, вы должны внимательно прочитать условия лицензии.\n"
-"Лицензия распространяется на весь дистрибутив Mandrivalinux. Если вы\n"
-"согласны со всеми условиями лицензии, отметьте пункт \"%s\". Если нет -\n"
-"просто выключите свой компьютер."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
+"Проверить\n"
"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which aren't needed at boot\n"
-"time.\n"
+" В зависимости от вашего оборудования, данный пункт может либо появляться\n"
+"либо отсутствовать.\n"
"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
+" Система попытается открыть графический экран в выбранном разрешении.\n"
+"Если вы сможете увидеть сообщение во время проверки и ответить \"%s\",\n"
+"тогда DrakX перейдет к следующему шагу. Если вы не увидите сообщения, это\n"
+"значит, что часть определенной автоматически конфигурации была неверна и\n"
+"проверка автоматически завершится через 12 секунд, вернув вас в меню.\n"
+"Поправьте настройки и проверьте заново, пока вы не получите корректное\n"
+"графическое изображение.\n"
"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably don't want to start any services which you don't need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-"Этот диалог используется для выбора сервисов, которые должны стартовать при\n"
-"загрузке системы.\n"
"\n"
-"DrakX предоставит список всех сервисов, которые доступны при настройках\n"
-"текущей инсталляции. Пересмотрите их внимательно и уберите все, которые не\n"
-"являются необходимыми для старта во время загрузки системы.\n"
"\n"
-"Вы можете получить короткие пояснения относительно сервиса, выбрав сервис в\n"
-"списке. Однако, если вы не уверены, полезен сервис или нет, лучше всего\n"
-"оставить как было по умолчанию.\n"
+"Параметры\n"
"\n"
-"!! На этом этапе будьте предельно внимательны, если ваша машина будет\n"
-"сервером: возможно вы не захотите запускать сервисы, которые вам не нужны.\n"
-"Пожалуйста помните, что некоторые сервисы потенциально опасны для сервера.\n"
-"В общем, оставьте только те сервисы, которые вам действительно нужны. !!"
+" Здесь вы можете настроить вашу машину на автоматическую загрузку в\n"
+"графическом интерфейсе. Очевидно, что вам следует выбрать \"%s\", если ваша\n"
+"машина будет работать в качестве сервера или вам не удалось настроить\n"
+"графический режим."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:291
+#, c-format
msgid ""
"Monitor\n"
"\n"
@@ -1340,204 +645,201 @@ msgstr ""
"подключенный к вашей машине. Если ему это не удалось, вы можете\n"
"самостоятельно выбрать ваш монитор из списка."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:298
+#, c-format
msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
+"Resolution\n"
"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
msgstr ""
-"GNU/Linux управляет временем в GMT (Greenwich Mean Time) и транслирует его\n"
-"в локальное согласно выбранного вами часового пояса. Если часы на вашей\n"
-"материнской плате установлены в локальное время, вы можете деактивировать\n"
-"это, убрав выбор \"%s\", что позволит GNU/Linux помнить, что системные часы\n"
-"и аппаратные часы принадлежат разным часовым поясам. Это полезно в случае,\n"
-"когда на машине размещена другая операционная система типа Windows.\n"
+"Разрешение\n"
"\n"
-"Опция \"%s\" позволит автоматически подстраивать часы, соединяясь с\n"
-"удаленным сервером в Интернет. Естественно, чтобы это работало, вам\n"
-"необходимо соединение с Интернет. Лучше всего выбрать ближайший к вам\n"
-"сервер времени. Эта опция устанавливает на вашу машину сервер времени,\n"
-"который опционально может использоваться другими машинами в вашей локальной\n"
-"сети."
+" Здесь вы можете выбрать разрешение и глубину цвета из того, что доступно\n"
+"для вашего оборудования. Выберите то, что вам больше подходит (вы сможете\n"
+"это изменить после инсталляции). Пример выбранной конфигурации отображается\n"
+"на мониторе."
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:306
+#, c-format
msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
msgstr ""
-"Перечисленное выше является существующими разделами Linux, определенными на\n"
-"вашем жестком диске. Вы можете оставить без изменений сделанное мастером,\n"
-"потому что это хорошо подходит для большинства обычных инсталляций. Если вы\n"
-"делаете какие-либо изменения, вы должны определить как минимум раздел root\n"
-"(\"/\"). Не делайте его слишком маленьким, иначе вы не сможете\n"
-"инсталлировать достаточное количество программного обеспечения. Если вы\n"
-"хотите хранить данные на другом разделе, вам также прийдется создать раздел\n"
-"\"/home\" (возможно только при наличии более чем одного раздела Linux).\n"
-"\n"
-"Каждый раздел перечислен следующим образом: : \"Название\", \"Размер\".\n"
+"В случае, когда для вашей карты доступны различные сервера, с 3D ускорением\n"
+"и без, вам предложат выбрать, какой сервер больше соответствует вашим\n"
+"потребностям."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
"\n"
-"\"Название\" разделяется на: \"тип жесткого диска\", \"номер жесткого\n"
-"диска\", \"номер раздела\" (например, \"hda1\").\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Параметры\n"
"\n"
-"\"Hard drive type\" это \"hd\", если ваш жесткий диск IDE и \"sd\", если он\n"
-"SCSI.\n"
+" Здесь вы можете настроить вашу машину на автоматическую загрузку в\n"
+"графическом интерфейсе. Очевидно, что вам следует выбрать \"%s\", если ваша\n"
+"машина будет работать в качестве сервера или вам не удалось настроить\n"
+"графический режим."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
"\n"
-"\"Номер жесткого диска\" всегда является буквой после \"hd\" или \"sd\".\n"
-"Для жестких дисков IDE:\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
"\n"
-" * \"a\" означает \"master жесткий диск на первичном IDE контроллере\";\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
"\n"
-" * \"b\" означает \"slave жесткий диск на первичном IDE контроллере\";\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
"\n"
-" * \"c\" означает \"master жесткий диск на вторичном IDE контроллере\";\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
"\n"
-" * \"d\" означает \"slave жесткий диск на вторичном IDE контроллере\".\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
"\n"
-"Для жестких дисков SCSI, \"a\" означает \"lowest SCSI ID\", а \"b\"\n"
-"означает \"second lowest SCSI ID\", и т.д."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country isn't in the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-"\"%s\": проверьте текущий выбор страны Если вы находитесь не в этой стране,\n"
-"нажмите на кнопку \"%s\" и выберите другую. Если ваша страна не\n"
-"присутствует в первом показанном списке, нажмите кнопку \"%s\", чтобы\n"
-"увидеть полный список."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you don't have to reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"won't be able to recover it.\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrivalinux operating system installation.\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
msgstr ""
-"Все вновь созданные разделы должны быть отформатированы для того, чтобы их\n"
-"можно было использовать (форматирование означает создание файловой\n"
-"системы).\n"
-"\n"
-"На этом этапе у вас есть возможность переформатировать уже существующие\n"
-"разделы, чтобы стереть все данные, которые они содержат. Если вам это\n"
-"нужно, тогда выберите и эти разделы.\n"
+"На этом шаге вам прийдется решить, куда вы хотите установить операционную\n"
+"систему Mandriva Linux на вашем жестком диске. Если ваш жесткий диск пуст,\n"
+"или существующая операционная система на нем занимает все дисковое\n"
+"пространство, вам прийдется диск переразбить (partition). Разделение диска\n"
+"в основном состоит в том, чтобы логически выделить на нем свободное\n"
+"пространство для установки вашей новой системы Mandriva Linux.\n"
"\n"
-"Пожалуйста, имейте в виду, что нет необходимости переформатировать все\n"
-"существовавшие ранее разделы. Вы должны переформатировать разделы,\n"
-"содержащие операционную систему (такие, как \"/\", \"/usr\" или \"/var\"),\n"
-"но вам совсем не обязательно форматировать разделы, на которых содержатся\n"
-"данные, которые вы хотели бы сохранить (обычно это \"/home\").\n"
+"Поскольку разделение диска - это обычно необратимый процесс и может\n"
+"привести к потере данных, если на диске уже есть установленная операционная\n"
+"система, то для начинающего пользователя это несколько напряженный и\n"
+"пугающий момент. К счастью, в DrakX существует мастер, упрощающий этот\n"
+"процесс. Пожалуйста, прочтите руководство перед началом и не торопитесь.\n"
"\n"
-"Пожалуйста, будьте осторожны при выборе разделов. После форматирования все\n"
-"данные на выбранных разделах будут удалены и вы не сможете их восстановить.\n"
+"В зависимости от конфигурации вашего жесткого диска, доступно несколько\n"
+"параметров:\n"
"\n"
-"Нажмите \"%s\", когда будете готовы начать форматирование разделов.\n"
+" * \"%s\": эта опция означает автоматическое разделение пустого диска или\n"
+"дисков. Если вы выбираете эту опцию, то далее вопросов задаваться не будет;\n"
"\n"
-"Нажмите \"%s\", если вы хотите выбрать другой раздел для установки\n"
-"Mandrivalinux.\n"
+" * \"%s\": мастер определил наличие существующих разделов Linux на вашем\n"
+"жестком диске. Если вы собираетесь их использовать, выберите эту опцию. Вас\n"
+"попросят указать точки монтирования для каждого раздела. По умолчанию\n"
+"выбираются традиционные точки монтирования и вы можете вообще их не менять.\n"
"\n"
-"Нажмите \"%s\", если хотите выбрать разделы, которые следует проверить на\n"
-"сбойные блоки (bad blocks)."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
+" * \"%s\": если на вашем жестком диске установлена и занимает все доступное\n"
+"место Microsoft Windows, вам нужно будет создать свободное место для данных\n"
+"Linux. Чтобы это сделать, вы можете удалить ваш Microsoft Windows раздел и\n"
+"данные (см. решение `` Очистить весь диск'') или изменить размер раздела\n"
+"FAT или NTFS Microsoft Windows. Изменение размера может проводиться без\n"
+"потери данных, особенно если вы предварительно провели дефрагментацию\n"
+"раздела Windows. Резервное копирование ваших данных настойчиво\n"
+"рекомендуется.. Рекомендуем выбрать эту опцию, если вы собираетесь\n"
+"использовать Mandriva Linux и Microsoft Windows на одном компьютере.\n"
"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard don't match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
+" Перед тем, как выбрать эту опцию, вы должны осознать, что размер вашего\n"
+"раздела Microsoft Windows станет меньше, чем был. У вас будет меньше\n"
+"свободного места под Microsoft Windows для хранения данных и инсталляции\n"
+"новых программ.\n"
"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+" * \"%s\" выберите эту опцию, если вы хотите удалить все данные на всех\n"
+"разделах вашего жесткого диска и заменить их новой системой Mandriva Linux.\n"
+"Будьте осторожны в этом решении, потому что после подтверждения вы не\n"
+"сможете вернуть обратно все как было.\n"
"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-"В зависимости от языка по умолчанию, который вы выбрали в разделе , DrakX\n"
-"автоматически подберет определенную конфигурацию клавиатуры. Проверьте, что\n"
-"выбор вам подходит или выберите другую раскладку клавиатуры.\n"
+" !! Если вы выбираете эту опцию, все данные на вашем жестком диске будут\n"
+"удалены. !!\n"
"\n"
-"Может так быть, что у вас нет клавиатуры, которая точно соответствует\n"
-"вашему языку: например, если вы швейцарец, говорящий по-английски, у вас\n"
-"может быть швейцарская клавиатура. Или вы говорите по-английски, но живете\n"
-"в Квебеке; тогда вы можете попасть в подобную в ситуацию, когда ваш родной\n"
-"язык и клавиатура не совпадают. В любом случае, этот шаг установки позволит\n"
-"вам выбрать подходящую клавиатуру из списка.\n"
+" * \"%s\": эта опция позволит просто удалить всю информацию на диске и\n"
+"начать создание разделов диска на пустом месте. Вся информация на вашем\n"
+"диске будет утеряна.\n"
"\n"
-"Нажмите на кнопку \"%s\" чтобы получить полный список поддерживаемых\n"
-"клавиатур.\n"
+" !! Если вы выберете эту опцию, все данные на вашем диске будут потеряны.\n"
+"!!\n"
"\n"
-"Если вы выбираете раскладку клавиатуры, основанную на не-латинском\n"
-"алфавите, следующее диалоговое окно позволит вам выбрать сочетание клавиш\n"
-"для переключения между латинской и не-латинской раскладками."
+" * \"%s\": выберите эту опцию, если вы желаете разбить ваш диск вручную.\n"
+"Будьте осторожны -- это мощная и одновременно опасная возможность. Вы\n"
+"запросто можете потерять все данные. Поэтому выбор этой опции рекомендуется\n"
+"только в том случае, если вы уже делали что либо подобное раньше и имеете\n"
+"некоторый опыт. Чтобы узнать, как использовать утилиту DiskDrake,\n"
+"обратитесь к разделу ``Управление разделами диска'' книги ``Стартовое\n"
+"руководство пользователя''."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Использовать существующий раздел"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Очистить весь диск"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:380
+#, c-format
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Don't forget\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
"to remove the installation media (CD-ROM or floppy). The first thing you\n"
"should see after your computer has finished doing its hardware tests is the\n"
"boot-loader menu, giving you the choice of which operating system to start.\n"
@@ -1600,11 +902,135 @@ msgstr ""
"в дисковод и запустите установку. В приглашении нажмите [F1] и наберите\n"
">>linux defcfg=\"floppy\"<<."
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Создать дискету автоматической установки"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Все вновь созданные разделы должны быть отформатированы для того, чтобы их\n"
+"можно было использовать (форматирование означает создание файловой\n"
+"системы).\n"
+"\n"
+"На этом этапе у вас есть возможность переформатировать уже существующие\n"
+"разделы, чтобы стереть все данные, которые они содержат. Если вам это\n"
+"нужно, тогда выберите и эти разделы.\n"
+"\n"
+"Пожалуйста, имейте в виду, что нет необходимости переформатировать все\n"
+"существовавшие ранее разделы. Вы должны переформатировать разделы,\n"
+"содержащие операционную систему (такие, как \"/\", \"/usr\" или \"/var\"),\n"
+"но вам совсем не обязательно форматировать разделы, на которых содержатся\n"
+"данные, которые вы хотели бы сохранить (обычно это \"/home\").\n"
+"\n"
+"Пожалуйста, будьте осторожны при выборе разделов. После форматирования все\n"
+"данные на выбранных разделах будут удалены и вы не сможете их восстановить.\n"
+"\n"
+"Нажмите \"%s\", когда будете готовы начать форматирование разделов.\n"
+"\n"
+"Нажмите \"%s\", если вы хотите выбрать другой раздел для установки\n"
+"Mandriva Linux.\n"
+"\n"
+"Нажмите \"%s\", если хотите выбрать разделы, которые следует проверить на\n"
+"сбойные блоки (bad blocks)."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"В данный момент установки Mandriva Linux было бы неплохо обновить некоторые\n"
+"пакеты из исходного релиза. Некоторые баги могут быть уже исправлены и\n"
+"решены проблемы безопасности. Чтобы получить пользу от этих обновлений,\n"
+"сейчас вы можете загрузить их из Интернет. Нажмите \"%s\", если у вас есть\n"
+"работающее соединение с Интернет, или \"%s\", если вы хотели бы обновить\n"
+"пакеты позже.\n"
+"\n"
+"При выборе \"%s\" появится список мест, из которых можно получить\n"
+"обновления. Выберите ближайший к вам сервер. Затем появится дерево выбора\n"
+"пакетов: просмотрите список и нажмите \"%s\" для получения и установки\n"
+"выбранных пакетов, или \"%s\" для отмены."
+
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"На этом этапе DrakX позволит вам выбрать для машины желаемый уровень\n"
+"безопасности. Как правило, уровень безопасности должен быть выше, если на\n"
+"машине содержатся критические данные или машина непосредственно подключена\n"
+"к Интернет. Однако, более высокий уровень безопасности, в общем случае,\n"
+"достигается в обмен на удобство использования.\n"
+"\n"
+"Если вы не знаете что выбрать, оставьте выбор по умолчанию. Вы сможете\n"
+"изменить этот уровень безопасности потом с помощью утилиты draksec из\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+"В поле \"%s\" системе указывается пользователь, который будет отвечать за\n"
+"безопасность. На этот адрес будут посылаться сообщения по безопасности."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Администратор по безопасности"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:464
+#, c-format
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrivalinux system. If partitions have already been\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
"defined, either from a previous installation of GNU/Linux or by another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
@@ -1630,7 +1056,7 @@ msgid ""
"floppy disk.\n"
"\n"
" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it doesn't always\n"
+"using this option. Please be careful and remember that it does not always\n"
"work.\n"
"\n"
" * \"%s\": discards all changes and reloads the partition table that was\n"
@@ -1675,7 +1101,7 @@ msgid ""
"emergency boot situations."
msgstr ""
"Здесь вам предложат выбрать, какие разделы будут использоваться для\n"
-"установки вашей системы Mandrivalinux. Если разделы были уже определены\n"
+"установки вашей системы Mandriva Linux. Если разделы были уже определены\n"
"ранее, например, предыдущей инсталляцией GNU/Linux или другой утилитой\n"
"разбиения дисков, вы можете воспользоваться существующими разделами. В\n"
"противном случае, разделы жесткого диска должны быть определены.\n"
@@ -1746,3 +1172,797 @@ msgstr ""
"больше, скажем 50MB, то вы найдете полезное место для хранения spare kernel\n"
"и ramdisk образов для загрузки в аварийных ситуациях."
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Автомонтирование съемных носителей"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Переключение между нормальным/экспертным режимами"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"На вашем жестом диске обнаружено несколько разделов Microsoft. Выберите\n"
+"необходимый раздел для изменения его размера с целью установки вашей новой\n"
+"операционной системы Mandriva Linux.\n"
+"\n"
+"Каждый раздел перечислен так: \"Linux имя\", \"Windows имя\" \"Размер\".\n"
+"\n"
+"\"Linux имя\" разделено на: \"тип жесткого диска\", \"номер жесткого\n"
+"диска\", \"номер раздела\" (например, \"hda1\").\n"
+"\n"
+"\"Тип жесткого диска\" это \"hd\" если ваш жесткий диск IDE и \"sd\" если\n"
+"SCSI.\n"
+"\n"
+"\"Номер жесткого диска\" это всегда буква после \"hd\" или \"sd\". Для\n"
+"жестких дисков IDE:\n"
+"\n"
+" * \"a\" означает \"master жесткий диск на первичном IDE контроллере\";\n"
+"\n"
+" * \"b\" означает \"slave жесткий диск на первичном IDE контроллере\";;\n"
+"\n"
+" * \"c\" означает \"master жесткий диск на вторичном IDE контроллере\";\n"
+"\n"
+" * \"d\" означает \"slave жесткий диск на вторичном IDE контроллере\".\n"
+"\n"
+"Для жестких дисков SCSI \"a\" означает \"lowest SCSI ID\", \"b\" означает\n"
+"\"second lowest SCSI ID\", и т.д.\n"
+"\n"
+"\"Windows name\" это буква жесткого диска под Windows (первый диск или\n"
+"раздел называется \"C:\")."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": проверьте текущий выбор страны Если вы находитесь не в этой стране,\n"
+"нажмите на кнопку \"%s\" и выберите другую. Если ваша страна не\n"
+"присутствует в первом показанном списке, нажмите кнопку \"%s\", чтобы\n"
+"увидеть полный список."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Этот шаг появляется только в случае, если на вашей машине найден старый\n"
+"раздел GNU/Linux.\n"
+"\n"
+"DrakX теперь должен узнать, хотите ли вы провести новую установку или\n"
+"обновление существующей системы Mandriva Linux:\n"
+"\n"
+" * \"%s\": в большинстве случаев этот вариант приведет к уничтожению старой\n"
+"системы. Если вы желаете изменить разделы вашего жесткого диска или\n"
+"изменить файловую систему, вы должны выбрать этот пункт. Однако, в\n"
+"зависимости от того, как разбит ваш диск, вам, возможно, удастся сохранить\n"
+"от перезаписи некоторые свои данные.\n"
+"\n"
+" * \"%s\": этот класс установки позволит вам обновить пакеты, установленные\n"
+"в вашей системе Mandriva Linux. Текущая схема разделов диска и\n"
+"пользовательские данные останутся нетронутыми. Большинство других шагов\n"
+"будут доступны, как и при стандартной установке.\n"
+"\n"
+"``Обновление'' будет неплохо работать на системах Mandriva Linux начиная с\n"
+"\"8.1\" и выше. Проведение обновления на системах Mandriva Linux старше\n"
+"\"8.1\" не рекомендуется."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"В зависимости от языка по умолчанию, который вы выбрали в разделе , DrakX\n"
+"автоматически подберет определенную конфигурацию клавиатуры. Проверьте, что\n"
+"выбор вам подходит или выберите другую раскладку клавиатуры.\n"
+"\n"
+"Может так быть, что у вас нет клавиатуры, которая точно соответствует\n"
+"вашему языку: например, если вы швейцарец, говорящий по-английски, у вас\n"
+"может быть швейцарская клавиатура. Или вы говорите по-английски, но живете\n"
+"в Квебеке; тогда вы можете попасть в подобную в ситуацию, когда ваш родной\n"
+"язык и клавиатура не совпадают. В любом случае, этот шаг установки позволит\n"
+"вам выбрать подходящую клавиатуру из списка.\n"
+"\n"
+"Нажмите на кнопку \"%s\" чтобы получить полный список поддерживаемых\n"
+"клавиатур.\n"
+"\n"
+"Если вы выбираете раскладку клавиатуры, основанную на не-латинском\n"
+"алфавите, следующее диалоговое окно позволит вам выбрать сочетание клавиш\n"
+"для переключения между латинской и не-латинской раскладками."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Ваш выбор предпочитаемого языка повлияет на язык документации, сам\n"
+"инсталлятор и систему в целом. Выберите сначала регион, в котором вы\n"
+"находитесь, затем язык на котором вы говорите.\n"
+"\n"
+"По нажатию на кнопку \"%s\" вы сможете выбрать другие языки, которые можно\n"
+"установить на вашей рабочей станции. Таким образом будут установлены\n"
+"имеющие отношение к языку файлы системной документации и приложения.\n"
+"Например, если у вас в системе будут работать пользователи из Испании,\n"
+"выберите в дереве English как основной, и \"%s\" в дополнительном разделе.\n"
+"\n"
+"О поддержке UTF-8 (unicode): Unicode это новая кодировка, которая включает\n"
+"в себя все существующие языки. Однако ее полная поддержка в GNU/Linux пока\n"
+"находится в стадии разработки. Поэтому Mandriva Linux будет определять\n"
+"использовать ее или нет в зависимости от выбора пользователя:\n"
+"\n"
+" * Если вы выбираете языки, которые имеют свою традиционную устоявшуюся\n"
+"кодировку (языки latin1, русский, японский, китайский, корейский, тайский,\n"
+"греческий, турецкий, большинство языков с iso-8859-2), будет взята по\n"
+"умолчанию их кодировка;\n"
+"\n"
+" * Для остальных языков будет использоваться юникод по умолчанию;\n"
+"\n"
+" * Если выбираются несколько языков, имеющих различную кодировку, будет\n"
+"использован юникод по умолчанию для всей системы;\n"
+"\n"
+" * И наконец, юникод может быть также выбран по запросу пользователя,\n"
+"опцией \"%s\" не зависимо от того, какие языки выбраны.\n"
+"\n"
+"Заметим, что вы не ограничены в выборе дополнительных языков. Вы можете\n"
+"выбрать сколько угодно дополнительных языков, даже установить все языки,\n"
+"отметив пункт \"%s\". Выбор поддержки языка означает наличие переводов,\n"
+"шрифтов, проверку орфографии и т.д. для установленных языков.\n"
+"\n"
+"Для переключения между различными установленными языками в вашей системе вы\n"
+"можете запускать команду \"/usr/sbin/localedrake\" с правами \"root\",\n"
+"чтобы изменить язык для всей системы. Запуск этой команды с правами\n"
+"обычного пользователя позволит изменить настройки языка для данного\n"
+"конкретного пользователя."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Испанский"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Обычно у DrakX не возникает проблем с определением количества кнопок вашей\n"
+"мыши. Если все-таки у него это не получается, тогда он будет рассматривать\n"
+"вашу мышь как двух-кнопочную и настроит эмуляцию трех кнопок. Третья кнопка\n"
+"двухкнопочной мыши может быть ``нажата'' одновременным нажатием на левую и\n"
+"правую кнопку. DrakX автоматически определит какой интерфейс использует\n"
+"ваша мышь: PS/2, serial или USB.\n"
+"\n"
+"Если у вас трехкнопочная мышь с колесиком, вы можете выбрать мышь \"%s\"\n"
+"DrakX тогда настроит вашу мышь с симуляцией колесика. Чтобы воспользоваться\n"
+" затем колесиком, нажимайте среднюю кнопку мыши и двигайте указатель мыши\n"
+"вверх-вниз.\n"
+"\n"
+"Если, по каким-либо причинам, вы желаете указать другой тип мыши, выберите\n"
+"нужную мышь из предоставленного списка.\n"
+"\n"
+"Вы можете выбрать пункт \"%s\" для выбора типа мыши ``generic'', который "
+"будет\n"
+"работать практически с любой мышью.\n"
+"\n"
+"Если вы выбираете другую мышь, отличную от выбранной по умолчанию, появится\n"
+"тестовый экран. Понажимайте кнопки и покрутите колесико для проверки\n"
+"правильности настроек и того, что мышь работает корректно. Если мышь ведет\n"
+"себя неверно, нажмите пробел или клавишу [Return], чтобы отменить\n"
+"тестирование и вернуться к списку мышей.\n"
+"\n"
+"Мыши с колесиками иногда автоматически не определяются. В этом случае вам\n"
+"прийдется выбрать свою мышь из списка. Проверьте, что вы правильно выбрали\n"
+"порт подключения мыши. Когда мышь будет выбрана и нажата кнопка \"%s\",\n"
+"появится картинка с изображением мыши. Покрутите колесико мыши для проверки\n"
+"того, что все работает правильно. Как только вы увидите, что колесико на\n"
+"экране движется синхронно с движениями настоящего колесика, проверьте также\n"
+"работу кнопок и движение курсора, который должен двигаться по экрану\n"
+"соответственно вашим перемещениям мыши."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "с эмуляцией колесика"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Универсальный |Любая PS/2 & USB мышь"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Пожалуйста, выберите правильный порт. Например, порт \"COM1\" под Windows\n"
+"называется \"ttyS0\" под GNU/Linux."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Это самое важное решение в деле безопасности вашей системы GNU/Linux: вы\n"
+"должны ввести пароль \"root\". \"Root\" является администратором системы, и\n"
+"только он имеет право производить обновления, добавлять пользователей,\n"
+"изменять конфигурацию системы и так далее. Короче говоря, \"root\" может\n"
+"все! Вот поэтому вы должны придумать пароль, который трудно подобрать -\n"
+"DrakX сообщит вам, если пароль слишком прост. Как вы видите, можно вообще\n"
+"не вводить пароль, но мы серьезно советуем вам этого не делать по одной\n"
+"простой причине: не думайте, что если вы загрузили GNU/Linux, то ваши\n"
+"остальные операционные системы защищены от ошибок. Так как \"root\" может\n"
+"переступить все ограничения и непреднамеренно стереть все данные на\n"
+"разделах диска, обращаясь небрежно с разделами, то очень важно, чтобы стать\n"
+"\"root\" было трудно.\n"
+"\n"
+"Пароль должен быть сочетанием цифровых и буквенных символов и иметь длину\n"
+"не менее 8 символов. Никогда не записывайте пароль \"root\" - это делает\n"
+"очень легкой возможность скомпрометировать систему.\n"
+"\n"
+"Одно предостережение -- не делайте пароль слишком длинным или слишком\n"
+"сложным, потому что вы должны его без особых усилий запомнить!\n"
+"\n"
+"Пароль не будет отображаться на экране так же, как вы его вводите. Кроме\n"
+"того, вам прийдется повторить ввод пароля, чтобы предупредить возможность\n"
+"опечатки. Если случится так, что вы опечатались дважды, тогда этот\n"
+"``неверный'' пароль прийдется использовать при первой загрузке.\n"
+"\n"
+"Если вы желаете, чтобы доступ к этому компьютеру контролировался сервером\n"
+"аутентификации, нажмите на кнопку \"%s\".\n"
+"\n"
+"Если ваша сеть использует службы аутентификации LDAP, NIS или PDC Windows\n"
+"Domain выберите соответствующий тип \"%s\". Если не знаете что выбрать,\n"
+"спросите своего администратора сети.\n"
+"\n"
+"Если у вас возникли проблемы с запоминанием паролей, вы можете выбрать\n"
+"опцию \"%s\", если ваш компьютер не будет подключаться к Интернет и если вы\n"
+"доверяете всем доступ к своей машине."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "аутентификация"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"LILO и GRUB -- это начальные загрузчики GNU/Linux. Этот шаг обычно\n"
+"полностью автоматизирован. DrakX проанализирует загрузочный (boot) сектор\n"
+"диска и будет действовать согласно тому, что он там найдет:\n"
+"\n"
+" * если найден загрузочный сектор Windows, он заменит его на загрузочный\n"
+"сектор GRUB/LILO. Следовательно, вы сможете загружать и GNU/Linux и другую\n"
+"OS, установленную на вашей машине.\n"
+"\n"
+" * если найден загрузочный сектор GRUB или LILO, он заменит его на новый.\n"
+"\n"
+"Если возникают сомнения, DrakX спросит вас куда разместить загрузчик. В\n"
+"общем случае, \"%s\" это лучший вариант выбора. Если выбрать \"%s\", тогда\n"
+"начальный загрузчик не будет установлен вообще. Используйте этот вариант\n"
+"только если вы знаете, что вы делаете."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Теперь пришло время выбрать систему печати для вашего компьютера. Другие OS\n"
+"могут предложить вам одну, а Mandriva Linux предлагает две. Каждая из "
+"систем\n"
+"является лучшей для определенной конфигурации.\n"
+"\n"
+" * \"%s\" -- что означает ``печатать, не ставить в очередь'' (``print,\n"
+"do not queue''), это удобный вариант, если вы напрямую подключены к своему\n"
+"принтеру, вы хотите избежать проблем с зажевыванием бумаги, и у вас нет\n"
+"сетевых принтеров. (\"%s\" сможет справиться только с очень простыми\n"
+"реализациями сетей и является для них довольно медленным.) Рекомендуется\n"
+"использовать \"pdq \" в случае, если вы только начинаете свой путь в\n"
+"GNU/Linux.\n"
+"\n"
+" * \"%s\" - `` Common Unix Printing System'' (Общая система печати Unix),\n"
+"это превосходная печать на вашем локальном принтере, а также на половине\n"
+"всей планеты. Она проста в настройке и может выступать в качестве сервера\n"
+"или клиента для древних систем печати \"lpd \", поэтому она совместима с\n"
+"ранее выпущенными системами, которым возможно еще требуются службы печати.\n"
+"Несмотря на всю свою мощь, базовые настройки у нее проще чем у \"pdq\".\n"
+"Если вам нужно эмулировать \"lpd\", вы должны включить демон \"cups-lpd \".\n"
+"\"%s\" имеет графический интерфейс для печати или выбора параметров\n"
+"принтера и для управления принтером.\n"
+"\n"
+"Если вы сделаете свой выбор сейчас, а позже обнаружите, что система печати\n"
+"вам не подходит, вы сможете изменить ее, запустив PrinterDrake из Центра\n"
+"Управления Mandriva Linux и нажав на кнопку \"%s\"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Эксперт"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"Сначала DrakX определит любые IDE устройства, присутствующие в вашей\n"
+"системе. Также он проверит наличие одной или больше PCI SCSI карт в\n"
+"системе. Если будет найдена SCSI карта, DrakX автоматически установит\n"
+"соответствующий драйвер.\n"
+"\n"
+"Так как обнаружение аппаратного обеспечения не всегда ошибкоустойчиво,\n"
+"DrakX может не справиться с определением ваших жестких дисков. Если это\n"
+"случится, тогда вам прийдется вручную указать ему оборудование.\n"
+"\n"
+"Если вам пришлось вручную указать PCI SCSI адаптер, DrakX спросит вас,\n"
+"хотите ли вы настроить его параметры. Вы должны разрешить DrakX проверить\n"
+"специфические для карты опции, которые нужны для инициализации адаптера.\n"
+"Обычно DrakX проходит этот шаг без проблем.\n"
+"\n"
+"Если DrakX не в состоянии автоматически определить, какие параметры нужны\n"
+"оборудованию, вам прийдется вручную настроить драйвер."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": если в вашей системе найдена звуковая карта, здесь это будет\n"
+"показано. Если вы увидите, что показанная звуковая карта не соответствует\n"
+"тому, что у вас реально есть в системе, вы можете нажать на кнопку и\n"
+"выбрать другой драйвер."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"В качестве обзора DrakX представит сводку имеющейся у него различной\n"
+"информации о вашей системе. В зависимости от установленного у вас\n"
+"оборудования, вы можете увидеть все или некоторые из следующих пунктов.\n"
+"Каждый пункт состоит из конфигурационных элементов для настройки,\n"
+"сопровождаемых небольшой сводкой о текущей конфигурации. Нажмите на\n"
+"соответствующую кнопку \"%s\", чтобы изменить настройки.\n"
+"\n"
+" * \"%s\": проверьте текущую настройку раскладки клавиатуры и сделайте\n"
+"поправку если необходимо.\n"
+"\n"
+" * \"%s\": проверьте текущий выбор страны Если вы находитесь не в этой\n"
+"стране, нажмите на кнопку \"%s\" и выберите другую. Если ваша страна не\n"
+"присутствует в первом показанном списке, нажмите кнопку \"%s\", чтобы\n"
+"увидеть полный список.\n"
+"\n"
+" * \"%s\": По умолчанию, DrakX выбирает часовой пояс, основываясь на\n"
+"выбранной вами стране. Вы можете здесь нажать на кнопку \"%s\", если\n"
+"выбранное неверно.\n"
+"\n"
+" * \"%s\": проверьте текущую конфигурацию мыши и нажмите на кнопку, если\n"
+"необходимо что-либо изменить.\n"
+"\n"
+" * \"%s\": по нажатию на кнопку \"%s\" откроется мастер настройки принтера.\n"
+"Прочитайте соответствующую главу в книге ``Стартовое руководство\n"
+"пользователя'', чтобы узнать как установить новый принтер. Представленный\n"
+"там интерфейс подобен используемому в процессе установки.\n"
+"\n"
+" * \"%s\": если в вашей системе найдена звуковая карта, здесь это будет\n"
+"показано. Если вы увидите, что показанная звуковая карта не соответствует\n"
+"тому, что у вас реально есть в системе, вы можете нажать на кнопку и\n"
+"выбрать другой драйвер.\n"
+"\n"
+" * \"%s\": если в вашей системе была обнаружена TV карта, она будет здесь\n"
+"показана. Если у вас есть TV карта, но она не была определена, нажмите на\n"
+"кнопку \"%s\" и попробуйте настроить ее вручную.\n"
+"\n"
+" * \"%s\": вы можете кликнуть по \"%s\" чтобы изменить связанные с картой\n"
+" параметры если считаете что настройка неверна\n"
+"\n"
+" * \"%s\": по умолчанию DrakX настраивает ваш графический интерфейс на\n"
+"разрешение \"800x600\" или \"1024x768\". Если вас это не устраивает,\n"
+"нажмите \"%s\" для внесения изменений в конфигурацию вашего графического\n"
+"интерфейса.\n"
+"\n"
+" * \"%s\": если вы хотите настроить доступ в Интернет или локальную сеть\n"
+"прямо сейчас. Обратитесь к печатной документации или используйте\n"
+"Центр управления Mandriva Linux после установки чтобы почитать\n"
+"встроенную справку.\n"
+"\n"
+" * \"%s\": позволяет настроить адреса HTTP и FTP прокси если машина,\n"
+"которую вы настраиваете, будет работать за прокси-сервером.\n"
+"\n"
+" * \"%s\": этот пункт предлагает вам переопределить уровень безопасности\n"
+"как это делалось на предыдущем шаге ().\n"
+"\n"
+" * \"%s\": если вы собираетесь подключать вашу машину к Интернет, неплохой\n"
+"идеей будет защитить себя от вторжений извне, установив файервол.\n"
+"Прочитайте соответствующий раздел книги ``Стартовое руководство\n"
+"пользователя'', где описаны детали настройки файервола.\n"
+"\n"
+" * \"%s\": если вы желаете изменить конфигурацию начального загрузчика,\n"
+"нажмите эту кнопку. Эта опция предназначена для опытных пользователей.\n"
+"Обратитесь к печатной документации или встроенной справке о настройке\n"
+"загрузчика в Центре управления Mandriva Linux.\n"
+" * \"%s\": здесь вы сможете проконтролировать какие службы будут запущены\n"
+"на вашей машине. Если ваша машина будет сервером, вам стоит проверить эти\n"
+"установки."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "карта ISDN"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Графический Интерфейс"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Выберите жесткий диск, который нужно очистить для инсталляции вашего нового\n"
+"раздела Mandriva Linux. Будьте осторожны, все данные на нем будут потеряны\n"
+"и их нельзя будет восстановить!"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandriva.com:/cooker/doc/manualB/modules/ru/drakx-chapter.xml
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Нажмите \"%s\", если вы хотите удалить все данные и разделы на данном\n"
+"жестком диске. Будьте осторожны, потому что после нажатия \"%s\" вы не\n"
+"сможете восстановить данные и разделы на этом диске, включая данные\n"
+"Windows.\n"
+"\n"
+"Нажмите \"%s\" для отмены этой операции без потери данных и разделов на\n"
+"данном жестком диске."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Далее ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Назад"
+
diff --git a/perl-install/install/help/po/sc.po b/perl-install/install/help/po/sc.po
new file mode 100644
index 000000000..29731d8bb
--- /dev/null
+++ b/perl-install/install/help/po/sc.po
@@ -0,0 +1,1110 @@
+# translation of DrakX-sc.po to Sardu
+# Copyright (C) 2005 Free Software Foundation, Inc.
+# Antoni Pistis <antonio.pistis@virgilio.it>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-sc\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-09-14 11:29+0100\n"
+"Last-Translator: Antoni Pistis <antonio.pistis@virgilio.it>\n"
+"Language-Team: Sardu\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Bolis a tenni custa possibilidadi?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Ajorronu"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Cun documentadura fundamentali"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Aposentadura minimali diaderus"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Dependèntzias automàtigas"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Sincronisadura automàtiga"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Imprea pratzidura de imoi"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Burra totu su discu"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Crea floppy de aposentadura automàtiga"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Aministradori de Siguresa"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Càrrigu automàtigu de mèdius arremoviditzus"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr ""
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Spannyolu"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "cun emuladura de Arroda"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Universali | Dònnia sòrixi PS/2 & USB"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "autentigadura"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Spertu"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Skeda ISDN"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Interfaci Gràfiga"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Sighi ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Agoa"
+
diff --git a/perl-install/install/help/po/sk.po b/perl-install/install/help/po/sk.po
new file mode 100644
index 000000000..103bada97
--- /dev/null
+++ b/perl-install/install/help/po/sk.po
@@ -0,0 +1,1998 @@
+# Jan Matis <damned@hq.alert.sk>, 2000.
+# Pavol Cvengros <orpheus@hq.alert.sk>, 2000.
+# Michal Holes <Michal@Holes.sk>, 2004,2005.
+# Tibor Pittich <Tibor.Pittich@phuture.sk>, 2002,2003,2004,2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-09-21 14:03+0100\n"
+"Last-Translator: Tibor Pittich <Tibor.Pittich@mandriva.org>\n"
+"Language-Team: <i18n@mandrake.sk>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Pred tým než budete pokračovať, mali by ste si pozorne prečítať\n"
+"licenčné podmienky. Pokrývajú celú distribúciu Mandriva Linux\n"
+"Ak súhlasíte so všetkými jej bodmi kliknite na tlačidlo \"%s\".\n"
+"Ak nesúhlasíte kliknite na tlačidlo \"%s\" a váš počítač bude reštartovaný."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux je viacpoužívateľský systém čo znamená, že každý používateľ má\n"
+"vlastné nastavenia, vlastné súbory a podobne. Môžete si prečítať "
+"\"Používateľskú\n"
+"príručku\" pre podrobnejšie informácie o viacpoužívateľských systémoch.\n"
+"S výnimkou \"root\"a, ktorý je administrátor systému, používatelia ktorí "
+"budú na tomto\n"
+"mieste pridaní používatelia nemôžu meniť alebo zmazať čokoľvek s výnimkou "
+"svojich vlastných\n"
+"údajov a konfigurácií. Mali by ste vytvoriť minimálne jedného regulárneho\n"
+"používateľa pre seba. Toto konto by ste mali používať pre bežnú rutinnú "
+"prácu.\n"
+"Aj keď sa zdá byť praktické prihlasovať ako \"root\" zakaždým, je to veľmi\n"
+"nebezpečné! Aj najmenší omyl môže viesť k tomu, že váš aktuálny systém už\n"
+"nebude nikdy použiteľný. Ak sa vám podarí spraviť omyl ako bežnému "
+"používateľovi,\n"
+"môžete prísť o niektoré údaje, ale nepodarí sa vám poškodiť celý systém.\n"
+"\n"
+"Najprv by ste mali zadať vaše skutočné meno. Samozrejme, toto nie je\n"
+"povinnosť, môžete zadať ľubovoľné meno. DrakX potom použije prvé\n"
+"slovo z mena, ktoré ste zadali a toto vám ponúkne ako \"%s\".\n"
+"Toto môže byť prihlasovacie meno tohto bežného používateľa. Tiež by ste na\n"
+"tomto mieste mali zadať heslo. Heslo bežného (neprivilegovaného) "
+"používateľa\n"
+"nie je také kritické ako heslo superpoužívateľa \"root\"a z pohľadu "
+"bezpečnosti,\n"
+"ale nie je dôvod toto heslo podceniť, pretože všetky jeho súbory môžu byť\n"
+"v nebezpečenstve.\n"
+"\n"
+"Ak kliknete na \"%s\", môžete pridať aj ďalších používateľov\n"
+"ak si to želáte (Vašich priateľov, otca, sestru a podobne). Ak ste skončili\n"
+"s pridávaním, zvoľte \"%s\".\n"
+"\n"
+"Kliknutím na \"%s\" môžete zmeniť predvolený \"interpreter\" pre daného\n"
+"používateľa (štandardne bash).\n"
+"\n"
+"Ak ste skončili s pridávaním používateľov, v nasledovnom kroku budete môcť\n"
+"nastaviť používateľa, ktorý bude automaticky prihlásený do systému po "
+"naštartovaní.\n"
+"Ak vás zaujíma táto možnosť (a nezáleží vám na lokálnej bezpečnosti), zvoľte "
+"si\n"
+"požadovaného používateľa a správcu okien, potom kliknite na \"%s\".\n"
+"Ak nemáte záujem používať túto možnosť, odznačte položku \"%s\"."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Chcete použiť túto možnosť?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Tu je zoznam oblastí s existujúcimi Linux oddielmi, ktoré boli zdetekované\n"
+"na vašom disku. Môžete zachovať nastavenia vygenerované sprievodcom, čo\n"
+"môže byť vhodné pre bežné inštalácie. Ak chcete vykonať zmeny, najprv "
+"musíte\n"
+"definovať hlavný oddiel (\"/\"). Nevoľte si príliš malý oddiel, pretože vám "
+"nemusí\n"
+"byť umožnené inštalovať všetok softvér, ktorý by ste si želali. Ak budete "
+"chcieť\n"
+"ukladať používateľské údaje na iný oddiel, bude potrebné vytvoriť oddiel\n"
+"pre \"/home\" oblasť (to je možné ak máte spolu k dispozícii viac ako jeden\n"
+"Linux oddiel).\n"
+"\n"
+"Všetky oddiely sú zobrazené s nasledovnými údajmi: \"Meno\", \"Kapacita\".\n"
+"\n"
+"\"Meno\" je vytvorené ako: \"typ disku\", \"číslo disku\", \"číslo oddielu"
+"\"\n"
+"(napríklad \"hda1\").\n"
+"\n"
+"\"Typ disku\" je vždy písmeno za \"hd\" alebo \"sd\". V prípade IDE\n"
+"diskov:\n"
+"\n"
+" * \"a\" znamená \"master disk na primárnom IDE radiči\";\n"
+"\n"
+" * \"b\" znamená \"slave disk na primárnom IDE radiči\";\n"
+"\n"
+" * \"c\" znamená \"master disk na sekundárnom IDE radiči\";\n"
+"\n"
+" * \"d\" znamená \"slave disk na sekundárnom IDE radiči\".\n"
+"\n"
+"Pri SCSI diskoch \"a\" znamená \"najnižšie SCSI ID\", \"b\" znemaná\n"
+"\"druhé najnižšie SCSI ID\" a tak ďalej."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Inštalácia Mandriva Linuxu je distribuovaná na viacerých CD-ROM diskoch. "
+"DrakX\n"
+"vie zistiť, ak je vybraný balík umiestnený na inom CD-ROM disku, vysunie\n"
+"aktuálne CD a vypýta si od vás to ktoré je práve potrebné. Ak toto CD "
+"nemáte, kliknite na \"%s\" a požadovaný balík nebude nainštalovaný."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Teraz je možné vybrať, ktoré programy chcete nainštalovať na váš systém.\n"
+"Mandriva Linux obsahuje tisíce balčkov s programami. Pre jednoduchšiu "
+"orientáciu\n"
+"boly rozdelené do skupín, ktoré združujú podobné aplikácie.\n"
+"\n"
+"Balíčky sú rozdelené do skupín, ktoré zodpovedajú tomu, ako ich "
+"najčastejšie\n"
+"počítač používa. Skupiny sú umiestnené do štyroch sekcií. Výber aplikácií\n"
+"z týchto sekcií možno rôzne kombinovať, takže môžete mať nainštalovanú celú "
+"sekciu\n"
+"\"Pracovná stanica\" a k nej ďalšie aplikácie zo sekcie \"Server\".\n"
+"\n"
+" * \"%s\": ak plánujete počítač používať hlavne na \n"
+"bežnú prácu, vyberte si balíčky zo skupín kategórie pracovná stanica.\n"
+"\n"
+" * \"%s\": ak budete na počítači programovať, môžete si z tejto\n"
+"sekcie vybrať ďalšie skupiny. Zvláštna skupina \"LSB\" nastaví váš systém "
+"tak,\n"
+"aby čo najviac zodpovedal špecifikácii Linux Standard Base.\n"
+"\n"
+" Výber skupiny \"LSB\" tiež nainštaluje jadro rady\"2.4\" namiesto "
+"východzieho\n"
+"jadra rady \"2.6\", pre zaistenie úplnej kompatibility so špecifikáciou "
+"LSB . Aj ak ale\n"
+"skupinu LSB nevyberiete, bude systém takmer úplne špecifikácii zodpovedať\n"
+" * \"%s\":ak bude počítač fungovať ako server, máte možnosť\n"
+"vybrať si najbežnejšie služby, ktoré chcete nainštalovať.\n"
+"\n"
+" * \"%s\": ak uprednostňujete grafické prostredie, tu je\n"
+"ponuka niekoľkých prostredí, z ktorej si musíte vybrať, najmenej jedno\n"
+"aby bolo možné grafické prostredie nainštalovať.\n"
+"\n"
+"Ak prejdete myšou nad skupinou, objaví sa krátky text, ktorý vysvetľuje,\n"
+"čo je obsahom danej skupiny.\n"
+"\n"
+"Ak zvolíte voľbu \"%s\", zobrazí sa zoznam všetkých\n"
+"balíčkov, ktoré možno nainštalovať. To je užitočné v prípade, že chcete\n"
+"mať absolútnu kontrolu nad tým, čo sa bude inštalovať\n"
+"\n"
+"Ak ste spustili inštaláciu v režime \"%s\", môžete zrušiť výber\n"
+"daných skupín, čím zabránite inštalácii nových balíčkov. To je užitočné\n"
+"v prípade opravy alebo aktualizácie existujúceho systému.\n"
+"\n"
+"Ak nevyberiete pri bežnej inštalácii žiadnu skupinu (na rozdiel od\n"
+"aktualizácie), zobrazí sa otázka na inštaláciu niekoľkých typov minimálnej "
+"inštalácie:\n"
+"\n"
+" * \"%s\" Vykoná inštaláciu najmenšieho možného počtu balíčkou s podporou "
+"grafického prostredia.\n"
+"\n"
+" * \"%s\" Nainštaluje systém so základnými programami a ich dokumentáciou. \n"
+"Tento typ je vhodný pre inštaláciu servera.\n"
+"\n"
+" * \"%s\" Nainštaluje sa naozaj najmenšie možné minimum, aby bolo\n"
+"možné používať Linux z príkazového riadku. Inštalácia zaberie asi\n"
+"65 MB."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Aktualizácia"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "So základnou dokumentáciou"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Skutočne minimálna inštalácia"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Nakoniec, v závislosti na tom či ste si vybrali výber jednotlivých balíkov,\n"
+"bude zobrazená stromová štruktúra obsahujúca všetky balíky zoradené podľa\n"
+"skupín a podskupín. Počas prehliadania stromu môžete označiť celú skupinu,\n"
+"podskupinu, ale aj jednotlivé balíky.\n"
+"\n"
+"Vždy, keď vyberiete niektorý balík zo stromu, vpravo sa zobrazí jeho popis,\n"
+"aby ste vedeli aké je jeho približné použitie.\n"
+"\n"
+"!! Ak boli vybrané balíky, ktoré sú určené pre server, buď zámerne alebo\n"
+"preto že sú súčasťou celej skupiny, budete musieť potvrdiť, či skutočne\n"
+"chcete tieto služby nainštalovať. V prípade Mandriva Linuxu, sú štandardne "
+"všetky\n"
+"nainštalované služby spúšťané pri štarte systému. Aj keď sú bezpečné\n"
+"a v čase keď bola distribúcia vydaná neobsahovali žiadne známe problémy\n"
+"je možné, že tieto bezpečnostné problémy budú odhalené až po dokončení\n"
+"tejto verzie Mandriva Linuxu. Ak neviete čo jednotlivé servisy znamenajú, "
+"alebo\n"
+"prečo boli nainštalované tak kliknite na \"%s\". Kliknutím na \"%s\" budú\n"
+"vypísané služby nainštalované a automaticky naštartované pri spustení\n"
+"systému. !!\n"
+"\n"
+"Voľba \"%s\" potlačí varovný dialóg, ktorý sa objaví vždy,\n"
+"keď inštalátor automaticky vyberie balíky pre uspokojenie závislostí. "
+"Niektoré\n"
+"balíky majú závislosti medzi sebou alebo vyžadujú prítomnosť iných "
+"programov.\n"
+"Inštalátor dokáže tieto závislosti medzi balíkmy vyriešiť a úspešne tak\n"
+"dokončiť inštaláciu.\n"
+"\n"
+"Malá ikona diskety na spodku zoznamu vám umožní načítať zoznam balíkov,\n"
+"ktoré boli vybrané pri predchádzajúcej inštalácii. Toto je užitočné ak máte\n"
+"množstvo počítačov, ktoré si želáte nainštalovať identicky. Po kliknutí na "
+"túto ikonu\n"
+"budete požiadaní o vloženie diskety, ktorú ste si vytvorili na konci "
+"vzorovej\n"
+"inštalácie. Pozrite si ďalší tip pri poslednom kroku, ako vytvoriť takúto\n"
+"disketu."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Automatické závislosti"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": kliknutím na \"%s\" tlačidlo sa otvorí sprievodca konfiguráciou "
+"tlačiarne.\n"
+"Ak chcete získať viac informácií o tom, ako nastaviť novú tlačiareň, "
+"použite\n"
+"``Úvodnú príručku''. Rozhranie, ktoré tu vidíte je podobné tomu, ktoré bolo\n"
+"použité pri inštalácii."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Tento dialóg slúži pre výber služieb, ktoré si želáte spustiť pri štarte\n"
+"systému.\n"
+"\n"
+"DrakX zobrazí všetky služby dostupné pre aktuálnu inštaláciu.\n"
+"Pozorne si ich prezrite a zrušte tie, ktoré nebudete pri štarte systému\n"
+"potrebovať\n"
+"\n"
+"Je možné získať krátky popisný text o danej službe jej označením.\n"
+"V každom prípade, ak sa neviete uistiť v tom, ktorá zo služieb je pre vás\n"
+"použiteľná, je bezpečné ponechať predvolené nastavenie.\n"
+"\n"
+"!! Pri tomto kroku buďte opatrní ak plánujete používať váš počítač ako "
+"server:\n"
+"zrejme nebudete chcieť štartovať všetky služby, napríklad tie, ktoré nebude\n"
+"Váš systém poskytovať. Nezabudnite, že mnohé služby môžu byť\n"
+"pre server nebezpečné. Zvoľte si skutočne iba služby, ktoré naozaj "
+"potrebujete.\n"
+"!!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux spracováva čas v GMT (Greenwichský čas) a transformuje ho do\n"
+"lokálneho času v závislosti od nastavenej časovej zóny. Ak je čas na vašej\n"
+"matičnej doske nastavený ako lokálny čas, môžete toto deaktivovať "
+"odznačením\n"
+"\"%s\" následkom čoho bude systém vedieť, že hardvérové hodiny sú nastavené\n"
+"tak, že zodpovedajú časovej zóne. Toto je užitočné, ak na počítači "
+"prevádzkujete\n"
+"zároveň aj iný operačný systém.\n"
+"\n"
+"Nastavenie \"%s\" dokáže automaticky dolaďovať hodiny na základe pripojenia\n"
+"k vzdialenému časovému serveru v Internete. Pre správnu funkcionalitu tejto "
+"možnosti\n"
+"je potrebné, aby ste mali funkčné pripojenie k Internetu. Je vhodné vybrať "
+"si časový\n"
+"server, ktorý je vo vašej blízkosti. Táto voľba tiež nainštaluje časový "
+"server, ktorý je\n"
+"potom možné používať aj vo vašej lokálnej sieti."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Automatická synchronizácia času"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Grafická karta\n"
+"\n"
+" Inštalátor obyčajne dokáže zdetekovať a nakonfigurovať grafickú kartu\n"
+"vo vašom počítači. Ak tomu tak nie je vo vašom prípade, môžete si\n"
+"vybrať zo zoznamu kartu, ktorú aktuálne používate.\n"
+"\n"
+" V prípade dostupnosti viacerých serverov pre vašu kartu, s alebo bez\n"
+"3D akcelerácie si budete musieť vybrať server, ktorý bude zodpovedať vašim\n"
+"požiadavkám."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (X Window System) je srdcom grafického rozhrania GNU/Linux systému\n"
+"spolu so všetkými grafickými prostrediami (KDE, GNOME, AfterStep,\n"
+"WindowMaked, atď.) distribuovanými s Mandriva Linux systémom.\n"
+"\n"
+"Zmenou nasledovných parametrov môžete dosiahnuť optimálne nastavenie\n"
+"vášho grafického systému.\n"
+"\n"
+"Grafická karta\n"
+"\n"
+" Inštalátor dokáže za normálnych okolností zdetekovať a nakonfigurovať\n"
+"grafickú kartu vo vašom systéme. Ak neprebehla autodetekcia správne, môžete\n"
+"si vybrať v tomto zozname kartu, ktorú práve používate.\n"
+"\n"
+" V prípade, že je dostupných viacero serverov pre vašu grafickú kartu,\n"
+"s alebo bez 3D akcelerácie, budete si musieť vybrať server, ktorý bude "
+"zodpovedať vašim požiadavkám.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Inštalátor bežne dokáže automaticky zdetekovať a nastaviť monitor\n"
+"ktorý je pripojený k vášmu počítaču. Ak neprebehla autodetekcia\n"
+"správn môžete si vybrať zo zoznamu monitor, ktorý používate.\n"
+"\n"
+"\n"
+"\n"
+"Rozlíšenie\n"
+"\n"
+" Môžete si vybrať rozlíšenie a farebnú hĺbku medzi tými, ktoré sú "
+"dostupné\n"
+"pre váš hardvér. Vyberte si takú, aká čo najlepšie vyhovuje vašim potrebám\n"
+"(tieto hodnoty budete môcť zmeniť aj po inštalácii). Ukážka zvolenej\n"
+"konfigurácie bude zobrazená na vašom monitore.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" systém sa pokúsi nastaviť grafický mód vo zvolenom rozlíšení. Ak budete "
+"môcť vidieť\n"
+"správu a odpoviete na na ňu \"%s\", DrakX bude pokračovať nasledujúcim\n"
+"krokom. Ak nebudete vidieť túto správu, bude to znamenať, že niektorá časť "
+"autodetekcie\n"
+"neprebehla úspešne. Test sa automaticky ukončí po 12 sekundách a znovu sa "
+"vám zobrazí\n"
+"menu. Skúste meniť nastavenie dovtedy, kým nezískate korektne nastavený "
+"grafický displej.\n"
+"\n"
+"\n"
+"\n"
+"Nastavenia\n"
+"\n"
+" Na tomto mieste môžete nastaviť,či váš počítač má po štarte prejsť \n"
+"automaticky do grafického režimu. Pravdepodobne budete musieť označiť \"%s\" "
+"ak váš systém\n"
+"bude prevádzkovaný ako server alebo ak sa vám nepodarilo uspokojivo "
+"nakonfigurovať\n"
+"grafické rozhranie."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+"\n"
+" Inštalátor dokáže automaticky zdetekovať monitor, ktorý je pripojený\n"
+"k vášmu počítaču. Ak monitor nebol správne zdetekovaný máte možnosť\n"
+"vybrať si zo zoznamu monitor, ktorý máte aktuálne pripojený."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Rozlíšenie\n"
+"\n"
+" Tu si môžete vybrať rozlíšenie a farebnú hĺbku medzi tými, ktoré sú\n"
+"dostupné pre váš hardvér. Vyberte si jedno, ktoré najviac vyhovuje vašim\n"
+"potrebám (toto nastavenie budete môcť po inštalácii zmeniť). Ukážka "
+"zvolenej\n"
+"konfigurácie bude odskúšaná na vašom monitore."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"V prípade, že sú k dispozícii rôzne servery pre vašu kartu (s alebo bez\n"
+"3D akcelerácie), bude vám položená otázka s výberom servera, ktorý bude\n"
+"vyhovovať vašim potrebám."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Nastavenia\n"
+"\n"
+" Tu si môžete zvoliť či si želáte aby bolo hneď po spustení použité "
+"grafické\n"
+"rozhranie. Samozrejme, mali by ste odpovedať \"%s\", ak váš počítač bude\n"
+"slúžiť ako server alebo ak sa vám nepodarilo správne nakonfigurovať "
+"grafické\n"
+"rozhranie."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Teraz si môžete zvoliť, kam si želáte nainštalovať Mandriva Linux\n"
+"na váš disk. Ak je váš disk prázdny alebo ak na ňom\n"
+"už existuje operačný systém, ktorý zaberá všetko dostupné miesto, bude\n"
+"potrebné ho prerozdeliť. Prerozdeľovanie pozostáva z logického\n"
+"rozdelenia disku a vytvorenia priestoru pre novú inštaláciu Mandriva\n"
+"Linux systému.\n"
+"\n"
+"Pretože proces rozdeľovania je nezvratný a môže dôjsť k strate údajov, ak\n"
+"už na počítači existuje operačný systém; prerozdeľovanie disku môže byť pre\n"
+"neskúsených používateľov stresujúce. Našťastie DrakX obsahuje sprievodcu,\n"
+"ktorý tento proces značne zjednodušuje. Pred tým ako budete pokračovať,\n"
+"prečítajte si celú túto sekciu, ušetríte si tak zbytočné problémy.\n"
+"\n"
+"V závislosti na rozdelení vášho disku vám budú ponúknuté rôzne možnosti:\n"
+"\n"
+" * \"%s\": táto možnosť bude jednoducho viesť k automatickému\n"
+"rozdeleniu vášho voľného miesta na disku(och). Na žiadne ďalšie otázky\n"
+"nebudete musieť odpovedať.\n"
+"\n"
+" * \"%s\": sprievodca rozpoznal jeden alebo viac už existujúcich\n"
+"oddielov pre Linux na vašom pevnom disku. Ak si ho/ich želáte použiť potom\n"
+"si vyberte túto možnosť. Následne budete musieť nastaviť body pripojenia, "
+"ktoré\n"
+"priradíte jednotlivým oddielom. Dôležité body pripojenia budú už štandardne "
+"predvolené\n"
+"a v mnohých prípadoch je dobrý nápad zachovať ich.\n"
+"\n"
+" * \"%s\": ak už máte nainštalovaný operačný systém Microsoft Windows na "
+"vašom\n"
+"pevnom disku a zaberá všetko voľné miesto, ktoré je na ňom k dispozícii, je "
+"potrebné\n"
+"vytvoriť nový Linux oddiel pre uloženie údajov. Môžete teda vymazať takýto\n"
+"Windows oddiel a tam uložené údaje (pozrite ``Vymazať celý disk''') alebo "
+"zmeniť veľkosť vašej\n"
+"Microsoft Windows FAT oblasti. Zmenu veľkosti je možné uskutočniť bez straty "
+"údajov,\n"
+"po predchádzajúcom defragmentovaní Windows oblasti, ak obsahuje FAT "
+"súborový\n"
+"systém. Je veľmi odporúčané si najprv odzálohovať údaje. Toto riešenie je\n"
+"odporúčané použiť ak si chcete používať spoločne Mandriva Linux aj Microsoft "
+"Windows\n"
+"na jednom počítači.\n"
+"\n"
+" Pred výberom tejto možnosti sa prosím presvedčte, či veľkosť Mrkvošrot "
+"Windows\n"
+"oddielu môže byť ešte menšia ako je momentálne. Budete mať k dispozícii "
+"menej\n"
+"priestoru pre ukladanie vašich údajov alebo inštaláciu nových programov pod\n"
+"Vaším Microsoft Windows systémom.\n"
+"\n"
+" * \"%s\": ak si želáte vymazať všetky údaje a všetky oddiely\n"
+"prítomné na vašom pevnom disku a nahradiť ich vašim novým Mandriva Linux\n"
+"systémom, zvoľte si túto voľbu. Buďte opatrní pri tejto možnosti, pretože "
+"nebude\n"
+"žiadna možnosť zvrátiť vaše rozhodnutie keď ho potvrdíte.\n"
+"\n"
+" !! Ak si vyberiete túto možnosť, všetky údaje na vašom disku budú "
+"vymazané. !!\n"
+"\n"
+" * \"%s\": jednoducho bude všetko odstránené z pevného\n"
+"disku a bude potrebné prerozdeliť disk odznova. Všetky údaje na vašom disku\n"
+"budú stratené;\n"
+"\n"
+" !! Ak si vyberiete túto možnosť, všetky údaje na vašom disku budú "
+"stratené. !!\n"
+"\n"
+" * \"%s\": vyberte si túto možnosť ak chcete ručne rozdeľovať váš\n"
+"pevný disk. Buďte opatrní - je to veľmi mocná, ale nebezpečná voľba a "
+"môžete\n"
+"veľmi jednoducho prísť o všetky vaše údaje. Preto si ju nevyberajte bez "
+"toho\n"
+"aby ste skutočne vedeli čo robíte. Ak chcete vedieť bližšie ako používať "
+"nástroj\n"
+"DiskDrake, prečítajte si ``Menežovanie vašich oblastí'' v ``Používateľskej\n"
+"príručke''."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Použiť existujúci oddiel"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Vymazať celý disk"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Hotovo. Inštalácia je teraz kompletná a váš GNU/Linux systém je\n"
+"pripravený na používanie. Iba kliknite na tlačidlo \"%s\" pre reštart\n"
+"systému. Nezabudnite vybrať inštalačné médiá (CD-ROM alebo disketu\n"
+"Prvá vec, ktorú môžete vidieť po ukončení hardverových testov je\n"
+"menu zavádzača, ktorý vám dáva možnosť výberu aký operačný systém chcete\n"
+"spustiť.\n"
+"\n"
+"Stlačením tlačidla \"%s\" sa zobrazia dve ďalšie tlačidlá:\n"
+"\n"
+" * \"%s\": čím sa vytvorí disketa, pomocou ktorej môžete automaticky\n"
+"vykonávať celú inštaláciu bez potreby zásahu, čiže presne takú istú\n"
+"inštaláciu ako ste práve previedli.\n"
+"\n"
+" Všimnite si dve rôzne nastavenia po kliknutí na toto tlačidlo:\n"
+"\n"
+" * \"%s\". Toto je čiastočne automatizovaná inštalácia. Krok\n"
+"rozdeľovanie disku je jediná interaktívna časť.\n"
+"\n"
+" * \"%s\". Plne automatizovaná inštalácia: pevný disk je kompletne\n"
+"prepísaný, všetky údaje na ňom budú stratené.\n"
+"\n"
+" Táto možnosť je veľmi užitočná, ak inštalujete veľké množstvo podobných\n"
+"počítačov. Pozrite si sekciu venovanú automatickej inštalácii na našej web "
+"stránke.\n"
+"\n"
+" * \"%s\"(*): uloží výber balíkov tak, ako boli vybrané v tejto\n"
+"inštalácii. Ak chcete vykonať ďalšiu rovnakú inštaláciu, vložte túto\n"
+"disketu do mechaniky, pri spustení inštalácie stlačte klávesu [F1] a "
+"napíšte:\n"
+">>linux defcfg=\"floppy\" <<.\n"
+"\n"
+"(*) Je potrebné mať pripravenú FAT naformátovanú disketu (pre jej "
+"vytvorenie\n"
+"pod GNU/Linux systémom použite \n"
+"\"mformat a:\", alebo \"fdformat /dev/fd0\" nasledovaný\"mkfs.vfat\n"
+"/dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Vygenerovať auto-inštalačnú disketu"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Ak si zvolíte použitie niektorej existujúcej GNU/Linux partície mali by ste "
+"ju\n"
+"v niektorých prípadoch preformátovať a odstrániť údaje ktoré obsahuje. "
+"Vyberte\n"
+"partície ktoré si želáte preformátovať.\n"
+"\n"
+"Uvedomte si, že nie je nutné opätovne formátovať všetky existujúce oddiely.\n"
+"Určite musíte formátovať oddiely obsahujúce operačný systém (napríklad \"/"
+"\",\n"
+"\"/usr\" alebo \"/var\" ), nemusíte ale formátovať oddiely obsahujúce "
+"údaje, ktoré\n"
+"chcete zachovať (typicky \"/home\")\n"
+"\n"
+"Pri voľbe oddielov na formátovanie buďte opatrní. Po naformátovaní budú\n"
+"všetky údaje na zvolených oddieloch zmazané a nebude žiadna možnosť\n"
+"ako ich obnoviť\n"
+"\n"
+"Kliknite na \"%s\" ak ste pripravený formátovať vybrané oddiely.\n"
+"\n"
+"Kliknite na \"%s\" ak si chcete zvoliť iné oddiely pre inštaláciu vášho\n"
+"nového Mandriva Linux systému.\n"
+"\n"
+"Kliknite na \"%s\" ak si chcete vybrať oddiely, ktoré budú kontrolované\n"
+"na prítomnosť chybných blokov na disku."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Po nainštalovaní Mandriva Linux systému je pravdepodobné, že niektoré\n"
+"balíky ktoré sa nachádzali v distribúcii, nezodpovedajú ich aktuálnym\n"
+"verziám. Môžu v nich byť opravené chyby alebo bezpečnostné nedostatky.\n"
+"Aby ste mohli tieto opravy aplikovať, budete si ich teraz môcť stiahnuť\n"
+"z Internetu. Vyberte \"%s\" ak máte fungujúce pripojenie k Internetu, alebo\n"
+"\"%s\" ak chcete opravy aplikovať neskôr.\n"
+"\n"
+"Zvolením \"%s\" sa zobrazí zoznam miest z ktorých je možné získať opravy.\n"
+"Vyberte si vám najbližšie a zobrazí sa vám výber balíkov: prezrite si výber\n"
+"a kliknite na \"%s\" pre získanie a inštaláciu vybraných balíkov, alebo si "
+"vyberte\n"
+"\"%s\" pre zrušenie."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Na tomto mieste vám DrakX umožňuje nastaviť bezpečnostnú úroveň pre\n"
+"tento počítač. Ako pomôcku môžete použiť pravidlo, že čím dôležitejšie\n"
+"údaje váš systém obsahuje alebo ak bude pripojený do Internetu, tým vyššia\n"
+"úroveň by mala byť zvolená. Treba si uvedomiť, že so zvyšovaním "
+"bezpečnostnej\n"
+"úrovne sa znižuje pohodlie používania.\n"
+"\n"
+"Ak si neviete vybrať, ponechajte štandardné nastavenie.Budete ju však\n"
+"mať možnosť zmeniť pomocou programu drakcec, ktorý je súčasťou\n"
+"Kontrolného Centra Mandriva Linuxu\n"
+"\n"
+"Do políčka \"%s\" zadajte e-mailovú adresu osoby zodpovednej za\n"
+"bezpečnosť vášho PC. Na túto adresu budú zasielané\n"
+"bezpečnostné upozornenia. "
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Bezpečnostný administrátor"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Na tomto mieste je potrebné aby ste si vybrali oblasti, ktoré budú použité\n"
+"na inštaláciu Mandriva Linuxu. Ak už boli oddiely definované,\n"
+"napríklad pri predchádzajúcej inštalácii GNU/Linux-u alebo iným nástrojom\n"
+"pre správu oblastí, môžete použiť už existujúce oblasti. Inak musia byť\n"
+"oblasti teraz definované.\n"
+"\n"
+"Pre vytvorenie oddielu si najprv musíte vybrať pevný disk. To dosiahnete\n"
+"kliknutím na ``hda'' pre prvý IDE disk, ``hdb'' pre druhý, ``sda'' je prvý "
+"SCSI\n"
+"disk a podobne.\n"
+"\n"
+"Pri rozdeľovaní vybraného disku je možné použiť tieto možnosti:\n"
+"\n"
+" * \"%s\": táto voľba vymaže všetky oblasti na vybranom pevnom\n"
+"disku\n"
+"\n"
+" * \"%s\": táto voľba umožní automatické vytvorenie ext3\n"
+"a swap oblasti na voľnom mieste vášho disku\n"
+"\n"
+" * \"%s\": získate prístup k rozšíreným možnostiam:\n"
+"\n"
+" * \"%s\": uložiť tabuľku rozdelenia na disketu.\n"
+"Vhodné pre neskoršiu obnovu tabuľky, ak to bude potrebné. Je veľmi\n"
+"odporúčané aby ste absolvovali tento krok.\n"
+"\n"
+" * \"%s\": umožňuje obnoviť predtým uloženú tabuľku\n"
+"z diskety.\n"
+"\n"
+" * \"%s\": ak je vaša tabuľka rozdelenia disku zničená,\n"
+"môžete sa pokúsiť zachrániť ju použitím tejto možnosti. Buďte opatrní a "
+"pamätajte si, že\n"
+"sa to nemusí podariť.\n"
+"\n"
+" * \"%s\": zrušiť všetky zmeny a načítať znova pôvodnú tabuľku rozdelenia\n"
+"disku.\n"
+"\n"
+" * \"%s\": odznačením tejto možnosti prinútite používateľov k manuálnemu\n"
+"pripájaniu a odpájaniu vymeniteľných médií ako napríklad diskety alebo CD-"
+"ROM\n"
+"médiá.\n"
+"\n"
+" * \"%s\": použite toto nastavenie ak si želáte použiť sprievodcu pre "
+"rozdelenie\n"
+"Vášho disku. Táto možnosť je doporučená ak nemáte dobré znalosti o "
+"rozdeľovaní\n"
+"pevného disku.\n"
+"\n"
+" * \"%s\": použite túto možnosť pre zrušenie vašich zmien.\n"
+"\n"
+" * \"%s\": umožňuje uskutočniť ďalšie akcie na oblastiach (typ, voľby, "
+"formátovanie)\n"
+"pričom sú vypisované podrobnejšie informácie.\n"
+"\n"
+" * \"%s\": ak ste skončili s rozdeľovaním vášho pevného disku, táto voľba\n"
+"uloží vaše zmeny na disk.\n"
+"\n"
+"Ak ste definovali veľkosť partícií, môžete ešte donastaviť veľkosť týchto "
+"partícií\n"
+"pomocou šípiek na klávesnici.\n"
+"\n"
+"Poznámka: je možné dosiahnuť všetky voľby a nastavenia pomocou klávesnice. "
+"Výber\n"
+"oblastí za použitia [Tab] a [Hore/Dole] šípiek.\n"
+"\n"
+"Ak je oblasť vybraná, je možné použiť:\n"
+"\n"
+" * Ctrl-c pre vytvorenie novej oblasti (ak je vybraná prázdna oblasť)\n"
+"\n"
+" * Ctrl-d pre zrušenie oblasti\n"
+"\n"
+" * Ctrl-m pre nastavenie bodu pripojenia\n"
+"\n"
+"Pre získanie informácií o iných súborových systémoch, ktoré sú dostupné, "
+"prečítajte\n"
+"si ext2FS kapitolu z ``Referenčnej príručky''.\n"
+"\n"
+"Ak prevádzate inštaláciu na PPC hardvéri, budete zrejme chcieť vytvoriť malý "
+"HFS\n"
+"``bootstrap'' oddiel veľký aspoň 1MB, ktorý bude môcť používať yaboot\n"
+"zavádzač. Ak sa rozhodnete vytvoriť tento oddiel väčší, povedzme 50MB, môže\n"
+"to byť vhodné miesto pre uloženie jadra a obrazov ramdisku pre výnimočné\n"
+"situácie, ktoré môžu nastať."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Automatické pripájanie vymeniteľného média"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Prepnúť medzi normálnym/expertným režimom"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Bol nájdený viac ako jeden Microsoft oddiel na vašom pevnom disku.\n"
+"Vyberte si prosím jeden, ktorý chcete nastaviť pre inštaláciu vášho\n"
+"nového Mandriva Linux operačného systému.\n"
+"\n"
+"Všetky oddiely sú zobrazené nasledovne: \"Linux meno\", \"Windows meno\",\n"
+"\"Kapacita\".\n"
+"\n"
+"\"Linux meno\" sa skladá z: \"typ pevného disku\", \"jeho čísla\",\n"
+"\"čísla oddielu\" (napríklad, \"/dev/hda1\").\n"
+"\n"
+"\"Typ pevného disku\" je \"hd\" ak je váš disk IDE a ako \"sd\" v prípade,\n"
+"že to SCSI pevný disk.\n"
+"\n"
+"\"Číslo pevného disku\" je vždy písmeno za \"hd\" alebo \"sd\". Pri IDE\n"
+"diskoch:\n"
+"\n"
+" * \"a\" znamená \"master pevný disk na primárnom IDE radiči\";\n"
+"\n"
+" * \"b\" znamená \"slave pevný disk na primárnom IDE radiči\";\n"
+"\n"
+" * \"c\" znamená \"master pevný disk na sekundárnom IDE radiči\";\n"
+"\n"
+" * \"d\" znamená \"slave pevný disk na sekundárnom IDE radiči\";\n"
+"\n"
+"U SCSI diskov \"a\" znamená \"najnižšie SCSI ID\", \"b\" znamená\n"
+"\"druhé najnižšie SCSI ID\" a tak ďalej.\n"
+"\n"
+"\"Windows meno\" je písmenné označenie vášho pevného disku pod\n"
+"systémom Windows (prvý disk alebo oddiel sa volá \"C:\"."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": skontrolujte aktuálne nastavenie krajiny. Ak sa nenachádzate\n"
+"v tejto krajine, kliknite na tlačidlo \"%s\"a vyberte si inú. Ak nie je "
+"vaša\n"
+"krajina zozbrazená v tomto zozname, kliknite na tlačidlo \"%s\" pre\n"
+"získanie kompletného zoznamu."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Tento krok sa aktivuje iba vtedy, ak sú na vašom systéme nájdené staršie\n"
+"GNU/Linux oddiely.\n"
+"\n"
+"DrakX teraz potrebuje vedieť či si želáte vykonať novú inštaláciu alebo "
+"aktualizáciu\n"
+"existujúceho Mandriva Linux systému:\n"
+"\n"
+" * \"%s\": Pomocou tejto voľby môžete kompletne zrušiť váš predchádzajúci\n"
+"operačný systém. Ak si želáte zmeniť rozloženie oddielov na vašich diskoch "
+"alebo zmeniť\n"
+"súborový systém, mali by ste použiť túto voľbu. V závislosti od vášho "
+"predchádzajúceho\n"
+"rozdelenia oblastí je možné predísť prepísaniu niektorých už existujúcich "
+"údajov.\n"
+"\n"
+" * \"%s\": táto trieda inštalácie vám umožňuje aktualizovať balíky, ktoré\n"
+"sú momentálne nainštalované vo vašom Mandriva Linux systéme. Aktuálne\n"
+"rozdelenie oddielov a používateľské údaje nebudú prepísané. Mnohé ostatné "
+"kroky\n"
+"inštalácie ostanú dostupné, podobne ako pri štandardnej inštalácii.\n"
+"\n"
+"Použitie voľby ``Aktualizácia'' by malo fungovať správne pre systémy\n"
+"Mandriva Linux \"8.1\" a novšie. Vykonanie Aktualizácie pre staršie verzie "
+"ako\n"
+"\"8.1\" nie je odporúčané.\""
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"V závislosti na vybranom jazyku () DrakX automaticky vybral vhodný\n"
+"typ klávesnice. Je ale možné, že nechcete mať nastavenú klávesnicu,\n"
+"ktorá presne korešponduje s jazykom:\n"
+"napríklad, ak hovoríte po slovensky, nemusí to automaticky znamenať, že\n"
+"chcete mať nastavenú slovenskú klávesnicu a naopak, ak chcete mať\n"
+"nastavenú slovenskú klávesnicu, nemusí to znamenať že hovoríte po\n"
+"slovensky. V takomto prípade vám tento krok umožní vybrať si vami\n"
+"požadovaný typ klávesnice zo zoznamu.\n"
+"\n"
+"Kliknite na tlačidlo \"%s\" čo bude mať za následok výpis kompletného\n"
+"zoznamu podporovaných klávesníc.\n"
+"\n"
+"Ak si vyberiete klávesnicovú mapu, ktorá obsahuje ne-latinkové znaky,\n"
+"potom ďalší krok vám umožní vybrať si kombináciu kláves, pomocou\n"
+"ktorej si budete môcť prepínať medzi latin a ne-latin mapou."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Prvým korokom je výber preferovaného jazyka\n"
+"\n"
+"Výber preferovaného jazyka ovplyvňuje dokumentáciu, jazyk inštalačného "
+"programu\n"
+"a všetkých ostatných programov. V prvom kroku si vyberiete región, kde "
+"žijete,\n"
+"a potom jazyk, ktorým hovoríte.\n"
+"\n"
+"Tlačidlo \"%s\" umožňuje zvoliť )ďalšie jazyky, ktoré budú tiež\n"
+"nainštalované a môžete je použiť v systéme. Výberom ďalších jazykov "
+"nainštalujete\n"
+"súbory s aplikáciami a dokumentáciou špecifické pre tieto jazyky. Ak "
+"napríklad\n"
+"na počítači pracujú Španieli, vyberte angličtinu ako hlavnú\n"
+"a pod tlačidlom rozšírené zaškrtnite voľbu \"%s\".\n"
+"\n"
+"Podpora UTF-8 (unicode): Unicode je nové kódovanie znakov, ktoré obsahuje\n"
+"všetky známe jazyky. Plná podpora v GNU/Linuxe je stále vo vývoji.\n"
+"Z tohto dôvodu bude alebo nebude v systéme použitá podľa voľby používateľa:\n"
+"\n"
+" * Ak vyberiete jazyk s jasne daným kódovaním (latin1, Ruština, Japonština\n"
+"Čínština, Korejština, Thajština, Gréčtina, Turečtina, väčšina jazykov "
+"používajúcich kódovanie\n"
+"iso-8859-2), bude implicitne použité staré kódovanie;\n"
+"\n"
+" * Ostatné jazyky používajú implicitne Unicode.\n"
+" * Ak potrebujete dva alebo viac jazykov a tieto jazyky nepoužívajú "
+"rovnaké \n"
+"kódovanie, bude pre celý systém použité kódanie unicode;\n"
+"\n"
+" * Ak používateľ vyberie voľbu \"%s\", bude použité kódovanie unicode "
+"nezávisle\n"
+"na výberu jazykov pre celý systém.\n"
+"\n"
+"Pri výbere jazyka nie ste obmedzení iba na jeden ďalší. Môžete si ich vybrať "
+"viac alebo dokonca nainštalovať všetky vybraním voľby \"%s\".\n"
+"Podpora jazyka zahrnňuje inštaláciu lokalizácií programov, fontov, kontrolu "
+"pravopisu, atď. \n"
+"\n"
+"Zmenu rôznych jazykov inštalovaných v systéme možno vykonať pomocou príkazu\n"
+"\"localedrake\" spusteného ako používateľ \"root\". Spustenie pod\n"
+"bežným používateľom spôsobí zmenu nastavenia iba pre daného používateľa."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Španielsky"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Aplikácia DrakX zvyčajne zistí počet tlačidiel na vašej mysi. Ak nie, "
+"predpokladá,\n"
+"že máte dvojtlačidlovú myš a nastaví emuláciu pre tretie tlačidlo. \n"
+"Emulácia tretieho tlačidla sa vykonáva súčasným stlačením ľavého i pravého\n"
+"tlačidla. Aplikácia tiež dokáže rozpoznať, či sa jedná o myšPS/2, USB\n"
+"alebo sériovú.\n"
+"\n"
+"Ak máte trojtlačidlovú myš bez kolieska, môžete si vybrať typ myši \"%s\".\n"
+"Inštalačný program potom nataví emuláciu tak, že sa posun kolieskom "
+"simuluje\n"
+"stlačením prostredného tlačidla a posúvaním myši hore a dole.\n"
+"\n"
+"Ak chcete zadať iný typ myši, vyberte ju zo zoznamu.\n"
+"\n"
+"Tiež môžete vybrať položku \"%s\", ktorou zvolíte \"všeobecný\" typ myši,\n"
+"ktorý by mal pracovať správne s takmer kažou myšou.\n"
+"\n"
+"Ak vyberiete inú myš než tú, ktorá bola detegovaná, zobrazí sa testovacia\n"
+"obrazovka. Na nej otestujte tlačidlá i koliesko a overte, či je nastavenie\n"
+"správne. Ak myš nepracuje správne, stlačte medzerník a vyberte iný typ "
+"myši.\n"
+"\n"
+"Myši s kolieskom nie sú v niektorých prípadoch automaticky rozpoznané. "
+"Budete\n"
+"ju musieť vybrať zo zoznamu. Uistite sa, že vyberiete myš správneho typu\n"
+"portu, ku ktorému je pripojená. Potom, čo stlačíte tlačidlo \"%s\", \n"
+"zobrazí sa obrázok s myšou. Posunujte kolieskom, aby se správne aktivovalo; "
+"koliesko\n"
+"na obrazovcke by sa malo pohybovať. Potom overte tlačidlá a či sa myš "
+"pohybuje\n"
+"na obrazovke správne."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "s emuláciou kolieska"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Ktorákoľvek PS/2 a USB myš"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Prosím zvoľte správny port. Napríklad COM1 pod MS Windows sa v\n"
+"GNU/Linux nazýva ttyS0."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Toto je veľmi dôležité rozhodnutie zamerané na bezpečnosť vášho GNU/Linux\n"
+"systému: musíte zadať heslo pre používateľa \"root\"-a. Je to systémový "
+"administrátor\n"
+"a ako jediný má oprávnenie vykonávať aktualizácie, pridávať používateľov,\n"
+"meniť nastavenie celého systému a podobne. V skratke sa dá povedať, že \"root"
+"\"\n"
+"môže všetko! Toto je dôvod, prečo si musíte zvoliť heslo tak, aby ho nebolo\n"
+"jednoduché uhádnuť - DrakX vám to povie, ak je príliš jednoduché. Ako "
+"vidíte,\n"
+"môžete sa rozhodnúť nezadať žiadne heslo, ale chceli by sme vás pred tým\n"
+"varovať z jedného dôvodu: nemyslite si, že vaše ostatné nainštalované "
+"operačné\n"
+"systémy sú chránené pred omylmi len preto, že máte spustený operačný systém\n"
+"GNU/Linux. Pretože na \"root\"-a sa nevzťahujú žiadne obmedzenia a je mu\n"
+"umožnené dokonca vymazať všetky údaje na všetkých dostupných oblastiach,\n"
+"je veľmi dôležité aby nebolo príliš jednoduché sa stať \"root\"-om.\n"
+"\n"
+"Toto heslo by malo byť kombináciou alfanumerických znakov a byť aspoň 8\n"
+"znakov dlhé. Nikdy nezadávajte ako heslo \"root\", bolo by ho veľmi "
+"jednoduché\n"
+"uhádnuť a kompromitovať tak systém.\n"
+"\n"
+"V každom prípade, netvorte si heslo príliš dlhé alebo príliš komplikované, "
+"aby ste\n"
+"si ho dokázali zapamätať bez toho aby ste ho mali niekde napísané.\n"
+"\n"
+"Heslo sa počas jeho zadávania nezobrazuje na obrazovke. Budete vyzvaní k "
+"tomu\n"
+"aby ste ho zadali dva krát, aby sa predišlo problémom pri omyle alebo "
+"preklepe. Ak\n"
+"sa vám ale podarí zadať dva krát po sebe heslo s rovnakou chybou, bude toto "
+"``chybné''\n"
+"heslo nastavené!\n"
+"\n"
+"Ak chcete kontrolovať prístup k tomuto počítaču pomocou autorizačného "
+"servera\n"
+"kliknite na tlačidlo \"%s\".\n"
+"\n"
+"Ak vaša sieť používa LDAP, NIS alebo PDC vrámci Windows domény pre "
+"autentikáciu,\n"
+"vyberte si požadované ako \"%s\". Ak neviete na túto otázku odpovedať\n"
+"opýtajte sa vášho sieťového administrátora.\n"
+"\n"
+"Ak máte problém zapamätať si vaše heslo a váš počítač nie je pripojený k "
+"Internetu\n"
+"alebo ak dôverujete každému, kto má k počítaču prístup môžte si zvoliť "
+"nastavenie\n"
+"\"%s\"."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "autentifikácia"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Zavádzač operačného systému je program ktorý spustí počítač počas "
+"štartovania.\n"
+"Je zodpovedný za spustenie operačného systému. Obyčajne je inštalácia\n"
+"zavádzača plne automatická. DrakX zanalyzuje zavádzací sektor na disku\n"
+"a podľa nájdeného vykoná niektorú z nasledovných akcií.\n"
+"\n"
+"* ak je nájdený Windows zavádzač, bude nahradený GRUB/LILOm. Takto\n"
+"budete mať možnosť spustiť GNU/Linux alebo iný operačný systém.\n"
+"\n"
+" * ak bude nájdený GRUB alebo LILO zavádzač, bude nahradený novým.\n"
+"\n"
+"Ak sa DrakX nebnude vedieť rozhodnúť kam umiestniť zavádzací sektor opýta\n"
+"sa vás, kam si želáte ho umiestniť. Obyčajne je \"%s\" bezpečné miesto\n"
+"pre jeho umiestnenie.\n"
+"Výberom \"%s\" nebude nainštalovaný žiaden zavádzač. Túto voľbu použite iba\n"
+"ak naozaj viete čo robíte."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Teraz nastal čas výberu tlačového systému pre váš počítač. Iné operačné\n"
+"systémy vám poskytujú zvyčajne iba jediný, Mandriva Linux vám poskytuje "
+"dva.\n"
+"Kazdý z nich je vhodný pre iný typ konfigurácie.\n"
+"\n"
+" * \"%s\" - čo znamená ``tlačiť, neukladať do fronty'', je vhodný výber ak\n"
+"máte priamo pripojenú tlačiareň k vášmu počítaču a chcete sa vyhnúť\n"
+"problémom so zaseknutým papierom v tlačiarni a nechcete mať sieťovú "
+"tlačiareň.\n"
+"(\"%s\" môže fungovať aj v malom sieťovom prostredí). Je odporučené použiť\n"
+"\"pdq\" ak nemáte skúsenosti s GNU/Linux systémom.\n"
+"\n"
+" * \"%s\" - ``Common Unix Print System'' je vynikajúci výber pre tlačenie\n"
+"na vašu lokálnu tlačiareň ako aj na sieťovú tlačiareň a rovnako aj pri "
+"poskytovaní\n"
+"tlačiarne v sieti. Je jednoduchý a dokáže fungovať ako server tak aj klient "
+"pre\n"
+"starší tlačový systém \"lpd\", ktorý je kompatibilný so staršími operačnými\n"
+"systémami, ktoré stále môžu vyžadovať tlačové služby. Základné nastavenie\n"
+"je tak isto jednoduché ako v prípade \"pdq\". Ak potrebujete emulovať \"ldp"
+"\"\n"
+"server budete musieť spustiť \"cups-lpd\" démona. \"%s\" obsahuje grafické\n"
+"nástroje na tlačenie, pre výber tlačiarní alebo ich manažovanie.\n"
+"\n"
+"Ak neskôr budete chciet svoju voľbu zmeniť alebo budete chcieť odstrániť\n"
+"tlačový systém môžete tak spraviť za pomoci PrinterDrake z Mandriva Linux\n"
+"Kontrolného centra kliknutím na tlačidlo \"%s\"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Expert"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX sa najprv pokúsi vyhľadať IDE zariadenia vo vašom počítači. Je možné\n"
+"tiež vyhľadať PCI SCSI karty vo vašom systéme. Ak bude nájdená SCSI karta,\n"
+"DrakX automaticky nainštaluje adekvátny ovládač.\n"
+"\n"
+"Pretože detekcia hardvéru nemusí nájsť všetky zariadenia, DrakX môže\n"
+"zlyhať pri detekovaní pevného disku. Ak áno, budete musieť špecifikovať\n"
+"Váš hardvér ručne.\n"
+"\n"
+"Ak ste špecifikovali váš PCI SCSI radič ručne, DrakX sa vás opýta či chcete\n"
+"preň špecifikovať nastavenia. DrakX bude potrebovať vyskúšať aj\n"
+"špecifické nastavenia potrebné pre inicializáciu hardvéru. Obvykle DrakX\n"
+"dokáže vykonať tento krok bez problémov.\n"
+"\n"
+"Ak DrakX nebude môcť vyskúšať nastavenia pre automatické rozpoznanie\n"
+"parametrov, ktoré sú požadované, budete musieť zadať tieto nastavenia pre "
+"ovádač ručne."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": ak bola nájdená vo vašom systéme zvuková karta, bude tu\n"
+"zobrazená. Ak si myslíte, že to nie je karta, ktorá sa nachádza vo vašom\n"
+"systéme, môžete kliknúť na tlačidlo a vybrať si iný ovládač."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Na ukážku vám DrakX zobrazí súhrn rôznych informácií o vašom systéme.\n"
+"V závislosti od nainštalovaného hardvéru môžete vidieť niektoré alebo "
+"všetky\n"
+"nasledovné položky. Každá položka je tvorená konfiguračnou položkou pre\n"
+"konfiguráciu spolu s krátkym popisom aktuálnej konfigurácie.\n"
+"Kliknutím na tlačidlo \"%s\" ju môžte zmeniť.\n"
+"\n"
+" * \"%s\": skontrolujte aktuálne nastavenie klávesovej mapy a zmeňte\n"
+"ju ak je to potrebné.\n"
+"\n"
+" * \"%s\": skontrolujte aktuálne nastavenie krajiny. Ak sa\n"
+"nenachádzate v tejto krajine, kliknite na tlačidlo \"%s\" a zvoľte\n"
+"si inú. Ak vaša krajina nie je zobrazená v zozname, kliknite na tlačidlo\n"
+"\"%s\" pre získanie kompletného zoznamu krajín.\n"
+"\n"
+" * \"%s\": DrakX sa štandardne snaží určiť správnu časovú zónu\n"
+"v závislosti na tom akú krajinu ste si zvolili. Môžete kliknúť na tlačidlo\n"
+"\"%s\" ak nie je nastavená správne.\n"
+"\n"
+" * \"%s\": skontrolujte aktuálne nastavenie myši a kliknite na\n"
+"tlačidlo ak potrebujete vykonať zmenu.\n"
+"\n"
+" * \"%s\": kliknutím na tlačidlo \"%s\" sa spustí sprievodca nastavením\n"
+"tlačiarne. Prezrite si zodpovedajúcu kapitolu v ``Úvodnej príručke'' pre "
+"ďalšie\n"
+"informácie ohľadom inštalácie a konfigurácie tlačiarne. Rozhranie, pomocou\n"
+"ktorého nastavenie prebieha, je podobné ako počas inštalácie.\n"
+"\n"
+" * \"%s\": ak je vo vašom počítači nájdená zvuková karta,\n"
+"bude zobrazená na tomto mieste. Ak nie je zobrazená karta tou, ktorú máte\n"
+"nainštalovanú v počítači, kliknite na tlačidlo a vyberte si iný\n"
+"ovládač.\n"
+"\n"
+" * \"%s\": ak je vo vašom počítači nájdená TV karta, bude na tomto\n"
+"mieste zobrazená. Ak máte TV kartu a nebola nájdená, kliknite na tlačidlo\n"
+"\"%s\" a pokúste sa ju nastaviť ručne.\n"
+"\n"
+" * \"%s\": môžete kliknúť na \"%s\" pre zmenu nastavení v súvislosti\n"
+"s kartou ak máte pocit, že nastavenie nie je správne.\n"
+"\n"
+" * \"%s\": štandardne DrakX nastaví vaše grafické rozhranie v rozlíšení\n"
+"\"800x600\" alebo \"1024x768. Ak vám to nevyhovuje, kliknite na tlačidlo\n"
+"\"%s\" pre úpravu tohto nastavenia.\n"
+"\n"
+" * \"%s\": ak si teraz želáte nastaviť vaše Internetové pripojenie\n"
+"alebo prístup do lokálnej siete. Prezrite si tlačenú dokumentáciu alebo "
+"použite\n"
+"Kontrolné centrum Mandriva Linux ak už bude inštalácia ukončená aby ste "
+"mali\n"
+"prístup k dokumentácii.\n"
+" * \"%s\": vám umožní nastaviť HTTP alebo FTP proxy ak je počítač\n"
+"umiestnený za proxy serverom.\n"
+"\n"
+" * \"%s\": táto položka vám umožňuje zmeniť bezpečnostnú\n"
+"úroveň ak bola nastavená predchádzajúcom kroku.\n"
+"\n"
+" * \"%s\": ak plánujete pripojiť váš počítač k Internetu, je\n"
+"dobrým nápadom zabezpečiť ho pred prienikmi nastavením firewallu.\n"
+"Prezrite si zodpovedajúcu kapitolu v ``Úvodnej príručke'' pre detaily o tom\n"
+"ako nastaviť firewall.\n"
+"\n"
+" * \"%s\": ak si želáte zmeniť konfiguráciu zavádzača, kliknite na toto\n"
+"tlačidlo. Táto možnosť je rezervovaná pre skúsených používateľov. Prezrite\n"
+"si tlačenú dokumentáciu alebo internú dokumentáciu vrámci Kontrolného\n"
+"centra Mandriva Linux.\n"
+"\n"
+" * \"%s\": máte možnosť definitívne nastaviť služby, ktoré budú\n"
+"spúšťané na vašom počítači. Ak plánujete používať tento počítač ako\n"
+"server, je dobrý nápad prezrieť si tieto nastavenia."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN karta"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Grafické rozhranie"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Vyberte si pevný disk, ktorý chcete vymazať aby ste mohli vytvoriť\n"
+"nový oddiel pre Mandriva Linux. Buďte opatrní, všetky údaje ktoré sa\n"
+"na disku nachádzajú budú odstránené a nebude možné ich obnoviť!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Kliknite na \"%s\" ak si želáte vymazať všetky údaje a oblasti ktoré\n"
+"sa nachádzajú na vašom pevnom disku. Buďte opatrní, po kliknutí na\n"
+"\"%s\" nebudete mať už možnosť obnoviť údaje na oddieloch, ktoré boli\n"
+"predtým na vašom disku, vrátane Windows údajov.\n"
+"\n"
+"Kliknite na \"%s\" pre zrušenie tejto operácie bez straty údajov\n"
+"a oddielov, ktoré sa momentálne nachádzajú na vašom pevnom disku."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Ďalej ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Späť"
+
diff --git a/perl-install/install/help/po/sl.po b/perl-install/install/help/po/sl.po
new file mode 100644
index 000000000..132477e67
--- /dev/null
+++ b/perl-install/install/help/po/sl.po
@@ -0,0 +1,1914 @@
+# translation of DrakX.po to Slovenian
+# translation of DrakX-sl.po to Slovenian
+# translation of DrakX-sl.po to Slovenščina
+# Copyright (C) 2004, 2005 Free Software Foundation, Inc.
+# Matjaž Kaše <matjaz.kase@g-kabel.si>, 2004.
+# Aljoša Ločičnik <aljosa.locicnik@mandrakeprinas.org>, 2005.
+# Gregor Pirnaver <gregor.pirnaver@sdm-si.org>, 2002,2004,2005.
+# Jure Repinc <jlp@holodeck1.com>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-sl\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-09-20 07:29+0200\n"
+"Last-Translator: Gregor Pirnaver <gregor.pirnaver@sdm-si.org>\n"
+"Language-Team: <sl@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.9.1\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
+"n%100==4 ? 2 : 3);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Preden nadaljujete, pozorno preberite pogoje licenčne pogodbe,\n"
+"ki se nanaša na celotno distribucijo Mandriva Linux. Če se strinjate z "
+"vsemi\n"
+"pogoji licenčne pogodbe, označite okence »%s«. Če se s pogoji pogodbe\n"
+"ne strinjate, pa označite okence »%s« in vaš računalnik se bo ponovno zagnal."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux je večuporabniški sistem, kar pomeni, da ima lahko vsak\n"
+"uporabnik svoje nastavitve, svoje datoteke itd. Več o tem si lahko\n"
+" preberete v dokumentaciji. Razen sistemskega, »root« upravitelja,\n"
+"uporabniki, ki jih boste dodali, ne bodo imeli dovoljenj, ki so potrebna za\n"
+"spreminjanje tistih datotek in nastavitev, ki vplivajo na celoten sistem.\n"
+"Tako je sistem zaščiten pred nenamernimi ali zlonamernimi spremembami.\n"
+"Dodati morate vsaj enega navadnega uporabnika. Tako boste ustvarili\n"
+"svoj uporabniški račun, ki ga boste uporabljali za vsakdanje delo z\n"
+"računalnikom. Čeprav se je v sistem kot sistemski upravitelj zelo lahko\n"
+"prijaviti, vam to odsvetujemo, saj že najmanjša napaka lahko povzroči, da\n"
+"sistem preneha delovati. Če pa napravite resno napako kot navaden "
+"uporabnik,\n"
+"je najhuje, kar se vam lahko zgodi, da izbrišete kakšne podatke,\n"
+"ne morete pa vplivati na celoten sistem.\n"
+"\n"
+"V prvo vnosno polje lahko, če to želite, vpišete svoje pravo ime.\n"
+"Vpis pravega imena seveda ni obvezen; lahko vpišete poljubno ime.\n"
+"Prvo besedo, ki jo boste vpisali, bo program DrakX uporabil kot uporabniško "
+"ime\n"
+"in jo prepisal v polje »%s« kot ime, s katerim se boste prijavljali\n"
+"v sistem. Če želite, lahko uporabniško ime spremenite. V naslednje polje "
+"vnesite\n"
+"geslo. S stališča varnosti geslo navadnega uporabnika ni tako pomembno, kot "
+"geslo\n"
+"upravitelja sistema, zato to polje lahko pustite prazno. Vendar vam "
+"priporočamo,\n"
+"da geslo določite in tako zaščitite svoje datoteke in podatke.\n"
+"\n"
+"Ko klilnete »%s«, lahko dodate tudi druge navadne uporabnike.\n"
+"Posebene uporabniške račune lahko ustvarite za svoje prijatelje\n"
+"in za člane svoje družine.\n"
+"\n"
+"Ko boste dokončali z dodajanjem uporabniških računov, kliknite »%s«.\n"
+"\n"
+"S klikom na »%s« lahko spremenite »lupino« (shell) za posameznega\n"
+"uporabnika. Privzeta lupina je »bash«.\n"
+"\n"
+"Ko boste končali z dodajanjem uporabnikov, boste imeli možnost,\n"
+" da izberete uporabnika, za katerega želite, da se ob zagonu samodejno\n"
+"prijavi v sistem. Če želite uporabiti to možnost, izberite uporabnika in\n"
+"namizno okolje ter kliknite »%s«. Če te možnosti ne želite izbrati,\n"
+"odstranite oznako iz okenca »%s«."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Želite uporabiti to možnost?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Na seznamu so razdelki za Linux, ki jih je čarovnik zaznal na vašem\n"
+"trdem disku. Lahko obdržite nastavitve, ki jih je izbral čarovnik, saj so\n"
+"primerne za večino običajnih namestitev. Če boste te nastavitve "
+"spreminjali,\n"
+"morate določiti vsaj korenski razdelek (»/«). Razdelek naj ne bo premajhen,\n"
+"da boste lahko namestili dovolj programja. Če želite svoje podatke shraniti\n"
+" na poseben razdelek, ustvarite tudi domači razdelek »/home«.\n"
+"(To je mogoče samo, če imate na disku več razdelkov za Linux.)\n"
+"\n"
+"Vsak razdelek je predstavljen na naslednji način: »Ime«, »Zmogljivost«.\n"
+"\n"
+"»Ime« sestavljajo: »Vrsta trdega diska«, »Številka trdega diska«,\n"
+"»Številka razdelka« (n.pr. »hda1«.\n"
+"\n"
+"»Vrsta trdega diska« je »hd«, če gre za IDE disk in »sd«, če gre za\n"
+"SCSI disk\n"
+"\n"
+"»Številka trdega diska« je vedno črka, ki sledi oznaki »hd« ali »sd«.\n"
+"Za IDE trdi disk:\n"
+" * »a« pomeni »glavni trdi disk na primarnem IDE vodilu«\n"
+"\n"
+" * »b« pomeni »suženjski trdi disk na primarnem IDE vodilu«\n"
+"\n"
+" * »c« pomeni »glavni trdi disk na sekundarnem IDE vodilu«\n"
+"\n"
+" * »d« pomeni »suženjski trdi disk na sekundarnem IDE vodilu«\n"
+"\n"
+"Pri SCSI trdih diskih pomeni »a« »najnižji SCSI ID«, »b«\n"
+"»drugi najnižji SCSI ID« itd."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Namestitev za Mandriva Linux je shranjena na več zgoščenkah.\n"
+"Če je izbrani paket shranjen na drugi zgoščeniki, bo DrakX izvrgel\n"
+"trenutno in vas pozval, da v pogon vstavite pravo zgoščenko.\n"
+"če prave zgoščenke nimate, kliknite »%s« in željeni paketi ne\n"
+"bodo nameščeni."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Za Mandriva Linux je dostopnih na tisoče različnih programskih paketov.\n"
+"Da bi bilo upravljanje s paketi bolj preprosto, so razvrščeni v skupine\n"
+"vsebinsko povezanih paketov.\n"
+"\n"
+"Skupine paketov so razvrščene v štiri kategorije, ki ustrezajo različnim \n"
+"načinom uporabe\n"
+"računalnika. Pakete iz različnih kategorij lahko poljubno dodajate ali \n"
+"odstranjujete,\n"
+"tako da namestitev kategorije »Delovna postaja« lahko vsebuje tudi pakete\n"
+" iz kategorije\n"
+"»Razvoj«.\n"
+"\n"
+" * »%s« : Če nameravate računalnik uporabljati predvsem kot delovno \n"
+"postajo,\n"
+"izberite eno ali več skupin iz te kategorije.\n"
+"\n"
+" * »%s« : Če boste računalnik uporabljali za programiranje, izberite\n"
+" ustrezne\n"
+"skupine paketov iz te kategorije.\n"
+"\n"
+" Če boste izbrali skupino »LSB«, bo namesto privzetega jedra iz\n"
+"serije »2.6« nameščeno jedro iz serije »2.4«.\n"
+"\n"
+" * »%s« : Če bo vaš računalnik služil za strežnik, izberite storitve, ki \n"
+"jih želite namestiti.\n"
+"\n"
+" * »%s« : Tukaj lahko izberete svoje željeno grafično okolje. Če želite,\n"
+" da bo grafični\n"
+"vmesnik dostopen, morate izbrati vsaj eno grafično okolje.\n"
+"\n"
+"Če premaknete miškin kazalec na ime skupine, se bo prikazalo kratko \n"
+"pojasnilo\n"
+"o tej skupini. Če med običajno namestitvijo (ne pa tudi med "
+"posodobitvijo!) \n"
+"izločite\n"
+"vse skupine paketov, se bo odprlo pogovorno okno s predlogi za najmanjšo\n"
+"možno namestitev:\n"
+" * »%s« : Namesti najmanjše število paketov, ki še omogoča uporabo \n"
+"grafičnega namizja.\n"
+" * »%s« : Namesti osnovni sistem in osnovna orodja s pripadajočo \n"
+"dokumentacijo.\n"
+"To je primerna namestitev za postavitev strežnika.\n"
+"\n"
+" * »%s« : Namesti res najmanjše mogoče število paketov, ki so potrebni za \n"
+"delujoč\n"
+"GNU/Linux sistem. Pri tej namestitvi boste kot vmesnik lahko uporabljali \n"
+"samo\n"
+"ukazno vrstico. Celotna velikost te namestitve znaša 65 MB.\n"
+"\n"
+"Če želite imeti popoln nadzor nad izbiro paketov, ki bodo nameščeni, \n"
+"označite\n"
+"okence »%s«. \n"
+"\n"
+"Če ste za vrsto namestitve izbrali »%s«, lahko izločite vse skupine. Tako \n"
+"ne bo\n"
+"na novo nameščen noben paket. Ta način je primeren za nadgrajevanje\n"
+"ali za popravljanje namestitve."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Posodobitev "
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Z osnovno dokumentacijo"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Zares minimalna namestitev"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Če ste določili posamično izbiro paketov,\n"
+"bodo vsi paketi prikazani v drevesnem pregledu in \n"
+"razvrščeni v skupine in podskupine.\n"
+"Izberete lahko namestitev cele skupine, podskupine\n"
+"ali posamezne pakete.\n"
+"\n"
+"Ko izberete posamezen paket, se v levem oknu prikaže\n"
+"njegov opis.\n"
+"\n"
+"!! Če izberete paket ali skupino paketov, ki vsebuje strežnik,\n"
+"boste morali namestitev takšnega paketa na izrecno vprašanje\n"
+"potrditi. Mandriva Linux namreč kot privzeto vključi vse\n"
+" nameščene storitve ob zagonu sistema. Čeprav ob izdaji\n"
+"te različice Mandriva Linuxa ni bilo znanih težav v zvezi z varnostjo,\n"
+"je mogoče, da so bile odkrite varnostne luknje kasneje. Če za \n"
+"določeno storitev ne veste, kaj je njena naloga, kliknite »%s« S klikom\n"
+"na »%s«bodo nameščene naštete storitve, sistem pa jih bo samodejno\n"
+"vključil ob vsakem zagonu.!!\n"
+"\n"
+"Če izberete »%s«, boste onemogočili opozorilno okno, ki se prikaže\n"
+"vsakokrat, ko program za nameščanje samodejno izbere paket za zadovoljitev\n"
+"odvisnosti. Nekateri paketi so med seboj povezani, tako da namestitev\n"
+"enega zahteva tudi namestitev drugih paketov. Program za nameščanje "
+"samodejno\n"
+"določi, katere med seboj odvisne pakete je potrebno namestiti,\n"
+"da bo namestitev uspešna.\n"
+"\n"
+"Drobna ikona z disketo na dnu seznama vam omogoča, da naložite\n"
+"seznam paketov, ki je bil oblikovan ob prejšnji namestitvi. To je koristno\n"
+"zlasti v primeru, da želite na več računalnikih izvesti enako namestitev\n"
+"Če kliknete na to ikono, vas bo program za nameščanje pozval, da v pogon "
+"vstavite\n"
+"disketo, ki ste jo ustvarili ob koncu neke druge namestitve.\n"
+"Oglejte si drugi namig zadnjega koraka o tem, kako ustvariti takšno disketo"
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Samodejne odvisnosti"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"»%s«: S klikom na »%s« lahko zaženete čarovnika za nastavljanje "
+"tiskalnikov.\n"
+"V dokumentaciji lahko preberete več o priključitvi in nastavljanju "
+"tiskalnikov.\n"
+"Prikaz nastavljanja tiskalnikov v dokumentaciji je podoben prikazu na "
+"zaslonu\n"
+"med nastavljanjem."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Izberite storitve, ki naj se vključijo ob zagonu računalnika.\n"
+"\n"
+"Pazljivo preglejte vse dostopne storitve in izločite tiste, ki jih ob "
+"zagonu\n"
+"ne potrebujete.\n"
+"\n"
+"Ko izberete posamezno storitev, se prikaže okno s kratkim pojasnilom.\n"
+"Če niste prepričani, kakšno nalogo opravljajo posamezne storitve, bo\n"
+"varneje, če ohranite privzeto nastavitev.\n"
+"\n"
+"!! V primeru, da nameravate svoj računalnik uporabljati kot strežnik,\n"
+"verjetno nočete, da bi se ob zagonu vključila katera od storitev,\n"
+"ki jih ne potrebujete. Mnoge storitve so namreč lahko nevarne,\n"
+"če so omogočene na strežniku. Vsekakor omogočite samo tiste storitve,\n"
+"ki jih resnično potrebujete!!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux uporablja za nastavitev časa GMT (Greenwich Mean Time), ki ga \n"
+"lahko prevede v krajevni čas glede na časovni pas, ki ga izberete. Če je\n"
+"čas na vaši matični plošči nastavljen na krajevni čas, lahko to izključite\n"
+" z odstranitvijo oznake »%s«. GNU/Linux bo tako zaznal, da sta ura matične\n"
+"plošče in sistemska ura nastavljeni na isti časovni pas. To je koristno "
+"posebej\n"
+"v primeru, da imate nameščen še kakšen operacijski sistem , na primer "
+"Windows\n"
+"\n"
+"Če omogočite »%s«, bo nastavitev sistemske ure potekala samodejno preko\n"
+"internetne povezave z oddaljenim strežnikom. Da bi ta storitev delovala, "
+"morate\n"
+"imeti vzpostavljeno internetno povezavo. Najbolje je , če izberete strežnik "
+"v vaši\n"
+"bližini. Obenem boste namestili tudi časovni strežnik, s pomočjo katerega "
+"lahko\n"
+"uporabljajo tudi drugi računalniki v krajevnem omrežju."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Samodejno usklajevanje časa"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Grafična kartica\n"
+"\n"
+" Namestilnik navadno samodejno zazna in nastavi grafično\n"
+"kartico, ki je priključena v računalniku. Če temu ni tako, lahko\n"
+"s seznama izberete pravo kartico.\n"
+"\n"
+" Če vašo grafično kartico podpirajo različni strežniki, takšni s 3D\n"
+"pospeševanjem in takšni brez, izberite strežnik, ki najbolj ustreza\n"
+"vašim potrebam."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (okenski sistem X) je srce grafičnega vmesnika za GNU/Linux\n"
+"na katerega se zanašajo vsa v Mandriva Linux vključena grafična\n"
+"okolja. (KDE, GNOME, AfterStep, WindowMaker ...)\n"
+"\n"
+"Prikazal se vam bo seznam različnih vrednosti, ki jih lahko spreminjate,\n"
+"da dosežete najboljši grafični prikaz.\n"
+"\n"
+"Grafična kartica\n"
+"\n"
+" Program za nameščanje navadno samodejno zazna in nastavi grafično\n"
+"kartico, ki je priključena v računalniku. Če temu ni tako, lahko\n"
+"s seznama izberete pravo kartico.\n"
+"\n"
+" Če vašo grafično kartico podpirajo različni strežniki, takšni s 3D\n"
+"pospeševanjem in takšni brez, izberite strežnik, ki najbolj ustreza\n"
+"vašim potrebam.\n"
+"\n"
+"\n"
+"\n"
+"Zaslon\n"
+" Program za nameščanje navadno samodejno zazna in nastavi zaslon,\n"
+"ki je priključen na računalnik. Če temu ni tako, lahko\n"
+"s seznama izberete pravi zaslon.\n"
+"\n"
+"\n"
+"\n"
+"Ločljivost\n"
+"...Izberite ustrezno ločljivost in barvno globino za vašo strojno opremo.\n"
+"Izberite vrednosti, ki vam najbolj ustrezajo. Te vrednosti boste lahko\n"
+"spreminjali tudi po namestitvi. Primer namestitve je prikazan na sliki\n"
+"zaslona.\n"
+"\n"
+"\n"
+"\n"
+"Preizkus\n"
+"\n"
+" Ali se bo ta vnos pojavil, je odvisno od vaše strojne opreme.\n"
+"\n"
+" Sistem bo skušal odpreti grafični zaslon z željeno ločljivostjo.\n"
+"Če boste med preizkusom videli sporočilo in odgovorili »%s«,\n"
+"bo DrakX nadaljeval k naslednjemu koraku. Če se sporočilo ne bo\n"
+"prikazalo, potem samodejna nastavitev ni pravilna.\n"
+"Po izteku 12 sekund se boste vrnili k nastavitvam. Spreminjajte nastavitve,\n"
+"dokler na zaslonu ne dobite pravilnega prikaza.\n"
+"\n"
+"\n"
+"\n"
+"Izbire\n"
+"\n"
+"Izberite, ali želite, da se grafični vmesnik vključi ob zagonu računalnika.\n"
+"Če tega ne želite, če bo vaš računalnik deloval kot strežnik\n"
+"ali če vam ni uspelo nastaviti zaslona, označite »%s«."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Zaslon\n"
+"\n"
+"...Namestilnik običajno samodejno zazna in nastavi zaslon, ki je\n"
+"priključen na računalnik. Če je samodejna nastavitev napačna, lahko\n"
+"s seznama izberete pravi zaslon."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Ločljivost\n"
+"\n"
+"...Izberite ločljivost in barvno globino, ki ustreza vaši strojni opremi.\n"
+"Te nastavitve boste lahko spreminjali tudi po končani namestitvi.\n"
+"Primer izbrane nastavitve je prikazan na sliki zaslona."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Če je za vašo grafično kartico na voljo več strežnikov, takšnih, ki\n"
+"omogočajo 3D pospeševaje in takšnih, ki tega ne omogočajo,\n"
+"izberite strežnik, ki ustreza vašim potrebam."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Izbire\n"
+"\n"
+" Izberite, ali želite, da se grafični vmesnik vključi ob zagonu "
+"računalnika.\n"
+"Če tega ne želite, če bo vaš računalnik deloval kot strežnik\n"
+"ali če vam ni uspelo nastaviti zaslona, označite »%s«."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Določite, na katerem delu trdega diska naj bo nameščen operacijski\n"
+"sistem Mandriva Linux. Če je trdi disk prazen ali če na njem nameščeni\n"
+"operacijski sistem zaseda celoten prostor, boste morali disk razdeliti na\n"
+"posamezne razdelke. Razdeljevanje trdega diska izvede logično\n"
+"razdelitev, ki zagotovi potrebni prostor za namestitev operacijskega\n"
+"sistema Mandriva Linux.\n"
+"\n"
+"Trdega diska po izvršenem razdeljevanju običajno ni mogoče povrniti v "
+"prejšnje stanje.\n"
+"Če imate na disku že nameščen operacijski sitem,lahko med razdeljevanjem\n"
+"trdega diska pride do izgube podatkov. Če ste neizkušeni, je razdeljevanje\n"
+"diska lahko zelo stresno opravilo. Na srečo pa je v DrakX vključen "
+"čarovnik,\n"
+"ki razdeljevanje zelo olajša. Vzemite si čas in pred nadaljevanjem pozorno\n"
+"preberite nadaljevanje tega sestavka.\n"
+"\n"
+"Na voljo je več možnosti, ki so odvisne od nastavitev vašega diska.\n"
+"\n"
+" * »%s«: To možnost izberite, če imate prazen disk. Čarovnik bo disk "
+"razdelil\n"
+"samodejno in razdeljevanje bo s tem končano.\n"
+"\n"
+" * »%s«: Čarovnik je na vašem trem disku zaznal enega ali več razdelkov\n"
+"za Linux. Če želite za namestitev uporabiti zaznane razdelke, izberite to "
+"možnost.\n"
+"Čarovnik vas bo v nadaljevanj pozval, da določite priklopne točke "
+"posameznim\n"
+"razdelkom. Običajno je najbolje obdržati priklopne točke, ki jih predlaga "
+"čarovnik.\n"
+"\n"
+" * »%s«: Če imate na disku nameščen Windows, tako da zasedajo\n"
+"celoten disk, bo potrebno ustvariti prazen prostor za namestitev GNU/"
+"Linuxa.\n"
+"To lahko storite tako, da izbrišete razdelek z Windows ali tako, da "
+"razdelku\n"
+"FAT ali NTFS z nameščenim Windows spremenite velikost. Pri tem podatkov na\n"
+"razdelku ne boste izgubili, če najprej v Windows defragmentirate disk.\n"
+"Vsekakor pa priporočamo, da pred nadaljevanjem napravite varnostno\n"
+"kopijo podatkov. Če želite uporabljati oba operacijska sistema, Mandriva "
+"Linux\n"
+"in Windows, vam priporočamo, da izberete to možnost.\n"
+"\n"
+" Če se odločite za to možnost, morate vedeti, da bo po končanem postopku\n"
+"razdelek z Windows manjši in imeli boste manj prostora za shranjevanje "
+"podatkov ali\n"
+" nameščanje novih programov v Windows.\n"
+"\n"
+" * »%s«: Če želite izbrisati vse obstoječe razdelke z vsemi podatki in jih \n"
+"nadomestiti s sistemom Mandriva Linux, izberite to možnost.\n"
+"Bodite previdni, ko boste potrdili to izbiro, prejšnjega stanja ne bo več "
+"mogoče vzpostaviti.\n"
+"\n"
+" !!Če izberete to možnost, boste z diska izbrisali vse podatke.!!\n"
+"\n"
+" * »%s«:Ta možnost se pojavi, če celotni disk zaseda Windows.\n"
+" S tem boste s trdega diska preprosto izbrisali vse, kar je njem\n"
+"in pričeli z novim razdeljevanjem diska.\n"
+"\n"
+" !!Če izberete to možnost, boste z diska izbrisali vse podatke.!!\n"
+"\n"
+" * »%s«: Če želite disk razdeliti ročno, izberite to možnost. Pazite, \n"
+"to je sicer močno, vendar nevarno orodje, saj lahko z njim kaj hitro "
+"zbrišete\n"
+"podatke na disku. To možnost zares priporočamo samo tistim, ki že imajo\n"
+"nekaj izkušenj z razdeljevanjem diskov. Obsežnejša navodila za delo\n"
+" z orodjem DiskDrake boste našli v dokumentaciji."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Uporabi obstoječi razdelek"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Izbriši celoten disk"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Namestitev je končana in vaš novi GNU/Linux je pripravljen za uporabo\n"
+"Kliknite »%s« in sistem se bo ponovno zagnal. Ne pozabite odstraniti\n"
+"vira namestitve (zgoščenke ali diskete) Neposredno po zagonu bo na\n"
+"zaslonu prikazan meni zagonskega nalagalnika, s pomočjo katerega\n"
+"lahko izberete, kateri operacijski sistem naj se zažene.\n"
+"\n"
+"Gumb »%s« vam prikaže dodatne gumbe:\n"
+"\n"
+" * »%s«: za izdelavo namestitvene diskete, s pomočjo katere boste lahko\n"
+"podobno namestitev, kot ste jo pravkar oblikovali, izvedli povsem\n"
+"samodejno.\n"
+"\n"
+" Če kliknete na ta gumb, boste imeli na voljo dve nadaljnji možnosti:\n"
+" * »%s«: Delno samodejna namestitev. Ročno boste lahko izvedli\n"
+"samo razdeljevanje diska.\n"
+" * »%s«: Povsem samodejna namestitev. Z diska bodo izbrisani vsi\n"
+"podatki.\n"
+" To je zelo uporabno za namestitev sistema na več podobnih\n"
+"računalnikov. Več o tem najdete na spletni strani Mandriva.\n"
+"\n"
+" * »%s«(*):S tem shranite seznam paketov, ki so bili izbrani med to\n"
+"namestitvijo. Če želite izvesti drugo namestitev z enakim naborom paketov,\n"
+"vstavite disketo v pogon in pričnite z namestitvijo. Pritisnite tipko\n"
+"[F1] in vpišite »linux defcfg=\"floppy\"«.\n"
+"(*)potrebujete disketo, formatirano v FAT datotečnem sistemu.\n"
+"V GNU/Linux sistemu disketo formatirate z ukazom\n"
+"»mformat a:«, ali »fdformat /dev/fd0«, ki mu sledi ukaz\n"
+"»mkfs.vfat /dev/fd0«."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Ustvari disketo za samodejno namestitev"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Če želite na novo formatirati obstoječe razdelke, da bi z njih zbrisali\n"
+"podatke, izberite tudi vse takšne razdelke.\n"
+"\n"
+"Ni potrebno, da ponovno formatirate vse obstoječe razdelke.\n"
+"Formatirati morate razdelke, na katere boste namestili operacijski\n"
+"sistem (npr. razdelke »/«, »/usr«, »/var«), ni pa vam treba formatirati\n"
+"razdelkov, ki vsebujejo podatke, ki bi jih radi obdržali (npr. »/home«)\n"
+"\n"
+"Pri izbiri razdelkov ravnajte skrbno! Po formatiranju bodo vsi podatki "
+"izgubljeni!\n"
+"\n"
+"Kliknite na »%s«,ko boste pripravljeni na razdeljevanje.\n"
+"\n"
+"Kliknite na »%s«, če želite za namestitev sistema Mandriva Linux\n"
+"izbrati drug razdelek.\n"
+"\n"
+"Kliknite na »%s«, če želite določiti razdelke, na katerih naj sistem\n"
+"preveri poškodovane bloke."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Verjetno so bili od njegove izdaje pa do časa, ko nameščate\n"
+"Mandriva Linux na svoj računalnik, nekateri paketi popravljeni\n"
+"ali nadgrajeni z varnostnimi popravki ali z odstranitvijo hroščev.\n"
+"Te popravke lahko prenesete z interneta. Če imate vzpostavljeno\n"
+"internetno povezavo, označite »%s«, če pa želite namestiti\n"
+"popravke s paketi kasneje, označite »%s«.\n"
+"\n"
+"Če izberete »%s«, se bo prikazalo okno s seznamom spletnih\n"
+"mest, od koder lahko prenesete pakete. Izberite mesto, ki vam\n"
+"je najbliže, pritisnite »%s«, da boste pakete prenesli in namestili\n"
+"Če tega ne želite, pritisnite »%s«."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Izberite stopnjo varnosti za svoj računalnik. Če boste na računalniku\n"
+"hranili pomembne podatke ali če imate neposredno povezavo z\n"
+"internetom, nastavite višjo stopnjo varnosti. Uporaba sistema, ki ima\n"
+"nastavljeno višjo stopnjo varnosti je običajno zahtevnejša.\n"
+"\n"
+"Če se ne morete odločiti, kako bi nastavili stopnjo varnosti,\n"
+"pustite privzete nastavitve. Stopnjo varnosti lahko spremenite\n"
+"tudi kasneje s pomočjo orodja »draksec« v Nadzornem središču.\n"
+"\n"
+"V polje »%s« lahko vnesete e-poštni naslov uporabnika, ki bo odgovoren za\n"
+"varnost sistema. Vsa varnostna obvestila bodo poslana\n"
+"temu uporabniku."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Upravitelj varnostnih nastavitev"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Izbrati morate razdelke, na katere boste namestitli sistem\n"
+"Mandriva Linux. Če ste razdelke že izbrali ob kakšni predhodni\n"
+"namestitvi GNU/Linux sistema s kakim drugim orodjem za\n"
+"razdeljevanje, lahko uporabite obstoječe razdelke, sicer pa morate\n"
+"razdelke trdega diska za namestitev določiti sedaj.\n"
+"\n"
+"Najprej izberite trdi disk, ki ga želite razdeliti. Če želite izbrati\n"
+"disk na prvem IDE vodilu, kliknite na »hda«, disk na drugem\n"
+"IDE vodilu ima oznako »hdb«, na prvem SCSI vodilu »sda« itd.\n"
+"\n"
+"Za razdelitev izbranega diska so vam na voljo naslednje možnosti:\n"
+"\n"
+" * »%s«: brisanje vseh razdelkov na izbranem disku\n"
+"\n"
+" * »%s«: samodejno ustvarjanje ext3 in izmenjalnih (swap) razdelkov\n"
+"na prostem delu vašega trdega diska.\n"
+"\n"
+"»%s«: dostop do dodatnih možnosti:\n"
+"\n"
+" * »%s«: shranjevanje razdelitvene tabele na disketo, kar vam omogoči,\n"
+"da razdelitveno tabelo obnovite, če je to potrebno.\n"
+"Priporočamo vam, da ta korak izvedete!\n"
+"\n"
+" * »%s«: obnovitev razdelitvene tabele z diskete.\n"
+"\n"
+" * »%s«: popravilo poškodovane razdelitvene tabele, ki pa ne\n"
+"učinkuje v vsakem primeru.\n"
+"\n"
+" * »%s«: odstranitev vseh sprememb in obnovitev prvotne razdelitvene\n"
+"tabele trdega diska.\n"
+"\n"
+" * »%s«: če odstranite označitev te možnosti, bo moral uporabnik\n"
+"ročno priklapljati odstranljive medije, kot sta disketni in CD pogon.\n"
+"\n"
+" * »%s«: To možnost izberite, če želite za razdeljevanje diska\n"
+"uporabiti čarovnika. To vam priporočamo, če razdeljevanja diska\n"
+"ne obvladate v celoti.\n"
+"\n"
+" * »%s«: preklic vseh sprememb.\n"
+"\n"
+" * »%s«: dodatne možnosti nastavitev razdelkov (vrsta datotečnega\n"
+"sistema, formatiranje, nastavitve) in prikaz obširnejših informacij o\n"
+"trdem disku.\n"
+"\n"
+" * »%s«: shranjevanje sprememb na trdi disk po končanem\n"
+"razdeljevanju.\n"
+"\n"
+"Za določanje velikosti razdelka lahko uporabite tipke s puščicami\n"
+"[Levo/Desno] na tipkovnici.\n"
+"\n"
+"Vsako možnost lahko dosežete z uporabo tipkovnice. Med razdelki\n"
+"se premikate s tipko [TAB] ali s puščicami [Gor/Dol].\n"
+"\n"
+"Ko izberete razdelek, lahko uporabite naslednje ukaze:\n"
+"\n"
+" * Ctrl-c za ustvarjanje novega razdelka\n"
+"\n"
+" * Ctrl-d za brisanje razdelka\n"
+"\n"
+" * Ctrl-m za nastavitev priklopne točke\n"
+"\n"
+"Vse nadaljnje informacije o datotečnih sistemih boste našli v\n"
+"dokumentaciji.\n"
+"\n"
+"Če Mandriva Linux nameščate na PPC računalnik, morate ustvariti\n"
+"zagonski »bootstrap« razdelek z velikostjo najmanj 1MB, ki ga\n"
+"uporablja zagonski nalagalnik yaboot. Če ta razdelek nekoliko\n"
+"povečate in mu namenite vsaj 50MB, boste nanj lahko shranjevali\n"
+"potrebne datoteke za zasilni zagon sistema."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Samodejno priklapljanje odstranljivih medijev"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Preklapljanje med normalnim in izvedenskim načinom"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Na vašem trdem disku je več kot en razdelek za Windows.\n"
+"Izberite razdelek, ki ga želite zmanjšati, da bi pridobili prostor za\n"
+"namestitev sistema Mandriva Linux.\n"
+"\n"
+"Na seznamu so razdelki s podatki: »Ime v Linuxu«, »Ime v Windows«\n"
+"»Velikost« \n"
+"»Ime v Linuxu« vsebuje: »vrsto trdega diska«, »številko trdega diska«\n"
+"»številko razdelka« (n.pr. »hda1«)\n"
+"\n"
+"»Vrsta trdega diska« je »hd«, če gre za IDE disk in »sd«, če gre za \n"
+"SCSI disk.\n"
+"\n"
+"»Številka trdega diska« je vedno črka, ki sledi oznaki »hd« oziroma\n"
+"»sd«. Pri IDE diskih:\n"
+"\n"
+" * »a« pomeni »glavni trdi disk na primarnem IDE vodilu«\n"
+"\n"
+" * »b« pomeni »podrejeni trdi disk na primarnem IDE vodilu«\n"
+"\n"
+" * »c« pomeni »glavni trdi diski na sekundarnem IDE vodilu«\n"
+"\n"
+" * »d« pomeni »podrejeni trdi diski na sekundarnem IDE vodilu«\n"
+"\n"
+"Pri SCSI trdih diskih pomeni »a« »najnižji SCSI ID«, »b«\n"
+"»drugi najnižji SCSI ID« itd.\n"
+"\n"
+"»Ime v Windows« je črka, s katero je disk označen v Windows.\n"
+"Prvi disk ali oziroma razdelek je označen s »C:«."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"»%s«:Preverite, katero državo ste izbrali. Če v resnici niste v izbrani "
+"državi,\n"
+"kliknite »%s« in izberite drugo. Če država, v kateri ste, ni prikazana,\n"
+"kliknite »%s« za prikaz celotnega seznama držav."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Ta korak se zažene samo v primeru, da na vašem računalniku že obstaja\n"
+"razdelek za GNU/Linux.\n"
+"\n"
+"Lahko izbirate med novo namestitvijo in med posodobitvijo obstoječega\n"
+"sistema Mandriva Linux.\n"
+"\n"
+" * »%s«: S tem boste obstoječi sistem povsem odstranili. Če želite\n"
+"spremeniti razdelitev trdega diska ali datotečni sistem, izberite to\n"
+"možnost. V nekaterih primerih, odvisno od tega, kako je razdeljen\n"
+"disk, lahko ohranite nekatere obstoječe podatke.\n"
+"\n"
+" * »%s«: Ta način namestitve dopušča posodobitev obstoječih\n"
+"paketov. S tem nista ogrožena niti razdelitev diska niti shranjeni\n"
+"podatki. Večina preostalih korakov namestitve bo dosegljiva,\n"
+"podobno kot pri običajni novi namestitvi.\n"
+"\n"
+"Možnost »Posodobitev« deluje, če imate nameščeno različico\n"
+"sistema Mandriva Linux »8.1« ali novejšo. Posodobitve starejših\n"
+"različic od »8.1« ne priporočamo."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"DrakX bo samodejno izbral razpored tipkovnice glede na jezik, ki ste\n"
+"ga izbrali. Če vam to ne ustreza, zamenjajte razpored tipkovnice.\n"
+"\n"
+"Morda vam ustreza, da uporabljate drugačen razpored tipkovnice,\n"
+"kot pripada izbranemu jeziku. Če sicer govorite angleško,\n"
+"živite pa v Sloveniji, vam bo najbrž ustrezal slovenski razpored.\n"
+"V tem koraku namestitve lahko izberete razpored tipkovnice, ki vam\n"
+"najbolj ustreza.\n"
+"\n"
+"Kliknite na gumb »%s« in pojavil se bo seznam vseh tipkovnic, ki jih sistem "
+"podpira.\n"
+"\n"
+"Če ste izbrali tipkovnico, ki temelji na nelatinični abecedi,\n"
+"lahko v naslednjem koraku določite ukaz, ki vam bo omogočil\n"
+"preklapljanje med latiničnim in nelatiničnim razporedom tipkovnice."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Najprej izberite jezik, ki ga želite uporabljati.\n"
+"\n"
+"Izbira jezika bo vplivala na jezik namestitve, dokumentacije in \n"
+"celotnega sistema. Najprej izberite celino oziroma regijo, kjer\n"
+"živite in nato še jezik, ki ga govorite.\n"
+"\n"
+"Če kliknete na gumb »%s«, boste lahko izbrali dodatne jezike,\n"
+"ki jih želite namestiti. Če bodo uporabljali vaš sistem uporabniki,\n"
+" ki govorijo različne jezike, lahko kot privzeti jezik namestite\n"
+"slovenščino, tako da jo izberete v drevesnem pogledu. Kot dodatni\n"
+"jezik pa lahko namestite na primer angleščino, tako da izberete »%s« v "
+"naprednem načinu.\n"
+"\n"
+"Podpora Utf-8 (unicode) Unicode je kodiranje znakov, ki poizkuša\n"
+"zagotoviti pravilen prikaz pisav vseh poznanih jezikov. Ker je unicode\n"
+" za GNU/Linux še v razvoju, lahko določite, ali naj ga sistem uporablja\n"
+"ali ne.\n"
+"\n"
+" * Če izberete jezike s kodiranjem latin1, kot so ruščina, japonščina,\n"
+"grščina in večina jezikov ki uporabljajo nabor znakov iso-8859-2, bo\n"
+"kot privzeto kodiranje nastavljeno latin1.\n"
+"\n"
+" * Ostali jeziki bodo kot privzeto kodiranje uporabljali unicode.\n"
+"\n"
+" * če izberete dva ali več jezikov, ki uporabljajo različna kodiranja,\n"
+"bo unicode uporabljal celoten sistem.\n"
+"\n"
+" * Unicode lahko določite kot privzeto kodiranje tako, da izberete »%s«\n"
+"ne glede na to, kateri jezik ste izbrali.\n"
+"\n"
+"Število dodatnih jezikov ni omejeno, lahko jih izberete več.\n"
+"z izbiro »%s« pa lahko izberete vse jezike. Če boste izbrali to možnost\n"
+"bodo nameščeni tudi paketi s pisavami, prevodi, črkovalniki itd.\n"
+"za vse izbrane jezike.\n"
+"\n"
+"Za preklapljanje med različnimi jeziki poženete ukaz »localedrake«\n"
+"kot »root«. V tem primeru bo zamenjava jezika veljala za celoten sistem.\n"
+"Če pa isti ukaz poženete kot navaden uporabnik, bo sprememba veljala\n"
+"le za trenutnega uporabnika."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Angleščina"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"DrakX običajno nima težav z zaznavanjem števila tipk vaše miške.\n"
+"V primeru, da pa se težave pojavijo, upošteva predpostavko, da ima\n"
+"miška dve tipki, in nastavi emulacijo tretje tipke. Tretjo tipko\n"
+"miške z dvema tipkama v tem primeru nadomešča istočasni pritisk na\n"
+"obe tipki. DrakX samodejno zazna tudi, na kateri vmesnik je vaša\n"
+"miška priključena. (PS/2, serijska vrata, USB)\n"
+"\n"
+"Če imate miško s tremi tipkami, vendar brez kolesca, izberite miško\n"
+"»%s«. DrakX jo bo nastavil tako,\n"
+"da boste kolesce lahko simulirali s pritiskom na srednjo\n"
+"tipko ob istočasnem premikanju miške v smeri gor - dol.\n"
+"\n"
+"Če želite nastaviti drugačno vrsto miške, lahko to storite tako, da\n"
+"jo izberete s seznama.\n"
+"Z možnostjo »%s«, boste izbrali generično miško, ki deluje skoraj\n"
+"z vsemi vrstami mišk.\n"
+"\n"
+"Če izberete miško, različno od privzete, se bo prikazalo preizkusno\n"
+"okno. Preizkusite delovanje vseh tipk in njihovih funkcij ter se "
+"prepričajte,\n"
+"da delujejo pravilno. Če miška ne deluje pravilno, pritisnite preslednico,\n"
+"da se boste vrnili v okno za izbiro miške.\n"
+"\n"
+"Občasno se zgodi, da miške s koleščkom program za nameščanje ne zazna\n"
+"samodejno. Prepričajte se, da je ročno izbrana miška priključena\n"
+"na ista vrata, kot je v resnici priključena vaša miška. Ko boste izbrali "
+"miško\n"
+"in pritisnili na gumb »%s«, se bo na zaslonu prikazala slika miške.\n"
+"Zavrtite miškino kolesce, da se prepričate, ali deluje pravilno.\n"
+"Preizkusite še delovanje tipk in ali miškin kazalec sledi gibanju\n"
+"miške."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "z emulacijo kolesca"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Univerzalna | Katera koli PS/2 ali USB miška"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Izberite prava vrata. Vrata, ki so v Windows označena s »COM1«, imajo v\n"
+"GNU/Linuxu oznako »ttyS0«."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"S stališča varnosti je to eden od najpomembnejših korakov namestitve\n"
+"GNU/Linux operacijskega sistema: določitev gesla korenskega, »root«\n"
+"uporabnika. Korenski uporabnik je upravitelj sistema in je pooblaščen\n"
+"za spreminjanje sistemskih nastavitev, dodajanje uporabnikov, nameščanje\n"
+"programov, skratka, »root« lahko stori karkoli! Zato določite geslo, ki ga "
+"ni\n"
+"lahko uganiti. DrakX vas bo opozoril, če je izbrano geslo prelahko.\n"
+"Lahko se tudi odločite, da gesla sploh ne določite, vendar vam to zares\n"
+"odsvetujemo. GNU/Linux je v enaki meri občutljiv za napake operaterja,\n"
+"kot katerikoli drug operacijski sistem, zato se lahko zgodi, da nehote\n"
+"napravite kakšno nepopravljivo napako. Prav zato pa je pomembno,\n"
+"da postati »root« ni preveč enostavno.\n"
+"\n"
+"Geslo naj bo sestavljeno iz črk in številk, vsebuje pa naj vsaj osem\n"
+"znakov. Gesla uporabnika root si nikoli ne zapišite!\n"
+"\n"
+"Nasvet: geslo naj ne bo predolgo ali preveč zapleteno. Izberite\n"
+"geslo, ki si ga boste lahko zapomnili!\n"
+"\n"
+"Medtem, ko geslo vpisujete, ga ni mogoče videti. Da bi se izognili\n"
+"napakam pri tipkanju, ga morate vpisati dvakrat.\n"
+"\n"
+"Če želite, da bi dostop do računalnika nadzirala storitev za overjanje,\n"
+"kliknite na gumb »%s«.\n"
+"\n"
+"Če vaše omrežje uporablja storitev za overjanje domene LDAP,\n"
+"NIS ali Windows domain authentication, izberite ustrezno storitev\n"
+"za »%s«. Če ne veste, katero morate izbrati, vprašajte omrežnega\n"
+"operaterja.\n"
+"\n"
+"Če si gesla težko zapomnite, če vaš računalnik ne bo povezan\n"
+"z internetom in če v celoti zaupate vsem, ki bodo uporabljali\n"
+"vaš računalnik, lahko izberete »%s«."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "Overjanje"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"LILO in GRUB sta zagonska nalagalnika za GNU/Linux.\n"
+"Zagonski nalagalnik je programček, ki ga računalnik zažene \n"
+"ob zagonu. Poskrbi za zagon celotnega sistema\n"
+"Običajno je ta del namestitve povsem samodejen. DrakX analizira zagonski\n"
+"sektor diska in določi ustrezne nastavitve\n"
+"\n"
+" * Če odkrije zagonski sektor za Windows, ga nadomesti\n"
+"z LILO ali GRUB zagonskim sektorjem. Tako boste lahko naložili\n"
+"GRUB, LILO ali drug na računalnik nameščen sistem.\n"
+"\n"
+" * Če odkrije zagonski sektor GRUB ali LILO, ga nadomesti z novim.\n"
+"\n"
+"Če Drakx ne more tega določiti samodejno, vas bo vprašal,\n"
+"kje naj namesti zagonski nalagalnik. Običajno je najbolj varno\n"
+"mesto »%s«. Če izberete »%s«, zagonski nalagalnik ne bo nameščen\n"
+"To možnost izberite samo, če zares veste, kaj delate. "
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Izberite sistem za tiskanje. Drugi operacijski sistemi navadno nudijo\n"
+"en sistem, Mandriva Linux pa vam daje na izbiro dva.\n"
+"Od obeh sistemov je vsak primeren za svojo vrsto namestitve.\n"
+"\n"
+" * »%s«--je kratica za »print, do not queue« (tiskaj, ne vnesi v čakalno "
+"vrsto).\n"
+"Ta sistem izberite, če imate s tiskalnikom neposredno povezavo, če želite\n"
+"imeti možnost zaustavitve tiskalnika ob napakah in nimate omrežnega\n"
+"tiskalnika. (»%s« je uporaben le za enostavna omrežna opravila in\n"
+"je za uporabo v omrežjih nekoliko počasen.) Uporabo »pdq« vam\n"
+"priporočamo, če je to vaša prva izkušnja s sistemom GNU/Linux.\n"
+"\n"
+" * »%s« - »Common Unix Printing System« je izvrstna izbira tako za\n"
+"tiskanje na vašem krajevnem tiskalniku, kot za tiskanje kjerkoli na svetu.\n"
+"Je enostaven za nastavljanje in lahko služi kot strežnik ali kot uporabnik\n"
+"v starodavnem »lpd« tiskalniškem sistemu, tako da je združljiv s starejšimi\n"
+"operacijskimi sistemi, ki še potrebujejo tiskalniške storitve. Kljub temu, "
+"da\n"
+"je zelo močan sistem, je za nastavljanje skoraj tako enostaven,\n"
+"kot »pdq«.\n"
+"Če potrebujete emulacijo lpd strežnika, vključite možnost »cups-lpd«.\n"
+"»%s« vsebuje grafične nastavitve za izbiro možnosti tiskanja in za\n"
+"nastavljanje tiskalnika.\n"
+"\n"
+"Če kasneje ugotovite, da vam nastavitve, ki ste jih izbrali, ne ustrezajo,\n"
+"jih lahko spremenite z orodjem PrinterDrake v nadzornem središču, tako\n"
+"da kliknete gumb »%s«."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Napredno"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX bo najprej zaznal vse naprave, ki so v vašem računalniku\n"
+"priključene na IDE vodila in vse PCI SCSI kartice. Če bo zaznal\n"
+"eno ali več PCI SCSI kartic, bo zanje namestil ustrezne gonilnike.\n"
+"\n"
+"Zaznavanje strojne opreme ni povsem zanesljivo. Če DrakX katere\n"
+"od naprav ne bo zaznal, jo boste morali dodati ročno.\n"
+"\n"
+"Če ste morali ročno dodati PCI SCSI kartico, vas bo DrakX povprašal,\n"
+"če jo želite tudi nastaviti ročno. Dovolite, da DrakX preizkusi možnosti "
+"in \n"
+"nastavi vrednosti, ki so potrebne za inicializacijo kartice. V večini\n"
+"primerov DrakX pri tem nima težav.\n"
+"\n"
+"Če DrakX kartice ne uspe nastaviti samodejno, boste morali gonilnik\n"
+"za kartico nastaviti ročno."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"»%s«: Če je sistem zaznal zvočno kartico, je prikazana\n"
+"na tem mestu. Če je prikazana drugačna kartica, kot je\n"
+"priključena v računalniku, kliknite na gumb in izberite\n"
+"drug gonilnik."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"DrakX bo prikazal pregled informacij, ki jih je zbral o vašem sistemu.\n"
+" Vrsta in število prikazanih vnosov sta odvisna od strojne opreme, ki je \n"
+"priključena v vašem računalniku. Vsak vnos vsebuje ime naprave ali\n"
+"storitve ter kratek pregled njenih trenutnih nastavitev. Če želite "
+"nastavitve\n"
+"spreminjati, kliknite na ustrezen gumb »%s«.\n"
+"\n"
+" * »%s«: Preverite nastavitev razporeda tipkovnice in jo popravite,\n"
+"če je potrebno.\n"
+"\n"
+" * »%s«: Preverite izbrano državo. Če se ne nahajate v izbrani državi,\n"
+"kliknite na gumb »%s« in izberite pravo.Če prava država ni navedena,\n"
+"kliknite gumb »%s« za popoln seznam držav.\n"
+"\n"
+" * »%s«: DrakX samodejno kot privzeti časovni pas nastavi pas,\n"
+"v katerem je izbrana država. Za spremembo časovnega pasu kliknite\n"
+"»%s«.\n"
+"\n"
+" * »%s«: Preverite nastavitve miške in če je to potrebno, jih popravite\n"
+"s klikom na gumb.\n"
+"\n"
+" * »%s«: Če kliknete na gumb »%s«, boste zagnali čarovnika za\n"
+"nastavljanje tiskalnika. V dokumentaciji lahko preberete več o priključitvi\n"
+"in nastavljanju tiskalnikov.\n"
+"Prikaz nastavljanja tiskalnikov v dokumentaciji je podoben prikazu na "
+"zaslonu\n"
+"med nastavljanjem.\n"
+"\n"
+" * »%s«: Če je sistem zaznal zvočno kartico, je navedena na tem mestu.\n"
+"Če mislite, da navedena kartica ni ista, kot je dejansko priključena v\n"
+"vašem računalniku, kliknite na gumb in izberite drug gonilnik.\n"
+"\n"
+" * »%s«: Če imate TV kartico, bodo tu prikazani podatki o njeni nastavitvi.\n"
+"Če TV kartico imate, pa je sistem ni zaznal, kliknite »%s« in jo poizkusite\n"
+" nastaviti ročno\n"
+"\n"
+" * »%s«: Če menite, da so nastavitve kartice napačne, kliknite »%s«\n"
+"in nastavitve popravite ročno.\n"
+"\n"
+" * »%s«: Privzeta nastavitev ločljivosti grafičnega vmesnika je\n"
+"»800x600« ali »1024x768«. Če vam privzeta nastavitev ne ustreza,\n"
+"jo spremenite tako, da kliknete na »%s«.\n"
+"\n"
+" * »%s«: Nastavljanje omrežja in dostopa do interneta.\n"
+"\n"
+" * »%s«: Nastavljanje posredniškega strežnika.\n"
+"\n"
+" * »%s«: Nastavljanje ali spreminjanje ravni varnosti.\n"
+"\n"
+" * »%s«: Če nameravate svoj računalnik povezati z internetom, je\n"
+"priporočljivo, da ga zavarujete s požarnim zidom.\n"
+"\n"
+" * »%s«: Na ta gumb kliknite, če želite spremeniti nastavitve zagonskega\n"
+"nalagalnika. To priporočamo samo izkušenim uporabnikom!.\n"
+"\n"
+" * »%s«: Tu lahko določite, katere storitve naj tečejo na vašem "
+"računalniku.\n"
+"Če boste računalnik uporabljali kot strežnik, vam priporočamo, da\n"
+"pregledate in prilagodite te nastavitve."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN kartica"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Grafični vmesnik"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Izberite trdi disk, ki ga želite izbrisati, da bi dobili prostor za "
+"razdelek\n"
+"za Mandriva Linux.\n"
+"Vsi podatki na izbranem disku bodo izbrisani in jih ne bo mogoče\n"
+"obnoviti!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Če želite izbrisati vse razdelke na tem disku in vse podatke na njih,\n"
+"kliknite na »%s« Pazite, po tem, ko boste kliknili »%s«, razdelkov\n"
+"ali podatkov ne bo mogoče obnoviti.\n"
+"\n"
+"Kliknite »%s«, če razdelkov in podatkov na tem disku ne želite\n"
+"izbrisati."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Naprej ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Nazaj"
+
diff --git a/perl-install/install/help/po/sq.po b/perl-install/install/help/po/sq.po
new file mode 100644
index 000000000..96dca30d1
--- /dev/null
+++ b/perl-install/install/help/po/sq.po
@@ -0,0 +1,1931 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# Naim Daka <naim70@freesurf.ch>, 2002, 2003.
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX for MDK 9.2\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2004-09-15 13:33+0200\n"
+"Last-Translator: Naim Daka <naim70@freesurf.ch>\n"
+"Language-Team: Albanian <LL@li.org>\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"
+
+#: ../help.pm:14
+#, fuzzy, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Para se të vazhdoni më tutje, ju duhet ti lexoni termet dhe kushtet për\n"
+"përdorimin e licencës. Kjo mbulon tërë shpërndarjen e Mandriva Linux,\n"
+"nëse ju pajtoheni me këto kushte, klikoni mbi mbi kopsën \"%s\".\n"
+"Nëse ju nuk pajtoheni atëher thjeshtë ndaleni komjuterin tuaj."
+
+#: ../help.pm:20
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux është një sistem multi-përdorues, që d.m.th. në shumicën e "
+"rasteve\n"
+"secili përdorues mund të posedoj pëlqime të ndryshme për skedaret e tyre,\n"
+"etj. Për më shumë infomacione, konsultoni ``Doracakun Nisës'' për të ditur\n"
+"më shumë mbi sistemin e multi përdoruesve.\n"
+"Përkundarzi në \"root\", që është administrator, përdoruesit e shtuar në "
+"këtë\n"
+"vend, do të kenë leje për qeverisje vetëm në skedaret e tyre. Përdoruesi\n"
+"administrator duhet të krijoj një konto normale të një përdoruesi të "
+"rregullt\n"
+"për nevojat tuaja -- kjo konto do të përdoret gjdo ditë.\n"
+"Pa marrë pasysh se a do të jetë r lehtë lidhja e administratorit \"root\"\n"
+"për të verpruar gjdo gjë që është e mundur, dhe mund të jet tejet e "
+"rrezikshme!\n"
+"Një gabim i vogël mund të blokoj tërë sistemin tuaj, dm.m.th. nuk do të\n"
+"niset siç duhet. Nëse ju bëni një gabim serioz atëher sikur përdorues "
+"normal\n"
+"e tëra që mund të bëni është të zhdukni disa informacione dhe nuk mund të\n"
+"shkaktoni dëme tjera kudo qoftë.\n"
+"\n"
+"Në fillim duhet të futni emrin e vërtet të personit. Njashtu, ju mund të\n"
+"shkruani çfarë të doni. DrakX do ta pranoj fjalën e parë të futur dhe do ta\n"
+"dërgojë tek \"%s\". Emër i cili do të përdoret për tu lidhur në sistem.\n"
+"Ju mund ta ndryshoni. Tani duhet të futni parullën. Kjo nuk është aq "
+"vështirë\n"
+"është vetëm parulla e administratorit \"root\", mirëpo nuk është një arësye\n"
+"të shkruhet sikur 123456. Mbasë të tjerash, kjo mund ti vendos skedaret "
+"tuaja\n"
+"në rrezik.\n"
+"\n"
+"Nëse klikoni mbi \"%s\", do të keni mundësinë për të shtuar përdorues\n"
+"të tjerë. Krijoni përdorues të ndryshëm për çdo personë me mundësi\n"
+"për ta përdorur kompjuterin. Mbasi që të gjithë përdoruesit përcaktohen\n"
+"klikoni mbi \"%s\".\n"
+"\n"
+"Nëse klikoni mbi \"%s\", ju mund ta zgjedhni një \"shell\" vetëm\n"
+"për atë përdorues (bash është shell-i me marrëveshje).\n"
+"\n"
+"Mbasi të përfundoni me shtuarjen e përdoruesve, do të keni mundësinë të\n"
+"zgjedhni një përdorues që të lidhet automatikisht kur kompjuteri juaj niset\n"
+"nga fillimi. Nëse ju interson ky sistem në të ardhmën (dhe nuk kujdeseni\n"
+"shumë për sigurinë lokale), zgjedheni përdoruesin e caktuar dhe dritaren\n"
+"administruese, dhe klikoni mbi \"%s\". Nëse kjo nuk ju interson në të\n"
+"ardhmën, atëherë çzgjedheni kutinë \"%s\"."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "A dëshironi ta përdorni këtë veçori?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Lista e lartë shënuar identifikon ndrajet Linux të zbuluara në\n"
+"sistemin tuaj. Ju mund ti pranoni zgjedhjet e propzuara nga asistenti\n"
+"i cili është i mirë se ardhur në shumicën e rasteve gjatë instalim.\n"
+"Nëse ju e bëni ndonji ndryshim, ju duhet të posedoni më së paku një ndarje\n"
+"root (\"/\"). Mos zgjidhni ndarje shumë të vogla sepse nuk do të keni\n"
+"mundësi të instaloni programe të mjaftueshme. Nëse dëshironi ti mbani\n"
+"të dhënat tuaja në një ndarje tjetër nga ndarje primare root, atëherë\n"
+"ju duhet të krijoni një ndarje \"/home\" (ky manupulim është i mundshëm\n"
+"nëse posedoni më së paku një ndarje Linux për ta konfiguruar).\n"
+"\n"
+"Secila ndarje është e listuar në kë mënyrë: \"Emri\", \"Kapaciteti\".\n"
+"\n"
+"\"Emri\" është i strukturuar simbas: \"tipi i diskut të fort\", \"numri i "
+"diskut të fort\", \"numri i ndrajes\" (për shembull, \"hda1\").\n"
+"\n"
+"\"Tipi i diskut të fort\" nëse është disk i fort \"hd\" është disk i fort\n"
+"IDE dhe nëse është disk i fort \"sd\" është disk i fort SCSI.\n"
+"\n"
+"\"Numri diskut të fort\" është gjithnji i shënuar mbasë \"hd\" ose \"sd\".\n"
+"Për disqet e forta IDE:\n"
+"\n"
+" * \"a\" do të thotë \"disku i fort master në kontrolluesin primar IDE\";\n"
+"\n"
+" * \"b\" do të thotë \"disku i fort sklavë në kontrolluesin primar IDE\";\n"
+"\n"
+" * \"c\" do të thotë \"disku i fort master në kontrolluesin sekondar IDE\";\n"
+"\n"
+" * \"d\" do të thotë \"disku i fort esklavë në kontrolluesin sekondar IDE"
+"\".\n"
+"\n"
+"Për disqet SCSI, \"a\" do të thotë \"më i vogli SCSI ID\", dhe \"b\" do të "
+"thotë \"i dyti dhe më i vogli me radhë SCSI ID\", etj."
+
+#: ../help.pm:88
+#, fuzzy, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Pakot e nevojshme për Instalimin e Mandriva Linux janë të shpërndara në "
+"shumë\n"
+"CDROM-e. Fatëmirësisht, DrakX i njef të gjitha lokacinet e pakove në CDROM-"
+"e.\n"
+"Ai do ta qetë jashtë CD-në që gjindet në lexuesin e CD-ve, dhe juve do të "
+"ju\n"
+"pyes, që ta futni CD-në tjetër të nevojshme në lexues."
+
+#: ../help.pm:95
+#, fuzzy, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Tani është momenti që ti zgjedhni pakot që duhet të instalohen në sistemin\n"
+"tuaj. Duhet ta dini se Mandriva Linux përmban me mijëra pako instaluese,\n"
+"dhe nuk është me rendësi që ti njifti të gjitha për mendësh.\n"
+"\n"
+"Pakot janë të radhitura në grupe përkatëse për përdorim të veçant në "
+"makinën\n"
+"tuaj. Mandriva Linux posedon katër instalime të përcaktuara. Ju mund të\n"
+"mendoni mbi këto klasa instaluese si kontainer të pakove të ndryshme.\n"
+"Ju keni mundësi ti përzini (mix) dhe ti barazoni aplikacionet nga "
+"kontainerët\n"
+"e ndryshëm, sikur ``Stacion Punues'' instalimi mund të posedoj ende\n"
+"aplikacione nga ``Zhvillimi'' i kontainerit instalues.\n"
+"\n"
+" * \"%s\": nëse ju mendoni ta përdorni stacionin punues në këtë, mënyrë,\n"
+"zgjedhni një apo më shumë aplikacion, që gjinden në kontainerin e stacionit\n"
+"punues.\n"
+"\n"
+" * \"%s\": nëse makina juaj do të përdoret, për krijimin e programeve,\n"
+"zgjedhni pakot qarkulluese nga kontaineri.\n"
+"\n"
+" * \"%s\": nëse makina juaj do të përdoret sikur server, ju mund ti\n"
+"zghedhni serviset përkatëse instaluese.\n"
+"\n"
+" * \"%s\": Ky grup do të ju mundësoj përcaktimin e mjedisit grafik\n"
+"që deshironi ta keni në sistemin tuaj. Natyrisht, ju duhet ta zgjedhni\n"
+"më së paku njërin që ta përdorni sistemin tuaj në modë grafik.\n"
+"\n"
+"Duke e vendosur minin ndër emrin e një grupi, ju do ta vëreni çfaqjen e një\n"
+"përshkrimi të shkurt të atij grupi. Nëse ju i çzhgjidhni të gjitha grupet\n"
+"gjatë instalimit standard (me kundërshtim azhurnimi), një dialog do të\n"
+"çfaqet me propozime të ndryshme zgjedhëse, për një instalim minimal:\n"
+"\n"
+" * \"%s\": instalon pako minimale të mundshme, për të patur një mjedis\n"
+"punues grafik në tryezë.\n"
+"\n"
+" * \"%s\": instalon sistemin e bazës, me disa përdorues të tjerë të\n"
+"bazës dhe dokumnetacionet e tyre. Ky instalim është i përdorshëm sikur\n"
+"bazë për montimin e një serveri.\n"
+"\n"
+" * \"%s\": do të instaloj më së paku që është e mundur në sistemin\n"
+"punues Linux, vetëm në linjë komanduese. Këtij instalimi i nevojiten\n"
+"65MB vendë të zbrazët.\n"
+"\n"
+"Ju mund ta verifikoni mundësinë me \"%s\". Kjo mundësi është e përdorshme\n"
+"nëse ju dini saktësishtë cilat pako duhet të instalohen ose nëse\n"
+"dëshironi të posedoni një kontrol totale gjatë instaimit.\n"
+"\n"
+"Nëse ju keni vazhduar me instalim në modë \"%s\", ju mund ti çzgjedhni\n"
+"të gjitha grupet që ti shmangeni instalimit të programeve të reja. Kjo\n"
+"mundësi është tejet e përdorshme për restaurimin e sistemit të dëmtuar."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Azhurno"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Me dokumentacion bazues"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Provo një instalim minimal"
+
+#: ../help.pm:152
+#, fuzzy, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Më në fund, nëse keni vendosur një instalim me zgjidhje individuale, për\n"
+"të zgjedhur pakot, DrakX do të ju prezentoj një dru të të gjitha pakove\n"
+"të kasifikuara simbas grupit dhe të ndër-grupit. Duke shfletuar drurin,\n"
+"ju mund të zgjedhni grupe, dhe ndër-grupe, apo pako individuale.\n"
+"\n"
+"Kudo që ta zgjedhni një pako e cila gjindet në dru, një përshkrim për të, "
+"do\n"
+"të paraqietet në anën e djathtë.\n"
+"\n"
+"!! Nëse keni zgjedhur një program që ta përdorni në server, ju duhet ta\n"
+"vërtetoni që ai duhet të instalohet. Ndër Mandriva, me marrëveshje të "
+"gjithë\n"
+"serveret do të nisen nga nisja udhëzuese e sistemit (boot). Fatëkeqësisht\n"
+"nga të gjitha forcat e investuara për të ofruar një Linux të sigut, është\n"
+"e mundur që, disa gabime të sigurisë të infektojnë server-et e instaluar,\n"
+"deri në datën e publikimit.\n"
+"Nëse ju nuk e dini për çfarë arësye nevojitet një server, apo për çfarë "
+"është\n"
+"instaluar, klikoni mbi \"%s\". Duke klikuar mbi \"%s\", serveri do të "
+"instaloj\n"
+"të gjitha serviset e ofruara në nisjen e sistemit. !!\n"
+".\n"
+"Opcioni \"%s\" do të çzgjedhë paralajmërimet të cilat do të\n"
+"paraqiten çdo herë kur instaluesi zgjedhë një pako të re. Ky paralajmërim\n"
+"paraqitet, sepse DrakX e ka përcaktuar atë, dhe që një pako të funksionoj "
+"si\n"
+"duhet i nevojitet një tjetër, d.m.th. mvaret edhe nga pako tjetër\n"
+"\n"
+"Ikona e vogël e disketës floppy (floppy disk), e cila paraqitet poshtë\n"
+"në listë, mundëson rikuperimin e listës së pakove të zgjedhura gjatë një\n"
+"instalimi tjetër. Duke klikuar mbi të, do të ju pyesim që ta futni një\n"
+"disketë e cila është krijuar gjatë një instalimi të mëparshëm. Verifikoni\n"
+"shënimin e dytë të etapës së fundit, që do të ju mësoj se si duhet ta\n"
+"krijoni një disketë të tillë."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Mvarësit Automatike"
+
+#: ../help.pm:186
+#, fuzzy, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": duke klikuar mbi kopsën \"%s\" e cila do të hapë asistentin\n"
+"konfigurues. Konsultoni kapitujt e caktuar të ``Përcjellësit Nisës''\n"
+"për më shumë informacione se si të konfigurohet një stampues i ri.\n"
+"Interfaci i prezentuar, është i njëjtë me atë gjatë instalimit."
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Ky dialog ju mundëson zgjidhjen serviseve prezente për nisjen e sistemit\n"
+"tuaj me udhëzim (boot).\n"
+"\n"
+"DrakX do të listoj të gjitha serviset prezente me instalime vendase.\n"
+"Bëjeni një verifikim dhe eliminoni ato që nuk nevojiten për një nisje\n"
+"me udhëzim (boot).\n"
+"\n"
+"Ju mund të përfitoni shpjegime të shkurtëra, duke i zgjedhur ato një nga\n"
+"një. Kjo d.m.th. nëse ju nuk jeni i sigurt për aplikacionin e një servisi,\n"
+"mirëmbani paramtrat me marrëshje.\n"
+"\n"
+"!! Në këtë etapë, vini re në rastin e një sistemi të përcaktuar me "
+"reakcione\n"
+"të server-it: në këtë rast, ju dëshironi ti lejoni të gjitha serviset e\n"
+"duhura. Keni kujDES, se disa nga serviset mund të jenë të rrezikshme\n"
+"nëse ato nuk janë të lira në server. Në raste të përgjithshëm ju duhet ti\n"
+"zgjedhni vetëm serviset që ju nevojiten.\n"
+"!!"
+
+#: ../help.pm:209
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux manipulon orën në GMT (Greenwich Mean Time) dhe e shëndërron në\n"
+"kohë lokale simbas zonës të cilën ju e zgjidhni. Nëse ora në kartelën-nënë\n"
+"rregullohet simbasë kohë lokale, ju keni mundësi ta dezaktivizoni atë duke\n"
+"çzgjedhur \"%s\" i cili do të ju lejoj që GNU/Linux sistemi i orës dhe i\n"
+"orës hardver të jenë në të njëjtën kohë. Kjo është tejet e përdorshme kur\n"
+"makina apo edhe ndonji ftues tjetër sikur p.sh. Windows.\n"
+"\n"
+"\"%s\" mundëson rregullimin e orës automatikisht duke u lidhur ne një "
+"server\n"
+"të kohës në Internet. Në listën e cila është prezentuar, zgjedheni një\n"
+"server gjeografikisht më afër jush. Ju duhet të posedoni një kyqje "
+"Internet,\n"
+"që ky të funksionoj si duhet. Ky do të instaloj në makinën tuaj, një server\n"
+"të kohës lokale, i cili mund të jetë i mundshëm, që ai të përdoret nga\n"
+"përdoruesit e tjerë të kësaj makine, nga rrjeti i juaj lokal"
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Sinkronizimi automatik i orës"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Kartela Grafike\n"
+"\n"
+" Instaluesi normalisht e zbulon dhe e konfiguron automatikisht kartelën,\n"
+"grafike në kompjuterin tuaj. Nëse ky operacion dështon, ju keni mundësi\n"
+"ta zgjedhni në këtë listë kartelën tuaj aktuale.\n"
+"\n"
+" Në raste se servera të ndryshëm janë në disponibilitet për kartelën "
+"tuaj,\n"
+"me apo pa nisje në 3D, juve do të ju propozohet zgjedhja e një serveri më "
+"të\n"
+"mirë i cili do të ju nevojitet."
+
+#: ../help.pm:234
+#, fuzzy, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (për Sistemin Windows X) është zemra e interfacit grafik për GNU/Linux\n"
+"në të cilin të gjitha mjediset grafike (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etj.) janë të denguara mbi Mandriva Linux.\n"
+"\n"
+"Juve do të ju prezentohet lista e parametrave të ndryshëm për të ndryshuar,\n"
+"dhe për të pranuar çfaqjet grafike optimale: Kartelë Grafike\n"
+"\n"
+" Instaluesi normalisht zbulon automatikisht dhe e konfiguron kartelën,\n"
+"grafike në kompjuterin tuaj. Nëse ky operacion dështon, ju keni mundësi\n"
+"ta zgjedhni në këtë listë kartelën tuaj aktuale.\n"
+"\n"
+" Nëse, server(a) të ndryshëm janë në disponibilitet për kartelën tuaj, me\n"
+"apo pa nisje 3D, juve do të ju propozohet zgjedhja e një serveri më të "
+"mirë,\n"
+"i cili do të ju nevojitet.\n"
+"\n"
+"\n"
+"\n"
+"Monitori\n"
+"\n"
+" Instaluesi ka mundësi ta zbulon dhe ta konfigoj automatikisht monitorin\n"
+"tuaj të lidhur në kompjuter. Nëse ai nuk konfigurohet automatikisht, ju "
+"keni\n"
+"mundësi ta zgjidhni monitorin tuaj nga kjo listë.\n"
+"\n"
+"\n"
+"Vendosmëria e ekranit\n"
+"\n"
+" Ju keni mundësi ta zgjedhni vendosmërinë e ekranit këtu, njashtu edhe\n"
+"thellësinë e ngjyrave mes këtyre mjeteve të lira. Zgjedheni njërën nga më\n"
+"të mirat që ju përshtatet (ju do të keni mundësi ta ndërroni atë edhe mbasë\n"
+"instalimit). Nga zgjedhja e konfigurimit të thjeshtë, i cili është i "
+"paraqitur\n"
+"në monitor.\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" sistemi do të mundohet të hapë ekranin grafik me vendosmëri të "
+"dëshiruar.\n"
+"Nëse ju keni mundësi të shifni lajmin gjatë testimit njashtu edhe "
+"përgjegjen\n"
+"\"%s\", atëher DrakX do të ju propozoj të kaloni në tjetrën etapë. Nëse ju\n"
+"nuk keni mundësi ta shifni lajmin, d.m.th. disa pjesë të zbulimeve\n"
+"automatike janë të pa sakta dhe testi do të përfundoj automatikisht mbasë\n"
+"12 sekondave, i cili do të ju dërgoj mbrapa në menynë e më parëme.\n"
+"Ndryshoni parametrat derisa ju ta gjeni çfaqjen korrekte grafike të ekranit\n"
+"tuaj.\n"
+"\n"
+"\n"
+"\n"
+"Opcionet\n"
+"\n"
+" Ju këtu keni mundësi të zgjedhni gjdo gjë që dëshironi në kompjuterin "
+"tuaj,\n"
+"dhe automatikisht do të kyqeni në nisje me interfac grafik boot. Dukshëm, "
+"ju\n"
+"dëshironi të verifikoni \"%s\" nëse kompjuteri juaj është si një server,\n"
+"apo nëse ju nuk keni qenë i sukseshëm në çfaqjen e konfigurimit."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitori\n"
+"\n"
+" Instaluesi ka mundësi ta zbulon dhe ta konfigoj automatikisht monitorin\n"
+"tuaj të lidhur në kompjuter. Nëse ai nuk konfigurohet automatikisht, ju "
+"keni\n"
+"mundësi ta zgjidhni monitorin tuaj nga kjo listë."
+
+#: ../help.pm:298
+#, fuzzy, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Vendosmëria e ekranit\n"
+"\n"
+" Ju keni mundësi ta zgjedhni vendosmërinë e ekranit këtu, njashtu edhe\n"
+"thellësinë e ngjyrave mes këtyre mjeteve të lira. Zgjedheni njërën nga më\n"
+"të mirat që ju përshtatet (ju do të keni mundësi ta ndërroni atë edhe mbasë\n"
+"instalimit). Nga zgjedhja e konfigurimit të thjeshtë, i cili është i "
+"paraqitur\n"
+"në monitor."
+
+#: ../help.pm:306
+#, fuzzy, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Në disa raste, server të ndryshëm janë të disponibilitet për kartelën tuaj\n"
+"grafike, me apo pa nisje 3D, juve do të ju propozohet zgjedhja e një "
+"serveri\n"
+"më të përshtatshëm për nevojat tuaja."
+
+#: ../help.pm:311
+#, fuzzy, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Opcionet\n"
+"\n"
+" Më në fund, ju keni mundësi të zgjedhni nisjen e interfacit grafik\n"
+"apo të makinës suaj. Është tejet e rekomanduar që ta zgjidhni \"%s\" nëse\n"
+"ju jeni duke instaluar njashtu edhe një server në makinën tuaj, ose nëse\n"
+"ju nuk keni konfiguruar ekranin tuaj si duhet."
+
+#: ../help.pm:319
+#, fuzzy, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Kjo etapë do të ju mundësoj që të përcaktoni me precizitet vendosjen dhe\n"
+"instalimin e Mandriva Linux. Nëse disku i juaj i fortë është zbrazët apo i\n"
+"përdorur nga një sistem tjetër eksploatimi, ju duhet ta shpërndani\n"
+"diskun tuaj në pjesë. Ndarje e diskut d.m.th. ta shpërndani me precizitet\n"
+"që më fund të krijoni një hapësire për instalimin e sistemit Mandriva "
+"Linux.\n"
+"\n"
+"Duke njoftur efektet e proceseve të ndarjeve nuk janë kthyese, (përmbajtjet\n"
+"në disk do të zhduken), ndarja në shumicën e rasteve është stresante dhe\n"
+"frikësuese, për një përdorues të pa eksperimentuar. Për fat të mirë një\n"
+"interfac DrakX, është caktuar për ta. Para se ta nisni, konsultone\n"
+"doracakun tuaj, dhe keni durim.\n"
+"\n"
+"Nëse ndarjet nuk janë përcaktuar, ju duhet ti krijoni duke përdorur\n"
+"asistentin. Simbas konfigurimit të diskut tuaj, një shumicë e opcioneve\n"
+"janë në disponibilitet :\n"
+"\n"
+" * \"%s\": kjo mundësi do të provoj të shpërndajë automatikisht\n"
+"hapësirën e pa përdorur të diskut tuaj. Nuk do të keni pyetje tjera.\n"
+"\n"
+" * \"%s\": asistenti ka zbuluar një apo më shumë ndarje ekzistuese\n"
+"në diskun tuaj. Nëse ju dëshironi ti përdorni, zgjedheni këtë opcion.\n"
+"Mandej ju do të pyetëni për zgjedhjen pikës montuese e cila do të lidhet\n"
+"me ndarjet tjera. Pika trasheguese e montimit është e përcaktuar me\n"
+"marrëveshje dhe në shumicën e rasteve është preferohet që mos ta\n"
+"ndryshoni atë.\n"
+"\n"
+" * \"%s\": nëse Microsft Windows është instaluar në diskun tuaj dhe\n"
+"e përfshinë tërë sipërfaqen e diskut, ju duhet të krijoni një vend për\n"
+"instalimin e të dhënave Linux. Për ta realizuar, ju mund ta shlyeni\n"
+"tërë diskun (shiqo në zgjidhjen ``Shlyeje tërë diskun'') ose ridimenzi-\n"
+"onone hapësirën e përdorur nga ndarja Windows në formë FAT.\n"
+"Ridimenzionimi mund të bëhet pa i humbur të dhënat në disk, me një\n"
+"kusht, nëse ju e keni defragmentuar diskun tuaj në Windows. Një regjistrim\n"
+"i të dhënave tuaja është shumë e preferuar. Kjo mundësi, d.m.th.\n"
+"e dyta mund të përdoret pa humbjen e të dhënave. Kjo zgjidhje është\n"
+"tejet e rekomanduar, për bashkëjetesën e Linux-it dhe Windows-it në të\n"
+"njëjtin kompjuter.\n"
+"\n"
+" Para se ta zgjidhni këtë mundësi, ju duhet të kuptoni se mbas\n"
+"kësaj precedure hapësira e Windows do të jetë zvogëluar. D.m.th.\n"
+"Disku juaj në Windows do të posedoj më pakë hapësirë të lirë për\n"
+"instalimin e programeve apo regjistrimin e të dhënave me Windows.\n"
+"\n"
+" * \"%s\": nëse ju dëshironi ti zhdukni të gjitha\n"
+"të dhënat dhe aplikacionet e instaluara në sistemin tuaj, dhe ti\n"
+"zëvendësoni me një sistem të ri Mandriva Linux, zgjedheni këtë mundësi.\n"
+"Keni kujDES, sepse kjo mundësi është e pa kthyeshme mbrapa. Është e pa\n"
+"mundur të gjindet të dhënat e zhdukura.\n"
+"\n"
+" !! Duke zgjedhur këtë mundësi, përmbajtjet në diskun tuaj do të\n"
+"zhduken. !!\n"
+"\n"
+" * \"%s\": kjo zgjidhje do të zhdukë tërë përmbajtjen\n"
+"e diskut, dhe do të rifilloj nga zerroja. Të gjitha të dhënat dhe\n"
+"programet prezente në diskun tuaj do të zhduken.\n"
+"\n"
+" !! Duke zgjedhur këtë mundësi, përmbajtjet në diskun tuaj do të\n"
+"zhduken. !!\n"
+"\n"
+" * \"%s\": mundëson një ndarje manuale të diskut tuaj. Kini kujdes\n"
+"-- është tejet e fuqishme por edhe aq e rrezikshme kjo mundësi.\n"
+"Ju mund të zhdukni përmbajtjen e tërësishme të diskut tuaj. D.m.th.\n"
+"Ju nuk duhet ta zgjidhni këtë mundësi, nëse nuk dini se çfarë bëni.\n"
+"Për të ditur më shumë mbi DiskDrake, përcaktohuni në sekcionin\n"
+"``Qeverisja e Ndarjeve Tuaja'' në `` Përcjellësin Nisës''"
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Përdore ndarjen egzistuese"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Shlyeje diskun të tërësi"
+
+#: ../help.pm:380
+#, fuzzy, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Ja pra ku jeni. Instalimi i juaj GNU/Linux përfundoi, dhe sistemi i juaj\n"
+"është i gatshëm për përdorim. Klikoni mbi \"%s\" për të rinisur sistemin\n"
+"tuaj. Gjëra e parë që ju duhet ta vëreni mbasi që kompjuteri i juaj të\n"
+"përfundoj me testet e bëra është meny bootloader, duke ju mundësuar një\n"
+"nisje nga sistemet operuese që janë prezente në diskun tuaj.\n"
+"\n"
+"Kopsa \"%s\" mundëson dy zgjedhje tjera: \n"
+"\n"
+" * \"%s\": për të krijuar një diskete instaluese, e cila do të ju\n"
+"mundëson, të rizhvilloni një instalim që e keni relaizuar para disa\n"
+"qasteve, pa ndihmën e ndonji administratori.\n"
+"\n"
+" Shënoni, se të dy mundësitë për zgjedhje do të paraqiten mbasi që të\n"
+"klikoni mbi kopsën:\n"
+"\n"
+" * \"%s\". Është një instalim pjesërisht automatikë, ku është\n"
+"e mundur ti personalizoni shpërndarjet, e diskut (veçmas).\n"
+"\n"
+" * \"%s\". Instalim komplet automatik, disku i fort do të\n"
+"rishkruhet kompletisht, dhe të gjitha të dhënat do të zhduken.\n"
+"\n"
+" Kjo mundësi është tejet praktike, për instalimin e më shumë sistemeve.\n"
+"Shiqoni sekcionin Auto Instalim të sitit ton Web.\n"
+"\n"
+" * \"%s\"(*): regjistrimi i listës së pakove të instaluara.\n"
+"Për ta përdorur këtë zgjidhje me një instalim tjetër, futni disketën\n"
+"floppy në lexues, dhe hyni në menyn ndihmuese duke shtypur mbi kopsën\n"
+"[F1] në ftim, dhe futni këtë urdhër me radhë >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) Ju keni nevojë për një diskete të formatuar në FAT (për ta krijuar ndër\n"
+"GNU/Linux shkruani \"mformat a:\")"
+
+#: ../help.pm:412
+#, fuzzy, c-format
+msgid "Generate auto-install floppy"
+msgstr "krijo një disketë floppy auto instaluese"
+
+#: ../help.pm:415
+#, fuzzy, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Secila ndarje e përcaktuar përsëri duhet të formatohen,(që d.m.th.\n"
+"do të krijohet një sistem e skedareve në të).\n"
+"\n"
+"Në këtë moment, ju mund ti riformatoni ndarjet ekzistuese për zhdukjen e\n"
+"të dhënave prezente. Dhe që duhet ti zgjedhni ato.\n"
+"\n"
+"Duke ditur se nuk është e nevojshme të riformatohet përmbajtja e tërë\n"
+"sistemit eksploatues, (sikur \"/\", \"/usr\" apo \"/var\") mirëpo nuk\n"
+"është e nevojshme të formatohen ndarjet e të dhënave (zakonisht në \"/home"
+"\").\n"
+"Keni kujdes kur ti zgjidhni ndarjet e riformatuara, do të jetë e pa mundur\n"
+"të rikuperohen të dhënat në to.\n"
+"\n"
+"Klikoni mbi \"%s\" kur ju jeni i gatshëm që ti formatoni ndarjet.\n"
+"\n"
+"Klikoni mbi \"%s\" nëse ju dëshironi të zgjedhni një ndarje tjetër apo\n"
+"të instaloni një sistemi të ri eksploatues Mandriva Linux.\n"
+"\n"
+"Klikoni mbi \"%s\" nëse ju dëshironi ti zgjedhni ndarjet, për një\n"
+"verifikim të sektorëve të dëmtuar në disk."
+
+#: ../help.pm:437
+#, fuzzy, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Nga momenti kur ju jeni duke instaluar Mandriva Linux, është e mundur që\n"
+"disa pako janë azhurnuar prej daljes së atij prodhimi. Disa buge mund\n"
+"të korigjohen, njashtu dhe probleme tjera të sigurisë. Për të ju\n"
+"mundësuar të përfitoni një azhurnim, do të jenë të propozuara që të\n"
+"tranferohen nga Interneti. Zgjedheni \"%s\" nëse ju posedoni një kyqje\n"
+"Internet, ose \"%s\" nëse ju preferoni që t'instaloni azhurnimet një herë\n"
+"tjetër.\n"
+"\n"
+"Duke zgjedhur \"%s\", lista e siteve nga të cilat bëhen azhurnimet mund të\n"
+"provohen. Zgjedhni sitet më të afërta. Mandej një dru i degëzuar\n"
+"me zgjedhje të pakove do të çfaqet: verifikone zgjedhjen, dhe klikoni mbi\n"
+"\"%s\", për të provuar instalimet apo azhurnimet e pakove të zgjedhura,\n"
+"ose mni \"%s\" për ti braktisur."
+
+#: ../help.pm:450
+#, fuzzy, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Në këtë etapë, DrakX duhet të ju ketë mundësuar përfundimin e nivelit\n"
+"të sigurisë së duhur për sistemin tuaj. Niveli i sigurimit së duhur është\n"
+"i përcaktuar simbas funksionit të eksploatimit të sistemit të përdoruesve\n"
+"tjerë (nëse është i kyqur direkt në rrjetin internet) dhe simbas nivelit\n"
+"të ndishmërisë së përmbajtjes së informacioneve të sistemit (numri i\n"
+"kartelës kreditore për shembull). Nuk duhet të harroni se në mënyrë të\n"
+"përgjithshme, aq më më e madhe të jetë siguria e sistemit, aq më\n"
+"shumë është e komplikuar.\n"
+"\n"
+"Nëse ju nuk dini cilin nivelë ta zgjidhni, atëhere mbane nivelin me "
+"marrëveshje."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Siguria e Administratorit:"
+
+#: ../help.pm:464
+#, fuzzy, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Në këtë etapë ju duhet të zgjedhni se cila(t) ndarje(t) do të përdoret(n)\n"
+"për sistemin tuaj Mandriva Linux. Nëse ndarja e diskut është bërë më heret,\n"
+"nga një instalim tjetër GNU/Linux apo nga nji vegël tjetër ndarëse, ju\n"
+"mund të përdorni ndarjet e bëra. Mes tjerash ndarjet duhen të jenë të\n"
+"përcaktuara\n"
+"\n"
+"Për të krijuar një ndarje, ju duhet të zgjedhni diskun që duhet të "
+"përdoret.\n"
+"Ju mund ta zgjedhni duke klikuar mbi ``hda'' për diskun e parë IDE, ``hdb''\n"
+"për diskun e dytë, ``sda'' për dyskun e parë SCSI, dhe ashtu me radhë.\n"
+"\n"
+"Për ta ndarë diskun e fort të zgjedhur, ju mund të përdorni opcionet me\n"
+"radhë :\n"
+"\n"
+" * \"%s\": ky opcion do të zhduk, të gjitha ndarjet në diskun e zgjedhur\n"
+"\n"
+" * \"%s\": ky opcion mundëson krijimin e një sistemi të skedareve\n"
+"ext3 dhe swap të ndarjeve, në hapësirën e lirë të diskut tuaja\n"
+"\n"
+"\"%s\": mundëson hyrjen në fonksionimin e llogarive:\n"
+"\n"
+" * \"%s\": regjistro tabelën e ndarjeve në floppy.\n"
+"Kjo mundësi është tejet praktike, për rikuperimin e ndarjeve të\n"
+"dëmtuara. Dhe rekomanduar që të vazhdoni me këtë mënyrë.\n"
+"\n"
+" * \"%s\": mundëson restaurimin e një tabele të një ndarje,\n"
+"të regjistruar më heret në një diskete.\n"
+"\n"
+" * \"%s\": nëse tabela juaj e ndarjes është dëmtuar ju keni mundësi\n"
+"ta rikuperoni me këto opcione. Keni kujdes dhe dijeni se kjo nuk\n"
+"funksionon në të gjitha rastet.\n"
+"\n"
+" * \"%s\": largon ndryshimet dhe ngarkon tabelën e ndarjeve filestare.\n"
+"\n"
+" * \"%s\": duke shënuar në këtë kuti, CD-ROM(et) dhe disketat floppy\n"
+"(dhe përkrahje tjera) do të ngarkohen automatikisht.\n"
+"\n"
+" * \"%s\": përdoreni këtë mundësi nëse ju keni nevojë ta ndani\n"
+"diskun tuaj. Kjo mundësi është shumë e rekomandura nëse ju jeni fillestar\n"
+"në lëndën e ndarjeve.\n"
+"\n"
+" * \"%s\": përdore këtë opcion për ti anuluar ndryshimet tuaja.\n"
+"\n"
+" * \"%s\": mundëson akcionet llogaritëse në ndrajet, (tipi,\n"
+"mundësit, dhe format) dhe dorëzon më shumë informacione.\n"
+"\n"
+" * \"%s\": mbasi që shpërndarja do të përfundoj, kjo kopsë do të ju\n"
+"mundëson regjistrimin ndryshimeve tuaja në disk.\n"
+"\n"
+"Mbasi që ta keni përcaktuar mashësinë e diskut tuaj, ju keni mundësi ti\n"
+"paraqitni madhësitë ndarëse duke përdorur kopsat (shigjeta) të tastierës.\n"
+"\n"
+"Shënoni: ju mund ti ndryshoni të gjitha mundësitë për ndarje duke përdorur\n"
+"tastierën. Kaloni nëpërmjet shfletuesit duke përdorur kopsat [Tab] dhe\n"
+"shigjetat [Lart/Poshtë].\n"
+"\n"
+"Mbasi të zgjedhni një ndarje, ju mund ta përdorni :\n"
+"\n"
+" * Ctrl-c për të krijuar një ndarje të re (përderisa një ndarje e zbrazët\n"
+"është zgjedhur);\n"
+"\n"
+" * Ctrl-d për të zhdukur një ndarje;\n"
+"\n"
+" * Ctrl-m për të caktuar një pikë montuese.\n"
+"\n"
+"Për të përfituar më shumë informacione mbi sistemet e skedareve, lexoni mbi\n"
+"sistemin e skedareve ext2FS në ``Doracakun referues''.\n"
+"\n"
+"Nëse ju jeni duke instaluar një stacion PPC, ju duhet të krijoni një ndarje\n"
+"të vogël HFS ``bootstrap'' më së paku 1MB, e cila do të përdoret nga "
+"bootloader\n"
+"yaboot. Nëse dëshironi të bëni një ndarje më të madhe, p.sh 50MB, ju duhet\n"
+"të gjeni një vegël për të vendosur bërthamat dhe imazhet ramdisk hyrëse në\n"
+"rastë të ndonji problemi."
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Removable media auto-mounting"
+msgstr "Automontim i periferikëve lëvizës"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Kalo mes modit normal/ekspert"
+
+#: ../help.pm:536
+#, fuzzy, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Janë gjetur më shumë se një ndarje Windows në diskun tuaj të fort, ju\n"
+"lutemi zgjedheni njërin për ta ridimenziunuar, dhe për të instaluar\n"
+"sistemin të ri eksploatues Mandriva Linux.\n"
+"\n"
+"Çdo ndarje është listuar simbas: \"Emri Linux\", \"Emri Windows\"\n"
+"\"Kapaciteti\".\n"
+"\n"
+"\"Emri Linux\" është i strukturuar: \"tipi i diskut të fort\", \"numri i\n"
+"diskut të fort\", \"Numri i ndarjes\" (për shembul, \"hda1\").\n"
+"\n"
+" \"Tipi i diskut të fort\" është \"hd\" nëse disku i juaj është IDE\n"
+"disk i fort, dhe \"sd\" nëse është SCSI disk i fort.\n"
+"\n"
+" \"Numri i diskut të fort\" është gjithnji një shkronjë mbas \"hd\" ose\n"
+"\"sd\". Për disqet IDE:\n"
+"\n"
+" * \"a\" do të thotë \"disk primare master mbi kontroluesin e parë IDE\";\n"
+"\n"
+" * \"b\" do të thotë \"disk primare esklavë mbi kontroluesin e parë IDE\";\n"
+"\n"
+" * \"c\" do të thotë \"disk primare master mbi kontroluesin e dytë IDE\";\n"
+"\n"
+" * \"d\" do të thotë \"disk primare esklavë mbi kontroluesin e dytë IDE\";\n"
+"\n"
+"Me disqet SCSI, \"a\" do të thotë \"Identiteti më i ulët SCSI\", \"b\" do\n"
+"të thotë \"Identiteti i dytë më i ulët SCSI\", etj.\n"
+"\n"
+"\"Emri Windows\" është një letër e diskut tuaj të fort ndër Windows (disku\n"
+"i parë ndarës quhet \"C:\")."
+
+#: ../help.pm:567
+#, fuzzy, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": verifikoni zgjedhjen e shtetit tuaj të tanishëm. Nëse ju nuk\n"
+"gjindeni në atë shtet që duhet të jeni, klikoni mbi kopsën \"%s\"\n"
+"dhe zgjedheni një shtet tjetër. Nëse shteti juaj nuk është i çfaqur në\n"
+"këtë list, klikoni mbi kopsën \"%s\" për të pranuar një listë \n"
+"më komplete për shtete tjera."
+
+#: ../help.pm:572
+#, fuzzy, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Kjo etapë aktivizohet automatikisht nëse ju posedoni një ndarje të vjetër\n"
+"GNU/Linux, në makinën tuaj.\n"
+"\n"
+"DrakX tani ka nevojë të dijë nëse ju dëshironi të çfaqni një instalim,\n"
+"apo azhurnim të ri, në sistemin ekzistues Mandriva Linux:\n"
+"\n"
+" * \"%s\": Për shumicën e rasteve, ky kompletisht shlyhet nga sistemet\n"
+"e vjetra. Nëse ju dëshironi ta ndërroni shpërndarjen e diskut tuaj të "
+"fortë,\n"
+"apo të ndryshoni sistemin e skedareve tuaja, ju duhet ta përdorni këtë "
+"opcion.\n"
+"Pa marrë para sysh, nga mvarësitë e skemës së ndarjesë, ju mund ti "
+"parandaloni\n"
+"disa të dhëna ekzistuese nga të mbi-zëvendësuarat.\n"
+"\n"
+" * \"%s\": kjo klasë instaluese ju mundëson azhurnimin e pakove aktuale\n"
+"të instaluara, në sistemin tuaj Mandriva Linux. Skema e ndarjes,\n"
+"dhe e të dhënave të përdoruesve, nuk do të ndryshohet. Shumica\n"
+"e etapave të tjera konfiguruese mundësojnë një vazhdim, të njëjtë sikur\n"
+"tek instalimet standarde.\n"
+"\n"
+"Duke përdorur mundësinë ``Azhurno'' duhet të funksionoj shumë mirë në "
+"sistemin\n"
+"Mandriva Linux ndër versionin \"8.1\" apo më të ri. Tentimi i Azhurnimit të\n"
+"një versioni më të vjetër se versioni Mandriva Linux \"8.1\" nuk "
+"rekomandohet."
+
+#: ../help.pm:594
+#, fuzzy, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Normalisht, DrakX e zgjedhë tastierën e saktë për ju (mvarësisht nga gjuha\n"
+"e zgjedhur). Megjithatë, është e mundur që ju nuk posedoni një tastierë\n"
+"që i përshtatet gjuhës suaj: për shmebull, nëse ju e flitni Anglishten dhe\n"
+"posedoni një tastierë Zvicërrane, dhe dëshironi ta përdorni tastierës me\n"
+"përparësi Zvicrrane. Ose nëse e flitni Anglishtën dhe jetoni në Kebek,\n"
+"ju mund të gjindeni në të njëjtin situacion. Në të dyja rastet, ju duhet\n"
+"të ktheheni mbrapa kësajë etape instaluese dhe të zgjidhni tastierën\n"
+"përkatëse nga lista përkatëse.\n"
+"\n"
+"Klikoni mbi kopsën \"%s\" që të prezentohet lista komplete e tastierave\n"
+"përkrahëse.\n"
+"\n"
+"Nëse ju e zgjedhni një tastiere e cila nuk bazohet me alfabetin latinë,\n"
+"ju do të pyeteni për në dialogun e ardhshëm për kombinimin e kopsave\n"
+"të cilët do të ju mundësojnë shkëmbimin mes Latine dhe joLatine."
+
+#: ../help.pm:612
+#, fuzzy, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Etapa e parë është që ta zgjedhni gjuhën tuaj të preferuar. Zgjedheni "
+"gjuhën\n"
+"tuaj të preferuar, e cila do të përdoret gjatë instalimit të sistemit.\n"
+"\n"
+"Duke klikuar mbi kopsën \"%s\", programi do të ju propozoj njashtu\n"
+"edhe gjuhë tjera të cilat mund të instalohen në stacionin tuaj punues. Duke\n"
+"zgjedhur një gjuhë tjetër, programi do të instaloj tërë dokumentacionin\n"
+"dhe aplikacionet e nevojshme për përdorimin e kësaj gjuhe. Për shembull,\n"
+"nëse ju mendoni të pranoni përdorues Spanjol në serverin tuaj, zgjedheni\n"
+"Anglishtën si gjuhë kryesore, dhe në sekcionin e vazhdueshëm, klikoni mbi\n"
+"kutinë e cila i përketë \"%s\".\n"
+"\n"
+"Shënim, ju keni mundësi të instalohen shumë gjuhë në sistem. Mbasi që keni\n"
+"zgjedhur çfarëdo llogarije lokale, apo klikoni mbi kopsën \"%s\" për\n"
+"të zgjedhur kutinë. Zgjedhja e përkrahjeve të gjuhëve d.m.th. përkthimet\n"
+"e polisës, verifikimet e të shprehurit, etj. për atë gjuhë do të instalohet\n"
+"Përmbledhja e \"%s\" kutia verifikuese mundëson forcimin e përdorimit të\n"
+"unikodit (UTF-8). Shënim edhe pse ky është një përparësi për të ardhmën.\n"
+"Nëse ju e zgjedhni një gjuhë duke marrë përsipër me përkrahje unikod që do\n"
+"të instalohet.\n"
+"\n"
+"Për të kaluar nga një gjuhë në një tjetër, ju mund ta ngarkoni urdhërinë\n"
+"\"/usr/sbin/localedrake\" me përparësi administratori \"root\" për të\n"
+"ndërruar tërë sistemin e gjuhës, apo secili pëdorues për vetë vehten\n"
+"mund ta ndërroj gjuhën me marrëveshje."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Spanjol"
+
+#: ../help.pm:653
+#, fuzzy, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"DrakX normalisht nuk hasë në ndonji problemë në zbulimin e sasisë së\n"
+"kopsave të minit tuaj. Nëse nuk i merrë me njohuri, se ju posedoni\n"
+"një minë me dy kopsa, ai do ta konfiguroj një kopsë të tretë imituese.\n"
+"Kopsa e tretë e minit me dy kopsa, mund të ``shtypet'' duke klikuar\n"
+"njëkohësisht mbi kopsën e majtë apo të djathtë. Njashtu\n"
+"DrakX do ta dijë automatikishtë se çfarë mini posedoni PS/2 apo USB.\n"
+"\n"
+"Nëse ju dëshironi të instaloni një tjetër tip mini, zgjedheni njërin nga\n"
+"lista e shënuar.\n"
+"\n"
+"Nëse ju e zgjedhni një tjetër min, që është propozuar me\n"
+"marrëveshje, DrakX do të ju prezentoj një ekran testi. Përdorni\n"
+"kopsat dhe rrotën për tu siguruar se çdo gjë fuksionon si duhet.\n"
+"Nëse mini juaj nuk funksionon si duhet, shtypni mbi shufrën për hapësirë\n"
+"(space bar) apo në [Return] për ta anuluar testimin dhe kthehuni mbrapa\n"
+"në listën e zgjedhjeve.\n"
+"\n"
+"Në disa raste minjët me rrotë nuk janë të zbuluar automatikisht. Ju duhet\n"
+"ta zgjedhni manuelisht, nga lista e propozuar. Sigurohuni se keni zgjedhur\n"
+"portën e saktë të kyqur në minin tuaj. Mbasi që ju e zgjedhni minin tuaj\n"
+"shtypni mbi kopsën \"%s\", një imazhë i minit do të paraqitet\n"
+"në ekranë. Dhe mandej ju duhet ta lëvizni rrotën e minit tuaj për t'\n"
+"aktivizuar atë saktësisht. Dhe testoni të gjitha kopsat dhe lëvizjet e\n"
+"tyre, a janë të sakta."
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "with Wheel emulation"
+msgstr "3 Kopsa me Rrotë Imituese"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Ju lutemi zgjedheni portën e saktë. Për shembull \"COM1\" është portë ndër\n"
+"Windows, kurse \"ttyS0\" është i emëruar ndër sistemin GNU/Linux."
+
+#: ../help.pm:691
+#, fuzzy, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Këtu duhet të dini se do ta merrnji një vendim më të vështirë, për sigurinë\n"
+"e sistemit tuaj GNU/Linux: ju duhet të futni parullën sikur administrator\n"
+"\"root\". \"Root\" është administrues i sistemit me të gjitha të drejtat\n"
+"e konfigurimit, azhurnimit, shtimit të përdoruesëve etj. Konkretisht \"root"
+"\"mund të bëjë çdo gjë në sistemin tuaj! Dhe për atë arësye ju duhet të "
+"futni\n"
+"parullën e tij, që është shumë veshtirë ta merrni me mend atë -- DrakX do\n"
+"të ju tregoj nëse është lehtë. Siq po e shifni, ju mund të mos e futni\n"
+"parullën ne ju rekomandojmë sinqerisht kundër kësaj veprimtarie. Duke ditur\n"
+"se gabimet bëhen shumë lehtë dhe pa ditur, një përdorues me të gjitha të\n"
+"drejtat mund të bëjë çmosë. Prej që se \"root\" mund të përfitojë gjdo\n"
+"të drejtë pa kufi i cili mund të zhdukë të gjitha të dhënat, duke kaluar\n"
+"në secilën ndarje të diskut, është me rëndësi që me vështirësi të madhe të\n"
+"shëndërroheni në administrator \"root\".\n"
+"\n"
+"Zgjedhja e parullës duhet të përmbajë së paku 8 karaktere (shkronja, numra\n"
+"etj) alfanumerikë. Mos e shkruani kurrë parullën \"root\" diku, mundohuni\n"
+"ta mbani në mend.\n"
+"\n"
+"Megjithatë, mos e shkruani parullën shumë të gjatë apo të komplikuar, sepse\n"
+"ju duhet të jeni në gjendje, ta mbani në mend, pa u mundur shumë.\n"
+"\n"
+"Parulla nuk do të paraqitet n'ekran, sikur e shtypni në tastierë direkt, "
+"prej\n"
+"nga, ju duhet ta shtypni dy herë, për të zvogëluar gabimin e mundshëm. Nëse\n"
+"një gabim i tillë arrinë, atëherë kjo parullë ``e pa saktë'' do të "
+"regjistrohet,\n"
+"dhe ju duhet ta rishtypni për të hyrë në sistemin tuaj për të parën herë.\n"
+"\n"
+"Nëse ju dëshironi të hyni në këtë kompjuter për tu kontrolluar nga një "
+"server\n"
+"vërtetues, kliko mbi kopsën \"%s\".\n"
+"\n"
+"Nëse rrjeti i juaj përdorë LDAP, NIS apo një pronë PDC Windows për servise\n"
+"vërtetuese, zgjedheni një qarkullim sikur \"%s\". Nëse ju nuk\n"
+"dini cilin ta përdorni, pyetni administratorin e rrjetit tuaj.\n"
+"\n"
+"Nëse ju hasni në ndonji problem, në lidhje me parullën, ju mund ta zgjedhni\n"
+"mundësinë \"%s\", nëse kompjuteri juaj nuk duhet të kyqet në rrjetin\n"
+"e Internetit, dhe nëse ju keni besim në secilin perdorues i cili hynë në\n"
+"sistemin tuaj."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "vërtetësim"
+
+#: ../help.pm:728
+#, fuzzy, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"LILO dhe grub janë bootloader për GNU/Linux. Normalisht, kjo etapë është\n"
+"kompletisht e automatizuar. DrakX do të analizoj sektorin e diskut nisës\n"
+"boot dhe do të akordoj gjdo gjë që gjindet në të:\n"
+"\n"
+" * nëse një sektor nisës boot Windows zbulohet, ai do të zëvendësohet me\n"
+"me një sektor nisës boot grub/LILO. Në këtë rrugë ju do të keni mundësi\n"
+"të ngarkoni qoft GNU/Linux apo ndonji Sistem tjetër Eksploatues.\n"
+"\n"
+" * nëse një sektor nisës boot LILO zbulohet, ai do të zëvendësohet me\n"
+"një sektor të ri.\n"
+"\n"
+"Nëse ai nuk mund të përcaktohet, DrakX do të ju pyes për vendin se ku\n"
+"deshironi ta vendosni bootloader."
+
+#: ../help.pm:745
+#, fuzzy, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Këtu, ne e zgjedhim një sistem stampues për kompjuterin tuaj. Sistemet "
+"tjera\n"
+"eksploatuese ofrojnë vetëm një, kurse Linux ofron dy. Secili sistem "
+"stampues\n"
+"është më i mirë për gjdo tip i përcaktur konfigurues.\n"
+"\n"
+" * \"%s\" -- që do të thotë ``print, do not queue'' (stampo pas kaluar në\n"
+"rradhitje rendore), është një mundësi nëse stampuesi juaj është i kyqur\n"
+"direkt në stacionin tuaj punues, dhe nëse ju dëshironi ta ndërpreni "
+"stampimin\n"
+"direkt, në rastë të ndonji problemi, dhe nëse nuk posedoni një stampues në\n"
+"rrjet. (\"%s\" Do ti merrë parasysh rastet e thjeshta në rrjet, mirëpo në\n"
+"disa raste nuk janë të sakta këto urdhërat). Zgjedheni \"pdq\" nëse ju jeni\n"
+"në një ekspert në GNU/Linux.\n"
+"\n"
+" * \"%s\" -- ``Common Unix Printing System'', është mundësi gjeniale për\n"
+"stampim në sistemin tuaj, me satmpues lokal, apo stampues të cilët gjinden "
+"në\n"
+"anën tjetër të botës. Është i thjeshtë dhe mund të reagoj sikur server, apo\n"
+"sikur një klient i vjetër i sistemit stampues \"lpd\". Bëhet fjalë për një\n"
+"vegël tejet të fuqishme, mirëpo konfiguracionet e bazës janë të thjeshta "
+"sikur\n"
+"\"pdq\". Për ta konkuruar në një server \"lpd\" ju duhet të niseni në dimon\n"
+"\"cups-lpd\". \"%s\" përfshinë një interfac grafike për stampim ose për\n"
+"zgjedhjen e opcioneve administruese të stampuesit.\n"
+"\n"
+"Nëse e zgjidhni tani, e më vonë, nuk ju pëlqen sistemi stampues, ju keni\n"
+"mundësi ta ndryshoni duke nisur PrinterDrake nga Qendra Kontrolluese "
+"Mandriva\n"
+"duke klikuar mbi kopsën ekspert."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, fuzzy, c-format
+msgid "Expert"
+msgstr "Modë Ekspert"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX, tani do të hulumtoj gjdo IDE periferik në kompjuterin tuaj. Ai\n"
+"njashtu do të scanon, një apo më shumë kartela PCI SCSI në sistemin\n"
+"tuaj. Nëse një kartelë SCSI është gjetur nga DrakX, ai do të instaloj\n"
+"automatikisht pilotin e saj të nevojshëm.\n"
+"\n"
+"Në disa raste zbuluesi i materialit nuk është foolproof, dhe nuk\n"
+"mund të zbuloj ndonji pjesë, kështu ju duhet ta specifikoni me dorë.\n"
+"\n"
+"Nëse ju duhet të specifikoni kartelën tuaj PCI SCSI në mënyrë manuale,\n"
+"DrakX do të ju pyes për specifikimin e mundësive të tija. Ju duhet të\n"
+"lejoni, që DrakX të verifikoj automatikisht kartelën tuaj, për opcionet\n"
+"e nevojshme të përcaktuara.\n"
+"\n"
+"Është e mundur që, DrakX të mos jetë në gjendje ti verifikoj opcionet\n"
+"e nevojshme. Në këto raste, ju duhet ti përcaktoni manuelisht."
+
+#: ../help.pm:789
+#, fuzzy, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": nëse një kartelë e zërit është zbuluar në sistemin\n"
+"tuaj, ajo do të çfaqet këtu. Nëse shënimet mbi kartelën tuaj nuk janë ato\n"
+"që duhen të jenë, në sistemin tuaj, ju mund të klikoni mbi kopsën dhe ta\n"
+"zgjedhni një pilot tjetër."
+
+#: ../help.pm:794
+#, fuzzy, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Si çfaqës, DrakX do të prezentoj permbledhjen e infomacioneve të ndryshme\n"
+"në lidhje me sistemin tuaj. Duke u mvarur nga sistemi i juaj i instaluar\n"
+"që ju mund të posedoni disa apo të gjitha hyrjet vijuese. Secila hyrje "
+"është\n"
+"krijuar nga konfigurimi i artikullit që duhej të konfigurohet, duke e\n"
+"përcjellur me përmbledhje të shpejt nga konfigurimi i tanishëm. Klikoni\n"
+"mbi kopsën e përcaktuar \"%s\" për ta ndryshaur atë.\n"
+"\n"
+" * \"%s\": verifikoni tastierën e tanishme të konfiguruar, dhe ndryshone\n"
+"atë nëse është e nevojshme.\n"
+"\n"
+" * \"%s\": verifikoni shtetin tuaj të përcaktuar. Nëse ju nuk gjindeni\n"
+"në shtetin e dëshiruar, klikoni mbi kopsën \"%s\" dhe zgjedheni një\n"
+"shtet tjetër. Nëse shteti i jauj nuk gjindet në këtë listë, klikoni mbi\n"
+"kopsën \"%s\" për ta pranuar një listë më komplete.\n"
+"\n"
+"* \"%s\": Me marrëveshje, DrakX dedukton zonën orare të bazuar në\n"
+"shtetin tuaj të zgjedhur më parë. Ju mund të klikoni mbi kopsën \"%s\"nëse "
+"zona orare nuk është e saktë.\n"
+"\n"
+" * \"%s\": verifikone konfigurimin e minit tuaj dhe klikoni mbi kopsën\n"
+"nëse dëshironi ta ndryshoni atë.\n"
+"\n"
+" * \"%s\": duke klikuar mbi kopsën \"%s\" do të hapni\n"
+"asistentin konfigurues për stampues. Konsultone kapitullin e përcaktuar\n"
+"të ``Përcjellësit Nisës'' për më shumë informacione se si të konfigurohet\n"
+"një stampues i ri. Interfaci i prezentuar është i njëjtë me atë që është\n"
+"paraqitur gjatë instalimit\n"
+"\n"
+" * \"%s\": nëse një kartelë zëri është zbuluar në sistemin tuaj\n"
+"ajo do të çfaqet këtu. Nëse shënimet mbi kartelën tuaj nuk përputhen me\n"
+"shënimet e kartelës prezente në sistem, ju keni mundësi të klikoni mbi\n"
+"kopsën për të zgjedhur një pilot tjetër.\n"
+"\n"
+" * \"%s\": me marrëveshje, DrakX konfiguron interfacin tuaj grafikë,\n"
+"në vendosmëri \"800x600\" ose \"1024x768\". Nëse kjo nuk është prezentuar,\n"
+"kliko mbi kopsën \"%s\" për të rifilluar një konfigurim të ri.\n"
+"\n"
+" * \"%s\": nëse një kartelë TV zbulohet në sistemin tuaj, ajo do\n"
+"të çfaqet këtu. Nëse ju posedoni një kartelë TV, dhe ajo nuk zbulohet\n"
+"automatikisht, klikoni mbi kopsën \"%s\" për ta konfiguruar\n"
+"manuelisht.\n"
+"\n"
+" * \"%s\": nëse një kartelë ISDN zbulohet në sistemin tuaj, ajo\n"
+"do të çfaqet këtu. Ju mund të klikoni mbi kopsën \"%s\" për ti\n"
+"ndryshuar parametrat e bashkuar me kartelën.\n"
+"\n"
+" * \"%s\": Nëse dëshironi të konfiguroni Internetin apo rrjetin\n"
+"tuaj lokal hyni tani.\n"
+"\n"
+" * \"%s\": kjo hyrje ju ofron përcaktimin e nivelit të sigurisë\n"
+"siq është paraqitur në etapën e më parme ().\n"
+"\n"
+" * \"%s\": nëse ju planifikoni të kyqni makinën tuaj në Internet\n"
+"është ide tejet e mirë të mbroheni nga befasitë duke instalur murin e\n"
+"zjarrt. Konsultoni sektorët e caktuar të ``Përcjellësit Nisës'' për\n"
+"më shumë detaje mbi instalimet e murit të zjarrt.\n"
+"\n"
+" * \"%s\": nëse dëshironi ti ndryshoni konfigurimet e bootloader\n"
+"klikoni mbi këtë kopsë. Kjo është e rezervuar për përdorues të përparuar.\n"
+"\n"
+" * \"%s\": ju do të keni mundësinë këtu të kontrolloni më në fund se\n"
+"cilat servise duhet të nisen në makinën tuaj. Nëse ju planifikoni të\n"
+"përdorni këtë makinë sikur një server, është ide e mirë ta riçfaqni këtë\n"
+"instalim."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Kartelë ISDN"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Interfac Grafikë"
+
+#: ../help.pm:861
+#, fuzzy, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Zgjedheni diskun e fort (hard drive) që dëshironi ta zhdukni, për të\n"
+"instaluar një ndarje të re Mandriva Linux. Keni kujDES, të gjitha të dhënat\n"
+"do të zhduken, dhe nuk mund të rekuperohen!"
+
+#: ../help.pm:866
+#, fuzzy, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Klikoni mbi \"%s\" nëse ju dëshironi ti zhdukni të dhënat dhe ndarjet në\n"
+"diskun tuaj të fort. Keni kujDES, mbasi që të klikoni mbi \"%s\", ju nuk\n"
+"keni mundesi ti rikuperoni të dhenat dhe ndarjet prezente në këtë disk të\n"
+"fort, njashtu edhe nëse gjindet ndonji ndarje, me të dhëna Windows.\n"
+"\n"
+"Klikoni mbi \"%s\" që ta ndalni këtë operacion, pa i humbur të dhënat\n"
+"dhe ndarjet prezente në këtë disk të fort."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Tjetri ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Mbrapa"
+
diff --git a/perl-install/install/help/po/sr.po b/perl-install/install/help/po/sr.po
new file mode 100644
index 000000000..27aa3c97d
--- /dev/null
+++ b/perl-install/install/help/po/sr.po
@@ -0,0 +1,1902 @@
+# Cirilicni prevod drakbootdisk.po fajla.
+# Copyright (C) 1997-2003 MandrakeSERBIA.
+# Tomislav Jankovic <tomaja@net.yu>, 2000.
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2004-09-15 13:33+0200\n"
+"Last-Translator: Toma Jankovic <tomaja@net.yu>\n"
+"Language-Team: Serbian <i18n@mandrake.co.yu>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.9.6\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+
+#: ../help.pm:14
+#, fuzzy, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Пре него што наставите пажљиво прочитајте услове лиценце. Она\n"
+"покрива целу Mandriva Linux дистрибуцију, и уколико се слажете\n"
+"са свим условима који се налазе у њој, кликните на \"Прихватам\" тастер\n"
+"Уколико не прихватате, једноставно искључите \n"
+"рачунар."
+
+#: ../help.pm:20
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux је вишекориснички систем, а то значи да сваки корисник може имати "
+"сопствене\n"
+"поставке, сопствене фајлове, итд. Можете прочитати ``Упуство за кориснике''\n"
+"да би сазнали више о томе. Али за разлику од \"root\", који је уствари "
+"администратор, корисници\n"
+"које додате овде неће моћи да мењају било шта осим њихових\n"
+"фајлова и њихове конфигурације. Требало би да креирате најмање једног\n"
+"обичног корисника за себе. Тај рачун је онај на који треба да се логујете \n"
+"за рутинско коришћење. Иако је веома практично да се улогујете као \"root\" "
+"сваки дан,\n"
+"то може бити веома опасно! И најмања грешка може значити да ваш систем\n"
+"неће више радити. Уколико направите озбиљне грешке као обични корисник \n"
+"можете једино избгубити нешто информација, али не и цели систем.\n"
+"\n"
+"Прво, морате да унесете ваше право име. Ово није неопходно, наравно -\n"
+"јер можете приступити и изменити га када год желите. DrakX ће тада узети "
+"прву\n"
+"реч који сте унели и ставити га у простор за уношење имена корисника \"User\n"
+"name\". Ово је име које одрежени корисник треба да користи при логовању на\n"
+"систем. Можете га променити. УНакон тога морате унети лозинку овде.\n"
+"Обични, не-привилеговани корисничка лозинка није од већег значаја као она "
+"за\n"
+"\"root\" кориосника са сигурносне тачке гледања, али то није разлог за "
+"опуштање\n"
+"- након свега, ваши фајлови су у питању.\n"
+"\n"
+"Уколико кликнете на \"Прихвати корисникар\", можете додати још корисника. "
+"Додајте\n"
+"корисника за сваког вашег пријатеља: за вашег оца или сестру, на\n"
+"пример. Када заршите додавање свих жељених корисника, изаберите \"Завршено"
+"\".\n"
+"\n"
+"Кликом на тастер Напредно \"Напредно опције\" можете изменити default \"shell"
+"\"\n"
+"за тренутног корисника (bash по default). \n"
+"\n"
+"Када завршите са додавањем корисника, рачунар ће тражити да изаберете "
+"корисника\n"
+"који ће се аутоматски пријављивати на систем при његовом стартању. Уколико\n"
+"вас занима ова могућност (и не водите много рачуна о локалној\n"
+"сигурности), изаберите жељеног корисника и window менажер, а затим кликните "
+"на \"Следећи\n"
+"->\". Уколико нисте заинтересовани за ову опцију, деселектујте \"Да ли "
+"желите\n"
+"да користите ову опцију?\" ."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Да ли желите да користите ову опцију ?"
+
+#: ../help.pm:57
+#, fuzzy, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Изнад се налази листа постојећих Linux партиција које су детектоване\n"
+"на хард диску. Можете задржати избор који је направио чаробњак, јер је добар "
+"за a\n"
+"општу употребу. Уколико промените избор, морате бар изабрати root\n"
+"партицију (\"/\"). Немојте да бирате сувише малу партицију јер нећете моћи "
+"да\n"
+"инсталирате овољно софтвера. Уколико желите да податке ставиљате на посебну "
+"партицију ,\n"
+"морате да изаберете и \"/home\" (могуће је уколико имате више од једне\n"
+"Linux партиције).\n"
+"\n"
+"\n"
+"Информација: свака партиција је приказана на следећи начин: \"Име\", "
+"\"Капацитет\".\n"
+"\n"
+"\"Име\" је кодирано на следећи начин: \"тип хард диска\", \"број хард диска"
+"\",\n"
+"\"прој партиције\" (на пример, \"hda1\").\n"
+"\n"
+"\"Тип хард диска\" је \"hd\" уколико је хард диск IDE уређај и \"sd\"\n"
+"уколико је SCSI хард диск.\n"
+"\n"
+"\"Број хард диска\" је увек слово после \"hd\" или \"sd\". За IDE хард "
+"дискове:\n"
+"\n"
+" * \"a\" значи \"master хард диск на примарном IDE контролеру\",\n"
+"\n"
+" * \"b\" значи \"slave хард диск на примарном IDE контролоеру\",\n"
+"\n"
+" * \"c\" значи \"master хард диск на секундраном IDE контролоеру\",\n"
+"\n"
+" * \"d\" значи \"slave хард диск на секундарном IDE контролеру\".\n"
+"\n"
+"\n"
+"Са SCSI хард дисковима, a \"a\" значи \"примарни хард диск\", a \"b\" "
+"значи \n"
+"\"секундарни хард диск \", итд..."
+
+#: ../help.pm:88
+#, fuzzy, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linux инсталација се налази на неколико дискова илити CDROM-ова. "
+"DrakX\n"
+"зна уколико да уколико је селктовани пакет лоциран на другом CDROM-у и "
+"избациће\n"
+"тренутни CD те тражити од вас да убаците одговарајући."
+
+#: ../help.pm:95
+#, fuzzy, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Сада је време да одредимо које програме желите да инсталирате на ваш\n"
+"систем. Постоје хиљаде пакета доступних за инсталацију на Mandriva Linux, "
+"и \n"
+"да би их учинили доступнијим, смеђтени су у групе сличних апликација.\n"
+"\n"
+"Пакети су сортирани у групе у односу на одговарајућу употребу на вашој\n"
+"машини. Саме групе су сортиране у четири класе. Ове класе можете посматрати\n"
+"као контејнере за различите пакете\n"
+"Можете мешати апликације из различитих контејнера, тако да\n"
+"иинсталација ``Радна станица'' може да садржи апликације из \n"
+"контејнера ``Развојна станица'' .\n"
+"\n"
+" * \"Радна станица\": уколико планирате да користите вашу машину као радну "
+"станицу, изаберите једну или више одговарајућих група.\n"
+"\n"
+" * \"Развојна станица\": уколико машина треба да се користи за програмирање, "
+"изаберите жељену(е) групу(е).\n"
+"\n"
+" * \"Сервер\": уколико ће се машина користити као сервер, моћи ћете да \n"
+"изаберете које од најчешћих сервисажелите да инсталирате на\n"
+"машину.\n"
+"\n"
+" * \"Графичко Окружење\": на крају, овде ћете изабрати ваше\n"
+"омиљено графичко окружење. Морате изабрати бар једно да би имали\n"
+"графичку радну станицу!\n"
+"\n"
+"Кретањем курсора миша преко имена групе добићете кратко објашњење\n"
+"о тој групи. Уколико не селектујете ни једну групу када изводите\n"
+"основну инсталацију (за разлику од ажурирања), појавиће се дијалог\n"
+"са различитим предлозима за минималну инсталцију:\n"
+"\n"
+" * \"Са X-овима\": Инсталира неколико пакета ради графичког десктопа\n"
+"\n"
+" * \"Са основном документацијом\": Инсталира основни систем са основним "
+"алатима\n"
+"и њиховом дукументацијом. Овај мод је практичан за\n"
+"подешавање сервера\n"
+"\n"
+" * \"Стварно минимална инсталација\":Инсталира само што је минимано "
+"потребно,\n"
+"за рад Linux система,наравно само у командној линији.Ова инсталација "
+"заузима\n"
+"само 65 Mb\n"
+"\n"
+"Можете селектовати и \"Појединачно бирање пакета\", које је корисно "
+"уколико\n"
+"су вам познати понуђени пакети и желите да имате потпуну \n"
+"контролу над свим што ће бити инсталирано.\n"
+"\n"
+"Уколико сте покренули мод \"Ажурирање\", можете деселектовати све\n"
+"групе да би избегли инсталацију било ког новог пакета. Ово је корисно за "
+"поправљање или\n"
+"ажурирање постојећег система."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Ажурирање"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "With basic documentation"
+msgstr "Са основном документацијом (препорука!)"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "Truly minimal install"
+msgstr "Минимално инсталирај"
+
+#: ../help.pm:152
+#, fuzzy, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"На крају, у зависности од вашег избора да да бирате појединачне пакете\n"
+"или не, биће вам приказано стабло са свим пакетима класификованим\n"
+"по групама и подгрупама. Док претражујете стабло, можете селектовати целе\n"
+"групе, подгрупе, или индивидуалне пакете.\n"
+"\n"
+"Када код селектујете пакет на стаблу, опис се појављује са десне\n"
+"стране. да би могли да се упознате наменом пакета.\n"
+"\n"
+"!! Уколико је сервер пакет изабран случајно или као део\n"
+"целе групе, бићете упитани да ли заиста желите да инсталирате\n"
+"понуђене сервере. Под Mandriva Linux-ом, сви инсталирани\n"
+"сервери се стартују по default-у за време подизања система. Чак и ако су "
+"сигурни и немају\n"
+"познатих безбедносних пропуста до времена изласка дистрибуције, може се "
+"десити\n"
+"да сигурносне рупе буду откивене касније.\n"
+" Уколико не знате који појединачни сервис шта треба да ради\n"
+"или зашто се инсталира, онда кликните \"Не\". Кликом на \"Да\" ћете\n"
+"инсталирати приказане сервис и они ће бити покренути аутоматски по\n"
+"default-у. !!\n"
+"\n"
+"Опција \"Аутоматске међузависности\" једноставно искључује дијалог са "
+"упозорењем\n"
+"који се јавља сваки пут када инсталер аутоматски селектује пакете. Ово се\n"
+"јавља зато што он одређује да мора да задовољи зависности са другим\n"
+"пакетом да би успешно завршио инсталацију.\n"
+"\n"
+"Мала иконица флопи диска на дну листе вам омогућава да учитате\n"
+"листу пакета биране током претходне инсталације. Кликом на ову иконицу\n"
+"ће од вас бити тражено да убаците дискету креирану раније на крају \n"
+"претходне инсталације. Погледајте последњи пасус (корак) да би научили како "
+"да креирате \n"
+"такву дискету."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr ""
+
+#: ../help.pm:186
+#, fuzzy, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"Штампач\": ако кликнете на тастер \"Без штампача\" покренути ћете "
+"конфигурациони\n"
+"програм за штампаче. Погледајте и одговоарајуће упуство у``Starter\n"
+"Guide'' за више информација о томе како да подесите нови штампач. Програм "
+"које се\n"
+"тада активира је сличан оном који се користи током инсталације."
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Сада можете одабрати које сервисе желите да се стартају при подизању "
+"система.\n"
+"\n"
+"DrakX ће приказати све доступни сервисе на тренутној\n"
+"инсталацији. Прегледајте их пажљиво и деселектујте оне који вам неће бити "
+"увек\n"
+"потребни при подизању система.\n"
+"\n"
+"Можете добити и кратко објашњење о сервису селектовањем\n"
+"одређеног сервиса. Међутим, уколико нисте сигурни који од сервиса јесу или\n"
+"нису корисни, сигурније је оставити на default поставкама.\n"
+"\n"
+"!!На овом нивоу, будите веома пажљиви уколико желите да користите вашу "
+"машину као\n"
+"сервер: вероватно нећете желети да стартујете ниједан сервис који вам неће\n"
+"требати. Запамтите да неколико сервиса може бити опасно уколико\n"
+"су омогућени на серверу. Генерано говорећи, изаберите само сервисе које ћете "
+"стварно требати.\n"
+"!!"
+
+#: ../help.pm:209
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux управља са временом у GMT (Greenwich Mean Time) и преводи га у\n"
+"локално време у зависности коју сте временску зону изабрали. Међути, могуће "
+"је\n"
+"ово и деактивирати деселектовањем \"Подеси хардверски часовник на GMT\" тако "
+"да хардверски часовник\n"
+"хаима исто време као и системски часовник. Ово је корисно када на машини "
+"имате\n"
+"још један оперативни систем као што је Windows.\n"
+"\n"
+"Опција \"Аутоматска сихронизација часовника\" ће аутоматски регулисати\n"
+"часовник конектовањем на удаљени временски сервер на Интернету. На \n"
+"листи која је приказана, изаберите сервер који се налази близу вас. "
+"Наравно,\n"
+"морате имати исправно подешену Интернет конекцију да би могли да користите "
+"ову опцију. Она ће\n"
+"уствари инсталирати на вашу машину временски сервер који се помогућности "
+"може користити и од\n"
+"стране других машина на вашој локалној мрежи."
+
+#: ../help.pm:220
+#, fuzzy, c-format
+msgid "Automatic time synchronization"
+msgstr "Аутоматска синхронизација времена (преко NTP-а)"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Графичка картица\n"
+"\n"
+" Програм за инсталацију обично аутоматски детектује и подешава\n"
+"графичку карту која је инсталирана у вашој машини. Уколико то није случај, "
+"можете\n"
+"да је изаберете сами са листе понуђених картица.\n"
+"\n"
+" У случају да је више графичких сервера доступно за вашу картицу, са или\n"
+"без 3D акцелерације, онда сами одаберите ону која најбоље одговара\n"
+"вашим потребама."
+
+#: ../help.pm:234
+#, fuzzy, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (или X Window Систем) је срце GNU/Linux графичког интерфејса\n"
+"на који се ослањају сва графичка окружења (KDE, GNOME, AfterStep,\n"
+"WindowMaker, итд.) која се налазе у Mandriva Linux-у.\n"
+"\n"
+"Биће вам приказана листа са различитим параметрима чијом изменом\n"
+"можете добити оптималан графички приказ: Графичка картица\n"
+"\n"
+"\n"
+" Програм за инсталацију обично аутоматски детектује и подешава\n"
+"графичку карту која се налази у вашем рачуну. Уколико то није случај, "
+"можете\n"
+"сами да изаберете картицу са листе.\n"
+"\n"
+" Уколико су различити сервери доступни за вашу картицу, са или\n"
+"вез 3D акцелерације, онда треба да изаберете онај који највише\n"
+"одговара вашим потребама.\n"
+"\n"
+"\n"
+"\n"
+"Монитор\n"
+"\n"
+" Програм за инсталацију обично аутоматски детектује и подешава\n"
+"монитор који повезан са вашим рачунаром. Уколико се то не деси можете "
+"изабрати\n"
+"сами са листе понуђених монитора\n"
+"\n"
+" Овде можете изабрати резолуцију и број боја од\n"
+"оних које су понуђене за ваш хардвер. Изаберите оно што највише одговара "
+"вашим потребама\n"
+"(ове опције ћете моћи изменити и након инсталације). Изабрана\n"
+"конфигурације се види на монитору.\n"
+"\n"
+"\n"
+"\n"
+"Тест\n"
+"\n"
+" систем ће покушати да отвори графички екран у жељеној\n"
+"резолуцији. Уколико можете да видите поруку током теста одговорите са \"Да"
+"\",\n"
+"и DrakX ће наставити са следећим кораком. Уколико не можете да видите "
+"поруку, то\n"
+"значи да је неки део аутотедекције био неправилан и\n"
+"тест ће аутоматски завршити након 12 секунди, отаварајући мени за\n"
+"конфигурацију. Измените опције све док не добијете коректан графички "
+"приказ.\n"
+"\n"
+"\n"
+"\n"
+"Опције\n"
+"\n"
+" Овде можете да изаберете да ли желите да ваш рачуанр аутоматски\n"
+"пређе на графички интерфејс при стартању. Очигледно, изабраћете\n"
+"\"Не\" уколико је ваша машина сервер, или уколико нисте успели да успешно \n"
+"подесите графички приказ."
+
+#: ../help.pm:291
+#, fuzzy, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Монитор\n"
+"\n"
+" Програм за инсталацију обично аутоматски детектује и подешава\n"
+"монитор повезан на вашу машину. Уколико се то недеси, можете сами\n"
+"сами да изаберете модел монитора са листе."
+
+#: ../help.pm:298
+#, fuzzy, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Резолуција\n"
+"\n"
+" Овде можете изабрати резолуцију и број боја које су\n"
+"доступне за ваш хардвер. Изаберите оно што највише одговара вашим потребама "
+"(ове опције ћете моћи\n"
+"да промените и након инсталације). Пример изабране\n"
+"конфигурације је приказан на монитору."
+
+#: ../help.pm:306
+#, fuzzy, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"У случају да су доступни различити сервери за вашу картицу, са или\n"
+"без 3D акцелерације, најбоље је да изаберете сервер који\n"
+"највише одговара вашим потребама."
+
+#: ../help.pm:311
+#, fuzzy, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"На крају, бићете упитани да ли желите графички интерфејс\n"
+"при стартању система. Ово питање ће вам бити поставњено чак и ако нисте "
+"тестирали\n"
+"конфигурацију. Наравно, одговорићете \"Не\" уколико ваша машина предстаља\n"
+"сервер, или уколико нисте успешно подесили\n"
+"дисплејед."
+
+#: ../help.pm:319
+#, fuzzy, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"У овом тренутку, морате да изаберете где ћете инсталирати\n"
+"Mandriva Linux оперативни систем на ваш хард диск. Уколико је празан или\n"
+"постојећи оперативни систем користи сав постојећи простор на диску, треба да "
+"га\n"
+"партиционирате. У основи, партиционирање хард диска се састоји логичког\n"
+"дељења да би обезбедили простор за инсталацију ваш нови Mandriva Linux "
+"систем.\n"
+"\n"
+"Пошто су ефекти процеса партиционирања обично неповратни,\n"
+"партиционирање може бити прилично стресан процес за неискусне кориснике.\n"
+"Овај чаробњак га поједностављује. Пре почетка, консултујте упуство и не "
+"журите.\n"
+"\n"
+"Уколико сте покренули инсталацију у Експерт моду, покренућете\n"
+"DiskDrake, Mandriva Linux-ов алат за партиције, који вам дозвољавав да\n"
+"фино подесите ваше партиције. Погледајте DiskDrake секцију у ``User "
+"Guide''.\n"
+"Из инсталационог интерфејса, можете користити чаробњаке као што је описано "
+"овде\n"
+"кликом на дијалогов \"Чаробњак\" тастер.\n"
+"\n"
+"Уколико су партиције већ креиране, од предходне инсталације \n"
+"иликреиране другим алатом за партиционирање, морате изабрати \n"
+" на које од њих ћете инсталирати Linux систем.\n"
+"\n"
+"Уколико партиције нису дефинисане, марате да их креирате. \n"
+"Да би то урадили, можете да користите горе постављени чаробњак. У "
+"зависности \n"
+"од конфигурације хард диска, постоји неколико могућности:\n"
+"\n"
+" * \"Користи слободан простор\": ова опција ће једноставно довести до "
+"аутоматског\n"
+"партиционирања вашег празног(их) диска(ова). Неће вам бити постављана даљна "
+"питања;\n"
+"\n"
+" * \"Користи постојеће партиције\": чаробњак је детектовао једну или више \n"
+"постојећих Linux партиција на вашем хард диску. Уколико\n"
+"желите да њихј користите, изаберите ову опцију.\n"
+"\n"
+" * \"Користи слободан простор на Windows партицији\": уколико је Microsoft "
+"Windows\n"
+"инсталиран на вашем диску и он заузима сав постојећи простор на њему,\n"
+"мораћете да креирате слободан простор за Linux. Да би то урадили, можете "
+"избрисати\n"
+"Microsoft Windows партицију и податке (погледајте `Брисање целог диска'' или "
+"``Експерт\n"
+"мод'' опције) или да промените величину Microsoft Windows партиције. Промена "
+"величине\n"
+"се може исвести без губљења података, али се птепоручује да прво "
+"дефрагментирате\n"
+"Windows партицију из самог Windows-а. Backup података такође није лоша "
+"идеја..\n"
+"Ово решење се препоручује уколико желите да користите Mandriva Linux и\n"
+"Microsoft Windows на истом компјутеру.\n"
+"\n"
+" Пре него што изаберете ову опцију, морате да разумете да након ове "
+"процедуре\n"
+"величина ваше Microsoft Windows партиције ће бити мања\n"
+"у односу на тренутно стање. Имађете мање слободног простора у Microsoft\n"
+"Windows-у за смештање података или инсталаију новог софтвера;\n"
+"\n"
+" * \"Брисање цвелог диска\": уколико желите да избришете све податке и све\n"
+"партиције који постоје на вашем хард диску и замените их вашим\n"
+"новим Mandriva Linux системом, можете да изаберете ову оцију. Будите\n"
+"пажљивиса овом опцијом, јер нећете бити у могућности\n"
+"да повратите старо стање након потврде.\n"
+"\n"
+" !! Уколико изаберете ову опцију, сви подаци на диску ће бити "
+"изгубљени. !!\n"
+"\n"
+" * \"Уклони Windows\": ова опција ће једноставно избрисати све са хард диска "
+"и\n"
+"креирати нове партиције. Сви подаци на вашем диску\n"
+"ће бити избрисани;\n"
+"\n"
+" !! Уколико изаберете ову опцију, сви подаци на диску ће бити "
+"изгубљени. !!\n"
+"\n"
+" * \"Custom партиционисање диска\": изаберите ову опцију уколико желите\n"
+"да ручно ваш хард диск. Будите пажљиви -- ово је моћан\n"
+"али опасан избор и врло лако можете изгубити своје податке. Због тога се\n"
+"ова опција препоручује само онима који имају искуства\n"
+"од раније. За више података о томе како да користите\n"
+"програм DiskDrake, погледајте поглавље ``Управљајте својим партицијама '' у\n"
+"``Почетнички водич''."
+
+#: ../help.pm:377
+#, fuzzy, c-format
+msgid "Use existing partition"
+msgstr "Користи постојећу партицију"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Избриши цели диск"
+
+#: ../help.pm:380
+#, fuzzy, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"И стигли сте до краја. Инсталација је сада завршена и ваш GNU/Linux систем "
+"је \n"
+"спреман за употребу. Само кликните на \"Следећи -\" да би рестартовали "
+"систем. Можете покренути\n"
+"GNU/Linux или Windows, шта год више преферирате (уколико имате инсталирана "
+"два система), чим\n"
+"се рачунар поново покрене.\n"
+"\n"
+"Тастер Напредно \"%s\" (само у Експерт моду) приказује још два тастера за:\n"
+"\n"
+" * \"креирање ауто-инсталационе дискете\": ради креирања инсталационог флопи "
+"диска\n"
+"који ће аутоматски покренути целу инсталацију без помоћи оператора\n"
+", слично овој инсталацији коју сте управо извели.\n"
+"\n"
+" Можете приметити да су две различите опције доступне након притиска на "
+"тастер:\n"
+"\n"
+" * \"Са понављањем\". Ово је делом аутоматизирана инсталација јер корак "
+"са\n"
+"партиционирањем диска остаје интерактиван (само он).\n"
+"\n"
+" * \"Аутоматизовано\". Потпуно аутоматизована инсталација: хард диск се у "
+"потпуности\n"
+"форматизује, и сви подаци ће бити изгубљени.\n"
+"\n"
+" Ова опција је веома корисна уколико изводите велики број сличних "
+"инсталација\n"
+"на већем броју машина. Погледајте секцију о ауто инсталацији на нашем web "
+"сајту.\n"
+"\n"
+" * \"Сачувај селекцију пакета\"(*) : снима селекцију пакета који сте\n"
+"направили у овој инсталацији. Тако, да када будете изводили другу "
+"инсталацију, убаците дискету\n"
+"и покренете помоћни екран притиском на\n"
+"[F1] тастер, и захтевом за >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) Морате да иамте FAT-форматирану дискету (да би је форматирали под GNU/"
+"Linux-ом, укуцајте\n"
+"\"mformat a:\")"
+
+#: ../help.pm:412
+#, fuzzy, c-format
+msgid "Generate auto-install floppy"
+msgstr "Креирај ауто инсталациону дискету"
+
+#: ../help.pm:415
+#, fuzzy, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Свака партиција која је новодефинисана мора бити\n"
+"форматирана за уптребу (форматирање значи креирање датотечног(фајл) "
+"система).\n"
+"\n"
+"Сада можда желите да реформатирате постојеће партиције да би избрисали\n"
+"податке које садрже. Уколико желите то, изаберите партиције \n"
+"које желите да форматизујете.\n"
+"\n"
+"\n"
+"Запамтите да није потребно да реформатирате све постојеће партиције.\n"
+"Морате да реформатирате партиције које садрже оперативни систем \n"
+"(као што су \"/\", \"/usr\" или \"/var\") али не морате да реформатирате "
+"партиције које садрже податке\n"
+"које желите да задржите (обично /home).\n"
+"\n"
+"Пазите при бирању партиција, после форматирања, св подаци ће \n"
+"бити избрисани и нећете их моћи повратити.\n"
+"\n"
+"Кликните на \"Следеће ->\" када буде спремни да форматирате партиције\n"
+"\n"
+"Кликните на \"<- Претходно\" ако желите да изаберете другу партицију за свој "
+"нови\n"
+"Mandriva Linux систем.\n"
+"\n"
+"Кликните на \"Напредно\" уколико желите да изаберете партиције које ће бити "
+"проверене\n"
+"да ли имају лоше секторе."
+
+#: ../help.pm:437
+#, fuzzy, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"У време када будете инсталирали Mandriva Linux, врло је могуће да ће неки\n"
+"пакети бити ажурирани у односу на иницијално издање. Неки багови могу \n"
+"бити исправљени, а сигурносни пропусти затворене. Да би могли да користите "
+"ове новије верзије\n"
+"ми вам предлажемо да их скинете са Интернета. Изаберите\n"
+"Да или \"Да\" уколико имате подешену Интернет конекцију, или Не или \"No\" "
+"уколико више волите да\n"
+"инсталирате те нове пакете касније.\n"
+"\n"
+"Избором на \"Да\" приказује се листа места са којих можете да добавите ное "
+"верзије \n"
+"пакета. Изаберите место које вам је најближе. Затим ће се појавити стабло са "
+"слелекцијом пакета:\n"
+"прегледајте селекцију, и притисните \"Инсталирај\" да би скинули и\n"
+"инсталирали селектовни(е) пакет(е), или \"Поништи\" за одустајање."
+
+#: ../help.pm:450
+#, fuzzy, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"на овом месту, DrakX ће вам дозволити да одредите жељени ниво сигурности\n"
+"за ваш рачунар. Као неписано правило, ниво сигурности би требао\n"
+"већи уколико машина садржи важне податке, или уколико је машина\n"
+"директно везана на Интернет. Спуштање сигурности углавном\n"
+"се види у опвећању лакоће рада са системом. Погледајте \"msec\"\n"
+"поглавље у ``Упупство за командну линију''да би добавили више информација\n"
+"о нивиоима сигурности.\n"
+"\n"
+"Уколико не знате да изаберете, задржите default поставку."
+
+#: ../help.pm:461
+#, fuzzy, c-format
+msgid "Security Administrator"
+msgstr "Администратор за сигурност:"
+
+#: ../help.pm:464
+#, fuzzy, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"На овој тачки, морате избрати коју партицију(e) желите да користите за\n"
+"инсталацију новог Mandriva Linux система. Уколико су партиције\n"
+"већ дефинисане (од предходне инсталације или од стране\n"
+"другог алата за партиције), можете да користите постојеће партиције.\n"
+"У другим случајевима,\n"
+"хард диск партиције морају бити дефинисане.\n"
+"\n"
+"Да би креирали партиције, морате прво изабрати хард диск. Можете изабрати\n"
+"диск за партиционирање кликом на \"hda\" за први IDE диск, \"hdb\" или \n"
+"за други или \"sda\" за први SCSI диск итд.\n"
+"\n"
+"За партиционирање селектованог хард диска, можете користити следеће опције:\n"
+"\n"
+" * \"Очисти све\": ова опција брише све партиције на изабраном хард \n"
+"диску.\n"
+"\n"
+" * \"Auto алоцирање\": ова опција дозвољава да аутоматски креирате Ext2 "
+"и \n"
+"swap партиције на слободном простору \n"
+" хард диска.\n"
+"\n"
+"\"Још\": даје приступ додатним опцијама:\n"
+"\n"
+" * \"Спаси табелу партиција\": уколико је ваша табела партиција "
+"оштећена, \n"
+"можете да пробате да је опоравите користећи ову опцију. Будите\n"
+" пажљиви и знајте да може да и не успе.\n"
+"\n"
+" * \"Врати на старо\": ова опција ће поништити измену.\n"
+"\n"
+" * \"Поновно учитавање\": ову опцију можете користити уколико желите да \n"
+"поништитисве промене и учитате иницијалну табелу партиција\n"
+"\n"
+" * \"Чаробњак\": уколико желите да користите чаробњака за партиционирање \n"
+"хард диска, изаберите ову опцију. Препоручена је укоико\n"
+" немате много знања о партцијама.\n"
+"\n"
+" * \"Поврати са дискете\": уколико сте снимили табелу партиција на \n"
+"дискету током претходне инсталације, можете је\n"
+" вратити са овом опцијом.\n"
+"\n"
+" * \"Сними на дискету\": уколико желите да да снимите табелу партиција на\n"
+"дискету да би могли касније да је повратите, можете да искористите\n"
+" ову опцију. Нарочито препоручујемо ову опцију\n"
+"\n"
+" * \"Урађено\": када завршите са партиционирањем хард диска, искористите "
+"ову опцију да би снимили промене.\n"
+"\n"
+"Када дефинишете величину партиција, можете коначно подесити величину\n"
+"партиција помоћу тастера са стрелицама на вашој стрелицама\n"
+"За више информација, можете за сваку оцпију добити кретањем помоћу "
+"тастатуре: навигацијом кроз партиције помоћу [Tab] тастера и [Up/Down] "
+"стрелица.\n"
+"\n"
+"Када је партиција изабрана, можете користити:\n"
+"\n"
+" * Ctrl-c за креирање нове партиције (када је изабрана празна партиција);\n"
+"\n"
+" * Ctrl-d за брисање партиције;\n"
+"\n"
+" * Ctrl-m за постављање тачке монтирања.\n"
+"\n"
+"Да би добили информације о различитим доступним типовима система, "
+"прочитајте\n"
+"ext2FS поглавље из ``Упуства''.\n"
+"\n"
+"Уколико радите инсталацију на PPC Машину, можда ћете желети да креирате "
+"малу\n"
+"HFS 'bootstrap' партицију од најмање 1MB за употребу\n"
+"yaboot стартера. Уколико се двоумите да ову партицију направите мало већом,\n"
+"на пример 50MB, можете искористити тај простор за смештање\n"
+"резервног кернела и ramdisk image за стартање у хитним ситуацијама."
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Removable media auto-mounting"
+msgstr "Аутомонтирање преносивог медија"
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Пређи на нормални мод"
+
+#: ../help.pm:536
+#, fuzzy, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Једна или више Microsoft Windows партиција је детектовано \n"
+"на хард диску. Изаберите коју од њих желите да смањите да би инсталирали\n"
+"нови Mandriva Linux оперативни систем.\n"
+"\n"
+"Свака партиција је исписана на следећи начин: \"Име Linux-а\",\"Име Windows-а"
+"\"\n"
+"\"Капацитет\".\n"
+"\n"
+"\"Име Linux-а\" је кодирано на следећи начин: \"тип хард диска\", \"број "
+"хард диска\",\n"
+"\"број партиције\" (на пример, \"hda1\").\n"
+"\n"
+"\"Тип хард диска\" је \"hd\" уколико је хард диск ID уређај и \"sd\"\n"
+"уколико је SCSI хард диск.\n"
+"\n"
+"\"Број хард диска\" је увек слово после \"hd\" или \"sd\". Са IDE хард "
+"дисковима:\n"
+"\n"
+" * \"a\" значи \"master хард диск на примарном IDE контролеру\",\n"
+"\n"
+" * \"b\" значи \"slave хард диск на примарном IDE контролоеру\",\n"
+"\n"
+" * \"c\" значи \"master хард диск на секундраном IDE контролоеру\",\n"
+"\n"
+" * \"d\" значи \"slave хард диск на секундарном IDE контролеру\".\n"
+"\n"
+"Са SCSI хард дисковима, \"a\" значи \"примарни хард диск\", a \"b\" значи "
+"\"секундарни хард диск \", итд.\n"
+"\n"
+"\"Име Windows-а\" је слово хард диска под Windows-ом (први диск\n"
+"или партиција се зове \"C:\")."
+
+#: ../help.pm:567
+#, fuzzy, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"Држава\": проверава тренутни избор земље. Уколико се не налазите у овојс\n"
+"држави, кликните на тастер и и изаберите другу."
+
+#: ../help.pm:572
+#, fuzzy, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Овај корак се активира само у случају да постоји стара GNU/Linux партиција "
+"на\n"
+"вашиој мошини.\n"
+"\n"
+"DrakX сада треба да зна да ли желите да изведете чисту инсталацију или "
+"ажурирање\n"
+"постојећег Mandriva Linux система:\n"
+"\n"
+" * \"Инсталација\": У већини случајева, ова опција комплетно брише стари\n"
+"систем. Уколико желите да измените број партиција, или\n"
+"промените фајл систем, требали би да користите ову опцију. Ипак, у "
+"зависности од\n"
+"шеме партиција, можете заштитити неке постојеће податке\n"
+"од форматирања.\n"
+"\n"
+" * \"Ажурирање\": ова инсталациона класа вам дозвољава да урадите ажурирање "
+"пакета\n"
+"на тренутно инсталираном Mandriva Linux систему. Ваша тренутна\n"
+"шема партиција и кориснички подаци се не мењају. Већина других\n"
+"конфигурационих корака и даље остаје доступна, слично стандардној "
+"инсталацији.\n"
+"\n"
+"Употреба опције ``Ажурирање'' би требало да буде без проблема на Mandriva "
+"Linux системима\n"
+"од верзије \"8.1\" или новије. Извођење ажурирања на верзијама \n"
+"Mandriva Linux пре \"8.1\" није препоручљиво."
+
+#: ../help.pm:594
+#, fuzzy, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"У принципу, DrakX бира десну тастатуру за вас (у зависности од тога који\n"
+"сте језик изабрали) и чак и нећете видети овај корак. Ипак, може\n"
+"се десити да нисте добили тастатуру која одговара вашем језику: на\n"
+"пример, уколико сте Швајцарац који говори енглески, вероватно ћете желети\n"
+"Швајцарску тастатуру. Или уколико говорите Енглески али се налазите\n"
+"у Квебеку, можете се наћи у истој ситуацији. У оба\n"
+"случаја, мораћете да се вратите на овај инсталациони корак и изаберете\n"
+"одговарајућу тастатуру са листе.\n"
+"\n"
+"Кликните на тастер \"Још\" да би добили комплетну листу\n"
+"подржаних тастатура.\n"
+"\n"
+"Уколико изаберете распоред тастатуре базиран на non-Latin алфабету, следећи\n"
+"дијалог ће вам понудити да изаберете комбинацију тастера који ће служити\n"
+"да мењате Latin и non-Latin распореде."
+
+#: ../help.pm:612
+#, fuzzy, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Ваш избор јеика ће утицати на језик документације,\n"
+"инсталације и система уопште. Прво изаберите регион у којем се налазите,\n"
+"а затим језик који говорите.\n"
+"\n"
+"Кликом на тастер \"Напредно\" омогућићете себи да видите друге\n"
+"језике које можете инсталирати на вашу радну страницу. Бирањем других "
+"језика\n"
+"ћете инсталирати фајлове везане (за специфициране језике) за документацију "
+"и\n"
+"апликације. На пример, уколико ће на вашем рачунару хостовати корисници из "
+"Шпаније\n"
+"изаберите Енглески као главни а на стаблу\n"
+"означите и \"Шпаниски|Шпанија\".\n"
+"\n"
+"Запамтите да можете инсталирати више језика. Када изаберете све жељене\n"
+"додатне локализације кликните на тастер \"У реду\" да би наставили.\n"
+"\n"
+"Да би мењали различите језике који су инсталирани на вашем систему, можете "
+"покренути\n"
+" \"/usr/sbin/localedrake\" команду као \"root\" да би променили језик који "
+"се \n"
+"користи у целом систему. покретањем команде као регуларни корисник само ћете "
+"променити\n"
+"поставке језика за датог корисника."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr ""
+
+#: ../help.pm:653
+#, fuzzy, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"DrakX генерално детектује број тастера који ваш миш посдедује. Уколико се то "
+"не деси\n"
+"он ће претпоставити да миш са два тастера и подесиће емулацију трећег "
+"тастера.\n"
+"DrakX ће аутоматски препознати да ли се ради о PS/2, серијском или USB "
+"мишу.\n"
+"\n"
+"Уколико желите да специфицирате други тип миша одаберите одговарајући\n"
+"тип са листе.\n"
+"\n"
+"Уколико изберете миша који се разликује од default-а појавиће вам се\n"
+"тест екран. Користите тастере и точкиће да би проверили да ли су поставке\n"
+"добре. Уколико миш не ради исправно притисните тастер за размак (space bar) "
+"или\n"
+"тастер [Return] да би поништили тест и вратили се да би покушали поново.\n"
+"\n"
+"Точкићи на мишу се понекад не детектују аутоматски, па ћете сами морати да\n"
+"изаберете миша са листе. Пазите да изаберете одговарајући везано\n"
+"за порт на који је миш повезан. након избора миша\n"
+"и притиска на тастер \"Следећи ->\", слика миша ће бити приказана на "
+"екрану.\n"
+"Покрените тошкић да би проверили да ли је правилно активиран. Када \n"
+"видите да се точкић на екрану помера као и точкић на мишу, тестирајте\n"
+"тастере и проверите да ли курсор на екрани прати ваше \n"
+"померање миша."
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "with Wheel emulation"
+msgstr "Емулација тастера"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Молим, изаберите одговарајући порт. На пример, COM1 порт под MS Windows-ом\n"
+" у Linux-у има ознаку ttyS0."
+
+#: ../help.pm:691
+#, fuzzy, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Ово је најзаначајнија тачка у одлучивању о сигурности вашег GNU/Linux\n"
+"система: морате да унесете \"root\" лозинку. \"root\" је администратор\n"
+"система и једини је овлаштен да врши измене, додаје кориснике,\n"
+"мења основну конфигурацију система, итд. Укратко, \"root\" може\n"
+"да уради све! Због тога морате да изаберете лозинку која тешко може да се\n"
+"погоди - DrakX ће вам рећи уколико је она сувише једноставна. Као што можете "
+"да видите, можете да\n"
+"изаберете и да не унесете лозинку, али вам озбиљно препоручујемо да то\n"
+"нерадите из једног разлога: немојте да мислите да то што сте стартовали GNU/"
+"Linux да\n"
+"ваши други оперативни системи сигурни од грешака. Како \"root\" може да\n"
+"прескочи сва ограничења и ненамерно избрише све податке на партицији\n"
+"неопрезним приступом, важно је да је тешко\n"
+"постати \"root\".\n"
+"\n"
+"Лозинка треба да буде мешавина бројева и слова и треба да садржи најмање 8\n"
+"карактера. Никада не записујте на папир \"root\" лозинку - тако лако\n"
+"можете угрозити систем.\n"
+"\n"
+"Међутим, потрудите се да лозинка не буде превише дуга или комликована зато\n"
+"што треба да је запамтите без много напора.\n"
+"\n"
+"Лозинка неће бити приказана на екрану када је укуцавате. Срећом, моћи ћете\n"
+"да је укуцате два пута да би смањили могућност греше у куцању.\n"
+"Уколико ипак погрешите у куцању, али два пута, ова\n"
+"``неисправна'' лозинка ће бити кориштена када се будете први пут "
+"конектовали.\n"
+"\n"
+"У Експертномм моду, бићете питани да ли ћете се конектовати на\n"
+"аутентификациони сервер, као што је NIS или LDAP.\n"
+"\n"
+"Уколико ваша мрежа користи LDAP (или NIS) протокол за аутентификацију, "
+"селектујте\n"
+"\"LDAP\" (или \"NIS\") за аутентификацију. Уколико то незнате, питајте\n"
+"вашег мрежног администратора.\n"
+"\n"
+"Уколико се ваш рачунар не конектује на администриране мреже, треба да\n"
+"изаберете \"Локални фајлови\" за аутентификацију."
+
+#: ../help.pm:725
+#, fuzzy, c-format
+msgid "authentication"
+msgstr "Аутентификација"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, fuzzy, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Сада треба да изаберемо систем за штампање за ваш рачунар. Други OS-ови вам\n"
+"нуде један, али вам Mandriva Linux нуди чак три.\n"
+"\n"
+" * \"pdq\" што значи ``print, do not queue'', је избор за оне који имају\n"
+"директни конекцију са својим штампачем и желите да избегнете\n"
+"било какве застоје штампача, а при томе немате мрежне штампаче. Он може да "
+"се користи\n"
+"само на веома једноставним мрежама и помало је и спор за мреже. Изаберите "
+"\"pdq\"\n"
+"уколико упознајете GNU/Linux. Ваш избор наравно можете променити\n"
+"након иснталације покрећући PrinterDrake from из Mandriva Контролног\n"
+"Центра и кликом на expert тастер.\n"
+"\n"
+" * \"%s\"``Common Unix Printing System'', је изврстан за штампање на вашем\n"
+"локалоном штампачу као и за штампање по целој земаљској кугли. Он је "
+"једноставан и може се понашати\n"
+"као сервер или као клијент са старог \"lpd\" ситема за штампање. Такође, он\n"
+"је компатибилан са системима који су раније постојали. Он може много тога, "
+"али\n"
+"основно подешвање је једноставно као и код \"pdq\". Уколико треба да "
+"емулирате\n"
+"an \"lpd\" сервер, морате да покренете \"cups-lpd\" демон. Он поседује\n"
+"графички интерфејс за штапање и избор опција за штампање.\n"
+"\n"
+"Ако то ниј случај, CUPS је онда права ствар јер је једноставнији и бољи за "
+"рад преко\n"
+"мрежа."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Стручни"
+
+#: ../help.pm:771
+#, fuzzy, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX сада треба да детектује IDE уређаје присутне у вешем рачунару.DrakX "
+"ће \n"
+"потражити PCI SCSI адаптер(e). Уколико DrakX пронађе SCSI адаптер(е) и буде "
+"знао који управљачки програм \n"
+"(драјвер) користион ће га(их) аутоматски инсталирати.\n"
+"\n"
+"Пошто се може десити да при детекцији нека компонента не буде детектована \n"
+"DrakX ће вас упитати да ли имате PCI SCSI адаптер. Кликните \"Да\" \n"
+"уколико знате да имате SCSI адаптер на својој машини. На приказаној листи \n"
+"моћи ћете да изаберете одговоарајући.\n"
+"Кликните \"Не\" уколико немате SCSI адаптера у машини. Уколико нисте \n"
+"сигурни\n"
+"проверите на листи детектованог хардвера селектовањем \"Погледај инфо о \n"
+"хардверу\"и кликом на \"У реду\". Прегледајте\n"
+"листу а онда кикните на \"У реду\" да би се вратили на питање о SCSI \n"
+"уређајима.\n"
+"\n"
+"Уколико морате ручно да специфицирате ваш PCI SCSI адаптер, DrakX ће\n"
+"вас упитати да одредите опције за њега.Треба ли би да дозволите DrakX-у да\n"
+"испита адаптер ради тих опција. Ово обично и успе.\n"
+"\n"
+"Уколико DrakX није у стању да испита опције које су потребне, мораћете да \n"
+"сами одредите опције за драјвер.\n"
+"Погледајте и Инсталациони водич (3 поглавље, секција \"Прикупљање \n"
+"информација о вашем хардверу\")\n"
+"да би сазнали како да прибавите информације о параметрима потребним за \n"
+"хардвер,са своје Windows инсталације (уколико је имате на систему),\n"
+"докуменатцију о хардверу, или са произвођачевог \n"
+"веб сајта (уколико имате приступ интернету)."
+
+#: ../help.pm:789
+#, fuzzy, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"Звучна картица\": уколико је звучна картица детектована на вашем систему, "
+"онда је приказана\n"
+"овде. Уколико приметите да приказана картица није она која је стварно "
+"присутна\n"
+"у вашем рачунару, можете кликнути на тастер и\n"
+"други драјвер."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "ISDN card"
+msgstr "Интерна ISDN картица"
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "Graphical Interface"
+msgstr "Графички интерфејс"
+
+#: ../help.pm:861
+#, fuzzy, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Изаберите хард диск који желите да избришете да би инсталирали нову Mandriva "
+"Linux \n"
+"партицију. Будите пажљиви, сви подаци на њему ће бити изгубљени\n"
+"и неће се моћи повратити!"
+
+#: ../help.pm:866
+#, fuzzy, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Кликните на \"Следеће ->\" уколико желите да избришете све податке и \n"
+"партиције на овом хард диску.Будите пажљиви, после клика на \"У реду\", ви\n"
+"нећете моћи да повратите било који податак или партицију на хард диску,\n"
+"па и било које Windows податке.\n"
+"\n"
+"Кликните на \"<- Ппретходно\" да би поништи ову операцију без губљења "
+"података и\n"
+"партиција које су присутне на овом хард диску."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Следећи ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Претходни"
+
diff --git a/perl-install/install/help/po/sr@Latn.po b/perl-install/install/help/po/sr@Latn.po
new file mode 100644
index 000000000..6e57f292d
--- /dev/null
+++ b/perl-install/install/help/po/sr@Latn.po
@@ -0,0 +1,1909 @@
+# Cirilicni prevod drakbootdisk.po fajla.
+# Copyright (C) 1997-2003 MandrakeSERBIA.
+# Tomislav Jankovic <tomaja@net.yu>, 2000.
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2004-09-15 13:34+0200\n"
+"Last-Translator: Toma Jankovic_<tomaja@net.yu>\n"
+"Language-Team: Serbian <i18n@mandrake.co.yu>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.9.6\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+
+#: ../help.pm:14
+#, fuzzy, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Pre nego što nastavite pažljivo pročitajte uslove licence. Ona\n"
+"pokriva celu Mandriva Linux distribuciju, i ukoliko se slažete\n"
+"sa svim uslovima koji se nalaze u njoj, kliknite na \"Prihvatam\" taster\n"
+"Ukoliko ne prihvatate, jednostavno isključite \n"
+"računar."
+
+#: ../help.pm:20
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux je višekorisnički sistem, a to znači da svaki korisnik može imati "
+"sopstvene\n"
+"postavke, sopstvene fajlove, itd. Možete pročitati ``Upustvo za korisnike''\n"
+"da bi saznali više o tome. Ali za razliku od \"root\", koji je ustvari "
+"administrator, korisnici\n"
+"koje dodate ovde neće moći da menjaju bilo šta osim njihovih\n"
+"fajlova i njihove konfiguracije. Trebalo bi da kreirate najmanje jednog\n"
+"običnog korisnika za sebe. Taj račun je onaj na koji treba da se logujete \n"
+"za rutinsko korišćenje. Iako je veoma praktično da se ulogujete kao \"root\" "
+"svaki dan,\n"
+"to može biti veoma opasno! I najmanja greška može značiti da vaš sistem\n"
+"neće više raditi. Ukoliko napravite ozbiljne greške kao obični korisnik \n"
+"možete jedino izbgubiti nešto informacija, ali ne i celi sistem.\n"
+"\n"
+"Prvo, morate da unesete vaše pravo ime. Ovo nije neophodno, naravno -\n"
+"jer možete pristupiti i izmeniti ga kada god želite. DrakX će tada uzeti "
+"prvu\n"
+"reč koji ste uneli i staviti ga u prostor za unošenje imena korisnika "
+"\"User\n"
+"name\". Ovo je ime koje odreženi korisnik treba da koristi pri logovanju na\n"
+"sistem. Možete ga promeniti. YNakon toga morate uneti lozinku ovde.\n"
+"Obični, ne-privilegovani korisnička lozinka nije od većeg značaja kao ona "
+"za\n"
+"\"root\" koriosnika sa sigurnosne tačke gledanja, ali to nije razlog za "
+"opuštanje\n"
+"- nakon svega, vaši fajlovi su u pitanju.\n"
+"\n"
+"Ukoliko kliknete na \"Prihvati korisnikar\", možete dodati još korisnika. "
+"Dodajte\n"
+"korisnika za svakog vašeg prijatelja: za vašeg oca ili sestru, na\n"
+"primer. Kada zaršite dodavanje svih željenih korisnika, izaberite \"Završeno"
+"\".\n"
+"\n"
+"Klikom na taster Napredno \"Napredno opcije\" možete izmeniti default \"shell"
+"\"\n"
+"za trenutnog korisnika (bash po default). \n"
+"\n"
+"Kada završite sa dodavanjem korisnika, računar će tražiti da izaberete "
+"korisnika\n"
+"koji će se automatski prijavljivati na sistem pri njegovom startanju. "
+"Ukoliko\n"
+"vas zanima ova mogućnost (i ne vodite mnogo računa o lokalnoj\n"
+"sigurnosti), izaberite željenog korisnika i window menažer, a zatim kliknite "
+"na \"Sledeći\n"
+"->\". Ukoliko niste zainteresovani za ovu opciju, deselektujte \"Da li "
+"želite\n"
+"da koristite ovu opciju?\" ."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Da li želite da koristite ovu opciju ?"
+
+#: ../help.pm:57
+#, fuzzy, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Iznad se nalazi lista postojećih Linux particija koje su detektovane\n"
+"na hard disku. Možete zadržati izbor koji je napravio čarobnjak, jer je "
+"dobar za a\n"
+"opštu upotrebu. Ukoliko promenite izbor, morate bar izabrati root\n"
+"particiju (\"/\"). Nemojte da birate suviše malu particiju jer nećete moći "
+"da\n"
+"instalirate ovoljno softvera. Ukoliko želite da podatke staviljate na "
+"posebnu particiju ,\n"
+"morate da izaberete i \"/home\" (moguće je ukoliko imate više od jedne\n"
+"Linux particije).\n"
+"\n"
+"\n"
+"Informacija: svaka particija je prikazana na sledeći način: \"Ime\", "
+"\"Kapacitet\".\n"
+"\n"
+"\"Ime\" je kodirano na sledeći način: \"tip hard diska\", \"broj hard diska"
+"\",\n"
+"\"proj particije\" (na primer, \"hda1\").\n"
+"\n"
+"\"Tip hard diska\" je \"hd\" ukoliko je hard disk IDE uređaj i \"sd\"\n"
+"ukoliko je SCSI hard disk.\n"
+"\n"
+"\"Broj hard diska\" je uvek slovo posle \"hd\" ili \"sd\". Za IDE hard "
+"diskove:\n"
+"\n"
+" * \"a\" znači \"master hard disk na primarnom IDE kontroleru\",\n"
+"\n"
+" * \"b\" znači \"slave hard disk na primarnom IDE kontroloeru\",\n"
+"\n"
+" * \"c\" znači \"master hard disk na sekundranom IDE kontroloeru\",\n"
+"\n"
+" * \"d\" znači \"slave hard disk na sekundarnom IDE kontroleru\".\n"
+"\n"
+"\n"
+"Sa SCSI hard diskovima, a \"a\" znači \"primarni hard disk\", a \"b\" "
+"znači \n"
+"\"sekundarni hard disk \", itd..."
+
+#: ../help.pm:88
+#, fuzzy, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linux instalacija se nalazi na nekoliko diskova iliti CDROM-ova. "
+"DrakX\n"
+"zna ukoliko da ukoliko je selktovani paket lociran na drugom CDROM-u i "
+"izbaciće\n"
+"trenutni CD te tražiti od vas da ubacite odgovarajući."
+
+#: ../help.pm:95
+#, fuzzy, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Sada je vreme da odredimo koje programe želite da instalirate na vaš\n"
+"sistem. Postoje hiljade paketa dostupnih za instalaciju na Mandriva Linux, "
+"i \n"
+"da bi ih učinili dostupnijim, smeđteni su u grupe sličnih aplikacija.\n"
+"\n"
+"Paketi su sortirani u grupe u odnosu na odgovarajuću upotrebu na vašoj\n"
+"mašini. Same grupe su sortirane u četiri klase. Ove klase možete posmatrati\n"
+"kao kontejnere za različite pakete\n"
+"Možete mešati aplikacije iz različitih kontejnera, tako da\n"
+"iinstalacija ``Radna stanica'' može da sadrži aplikacije iz \n"
+"kontejnera ``Razvojna stanica'' .\n"
+"\n"
+" * \"Radna stanica\": ukoliko planirate da koristite vašu mašinu kao radnu "
+"stanicu, izaberite jednu ili više odgovarajućih grupa.\n"
+"\n"
+" * \"Razvojna stanica\": ukoliko mašina treba da se koristi za "
+"programiranje, izaberite željenu(e) grupu(e).\n"
+"\n"
+" * \"Server\": ukoliko će se mašina koristiti kao server, moći ćete da \n"
+"izaberete koje od najčešćih servisaželite da instalirate na\n"
+"mašinu.\n"
+"\n"
+" * \"Grafičko Okruženje\": na kraju, ovde ćete izabrati vaše\n"
+"omiljeno grafičko okruženje. Morate izabrati bar jedno da bi imali\n"
+"grafičku radnu stanicu!\n"
+"\n"
+"Kretanjem kursora miša preko imena grupe dobićete kratko objašnjenje\n"
+"o toj grupi. Ukoliko ne selektujete ni jednu grupu kada izvodite\n"
+"osnovnu instalaciju (za razliku od ažuriranja), pojaviće se dijalog\n"
+"sa različitim predlozima za minimalnu instalciju:\n"
+"\n"
+" * \"Sa X-ovima\": Instalira nekoliko paketa radi grafičkog desktopa\n"
+"\n"
+" * \"Sa osnovnom dokumentacijom\": Instalira osnovni sistem sa osnovnim "
+"alatima\n"
+"i njihovom dukumentacijom. Ovaj mod je praktičan za\n"
+"podešavanje servera\n"
+"\n"
+" * \"Stvarno minimalna instalacija\":Instalira samo što je minimano "
+"potrebno,\n"
+"za rad Linux sistema,naravno samo u komandnoj liniji.Ova instalacija "
+"zauzima\n"
+"samo 65 Mb\n"
+"\n"
+"Možete selektovati i \"Pojedinačno biranje paketa\", koje je korisno "
+"ukoliko\n"
+"su vam poznati ponuđeni paketi i želite da imate potpunu \n"
+"kontrolu nad svim što će biti instalirano.\n"
+"\n"
+"Ukoliko ste pokrenuli mod \"Ažuriranje\", možete deselektovati sve\n"
+"grupe da bi izbegli instalaciju bilo kog novog paketa. Ovo je korisno za "
+"popravljanje ili\n"
+"ažuriranje postojećeg sistema."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Ažuriranje"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "With basic documentation"
+msgstr "Sa osnovnom dokumentacijom (preporuka!)"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "Truly minimal install"
+msgstr "Minimalno instaliraj"
+
+#: ../help.pm:152
+#, fuzzy, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Na kraju, u zavisnosti od vašeg izbora da da birate pojedinačne pakete\n"
+"ili ne, biće vam prikazano stablo sa svim paketima klasifikovanim\n"
+"po grupama i podgrupama. Dok pretražujete stablo, možete selektovati cele\n"
+"grupe, podgrupe, ili individualne pakete.\n"
+"\n"
+"Kada kod selektujete paket na stablu, opis se pojavljuje sa desne\n"
+"strane. da bi mogli da se upoznate namenom paketa.\n"
+"\n"
+"!! Ukoliko je server paket izabran slučajno ili kao deo\n"
+"cele grupe, bićete upitani da li zaista želite da instalirate\n"
+"ponuđene servere. Pod Mandriva Linux-om, svi instalirani\n"
+"serveri se startuju po default-u za vreme podizanja sistema. Čak i ako su "
+"sigurni i nemaju\n"
+"poznatih bezbednosnih propusta do vremena izlaska distribucije, može se "
+"desiti\n"
+"da sigurnosne rupe budu otkivene kasnije.\n"
+" Ukoliko ne znate koji pojedinačni servis šta treba da radi\n"
+"ili zašto se instalira, onda kliknite \"Ne\". Klikom na \"Da\" ćete\n"
+"instalirati prikazane servis i oni će biti pokrenuti automatski po\n"
+"default-u. !!\n"
+"\n"
+"Opcija \"Automatske međuzavisnosti\" jednostavno isključuje dijalog sa "
+"upozorenjem\n"
+"koji se javlja svaki put kada instaler automatski selektuje pakete. Ovo se\n"
+"javlja zato što on određuje da mora da zadovolji zavisnosti sa drugim\n"
+"paketom da bi uspešno završio instalaciju.\n"
+"\n"
+"Mala ikonica flopi diska na dnu liste vam omogućava da učitate\n"
+"listu paketa birane tokom prethodne instalacije. Klikom na ovu ikonicu\n"
+"će od vas biti traženo da ubacite disketu kreiranu ranije na kraju \n"
+"prethodne instalacije. Pogledajte poslednji pasus (korak) da bi naučili kako "
+"da kreirate \n"
+"takvu disketu."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr ""
+
+#: ../help.pm:186
+#, fuzzy, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"Štampač\": ako kliknete na taster \"Bez štampača\" pokrenuti ćete "
+"konfiguracioni\n"
+"program za štampače. Pogledajte i odgovoarajuće upustvo u``Starter\n"
+"Guide'' za više informacija o tome kako da podesite novi štampač. Program "
+"koje se\n"
+"tada aktivira je sličan onom koji se koristi tokom instalacije."
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Sada možete odabrati koje servise želite da se startaju pri podizanju "
+"sistema.\n"
+"\n"
+"DrakX će prikazati sve dostupni servise na trenutnoj\n"
+"instalaciji. Pregledajte ih pažljivo i deselektujte one koji vam neće biti "
+"uvek\n"
+"potrebni pri podizanju sistema.\n"
+"\n"
+"Možete dobiti i kratko objašnjenje o servisu selektovanjem\n"
+"određenog servisa. Međutim, ukoliko niste sigurni koji od servisa jesu ili\n"
+"nisu korisni, sigurnije je ostaviti na default postavkama.\n"
+"\n"
+"!!Na ovom nivou, budite veoma pažljivi ukoliko želite da koristite vašu "
+"mašinu kao\n"
+"server: verovatno nećete želeti da startujete nijedan servis koji vam neće\n"
+"trebati. Zapamtite da nekoliko servisa može biti opasno ukoliko\n"
+"su omogućeni na serveru. Generano govoreći, izaberite samo servise koje ćete "
+"stvarno trebati.\n"
+"!!"
+
+#: ../help.pm:209
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux upravlja sa vremenom u GMT (Greenwich Mean Time) i prevodi ga u\n"
+"lokalno vreme u zavisnosti koju ste vremensku zonu izabrali. Međuti, moguće "
+"je\n"
+"ovo i deaktivirati deselektovanjem \"Podesi hardverski časovnik na GMT\" "
+"tako da hardverski časovnik\n"
+"haima isto vreme kao i sistemski časovnik. Ovo je korisno kada na mašini "
+"imate\n"
+"još jedan operativni sistem kao što je Windows.\n"
+"\n"
+"Opcija \"Automatska sihronizacija časovnika\" će automatski regulisati\n"
+"časovnik konektovanjem na udaljeni vremenski server na Internetu. Na \n"
+"listi koja je prikazana, izaberite server koji se nalazi blizu vas. "
+"Naravno,\n"
+"morate imati ispravno podešenu Internet konekciju da bi mogli da koristite "
+"ovu opciju. Ona će\n"
+"ustvari instalirati na vašu mašinu vremenski server koji se pomogućnosti "
+"može koristiti i od\n"
+"strane drugih mašina na vašoj lokalnoj mreži."
+
+#: ../help.pm:220
+#, fuzzy, c-format
+msgid "Automatic time synchronization"
+msgstr "Automatska sinhronizacija vremena (preko NTP-a)"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Grafička kartica\n"
+"\n"
+" Program za instalaciju obično automatski detektuje i podešava\n"
+"grafičku kartu koja je instalirana u vašoj mašini. Ukoliko to nije slučaj, "
+"možete\n"
+"da je izaberete sami sa liste ponuđenih kartica.\n"
+"\n"
+" U slučaju da je više grafičkih servera dostupno za vašu karticu, sa ili\n"
+"bez 3D akceleracije, onda sami odaberite onu koja najbolje odgovara\n"
+"vašim potrebama."
+
+#: ../help.pm:234
+#, fuzzy, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (ili X Window Sistem) je srce GNU/Linux grafičkog interfejsa\n"
+"na koji se oslanjaju sva grafička okruženja (KDE, GNOME, AfterStep,\n"
+"WindowMaker, itd.) koja se nalaze u Mandriva Linux-u.\n"
+"\n"
+"Biće vam prikazana lista sa različitim parametrima čijom izmenom\n"
+"možete dobiti optimalan grafički prikaz: Grafička kartica\n"
+"\n"
+"\n"
+" Program za instalaciju obično automatski detektuje i podešava\n"
+"grafičku kartu koja se nalazi u vašem računu. Ukoliko to nije slučaj, "
+"možete\n"
+"sami da izaberete karticu sa liste.\n"
+"\n"
+" Ukoliko su različiti serveri dostupni za vašu karticu, sa ili\n"
+"vez 3D akceleracije, onda treba da izaberete onaj koji najviše\n"
+"odgovara vašim potrebama.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Program za instalaciju obično automatski detektuje i podešava\n"
+"monitor koji povezan sa vašim računarom. Ukoliko se to ne desi možete "
+"izabrati\n"
+"sami sa liste ponuđenih monitora\n"
+"\n"
+" Ovde možete izabrati rezoluciju i broj boja od\n"
+"onih koje su ponuđene za vaš hardver. Izaberite ono što najviše odgovara "
+"vašim potrebama\n"
+"(ove opcije ćete moći izmeniti i nakon instalacije). Izabrana\n"
+"konfiguracije se vidi na monitoru.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" sistem će pokušati da otvori grafički ekran u željenoj\n"
+"rezoluciji. Ukoliko možete da vidite poruku tokom testa odgovorite sa \"Da"
+"\",\n"
+"i DrakX će nastaviti sa sledećim korakom. Ukoliko ne možete da vidite "
+"poruku, to\n"
+"znači da je neki deo autotedekcije bio nepravilan i\n"
+"test će automatski završiti nakon 12 sekundi, otavarajući meni za\n"
+"konfiguraciju. Izmenite opcije sve dok ne dobijete korektan grafički "
+"prikaz.\n"
+"\n"
+"\n"
+"\n"
+"Opcije\n"
+"\n"
+" Ovde možete da izaberete da li želite da vaš račuanr automatski\n"
+"pređe na grafički interfejs pri startanju. Očigledno, izabraćete\n"
+"\"Ne\" ukoliko je vaša mašina server, ili ukoliko niste uspeli da uspešno \n"
+"podesite grafički prikaz."
+
+#: ../help.pm:291
+#, fuzzy, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+"\n"
+" Program za instalaciju obično automatski detektuje i podešava\n"
+"monitor povezan na vašu mašinu. Ukoliko se to nedesi, možete sami\n"
+"sami da izaberete model monitora sa liste."
+
+#: ../help.pm:298
+#, fuzzy, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Rezolucija\n"
+"\n"
+" Ovde možete izabrati rezoluciju i broj boja koje su\n"
+"dostupne za vaš hardver. Izaberite ono što najviše odgovara vašim potrebama "
+"(ove opcije ćete moći\n"
+"da promenite i nakon instalacije). Primer izabrane\n"
+"konfiguracije je prikazan na monitoru."
+
+#: ../help.pm:306
+#, fuzzy, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"U slučaju da su dostupni različiti serveri za vašu karticu, sa ili\n"
+"bez 3D akceleracije, najbolje je da izaberete server koji\n"
+"najviše odgovara vašim potrebama."
+
+#: ../help.pm:311
+#, fuzzy, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Na kraju, bićete upitani da li želite grafički interfejs\n"
+"pri startanju sistema. Ovo pitanje će vam biti postavnjeno čak i ako niste "
+"testirali\n"
+"konfiguraciju. Naravno, odgovorićete \"Ne\" ukoliko vaša mašina predstalja\n"
+"server, ili ukoliko niste uspešno podesili\n"
+"displejed."
+
+#: ../help.pm:319
+#, fuzzy, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"U ovom trenutku, morate da izaberete gde ćete instalirati\n"
+"Mandriva Linux operativni sistem na vaš hard disk. Ukoliko je prazan ili\n"
+"postojeći operativni sistem koristi sav postojeći prostor na disku, treba da "
+"ga\n"
+"particionirate. U osnovi, particioniranje hard diska se sastoji logičkog\n"
+"deljenja da bi obezbedili prostor za instalaciju vaš novi Mandriva Linux "
+"sistem.\n"
+"\n"
+"Pošto su efekti procesa particioniranja obično nepovratni,\n"
+"particioniranje može biti prilično stresan proces za neiskusne korisnike.\n"
+"Ovaj čarobnjak ga pojednostavljuje. Pre početka, konsultujte upustvo i ne "
+"žurite.\n"
+"\n"
+"Ukoliko ste pokrenuli instalaciju u Ekspert modu, pokrenućete\n"
+"DiskDrake, Mandriva Linux-ov alat za particije, koji vam dozvoljavaw da\n"
+"fino podesite vaše particije. Pogledajte DiskDrake sekciju u ``User "
+"Guide''.\n"
+"Iz instalacionog interfejsa, možete koristiti čarobnjake kao što je opisano "
+"ovde\n"
+"klikom na dijalogov \"Čarobnjak\" taster.\n"
+"\n"
+"Ukoliko su particije već kreirane, od predhodne instalacije \n"
+"ilikreirane drugim alatom za particioniranje, morate izabrati \n"
+" na koje od njih ćete instalirati Linux sistem.\n"
+"\n"
+"Ukoliko particije nisu definisane, marate da ih kreirate. \n"
+"Da bi to uradili, možete da koristite gore postavljeni čarobnjak. U "
+"zavisnosti \n"
+"od konfiguracije hard diska, postoji nekoliko mogućnosti:\n"
+"\n"
+" * \"Koristi slobodan prostor\": ova opcija će jednostavno dovesti do "
+"automatskog\n"
+"particioniranja vašeg praznog(ih) diska(ova). Neće vam biti postavljana "
+"daljna pitanja;\n"
+"\n"
+" * \"Koristi postojeće particije\": čarobnjak je detektovao jednu ili više \n"
+"postojećih Linux particija na vašem hard disku. Ukoliko\n"
+"želite da njihj koristite, izaberite ovu opciju.\n"
+"\n"
+" * \"Koristi slobodan prostor na Windows particiji\": ukoliko je Microsoft "
+"Windows\n"
+"instaliran na vašem disku i on zauzima sav postojeći prostor na njemu,\n"
+"moraćete da kreirate slobodan prostor za Linux. Da bi to uradili, možete "
+"izbrisati\n"
+"Microsoft Windows particiju i podatke (pogledajte `Brisanje celog diska'' "
+"ili ``Ekspert\n"
+"mod'' opcije) ili da promenite veličinu Microsoft Windows particije. Promena "
+"veličine\n"
+"se može isvesti bez gubljenja podataka, ali se pteporučuje da prvo "
+"defragmentirate\n"
+"Windows particiju iz samog Windows-a. Backup podataka takođe nije loša "
+"ideja..\n"
+"Ovo rešenje se preporučuje ukoliko želite da koristite Mandriva Linux i\n"
+"Microsoft Windows na istom kompjuteru.\n"
+"\n"
+" Pre nego što izaberete ovu opciju, morate da razumete da nakon ove "
+"procedure\n"
+"veličina vaše Microsoft Windows particije će biti manja\n"
+"u odnosu na trenutno stanje. Imađete manje slobodnog prostora u Microsoft\n"
+"Windows-u za smeštanje podataka ili instalaiju novog softvera;\n"
+"\n"
+" * \"Brisanje cvelog diska\": ukoliko želite da izbrišete sve podatke i sve\n"
+"particije koji postoje na vašem hard disku i zamenite ih vašim\n"
+"novim Mandriva Linux sistemom, možete da izaberete ovu ociju. Budite\n"
+"pažljivisa ovom opcijom, jer nećete biti u mogućnosti\n"
+"da povratite staro stanje nakon potvrde.\n"
+"\n"
+" !! Ukoliko izaberete ovu opciju, svi podaci na disku će biti "
+"izgubljeni. !!\n"
+"\n"
+" * \"Ukloni Windows\": ova opcija će jednostavno izbrisati sve sa hard diska "
+"i\n"
+"kreirati nove particije. Svi podaci na vašem disku\n"
+"će biti izbrisani;\n"
+"\n"
+" !! Ukoliko izaberete ovu opciju, svi podaci na disku će biti "
+"izgubljeni. !!\n"
+"\n"
+" * \"Custom particionisanje diska\": izaberite ovu opciju ukoliko želite\n"
+"da ručno vaš hard disk. Budite pažljivi -- ovo je moćan\n"
+"ali opasan izbor i vrlo lako možete izgubiti svoje podatke. Zbog toga se\n"
+"ova opcija preporučuje samo onima koji imaju iskustva\n"
+"od ranije. Za više podataka o tome kako da koristite\n"
+"program DiskDrake, pogledajte poglavlje ``Upravljajte svojim particijama '' "
+"u\n"
+"``Početnički vodič''."
+
+#: ../help.pm:377
+#, fuzzy, c-format
+msgid "Use existing partition"
+msgstr "Koristi postojeću particiju"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Izbriši celi disk"
+
+#: ../help.pm:380
+#, fuzzy, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"I stigli ste do kraja. Instalacija je sada završena i vaš GNU/Linux sistem "
+"je \n"
+"spreman za upotrebu. Samo kliknite na \"Sledeći -\" da bi restartovali "
+"sistem. Možete pokrenuti\n"
+"GNU/Linux ili Windows, šta god više preferirate (ukoliko imate instalirana "
+"dva sistema), čim\n"
+"se računar ponovo pokrene.\n"
+"\n"
+"Taster Napredno \"%s\" (samo u Ekspert modu) prikazuje još dva tastera za:\n"
+"\n"
+" * \"kreiranje auto-instalacione diskete\": radi kreiranja instalacionog "
+"flopi diska\n"
+"koji će automatski pokrenuti celu instalaciju bez pomoći operatora\n"
+", slično ovoj instalaciji koju ste upravo izveli.\n"
+"\n"
+" Možete primetiti da su dve različite opcije dostupne nakon pritiska na "
+"taster:\n"
+"\n"
+" * \"Sa ponavljanjem\". Ovo je delom automatizirana instalacija jer korak "
+"sa\n"
+"particioniranjem diska ostaje interaktivan (samo on).\n"
+"\n"
+" * \"Automatizovano\". Potpuno automatizovana instalacija: hard disk se u "
+"potpunosti\n"
+"formatizuje, i svi podaci će biti izgubljeni.\n"
+"\n"
+" Ova opcija je veoma korisna ukoliko izvodite veliki broj sličnih "
+"instalacija\n"
+"na većem broju mašina. Pogledajte sekciju o auto instalaciji na našem web "
+"sajtu.\n"
+"\n"
+" * \"Sačuvaj selekciju paketa\"(*) : snima selekciju paketa koji ste\n"
+"napravili u ovoj instalaciji. Tako, da kada budete izvodili drugu "
+"instalaciju, ubacite disketu\n"
+"i pokrenete pomoćni ekran pritiskom na\n"
+"[F1] taster, i zahtevom za >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) Morate da iamte FAT-formatiranu disketu (da bi je formatirali pod GNU/"
+"Linux-om, ukucajte\n"
+"\"mformat a:\")"
+
+#: ../help.pm:412
+#, fuzzy, c-format
+msgid "Generate auto-install floppy"
+msgstr "Kreiraj auto instalacionu disketu"
+
+#: ../help.pm:415
+#, fuzzy, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Svaka particija koja je novodefinisana mora biti\n"
+"formatirana za uptrebu (formatiranje znači kreiranje datotečnog(fajl) "
+"sistema).\n"
+"\n"
+"Sada možda želite da reformatirate postojeće particije da bi izbrisali\n"
+"podatke koje sadrže. Ukoliko želite to, izaberite particije \n"
+"koje želite da formatizujete.\n"
+"\n"
+"\n"
+"Zapamtite da nije potrebno da reformatirate sve postojeće particije.\n"
+"Morate da reformatirate particije koje sadrže operativni sistem \n"
+"(kao što su \"/\", \"/usr\" ili \"/var\") ali ne morate da reformatirate "
+"particije koje sadrže podatke\n"
+"koje želite da zadržite (obično /home).\n"
+"\n"
+"Pazite pri biranju particija, posle formatiranja, sv podaci će \n"
+"biti izbrisani i nećete ih moći povratiti.\n"
+"\n"
+"Kliknite na \"Sledeće ->\" kada bude spremni da formatirate particije\n"
+"\n"
+"Kliknite na \"<- Prethodno\" ako želite da izaberete drugu particiju za svoj "
+"novi\n"
+"Mandriva Linux sistem.\n"
+"\n"
+"Kliknite na \"Napredno\" ukoliko želite da izaberete particije koje će biti "
+"proverene\n"
+"da li imaju loše sektore."
+
+#: ../help.pm:437
+#, fuzzy, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"U vreme kada budete instalirali Mandriva Linux, vrlo je moguće da će neki\n"
+"paketi biti ažurirani u odnosu na inicijalno izdanje. Neki bagovi mogu \n"
+"biti ispravljeni, a sigurnosni propusti zatvorene. Da bi mogli da koristite "
+"ove novije verzije\n"
+"mi vam predlažemo da ih skinete sa Interneta. Izaberite\n"
+"Da ili \"Da\" ukoliko imate podešenu Internet konekciju, ili Ne ili \"No\" "
+"ukoliko više volite da\n"
+"instalirate te nove pakete kasnije.\n"
+"\n"
+"Izborom na \"Da\" prikazuje se lista mesta sa kojih možete da dobavite noe "
+"verzije \n"
+"paketa. Izaberite mesto koje vam je najbliže. Zatim će se pojaviti stablo sa "
+"slelekcijom paketa:\n"
+"pregledajte selekciju, i pritisnite \"Instaliraj\" da bi skinuli i\n"
+"instalirali selektovni(e) paket(e), ili \"Poništi\" za odustajanje."
+
+#: ../help.pm:450
+#, fuzzy, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"na ovom mestu, DrakX će vam dozvoliti da odredite željeni nivo sigurnosti\n"
+"za vaš računar. Kao nepisano pravilo, nivo sigurnosti bi trebao\n"
+"veći ukoliko mašina sadrži važne podatke, ili ukoliko je mašina\n"
+"direktno vezana na Internet. Spuštanje sigurnosti uglavnom\n"
+"se vidi u opvećanju lakoće rada sa sistemom. Pogledajte \"msec\"\n"
+"poglavlje u ``Upupstvo za komandnu liniju''da bi dobavili više informacija\n"
+"o nivioima sigurnosti.\n"
+"\n"
+"Ukoliko ne znate da izaberete, zadržite default postavku."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Administrator za sigurnost:"
+
+#: ../help.pm:464
+#, fuzzy, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Na ovoj tački, morate izbrati koju particiju(e) želite da koristite za\n"
+"instalaciju novog Mandriva Linux sistema. Ukoliko su particije\n"
+"već definisane (od predhodne instalacije ili od strane\n"
+"drugog alata za particije), možete da koristite postojeće particije.\n"
+"U drugim slučajevima,\n"
+"hard disk particije moraju biti definisane.\n"
+"\n"
+"Da bi kreirali particije, morate prvo izabrati hard disk. Možete izabrati\n"
+"disk za particioniranje klikom na \"hda\" za prvi IDE disk, \"hdb\" ili \n"
+"za drugi ili \"sda\" za prvi SCSI disk itd.\n"
+"\n"
+"Za particioniranje selektovanog hard diska, možete koristiti sledeće "
+"opcije:\n"
+"\n"
+" * \"Očisti sve\": ova opcija briše sve particije na izabranom hard \n"
+"disku.\n"
+"\n"
+" * \"Auto alociranje\": ova opcija dozvoljava da automatski kreirate Ext2 "
+"i \n"
+"swap particije na slobodnom prostoru \n"
+" hard diska.\n"
+"\n"
+"\"Još\": daje pristup dodatnim opcijama:\n"
+"\n"
+" * \"Spasi tabelu particija\": ukoliko je vaša tabela particija "
+"oštećena, \n"
+"možete da probate da je oporavite koristeći ovu opciju. Budite\n"
+" pažljivi i znajte da može da i ne uspe.\n"
+"\n"
+" * \"Vrati na staro\": ova opcija će poništiti izmenu.\n"
+"\n"
+" * \"Ponovno učitavanje\": ovu opciju možete koristiti ukoliko želite da \n"
+"poništitisve promene i učitate inicijalnu tabelu particija\n"
+"\n"
+" * \"Čarobnjak\": ukoliko želite da koristite čarobnjaka za "
+"particioniranje \n"
+"hard diska, izaberite ovu opciju. Preporučena je ukoiko\n"
+" nemate mnogo znanja o partcijama.\n"
+"\n"
+" * \"Povrati sa diskete\": ukoliko ste snimili tabelu particija na \n"
+"disketu tokom prethodne instalacije, možete je\n"
+" vratiti sa ovom opcijom.\n"
+"\n"
+" * \"Snimi na disketu\": ukoliko želite da da snimite tabelu particija na\n"
+"disketu da bi mogli kasnije da je povratite, možete da iskoristite\n"
+" ovu opciju. Naročito preporučujemo ovu opciju\n"
+"\n"
+" * \"Urađeno\": kada završite sa particioniranjem hard diska, iskoristite "
+"ovu opciju da bi snimili promene.\n"
+"\n"
+"Kada definišete veličinu particija, možete konačno podesiti veličinu\n"
+"particija pomoću tastera sa strelicama na vašoj strelicama\n"
+"Za više informacija, možete za svaku ocpiju dobiti kretanjem pomoću "
+"tastature: navigacijom kroz particije pomoću [Tab] tastera i [Up/Down] "
+"strelica.\n"
+"\n"
+"Kada je particija izabrana, možete koristiti:\n"
+"\n"
+" * Ctrl-c za kreiranje nove particije (kada je izabrana prazna particija);\n"
+"\n"
+" * Ctrl-d za brisanje particije;\n"
+"\n"
+" * Ctrl-m za postavljanje tačke montiranja.\n"
+"\n"
+"Da bi dobili informacije o različitim dostupnim tipovima sistema, "
+"pročitajte\n"
+"ext2FS poglavlje iz ``Upustva''.\n"
+"\n"
+"Ukoliko radite instalaciju na PPC Mašinu, možda ćete želeti da kreirate "
+"malu\n"
+"HFS 'bootstrap' particiju od najmanje 1MB za upotrebu\n"
+"yaboot startera. Ukoliko se dvoumite da ovu particiju napravite malo većom,\n"
+"na primer 50MB, možete iskoristiti taj prostor za smeštanje\n"
+"rezervnog kernela i ramdisk image za startanje u hitnim situacijama."
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Removable media auto-mounting"
+msgstr "Automontiranje prenosivog medija"
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Pređi na normalni mod"
+
+#: ../help.pm:536
+#, fuzzy, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Jedna ili više Microsoft Windows particija je detektovano \n"
+"na hard disku. Izaberite koju od njih želite da smanjite da bi instalirali\n"
+"novi Mandriva Linux operativni sistem.\n"
+"\n"
+"Svaka particija je ispisana na sledeći način: \"Ime Linux-a\",\"Ime Windows-a"
+"\"\n"
+"\"Kapacitet\".\n"
+"\n"
+"\"Ime Linux-a\" je kodirano na sledeći način: \"tip hard diska\", \"broj "
+"hard diska\",\n"
+"\"broj particije\" (na primer, \"hda1\").\n"
+"\n"
+"\"Tip hard diska\" je \"hd\" ukoliko je hard disk ID uređaj i \"sd\"\n"
+"ukoliko je SCSI hard disk.\n"
+"\n"
+"\"Broj hard diska\" je uvek slovo posle \"hd\" ili \"sd\". Sa IDE hard "
+"diskovima:\n"
+"\n"
+" * \"a\" znači \"master hard disk na primarnom IDE kontroleru\",\n"
+"\n"
+" * \"b\" znači \"slave hard disk na primarnom IDE kontroloeru\",\n"
+"\n"
+" * \"c\" znači \"master hard disk na sekundranom IDE kontroloeru\",\n"
+"\n"
+" * \"d\" znači \"slave hard disk na sekundarnom IDE kontroleru\".\n"
+"\n"
+"Sa SCSI hard diskovima, \"a\" znači \"primarni hard disk\", a \"b\" znači "
+"\"sekundarni hard disk \", itd.\n"
+"\n"
+"\"Ime Windows-a\" je slovo hard diska pod Windows-om (prvi disk\n"
+"ili particija se zove \"C:\")."
+
+#: ../help.pm:567
+#, fuzzy, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"Država\": proverava trenutni izbor zemlje. Ukoliko se ne nalazite u ovojs\n"
+"državi, kliknite na taster i i izaberite drugu."
+
+#: ../help.pm:572
+#, fuzzy, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Ovaj korak se aktivira samo u slučaju da postoji stara GNU/Linux particija "
+"na\n"
+"vašioj mošini.\n"
+"\n"
+"DrakX sada treba da zna da li želite da izvedete čistu instalaciju ili "
+"ažuriranje\n"
+"postojećeg Mandriva Linux sistema:\n"
+"\n"
+" * \"Instalacija\": U većini slučajeva, ova opcija kompletno briše stari\n"
+"sistem. Ukoliko želite da izmenite broj particija, ili\n"
+"promenite fajl sistem, trebali bi da koristite ovu opciju. Ipak, u "
+"zavisnosti od\n"
+"šeme particija, možete zaštititi neke postojeće podatke\n"
+"od formatiranja.\n"
+"\n"
+" * \"Ažuriranje\": ova instalaciona klasa vam dozvoljava da uradite "
+"ažuriranje paketa\n"
+"na trenutno instaliranom Mandriva Linux sistemu. Vaša trenutna\n"
+"šema particija i korisnički podaci se ne menjaju. Većina drugih\n"
+"konfiguracionih koraka i dalje ostaje dostupna, slično standardnoj "
+"instalaciji.\n"
+"\n"
+"Upotreba opcije ``Ažuriranje'' bi trebalo da bude bez problema na Mandriva "
+"Linux sistemima\n"
+"od verzije \"8.1\" ili novije. Izvođenje ažuriranja na verzijama \n"
+"Mandriva Linux pre \"8.1\" nije preporučljivo."
+
+#: ../help.pm:594
+#, fuzzy, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"U principu, DrakX bira desnu tastaturu za vas (u zavisnosti od toga koji\n"
+"ste jezik izabrali) i čak i nećete videti ovaj korak. Ipak, može\n"
+"se desiti da niste dobili tastaturu koja odgovara vašem jeziku: na\n"
+"primer, ukoliko ste Švajcarac koji govori engleski, verovatno ćete želeti\n"
+"Švajcarsku tastaturu. Ili ukoliko govorite Engleski ali se nalazite\n"
+"u Kvebeku, možete se naći u istoj situaciji. U oba\n"
+"slučaja, moraćete da se vratite na ovaj instalacioni korak i izaberete\n"
+"odgovarajuću tastaturu sa liste.\n"
+"\n"
+"Kliknite na taster \"Još\" da bi dobili kompletnu listu\n"
+"podržanih tastatura.\n"
+"\n"
+"Ukoliko izaberete raspored tastature baziran na non-Latin alfabetu, sledeći\n"
+"dijalog će vam ponuditi da izaberete kombinaciju tastera koji će služiti\n"
+"da menjate Latin i non-Latin rasporede."
+
+#: ../help.pm:612
+#, fuzzy, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Vaš izbor jeika će uticati na jezik dokumentacije,\n"
+"instalacije i sistema uopšte. Prvo izaberite region u kojem se nalazite,\n"
+"a zatim jezik koji govorite.\n"
+"\n"
+"Klikom na taster \"Napredno\" omogućićete sebi da vidite druge\n"
+"jezike koje možete instalirati na vašu radnu stranicu. Biranjem drugih "
+"jezika\n"
+"ćete instalirati fajlove vezane (za specificirane jezike) za dokumentaciju "
+"i\n"
+"aplikacije. Na primer, ukoliko će na vašem računaru hostovati korisnici iz "
+"Španije\n"
+"izaberite Engleski kao glavni a na stablu\n"
+"označite i \"Španiski|Španija\".\n"
+"\n"
+"Zapamtite da možete instalirati više jezika. Kada izaberete sve željene\n"
+"dodatne lokalizacije kliknite na taster \"U redu\" da bi nastavili.\n"
+"\n"
+"Da bi menjali različite jezike koji su instalirani na vašem sistemu, možete "
+"pokrenuti\n"
+" \"/usr/sbin/localedrake\" komandu kao \"root\" da bi promenili jezik koji "
+"se \n"
+"koristi u celom sistemu. pokretanjem komande kao regularni korisnik samo "
+"ćete promeniti\n"
+"postavke jezika za datog korisnika."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr ""
+
+#: ../help.pm:653
+#, fuzzy, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"DrakX generalno detektuje broj tastera koji vaš miš posdeduje. Ukoliko se to "
+"ne desi\n"
+"on će pretpostaviti da miš sa dva tastera i podesiće emulaciju trećeg "
+"tastera.\n"
+"DrakX će automatski prepoznati da li se radi o PS/2, serijskom ili USB "
+"mišu.\n"
+"\n"
+"Ukoliko želite da specificirate drugi tip miša odaberite odgovarajući\n"
+"tip sa liste.\n"
+"\n"
+"Ukoliko izberete miša koji se razlikuje od default-a pojaviće vam se\n"
+"test ekran. Koristite tastere i točkiće da bi proverili da li su postavke\n"
+"dobre. Ukoliko miš ne radi ispravno pritisnite taster za razmak (space bar) "
+"ili\n"
+"taster [Return] da bi poništili test i vratili se da bi pokušali ponovo.\n"
+"\n"
+"Točkići na mišu se ponekad ne detektuju automatski, pa ćete sami morati da\n"
+"izaberete miša sa liste. Pazite da izaberete odgovarajući vezano\n"
+"za port na koji je miš povezan. nakon izbora miša\n"
+"i pritiska na taster \"Sledeći ->\", slika miša će biti prikazana na "
+"ekranu.\n"
+"Pokrenite toškić da bi proverili da li je pravilno aktiviran. Kada \n"
+"vidite da se točkić na ekranu pomera kao i točkić na mišu, testirajte\n"
+"tastere i proverite da li kursor na ekrani prati vaše \n"
+"pomeranje miša."
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "with Wheel emulation"
+msgstr "Emulacija tastera"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Molim, izaberite odgovarajući port. Na primer, COM1 port pod MS Windows-om\n"
+" u Linux-u ima oznaku ttyS0."
+
+#: ../help.pm:691
+#, fuzzy, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Ovo je najzanačajnija tačka u odlučivanju o sigurnosti vašeg GNU/Linux\n"
+"sistema: morate da unesete \"root\" lozinku. \"root\" je administrator\n"
+"sistema i jedini je ovlašten da vrši izmene, dodaje korisnike,\n"
+"menja osnovnu konfiguraciju sistema, itd. Ukratko, \"root\" može\n"
+"da uradi sve! Zbog toga morate da izaberete lozinku koja teško može da se\n"
+"pogodi - DrakX će vam reći ukoliko je ona suviše jednostavna. Kao što možete "
+"da vidite, možete da\n"
+"izaberete i da ne unesete lozinku, ali vam ozbiljno preporučujemo da to\n"
+"neradite iz jednog razloga: nemojte da mislite da to što ste startovali GNU/"
+"Linux da\n"
+"vaši drugi operativni sistemi sigurni od grešaka. Kako \"root\" može da\n"
+"preskoči sva ograničenja i nenamerno izbriše sve podatke na particiji\n"
+"neopreznim pristupom, važno je da je teško\n"
+"postati \"root\".\n"
+"\n"
+"Lozinka treba da bude mešavina brojeva i slova i treba da sadrži najmanje 8\n"
+"karaktera. Nikada ne zapisujte na papir \"root\" lozinku - tako lako\n"
+"možete ugroziti sistem.\n"
+"\n"
+"Međutim, potrudite se da lozinka ne bude previše duga ili komlikovana zato\n"
+"što treba da je zapamtite bez mnogo napora.\n"
+"\n"
+"Lozinka neće biti prikazana na ekranu kada je ukucavate. Srećom, moći ćete\n"
+"da je ukucate dva puta da bi smanjili mogućnost greše u kucanju.\n"
+"Ukoliko ipak pogrešite u kucanju, ali dva puta, ova\n"
+"``neispravna'' lozinka će biti korištena kada se budete prvi put "
+"konektovali.\n"
+"\n"
+"U Ekspertnomm modu, bićete pitani da li ćete se konektovati na\n"
+"autentifikacioni server, kao što je NIS ili LDAP.\n"
+"\n"
+"Ukoliko vaša mreža koristi LDAP (ili NIS) protokol za autentifikaciju, "
+"selektujte\n"
+"\"LDAP\" (ili \"NIS\") za autentifikaciju. Ukoliko to neznate, pitajte\n"
+"vašeg mrežnog administratora.\n"
+"\n"
+"Ukoliko se vaš računar ne konektuje na administrirane mreže, treba da\n"
+"izaberete \"Lokalni fajlovi\" za autentifikaciju."
+
+#: ../help.pm:725
+#, fuzzy, c-format
+msgid "authentication"
+msgstr "Autentifikacija"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, fuzzy, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Sada treba da izaberemo sistem za štampanje za vaš računar. Drugi OS-ovi "
+"vam\n"
+"nude jedan, ali vam Mandriva Linux nudi čak tri.\n"
+"\n"
+" * \"pdq\" što znači ``print, do not queue'', je izbor za one koji imaju\n"
+"direktni konekciju sa svojim štampačem i želite da izbegnete\n"
+"bilo kakve zastoje štampača, a pri tome nemate mrežne štampače. On može da "
+"se koristi\n"
+"samo na veoma jednostavnim mrežama i pomalo je i spor za mreže. Izaberite "
+"\"pdq\"\n"
+"ukoliko upoznajete GNU/Linux. Vaš izbor naravno možete promeniti\n"
+"nakon isntalacije pokrećući PrinterDrake from iz Mandriva Kontrolnog\n"
+"Centra i klikom na expert taster.\n"
+"\n"
+" * \"%s\"``Common Unix Printing System'', je izvrstan za štampanje na vašem\n"
+"lokalonom štampaču kao i za štampanje po celoj zemaljskoj kugli. On je "
+"jednostavan i može se ponašati\n"
+"kao server ili kao klijent sa starog \"lpd\" sitema za štampanje. Takođe, "
+"on\n"
+"je kompatibilan sa sistemima koji su ranije postojali. On može mnogo toga, "
+"ali\n"
+"osnovno podešvanje je jednostavno kao i kod \"pdq\". Ukoliko treba da "
+"emulirate\n"
+"an \"lpd\" server, morate da pokrenete \"cups-lpd\" demon. On poseduje\n"
+"grafički interfejs za štapanje i izbor opcija za štampanje.\n"
+"\n"
+"Ako to nij slučaj, CUPS je onda prava stvar jer je jednostavniji i bolji za "
+"rad preko\n"
+"mreža."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Stručni"
+
+#: ../help.pm:771
+#, fuzzy, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX sada treba da detektuje IDE uređaje prisutne u vešem računaru.DrakX "
+"će \n"
+"potražiti PCI SCSI adapter(e). Ukoliko DrakX pronađe SCSI adapter(e) i bude "
+"znao koji upravljački program \n"
+"(drajver) koristion će ga(ih) automatski instalirati.\n"
+"\n"
+"Pošto se može desiti da pri detekciji neka komponenta ne bude detektovana \n"
+"DrakX će vas upitati da li imate PCI SCSI adapter. Kliknite \"Da\" \n"
+"ukoliko znate da imate SCSI adapter na svojoj mašini. Na prikazanoj listi \n"
+"moći ćete da izaberete odgovoarajući.\n"
+"Kliknite \"Ne\" ukoliko nemate SCSI adaptera u mašini. Ukoliko niste \n"
+"sigurni\n"
+"proverite na listi detektovanog hardvera selektovanjem \"Pogledaj info o \n"
+"hardveru\"i klikom na \"U redu\". Pregledajte\n"
+"listu a onda kiknite na \"U redu\" da bi se vratili na pitanje o SCSI \n"
+"uređajima.\n"
+"\n"
+"Ukoliko morate ručno da specificirate vaš PCI SCSI adapter, DrakX će\n"
+"vas upitati da odredite opcije za njega.Treba li bi da dozvolite DrakX-u da\n"
+"ispita adapter radi tih opcija. Ovo obično i uspe.\n"
+"\n"
+"Ukoliko DrakX nije u stanju da ispita opcije koje su potrebne, moraćete da \n"
+"sami odredite opcije za drajver.\n"
+"Pogledajte i Instalacioni vodič (3 poglavlje, sekcija \"Prikupljanje \n"
+"informacija o vašem hardveru\")\n"
+"da bi saznali kako da pribavite informacije o parametrima potrebnim za \n"
+"hardver,sa svoje Windows instalacije (ukoliko je imate na sistemu),\n"
+"dokumenatciju o hardveru, ili sa proizvođačevog \n"
+"veb sajta (ukoliko imate pristup internetu)."
+
+#: ../help.pm:789
+#, fuzzy, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"Zvučna kartica\": ukoliko je zvučna kartica detektovana na vašem sistemu, "
+"onda je prikazana\n"
+"ovde. Ukoliko primetite da prikazana kartica nije ona koja je stvarno "
+"prisutna\n"
+"u vašem računaru, možete kliknuti na taster i\n"
+"drugi drajver."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "ISDN card"
+msgstr "Interna ISDN kartica"
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "Graphical Interface"
+msgstr "Grafički interfejs"
+
+#: ../help.pm:861
+#, fuzzy, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Izaberite hard disk koji želite da izbrišete da bi instalirali novu Mandriva "
+"Linux \n"
+"particiju. Budite pažljivi, svi podaci na njemu će biti izgubljeni\n"
+"i neće se moći povratiti!"
+
+#: ../help.pm:866
+#, fuzzy, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Kliknite na \"Sledeće ->\" ukoliko želite da izbrišete sve podatke i \n"
+"particije na ovom hard disku.Budite pažljivi, posle klika na \"U redu\", vi\n"
+"nećete moći da povratite bilo koji podatak ili particiju na hard disku,\n"
+"pa i bilo koje Windows podatke.\n"
+"\n"
+"Kliknite na \"<- Pprethodno\" da bi poništi ovu operaciju bez gubljenja "
+"podataka i\n"
+"particija koje su prisutne na ovom hard disku."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Sledeći ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Prethodni"
+
diff --git a/perl-install/install/help/po/sv.po b/perl-install/install/help/po/sv.po
new file mode 100644
index 000000000..9c7892811
--- /dev/null
+++ b/perl-install/install/help/po/sv.po
@@ -0,0 +1,1952 @@
+# DrakX-sv - Swedish Translation
+#
+# Copyright (C) 2000,2002,2003, 2004, 2005 Free Software Foundation, Inc.
+# Copyright (c) 2000 Mandriva
+# Kenneth Krekula, 2005.
+# Fuad Sabanovic <manijak@telia.com>, 2000.
+# Mattias Dahlberg <voz@home.se>, 2001, 2002.
+# Mattias Newzella <newzella@linux.nu>, 2001, 2002,2003.
+# Magnus Björklöf <bjorklof@nic.fi>, 2003.
+# Lars Westergren <lars.westergren@home.se>, 2003, 2004, 2005.
+# Thomas Backlund <tmb@mandriva.org>, 2004, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-sv - Mandriva 2006 Release\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-09-18 21:42+0300\n"
+"Last-Translator: Thomas Backlund <tmb@mandriva.org>\n"
+"Language-Team: Swedish <sv@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Innan du fortsätter bör du noga läsa licensen. Den täcker hela\n"
+"Mandriva Linux-distributionen. Om du samtycker med den,\n"
+"kryssa i rutan \"%s\". Om du ej samtycker så klicka på \"%s\"\n"
+"knappen så kommer installationen avbrytas och din dator att\n"
+"startas om."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux är ett fleranvändarsystem, med detta menas att varje användare\n"
+"kan ha sina egna inställningar, sina egna filer och så vidare. Du kan\n"
+"läsa i användarmanualen för att lära dig mer. Men olikt \"root\", som\n"
+"är administratör, kan användarna som du lägger till här inte ändra\n"
+"någonting förutom sina egna filer och sina egna inställningar. Detta\n"
+"skyddar systemet från att skadas av misstag eller avsiktliga attacker.\n"
+"Du måste skapa åtminstone en vanlig användare åt dig själv.\n"
+"Det kontot ska du använda i ditt dagliga arbete. Det är i och för\n"
+"sig väldigt praktiskt att logga in som \"root\" varje dag men det kan\n"
+"också vara väldigt farligt. Det minsta misstag kan innebära att\n"
+"systemet inte fungerar längre. Om du gör ett allvarligt misstag som en\n"
+"vanlig användare förlorar du bara viss information och inte hela systemet.\n"
+"\n"
+"Först måste du ange ditt riktiga namn. Det här är inte obligatoriskt,\n"
+"du kan faktiskt skriva vad du vill. DrakX kommer att ta det första \n"
+"ordet som du skrev in i rutan och flytta över det till fältet \"%s\".\n"
+"Detta är namnet som den här användaren kommer att använda för att logga\n"
+"in på systemet. Du kan ändra det om du vill. Du måste sedan ange ett\n"
+"lösenord. En icke-privilegierad (vanlig) användares lösenord är inte\n"
+"lika viktigt som \"roots\" sett ur säkerhetssynpunkt, men det finns\n"
+"ingen anledning att ignorera det, det är ju trots allt dina filer som\n"
+"står på spel.\n"
+"\n"
+"Efter det att du klickat på \"%s\" kan du sedan lägga\n"
+"till andra användare. Lägg till en användare för varje kompis som\n"
+"du har eller din pappa eller din syster till exempel. När du har lagt till "
+"alla\n"
+"användare som du vill ha, välj \"%s\".\n"
+"\n"
+"Om du klickar på \"%s\" kan du ändra det förvalda \"skalet\"\n"
+"för den användaren (bash är förvalt).\n"
+"\n"
+"När du är färdig med att sätta till alla användare, kommer du att få välja\n"
+"en användare som kan logga in automatiskt på systemet då datorn\n"
+"startar upp. Om du är intresserad av den funktionen (och du inte bryr\n"
+"dig speciellt mycket om lokal säkerhet), välj den önskade användaren\n"
+"och fönsterhanteraren och klicka sedan på \"%s\". Om du inte är\n"
+"intresserad av denna funktion, kryssa av rutan \"%s\""
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Vill du använda den här funktionen?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Listat ovan är de existerande Linux-partitionerna som hittats på\n"
+"hårddisken. Du kan behålla valen som gjorts av guiden, de passar de flesta\n"
+"vanliga installationer. Om du gör några ändringar måste du åtminstone\n"
+"definiera en rotpartition (\"/\"). Välj inte en för liten partition för\n"
+"då kommer du inte kunna installera tillräckligt med mjukvara. Om du vill\n"
+"lagra dina data på en separat partition, behöver du också skapa en "
+"partition\n"
+"för /home (endast möjligt om du har mer än en Linux-partition tillgänglig).\n"
+"\n"
+"Varje partition listas som följer: \"Namn\", \"Kapacitet\".\n"
+"\n"
+"\"Namn\" är strukturerad på följande vis: \"hårddisktyp\", \n"
+" \"hårddisknummer\", \"partitionsnummer\" (till exempel, \"hda1\").\n"
+"\n"
+"\"Hårddisktyp\" är \"hd\" om hårddisken är en IDE-hårddisk och\n"
+"\"sd\" om det är en SCSI-hårddisk.\n"
+"\n"
+"\"Hårddisknummer\" är alltid en bokstav efter \"hd\" eller \"sd\". För IDE-\n"
+"hårddiskar:\n"
+"\n"
+" * \"a\" betyder \"master-hårddisk på den primära IDE-kontrollern\",\n"
+"\n"
+" * \"b\" betyder \"slavhårddisk på den primära IDE-kontrollern\",\n"
+"\n"
+" * \"c\" betyder \"master-hårddisk på den sekundära IDE-kontrollern\",\n"
+"\n"
+" * \"d\" betyder \"slavhårddisk på den sekundära IDE-kontrollern\".\n"
+"\n"
+"Med SCSI-hårddiskar betyder ett \"a\" \"lägsta SCSI-ID\", ett \"b\" betyder\n"
+"\"andra lägsta SCSI-ID\", etc."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Installationen av Mandriva Linux är utspridd på flera cd-skivor. DrakX\n"
+"vet om ett valt paket finns på en annan cd-skiva och kommer att mata ut\n"
+"den aktuella cd:n och be dig sätta in en annan om det blir nödvändigt.\n"
+"Om du inte har efterfrågad CD tillgänglig, klicka på \"%s\" så hoppas\n"
+"installationen av motsvarande paket över."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Det är nu dags att ange vilka program du vill installera på\n"
+"systemet. Det finns flera tusen paket tillgängliga för Mandriva Linux och\n"
+"för att det ska bli enklare att hantera paketen har de placerats i grupper\n"
+"om liknande program.\n"
+"\n"
+"Paketen är sorterade i grupper som motsvarar olika användningsområden\n"
+"för din dator. Mandriva Linux har fyra fördefinierade kategorier\n"
+" tillgängliga. Du kan blanda program från olika kategorier så att \n"
+"t ex en arbetsstationsinstallation fortfarande kan ha program från \n"
+"kategorin Utveckling installerade.\n"
+"\n"
+" * \"%s\": om du ska använda datorn som arbetsstation,\n"
+"välj en eller flera av paketen som är i denna grupp.\n"
+"\n"
+"* \"%s\": om datorn ska användas för programmering välj \n"
+"lämpliga paket från denna grupp. Den speciall \"LSB\" gruppen\n"
+"kommer att konfigurera ditt system så att det överensstämmer\n"
+"med Linux Standard Base specifikationen så mycket som möjligt.\n"
+"(En specifikation som försöker eftersträva en standard för Linux- \n"
+"distributioner, till exempel var viktiga systemfiler är placerade, så \n"
+"att program utvecklade på en distribution även\n"
+"kommer att fungera på andra distributioner.)\n"
+" Om du väljer \"LSB\" gruppen kommer 2.4 kernel serien installeras\n"
+"istället för 2.6 som annars är standard för Mandriva Linux. Detta är\n"
+"för att uppfylla LSB stöd maximalt. Om du inte väljer \"LSB\" \n"
+"kommer du ändå att ha ett system som är LSB kompatibelt nästan\n"
+"till 100%%.\n"
+"\n"
+"* \"%s\": om datorn ska användas som server, kan du här\n"
+"välja de tjänster som du vill ha installerade på den.\n"
+"\n"
+" * \"%s\": här väljer du den grafiska miljö som du vill använda. \n"
+"Du måste välja åtminstone en om du vill ha ett grafiskt gränssnitt på\n"
+"din arbetsstation.\n"
+"\n"
+"Om du flyttar muspekaren över ett gruppnamn får du se en kort\n"
+"beskrivande text för just den gruppen.\n"
+"\n"
+"Du kan markera \"%s\" som är användbart om du vet vilka\n"
+"paket du vill ha installerade eller om du vill ha fullständig kontroll över\n"
+"vad som blir installerat.\n"
+"\n"
+"Om du startar installationen i \"%s\" läge kan du avmarkera alla\n"
+"grupper för att undvika installation av nya paket. Detta är\n"
+"användbart vid reparation eller uppdatering av ett existerande\n"
+"system.\n"
+" \n"
+"Om du inte väljer någon grupp när\n"
+"du installerar (till skillnad från när du uppdaterar), kommer en \n"
+"dialogruta att visas och föreslå olika minimala installationer.\n"
+"\n"
+" * \"%s\": Installera det minsta antalet paket som behövs för att få en\n"
+"fungerande grafisk skrivbordsmiljö.\n"
+"\n"
+" * \"%s\": Installerar grundsystemet plus\n"
+"grundläggande verktyg och dess dokumentation. Denna installation lämpar\n"
+"sig för en server.\n"
+"\n"
+"* \"%s\": Installerar det absolut minsta antalet paket\n"
+"som behövs för ett fungerande Linux-system. Med denna installation kommer\n"
+"du ej att ha tillgång till några grafiska system. Denna\n"
+"installation är ca 65Mb stor."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Uppdatera"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Med grundläggande dokumentation"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Extremt minimal installation"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Om du valde att installera enskilda paket kommer du\n"
+"att få se ett träd innehållande alla paket klassificerade efter grupper och\n"
+"undergrupper. Om du bläddrar i trädet kan du välja hela grupper,\n"
+"undergrupper eller enskilda paket.\n"
+"\n"
+"När du väljer ett paket i trädet, visas en beskrivning till höger.\n"
+"\n"
+"Om det skulle visa sig att ett serverpaket har valts antingen\n"
+"oavsiktligt eller om det var med i en hel grupp, kommer du att få bekräfta\n"
+"att du verkligen vill att dessa servrar ska installeras. Under Mandriva\n"
+"Linux startas installerade servrar vid uppstart. Även fast de är säkra när\n"
+"den här distributionen släpps, kan det hända att säkerhetsluckor hittats\n"
+"i efterhand. Om du inte vet vad en specifik tjänst gör eller varför den\n"
+"blir installerad, klicka \"%s\" här. Om du klickar \"%s\" kommer de\n"
+"listade tjänsterna att installeras och startas automatiskt.\n"
+"\n"
+"Alternativet \"%s\" inaktiverar helt enkelt\n"
+"varningsdialogrutan som visas när installationsprogrammet automatiskt\n"
+"väljer ett paket. Detta inträffar därför att det har upptäckts att ett\n"
+"beroende med ett annat paket måste tillfredsställas för att detta paket\n"
+"ska kunna installeras ordentligt. Installationsprogrammet kan\n"
+"avgöra vilka paket som krävs för att lösa ett beroende.\n"
+"\n"
+"Den lilla diskettikonen i slutet på listan låter dig ladda en paketlista\n"
+"som du kan ha gjort vid en tidigare installation. Detta är användbart\n"
+"om du har ett antal datorer som skall ha en identisk konfiguration.\n"
+"När du klickar på den ikonen kommer du att bli ombedd om att stoppa i\n"
+"en diskett som du tidigare skapat vid slutet av en annan\n"
+" installation. Se det andra tipset i det sista steget hur du gör för att "
+"skapa\n"
+" en sådan diskett."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Automatiska beroenden"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": om du klickar på \"%s\" startar skrivarguiden.\n"
+"Se motsvarande kapitel i \"Starter Guide\" för mer information om hur du\n"
+"ska göra för att installera en ny skrivare. Gränssnittet som visas där\n"
+"liknar det som används vid installationen."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Denna dialog används för att välja vilka tjänster du vill starta vid "
+"uppstart.\n"
+"\n"
+"Här visas alla tjänster tillgängliga med den aktuella installationen.\n"
+"Titta igenom dem och avmarkera dem du inte behöver vid start.\n"
+"\n"
+"Du kan få en kort förklaringstext om en tjänst genom att välja den\n"
+"specifika tjänsten. Om du är osäker på om en tjänst är användabar eller\n"
+"inte är det säkrast att lämna den tjänsten orörd.\n"
+"\n"
+"!! Var extra försiktig i dina val om den här datorn ska användas som en\n"
+"server: du vill antagligen inte starta tjänster som du inte behöver.\n"
+"Kom ihåg att flera tjänster kan innebära en risk om de aktiveras på\n"
+"en server. Som generell regel, välj bara de tjänster du verkligen behöver. !!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux utgår från GMT (Greenwich Mean Time) och översätter det till\n"
+"lokal tid enligt den tidszon du har valt. Om hårdvaruklockan på ditt\n"
+"moderkort är utgår från lokal tid kan du inaktivera detta genom att \n"
+"avmarkera \"%s\" så att hårdvaruklockan blir samma som systemklockan.\n"
+"Det är användbart när datorn är värd för andra operativsystem som t ex \n"
+"Windows.\n"
+"\n"
+"Alternativet \"%s\" gör så att klockan ställs\n"
+"automatiskt genom att datorn kontaktar en server på Internet. I den lista\n"
+"som sedan presenteras väljer du den server som ligger närmast dig.\n"
+"Naturligtvis måste du vara uppkopplad mot Internet för att detta ska\n"
+"fungera. Det läggs in en tidserver på din dator och den kan, om så\n"
+"önskas, användas av andra datorer i ditt lokala nätverk."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Automatisk tidsynkronisering"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Grafikkort\n"
+"\n"
+" Installationsprogrammet kan vanligtvis automatiskt identifiera och\n"
+"konfigurera grafikkortet i datorn. Om det misslyckas kan du välja\n"
+"det korrekta kortet i den här listan.\n"
+"\n"
+" Om olika servrar finns tillgängliga för ditt kort, utan eller\n"
+"med 3D-acceleration, väljer du den server som bäst passar dina\n"
+"behov. "
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (som står för X Window System) är hjärtat i det grafiska gränssnittet\n"
+"i GNU/Linux. Alla grafiska miljöer som följer med Mandriva Linux\n"
+"(KDE, GNOME, AfterStep, WindowMaker osv) är beroende av det\n"
+"för att fungera.\n"
+"\n"
+"Du kommer att kunna välja ett antal parametrar för att få den optimala\n"
+"grafiska bilden: \n"
+"\n"
+"Grafikkort\n"
+"\n"
+" Installationsprogrammet kommer vanligtvis automatiskt att\n"
+"känna av och konfigurera grafikkortet som är installerat på\n"
+"datorn. Om detta är inte fungerar så kan du välja ditt kort från\n"
+"en lista.\n"
+"\n"
+" Om det finns flera servrar tillgängliga för ditt kort, med eller utan\n"
+"3D-acceleration, kommer du att ombedas välja den server som\n"
+"bäst passar dina behov.\n"
+"\n"
+"\n"
+"\n"
+"Skärm\n"
+"\n"
+" Installationsprogrammet kommer vanligtvis automatiskt att\n"
+"känna av och konfigurera vilken skärm som är kopplad till\n"
+"datorn. Om detta är inte fungerar så kan du välja din skärm från\n"
+"en lista.\n"
+"\n"
+"\n"
+"\n"
+"Upplösning\n"
+"\n"
+" Här kan du välja vilken upplösning och antal färger som din\n"
+"hårdvara ska använda. Välj den som bäst passar dina behov\n"
+"(du kan alltid ändra det när installationen är klar). Ett exempel\n"
+"av den valda konfigurationen visas i bildskärmen.\n"
+"\n"
+"\n"
+"\n"
+"Testa\n"
+"\n"
+" Beroende på vilken hårdvara du har kan detta val inte dyka upp.\n"
+"\n"
+" Systemet kommer att försöka öppna en grafisk skärm med önskad\n"
+"upplösning. Om du kan se meddelandet under testet och svara \"%s\"\n"
+"kommer DrakX att gå vidare till nästa steg. Om du inte kan se\n"
+"meddelandet så betyder det att någonting var fel med den automatiska\n"
+"konfigureringen och testet kommer automatiskt att avslutas efter 12 "
+"sekunder\n"
+"och du kommer tillbaka till menyn. Ändra inställningarna tills du får en\n"
+"korrekt konfigurerad grafisk bild.\n"
+"\n"
+"\n"
+"\n"
+"Alternativ\n"
+"\n"
+"Här kan du välja om du vill att datorn automatiskt ska starta ett grafiskt\n"
+"gränssnitt vid uppstart. Du bör kryssa för \"%s\" om din dator ska\n"
+"agera som server, eller om du inte lyckades med att konfigurera\n"
+"bilden."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Bildskärm\n"
+"\n"
+" Installationsprogrammet kan vanligtvis automatiskt identifiera och\n"
+"konfigurera din bildskärm. Om så inte är fallet kan du från denna lista\n"
+"välja den bildskärm som faktiskt är ansluten till datorn."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Upplösning\n"
+"\n"
+" Du kan här välja mellan de olika alternativ för upplösning och färgdjup\n"
+"som finns tillgängliga för din hårdvara. Välj det som bäst är anpassat för\n"
+"dina behov. (du kommer dock att ha möjlighet att ändra detta efter\n"
+"installationen). I bildskärmsbilen kan du se hur konfigurationen kommer att\n"
+"se ut. "
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Om det finns olika servrar tillgängliga för ditt kort, med eller\n"
+"utan 3D-acceleration, kommer du att få möjlighet att välja den server\n"
+"som bäst är anpassad för dina behov."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Alternativ\n"
+"\n"
+" Här kan du välja om du vill att din dator automatiskt ska starta\n"
+"ett grafiskt användargränssnitt vid uppstart. Du bör välja \"%s\" om\n"
+"din dator ska användas som server, eller om du inte lyckades att\n"
+"konfigurera bildskärmen korrekt."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Nu måste du välja var på hårddisken du vill installera Mandriva\n"
+"Linux. Om den är tom eller om ett befintligt operativsystem använder\n"
+"allt tillgängligt utrymme behöver du partitionera den. Att partitionera en\n"
+"hårddisk går ut på att man delar upp den i logiska enheter för att skapa \n"
+"utrymmen åt det nya Mandriva Linux-systemet.\n"
+"\n"
+"Eftersom resultatet av en partitionering vanligtvis inte går att ångra\n"
+"kan partitionering kännas skrämmande om du är en ovan användare.\n"
+"Denna guide förenklar processen. Innan du börjar, titta i manualen\n"
+"och ta den tid du behöver.\n"
+"\n"
+"Beroende på hårddiskkonfigurationen är flera alternativ tillgängliga:\n"
+"\n"
+" \"%s\": detta leder till en automatisk\n"
+"partitionering av den tomma disken. Du kommer inte att få några fler\n"
+"frågor.\n"
+"\n"
+" * \"%s\": guiden har hittat en eller flera\n"
+"Linux-partitioner på hårddisken. Om du vill använda dem, välj detta\n"
+"alternativ. Du uppmanas att välja monteringspunkterna som\n"
+"är associerade med varje partition. De gamla monteringspunkterna väljs\n"
+"som förval och vanligen bör du behålla dem.\n"
+"\n"
+" * \"%s\": Om Microsoft Windows\n"
+"är installerat på hårddisken och tar upp allt tillgängligt utrymme, måste\n"
+"du skapa ledigt utrymme för GNU/Linux. För att göra det kan du ta bort\n"
+"Microsoft Windows-partitionen och all data (se lösningen \"Radera hela\n"
+"hårddisken\") eller ändra storlek på Microsoft Windows-FAT partitionen.\n"
+"Ändring av storlek kan utföras utan att förlora data, under förutsättning\n"
+"att du nyligen defragmenterat Windows-partitionen och att den använder.\n"
+"formatet FAT. Du rekommenderas dock starkt att först säkerhetskopiera \n"
+"data från Windows-partitionen. Denna lösning rekommenderas om du vill\n"
+" använda både Mandriva Linux och Microsoft Windows på samma dator.\n"
+"\n"
+" Innan du väljer denna lösning måste du vara införstådd med att\n"
+" storleken på Microsoft Windows-partitionen kommer att bli mindre\n"
+" än den är för närvarande. Det betyder att du kommer att ha mindre\n"
+" utrymme under Microsoft Windows för att lagra data eller installera\n"
+" ny mjukvara.\n"
+"\n"
+" * \"%s\": Om du vill ta bort alla data och alla\n"
+"partitioner som finns på hårddisken och ersätta dem med ditt nya\n"
+"Mandriva Linux-system, väljer du detta alternativ. Var försiktig med\n"
+"detta alternativ eftersom du kan inte ångra dig efteråt.\n"
+"\n"
+" !! Om du väljer detta alternativ kommer alla data på disken att tas "
+"bort. !!\n"
+"\n"
+" * \"%s\": tar helt enkelt bort allt på disken och startar en\n"
+"fräsch partitionering från grunden. Alla data på disken kommer att tas\n"
+"bort.\n"
+"\n"
+" !!Om du väljer detta alternativ kommer all data på disken att tas "
+"bort.!!\n"
+"\n"
+" * \"%s\": välj detta alternativ om du vill partitionera\n"
+"hårddisken manuellt. Var försiktig - det är ett kraftfullt men farligt\n"
+"alternativ. Du kan väldigt enkelt förlora allt data. Därför, välj\n"
+"inte detta om du inte är helt säker på vad du gör. För att veta hur du ska\n"
+"använda DiskDrake-verktyget som används här, se kapitlet \"Managing Your\n"
+"Partitions\" i \"Starter Guide\"."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Använd existerande partition"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Radera hela hårddisken"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Installationen är nu färdig och GNU/Linux-systemet är klart\n"
+"att användas. Klicka på \"%s\" för att starta om systemet. Det\n"
+"första du bör se efter det att datorn har gjort hårdvarutesterna är\n"
+"startmenyn där du kan välja vilket operativsystem du vill starta.\n"
+"\n"
+"Knappen \"%s\" visar ytterligare två knappar som är till för att:\n"
+"\n"
+" * \"%s\": för att skapa en\n"
+"installationsdiskett som automatiskt utför en hel installation utan\n"
+"hjälp av en operatör, liknande installationen du just utfört.\n"
+"\n"
+" Observera att två olika alternativ finns tillgängliga när du klickar på\n"
+"knappen:\n"
+"\n"
+" * \"%s\". Det här är en delvis automatisk installation eftersom\n"
+"partitioneringssteget (och endast detta) fortfarande är interaktivt.\n"
+"\n"
+" * \"%s\". Helt automatisk installation: allt innehåll på\n"
+"hårddisken skrivs om och all data går förlorad.\n"
+"\n"
+" Den här funktionen är väldigt praktisk om du ska installera ett större\n"
+"antal likande datorer. Se sektionen \"Auto install\" på vår hemsida.\n"
+"\n"
+" * \"%s\"(*): sparar föregående paketval.\n"
+"För att använda detta paketval vid en senare installation, sätt in \n"
+"disketten i diskettstationen. Vid prompten, tryck på \n"
+"[F1], och skriv >>linux defcfg=\"floppy\"<< och tryck på [Enter] knappen.\n"
+"\n"
+"(*) Du behöver en FAT-formaterad diskett. För att skapa en under\n"
+"GNU/Linux, skriv \"mformat a:\", eller \"fdformat /dev/fd0\" följt av\n"
+" \"mkfs.vfat /dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Generera automatisk installationsdiskett"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Om du önskar återanvända utrymmet på några gamla GNU/Linux\n"
+"partitioner kan du omformatera dem för att rensa dem på data. \n"
+"Om du vill göra det, välj de partitioner du vill formatera.\n"
+"\n"
+"Observera att det inte är nödvändigt att omformatera alla existerande\n"
+"partitioner. Du måste omformatera de partitioner som innehåller själva\n"
+"operativsystemet. (som t ex \"/\", \"/usr\" eller \"/var\") men du behöver\n"
+"inte formatera partitioner som innehåller data du vill behålla\n"
+"(vanligtvis /home).\n"
+"\n"
+"Var försiktig när du väljer partitioner, för efter formatering kommer all\n"
+"data på valda partitioner att vara raderat och du kommer inte att kunna \n"
+"återskapa någonting.\n"
+"\n"
+"Klicka på \"%s\" när du är redo att formatera partitionerna.\n"
+"\n"
+"Klicka på \"%s\" om du vill välja andra partitioner att installera ditt\n"
+"nya Mandriva Linux-system på.\n"
+"\n"
+"Klicka på \"%s\" för att välja på vilka partitioner du vill leta\n"
+"efter felaktiga block."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Sedan denna version av Mandriva Linux gavs ut är det troligt att\n"
+"några paket har uppdaterats. Fel kan ha rättats till och\n"
+"säkerhetsrelaterade problem kan ha lösts. För att du ska kunna ta\n"
+"del av dessa uppdateringar ges du nu möjligheten att ladda ner dem\n"
+"från Internet. Välj \"%s\" om du har en fungerande \n"
+"Internetuppkoppling, eller \"%s\" om du vill installera uppdaterade\n"
+" paket senare.\n"
+"\n"
+"När du väljer \"%s\" visas en lista på webplatser som det går att hämta\n"
+"paketen från. Du bör välja det som ligger närmast dig. Sedan visas en\n"
+"trädvy där det går att välja paket. Gå igenom valen och klicka sedan\n"
+"på \"%s\" för att hämta och installera valda paket, eller \"%s\" för att\n"
+" avbryta."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Nu är det dags att välja vilken säkerhetsnivå som ska tillämpas på\n"
+"datorn. En tumregel är säkerhetsnivån bör sättas högre om den \n"
+"kommer att innehålla viktig data eller om den kommer att vara \n"
+"tillgänglig från Internet. Det bör dock nämnas att nivån på säkerheten\n"
+"påverkar hur lättanvänd datorn blir.\n"
+"Om du inte är säker på vad du ska välja, behåll det förvalda alternativet.\n"
+"Du kan ändra det senare med draksec verktyget, vilket är en del av av\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+"Skriv in email adressen till personen som är ansvarig för säkerheten\n"
+"i \"%s\" fältet. Säkerhetsmeddelanden kommer att mailas till den\n"
+"adressen."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Säkerhetsadministratör"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Nu måste du välja vilka partitioner som ska användas för installationen av\n"
+"Mandriva Linux-systemet. Om partitioner redan har definierats, antingen\n"
+"från en tidigare installation av GNU/Linux eller av ett annat\n"
+"partitionsverktyg, kan du använda dessa. Annars måste hårddiskpartitioner\n"
+"definieras.\n"
+"\n"
+"För att skapa partitioner måste du först välja en hårddisk. Du kan välja\n"
+"disken som ska partitioneras genom att klicka på \"hda\" för den första\n"
+"IDE-disken, \"hdb\" för den andra, \"sda\" för den första SCSI-disken\n"
+"och så vidare.\n"
+"\n"
+"För att partitionera den valda disken kan du använda dessa alternativ:\n"
+"\n"
+" * \"%s\": det här alternativet tar bort alla partitioner på\n"
+"den valda hårddisken.\n"
+"\n"
+" * \"%s\": det här alternativet låter dig automatiskt\n"
+"skapa Ext3- och växlingspartitioner på det lediga utrymmet på hårddisken.\n"
+"\n"
+" * \"%s\": ger tillgång till ytterligare funktioner:\n"
+"\n"
+" * \"%s\" sparar partitionstabellen på diskett. Användbart för eventuell "
+"framtida återskapning av partitionstabell. Du rekommenderas\n"
+"att utföra detta steg.\n"
+"\n"
+" * \"%s\": tillåter återskapning av partitionstabell som sparats på "
+"diskett.\n"
+"\n"
+" * \"%s\": om partitionstabellen är skadad, kan du\n"
+"försöka reparera den med detta alternativ. Var försiktig och ha i åtanke\n"
+"att det kan misslyckas.\n"
+"\n"
+" * \"%s\": bortser från alla ändringar och laddar din\n"
+"ursprungliga partitionstabell.\n"
+"\n"
+" * \"%s\": avmarkering av detta\n"
+"alternativ tvingar användarna att manuellt montera och avmontera \n"
+"flyttbar media som disketter och cd-skivor.\n"
+"\n"
+" * \"%s\": använd det här alternativet om du vill använda en guide för\n"
+"att partitionera hårddisken. Det rekommenderas om du inte har god kunskap\n"
+"om partitionering.\n"
+"\n"
+" * \"%s\": välj detta för att ångra ändringarna.\n"
+"\n"
+" * \"%s\": tillåter ytterligare åtgärder för partitionering\n"
+"(Typ, alternativ, format) och ger mer information.\n"
+"\n"
+" * \"%s\": när du har partitionerat klart hårddisken, kommer detta\n"
+"att spara ändringarna till disk.\n"
+"\n"
+"När du bestämmer storleken på en partition kan du finjustera storleken\n"
+"genom att använda piltangenterna på tangentbordet.\n"
+"\n"
+"Observera: du kan hoppa till vilket alternativ som helst med tangentbordet.\n"
+"Navigera genom partitionerna med tangenten tabb och upp- och nerpilarna.\n"
+"\n"
+"När en partition är vald kan du använda:\n"
+"\n"
+" * Ctrl+c för att skapa en ny partition (när en tom partition är vald).\n"
+"\n"
+" * Ctrl+d för att ta bort en partition;\n"
+"\n"
+" * Ctrl+m för att ange monteringspunkten.\n"
+"\n"
+"För att få information om de olika typerna av filsystem, läs kapitlet\n"
+"ext2FS i \"Reference Manual\".\n"
+"\n"
+"Om du installerar på en PPC-dator bör du skapa en en liten HFS-\n"
+"partition (\"bootstrap\") på åtminstone 1 MB. Den kommer att användas av\n"
+"starthanteraren Yaboot. Om du gör partitionen lite större, t ex 50 MB,\n"
+"har du ett bra ställe att lagra en reservkärna och ramdiskar för nödlägen."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Automatisk montering av flyttningsbar media"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Byt mellan normal/expert läge"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Fler än en Microsoft Windows-partition har hittats på hårddisken.\n"
+"Välj vilken av dem du vill ändra storlek på för att kunna installera\n"
+"operativsystemet Mandriva Linux.\n"
+"\n"
+"Varje partition listas som följer: \"Linux-namn\", \"Windows-namn\"\n"
+"\"Kapacitet\".\n"
+"\n"
+"\"Linux-namn\" är strukturerad på följande vis: \"hårddisktyp\", "
+"\"hårddisknummer\",\n"
+"\"partitionsnummer\" (till exempel, \"hda1\").\n"
+"\n"
+"\"Hårddisktyp\" är \"hd\" om hårddisken är en IDE-hårddisk och\n"
+"\"sd\" om det är en SCSI-hårddisk.\n"
+"\n"
+"\"Hårddisknummer\" är alltid en bokstav efter \"hd\" eller \"sd\". Med IDE-\n"
+"hårddiskar:\n"
+"\n"
+" * \"a\" betyder \"master-hårddisk på den primära IDE-kontrollern\",\n"
+"\n"
+" * \"b\" betyder \"slavhårddisk på den primära IDE-kontrollern\",\n"
+"\n"
+" * \"c\" betyder \"master-hårddisk på den sekundära IDE-kontrollern\",\n"
+"\n"
+" * \"d\" betyder \"slavhårddisk på den sekundära IDE-kontrollern\".\n"
+"\n"
+"Med SCSI-hårddiskar, betyder \"a\" \"lägsta SCSI-ID\", ett \"b\" betyder\n"
+"\"andra lägsta SCSI-ID\", etc.\n"
+"\n"
+"\"Windows-namn\" är bokstaven på hårddisken under Windows (den första\n"
+"disken eller partitionen kallas \"C:\"). "
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+" * \"%s\": kontrollera valet av land. Om du inte finns i detta land,\n"
+"klicka på knappen \"%s\" och välj ett annat. Om ditt land\n"
+"inte finns i den första listan som visas, klicka på \"%s\" för att få\n"
+"den fullständiga listan på länder."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Detta steg startas endast om en gammal GNU/Linux-partition har hittats\n"
+"på datorn.\n"
+"\n"
+"DrakX behöver veta om du önskar starta en ny installation eller uppdatera\n"
+"ett redan existerande Mandriva Linux-system:\n"
+"\n"
+" * \"%s\" Detta raderar oftast helt det gamla systemet. Om du vill ändra\n"
+"hur hårddiskarna är partitionerade eller ändra filsystemet ska du använda\n"
+"detta alternativ. Beroende på hur du har valt att partitionera är det "
+"möjligt\n"
+"att förhindra viss data från att skrivas över (förslagsvis innehållet i \n"
+"\"home\" katalogen).\n"
+"\n"
+" * \"%s\" detta installationsalternativ uppdaterar de paket som är "
+"installerade\n"
+"på ditt Mandriva Linux-system. Dina nuvarande partitioner och dina\n"
+"användares data kommer inte att förändras. De flesta installationssteg\n"
+"kommer att vara tillgängliga precis som på en vanlig installation.\n"
+"\n"
+"Uppdateringsalternativet bör fungera utmärkt på Mandriva Linux-system\n"
+"som är version \"8.1\" eller senare. Att göra en uppdatering av tidigare\n"
+"versioner än \"8.1\" rekommenderas ej."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"I de flesta fall väljer DrakX rätt tangentbord åt dig (beroende på vilket\n"
+"språk du har valt) och det hela sker automatiskt. Kontrollera att \n"
+"det förvalda tangentbordet passar dig eller välj ett annat tangentbord.\n"
+"\n"
+"Det kan även hända\n"
+"att du har ett tangentbord som inte helt motsvarar ditt språk: om du\n"
+"till exempel är en engelsktalande schweizare kanske du ändå vill att\n"
+"ditt tangentbord är schweiziskt. Eller om du talar engelska och bor i\n"
+"Quebec kan du befinna dig i en liknande situation. I båda fallen behöver\n"
+"du gå tillbaka till detta installationssteg och välja önskat tangentbord\n"
+"ur listan.\n"
+"\n"
+"Klicka på \"%s\" för en komplett lista över tillgängliga tangentbord.\n"
+"\n"
+"Om du väljer en tangentbordslayout som inte är baserad på ett icke-latinskt\n"
+"alfabet kommer du i nästa dialogruta uppmanas att välja snabbtangenterna \n"
+"som ska användas för att byta mellan den latinska layouten och \n"
+"den icke-latinska."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Första steget är att välja språk.\n"
+"\n"
+"Det språk du väljer kommer att påverka språket i dokumentationen, "
+"installationsprogrammet och systemet i allmänhet. Välj först den region du "
+"bor i och sedan det språk som du talar.\n"
+"\n"
+"Om du klickar på %s kan du välja andra språk som du vill\n"
+"ha installerade på datorn. Genom att välja andra språk så kommer\n"
+"språkspecifika filer för systemdokumentation och program att installeras.\n"
+"Om du till exempel får besök av personer från Spanien som behöver använda\n"
+"datorn, välj ditt eget språk som huvudspråket i trädvyn och under den\n"
+"avancerade sektionen klicka på den ruta som motsvarar\n"
+"\"%s\".\n"
+"\n"
+"Beträffande UTF-8 (Unicode) stöd: Unicode är en internationell\n"
+"standard för teckenkoder som har som mål att täcka alla\n"
+"existerande språk. Unicode i GNU/Linux fungerar, men\n"
+"är fortfarande under utveckling. Användandet av Unicode \n"
+"kommer därför att vara beroende på vilka språk du väljer.\n"
+"\n"
+" * Om du väljer ett språk med starkt stöd för äldre teckenkoder \n"
+"(latin1 språk, ryska, japanska, kinesiska, koreanska, thailändska, \n"
+"grekiska, turkiska, de flesta iso8859-2 språk) så kommer\n"
+"den äldre teckenkoden att väljas som standard. \n"
+"\n"
+" * Alla andra språk kommer att få Unicode som standard.\n"
+"\n"
+" * Om två eller flera språk har valts och dessa språk använder\n"
+"olika teckenkoder så kommer Unicode att väljas som standard \n"
+"för hela systemet.\n"
+"\n"
+" * Slutligen kan användaren tvinga hela systemet att använda\n"
+"Unicode oberoende av vilka språk som har valts genom att välja \n"
+"alternativet \"%s\" .\n"
+"\n"
+"Observera att flera språk kan installeras. Du kan till och med installera \n"
+"dem alla genom att välja \"%s\". Om du väljer stöd för ett språk\n"
+"betyder det att översättningar, teckensnitt, stavningskontroll etc. för \n"
+"språket kommer att installeras. \n"
+"För att välja mellan de olika språken installerade på systemet kan du\n"
+"starta kommandot \"localedrake\" som root för att ändra språket\n"
+"för hela systemet. Kör du kommandot som en vanlig användare kommer\n"
+"du att ändra språket för bara den användaren."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Spanska"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"DrakX identifierar vanligen hur många knappar din mus har. Om inte\n"
+"antar den att du har en mus med två knappar och kommer att ställa in\n"
+"den för knapp 3-emulering. Den tredje knappen på en två-knappars\n"
+"mus kan användas genom att trycka på vänstra och högra\n"
+"musknappen samtidigt . DrakX kommer automatiskt att veta\n"
+"om musen är av typ PS/2, seriell eller USB.\n"
+"\n"
+"Om du har en mus med tre knappar utan hjul kan du välj en \"%s\"\n"
+"mus. DrakX kommer då ställa in den så du kan simulera ett hjul\n"
+"med den. Tryck in mittenknappen och rör muspekaren upp eller\n"
+"ner för att simulera användandet av ett mushjul.\n"
+"\n"
+"Om du vill specificera en annan mustyp välj då den i listan\n"
+"som visas.\n"
+"\n"
+"Du kan välja \"%s\" för att specifiera en \"generisk\" mustyp som\n"
+"kommer att fungera med nästan alla olika möss.\n"
+"\n"
+"Om du väljer en annan mus än den förvalda kommer en testskärm att\n"
+"visas. Använd musknapparna och hjulet för att verifiera att inställningarna\n"
+"är korrekt. Om musen inte fungerar ordentligt tryck på mellanslag eller\n"
+"Enter för att avbryta och välja igen.\n"
+"\n"
+"Ibland identifieras inte hjulmöss automatiskt. Du måste manuellt välja\n"
+"korrekt mus i listan. Se till så att du väljer den som motsvarar porten den\n"
+"är ansluten till. När du valt en mus och har klickat \"%s\" kommer en \n"
+"musbild att visas. Du måste då röra på hjulet för att aktivera det, och\n"
+"du kommer se mushjulet på skärmen röra sig. \n"
+"Testa sedan att alla knappar och musrörelsen fungerar korrekt, muspekaren\n"
+"skall röra sig på skärmen om allt fungerar."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "med hjulemulering"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Universal | Valfri PS/2- eller USB-mus"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Välj den korrekta porten. Exempel: porten som kallas \"COM1\" i\n"
+"Windows heter \"ttyS0\" i GNU/Linux."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Det här är det viktigaste steget för säkerheten i ditt GNU/Linux-system:\n"
+"du ska ange \"root\"-lösenordet. \"root\" är systemets administratör och\n"
+"den enda som har behörighet att göra uppdateringar, lägga till användare,\n"
+"ändra på systemets övergripande konfiguration, osv. Kort sagt, \"root\" kan\n"
+"göra allt. Därför måste du välja ett lösenord som är svårt att lista ut.\n"
+"DrakX talar om för dig om du väljer ett lösenord som är för lätt. Som du\n"
+"ser har du möjlighet att inte ange något lösenord alls, men vi avråder från\n"
+"det. Det är lika lätt att begå misstag i GNU/Linux som i andra "
+"operativsystem.\n"
+"Eftersom \"root\" kan gå förbi alla begränsningar och oavsiktligt radera\n"
+"alla data på partitioner genom att vara oförsiktig är det viktigt att det "
+"är\n"
+"svårt att bli \"root\".\n"
+"\n"
+"Lösenordet bör vara en blandning av numeriska tecken och bokstäver och\n"
+"minst åtta tecken långt. Skriv aldrig ner \"root\"-lösenordet - det\n"
+"ökar risken för ett intrång i systemet.\n"
+"\n"
+"Gör dock inte lösenordet för långt och komplicerat, för du måste\n"
+"kunna komma ihåg det utan allt för mycket besvär.\n"
+"\n"
+"Lösenordet visas inte på skärmen när du skriver in det. Det är därför\n"
+"du får skriva det två gånger, för att undvika att du skriver fel. Om du\n"
+"gör samma skrivfel två gånger måste du använda detta \"felaktiga\"\n"
+"lösenord första gången du loggar in.\n"
+"\n"
+"Tänk på att om du byter språk för tangentbordsinställningar efter att du\n"
+"har skrivit in ditt lösenord så kommer kanske vissa bokstäver eller\n"
+"specialtecken att tolkas annorlunda fast du trycker på exakt samma\n"
+"tangent som tidigare. Detta kan göra det svårt att skriva in lösenordet\n"
+"korrekt eftersom det inte visas på skärmen medan du skriver. Det kan\n"
+"därför vara en god ide att undvika att använda specialtecken i ditt\n"
+"lösenord.\n"
+"\n"
+"Om du önskar att tillgången till denna dator ska kontrolleras av en\n"
+"autentiseringsserver, klicka på knappen \"%s\".\n"
+"\n"
+"Om ditt nätverk använder LDAP, NIS eller en Windows PDC för autentisering,\n"
+"välj motsvarande för \"%s\". Om du är osäker, fråga\n"
+"din nätverksadministratör.\n"
+"\n"
+"Om du har problem med att komma ihåg lösenord kan du välja att ha\n"
+"\"%s\", om din dator inte kommer att vara uppkopplad mot\n"
+"Internet och du litar på alla som har tillgång till den."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "autentisering"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"LILO och grub är starthanterare, små program som körs av din dator\n"
+"vid uppstart. De ansvarar för att starta systemet och ladda ett valfritt\n"
+"operativsystem. Detta steg är vanligtvis\n"
+"helt automatiserat. DrakX kommer att analysera diskens startsektor\n"
+"och agera efter vad den hittar där:\n"
+"\n"
+" * Om en Windows-startsektor hittas kommer den att ersättas med en\n"
+"Grub/Lilo-startsektor. Du kommer då varje gång du startar datorn att\n"
+"kunna välja att ladda antingen GNU/Linux eller andra operativsystem.\n"
+"\n"
+" * Om en Grub- eller Lilo-startsektor hittas kommer den att ersättas\n"
+"med en ny.\n"
+"\n"
+"Om den inte kan avgöra lämplig åtgärd kommer DrakX att fråga dig\n"
+"var starthanteraren ska placeras. Generellt är \"%s\" det säkraste\n"
+"valet. Om du väljer \"%s\" kommer ingen starthanterare att\n"
+"installeras. Välj endast detta om du är en erfaren användare som\n"
+"vet vad det innebär."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Här väljer du vilket skrivarsystem du ska använda. Andra operativsystem\n"
+"erbjuder dig kanske bara ett, men Mandriva erbjuder dig två.\n"
+"Vilket skrivarsystem som är lämpligast är beroende på vilken \n"
+"systemkonfiguration du har.\n"
+"\n"
+" * \"%s\" - vilket betyder \"print, do not queue\" (skriv direkt utan att \n"
+"använda köer), är det du ska välja om\n"
+"du har en direkt anslutning till din skrivare och vill ha möjligheten att\n"
+"stoppa utskrifter, och om du inte har några nätverksskrivare. \"%s\" "
+"hanterar\n"
+"bara enkla nätverksfall och är ganska långsamt över nätverk. Välj\n"
+"\"pdq\" om GNU/Linux är nytt för dig.\n"
+"\n"
+" * \"%s\" - ``Common Unix Printing System\" är mycket bra på att skriva\n"
+"ut både till lokala skrivare eller till skrivare som kan vara placerade \n"
+"på andra sidan jorden. Det är enkelt att anpassa och kan\n"
+"agera som en server eller klient för det gamla skrivarsystemet \"lpd\", det\n"
+"är alltså kompatibelt med gamla skrivarsystem. Det är mycket kraftfullt,\n"
+"men den grundläggande installationen är nästan lika enkel som med \"pdq\".\n"
+"Om du ska använda emulera en \"lpd\"-server måste du aktivera\n"
+"demonen \"cups-lpd\". \"%s\" har grafiska gränssnitt för utskrift, för olika "
+"utskriftsalternativ, och för att styra skrivare.\n"
+"\n"
+"Om du gör ett val nu och senare kommer fram till att du inte gillar\n"
+"skrivarsystemet kan du alltid ändra dig efter installationen genom att\n"
+"använda PrinterdDrake i Mandrivas kontrollcentral, och där klicka på\n"
+"knappen \"%s\"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Expert"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX letar nu efter IDE-enheter i datorn. DrakX kommer också att\n"
+"leta efter PCI SCSI-kort på systemet. Om DrakX hittar ett SCSI-kort\n"
+"och känner till rätt drivrutin, kommer kortet att installeras automatiskt.\n"
+"\n"
+"Eftersom hårdvaruidentifieringen inte alltid hittar all hårdvara, kan du\n"
+"bli tvungen att ange din hårdvara för hand.\n"
+"\n"
+"Om du blir tvungen att manuellt specificera kortet kommer DrakX att\n"
+"fråga om du vill ange alternativ för det. Du bör tillåta DrakX att själv\n"
+"undersöka hårdvaran efter alternativ. Detta fungerar oftast bra.\n"
+"\n"
+"Om DrakX inte klarar av att undersöka hårdvaran kommer du att \n"
+"behöva konfigurera drivrutinen manuellt."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": om ett ljudkort identifierats i datorn visas det här.\n"
+"Om du märker att det ljudkort som visas inte är det samma som finns\n"
+"i din dator så kan du klicka på knappen för att välja en annan drivrutin."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"För att möjliggöra en förhandsgranskning, så presenterar DrakX en\n"
+"sammanfattning av ditt system. Beroende på vilken hårdvara du har \n"
+"installerad så kan du ha några eller alla av de följande kategorierna.\n"
+"Varje kategori består av vad som konfigurerats, följt av en enkel\n"
+"sammanfattning av aktuell konfigurering.\n"
+"Klicka på motsvarande \"%s\"-knapp för att ändra konfigureringen.\n"
+"\n"
+" * \"%s\": kontrollera aktuella tangentbordsinställning och ändra om\n"
+"så önskas.\n"
+"\n"
+" * \"%s\": kontrollera förvalt land. Om du inte bor i detta land, välj \n"
+"knappen \"%s\" och ändra. Om ditt land inte finns med i den första\n"
+"listan som visas, klicka på knappen \"%s\" för att få en fullständig lista\n"
+"över länder.\n"
+"\n"
+" * \"%s\": DrakX väljer automatiskt en tidszon baserat på vilket land\n"
+"du har valt. Om detta val inte är korrekt kan du korrigera det genom\n"
+"att klicka på knappen \"%s\".\n"
+"\n"
+" * \"%s\": kontrollera aktuell muskonfiguration och klicka på knappen för\n"
+"att ändra den om så önskas.\n"
+"\n"
+" * \"%s\": Genom att klicka på knappen \"%s\" så öppnas guiden för\n"
+"konfigurering av skrivare. Läs i motsvarande kapitel i \"Starter Guide\"\n"
+"för mer information om hur man konfigurerar en ny skrivare. Gränssnittet\n"
+"som används liknar det som användes under själva installationen.\n"
+"\n"
+" * \"%s\": om ett ljudkort hittats på ditt system så visas det här. Om du\n"
+"upptäcker att ljudkortet som visas inte stämmer överens med det som\n"
+"i själva verket finns på din dator så kan du klicka på knappen och\n"
+"välja en ny drivrutin.\n"
+"\n"
+" * \"%s\": om ett TV-kort hittats på systemet så visas det här. \n"
+"Om du har ett TV-kort och det inte har hittats, klicka på \"%s\" för\n"
+"att försöka konfigurera det manuellt.\n"
+"\n"
+" * \"%s\": du kan klicka på \"%s\" för att ändra parametrar till\n"
+"kortet om det inte är korrekt inställt.\n"
+"\n"
+" * \"%s\": DrakX ställer som förval in ditt grafiska gränssnitt till "
+"upplösningen \"800x600\" eller \"1024x768\". Om detta inte passar dig, \n"
+"klicka på \"%s\" för att ändra inställningarna. \n"
+"\n"
+" * \"%s\": konfigurera din anslutning till Internet eller ett\n"
+"lokalt nätverk. Använd eventuell tryckt dokumentation eller använd\n"
+"Mandriva Linux Control Center efter installationen har slutförts för att\n"
+"få tillgång till dokumentation och hjälp med inställningar.\n"
+"\n"
+" * \"%s\" ställa in HTTP- och FTP-proxy inställingar om din\n"
+"dator använder sig av en proxyserver för att nå nätet.\n"
+"\n"
+" * \"%s\": omdefiniera säkerhetsnivån som\n"
+"valdes i ett tidigare steg av installationen.\n"
+"\n"
+" * \"%s\": om du tänker koppla upp din dator till Internet så är\n"
+"det en god ide att skydda dig från intrång genom att konfigurera\n"
+"en brandvägg. Läs i motsvarande kapitel av \"Starter Guide\" för\n"
+"mer detaljerad beskrivning av konfigurering av brandväggar.\n"
+"\n"
+" * \"%s\" ändra konfigurationen av din starthanterare.\n"
+" Detta bör endast göras av erfarna användare. \n"
+"Använd tryckt dokumentation eller den inbyggda hjälpen i Mandriva Linux\n"
+"Control Center för konfiguration av starthanterare\n"
+".\n"
+" * \"%s\": här kan du ställa in i detalj vilka tjänster som körs på din\n"
+"dator. Om du tänker använda din dator som server är det en god ide att\n"
+"se över dessa inställningar."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN-kort"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Grafiskt gränssnitt"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Välj vilken hårddisk du vill radera för att kunna installera din nya\n"
+"Mandriva Linux-partition. Var försiktig, alla data som för tillfället\n"
+"finns på partitionen kommer att gå förlorad och kommer inte att kunna \n"
+"återställas!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Klicka på \"%s\" om du vill ta bort alla data och alla partitioner som\n"
+"finns på denna hårddisk. Var försiktig, efter det att du klickat på \"%s\" \n"
+"kommer du inte att kunna återställa någon data eller några partitioner på\n"
+"denna hårddisk, inkluderande Windows-data.\n"
+"\n"
+"Klicka på \"%s\" för att avbryta denna operation utan att förlora \n"
+"någon data eller några partitioner på denna hårddisk."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Nästa ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Föregående"
+
diff --git a/perl-install/install/help/po/ta.po b/perl-install/install/help/po/ta.po
new file mode 100644
index 000000000..582b2dfed
--- /dev/null
+++ b/perl-install/install/help/po/ta.po
@@ -0,0 +1,1590 @@
+# Drak X
+# Copyright (C) 2002 Mandriva
+#
+# NOTE: use UTF-8 only
+#
+# prabu <prabu_anand2000@yahoo.com>, 2002.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX 1.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2002-09-06 00:35+0800\n"
+"Last-Translator: prabu anand <prabu_anand2000@yahoo.com>\n"
+"Language-Team: Tamil <tamilinix@yahoogroups.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.9.6\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../help.pm:14
+#, fuzzy, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"உதவி இன்னமும் மொழிபெயர்கப்படவில்லை. Before continuing, you should read carefully "
+"the terms of the license. It\n"
+"covers the whole Mandriva Linux distribution, and if you do not agree with\n"
+"all the terms in it, click on the \"Refuse\" button which will immediately\n"
+"terminate the installation. To continue with the installation, click on the\n"
+"\"Accept\" button."
+
+#: ../help.pm:20
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"உதவி இன்னமும் மொழிபெயர்கப்படவில்லை.GNU/Linux is a multiuser system, and this "
+"means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more. But unlike \"root\", which is the administrator, the users\n"
+"you will add here will not be entitled to change anything except their own\n"
+"files and their own configuration. You will have to create at least one\n"
+"regular user for yourself. That account is where you should log in for\n"
+"routine use. Although it is very practical to log in as \"root\" everyday,\n"
+"it may also be very dangerous! The slightest mistake could mean that your\n"
+"system would not work any more. If you make a serious mistake as a regular\n"
+"user, you may only lose some information, but not the entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
+"as you can actually enter whatever you want. DrakX will then take the first\n"
+"word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
+"from a security point of view, but that is no reason to neglect it: after\n"
+"all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of your friends: your father or your sister, for\n"
+"example. When you finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default)."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "நீங்கள் இந்த வசதியை பயன்படுத்த விரும்புகிறீர்களா?"
+
+#: ../help.pm:57
+#, fuzzy, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"உதவி இன்னமும் மொழிபெயர்கப்படவில்லை.Listed above are the existing Linux partitions "
+"detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a partition for \"/home\"\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+
+#: ../help.pm:88
+#, fuzzy, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"உதவி இன்னமும் மொழிபெயர்கப்படவில்லை.The Mandriva Linux installation is spread out "
+"over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required"
+
+#: ../help.pm:95
+#, fuzzy, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"உதவி இன்னமும் மொழிபெயர்கப்படவில்லை.It is now time to specify which programs you "
+"wish to install on your\n"
+"system. There are thousands of packages available for Mandriva Linux, and\n"
+"you are not supposed to know them all by heart.\n"
+"\n"
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
+"\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
+"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
+"\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
+"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
+"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you deselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the fewer packages possible to have a working\n"
+"graphical desktop;\n"
+"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
+"\n"
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful for repairing or\n"
+"updating an existing system."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "ேமம்படுத்துதல்"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "With basic documentation"
+msgstr "உதவி நூல்களுடன் (குறைந்தபட்சம் இது தேவை!)"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "Truly minimal install"
+msgstr "குறைந்தபட்ச நிறுவல்"
+
+#: ../help.pm:152
+#, fuzzy, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"உதவி இன்னமும் மொழிபெயர்கப்படவில்லை.Finally, depending on whether or not you "
+"selected individual packages, you\n"
+"will be presented a tree containing all packages classified by groups and\n"
+"subgroups. While browsing the tree, you can select entire groups,\n"
+"subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An estimate of the time it will take to\n"
+"install everything is displayed on the screen, to help you gauge if there\n"
+"is sufficient time to enjoy a cup of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandriva Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do\n"
+"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of last step on how to create such\n"
+"a floppy."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr ""
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"உதவி இன்னமும் மொழிபெயர்கப்படவில்லை.You may now choose which services you wish to "
+"start at boot time.\n"
+"\n"
+"Here are presented all the services available with the current\n"
+"installation. Review them carefully and uncheck those which are not always\n"
+"needed at boot time.\n"
+"\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
+
+#: ../help.pm:209
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"உதவி இன்னமும் மொழிபெயர்கப்படவில்லை.GNU/Linux manages time in GMT (Greenwich Mean "
+"Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
+
+#: ../help.pm:220
+#, fuzzy, c-format
+msgid "Automatic time synchronization"
+msgstr "தானியங்கி நேர ஒத்தியக்கி(NTP உதவியுடன்)"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, fuzzy, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"உதவி இன்னமும் மொழிபெயர்கப்படவில்ைல.Finally, you will be asked whether you want to "
+"see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+
+#: ../help.pm:377
+#, fuzzy, c-format
+msgid "Use existing partition"
+msgstr "இருக்கும் வகிர்களை பயன்படுத்துங்கள்"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "முழு வட்ைடயும் அழித்து விடு"
+
+#: ../help.pm:380
+#, fuzzy, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"உதவி இன்னமும் மொழிபெயர்கப்படவில்லை.There you are. Installation is now complete "
+"and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"%s\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
+
+#: ../help.pm:412
+#, fuzzy, c-format
+msgid "Generate auto-install floppy"
+msgstr "தானியங்கி நிறுவல்வட்ைட உருவாக்கவும்"
+
+#: ../help.pm:415
+#, fuzzy, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"உதவி இன்னமும் மொழிபெயர்கப்படவில்லை.Any partitions that have been newly defined "
+"must be formatted for use\n"
+"(formatting means creating a filesystem).\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to\n"
+"erase any data they contain. If you wish to do that, please select those\n"
+"partitions as well.\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
+"reformat partitions containing data that you wish to keep (typically\n"
+"\"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After formatting, all data on\n"
+"the selected partitions will be deleted and you will not be able to recover\n"
+"any of it.\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
+
+#: ../help.pm:437
+#, fuzzy, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"உங்கள் மான்டிரேக் லினக்ஸ் இயக்க நிரல் வெளியீட்டிற்கும் \n"
+"இன்றைய தினத்திற்கும் இடையில் நிறைய புதிய பொதிகள் வெளிவந்து\n"
+"இருக்கலாம். இவை உங்கள் கணிணியில் நிறுவப்பட்டுள்ள பொதிகளின்\n"
+"பாதுகாப்பு குறைபாடுகளையும், பிழைகளையும் நீக்க இவை தேவைப்படலாம்\n"
+"இவை இணையத்தில் தரவு இறக்கம் செய்ய வேண்டும். இப்போது இணையத்துடன் \n"
+"இணைப்பு இருந்தால் நீங்கள் இவற்றை இறக்கி நிறுவலாம். நீங்கள் தொலைபேசி\n"
+"முலம் இணைந்திருந்தால் இதற்கு நீண்ட நேரம் ஆகலாம்\n"
+"பொதிகளை நிறுவ \"ஆம்\" எனவும், நிறுவ விருப்பம் இல்லையென்றால் \"இல்லை\" \n"
+"எனவும் தேர்வு செய்யவும்.\n"
+"\n"
+"பொதிகளை நிறுவ \"ஆம்\" என தேர்வு செய்தால் உங்களுக்கு பல இணையதளங்களின்\n"
+"முகவரி காட்டப்படும். உங்களுக்கு அருகில் உள்ள தளத்திலிருந்து இறக்க அதனை\n"
+"தேர்வு செய்யவும். பின் \"நிறுவு\" என்றால் பொதிகள் நிறுவப்படும். இல்லையென்றால்\n"
+"\"நீக்கு\" எனச் சொல்லி வெளியேறவும்"
+
+#: ../help.pm:450
+#, fuzzy, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"உதவி இன்னமும் மொழிபெயர்கப்படவில்லை.At this point, it is time to choose the "
+"security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
+"to get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option"
+
+#: ../help.pm:461
+#, fuzzy, c-format
+msgid "Security Administrator"
+msgstr "பாதுகாப்பு மேலாளர்(பெயர் அல்லது மின்னஞ்சல் முகவரி)"
+
+#: ../help.pm:464
+#, fuzzy, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"உதவி இன்னமும் மொழிபெயர்கப்படவில்லை.At this point, you need to choose which "
+"partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or from another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"drive;\n"
+"\n"
+" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
+"and swap partitions in free space of your hard drive;\n"
+"\n"
+" * \"More\": gives access to additional features:\n"
+"\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
+"\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from floppy disk;\n"
+"\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
+"\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
+"\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
+"\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
+"\n"
+" * \"Undo\": use this option to cancel your changes;\n"
+"\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
+"\n"
+" * \"Done\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
+"\n"
+" * Ctrl-d to delete a partition;\n"
+"\n"
+" * Ctrl-m to set the mount point.\n"
+"\n"
+"To get information about the different filesystem types available, please\n"
+"read the ext2fs chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Removable media auto-mounting"
+msgstr "கழற்று ஊடகங்கள் தானேற்றம்"
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "சாதாரனர் முறைமைக்கு மாறு"
+
+#: ../help.pm:536
+#, fuzzy, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"உதவி இன்னமும் மொழிபெயர்கப்படவில்ைல.More than one Microsoft partition has been "
+"detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, fuzzy, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen) and you will not even see this step. However, you\n"
+"might not have a keyboard that corresponds exactly to your language: for\n"
+"example, if you are an English speaking Swiss person, you may still want\n"
+"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
+"located in Quebec, you may find yourself in the same situation. In both\n"
+"cases, you will have to go back to this installation step and select an\n"
+"appropriate keyboard from the list.\n"
+"\n"
+"Click on the \"More\" button to be presented with the complete list of\n"
+"supported keyboards.உதவி இன்னமும் மொழிபெயர்கப்படவில்லை."
+
+#: ../help.pm:612
+#, fuzzy, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Please choose your preferred language for installation and system usage.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you will host users from Spain on your\n"
+"machine, select English as the main language in the tree view and in the\n"
+"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.உதவி இன்னமும் "
+"மொழிபெயர்கப்படவில்லை. "
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr ""
+
+#: ../help.pm:653
+#, fuzzy, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"DrakX generally detects the number of buttons your mouse has. If not, it\n"
+"assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
+"\n"
+"If you wish to specify a different type of mouse select the appropriate\n"
+"type from the provided list.\n"
+"\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.உதவி இன்னமும் மொழிபெயர்கப்படவில்லை."
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "with Wheel emulation"
+msgstr "பொத்தான் போன்மி"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"உதவி இன்னமும் மொழிபெயர்கப்படவில்ைல.Please select the correct port. For example, "
+"the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux.. "
+
+#: ../help.pm:691
+#, fuzzy, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"உதவி இன்னமும் மொழிபெயர்கப்படவில்லை. This is the most crucial decision point for "
+"the security of your GNU/Linux\n"
+"system: you have to enter the \"root\" password. \"root\" is the system\n"
+"administrator and is the only one authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That is why you must choose a password that is difficult to\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
+"easy to compromise a system.\n"
+"\n"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
+"\n"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
+"\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
+"\n"
+"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
+"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
+"network administrator.\n"
+"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
+
+#: ../help.pm:725
+#, fuzzy, c-format
+msgid "authentication"
+msgstr "நல்குாிமை"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "நிபுணர்"
+
+#: ../help.pm:771
+#, fuzzy, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"உதவி இன்னமும் மொழிபெயர்கப்படவில்லை. DrakX now detects any IDE device present in "
+"your computer. It will also\n"
+"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
+"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
+"detected in your machine by selecting \"See hardware info\" and clicking\n"
+"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
+"return to the SCSI interface question.\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
+"\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to provide options to the driver manually. Please review the\n"
+"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
+"Hardware'' section) for hints on retrieving the parameters required from\n"
+"hardware documentation, from the manufacturer's web site (if you have\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
+"Windows on your system)."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN அட்ைட"
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "Graphical Interface"
+msgstr "வரைவியல்வழி"
+
+#: ../help.pm:861
+#, fuzzy, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"உங்கள் கணினியில் மாண்ட்ேரக் லினக்ஸ் இயக்க அமைப்ேபா மட்டும்\n"
+"இயக்க முடிவெடுத்தால் இவ்வுகப்பத்ைதத் தேர்ந்ெதடுக்கவும். இதனால்\n"
+"உங்களின் வன்வட்டு முழுவதுமுள்ள தரவுகள், வகிர்வுகள் எல்லாம்\n"
+"அழிந்துவிடும். அவைகளைத் திரும்பிப் பெற இயலாது. ஆகவே,\n"
+"எச்சரிக்ைகயாகச் செயல்பட வேண்டும்."
+
+#: ../help.pm:866
+#, fuzzy, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"உதவி இன்னமும் மொழிபெயர்கப்படவில்லை. Click on \"OK\" if you want to delete all "
+"data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "அடுத்து ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- முன்னது"
+
diff --git a/perl-install/install/help/po/tg.po b/perl-install/install/help/po/tg.po
new file mode 100644
index 000000000..cf95ce1cc
--- /dev/null
+++ b/perl-install/install/help/po/tg.po
@@ -0,0 +1,1997 @@
+# translation of DrakX-tg.po to Tajik
+# translation of DrakX-tg.po to Тоҷикӣ
+# Copyright (C) 2001,2002,2003,2004, 2005 Free Software Foundation, Inc.
+# 2004, infoDev, a World Bank organization
+# 2004, Khujand Computer Technologies, Inc.
+# 2004, KCT1, NGO
+# 2005, Youth Opportunities, NGO
+# Abrorova Hiromon, 2004
+# Roger Kovacs <rkovacs@khujand.org>, 2003.
+# Dilshod Marupov <dma165@hotmail.com>, 2003, 2004.
+# Murod Marupov <abdullovich@khujand.org>, 2004.
+# Bahromhon Bobojonov <bahrambabajanov@hotmail.com>, 2004.
+# Victor Ibragimov <youth_opportunities@tajikngo.org>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-tg\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-09-17 16:03+0500\n"
+"Last-Translator: Victor Ibragimov <youth_opportunities@tajikngo.org>\n"
+"Language-Team: Tajik\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Пеш аз давомдиҳӣ шумо бояд шартҳои литсензияро бо диққат хонед. Он\n"
+"ба ҳамаи тақсимоти Mandriva Linux паҳн гардидааст. Агар шумо ба\n"
+"ҳамаи шартҳои литсензия розӣ бошед, пункти \"%s\"-ро қайд кунед. Агар розӣ\n"
+"набошед, танҳо \"%s\" компютери худро хомӯш созед."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux ин системаи бисёркорванда мебошад, ки ин маънои онро\n"
+"дорад, ки ҳар як корванд имтиёзҳои шахсӣ, файлҳои шахсӣ ва ғайраро дорад. "
+"Барои маълумоти муфассал ``Муҳофизати Оғози''-ро хонед.\n"
+"Лекин бо фарқият аз \"реша\", ки идоракунандаи системавӣ мебошад,\n"
+"корвандоне, ки шумо онҳоро дар ин ҷо илова мекунед, ҳуқуқи иваз\n"
+"кардани ҳеҷ чизро ба ғайр аз файлҳои шахсӣ ва батанзимдарории шахсии худ,\n"
+"надоранд. Барои системаро аз тағиротҳои нохост ва\n"
+"қасди бад, ки ба система асар мерасонанд, муҳофизат карданд.\n"
+"Шумо бояд аққалан як корванди доимиро барои худ офаред -- ин\n"
+"ҳисобе, ки шумо бояд барои воридшавӣ ва истифодаи ҳаррӯза\n"
+"истифода баред. Ба он нигоҳ накарда, ки ҳамчун \"реша\" ворид\n"
+"шудан барои ҳама чиз ва ҳама корро кардан хеле хавфнок бошад!\n"
+"Хатогии хеле оддӣ ба он оварда мерасонад, ки системаи шумо\n"
+"дигар тамоман кор намекунад. Ва агар ки шумо хатогии ҷиддиро ҳамчун корванд\n"
+"содир кунед пас танҳо як қисми ахборотро аз\n"
+"даст медиҳед, на ҳамаи системаро.\n"
+"\n"
+"Майдони аввал аз шумо номи ҳақиқиро пурсон мешавад. Албатта ин\n"
+"ҳатмӣ нест -- зеро ки шумо чизе ки хоҳед ворид карда метавонед.\n"
+"DrakX якум калимаи чопкардаатонро, ки шаклбандӣ намудед дар ин\n"
+"майдон истифода мебарад ва онро ба майдони \"%s\" нусха мебардорад, ки ин\n"
+"номро корванди алоҳида барои воридшавии система истифода\n"
+"мебарад. Қадами оянда ин вориди гузарвожа мебошад. Аз ҷиҳати\n"
+"бехатарӣ гузарвожаи корванди беимтиёздор (одатӣ) он қадар ҳам\n"
+"назар ба гузарвожаи \"решагӣ\" муҳим нест, лекин ин баҳона не, ки\n"
+"шумо ба он аҳамият надиҳед, ба ҳар ҳол шумо файлҳои худро ба\n"
+"хатар мегузоред.\n"
+"\n"
+"Бо ангуштзанӣ ба \"%s\" шумо дигар корвандро илова карда метавонед.\n"
+"Барои ҳар як дӯсти худ корвандро илова кунед, масалан: падар ё хоҳари\n"
+"худро. Баъди хатмкунии ҳамроҳсозии корвандон ба \"%s\" ангушт\n"
+"занед.\n"
+"\n"
+"Пахшкунии тугмаи \"%s\" ба шумо имконияти ивазкунии \"пардозандаи фармонҳо\"-"
+"ро бо нобаёнӣ барои ин корванд медиҳад,\n"
+"(бо нобаёнӣ ин bash аст).\n"
+"\n"
+"Пас аз он, ки иловакунии корвандонро ба итмом мерасонед, ба шумо интихоб\n"
+"намудани корвандро, ки ба воситаи он ба система баъди\n"
+"боркунии компютер ба таври худкор дохил шудан мумкин аст,\n"
+"пешниҳод карда мешавад. Агар ин хусусият диққати шуморо ҷалб карда бошад "
+"(ва\n"
+"оиди бехатарии маҳаллӣ хавотир нашавед),\n"
+"корванд ва мудири тирезавии дилхоҳро интихоб кунед ва баъд \"%s\"-ро ангушт\n"
+"занед. Агар ин хусусият ба шумо лозим набошад қайди пункти\n"
+"\"%s\"-ро бекор кунед."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Шумо ин хислатро истифрда бурдан мехоҳед?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Дар ин ҷо бахшҳои мавҷудаи Linux, ки дар гардонандаи сахти шумо\n"
+"муайян шудаанд, номбар гардидаанд.\n"
+"Шумо метавонед тағиротҳои аз тарафи устод иҷрошударо боздоред, зеро онҳо "
+"барои коргузории бештари умумӣ мувофиқат мекунад.\n"
+"Агар шумо ягон тағиротро ба амал оред, шумо бояд ақалан бахши\n"
+"решавиро (\"/\") таъин намоед. Бахши хеле хурдро интихоб накунед, зеро бояд "
+"шумо шумораи кофии таъминоти барномавиро коргузорӣ\n"
+"карда наметавонед. Агар хоҳед, ки додаҳои худро дар бахши алоҳида\n"
+"нигоҳ доред, шумо бояд инчунин бахши \"/хона\"-ро офаред (ин танҳо\n"
+"дар ҳамон вақт имконпазир аст, ки агар зиёда аз як бахши Linux-ро\n"
+"дошта бошед).\n"
+"Ҳар бахш дар рӯйхат чунин номнависӣ мегардад: \"Ном\", \"Ғунҷоиш\".\n"
+"\n"
+"\"Ном\" таркибӣ мебошад: \"навъи гардонандаи сахт\", \"рақами гардонандаи "
+"сахт\", \"рақами бахш\" (масалан, \"hda1\").\n"
+"\n"
+"\"Навъи гардонандаи сахт\" ин \"hd\" аст, агар гардонандаи сахти шумо\n"
+"IDE гардонандаи сахт аст ва \"sd\" агар он SCSI гардонандаи сахт бошад.\n"
+"\n"
+"\"Рақами гардонандаи сахт\" ин ҳама вақт ҳарфе мебошад, ки баъди\n"
+"\"hd\" ё \"sd\" меояд. Барои IDE гардонандаҳои сахт:\n"
+"\n"
+" * \"a\" маънои \"гардонандаи сахти master дар IDE нозири ибтидоӣ\"-ро "
+"дорад;\n"
+"\n"
+" * \"b\" маънои \"гардонандаи сахти slave дар IDE нозири ибтидоӣ\"-ро "
+"дорад;\n"
+"\n"
+" * \"c\" маънои \"гардонандаи сахти master дар IDE нозири дуюмин\"-ро "
+"дорад;\n"
+"\n"
+" * \"d\" маънои \"гардонандаи сахти slave дар IDE нозири дуюмин\"-ро дорад.\n"
+"\n"
+"Барои гардонандаи сахти SCSI \"a\" маънои \"якумин аз поёни SCSI ID\"-ро "
+"дорад, \"b\" маънои\"дуюмин аз поёни SCSI ID\"-ро дорад ва ғайра."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Коргузории Mandriva Linux дар CD-ROM-ҳои мухталиф тақсим шудааст. Агар\n"
+"бастаи интихобшуда дар дигар CD-ROM ҷойгир бошад, DrakX диски фишурдаи\n"
+"ҷориро ба берун кашида аз шумо вогузории диски талабшударо пурсон мешавад.\n"
+"Агар шумо дар даст диски фишурдаи талабшударо надошта бошед, танҳо ба \"%s\" "
+"ангушт занед, бастаи мувофиқ коргузорӣ карда\n"
+"намешавад."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Афзоиш"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Бо ҳуҷҷатҳои асосӣ"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Коргузории аз ҳама пастарин"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Агар шумо ба коргузор оиди он ки шумо мехоҳед алоҳида бастаҳоро\n"
+"интихоб намоед, хабар диҳед, он ба шумо дарахтеро, ки ҳамаи бастаҳои ба "
+"гурӯҳҳоию зергурӯҳҳо тақсим карда шударо дарбар мегирад,\n"
+"намоиш медиҳад. Ҳангоми баррасии дарахт шумо метавонед гурӯҳҳои\n"
+"бутун, зергурӯҳҳо ё бастаҳои алоҳидаро интихоб кунед.\n"
+"\n"
+"Ҳар дафъае, ки шумо бастаро дар дарахт интихоб мекунед, дар тарафи\n"
+"росташ барои фаҳмондани мақсади он тавсифот пайдо мешавад.\n"
+"\n"
+"!! Агар бастаи хидматрасонро интихоб карда бошед, хоҳ барои интихоби муайяни "
+"бастаи алоҳида, хоҳ барои он ки вай як қисми гурӯҳӣ баста\n"
+"аст, шумо бояд тасдиқ кунед, ки дар ҳақиқат ин хидматрасонҳои\n"
+"коргузоришавандаро истифода бурдан мехоҳед. Дар Mandriva Linux\n"
+"ҳамаи хидматрасонҳои коргузоришуда ҳангоми оғозёбӣ ба таври худкор, бо "
+"нобаёнӣ сар дода мешаванд. Ҳарчанде, ки онҳо бехатаранд ва муаммоҳои\n"
+"маълумро ҳангоми даргиронидан дар тақсимот надоранд, мумкин аст, ки\n"
+"дар бехатарӣ баъди барориши нусхаи хотимавии Mandriva Linux\n"
+"сӯрохиҳои муайян мешаванд. Агар шумо надонед, ки барои чӣ ин ё он\n"
+"хидматрасон лозим аст ё барои чӣ он коргузорӣ мегардад пас ба \"%s\"\n"
+"ангушт занед. Бо пахшкунии \"%s\" шумо хидматрасонҳои номбаршударо\n"
+"коргузорӣ мекунед ва онҳо ҳангоми боршавӣ ба таври худкор\n"
+"бо нобаёнӣ оғоз меёбанд. !!\n"
+"\n"
+"Интихоби \"%s\" барои хомӯш сохтани муколамаи огоҳӣ, ки ҳангоми\n"
+"аз тарафи коргузор интихоби худкори бастаҳо пайдо мешавад, истифода\n"
+"бурда мешавад. Баъзе бастаҳо бо ҳам алоқаҳои дутарафа доранд,\n"
+"бинобар ин зарурати коргузории баъзе дигар барномаҳоро пеш меояд.\n"
+"Коргузор худаш муайян карда метавонад, ки кадом бастаҳо баҳри\n"
+"қонеъкунии талаботҳо барои бо муваффақият иҷрои коргузорӣ лозиманд.\n"
+"\n"
+"Тасвири хурдакаки диски нарм дар охири рӯйхат имконияти боркунии\n"
+"рӯйхати бастаҳо, ки ҳангоми коргузориҳои шешина офарида шуда будаанд, "
+"медиҳад. Агар шумо шумораи мошинаҳоеро дошта бошед, ки\n"
+"алоҳида танзим кардан мехоҳед, он хеле фоиданок мегардад. Баъди\n"
+"ангуштзанӣ ба ин тасвир, аз шумо воридкунии диски нарм, ки дар охири\n"
+"дигар коргузории пешина офарида шуда буд, пурсон мешавад. Ба маслиҳати дуюм "
+"дар қадами охирон оиди чӣ тавр офаридани чунин\n"
+"диски нарм нигаред."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Вобастагиҳои автоматӣ"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": ҳангоми ангуштзанӣ ба тугмаи \"%s\" устоди ба танзимдарории чопгар "
+"кушода\n"
+"мешавад. Боби мувофиқи ба ``Раҳнамои Ибтидоӣ' бахшидашударо барои гирифтани\n"
+"маълумоти иловагӣ оиди барпосозии чопгари нав хонед. Интерфейси дар он ҷо\n"
+"пешниҳод шуда ба оне ки ҳангоми истифодаи коргузорӣ истифода мешавад,\n"
+"монанд аст."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Ин муколама барои интихоби хидматрасоне, ки ҳангоми оғозёбӣ\n"
+"бор карда мешавад, истифода бурда мешавад.\n"
+"\n"
+"DrakX рӯйхати ҳамаи хидматрасонҳое, ки дар коргузории ҷорӣ\n"
+"дастрасанд, пешкаш менамояд. Ҳар якеро дақиқона аз назар гузаронед\n"
+"ва қайди онҳоеро, ки дар вақти боршавӣ лозим нестанд, бекор кунед.\n"
+"\n"
+"Ҳангоми интихоб кардан матни кӯтоҳи шарҳдиҳӣ намоиш дода мешавад.\n"
+"Лекин, агар ки шумо комилан боварӣ надошта бошед, ки ин хидматрасон\n"
+"фоиданок аст ё не, беҳтар аст, ки рафторро бо нобаёни гузоред.\n"
+"\n"
+"!! Дар ин марҳила хеле дақиқ бошед агар нақша дошта бошед, ки \n"
+"мошинаи худро ҳамчун хидматрасон истифода баред: эҳтимолан шумо\n"
+"оғозёбии хидматрасонҳои даркориро нахоҳед. Илтимос, аз хотир набароред, ки "
+"баъзе хизматҳо, агар дар хидматрасон даргиронида шуда\n"
+"бошанд, хавфнок мебошанд. Умуман, танҳо он хидматрасонҳоеро интихоб кунед, "
+"ки дар ҳақиқат ба шумо лозиманд.\n"
+"!!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux вақтро дар GMT (Greenwich Mean Time) идора мекунад\n"
+"ва онро дар вақти маҳаллӣ мувофиқи минтақаи вақти интихобкардаатон\n"
+"намоиш медиҳад. Агар соат дар саҳфаи модараи шумо бо вақти маҳаллӣ\n"
+"барпо шудааст, шумо онро ба воситаи рад кардани интихоби \"%s\" ғайрифаъол "
+"сохта метавонед ва ин ба GNU/Linux имконияти дар хотир\n"
+"доштани он, ки соати системавӣ ва соати сахтафзорӣ дар як минтақаи\n"
+"соат мебошанд, медиҳад. Он ҳангоме, ки дар мошина дигар системаи омил ба "
+"монанди Windows ҷойгир шуда бошад фоиданок аст.\n"
+"\n"
+"Хосияти \"%s\" соатро ба таври худкор таҳлил мекунад ба воситаи пайвастшавӣ "
+"ба хидматрасони дурдасти вақт дар Интернет. Барои он\n"
+"ки ин хосият кор кунад, шумо бояд пайвастшавии кориро ба Интернет\n"
+"дошта бошед. Беҳтараш хидматрасони вақтро, ки дар назди шумо ҷойгир\n"
+"аст, интихоб намоед. Ин интихоб хидматрасони вақтро ба мошинаи шумо "
+"коргузорӣ мекунад, ки аз тарафи дираг мошинаҳои шабакаи маҳаллӣ\n"
+"истифода шуда метавонад."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Ҳамзамонсозии худкори вақт"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Корти графикӣ\n"
+"\n"
+" Коргузор одатан ба таври автоматӣ корти графикиро муқаррар ва танзим "
+"менамояд,\n"
+"ки он ба системи шумо муаяйн гардида бошад. Агар он ин тавр набошад, онгоҳ "
+"шумо\n"
+"метавонед кортро дар систем интихоб намоед, ки дар ҳақиқат коргузорӣ "
+"шудааст.\n"
+"\n"
+" Дар ҳолате ки барои корти шумо хидматрасонҳои гуногун бо шитоби 3D ё бе "
+"ин\n"
+"дастрас аст ба шумо пешниҳод карда мешавад, то ки шумо интихоб намоед кадом\n"
+"хидматрасон пеш аз ҳама ба эҳтиёҷи шумо мувофиқат мекунад."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (барои системи X Window) ин асоси интерфейси графикии GNU/Linux мебошад,\n"
+"ки дар он ҳамаи муҳитҳои графикӣ асос ёфтааст (KDE, GNOME, AfterStep,\n"
+"WindowMaker ва ғайра) ва ба ҳайати Mandriva Linux дохил аст.\n"
+"\n"
+"Ба шумо рӯйхати параметрҳои гуногуне ки ба тағироти гирифтани тасвири\n"
+"беҳтарини графикӣ пешбинӣ шудааст, дода мешавад: Корти графикӣ\n"
+"\n"
+" Коргузор одатан ба таври автоматӣ корти графикие ки ба мошини шумо\n"
+"коргузорӣ шудааст, муаяйн ва ба танзим медарорад. Агар ин тавр набошад, "
+"онгоҳ шумо метавонед аз ин рӯйхат корте ки шумо дар ҳақиқат коргузорӣ "
+"намудед,\n"
+"интихоб намоед.\n"
+"\n"
+" Дар ҳолате ки хидматрасонҳои гуногун барои корти шумо мавҷуд аст ё бо\n"
+"шитоби 3D ё ин ки бе он, аз шумо пурсида мешавад, ки хидматрасонро интихоб\n"
+"намоед, ки бештар ба эҳтиёҷи шумо мувофиқат менамояд.\n"
+"\n"
+"\n"
+"\n"
+"Монитор\n"
+"\n"
+" Коргузор одатан ба таври автоматӣ монитори ба мошини шумо пайваст шударо\n"
+"муаяйн ва ба танзим медарорад. Агар ин нодуруст бошад, онгоҳ шумо метавонед\n"
+"аз рӯйхат монитореро, ки дар ҳақиқат ба компютери шумо пайваст шудааст, "
+"интихоб\n"
+"намоед.\n"
+"\n"
+"\n"
+"\n"
+"Иҷозат\n"
+"\n"
+" Дар ин ҷо шумо метавонед иҷозат ва баландии рангеро, ки барои сахтафзори "
+"шумо\n"
+"мавҷуд аст, интихоб намоед. Онеро интихоб намоед, ки бештар ба эҳтиёҷи шумо\n"
+"мувофиқат менамояд (шумо метавонед онро баъд аз коргузорӣ тағир диҳед)\n"
+"Намунаи танзимдарории интихобшуда дар монитор инъикос ёфтааст.\n"
+"\n"
+"\n"
+"\n"
+"Санҷидан\n"
+"\n"
+" систем кӯшиш менамояд, то ки экрани графикиро мувофиқи иҷозати қобили "
+"қабул\n"
+"кушояд. Агар шумо пайғомро дар вақти санҷиш дида тавонед, онгоҳ ба \"%s\" "
+"ҷавоб\n"
+"диҳед. Дарин ҳолат DrakX ба қадами оянда мегузарад. Агар шумо пайғомро "
+"дида\n"
+" натавонед, онгоҳ ин маънои онро дорад, ки қисме аз ба танзимдарории ба "
+"таври\n"
+"автоматӣ муаяйншаванда нодуруст буда санҷиш баъди 12 сония ба таври "
+"автоматӣ\n"
+"ба итмом расида шуморо ба меню меоварад. То лаҳзаи гирифтани тасвири "
+"дурусти\n"
+"графикӣ гузоришро тағир диҳед.\n"
+"\n"
+"\n"
+"\n"
+"Интихобҳо\n"
+"\n"
+" Дар ин ҷо шумо метавонед интихоб намоед оё шумо хоҳиши ба таври "
+"автоматӣ\n"
+"гузариш намудани мошини худ ба интерфейси графикӣ ҳангоми худборшавӣ доред\n"
+"Зоҳиран, шумо хоҳиши тафтиш намудани \"%s\"-ро доред, агар мошини шумо бояд\n"
+"ҳамчун хидматрасон кор кунад ё ин ки шумо ҳангоми гирифтани тасвири ба\n"
+"танзим даровардашуда ба муваффақият ноил нашудед."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Монитор\n"
+"\n"
+" Коргузор одатан метавонад ба таври автоматӣ мониторро муаяйн ва ба танзим "
+"дарорад,ки\n"
+"ба мошини шумо пайваст аст. Агар ин нодуруст бошад, онгоҳ шумо метавонед "
+"мустақилона мониторро\n"
+"аз рӯйхат интихоб намоед."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Ҳалнокӣ\n"
+"\n"
+" Дар ин ҷо шумо метавонед ҳал ва чуқурии ранге ки ба сахтафзори шумо "
+"дастрас\n"
+"аст, интихоб намоед. Онеро интихоб намоед, ки аз ҳама беҳтар ба эҳтиёҷи "
+"шумо\n"
+"мувофиқат намояд (баъд аз кор гузоштан шумо метавонед онро тағир диҳед).\n"
+"Намунаи ба танзимдарории интихобшуда дар монитор дода шудааст."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Дар ҳолате ки барои корти шумо хидматрасонҳои гуногун дастрас аст,\n"
+"бо шитоби 3-вазъа ва бе он, ба шумо таклиф карда мешавад, то ки интихоб "
+"намоед кадом хидматрасон бештар ба эҳтиёҷи\n"
+"шумо мувофиқат мекунад."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Интихобҳо\n"
+"\n"
+" Дар ин ҷо шумо метавонед интихоб кунед: оё мехоҳед, ки мошинаи\n"
+"шумо ҳангоми боршавӣ ба таври худкор интерфейси графикиро даргиронад ё не. "
+"Фаҳмост, ки шумо бояд \"%s\"-ро қайд кунед,\n"
+"агар мошинаи шумо ҳамчун хидматрасон кор кунад ё агар шумо\n"
+"намоишгари худро танзим карда натавониста бошед."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Дар ин қадам шумо бояд дар куҷои гардонандаи сахт ҷойгир кардани\n"
+"системаи омили Mandriva Linux-ро ҳал кунед. Агар гардонандаи сахти\n"
+"шумо холӣ бошад ё системаи омили ҳозирбуда ҳамаи фазои имконпазирро\n"
+"ишғол кунад, ба шумо лозим меояд, ки гардонандаи сахти худро\n"
+"бахшбандӣ кунед. Бахшбандикунии гардонандаи сахт асосан аз тақсимоти "
+"мантиқии фазои ишғолшуда барои коргузории системаи омилии \n"
+"Mandriva Linux иборат аст.\n"
+"\n"
+"Азбаски ҷараёни бахшбандии гардонандаи сахт одатан барнагарданда\n"
+"аст ва ба гумшавии додаҳо оварда расониданаш мумкин аст, агар дар "
+"гардонандаи сахт аллакай системаи омилии коргузоршуда мавҷуд бошад\n"
+"пас барои корвандони нав ин як лаҳзаи ҷиддӣ ва ҷиддӣ\n"
+"аст. Хурсандона ба DrakX устоди соддакунандаи ин ҷараён дохил мешавад.\n"
+"Пеш аз оғози ин қадам аз идоракунанда ин оиди қисмат маълумот гиред.\n"
+"\n"
+"Вобаста ба танзими гардонандаи сахти шумо як қатор интихобҳо имконпазиранд:\n"
+"\n"
+" * \"%s\": ин интихоб маънои бахшбандии худкори гардонанда(ҳо)и\n"
+"холиро дорад. Агар шумо ин хусусиятро интихоб кунед, пас дар оянда ба шумо "
+"савол дода намешавад.\n"
+"\n"
+" * \"%s\": устод мавҷудияти як ё зиёда бахшҳои Linux-ро дар гардонандаи\n"
+"сахти шумо муайян кард. Агар шумо онҳоро истифода бурдан хоҳед, ин\n"
+"хусусиятро интихоб кунед. Сипас аз шумо интихоб намудани нуқтаи\n"
+"насбшавӣ мувофиқан барои ҳар як бахшҳо талаб карда мешавад. Бо нобаёнӣ "
+"нуқтаҳои дурусти насбшавӣ интихоб мегарданд, ва шумо\n"
+"онҳоро нигоҳ дошта метавонед.\n"
+"\n"
+" * \"%s\": агар Microsoft Windows дар гардонандаи сахти шумо\n"
+"коргузорӣ шудааст ва ҳамаи фазои имконпазирро ишғол карда бошад,\n"
+"шумо бояд фазои холиро барои Linux офаред. Барои инро иҷро кардан\n"
+"шумо метавонед бахшҳои ва маълумоти Microsoft Windows-ро нобуд созед "
+"(нигаред ба ҳалнокии ``Поккунии ҳамаи диск'') ва ё андозаи қисмати FAT "
+"Microsoft Windows-ро тағир диҳед. Тағирдиҳии андоза\n"
+"бе гумкунии додаҳо ба амал омада метавонад, махсусан агар шумо\n"
+"пешаки дефрагментатсияи бахши Windows-ро гузаронида бошед ва дар\n"
+"он шаклбандии FAT истифода мешавад. Нусхабардории захирашавии додаҳои шумо "
+"ҷиддӣ маслиҳат дода мешавад.. Агар шумо Mandriva\n"
+"Linux ва Microsoft Windows-ро дар як компютер якҷоя истифода\n"
+"бурдан хоҳед, истифодаи ин хусусиятро маслиҳат медиҳад.\n"
+"\n"
+" Пеш аз интихоби ин хусусият шумо бояд фаҳмед, ки андозаи\n"
+"Microsoft Windows-и шумо назар ба ҳозира хурдтар мегардад.\n"
+"Барои захиракунии додаҳо ва коргузории таъминоти барномавии\n"
+"нав шумо дар Microsoft Windows фазои холии камтар хоҳед дошт.\n"
+"\n"
+" * \"%s\": агар шумо хоҳед, ки ҳамаи додаҳоро дар ҳама қисматҳои\n"
+"дар гардонандаи сахти худ мавҷудбударо нобуд созед ва ҷои онҳоро бо системаи "
+"нави Mandriva Linux иваз кунед, ин хосиятро интихоб\n"
+"кунед. Эҳтиёт бошед, зеро баъди тасдиқот шумо интихоби худро\n"
+"баргардонида наметавонед.\n"
+"\n"
+" !! Агар шумо ин хосиятро интихоб кунед, ҳамаи додаҳо дар гардонандаи "
+"сахти шумо нобуд карда мешаванд. !!\n"
+"\n"
+" * \"%s\": ин хосият имконияти поккунии ҳамаи маълумотро дар\n"
+"гардонандаи сахти шумо ва оғози офаридани бахшҳоро дар ҷои холӣ, медиҳад. "
+"Ҳама додаҳо дар гардонандаи сахти шумо гум мешаванд.\n"
+"\n"
+" !! Агар шумо ин хосиятро интихоб кунед, ҳама додаҳо дар гардонандаи сахти "
+"шумо гум мешаванд.. !!\n"
+"\n"
+" * \"%s\": агар шумо ба таври дасткорӣ бахшбандӣ намудани гардонандаи сахти "
+"худро хоҳед, ин хосиятро интихоб кунед. Эҳтиёт бошед -- зеро\n"
+"ин интихоби пурқудрат ва хатарнок аст ва шумо ба осонӣ ҳамаи\n"
+"додаҳоро аз даст дода метавонед. Бинобар ин интихоби ин хосият\n"
+"танҳо дар ҳолате, ки шумо аз ин пеш чизеро ба ин монанд иҷро карда\n"
+"бошед ё таҷрибаи муайян дошта бошед, маслиҳат дода мешавад.\n"
+"Барои маълумоти муфассал оиди истифодаи бахши барномаи пуштибонии DiskDrake "
+"ба қисмати ``Идоракунии Бахшҳои Шумо ''\n"
+"дар ``Раҳнамои Оғозии Корванд'' муроҷиат намоед."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Бахшбандии ҳозир бударо истифода баред"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Тамоми дискро тоза намоед"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Дискети худкоргузориро эҷод кардан"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Ин дафъа шумо метавонед баъзе бахшҳои GNU/Linux аллакай мавҷудбударо барои "
+"поккунии ҳамаи додаҳои дар онҳо буда, шаклбандиашро\n"
+"тағир намоед. Агар шумо чунин кардан хоҳед, марҳамат карда ин\n"
+"бахшҳоро интихоб намоед.\n"
+"\n"
+"Дар хотир доред, ки зарурати тағири шаклбандии ҳамаи бахшҳои\n"
+"пештар мавҷударо нест. Шумо бояд бахшҳоеро, ки системаи омилро\n"
+"дар бар мегаранд, тағири шакл кунед (ба монанди: \"/\", \"/usr\" ё \"/var"
+"\"),\n"
+"лекин шумо бояд қисматҳоеро, ки додаҳои нигоҳмедоштаатонро\n"
+"дар бар мегаранд, шаклбандиашро тағир диҳед (одатӣ\"/home\").\n"
+"\n"
+"Илтимос, ҳангоми интихоби бахшбандӣ эҳтиёт бошед. Баъди\n"
+"шаклбандикунӣ, ҳамаи додаҳо дар бахшҳои интихобшуда нобуд\n"
+"мегарданд ва шумо ягонтои онҳоро барқарор карда наметавонед.\n"
+"\n"
+"Агар шумо ба шаклбандии бахшҳо тайёр бошед ба \"%s\" ангушт занед.\n"
+"\n"
+"Агар шумо хоҳед, ки дигар бахшҳоро барои коргузории системаи\n"
+"омилии навъи Mandriva Linux интихоб кунед ба \"%s\" ангушт занед.\n"
+"\n"
+"Агар хоҳед бахшҳоеро, ки дар диск ба мавҷудияти қисмҳои бад\n"
+"тафтиш карда шаванд интихоб намоед, ба \"%s\" ангушт занед."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Ҳангоми коргузории Mandriva Linux хуб мешуд, ки баъзе бастаи\n"
+"барномаҳо нав карда шаванд, аз рӯзи барориши ибтидоӣ. Эҳтимолан\n"
+"баъзе хатогиҳо ислоҳ шудаанд ва дархостҳо оиди бехтарӣ ҳал шудаанд.\n"
+"Барои гирифтани фоида аз ин навсозиҳо, ҳозир ба шумо боркунии онҳо аз "
+"Интернет пешкаш карда мешавад. \"%s\"-ро қайд кунед, агар шумо\n"
+"пайвастшавии кориро бо Интернет дошта бошед ё \"%s\"-ро агар хоҳед,\n"
+"ки ин навсозиҳоро дертар коргузорӣ кунед.\n"
+"\n"
+"Бо интихоби \"%s\" рӯйхати ҷойҳое, ки аз онҳо навсозиро бозёбӣ карда\n"
+"метавонед, намоиш дода мешавад. Хидматрасони наздиктаринро интихоб кунед. "
+"Баъд дарахти интихоби бастаи барномаҳо пайдо мешавад:\n"
+"қисматро аз назар гузаронед ва \"%s\"-ро барои бозёбии коргузории баста(ҳо)и "
+"интихобшуда, пахш кунед ва ё \"%s\"-ро барои қатъ\n"
+"кардани коргузории бозсозӣ пахш кунед."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Дар ин марҳила DrakX ба шумо имконияти интихоби сатҳи бехатарии\n"
+"дилхоҳро барои мошина медиҳад. Чун қоида, бояд сатҳи бехатарии\n"
+"баландтар бошад, агар дар мошина додаҳои бӯҳронӣ мавҷуд бошанд\n"
+"ё мошина бевосита ба Интернет пайваст шуда бошад. Лекин сатҳи бехатарии "
+"баландтар дар ҳодисаи умумӣ бар ивази соддаи\n"
+"истифодабарӣ дастрас мегардад.\n"
+"\n"
+"If you do not know what to choose, stay with the default option. You will\n"
+"be able to change that security level later with tool draksec from the\n"
+"Mandriva Control Center.\n"
+"\n"
+"The \"%s\" field can inform the system of the user on this computer who\n"
+"will be responsible for security. Security messages will be sent to that\n"
+"address."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Идоракунандаи Бехатарӣ"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Дар ин пункт шумо бояд интихоб намоед, ки кадом бахш(ҳо) барои\n"
+"коргузории системавӣ Mandriva Linux-и шумо истифода бурда мешаванд.\n"
+"Агар бахшҳои алоқаи аз коргузории пешинаи GNU/Linux ё аз дигар\n"
+"асбоби бахшбандикунӣ муайян шуда бошад, шумо метавонед бахшҳои мавҷударо "
+"истифода баред. Дар дигар ҳолат бояд бахшҳои гардонандаи\n"
+"сахт муайян карда шаванд.\n"
+"\n"
+"Барои офаридани бахшҳо, шумо бояд аввал гардонандаи сахтро интихоб\n"
+"кунед. Шумо метавонед дискро барои бахшбандӣ ба воситаи ангуштзанӣ\n"
+"ба ``hda'' барои IDE гардонандаи аввал, ``hdb'' барои дуюм, ``sda'' барои "
+"SCSI гардонандаи аввал ва ҳоказо, интихоб кунед.\n"
+"\n"
+"Барои бахшбандии гардонандаи сахти интихобшуда шумо метавонед ин хосиятҳоро "
+"истифода баред:\n"
+"\n"
+" * \"%s\": ин хосият ҳамаи бахшҳоро дар гардонандаи сахти интихобшуда нобуд "
+"месозад\n"
+"\n"
+" * \"%s\": ин хосият имконияти ба таври худкор офаридани бахшҳои\n"
+"ext3 ва swap-ро дар фазои холии гардонандаи сахти шумо, медиҳад\n"
+"\n"
+"\"%s\": хусусиятҳои иловагиро дастрас мекунад:\n"
+"\n"
+" * \"%s\": ҷадвали бахшҳоро дар диски нарм захира мекунад. Барои\n"
+"барқарорсозии ҷадвали бахшҳо фоиданок аст, агар лозим бошад. Иҷрои\n"
+"ин қадам ҷиддан маслиҳат дода мешавад.\n"
+"\n"
+" * \"%s\": имконияти барқароркунии ҷадвали бахшҳои пештарзахирашударо\n"
+"аз диск медиҳад.\n"
+"\n"
+" * \"%s\": агар ҷадвали бахшҳои шумо хароб гашта бошад, шумо метавонед\n"
+"ба воситаи ин хосият барқарор кардани онро кӯшиш кунед. Илтимос, эҳтиёт\n"
+"бошед ва дар хотир доред, ки он на ҳама вақт кор мекунад.\n"
+"\n"
+" * \"%s\": ҳамаи тағиротҳоро бекор мекунадва ҷадвали бахшҳои ибтидоиро\n"
+"дар гардонандаи сахт бор мекунад.\n"
+"\n"
+" * \"%s\": ба бекор кардани қайди ин хосият шумо корвандонро маҷбур месозед, "
+"ки ба таври дасткорӣ муҳити ҷойивазкунандао ба монанди\n"
+"диски нарм ва CD-ROM насб кунанд ва мунфасил намоянд.\n"
+"\n"
+" * \"%s\": ин хсиятро истифода баред, агар хоҳед, ки устодро барои "
+"бахшбандии гардонандаи сахти худ итифода баред. Он ба шумо тавсия\n"
+"мешавад, агар ки дар бахшбандии гардонандаи сахт тасавуроти пурра\n"
+"надошта бошед\n"
+"\n"
+" * \"%s\": ин хосиятро барои бекоркунии тағиротҳои худ истифода баред.\n"
+"\n"
+" * \"%s\": амалиётҳои иловагиро дар бахшҳо (навъ, интихобҳо, шаклбандӣ) "
+"имконият медиҳад ва маълумоти бештарро оиди гардонандаи сахти шумо медиҳад.\n"
+"\n"
+" * \"%s\": вақте, ки шумо гардонандаи сахти худро ба охир мерасонед\n"
+"ин тағиротҳои шуморо дар диск захира мекунад.\n"
+"\n"
+"Ҳангоми муайянсозии андозаи бахши шумо метавонед андозаи бахшро\n"
+"ба воситаи калидҳои тирчадор дар забонаки худ барпо созед.\n"
+"\n"
+"Эзоҳ: шумо ба воситаи забонак ба интихоби ҳамаи хосиятҳ расида метавонед.\n"
+"Дар гирди бахшҳо ба воситаи [Tab] ва тирчаҳои [Боло/Поён] гардиш кунед.\n"
+"\n"
+"Вақте, ки бахш интихоб гардид, шумо метавонед:\n"
+"\n"
+" * Ctrl-c -ро барои офаридани бахши нав (вақте, ки бахши холӣ интихоб шуда "
+"бошад)\n"
+"\n"
+" * Ctrl-d-ро барои нобуд кардани бахш\n"
+"\n"
+" * Ctrl-m-ро барои барпосозии нуқнаи насбшавӣ истифода баред.\n"
+"\n"
+"Барои гирифтани маълумот оиди намудҳои системаи файлии дастрас\n"
+"марҳамат карда боби ext2FS-ро аз ``Раҳнамои Муроҷиат'' хонед.\n"
+"\n"
+"Агар шумо дар мошинаи PPC коргузориро иҷро карда бошед, ба шумо\n"
+"лозим меояд, ки бахши хурди HFS ``bootstrap''-ро офаред, ки ақалан 1Мб\n"
+"бошад ва он аз тарафи боркунандаи yaboot истифода бурда мешавад.\n"
+"Агар шумо хоҳед, ки бахшро каме калонтар кунед, масалан 50Мб шумо\n"
+"онро ҷои хеле қуллай барои захиракунии ҳастаи эҳтиётӣ ва симоҳои ramdisk "
+"ҳангоми ҳодисаи боркунии ғайричашмдошт,\n"
+"пайдо хоҳед кард."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Худваслкунии хориҷшавандаи муҳит"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Зомин байни усули мӯътадил/мутахассисӣ"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Дар гардонандаи сахти шумо зиёда аз як бахши Microsoft муайян гардид.\n"
+"Марҳамат карда бахшеро, ки барои коргузории системаи нави омили\n"
+"Mandriva Linux андозаи онро тағир додан мехоҳед, интихоб намоед.\n"
+"\n"
+"Ҳар бахш ба таври зерин ба рӯйхат гирифта мешавад: \"ном дар Linux\",\n"
+"\"ном дар Windows\" \"Ғунҷоиш\".\n"
+"\n"
+"\"ном дар Linux\" таркибӣ мебошад: \"навъи гардонандаи сахт\",\n"
+"\"рақами гардонандаи сахт\", \"рақами бахш\" (масалан, \"hda1\").\n"
+"\n"
+"\"Навъи гардонандаи сахт\" ин \"hd\" агар гардонандаи сахти шумо IDE\n"
+"гардонандаи сахт бошад ва \"sd\", агар он гардонандаи сахти SCSI бошад.\n"
+"\n"
+"\"Рақами гардонандаи сахт\" ҳамеша ҳарф баъди \"hd\" ё \"sd\" оянда аст.\n"
+"Барои IDE гардонандаи сахт:\n"
+"\n"
+" * \"a\" маънои \"гардонандаи сахти устод дар IDE нозири ибтидоӣ\"-ро "
+"дорад;\n"
+"\n"
+" * \"b\" гардонандаи сахти фармонбар дар IDE нозири ибтидоӣ\"-ро дорад;\n"
+"\n"
+" * \"c\" маънои \"гардонандаи сахти устод дар IDE нозири дуямин\"-ро дорад;\n"
+"\n"
+" * \"d\" маънои \"гардонандаи сахти фармонбар дар IDE нозири дуямин\"-ро "
+"дорад.\n"
+"\n"
+"Барои SCSI гардонандаи сахт \"a\" маънои \"якум аз поёни SCSI ID\"-ро\n"
+"дорад, \"b\" маънои \"дуюм аз поёни SCSI ID\"-ро дорад ва ғайра.\n"
+"\n"
+"\"ном дар Windows\" ин ҳарфи гардонандаи сахти шумо дар Windows аст\n"
+"(диски ё бахши якум \"C:\" номида мешавад)."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": интихоби ҳозираи мамлакатро санҷед. Агар дар ин мамлакат набошед, "
+"онгоҳ\n"
+" ба дагмаи \"%s\" ангушт зада дигарашро интихоб намоед.\n"
+"Агар мамлакати шумо дар рӯйхати аввалаи нишондода нашуда бошад, онгоҳ ба\n"
+"дагмаи \"%s\"ангушт зада рӯйхати пураро бинед."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Ин қадам танҳо дар он ҳолате фаъол мегардад, ки дар мошинаи шумо\n"
+"бахши кӯҳнаи GNU/Linux пайдо гардад.\n"
+"\n"
+"DrakX бояд донад, ки оё шумо мехоҳед, ки коргузории навро гузаронед\n"
+"ё системаи Mandriva Linux-и мавҷударо афзоиш диҳед:\n"
+"\n"
+" * \"%s\": Дар бисёр ҳолатҳо ин вариант ба нобудшавии системаи кӯҳна\n"
+"оварда мерасонад. Агар хоҳед, ки бахшҳои гардонандаи сахти худро иваз\n"
+"кунед ё системаи файлиро тағир диҳед, шумо бояд ин хосиятро истифода\n"
+"баред. Лекин вобаста ба тарҳрезии гардонандаи сахт шумо эҳтимолан баъзеи\n"
+"додаҳои мавҷудаи худро аз бознависӣ захира карда метавонанд.\n"
+"\n"
+" * \"%s\": ин синфи коргузорӣ ба шумо имконияти авкунии бастаи\n"
+"барномаҳои дар системаи Mandriva Linux-и коргузоришударо медиҳад.\n"
+"Нақшаи бахшбандии ҷорӣ ва додаҳои корванд, ивазнашавандаанд.\n"
+"Бештари дигар қадамҳо низ дастрас мегарданд, ба монанди коргузории "
+"низоммеъёр.\n"
+"\n"
+"Интихоби хосияти ``Густариш'' дар системаҳои Mandriva Linux аз нусхаи\n"
+"\"8.1\" сар карда то охирон хеле хуб хоҳад кор кард. Гузаронидани Густариш\n"
+"дар системаҳои Mandriva Linux болотар аз \"8.1\" маслиҳат дода мешавад."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Вобаста ба забони нобаёнӣ, ки дар қисмат интихоб кардед, DrakX ба таври\n"
+"худкор навъи танзими забонакро интихоб мекунад. Инро интихоб кунед ё \n"
+"дигар ҷобаҷогузории забонакро интихоб кунед.\n"
+"Лекин шумо забонеро, ки,\n"
+"пурра ба забони шумо мувофиқат мекунад, надошта метавонед: масалан, агар\n"
+"шумо шахси швейтсариягии бо забони англисӣ гап зананда бошед, шумо забони\n"
+"швейтсариягӣ дошта бошед. Ё агар шумо бо забони англисӣ гап мезанед лекин "
+"дар Квебек сукунат доред, шумо ба ҳолате меафтед, ки забони модарии шумо\n"
+"ва забонаки мувофиқро аз рӯйхат медиҳад.\n"
+"\n"
+"Барои гирифтани рӯйхати пурраи забонакҳои пуштибоншаванда ба тугмаи\n"
+"\"%s\" ангушт занед.\n"
+"\n"
+"Агар шумо ҷобаҷогузории забонакро, ки ба алифбои ғайри Лотинӣ асос\n"
+"ёфтааст интихоб намоед, муколамаи оянда ба шумо имконияти интихоб\n"
+"кардани бастаи калидҳо барои гузриши байни ҷобаҷогузориҳои лотинӣ ва\n"
+"ғайри лотинӣ медиҳад."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Қадами аввал ин интихоби забони писандида аст.\n"
+"\n"
+"Интихоби забони писандида ба забони санадсозӣ, коргузор ва умуман\n"
+"коргузорӣ таъсир мерасонад. Аввал маҳаллӣ ҷойгиршавиатонро ва пас\n"
+"забонеро, ки бо он гуфтугӯ мекунед, интихоб кунед.\n"
+"\n"
+"Бо ангуштзании тугмаи \"%s\" шумо метавонед дигар забонҳоро, ки бо\n"
+"истгоҳи кории шумо коргузорӣ карда мешавад, интихоб кунед ва ҳамин\n"
+"тавр файлҳои санадсозии замимаҳои системавиро, ки ба забон алоқаманданд,\n"
+"коргузорӣ намоед. Масалан агар дар системаи шумо корвандони аз Испания\n"
+"кор кунанд, дар дарахти азназаргузарони англисиро ҳамчун забон бо нобаёнӣ "
+"интихоб кунед ва ҳатто ҳамаи онҳоро бо интихоби пункти \"%s\"дар бахши "
+"Муккамалгашт коргузрӣ карда метавонед.\n"
+"\n"
+"Интихоби пуштибонии забон маънои тарҷумаҳо, ҳуруфҳо, имлосанҷӣ ва ғайраро "
+"барои забонҳои коргузоришударо дорад. Ба ғайр аз ин шумо\n"
+"метавонед пункти \"%s\"-ро интихоб кунед, ки системаро барои истифода "
+"бурдани рамзи ягона (UTF-8) маҷбур месозад.\n"
+"Лекин дар хотир доред, ки ин хусусияти озмоишӣ аст.\n"
+"Агар шумо дигар забенероб ки дигар рамзро талаб мекунад интихоб кунед, ба "
+"ҳар ҳол пуштибонии рамзи ягона коргузорӣ\n"
+"мегардад.\"%s\"\n"
+"\n"
+"Барои гузариш аз байни забонҳои мухталифи коргузоришуда дар\n"
+"система шумо матавонед фармони \"/usr/sbin/localedrake\" ҳамчун \"реша\" "
+"баҳри ивази забон барои ҳамаи система истифода баред\n"
+"Корандозии ин фармон, ҳамчун корванди муқаррарӣ танҳо\n"
+"гузоришҳои забонро барои ин корванди муайян иваз мекунад."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Испанӣ"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Одатан дар DrakX ягон муаммо оиди муайянкунии шумораи тугмаҳо\n"
+"дар муши шумо пайдо намешавад. Агар чунин нашавад, пас он муши шуморо\n"
+"ҳамчун ду тугмадор мепиндорад ва онро ба намунасозии тугмаи сеюмро\n"
+"танзим мекунад. Тугмаи сеюми муши дутугмадор ба воситаи пахшкунии\n"
+"якзамонаи тугмаи рост ва чапи муш, пахш хоҳад шуд. DrakX ба таври худкор\n"
+"мефаҳмад, ки оё муши шумо кадоме аз интерфейси PS/2, serial ё USB-ро "
+"истифода мебарад.\n"
+"\n"
+"Агар шумо муши 3-тугмадорро бе чарха дошта бошед шумо \"%s\"\n"
+"-ро интихоб карда метавонед.\n"
+"\n"
+"Агар шумо дигар мушро, ки аз интихоб кардан бо нобаёнӣ фарқ мекунад,\n"
+"экрани санҷишӣ намоиш дода мешавад. Тугма ва чархаҳоро барои санҷидан\n"
+"дурустии гузоришҳо ва дурустии кори муш истифода баред.\n"
+"Агар муш хуб кор накунад, сари фазо ё \"%s\" калиди [Баргаштан]-ро пахш "
+"кунед,\n"
+"то ки санҷишро бекор кунед ва ба рӯйхати интихобҳо баргардед.\n"
+"\n"
+"Мушҳои чархадор баъзе вақт худмуайян намегарданд. Дар ин ҳолат\n"
+"шумо бояд муши худро аз рӯйхат интихоб намоед. Бовари ҳосил\n"
+"кунед, ки шумо даргоҳи пайвастшавии мушро дуруст интихоб кардед.\n"
+"Вақте, ки муш интихоб шуд ва тугмаи \"%s\" пахш гардид, тасвир бо\n"
+"симои муш пайдо мешавад. Чархаҳои мушро гардонед, то бовари\n"
+"ҳосил кунед, ки он дуруст кор мекунад. Вақте шумо мебинед, ки\n"
+"чархаи муш дар экран ба ҳаракатҳои муши шумо ҳамзамон ҳаракат мекунад,\n"
+" кори тугмаҳо ва ҳаракати нишоннаморо, ки бояд мувофиқи\n"
+"ҷойивазкунии муши шумо ҳаракат кунад, санҷед."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "бо намунаи Ғилдиракча"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Уневерсалӣ | Дилхоҳ PS/2 & USB муш"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Лутфан бандари дурустро интихоб кунед. Барои мисол, бандари \"COM1\" таҳти "
+"Windows дар таҳти GNU/Linux \"ttySO\" номида мешавад."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Ин ҳалли бӯҳронӣ оиди бехатарии системаи GNU/Linux-и шумост:\n"
+"шумо бояд гузарвожаи \"решавӣ\"-ро ворид кунед. \"Реша\" ин идоракунандаи\n"
+"системавӣ ва танҳо ӯ ҳуқуқи ба амал баровардани навсозиҳо, илова\n"
+"кардани корвандон, тағирдиҳии батанзимдарории система ва ғайраро дорад. "
+"Кӯтоҳ карда гӯем \"реша\" ҳама чизро карда метавонад! Бинобар\n"
+"ин шумо бояд чунин гузарвожаеро интихоб кунед, ки фаҳмидани он душвор\n"
+"гардад. Агар гузарвожа хеле содда бошад DrakX оиди он ба шумо хабар "
+"мерасонад. Чи хеле ки мебинед, шумо умуман гузарвожаро интихоб накарда\n"
+"метавонед, лекин мо ба шумо инро аз сабаби як чиз манъ мекунем: фикр\n"
+"накунед, ки агар шумо GNU/Linux-ро бор карда бошед, пас дигар системаҳои\n"
+"омили шумо аз хатогӣ муҳофизат мешаванд. Аз сабаби он, ки \"реша\" ҳамаи\n"
+"маҳдудиатҳоро гузашта метавонед ва тасодуфан ҳамаи додаҳоро дар бахшҳои\n"
+"диск пок карда метавонад, ба воситаи бо эҳтиёт муносибат кардан ба бахшҳои\n"
+"пас хеле муҳим аст, ки шудани \"реша\" хеле душвор гардад.\n"
+"\n"
+"Гузарвожа бояд якҷоягии аломатҳои рақамӣ ва ҳарфӣ бошад ва дарозиаш\n"
+"кам аз 8 аломат бошад. Ҳеҷ гоҳ гузарвожаи \"реша\"-ро сабт накунад. Зеро\n"
+"он боэътиборкунии системаро хеле осон мекунад.\n"
+"\n"
+"Лекин гузарвожаро хеле дароз ва хеле мураккаб накунед, зеро шумо бояд\n"
+"онро ба осонӣ хотир доред.!\n"
+"\n"
+"Гузарвожаи дар экран ба тавре чоп кардаи шумо намоиш дода намешавад.\n"
+"Ба ғайр аз ин ба шумо лозим меояд, ки воридкунии гузарвожаро дубора\n"
+"иҷро созед, барои пешгирии эҳтимолан хатогӣ дар чопкунӣ. Агар чунин\n"
+"ҳодиса рух диҳад, ки шумо дубора ҳангоми чопкунӣ хатогӣ кардед, пас шояд ин "
+"гузарвожаи ``нодуруст''-ро ҳангоми боркунии якумин истифода баред.\n"
+"\n"
+"Агар хоҳед, ки дастёби ба ин компютер аз тарафи хидматрасони аслшинос\n"
+"идора шавад, ба тугмаи \"%s\" ангушт занед.\n"
+"\n"
+"Агар шабакаи шумо хидматрасонҳои аслшиносии LDAP, NIS, ё PDC\n"
+"Windows Domain-ро истифода барад, навъи мувофиқи \"%s\"-ро интихоб\n"
+"кунед. Агар надонед, ки кадоме аз онҳоро истифода мебаред, идоракунандаи "
+"шабакавии худро пурсон шавед.\n"
+"\n"
+"Агар шумо оиди дархотирдории гузарвожа душворӣ кашед, шумо хосияти\n"
+"\"%s\"-ро интихоб карда метавонед, агар компютери шумо ба Интернет пайваст\n"
+"набошад ва агар шумо ба ҳамаи шахсоне, ки мошинаи шуморо истифда мебаранд,\n"
+"боварӣ дошта бошед."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "аслшиносӣ"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"LILO ва grub корандозҳои худборшави GNU/Linux мебошад. Ин қадам пурра\n"
+"автоматикунонида шудааст. DrakX соҳаи худборшавии дискетро таҳлил менамояд\n"
+"ва мувофиқи чизи дар он ҷой ёфтааш амал мекунад:\n"
+"\n"
+" * агар соҳаи худборшавии Windows ёфт шавад, онгоҳ онро ба соҳаи "
+"худборшавии\n"
+"grub/LILO иваз хоҳад кард. Пас, шумо метавонед ҳам GNU/Linux ва ҳам ОС-и\n"
+"дигарро кор андозед.\n"
+"\n"
+" * агар соҳаи худборшавии grub ё LILO ёфт шавад, онгоҳ \"%s\" онро ба наваш "
+"иваз хоҳад\n"
+"кард.\n"
+"\n"
+"Агар номуайянӣ рӯй диҳад, онгоҳ DrakX аз шумо мепурсад, ки дар куҷо\n"
+"корандози \"%s\" худборшавро ҷойгир намуд."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Ҳоло вақте расидааст барои интихоби системаи чопкунӣ барои компютери\n"
+"шумо. Дигар СО ба шумо як намудро пешкаш карда метавонад, Mandriva Linux\n"
+"бошад, ду намудро. Ҳар яке аз системаҳо барои батанзимдарории\n"
+"муайяни беҳтарин мебошад.\n"
+"\n"
+" * \"%s\" -- ин маънои онро дорад, ки ``чопро саф наороед'' - ин интихоб,\n"
+"агар шумо бевосита ба чопгари худ пайваст бошед ва намехлҳед, ки\n"
+"қоғаз дар чопгар дар монад ва агар шумо чопгарони шабакавӣ надошта\n"
+"бошед (\"%s\" аз ӯҳдаи фақат шабакаҳои оддӣ баромада метавонад ва хеле\n"
+"барои онҳо суст мебошад.) Истифодаи \"pdq\" маслиҳат дода мешавад,\n"
+"ҳангоми гузоштани қадамҳои аввала ба GNU/Linux.\n"
+"\n"
+" * \"%s\" - `` Common Unix Printing System'', ин чопкуни олиҷаноб барои\n"
+"чопкунӣ дар шабакаи маҳаллии шумо, инчунин дар нисфи сайёра. Он дар\n"
+"батанзидарорӣ оддӣ ва ҳамчун хидматрасон ё мизоҷ дар системаҳои чопии\n"
+"пештараи \"lpd \", баромада метавонад. Барои ҳамин ҳам он бо системаҳои\n"
+"пештаристеҳсолшуда мутобиқ мебошад. Ба ҳамаи пурқудратии он нигоҳ\n"
+"накарда батанзимдарориҳои асосии он аз \"pdq\" ҳам оддитар аст. Агар\n"
+"ба шумо намунасозии \"lpd\" хидматрасон лозим бошад, азозили \"cups-lpd \"-"
+"ро\n"
+"даргиронед. \"%s\" интерфейси графикӣ барои чоп кардан ё интихоби кортҳои\n"
+"принтер ва идоракунӣ бо он.\n"
+"\n"
+"Агар шумо интихоби худро кунед, лекин баъд маълум гардад, ки системаи\n"
+"чопкунӣ ба шумо писанд намеояд, шумо метавонед онро тағир диҳед ба воситаи "
+"сардодани PrinterDrake аз Маркази Идораи Mandriva ва пахшкунии \"%s\" "
+"тугмаи\n"
+"кордон."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Кордон"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"Сараввал DrakX дастгоҳҳои дилхоҳи IDE-и ба компютери шумо омадаро муаяйн\n"
+"менамояд. Инчунин он системи шумо барои як ё кортҳои PCI SCSI зиёд баррасӣ\n"
+"менамояд. Агар корти SCSI ёфт шавад, онгоҳ DrakX ба таври автоматӣ ронандаи\n"
+"лозимаро коргузорӣ менамояд.\n"
+"\n"
+"Азбаски муаяйнкунии сахтафзор на ҳама вақт боваринок аст, DrakX\n"
+"шояд бо муяйнкунии гардонҳои сахт ба муваффақият ноил нагардад. Агар ин "
+"тавр\n"
+"бошад ба шумо лозим аст, то ки дастӣ сахтафзори худро нишон диҳед.\n"
+"\n"
+"Агар шумо созгори худро дастӣ нишон дода бошед, онгоҳ DrakX аз шумо "
+"мепурсад\n"
+"оё барои он хоҳиши ба танзим даровардани интихобҳоро доред.\n"
+"Шумо бояд ба DrakX иҷозат диҳед, то ки интихобҳои барои корт махсус бударо\n"
+"санҷед, ки барои коргузории созгор зарур аст. Одатан DrakX ин марҳиларо бе\n"
+"душворӣ мегузарад.\n"
+"\n"
+"Агар DrakX параметрҳои ба сахтфзор лозим буда муаяйн карда натавонад,\n"
+"онгоҳ ба шумо лозим аст, то ки дастӣ ронандаро ба танзим дароред."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": агар дар системи шумо корти овоздор муаяйн нашуда бошад,\n"
+" онгоҳ корти мазкур дар ин ҷо нишон дода мешавад. Агар шумо бинед, ки корти "
+"овоздори нишондода шуда\n"
+"ба оне ки дар системи шумо мувоффиқат намекунад, шумо метавонед ба дагма\n"
+"ангушт зада гардони дигарро интихоб намоед."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Ҳамчун азназаргузаронӣ DrakX ахборотеро, ки дар бораи системаи шумо\n"
+"дорад, пешниҳод мекунад. Вобаста ба он, ки кадом сахтафзор коргузорӣ\n"
+"шудааст, шумо метавонед ҳама ё баъзе аз ин пунктҳоро бинед. Ҳар пункт\n"
+"аз элементҳои батанзимдарор иборат аст, ки ахбороти хурде оиди\n"
+"батанзимдарориҳои ҷорӣ дорад. Барои ивази батанзимдарориҳо ба тугмаи\n"
+"мувофиқи \"%s\" ангушт занед.\n"
+"\n"
+" * \"%s\": батанзимдарориҳои ҷории забонакро тафтиш \"%s\" кунед ва агар\n"
+"зарурат бошад, онро тағир диҳед\n"
+"\n"
+" * \"%s\": интихоби ҷории давлатро тафтиш кунед. Агар шумо дар дигар\n"
+"давлат бошед ба тугмаи \"%s\" ангушт зада онро интихоб кунед. Агар\n"
+"давлати шумо дар рӯйхати якумӣ нишон дода набошад, ба тугмаи \"%s\"\n"
+"ангушт занед барои дидани рӯйхати пурра.\n"
+"\n"
+" * \"%s\": Бо нобаёнӣ DrakX минтақаи вақтеро интихоб мекунад, ки\n"
+"ба интихоби давлатии шумо асос ёфтааст. Интихоб нодуруст бошад, дар\n"
+"ин ҷо шумо метавонед ба тугмаи \"%s\" ангушт занед\n"
+"\n"
+" * \"%s\": Батанзимдарории ҷории мушро тафтиш кунед. Агар ягон чизро\n"
+"дигаргун сохтан лозим бошад ба тугма ангушт занед.\n"
+"\n"
+" * \"%s\": дар вақти ангуштзанӣ ба \"%s\" устоди созкуни чопгар\n"
+"кушода мешавад. Аз китоби ``Роҳнамои оғозии корванд'' боби\n"
+"мувофиқро оиди чӣ тарз ба танзим даровардани чопгарро, хонед.\n"
+"Интерфейси дар он нишондода ба интерфейси батанзимдарорӣ монанд аст. \n"
+"\n"
+" * \"%s\": агар дар системаи шумо корти овозӣ пайдо гардад, он нишон дода\n"
+"мешавад. Агар шумо бинед, ки корти овозии нишондода ба он , ки дар\n"
+"системаи шумо ҳаст мувофиқат намекунад, шумо метавонед тугмаро\n"
+"ангушт зада, ронандаи дигарро интихоб кунед.\n"
+"\n"
+" * \"%s\": бо нобаёнӣ DrakX интерфейси графикии шуморо бо ҳалнокии\n"
+"\"800x600\" ё \"1024x768\"ба танзим дароред. Агар ин шуморо қонеъ\n"
+"нагардонад, ба \"%s\" ангушт занед, барои дохилкунии дигаркуниҳо ба созгори "
+"интерфейси графикии шумо.\n"
+"\n"
+" * \"%s\": агар дар системаи шумо корти ТВ пайдо гардад, он нишон дода\n"
+"мешавад. Агар шумо корти ТВ дошта бошеду он муайян нагардид, ба\"%s\"\n"
+"ангушт занед ва ба таври дастӣ онро ба танзим дароред.\n"
+"\n"
+" * \"%s\": агар дар системаи шумо корти ISDN пайдо гардад, он нишон дода\n"
+"мешавад. Шумо метавонед ба \"%s\" ангушт занед барои тағири параметрҳои\n"
+"он.\n"
+"\n"
+" * \"%s\": агар хоҳед, ки дастёбӣ ба Интернет ё шабакаи маҳаллиро танзим\n"
+"диҳед, бо ангуштзанӣ ба ин тугма, худи ҳозир онро иҷро карда метавонед.\n"
+"\n"
+" * \"%s\": ҳамчуноне, ки дар қадами пешина буд, ин пункт ба шумо\n"
+"бозмуайянкунии сатҳи бехатариро пешкаш мекунад ().\n"
+"\n"
+" * \"%s\": агар шумо мошинаи худро ба Интернет пайваст кардани бошед,\n"
+"беҳтар мешуд фейрволро коргузри кунед, барои муҳофизати системаи\n"
+"худ аз воридшавӣ аз берун. Аз китоби ``Роҳнамои оғозии корванд'' боби\n"
+"мувофиқро оиди чӣ тарз ба танзим даровардани фейрвол, хонед.\n"
+"\n"
+" * \"%s\": агар хоҳед, ки танзими боркунандаи ибтидоиро тағир диҳед,\n"
+"ба ин тугма ангушт занед. Ин хосият барои корвандони моҳир пешбинӣ шудааст\n"
+"\n"
+" * \"%s\": дар ин ҷо шумо метавонед, кадом намуди хидматрасониҳо\n"
+"дар мошинаи шумо корандозӣ карда мешаванд, идора кунед. Агар мошинаи шумо "
+"хидматрасон мешуда бошад, ба шумо тафтиши ин\n"
+"батанзимдарориҳо, ҳатмист."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Корти ISDN"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Интерфейси Графикӣ"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Диски сахтеро, интихоб намоед, ки шумо онро барои офаридани қисми\n"
+"Mandriva Linux дур намудан мехоҳед. Эҳтиёт шавед, ки дар он ҳамаи\n"
+"додаҳои мавҷуд буда гум хоҳад шуд ва он барқарор намегардад!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Ба \"%s\" ангушт занед, агар шумо ҳамаи додаҳо ва қисмҳое ки дар ин диски "
+"сахт\n"
+"мавҷуд аст хориҷ намоед. Эҳтиёт шавед, ки баъд аз пахши \"%s\" шумо додаҳо "
+"ва\n"
+"қисмҳое ки дар ин диски сахт мавҷуд аст, инчунин ҳамаи додаҳои Windows-ро "
+"эҳё\n"
+"карда наметавонед.\n"
+"\n"
+"Ба \"%s\"ангушт занед, то ки бе талаф додани додаҳо ва қисмҳои дар ин диски "
+"сахт\n"
+"мавҷуд буда ин амалиётро бекор намоед."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Навбатӣ ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Гузашта"
+
diff --git a/perl-install/install/help/po/th.po b/perl-install/install/help/po/th.po
new file mode 100644
index 000000000..58e6343d1
--- /dev/null
+++ b/perl-install/install/help/po/th.po
@@ -0,0 +1,1137 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# Wachara Chinsettawong <wachara@yahoo.com>, 2001
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2001-09-10 14:24GMT+7\n"
+"Last-Translator: Wachara Chinsettawong <wachara@yahoo.com>\n"
+"Language-Team: Thai <th@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.9.5\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+
+#: ../help.pm:54
+#, fuzzy, c-format
+msgid "Do you want to use this feature?"
+msgstr "คุณต้องการใช้ aboot หรือไม่"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "อัพเกรด"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "With basic documentation"
+msgstr "ตำแหน่ง"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "Truly minimal install"
+msgstr "ออกจากการติดตั้ง"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr ""
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, fuzzy, c-format
+msgid "Automatic time synchronization"
+msgstr "Boot Style Configuration"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+
+#: ../help.pm:377
+#, fuzzy, c-format
+msgid "Use existing partition"
+msgstr "ใช้พาร์ติชั่นที่มีอยู่"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "ลบ disk ทั้งหมด"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+
+#: ../help.pm:412
+#, fuzzy, c-format
+msgid "Generate auto-install floppy"
+msgstr "สร้างfloppyสำหรับการติดตั้งแบบออโตเมติก"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+
+#: ../help.pm:461
+#, fuzzy, c-format
+msgid "Security Administrator"
+msgstr "อ๊อปชั่นของเครื่องพิมพ์แบบรีโมท"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr ""
+
+#: ../help.pm:533
+#, fuzzy, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "สำหรับผู้ชำนาญ > ปกติ"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr ""
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "with Wheel emulation"
+msgstr "Logitech MouseMan"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, fuzzy, c-format
+msgid "authentication"
+msgstr "การตรวจสอบสิทธิ์การใช้งาน"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr ""
+
+#: ../help.pm:768
+#, fuzzy, c-format
+msgid "Expert"
+msgstr "โหมดผู้เชี่ยวชาญ"
+
+#: ../help.pm:771
+#, fuzzy, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX จะพยายามหา PCI SCSI adapter(s) ถ้า DrakX\n"
+"หาเจอ SCSI adapter และรู้ว่าควรใช้ไดร์เวอร์อะไร มันก็จะ\n"
+"ถูกติดตั้งโดยออโตเมติก\n"
+"\n"
+"\n"
+"ถ้าคุณมี SCSI adapter ISA adapter หรือ PCI SCSI adapter ที่ DrakX\n"
+"ไม่สามารถหาเจอ คุณจะโดนถามว่ามี SCSI adapter ในเครื่องของคุณ\n"
+"หรือไม่ ถ้าไม่มีกรุณากดที่ \"ไม่\" แต่ถ้าคุณกดลงที่ \"ไช่\" คุณจะต้องเลือก\n"
+"ชนิดของ adapter ที่คุณมีอยู่\n"
+"\n"
+"\n"
+"ถ้าคุณเป็นคนเลือก Adapter เอง DrakX จะถามว่าคุณจะป้อนข้อมูล\n"
+"Option หรือไม่ ถึงตรงนี้คุณควรจะให้ DrakX ค้นหา option ที่เหมาะสม\n"
+"ซึ่งโดยทั่วไปมันจะสามารถหาได้เองอย่างถูกต้อง\n"
+"\n"
+"\n"
+"แต่ถ้าไม่สำเร็จคุณจำเป็นที่จะต้องให้ข้อมูล Option เอง คุณควรหาข้อมูลเพิ่ม\n"
+"เติมได้จากคู่มือ (บทที่ 3 ตอน Collective informations on your hardware ) หรือ \n"
+"จาก Web Site ของผู้ผลิต หรือ จาก Microsoft Windows ถ้าคุณมีติดตั้ง"
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "ISDN card"
+msgstr "Internal ISDN card"
+
+#: ../help.pm:858
+#, fuzzy, c-format
+msgid "Graphical Interface"
+msgstr "ให้เป็นกราฟฟิคเมื่อเริ่มต้น"
+
+#: ../help.pm:861
+#, fuzzy, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"เลือก harddisk ที่ต้องการลบและลง Mandriva Linux\n"
+"ควรระวังเป็นอย่างมากดพราะว่าข้อมูลทุกอย่างจะถูกลบ\n"
+"และจะไม่สามารถกู้คืนได้"
+
+#: ../help.pm:866
+#, fuzzy, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"กด \"OK\" ถ้าคุณต้องการลบข้อมูลทั้งหมดบน harddisk นี้\n"
+"นี่รวมถึง partitions ทั้งหมดซึ่งรวมถึง Windows ด้วย\n"
+"\n"
+"\n"
+"กด \"ยกเลิก\" เพื่อยกเสิกการทำงานนี้"
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Next ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- ก่อน"
+
diff --git a/perl-install/install/help/po/tl.po b/perl-install/install/help/po/tl.po
new file mode 100644
index 000000000..e4a00768a
--- /dev/null
+++ b/perl-install/install/help/po/tl.po
@@ -0,0 +1,2076 @@
+# translation of DrakX-tl.po to Filipino
+# translation of DrakX.po to Filipino
+# Copyright (C) 2004 Free Software Foundation, Inc.
+# Arys P. Deloso <arys@deloso.org>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-tl\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2004-09-15 13:35+0200\n"
+"Last-Translator: Arys P. Deloso <arys@deloso.org>\n"
+"Language-Team: Filipino <salinpinoy@comitus.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Bago magpatuloy, kailangang basahin ninyong mabuti ang mga nasasaad sa\n"
+"lisensiya. Tinutukoy nito ang kabuoang distribusyon ng Mandriva Linux. Kung\n"
+"kayo ay sumasang-ayon sa lahat ng nasasaad, i-check ang \"%s\" na box.\n"
+"Kung hindi, i-click ang \"%s\" na button para i-reboot ang inyong computer."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"Ang GNU/Linux ay isang sistema na pangmaramihang gumagamit, na nanganga-\n"
+"hulugang ang bawat gumagamit ay may kani-kaniyang pagtatangi o pagpili,.\n"
+"mga sariling file at iba pa. Maaari ninyong basahin ang ``Starter Guide'' "
+"para\n"
+"mas matutunan ang tungkol sa mga \"multi-user\" sistema. Pero hindi gaya ng\n"
+"\"root\", na siyang tagapamahala ng sistema, ang mga user na inyong idagdag\n"
+"mula sa punto na ito ay hindi pahihintulutan na baguhin ang kahit na ano "
+"maliban\n"
+"na lang sa kanilang sariling mga file at sarili nilang mga configuration, na "
+"nagbi-\n"
+"bigay proteksyon sa sistema laban sa mga hindi-sinasadyang o masamang\n"
+"hangaring pagbabago na makakaapekto sa kabuoang sistema. Nararapat na\n"
+"kayo ay lumalang ng kahit isang regular na user para sa inyong sarili -- ito "
+"ay\n"
+"account na dapat ninyong gamitin para sa pang-araw-araw na gamit. Kahit na\n"
+"napakadaling mag login bilang \"root\" para gawin kahit ano at lahat-lahat, "
+"ito\n"
+"rin ay mapanganib! Ang isang simpleng pagkakamali ay maaaring hindi na\n"
+"magpapatakbo ng inyong sistema. Kung mabigat naman ang inyong pagkaka-\n"
+"mali bilang isang regular na user, ang pinakamalalang mangyayari ay mawa-\n"
+"lan kayo ng ilang inpormasyon, pero hindi maaapektuhan ang buong sistema.\n"
+"\n"
+"Ang unang field ay hihingin ang inyong tunay na pangalan. Siyempre hindi "
+"ito\n"
+"kinakailangan -- maari ninyong ipasok kahit anong gusto ninyo. Gagamitin ng\n"
+"DrakX ang unang salita na ipinasok ninyo sa field na ito at sisipiin ito sa "
+"field\n"
+"na \"%s\", na siyang pangalan na ipapasok ng user na ito sa pag login sa\n"
+"sistema. Kung gusto ninyo, maaari ninyong pawalang-halaga ang default\n"
+"at baguhin ang pangalan ng user. Ang susunod na hakbang ay pagpasok ng\n"
+"password. Sa pananaw ng seguridad, ang password ng \"non-privileged\" \n"
+"(regular) na user ay hindi kasing-halaga ng password ng \"root\", pero "
+"hindi\n"
+"ito dahilan para pabayaan ito at gawing blangko o napakasimple: kung "
+"iisipin\n"
+"ninyo, ang mga file ninyo ang nalalagay sa panganib.\n"
+"\n"
+"Kapag i-click ninyo ang \"%s\", makapagdadagdag kayo ng iba pang mga user.\n"
+"Magdagdag ng user para sa bawat isa ninyong mga kaibigan: halimbawa, sa\n"
+"bahay, tatay o kapatid ninyo; at sa tanggapan (opisina), mga kawani nito.\n"
+"I-click ang \"%s\" kung tapos na kayong magdagdag ng mga user.\n"
+"\n"
+"Ang pagki-click sa \"%s\" na button ay pahihintulutan kayong baguhin ang\n"
+"default na \"shell\" para sa user na iyon (bash ang default).\n"
+"\n"
+"Kung natapos na kayong magdagdag ng mga user, papipiliin kayo kung sinong\n"
+"user ang ila-login kaagad sa sistema kapag nag-boot ang sistema. Kung kayo\n"
+"ay interesado sa katangiang iyon (at walang gaanong pakialam sa local na\n"
+"seguridad), piliin ang napupusuang user at \"window manager\", at "
+"pagkatapos\n"
+"ay i-click ang \"%s\". Kung kayo ay hindi interesado sa katangiang ito, "
+"tanggalin\n"
+"ang check sa \"%s\" na box."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Gusto ninyong gamitin ang katangian na ito?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Nakalista rito ang mga namamalaging partisyon ng Linux na natiktikan sa\n"
+"inyong hard drive. Maaari ninyong itago ang mga pili ng Wizard, dahil sila\n"
+"ay mabuti para sa karamihan ng mga karaniwang \"installation\". Kung kayo\n"
+"ay gagawa ng mga pagbabago, mag-define dapat kayo ng partisyon ng\n"
+"\"root\" (\"/\"). Huwag pumili ng napakaliit na partisyon dahil hindi kayo "
+"maka-\n"
+"pag-i-install ng sapat na software. Kung gusto ninyong itago ang inyong "
+"data\n"
+"sa hiwalay na partisyon, kailangan ninyo ring gumawa ng \"/home\" na "
+"partisyon\n"
+"(maaari lamang kung kayo ay mayroong mahigit sa isang partisyon ng Linux na "
+"available).\n"
+"\n"
+"Bawat partisyon ay nakalista na sumusunod: \"Pangalan\", \"Capacity\".\n"
+"\n"
+"\"Pangalan\" ay naka-structure na: \"uri ng hard drive\", \"bilang ng hard "
+"drive\",\n"
+"\"bilang ng partisyon\" (halimbawa, \"hda1\").\n"
+"\n"
+"\"Uri ng hard drive\" ay \"hd\" kung ang inyong hard drive ay isang IDE na "
+"hard drive\n"
+"at \"sd\" kung ito ay isang SCSI na hard drive.\n"
+"\n"
+"\"Bilang ng hard drive\" ay palaging titik pagkatapos ng \"hd\" o \"sd\". "
+"Para\n"
+"sa mga IDE na hard drive:\n"
+"\n"
+" * \"a\" ay nangangahulugang \"master hard drive sa primary IDE controller"
+"\";\n"
+"\n"
+" * \"b\" ay nangangahulugang \"slave hard drive sa primary IDE controller"
+"\";\n"
+"\n"
+" * \"c\" ay nangangahulugang \"master hard drive sa secondary IDE controller"
+"\";\n"
+"\n"
+" * \"d\" ay nangangahulugang \"slave hard drive sa secondary IDE controller"
+"\".\n"
+"\n"
+"Sa mga SCSI na hard drive, ang \"a\" ay nangangahulugang \"pinakamababang "
+"SCSI ID\",\n"
+"ang \"b\" ay nangangahulugang \"pangalawang pinakamababang SCSI ID\", atbp."
+
+#: ../help.pm:88
+#, fuzzy, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Ang installation ng Mandriva Linux ay nakahati sa ilang mga CD-ROM.\n"
+"Kung ang napiling package ay nakalagay sa ibang CD-ROM, iluluwa ng DrakX\n"
+"ang kasalukuyang CD at ipapasuksok sa inyo ang tamang CD."
+
+#: ../help.pm:95
+#, fuzzy, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Panahon na para piliin kung aling mga program ang nais ninyong i-install sa\n"
+"inyong sistema. Mayroong libo-libong mga package na available para sa\n"
+"Mandriva Linux, at upang mas madali itong pangasiwaan, ang mga package\n"
+"ay inayos sa mga pangkat ng magkakatulad na mga application.\n"
+"\n"
+"Ang mga package ay inayos sa mga pangkat na batay sa paggamit ng\n"
+"inyong makina. Inaayos ng Mandriva Linux ang mga pangkat ng mga\n"
+"package sa apat na kategoriya. Maaari ninyong paghaluhaluin at\n"
+"pagbagaybagayin ang mga application mula sa sari-saring kategoriya,\n"
+"para ang installation na ``Workstation'' ay maaari pa ring maka-install\n"
+"ng mga application mula sa kategoriya ng ``Development''.\n"
+"\n"
+" * \"%s\": kung plano ninyong gamitin ang inyong makina bilang isang\n"
+"workstation, pumili ng isa o mahigit na pangkat na nasa kategoriya ng\n"
+"workstation.\n"
+"\n"
+" * \"%s\": kung plano ninyong gamitin ang inyong makina sa paggawa\n"
+"ng program, pumili ng naaangkop na mga pangkat mula sa kategoriyang\n"
+"iyon.\n"
+"\n"
+" * \"%s\": kung ang makina ninyo ay gagamitin bilang server, piliin kung\n"
+"alin sa mga karaniwang serbisyo (\"common service\") ang nais ninyong\n"
+"i-install sa inyong makina.\n"
+"\n"
+" * \"%s\": dito ninyo pipiliin ang inyong nahihirang na \"graphical "
+"environment\".\n"
+"Dapat ay pumili ng isa kung gusto ninyong magkaroon ng \"graphical interface"
+"\".\n"
+"\n"
+"Ang paglipat ng \"mouse cursor\" sa ibabaw ng pangalan ng isang pangkat ay\n"
+"magpapakita ng maikling paliwanag tungkol sa pangkat na iyon. Kung inyong\n"
+"tatanggalin ang pagkapili sa mga pangkat habang nagsasagawa ng regular na\n"
+"installation (kasalungat ng \"upgrade\"), may dialog na magpa-pop-up na\n"
+"magmumungkahi ng iba-ibang mga option para sa isang maliitang installation:\n"
+"\n"
+" * \"%s\": ay mag-iinstall ng pinakamaliit na bilang ng mga package para "
+"lang\n"
+"maaaring magkaroon ng isang gumaganang \"graphical desktop\".\n"
+"\n"
+" * \"%s\": ay i-install ang pinakabatayang sistema at saka mga "
+"pinakabatayang\n"
+"kagamitan (o \"utilities\") at ang kanilang mga dokumentasyon. Ang "
+"installation\n"
+"na ito ay nababagay para sa pagse-setup ng isang server.\n"
+"\n"
+" * \"%s\": ay mag i-install ng ganap na kaliitang bilang ng mga package na\n"
+"kinakailangan para makakuha ng gumaganang sistema ng Linux. Sa installation\n"
+"na ito kayo ay magkakaroon lamang ng interface na command line (walang\n"
+"graphical interface). Ang kabuuang laki ng installation na ito ay mga 65\n"
+"megabytes.\n"
+"\n"
+"Maaari ninyong suriin ang \"%s\" na box, na kapakipakinabang kung kayo ay\n"
+"nakakakilala sa mga package na inihahandog o gusto ninyong magkaroon ng\n"
+"kabuuang kapangyarihan sa kung ano ang ii-install.\n"
+"\n"
+"Kung sinimulan ninyo ang installation sa \"%s\" na mode, maaari ninyong\n"
+"tanggalin ang pagkapili ng lahat ng mga pangkat para maiwasan na\n"
+"makapag-install ng kahit anong bagong package. Ito ay mapapakinabangan\n"
+"sa pagkukumpuni o pag-a-update ng namamalaging sistema."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Upgrade"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "May basic na dokumentasyon"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Totoong maliitang install"
+
+#: ../help.pm:152
+#, fuzzy, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Kung sinabihan ninyo ang taga-install na gusto ninyong piliin ng isa-isa "
+"ang\n"
+"mga package, ito ay maghaharap ng \"tree\" na naglalaman ng mga\n"
+"package na napagbukod-bukod batay sa pangkat at pangkatan. Habang\n"
+"binabasa ang \"tree\", maaari kayong pumili ng mga buo-buong pangkat,\n"
+"pangkatan o isa-isang package.\n"
+"\n"
+"Tuwing kayo ay pipili ng package sa \"tree\", may paglalarawan na lalabas\n"
+"sa kanan para malaman ninyo ang layunin ng package.\n"
+"\n"
+"!! Kung ang isang package ng server ay napili, dahil kayo ay pumili ng\n"
+"bukod na package o kaya iyon ay bahagi ng isang pangkat ng mga package,\n"
+"kayo ay tatanungin kung gusto ninyo talagang i-install ang mga server na\n"
+"iyon. Bilang default, sisimulan kaagad ng Mandriva Linux pag-boot ang kahit\n"
+"anong na-install na mga service. Kahit na sila ay ligtas at walang kilalang "
+"mga\n"
+"issue nang mailabas ang distribusyon, maaring matuklasan na may butas sa\n"
+"seguridad pagkatapos matapos ang version ng Mandriva Linux na ito. Kung\n"
+"hindi ninyo nalalaman ang ginagawa ng isang service o bakit ito ini-"
+"install,\n"
+"i-click ang \"%s\". Ang pagki-click sa \"%s\" ay mag-i-install ng mga "
+"nakalistang\n"
+"service at sila ay sisimulan kaagad, bilang default, habang nagbo-boot. !!\n"
+"\n"
+"Ang \"%s\" na option ay ginagamit para i-disable ang dialog ng babala na\n"
+"lumalabas tuwing ang taga-install ay kaagad namimili ng package para\n"
+"maresolba ang mga issue ng pagkaka-asa-asa (\"dependency\"). Ilang mga\n"
+"package ay may pagkakaugnayan sa pagitan ng bawat isa nila na kung saan\n"
+"ang pag-i-install ng isa ay nangangailangang na ma-install din ang ilang "
+"ibang\n"
+"program. Kaya ng taga-install na pasyahan kung aling mga package ang\n"
+"kinakailangan para masiyahan ang isang pagkaka-asa-asa upang matagumpay\n"
+"na matapos ang pag-i-install.\n"
+"\n"
+"Ang maliit na icon ng \"floppy disk\" sa ilalim ng listahan ay "
+"pahihintulutan\n"
+"kayong mag-load ng listahan ng package na ginawa noong nakaraang\n"
+"pag-i-install. Ito ay kapakipakinabang kung kayo ay mayroong ilang bilang "
+"ng\n"
+"mga makina na nais ninyong i-configure na magkapareho. Kapag nag-click\n"
+"sa icon na ito, kayo ay sasabihan na magsuksok ng \"floppy disk\" na ginawa\n"
+"noong nakaraang dulo ng pag-i-install. Tingnan ang pangalawang tip ng "
+"huling\n"
+"hakbang kung paano gumawa ng gayong floppy."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Automatic dependencies"
+
+#: ../help.pm:186
+#, fuzzy, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": ang pagki-click sa \"%s\" na button ay magbubukas sa \"printer\n"
+"configuration wizard\". Konsultahin ang angkop na kabanata ng ``Starter\n"
+" Guide'' para sa karagdagang inpormasyon sa kung paano mag-setup ng\n"
+"bagong printer. Ang iniharap na interface doon ay katulad ng ginamit noong\n"
+"installation."
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Itong dialog na ito ay ginagamit para piliin kung aling mga serbisyo o\n"
+"\"service\" ang nais ninyong magsimula sa oras ng pag-boot.\n"
+"\n"
+"Ang DrakX ay maglilista ng lahat ng mga service na available sa "
+"kasalukuyang\n"
+"installation. Repasohin ng mabuti at maingat bawat isa at tanggalin ang "
+"check\n"
+"ng mga hindi kinakailangan sa oras ng pag-boot.\n"
+"\n"
+"May maikling paliwanag na ipapakita tungkol sa isang service kung ito ay\n"
+"napili. Ngunit kung kayo ay hindi nakatitiyak kung ang isang service ay\n"
+"may kabuluhan o wala, mas ligtas na pabayaan ang default na ayos.\n"
+"\n"
+"!! Sa stage na ito, magpakaingat kung binabalak ninyong gamitin ang\n"
+"inyong makina bilang isang tagapagsilbi (\"server\"): malamang na hindi\n"
+"ninyo gugustuhin na simulan ang kahit na anong serbisyo (\"service\") na\n"
+"hindi ninyo kinakailangan. Pakitandaan na ilang mga serbisyo ay maaaring\n"
+"maging mapanganib kung sila ay gumagana sa isang \"server\". Sa karaniwan\n"
+"ay piliin lamang ang mga \"service\" na talagang kinakailangan ninyo.\n"
+"!!"
+
+#: ../help.pm:209
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"Ginagamit ng GNU/Linux ang GMT (Greenwich Mean Time) sa pangangasiwa\n"
+"sa oras at isinasalin ito sa local na oras alinsunod sa pinili ninyong "
+"\"time zone\".\n"
+"Kung ang orasan sa inyong \"motherboard\" ay naka-set sa local na oras,\n"
+"maaari ninyong i-deactivate ito sa pamamagitan ng hindi pagpipili ng \"%s"
+"\",\n"
+"na magpapaalam sa GNU/Linux na ang orasan ng sistema at orasan ng\n"
+"hardware ay nasa parehong \"time zone\". Ito ay may kabuluhan kung ang\n"
+"makina ay naglalaman ng isa pang \"operating system\" (OS) gaya ng Windows.\n"
+"\n"
+"Ang \"%s\" na option ay automatic na papangasiwaan ang orasan sa\n"
+"pamamagitan ng pagco-connect sa isang malayong tagapagsilbi na orasan\n"
+"(\"remote time server\") na nasa Internet. Para gumana ang katangiang ito,\n"
+"mayroon dapat kayong gumaganang koneksyon sa Internet. Pinakamabuti\n"
+"na pumili ng isang tagapagsilbi na orasan na malapit sa inyo. Ang option na\n"
+"ito ay talagang mag-i-install ng tagapagsilbi na orasan na magagamit rin ng\n"
+"ibang mga makina sa inyong local network."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Automatic na pagsasabaysabay ng oras"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Graphic Card\n"
+"\n"
+" Karaniwan ay kaya ng taga-install na tiktikan ng automatic at\n"
+"i-configure ang \"graphic card\" na naka-install sa inyong makina.\n"
+"Kapag hindi ito nangyari, maaari ninyong piliin mula sa listahang ito\n"
+"ang card na talagang naka-install.\n"
+"\n"
+" Sa kalagayang maraming iba-ibang tagapagsilbi (\"server\") ang\n"
+"available para sa inyong card, mayroon o walang suporta sa 3D\n"
+"acceleration, kayo ay papipiliin ng tagapagsilbi na pinakababagay\n"
+"sa inyong pangangailangan."
+
+#: ../help.pm:234
+#, fuzzy, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (para sa \"X Window System\") ay ang puso ng \"graphical interface\"\n"
+"ng GNU/Linux na kung saan lahat ng mga \"graphical environment\" (KDE,\n"
+"GNOME, AfterStep, WindowMaker, atbp.) na kasama sa Mandriva Linux ay\n"
+"nakaasa.\n"
+"\n"
+"Ihaharap sa inyo ang isang talaan ng iba-ibang mga parameter na babaguhin\n"
+"para makuha ang pinakamabuting (\"optimal\") graphical display: Graphic "
+"Card\n"
+"\n"
+" Karaniwan ay kaya ng taga-install na tiktikan ng automatic at\n"
+"i-configure ang \"graphic card\" na naka-install sa inyong makina.\n"
+"Kapag hindi ito nangyari, maaari ninyong piliin mula sa listahang ito\n"
+"ang card na talagang naka-install.\n"
+"\n"
+" Sa kalagayang maraming iba-ibang tagapagsilbi (\"server\") ang\n"
+"available para sa inyong card, mayroon o walang suporta sa 3D\n"
+"acceleration, kayo ay papipiliin ng tagapagsilbi na pinakababagay\n"
+"sa inyong pangangailangan.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Karaniwan ay kaya ng taga-install na tiktikan ng automatic at\n"
+"i-configure ang monitor na nakakabit sa inyong makina. Kapag hindi\n"
+"ito tama, maaari ninyong piliin mula sa listahang ito ang monitor\n"
+"na talagang nakakabit sa inyong computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Dito maaari ninyong piliin ang mga resolution at bigat ng kulay (\"color\n"
+"depth\") na available para sa inyong hardware. Pumili ng isang pinaka-\n"
+"babagay sa inyong pangangailangan (maaari ninyong baguhin iyon\n"
+"pagkatapos ng pag-i-install). Isang patikim ng piniling configuration ay\n"
+"ipapakita sa larawan ng monitor.\n"
+"\n"
+"\n"
+"\n"
+"Subukan\n"
+"\n"
+" Depende sa inyong hardware, ang \"entry\" na ito ay maaaring hindi "
+"lalabas.\n"
+"\n"
+" ang sistema ay susubukang buksan ang \"graphical screen\" sa hinangad\n"
+"na resolution. Kung nakikita ninyo ang mensahe sa panahon ng pagsubok\n"
+"at sumagot ng \"%s\", ang DrakX ay magpapatuloy sa kasunod na hakbang.\n"
+"Kung hindi ninyo makita ang mensahe, nangangahulugan ito na ilang bahagi\n"
+"ng configuration ng automatic na pagtitiktik ay mali at ang pagsubok ay\n"
+"automatic na magtatapos pagkalipas ng 12 segundo, at dadalhin kayo\n"
+"pabalik sa menu. Baguhin ang mga setting hanggang makuha ninyo ang\n"
+"tamang \"graphical display\".\n"
+"\n"
+"\n"
+"\n"
+"Mga option\n"
+"\n"
+" Dito ay makapipili kayo kung gusto ninyo na automatic na gamitin ng\n"
+"inyong makina ang \"graphical display\" pagka-boot. Halatang nais ninyong\n"
+"subukan ang \"%s\" kung ang inyong makina ay gaganap na tagapagsilbi,\n"
+"o kayo ay hindi nagtagumpay sa pag-configure ng display. "
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+"\n"
+" Karaniwan ay kaya ng taga-install na tiktikan ng automatic at\n"
+"i-configure ang monitor na nakakabit sa inyong makina. Kapag hindi\n"
+"ito tama, maaari ninyong piliin mula sa listahang ito ang monitor\n"
+"na talagang nakakabit sa inyong computer."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Resolution\n"
+"\n"
+" Dito maaari ninyong piliin ang mga resolution at bigat ng kulay (\"color\n"
+"depth\") na available para sa inyong hardware. Pumili ng isang pinaka-\n"
+"babagay sa inyong pangangailangan (maaari ninyong baguhin iyon\n"
+"pagkatapos ng pag-i-install). Isang patikim ng piniling configuration ay\n"
+"ipapakita sa larawan ng monitor."
+
+#: ../help.pm:306
+#, fuzzy, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Sa kalagayang maraming iba-ibang tagapagsilbi (\"server\") ang\n"
+"available para sa inyong card, mayroon o walang suporta sa 3D\n"
+"acceleration, kayo ay papipiliin ng tagapagsilbi na pinakababagay\n"
+"sa inyong pangangailangan."
+
+#: ../help.pm:311
+#, fuzzy, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Mga option\n"
+"\n"
+" Dito ay makapipili kayo kung gusto ninyo na automatic na gamitin ng\n"
+"inyong makina ang \"graphical display\" pagka-boot. Halatang nais ninyong\n"
+"subukan ang \"%s\" kung ang inyong makina ay gaganap na tagapagsilbi,\n"
+"o kayo ay hindi nagtagumpay sa pag-configure ng display. "
+
+#: ../help.pm:319
+#, fuzzy, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Sa puntong ito, kailangan ninyong magpasya kung saan ninyo nais i-install\n"
+"ang Mandriva Linux na \"operating system\" (OS) sa inyong \"hard drive\".\n"
+"Kung ang inyong \"hard drive\" ay walang laman o kung may namamalaging\n"
+"\"operating system\" na gumagamit sa lahat ng available na puwang,\n"
+"kakailanganin ninyong ipartisyon ang drive. Ang pagpapartisyon ng isang\n"
+"\"hard drive\" ay ginagawa sa pamamagitan ng paghahati-hati nito sa\n"
+"kaisipan (\"logical\") upang makagawa ng puwang na kinakailangan para\n"
+"ma-install ang inyong bagong sistema ng Mandriva Linux.\n"
+"\n"
+"Dahil kadalasan na hindi na mababawi ang paraan ng pagpapartisyon ng\n"
+"hard drive at maaaring magdulot ng pagkawala ng data kung mayroon\n"
+"nang \"operating system\" na naka-install sa drive, ang pagpapartisyon ay\n"
+"ay maaaring maging nakakatakot at nakaka-stress kung kayo ay baguhang\n"
+"user.Sa kagandahang palad, ang DrakX ay may kalakip na \"wizard\" na\n"
+"magpapadali ng paraan na ito. Bago magpatuloy sa hakbang na ito,\n"
+"basahin muna ang mga nalalabing bahagi ng section na ito at higit sa\n"
+"lahat, huwag magmadali.\n"
+"\n"
+"Depende sa confiugration ng inyong hard drive, mayroong ilang mga option:\n"
+"\n"
+" * \"%s\": ang option na ito ay magsasagawa ng automatic na pagpapartisyon\n"
+"ng inyong walang lamang hard drive. Kung gagamitin ninyon ang option na ito\n"
+"hindi na magkakaroon ng iba pang mga \"prompt\".\n"
+"\n"
+" * \"%s\": natiktikan ng wizard na mayroong isa o mahigit na namamalaging\n"
+"partisyon ng Linux sa inyong \"hard drive\". Kung gusto ninyong gamitin "
+"sila,\n"
+"piliin ang option na ito. Pagkatapos kayo ay papipiliin ng mga \"mount point"
+"\"\n"
+"para sa bawat isang partisyon. Ang mga pamanang \"mount point\" ay pinili\n"
+"na bilang default, at para sa karamihang bahagi isang magandang pagkukuro\n"
+"kung gagamitin sila.\n"
+"\n"
+" * \"%s\": kung ang Microsoft Windows ay naka-install sa inyong hard drive "
+"at\n"
+"ginagamit nito lahat ng mayroong puwang dito, kakailanganin ninyong\n"
+"gumawa ng libreng puwang para sa GNU/Linux. Para gawin ito, maaari ninyong\n"
+"tanggalin ang inyong partisyon ng Microsoft Windows at data (tingnan ang\n"
+"paglutas na ``Burahin ang buong disk'') o i-resize ang inyong partisyon ng\n"
+"Microsoft Windows na FAT o NTFS. Ang pagre-resize ay maaaring isagawa na\n"
+"walang mawawalang data, kung dati na ninyong na-defragment ang partisyon\n"
+"ng Windows. Matinding itinatagubilin na i-backup ang inyong data. Ang\n"
+"paggamit sa option na ito ay ipinapayo kung nais ninyong gamitin pareho ang\n"
+"Mandriva Linux at Microsoft Windows sa iisang computer.\n"
+"\n"
+" Bago piliin ang option na ito, pakiunawa na pagkatapos ng paraang ito,\n"
+"ang laki ng partisyon ng inyong Microsoft Windows ay magiging mas\n"
+"maliit kaysa nang kayo ay nagsimula. Magkakaroon kayo ng mas\n"
+"kaunting libreng puwang sa ilalim ng Microsoft Windows para iimbak ang\n"
+"inyong data o mag-install ng bagong software.\n"
+"\n"
+" * \"%s\": kung gusto ninyong tanggalin lahat ng data at mga partisyon\n"
+"na mayroon sa inyong hard drive at palitan sila ng inyong bagong sistema\n"
+"ng Mandriva Linux, piliin ang option na ito. Maging maingat, dahil hindi na\n"
+"ninyo maaaring bawiin ang inyong pili matapos ninyong patotohanan ito.\n"
+"\n"
+" !! kung pipiliin ninyo ang option na ito, lahat ng data sa inyong disk "
+"ay\n"
+"matatanggal. !!\n"
+"\n"
+" * \"%s\": buburahin nito lahat ng nasa inyong drive at mag-umpisa ng\n"
+"sariwa, pinapartisyon lahat mula sa simula. Lahat ng data sa inyong disk\n"
+"ay mawawala.\n"
+"\n"
+" !! kung pipiliin ninyo ang option na ito, lahat ng data sa inyong disk "
+"ay\n"
+"mawawala. !!\n"
+"\n"
+" * \"%s\": piliin ang option na ito kung nais ninyong mano-manong "
+"ipartisyon\n"
+"ang inyong hard drive. Maging maingat -- ito ay makapangyarihan ngunit\n"
+"mapanganib na pili at maaaring madali ninyong mawala ang lahat ng\n"
+"inyong data. Ito ang dahilan kung bakit ipinapayo lamang ang option na ito\n"
+"kung kayo ay nakagawa na dati ng ganito at mayroong karanasan. Para sa\n"
+"karagdagang pagtuturo kung paano gamitin ang kagamitang DiskDrake,\n"
+"sumangguni sa section ng ``Managing Your Partitions'' (Pangangasiwa ng\n"
+"inyong mga Partisyon) sa ``Starter Guide'' (Patnubay sa Nagsisimula)."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Gamitin ang namamalaging partisyon"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Burahin ang buong disk"
+
+#: ../help.pm:380
+#, fuzzy, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Nandiyan na kayo. Tapos na ang pag-i-install at maaari nang gamitin ang\n"
+"inyong sistema ng GNU/Linux. I-click lang ang \"%s\" para i-reboot ang\n"
+"sistema. Huwag kalimutang alisin ang pang-install na media (CD-ROM\n"
+"o floppy). Ang unang bagay na dapat ninyong makita pagkatapos gawin ng\n"
+"inyong computer ang mga pagsubok sa hardware ay ang bootloader na menu,\n"
+"na papipiliin kayo kung aling \"operating system\" ang sisimulan.\n"
+"\n"
+"Ang \"%s\" na button ay nagpapakita ng dalawa pang button para:\n"
+"\n"
+" * \"%s\": para gumawa ng pang-install na \"floppy disk\" na automatic na\n"
+"magsasagawa ng kabuuang pag-i-install na walang tulong ng isang\n"
+"tagpagpalakad, kamukha ng pag-i-install na kako-configure ninyo.\n"
+"\n"
+" Tandaan na mayroong dalawang magkaibang option pagkatapos i-click\n"
+"ang button:\n"
+"\n"
+" * \"%s\". Ito ay halos automatic na pag-i-install. Ang pagpapartisyon\n"
+"na hakbang lamang ang siyang paraan na mapapakialaman.\n"
+"\n"
+" * \"%s\". Talagang automatic na pag-i-install : ang kabuuang hard disk\n"
+"ay susulatan muli, lahat ng data ay mawawala.\n"
+"\n"
+" Ang katangiang ito ay magagamit kung nag-i-install ng ilang bilang ng\n"
+"mga magkakahawig na makina.\n"
+" Tingnan ang section ng \"Auto install\"\n"
+"sa aming \"web site\" para sa karagdagang inpormasyon.\n"
+"\n"
+" * \"%s\": magse-save ng talaan ng mga package na pinili sa pag-i-install\n"
+"na ito. Para gamitin ang pagpili na ito sa iba pang pag-i-install, isuksok "
+"ang\n"
+"ang floppy at simulan ang pag-i-install. Sa \"prompt\", pindutin ang [F1] "
+"key\n"
+"at i-type >> linux defcfg=\"floppy\" <<."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Lumikha ng auto-install na floppy"
+
+#: ../help.pm:415
+#, fuzzy, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Kailangang i-format ang kahit anong partisyon na bagong gawa para ito\n"
+"magamit (ang ibig sabihin ng pagfo-format ay paglilikha ng \"file system"
+"\").\n"
+"\n"
+"Sa ngayon, maaari ninyong naisin na i-format muli ang ilang mga mayroon\n"
+"nang partisyon para burahin ang nilalamang data nila. Kung nanaisin ninyong\n"
+"gawin iyon, pakipili rin ang mga partisyon na iyon.\n"
+"\n"
+"Pakitandaan na hindi kinakailangang i-format muli ang lahat ng dati nang\n"
+"mayroon ng mga partisyon. Kailangan ninyong i-format ulit ang mga\n"
+"partisyon na naglalaman ng \"operating system\" (gaya ng \"/\", \"/usr\" o\n"
+"\"/var\") pero hindi ninyo kailangang i-format muli ang mga partisyon na\n"
+"naglalaman ng data na nais ninyong itago (karaniwan ay \"/home\").\n"
+"\n"
+"Pakiingatan ang pagpipili ng mga partisyon. Pagkatapos ng pagfo-format,\n"
+"lahat ng data sa mga napiling partisyon ay buburahin at hindi na ninyo\n"
+"mababawi ito.\n"
+"\n"
+"I-click ang \"%s\" kung handa na kayong i-format ang mga partisyon.\n"
+"\n"
+"I-click ang \"%s\" kung gusto ninyong pumili ng ibang partisyon para sa\n"
+"inyong pag-i-install ng bagong Mandriva Linux na \"operating system\".\n"
+"\n"
+"I-click ang \"%s\" kung nais ninyong piliin ang mga partisyon na susuriin\n"
+"para sa mga \"bad blocks\" (mga sirang bloke) sa disk."
+
+#: ../help.pm:437
+#, fuzzy, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Pagdating ng panahon na kayo ay nag-i-install ng Mandriva Linux, mas\n"
+"malamang na ilang mga package ay nabago na simula nang naunang\n"
+"paglabas. Maaaring inayos ang mga sira (\"bug\"), naresolba ang mga tanong\n"
+"sa sequridad. Para pakinabangan ang mga update (pagbabago) na ito ,\n"
+"maaari na ninyo ngayong i-download ito mula sa Internet. Suriin ang \"%s\"\n"
+"kung kayo ay may gumaganang koneksyon sa Internet, o \"%s\" kung mas\n"
+"nais ninyong i-install mamaya ang mga nabagong (\"update\") package.\n"
+"\n"
+"Ang pagpipili ng \"%s\" ay magpapakita ng talaan ng mga lugar kung saan\n"
+"ninyo maaaring makuha ang mga nabagong package. Pumili kayo dapat ng\n"
+"isa na malapit sa inyo. Lalabas ang isang tree ng mga napiling package:\n"
+"repasohin ang mga pagpili, at pindutin ang \"%s\" para kunin at i-install "
+"ang mga\n"
+"napiling package, o ang \"%s\" para hindi tumuloy."
+
+#: ../help.pm:450
+#, fuzzy, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Sa puntong ito, kayo ay papipiliin ng DrakX ng level ng seguridad o\n"
+"\"security level\" na hangarin ninyo para sa makinang ito. Ang level\n"
+"ng seguridad ay dapat na mas mataas kung ang makina ay maglalaman\n"
+"ng mga napakamahalagang data, o ito ay makinang itatapat sa Internet.\n"
+"Kung mas mataas ang seguridad, mas mahirap itong gamitin.\n"
+"\n"
+"Kung hindi ninyo alam ang pipiliin, manatili sa default na option. Maaari\n"
+"ninyong baguhin ang level ng seguridad mamaya gamit ang draksec\n"
+"na kasangkapan mula sa Mandriva Control Center.\n"
+"\n"
+"Ang \"%s\" na field ay magbibigay kaalaman sa sistema kung sinong \"user\"\n"
+"o gumagamit ng computer na ito ang siyang mananagot para sa seguridad.\n"
+"Ang mga mensaheng pangseguridad ay ipadadala sa \"address\" na iyon."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Tagapamala ng Seguridad"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Sa puntong ito, kailangan ninyong piliin kung aling mga partisyon ang\n"
+"gagamitin para sa pag-i-install ng sistema na Mandriva Linux. Kung ang\n"
+"mga partisyon ay nai-define na, mula sa dating pag-i-install ng GNU/Linux\n"
+"o ng ibang kasangkapang pangpartisyon, maaari ninyong gamiting ang\n"
+"mga mayroon nang partisyon. Kung hindi, dapat mag-define ng mga\n"
+"partisyon ng hard drive.\n"
+"\n"
+"Upang makalikha ng mga partisyon, dapat pumili muna kayo ng hard drive.\n"
+"Maaari ninyong piliin ang disk para sa pagpapartisyon sa pamamagitan ng\n"
+"pagki-click sa ``hda'' para sa unang IDE na drive, ``hdb'' para sa "
+"pangalawa,\n"
+"``sda'' para sa unang SCSI na drive at ganon.\n"
+"\n"
+"Para ipartisyon ang napiling hard drive, maaari ninyong gamitin ang mga\n"
+"option na ito:\n"
+"\n"
+" * \"%s\": ang option na ito ay magtatanggal ng lahat ng partisyon sa\n"
+"napiling hard drive\n"
+"\n"
+" * \"%s\": ang option na ito ay hahayaan kayo na automatic na lumikha\n"
+"ng ext3 at swap na partisyon sa libreng puwang ng inyong hard drive\n"
+"\n"
+"\"%s\": magbibigay daan sa karagdang mga katangian (\"feature\"):\n"
+"\n"
+" * \"%s\": ise-save ang \"partition table\" sa floppy. Magagamit para sa\n"
+"mamayang pagbawi ng \"partition table\" kung kinakailangan. Matinding\n"
+"itinatagubilin na gawin ninyo ang hakbang na ito.\n"
+"\n"
+" * \"%s\": hahayaan kayong isauli ang dati nang na-save na \"partition\n"
+"table\" mula sa floppy disk.\n"
+"\n"
+" * \"%s\": kung ang inyong partition table ay napinsala , maaari ninyong\n"
+"subukang bawiin iyon gamit ang option na ito.Maging maingat at tandaan\n"
+"na hindi iyon parating gumagana.\n"
+"\n"
+" * \"%s\": babalewalain lahat ng mga pagbabago at kukunin muli ang\n"
+"partition table na nasa hard drive noong una pa.\n"
+"\n"
+" * \"%s\": ang pagtatanggal ng check sa option na ito ay magpipilit sa mga\n"
+"gumagamit na mano-manong i-mount at i-unmount ang \"removable media\"\n"
+"gaya ng mga floppy at CD-ROM.\n"
+"\n"
+" * \"%s\": gamitin ang option na ito kung nais ninyong gumamit ng wizard "
+"para\n"
+"i-partisyon ang inyong hard drive. Ito ay nirerekomenda kung kayo ay walang\n"
+"mabuting kaalaman sa pagpapartisyon.\n"
+"\n"
+" * \"%s\": gamitin ang option na ito para bawiin ang mga pagbabago.\n"
+"\n"
+" * \"%s\": magpapahintulot ng karagdagang magagawa sa mga partisyon (uri,\n"
+", mga option, format) at magbibigay ng mas maraming inpormasyon tungkol\n"
+"sa hard drive.\n"
+"\n"
+" * \"%s\": kung kayo ay tapos na sa pagpapartisyon ng inyong hard drive, "
+"ito\n"
+"ay magse-save ng inyong mga pagbabago pabalik sa disk.\n"
+"\n"
+"Kung inaalam ang laki ng partisyon, maaari ninyong i-set ng mabuti ang laki\n"
+"ng partisyon sa pamamagitan ng paggamit ng mga Arrow key ng inyong\n"
+"keyboard.\n"
+"\n"
+"Tandaan: maaari ninyon maabot ang kahit anong option gamit ang keyboard.\n"
+"Lakbayin ang mga partisyon gamit ang [Tab] at ang mga [Up/Down] arrow.\n"
+"\n"
+"Kung may partisyon na nakapili, maaari ninyong gamitin ang:\n"
+"\n"
+" * Ctrl-c para lumikha ng bagong partisyon (kung walang laman ang partisyon "
+"na napili)\n"
+"\n"
+" * Ctrl-d para tanggalin ang partisyon\n"
+"\n"
+" * Ctrl-m para i-set kung saan ilalagay (\"mount point\")\n"
+"\n"
+"Para makakuha ng inpormasyon tungkol sa mga iba't-ibang uri ng \"file system"
+"\",\n"
+"pakibasa ang kabanata ng ext2FS mula sa ``Reference Manual''.\n"
+"\n"
+"Kung kayo ay nag-i-install sa makina ng PPC, gugustuhin ninyong lumikha ng\n"
+"maliit na partisyon na HFS ``bootstrap'' na may laking hindi liliit sa 1MB "
+"na\n"
+"gagamitin ng yaboot bootloader. Kung pipiliin ninyong mas malaki ang\n"
+"partisyon, mga 50MB, makikita ninyong ito ay kapakipakinabang na lugar\n"
+"sa pag-iimbak ng mga reserbang kernel at mga \"ramdisk image\" para sa\n"
+"panahon ng mahigpit na pangangailangan."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Ino-auto-mount ang removable media"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Lipat sa normal o bihasang mode"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Mahigit sa isang partisyon ng Microsoft ang natiktikan sa inyong hard "
+"drive.\n"
+"Pakipili kung alin ang gusto ninyong i-resize para ma-install ang inyong\n"
+"bagong \"operating sytem\" na Mandriva Linux.\n"
+"\n"
+"Bawat partition ay nakalista ng ganito: \"Pangalan ng Linux\",\n"
+"\"Pangalan ng Windows\", \"Capacity\".\n"
+"\n"
+"\"Pangalan ng Linux name\" ay may istruktura na: \"uri ng hard drive\",\n"
+"\"bilang ng hard drive\",\"bilang ng partisyon\" (halimbawa, \"hda1\").\n"
+"\n"
+"\"Uri ng hard drive\" ay \"hd\" kung ang inyong hard dive ay isang IDE\n"
+"na hard drive at \"sd\" kung iyon ay isang SCSI na hard drive.\n"
+"\n"
+"\"Bilang ng hard drive\" ay palaging titik pagkatapos ng \"hd\" o \"sd\". "
+"Para\n"
+"sa mga IDE na hard drive:\n"
+"\n"
+" * \"a\" ay nangangahulugang \"master hard drive sa primary IDE controller"
+"\";\n"
+"\n"
+" * \"b\" ay nangangahulugang \"slave hard drive sa primary IDE controller"
+"\";\n"
+"\n"
+" * \"c\" ay nangangahulugang \"master hard drive sa secondary IDE controller"
+"\";\n"
+"\n"
+" * \"d\" ay nangangahulugang \"slave hard drive sa secondary IDE controller"
+"\".\n"
+"\n"
+"Sa mga SCSI na hard drive, ang \"a\" ay nangangahulugang \"pinakamababang "
+"SCSI ID\",\n"
+"ang \"b\" ay nangangahulugang \"pangalawang pinakamababang SCSI ID\", atbp.\n"
+"\n"
+"\"Pangalan ng Windows\" ay ang titik ng inyong hard drive sa ilalim ng "
+"Windows\n"
+"(ang unang disk o partisyon ay tinatawag na \"C:\")."
+
+#: ../help.pm:567
+#, fuzzy, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": i-check ang kasalukuyang pagpili ng bansa. Kung kayo ay wala sa\n"
+"bansang ito, i-click ang \"%s\" na button at pumili ng iba. Kung ang inyong\n"
+"bansa ay wala sa unang talaan na ipinakita, i-click ang \"%s\" na button\n"
+"para makuha ang buong talaan ng mga bansa."
+
+#: ../help.pm:572
+#, fuzzy, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Ang hakbang na ito pagaganahin lamang kung mayroong nakitang\n"
+"partisyon ng GNU/Linux sa inyong makina.\n"
+"\n"
+"Kailangang malaman ngayon ng DrakX kung gusto ninyong magsagawa\n"
+"ng bagong install o upgrade ng namamalaging Mandriva Linux na sistema:\n"
+"\n"
+" * \"%s\": Para sa karamihang bahagi, ganap na binubura nito ang lumang\n"
+"sistema. Kung nais ninyong baguhin kung paano ang pagpartisyon sa inyong\n"
+"hard drive, o baguhin ang file system, dapat ninyong gamitin ang option na\n"
+"ito. Subalit, depende sa inyong pakana ng pagpapartisyon, maaari ninyong\n"
+"pigilang masulatan ang ilan sa inyong mga namamalaging data.\n"
+"\n"
+" * \"%s\": ang klase ng pag-i-install na ito ay pahihintulutan kayong i-"
+"update\n"
+"ang mga package na kasalukuyang naka-install sa inyong sistema ng\n"
+"Mandriva Linux. Ang inyong kasalukuyang pakana ng pagpapartisyon at\n"
+"data ng gumagamit ay hindi nabago. Karamihan ng ibang mga hakbang sa\n"
+"pagko-configure ay mayroon pa rin, katulad ng standard na pag-i-install.\n"
+"\n"
+"Ang paggamit sa ``Upgrade'' na option ay gagana ng mabuti sa mga sistema\n"
+"ng Mandriva Linux na nagpapatakbo ng version \"8.1\" o pataas. Ang\n"
+"pagsasagawa ng upgrade sa mga version bago ng Mandriva Linux \"8.1\" ay\n"
+"hindi ipinapayo."
+
+#: ../help.pm:594
+#, fuzzy, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Depende sa wika na pinili ninyo sa section, pipiliin kaagad ng DrakX ang\n"
+"isang tanging uri ng configuration ng keyboard. Suriin na ang pagpili ay\n"
+"nababagay sa inyo o pumili ng ibang keyboard layout.\n"
+"\n"
+"Maaari rin kayong magkaroon ng keyboard na hindi tumutugma sa\n"
+"inyong wika: halimbawa, kung kayo ay Swiss native na nagsasalita ng\n"
+"English, maaari kayong magkaroon ng Swiss na keyboard. O kung kayo\n"
+"ay nagsasalita ng English at kayo ay nasa Quebec, maaari ninyong makita\n"
+"ang inyong sarili sa kalagayan na hindi magkatugma ang inyong native na\n"
+"wika at naka-country-set na keyboard. Kahit aling kaso, ang pag-i-install\n"
+"na hakbang na ito ay hahayaan kayong pumili ng angkop na keyboard\n"
+"mula sa talaan.\n"
+"\n"
+"Iclick ang \"%s\" na button para harapan kayo ng kumpletong talaan ng\n"
+"mga suportadong keyboard.\n"
+"\n"
+"Kung kayo ay pipili ng keyboard layout na batay sa alfabetong hindi Latin,\n"
+"ang kasunod na dialog ay pahihintulutan kayong pumili ng \"key binding\"\n"
+"(pagkadikit sa key) na maglilipat sa keyboard sa pagitan ng Latin at ng\n"
+"hindi Latin na layout."
+
+#: ../help.pm:612
+#, fuzzy, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Ang inyong pili ng hinirang na wika ay makakaapekto sa wika ng mga\n"
+"dokumentasyon, sa taga-install at, sa karaniwan, sa sistema. Piliin muna\n"
+"ang rehiyon kung nasaan kayo, at pagkatapos ang wika ninyo.\n"
+"\n"
+"Ang pagki-click sa \"%s\" na button ay hahayaan kayong pumili ng iba pang\n"
+"mga wika na ii-install sa inyong workstation, at mag-i-install ng mga file "
+"para\n"
+"sa dokumentasyon ng sistema at mga application, na angkop sa wikang\n"
+"napili. Halimbawa, kung kayo ay magho-host ng mga user o gumagamit\n"
+"mula sa Spain sa inyong makina, piliin ang English bilang default na wika "
+"sa\n"
+"\"tree view\" at \"%s\" sa \"Advanced section\".\n"
+"\n"
+"Tungkol sa suporta sa UTF-8 (unicode): Ang Unicode ay isang bagong\n"
+"\"character encoding\" na nagnanais masakop ang lahat ng namamalaging\n"
+"wika. Ang buong suporta dita ng GNU/Linux ay ginagawa pa rin. Sa dahilang\n"
+"ito, gagamitin ito o hindi ng Mandriva Linux depende sa mga pili ng mga\n"
+"gumagamit:\n"
+"\n"
+" * Kung kayo ay pipili ng wika na may malakas na \"legacy encoding"
+"\" (latin1\n"
+"na mga wika, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish,\n"
+"karamihan ng mga wikang iso-8859-2), ang \"legacy encoding\" ay\n"
+"gagamitin bilang default;\n"
+"\n"
+" * Ang iba pang mga wika ay gagamitin ang unicode bilang default;\n"
+"\n"
+" * Kung mangangailangan ng dalawa o mahigit na mga wika, at iyong mga\n"
+"wika ay hindi gumagamit ng parehong \"encoding\", unicode ang gagamitin\n"
+"ng buong sistema;\n"
+"\n"
+" * Sa wakas, ang unicode ay maaaring ipilit para sa sistema sa hiling ng\n"
+"gumagamit (\"user\") sa pamamagitan ng pagpili sa option na \"%s\"\n"
+"na hiwalay o hindi umaasa sa kung aling mga wika ang mga napili.\n"
+"\n"
+"Tandaan na kayo ay makakapili ng hindi lamang isang karagdagang wika.\n"
+"Maaari kayong pumili ng ilan o kaya i-install silang lahat sa pamamagitan "
+"ng\n"
+"pagpipili sa \"%s\" na box. Ang pagpipili ng suporta sa isang wika ay\n"
+"nangangahulugang ii-install rin ang mga pagsasalin, font, pangsuri ng "
+"spelling,\n"
+"atbp. para sa wikang iyon.\n"
+"\n"
+"Para lumipat sa mga sari-saring wika na naka-install sa inyong sistema,\n"
+"maaari ninyong i-launch ang command na \"/usr/sbin/localedrake\" bilang\n"
+"\"root\" para baguhin ang wika na gamit ng buong sistema. Kapag pinatakbo\n"
+"ang command o utos bilang isang regular na user o gumagamit, mababago\n"
+"lamang ang mga setting ng wika para sa gumagamit na iyon."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Espanol"
+
+#: ../help.pm:653
+#, fuzzy, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Sa pangkaraniwan, ang DrakX ay hindi magkakaproblema sa pagtitiktik\n"
+"ng dami ng button ng inyong mouse. Kung hindi, iipagpalagay nito na kayo\n"
+"ay mayroong \"two-button\" (dalawang pindutan) na mouse at ico-configure\n"
+"ito para tumulad sa mouse na may pangatlong pindutan. Ang pangatlong\n"
+"pindutan ng mouse na may dalawang pindutan lamang ay mapipindot sa\n"
+"pamamagitan ng sabay na pagpindot sa kaliwa at kanang pindutan ng mouse.\n"
+"Automatic na malalaman ng DrakX kung ang mouse ninyo ay gumagamit ng\n"
+"PS/2, serial o USB na \"interface\".\n"
+"\n"
+"Kung kayo ay mayroong mouse na may tatlong pindutan at walang \"wheel\"\n"
+"o gulong, maaari ninyong piliin ang mouse na nagsasabing \"%s\". Pagkatapos\n"
+"ay ico-configure ng DrakX ang inyong mouse para magkunwari na may gulong\n"
+"ito: para gawin ito, pindutin ang gitnang pindutan at igalaw ang inyong "
+"mouse\n"
+"na pataas at pababa.\n"
+"\n"
+"Kung sa anumang dahilan, naisin ninyong magbanggit ng ibang uri ng mouse,\n"
+"piliin ito mula sa talaan na ibinigay.\n"
+"\n"
+"Kung kayo ay pipili ng mouse maliban sa default, may \"test screen\" na "
+"lalabas\n"
+"para masubukan ninyo ang inyong mouse. Gamitin ang mga pindutan at \"wheel"
+"\"\n"
+"para patotohanan na ang mga \"setting\" ay tama at ang inyong mouse ay\n"
+"gumagana ng tama. Kung ang mouse ay hindi gumana ng mabuti, pindutin\n"
+"ang \"space bar\" o [Return] key para i-cancel ang test at bumalik sa "
+"talaan\n"
+"ng mga pagpipilian.\n"
+"\n"
+"Ang mga mouse na may \"wheel\" o gulong ay karaniwang hindi natitiktikan ng\n"
+"automatic, kung kaya kailangan ninyong piliin ang inyong mouse mula sa "
+"talaan.\n"
+"Tiyakin na piliin ang isa na nababagay sa \"port\" kung saan nakakabit ang\n"
+"inyong mouse. Matapos makapili ng mouse at pindutin ang \"%s\" na pindutan,\n"
+"may lalabas na larawang-diwa ng mouse sa screen. I-scroll ang gulong ng\n"
+"mouse para matiyak na ito ay napagana ng tama. Kapag nakita na ninyong\n"
+"gumagalaw ang gulong ng mouse sa screen habang ini-scroll ninyo ang gulong\n"
+"ng inyong mouse,subukan ninyo ang mga pindutan at suriin kung ang pointer "
+"ng\n"
+"mouse sa screen ay gumagalaw habang ginagalaw ninyo ang inyong mouse."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "may Wheel emulation"
+
+#: ../help.pm:684
+#, fuzzy, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Kahit anong PS/2 & USB mouse"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Pakipili ang tamang port. Halimbawa, ang \"COM1\" port sa Windows\n"
+"ay may pangalang \"ttyS0\" sa ilalim ng GNU/Linux."
+
+#: ../help.pm:691
+#, fuzzy, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Ito ang pinakamahalagang punto ng desisyon para sa seguridad ng inyong\n"
+"GNU/Linux na sistema: dapat ninyong ipasok ang password ng \"root\". Ang\n"
+"\"root\" ay siyang tagapamahala ng sistema at siya lamang ang \"user\" o\n"
+"gumagamit na may pahintulot na mag-update, magdagdag ng mga user,\n"
+"baguhin ang kabuuang configuration ng sistema, atbp. Sa maikling salita,\n"
+"ang \"root\" ay may kakayahang gawin ang kahit na anong bagay! Ito ang\n"
+"dahilan kung bakit dapat kayong pumili ng password na mahirap mahulaan -\n"
+"sasabihan kayo ng DrakX kung ang password na pinili ninyo ay masyadong\n"
+"madali. Kung inyong mapapansin, hindi kayo pinipilit na magpasok ng "
+"password,\n"
+"pero matindi namin kayong pinapayuhan laban dito. Ang GNU/Linux na sistema\n"
+"ay makiling sa mga pagkakamali ng tagapagpalakad gaya ng lahat ng ibang\n"
+"\"operating system\". Dahil ang \"root\" ay may kakayahang daigin ang lahat\n"
+"ng mga hanggahan at hindi sinasadyang burahin lahat ng data sa mga\n"
+"partisyon dahil na rin sa walang ingat na pag-access sa mga partisyon,\n"
+"napakaimportante na mahirap maging \"root\".\n"
+"\n"
+"Ang password ay dapat halo ng mga alphanumeric character at hindi iikli sa "
+"8\n"
+"character ang haba. Huwag na huwag isusulat ang password ng \"root\" --\n"
+"mas higit na mapapadaling madala ang sistema sa panganib.\n"
+"\n"
+"Isang babala -- huwag gawing napahaba o napakahirap ng password dahil\n"
+"dapat ay maaalala ninyo ito!\n"
+"\n"
+"Ang password ay hindi ipapakita sa screen habang itina-type ninyo ito. Para\n"
+"mabawasan ang pagkakamali sa pag-type ng hindi nakikita kakailanganin\n"
+"ninyong i-type ng dalawang beses ito. Kung naulit ninyo ang maling pag-type\n"
+"ng dalawang beses, itong maling password na ito ang siyang gagamitin.\n"
+"\n"
+"Kung nais ninyo na ang pagpasok sa computer na ito ay kontrolin ng isang\n"
+"\"authentication server\", i-click ang \"%s\" na pindutan.\n"
+"\n"
+"Kung ang network ninyo ay gumagamit ng LDAP, NIS, o PDC \"Windows Domain\n"
+"authentication service\", piliin ang naaangkop para sa \"%s\". Kung hindi "
+"ninyo\n"
+"alam kung alin ang gagamitin, dapat kayong magtanong sa inyong\n"
+"tagapamahala ng network (\"network administrator\").\n"
+"\n"
+"Kung kayo ay nagkakaproblema sa pagtanda ng mga password, kung ang inyong\n"
+"computer ay hindi kakabit sa Internet at kayo ay lubos na nagtitiwala sa "
+"lahat\n"
+"ng gumagamit ng inyong computer, maaari ninyong piliin na magkaroon ng\n"
+"\"%s\"."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "authentication"
+
+#: ../help.pm:728
+#, fuzzy, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Ang LILO at GRUB ay mga bootloader ng GNU/Linux. Pangkaraniwan, ang\n"
+"stage na ito ay ganap na automatic. Susuriing mabuti ng DrakX ang\n"
+"\"boot sector\" ng disk at gagalaw ng angkop sa kung ano ang makita\n"
+"nito doon:\n"
+"\n"
+" * kung may nakitang boot sector ng Windows, ay papalitan ito ng\n"
+"GRUB/LILO na boot sector. Sa ganitong paraan ay maaari ninyong i-load\n"
+"ang GNU/Linux o ano pang ibang OS na naka-install sa inyong makina.\n"
+"\n"
+" * kung may nakitang GRUB o LILO na boot sector, papalitan ito ng bago.\n"
+"\n"
+"Kung hindi ito mapasyahan, tatanungin kayo ng DrakX kung saan ilalagay\n"
+"ang bootloader. Pangakaraniwan, ang \"%s\" ang pinakaligtas na lugar.\n"
+"Ang pagpipili sa \"%s\" ay hindi mag-i-install ng kahit anong bootloader.\n"
+"Gamitin lamang ito kung alam ninyo ang inyong ginagawa."
+
+#: ../help.pm:745
+#, fuzzy, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Panahon na upang pumili ng sistema ng pagpi-print para sa inyong computer.\n"
+"Ang ibang mga \"operating system\" (OS) ay mag-aalok lamang ng isa, pero\n"
+"ang Mandriva Linux ay nag-aalok ng dalawa. Bawat isa sa dalawang sistema\n"
+"ng pagpi-print na ito ay nababagay sa natatanging uri ng configuration.\n"
+"\n"
+" * \"%s\" -- na acronym para sa ``print, do not queue'', ang piliin kung "
+"mayroon\n"
+"kayong direktang koneksyon sa inyong printer, gusto ninyong madaling\n"
+"makakalas sa mga \"printer jam\", at wala kayong naka-network na printer.\n"
+"(\"%s\" ay makapangangasiwa lamang ng mga napakasimpleng kaso ng\n"
+"network at medyo mabagal kung gagamitin na may network). Inirerekomenda\n"
+"na gamitin ninyo ang \"pdq\" kung ito ang una ninyong karanasan sa GNU/"
+"Linux.\n"
+"\n"
+" * \"%s\" - `` Common Unix Printing System'', ay napakagaling na pili para "
+"sa\n"
+"pagpi-print sa inyong local na printer o sa kabilang panig ng mundo. Ito ay\n"
+"simpleng i-configure at maaaring gumanap na \"server\" o isang \"client\"\n"
+"para sa lumang \"lpd \" na sistema ng pagpi-print, samakatuwid ito ay\n"
+"magkaugma sa mga mas lumang \"operating system\" na maaaring\n"
+"mangailangan pa rin ng serbisyong pang-print. Habang makapangyarihan,\n"
+"ang basic na setup ay halos kasingdali ng sa \"pdq\". Kung kailangan "
+"ninyong\n"
+"gayahin ang \"lpd\" server, tiyakin na buksan ninyo ang \"cups-lpd \" "
+"daemon.\n"
+"\"%s\" ay naglalaman ng mga graphical front-ends para sa pagpi-print o "
+"pagpili\n"
+"ng mga option ng printer at para sa pangangasiwa ng printer.\n"
+"\n"
+"Kung kayo ay pipili na ngayon, at mamaya ay makita ninyo na hindi ninyo "
+"gusto\n"
+"ang inyong sistema ng pagpi-print maaari ninyo itong baguhin sa pamamagitan\n"
+"ng pagpapatakbo ng PrinterDrake mula sa Mandriva Control Center at\n"
+"pagki-click sa bihasa (\"expert\") na pindutan."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, fuzzy, c-format
+msgid "Expert"
+msgstr "Bihasang Mode"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"Titiktikan muna ng DrakX ang mga IDE device na mayroon sa inyong\n"
+"computer. Ito rin ay maghahanap ng isa o mahigit na mga PCI SCSI card\n"
+"sa inyong sistema. Kung may nakitang SCSI card, ii-install ng DrakX ang\n"
+"naaangkop na driver.\n"
+"\n"
+"Dahil sa hindi perpekto ang pagtiktik sa hardware, ang DrakX ay maaaring\n"
+"mabigo sa pagtitiktik sa inyong mga hard drive. Kung gayon, dapat ninyong\n"
+"sabihin ang inyong hardware ng mano-mano.\n"
+"\n"
+"Kung kinailangan na mano-mano ninyong sabihin ang inyong PCI SCSI adapter,\n"
+"tatanungin kayo ng DrakX kung gusto ninyong i-configure ang mga option\n"
+"para dito. Dapat hayaan ninyo ang DrakX na suriing mabuti ang hardware\n"
+"para sa mga option na specific sa card na kinakailangan para ma-initialize\n"
+"ang adapter. Kadalasan, ang DrakX ay makakalagpas sa hakbang na ito na\n"
+"walang kahit anong problema.\n"
+"\n"
+"Kung hindi nasuring mabuti ng DrakX ang mga option para automatic na\n"
+"mapasyahan kung aling mga parameter ang kinakailangan na ipasa sa inyong\n"
+"hardware, kakailanganin ninyong mano-manong i-configure ang driver."
+
+#: ../help.pm:789
+#, fuzzy, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": kung may sound card na natiktikan sa inyong sistema, ipapakita\n"
+"iyon dito. Kung inyong mapansin na ang sound card na ipinakita ay hindi\n"
+"talaga iyong mayroon sa inyong sistema, maaari ninyong i-click ang pindutan\n"
+"at pumili ng ibang driver."
+
+#: ../help.pm:794
+#, fuzzy, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Bilang balik-tanaw, ang DrakX ay maghaharap ng kabuuang inpormasyon na\n"
+"mayroon ito tungkol sa inyong sistema. Depende sa inyong naka-install na\n"
+"hardware, maaari kayong magkaroon ng ilan o lahat ng mga sumusunod na\n"
+"entry. Bawat entry ay binubuo ng \"configuration item\" na ico-configure, "
+"na\n"
+"sinusundan ng isang maikling kabuuan ng kasulukuyang configuration.\n"
+"I-click ang katapat na \"%s\" na pindutan para baguhin iyon.\n"
+"\n"
+" * \"%s\": suriin ang kasalukuyang configuration ng \"keyboard map\" at\n"
+"baguhin kung kinakailangan.\n"
+"\n"
+" * \"%s\": suriin ang kasalukuyang bansang pinili. Kung wala kayo sa "
+"bansang\n"
+"ito, i-click ang \"%s\" na pindutan at pumili ng iba. Kung ang inyong bansa "
+"ay\n"
+"wala sa unang listahan na ipinakita, i-click ang \"%s\" na pindutan upang\n"
+"makakuha ng kompletong talaan ng bansa.\n"
+"\n"
+" * \"%s\": Bilang, default, malalaman ng DrakX ang inyong \"time zone\" "
+"batay\n"
+"sa bansang pinili ninyo. Maaari ninyong i-click ang \"%s\" na pindutan dito\n"
+"kung hindi ito tama.\n"
+"\n"
+" * \"%s\": suriin ang kasalukuyang configuration ng mouse at i-click ang\n"
+"pindutan para baguhin ito kung kinakailangan.\n"
+"\n"
+" * \"%s\": ang pagki-click sa \"%s\" na pindutan ay magbubukas sa wizard\n"
+"na pang-configure ng printer (\"printer configuration wizard\"). "
+"Konsultahin\n"
+"ang katapat na kabanata ng ``Starter Guide'' para sa karagdagang\n"
+"inpormasyon sa kung paano mag-setup ng bagong printer. Ang interface\n"
+"na ihaharap doon ay kahawig nung ginamit sa pag-i-install.\n"
+"\n"
+" * \"%s\": kung may sound card na natiktikan sa inyong sistema, ipapakita\n"
+"iyon dito. Kung inyong mapansin na ang sound card na ipinakita ay hindi\n"
+"talaga iyong mayroon sa inyong sistema, maaari ninyong i-click ang pindutan\n"
+"at pumili ng ibang driver.\n"
+"\n"
+" * \"%s\": bilang default, kino-configure ng DrakX ang inyong \"graphical "
+"interface\"\n"
+"sa \"800x600\" o \"1024x768\" na resolution. Kung hindi iyon babagay sa "
+"inyong,\n"
+"i-click ang \"%s\" para i-configure ulit ang inyong \"graphical interface"
+"\".\n"
+"\n"
+" * \"%s\": kung may TV card na natiktikan sa inyong sistema, ipapakita iyon\n"
+"dito. Kung mayroon kayong TV card at hindi ito natiktikan, i-click ang \"%s"
+"\"\n"
+"para subukang i-configure ito ng mano-mano.\n"
+"\n"
+" * \"%s\": kung may ISDN card na natiktikan sa inyong sistema, ipapakita\n"
+"iyon dito. Maaari ninyong i-click ang \"%s\" para baguhin ang mga\n"
+"parameter na kasamahan ng card.\n"
+"\n"
+" * \"%s\": Kung nais ninyong i-configure ngayon ang inyong pagpasok sa \n"
+"Internet o \"local network\".\n"
+"\n"
+" * \"%s\": ang entry na ito ay hahayaan kayong i-define ulit ang level ng\n"
+"seguridad na nai-set sa nakaraang hakbang ().\n"
+"\n"
+" * \"%s\": kung plano ninyon i-connect ang inyong makina sa Internet,\n"
+"magandang kaisipan na protektahan ninyo ang inyong sarili laban sa mga\n"
+"pagpasok ng walang pahintulot sa pamamagitan ng pag-setup ng firewall.\n"
+"Konsultahin ang katapat na section ng ``Starter Guide'' para sa detalye\n"
+"tungkol sa mga setting ng firewall.\n"
+"\n"
+" * \"%s\": kung nais ninyong baguhin ang configuration ng inyong "
+"bootloader,\n"
+"i-click ang pindutan na iyon. Ito ay para sa mga bihasang gumagamit.\n"
+"\n"
+" * \"%s\": dito maaari ninyong piliing mabuti kung aling mga serbisyo o "
+"(\"service\")\n"
+"ang patatakbuhin sa inyong sistema. Kung plano niyong gamitin ang makinang\n"
+"ito bilang isang tagapagsilbi (\"server\") magandang balik-tanawin ang setup "
+"na\n"
+"ito."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN card"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Graphical Interface"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Piliin ang hard drive na inyong gustong burahin upang ma-install ang\n"
+"inyong bagong Mandriva Linux na partisyon. Mag-ingat, lahat ng data\n"
+"sa drive na ito ay mawawala at hindi na ito mababawi!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"I-click ang \"%s\" kung gusto ninyong tangalin lahat ng data at partisyon\n"
+"na mayroon sa hard drive na ito. Mag-ingat, pagkatapos ma-click ang\n"
+"\"%s\", hindi na ninyo mababawi ang kahit anong data at mga partisyon\n"
+"na mayroon sa hard drive na ito, kasama ang kahit anong data ng Windows.\n"
+"\n"
+"I-click ang \"%s\" para hindi ituloy ang operasyon na ito na walang "
+"mawawlang\n"
+"data at mga partisyon na mayroon sa hard drive na ito."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Kasunod ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Nakaraan"
+
diff --git a/perl-install/install/help/po/tr.po b/perl-install/install/help/po/tr.po
new file mode 100644
index 000000000..00d477eb9
--- /dev/null
+++ b/perl-install/install/help/po/tr.po
@@ -0,0 +1,1738 @@
+# translation of DrakX-tr.po to Turkish
+# Copyright (C) 2000,2003 Free Software Foundation, Inc.
+# Copyright (c) 2000 Mandriva
+# ############################################
+#
+# Ömer Fadıl USTA <omer_fad@hotmail.com> , 1999-2003.
+# Tuncay YENİAY <tuncayyeniay@mynet.com>,2002.
+# Nazmi Savga <nsavga@doruk.net.tr>,2001.
+# Durmuş Celep <durmusc_tr@yahoo.com>,2002.
+# Erçin EKER <erc.caldera@gmx.net>, 2003.
+#
+# #############################################
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-tr\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2004-09-15 13:35+0200\n"
+"Last-Translator: Ömer Fadıl USTA <omer_fad@hotmail.com>\n"
+"Language-Team: Turkish <tr@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Devam etmeden önce lisans koşullarını dikkatle okumalısınız. Lisans tüm\n"
+"Mandriva Linux dağıtımını kapsar, bu koşullarını tamamını kabul "
+"ediyorsanız,\n"
+"\"%s\" kutusunu işaretleyiniz aksi halde \"%s\" tuşuna tıklayarak\n"
+"makinenizi yeniden başlatabilirsiniz."
+
+#: ../help.pm:20
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux çok kullanıcılı bir sistemdir, yani her kullanıcının kendi\n"
+"tercihleri, kendi dosyaları, v.s. olabilir. Daha fazla bilgi edinmek için\n"
+"\"Kullanıcı Kılavuzu\"nu okuyunuz. Sistem Yöneticisi olan \"root\" dışındaki "
+"kullanıcılar kendi dosyaları ve yapılandırmaları dışında hiçbir\n"
+"şeyi değiştiremezler. Kendiniz için en az bir normal kullanıcı "
+"oluşturmalısınız.\n"
+"Bu hesabı sıradan işler için kullanacaksınız. Sisteminizi \"root\" olarak\n"
+"kullanmak çok pratik gibi görünse de aslında çok tehlikelidir. En küçük bir\n"
+"yanlışlık sisteminizin çalışmamasıyla sonuçlanabilir. Ama normal kullanıcı\n"
+"olarak bir sürü yanlış da yapsanız sadece kendi bilgilerinize zarar vermiş\n"
+"olursunuz, sisteminize zarar veremezsiniz.\n"
+"\n"
+"İl alan gerçek isminizi girmeniz içindir. Tabii ki sorunlu değildir, "
+"herhangi bir\n"
+"şey yazabilirsiniz. DrakX bu bölüme ilk girdiğiniz kelimeyi \"%s\" bölümüne\n"
+"kopyalayacak ki bu sisteme giriş için kullanılacak kullanıcı adıdır. "
+"İsterseniz\n"
+"kullanıcı adını değiştirebilirsiniz. Sonra buraya bir parola gireceksiniz. "
+"Bir\n"
+"normal kullanıcının parolası \"root\" parolası kadar önemli değildir.\n"
+"Fakat bu boş yada basit bir şifre kullanmak için bir gerekçe değildir,\n"
+"sonuç olarak kişisel dosyalarınızı tehlikeye atmış olursunuz.\n"
+"\n"
+"\"%s\"e tıklayarak ile kullanıcı için öntanımlı \"kabuk\"u "
+"değiştirebilirsiniz\n"
+"(öntanımlı olan bash'dir).\n"
+"\n"
+"Kullanıcı eklemeyi tamamladıktan sonra, sistem açıldıktan sonra otomatik\n"
+"giriş yapılacak kullanıcı sorulacaktır. Eğer bu konu ile ilgileniyorsanızı "
+"(ve\n"
+"yerel güvenliğe önem vermiyorsanız), istediğiniz kullanıcıyı ve pencere\n"
+"yöneticisini seçin ve \"%s\"e tıklayın. Eğer bu konu ilginizi çekmiyorsa\n"
+"\"%s\" seçimini kaldırın ve devam edin."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Bu özelliği kullanmak istiyor musunuz?"
+
+#: ../help.pm:57
+#, fuzzy, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Yukarıdakiler, sabit diskinizde bulunan Linux bölümleridir. Genel kullanım\n"
+"için sihirbazın sunduğu seçenekleri değiştirmeden bırakabilirsiniz.\n"
+"Seçenekleri değiştirirseniz, en azından bir kök dizini (\"/\") tanımlamak\n"
+"zorundasınız. Lütfen çok küçük bir bölüm seçmeyin, istediğiniz tüm\n"
+"uygulamaları kurabilmek için yeterli yer bulamayabilirsiniz. Verilerinizi\n"
+"ayrı bir bölümde saklamak isterseniz, ayrıca bir \"/home\" bölümü\n"
+"tanımlamanız gerekecektir. (Birden fazla Linux bölümü tanımlıysa bu işlem\n"
+"gerçekleşebilir.)\n"
+"\n"
+"\n"
+"Her bir bölüm şöyle listelenmiştir: \"İsim\", \"Kapasite\".\n"
+"\n"
+"\n"
+"\"İsim\" şöyle kodlanmıştır: \"sabit disk türü\", \"sabit disk harfi\"\n"
+"\"bölüm numarası\" (örneğin \"hda1\").\n"
+"\n"
+"\n"
+"\"Sabit disk türü\", diskiniz bir IDE sürücüsüyse \"hd\",\n"
+"bir SCSI sürücüsüyse \"sd\"'dir.\n"
+"\n"
+"\n"
+"\"Sabit disk harfi\" her zaman \"hd\" ya da \"sd\"'den sonra gelir. IDE\n"
+"sürücüleri için:\n"
+"\n"
+" * \"a\" birincil IDE denetleyicisindeki master sabit disk,\n"
+"\n"
+" * \"b\" birincil IDE denetleyicisindeki slave sabit disk,\n"
+"\n"
+" * \"c\" ikincil IDE denetleyicisindeki master sabit disk,\n"
+"\n"
+" * \"d\" ikincil IDE denetleyicisindeki slave sabit disk,\n"
+"\n"
+"\n"
+"SCSI sürücüleri için\n"
+" * \"a\" \"birincil sabit disk\",\n"
+" * \"b\" \"ikincil sabit disk\"\n"
+" * ... anlamına gelir."
+
+#: ../help.pm:88
+#, fuzzy, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linux kurulum CD'leri bir kaç CD'den oluşur. DrakX seçilen paketin\n"
+"hangi CD'de olduğunu bilir ve o CD'yi yerleştirmeniz için CD yuvasını açar\n"
+"ve size gerekli CD'yi yerleştirmeniz için uyarır."
+
+#: ../help.pm:95
+#, fuzzy, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Bundan sonra sisteminize hangi uygulamaları kuracağınızı belirteceksiniz.\n"
+"Mandriva Linux sisteminde kullanılabilecek binlerce paket vardır ve onları "
+"hep aklınızda tutamazsınız.\n"
+"\n"
+"CD'den kurulum yapıyorsanız önce elinizde hangi CD'lerin bulunduğunu\n"
+"belirmelisiniz (sadece uzman kipinde). CD isimlerine bakarak ilgili\n"
+"kutucukları işaretleyin.\n"
+"Bitirdiğinizde \"Tamam\" seçerek kuruluma devam ediniz.\n"
+"\n"
+"Paketler kullanım amaçlarına göre gruplanmış ve bu gruplar dört bölümde\n"
+"toplanmıştır: \n"
+" * \"İş istasyonu\": makinasını bir iş istasyonu olarak ya da evde "
+"kullanmayı\n"
+" tasarlayanlar için.\n"
+"\n"
+" * \"Geliştirme\": makinanızı program geliştirme amacıyla kullanmak\n"
+" istiyenler için.\n"
+"\n"
+" * \"Sunucu\": makinanızı bir sunucu olarak kullanmayı "
+"tasarlıyorsanız\n"
+" çok kullanılan hizmetlerden hangilerini sunacağınızı\n"
+" bu paketlerden seçerek belirleyebilirsiniz.\n"
+"\n"
+" * \"Grafik Ortam\": burada tercih ettiğiniz grafik ortamı seçeceksiniz.\n"
+" Bir grafik ortamlı iş istasyonu için en az bir grafik\n"
+" ortam belirlemelisiniz.\n"
+"\n"
+"Farenizi bir grup isminin üzerine götürdüğünüzde grup hakkında kısa bir\n"
+"açıklama göreceksiniz. Güncelleme değilde sıfırdan kurulum yapıyorsanız ve\n"
+"tüm grupların kurulmamasını seçmişseniz, en az yer kaplayan bir kurulum\n"
+"için size bazı seçenekler sunulacaktır:\n"
+"\n"
+" * \"X olsun\": En az paket kurulumuyla çalışan bir masaüstü kurar.\n"
+"\n"
+" * \"Temel bilgiler\": Linux sisteminizi çalıştırabilmek için sadece\n"
+" konsol için gereken en az sayıda belge kurulacaktır.\n"
+" Bu paketler 65Mb yer kaplar.\n"
+"\n"
+"Sistem üzerinde tam denetim sağlayabilen eski Linux kullanıcıları\n"
+"\"Tek tek paket seçimi\" kutucuğunu işaretleyerek kurulacak paketleri\n"
+"kendileri seçebilirler.\n"
+"\n"
+"\"Güncelleme\" kipinde kurulum başlattıysanız ve hiç bir yeni paketin\n"
+"kurulmamasını istiyorsanız tüm grupları seçilmemiş duruma getirebilirsiniz.\n"
+"Bu işlem mevcut sisteminizin onarımı için elverişlidir."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Güncelle"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Temel belgelerle birlikte"
+
+#: ../help.pm:149
+#, fuzzy, c-format
+msgid "Truly minimal install"
+msgstr "En ufak kurulum"
+
+#: ../help.pm:152
+#, fuzzy, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Son olarak, tek tek paket seçimini etkinleştirdiyseniz, paketleri gruplar\n"
+"ve alt gruplar şeklinde sıralanmış bir ağaçtan seçebilirsiniz. Ağacı\n"
+"tarayarak grup, alt grup ya da tek tek paket seçimleri yapabilirsiniz.\n"
+"\n"
+"Bir paketi seçtiğinizde sağ tarafta paket hakkında kısa bir açıklama "
+"görünür.\n"
+"Paket seçimini bitirdiğinizde \"Kur\" düğmesi ile kurulum işlemini\n"
+"başlatabilirsiniz. Kurulum için gereken süre donanım hızınıza ve seçtiğiniz\n"
+"paket sayısına bağlıdır. Kurulumun tahmini bitme süresi bir gösterge ile\n"
+"gösterilecektir. Bu arada koltuğunuza yaslanıp çayınızı ya da kahvenizi\n"
+"yudumlayabilirsiniz.\n"
+"\n"
+"<ÖNEMLİ> İster bilerek ister belli bir grubun parçası olarak, sunucu\n"
+"bölümünden seçtiğiniz hizmetleri gerçekten kullanıp kullanmak istemediğiniz\n"
+"ayrıca sorulacaktır. Mandriva Linux başlatıldığında kurulu olan hizmetlerin\n"
+"herbiri öntanımlı olarak başlatılır. Onlar Mandriva Linux dağıtıma girerken\n"
+"kılavuzlarından güvenli oldukları anlaşılarak seçilmiş bile olsalar,\n"
+"dağıtımdan sonra bir takım güvenlik açıkları keşfedilmiş olabilir.\n"
+"Bir hizmetin ne sunduğu hakkında bir fikriniz yoksa ya da neden kurmak\n"
+"gerektiğini bilmiyorsanız \"Hayır\", listelenen hizmetlerin kurulmasını\n"
+"ve otomatik olarak başlatılmasını istiyorsanız \"Evet\" düğmesine\n"
+"tıklayınız. </ÖNEMLİ>\n"
+"\n"
+"Kurulum programının bağımlı paketleri kendiliğinden saptayıp kurması ve\n"
+"uyarı diyaloğunun görünmemesi için basitçe \"Otomatik Bağımlılıklar\"\n"
+"seçeneğini etkinleştirebilirsiniz. Kurulumun başarıyla tamamlanması ve\n"
+"kurulan paketlerin sorunsuz çalışabilmesi için bu paketlerin bağımlı\n"
+"olduğu paketlerin de kurulması gerekir.\n"
+"\n"
+"Listenin altındaki küçük disket simgesi önceki kurulumda seçilen paketlerin\n"
+"kurulmasını sağlar. Bu simgeye tıkladığınızda önceki kurulumun sonunda\n"
+"oluşturulan bir disketin sürücüye takılması istenecektir. Bu disketin nasıl\n"
+"oluşturulacağını öğrenmek için kurulumun son adımının ikinci ipucuna bakınız."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Otomatik bağımlılıklar"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, fuzzy, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Şimdi, açılış sırasında otomatik olarak başlamasını istediğiniz hizmetleri\n"
+"seçebilirsiniz.\n"
+"\n"
+"Burada şu an ki kurulum sırasında kullanabileceğiniz tüm hizmetler\n"
+"listelenmiştir. Her birini dikkatle okuyun ve açılış sırasında başlamasını\n"
+"istemediğiniz hizmetleri seçilmemiş duruma getirin.\n"
+"\n"
+"Bir hizmet seçildiğinde o hizmetin ne sunduğunu belirten kısa bir açıklama\n"
+"verilecektir. Bir hizmetin ne sunduğu hakkında bir fikriniz\n"
+"yoksa ayarına dokunmadan olduğu gibi bırakmak en güvenli yöntemdir.\n"
+"\n"
+"Eğer makinanızı bir sunucu olarak kullanacaksanız bu adımda *dikkatli*\n"
+"olmalısınız:\n"
+"!!\n"
+"Muhtemelen kullanmak istemediğiniz hiçbir hizmeti başlatmak istemezsiniz.\n"
+"Bir sunucuda açık duruma getirilen hizmetlerin her birinin aslında bir\n"
+"güvenlik açığı olabileceğini lütfen unutmayınız.\n"
+"Genel olarak, sadece ihtiyacınız olan hizmetleri seçmeye dikkat ediniz.\n"
+"!!"
+
+#: ../help.pm:209
+#, fuzzy, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux zamanı GMT'ye (Greenwich Zamanı) göre saat farkını baz alarak\n"
+"ayarlar. Donanım saati ile sistem saati arsında fark olmamasını "
+"istiyorsanız,\n"
+"\"Donanım saatini GMT'ye göre ayarla\" seçeneğini seçilmemiş "
+"bırakabilirsiniz.\n"
+"Bu makinanızda Windows gibi başka bir işletim sistemini de kullanıyorsanız\n"
+"faydalıdır.\n"
+"\n"
+"Sistem saatinizin Internet'teki bir zaman sunucusundan otomatik olarak\n"
+"ayarlanmasını isterseniz \"Otomatik saat ayarı\" seçeneğini "
+"etkinleştiriniz.\n"
+"Listeden size en yakın sunucuyu seçebilirsiniz. Şüphesiz bu özelliği\n"
+"kullanabilmeniz için internet bağlantınızın olması gereklidir. Bu özellik\n"
+"ayrıca yerel ağınızdaki makinaların zamanlarını sizin makinanızdan\n"
+"ayarlamalarını sağlayacak bir zaman sunucusunu da kuracaktır."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Otomatik zaman senkronizyasyonu"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, fuzzy, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Son olarak açılış sırasında grafik arayüzle başlamak isteyip istemediğiniz\n"
+"sorulacaktır. Yapılandırmanızı denemeyi seçmemiş bile olsanız bu soru yine "
+"de\n"
+"sorulacaktır. Ekranınızı iyi yapılandıramamışsanız ya da makinanızın bir\n"
+"sunucu rolü üstlenmesini seçmişseniz bu soruya \"Hayır\" cevabı vermeniz\n"
+"önerilir."
+
+#: ../help.pm:319
+#, fuzzy, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Bu noktada, Mandriva Linux işletim sisteminizi sabit diskinizde\n"
+"nereye kuracağınızı seçmeniz gerekiyor. Diskiniz boşsa, ya da\n"
+"halihazırda bir işletim sistemi diskin tamamını kullanıyorsa\n"
+"diski bölümlendirmeniz gerekmektedir. Temel olarak, bir diski\n"
+"bölümlendirmek, Mandriva Linux sistemini kurabilmek için onu\n"
+"mantıksal olarak bölmek ve böylece boş alan oluşturmak anlamına\n"
+"gelir.\n"
+"\n"
+"Bölümlendirme işlemi gerellikle geri alınamaz ve zaten kurulu bir\n"
+"işletim sisteminiz var ise bilgi kaybına yol açabilir. Bu işlem, eğer\n"
+"tecrübesizseniz, korkutucu ve stresli bir iş olabilir. Mandriva Linux,\n"
+"bu işlemi oldukça kolaylaştıran bir sihirbaz sunmaktadır.Başlamadan\n"
+"önce lütfen aşağıdaki okumak için zaman ayrın.\n"
+"\n"
+"Sabit disk yapınıza bağlı olarak, birkaç seçenek mevcut: \n"
+"\n"
+" * \"%s\": bu seçenek boş sabit disk(ler)iniz üzerinde otomatik "
+"bölümlendirme\n"
+"gerçeklerştirir. Bu seçeneği seçerseniz konu hakkında soru sorulmayacak\n"
+"\n"
+" * \"%s\" sihirbaz sabit diskiniz üstünde bir ya da daha fazla Linux bölümü\n"
+"buldu. Eğer bunları kullanmak istiyorsanız bu seçeneği kullanın. Sonra ki\n"
+"adımda bu bölümler ile ilişkili bağlama noktaları seçmeniz istenecek.\n"
+"Bağlama noktaları öntanımlı olarak seçilir ve genellikle olduğu gibi "
+"bırakmak\n"
+"en iyisidir.\n"
+"\n"
+" * \"%s\": eğer sisteminizde Microsoft Windows kurulu ve tük disk "
+"kapasitesini\n"
+"kullanıyorsa Linux'un kullanabilmesi için yer açmanız gerekecektir. Bunun "
+"için,\n"
+"Microsoft Window disk bölümünü ve bilgileri silebilir (``Tüm Diski Sil''e "
+"bakın)\n"
+"yada Microsoft Windows FAT bölümünüzü yeniden boyutlandırabilirsiniz. Bu\n"
+"işlem sırasında eğer Windows bölümünüzü birleştirmiş ve biçimi FAT ise\n"
+"herhangi bir veri kaybı yaşamazsınız. Verilerinizi yedeklemeniz şiddetle "
+"önerilir.\n"
+"Eğer aynı bilgisayarda hem Mandriva Linux hem de Windows kullanamk\n"
+"istiyorsanız bu seçeneği seçmeniz önerilir.\n"
+"\n"
+" Bu seçeneği seçmeden önce unutmayın ki işlem tamamlandığında Microsoft\n"
+"Windows disk bölümünüz küçülmüş olacak. Yeni yazılımları yüklemek ya da "
+"kişisel\n"
+"verilerinizi saklamak için Microsoft Windows altında daha az boş alanınız "
+"olacak.\n"
+"\n"
+" * \"%s\": Sabit diskinizde bulunan tüm bilgileri silmek ve yeni bir "
+"Mandriva Linux\n"
+"kurulumu yapmak için bu seçeneği seçin. Lütfen bu seçeneği kullanırken "
+"dikkatli\n"
+"olun, çünkü onayladıktan sonra geri alma şansınız bulunmuyor.\n"
+"\n"
+" !! Eğer bu seçeneği seçerseniz sabit diskinizdeki tüm bilgi "
+"silinecektir. !!\n"
+"\n"
+" * \"%s\": Bu seçenek tüm sabit diski silecek ve disk bölümlerini baştan "
+"oluşturacak.\n"
+"Diskinizdeki tüm bilgiler silinecektir.\n"
+"\n"
+" !! Eğer bu seçeneği seçerseniz sabit diskinizdeki tüm bilgileri "
+"kaybedeceksiniz. !!\n"
+"\n"
+" * \"%s\": Sabit diskinizi kendiniz bölümlendirmek istiyorsanız bu seçeneği "
+"seçin.\n"
+"Dikkati olun -- oldukça güçlü bir seçenektir ama veri kaybetmek oldukça "
+"kolaydır.\n"
+"Bu seçenek sadece daha önce buna benzer bir işlem yapmışsanız ve biraz da "
+"olsa\n"
+"deneyiminiz var ise önerilmektedir. DiskDrake aracının kullanımı hakkında "
+"daha\n"
+"detaylı bilgiyi ``Başlangıç Kılavuzu'' içindeki ``Disk Bölümlerini Yönetme'' "
+"başlığı\n"
+"altında bulabilirsiniz."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Geçerli bölümlendirmeyi kullan"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Tüm disk silinsin"
+
+#: ../help.pm:380
+#, fuzzy, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Buraya kadar geldiyseniz kurulum tamamlanmış ve GNU/Linux sisteminizi\n"
+"kullanmaya hazırsınız demektir. \"TAMAM\" düğmesine tıkladığınızda "
+"sisteminiz\n"
+"yeniden başlatılacaktır. Hem Windows hem de GNU/Linux kullanımını "
+"seçtiyseniz\n"
+"makinanızın her açılışında bu sistemlerden biri için tercihinizi\n"
+"kullanabileceksiniz.\n"
+"\n"
+"\"Gelişmiş\" düğmesine (Uzman kipinde görünür) tıkladığınızda size iki\n"
+"seçenek sunulacaktır:\n"
+"\n"
+" * \"Otomatik kurulum disketi oluşturulsun\": yaptığınız kuruluma benzer "
+"bir\n"
+" kurulumu herhangi bir yardım gerekmeksizin otomatik olarak "
+"yapılabilmesini\n"
+" sağlayacak bir kurulum disketi oluşturabilirsiniz.\n"
+"\n"
+" Bu seçeneği kullanmaya karar verdiğinizde size iki seçenek sunulacaktır:\n"
+"\n"
+" * \"Etkileşimli\": bu sadece disk bölümlemesinin etkileşimli olduğu "
+"yarı\n"
+" otomatik kurulumdur.\n"
+"\n"
+" * \"Otomatik\": sabit diskin tamamen silinip yeniden yazılması\n"
+" ile kurulumu tamamen otomatik olarak gerçekleştirebilirsiniz.\n"
+"\n"
+" Bu seçenek aynı sistemi çok sayıda makinaya kurmak için çok\n"
+" kullanışlıdır. Web sitemizde ki \"Auto install\" bölümünde daha\n"
+" ayrıntılı bilgi edinebilirsiniz.\n"
+"\n"
+" * \"Paket seçim listesini kaydet\"(*): kurulum sırasında seçtiğiniz\n"
+" paketlerin listesi kaydedilir. Bir başka kurulum sırasında disketi\n"
+" sürücüye yerleştirdikten sonra [F1] tuşuna bastıktan sonra\n"
+" »linux defcfg=\"floppy\"« yazarak kurulumu yardım ekranına kadar "
+"ilerletin\n"
+"\n"
+" (*) Bu seçenek için FAT biçemli bir diskete ihtiyacınız olacak. Bu "
+"disketi\n"
+" GNU/Linux altında \"mformat a:\" komutu ile oluşturabilirsiniz."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Otomatik-kurulum disketi oluştur"
+
+#: ../help.pm:415
+#, fuzzy, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Yeni tanımlanmış her bölüm, kullanım için biçemlendirilmelidir.\n"
+" (Biçemlendirmek bir dosya sistemi oluşturmak anlamına gelir.)\n"
+"\n"
+"\n"
+"Şimdi, halihazırda bulunan bölümlerinizdeki verileri silmek için onları\n"
+"tekrar biçemlendirmek isteyebilirsiniz. Bunu istiyorsanız, biçemlendirmek\n"
+"istediğiniz bu bölümleri de ayrıca seçili duruma getirin.\n"
+"\n"
+"Eskiden kalma tüm bölümlerin biçemlendirilmesi gerekmediğini lütfen\n"
+"unutmayın. İşletim sistemi içerenleri (örneğin \"/\", \"/usr\" ya da \"/var"
+"\"\n"
+"gibi) biçemlendirmelisiniz, ama sadece verilerinizin bulunduğu bölümleri\n"
+"biçemlendirmeyebilirsiniz. (örneğin \"/home\".)\n"
+"\n"
+"Biçemlendireceğiniz bölümleri seçerken dikkatli olun, içlerindeki tüm "
+"veriler\n"
+"yok olacaktır ve biçemlendirildikten sonra geri dönülmesi mümkün değildir.\n"
+"\n"
+"Bölümleri biçemlendirmeye hazır olduğunuzda \"Tamam\"'a tıklayın.\n"
+"\n"
+"Mandriva Linux sisteminizi kurmak isteyeceğiniz başka bölümler de seçmek\n"
+"isterseniz \"İptal\"'e basın.\n"
+"\n"
+"\"Gelişmiş\" düğmesine tıkladıktan sonra isterseniz, sabit diskinizindeki\n"
+"disk bölümlerinde hatalı blok sınaması yapabilirsiniz."
+
+#: ../help.pm:437
+#, fuzzy, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Mandriva Linux kurulumunuz sırasında dağıtımdan sonra güncellenmiş bazı "
+"paketler, düzeltmeler ve çözümlenmiş güvenlik unsurlarının olup olmadığını "
+"internet bağlantınız üzerinden kontrol edip varsa indirip kurabilir. Çalışan "
+"bir internet bağlantınız varsa \"Evet\" seçebilir, yoksa \"Hayır\" seçerek "
+"paket güncelleme işlemini kurulum sonrasına bırakabilirsiniz.\n"
+"\n"
+"\"Evet\" seçtiğinizde güncellemelerin alınabileceği yerlerin bir listesi "
+"gösterilir. Size en yakın olanı seçtikten sonra, paket seçim ağacı görünür. "
+"Seçimi izleyebilir ve seçilen paketlerin indirilip kurulması için \"Kur\", "
+"çıkmak için \"İptal\" seçebilirsiniz."
+
+#: ../help.pm:450
+#, fuzzy, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Şimdi, makinanız için düşündüğünüz güvenlik seviyesini belirteceksiniz. "
+"Kural\n"
+"olarak makinanızda sakladığınız bilgilere bağlı olarak güvenlik seviyesini\n"
+"yükselmek gerekir. Güvenlik seviyesi yükseldikçe sunulan hizmetlerin sayısı\n"
+"düşecek ve sisteminizi kullanmak zorlaşacaktır. Bu seviyeler hakkında daha\n"
+"fazla bilgi edinmek için ``Başvuru Kılavuzu''ndaki MSEC bölümüne bakınız.\n"
+"\n"
+"Ne seçeceğiniz hakkında bir fikriniz yoksa öntanımlı seçeneklere "
+"dokunmayınız."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Güvenlik Yöneticisi"
+
+#: ../help.pm:464
+#, fuzzy, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Bu noktada, Mandriva Linux işletim sisteminizi sabit diskinizde nereye\n"
+"kuracağınızı seçmeniz gerekiyor. Bölümler önceki bir kurulumda ya da bir\n"
+"başka bölümlendirme aracıyla önceden tanımlanmışsa eski bölümlerinizi\n"
+"kullanabilirsiniz. Aksi takdirde, sabit disk bölümlerinin tanımlanması\n"
+"gerekir.\n"
+"\n"
+"Bölümleri oluşturmak için bir sabit disk seçmelisiniz. \"hda\"'ya\n"
+"tıklayarak ilk, \"hdb\"'ye tıklayarak ikinci IDE sürücüsünü, ya da\n"
+"\"sda\"'ya tıklayarak birinci SCSI sürücüsünü bölümlendirmek için\n"
+"seçebilirsiniz.\n"
+"\n"
+"Seçili sürücüyü bölümlendirmek için, aşağıdaki seçenekleri\n"
+"kullanabilirsiniz:\n"
+"\n"
+" * \"Tümünü temizle\": seçili sürücüdeki tüm bölümler silinecektir.\n"
+"\n"
+" * \"Otomatik bölümlendir\": sabit diskinizdeki boş alanda otomatik\n"
+" olarak ext2 ve takas bölümlerinin tanımlanmasını sağlayacaktır.\n"
+"\n"
+" * \"Daha\": Bu seçenekle aşağıdaki özellikleri de kullanabilirsiniz:\n"
+"\n"
+" * \"Diskete kaydet\": bölümlendirme tablonuzu diskete kaydetmek "
+"isterseniz\n"
+" bu seçeneği kullanın. İleride disk bölümlendirme tablosunu kurtarmak\n"
+" için bu disketi kullanabilirsiniz.\n"
+"\n"
+" * \"Disketten al\": önceki bir kurulumda bölümlendirme tablonuzu bir\n"
+" diskete kaydettiyseniz, bu seçenek ile onu tekrar kullanabilirsiniz.\n"
+"\n"
+" * \"Bölümlendirme tablosunu kurtar\": bölümlendirme tablosu hasar "
+"gördüyse\n"
+" bu seçeneği kullanarak onu kurtarabilirsiniz. Lütfen dikkatli olun ve\n"
+" başarısız olma ihtimali olduğunu hatırlayın.\n"
+"\n"
+" * \"Geri al\": bu seçeneği kullanarak, daha önce yaptığınız\n"
+" değişikliklerden vazgeçebilirsiniz.\n"
+"\n"
+" * \"Disket/CD sürücüsünü otomatik bağla\": bu seçeneği seçilmemiş duruma\n"
+" getirerek bu sürücülerin bağlanmasını sistem kullanıcılarının\n"
+" kendilerinin yapmasını sağlayabilirsiniz.\n"
+"\n"
+" * \"Sihirbaz\": sabit diskinizi bölümlendirme işlemi için sihirbazı\n"
+" kullanmak isterseniz, bu seçeneği kullanabilirsiniz. Bölümlendirme\n"
+" hakkında fazla bir bilgiye sahip değilseniz bu seçeneği kullanmanız\n"
+" önerilir.\n"
+"\n"
+" * \"Geri al\": bu seçeneği kullanarak, yaptığınız tüm değişiklikleri\n"
+" geri alıp eski bölümlendirme tablosunu yükleyebilirsiniz.\n"
+"\n"
+" * \"Normal/Uzman kipi değiştirme\": disk bölümlendirme sırasında "
+"daha az ya da daha fazla seçenek ve bilgi sunulur.\n"
+"\n"
+" * \"Bitti\": sabit diskinizi bölümlendirme işlemi bittiğinde\n"
+" değişikliklerinizin kaydedilebilmesi için bu seçeneği kullanın.\n"
+"\n"
+"Klavyeyi kullanarak herhangi bir seçeneğe gidebilirsiniz: Bölümler\n"
+"arasında gezinmek için [Sekme] ve [Yukarı/Aşağı] ok tuşlarını\n"
+"kullanabilirsiniz.\n"
+"\n"
+"Bir bölüm seçildiğinde, aşağıdaki tuşları kullanabilirsiniz:\n"
+"\n"
+" * yeni bir bölüm oluşturmak için (boş bir bölüm seçildiğinde)\n"
+" Ctrl-c;\n"
+"\n"
+" * bir bölümü silmek için Ctrl-d;\n"
+"\n"
+" * bağlama noktasını atamak için Ctrl-m\n"
+"\n"
+"Başka dosya sistemleri hakkında bilgi edinmek için \"Başvuru Kılavuzu"
+"\"ndaki\n"
+"ext2fs bölümünü okuyunuz.\n"
+"\n"
+"Bir PPC makina üzerine kurulum yapıyorsanız, yaboot önyükleyicisi "
+"tarafından\n"
+"kullanılmak üzere en az 1MB lık küçük bir HFS \"önyükleme\" bölümü "
+"oluşturmak\n"
+"isteyeceksiniz. Bu disk bölümünü biraz daha büyük, örneğin 50MB yaparsanız\n"
+"bir yedek çekirdeğin ve kurtarma açılışı gereksinimleri için ramdisk\n"
+"görüntüsünün saklanacağı kullanışlı bir alan elde edebilirsiniz."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Kaldırılabilir meyda otomatik-bağlanıyor"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Normal/Uzman kipleri arasında geçiş yap"
+
+#: ../help.pm:536
+#, fuzzy, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Sabit diskinizde birden fazla Windows bölümü bulundu. Yeni Mandriva Linux\n"
+"işletim sisteminizi kurmak için hangi bölümün boyutunu değiştirmek\n"
+"istiyorsunuz?\n"
+"\n"
+"\n"
+"Her bir bölüm şöyle listelenmiştir; \"Linux adı\", \"Windows adı\",\n"
+"\"Kapasite\".\n"
+"\n"
+"\"Linux adı\" şöyle kodlanır: \"sabit disk türü\", \"sabit disk harfi\",\n"
+"\"bölüm numarası\" (örneğin \"hda1\").\n"
+"\n"
+"\"Sabit disk türü\", diskiniz bir IDE sürücüsüyse \"hd\", bir SCSI\n"
+"sürücüsüyse \"sd\"'dir.\n"
+"\n"
+"\n"
+"\"Sabit disk harfi\" her zaman \"hd\" ya da \"sd\"'den sonra gelir. IDE\n"
+"sürücüleri için:\n"
+"\n"
+" * \"a\" \"birincil IDE denetleyicisindeki master sabit disk \",\n"
+"\n"
+" * \"b\" \"birincil IDE denetleyicisindeki slave sabit disk \",\n"
+"\n"
+" * \"c\" \"ikincil IDE denetleyicisindeki master sabit disk \",\n"
+"\n"
+" * \"d\" \"ikincil IDE denetleyicisindeki slave sabit disk \",\n"
+"\n"
+"\n"
+"SCSI sürücüleri için\n"
+" * \"a\" \"birincil sabit disk\",\n"
+" * \"b\" \"ikincil sabit disk\"\n"
+" * ... anlamına gelir.\n"
+"\n"
+"\"Windows adı\" ise diskinizin windows altındayken kullandığı sürücü\n"
+"harfidir.\n"
+"(Örneğin ilk disk ya da disk bölümünün ismi \"C:\"dir."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, fuzzy, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Normalde seçtiğiniz dile bağlı olarak DrakX, doğru klavyeyi seçecektir.\n"
+"Ancak dilinizle ilişkili olmayan bir klavye seçmek de isteyebilirsiniz.\n"
+"Örneğin Türkçe konuşan biri olmanıza rağmen Almanya'da ikamet ediyorsanız\n"
+"Almanca klavyeyi kullanmak isteyebileceğiniz gibi Türkçe Q ya da Türkçe F\n"
+"klavyelerden birini seçmek de isteyebilirsiniz. Bu durumda da bir\n"
+"adımdan geriye gidip listeden kullanmak istediğiniz klavyeyi\n"
+"seçebilirsiniz.\n"
+"\n"
+"\"Başka\" düğmesine tıklayarak desteklenen klavyelerin tam listesini\n"
+"görebilirsiniz."
+
+#: ../help.pm:612
+#, fuzzy, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Tercih ettiğiniz lisan dökümantasyon , kurulum ve genel sistemi "
+"etkileyecektir.\n"
+"İlk olarak bulunduğunuz bölgenin çoğrafi pozisyonunu seçiniz, Daha sonra\n"
+"konuşmakta olduğunuz dili seçiniz.\n"
+"\"%s\" tuşu diğer ek birçok dil daha seçmenize imkan tanıyacaktır. Bu imkan\n"
+"farklı bir lisanıda beraberinde kullanmanıza müsade edecektir. Bu ayarı\n"
+"\"%s\" gelişmiş menüsünden yapabilirsiniz.\n"
+"Not: Ek dil seçmekte bir dil ile sınırlı değilsiniz. \"%s\" kutusundan "
+"isetediğiniz\n"
+"kadar dil seçebilirsiniz. Bir dil seçimi beraberinde çeviriler , yazı "
+"tipleri , ve\n"
+"imla kontrolcüleri ve bunun gibi diğer uygulamalarıda getirecektir.\n"
+"Ayrıca \"%s\" kutusundan sistemi UTF-8 (unicode) kodlamasını kullanmak\n"
+"için zorlayabilirsiniz.\n"
+"Yüklediğiniz lisanlar arasında geçiş yapmak için root yetkisine sahip iken\n"
+"\"/usr/sbin/localedrake\" komutunu kullanabilirsiniz. Bu komut tüm\n"
+"sistemin veya sadece bir tek kullanıcının tüm dil ayarlarının \n"
+"değiştirilebilmesini sağlar. Bu komut normal bir kullanıcı tarafından "
+"kullanırsa\n"
+"sadece kendi kişisel ayarlarında değişiklik yapmış olur."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "İspanyol"
+
+#: ../help.pm:653
+#, fuzzy, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Genellikle DrakX farenizdeki tuş sayısınız bulmada sorun yaşamaz. Eğer,\n"
+"başarısız olursa farenizi iki tuşlu var sayacak ve üçüncü tuş taklidini\n"
+"etkinleştirecektir. İki tuşlu bir farede üçüncü tuşa ``basmak'' için sağ ve\n"
+"sol tuşa beraber bamalısınız. DrakX, farenizin PS/2 ya da USB "
+"bağlantısından\n"
+"hangisini kullandığını kendisi bulacaktır.\n"
+"\n"
+"Eğer değişik türden bir fare seçmek isterseniz, verilen listeden seçmeniz\n"
+"yeterli.\n"
+"\n"
+"Eğer öntanımlı fare dışında bir fare seçecek olursanız bir deneme ekranı\n"
+"belirecek. Fare yapılandırmasının doğru olduğundan ve düzgün çalıştığından\n"
+"emin olmak için düğmeleri ve tekerleği kullanın. Eğer fare düzgün "
+"çalışmıyorsa\n"
+"boşluk tuşuna yada [Return] tuşuna basarak fare seçimine dönebilirsiniz.\n"
+"\n"
+"Tekerlekli fareler genellikle doğru olarak algılanamamaktadır, bu nedenle\n"
+"farenizi listeden seçmeniz gerekebilir. Farenizin takılı olduğu kapı ile "
+"alakalı bir\n"
+"fare seçiniz. Farenizi seçtikten sonra \"%s\" tuşuna basın, ekranda bir fare "
+"resmi\n"
+"görüntülenecektir. Tekerin doğru çalıştığını anlamak için tekerleği "
+"döndürün.\n"
+"Ekrandaki fare tekerinin döndüğünü gördükten sonra fare düğmelerini deneyin "
+"ve\n"
+"fare işaretçisinin ekrandaki hareketini kontrol edin."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "Tekerlek Emülasyonlu"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr ""
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Lütfen doğru portu seçiniz. Örneğin, MS Windows'da ki \"COM1\"in karşılığı\n"
+"GNU/Linux'ta \"ttyS0\", \"COM2\"nin karşılığı \"ttyS1\"dir."
+
+#: ../help.pm:691
+#, fuzzy, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"GNU/Linux sisteminizin güvenliği için çok önemli karar noktasındasınız:\n"
+"\"root\" parolasını seçmelisiniz.\n"
+"\"root\" sistem yöneticisidir. Güncellemeler, kullanıcıların eklenmesi,\n"
+"sistemin yapılandırılması, v.s. için en yetkili kullanıcıdır. Kısaca,\n"
+"\"root\" herşeyi yapabilir! Bu nedenle tahmin edilmesi çok zor olan bir\n"
+"parola seçmelisiniz. - DrakX bu parolanın seçim kriterlerinde size yardımcı\n"
+"olarak bu zor kararı kolaylaştıracaktır. Göreceğiniz gibi bir parola\n"
+"vermemeyi de seçebilirsiniz. Fakat tek bir sebepten dolayı bu kararı\n"
+"almamanız sağlanmaya çalışılacaktır: GNU/Linux'un diğer işletim\n"
+"sistemlerinden farkı normal kullanıcılarının sisteme zarar verememelerinin\n"
+"sağlanmış olmasıdır. Sisteme zarar verebilecek tek kullanıcı \"root\"dur.\n"
+"Bu bakımdan sistemde \"root\" kullanıcısı olmak zorlaştırılmalıdır.\n"
+"\n"
+"Parolayı çok uzun ve çok karmaşık yapmayın ki hatırlaması zor olmasın.\n"
+"\n"
+"Parolayı yazarken ekranda görmeyeceksiniz. Bu bakımdan yazdığınızın\n"
+"doğruluğunu ancak yeniden yazarak anlayabilirsiniz. İkincisini yazarken\n"
+"hata yaparsanız DrakX sizi uyaracaktır. Ama hatayı ikisinde de yapar ve\n"
+"farkında olmazsanız bu \"yanlış\" parola ile sisteme giriş yapAMAmak\n"
+"zorunda kalabilirsiniz.\n"
+"\n"
+"Uzman kipte NIS ya da LDAP gibi bir kimlik kanıtlama sunucusuna bağlanıp\n"
+"bağlanmayacağınız sorulacaktır.\n"
+"\n"
+"Ağınızda kimlik sınaması için \"LDAP\" (ya da \"NIS\") protokolü\n"
+"kullanılıyorsa ilgili protokolü seçmelisiniz. Bu konuda bilginiz yoksa\n"
+"ağ yöneticinize danışın.\n"
+"\n"
+"Makinanız herhangi bir yönetimli ağa bağlanmayacaksa, kimlik kanıtlama için\n"
+"\"Yerel dosyalar\"ı seçeceksiniz."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "kimlikleme"
+
+#: ../help.pm:728
+#, fuzzy, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"LILO ve gub GNU/Linux önyükleyicileridir. Normal şartlar artında bu "
+"işlemler\n"
+"tamamen otomatik bir şekilde tamamlanır.\n"
+"\n"
+" * Eğer Bir Windows önyükleme sektörü bulundu ise, bu grub/LILO ile "
+"değiştirilir\n"
+"Bu aynı zamanda çoktan seçmeli önyükleme özelliğini getirir.\n"
+"\n"
+" * Eğer bir grub veya LILO önyükleme sektörü bulundu ise bunlar yeni şekli "
+"ile\n"
+"güncellenir.\n"
+"\n"
+" * Eğer bir tanımlama yapılamadı ise, DrakX size önyükleyiciyi nereye "
+"kuracağı\n"
+"sorusunu yönlendirir.\n"
+"\"Önyükleme aygıtı\": genelde öntanımlı ayarı değiştirmeye ihtiyacınız "
+"yoktur\n"
+"(\"Sürücünün ilk sektörü(MBR)\". Fakat tercihinize göre önyükleyiciyi "
+"ikincil\n"
+"sürücüye (\"/dev/hdb\") veya herhangi bir diskete yükleyebilirsiniz."
+
+#: ../help.pm:745
+#, fuzzy, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Burada kullanacağınız yazdırma sistemini seçeceksiniz. Diğer işletim\n"
+"sistemleri bir seçenek sunarken, Mandriva Linux size iki ayrı seçenek\n"
+"sunmaktadır. İki tip yazdırma sistemide özel yapılandırma türü için en "
+"iyidir.\n"
+"\n"
+" * \"pdq\" -- bir ağ yazıcısı kullanmıyorsanız, yazıcının kağıt yemesi\n"
+" durumunda tekrar yazdırma sorunu yaşamak istemiyorsanız, bir de \n"
+" makinanıza doğrudan bağlı bir yazıcınız varsa, 'kuyruğa değil doğrudan\n"
+" yazıcıya yolla' deme şansınız bulunuyor. 'Bu tam da benim aradığım "
+"özellik'\n"
+" diyorsanız \"PDQ\" seçeneğine tıklayınız.\n"
+" Bu seçenek eğer bu ilk linux deneyiminizse özellikle TAVSİYE edilir\n"
+"\n"
+" * \"%s\" - `` Unix Ortak Yazdırma Sistemi '' hem yerel yazıcınızı hem de "
+"ağ\n"
+" üzerindeki bir yazıcıyı kullanabilmenizi sağlayan, mevcut tüm \n"
+" sistemlerle uyumlu, eski \"lpd\" yazdırma sistemi için hem sunucu hem "
+"de \n"
+" istemci gibi davranabilen, basit ama mükemmel bir sistemdir. Çok "
+"çeşitli \n"
+" seçenekler sunmasına rağmen en az \"pdq\" kadar kolay ayarlanabilir. \n"
+" Bir \"lpd\" sunucusunu taklit etmek isterseniz \"cups-lpd\" artalan "
+"uygulamasını\n"
+" çalıştırabilirsiniz. Yazdırma ve yazıcı seçeneklerini belirlemek için\n"
+" bir grafik arayüze de sahiptir.\n"
+"\n"
+" Şimdi kararınızı verin. Kurulumdan sonra Mandriva Kontrol Merkezi'nden\n"
+" PrinterDrake uygulamasını çalıştırdıktan sonra uzman düğmesine\n"
+" tıklayarak seçimlerinizi değiştirebilirsiniz."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Uzman"
+
+#: ../help.pm:771
+#, fuzzy, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX ilk olarak sisteminizde mevcut olan IDE aygıtlarını algılayacaktır.\n"
+"Ayrıyeten PCI ve SCSI kartlarınıza ulaşmaya çalışacaktır.\n"
+"Eğer bir SCSI arabirimi bulursa otomatik olarak gerekli sürücü kuracaktır.\n"
+"\n"
+"Donanım algılama dört dörtlük bir sistem değildir, DrakX algılama sırasında\n"
+"başarısızlığa uğrayabilir.Eğer böyle bir durum olursa donanımınızı elle \n"
+"yapılandırmanız gerekecektir."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN kartı"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Grafiksel Arabirim"
+
+#: ../help.pm:861
+#, fuzzy, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Lütfen yeni Mandriva Linux disk bölümünüzü kurmak için silmek istediğiniz\n"
+"sabit diski seçin. Üzerindeki tüm verilerin yok olacağını ve geriye dönüşün\n"
+"mümkün olmayacağını unutmayın!"
+
+#: ../help.pm:866
+#, fuzzy, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Bu sabit disk üzerindeki tüm verinin ve bölümlerin silinmesini istiyorsanız\n"
+"\"%s\" tuşuna tıklayın. Dikkatli olun, \"%s\" tuşuna tıkladıktan\n"
+"sonra bu diskte bulunan tüm bölümlerinizi ve verilerinizi kaybedeceksiniz,\n"
+"bunlara Windows verileriniz dahildir.\n"
+"\n"
+"Sabit diskinizdeki hiçbir veriyi ya da bölümü silmeden bu işlemden\n"
+"vazgeçmek istiyorsanız lütfen \"%s\" tuşuna tıklayın."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Sonraki ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Önceki"
+
diff --git a/perl-install/install/help/po/uk.po b/perl-install/install/help/po/uk.po
new file mode 100644
index 000000000..b12515d03
--- /dev/null
+++ b/perl-install/install/help/po/uk.po
@@ -0,0 +1,1942 @@
+# translation of DrakX-uk.po to ukrainian
+# translation of DrakX.po to ukrainian
+# $Id: uk.po 26602 2006-04-22 07:43:48Z fwang $
+# Copyright (C) 2000,2003, 2004, 2005 Free Software Foundation, Inc.
+# Dmytro Kovalov <kov@tokyo.email.ne.jp>, 2000.
+# Taras Boychuk <btr1@torba.com>, 2003, 2004.
+# Taras Boychuk <btr1@mail.ru>, 2004, 2003.
+# Taras Boychuk <btr1@ukrpost.net>, 2004, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-uk\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-03-01 01:29+0200\n"
+"Last-Translator: Taras Boychuk <btr1@ukrpost.net>\n"
+"Language-Team: ukrainian <uk@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Перш, ніж продовжувати, прочитайте уважно умови ліцензії. Вона\n"
+"стосується всього дистрибутиву Мандріва лінакс. Якщо Ви\n"
+"погоджуєтесь з умовами ліцензії, помітьте \"%s\". Якщо ні,\n"
+"то натисніть \"%s\", щоб перезавантажити комп'ютер."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux - багатокористувацька система, це означає, що кожен з\n"
+"користувачів може мати свої власні установки, власні файли, тощо. Щоб\n"
+"більше дізнатися про це, Ви можете прочитати Підручник користувача з\n"
+"системи. Але на відміну від користувача Root, який є адміністратором\n"
+"системи, користувачі, яких Ви будете створювати на цьому кроці, не\n"
+"мають права змінювати нічого в системі, крім своїх власних файлів і\n"
+"власної конфігурації. Ви маєте створити рахунок для хоча б одного\n"
+"єдиного користувача - для самого себе. Ви будете користуватися цим\n"
+"рахунком для того, щоб виконувати щоденні задачі. І хоча це і дуже\n"
+"зручно реєструватись в системі як Root, але одночасно це і дуже\n"
+"небезпечно! Найменша помилка може призвести до того, що система буде\n"
+"неробочою. Якщо Ви помилитесь як звичайний користувач, Ви можете,\n"
+"звичайно, втратити деякі свої дані, але не всю систему.\n"
+"\n"
+"Перше поле запитує Ваше справжнє ім'я. Звичайно ж, воно не обов'язкове,\n"
+"Ви можете надрукувати все, що завгодно. DrakX візьме перше слово з цього\n"
+"поля і скопіює його в поле \"%s\", яке є ім'ям користувача, під яким "
+"користувач\n"
+"буде реєструватись у системі. Якщо захочете, Ви можете змінити це ім'я. \n"
+"Потім Вам потрібно ввести пароль. З міркувань безпеки системи пароль\n"
+"звичайного (не root) користувача не є таким критичним, як пароль \n"
+"адміністратора, але все одно немає причин для того, щоб нехтувати ним,\n"
+"залишаючи його порожнім або надто простим: врешті-решт, це загрожує\n"
+"Вашим власним файлам. \n"
+"\n"
+"Після того, як Ви натиснете кнопку \"%s\", Ви можете додати ще багато \n"
+"інших користувачів. Додайте користувача для кожного з Ваших друзів:\n"
+"для тата й сестри, наприклад. Після того, як Ви закінчили додавати\n"
+"користувачів, натисніть \"%s\".\n"
+"\n"
+"Натиснувши на кнопку \"%s\", Ви зможете змінити типову командну оболонку\n"
+"для кожного користувача (типова оболонка - bash). \n"
+"\n"
+"Коли Ви закінчите додавати користувачів, Вам буде запропоновано вибрати\n"
+"користувача, який буде автоматично реєструватися в системі при стартуванні\n"
+"комп'ютера. Якщо така можливість Вас цікавить (і не надто турбує про\n"
+"локальну безпеку), виберіть користувача і менеджер вікон, тоді натисніть "
+"на \n"
+"\"%s\". Якщо Вас така можливість не цікавить, відмініть вибір \"%s\"."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Ви хочете використовувати цю можливість?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Тут перелічені вже існуючі розділи, знайдені на Вашому твердому\n"
+"диску. Ви можете залишити вибір, зроблений Помічником, він підходить\n"
+"для більшості випадків встановлення. Якщо Ви робите якісь зміни, то "
+"потрібно\n"
+"як мінімум створити кореневу файлову систему (/). Не виділяйте\n"
+"для цього занадто малий розділ, бо інакше Ви не зможете встановити\n"
+"всі потрібні Вам програми. Якщо Ви бажаєте зберігати всі свої дані в\n"
+"окремому розділі, потрібно буде також створити розділ \"/home\" (тільки у\n"
+"випадку, якщо Ви маєте більше одного розділа для Лінакса). \n"
+"\n"
+"Кожен розділ показано в такому вигляді: \"Назва\", \"Розмір\".\n"
+"\n"
+"Назва розшифровується так: \"тип твердого диску\", \"номер твердого\n"
+"диску\", \"номер розділу на диску\", (наприклад: \"hda1\").\n"
+"\n"
+"\"Тип твердого диску\" - це \"hd\", якщо Ви маєте диск типу IDE, і \"sd\",\n"
+"якщо Ви маєте твердий диск типу SCSI.\n"
+"\n"
+"\"Номер твердого диску\" - це завжди літера після \"hd\" чи \"sd\". Для\n"
+"дисків типу IDE це:\n"
+"\n"
+" * \"a\" - головний диск (master) на першому контролері IDE,\n"
+"\n"
+" * \"b\" - вторинний (slave) диск на першому контролері IDE,\n"
+"\n"
+" * \"c\" - головний диск на другому контролері IDE,\n"
+"\n"
+" * \"d\" - вторинний диск на другому контролері IDE.\n"
+"\n"
+"Для SCSI дисків \"a\" означає \"головний диск\", \"b\" - другорядний диск, "
+"і\n"
+"т.д. ..."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Дистрибутив Мандріва лінакс розміщений на кількох компакт-дисках.\n"
+"Якщо вибраний пакунок знаходиться на іншому диску, DrakX викине \n"
+"поточний компакт-диск і попросить вставити потрібний. Якщо у вас немає\n"
+"потрібного диску під руками, просто натисніть \"%s\", пакунок не буде\n"
+"встановлено."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Тепер час вибрати, які програми Ви хочете встановити в своїй\n"
+"системі. Мандріва лінакс має тисячі програмних пакунків, і щоб спростити\n"
+"керування ними, пакунки розміщено в групи подібних програм.\n"
+"\n"
+"Пакунки розсортовано в групи відповідно до способу використання Вашої\n"
+"машини. Мандріва Лінакс має чотири попередньо налаштовані типи\n"
+"встановлення. Ви можете комбінувати і підбирати програми з різних\n"
+"груп, і встановлення типу \"Робоча станція\"' може мати програми із групи\n"
+"пакунків \"Розробник\".\n"
+"\n"
+" * \"%s\": якщо Ви збираєтесь використовувати свою машину як робочу\n"
+"станцію, виберіть одну чи більше програм з цієї групи.\n"
+"\n"
+" * \"%s\": якщо Ви збираєтесь використовувати цю машину для\n"
+"програмування, виберіть відповідні пакунки з цієї групи. Спеціальна група\n"
+"\"СБЛ\" налаштує систему таким чином, що вона міститиме якнайповнішу\n"
+"специфікацію Стандартної бази Лінакса.\n"
+"\n"
+" При виборі групи \"СБЛ\" встановиться ядро серії \"2.4\", на відміну від\n"
+"\"2.6\", яке встановлюється типово. Ця зроблено для 100%% впевненості у\n"
+"сумісності з \"СБЛ\". Проте, якщо Ви не виберете групу \"СБЛ\", всеодно\n"
+"отримаєте систему майже 100%%-сумісну з \"СБЛ\".\n"
+"\n"
+" * \"%s\": якщо машина призначається для використання в якості\n"
+"сервера, виберіть додаткові сервіси, які Ви хочете встановити на своїй\n"
+"машині.\n"
+"\n"
+" * \"%s\": тут Ви можете вибрати графічне середовище собі до вподоби.\n"
+"Виберіть хоча б одне, якщо Ви хочете мати графічний інтерфейс.\n"
+"\n"
+"При пересуванні курсора над назвою групи буде висвічуватися текст із\n"
+"коротким поясненням про групу.\n"
+"\n"
+"Ви можете помітити \"%s\", що може використовуватися при добрих\n"
+"знаннях пакунків, або якщо Ви хочете мати повний контроль над тим,\n"
+"що встановлюєте.\n"
+"\n"
+"Якщо Ви почали встановлення в режимі \"%s\", можете зняти вибір усіх\n"
+"груп і не встановлювати жодних нових пакунків. Це можна\n"
+"використовувати при відновленні або поновленні системи.\n"
+"\n"
+"Якщо Ви зняли вибір усіх груп під час підготовки звичайного\n"
+"встановлення (на відміну від поновлення), появиться діалогове\n"
+"вікно з різними параметрами для мінімального встановлення:\n"
+"\n"
+" * \"%s\":встановити найменшу можливу кількість пакунків, щоб мати\n"
+"працюючу графічну стільницю.\n"
+"\n"
+" * \"%s\": встановлює основну систему плюс основні інструменти і їх\n"
+"документацію. Цей спосіб використовується для встановлення сервера.\n"
+"\n"
+" * \"%s\": встановить абсолютно найменшу кількість пакунків, необхідних,\n"
+"щоб отримати працюючу систему Лінакс. При цьому встановленні Ви\n"
+"будете мати тільки інтерфейс командного рядка. Загальний розмір цього\n"
+"встановлення становить біля 65 мегабайтів."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Поновлення"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Із загальною документацією"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Насправді мінімальне встановлення"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Якщо Ви вказали програмі встановлення, що хочете мати індивідуальний\n"
+"вибір пакунків, Вам буде показано повне дерево пакунків, зібраних за\n"
+"групами і підгрупами. Переглядаючи дерево, Ви зможете вибрати повні\n"
+"групи, підгрупи та окремі пакунки.\n"
+"\n"
+"Кожного разу, коли Ви вибираєте пакунок в дереві, справа з'являється\n"
+"підказка про призначення пакунка.\n"
+"\n"
+"!! Якщо було вибрано серверний пакунок, чи то шляхом спеціального\n"
+"вибору індивідуального пакунка, чи він є складовою частиною групи\n"
+"пакунків, Вам буде задане запитання, чи Ви справді бажаєте встановити\n"
+"ці сервери. В Мандріва лінакс всі встановлені сервери автоматично\n"
+"запускаються при завантаженні системи. Навіть, якщо на час придбання\n"
+"системи не було відомо жодних проблем з безпекою даних серверів,\n"
+"можливо, що після встановлення системи такі проблеми буде виявлено.\n"
+"Якщо Ви не знаєте призначення конкретного сервера або з якою метою\n"
+"його встановлено, натисніть \"%s\". Якщо Ви натиснете \"%s\", буде\n"
+"встановлено перелічені сервери і вони будуть стартувати автоматично під\n"
+"час завантаження !!\n"
+"\n"
+"Параметр \"%s\" використовується, щоб заборонити діалог попередження,\n"
+"який появляється, як тільки програма встановлення автоматично вибирає\n"
+"пакунки для задоволення залежностей. Деякі пакунки мають відношення\n"
+"до інших так, що встановлення пакунка вимагає, щоб інші програми також були\n"
+"встановлені. Програма встановлення може визначити, які пакунки необхідні\n"
+"для задоволення залежностей, щоб успішно завершити встановлення.\n"
+"\n"
+"Маленька піктограма дискети внизу списку дозволяє завантажити з дискети\n"
+"список, створений при попередньому встановленні. Це зручно використовувати,\n"
+"якщо є певна кількість машин, що мають бути сконфігуровані однаково.\n"
+"Після натискання цієї кнопки, система попросить Вас вставити попередньо\n"
+"створену дискету в кінці іншого встановлення. Перегляньте другу пораду\n"
+"останнього кроку про те, як створити таку дискету."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Автоматичні залежності"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": натиснення кнопки \"%s\" викликає Помічника налаштування\n"
+"друкарки. Зверніться до відповідного розділу \"Starter Guide\" для\n"
+"додаткової інформації про встановлення нової друкарки. Показаний\n"
+"там інтерфейс подібний до того, що використовується при встановленні."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Цей діалог використовується, щоб вибрати, які сервіси будуть запускатися\n"
+"автоматично при старті системи. \n"
+"\n"
+"DrakX надасть список всіх служб, можливих при цьому встановленні.\n"
+"Перегляньте уважно ці служби і відмініть вибір тих, які не повинні\n"
+"запускатися при старті системи.\n"
+"\n"
+"При виборі служби появляється короткий текст з поясненням про неї.\n"
+"Проте, якщо Ви не впевнені, чи потрібно використовувати якусь службу,\n"
+"залишіть запропонований вибір.\n"
+"\n"
+"!! Будьте особливо уважними, якщо Ви збираєтесь використовувати цю\n"
+"систему як сервер: можливо, не потрібно стартувати служби, які Вам\n"
+"не потрібні. Пам'ятайте, будь ласка, що деякі увімкнені служби можуть\n"
+"бути небезпечними на сервері. Одним словом, вибирайте тільки ті служби,\n"
+"які Вам дійсно необхідні. !!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux оперує часом по GMT (середній час по Ґрінвічу) і переводить\n"
+"його в місцевий час відповідно до часового поясу, який Ви вказали.\n"
+"Якщо годинник на Вашій материнській платі встановлено в локальний\n"
+"час, Ви можете відмінити \"%s\", що дасть змогу GNU/Linux знати, що\n"
+"системний годинник і апаратний годинник встановлені на один часовий\n"
+"пояс. Це використовується, коли машина також може завантажуватися\n"
+"в іншу операційну систему.\n"
+"\n"
+"Параметр \"%s\" автоматично наводить годинник шляхом під'єднання до\n"
+"віддаленого серверу часу в Інтернеті. Щоб ця можливість працювала, Ви\n"
+"повинні мати працююче з'єднання з Інтернетом. Найкраще вибрати сервер\n"
+"часу, розташований біля Вас. Цей параметр встановлює сервер часу, який\n"
+"також може використовуватися іншими машинами у Вашій місцевій мережі."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Автоматична синхронізація часу"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Графічна карта\n"
+"\n"
+" Програма встановлення в нормальному режимі автоматично знаходить\n"
+"і налаштовує графічну карту, встановлену на Вашій машині. Якщо цього не\n"
+"відбувається, Ви можете вибрати із списку карту, яку Ви встановили.\n"
+"\n"
+" У випадку, якщо Ваша карта підтримує різні сервери з або без\n"
+"3D-прискорення, Вам буде надана можливість вибрати сервер, який найбільше\n"
+"Вам підходить."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (для системи X Window) є серцем графічного інтерфейсу GNU/Linux,\n"
+"від якого залежать всі графічні середовища (KDE, GNOME, AfterStep,\n"
+"WindowMaker, і т.і.), пов'язані з Мандріва лінакс.\n"
+"\n"
+"Вам буде представлено список різних параметрів для налаштування,\n"
+"щоб отримати оптимальний графічний дисплей.\n"
+"\n"
+"Графічна карта\n"
+"\n"
+" Програма встановлення автоматично визначає і налаштовує графічну\n"
+"карту, встановлену в машину. Якщо вона визначена неправильно, Ви можете\n"
+"вибрати із списку карту, яка дійсно встановлена.\n"
+"\n"
+" У випадку, якщо Ваша карта підтримує різні сервери з або без 3D\n"
+"прискоренням, буде запропоновано вибрати сервер, який Вам найбільше\n"
+"підходить.\n"
+"\n"
+"\n"
+"\n"
+"Монітор\n"
+"\n"
+" Програма встановлення автоматично визначає і налаштовує монітор,\n"
+"під'єднаний до Вашої машини. Якщо це зроблено неправильно, Ви можете\n"
+"вибрати із списку монітор, який дійсно під'єднано до Вашого комп'ютера.\n"
+"\n"
+"\n"
+"\n"
+"Роздільна здатність\n"
+"\n"
+" Тут Ви можете вибрати роздільну здатність і кількість кольорів, які\n"
+"підтримує Ваше обладнання. Підберіть величини, які найбільше Вас\n"
+"влаштовують (Ви матимите змогу їх змінити пізніше). Зразок вибраного\n"
+"налаштування буде показано на моніторі.\n"
+"\n"
+"\n"
+"\n"
+"Тест\n"
+"\n"
+" В залежності від обладнання цього пункту може не бути.\n"
+"\n"
+" Система спробує відкрити графічний екран з вибраною роздільністю.\n"
+"Якщо Ви зможете побачити повідомлення під час тесту і відповісте \"%s\",\n"
+"DrakX перейде до наступного кроку. Якщо Ви не зможете бачити\n"
+"повідомлення, це означатиме, що певна частина автоматично визначеної\n"
+"конфігурації неправильна, тест автоматично завершиться через 12\n"
+"секунд і Ви повернетесь назад в меню. Змінюйте налаштування, поки\n"
+"не отримаєте коректний графічний дисплей.\n"
+"\n"
+"\n"
+"\n"
+"Параметри\n"
+"\n"
+" Тут Ви можете вибрати, чи хочете Ви, щоб Ваша машина автоматично\n"
+"перемикалася в графічний інтерфейс при завантаженні. Зрозуміло, що\n"
+"Ви захочете вибрати \"%s\", якщо Ваша машина є сервером, або якщо Ви\n"
+"не змогли успішно налаштувати дисплей."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Монітор\n"
+"\n"
+" Програма встановлення звичайно автоматично виявляє і налаштовує монітор,\n"
+"під'єднаний до Вашої машини. Якщо вона це зробила неправильно, Ви можете\n"
+"вибрати правильний монітор з цього списку."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Роздільна здатність\n"
+"\n"
+" Тут Ви можете вибрати роздільну здатність і глибину кольору.\n"
+"Виберіть величини, які Вас найбільше влаштовують (Ви зможете\n"
+"їх змінити після встановлення). Зразок вибраного налаштування\n"
+"буде показано на моніторі."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"У випадку, якщо Ваша карта підтримує різні сервери, з або без 3D\n"
+"прискоренням, Вам буде запропоновано вибрати сервер, який Вам\n"
+"найбільше підходить."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Параметри\n"
+"\n"
+" Тут можна вказати, чи хочете Ви, щоб графічний інтерфейс вмикався\n"
+"автоматично при завантаженні системи. Вам потрібно вибрати \"%s\", якщо\n"
+"Ваша машина буде працювати сервером, або якщо Ви не змогли успішно\n"
+"налаштувати дисплей."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Тепер потрібно вирішити, де саме Ви б хотіли встановити систему\n"
+"Мандріва лінакс на твердому диску. Якщо твердий диск порожній, або\n"
+"якщо існуюча операційна система використовує весь простір, Вам\n"
+"потрібно буде перерозподілити диск. Фактично перерозподіл твердого\n"
+"диску полягає в логічному його розділенні, щоб створити місце для\n"
+"встановлення Мандріва Лінакса.\n"
+"\n"
+"Через те, що процес перерозбиття твердого диску звичайно є\n"
+"незворотнім і може призвести до втрати даних, якщо іншу операційну\n"
+"систему вже було встановлено, ця операція може бути відлякуючою\n"
+"і стресовою, якщо Ви є недосвідченим користувачем. На щастя, DrakX\n"
+"має помічника, який спрощує цей процес. Перед продовженням цього\n"
+"кроку прочитайте до кінця цього розділу і, що головне, приділіть трохи "
+"часу.\n"
+"\n"
+"В залежності від конфігурації Вашого твердого диску можливі кілька \n"
+"варіантів продовження:\n"
+"\n"
+" * \"%s\". Цей режим виконує автоматичне розбиття на розділи Вашого\n"
+"порожнього диску (дисків). Якщо Ви вибрали цю команду, інших\n"
+"запитань до Вас вже не буде.\n"
+"\n"
+" * \"%s\". Помічник виявив один або більше розділів Лінакс на Вашому\n"
+"твердому диску. Якщо Ви хочете використати їх, виберіть цей режим.\n"
+"Тоді Вам буде запропоновано вказати відповідні до кожного розділу точки\n"
+"монтування. Попередні точки монтування будуть показані типово і у\n"
+"більшості випадків залишити їх без змін буде прийнятним варіантом.\n"
+"\n"
+" * \"%s\". Якщо на Вашому твердому диску встановлено Microsoft Windows\n"
+"і він займає весь простір на ньому, Вам потрібно буде створити вільне\n"
+"місце для Лінакса. Щоб зробити це, Ви можете стерти всі розділи Microsoft\n"
+"Windows і дані (дивись команду \"Стерти весь диск\"), або змінити розмір\n"
+"розділу Microsoft Windows FAT або NTFS. Зміна розміру буде здійснена\n"
+"без втрати будь яких даних, які знаходяться на попередньо\n"
+"дефрагментованому розділі Windows. Дуже рекомендується зробити\n"
+"резервну копію Ваших даних. Використання цього режиму\n"
+"рекомендується, якщо Ви хочете використовувати Мандріва Лінакс \n"
+"і Майкрософт Віндовс на одному комп'ютері.\n"
+"\n"
+" Перед вибором цього режиму зрозумійте, що після виконання цієї\n"
+"процедури розмір розділу Microsoft Windows стане меншим, ніж до\n"
+"цього. Ви будете мати менше вільного місця у Microsoft Windows на\n"
+"зберігання даних і встановлення нових програм.\n"
+"\n"
+" * \"%s\". Якщо Ви хочете стерти всі дані і всі розділи, які є на твердому\n"
+"диску і замінити їх новою системою Мандріва Лінакс,\n"
+"виберіть цей режим. Будьте уважні, бо підтвердивши цей\n"
+"вибір, Ви вже не зможете повернутись назад.\n"
+"\n"
+" !! Якщо Ви виберете цей режим, всі дані на твердому диску будуть "
+"видалені. !!\n"
+"\n"
+" * \"%s\". Це просто зітре повністю весь диск і почне новий\n"
+"поділ на розділи. Всі дані на диску буде втрачено.\n"
+"\n"
+"!! Якщо Ви виберете цей режим, всі дані на диску будуть втрачені. !!\n"
+"\n"
+" * \"%s\". Виберіть цей режим, якщо Ви хочете вручну перерозподілити\n"
+"простір на Вашому твердому диску. Однак будьте обережними, це --\n"
+"потужний, але дуже небезпечний вибір, Ви можете дуже легко втратити\n"
+"всі дані. Тому цей режим насправді рекомендується тоді, якщо Ви вже\n"
+"щось подібне робили або маєте певний досвід. Для детальнішої інформації,\n"
+"як використовувати інструмент DiskDrake, звертайтеся до розділу\n"
+"\"Managing Your Partitions\" в \"Starter Guide\"."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Використовувати існуючий розділ"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Стерти весь диск"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Ось і все. Встановлення завершене і Ваша система GNU/Linux готова\n"
+"до використання. Просто натисніть \"%s\" для перезавантаження.\n"
+"Не забудьте вийняти носії (КД або дискету). Перше, що Ви побачите\n"
+"після завершення системою тестів обладнання, буде меню\n"
+"завантажувача, яке запропонує Вам вибір операційної системи\n"
+"для запуску.\n"
+"\n"
+"Кнопка \"%s\"покаже дві інші кнопки:\n"
+"\n"
+" * \"%s\": дозволяє створити дискету для встановлення, яка автоматично,\n"
+"без допомоги оператора виконає все встановлення, подібне до того, яке\n"
+"Ви щойно зробили.\n"
+"\n"
+" Зауважте, що після натиснення на кнопку будуть можливі два різні\n"
+"параметри:\n"
+"\n"
+" * \"%s\". Це частково автоматизоване встановлення. В режимі\n"
+"діалогу відбувається тільки етап розбиття на розділи.\n"
+"\n"
+" * \"%s\". Повністю автоматизоване встановлення: твердий диск\n"
+"повністю перезаписується, всі дані втрачаються.\n"
+"\n"
+" Цей параметр є дуже зручним при встановленні на багато подібних\n"
+"машин. Дивіться розділ Auto install на нашому веб-сайті для детальної\n"
+"інформації.\n"
+"\n"
+" * \"%s\"(*): зберігає список пакунків, вибраних при цьому встановленні.\n"
+"Щоб використати цей вибір при іншому встановленні, вставте дискету і\n"
+"запустіть встановлення. При підказці натисніть клавішу [F1] і введіть\n"
+">>linux defcfg=\"floppy\" << і натисніть [Enter].\n"
+"\n"
+"(*) Вам потрібно мати дискету у FAT-форматі. Щоб створити таку в\n"
+"GNU/Linux, введіть \"mformat a:\", або \"fdformat /dev/fd0\", а після цього\n"
+"\"mkfs.vfat /dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Створити дискету для автоматичного встановлення"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Якщо Ви вирішили використовувати деякі з існуючих розділів\n"
+"GNU/Linux, можливо, захочете переформатувати деякі з них\n"
+"для того, щоб стерти дані, які на них записані. Якщо Ви\n"
+"хочете це зробити, виберіть також розділи, які хочете\n"
+"відформатувати.\n"
+"\n"
+"Зауважте, однак, що не обов'язково форматувати всі розділи, які\n"
+"існували раніше. Ви повинні відформатувати розділи, які містять\n"
+"операційну систему (такі, як \"/\", \"/usr\" чи \"/var\"), але не мусите\n"
+"форматувати ті розділи, які містять дані, які Ви б хотіли зберегти\n"
+"(типово це розділ \"/home\").\n"
+"\n"
+"Будьте уважні з вибором розділів. Після форматування всі дані на\n"
+"вибраних розділах будуть стерті і їх вже не можна буде відновити.\n"
+"\n"
+"Натисніть на \"%s\", коли будете готові приступити до форматування\n"
+"розділів.\n"
+"\n"
+"Натисніть на \"%s\", якщо Ви хочете вибрати інші розділи для\n"
+"того, щоб встановити нову систему Мандріва лінакс.\n"
+"\n"
+"Натисніть на \"%s\", якщо Ви хочете вибрати розділи для\n"
+"перевірки на існування збійних блоків."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Коли Ви встановлюєте Мандріва лінакс, деякі пакунки можуть\n"
+"бути поновлені з часу виходу дистрибутиву. Можуть бути виправлені\n"
+"помилки, вирішені проблеми безпеки. Щоб мати користь від цих поновлень,\n"
+"зараз Ви можете звантажити їх з Інтернету. Перевірте \"%s\", якщо маєте\n"
+"зв'язок з Інтернетом, або \"%s\", якщо бажаєте встановити поновлені пакунки\n"
+"пізніше.\n"
+"\n"
+"Вибравши \"%s\", Ви побачите список адрес, звідки можуть бути взяті\n"
+"поновлення. Вам потрібно вибрати якісь із найближчих до Вас. Появиться\n"
+"дерево вибору пакунків: зробіть вибір і натисніть \"%s\", щоб звантажити\n"
+"і встановити їх, або \"%s\", щоб вийти."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"В цьому місці DrakX дасть Вам можливість вибрати рівень безпеки\n"
+"для Вашої системи. На практиці можна використовувати таке правило:\n"
+"рівень безпеки повинен бути вищий, якщо на машині зберігатимуться\n"
+"важливі дані, або якщо вона буде безпосередньо під'єднана до Інтернету.\n"
+"Платою за вищий рівень безпеки у більшості випадків є легкість у\n"
+"використанні.\n"
+"\n"
+"Якщо Ви не знаєте, на чому зупинитись, залиште все, як є. Ви зможете\n"
+"змінити рівень безпеки пізніше з допомогою інструменту draksec з \n"
+"Центру керування Мандріва.\n"
+"\n"
+"Поле \"%s\" може використовуватися для сповіщення користувача, який\n"
+"відповідає за безпеку. Повідомлення відправлятиметься на вказану адресу."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Адміністратор з безпеки"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Зараз Вам потрібно вибрати, які розділи використовувати для встановлення\n"
+"Вашої нової системи Мандріва лінакс. Якщо ці розділи вже були створені\n"
+"при попередньому встановленні системи GNU/Linux, або створені іншою\n"
+"програмою розподілу диску, Ви можете скористатися вже існуючими\n"
+"розділами. В іншому випадку потрібно створити розділи на твердому диску.\n"
+"\n"
+"Щоб створити розділи, Вам потрібно вибрати твердий диск. Ви можете\n"
+"вибрати диск, клацнувши на \"hda\" для першого диску типу IDE,\n"
+"\"hdb\" для другого диску типу IDE, \"sda\", якщо Ви будете встановлювати\n"
+"систему на першому диску типу SCSI і так далі.\n"
+"\n"
+"Щоб розбити диск на розділи, Ви можете скористатися такими командами:\n"
+"\n"
+" * \"%s\": видаляє всі розділи на вибраному твердому диску\n"
+"\n"
+" * \"%s\": ця команда автоматично створить розділи типу ext3 та swap\n"
+"на вільному місці диску\n"
+"\n"
+"\"%s\": дає доступ до додаткових параметрів:\n"
+"\n"
+" * \"%s\": записує таблицю розділів на дискету. Використовується для\n"
+"відновлення таблиці розділів при потребі. Дуже рекомендується виконувати\n"
+"цей крок.\n"
+"\n"
+" * \"%s\": дає змогу Вам відновити раніше записану таблицю розділів з\n"
+"дискети.\n"
+"\n"
+" * \"%s\": якщо таблиця розділів Вашого диску пошкоджена, Ви можете\n"
+"спробувати відновити її, скориставшись цією командою. Будь ласка,\n"
+"будьте обережними і пам'ятайте, що ця команда не завжди спрацьовує.\n"
+"\n"
+" * \"%s\": відмовитися від всіх змін і завантажити таблицю розділів, яка\n"
+"була на Вашому твердому диску.\n"
+"\n"
+" * \"%s\": відміна цього параметра зробить необхідним монтування і\n"
+"розмонтування знімних носіїв - дискети і компакт-диску - користувачами\n"
+"вручну.\n"
+"\n"
+" * \"%s\": використайте цю команду, якщо Ви хочете, щоб помічник розподілив\n"
+"Ваш диск. Рекомендується, якщо Ви не розумієтесь добре про\n"
+"розподіл диску. \n"
+"\n"
+" * \"%s\": використайте цю команду, щоб скасувати всі зміни.\n"
+"\n"
+" * \"%s\": дозволити додаткові дії при розбиванні (тип, параметри, формат)\n"
+"і отримати більше інформації про твердий диск.\n"
+"\n"
+" * \"%s\": ця команда запише зміни на диск після того, як Ви закінчите "
+"розбиття\n"
+"Вашого твердого диску. \n"
+"\n"
+"Коли Ви задаєте розмір розділу, можете точніше задати розмір,\n"
+"використовуючи клавіші курсора на клавіатурі.\n"
+"\n"
+"Примітка: Ви можете виконати будь-яку команду з клавіатури. Переміщайтеся\n"
+"по розділах з допомогою клавіш [Tab] і [Up/Down].\n"
+"\n"
+"Коли певний розділ вибрано, Ви можете використовувати:\n"
+"\n"
+" * Ctrl-c, щоб створити новий розділ (якщо вибрано порожній розділ)\n"
+"\n"
+" * Ctrl-d, щоб стерти розділ\n"
+"\n"
+" * Ctrl-m, щоб встановити точку монтування\n"
+"\n"
+"Щоб отримати інформацію про різні типи файлових систем, які Ви можете\n"
+"створити, прочитайте розділ ext2FS з \"Reference Manual\".\n"
+"\n"
+"Якщо Ви встановлюєте систему на комп'ютер з процесором PPC, можете\n"
+"створити маленький розділ типу HFS для завантаження 'bootstrap'\n"
+"(розміром не менше 1Мб) для завантажувача yaboot. Якщо Ви вирішите\n"
+"створити розділ трохи більшого розміру, скажімо 50Мб, Ви зможете\n"
+"також зберігати на ньому резервне ядро системи та віртуальний диск для\n"
+"аварійних завантажень системи. "
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Автоматичне монтування змінних носіїв"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Перемикнути між режимами Експерт/Звичайний"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"На Вашому диску знайдено більше одного розділа Майкрософт.\n"
+"Виберіть, будь ласка, розмір якого з них Ви хотіли б змінити, для\n"
+"того, щоб встановити операційну систем Мандріва лінакс.\n"
+"\n"
+"Кожен розділ подано в такому вигляді: \"Назва в Лінаксі\", \"Назва у\n"
+"Віндовс\", \"Розмір\".\n"
+"\n"
+"\"Назва в Лінаксі\" подана таким чином: \"тип твердого диску\",\n"
+"\"номер твердого диску\", \"номер розділу на диску\", (наприклад:\n"
+"\"hda1\").\n"
+"\n"
+"Тип твердого диску\" - це \"hd\", якщо Ви маєте диск типу IDE, і \"sd\",\n"
+"якщо Ви маєте твердий диск типу SCSI.\n"
+"\n"
+"\"Номер твердого диску\" - це завжди літера після \"hd\" чи \"sd\". Для\n"
+"дисків типу IDE це:\n"
+"\n"
+" * \"a\" - головний диск (master) на першому контролері IDE,\n"
+"\n"
+" * \"b\" - вторинний (slave) диск на першому контролері IDE,\n"
+"\n"
+" * \"c\" - головний диск на другому контролері IDE,\n"
+"\n"
+" * \"d\" - вторинний диск на другому контролері IDE.\n"
+"\n"
+"Для SCSI дисків \"a\" означає \"головний диск\", \"b\" - другорядний диск, "
+"і\n"
+"т.д. ...\n"
+"\n"
+"\"Назва у Віндовс\" - це літера Вашого твердого диску, як Ви її бачите\n"
+"при роботі у Віндовс (перший диск чи розділ називається \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": перевірити поточний вибір країни. Якщо Ви знаходитесь не\n"
+"в цій країні, натисніть кнопку \"%s\" і виберіть іншу країну. Якщо Вашої\n"
+"країни немає в першому переліку, натисніть \"%s\", щоб отримати повний\n"
+"список країн."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Цей крок виконується тільки у випадку, якщо на Вашій машині було\n"
+"знайдено старий розділ GNU/Linux.\n"
+"\n"
+"DrakX зараз потрібно знати, чи Ви хочете виконати нове встановлення,\n"
+"чи поновити існуючу систему Мандріва лінакс:\n"
+"\n"
+" * \"%s\": В більшій частині це повністю знищує стару систему. Якщо Ви\n"
+"хочете змінити розбиття твердого диску на розділи або змінити файлову\n"
+"систему, використовуйте цей параметр. Проте в залежності від схеми\n"
+"розбиття на розділи Ви можете оберегти деякі з існуючих даних від\n"
+"переписування.\n"
+"\n"
+" * \"%s\": цей тип встановлення дозволяє Вам поновити пакунки, вже\n"
+"встановлені на Вашій системі Мандріва лінакс. Ваша існуюча схема\n"
+"розбиття на розділи і дані користувачів не змінюються. Більшість інших\n"
+"кроків встановлення залишаються, подібно до стандартного встановлення.\n"
+"\n"
+"Використання параметра \"Поновлення\" працюватиме на системах з\n"
+"Мандріва лінакс версії \"8.1\" і пізніших. Виконання поновлення версій,\n"
+"попередніх до Мандріва лінакс \"8.1\" не рекомендується."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"В залежності від типової мови, яку Ви вказали у розділі, drakX\n"
+"автоматично вибере певний тип конфігурації клавіатури. Перевірте,\n"
+"щоб виділення відповідало Вашому вибору, якщо потрібно, виберіть\n"
+"відповідну мапу.\n"
+"\n"
+"Проте, може не існувати мапи клавіатури, що точно відповідає Вашій мові:\n"
+"наприклад, якщо Ви англомовний швейцарець, Ви все одно можете\n"
+"забажати користуватись швейцарською мапою. Або, якщо Ви говорите\n"
+"англійською, але живете в Квебеку, Ви потрапляєте в аналогічну\n"
+"ситуацію, коли Ваша рідна мова і мапа клавіатури не співпадають. В\n"
+"таких випадках цей крок встановлення дасть Вам змогу вибрати\n"
+"відповідну клавіатуру з наданого списку.\n"
+"\n"
+"Натисніть кнопку \"%s\", щоб побачити повний список мап клавіатур.\n"
+"\n"
+"Якщо Ви вибрали мапу, що основана на нелатинському алфавіті,\n"
+"наступний діалог дасть змогу вибрати комбінацію клавіш, яка\n"
+"перемикатиме клавіатуру між латинською і нелатинською мапами."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Перший крок - вибір мови.\n"
+"\n"
+"Ваш вибір мови вплине на мову документації, програми встановлення\n"
+"і систему в цілому. Спочатку виберіть регіон, в якому Ви знаходитесь,\n"
+"потім мову, якою Ви розмовляєте.\n"
+"\n"
+"Натиснувши кнопку \"%s\" Ви зможете вибрати інші мови, які можна\n"
+"встановити на Вашій робочій станції, при цьому встановлюються особливі\n"
+"для мови файли системної документації і програми. Наприклад, якщо\n"
+"в системі будуть працювати користувачі з Іспанії, виберіть англійську\n"
+"мову типовою з дерева перегляду і \"%s\" в розділі Додатково.\n"
+"\n"
+"Кілька слів про підтримку UTF-8 (юнікоду): Юнікод - це нове кодування\n"
+"символів, яке вміщує усі мови. Повна підтримка для GNU/Linux все ще\n"
+"знаходиться в стадії розробки. Через це Мандріва лінакс\n"
+"використовуватиме його залежно від вибору користувача:\n"
+"\n"
+" * Якщо Ви вибрали мови із традиційним кодуванням (мови latin1\n"
+"Українська, Японська, Китайська, Корейська, Тайська, Грецька,\n"
+"Турецька, більшість мов iso-8859-2), це кодування і\n"
+"використовуватиметься;\n"
+"\n"
+" * Інші мови використовуватимуть юнікод типово;\n"
+"\n"
+" * Якщо вибирається підтримка двох чи більше мов і вони не\n"
+"використовують однакове кодування, юнікод використовуватиметься\n"
+"для всієї системи;\n"
+"\n"
+" * Нарешті, незалежно від вибраної мови юнікод також\n"
+"використовуватиметься для системи у випадку, якщо користувач\n"
+"вказав \"%s\".\n"
+"\n"
+"Зауважте, що Ви не обмежені вибором однієї додаткової мови. Ви\n"
+"можете вибрати їх кілька або встановити їх всі, вибравши пункт \"%s\".\n"
+"Вибір підтримки мови означає вибір перекладів, шрифтів, перевірку\n"
+"орфографії і т.д.\n"
+"\n"
+"Для перемикання між різними мовами, встановленими в системі, можете\n"
+"виконати команду \"/usr/sbin/localedrake\" з правами \"root\", щоб змінити\n"
+"мову для всієї системи. Виконання цієї команди від звичайного\n"
+"користувача змінить мову тільки для даного конкретного користувача."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Іспанська"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Здебільшого DrakX не має проблем при визначенні кількості кнопок на\n"
+"Вашій миші. Якщо це стається, приймається, що Ви маєте двохкнопкову\n"
+"мишу, і можете сконфігурувати її для емуляції третьої кнопки. Третя\n"
+"кнопка на двохкнопковій миші може бути \"натиснута\" одночасним\n"
+"натисканням лівої і правої кнопок. DrakX автоматично знатиме, який\n"
+"інтерфейс використовує Ваша миша: PS/2, послідовний чи USB.\n"
+"\n"
+"У випадку, якщо Ви маєте мишу з трьома кнопками і без коліщатка,\n"
+"можете вибрати мишу \"%s\". DrakX тоді налаштує її так, щоб Ви могли\n"
+"симулювати його: для цього натисніть середню кнопку і переміщуйте\n"
+"мишу вперед-назад.\n"
+"\n"
+"Якщо з певних міркувань Ви хочете задати інший тип миші, виберіть його\n"
+"із списку, який пропонується.\n"
+"\n"
+"Ви можете вибрати пункт \"%s\", щоб встановити \"загальний\" тип,\n"
+"який працює майже з усіма типами мишок.\n"
+"\n"
+"Якщо Ви вибрали мишу, відмінну від запропонованої, буде показано\n"
+"тестове вікно. Перевірте кнопки і коліщатко, щоб переконатися, що\n"
+"миша працює добре. Якщо миша працює неправильно, натисніть\n"
+"пробіл або [Return], щоб припинити тест і повернутися в список вибору.\n"
+"\n"
+"Миші з коліщатком деколи не визначаються автоматично, тому Вам\n"
+"буде потрібно вибрати мишу із списку. Переконайтеся, що Ви\n"
+"вибираєте мишу відповідно до порта, до якого вона під'єднана. Після\n"
+"того, як Ви виберете мишу і натиснете на кнопку \"%s\", на екрані\n"
+"появиться зображення миші. Покрутіть коліщатко миші, щоб\n"
+"переконатися, що воно активізоване правильно. Після того, як Ви\n"
+"побачите, що коліщатко на екрані рухається відповідно до коліщатка\n"
+"на миші, протестуйте кнопки і переконайтеся, що вказівник миші\n"
+"на екрані рухається відповідно до переміщення миші."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "з емуляцією коліщатка"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Універсальна | Будь-яка миша PS/2 та USB"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Будь ласка, виберіть вірний порт. Наприклад, порт COM1 у MS\n"
+"Windows має назву ttyS0 у GNU/Лінаксі."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Це найважливіший крок для безпеки Вашої системи GNU/Linux: Вам\n"
+"потрібно ввести пароль для користувача Root. Root - це системний\n"
+"адміністратор і тільки йому дозволено робити поновлення системи,\n"
+"додавати користувачів, змінювати загальну конфігурацію системи,\n"
+"таке інше. Одним словом - Root може все! Ось чому Вам слід вибирати\n"
+"пароль, який важко вгадати - DrakX підкаже Вам, якщо пароль занадто\n"
+"легкий. Як Ви побачите, пароль вводити необов'язково, але ми\n"
+"настійливо застерігаємо Вас проти такого. GNU/Linux така ж схильна\n"
+"до помилок оператора, як і будь-яка інша система. Оскільки Root може\n"
+"обминути всі обмеження і ненароком стерти всі дані на всіх розділах,\n"
+"неуважно працюючи з ними, тому повинно бути важко стати\n"
+"користувачем root.\n"
+"\n"
+"Пароль має бути сумішшю алфавітно-цифрових символів і бути\n"
+"завдовжки не менше 8 символів. Ніколи не записуйте пароль - це\n"
+"зробить занадто легким отримання несанкціонованого доступу до\n"
+"системи.\n"
+"\n"
+"Одне застереження -- не робіть пароль занадто довгим чи складним,\n"
+"тому що Вам потрібно його запам'ятовувати.\n"
+"\n"
+"Коли Ви будете вводити пароль, його не буде видно на екрані. Щоб\n"
+"зменшити можливість помилки при вводі пароля \"всліпу\", Вам\n"
+"потрібно буде ввести його двічі. Якщо ж так станеться, що Ви\n"
+"допустите одну і ту ж помилку двічі, Вам потрібно буде ввести цей\n"
+"\"неправильний\" пароль при першій реєстрації в системі.\n"
+"\n"
+"Якщо Ви хочете дозволити доступ до цього комп'ютера для його\n"
+"контролю сервером автентифікації, натисніть кнопку \"%s\".\n"
+"\n"
+"Якщо Ваша мережа використовує служби автентифікації LDAP, NIS або\n"
+"PDC Windows Domain, виберіть одну з можливостей з \"%s\". Якщо Ви не\n"
+"знаєте, яку з них використовувати, запитайте в свого системного "
+"адміністратора.\n"
+"\n"
+"Якщо Ви боїтесь, що маєте проблеми із запам'ятовуванням паролів, якщо\n"
+"Ваш комп'ютер ніколи не буде під'єднано до Інтернету, або Ви абсолютно\n"
+"довіряєте всім, хто використовує Ваш комп'ютер, можете вибрати \"%s\"."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "розпізнавання"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Завантажувач є невеликою програмою, яка завантажується після\n"
+"увімкнення комп'ютера. Він відповідає за завантаження всієї\n"
+"системи. Зазвичай встановлення завантажувача є повністю\n"
+"автоматизованим. DrakX проаналізує завантажувальний сектор диску\n"
+"і відповідно до знайденого на ньому виконає таке:\n"
+"\n"
+" * якщо знайдено сектор завантаження Windows, він замінить його на\n"
+"сектор завантаження GRUB/LILO. В такий спосіб Ви зможете\n"
+"завантажувати як GNU/Linux, так і іншу ОС.\n"
+"\n"
+" * якщо знайдено сектор завантаження GRUB або LILO, його буде\n"
+"замінено на новий.\n"
+"\n"
+"Якщо неможливо визначити, DrakX запитає Вас, куди встановити\n"
+"завантажувач. В загальному випадку \"%s\" є найкращим місцем.\n"
+"Вибравши \"%s\", Ви не встановите завантажувач. Використовуйте\n"
+"це тільки тоді, коли розумієте, що робите."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Зараз настав час вибрати систему друку на Вашому комп'ютері. Інші\n"
+"ОС мають одну систему друку, але Мандріва лінакс пропонує дві.\n"
+"Кожна система друку найкраще підходить до різних типів конфігурації.\n"
+"\n"
+" * \"%s\" -- який є акронімом для \"друкувати, не ставити в чергу\", є\n"
+"вибором, коли Ви маєте безпосередньо під'єднану друкарку і не\n"
+"хочете мати проблем із зминанням паперу, і не маєте мережевих\n"
+"друкарок. (\"%s\" керуватиме тільки дуже простими випадками з\n"
+"мережею і є в деякій мірі повільнішим, ніж використання з мережами).\n"
+"Рекомендується використовувати \"pdq\", якщо це Ваш перший досвід\n"
+"використання GNU/Linux.\n"
+"\n"
+" * \"%s\" - \"Загальна система друку для Лінакс\", є відміннім вибором\n"
+"для друку на місцеву друкарку або на іншу в будь-якій точці планети.\n"
+"Вона проста для налаштування і може працювати як клієнт або сервер\n"
+"для старих систем друку \"lpd \", тобто є сумісною з попередніми\n"
+"операційними системами, які можуть все ще вимагати сервісів друку.\n"
+"Хоч вона і є дуже потужною, загальне встановлення є майже таким\n"
+"самим простим, як і \"pdq\". Якщо Вам потрібно емулювати сервер \"lpd\",\n"
+"переконайтеся, що увімкнена служба \"cups-lpd \". \"%s\" має графічну\n"
+"оболонку для друку або вибору параметрів друкарки і управління нею.\n"
+" \n"
+"Якщо Ви зараз зробите вибір, а пізніше побачите, що ця система друку\n"
+"Вам не подобається, Ви можете її замінити з допомогою PrinterDrake з\n"
+"Центру керування Мандріва , натиснувши кнопку \"%s\"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Експертний режим"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"Спочатку DrakX спробує відшукати всі тверді диски на Вашому\n"
+"комп'ютері. Також він зробить пошук одної або більше карт PCI SCSI.\n"
+"Якщо DrakX знайде плату SCSI, то автоматично встановить для неї\n"
+"драйвер.\n"
+"\n"
+"Через те, що визначення заліза не є простим, DrakX може завершити\n"
+"визначення твердих дисків невдало. Якщо таке трапиться, Вам потрібно\n"
+"буде ввести тип обладнання вручну.\n"
+"\n"
+"Якщо Вам потрібно буде вручну вибирати драйвер, DrakX запитає,\n"
+"чи хочете Ви налаштувати його параметри. Краще, якщо Ви вкажете\n"
+"DrakX випробувати плату з особливими для неї параметрами, потрібними\n"
+"для ініціалізації адаптера. У більшості випадків це працює нормально.\n"
+"\n"
+"Якщо DrakX не зможе встановити тип параметрів, необхідних для\n"
+"передачі обладнанню, Вам потрібно буде налаштувати драйвер вручну."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": якщо система визначить звукову карту, її тип буде показано тут.\n"
+"Якщо Ви побачите, що вона не того типу, що дійсно вставлена у Вашій\n"
+"системі, можете натиснути кнопку і вибрати інший драйвер."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"DrakX пропонує для перегляду підсумкову інформацію, яку він зібрав\n"
+"про Вашу систему. В залежності від встановленого заліза, у Вас\n"
+"повинні бути або всі, або деякі пункти. Кожен пункт може бути\n"
+"налаштований, що завершується коротким підсумком про поточну\n"
+"конфігурацію. Натисніть на відповідну \"%s\" кнопку, щоб змінити.\n"
+"\n"
+" * \"%s\": перевірити поточну мапу клавіатури і змінити, якщо потрібно.\n"
+"\n"
+" * \"%s\": перевірити вибір країни. Якщо Ви знаходитесь не в цій\n"
+"країні, натисніть кнопку \"%s\" і виберіть іншу. Якщо Вашої країни\n"
+"немає в показаному початковому списку, натисніть кнопку \"%s\",\n"
+"щоб отримати повний список країн.\n"
+"\n"
+" * \"%s\": типово DrakX визначає часовий пояс на основі країни, яку\n"
+"Ви вибрали. Ви можете натиснути кнопку \"%s\", якщо його визначено\n"
+"неправильно.\n"
+"\n"
+" * \"%s\": перевірте налаштування миші і натисніть на кнопку, щоб\n"
+"змінити, якщо необхідно.\n"
+"\n"
+" * \"%s\": натиснувши на кнопку \"%s\", Ви викличите Помічника\n"
+"налаштування друкарки. Зверніться до відповідного розділу \"Starter\n"
+"Guide\" для детальнішої інформації про те, як встановити нову\n"
+"друкарку. Інтерфейс, представлений там, є подібним до того, що\n"
+"використовується при встановленні.\n"
+"\n"
+" * \"%s\": якщо у Вашій системі знайдено звукову карту, її буде\n"
+"показано тут. Якщо Ви виявите, що показана звукова карта не є\n"
+"тою, що насправді встановлена у системі, можете натиснути на\n"
+"кнопку і вибрати інший драйвер.\n"
+"\n"
+" * \"%s\": якщо у Вашій системі знайдено карту ТБ, її має бути показано\n"
+"тут. Якщо ж Ви маєте карту ТБ, але її не знайдено, натисніть \"%s\",\n"
+"щоб спробувати налаштувати її вручну.\n"
+"\n"
+" * \"%s\": Ви можете натиснути \"%s\", щоб змінити параметри, пов'язані\n"
+"з картою, якщо бачите, що конфігурацію встановлено неправильно.\n"
+"\n"
+" * \"%s\": типово DrakX налаштовує графічний інтерфейс з роздільною\n"
+"здатністю \"800x600\" або \"1024x768\". Якщо це Вас не задовольняє,\n"
+"натисніть \"%s\", щоб переналаштувати графічний інтерфейс.\n"
+"\n"
+" * \"%s\": Якщо Ви хочете зараз налаштувати доступ до Інтернету\n"
+"або місцевої мережі. Зверніться до друкованої документації, або\n"
+"Центру керування Мандріва після завершення встановлення,\n"
+"щоб отримати повну довідку.\n"
+"\n"
+" * \"%s\": тут можна налаштувати адреси проксі HTTP і FTP, якщо\n"
+"Ваша машина знаходиться за проксі-сервером.\n"
+"\n"
+" * \"%s\": цей пункт дасть змогу перевизначити рівень безпеки, який\n"
+"встановлено попереднім кроком ().\n"
+"\n"
+" * \"%s\": якщо Ви плануєте під'єднати Вашу машину до Інтернету,\n"
+"хорошою ідеєю є захистися від вторгнення шляхом встановлення\n"
+"захисного шлюзу. Зверніться до відповідного розділу \"Starter Guide\"\n"
+"для детальнішої інформації про встановлення захисного шлюзу.\n"
+"\n"
+" * \"%s\": якщо Ви хочете змінити конфігурацію завантажувача,\n"
+"натисніть цю кнопку. Це зарезервовано для досвідчених користувачів.\n"
+"\n"
+" * \"%s\": тут Ви можете підправити, які служби будуть виконуватися\n"
+"на Вашій машині. Якщо Ви плануєте використовувати цю машину в\n"
+"якості сервера, хорошою ідеєю є переглянути ці налаштування."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Карта ISDN"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Графічний інтерфейс"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Виберіть твердий диск, який Ви хочете відформатувати для\n"
+"створення нового розділу Мандріва лінакса. Будьте обережні,\n"
+"всі дані, що знаходяться в цьому розділі, будуть втрачені і їх\n"
+"неможливо буде відновити!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Натисніть \"%s\", якщо Ви хочете стерти всі дані і розділи на цьому\n"
+"твердому диску. Будьте уважні, після натиснення на \"%s\" Ви\n"
+"не зможете відновити жодних даних і розділів на цьому твердому\n"
+"диску, включаючи також будь-які дані Віндовс.\n"
+"\n"
+"Натисніть \"%s\", щоб зупинити цю операцію без втрати даних і\n"
+"розділів, які знаходяться на цьому твердому диску."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Далі ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Попередній"
+
diff --git a/perl-install/install/help/po/uz.po b/perl-install/install/help/po/uz.po
new file mode 100644
index 000000000..f11696d44
--- /dev/null
+++ b/perl-install/install/help/po/uz.po
@@ -0,0 +1,1141 @@
+# translation of DrakX-uz.po to Uzbek
+# Copyright (C) 2003, 2004, 2006 Free Software Foundation, Inc.
+# Copyright (C) 2003 Mandriva.
+#
+# Mashrab Kuvatov <kmashrab@uni-bremen.de>, 2003, 2004, 2006.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-uz\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2006-04-23 12:29+0200\n"
+"Last-Translator: Mashrab Kuvatov <kmashrab@uni-bremen.de>\n"
+"Language-Team: Uzbek <kmashrab@uni-bremen.de>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.2\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Давом этишдан олдин лицензиянинг шартларини эътибор билан ўқиб\n"
+"чиқинг. Лицензия бутун Mandriva Linux'га тегишли. Агар унинг барча\n"
+"шартларига рози бўлсангиз, \"%s\"ни танланг. Агар рози бўлмасангиз,\n"
+"компьютерни ўчириб-ёқиш учун \"%s\" тугмасини босинг."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Бу қулайликдан фойдаланишни истайсизми?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linux бир нечта компакт-дискларда тарқатилади. Агар танланган "
+"пакет\n"
+"бошқа компакт-дискда жойлашган бўлса, DrakX жорий компакт-дискни\n"
+"чиқаради ва тегишлисини қўйишни сўрайди. Агар сўралган компакт-диск сизда\n"
+"бўлмаса, \"%s\" тугмасини босинг. Бу ҳолда, тегишли пакетлар ўрнатилмайди."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Янгилаш"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Асосий қўлланмалар билан"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Ҳақиқий минимал ўрнатиш"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr ""
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr ""
+
+#: ../help.pm:223
+#, fuzzy, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Монитор\n"
+"\n"
+" Одатда, ўрнатувчи компьютерингизга уланган мониторни\n"
+"автоматик равишда аниқлайди ва мослайди. Агар бу нотўғри\n"
+"бўлса, аслида уланган мониторни рўйхатдан танлашингиз мумкин."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Монитор\n"
+"\n"
+" Одатда, ўрнатувчи компьютерингизга уланган мониторни\n"
+"автоматик равишда аниқлайди ва мослайди. Агар бу нотўғри\n"
+"бўлса, аслида уланган мониторни рўйхатдан танлашингиз мумкин."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Дискда бор қисмлардан фойдаланиш"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Бутун дискни ўчириш"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Авто-ўрнатиш дискетни яратиш"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Хавфсизлик бошқарувчиси"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Одий/эксперт усулига ўтиш"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr ""
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr ""
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Истаган PS/2 ва USB сичқонча"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Илтимос тўғри портни танланг. Масалан, Windows'даги \"COM1\"\n"
+"портининг номи GNU/Linux'да \"ttyS0\"."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "тасдиқлаш"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Эксперт"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": агар компьютерда товуш картаси аниқланса у шу ерда кўрсатилади.\n"
+"Агар кўрсатилган товуш картаси компьютердаги товуш картаси\n"
+"билан мос келмаса, тугмани босиб бошқа драйверни танлашингиз мумкин."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN karta"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "График интерфейс"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Бу дискдаги барча маълумотни ва дискнинг барча қисмларини\n"
+"ўчириш учун \"%s\"ни босинг. Эҳтиёт бўлинг, \"%s\"ни босганингиздан\n"
+"кейин дискдаги маълумотни ва дискнинг қисмларини, шу жумлада\n"
+"Windows маълумотини ҳам, тиклаб бўлмайди.\n"
+"\n"
+"Маълумотни ва дискнинг барча қисмларини йўқотмасдан бу\n"
+"операцияни тўхтатиш учун \"%s\"ни босинг."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Кейинги ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Олдинги"
+
diff --git a/perl-install/install/help/po/uz@Latn.po b/perl-install/install/help/po/uz@Latn.po
new file mode 100644
index 000000000..6608ada4c
--- /dev/null
+++ b/perl-install/install/help/po/uz@Latn.po
@@ -0,0 +1,1142 @@
+# translation of DrakX-uz.po to Uzbek
+# Copyright (C) 2003, 2004, 2006 Free Software Foundation, Inc.
+# Copyright (C) 2003 Mandriva.
+#
+# Mashrab Kuvatov <kmashrab@uni-bremen.de>, 2003, 2004, 2006.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-uz\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2006-04-23 12:29+0200\n"
+"Last-Translator: Mashrab Kuvatov <kmashrab@uni-bremen.de>\n"
+"Language-Team: Uzbek <kmashrab@uni-bremen.de>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.2\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Davom etishdan oldin litsenziyaning shartlarini e'tibor bilan o'qib\n"
+"chiqing. Litsenziya butun Mandriva Linux'ga tegishli. Agar uning barcha\n"
+"shartlariga rozi bo'lsangiz, \"%s\"ni tanlang. Agar rozi bo'lmasangiz,\n"
+"kompyuterni o'chirib-yoqish uchun \"%s\" tugmasini bosing."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Bu qulaylikdan foydalanishni istaysizmi?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linux bir nechta kompakt-disklarda tarqatiladi. Agar tanlangan "
+"paket\n"
+"boshqa kompakt-diskda joylashgan bo'lsa, DrakX joriy kompakt-diskni\n"
+"chiqaradi va tegishlisini qo'yishni so'raydi. Agar so'ralgan kompakt-disk "
+"sizda\n"
+"bo'lmasa, \"%s\" tugmasini bosing. Bu holda, tegishli paketlar o'rnatilmaydi."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Yangilash"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Asosiy qo'llanmalar bilan"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Haqiqiy minimal o'rnatish"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr ""
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr ""
+
+#: ../help.pm:223
+#, fuzzy, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Monitor\n"
+"\n"
+" Odatda, o'rnatuvchi kompyuteringizga ulangan monitorni\n"
+"avtomatik ravishda aniqlaydi va moslaydi. Agar bu noto'g'ri\n"
+"bo'lsa, aslida ulangan monitorni ro'yxatdan tanlashingiz mumkin."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+"\n"
+" Odatda, o'rnatuvchi kompyuteringizga ulangan monitorni\n"
+"avtomatik ravishda aniqlaydi va moslaydi. Agar bu noto'g'ri\n"
+"bo'lsa, aslida ulangan monitorni ro'yxatdan tanlashingiz mumkin."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Diskda bor qismlardan foydalanish"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Butun diskni o'chirish"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Avto-o'rnatish disketni yaratish"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Xavfsizlik boshqaruvchisi"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr ""
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Odiy/ekspert usuliga o'tish"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr ""
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr ""
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Istagan PS/2 va USB sichqoncha"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Iltimos to'g'ri portni tanlang. Masalan, Windows'dagi \"COM1\"\n"
+"portining nomi GNU/Linux'da \"ttyS0\"."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "tasdiqlash"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr ""
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Ekspert"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": agar kompyuterda tovush kartasi aniqlansa u shu erda ko'rsatiladi.\n"
+"Agar ko'rsatilgan tovush kartasi kompyuterdagi tovush kartasi\n"
+"bilan mos kelmasa, tugmani bosib boshqa drayverni tanlashingiz mumkin."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN karta"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Grafik interfeys"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Bu diskdagi barcha ma'lumotni va diskning barcha qismlarini\n"
+"o'chirish uchun \"%s\"ni bosing. Ehtiyot bo'ling, \"%s\"ni bosganingizdan\n"
+"keyin diskdagi ma'lumotni va diskning qismlarini, shu jumlada\n"
+"Windows ma'lumotini ham, tiklab bo'lmaydi.\n"
+"\n"
+"Ma'lumotni va diskning barcha qismlarini yo'qotmasdan bu\n"
+"operatsiyani to'xtatish uchun \"%s\"ni bosing."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Keyingi ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Oldingi"
+
diff --git a/perl-install/install/help/po/vi.po b/perl-install/install/help/po/vi.po
new file mode 100644
index 000000000..04e84249f
--- /dev/null
+++ b/perl-install/install/help/po/vi.po
@@ -0,0 +1,1869 @@
+# translation of DrakX-vi.po to
+# Vietnamese Translation for DrakX module.
+# Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
+# Trinh Minh Thanh <tmthanh@yahoo.com> 2001-2005.
+# Larry Nguyen <larry@vnlinux.org> 2005.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-vi version\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-06-02 21:17+0700\n"
+"Last-Translator: Larry Nguyen <larry@vnlinux.org>\n"
+"Language-Team: <gnomevi-list@lists.sourceforge.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Trước khi tiếp tục, hãy đọc kỹ các điều khoản ghi trong bản quyền.\n"
+"Nó bao xuyên suốt toàn bộ phân phối Mandriva Linux. Nếu đồng ý với\n"
+"mọi điều khoản trong đó, nhấn vào hộp kiểm \"%s\". Nếu không, hãy\n"
+"nhấn nút \"%s\" để khởi động lại máy tính."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux là hệ thống đa người dùng, nghĩa là từng người dùng có thể có\n"
+"riêng các tùy thích, tập tin,... Bạn có thể đọc ``Starter Guide'' để biết "
+"thêm\n"
+"điều này.Nhưng không như \"root\", là người quản trị, các người dùng mà bạn\n"
+"thêm vào đây sẽ không được quyền thay đổi bất kỳ cái gì ngoài các tập tin\n"
+"và cấu hình của riêng họ. Bạn sẽ phải tạo ít nhất một người dùng thường lệ\n"
+"cho mình. Đó là tài khoản mà bạn nên dùng cho công việc hàng ngày. Mặc\n"
+"dù bạn cũng có thể đăng nhập \"root\" để làm việc, nhưng sẽ rất nguy hiểm!\n"
+"Chỉ một lỗi nhỏ cũng có thể làm hệ thống không hoạt động nữa. Nếu bạn\n"
+"gây một lỗi trầm trọng khi là người dùng thông thường, bạn có thể chỉ mất "
+"một\n"
+"số thông tin mà không làm ảnh hưởng tới toàn bộ hệ thống.\n"
+"\n"
+"Trường thứ nhất hỏi tên thật của bạn. Tuy nhiên, điều này không phải là bắt\n"
+"buộc. -- có thể nhập bất kỳ cái gì bạn muốn. DrakX sẽ lấy từ đầu tiên mà "
+"bạn\n"
+"nhập để đem nhập vào trường \"%s\", là tên mà người dùng này\n"
+"sẽ sử dụng để đăng nhập vào hệ thống. Nếu muốn, bạn có thể thay đổi nó.\n"
+"Bước tiếp theo là nhập mật khẩu. Về phương diện bảo mật, mật khẩu của người\n"
+"dùng thông thường không quan trọng như mật khẩu \"root\", nhưng cũng đừng\n"
+"để trống hay đặt quá đơn giản để bảo vệ các tập tin riêng của bạn.\n"
+"\n"
+"Mỗi khi nhấn \"%s\", bạn có thể thêm người dùng khác cho người thân như\n"
+"anh chị em... của bạn. Nhấn \"%s\" khi đã hoàn thành việc thêm người dùng.\n"
+"\n"
+"Nhấn nút \"%s\" cho phép bạn thay đổi \"shell\" mặc định cho người dùng\n"
+"đó (mặc định là bash).\n"
+"\n"
+"Khi đã hoàn thành việc thêm người dùng, bạn có thể chọn người dùng nào sẽ\n"
+"được tự động đăng nhập vào hệ thống khi khởi động máy tính. Nếu bạn thích\n"
+"tính năng này và không quan tâm nhiều đến bảo mật nội bộ, hãy chọn người\n"
+"dùng mong muốn và trình quản lý cửa sổ rối nhấn \"%s\". Nếu không thích\n"
+"dùng tính năng này, hãy bỏ chọn hộp kiểm \"%s\"."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Bạn muốn dùng tính năng này không?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Trên đây là danh sách các phân vùng Linux hiện có trên đĩa cứng của bạn.\n"
+"Bạn có thể giữ các lựa chọn do đồ thuật tạo ra, chúng thích hợp cho hầu hết\n"
+"các trường hợp thông thường. Nếu bạn tạo bất kỳ thay đổi nào, ít nhất phải\n"
+"định ra một phân vùng root (\"/\"). Đừng chọn phân vùng này nhỏ quá vì có "
+"thể bạn\n"
+"sẽ không thể cài đặt đủ phần mềm. Nếu bạn muốn đặt dữ liệu lên một phân\n"
+"vùng riêng biệt, bạn cũng cần tạo phân vùng cho \"/home\" (với điều kiện\n"
+"nếu bạn có sẵn hơn một phân vùng Linux).\n"
+"\n"
+"Mỗi phân vùng được liệt kê như sau: \"Tên\", \"Dung lượng\".\n"
+"\n"
+"\"Tên\" có cấu trúc như sau: \"kiểu đĩa cứng\", \"số hiệu đĩa cứng\",\n"
+"\"số hiệu phân vùng\" (ví dụ, \"hda1\").\n"
+"\n"
+"\"Kiểu ổ cứng\" là \"hd\" nếu ổ cứng của bạn là IDE và \"sd\"\n"
+"nếu là loại SCSI.\n"
+"\n"
+"\"Số hiệu ổ cứng\" luôn là chữ cái đứng sau \"hd\" hoặc \"sd\". Với các\n"
+"ổ cứng IDE:\n"
+"\n"
+" * \"a\" là \"ổ cứng chính nối với điều khiển IDE đầu tiên\",\n"
+"\n"
+" * \"b\" là \"ổ cứng phụ nối với điều khiển IDE đầu tiên\",\n"
+"\n"
+" * \"c\" là \"ổ cứng chính nối với điều khiển IDE thứ hai\",\n"
+"\n"
+" * \"d\" là \"ổ cứng phụ nối với điều khiển IDE thứ hai\".\n"
+"\n"
+"Với các ổ đĩa SCSI, \"a\" là \"SCSI ID thấp nhất\", \"b\" là \"SCSI ID\n"
+"thấp thứ nhì\", v.v..."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Việc cài đặt Mandriva Linux được phân phối trên vài đĩa CDROM. Nếu\n"
+"một gói được chọn nằm trên CD khác, DrakX sẽ nhả CD hiện thời và yêu\n"
+"cầu bạn nạp CD thích hợp. Nếu không có CD đó, hãy nhấn \"%s\", gói\n"
+"tương ứng sẽ không được cài đặt."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Bây giờ là lúc chỉ ra chương trình nào mà bạn muốn cài đặt vào hệ thống.\n"
+"Hiện có hàng nghìn gói tin dùng cho Mandriva Linux và được tổ chức theo\n"
+"nhóm các ứng dụng giống nhau để dễ dàng quản lý.\n"
+"\n"
+"Các gói phần mềm được xếp loại theo các nhóm tương ứng với việc sử dụng\n"
+"cụ thể cho máy tính. Mandriva Linux có 4 kiểu cài đặt sẵn với nhiều loại gói "
+"tin.\n"
+"Bạn có thể chọn dùng các ứng dụng pha trộn của các kiểu cài đặt này, ví dụ\n"
+"như cài đặt kiểu ``Máy trạm'' cùng với việc cài các ứng dụng của kiểu cài\n"
+"đặt ``Máy chủ''.\n"
+"\n"
+" * \"%s\": nếu định dùng máy tính này thành một trạm làm việc,\n"
+"hãy chọn một hay nhiều ứng dụng của kiểu cài đặt máy trạm.\n"
+"\n"
+" * \"%s\": nếu định sử dụng máy này để lập trình, hãy chọn các gói\n"
+"mong muốn từ kiểu cài đặt này. Nhóm \"LSB\" sẽ cấu hình hệ thống\n"
+"sao cho việc biên dịch tuân theo mọi đặc điểm của Linux Standard\n"
+"Base.\n"
+"\n"
+" Chọn nhóm \"LSB\" sẽ cài đặt kernel \"2.4\" thay vì kernel mặc định là\n"
+"\"2.6\". Điều này đảm bảo hệ thống tương thích LBS 100%%. Dù sao, nếu\n"
+"không chọn nhóm này thì bạn cũng vẫn có một hệ thống gần như tương\n"
+"thích hoàn toàn với LSB.\n"
+"\n"
+" * \"%s\": nếu muốn dùng máy này làm máy chủ, hãy chọn các dịch vụ\n"
+"thông dụng mà bạn muốn cài đặt lên máy tính này.\n"
+"\n"
+" * \"%s\": đây là nơi bạn sẽ chọn môi trường đồ họa ưa thích.\n"
+"Cần chọn ít nhất một môi trường nếu muốn dùng giao diện đồ họa.\n"
+"\n"
+"Việc hơ con trỏ chuột lên tên nhóm sẽ làm xuất hiện đoạn chú giải vắn\n"
+"tắt về nhóm đó.\n"
+"\n"
+"Có thể chọn \"%s\" nếu bạn biết rõ các gói tin hay khi bạn muốn kiểm\n"
+"soát toàn bộ việc cài đặt các gói.\n"
+"\n"
+"Nếu cài đặt theo chế độ \"%s\", bạn có thể bỏ chọn toàn bộ các nhóm\n"
+"và không cho cài đặt các gói mới. Nó thích hợp cho việc sửa chữa hay\n"
+"cập nhật hệ thống sẵn có.\n"
+"\n"
+"Nếu bạn bỏ chọn toàn bộ các nhóm khi thực hiện cài đặt thường quy\n"
+"(ngược lại với việc nâng cấp), một hộp thoại sẽ bật lên để gợi ý các tùy\n"
+"chọn khác nhau cho việc cài đặt tối thiểu:\n"
+"\n"
+" * \"%s\": thực hiện cài đặt tối thiểu các gói tin mà để có một màn hình\n"
+"nền đồ họa làm việc.\n"
+"\n"
+" * \"%s\": cài đặt một hệ thống cơ bản cộng thêm các\n"
+"tiện ích cơ bản cùng với tài liệu của chúng. Việc cài đặt này thích hợp \n"
+"cho việc thiết lập một máy chủ.\n"
+"\n"
+" * \"%s\": sẽ cài đặt thật sự tối thiểu nhất các gói\n"
+"cho một hệ thống Linux hoạt động chỉ với giao diện dòng lệnh. Kích thước\n"
+"cho kiểu cài đặt này là\n"
+"65 MB."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Nâng cấp"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Kèm tài liệu cơ bản"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Cài đặt thật tối thiểu"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Nếu bạn đã yêu cầu trình cài đặt là bạn muốn tự chọn thêm các gói tin,\n"
+"bạn sẽ thấy một cây chứa toàn bộ các gói xếp loại theo nhóm và nhóm\n"
+"con. Trong khi duyệt cây này, bạn có thể chọn toàn bộ các nhóm, nhóm\n"
+"con, hay các gói chọn riêng.\n"
+"\n"
+"Bất kỳ khi nào bạn chọn một gói tin trên cây, một thuyết minh sẽ xuất\n"
+"hiện từ phải sang trái để cho bạn biết công dụng của gói đó.\n"
+"\n"
+"!! Nếu các gói tin cho server được chọn cố tình hoặc do nó là thành\n"
+"phần của một nhóm, bạn sẽ được hỏi để khẳng định là bạn thật sự\n"
+"muốn những server này được cài đặt. Trong Mandriva Linux, bất kỳ\n"
+"server đã được cài đặt nào đều chạy vào lúc khởi động theo mặc định.\n"
+"Thậm chí được coi là an toàn tại thời điểm phát hành, nó vẫn có thể\n"
+"có lỗ hổng bảo mật được phát hiện sau khi phát hành phiên bản Mandriva\n"
+"Linux. Nếu không biết một dịch vụ nào đó được dùng để làm gì\n"
+"hay tại sao lại được cài đặt, hãy nhấn \"%s\". Nhấn \"%s\" sẽ cài\n"
+"đặt các dịch vụ được liệt kê và chúng sẽ khởi chạy tự động theo\n"
+"mặc định. !!\n"
+"\n"
+"Tùy chọn \"%s\" đơn giản là để không xuất hiện hộp thoại cảnh báo khi\n"
+"chương trình cài đặt tự động chọn gói tin để giải quyết phụ thuộc.\n"
+"Một số gói có liên quan với nhau như việc cài đặt gói này yêu cầu một\n"
+"số chương trình đã phải được cài đặt. Trình cài đặt sẽ xác định những\n"
+"gói nào cần có để thỏa mãn vấn đề phụ thuộc nhằm mục đính hoàn thành\n"
+"quá trình cài đặt.\n"
+"\n"
+"Biểu tượng đĩa mềm nhỏ nằm ở bên dưới danh sách cho phép nạp danh\n"
+"sách các gói tin được chọn trong lần cài đặt trước. Việc này có ích khi\n"
+"bạn có nhiều máy tính và muốn cấu hình chúng giống nhau. Nhấn lên biểu\n"
+"tượng này sẽ yêu cầu bạn nạp đĩa mềm được tạo từ lần cài đặt trước, tại\n"
+"giai đoạn cuối. Hãy xem lời khuyên thứ hai của bước cuối cùng về cách tạo\n"
+"một đĩa mềm như vậy."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Các phụ thuộc tự động"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"\"%s\": việc nhấn nút \"%s\" sẽ mở đồ thuật cấu hình máy in.\n"
+"Tham khảo chương tương ứng trong ``Starter Guide'' để biết thêm\n"
+"thông tin về cách thiết lập máy in mới. Giao diện hiện diện tại\n"
+"đó giống như giao diện thấy trong quá trình cài đặt."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Hộp thoại này dùng để chọn khởi chạy dịch vụ nào bạn muốn khi khởi\n"
+"động hệ thống.\n"
+"\n"
+"DrakX sẽ liệt kê mọi dịch vụ hiện có của cài đặt hiện hành. Hãy xem xét "
+"thận\n"
+"trọng từng dịch vụ và bỏ chọn những gì không cần lúc khởi động.\n"
+"\n"
+"Bạn có thể nhận được một đoạn chú giải ngắn về dịch vụ khi chọn. Tuy\n"
+"nhiên, nếu không biết rõ dịch vụ đó có hữu ích hay không, để an toàn,\n"
+"hãy để theo mặc định.\n"
+"\n"
+"!! Thật thận trọng ở bước này nếu bạn định dùng máy này làm máy\n"
+"chủ: có thể bạn sẽ không muốn khởi chạy các dịch vụ không cần đến.\n"
+"Nên nhớ là một số dịch vụ có thể gây nguy hiểm khi chúng được chạy\n"
+"trên máy chủ. Nói chung, chỉ chọn các dịch vụ thực sự cần thiết. !!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux quản lý thời gian theo GMT (Greenwich Mean Time) và chuyển\n"
+"thành giờ địa phương tùy theo múi giờ bạn chọn. Nếu đồng hồ trong máy\n"
+"bạn đặt theo giờ địa phương, bạn có thể bất hoạt điều này bằng việc\n"
+"thôi chọn \"%s\", nó sẽ làm cho GNU/Linux biết đồng hồ trong máy và\n"
+"đồng hồ hệ thống là cùng múi giờ. Việc này hữu ích máy tính cũng chứa\n"
+"một hệ điều hành khác như là Windows.\n"
+"\n"
+"Tùy chọn \"%s\" sẽ tự động điều chỉnh đồng hồ bằng cách nối với một máy\n"
+"chủ thời gian ở xa trên Internet. Trong danh sách hiển thị, hãy chọn\n"
+"một máy chủ ở gần bạn. Tất nhiên, bạn phải có một kết nối Internet để\n"
+"cho tính năng này hoạt động. Thực tế là nó sẽ cài đặt một máy chủ thời\n"
+"gian lên máy tính này để các máy khác trong mạng cục bộ tùy ý sử dụng."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Tự động đồng bộ hóa thời gian"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Card Đồ Họa\n"
+"\n"
+" Bình thường, trình cài đặt có khả năng tự động phát hiện và cấu\n"
+"cấu hình card đồ họa có trong máy tính. Nếu không được vậy, bạn\n"
+"có thể chọn nó trong danh sách này.\n"
+"\n"
+" Trong trường hợp có server khác sẵn dùng cho card này, có hoặc\n"
+"không có tăng tốc 3D, bạn sẽ được đề nghị chọn server thích hợp nhất\n"
+"cho nhu cầu của bạn."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (cho hệ thống cửa sổ X) là trái tim của giao diện đồ họa GNU/Linux\n"
+"mà trên đó mọi môi trường đồ họa (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) được kết hợp trong Mandriva Linux.\n"
+"\n"
+"Bạn sẽ được xem danh sách các tham số khác nhau để thay đổi sao\n"
+"cho việc hiển thị đồ họa được tối ưu.\n"
+"\n"
+"Card đồ họa\n"
+"\n"
+" Trình cài đặt thông thường sẽ tự động phát hiện và cấu hình card\n"
+"đồ họa có trong máy. Nếu không được như vậy, bạn có thể chọn\n"
+"cái bạn thật sự có trong danh sách này.\n"
+"\n"
+" Trong trường hợp có các server khác nhau cho card của bạn, có hay\n"
+"không có tăng tốc 3D, bạn sẽ được đề nghị chọn server nào mà thích\n"
+"hợp nhất với nhu cầu của bạn.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Trình cài đặt thông thường sẽ tự động phát hiện và cấu hình monitor\n"
+"nối với máy của bạn. Nếu không được như vậy, bạn có thể chọn trong\n"
+"danh sách này cái mà bạn thật sự có.\n"
+"\n"
+"\n"
+"\n"
+"Độ phân giải\n"
+"\n"
+" Bạn có thể chọn ở đây độ phân giải và độ sâu màu trong số những cái\n"
+"hiện có cho phần cứng của bạn. Hãy chọ một cái phù hợp nhất với nhu\n"
+"cầu của bạn (và có thể thay đổi sau khi cài đặt. Ví dụ về cấu hình được\n"
+"chọn hiển thị trên monitor.\n"
+"\n"
+"\n"
+"\n"
+"Chạy thử\n"
+"\n"
+" Hệ thống sẽ mở một màn hình đồ hoạ với độ phân giải mong muốn.\n"
+"Nếu bạn nhìn thấy thông điệp trong khi chạy thử và trả lời \"%s\", thì\n"
+"DrakX sẽ thực hiện bước tiếp theo. Nếu bạn không nhìn thấy, nghĩa là\n"
+"một số phần nào đó của cấu hình được phát hiện tự động đã không\n"
+"đúng và việc chạy thử sẽ tự kết thúc sau 12 giây, đưa bạn trở về với\n"
+"menu. Hãy thay đổi các thiết lập tới khi bạn nhận hiển thị đồ họa đúng.\n"
+"\n"
+"\n"
+"\n"
+"Các tùy chọn\n"
+"\n"
+" Tại đây có thể chọn việc máy tính của bạn tự động chuyển vào giao\n"
+"diện đồ họa khi khởi động hay không. Hiển nhiên là bạn muốn chọn\n"
+"\"%s\" nếu bạn dùng máy này làm máy chủ, hay khi bạn đã không\n"
+"thành công trong việc cấu hình hiển thị đồ họa."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Monitor\n"
+"\n"
+" Thông thường, trình cài đặt có khả năng tự động phát hiện và cấu hình\n"
+"monitor nối với máy tính. Nếu không được vậy, bạn có thể chọn trong\n"
+"danh sách monitor cho cái bạn có."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Độ phân giải\n"
+"\n"
+" Tại đây có thể chọn các độ phân giải và độ sâu màu sẵn có cho\n"
+"phần cứng bạn có. Hãy chọn cái thích hợp nhất với nhu cầu của bạn\n"
+"(và có thể thay đổi lại sau khi cài đặt). Ví dụ về cấu hình được chọn\n"
+"sẽ hiển thị trên monitor."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"Trong trường hợp có các server khác dùng được cho card của bạn, có\n"
+"hay không có tăng tốc 3D, bạn sẽ được đề nghị chọn server nào thích\n"
+"hợp nhất cho nhu cầu của bạn."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Tùy chọn\n"
+"\n"
+"...Tại đây, bạn có thể chọn việc hệ thống tự khởi động vào giao diện\n"
+"đồ họa. Hiển nhiên, bạn muốn trả lời \"%s\" nếu máy của bạn hoạt động\n"
+"như một máy chủ, hay khi bạn không thành công trong việc cấu hình hiển\n"
+"thị."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Lúc này bạn cần chọn nơi nào trên đĩa cứng sẽ cài đặt hệ điều hành\n"
+"Mandriva Linux. Nếu như đĩa cứng chưa có gì hoặc nếu đã có một hệ\n"
+"điều hành đang sử dụng toàn bộ không gian đĩa, bạn cần thực hiện việc\n"
+"phân vùng đĩa. Về cơ bản, việc phân vùng một ổ đĩa cứng là phân chia\n"
+"các ổ lý luận, tạo không gian để cài đặt hệ thống Mandriva Linux mới.\n"
+"\n"
+"Do kết quả của quá trình phân vùng thường không thay đổi lại được nữa,\n"
+"nên việc phân vùng có thể gây sợ hãi và căng thẳng nếu bạn không phải\n"
+"người dùng có kinh nghiệm. May thay, DrakX đã có đồ thuật đơn giản hoá\n"
+"việc này. Trước khi bắt đầu, hãy đọc phần hướng dẫn dưới đây và trên hết\n"
+"là đừng vội vàng.\n"
+"\n"
+"Tùy thuộc vào cấu hình của đĩa cứng, sẵn có một số tùy chọn như sau:\n"
+"\n"
+" * \"%s\": tùy chọn này sẽ tiến hành tự động việc\n"
+"phân vùng cho đĩa trống. Bạn sẽ không bị nhắc là phải làm gì nữa nếu\n"
+"dùng tùy chọn này.\n"
+"\n"
+" * \"%s\": đồ thuật đã phát hiện thấy một hoặc nhiều\n"
+"phân vùng Linux hiện có trên đĩa cứng. Nếu muốn dùng chúng, hãy dùng\n"
+"tùy chọn này. Bạn sẽ được hỏi về các điểm gắn kết cho từng phân vùng.\n"
+"Các điểm gắn kết kế tục được chọn theo mặc định và trong hầu hết các\n"
+"trường hợp, bạn nên giữ chúng.\n"
+"\n"
+" * \"%s\": nếu Windows đã\n"
+"được cài đặt trên đĩa cứng và dùng toàn bộ không gian đĩa, bạn cần tạo\n"
+"không gian trống cho Linux. Để làm việc đó, bạn có thể xóa bỏ dữ liệu và\n"
+"phân vùng của Microsoft Windows (xem giải pháp ``Xóa toàn bộ đĩa'') hoặc\n"
+"lập lại kích thước phân vùng của MS Windows mà có thể không bị mất bất\n"
+"kỳ dữ liệu nào. Tuy nhiên bạn rất nên thực hiện việc sao lưu dữ liệu trước "
+"đã.\n"
+"Nên chọn giải pháp này nếu muốn dùng cả Mandriva Linux và Windows trên\n"
+"cùng một máy tính.\n"
+"\n"
+" Trước khi chọn tùy chọn này, hãy hiểu là sau khi thực hiện cách này,\n"
+"kích thước phân vùng của MS Windows sẽ nhỏ hơn so với lúc này.\n"
+"Sẽ có ít không gian trống hơn trong Microsoft Windows để lưu dữ\n"
+"liệu và cài đặt phần mềm mới.\n"
+"\n"
+" * \"%s\": nếu muốn xoá toàn bộ dữ liệu và các phân vùng\n"
+"hiện có trên ổ cứng và thay thế bằng hệ thống Mandriva Linux mới,\n"
+"hãy dùng tùy chọn này. Hãy thận trọng với tùy chọn này vì sẽ không\n"
+"thể thay đổi lựa chọn sau khi đã khẳng định.\n"
+"\n"
+" !! Nếu chọn tùy chọn này, toàn bộ dữ liệu trên đĩa sẽ mất. !!\n"
+"\n"
+" * \"%s\": đơn giản là sẽ xoá sạch mọi thứ có trên\n"
+"đĩa, làm sạch, phân vùng mọi thứ từ đầu. Mọi dữ liệu trên đĩa sẽ\n"
+"bị mất.\n"
+"\n"
+" !! Nếu chọn tùy chọn này, mọi dữ liệu trên đĩa sẽ mất. !!\n"
+"\n"
+" * \"%s\": dùng tùy chọn này khi bạn muốn tự phân\n"
+"vùng đĩa cứng. Hãy cẩn thận - đây là tùy chọn mạnh nhưng nguy hiểm, rất\n"
+"dễ bị mất mọi dữ liệu. Vì vậy, không nên chọn chế độ này trừ khi trước\n"
+"đây bạn đã từng thực hiện và đã có kinh nghiệm."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Dùng phân vùng hiện thời"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Xoá toàn bộ đĩa"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Chúc mừng. Việc cài đặt đã hoàn thành và hệ thống GNU/Linux sẵn sàng\n"
+"để sử dụng. Hãy nhấn \"%s\" để khởi động lại hệ thống. Cái đầu tiên mà\n"
+"bạn thấy sau khi kết thúc việc kiểm tra phần cứng sẽ là menu của trình\n"
+"nạp khởi động, nó cho bạn chọn hệ điều hành nào sẽ khởi động.\n"
+"\n"
+"Nút \"%s\" hiển thị thêm 2 nút để:\n"
+"\n"
+" * \"%s\": để tạo một đĩa mềm cài đặt nhờ đó\n"
+"sẽ tự động thực hiện toàn bộ quá trình cài đặt mà không cần có người\n"
+"thực hiện, giống hệt như quá trình cài đặt mà bạn vừa tiến hành.\n"
+"\n"
+" Lưu ý: sẽ có 2 tùy chọn khác nhau sau khi nhấn chuột lên nút:\n"
+"\n"
+" * \"%s\". là quá trình cài đặt tự động từng phần. Chỉ còn\n"
+"bước phân vùng là còn phải tương tác.\n"
+"\n"
+" * \"%s\". Cài đặt hoàn toàn tự động: đĩa cứng được ghi lại\n"
+"hoàn toàn, mọi dữ liệu bị mất.\n"
+"\n"
+" Tính năng này rất thuận tiện khi thực hiện cài đặt cho một số lượng\n"
+"lớn các máy giống nhau. Xem Phần cài đặt tự động tại website của hãng.\n"
+"\n"
+" * \"%s\"(*) : lưu lại danh sách các gói được chọn của quá trình cài đặt\n"
+"này. Để dùng việc chọn này cho lần cài đặt khác, hãy nạp đĩa mềm vào ổ\n"
+"và bắt đầu chạy quá trình cài đặt. Tại dấu nhắc, nhấn phím [F1] và gõ\n"
+">>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) Bạn cần một đĩa mềm được định dạng FAT. Để tạo nó trong GNU/Linux,\n"
+"gõ \"mformat a:\", hay \"fdformat /dev/fd0\" rồi đến \"mkfs.vfat\n"
+"/dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Tạo đĩa mềm cài đặt tự động"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Nếu chọn dùng lại một số phân vùng linux sẵn có, bạn có thể muốn format\n"
+"lại và xóa dữ liệu trên một số phân vùng đó. Để thực hiện, hãy chọn chúng.\n"
+"\n"
+" Hãy lưu ý là không nhất thiết phải format lại mọi phân vùng có sẵn từ "
+"trước.\n"
+"Bạn phải format lại các phân vùng chứa hệ điều hành (như là : \"/\", \"/usr"
+"\"\n"
+"hay \"/var\") nhưng không phải làm việc này đối với các phân vùng có dữ\n"
+"liệu mà bạn muốn giữ (điển hình là \"/home\").\n"
+"\n"
+"Hãy thận trọng khi chọn các phân vùng. Sau khi format, mọi dữ liệu\n"
+"trên đó sẽ bị xóa và sẽ không có cách nào để khôi phục lại chúng\n"
+"nữa\n"
+"\n"
+"Nhấn lên \"%s\" khi bạn sẵn sàng format các phân vùng.\n"
+"\n"
+"Nhấn lên \"%s\" nếu muốn chọn một phân vùng khác cho việc\n"
+"cài đặt hệ điều hành Mandriva Linux mới.\n"
+"\n"
+"Nhấn lên \"%s\" nếu muốn chọn các phân vùng sẽ được kiểm\n"
+"tra các khối bị hỏng trên bề mặt đĩa."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Vào lúc bạn đang cài đặt Mandriva Linux, có thể đã có một số gói tin\n"
+"đã được cập nhật kể từ lúc phát hành phiên bản này. Một số lỗi chương\n"
+"trình đã được sửa, các vấn đề bảo mật được giải quyết. Để cho bạn\n"
+"được hưởng lợi từ các cập nhật này, bây giờ bạn có thể để tải chúng về\n"
+"từ internet. Chọn \"%s\" nếu bạn có kết nối Intertnet hoạt động, hoặc\n"
+"\"%s\" nếu bạn muốn cài đặt các gói tin cập nhật sau này.\n"
+"\n"
+"Chọn \"%s\" sẽ hiển thị danh sách những nơi bạn có thể thu thập các\n"
+"cập nhật. Hãy chọn nơi gần bạn nhất. Sẽ xuất hiện một cây chứa các\n"
+"gói để chọn, hãy xem qua nội dung rồi nhấn \"%s\" để lấy về và cài\n"
+"đặt những gói được chọn, hoặc nhấn \"%s\" để thôi cập nhật."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Lúc này, DrakX cho phép bạn chọn mức bảo mật theo mong muốn cho\n"
+"máy tính. Với một nguyên tắc chủ đạo: máy càng bị phơi bày nhiều trên\n"
+"internet hoặc chứa dữ liệu quan trọng bao nhiêu thì mức độ bảo mật cần\n"
+"phải cao bấy nhiêu. Tuy nhiên, mức độ bảo mật càng cao thì càng làm\n"
+"giảm tính dễ sử dụng.\n"
+"\n"
+"Nếu không biết phải chọn mức độ nào, hãy giữ tùy chọn mặc định. Bạn\n"
+"có thể thay đổi lại sau này bằng côngcụ draksec trong Trung Tâm Điều\n"
+"Khiển Mandriva.\n"
+"\n"
+"Điền vào \"%s\" địa chỉ e-mail của người quản trị bảo mật. Thông báo\n"
+"bảo mật sẽ được gửi tới địa chỉ này."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Người Quản Trị Bảo Mật:"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Vào lúc này, bạn cần chọn những phân vùng nào sẽ được dùng để cài đặt\n"
+"hệ thống Mandriva Linux. Nếu các phân vùng đã được xác lập từ lần cài\n"
+"đặt GNU/Linux trước đó hay được tạo bằng một công cụ phân vùng khác,\n"
+"bạn có thể dùng chúng. Nếu chưa có, bạn sẽ sẽ phải thực hiện việc hoạch\n"
+"định các phân vùng.\n"
+"\n"
+"Để tạo các phân vùng, đầu tiên phải chọn một đĩa cứng. Có thể chọn đĩa\n"
+"để phân vùng bằng cách nhấn lên ``hda'' đối với đĩa IDE đầu tiên, ``hdb'' "
+"cho\n"
+"đĩa thứ hai, ``sda'' đới với ổ SCSI đầu tiên và cứ tương tự như vậy.\n"
+"\n"
+"Để phân vùng cho đĩa cứng được chọn, có thể dùng những tùy chọn sau:\n"
+"\n"
+" * \"%s\": để xóa mọi phân vùng có trên đĩa cứng được chọn.\n"
+"\n"
+" * \"%s\": cho phép tự động tạo các phân vùng ext3 và swap\n"
+"tại không gian trống của đĩa cứng.\n"
+"\n"
+" * \"%s\" : cho phép thực hiện thêm một số tính năng:\n"
+"\n"
+" * \"%s\": để lưu bảng phân vùng vào đĩa mềm. Có ích khi cần thực hiện\n"
+"việc khôi phục lại bảng phân vùng. Bạn rất nên thực hiện bước này.\n"
+"\n"
+" * \"%s\": cho phép khôi phục bảng phân vùng đã được lưu vào đĩa mềm\n"
+"từ trước đó.\n"
+"\n"
+" * \"%s\": nếu bảng phân vùng bị hư, bạn có thể thử khôi phục lại nó\n"
+"bằng tùy chọn này. Xin hãy thận trọng và nên nhớ là nó không phải lúc\n"
+"nào cũng thành công.\n"
+"\n"
+" * \"%s\": bỏ qua mọi thay đổi và nạp lại bảng phân vùng ban đầu.\n"
+"\n"
+" * \"%s\": bỏ chọn tùy chọn này sẽ buộc người dùng phải tự thực hiện\n"
+"gắn kết/thôi gắn kết các phương tiện tháo lắp ví dụ như đĩa mềm và CD.\n"
+"\n"
+" * \"%s\": dùng tùy chọn này nếu bạn muốn sử dụng đồ thuật để\n"
+"phân vùng đĩa cứng. Bạn nên sử dụng đồ thuật nếu bạn không hiểu rõ\n"
+"về việc phân vùng.\n"
+"\n"
+" * \"%s\": dùng để bỏ qua, không thực hiện những thay đổi vừa làm.\n"
+"\n"
+" * \"%s\": cung cấp thêm các thao tác trên phân vùng (kiểu, tùy chọn,\n"
+"định dạng) và thêm thông tin về đĩa cứng.\n"
+"\n"
+" * \"%s\": khi bạn đã thực hiện xong việc phân vùng đĩa cứng, các thay đổi\n"
+"sẽ đưọc lưu lại vào đĩa.\n"
+"\n"
+"Khi đặt kích thước phân vùng, bạn có thể đặt chính xác kích thước bằng\n"
+"việc dùng các phím mũi tên của bàn phím.\n"
+"\n"
+"Lưu ý: có thể dùng bàn phím để chọn các tùy chọn. Chọn qua lại các phân\n"
+"vùng bằng phím [Tab] và phím mũi tên [Lên/Xuống].\n"
+"\n"
+"Khi một phân vùng đã được chọn, có thể dùng:\n"
+"\n"
+" * Ctrl-c để tạo một phân vùng mới (khi chọn một phân vùng trống);\n"
+"\n"
+" * Ctrl-d để xóa một phân vùng;\n"
+"\n"
+" * Ctrl-m để thiết lập điểm gắn kết.\n"
+"\n"
+"Để có thêm thông tin về các loại hệ thống tập tin hiện có, hãy đọc chương\n"
+"ext2FS ở trong ``Tài liệu Tham khảo''.\n"
+"\n"
+"Nếu đang thực hiện cài đặt trên máy PPC, có thể bạn muốn tạo một phân vùng\n"
+"``bootstrap'' HFS có kích thước ít nhất 1MB để cho trình nạp khởi động\n"
+"yaboot. Nếu lập kích thước phân vùng này lớn hơn một chút (50MB), bạn sẽ "
+"thấy\n"
+"đó là nơi hữu ích để lưu trữ kernel dự phòng và các ảnh ramdisk cho các\n"
+"trường hợp khởi động khẩn cấp."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Tự động gắn kết phương tiện có thể tháo rời"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Chuyển đổi giữa chế độ bình thường và chuyên gia"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Phát hiện ra có hơn một phân vùng Microsoft Windows trên đĩa cứng.\n"
+"Hãy chọn một phân vùng cần lập lại kích thước để cài đặt hệ điều\n"
+"hành Mandriva Linux mới.\n"
+"\n"
+"Mỗi phân vùng được liệt kê như sau: \"Tên Linux\", \"Tên Windows\"\n"
+"\"Dung lượng\".\n"
+"\n"
+"\"Tên Linux\" có cấu trúc: \"loại đĩa cứng\", \"số hiệu đĩa cứng\",\n"
+"\"số hiệu phân vùng\" (ví dụ, \"hda1\").\n"
+"\n"
+"\"Loại đĩa cứng\" là \"hd\" nếu ổ đĩa cứng là loại IDE và\n"
+"\"sd\" nếu là ổ đĩa cứng SCSI.\n"
+"\n"
+"\"Số hiệu ổ cứng\" luôn là một chữ đứng sau \"hd\" hay \"sd\". Với đĩa\n"
+"cứng IDE:\n"
+"\n"
+" * \"a\" nghĩa là \"ổ đĩa chính nối với điều khiển IDE thứ nhất\",\n"
+"\n"
+" * \"b\" nghĩa là \"ổ đĩa phụ nối với điều khiển IDE thứ nhất\",\n"
+"\n"
+" * \"c\" nghĩa là \"ổ đĩa chính nối với điều khiển IDE thứ hai\",\n"
+"\n"
+" * \"d\" nghĩa là \"ổ đĩa phụ nối với điều khiển IDE thứ hai\".\n"
+"\n"
+"Với các ổ đĩa SCSI, chữ \"a\" nghĩa là \"SCSI ID thấp nhất\", \"b\" là\n"
+"\"SCSI ID thấp thứ nhì\", v.v...\n"
+"\n"
+"\"Tên Windows\" là chữ cái gán cho ổ đĩa cứng trong Windows (đĩa\n"
+"cứng hoặc phân vùng đầu tiên được gọi là \"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\": kiểm vào phần chọn quốc gia hiện thời. Nếu bạn \n"
+"không sống tại đó, hãy nhấn \"%s\" và chọn quốc gia khác.\n"
+"Nếu quốc gia của bạn không có trong danh sách, hãy\n"
+"nhấn \"%s\" để xem danh sách đầy đủ các quốc gia."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Bước này chỉ được kích hoạt khi phát hiện thấy một phân vùng GNU/Linux\n"
+"đang có sẵn trên máy của bạn.\n"
+"\n"
+"DrakX cần được biết là bạn muốn thực hiện cài đặt mới hay là nâng cấp\n"
+"hệ thống Mandriva Linux hiện có:\n"
+"\n"
+" * \"%s\": hầu hết các trường hợp, việc này sẽ xóa sạch hệ thống\n"
+"cũ. Nếu bạn muốn thay đổi các phân vùng của đĩa cứng, hoặc thay đổi\n"
+"hệ thống tập tin, bạn nên dùng tùy chọn này. Dù sao, tùy theo sắp xếp\n"
+"phân vùng, bạn có thể tránh việc mất dữ liệu hiện có do việc ghi đè\n"
+"lên ví dụ như thư mục \"home\".\n"
+"\n"
+" * \"%s\": loại cài đặt này cho phép bạn nâng cấp các gói hiện thời\n"
+"đã cài trên hệ thống Mandriva Linux của bạn. Việc sắp xếp phân vùng\n"
+"hiện thời và dữ liệu không bị thay đổi. Hầu hết các bước cấu hình khác\n"
+"vẫn sẵn có để dùng, giống như việc cài đặt chuẩn.\n"
+"\n"
+"Tùy chọn ``Nâng cấp'' sẽ hoạt động tốt trên hệ thống Mandriva Linux\n"
+"phiên bản \"8.1\" hay mới hơn. Không nên thực hiện nâng cấp cho các\n"
+"phiên bản cũ hơn Mandriva Linux \"8.1\" ."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Tùy theo ngôn ngữ đã chọn () mà DrakX sẽ tự động chọn loại cấu hình\n"
+"bàn phím thích ứng. Hãy chọn bàn phím thích hợp hoặc chọn một tổ\n"
+"chức bàn phím khác.\n"
+"\n"
+"Tuy nhiên, cũng có khả năng là bàn phím không tương ứng chính xác\n"
+"với ngôn ngữ. Ví dụ: bạn là người Thụy sĩ nói tiếng Anh và bạn có thể\n"
+"chọnbàn phím Thụy sĩ. Hay bạn nói tiếng Anh nhưng lại đang ở Quebec,\n"
+"bạn có thể liên hệ theo tình huống tương tự khi ngôn ngữ và bàn phím\n"
+"không tương ứng với nhau. Trong các trường hợp đó, bước cài đặt này\n"
+"cho phép bạn chọn một bàn phím thích hợp từ danh sách.\n"
+"\n"
+"Nhấp chuột lên nút \"%s\" để có một danh sách đầy đủ các bàn phím\n"
+"được hỗ trợ.\n"
+"\n"
+"Nếu bạn chọn tổ chức bàn phím không dựa trên bảng chữ cái la tinh,\n"
+"hộp thoại tiếp theo sẽ cho phép chọn tổ hợp phím nóng để chuyển đổi\n"
+"tổ chức bàn phím giữa La tinh và không phải La tinh."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Việc đầu tiên là chọn ngôn ngữ để dùng.\n"
+"\n"
+"Việc chọn ngôn ngữ sẽ tác động lên ngôn ngữ hiển thị tài liệu, chương\n"
+"trình cài đặt và hệ thống chung. Trước tiên hãy chọn vùng bạn sống rồi\n"
+"đến ngôn ngữ của bạn.\n"
+"\n"
+"Nhấn nút \"%s\" sẽ cho phép lựa chọn các ngôn ngữ khác sẽ được\n"
+"cài đặt lên trạm làm việc. Việc chọn các ngôn ngữ khác sẽ cài đặt\n"
+"các tập tin của ngôn ngữ đó cho phần tài liệu hệ thống và các ứng\n"
+"dụng. Ví dụ: bạn có một người từ Tây ban nha đến và dùng máy của\n"
+"bạn, chọn tiếng Anh là ngôn ngữ chính trong danh sách, và \"%s\"\n"
+"trong phần Nâng cao.\n"
+"\n"
+"Lưu ý là bạn không bị hạn chế chọn thêm ngôn ngữ. Bạn có thể chọn\n"
+"vài ngôn ngữ hay toàn bộ các ngôn ngữ bằng việc chọn hộp \"%s\".\n"
+"Chọn hỗ trợ ngôn ngữ nghĩa là phần dịch, phông chữ, trình kiểm tra\n"
+"chính tả, ... cho ngôn ngữ đó sẽ được cài đặt. Thêm nữa, hộp kiểm \"%s\"\n"
+"cho phép ép buộc hệ thống sử dụng Unicode (UTF-8). Tuy nhiên đây là\n"
+"tính năng đang thử nghiệm. Nếu chọn các ngôn ngữ khác nhau đòi hỏi các\n"
+"bộ mã khác nhau nhưng hỗ trợ\n"
+"Unicode vẫn được cài đặt.\n"
+"\n"
+"Để chuyển đổi sang các ngôn ngữ khác nhau đã cài đặt trong hệ thống,\n"
+"bạn có thể chạy dòng lệnh \"/usr/sbin/localedrake\" bằng \"root\" để thay\n"
+"đổi ngôn ngữ cho toàn bộ hệ thống. Nếu chạy dòng lệnh này bằng người\n"
+"dùng thông thường thì việc thay đổi sẽ chỉ áp dụng cho người dùng đó."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Tây ban nha"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"Thông thường, DrakX phát hiện đúng số nút của thiết bị chuột bạn có.\n"
+"Theo mặc định, DrakX cho là chuột có 2 nút và sẽ cấu hình việc mô\n"
+"phỏng nút thứ ba. Nút mô phỏng thứ ba này sẽ là việc nhấn đồng thời\n"
+"hai nút phải và trái. DrakX cũng sẽ tự động nhận ra chuột là loại PS/2,\n"
+"serial hay USB.\n"
+"\n"
+"Nếu có chuột 3 nút, không có bánh xe, bạn có thể chọn chuột \"%s\".\n"
+"DrakX sẽ cấu hình chuột và mô phỏng bánh xe cho nó: nhấn nút giữa\n"
+"và di chuyển chuột lên hay xuống.\n"
+"\n"
+"Vì lý do nào đó mà bạn muốn định rõ loại chuột khác, hãy tự chọn\n"
+"từ danh sách được cung cấp.\n"
+"\n"
+"Bạn cũng có thể chọn \"%s\" để chọn loại chuột ``generic'' là chuẩn\n"
+"chung có thể làm việc được với nhiều loại thiết bị chuột.\n"
+"\n"
+" Nếu chọn chuột khác với mặc định, bạn sẽ nhận một màn hình để chạy\n"
+"thử chuột. Sử dụng các nút và lăn bánh xe để xác minh các thiết lập\n"
+"là đúng. Nếu chuột không hoạt động đúng, hãy nhấn thanh space hoặc\n"
+"phím [Return] để bỏ qua việc chạy thử và chọn lại từ danh sách.\n"
+"\n"
+"Đôi khi chuột có bánh xe cuộn không được tự động phát hiện, nên bạn\n"
+"phải chọn nó trong danh sách. Đảm bảo là bạn chọn đúng cổng nối\n"
+"của chuột. Sau khi chọn chuột và nhấn nút \"%s\", sẽ hiện lên màn\n"
+"hình một ảnh thiết bị chuột. Hãy lăn bánh xe để khẳng định nó được kích\n"
+"hoạt đúng rồi hãy nhấn để kiểm tra các nút khác và di chuột trên màn\n"
+"hình."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "mô phỏng nút cuốn"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Chuột đa dụng | PS/2 & USB"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Hãy chọn đúng cổng. Ví dụ, cổng COM1 trong Microsoft Windows được gọi\n"
+"là ttyS0 trong GNU/Linux."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Đây là thời điểm quan trọng nhất cho việc bảo mật hệ thống GNU/Linux:\n"
+"cần phải nhập mật khẩu cho \"root\". \"Root\" là người quản trị hệ thống,\n"
+"là người duy nhất được phép tiến hành cập nhật, thêm người dùng, thay đổi\n"
+"mọi cấu hình hệ thống, v.v... Nói ngắn gọn là \"root\" có thể thực hiện tất "
+"cả!\n"
+"Đó là lý do tại sao bạn cần chọn một mật khẩu phải thật khó đoán.\n"
+"DrakX sẽ cho bạn biết nếu nó quá dễ đoán. Như bạn biết, bạn không bị ép\n"
+"nhập mật khẩu, nhưng chúng tôi khuyên bạn rất nên thực hiện. GNU/Linux\n"
+"có thể bị lỗi như các hệ điều hành khác. Do \"root\" có thể vượt quyền và\n"
+"vô ý xóa toàn bộ dữ liệu trên các phân vùng bởi việc tự nó truy cập thiếu\n"
+"thận trọng! Quan trọng là phải để thật khó khăn nếu muốn trở thành \"root"
+"\".\n"
+"\n"
+"Mật khẩu nên pha trộn các ký tự số và chữ cái và có độ dài ít nhất 8\n"
+"ký tự. Không nên ghi mật khẩu \"root\" vào đâu cả để tránh hệ thống.\n"
+"bị xâm hại\n"
+"\n"
+"Cũng đừng dùng mật khẩu quá dài hoặc phức tạp vì bạn phải nhớ nó!\n"
+"\n"
+"Mật khẩu sẽ không hiển thị trên màn hình khi bạn nhập vào. Vì vậy,\n"
+"phải nhập mật khẩu hai lần để tránh gặp lỗi khi gõ bàn phím. Nếu cả\n"
+"hai lần bạn đều gõ sai như nhau thì mật khẩu \"sai\" sẽ được dùng vào\n"
+"lần đầu bạn thực hiện kết nối.\n"
+"\n"
+"Nếu bạn muốn truy cập vào máy này sẽ được máy chủ chứng thực\n"
+"quản lý, hãy nhấn nút \"%s\".\n"
+"\n"
+"Nếu mạng của bạn dùng trong số LDAP, NIS hay các dịch vụ chứng\n"
+"thực Miền Windows PDC, hãy chọn một cái thích hợp làm \"%s\".\n"
+"Nếu bạn không biết rõ là dùng cái nào, hãy hỏi nhà quản trị mạng.\n"
+"\n"
+"Nếu gặp trục trặc với việc nhắc mật khẩu, bạn có thể chọn \"%s\"\n"
+"khi bạn không nối vào internet hoặc tin tưởng người cùng dùng máy\n"
+"với bạn."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "chứng thực"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Trình nạp khởi động là chương trình nhỏ được chạy khi khởi động máy.\n"
+"Nó chịu trách nhiệm khởi chạy toàn bộ hệ thống. Bình thường, trình nạp\n"
+"khởi động được cài đặt tự động. DrakX sẽ phân tích sector khởi động\n"
+"của đĩa và hoạt động tùy theo các trường hợp mà nó phát hiện như sau:\n"
+"\n"
+" * Nếu thấy sector khởi động của Windows, nó sẽ thay thế bằng sector\n"
+"khởi động của Grub/LILO. Cách này cho phép bạn khởi động vào Linux\n"
+"hoặc các hệ điều hành khác.\n"
+"\n"
+" * Nếu thấy sector khởi động của Grub hay LILO, nó sẽ thay bằng cái mới.\n"
+"\n"
+"Nếu không xác định được vị trí của boot sector, DrakX sẽ hỏi nơi bạn muốn\n"
+"cài đặt trình nạp khởi động. Thông thường, \"%s\" là vị trí an toàn nhất.\n"
+"Chọn \"%s\" sẽ không thực hiện cài đặt trình nạp khởi động. Chỉ dùng\n"
+"tùy chọn này khi bạn hiểu rõ việc mình làm."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Đây là lúc chọn hệ thống in ấn dùng cho máy tính này. Các hệ điều\n"
+"hành khác có thể chỉ cung cấp một loại, nhưng Mandriva cho bạn\n"
+"2 loại. Mỗi một hệ thống in ấn có một loại cấu hình riêng biệt.\n"
+"\n"
+" * \"%s\" - là chữ viết tắt của ``in, không xếp hàng'', là một lựa chọn\n"
+"nếu bạn có kết nối trực tiếp tới máy in và điều bạn muốn là có thể loại bỏ\n"
+"hiện tượng nghẽn hàng in, và bạn không có bất kỳ máy in mạng nào.\n"
+"(\"%s\" sẽ chỉ xử lý cho các trường hợp mạng rất đơn giản và có phần hơi\n"
+"chậm khi dùng trong mạng). Hãy chọn \"pdq\" nếu đây là lần đầu tiên bạn\n"
+"dùng GNU/Linux.\n"
+" \n"
+" * \"%s\" - ``Common Unix Printing System'' là lựa chọn tuyệt vời để in\n"
+"tới máy in cục bộ và cũng như máy in ở xa. Cấu hình nó đơn giản và có\n"
+"thể hoạt động như một server hay một client đối với hệ thống in \"lpd\" cũ,\n"
+"cho nên nó tương thích với các hệ điều hành cũ hơn cần các dịch vụ in.\n"
+"Nó rất mạnh, nhưng thiết lập cơ bản thì lại đơn giản là \"pdq\". Nếu cần\n"
+"giả lập một server \"lpd\", bạn cần bật chạy daemon \"cups-lpd\". \"%s\"\n"
+"có các front-end đồ họa để in hoặc chọn các tùy chọn cho máy in và\n"
+"để quản lý máy in.\n"
+"\n"
+"Nếu bây giờ bạn chọn nhưng sau này lại muốn đổi hệ thống in, bạn có thể\n"
+"thực hiện bằng việc chạy PrinterDrake từ Trung Tâm Điều Khiển của\n"
+"Mandriva Linux và nhấn nút \"%s\"."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Chuyên Gia"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"Trước tiên, DrakX sẽ phát hiện các thiết bị IDE có trong máy. Nó cũng\n"
+"sẽ rà quét các PCI SCSI Card có trên hệ thống. Nếu tìm thấy card SCSI,\n"
+"DrakX sẽ tự động cài đặt driver phù hợp.\n"
+"\n"
+"Vì việc phát hiện phần cứng không đơn giản, DrakX có thể không dò tìm\n"
+"được các đĩa cứng. Trong trường hợp đó, bạn sẽ phải tự cấu hình.\n"
+"\n"
+"Nếu như bạn phải tự chỉ ra PCI SCSI adapter, DrakX sẽ hỏi bạn có muốn\n"
+"cấu hình các tùy chọn cho nó không. Bạn nên để DrakX thăm dò phần\n"
+"cứng để đưa ra các tùy chọn cần để khởi tạo adapter. Việc này thường\n"
+"diễn ra một cách trôi chảy.\n"
+"\n"
+"Nếu DrakX không thể thăm dò được các tùy chọn thích hợp để tự động\n"
+"xác định những tham số cần cho phần cứng, bạn sẽ phải tự cấu hình\n"
+"driver."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": Nếu phát hiện thấy có card âm thanh trong hệ thống,\n"
+"nó sẽ hiển thị tại đây. Nếu nó không đúng với cái bạn đang\n"
+"có trong hệ thống, bạn có thể nhấn nút này và chọn một\n"
+"driver khác."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"DrakX sẽ hiển thị bản tóm tắt về những thông tin của hệ thống của bạn.\n"
+"Tùy theo phần cứng được cài đặt mà bạn có thể có một số hay toàn bộ\n"
+"các mục sau. Mỗi một mục có tính năng cấu hình đi theo. Nhấn lên nút\n"
+"\"%s\" tương ứng để thay đổi.\n"
+"\n"
+" * \"%s\": kiểm tra cấu hình bảng ánh xạ bàn phím (keyboard map) và thay\n"
+"đổi nếu cần thiết.\n"
+"\n"
+" * \"%s\": Kiểm tra việc chọn quốc gia hiện thời. Nếu bạn không sống\n"
+"tại nước này, hãy nhấn nút \"%s\" để chọn lại. Nếu quốc gia của bạn\n"
+"không có trong danh sách đầu tiên, hãy nhấn nút \"%s\" để xem danh\n"
+"sách tất cả các quốc gia.\n"
+"\n"
+" * \"%s\": Theo mặc định, DrakX tự xác định múi giờ dựa vào quốc gia\n"
+"bạn chọn. Nếu không đúng, hãy nhấn nút \"%s\" để hiệu chỉnh.\n"
+"\n"
+" * \"%s\": kiểm tra cấu hình chuột hiện thời và nhấn nút để thay đổi nếu\n"
+"cần thiết.\n"
+"\n"
+" * \"%s\": nhấn nút \"%s\" để mở đồ thuật cấu hình máy in. Hãy tham\n"
+"khảo chương tương ứng trong ``Starter Guide'' để biết thêm về cách\n"
+"cấu hình máy in mới. Giao diện hiện diện ở đó giống như giao diện\n"
+"thấy trong quá trình cài đặt.\n"
+"\n"
+" * \"%s\": nếu phát hiện ra card âm thanh trên hệ thống, nó sẽ hiển\n"
+"thị ở đây. Nếu bạn thấy nó không đúng với cái bạn đang có, hãy nhấn\n"
+"nút và chọn một driver khác.\n"
+"\n"
+" * \"%s\": Nếu phát hiện có TV card trong hệ thống, nó sẽ hiển thị tại đây.\n"
+"Nếu bạn có một TV card nhưng nó không được phát hiện, nhấn \"%s\" để tự\n"
+"cấu hình nó.\n"
+"\n"
+" *\"%s\": nếu cần hiệu chỉnh các tham số cho card khi bạn thấy cấu hình\n"
+"chưa đúng, nhấn \"%s\" để thay đổi.\n"
+"\n"
+" * \"%s\": Theo mặc định, DrakX sẽ cấu hình giao diện đồ họa với độ\n"
+"phân giải \"800x600\" hoặc \"1024x768\". Nếu không thích hợp cho\n"
+"bạn, hãy nhấn \"%s\" để cấu hình lại giao diện đồ họa của bạn.\n"
+"\n"
+" * \"%s\": Nếu muốn cấu hình truy cập mạng cục bộ hay truy cập\n"
+"internet. Tham khảo tài liệu hoặc dùng Trung Tâm Điều Khiển \n"
+"Mandriva Linux để thực hiện sau khi cài đặt xong để có được sự trợ\n"
+"giúp hoàn chỉnh.\n"
+"\n"
+" * \"%s\": cho phép cấu hình địa chỉ proxy HTTP và FTP nếu máy tính\n"
+"được đặt sau một proxy server.\n"
+"\n"
+" * \"%s\": mục này cho phép thay đổi lại mức bảo mật đã được lập từ\n"
+"bước trước ().\n"
+"\n"
+" * \"%s\": Nếu muốn kết nối máy tính vào internet, hãy lập tường lửa\n"
+"để ngăn chặn xâm nhập. Hãy tham khảo phần tương ứng trong\n"
+"``Starter Guide'' để biết thông tin về thiết lập tường lửa.\n"
+"\n"
+" * \"%s\": nếu muốn thay đổi cấu hình của trình nạp khởi động, hãy\n"
+"nhấn nút này. Nên dùng chỉ khi bạn là người dùng thành thạo. Hãy tham\n"
+"khảo tài liệu đi kèm hoặc trợ giúp trực tuyến về cấu hình trình nạp khởi\n"
+"động trong Trung Tâm Cấu Hình Mandriva Linux.\n"
+"\n"
+" * \"%s\": bạn có thể điều khiển dịch vụ nào sẽ được chạy trên máy\n"
+"này. Nếu bạn có kế hoạch dùng máy này làm máy chủ, hãy xem lại\n"
+"thiết lập này."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN card"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Giao Diện Đồ Họa"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Hãy chọn ổ cứng mà bạn muốn xoá để cài đặt phân vùng Mandriva Linux\n"
+"mới. Hãy thận trọng, mọi dữ liệu có trên đó sẽ bị mất và không thể khôi\n"
+"phục lại được !"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Nhấn chuột lên \"%s\" nếu muốn xóa mọi dữ liệu và phân vùng hiện có\n"
+"trên đĩa cứng này. Hãy thận trọng, sau khi nhấn \"%s\", bạn sẽ không\n"
+"thể khôi phục dữ liệu và các phân vùng hiện có trên đĩa cứng này, kể\n"
+"cả dữ liệu của Windows.\n"
+"\n"
+"Nhấn chuột lên \"%s\" để thoát bước này và bạn sẽ không mất\n"
+"dữ liệu và các phân vùng hiện có trên đĩa cứng này."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Tiếp theo ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Về trước"
+
diff --git a/perl-install/install/help/po/wa.po b/perl-install/install/help/po/wa.po
new file mode 100644
index 000000000..55d454d50
--- /dev/null
+++ b/perl-install/install/help/po/wa.po
@@ -0,0 +1,1994 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Pablo Saratxaga <pablo@mandriva.com>, 2000,2002,2003,2004.
+# Lorint Hendschel <lorinthendschel@skynet.be>, 2002.
+# Lucyin Mahin <lucyin@walon.org>, 2002,2003,2005.
+# Pablo Saratxaga <pablo@walon.org>, 2003, 2004, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2005-02-24 21:42+0100\n"
+"Last-Translator: Pablo Saratxaga <pablo@walon.org>\n"
+"Language-Team: Walloon <linux-wa@walon.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: KBabel 1.0.2\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"Divant d' aler pus avant, vos dvrîz lére atintivmint l' licince.\n"
+"Ele covere li distribucion Mandriva Linux, si vos estoz d' acoird\n"
+"avou les termes del licince, clitchîz sol boesse «%s».\n"
+"Ôtrumint, clitchîz sol boton «%s» po renonder l' copiutrece."
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux est on sistinme multi-uzeus, dj' ô bén, tchaeke uzeu pout aveur\n"
+"èn evironmint, des preferinces eyet des fitchîs da lu. Vos ploz lére li\n"
+"«Guide di l' Uzeu» po ndè saveur pus long. Mins, å contråve di «root»,\n"
+"k' est l' administreu, les uzeus ki vos alez radjouter chal n' åront\n"
+"nén l' droet di candjî ene sacwè so l' éndjole apus k' les fitchîs eyet\n"
+"apontiaedjes da zels. Vos dvroz fé pol moens èn uzeu normå po vos minme.\n"
+"Ci conte uzeu la c' est po moussî el copiutrece po l' eployaedje di tos\n"
+"les djoûs. Minme si çoula shonne ahessåve di moussî tofer come «root»,\n"
+"c' est ossu ene sacwè di foirt dandjureu! Li pus ptite måcule pout\n"
+"signifyî kel sistinme da vosse ni rotrè gote pus. Si vos fjhoz ene\n"
+"consecante aroke come èn uzeu normå, li pé ki vs pout ariver c' est di\n"
+"piede sacwants fitchîs et informåcions, mins nén li sistinme en etir.\n"
+"\n"
+"D' aprume, vos dvoz dner vosse no e prumî tchamp. C' est nén obligatwere, "
+"bén\n"
+"seur - et vos ploz bén î mete çou k' vos vloz. DrakX irè adon prinde li "
+"prumî mot\n"
+"ki vos avoz tapé eyet l' passer el tchamp «%s». Ci no la c' est\n"
+"l' no ki l' éndjole vos cnoxhe; çou ki vos dvoz taper el purnea di bénvnowe\n"
+"po moussî el copiutrece. Vos l' poloz candjî. Vos ploz mete çou k' vos vloz\n"
+"mins di moens di ût letes; et rén ki des ptitès letes sins accints, des\n"
+"chifes, li loyeure («-») ou li sene sorlignî («_»).\n"
+"Après çoula, vos dvoz taper vosse sicret. Li scret d' èn uzeu normå, sins\n"
+"advintaedjes sipeciås n' est nén ossu impôrtant kel ci da «root», do pont\n"
+"d' vuwe del såvrité, mins c' est tolminme nén ene råjhon po n' nén\n"
+"fé atincion ås screts des uzeus - c' est vos fitchîs ki sont-st e risse.\n"
+"\n"
+"Si vos clitchîz so «%s» l' uzeu srè radjouté po d' bon avou\n"
+"les informåcions ki vs avoz dné, et les tchamps sront vudîs po vos pleur\n"
+"e radjouter èn ôte. Vos e ploz radjouter ostant ki vos vloz: onk po tchaeke\n"
+"di vos soçons, po vosse pere, vosse sour, par egzimpe. Cwand vos avoz fini\n"
+"d' endè radjouter, clitchîz so «%s».\n"
+"\n"
+"Si vos clitchîz sol boton «%s» vos ploz candjî l' shell eployî pa\n"
+"cist uzeu la (li prémetou shell est li «bash»).\n"
+"\n"
+"Cwand vos avoz fini di radjouter tos les uzeus, on vs dimandrè di tchoezi\n"
+"èn uzeu ki srè otomaticmint elodjî cwand l' copiutrece est enondêye.\n"
+"Si cisse fonccionålité la vos interesse (et ki l' såvrité n' est nén\n"
+"on problinme locålmint), tchoezixhoz l' uzeu eyet li manaedjeu di\n"
+"purneas ki vos vloz, et clitchîz so «%s». Si vos n' voloz nén\n"
+"cisse fonccionålité, disclitchîz «%s»."
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "Voloz vs eployî cisse fonccionålité chal?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Chal pa dzeur i gn a ene djivêye des pårticions Linux k' i gn a so vosse\n"
+"deure plake et ki on stî detectêyes. Vos ploz wårder les tchuzes fwaites\n"
+"pa l' macrea, ele sont comifåt po les cas les pus comons.\n"
+"Si vos les voloz candjî vos dvoz fé å moens ene pårticion raecene («/»).\n"
+"Ni prindoz nén ene trop ptite grandeu ôtrumint vos n' pôrîz astaler "
+"åjheymint\n"
+"des programes, fåte di plaece. Si vos vloz mete vos dnêyes so ene pårticion\n"
+"diferinne, vos dvroz ossu fé ene po «/home» (çou ki vos pôroz fé seulmint "
+"si\n"
+"vos avoz pus d' ene pårticion del sôre Linux).\n"
+"\n"
+"Po l' informåcion, tchaeke pårticion est mostrêye come çoula: «no», "
+"«grandeu».\n"
+"\n"
+"Li «no» est costrût come çouchal: «sôre del deure plake» + «limero del deure "
+"plake» +\n"
+"«limero del pårticion» (par egzimpe, hd+a+1 --> «hda1»)\n"
+"\n"
+"Li «sôre del deure plake» est «hd» si vosse deure plake est del sôre IDE,\n"
+"oudonbén «sd» si elle est del sôre SCSI.\n"
+"\n"
+"Li «limero del deure plake» est todi ene lete pa drî «hd» ou «sd».\n"
+"Avou les plakes IDE on a:\n"
+"\n"
+" * «a» pol plake mwaisse sol prumî controleu IDE,\n"
+"\n"
+" * «b» pol plake esclåve sol prumî controleu IDE,\n"
+"\n"
+" * «c» pol plake mwaisse sol deujhinme controleu IDE,\n"
+"\n"
+" * «d» pol plake esclåve sol deujhinme controleu IDE.\n"
+"\n"
+"Avou les plakes SCSI, «a» vout dire «prumire deure plake», «b» vout dire "
+"«deujhinme deure plake», evnd..."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"L' astalaedje del distribucion Mandriva Linux si fwait a pårti di\n"
+"sacwantès plakes lazer diferinnes. Si on pacaedje k' a stî tchoezi\n"
+"est so ene ôte plake lazer, DrakX frè rexhe li plake k' est el lijheu\n"
+"d' plakes lazer eyet vos dmander d' î mete li cene k' i fåt.\n"
+"Si vos n' avoz nén l' plake dimandêye dizo l' mwin, i vs sufixh di\n"
+"clitchî so «%s», les pacaedjes corespondants èn seront nén astalés."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"Asteure c' est l' moumint di specifyî kés programes ki vos vloz astaler so\n"
+"voste éndjole. I gn a des meyes et des meyes di pacaedjes pol Mandriva "
+"Linux,\n"
+"po rinde li tchoezixhaedje pus simpe il ont stî metous dins des groupes\n"
+"di programes sorlon les bouyes k' i permetèt d' fé.\n"
+"\n"
+"Les pacaedjes sont metous dins des groupes corespondant a des uzaedjes\n"
+"ki pôrént esse fwaits. Vos ploz prinde et maxhî des programes\n"
+"di sacwantes di ces categoreyes la, par egzimpe èn astalaedje «Posse "
+"éndjolrece»\n"
+"n' espaitche nén d' astaler des programes del sôre «Programaedje».\n"
+"\n"
+" * «%s»: si vos tuzez a-z eployî voste éndjole come on posse\n"
+"éndjolrece (dj' ô bén: èn uzaedje personel, å contråve d' èn uzaedje\n"
+"come sierveu metans), adon tchoezixhoz onk ou pluzieurs des programes\n"
+"di ç' categoreye chal.\n"
+"\n"
+" * «%s»: si l' éndjole va-z esse eployeye po programer,\n"
+"tchoezixhoz les pacaedjes ki vos vloz chal.\n"
+"Li groupe especiå «LSB» aponteyrè vosse sistinme po shure,\n"
+"ostant ki possibe, les specifiaedjes del «Linux Standard Base».\n"
+"\n"
+" Tchoezi l' groupe «LSB» astalrè eto les naweas del séreye «2.4»,\n"
+"el plaece do prémetou nawea «2.6». Çoula c' est po-z esse 100%% copatibe "
+"avou LSB. Mins nerén, si vos n' tchoezixhoz nén li groupe «LSB»\n"
+"vos ploz tot l' minme aveur on sistinme k' est copatibe LSB cåzu a 100%%.\n"
+"\n"
+" * «%s»: al fén, si l' såme di l' éndjole c' est d' esse on sierveu,\n"
+"vos pôroz les kés siervices vos vloz vey astalés so l' éndjole.\n"
+"\n"
+" * «%s»: chal c' est wice ki vos alez tchoezi vosse\n"
+"evironmint grafike favori. I fåt ndè tchoezi pol moens onk si vos vloz\n"
+"on posse éndjolrece avou ene eterface grafike!\n"
+"\n"
+"Cwand vos alez avou l' sori å dzeu do no d' ene categoreye, ene racsegne "
+"srè\n"
+"håynêye avou on court discrijhaedje di çou a cwè i pout siervi.\n"
+"\n"
+"Vos ploz clitchî sol tchuze «%s». C' est\n"
+"ahessåve si vos cnoxhoz on pô les pacaedjes k' i gn a et çki vos vloz;\n"
+"oudonbén si vos vloz on contrôle totå so çki srè astalé ou nén.\n"
+"\n"
+"Si vos cmincîz l' astalaedje e môde «%s», vos ploz disclitchî\n"
+"totes les categoreyes po nén aveur des noveas pacaedjes d' astalés,\n"
+"seulmint les cis k' vos avîz ddja davance sront astalés. Çouchal est\n"
+"ahessåve po rpårer ou mete a djoû on sistinme k' est ddja sol deure plake.\n"
+"\n"
+"Si vos n' tchoezixhoz nole categoreye po l' astalaedje (et k' c' est nén on\n"
+"metaedje a djoû), on purnea vos dmandrè li sôre di l' astalåcion minimom ki\n"
+"vos vloz. Çoula pout esse:\n"
+"\n"
+" * «%s» astale li moens possibe di pacaedjes po tot l' minme aveur\n"
+"l' eterface grafike X11 en alaedje;\n"
+"\n"
+" * «%s» astale li sistinme di båze eyet sacwantes\n"
+"usteyes avou leu documintåcion. C' est l' astalåcion a l' idêye po on\n"
+"sierveu.\n"
+"\n"
+" * «%s» n' astalrè ki vormint li minimom po ki\n"
+"l' éndjole s' enonde eyet aveur on sistinme Linux en alaedje; rén k' e\n"
+"roye di comande. Ciste astalåcion chal a mezåjhe di 65 Mo seulmint."
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "Metaedje a djoû"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "Avou li documintåcion di båze"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "Astalåcion vormint minimåle"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"Finålmint, sorlon vosse tchuze di tchoezi ou nén les pacaedjes onk après\n"
+"l' ôte, vos voeroz èn åbe avou tos les pacaedjes metous dins des groupes\n"
+"et des sorgroupes. Tot naiviant dins l' åbe vos ploz tchoezi des groupes\n"
+"ou des sorgroupes etirs, ou des pacaedjes tot seus.\n"
+"\n"
+"Tchaeke côp ki vos tchoezixhoz on pacaedje dins l' åbe, si discrijhaedje\n"
+"est mostré sol droete ki vs dit a cwè i pout bén siervi.\n"
+"\n"
+"!! Si on pacaedje di sierveu a stî tchoezi, soeye-t i en esprès, ou k' i\n"
+"fwait pårteye d' on groupe, on vos dmandrè d' acertiner ki vos vloz\n"
+"vormint astaler ces sierveus la. Avou Mandriva Linux tot l' minme ké\n"
+"sierveu k' a stî astalé est, avou les prémetowès tchuzes, metou en\n"
+"alaedje tins di l' enondaedje di l' éndjole. Minme s' i sont seurs\n"
+"et k' i gn a nou cnoxhou problinme å moumint ki l' distribucion a stî\n"
+"fwaite, i s' pout k' des trôs di såvrité soeyexhe discovrous après ki\n"
+"cisse modêye chal di Mandriva Linux fouxhe fineye. Si vos n' savoz nén çou\n"
+"k' on siervice dné est supôzé di fé, ou pocwè k' il est astalé, adon\n"
+"clitchîz so «%s». Si vos clitchîz so «%s» les siervices mostrés sront\n"
+"astalés eyet enondés otomaticmint. !!\n"
+"\n"
+"Li tchuze «%s» simplumint fwait ki l' purnea \n"
+"d' adviertixhmint cwand on pacaedje est tchoezi otomaticmint n' est\n"
+"nén håyné. Les pacaedjes tchoezi otomaticmint c' est pask' i gn a des\n"
+"pacaedjes tchoezis k' ont des aloyances avou des ôtes pacaedjes, et \n"
+"k' i les fåt astaler avou po-z aveur l' astalåcion fwaite a môde\n"
+"di djin.\n"
+"\n"
+"Li ptite imådje d' ene plakete al valeye del djivêye vos permete di\n"
+"tcherdjî ene djivêye di pacaedjes tchoezis k' åreut stî fwaite å moumint\n"
+"d' èn ôte astalaedje. Si vos clitchîz so ciste imådjete chal, i vos srè\n"
+"dmandé di mete li plakete fwaite al fén di l' astalaedje di dvant.\n"
+"Loukîz l' aidance do deujhinme pont del dierinne etape po saveur kimint\n"
+"fé ene sifwaite plakete."
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "Aloyances otomatikes"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+"«%s»: si vos clitchîz so «%s» çoula enondrè li macrea\n"
+"d' apontiaedje des scrireces. Loukîz li tchaptrê corespondant do «Guide\n"
+"d' Enondaedje» po pus d' informåcions sol manire d' apontyî ene nouve\n"
+"sicrirece. L' eterface prezintêye e nosse guide rishonne al cisse håynêye\n"
+"tins di l' astalåcion."
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"Asteure, vos poloz bén tchoezi les kés siervices ki s' divèt mete en "
+"alaedje\n"
+"cwand c' est ki vosse copiutrece s' enonde.\n"
+"\n"
+"Chal sont prezintés tos les siervices k' i gn a el astalåcion do moumint.\n"
+"Prindoz sogne delzès verifyî et disclitchîz les cis k' i gn end a pont\n"
+"tofer mezåjhe a l' enondaedje.\n"
+"\n"
+"Cwand vosse tchoezixhoz on siervice, ene racsegne aparexhe po vs\n"
+"dire çou ki l' siervice fwait. Si vos n' estoz nén seur si on siervice\n"
+"est ahessåve por vos ou nén, vos estoz todi a houte tot l' leyant a si\n"
+"prémetowe valixhance.\n"
+"\n"
+"!!\n"
+"Loukîz a vosse sogne si voste éndjole serè eployeye come sierveu: c' est\n"
+"dandjureu mî di n' nén enonder les siervices ki vos n' avoz nén dandjî!\n"
+"Rimimbrez vs ki des siervices k' i gn a polèt esse riskeus s' i sont\n"
+"metous so on sierveu. Tchoezixhoz djusse les siervices ki vos avoz dandjî.\n"
+"!!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+"GNU/Linux manaedje l' eure e tins GMT (coistrece di Greenwich) et l' candje\n"
+"en eure locåle sorlon li coisse d' eureye ki vs avoz tchoezi.\n"
+"C' est possibe di l' dismete si vos tchoezixhoz «%s»,\n"
+"insi vos eployroz li minme eure pol sistinme eyet pol divintrinne ôrlodje.\n"
+"Çoula pout esse ahessåve cwand i gn a èn ôte sistinme d' operance\n"
+"so l' éndjole, et k' i n' sait nén eployî li tins universel.\n"
+"\n"
+"Li tchuze «%s» va sincronijhî otomaticmint\n"
+"l' ôrlodje do sistinme. Po çoula on raloyaedje est fwait so on sierveu "
+"d' eure\n"
+"sol daegntoele. Tchoezixhoz onk, sol djivêye ki vs est prezintêye, ki "
+"n' soeye\n"
+"nén lon erî di wice ki vos dmorez. Bén seur vos dvoz aveur on raloyaedje\n"
+"al rantoele en alaedje po-z eployî cisse tchuze chal. Çoula astalrè so "
+"voste\n"
+"éndjole on sierveu d' eure ki pôreut ossu esse eployî pa d' ôtès\n"
+"copiutreces, par egzimpe les cenes d' ene rantoele locåle, si vos vloz."
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "Sincronijhaedje otomatike di l' eure"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"Cåte grafike\n"
+"\n"
+" Li programe d' astalaedje fwait normålmint otomaticmint li deteccion\n"
+"eyet l' apontiaedje del cåte grafike k' i gn a dins voste éndjole.\n"
+"Si c' est nén l' cas, vos ploz tchoezi e l' djivêye li cåte ki vos\n"
+"avoz po d' bon.\n"
+"\n"
+" S' i gn a des sierveus grafikes diferins po vosse cåte grafike, des cis\n"
+"k' i gn a avou di l' acceleråcion 3D, des ôtes sins, on vs propôzrè di\n"
+"tchoezi l' ci ki vs convént l' mî."
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"X (po Sistinme di Purneas X) est l' miercour di l' eterface grafike di\n"
+"GNU/Linux, ki tos les evironmints grafikes (KDE, Gnome, AfterStep,\n"
+"WindowsMaker, evnd.) ki vnèt avou Mandriva Linux end ont mezåjhe.\n"
+"\n"
+"Vos åroz ene djivêye des diferins parametes a candjî po-z aveur\n"
+"voste eterface grafike a l' idêye:\n"
+"\n"
+"Cåte grafike\n"
+"\n"
+" Li programe d' astalaedje fwait normålmint otomaticmint li deteccion\n"
+"eyet l' apontiaedje del cåte grafike k' i gn a dins voste éndjole.\n"
+"Si c' est nén l' cas, vos ploz tchoezi e l' djivêye li cåte ki vos\n"
+"avoz po d' bon.\n"
+"\n"
+"S' i gn a des sierveus grafikes diferins po vosse cåte grafike, des cis\n"
+"k' i gn a avou di l' acceleråcion 3D, des ôtes sins, on vs propôzrè di\n"
+"tchoezi l' ci ki vs convént l' mî.\n"
+"\n"
+"\n"
+"\n"
+"Waitroûle\n"
+"\n"
+" L' astaleu fwait normålmint li deteccion eyet apontiaedje otomatike\n"
+"del waitroûle raloyeye a voste éndjole. Si ça n' va nén tot seu, vos ploz\n"
+"tchoezi vosse waitroûle dins ene djivêye.\n"
+"\n"
+"\n"
+"\n"
+"Finté\n"
+"\n"
+" Vos ploz tchoezi chal les fintés eyet nombe di coleurs emey les tchuzes\n"
+"possibes po voste éndjolreye. Tchoezixhoz çou ki vs convént l' mî (vos\n"
+"pôroz candjî çoula pus tård, après l' astalaedje, si vos vloz). Èn egzimpe\n"
+"do tchoezi apontiaedje est håyné e l' waitroûle.\n"
+"\n"
+"\n"
+"\n"
+"Saye\n"
+"\n"
+" Sorlon voste éndjolreye, i s' pout ki ciste intrêye chal n' aparexhe "
+"nén.\n"
+"\n"
+" Li sistinme sayrè d' enonder ene waitroûle grafike al finté dmandêye.\n"
+"Si vos ploz vey li messaedje håyné tins del saye, clitchîz so «%s», eyet\n"
+"DrakX pasrè a l' etape shuvante. Si vos n' savoz vey li messaedje, çoula\n"
+"vout dire k' ene sacwè n' a nén stî avou l' apontiaedje, eyet l' saye\n"
+"si va djoker après 12 segondes, vos ramoennant å menu. Vos î pôroz candjî\n"
+"les valixhances disk' a-z aveur ene eterface grafike ki rote comifåt.\n"
+"\n"
+"\n"
+"\n"
+"Tchuzes\n"
+"\n"
+" Chal vos ploz tchoezi si vos vloz ou nén ki l' éndjole enonde\n"
+"otomaticmint l' eterface grafike a l' enondaedje. Bén seur, vos alez\n"
+"dire «%s» si voste éndjole va fé do sierveu, ou si vos n' avoz nén\n"
+"polou apontyî comifåt l' eterface grafike."
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"Waitroûle\n"
+"\n"
+" L' astaleu fwait normålmint li deteccion eyet apontiaedje otomatike\n"
+"del waitroûle raloyeye a voste éndjole. Si ça n' va nén tot seu, vos ploz\n"
+"tchoezi vosse waitroûle dins ene djivêye."
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"Finté\n"
+"\n"
+" Vos ploz tchoezi chal les fintés eyet nombe di coleurs emey les tchuzes\n"
+"possibes po voste éndjolreye. Tchoezixhoz çou ki vs convént l' mî (vos\n"
+"pôroz candjî çoula pus tård, après l' astalaedje, si vos vloz). Èn egzimpe\n"
+"do tchoezi apontiaedje est håyné e l' waitroûle."
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"S' i gn a des sierveus grafikes diferins po vosse cåte grafike, des cis\n"
+"k' i gn a avou di l' acceleråcion 3D, des ôtes sins, on vs propôzrè di\n"
+"tchoezi l' ci ki vs convént l' mî."
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"Tchuzes\n"
+"\n"
+" Chal vos ploz tchoezi si vos vloz k' l' eterface grafike soeye en alaedje "
+"cwand\n"
+"l' éndjole est enondêye. Bén seur, si voste éndjole va-st ovrer come on "
+"sierveu,\n"
+"ou si vos n' arivez nén a-z apontyî l' cåte videyo, vos ploz responde «%s»."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"Asteure, vos dvoz tchoezi wice ki vos vloz astaler vosse sistinme\n"
+"d' operance Mandriva Linux so vosse deure plake. Si l' plake est vude,\n"
+"ou si les sistinmes d' operance k' i gn a ddja prindèt tote li plaece,\n"
+"vos avoz mezåjhe del pårti. Fé on pårtixhaedje d' ene deure plake çoula\n"
+"vout dire del pårti lodjicmint po fé del plaece po-z astaler vosse novea\n"
+"sistinme Mandriva Linux.\n"
+"\n"
+"Come, on côp ki li pårtixhaedje est fwait, on n' sait rivni en erî\n"
+"(normålmint), les apurdisses ont sovint sogne ou peu di s' enonder.\n"
+"Awoureuzmint, i gn a on macrea ki vs aidrè po l' fé.\n"
+"Divant di cmincî, lijhoz cisse seccion chal en etir, et sortot purdoz\n"
+"bén vosse tins.\n"
+"\n"
+"Sorlon l' apontiaedje di vosse deure plake, pluzieurès solucions\n"
+"sont possibes:\n"
+"\n"
+" * «%s»: çouchal frè tot simplumint on pårtixhaedje\n"
+"otomatike del plaece vude so les deures plakes da vosse;\n"
+"vos n' avoz a vos preyocuper di rén après.\n"
+"\n"
+" * «%s»: li macrea a detecté ene ou pus di\n"
+"pårticions Linux k' egzistèt ddja so vosse deure plake.\n"
+"Si vos les vloz wårder, prindoz cisse tchuze chal.\n"
+"On vs dimandrè adon di tchoezi les ponts di montaedje des pårticions,\n"
+"les vîs ponts di montaedjes sront metous come prémetowès valixhances,\n"
+"et pol pus grande pårt c' est ene bone idêye delzès wårder.\n"
+"\n"
+" * «%s»: si Microsoft Windows est\n"
+"astalé so vosse deure plake et s' i prind tote li plaece k' i gn a,\n"
+"vos dvoz fé del plaece libe po les dnêyes di Linux. Po çoula vos ploz\n"
+"disfacer li pårticion Microsoft Windows et totes ses dnêyes (veyoz les\n"
+"solucions «Disfacer li plake etire») oudonbén raptiti vosse pårticion\n"
+"FAT di Microsoft Windows.\n"
+"Li candjmint d' grandeu des pårticions si pout fé sins piede des dnêyes,\n"
+"a condicion del disfragminter d' aprume, eyet kel pårticion soeye ene\n"
+"pårticion FAT. C' est hôtmint ricmandé di fé ene copeye di såvrité.\n"
+"Cisse solucions est ricmandêye si vos vloz eployî Mandriva Linux et\n"
+"Microsoft Windows sol minme copiutrece.\n"
+"\n"
+"Divant di tchoezi cisse solucion, i vos fåt comprinde kel grandeu di vosse\n"
+"pårticion Microsoft Windows srè pus ptite ki çk' ele est asteure.\n"
+"Dj' ô bén, vos åroz moens di plaece libe so Microsoft Windows po wårder\n"
+"les dnêyes da vosse ou astaler des noveas programes.\n"
+"\n"
+" * «%s»: si vos vloz disfacer totes les dnêyes k' i gn a\n"
+"so vosse deure plake po mete el plaece li sistinme Mandriva Linux,\n"
+"vos ploz tchoezi cisse tchuze chal.\n"
+"Prindoz asteme k' avou cisse solucion chal vos n' pôroz nén rivni en erî\n"
+"on côp ki vos avoz acertiné vosse tchuze.\n"
+"\n"
+" !! Avou cisse tchuze chal, totes les dnêyes del deure plake sront "
+"pierdowes !!\n"
+"\n"
+" * «%s»: çouchal va simplumint disfacer ttafwait sol\n"
+"deure plake eyet cmincî on novea pårtixhaedje. Totes les dnêyes sol\n"
+"deure plake vont esse pierdowes.\n"
+"\n"
+" !! Avou cisse tchuze chal, Tot çk' i gn a el deure plake srè pierdou. !!\n"
+"\n"
+" * «%s»: si vos vloz fé manuwelmint\n"
+"li pårtixhaedje del deure plake, vos ploz tchoezi çouchal.\n"
+"Mins prindoz asteme, avou cisse solucion chal vos pôroz fé des poûxhantès\n"
+"mins dandjureusès sacwès.\n"
+"Vos ploz åjheymint piede totes vos dnêyes. Adon, ni tchoezixhoz nén\n"
+"çouchal, a moens di vormint saveur çou k' vos fjhoz.\n"
+"Po pus di racsegnes sol manire d' eployî l' usteye DrakDisk,\n"
+"loukîz li seccion «Manaedjî vos pårticions» do manuwel."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "Eployî les pårticions k' i gn a"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "Disfacer li plake etire"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"Vo nos la. L' astalåcion a stî fineye et asteure vosse sistinme GNU/Linux\n"
+"est presse a-z esse eployî. Vos n' avoz k' a clitchî sol boton «%s»\n"
+"po renonder l' éndjole. Èn rovyîz nén di bodjî l' sopoirt d' astalaedje\n"
+"(plakete ou plake lazer) do lijheu. Li prumire sacwè ki vos voeroz on côp\n"
+"l' éndjole renondêye, djusse après li verifiaedje di l' éndjolreye, c' est\n"
+"li menu d' l' enondrece, ki vs dene li tchuze di ké sistinme d' operance "
+"enonder.\n"
+"\n"
+"Li boton «%s» mostere deus ôtes botons:\n"
+"\n"
+" * «%s»: po fé ene plakete ki vs\n"
+"permetrè di fé ene ôte astalåcion pareye al cene ki vos vnoz d' fé,\n"
+"mins di manire otomatike, sins mezåjhe d' ene djin po fé les tchuzes.\n"
+"\n"
+" Notez k' i gn a co deus ôtes tchuzes on côp ki vos avoz clitchî ç' boton "
+"la:\n"
+"\n"
+" * «%s». Po ene astalåcion dimey-otomatike, l' etape do pårtixhaedje\n"
+"(et seulmint cisse etape la) dimorant eteractive;\n"
+"\n"
+" * «%s». Astalåcion ttafwaitmint otomatike: li deure plake est\n"
+"completmint riscrîte et rpårteye, totes les dnêyes k' i gn aveut sront\n"
+"pierdowes.\n"
+"\n"
+" Cisse fonccionålité la est foirt ahessåve po-z astaler so on grand nombe\n"
+"d' éndjoles similaires. Loukîz eto li seccion so l' Oto-astalaedje sol\n"
+"waibe da nosse.\n"
+"\n"
+" * «%s»(*): schapêye li tchuze des pacaedjes\n"
+"k' a stî fwaite tins di l' astalaedje. Adonpu, cwand vos froz ene nouve\n"
+"astalåcion, metoz l' plakete dins l' lijheu ey enonder l' astalaedje\n"
+"tot-z alant sol waitroûle d' aidance (tchoûkîz sol tape [F1]), et s' taper\n"
+"« linux defcfg=\"floppy\" » sol roye d' intrêye et poy li tape [Enter].\n"
+"\n"
+"(*) I vs fåt ene plakete FAT-abwesnêye (po ndè fé ene a pårti di GNU/Linux,\n"
+"tapez « mformat a: » sol roye di comande)."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "Fé li plakete d' astalaedje otomatike"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"Si vos avoz tchoezi d' eployî des pårticions GNU/Linux k' i gn aveut\n"
+"davance, vos vloz motoit lzès rabwesner po disfacer les dnêyes\n"
+"k' ele ont å dvins et raveur del plaece. Si vos vloz fé çoula,\n"
+"i vs fåt tchoezi eto les pårticions ki vos vloz rabwesner.\n"
+"\n"
+"Notez k' i n' a nén mezåjhe di rabwesner totes les pårticions ki sont\n"
+"ddja fwaites ey abwesnêyes po GNU/Linux. Vos l' divoz fé po les\n"
+"pårticions ki sievront pol cour do sistinme d' operance (dj' ô bén,\n"
+"les pårticions ki sront montêyes come « / », « /usr » ou co « /var »),\n"
+"mins vos ploz reployî sins abwesnaedje des pårticions avou des dnêyes\n"
+"ki vos vloz wårder (come c' est l' cas tipike del pårticion avou «/home»).\n"
+"\n"
+"Fijhoz bén atincion å moumint d' tchoezi les pårticions.\n"
+"On côp l' abwesnaedje fwait, totes les dnêyes del pårticion sront\n"
+"pierdowes; vos n' les pôroz nén rapexhî.\n"
+"\n"
+"Clitchîz so «%s» cwand vos estoz presse po l' abwesnaedje des\n"
+"pårticions.\n"
+"\n"
+"Clitchîz so «%s» si vos vloz tchoezi ene ôte pårticion po-z astaler\n"
+"vosse novea sistinme d' operance Mandriva Linux.\n"
+"\n"
+"Clitchîz so «%s» si vos vloz tchoezi les pårticions ki sront\n"
+"verifieyes po vey s' i gn a des måvas bloks sol deure plake."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"Å moumint ki vos astalez Mandriva Linux, i s' pout bén k' i gn åye\n"
+"des pacaedjes k' ont stî metous a djoû dispoy li moumint do fijhaedje\n"
+"del distribucion. Motoit k' des bugs ont stî coridjîs, ou des problinmes\n"
+"di såvrité. Por vos profiter di ces metaedjes a djoû, on vs propôze\n"
+"d' aberweter di so l' daegntoele les metaedjes a djoû k' i pout gn aveur.\n"
+"Tchoezixhoz «%s» si vos avoz on raloyaedje al daegntoele en alaedje, ou\n"
+"«%s» si vos inmez mî d' ratinde et fé les metaedjes a djoû pus tård.\n"
+"\n"
+"Si vos tchoezixhoz «%s», i gn årè ene djivêye des plaeces di wice k' on\n"
+"pout prinde les metaedjes a djoû ki vs serè mostrêye. Tchoezixhoz li plaece\n"
+"li pus près d' vos. Adonpu, èn åbe di tchoezixhaedje des pacaedjes\n"
+"aparetrè: verifyîz l' tchuze, et clitchîz so «%s» po-z aberweter\n"
+"ey astaler les tchoezi(s) pacaedje(s), oudonbén clitchîz so «%s»\n"
+"po leyî ouve."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"Chal, c' est po tchoezi l' livea di såvrité ki vos vloz po voste éndjole.\n"
+"Ene rîle simpe c' est ki pus voste éndjole est egzpozêye, pus les dnêyes\n"
+"k' i gn a å dvins sont impôrtantes, pus li livea di såvrité doet esse hôt.\n"
+"Mins ossu, on hôt livea di såvrité çoula vout dire ki c' est moens åjhey\n"
+"d' eployî li copiutrece.\n"
+"\n"
+"Si vos n' savoz cwè tchoezi, leyîz li prémetou livea. Vos l' pôroz candjî\n"
+"pus tård avou l' usteye draksec a pårti do cinte di contrôle di Mandriva "
+"Linux.\n"
+"\n"
+"Li tchamp «%s» c' est po dner l' adresse emile d' ene sakî responsåve del\n"
+"såvrité po ciste éndjole ci. Les messaedjes sol såvrité lyi sront evoyîs."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "Manaedjeu pol såvrité"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"Chal, vos dvoz tchoezi so kéne/kénès pårticion(s) ki vos voloz astaler\n"
+"vosse sistinme Mandriva Linux. Si vos pårticions ont ddja stî fwaites\n"
+"(p. egz. li dierin côp ki vos avoz astalé GNU/Linux ou bén avou ene ôte\n"
+"usteye di pårtixhaedje), vos les ploz eployî. Ôtrumint, des pårticions dvèt\n"
+"esse defineyes so vosse deure plake. Ça vout dire ki vos alez dispårti\n"
+"lodjicmint li deure plake di voste éndjole e diferinnes coines separêyes\n"
+"di ene l' ôte.\n"
+"\n"
+"Po fé les pårticions, vos dvoz d' aprume tchoezi li plake a pårti e\n"
+"clitchant so «hda» pol prumire plake IDE, «hdb» pol deujhinme, «sda» pol \n"
+"prumire plake SCSI, et vos nd åroz.\n"
+"\n"
+"Pol pårtixhaedje del deure plake tchoezeye, vos ploz prinde ene di ces\n"
+"tchuzes chal:\n"
+"\n"
+" * «%s»: cisse tchuze va disfacer totes les pårticions k' i gn a sol "
+"tchoezeye deure plake.\n"
+"\n"
+" * «%s»: cisse tchuze va fé des pårticions ext3 pol sistinme et ene di "
+"swap e prindant li plaece di libe k' i gn a sol deure plake et carculant "
+"otomaticmint li grandeu li meyeuse.\n"
+"\n"
+"«%s» dene des ôtes tchuzes, pus spepieuses:\n"
+"\n"
+" * «%s»: po schaper li tåvlea di pårtixhaedje\n"
+"so ene plakete. Ahessåve pol poleur rapexhî pus tård, s' i fåt.\n"
+"C' est hôtmint ricmandé del fé.\n"
+"\n"
+" * «%s»: vos permete di rapexhî\n"
+"on tåvlea di pårtixhaedje k' a stî schapé so plakete d' avance.\n"
+"\n"
+" * «%s»: si vosse tåvlea di pårtixhaedje est crombe, vos ploz sayî del "
+"rapexhî avou cisse tchuze chal. Prindoz asteme et rimimbrez vs ki çoula pout "
+"n' nén roter a tos les côps.\n"
+"\n"
+" * «%s»: Cisse tchuze chal c' est si vos\n"
+"vloz disfé tos les candjmints et tcherdjî vosse tåvlea di pårtixhaedje\n"
+"di dpårt.\n"
+"\n"
+" * «%s»: disclitchîz cisse tchuze\n"
+"chal si vos n' voloz nén ki les bodjåves sopoirts (plakes lazer,\n"
+"plaketes,...) soeyexhe montés otomaticmint mins l' fé al mwin.\n"
+"\n"
+" * «%s»: Si vos vloz aveur l' aidance d' on macrea po fé li pårtixhaedje "
+"del deure plake, vos ploz tchoezi cisse tchuze chal. Ele est ricomandêye si "
+"vos n' estoz nén on spepieus e pårtixhaedje.\n"
+"\n"
+" * «%s»: clitchîz so ci boton la po disfé tos vos candjmints.\n"
+"\n"
+" * «%s»: vos dene des ôtès tchuzes po les\n"
+"pårticions (sôre, tchuzes, abwesnaedje) eyet dene pus d' informåcions\n"
+"sol deure plake.\n"
+"\n"
+" * «%s»: on côp ki vos avoz fini li pårtixhaedje del deure plake, "
+"tchoezixhoz çouchal po schaper po d' bon les candjmints.\n"
+"\n"
+"Cwand vos dnez l' grandeu del pårticion, vos l' poloz tchoezi finmint avou\n"
+"les tapes fletches di vosse taprece.\n"
+"\n"
+"Note: vos ploz tot fé pår avou l' taprece: naivyîz d' ene pårticion a l' ôte "
+"avou li tape Tab et les fletches Up/Down.\n"
+"\n"
+"Cwand ene pårticion a stî tchoezeye, vos poloz fé:\n"
+"\n"
+" * Ctrl-c po fé ene novele pårticion (cwand c' est ene vude pårticion k' a "
+"stî tchoezeye)\n"
+"\n"
+" * Ctrl-d po disfacer li pårticion\n"
+"\n"
+" * Ctrl-m po defini li pont di montaedje\n"
+"\n"
+"Po-z aveur des informåcions so les diferins sistinmes di fitchîs k' i gn a,\n"
+"lijhoz li tchaptrê so «ext2FS» do «Manuel di Referince».\n"
+"\n"
+"Si vos alez astaler sor ene éndjole PPC, motoit ki vos vôroz fé ene pitite "
+"pårticion HFS «d' enondaedje» di 1 Mo å moens po l' eployî avou l' enondrece "
+"«yaboot». Si vos decidez del fé on pô pus grande, par egzimpe 50 Mo, çoula "
+"pôreut fé ene clapante plaece po-z î mete on nawea et ene imådje ramdisk po "
+"des cas d' urdjince k' i gn åreut."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "Montaedje otomatike des sopoirts bodjåves"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "Candjî pol môde normå/spepieus"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Pus d' ene pårticion Windows a stî detectêye so vosse deure plake.\n"
+"Tchoezixhoz li cene ki vos vloz candjî si grandeu, po-z astaler vosse\n"
+"novea sistinme d'&nbsp;operance Mandriva Linux s' i vs plait.\n"
+"\n"
+"Po l' informåcion, tchaeke pårticion est mostrêye come çoula:\n"
+"«no Linux», «no Windows», «grandeu».\n"
+"\n"
+"Li «no Linux» est costrût come çouchal:\n"
+"«sôre del deure plake» + «limero del deure plake» + «limero del "
+"pårticion» (par egzimpe, hd+a+1 --> «hda1»)\n"
+"\n"
+"Li «sôre del deure plake» est «hd» si vosse deure plake est del sôre IDE,\n"
+"oudonbén «sd» si elle est del sôre SCSI.\n"
+"\n"
+"Li «limero del deure plake» est todi ene lete pa drî «hd» ou «sd».\n"
+"Avou les plakes IDE on a:\n"
+"\n"
+" * «a» pol plake mwaisse sol prumî controleu IDE,\n"
+"\n"
+" * «b» pol plake esclåve sol prumî controleu IDE,\n"
+"\n"
+" * «c» pol plake mwaisse sol deujhinme controleu IDE,\n"
+"\n"
+" * «d» pol plake esclåve sol deujhinme controleu IDE.\n"
+"\n"
+"Avou les plakes SCSI, «a» vout dire «prumire deure plake», «b» vout dire "
+"«deujhinme deure plake», evnd...\n"
+"\n"
+"Li «no Windows» est li lete ki Windows eploye po-z idintifyî li pårticion "
+"(par egzimpe li prumire pårticion Windows del prumire deure plake est lomêye "
+"«C:»)."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"«%s»: verifyîz ki l' tchuze est bén l' bone. Si vos dmorez dins\n"
+"èn ôte payis, clitchîz sol boton «%s» po ndè tchoezi èn ôte.\n"
+"Si vosse payis n' est nén e l' prumire djivêye di håynêye, clitchîz sol\n"
+"boton «%s» po-z aveur li djivêye en etir di tos les payis del Daegn."
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"Ciste etape est enondêye seulmint si ene viye pårticion GNU/Linux a stî\n"
+"trovêye so voste éndjole.\n"
+"\n"
+"DrakX asteure a mezåjhe di saveur si vos vloz fé ene novele astalåcion\n"
+"oudonbén fé on metaedje a djoû d' on sistinme Mandriva Linux k' i gn a\n"
+"ddja sol plake:\n"
+"\n"
+" * «%s»: çouchal va spotchî ttafwait l' vî sistinme k' i gn\n"
+"aveut sol plake. Si vos vloz candjî l' manire ki vos deurès plakes sont\n"
+"pårteyes, oudonbén candjî li sistinme di fitchîs, vos dvrîz tchoezi\n"
+"çouchal. Sorlon vosse pårtixhaedje, si vos avoz « /home » so ene\n"
+"pårticion da sinne metans, vos ploz wårder on boket di vos dnêyes\n"
+"ki n' seront nén spotcheyes.\n"
+"\n"
+" * «%s»: cisse classe d' astalaedje chal vos permete di\n"
+"mete a djoû les pacaedjes k' i gn a so vosse sistinme Mandriva Linux.\n"
+"Vosse pårtixhaedje est wårdé et les dnêyes des uzeus n' sont nén\n"
+"candjeyes. Li plupårt des ôtès etapes d' apontiaedje dimorèt, come\n"
+"pol cas d' èn astalaedje sitandård.\n"
+"\n"
+"Eployî l' tchuze «Metaedje a djoû» rote comifåt po mete a djoû des\n"
+"sistinmes Mandriva Linux modêye «8.1» ou pus nouve. Mins l' fé po\n"
+"des modêyes di Mandriva Linux pus viyes kel «8.1» n' est nén ricmandé."
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Sorlon li tchuze do lingaedje, DrakX va tchoezi otomaticmint li boune\n"
+"taprece por vos. Verifyîz kel tchuze corespond bén a çou k' vos vloz,\n"
+"oudonbén candjîz di taprece.\n"
+"\n"
+"I s' pout ki vos åyoxhe ene taprece diferinne del cene prémetowe\n"
+"po vosse lingaedje: par egzimpe, ene djin ki djåzreut inglès mins\n"
+"vicreut el Swisse, ele vôreut cwand minme ene swisse taprece.\n"
+"Oudonbén si vos avoz tchoezi l' walon mins ki vos avoz ene taprece\n"
+"francesse ou qwerty purade k' ene taprece bedje. Dins les deus cas,\n"
+"vos pôroz candjî vosse tchuze a l' etape «Rascourti éndjolreye» pus lon,\n"
+"et tchoezi l' cene ki vos vloz dins en ene djivêye.\n"
+"\n"
+"Clitchîz so «%s» po-z aveur li djivêye etire di totes les tapreces ki sont\n"
+"sopoirtêyes.\n"
+"\n"
+"Si vos tchoezixhoz ene taprece po èn alfabet nén latén, li purnea shuvant\n"
+"vos dinrè l' tchuze des tapes a tchôkî po candjî inte l' alfabet latén eyet\n"
+"l' taprece nén latene."
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"Li prumire etape c' est di tchoezi vosse lingaedje.\n"
+"\n"
+"Li lingaedje ki vos tchoezixhoz serè li prémetou\n"
+"lingaedje do sistinme. Ci srè l' lingaedje eployî pol\n"
+"documintåcion, l' astalaedje, eyet l' sistinme e djenerå.\n"
+"Les lingaedjes sont rgroupés pa grandès redjons del Daegn\n"
+"po-z aveur des rîlêyes di lingaedjes pus coûtes.\n"
+"\n"
+"Si vos clitchîz so «%s» vos pôroz tchoezi d' aveur\n"
+"do sopoirt po ds ôtes lingaedjes avou. Cwand vos tchoezixhoz èn ôte\n"
+"lingaedje les fitchîs specifikes po ci lingaedje la (ratournaedjes, "
+"aidance,\n"
+"documintåcions, coridjreces,...) sront astalés. Par egzimpe, si vos alez\n"
+"aveur so voste éndjole èn uzeu ki vént del Sipagne, clitchîz sol boesse\n"
+"a clitchî ki mostere «%s» dins l' djivêye del seccion «Sipepieus».\n"
+"\n"
+"Åd fwait do sopoirt UTF-8 (unicôde): Unicôde est on novea ecôdaedje\n"
+"ki permete di scrire tos les lingaedjes del Daegn. Mins i gn a co des\n"
+"sacwès a-z amidrer dins l' sopoirt UTF-8 so GNU/Linux. Vola pocwè\n"
+"Mandriva Linux eployrè UTF-8 ou nén sorlon les tchuzes ki vos djhoz:\n"
+"\n"
+" * Si vos tchoezixhoz on lingaedje avou ene foite eritance d' on dné\n"
+"ecôdaedje (lingaedjes latin1, rûsse, djaponès, chinwès, corêyin, taylandès\n"
+"grek, turk, li plupårt des lingaedjes latin2), cist ecôdaedje d' eritance "
+"la\n"
+"serè-st eployî come prémetou ecôdaedje;\n"
+"\n"
+" * Les ôtes lingaedjes eployèt unicôde;\n"
+"\n"
+" * Si deus, ou di pus, di lingaedjes sont tchoezis, et si ces lingaedjes la\n"
+"n' eployèt nén l' minme prémetou ecôdaedje, adon unicôde serè-st eployî,\n"
+"la k' il est li seu cmon ecôdaedje;\n"
+"\n"
+" * Di pus, li boesse «%s» vos permete di foirci\n"
+"l' sistinme a-z eployî unicôde (UTF-8), et çoula po tot l' minme ké "
+"lingaedje.\n"
+"\n"
+"Notez ki vos ploz astaler li sopoirt po bråmint des lingaedjes et nén \n"
+"seulmint onk. Si vos les vloz tos (tos les cis sopoirtés pol moumint, come \n"
+"di djusse), clitchîz sol boesse «%s». Cisse tchuze la \n"
+"est ahessåve po ene éndjole ki srè eployeye pa des djins di tolminme ké \n"
+"payis. Dimander l' sopoirt po on lingaedje ça vout dire ki les fontes,\n"
+"les ratournaedjes, les coridjreces, evnd. po ç' lingaedje la sront astalés.\n"
+"\n"
+"On côp ki vos avoz tchoezi les locåles ki vos vloz, clitchîz so «Shuvant» po "
+"passer a l' etape shuvante.\n"
+"Po candjî d' on lingaedje a l' ôte sol sistinme on côp astalé, vos ploz "
+"enonder li comande «localedrake» come uzeu «root» po candjî li prémetou "
+"lingaedje do sistinme; ou l' enonder come èn uzeu normå po candjî les "
+"preferinces di lingaedje po cist uzeu la."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "Español"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"D' acostumance, DrakX n' a nole rujhe po trover l' nombe di botons di\n"
+"vosse sori. S' i n' trove nén, i pinsrè ki vos avoz ene sori di deus\n"
+"botons, et va mete en alaedje l' emulåcion do troejhinme boton. Li\n"
+"troejhinme boton d' ene sori a deus botons pout esse emulé tot\n"
+"clitchant avou les botons d' hintche eyet d' droete e minme tins.\n"
+"DrakX sårè otomaticmint si vosse sori est ene sori PS/2, séreye\n"
+"oudonbén USB.\n"
+"\n"
+"Si vos avoz ene sori a troes botons sins rôlete, vos ploz tchoezi\n"
+"l' sori ki dit «%s». DrakX va adon apontyî vosse sori po pleur emuler\n"
+"li rôlete: po çoula, clitchîz sol boton do mitan et s' bodjîz l sori.\n"
+"\n"
+"Si vos vloz defini ene sôre di sori diferinne, tchoezixhoz li sôre k' i fåt "
+"el djivêye.\n"
+"\n"
+"Vos ploz tchoezi l' intrêye «%s» po ene sôre di sori «djenerike»\n"
+"k' irè bén avou cåzu totes les soris.\n"
+"\n"
+"Si vos fjhoz ene tchuze diferinne del prémetowe, DrakX vos mosterrè on\n"
+"purnea po sayî l' sori. Sayîz les botons et li rôlete po vey si tot va\n"
+"comifåt. Si l' sori ni rote nén comifåt, tapez so l' espåce, oudonbén so\n"
+"RETURN po rivni èn erî eyet ndè tchoezi ene ôte.\n"
+"\n"
+"Des côps k' i gn a, les soris a rôlete èn sont nén detectêyes otomaticmint\n"
+"et vos dvroz l' tchoezi dins ene djivêye. Acertinez vs di tchoezi l' cene\n"
+"ki coresponde å pôrt ki vosse sori est raloyeye. Après aveur tchoezi ene\n"
+"sori eyet clitchî sol boton «%s», ene imådje d' ene sori est håynêye el\n"
+"waitroûle. Fijhoz bodjî l' rôlete po verifyî k' ele rote comifåt.\n"
+"On côp ki vos voeyoz l' imådje del rôlete sol waitroûle ki bodje del minme\n"
+"manire ki vos fjhoz bodjî l' rôlete, sayîz les botons eyet vey si\n"
+"l' cursoe shût bén les movmints del sori."
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "avou rôlete emulêye"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "Univiersele | Tot l' minme kéne sori PS/2 ou USB"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Tchoezixhoz li bon pôrt. Metans: li pôrt «COM1» dzo MS Windows si lome\n"
+"«ttyS0» dzo GNU/Linux."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"Çouchal c' est li pus consecant decidaedje pol såvrité di vosse sistinme\n"
+"GNU/Linux: vos dvoz dner li scret po «root». «root» est li manaedjeu\n"
+"do sistinme eyet l' seu otorijhî a fé des metaedjes a djoû, radjouter\n"
+"des uzeus, candjî l' apontiaedje djenerå do sistinme, evnd. Po fé court,\n"
+"«root» pout fé ttafwait! C' est po çoula k' i vs fåt bén tchoezi li scret\n"
+"di «root», onk ki soeye målåjhey a trover - DrakX vos dirè s' il est trop\n"
+"åjhey. Come vos l' poloz vey, vos avoz l' tchuze di n' nén dner di scret,\n"
+"mins nos nel consians nén; «root» pout tot fé, çoula vout dire eto k' i "
+"pout\n"
+"disfacer -- minme sins l' voleur -- tot çou k' i gn a so les deurès\n"
+"plakes, minme so les pårticions d' ôtes sistinmes d' operance; i våt mî\n"
+"n' eployî l' conte «root» ki vormint cwand nd a mezåjhe, et po çoula\n"
+"våt mî nén rinde l' accès å conte trop åjhey.\n"
+"\n"
+"Li scret dvreut maxhî des letes et des chifes ey esse 8 caracteres long.\n"
+"Ni scrijhoz måy li scret di «root» ene sawice - c' est on trop grand\n"
+"risse po vosse sistinme.\n"
+"\n"
+"Mins nerén, nel fijhoz nén trop long ou trop målåjhey ki vos n' arivez\n"
+"nén a vos l' rimimbrer!\n"
+"\n"
+"Li scret ni srè nén håyné sol waitroûle cwand vos l' tapez, po çoula vos\n"
+"dvoz l' diner deus côps, po bén l' acertiner et k' i gn åye moens di\n"
+"fé ene flotche tot l' tapant. Si vos tapez deus côps avou l' minme\n"
+"flotche, si srè ci scret «incorek» la k' i vs fårè dner l' côp ki vént.\n"
+"\n"
+"Si vos vloz ki l' contrôle des screts soeye fwait pa on sierveu "
+"d' otintifiaedje\n"
+"(come NIS ou LDAP), adon clitchîz sol boton «%s».\n"
+"\n"
+"Si vosse rantoele eploye li protocole LDAP, NIS ou les dominnes Windows PDC\n"
+"po l' otintifiaedje, tchoezixhoz li moyén d' otintifiaedje corek po «%s».\n"
+"Si vos n' savoz nén, dimandez a l' administreu del rantoele locåle.\n"
+"\n"
+"Si vos avoz des rujhes po vs rimimbrer les screts, vos ploz tchoezi di\n"
+"n' eployî «%s», si voste éndjole n' est nén raloyeye al daegntoele\n"
+"et si vos avoz fiyate a totes les djins k' ont accès al copiutrece."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "otintifiaedje"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"Ene enondrece c' est on ptit programe ki s' mete en alaedje a l' enondaedje\n"
+"del copiutrece. C' est lu ki s' ocupe d' enonder tot l' sistinme. "
+"Normålmint,\n"
+"l' astalaedje di l' enondrece est ene etape totafwaitmint otomatike. DrakX "
+"va\n"
+"analijhî li cmince del deure plake eyet ovrer sorlon çou ki srè trové la:\n"
+"\n"
+" * si c' est on secteu d' enondaedje Windows k' est trové, i srè\n"
+"replaecî avou on secteu d' enondaedje di GRUB/LILO. Come çoula vos pôroz\n"
+"enonder GNU/Linux ou èn ôte S.O.\n"
+"\n"
+" * si c' est on secteu d' enondaedje di GRUB ou LILO k' est trové,\n"
+"i srè replaecî avou on pus novea.\n"
+"\n"
+"Si nou secteu d' enondaedje n' est trové, DrakX vos dmandrè wice\n"
+"mete l' enondrece. Normålmint, li «%s»\n"
+"est li meyeuse plaece. Tchoezi «%s»\n"
+"n' astalrè nole enondrece. Eployîz çoula seulmint si vos savoz çou\n"
+"k' vos fjhoz."
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"Chal, vos tchoezixhoz li ké sistinme d' imprimaedje vos vloz eployî\n"
+"so vosse copiutrece. Des ôtes sistinmes d' operance k' i gn a\n"
+"vos dnèt onk, mins Mandriva Linux vos lait tchoezi inte deus, tchaeke onk\n"
+"estant l' meyeu dins on cas dné.\n"
+"\n"
+" * «%s» - ki vout dire «print, do not queue» (imprimer sins cawêye), est\n"
+"li tchuze a-z eployî si vosse copiutrece est raloyeye directumint a vosse\n"
+"copiutrece et ki vos vloz divni araedjî cwand l' papî s' bôre... et ki\n"
+"vos n' avoz nén des scrireces sol rantoele locåle («%s» n' sait manaedjî\n"
+"ki des apontiaedjes rantoele foirt simpes eyet il est ene miete londjin\n"
+"po-z imprimer pal rantoele). Tchoezixhoz «pdq» si vos estoz on "
+"mieraprindisse\n"
+"avou GNU/Linux.\n"
+"\n"
+" «%s» - «Common Unix Printing System» (sistinme di cmon imprimaedje po\n"
+"Unix), est clapant po l' imprimaedje so vosse sicrirece locåle ossu bén\n"
+"ki les cenes a l' ôte costé del bole. Il est simpe et pout fé do cliyint\n"
+"come do sierveu pol vî sistinme d' imprimaedje «lpd». Ça vout dire k' il\n"
+"est copatibe avou les sistinme k' i gn aveut davance. I pout fé bråmint\n"
+"d' afwaires, mins l' apontiaedje di båze est cåzu ossu åjhey ki l' ci\n"
+"di «pdq». Si vos avoz mezåjhe d' emuler on sierveu «lpd», i vs fåt mete\n"
+"en alaedje li demon «cups-lpd». «%s» a des eterfaces grafikes po tchoezi\n"
+"les scrireces, apontyî les tchuzes prôpes a tchaeskene et po-z imprimer.\n"
+"\n"
+"Si vos tchoezixhoz asteure, et ki pus tård vos n' inmez nén vosse sistinme\n"
+"d' imprimaedje, vos l' poloz åjheymint candjî avou l' usteye d' apontiaedje\n"
+"des scrireces, a-z enonder a pårti do cinte di contrôle di Mandriva Linux, "
+"tot\n"
+"clitchant sol boton «%s»."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "Sipepieus"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX va cweri après on/des éndjins IDE so vosse copiutrece. I va ossu\n"
+"cweri après ene/des cåte(s) SCSI e PCI. Si ene cåte SCSI est trovêye\n"
+"DrakX va-st astaler otomaticmint li mineu k' i gn a mezåjhe.\n"
+"\n"
+"Come pa des côps li deteccion di l' éndjolreye ni sait nén trover ene "
+"sacwè,\n"
+"i s' pout ki DrakX ni trove rén. Dins ç' cas, vos dvroz specifyî vos minme\n"
+"l' éndjolreye da vosse.\n"
+"\n"
+"Si vos dvoz tchoezi manuwelmint vosse mineu, DrakX vos dmandrè si vos voloz\n"
+"mete des tchuzes por lu. Mins po cmincî, leyîz li mineu rconoxhe tot seu\n"
+"voste éndjolreye: d' acostumance, ça va tot seu.\n"
+"\n"
+"Si ça n' va nén tot seu, vos dvroz dner les informåcions pol mineu "
+"manuwelmint."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"«%s»: si ene cåte son est detectêye so vosse sistinme, ele srè\n"
+"metowe chal. Si c' est nén l' cene ki vos avoz, vos ploz clitchî chal\n"
+"po tchoezi èn ôte mineu."
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"Chal sont prezintés sacwants parametes k' ont a vey avou voste éndjole.\n"
+"Sorlon çou k' vos avoz come éndjolreye vos voeroz, ou nén, ene ou sacwantes\n"
+"des intrêyes shuvantes. Tchaeke intrêye est fwaite avou l' no do cayet\n"
+"a-z apontyî, shuvowe d' on rascourti di l' apontiaedje do moumint.\n"
+"Clitchîz sol boton «%s» corespondant si vos l' vloz candjî.\n"
+"\n"
+" * «%s»: verifyîz l' apontiaedje del taprece et clitchîz sol boton\n"
+"pol candjî, s' i fåt.\n"
+"\n"
+" * «%s»: verifyîz ki l' tchuze est bén l' bone. Si vos dmorez dins\n"
+"èn ôte payis, clitchîz sol boton «%s» po ndè tchoezi èn ôte.\n"
+"Si vosse payis n' est nén e l' prumire djivêye di håynêye, clitchîz sol\n"
+"boton «%s» po-z aveur li djivêye en etir di tos les payis del Daegn.\n"
+"\n"
+" * «%s»: Li prémetowe coisse d' eureye est tchoezeye pa\n"
+"DrakX sorlon li lingaedje/payis ki vs avoz tchoezi. Vos ploz clitchî\n"
+"sol boton «%s» po-z apontyî vosse ôrlodje avou l' eure locåle del\n"
+"plaece wice ki vos dmorez si l' prémetowe valixhance n' est nén coreke.\n"
+"\n"
+" * «%s»: verifyîz l' apontiaedje del sori eyet clitchîz sol boton pol\n"
+"candjî, s' i fåt.\n"
+"\n"
+" * «%s»: si vos clitchîz so «%s» çoula enondrè li macrea\n"
+"d' apontiaedje des scrireces. Loukîz li tchaptrê corespondant do «Guide\n"
+"d' Enondaedje» po pus d' informåcions sol manire d' apontyî ene nouve\n"
+"sicrirece. L' eterface prezintêye chal rishonne a cene håynêye tins\n"
+"di l' astalåcion.\n"
+"\n"
+" * «%s»: si ene cåte son est detectêye so vosse sistinme, ele srè\n"
+"metowe chal. Si c' est nén l' cene ki vos avoz, vos ploz clitchî chal\n"
+"po tchoezi èn ôte mineu.\n"
+"\n"
+" * «%s»: si ene cåte tévé est detectêye so vosse sistinme, ele srè\n"
+"metowe chal. Si ele n' est nén detectêye, clitchîz sol boton «%s»\n"
+"po sayî d' l' apontyî al mwin.\n"
+"\n"
+" * «%s»: vos ploz clitchî so «%s» po candjî les parametes\n"
+"del cåte, si vos pinsez k' i sont måvas.\n"
+"\n"
+" * «%s»: li prémetowe finté ki DrakX definixhe po l' eterface\n"
+"grafike est di 800x600 oudonbén 1024x768, sorlon voste éndjolreye.\n"
+"Si ça n' vos va nén, clitchîz sol boton «%s» pol rapontyî.\n"
+"\n"
+" * «%s»: Si vos vloz apontyî li rantoele (locåle ou daegnrece),\n"
+"clitchîz so ç' boton chal. Lijhoz li documintåcion so papî oudonbén\n"
+"li cene håynåve a pårti do cinte di controle di Mandriva Linux\n"
+"après l' astalaedje po-z aveur pus di racsegnes.\n"
+"\n"
+" * «%s»: vos permete d' apontyî les adresses des procsis HTTP eyet FTP\n"
+"si l' éndjole ki vos astalez si trovrè pa drî on côpe-feu.\n"
+"\n"
+" * «%s»: ciste intrêye chal vos permete di rdefini l' livea\n"
+"di såvrité, té k' il a stî defini dins l' etape di dvant.\n"
+"\n"
+" * «%s»: si vos tuzez a raloyî voste éndjole al rantoele daegnrece,\n"
+"c' est ene bone idêye di vs protedjî des hacneus avou on sistinme côpe feu.\n"
+"Lijhoz li seccion corespondante do «Guide d' Enondaedje» po-z aveur di pus\n"
+"di detays so ls apontiaedjes do côpe feu.\n"
+"\n"
+" * «%s»: si vos vloz candjî l' apontiaedje di l' enondrece\n"
+"di l' éndjole. Vos nel duvrîz fé ki si vos estoz seur di vos.\n"
+"Lijhoz li documintåcion so l' enondrece dins l' cinte di controle\n"
+"di Mandriva Linux po pus di racsegnes.\n"
+"\n"
+" * «%s»: vos pôroz controler finmint les kés siervices ki vos vloz\n"
+"enonder so voste éndjole. Si vos l' vloz eployî po fé do sierveu c' est\n"
+"ene bone idêye di candjî et d' verifyî les valixhances chal."
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "Cåte RDIS"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "Eterface grafike"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"Tchoezixhoz li deure plake ki vos vloz disfacer po-z î astaler vosse\n"
+"novele pårticion Mandriva Linux. Prindoz asteme, totes les dnêyes\n"
+"k' i gn a sol deure plake vont esse pierdowes, et vos n' pôroz les rapexhî."
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"Clitchîz so «%s» si vos vloz disfacer totes les dnêyes et totes les\n"
+"pårticions k' i gn a so vosse deure plake.\n"
+"Prindoz asteme, dispoy aveur clitchî so «%s», vos n' pôroz pus rapexhî\n"
+"nole dinêye ou pårticion k' i gn aveut sol deure plake, nerén les cis\n"
+"da Windows.\n"
+"\n"
+"Clitchîz so «%s» po rinoncî a cisse operåcion, et leyî les dnêyes\n"
+"et les pårticions come ele estént sol deure plake."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "Shuvant ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- Di dvant"
+
diff --git a/perl-install/share/po/help-zh_CN.pot b/perl-install/install/help/po/zh_CN.po
index eedb1edf9..4e2e21ece 100644
--- a/perl-install/share/po/help-zh_CN.pot
+++ b/perl-install/install/help/po/zh_CN.po
@@ -1,223 +1,50 @@
+# drakx messages in Simplified Chinese
+# Danny Zeng <danny@zeng.com.cn>, 2000, 2002
+# Jesse Kuang <kjx@mandriva.com>, 2002
+# Shiyu Tang <shiyutang@netscape.net>, 2003, 2004
+# Funda Wang <fundawang@linux.net.cn>, 2002, 2003, 2004, 2005
+#
msgid ""
msgstr ""
+"Project-Id-Version: DrakX 2007\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2006-04-22 15:41+0800\n"
+"Last-Translator: Funda Wang <fundawang@linux.net.cn>\n"
+"Language-Team: Mandriva Linux i18n Team <cooker-i18n@mandrivalinux.org>\n"
+"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandrivalinux's use of UTF-8 will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-"第一步是选择您首选的语言。\n"
-"\n"
-"您对首选语言的选择将影响安装程序、文档及系统的总体配置。请先选择您所在的地区,然后选择您讲的语言。\n"
-"\n"
-"\n"
-"单击\"%s\"按钮以后,您可以选择要在您的工作站上安装哪些额外的语言,即为系统文档和应用程序安装特定语言的文件。例如,如果您的计算机要为繁体中文的用户提供服务,请在树视图中选择简体中文作为默认语言,然后在高级选项中选择\"%s\"。\n"
-"\n"
-"关于 UTF-8 (Unicode) 支持:Unicode 是一种新的字符编码,该编码可支持所有现存的语言。但是,在 GNU/Linux 下完全支持\n"
-"Unicode,仍然在开发和完善中。由此原因,Mandrivalinux 会根据用户的选择是否使用 UTF-8:\n"
-"\n"
-" * 如果您所选的语言自身有强制性的编码(latin1 语言、俄语、日语、中文、朝鲜语、泰语、希腊语、土耳其语及大多数 iso-8859-2\n"
-"语言),则会默认使用强制编码;\n"
-"\n"
-" * 其它语言默认会使用 Unicode;\n"
-"\n"
-" * 如果需要两种或更多种语言,而这两种语言所使用的编码并不相同,则整个系统都会使用 Unicode;\n"
-"\n"
-" * 最后,如果要强制系统使用 Unicode,而不管选中的是哪个或哪些语言,则应选中选项\"%s\"。\n"
-"\n"
-"\n"
-"请注意,系统没有限制您只能选择一种额外的语言。您可以选择多种语言,甚至选择\"%s\"框表明您想要安装全部语言。选择支持某种语言,意味着同时安装该语言的翻译、字体、拼写检查程序等等。\n"
-"\n"
-"要在系统中所安装的不同语言之间切换,请以 \"root\" 身份执行 \"/usr/sbin/localedrake\"\n"
-"命令,这样可以更改整个系统所用的语言。以普通用户执行该命令,只会更改特定用户的语言设置。"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:14
+#, c-format
msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card isn't the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-"\"%s\":如果在您的系统中检测到了声卡,则会在此处显示。如果您发现在此显示的声卡与您系统中实际安装的声卡并不相同,您可以单击该按钮选择不同的驱动程序。"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
-msgid ""
-"You now need to decide where you want to install the Mandrivalinux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandrivalinux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandrivalinux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandrivalinux system, choose\n"
-"this option. Be careful, because you won't be able to undo this operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-"在这一步里,您需要决定您想要将 Mandrivalinux\n"
-"操作系统安装到硬盘的何处。如果您的硬盘完全是空的,或者已有操作系统使用了所有的空间,您就必须要对硬盘进行分区。粗略的说,对硬盘进行分区就是将其划分成几个逻辑上不同的部分,以便创建安装您新的\n"
-"Mandrivalinux 系统所需的空间。\n"
-"\n"
-"由于对硬盘进行分区通常是不可恢复的,并且可能导致数据丢失,所以对于没有经验的用户来说,分区是十分危险的操作。所幸的是,DrakX\n"
-"所包含的向导能够显著简化这一过程。在继续这一步骤之前,请花点时间仔细阅读本节及以上的所有内容。\n"
-"\n"
-"根据您的硬盘配置不同,您可从以下选项中加以选择:\n"
-"\n"
-" * \"%s\"。此选项将对您的空驱动器执行自动分区。如果您使用此选项,则不会有任何后续的提示。\n"
-"\n"
-" * \"%s\"。向导检测到了硬盘上有一个或多个已有的 Linux\n"
-"分区。如果您想要使用这些分区,请选择此选项。稍后,安装程序会让您选择与每个分区关联的挂载点。先前的挂载点默认已经选中了,而保留这些选项是个不错的主意。\n"
-"\n"
-" * \"%s\"。如果在您的硬盘上安装了 Microsoft Windows,而该操作系统占用了所有的空间,您就需要为 GNU/Linux\n"
-"创建剩余空间。要完成这一操作,您可以删除您的 Microsoft Windows 分区和数据(参看``删除整个磁盘''方案),或者更改\n"
-"Microsoft Windows FAT 或 NTFS 分区的大小。更改分区大小通常不会造成任何数据丢失,但您必须事先对 Windows\n"
-"分区进行了磁盘碎片整理。我们强烈推荐您事先备份您的数据。如果您想要在同一台计算机上使用 Mandrivalinux 和 Microsoft\n"
-"Windows,则推荐使用此选项。\n"
-"\n"
-" 注意,在执行这一过程之后,您原有的 Microsoft Windows 分区将会比先前小一些。而您在 Microsoft Windows\n"
-"下可用来存储数据或安装新软件的剩余空间也会变少。\n"
-"\n"
-" * \"%s\"。如果您想要删除硬盘上的全部数据和全部分区,并将其替换为全新的 Mandrivalinux\n"
-"系统,请选择此选项。请额外小心,因为在您确认之后,此操作无法撤销。\n"
-"\n"
-" !! 如果您选择了此选项,您硬盘上的全部数据都将被删除。 !!\n"
-"\n"
-" * \"%s\"。当硬盘完全被 Microsoft Windows 占用时,会出现此选项。选择此选项将删除硬盘上的全部内容,然后从头开始进行分区。\n"
-"\n"
-" !! 如果您选择了此选项,您硬盘上的全部数据都将被删除。 !!\n"
-"\n"
-" *\n"
-"\"%s\"。如果您想要手动对您的硬盘进行分区,请选择此选项。请额外小心——该功能十分强大,但也很危险,您可能在不经意之间毁掉您的全部数据。这也正是为什么我们只对那些以前执行过类似操作并有些经验的用户才推荐此选项的原因。要获得关于如何使用\n"
-"DiskDrake 工具的更多说明,请参阅``初学者指南''一书中的``管理您的分区''一节。"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
-msgstr ""
-"分辨率\n"
-"\n"
-" \n"
-"您可以在此选择分辨率和颜色深度,但您的显示卡硬件要支持。请选择最适合您需要的选项(您在安装完成之后仍可进行修改)。所选配置的例子会显示在显示器上。"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to set up a new printer. The interface presented in our\n"
-"manual is similar to the one used during installation."
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
msgstr ""
-"\"%s\":单击\"%s\"按钮将打开打印机配置向导。请参看``初学者指南''中的相应章节,其中详细描述了如何设置新打印机。那里给出的界面与安装时所用的界面大体相同。"
+"在继续之前, 您应该仔细阅读许可协议的条款。该许可适用于整个 Mandriva Linux发行"
+"版。如果您同意其中的全部条款, 请选中\"%s\"框。如果不同意, 单击\"%s\"按钮将重"
+"新启动您的计算机。"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:20
+#, c-format
msgid ""
"GNU/Linux is a multi-user system which means each user can have his or her\n"
"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point won't be authorized\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
"to change anything except their own files and their own configurations,\n"
"protecting the system from unintentional or malicious changes which could\n"
"impact on the system as a whole. You'll have to create at least one regular\n"
"user for yourself -- this is the account which you should use for routine,\n"
"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system won't work any more. If you make a\n"
+"mistake could mean that your system will not work any more. If you make a\n"
"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you won't affect the entire system.\n"
+"lose some information, but you will not affect the entire system.\n"
"\n"
"The first field asks you for a real name. Of course, this is not mandatory\n"
"-- you can actually enter whatever you like. DrakX will use the first word\n"
@@ -238,300 +65,418 @@ msgid ""
"\n"
"When you're finished adding users, you'll be asked to choose a user who\n"
"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and don't care much about local\n"
+"you're interested in that feature (and do not care much about local\n"
"security), choose the desired user and window manager, then click on\n"
"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
msgstr ""
-"GNU/Linux 是多用户系统,这意味着每个用户可拥有自己独立的首选项,以及自己的文件,等等。但是与系统管理员 \"root\"\n"
-"不同,您在此处添加的用户所能做的更改将仅限于他们自己的文件及他们自己的配置,这可使系统免遭有意无意的破坏。您至少需要为您自己创建一个普通用户 --\n"
+"GNU/Linux 是多用户系统, 这意味着每个用户可拥有自己独立的首选项, 以及自己的文"
+"件, 等等。若要了解关于多用户系统的更多内容, 建议您阅读\n"
+"``初学者指南''。但是与系统管理员 \"root\"\n"
+"不同, 您在此处添加的用户所能做的更改将仅限于他们自己的文件及他们自己的配置, "
+"这可使系统免遭有意无意的破坏。您至少需要为您自己创建一个普通用户 --\n"
"这应该是您每天所使用的主要账户。尽管以 \"root\"\n"
-"登录很容易,您可以不受任何限制地完成任何操作,但这很危险!非常低级的错误就可能让您的系统再也无法启动。如果您以普通用户的身份犯了非常危险的错误,最坏的情况也就是丢失某些信息,而不会影响整个系统。\n"
+"登录很容易, 您可以不受任何限制的完成任何操作, 但这很危险!非常低级的错误就可"
+"能让您的系统再也无法启动。如果您以普通用户的身份犯了非常危险的错误, 最坏的情"
+"况也就是丢失某些信息, 而不会影响整个系统。\n"
"\n"
-"第一个输入框会要求您输入真实姓名。当然,这并不是必需的 -- 您当然可以输入你喜欢的任何内容。DrakX\n"
-"将会使用您在此输入框中输入的第一个单词作为\"%s\"的初始值,即此用户登录系统所用的名称。如果您喜欢的话,您也可以不使用默认值,而换用您喜欢的用户名。下一步就是输入密码。从安全的角度来说,非特权(普通)用户密码并没有\n"
-"\"root\" 密码那么需要保密,但是也没有理由忽视这个密码,而将其留空或设置得太简单:毕竟,您得为您自己的文件负责。\n"
+"第一个域会询问您的真实姓名。当然, 这并不是必需的 -- 您当然可以输入您喜欢的任"
+"何内容。DrakX\n"
+"将会使用您在此域中输入的第一个单词作为\"%s\"域的初始值, 即此用户登录系统所用"
+"的名称。如果您喜欢的话, 您也可以不使用默认值, 而换用您喜欢的用户名。下一步就"
+"是输入密码。从安全的角度来说, 非特权(普通)用户密码并没有\n"
+"\"root\" 密码那么需要保密, 但是也没有理由忽视这个密码, 而将其留空或设置得太简"
+"单: 反正, 您自己的文件将会是最危险的。\n"
"\n"
-"您单击\"%s\"之后,您还可以为您的亲朋好友分别添加用户。当您添加完用户之后,请单击\"%s\"。\n"
+"您单击\"%s\"之后, 您还可以添加其它用户。可以为您的每个朋友添加一个用户: 例"
+"如, 您的父亲或您的妹妹。当您添加完用户之后, 请单击\"%s\"。\n"
"\n"
"单击\"%s\"按钮允许您更改该用户的默认 \"shell\"(默认为 bash)。\n"
"\n"
"\n"
-"当您添加完用户之后,您可以从中选择一个用户,计算机启动后将自动以该用户的身份登录到系统。如果您对此特性感兴趣(也不考虑太多的本地安全性),请选择希望的用户和窗口管理器,然后单击\"%s\"。如果您对此特性不感兴趣,请不要选中\"%s\"框。"
+"当您添加完用户之后, 您可以从中选择一个用户, 计算机启动后将自动以该用户的身份"
+"登录到系统。如果您对此特性感兴趣(也不考虑太多的本地安全性), 请选择希望的用户"
+"和窗口管理器, 然后单击\"%s\"。如果您对此特性不感兴趣, 请不要选中\"%s\"框。"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"选项\n"
-"\n"
-" 您可以在此选择是否想要在计算机启动的时候就切换到图形界面。显然,如果本机将用作服务器,或者您的显示配置还没有成功,您可能想要选择\"%s\"。"
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "您要使用此特性吗?"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:57
+#, c-format
msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
"\n"
-"If you don't know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandrivalinux\n"
-"Control Center.\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-"在这里,DrakX 将允许您选择计算机要使用的安全级别。说的直白一点,如果计算机将包含关键数据,或者将直接暴露于 Internet\n"
-"之下,则应该设置较高的安全级别。较高的安全级别通常以损失易用性作为代价。\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"如果您不知道要选择什么,请保持默认选项。您可以稍后从 Mandrivalinux Control Center的一部分 draksec\n"
-"来更改安全级别。\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
"\n"
-"请在\"%s\"域中填入要负责安全的人的电子邮件地址。安全信息将被发送到该地址。"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandrivalinux system:\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandrivalinux system. Your current partitioning\n"
-"scheme and user data won't be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-"Using the ``Upgrade'' option should work fine on Mandrivalinux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandrivalinux version \"8.1\" is not recommended."
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
msgstr ""
-"仅当在您的计算机上发现了已有的 GNU/Linux 分区,才会激活这一步骤。\n"
+"在此列出了您硬盘上已有的 Linux\n"
+"分区。您可以保留向导所作的选择, 因为对于大多数安装来说这一选择是较好的。如果"
+"您想要进行更改的话, 您必须至少定义一个根分区(\"/\")。不要选择太小的分区, 否则"
+"您可能无法安装足够的软件。如果您想要将您的数据存放在单独的分区中, 您还需要创"
+"建一个\n"
+"\"/home\" 分区(仅当您有多于一个 Linux 分区时才可用)。\n"
"\n"
-"DrakX 现在需要知道您是想要执行全新安装,还是升级已有的 Mandrivalinux 系统:\n"
+"每个分区都按下列格式列出: \"名称\", \"容量\"。\n"
"\n"
-" *\n"
-"\"%s\":总体来说,这将完全销毁旧系统。但是,根据您选择的分区方案,您可以让现有的数据(比如\"主\"目录)免于覆盖。如果您想要更改硬盘的分区方案,或者更该文件系统,您就应该使用此选项。\n"
+"\"名称\"结构为: \"硬盘类型\", \"硬盘编号\", \"分区编号\"(例如, \"hda1\")。\n"
+"\n"
+"\"硬盘类型\"取决于硬盘的接口方式。如您的硬盘是 IDE 硬盘, 则\"硬盘类型\"就为"
+"\"hd\";若硬盘为 SCSI 硬盘, 就为\"sd\"。\n"
+"\n"
+"\"硬盘编号\"就是在\"hd\"或\"sd\"后面的那个字母。对于IDE硬盘: \n"
+"\n"
+" * \"a\"意味着\"主 IDE 控制器的主硬盘\";\n"
"\n"
-" * \"%s\":这一安装级别允许您更新目前安装在您 Mandrivalinux\n"
-"系统上的软件包。您的分区方案和用户数据都不会被破坏。绝大多数配置步骤仍然可用,与标准安装类似。\n"
+" * \"b\"意味着\"主 IDE 控制器的从硬盘\";\n"
+"\n"
+" * \"c\"意味着\"从 IDE 控制器的主硬盘\";\n"
+"\n"
+" * \"d\"意味着\"从IDE控制器的从硬盘\"。\n"
"\n"
-"使用``升级''选项应该在 \"8.1\" 或更新版本的 Mandrivalinux 系统上工作正常。不推荐在先于 \"8.1\" 版本的\n"
-"Mandrivalinux 系统上执行升级。"
+"对于 SCSI 硬盘, \"a\"意味着\"最低的 SCSI ID\", \"b\"意味着\"第二低的 SCSI ID"
+"\", 依此类推。"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:88
+#, c-format
msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linux 安装分布于多张 CD-ROM 中。如果选中软件包位于另外的 CD-ROM, "
+"DrakX 将弹出当前\n"
+"CD, 并要求您插入所需的正确 CD。如果您手中没有所请求的 CD, 只需单击\"%s\", 就"
+"不会安装相应的软件包了。"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"isn't in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card isn't the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it isn't\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that doesn't suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandrivalinux Control Center after the installation has finished to benefit\n"
-"from full in-line help.\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"现在该指定要在您的系统中安装哪些程序了。Mandriva Linux\n"
+"为您准备了数千个软件包。而为了使管理软件包更加容易, 软件包已经按相似程度分成"
+"了多个组。\n"
"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandrivalinux Control Center.\n"
+"Mandriva Linux\n"
+"按四个类别对软件包进行了分类。您可以从不同的类别混合选择应用程序。也就是说, "
+"``工作站''中也可以选择安装``服务器''分类中的应用程序。\n"
"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-"作为概览,DrakX\n"
-"将会将它所发现的关于系统的信息概览显示出来。根据您所安装的硬件不同,您可能会看到以下各项的部分或全部。每项由几个可配置的硬件项组成,而每个条目后面都列出了当前配置的概览。单击相应的\"%s\"按钮可进行更改。\n"
+" * \"%s\":如果您计划将您的计算机用作工作站, 请选择工作站分类中的一个或多个"
+"组。\n"
"\n"
-" * \"%s\":检查当前的键盘映射配置,如果需要的话进行更改。\n"
+" * \"%s\":如果您计划使用您的计算机进行编程, 请从该类别中选择相应的组。特殊"
+"的 \"LSB\"\n"
+"组将会对您的系统进行配置, 这样所编译的结果将会尽可能遵从 Linux 标准基础(LSB)"
+"规范。\n"
"\n"
-" *\n"
-"\"%s\":检查当前的国家选择。如果您并非在这个国家,请单击\"%s\"按钮,并选择另外的选项。如果您的国家在第一个列表中并没有显示出来,单击\"%s\"按钮可获得完整的国家列表。\n"
+" 选择 \"LSB\" 组将安装 \"2.4\" 内核系列, 而不是默认的 \"2.6\" 内核。这是为"
+"了保证系统能够百分之百的遵从\n"
+"LSB。但是, 即便您不选择 \"LSB\" 组, 您也会得到一个接近百分之百遵从 LSB 的系"
+"统。\n"
"\n"
-" * \"%s\":默认情况下,DrakX 会根据您所选的国家猜测您的时区。如果时区不对的话,您可以单击此处的\"%s\"按钮。\n"
+" * \"%s\":如果您的计算机即将成为服务器, 请选择您想要安装在计算机上的公共服"
+"务。\n"
"\n"
-" * \"%s\":检查当前的鼠标配置,如果需要的话单击按钮进行修改。\n"
+" * \"%s\":这里您可以选择您首选的图形环境。如果您想要使用图形界面, 则至少要选"
+"择其中一个。\n"
"\n"
-" *\n"
-"\"%s\":单击\"%s\"按钮将打开打印机配置向导。请参看``初学者指南''中的相应章节,其中详细描述了如何设置新打印机。那里给出的界面与安装时所用的界面大体相同。\n"
+"将鼠标光标移动到组名之上, 您会看到该组的简要描述文字。\n"
"\n"
-" *\n"
-"\"%s\":如果在您的系统中检测到了声卡,则会在此处显示。如果您发现在此显示的声卡与您系统中实际安装的声卡并不相同,您可以单击该按钮选择不同的驱动程序。\n"
+"如果您对所提供的软件包比较熟悉, 或者您想要完全控制安装什么软件包, 就可以选中"
+"\"%s\"选项。\n"
"\n"
-" *\n"
-"\"%s\":如果在您的系统中检测到了电视卡,则会在此显示关于其配置的信息。如果您安装了电视卡,但并未被正确检测到,请单击\"%s\"尝试手动进行配置。\n"
+"如果您以\"%s\"模式启动安装, 您可以不选择任何组, 这样可以避免安装任何新软件"
+"包。这对于修复或升级已有系统很有帮助。\n"
"\n"
-" * \"%s\":如果您觉得检测的配置有错,可以点击\"%s\"来更改与该卡关联的参数。\n"
+"如果您在执行常规安装(与升级相对)的时候一个组也没有选中, 会弹出一个对话框建议"
+"最小安装的不同选项:\n"
"\n"
-" * \"%s\":默认情况下,DrakX 会将您的图形界面配置为 \"800x600\" 或 \"1024x768\"\n"
-"分辨率。如果这不适合您的话,请单击\"%s\"重新配置您的图形界面。\n"
+" * \"%s\":安装图形桌面所需的最少软件包。\n"
"\n"
-" * \"%s\":如果您想要配置您的 Internet 或局域网访问,现在就可以进行。请参考印刷文档或在安装完成后使用 Mandrivalinux\n"
-"Control Center来获得完整的在线帮助。\n"
+" * \"%s\":安装基本系统, 另加基本工具及相应文档。此安装适合建立服务器。\n"
"\n"
-" * \"%s\":如果您所安装的计算机位于代理服务器之后,这里将允许您配置 HTTP 和 FTP 代理服务器地址。\n"
+" * \"%s\":将安装使 Linux 系统能够正常运行的最少软件包。使用此安装, 您仅仅有"
+"命令行界面。此安装的总计大小为约 65 兆字节。"
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "升级"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "安装基础文档"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "真正的最小安装"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
"\n"
-" * \"%s\":此项允许您重新调整安全级别,与以前的步骤完全相同()。\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
"\n"
-" * \"%s\":如果您计划将您的计算机连接到\n"
-"Internet,那么保护您的计算机免于攻击的有效方法就是设置防火墙。请参考``初学者指南''中的相应章节,以获得关于防火墙设置的细节。\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+"如果您选中了想要选择单个软件包, 安装程序会显示出一个软件包的树形结构, 其中会"
+"按照组和子组分类显示全部软件包。浏览软件包树时, 您可以选择整个组, 子组或单个"
+"软件包。\n"
"\n"
-" * \"%s\":如果您想要更改您的引导程序配置,请单击此按钮。这仅适用于高级用户。请参考印刷文档或 Mandrivalinux Control\n"
-"Center中关于引导程序配置的帮助。\n"
+"只要您在左侧的树中选择了软件包, 右侧就会出现该软件包用途的描述。\n"
"\n"
-" * \"%s\":在此您可以精确调整要在您的计算机上运行哪些服务。如果您要将此计算机用作服务器,那么应该复查这一设置。"
+"!!\n"
+"如果选择了服务器软件包, 不管是您特意选中的, 还是因为该软件包是某组的成员, 您"
+"都需要确认是否真的想要安装这些服务器。默认情况下, Mandriva Linux\n"
+"会在启动时自动启动已安装的全部服务。尽管在发行版送出时这些服务是安全的, 但完"
+"全有可能在此版本 Mandriva Linux\n"
+"完成后发现了相应软件的安全漏洞。如果您并不知道特定服务的用途, 或者不知道为什"
+"么要安装这些服务, 请单击\"%s\"。单击\"%s\"将安装列出的服务, 并且启动时这些服"
+"务会被自动启动。\n"
+"!!\n"
+"\n"
+"\n"
+"\"%s\"选项用于在安装程序自动选择软件包以解决依赖性问题时禁止弹出警告对话框。"
+"某些软件包会依赖其它软件包, 而要安装一个软件包的需要先安装另外一个软件包。安"
+"装程序会自动确定要满足依赖性需要安装哪些软件包, 以便顺利完成安装。\n"
+"\n"
+"\n"
+"列表底部的小软盘图标允许您装入先前安装时创建的软件包列表。如果您一次想要配置"
+"多台计算机, 此选项可能非常有用。单击此图标后, 您需要插入另外一次安装结束后创"
+"建的那张软盘。参看最后一步的第二条提示, 其中描述了如何创建这样的软盘。"
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "自动依赖性"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:186
+#, c-format
msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
msgstr ""
-"如果您的显示卡支持不同的服务器,为了选择是否要启用 3D 加速,您应该在这里选择符合您需要的服务器。"
+"\"%s\":单击\"%s\"按钮将打开打印机配置向导。请参看``初学者指南''中的相应章"
+"节, 其中详细描述了如何设置新打印机。那里给出的界面与安装时所用的界面大体相"
+"同。"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:192
+#, c-format
msgid ""
-"By the time you install Mandrivalinux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
msgstr ""
-"在您安装 Mandrivalinux\n"
-"的这个时候,很可能有些软件包在发行之后已经更新。有些故障已经被修正,有些安全问题已经被解决。为了让您能够享用这些更新,您现在可以从 Internet\n"
-"上下载它们。如果您的 Internet 连接已经可以使用,请选择\"%s\"。如果您愿意以后再升级,请选择\"%s\"。\n"
+"此对话框可让您选择启动时要启动哪些服务。\n"
+"\n"
+"DrakX 将会列出本次安装所有可用的服务。请仔细检查, 并且去掉那些在启动时不总需"
+"要的服务。\n"
"\n"
+"将您的鼠标移动到选项上面会弹出帮助提示, 解释这个服务的作用。不过, 如果您不确"
+"定某一个服务到底是否需要, 还是保留默认设置会比较安全。\n"
"\n"
-"选择\"%s\"将显示一个清单,其中列出的地方都提供了更新软件包。您应该选择离您地理位置较近的镜像。之后会出现一个可以下载的软件包选择树:复查选项,然后单击\"%s\"来获取并安装选中的软件包,要终止请单击\"%s\"。"
+"!!\n"
+"如果您的机器将作为服务器, 在这一步请格外小心:请不要启动任何您不需要的服务。"
+"请不要忘了, 如果在服务器上启用了某些服务, 这些服务可能对服务器造成潜在的危"
+"险。通常, 只选择您确实要使用的那些服务。\n"
+"!!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:209
+#, c-format
msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
msgstr ""
-"通常情况下,DrakX\n"
-"能够正确检测到您的鼠标有几个按键。如果检测不正确的话,就会假定您有一个两键鼠标,并配置为模拟第三键。如果您想在两键鼠标上使用第三键的话,只需同时按下左右键。DrakX\n"
-"会自动确定您的鼠标所使用的端口,是 PS/2、串口,还是 USB 接口。\n"
-"\n"
-"如果您的三键鼠标没有滚轮,您可以选择\"%s\"类型的鼠标。DrakX 就会配置您的鼠标来模拟滚轮:只需按下中键,然后上下移动鼠标。\n"
-"\n"
-"如果因为某些原因,您希望指定不同类型的鼠标,请从提供的列表中进行选择。\n"
+"GNU/Linux 以 GMT (格林威治标准时)管理时间, 并根据您所选的时区将其翻译为本地时"
+"间。如果您主板上的时钟设定为本地时间, 您应当关闭\n"
+"\"%s\", 这将会让 GNU/Linux 知道系统始终和硬件时钟在同一时区。如果本计算机仍然"
+"运行其它操作系统, 则此设置将十分有用。\n"
+"\n"
+"\"%s\"选项将连接到 Internet 上的远程时间服务器自动校准系统时钟。要让此特性正"
+"常工作, 您必须连接到\n"
+"Internet。最好选择地理位置离您较近的时间服务器。此选项还会自动安装时间服务"
+"器, 这样您局域网中的其它计算机都能够进行自动校时了。"
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "自动时间同步"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
"\n"
-"您可以选择\"%s\"选项来选择``通用''鼠标类型,这样基本会适应任何鼠标。\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
"\n"
-"如果您选择了不同于默认值的鼠标,会出现一个测试屏幕。请用您鼠标的按键和滚轮来验证设置是否正确,鼠标是否工作正常。如果鼠标工作不正常,请按空格键或\n"
-"[Enter] 键取消测试,返回到可供选择的鼠标列表中。\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"显示卡\n"
"\n"
+" 安装程序通常可以自动检测并配置连接到计算机上的显示卡。如果检测的结果不对, "
+"您可以在此列表中选择您所实际使用的显示卡。\n"
"\n"
-"滚轮鼠标有时可能无法自动检测,所以您可能需要从列表中进行选择。请确定您选对了鼠标所连接的端口。选择鼠标后,单击\"%s\"按钮,会在屏幕上出现鼠标图像。试着滚动滚轮,以确保滚轮可以正常激活。您在滚动鼠标滚轮的同时应该看到屏幕上的滚轮也在滚动。另外,也应该测试一下鼠标按钮,鼠标指针的移动应该和鼠标的操作保持一致。"
+" 如果您的显示卡支持不同的服务器, 为了选择是否要启用 3D 加速, 您应该在这里选"
+"择符合您需要的服务器。"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:234
+#, c-format
msgid ""
"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrivalinux rely upon.\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
"\n"
"You'll see a list of different parameters to change to get an optimal\n"
"graphical display.\n"
@@ -585,367 +530,572 @@ msgid ""
"want to check \"%s\" if your machine is to act as a server, or if you were\n"
"not successful in getting the display configured."
msgstr ""
-"X(代表 X 窗口系统)是 GNU/Linux 图形界面的核心部分。Mandrivalinux\n"
+"X(代表 X 窗口系统)是 GNU/Linux 图形界面的核心部分。Mandriva Linux\n"
"附带的所有图形环境(KDE、GNOME、AfterStep、WindowMaker 等)都依赖于该系统。\n"
"\n"
-"您将会看到不同的参数列表,以便进行图形显示选项的更改来达到最佳状态。其中包括:\n"
+"您将会看到不同的参数列表, 以便进行图形显示选项的更改来达到最佳状态。其中包"
+"括:\n"
"\n"
"显示卡\n"
"\n"
-" 安装程序通常可以自动检测并配置连接到计算机上的显示卡。如果检测的结果不对,您可以在此列表中选择您所实际使用的显示卡。\n"
+" 安装程序通常可以自动检测并配置连接到计算机上的显示卡。如果检测的结果不对, "
+"您可以在此列表中选择您所实际使用的显示卡。\n"
"\n"
-" 如果您的显示卡支持不同的服务器,为了选择是否要启用 3D 加速,您应该在这里选择符合您需要的服务器。\n"
+" 如果您的显示卡支持不同的服务器, 为了选择是否要启用 3D 加速, 您应该在这里选"
+"择符合您需要的服务器。\n"
"\n"
"\n"
"\n"
"显示器\n"
"\n"
-" 安装程序通常可以自动检测并配置连接到计算机上的显示器。如果检测的结果不对,您可以在此列表中选择您所实际使用的显示器。\n"
+" 安装程序通常可以自动检测并配置连接到计算机上的显示器。如果检测的结果不对, "
+"您可以在此列表中选择您所实际使用的显示器。\n"
"\n"
"\n"
"\n"
"分辨率\n"
"\n"
" \n"
-"您可以在此选择分辨率和颜色深度,但您的显示卡硬件要支持。请选择最适合您需要的选项(您在安装完成之后仍可进行修改)。所选配置的例子会显示在显示器上。\n"
+"您可以在此选择分辨率和颜色深度, 但您的显示卡硬件要支持。请选择最适合您需要的"
+"选项(您在安装完成之后仍可进行修改)。所选配置的例子会显示在显示器上。\n"
"\n"
"\n"
"\n"
"测试\n"
"\n"
-" 根据您的硬件,此项可能不会出现。\n"
+" 根据您的硬件, 此项可能不会出现。\n"
"\n"
-" 系统将会以所选的分辨率打开图形屏幕。如果您在测试时看到了提示,请回答\"%s\",DrakX\n"
-"就会执行安装的下一步骤。如果您没有看到任何提示,这意味着自动检测的某一部分不正确,测试将会在 12\n"
-"秒后自动结束,并把您带回菜单。请更改设置,直到您能够看到正确的图形显示为止。\n"
+" 系统将会以所选的分辨率打开图形屏幕。如果您在测试时看到了提示, 请回答\"%s"
+"\", DrakX\n"
+"就会执行安装的下一步骤。如果您没有看到任何提示, 这意味着自动检测的某一部分不"
+"正确, 测试将会在 12\n"
+"秒后自动结束, 并把您带回菜单。请更改设置, 直到您能够看到正确的图形显示为"
+"止。\n"
"\n"
"\n"
"\n"
"选项\n"
"\n"
-" 您可以在此选择是否想要在计算机启动的时候就切换到图形界面。显然,如果本机将用作服务器,或者您的显示配置还没有成功,您可能想要选择\"%s\"。"
+" 您可以在此选择是否想要在计算机启动的时候就切换到图形界面。显然, 如果本机将"
+"用作服务器, 或者您的显示配置还没有成功, 您可能想要选择\"%s\"。"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:291
+#, c-format
msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandrivalinux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, don't queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you don't have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
+"Monitor\n"
"\n"
-"If you make a choice now, and later find that you don't like your printing\n"
-"system you may change it by running PrinterDrake from the Mandrivalinux\n"
-"Control Center and clicking on the \"%s\" button."
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
msgstr ""
-"现在,应该为您的计算机选择打印系统了。其它的操作系统也许只提供了一种选择,但 Mandrivalinux\n"
-"提供了两种。每种打印系统都能够在不同的配置中大展身手。\n"
+"显示器\n"
"\n"
-" * \"%s\" --\n"
-"这是``不排队打印''的缩写。如果您的打印机是直接连接在这台电脑上的,您也不会打印太多的任务,更不会使用网络打印机,那么请选择本系统。(\"%s\"\n"
-"只能应付极为简单的网络情况,而且在网络中使用也很慢。)如果您从来没有使用过 GNU/Linux,那么推荐您使用\"pdq\"。\n"
+" 安装程序通常可以自动检测并配置连接到计算机上的显示器。如果不幸您的显示器未"
+"被检测出来, 您可以在此列表中选择您所实际使用的显示器。"
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
"\n"
-" * \"%s\" -``通用 Unix\n"
-"打印系统'',不论是打印到本地打印机,还是打印到地球另一面的网络打印机,本系统都能完全胜任。它配置简单,甚至可以作为老式 \"lpd\n"
-"\"打印系统的服务器和客户机。所以即便是老得掉牙的操作系统需要打印服务的话,都可以顺畅的应用本系统。尽管它的功能十分强大,可它的基本设置仍然和\n"
-"\"pdq\" 一样简单。如果您想模拟一台 \"lpd\" 服务器,不要忘了打开 \"cups-lpd \" 守护程序。\"%s\"\n"
-"还包括一个图形界面,可用来打印或选择打印机选项,以及管理打印机。\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"分辨率\n"
"\n"
-"如果您现在进行了选择,但稍后又发现您并不喜欢所选择的打印系统,可以轻松修改。只需从 Mandrivalinux Control Center中选择\n"
-"PrinterDrake,然后单击\"%s\"按钮。"
+" 您可以在此选择分辨率和颜色深度, 但您的硬件要支持。请选择最适合您需要的选项"
+"(您在安装完成之后仍可进行修改)。所选配置的例子会显示在显示器上。"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:306
+#, c-format
msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
msgstr ""
-"显示卡\n"
-"\n"
-" 安装程序通常可以自动检测并配置连接到计算机上的显示卡。如果检测的结果不对,您可以在此列表中选择您所实际使用的显示卡。\n"
-"\n"
-" 如果您的显示卡支持不同的服务器,为了选择是否要启用 3D 加速,您应该在这里选择符合您需要的服务器。"
+"如果您的显示卡支持不同的服务器, 为了选择是否要启用 3D 加速, 您应该在这里选择"
+"符合您需要的服务器。"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:311
+#, c-format
msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandrivalinux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
msgstr ""
-"在继续之前,您应该仔细阅读许可协议的条款。该许可适用于整个 Mandrivalinux\n"
-"发行版。如果您同意其中的全部条款,请选中\"%s\"框。如果不同意,单击\"%s\"按钮将重新启动您的计算机。"
+"选项\n"
+"\n"
+" 您可以在此选择是否想要在计算机启动的时候就切换到图形界面。显然, 如果本机将"
+"用作服务器, 或者您的显示配置还没有成功, 您可能想要选择\"%s\"。"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:319
+#, c-format
msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which aren't needed at boot\n"
-"time.\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably don't want to start any services which you don't need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-"此对话框可让您选择启动时要启动哪些服务。\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
"\n"
-"DrakX 将会列出本次安装所有可用的服务。请仔细检查,并且去掉那些在启动时不总需要的服务。\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
"\n"
-"将您的鼠标移动到选项上面会弹出帮助提示,解释这个服务的作用。不过,如果您不确定某一个服务到底是否需要,还是保留默认设置会比较安全。\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
"\n"
-"!!\n"
-"如果您的机器将作为服务器,在这一步请格外小心:请不要启动任何您不需要的服务。请不要忘了,如果在服务器上启用了某些服务,这些服务可能对服务器造成潜在的危险。通常,只选择您确实要使用的那些服务。\n"
-"!!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
-msgid ""
-"Monitor\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
msgstr ""
-"显示器\n"
+"在这一步里, 您需要决定您想要将 Mandriva Linux\n"
+"操作系统安装到硬盘的何处。如果您的硬盘完全是空的, 或者已有操作系统使用了所有"
+"的空间, 您就必须要对硬盘进行分区。粗略的说, 对硬盘进行分区就是将其划分成几个"
+"逻辑上不同的部分, 以便创建安装您新的\n"
+"Mandriva Linux 系统所需的空间。\n"
"\n"
-" 安装程序通常可以自动检测并配置连接到计算机上的显示器。如果检测的结果不对,您可以在此列表中选择您所实际使用的显示器。"
+"由于对硬盘进行分区通常是不可恢复的, 并且可能导致数据丢失, 所以对于没有经验的"
+"用户来说, 分区是十分危险的操作。所幸的是, DrakX\n"
+"所包含的向导能够显著简化这一过程。在继续这一步骤之前, 请花点时间仔细阅读本节"
+"及以上的所有内容。\n"
+"\n"
+"根据您的硬盘配置不同, 您可从以下选项中加以选择:\n"
+"\n"
+" * \"%s\"。此选项将对您的空驱动器执行自动分区。如果您使用此选项, 则不会有任何"
+"后续的提示。\n"
+"\n"
+" * \"%s\"。向导检测到了硬盘上有一个或多个已有的 Linux\n"
+"分区。如果您想要使用这些分区, 请选择此选项。稍后, 安装程序会让您选择与每个分"
+"区关联的挂载点。先前的挂载点默认已经选中了, 而保留这些选项是个不错的主意。\n"
+"\n"
+" * \"%s\"。如果在您的硬盘上安装了 Microsoft Windows, 而该操作系统占用了所有的"
+"空间, 您就需要为 GNU/Linux\n"
+"创建剩余空间。要完成这一操作, 您可以删除您的 Microsoft Windows 分区和数据(参"
+"看``删除整个磁盘''方案), 或者更改\n"
+"Microsoft Windows FAT 或 NTFS 分区的大小。更改分区大小通常不会造成任何数据丢"
+"失, 但您必须事先对 Windows\n"
+"分区进行了磁盘碎片整理。我们强烈推荐您事先备份您的数据。如果您想要在同一台计"
+"算机上使用 Mandriva Linux 和 Microsoft\n"
+"Windows, 则推荐使用此选项。\n"
+"\n"
+" 注意, 在执行这一过程之后, 您原有的 Microsoft Windows 分区将会比先前小一"
+"些。而您在 Microsoft Windows\n"
+"下可用来存储数据或安装新软件的剩余空间也会变少。\n"
+"\n"
+" * \"%s\"。如果您想要删除硬盘上的全部数据和全部分区, 并将其替换为全新的 "
+"Mandriva Linux\n"
+"系统, 请选择此选项。请额外小心, 因为在您确认之后, 此操作无法撤销。\n"
+"\n"
+" !! 如果您选择了此选项, 您硬盘上的全部数据都将被删除。 !!\n"
+"\n"
+" * \"%s\"。当硬盘完全被 Microsoft Windows 占用时, 会出现此选项。选择此选项将"
+"删除硬盘上的全部内容, 然后从头开始进行分区。\n"
+"\n"
+" !! 如果您选择了此选项, 您硬盘上的全部数据都将被删除。 !!\n"
+"\n"
+" *\n"
+"\"%s\"。如果您想要手动对您的硬盘进行分区, 请选择此选项。请额外小心——该功能十"
+"分强大, 但也很危险, 您可能在不经意之间毁掉您的全部数据。这也正是为什么我们只"
+"对那些以前执行过类似操作并有些经验的用户才推荐此选项的原因。要获得关于如何使"
+"用\n"
+"DiskDrake 工具的更多说明, 请参阅``初学者指南''一书中的``管理您的分区''一节。"
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "使用已有分区"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "清除整个磁盘"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:380
+#, c-format
msgid ""
-"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandrivalinux, and to make it\n"
-"simpler to manage, they have been placed into groups of similar\n"
-"applications.\n"
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
"\n"
-"Mandrivalinux sorts package groups in four categories. You can mix and\n"
-"match applications from the various categories, so a ``Workstation''\n"
-"installation can still have applications from the ``Server'' category\n"
-"installed.\n"
+"The \"%s\" button shows two more buttons to:\n"
"\n"
-" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
-"more of the groups in the workstation category.\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
"\n"
-" * \"%s\": if you plan on using your machine for programming, select the\n"
-"appropriate groups from that category. The special \"LSB\" group will\n"
-"configure your system so that it complies as much as possible with the\n"
-"Linux Standard Base specifications.\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
"\n"
-" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
-"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
-"of the system. However, if you do not select the \"LSB\" group you will\n"
-"still have a system which is nearly 100%% LSB-compliant.\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
"\n"
-" * \"%s\": if your machine is intended to be a server, select which of the\n"
-"more common services you wish to install on your machine.\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
"\n"
-" * \"%s\": this is where you will choose your preferred graphical\n"
-"environment. At least one must be selected if you want to have a graphical\n"
-"interface available.\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group.\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
"\n"
-"You can check the \"%s\" box, which is useful if you're familiar with the\n"
-"packages being offered or if you want to have total control over what will\n"
-"be installed.\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"现在安装已经完成, 您的 GNU/Linux 系统已经可以使用了。只需单击\"%s\"就可重新启"
+"动系统。别忘了取出安装介质(CD-ROM\n"
+"或软盘)。在计算机完成硬件测试后, 您所看到的第一个系统自检完后的屏幕就是引导菜"
+"单, 您可以从中选择要启动哪个操作系统。\n"
"\n"
-"If you start the installation in \"%s\" mode, you can deselect all groups\n"
-"and prevent the installation of any new packages. This is useful for\n"
-"repairing or updating an existing system.\n"
+"\"%s\"按钮显示了两个额外的按钮, 可:\n"
"\n"
-"If you deselect all groups when performing a regular installation (as\n"
-"opposed to an upgrade), a dialog will pop up suggesting different options\n"
-"for a minimal installation:\n"
+" * \"%s\":创建一张安装软盘。该软盘可在无人值守的情况下, 按照您刚才的设置重新"
+"安装一个类似的系统。\n"
"\n"
-" * \"%s\": install the minimum number of packages possible to have a\n"
-"working graphical desktop.\n"
+" 请注意, 单击按钮后会出现两个不同的选项:\n"
"\n"
-" * \"%s\": installs the base system plus basic utilities and their\n"
-"documentation. This installation is suitable for setting up a server.\n"
+" * \"%s\"。 半自动安装。只有分区部分是交互的。\n"
"\n"
-" * \"%s\": will install the absolute minimum number of packages necessary\n"
-"to get a working Linux system. With this installation you will only have a\n"
-"command-line interface. The total size of this installation is about 65\n"
-"megabytes."
-msgstr ""
-"现在该指定要在您的系统中安装哪些程序了。Mandrivalinux\n"
-"为您准备了数千个软件包。而为了使管理软件包更加容易,软件包已经按相似程度分成了多个组。\n"
+" * \"%s\"。 全自动安装:硬盘会被完全重写, 所有数据都将丢失。\n"
"\n"
-"Mandrivalinux\n"
-"按四个类别对软件包进行了分类。您可以从不同的类别混合选择应用程序。也就是说,``工作站''中也可以选择安装``服务器''分类中的应用程序。\n"
+" 如果有一大批相同的机器要安装, 这个功能非常方便。请参考我们网站上的自动安装"
+"一节中的更多信息。\n"
"\n"
-" * \"%s\":如果您计划将您的计算机用作工作站,请选择工作站分类中的一个或多个组。\n"
+" * \"%s\"(*):把您刚才选择的软件包记录在软盘上。要使用本次的安装包执行另外一"
+"次安装, 请插入软盘然后开始安装。出现提示的时候, 按 [F1]\n"
+"键, 输入 >>linux defcfg=\"floppy\" <<。\n"
"\n"
-" * \"%s\":如果您计划使用您的计算机进行编程,请从该类别中选择相应的组。特殊的 \"LSB\"\n"
-"组将会对您的系统进行配置,这样所编译的结果将会尽可能遵从 Linux 标准基础(LSB)规范。\n"
+"(*) 您需要一张 FAT 格式的软盘。要在 GNU/Linux 下创建一张这样的软盘, 一种方法"
+"是输入 \"mformat a:\";另一种是首先\n"
+"\"fdformat /dev/fd0\", 然后 \"mkfs.vfat /dev/fd0\"。"
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "生成自动安装软盘"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
"\n"
-" 选择 \"LSB\" 组将安装 \"2.4\" 内核系列,而不是默认的 \"2.6\" 内核。这是为了保证系统能够百分之百的遵从\n"
-"LSB。但是,即便您不选择 \"LSB\" 组,您也会得到一个接近百分之百遵从 LSB 的系统。\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
"\n"
-" * \"%s\":如果您的计算机即将成为服务器,请选择您想要安装在计算机上的公共服务。\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
"\n"
-" * \"%s\":这里您可以选择您首选的图形环境。如果您想要使用图形界面,则至少要选择其中一个。\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
"\n"
-"将鼠标光标移动到组名之上,您会看到该组的简要描述文字。\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
"\n"
-"如果您对所提供的软件包比较熟悉,或者您想要完全控制安装什么软件包,就可以选中\"%s\"选项。\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"如果您想要重用某些现有的 GNU/Linux\n"
+"分区, 您可能想要先格式化其中的一些分区, 并删除这些分区中的全部数据。如果您希"
+"望这么做的话, 请同时选中这些分区。\n"
"\n"
-"如果您以\"%s\"模式启动安装,您可以不选择任何组,这样可以避免安装任何新软件包。这对于修复或升级已有系统很有帮助。\n"
+"请注意, 没有必要重新格式化已有的全部分区。您必须重新格式化包含操作系统的分区"
+"(比如 \"/\", \"/usr\" 或\n"
+"\"/var\"), 而无需重新格式化包含您想要保留的数据的分区(典型的如 \"/home\")。\n"
"\n"
-"如果您在执行常规安装(与升级相对)的时候一个组也没有选中,会弹出一个对话框建议最小安装的不同选项:\n"
+"请在选择分区时额外小心。格式化后, 选中分区的全部数据都将被删除, 您也无法进行"
+"恢复。\n"
"\n"
-" * \"%s\":安装图形桌面所需的最少软件包。\n"
+"如果您准备好格式化分区了, 请单击\"%s\"。\n"
"\n"
-" * \"%s\":安装基本系统,另加基本工具及相应文档。此安装适合建立服务器。\n"
+"如果您想要选择其它分区用于安装 Mandriva Linux 操作系统, 请单击\"%s\"。\n"
"\n"
-" * \"%s\":将安装使 Linux 系统能够正常运行的最少软件包。使用此安装,您仅仅有命令行界面。此安装的总计大小为约 65 兆字节。"
+"如果您想要选择要检测磁盘上的坏块, 请单击单击\"%s\"。"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:437
+#, c-format
msgid ""
-"The Mandrivalinux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
msgstr ""
-"Mandrivalinux 安装分布于多张 CD-ROM 中。如果选中软件包位于另外的 CD-ROM,DrakX 将弹出当前\n"
-"CD,并要求您插入所需的正确 CD。如果您手中没有所请求的 CD,只需单击\"%s\",就不会安装相应的软件包了。"
+"在您安装 Mandriva Linux\n"
+"的这个时候, 很可能有些软件包在发行之后已经更新。有些故障已经被修正, 有些安全"
+"问题已经被解决。为了让您能够享用这些更新, 您现在可以从 Internet\n"
+"上下载它们。如果您的 Internet 连接已经可以使用, 请选择\"%s\"。如果您愿意以后"
+"再升级, 请选择\"%s\"。\n"
+"\n"
+"\n"
+"选择\"%s\"将显示一个清单, 其中列出的地方都提供了更新软件包。您应该选择离您地"
+"理位置较近的镜像。之后会出现一个可以下载的软件包选择树:复查选项, 然后单击\"%"
+"s\"来获取并安装选中的软件包, 要终止请单击\"%s\"。"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:450
+#, c-format
msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
msgstr ""
-"GNU/Linux 以 GMT (格林威治标准时)管理时间,并根据您所选的时区将其翻译为本地时间。如果您主板上的时钟设定为本地时间,您应当关闭\n"
-"\"%s\",这将会让 GNU/Linux 知道系统始终和硬件时钟在同一时区。如果本计算机仍然运行其它操作系统,如\n"
-"Windows,则此设置将十分有用。\n"
+"在这里, DrakX 将允许您选择计算机要使用的安全级别。说的直白一点, 如果计算机将"
+"包含关键数据, 或者将直接暴露于 Internet\n"
+"之下, 则应该设置较高的安全级别。较高的安全级别通常以损失易用性作为代价。\n"
+"\n"
+"如果您不知道要选择什么, 请保持默认选项。您可以稍后从 Mandriva Linux 控制中心"
+"的一部分 draksec\n"
+"来更改安全级别。\n"
"\n"
-"\"%s\"选项将连接到 Internet 上的远程时间服务器自动校准系统时钟。要让此特性正常工作,您必须连接到\n"
-"Internet。最好选择地理位置离您较近的时间服务器。此选项还会自动安装时间服务器,这样您局域网中的其它计算机都能够进行自动校时了。"
+"请在\"%s\"域中填入要负责安全的人的电子邮件地址。安全信息将被发送到该地址。"
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "安全管理员"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:464
+#, c-format
msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
"\n"
-"One caveat: don't make the password too long or too complicated because you\n"
-"must be able to remember it!\n"
+"To partition the selected hard drive, you can use these options:\n"
"\n"
-"The password won't be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you don't know which\n"
-"one to use, you should ask your network administrator.\n"
+"\"%s\": gives access to additional features:\n"
"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
msgstr ""
-"要保卫您的 GNU/Linux 系统,现在是最关键的一步:您需要输入 \"root\" 密码。\"Root\"\n"
-"是系统管理员,而且是唯一有权进行更新、添加用户、更改泛系统配置等操作的用户。简言之,\"root\"\n"
-"可以做任何事!这就是为什么您必须选择难于猜测的密码:如果您的密码太简单了,DrakX\n"
-"会提醒您的。正如您所看到的那样,您不必非得输入密码,但是我们强烈建议您输入一个密码。GNU/Linux 和其它任何操作系统一样容易遇到错误的操作。由于\n"
-"\"root\" 可以越过所有限制并在访问分区时无意间就删除分区上的全部数据,所以成为 \"root\" 应该很难才对。\n"
+"在这一步中, 您需要选择要使用哪个或哪些分区来安装您的 Mandriva Linux 系统。如"
+"果已经定义了分区, 不管是先前安装的 GNU/Linux\n"
+"还是由其它分区工具划分的, 您都可以使用已有的分区。否则, 必须对硬盘分区进行定"
+"义。\n"
"\n"
-"密码应该是字母和数字的无序混合,并且至少要有 8 位长。绝对不要将 \"root\" 的密码写下来 -- 这样的密码形同虚设。\n"
+"要创建分区, 您必须先选择硬盘。您可以单击“hda”选择第一个 IDE 硬盘进行分区, "
+"“hdb”选择第二个 IDE 硬盘, “sda”\n"
+"选择第一个 SCSI 驱动器, 依此类推。\n"
"\n"
-"还有一条准则 -- 不要将密码设置得太长或太复杂,否则您自己也记不住!\n"
+"为了对选中硬盘进行分区, 您需要使用这些选项: \n"
"\n"
-"您输入的密码不会显示在屏幕上。为了减少盲打所造成的输入错误,您需要再次输入密码。如果您碰巧两次都输错了,那么这个``不正确的''密码将成为您第一次以\n"
-"\"root\" 身份登录时的密码。\n"
+" * \"%s\": 此选项将删除选中硬盘上的全部分区\n"
+"\n"
+" * \"%s\": 此选项可在您硬盘的剩余空间中为您自动创建 ext3 和交换分区\n"
+"\n"
+"\"%s\": 使您可以访问额外特性: \n"
+"\n"
+" * \"%s\": 将分区表保存到软盘。如果需要的话, 稍后可进行分区表修复。强烈推荐您"
+"执行这一步骤。\n"
+"\n"
+" * \"%s\": 允许您恢复先前保存在软盘上的分区表。\n"
+"\n"
+" * \"%s\": 如果您的分区表已损坏, 您可以使用此选项尝试修复。请额外小心, 并记住"
+"这一选项并不总是能够帮助您。\n"
+"\n"
+" * \"%s\": 忽略全部更改并重新装入硬盘上的原始分区表。\n"
+"\n"
+" * \"%s\": 取消此选项将强迫用户手动挂载类似软盘和 CD-ROM 的可移动介质。\n"
+"\n"
+" * \"%s\": 如果您想要使用向导对您的营盘进行分区, 则使用此选项。如果您对分区理"
+"解不深的话, 推荐您使用此选项。\n"
+"\n"
+" * \"%s\": 使用此选项取消您的更改。\n"
+"\n"
+" * \"%s\": 允许对分区进行额外的操作(类型、选项、格式化), 并给出关于硬盘的额外"
+"信息。\n"
+"\n"
+" * \"%s\": 当您完成对硬盘的分区后, 此选项将把您的更改回存到硬盘。\n"
+"\n"
+"定义分区大小时, 您可以使用键盘上的光标键对分区大小进行调整。\n"
+"\n"
+"注意: 您可以使用键盘访问任何选项。可以使用 [Tab] 和 [上/下]光标键来切换分"
+"区。\n"
+"\n"
+"选中分区后, 您可以用: \n"
+"\n"
+" * Ctrl+C 创建新分区(如果选中了空分区)\n"
+"\n"
+" * Ctrl+D 删除分区\n"
"\n"
-"如果您想要身份验证服务器控制对您计算机的访问,请单击\"%s\"按钮。\n"
+" * Ctrl+M 设定挂载点\n"
"\n"
-"如果您的网络使用 LDAP 或 NIS,又或者PDC Windows\n"
-"域验证服务,请选择相应的\"%s\"。如果您不知道应该使用哪种,请询问您的网络管理员。\n"
+"要的关于不同的文件系统类型的更多信息, 请查看“参考手册”中 ext2FS 一章。\n"
"\n"
-"如果您记住密码有困难的话,如果您的计算机不需要连接到 Internet,您也绝对信任可使用您计算机的所有人,您可以选择\"%s\"。"
+"如果您在 PPC 计算机上安装, 您可能需要创建至少 1MB 大小的 HFS“bootstrap”分区, "
+"该分区将用于 yaboot\n"
+"引导程序。如果您创建的分区再稍微大点, 比如说 50MB, 您可能会发现这个分区可用来"
+"存储内核或紧急引导时的虚拟磁盘映像。"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "自动挂载可移动介质"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "在正常/专家模式间切换"
+
+#: ../help.pm:536
+#, c-format
msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
"\"sd\" if it is a SCSI hard drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard drives:\n"
"\n"
" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
@@ -957,131 +1107,96 @@ msgid ""
" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
msgstr ""
-"在此列出了您硬盘上已有的 Linux\n"
-"分区。您可以保留向导所作的选择,因为对于大多数安装来说这一选择是较好的。如果您想要进行更改的话,您必须至少定义一个根分区(\"/\")。不要选择太小的分区,否则您可能无法安装足够的软件。如果您想要将您的数据存放在单独的分区中,您还需要创建一个\n"
-"\"/home\" 分区(仅当您有多于一个 Linux 分区时才可用)。\n"
+"在硬盘上检测到了多个 Microsoft 分区。请选择一个分区改变大小, 以便安装您新\n"
+"的 Mandriva Linux 操作系统。\n"
"\n"
-"每个分区都按下列格式列出:\"名称\",\"容量\"。\n"
+"每个分区都是按“Linux 名称”、“Windows 名称”、“容量”顺序列出的。\n"
"\n"
-"\"名称\"结构为:\"硬盘类型\",\"硬盘编号\",\"分区编号\"(例如,\"hda1\")。\n"
+"“Linux 名称”的结构为:“硬盘类型”、“硬盘编号”、“分区编号”(例如, \n"
+"“hda1”)。\n"
"\n"
-"\"硬盘类型\"取决于硬盘的接口方式。如您的硬盘是 IDE 硬盘,则\"硬盘类型\"就为\"hd\";若硬盘为 SCSI 硬盘,就为\"sd\"。\n"
+"如果您的硬盘是 IDE 硬盘, “硬盘类型”为“hd”;如果为 SCSI 硬盘则为“sd”。\n"
"\n"
-"\"硬盘编号\"就是在\"hd\"或\"sd\"后面的那个字母。对于IDE硬盘:\n"
+"“硬盘编号”总是跟在“hd”或“sd”后面的字母。对于 IDE 硬盘来说:\n"
"\n"
-" * \"a\"意味着\"主 IDE 控制器的主硬盘\";\n"
+" *“a”意味着“主 IDE 控制器的主硬盘”;\n"
"\n"
-" * \"b\"意味着\"主 IDE 控制器的从硬盘\";\n"
+" *“b”意味着“主 IDE 控制器的从硬盘”;\n"
"\n"
-" * \"c\"意味着\"从 IDE 控制器的主硬盘\";\n"
+" *“c”意味着“从 IDE 控制器的主硬盘”;\n"
"\n"
-" * \"d\"意味着\"从IDE控制器的从硬盘\"。\n"
+" *“d”意味着“从 IDE 控制器的从硬盘”。\n"
+"\n"
+"对于 SCSI 硬盘, “a”意味着“最低的 SCSI ID”, “b”意味着“第二低的 SCSI ID”, 等"
+"等。\n"
"\n"
-"对于 SCSI 硬盘,\"a\"意味着\"最低的 SCSI ID\",\"b\"意味着\"第二低的 SCSI ID\",依此类推。"
+"“Windows 名称”就是硬盘在 Windows 下的盘符(第一个此盘或分区就是“C:”)。"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:567
+#, c-format
msgid ""
"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country isn't in the\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
"list shown, click on the \"%s\" button to get the complete country list."
msgstr ""
-"\"%s\":检查当前的国家选择。如果您并非在这个国家,请单击\"%s\"按钮,并选择另外的选项。如果您的国家在第一个列表中并没有显示出来,单击\"%s\"按钮可获得完整的国家列表。"
+"\"%s\":检查当前的国家选择。如果您并非在这个国家, 请单击\"%s\"按钮, 并选择另"
+"外的选项。如果您的国家在第一个列表中并没有显示出来, 单击\"%s\"按钮可获得完整"
+"的国家列表。"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:572
+#, c-format
msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
-"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you don't have to reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"won't be able to recover it.\n"
-"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
-"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrivalinux operating system installation.\n"
-"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-"如果您想要重用某些现有的 GNU/Linux\n"
-"分区,您可能想要先格式化其中的一些分区,并删除这些分区中的全部数据。如果您希望这么做的话,请同时选中这些分区。\n"
-"\n"
-"请注意,没有必要重新格式化已有的全部分区。您必须重新格式化包含操作系统的分区(比如 \"/\",\"/usr\" 或\n"
-"\"/var\"),而无需重新格式化包含您想要保留的数据的分区(典型的如 \"/home\")。\n"
-"\n"
-"请在选择分区时额外小心。格式化后,选中分区的全部数据都将被删除,您也无法进行恢复。\n"
-"\n"
-"如果您准备好格式化分区了,请单击\"%s\"。\n"
-"\n"
-"如果您想要选择其它分区用于安装 Mandrivalinux 操作系统,请单击\"%s\"。\n"
-"\n"
-"如果您想要选择要检测磁盘上的坏块,请单击单击\"%s\"。"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
-msgid ""
-"If you choose to install packages individually, the installer will present\n"
-"a tree containing all packages classified by groups and subgroups. While\n"
-"browsing the tree, you can select entire groups, subgroups, or individual\n"
-"packages.\n"
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
"\n"
-"Whenever you select a package on the tree, a description will appear on the\n"
-"right to let you know the purpose of that package.\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
"\n"
-"!! If a server package has been selected, either because you specifically\n"
-"chose the individual package or because it was part of a group of packages,\n"
-"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandrivalinux will automatically start any installed\n"
-"services at boot time. Even if they are safe and have no known issues at\n"
-"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandrivalinux was\n"
-"finalized. If you don't know what a particular service is supposed to do or\n"
-"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
-"the listed services and they will be started automatically at boot time. !!\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
"\n"
-"The \"%s\" option is used to disable the warning dialog which appears\n"
-"whenever the installer automatically selects a package to resolve a\n"
-"dependency issue. Some packages depend on others and the installation of\n"
-"one particular package may require the installation of another package. The\n"
-"installer can determine which packages are required to satisfy a dependency\n"
-"to successfully complete the installation.\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
"\n"
-"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-"package list created during a previous installation. This is useful if you\n"
-"have a number of machines that you wish to configure identically. Clicking\n"
-"on this icon will ask you to insert the floppy disk created at the end of\n"
-"another installation. See the second tip of the last step on how to create\n"
-"such a floppy."
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
msgstr ""
-"如果您选中了想要选择单个软件包,安装程序会显示出一个软件包的树形结构,其中会按照组和子组分类显示全部软件包。浏览软件包树时,您可以选择整个组,子组或单个软件包。\n"
+"仅当在您的计算机上发现了已有的 GNU/Linux 分区, 才会激活这一步骤。\n"
"\n"
-"只要您在左侧的树中选择了软件包,右侧就会出现该软件包用途的描述。\n"
+"DrakX 现在需要知道您是想要执行全新安装, 还是升级已有的 Mandriva Linux 系"
+"统:\n"
"\n"
-"!!\n"
-"如果选择了服务器软件包,不管是您特意选中的,还是因为该软件包是某组的成员,您都需要确认是否真的想要安装这些服务器。默认情况下,Mandrivalinux\n"
-"会在启动时自动启动已安装的全部服务。尽管在发行版送出时这些服务是安全的,但完全有可能在此版本 Mandrivalinux\n"
-"完成后发现了相应软件的安全漏洞。如果您并不知道特定服务的用途,或者不知道为什么要安装这些服务,请单击\"%s\"。单击\"%s\"将安装列出的服务,并且启动时这些服务会被自动启动。\n"
-"!!\n"
-"\n"
-"\n"
-"\"%s\"选项用于在安装程序自动选择软件包以解决依赖性问题时禁止弹出警告对话框。某些软件包会依赖其它软件包,而要安装一个软件包的需要先安装另外一个软件包。安装程序会自动确定要满足依赖性需要安装哪些软件包,以便顺利完成安装。\n"
+" *\n"
+"\"%s\":总体来说, 这将完全销毁旧系统。但是, 根据您选择的分区方案, 您可以让现"
+"有的数据(比如\"主\"目录)免于覆盖。如果您想要更改硬盘的分区方案, 或者更该文件"
+"系统, 您就应该使用此选项。\n"
"\n"
+" * \"%s\":这一安装级别允许您更新目前安装在您 Mandriva Linux\n"
+"系统上的软件包。您的分区方案和用户数据都不会被破坏。绝大多数配置步骤仍然可"
+"用, 与标准安装类似。\n"
"\n"
-"列表底部的小软盘图标允许您装入先前安装时创建的软件包列表。如果您一次想要配置多台计算机,此选项可能非常有用。单击此图标后,您需要插入另外一次安装结束后创建的那张软盘。参看最后一步的第二条提示,其中描述了如何创建这样的软盘。"
+"使用``升级''选项应该在 \"8.1\" 或更新版本的 Mandriva Linux 系统上工作正常。不"
+"推荐在先于 \"8.1\" 版本的\n"
+"Mandriva Linux 系统上执行升级。"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:594
+#, c-format
msgid ""
"Depending on the language you chose (), DrakX will automatically select a\n"
"particular type of keyboard configuration. Check that the selection suits\n"
@@ -1091,7 +1206,7 @@ msgid ""
"language: for example, if you are an English-speaking Swiss native, you may\n"
"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard don't match. In either case, this installation step\n"
+"country-set keyboard do not match. In either case, this installation step\n"
"will allow you to select an appropriate keyboard from a list.\n"
"\n"
"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
@@ -1100,223 +1215,572 @@ msgid ""
"dialog will allow you to choose the key binding which will switch the\n"
"keyboard between the Latin and non-Latin layouts."
msgstr ""
-"根据您在中所选择的语言,DrakX 将会自动选择特定类型的键盘配置。请检查列出的选项是否适合您,若不适合请选择其它键盘布局。\n"
+"根据您在中所选择的语言, DrakX 将会自动选择特定类型的键盘配置。请检查列出的选"
+"项是否适合您, 若不适合请选择其它键盘布局。\n"
"\n"
"\n"
-"当然,可能您使用的语言与键盘并不相同:例如,您是说英语的瑞典本土人,但正在用瑞士键盘。或者,如果您说英语但住在魁北克,您可能也会遇到您的母语和所使用的键盘并不匹配的情况。不管是哪种情况,您都可以在这一步骤从列表种选择相应的键盘。\n"
+"当然, 可能您使用的语言与键盘并不相同:例如, 您是说英语的瑞典本土人, 但正在用"
+"瑞士键盘。或者, 如果您说英语但住在魁北克, 您可能也会遇到您的母语和所使用的键"
+"盘并不匹配的情况。不管是哪种情况, 您都可以在这一步骤从列表种选择相应的键"
+"盘。\n"
"\n"
"单击\"%s\"按钮可显示所支持键盘的完整列表。\n"
"\n"
-"如果您选择了基于非拉丁字符集的键盘布局,下个对话框将允许您选择用于切换拉丁和非拉丁布局之间的组合键。"
+"如果您选择了基于非拉丁字符集的键盘布局, 下个对话框将允许您选择用于切换拉丁和"
+"非拉丁布局之间的组合键。"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:612
+#, c-format
msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
+"The first step is to choose your preferred language.\n"
"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
"\n"
-"If DrakX can't determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" won't install any boot loader. Use this option only if you\n"
-"know what you're doing."
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
msgstr ""
-"所谓引导程序,是指计算机启动时所执行的小程序。它的责任就是启动整个系统。通常,引导程序的安装是全自动的。DrakX\n"
-"将分析磁盘的引导扇区,并根据发现的情况做出以下操作:\n"
+"第一步是选择您首选的语言。\n"
"\n"
-" * 如果发现了 Windows 引导扇区,则将其替换为 GRUB/LILO 引导扇区。这样,您就可以装入 GNU/Linux\n"
-"或在您计算机上安装的任何操作系统。\n"
+"您对首选语言的选择将影响安装程序、文档及系统的总体配置。请先选择您所在的地"
+"区, 然后选择您讲的语言。\n"
+"\n"
+"\n"
+"单击\"%s\"按钮以后, 您可以选择要在您的工作站上安装哪些额外的语言, 即为系统文"
+"档和应用程序安装特定语言的文件。例如, 如果您的计算机要为繁体中文的用户提供服"
+"务, 请在树视图中选择简体中文作为默认语言, 然后在高级选项中选择\"%s\"。\n"
+"\n"
+"关于 UTF-8 (Unicode) 支持:Unicode 是一种新的字符编码, 该编码可支持所有现存的"
+"语言。但是, 在 GNU/Linux 下完全支持\n"
+"Unicode, 仍然在开发和完善中。由此原因, Mandriva Linux 会根据用户的选择是否使"
+"用 UTF-8:\n"
+"\n"
+" * 如果您所选的语言自身有强制性的编码(latin1 语言、俄语、日语、中文、朝鲜语、"
+"泰语、希腊语、土耳其语及大多数 iso-8859-2\n"
+"语言), 则会默认使用强制编码;\n"
+"\n"
+" * 其它语言默认会使用 Unicode;\n"
"\n"
-" * 如果发现了 GRUB 或 LILO 引导扇区,则将其替换为新的引导扇区。\n"
+" * 如果需要两种或更多种语言, 而这两种语言所使用的编码并不相同, 则整个系统都会"
+"使用 Unicode;\n"
"\n"
-"如果无法确定,DrakX\n"
-"将询问您将引导程序放在哪里。通常,\"%s\"是最安全的地方。选择\"%s\"将不会安装任何引导程序。除非您真的知道自己在做什么的话,否则不要使用此选项。"
+" * 最后, 如果要强制系统使用 Unicode, 而不管选中的是哪个或哪些语言, 则应选中选"
+"项\"%s\"。\n"
+"\n"
+"\n"
+"请注意, 系统没有限制您只能选择一种额外的语言。您可以选择多种语言, 甚至选择\"%"
+"s\"框表明您想要安装全部语言。选择支持某种语言, 意味着同时安装该语言的翻译、字"
+"体、拼写检查程序等等。\n"
+"\n"
+"要在系统中所安装的不同语言之间切换, 请以 \"root\" 身份执行 \"/usr/sbin/"
+"localedrake\"\n"
+"命令, 这样可以更改整个系统所用的语言。以普通用户执行该命令, 只会更改特定用户"
+"的语言设置。"
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "西班牙"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:653
+#, c-format
msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Don't forget\n"
-"to remove the installation media (CD-ROM or floppy). The first thing you\n"
-"should see after your computer has finished doing its hardware tests is the\n"
-"boot-loader menu, giving you the choice of which operating system to start.\n"
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
"\n"
-"The \"%s\" button shows two more buttons to:\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
"\n"
-" * \"%s\": enables you to create an installation floppy disk which will\n"
-"automatically perform a whole installation without the help of an operator,\n"
-"similar to the installation you've just configured.\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
"\n"
-" Note that two different options are available after clicking on that\n"
-"button:\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"通常情况下, DrakX\n"
+"能够正确检测到您的鼠标有几个按键。如果检测不正确的话, 就会假定您有一个两键鼠"
+"标, 并配置为模拟第三键。如果您想在两键鼠标上使用第三键的话, 只需同时按下左右"
+"键。DrakX\n"
+"会自动确定您的鼠标所使用的端口, 是 PS/2、串口, 还是 USB 接口。\n"
"\n"
-" This feature is very handy when installing on a number of similar\n"
-"machines. See the Auto install section on our web site for more\n"
-"information.\n"
+"如果您的三键鼠标没有滚轮, 您可以选择\"%s\"类型的鼠标。DrakX 就会配置您的鼠标"
+"来模拟滚轮:只需按下中键, 然后上下移动鼠标。\n"
"\n"
-" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
-"To use this selection with another installation, insert the floppy and\n"
-"start the installation. At the prompt, press the [F1] key, type >>linux\n"
-"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"如果因为某些原因, 您希望指定不同类型的鼠标, 请从提供的列表中进行选择。\n"
"\n"
-"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
-"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
-"/dev/fd0\"."
+"您可以选择\"%s\"选项来选择``通用''鼠标类型, 这样基本会适应任何鼠标。\n"
+"\n"
+"如果您选择了不同于默认值的鼠标, 会出现一个测试屏幕。请用您鼠标的按键和滚轮来"
+"验证设置是否正确, 鼠标是否工作正常。如果鼠标工作不正常, 请按空格键或\n"
+"[Enter] 键取消测试, 返回到可供选择的鼠标列表中。\n"
+"\n"
+"\n"
+"滚轮鼠标有时可能无法自动检测, 所以您可能需要从列表中进行选择。请确定您选对了"
+"鼠标所连接的端口。选择鼠标后, 单击\"%s\"按钮, 会在屏幕上出现鼠标图像。试着滚"
+"动滚轮, 以确保滚轮可以正常激活。您在滚动鼠标滚轮的同时应该看到屏幕上的滚轮也"
+"在滚动。另外, 也应该测试一下鼠标按钮, 鼠标指针的移动应该和鼠标的操作保持一"
+"致。"
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "模拟滚轮"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "通用 | 任何 PS/2 或 USB 鼠标"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"现在安装已经完成,您的 GNU/Linux 系统已经可以使用了。只需单击\"%s\"就可重新启动系统。别忘了取出安装介质(CD-ROM\n"
-"或软盘)。在计算机完成硬件测试后,您所看到的第一个系统自检完后的屏幕就是引导菜单,您可以从中选择要启动哪个操作系统。\n"
+"请选择正确的端口。例如, \n"
+"Windows 里的 COM1, 在 GNU/Linux 里面叫做 ttyS0。"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
"\n"
-"\"%s\"按钮显示了两个额外的按钮,可:\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
"\n"
-" * \"%s\":创建一张安装软盘。该软盘可在无人值守的情况下,按照您刚才的设置重新安装一个类似的系统。\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
"\n"
-" 请注意,单击按钮后会出现两个不同的选项:\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
"\n"
-" * \"%s\"。 半自动安装。只有分区部分是交互的。\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
"\n"
-" * \"%s\"。 全自动安装:硬盘会被完全重写,所有数据都将丢失。\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"要保卫您的 GNU/Linux 系统, 现在是最关键的一步:您需要输入 \"root\" 密码。"
+"\"Root\"\n"
+"是系统管理员, 而且是唯一有权进行更新、添加用户、更改泛系统配置等操作的用户。"
+"简言之, \"root\"\n"
+"可以做任何事!这就是为什么您必须选择难于猜测的密码:如果您的密码太简单了, "
+"DrakX\n"
+"会提醒您的。正如您所看到的那样, 您不必非得输入密码, 但是我们强烈建议您输入一"
+"个密码。GNU/Linux 和其它任何操作系统一样容易遇到错误的操作。由于\n"
+"\"root\" 可以越过所有限制并在访问分区时无意间就删除分区上的全部数据, 所以成"
+"为 \"root\" 应该很难才对。\n"
+"\n"
+"密码应该是字母和数字的无序混合, 并且至少要有 8 位长。绝对不要将 \"root\" 的密"
+"码写下来 -- 这样的密码形同虚设。\n"
+"\n"
+"还有一条准则 -- 不要将密码设置得太长或太复杂, 否则您自己也记不住!\n"
+"\n"
+"您输入的密码不会显示在屏幕上。为了减少盲打所造成的输入错误, 您需要再次输入密"
+"码。如果您碰巧两次都输错了, 那么这个``不正确的''密码将成为您第一次以\n"
+"\"root\" 身份登录时的密码。\n"
"\n"
-" 如果有一大批相同的机器要安装,这个功能非常方便。请参考我们网站上的自动安装一节中的更多信息。\n"
+"如果您想要身份验证服务器控制对您计算机的访问, 请单击\"%s\"按钮。\n"
"\n"
-" * \"%s\"(*):把您刚才选择的软件包记录在软盘上。要使用本次的安装包执行另外一次安装,请插入软盘然后开始安装。出现提示的时候,按 [F1]\n"
-"键,输入 >>linux defcfg=\"floppy\" <<。\n"
+"如果您的网络使用 LDAP 或 NIS, 又或者 PDC Windows\n"
+"域验证服务, 请选择相应的\"%s\"。如果您不知道应该使用哪种, 请询问您的网络管理"
+"员。\n"
"\n"
-"(*) 您需要一张 FAT 格式的软盘。要在 GNU/Linux 下创建一张这样的软盘,一种方法是输入 \"mformat a:\";另一种是首先\n"
-"\"fdformat /dev/fd0\",然后 \"mkfs.vfat /dev/fd0\"。"
+"如果您记住密码有困难的话, 如果您的计算机不需要连接到 Internet, 您也绝对信任可"
+"使用您计算机的所有人, 您可以选择\"%s\"。"
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "认证"
# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
+#: ../help.pm:728
+#, c-format
msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrivalinux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
"\n"
-"To partition the selected hard drive, you can use these options:\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
"\n"
-" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"所谓引导程序, 是指计算机启动时所执行的小程序。它的责任就是启动整个系统。通"
+"常, 引导程序的安装是全自动的。DrakX\n"
+"将分析磁盘的引导扇区, 并根据发现的情况做出以下操作:\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
-"partitions in the free space of your hard drive\n"
+" * 如果发现了 Windows 引导扇区, 则将其替换为 GRUB/LILO 引导扇区。这样, 您就可"
+"以装入 GNU/Linux\n"
+"或在您计算机上安装的任何操作系统。\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+" * 如果发现了 GRUB 或 LILO 引导扇区, 则将其替换为新的引导扇区。\n"
"\n"
-" * \"%s\": saves the partition table to a floppy. Useful for later\n"
-"partition-table recovery if necessary. It is strongly recommended that you\n"
-"perform this step.\n"
+"如果无法确定, DrakX\n"
+"将询问您将引导程序放在哪里。通常, \"%s\"是最安全的地方。选择\"%s\"将不会安装"
+"任何引导程序。除非您真的知道自己在做什么的话, 否则不要使用此选项。"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
"\n"
-" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it doesn't always\n"
-"work.\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"现在, 应该为您的计算机选择打印系统了。其它的操作系统也许只提供了一种选择, 但 "
+"Mandriva Linux\n"
+"提供了两种。每种打印系统都能够在不同的配置中大展身手。\n"
"\n"
-" * \"%s\": un-checking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"%s\" --\n"
+"这是``不排队打印''的缩写。如果您的打印机是直接连接在这台电脑上的, 您也不会打"
+"印太多的任务, 更不会使用网络打印机, 那么请选择本系统。(\"%s\"\n"
+"只能应付极为简单的网络情况, 而且在网络中使用也很慢。)如果您从来没有使用过 "
+"GNU/Linux, 那么推荐您使用\"pdq\"。\n"
"\n"
-" * \"%s\": use this option if you wish to use a wizard to partition your\n"
-"hard drive. This is recommended if you do not have a good understanding of\n"
-"partitioning.\n"
+" * \"%s\" -``通用 Unix\n"
+"打印系统'', 不论是打印到本地打印机, 还是打印到地球另一面的网络打印机, 本系统"
+"都能完全胜任。它配置简单, 甚至可以作为老式 \"lpd\n"
+"\"打印系统的服务器和客户机。所以即便是老得掉牙的操作系统需要打印服务的话, 都"
+"可以顺畅的应用本系统。尽管它的功能十分强大, 可它的基本设置仍然和\n"
+"\"pdq\" 一样简单。如果您想模拟一台 \"lpd\" 服务器, 不要忘了打开 \"cups-lpd "
+"\" 守护程序。\"%s\"\n"
+"还包括一个图形界面, 可用来打印或选择打印机选项, 以及管理打印机。\n"
+"\n"
+"如果您现在进行了选择, 但稍后又发现您并不喜欢所选择的打印系统, 可以轻松修改。"
+"只需从 Mandriva Linux Control Center中选择\n"
+"PrinterDrake, 然后单击\"%s\"按钮。"
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "专家"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX 将会首先检测您系统中所安装的 IDE 设备。它还会搜索您系统中所有的 PCI\n"
+"SCSI 适配卡。如果 DrakX 发现了 SCSI 适配卡, 它会自动安装合适的驱动程序。\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+"由于硬件检测并不总是可信的, DrakX 可能无法检测到您的硬盘驱动器。如果是这样\n"
+"的话, 您就需要手动指定您的硬件。\n"
"\n"
-" * \"%s\": allows additional actions on partitions (type, options, format)\n"
-"and gives more information about the hard drive.\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
+"如果您需要手动指定 PCI SCSI 适配卡, DrakX 将提问您是否要指定特别的参数。您\n"
+"最好让 DrakX 去检测硬件, 这样有助于获得初始化适配卡所需的选项。在大多数情况\n"
+"下, DrakX 将会顺利通过这一步。\n"
"\n"
-"When defining the size of a partition, you can finely set the partition\n"
-"size by using the Arrow keys of your keyboard.\n"
+"如果 DrakX 无法检测到适当的参数, 就只好劳驾您亲自配置驱动程序了。"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\":如果在您的系统中检测到了声卡, 则会在此处显示。如果您发现在此显示的声"
+"卡与您系统中实际安装的声卡并不相同, 您可以单击该按钮选择不同的驱动程序。"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and the [Up/Down] arrows.\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
"\n"
-"When a partition is selected, you can use:\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
"\n"
-"To get information about the different file system types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"在这一步中,您需要选择要使用哪个或哪些分区来安装您的 Mandrivalinux 系统。如果已经定义了分区,不管是先前安装的 GNU/Linux\n"
-"还是由其它分区工具划分的,您都可以使用已有的分区。否则,必须对硬盘分区进行定义。\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
"\n"
-"要创建分区,您必须先选择硬盘。您可以单击``hda'' 选择第一个 IDE 硬盘进行分区,``hdb'' 选择第二个 IDE 硬盘,``sda''\n"
-"选择第一个 SCSI 驱动器,依此类推。\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
"\n"
-"为了对选中硬盘进行分区,您需要使用这些选项:\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
"\n"
-" * \"%s\":此选项将删除选中硬盘上的全部分区\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
"\n"
-" * \"%s\":此选项可在您硬盘的剩余空间中为您自动创建 ext3 和交换分区\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
"\n"
-"\"%s\":使您可以访问额外特性:\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+"作为概览, DrakX\n"
+"将会将它所发现的关于系统的信息概览显示出来。根据您所安装的硬件不同, 您可能会"
+"看到以下各项的部分或全部。每项由几个可配置的硬件项组成, 而每个条目后面都列出"
+"了当前配置的概览。单击相应的\"%s\"按钮可进行更改。\n"
"\n"
-" * \"%s\":将分区表保存到软盘。如果需要的话,稍后可进行分区表修复。强烈推荐您执行这一步骤。\n"
+" * \"%s\":检查当前的键盘映射配置, 如果需要的话进行更改。\n"
"\n"
-" * \"%s\":允许您恢复先前保存在软盘上的分区表。\n"
+" *\n"
+"\"%s\":检查当前的国家选择。如果您并非在这个国家, 请单击\"%s\"按钮, 并选择另"
+"外的选项。如果您的国家在第一个列表中并没有显示出来, 单击\"%s\"按钮可获得完整"
+"的国家列表。\n"
"\n"
-" * \"%s\":如果您的分区表已损坏,您可以使用此选项尝试修复。请额外小心,并记住这一选项并不总是能够帮助您。\n"
+" * \"%s\":默认情况下, DrakX 会根据您所选的国家猜测您的时区。如果时区不对的"
+"话, 您可以单击此处的\"%s\"按钮。\n"
"\n"
-" * \"%s\":忽略全部更改并重新装入硬盘上的原始分区表。\n"
+" * \"%s\":检查当前的鼠标配置, 如果需要的话单击按钮进行修改。\n"
"\n"
-" * \"%s\":取消此选项将强迫用户手动挂载类似软盘和 CD-ROM 的可移动介质。\n"
+" *\n"
+"\"%s\":单击\"%s\"按钮将打开打印机配置向导。请参看``初学者指南''中的相应章"
+"节, 其中详细描述了如何设置新打印机。那里给出的界面与安装时所用的界面大体相"
+"同。\n"
"\n"
-" * \"%s\":如果您想要使用向导对您的营盘进行分区,则使用此选项。如果您对分区理解不深的话,推荐您使用此选项。\n"
+" *\n"
+"\"%s\":如果在您的系统中检测到了声卡, 则会在此处显示。如果您发现在此显示的声"
+"卡与您系统中实际安装的声卡并不相同, 您可以单击该按钮选择不同的驱动程序。\n"
"\n"
-" * \"%s\":使用此选项取消您的更改。\n"
+" *\n"
+"\"%s\":如果在您的系统中检测到了电视卡, 则会在此显示关于其配置的信息。如果您"
+"安装了电视卡, 但并未被正确检测到, 请单击\"%s\"尝试手动进行配置。\n"
"\n"
-" * \"%s\":允许对分区进行额外的操作(类型、选项、格式化),并给出关于硬盘的额外信息。\n"
+" * \"%s\":如果您觉得检测的配置有错, 可以点击\"%s\"来更改与该卡关联的参数。\n"
"\n"
-" * \"%s\":当您完成对硬盘的分区后,此选项将把您的更改回存到硬盘。\n"
+" * \"%s\":默认情况下, DrakX 会将您的图形界面配置为 \"800x600\" 或 \"1024x768"
+"\"\n"
+"分辨率。如果这不适合您的话, 请单击\"%s\"重新配置您的图形界面。\n"
"\n"
-"定义分区大小时,您可以使用键盘上的光标键对分区大小进行调整。\n"
+" * \"%s\":如果您想要配置您的 Internet 或局域网访问, 现在就可以进行。请参考印"
+"刷文档或在安装完成后使用 Mandriva Linux\n"
+"Control Center来获得完整的在线帮助。\n"
"\n"
-"注意:您可以使用键盘访问任何选项。可以使用 [Tab] 和 [上/下]光标键来切换分区。\n"
+" * \"%s\":如果您所安装的计算机位于代理服务器之后, 这里将允许您配置 HTTP 和 "
+"FTP 代理服务器地址。\n"
"\n"
-"选中分区后,您可以用:\n"
+" * \"%s\":此项允许您重新调整安全级别, 与以前的步骤完全相同()。\n"
"\n"
-" * Ctrl+C 创建新分区(如果选中了空分区)\n"
+" * \"%s\":如果您计划将您的计算机连接到\n"
+"Internet, 那么保护您的计算机免于攻击的有效方法就是设置防火墙。请参考``初学者"
+"指南''中的相应章节, 以获得关于防火墙设置的细节。\n"
"\n"
-" * Ctrl+D 删除分区\n"
+" * \"%s\":如果您想要更改您的引导程序配置, 请单击此按钮。这仅适用于高级用户。"
+"请参考印刷文档或 Mandriva Linux 控制中心中关于引导程序配置的帮助。\n"
"\n"
-" * Ctrl+M 设定挂载点\n"
+" * \"%s\":在此您可以精确调整要在您的计算机上运行哪些服务。如果您要将此计算机"
+"用作服务器, 那么应该复查这一设置。"
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN 卡"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "图形界面"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"请选择您为了安装新的 Mandriva Linux 分区想要删除的硬盘分区。\n"
+"注意, 该硬盘分区上的所有数据将丢失并且无法恢复!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
"\n"
-"要的关于不同的文件系统类型的更多信息,请查看 ``参考手册''中 ext2FS 一章。\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"如果您想要删除此硬盘上的所有数据和分区, 请单击“%s”。注意, 单击“%s”后, \n"
+"您将无法恢复此硬盘上的任何数据或分区(包括任何 Windows 数据)。\n"
"\n"
-"如果您在 PPC 计算机上安装,您可能需要创建至少 1MB 大小的 HFS``bootstrap'' 分区,该分区将用于 yaboot\n"
-"引导程序。如果您创建的分区再稍微大点,比如说 50MB,您可能会发现这个分区可用来存储内核或紧急引导时的虚拟磁盘映像。"
+"单击“%s”可以停止此操作, 此硬盘上的任何数据或分区不会丢失。"
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "下一步 ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- 上一步"
diff --git a/perl-install/install/help/po/zh_TW.po b/perl-install/install/help/po/zh_TW.po
new file mode 100644
index 000000000..d7cf7b9c1
--- /dev/null
+++ b/perl-install/install/help/po/zh_TW.po
@@ -0,0 +1,1617 @@
+# translation of zh_TW.po to 正體中文
+# translation of zh_TW.po to Chinese Traditional
+# translation of DrakX-zh_TW.po to Chinese Traditional
+# drakbootdisk messages in Traditional Chinese
+# Copyright (C) 2000, 2003, 2004 Free Software Foundation, Inc.
+# Platin <platin@cle.linux.org.tw> , 2000
+# Kenduest Lee <kenduest@i18n.linux.org.tw> , 2002
+# Danny Zeng <danny@zeng.com.cn>, 2000.
+# Joe Man <trmetal@yahoo.com.hk>, 2001.
+# Chong Sein Yeo <csyeo@hal-pc.org>, 2003.
+# Hilbert <freehil@yahoo.com>, 2003, 2004.
+# Hilbert <h@mandrake.org>, 2004.
+# hilbert <h@mandrake.org>, 2004.
+# Shiva Huang <blueshiva@giga.net.tw>, 2005.
+# Shiva Huang <shivahuang@gmail.com>, 2005.
+# You-Cheng Hsieh <yochenhsieh@xuite.net>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-05-04 17:25+0200\n"
+"PO-Revision-Date: 2006-04-06 20:30+0200\n"
+"Last-Translator: Shiva Huang <shivahuang@gmail.com>\n"
+"Language-Team: Traditional Chinese <zh@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3.1\n"
+"X-Poedit-Language: Chinese\n"
+"X-Poedit-Country: TAIWAN\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: ../help.pm:14
+#, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandriva Linux distribution. If you agree with all the\n"
+"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
+"button will reboot your computer."
+msgstr ""
+"在繼續之前,您應該仔細的閱讀下面相關版權條款。\n"
+"這包含整個 Mandriva Linux 發行版的版權內容。若是您同意裡面的所有條款,\n"
+"請點選 \"%s\" 按鈕,否則請點選 \"%s\" 按鈕並自動重新開機。"
+
+#: ../help.pm:20
+#, c-format
+msgid ""
+"GNU/Linux is a multi-user system which means each user can have his or her\n"
+"own preferences, own files and so on. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be "
+"authorized\n"
+"to change anything except their own files and their own configurations,\n"
+"protecting the system from unintentional or malicious changes which could\n"
+"impact on the system as a whole. You'll have to create at least one regular\n"
+"user for yourself -- this is the account which you should use for routine,\n"
+"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
+"anything and everything, it may also be very dangerous! A very simple\n"
+"mistake could mean that your system will not work any more. If you make a\n"
+"serious mistake as a regular user, the worst that can happen is that you'll\n"
+"lose some information, but you will not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you type in this field and copy it to the \"%s\" one, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the user name. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
+"by making it blank or too simple: after all, your files could be the ones\n"
+"at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
+"finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you're finished adding users, you'll be asked to choose a user who\n"
+"will be automatically logged into the system when the computer boots up. If\n"
+"you're interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click on\n"
+"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
+msgstr ""
+"GNU/Linux 是一個多使用者的系統,那表示每個使用者都可以擁有各自的\n"
+"偏好設定、檔案等等。不同於系統管理者 \"root\" 您在這新增的使用者\n"
+"將僅被授權於改變他們自己的檔案與設定,以保護系統免於遭受到無意或\n"
+"惡意的對整個系統造成衝擊的改變。您需要建立至少一個一般使用者給您\n"
+"自己 -- 這是您應該用於一般日常操作的帳號。雖然使用 \"root\" 登入\n"
+"來做任何事是非常容易的,但這也是非常危險的!一個非常簡單的錯誤就\n"
+"可能造成系您的統再也不能正常工作。但是若您以一般使用者的身份犯了\n"
+"一連串嚴重的錯誤,最糟的情況將僅僅是您遺失某些資訊,但並不影響整\n"
+"個系統。\n"
+"\n"
+"第一個欄位詢問您的真實名稱。當然這並非必要 -- 事實上您可以輸入任\n"
+"何您喜歡的名字。DrakX 會將您輸入於此欄位的第一個字複製到 \"%s\" \n"
+"欄,作為使用者登入系統時輸入的名稱。若您喜歡,您可以不使用預設值\n"
+"並改變使用者名稱。下一步是輸入一個密碼。從安全性的觀點而言,一個\n"
+"一般使用者的密碼並不如 \"root\" 密碼來的重要,但是這並不構成輕忽\n"
+"地使用空白或過於簡單的密碼的理由:畢竟您的檔案可能正處於危險中。\n"
+"\n"
+"一旦您點選 \"%s\",您可以新增其他使用者。新增使用者給您的每一個\n"
+"朋友、您的父親或姊妹。當您全部新增完成後,請點選 \"%s\" 。\n"
+"\n"
+"點選 \"%s\" 按鈕允許您改變預設的 \"shell\" 給這位使用者 (預設值\n"
+"為 bash)。\n"
+"\n"
+"當您完成新增使用者之後,您將會被要求選擇一位使用者在電腦開機時自\n"
+"動登入系統。如果您對這個功能有興趣 (且不太關心本地端安全性),請\n"
+"選擇想要登入的使用者與視窗管理員,然後勾選 \"%s\"。若您對這個功\n"
+"能沒有興趣,請不要勾選 \"%s\"。"
+
+#: ../help.pm:54
+#, c-format
+msgid "Do you want to use this feature?"
+msgstr "您想要使用這個功能嗎?"
+
+#: ../help.pm:57
+#, c-format
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"目前所列出來的是硬碟機上偵測到已經存在的 Linux 分割區.\n"
+"您可以保留精靈模式做的選擇,因為他們對一般安裝是不錯的。\n"
+"如果您做任何改變的話, 您至少要定義出一塊當作根分割區 (\"/\").\n"
+"別選擇一個太小的分割區, 否則您將無法安裝足夠的軟體.\n"
+"如果您想儲存您的資料到一個分離的分割區, 你需要建立一個\"/home\" 分割區\n"
+"(只在您有多於一個 Linux 分割區情況下才可能).\n"
+"\n"
+"下列每個分割區都列出了: \"名稱\", \"容量\".\n"
+"\n"
+"\"名稱\" 都是有統一的命名方式: \"硬碟類型\", \"硬碟編號\", \n"
+"\"分割區編號\" (例如, \"hda1\").\n"
+"\n"
+"\"硬碟類型\" 部份, IDE 硬碟使用 \"hd\", SCSI 則是 \"sd\".\n"
+"\"硬碟編號\" 部份, 伴隨在 \"hd\" 或者是 \"sd\" 後面:\n"
+"\n"
+" * \"a\" 這是指 \"primary IDE controller 上第一台 (master) 硬碟\",\n"
+"\n"
+" * \"b\" 這是指 \"primmary IDE controller 上第二台 (slave) 硬碟\",\n"
+"\n"
+" * \"c\" 這是指 \"secondary IDE controller 上第一台 (master) 硬碟\",\n"
+"\n"
+" * \"d\" 這是指 \"secondary IDE controller 上第二台 (slave) 硬碟\".\n"
+"\n"
+"以 SCSI 硬碟來說, \"a\" 就是指 \"SCSI ID 編號最小的那一台\", \"b\"\n"
+"就是指 \"SCSI ID 編號為第二小的那一台硬碟\", 然後依此類推下去."
+
+#: ../help.pm:88
+#, c-format
+msgid ""
+"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
+"selected package is located on another CD-ROM, DrakX will eject the current\n"
+"CD and ask you to insert the required one. If you do not have the requested\n"
+"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
+"installed."
+msgstr ""
+"Mandriva Linux 安裝片包含數張光碟片。若所選擇的套件是位於另一張光碟上,\n"
+"DrakeX 會退出現在的光碟且要求您放入所要求的正確光碟片。\n"
+"若您沒有要求的光碟在手上的話, 就按下 \"%s\", 對應的套件不會被安裝."
+
+#: ../help.pm:95
+#, c-format
+msgid ""
+"It's now time to specify which programs you wish to install on your system.\n"
+"There are thousands of packages available for Mandriva Linux, and to make "
+"it\n"
+"simpler to manage, they have been placed into groups of similar\n"
+"applications.\n"
+"\n"
+"Mandriva Linux sorts package groups in four categories. You can mix and\n"
+"match applications from the various categories, so a ``Workstation''\n"
+"installation can still have applications from the ``Server'' category\n"
+"installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the groups in the workstation category.\n"
+"\n"
+" * \"%s\": if you plan on using your machine for programming, select the\n"
+"appropriate groups from that category. The special \"LSB\" group will\n"
+"configure your system so that it complies as much as possible with the\n"
+"Linux Standard Base specifications.\n"
+"\n"
+" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
+"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
+"of the system. However, if you do not select the \"LSB\" group you will\n"
+"still have a system which is nearly 100%% LSB-compliant.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you're familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you start the installation in \"%s\" mode, you can deselect all groups\n"
+"and prevent the installation of any new packages. This is useful for\n"
+"repairing or updating an existing system.\n"
+"\n"
+"If you deselect all groups when performing a regular installation (as\n"
+"opposed to an upgrade), a dialog will pop up suggesting different options\n"
+"for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command-line interface. The total size of this installation is about 65\n"
+"megabytes."
+msgstr ""
+"現在是指定那個程式您想要裝在您的系統上. Mandriva Linux 有上千個套件,\n"
+"為了簡單管理, 相似性質的應用程式已經被分類到群組裡.\n"
+"\n"
+"Mandriva Linux 分類套件群組於四個類別. 你能由不同類別混合與配對應用程式,\n"
+"所以一個 ``工作站''安裝也能安裝``伺服器''類別安裝的應用程式.\n"
+"\n"
+" * \"%s\": 如果您計畫用您的機器當作一個工作站, 選擇一個或\n"
+"更多的群組於工作站類別.\n"
+"\n"
+" * \"%s\": 如果您計畫用您的機器來程式設計, 選擇適當\n"
+"的群組於那個類別。特別的 \"LSB\" 群組將設定您的系統使之盡量符合\n"
+"Linux Standard Bases 規範.\n"
+"\n"
+" 選擇 \"LSB\" 群組除了預設的 \"2.6\" 也將安裝 \"2.4\" 核心系列,\n"
+"這是確保系統的 100%%-LSB compliance. 可是, 如果您不選擇 \"LSB\"\n"
+"群組您仍然將有一個幾乎 100%% LSB-compliant 的系統.\n"
+"\n"
+" * \"%s\": 如果您的機器是要用作伺服器, 選擇那一個\n"
+"更常用的服務您想裝在系統上.\n"
+"\n"
+" * \"%s\": 這是您選擇您的偏好的圖形環境的地方.\n"
+"如果您像要有圖形介面可用, 至少一個要被選擇.\n"
+"\n"
+"移動滑鼠游標到一個群組上方將顯示一段關於該群組簡短的解釋文字\n"
+"\n"
+"你能選取 \"%s\" 方塊盒, 若您對所提供的套件熟悉或您想要有對於什麼\n"
+"將被安裝有全部控制, 這將會有用\n"
+"\n"
+"若您用 \"%s\" 模式開始安裝, 你可以取消選擇全部群組且防止安裝任何新套件.\n"
+"這對修復或更新一個已經存在的系統很有用.\n"
+"\n"
+"如果當您執行一個一般正常安裝, 您取消選擇全部群組 (相反於一個升級),\n"
+"一個對話方塊將會跳出建議不同的選項給最小安裝:\n"
+"\n"
+" * \"%s\":安裝最少的套件來擁有可工作的圖形桌面。\n"
+"\n"
+" * \"%s\":安裝系統基礎加上基本的工具與其文件\n"
+"這種安裝適合於設定起來一個伺服器。\n"
+"\n"
+" * \"%s\":將安裝絕對最少套件必要於使一個 Linux 系統工作。\n"
+"用這個安裝您將只擁有一個命令列介面. 全部安裝大小大約 65 MB。"
+
+#: ../help.pm:149 ../help.pm:591
+#, c-format
+msgid "Upgrade"
+msgstr "升級"
+
+#: ../help.pm:149
+#, c-format
+msgid "With basic documentation"
+msgstr "包含基本的說明文件"
+
+#: ../help.pm:149
+#, c-format
+msgid "Truly minimal install"
+msgstr "真的最小安裝"
+
+#: ../help.pm:152
+#, c-format
+msgid ""
+"If you choose to install packages individually, the installer will present\n"
+"a tree containing all packages classified by groups and subgroups. While\n"
+"browsing the tree, you can select entire groups, subgroups, or individual\n"
+"packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description will appear on the\n"
+"right to let you know the purpose of that package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you'll be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandriva Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that\n"
+"security holes were discovered after this version of Mandriva Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do "
+"or\n"
+"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
+"the listed services and they will be started automatically at boot time. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages depend on others and the installation of\n"
+"one particular package may require the installation of another package. The\n"
+"installer can determine which packages are required to satisfy a dependency\n"
+"to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert the floppy disk created at the end of\n"
+"another installation. See the second tip of the last step on how to create\n"
+"such a floppy."
+msgstr ""
+
+#: ../help.pm:183
+#, c-format
+msgid "Automatic dependencies"
+msgstr "自動相依性"
+
+#: ../help.pm:186
+#, c-format
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to set up a new printer. The interface presented in our\n"
+"manual is similar to the one used during installation."
+msgstr ""
+
+#: ../help.pm:192
+#, c-format
+msgid ""
+"This dialog is used to select which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all services available on the current installation. Review\n"
+"each one of them carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you're not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you probably do not want to start any services which you do not "
+"need.\n"
+"Please remember that some services can be dangerous if they're enabled on a\n"
+"server. In general, select only those services you really need. !!"
+msgstr ""
+"這個對話視窗用來選擇你打算於啟動系統時執行運作的服務.\n"
+"\n"
+"DrakX 將列出在現在安裝上可選擇的服務項目. 仔細詳細回顧查看每一個\n"
+"且取消選取那些開機時不會用到的.\n"
+"\n"
+"當你選取該項目時, 會出現一個簡略說明文字. 但是若是您對於該項目\n"
+"實在不確定是否要啟用的話, 比較安全的作法就是維持原樣不要動作即可.\n"
+"\n"
+"!! 在這階段, 請小心如果您這台機器是要當作伺服器: 您大概不想要\n"
+"開啟那些您不用的服務. 請記得某些服務在伺服器上啟動後可能會有危險.\n"
+"大致上只選那些你真正需要的服務. !!"
+
+#: ../help.pm:209
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same time zone. This is useful when the machine\n"
+"also hosts another operating system.\n"
+"\n"
+"The \"%s\" option will automatically regulate the system clock by\n"
+"connecting to a remote time server on the Internet. For this feature to\n"
+"work, you must have a working Internet connection. We recommend that you\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server which can be used by other machines on your local network as well."
+msgstr ""
+
+#: ../help.pm:220
+#, c-format
+msgid "Automatic time synchronization"
+msgstr "自動時間同步"
+
+#: ../help.pm:223
+#, c-format
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs."
+msgstr ""
+"顯示卡\n"
+"\n"
+" 一般而言,安裝程式會自動偵測並設定安裝在您機器上的顯示\n"
+"卡。如果偵測結果不正確,您可以由本清單中選取正確的型號。\n"
+"\n"
+" 如果有不同的伺服器可以與您的顯示卡搭配使用 (有或沒有 3D\n"
+"加速功能),請您選擇一個最符合您需求的伺服器來使用。"
+
+#: ../help.pm:234
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
+"\n"
+"You'll see a list of different parameters to change to get an optimal\n"
+"graphical display.\n"
+"\n"
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If this is not correct, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the situation where different servers are available for your card,\n"
+"with or without 3D acceleration, you're asked to choose the server which\n"
+"best suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Depending on your hardware, this entry might not appear.\n"
+"\n"
+" The system will try to open a graphical screen at the desired\n"
+"resolution. If you see the test message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you do not see it, then it\n"
+"means that some part of the auto-detected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds and return you to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+
+#: ../help.pm:291
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" Normally the installer will automatically detect and configure the\n"
+"monitor connected to your machine. If it is not correct, you can choose\n"
+"from this list the monitor which is connected to your computer."
+msgstr ""
+"螢幕\n"
+"\n"
+" 一般來說,安裝程式會自動偵測並設定連接到您電腦的螢幕。如果它不正確\n"
+",您可以由此列表中選取連結到您電腦的螢幕。"
+
+#: ../help.pm:298
+#, c-format
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"graphics hardware. Choose the one which best suits your needs (you will be\n"
+"able to make changes after the installation). A sample of the chosen\n"
+"configuration is shown in the monitor picture."
+msgstr ""
+"解析度\n"
+"\n"
+" 在這裡您可以選擇您顯示卡可以使用的解析度與色深。請選取最適合您的設定值\n"
+"(您可以在安裝完成之後更改)。您選取的設定值的樣本將顯示在螢幕圖片上。"
+
+#: ../help.pm:306
+#, c-format
+msgid ""
+"In the situation where different servers are available for your card, with\n"
+"or without 3D acceleration, you're asked to choose the server which best\n"
+"suits your needs."
+msgstr ""
+"如果有不同的伺服器可以與您的顯示卡搭配使用 (有或沒有 3D加速\n"
+"功能),請您選擇一個最符合您需求的伺服器來使用。"
+
+#: ../help.pm:311
+#, c-format
+msgid ""
+"Options\n"
+"\n"
+" This steps allows you to choose whether you want your machine to\n"
+"automatically switch to a graphical interface at boot. Obviously, you may\n"
+"want to check \"%s\" if your machine is to act as a server, or if you were\n"
+"not successful in getting the display configured."
+msgstr ""
+"選項\n"
+"\n"
+" 這個步驟允許您選擇是否想要您的機器開機時自動跳到圖形介.\n"
+"顯然地, 如果您的機器是當作一個伺服器或您不能成功地設定顯示,\n"
+"您想核對選取 \"%s\"."
+
+#: ../help.pm:319
+#, c-format
+msgid ""
+"You now need to decide where you want to install the Mandriva Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space you will have to\n"
+"partition the drive. Basically, partitioning a hard drive means to\n"
+"logically divide it to create the space needed to install your new\n"
+"Mandriva Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to data losses, partitioning can be intimidating and stressful\n"
+"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on the configuration of your hard drive, several options are\n"
+"available:\n"
+"\n"
+" * \"%s\". This option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
+"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
+"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
+"data, provided you've previously defragmented the Windows partition.\n"
+"Backing up your data is strongly recommended. Using this option is\n"
+"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
+"the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than when you started. You'll have less free space under Microsoft Windows\n"
+"to store your data or to install new software.\n"
+"\n"
+" * \"%s\". If you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandriva Linux system, "
+"choose\n"
+"this option. Be careful, because you will not be able to undo this "
+"operation\n"
+"after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\". This option appears when the hard drive is entirely taken by\n"
+"Microsoft Windows. Choosing this option will simply erase everything on the\n"
+"drive and begin fresh, partitioning everything from scratch.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\". Choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
+msgstr ""
+"您需要決定那裡你想要安裝 Mandriva Linux\n"
+"作業系統於那個硬碟. 如果您的硬碟是全新尚未使用或\n"
+"已經存在的作業系統正在使用全部可被利用的空間, 您將\n"
+"必須進行分割硬碟的動作. 基本上, 分割硬碟的動作包含\n"
+"邏輯上劃分它以建立需要的空間來安裝您的新\n"
+"Mandriva Linux 系統.\n"
+"\n"
+"因為分割硬碟的動作程序通常是無法回復的\n"
+"且能導致資料遺失, 若您是一位不熟練的使用者,\n"
+"割硬碟的動作是脅迫恫嚇與充滿著緊張壓力的. 幸運的是\n"
+"DrakX 包含精靈模式以簡化這程序。於繼續此步驟前,\n"
+"先詳細閱讀其他部份與全部, 慢慢來.\n"
+"\n"
+"根據您的硬碟設定值, 有數個選項可用:\n"
+"\n"
+" * \"%s\". 該項目將會執行自動劃分您空白的磁碟.\n"
+"若您使用此選項, 將沒有進一步的提示.\n"
+"\n"
+" * \"%s\"。精靈模式已經偵測一個或多個已經存在的 Linux 硬碟\n"
+"分割. 若您想要使用他們, 選此選項. 您將會\n"
+"被要求選擇關於每一個分割的掛載點.\n"
+"就有的掛載點預設為被選擇, 且大部分最好保留\n"
+"他們.\n"
+"\n"
+" * \"%s\". 若您硬碟有安裝 Microsoft Windows 且佔據\n"
+"全部可用剩餘可用的空間, 您將必須建立自由空間給\n"
+"GNU/Linux. 為了達到目的, 您可以刪除 Microsoft Windows 分割與資料\n"
+"(見 ``Erase entire disk (消除整個磁碟)'' 解決方案) 或是\n"
+"重新調整 Microsoft Windows FAT 或 NTFS 分割區大小.\n"
+"若您已經 defragment(不連續碎片重新整理) Windows 分割\n"
+"且它用 FAT 格式.重新調整分割可以被執行於不遺失任何資料\n"
+"資料備份是被強烈建議的. 若您想要使用 Mandriva Linux and Microsoft\n"
+"Windows 於同一台電腦, 使用此選項是被建議的.\n"
+"\n"
+" 選擇此選項前, 請了解當使用這個過程項目後, Microsoft Windows\n"
+"分割可用的剩餘空間將會比之前減少. 您將有較少的自由空間於\n"
+" Microsoft Windows 來存您的資料與安裝新軟體.\n"
+"\n"
+" * \"%s\". 如果您想要刪除全部現存於您的硬碟上資料與\n"
+"分割且以您的新 Mandriva Linux 系統替換他們,\n"
+"選此選項. 但是小心使用, 你將無法於你確認之後\n"
+"逆反你的決定.\n"
+"\n"
+" !! 若你選此選項, 全部於你的磁碟上的資料將會被刪除. !!\n"
+"\n"
+" * \"%s\". 當硬碟完全被 Microsoft Windows 佔據時出現此選項.\n"
+"選擇此選項將會簡單地消除一切於磁碟中的資料且從新開始,\n"
+"從頭開始分割一切.\n"
+"\n"
+" !! 若你選此選項, 全部於你的磁碟上的資料將會遺失. !!\n"
+"\n"
+" * \"%s\". 選這個選項若您想要手動分割您的硬碟.\n"
+"請小心使用 -- 它是強力的但是危險的選擇且您可能非常\n"
+"容易遺失您的全部資料. 這是為何此選項事實上只於\n"
+"您曾經做過類似於此且有些許經驗的時候被建議.\n"
+"更多指令於如何使用 DiskDrake 工具, 指向\n"
+"``Starter Guide (初學者指導)''的\n"
+"``Managing Your Partitions (管理您的分割)'' 部份."
+
+#: ../help.pm:377
+#, c-format
+msgid "Use existing partition"
+msgstr "使用已經存在的分割區"
+
+#: ../help.pm:377
+#, c-format
+msgid "Erase entire disk"
+msgstr "刪除所有磁碟內容"
+
+#: ../help.pm:380
+#, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
+"to remove the installation media (CD-ROM or floppy). The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"boot-loader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": enables you to create an installation floppy disk which will\n"
+"automatically perform a whole installation without the help of an operator,\n"
+"similar to the installation you've just configured.\n"
+"\n"
+" Note that two different options are available after clicking on that\n"
+"button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing on a number of similar\n"
+"machines. See the Auto install section on our web site for more\n"
+"information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key, type >>linux\n"
+"defcfg=\"floppy\"<< and press the [Enter] key.\n"
+"\n"
+"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
+"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
+"/dev/fd0\"."
+msgstr ""
+"整個安裝步驟到這裡代表您安裝已經完成了且 GNU/Linux 系統準備好被使用.\n"
+"只要點選 \"%s\" 來重新啟動系統. 別忘了移除安裝媒介 (光碟或軟片).\n"
+"於您的電腦完成硬體測試後您第一個見到的是開機載入程式選單,\n"
+"給您開始那個作業系統的選擇\n"
+" \"%s\" 按鈕顯示另兩個按鈕到:\n"
+"\n"
+"* \"%s\": 使您建立一個安裝軟片, 一張不需要操作手的幫助\n"
+"就能夠自動執行全部安裝的軟片, 類似於您剛剛設定的安裝一樣.\n"
+"\n"
+" 注意按下那個按鈕後有兩個不同的選項可供選擇:\n"
+"\n"
+" * \"%s\". 這是半自動安裝方式, 磁碟分割項目將是唯一維持手動方式操作.\n"
+"\n"
+" * \"%s\". 這是全自動的安裝方式: 硬碟將完全被重新寫入, 全部資料遺失.\n"
+"\n"
+" 這功能對於需要大量安裝很多相似機器上的話來說這是相當實用.\n"
+"可以參考我們網頁上自動安裝章節的更多資訊.\n"
+"\n"
+" * \"%s\"(*): 儲存一個於這安裝時選擇的套件清單.\n"
+"要用這些選擇於另一個安裝, 插入軟片且開始安裝. 於提示時按下 F1 按鍵,\n"
+"然後輸入 >>linux defcfg=\"floppy\"<< 按下 [Enter] 鍵.\n"
+"\n"
+"(*) 您需要一個 FAT-formatted 軟片. 要建立一張於於GNU/Linux 環境下,\n"
+"鍵入 \"mformat a:\", 或 \"fdformat /dev/fd0\" 然後 \"mkfs.vfat /dev/fd0\"."
+
+#: ../help.pm:412
+#, c-format
+msgid "Generate auto-install floppy"
+msgstr "產生自動安裝軟片"
+
+#: ../help.pm:415
+#, c-format
+msgid ""
+"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
+"reformat some of them and erase any data they contain. To do so, please\n"
+"select those partitions as well.\n"
+"\n"
+"Please note that it's not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
+"reformat\n"
+"partitions containing data that you wish to keep (typically \"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After the formatting is\n"
+"completed, all data on the selected partitions will be deleted and you\n"
+"will not be able to recover it.\n"
+"\n"
+"Click on \"%s\" when you're ready to format the partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandriva Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions which will be checked for\n"
+"bad blocks on the disk."
+msgstr ""
+"如果您選擇去重新使用某些 GNU/Linux 分割, 您或許想要重新格式化他們\n"
+"且抹去任何他們包含的資料. 要的話, 請選擇那些分割.\n"
+"請注意一下, 並不是所有先前已經存在的分割區都得重新格式化,\n"
+"您必須重新格式化包含作業系統的分割 (例如 \"/\", \"/usr\" or \"/var\")\n"
+"但是您不需要重新格式化包含您想保留資料的分割 (通常是 \"/home\").\n"
+"\n"
+"請小心選擇分割. 當格式化完成時, 全部在選擇分割上得資料將被刪除且\n"
+"您將不行重新恢復它.\n"
+"當您準備好要格式化此分割, 點選 \"%s\".\n"
+"\n"
+"若您想選擇另一個分割給您的新的 Mandriva Linux 作業系統安裝, 點選了\"%s\".\n"
+"若您想選擇要被檢查磁碟上壞的區塊的分割, 點選.\"%s\"."
+
+#: ../help.pm:437
+#, c-format
+msgid ""
+"By the time you install Mandriva Linux, it's likely that some packages will\n"
+"have been updated since the initial release. Bugs may have been fixed,\n"
+"security issues resolved. To allow you to benefit from these updates,\n"
+"you're now able to download them from the Internet. Check \"%s\" if you\n"
+"have a working Internet connection, or \"%s\" if you prefer to install\n"
+"updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of web locations from which updates can\n"
+"be retrieved. You should choose one near to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
+msgstr ""
+"此時您安裝 Mandriva Linux 時, 或許自從初始釋出的某些套件將有更新.\n"
+"臭蟲或許已經修正了, 安全性問題解決了. 為了允許您從這些更新中\n"
+"獲得利益, 您現在可以由網際網路下載他們. 如果您有可用的網際網路連線,\n"
+"選取 \"%s\", 或是, 如果您想稍後安裝更新套件, 選取 \"%s\".\n"
+"\n"
+"選擇 \"%s\" 將顯示一張更新可以被擷取的網站位置清單. 您應該選擇一個\n"
+"跟您近的. 一個套件選擇樹將出現: 審查選擇, 按下 \"%s\" 來擷取且安裝\n"
+"被選擇的套件, 或 \"%s\" 以中斷放棄."
+
+#: ../help.pm:450
+#, c-format
+msgid ""
+"At this point, DrakX will allow you to choose the security level you desire\n"
+"for your machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine is to contain crucial data, or if it's to be directly\n"
+"exposed to the Internet. The trade-off that a higher security level is\n"
+"generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, keep the default option. You'll be able\n"
+"to change it later with the draksec tool, which is part of Mandriva Linux\n"
+"Control Center.\n"
+"\n"
+"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
+"security. Security messages will be sent to that address."
+msgstr ""
+"到這裡時, DrakX 將允許您選擇您想要的安全性等級給您的機器.\n"
+"根據拇指規則, 若是機器將要有包含重要的資料, 或是直接暴露在網際網路,\n"
+"安全性等級應該設定較高. 權衡之下, 較高的安全性等級換得不容易使用.\n"
+"\n"
+"如果您不知道選什麼, 保留預設選項. 您將能在稍後用 draksec 工具改變它,\n"
+"draksec 是 Mandriva Linux 控制中心的一部分.用負責安全性的人的 e-mail 地址填"
+"入 \"%s\" 欄位. 安全性訊息將被寄到\n"
+"那個位址."
+
+#: ../help.pm:461
+#, c-format
+msgid "Security Administrator"
+msgstr "安全性管理員:"
+
+#: ../help.pm:464
+#, c-format
+msgid ""
+"At this point, you need to choose which partition(s) will be used for the\n"
+"installation of your Mandriva Linux system. If partitions have already been\n"
+"defined, either from a previous installation of GNU/Linux or by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it does not always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": un-checking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
+msgstr ""
+"在這個階段, 您需要選擇要用來安裝 Mandriva Linux 系統的分割區.\n"
+"如果分割區已經被定義了, 不管是從舊有的 GNU/Linux 安裝或是\n"
+"另一個處理分割區的工具, 您可以使用原本已經劃分好的分割區.\n"
+"否則硬碟分割必須要被定義.\n"
+"\n"
+"要建立分割區, 您需要先選擇一台硬碟. 您可以選擇要操作的分割區, 按 ``hda''\n"
+"為第一台 IDE 磁碟, ``hdb'' 為第二台, ``sda'' 為第一台 SCSI 磁碟等等.\n"
+"\n"
+"要進行分割的動作於選好的硬碟上, 您有這些項目可以使用:\n"
+"\n"
+" * \"%s\": 這個選項刪除在所選的影碟上的全部分割區\n"
+"\n"
+" * \"%s\": 這個選項使您自動建立 ext3 與 swap 分割區於您的硬碟上的空白空間\n"
+"\n"
+"\"%s\": 給多加的功能的使用:\n"
+"\n"
+" * \"%s\": 儲存分割表到軟片. 必要時對於分割表拯救有用. 強烈建議執行此步驟.\n"
+"\n"
+" * \"%s\": 允許您回存一個之前從軟片儲存的分割表\n"
+"\n"
+" * \"%s\": 如果您的分割表受損, 您可以試著用這個選項救回它.\n"
+"請小心且記得這並非總是有效.\n"
+"\n"
+" * \"%s\": 丟棄全部改變且重新載入原始硬碟的分割表.\n"
+"\n"
+" * \"%s\": 不選取這個選項將強制使用者手動掛載與卸載可移除式媒介例如磁碟片與\n"
+"光碟。\n"
+"\n"
+" * \"%s\": 如果您想用精靈來分割您的硬碟, 使用這個選項. 如果您沒有對於\n"
+"操作分割的好的了解, 這是被建議的.\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": 用這個選項來取消您的變更.\n"
+"\n"
+" * \"%s\": 允許多加的動作於分割 (類型, 選項, 格式)且給更多的關於硬碟的資訊.\n"
+"\n"
+" * \"%s\": 當您完成分割您的硬碟, 這將儲存您的變更回磁碟.\n"
+"\n"
+"當定義一個分割的大小時, 您可以好好的用鍵盤上的方向鍵來設定分割大小.\n"
+"\n"
+"注意: 您可以用鍵盤達成任何選項. 用 [Tab] 鍵與上或下方向鍵瀏覽分割.\n"
+"\n"
+"當一個分個被選擇時, 您可以使用:\n"
+"\n"
+" * Ctrl-c 來建立一個新的分割 (當空白分割被選擇時)\n"
+"\n"
+" * Ctrl-d 來刪除一個分割\n"
+"\n"
+" * Ctrl-m 來設定掛載點\n"
+"\n"
+"要得到關於不同可用的檔案系統的資訊, 請從 ``Reference Manual (參考手冊)''\n"
+"閱讀 ext2FS 章節.\n"
+"\n"
+"如果您正在安裝於一個 PPC 機器, 您將想要建立一個小的 HFS\n"
+"``bootstrap'' 分割至少 1MB 以用於 yaboot 開機載入器. 如果您選擇使分割大一"
+"些,\n"
+"像 50MB, 您或許發現它是一個好用的貯存一個備用核心與 ramdisk\n"
+"影像給緊急使用開機的好地方."
+
+#: ../help.pm:533
+#, c-format
+msgid "Removable media auto-mounting"
+msgstr "可移除式媒介自動掛載"
+
+#: ../help.pm:533
+#, c-format
+msgid "Toggle between normal/expert mode"
+msgstr "切換一般/專家模式"
+
+#: ../help.pm:536
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one which you want to resize in order to install your new\n"
+"Mandriva Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"多於一個 Microsoft 分割區已經在您的硬碟上被偵測到. 請選擇您希望要重新調整 大"
+"小的分割以便安裝您的新的 Mandriva Linux 作業系統.\n"
+"\n"
+"每個分割區都列出了像是: \"Linux 名稱\", \"Windows 名稱\", \"容量\".\n"
+"\n"
+"\"Linux 名稱\" 是有結構性的: \"硬碟型態\", \"硬碟編號\", \"分割區編號\"\n"
+"(比方像是: \"hda1\" ).\n"
+"\n"
+"\"硬碟型態\" 就是, 若您使用的是 IDE 硬碟, 會顯示 \"hd\", 若是SCSI硬碟的話,\n"
+"就是 \"sd\".\n"
+"\n"
+"\"硬碟編號\" 就是在 \"hd\" 或者是 \"sd\" 後面的字母. 以 IDE 硬碟裝置來說:\n"
+"\n"
+" * \"a\"這是指 \"primary IDE controller 上第一台 (master) 硬碟\";\n"
+"\n"
+" * \"b\"這是指\"primmary IDE controller 上第二台 (slave) 硬碟\";\n"
+"\n"
+" * \"c\"這是指\"secondary IDE controller 上第一台 (master) 硬碟\";\n"
+"\n"
+" * \"d\"這是指\"secondary IDE controller 上第二台 (slave) 硬碟\".\n"
+"\n"
+"以 SCSI 硬碟來說, \"a\" 是指 \"SCSI ID 編號最小的那一台硬碟\", \"b\" 是指"
+"\"SCSI ID 編號為第二小的那一台硬碟\", 然後依此類推下去.....\n"
+"\n"
+"\"Windows 名稱\" 是在 Windows 下的磁碟機代號名稱 (第一個磁碟或分割稱為\n"
+"\"C:\")."
+
+#: ../help.pm:567
+#, c-format
+msgid ""
+"\"%s\": check the current country selection. If you're not in this country,\n"
+"click on the \"%s\" button and choose another. If your country is not in "
+"the\n"
+"list shown, click on the \"%s\" button to get the complete country list."
+msgstr ""
+"\"%s\":檢視目前選擇的國家。如果您不在這個國家,\n"
+"請按下 \"%s\" 按鈕並選擇另一個。如果您的國家不在選單中,\n"
+"請按下 \"%s\" 按鈕來看完整的國家清單。"
+
+#: ../help.pm:572
+#, c-format
+msgid ""
+"This step is activated only if an existing GNU/Linux partition has been\n"
+"found on your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new installation or an\n"
+"upgrade of an existing Mandriva Linux system:\n"
+"\n"
+" * \"%s\". For the most part, this completely wipes out the old system.\n"
+"However, depending on your partitioning scheme, you can prevent some of\n"
+"your existing data (notably \"home\" directories) from being over-written.\n"
+"If you wish to change how your hard drives are partitioned, or to change\n"
+"the file system, you should use this option.\n"
+"\n"
+" * \"%s\". This installation class allows you to update the packages\n"
+"currently installed on your Mandriva Linux system. Your current "
+"partitioning\n"
+"scheme and user data will not be altered. Most of the other configuration\n"
+"steps remain available and are similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
+"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
+"to Mandriva Linux version \"8.1\" is not recommended."
+msgstr ""
+"這個步驟是在您的機器上找到已經存在的 GNU/Linux 分割區才會啟用。\n"
+"\n"
+"DrakX 需要知道您是要安裝新的系統或者升級既有的 Mandriva Linux 系統:\n"
+"\n"
+" * \"%s\". 大致來說,這將會完全抹除舊的系統。然而,根據您的分割區配\n"
+"置方式,您可以避免部分現存的資料 (例如 \"home\" 之中的目錄) 被完全\n"
+"抹除。如果您想要改變您的硬碟分割方式,或改變檔案系統,您應該使用這\n"
+"個選項。\n"
+"\n"
+" * \"%s\". 這個安裝方式讓您更新目前安裝在您的 Mandriva Linux 中的套\n"
+"件。您目前的分割方式和使用者資料不會被改變。大部分其他的設定步驟仍\n"
+"然會出現並且和標準的安裝過程相似。\n"
+"\n"
+"使用 ``更新'' 選項應該在 Mandriva Linux 版本 \"8.1\" 或更新的系統上\n"
+"可以正常運作。不建議從 Mandriva Linux 版本 \"8.1\" 或更早的系統進行更新。"
+
+#: ../help.pm:594
+#, c-format
+msgid ""
+"Depending on the language you chose (), DrakX will automatically select a\n"
+"particular type of keyboard configuration. Check that the selection suits\n"
+"you or choose another keyboard layout.\n"
+"\n"
+"Also, you may not have a keyboard which corresponds exactly to your\n"
+"language: for example, if you are an English-speaking Swiss native, you may\n"
+"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
+"you may find yourself in the same situation where your native language and\n"
+"country-set keyboard do not match. In either case, this installation step\n"
+"will allow you to select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding which will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"根據您所選的語言 (), DrakX 將會自動選擇一個特別的鍵盤設定型態. 檢查所選擇的\n"
+"是否適合您或選擇另一個鍵盤形式。\n"
+"\n"
+"您或許沒有精確對應於您的語言的鍵盤: 例如, 如果您是一個說英文的瑞士本國人,\n"
+"您或許有瑞士鍵盤. 或如果您說英文且在魁北克 (Quebec), 您或許發現您自己在一個\n"
+"您本國語言與國家鍵盤組合不對稱的情況. 不管是那種情形, 這個安裝步驟將允許您\n"
+"從一個清單中選擇適合的鍵盤\n"
+"\n"
+"點選 \"%s\" 按鈕以顯示一個支援的鍵盤清單.\n"
+"\n"
+"如果您根據一個非拉丁語系字母選擇一個鍵盤形式,下一個對話窗將允許您選擇\n"
+"按鍵組合以便切換於拉丁與非拉丁鍵盤形式之中。"
+
+#: ../help.pm:612
+#, c-format
+msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
+"Your choice of preferred language will affect the installer, the\n"
+"documentation, and the system in general. First select the region you're\n"
+"located in, then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if Spanish\n"
+"users are to use your machine, select English as the default language in\n"
+"the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
+"cover all existing languages. However full support for it in GNU/Linux is\n"
+"still under development. For that reason, Mandriva Linux's use of UTF-8 "
+"will\n"
+"depend on the user's choices:\n"
+"\n"
+" * If you choose a language with a strong legacy encoding (latin1\n"
+"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
+"iso-8859-2 languages), the legacy encoding will be used by default;\n"
+"\n"
+" * Other languages will use unicode by default;\n"
+"\n"
+" * If two or more languages are required, and those languages are not using\n"
+"the same encoding, then unicode will be used for the whole system;\n"
+"\n"
+" * Finally, unicode can also be forced for use throughout the system at a\n"
+"user's request by selecting the \"%s\" option independently of which\n"
+"languages were been chosen.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several, or even install them all by selecting the \"%s\" box.\n"
+"Selecting support for a language means translations, fonts, spell checkers,\n"
+"etc. will also be installed for that language.\n"
+"\n"
+"To switch between the various languages installed on your system, you can\n"
+"launch the \"localedrake\" command as \"root\" to change the language used\n"
+"by the entire system. Running the command as a regular user will only\n"
+"change the language settings for that particular user."
+msgstr ""
+"第一步驟是選擇您偏好的語言.\n"
+"\n"
+"您選擇的偏好語言一般來說將影響安裝、文件、與系統。先選擇您在的區域,然後\n"
+"是您說的語言.\n"
+"\n"
+"點選 \"%s\" 按鍵將允許您選擇其他語言來安裝在您的工作站上, 因此, 安裝特殊語"
+"言\n"
+"檔案給系統文件與應用程式. 例如, 如果西班牙使用者會用您的機器, 在樹狀檢視中\n"
+"選擇英文當預設語言且在進階部份選擇 \"%s\".\n"
+"\n"
+"關於 UTF-8 (unicode) 支援:Unicode 是一個新的字元編碼以涵蓋所有存在的語言。\n"
+"然而, 在 GNU/Linux 下完全的支援仍然在開發中. 因為那個原因, Mandriva Linux "
+"的\n"
+" UTF-8 使用將根據使用者的選擇而定:\n"
+"\n"
+" * 如果您選擇一個有偏重傳統編碼的語言 (latin1 語言、俄羅斯文、日文、中文、\n"
+"韓國, 泰國, 希臘, 土耳其, 大多的 iso-8859-2 語言)\n"
+"\n"
+" * 其他語言將使用 unicode 為預設;\n"
+"\n"
+" * 如果兩個或兩個以上的語言被需要, 且那些語言不用相同的編碼, 則 unicode 將被"
+"用於整個系統;\n"
+"\n"
+" * 最後,unicode 也可以被強制使用於整個系統,藉由使用者的選擇 \"%s\" 選項\n"
+"來要求之.\n"
+"\n"
+"記得您不被限制於選擇一個單一的附加語言. 您可以選擇數個, 或甚至藉由選擇\n"
+" \"%s\" 方塊安裝他們全部。選擇支援該種語言是指翻譯、字型、拼字檢查等等,\n"
+"將也會被安裝給那個語言.\n"
+"為了切換於不同的安裝於您系統上的語言之間,您可以用 \"root\" 執行\n"
+"\"localedrake\" 程式來改變用於整個系統上的語言。用一般使用者執行程式\n"
+"將只會改變對於那個特別使用者的語言設定."
+
+#: ../help.pm:650
+#, c-format
+msgid "Espanol"
+msgstr "西班牙語"
+
+#: ../help.pm:653
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be obtained by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
+"mouse. DrakX will then configure your mouse so that you can simulate the\n"
+"wheel with it: to do so, press the middle button and move your mouse\n"
+"pointer up and down.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
+"will work with nearly all mice.\n"
+"\n"
+"If you choose a mouse other than the default one, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and\n"
+"you will be returned to the mouse list.\n"
+"\n"
+"Occasionally wheel mice are not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
+"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
+"Test the buttons and check that the mouse pointer moves on-screen as you\n"
+"move your mouse about."
+msgstr ""
+"通常 DrakX 沒有偵測滑鼠按鍵數量的問題. 如果有的話, 它假設您有兩鍵的滑鼠\n"
+"且將設定它模擬三鍵. 第三鍵按鍵於兩鍵滑鼠可以由同時按下左鍵與右鍵來模擬.\n"
+"DrakX 將會自動知道您的滑鼠是否使用 PS/2, 序列埠 或 USB 介面.\n"
+"\n"
+" 如果您有一個無滾輪的三鍵滑鼠, 您可以選擇 \"%s\" 滑鼠. DrakX 將會設定您的\n"
+"滑鼠以至於您可以用它模擬滾輪: 為了要使用它, 按下中間鍵且上下移動您的滑鼠指"
+"標.\n"
+"\n"
+"如果由於某些原因您想指定一個不同的滑鼠類型, 從提供的清單中選它.\n"
+"\n"
+"您可以選擇 \"%s\" 項目來選擇一個 ``generic (一般)'' 滑鼠型態, 適用於幾乎全"
+"部\n"
+"的滑鼠.\n"
+"\n"
+"如果您選擇一個不同於預設值的滑鼠,將會顯示一個測試畫面。使用按鍵與滾輪來\n"
+"確認設定值是正確的且滑鼠正確工作。如果滑鼠不能工作,請按下空白鍵或 [Return] "
+"鍵\n"
+"以取消測試且您將回到滑鼠清單.\n"
+"\n"
+"某些情況下, 滾輪滑鼠不能被自動偵測, 所以您將需要從清單中選擇您的滑鼠.\n"
+"確定選擇一個對應於您的滑鼠連接埠的項目。選擇一個滑鼠且按下 \"%s\" 鍵後,\n"
+"一個滑鼠影像將顯示在螢幕上.\n"
+"請捲動滑鼠滾輪以確定它正確被啟動。當您滾動滾輪,您將看見螢幕上的滾輪移動。\n"
+"測試按鍵並檢查當您移動您的滑鼠時游標是否在螢幕上移動。"
+
+#: ../help.pm:684
+#, c-format
+msgid "with Wheel emulation"
+msgstr "滾輪模擬"
+
+#: ../help.pm:684
+#, c-format
+msgid "Universal | Any PS/2 & USB mice"
+msgstr "通用 | 任何 PS/2 & USB 滑鼠"
+
+#: ../help.pm:687
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"請選擇正確的連接埠名稱. 比方, Windows 所稱呼的 \"COM1\"\n"
+"在 GNU/Linux 環境是稱呼為 \"ttyS0\"."
+
+#: ../help.pm:691
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you must enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That's why you must choose a password which is difficult to\n"
+"guess: DrakX will tell you if the password you chose is too simple. As you\n"
+"can see, you're not forced to enter a password, but we strongly advise\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise your system.\n"
+"\n"
+"One caveat: do not make the password too long or too complicated because "
+"you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it. To reduce the\n"
+"chance of a blind typing error you'll need to enter the password twice. If\n"
+"you do happen to make the same typing error twice, you'll have to use this\n"
+"``incorrect'' password the first time you'll try to connect as \"root\".\n"
+"\n"
+"If you want an authentication server to control access to your computer,\n"
+"click on the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, or if your\n"
+"computer will never be connected to the Internet and you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
+msgstr ""
+"這是最重要的 GNU/Linux 系統安全性決定點: 你一定要輸入 \"root\" 密碼.\n"
+"\"root\" 是系統管理員且是被授權做更新, 增加使用者, 變更整個系統設定等等\n"
+"的人。簡而言之,\"root\" 能做任何事!那就是為什麼您必須要選擇一個很難猜中\n"
+"的密碼. DrakX 將告訴您您的密碼是否太簡單. 就像您所見的一樣, 您並不被強制輸"
+"入\n"
+"一個密碼, 但是我們強烈建議如此. GNU/Linux 就像其他任何作業系統一般易於受\n"
+"操作手誤影響。因為 \"root\" 可以克服全部限制且藉由不小心存取分割,可以\n"
+"不經意地抹除所有分割上的資料,因此讓成為 \"root\" 身分很困難是極重要的。\n"
+"\n"
+"密碼應該是一組字母與數字字元且至少 8 個字元長. 絕不寫下 \"root\" 密碼 - \n"
+"它使得太容易掌控您的系統(安全性)。\n"
+"\n"
+"一個警告: 別把密碼設定太長或太複雜, 因為您必須能記住它!\n"
+"\n"
+"您在輸入密碼時, 螢幕上不會顯示出你實際敲入的內容. 另外就是您需要輸入兩次\n"
+"以便於確定所輸入的密碼沒有打錯. 如果您不小心做出兩次同樣的輸入錯誤,\n"
+"您將必須使用這個 ``錯誤'' 密碼於第一次您試著以 \"root\" 連入.\n"
+"\n"
+"如果您想要一個認證伺服器來控制存取您的電腦, 點選 \"%s\" 按鍵.\n"
+"\n"
+"若是你知道您所在網路有使用 LDAP, NIS, 或 PDC Windows 網域認證服務,\n"
+"選適合的一個給 \"%s\". 如果您不知道選那一個, 向網路管理者詢問相關資訊.\n"
+"\n"
+"如果您遇到記住密碼的問題, 或如果您的電腦將永遠不連上網際網路且您絕對相信\n"
+"所有使用您電腦的人,您可以選擇 \"%s\"."
+
+#: ../help.pm:725
+#, c-format
+msgid "authentication"
+msgstr "認證"
+
+#: ../help.pm:728
+#, c-format
+msgid ""
+"A boot loader is a little program which is started by the computer at boot\n"
+"time. It's responsible for starting up the whole system. Normally, the boot\n"
+"loader installation is totally automated. DrakX will analyze the disk boot\n"
+"sector and act according to what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
+"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
+"OS installed on your machine.\n"
+"\n"
+" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
+"\n"
+"If DrakX can not determine where to place the boot sector, it'll ask you\n"
+"where it should place it. Generally, the \"%s\" is the safest place.\n"
+"Choosing \"%s\" will not install any boot loader. Use this option only if "
+"you\n"
+"know what you're doing."
+msgstr ""
+"開機載入器是在電腦開機時啟動的程式。它負責啟動整個系統。正常的話,開機載入\n"
+"程式的安裝是完全自動化的。DrakX 會分析硬碟的開機扇區並根據它所找到的行動:\n"
+"\n"
+" * 如果找到 Windows 開機扇區的話,它會將其取代為 GRUB/LILO 開機扇區。這樣\n"
+"您就能載入 GNU/Linux 或任何其他安裝在您的機器上的作業系統。\n"
+"\n"
+" * 如果找到 GRUB 或 LILO 開機扇區,它會用一個新的將其取代。\n"
+"\n"
+"如果 DrakX 無法決定該將開機扇區放在哪哩,它會詢問您要將其放置於何處。一般來\n"
+"說,\"%s\" 是最安全的地方。選擇 \"%s\" 將不會安裝任何開機載入程式。只有在\n"
+"您很清楚您在做什麼時才選擇這個選項。"
+
+#: ../help.pm:745
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other\n"
+"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
+"the printing systems is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"within networks.) It's recommended that you use \"pdq\" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
+"choice for printing to your local printer or to one halfway around the\n"
+"planet. It's simple to configure and can act as a server or a client for\n"
+"the ancient \"lpd\" printing system, so it's compatible with older\n"
+"operating systems which may still need print services. While quite\n"
+"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
+"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
+"\"%s\" includes graphical front-ends for printing or choosing printer\n"
+"options and for managing the printer.\n"
+"\n"
+"If you make a choice now, and later find that you do not like your printing\n"
+"system you may change it by running PrinterDrake from the Mandriva Linux\n"
+"Control Center and clicking on the \"%s\" button."
+msgstr ""
+"現在要選擇您的電腦要使用的列印系統. 其他作業系統或許只有提供您一種選擇,\n"
+"但是 Mandriva Linux 這邊提供了兩種選擇. 每一種列印系統是最適合於特別設定型"
+"態.\n"
+"\n"
+" * \"%s\" - 是 ``print, do not queue (列印, 不排隊)'' 之縮寫字, 是當您有一"
+"個\n"
+"直接連線的印表機, 您不想因為卡紙而驚慌, 且您沒有網路印表機. (\"%s\"\n"
+"只將會處理非常簡單的網路條件且當用於網路時有些慢) 如果這是您第一次 GNU/"
+"Linux\n"
+"經驗, 建議您使用\"pdq\".\n"
+"\n"
+" * \"%s\" 是 ``Common Unix Printing System (通用 Unix 列印系統)'', 這是一套\n"
+"對於直接列印到本地端印表機上, 或者是到地球另一端都相當出色的選擇. 它的設定\n"
+"是相當簡單且可以當成古老的 lpd 列印系統的伺服器端或者是用戶端使用, 所以它是\n"
+"相容於需要列印服務比較舊的作業系統。相當強大,基本設定幾乎跟 \"pdq\" 一樣\n"
+"簡單. 如果您希望能夠模擬 \"lpd\" 伺服器, 確定您開啟 \"cups-lpd\" daemon.\n"
+"\"%s\" 提供了圖形的介面前端給列印, 選擇列印的選項, 管理印表機.\n"
+"\n"
+"如果您現在做出決定, 且您之後發現不喜歡您的列印系統, 您可以藉由從\n"
+"Mandriva Linux 控制中心執行 PrinterDrake 點選 \"%s\" 按鍵改變它."
+
+#: ../help.pm:768
+#, c-format
+msgid "pdq"
+msgstr "pdq"
+
+#: ../help.pm:768
+#, c-format
+msgid "Expert"
+msgstr "專家"
+
+#: ../help.pm:771
+#, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
+msgstr ""
+"DrakX 將要偵測您電腦上的 IDE 裝置. 它也會順便掃描您系統上的 PCI\n"
+"SCSI 介面卡. 當偵測到 SCSI 卡時, DrakX 將會自動安裝適當的驅動程式\n"
+"\n"
+"因為也許無法完全的偵測出您的系統是否還有更多的硬體裝置, 所以 DrakX或許會失敗"
+"偵測您的硬碟. 若是這樣, 您必須手動指定您的硬體.\n"
+"\n"
+"如果您必須手動方式指定您的 PCI SCSI 適配器時, DrakX 會詢問您是否要對這個\n"
+"驅動程式設定選項參數. 您應該要允許 DrakX 能夠先自動偵測硬體卡特別的選項參數\n"
+"以需要初始化適配器. 通常, DrakX 將會沒有問題通過這個步驟.\n"
+"\n"
+"若是 DrakX 無法偵測選項以自動決定那個參數需要被送到硬體, 您必須手動設定\n"
+"驅動程式."
+
+#: ../help.pm:789
+#, c-format
+msgid ""
+"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver."
+msgstr ""
+"\"%s\": 如果您的系統上有偵測到音效卡,它將會顯示在這裡。如果您發現這並不是\n"
+"目前您的系統使用的音效卡,您可以按下按鈕並選擇另一個驅動程式。"
+
+#: ../help.pm:794
+#, c-format
+msgid ""
+"As a review, DrakX will present a summary of information it has gathered\n"
+"about your system. Depending on the hardware installed on your machine, you\n"
+"may have some or all of the following entries. Each entry is made up of the\n"
+"hardware item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"%s\" button to make the change.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change it if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you're not in this\n"
+"country, click on the \"%s\" button and choose another. If your country\n"
+"is not in the list shown, click on the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": verify the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to set up a new printer. The interface\n"
+"presented in our manual is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
+"here. If you notice the sound card is not the one actually present on your\n"
+"system, you can click on the button and choose a different driver.\n"
+"\n"
+" * \"%s\": if you have a TV card, this is where information about its\n"
+"configuration will be displayed. If you have a TV card and it is not\n"
+"detected, click on \"%s\" to try to configure it manually.\n"
+"\n"
+" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
+"the card if you feel the configuration is wrong.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if you wish to configure your Internet or local network access,\n"
+"you can do so now. Refer to the printed documentation or use the\n"
+"Mandriva Linux Control Center after the installation has finished to "
+"benefit\n"
+"from full in-line help.\n"
+"\n"
+" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
+"you're installing on is to be located behind a proxy server.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click this\n"
+"button. This should be reserved to advanced users. Refer to the printed\n"
+"documentation or the in-line help about bootloader configuration in the\n"
+"Mandriva Linux Control Center.\n"
+"\n"
+" * \"%s\": through this entry you can fine tune which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
+msgstr ""
+
+#: ../help.pm:858
+#, c-format
+msgid "ISDN card"
+msgstr "ISDN 卡"
+
+#: ../help.pm:858
+#, c-format
+msgid "Graphical Interface"
+msgstr "圖形介面"
+
+#: ../help.pm:861
+#, c-format
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
+"and will not be recoverable!"
+msgstr ""
+"選擇您想要抹除的硬碟來安裝新的 Mandriva Linux 分割. 小心,\n"
+"磁碟上全部資料將遺失且將無法挽回!"
+
+#: ../help.pm:866
+#, c-format
+msgid ""
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to quit this operation without losing data and partitions\n"
+"present on this hard drive."
+msgstr ""
+"您如果想要刪除在這個硬碟上的全部資料與分割, 點選 \"%s\".\n"
+"小心, 點選 \"%s\" 之後, 您將無法挽回任何在這個硬碟上的資料與分割, 包含\n"
+"Windows 資料.\n"
+"\n"
+"點選 \"%s\" 以不遺失在這個硬碟上的資料與分割放棄這個動作."
+
+#: ../help.pm:872
+#, c-format
+msgid "Next ->"
+msgstr "下一步 ->"
+
+#: ../help.pm:872
+#, c-format
+msgid "<- Previous"
+msgstr "<- 上一步"
+
diff --git a/perl-install/http.pm b/perl-install/install/http.pm
index e35d8d221..75d026d0d 100644
--- a/perl-install/http.pm
+++ b/perl-install/install/http.pm
@@ -1,15 +1,24 @@
-package http; # $Id$
+package install::http; # $Id$
use IO::Socket;
my $sock;
+
+sub close() {
+ $sock->close if $sock;
+}
+
sub getFile {
+ my ($url) = @_;
+ my ($_size, $fh) = get_file_and_size($url) or return;
+ $fh;
+}
+sub get_file_and_size {
local ($^W) = 0;
my ($url) = @_;
$sock->close if $sock;
- $url =~ m|/XXX$| and return; #- force closing connection.
# can be used for ftp urls (with http proxy)
my ($host, $port, $path) = $url =~ m,^(?:http|ftp)://([^/:]+)(?::(\d+))?(/\S*)?$,;
@@ -39,7 +48,8 @@ sub getFile {
} until $now && $last;
if ($tmp =~ /^(.*\b(\d+)\b.*)/ && $2 == 200) {
- $sock;
+ my ($size) = $tmp =~ /^Content-Length:\s*(\d+)\015?$/m;
+ $size, $sock;
} else {
log::l("HTTP error: $1");
undef;
diff --git a/perl-install/install2 b/perl-install/install/install2
index 9710f76c9..a080c0aef 100755
--- a/perl-install/install2
+++ b/perl-install/install/install2
@@ -21,18 +21,12 @@
use diagnostics;
use strict;
-BEGIN {
- #- for testing purpose
- (my $f = __FILE__) =~ s|install2$|list_modules.pm|;
- -e $f or symlink '../kernel/list_modules.pm', $f;
-}
-
use lib qw(/usr/lib/libDrakX .);
-use install2;
+use install::install2;
$::testing = $ENV{PERL_INSTALL_TEST};
$::isStandalone = 0;
-install2::main(@ARGV);
+install::install2::main(@ARGV);
c::_exit(0);
diff --git a/perl-install/install2.pm b/perl-install/install/install2.pm
index 1fc44869b..66d0cbee3 100644
--- a/perl-install/install2.pm
+++ b/perl-install/install/install2.pm
@@ -1,4 +1,4 @@
-package install2; # $Id$
+package install::install2; # $Id$
use diagnostics;
use strict;
@@ -7,11 +7,11 @@ use vars qw($o);
#-######################################################################################
#- misc imports
#-######################################################################################
-use steps;
+use install::steps_list;
use common;
-use install_any qw(:all);
-use install_steps;
-use install_any;
+use install::any 'addToBeDone';
+use install::steps;
+use install::any;
use lang;
use keyboard;
use mouse;
@@ -51,8 +51,8 @@ $o = $::o = {
#- keyboard => 'de',
#- display => "192.168.1.19:1",
- steps => \%steps::installSteps,
- orderedSteps => \@steps::orderedInstallSteps,
+ steps => \%install::steps_list::installSteps,
+ orderedSteps => \@install::steps_list::orderedInstallSteps,
#- for the list of fields available, see network/network.pm
net => {
@@ -70,16 +70,19 @@ $o = $::o = {
#-netc
#-methods
#-packages compss
-#-printer haveone entry(cf printer.pm)
};
sub installStepsCall {
my ($o, $auto, $fun, @args) = @_;
- $fun = "install_steps::$fun" if $auto;
+ $fun = "install::steps::$fun" if $auto;
$o->$fun(@args);
}
+sub getNextStep {
+ my ($o) = @_;
+ find { !$o->{steps}{$_}{done} && $o->{steps}{$_}{reachable} } @{$o->{orderedSteps}};
+}
#-######################################################################################
#- Steps Functions
@@ -110,11 +113,6 @@ sub selectMouse {
sub setupSCSI {
my ($auto) = @_;
- if (!$::testing && !$::local_install) {
- -d '/lib/modules/' . c::kernel_version() ||
- -s modules::cz_file() or die N("Can not access kernel modules corresponding to your kernel (file %s is missing), this generally means your boot floppy in not in sync with the Installation medium (please create a newer boot floppy)", modules::cz_file());
- }
-
installStepsCall($o, $auto, 'setupSCSI');
}
@@ -159,7 +157,7 @@ sub formatPartitions {
my ($auto) = @_;
$o->{steps}{choosePackages}{done} = 0;
- installStepsCall($o, $auto, 'choosePartitionsToFormat', $o->{fstab}) if !$o->{isUpgrade};
+ installStepsCall($o, $auto, 'choosePartitionsToFormat') if !$o->{isUpgrade} && !$::local_install;
my $want_root_formated = fs::get::root($o->{fstab})->{toFormat};
if ($want_root_formated) {
foreach ('/usr') {
@@ -167,24 +165,24 @@ sub formatPartitions {
$part->{toFormat} or die N("You must also format %s", $_);
}
}
- installStepsCall($o, $auto, 'formatMountPartitions', $o->{fstab}) if !$::testing;
+ installStepsCall($o, $auto, 'formatMountPartitions') if !$::testing;
if ($want_root_formated) {
#- we formatted /, ensure /var/lib/rpm is cleaned otherwise bad things can happen
#- (especially when /var is *not* formatted)
- eval { rm_rf("$o->{prefix}/var/lib/rpm") };
+ eval { rm_rf("$::prefix/var/lib/rpm") };
}
- install_any::create_minimal_files();
+ install::any::create_minimal_files();
eval { fs::mount::mount('none', "$::prefix/proc", 'proc') };
eval { fs::mount::mount('none', "$::prefix/sys", 'sysfs') };
eval { fs::mount::usbfs($::prefix) };
- install_any::screenshot_dir__and_move();
- install_any::move_clp_to_disk($o);
+ install::any::screenshot_dir__and_move();
+ install::any::move_compressed_image_to_disk($o);
- any::rotate_logs($o->{prefix});
+ any::rotate_logs($::prefix);
if (any { $_->{usb_media_type} && any { $_->{mntpoint} } partition_table::get_normal_parts($_) } @{$o->{all_hds}{hds}}) {
log::l("we use a usb-storage based drive, so keep it as a normal scsi_hostadapter");
@@ -209,7 +207,7 @@ sub formatPartitions {
#------------------------------------------------------------------------------
sub choosePackages {
my ($auto) = @_;
- require pkgs;
+ require install::pkgs;
#- always setPackages as it may have to copy hdlist and synthesis files.
installStepsCall($o, $auto, 'setPackages');
@@ -218,10 +216,10 @@ sub choosePackages {
log::l("rpmsrate_flags_chosen's: ", join(' ', sort @flags));
#- check pre-condition that basesystem package must be selected.
- pkgs::packageByName($o->{packages}, 'basesystem')->flag_available or die "basesystem package not selected";
+ install::pkgs::packageByName($o->{packages}, 'basesystem')->flag_available or die "basesystem package not selected";
#- check if there are packages that need installation.
- $o->{steps}{installPackages}{done} = 0 if $o->{steps}{installPackages}{done} && pkgs::packagesToInstall($o->{packages}) > 0;
+ $o->{steps}{installPackages}{done} = 0 if $o->{steps}{installPackages}{done} && install::pkgs::packagesToInstall($o->{packages}) > 0;
}
#------------------------------------------------------------------------------
@@ -254,12 +252,12 @@ sub configureNetwork {
#- get current configuration of network device.
require network::network;
eval { network::network::read_net_conf($o->{net}) };
- require network::ethernet;
modules::load_category($o->{modules_conf}, list_modules::ethernet_categories());
+ require network::connection::ethernet;
if (!$o->{isUpgrade}) {
installStepsCall($o, $auto, 'configureNetwork');
} else {
- network::ethernet::configure_eth_aliases($o->{modules_conf});
+ network::connection::ethernet::configure_eth_aliases($o->{modules_conf});
}
}
#------------------------------------------------------------------------------
@@ -301,11 +299,11 @@ sub configureX {
my ($auto) = @_;
#- done here and also at the end of install2.pm, just in case...
- install_any::write_fstab($o);
+ install::any::write_fstab($o);
$o->{modules_conf}->write;
- require pkgs;
- installStepsCall($o, $auto, 'configureX') if !$::testing && eval { pkgs::packageByName($o->{packages}, 'xorg-x11')->flag_installed } && !$o->{X}{disabled};
+ require install::pkgs;
+ installStepsCall($o, $auto, 'configureX') if !$::testing && eval { install::pkgs::packageByName($o->{packages}, 'task-x11')->flag_installed } && !$o->{X}{disabled};
}
#------------------------------------------------------------------------------
sub exitInstall {
@@ -323,8 +321,8 @@ sub main {
my $msg = "segmentation fault: seems like memory is missing as the install crashes"; log::l($msg);
$o->ask_warn('', $msg);
setVirtual(1);
- require install_steps_auto_install;
- install_steps_auto_install_non_interactive::errorInStep($o, $msg);
+ require install::steps_auto_install;
+ install::steps_auto_install_non_interactive::errorInStep($o, $msg);
};
$ENV{PERL_BADLANG} = 1;
delete $ENV{TERMINFO};
@@ -333,9 +331,8 @@ sub main {
$::isInstall = 1;
$::isWizard = 1;
$::no_ugtk_init = 1;
- $::expert = 0;
-#- c::unlimit_core() unless $::testing;
+ push @::textdomains, 'DrakX', 'drakx-net', 'drakx-kbd-mouse-x11';
my ($cfg, $patch, @auto);
my %cmdline = map {
@@ -362,10 +359,11 @@ sub main {
my $f = ${{
lang => sub { $o->{locale}{lang} = $v },
flang => sub { $o->{locale}{lang} = $v; push @auto, 'selectLanguage' },
+ langs => sub { $o->{locale}{langs} = +{ map { $_ => 1 } split(':', $v) } },
method => sub { $o->{method} = $v },
pcmcia => sub { $o->{pcmcia} = $v },
vga16 => sub { $o->{vga16} = $v },
- vga => sub { $o->{vga} = $v },
+ vga => sub { $o->{vga} = $v =~ /0x/ ? hex($v) : $v },
step => sub { $o->{steps}{first} = $v },
meta_class => sub { $o->{meta_class} = $v },
freedriver => sub { $o->{freedriver} = $v },
@@ -379,8 +377,8 @@ sub main {
testing => sub { $::testing = 1 },
patch => sub { $patch = 1 },
defcfg => sub { $cfg = $v },
- newt => sub { $o->{interactive} = "newt" },
- text => sub { $o->{interactive} = "newt" },
+ newt => sub { $o->{interactive} = "curses" },
+ text => sub { $o->{interactive} = "curses" },
stdio => sub { $o->{interactive} = "stdio" },
kickstart => sub { $::auto_install = $v },
local_install => sub { $::local_install = 1 },
@@ -410,15 +408,14 @@ sub main {
}
undef $::auto_install if $cfg;
- if (!$::testing) {
- unlink $_ foreach "/modules/modules.mar", "/sbin/stage1";
- }
- log::openLog();
- log::l("second stage install running (", install_any::drakx_version(), ")");
+ $o->{stage2_phys_medium} = install::media::stage2_phys_medium($o->{method});
+
+ log::l("second stage install running (", install::any::drakx_version($o), ")");
- eval { output('/proc/sys/kernel/modprobe', "\n") } if !$::local_install && !$::testing; #- disable kmod, otherwise we get a different behaviour in kernel vs kernel-BOOT
+ eval { output('/proc/sys/kernel/modprobe', "\n") } if !$::local_install && !$::testing; #- disable kmod
eval { fs::mount::mount('none', '/sys', 'sysfs', 1) };
+ eval { touch('/root/non-chrooted-marker.DrakX') }; #- helps distinguishing /root and /mnt/root when we don't know if we are chrooted
if ($::move) {
require move;
@@ -429,23 +426,20 @@ sub main {
# 'selectLanguage', 'selectKeyboard', 'miscellaneous', 'selectInstallClass',
'doPartitionDisks', 'formatPartitions';
fs::mount::usbfs(''); #- do it now so that when_load doesn't do it
+ $o->{nomouseprobe} = 1;
+ $o->{mouse} = mouse::fullname2mouse('Universal|Any PS/2 & USB mice');
}
- cp_f(glob('/stage1/tmp/*'), '/tmp');
-
- #- free up stage1 memory
- eval { fs::mount::umount($_) } foreach qw(/stage1/proc/bus/usb /stage1/proc /stage1);
-
$o->{prefix} = $::prefix = $::testing ? "/tmp/test-perl-install" : $::move ? "" : "/mnt";
- mkdir $o->{prefix}, 0755;
+ mkdir $::prefix, 0755;
#- make sure we do not pick up any gunk from the outside world
- my $remote_path = "$o->{prefix}/sbin:$o->{prefix}/bin:$o->{prefix}/usr/sbin:$o->{prefix}/usr/bin:$o->{prefix}/usr/X11R6/bin";
+ my $remote_path = "$::prefix/sbin:$::prefix/bin:$::prefix/usr/sbin:$::prefix/usr/bin:$::prefix/usr/X11R6/bin";
$ENV{PATH} = "/usr/bin:/bin:/sbin:/usr/sbin:/usr/X11R6/bin:$remote_path";
- eval { spawnShell() };
+ eval { install::any::spawnShell() };
- modules::load_dependencies(($::testing ? ".." : "") . "/modules/modules.dep");
+ modules::load_dependencies("/modules/modules.dep");
require modules::any_conf;
require modules::modules_conf;
$o->{modules_conf} = modules::modules_conf::read(modules::any_conf::vnew(), '/tmp/modules.conf');
@@ -462,11 +456,6 @@ sub main {
my $l = network::network::read_interface_conf($file);
$o->{net}{ifcfg}{$l->{DEVICE}} ||= $l;
}
- if (-e '/etc/resolv.conf') {
- my $file = '/etc/resolv.conf';
- log::l("found network config file $file");
- add2hash($o->{net}{resolv} ||= {}, network::network::read_resolv_conf($file));
- }
my $dsl_device = find { $_->{BOOTPROTO} eq 'adsl_pppoe' } values %{$o->{net}{ifcfg}};
if ($dsl_device) {
$o->{net}{type} = 'adsl';
@@ -492,14 +481,14 @@ sub main {
my $normalized_ip = join('', map { sprintf "%02X", $_ } split('\.', $ip));
$::auto_install =~ s/-IP(\.pl)?$/-$normalized_ip$1/;
}
- require install_steps_auto_install;
- eval { $o = $::o = install_any::loadO($o, $::auto_install) };
+ require install::steps_auto_install;
+ eval { $o = $::o = install::any::loadO($o, $::auto_install) };
if ($@) {
if ($o->{useless_thing_accepted}) { #- Pixel's hack to be able to fail through
log::l("error using auto_install, continuing");
undef $::auto_install;
} else {
- install_steps_auto_install_non_interactive::errorInStep($o, "Error using auto_install\n" . formatError($@));
+ install::steps_auto_install_non_interactive::errorInStep($o, "Error using auto_install\n" . formatError($@));
}
} else {
log::l("auto install config file loaded successfully");
@@ -513,8 +502,8 @@ sub main {
$o->{interactive} ||= 'gtk' if !$::auto_install;
if ($o->{interactive} eq "gtk" && availableMemory() < 22 * 1024) {
- log::l("switching to newt install cuz not enough memory");
- $o->{interactive} = "newt";
+ log::l("switching to curses install cuz not enough memory");
+ $o->{interactive} = "curses";
}
if (my ($s) = cat_("/proc/cmdline") =~ /brltty=(\S*)/) {
@@ -522,23 +511,23 @@ sub main {
$table = "text.$table.tbl" if $table !~ /\.tbl$/;
log::l("brltty option $driver $device $table");
$o->{brltty} = { driver => $driver, device => $device, table => $table };
- $o->{interactive} = 'newt';
+ $o->{interactive} = 'curses';
$o->{nomouseprobe} = 1;
}
- # perl_checker: require install_steps_gtk
- # perl_checker: require install_steps_newt
- # perl_checker: require install_steps_stdio
- require "install_steps_$o->{interactive}.pm" if $o->{interactive};
+ # perl_checker: require install::steps_gtk
+ # perl_checker: require install::steps_curses
+ # perl_checker: require install::steps_stdio
+ require "install/steps_$o->{interactive}.pm" if $o->{interactive};
#- needed before accessing floppy (in case of usb floppy)
modules::load_category($o->{modules_conf}, 'bus/usb');
#- oem patch should be read before to still allow patch or defcfg.
- eval { $o = $::o = install_any::loadO($o, "install/patch-oem.pl"); log::l("successfully read oem patch") };
+ eval { $o = $::o = install::any::loadO($o, "install/patch-oem.pl"); log::l("successfully read oem patch") };
#- patch should be read after defcfg in order to take precedance.
- eval { $o = $::o = install_any::loadO($o, $cfg); log::l("successfully read default configuration: $cfg") } if $cfg;
- eval { $o = $::o = install_any::loadO($o, "patch"); log::l("successfully read patch") } if $patch;
+ eval { $o = $::o = install::any::loadO($o, $cfg); log::l("successfully read default configuration: $cfg") } if $cfg;
+ eval { $o = $::o = install::any::loadO($o, "patch"); log::l("successfully read patch") } if $patch;
eval { modules::load("af_packet") };
@@ -548,40 +537,42 @@ sub main {
#- need to be after oo-izing $o
if ($o->{brltty}) {
symlink "/tmp/stage2/$_", $_ foreach "/etc/brltty";
- eval { modules::load("serial") };
devices::make($_) foreach $o->{brltty}{device} ? $o->{brltty}{device} : qw(ttyS0 ttyS1);
devices::make("vcsa");
run_program::run("brltty");
}
- #- needed very early for install_steps_gtk
+ #- needed very early for install::steps_gtk
if (!$::testing) {
eval { $o->{mouse} = mouse::detect($o->{modules_conf}) } if !$o->{mouse} && !$o->{nomouseprobe};
mouse::load_modules($o->{mouse});
}
- $o->{locale}{lang} = lang::set($o->{locale}) if $o->{locale}{lang} ne 'en_US' && !$::move; #- mainly for defcfg
+ lang::set($o->{locale}) if !$::move;
# keep the result otherwise monitor-edid does not return good results afterwards
eval { any::monitor_full_edid() };
- install_any::start_i810fb();
+ install::any::start_i810fb();
$o->{allowFB} = listlength(cat_("/proc/fb"));
- if (!$::move && !$::testing && !$o->{meta_class}) {
- my $VERSION = cat__(install_any::getFile("VERSION")) or do { print "VERSION file missing\n"; sleep 5 };
- my @classes = qw(powerpackplus powerpack desktop download server firewall);
- if (my $meta_class = find { $VERSION =~ /$_/i } @classes) {
- $o->{meta_class} = $meta_class;
- }
- $o->{distro_type} = 'community' if $VERSION =~ /community/i;
- $o->{distro_type} = 'cooker' if $VERSION =~ /cooker/i;
+ if (!$::move && !$::testing) {
+ my $product_id = cat__(install::any::getFile_($o->{stage2_phys_medium}, "product.id"));
+ log::l('product_id: ' . chomp_($product_id));
+ $o->{product_id} = common::parse_LDAP_namespace_structure($product_id);
+
+ $o->{meta_class} ||= {
+ One => 'desktop',
+ Free => 'download',
+ Powerpack => 'powerpack',
+ Discovery => 'desktop',
+ 'Powerpack+' => 'server',
+ }->{$o->{product_id}{product}} || 'download';
}
- $o->{meta_class} eq 'discovery' and $o->{meta_class} = 'desktop';
- $o->{meta_class} eq 'powerpackplus' and $o->{meta_class} = 'server';
- log::l("meta_class $o->{meta_class}");
+ log::l("META_CLASS=$o->{meta_class}");
+ $ENV{META_CLASS} = $o->{meta_class}; #- for Ia Ora
foreach (@auto) {
my $s = $o->{steps}{/::(.*)/ ? $1 : $_} or next;
@@ -591,19 +582,19 @@ sub main {
my $o_;
while (1) {
$o_ = $::auto_install ?
- install_steps_auto_install->new($o) :
+ install::steps_auto_install->new($o) :
$o->{interactive} eq "stdio" ?
- install_steps_stdio->new($o) :
- $o->{interactive} eq "newt" ?
- install_steps_newt->new($o) :
+ install::steps_stdio->new($o) :
+ $o->{interactive} eq "curses" ?
+ install::steps_curses->new($o) :
$o->{interactive} eq "gtk" ?
- install_steps_gtk->new($o) :
+ install::steps_gtk->new($o) :
die "unknown install type";
$o_ and last;
- log::l("$o->{interactive} failed, trying again with newt");
- $o->{interactive} = "newt";
- require install_steps_newt;
+ log::l("$o->{interactive} failed, trying again with curses");
+ $o->{interactive} = "curses";
+ require install::steps_curses;
}
$::o = $o = $o_;
@@ -614,7 +605,7 @@ sub main {
$o->{steps}{$o->{step}}{entered}++;
$o->enteringStep($o->{step});
eval {
- &{$install2::{$o->{step}}}($o->{steps}{$o->{step}}{auto});
+ &{$install::install2::{$o->{step}}}($o->{steps}{$o->{step}}{auto});
};
my $err = $@;
$o->kill_action;
@@ -636,42 +627,35 @@ sub main {
last if $o->{step} eq 'exitInstall';
}
- unlink $install_any::clp_on_disk;
- install_any::clean_postinstall_rpms();
- install_any::log_sizes($o);
- install_any::remove_advertising($o);
- install_any::write_fstab($o);
+ unlink $install::any::compressed_image_on_disk;
+ install::media::clean_postinstall_rpms();
+ install::media::log_sizes();
+ install::any::remove_advertising();
+ install::any::write_fstab($o);
$o->{modules_conf}->write;
- detect_devices::install_addons($o->{prefix});
-
- #- mainly for auto_install's
- #- do not use run_program::xxx because it does not leave stdin/stdout unchanged
- system("bash", "-c", $o->{postInstallNonRooted}) if $o->{postInstallNonRooted};
- system("chroot", $o->{prefix}, "bash", "-c", $o->{postInstall}) if $o->{postInstall};
-
- install_any::ejectCdrom();
+ detect_devices::install_addons($::prefix);
#- to ensure linuxconf does not cry against those files being in the future
foreach ('/etc/modules.conf', '/etc/crontab', '/etc/sysconfig/mouse', '/etc/sysconfig/network', '/etc/X11/fs/config') {
my $now = time() - 24 * 60 * 60;
- utime $now, $now, "$o->{prefix}/$_";
+ utime $now, $now, "$::prefix/$_";
}
- install_any::killCardServices();
-
#- make sure failed upgrade will not hurt too much.
- install_steps::cleanIfFailedUpgrade($o);
+ install::steps::cleanIfFailedUpgrade($o);
+
+ -e "$::prefix/usr/sbin/urpmi.update" or eval { rm_rf("$::prefix/var/lib/urpmi") };
- -e "$o->{prefix}/usr/sbin/urpmi.update" or eval { rm_rf("$o->{prefix}/var/lib/urpmi") };
+ system("chroot", $::prefix, "bash", "-c", $o->{postInstallBeforeReboot}) if $o->{postInstallBeforeReboot};
#- copy latest log files
- eval { cp_af("/tmp/$_", "$o->{prefix}/root/drakx") foreach qw(ddebug.log stage1.log) };
+ eval { cp_af("/tmp/$_", "$::prefix/root/drakx") foreach qw(ddebug.log stage1.log) };
#- ala pixel? :-) [fpons]
common::sync(); common::sync();
log::l("installation complete, leaving");
log::l("files still open by install2: ", readlink($_)) foreach glob_("/proc/self/fd/*");
- print "\n" x 80;
+ print "\n" x 80 if !$::local_install;
}
1;
diff --git a/perl-install/install/interactive.pm b/perl-install/install/interactive.pm
new file mode 100644
index 000000000..3aa66a657
--- /dev/null
+++ b/perl-install/install/interactive.pm
@@ -0,0 +1,33 @@
+package install::interactive; # $Id$
+
+use diagnostics;
+use strict;
+
+use common;
+use detect_devices;
+use install::steps;
+use log;
+
+
+sub tellAboutProprietaryModules {
+ my ($o) = @_;
+ my @l = detect_devices::probe_name('Bad') or return;
+ $o->ask_warn('', formatAlaTeX(
+N("Some hardware on your computer needs ``proprietary'' drivers to work.
+You can find some information about them at: %s", join(", ", @l))));
+}
+
+sub upNetwork {
+ my ($o, $b_pppAvoided) = @_;
+ my $_w = $o->wait_message('', N("Bringing up the network"));
+ install::steps::upNetwork($o, $b_pppAvoided);
+}
+sub downNetwork {
+ my ($o, $b_pppOnly) = @_;
+ my $_w = $o->wait_message('', N("Bringing down the network"));
+ install::steps::downNetwork($o, $b_pppOnly);
+}
+
+
+
+1;
diff --git a/perl-install/install/media.pm b/perl-install/install/media.pm
new file mode 100644
index 000000000..8944cff34
--- /dev/null
+++ b/perl-install/install/media.pm
@@ -0,0 +1,1008 @@
+package install::media; # $Id$
+
+use strict;
+
+our @ISA = qw(Exporter);
+our @EXPORT_OK = qw(getFile_ getAndSaveFile_ getAndSaveFile_media_info packageMedium);
+
+use common;
+use fs::type;
+
+
+#- list of fields for {phys_medium} :
+#- device
+#- finalpath
+#- from_iso
+#- fs_type
+#- is_suppl (is a supplementary media)
+#- isMounted
+#- loopback_device
+#- loopback_file
+#- method
+#- mntpoint
+#- name (text description, same as first medium {name})
+#- real_mntpoint
+#- rel_path (for isofiles and cdrom)
+#- url
+
+#- list of fields for {mediums} :
+#- end (last rpm id, undefined iff not selected)
+#- fakemedium ("$name ($rpmsdir)", used locally by urpmi)
+#- hdlist
+#- hdlist_size
+#- key_ids (hashref, values are key ids)
+#- name (text description)
+#- pubkey (array containing all the keys to import)
+#- phys_medium
+#- rpmsdir
+#- selected
+#- size (in MB)
+#- start (first rpm id, undefined iff not selected)
+#- synthesis_hdlist_size
+#- update (for install_urpmi)
+
+
+our $postinstall_rpms = '';
+my %mounted_media;
+
+sub free_medium_id {
+ my ($mediums) = @_;
+ int(@$mediums);
+}
+
+sub allMediums {
+ my ($packages) = @_;
+
+ @{$packages->{mediums}};
+}
+
+sub phys_media {
+ my ($packages) = @_;
+
+ uniq(map { $_->{phys_medium} } @{$packages->{mediums}});
+}
+
+sub pkg2media {
+ my ($mediums, $p) = @_;
+ $p or internal_error("invalid package");
+
+ find {
+ $_->{selected} &&
+ $p->id >= $_->{start} && $p->id <= $_->{end};
+ } @$mediums;
+}
+
+sub packageMedium {
+ my ($packages, $p) = @_;
+
+ pkg2media($packages->{mediums}, $p) || {};
+}
+sub packagesOfMedium {
+ my ($packages, $medium) = @_;
+
+ @{$packages->{depslist}}[$medium->{start} .. $medium->{end}];
+}
+
+sub first_medium {
+ my ($packages) = @_;
+ $packages->{mediums}[0];
+}
+
+sub path {
+ my ($phys_m, $f) = @_;
+
+ ($phys_m->{real_mntpoint} || fs::get::mntpoint_prefixed($phys_m)) . $phys_m->{rel_path} . '/' . $f;
+}
+
+sub rel_rpm_file {
+ my ($medium, $f) = @_;
+ if (my ($arch) = $f =~ m|\.([^\.]*)\.rpm$|) {
+ $f = "$medium->{rpmsdir}/$f";
+ $f =~ s/%{ARCH}/$arch/g;
+ $f =~ s,^/+,,g;
+ }
+ $f;
+}
+
+sub umount_phys_medium {
+ my ($phys_m) = @_;
+
+ my $ok = eval {
+ fs::mount::umount_part($phys_m);
+ delete $phys_m->{real_mntpoint}; #- next time, we can mount it in the dest dir
+ 1;
+ };
+ if ($@) {
+ log::l("umount phys_medium $phys_m->{url} failed ($@)");
+ log::l("files still open: ", readlink($_)) foreach map { glob_("$_/fd/*") } glob_("/proc/*");
+ }
+ $ok;
+}
+sub mount_phys_medium {
+ my ($phys_m, $o_rel_file, $b_force_change) = @_;
+
+ if (!$b_force_change) {
+ eval { fs::mount::part($phys_m) };
+ return if $@;
+ }
+ my $ok = !$o_rel_file || -e path($phys_m, $o_rel_file);
+
+ if ($phys_m->{method} eq 'cdrom' && ($b_force_change || !$ok)) {
+ $ok = $::o->ask_change_cd($phys_m, $o_rel_file);
+ }
+ $ok;
+}
+
+sub umount_media {
+ my ($packages) = @_;
+
+ #- we don't bother umounting first phys medium if clp is not on disk
+ #- (this is mainly for nfs installs using install/stage2/live)
+ my @l = phys_media($packages);
+ shift @l if !$install::any::compressed_image_on_disk && $l[0]{is_stage2_phys_medium};
+
+ umount_phys_medium($_) foreach @l;
+ umount_phys_medium($_) foreach grep { $_ } map { $_->{loopback_device} } @l;
+}
+
+sub url_respect_privacy {
+ my ($url) = @_;
+
+ $url =~ s!ftp://.*?\@!ftp://xxx@!;
+ $url;
+}
+sub phys_medium_to_string {
+ my ($phys_m) = @_;
+ url_respect_privacy($phys_m->{url}) . ($phys_m->{name} ? " ($phys_m->{name})" : '');
+}
+
+sub stage2_mounted_medium {
+ my ($method, $rel_path) = @_;
+
+ my ($device, $real_mntpoint, $fs_type, $url);
+ if ($method eq 'nfs') {
+ (my $server, my $nfs_path, $real_mntpoint, $fs_type) = cat_("/proc/mounts") =~ m!(\S+):(\S+)\s+(/tmp/media)\s+(\S+)!;
+ $device = "$server:$nfs_path";
+ $url = "nfs://$server$nfs_path$rel_path";
+ } elsif ($method eq 'disk') {
+ ($device, $real_mntpoint, $fs_type) = cat_("/proc/mounts") =~ m!/dev/(\S+)\s+(/tmp/media)\s+(\S+)!;
+ $url = "disk://$device$rel_path";
+ } elsif ($method eq 'cdrom') {
+ ($device, $real_mntpoint, $fs_type) = cat_("/proc/mounts") =~ m!/dev/(\S+)\s+(/tmp/media)\s+(\S+)!;
+ $url = "cdrom:/" . ($rel_path || '/');
+ } else {
+ ($device, $real_mntpoint, $fs_type) = cat_("/proc/mounts") =~ m!(?:/dev/)?(\S+)\s+(/tmp/media)\s+(\S+)!;
+ $url = "file:/" . ($rel_path || '/');
+ }
+ $real_mntpoint or internal_error("no real_mntpoint");
+ +{
+ method => $method, rel_path => $rel_path, isMounted => 1,
+ device => $device, url => $url,
+ real_mntpoint => $real_mntpoint, fs_type => $fs_type,
+ };
+}
+
+#- used once at beginning of install
+sub stage2_phys_medium {
+ my ($method) = @_;
+
+ if ($method eq 'ftp' && !$ENV{URLPREFIX}) {
+ my $user = $ENV{LOGIN} && ($ENV{LOGIN} . ($ENV{PASSWORD} && ":$ENV{PASSWORD}") . '@');
+ $ENV{URLPREFIX} = "ftp://$user$ENV{HOST}/$ENV{PREFIX}";
+ }
+ if ($method eq 'http' || $method eq 'ftp') {
+ { method => $method, url => $ENV{URLPREFIX} };
+ } elsif ($method =~ /(.*)-iso$/) {
+ my $dir_method = $1;
+ my $rel_path = readlink('/tmp/image') =~ m!loop/*(/.*)! ? $1 : '';
+
+ my $rel_iso = $ENV{ISOPATH} =~ m!media/*(/.*)! ? $1 : '';
+ my ($dir_url, $iso) = (dirname($rel_iso), basename($rel_iso));
+
+ my $dir_medium = stage2_mounted_medium($dir_method, $dir_url eq '/' ? '' : $dir_url);
+ my $phys_m = iso_phys_media($dir_medium, $iso, '');
+ $phys_m->{real_mntpoint} = '/tmp/loop';
+ $phys_m->{real_device} = cat_("/proc/mounts") =~ m!(/dev/\S+)\s+/tmp/loop\s! && $1;
+ $phys_m->{isMounted} = 1;
+ $phys_m->{rel_path} = $rel_path;
+ $phys_m;
+ } else {
+ my $rel_path = readlink('/tmp/image') =~ m!media/*(/.*)! ? $1 : '';
+ stage2_mounted_medium($method, $rel_path);
+ }
+}
+
+#- return true if the medium is available
+#- ($o_rel_file is only used for removable media)
+sub change_phys_medium {
+ my ($phys_m, $o_rel_file, $o_packages) = @_;
+
+ undef $o_rel_file if $phys_m->{unknown_CD}; #- don't take into account the wanted file
+
+ log::l("change_phys_medium " . phys_medium_to_string($phys_m) .
+ ($o_rel_file ? " for file $o_rel_file" : ''));
+
+ !$phys_m->{isMounted} && $phys_m->{mntpoint} or return 1; #- nothing to do in such case.
+
+ #- if a cdrom was mounted and we want another one, do not try to mount cdrom just after umounting it
+ my $force_change = $phys_m->{method} eq 'cdrom' && $mounted_media{cdrom};
+
+ if (my $current = $mounted_media{$phys_m->{method}}) {
+ setup_postinstall_rpms($::o, $o_packages, $current) if $o_packages && $phys_m->{method} eq 'cdrom' && $::o->isa('interactive');
+ umount_phys_medium($current) or return;
+ delete $mounted_media{$phys_m->{method}};
+ }
+ mount_phys_medium($phys_m, $o_rel_file, $force_change) or return;
+ phys_medium_is_mounted($phys_m);
+ 1;
+}
+
+sub phys_medium_is_mounted {
+ my ($phys_m) = @_;
+ if (member($phys_m->{method}, 'cdrom', 'iso')) {
+ #- we can't have more than one cdrom mounted at once
+ #- we limit the number of iso files mounted at once
+ $mounted_media{$phys_m->{method}} = $phys_m;
+ }
+}
+
+sub associate_phys_media {
+ my ($all_hds, $main_phys_medium, $hdlists) = @_;
+
+ my ($main_name, @other_names) = uniq(map { $_->{name} } @$hdlists);
+
+ my @other_phys_media =
+ $main_phys_medium->{method} eq 'iso' ?
+ get_phys_media_iso($all_hds, $main_phys_medium, \@other_names) :
+ $main_phys_medium->{method} eq 'cdrom' ?
+ (map { get_phys_media_cdrom($main_phys_medium, $_) } @other_names) :
+ ();
+
+ if (@other_phys_media) {
+ $main_phys_medium->{name} = $main_name;
+
+ my @phys_media = ($main_phys_medium, @other_phys_media);
+
+ foreach my $medium (@$hdlists) {
+ if (my $phys_m = find { $_->{name} eq $medium->{name} } @phys_media) {
+ $medium->{phys_medium} = $phys_m;
+ } else {
+ $medium->{selected} = 0;
+ log::l("deselecting missing medium $medium->{rpmsdir}");
+ }
+ }
+ } else {
+ foreach my $medium (@$hdlists) {
+ $medium->{phys_medium} = $main_phys_medium;
+ }
+ }
+}
+
+sub get_phys_media_cdrom {
+ my ($main_phys_m, $name) = @_;
+
+ #- exactly the same as $main_phys_m, but for {name}, {isMounted} and {real_mntpoint}
+ +{ %$main_phys_m, name => $name, isMounted => 0, real_mntpoint => undef };
+}
+
+sub iso_phys_media {
+ my ($dir_medium, $iso, $rel_path) = @_;
+
+ my $mntpoint = "/mnt/$iso";
+ $mntpoint =~ s/\.iso$//; #- make the mount point a little nicer
+
+ my $rel_file = $dir_medium->{rel_path} . "/$iso";
+
+ +{
+ url => $dir_medium->{url} . "/$iso", #- only used for printing
+ method => 'iso',
+ fs_type => 'iso9660', options => 'noauto,loop',
+ loopback_device => $dir_medium, loopback_file => $rel_file,
+ device => ($dir_medium->{real_mntpoint} || $::prefix . $dir_medium->{mntpoint}) . $rel_file,
+ mntpoint => $mntpoint, rel_path => $rel_path,
+ };
+}
+sub get_phys_media_iso {
+ my ($all_hds, $main_phys_m, $names) = @_;
+
+ my @ISOs = grep { member($_->{app_id}, @$names) } look_for_ISO_images($main_phys_m->{device});
+
+ map {
+ my $m = iso_phys_media($main_phys_m->{loopback_device}, $_->{file}, $main_phys_m->{rel_path});
+ $m->{name} = $_->{app_id};
+ push @{$all_hds->{loopbacks}}, $m;
+ $m;
+ } @ISOs;
+}
+sub look_for_ISO_images {
+ my ($main_iso) = @_;
+
+ my $iso_dir = dirname($main_iso);
+
+ my @media = map {
+ if (sysopen(my $F, "$iso_dir/$_", 0)) {
+ my ($vol_id, $app_id) = c::get_iso_volume_ids(fileno $F);
+ #- the ISO volume names must end in -Disc\d+ if they belong (!) to a set
+ #- otherwise use the full volume name as CD set identifier
+ my $cd_set = $vol_id =~ /^(.*)-disc\d+$/i ? $1 : $vol_id;
+
+ log::l("found ISO: file=$_ cd_set=$cd_set app_id=$app_id");
+ { cd_set => $cd_set, app_id => $app_id, file => $_ };
+ } else {
+ ();
+ }
+ } grep { /\.iso$/ } all($iso_dir);
+
+ my $main = find { basename($main_iso) eq $_->{file} } @media or return;
+
+ grep { $_->{cd_set} eq $main->{cd_set} } @media;
+}
+
+
+sub getFile_media_info {
+ my ($packages, $f) = @_;
+ getFile_(first_medium($packages)->{phys_medium}, $f);
+}
+
+sub open_file_and_size {
+ my ($f) = @_;
+ my $size = -s $f;
+ my $fh = common::open_file($f) or return;
+ $size, $fh;
+}
+sub getFile_ {
+ my ($phys_m, $f) = @_;
+ log::l("getFile $f on " . phys_medium_to_string($phys_m) . "");
+
+ my ($_size, $fh) = get_file_and_size($phys_m, $f) or return;
+ $fh;
+}
+sub get_file_and_size {
+ my ($phys_m, $f) = @_;
+
+ if ($f =~ m|^http://|) {
+ require install::http;
+ install::http::get_file_and_size($f);
+ } elsif ($phys_m->{method} eq "ftp") {
+ require install::ftp;
+ install::ftp::get_file_and_size($f, $phys_m->{url});
+ } elsif ($phys_m->{method} eq "http") {
+ require install::http;
+ install::http::get_file_and_size("$phys_m->{url}/$f");
+ } elsif ($f =~ m!^/!) {
+ open_file_and_size($f);
+ } elsif ($postinstall_rpms && -e "$postinstall_rpms/$f") {
+ open_file_and_size("$postinstall_rpms/$f");
+ } else {
+ my $f2 = path($phys_m, $f);
+
+ if (! -f $f2) {
+ change_phys_medium($phys_m, $f);
+ }
+ open_file_and_size($f2);
+ }
+}
+
+sub getAndSaveFile_ {
+ my ($phys_m, $file, $local) = @_;
+ my $fh = getFile_($phys_m, $file) or return;
+ getAndSaveFile_raw($fh, $local);
+}
+sub getAndSaveFile_progress {
+ my ($in_wait, $msg, $phys_m, $file, $local) = @_;
+ my ($size, $fh) = get_file_and_size($phys_m, $file) or return;
+ if ($size) {
+ getAndSaveFile_progress_raw($in_wait, $msg, $size, $fh, $local);
+ } else {
+ getAndSaveFile_raw($fh, $local);
+ }
+}
+sub getAndSaveFile_raw {
+ my ($fh, $local) = @_;
+
+ local $/ = \ (16 * 1024);
+ unlink $local;
+ open(my $F, ">$local") or log::l("getAndSaveFile(opening $local): $!"), return;
+ local $_;
+ while (<$fh>) { syswrite($F, $_) or unlink($local), die("getAndSaveFile($local): $!") }
+ 1;
+}
+sub getAndSaveFile_progress_raw {
+ my ($in_wait, $msg, $size, $fh, $local) = @_;
+
+ unlink $local;
+ open(my $out, ">$local") or log::l("getAndSaveFile(opening $local): $!"), return;
+ print_with_progress($in_wait, $msg, $size, $fh, $out) or unlink($local), die("getAndSaveFile($local): $!");
+}
+sub print_with_progress {
+ my ($in_wait, $msg, $size, $in, $out) = @_;
+
+ my ($_wait, $wait_message) = $in_wait->wait_message_with_progress_bar(N("Please wait"));
+ $wait_message->($msg);
+
+ my $current = 0;
+
+ require Time::HiRes;
+ my $time = Time::HiRes::time();
+
+ local $/ = \ (64 * 1024);
+ while (my $s = <$in>) {
+ syswrite($out, $s) or return;
+
+ $current += length($s);
+ if (Time::HiRes::time() > $time + 0.1) {
+ $wait_message->('', $current, $size);
+ $time = Time::HiRes::time();
+ }
+ }
+ 1;
+}
+
+
+sub urpmidir() {
+ my $v = "$::prefix/var/lib/urpmi";
+ -l $v && !-e $v and unlink $v and mkdir $v, 0755; #- dangling symlink
+ -w $v ? $v : '/tmp';
+}
+
+sub hdlist_on_disk {
+ my ($m) = @_;
+
+ urpmidir() . "/hdlist.$m->{fakemedium}.cz";
+}
+
+sub allow_copy_rpms_on_disk {
+ my ($medium, $hdlists) = @_;
+
+ $medium->{device} && $medium->{method} ne 'iso' or return;
+
+ #- check available size for copying rpms from infos in media.cfg file
+ my $totalsize = sum(map { $_->{size} } @$hdlists) || -1; #- don't check size, total medium size unknown
+
+ if ($totalsize >= 0) {
+ my $availvar = install::any::getAvailableSpace_mounted("$::prefix/var");
+ $availvar /= 1024 * 1024; #- Mo
+ log::l("totalsize=$totalsize, avail on $::prefix/var=$availvar");
+ $totalsize < $availvar * 0.6;
+ } else {
+ #- we hope it will fit...
+ 1;
+ }
+}
+
+sub parse_media_cfg {
+ my ($cfg) = @_;
+
+ require MDV::Distribconf;
+ my $d = MDV::Distribconf->new('', undef);
+ $d->parse_mediacfg($cfg);
+
+ my $distribconf = { map { $_ => $d->getvalue(undef, $_) } 'suppl', 'askmedia' };
+ my @hdlists = map {
+ my ($size) = $d->getvalue($_, 'size') =~ /(\d+)MB?/i;
+ {
+ rpmsdir => $_,
+ hdlist => $d->getvalue($_, 'hdlist'),
+ name => $d->getvalue($_, 'name'),
+ size => $size,
+ selected => !$d->getvalue($_, 'noauto'),
+ update => $d->getvalue($_, 'updates_for') ? 1 : undef,
+ };
+ } $d->listmedia;
+
+ $distribconf, \@hdlists;
+}
+
+sub parse_hdlists {
+ my ($cfg) = @_;
+
+ my (%main_options, @hdlists);
+ foreach (cat_($cfg)) {
+ chomp;
+ s/\s*#.*$//;
+ /^\s*$/ and next;
+ #- we'll ask afterwards for supplementary CDs, if the hdlists file contains
+ #- a line that begins with "suppl"
+ if (/^suppl/) { $main_options{suppl} = 1; next }
+ #- if the hdlists contains a line "askmedia", deletion of media found
+ #- in this hdlist is allowed
+ if (/^askmedia/) { $main_options{askmedia} = 1; next }
+ my ($noauto, $hdlist, $rpmsdir, $name, $size) = m!^\s*(noauto:)?(hdlist\S*\.cz)\s+[^/]*/(\S+)\s*([^(]*)(?:\((.+)\))?$!
+ or die qq(invalid hdlist description "$_" in hdlists file);
+ $name =~ s/\s+$//;
+ $size =~ s/MB?$//i;
+ push @hdlists, { hdlist => $hdlist, rpmsdir => $rpmsdir, name => $name, selected => !$noauto, size => $size };
+ }
+ (\%main_options, \@hdlists);
+}
+
+sub get_media {
+ my ($o, $media, $packages) = @_;
+
+ my ($suppl_CDs, $copy_rpms_on_disk);
+ foreach (@$media) {
+ if ($_->{type} eq 'media_cfg') {
+ my $phys_m = url2mounted_phys_medium($o, $_->{url}, 'media_info');
+ ($suppl_CDs, $copy_rpms_on_disk) = get_media_cfg($o, $phys_m, $packages, $_->{selected_names}, $_->{force_rpmsrate});
+ } elsif ($_->{type} eq 'media') {
+ my $phys_m = url2mounted_phys_medium($o, $_->{url});
+ get_standalone_medium($o, $phys_m, $packages, { name => $_->{id} =~ /media=(.*)/ && $1 });
+ } elsif ($_->{type} eq 'media_cfg_isos') {
+ my ($dir_url, $iso, $rel_path) = $_->{url} =~ m!(.*)/(.*\.iso):(/.*)!;
+ my $dir_medium = url2mounted_phys_medium($o, $dir_url);
+ $dir_medium->{options} =~ s/\bnoauto\b,?//;
+ my $phys_m = iso_phys_media($dir_medium, $iso, $rel_path);
+ push @{$o->{all_hds}{loopbacks}}, $phys_m;
+ ($suppl_CDs, $copy_rpms_on_disk) = get_media_cfg($o, $phys_m, $packages, $_->{selected_names}, $_->{force_rpmsrate});
+ } else {
+ log::l("unknown media type $_->{type}, skipping");
+ }
+ }
+ log::l("suppl_CDs=$suppl_CDs copy_rpms_on_disk=$copy_rpms_on_disk");
+ $suppl_CDs, $copy_rpms_on_disk;
+}
+
+sub remove_from_fstab {
+ my ($all_hds, $phys_m) = @_;
+
+ @{$all_hds->{nfss}} = grep { $_ != $phys_m } @{$all_hds->{nfss}} if $phys_m->{method} eq 'nfs';
+}
+
+sub find_and_add_to_fstab {
+ my ($all_hds, $phys_m, $b_force_mount) = @_;
+
+ if (my $existant = find { $_->{device} eq $phys_m->{device} } fs::get::really_all_fstab($all_hds)) {
+ add2hash($existant, $phys_m);
+ $phys_m = $existant;
+ } else {
+ push @{$all_hds->{nfss}}, $phys_m if $phys_m->{method} eq 'nfs';
+ push @{$all_hds->{loopbacks}}, $phys_m if isLoopback($phys_m);
+ }
+
+ if (!$phys_m->{mntpoint}) {
+ my @suggestions = $phys_m->{method} eq 'nfs' ? do {
+ my ($server) = $phys_m->{device} =~ /(.*?):/;
+ $phys_m->{options} = ($b_force_mount ? '' : 'noauto,') . 'ro,nosuid,soft,rsize=8192,wsize=8192';
+ '/mnt/nfs', "/mnt/nfs_$server";
+ } : $phys_m->{method} eq 'cdrom' ?
+ ('/media/cdrom', "/media/$phys_m->{device}") :
+ ('/mnt/hd', "/mnt/$phys_m->{device}");
+
+ my $last = $suggestions[-1];
+ push @suggestions, map { "$last$_" } 2 .. 30;
+ $phys_m->{mntpoint} = find { !fs::get::has_mntpoint($_, $all_hds) } @suggestions or internal_error("no free dir available");
+ }
+ $phys_m;
+}
+
+sub url2mounted_phys_medium {
+ my ($o, $url, $o_rel_file, $o_name) = @_;
+
+ my $phys_m = url2phys_medium($o, $url);
+ $phys_m->{name} = $o_name if $o_name; #- useful for CDs which prompts a name in change_phys_medium
+ change_phys_medium($phys_m, $o_rel_file) or return;
+ $phys_m;
+}
+
+sub url2phys_medium {
+ my ($o, $url) = @_;
+ my ($method, $path) = $url =~ m!([^:]*)://(.*)! or internal_error("bad url $url");
+ if ($method eq 'drakx') {
+ my $m = { %{$o->{stage2_phys_medium}}, is_stage2_phys_medium => 1 };
+ if ($m->{loopback_device}) {
+ $m->{loopback_device} = find_and_add_to_fstab($o->{all_hds}, $m->{loopback_device}, 'force_mount');
+ }
+ $m->{url} .= "/$path";
+ $m->{rel_path} .= "/$path" if $m->{device};
+ $m = find_and_add_to_fstab($o->{all_hds}, $m) if $m->{device};
+ phys_medium_is_mounted($m);
+ $m;
+ } elsif ($method eq 'cdrom') {
+ my $cdrom = first(detect_devices::cdroms());
+ my $m = {
+ url => $url, method => $method, fs_type => 'iso9660', device => $cdrom->{device},
+ rel_path => "/$path",
+ };
+ my $m_ = find_and_add_to_fstab($o->{all_hds}, $m);
+ if ($m_->{name}) {
+ #- we need a new phys medium, different from current CD
+ $m_ = get_phys_media_cdrom($m_, '');
+ #- we also need to enforce what we want, especially rel_path
+ put_in_hash($m_, $m);
+ }
+ $m_;
+ } elsif ($method eq 'nfs') {
+ my ($server, $nfs_dir) = $path =~ m!(.*?)(/.*)!;
+
+ my $m = {
+ url => $url, method => $method,
+ fs_type => 'nfs', device => "$server:$nfs_dir", faked_device => 1,
+ };
+ find_and_add_to_fstab($o->{all_hds}, $m);
+ } else {
+ { url => $url, method => $method };
+ }
+}
+
+sub get_media_cfg {
+ my ($o, $phys_medium, $packages, $selected_names, $force_rpmsrate) = @_;
+
+ my ($distribconf, $hdlists);
+ if (getAndSaveFile_($phys_medium, 'media_info/media.cfg', '/tmp/media.cfg')) {
+ ($distribconf, $hdlists) = parse_media_cfg('/tmp/media.cfg');
+ } else {
+ getAndSaveFile_($phys_medium, 'media_info/hdlists', '/tmp/hdlists')
+ or die "media.cfg not found";
+ ($distribconf, $hdlists) = parse_hdlists('/tmp/hdlists');
+ }
+
+ if (defined $selected_names) {
+ my @names = split ',', $selected_names;
+ foreach my $h (@$hdlists) {
+ $h->{selected} = member($h->{name}, @names);
+ }
+ }
+
+ my $suppl_CDs = $distribconf->{suppl} || $o->{supplmedia} || 0;
+ my $deselectionAllowed = $distribconf->{askmedia} || $o->{askmedia} || 0;
+
+ associate_phys_media($o->{all_hds}, $phys_medium, $hdlists);
+
+ if ($deselectionAllowed && !@{$packages->{mediums}}) {
+ my $allow = allow_copy_rpms_on_disk($phys_medium, $hdlists);
+ $o->ask_deselect_media__copy_on_disk($hdlists, $allow && \$o->{copy_rpms_on_disk}) if $allow || @$hdlists > 1;
+ }
+
+ foreach my $h (@$hdlists) {
+ get_medium($o, $phys_medium, $packages, $h);
+ }
+
+ log::l("get_media_cfg read " . int(@{$packages->{depslist}}) . " headers");
+
+
+ #- copy latest compssUsers.pl and rpmsrate somewhere locally
+ if ($force_rpmsrate || ! -e '/tmp/rpmsrate') {
+ getAndSaveFile_($phys_medium, "media_info/compssUsers.pl", "/tmp/compssUsers.pl");
+ getAndSaveFile_($phys_medium, "media_info/rpmsrate", "/tmp/rpmsrate");
+ }
+
+
+ $suppl_CDs, $o->{copy_rpms_on_disk};
+}
+
+sub get_standalone_medium {
+ my ($in, $phys_m, $packages, $m) = @_;
+
+ add2hash($m, { phys_medium => $phys_m, selected => 1, hdlist => 'hdlist.cz' });
+ get_medium($in, $phys_m, $packages, $m);
+}
+
+sub get_medium {
+ my ($in_wait, $phys_m, $packages, $m) = @_;
+
+ $m->{selected} or log::l("ignoring packages in $m->{hdlist}"), return;
+
+ my $medium_id = int @{$packages->{mediums}};
+ $m->{fakemedium} = $m->{name} || $phys_m->{method};
+ $m->{fakemedium} =~ s!/!_!g; #- remove "/" from name
+ if (find { $m->{fakemedium} eq $_->{fakemedium} } allMediums($packages)) {
+ $m->{fakemedium} .= " (" . ($m->{rpmsdir} || $medium_id) . ")";
+ $m->{fakemedium} =~ s!/!_!g; #- remove "/" from rpmsdir
+ }
+
+ log::l("trying to read $m->{hdlist} for medium '$m->{fakemedium}'");
+
+ #- copy hdlist file directly to urpmi directory, this will be used
+ #- for getting header of package during installation or after by urpmi.
+ my $hdlist = hdlist_on_disk($m);
+ {
+ getAndSaveFile_progress($in_wait, N("Downloading file %s...", $m->{hdlist}),
+ $phys_m, "media_info/$m->{hdlist}", $hdlist) or die "no $m->{hdlist} found";
+
+ $m->{hdlist_size} = -s $hdlist; #- keep track of size for post-check.
+ }
+
+ my $synthesis = urpmidir() . "/synthesis.hdlist.$m->{fakemedium}.cz";
+ {
+ #- copy existing synthesis file too.
+ getAndSaveFile_progress($in_wait, N("Downloading file %s...", "synthesis.$m->{hdlist}"),
+ $phys_m, "media_info/synthesis.$m->{hdlist}", $synthesis);
+ $m->{synthesis_hdlist_size} = -s $synthesis; #- keep track of size for post-check.
+ }
+
+ #- get all keys corresponding in the right pubkey file,
+ #- they will be added in rpmdb later if not found.
+ if (!$m->{pubkey}) {
+ if (my $pubkey = getFile_($phys_m, "media_info/pubkey" . ($m->{hdlist} =~ /hdlist(\S*)\.cz/ && $1))) {
+ $m->{pubkey} = [ $packages->parse_armored_file($pubkey) ];
+ }
+ }
+ $m->{pubkey} ||= [];
+
+ #- for standalone medium not using media.cfg
+ $phys_m->{name} ||= $m->{name};
+
+ #- integrate medium in media list, only here to avoid download error (update) to be propagated.
+ push @{$packages->{mediums}}, $m;
+
+ #- parse synthesis (if available) of directly hdlist (with packing).
+ {
+ my $nb_suppl_pkg_skipped = 0;
+ my $callback = sub {
+ my (undef, $p) = @_;
+ my $uniq_pkg_seen = $packages->{uniq_pkg_seen} ||= {};
+ if ($uniq_pkg_seen->{$p->fullname}++) {
+ log::l("skipping " . scalar $p->fullname);
+ ++$nb_suppl_pkg_skipped;
+ return 0;
+ } else {
+ return 1;
+ }
+ };
+ my $error;
+ if (-s $synthesis) {
+ ($m->{start}, $m->{end}) = $packages->parse_synthesis($synthesis, callback => $callback)
+ or $error = "bad synthesis $synthesis for $m->{fakemedium}";
+ } elsif (-s $hdlist) {
+ ($m->{start}, $m->{end}) = $packages->parse_hdlist($hdlist, callback => $callback)
+ or $error = "bad hdlist $hdlist for $m->{fakemedium}";
+ } else {
+ $error = "fatal: no hdlist nor synthesis to read for $m->{fakemedium}";
+ }
+
+ if ($error) {
+ pop @{$packages->{mediums}};
+ unlink $hdlist, $synthesis;
+ die $error;
+ } else {
+ log::l("medium " . phys_medium_to_string($phys_m) . ", read " . ($m->{end} - $m->{start} + 1) . " packages in $m->{hdlist}, $nb_suppl_pkg_skipped skipped");
+ }
+ }
+}
+
+
+
+#-######################################################################################
+#- Post installation RPMS from cdrom only, functions
+#-######################################################################################
+sub setup_postinstall_rpms {
+ my ($in, $packages, $current_phys_m) = @_;
+
+ $postinstall_rpms and return;
+ $postinstall_rpms = "$::prefix/usr/postinstall-rpm";
+
+ log::l("postinstall rpms directory set to $postinstall_rpms");
+ clean_postinstall_rpms(); #- make sure in case of previous upgrade problem.
+
+ my @toCopy;
+ {
+ #- compute closure of package that may be copied, use INSTALL category
+ #- in rpmsrate.
+ @toCopy = install::pkgs::select_by_package_names($packages, $packages->{needToCopy} || []);
+ log::l("needToCopy the following packages: " . join(' ', map { $_->name } @toCopy));
+ $packages->disable_selected($packages->{rpmdb}, $packages->{state}, @toCopy);
+ delete $packages->{rpmdb};
+ }
+
+ my $medium = find { $_->{phys_medium} == $current_phys_m } allMediums($packages);
+
+ my @l = map { path($current_phys_m, "$medium->{rpmsdir}/" . $_->filename) } @toCopy;
+
+ my ($l, $missing) = partition { -r $_ } @l;
+
+ @$missing and log::l("rpms not available: " . join(' ', @$missing));
+
+ #- copy the package files in the postinstall RPMS directory.
+ #- cp_af does not handle correctly a missing file.
+ mkdir_p("$postinstall_rpms/$medium->{rpmsdir}");
+ eval {
+ my ($_w, $wait_message) = $in->wait_message_with_progress_bar;
+ $wait_message->(N("Copying some packages on disks for future use"));
+ install::any::cp_with_progress($wait_message, 0, int(@$l), @$l, "$postinstall_rpms/$medium->{rpmsdir}");
+ };
+ !$@ or log::l("copying to postinstall dir failed: $@");
+
+ log::l("copying Auto Install Floppy");
+ getAndSaveInstallFloppies($::o, $postinstall_rpms, 'auto_install');
+}
+
+sub getAndSaveInstallFloppies {
+ my ($o, $dest_dir, $name) = @_;
+
+ if ($postinstall_rpms && -d $postinstall_rpms && -r "$postinstall_rpms/auto_install.img") {
+ log::l("getAndSaveInstallFloppies: using file saved as $postinstall_rpms/auto_install.img");
+ cp_af("$postinstall_rpms/auto_install.img", "$dest_dir/$name.img");
+ "$dest_dir/$name.img";
+ } else {
+ my $image = 'hd_grub';
+
+ getAndSaveFile_($o->{stage2_phys_medium}, "install/images/$image.img", "$dest_dir/$name.img")
+ or log::l("failed to write Install Floppy ($image.img) to $dest_dir/$name.img"), return;
+
+ "$dest_dir/$name.img";
+ }
+}
+
+sub clean_postinstall_rpms() {
+ if ($postinstall_rpms && -d $postinstall_rpms) {
+ rm_rf($postinstall_rpms);
+ }
+}
+
+sub copy_rpms_on_disk {
+ my ($o) = @_;
+
+ my $dest_dir = '/var/ftp/pub/Mandrivalinux/media';
+ #- don't be afraid, cleanup old RPMs if upgrade
+ eval { rm_rf("$::prefix$dest_dir") if $o->{isUpgrade} };
+ mkdir_p("$::prefix$dest_dir");
+
+ my $dest_phys_medium = do {
+ my ($part, $rel_path) = fs::get::file2part($o->{fstab}, $dest_dir);
+ $part->{method} = 'disk';
+ $part->{rel_path} = $rel_path;
+ $part->{url} = "disk://$part->{device}$rel_path";
+ $part;
+ };
+
+ my ($wait, $wait_message) = $o->wait_message_with_progress_bar;
+
+ foreach my $m (allMediums($o->{packages})) {
+ #- don't copy rpms of supplementary media
+ next if $m->{phys_medium}{is_suppl};
+ $wait_message->(N("Copying in progress") . "\n($m->{name})"); #- XXX to be translated
+ my $rpmsdir = path($m->{phys_medium}, $m->{rpmsdir});
+ if (! -d $rpmsdir) {
+ if (!change_phys_medium($m->{phys_medium}, $m->{rpmsdir})) {
+ #- keep in mind the asked medium has been refused.
+ #- this means it is no longer selected.
+ #- (but do not unselect supplementary CDs.)
+ $m->{selected} = 0;
+ }
+ }
+
+ my $total = install::any::count_files($rpmsdir);
+ log::l("copying $rpmsdir to $::prefix$dest_dir ($total files)");
+ eval {
+ install::any::cp_with_progress($wait_message, 0, $total, $rpmsdir, "$::prefix$dest_dir");
+ };
+ log::l($@) if $@;
+
+ $m->{phys_medium} = $dest_phys_medium;
+ }
+ undef $wait;
+
+ our $copied_rpms_on_disk = 1;
+}
+
+sub install_urpmi__generate_names {
+ my ($packages, $medium) = @_;
+
+ #- build a names file
+ output("$::prefix/var/lib/urpmi/names.$medium->{fakemedium}",
+ map { $packages->{depslist}[$_]->name . "\n" } $medium->{start} .. $medium->{end});
+}
+sub install_urpmi__generate_synthesis {
+ my ($packages, $medium) = @_;
+
+ my $synthesis = "/var/lib/urpmi/synthesis.hdlist.$medium->{fakemedium}.cz";
+
+ #- build synthesis file if there are still not existing (ie not copied from mirror).
+ -s "$::prefix$synthesis" <= 32 or return;
+
+ log::l("building $synthesis");
+
+ eval { $packages->build_synthesis(
+ start => $medium->{start},
+ end => $medium->{end},
+ synthesis => "$::prefix$synthesis",
+ ) };
+ $@ and log::l("build_synthesis failed: $@");
+}
+
+#- copied from urpm/media.pm
+sub parse_url_with_login {
+ my ($url) = @_;
+ $url =~ m!([^:]*)://([^/:\@]*)(:([^/:\@]*))?\@([^/]*)(.*)! &&
+ { proto => $1, login => $2, password => $4, machine => $5, dir => $6 };
+}
+
+sub install_urpmi {
+ my ($stage2_method, $packages) = @_;
+
+ my @mediums = @{$packages->{mediums}};
+
+ log::l("install_urpmi $stage2_method");
+ #- clean to avoid opening twice the rpm db.
+ delete $packages->{rpmdb};
+
+ #- import pubkey in rpmdb.
+ my $db = install::pkgs::open_rpm_db_rw();
+ $packages->parse_pubkeys(db => $db);
+ foreach my $medium (@mediums) {
+ $packages->import_needed_pubkeys($medium->{pubkey}, db => $db, callback => sub {
+ my (undef, undef, $_k, $id, $imported) = @_;
+ if ($id) {
+ log::l(($imported ? "imported" : "found") . " key=$id for medium $medium->{name}");
+ $medium->{key_ids}{$id} = undef;
+ }
+ });
+ }
+
+ my (@cfg, @netrc);
+ foreach my $medium (@mediums) {
+ if ($medium->{selected}) {
+ my ($dir, $removable_device, $static);
+
+ my $phys_m = $medium->{phys_medium};
+ if ($phys_m->{method} eq 'ftp' || $phys_m->{method} eq 'http') {
+ $dir = $phys_m->{url};
+ } else {
+ #- for cdrom, removable://... is best since it mounts *and* umounts cdrom
+ #- for iso files, removable://... doesn't work correctly
+ my $urpmi_method = $phys_m->{method} eq 'cdrom' ? 'removable' : 'file';
+ $dir = "$urpmi_method:/$phys_m->{mntpoint}$phys_m->{rel_path}";
+ if ($phys_m->{method} eq 'iso') {
+ $removable_device = $phys_m->{loopback_device}{mntpoint} . $phys_m->{loopback_file};
+ } elsif ($phys_m->{method} eq 'cdrom') {
+ $removable_device = devices::make($phys_m->{device});
+ $static = 1;
+ }
+ }
+
+ $dir = MDK::Common::File::concat_symlink($dir, $medium->{rpmsdir});
+
+ install_urpmi__generate_names($packages, $medium);
+ install_urpmi__generate_synthesis($packages, $medium);
+
+ my ($qname, $qdir) = ($medium->{fakemedium}, $dir);
+
+ if (my $u = parse_url_with_login($qdir)) {
+ $qdir = sprintf('%s://%s@%s%s', $u->{proto}, $u->{login}, $u->{machine}, $u->{dir});
+ push @netrc, sprintf("machine %s login %s password %s\n", $u->{machine}, $u->{login}, $u->{password});
+ }
+
+ s/(\s)/\\$1/g foreach $qname, $qdir;
+
+ #- output new urpmi.cfg format here.
+ push @cfg, map { "$_\n" }
+ "$qname $qdir {",
+ " media_info_dir: media_info",
+ if_(keys(%{$medium->{key_ids}}),
+ " key-ids: " . join(',', keys %{$medium->{key_ids}})),
+ if_($removable_device,
+ " removable: $removable_device"),
+ if_($medium->{update},
+ " update"),
+ if_($static,
+ " static"),
+ "}";
+ } else {
+ #- remove deselected media by removing copied hdlist and synthesis files
+ log::l("removing media $medium->{fakemedium}");
+ unlink "$::prefix/var/lib/urpmi/hdlist.$medium->{fakemedium}.cz";
+ unlink "$::prefix/var/lib/urpmi/synthesis.hdlist.$medium->{fakemedium}.cz";
+ }
+ }
+ eval { output("$::prefix/etc/urpmi/netrc", @netrc) };
+ #- touch a MD5SUM file and write config file
+ eval { output("$::prefix/var/lib/urpmi/MD5SUM", '') };
+ eval { output "$::prefix/etc/urpmi/urpmi.cfg", @cfg };
+}
+
+
+sub openCdromTray {
+ my ($cdrom) = @_;
+ log::l("ejecting cdrom $cdrom");
+ eval { ioctl(detect_devices::tryOpen($cdrom), c::CDROMEJECT(), 1) };
+ $@ and log::l("ejection failed: $@");
+}
+
+sub log_sizes() {
+ my @df = MDK::Common::System::df($::prefix);
+ log::l(sprintf "Installed: %dMB(df), %dMB(rpm)",
+ ($df[0] - $df[1]) / 1024,
+ sum(run_program::rooted_get_stdout($::prefix, 'rpm', '-qa', '--queryformat', '%{size}\n')) / 1024 / 1024) if -x "$::prefix/bin/rpm";
+}
+
+1;
diff --git a/perl-install/pixmaps/banner-adduser.png b/perl-install/install/pixmaps/banner-adduser.png
index d15926da4..d15926da4 100644
--- a/perl-install/pixmaps/banner-adduser.png
+++ b/perl-install/install/pixmaps/banner-adduser.png
Binary files differ
diff --git a/perl-install/pixmaps/banner-bootL.png b/perl-install/install/pixmaps/banner-bootL.png
index eaba539a5..eaba539a5 100644
--- a/perl-install/pixmaps/banner-bootL.png
+++ b/perl-install/install/pixmaps/banner-bootL.png
Binary files differ
diff --git a/perl-install/pixmaps/banner-exit.png b/perl-install/install/pixmaps/banner-exit.png
index 7eecbaf58..7eecbaf58 100644
--- a/perl-install/pixmaps/banner-exit.png
+++ b/perl-install/install/pixmaps/banner-exit.png
Binary files differ
diff --git a/perl-install/pixmaps/banner-generic-ad.png b/perl-install/install/pixmaps/banner-generic-ad.png
index 0ae2482fd..0ae2482fd 100644
--- a/perl-install/pixmaps/banner-generic-ad.png
+++ b/perl-install/install/pixmaps/banner-generic-ad.png
Binary files differ
diff --git a/perl-install/pixmaps/banner-languages.png b/perl-install/install/pixmaps/banner-languages.png
index ac3a212df..ac3a212df 100644
--- a/perl-install/pixmaps/banner-languages.png
+++ b/perl-install/install/pixmaps/banner-languages.png
Binary files differ
diff --git a/perl-install/pixmaps/banner-license.png b/perl-install/install/pixmaps/banner-license.png
index 2c910fa26..2c910fa26 100644
--- a/perl-install/pixmaps/banner-license.png
+++ b/perl-install/install/pixmaps/banner-license.png
Binary files differ
diff --git a/perl-install/pixmaps/banner-part.png b/perl-install/install/pixmaps/banner-part.png
index 7b1c8ee3a..7b1c8ee3a 100644
--- a/perl-install/pixmaps/banner-part.png
+++ b/perl-install/install/pixmaps/banner-part.png
Binary files differ
diff --git a/perl-install/pixmaps/banner-pw.png b/perl-install/install/pixmaps/banner-pw.png
index 9e3f1e2ea..9e3f1e2ea 100644
--- a/perl-install/pixmaps/banner-pw.png
+++ b/perl-install/install/pixmaps/banner-pw.png
Binary files differ
diff --git a/perl-install/pixmaps/banner-security.png b/perl-install/install/pixmaps/banner-security.png
index f1580bfc7..f1580bfc7 100644
--- a/perl-install/pixmaps/banner-security.png
+++ b/perl-install/install/pixmaps/banner-security.png
Binary files differ
diff --git a/perl-install/pixmaps/banner-summary.png b/perl-install/install/pixmaps/banner-summary.png
index 9c0d5c84e..9c0d5c84e 100644
--- a/perl-install/pixmaps/banner-summary.png
+++ b/perl-install/install/pixmaps/banner-summary.png
Binary files differ
diff --git a/perl-install/pixmaps/banner-sys.png b/perl-install/install/pixmaps/banner-sys.png
index de75c1954..de75c1954 100644
--- a/perl-install/pixmaps/banner-sys.png
+++ b/perl-install/install/pixmaps/banner-sys.png
Binary files differ
diff --git a/perl-install/pixmaps/banner-update.png b/perl-install/install/pixmaps/banner-update.png
index 95943c774..95943c774 100644
--- a/perl-install/pixmaps/banner-update.png
+++ b/perl-install/install/pixmaps/banner-update.png
Binary files differ
diff --git a/perl-install/install/pixmaps/logo-mandriva.png b/perl-install/install/pixmaps/logo-mandriva.png
new file mode 100644
index 000000000..0d3938526
--- /dev/null
+++ b/perl-install/install/pixmaps/logo-mandriva.png
Binary files differ
diff --git a/perl-install/share/reload.png b/perl-install/install/pixmaps/reload.png
index 26d503283..26d503283 100644
--- a/perl-install/share/reload.png
+++ b/perl-install/install/pixmaps/reload.png
Binary files differ
diff --git a/perl-install/pixmaps/selected.png b/perl-install/install/pixmaps/selected.png
index 49b225b93..49b225b93 100644
--- a/perl-install/pixmaps/selected.png
+++ b/perl-install/install/pixmaps/selected.png
Binary files differ
diff --git a/perl-install/share/semiselected.png b/perl-install/install/pixmaps/semiselected.png
index c026805bf..c026805bf 100644
--- a/perl-install/share/semiselected.png
+++ b/perl-install/install/pixmaps/semiselected.png
Binary files differ
diff --git a/perl-install/share/unselected.png b/perl-install/install/pixmaps/unselected.png
index 221acbceb..221acbceb 100644
--- a/perl-install/share/unselected.png
+++ b/perl-install/install/pixmaps/unselected.png
Binary files differ
diff --git a/perl-install/install/pkgs.pm b/perl-install/install/pkgs.pm
new file mode 100644
index 000000000..f0a82862d
--- /dev/null
+++ b/perl-install/install/pkgs.pm
@@ -0,0 +1,1162 @@
+package install::pkgs; # $Id$
+
+use strict;
+
+use URPM;
+use URPM::Resolve;
+use URPM::Signature;
+use common;
+use install::any;
+use install::media qw(getFile_ getAndSaveFile_ packageMedium);
+use run_program;
+use detect_devices;
+use log;
+use fs;
+use fs::loopback;
+use c;
+
+our %preferred = map { $_ => undef }
+ qw(libmesagl1 lib64mesagl1 grub nail
+ perl-base openjade ctags glibc glibc-devel curl sane-backends postfix
+ gcc gcc-cpp gcc-c++ proftpd vim-minimal db1 libxpm4 zlib1
+ libkdebase4 libkdepim2-ktnef-devel libkdepim2-korganizer libkdebase4-konsole libkdebase4-kmenuedit
+ libncurses5 harddrake cups free-kde-config);
+
+#- lower bound on the left ( aka 90 means [90-100[ )
+our %compssListDesc = (
+ 5 => N_("must have"),
+ 4 => N_("important"),
+ 3 => N_("very nice"),
+ 2 => N_("nice"),
+ 1 => N_("maybe"),
+);
+
+#- constant for small transaction.
+our $limitMinTrans = 13;
+
+
+sub cleanHeaders() {
+ rm_rf("$::prefix/tmp/headers") if -e "$::prefix/tmp/headers";
+}
+
+#- get all headers from an hdlist file.
+sub extractHeaders {
+ my ($pkgs, $media) = @_;
+ cleanHeaders();
+
+ foreach my $medium (@$media) {
+ $medium->{selected} or next;
+
+ my @l = grep { $_->id >= $medium->{start} && $_->id <= $medium->{end} } @$pkgs or next;
+ eval {
+ require packdrake;
+ my $packer = new packdrake(install::media::hdlist_on_disk($medium), quiet => 1);
+ $packer->extract_archive("$::prefix/tmp/headers", map { $_->header_filename } @l);
+ };
+ $@ and log::l("packdrake failed: $@");
+ }
+
+ foreach (@$pkgs) {
+ my $f = "$::prefix/tmp/headers/" . $_->header_filename;
+ $_->update_header($f) or log::l("unable to open header file $f"), next;
+ log::l("read header file $f");
+ }
+}
+
+#- TODO BEFORE TODO
+#- size and correction size functions for packages.
+my $B = 1.20873;
+my $C = 4.98663; #- does not take hdlist's into account as getAvailableSpace will do it.
+sub correctSize { $B * $_[0] + $C }
+sub invCorrectSize { ($_[0] - $C) / $B }
+
+sub selectedSize {
+ my ($packages) = @_;
+ my $size = 0;
+ my %skip;
+ #- take care of packages selected...
+ foreach (@{$packages->{depslist}}) {
+ if ($_->flag_selected) {
+ $size += $_->size;
+ #- if a package is obsoleted with the same name it should
+ #- have been selected, so a selected new package obsoletes
+ #- all the old package.
+ exists $skip{$_->name} and next; $skip{$_->name} = undef;
+ $size -= $packages->{sizes}{$_->name};
+ }
+ }
+ #- but remove size of package being obsoleted or removed.
+ foreach (keys %{$packages->{state}{rejected}}) {
+ my ($name) = /(.*)-[^\-]*-[^\-]*$/ or next;
+ exists $skip{$name} and next; $skip{$name} = undef;
+ $size -= $packages->{sizes}{$name};
+ }
+ $size;
+}
+
+sub size2time {
+ my ($x, $max) = @_;
+ my $A = 7e-07;
+ my $limit = min($max * 3 / 4, 9e8);
+ if ($x < $limit) {
+ $A * $x;
+ } else {
+ $x -= $limit;
+ my $B = 6e-16;
+ my $C = 15e-07;
+ $B * $x ** 2 + $C * $x + $A * $limit;
+ }
+}
+
+
+sub packagesProviding {
+ my ($packages, $name) = @_;
+ map { $packages->{depslist}[$_] } keys %{$packages->{provides}{$name} || {}};
+}
+
+#- search package with given name and compatible with current architecture.
+#- take the best one found (most up-to-date).
+sub packageByName {
+ my ($packages, $name) = @_;
+
+ my @l = grep { $_->is_arch_compat && $_->name eq $name } packagesProviding($packages, $name);
+
+ my $best;
+ foreach (@l) {
+ if ($best && $best != $_) {
+ $_->compare_pkg($best) > 0 and $best = $_;
+ } else {
+ $best = $_;
+ }
+ }
+ $best or log::l("unknown package `$name'");
+ $best;
+}
+
+sub bestKernelPackage {
+ my ($packages) = @_;
+
+ my @preferred_exts =
+ $::o->{match_all_hardware} ? (arch() =~ /x86_64/ ? '' : '-legacy') :
+ $::build_globetrotter ? '' :
+ detect_devices::is_xbox() ? '-xbox' :
+ detect_devices::is_i586() ? '-legacy' :
+ detect_devices::dmi_detect_memory() > 3.8 * 1024 ? '-entreprise' :
+ '';
+
+ my @kernels = grep { $_ } map { packageByName($packages, "kernel$_-latest") } @preferred_exts, '';
+
+ log::l("bestKernelPackage (" . join(':', @preferred_exts) . "): " . join(' ', map { $_->name } @kernels) . (@kernels > 1 ? ' (choosing the first)' : ''));
+
+ $kernels[0];
+}
+
+sub packagesToInstall {
+ my ($packages) = @_;
+ my @packages;
+ foreach (@{$packages->{mediums}}) {
+ $_->{selected} or next;
+ log::l("examining packagesToInstall of medium $_->{name}");
+ push @packages, grep { $_->flag_selected } install::media::packagesOfMedium($packages, $_);
+ }
+ log::l("found " . scalar(@packages) . " packages to install");
+ @packages;
+}
+
+sub packageRequest {
+ my ($packages, $pkg) = @_;
+
+ #- check if the same or better version is installed,
+ #- do not select in such case.
+ $pkg && ($pkg->flag_upgrade || !$pkg->flag_installed) or return;
+
+ #- check for medium selection, if the medium has not been
+ #- selected, the package cannot be selected.
+ packageMedium($packages, $pkg)->{selected} or return;
+
+ +{ $pkg->id => 1 };
+}
+
+sub packageCallbackChoices {
+ my ($urpm, $_db, $state, $choices) = @_;
+
+ if (my @l = packageCallbackChoices_($urpm, $choices)) {
+ @l;
+ } else {
+ log::l("packageCallbackChoices: default choice from ", join(",", map { $_->name } @$choices), " in ", join(",", map { $urpm->{depslist}[$_]->name } keys %{$state->{selected}}));
+ $choices->[0];
+ }
+}
+
+sub packageCallbackChoices_ {
+ my ($urpm, $choices) = @_;
+ if (my $prefer = find { $_->arch ne 'src' && exists $preferred{$_->name} } @$choices) {
+ log::l("packageCallbackChoices: prefered choice " . $prefer->name . " from ", join(",", map { $_->name } @$choices));
+ $prefer;
+ } elsif ($choices->[0]->name =~ /^kernel-(.*source-|.*-devel-)/) {
+ my @l = grep {
+ if ($_->name =~ /^kernel-.*source-stripped-(.*)/) {
+ my $version = quotemeta($1);
+ find {
+ $_->name =~ /-$version$/ && ($_->flag_installed || $_->flag_selected);
+ } packagesProviding($urpm, 'kernel');
+ } elsif ($_->name =~ /(kernel-.*)-devel-(.*)/) {
+ my $kernel = "$1-$2";
+ my $p = packageByName($urpm, $kernel);
+ $p && ($p->flag_installed || $p->flag_selected);
+ } elsif ($_->name =~ /^kernel-.*source-/) {
+ #- hopefully we don't have a media with kernel-source but not kernel-source-stripped nor kernel-.*-devel
+ 0;
+ } else {
+ log::l("unknown kernel-source package " . $_->fullname);
+ 0;
+ }
+ } @$choices;
+
+ log::l("packageCallbackChoices: kernel source chosen ", join(",", map { $_->name } @l), " in ", join(",", map { $_->name } @$choices));
+
+ @l;
+ } else {
+ grep {
+ #- or even if a package requires a specific locales which
+ #- is already selected.
+ find {
+ /locales-/ && do {
+ my $p = packageByName($urpm, $_);
+ $p && $p->flag_available;
+ };
+ } $_->requires_nosense;
+ } @$choices;
+ }
+}
+
+sub skip_packages {
+ my ($packages, $skipped_packages) = @_;
+ $packages->compute_flags($skipped_packages, skip => 1);
+}
+
+sub select_by_package_names {
+ my ($packages, $names, $b_base) = @_;
+
+ my @l;
+ foreach (@$names) {
+ my $p = packageByName($packages, $_) or next;
+ push @l, selectPackage($packages, $p, $b_base);
+ }
+ @l;
+}
+
+sub select_by_package_names_or_die {
+ my ($packages, $names, $b_base) = @_;
+
+ foreach (@$names) {
+ my $p = packageByName($packages, $_) or die "package $_ not found";
+ !$p->flag_installed && !$p->flag_selected or next;
+ selectPackage($packages, $p, $b_base) or die "package $_ can't be selected";
+ }
+}
+
+sub selectPackage {
+ my ($packages, $pkg, $b_base) = @_;
+
+ my $state = $packages->{state} ||= {};
+
+ $packages->{rpmdb} ||= rpmDbOpen();
+
+ my @l = $packages->resolve_requested($packages->{rpmdb}, $state, packageRequest($packages, $pkg) || {},
+ callback_choices => \&packageCallbackChoices);
+
+ if (!member($pkg, @l) && $state->{rejected}) {
+ log::l("ERROR: selecting " . $pkg->name . " failed");
+ require Data::Dumper;
+ log::l(Data::Dumper::Dumper($state->{rejected}));
+ }
+
+ if ($b_base) {
+ $_->set_flag_base foreach @l;
+ }
+ @l;
+}
+
+sub unselectPackage {
+ my ($packages, $pkg) = @_;
+
+ #- base packages are not unselectable,
+ #- and already unselected package are no more unselectable.
+ $pkg->flag_base and return;
+ $pkg->flag_selected or return;
+
+ my $state = $packages->{state} ||= {};
+ log::l("removing selection on package " . $pkg->fullname);
+ my @l = $packages->disable_selected($packages->{rpmdb}, $state, $pkg);
+ log::l(" removed selection on package " . $pkg->fullname . "gives " . join(',', map { scalar $_->fullname } @l));
+}
+
+sub unselectAllPackages {
+ my ($packages) = @_;
+ my %keep_selected;
+ log::l("unselecting all packages...");
+ foreach (@{$packages->{depslist}}) {
+ if ($_->flag_base || $_->flag_installed && $_->flag_selected) {
+ #- keep track of packages that should be kept selected.
+ $keep_selected{$_->id} = $_;
+ } else {
+ #- deselect all packages except base or packages that need to be upgraded.
+ $_->set_flag_required(0);
+ $_->set_flag_requested(0);
+ }
+ }
+ #- clean state, in order to start with a brand new set...
+ $packages->{state} = {};
+ $packages->resolve_requested($packages->{rpmdb}, $packages->{state}, \%keep_selected,
+ callback_choices => \&packageCallbackChoices);
+}
+
+sub empty_packages() {
+ my $packages = new URPM;
+
+ #- add additional fields used by DrakX.
+ @$packages{qw(count mediums)} = (0, []);
+
+ $packages;
+}
+
+sub read_rpmsrate {
+ my ($packages, $rpmsrate_flags_chosen, $file, $match_all_hardware) = @_;
+ require pkgs;
+ pkgs::read_rpmsrate($packages, $rpmsrate_flags_chosen, $file, $match_all_hardware);
+}
+
+sub readCompssUsers {
+ my ($file) = @_;
+
+ my $f = common::open_file($file) or log::l("can not find $file: $!"), return;
+ my ($compssUsers, $gtk_display_compssUsers) = eval join('', <$f>);
+ if ($@) {
+ log::l("ERROR: bad $file: $@");
+ } else {
+ log::l("compssUsers.pl got: ", join(', ', map { qq("$_->{path}|$_->{label}") } @$compssUsers));
+ }
+ ($compssUsers, $gtk_display_compssUsers);
+}
+
+sub saveCompssUsers {
+ my ($packages, $compssUsers) = @_;
+ my $flat;
+ foreach (@$compssUsers) {
+ my %fl = map { ("CAT_$_" => 1) } @{$_->{flags}};
+ $flat .= "$_->{label} [icon=xxx] [path=$_->{path}]\n";
+ foreach my $p (@{$packages->{depslist}}) {
+ my @flags = $p->rflags;
+ if ($p->rate && any { any { !/^!/ && $fl{$_} } split('\|\|') } @flags) {
+ $flat .= sprintf "\t%d %s\n", $p->rate, $p->name;
+ }
+ }
+ }
+ my $urpmidir = install::media::urpmidir();
+ output "$urpmidir/compssUsers.flat", $flat;
+}
+
+sub setSelectedFromCompssList {
+ my ($packages, $rpmsrate_flags_chosen, $min_level, $max_size) = @_;
+ $rpmsrate_flags_chosen->{TRUE} = 1; #- ensure TRUE is set
+ my $nb = selectedSize($packages);
+ foreach my $p (sort { $b->rate <=> $a->rate } @{$packages->{depslist}}) {
+ my @flags = $p->rflags;
+ next if
+ !$p->rate || $p->rate < $min_level ||
+ any { !any { /^!(.*)/ ? !$rpmsrate_flags_chosen->{$1} : $rpmsrate_flags_chosen->{$_} } split('\|\|') } @flags;
+
+ #- determine the packages that will be selected when
+ #- selecting $p. the packages are not selected.
+ my $state = $packages->{state} ||= {};
+
+ my @l = $packages->resolve_requested($packages->{rpmdb}, $state, packageRequest($packages, $p) || {},
+ keep_unrequested_dependencies => 1,
+ callback_choices => \&packageCallbackChoices);
+
+ #- this enable an incremental total size.
+ my $old_nb = $nb;
+ foreach (@l) {
+ $nb += $_->size;
+ }
+ if ($max_size && $nb > $max_size) {
+ $nb = $old_nb;
+ $min_level = $p->rate;
+ $packages->disable_selected($packages->{rpmdb}, $state, @l);
+ last;
+ }
+ }
+ my @flags = map_each { if_($::b, $::a) } %$rpmsrate_flags_chosen;
+ log::l("setSelectedFromCompssList: reached size ", formatXiB($nb), ", up to indice $min_level (less than ", formatXiB($max_size), ") for flags ", join(' ', sort @flags));
+ log::l("setSelectedFromCompssList: ", join(" ", sort map { $_->name } grep { $_->flag_selected } @{$packages->{depslist}}));
+ $min_level;
+}
+
+#- useful to know the size it would take for a given min_level/max_size
+#- just save the selected packages, call setSelectedFromCompssList, and restore the selected packages
+sub saveSelected {
+ my ($packages) = @_;
+ my $state = delete $packages->{state};
+ my @l = @{$packages->{depslist}};
+ my @flags = map { ($_->flag_requested && 1) + ($_->flag_required && 2) + ($_->flag_upgrade && 4) } @l;
+ [ $packages, $state, \@l, \@flags ];
+}
+sub restoreSelected {
+ my ($packages, $state, $l, $flags) = @{$_[0]};
+ $packages->{state} = $state;
+ mapn { my ($pkg, $flag) = @_;
+ $pkg->set_flag_requested($flag & 1);
+ $pkg->set_flag_required($flag & 2);
+ $pkg->set_flag_upgrade($flag & 4);
+ } $l, $flags;
+}
+
+sub computeGroupSize {
+ my ($packages, $min_level) = @_;
+
+ sub inside {
+ my ($l1, $l2) = @_;
+ my $i = 0;
+ return if @$l1 > @$l2;
+ foreach (@$l1) {
+ my $c;
+ while ($c = $l2->[$i++] cmp $_) {
+ return if $c == 1 || $i > @$l2;
+ }
+ }
+ 1;
+ }
+
+ sub or_ify {
+ my ($first, @other) = @_;
+ my @l = split('\|\|', $first);
+ foreach (@other) {
+ @l = map {
+ my $n = $_;
+ map { "$_&&$n" } @l;
+ } split('\|\|');
+ }
+ @l;
+ }
+ my %or_ify_cache;
+ my $or_ify_cached = sub {
+ $or_ify_cache{$_[0]} ||= join("\t", or_ify(split("\t", $_[0])));
+ };
+ sub or_clean {
+ my ($flags) = @_;
+ my @l = split("\t", $flags);
+ @l = map { [ sort split('&&') ] } @l;
+ my @r;
+ B: while (@l) {
+ my $e = shift @l;
+ foreach (@r, @l) {
+ inside($_, $e) and next B;
+ }
+ push @r, $e;
+ }
+ join("\t", map { join('&&', @$_) } @r);
+ }
+ my (%group, %memo, $slowpart_counter);
+
+ log::l("install::pkgs::computeGroupSize");
+ my $time = time();
+
+ my %pkgs_with_same_rflags;
+ foreach (@{$packages->{depslist}}) {
+ next if !$_->rate || $_->rate < $min_level || $_->flag_available;
+ my $flags = join("\t", $_->rflags);
+ next if $flags eq 'FALSE';
+ push @{$pkgs_with_same_rflags{$flags}}, $_;
+ }
+
+ foreach my $raw_flags (keys %pkgs_with_same_rflags) {
+ my $flags = $or_ify_cached->($raw_flags);
+ my @pkgs = @{$pkgs_with_same_rflags{$raw_flags}};
+
+ #- determine the packages that will be selected when selecting $p.
+ #- make a fast selection (but potentially erroneous).
+ #- installed and upgrade flags must have been computed (see compute_installed_flags).
+ my %newSelection;
+
+ my @l2 = map { $_->id } @pkgs;
+ my $id;
+
+ while (defined($id = shift @l2)) {
+ exists $newSelection{$id} and next;
+ $newSelection{$id} = undef;
+
+ my $pkg = $packages->{depslist}[$id];
+ foreach ($pkg->requires_nosense) {
+ my @choices = keys %{$packages->{provides}{$_} || {}};
+ if (@choices <= 1) {
+ push @l2, @choices;
+ } elsif (! find { exists $newSelection{$_} } @choices) {
+ my ($candidate_id, $prefer_id);
+ foreach (@choices) {
+ ++$slowpart_counter;
+ my $ppkg = $packages->{depslist}[$_] or next;
+ $ppkg->flag_available and $prefer_id = $candidate_id = undef, last;
+ exists $preferred{$ppkg->name} and $prefer_id = $_;
+ $ppkg->name =~ /kernel-\d/ and $prefer_id ||= $_;
+ foreach my $l ($ppkg->requires_nosense) {
+ /locales-/ or next;
+ my $pppkg = packageByName($packages, $l) or next;
+ $pppkg->flag_available and $prefer_id ||= $_;
+ }
+ $candidate_id = $_;
+ }
+ if (defined $prefer_id || defined $candidate_id) {
+ push @l2, defined $prefer_id ? $prefer_id : $candidate_id;
+ }
+ }
+ }
+ }
+
+ foreach (keys %newSelection) {
+ my $p = $packages->{depslist}[$_] or next;
+ next if $p->flag_selected; #- always installed (accounted in system_size)
+ my $s = $group{$p->name} || $or_ify_cached->(join("\t", $p->rflags));
+ my $m = "$flags\t$s";
+ $group{$p->name} = ($memo{$m} ||= or_clean($m));
+ }
+ }
+ my (%sizes, %pkgs);
+ while (my ($k, $v) = each %group) {
+ my $pkg = packageByName($packages, $k) or next;
+ push @{$pkgs{$v}}, $k;
+ $sizes{$v} += $pkg->size - $packages->{sizes}{$pkg->name};
+ }
+ log::l("install::pkgs::computeGroupSize took: ", formatTimeRaw(time() - $time));
+ log::l(sprintf "%s %dMB %s", $_, $sizes{$_} / sqr(1024), join(',', @{$pkgs{$_}})) foreach keys %sizes;
+ \%sizes, \%pkgs;
+}
+
+
+sub openInstallLog() {
+ my $f = "$::prefix/root/drakx/install.log";
+ open(my $LOG, ">> $f") ? log::l("opened $f") : log::l("Failed to open $f. No install log will be kept."); #-#
+ CORE::select((CORE::select($LOG), $| = 1)[0]);
+ URPM::rpmErrorWriteTo(fileno $LOG);
+ $LOG;
+}
+
+sub rpmDbOpen {
+ my ($b_rebuild_needed) = @_;
+
+ clean_rpmdb_shared_regions();
+
+ if ($b_rebuild_needed) {
+ if (my $pid = fork()) {
+ waitpid $pid, 0;
+ $? & 0xff00 and die "rebuilding of rpm database failed";
+ } else {
+ log::l("rebuilding rpm database");
+ my $rebuilddb_dir = "$::prefix/var/lib/rpmrebuilddb.$$";
+ -d $rebuilddb_dir and log::l("removing stale directory $rebuilddb_dir"), rm_rf($rebuilddb_dir);
+
+ URPM::DB::rebuild($::prefix) or log::l("rebuilding of rpm database failed: " . URPM::rpmErrorString()), c::_exit(2);
+
+ c::_exit(0);
+ }
+ }
+
+ my $db;
+ if ($db = URPM::DB::open($::prefix)) {
+ log::l("opened rpm database for examining existing packages");
+ } else {
+ log::l("unable to open rpm database, using empty rpm db emulation");
+ $db = new URPM;
+ }
+
+ $db;
+}
+
+sub clean_rpmdb_shared_regions() {
+ unlink glob("$::prefix/var/lib/rpm/__db.*");
+}
+
+sub open_rpm_db_rw() {
+ clean_rpmdb_shared_regions();
+ my $db = URPM::DB::open($::prefix, 1);
+ $db and log::l("opened rpmdb for writing in $::prefix");
+ $db;
+}
+
+sub cleanOldRpmDb() {
+ my $failed;
+
+ foreach (qw(Basenames Conflictname Group Name Packages Providename Requirename Triggername)) {
+ -s "$::prefix/var/lib/rpm/$_" or $failed = 'failed';
+ }
+ #- rebuilding has been successfull, so remove old rpm database if any.
+ #- once we have checked the rpm4 db file are present and not null, in case
+ #- of doubt, avoid removing them...
+ unless ($failed) {
+ log::l("rebuilding rpm database completed successfully");
+ foreach (qw(conflictsindex.rpm fileindex.rpm groupindex.rpm nameindex.rpm packages.rpm
+ providesindex.rpm requiredby.rpm triggerindex.rpm)) {
+ -e "$::prefix/var/lib/rpm/$_" or next;
+ log::l("removing old rpm file $_");
+ rm_rf("$::prefix/var/lib/rpm/$_");
+ }
+ }
+}
+
+sub selectPackagesAlreadyInstalled {
+ my ($packages) = @_;
+
+ log::l("computing installed flags and size of installed packages");
+
+ $packages->compute_installed_flags($packages->{rpmdb});
+
+ my %sizes;
+ $packages->{rpmdb}->traverse(sub {
+ my ($p) = @_;
+ $sizes{$p->name} += $p->size;
+ });
+ $packages->{sizes} = \%sizes;
+}
+
+sub selectPackagesToUpgrade {
+ my ($packages, $o_medium) = @_;
+
+ log::l("selecting packages to upgrade");
+
+ my $state = $packages->{state} ||= {};
+ $state->{selected} = {};
+
+ my %selection;
+ $packages->request_packages_to_upgrade($packages->{rpmdb}, $state, \%selection,
+ requested => undef,
+ $o_medium ? (start => $o_medium->{start}, end => $o_medium->{end}) : (),
+ );
+ log::l("selected pkgs to upgrade: " . join(' ', map { $packages->{depslist}[$_]->name } keys %selection));
+
+ log::l("resolving dependencies...");
+ $packages->resolve_requested($packages->{rpmdb}, $state, \%selection,
+ callback_choices => \&packageCallbackChoices);
+ log::l("...done");
+ log::l("finally selected pkgs: ", join(" ", sort map { $_->name } grep { $_->flag_selected } @{$packages->{depslist}}));
+ if ($state->{rejected}) {
+ require Data::Dumper;
+ log::l(Data::Dumper::Dumper($state));
+ }
+}
+
+sub installTransactionClosure {
+ my ($packages, $id2pkg, $isUpgrade) = @_;
+
+ foreach (grep { !$_->{selected} } @{$packages->{mediums}}) {
+ foreach ($_->{start} .. $_->{end}) {
+ delete $id2pkg->{$_};
+ }
+ }
+
+ my @l = ikeys %$id2pkg;
+ my $medium;
+
+ #- search first usable medium (media are sorted).
+ foreach (@{$packages->{mediums}}) {
+ if ($l[0] <= $_->{end}) {
+ #- we have a candidate medium, it could be the right one containing
+ #- the first package of @l...
+ $l[0] >= $_->{start} and $medium = $_, last;
+ #- ... but it could be necessary to find the first
+ #- medium containing package of @l.
+ foreach my $id (@l) {
+ $id >= $_->{start} && $id <= $_->{end} and $medium = $_, last;
+ }
+ $medium and last;
+ }
+ }
+ $medium or return (); #- no more medium usable -> end of installation by returning empty list.
+
+ #- it is sure at least one package will be installed according to medium chosen.
+ {
+ my $pkg = $packages->{depslist}[$l[0]];
+ my $rpm = install::media::rel_rpm_file($medium, $pkg->filename);
+ if ($install::media::postinstall_rpms && -e "$install::media::postinstall_rpms/$rpm") {
+ #- very special case where the rpm has been copied on disk
+ } elsif (!install::media::change_phys_medium($medium->{phys_medium}, $rpm, $packages)) {
+ #- keep in mind the asked medium has been refused.
+ #- this means it is no longer selected.
+ #- (but do not unselect supplementary CDs.)
+ $medium->{selected} = 0;
+ }
+ }
+
+ my %closure;
+ foreach my $id (@l) {
+ my @l2 = $id;
+
+ if ($isUpgrade && $id < 20) {
+ #- HACK for upgrading to 2006.0: for the 20 first main packages, upgrade one by one
+ #- why? well:
+ #- * librpm is fucked up when ordering pkgs, pkg "setup" is removed before being installed.
+ #- the result is /etc/group.rpmsave and no /etc/group
+ #- * pkg locales requires basesystem, this is stupid, the result is a huge first transaction
+ #- and it doesn't even help /usr/bin/locale_install.sh since it's not a requires(post)
+ $closure{$id} = undef;
+ last;
+ }
+
+ while (defined($id = shift @l2)) {
+ exists $closure{$id} and next;
+ $closure{$id} = undef;
+
+ my $pkg = $packages->{depslist}[$id];
+ foreach ($pkg->requires_nosense) {
+ if (my $dep_id = find { $id2pkg->{$_} } keys %{$packages->{provides}{$_} || {}}) {
+ push @l2, $dep_id;
+ }
+ }
+ }
+
+ keys %closure >= $limitMinTrans and last;
+ }
+
+ map { delete $id2pkg->{$_} } grep { $id2pkg->{$_} } ikeys %closure;
+}
+
+sub install {
+ my ($isUpgrade, $toInstall, $packages, $callback) = @_;
+ my %packages;
+
+ delete $packages->{rpmdb}; #- make sure rpmdb is closed before.
+ #- avoid potential problems with rpm db personality change
+ clean_rpmdb_shared_regions();
+
+ return if !@$toInstall;
+
+ #- for root loopback'ed /boot
+ my $loop_boot = fs::loopback::prepare_boot();
+
+ #- first stage to extract some important information
+ #- about the selected packages. This is used to select
+ #- one or many transactions.
+ my ($total, $nb);
+ foreach my $pkg (@$toInstall) {
+ $packages{$pkg->id} = $pkg;
+ $nb++;
+ $total += to_int($pkg->size); #- do not correct for upgrade!
+ }
+
+ log::l("install::pkgs::install $::prefix");
+ log::l("install::pkgs::install the following: ", join(" ", map { $_->name } values %packages));
+
+ URPM::read_config_files();
+ URPM::add_macro(join(' ', '__dbi_cdb', URPM::expand('%__dbi_cdb'), 'nofsync'));
+ my $LOG = openInstallLog();
+
+ #- 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,...).
+ $callback->($packages, user => undef, install => $nb, $total);
+
+ do {
+ my @transToInstall = installTransactionClosure($packages, \%packages, $isUpgrade);
+ $nb = values %packages;
+
+ #- added to exit typically after last media unselected.
+ if ($nb == 0 && scalar(@transToInstall) == 0) {
+ cleanHeaders();
+
+ fs::loopback::save_boot($loop_boot);
+ return;
+ }
+
+ #- extract headers for parent as they are used by callback.
+ extractHeaders(\@transToInstall, $packages->{mediums});
+
+ my ($retry, $retry_count);
+ while (@transToInstall) {
+ my $retry_pkg = $retry && $transToInstall[0];
+
+ if ($retry) {
+ log::l("retrying installing package " . $retry_pkg->fullname . " alone in a transaction ($retry_count)");
+ }
+ _install_raw($packages, [ $retry ? $retry_pkg : @transToInstall ],
+ $isUpgrade, $callback, $LOG, $retry_pkg);
+
+ @transToInstall = grep {
+ if ($_->flag_installed || !packageMedium($packages, $_)->{selected}) {
+ $_->free_header;
+ 0;
+ } else {
+ log::l("failed to install " . $_->fullname . " (will retry)") if !$retry;
+ 1;
+ }
+ } @transToInstall;
+
+ if (@transToInstall) {
+ if (!$retry || $retry_pkg != $transToInstall[0]) {
+ #- go to next
+ $retry_count = 1;
+ } elsif ($retry_pkg == $transToInstall[0] && $retry_count < 3) {
+ $retry_count++;
+ } else {
+ log::l("failed to install " . $retry_pkg->fullname);
+
+ my $medium = packageMedium($packages, $retry_pkg);
+ my $name = $retry_pkg->fullname;
+ my $rc = cdie("error installing package list: $name $medium->{name}");
+ if ($rc eq 'retry') {
+ $retry_count = 1;
+ } else {
+ if ($rc eq 'disable_media') {
+ $medium->{selected} = 0;
+ }
+ $retry_pkg->set_flag_requested(0);
+ $retry_pkg->set_flag_required(0);
+
+ #- dropping it
+ $retry_pkg->free_header;
+ shift @transToInstall;
+ $retry_count = 1;
+ }
+ }
+ $retry = 1;
+ }
+ }
+ cleanHeaders();
+ } while $nb > 0 && !$install::pkgs::cancel_install;
+
+ log::l("closing install.log file");
+ close $LOG;
+
+ cleanHeaders();
+ clean_rpmdb_shared_regions(); #- workaround librpm which is buggy when using librpm rooted and the just installed rooted library
+
+ fs::loopback::save_boot($loop_boot);
+}
+
+sub _install_raw {
+ my ($packages, $transToInstall, $isUpgrade, $callback, $LOG, $noscripts) = @_;
+
+ my $close = sub {
+ my ($pkg) = @_;
+ #- update flag associated to package.
+ $pkg->set_flag_installed(1);
+ $pkg->set_flag_upgrade(0);
+ #- update obsoleted entry.
+ my $rejected = $packages->{state}{rejected};
+ foreach (keys %$rejected) {
+ if (delete $rejected->{$_}{closure}{$pkg->fullname}) {
+ %{$rejected->{$_}{closure}} or delete $rejected->{$_};
+ }
+ }
+ };
+
+ my $db = open_rpm_db_rw() or die "error opening RPM database: ", URPM::rpmErrorString();
+ my $trans = $db->create_transaction($::prefix);
+
+ log::l("opened rpm database for transaction of " . int(@$transToInstall) . " packages (isUpgrade=$isUpgrade)");
+ foreach (@$transToInstall) {
+ $trans->add($_, update => $isUpgrade ? 1 : 0)
+ or log::l("add failed for " . $_->fullname);
+ }
+
+ my @checks = $trans->check; @checks and log::l("check failed : " . join("\n ", @checks));
+ $trans->order or die "error ordering package list: " . URPM::rpmErrorString();
+ $trans->set_script_fd(fileno $LOG);
+
+ log::l("rpm transactions start");
+ my $fd; #- since we return the "fileno", perl does not know we're still using it, and so closes it, and :-(
+ my @probs = $trans->run($packages, force => 1, nosize => 1,
+ if_($noscripts, noscripts => 1),
+ callback_open => sub {
+ my ($packages, $_type, $id) = @_;
+ &$callback;
+ my $pkg = defined $id && $packages->{depslist}[$id];
+ my $medium = packageMedium($packages, $pkg);
+ my $f = $pkg && install::media::rel_rpm_file($medium, $pkg->filename);
+ print $LOG "$f\n";
+ $fd = getFile_($medium->{phys_medium}, $f);
+ $fd ? fileno $fd : -1;
+ }, callback_close => sub {
+ my ($packages, $_type, $id) = @_;
+ &$callback;
+ my $pkg = defined $id && $packages->{depslist}[$id] or return;
+ my $check_installed;
+ $db->traverse_tag('name', [ $pkg->name ], sub {
+ my ($p) = @_;
+ $check_installed ||= $pkg->compare_pkg($p) == 0;
+ });
+ $check_installed or log::l($pkg->name . " not installed, " . URPM::rpmErrorString());
+ $check_installed and $close->($pkg);
+ }, callback_inst => $callback,
+ );
+ log::l("transactions done, now trying to close still opened fd");
+
+ @probs and die "installation of rpms failed:\n ", join("\n ", @probs);
+}
+
+sub upgrade_by_removing_pkgs {
+ my ($packages, $callback, $extension, $upgrade_name) = @_;
+
+ my $upgrade_data;
+ if ($upgrade_name) {
+ my @l = glob("$ENV{SHARE_PATH}/upgrade/$upgrade_name*");
+ @l == 0 and log::l("upgrade_by_removing_pkgs: no special upgrade data");
+ @l > 1 and log::l("upgrade_by_removing_pkgs: many special upgrade data (" . join(' ', @l) . ")");
+ $upgrade_data = $l[0];
+ }
+
+ log::l("upgrade_by_removing_pkgs (extension=$extension, upgrade_data=$upgrade_data)");
+
+ #- put the release file in /root/drakx so that we continue an upgrade even if the file has gone
+ my $f = common::release_file($::prefix);
+ if (dirname($f) eq '/etc') {
+ output_p("$::prefix/root/drakx/" . basename($f) . '.upgrading', cat_("$::prefix$f"));
+ }
+ my $busy_var_tmp = "$::prefix/var/tmp/ensure-rpm-does-not-remove-this-dir";
+ touch($busy_var_tmp);
+
+ if ($upgrade_data) {
+ foreach (glob("$upgrade_data/pre.*")) {
+ my $f = '/tmp/' . basename($_);
+ cp_af($_, "$::prefix$f");
+ run_program::rooted($::prefix, $f);
+ unlink "$::prefix$f";
+ }
+ }
+
+ my @was_installed = remove_pkgs_to_upgrade($packages, $callback, $extension);
+
+ {
+ my @restore_files = qw(/etc/passwd /etc/group /etc/ld.so.conf);
+ foreach (@restore_files) {
+ rename "$::prefix$_.rpmsave", "$::prefix$_";
+ }
+ install::any::create_minimal_files();
+ unlink $busy_var_tmp;
+ }
+
+ my %map = map {
+ chomp;
+ my ($name, @new) = split;
+ $name => \@new;
+ } $upgrade_data ? cat_("$upgrade_data/map") : ();
+
+ log::l("upgrade_by_removing_pkgs: map $upgrade_data/map gave " . (int keys %map) . " rules");
+
+ my $log;
+ my @to_install = uniq(map {
+ $log .= " $_=>" . join('+', @{$map{$_}}) if $map{$_};
+ $map{$_} ? @{$map{$_}} : $_;
+ } @was_installed);
+ log::l("upgrade_by_removing_pkgs special maps:$log");
+ log::l("upgrade_by_removing_pkgs: wanted packages: ", join(' ', sort @to_install));
+
+ @to_install;
+}
+
+sub removed_pkgs_to_upgrade_file() { "$::prefix/root/drakx/removed_pkgs_to_upgrade" }
+
+sub remove_pkgs_to_upgrade {
+ my ($packages, $callback, $extension) = @_;
+
+ my @to_remove;
+ my @was_installed;
+ {
+ $packages->{rpmdb} ||= rpmDbOpen();
+ $packages->{rpmdb}->traverse(sub {
+ my ($pkg) = @_;
+ if ($pkg->release =~ /$extension$/) {
+ push @was_installed, $pkg->name;
+ push @to_remove, scalar $pkg->fullname;
+ }
+ });
+ }
+ if (-e removed_pkgs_to_upgrade_file()) {
+ log::l("removed_pkgs_to_upgrade: using saved installed packages list ", removed_pkgs_to_upgrade_file());
+ @was_installed = chomp_(cat_(removed_pkgs_to_upgrade_file()));
+ } else {
+ log::l("removed_pkgs_to_upgrade: saving (old) installed packages in ", removed_pkgs_to_upgrade_file());
+ output_p(removed_pkgs_to_upgrade_file(), map { "$_\n" } @was_installed);
+ }
+
+ delete $packages->{rpmdb}; #- make sure rpmdb is closed before.
+
+ remove(\@to_remove, $callback, noscripts => 1);
+
+ @was_installed;
+}
+
+sub remove_marked_ask_remove {
+ my ($packages, $callback) = @_;
+
+ my @to_remove = keys %{$packages->{state}{ask_remove}} or return;
+
+ delete $packages->{rpmdb}; #- make sure rpmdb is closed before.
+
+ #- we are not checking depends since it should come when
+ #- upgrading a system. although we may remove some functionalities ?
+
+ remove(\@to_remove, $callback, force => 1);
+
+ delete $packages->{state}{ask_remove}{$_} foreach @to_remove;
+}
+
+sub remove_raw {
+ my ($to_remove, $callback, %run_transaction_options) = @_;
+
+ log::l("removing: " . join(' ', @$to_remove));
+
+ URPM::read_config_files();
+ URPM::add_macro(URPM::expand('__dbi_cdb %__dbi_cdb nofsync'));
+
+ my $db = open_rpm_db_rw() or die "error opening RPM database: ", URPM::rpmErrorString();
+ my $trans = $db->create_transaction($::prefix);
+
+ #- stuff remove all packages that matches $p, not a problem since $p has name-version-release format.
+ $trans->remove($_) foreach @$to_remove;
+
+ $callback->($db, user => undef, remove => scalar @$to_remove);
+
+ $trans->run(undef, %run_transaction_options, callback_uninst => $callback);
+}
+sub remove {
+ my ($_to_remove, $_callback, %run_transaction_options) = @_;
+
+ my @pbs = &remove_raw;
+ if (@pbs && !$run_transaction_options{noscripts}) {
+ $run_transaction_options{noscripts} = 1;
+ @pbs = &remove_raw;
+ }
+ if (@pbs) {
+ die "removing of old rpms failed:\n ", join("\n ", @pbs);
+ }
+}
+
+sub selected_leaves {
+ my ($packages) = @_;
+ my $provides = $packages->{provides};
+
+ my @l = grep { $_->flag_requested || $_->flag_installed } @{$packages->{depslist}};
+
+ my %required_ids;
+ foreach my $pkg (@l) {
+ foreach my $req ($pkg->requires_nosense) {
+ my $h = $provides->{$req} or next;
+ my @provides = my ($provide) = keys %$h;
+ @provides == 1 or next;
+ if ($provide != (exists $required_ids{$pkg->id} ? $required_ids{$pkg->id} : $pkg->id)) {
+# log::l($packages->{depslist}[$provide]->name . " is not a leaf because required by " . $pkg->name . " (through require $req)");
+ #- $pkg requires $req, provided by $provide, so we can skip $provide
+ $required_ids{$provide} = $pkg->id;
+ }
+ }
+ }
+ [ map { $_->name } grep { ! exists $required_ids{$_->id} } @l ];
+}
+
+sub naughtyServers_list {
+ my ($quiet) = @_;
+
+ my @_old_81 = qw(
+freeswan
+);
+ my @_old_82 = qw(
+vnc-server
+postgresql-server
+);
+
+ my @_old_92 = qw(
+postfix ypbind bind ibod
+);
+
+ my @_removed_92 = qw(
+mcserv
+samba
+lpr
+);
+
+ my @_moved_to_contrib_92 = qw(
+boa
+LPRng
+wu-ftpd
+am-utils
+);
+
+ my @new_80 = qw(
+jabber
+am-utils
+boa
+cups
+drakxtools-http
+finger-server
+imap
+leafnode
+ntp
+openssh-server
+pidentd
+proftpd
+rwall
+squid
+webmin
+wu-ftpd
+);
+
+ my @new_81 = qw(
+ftp-server-krb5
+telnet-server-krb5
+ypserv
+);
+
+ my @new_82 = qw(
+LPRng
+inn
+netatalk
+nfs-utils
+rusers-server
+samba-swat
+tftp-server
+ucd-snmp
+);
+
+ my @new_92 = qw(
+clusternfs
+gkrellm-server
+mon
+net-snmp
+openldap-servers
+samba-server
+saned
+vsftpd
+);
+
+ my @new_2006 = qw(
+apache-conf
+bpalogin
+cfengine-cfservd
+freeradius
+mDNSResponder
+openslp
+pxe
+routed
+sendmail
+spamassassin-spamd
+);
+
+ my @not_warned = qw(
+lisa
+nfs-utils-clients
+portmap
+howl
+); # X server
+
+ (@new_80, @new_81, @new_82, @new_92, @new_2006, if_(!$quiet, @not_warned));
+}
+
+sub naughtyServers {
+ my ($packages) = @_;
+
+ grep {
+ my $p = packageByName($packages, $_);
+ $p && $p->flag_selected;
+ } naughtyServers_list('quiet');
+}
+
+1;
diff --git a/perl-install/install/share/aliases b/perl-install/install/share/aliases
new file mode 100644
index 000000000..9d8b0630b
--- /dev/null
+++ b/perl-install/install/share/aliases
@@ -0,0 +1,8 @@
+/bin/gunzip gzip
+/usr/bin/install2 ../lib/libDrakX/install/install2
+/usr/bin/commands ../lib/libDrakX/install/commands
+/usr/bin/runinstall2 install2
+/sbin/fsck.ext2 e2fsck
+/sbin/lsmod lsmod-25
+/sbin/rmmod rmmod-25
+/sbin/insmod insmod-25
diff --git a/perl-install/share/consolefonts/Cyr_a8x16 b/perl-install/install/share/consolefonts/Cyr_a8x16
index a09ac03d8..a09ac03d8 100644
--- a/perl-install/share/consolefonts/Cyr_a8x16
+++ b/perl-install/install/share/consolefonts/Cyr_a8x16
Binary files differ
diff --git a/perl-install/share/consolefonts/lat0-sun16 b/perl-install/install/share/consolefonts/lat0-sun16
index 19e3d432e..19e3d432e 100644
--- a/perl-install/share/consolefonts/lat0-sun16
+++ b/perl-install/install/share/consolefonts/lat0-sun16
Binary files differ
diff --git a/perl-install/share/consolefonts/lat2-sun16 b/perl-install/install/share/consolefonts/lat2-sun16
index 509e5def2..509e5def2 100644
--- a/perl-install/share/consolefonts/lat2-sun16
+++ b/perl-install/install/share/consolefonts/lat2-sun16
Binary files differ
diff --git a/perl-install/share/consolefonts/ruscii_8x16 b/perl-install/install/share/consolefonts/ruscii_8x16
index b0513a9db..b0513a9db 100644
--- a/perl-install/share/consolefonts/ruscii_8x16
+++ b/perl-install/install/share/consolefonts/ruscii_8x16
Binary files differ
diff --git a/perl-install/install/share/fonts.tar.bz2 b/perl-install/install/share/fonts.tar.bz2
new file mode 100644
index 000000000..df08d4baf
--- /dev/null
+++ b/perl-install/install/share/fonts.tar.bz2
Binary files differ
diff --git a/perl-install/install/share/generate-xlocales b/perl-install/install/share/generate-xlocales
new file mode 100755
index 000000000..1bf60d549
--- /dev/null
+++ b/perl-install/install/share/generate-xlocales
@@ -0,0 +1,67 @@
+#!/usr/bin/perl
+#
+# Copyright (C) 2006 Mandriva
+# Pablo Saraxtaga <pablo@mandriva.com>
+# Thierry Vignaud <tvignaud@mandriva.com>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+use strict;
+use lib qw(..); # for lang
+# perl_checker: use lib qw(/usr/lib/libDrakX/)
+use MDK::Common;
+use lang;
+
+my $prefix = $ARGV[0];
+
+my $dir = "$prefix/usr/share/X11/locale";
+mkdir_p($dir);
+
+output("$dir/locale.alias",
+qq(# automatically build list; only valid for install
+# since gtk+-2 is used, which uses unicode internally,
+# all locales to UTF-8 ones
+),
+ sort(uniq((map { "$_:\t\t\ten_US.UTF-8\n" } lang::list_langs()),
+ (map { "$_:\t\t\ten_US.UTF-8\n" } (@lang::locales)),
+ qq(zh_CN.gb2312:\t\t\ten_US.UTF-8
+zh_CN.GB2312:\t\t\ten_US.UTF-8
+zh_CN.Big5:\t\t\ten_US.UTF-8
+),
+ ),
+ ),
+ );
+
+output("$dir/locale.dir",
+ qq(# automatically build list ; only valid for install
+C/XLC_LOCALE: C
+en_US.UTF-8/XLC_LOCALE: UTF-8
+iso8859-1/XLC_LOCALE: ISO8859-1
+),
+ map { s/(.*_..)(\.[^@]*)*(\@.*)*$/${1}.UTF-8${3}/; "en_US.UTF-8/XLC_LOCALE: $_\n" } @lang::locales
+ );
+
+
+output("$dir/compose.dir",
+ qq(# list automatically build list ; only valid for install
+C/Compose: C
+en_US.UTF-8/Compose: UTF-8
+iso8859-1/Compose: ISO8859-1
+),
+ map {
+ s/(.*_..)(\.[^@]*)*(\@.*)*$/${1}.UTF-8${3}/;
+ "en_US.UTF-8/Compose: $_\n";
+ } @lang::locales
+ );
diff --git a/perl-install/install/share/keyboards.tar.bz2 b/perl-install/install/share/keyboards.tar.bz2
new file mode 100644
index 000000000..c9765dc60
--- /dev/null
+++ b/perl-install/install/share/keyboards.tar.bz2
Binary files differ
diff --git a/perl-install/share/keymaps.tar.bz2 b/perl-install/install/share/keymaps.tar.bz2
index c2fd4db57..c2fd4db57 100644
--- a/perl-install/share/keymaps.tar.bz2
+++ b/perl-install/install/share/keymaps.tar.bz2
Binary files differ
diff --git a/perl-install/share/keymaps_generate b/perl-install/install/share/keymaps_generate
index 0265502c9..0265502c9 100755
--- a/perl-install/share/keymaps_generate
+++ b/perl-install/install/share/keymaps_generate
diff --git a/perl-install/share/kmap2bkmap b/perl-install/install/share/kmap2bkmap
index 58505dda0..58505dda0 100755
--- a/perl-install/share/kmap2bkmap
+++ b/perl-install/install/share/kmap2bkmap
diff --git a/perl-install/share/list.xml b/perl-install/install/share/list.xml
index adbcf1c29..4d1b7950c 100644
--- a/perl-install/share/list.xml
+++ b/perl-install/install/share/list.xml
@@ -13,8 +13,11 @@
insmod-25 modinfo-25 rmmod-25
losetup
lvm2 mdadm
- mount
- vol_id
+ mount umount
+
+ <mode copy="dereference">
+ vol_id <!-- needed by libDrakX -->
+ </mode>
badblocks
mkswap
@@ -28,14 +31,14 @@
ntfsresize
dmraid
</if>
- <if ARCH="i.86">
+ <if ARCH="i.86|x86_64">
mkfs.jfs fsck.jfs
</if>
+ quotacheck
consolechars kbd_mode
Xorg xmodmap xset
fb2png
- packdrake parsehdlist
perl
monitor-edid monitor-get-edid-using-vbe monitor-parse-edid monitor-get-edid
@@ -44,9 +47,6 @@
</filter>
<if ARCH="i.86|x86_64|ia64">
- ifport
- </if>
- <if ARCH="i.86|x86_64|ia64">
dmidecode
</if>
<if ARCH="ia64">
@@ -63,27 +63,40 @@
</if>
</from>
-<from dir="/usr/X11R6/LIB/modules">
+<from dir="/usr/LIB/xorg/modules">
libpcidata.so
drivers/fbdev_drv.so
input/wacom_drv.so
input/mouse_drv.so
input/keyboard_drv.so
- fonts/libbitmap.so
linux/libfbdevhw.so
libfb.so
libshadow.so
</from>
-<from dir="/usr/X11R6/lib/X11/fonts">
+<from dir="/usr/share/fonts/">
<to flatten="on">
misc/cursor.pcf.gz
- TTF/Vera.ttf
- TTF/VeraBd.ttf
+ TTF/bengali/MuktiNarrow.ttf
+ TTF/dejavu/DejaVuSans.ttf
+ TTF/dejavu/DejaVuSans-Bold.ttf
+ TTF/dejavu/DejaVuSans-BoldOblique.ttf
+ TTF/devanagari/raghu.ttf
+ TTF/gurmukhi/lohit_pa.ttf
+ TTF/thai/norasi_n.ttf
+ </to>
+</from>
+
+<from dir="/usr/share/locale">
+ <to dir="/usr/share/locale_special">
+ <from expand="glob">
+ */LC_MESSAGES/drakx-net.mo
+ */LC_MESSAGES/drakx-kbd-mouse-x11.mo
+ </from>
</to>
</from>
-<from dir="/usr/X11R6/lib/X11/locale">
+<from dir="/usr/share/X11/locale">
C
en_US.UTF-8
iso8859-1
@@ -102,25 +115,38 @@
<from>
/etc/fonts/fonts.conf
/etc/protocols
- /etc/imrc
- /etc/im_palette.pal
- /etc/X11/xserver/SecurityPolicy
+ /usr/LIB/xserver/SecurityPolicy
/etc/pango/ARCH/pango.modules
- /usr/LIB/gtk-2.0/*/loaders/libpixbufloader-xpm.so
/usr/LIB/gtk-2.0/*/loaders/libpixbufloader-png.so
+ <!-- XPM loader is needed by Gtk2::Html2 on error -->
+ /usr/LIB/gtk-2.0/*/loaders/libpixbufloader-xpm.so
/usr/LIB/gtk-2.0/*/immodules/im-cedilla.so
- /usr/LIB/gtk-2.0/*/engines/libgalaxy.so
-
+ /usr/LIB/gtk-2.0/*/engines/libia_ora.so
+
+ /usr/lib/libDrakX/keyboard.pm
+ /usr/lib/libDrakX/mouse.pm
+ /usr/lib/libDrakX/network
+ /usr/lib/libDrakX/Xconfig
+ /usr/lib/libDrakX/auto/xf86misc
+ /usr/lib/libDrakX/xf86misc
+ /usr/share/libDrakX/pixmaps
+ /usr/share/doc/installer-help/
/usr/lib/rpm/rpmrc
/usr/lib/rpm/macros
/usr/lib/rpm/mandriva/rpmrc
/usr/lib/rpm/mandriva/macros
+ /usr/share/pci.ids
/usr/share/locale/UTF-8
/usr/share/terminfo/l/linux
- /usr/share/themes/Galaxy/gtk-2.0/gtkrc
/bin/brltty
+ /sbin/pcmcia-socket-startup
+ /etc/pcmcia/config.opts
+
<from expand="glob">
+ <from spaces_in_filename="1">
+ /usr/share/themes/Ia Ora*/gtk-2.0/gtkrc
+ </from>
/etc/gtk-2.0/gdk-pixbuf.loaders.*
/etc/gtk-2.0/gtk.immodules.*
/etc/brltty/text.*.tbl
@@ -128,12 +154,8 @@
/lib/brltty/libbrlttyb??.so
</from>
- <mode copy="keep-links">
- /usr/lib/X11
- </mode>
-
<from expand="command">
- perl -Mlang -I. -le 'print foreach lang::console_font_files()'
+ perl -Mlang -I.. -le 'print foreach lang::console_font_files()'
</from>
<if set="DEBUG_INSTALL">
@@ -265,6 +287,8 @@
ARCH-linux/Cwd.pm
ARCH-linux/auto/Cwd/Cwd.so
ARCH-linux/POSIX.pm
+ ARCH-linux/Time/HiRes.pm
+ ARCH-linux/auto/Time/HiRes/HiRes.so
bytes.pm
integer.pm
overload.pm
@@ -277,21 +301,28 @@
Net/FTP/I.pm
Net/FTP/dataconn.pm
Net/Netrc.pm
+ Scalar/Util.pm
+ List/Util.pm
<if set="DEBUG_INSTALL">
perl5db.pl
Term/ReadLine.pm
- Scalar/Util.pm
- List/Util.pm
</if>
</from>
<from expand="perl">
packdrake.pm
+ Config/IniFiles.pm
MDV/Packdrakeng.pm
+ MDV/Distribconf.pm
MDK/Common
MDK/Common.pm
+ String/ShellQuote.pm
ARCH-linux/Locale/gettext.pm
ARCH-linux/auto/Locale/gettext/gettext.so
+ ARCH-linux/File/FnMatch.pm
+ ARCH-linux/auto/File/FnMatch/FnMatch.so
+ ARCH-linux/Term/ReadKey.pm
+ ARCH-linux/auto/Term/ReadKey/ReadKey.so
ARCH-linux/URPM.pm
ARCH-linux/URPM/Build.pm
ARCH-linux/URPM/Resolve.pm
@@ -308,20 +339,23 @@
<from expand="rpm" matching="m!^/usr/lib/perl5! and !/\.pod$/">
perl-Gtk2
perl-Glib
+ perl-Gtk2-Html2
+ perl-Curses
+ perl-Curses-UI
</from>
</filter>
-<from dir=".">
+<from dir="..">
<to dir="$(REP4PMS)">
<filter command="strip">
<from expand="command">
- find auto -follow -name "*.so"
+ cd .. ; find auto -follow -name "*.so"
</from>
</filter>
</to>
</from>
-<from dir="../tools">
+<from dir="../../tools">
<to dir="/usr/bin" flatten="on">
serial_probe/serial_probe
xhost+
@@ -330,45 +364,49 @@
ARCH/busybox
</mode>
</to>
-
-</from>
-
-<from dir="../kernel">
- <to dir="/lib">
- modules.description
- </to>
</from>
<from dir="share">
<from expand="tar">
fonts.tar.bz2
keyboards.tar.bz2
- locales-skeleton.tar.bz2
keymaps.tar.bz2
</from>
<to dir="/usr/share">
- consolefonts devices
+ consolefonts symlinks
upgrade
+ </to>
+</from>
+<from dir="../pixmaps">
+ <to dir="/usr/share">
<from expand="glob">
*.png
- </from>
+ </from>
</to>
</from>
-<from dir="pixmaps">
+<from dir="../share">
<to dir="/usr/share">
- <from expand="glob" matching="!/^wiz_/">
+ <from expand="glob">
*.png
</from>
</to>
</from>
+<from dir="pixmaps">
+ <to dir="/usr/share">
+ <from expand="glob">
+ *.png
+ </from>
+ </to>
+</from>
+
<from dir="pixmaps/langs">
<to dir="/usr/share/langs">
<from expand="command">
- perl -I. -Mlang -le 'print "lang-$_.png" foreach lang::list_langs()'
+ perl -I.. -Mlang -le 'print "lang-$_.png" foreach lang::list_langs()'
</from>
</to>
</from>
diff --git a/perl-install/install/share/po/DrakX.pot b/perl-install/install/share/po/DrakX.pot
new file mode 100644
index 000000000..03c94277b
--- /dev/null
+++ b/perl-install/install/share/po/DrakX.pot
@@ -0,0 +1,1490 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr ""
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr ""
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr ""
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr ""
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr ""
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr ""
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr ""
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr ""
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr ""
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr ""
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr ""
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr ""
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr ""
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr ""
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr ""
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr ""
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr ""
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr ""
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr ""
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr ""
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr ""
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr ""
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr ""
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr ""
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr ""
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr ""
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr ""
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr ""
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr ""
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr ""
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr ""
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr ""
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr ""
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr ""
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr ""
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr ""
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr ""
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr ""
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr ""
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr ""
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr ""
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr ""
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr ""
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr ""
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr ""
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr ""
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr ""
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr ""
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr ""
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr ""
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr ""
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr ""
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr ""
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr ""
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr ""
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr ""
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr ""
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr ""
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr ""
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr ""
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr ""
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] ""
+msgstr[1] ""
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr ""
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr ""
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr ""
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr ""
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr ""
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr ""
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr ""
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr ""
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr ""
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr ""
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr ""
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr ""
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr ""
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr ""
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr ""
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr ""
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr ""
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr ""
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr ""
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr ""
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr ""
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr ""
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr ""
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr ""
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr ""
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr ""
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr ""
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr ""
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr ""
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr ""
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr ""
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr ""
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr ""
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr ""
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr ""
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr ""
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr ""
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr ""
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr ""
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr ""
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr ""
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr ""
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr ""
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr ""
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr ""
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr ""
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr ""
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr ""
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr ""
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr ""
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr ""
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr ""
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr ""
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr ""
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr ""
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr ""
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr ""
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr ""
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr ""
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr ""
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr ""
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr ""
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr ""
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr ""
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr ""
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr ""
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr ""
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr ""
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr ""
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr ""
diff --git a/perl-install/install/share/po/Makefile b/perl-install/install/share/po/Makefile
new file mode 100644
index 000000000..133373615
--- /dev/null
+++ b/perl-install/install/share/po/Makefile
@@ -0,0 +1,36 @@
+NAME = DrakX
+LOCALEDIR = ${prefix}/share/locale
+PMSFILES = *.pm share/meta-task/compssUsers.pl*
+PMSFILES_HERE = $(wildcard $(PMSFILES:%=../../%))
+
+MAIN_PO_FILES = ../../../share/po/libDrakX.pot
+
+POFILES = $(wildcard *.po)
+MOFILES = $(POFILES:%.po=%.mo)
+LANGS = $(POFILES:%.po=%)
+
+default: $(MOFILES)
+
+%.mo: %.po
+ msgfmt -o $@ $<
+
+merge: $(NAME).pot
+ for n in $(POFILES); do \
+ echo "Merging $$n"; \
+ msgmerge $$n $(NAME).pot > "$$n"t ; \
+ mv -f "$$n"t $$n ; \
+ done
+
+$(NAME).pot: $(PMSFILES_HERE)
+ cd ../.. ; perl_checker -q --generate-pot share/po/.$@ $(PMSFILES)
+ xgettext $(MAIN_PO_FILES:%=-x %) -o $@ .$@
+ rm -f .$@
+
+install: $(MOFILES)
+ for l in $(LANGS); do \
+ install -d $(LOCALEDIR)/$$l/LC_MESSAGES; \
+ install -m 644 $$l.mo $(LOCALEDIR)/$$l/LC_MESSAGES/$(NAME).mo; \
+ done
+
+clean:
+ @rm -rf *.mo $(POFILES:%=%t)
diff --git a/perl-install/install/share/po/af.po b/perl-install/install/share/po/af.po
new file mode 100644
index 000000000..87a52f397
--- /dev/null
+++ b/perl-install/install/share/po/af.po
@@ -0,0 +1,1619 @@
+# translation of DrakX-af21-09.po to Afrikaans
+# translation of DrakX-af.po to Afrikaans
+# KTranslator Generated File
+# KTranslator Generated File
+# Copyright (C) 2000,2003, 2004 Free Software Foundation, Inc.
+# Schalk W. Cronjé <schalkc@ntaba.co.za>, 2000.
+# Dirk van der Walt <mandrake@webmail.co.za>, 2003.
+# Dirk van der Walt <dirkvanderwalt@webmail.co.za>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-af\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2005-04-21 17:33+0200\n"
+"Last-Translator: Dirk van der Walt <dirkvanderwalt@webmail.co.za>\n"
+"Language-Team: Afrikaans\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.0.2\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Beskik u oor nog?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CDROM"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "Netwerk %s"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "Netwerk %s"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr "Kontak Mandriva Linux se webwerf vir 'n lys van spieëlwebplekke...."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr "Kontak Mandriva Linux se webwerf vir 'n lys van spieëlwebplekke...."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Kies 'n spieël waar die pakkette verkry kan word"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Gids"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Kan nie %s op %s vind nie"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Ondersoek pakette wat reeds geïnstalleer is..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Soek vir pakkette om op te gradeer..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"U het die volgende bediener(s) gekies: %s\n"
+"\n"
+"\n"
+"Hierdie bedieners is aktief by verstek. Sover bekend, het hulle nie enige\n"
+"sekuriteits-gevare nie. Daar mag wel mettertyd nuwe gevare gevind word.\n"
+"In so geval, moet u tot verseker dat u hulle so gou moontlik updateer.\n"
+"\n"
+"\n"
+"Verlang u nog steeds hierdie dienste?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Die volgende pakkette moet verwyder word om u rekenaar op te gradeer: %s\n"
+"\n"
+"\n"
+"Wil u werklik dat ons hulle verwyder?\n"
+
+#
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Die volgende pakkette geïnstalleer word:\n"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "Ftp"
+
+#: any.pm:1140
+#, fuzzy, c-format
+msgid "NFS"
+msgstr "PFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Netwerk"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "Kies asseblief"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Lêer bestaan alreeds. Moet dit gebruik word?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Toegang verbied"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr ""
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Kan nie skermfoto's neem voor partisie skep nie"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Skermfoto's sal na die installasie beskikbaar wees in %s"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Besig met installasie"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Konfigurasie"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "U moet ook %s formatteer"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Sekere hardeware op u rekenaar benodig geslote drywers.\n"
+"U kan inligting hieroorvind by %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Netwerk op pad op"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Netwerk op pad af"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "Stuur lêers..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "Bespeuring aan die gebeur"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "benodig"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "belangrik"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "baie oulik"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "oulik"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "moontlik"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr ""
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Werkstasie"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Kantoorwerkstasie"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Kantoorprogramme: Woordverwerkers(OpenOffice.org Writer, Kword), spreistate "
+"(OpenOffice.org Calc, Kspread), PDF-sigprogramme, ens."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Kantoorprogramme: Woordverwerkers( kword, abiword), spreistate (kspread, "
+"gnumeric), PDF-sigprogramme, ens."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Speletjiesrekenaar"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Vermaak: Arkade, Bordspel, Strategie ens."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimediastasie"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Klank- en videospelers/redigeerders"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internetstasie"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Stel hulpprogramme om e-pos en netnuus te lees en te stuur (mutt, tin) en om "
+"ook die web deur te blaai."
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Netwerkrekenaar (kliënt)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Kliëntprogramme vir 'n verkeidenheid protokolle insluitend SSH"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Nutsprogramme wat u rekenaarkonfigurasie vergemaklik"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Konsole Hulpprogramme"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr ""
+"Redigeerders. teksverwerkers, instruksiedoppe, lêer-nutsprogramme, terminaal-"
+"programme"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Ontwikkeling"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C en C++ ontwikkelingsprogrammateke, programme en insluitlêers"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentasie"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Boeke en HOWTO's oor Linux en Vrye Sagteware"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Derdeparty ondersteuning van programme"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Web-bediener"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, fuzzy, c-format
+msgid "Groupware"
+msgstr "Groep:"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab-bediener"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Vuurmuur/Netwerkroteerder"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internetpoort"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/Lêer/_Nuut"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix e-pos-bediener"
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "Herstel vanaf CD"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP-bediener"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Domeinnaam en Netwerk-informasie-bediener (DNS/NIS)"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Drukkerbediener"
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "Samba-bediener"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Databasis"
+
+#: share/meta-task/compssUsers.pl:117
+#, fuzzy, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL of MySQL databasisbediener"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "e-Pos"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix e-pos-bediener"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL of MySQL databasisbediener"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Netwerkrekenaar-bediener"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS, SMB, Instaan- , SSH (Bedieners)"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Grafiese Omgewing"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE Werkstasie"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"Die K-werkskermomgewing (KDE), die basiese grafiese omgewing met 'n "
+"versameling bygaande hulpprogramme"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME-werkstasie"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"'n Grafiese omgewing met gebruikersvriendelike stel applikasies en "
+"werkskerm-hulpprogramme"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "'n Werkstasie"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Ander Grafiese Werkskerms"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ens."
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Nutsprogramme"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH-bediener"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "Webkamera"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Terminal Server Konfigurasie"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Monitor van Netwerk"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "<b>Mandriva Store</b>"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "Probleme met die konfigurasie van drukker \" %s\"!"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"'n Fout het plaasgevind en ek weet nie hoe om dit veilig te hanteer\n"
+"nie. Gaan op u eie risiko voort."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Sekere belangrike pakkette het nie korrek geïnstalleer nie.\n"
+"Óf die CDROM-aandrywer óf die CD is foutief.\n"
+"Toets die CD op 'n werkende Linux installasie met \"rpm -qpl media/main/*.rpm"
+"\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Gaan stap '%s' binne\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux Installasie %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> tussen elemente"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"U stelsel het min hulpbronne beskikbaar. U mag dalk probleme\n"
+"ondervind met die installering\n"
+"van Mandriva Linux. In so 'n geval probeer eerder die teksinstallasie.\n"
+"Daarvoor moet u\n"
+"'F1' druk wanneer u vanaf die CDROM herlaai en dan 'text' op die\n"
+"instruksielyn intik."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Kies Pakketgroepe"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Individuele pakket-seleksie"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Totale grootte: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Foutiewe pakket"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Weergawe: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Grootte: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Belangrikheid: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "deur %s wat soek is"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "deur problematiese %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "probeer promosie van %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "om %s te kan behou"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"U kan nie hierdie pakket selekteer nie, omdat daar nie meer spasie "
+"beskikbaar is nie"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Ons gaan die volgende pakette installeer"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Die volgende pakkette gaan verwyder word"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Hierdie is 'n verpligte pakket. Dit kan nie uitgehaal word nie."
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geïnstalleer"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "U kan nie hierdie pakket deselekteer nie. Dit moet opgradeer word."
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Wys outogeselekteerde pakkette."
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Installasie"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "Pakketkeuse"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Pakketseleksie word opgedateer"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimale installasie"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Sagteware Beheer"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Kies die pakkette wat u wil installeer"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Besig met installasie"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Geen Detail"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Tyd oor "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Skatting"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pakket"
+msgstr[1] "%d pakkette"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Opsomming"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Konfigureer"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "nie gekonfigureer nie"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "'n Fout het voorgekom"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Kies asseblief u sleutelborduitleg."
+
+#: steps_interactive.pm:99
+#, fuzzy, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Hier is die volle lys van beskikbare lande"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Installeer/Opgradeer"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Is hierdie 'n installasie of opgradering?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Opgradeer %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Enkripsie-sleutel vir %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE word opgestel"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Geen beskikbare 1MB herlaaipartisie nie! Installasie sal voortgaan, maar u "
+"sal herlaaipartisie met DiskDrake moet skep indien u die stelsel wil "
+"herlaai."
+
+#: steps_interactive.pm:226
+#, fuzzy, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Geen beskikbare 1MB herlaaipartisie nie! Installasie sal voortgaan, maar u "
+"sal herlaaipartisie met DiskDrake moet skep indien u die stelsel wil "
+"herlaai."
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Verander u CDROM!\n"
+"\n"
+"Sit asb. die CDROM getiteld \"%s\" in die aandrywer en druk OK. Indien u "
+"nie\n"
+"hieroor beskik nie, druk Kanselleer om installasies vanaf dié CDROM te vermy."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Soek vir beskikbare pakkette"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Kies asb. die laai of stoor pakketkeuse op die floppie.\n"
+"Die formaat is dieselfde as outoinstallasie-genereerde floppies."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Las"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Stoor"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "Laai lêer"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Geselekteerde grootte is groter as beskikbare spasie."
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Tipe installasie"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"U het glad nie 'n groep pakkette gekies nie.\n"
+"Kies asseblief die tipe minimale installasie:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Met X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Met basiese dokumentasie (word aanbeveel!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Absolute minimale installasie (geen urpmi!)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Alles"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Berei installasie voor"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Installeer pakket %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Daar was 'n fout met pakkette:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Gaan steeds voort?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Stoor pakketseleksie"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Daar was 'n fout met die installasie van die pakkette:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Post-installasiekonfigurasie"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr ""
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"U het nou 'n geleentheid om opgedateerde pakkette af te laai.Hierdie "
+"pakkette is opgedateer na die distribusie vrygestel is.\n"
+"Hulle mag moontlike sekuriteits-probleme en goggas regstel.\n"
+"\n"
+"Sou u hulle wil aflaai, benodig u 'n werkende Internetkonneksie.\n"
+"\n"
+"Wil u dit nou installeer?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Spieël word gekontak vir die lys van pakkette..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Kon nie die spieëlwebplek %s kontak nie"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Hardeware"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Klankkaart"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Beskik u oor 'n ISA klankkaart?"
+
+#: steps_interactive.pm:811
+#, fuzzy, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr "Loop \"sndconfig\" na die installasie om u klankkaart te konfigureer"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Geen klankkaart opgespoor nie. Probeer \"harddrake\" na die installasie"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV-kaart"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Grafiese-koppelvlak"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Netwerk & Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Instaan bedieners"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "gekonfigureer"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Sekuriteitsvlak"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Vuurmuur"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "ge-aktiveer"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "ge-deaktiveer"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Selflaai"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s op %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "U het nog nie 'X' opgestel nie. Verlang u dit regtig?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Herlaaistelsel word voorberei..."
+
+#: steps_interactive.pm:977
+#, fuzzy, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Dit wil voorkom of u 'n 'OldWorld' of Onbekende\n"
+"rekenaar het, die yaboot herlaaistelsel sal nie hier werk nie.\n"
+"Ons sal voortgaan met die installasie, maar u sal\n"
+"BootX of 'n ander manier moet gedruik om u rekenaar te selflaai"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Wil u aboot gebruik?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
+"word die eerste partisie vernietig?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Met hierdie sekuriteitsvlak word toegang na lêers op die Windows partisie "
+"vernou na slegs die administrateur"
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Sit 'n leë floppie in aandrywer %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Outoinstallasieskyf word geskep."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Bepaalde stappe is nie afgehandel nie.\n"
+"\n"
+"Wil u werklik nou eindig?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Geluk"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Herlaai"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Skep outoinstallasieskyf"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Die outomatiese installasie kan ten volle geoutomatiseer\n"
+"word, in daardie geval kan dit die hardeskyf oorskryf!!!\n"
+"(dit is vir die installasie op 'n ander rekenaar).\n"
+"\n"
+"U mag verkies om hierdie installasie elders te herhaal.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Herspeel"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Outomaties"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Stoor pakketseleksie"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Taal"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Lisensie"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Muis"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Hardeskyf-speuring."
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Sleutelbord"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Sekuriteit"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Partisionering"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Besig met installasie"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Magtiging"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Gebruikers"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Netwerk"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Herlaaistelsel"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Stel X op"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Opsomming"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Dienste"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr ""
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Verlaat"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d pakket, %d MB)"
+#~ msgstr[1] "(%d pakkette, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pakkette"
+
+#~ msgid "Language"
+#~ msgstr "Taal"
+
+#~ msgid "License"
+#~ msgstr "Lisensie"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Kies installasieklas"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Skatting"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Kies pakkette om te installeer"
+
+#~ msgid "Users"
+#~ msgstr "Gebruikers"
+
+#~ msgid "Networking"
+#~ msgstr "Netwerk"
+
+#~ msgid "Configure X"
+#~ msgstr "Stel X op"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Kan nie die toegang tot die 'kernel'-modules vir hierdie 'kernel' kry "
+#~ "nie. ( lêer %s is soek). Dit beteken normaalweg dat u selflaaiskyf "
+#~ "verskil van die Installasie-media sin ( skep assebleif 'n nuwer disket)"
diff --git a/perl-install/install/share/po/am.po b/perl-install/install/share/po/am.po
new file mode 100644
index 000000000..9abbaa898
--- /dev/null
+++ b/perl-install/install/share/po/am.po
@@ -0,0 +1,1520 @@
+# Latest versions of po files are at http://www.mandrivalinux.com/l10n/am.php3
+# Copyright (C) 2004 Mandriva SA
+# Alemayehu Gemeda <alemayehu@gmx.at>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2004-06-01 03:36+0100\n"
+"Last-Translator: Alemayehu <alemayehu@gmx.at>\n"
+"Language-Team: Amharic <am-translate@geez.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "ሌላ አለ?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "ሲዲ-ሮም"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "መረብ"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "መረብ"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr ""
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "ዶሴ"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr ""
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "የሚከተሉት ጥቅሎች ሊወገዱ ነው"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "መረብ"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "እባክዎ ያለ ሰነድን ይምረጡ"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "ፋይሉ በፊትም ነበር። ልጠቀምበት?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "ፈቃድ አልተሰጠም"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "ፋይል ተጭኗል %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr ""
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr ""
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "በመትከል ላይ"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "ስየማ"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr ""
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "መረቡን በማቀራረብ ላይ"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "መረቡን በማለያየት ላይ"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "የቅርብ ጊዜ ፋይሎች"
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "የተሻሻለ ዊድጌት ፍጠር"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr ""
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "አስፈላጊ"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "በጣም ጥሩ"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "ጥሩ"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "ምናልባት"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "እድገት"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "ማስረጃ"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "የመረብ ሰርቨር"
+
+#: share/meta-task/compssUsers.pl:85
+#, fuzzy, c-format
+msgid "Apache"
+msgstr "መተላለፊያ"
+
+#: share/meta-task/compssUsers.pl:88
+#, fuzzy, c-format
+msgid "Groupware"
+msgstr "የውይይት መድረክ"
+
+#: share/meta-task/compssUsers.pl:89
+#, fuzzy, c-format
+msgid "Kolab Server"
+msgstr "የሳምባ ተጠሪ"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "አዲስ ፋይል።"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "የመልዕክት ተጠሪ ሚስጢራዊ ቃል ያስፈልጋል"
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "በዝርዝር ውስጥ ዶሴ ጨምር"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "የFTP ተጠሪ"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, fuzzy, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "የዘርፍ ስም ሰርቨር"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "የማተሚያ ሰርቨር"
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "የሳምባ ሰርቨር"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "ዳታቤዝ"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "ፖስታ"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "ሰሌዳ"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:183
+#, fuzzy, c-format
+msgid "Utilities"
+msgstr "ፊሊፒንስ"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, fuzzy, c-format
+msgid "SSH Server"
+msgstr "ስለተጠሪ መረጃ"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "ዌብ-ካም"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "ቀዳሚ ተጠሪ ይጠቀም"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Name=መረብ"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "<b>የMandriva Linux ባለሞያ</b>"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "የባሕር-መዝገብ እሴት '%s' ወደ '%s' እንደገና መሰየም አልተቻለም።"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr ""
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "የMandriva Linux ተከላ %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr ""
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "የጥቅል ቡድን ምርጫ"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "የነጠላ ጥቅል ምርጫ"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "አጠቃላይ መጠን: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "ትክክል ያልሆነ ጥቅል"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "ዝርያ: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "መጠን: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "አስፈላጊነት: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "ይህን ጥቅል መምረጥ/አለመምረጥ አይችሉም"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "%s ባለመገኘቱ ምክንያት"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "%s አጥጋቢ ባለመሆኑ ምክንያት"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "%sን ለማስተዋወቅ በመሞከር ላይ"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "%sን ለማቆየት"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "የሚከተሉት ጥቅሎች ሊተከሉ ነው"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "የሚከተሉት ጥቅሎች ሊወገዱ ነው"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr ""
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "ይህንን ጥቅል መምረጥ አይችሉም። ቀደም ብሎ ተተክሏል።"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr ""
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr ""
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "ትከል"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "የጥቅል ምርጫ"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "የጥቅል ምርጫ በማሻሻል ላይ"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "አነስተኛ ተከላ"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr ""
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "ለመትከል የሚፈልጉትን ጥቅል ይምረጡ"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "በመትከል ላይ"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "ያለ ዝርዝሮች"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr " ይቀራል"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "በግምት"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d ጥቅሎች"
+msgstr[1] "%d ጥቅሎች"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "ማጠቃለያ"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "ለውጥ"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "አልተስተካከለም"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "ስህተት ተፈጥሯል"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr ""
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr ""
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "ትከል/አሳድግ"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr ""
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr ""
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "የ%s ሚስጢራዊ መገልበጫ ቁልፍ"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDEን በማስተካከል ላይ"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr ""
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "ጫን"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "አስቀምጥ"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "1 ፋይል"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr ""
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "የተከላው አይነት"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "በX"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr ""
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "ሁሉንም"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "ተከላ በማዘጋጀት ላይ"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "የ%s ጥቅል በመትከል ላይ"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr ""
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "ለማንኛውም ቀጥል?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "የጥቅሎችን ምርጫ አስቀምጥ"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "የ%s ጥቅል በመትከል ላይ"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Post-install configuration"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "አሻሻዎች"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "ከአንጸባራቂ %s ጋር መገናኘት አልተቻለም"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "ሀርድዌር"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "የድምፅ ካርድ"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "የISA ድምጽ ካርድ አለዎት?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "የቲቪ ካርድ"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "ንድፋዊ እይታ"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "መረብ እና ኢንተርኔት"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "ወኪሎች"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "ተስተካክሏል"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "የደህንነት ደረጃ"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "የእሳት ግድግዳ"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "መስራት ጀምሯል"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "መስራት አቁሟል"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "ጀምር"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s %s ላይ ነው"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "አስጀማሪ በማዘጋጀት ላይ..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+
+#: steps_interactive.pm:983
+#, fuzzy, c-format
+msgid "Do you want to use aboot?"
+msgstr "ስራ-እቅዱን መሠረዝ ይፈልጋሉ?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr ""
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "እንኳን ደስ ያለዎ!"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "እንደገና ጀምር"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr ""
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr ""
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr ""
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "የጥቅሎችን ምርጫ አስቀምጥ"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "ቋንቋ"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr ""
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "መጠቆሚያ"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr ""
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "መተየቢያ"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "ደህንነት"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr ""
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "በመትከል ላይ"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr ""
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "ተጠቃሚዎች"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "መረብ"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "አስጀማሪያ"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Xን ሰይም"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "ማጠቃለያ"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "አገልግሎት"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "አሻሻዎች"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "ውጣ"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d ጥቅሎች"
+#~ msgstr[1] "%d ጥቅሎች"
+
+#~ msgid "%d packages"
+#~ msgstr "%d ጥቅሎች"
+
+#~ msgid "Language"
+#~ msgstr "ቋንቋ"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "በመትከል ላይ"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "በግምት"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "%d ጥቅሎች"
+
+#~ msgid "Users"
+#~ msgstr "ተጠቃሚዎች"
+
+#~ msgid "Networking"
+#~ msgstr "መረብ"
+
+#~ msgid "Configure X"
+#~ msgstr "Xን ሰይም"
diff --git a/perl-install/install/share/po/ar.po b/perl-install/install/share/po/ar.po
new file mode 100644
index 000000000..4890ed0bd
--- /dev/null
+++ b/perl-install/install/share/po/ar.po
@@ -0,0 +1,1623 @@
+# translation of DrakX.po to Arabic
+# Amr Fathy <amr10@menanet.net>, 2001.
+# Mohammed Gamal <f2c2001@yahoo.com>, 2002.
+# Youcef Rabah Rahal <rahal@arabeyes.org>, 2004.
+# Ossama M. Khayat <okhayat@yahoo.com>, 2004, 2005.
+# Munzir Taha <munzir@kacst.edu.sa>, 2004.
+# Abdulaziz Al-Arfaj <alarfaj@arabeyes.org>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2005-03-03 01:06+0300\n"
+"Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n"
+"Language-Team: Arabic <support@arabeyes.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.9.1\n"
+"Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : n>=3 && n<=10 ? 2 : "
+"3\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "هل لديك أوساط إضافيّة أخرى؟"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "القرص المدمج"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "الشبكة (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "الشبكة (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "عنوان URL للمرآة؟"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"جاري الإتصال بموقع ماندريبا لينكس للحصول على قائمة بالمرايا المتوفرة..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"جاري الإتصال بموقع ماندريبا لينكس للحصول على قائمة بالمرايا المتوفرة..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "اختيار مرآة سيتم من خلالها تنزيل الحزم"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "الدليل"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "لم يمكن العثور على ملف hdlist على هذه المرآة. تأكد من صحة الموقع."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "التعرف على الحزم المثبتة مسبقاً..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "البحث عن الحزم التي ستتم ترقيتها..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"لقد اخترت الخادمات التالية: %s\n"
+"\n"
+"\n"
+"هذه الخادمات مُنشّطة افتراضياً، و لا يوجد لهم مشاكل أمنية\n"
+"معروفة، و لكن قد تكتشف بعض المشاكل الجديدة. في هذه الحالة، تأكد من أن\n"
+"تقوم بالترقية في أقرب وقت ممكن.\n"
+"\n"
+"\n"
+"هل أنت متأكد أنك تريد تثبيت هذه الخادمات الآن؟\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"سيتم حذف هذه الحزم لكي تتم ترقية النظام: %s\n"
+"\n"
+"\n"
+"هل تريد حذف هذه الحزم فعلاً؟\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "تمّ تغيير أسماء القرص التّالي أو الأقراص التّالية:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (المسمّى %s سابقاً)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "الشبكة"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "الرجاء اختيار وسط"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "الملف موجود مسبقاً. هل تريد الكتابة عليه؟"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "غير مسموح لك بذلك"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "الوسط %s سيء"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "لا يمكنني عمل لقطات للشاشة قبل التجزئة"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "ستكون لقطات الشاشة موجودة بعد التثبيت في %s"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "التثبيت"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "التهيئة"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "عليك أيضا تنسيق %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"بعض العتاد الموجود على جهازك يحتاج إلى مشغلات ``تجارية'' كي تعمل.\n"
+"يمكنك ايجاد مزيد من المعلومات عنها في: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "جاري تشغيل الشبكة"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "جاري اغلاق الشبكة"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "جاري ارسال الملفات..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "جاري النسخ"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "يجب أن يكون لديك"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "مهم"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "ظريف جداً"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "ظريف"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "ربما"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+# U+200F (RTL mark) has been inserted between "Dvorak" and "(US)", so
+# it displays on screen as "(US) Dvorak", following the same schema
+# as others "Dvorak (xxxx)" with xxx in Arabic that display as "(xxxx) Dvorak"
+# that way the entry is also listed together with the other "Dvorak" entries.
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "محطة عمل"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "محطّة عمل مكتبية"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"برامج مكتبية: معالجة الكلمات (OpenOffice.org Writer، Kword(، الجداول "
+"الحسابية (OpenOffice.org Calc، Kspread( ، برامج عرض pdf، الخ"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"برامج مكتبية: معالجة الكلمات (kword، abiword(، الجداول الحسابية (kspread، "
+"gnumeric) ، برامج عرض pdf، الخ"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "محطّة ألعاب"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "برامج التسلية: ألعاب فيديو، ألعاب لوحات، ألعاب استراتيجية، الخ"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "محطة وسائط متعدّدة"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "برامج تحرير/تشغيل الفيديو و الصوت"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "محطّة إنترنت"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"مجموعة من الأدوات لقراءة و إرسال البريد و الأخبار (mutt، tin..( و لتصفح "
+"الإنترنت"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "جهاز شبكة (عميل)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "عملاء لبروتوكولات مختلفة مثل ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "أدوات لتسهيل إعداد جهازك"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "أدوات الطرفيّات"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "محررات نصوص، صَدَفات، أدوات ملفات، طرفيات"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "تطوير"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "برامج و مكتبات تطوير C و C++"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "التّوثيق"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "كتب ومذكرات Howto حول لينكس و البرامج الحرة"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "القاعدة القياسيّة للينكس (LSB). دعم تطبيقات الأطراف الثالثة"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "خادم الوب"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "برامج المجموعات"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "خادم Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "جدار ناري/موجِّه"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "بوابة الإنترنت"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "بريد/أخبار"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "خادم بريد Postfix، خادم أخبار Inn"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "خادم مجلّدات"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "الخادم FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "خادم أسماء النّطاقات ومعلومات الشّبكة"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "خادم مشاركة الملفّات والطّابعات"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "خادم NFS، خادم Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "قواعد البيانات"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "خادم قواعد بيانات PostgreSQL و MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "وب/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache، Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "البريد"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "خادم البريد Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "خادم قواعد البيانات PostgreSQL أو MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "خادم شبكات"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "خادم NFS، خادم SMB، خادم بروكسي، خادم ssh"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "بيئات رسومية"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "محطّة عمل كيدي"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"بيئة سطح مكتب كيدي، البيئة الرسومية الأساسية مع مجموعة من الأدوات المصاحبة"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "محطّة عمل جينوم"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"بيئة رسومية مع مجموعة من التطبيقات و أدوات سطح المكتب المناسبة للمستخدمين "
+"العاديين"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Plucker Desktop"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "أسطح مكتب رسومية أخرى"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm، Window Maker، Enlightenment، Fvwm، الخ"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "منافع"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "خادم SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "خادم التّهيئة البعيدة Webmin"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "منافع شبكة/مراقبة"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "أدوات مراقبة، محاسبة عمليّات، tcpdump، nmap، ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "مرشدو ماندريبا"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "مرشدو تهيئة الخادم"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"ظهر خطأ و لا أعرف كيف أتعامل معه بأسلوب جيد.\n"
+"تابع على مسؤوليتك."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"لم يتمّ تثبيت بعض الحزم المهمّة بشكل صحيح.\n"
+"إمّا أن يكون قارئ الأقراص معطوبا أو القرص.\n"
+"إفحص القرص المدمج على حاسب مثبت باستعمال \"rpm -qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "الانتقال للخطوة `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "تثبيت ماندريبا لينكس %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> بين العناصر"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"نظامك قليل الموارد. قد تقابل بعض المشاكل قي تثبيت\n"
+"ماندريبا لينكس. إذا حدث ذلك، يمكنك التثبيت في وضع نصي بدلاً من ذلك. لهذا "
+"الغرض،\n"
+"اضغط `F1' عند الإقلاع من القرص المدمج، و اكتب `text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "اختيار مجموعات الحزم"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "اختيار مفرد للحزم"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "الحجم الإجمالي: %d / %d م.ب."
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "حزمة سيئة"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "النسخة:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "الحجم: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d ك.ب.\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "الأهمية:"
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "لا يمكنك اختيار/ازالة اختيار هذه الحزمة"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "بسبب غياب %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "بسبب عدم إرضاء %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "السعي إلى ترويج %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "من أجل حفظ %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "لا يمكنك اختيار هذه الحزمة لأنه لا يوجد مساحة كافية متبقية لتثبيتها"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "سيتم تثبيت الحزم التالية"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "سيتم حذف الحزم التالية"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "هذه الحزمة الزامية، لا يمكن عدم اختيارها"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "لا يمكن إزالة اختيار هذه الحزم. انها مثبتة مسبقاً"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "لا يمكنك إزالة اختيار هذه الحزمة. يجب ترقيتها"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "إظهار الحزم المختارة ألياً"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "تثبيت"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "تحميل/حفظ الاختيار"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "تحديث اختيار الحزم"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "تثبيت مصغّر"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "إدارة البرامج"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "اختر الحزم التي تريد تثبيتها"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "التثبيت"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "لا تفاصيل"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "الوقت المتبقي"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "الحساب التقريبي"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d حزم"
+msgstr[1] "%d حزم"
+msgstr[2] "%d حزم"
+msgstr[3] "%d حزم"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "ملخص"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "تهيئة"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "غير مهيّأ"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"تم العثور على وسط التثبيت التالي.\n"
+"إن كنت تريد تخطي بعضها، يمكنك إزالة اختيارها الآن."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"لديك الخيار بنسخ محتويات الأقراص المدمجة إلى قرصك الصلب قبل التثبيت.\n"
+"سيكمل التثبيت بعد ذلك من القرص الصلب وستبقى الحزم متوفرة حالما يتم تثبيت "
+"النظام بالكامل."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "نسخ الأقراص بالكامل"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "حدث خطأ"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "الرجاء اختيار لوحة المفاتيح."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "هذه هي القائمة الكاملة لكلّ لوحات المفاتيح المتوفّرة"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "تثبيت/ترقية"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "هل هذا تثبيت أم ترقية؟"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "ترقية %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "مفتاح التشفير لـ %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "جاري تهيئة IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"ليس هناك مساحة حرّة لواحد ميجابات من bootstrap! سوف يستمرّ التّثبيت، لكن لإقلاع "
+"نظامك، سوف تحتاج لإنشاء تجزيء bootstrap في DiskDrake"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"تحتاج إلى إنشاء PPC PReP Boot bootstrap! ستكمل عملية التثبيت، ولكن لإقلاع "
+"نظامك، أنت بحاجة إلى إنشاء تجزيء bootstrap من خلال DiskDrake"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"غيّر القرص المدمج !\n"
+"من فضلك أدخل القرص المدمج المسّمى \"%s\" في الّسواقة واضغط على موافق عندما "
+"تنتهي.\n"
+"إن لم يكن القرص لديك، اضغط على إلغاء لتجّنب التثبيت من هذا القرص المدمج."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "العثور على الحزم المتوفرة..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"الرجاء اختيار حفظ أو تحميل اختياراتك للحزم.\n"
+"النسق مشابه لملفات التثبيت الآلي المولّدة."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "تحميل"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "حفظ"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "ملف سيء"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "الحجم المختار أكبر من المساحة المتوفرة"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "نوع التثبيت"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"لم تختر أي مجموعة من الحزم.\n"
+"الرجاء اختيار التثبيت المصغر الذي تريده:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "مع X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "مع وثائق المساعدة الأساسية (مفضّل)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "تثبيت مصغّر فعلاً (خصوصاً بدون urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "الكل"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "التحضير للتثبيت"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "جاري تثبيت الحزمة %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "كان هناك خطأ في ترتيب الحزم:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "هل تريد المتابعة على أي حال؟"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "حفظ اختيار الحزم"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "كان هناك خطأ في تثبيت الحزم:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "تهيئة ما بعد التثبيت"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "التحديثات"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"تستطيع الآن تنزيل الحزم المحدّثة. هذه الحزم\n"
+"تم تحديثها بعد اصدار التوزيعة. قد\n"
+"تحتوي على اصلاحات أمنية أو اصلاحات لعيوب برمجية.\n"
+"\n"
+"لتنزيل هذه الحزم، تحتاج إلى أن تكون لديك اتصال \n"
+"بالإنترنت.\n"
+"\n"
+"هل تريد تنزيل هذه التحديثات ؟"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "جاري الإتصال بالمرآة للحصول على قائمة بالحزم المتوفرة..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "تعذر الإتصال بالمرآة %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "العتاد"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "بطاقة الصوت"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "هل لديك بطاقة صوت ISA؟"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"شغّل \"alsaconf\" أو \"sndconfig\" بعد التّثبيت لتهيئة بطاقة الصّوت الخاصّة بك"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "لم يعثر على بطاقة الصوت. حاول تشغيل \"harddrake\" بعد التثبيت"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "بطاقة التلفاز"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "الواجهة الرسومية"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "الشبكة والإنترنت"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "البروكسيات"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "مُهيّء"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "مستوى الأمن"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "جدار ناري"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "مُنشّط"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "مُعطّل"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "الإقلاع"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s على %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "لم تقم بتهيئة خادم X. هل أنت متأكد أنك تريد ذلك؟"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "جاري تحضير محمّل الإقلاع..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"يبدو أن لديك ماكينة مجهولة أو من العالم القديم، ولن يعمل محمل الإقلاع yaboot "
+"مع نظامك. ستكمل عملية التثبيت، ولكنك بحاجة إلى استخدام BootX أو طريقة ما "
+"أخرى لإقلاع نظامك. مُعطى النواة لنظام الملفات الجذر هو: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "هل تريد استخدام aboot؟"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"خطأ أثناء تثبيت aboot، \n"
+"حاول الإجبار على التثبيت حتى و لو أدي ذلك لتدمير التجزيء الأول؟"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"في هذا المستوى الأمني، الوصول إلى الملفّات بتجزيء ويندوز سيكون مقصوراً على "
+"المدير."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "أدخل قرص مرن فارغ في السواقة %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "جاري إنشاء قرص التثبيت الآلي..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"بعض الخطوات لم يتم تكملتها.\n"
+"\n"
+"هل تريد الخروج الآن فعلاً؟"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "تهانينا"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "إعادة التشغيل"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "إنشاء قرص تثبيت آلي"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"التثبيت الآلي قد يتم بشكل تلقائي إذا أردت ذلك،\n"
+"في هذه الحالة سيستولي على كل القرص الصلب لديك!!\n"
+"(هذا بالنسبة للتثبيت على جهاز آخر).\n"
+"\n"
+"ربما تفضل إعادة عملية التثبيت.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "إعادة"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "آلي"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "حفظ اختيار الحزم"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "اللّغة"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "الرخصة"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "الماوس"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "اكتشاف القرص الصّلب"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "لوحة المفاتيح"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "الأمن"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "التجزئة"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "التثبيت"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "المواثقة"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "المستخدمون"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "الشبكات"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "محمّل الإقلاع"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "تهيئة X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "ملخص"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "الخدمات"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "التحديثات"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "خروج"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d حزم"
+#~ msgstr[1] "%d حزم"
+#~ msgstr[2] "%d حزم"
+#~ msgstr[3] "%d حزم"
+
+#~ msgid "%d packages"
+#~ msgstr "%d حزم"
+
+#~ msgid "Language"
+#~ msgstr "اللّغة"
+
+#~ msgid "License"
+#~ msgstr "الرخصة"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "اختيار صنف التّثبيت"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "الحساب التقريبي"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "اختيار الحزم المطلوب تثبيتها"
+
+#~ msgid "Users"
+#~ msgstr "المستخدمون"
+
+#~ msgid "Networking"
+#~ msgstr "الشبكات"
+
+#~ msgid "Configure X"
+#~ msgstr "تهيئة X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "تعذر الوصول إلى وحدات النواة الخاصة بنواة النظام (الملف %s مفقود)، بشكل "
+#~ "عام يعني هذا أن قرص الإقلاع المرن ليس محدّثاً مع وسيط التثبيت (فضلاً قم "
+#~ "بإنشاء قرص اقلاع جديد)"
diff --git a/perl-install/install/share/po/az.po b/perl-install/install/share/po/az.po
new file mode 100644
index 000000000..d8ac4e8f3
--- /dev/null
+++ b/perl-install/install/share/po/az.po
@@ -0,0 +1,1612 @@
+# translation of DrakX-az.po to Azerbaijani
+# translation of DrakX-az.po to Azerbaijani Turkish
+# DrakX-az.po faylının Azərbaycan dilinə tərcüməsi
+# Copyright (C) 2000,2003, 2004 Free Software Foundation, Inc.
+# Copyright (c) 2000 Mandriva
+# Vasif Ismailoglu MD<azerb_linux@hotmail.com> , 2000-2001
+# Mətin Əmirov <metin@karegen.com>, 2001-2003, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-az\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2005-03-31 14:21+0200\n"
+"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
+"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3.1\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Başqası var?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "Şəbəkə %s"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "Şəbəkə %s"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Mövcud əkslərin siyahısını almaq üçün Mandriva Linux səhifəsi ilə təmas "
+"qurulur..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Mövcud əkslərin siyahısını almaq üçün Mandriva Linux səhifəsi ilə təmas "
+"qurulur..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Paketleri almaq üçün bir əks ünvanı seçin"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Qovluq"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "%s, %s üstündə tapıla bilmir"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Qurulu olan paketlər yoxlanır..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Güncəllənəcək paketlar tapılır"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Siz aşağıdakı vericiləri seçdiniz: %s\n"
+"\n"
+"\n"
+"Bu vericilər əsas olaraq fəal olur. Onların bilinən heç bir təhlükəsizlik\n"
+"problemləri yoxdur, ancaq bə'zi yeni xətalar tapıla bilər. Belə olsa, "
+"mümükün olan ən yaxın zamanda onları yeniləməlisiniz.\n"
+"\n"
+"\n"
+"Bu vericiləri həqiqətən də qurmaq istəyirsiniz?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Sisteminizin yenilənməsi üçün bu paketlər silinəcək: %s\n"
+"\n"
+"\n"
+"Bu paketləri həqiqətən də silmək istəyirsiniz?\n"
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Aşağıdakı paketlər qurulmalıdır:\n"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Şəbəkə"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "Xahiş edirik seçin"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Fayl onsuz da mövcuddur. Üstünə yazım?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Səlahiyyət yoxdur"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "%s medyası əlavə edildi"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Bölmələmədən əvvəl görüntü alına bilməz"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Ekran görüntüləri qurulumdan sonra %s mövqeyində olacaqdır"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Qurulur"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Quraşdırma"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Eyni zamanda %s da şəkilləndirilməlidir"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Sisteminizdaki bə'zi avadanlıqlar işləməsi üçün düzgün sürücülərə ehtiyac "
+"duyar.\n"
+"Bunun haqqında %s də/a lazımi malumatları tapa bilərsiniz"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Şəbəkə fəallaşdırılır"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Şəbəkə dayandırılır"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "Fayllar göndərilir..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "Təsbit etmə fəaliyyətdədir"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "sınamağa dəyər"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "vacib"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "çox ə'la"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "ə'la"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "bəlkə"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr ""
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "İş Stansiyası"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Ofis İş Stansiyası"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"İdarə proqramları: kəlmə işləyənlər (OpenOffice.org Writer, Kword), "
+"hesablayıcılar və pdf göstəriciləri, vs."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"İdarə proqramları: kəlmə işləyənlər (kword, abiword), hesablayıcılar və pdf "
+"göstəriciləri, vs."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Oyun stansiyası"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Məzəli proqramlar: arkad, lövhə oyunları, strategiya, vs"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimedya stansiyası"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Səs və video çalınması/düzəliş proqramları"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "İnternet stansiyası"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Elektronik məktub və xəbər oxuyucu vasitələr dəstəsi (pine, mutt, tin..) və "
+"Veb səyyahları"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Şəbəkə Kompüteri (alıcı)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "SSH daxil bir çox protokolların alıcıları"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Kompüter qurğularını asandlaşdıran vasitələr"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Konsol Vasitələri"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editorlar, rəflər, fayl vasitələri, terminallar"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "İnkişaf"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C və C++ inkişaf kitabxanaları, proqramları və daxil ediləcək fayllar"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Sənədlər"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Linuks və sərbəst proqram tə'minatı haqqında Kitablar və Howtolar"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standartları Bazası. Üçüncü partiya tə'minat dəstəyi"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Veb Vericisi"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, fuzzy, c-format
+msgid "Groupware"
+msgstr "Qrup"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab Vericisi"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Atəş Divarı/İstiqamətləndirici"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "İnternet keçidi"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/Fayl/_Təze"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix poçt vericisi"
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "CD'dən Geri Yüklə"
+
+#: share/meta-task/compssUsers.pl:104
+#, fuzzy, c-format
+msgid "FTP Server"
+msgstr "NTP Verici"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, fuzzy, c-format
+msgid "DNS/NIS"
+msgstr "DNS"
+
+#: share/meta-task/compssUsers.pl:109
+#, fuzzy, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Domen Adı Vericisi"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Çapçı Vericisi"
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "Samba vericisi"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Mə'lumat Bazası"
+
+#: share/meta-task/compssUsers.pl:117
+#, fuzzy, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL ya da MySQL mə'lumat bazası vericisi"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Veb/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Poçt"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix poçt vericisi"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL ya da MySQL mə'lumat bazası vericisi"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Şəbəkə Kompüter vericisi"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS vericisi, SMB vericisi, Vəkil vericisi, SSH verici"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Qrafiki Mühit"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE iş stansiyası"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "KDE, əsas qrafiki ara üz və yardımçi proqramlar kolleksiyası"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME iş stansiyası"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"İstifadəçi dostu proqram və masa üstü ilə bərabər qrafiki ara üz vasitələri"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Masa üstü"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Başqa qrafiki ara üzlər"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, vs."
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Vasitələr"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH Vericisi"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "Veb kamerası"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Terminal Server Quraşdırılması"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Şəbəkə İzlənməsi"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "<b>Mandriva Store</b>"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "\"%s\" çapçısı quraşdırıla bilmədi!"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Bir xəta oldu, yalnız necə düzəldiləcəyi bilinmir.\n"
+"Davam edin, riski sizə aitdir!"
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Bə'zi paketlər doğru olaraq qurulumu bitirmədi.\n"
+"Cdrom sürücünüz ya da cdromunuz düzgün işləmir.\n"
+"Əvvəldən Linuks qurulu bir sistemdə \"rpm -qpl media/main/*.rpm\"\n"
+"əmrini istifadə edərək Cd-Rom'u yoxlayın.\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Başlanğıc addımı `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux Qurulumu %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> irəli/geri"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Sizin sisteminizin qaynaqları çatışmır. Qurulum ərzində problem yaşaya "
+"bilərsiniz\n"
+"Bu baş verərsə mətn aracılığı ilə qurulumu sınamalısınız. Bunun üçün "
+"dəCDROMdan başlatdığınız zaman,\n"
+" 'F1'ə basın və 'text' yazaraq enter'ə basın."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Paket Qruplarının Seçimi"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Fərdi paket seçimi"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Ümumi böyüklük: %d / %d Mb"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Xətalı paket"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Buraxılış: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Böyüklük: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Əhəmiyyət:"
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Bu paketi seçə bilməzsiniz/sistemdən çıxarda bilməzsınız"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "%s əksik olduğuna görə"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "%s razı qalmadığına görə"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "%s irəliləndirməyə çalışılır"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "%s-i saxlamaq üçün"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "Bu paketi seçə bilməzsiniz, çünki qurmaq üçün yer çatmır."
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Aşağıdakı paketlər qurulacaq"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Aşağıdakı paketlər sistemdən silinəcəklər"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Bu lazımlı bir paketdir, sistemdən çıxardıla bilməz"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Bu paketi sistemdən çıxarda bilməzsınız. Artıq qurulmuşdur."
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Bu paketi sistemdən çıxarda bilməzsiniz. Yenilənməlidir"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Avtomatik seçili paketləri göstər"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Qur"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "Seçili olanı qeyd et"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Paket seçkiləri yenilənir"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimal qurulum"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Proqram Tə'minatı İdarəsi"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Qurmaq istədiyiniz paketləri seçin"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Qurulur"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Təfsilatsız"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Qalan müddət"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Təxmini olaraq hesaplanır"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d paket"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "İcmal"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Qur"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "quraşdırılmayıb"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Bir xəta oldu"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Xahiş edirik, klaviatura düzülüşünüzü seçin."
+
+#: steps_interactive.pm:99
+#, fuzzy, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Bütün mövcud ölkələrinn siyahısı"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Qurulum/Yeniləmə"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Bu bir qurulum, yoxsa yeniləmədir?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "%s-i yenilə"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "%s üçün şifrələmə açarı"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "İDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "İDE qapıları qurulur"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"1 MB bootstrap üçün yer yoxdur! Qurulum davam edəcək, ancaq sisteminizi aça "
+"bilmək üçün DiskDrake'də bootstrap bölməsi yaratmalısınız."
+
+#: steps_interactive.pm:226
+#, fuzzy, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"1 MB bootstrap üçün yer yoxdur! Qurulum davam edəcək, ancaq sisteminizi aça "
+"bilmək üçün DiskDrake'də bootstrap bölməsi yaratmalısınız."
+
+#: steps_interactive.pm:318
+#, fuzzy, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"CD-ROM'u dəyişdirin!\n"
+"\n"
+"Xahiş edirik, \"%s\" adlı CD-ROM'u sürücünüzə yerləşdirin və Oldu düyməsinə "
+"basın.\n"
+"Əgər CD-ROM əlinizdə deyilsə, bu CD-Rom'dan qurmamaq üçün Ləğv Et düyməsinə "
+"basın."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Mövcud olan paketlər axtarılır."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Xahiş edirik, paket seçkilərini disketə qeyd et/disketdən yüklə\n"
+"seçənəyini seçin."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Yüklə"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Qeyd Et"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Səhv fayl"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Seçili böyüklük var olandan daha böyükdür"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Qurulum növü"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Heç bir paket qrupunu seçmədiniz.\n"
+"Xahiş edirik, istədiyiniz ən kiçik qurulumu seçin:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "X ilə"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Əsas sənədlərlə birlikdə (məsləhət edilən!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Həqiqətən minimal qurulum (xüsusilə urpmi olmasın)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Hamısı"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Qurulum hazırlanır"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "%s paketi qurulur"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Paketləri istərkən xəta yarandı:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Yenə də davam edək?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Paket seçkilərini qeyd et"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Paketlər qurulurkən bir xəta oldu:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Qurulum sonrası qurğular"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Yeniləmələr"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"İndi siz yenilənmiş paketləri endirib qurma imkanına maliksiniz. Bu "
+"paketlər\n"
+"distribusiya buraxıldıqdan sonra yeniləniblər və təhlükəsizlik ya da xəya "
+"həllərini\n"
+"daxil edə bilərlər.\n"
+"\n"
+"Bu paketləri endirmək üçün fəal İnternet bağlantınız olmalıdır \n"
+"\n"
+"Yeniləmələri qurmaq istəyirsiniz ?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Əks ünvanına bağlantı qurulur"
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "%s əksi ilə rabitə qurula bilmir"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Avadanlıq"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Səs kartı"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Heç İSA səs kartınız var?"
+
+#: steps_interactive.pm:811
+#, fuzzy, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Qurulumdan sonra səs kartınızı qurğulamaq üçün \"sndconfig\" əmrini icra edin"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Səs kartı tapılmadı. Qurulumdan sonra \"harddrake\"ni işə salın"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV kartı"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Qrafiki ara üz"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Şəbəkə və İnternet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Vəkil vericiləri"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "quraşdırılıb"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Təhlükəsizlik Səviyyəsi"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Atəş Divarı"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "fəal"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "qeyri-fəal"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Açılış"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%2$s üstündə %1$s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Siz X-i quraşdırmadınız. Bundan əminsinizmi?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Açılış yükləyici hazırlanır"
+
+#: steps_interactive.pm:977
+#, fuzzy, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Dünyadan kənar yerdən gələn ya da namə'lum\n"
+" sisteminiz var, yaboot açılış yükləyicisi sizin üçün işləməyəcək.\n"
+"Qurulum davam edəcək ancaq kompüterinizi aça bilmək üçün\n"
+" BootX ya da başqa vasitədən istifadə etməlisiniz"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "aboot istifadə etmək istəyirsiniz?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"aboot qurulumunda xata, \n"
+"ilk disk bölməsini yox etsə belə yenə də qurulmasını istəyirsiniz?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "%s sürücüsünə boş bir disket yerləşdirin"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Avtomatik qurulum disketi hazırlanır"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Bə'zi bölmələr bitdi.\n"
+"\n"
+"Həqiqətən də çıxmaq istəyirsiniz?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Təbriklər"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Yenidən başlat"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Avtomatik qurulum disketi hazırla"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Avtomatik qurulum tamamilə avtomatikləşdirilə bilər,\n"
+"ancaq bu zaman o bütün sabit diskə əl qoyacaq!!!\n"
+"(bu başqa kompüterdə də sistemi qura bilmək üçündür).\n"
+"\n"
+"Gələcəkdə bu qurulumu təkrarlamaq istəyə bilərsiniz.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Təkrarla"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Avtomatlaşdırılmış"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Paket seçkilərini qeyd et"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Dil"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Lisenziya"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Siçan"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Sabit disklərin aşkar edilməsi"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Klaviatura"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Təhlükəsizlik"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Bölmələndirmə"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Qurulur"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Tanıtma"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "İstifadəçilər"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Şəbəkə"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Açılış yükləyicisi"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "X quraşdırılması"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "İcmal"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Xidmətlər"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Yeniləmələr"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Çıxış"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d paket, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d paket"
+
+#~ msgid "Language"
+#~ msgstr "Dil"
+
+#~ msgid "License"
+#~ msgstr "Lisenziya"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Qurulum sinifinin seçimi"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Təxmini olaraq hesaplanır"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Qurulacaq paketlərin seçimi"
+
+#~ msgid "Users"
+#~ msgstr "İstifadəçilər"
+
+#~ msgid "Networking"
+#~ msgstr "Şəbəkə"
+
+#~ msgid "Configure X"
+#~ msgstr "X quraşdırılması"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Çəyirdəyinizə uyğun gələn çəyirdək modullarına yetişilə bilmədi (%s faylı "
+#~ "əksikdir), bu çox vaxt açılış disketinizin Qurulum mediyası ilə "
+#~ "sinxronluq içində olmadığı mə'nasına gəlir (xahiş edirik, yeni disket "
+#~ "yaradın)."
diff --git a/perl-install/install/share/po/be.po b/perl-install/install/share/po/be.po
new file mode 100644
index 000000000..f50f9c852
--- /dev/null
+++ b/perl-install/install/share/po/be.po
@@ -0,0 +1,1556 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 1999 Mandriva.
+# Alexander Bokovoy <ab@avilink.net>, 2000
+# Maryia Davidouskaia <maryia@scientist.com>, 2000
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
+"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
+"Language-Team: be\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Ці ёсць у вас іншы?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "Сетка"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "Сетка"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, fuzzy, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr "Сувязь з люрам для атрымання спісу даступных пакетаў"
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr "Сувязь з люрам для атрымання спісу даступных пакетаў"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Выбар люстра для атрымання пакетаў"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Каталёг"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Не знойздены праграмы\n"
+
+#: any.pm:376
+#, fuzzy, c-format
+msgid "Looking at packages already installed..."
+msgstr "Вы не можаце адмяніць вылучэнне гэтага пакету. Ён ужо ўсталяваны"
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Пошук пакетаў для абнаўлення"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Наступныя пакеты будуць даданы да сістэмы"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, fuzzy, c-format
+msgid "NFS"
+msgstr "ФС"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Сетка"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "Калі ласка выбярыце відарыс відэа"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Файл ужо йснуе. Перапісаць?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Адмоўлена ў доступе"
+
+#: any.pm:1231
+#, fuzzy, c-format
+msgid "Bad NFS name"
+msgstr "Бяз назвы"
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "Загружаецца файл %s"
+
+#: any.pm:1294
+#, fuzzy, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Дадаць раздзел немагчыма"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr ""
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Усталёўваем"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Канфігурацыя"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr ""
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Пэўнае абсталяванне патрабуе камерцыйных драйвераў для працы.\n"
+"Часткова інфармацыю пра іх можна атрымаць тут: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Далучэнне да сеткі"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Адлучэнне ад сеткі"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "Вызначэнне прыладаў..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "Стварэньне меню ўжо запушчана"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "павінны мець"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "важна"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "вельмі добра"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "добра"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "можа быць"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr ""
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, fuzzy, c-format
+msgid "Workstation"
+msgstr "Канфігурацыя"
+
+#: share/meta-task/compssUsers.pl:25
+#, fuzzy, c-format
+msgid "Office Workstation"
+msgstr "Працоўныя мейсцы"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Офісныя праграмы: працэсары словаў (OpenOffice.org Writer, Kword), "
+"электроныя табліцы, аглядальнікі pdf-файлаў, і г.д."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Офісныя праграмы: працэсары словаў (kword, abiword), электроныя табліцы, "
+"аглядальнікі pdf-файлаў, і г.д."
+
+#: share/meta-task/compssUsers.pl:33
+#, fuzzy, c-format
+msgid "Game station"
+msgstr "Аўтэнтыфікацыя"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Забаўляльныя праграмы: аркады, стратэгіі і г.д."
+
+#: share/meta-task/compssUsers.pl:37
+#, fuzzy, c-format
+msgid "Multimedia station"
+msgstr "Мульцімедыя"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Рэдактары і прайгравальнікі гуку і відэа"
+
+#: share/meta-task/compssUsers.pl:43
+#, fuzzy, c-format
+msgid "Internet station"
+msgstr "Інтэрнэт"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:49
+#, fuzzy, c-format
+msgid "Network Computer (client)"
+msgstr "Сеткавы прынтэр (TCP/Socket)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:55
+#, fuzzy, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Ці жадаеце пратэсціраваць настройкі?"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Кансольныя інструментальныя сродкі"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Рэдактары, абалонкі, тэрміналы"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Распрацоўка"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Бібліятэкі і праграмы для распрацоўкі на С і С++"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Дакумэнтацыя"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "нігі і Howto па Linux і Free Software"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:84
+#, fuzzy, c-format
+msgid "Web Server"
+msgstr "Сервак"
+
+#: share/meta-task/compssUsers.pl:85
+#, fuzzy, c-format
+msgid "Apache"
+msgstr "Шлях:"
+
+#: share/meta-task/compssUsers.pl:88
+#, fuzzy, c-format
+msgid "Groupware"
+msgstr "Групы"
+
+#: share/meta-task/compssUsers.pl:89
+#, fuzzy, c-format
+msgid "Kolab Server"
+msgstr "NIS сэервер:"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, fuzzy, c-format
+msgid "Firewall/Router"
+msgstr "Рэстарт"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, fuzzy, c-format
+msgid "Internet gateway"
+msgstr "Інтэрнэт"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/Файл/_Стварыць"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "Каталог %s Так"
+
+#: share/meta-task/compssUsers.pl:104
+#, fuzzy, c-format
+msgid "FTP Server"
+msgstr "NIS сэервер:"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:109
+#, fuzzy, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Імя дамену"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Сервер друку"
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "X сэервер"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "База даньняў"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Пошта"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:137
+#, fuzzy, c-format
+msgid "Network Computer server"
+msgstr "Сеткавыя інтэрфэйсы"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:144
+#, fuzzy, c-format
+msgid "Graphical Environment"
+msgstr "Абалонка"
+
+#: share/meta-task/compssUsers.pl:146
+#, fuzzy, c-format
+msgid "KDE Workstation"
+msgstr "Канфігурацыя"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"The K Desktop Environment - асноўнае графічнае асяродзе з калекцыяй "
+"інструментальных сродкаў"
+
+#: share/meta-task/compssUsers.pl:151
+#, fuzzy, c-format
+msgid "GNOME Workstation"
+msgstr "Інфармацыя аб памяці"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Графічнае асяродзе са зручным дзеля выкарыстання наборам прыкладанняў і "
+"інструментальных сродкаў"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Працоўны стол"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Іншыя графічныя Працоўныя сталы"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Карыснасьці"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, fuzzy, c-format
+msgid "SSH Server"
+msgstr "NIS сэервер:"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "Прылады"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Сістэмнае адміністраваньне"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Канфігурацыя сеткі"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "Цэнтар кіраваньня"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "Немагчыма выдаліць \"%s\": %s."
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Узнікла памылка, якую не атрымліваецца карэктна апрацаваць,\n"
+"таму працягвайце на сваю рызыку."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Некаторыя важныя пакеты не былі ўсталяваны карэктна.\n"
+"Другі ваш cdrom дыск ці ваш cdrom маюць дэфекты.\n"
+"Праверце cdrom на вашым кампутары, выкарыстоўваючы\"rpm -qpl media/main/*.rpm"
+"\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Пераход на крок ‛%s’\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Усталяванне Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> паміж элементамі"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"У Вашай сістэме маецца недахоп рэсурсаў, таму магчымы праблемы\n"
+"пры ўсталяванні Mandriva Linux. У гэтым выпадку паспрабуйце тэкставую\n"
+"праграму ўсталявання. Для гэтага націсніце ‛F1’ у час загрузкі, а потым\n"
+"набярыце ‛text’ і націсніце <ENTER>."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Выбар групы пакетаў"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Асабісты выбар пакетаў"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Агульны памер: %d / %d Мб"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Дрэнны пакет"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Вэрсія: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Памер: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr ""
+
+#: steps_gtk.pm:317
+#, fuzzy, c-format
+msgid "Importance: "
+msgstr "важна"
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Вы не можаце вылучаць і адмяняць вылучэнне гэтага пакету"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr ""
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr ""
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr ""
+
+#: steps_gtk.pm:358
+#, fuzzy, c-format
+msgid "in order to keep %s"
+msgstr "Уласьцівасьці акна"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Вы не можаце выбраць гэты пакет, таму як не хапае месца для яго ўсталявання"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Наступныя пакеты будуць даданы да сістэмы"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Наступныя пакеты будуць выдалены"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Гэта абавязковы пакет, яго вылучэнне нельга адмяніць"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Вы не можаце адмяніць вылучэнне гэтага пакету. Ён ужо ўсталяваны"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Вы не можаце адмяніць вылучэнне гэтага пакету. Яго патрэбна абнавіць"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr ""
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Усталёўка"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "Перанесьці вылучэньне"
+
+#: steps_gtk.pm:406
+#, fuzzy, c-format
+msgid "Updating package selection"
+msgstr "Асабісты выбар пакетаў"
+
+#: steps_gtk.pm:411
+#, fuzzy, c-format
+msgid "Minimal install"
+msgstr "Ахоўнік экрану"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr ""
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Выбар пакетаў для ўсталявання"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Усталёўваем"
+
+#: steps_gtk.pm:468
+#, fuzzy, c-format
+msgid "No details"
+msgstr "Падрабязнасці"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Засталося часу "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Чакаецца"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d пакетаў"
+msgstr[1] "%d пакетаў"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Агульныя зьвесткі"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Настройка"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "not configured"
+msgstr "Настроіць панэль"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Адбылася памылка"
+
+#: steps_interactive.pm:97
+#, fuzzy, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Калі ласка, абярыце тып клавіятуры."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr ""
+
+#: steps_interactive.pm:128
+#, fuzzy, c-format
+msgid "Install/Upgrade"
+msgstr "Усталёўваем"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr ""
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr ""
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr ""
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Настройка IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:318
+#, fuzzy, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Змяніце ваш Cd-Rom!\n"
+"\n"
+"Калі ласка, устаўце Cd-Rom, пазначаны \"%s\", у ваш дыскавод і націсніце Ок "
+"пасля.\n"
+"Калі вы не маеце яго, націсніце Адмяніць, каб адмяніць усталяванне з гэтага "
+"Cd."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Прагляд даступных пакетаў"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Загрузка"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Захаваць"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "Загрузка файла"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr ""
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr ""
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr ""
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr ""
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Усё"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Падрыхтоўка ўсталяваньня"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Усталяванне пакету %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Усё роўна працягваць?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Асабісты выбар пакетаў"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Настройка пасля ўсталявання"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr ""
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Сувязь з люрам для атрымання спісу даступных пакетаў"
+
+#: steps_interactive.pm:666
+#, fuzzy, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Немагчыма адчыніць файл %s\n"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Абсталяваньне"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, fuzzy, c-format
+msgid "Sound card"
+msgstr "Праграма гуказапісу"
+
+#: steps_interactive.pm:809
+#, fuzzy, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Ці ёсць у вас іншы?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr ""
+
+#: steps_interactive.pm:833
+#, fuzzy, c-format
+msgid "Graphical interface"
+msgstr "Запуск X пры старце сістэмы"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, fuzzy, c-format
+msgid "Network & Internet"
+msgstr "Сеткавы інтэрфейс"
+
+#: steps_interactive.pm:851
+#, fuzzy, c-format
+msgid "Proxies"
+msgstr "Проксі"
+
+#: steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "configured"
+msgstr "Настроіць панэль"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Узровень бясьпекі"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr ""
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr ""
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "выключаны"
+
+#: steps_interactive.pm:891
+#, fuzzy, c-format
+msgid "Boot"
+msgstr "Манітор"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s на %s"
+
+#: steps_interactive.pm:921
+#, fuzzy, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Меню не было захавана. Ці сапраўды вы жадаеце выйсці?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Падрыхтоўка загрузчыка"
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Вы жадаеце выкарыстоўваць aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Памылка ўсталявання aboot, \n"
+"спрабаваць усталёўваць, негледзячы на магчымасць парушэння першага разделу?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Устаўце дыскету ў дыскавод %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Стварэнне дыскеты для ўсталявання"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Некаторыя крокі не завершаны.\n"
+"Вы сапраўды жадаеце выйсці зараз?"
+
+#: steps_interactive.pm:1055
+#, fuzzy, c-format
+msgid "Congratulations"
+msgstr "Прыміце віншаванні!"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Перазагрузка"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, fuzzy, c-format
+msgid "Generate auto install floppy"
+msgstr "Стварэнне дыскеты для ўсталявання"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+
+#: steps_interactive.pm:1070
+#, fuzzy, c-format
+msgid "Replay"
+msgstr "Граць"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Аўтаматычны"
+
+#: steps_interactive.pm:1073
+#, fuzzy, c-format
+msgid "Save packages selection"
+msgstr "Асабісты выбар пакетаў"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Выбар мовы"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr ""
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Мыш"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Вызначэнне жорсткага дыску"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Клавіятура"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Бясьпека"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr ""
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Усталёўваем"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Аўтэнтыфікацыя"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Карыстальнікі"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr ""
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr ""
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Настройка X Window"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Агульныя зьвесткі"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Сэрвісы"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr ""
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Выход"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d пакетаў"
+#~ msgstr[1] "%d пакетаў"
+
+#~ msgid "%d packages"
+#~ msgstr "%d пакетаў"
+
+#~ msgid "Language"
+#~ msgstr "Выбар мовы"
+
+#, fuzzy
+#~ msgid "License"
+#~ msgstr "Ліхтэнштайн"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Клас усталявання"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Чакаецца"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Выбар пакетаў"
+
+#~ msgid "Users"
+#~ msgstr "Карыстальнікі"
+
+#, fuzzy
+#~ msgid "Networking"
+#~ msgstr "Сетка"
+
+#~ msgid "Configure X"
+#~ msgstr "Настройка X Window"
diff --git a/perl-install/install/share/po/bg.po b/perl-install/install/share/po/bg.po
new file mode 100644
index 000000000..cd146a47e
--- /dev/null
+++ b/perl-install/install/share/po/bg.po
@@ -0,0 +1,1612 @@
+# translation of DrakX-bg.po to Bulgarian
+# Copyright (C) 2000,2003 Free Software Foundation, Inc.
+# Copyright (c) 2000 Mandriva
+# Bozhan Boiadzhiev <bozhan@plov.omega.bg>, 2000.
+# Borislav Aleksandrov <B.Aleksandrov@cnsys.bg>, 2003.
+# Boyan Ivanov <boyan17@bulgaria.com>, 2003.
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-bg\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2004-09-15 13:27+0200\n"
+"Last-Translator: Boyan Ivanov <boyan17@bulgaria.com>\n"
+"Language-Team: Bulgarian <dict@linux.zonebg.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.0.2\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Имате ли друг(и) ?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "Мрежа %s"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "Мрежа %s"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Свързване с Mandriva Linux web сайт за получаване на списъка с налични "
+"огледални сървъри..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Свързване с Mandriva Linux web сайт за получаване на списъка с налични "
+"огледални сървъри..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Изберете огледален сървър,от който да получите пакетите"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Директория"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Не мога да намеря %s на %s"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Търси във вече инсталираните пакети..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Търся пакети за обновяване"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Избрали сте следния(те) сървър(и): %s\n"
+"\n"
+"\n"
+"Тези сървъри се активират по подразбиране. Те нямат известни проблеми със\n"
+"сигурността, но може да се намерят нови. В този случай, ще трябва да сте\n"
+"сигурни, че ще надграждате възможно най-бързо.\n"
+"\n"
+"\n"
+"Наистина ли искате да инсталирате тези сървъри ?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Следните пакети ще бъдат изтрити за да се позволи обновяване на системата: %"
+"s\n"
+"\n"
+"\n"
+"Действително ли искате да изтриете тези пакети?\n"
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Следните пакети ще трябва да се инсталират:\n"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Мрежа"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "Моля изберете"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Файлът съществува. Да бъде ли презаписан?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Лисват права"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "добавен източник %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Не мога да направя моментна \"снимка\" преди разделянето на диска "
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Снимки ще бъдат налични след инсталиране в %s"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Инсталирам"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Настройка"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Вие трябва също да форматирате %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Част от хардуера на компютъра ви се нуждае от ``собствените си'' драйвери, "
+"за да работи.\n"
+"Можете да намерите повече информация за това на: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Включвам мрежата"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Изключване на мрежата"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "Изпращам файлове..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "Откриване в прогрес"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "нужен"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "важен"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "много добър"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "добър"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "става"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr ""
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Работна станция"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Офисна работна станция"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Офис програми: word-процесори (OpenOffice.org Writer, Kword), таблици "
+"(OpenOffice.org Calc, Kspread), преглед на PDF, и т.н."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Офис програми: word-процесори (kword, abiword), таблици (kspread, gnumeric), "
+"преглед на PDF, и т.н."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Игрална станция"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Забавни програми: аркадни игри, игри на маса, стратегии и т.н."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Мутимедийна станция"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Програми за пускане/поправяне на звук и видео"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Интернет станция"
+
+#: share/meta-task/compssUsers.pl:44
+#, fuzzy, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Набор от инструменти за четене и изпращане на поща и новини (pine, mutt, "
+"tin..) и за обикаляне из Мрежата"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Мрежов компютър (клиент)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Клиенти за различни протоколи включително SSH"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Инструменти за улесняване настройката на компютъра ви"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Конзолни инструменти"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Редактори, шелове, файлови инстрименти, терминали"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Разработка"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Библиотеки за разработка на C и C++, програми и include файлове"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Документация"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Книги и HOTWO-та за Linux и свободния софтуер"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Web Сървър"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Групуер"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab Сървър"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Сървър, Firewall/Рутер"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Интернет gateway"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/Файл/_Нов"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix пощенски сървър"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Сървър с директории"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP сървър"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, fuzzy, c-format
+msgid "DNS/NIS"
+msgstr "FND/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Име на домейн и Мрежов Информационен Сървър"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Сървър на принтера"
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "Samba Сървър"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Сървър, Бази-данни"
+
+#: share/meta-task/compssUsers.pl:117
+#, fuzzy, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL или MySQL сървър за бази-данни"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Сървър, Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache и Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Е-поща"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix пощенски сървър"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL или MySQL сървър за бази-данни"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Мрежов компютър, сървър"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS сървър, SMB сървър, Proxy сървър, SSH сървър"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Графична среда"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE работна станция"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"The K Desktop Environment, проста среда с колекция от придружаващи "
+"инструменти"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Gnome работна станция"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Графична среда с потребителски набор от приложения и desktop инструменти"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "настолен компютър"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Други графични desktop-и"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm и т.н."
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Помощни програми"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH Сървър"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "Webmin Обслужване"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Конфигурация на Терминален Сървър в Mandriva Linux"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Мониторинг на мрежата"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "Контролен център на Mandriva Linux"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "ННеуспешна настройка на принтер \"%s\"!"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Появи се грешка, но не знам как да се справя с нея деликатно.\n"
+"Можете да продължите на свой риск."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Някои важни пакети не се инсталираха както трябва.\n"
+"Или CDROM устройството ви или компакт диска ви е дефектен.\n"
+"Проверете компакт диска на инсталирания компютър използвайки \"rpm -qpl "
+"media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Навлизам в етап `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Инсталация на Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> между елементите"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Вашата система е с малки ресурси. Може да имате проблеми с инсталирането\n"
+"на Mandriva Linux. Ако се появи проблем опитайте с текстовата инсалация. "
+"Зацелта,\n"
+"натиснете 'F1', когато стартирате от CDROM и въведете 'теьт'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Избор на група пакети"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Избиране на пакети един по един"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Обща големина: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Лош пакет"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Версия: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Размер: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d КБ\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Важност:"
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Не можете да отбележете/деотбележете този пакет"
+
+#: steps_gtk.pm:355
+#, fuzzy, c-format
+msgid "due to missing %s"
+msgstr "липсва kdesu"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "поради неопределен %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr ""
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr ""
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Не можете да оставите пакета немаркиран, защото нямате място да го "
+"инсталирате"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Следните пакети ще бъдат инсталирани"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Следните пакети ще бъдат премахнати"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Това е нужен пакет, не може да бъде немаркиран"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Не можете да оставите този пакет немаркиран. Той вече е инсталиран"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Не можете да изключите този пакет. Той трябва да бъде обновен"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Покажи автоматично отбелязаните пакети"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Инсталирай"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "Избор на пакети"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Обновяване на избора на пакети"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Миминална инсталация"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Управление на софтуера"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Изберете пакетите, които искате да инсталирате"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Инсталирам"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Без подробности"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Оставащо време "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Пресмятане"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d пакета"
+msgstr[1] "%d пакета"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Обобщение"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Настрока"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "не е конфигуриран"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Появи се грешка"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Моля, изберете подреждане на клавиатурата."
+
+#: steps_interactive.pm:99
+#, fuzzy, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Ето пълен списък на достръпните страни"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Инсталирай/Обнови"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Това нова инсталация ли е или обновяване ?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Обновява %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Ключ за криптиране на %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Настройка на IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Няма свободно място за 1 МБ стартиращо поле ! Инсталацията ще продължи, но, "
+"за да стартирате системата си, ще трябва да създадете стартиращо поле в "
+"DiskDrake"
+
+#: steps_interactive.pm:226
+#, fuzzy, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Няма свободно място за 1 МБ стартиращо поле ! Инсталацията ще продължи, но, "
+"за да стартирате системата си, ще трябва да създадете стартиращо поле в "
+"DiskDrake"
+
+#: steps_interactive.pm:318
+#, fuzzy, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Сменете CD-ROM !\n"
+"\n"
+"Моля, сложете CD-ROM озаглавен \"%s\" в устройството и натиснете Ok, когато "
+"сте готови.\n"
+"Ако го нямате, натиснете Отмяна, за да избегнете инсталирането от този CD-"
+"ROM."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Търся налични пакети..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Може изберете зареждане или запис на избора на пакети на флопи.\n"
+"Форматът е същият като auto_install генерираните дискети."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Натовареност"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Запазва"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "Зареждане на файл"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Избраната големина е по-голяма от достъпното пространство"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Тип инсталация"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Вие не сте избрали никаква група от пакети.\n"
+"Моля, изберете минималната инсталация кояти искате:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "С X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "С базова документация (препоръчва се!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Наистина минимална инсталация (особенно без urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Всички"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Подготвям инсталацията"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Инсталиране на пакета %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Появи се грешка при поръчването на пакетите:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Да продължа ли все пак ?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Запази избор на пакети"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Появи се грешка при инсталиране на пакетите:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "След инсталационна настройка"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Обновяване"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Свързване с огледалния сървър за получаване на списъка с пакетите"
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Не мога да се свръжа с огледален сървър' %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Хардуер"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Звукова карта"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Имате ли ISA звукова карта?"
+
+#: steps_interactive.pm:811
+#, fuzzy, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Изпълнете \"sndconfig\" след инсталация за да конфигурирате вашата звукова "
+"карта"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Няма открита звукова карта. Опитайте \"harddrake\" след инсталацията"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV карта"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Графичен интерфайс"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Мрежа и интернет"
+
+#: steps_interactive.pm:851
+#, fuzzy, c-format
+msgid "Proxies"
+msgstr "Профил "
+
+#: steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "configured"
+msgstr "пренастройка"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Ниво на защита"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Защитна стена"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "активирано"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "изключен"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Зареждане"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s на %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Вие не сте конфигурирали X. Сигурни ли сте, че искате това?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Подготовка на bootloader"
+
+#: steps_interactive.pm:977
+#, fuzzy, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Изглежда имате старовремска или неизвестна\n"
+"машина, на която yaboot няма да проработи.\n"
+"Инсталацията ще продължи, но ще трябва\n"
+"да иползвате BootX, за да стартирате машината си"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Искате ли да използвате aboot ?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Грешка при инсталиране на aboot, \n"
+"да се опитам ли да продължа инсталацията дори, ако това унижтожи първия дял ?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Сложете празна дискета в устройство %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Подготвям дискета с автоматична инсталация"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Някои етапи не са завършени.\n"
+"\n"
+"Наистина ли искате да излезете сега ?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Поздравления"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Престартира"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Подготви дискета за автоматична инсталация"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Автоматичната инсталация може да бъде напълно автоматизирана,\n"
+"в такъв случай ще превземе твърдия ви диск !!!\n"
+"(това е за предназначено за инсталиране на друга машина).\n"
+"\n"
+"Може би искате да повторите инсталацията.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Повтори"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Автоматизиран"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Запази избор на пакети"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Избор на език"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Лиценз"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Мишка"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Засичане на дисковете"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Клавиатура"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Сигурност"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Разделяне на дялове"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Инсталирам"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Идентификация"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Потребители"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Мрежа"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Bootloader"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Настройка на Х"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Обобщение"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Услуги"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Обновяване"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Излез"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d пакета"
+#~ msgstr[1] "%d пакета"
+
+#~ msgid "%d packages"
+#~ msgstr "%d пакета"
+
+#~ msgid "Language"
+#~ msgstr "Избор на език"
+
+#~ msgid "License"
+#~ msgstr "Лиценз"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Избор на клас инсталация"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Пресмятане"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Пакети за инсталиране"
+
+#~ msgid "Users"
+#~ msgstr "Потребители"
+
+#~ msgid "Networking"
+#~ msgstr "Мрежа"
+
+#~ msgid "Configure X"
+#~ msgstr "Настройка на Х"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Нямам достъп да модулите на ядрото съответстващи на вашият (файл %s "
+#~ "липсва), това означава, че вашето флопи не е синхронизирано с "
+#~ "инсталационният носител (моля направете ново boot флопи)"
diff --git a/perl-install/install/share/po/bn.po b/perl-install/install/share/po/bn.po
new file mode 100644
index 000000000..aea594bfe
--- /dev/null
+++ b/perl-install/install/share/po/bn.po
@@ -0,0 +1,1618 @@
+# Copyright (C) 2004 Free Software Foundation, Inc.
+# Omi Azad <omi@altruists.org>, 2004.
+# Khandakar Mujahidul Islam <suzan@BengaLinux.Org>, 2004.
+# Progga <progga@BengaLinux.Org>, 2004.
+# Jamil Ahmed <jamil@BengaLinux.Org>, 2004, 2005, 2007.
+# Samia <mailsamia2001@yahoo.com>, 2005.
+# Tisa Nafisa <tisa_nafisa@yahoo.com>, 2007.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX HEAD\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-02-19 00:44+0600\n"
+"Last-Translator: Tisa Nafisa <tisa_nafisa@yahoo.com>\n"
+"Language-Team: Bangla <mdk-translation@bengalinux.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "আপনার কি আরও একটি সম্পুরক মাধ্যম আছে?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"নিচের মিডিয়াটি পাওয়া গেছে এবং ইনস্টল করার সময় ব্যবহার করা হবে: %s.\n"
+"\n"
+"\n"
+"আপনার কি কনফিগার করার জন্য কোনো সম্পুরক ইনস্টলেশন মিডিয়াম আছে?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "সিডি-রম"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "নেটওয়ার্ক (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "নেটওয়ার্ক (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "নেটওয়ার্ক (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "mirror এর ইউ-আর-এল?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "ইউআরএল অবশ্যই ftp:// অথবা http:// দিয়ে শুরু হবে"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr "উপস্থিত মিররের তালিকার জন্য Mandriva Linux-এ সংযুক্ত করা হচ্ছে..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr "উপস্থিত মিররের তালিকার জন্য Mandriva Linux-এ যোগাযোগ করতে ব্যর্থ হয়েছে..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "আপনি একটি মিরর পছন্দ করুন যেখান থেকে প্যাকেজগুলি নেবেন"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "NFS সেটআপ"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "অনুগ্রহ করে আপনার NFS মিডিয়ার হোস্টনাম এবং ডিরেক্টরী প্রবেশ করান"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "হোস্টনাম পাওয়া যাচ্ছে না"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "ডিরেক্টরী অবশ্যই \"/\" দিয়ে শুরু হবে"
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "NFS মাউন্টের জন্য হোস্টনাম ?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "ডিরেক্টরি"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "সম্পুরক"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "এই mirror এ কোন hdlist ফাইল পাওয়া যাচ্ছে না"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "যে সমস্থ প্যাকেজ ইনস্টল হয়ে আছে সেগুলি পর্যবেক্ষন করা হচ্ছে..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "আপগ্রেডের পূর্বে প্যাকেজ মুছে ফেলা হচ্ছে..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "আপগ্রেড করার জন্য প্যাকেজ খোঁজা হচ্ছে..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"আপনি নিম্মলিখিত সার্ভার(গুলো) বেছে নিয়েছেন: %s\n"
+"\n"
+"\n"
+"এই সার্ভারগুলো ডিফল্টভাবেই চালু করা থাকে। তাদের কোন নিরাপত্তা সমস্যা\n"
+"নেই, কিন্তু নতুন কিছুর ক্ষেত্রে তার প্রয়োজন আছে। সেক্ষেত্রে আপনি অবশ্যই সেগুলোকে\n"
+"যত তাড়াতাড়ি সম্ভব আপগ্রেড করার ক্ষেত্রে নিশ্চিত হোন।\n"
+"\n"
+"\n"
+"আপনি কি আসলেই এই সার্ভারগুলো ইনস্টল করতে চান?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"আপনার সিস্টেম আপগ্রেড করার ক্ষেত্রে নিম্নলিখিত প্যাকেজগুলো মুছে যাবে: %s\n"
+"\n"
+"\n"
+"আপনি কি আসলেই এই প্যাকেজগুলো মুছে ফেলতে চান?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "নিম্নলিখিত ডিস্কগুলো নামান্তর করা হয়েছে:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (পূর্বের নাম %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "এইচ-টি-টি-পি"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "এফ-টি-পি"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "নেটওয়ার্ক"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "অনুগ্রহ করে একটি মিডিয়া নির্বাচন করুন"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "এই ফাইলটি আগে থেকেই আছে। করব?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "অনুমতি প্রদান করা হয়নি"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "ত্রুটিপূর্ণ NFS নাম"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "অগ্রহণযোগ্য মিডিয়া %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "পার্টিশন করার আগে স্ক্রিনশট তৈরী করা যায়নি"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "%s -এ ইনস্টল করার পরে স্ক্রিনশট পাওয়া যাবে"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr " ইনস্টলেশন"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "কনফিগারেশন"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "আপনাকে অবশ্যই %s-ও ফরম্যাট করতে হবে"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"আপনার কম্পিউটারের কিছু হার্ডওয়্যার কাজ করার জন্য ``মালিকানার'' ড্রাইভার প্রয়োজন।\n"
+"আপনি তাদের সম্পর্কে এখান থেকে তথ্য নিতে পারবেন: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "নেটওয়ার্ককে চালু করা হচ্ছে"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "নেটওয়ার্ককে বন্ধ করা হচ্ছে"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "%s ফাইল ডাউনলোড করা হচ্ছে..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "ভবিষ্যতে ব্যবহারের জন্য ডিস্কে কিছু প্যাকেজ কপি করা হচ্ছে"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "কপি সম্পন্ন হচ্ছে"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "অবশ্যই থাকতে হবে"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "জরুরী"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "খুবই সুন্দর"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "সুন্দর"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "হয়তোবা"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "আরকেইয়া"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "ফ্ল্যাটআউট"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "থ্রিডি"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "সিএমএস"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "সিআরএম"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "২০০৭ পণ্য লাইন"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "ইনভিকটাস ফায়ারওয়াল"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "লাইভ মডিউল অনুসন্ধান"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "কিভাবে রেজিস্টার করবেন"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "আরপিএমড্র্যাক ২"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva অনলাইন সেবা"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "নতুন থীম"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "ওয়েব ২.০"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "ক্যসপারস্কাই"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "লিনডিভিডি"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "স্কাইপ"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "ওয়ার্কষ্টেশন"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "অফিস ওয়ার্কষ্টেশন"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"অফিস প্রোগ্রামসমূহ: ওয়ার্ডপ্রসেসর (OpenOffice.org Writer, Kword), স্প্রেডসিট "
+"(OpenOffice.org Calc, Kspread), PDF ফাইল প্রদর্শক ইত্যাদী"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"অফিস প্রোগ্রামসমূহ: ওয়ার্ডপ্রসেসর (kword, abiword), স্প্রেডসিট (kspread, gnumeric), "
+"PDF ফাইল প্রদর্শক ইত্যাদী"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "গেশ ষ্টেশন"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "উদ্দীপনামূলক প্রোগ্রামসমূহ: আর্কেড, বোর্ড, স্ট্রেটেজি, ইত্যাদি"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "মাল্টিমিডিয়া ষ্টেশন"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "সাউন্ড এবং ভিডিও দেখার/এডিট করার প্রোগ্রামসমূহ"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "ইন্টারনেট ষ্টেশন"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"মেইল আদানপ্রদান, খবর পড়া এবং ওয়েব ব্রাউজিং (mutt, tin..) এর জন্য কিছু টুলের সেট"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "নেটওয়ার্ক কম্পিউটার (ক্লাইন্ট)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "SSH সহ বিভিন্ন প্রোটকলের জন্য ক্লাইন্টসমূহ"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "আপনার কম্পিউটারের কনফিগারেশন সহজ করার জন্য কিছু টুল"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "কনসল টুল"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "এডিটর, শেল, ফাইল টুল, টার্মিনাল সমূহ"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "ডেভলপমেন্ট"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C এবং C++ ডেভলপমেন্টের লাইব্রেরী, প্রগ্রাম এবং include ফাইলসমূহ"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "ডকুমেন্টেশন"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "লিনাক্স এবং ফ্রী সফটওয়ার সংক্রান্ত বই ও হাউটু (HOWTO)"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "লিনাক্সের সাধারণ আধার। তৃতীয়পক্ষ এপ্লিকেশন সমূহের সাপোর্ট"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "ওয়েব সার্ভার"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "এ্যপাচি"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "গ্রুপওয়্যার"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "কোলাব সার্ভার"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "ফায়ারওয়াল/রাউটার"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "ইন্টারনেট গেটওয়ে"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "মেইল/সংবাদ"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix মেইল সার্ভার, Inn সংবাদ সার্ভার"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "ডিরেক্টরি সার্ভার"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP সার্ভার"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "ডিএনএস/এনআইএস"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "ডোমেইন নেম এবং নেটওয়ার্ক ইনফরমেশন সার্ভার"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "ফাইল এবং প্রিন্টার শেয়ারিং সার্ভার"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS সার্ভার, Samba সার্ভার"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "ডেটাবেস"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL অথবা MySQL ডেটাবেস সার্ভার"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "ওয়েব/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "এ্যপাচি, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "মেইল"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix মেইল সার্ভার"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL অথবা MySQL ডেটাবেস সার্ভার"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "নেটওয়ার্ক কম্পিউটার সার্ভার"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS সার্ভার, SMB সার্ভার, Proxy সার্ভার, ssh সার্ভার"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "গ্রাফিকাল পরিবেশ"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE ওয়ার্কষ্টেশন"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "K ডেক্সটপ, কিছু সহযোগীমূলক টুলের সমন্বয়ে একটি সাধারণ গ্রাফিকাল পরিবেশ"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "গুহনোম ওয়ার্কষ্টেশন"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"ব্যবহারকারীর বন্ধুসূলভ কিছু এপ্লিকেশন এবং ডোক্সটপ টুলের সমন্বয়ে একটি গ্রাফিকাল পরিবেশ"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm ডেস্কটপ"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "অন্যান্য গ্রাফিকাল ডেক্সটপ"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, ইত্যাদি"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "ইউটিলিটিসমূহ"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH সার্ভিস"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "ওয়েবমিন"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "ওয়েবমিন দূরবর্তী কনফিগারেশন সার্ভার"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "নেটওয়ার্ক ইউটিলিটিসমূহ/পর্যবেক্ষণ"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "পর্যবেক্ষণ টুলসমূহ, হিসাবরক্ষণ প্রসেস করে, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva উইজার্ডসমূহ"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "সার্ভার কনফিগার করার জন্য উইজার্ডসমূহ"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"একটি ত্রুটি সম্পাদিত হয়েছে, কিন্তু আমি বুঝতে পারছিনা\n"
+"কিভাবে এটা সন্দরভাবে হ্যান্ডল করবো।\n"
+"আপনি নিজের ঝুঁকিতে অগ্রসর হতে পারেন।"
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"কিছু গুরুত্বপূর্ণ প্যাকেজ সঠিকভাবে ইনস্টল হয়নি।\n"
+"হয় আপনার সিডিরম ড্রাইভ অথবা আপনার সিডিরম ত্রুটিপূর্ণ।\n"
+"কোন ইনস্টল কম্পিউটারে \"rpm -qpl media/main/*.rpm\" কমান্ডের মাধ্যমে সিডিরম "
+"পরীক্ষাকরুন\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "`%s' স্টেপে প্রবেশ করছি\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux ইনস্টলেশন %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "উপাদানগুলোর মধ্যে <Tab>/<Alt-Tab> "
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"আপনার সিস্টেমের রিসোর্স খুব কম। ম্যান্ড্রিব লিনাক্স ইনস্টল করার সময় আপনি সমস্যার "
+"মুখোমুখি\n"
+"হতে পারেন. যদি সেটা ঘটে, তাহলে আপনাকে এর পরিবর্তে টেক্স ইনস্টল করতে হবে। এর "
+"জন্য,\n"
+"যখন সিডিরম থেকে বুট হবে তখন `F1' চাপুন, তারপর `text' লিখুন।"
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "প্যাকেজ গ্রুপ নির্বাচন"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "আলাদাভাবে প্যাকেজ নির্বাচন"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "মোট সাইজ: %d / %d এমবি"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "বাজে প্যাকেজ"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "ভার্সন:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "সাইজ:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "প্রাধান্য:"
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "আপনি এই প্যাকেজটি নির্বাচন/অ-নির্বাচন করতে পারবেন না"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "%s না থাকার কারনে"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "%s যথেষ্ট না হবার কারনে"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "%s প্রচারের চেষ্টা চলছে"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "%s রাখার কারণে"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"আপনি এই প্যাকেজটি নির্বাচন করতে পারবেননা যেহেতু এটা ইনস্টল করার জন্য যথেষ্ট জায়গা "
+"ফাঁকা নেই"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "এই প্যাকেজগুলি ইনস্টল হতে যাচ্ছে"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "এই প্যাকেজগুলি অপসরিত হতে যাচ্ছে"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "এটি একটি বাধ্যতামূলাক প্যাকেজ, এটি কোনভাবেই বাদ দেয়া যাবেনা"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr ""
+"আপনি এই প্যাকেজটির অ-নির্বাচন করতে পারবেন না, এটা আগে থেকেই ইনস্টল হয়ে আছে"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "আপনি এই প্যাকেজটি অ-নির্বাচন করতে পারবেন না। এটা অবশ্যই আপগ্রেড হতে হবে"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "সংয়-নির্বাচিত প্যাকেজগুলি দেখাও"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "ইনস্টল"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "নির্বাচনসমূহ লোড/সংরক্ষণ করো"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "প্যাকেজের নির্বাচন আপগ্রেড করা হচ্ছে"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "সর্বনিম্ন ইনস্টল"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "সফটওয়্যার ম্যানেজমেন্ট"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "আপনি যেই প্যাকেজগুলি ইনস্টল করতে চান তা পছন্দ করুন"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "ইনস্টলেশন"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "কোন বিস্তারিত ছাড়া"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "সময় বাকী আছে"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "নির্ধারণ চলছে"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d প্যাকেজ সমূহ"
+msgstr[1] "%d প্যাকেজ সমূহ"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "সারাংশ"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "কনফিগার"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "কনফিগার করা হয়নি"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"নিম্নলিখিত ইনস্টলেশন মিডিয়া পাওয়া গেছে।\n"
+"যদি আপনি এগুলোর মধ্যকার কিছু এড়িয়ে যেতে চান, তাহলে এখন সেগুলোকে অনির্বাচিত করুন।"
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"ইনস্টলেশনের আগে আপ‌নি সিডির তথ্যসমূহ হার্ডডিস্কে কপি করতে পারেন।\n"
+" এরপর হার্ডডিস্ক থেকে ইনস্টলেশন চলতে থাকবে এবং সিস্টেম সম্পূর্ন ইনস্টলেশনের পরও "
+"প্যাকেজগুলো রয়ে যাবে।"
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "CD গুলো সম্পুর্ন কপি করো "
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "একটি ত্রুটি সম্পাদিত হয়েছে"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "অনুগ্রহ করে আপনার কীবোর্ড বিন্যাস পছন্দ করুন।"
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "এখানে উপস্থিত সমস্ত কীবোর্ডের তালিকা রয়োছে"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "ইনস্টল/আপগ্রড"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "এটা কি একটি ইনস্টলেশন না আপগ্রেড?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "%s আপগ্রড করো"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "%s -এর জন্য এনক্রিপশন কী"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE কনফিগারেশন চলছে"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"১ মেগাবাইটের bootstrap এর জন্য খালি জায়গা নেই! ইনস্টল অগ্রসর হবে, কিন্তু আপনার "
+"সিস্টেম বুট করার জন্য, আপনাকে DiskDrake থেকে bootstrap পার্টিশন তৈরী করতে হবে"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"আপনাকে একটি PPC PReP Boot বুটস্ট্র্যাপ তৈরী করতে হবে! ইনস্টলেশন অগ্রসর হবে, তবে "
+"আপনার সিস্টেম বুট করার জন্য, DiskDrake এর বুটস্ট্র্যাপ পার্টিশনটি প্রয়োজন"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"আপনার সিডিরম পরিবর্তন করুন!\n"
+"অনুগ্রহ করে \"%s\" লেখা সিডিরমটি আপনার ড্রাইভে প্রবেশ করান এবং যখন সেটা হয়ে যাবে "
+"ঠিক আছে চাপুন।\n"
+"যদি সেটা আপনার না থাকে, এই সিডিরম থেকে ইনস্টলেশন এড়িয়ে যেতে বাতিল চাপুন।"
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "বরাদ্দকৃত প্যাকেজসমূহ খোঁজা হচ্ছে..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"ইনস্টলেশন অথবা সাম্প্রতিকীকরনের জন্য আপনার সিস্টেমে যথেষ্ট পরিমান জায়গা খালি নেই (%"
+"dএমবি > %dএমবি)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"অনুগ্রহ করে প্যাকেজ নির্বাচন লোড বা সংরক্ষণ বাছাই করুন।\n"
+"এই ফরম্যাটটি auto_install দ্বারা তৈরী ফাইলসমূহের মত।"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "চাপ"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "সংরক্ষণ"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "অগ্রহণযোগ্য ফাইল"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "উপস্থিত জায়গার চাইতে নির্বাচিত সাইজটি অনেক বড়"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "ইনস্টলের ধরণ"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"আপনি প্যাকেজের কোন গ্রুপ নির্বাচন করেননি।\n"
+"অনুগ্রহ করে আপনি যে ক্ষুদ্রাকৃতির ইনস্টলেশন চান তা পছন্দ করুন:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "X-এর সাথে"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "সাধারন নির্দেশিকার সাথে (পরামর্শ দেয়া হচ্ছে!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "এক্কেবারেই ক্ষুদ্র ইনস্টলেশন (বিশেষ করে কোন urpmi ছাড়া)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "সকল"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "ইনস্টলেশনের প্রস্তুতি চলছে"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "%s প্যাকেজ সমূহ ইনস্টল করা হচ্ছে"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "প্যাকেজগুলো বিন্যস্ত করতে গিয়ে একটি ভুল ছিল:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "তবুও যাব?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "পুনরায় চেষ্টা করো"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "এই প্যাকেজটি এড়িয়ে যাও"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "\"%s\" মাধ্যমের সব প্যাকেজ এড়িয়ে যাও"
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "মিডিয়া এবং প্যাকেজের নির্বাচন এ ফিরে যাও"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "%s প্যাকেজ ইনস্টল করতে সমস্যা হয়েছে।"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "ইনস্টলের পরের কনফিগারেশন"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "অনুগ্রহ করে নিশ্চিত করুন যে সাম্প্রতিক মডিউলগুলো %s ড্রাইভ এ আছে"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "আপডেট"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"আপনি এখন আপডেট প্যাকেজ ডাউনলোড করতে পারবেন। এই প্যাকেজগুলো\n"
+"এই ডিস্ট্রিবিউশন রিলিজ হবার পর আপডেট করতে পারেন। তারা নিরাপত্তা\n"
+"বা ত্রুটি নির্দিষ্ট ধারণ করতে পারে।\n"
+"\n"
+"এই প্যাকেজগুলো ডাউনলোড করতে, আপনার ইন্টারনেট সংযুক্তিতে কাজ করতে\n"
+"হবে।\n"
+"\n"
+"আপনি কি ইনস্টল আপডেট করতে চান?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "প্যাকেজের তালিকার জন্য মিররের সাথে সংযুক্ত করা হচ্ছে..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "%s মিররের সাথে সংযুক্ত হওয়া গেলনা"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "হার্ডওয়্যার"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "সাউন্ডকার্ড"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "আপনার কি একটি ISA সাউন্ড কার্ড আছে?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"ইনস্টল শেষ হবার পরে সাউন্ড কার্ড কনফিগার করার জন্য \"alsaconf\" অথবা \"sndconfig"
+"\" চালাও"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "কোন সাউন্ডকার্ড সনাক্ত হয়নি, ইনস্টলের পরে \"harddrake\" দিয়ে চেষ্টা করুন"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "টিভি কার্ড"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "গ্রাফিকাল ইন্টারফেস"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "নেটওয়ার্ট এবং ইন্টারনেট"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "প্রক্সিসমূহ"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "কনফিগার করা হয়েছে"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "সিকউরিটি লেভেল"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "ফায়ারওয়াল"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "সক্রিয় হয়েছে"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "অকার্যকর করা হয়েছে"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "বুট"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s -এ %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "আপনি X কনফিগার করেননি। আপনি কি নিশ্চিত এরকমটি চান?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Bootloader প্রস্তুত করা হচ্ছে..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"আপনার মেশিনটি মনে হচ্ছে একটি Oldworld বা অজানা মেশিন, yaboot বুটলোডারটি আপনার "
+"জন্য কাজ করবে না। ইনস্টল এগিয়ে যাবে, কিন্তু আপনার মেশিনকে বুট করার জন্য আপনাকে "
+"BootX বা অন্য কোন কিছু ব্যবহার করতে হবে। root fs এর জন্য কার্নেল প্রেরিত মান হবে: "
+"root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "আপনি কি aboot ব্যবহার করতে চান?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Aboot ইনস্টলে ব্যর্থ হয়েছে,\n"
+"জোর করে ইনস্টলের চেষ্টা করবো যদিও সেটা প্রথম পার্টিশনকে নষ্ট করতে পারে?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"এই নিরাপত্তা লেভেলে, উইন্ডোজ পার্টিশনের ফাইলে প্রবেশ শুধুমাত্র অ্যাডমিনিস্ট্রেটরের আছে।"
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "%s ড্রাইভে একটি ফাঁকা ফ্লপি ঢোকান"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "সয়ং ইনস্টল ফ্লপি তৈরী করা হচ্ছে..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"কিছু ধাপ সম্পূর্ন করা যায়নি।\n"
+"\n"
+"আপনি কি এখন বের হতে চান?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "স্বাগতম"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "রিবুট"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "সয়ংক্রিয় ইনস্টল ফ্লপি প্রস্তুত করো"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"যদি আপনি চান স্বয়ংক্রিয় ইনস্টল পুরোপুরি স্বয়ংক্রয়ভাবে হবে,\n"
+"সেক্ষেত্রে সেটা হার্ড ড্রাইভের কর্তৃত্বে!!\n"
+"(এর মানে হচ্ছে অন্য একটি বাক্সে ইনস্টল)।\n"
+"\n"
+"আপনি তার চেয়ে পুনরায় ইনস্টলেশন চালু করুন।\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "জবাব"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "সয়ংক্রিয়ভাবে"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "প্যাকেজের নির্বাচন সংরক্ষণ করে রাখো"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "ভাষা"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "লাইসেন্স"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "মাউস"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "হার্ড ড্রাইভ সনাক্ত"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "ইনস্টলেশনের শ্রেনী"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "কি-বোর্ড"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "সিকিউরিটি"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "পার্টিশন করা হচ্ছে"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "ফরম্যাট করা হচ্ছে"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "প্যাকেজ পছন্দ করা হচ্ছে"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "ইনস্টলেশন"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "অনুমোদন"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "ব্যবহারকারী"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "নেটওয়ার্ক করা"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "বুটলোডার"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "X কনফিগার"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "সারাংশ"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "সার্ভিস সমূহ"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "আপডেট"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "বাহির"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d প্যাকেজ সমূহ"
+#~ msgstr[1] "%d প্যাকেজ সমূহ"
+
+#~ msgid "%d packages"
+#~ msgstr "%d প্যাকেজ সমূহ"
+
+#~ msgid "Language"
+#~ msgstr "ভাষা"
+
+#~ msgid "License"
+#~ msgstr "লাইসেন্স"
+
+#~ msgid "Installation class"
+#~ msgstr "ইনস্টলেশনের শ্রেনী"
+
+#~ msgid "Formatting"
+#~ msgstr "ফরম্যাট করা হচ্ছে"
+
+#~ msgid "Choosing packages"
+#~ msgstr "প্যাকেজ পছন্দ করা হচ্ছে"
+
+#~ msgid "Users"
+#~ msgstr "ব্যবহারকারী"
+
+#~ msgid "Networking"
+#~ msgstr "নেটওয়ার্ক করা"
+
+#~ msgid "Configure X"
+#~ msgstr "X কনফিগার"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "আপনার কার্ণেলের কার্ণেল মডিউলগুলোতে প্রবেশ করতে পারছে না (%s ফাইলটি হারিয়া "
+#~ "গেছে), এর স্বাভাবিক অর্থ হচ্ছে আপনার বুট ফ্লপি ইনস্টলেশন মিডিয়ামের সাথে sync এ "
+#~ "নেই (অনুগ্রহ করে একটি নতুন বুট ফ্লপি তৈরী করুন)"
diff --git a/perl-install/install/share/po/br.po b/perl-install/install/share/po/br.po
new file mode 100644
index 000000000..b56d509cd
--- /dev/null
+++ b/perl-install/install/share/po/br.po
@@ -0,0 +1,1562 @@
+# DrakX e Brezhoneg.
+# Copyright (C) 1999-2005 Mandriva
+# Thierry Vignaud <tvignaud@mandriva.com>, 1999-2005
+# Jañ-Mai Drapier <jan-mai.drapier@mail.dotcom.fr>, 1999-2000
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX 10.2\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2006-11-29 20:37+0100\n"
+"Last-Translator: Thierry Vignaud <tvignaud@mandriva.com>\n"
+"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1;plural=0\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Hag ur vedia all hoc'h eus ?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Rouedad (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Rouedad (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Rouedad (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL ar melezour ?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "Dao en deus an URL kregiñ gant ftp:// pe http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"O taremprediñ al lec'hienn Mandriva Linux evit kaout roll ar melezouroù "
+"hegerz ..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Sac'het en ur taremprediñ al lec'hienn Mandriva Linux evit kaout roll ar "
+"melezouroù hegerz "
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Dibabit ur melezour da dapout ar pakadoù diwarnañ"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Kefluniadur NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Roit anv ostiz ha renkell ho media NFS"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Anv ostiz ar marc'hañ NFS ?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Renkell"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "A-gresk"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Ne m'eus ket kavout ur roll pakadoù e-barzh ar melezour-mañ. Kit da wiriañ "
+"al lec'hiadur-mañ zo mad."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "O kavout pakadoù zo staliet eo ..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "O zilemel ar pakadoù a-raok bremanaat ..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "O kavout pakadoù da vremanaat ..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Ar pakadoù a-heul zo war-nes bezañ distaliet evit bremañaat ho reizhiad : %"
+"s\n"
+"\n"
+"\n"
+"Ha fellout a ra deoc'h da vat lemel anezho ?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Adenvelet e oa ar bladenn/pladennoù-mañ :"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (a vez graet %s dioutañ diaraok)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Rouedad"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Dibabit ur vedia, mar plij"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Ar restr zo endeo. Rasklañ anezhañ ?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Aotre nac'het"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "N'eo ket un anv NFS mat"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "N'eo ket mat ar vedia %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "N'hellan ket sevel skrammpakeroù a-raok parzhañ"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Skrammpakeroù a vo bet kavet goude staliañ e %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "O staliañ"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Kefluniadur"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Ret eo deoc'h furmadiñ %s ivez"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "O lañsañ ar rouedad"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "O tizenaouiñ ar rouedad"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Oc'h enkargañ ar restr %s ..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Oc'h eilañ"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "a rankfec'h kaout"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "a-bouez"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "brav-tre"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "brav"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "marteze"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Moger tan Invictus"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Penaos enskrivañ ?"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Servijoù Mandriva enlinenn"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Giz nevez"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Post labour"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Post labour burevek"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Programmoù burev : skridtreterezhioù (OpenOffice.org Writer, Kword), "
+"logerioù (OpenOffice.org Calc, Kspread), gwelerien PDF, ..."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Programmoù burev : skridtreterezhioù (kword, abiword), logerioù (kspread, "
+"gnumeric), gwelerien PDF, ..."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Arsav c'hoarioù"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Arsav liesvedia"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Programmoù evit seniñ/aozañ tonioù ha videoù"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Arsav internet"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Urzhiataer rouedad (kliant)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Pratikoù evit meur a gomennad (da skouer ssh)"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Ostilhoù evit kefluniañ hoc'h urzhiataer dre aes"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Ostilhoù letrin"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Aozerien, shelloù, ostilhoù restr, termenelloù"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Diorren"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Teuliadur"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Servijer Web"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Strollant"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Servijer Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Moger tan/Henter"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Dreuzell an Internet"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Posteloù/keleier"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Servijer posteloù Postfix, servijer keleier Inn"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Levr-bloaz"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Servijer FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Servijer DNS ha NIS"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Servijer rennañ restroù ha moullerez"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "Servijer NFS, servijer Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Stlennvon"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Servijer stlennvon PostgreSQL ha MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Post"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Servijer postel Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Servijer stlennvon PostgreSQL pe MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Servijer rouedad"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Servijer NFS, servijer SMB, servijer proksi, servijer SSH"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Endeo grafikel"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Post burevek KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "An Endro Burev K gant he ostilhoù"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Post burevek GNOME"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "Burev IceWm"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Burevioù c'hrafek all"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, etc"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Mavegoù"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Servijer SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Servijer Webmin ar gefluniadur a-bell"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Ostilhoù ar rouedad/diwall"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Skozelerien Mandriva"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Skozelerien evit kefluniañ ar servijer"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Degouezhet ez eus ur fazi, hogen n'ouzon ket e verañ naet.\n"
+"Kendalc'hit war ho mar."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "O kregiñ gant al lankad `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Staliadur Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> etre elfennoù"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Diuzadenn strollad pakadoù"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Diuz pakadoù unan hag unan"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Ment hollek : %d / %d Mo"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Pakad siek"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Stumm : "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Ment : "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d Ko\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Talvoudegezh : "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "N'hellit ket diuz/andiuz ar pakad-mañ"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "peogwir %s zo manket"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "peogwir %s zo manket"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr ""
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "evit mirout %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"N'hellit ket dibab ar pakad-mañ peogwir n'eus ket a-walc'h a egor evit "
+"staliañ anezhañ"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Ar pakadoù a-heul zo war-nes bezañ staliet"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Ar pakadoù a-heul zo war-nes bezañ lamet"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Hemañ zo ur pakad ret, n'hell ket bezañ andiuzet"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "N'hellit ket andiuz ar pakad-mañ. Staliet eo endo"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "N'hellit ket andiuz ar pakad-mañ. Ret eo dezhañ bezañ bremanaet"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Diskouez ar pakadoù a zo dibabet emgefrek"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Staliañ"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Kargañ/Enrollañ an dibab"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "O bremañaat diuzadenn ar pakadoù"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Staliadur bihan"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Merañ ar pakadoù"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Dibabit ar pakadoù a vennit staliañ"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "O staliañ"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Munudoù ebet"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Amzer a chom "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "O vrasjediñ"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pakad"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Evit diverriñ"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Kefluniañ"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "n'eo ket kefluniet"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Eilañ tout an CDoù"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Ur fazi zo bet"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Dibabit reizhadur ho stokellaoueg mar plij."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Setu eo listenn leun ar stokellaoueg da gaout"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Staliañ/Bremanaat"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Hag ur staliadur pe ur bremanadur eo ?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Bremanaat %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Alc'hwez enrinegadur evit %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Kefluniañ IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Kemmit ho Cd-Rom !\n"
+"\n"
+"Lakait el lenner ar Cd-Rom warnañ an diketenn « %s » mar plij ha gwaskit Mat "
+"eo da c'houde.\n"
+"Ma n'emañ ket ganeoc'h gwaskit Nullañ evit chom hep staliañ ar Cd-Rom-se."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "O klask ar pakadoù hegerz ..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Dibabit kargañ pe enrollañ choazh ar pakadoù mar plij.\n"
+"Ar furmad zo hini ar restroù auto_install."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Kargañ"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Enrollañ"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "N'eo ket mat ar restr"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Brasoc'h eo ment dibabet evit egor dieub"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Seurt ar staliadur"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"N'eus ket strollad pakadoù dibabet ebet.\n"
+"Dibabit ar staliañ vihanañ e fell deoc'h implij mar plij :"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Gant X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Gant un teuliadur bihan (kuzuliet !)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Staliadur bihan gwir (n'eus urpmi ebet)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "An holl"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "O prientiñ ar staliadur"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "O staliañ ar pakad %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Ur fazi zo bet en ur rummañ pakadoù :"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Kenderc'hel evelato ?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Adklask"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Enrollañ diuzadenn an pakadoù"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Ur fazi zo bet en ur staliañ ar pakadoù :"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Kefluniadur goude staliañ"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Bremañaat"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Moien zo dit da bellkargañ ar pakadoù bremañaet. Bremañaet e oa ar\n"
+"pakadoù-mañ goude e oa echu an ingaladur. Gallout a ra kaout difazioù\n"
+"surentez pe difazioù bogoù.\n"
+"\n"
+"Red eo da gaout ur gevreadenn bev ouzh internet evit staliañ anezho.\n"
+"\n"
+"Mennout a rit staliañ anezho ?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "O taremprediñ ar melezour evit kaout roll ar pakadoù hegerz ..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Ne m'eus ket daremprediñ ar melezour %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Periantel"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Kartenn gwelet"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Hag ur gartenn gwelet ISA hoc'h eus ?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Seveniñ « alsaconf » pe « sndconfig » goude staliañ evit kefluniañ ho "
+"kartenn klevet"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"N'eus kartenn gwelet kavet ebet. Kargañ « harddrake » goude ar staliadur"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Kartenn pellwel"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Ketal kevregañ"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Rouedad hag Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proksioù"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "kefluniet"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Live an surentez"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Moger tan"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "bevaatet"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "diweredekaet"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Lañsañ"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s war %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "N'eo ket kefluniet X. Ha fellout a ra deoc'h da vat ober an dra-mañ ?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "O prientiñ ar c'harger loc'hañ ..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Mennout a rit implijout aboot ?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Fazi en ur staliañ aboot,\n"
+"klask rediañ ar staliadur zoken ma tistruj ar parzhadur kentañ ?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Lakait ur bladennig gwerc'h el lenner %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "O krouiñ ur bladennig staliañ emgefreek ..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Lankadoù 'zo n'int ket peurc'hraet.\n"
+"\n"
+"Mennout a rit kuitaat da vat bremañ ?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Brav"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Adlañsañ"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Krouiñ ur bladennig staliañ emgefreek"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Adseniñ"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Emgefreek"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Enrollañ diuzadenn an pakadoù"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Yezh"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Aotre"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Logodenn"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Dinoiñ ar bladenn galet"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Renkad ar staliadur"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Stokellaoueg"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Diogelroez"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "O parzhañ"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "O furmadiñ"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Choazh ar pakadoù"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "O staliañ"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Dilesadur"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Arveriaded"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Rouedad"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Karger loc'hañ"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Kefluniañ X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Evit diverriñ"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Servijoù"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Bremañaat"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Kuitaat"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d pakad, %d Mo)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pakad"
+
+#~ msgid "Language"
+#~ msgstr "Yezh"
+
+#~ msgid "License"
+#~ msgstr "Aotre"
+
+#~ msgid "Installation class"
+#~ msgstr "Renkad ar staliadur"
+
+#~ msgid "Formatting"
+#~ msgstr "O furmadiñ"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Choazh ar pakadoù"
+
+#~ msgid "Users"
+#~ msgstr "Arveriaded"
+
+#~ msgid "Networking"
+#~ msgstr "Rouedad"
+
+#~ msgid "Configure X"
+#~ msgstr "Kefluniañ X"
diff --git a/perl-install/install/share/po/bs.po b/perl-install/install/share/po/bs.po
new file mode 100644
index 000000000..89f9eef26
--- /dev/null
+++ b/perl-install/install/share/po/bs.po
@@ -0,0 +1,1632 @@
+# translation of bs.po to Bosnian
+# translation of DrakX-bs.po to Bosnian
+# translation of bs.po to Bosanski
+# translation of DrakX-bs.po to Bosanski
+# Copyright (C) 2001, 2003, 2004, 2005, 2006. Free Software Foundation, Inc.
+# Amila Akagić <bono@lugbih.org>, 06. 2001.
+# Vedran Ljubovic <vljubovic@smartnet.ba>, 2002, 2003, 2004, 2005, 2006.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: bs\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2006-09-16 10:33+0200\n"
+"Last-Translator: Vedran Ljubovic <vljubovic@smartnet.ba>\n"
+"Language-Team: Bosnian <lokal@linux.org.ba>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Imate li neke dodatne medije?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Pronašao sam sljedeće medije koji će biti korišteni tokom instalacije: %s.\n"
+"\n"
+"\n"
+"Imate li još neke dodatne medije koje želite podesiti?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "sa CDROMa"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Mreža (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Mreža (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Mreža (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL mirrora?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "URL mora počinjati sa ftp:// ili http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Kontaktiram Mandriva Linux web stranicu da bih saznao listu dostupnih "
+"mirrora..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Nisam uspio kontaktirati Mandriva Linux web stranicu radi liste dostupnih "
+"mirrora"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Izaberite mirror sa kojeg će biti dobavljeni paketi"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Podešavanje NFS-a"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Molim unesite ime računara i direktorij vašeg NFS medija"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Ime računara sa NFS serverom?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Direktorij"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Ne mogu pronaći hdlist datoteku na ovom mirroru. Provjerite da li je "
+"lokacija ispravna."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Tražim već instalirane pakete..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Uklanjam pakete prije unaprjeđenja..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Pronalazim pakete za unaprjeđenje..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Izabrali ste sljedeći server (servere): %s\n"
+"\n"
+"\n"
+"Serveri će se pokretati automatski prilikom starta računara. Oni nemaju "
+"nikakvih\n"
+"poznatih sigurnosnih propusta, ali možda će propusti biti otkriveni "
+"naknadno. Ako\n"
+"se to desi, morate ih ažurirati što prije bude moguće.\n"
+"\n"
+"\n"
+"Da li zaista želite instalirati ove servere?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Da bi se omogućilo unaprjeđenje vašeg sistema, biće uklonjeni sljedeći "
+"paketi: %s\n"
+"\n"
+"\n"
+"Želite li zaista deinstalirati ove pakete?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Sljedeći diskovi su preimenovani:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (ranije pod imenom %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Mreža"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Molim izaberite medij"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Datoteka već postoji. Želite li pisati preko nje?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Nemate dozvolu"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Neispravan NFS naziv"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Neispravan medij %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Ne mogu napraviti snimak ekrana prije particioniranja"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Snimanje ekrana će biti dostupno nakon što instalirate u %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Instalacija"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Podešavanje"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Morate takođe formatirati i %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Neke od komponenti vašeg računara zahtijevaju \"vlasničke\" drajvere za "
+"rad.\n"
+"Možete naći više podataka o njima na: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Pokrećem mrežu"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Zaustavljam mrežu"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Preuzimam datoteku %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Kopiram neke pakete na disk radi buduće upotrebe"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Kopiranje u toku"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "obavezno"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "važno"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "vrlo fino"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "fino"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "možda"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "2007 linija proizvoda"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Invictus Firewall"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery Live režim"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Kako se registrovati"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva Online usluge"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Nova tema"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Radna stanica"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Uredska radna stanica"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Uredski programi: obrada teksta (OpenOffice.org Write, KWord), tablični "
+"proračun (OpenOffice.org Calc, KSpread), PDF preglednici itd."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Uredski programi: obrada teksta (kword, abiword), tablični alati (kspread, "
+"gnumeric), pdf preglednici itd."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Stanica za igru"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Zabavni programi: arkadne igre, stolne igre, strategije itd."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimedijalna stanica"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Programi za pregled i editovanje zvuka i videa"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internet stanica"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Skup alata za čitanje i slanje pošte i news-a (mutt, tin...) i pregledanje "
+"Weba"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Mrežni računar (klijent)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Klijenti za razne protokole uključujući ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Alati za lakše podešavanje računara"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Alati za konzolu"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editori, shellovi, alati za datoteke, terminali"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Programiranje"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C i C++ biblioteke, programi i include datoteke"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentacija"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Knjige i howto-i na temu Linuxa i slobodnog softvera"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Podrška za programe trećih lica"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Web server"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab server"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Firewall/Router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internet gateway"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Mail/News"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix mail server, Inn news server"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Imenički server"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP server"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Serveri domenskih imena i mrežnih informacija"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Server za dijeljenje datoteka i štampača"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS server, Samba server"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Baze podataka"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Server PostgreSQL ili MySQL baze podataka"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Mail"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix mail server"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL ili MySQL baza podataka"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Mrežni server"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS server, SMB server, Proxy server, ssh server"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Grafičko okruženje"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE radna stanica"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K Desktop Environment, osnovno grafičko okruženje sa izborom pratećih alata"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME radna stanica"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Grafička okolina sa skupom korisnički orjentisanih programa i alata za radnu "
+"površinu"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm okruženje"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Ostale grafičke okoline"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm itd."
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Alati"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH server"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin server za podešavanje sistema"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Mrežni alati i nadzor"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Alati za nadzor, praćenje procesa, tcpdump, nmap..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva čarobnjaci"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Čarobnjaci (wizardi) za podešavanje serverâ"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Došlo je do greške, ali ne znam kako da postupim u vezi toga.\n"
+"Nastavite na vlastiti rizik."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Neki bitni paketi nisu ispravno instalirani.\n"
+"Ili je neispravan vaš CD-ROM uređaj ili vaš CD-ROM medij.\n"
+"Možete provjerite medij na računaru sa instaliranim Mandriva Linuxom\n"
+"koristeći naredbu \"rpm -qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Prelazim na korak '%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux instalacija %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> između elemenata"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Vašem sistemu ponestaje resursa. Možda imate neki problem sa instalacijom\n"
+"Mandriva Linuxa. Ako se ovo desi, možete pokušati tekstualnu instalaciju. Za "
+"ovo,\n"
+"pritisnite 'F1' prilikom pokretanja instalacije, zatim unesite riječ 'text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Izbor grupe paketa"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Izbor pojedinačnih paketa"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Ukupna veličina: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Neispravan paket"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Verzija: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Veličina: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Značaj: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Ne možete izabrati/isključiti ovaj paket"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "zbog nedostajućeg %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "zbog nezadovoljenog %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "pokušavam promovirati %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "kako biste zadržali %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "Ne možete izabrati ovaj paket jer nema dovoljno prostora za njega"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Sljedeći paketi će biti instalirani"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Sljedeći paketi će biti uklonjeni"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Ovo je obavezan paket, ne može biti isključen"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Ne možete isključiti ovaj paket. On je već instaliran"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Ne možete isključiti ovaj paket. On mora biti unaprijeđen"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Automatski prikaži izabrane pakete"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Instalacija"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Učitajte ili snimite izbor paketa"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Ažuriram spisak paketa"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimalna instalacija"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Programi"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Izaberite pakete koje želite instalirati"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Instaliram"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Sakrij detalje"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Preostalo vremena "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Procjenjujem"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d paketa"
+msgstr[1] "%d paketa"
+msgstr[2] "%d paketa"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Ukratko"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Podesi"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "nije podešeno"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Pronađeni su sljedeći instalacioni mediji.\n"
+"Ako želite preskočiti neke od njih, možete ih isključiti sada."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Imate mogućnost da kopirate sadržaj CDova na hard disk prije instalacije.\n"
+"Zatim će instalacija biti nastavljena sa hard diska, a paketi će ostati "
+"dostupni nakon što sistem bude instaliran."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Kopiraj čitave CDove"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Došlo je do greške"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Molim izaberite raspored vaše tastature."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Ovdje je puna lista svih dostupnih tastatura"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Instaliraj/Unaprijedi"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Da li je ovo instalacija ili unaprjeđenje?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Unaprijedi %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Ključ enkripcije za %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Podešavam IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Nema dovoljno slobodnog prostora za 1 MB bootstrap! Instalacija će "
+"nastaviti, ali da biste pokrenuli vaš sistem morate kreirati bootstrap "
+"particiju u DiskDrake-u"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Trebate napraviti PPC PReP Boot bootstrap! Instalacija će nastaviti, ali da "
+"biste pokrenuli vaš sistem morate kreirati bootstrap particiju u DiskDrake-u"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Promijenite vaš CD-ROM!\n"
+"Molim ubacite CD označen sa \"%s\" u vaš CD-ROM uređaj i pritisnite \"U redu"
+"\" kad ste spremni.\n"
+"Ako ga nemate, pritisnite \"Odustani\" da preskočite instalaciju sa tog CD-"
+"ROMa."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Tražim dostupne pakete..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Molim izaberite da li ćete učitati ili snimiti izbor paketa.\n"
+"Format je isti kao i diskete koje generiše auto_install."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Učitaj"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Snimi"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Neispravna datoteka"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Izabrana veličina je veća od slobodnog prostora"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Vrsta instalacije"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Niste izabrali nijednu grupu paketa\n"
+"Molim izaberite vrstu minimalne instalacije koju želite:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Sa grafikom"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Sa osnovnom dokumentacijom (preporučeno)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Stvarno minimalna instalacija (posebno bez urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Svi"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Pripremam instalaciju"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Instaliram paket %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Došlo je do greške pri raspoređivanju paketa:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Da nastavim?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Pokušaj ponovo"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Spasi izbor paketa"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Došlo je do greške kod instaliranja paketa:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Post-instalacijsko podešavanje"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "Molim provjerite da je medij za ažuriranje u uređaju %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Ažuriranje"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Sada imate mogućnost da dobavite sa Interneta nove verzije paketa koji\n"
+"su izašli nakon što je distribucija objavljena. Među njima su sigurnosne "
+"zakrpe\n"
+"i ispravke bugova.\n"
+"\n"
+"Da biste izvršili download, potrebno je da podesite Internet konekciju.\n"
+"\n"
+"Da li želite instalirati ažurirane pakete ?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Kontaktiram mirror da bih saznao listu dostupnih paketa..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Ne mogu pristupiti mirroru %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Hardware"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Zvučna kartica"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Imate li ISA zvučnu karticu?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Pokrenite \"alsaconf\" ili \"sndconfig\" poslije instalacije kako biste "
+"podesili vašu zvučnu karticu"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Nije otkrivena zvučna kartica. Probajte \"harddrake\" poslije instalacije"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV kartica"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Grafički interfejs"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Mreža i Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxy-ji"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "podešeno"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Sigurnosni nivo"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Firewall"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "aktiviran"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "isključen"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Boot"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s na %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Niste podesili X. Sigurno želite uraditi ovo?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Pripremam bootloader..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Izgleda da imate OldWorld ili Unknown računar, yaboot bootloader neće raditi "
+"kod vas. Instalacija će se nastaviti, ali ćete morati koristiti BootX ili "
+"neki drugi način za bootanje vašeg računara. Argument kernela za root fs je: "
+"root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Da li želite koristiti aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Greška u instaliranju aboota, \n"
+"da li da pokušam nasilnu instalaciju čak i ako to uništi prvu particiju?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Na ovom sigurnosnom nivou, pristup datotekama na Windows particijama je "
+"dozvoljen samo administratoru."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Ubacite praznu disketu u jedinicu %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Pravim auto instalacijsku disketu..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Neki koraci nisu dovršeni.\n"
+"\n"
+"Da li zaista želite izaći sada?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Čestitamo"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Restartuj"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Napravi autoinstalacijsku disketu"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Ova auto instalacija može biti potpuno automatizovana ako želite,\n"
+"u kojem slučaju će hard disk biti prebrisan\n"
+"(ovo je namjenjeno za instaliranje na drugi računar).\n"
+"\n"
+"Možda ćete radije željeti ponoviti instalaciju.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Ponovi"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatizovano"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Spasi izbor paketa"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Jezik"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licenca"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Miš"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Prepoznavanje hard diska"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Klasa instalacije"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Tastatura"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Sigurnost"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Particioniranje"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Formatiram"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Izbor paketa"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Instaliram"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Metod autentikacije"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Korisnici"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Mreža"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Bootloader"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Podešavanje X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Ukratko"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Servisi"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Ažuriranje"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Izlaz"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d paketa, %d MB)"
+#~ msgstr[1] "(%d paketa, %d MB)"
+#~ msgstr[2] "(%d paketa, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d paketa"
+
+#~ msgid "Language"
+#~ msgstr "Jezik"
+
+#~ msgid "License"
+#~ msgstr "Licenca"
+
+#~ msgid "Installation class"
+#~ msgstr "Klasa instalacije"
+
+#~ msgid "Formatting"
+#~ msgstr "Formatiram"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Izbor paketa"
+
+#~ msgid "Users"
+#~ msgstr "Korisnici"
+
+#~ msgid "Networking"
+#~ msgstr "Mreža"
+
+#~ msgid "Configure X"
+#~ msgstr "Podešavanje X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Ne mogu pristupiti kernelskim modulima koji odgovaraju vašem kernelu "
+#~ "(nedostaje datoteka %s), što obično znači da je vaša boot disketa "
+#~ "zastarjela u odnosu na instalacioni medij (napravite noviju boot disketu)"
diff --git a/perl-install/install/share/po/ca.po b/perl-install/install/share/po/ca.po
new file mode 100644
index 000000000..626f3437b
--- /dev/null
+++ b/perl-install/install/share/po/ca.po
@@ -0,0 +1,1632 @@
+# translation of ca.po to Catalan
+# translation of DrakX.po to Catalan
+# Copyright (C) 2000-2004, 2005 Free Software Foundation, Inc.
+# Softcatala, softcatala.org, 2000-2003
+# Albert Astals Cid <astals11@terra.es>, 2003-2004, 2005.
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: ca\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2005-09-13 23:24+0200\n"
+"Last-Translator: Albert Astals Cid <astals11@terra.es>\n"
+"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.9.1\n"
+"Plural-Forms: nplurals=2; plural=n!=1;\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Xarxa (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Xarxa (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Xarxa (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL de la rèplica?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"S'està contactant amb el servidor Mandriva Linux per obtenir la llista de "
+"rèpliques disponibles..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"S'està contactant amb el servidor Mandriva Linux per obtenir la llista de "
+"rèpliques disponibles..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Escolliu una rèplica des de la qual aconseguir els paquets"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Directori"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "No s'ha pogut trobat el fitxer hdlist en aquest rèplica"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "S'estan cercant els paquets ja instal·lats..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "S'estan cercant els paquets a actualitzar"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Heu seleccionat el(s) servidor(s) següent(s): %s\n"
+"\n"
+"\n"
+"Aquests servidors estan activats per defecte. No tenen cap problema de "
+"seguretat\n"
+"conegut, però se'n podrien trobar de nous. Si fos així, caldrà que els "
+"actualitzeu\n"
+"tan aviat com sigui possible.\n"
+"\n"
+"\n"
+"Voleu realment instal·lar aquests servidors?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Se suprimiran els següents paquets per poder actualitzar el sistema: %s\n"
+"\n"
+"\n"
+"Voleu realment suprimir aquests paquets?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr ""
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Xarxa"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "Si us plau escolliu"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "El fitxer ja existeix. El voleu sobreescriure?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "S'ha denegat el permís"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Nom NFS incorrecte"
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "s'ha afegit la font %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "No es poden fer captures de pantalla abans de fer les particions"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Les captures estaran disponibles després d'instal·lar a %s"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "S'està instal·lant"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Configuració"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "També heu de formatar %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Part del maquinari del vostre ordinador necessita controladors\n"
+"\"registrats\" per poder funcionar. Podeu trobar-ne informació a: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "S'està activant la xarxa"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "S'està desactivant la xarxa"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "S'està descarregant el fitxer %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Còpia en procés"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "s'ha de tenir"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "important"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "molt bonic"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "bonic"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "potser"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, fuzzy, c-format
+msgid "Invictus Firewall"
+msgstr "Tallafocs interactiu"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Estació de treball"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Estació de treball d'oficina"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Programes d'ofimàtica: processadors de textos (OpenOffice.org Writer, "
+"Kword), fulls de càlcul (OpenOffice.org Calc, Kspread), visualitzadors pdf, "
+"etc."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Programes d'ofimàtica: processadors de textos (kword, abiword), fulls de "
+"càlcul (kspread, gnumeric), visualitzadors pdf, etc."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Estació de jocs"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Programes d'entreteniment: acció, jocs de taula, estratègia, etc."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Estació multimèdia"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Programes de reproducció/edició de so i vídeo"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Estació d'Internet"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Conjunt d'eines per llegir i enviar correu i notícies (mutt, tin...) i per "
+"navegar pel Web"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Ordinador de xarxa (client)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Clients per a diferents protocols, incloent l'ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Eines per facilitar la configuració de l'ordinador"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Eines de consola"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editors, intèrprets d'ordres, eines de fitxer, terminals"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Desenvolupament"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Biblioteques de desenvolupament C i C++, programes i fitxers include"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Documentació"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Llibres i Com es fa... sobre el Linux i el programari lliure"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Base Estàndard de Linux (LSB). Suport a aplicacions de tercers"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Servidor Web"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Servidor Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Tallafoc/Encaminador"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Passarel·la a Internet"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Correu/Notícies"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Servidor de correu Postfix, Servidor de noticies Inn"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Servidor de directori"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Servidor FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Servidor de Noms de Domini i d'Informació de la Xarxa (DNS/NIS)"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Servidor de compartició de fitxers i impressores"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "Servidor NFS, Servidor Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Base de dades"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Servidor de bases de dades PostgreSQL i MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache i Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Correu"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Servidor de correu Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Servidor de bases de dades PostgreSQL o MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Servidor d'ordinador de xarxa"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Servidor NFS, Servidor SMB, Servidor Proxy, Servidor SSH"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Entorn gràfic"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Estació de treball KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"L'entorn d'escriptori K (KDE), l'entorn gràfic bàsic que inclou diverses "
+"eines"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Estació de treball GNOME"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Entorn gràfic amb un conjunt d'aplicacions i eines d'escriptori fàcil "
+"d'utilitzar"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "Escriptori IceWm"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Altres escriptoris gràfics"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, etc"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Utilitats"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Servidor SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Utilitats de xarxa/Monitorització"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Auxiliars de Mandriva"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Auxiliars per configurar el servidor"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"S'ha produït un error, però no sé com gestionar-lo correctament.\n"
+"Si continueu, és sota la vostra responsabilitat."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Alguns paquets importants no s'han instal·lat correctament.\n"
+"La vostra unitat de CD-ROM, o bé el CD-ROM, són defectuosos.\n"
+"Comproveu el CD-ROM en un ordinador instal·lat mitjançant \"rpm -qpl media/"
+"main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "S'està entrant en el pas '%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Instal·lació del Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> entre elements"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"El vostre sistema està baix de recursos; podeu tenir algun problema en\n"
+"instal·lar el Mandriva Linux. Si això passa, podeu provar d'instal·lar-lo "
+"en\n"
+"mode text. Per fer-ho, premeu 'F1' en arrencar des del CD-ROM i escriviu "
+"'text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Selecció del grup de paquets"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Selecció individual de paquets"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Mida total: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Paquet incorrecte"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versió: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Mida:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d kB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Importància:"
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "No podeu seleccionar/desseleccionar aquest paquet"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "degut a que falten %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "degut a %s no satisfetes"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr ""
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "per tal de mantenir %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"No podeu seleccionar aquest paquet perquè no queda prou espai per instal·lar-"
+"lo"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Ara s'instal·laran els paquets següents"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Ara s'eliminaran els paquets següents"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Aquest paquet és obligatori; no es pot desseleccionar"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "No podeu desseleccionar aquest paquet; ja està instal·lat"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "No podeu desseleccionar aquest paquet; s'ha d'actualitzar"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Mostra automàticament els paquets seleccionats"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Instal·la"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Carrega/Desa la selecció"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "S'està actualitzant la selecció de paquets"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Instal·lació mínima"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Gestor de programari"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Escolliu els paquets que voleu instal·lar"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "S'està instal·lant"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Sense detalls"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Temps restant "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "S'està estimant"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d paquet"
+msgstr[1] "%d paquets"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Resum"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Configura"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "no configurat(da)"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Copia els CDs sencers"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "S'ha produït un error"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Si us plau, seleccioneu la disposició del vostre teclat."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Aquesta és la llista completa de teclats disponibles"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Instal·la/Actualitza"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Es tracta d'una instal·lació o d'una actualització?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Actualitza %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Clau de xifratge per a %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "S'està configurant l'IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"No hi ha prou espai lliure per un 1MB de bootstrap! La instal·lació "
+"continuarà, però per iniciar el sistema necessitareu crear la partició de "
+"bootstrap amb el DiskDrake"
+
+#: steps_interactive.pm:226
+#, fuzzy, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"No hi ha prou espai lliure per un 1MB de bootstrap! La instal·lació "
+"continuarà, però per iniciar el sistema necessitareu crear la partició de "
+"bootstrap amb el DiskDrake"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Canvieu el Cd-Rom!\n"
+"Si us plau, inseriu el CD-ROM etiquetat com \"%s\" a la unitat i després\n"
+"premeu D'acord.\n"
+"Si no el teniu, premeu Cancel·la per no fer la instal·lació des d'aquest Cd-"
+"Rom."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "S'estan cercant els paquets disponibles..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Si us plau, carregueu o deseu la selecció de paquets en el disquet.\n"
+"El format és el mateix que en els disquets generats d'instal·lació "
+"automàtica."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Càrrega"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Desa"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Fitxer incorrecte"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "La mida seleccionada és superior a la disponible"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Tipus d'instal·lació"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"No heu seleccionat cap grup de paquets.\n"
+"Escolliu la instal·lació mínima que voleu:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Amb X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Amb la documentació bàsica (recomanat!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Instal·lació realment mínima (especialment no urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Tots"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "S'està preparant la instal·lació"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "S'està instal·lant el paquet %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "S'ha produït un error en ordenar els paquets:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Voleu seguir igualment?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Desa la selecció de paquets"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "S'ha produït un error en instal·lar els paquets:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Configuració posterior a la instal·lació"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Actualitzacions"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Ara teniu l'oportunitat de baixar paquets actualitzats. Aquests paquets\n"
+"han estat actualitzats després de la publicació de la distribució. Poden "
+"contenir\n"
+"actualitzacions de seguretat o correccions d'errors.\n"
+"\n"
+"Per baixar aquests paquets necessitareu tenir una connexió a Internet\n"
+"operativa.\n"
+"\n"
+"Voleu instal·lar les actualitzacions?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"S'està contactant amb la rèplica per obtenir la llista dels paquets "
+"disponibles..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "No es pot contactar amb la rèplica: %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Maquinari"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Targeta de so"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Teniu una targeta de so ISA?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Executeu \"alsacont\" després de la instal·lació per configurar la targeta "
+"de so"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"No s'ha detectat cap targeta de so. Proveu amb \"harddrake\" després de la "
+"instal·lació"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Targeta de TV"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Interfície gràfica"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Xarxa i Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Intermediaris"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "configurat"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Nivell de seguretat:"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Tallafoc"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "activat"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "inhabilita"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Arrencada"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s a %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "No heu configurat X. Segur que ho voleu així?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "S'està preparant el carregador de l'arrencada..."
+
+#: steps_interactive.pm:977
+#, fuzzy, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Sembla que teniu un OldWorld o una màquina\n"
+"desconeguda; el carregador d'arrencada yaboot no us funcionarà.\n"
+"La instal·lació continuarà, però us caldrà utilitzar el BootX\n"
+"o algun altre mètode per arrencar l'ordinador"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Voleu utilitzar l'aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"S'ha produït un error en instal·lar l'aboot. \n"
+"Voleu intentar igualment la instal·lació encara que això destrueixi la "
+"primera partició?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"En quest nivell de seguretat, l'accés a les particions de Windows està "
+"restringit a l'administrador."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Inseriu un disquet en blanc a la unitat %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "S'està creant el disquet d'instal·lació automàtica"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Alguns passos no s'han completat.\n"
+"\n"
+"Segur que voleu sortir ara?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Felicitats"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Reinicia"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Genera un disquet per a la instal·lació automàtica"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Si ho desitgeu, la instal·lació automàtica es pot\n"
+"automatitzar completament, però en aquest cas\n"
+"prendrà el control del disc dur!\n"
+"(Això està pensat per a la instal·lació en un altre ordinador.)\n"
+"\n"
+"Potser preferireu repetir la instal·lació.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Repeteix"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automàtica"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Desa la selecció de paquets"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Escolliu el vostre idioma"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Llicència"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Ratolí"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Detecció del disc dur"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Teclat"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Seguretat"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Particionament"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "S'està instal·lant"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Autenticació"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Usuaris"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Xarxa"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Carregador d'arrencada"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Configura l'X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Resum"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Serveis"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Actualitzacions"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Surt"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d paquet, %d MB)"
+#~ msgstr[1] "(%d paquets, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d paquets"
+
+#~ msgid "Language"
+#~ msgstr "Escolliu el vostre idioma"
+
+#~ msgid "License"
+#~ msgstr "Llicència"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Tipus d'instal·lació"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "S'està estimant"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Paquets a instal·lar"
+
+#~ msgid "Users"
+#~ msgstr "Usuaris"
+
+#~ msgid "Networking"
+#~ msgstr "Xarxa"
+
+#~ msgid "Configure X"
+#~ msgstr "Configura l'X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "No es pot accedir als mòduls del nucli corresponents al vostre nucli (no "
+#~ "s'ha trobat el fitxer %s). Això generalment vol dir que el vostre disquet "
+#~ "d'arrencada no està sincronitzat amb el suport d'instal·lació (si us "
+#~ "plau, creeu un nou disquet d'arrencada)"
diff --git a/perl-install/install/share/po/cs.po b/perl-install/install/share/po/cs.po
new file mode 100644
index 000000000..d56ab3039
--- /dev/null
+++ b/perl-install/install/share/po/cs.po
@@ -0,0 +1,1587 @@
+# Translation of cs.po to Czech
+# Copyright (C) 1999,2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+#
+# Radek Vybiral <Radek.Vybiral@vsb.cz>, 2000, 2001-2003.
+# Michal Bukovjan <bukm@centrum.cz>, 2002-2003, 2004, 2005, 2006, 2007.
+msgid ""
+msgstr ""
+"Project-Id-Version: cs\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-03-15 19:32+0100\n"
+"Last-Translator: Michal Bukovjan <bukm@centrum.cz>\n"
+"Language-Team: Czech <cs@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: KBabel 1.11.4\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Máte ještě nějaká další doplňující zdroje?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Byly nalezeny a při instalaci budou použity následující zdroje: %s.\n"
+"\n"
+"\n"
+"Chcete nastavit ještě nějaké další doplňující instalační zdroje?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Síť (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Síť (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Síť (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL zrcadla?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "URL musí začínat na ftp:// nebo http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Kontaktuji web Mandriva Linux pro získání seznamu dostupných zrcadel..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Selhalo kontaktování webu Mandriva Linux pro získání seznamu dostupných "
+"zrcadel"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Zvolte si zrcadlo (mirror) pro stahování balíčků"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Nastavení NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Zadejte prosím název počítače a adresář vašeho zařízení NFS"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Chybí název počítače"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "Adresář musí začínat znakem \"/\""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Název počítače připojení NFS?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Adresář"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Dodatečný"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Nelze nalézt soubor hdlist na tomto zrcadle. Ujistěte se, že umístění je "
+"správné."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Prohledávám již instalované balíčky..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Odstraňují se balíčky před aktualizací..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Vyhledávám balíčky pro aktualizaci..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Vybrali jste pro instalaci následující server(y): %s\n"
+"\n"
+"\n"
+"Tyto servery budou standardně aktivovány. Přestože není známý žádný\n"
+"bezpečnostní problém, mohou se přesto vyskytnout. Je proto důležité "
+"aktualizovat\n"
+"vždy, když je to potřeba.\n"
+"\n"
+"\n"
+"Chcete opravdu nainstalovat tyto servery?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Následující balíčky budou odebrány, aby bylo možné systém aktualizovat: %s\n"
+"\n"
+"\n"
+"Opravdu chcete odebrat tyto balíčky?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Následující disk(y) byly přejmenovány:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (předchozí název %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Síť"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Prosím vyberte zdroj"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Soubor již existuje. Přepsat?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Přístup odepřen"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Chybný název NFS"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Chybný zdroj %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Nelze provést sejmutí obrazovky před rozdělením disků"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Sejmuté obrazovky budou dostupné po instalaci v adresáři %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Instalace"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Nastavení"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Musíte také naformátovat %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Některé části vašeho hardware potřebují pro svoji práci 'proprietární' "
+"ovladače.\n"
+"Další informace o těchto ovladačích můžete nalézt na: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Startuji síť"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Zastavuji síť"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Stahuji soubor %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Kopíruji některé balíčky na disky pro budoucí použití"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Probíhá kopírování"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "musíte mít"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "důležité"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "nejméně důležité"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "nedůležité"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "může se hodit"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "Produktová linie 2007"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Invictus firewall"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery v živém režimu"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Jak se zaregistrovat"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Online služby Mandriva"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Nové téma"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Pracovní stanice"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Kancelářská stanice"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Programy pro kancelář: textové procesory (OpenOffice.org Writer, Kword), "
+"tabulkové procesory (OpenOffice.org Calc, Kspread), prohlížeče PDF a další"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Programy pro kancelář: textové procesory (KWord, Abiword), tabulkové "
+"procesory (KSpread, Gnumeric), prohlížeče PDF a další"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Hry"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Zábavné programy: deskové hry, strategie, atd."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimediální stanice"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Programy pro přehrávání/editaci zvuku a videa"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internetová stanice"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Soubor nástrojů pro čtení a posílaní el. pošty a příspěvků do diskusních "
+"skupin (mutt, tin..) a pro prohlížení Webu"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Síťový počítač (klient)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Klienti pro různé verze protokolu ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Nástroje pro snadnou konfiguraci počítače"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Konzolové nástroje"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editory, shelly, souborové nástroje, terminály"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Vývoj"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Knihovny pro vývoj v C a C++, programy a hlavičkové soubory"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentace"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Knihy a Howto o Linuxu a Svobodném Software"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Standardní Báze Linuxu (LSB): Podpora aplikací jiných dodavatelů"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Webový server"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Server Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Firewall/Router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internetová brána"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Pošta/Diskusní skupiny"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Poštovní server Postfix, server diskusních skupin Inn"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Server adresářových služeb"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Server FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Server pro domény a síťové informace"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Server pro sdílení souborů a tiskáren"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "Server NFS, server Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Databáze"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Databázové servery PostgreSQL a MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache a Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Pošta"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Poštovní server Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Databázové servery PostgreSQL nebo MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Síťový server"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS server, SMB server, Proxy server, SSH server"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Grafické prostředí"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Pracovní stanice s KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K Desktop Environment, základní grafické prostředí s kolekcí doprovodných "
+"nástrojů"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Pracovní stanice s GNOME"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Grafické prostředí s uživatelsky přívětivým seskupením aplikací a pracovní "
+"plochou"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm desktop"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Další grafické desktopy"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm a další"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Užitečné nástroje"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Server SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Server pro vzdálené nastavení Webminu"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Síťové nástroje/Sledování"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Nástroje pro sledování, evidenci procesů, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Průvodci Mandriva"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Průvodci nastavením serverů"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Stala se chyba, ale nevím, jak jí správně interpretovat.\n"
+"Pokračujte na vlastní riziko."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Některé důležité balíčky nebyly správně nainstalované.\n"
+"Je možné, že je poškozen CD disk nebo CD-ROM mechanika.\n"
+"Zkontrolujete to použitím příkazu \"rpm -qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Začínám krok '%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux Instalace %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> mezi prvky"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Váš systém má málo systémových prostředků. Při instalaci Mandriva Linuxu se\n"
+"můžete setkat s různými problémy. Pokud se tak stane, zkuste textovou\n"
+"verzi instalačního programu. Ta se spouští tak, že při startu\n"
+"z CD mechaniky stisknete 'F1' a poté napíšete 'text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Výběr skupiny balíčků"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Výběr jednotlivých balíčků"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Celková velikost: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Špatný balíček"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Verze: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Velikost: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Důležitost: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Nemůžete vybrat/nevybrat tento balíček"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "protože chybí %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "díky nesplněné závislosti %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "pokus o postoupení %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "aby bylo zachováno %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Nemůžete vybrat tento balíček, protože pro jeho instalaci není dost místa"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Budou instalovány tyto balíčky"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Budou odebrány tyto balíčky"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Toto je povinný balíček, nemůže být odstraněn"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Nemůžete odznačit tento balíček, je už nainstalovaný"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Tento balíček musí být aktualizován, nemůžete ho odznačit"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Ukázat automaticky vybrané balíčky"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Instalovat"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Načíst/Uložit výběr"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Aktualizuji výběr balíčků"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimální instalace"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Správa software"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Vyberte si balíčky, které chcete nainstalovat"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Instaluji"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Bez podrobností"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Zbývající čas "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Odhaduji"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d balíček"
+msgstr[1] "%d balíčky"
+msgstr[2] "%d balíčků"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Souhrn"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Nastavit"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "nenastaveno"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Byla nalezeny následující instalační zdroje.\n"
+"Pokud chcete některé z nich vynechat, můžete je nyní odznačit."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Máte možnost před instalací zkopírovat obsah CD na pevný disk.\n"
+"Instalace pak bude pokračovat z pevného disku a balíčky zůstanou dostupné i "
+"poté, co je systém plně nainstalován."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Kopírovat celá CD"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Stala se chyba"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Vyberte si rozložení vaší klávesnice."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Zde je úplný seznam dostupných klávesnic"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Instalace/Aktualizace"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Jedná se o instalaci nebo aktualizaci?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Aktualizace %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Šifrovací klíč pro %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Nastavuji IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Pro bootstrap není potřebné místo o velikosti 1MB! Instalace může "
+"pokračovat, ale pro spuštění systému musíte vytvořit bootstrap oddíl pomocí "
+"DiskDrake"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Je nutné vytvořit zavedení PPC PReP Boot! Instalace může pokračovat, ale pro "
+"zavedení systému musíte vytvořit zaváděcí oddíl pomocí DiskDrake"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Vyměňte prosím CD!\n"
+"Prosím vložte CD označené \"%s\" do mechaniky a stiskněte Ok.\n"
+"Pokud toto CD nemáte, stiskněte Zrušit a toto CD nebude nainstalováno."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Hledám dostupné balíčky..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"Váš systém nemá dostatek volného místa pro instalaci nebo aktualizaci (%dMB "
+"> %dMB)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Vyberte si, zda chcete uložit nebo načíst výběr balíčků.\n"
+"Formát je stejný jako u souborů generovaných pomocí auto_install."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Načíst"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Uložit"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Chybný soubor"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Velikost vybraných balíčků je větší než místo na disku"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Typ instalace"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Nevybrali jste žádnou skupinu balíčků.\n"
+"Vyberte si prosím alespoň minimální instalaci:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "X prostředí"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Základní dokumentace (doporučeno!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Opravdu minimální instalace (speciálně bez urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Všechno"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Připravuji instalaci"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Instaluji balíček %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Stala se chyba při řazení balíčků:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Přesto pokračovat?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Zkusit znovu"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "Vynechat tento balíček"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "Vynechat všechny balíčky ze zdroje \"%s\""
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "Vrátit se zpět k výběru zdrojů a balíčků"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "Při instalaci balíčku %s nastala chyba."
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Probíhá nastavování po instalaci"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+"Ujistěte se prosím, že se médium s aktualizovanými moduly nachází v jednotce "
+"%s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Aktualizace"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Nyní máte možnost stáhnout aktualizované balíčky. Tyto balíčky byly\n"
+"uvolněny až po vydání distribuce. Mohou obsahovat bezpečnostní\n"
+"aktualizace nebo opravy chyb.\n"
+"\n"
+"Chcete-li získat tyto balíčky, musíte mít k dispozici funkční připojení\n"
+"k Internetu.\n"
+"\n"
+"Chcete nainstalovat aktualizace?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Stahuji seznam dostupných balíčků ze zrcadla..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Nelze kontaktovat zrcadlo %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Hardware"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Zvuková karta"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Máte nějakou zvukovou kartu na ISA sběrnici?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Pro nastavení zvukové karty spusťte po instalaci \"alsaconf\" nebo "
+"\"sndconfig\""
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Nebyla nalezena zvuková karta. Zkuste spustit po instalaci \"harddrake\"."
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV karta"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Grafické rozhraní"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Síť & Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxy"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "nastaveno"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Úroveň zabezpečení"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Firewall"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "aktivováno"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "vypnuto"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Spuštění"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s na %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+"Nemáte nastaveno prostředí X. Chcete jej skutečně ponechat nenastavené?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Připravuji zaváděcí program..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Zdá se, že máte počítač OldWorld nebo jiný, neznámý, na kterém nebude "
+"zavaděč Yaboot pracovat. Instalace bude pokračovat, ale budete potřebovat "
+"BootX nebo jiný nástroj pro zavedení systému. Parametr jádra pro kořenový "
+"souborový systém je: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Chcete použít aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Stala se chyba při instalaci aboot,\n"
+"mám se pokusit o instalaci i když to zruší první oddíl na disku?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"V této úrovní zabezpečení je přístup k souborům na oddíle s Windows omezena "
+"pouze na uživatele administrátor."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Vložte prázdnou disketu do %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Vytvářím disketu pro automatickou instalaci..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Některé kroky nebyly dokončeny.\n"
+"\n"
+"Chcete opravdu nyní skončit?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Gratulujeme"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Restartovat"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Vytvořit disketu pro automatickou instalaci"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Instalace může být v případě potřeby plně automatická,\n"
+"ale použije se celý disk!!!\n"
+"(v případě instalace na druhý počítač)\n"
+"\n"
+"Takto lze jednoduše zopakovat instalaci.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Zopakovat"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automaticky"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Uložit výběr jednotlivých balíčků"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Jazyk"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licence"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Myš"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Detekce pevných disků"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Třída instalace"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Klávesnice"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Bezpečnost"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Rozdělení disku"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Formátování"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Výběr balíčků"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Instaluji"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Ověření"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Uživatelé"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Sítě"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Zaváděcí program"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Nastavení X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Souhrn"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Služby"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Aktualizace"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Konec"
diff --git a/perl-install/install/share/po/cy.po b/perl-install/install/share/po/cy.po
new file mode 100644
index 000000000..0b804bdce
--- /dev/null
+++ b/perl-install/install/share/po/cy.po
@@ -0,0 +1,1626 @@
+# translation of DrakX-cy.po to Cymraeg
+# Copyright (C) 2003, 2007 Free Software Foundation, Inc.
+#
+# Rhoslyn Prys <rhoslyn.prys@ntlworld.com>, 2003,2004,2005.
+# Rhoslyn Prys <post@meddal.com>, 2007.
+msgid ""
+msgstr ""
+"Project-Id-Version: Mandriva Linux\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-01-28 12:37+0000\n"
+"Last-Translator: Rhoslyn Prys <post@meddal.com>\n"
+"Language-Team: Cymraeg\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Welsh\n"
+"X-Poedit-Country: UNITED KINGDOM\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"Plural-Forms: nplurals=2; plural=(n == 2) ? 1 : 0;\n"
+"X-Generator: KBabel 1.11.4\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Oes gennych unrhyw gyfrwng atodol arall?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Mae'r cyfrwng yma wedi ei ganfod a byddant yn cael eu defnyddio gyda'r "
+"gosodiad nesaf: %s \n"
+"\n"
+"\n"
+"A oes gennych gyfrwng gosod ychwanegol i'w ffurfweddu?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Rhwydwaith (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Rhwydwaith (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Rhwydwaith (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL y drych?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "Rhaid i'r URL gychwyn gyda ftp:// neu http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr "Cysylltu â safle gwe Mandriva Linux i estyn y rhestr o ddrychau..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Methwyd cysylltu â safle gwe Mandriva Linux i estyn y rhestr o ddrychau"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Dewiswch ddrych lle mae modd estyn y pecynnau"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Ffurfweddiad NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Rhowch enw'r gwesteiwr a chyfeiriadur eich cyfrwng NFS"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Enw gwesteiwr ar goll"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "Rhaid i gyfeiriadur gychwyn gyda \"/\""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Enw gwesteiwr cosodiad NFS?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Cyfeiriadur"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Atodol"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Methu canfod ffeil hdlist ar y drych. Gwnewch yn siwr fod y lleoliad yn "
+"gywir."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Edrych ar becynnau wedi eu gosod yn barod..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Tynnu pecynnau cyn diweddaru..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Canfod pecynnau i'w uwchraddio..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Rydych wedi dewis y gweinydd(wyr) canlynol: %s\n"
+"\n"
+"\n"
+"Mae'r gweinyddion canlynol yn cael eu cychwyn drwy ragosodiad. Does\n"
+"ganddynt unrhyw faterion diogelwch hysbys, ond mae'n bosibl i rai ddod i'r\n"
+"golwg. Os felly rhaid uwchraddio gynted ag y bo modd\n"
+"\n"
+"Ydych chi wir eisiau gosod y gweinyddion hyn?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Bydd y pecynnau canlynol yn cael eu tynnu i ganiatáu diweddaru eich system: %"
+"s\n"
+"\n"
+"\n"
+"Ydych chi am dynnu'r pecynnau hyn?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Mae'r disg(iau) hyn wedi eu hailenwi:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (ei enw blaenorol oedd %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Rhwydwaith"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Dewiswch gyfrwng"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Mae'r ffeil yn bodoli eisoes. Ysgrifennu drosti?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Mynediad wedi ei wrthod."
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Enw NFS gwael"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Cyfrwng drwg %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Meth creu lluniau o'r sgrin cyn rhannu"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Bydd lluniau o'r sgrin ar gael ar ôl gosod yn %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Gosod"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Ffurfweddiad"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Rhaid fformatio %s hefyd"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Mae peth caledwedd ar eich cyfrifiadur angen gyrwyr ``priodol'' i weithio.\n"
+"Mae rhywfaint o wybodaeth i'w gael amdanynt yn %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Cychwyn y rhwydwaith"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Cau'r rhwydwaith"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Llwytho ffeil %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Copïo rhai pecynnau ar ddisg ar gyfer defnydd yn y dyfodol"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Copïo ar waith"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "rhaid cael"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "pwysig"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "hyfryd iawn"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "hyfryd"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "efallai"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "Cynnyrch 2007"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Mur Cadarn Invictus"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Modd Byw Discovery"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Sut i gofrestru"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva Online Services"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Thema Newydd"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Man Gwaith"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Gweithfan Swyddfa"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Rhaglenni swyddfa: prosesydd geiriau (OpenOffice.org Writer, Kword), "
+"taenlenni (OpenOffice.org Calc, Kspread), ddarllenydd pdf, ag ati"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Rhaglenni swyddfa: prosesydd geiriau (Kword, abiword), taenlenni (kspread, "
+"gnumeric), ddarllenydd pdf, ag ati"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Man chwarae"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Rhaglenni difyrrwch: arcêd, gemau bwrdd, strategaeth, ag ati"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Man aml-gyfrwng"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Chwarae sain a fideo/rhaglenni golygu"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Man Rhyngrwyd"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Casgliad o offer i ddarllen ac anfon e-bost a newyddion (mutt, tin..) ac i "
+"bori'r We"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Cyfrifiadur Rhwydwaith (cleient)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Cleientiaid ar gyfer protocolau amrywiol yn cynnwys ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Offer i wneud ffurfweddu'ch cyfrifiadur yn haws"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Offer y Consol"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Golygyddion, cregyn, offer ffeilio, terfynellau"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Datblygiad"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Llyfrgelloedd datblygiadol C a C++, rhaglenni a ffeiliau cynnwys"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dogfennaeth"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Llyfrau a Howto's ar Linux a Meddalwedd Rhydd"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Cefnogaeth i raglenni trydydd parti"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Gweinydd Gwe"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Grwpwar"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Gweinydd Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Mur Gwarchod/Llwybrydd"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Porth i'r rhyngrwyd"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "E-bost/Newyddion"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Gweinydd e-bost Postfix, gweinydd newyddion Inn"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Cyfeiriadur Gweinydd"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Gweinydd FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Gweinydd Enw Parth a Gwybodaeth Rhwydwaith"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Gweinydd Ffeil a Rhannu Argraffydd"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "Gweinydd NSF, gweinydd Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Cronfa Ddata"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Gweinydd cronfa data PostgreSQL neu MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Gwe/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "E-bost"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Gweinydd e-bost Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Gweinydd cronfa data PostgreSQL neu MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Gweinydd Cyfrifiadur Rhwydwaith"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Gweinydd NFS, gweinydd SMB, gweinydd dirprwyol, gweinydd ssh"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Amgylchedd Graffig"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Man Gwaith KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"KDE - Amgylchedd Bwrdd gwaith K, yr amgylchedd graffig sylfaenol gyda "
+"chasgliad o offer"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Man Gwaith Gnome"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Amgylchedd graffig gyda chasgliad o raglenni ac offer bwrdd gwaith hawdd eu "
+"defnyddio."
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "Bwrdd Gwaith IceWm"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Byrddau Gwaith Graffigol Eraill"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, ag ati"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Gwasanaethau"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Gweinydd SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Gweinydd Ffurfweddiad Pell Webmin"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Gwasanaethau Rhwydwaith/Monitro"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Offer monitro, cyfrifo prosesau, tcpdunp, nmap..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Dewiniaid Mandriva"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "dewiniaid i ffurfweddu gweinydd"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Digwyddodd gwall ond wn i ddim sut i ddelio ag ef yn dwt.\n"
+"Mae'n beryglus i barhau."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Methodd rhai pecynnau pwysig a chael eu gosod yn gywir.\n"
+"Un ai mae eich disg CD-ROM neu eich CD-ROM yn wallus.\n"
+"Gwiriwch y CD-ROM ar gyfrifiadur wedi ei osod gan ddefnyddio \"rpm -qpl "
+"media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Cychwyn cam '%s\"\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Gosodiad %s Mandriva Linux"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> rhwng elfennau"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Mae eich sytem yn brin o adnoddau. Efallai bod gennych broblem wrth osod\n"
+"Mandriva Linux. Os yw hynny'n digwydd, defnyddiwch y gosod testun yn lle\n"
+"hynny. I wneud hynny pwyswch 'F1' wrth gychwyn ar CDROM, ac yna teipio "
+"'text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Dewis y Grŵp Pecyn"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Dewis pecynnau unigol."
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Cyfanswm maint: %d/%d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Pecyn gwallus"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Fersiwn:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Maint:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Pwysigrwydd: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Does dim modd i chi ddewis/dad-ddewis y pecyn"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "oherwydd %s coll"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "oherwydd %s annigonol"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "ceisio hyrwyddo %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "er mwyn cadw %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "Nid oes modd i chi ddewis y pecyn hwn - does dim lle ar ôl i'w osod"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Mae'r pecynnau canlynol i'w gosod"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Bydd y pecynnau canlynol yn cael eu tynnu"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Mae hwn yn becyn hanfodol, does dim modd ei ddad-ddewis"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Does dim mod dad-ddewis y pecyn, mae wedi ei osod yn barod"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Does dim mod dad-ddewis y pecyn hwn. Rhaid ei ddiweddaru"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Dangoswch y pecynnau dewis awtomatig"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Gosodiad"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Llwytho/Cadw'r dewis"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Diweddaru'r dewis pecynnau"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Gosodiad lleiaf"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Rheoli Meddalwedd"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Dewiswch y pecynnau hoffech chi eu gosod"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Gosod"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Dim manylion"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Amser yn weddill"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Amcangyfrif"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pecyn"
+msgstr[1] "%d pecyn"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Crynodeb"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Ffurfweddu"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "heb ffurfweddu"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Mae'r cyfrwng gosod canlynol wedi ei ganfod.\n"
+"Os hoffech hepgor rhai ohonynt, dad-ddewiswch nhw nawr."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Mae gennych y dewis i gopîo cynnwys y CD ar i'r disg caled cyn gosod "
+"Mandriva Linux.\n"
+"Bydd yna'n parhau o'r disg caled a bydd y pecynnau ar gael unwaith i'r "
+"system gael ei osod yn gyflawn."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Copïo'r CDau cyfan"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Digwyddodd gwall"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Dewiswch gynllun eich bysellfwrdd."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Dyma restr lawn o'r bysellfyrddau sydd ar gael"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Gosod/Diweddaru"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Gosod neu ddiweddaru?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Diweddaru %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Allwedd amgryptio ar gyfer %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Ffurfweddu IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Nid oes lle rhydd ar gyfer yr ymlwythwr 1MB! Bydd y gosodiad yn parhau, ond "
+"i gychwyn y system bydd rhaid i chi greu rhaniad ymlwythwr yn DiskDrake"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Bydd angen i chi greu llwythwr mwdwl PPC PReP Boot! Bydd y gosodiad yn "
+"parhau, ond i gychwyn y system bydd rhaid i chi greu rhaniad ymlwythwr yn "
+"DiskDrake"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Newidiwch eich CD-ROM\n"
+"\n"
+"Rhowch y CD-ROM \"%s\" yn eich gyrrwr a chlicio Iawn ar ôl gorffen\n"
+"Os nad yw gennych, cliciwch Dileu i osgoi gosod o'r CD-ROM hon."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Casglu'r pecynnau sydd ar gael..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"Nid oes gan eich system ddigon o le ar gyfer gosod neu uwchraddio (%dMB > %"
+"dMB)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Dewiswch lwytho neu gadw pecyn dewiswyd.\n"
+"Mae'r fformat yr un â ffeiliau cynhyrchwyd drwy auto_install."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Llwyth"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Gorffen"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Ffeil drwg"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Mae'r maint a ddewiswyd yn fwy na'r lle ar gael"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Math o osodiad"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Nid ydych wedi dewis unrhyw grwpiau o becynnau.\n"
+"Dewiswch y gosodiad lleiaf rydych ei eisiau"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Gyda X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Gyda dogfennaeth elfennol (argymhellir!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Gosodiad bychan iawn (yn arbennig dim urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Popeth"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Paratoi'r gosodiad"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Gosod pecyn %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Roedd gwall wrth drefnu pecynnau:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Mynd yn ein blaen beth bynnag?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Ceisio Eto"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "Hepgor y pecyn"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "Hepgor pob pecyn o gyfrwng \"%s\""
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "Mynd yn ôl at ddewis cyfrwng a phecyn"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "Digwyddodd gwall wrth osod pecyn: %s."
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Ffurfweddiad ôl osod"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "Gwnewch yn siŵr fod cyfrwng Diweddaru Modiwlau yng ngyrrwr %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Diweddaru"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Mae'n bosibl i chi llwytho i lawr y pecynnau diweddaraf sydd wedi eu\n"
+"ryddhau ers i'r dosbarthiad fod ar gael. Efallai bod gwallau a materion "
+"diogelwch wedi eu cywiro\n"
+"\n"
+"I lwytho'r pecynnau i lawr, bydd angen cyswllt gweithredol\n"
+"â'r Rhyngrwyd.\n"
+"\n"
+"Ydych chi am osod y diweddariadau?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Cysylltu â'r drych i estyn y rhestr o becynnau sydd ar gael..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Methu canfod drych: %s."
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Caledwedd"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Cerdyn sain"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "A oes gennych gerdyn sain ISA?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Rhedwch \"alsaconf\" neu \"sndconfig\" wedi'r gosodiad i ffurfweddu eich "
+"cerdyn sain"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Heb ganfod cerdyn sain. Ceisiwch \"harddrake\" wedi'r gosodiad"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Cerdyn Teledu"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Rhyngwyneb graffigol"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Rhwydwaith a'r Rhyngrwyd"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Dirprwyon"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "ffurfweddwyd"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Lefel Diogelwch"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Mur Cadarn"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "gweithredwyd"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "anablwyd"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Cychwyn"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s ar %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Nid ydych wedi ffurfweddu X. Ydych chi'n siŵr eich bod am wneud hyn?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Paratoi cychwynnwr..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Mae'n ymddangos fod gennych beiriant OldWorld neu Anhysbys ac ni fydd "
+"cychwynnydd yaboot yn gweithio ar eich cyfer Bydd y gosodiad yn parhau ond "
+"bydd rhaid defnyddio BootX i gychwyn eich peiriant. Ymresymiad y cnewyllyn "
+"ar gyfer y gwraidd yw: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Ydych chi eisiau defnyddio aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Gwall gosod aboot, \n"
+"ceisiwch orfodi gosodiad hyd yn oed os yw hynny'n dinistrio'r rhaniad cyntaf?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Ar y lefel diogelwch yma, mae mynedfa i ffeiliau yn rhaniad Windows wedi eu "
+"cyfyngu i'r Gweinyddwr."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Rhowch ddisg meddal yng ngyrrwr %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Creu disg meddal awto gosod..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Nid yw rhai camau wedi eu cwblhau.\n"
+"\n"
+"Ydych chi wir eisiau gorffen?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Llongyfarchiadau"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Ailgychwyn"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Creu disg meddal awto gosod"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Mae modd awtomeiddio'r awto gosod, os hoffech\n"
+"chi, yn yr achos hwnnw bydd yn cymryd drosodd y\n"
+"disg caled!!\n"
+"(mae hyn ar gyfer gosod ar flwch arall).\n"
+"\n"
+"Efallai byddai'n well gennych ai osod y gosodiad.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Ail chwarae"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Awtomeiddwyd"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Cadw'r dewis becynnau"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Iaith"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Trwydded"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Llygoden"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Canfod disg caled"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Dosbarth gosod"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Bysellfwrdd"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Diogelwch"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Creu rhaniadau"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Fformatio"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Dewis pecynnau"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Gosod"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Dilysu"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Defnyddwyr"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Rhwydweithio"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Cychwynnwr ar waith"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Ffurfweddu X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Crynodeb"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Gwasanaethau"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Diweddaru"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Gadael"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d pecyn, %d MB)"
+#~ msgstr[1] "(%d pecyn, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pecyn"
+
+#~ msgid "Language"
+#~ msgstr "Iaith"
+
+#~ msgid "License"
+#~ msgstr "Trwydded"
+
+#~ msgid "Installation class"
+#~ msgstr "Dosbarth gosod"
+
+#~ msgid "Formatting"
+#~ msgstr "Fformatio"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Dewis pecynnau"
+
+#~ msgid "Users"
+#~ msgstr "Defnyddwyr"
+
+#~ msgid "Networking"
+#~ msgstr "Rhwydweithio"
+
+#~ msgid "Configure X"
+#~ msgstr "Ffurfweddu X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Methu cael mynediad i modiwlau'r cnewyllyn sy'n cyfateb i'ch cnewyllyn "
+#~ "chi (mae ffeil %s ar goll), mae hyn yn golygu, fel arfer, nad yw eich "
+#~ "disg cychwyn yn cydweddu gyda'r cyfrwng Gosod (crëwch ddisg cychwyn "
+#~ "meddal newydd)"
diff --git a/perl-install/install/share/po/da.po b/perl-install/install/share/po/da.po
new file mode 100644
index 000000000..0148720cb
--- /dev/null
+++ b/perl-install/install/share/po/da.po
@@ -0,0 +1,1628 @@
+# translation of da.po to
+# translation of da1.po to Danish
+# translation of da.po to Danish
+# translation of DrakX-da.po to Danish
+# Copyright (C) 2000,2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+# Troels Liebe Bentsen <tlb@iname.com> 2000.
+# Keld Simonsen <keld@dkuug.dk>, 2000-2003, 2004, 2005.
+# Keld Simonsen <keld@rap.dk>, 2005, 2006.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: da\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2006-10-01 16:31+0200\n"
+"Last-Translator: Keld Simonsen <keld@rap.dk>\n"
+"Language-Team: <da@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Har du andre supplerende medier?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"De følgende medier er fundet og vil blive brugt ved installeringen: %s.\n"
+"\n"
+"\n"
+"Har du et supplerende installationsmedium, der skal konfigureres?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "Cd-rom"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Netværk (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Netværk (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Netværk (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL på spejlet?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "URL skal starte med ftp:// eller http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Kontakter Mandriva Linux netsted for at hente listen over tilgængelige spejle"
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Mislykkedes med at kontakte Mandriva Linux netsted for at hente listen over "
+"tilgængelige spejle"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Vælg det spejl hvorfra pakkerne skal hentes"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "NFS-opsætning"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Indtast værtsnavn og katalog for dit NFS-medie"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Værtsnavn på NFS-monteringen?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Katalog"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Kan ikke finde hdlist-fil på dette spejl"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Leder efter pakker der allerede er installeret..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Fjerner pakker før opgradering..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Leder efter pakker som skal opgraderes"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Du har valgt følgende servere: %s\n"
+"\n"
+"\n"
+"Disse servere er aktiveret som standard. De har ingen kendte "
+"sikkerhedsproblemer, men nogen nye kan blive fundet. I så tilfælde skal du "
+"opgradere så snart som mulig.\n"
+"\n"
+"\n"
+"Ønsker du virkelig at installere disse servere?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"De følgende pakker vil blive fjernet for at kunne opdatere systemet: %s\n"
+"\n"
+"\n"
+"Ønsker du virkelig at fjerne disse pakker?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "De følgende diske blev omdøbt:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (tidligere kaldet %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Netværk"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Vælg et medie"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Fil eksisterer allerede. Skal den overskrives?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Adgang nægtet"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Dårligt NFS-navn"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Dårligt medie %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Kan ikke lave øjebliksbilleder før partitionering"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Øjebliksbilleder vil være tilgængelige efter installation i %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Installation"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Konfiguration"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Du skal også formatere %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Noget maskinel på din maskine skal bruge ''proprietære'' drivere for at "
+"virke.\n"
+"Du kan finde information om dem hos: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Bringer netværket op"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Lukker netværket ned"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Henter filen %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Kopierer nogle pakker til disk til fremtidig brug"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Kopiering udføres"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "skal have"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "vigtigt"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "meget rart"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "rart"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "måske"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "2007 produktlinje"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Invictus brandmur"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery Live Mode"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Hvordan man registerer"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva-tjenester på nettet"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Nyt tema"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Arbejdsstation"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Kontor-arbejdsstation"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Kontor-programmer: Tekstbehandling (OpenOffice.org, kword, abiword), "
+"regneark (OpenOffice.org, kspread, gnumeric), pdf-visere, o.lign."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Kontor-programmer: Tekstbehandler (kword, abiword), regneark (kspread, "
+"gnumeric), pdf-visere, o.lign."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Spillemaskine"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Underholdnings-programmer: arkade, bræt, strategi, osv."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimedie-station"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Lyd- og video-afspillere og redigeringsværktøjer"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internet-station"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Værktøjssæt til at læse samt sende post og nyheder (mutt, tin..) , og til at "
+"browse på nettet"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Netværksmaskine (klient)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Klienter for forskellige protokoller inklusiv ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Værktøjer til at lette indstillingen af din maskine"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Konsolværktøjer"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Redigeringsværktøjer, skaller, filværktøjer, terminaler"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Udvikling"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C og C++ udviklingsbiblioteker, programmer, og include-filer."
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentation"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Bøger og vejledninger om Linux og Frit Programmel"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Understøttelse for tredjeparts-programmer"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Webserver"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Gruppeprogrammel"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab-server"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Brandmur/ruter"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internetadgang"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Post og nyheder"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix postserver, inn nyhedsserver"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Katalogserver"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP-server"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Server for domænenavne (DNS) og netværksinformation (NIS)"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Fil- og Printerdelings-server"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS-server, Samba-server"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Database"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL og MySQL database-server"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache og Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Post"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix postserver"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL eller MySQL database-server"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Netværksmaskine server"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS-vært, SMB-vært, mellemvært (proxy), SSH-vært"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Grafisk miljø"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE-arbejdsstation"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K Desktop -miljøet, det grundlæggende grafiske miljø, med en vifte af "
+"supplerende værktøjer."
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Gnome-arbejdsstation"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "Et grafisk miljø med brugervenlig samling af programmer og værktøjer"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm Desktop"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Andre grafiske miljøer"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, etc"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Nytteprogrammer"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH-server"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin ekstern konfigurationsserver"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Nytteprogrammer og overvågning af netværk"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Overvågningsværktøjer, proceskontering, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva konfigurationsprogrammer"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Hjæpeprogrammer til at konfigurere server"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Der opstod en fejl, men jeg ved ikke hvordan den kan håndteres på en\n"
+"pæn måde.\n"
+"Fortsæt på eget ansvar!"
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Nogle vigtige pakker blev ikke installeret rigtigt.\n"
+"Enten er dit cdrom-drev eller din cdrom fejlbehæftet.\n"
+"Tjek cdrom'en på en færdiginstalleret maskine ved brug af \"rpm -qpl media/"
+"main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Går til trin `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux Installation %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> mellem elementer"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Dit system har kun få resurser. Du kan få problemer med at installere\n"
+"Mandriva Linux. Hvis dette sker, kan du prøve en tekst-baseret installation "
+"i stedet\n"
+"Dette gøres ved at trykke 'F1' ved opstart fra cdrommen, og så skrive 'text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Valg af pakkegrupper"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Individuelt pakkevalg"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Total størrelse: %d / %d Mb"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Dårlig pakke"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Version: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Størrelse: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr " %d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Vigtighed: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Du kan ikke vælge/fravælge denne pakke"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "grundet manglende %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "grundet uopfyldt %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "prøver at forfremme %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "for at beholde %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Du kan ikke vælge denne pakke, da der ikke er nok plads tilbage til at "
+"installere den"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "De følgende pakker vil blive installeret"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "De følgende pakker vil blive afinstalleret"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Dette er en nødvendig pakke, den kan ikke vælges fra"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Du kan ikke fravælge denne pakke. Den er allerede installeret"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Du kan ikke fravælge denne pakke. Den skal opgraderes"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Vis automatisk valgte pakker"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Installér"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Indlæs eller gem markering"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Opdaterer pakkevalg"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimal installation"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr ""
+"Administration\n"
+"af programmer"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Vælg pakker som skal installeres"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Installerer"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Ingen detaljer"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Resterende tid "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Beregnes"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pakke"
+msgstr[1] "%d pakker"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Oversigt"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Konfigurér"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "ikke konfigureret"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"De følgende installationsmedier er fundet.\n"
+"Hvis du ønsker at overspringe nogen af dem, kan du fravælge dem nu."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Du har mulighed for at kopiere indholdet af cd-erne over på disken før "
+"installation.\n"
+"Installationen vil så fortsætte fra disken og pakkerne vil forblive "
+"tilgængelige, når systemet er fuldt installeret."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Kopiér hele cd'er"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Der er opstået en fejl"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Vælg dit tastaturlayout."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Her er den komplette liste over tilgængelige tastaturer"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Installér/Opgradér"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Er dette en nyinstallation eller en opgradering?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Opgradér %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Krypteringsnøgle for %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Konfigurerer IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Det er ikke plads for 1 MB bootstrap! Installationen vil fortsætte, men for "
+"at starte dit system op, skal du lave en bootstrap partition i DiskDrake"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Du skal lave en PPC PReP Boot bootstrap! Installationen vil fortsætte, men "
+"for at starte dit system op, skal du lave bootstrap-partitionen i DiskDrake"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Skift din cdrom!\n"
+"Indsæt cdrom'en med navnet \"%s\" i dit cdrom-drev og tryk på O.k., når det "
+"gjort.\n"
+"Hvis du ikke har den så tryk på Annullér for at undgå installation fra denne "
+"cd."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Leder efter tilgængelige pakker"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Vælg indlæs eller gem pakkevalg på diskette.\n"
+"Formatet er det samme som for auto_install-genererede filer."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Belastning"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Gem"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Dårlig fil"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Valgt størrelse er større end tilgængelig plads"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Installationstype"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Du har ikke valgt nogen gruppe af pakker.\n"
+"Vælg den minimale installation du ønsker"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Med X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Med basal dokumentation (anbefalet!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Virkelig minimal installation (specielt ingen urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Alt"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Forbereder installationen"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr ""
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Der opstod en fejl ved sorteringen af pakkerne:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Fortsæt alligevel?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Prøv igen"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Gem pakke-valg"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Der opstod en fejl ved installeringen af pakkerne:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Konfiguration efter installation"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+"Forsikr dig venligst om at mediet med Opdateringsmodulerne er i drev %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Opdateringer"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Du har nu mulighed for at hente opdaterede pakker som er blevet opdateret\n"
+"efter distributionen blev gjort tilgængelig.\n"
+"\n"
+"Du vil få sikkerhedsrettelser eller fejlrettelser, men du skal have en\n"
+"internet-opkobling for at fortsætte.\n"
+"\n"
+"Ønsker du at installere opdateringerne?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Kontakter spejlet for at hente listen af tilgængelige pakker"
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Kan ikke kontakte spejl: %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Udstyr"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Lydkort"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Har du et ISA-lydkort?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Kør \"alsaconf\" eller \"sndconfig\" efter installation for at konfigurere "
+"dit lydkort"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Intet lydkort genkendt. Prøv at køre \"harddrake\" efter installation"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV-kort"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Grafisk grænseflade"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Netværk og Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxyer "
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "konfigureret"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Sikkerhedsniveau"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Brandmur"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "aktiveret"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "deaktiveret"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Opstart"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s på %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+"Du har ikke konfigureret X. Er du sikker på at du virkelig ønsker dette?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Forbereder opstarter..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Det virker som om du har en OldWorld eller ukendt maskine, yaboot "
+"opstartsindlæseren vil ikke virke for dig. Installationen vil fortsætte, men "
+"du skal bruge BootX eller en anden måde til at starte din maskine. Kernens "
+"parameter for root-filsystemet er: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Ønsker du at bruge aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Fejl ved installation af aboot, \n"
+"forsøg at gennemtvinge installation selv om dette kan ødelægge den første "
+"partition?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"I dette er sikkerhedsniveau er adgang til Windows-partitionen forbeholdt "
+"administratoren."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Indsæt en tom diskette i drev %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Laver autoinstallations-diskette"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Nogen dele af installationen er ikke færdig\n"
+"\n"
+"Er du sikker på du ønsker du at lukke nu?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Tillykke"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Genstart"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Laver autoinstallations-diskette"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Autoinstallation kan ske fuldautomatisk hvis ønsket. I så tilfælde vil den "
+"overtage hele harddisken!! (dette er beregnet til at installere på en anden "
+"maskine).\n"
+"\n"
+"Du foretrækker måske at afspille installationen igen\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Afspil igen"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatisk"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Gem pakke-valg"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Vælg sprog"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licens"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Mus"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Harddisk bestemmelse"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Installations-klasse"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Tastatur"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Sikkerhed"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Opdeling af disk"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Formaterer"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Vælger pakker"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Installerer"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Identifikation"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Brugere"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Netværk"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Systemopstarter"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Konfigurér X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Oversigt"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Tjenester"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Opdateringer"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Afslut"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d pakke, %d MB)"
+#~ msgstr[1] "(%d pakker, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pakker"
+
+#~ msgid "Language"
+#~ msgstr "Vælg sprog"
+
+#~ msgid "License"
+#~ msgstr "Licens"
+
+#~ msgid "Installation class"
+#~ msgstr "Installations-klasse"
+
+#~ msgid "Formatting"
+#~ msgstr "Formaterer"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Vælger pakker"
+
+#~ msgid "Users"
+#~ msgstr "Brugere"
+
+#~ msgid "Networking"
+#~ msgstr "Netværk"
+
+#~ msgid "Configure X"
+#~ msgstr "Konfigurér X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Kunne ikke få adgang til kernemoduler svarende til din kerne (fil %s "
+#~ "mangler), dette betyder normalt at din opstartsdiskette ikke stemmer "
+#~ "overens med installationsmediet (lav en nyere opstartsdiskette)"
diff --git a/perl-install/install/share/po/de.po b/perl-install/install/share/po/de.po
new file mode 100644
index 000000000..0c34b6d78
--- /dev/null
+++ b/perl-install/install/share/po/de.po
@@ -0,0 +1,1649 @@
+# translation of de.po to deutsch
+# Stefan Siegel <siegel@linux-mandrake.com>, 2000, 2001, 2002, 2003.
+# Sebastian Deutscher <sebastian_deutscher@web.de>, 2003,2004.
+# Gerhard Ortner <gerhard.ortner@aon.at>, 2003, 2004.
+# Roy Steuber <roysteuber@mittweida-net.de>, 2004.
+# Marcus Fischer <i18n@marcusfischer.com>, 2004.
+# Frank Köster <frank@dueppel13.de>, 2004, 2005.
+# Ronny Standtke <Ronny.Standtke@gmx.de>, 2003, 2004.
+# Ronny Standtke <Ronny.Standtke@gmx.net>, 2004, 2005.
+# Nicolas Bauer <webmaster@mandrakeusers.de>, 2005.
+# Frank Koester <frank@dueppel13.de>, 2005.
+# Nicolas Bauer <rastafarii@mandrivauer.de>, 2006, 2007.
+# german translation of the MandrivaInstaller.
+# Copyright (C) 2000-2003 Mandriva S.A.
+msgid ""
+msgstr ""
+"Project-Id-Version: de\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-01-20 13:38+0100\n"
+"Last-Translator: Nicolas Bauer <rastafarii@mandrivauer.de>\n"
+"Language-Team: deutsch\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Haben Sie zusätzliche Medien?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Folgende Medien wurden gefunden und werden während der Installation "
+"verwendet: %s\n"
+"\n"
+"\n"
+"Haben Sie noch weitere Installationsmedienzum konfigurieren?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Netzwerk (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Netzwerk (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Netzwerk (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL der Spiegel?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "Die URL muss mit ftp:// oder http:// beginnen"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Kontaktiere Mandriva Linux Web-Server, um eine Liste verfügbarer Pakete zu "
+"erhalten..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Kontaktieren Sie die Mandriva Linux Webseiten, um eine Liste verfügbaren "
+"Mirrors zu erhalten"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Bitte wählen Sie einen Mirror, von dem Sie die Pakete holen wollen."
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "NFS-Einrichtungsetup"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+"Bitte geben Sie den Rechnernamen und das Verzeichnis ihres NFS-Mediums ein"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Hostname fehlt"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "Verzeichnis muss mit \"/\" beginnen"
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Rechnername der NFS-Einbindung?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Verzeichnis"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Ergänzend"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Kann die Datei hdlist nicht auf diesem Spiegel finden"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Suche nach bereits installierten Paketen ..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Entferne Pakete vor der Aktualisierung..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Finde die zu aktualisierenden Pakete ..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Sie haben die folgenden Server ausgewählt: %s\n"
+"\n"
+"\n"
+"Diese Server werden standardmäßig aktiviert. Sie haben keine bekannten\n"
+"Sicherheitsprobleme, jedoch könnten einige neue entdeckt werden. Stellen\n"
+"Sie deshalb sicher, dass Sie diese Pakete so zeitig wie möglich "
+"aktualisieren.\n"
+"\n"
+"\n"
+"Wollen Sie diese Server wirklich installieren?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Folgende Pakete werden entfernt, um das Aktualisieren Ihres Rechners zu "
+"ermöglichen: %s\n"
+"\n"
+"\n"
+"Wollen Sie diese Pakete wirklich entfernen?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Die folgenden Datenträger wurden umbenannt:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (vorher als %s bezeichnet)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Netzwerk"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Bitte wählen Sie ein Medium"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Die Datei existiert bereits. Überschreiben?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Erlaubnis verweigert"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Falscher NFS-Name"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Mediumfehler %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Vor der Partitionierung kann ich keine Screenshots machen."
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Die Screenshots liegen nach der Installation unter „%s“"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Installation"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Konfiguration"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Sie müssen auch %s formatieren."
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Einige Hardware-Komponenten Ihres Rechners benötigen „proprietäre“\n"
+"Treiber. Weitere Infos hierzu finden Sie unter: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Netzwerkverbindung herstellen"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Netzwerkverbindung trennen"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Lade Datei %s herunter..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Pakete auf die Festplatte speichern für die spätere Verwendung"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Dateien werden kopiert"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "unbedingt notwendig"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "wichtig"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "sehr angenehm"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "angenehm"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "eventuell"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "2007 Produktlinie"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Invictus Firewall"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery Live Modus"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Wie registrieren?"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva Online Dienst"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Neue Themen"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Arbeitsplatzrechner"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Büro-Arbeitsplatz"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Office-Programme: Textverarbeitung (Openoffice.org Writer, KWord), "
+"Tabellenkalkulation (OpenOffice.org Calc, KSpread), PDF-Betrachter, usw."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Office-Programme: Textverarbeitung (KWord, Abiword), Tabellenkalkulation "
+"(KSpread, Gnumeric), PDF-Betrachter, usw."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Spiele-Station"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Spiele: Arcade-, Brett-, Strategiespiele, usw."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimedia-Station"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Programme, um Sound und Video abzuspielen und zu bearbeiten"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internet-Station"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Programme um E-Mails und News zu lesen und zu versenden (pine, mutt, tin..) "
+"und um im Internet zu surfen"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Netzwerk-Computer (Client)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Clients für verschiedene Protokolle, u.a. SSH"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Werkzeuge, die die Konfiguration Ihres Computers erleichtern"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Konsolen-Werkzeuge"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editoren, Shells, Dateiwerkzeuge, Konsolen"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Entwicklung"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C und C++ Entwicklungsbibliotheken, Programme und Include-Dateien"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentation"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Bücher und HOWTOs zu GNU/Linux und Freier Software"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux-Standard-Base. Drittanbieterunterstützung"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Webserver"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab-Server"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Firewall / Router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internet-Gateway"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "E-Mail/News"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix Mail-Server, Inn News-Server"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Verzeichnisdienst"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP-Server"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Domänennamen- und Netzwerk-Informations-Server"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Datei- und Druckerserver"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS-Server, Samba Server"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Datenbank"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL und MySQL-Datenbankserver"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Email"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix Mail-Server"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL oder MySQL-Datenbankserver"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Netzwerkrechner-Server"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS-Server, SMB-Server, Proxy-Server, SSH-Server"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Grafische Arbeitsoberfläche"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE-Arbeitsplatz"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"Die K-Desktop-Umgebung, die Standard-Arbeitsfläche mit einer Sammlung "
+"zugehöriger Programme"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Gnome-Arbeitsplatz"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Eine grafische Umgebung mit anwenderfreundlichen Anwendungen und Werkzeugen"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm-Desktop"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Andere grafische Arbeitsflächen"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, usw."
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Werkzeuge"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH-Server"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin Fernkonfigurationsserver"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Netzwerkwerkzeuge/-überwachung"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Überwachungswerkzeuge, Prozessverwaltung, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva-Assistenten"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Assistenten zur Servereinrichtung"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Es trat ein Fehler auf. Ich weiß jedoch nicht, wie ich damit sinnvoll \n"
+"umgehen soll. Sie können fortfahren, jedoch auf eigenes Risiko!"
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Einige wichtige Pakete wurden nicht richtig installiert. \n"
+"Entweder ist Ihr CD-ROM-Laufwerk oder Ihre CD-ROM defekt. \n"
+"Testen Sie die CD-ROM auf einem Linux-Rechner mittels „rpm -qpl \n"
+"media/main/*.rpm“\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Beginn von Schritt „%s“\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux-Installation %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> zwischen den Elementen"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Ihr Rechner hat nicht genug Ressourcen. Vermutlich werden bei der \n"
+"Installation Probleme auftreten. In diesem Fall sollten Sie eine \n"
+"Text-Installation versuchen. Drücken Sie dafür <F1> während dem \n"
+"Installationsstart und geben Sie „text“ an der Eingabeaufforderung \n"
+"ein."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Auswahl der Paketgruppen"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Individuelle Paketauswahl"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Gesamtgröße: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Ungültiges Paket"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Version: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Größe: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Wichtigkeit: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Sie können dieses Paket nicht auswählen/abwählen."
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "%s fehlt"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "Aufgrund unerfüllter %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "Versuche %s voranzutreiben"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "um %s beizubehalten"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Sie können dieses Paket nicht auswählen, da Sie nicht genug Plattenplatz "
+"haben."
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Die folgenden Pakete werden installiert"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Die folgenden Pakete werden entfernt"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Dieses Paket ist existenziell, sie können es nicht abwählen!"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr ""
+"Sie können dieses Paket nicht aus der Auswahl entfernen. \n"
+"Es ist bereits installiert!"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr ""
+"Sie können dieses Paket nicht aus der Auswahl entfernen. \n"
+"Es muss aktualisiert werden!"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Automatisch markierte Pakete anzeigen"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Installation"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Auswahl laden/speichern"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Erneuere Paket Auswahl"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimal-Installation"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Software verwalten"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Zu installierende Pakete auswählen"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Installation wird durchgeführt"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Keine Details"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Verbleibende Zeit "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Schätzung"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d Paket"
+msgstr[1] "%d Pakete"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Zusammenfassung"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Konfigurieren"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "Nicht eingerichtet"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Die folgenden Installationsmedien wurden gefunden.\n"
+"Wählen Sie die Medien ab, die Sie überspringen wollen."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Sie haben die Möglichkeit, den Inhalt der CDs vor der Installation auf "
+"Festplatte zu kopieren. Die Installation wird dann von Festplatte "
+"fortgeführt und die Softwarepakete bleiben verfügbar, nachdem das System "
+"fertig installiert ist."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Kopiere die CDs"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Ein Fehler ist aufgetreten"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Bitte wählen Sie Ihren Tastaturtyp."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Komplette Liste aller Tastaturlayouts"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Installation/Aktualisierung"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Handelt es sich um eine Installation oder eine Aktualisierung?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Aktualisiere %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Schlüssel für %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE konfigurieren"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Sie haben keinen Platz für die 1 MB große Start-Partition vorgesehen! Die "
+"Installation wird fortgesetzt, Sie müssen jedoch eine Start-Partition mit "
+"DiskDrake erstellen."
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Sie müssen einen PPC PReP Boot Lader erzeugen! Die Installation wird "
+"fortgesetzt, Sie müssen jedoch eine Start-Partition mit DiskDrake erstellen."
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Bitte wechseln Sie die CD!\n"
+"Bitte legen Sie die CD-ROM „%s“ in Ihr Laufwerk. Drücken Sie dann auf „OK“.\n"
+"Falls Sie sie nicht vorliegen haben, drücken Sie auf „Abbrechen“."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Suche nach vorhandenen Paketen..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"Das System hat für die Installation oder das Update nicht genug freien "
+"Speicher (%dMB > %dMB)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Bitte wählen Sie, ob die Paketauswahl geladen oder\n"
+"gespeichert werden soll. Es handelt sich um das gleiche\n"
+"Format, wie die unter „auto_install“ erzeugten Disketten."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Last"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Speichern"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Datei fehlerhaft"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Gewünschte Größe übersteigt den verfügbaren Platz"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Installationstyp"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Sie haben keine Paketgruppe ausgewählt.\n"
+"Bitte wählen Sie die minimale Installation, die Sie wünschen."
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Mit X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Mit minimaler Dokumentation (Empfohlen)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Extrem minimale Installation (ohne „urpmi“)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Alle"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Bereite Installation vor"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Installiere Paket %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Bei der Anforderung folgender Pakete trat ein Fehler auf:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Wollen Sie trotzdem fortfahren?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Wiederholen"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "Dieses Paket überspringen"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "Überspringe alle Pakete von dem Medium \"%s\""
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "Zurück zu den Medien und zur Paketauswahl"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "Bei der Installation des Paketes%s trat ein Fehler auf."
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Bereite weitere Konfiguration vor ..."
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+"Bitte stellen Sie sicher, dass sich das Update-Modul-Medium im Laufwerk %s "
+"befindet"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Aktualisierungen"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Sie haben nun die Möglichkeit Pakete zu installieren, die seit Erscheinen\n"
+"der Distribution aktualisiert wurden. Es handelt sich um \n"
+"Sicherheitsaktualisierungen und Fehlerkorrekturen.\n"
+"\n"
+"Allerdings benötigen Sie dafür eine funktionierende Internetverbindung.\n"
+"\n"
+"Möchten Sie die Aktualisierungen vornehmen?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Kontaktiere Mirror, um eine Liste verfügbarer Pakete zu erhalten..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Mirror %s nicht erreichbar"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Hardware"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Soundkarte"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Verfügen Sie über eine ISA-Soundkarte?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Starten Sie „sndconfig“ oder „alsaconf“ nach der Installation, um Ihre "
+"Soundkarte einzurichten."
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Es wurde keine Soundkarte gefunden. Versuchen Sie „harddrake“ nach der "
+"Installation."
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV-Karte"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Grafikumgebung"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Netzwerk & Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxies"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "konfiguriert"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Sicherheitsebene"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Firewall"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "aktiviert"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "deaktiviert"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Start"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s auf %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Sie haben X nicht konfiguriert. Sind Sie sicher?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Bereite Bootloader vor ..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Sie scheinen einen „OldWorld“ oder unbekannten Rechner zu verwenden. Der "
+"Bootloader „yaboot“ wird daher leider nicht funktionieren. Die Installation "
+"wird fortgesetzt, sie werden jedoch „BootX“ oder etwas ähnliches verwenden "
+"müssen um Ihren Rechner zu starten. Der Kernelparameter für das Root-"
+"Dateisystem ist: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Möchten Sie „aboot“ verwenden?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Fehler bei der Installation von aboot. Soll ich die Installation \n"
+"mit Gewalt versuchen, auch wenn dies die Zerstörung der ersten \n"
+"Partition verursachen kann?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"In dieser Sicherheitseinstellung ist der Zugriff auf Datein der "
+"Windowspartition nur dem Administrator erlaubt"
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Legen Sie eine leere Diskette in das %s ein."
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Erstelle eine Auto-Installationsdiskette"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Einige Schritte sind noch nicht komplett.\n"
+"\n"
+"Wollen Sie DrakX wirklich beenden?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Herzlichen Glückwunsch!"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Neustart"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Erstellen einer Auto-Installationsdiskette"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Die automatische Installation kann, falls Sie wollen,\n"
+"vollautomatisch erfolgen. In diesem Fall wird die\n"
+"Festplatte vollständig durch DrakX rekonfiguriert\n"
+"(diese Möglichkeit ist für die Replikation auf anderen\n"
+"Rechnern gedacht).\n"
+"\n"
+"Vermutlich werden Sie es vorziehen, erneut eine normale\n"
+"Installation durchzuführen.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Erneut abspielen"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatisiert"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Paketauswahl speichern"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Sprache auswählen"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Lizenz"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Maus"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Festplatten suchen"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Installationsgruppe"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Tastatur"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Sicherheit"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Partitionierung"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Formatieren"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Pakete auswählen"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Installation wird durchgeführt"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Authentifizierung"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Benutzer"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Netzwerk"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Bootloader"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "X konfigurieren"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Zusammenfassung"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Dienste"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Aktualisierungen"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Verlassen"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d Paket, %d MB)"
+#~ msgstr[1] "(%d Pakete, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d Pakete"
+
+#~ msgid "Language"
+#~ msgstr "Sprache auswählen"
+
+#~ msgid "License"
+#~ msgstr "Lizenz"
+
+#~ msgid "Installation class"
+#~ msgstr "Installationsgruppe"
+
+#~ msgid "Formatting"
+#~ msgstr "Formatieren"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Pakete auswählen"
+
+#~ msgid "Users"
+#~ msgstr "Benutzer"
+
+#~ msgid "Networking"
+#~ msgstr "Netzwerk"
+
+#~ msgid "Configure X"
+#~ msgstr "X konfigurieren"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Ich kann die Kernel-Module, die zu diesem Kernel passen, nicht finden "
+#~ "(Datei %s fehlt). Das bedeutet normalerweise das Ihre Startdiskette nicht "
+#~ "mit dem Installationsmedium übereinstimmt (Bitte erstellen Sie eine neue "
+#~ "Startdiskette). "
diff --git a/perl-install/install/share/po/el.po b/perl-install/install/share/po/el.po
new file mode 100644
index 000000000..7d944148a
--- /dev/null
+++ b/perl-install/install/share/po/el.po
@@ -0,0 +1,1618 @@
+# translation of DrakX-el.po to Greek
+# Greek translation for drakfloppy.
+# Copyright (C) 2001,2003 Free Software Foundation, Inc.
+# Thanos Kyritsis <djart@hellug.gr>, 2001.
+# Νίκος Νύκταρης (Nick Niktaris) <niktarin@yahoo.com>, 2003
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-el\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2004-09-15 13:28+0200\n"
+"Last-Translator: Νίκος Νύκταρης (Nick Niktaris) <niktarin@yahoo.com>\n"
+"Language-Team: Greek <nls@tux.hellug.gr>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.0.1\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Έχετε άλλον;"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "Δίκτυο %s"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "Δίκτυο %s"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Σύνδεση με την τοποθεσία της Mandriva Linux για λήψη των διαθέσιμων τόπων "
+"λήψης..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Σύνδεση με την τοποθεσία της Mandriva Linux για λήψη των διαθέσιμων τόπων "
+"λήψης..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Επιλέξτε τόπο από τον οποίο θα γίνει η λήψη πακέτων"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Κατάλογος"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Δεν βρέθηκε το %s στο %s"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Ψάχνω για ήδη εγκατεστημένα πακέτα..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Αναζήτηση πακέτων προς αναβάθμιση..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Έχετε επιλέξει τους παρακάτω διακομιστές(η): %s\n"
+"\n"
+"\n"
+"Αυτοί οι διακομιστές είναι εξ ορισμού ενεργεί. Δεν έχουν κάποιο γνωστό "
+"πρόβλημα\n"
+"ασφάλειας, αλλά μπορούν να βρεθούν νέα. Σε αυτή την περίπτωση βεβαιωθείτε "
+"ότι\n"
+"έχετε εγκαταστήσει την τελευταία έκδοση το συντομότερο.\n"
+"\n"
+"\n"
+"Είστε βέβαιοι για την εγκατάσταση αυτών των διακομιστών;\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Τα παρακάτω πακέτα θα αφαιρεθούν για να αναβαθμιστεί το σύστημά σας: %s\n"
+"\n"
+"\n"
+"Θέλετε πραγματικά να αφαιρέστε αυτά τα πακέτα;\n"
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Τα παρακάτω πακέτα πρέπει να εγκατασταθούν:\n"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Δίκτυο"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "Παρακαλώ επιλέξτε"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Το αρχείο υπάρχει ήδη. Να ξαναγραφεί;"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Δεν δόθηκε άδεια"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "προστίθεται το μέσο %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Αδύνατη η λήψη στιγμιοτύπων πριν από την δημιουργία κατατμήσεων"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Τα στιγμιότυπα θα είναι διαθέσιμα μετά την εγκατάστασης στο %s"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Εγκατάσταση"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Ρύθμιση"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Πρέπει επίσης να μορφοποιήσετε το %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Ένα μέρος του υλικού σας χρειάζεται ``ιδιόκτητους'' οδηγούς για να "
+"λειτουργήσει.\n"
+"Μπορείτε να βρείτε σχετικές πληροφορίες στο: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Εκκίνηση δικτύου"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Διακοπή λειτουργίας δικτύου"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "Αποστολή αρχείων..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "Ανίχνευση σε εξέλιξη"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "πρέπει να υπάρχει"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "σημαντικό"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "πολύ καλό"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "καλό"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "ίσως"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Σταθμός Εργασίας"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Σταθμός Εργασίας Γραφείου"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Εργαλεία γραφείου: Επεξεργαστές κειμένου(OpenOffice.org Writer, Kword), "
+"λογιστικά φύλλα (OpenOffice.org Calc, Kspread), αρχεία pdf κλπ"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Εργαλεία γραφείου: Επεξεργαστές κειμένου(kword, abiword), λογιστικά φύλλα "
+"(kspread, gnumeric), αρχεία pdf κλπ"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Σταθμός παιχνιδιών"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Διασκέδαση (παιχνίδια)"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Σταθμός πολυμέσων"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Προγράμματα αναπαραγωγής και διαχείρισης video και ήχου"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Σταθμός Διαδικτύου"
+
+#: share/meta-task/compssUsers.pl:44
+#, fuzzy, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Εργαλεία για αποστολή και λήψη αλληλογραφίας και ειδήσεων (pine, mutt, "
+"tin...) και περιήγηση στο Διαδίκτυο"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Υπολογιστής Δικτύου (πελάτης)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Πελάτες για διαφορετικά πρωτόκολλα συμπεριλαμβανομένου του ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Εργαλεία για διευκόλυνση της ρύθμισης του υπολογιστή σας"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Εργαλεία Κονσόλας"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Επεξεργαστές κειμένου, κελύφη, εργαλεία αρχείων, τερματικά"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Ανάπτυξη"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Βιβλιοθήκες ανάπτυξης C και C++, προγράμματα και άλλα αρχεία"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Τεκμηρίωση"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Βιβλία και οδηγοί για το Linux και το Ελεύθερο Λογισμικό"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Υποστήριξη εφαρμογών τρίτων"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Εξυπηρετητής Ιστοσελίδων"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, fuzzy, c-format
+msgid "Groupware"
+msgstr "oμάδα"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Εξυπηρετητής του Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Τοίχος Προστασίας/Δρομολογητής"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Πύλη Διαδικτύου"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/Αρχείο/_Νέο"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Εξυπηρετητής ταχυδρομείου Postfix"
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "Επαναφορά από CD"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Διακομιστής FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Εξυπηρετητής Όνομα Τομέα και Πληροφοριών Δικτύου"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Εξυπηρετητής Εκτυπώσεων"
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "Εξυπηρετητής Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Βάση Δεδομένων"
+
+#: share/meta-task/compssUsers.pl:117
+#, fuzzy, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Εξυπηρετητής βάσης δεδομένων PostgreSQL ή MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Ταχυδρομείο"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Εξυπηρετητής ταχυδρομείου Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Εξυπηρετητής βάσης δεδομένων PostgreSQL ή MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Εξυπηρετητής δικτύου"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr ""
+"εξυπηρετητής NFS, εξυπηρετητής SMB, εξυπηρετητής Proxy, εξυπηρετητής ssh"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Γραφικό Περιβάλλον"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Σταθμός εργασίας KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "Το περιβάλλον γραφείου KDE με μια συλλογή συνοδευτικών εργαλείων"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Σταθμός Εργασίας Gnome"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "Γραφικό περιβάλλον με φιλικά εργαλεία και εφαρμογές"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Επιφάνεια εργασίας"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Άλλα γραφικά περιβάλλοντα"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, κλπ"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Εργαλεία"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Εξυπηρετητής SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "Υπηρεσία Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Ρύθμιση του Διακομιστή Τερματικού Mandriva"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Παρακολούθηση Δικτύου"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "Κέντρο Ελέγχου Mandriva Linux"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "Απέτυχε η ρύθμιση του εκτυπωτή \"%s\"!"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Προκλήθηκε ένα σφάλμα που δεν ξέρω πώς να το χειριστώ.\n"
+"Συνεχίστε με δική σας ευθύνη."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Μερικά σημαντικά πακέτα δεν εγκαταστάθηκαν σωστά.\n"
+"Ο οδηγός CD-ROM ή το CD-ROM είναι ελαττωματικό.\n"
+"Ελέγξτε το CD-ROM σε ένα άλλο σύστημα χρησιμοποιώντας την εντολή \"rpm -qpl "
+"media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Βήμα `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Εγκατάσταση Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> Αλλαγή πεδίου"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Το σύστημά σας δεν έχει αρκετούς πόρους. Μπορεί να αντιμετωπίσετε "
+"προβλήματα\n"
+"στην εγκατάσταση του Mandriva Linux. Εάν συμβεί αυτό, μπορείτε να δοκιμάσετε "
+"εγκατάσταση κειμένου.\n"
+"Πατήστε F1 κατά την εκκίνηση από CDROM, μετά γράψτε `text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Επιλογή Ομάδων Πακέτων"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Επιλογή ξεχωριστών πακέτων"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Συνολικό μέγεθος: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Λάθος πακέτο"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Έκδοση: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Μέγεθος: "
+
+#: steps_gtk.pm:316
+#, fuzzy, c-format
+msgid "%d KB\n"
+msgstr "Μέγεθος: %d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Σπουδαιότητα: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Δεν μπορείτε να επιλέξετε/αποεπιλέξετε αυτό το πακέτο"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "λόγω ελλείψεων %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "λόγω μη ικανοποίησης %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "προσπάθεια ενίσχυσης του %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "για να κρατηθεί το %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Δεν μπορείτε να επιλέξετε αυτό το πακέτο διότι δεν υπάρχει αρκετός χώρος"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Θα εγκατασταθούν τα παρακάτω πακέτα"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Θα αφαιρεθούν τα παρακάτω πακέτα "
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Αυτό είναι απαιτούμενο πακέτο, δεν μπορεί να αποεπιλεγεί"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Δεν μπορείτε να αποεπιλέξετε αυτό το πακέτο. Είναι ήδη εγκατεστημένο"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Δεν μπορείτε να αποεπιλέξετε αυτό το πακέτο. Πρέπει να αναβαθμιστεί"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Αυτόματη προβολή επιλεγμένων πακέτων"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Εγκατάσταση"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "Αποθήκευση επιλογής"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Ανανέωση επιλεγμένων πακέτων"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Ελάχιστη Εγκατάσταση"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Διαχείριση Λογισμικού"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Επιλέξτε τα πακέτα που θέλετε να εγκαταστήσετε"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Εγκατάσταση"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Χωρίς λεπτομέρειες"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Εναπομένων χρόνος "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Εκτίμηση"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d πακέτο"
+msgstr[1] "%d πακέτα"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Περίληψη"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Ρύθμιση"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "δεν ρυθμίστηκε"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Προκλήθηκε σφάλμα"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Παρακαλώ επιλέξτε την διάταξη πληκτρολογίου."
+
+#: steps_interactive.pm:99
+#, fuzzy, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Αυτή είναι η πλήρης λίστα των διαθέσιμων χωρών"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Εγκατάσταση/Αναβάθμιση"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Πρόκειται για εγκατάσταση ή για αναβάθμιση;"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Αναβάθμιση %s"
+
+#: steps_interactive.pm:148
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Κλειδί κρυπτογράφησης"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Ρύθμιση IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Δεν υπάρχει ελεύθερος χώρος για 1MB bootstrap! Η εγκατάσταση θα συνεχιστεί, "
+"αλλά για να ξεκινήσετε το σύστημά σας, θα χρειαστεί να δημιουργήσετε μια "
+"κατάτμηση bootstrap με το DiskDrake"
+
+#: steps_interactive.pm:226
+#, fuzzy, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Δεν υπάρχει ελεύθερος χώρος για 1MB bootstrap! Η εγκατάσταση θα συνεχιστεί, "
+"αλλά για να ξεκινήσετε το σύστημά σας, θα χρειαστεί να δημιουργήσετε μια "
+"κατάτμηση bootstrap με το DiskDrake"
+
+#: steps_interactive.pm:318
+#, fuzzy, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Αλλαγή Cd-Rom!\n"
+"\n"
+"Παρακαλώ εισάγετε το Cd-Rom με όνομα \"%s\" στον οδηγό σας και πατήστε "
+"Εντάξει.\n"
+"Εάν δεν το έχετε, πατήστε Ακύρωση για αποφυγή εγκατάστασης από αυτό το CdRom."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Ψάχνω για διαθέσιμα πακέτα..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Παρακαλώ επιλέξτε τη φόρτωση ή αποθήκευση των επιλογής πακέτων στη δισκέτα.\n"
+"Η μορφοποίηση είναι η ίδια με τις δισκέτες αυτόματης εγκατάστασης."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Φόρτος"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Αποθήκευση"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "Φόρτωση αρχείου"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Το επιλεγμένο μέγεθος είναι μεγαλύτερο από το διαθέσιμο χώρο"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Τύπος εγκατάστασης"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Δεν έχετε επιλέξει ομάδα πακέτων.\n"
+"Παρακαλώ επιλέξτε την ελάχιστη εγκατάσταση που θέλετε:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Με Χ"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Με την βασική τεκμηρίωση (συνιστάται!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Πραγματικά ελάχιστη εγκατάσταση (ειδικά χωρίς urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Όλα"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Προετοιμασία εγκατάστασης"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Εγκατάσταση πακέτου %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Προκλήθηκε σφάλμα κατά την ταξινόμηση των πακέτων:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Να συνεχίσω;"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Αποθήκευση επιλογής πακέτων"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Προκλήθηκε σφάλμα κατά την εγκατάσταση των πακέτων:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Ρυθμίσεις μετά την εγκατάσταση"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Ενημερώσεις"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Τώρα έχετε τη δυνατότητα να εγκαταστήσετε πακέτα αναβάθμισης. Αυτά τα\n"
+"πακέτα έχουν αναβαθμιστεί μετά την έκδοση της διανομής. Μπορεί να περιέχουν\n"
+"διορθώσεις σφαλμάτων ή αναβαθμίσεις ασφάλειας.\n"
+"\n"
+"Για να κάνετε λήψη αυτών των πακέτων πρέπει να έχετε μια σύνδεση στο "
+"Διαδίκτυο\n"
+"που να λειτουργεί.\n"
+"\n"
+"Θέλετε να εγκαταστήσετε τις αναβαθμίσεις ;"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Σύνδεση με τον τόπο για την λήψη των διαθέσιμων πακέτων..."
+
+#: steps_interactive.pm:666
+#, fuzzy, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Αδυναμία fork: %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Υλικό"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Κάρτα ήχου"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Έχετε κάρτα ήχου ISA;"
+
+#: steps_interactive.pm:811
+#, fuzzy, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Εκτελέστε \"sndconfig\" μετά την εγκατάσταση για την ρύθμιση της κάρτας"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Δεν βρέθηκε κάρτα ήχου. Δοκιμάστε το \"harddrake\" μετά την εγκατάσταση"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Κάρτα TV"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Γραφικό περιβάλλον"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Δίκτυο & Διαδίκτυο"
+
+#: steps_interactive.pm:851
+#, fuzzy, c-format
+msgid "Proxies"
+msgstr "Προφίλ "
+
+#: steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "configured"
+msgstr "επαναρύθμιση"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Επίπεδο Ασφαλείας"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Τοίχος Προστασίας"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "ενεργοποιημένο"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "απενεργοποιημένο"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Εκκίνηση"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s σε %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Δεν έχετε ρυθμίσει το Χ. Είστε βέβαιοι ότι θέλετε να το κάνετε;"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Προετοιμασία προγράμματος εκκίνησης..."
+
+#: steps_interactive.pm:977
+#, fuzzy, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Φαίνεται πως έχετε ένα Αρχαίο ή Άγνωστο\n"
+"μηχάνημα, ο yaboot bootloader δεν θα δουλέψει για σας.\n"
+"Η εγκατάσταση θα συνεχιστεί, αλλά\n"
+"θα χρειαστεί να χρησιμοποιήσετε το BootX για να ξεκινήσετε το μηχάνημά σας"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Θέλετε να χρησιμοποιήσετε το aboot;"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Σφάλμα κατά την εγκατάσταση του aboot, \n"
+"προσπάθεια βεβιασμένης εγκατάστασης, ακόμα και αν αυτό έχει σαν αποτέλεσμα "
+"την καταστροφή της πρώτης κατάτμησης;"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Εισάγετε άδεια δισκέτα στον οδηγό %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Δημιουργία δισκέτας αυτόματης εγκατάστασης..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Μερικά βήματα δεν ολοκληρώθηκαν.\n"
+"\n"
+"Θέλετε σίγουρα να εγκαταλείψετε τώρα;"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Συγχαρητήρια"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Επανεκκίνηση"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Δημιουργία δισκέτας αυτόματης εγκατάστασης"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Η αυτόματη εγκατάσταση μπορεί να είναι πλήρως αυτόματη,\n"
+"σε αυτήν την περίπτωση θα αναλάβει το σκληρό δίσκο!!\n"
+"(αυτό αναφέρεται για περιπτώσεις εγκατάστασης σε άλλο υπολογιστή).\n"
+"\n"
+"Μπορεί να προτιμάτε να επαναλάβετε την εγκατάσταση.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Επαναφόρτωση"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Αυτόματο"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Αποθήκευση επιλογής πακέτων"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Επιλέξτε γλώσσα"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Άδεια Χρήσης"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Ποντίκι"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Εντοπισμός δίσκου"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Πληκτρολόγιο"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Ασφάλεια"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Καταμερισμός"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Εγκατάσταση"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Πιστοποίηση"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Χρήστες"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Δικτύωση"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Προγράμματος εκκίνησης"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Ρύθμιση Χ"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Περίληψη"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Υπηρεσίες"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Ενημερώσεις"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Έξοδος"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d πακέτο, %d MB)"
+#~ msgstr[1] "(%d πακέτα, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d πακέτα"
+
+#~ msgid "Language"
+#~ msgstr "Επιλέξτε γλώσσα"
+
+#~ msgid "License"
+#~ msgstr "Άδεια Χρήσης"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Επιλέξτε εγκατάσταση"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Εκτίμηση"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Επιλογή πακέτων"
+
+#~ msgid "Users"
+#~ msgstr "Χρήστες"
+
+#~ msgid "Networking"
+#~ msgstr "Δικτύωση"
+
+#~ msgid "Configure X"
+#~ msgstr "Ρύθμιση Χ"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Αδυναμία πρόσβασης των αρθρωμάτων που αντιστοιχούν στον πυρήνα σας (το "
+#~ "αρχείο %s λείπει), γενικά αυτό σημαίνει ότι η δισκέτα εκκίνησης δεν είναι "
+#~ "σε συγχρονισμό με το Μέσο εγκατάστασης ( παρακαλώ δημιουργήστε μια νέα "
+#~ "δισκέτα εκκίνησης)"
diff --git a/perl-install/install/share/po/eo.po b/perl-install/install/share/po/eo.po
new file mode 100644
index 000000000..fb0f57031
--- /dev/null
+++ b/perl-install/install/share/po/eo.po
@@ -0,0 +1,1569 @@
+# Esperanto drakbootdisk
+# Copyright (C) 2000, 2001 Mandriva
+# D. Dale Gulledge <dsplat@rochester.rr.com>, 2000.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2003-03-12 18:31-0400\n"
+"Last-Translator: Vilhelmo Lutermano <vlutermano@free.fr>\n"
+"Language-Team: esperanto <eo@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: KBabel 0.9.6\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Ĉu vi havas alian?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "KD-ROMo"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Reto (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Reto (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Reto (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Mi kontaktas la Mandriva Linuksan retpaĝon por havigi la liston de "
+"disponeblaj speguloj..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Mi kontaktas la Mandriva Linuksan retpaĝon por havigi la liston de "
+"disponeblaj speguloj..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Elektu spegulon de kiu havigi la pakaĵojn"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Dosierujo"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Ne povis malfermi %s por skribi: %s\n"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Rigardante jam instalitajn pakaĵojn..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Trovadas pakaĵojn por promocii"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "La sekvaj pakaĵoj estos instalataj"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Reto"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "Bonvole elektu"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Dosiero jam ekzistas. Ĉu vi deziras uzi ĝin?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Permeso rifuzita"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "aldonita datenportilo %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Mi ne povas fari ekranfotojn antaŭ ol fari subdiskojn"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Ekranfotoj haveblos post instalado en %s"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Instalanta"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Konfigurado"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr ""
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Iuj aparatoj sur via komputilo bezonas \"proprietajn\" pelilojn por "
+"funkcii.\n"
+"Vi povas trovi iun informon pri ili ĉe: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Startado de la reto"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Haltas de la reto"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "Konservu en dosiero"
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "Duobla surmetingo %s"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "havenda"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "grava(j)"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "tre agrabla(j)"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "agrabla(j)"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "elbe"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr ""
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Laborstacio"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Oficeja laborstacio"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Ludstacio"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Plurmediaj stacio"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Interreta stacio"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Reta computilo (kliento)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:55
+#, fuzzy, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Ĉu vi deziras provi la konfiguraĵon?"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Konsoliloj"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Redaktiloj, ŝeloj, dosieriloj, terminaloj"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Programado"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C kaj C++ programadaj bibliotekoj, programoj kaj ĉapdosieroj"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentaro"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Interret-servilo"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Grupa programaro"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab Servilo"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Interreta kluzo"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Poŝto/Novaĵoj"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix poŝta servilo, Inn novaĵaj servilo"
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "Restaŭru de disketo"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP Servilo"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, fuzzy, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Domajn-nom-servilo"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Dosier- kaj printil-kundivida servilo"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS servilo, Samba servilo"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Datumbazoj"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "TTT/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Poŝto"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix poŝta servilo"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Reta computilo (servilo)"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE Laborstacio"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Gnoma Laborstacio"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Labortabulo"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Iloj"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH servilo"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "Webcam"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Interreta Konfigurado"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Reta Konfiguraĵo"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "Konekti al la interreto"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "Malsukcesis konfiguri la printilon \"%s\"!"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Eraro okazis, sed mi ne scias kiel trakti ĝin bone.\n"
+"Daŭri je via propra risko."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Iuj gravaj pakaĵoj ne estis taŭge instalata.\n"
+"Aŭ via KDROM drajvo aŭ via KDROM disko estas difektita.\n"
+"Kontrolu la KDROM sur instalata komputilo per\n"
+"\"rpm -qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Eniras paŝon `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Linuks-Mandrejka Instalado %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tabo>/<Alt-Tabo> inter eroj"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Via sistemo havas malmulte da risurcoj. Eble vi havos problemojn pri\n"
+"instali Linuks-Mandrejkon. Se tio okazos, vi povos anstataŭ provi tekstan\n"
+"instaladon. Por ĉi tio, premu `F1' kiam vi startas de KDROM, kaj sekve\n"
+"tajpu `text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Elektado de Pakaĵaj Grupoj"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Elektado de individuaj pakaĵoj"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Tuta grandeco: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Malbona pakaĵo"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versio: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Grandeco: "
+
+#: steps_gtk.pm:316
+#, fuzzy, c-format
+msgid "%d KB\n"
+msgstr "Grandeco: %d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Graveco: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Vi ne povas elektu/malelektu ĉi tiun pakaĵon"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "pro mankanta %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "pro neplenumita %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "mi provas disponigi %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "por konservi %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Vi ne povas elekti ĉi tiun pakaĵon ĉar ne estas sufiĉe da spaco por instali\n"
+"ĝin."
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "La sekvaj pakaĵoj estos instalataj"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "La sekvaj pakaĵoj estos malinstalataj"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Ĉi tiu estas deviga pakaĵo, vi ne povas malelekti ĝin"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Vi ne povas malelekti ĉi tiun pakaĵon. Ĝi estas jam instalita."
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Vi ne povas malelekti ĉi tiun pakaĵon. Ĝi devus esti promociata."
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Montru aŭtomate elektitajn pakaĵojn"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Instalu"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "Elektado de Pakaĵoj"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Ĝisdatigo de pakaĵ-elekto"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimuma instalado"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Programar-mastrumilo"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Elektu la pakaĵojn kiuj vi deziras instali"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Instalanta"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Neniaj detaloj"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Tempo restanta "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Taksas"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pakaĵo"
+msgstr[1] "%d pakaĵoj"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Resumo"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Konfiguru"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "ne konfigurita"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Eraro okazis"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Bonvole elektu vian klavar-aranĝon."
+
+#: steps_interactive.pm:99
+#, fuzzy, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Jen la kompleta listo de atingeblaj landoj"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Instalado/Ĝisdatigo"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Ĉu tiu ĉi estas instalado aŭ ĝisdatigo?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Ĝisdatigu %s"
+
+#: steps_interactive.pm:148
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "La pasvortoj ne egalas"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Konfiguras IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Ne libera spaco por 1mb-startparto! La instalado daurigos, sed por startigi "
+"vian sistemon, vi devos krei la startpartan subdiskon en DiskDrake"
+
+#: steps_interactive.pm:226
+#, fuzzy, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Ne libera spaco por 1mb-startparto! La instalado daurigos, sed por startigi "
+"vian sistemon, vi devos krei la startpartan subdiskon en DiskDrake"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Ŝanĝu vian KDROM!\n"
+"\n"
+"Bonvole, enŝovu la KDROM-on etikedatan \"%s\" en via drajvo kaj klaku \"Jes"
+"\"\n"
+"kiam vi finos.\n"
+"Se vi ne havas ĝin, klaku \"Nuligu\" por eviti la instaladon de ĉi tiu KDROM."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Serĉas haveblajn pakaĵojn"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Bonvole elektu ŝargu aŭ konservu pakaĵ-elekton sur disketo.\n"
+"La formato estas la sama kiel disketoj generitaj per auto_install."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Ŝargu"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Konservu"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "Ŝargu dosieron"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Elektita grandeco estas pli ampleksa ol disponebla spaco"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Instaltipo"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Vi ne elektis pakaĵgrupon.\n"
+"Bonvole elektu la minimuman instaladon kiun vi deziras:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Kun X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Kun baza dokumentaĵo (rekomendita!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Vere minimuma instalado (precipe ne urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Ĉiuj"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Preparas instaladon"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Instalanta pakaĵo %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Estis eraro ordigi pakaĵojn:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Ĉu vi deziras daŭri tamen?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Konservu la pakaĵ-elekton"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Estis eraro dum instalado de pakaĵoj:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Post-instala konfigurado"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Ĝisdatigoj"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Vi havas nun la eblecon deŝuti ĝisdatigitajn pakaĵojn. Tiuj pakaĵoj\n"
+"estas ĝisdatigitaj post eldonado de tiu ĉi eldono. Ili povas\n"
+"enteni sekureco- aŭ eraro-riparojn.\n"
+"\n"
+"Por deŝuti tiujn pakaĵojn, vi bezonas funkciantan Interret-\n"
+"konekton.\n"
+"\n"
+"Ĉu vi deziras instali tiujn ĝisdatigojn?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Kontaktu la spegulon por havigi la liston de havebla pakaĵoj"
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Ne povis kontakti spegulon %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Aparataro"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Sonkarto"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Ĉu vi havas ISA-sonkarton?"
+
+#: steps_interactive.pm:811
+#, fuzzy, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr "Rulu \"sndconfig\" post instalado por konfiguri vian sonkarton"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Ne detektis sonkarto. Provu \"harddrake\" post instalado"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV-karto"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Grafika interfaco"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Reto kaj Interreto"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Prokuraj Serviloj"
+
+#: steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "configured"
+msgstr "rekonfiguru"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "sekurnivelo"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Fajromuro (Firewall)"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "aktiva"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "malebligita"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Starto"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s sur %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Vi ne konfiguris X-on. Ĉu vi certas vere voli tion?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Preparas startŝargilon"
+
+#: steps_interactive.pm:977
+#, fuzzy, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Ŝajne vi havas malnovegan aŭ nekonatan maŝinon,\n"
+"la yaboot-startilo ne funkcios por vi.\n"
+"La instalado daŭrigos, sed vi devos\n"
+"uzi BootX aŭ alian rimedon por startigi vian maŝinon"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Ĉu vi deziras uzi aboot-on?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Eraro daŭre mi instalis \"aboot\",\n"
+"Ĉu mi devus provi perforte instali eĉ se tio detruas la unuan subdiskon?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Enŝovu malplenan disketon en drajvo %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Kreas aŭtoinstalan disketon"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Kelkaj paŝoj ne finiĝis.\n"
+"\n"
+"Ĉu vi vere volas ĉesi nun?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Gratulojn"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Restarto"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Kreu aŭtoinstalan disketon"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Reludu"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Aŭtomata"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Konservu la pakaĵ-elekton"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Elektu vian lingvon"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licenco"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Muso"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Detektado de fiksdisko(j)"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Klavaro"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Sekureco"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Subdiskigante"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Instalanta"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Aŭtentikigado"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Uzuloj"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Retumado"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Startŝargilo"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Konfiguru X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Resumo"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Servoj"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Ĝisdatigoj"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Eliro"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pakaĵoj"
+
+#~ msgid "Language"
+#~ msgstr "Elektu vian lingvon"
+
+#~ msgid "License"
+#~ msgstr "Licenco"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Elektu instalklason"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Taksas"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Elektu pakaĵojn"
+
+#~ msgid "Users"
+#~ msgstr "Uzuloj"
+
+#~ msgid "Networking"
+#~ msgstr "Retumado"
+
+#~ msgid "Configure X"
+#~ msgstr "Konfiguru X"
diff --git a/perl-install/install/share/po/es.po b/perl-install/install/share/po/es.po
new file mode 100644
index 000000000..ceb98f7b2
--- /dev/null
+++ b/perl-install/install/share/po/es.po
@@ -0,0 +1,1642 @@
+# traducción de DrakX-es.po to Español
+# spanish translation of DrakX
+# Copyright (C) 2000, 2001,2002 Mandriva S.A.
+# Fabian Mandelbaum <fabman@mandriva.com>, 2000, 2001, 2002,2003, 2004.
+# Fabian Mandelbaum <fmandelbaum@hotmail.com>, 2003, 2004.
+# Pablo Saratxaga <pablo@mandriva.com>, 2004, 2006.
+# Jaime Crespo <505201@unizar.es>, 2004, 2005.
+# José Manuel Pérez <jmprodu@hotmail.com>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-es\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2005-04-24 11:46+0200\n"
+"Last-Translator: Pablo Saratxaga <pablo@mandriva.com>\n"
+"Language-Team: Español <es@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "¿Tiene algún otro soporte de instalación suplementario?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Los soportes siguients fueron detectados y se usarán durante la instalación: "
+"%s.\n"
+"\n"
+"\n"
+"¿Tiene algún soporte suplementario que configurar?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Red (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Red (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Red (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "¿URL del sitio réplica?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "El URL debe empezar con ftp:// o http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Contactando con el sitio web de Mandriva Linux para obtener la lista de las "
+"réplicas disponibles"
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"No se pudo conectar con el sitio web de Mandriva Linux para obtener la lista "
+"de las réplicas disponibles"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Elija un sitio de réplica del cual obtener los paquetes"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Configuración NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Entre el nombre de servidor y el directorio de su soporte NFS"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Falta el nombre del servidor"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "El directorio debe empezar con \"/\""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "¿Nombre del servidor para el montaje NFS?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Directorio"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Suplementario"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "No puedo encontrar el archivo hdlist en este sitio réplica"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Buscando paquetes ya instalados..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Quitando paquetes antes de actualizar..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Encontrando los paquetes a actualizar..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Ha seleccionado el/los siguientes servidores: %s\n"
+"\n"
+"\n"
+"Estos servidores se activan por defecto. No se les conocen problemas de\n"
+"seguridad, pero se pueden encontrar problemas nuevos. En ese caso, debe "
+"asegurarse de\n"
+"actualizarlos tan pronto como sea posible.\n"
+"\n"
+"\n"
+"¿Realmente desea instalar estos servidores?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Se quitarán los paquetes siguientes para permitir actualizar su sistema: %s\n"
+"\n"
+"\n"
+"¿Realmente desea quitar estos paquetes?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "El siguiente disco(s) fue renombrado:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (antes conocido como %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Red"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Por favor, elija un soporte"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "El archivo ya existe. ¿Desea sobreescribirlo?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Permiso denegado"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Nombre NFS incorrecto"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Soporte incorrecto %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "No se pueden realizar instantáneas de pantalla antes del particionado"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr ""
+"Luego de la instalación estarán disponibles las instantáneas de pantalla en %"
+"s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Instalación"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Configuración"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Tú también debes formatear %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Algún hardware de su computadora necesita controladores \"propietarios\" "
+"para funcionar.\n"
+"Puede encontrar información sobre ellos en: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Levantando la red"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Bajando la red"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Descargando el fichero %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Copiando algunos paquetes en el disco para uso futuro"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Copiado en progreso"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "necesario"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "importante"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "muy bueno"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "bueno"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "quizás"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "línea de productos 2007"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Cortafuegos Invictus"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Como registrarse"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Nuevo tema"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Estación de trabajo"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Estación de trabajo de Oficina"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Programas de Oficina: procesadores de texto (OpenOffice.org Writer, Kword), "
+"hojas de cálculo (OpenOffice.org Calc, Kspread), visualizadores PDF, etc"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Programas de Oficina: procesadores de palabras (kword, abiword), plantillas "
+"de cálculo (kspread, gnumeric), visualizadores PDF, etc"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Estación de Juegos"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Programas de entretenimiento: arcade, tableros, estrategia, etc"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Estación Multimedios"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Programas de reproducción/edición de sonido y vídeo"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Estación Internet"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Conjunto de herramientas para leer y enviar correo y noticias (mutt, tin...) "
+"y para navegar por la Web"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Computadora de Red (cliente)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Clientes para los distintos protocolos incluyendo a ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Herramientas para facilitar la configuración de su computadora"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Herramientas para la consola"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editores, shells, manipulación de archivos, terminales"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Desarrollo"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Bibliotecas de desarrollo C y C++, programas y archivos *.h"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Documentación"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Libros y COMOs sobre Linux y Software Libre"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Soporte de aplicaciones de terceros"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Servidor web"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Aplicaciones para grupos"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Servidor Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Servidor, Cortafuegos/Router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Pasarela de acceso a Internet"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Correo/Noticias"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Servidor de correo Postfix, servidor de noticias Inn"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Servidor de directorios"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Servidor FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Servidor de nombres de dominio y servidor de información de red"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Servidor de ficheros e impresión"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "Servidor NFS, servidor Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Servidor, Bases de Datos"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Servidor de base de datos PostgreSQL y MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Servidor, Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache y Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Correo"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Servidor de correo Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Servidor de base de datos PostgreSQL o MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Computadora servidor de red"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Servidor NFS, servidor SMB, servidor proxy, servidor SSH"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Entorno gráfico"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Estación de trabajo KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"El K Desktop Environment, el entorno gráfico básico con una colección de "
+"herramientas que lo acompañan"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Estación de trabajo GNOME"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Entorno gráfico con un conjunto de herramientas de escritorio y aplicaciones "
+"amigables"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "Escritorio IceWm"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Otros entornos gráficos"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, etc"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Utilidades"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Servidor SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Servidor de configuración remota Webmin"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Utilidades/monitorización de red"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+"Herramientas de monitorización, control de procesos, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Asistentes de Mandriva"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Asistentes para configurar servidor"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Ocurrió un error y no se puede gestionar de forma adecuada.\n"
+"Continúe bajo su propio riesgo."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Algunos paquetes importantes no fueron instalados correctamente.\n"
+"Seguramente su lector de CD o su CD de instalación sean defectuosos.\n"
+"Compruebe el CD de instalación en un sistema ya existente con el comando:\n"
+" rpm -qpl media/main/*.rpm\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Entrando en la etapa '%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Instalación %s de Mandriva Linux"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> entre elementos"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Su sistema tiene pocos recursos. Puede tener algún problema instalando\n"
+"Mandriva Linux. Si eso ocurre, puede intentar una instalación tipo texto.\n"
+"Para ello, presione 'F1' cuando arranque desde el CDROM, e introduzca 'text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Selección de grupos de paquetes"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Selección de paquetes individuales"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Tamaño total: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Paquete incorrecto"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versión: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Tamaño: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Importancia: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "No puede seleccionar/deseleccionar este paquete"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "debido a que falta %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "debido a que no se satisfizo %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "intentando promover a %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "para mantener %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"No puede seleccionar este paquete porque no hay espacio suficiente para "
+"instalarlo"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Se van a instalar los siguientes paquetes"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Se van a quitar los siguientes paquetes"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Este es un paquete obligatorio, no puede desmarcarlo"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "No puede desmarcar este paquete. Ya está instalado"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "No puede desmarcar este paquete. Debe ser actualizado"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Mostrar los paquetes seleccionados automáticamente"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Instalar"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Cargar/Guardar selección"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Actualizando la selección de paquetes"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Instalación mínima"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Administración de software"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Elija los paquetes que desea instalar"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Instalando"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Sin detalles"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Tiempo restante "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Estimando"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d paquete"
+msgstr[1] "%d paquetes"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Resumen"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Configurar"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "no configurada"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Se han encontrado los siguientes soportes de instalación. Si quiere saltarse "
+"alguno de ellos, puede deseleccionarlos ahora."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Tiene la opción de copiar los contenidos de los CDs al disco duro antes de "
+"la instalación.\n"
+"Entonces continuará desde el disco duro y los paquetes estarán disponibles "
+"una vez que el sistema esté completamente instalado."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Copiar los CDs por completo"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Ocurrió un error"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Seleccione la distribución de su teclado."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Aquí tiene la lista completa de teclados disponibles"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Instalación/Actualización"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "¿Es una instalación o una actualización?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Actualizar %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Clave de cifrado para %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Configurando dispositivos IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"¡No hay 1MB de espacio para bootstrap! La instalación continuará, pero para "
+"arrancar su sistema, necesitará crear la partición bootstrap en DiskDrake"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"¡Necesita crear un bootstrap de arranque PReP PPC! La instalación continuará "
+"pero, para arrancar su sistema, necesitará crear la partición bootstrap en "
+"DiskDrake"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"¡Cambie su CD-ROM!\n"
+"\n"
+"Por favor, inserte CD-ROM etiquetado \"%s\" en la unidad y pulse Aceptar "
+"cuando lo haya hecho.\n"
+"Si no lo posee, pulse Cancelar para evitar la instalación desde este CD-ROM."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Buscando los paquetes disponibles..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"Su sistema no tiene espacio libre suficiente para la instalación o "
+"actualización (%d MB > %d MB)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Por favor, seleccione cargar o guardar la selección de paquetes.\n"
+"El formato es el mismo que el de los archivos generados con la instación "
+"automática."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Cargar"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Guardar"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Archivo incorrecto"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "El tamaño seleccionado es mayor que el disponible"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Tipo de instalación."
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"No ha seleccionado ningún grupo de paquetes\n"
+"Elija por favor la mínima instalación que quiera."
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Con X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Con documentación básica (¡recomendado!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Instalación mínima \"en serio\" (especialmente sin urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Todo"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Preparando la instalación"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Instalando el paquete %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Hubo un error al ordenar los paquetes:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "¿Seguir adelante?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Reintentarlo"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "Pasar este paquete"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "Pasar todos los paquetes del soporte \"%s\""
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "Volver a la selección de paquetes"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "Hubo un error al instalar el paquetes %s."
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Configuración posterior a la instalación"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+"Por favor, asegúrese de que el soporte de Actualización de Módulos está en "
+"la unidad %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Actualizaciones"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Ahora tiene la oportunidad de bajar paquetes actualizados. Estos paquetes\n"
+"se han actualizad después de que se publicó la distribución. Puede que los\n"
+"mismos contengan correcciones de bugs o de seguridad.\n"
+"\n"
+"Para descargar estos paquetes, necesitará tener una conexión con la\n"
+"Internet que esté funcionando.\n"
+"\n"
+"¿Desea instalar las actualizaciones?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"Contactando con el sitio de réplica para obtener la lista de los paquetes "
+"disponibles..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "No se puede contactar al sitio de réplica %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Hardware"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Tarjeta de sonido"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "¿Tiene una tarjeta de sonido ISA?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Use \"alsaconf\" o \"sndconfig\" luego de la instalación para configurar su "
+"tarjeta de sonido"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"No se detectó tarjeta de sonido. Pruebe \"harddrake\" luego de la instalación"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Tarjeta de TV"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Interfaz gráfica"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Redes e Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxis"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "configurado"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Nivel de seguridad"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Cortafuegos"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "activado"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "deshabilitado"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Arranque"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s en %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "No ha configurado a X ¿Está seguro que realmente desea esto?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Preparando el cargador de arranque"
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Parece que tiene una máquina desconocida o \"Old World\",el gestor de "
+"arranque yaboot no funcionará en la misma.\n"
+"La instalación continuará, pero necesitará\n"
+"utilizar BootX o alguna otra manera para arrancar su máquina. El parámetro "
+"del kernel para el sistema de ficheros raíz es: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "¿Desea usar aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Ocurrió un error al instalar aboot, \n"
+"¿desea forzar la instalación incluso si ello implicara la destrucción de la "
+"primera partición?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"En este nivel de seguridad, el acceso a los archivos en la partición Windows "
+"está restringido sólo al administrador."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Inserte un disquete en blanco en la unidad %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Creando el disquete de instalación automática"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Algunas de las etapas no fueron completadas.\n"
+"\n"
+"¿Realmente desea salir ahora?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Felicidades"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Reiniciar"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Generar un disquete de instalación automática"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"La instalación automática puede automatizarse por completo si lo desea,\n"
+"¡¡en ese caso se adueñará del disco rígido!!\n"
+"(la intención de esto es instalarlo en otro ordenador).\n"
+"\n"
+"Puede preferir reproducir la instalación.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Reproducir"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatizada"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Guardar la selección de paquetes"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Elija su idioma"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licencia"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Ratón"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Detección del disco rígido"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Clase de instalación"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Teclado"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Seguridad"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Particionando"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Formateo"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Selección de paquetes"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Instalando"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Autentificación"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Usuarios"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Red"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Cargador de arranque"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Configuración de X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Resumen"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Servicios"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Actualizaciones"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Salir"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d paquete, %d MB)"
+#~ msgstr[1] "(%d paquetes, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d paquetes"
+
+#~ msgid "Language"
+#~ msgstr "Elija su idioma"
+
+#~ msgid "License"
+#~ msgstr "Licencia"
+
+#~ msgid "Installation class"
+#~ msgstr "Clase de instalación"
+
+#~ msgid "Formatting"
+#~ msgstr "Formateo"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Selección de paquetes"
+
+#~ msgid "Users"
+#~ msgstr "Usuarios"
+
+#~ msgid "Networking"
+#~ msgstr "Red"
+
+#~ msgid "Configure X"
+#~ msgstr "Configuración de X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "No se puede acceder a los módulos del núcleo correspondientes a su núcleo "
+#~ "(no se encuentra el archivo %s), esto generalmente significa que su "
+#~ "disquete de arranque no contiene un núcleo de misma versión que el "
+#~ "soporte de instalación (haga un nuevo disquete de arranque por favor)"
diff --git a/perl-install/install/share/po/et.po b/perl-install/install/share/po/et.po
new file mode 100644
index 000000000..db3b40eac
--- /dev/null
+++ b/perl-install/install/share/po/et.po
@@ -0,0 +1,1615 @@
+# Translation of DrakX.po to Estonian.
+# Copyright (C) 2003 Free Software Foundation, Inc.
+# Riho Kurg <rx@linux.ee>, 1999-2003.
+# Marek Laane <bald@starman.ee>, 2002-2007.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-et\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-03-06 12:43+0200\n"
+"Last-Translator: Marek Laane <bald@starman.ee>\n"
+"Language-Team: Estonian <et@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Kas Teil on veel paigaldusandmekandjaid?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Leiti järgmised andmekandjad, mida kasutatakse paigaldamisel: %s.\n"
+"\n"
+"\n"
+"Kas Teil on veel paigaldusandmekandjaid?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Võrk (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Võrk (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Võrk (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "Peegli URL?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "URL-i alguses peab seisma ftp:// või http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Mandriva Linuxi veebisaidilt saadaolevate peeglite nimekirja hankimine..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Ühenduse loomine Mandriva Linuxi veebisaidiga saadaolevate peeglite "
+"nimekirja hankimiseks ebaõnnestus"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Valige peegel, millelt lugeda pakettide nimekiri"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "NFS-i seadistamine"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Palun andke NFS-andmekandja masinanimi ja kataloog"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Masinanimi puudub"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "Kataloogi alguses peab olema \"/\""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "NFS-i andmekandja masinanimi?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Kataloog"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Täiendav"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Tarkvara nimekirja sisaldava faili leidmine sellelt peeglilt ebaõnnestus. "
+"Kontrollige palun asukohta."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Juba paigaldatud pakettide tuvastamine..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Pakettide eemaldamine enne uuendamist..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Uuendatavate pakettide otsimine..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Olete valinud järgmise(d) serveri(d): %s\n"
+"\n"
+"\n"
+"Need serverid aktiveeritakse vaikimisi. Pole küll teada, et neil oleks\n"
+"turvaprobleeme, aga nende leidmine tulevikus pole sugugi välistatud.\n"
+"Kui peaks nii minema, kontrollige, et suudate uuenduse võimalikult\n"
+"ruttu hankida.\n"
+"\n"
+"\n"
+"Kas tõesti paigaldada need serverid?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Süsteemi uuendamiseks tuleb eemaldada järgmised paketid: %s\n"
+"\n"
+"\n"
+"Kas tõesti eemaldada need paketid?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Järgmistele ketastele anti uus nimi:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (varem oli %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Võrk"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Palun valige andmekandja"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Fail on juba olemas. Kas kirjutada see üle?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Ligipääs keelatud"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Vigane NFS-i nimi"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Vigane andmekandja %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Ekraanipilte ei saa teha enne partitsioneerimist"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Ekraanipildid asuvad pärast paigaldamist asukohas %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Paigaldamine"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Seadistamine"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Vormindada tuleb ka %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Osa Teie riistvarast nõuab tarnijapoolseid draivereid.\n"
+"Infot nende kohta saate: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Võrgu aktiveerimine"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Võrgu seiskamine"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Faili %s allalaadimine..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Mõningate tarkvarapakettide kopeerimine kettale edasiseks kasutamiseks"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Käib kopeerimine..."
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "vajalik"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "tähtis"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "väga kena"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "kena"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "võib olla"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "Ruumiline töölaud"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "2007 tooted"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Invictuse tulemüür"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery Live"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Kuidas registreerida"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva Online'i teenused"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Uus teema"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Tööjaam"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Kontori-tööjaam"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Kontoritöö programmid: tekstitöötlus (OpenOffice.org Writer, KWord), "
+"tabelitöötlus (OpenOffice.org Calc, KSpread), PDF-failide näitajad jne"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Kontoritöö programmid: tekstitöötlus (KWord, Abiword), tabelitöötlus "
+"(KSpread, Gnumeric), PDF-failide näitajad jne"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Mänguvahend"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Meelelahutus: põnevus-, laua-, strateegiamängud jne"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimeedia-tööjaam"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Heli ja video mängimine ja redigeerimine"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Interneti-tööjaam"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Valik rakendusi e-posti ja uudiste lugemiseks (mutt, tin...) ning veebi "
+"lehitsemiseks"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Võrguarvuti (klient)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Mitme protokolli, sealhulgas ssh kliendid"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Tööriistad süsteemi lihtsamaks haldamiseks"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Konsoolitööriistad"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Redaktorid, shellid, terminalid, failihaldus"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Arendus"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C ja C++ arendusteegid, rakendused ja päisefailid"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentatsioon"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Raamatud ja HOWTO-d Linuxi ja vabavara kohta"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Kolmandate tootjate rakenduste toetus"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Veebiserver"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Grupitöö"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolabi server"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Tulemüür/marsruuter"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internet"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "E-post/Uudistegrupid"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfixi e-posti server, Inn uudisteserver"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Kataloogiserver"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP-server"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Nimeserver ja võrguteabeserver"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Faili- ja printserver"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS-server, Samba-server"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Andmebaasid"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL- ja MySQL-andmebaasiserver"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Veeb/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache ja Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "E-post"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfixi e-posti server"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL- või MySQL-andmebaasiserver"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Võrguserver"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS-, SMB-, SSH-server, puhverserver (proxy)"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Graafiline keskkond"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE tööjaam"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "K töölaua keskkond: graafiline töökeskkond ja palju rakendusi"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME tööjaam"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "Graafiline töökeskkond koos kasutajasõbralike rakendustega"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWM töölaud"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Muud graafilised töölauad"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "WindowMaker, Enlightenment, Fvwm jt"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Utiliidid"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH-server"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin võrguseadistusserver"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Võrguutiliidid ja võrgu jälgimine"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Jälgimistööriistad, protsesside jälgimine, tcpdump, nmap..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva nõustajad"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Serverite seadistamise nõustajad"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Tekkis mingi viga, aga seda ei suuda programm ise klaarida.\n"
+"Jätkake omal vastutusel."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Mõned tähtsad paketid ei saanud korralikult paika.\n"
+"Teie CD-seade või CD on ilmselt vigane.\n"
+"Paketifaile CD-l saate kontrollida käsuga \"rpm -qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Järgmine samm: %s\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linuxi paigaldamine %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> liigub elementide vahel"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Teie süsteemil napib ressurse ja paigaldamine võib ebaõnnestuda.\n"
+"Kui nii juhtub, proovige palun tekstipõhist paigaldamist. Selleks\n"
+"vajutage CD-lt laadimisel F1 ja sisestage \"text\""
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Paketigruppide valik"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Valik paketthaaval"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Suurus kokku: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Vigane pakett"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versioon: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Suurus: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Tähtsus: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Seda paketti ei saa valida/valimata jätta"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "puuduva %s tõttu"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "rahuldamata %s tõttu"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "püüan välja pakkuda %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "säilitamaks %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "Seda paketti ei saa valida, sest paigaldamiseks napib kettaruumi"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Paigaldamiseks on valitud järgmised paketid"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Eemaldamiseks on valitud järgmised paketid"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "See pakett on kohustuslik"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "See pakett on juba paigaldatud"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Selle paketi peate valima, sest selle uuendamine on kohustuslik"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Automaatselt valitud pakettide näitamine"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Paigaldus"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Valiku laadimine/salvestamine"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Paketivaliku uuendamine"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimaalne paigaldus"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Tarkvarahaldur"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Valige paketid, mida soovite paigaldada"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Paigaldamine"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Üksikasjadeta"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Aega jäänud "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Oletus"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pakett"
+msgstr[1] "%d paketti"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Kokkuvõte"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Seadista"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "seadistamata"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Leiti järgmised paigaldusandmekandjad.\n"
+"Kui Te ei soovi mõnda neist kasutada, eemaldage need valikust."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Teil on võimalik kopeerida CD-de sisu enne paigaldamist kõvakettale.\n"
+"Seejärel jätkatakse paigaldamist kõvakettalt ning kogu tarkvara on seal "
+"kättesaadav ka pärast süsteemi paigaldamist."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Kopeeri kõik CD-d"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Tekkis mingi viga"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Palun valige klaviatuuriasetus."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "See on saadaolevate klaviatuuriasetuste täielik nimekiri"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Paigaldamine/Uuendamine"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Kas see on paigaldamine või uuendamine?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "%s uuendus"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "%s krüptovõti"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE seadistamine"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Ruumi 1MB-se alglaadimisala loomiseks napib! Paigaldamine jätkub, kuid "
+"süsteemi alglaadimiseks tuleb Teil luua DiskDrake abil alglaadimisala."
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Teil tuleb luua PPC PReP Boot alglaadimisala! Paigaldamine jätkub, kuid "
+"süsteemi alglaadimiseks tuleb Teil luua DiskDrake abil alglaadimisala."
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Vahetage CD!\n"
+"\n"
+"Palun sisestage CD nimega \"%s\" CD-seadmesse ja klõpsake nupule \"Olgu\".\n"
+"Kui Teil sellist ei ole, klõpsake nupule \"Loobu\"."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Saadaolevate pakettide otsimine..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"Teie süsteemis ei jagu ruumi paigaldamiseks ega uuendamiseks (%dMB > %dMB)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Valige palun paketivaliku laadimine või salvestamine.\n"
+"Vorming on sama, mis automaatpaigaldusega loodud failide puhul."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Laadi"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Salvesta"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Vigane fail"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Valiku suurus ületab saadaolevat kettaruumi"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Paigaldamise tüüp"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Te ei valinud ühtegi paketigruppi.\n"
+"Palun valige meelepärane minimaalne paigaldus:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "X'iga"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Baasdokumentatsiooniga (soovitatav!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Tõeliselt minimaalne (eriti just ilma urpmi-ta)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Kõik"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Paigaldamiseks valmistumine"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Paketi %s paigaldamine"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Pakettide tellimisel tekkis viga:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Kas ikkagi jätkata?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Proovi uuesti"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "Jäta pakett vahele"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "Jäta kõik andmekandja \"%s\" paketid vahele"
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "Tagasi andmekandja ja paketivaliku juurde"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "Paketi %s paigaldamisel tekkis viga."
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Paigaldamisjärgne seadistamine"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "Palun kontrollige, et uuenduste andmekandja on seadmes %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Uuendused"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Teil on nüüd võimalus alla laadida uuendatud pakette. Need on välja lastud\n"
+"pärast Mandriva Linuxi distributsiooni ilmumist ja võivad sisaldada vigade\n"
+"parandusi või turvauuendusi.\n"
+"\n"
+"Allalaadimiseks peab Teil olema töötav internetiühendus.\n"
+"\n"
+"Kas soovite uuendusi paigaldada?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Peeglilt pakettide nimekirja lugemine..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Ühendust peegliga %s ei saadud"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Riistvara"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Helikaart"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Kas Teil on ISA helikaart?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Helikaardi seadistamiseks käivitage pärast paigaldamist \"alsaconf\" või "
+"\"sndconfig\""
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Helikaarti ei leitud. Proovige see leida pärast paigaldamist \"harddrake\" "
+"abil"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV kaart"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Graafiline kasutajaliides"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Kohtvõrk ja Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Puhverserverid"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "seadistatud"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Turvatase"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Tulemüür"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "aktiveeritud"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "keelatud"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Alglaadimine"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s asukohas %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Te ei ole seadistanud X'i. Kas Te tõesti ei taha seda teha?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Alglaaduri ettevalmistamine..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Paistab, et Teil on OldWorld-i või hoopis tundmatu masin, igatahes alglaadur "
+"yaboot siin ei tööta. Paigaldamine küll jätkub, aga masina käivitamiseks "
+"tuleb Teil kasutada BootX'i või mingit muud nippi. Kerneli argument "
+"juurfailisüsteemi jaoks on root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Kas soovite kasutada aboot-i?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Viga aboot-i paigaldamisel, \n"
+"kas sundida peale, riskides esimese partitsiooni hävinguga?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Sellel turvatasemel pääseb Windowsi partitsioonil asuvatele failidele ligi "
+"ainult administraator."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Pange palun tühi diskett seadmesse %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Kiirpaigaldusdisketi loomine..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Mõned sammud ei ole lõpule viidud.\n"
+"\n"
+"Kas soovite tõesti praegu lõpetada ja väljuda?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Õnnitleme!"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Taaskäivitus"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Loo kiirpaigaldusdiskett"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Automaatne paigaldamine võib olla ka sedavõrd tegija,\n"
+"et kasutab ära kogu kõvaketta!\n"
+"\n"
+"Võite valida ka lihtsalt paigaldamise kordamise.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Kordamine"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automaatne"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Salvesta paketivalik"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Keel"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Litsents"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Hiir"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Kõvaketta leidmine"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Paigaldamismeetod"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Klaviatuur"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Turvalisus"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Kõvaketta jagamine"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Vormindamine"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Pakettide valik"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Paigaldamine"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Autentimisviis"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Kasutajad"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Võrk"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Alglaadur"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "X'i seadistamine"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Kokkuvõte"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Teenused"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Uuendused"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Välju"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d pakett, %d MB)"
+#~ msgstr[1] "(%d paketti, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d paketti"
+
+#~ msgid "Language"
+#~ msgstr "Keel"
+
+#~ msgid "License"
+#~ msgstr "Litsents"
+
+#~ msgid "Installation class"
+#~ msgstr "Paigaldamismeetod"
+
+#~ msgid "Formatting"
+#~ msgstr "Vormindamine"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Pakettide valik"
+
+#~ msgid "Users"
+#~ msgstr "Kasutajad"
+
+#~ msgid "Networking"
+#~ msgstr "Võrk"
+
+#~ msgid "Configure X"
+#~ msgstr "X'i seadistamine"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Ligipääs Teie kernelile vastavatele kerneli moodulitele ebaõnnestus "
+#~ "(puudub fail %s), mis enamasti tähendab, et Teie alglaadimisdiskett ei "
+#~ "ole sünkroonis paigaldus-andmekandjaga (palun looge uus "
+#~ "alglaadimisdiskett)"
diff --git a/perl-install/install/share/po/eu.po b/perl-install/install/share/po/eu.po
new file mode 100644
index 000000000..aa395d013
--- /dev/null
+++ b/perl-install/install/share/po/eu.po
@@ -0,0 +1,1625 @@
+# translation of DrakX-eu.po to EUSKARA
+# EUSKARA: Mandriva Linux translation.
+# Copyright (C) 2002,2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+#
+# Iñigo Salvador Azurmendi <xalba@euskalnet.net>, 2001-2002,2003,2004, 2005, 2006.
+# Hizkuntza Politikarako Sailburuordetza <hizpol@ej-gv.es>, 2004.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-eu\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2006-08-08 09:57+0200\n"
+"Last-Translator: Iñigo Salvador Azurmendi <xalba@euskalnet.net>\n"
+"Language-Team: EUSKARA <itzulpena@euskalgnu.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.2\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Baduzu beste euskarri osagarririk?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Euskarri hauek aurkitu dira eta instalazio garaian erabiliko dira: %s. \n"
+"\n"
+"\n"
+"Badaukazu konfiguratu beharreko gainerako instalazio euskarririk?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Sarea (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Sarea (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Sarea (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "Ispiluaren URL?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Mandriva Linux web gunearekin konektatzen, ispilu erabilgarrien zerrenda "
+"lortzeko..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Mandriva Linux web gunearekin konektatzen, ispilu erabilgarrien zerrenda "
+"lortzeko..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Aukeratu ispilu bat paketeak bertatik hartzeko"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "NFS ezarpena"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Mesedez sartu zure NFS euskarriaren ostalari izena eta direktorioa"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "NFS muntaiaren ostalari izena?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Direktorioa"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Ezin aurkitu hdlist fitxategia ispilu honetan"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Instalatutako paketeak bilatzen..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Paketeak ezabatzen bertsioa hobetu aurretik..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Bertsio-berritzeko paketeak bilatzen..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Zerbitzari hau(ek) hautatu d(it)uzu: %s\n"
+"\n"
+"\n"
+"Zerbitzari horiek lehenespenez aktibatzen dira. Ez dute segurtasun-arazo \n"
+"ezagunik, baina berriren bat ager liteke. Horrelakorik gertatuz gero,\n"
+"bertsioa lehenbailehen berritu behar duzu.\n"
+"\n"
+"\n"
+"Ziur zaude zerbitzari hauek instalatu nahi dituzula?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Ondorengo paketeak kenduko dira sistemaren bertsioa berritzeko: %s\n"
+"\n"
+"\n"
+"Ziur zaude pakete hauek kendu nahi dituzula?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Ondoko diskoa(k) berrizendatu egin d(ir)a:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (lehenago %s deitua)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Sarea"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Aukeratu euskarri bat mesedez"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Fitxategia badago lehendik ere. Gainidatzi?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Baimena ukatuta"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "NFS izen okerra"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "%s okerreko euskarria"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Ezin da pantaila-argazkirik egin partizioak egin aurretik"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr ""
+"%s(e)n instalazioa egindakoan pantaila-argazkiak erabilgarri egongo dira"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Instalaketa"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Konfigurazioa"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "%s ere formateatu behar duzu"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Zure ordenagailuko hardware batzuek kontrolatzaile ``jabeduna'' behar dute.\n"
+"Horiei buruzko informazioa hemen aurki dezakezu: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Sarea irekitzen"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Sarea ixten"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "%s fitxategiak jaisten..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Kopiatzen ari da"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "ezinbestekoa"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "garrantzitsua"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "oso baliagarria"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "baliagarria"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "beharbada"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, fuzzy, c-format
+msgid "Invictus Firewall"
+msgstr "Suhesi interaktiboa"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, fuzzy, c-format
+msgid "New Theme"
+msgstr "Webmin gai berriak"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Lanpostua"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Bulegoko lanpostua"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Bulego programak: testu-prozetzaileak (OpenOffice.org Writer, Kword), "
+"kalkulu-orriak (OpenOffice.org Calc, Kspread), PDF ikustaileak, etab"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Bulego-lanetako programak: testu-prozesadoreak (kword, abiword), kalkulu-"
+"orriak (kspread, gnumeric), pdf ikustaileak, etab."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Jokoak"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+"Denbora-pasako programak: makina-jokoak, taula-jokoak, estrategiakoak, etab."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimedia"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Soinua eta bideoa jotzeko/editatzeko programak"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internet"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Posta eta berri-taldeetako mezuak (mutt, tin...) irakurtzeko eta bidaltzeko "
+"eta Interneten nabigatzeko tresna-multzoa"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Sare-ordenagailua (bezeroa)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Hainbat protokolotako bezeroak, ssh-renak barne"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Zure ordenagailuaren konfigurazioa errazteko tresnak"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Kontsola-tresnak"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editoreak, shell-ak, fitxategi-tresnak, terminalak"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Garapena"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C eta C++ garapen-liburutegiak, programak eta fitxategiak"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentazioa"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Linux eta Software libreari buruzko liburuak eta azalpenak"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Beste batzuek egindako aplikazioen euskarria"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Web zerbitzaria"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Taldelanerako Aplikazioak"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab Zerbitzaria"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Suebakia/Bideratzailea"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Interneteko atebidea"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Posta/Berriak"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix posta zerbitzaria, Inn berri zerbitzaria"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Direktorio Zerbitzara"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP Zerbitzaria"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Domeinu Izen eta Sare Informazio Zerbitzaria"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Fitxategi eta Inprimaketa Elkarbanatzeko Zerbitzaria"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS zerbitzaria, Samba zerbitzaria"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Datu-basea"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL eta MySQL Datubase Zerbitzaria"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Posta"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix posta-zerbitzaria"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL edo MySQL datu-baseen zerbitzaria"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Sare-zerbitzaria"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS zerbitzaria, SMB zerbitzaria, Proxy zerbitzaria, ssh zerbitzaria"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Ingurune grafikoa"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE lanpostua"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K Desktop Environment, hainbat tresna dituen oinarrizko ingurune grafikoa"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME lanpostua"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Aplikazio-multzo eta mahaigaineko tresna lagungarri eta atseginak dituen "
+"ingurune grafikoa"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm Idaztegia"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Beste mahaigain grafiko batzuk"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, etab."
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Utilitateak"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH zerbitzaria"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin Urruneko Konfigurazio Zerbitzaria"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Sare Utilitateak/Gainbegiraketa"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Gainbegiraketa tresnak, prozesuen kotabilitatea, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva Morroiak"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Zerbitzaria konfiguratzeko morroiak"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Errore bat gertatu da, baina ez dakit behar bezala maneiatzen.\n"
+"Jarraitu zure ardurapean."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Pakete garrantzitsu batzuk ez dira behar bezala instalatu.\n"
+"Zure CD-ROM unitateak edo CD-ROMak akatsak ditu.\n"
+"Probatu CD-ROMa ordenagailu instalatu batean \"rpm -qpl media/main/*.rpm\" "
+"erabiliz.\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "`%s'. urratsean sartzen\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux %s instalazioa"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> elementuz aldatzeko"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Sistemak baliabide gutxi ditu. Arazoak izan ditzakezu Mandriva Linux \n"
+"instalatzeko. Horrela bada, testu-instalazioa egiten saia zaitezke. \n"
+"Horretarako, sakatu `F1' CD-ROMetik abiaraztean, eta idatzi `text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Pakete-taldearen hautapena"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Pakete indibidualen hautapena"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Guztizko tamaina: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Pakete txarra"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Bertsioa: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Tamaina: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Garrantzia: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Ezin duzu pakete hau hautatu/desautatu"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "%s falta delako"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "%s bete gabe dagoelako"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "%s jaso nahian"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "%s gordetzeko"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "Ezin duzu pakete hori hautatu: ez dago instalatzeko lekurik"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Ondorengo pakete hauek instalatuko dira"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Ondorengo pakete hauek kenduko dira"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Nahitaezko paketea da, ezin da desautatu"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Ezin duzu pakete hau desautatu. Dagoeneko instalatuta dago"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Ezin duzu pakete hau desautatu. Bertsio-berritu egin behar da"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Erakutsi automatikoki hautatutako paketeak"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Instalatu"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Hautapena Zamatu/Gorde"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Pakete-hautapena eguneratzen"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Gutxieneko instalazioa"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Software kudeaketa"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Aukeratu instalatu nahi dituzun paketeak"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Instalatzen"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Xehetasunik ez"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Geratzen den denbora "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Kalkulatzen"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pakete"
+msgstr[1] "%d pakete"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Laburpena"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Konfiguratu"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "konfiguratu gabe"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Ondorengo instalazio euskarriak aurkitu dira.\n"
+"Horietako batzuk erabiltzerik nahi ez baduzu, haututik kendu ditzakezu orain."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Instalazio aurretik CD-en edukia disko zurrunera kopiatzeko aukera daukazu.\n"
+"Disko zurrunetik jarraituko du orduan eta paketeak eskuragarri egongo dira "
+"sistema osorik instalatu ondoren."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Kopiatu CD osoak"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Errore bat izan da"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Aukeratu zure teklatu-diseinua."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Hona hemen teklatu erabilgarri guztien zerrenda"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Instalazioa/Bertsio-berritzea"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Zer egin nahi duzu: instalazioa ala bertsio-berritzea?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "%s bertsio-berritu"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "%s(r)en enkriptatze-gakoa"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE konfiguratzen"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Ez dago lekurik 1 MBeko bootstrap-a sortzeko! Instalazioak jarraituko du, "
+"baina sistema abiarazteko, bootstrap partizioa sortu beharko duzu DiskDrake-"
+"rekin"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"PPC PReP abiapen bootstrap bat sortu beharko duzu! Instalaketak aurrera "
+"jarraituko du, baino zure sistema abiarazteko, bootstrap partizioa sortu "
+"beharko duzu DiskDrake erabiliz"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Aldatu zure CD-ROMa!\n"
+"\n"
+"Mesedez, sartu \"%s\" etiketa duen CD-ROMa zure unitatean, ondoren, sakatu "
+"'Ados'.\n"
+"Ez badaukazu, sakatu 'Utzi' CD-ROM horretatik instalazioa egin ez dezan."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Pakete erabilgarriak bilatzen..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Mesedez aukeratu pakete aukeraketa zamatu edo gorde.\n"
+"Formatua instalazio automatikoarekin sortutako fitxategiaren berdina da."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Karga"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Gorde"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Okerreko fitxategia"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Hautatutako tamaina handiagoa da leku erabilgarria baino"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Instalazio-mota"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Ez duzu talde edo paketerik hautatuta\n"
+"Nahi duzun gutxieneko instalazioa hautatu behar duzu:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Xrekin"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Oinarrizko dokumentazioarekin (gomendatua)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Instalazio minimo-minimoa (batez ere, urpmi gabe)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Denak"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Instalazioa prestatzen"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr ""
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Errore bat izan da paketeak ordenatzean:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Jarraitu hala ere?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Gorde pakete-hautapena"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Errore bat izan da paketeak instalatzean:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Instalazio-ondorengo konfigurazioa"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "Mesedez egiaztatu Moduluak Eguneratzeko euskarria %s unitatean dagoela"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Eguneraketak"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Pakete eguneratuak deskarga ditzakezu orain. Pakete hauek\n"
+"eguneratu egin dira banaketaren ondoren. Beharbada\n"
+"segurtasun edo akatsen konponketak izango dituzte.\n"
+"\n"
+"Pakete hauek deskargatzeko, Interneteko konexioa izan behar\n"
+"duzu.\n"
+"\n"
+"Eguneratzeak instalatu nahi dituzu?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Ispiluarekin kontaktatzen pakete erabilgarrien zerrenda lortzeko..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Ezin da %s ispiluarekin kontaktatu"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Hardwarea"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Soinu-txartela"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "ISA soinu-txartela duzu?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Instalazioa egindakoan, exekutatu \"alsaconf\" edo \"sndconfig\" soinu-"
+"txartela konfiguratzeko"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Ez da detektatu soinu-txartelik. Probatu \"harddrake\" instalazioa egin "
+"ondoren"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Telebista-txartela"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Interfaze grafikoa"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Sarea eta Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxy-ak"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "konfiguratuta"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Segurtasun-maila"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Suebakia"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "aktibatuta"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "desgaituta"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Abioa"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s - %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "X ez duzu konfiguratu. Ziur zaude hori dela egin nahi duzuna?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Abioko kargatzailea prestatzen..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"OldWorld edo makina ezezagun bat daukazula dirudi, yaboot abiozamatzaileak "
+"ez du zurean lanegingo. Instalaketak aurrera jarraituko du, baino BootX edo "
+"abiatzeko beste bide bat erabili beharko duzu zure makina abiarazteko. Erro "
+"fitxategi sistemarentzako nukleo argumentua honakoa da: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "aboot erabili nahi duzu?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Errorea aboot instalatzean, \n"
+"instalazioa egitera behartzen saiatu lehen partizioa suntsitzen badu ere?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Segurtasun-maila honetan, administratzaileak soilik du Windows partizioko "
+"fitxategiak atzitzeko eskubidea."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Sartu diskete huts bat %s unitatean"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Auto-instalazioko disketea sortzen..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Urrats batzuk ez dira osatu.\n"
+"\n"
+"Ziur zaude orain irten nahi duzula?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Zorionak"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Berrabiarazi"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Sortu auto-instalazioko disketea"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Auto-instalazioa erabat automatiza daiteke nahi izanez gero,\n"
+"kasu horretan, disko zurrun osoa hartuko du!!\n"
+"(beste makina batean instalatzeko pentsatua da aukera hau).\n"
+"\n"
+"Beharbada nahiago izango duzu instalazioa errepikatzea.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Errepikatu"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatizatua"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Gorde pakete-hautapena"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Hizkuntza"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Lizentzia"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Sagua"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Disko zurrunen detekzioa"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Instalaketa mota"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Teklatua"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Segurtasuna"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Partizioa egiten"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Paketeak aukeratzen"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Instalatzen"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Egiaztatzea"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Erabiltzaileak"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Saregintza"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Abioko kargatzailea"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Konfiguratu X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Laburpena"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Zerbitzuak"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Eguneraketak"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Irten"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d pakete, %d MB)"
+#~ msgstr[1] "(%d pakete, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pakete"
+
+#~ msgid "Language"
+#~ msgstr "Hizkuntza"
+
+#~ msgid "License"
+#~ msgstr "Lizentzia"
+
+#~ msgid "Installation class"
+#~ msgstr "Instalaketa mota"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Kalkulatzen"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Paketeak aukeratzen"
+
+#~ msgid "Users"
+#~ msgstr "Erabiltzaileak"
+
+#~ msgid "Networking"
+#~ msgstr "Saregintza"
+
+#~ msgid "Configure X"
+#~ msgstr "Konfiguratu X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Ezin dira zure nukleoari dagozkion nukleo-moduluak atzitu (%s fitxategia "
+#~ "ez dago); normalean horrek esan nahi du zure disketea ez dagoela "
+#~ "sinkronizatuta Instalazio-euskarrian (sortu abioko diskete berriagoa)"
diff --git a/perl-install/install/share/po/fa.po b/perl-install/install/share/po/fa.po
new file mode 100644
index 000000000..7cae67de5
--- /dev/null
+++ b/perl-install/install/share/po/fa.po
@@ -0,0 +1,1609 @@
+# translation of DrakX-fa.po to Persian
+# Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
+# Abbas Izad <abbasizad@hotmail.com>, 2003, 2004, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-fa\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2005-02-26 06:31+0100\n"
+"Last-Translator: Abbas Izad <abbasizad@hotmail.com>\n"
+"Language-Team: Persian\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3.1\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "آیا رسانه مکمل دیگری دارید؟"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "شبکه (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "شبکه (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "نشانی اینترنتی آینه؟"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"در حال تماس گرفتن با وب‌گاه لینوکس ماندریبا برای دریافت لیست پایگاه‌های "
+"آینه‌های موجود..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"در حال تماس گرفتن با وب‌گاه لینوکس ماندریبا برای دریافت لیست پایگاه‌های "
+"آینه‌های موجود..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "انتخاب آینه‌ای برای گرفتن بسته‌ها"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "شاخه"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "نمیتوان پرونده hdlist را بر این آینه پیدا کرد"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "بررسی بسته‌های از قبل نصب شده..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "یافتن بسته‌های برای ارتقاء..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"شما کارگزار(های) بدنبال آمده را انتخاب کرده‌اید: %s\n"
+"\n"
+"\n"
+"این کارگزارها در پیش‌فرض فعال شده‌اند. آنها هیچ اشکال امنیتی شناخته شده‌ای\n"
+"ندارند، ولی اشکالات جدید می‌توانند پیدا شوند. در آن صورت شما باید هر چه\n"
+"زودتر آنها را ارتقاء دهید.\n"
+"\n"
+"\n"
+"آیا واقعا می‌خواهید این کارگزارها را نصب کنید؟\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"بسته‌های بدنبال آمده برای ارتقاء سیستم شما برداشته خواهند شد: %s\n"
+"\n"
+"\n"
+"آیا واقعاً می‌خواهید این بسته‌ها را بردارید؟\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "دیسک(های) بدنبال تغییر نام داده شده‌اند:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (قبلا نامش %s بود("
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "شبکه"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "لطفاً رسانه‌ای را انتخاب کنید"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "پرونده از قبل وجود دارد. بازنویسی شود؟"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "اجازه داده نشد"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "رسانه بد %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "نمی‌توان قبل از قسمت‌بندی عکس‌صفحه گرفت"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "عکس‌صفحه‌ها بعد از نصب در %s در دسترس خواهند بود"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "نصب کردن"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "پیکربندی"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "باید %s را قالب‌بندی کنید"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"بعضی از سخت‌افزارهای بر روی رایانه‌ی شما برای کار کردن احتیاج به راه‌اندازهای "
+"اختصاصی دارند. یافتن اطلاعاتی درباره آنها در: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "بالا آوردن شبکه"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "پایین آوردن شبکه"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "فرستادن پرونده‌ها..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "کپی کردن در حال انجام است"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "باید داشت"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "مهم"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "خیلی خوب"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "خوب"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "شاید"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "ایستگاه‌کار"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "ایستگاه‌کار دفتری"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"برنامه های دفتری: واژه پردازان (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"برنامه‌های دفتری: واژه پردازها ((kword, abiword), برگ‌های حساب (kspread, "
+"gnumeric), نماگرهای pdf و غیره"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "ایستگاه بازی"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "برنامه‌های سرگرمی: آرکید، تخته‌ها، تاکتیکی، غیره"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "ایستگاه چندرسانه‌ای"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "برنامه‌های ویرایش/پخش ویدیو و صوت"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "ایستگاه اینترنت"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr "مجموعه ابزار خواندن و ارسال پست و اخبار (mutt, tin..) و برای مرور وب"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "رایانه‌ی شبکه (کارگیر)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "کارگیرها برای پایان‌نامه‌های گوناگون از جمله ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "ابزارهای برای آسان‌ کردن پیکربندی رایانه‌اتان"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "ابزارهای کنسول"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "ویرایش‌گرها، پوسته‌ها، ابزار پرونده، پایانه‌ها"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "برنامه‌سازی"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "کتابخانه‌های برنامه‌سازی C و C++، برنامه‌ها و پرونده‌های شامل"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "نوشتار"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "کتاب‌ها و چگونگی‌ها در لینوکس و نرم‌افزار آزاد"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "پایه‌ی استاندارد لینوکس. حمایت برنامه‌های شخص سوم"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "کارگزار‌ وب"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "آپاچ"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "گروه افزار"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "کارگزار Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "دیوار‌آتش/مسیریاب"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "دروازه‌ی اینترنت"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "پست/اخبار"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "کارگزار پست Postfix، کارگزار اخبار Inn "
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "کارگزار شاخه"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "کارگزار FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "نام دامنه و کارگزار اطلاعات شبکه"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "کارگزاراشتراک چاپگر و پرونده"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "کارگزار NFS، کارگزار Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "بانک ‌اطلاعات"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "کارگزار پایگاه داده‌ی PostgreSQL و MySQL "
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "پست"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "کارگزار پست Postfix "
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "کارگزار بانک اطلاعاتی PostgreSQL یا MySQL "
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "کارگزار شبکه‌ی رایانه"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "کارگزار NFS , کارگزار SMB , کارگزار Proxy , کارگزار ssh "
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "محیط گرافیکی"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "ایستگاه‌کار KDE "
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "محیط رومیزی K، محیط گرافیکی پایه با مجموعه‌ای از ابزارهای ضمیمه"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "ایستگاه‌کار گنوم"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "محیط گرافیکی کاربر-دوستانه با مجموعه‌ای از برنامه‌ها و ابزارهای رومیزی"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "رومیزی Plucker"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "دیگر رومیزی‌های گرافیکی"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "وسایل"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "کارگزار‌ SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "کارگزار پیکربندی از راه دور Webmin "
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "پایشگری/وسایل شبکه"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "ابزار پایشگری، پروسه های حسابداری، tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "جادوگران نرم افزار ماندریبا"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "جادوگران برای پیکربندی کارگزار"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"خطائی رخ داد، اما نمی‌دانم چگونه آن را بخوبی اداره کنم.\n"
+"با مسئولیت خودتان ادامه دهید."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"بعضی از بسته‌های مهم بدرستی نصب نشدند. \n"
+"یا گرداننده‌ی سی‌دی یا سی‌دی‌رم شما دارای اشکال می‌باشد.\n"
+"این سی‌دی را بر یک رایانه‌ی نصب شده با استفاده از \"rpm -qpl media/main/*.rpm"
+"\" بررسی کنید\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "ورود به مرحله‌ی `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "نصب لینوکس ماندریبا %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> بین عناصر"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"سیستم شما منابع کمی دارد. ممکن است در نصب لینوکس ماندریبا با اشکال برخورد "
+"کنید. \n"
+"اگر این اتفاق رخ داد، می‌توانید نصب متنی را بجایش امتحان کنید. برای این کار، "
+"`F1' را \n"
+"هنگام آغازگری با سی‌دی فشار داده، سپس `text' وارد کنید."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "گزینش گروه بسته"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "انتخاب بسته‌ی تکی"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "اندازه‌ی کل: %d / %d مگابایت"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "بسته‌ی خراب"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "نسخه: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "اندازه: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d کیلوبایت\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "اهمیت: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "نمی‌توانید این بسته را انتخاب/غیر انتخاب کنید"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "بدلیل فقدان %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "بدلیل عدم ارضای %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "تلاش برای تبلیغ %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "بمنظور نگهداشتن %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"نمی‌توانید این بسته را انتخاب کنید چرا که فضای کافی برای نصب آن باقی نمانده "
+"است"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "بسته‌های بدنبال آمده نصب خواهند شد"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "بسته‌های بدنبال آمده برداشته خواهند شد"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "این بسته‌ای ضروری است، نمی‌تواند که گزیده نشود."
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "نمی‌توانید این بسته را انتخاب نکنید. آن از قبل نصب شده است "
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "نمی‌توانید این بسته را انتخاب نکنید. این باید ارتقاء داده شود"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "نشان دادن خودکار بسته‌های انتخاب شده"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "نصب"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "بارگذاری/ذخیره انتخاب"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "بروزسازی مجموعه بسته"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "نصب حداقل"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "مدیریت نرم‌افزار"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "بسته‌هایی را که می‌خواهید نصب کنید انتخاب کنید"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "نصب کردن"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "بدون جزئیات"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "زمان باقیمانده "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "تخمین زدن"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "بسته‌های %d"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "خلاصه"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "پیکربندی"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "پیکربندی نشده است"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"رسانه نصب بدنبال آمده یافت شد.\n"
+"اگر میخواهید بعضی از آنها را نادیده بگیرید میتوانید آنها را اکنون نگزینید."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"شما میتوانید محتویات سی‌دی‌ها را قبل از نصب بر روی دیسک سخت کپی کنید.\n"
+"سپس آن از دیسک سخت ادامه یافته و بسته‌ها وقتی که سیستم کاملا نصب گردید در "
+"دسترس خواهند بود."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "کپی کردن تمام سی‌دی‌ها"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "خطائی رخ داد"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "لطفاً طرح صفحه‌کلید خود را انتخاب کنید."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "این لیست کامل صفحه‌کلیدهای در دسترس می‌باشد"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "نصب/ارتقاء"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "آیا این یک نصب است یا یک ارتقاء؟"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "ارتقاء دادن %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "کلید رمزی برای %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "پیکربندی IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"هیچ فضای آزادی برای ۱ مگابایت تسمه‌ی آغازگری ! نصب ادامه پیدا خواهد کرد، ولی "
+"باید قسمت‌بندی تسمه آغازگری را در DiskDrake ایجاد کنید"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"شما نیاز به ایجاد یک تسمه‌ی آغازگری PPC PReP دارید! نصب ادامه پیدا خواهد کرد، "
+"ولی باید قسمت‌بندی تسمه آغازگری را در DiskDrake ایجاد کنید"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"سی‌دی-رم خود را عوض کنید! \n"
+"لطفاً سی‌دی با برچسب \"%s\" را در دستگاه‌تان بگذارید و تأیید را بعد از انجام آن "
+"فشار دهید. \n"
+"اگر آن را ندارید، لغو را برای جلوگیری از نصب این سی‌دی-رم فشار دهید."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "جستجو برای بسته‌های موجود..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"لطفاً بارگذاری یا ذخیره‌ی مجموعه بسته را انتخاب کنید.\n"
+"قالب همانند پرونده‌های تولید شده‌ی نصب-خودکار است."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "بارگذاری"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "ذخیره"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "پرونده بد"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "اندازه‌های انتخاب شده بزرگ‌تر از فضای موجود است"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "نوع نصب"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"هیچ گروه از بسته‌ها را انتخاب نکرده‌اید.\n"
+"لطفاً حداقل نصبی را که می‌خواهید انتخاب کنید:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "با X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "با نوشتارهای پایه (سفارش می‌شود!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "حقیقتاً حداقل نصب (مخصوصاً بدون urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "همه"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "آماده کردن نصب"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "نصب کردن بسته‌ی %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "خطائی در مرتب کردن بسته‌ها رخ داد:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "ادامه به هر حال؟"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "ذخیره‌ی مجموعه بسته‌ها"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "خطائی هنگام نصب بسته‌ها وجود داشت:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "پیکربندی بعد از نصب"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "بروزسازی‌ها"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"اکنون می‌توانید بسته‌های بروزسازی شده را بارگیری کنید. این بسته‌ها \n"
+"بعد از پخش انتشار بروزسازی شده‌اند. آنها ممکن است دارای تعمیرات اشکال\n"
+"یا امنیت باشند.\n"
+"\n"
+"برای بارگیری این بسته‌ها، احتیاج به یک اتصال اینترنتی دارید.\n"
+"\n"
+"آیا می‌خواهید بروزسازی‌ها را نصب کنید؟"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "تماس گرفتن با آینه برای گرفتن لیست بسته‌های موجود..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "نمی‌توان با آینه %s تماس برقرار کرد"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "سخت‌افزار"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "کارت صوتی"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "آیا کارت صوتی ISA دارید؟"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"برای پیکربندی کارت صوتی خود بعد از نصب برنامه‌ی \"sndconfig\" یا \"alsaconf"
+"\" را اجرا کنید"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "هیچ کارت صوتی شناسایی نشد. \"harddrake\" را بعد از نصب امتحان کنید"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "کارت تلویزیون"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "واسط گرافیکی"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "شبکه و اینترنت"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "پراکسی‌ها"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "پیکربندی شده"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "سطح امنیتی"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "دیوارآتش"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "فعال شده"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "از کار افتاده"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "آغازگری"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s بر %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "شما ایکس را پیکربندی نکرده‌اید. آیا واقعاً مطمئنید که این را می‌خواهید؟"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "آماده کردن بارگذار آغازگر..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"بنظر میرسد که شما یک رایانه‌ی عهد عتیق یا ناشناس دارید، \n"
+"بارگزار آغازگر یابوت برای شما کار نخواهد کرد. \n"
+"این نصب ادامه پیدا خواهد کرد، ولی شما باید \n"
+"از BootX یا طریق دیگری برای آغازگری استفاده کنید. آرگومان هسته برای سیستم "
+"پرونده ریشه: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "آیا می‌خواهید از aboot استفاده کنید؟"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"خطا در نصب aboot, \n"
+"تلاش به اجبار نصب می‌کنید حتی اگر آن اولین قسمت‌بندی را خراب کند؟"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"در این سطح امنیتی، دستیابی به پرونده‌های قسمت‌بندی ویندوز محدود به مدیر است."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "یک دیسکچه‌ی خالی را در گرداننده‌ی %s داخل کنید"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "ایجاد کردن دیسکچه‌ی نصب خودکار..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"بعضی از مراحل تکمیل نشده است.\n"
+"\n"
+"واقعاً می‌خواهید اکنون ترک کنید؟"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "تبریک می‌گوئیم!"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "آغازگری مجدد"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "تولید دیسکچه‌ی نصب خودکار"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"اگر بخواهید نصب خودکار می‌تواند کاملا خودکار عمل کند، \n"
+"که در آن صورت گرداننده‌ی دیسک را در اختیار می‌گیرد!! \n"
+"(این برای نصب بر رایانه دیگری منظور شده است) \n"
+"\n"
+"ممکن است ترجیح دهید نصب را اجرای مجدد کنید.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "بازپخش"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "خودکار"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "ذخیره‌ی مجموعه بسته‌ها"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "زبان"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "مجوز"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "موشی"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "شناسایی گرداننده‌ی دیسک"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "صفحه‌کلید"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "امنیت"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "قسمت‌بندی"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "نصب کردن"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "تأیید هویت"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "کاربران"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "شبکه‌کاری"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "بارگذار آغازگر"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "پیکربندی ایکس"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "خلاصه"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "سرویس‌ها"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "بروزسازی‌ها"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "خروج"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(بسته‌های %d، %d مگابایت)"
+
+#~ msgid "%d packages"
+#~ msgstr "بسته‌های %d"
+
+#~ msgid "Language"
+#~ msgstr "زبان"
+
+#~ msgid "License"
+#~ msgstr "مجوز"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "انتخاب رده‌ی نصب"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "تخمین زدن"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "انتخاب بسته‌ها برای نصب کردن"
+
+#~ msgid "Users"
+#~ msgstr "کاربران"
+
+#~ msgid "Networking"
+#~ msgstr "شبکه‌کاری"
+
+#~ msgid "Configure X"
+#~ msgstr "پیکربندی ایکس"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "نمی‌توان به ماژول‌های هسته مربوط به هسته‌ی شما (پرونده %s وجود ندارد) "
+#~ "دستیابی یافت، این معمولاً بدین معنی است که دیسکچه‌ی آغازگرتان با رسانه‌ی نصب "
+#~ "هم‌گاهی ندارد (لطفاً دیسکچه‌ی آغازگری جدیدی ایجاد کنید)"
diff --git a/perl-install/install/share/po/fi.po b/perl-install/install/share/po/fi.po
new file mode 100644
index 000000000..7abc70e3c
--- /dev/null
+++ b/perl-install/install/share/po/fi.po
@@ -0,0 +1,1640 @@
+# DrakX-fi - Finnish Translation
+#
+# Copyright (C) 2002,2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+# Copyright (C) 2002 Mandriva
+#
+#
+# Matias Griese <mahagr@utu.fi>, 2001.
+# Taisto Kuikka <69319@batman.jypoly.fi>, 2003,2004.
+# Esa Linna <denzo@mbnet.fi>, 2004.
+# Thomas Backlund <tmb@mandrake.org>, 2002, 2003, 2004, 2005.
+# Thomas Backlund <tmb@mandriva.org>, 2006.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-fi - Mandriva 2007 Release\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2006-09-18 20:02+0300\n"
+"Last-Translator: Thomas Backlund <tmb@mandriva.org>\n"
+"Language-Team: Finnish <fi@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Onko sinulla muita asennuksen lisälevyä?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Seuraavat lähteet on löydetty ja käytetään asennuksen aikana: %s.\n"
+"\n"
+"\n"
+"Onlo sinulla lisää lähteitä jotta haluat määrittää?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Verkko (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Verkko (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Verkko (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "Peilipalvelimen URL?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "URL pitää alkaa ftp:// tai http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Otetaan yhteys Mandriva Linuxin sivustolle peilipalvelinlistan saamiseksi..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Yhteydenotto Mandriva Linuxin sivustolle peilipalvelinlistan saamiseksi "
+"epäonnistui"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Valitse peilipalvelin josta paketit haetaan"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "NFS Asetus"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Syötä NFS-palvelimesi nimi ja hakemistopolku"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "NFS-liitoksen palvelimen nimi?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Kansio"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "En löydä hdlist tiedostoa tässä peilipalvelimessa."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Etsitään jo asennettuja paketteja..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Poistetaan paketteja ennen päivitystä..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Etsitään päivitettäviä paketteja..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Olet valinnut seuraavat palvelimet: %s\n"
+"\n"
+"\n"
+"Nämä palvelimet otetaan oletuksena käyttöön. Niissä ei ole tunnettuja \n"
+"turvallisuusaukkoja, mutta sellaisia voi löytyä ajan mittaan. Mikäli niin \n"
+"tapahtuu, sinun pitäisi päivittää kyseiset palvelimet niin nopeasti kuin \n"
+"suinkin mahdollista.\n"
+"\n"
+"\n"
+"Haluatko todella asentaa nämä palvelimet?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Seuraavat paketit poistetaan jotta järjestelmäsi voidaan päivittää:\n"
+"%s\n"
+"\n"
+"Haluatko varmasti poistaa nämä paketit?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Seuraava(t) levy(t) uudelleennimettiin:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (oli ennen nimetty %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Verkko"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Ole hyvä ja valitse media"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Tiedosto jo olemassa. Korvaa?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Ei oikeuksia"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Virheellinen NFS-nimi"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Huono media %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Kuvakaappauksia ei voida tehdä ennen osiointia"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Kuvakaappaukset löytyvät asennuksen jälkeen hakemistosta %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Asennus"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Asetustyökalut"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Sinun täytyy myös alustaa %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Jokin osa laitteistoasi tarvitsee laitteistovalmistajan ajurit toimiakseen\n"
+"kunnolla. Löydät lisätietoja edellä mainituista täältä: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Käynnistetään verkkoa"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Ajetaan alas verkkoa"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Haetaan tiedosto %s ..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Kopioin paketteja kovalevylle myöhempään käyttöön"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Kopiointi käynnissä"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "pakollinen"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "tärkeä"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "erittäin hyvä"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "hyvä"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "ehkä"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "2007 tuotelinja"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Invictus Palomuuri"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery Live Tila"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Miten rekisteröityä"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva Online Palvelut"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Uusi teema"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Työasema"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Toimistotyöasema"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Toimisto-ohjelmistot: tekstinkäsittely (OpenOffice.org Writer, Kword), "
+"taulukkolaskenta (OpenOffice.org calc, Kspread), PDF-lukijat jne"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Toimisto-ohjelmistot: tekstinkäsittely (kword, abiword), taulukkolaskenta "
+"(kspread, gnumeric), pdf-lukijat jne"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Peliasema"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Viihdeohjelmat: tasohyppely, korttipelit, strategia jne"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimediatyöasema"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Äänen sekä videon toisto- ja editointiohjelmat"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internettyöasema"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Valikoima työkaluja sähköpostin ja uutisryhmien lukemiseen (mutt, tin...) "
+"sekä Internetin selailuun"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Verkkopääte (asiakas)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Asiakasohjelmat eri protokollille (SSH jne)"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Työkalut, jotka helpottavat tietokoneesi asetusten muokkaamista"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Komentorivityökalut"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editorit, komentotulkit, tiedostotyökalut, päätteet"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Kehitysympäristö"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C ja C++ kehityskirjastot, ohjelmat ja include-tiedostot"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentaatio"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Kirjoja ja ohjeita Linuxista sekä vapaan lähdekoodin ohjelmista"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+"Linux Standard Base (Linux Standardi Perusta)\n"
+" - Kolmannen osapuolen ohjelmistojen tuki"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "WWW-palvelin"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab palvelin"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Palomuuri / Reititin"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internetin yhdyskäytävä"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Posti/Uutiset"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix sähköpostipalvelin, Inn uutispalvelin"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Hakemisto-palvelin"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP-palvelin"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Verkkoalueen nimipalvelin (DNS) ja verkon informaatio-palvelin"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Tiedosto- ja Tulostuspalvelin"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS-palvelin, Samba-palvelin"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Tietokanta"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL ja MySQL tietokantapalvelin"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache WWW-palvelin ja Pro-ftpd FTP-palvelin"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Sähköposti"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix sähköpostipalvelin"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL tai MySQL tietokantapalvelin"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Verkkotietokone (palvelin)"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS-, SMB-, välitys- ja SSH-palvelin"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Graafinen ympäristö"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE-työasema"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K-työpöytäympäristö. Graafinen perusympäristö ja sen mukana tulevat työkalut"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME-työasema"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Graafinen ympäristö käyttäjäystävällisellä sovelluksilla ja työkaluilla."
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm Työpöytä"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Muut graafiset käyttöympäristöt"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, FVWM jne"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Työkalut"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH-palvelin"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin Etäasetuspalvelin"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Verkkotyökalut/Valvonta"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Valvontatyökalut, prosessihallinta, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva Velhoja"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Velhoja palvelimen asettamiseksi"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Ilmeni virhe, eikä sitä ei voida käsitellä kunnolla.\n"
+"Jatka omalla vastuullasi."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Osa tärkeistä paketeista ei asentunut kunnolla.\n"
+"Joko CD-ROM-asemasi tai levy on viallinen.\n"
+"Tarkista CD-ROM Linux-koneessa komennolla \"rpm -qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Siirryn vaiheeseen `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux asennus %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> vaihtaa elementtiä"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Järjestelmäsi resurssit ovat lopussa. Voit kohdata ongelmia Mandriva "
+"Linuxia\n"
+"asentaessasi. Jos näin tapahtuu, voit kokeilla tekstipohjaista asennusta.\n"
+"Tehdäksesi niin paina `F1' kun käynnistät asennusohjelmaa CD-ROM:lta.\n"
+"Tämän jälkeen kirjoita `text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Pakettiryhmien valinta"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Yksittäisten pakettien valinta"
+
+# mat
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Koko yhteensä: %d / %d Mt"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Viallinen paketti"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versio: "
+
+# mat
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Koko: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d kt\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Tärkeys: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Et voi valita/poistaa tätä pakettia"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "puuttuvista %s johtuen"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "täyttämättömistä riippuvuuksista %s johtuen"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "yritetään asentaa %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "jotta %s voitaisiin säilyttää"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Et voi asentaa tätä pakettia, koska levyllä ei ole tarpeeksi tilaa sen "
+"asentamiseksi"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Seuraavat paketit asennetaan"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Seuraavat paketit poistetaan"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Tämä on pakollinen paketti, sitä ei voida poistaa valinnoista"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Et voi poistaa tämän paketin valintaa. Se on jo asennettu"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Et voi poistaa tämän paketin valintaa. Paketti pitää päivittää."
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Näytä automaattisesti valitut paketit"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Asenna"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Lataa/Tallenna valinta"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Päivitän pakettien valintaa"
+
+# Asennuksen sivuvalikko
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimaalinen asennus"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Ohjelmistohallinta"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Valitse asennettavat paketit"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Asennetaan"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Ei yksityiskohtia"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Aikaa jäljellä "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Arvioidaan aikaa"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pakettia"
+msgstr[1] "%d pakettia"
+
+# Asennuksen sivuvalikko
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Yhteenveto"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Aseta"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "ei asetettu"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Seuraavar asennusmediat on löydetty.\n"
+"Jos haluat ohittaa joku niistä, voit poistaa niiden valinta nyt."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Sinulla on mahdollisuus kopioida CD-levyjen sisältö kovalevylle ennen "
+"asennusta.\n"
+"Asennus jatkaa sen jälkeen kovalevyltä ja paketit ovat käytettävissä myös "
+"asennuksen jälkeen."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Kopioi koko CD"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Ilmeni virhe"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Valitse näppäimistösi asettelu."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Tässä on koko lista käytettävissä olevista näppäimistöistä"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Asenna/Päivitä"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Onko tämä asennus vai päivitys?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Päivitä %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Salausavain %s:lle"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Asetetaan IDE-levyä"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Ei vapaata tilaa 1 Mt:n käynnistyslohkoa varten! Asennusta jatketaan, mutta "
+"käynnistääksesi järjestelmän sinun pitää luoda käynnistyslohko-osio "
+"DiskDrake:ssa."
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Sinun pitää luoda PPC PReP Boot bootstrap! Asennusta jatketaan, mutta "
+"käynnistääksesi järjestelmän sinun pitää luoda käynnistyslohko-osio "
+"DiskDrake:ssa."
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Vaihda CD-levyä!\n"
+"\n"
+"Aseta CD-levy nimeltä \"%s\" CD-asemaan ja valitse OK kun olet valmis.\n"
+"Jos sinulla ei ole levyä, valitse Peruuta välttääksesi asennukset tältä "
+"levyltä."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Etsitään saatavilla olevia paketteja..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Lataa tai tallenna pakettien valinta.\n"
+"Muoto on sama kuin auto_install-toiminnon luomilla tiedostoilla."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Verkkokuorma"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Tallenna"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Huono tiedosto"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Valittu koko on suurempi kuin käytettävissä oleva levytila"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Asennuksen tyyppi"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Et ole valinnut yhtäkään pakettiryhmää.\n"
+"Valitse haluamasi minimaalinen asennus"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "X-palvelimella"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Perusdokumentaation kanssa (suositeltu!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Vähimmäisasennus (erityisesti ei urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Kaikki"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Valmistellaan asennusta"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Asennetaan pakettia: %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Tapahtui virhe järjestettäessä paketteja:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Jatka kuitenkin?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Tallenna pakettien valinta"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Tapahtui virhe asennettaessa paketteja:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Asennuksen jälkeiset toiminnot"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "Varmista että Päivitetyt Moduulit media on asemassa %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Päivitykset"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Sinulla on nyt mahdollisuus hakea päivitetyt paketit. Nämä paketit\n"
+"on julkaistu tämän jakelun julkaisun jälkeen. Ne voivat sisältää\n"
+"tietoturva- tai virhekorjauksia.\n"
+"\n"
+"Hakeaksesi nämä paketit sinulla pitää olla toimiva Internetyhteys.\n"
+"\n"
+"Haluatko hakea ja asentaa päivitykset?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Yhdistetään peilipalvelimeen uusimman pakettilistan saamiseksi..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Yhteyttä peilipalvelimeen %s ei voitu muodostaa"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Laitteisto"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Äänikortti"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Onko sinulla ISA-väylään liitettävä äänikortti?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Suorita \"alsaconf\" tai \"sndconfig\" asennuksen jälkeen asettaaksesi "
+"äänikorttisi."
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Yhtäkään äänikorttia ei löydetty. Kokeile \"harddrake\" asennuksen jälkeen"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV-kortti"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Graafinen käyttöliittymä"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Verkko & Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Välityspalvelimet"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "asetettu"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Turvataso"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Palomuuri"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "aktivoitu"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "ei käytössä"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Käynnistys"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s kohteessa %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Et ole asettanut X-palvelinta. Oletko varma että haluat tehdä tämän?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Valmistelen käyttöjärjestelmän lataajaa..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Sinulla on vanhanaikainen tai tuntematon tietokone, joten Yaboot "
+"käynnistyslataaja ei toimi koneessasi. Asennus jatkuu, mutta sinun täytyy "
+"käyttää BootX:ää koneesi käynnistämiseen. Ytimen paremetrit root "
+"tiedostojärjestelmälle on: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Haluatko käyttää aboot:a?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Virhe asennettaessa aboot:a,\n"
+"yritetäänkö pakkoasennusta vaikka se tuhoaa ensimmäisen osion?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Tällä turvatasolla pääsy Windows-osion tiedostoihin on rajoitettu "
+"ylläpitäjälle."
+
+# mat
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Aseta tyhjä levyke levykeasemaan %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Valmistellaan automaattiasennuslevykettä..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Joitain vaiheita ei ole saatettu loppuun.\n"
+"\n"
+"Haluatko todella lopettaa?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Onnittelut"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Käynnistä uudelleen"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Luo automaattinen asennuslevyke"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Automaattinen asennus voi olla täysin automatisoitu,\n"
+"jos niin halutaan. Siinä tapauksessa asennus täyttää\n"
+"koko kiintolevyn! (tarkoitettu toisen koneen asentamiseksi),\n"
+"\n"
+"Ehkä haluat mieluummin toistaa asennuksen.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Toista"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automaattinen"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Tallenna pakettien valinta"
+
+# Asennuksen sivuvalikko
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Kieli"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Lisenssi"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Hiiri"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Kiintolevyjen tunnistus"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Asennusluokka"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Näppäimistö"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Tietoturva"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Osiointi"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Alustetaan"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Pakettien valitseminen"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Asennetaan"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Tunnistustapa"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Käyttäjät"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Verkko"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Käynnistyslataaja"
+
+# Asennuksen sivuvalikko
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Aseta X"
+
+# Asennuksen sivuvalikko
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Yhteenveto"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Palvelut"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Päivitykset"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Poistu"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d pakettia"
+#~ msgstr[1] "%d pakettia"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pakettia"
+
+# Asennuksen sivuvalikko
+#~ msgid "Language"
+#~ msgstr "Kieli"
+
+#~ msgid "License"
+#~ msgstr "Lisenssi"
+
+#~ msgid "Installation class"
+#~ msgstr "Asennusluokka"
+
+#~ msgid "Formatting"
+#~ msgstr "Alustetaan"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Pakettien valitseminen"
+
+#~ msgid "Users"
+#~ msgstr "Käyttäjät"
+
+#~ msgid "Networking"
+#~ msgstr "Verkko"
+
+# Asennuksen sivuvalikko
+#~ msgid "Configure X"
+#~ msgstr "Aseta X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Käyttämääsi ydintä vastaavia ytimen moduuleja ei voida käyttää (tiedosto %"
+#~ "s puuttuu), tämä yleensä tarkoittaa että käynnistyslevykettäsi ei ole "
+#~ "tahdistettu asennusmedian kanssa (luo uudempi käynnistyslevyke)."
diff --git a/perl-install/install/share/po/fr.po b/perl-install/install/share/po/fr.po
new file mode 100644
index 000000000..dc1821ef7
--- /dev/null
+++ b/perl-install/install/share/po/fr.po
@@ -0,0 +1,1714 @@
+# translation of DrakX-fr.po to Français
+# Translation file of Mandriva Linux graphic install
+# Copyright (C) 1999,2000,2001,2002,2003,2004,2005,2006 Mandriva
+#
+# Veuillez ne pas mettre à jour ce fichier à moins d'être
+# certain tant de vos traductions que de votre grammaire et
+# de votre orthographe. Ces dernières sont trop souvent
+# approximatives. Elles nécessitent alors des relectures et
+# des corrections qui n'ont d'autre conséquence que de faire
+# perdre du temps à tout le monde (à vous si votre travail est
+# imparfait et aux relecteurs qui doivent rechercher puis corriger
+# vos éventuelles fautes).
+#
+# VEUILLEZ RESPECTER LA TYPOGRAPHIE FRANÇAISE !
+# Les majuscules doivent être accentuées si besoin est. Respectez
+# les espaces nécessaires pour la ponctuation (espace après la virgule et
+# le point, espace insécables avant les points d'interrogation,
+# d'exclamation, les deux-points et le point virgule, espace aussi après
+# le point virgule).
+# N'enlevez pas l'espace qui suit un signe de ponctuation en fin de
+# phrase; vous devez respecter la version originale. Dans ce type de
+# cas, il est extrèmement probable que le programme va afficher
+# quelque chose d'autre à la fin. En enlevant l'espace, vous allez
+# accoller deux mots.
+#
+# ESPACES INSÉCABLES
+# Vous devez utiliser un espace insécable (c'est un espace qui ne peut
+# pas servir de rupture à la ligne) avant le point d'exclamation, le
+# point d'interrogation, le deux-points, le point virgules, et pour les
+# "quantités", entre le nombre et l'unité abbrégée (par exemple "10 g").
+# L'espace normal en ISO et UTF8 est le caractere 0x20 tandis que l'espace
+# insécable est le caractère 0xA0. Sous Emacs en utilisant le po mode
+# livré avec gettext >= 0.10.40-4mdk vous pouvez voir celui-ci avec un
+# fond de couleur spécial. Sous Vi celui-ci est normalement affiché
+# précédé du caractère pipe "|". Pour le taper sous la plupart des
+# éditeurs, vous pouvez utiliser la touche "Compose" puis en tapant
+# deux espaces. Si vous n'avez pas de touche compose, vous pouvez
+# donner cette fonction à la touche "Windows" droite de votre clavier
+# avec la commande suivante :
+# xmodmap -e 'keycode 116 = Multi_key'
+#
+# Les guillemets françaises sont « et » et non ". La guillemet ouvrante
+# « est suivie d'un espace insécable et la guillemet fermante » est
+# précédée du même type d'espace. Pour le taper, vous pouvez utiliser
+# la combinaison Compose < <, et Compose > > (ou alt-z et alt-x).
+#
+# Enfin, traduisez INTELLIGEMMENT et non mot à mot. Certaines traductions
+# n'ont aucun sens en français.
+#
+# MOTS À ÉVITER
+# - application. Ce terme n'étant pas compris par le grand public, il est
+# préférable de le remplacer par le mot "programme".
+#
+# Nous vous remercions de votre compréhension.
+#
+#
+#
+# Stéphane Teletchéa, 2005.
+# David BAUDENS <baudens@mandriva.com>, 1999-2004.
+# David ODIN <odin@mandriva.com>, 2000.
+# Pablo Saratxaga <pablo@mandriva.com>, 2001, 2005.
+# KAtiOS <katios@nolabel.net>, 2001.
+# Guillaume Cottenceau <gc@mandriva.com>, 2001-2002.
+# Thierry Vignaud <tvignaud@mandriva.com>, 2001-2004.
+# Christophe Combelles <ccomb@free.fr>, 2002,2003.
+# Adrien REZER <monsieurdidi@free.fr>, 2003.
+# RICHARD Nicolas <richardnicolas22@yahoo.fr>, 2004.
+# Lecureuil Nicolas <n1c0l4s.l3@wanadoo.fr>, 2004.
+# Teletchéa <steletch@free.fr>, 2004, 2005.
+# Christophe Berthelé <cpjc@free.fr>, 2005, 2006, 2007.
+# Didier Hérisson <didier.herisson@angstrom.uu.se>, 2005.
+# Nicolas Lécureuil <neoclust@mandriva.org>, 2005.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-fr\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-03-05 15:38+0100\n"
+"Last-Translator: Christophe Berthelé <cpjc@free.fr>\n"
+"Language-Team: Français <cooker-i18n@mandrivalinux.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2;plural=(n>1);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Possédez-vous d'autres média supplémentaires ?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Le média suivant a été trouvé et sera utilisé pendant l'installation : %s.\n"
+"\n"
+"\n"
+"Souhaitez-vous configurer un autre média d'installation ?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Réseau (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Réseau (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Réseau (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL du miroir ?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "L'URL doit commencer par ftp:// ou http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Connexion au site Web de Mandriva Linux pour obtenir la liste des serveurs "
+"miroirs disponibles..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Echec de la connexion au site web de Mandriva Linux pour obtenir la liste "
+"des miroirs disponibles"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Choisissez un serveur miroir d'où télécharger les paquetages"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Configuration NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Veuillez entrer le nom de machine et le répertoire de votre média NFS"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Le nom d'hôte manque"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "Le répertoire doit commencer par « / »"
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Nom d'hôte du montage NFS ?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Répertoire"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Supplémentaire"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Ne peut trouver le fichier de liste de paquets sur ce miroir. Vérifiez que "
+"l'emplacement est correct."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Recherche des paquetages déjà installés..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Suppression des paquetages avant la mise à jour ..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Recherche des paquetages à mettre à jour..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Vous avez sélectionné le(s) serveur(s) suivant(s) : %s\n"
+"\n"
+"\n"
+"Ces serveurs seront activés par défaut.\n"
+"Ils n'ont actuellement aucun problème de sécurité connu,\n"
+"mais si des vulnérabilités sont découvertes par la suite,\n"
+"vous devrez effectuer une mise à jour le plus rapidement possible.\n"
+"\n"
+"\n"
+"Confirmez-vous l'installation de ces serveurs ?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Les paquetages suivants seront désinstallés pour permettre la mise à jour : %"
+"s\n"
+"\n"
+"\n"
+"Souhaitez-vous réellement les désinstaller ?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Les disques suivants ont été renommés :"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (précédemment nommé %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Réseau"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Veuillez choisir un média"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Le fichier existe déjà. Voulez-vous l'écraser ?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Permission refusée"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Mauvais nom NFS"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Média %s incorrect"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Impossible de faire des captures d'écran avant le partitionnement"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Les captures d'écran seront disponibles après l'installation dans %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Installation"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Configuration"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Vous devez aussi formater %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Certains périphériques présents sur votre système nécessitent des\n"
+"pilotes « propriétaires » pour pouvoir fonctionner. Vous pouvez\n"
+"trouver plus d'informations les concernant ici : %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Démarrage de l'interface réseau..."
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Arrêt de l'interface réseau..."
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Téléchargement du fichier %s ..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+"Copie de certains paquetages sur les disques pour une utilisation future"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Copie en cours"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "obligatoire"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "important"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "très utile"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "utile"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "éventuellement"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "Ligne de produits 2007"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Pare-feu Invictus"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Mode découverte sans installation (Live)"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Comment s'enregistrer"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva Online Services"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Nouveau thème"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Station de travail"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Poste bureautique"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Programmes pour la bureautique : traitements de texte (OpenOffice.org "
+"Writer, Kword), tableurs (OpenOffice.org Calc, Kspread), visualiseur pdf, etc"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Programmes pour la bureautique : traitements de texte (kword, abiword), "
+"tableurs (kspread, gnumeric), visualiseur pdf, etc"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Jeux"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+"Programmes de divertissement : jeux d'arcade, de plateau, de stratégie, etc"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimédia"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Programmes pour jouer/éditer du son et de la vidéo"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internet"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Ensemble d'outils pour lire et envoyer des courriers électroniques et des "
+"messages de forums (mutt, tin, ...), ainsi que pour naviguer sur Internet"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Ordinateur réseau (client)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Clients pour différents protocoles, dont ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Outils pour faciliter la configuration de votre ordinateur"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Utilitaires console"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Éditeurs, interpréteurs, outils fichiers, terminaux"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Développement"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr ""
+"Bibliothèques de développement C et C++, programmes et fichiers d'en-tête"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Documentation"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Livres et Howto's sur Linux et le Logiciel Libre"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "« Linux Standard Base ». Support des programmes tiers"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Serveur Web"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Serveur Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Pare Feu/Routeur"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Passerelle internet"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Courriel/Nouvelles"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Serveur de courrier Postfix, serveur de nouvelles lnn"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Serveur d'annuaire"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Serveur FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Serveur de noms de domaine et d'information réseaux"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Serveur pour partage de fichiers et d'imprimantes"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "Serveur NFS, Serveur Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Base de Données"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Serveurs de bases de données PostgreSQL ou MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache et Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Courriel"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Serveur de courrier Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Serveurs de bases de données PostgreSQL ou MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Serveur réseau"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Serveur NFS, serveur SMB, serveur Proxy (mandataire), serveur SSH"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Environnement graphique"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Station de travail KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"L'environnement graphique KDE (K Desktop Environment) avec sa collection "
+"d'outils"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Station de travail GNOME"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Un environnement de bureau avec un ensemble de programmes et d'outils "
+"intuitifs"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "Bureau IceWm"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Autres Environnements de Bureau"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, etc"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Utilitaires"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Serveur SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Serveur de configuration distante webmin"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Utilitaires réseau/Surveillance du réseau"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Outils de surveillance, gestion de processus, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Assistants Mandriva"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Assistants pour configurer le serveur"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Une erreur est survenue et semble difficile à résoudre correctement.\n"
+"Vous pouvez continuer, mais à vos risques et périls."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Quelques paquetages importants n'ont pas été correctement installés. Il se\n"
+"peut que le lecteur de CD-ROM ou le CD-ROM lui-même soit défectueux. Vous\n"
+"pouvez vous assurer du bon état de ce dernier en exécutant la commande "
+"suivante\n"
+"sur un ordinateur fonctionnant correctement : « rpm -qpl media/main/*.rpm »\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Démarrage de l'étape « %s »\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Installation de Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> entre éléments"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Votre ordinateur possède peu de mémoire. Vous aurez peut-être quelques\n"
+"problèmes pour installer Mandriva Linux. Si cela se produit, vous pouvez\n"
+"essayer de procéder à une installation en mode texte. Pour cela, appuyez\n"
+"sur la touche « F1 » après l'amorçage sur CD-ROM puis entrez « text »."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Sélection des groupes de paquetages"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Sélection individuelle des paquetages"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Taille totale : %d / %d Mo"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Mauvais paquetage"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Version : "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Taille : "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d Ko\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Importance : "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Vous ne pouvez pas sélectionner/désélectionner ce paquetage"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "parce que %s manque"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "car %s n'est pas résolu"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "Tentative de promouvoir %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "afin de conserver %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "Il n'y a pas assez de place pour installer ce paquetage"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Les paquetages suivants vont être installés"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Les paquetages suivants vont être désinstallés"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Ce paquetage est nécessaire, vous ne pouvez pas le désélectionner"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Vous ne pouvez pas désélectionner ce paquetage. Il est déjà installé"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr ""
+"Vous ne pouvez pas désélectionner ce paquetage, il doit être mis à jour."
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Montrer les paquetages sélectionnés automatiquement"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Installation"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Charger/Sauvegarder la sélection"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Mise à jour de la sélection des paquetages"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Installation minimale"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Gestion des paquetages"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Choisissez les paquetages que vous voulez installer"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Installation"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Pas de détails"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Temps restant "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Estimation en cours"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d paquetage"
+msgstr[1] "%d paquetages"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Résumé"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Configurer"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "non configuré"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Les média d'installation suivants ont été trouvés.\n"
+"Si vous ne désirez pas utiliser certains d'entre eux, vous pouvez les "
+"désélectionner maintenant."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Vous avez la possibilité de copier le contenu des CDs sur le disque dur "
+"avant l'installation.\n"
+"Celle-ci s'effectuera alors à partir du disque dur et les paquetages "
+"resteront disponibles une fois le système installé."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Copier entièrement les CDs"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Une erreur est survenue"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Veuillez choisir votre type de clavier."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Voici la liste complète des claviers disponibles"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Installation/Mise à jour"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Désirez-vous faire une installation ou une mise à jour ?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Mettre à jour %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Clé de chiffrement pour %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Configuration IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Pas de place libre pour la partition d'amorçage (bootstrap) de 1 Mo."
+"L'installation va\n"
+"continuer, mais pour que votre système puisse démarrer, vous aurez besoin "
+"de\n"
+"créer la partition d'amorçage avec DiskDrake."
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Pas de place libre pour la partition d'amorçage (PPC PReP Boot bootstrap) de "
+"1 Mo.L'installation va\n"
+"continuer, mais pour que votre système puisse démarrer, vous aurez besoin "
+"de\n"
+"créer la partition d'amorçage avec DiskDrake."
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Changez de CD-ROM !\n"
+"Veuillez insérer le CD-ROM nommé « %s » dans votre lecteur puis cliquez sur "
+"« OK ».\n"
+"Si vous ne le possédez pas, cliquez sur « Annuler » afin de ne rien "
+"installer à partir de ce CD-ROM."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Recherche des paquetages disponibles..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"Votre système n'a pas assez d'espace libre pour installer ou de mettre à "
+"jour (%dMo > %dMo)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Veuillez choisir entre le chargement ou la sauvegarde de la\n"
+"sélection des paquetages. Le format est le même que celui de l'installation "
+"automatisée (auto_install)."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Charger"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Sauvegarder"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Mauvais fichier"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "La taille sélectionnée est plus importante que la place disponible"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Type d'installation"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Vous n'avez sélectionné aucun groupe de paquetages.\n"
+"Veuillez choisir l'installation minimale désirée : "
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Avec X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Avec la documentation de base (recommandé !)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Installation vraiment minimale (et en particulier pas d'urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Tout"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Préparation de l'installation"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Installation du paquetage %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Erreur lors du tri des paquetages :"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Souhaitez-vous tout de même continuer ?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Ré-essayer"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "Ignorer ce paquetage"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "Ignorer tous les paquetages du média « %s »"
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "Retourner à la sélection du média et des paquetages"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "Erreur lors de l'installation du paquetage %s."
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Configuration post-installation"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+"Assurez vous que le média de mise à jour des modules est dans le lecteur %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Mises à jour"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Vous avez maintenant la possibilité de télécharger les mises à jour\n"
+"créées depuis la sortie de cette distribution. Il peut y avoir des "
+"correctifs de\n"
+"sécurité ou des résolutions d'anomalies.\n"
+"\n"
+"Vous devez avoir une connexion internet pour les télécharger.\n"
+"\n"
+"Souhaitez-vous installer les mises à jour ?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Téléchargement de la liste des paquetages disponibles ..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Impossible d'accéder au miroir %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Matériel"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Carte son"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Possédez-vous une carte son ISA ?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Lancez « alsaconf » ou « sndconfig » après l'installation pour configurer la "
+"carte son"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Aucune carte son détectée. Essayez avec « harddrake » après l'installation"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Carte TV"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Interface graphique"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Réseau et Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxys"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "configuré"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Niveau de sécurité"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Pare Feu"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "activé"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "désactivé"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Partition de démarrage"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s sur %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+"Vous n'avez pas configuré le serveur d'affichage (X11). Êtes-vous sûr de ce "
+"que vous faites ?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Préparation du programme d'amorçage..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Il semble que votre machine ne soit pas dotée de l'architecture "
+"« NewWorld ».\n"
+"Le programme d'amorçage « yaboot » ne fonctionnera pas.\n"
+"L'installation va continuer, mais vous aurez besoin de « BootX » ou\n"
+"d'une autre méthode pour démarrer votre machine. Le paramètre pour la racine "
+"du noyau est : root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Désirez-vous utiliser « aboot » ?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Une erreur est survenue lors de l'installation de « aboot ».\n"
+"Désirez-vous forcer l'installation au risque de détruire la\n"
+"première partition du disque ?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"A ce niveau de sécurité, l'accès aux fichiers de la partition Windows sera "
+"restreint à l'administrateur."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Insérez une disquette vierge dans le lecteur %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Création de la disquette d'auto-installation..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Certaines étapes ne sont pas terminées.\n"
+"\n"
+"Souhaitez-vous vraiment quitter maintenant ?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Félicitations"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Redémarrage"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Créer une disquette d'auto-installation"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"L'auto-installation peut être complètement automatique si nécessaire,\n"
+"dans ce cas elle prend le contrôle du disque dur !!\n"
+"(prévu pour l'installation d'une autre machine).\n"
+"\n"
+"Vous pouvez préférer rejouer l'installation.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Rejouer"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatisée"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Sauvegarder la sélection des paquetages"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Langue"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licence"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Souris"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Détection des disques durs"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Classe d'installation"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Clavier"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Sécurité"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Partitionnement"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Formattage"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Choix des paquetages"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Installation"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Authentification"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Utilisateurs"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Réseau"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Amorçage"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Configuration de X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Résumé"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Services"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Mises à jour"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Quitter"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d paquetage, %d Mo)"
+#~ msgstr[1] "(%d paquetages, %d Mo)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d paquetages"
+
+#~ msgid "Language"
+#~ msgstr "Langue"
+
+#~ msgid "License"
+#~ msgstr "Licence"
+
+#~ msgid "Installation class"
+#~ msgstr "Classe d'installation"
+
+#~ msgid "Formatting"
+#~ msgstr "Formattage"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Choix des paquetages"
+
+#~ msgid "Users"
+#~ msgstr "Utilisateurs"
+
+#~ msgid "Networking"
+#~ msgstr "Réseau"
+
+#~ msgid "Configure X"
+#~ msgstr "Configuration de X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Impossible d'accéder aux modules correspondant à votre noyau (le fichier %"
+#~ "s est manquant), cela veut généralement dire que votre disquette "
+#~ "d'amorçage n'est plus à jour par rapport à votre périphérique "
+#~ "d'installation (veuillez créer une disquette d'amorçage plus récente)"
diff --git a/perl-install/install/share/po/fur.po b/perl-install/install/share/po/fur.po
new file mode 100644
index 000000000..9da494520
--- /dev/null
+++ b/perl-install/install/share/po/fur.po
@@ -0,0 +1,1500 @@
+# translation of DrakX.po to furlan
+# Copyright (C) 2004 Free Software Foundation, Inc.
+# Andrea Gracco <graccoandrea@tin.it>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2004-06-28 17:41+0200\n"
+"Last-Translator: Andrea Gracco <graccoandrea@tin.it>\n"
+"Language-Team: furlan <gft@freelists.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "Rêt"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "Rêt"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr ""
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Cartele"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr ""
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr ""
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr ""
+
+#: any.pm:1140
+#, fuzzy, c-format
+msgid "NFS"
+msgstr "HFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Rêt"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "Par plasè sielç"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr ""
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Permès dineât"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "font zontade %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr ""
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr ""
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Instale"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Configurazion"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr ""
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr ""
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr ""
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr ""
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "Instalazion in vore"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr ""
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr ""
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr ""
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr ""
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr ""
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr ""
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Svilup"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Documentazion"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Server Web"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:88
+#, fuzzy, c-format
+msgid "Groupware"
+msgstr "Grop"
+
+#: share/meta-task/compssUsers.pl:89
+#, fuzzy, c-format
+msgid "Kolab Server"
+msgstr "Server Web"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/File/_Gnûf"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "Ferme Server"
+
+#: share/meta-task/compssUsers.pl:104
+#, fuzzy, c-format
+msgid "FTP Server"
+msgstr "Server NTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, fuzzy, c-format
+msgid "DNS/NIS"
+msgstr "NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "Server Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Mail"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Ambient Grafic"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Desktop"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:183
+#, fuzzy, c-format
+msgid "Utilities"
+msgstr "Filipinis"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Viôt le Configurazion"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "<b>Mandriva Expert</b>"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr ""
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Al è intravignût un fal, ma no sai ben cemût gjestîlu.\n"
+"Continue a to azard."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr ""
+
+#: steps_curses.pm:22
+#, fuzzy, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Centri di Control Mandriva Linux"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr ""
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr ""
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr ""
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr ""
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr ""
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Version: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Dimension: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr ""
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Entitât: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr ""
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "cause cal mancje %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "cause che %s no l'è sodisfat"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "ricercje dal miôr pachet %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "par tignî %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr ""
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr ""
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr ""
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr ""
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr ""
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr ""
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Instale"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "Selezion dal percors"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr ""
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr ""
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Gjestôr Software"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr ""
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr ""
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr ""
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr ""
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr ""
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "pachet no cognossût"
+msgstr[1] "pachet no cognossût"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr ""
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Configure"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr ""
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Al è intravignût un fal"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr ""
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr ""
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr ""
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr ""
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr ""
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr ""
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr ""
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr ""
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr ""
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+
+#: steps_interactive.pm:387
+#, fuzzy, c-format
+msgid "Load"
+msgstr "Locâl"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Salve"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "Salve il file"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr ""
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr ""
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr ""
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr ""
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Ducj"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr ""
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr ""
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr ""
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr ""
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr ""
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr ""
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr ""
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Atualizazions"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr ""
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Hardware"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr ""
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr ""
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Schede TV"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr ""
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Rêt & Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr ""
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr ""
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Nivel di Sigurece"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Firewall"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr ""
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "disabilitât"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Inviament"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr ""
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr ""
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr ""
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr ""
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Congratulazions"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Torne a inviâ"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr ""
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr ""
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr ""
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr ""
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr ""
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr ""
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Surie"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr ""
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Tastiere"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Sigurece"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr ""
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr ""
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr ""
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Utents"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Rêt"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr ""
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr ""
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr ""
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Servizis"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Atualizazions"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Jessì"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Instale atualizazions"
+
+#~ msgid "Users"
+#~ msgstr "Utents"
+
+#~ msgid "Networking"
+#~ msgstr "Rêt"
diff --git a/perl-install/install/share/po/ga.po b/perl-install/install/share/po/ga.po
new file mode 100644
index 000000000..e822404d3
--- /dev/null
+++ b/perl-install/install/share/po/ga.po
@@ -0,0 +1,1523 @@
+#
+# Alastair McKinstry <mckinstry@computer.org>, 2002
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2005-09-12 18:04+0200\n"
+"Last-Translator: Alastair McKinstry <mckinstry@computer.org>\n"
+"Language-Team: Irish <ga@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "An bhfuil ceann eile agat?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Líonra (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Líonra (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Líonra (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr ""
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Cumraigh NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Comhadlann"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Earráid ag oscailt %s do scríobh: %s"
+
+#: any.pm:376
+#, fuzzy, c-format
+msgid "Looking at packages already installed..."
+msgstr "Roghnaigh pacáistí ..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Ag cúrdach pacáistí le húasgrádú..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Roghnaigh pacáistí ..."
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Líonra"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "Roghnaight do theangam le do thoil."
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Tá an comhad ann cheana. Forscríobh?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Cead diúltaithe"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "Tá comhad %s lódailte."
+
+#: any.pm:1294
+#, fuzzy, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Ní féidir liom rann eile a cur isteach"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr ""
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Suiteáil"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "cumraíocht"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Is gá %s a fhormáidiú freisin"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Ag tosnú suas an ghréasán"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Ag dúnadh síos an ghreasán"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "Sabháil i gcomhad"
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "Pointe taca dublach %s"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "riachtanas"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "tábhachtach"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "an-dheas"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "deas"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "b'fhéidir"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Téama Nua"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Stáisiún Oibre"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Stáisiún Oibre"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Stáisiún Cluichí"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Stáisiún ilmheánach"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Stáisiún Idirlíon"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:49
+#, fuzzy, c-format
+msgid "Network Computer (client)"
+msgstr "Printéir Gréasán (lpd)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:55
+#, fuzzy, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Uirlisí Consóil"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Forbairt"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Doiciméadú"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Freastalaí Lín"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Grúpearraí"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Freastalaí Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, fuzzy, c-format
+msgid "Internet gateway"
+msgstr "suimiúil"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Ríomhphost/Nuacht"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Freastalaí Printéir"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Freastalaí Eolaire"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Freastalaí FTP:"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, fuzzy, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS "
+
+#: share/meta-task/compssUsers.pl:109
+#, fuzzy, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Ainm Fearannas"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Freastalaí Printéir"
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "Freastalaí NIS"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Bunachar Sonraí"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Greasan/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Post"
+
+#: share/meta-task/compssUsers.pl:126
+#, fuzzy, c-format
+msgid "Postfix mail server"
+msgstr "Freastalaí Printéir"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:137
+#, fuzzy, c-format
+msgid "Network Computer server"
+msgstr "Cláréadan Gréasán"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Timpeallacht Ghrafach"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Stáisiún KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Stáisiún Gnome"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Deasc"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Deasc Graphaicí Eile"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Uirlisí"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Freastalaí SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "Seirbishí"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Cumraigh Idirlíon"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Cumraíocht Gréasánú"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "Bainteach le hIdirlíon"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "Cumraigh printéir"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Ta earraid ann, níl a fhios agam conas é a cheartú.\n"
+"Lean ort, ar do phriacal féin."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Ag tosnú ar céim `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Suiteáil Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr ""
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Roghnú Grúpa Pacáistí"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr ""
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Méid iomlán: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Pacáiste mícheart"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Leagan: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Méid: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Tábhacht: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr ""
+
+#: steps_gtk.pm:355
+#, fuzzy, c-format
+msgid "due to missing %s"
+msgstr "kdesu ar iarraidh"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr ""
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr ""
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr ""
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr ""
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr ""
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr ""
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr ""
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr ""
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr ""
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Feistiú"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "Roghnú Grúpa Pacáistí"
+
+#: steps_gtk.pm:406
+#, fuzzy, c-format
+msgid "Updating package selection"
+msgstr "Roghnú Grúpa Pacáistí"
+
+#: steps_gtk.pm:411
+#, fuzzy, c-format
+msgid "Minimal install"
+msgstr "Eirigh as Feistiú"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Bainistíocht Bhogearraí"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr ""
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Ag Feistiú"
+
+#: steps_gtk.pm:468
+#, fuzzy, c-format
+msgid "No details"
+msgstr "Sonraí"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Am fagtha "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Ag meastú"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pacáistí"
+msgstr[1] "%d pacáistí"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Coimriú"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Cumraigh"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "not configured"
+msgstr "Cumraigh"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Tharla earráid"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Roghnaigh leagan amach do mhéarchláir."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr ""
+
+#: steps_interactive.pm:128
+#, fuzzy, c-format
+msgid "Install/Upgrade"
+msgstr "Feistiúi/Uadgrádaigh"
+
+#: steps_interactive.pm:129
+#, fuzzy, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Feistigh nó uasgrádaigh ?"
+
+#: steps_interactive.pm:135
+#, fuzzy, c-format
+msgid "Upgrade %s"
+msgstr "Uasgrádaigh"
+
+#: steps_interactive.pm:148
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Ní mar a chéile na pasfhocail"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Ag cumraigh IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Ag curdach do na pacáistí atá ar fáil..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Lód"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Sábháil"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "Lódáil comhad"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr ""
+
+#: steps_interactive.pm:483
+#, fuzzy, c-format
+msgid "Type of install"
+msgstr "Roghnaigh pacáistí a feistiú ..."
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Le X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr ""
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Gach Rud"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Ag Ullmhaigh feistiú"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Ag feistiál pacáiste %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr ""
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Lean ar aghaidh ar aon nós?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Atriail"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Roghnú Grúpa Pacáistí"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Ag feistiál pacáiste %s"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Cumraíocht Iar-feistú"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Leasuithe"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+
+#: steps_interactive.pm:666
+#, fuzzy, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Teip ar glaoch `fork': %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Crua-earraí"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Carta Fuaim"
+
+#: steps_interactive.pm:809
+#, fuzzy, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "An bhfuil ceann eile agat?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Carta Telefís"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Comhéadan grafach"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Gréasán agus Idirlíon"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Ionadaithe"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "cumraithe"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Leibhéal Slándála"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Bac slándála"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr ""
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "díchumasaithe"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Tosú"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s ar %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Ag Ullmhaigh ríomhchlar thosnaithe..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+
+#: steps_interactive.pm:983
+#, fuzzy, c-format
+msgid "Do you want to use aboot?"
+msgstr "Céard a theastaíonn uait a dhéanamh?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Cur isteach diosca folamh sa dioscthiomant %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr ""
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Comhghairdeas"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Atosaigh"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, fuzzy, c-format
+msgid "Generate auto install floppy"
+msgstr "Cruthaigh flapach bootáil"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Athlódaigh"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Uathoibríoch"
+
+#: steps_interactive.pm:1073
+#, fuzzy, c-format
+msgid "Save packages selection"
+msgstr "Roghnú Grúpa Pacáistí"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Roghnaigh do theanga"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Ceadúnas"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Luchóg"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr ""
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Eocharclár"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Slándáil"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr ""
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Formáidiú"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Ag Feistiú"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Deimniú"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Úsáideoirí"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Líonrú"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Clár dúisithe"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Cumraigh X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Coimriú"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Seirbishí"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Leasuithe"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Scoir"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d pacáistí"
+#~ msgstr[1] "%d pacáistí"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pacáistí"
+
+#~ msgid "Language"
+#~ msgstr "Roghnaigh do theanga"
+
+#~ msgid "License"
+#~ msgstr "Ceadúnas"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Roghnaigh rang feistiú"
+
+#~ msgid "Formatting"
+#~ msgstr "Formáidiú"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Roghnaigh pacáistí ..."
+
+#~ msgid "Users"
+#~ msgstr "Úsáideoirí"
+
+#~ msgid "Networking"
+#~ msgstr "Líonrú"
+
+#~ msgid "Configure X"
+#~ msgstr "Cumraigh X"
diff --git a/perl-install/install/share/po/gl.po b/perl-install/install/share/po/gl.po
new file mode 100644
index 000000000..550e21777
--- /dev/null
+++ b/perl-install/install/share/po/gl.po
@@ -0,0 +1,1632 @@
+# translation of DrakX-gl.po to Galician
+# Jesús Bravo Álvarez (mdk) <jba@pobox.com>, 2001.
+# Leandro Regueiro <leandro.regueiro@gmail.com>, 2004, 2005, 2006.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-gl\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2006-09-10 00:29+0100\n"
+"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
+"Language-Team: Galician <<gpul-traduccion@ceu.fi.udc.es>>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: KBabel 1.9.1\n"
+"X-Poedit-Language: Gallegan\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Ten soportes suplementarios adicionais?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Atopáronse os seguintes soportes e vanse usar durante a instalación: %s.\n"
+"\n"
+"\n"
+"Ten algún soporte de instalación suplementario para configurar?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Rede (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Rede (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Rede (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "Cal é o URL do sitio espello?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Contactando co sitio web de Mandriva Linux para obte-la lista de sitios "
+"espello dispoñibles..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Contactando co sitio web de Mandriva Linux para obte-la lista de sitios "
+"espello dispoñibles..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Escolla un sitio espello dende o que obte-los paquetes"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Configuración de NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Introduza o nome de máquina e o directorio do soporte NFS"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, fuzzy, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Cal é o nome de máquina da montaxe NFS?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Directorio"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Non se puido atopar un ficheiro de lista de paquetes neste sitio espello.\n"
+"Asegúrese de que a localización é a correcta."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Buscando os paquetes que xa están instalados..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Eliminando paquetes antes de actualizar..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Buscando paquetes para actualizar..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Seleccionou os seguintes servidores: %s\n"
+"\n"
+"\n"
+"Estes servidores están activados por defecto. Non teñen ningún problema de\n"
+"seguridade coñecido, pero pode ser que se lles atopen algúns. Nese caso,\n"
+"debe asegurarse de actualizar tan rápido como sexa posible.\n"
+"\n"
+"\n"
+"Desexa instalar estes servidores?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Vanse eliminar os seguintes paquetes para poder actualiza-lo seu sistema: %"
+"s\n"
+"\n"
+"\n"
+"Desexa eliminar estes paquetes?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Renomeáronse os seguintes discos:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (chamado anteriormente %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Rede"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Escolla un soporte"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "O ficheiro xa existe. ¿Desexa sobreescribilo?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Permiso denegado"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Nome NFS incorrecto"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "O soporte %s é incorrecto"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Non se pode captura-la pantalla antes de face-las particións"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Poderanse facer capturas de pantalla despois de instalar en %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Instalación"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Configuración"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Tamén debe formatar %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Algún hardware do seu ordenador necesita drivers ``propietarios''\n"
+"para funcionar. Pode atopar máis información sobre eles en: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Activando a rede"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Desactivando a rede"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Descargando o ficheiro %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Copiando"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "debe telo"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "importante"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "moi bo"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "bo"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "indiferente"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Cortalumes Invictus"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, fuzzy, c-format
+msgid "New Theme"
+msgstr "Novo tema para Webmin"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Estación de traballo"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Estación de Traballo de Oficina"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Programas de oficina: procesadores de texto (OpenOffice.org Writer, Kword), "
+"follas de cálculo (OpenOffice.org Calc, Kspread), visualizadores de pdf, etc"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Programas de oficina: procesadores de texto (kword, abiword), follas de "
+"cálculo (kspread, gnumeric), visualizadores de pdf, etc"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Estación de xogos"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Programas de diversión: arcade, taboleiros, estratexia, etc"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Estación multimedia"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Programas de reproducción e edición de son e vídeo"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Estación de Internet"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Conxunto de ferramentas para ler e enviar correo-e e novas (mutt, tin...) e "
+"para navegar pola Web"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Ordenador de Rede (cliente)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Clientes para diferentes protocolos incluíndo ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Ferramentas para facilita-la configuración do ordenador"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Ferramentas de Consola"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editores, shells, ferramentas de ficheiro, terminais"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Desenvolvemento"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr ""
+"Bibliotecas de desenvolvemento de C e C++, programas e ficheiros include"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Documentación"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Libros e Howtos sobre Linux e o Software Libre"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Soporte para aplicacións de terceiros"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Servidor Web"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, fuzzy, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Servidor Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Cortalumes/Encamiñador"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Pasarela de Internet"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Correo/Novas"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Servidor de correo Postfix, servidor de novas Inn"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Servidor de Directorio"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Servidor FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Servidor de Nomes de Dominio e Información de Rede"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Servidor de Compartimento de Impresoras e Ficheiros"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "Servidor NFS, servidor Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Bases de datos"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Servidores de bases de datos PostgreSQL e MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Correo-e"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Servidor de correo Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Servidores de bases de datos PostgreSQL ou MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Servidor de Redes de Ordenadores"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Servidor NFS, servidor SMB, servidor Proxy, servidor ssh"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Ambiente Gráfico"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Estación de Traballo KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"O Ambiente de Escritorio KDE, o ambiente gráfico básico cunha colección de "
+"ferramentas que o acompañan"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Estación de Traballo GNOME"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Un ambiente gráfico cun conxunto de aplicacións amigables e ferramentas de "
+"escritorio"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "Escritorio IceWm"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Outros Escritorios Gráficos"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, etc"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Utilidades"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Servidor SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Servidor de Configuración Remota Webmin"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Monitorización/Utilidades de Rede"
+
+#: share/meta-task/compssUsers.pl:196
+#, fuzzy, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+"Ferramentas de monitorización, accounting de procesos, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Asistentes de Mandriva"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Asistentes para configurar o servidor"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Ocorreu un erro, e o programa non sabe como manexalo de\n"
+"maneira limpa. Continúe baixo a súa propia responsabilidade."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Algúns paquetes importantes non se instalaron correctamente.\n"
+"A unidade de cdrom ou o cdrom están defectuosos.\n"
+"Comprobe o cdrom nun ordenador xa instalado usando\n"
+"\"rpm -qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Chegando ó paso '%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Instalación de Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> entre elementos"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"O seu sistema ten poucos recursos. Pode que teña algún problema\n"
+"ó instalar Mandriva Linux. Se iso acontece, pode intenta-la instalación\n"
+"en modo texto. Para iso, prema 'F1' cando arrinque dende o CDROM,\n"
+"e escriba 'text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Selección de Grupos de Paquetes"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Selección individual de paquetes"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Tamaño total: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Paquete erróneo"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versión: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Tamaño: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Importancia: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Non pode seleccionar/deseleccionar este paquete"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "debido a que falta %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "debido a %s non satisfeitas"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr ""
+
+#: steps_gtk.pm:358
+#, fuzzy, c-format
+msgid "in order to keep %s"
+msgstr "para manter %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Non pode seleccionar este paquete xa que non hai espacio dabondo para "
+"instalalo"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Vanse instala-los seguintes paquetes"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Vanse elimina-los seguintes paquetes"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Este é un paquete obrigatorio, non se pode deseleccionar"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Non pode deseleccionar este paquete. Xa está instalado"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Non pode deseleccionar este paquete. Ten que ser actualizado"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Amosa-los paquetes seleccionados automáticamente"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Instalar"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Cargar/Gardar a selección"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Actualizando a selección de paquetes"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Instalación mínima"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Xestión do Software"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Escolla os paquetes que desexa instalar"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Instalando"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Sen detalles"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Tempo restante "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Estimando"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d paquete"
+msgstr[1] "%d paquetes"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Resumo"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Configurar"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "non configurado"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Atopáronse os seguintes soportes de instalación.\n"
+"Se desexa saltar algún deles, pode deseleccionalo agora."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Ten a opción de copiar os contidos dos CDs ó disco duro antes da "
+"instalación.\n"
+"Esta continuará despois dende o disco duro e os paquetes permanecerán "
+"dispoñibles unha vez que o sistema xa estea instalado."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Copiar CDs enteiros"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Ocorreu un erro"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Escolla a disposición do seu teclado."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Esta é a lista completa dos teclados dispoñibles"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Instalar/Actualizar"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "¿É unha instalación ou unha actualización?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Actualizar %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Clave de cifrado para %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Configurando IDE"
+
+#: steps_interactive.pm:221
+#, fuzzy, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Non hai espacio libre para 1MB de bootstrap! A instalación ha continuar, "
+"pero para arrincar o seu sistema, cómpre crear a partición bootstrap en "
+"DiskDrake."
+
+#: steps_interactive.pm:226
+#, fuzzy, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Cómpre crear a PPC PReP Boot bootstrap ! A "
+"instalación vai continuar, pero para arrincar o sistema, terá que a "
+"partición bootstrap con DiskDrake"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Cambie o CD-ROM!\n"
+"Insira o CD-ROM que teña a etiqueta \"%s\" na unidade e prema Aceptar.\n"
+"Se non o ten, prema Cancelar para omiti-la instalación deste CD-ROM."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Buscando os paquetes dispoñibles..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Elixa cargar ou gardar a selección de paquetes.\n"
+"O formato é o mesmo dos ficheiros xerados por auto_install."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Cargar"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Gardar"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Ficheiro erróneo"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "O tamaño seleccionado é maior có tamaño dispoñible"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Tipo de instalación"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Non seleccionou ningún grupo de paquetes.\n"
+"Seleccione a instalación mínima que desexa:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Con X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Ca documentación básica (¡recomendado!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Todas"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Preparando a instalación"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr ""
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Houbo un erro ó ordena-los paquetes:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "¿Continuar de tódolos xeitos?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Volver tentar"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Garda-la selección de paquetes"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Houbo un erro ó instala-los paquetes:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Configuración trala instalación"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Actualizacións"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Agora pode descargar paquetes actualizados. Estes paquetes\n"
+"actualizáronse despois de que saira a distribución. Poden conter\n"
+"solucións de erros ou de buratos na seguridade.\n"
+"\n"
+"Para descargar estes paquetes, cómpre ter unha conexión á Internet\n"
+"que funcione.\n"
+"\n"
+"Desexa instala-las actualizacións?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"Contactando co sitio espello para obte-la lista dos paquetes dispoñibles..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Non se puido contactar co sitio espello %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Hardware"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Tarxeta de son"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Ten unha tarxeta de son ISA?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Execute \"alsaconf\" ou \"sndconfig\" despois da instalación para configura-"
+"la tarxeta de son"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Non se detectou ningunha tarxeta de son. Execute \"harddrake\" trala "
+"instalación"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Tarxeta de TV"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Interface Gráfica"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Rede & Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxys"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "configurado"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Nivel de Seguridade"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Cortalumes"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "activado"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "desactivado"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Arrinque"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s en %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Non configurou as X. Está seguro de que desexa isto?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Preparando o cargador de arrinque..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Semella ser que ten unha máquina Descoñecida ou de Tempos Prehistóricos, e o "
+"cargador de arrinque yaboot non ha funcionar nela. A instalación vai "
+"continuar, pero ha ter que usar BootX ou algún outro recurso para arrincar a "
+"máquina. O argumento do kernel para o sistema de ficheiros raíz é: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Desexa usar aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Erro ó instalar aboot, \n"
+"desexa probar a forza-la instalación mesmo se iso destrúe a primeira "
+"partición?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Con este nivel de seguridade, o acceso ós ficheiros da partición Windows "
+"está restrinxido ó administrador."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Insira un disquete baleiro na unidade %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Creando un disquete de instalación automática..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Non se completaron algúns dos pasos.\n"
+"\n"
+"Desexa saír agora?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Noraboa"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Reiniciar"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Xerar un disquete de instalación automática"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"A instalación automática pode estar moi automatizada\n"
+"se así se desexa, nese caso tomará o control do disco\n"
+"duro (isto está pensado para a instalación noutro equipo).\n"
+"\n"
+"Pode preferir reproducir outra vez a instalación.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Reproducir"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatizada"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Garda-la selección de paquetes"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Lingua"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licenza"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Rato"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Detección de discos duros"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Clase de instalación"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Teclado"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Seguridade"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Facendo as particións"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Escollendo os paquetes"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Instalando"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Autenticación"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Usuarios"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Rede"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Cargador de Arrinque"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Configura-las X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Resumo"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Servicios"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Actualizacións"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Sair"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d paquete, %d MB)"
+#~ msgstr[1] "(%d paquetes, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d paquetes"
+
+#~ msgid "Language"
+#~ msgstr "Lingua"
+
+#~ msgid "License"
+#~ msgstr "Licenza"
+
+#~ msgid "Installation class"
+#~ msgstr "Clase de instalación"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Estimando"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Escollendo os paquetes"
+
+#~ msgid "Users"
+#~ msgstr "Usuarios"
+
+#~ msgid "Networking"
+#~ msgstr "Rede"
+
+#~ msgid "Configure X"
+#~ msgstr "Configura-las X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Non se puido acceder ós módulos do kernel correspondentes ó seu kernel "
+#~ "(falta o ficheiro %s), isto xeralmente significa que o seu disquete de "
+#~ "arrinque non está sincronizado co soporte de Instalación (cree un novo "
+#~ "disquete de arrinque)"
diff --git a/perl-install/install/share/po/he.po b/perl-install/install/share/po/he.po
new file mode 100644
index 000000000..c10caee8f
--- /dev/null
+++ b/perl-install/install/share/po/he.po
@@ -0,0 +1,1612 @@
+# translation of he.po to Hebrew
+# Copyright (C) 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
+# This file is distributed under the GNU GPL license.
+#
+#
+# Ram Matityahu <linuxfun@email.com>, 2003.
+# nadav mavor <nadav@mavor.com>, 2003.
+# el-cuco <cuco3001@yahoo.com>, 2003.
+# Diego Iastrubni <iastrubn@actcom.co.il>, 2003.
+# dovix <dovix2003@yahoo.com>, 2004, 2005.
+# Itay Flikier <itayff@gmail.com>, 2005.
+# Dotan Kamber <kamberd@yahoo.com>, 2007.
+msgid ""
+msgstr ""
+"Project-Id-Version: he\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-01-30 02:29+0200\n"
+"Last-Translator: Dotan Kamber <kamberd@yahoo.com>\n"
+"Language-Team: Hebrew\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "האם יש לך תקליטורי התקנה נוספים?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"המקורות הבאים נמצאו ויעשה בהם שימוש במהלך ההתקנה: %s.\n"
+"\n"
+"\n"
+"האם יש לך מקורות נוספים להתקנה שברצונך להגדיר?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "תקליטור"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "רשת (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "רשת (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "רשת (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "כתובת URL של אתר המראה?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "על הכתובת להתחיל ב-//:ftp או ב-//:http"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr "מתחבר לאתר מנדריבה לינוקס בכדי לקבל רשימה של אתרי מראה זמינים..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr "כשל בחיבור לאתר מנדריבה לינוקס בכדי לקבל רשימה של אתרי מראה זמינים"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "עליך לבחור את אתר המראה ממנו יורדו החבילות"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "הגדרת NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "נא להזין את שם המארח ואת התיקיה בה נמצא מקור ה-NFS"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "שם המארח חסר"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "על התיקיה להתחיל ב=\"/\""
+
+#: any.pm:284
+#, fuzzy, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "שם המארח של עיגון ה-NFS?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "ספרייה"
+
+#: any.pm:307
+#, fuzzy, c-format
+msgid "Supplementary"
+msgstr "תוספים"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"אין באפשרותי למצוא קובץ המכיל רשימת חבילות במקור זה. עלייך לוודא שהכתובת "
+"תקינה."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "מחפש חבילות שכבר מותקנות..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "מסיר חבילות לפני השדרוג..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "מאתר חבילות שיש לשדרג..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"בחירת החבילות כוללת את השרת(ים) הבא(ים): %s\n"
+"\n"
+"\n"
+"שרתים אלו יופעלו כברירת מחדל. יתכן שאין כרגע בעיות אבטחה ידועות,\n"
+" אך בעיות חדשות עלולות להתגלות מדי פעם. אנו ממליצים על שדרוג תקופתי\n"
+"של תוכנות אלו כדי להגן על המערכת.\n"
+"\n"
+"\n"
+"האם ברצונך להתקין שרתים אלו בשלב זה?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"החבילות הבאות יוסרו כדי לאפשר את עדכון המערכת: %s\n"
+"\n"
+"\n"
+"האם באמת ברצונך להסיר חבילות אלה?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "שמות הכוננ(ים) הבאים שונו:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (השם הקודם הוא %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "רשת"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "עליך לבחור מקור"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "הקובץ כבר קיים. לשכתב?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "הגישה נדחתה"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "שם NFS לא-תקין"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "המקור %s אינו תקין"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "אין אפשרות לשמור תמונות מסך לפני חלוקה למחיצות"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "ניתן למצוא את תמונות המסך אחרי התקנה ב%s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "התקנה"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "הגדרות"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "חובה עליך לפרמט גם את %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"חלק מהחומרה במחשב שלך צריכה מנהלי התקן \"לא חופשיים\" כדי לפעול.\n"
+"אפשר למצוא מידע עליהם ב: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "מאתחל את שירותי הרשת"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "מוריד את שירותי הרשת"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "מוריד קובץ %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "מעתיק מספר חבילות על הכוננים לשימוש עתידי"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "מעתיק את התקליטור לכונן הקשיח"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "חייב להיות"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "חשוב"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "מומלץ מאוד"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "מומלץ"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "לא הכרחי"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "קו מוצרי 2007"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "חומת האש Invictus"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "כיצד להרשם"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "שירותי מנדריבה המקוונים"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "ערכת נושא חדשה"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, fuzzy, c-format
+msgid "Kaspersky"
+msgstr "קספרסקי"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, fuzzy, c-format
+msgid "Skype"
+msgstr "סקייפ"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "תחנת עבודה"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "תחנת עבודה משרדית"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"תוכנות משרד: מעבדי תמלילים (כתבן אופן אופיס, Kword), גיליונות אלקטרונים "
+"(גיליון אופן אופיס, Kspread),מציגי pdf, ועוד"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"תוכנות משרד: מעבדי טקסט (kword, abiword), גיליונות אלקטרונים (kspread, "
+"gnumeric),מציגי pdf, ועוד"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "תחנת עבודה למשחקים"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "תוכנות לבידור: ארקייד, לוח, אסטרטגיה, ועוד"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "תחנת עבודה למולטימדיה"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "תוכנות להשמעה או עריכה של קול ווידאו"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "תחנת עבודה לאינטרנט"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"ערכת כלים לקריאה וכתיבת דוא\"ל וחדשות (pine, mutt, tin..) ולגלישה באינטרנט"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "מחשב רשת (לקוח)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "לקוחות לפרוטוקולים שונים כולל ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "כלי עזר לביצוע הגדרות המחשב שלך"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "כלי מסוף"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "עורכים, מעטפות, כלי קבצים, מסופים"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "פיתוח"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "ספריות פיתוח בC וC++, תוכנות וקבצי include"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "מסמכים"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "ספרים ומדריכים לשימוש בלינוקס ותוכנה חופשית"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "תמיכה בתוכנות צד שלישי. Linux Standard Base"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "שרת איחסון אתרים"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "עבודה בקבוצה"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "שרת Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "חומת אש/נתב"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "הגנת המערכת בעת חיבור לאינטרנט"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "דואר/קבוצות דיון"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "שרת דואר Postfix, שרת קבוצות דיון Inn"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "שרת ספרייה"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "שרת FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "שרת שמות מתחם ומידע רשת"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "שרת שיתוף קבצים ומדפסות"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "שרת NFS, שרת Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "מסדי נתונים"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "שרת מסד נתונים MySQL או PostgreSQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "דואר"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "שרת דואר Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "שרת מסד נתונים MySQL או PostgreSQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "שרת מחשב רשת"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "שרת NFS, שרת SMB, שרת Proxy, שרת ssh"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "סביבה גרפית"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "סביבת העבודה KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "סביבת שולחן עבודה פופולרית וקלה לשימוש עם מגוון יישומים נלווים"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "סביבת העבודה GNOME"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "סביבת שולחן עבודה פופולרית וקלה לשימוש עם מגוון יישומים נלווים"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "שולחן עבודה IceWm"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "סביבות עבודה אחרות"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "סביבות עבודה קלילות כגון Window Maker, Enlightenment, Fvwm, ועוד"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "תוכנות שרות"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "שרת SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "שרת הגדרה תצורה מרחוק Webmin"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "כלי הגדרת וניטור רשת"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "כלי ניטור, בקרת תהליכים, tcpdump , nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "אשפי מנדריבה"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "אשפים להגדרת השרת שלך"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"חלה תקלה, אך איני יודע איך לפתור אותה.\n"
+"המשך הפעולה הינו באחריותך בלבד."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"מספר חבילות חשובות לא הותקנו כראוי.\n"
+"כנראה שיש בעיה בכונן התקליטורים או בתקליטור(י) ההתקנה. יש לבדוק\n"
+"את תקליטור(י) ההתקנה על מחשב מותקן בעזרת \"rpm -qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "נכנס לשלב `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "התקנת מנדריבה לינוקס %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> בין רכיבים"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"המערכת שלך בעלת משאבים נמוכים. במהלךהתקנת מנדריבה לינוקס עלולות להופיע\n"
+"בעיות. במקרה שכזה, ניתן להתקין בעזרת ממשק טקסטואלי. להתקנה טקסטואלית יש \n"
+"ללחוץ על מקש F1 כאשר מאתחלים מהתקליטור ולהכניס 'text' בשורת הפקודה."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "בחירת קבוצת חבילות לפי נושא"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "בחירת חבילות באופן פרטני"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "גודל כללי: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "חבילה פגומה"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "גרסה: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "גודל: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "חשיבות: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "אי אפשר לבחור/לבטל את החבילה הזו"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "בגלל שחסר %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "עקב תלות שלא מולאה %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "מנסה לקדם %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "בכדי לשמור %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "אי אפשר לבחור בחבילה זו מכיוון שלא נותר מספיק מקום פנוי להתקינה"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "החבילות הבאות עומדות להיות מותקנות"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "החבילות הבאות עומדות להיות מוסרות"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "זוהי חבילה בסיסית, אי אפשר לבטל את בחירתה"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "אין אפשרות לבטל חבילה זו מכיוון שהיא כבר מותקנת"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "לא ניתן לבטל את בחירת חבילה זו, חובה לשדרג אותה"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "הראה חבילות שנבחרו באופן אוטומטי"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "התקנה"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "טעינת/שמירת אזור נבחר"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "עדכון בחירת חבילות"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "התקנה מינימלית"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "תוכנות"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "עליך לבחור את החבילות שברצונך להתקין:"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "מתקין"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "ללא פרטים"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "זמן נותר "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "נותרו"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d חבילות"
+msgstr[1] "%d חבילות"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "סיכום ובדיקת הגדרות"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "הגדרות"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "לא מוגדר"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"מקורות התוכנה הבאים זמינים להתקנה.\n"
+"באפשרותך לדלג על חלק מהמקורות על ידי ביטול הסימונים המתאימים."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"ניתן להעתיק את תכולת התקליטורים לכונן הקשיח לפני תחילת ההתקנה.\n"
+"אם אפשרות זו מופעלת, ההתקנה תמשיך מהכונן הקשיח, וכל החבילות מתקליטורי ההתקנה "
+"יהיו זמינות אחרי סיום ההתקנה מהכונן הקשיח."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "העתקת תקליטורים שלמים"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "חלה שגיאה"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "בשלב זה עליך להגדיר את פריסת המקלדת שלך:"
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "להלן הרשימה המלאה של המדפסות הזמינות"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "התקנה/עדכון"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "האם זו התקנה או שידרוג?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "שידרוג %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "מפתח הצפנה עבור %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "מגדיר IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"לא נמצא מקום פנוי עבור bootstrap בגודל 1MB! ההתקנה תמשיך, אבל בכדי לאתחל את "
+"המערכת שלך, יהיה עליך ליצור מחיצת bootstrap באופן ידני בעזרת DiskDrake"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"עליך ליצור PPC PReP Boot bootstrap! ההתקנה תמשיך, אבל בכדי לאתחל את המערכת "
+"יהיה עליך ליצור מחיצת bootstrap באופן ידני בעזרת DiskDrak "
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"יש להחליף תקליטור!\n"
+"\n"
+"עליך להכניס את התקליטור \"%s\" לכונן\n"
+"ולאחר מכן ללחוץ על כפתור \"אישור\". אם תקליטור זה אינו ברשותך,\n"
+"עליך ללחוץ על כפתור \"ביטול\" בכדי לדלג על התקנת חבילות אלו."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "מחפש חבילות זמינות..."
+
+#: steps_interactive.pm:349
+#, fuzzy, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr "למערכת שלך לא נותר די מקום להתקנה או שדרוג (%dMB > %dMB)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"עליך לבחור באם לטעון או לשמור את בחירת החבילות.\n"
+"מבנה הקובץ זהה לקובץ auto_install הנוצר באופן אוטומטי."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "הספק"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "שמור"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "קובץ לא-תקין"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "הגודל הנבחר גדול יותר מהמקום הזמין"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "סוג ההתקנה"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"לא נבחרה אף קבוצה של חבילות.\n"
+"נא לבחור את ההתקנה המינימלית שברצונך לבצע:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "עם סביבה גרפית (X)"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "עם מסמכים בסיסיים (מומלץ!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "התקנה מינימלית אמיתית (בייחוד לא urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "הכל"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "מכין את ההתקנה"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "מתקין חבילה %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "התרחשה שגיאה בסידור חבילות:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "האם להמשיך בכל מקרה?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "ניסיון נוסף"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "דלג על חבילה זו"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "דלג על כל החבילות ממקור \"%s\""
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "חזרה לבחירת מקורות וחבילות"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "חלה שגיאה בהתקנת החבילה %s"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "מבצע הגדרות לאחר-התקנה"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "נא לודא שהמקור לעידכונים בכונן %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "עדכונים"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"שלב זה מאפשר לך להוריד ולהתקין חבילות עדכון. חבילות אלה עודכנו לאחר שחרור "
+"ההפצה,\n"
+"ועשויות להכיל עדכוני אבטחה ו/או עדכוני תוכנה חשובים.\n"
+"\n"
+"להורדת חבילות אלה נדרש חיבור אינטרנט עובד. האם ברצונך לעדכן את המערכת בשלב "
+"זה ?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "מתחבר לאתר המראה כדי לקבל את רשימת החבילות הזמינות..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "לא יכול להתחבר לאתר המראה %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "חומרה"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "כרטיס קול"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "האם יש לך כרטיס קול ISA?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"עליך להריץ את \"alsaconf\" או \"sndconfig\" אחרי ההתקנה בכדי להגדיר את כרטיס "
+"הקול שלך"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "לא זוהו כרטיסי קול. יש לנסות את האשף \"harddrake\" לאחר ההתקנה"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "כרטיס טלוויזיה"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "ממשק גרפי"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "רשת ואינטרנט"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "שרתים מתווכים"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "מוגדר"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "סף האבטחה המבוקש:"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "חומת אש"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "פועל"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "מנותק"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "אתחול"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s על %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "לא הוגדר ממשק גרפי (X). האם אכן ברצונך לבחור אפשרות זו?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "מכין את מנהל האתחול..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"נראה כי יש לך מכונת OldWorld או מכונה לא מזוהה, טוען המערכת yaboot לא יעבוד "
+"במקרה זה. ההתקנה תמשך אבל יהיה עליך להשתמש ב-BootX או באמצעי אחר לאתחול "
+"המערכת. משנה גלעין המערכת למערכת קבצי השורש הוא: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "האם ברצונך להשתמש בaboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"שגיאה בהתקנת aboot,\n"
+"האם לנסות לאלץ את ההתקנה אפילו אם המחיצה הראשונה עלולה להיהרס?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr "ברמת אבטחה זו, גישה לקבצים במחיצת החלונות תתאפשר רק למנהל המערכת."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "נא להכניס תקליטון ריק לכונן %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "יוצר תקליטון הפעלה אוטומטית..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"חלק מהשלבים לא הושלמו.\n"
+"\n"
+"האם באמת ברצונך לצאת עכשיו?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "ברכותינו!"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "הפעלה מחדש"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "בניית תקליטון הפעלה אוטומטית"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"יש באפשרותך לבצע התקנות חוזרות באופן אוטומטי לחלוטין.\n"
+"במקרה זה יימחק כל תוכן הכונן הקשיח!!\n"
+"תכונה זו שימושית להתקנת המערכת על מספר רב של מחשבים.\n"
+"\n"
+"באם אינך רוצה במחיקת כל תוכן הכונן הקשיח יש לבחור במנגנון שחזור ההתקנה.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "שחזור התקנה"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "אוטומטי"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "שמירת בחירת החבילות"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "בחירת שפה"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "הסכם משתמש"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "עכבר"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "זיהוי כונן קשיח"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "סוג התקנה"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "מקלדת"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "הגדרות אבטחה"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "חלוקה למחיצות"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "מאתחל"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "בחירת חבילות"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "מתקין"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "אימות"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "משתמשים"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "עבודה ברשת"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "מנהל אתחול"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "הגדרת X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "סיכום ובדיקת הגדרות"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "שרותים"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "עדכונים"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "יציאה"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d חבילות"
+#~ msgstr[1] "%d חבילות"
+
+#~ msgid "%d packages"
+#~ msgstr "%d חבילות"
+
+#~ msgid "Language"
+#~ msgstr "בחירת שפה"
+
+#~ msgid "License"
+#~ msgstr "הסכם משתמש"
+
+#~ msgid "Installation class"
+#~ msgstr "סוג התקנה"
+
+#~ msgid "Formatting"
+#~ msgstr "מאתחל"
+
+#~ msgid "Choosing packages"
+#~ msgstr "בחירת חבילות"
+
+#~ msgid "Users"
+#~ msgstr "משתמשים"
+
+#~ msgid "Networking"
+#~ msgstr "עבודה ברשת"
+
+#~ msgid "Configure X"
+#~ msgstr "הגדרת X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "אין באפשרותי למצוא את מודולי הקרנל המתאימים לקרנל שלך (הקובץ %s חסר). "
+#~ "הסיבה לכך נובעת בדרך כלל מתקליטון אתחול שאינו מותאם למדיית ההתקנה (עליך "
+#~ "ליצור תקליטון אתחול חדש)"
diff --git a/perl-install/install/share/po/hi.po b/perl-install/install/share/po/hi.po
new file mode 100644
index 000000000..f1252e2db
--- /dev/null
+++ b/perl-install/install/share/po/hi.po
@@ -0,0 +1,1609 @@
+# translation of DrakX-hi.po to हिन्दी, भारत (Hindi, India)
+# Copyright (C) 2003,2004 Free Software Foundation, Inc.
+# धनञ्जय शर्मा (Dhananjaya Sharma) <dysxhi@yahoo.co.in>, 2003, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-hi\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2004-04-04 21:54+0530\n"
+"Last-Translator: धनञ्जय शर्मा (Dhananjaya Sharma) <dysxhi@yahoo.co.in>\n"
+"Language-Team: हिन्दी (Hindi) <dysxhi@yahoo.co.in>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3\n"
+"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "कया आपके पास एक और है ?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "सीडी-रॉम"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "%s नेटवर्क"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "%s नेटवर्क"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"उपलब्ध मिररों की सूची को प्राप्त करने के लिए मैनड्रिव लिनक्स वेब-स्थल से सम्पर्क किया जा "
+"रहा है..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"उपलब्ध मिररों की सूची को प्राप्त करने के लिए मैनड्रिव लिनक्स वेब-स्थल से सम्पर्क किया जा "
+"रहा है..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "एक मिरर का चयन करें जहाँ से पैकेजों को प्राप्त करना है"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "डिरेक्ट्री"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "%s को %s पर नहीं पाया जा सका"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "पहिले से संसाधित पैकेजों को देखा जा रहा है..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "उन्नयन के लिये पैकेजों को खोजा जा रहा है..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"आपने निम्नलिखित सर्वर(सर्वरो) का चयन किया है: %s\n"
+"\n"
+"\n"
+"इन सर्वरों को डिफ़ाल्ट के तौर पर सक्रिय किया जाता है । इनमें कोई ज्ञात सुरक्षा-संबंधी खामी "
+"नहीं है,\n"
+"परन्तु कुछ नये दोष मिल सकते है । ऐसी अवस्था में, अति शीघ्र-से-शीघ्र\n"
+"जितना सम्भव हो, आप उनन्यन कर लें।\n"
+"\n"
+"\n"
+"क्या आप वास्तव में इन सर्वरों को संसाधित करना चाहते है?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"आपके तंत्र को अपग्रेड करने के लिए निम्नलिखित पैकेजों को हटाना होगा: %s\n"
+"\n"
+"\n"
+"क्या वास्तव में इन पैकेजों को हटाना चाहते है?\n"
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "निम्नलिखित पैकेजों का संसाधन करना आवश्यक है:\n"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "एचटीटीपी"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "एफटीपी"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "एनएफ़एस"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "नेटवर्क"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "कृपया चयन करें"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "फाईल पहले से है पुन बनाएँ"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "अनुमति नहीं है"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "%s माध्यम को जोड़ा गया"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "विभाजनीकरण के पूर्व स्क्रीन-चित्र-माला को नहीं लिया जा सकता है"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "%s में संसाधन के उपरान्त स्क्रीन चित्र-माला उपलब्ध होगी"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "संसाधन हो रहा है"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "संरचना"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "आपको %s को भी एकसार करना चाहिए"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"आपके कम्प्यूटर पर स्थित कुछ हार्डवेयरों कार्य करने के लिए ``स्वामिक'' चालकों की आवश्यकता है "
+"।\n"
+"आप इनके बारे में कुछ सूचना उपरोक्त पर पा सकते है: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "नेटवर्क को लाया जा रहा है"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "नेटवर्क को लाया जा रहा है"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "संचिकायें प्रेषित की जा रही..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "खोज जारी है"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "होना चाहिए"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "महत्वपूर्ण"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "बहुत अच्छा"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "बहुत अच्छा"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "हो सकता है"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "ग्वेनव्यू"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "ड्रैक वीपीएन"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "कार्यकेंद्र"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "ऑफ़िस कार्यकेन्द्र"
+
+#: share/meta-task/compssUsers.pl:27
+#, fuzzy, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"ऑफ़िस के कार्यक्रम: शब्दसंसाधक (केवर्ड, आबीवर्ड), स्प्रेडशीट (केस्प्रेड, जीन्यूमेरिक), पीडीएफ़ "
+"अवलोक्क, इत्यादि"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"ऑफ़िस के कार्यक्रम: शब्दसंसाधक (केवर्ड, आबीवर्ड), स्प्रेडशीट (केस्प्रेड, जीन्यूमेरिक), पीडीएफ़ "
+"अवलोक्क, इत्यादि"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "खेल स्टेशन"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "मनोरंजक कार्यक्रम: आरकेड, बोर्ड, व्यूह-रचना, इत्यादि "
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "मल्टीमीडीया केन्द्र"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "ध्वनि और वीडीयो के खेलने वाले/संपादन करने वाले कार्यक्रम"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "इन्टरनेट केन्द्र"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"विपत्र और समाचारों को पढ़ने और भेजने के लिए (मट, टिन...) और वेब को ब्राउज़ करने के लिए "
+"औज़ारों का समूह"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "नेटवर्क कम्प्यूटर (ग्राहक)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "एस०एस०एच० को शामिल करते हुए विभिन्न प्रोटोकॉलों के लिए ग्राहक"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "आपके कम्प्यूटर की संरचना कार्य को सहज बनाने हेतु अनेक औजार"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "कन्सोल के औज़ार"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "अनेकों संपादक, कोश, संचिका औजार, टर्मिनल"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "विकास"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "सी और सी++ विकास लेखागार, कार्यक्रम और इन्क्लूड संचिकायें"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "प्रलेखन"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "लिनक्स और मुक्त सॉफ़्टवेयर पर किताबें और कैसे-करेंअस्तकें"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "एल०एस०बी०"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "लिनक्स मानकीकरण आधार ! त्रितीय पक्ष कार्यक्रमों को समर्थन"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "वेब सर्वर"
+
+#: share/meta-task/compssUsers.pl:85
+#, fuzzy, c-format
+msgid "Apache"
+msgstr "रास्ता"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "ग्रुपवेयर"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "कोलाब सर्वर"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "अग्नि-भीतिका/रूटर"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "इन्टरनेट गेटवे"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/संचिका (F)/नवीन (_N)"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "पोस्टफ़िक्स विपत्र सर्वर"
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "निर्देशिका जिससे पुनःस्थापन करना है"
+
+#: share/meta-task/compssUsers.pl:104
+#, fuzzy, c-format
+msgid "FTP Server"
+msgstr "एन०टी०पी० सर्वर"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, fuzzy, c-format
+msgid "DNS/NIS"
+msgstr "डीएनएस"
+
+#: share/meta-task/compssUsers.pl:109
+#, fuzzy, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "डोमेन नाम सर्वर"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "प्रिंटर सर्वर"
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "सॉबा सर्वर"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "डाटाबेस"
+
+#: share/meta-task/compssUsers.pl:117
+#, fuzzy, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "पोस्टग्रीसीक्यूअल या माईसीक्यूअल डाटाबेस सर्वर"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "वेब/एफ़०टी०पी०"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "आपाचे, प्रो-एफ़०टी०पी०डी०"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "विपत्र"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "पोस्टफ़िक्स विपत्र सर्वर"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "पोस्टग्रीसीक्यूअल या माईसीक्यूअल डाटाबेस सर्वर"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "नेटवर्क कम्प्यूटर सर्वर"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "एन०एफ़०एस० सर्वर, एस०एम०बी० सर्वर, प्रोक्सी सर्वर, एस०एस०एच० सर्वर"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "सचित्र वातावरण"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "केडीई कार्यकेन्द्र"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "के डेस्कटाप वातावरण, मूलभूत सचित्र वातावरणसंलग्न औजारों के एक समूह के साथ"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "गनोम कार्यकेन्द्र"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"एक सचित्र वातावरण, उपयोगकर्ता-मित्रवत कार्यक्रमों के समुच्चय और डेस्कटाप औजारों के साथ"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "डेस्कटाप"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "अन्य सचित्र डेस्कटाप"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "आईसीडब्लूएम, विण्डो मेकर, एनलाइटमेन्ट, एफ़वीडब्लूएम, इत्यादि"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "यूटिलिटीज़"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "एसएसएच सर्वर"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "वेबकैम"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "टर्मिनल सर्वर संरचना"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "नेटवर्क मॉनीट्रिंग"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "<b>मैनड्रिव स्टोर</b>"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "\"%s\" प्रिंटर की संरचना में असफ़ल !"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"एक त्रुटि उत्पन्न हो गयी है, परन्तु मुझे ज्ञात नहीं है कि इसे भली-भांति किस प्रकार से ठीक "
+"किया जायें ।\n"
+"अपने जोखिम पर जारी रहें । "
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"कुछ महत्वपूर्ण पैकेज भलीभांति संसाधित नहीं हो पायें । \n"
+"या तो आपकी सीडीरॉम-ड्राइव या फ़िर आपकी सीडीरॉम खराब है ।\n"
+"एक संसाधित कम्प्यूटर पर \"rpm -qpl media/main/*.rpm\" निर्देश का उपयोग करके, "
+"सीडीरॉम की जाँच करें।\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "`%s' चरण में प्रवेश \n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "मैनड्रिव लिनक्स संसाधन %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> इकाईयों के मध्य "
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"आपका सिस्टम साधनों के अभाव से ग्रसित है । मैनड्रिव लिनक्स को संसाधित करने में, \n"
+"आपको कुछ समस्या हो सकती है । यदि ऐसा होता है, तो आप इसके बजाय एक पाठ-संसाधनको करके "
+"देख सकते है, ऐसा करने के लिए, \n"
+"सीडीरॉम से बूट होने के समय `F1' को दबायें, और फ़िर `text' को इन्टर करें ।"
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "पैकेज समूह चयन"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "अलग-अलग पैकेजों का चयन"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "कुल आकार: %d / %d एम०बी०"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "निकृष्ट पैकेज"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "संस्मरण: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "आकार:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d केबी\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "महत्ता: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "आप इस पैकज को चयनित/अचयनित नहीं कर सकते है"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "%s विलुप्त होने के कारण"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "असन्तुष्ट %s के कारण"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "%s को प्रोत्साहित करने का प्रयास"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "%s को रखने के लिए"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "आप इस पैकज का चयन नहीं कर सकते है क्योंकि और अधिक स्थान संसाधन के लिए नहीं बचा है"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "निम्नलिखित पैकजों का संसाधन होने जा रहा है"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "निम्नलिखित पैकेजों को हटाया जाने वाला है"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "यह एक अति आवश्यक पैकेज है, इसे अचयनित नहीं किया जा सकता है"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "आप इस पैकेज को अचयनित नहीं कर सकते है । इसे पहिले से ही संसाधित किया जा चुका है"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "इस पैकज को अचयनित नहीं करा जा सकता है । इसे उन्नयन किया जाना चाहिए"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "स्वतः चयनित पैकेजों को दिखायें"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "संसाधन"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "पैकेज चयन"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "चयनित पैकेजों का उन्नयन किया जा रहा है"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "निम्नतम संसाधन"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "सॉफ़्टवेयर प्रबंधक"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "उन पैकेजों का चयन करें जिन्हें आप संसाधित करना चाहते है"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "संसाधन हो रहा है"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "कोई विवरण नहीं"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "शेष समय"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "अनुमान लगाया जा रहा है"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d पैकेज"
+msgstr[1] "%d पैकेज"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "सारांश"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "संरचना"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "संरचित नहीं"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "एक त्रुटि हो गयी है"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "कृपया अपने की-बोर्ड खाका का चयन करें ।"
+
+#: steps_interactive.pm:99
+#, fuzzy, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "यह है उपलब्ध देशों की सम्पूर्ण सूची"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "संसाधन/उन्नयन"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "यह एक संसाधन या एक उन्नयन है?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "उन्नयन %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "%s के लिए गूढ़लिखित कुँजी"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "आई०डी०ई०"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "आईडीई की संरचना की जा रही है"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"१ एमबी बूटस्ट्रैप के लिए कोई मुक्त स्थान नहीं ! संसाधन जारी रहेगा, परन्तु आपके तंत्र को बूट "
+"करने के लिए, आपको डिस्कड्रैक से एक बूटस्ट्रैप विभाजन का निर्माण करना होगा "
+
+#: steps_interactive.pm:226
+#, fuzzy, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"१ एमबी बूटस्ट्रैप के लिए कोई मुक्त स्थान नहीं ! संसाधन जारी रहेगा, परन्तु आपके तंत्र को बूट "
+"करने के लिए, आपको डिस्कड्रैक से एक बूटस्ट्रैप विभाजन का निर्माण करना होगा "
+
+#: steps_interactive.pm:318
+#, fuzzy, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"अपनी सीडी-रॉम को परिवर्तित करें !\n"
+"\n"
+"कृपया \"%s\" लेबिल वाली सीडी-रॉम को अपनी ड्राइव में डालें और डालने के उपरान्त ठीक को "
+"दबायें ठीक को दबायें ।\n"
+"यदि आपके पास यह नहीं है, तो इस सीडी-रॉम से संसाधन ना करने के लिए निरस्त को दबायें ।"
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "उपलब्ध पैकेजों को खोज़ा जा रहा है..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"कृपया चयन करें कि फ़्लापी पर पैकेजों को अधिभारण या सुरक्षित किया जायें ।\n"
+"इसका प्रारूप स्वतः_संसाधन के लिए निर्मित फ़्लापियों की भांति होता है ।"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "लोड"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "सुरक्षित"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "फ़ाइल लोड करें"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "चयनित आकार उपलब्ध स्थान से ज्यादा है"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "संसाधन का प्रकार"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"आपने पैकेजों के किसी भी समूह का चयन नहीं किया है ।\n"
+"कृपया कम-से-कम जितना आप चाहते है उतने संसाधन का चयन करें:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "एक्स के साथ"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "आधार-भूत प्रलेखन के साथ (संस्तुति की जाती है !)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "वास्तविक निम्नत्तम संसाधन (विशेषकर कोई यू०आर०पी०एम०आई० नहीं)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "सभी"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "संसाधन का निर्माण किया जा रहा है"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "%s पैकेज का संसाधन हो रहा है"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "पैकेजों के आदेश देने में एक त्रुटि हो गयी है:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "कुछ भी हो जारी रहा जायें?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "पैकेजों के चयन को सुरक्षित करें"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "पैकेजों के संसाधन में एक त्रुटि हो गयी है:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "संसाधन-उपरान्त संरचना"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "उन्नयन"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"आपको अब अपडेट किये हुए पैकेजों को डॉउनलोड करने का अवसर है । इन पैकेजों को\n"
+"इस वितरण के विमोचन के उपरान्त अपडेट किया गया है । इनमें सुरक्षा या\n"
+"दोष-निवारण पैबंद हो सकते है । \n"
+"\n"
+"इन पैकेजों को डॉउनलोड करने हेतु, आपको एक कार्यशील इन्टरनेट संबंध की \n"
+"आवश्यकता होगी।\n"
+"\n"
+"क्या आप इन अपडेटों को संसाधित करना चाहते है ?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "उपलब्ध पैकेजों की सूची प्राप्त करने के लिए मिरर से सम्पर्क स्थापित किया जा रहा है..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "%s मिरर प्रणाली से संबंध स्थापित करने में असमर्थ"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "हार्डवेयर"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "सांउड कार्ड"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "क्या आपके पास एक आई०एस०ऐ० सांउड कार्ड है?"
+
+#: steps_interactive.pm:811
+#, fuzzy, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr "संसाधन के उपरान्त \"sndconfig\" को अपने साउण्ड कार्ड को संरचित करने के लिए चलायें"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"कोई साउण्ड कार्ड नहीं खोजा जा सका । संसाधन के उपरान्त \"harddrake\" को उपयोग करके देखें"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "टीवी कार्ड"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "सचित्र इन्टरफ़ेस"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "नेटवर्क और इन्टरनेट"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "प्रोक्सियां"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "संरचित"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "सुरक्षा स्तर"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "अग्नि-भीतिका"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "सक्रिय है"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "निष्क्रिय"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "बूट"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s पर %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "आपने एक्स को संरचित नहीं किया है । क्या आप वास्तव में ऐसा चाहते है?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "बूटलोडर को तैयार किया जा रहा है..."
+
+#: steps_interactive.pm:977
+#, fuzzy, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"आपके पास लगता है कि एक प्राचीन जगत की या अज्ञात मशीन है,\n"
+"याबूट बूटलोडर आपके लिए कार्य नहीं करेगा ।\n"
+"संसाधन जारी रहेगा, परन्तु आपको अपनी मशीन को बूट करने के लिए, \n"
+"बूट-एक्स या किसी अन्य साधन की आवश्यकता होगी"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "क्या आप ऐबूट का का उपयोग करना चाहते है?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"एक बूट को संसाधित करने में त्रुटि, \n"
+"संसाधन को बलपूर्वक करने का प्रयास करे, चाहे कि प्रथम विभाजन नष्ट हो जायें?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr "इस सुरक्षा स्तर में, विण्डो विभाजन में संचिकाओं तक पहुँच सिर्फ़ प्रबंधक को हीप्राप्त है।"
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "%s में एक खाली फ़्लापी डालें"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "स्वतः संसाधन फ़्लापी का निर्माण किया जा रहा है..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"कुछ चरण सम्पूर्ण नहीं हुए है । \n"
+"\n"
+"क्या आप वास्तव में बाहर निकलना चाहते है?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "बधाई हो"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "रीबूट"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "स्वतः संसाधान फ़्लापी का निर्माण किया जा रहा है"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"यदि आवश्यकता हो तो स्वतः संसाधन को पूर्णतया स्वचालित बनाया जा सकता है,\n"
+"ऐसी अवस्था में यह हार्ड ड्राइव पर पूर्ण अधिकार कर लेगा !!\n"
+"(यह समान संसाधन को अन्य मशीन पर संसाधित करने के लिए होता है)।\n"
+"\n"
+"आप हो सकता है कि संसाधन को रीप्ले करन चाहते हो।\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "पुनः चलाना"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "स्वचालित"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "पैकेजों के चयन को सुरक्षित करें"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "भाषा"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "प्रमाण-पत्र"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "माउस"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "हार्ड ड्राइव खोज"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "की-बोर्ड"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "सुरक्षा"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "विभाजनीकरण"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "संसाधन हो रहा है"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "प्रमाणीकरण"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "उपयोगकर्ताओ"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "नेटवर्किंग"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "बूटलोडर"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "एक्स को संरचित करें"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "सारांश"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "सेवायें"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "उन्नयन"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "निकास"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d पैकेज"
+#~ msgstr[1] "%d पैकेज"
+
+#~ msgid "%d packages"
+#~ msgstr "%d पैकेज"
+
+#~ msgid "Language"
+#~ msgstr "भाषा"
+
+#~ msgid "License"
+#~ msgstr "प्रमाण-पत्र"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "संसाधन प्रकार का चयन करें"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "अनुमान लगाया जा रहा है"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "संसाधन करने हेतु पैकेजों का चयन करें"
+
+#~ msgid "Users"
+#~ msgstr "उपयोगकर्ताओ"
+
+#~ msgid "Networking"
+#~ msgstr "नेटवर्किंग"
+
+#~ msgid "Configure X"
+#~ msgstr "एक्स को संरचित करें"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "आपके कर्नल के अनुरूप कर्नल मॉडयूलो तक नहीं पहुँचा जा सकता है ( %s संचिका विलुप्त है),"
+#~ "इसका सामान्यता अर्थ है कि आपकी बूट फ़्लापी संसाधन माध्यम के साथ ताल-बद्व नहीं है(कृपया "
+#~ "एक और नयी बूट फ़्लापी का निर्माण करें)"
diff --git a/perl-install/install/share/po/hr.po b/perl-install/install/share/po/hr.po
new file mode 100644
index 000000000..30a704ce5
--- /dev/null
+++ b/perl-install/install/share/po/hr.po
@@ -0,0 +1,1612 @@
+# Translation of DrakX to Croatian
+# Copyright (C) Croatian team
+# Translators: Danijel Studen <dstuden@vuka.hr>,Denis Lackovic <delacko@fly.srk.fer.hr>,Jerko Škifić <skific@riteh.hr>,Ljubomir Božić <ljubo108@vip.hr>,Nikola Planinac <>,Robert Vuković <robi@surfer.hr>,Sasa Poznanovic <sasa.poznanovic@vuka.hr>,Vedran Vyroubal <vedran.vyroubal@inet.hr>,Vinko Prelac <vinko@buka.hr>,Vlatko Kosturjak <kost@linux.hr>,Zoran Jankovic <zoran.jankovic@inet.hr>,
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX 0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2005-01-04 21:25+CET\n"
+"Last-Translator: auto\n"
+"Language-Team: Croatian <lokalizacija@linux.hr>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: TransDict server\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;;\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Da li imate još koji?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "Mreža"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "Mreža"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Kontaktiram Mandriva Linux web site za dobivanje popisa raspoloživih mirrora"
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Kontaktiram Mandriva Linux web site za dobivanje popisa raspoloživih mirrora"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Izaberite mirror sa kojeg želite skinuti pakete"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Direktorij"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Ne mogu otvoriti %s: %s\n"
+
+#: any.pm:376
+#, fuzzy, c-format
+msgid "Looking at packages already installed..."
+msgstr "Ne možete odznačiti ovaj paket budući da je već instaliran"
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Tražim pakete koje mogu nadograditi"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, fuzzy, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Izabrali ste slijedeće poslužitelje: %s\n"
+"\n"
+"\n"
+"Ti poslužitelji biti će postavljeno aktivirani. Oni nemaju poznatih "
+"sigurnosnih\n"
+"propusta, ali neki novi mogu biti pronađeni. U tom slučaju, morate ga "
+"nadograditi\n"
+"što prije moguće.\n"
+"\n"
+"\n"
+"Da li zaista želite instalirati te poslužitelje?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Slijedeći paketi će biti instalirani"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, fuzzy, c-format
+msgid "NFS"
+msgstr "FS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Mreža"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "Molim odaberite"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Datoteka već postoji. Da li da nju upotrijebim?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Pristup odbijen"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "dodan medij %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Ne mogu napraviti screenshotove prije particioniranja"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Screenshotovi će biti raspoloživi poslije instalaciju u %s"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Instaliram"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Postavke"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Morate također formatirati %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Neki hardware na vašem računalu treba ``vlasničke'' upravljačke programe\n"
+"kako bi proradio. Možete naći više informaciju o tome na: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Podižem mrežu"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Onemogućujem mrežu"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "Šaljem datoteke..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "detektiran na portu %s"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "potrebno"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "važno"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "vrlo lijepo"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "lijepo"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "možda"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr ""
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Radna stanica"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Uredska radna stanica"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Uredski programi: tekst procesori (OpenOffice.org Writer, Kword), tablični "
+"kalkulatori (OpenOffice.org Calc, Kspread), pdf preglednici, itd"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Uredski programi: tekst procesori (kword, abiword), tablični kalkulatori "
+"(kspread, gnumeric), pdf preglednici, itd"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Igračka radna stanica"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Zabavni programi: arkade, ploče, strategije, itd"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimedijska stanica"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Zvučni i video svirački/uređivački programi"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internet stanica"
+
+#: share/meta-task/compssUsers.pl:44
+#, fuzzy, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Pribor alata za čitanje i slanje mail-a i news-a (pine, mutt, tin..) i za "
+"pregled Web-a"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Mrežno računalo (klijent)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Klijenti za razne protokole uključujući ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Alati za lako podešavanje vašeg računala"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Konzolni Alati"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Uređivači, ljuske, datotečni alati, terminali"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Razvoj"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C i C++ razvojne biblioteke, programi i uključujuće datoteke"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentacija"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Knjige i Howto-i o Linux-u i slobodnom software-u"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Posljužitelj weba"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, fuzzy, c-format
+msgid "Kolab Server"
+msgstr "NIS Poslužitelj"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Vatrozid/Ruter"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internet gateway"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/Datoteka/_Nova"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix mail poslužitelj, Inn news poslužitelj"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Poslužitelj imenika"
+
+#: share/meta-task/compssUsers.pl:104
+#, fuzzy, c-format
+msgid "FTP Server"
+msgstr "NTP Poslužitelj"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, fuzzy, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS "
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Ime Domene i Mrežni Informacijki Poslužitelj (NIS)"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Ispisni poslužitelj"
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "NIS Poslužitelj"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Baza podataka"
+
+#: share/meta-task/compssUsers.pl:117
+#, fuzzy, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL ili MySQL poslužitelj baza"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache i Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Pošta"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix poslužitelj pošte"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL ili MySQL poslužitelj baza"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Mrežni računalni poslužitelj"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS poslužitelj, SMB poslužitelj, Proxy poslužitelj, SSH poslužitelj"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Grafičko Okružje"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE radna stanica"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K Radno Okružje, osnovno grafičko okružje sa kolekcijom pripadajućih alata"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Gnome radna stanica"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Grafička okružja sa korisnički prijateljskim skupom aplikacija i alatima za "
+"radno okružje"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Radna površina"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Druga grafička radna okružja"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, itd"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Pomoćni programi"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, fuzzy, c-format
+msgid "SSH Server"
+msgstr "NIS Poslužitelj"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "Servisi"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Prebaci postavke pisača"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Mrežne postavke"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva Linux Kontrolni Centar"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "Podešavam pisač \"%s\" ..."
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Dogodila se greška, ali neznam kako s njom lijepo rukovati.\n"
+"Nastavite dalje na vlastiti rizik."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Neki važni paketi nisu se instalirali pravilno.\n"
+"Ili je vaš cdrom pogon ili cd medij u defektu.\n"
+"Provjerite cdrom na instaliranom računalu koristeći \"rpm -qpl media/main/*."
+"rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Pokrećem korak `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux instalacija %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> između elemenata"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Vaš sustav je slab na resursima. Možete imati nekih problem prilikom\n"
+"instalacije Mandriva Linux-a. Ukoliko se to desi, možete probati tekstualnu\n"
+"instalaciju. Za to, pritisnite `F1' kada podižete CDROM, i unesite `text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Odabir grupe paketa"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Individualan odabir paketa"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Ukupna veličina: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Loš paket"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Inačica: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Veličina: "
+
+#: steps_gtk.pm:316
+#, fuzzy, c-format
+msgid "%d KB\n"
+msgstr "Veličina: %d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Značaj: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Ne možete označiti/odznačiti ovaj paket"
+
+#: steps_gtk.pm:355
+#, fuzzy, c-format
+msgid "due to missing %s"
+msgstr "kdesu nedostaje"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "zbog nezadovoljavajućeg %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "odabirem %s izabiranjem datoteka"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "kako bi se zadržalo %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Ne možete označiti ovaj paket budući da nema dovoljno mjesta gdje ga se može "
+"instalirati"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Slijedeći paketi će biti instalirani"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Slijedeći paketi će biti uklonjeni"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Budući da je ovo obvezni paket ne možete ga odznačiti"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Ne možete odznačiti ovaj paket budući da je već instaliran"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Ne možete odznačiti ovaj paket budući da ga treba nadograditi"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Prikaži automatski odabrane pakete"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Instaliraj"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "Premjesti označeno"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Dograđujem izbor paketa"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimalna instalacija"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Upravitelj Softwareom"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Odaberite pakete koje želite instalirati"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Instaliram"
+
+#: steps_gtk.pm:468
+#, fuzzy, c-format
+msgid "No details"
+msgstr "Detalji"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Preostalo vrijeme"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Procjenjujem"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d paketa"
+msgstr[1] "%d paketa"
+msgstr[2] "%d paketa"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Sažetak"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Podešavanje"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "not configured"
+msgstr "ponovno postavi"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Pojavila se greška"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Molim, izaberite raspored tipkovnice."
+
+#: steps_interactive.pm:99
+#, fuzzy, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Ovdje je cijeli popis raspoloživih tipkovnica"
+
+#: steps_interactive.pm:128
+#, fuzzy, c-format
+msgid "Install/Upgrade"
+msgstr "Instaliraj/Nadogradi"
+
+#: steps_interactive.pm:129
+#, fuzzy, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Da li je ovo instalacija ili nadogradnja?"
+
+#: steps_interactive.pm:135
+#, fuzzy, c-format
+msgid "Upgrade %s"
+msgstr "Dogradnja"
+
+#: steps_interactive.pm:148
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Enkripcijski ključ"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Podešavam IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Nema slobodnog mjesta za 1 MB bootstrap! Instalacija će nastaviti, ali za "
+"podizanje vašeg sustava, trebati ćete napraviti bootstrap particiju u "
+"DiskDrake-u"
+
+#: steps_interactive.pm:226
+#, fuzzy, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Nema slobodnog mjesta za 1 MB bootstrap! Instalacija će nastaviti, ali za "
+"podizanje vašeg sustava, trebati ćete napraviti bootstrap particiju u "
+"DiskDrake-u"
+
+#: steps_interactive.pm:318
+#, fuzzy, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Promjenite vaš Cd-Rom!\n"
+"\n"
+"Ubacite Cd-Rom označen \"%s\" u vaš pogon i pritisnite U redu kada "
+"završite.\n"
+"Ukoliko ga nemate, pritisnite Odustani kako bi izbjegli instalaciju sa ovog "
+"Cd-Rom-a."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Tražim dostupne pakete"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Molimo izaberite učitivanje ili spremanje izbora paketa na disketu.\n"
+"Format je isto kao auto_install napravljene diskete."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Učitaj"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Spremi"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "Učitaj datoteku"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Izabrana veličina je veća nego raspoloživ prostor"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Tip instalacije"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Niste izabrali niti jednu grupu paketa\n"
+"Izaberite minimalnu instalaciju ako želite"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Sa X-ima"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Sa osnovnom dokumentacijom (preporučeno!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Stvarno malena instalacija (posebice bez urpmia)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Sve"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Pripremam instalaciju"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Instaliram paket %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Javila se greška prilikom sortiranja paketa:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Da ipak nastavim?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Spremi odabir paketa"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Pojavila se greška kod instalacije paketa:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Postava nakon instalacije"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Nadogradnje"
+
+#: steps_interactive.pm:639
+#, fuzzy, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Imate mogućnost skidanja (downloada) paketa za dogradnju koji su\n"
+"izašli poslije nego što je distribucija postala raspoloživa.\n"
+"\n"
+"Dobit ćete sigurnosne popravke i popravke od grešaka, ali za nastavak\n"
+"trebate imati podešenu Internet vezu.\n"
+"\n"
+"Da li želite instalirati dogradnju?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Spajam se na mirror kako bih pribavio popis dostupnih paketa"
+
+#: steps_interactive.pm:666
+#, fuzzy, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Ne mogu napraviti fork: %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Sklopovlje"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Zvučna kartica"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Da li imate ISA zvučnu karticu?"
+
+#: steps_interactive.pm:811
+#, fuzzy, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Pokrenite \"sndconfig\" poslije instalacije za podešavanje vaše zvučne "
+"kartice"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Nije pronađena zvučna kartica. Probajte \"harddrake\" poslije instalacije"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV kartica"
+
+#: steps_interactive.pm:833
+#, fuzzy, c-format
+msgid "Graphical interface"
+msgstr "X kod pokretanja sustava"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Mreža i Internet"
+
+#: steps_interactive.pm:851
+#, fuzzy, c-format
+msgid "Proxies"
+msgstr "Profil: "
+
+#: steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "configured"
+msgstr "ponovno postavi"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Sigurnosna Razina"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Vatrozid"
+
+#: steps_interactive.pm:880
+#, fuzzy, c-format
+msgid "activated"
+msgstr "Aktiviraj sada"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "onemogućeno"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Pokretani sustav"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s na %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Pripremam bootloader"
+
+#: steps_interactive.pm:977
+#, fuzzy, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Čini se da imate OldWorld ili Nepoznato\n"
+" računalo, yaboot bootloader neće moći raditi kod vas.\n"
+"Instalacija će nastaviti, ali ćete morati\n"
+" koristiti BootX da podignete vaše računalo"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Da li želite koristiti aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Greška prilikom instalacije aboot-a, \n"
+"probati nasilno instalirati iako to može uništiti prvu particiju?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Umetnite praznu disketu u pogon %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Pravim auto instalacijsku disketu"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Niste završili sve korake.\n"
+"\n"
+"Želite li zaista završiti?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Čestitamo, pobijedili ste!"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Ponovno pokretanje sustava"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Napravi auto instalacijsku disketu"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Auto instalacija može biti potpuno automatska ukoliko želite,\n"
+"u tom slučaju će preuzeti hard disk!!\n"
+"(ovo znači za instalaciju na drugo računalo).\n"
+"\n"
+"Možete preferirati da ponovite instalaciju.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Ponovi"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatski"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Spremi odabir paketa"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Jezik"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licenca"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Miš"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Otkrivanje hard diskova"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Tipkovnica"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Sigurnost"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Particioniranje"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Instaliram"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Provjera autentičnosti"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Korisnici"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Mreža"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Program za pokretanje sustava"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Podesi X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Sažetak"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Servisi"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Nadogradnje"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Izađi"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d paketa"
+#~ msgstr[1] "%d paketa"
+#~ msgstr[2] "%d paketa"
+
+#~ msgid "%d packages"
+#~ msgstr "%d paketa"
+
+#~ msgid "Language"
+#~ msgstr "Jezik"
+
+#~ msgid "License"
+#~ msgstr "Licenca"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Odaberite razred instalacije"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Procjenjujem"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Izabir instaliranih paketa"
+
+#~ msgid "Users"
+#~ msgstr "Korisnici"
+
+#~ msgid "Networking"
+#~ msgstr "Mreža"
+
+#~ msgid "Configure X"
+#~ msgstr "Podesi X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Ne mogu pristupiti kernel modulima koji odgovaraju vašem kernelu "
+#~ "(datoteka %s nedostaje), ovo obično znači da vaša disketa za dizanje "
+#~ "sustava nije usklađena sainstalacijskim medijem (napravite noviju boot "
+#~ "disketu)"
diff --git a/perl-install/install/share/po/hu.po b/perl-install/install/share/po/hu.po
new file mode 100644
index 000000000..36ef5f7a5
--- /dev/null
+++ b/perl-install/install/share/po/hu.po
@@ -0,0 +1,1651 @@
+# translation of DrakX to Hungarian
+# Copyright (C) 2000-2001,2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+#
+# Emese Kovacs <emese@gnome.hu>, 2000-2001.
+# Arpad Biro <biro_arpad@yahoo.com>, 2000, 2003, 2004, 2005, 2006, 2007.
+# Tamas Szanto <tszanto@mol.hu>, 2001.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-hu\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-03-10 13:05+0100\n"
+"Last-Translator: Arpad Biro <biro_arpad@yahoo.com>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Van további kiegészítő adathordozója?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"A telepítő a következő adathordozókat találta - ezeket fogja használni a "
+"telepítéshez: %s.\n"
+"\n"
+"\n"
+"Van beállítandó kiegészítő telepítési adathordozója?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Hálózat (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Hálózat (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Hálózat (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "A tükörkiszolgáló címe?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "Az URL-nek ftp:// vagy http:// előtaggal kell kezdődnie"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Kapcsolódás a Mandriva Linux webkiszolgálójához; az elérhető "
+"tükörkiszolgálók listájának lekérdezése..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Nem sikerült lekérdezni az elérhető tükörkiszolgálók listáját a Mandriva "
+"Linux webkiszolgálójától"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Válasszon tükörkiszolgálót, ahonnan letölti a csomagokat"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "NFS-beállítás"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Adja meg az NFS-adathordozó gépnevét és könyvtárát"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Gépnév hiányzik"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "A könyvtárnak \"/\" jellel kell kezdődnie"
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Az NFS-csatolás gépneve?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Könyvtár"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Kiegészítő"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "A tükörkiszolgálón nem található fejléclista"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "A már telepített csomagok vizsgálata..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Csomagok eltávolítása a frissítés előtt..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "A frissítendő csomagok keresése..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"A következő kiszolgálóprogramo(ka)t választotta ki: %s\n"
+"\n"
+"\n"
+"Ezek alapértelmezésben aktiválva lesznek. Nem tartozik hozzájuk ismert\n"
+"biztonsági probléma, de később ismertté válhatnak újak. Ha ez bekövetkezik,\n"
+"akkor frissítést kell végezni minél hamarabb.\n"
+"\n"
+"\n"
+"Biztosan telepíteni szeretné a kiszolgálóprogramo(ka)t?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"A rendszerfrissítés érdekében a következő csomagok el lesznek távolítva: %s\n"
+"\n"
+"\n"
+"Szeretné eltávolítani ezeket a csomagokat?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "A következő lemezek át lettek nevezve:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (korábbi név: %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Hálózat"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Válasszon egy adatforrást"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "A fájl már létezik. Felülírja?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Hozzáférés megtagadva"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Helytelen NFS-név"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "\"%s\": hibás adatforrás"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Partícionálás előtt nem készíthetők képernyőfelvételek"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "A képernyőfelvételek a telepítés után itt lesznek elérhetők: %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Telepítés"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Beállítás"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Meg kell formázni ezt is: %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"A gép bizonyos hardverelemei speciális meghajtóprogramot igényelnek.\n"
+"Ezekről itt található információ: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "A hálózatkezelés elindítása"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "A hálózatkezelés leállítása"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "%s fájl letöltése..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Bizonyos csomagok lemezre másolása későbbi használatra"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Másolás folyamatban"
+
+# The "Importance" ratings:
+# 5: "must have"
+# 4: "important"
+# 3: "very nice"
+# 2: "nice"
+# 1: "maybe"
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "nagyon fontos"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "fontos"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "erősen ajánlott"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "ajánlott"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "opcionális"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "2007-es termékvonal"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Invictus tűzfal"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery - telepítés nélküli mód"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "A regisztrálás módja"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva Online-szolgáltatások"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Új téma"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Munkaállomás"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Irodai munkaállomás"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Irodai programok: szövegszerkesztők (OpenOffice.org Writer, KWord), "
+"táblázatkezelők (OpenOffice.org Calc, KSpread), PDF-megjelenítők, ..."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Irodai programok: szövegszerkesztők (KWord, AbiWord), táblázatkezelők "
+"(KSpread, Gnumeric), PDF-nézegetők, ..."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Játékgép"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Játékprogramok: lövöldözős, táblás, stratégiai, ..."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimédiás munkaállomás"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Lejátszó- és szerkesztőprogramok hang- és videóanyagokhoz"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internetes munkaállomás"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Eszközök levelezéshez, hírkezeléshez (mutt, tin, ...) és a web böngészéséhez"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Hálózati számítógép (kliens)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Kliensprogramok különféle protokollokhoz (például: ssh)"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Segédprogramok a számítógép beállításához"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Parancssori eszközök"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Szövegszerkesztők, parancsértelmezők, fájlkezelők, terminálprogramok"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Fejlesztés"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C/C++ fejlesztőkönyvtárak, programok és include-fájlok"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentáció"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Könyvek és HOGYAN-ok a Linuxról és a szabad szoftverekről"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Külső társaságok alkalmazásainak támogatása."
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Webkiszolgáló"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Csoportmunka-alkalmazás"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab-kiszolgáló"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Tűzfal/útválasztó (router)"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internet-átjáró"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Levelezés/hírek"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix email-kiszolgáló, Inn hírkiszolgáló"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Címtárkiszolgáló"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP-kiszolgáló"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "DNS- és NIS-kiszolgáló"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Fájl- és nyomtatómegosztási kiszolgáló"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS-kiszolgáló, Samba-kiszolgáló"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Adatbázis"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL és MySQL adatbázis-kiszolgáló"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Levelezés"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix email-kiszolgáló"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL vagy MySQL adatbázis-kiszolgáló"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Kiszolgáló hálózati számítógépekhez"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS-, SMB-, proxy- és SSH-kiszolgáló"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Grafikus környezet"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE-munkaállomás"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"A K Desktop Environment - az alapvető grafikus környezet - az ahhoz tartozó "
+"eszközökkel együtt"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME-munkaállomás"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Grafikus környezet felhasználóbarát alkalmazásokkal és segédprogramokkal"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm-munkaasztal"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Más grafikus környezetek"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "WindowMaker, Enlightenment, Fvwm, ..."
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Segédprogramok"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH-kiszolgáló"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin kiszolgáló távoli beállításhoz"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Hálózati programok/hálózatfigyelés"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Figyelőeszközök, folyamatszámlázás, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva-varázslók"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Varázslók a kiszolgáló beállítására"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Hiba történt, de nem lett megfelelően lekezelve.\n"
+"Csak akkor lépjen tovább, ha biztos abban, hogy ez nem fog gondot okozni."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Néhány fontos csomag telepítése nem sikerült.\n"
+"Ez azt jelenti, hogy a CD-meghajtó vagy a CD hibás.\n"
+"A CD-t egy, már feltelepített gépen a következő\n"
+"parancs segítségével tesztelheti le:\n"
+"\"rpm -qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "A következő lépés: \"%s\"\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux-telepítés %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt+Tab> lépegetés"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"A rendszer gyenge erőforrásokkal rendelkezik. Előfordulhat, hogy problémái\n"
+"lesznek a Mandriva Linux telepítésével. Ha így történik, próbálkozzon\n"
+"szöveges módú telepítéssel: CD-ről való rendszerindítást követően nyomjon\n"
+"\"F1\"-et, majd írja be azt, hogy \"text\"."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Csomag-csoportok kiválasztása"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Csomagok egyedi kiválasztása"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Összméret: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Hibás csomag"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Verzió: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Méret: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Fontosság: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Ez a csomag nem jelölhető ki illetve nem törölhető a kijelölése"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "\"%s\" hiánya miatt"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "\"%s\" igényei miatt"
+
+# Francois Pons:
+# This is a message saying that a package is removed (or unselected) because the
+# dependency resolution algorithm needed to remove (or unselect) it when it tried
+# to promote a provide (a package name or property) with a better version, but it
+# failed.
+# "promote": It is a term used to say promotion of a provides (promoting perl for
+# example, is trying to find the best package providing perl and select it).
+# "%s" stands for the property being promoted, generally a simple name.
+# This is not really a failure message but an informative message. It has nothing
+# to do with failure in the sense of the application unable to continue. Urpmi
+# continues by not selecting a package which was selected by a promotion (not
+# asked by the user directly but caused by a package which has been upgraded thus
+# breaking existing packages, the promotion concerns this).
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "a legalkalmasabb \"%s\" keresése"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "\"%s\" megtartása érdekében"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Nem választhatja ki ezt a csomagot, mert nincs elég hely a merevlemezen."
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "A telepítő a következő csomagokat fogja telepíteni:"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "A telepítő a következő csomagokat távolítja el:"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Ez egy kötelező csomag, nem lehet megszüntetni a kijelölését"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Nem törölhető ennek a csomagnak a kijelölése, mert már telepítve van"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr ""
+"Nem törölheti ennek a csomagnak a kijelölését. Ez a csomag frissítendő."
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Automatikusan kijelölt csomagok mutatása"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Telepítés"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Kijelölés betöltése/mentése"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "A csomagkiválasztás frissítése"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimális telepítés"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Szoftverkezelés"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Válassza ki a telepítendő csomagokat"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Telepítés"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Részletek nélkül"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Hátralevő idő "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Becslés..."
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d csomag"
+msgstr[1] "%d csomag"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Összefoglalás"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Beállítás"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "nincs beállítva"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"A rendszer a következő telepítési adathordozókat találta.\n"
+"Ha szeretné kihagyni valamelyiket, távolítsa el annak kijelölését."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Lehetősége van arra, hogy a CD-k tartalmát lemásolja a merevlemezre a "
+"telepítés előtt.\n"
+"Ez esetben a telepítés a merevlemezről folytatódik, és annak végeztével a "
+"csomagok elérhetők maradnak."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Teljes CD-k másolása"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Hiba lépett fel"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Válasszon billentyűzetkiosztást."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Itt található az elérhető billentyűzetek listája"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Telepítés/frissítés"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Új telepítés vagy frissítés?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Frissítés: %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Titkosítási kulcs ehhez: %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE-beállítások"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Nincs elég szabad hely az 1 MB-os betöltőprogramnak. A telepítés "
+"folytatható, de a rendszer indításához létre kell hozni egy rendszerindító "
+"partíciót a DiskDrake-kel."
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Létre kell hozni egy PPC PReP rendszerindítót. A telepítés folytatódik, de a "
+"rendszer indításához létre kell hozni a rendszerindítási partíciót a "
+"DiskDrake-kel."
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Cserélje ki a CD-t a meghajtóban.\n"
+"Tegye be a(z) \"%s\" feliratú lemezt, és nyomja meg az \"OK\" gombot.\n"
+"Ha nincs ilyen lemeze, akkor nyomja meg a \"Mégsem\" gombot, így erről a CD-"
+"ről nem történik telepítés."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "A rendelkezésre álló csomagok keresése..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"A rendszerben nincs elegendő szabad hely a telepítéshez illetve frissítéshez "
+"(%d MB > %d MB)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Válasszon egy funkciót annak megfelelően, hogy betölteni kíván egy\n"
+"csomagkijelölést vagy a jelenlegi kijelölést szeretné elmenteni.\n"
+"A formátum ugyanaz, mint az automatikus telepítési fájloknál."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Terhelés"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Mentés"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Hibás fájl"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "A kijelölt összméret nagyobb, mint a rendelkezésre álló hely"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "A telepítés típusa"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Egyetlen csomagcsoportot sem jelölt ki.\n"
+"Válassza ki, milyen fajta minimális telepítést szeretne."
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "X-szel együtt"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Alapvető dokumentációval (javasolt)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Valóban minimális telepítés (urpmi sincs)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Mind"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "A telepítés előkészítése"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "%s csomag telepítése"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Hiba történt a csomagok rendezésekor:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Kívánja folytatni ettől függetlenül?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Újra"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "Ezen csomag kihagyása"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "A(z) \"%s\" adathordozón levő összes csomag kihagyása"
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "Visszalépés az adathordozó- és csomagválasztáshoz"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "Hiba történt a(z) %s csomag telepítésekor."
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Telepítés utáni beállítások"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+"Tegye be a frissítési modulokat tartalmazó adathordozót a(z) \"%s\" "
+"meghajtóba"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Frissítések"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Lehetősége van arra, hogy letöltse a disztribúció kiadása után frissített\n"
+"csomagokat. Ez általában biztonsági javításokat és hibajavításokat jelent.\n"
+"\n"
+"A funkció használatához szükség van egy beállított internetkapcsolatra.\n"
+"\n"
+"Szeretné feltelepíteni a frissítéseket?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"Kapcsolatfelvétel a tükörkiszolgálóval; az elérhető csomagok listájának "
+"letöltése..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Nem sikerült kapcsolódni ehhez a tükörkiszolgálóhoz: %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Hardver"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Hangkártya"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Van ISA hangkártyája?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"A hangkártya beállításához futtassa az \"alsaconf\" vagy az \"sndconfig\" "
+"programot a telepítés után."
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"A telepítő nem talált hangkártyát. Futtassa a \"harddrake\" programot a "
+"telepítés után."
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Tévékártya"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Grafikus felület"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Hálózat és internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxyk"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "beállítva"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Biztonsági szint"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Tűzfal"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "aktiválva"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "kikapcsolva"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Rendszerindítás"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s ezen: %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Az X grafikus rendszert nem állította be. Biztosan megfelel így?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Rendszerbetöltő előkészítése..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"A gép típusa feltehetően OldWorld vagy ismeretlen, ezért a Yaboot "
+"rendszerindító program nem fog működni. A telepítés folytatódik, de a gép "
+"indításához BootX-re vagy egyéb módszerre lesz szükség. A gyökér-"
+"fájlrendszer kernelparamétere: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Szeretné az aboot-ot használni?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Hiba az aboot telepítésekor.\n"
+"Próbáljam újra a telepítést akkor is, ha ez esetleg tönkreteszi az első\n"
+"partíciót?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Ezen a biztonsági szinten csak a rendszergazda érheti el a windowsos "
+"partíción levő fájlokat."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Tegyen egy üres floppyt a(z) \"%s\" meghajtóba"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Automatikus telepítőfloppy készítése..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"A telepítés nem teljes, mivel egyes lépések kimaradtak.\n"
+"\n"
+"Biztos, hogy ki akar lépni?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Gratulálunk"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Újraindítás"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Automatikus telepítőfloppy készítése"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Az automatikus telepítés akár teljesen automatikus is lehet,\n"
+"ebben az esetben az egész merevlemez tartalmát módosíthatja.\n"
+"Elsősorban akkor ajánlott, ha másik gépre is telepíteni kívánja\n"
+"a rendszert.\n"
+"\n"
+"Lehetőség van a telepítés újrajátszására is.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Újrajátszás"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatikus"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Csomagösszeállítás mentése"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Nyelv"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licenc"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Egér"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Merevlemez keresése"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Telepítési osztály"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Billentyűzet"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Biztonság"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Partícionálás"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Formázás"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Csomagok kiválasztása"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Telepítés"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Felhasználóazonosítás"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Felhasználók"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Hálózat"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Rendszerbetöltő"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Az X beállítása"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Összefoglalás"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Szolgáltatások"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Frissítések"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Kilépés"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d csomag, %d MB)"
+#~ msgstr[1] "(%d csomag, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d csomag"
+
+#~ msgid "Language"
+#~ msgstr "Nyelv"
+
+#~ msgid "License"
+#~ msgstr "Licenc"
+
+#~ msgid "Installation class"
+#~ msgstr "Telepítési osztály"
+
+#~ msgid "Formatting"
+#~ msgstr "Formázás"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Csomagok kiválasztása"
+
+#~ msgid "Users"
+#~ msgstr "Felhasználók"
+
+#~ msgid "Networking"
+#~ msgstr "Hálózat"
+
+#~ msgid "Configure X"
+#~ msgstr "Az X beállítása"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Nem érhetők el a megfelelő kernelmodulok (hiányzó fájl: %s). Ez általában "
+#~ "azt jelenti, hogy az indítólemez nincs összhangban a telepítési "
+#~ "médiummal. Készítsen egy újabb indítólemezt."
diff --git a/perl-install/install/share/po/id.po b/perl-install/install/share/po/id.po
new file mode 100644
index 000000000..44da535f2
--- /dev/null
+++ b/perl-install/install/share/po/id.po
@@ -0,0 +1,1628 @@
+# Instalator Grafis Mandriva Linux
+# Copyright (C) 1999 Mandriva
+# Budi Rachmanto <rac@mandrivalinux.org>, 2001-2003
+# Linux Indonesia <http://www.linux.or.id>, 1999-2001
+# Mohammad DAMT <mdamt@cdl2000.com>, 1999-2001
+# Andy <chandy@indo.net.id>, 1999
+# Kelana <nk@telkom.net>, 1999
+# Willy Sudiarto Raharjo <willysr@gmail.com>, 2004 - 2005.
+# Erwien Samantha <erwiensamantha@gmail.com>, 2005.
+# Bayu Artanto <bayuart@yahoo.com>, 2005.
+# Ahmad Ramadhana <ahmad_ramadhana@yahoo.com.sg>, 2005.
+# Firdaus <dausnux@gmail.com>, 2005.
+# Sofian <sofianhanafi@yahoo.com>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX 0.1\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-01-17 15:49+0700\n"
+"Last-Translator: Willy Sudiarto Raharjo <willysr@gmail.com>\n"
+"Language-Team: Indonesia <mdk-id@yahoogroups.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.6\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Apakah Anda memiliki media tambahan lagi?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Media berikut ditemukan dan akan digunakan selama installasi: %s.\n"
+"\n"
+"\n"
+"Apakah Anda memiliki media installasi tambahan untuk dikonfigurasi?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Jaringan (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Jaringan (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Jaringan (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL dari mirror?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "URL harus diawali dengan ftp:// atau http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr "Menghubungi situs Mandriva Linux untuk mengambil daftar mirror..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Gagal menghubungi situs Mandriva Linux untuk mengambil daftar mirror yang "
+"tersedia"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Pilih mirror tempat Anda ingin mengambil paket"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Setup NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Harap masukkan nama host dan direktori dari media NFS Anda"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Nama host tidak ada"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "Direktori harus dimulai dengan \"/\""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Nama host dari mount NFS ?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Direktori"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Tambahan"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Tidak dapat menemukan file daftar paket pada mirror ini. Pastikan lokasinya "
+"benar."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Mencari paket yang sudah terinstall..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Menghapus paket-paket sebelum upgrade..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Mencari paket untuk diupgrade..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Anda telah memilih server berikut: %s\n"
+"\n"
+"\n"
+"Server ini aktif secara default. Mereka tidak memiliki masalah keamanan,\n"
+"tetapi bisa saja ditemukan. Pada kasus tersebut, Anda harus memastikan\n"
+"untuk melakukan upgrade secepat mungkin.\n"
+"\n"
+"\n"
+"Apakah Anda hendak menginstall server ini?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Paket berikut akan dihapus agar sistem Anda dapat di-upgrade: %s\n"
+"\n"
+"\n"
+"Apakah Anda ingin menghapus paket tersebut?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Disk berikut telah diubah namanya:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (sebelumnya bernama %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "HFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Jaringan"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Silahkan pilih media"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "File sudah ada. Timpa file ini ?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Izin ditolak"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Nama NFS yang salah"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Media rusak %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Tidak bisa membuat screenshot sebelum buat partisi"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Screenshot akan tersedia setelah installasi pada %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Installasi"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Konfigurasi"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Anda juga harus memformat %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Beberapa perangkat keras pada komputer Anda memerlukan driver \n"
+"``proprietary'' agar bekerja. Anda bisa mencarinya pada : %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Mengaktifkan jaringan"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Menonaktifkan jaringan"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Mendownload file %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Menyalin beberapa paket pada disk untuk kebutuhan di masa depan"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Penyalinan sedang berjalan"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "harus ada"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "penting"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "amat bagus"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "bagus"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "mungkin"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "Jajaran produk 2007"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Firewall Invictus"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Mode Discovery Live"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Bagaimana mendaftarkan diri"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Layanan Online Mandriva"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Tema baru"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Workstation"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Workstation Kantor"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Program office: pengolah kata (OpenOffice.org Writer, Kword), spreadsheet "
+"(OpenOffice.org Calc, Kspread), viewer pdf, dll"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Program office: pengolah kata (kword, abiword), spreadsheet (kspread, "
+"gnumeric), viewer pdf, dll"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Komputer Game"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Program hiburan: arcade, papan, strategi, dll"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Komputer Multimedia"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Program untuk memainkan/mengedit suara dan video"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Komputer Internet"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Kumpulan perkakas untuk membaca dan mengirimkan email dan berita (pine, "
+"mutt, tin..) dan untuk menjelajah Web"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Komputer Jaringan (klien)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Klien untuk berbagai protokol, termasuk ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Perkakas untuk mempermudah konfigurasi komputer Anda."
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Perkakas konsol"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editor, shell, perkakas file, terminal"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Pengembangan"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Pustaka, program, dan file include untuk pengembangan C dan C++"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentasi"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Buku dan Howto untuk Linux dan Free Software"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Dukungan aplikasi pihak ketiga"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Server Web"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Server Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Firewall/Router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Gateway Internet"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Mail/Berita"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Server mail Postfix, server berita Inn"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Server Direktori"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Server FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Nama Domain dan Network Information Server"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Server Sharing File dan Printer"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "Server NFS, server Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Basis Data"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Server Basis Data PostgreSQL dan MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Mail"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Server mail Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Server basis data PostgreSQL atau MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Komputer Server Jaringan"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "server NFS, SMB, Proxy, dan SSH"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Mode Grafis"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Workstation KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K Desktop Environment, lingkungan grafis dasar dengan kumpulan perkakas yang "
+"menyertainya"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Workstation Gnome"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Lingkungan grafis dengan kumpulan aplikasi dan perkakas desktop yang ramah "
+"pengguna"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "Desktop IceWm"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Desktop Grafis lainnya"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, dsb"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Utilitas"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Server SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Server Konfigurasi Remote Webmin"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Utilitas Jaringan/Pengawasan"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Perkakas pengawasan, akuntasi proses, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Wizard Mandriva"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Wizard untuk mengkonfigurasi server"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Terjadi kesalahan, tetapi tidak diketahui cara mengatasinya dengan baik.\n"
+"Lanjutkan dengan resiko ditanggung sendiri."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Beberapa paket penting tidak terinstall dengan benar.\n"
+"Mungkin drive cdrom atau cdromnya yang rusak.\n"
+"Periksa cdrom pada komputer yang sudah terinstal dengan\n"
+"perintah \"rpm -qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Memasuki langkah `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Installasi Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> antar elemen"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Sumber daya sistem Anda rendah. Anda akan mengalami kesulitan\n"
+"menginstall Mandriva Linux. Jika terjadi, Anda bisa mencoba\n"
+"installasi berbasis teks. Untuk melakukannya, tekan `F1' saat\n"
+"booting pada CDROM, lalu ketikkan `text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Pilihan Grup Paket"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Pilih paket individu"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Ukuran total: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Paket rusak"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versi: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Ukuran: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Tingkat kepentingan: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Anda tidak bisa memilih/tidak memilih paket ini"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "karena %s hilang"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "karena %s tidak terpenuhi"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "mencoba mempromosikan %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "untuk menjaga %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Anda tidak bisa memilih paket ini karena tidak ada ruang kosong yang tersisa"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Paket berikut akan diinstal"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Paket berikut akan dihapus"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Ini merupakan paket wajib, tidak bisa dibuang"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Anda tidak bisa tidak memilih paket ini. Ia sudah terinstall"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Anda tidak bisa tidak memilih paket. Paket harus diupgrade"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Tunjukkan paket yang sudah dipilih secara otomatis"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Instal"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Pilihan Muat/Simpan"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Mengupdate pilihan paket"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Installasi minimal"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Manajemen Perangkat Lunak"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Pilih paket yang akan diinstal"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Menginstall"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Tanpa Detail"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Sisa waktu"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Memperkirakan"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d paket"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Ringkasan"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Konfigurasikan"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "tidak dikonfigurasikan"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Media installasi berikut ditemukan. Jika Anda ingin\n"
+"melewati beberapa, Anda bisa tidak memilihnya sekarang."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Anda memiliki opsi untuk menyalin isi CD pada hard disk sebelum installasi. "
+"Proses akan dilanjutkan dari hard disk dan paket akantetap tersedia setelah "
+"sistem terinstall."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Salin seluruh CD"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Terjadi kesalahan"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Pilih layout keyboard Anda."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Berikut daftar keyboard yang tersedia"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Instal/Upgrade"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Installasi atau upgrade?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Upgrade %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Kunci enkripsi untuk %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Mengkonfigurasi IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Tidak ada ruang 1MB untuk bootstrap! Installasi akan dilanjutkan, tetapi "
+"untuk boot sistem, Anda perlu membuat partisi bootstrap pada DiskDrake"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Anda harus membuat PPC PReP Boot bootstrap! Installasi akan dilanjutkan, "
+"tetapi untuk boot sistem, Anda perlu membuat partisi bootstrap pada DiskDrake"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Ganti Cd-Rom Anda!\n"
+"\n"
+"Masukkan Cd-Rom berlabel \"%s\" pada drive dan tekan Ok. Jika Anda tidak \n"
+"punya, tekan Batal untuk menghindari installasi dari Cd-Rom ini."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Mencari paket yang tersedia..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"Sistem Anda tidak memilih ruang kosong yang cukup untuk installasi atau "
+"upgrade (%dMB > %dMB)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Pilih muat atau simpan pilihan paket.\n"
+"Formatnya sama dengan file auto_install."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Beban"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Simpan"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "File rusak"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Ukuran terpilih melebihi ruang yang ada"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Tipe installasi"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Anda belum memilih grup paket.\n"
+"Pilih installasi minimal yang Anda inginkan:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Dengan X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Dengan dokumentasi dasar (disarankan!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Installasi minimal sesungguhnya (khususnya tanpa urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Semua"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Mempersiapkan installasi"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Menginstall paket %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Terdapat kesalahan pengurutan paket:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Lanjutkan?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Ulang kembali"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "Lewati paket ini"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "Lewati semua paket-paket dari media \"%s\""
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "Kembali pada media dan pemilihan paket"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "Terdapat kesalahan penginstallan paket %s."
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Konfigurasi pasca installasi"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "Harap pastikan media Update Modul pada drive %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Update"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Anda kini memiliki kesempatan untuk mendownload paket update. Paket ini\n"
+"telah diupdate setelah distribusi dirilis. Paket mungkin berisi perbaikan\n"
+"keamanan atau kesalahan.\n"
+"\n"
+"Untuk mendownload paket, Anda perlu koneksi Internet.\n"
+"\n"
+"Apakah Anda ingin menginstall update?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Menghubungi mirror untuk mendapatkan daftar paket yang tersedia..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Tidak dapat menghubungi mirror %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Perangkat Keras"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Kartu suara"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Apakah Anda memiliki kartu suara ISA?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Jalankan \"sndconfig\" atau \"sndconfig\" setelah installasi untuk "
+"mengkonfigurasi kartu suara Anda"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Tidak ada kartu suara yang terdeteksi. Coba \"harddrake\" setelah installasi"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Kartu TV"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Antarmuka grafis"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Jaringan & Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxy "
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "terkonfigurasi"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Tingkat Keamanan"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Firewall"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "telah diaktifkan"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "telah dinonaktifkan"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Boot"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s pada %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Anda belum mengkonfigurasi X. Apakah Anda yakin?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Mempersiapkan bootloader..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Nampaknya Anda memiliki komputer kuno/tidak dikenal, bootloader yaboot tidak "
+"akan bekerja. Installasi akan dilanjutkan, tetapi Anda harus menggunakan "
+"BootX atau cara lain untuk boot komputer Anda. Argumen kernel untuk fs root "
+"adalah: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Apakah Anda ingin menggunakan aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Kesalahan menginstall aboot,\n"
+"paksakan installasi meskipun merusak partisi pertama?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Pada tingkat keamanan ini, akses pada file pada partisi Windows dibatasi "
+"hanya pada administrator."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Masukkan disket kosong pada drive %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Membuat disket installasi otomatis..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Beberapa langkah tidak selesai.\n"
+"\n"
+"Apakah Anda ingin keluar sekarang?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Selamat"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Boot Ulang"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Membuat disket installasi otomatis"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Installasi otomatis dapat dibuat otomatis penuh jika\n"
+"diinginkan, pada kasus ini akan mengambil hard disk!!\n"
+"(ini berarti untuk menginstall pada komputer lain).\n"
+"\n"
+"Anda mungkin memilih untuk mengulangi installasi.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Ulang"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Otomatis"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Simpan pilihan paket"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Bahasa"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Lisensi"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Mouse"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Deteksi hard disk"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Kelas installasi"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Keyboard"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Keamanan"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Pembuatan partisi"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Memformat"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Memilih paket-paket"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Menginstall"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Otentikasi"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Pengguna"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Jaringan"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Bootloader"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Konfigurasi X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Ringkasan"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Layanan"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Update"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Keluar"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d paket, %d MB)"
+#~ msgstr[1] "(%d paket, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d paket"
+
+#~ msgid "Language"
+#~ msgstr "Bahasa"
+
+#~ msgid "License"
+#~ msgstr "Lisensi"
+
+#~ msgid "Installation class"
+#~ msgstr "Kelas installasi"
+
+#~ msgid "Formatting"
+#~ msgstr "Memformat"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Memilih paket-paket"
+
+#~ msgid "Users"
+#~ msgstr "Pengguna"
+
+#~ msgid "Networking"
+#~ msgstr "Jaringan"
+
+#~ msgid "Configure X"
+#~ msgstr "Konfigurasi X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Tidak bisa mengakses modul kernel yang berhubungan dengan kernal Anda "
+#~ "(file %s hilang), ini biasanya berarti disket boot tidak sinkron dengan "
+#~ "media installasi (buatlah disket boot baru)"
diff --git a/perl-install/install/share/po/is.po b/perl-install/install/share/po/is.po
new file mode 100644
index 000000000..f871a6a3f
--- /dev/null
+++ b/perl-install/install/share/po/is.po
@@ -0,0 +1,1624 @@
+# Icelandic translation of DrakX.po
+# Translation file for Mandriva Linux graphic install, DrakX
+# Copyright (C) 1999,2003, 2005, 2006, 2007 Free Software Foundation, Inc.
+#
+#
+# Jóhann Þorvarðarson <johann.torvardarson@lais.is>, 1999-2000.
+# Þórarinn (Tony) R. Einarsson <thori@mindspring.com>, 1999-2000.
+# Pjetur G. Hjaltason <pjetur@pjetur.net>, 2003, 2005, 2006, 2007.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-02-19 20:22+0000\n"
+"Last-Translator: Pjetur G. Hjaltason <pjetur@pjetur.net>\n"
+"Language-Team: Icelandic <kde-isl@molar.is>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Hefur þú einhverja aðra aukamiðla?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Eftirfarandi miðlar hafa fundist og verða notaðir við uppsetningu: %s.\n"
+"\n"
+"\n"
+"Hefur þú einhverja aðra miðla sem þarf að stilla?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "Geisladrif"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Net (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Net (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Net (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "Vefslóð að spegli?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "Slóð verður að byrja á ftp:// eða http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Hef samband við Mandriva Linux vefinn til að sækja lista yfir fáanlega "
+"spegla..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Mistókst að tengjast við Mandriva Linux vefinn til að sækja lista yfir "
+"fáanlega spegla"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Veldu spegilvélina þaðan sem á að sækja pakkanna"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "NFS uppsetning"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Sláðu inn vélarnafn og möppu sem inniheldur NFS miðil"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Vélarnafn vantar"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "Möppunafn verður að byrja á \"/\""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Vélarnafn á NFS tengipunkti?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Mappa"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Aukalegt"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Finn ekki pakkalista-skrá á þessum spegli. Athugaðu hvort staðsetningin sé "
+"rétt."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Athuga þegar uppsetta pakka..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Fjarlægi pakka áður en uppfærsla hefst..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Leita að pökkum til að uppfæra..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Þú hefur valið eftirfarandi miðlara: %s\n"
+"\n"
+"\n"
+"Þessir miðlarar eru ræstir sjálfkrafa við ræsingu kerfis. Þeir hafa ekki\n"
+"neinar þekktar öryggisvillur, en nýjar kunna að hafa fundist. Í því\n"
+"tilviki verður þú að uppfæra eins fljótt og hægt er.\n"
+"\n"
+"\n"
+"Vilt þú raunverulega setja upp þessa miðlara?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Eftirfarandi pakkar verða fjarlægðir til að uppfærsla takist eðlilega: %s\n"
+"\n"
+"\n"
+"Viltu í alvöru fjarlægja þessa pakka?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Eftirfarandi diskar voru endurnefndir:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (áður nefnt %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Net"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Veldu miðil"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Skráin er þegar til. Skrifa yfir hana?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Aðgangi hafnað"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Rangt NFS nafn"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Gallaður miðill %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Get ekki tekið skjámyndir fyrr en disksneiðar hafa verið skilgreindar"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Skjámyndir verða tiltækar eftir uppsetningu í %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Set inn"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Stillingar"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Þú verður einnig að forsníða %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Eitthvað af vélbúnaðinum í tölvunni þinni þarfnast rekla sem eru ``ekki'' "
+"opinn hugbúnaður.\n"
+"Þú finnur meiri upplýsingar um þá á: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Keyri upp netið"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Keyri niður netið"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Sæki skrá %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Afrita nokkra pakka á diska til notkunar síðar"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Afritun í gangi"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "verð að fá"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "áríðandi"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "mjög þægilegt"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "þægilegt"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "kannski"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "Þrívidd"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "2007 vörur"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Ósigrandi eldveggur"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery Live Hamur"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Hvernig á að skrá"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva Online Þjónusta"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Nýtt þema"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Vinnustöð"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Skrifstofu-vinnustöð"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Skrifstofu forrit: ritvinnsla (OpenOffice.org Writer, Kword), töflureiknar "
+"(OpenOffice.org Calc, Kspread) pdf skoðarar, o.s.frv"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Skrifstofu forrit: ritvinnsla (kword, abiword), töflureiknar (kspread, "
+"gnumeric) pdf skoðarar, o.s.frv"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Leikja-(vinnu)stöð"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Leikjaforrit, skotleikir, borðleikir, herkænskuleikir og fleira"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Margmiðlunar-vinnustöð"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Spila og breyta hljóðskrám og kvikmyndum"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internet-vinnustöð"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Tól og tæki til að lesa og senda póst, fréttir (mutt,tin...) og til að "
+"flakka á vefnum"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Netbiðlarar"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Biðlarar fyrir ýmsar samskiptareglur þ.m.t ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Tæki til að auðvelda uppsetningu tölvunnar"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Skjától"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Ritlar, skeljar, skráatól, skjáhermar"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Forritun"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C og C++ undirforritasöfn, forrit og lýsingaskrár"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Handbækur"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Bækur og leiðbeiningar um Linux og frjálsan hugbúnað"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Stuðningur fyrir forrit þriðja aðila"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Vefmiðlari"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Hópvinnuforrit"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab Miðlari"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Eldveggur/beinir"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internet netgátt"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Póstur/Fréttir"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix póstþjónusta, Inn fréttaþjónusta"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Upplýsingaveita"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP Miðlari"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Nafnaþjónustur og net-upplýsingaveitur"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Skráa og prentmiðlari"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS miðlari, Samba miðlari"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Gagnagrunnar"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL og MySQL gagnagrunns-miðlarar"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Vefur/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Póstur"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix póstþjónusta"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL eða MySQL gagnagrunns-miðlarar"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Netþjónustur"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS-þjónusta, SMB-þjónusta, Sel-þjónusta, ssh-þjónusta"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Myndrænt umhverfi"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE Vinnustöð"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "KDE (K Desktop Environment). Gluggastjóri með safni hjálparforrita"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Gnome vinnustöð"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "Gluggastjóri með notendavænum forritum og skjáborðstólum"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm Skjáborð"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Aðrir gluggastjórar"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, o.s.frv"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Tól"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH Miðlari"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin, stillingar á fjartengdri tölvu um vef"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Netforrit/Neteftirlit"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Eftirlitstól, vinna með notendur, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva Ráðgjafar"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Ráðgjafar til að stilla miðlara"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Óþekkt villa kom upp sem ekki er hægt að meðhöndla.\n"
+"Haltu áfram á eigin ábyrgð."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Sumir mikilvægir pakkar voru ekki uppsettir eðlilega.\n"
+"Annaðhvort er geisladiskurinn eða drifið skemmt.\n"
+"Athugaðu geisladiskinn á uppsettri vél með skipuninni\n"
+"\"rpm -qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Byrja skref `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux uppsetning %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> milli skrefa"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Ef vélin þín er vanbúin að einhverju leyti þá getur þú átt\n"
+"í vandræðum með að setja upp Mandriva Linux.\n"
+"Ef svo er, þá gætir þú reynt að nota texta-uppsetningu.\n"
+"Til þess að gera það, ýttu á F1 þegar þú ræsir af\n"
+"geisladisknum og sláðu síðan inn `text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Val á pakkahóp"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Val á einstökum pökkum"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Heildarstærð: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Skemmdur pakki"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Útgáfa: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Stærð: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Mikilvægi: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Þú getur ekki valið/af-valið þennan pakka"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "vegna þess að %s vantar"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "vegna þess að %s er ekki uppfyllt"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "reyni að hækka vægi %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "til þess að halda %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "Þú getur ekki valið þennan pakka því það er ekki nægilegt pláss"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Eftirfarandi pakkar verða settir inn"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Eftirfarandi pakkar verða fjarlægðir"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Þessi pakki verður að vera uppsettur, þú getur ekki af-valið hann"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Þú getur ekki af-valið þennan pakka hann er þegar uppsettur"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Þú getur ekki af-valið þennan pakka, það verður að uppfæra hann"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Sýna sjálfvirkt valda pakka"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Innsetning"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Sækja/Vista val"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Uppfæri val á pökkum"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Lágmarks uppsetning"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Hugbúnaðarumsýsla"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Veldu pakkana sem þú vilt setja inn"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Set inn"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Engar upplýsingar"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Tími eftir "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Áætla"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pakki"
+msgstr[1] "%d pakkar"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Yfirlit"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Stilla"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "ekki stillt"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Eftirfarandi uppsetningar-miðlar hafa fundist.\n"
+"Ef þú vilt sleppa einhverjum af þeim, þá getur þú af-valið þá núna."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Þú hefur val um að afrita innihald geisladiskanna á diskinn fyrir "
+"uppsetningu.\n"
+"Síðan mun uppsetning halda áfram frá disknum og pakkarnir verða til staðar "
+"þegar kerfið er að fullu uppsett."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Afrita alla geisladiska"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Villa kom upp"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Veldu lyklaborðs-uppsetningu."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Hér er tæmandi listi af tiltækum lyklaborðum"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Innsetning/Uppfærsla"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Er þetta innsetning eða uppfærsla?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Uppfæra %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Dulritunar-lykill fyrir %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Uppsetning IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Ekki pláss fyrir 1MB ræsigeira! Uppsetning mun halda áfram, en til að ræsa "
+"kerfið þitt verður þú að búa til ræsi-disksneið með DiskDrake"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Þú þarft að búa til PPC PReP for-ræsingu! Uppsetningin mun halda áfram,en "
+"til að ræsa kerfið, þarft þú að búa til ræsi-disksneið með DiskDrake"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Skiftu um geisladisk!\n"
+"Settu inn geisladisk merktan \"%s\" í diskdrifið og ýttu á \"Í lagi\" þegar "
+"þú ert tilbúin(n).\n"
+"Ef þú hefur ekki diskinn, ýttu þá að \"Hætta við\" til að sleppa uppsetningu "
+"frá þessum diski."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Leita að tiltækum pökkum..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"Það er ekki nóg laust pláss fyrir innsetningu eða uppfærslu á kerfinu þínu (%"
+"dMB > %dMB)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Veldu hvort eigi að sækja eða vista pakkaval.\n"
+"Sniðið er það sama og á auto_install skrám."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Sækja"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Vista"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Gölluð skrá"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Valin stærð er stærri en tiltækt pláss"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Tegund uppsetningar"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Þú hefur ekki valið neina pakkahópa.\n"
+"Veldu lágmarksuppsetningu sem þú vilt:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Með X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Með grunn-handbókum (mælt með!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Alger lágmarksuppsetning (ekkert urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Allt"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Undirbý innsetningu"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Set inn pakka %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Það kom upp villa við að raða pökkum:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Viltu samt halda áfram?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Reyna aftur"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "Sleppa þessum pakka"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "Sleppa ölum pökkum af miðli \"%s\""
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "Fara til baka í val á miðlum og pökkum"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "Það kom upp villa við innsetningu pakka %s."
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Lokastillingar"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "Sstaðfestu að Uppfærslu-miðill sé í drifi %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Uppfærslur"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Þú hefur nú möguleika á að sækja uppfærða pakka. Þessir pakkar\n"
+"hafa verið uppfærðir eftir að dreifingin var send úr húsi.\n"
+"Þeir kunna að innihalda villuleiðréttingar eða öryggisuppfærslur.\n"
+"\n"
+"Til að sækja þessa pakka þá verður þú að vera tengdur Internetinu.\n"
+"\n"
+"Viltu sækja uppfærslurnar?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Hef samband við vélina til að sækja lista yfir fáanlega pakka..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Get ekki tengst spegilvél %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Vélbúnaður"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Hljóðkort"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Er kannski ISA hljóðkort í vélinni?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Keyrðu \"alsaconf\" eða \"sndconfig\" eftir uppsetningu til að stilla "
+"hljóðkortið þitt"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Ekkert hljóðkort fannst. Reyndu að keyra \"harddrake\" eftir uppsetningu"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Sjónvarpskort"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Myndrænt viðmót"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Staðarnet og Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Sel"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "Uppsett"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Öryggisþrep"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Eldveggur"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "virkt"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "óvirkt"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Ræsing"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s á %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Þú hefur ekki sett upp X, ertu viss um að þú viljir þetta?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Set upp ræsistjórann..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Það lítur út fyrir að þú sért að nota OldWorld eða óþekkta vél, yaboot "
+"ræsiforritið mun ekki virka fyrir þig. Uppsetning mun halda áfram en þú "
+"verður að nota BootX eða aðrar leiðir til að ræsa vélina. kjarna-viðfangið "
+"fyrir rótarsneiðina er: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Viltu nota aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Villa við uppsetningu á aboot, \n"
+"reyna að þvinga uppsetningu, þó það eyðileggi fyrstu disksneiðina?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Í þessu öryggisþrepi er aðgangur að Windows disksneiðum takmarkaður við "
+"kerfisstjóra."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Settu tóman diskling í drif %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Bý til diskling fyrir sjálfvirka uppsetningu..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Sum skref eru ennþá eftir.\n"
+"\n"
+"Viltu virkilega hætta núna?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Til hamingju"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Endurræsa"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Búa til diskling fyrir sjálfvirka uppsetningu"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Uppsetningu er hægt að hafa algerlega sjálfvirka,\n"
+"í því tilfelli tekur uppsetningin yfir diskinn!!\n"
+"(þetta er ætlað til uppsetningar á annari tölvu).\n"
+"\n"
+"Þú vilt kannski endurspila uppsetninguna\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Spila aftur"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Sjálfvirkt"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Vista val á pökkum"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Velja tungumál"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Notkunarskilmálar"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Mús"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Leita að disk(um)"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Innsetningarflokkur"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Lyklaborð"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Öryggi"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Forsníða diska"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Forsníð"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Velja pakka"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Set inn"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Auðkenning"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Notendur"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Net"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Ræsistjóri"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Stilla X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Yfirlit"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Þjónustur"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Uppfærslur"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Hætta"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d pakki, %d MB)"
+#~ msgstr[1] "(%d pakkar, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pakkar"
+
+#~ msgid "Language"
+#~ msgstr "Velja tungumál"
+
+#~ msgid "License"
+#~ msgstr "Notkunarskilmálar"
+
+#~ msgid "Installation class"
+#~ msgstr "Innsetningarflokkur"
+
+#~ msgid "Formatting"
+#~ msgstr "Forsníð"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Velja pakka"
+
+#~ msgid "Users"
+#~ msgstr "Notendur"
+
+#~ msgid "Networking"
+#~ msgstr "Net"
+
+#~ msgid "Configure X"
+#~ msgstr "Stilla X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Finn ekki kjarna-rekla sem passa við kjarnann þinn (skrána %s vantar), "
+#~ "þetta þýðir venjulega að þú hefur ekki uppfært ræsi-disklinginn þegar þú "
+#~ "uppfærðir kerfið (búðu til nýjan ræsi-diskling)"
diff --git a/perl-install/install/share/po/it.po b/perl-install/install/share/po/it.po
new file mode 100644
index 000000000..371da2b04
--- /dev/null
+++ b/perl-install/install/share/po/it.po
@@ -0,0 +1,1635 @@
+# translation of DrakX-it.po to Italian
+# Copyright (C) 2000, 2001 Mandriva S.A.
+#
+# Paolo Lorenzin <pasusu@tin.it>, 2000.
+# Simone Riccio <s.riccio@aeb-informatica.it>, 2002.
+# Roberto Rosselli Del Turco <rosselli@ling.unipi.it>, 2001, 2002,2003.
+# Marco De Vitis <mdv@spin.it>, 2003.
+# Andrea Celli <a.celli@caltanet.it>, 2003, 2004, 2005, 2006, 2007.
+# Giuseppe Levi <giuseppe.levi@email.it>, 2005.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-it\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-01-18 22:00+0100\n"
+"Last-Translator: Andrea Celli <a.celli@caltanet.it>\n"
+"Language-Team: Italian <kde-i18n-it@kde.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Hai delle altre fonti d'installazione?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Sono state individuate queste fonti che verranno utilizzate per "
+"l'installazione: %s.\n"
+"\n"
+"\n"
+"Disponi di altre fonti di installazione da configurare?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Rete (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Rete (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Rete (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL del mirror?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "L'URL deve iniziare con ftp:// o http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Connessione al sito Mandriva Linux per ricevere l'elenco dei mirror "
+"disponibili..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Impossibile collegarsi al sito Mandriva Linux per ricevere l'elenco dei "
+"mirror disponibili"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Scegli un mirror da cui prelevare i pacchetti"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Configurazione NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+"Immetti il nome dell'host e della directory che userai come supporto NFS"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Manca il nome dell'host"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "Una directory deve iniziare con \"/\""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Nome dell'host da montare con NFS?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Directory"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Aggiuntivo"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Impossibile trovare su questo mirror il file con l'elenco dei pacchetti. "
+"Assicurati che l'indirizzo sia esatto."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Ricerca dei pacchetti già installati..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Rimozione dei pacchetti prima di aggiornare..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Ricerca dei pacchetti da aggiornare..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Sono stati selezionati i seguenti server: %s\n"
+"\n"
+"\n"
+"Questi server verranno attivati automaticamente. Non presentano\n"
+"problemi di sicurezza noti, ma potrebbero esserne scoperti in futuro.\n"
+"In tal caso, dovrai preoccuparti di aggiornarli al più presto.\n"
+"\n"
+"\n"
+"Vuoi davvero installare questi server?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Per permettere l'aggiornamento del sistema si devono rimuovere i seguenti "
+"pacchetti: %s\n"
+"\n"
+"\n"
+"Vuoi davvero rimuoverli?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Questi dischi hanno cambiato nome:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (che prima si chiamava %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Rete"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Scegli un supporto"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Il file esiste già. Lo sovrascrivo?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Permesso negato"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Nome NFS non valido"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Supporto non valido %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Impossibile fare degli screenshot prima del partizionamento"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Gli screenshot saranno disponibili in %s dopo l'installazione."
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Installazione"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Configurazione"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Devi formattare anche %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Parte dell'hardware del computer richiede driver \"proprietari\" per\n"
+"funzionare. Si possono trovare informazioni al riguardo presso: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Attivazione della rete..."
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Disattivazione della rete..."
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Scaricamento del file %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Copia di alcuni pacchetti sui dischi per un'utilizzazione futura"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Copia in corso"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "obbligatorio"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "importante"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "molto utile"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "utile"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "forse"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "Linea di prodotti 2007"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Firewall Invictus"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Prova senza installazione (live)"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Come registrarsi"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Servizi online di Mandriva"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Nuovo tema"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Workstation"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Postazione per lavoro da ufficio"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Programmi da ufficio: wordprocessor (OpenOffice.org Writer, Kword), fogli "
+"elettronici (OpenOffice.org Calc, Kspread), visualizzatori PDF, ecc."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Programmi da ufficio: wordprocessor (kword, abiword), fogli elettronici "
+"(kspread, gnumeric), visualizzatori pdf, ecc."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Computer per giocare"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Programmi di svago: arcade, da tavolo, di strategia, ecc."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Computer multimediale"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Programmi di riproduzione/modifica audio e video"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Postazione Internet"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Gruppo di programmi per leggere e inviare posta e news (mutt, tin...) e per "
+"navigare il Web"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Computer in rete (client)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Client per vari protocolli, incluso ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Strumenti per semplificare la configurazione del computer"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Programmi da riga di comando"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editor, shell, gestione file, terminali"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Sviluppo"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Librerie di sviluppo, programmi e file \"include\" per C e C++"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Documentazione"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Libri e Howto su Linux e sul Software Libero"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Supporto per applicazioni di terze parti"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Server web"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Server Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Firewall/Router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Gateway per Internet"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Mail/News"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Server di posta Postfix, server di news Inn"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Directory Server"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Server FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Server per Domain Name e Network Information"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Server per la condivisione di file e stampanti"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "Server NFS, server Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Database"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Server di database PostgreSQL e MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache e Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Posta"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Server di posta Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Server di database PostgreSQL o MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Server di rete"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Server NFS, server SMB, server proxy, server SSH"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Ambiente grafico"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Workstation grafica con KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"Il K Desktop Environment, l'ambiente grafico di base integrato da una ricca "
+"collezione di strumenti"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Workstation grafica con GNOME"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Un ambiente grafico con un gruppo di applicazioni user-friendly e strumenti "
+"per il desktop"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "Desktop IceWm"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Altri desktop grafici"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, ecc."
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Utilità"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Server SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Server Webmin per la configurazione remota"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Utilità/Monitoraggio della rete"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Strumenti di monitoraggio, accounting dei processi, tcpdump, nmap,..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Procedure guidate Mandriva"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Assistenti per configurare dei server"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Si è verificato un errore non gestibile automaticamente.\n"
+"Puoi continuare a tuo rischio e pericolo."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Alcuni pacchetti importanti non sono stati installati correttamente.\n"
+"Il lettore di cdrom o il cdrom sono danneggiati.\n"
+"Controlla il cdrom su un sistema già installato digitando\n"
+" \"rpm -qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Avvio della fase \"%s\"\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Installazione di Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> muove il cursore"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Il sistema ha risorse scarse. Potrebbero verificarsi problemi installando\n"
+"Mandriva Linux. In tal caso, puoi tentare un'installazione testuale. \n"
+"Per farlo, premi \"F1\" all'avvio da CDROM e poi digita \"text\"."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Selezione per gruppi di pacchetti"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Selezione individuale dei pacchetti"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Dimensione totale: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Pacchetto non valido"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versione: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Dimensione:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Importanza: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Non puoi selezionare/deselezionare questo pacchetto"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "per la mancanza di %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "perché %s non è soddisfatto"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "Ricerca del miglior pacchetto per %s..."
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "per conservare %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Non puoi selezionare questo pacchetto. Non c'è spazio sufficiente per "
+"installarlo"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "I seguenti pacchetti stanno per essere installati"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "I seguenti pacchetti stanno per essere rimossi"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Questo è un pacchetto indispensabile, non può essere tolto"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Non si può deselezionare questo pacchetto. È già installato"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Non si può deselezionare questo pacchetto. Deve essere aggiornato"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Mostra i pacchetti selezionati automaticamente"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Installa"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Carica/salva selezione"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Aggiornamento scelta pacchetti"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Installazione minimale"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Gestione software"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Scegli i pacchetti che vuoi installare"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Installazione"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Senza dettagli"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Tempo restante: "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Sto valutando"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pacchetto"
+msgstr[1] "%d pacchetti"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Riepilogo"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Configura"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "non configurata"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Sono state trovate queste fonti d'installazione.\n"
+"Se vuoi ignorarne qualcuna, la puoi deselezionare ora."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Prima dell'installazione, puoi copiare il contenuto dei CD sul disco fisso\n"
+"L'installazione continuerà dal disco fisso e i pacchetti resteranno "
+"disponibili anche quando il sistema sarà installato."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Copia tutti i CD"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Si è verificato un errore"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Scegli la mappa della tastiera."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Ecco la lista completa delle tastiere disponibili"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Installazione/Aggiornamento"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "È un'installazione o un aggiornamento?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Aggiornamento di %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Chiave di codifica per %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Sto configurando IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Non c'è spazio libero per un bootstrap di 1MB! L'installazione continua, ma "
+"per avviare il sistema dovrai creare la partizione di bootstrap con DiskDrake"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Devi creare una partizione di avvio \"PPC PReP\"! L'installazione continua, "
+"ma non potrai avviare il sistema, se prima non avrai creato la partizione di "
+"avvio con DiskDrake"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Occorre sostituire il Cd-Rom!\n"
+"Inserisci il Cd-Rom chiamato \"%s\" nel lettore e premi OK quando sei "
+"pronto.\n"
+"Se non lo hai, premi Annulla per saltare l'installazione da quel Cd-Rom."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Sto cercando i pacchetti disponibili..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"Sul sistema non è rimasto sufficiente spazio libero per l'installazione o "
+"l'aggiornamento (%dMB > %dMB)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Scegli se caricare o salvare la selezione di pacchetti.\n"
+"Il formato è lo stesso dei file generati con auto_install."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Carica"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Salva"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "File non valido"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Lo spazio richiesto è maggiore di quello disponibile"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Tipo di installazione"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Nessun gruppo di pacchetti risulta selezionato .\n"
+"Scegli il tipo di installazione minima desiderato:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Con X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Con la documentazione essenziale (raccomandata!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Installazione veramente minimale (in particolare niente urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Tutti"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Sto preparando l'installazione"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Installazione del pacchetto %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "C'è un errore nell'ordinamento dei pacchetti:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Vado avanti comunque?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Riprova"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "Salta questo pacchetto"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "Salta tutti i pacchetti provenienti da \"%s\""
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "Torna alla scelta dei pacchetti e delle fonti"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "C'è stato un errore nell'installazione del pacchetto %s."
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Configurazione post installazione"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+"Assicurati che gli \"Update Modules\" siano leggibili dal dispositivo %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Aggiornamenti"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Adesso hai la possibilità di scaricare dei pacchetti aggiornati che sono\n"
+"stati modificati dopo l'uscita della distribuzione. Questi pacchetti "
+"possono\n"
+"contenere aggiornamenti di sicurezza o correzioni di errori.\n"
+"\n"
+"Per scaricare questi pacchetti serve una connessione a Internet attiva.\n"
+"\n"
+"Vuoi installare gli aggiornamenti?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"Connessione al mirror per ricevere l'elenco dei pacchetti disponibili..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Non si riesce a contattare il mirror %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Hardware"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Scheda audio"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Hai una scheda audio ISA?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Lancia \"alsaconf\" o \"sndconfig\" dopo l'installazione per configurare la "
+"scheda audio"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Non è stata rilevata nessuna scheda audio. Prova con \"harddrake\" dopo "
+"l'installazione."
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Scheda TV"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Interfaccia grafica"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Rete e Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxy"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "configurato"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Livello di sicurezza"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Firewall"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "attivato"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "disabilitato"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Boot"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s in %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Non hai configurato X. Sei sicuro di non volerlo fare?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Preparazione del bootloader..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Apparentemente disponi di una macchina OldWorld o sconosciuta, il bootloader "
+"yaboot non andrà bene per te.L'installazione continuerà, ma dovrai usare "
+"BootX o qualche altro metodo per avviare il tuo computer. L'argomento da "
+"passare al kernel per il fs radice è: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Vuoi usare aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Errore installando aboot, \n"
+"vuoi forzare l'installazione anche se distruggerà la prima partizione?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"A questo livello di sicurezza, l'accesso ai file delle partizioni Windows è "
+"riservato all'amministratore."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Inserisci un floppy vuoto nell'unità %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Sto creando il floppy di installazione automatica..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Alcune fasi non sono completate.\n"
+"\n"
+"Vuoi veramente interrompere adesso?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Congratulazioni"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Riavvia"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Crea il floppy di installazione automatica"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Se vuoi, l'installazione automatica può essere del tutto automatizzata,\n"
+"ma in tal caso il programma partizionerà automaticamente il disco!!\n"
+"(questa opzione è pensata per l'installazione su un'altra macchina).\n"
+"\n"
+"Probabilmente preferisci ripetere l'installazione.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Ripeti"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatizzata"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Salva scelta pacchetti"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Lingua"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licenza"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Mouse"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Rilevamento disco fisso"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Classe di installazione"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Tastiera"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Sicurezza"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Partizionamento"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Formattazione"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Scelta dei pacchetti"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Installazione"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Autenticazione"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Utenti"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Rete"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Bootloader"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Configurazione X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Riepilogo"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Servizi"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Aggiornamenti"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Esci"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d pacchetto, %d MB)"
+#~ msgstr[1] "(%d pacchetti, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pacchetti"
+
+#~ msgid "Language"
+#~ msgstr "Lingua"
+
+#~ msgid "License"
+#~ msgstr "Licenza"
+
+#~ msgid "Installation class"
+#~ msgstr "Classe di installazione"
+
+#~ msgid "Formatting"
+#~ msgstr "Formattazione"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Scelta dei pacchetti"
+
+#~ msgid "Users"
+#~ msgstr "Utenti"
+
+#~ msgid "Networking"
+#~ msgstr "Rete"
+
+#~ msgid "Configure X"
+#~ msgstr "Configurazione X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Non riesco ad accedere ai moduli del kernel corrispondenti al kernel "
+#~ "attuale(manca il file %s). Questo in genere significa che il dischetto di "
+#~ "boot non è recente quanto il supporto di installazione. Si consiglia di "
+#~ "creare un dischetto di boot aggiornato."
diff --git a/perl-install/install/share/po/ja.po b/perl-install/install/share/po/ja.po
new file mode 100644
index 000000000..73f53a66e
--- /dev/null
+++ b/perl-install/install/share/po/ja.po
@@ -0,0 +1,1617 @@
+# translation of DrakX.po to Japanese
+# Drakbootdisk Japanese translation
+# Copyright (C) 2000,2003, 2004 Free Software Foundation, Inc.
+# YAMAGATA Hiroo <hiyori13@alum.mit.edu>, 2000.
+# UTUMI Hirosi <utuhiro78@yahoo.co.jp>, 2003, 2004.
+# Yukiko Bando <ybando@k6.dion.ne.jp>, 2004, 2005, 2006, 2007.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-ja\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-03-01 20:00+0900\n"
+"Last-Translator: Yukiko Bando <ybando@k6.dion.ne.jp>\n"
+"Language-Team: Japanese <cooker-i18n@mandrivalinux.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3.1\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "他に補助的なメディアがありますか?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"次のインストールメディアを検出しました: %s \n"
+"\n"
+"\n"
+"他に設定するメディアはありますか?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "ネットワーク (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "ネットワーク (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "ネットワーク (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "ミラーの URL"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "URL は ftp:// または http:// で始まらなければなりません"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr "Mandriva Linux のサイトに接続してミラーのリストを取得しています..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Mandriva Linux ウェブサイトへの接続に失敗したため、利用可能なミラーのリストを"
+"取得できませんでした"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "パッケージを取得するミラーを選択"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "NFS の設定"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "NFS メディアのホスト名とディレクトリを入力してください"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "ホスト名がありません"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "ディレクトリは \"/\" で始まらなければなりません"
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "NFS マウントのホスト名"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "ディレクトリ"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "補助"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"パッケージリストのファイルが見つかりません。ミラーの場所が正しいか確認してく"
+"ださい。"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "インストール済みパッケージを探しています..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "アップグレードする前にパッケージを削除しています..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "更新するパッケージを探しています..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"以下のサーバを選択されました: %s\n"
+"\n"
+"\n"
+"これらのサーバはデフォルトで起動されます。現在、既知のセキュリティ問題\n"
+"はありませんが、新たに発見されるかもしれません。その場合は、できるだけ\n"
+"早急にアップグレードしてください。\n"
+"\n"
+"\n"
+"本当にこれらのサーバをインストールしますか?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"システムを更新するため以下のパッケージを削除します: %s\n"
+"\n"
+"\n"
+"これらのパッケージを削除してよろしいですか?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "次のディスクの名前は変更されました:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (変更前の名前は %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "ネットワーク"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "メディアを選んでください"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "ファイルが既に存在します。上書きしますか?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "アクセス許可がありません"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "不正な NFS 名"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "不正なメディア %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "パーティション設定が終わるまでスクリーンショットは撮れません"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr ""
+"スクリーンショットは %s にあります。インストール後に利用可能になります。"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "インストール"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "設定"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "%s もフォーマットしてください"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"お使いのハードウェアの中にプロプラエタリ・ドライバが必要なものがあります。\n"
+"詳しくは以下をご参照ください: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "ネットワークを確立"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "ネットワークを切断"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "ファイル %s をダウンロード中..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "後で利用するためにパッケージをディスクにコピー"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "コピーしています"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "必須"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "重要"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "優秀"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "秀"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "可"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "2007 製品ライン"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Invictus ファイアウォール"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery ライブモード"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "製品登録"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva Online サービス"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "新しいテーマ"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "ワークステーション"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "オフィスワークステーション"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"オフィスソフト: ワープロ (OpenOffice.org Writer, Kword), 表計算 (OpenOffice."
+"org Calc, Kspread), PDF ビューアなど"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"オフィスソフト: ワープロ (kword,abiword), 表計算 (kspread,gnumeric), PDF "
+"ビューアなど"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "ゲームステーション"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "ゲームプログラム: アーケードゲーム, ボードゲーム, 戦略ゲームなど"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "マルチメディアステーション"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "サウンドと動画の再生/編集ソフト"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "インターネットステーション"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr "メールとニュースの送受信用ツール (mutt,tin..) とウェブブラウズ用ツール"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "ネットワーク (クライアント)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "ssh などの各種プロトコル用クライアント"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "コンピュータの設定を簡単にするツール"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "コンソールツール"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "エディタ, シェル, ファイル関連ツール, ターミナル"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "開発用"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C/C++ の開発ライブラリ, プログラム, include ファイル"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "ドキュメント"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Linux/フリーソフト関連の文書とHowto"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base, サードパーティのアプリケーションをサポート"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Web サーバ"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "グループウェア"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolabサーバ"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "ファイアウォール/ルータ"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "インターネットゲートウェイ"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "メール/ニュース"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix メールサーバ, Inn ニュースサーバ"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "ディレクトリサーバ"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP サーバ"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "ドメイン名/ネットワークインフォメーションサーバ"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "ファイル/プリンタ共有サーバ"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS サーバ/Samba サーバ"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "データベース"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL/MySQLデータベースサーバ"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "メール"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix メールサーバ"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL/MySQL データベースサーバ"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "ネットワークコンピュータサーバ"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS サーバ, SMB サーバ, プロキシサーバ, SSH サーバ"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "グラフィカル環境"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE ワークステーション"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "KDE - さまざまなツールを含む定番グラフィカル環境"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME ワークステーション"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "使いやすいアプリケーションとデスクトップツールを含むグラフィカル環境"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm デスクトップ"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "その他のグラフィカルデスクトップ"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm など"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "ユーティリティ"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH サーバ"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin リモート設定サーバ"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "ネットワークユーティリティ/モニタリング"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "モニタリングツール, プロセス管理, tcpdump, nmap..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva ウィザード"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "サーバ設定ウィザード"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"エラーが発生しました。しかし対処する方法がわかりません。\n"
+"自己責任で続けてください。"
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"重要なパッケージがインストールされませんでした。\n"
+"CD-ROM ドライブか CD-ROM に問題があります。\n"
+"'rpm -qpl media/main/*.rpm' コマンドで CD-ROM をチェックしてください。\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "%s を開始\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux のインストール %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> 項目間を移動"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"システムのリソースが十分でないため、Mandriva Linux のインストール中に\n"
+"問題が発生する可能性があります。その場合は次の要領でテキストモードによる\n"
+"インストールを試してみてください。\n"
+"CD-ROM から起動 -> F1 を押す -> 'text' と入力"
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "パッケージグループを選択"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "パッケージを個別に選択"
+
+# Changed "total size" to "total", due to problem of available
+# space on screen.
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "合計: %d/%d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "不正なパッケージ"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "バージョン: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "サイズ: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "重要性: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "このパッケージの選択/非選択は変更できません"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "%s がないために"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "%s が依存を満たしていないために"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "%s をアップグレードするために"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "%s を維持するために"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"このパッケージは選択できません。インストールに必要な空き容量がありません。"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "以下のパッケージをインストールします"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "以下のパッケージを削除します"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "これは必須パッケージです。選択を解除することはできません。"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "このパッケージの選択は解除できません。既にインストールされています。"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "このパッケージの選択は解除できません。アップグレードが必要です。"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "自動的に選択されたパッケージを表示"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "インストール"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "選択を読み込む/保存する"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "パッケージの選択を更新"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "最小インストール"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "ソフトウェアの管理"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "インストールするパッケージを選んでください"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "インストール中"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "詳細なし"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "残り時間 "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "試算しています"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d 個のパッケージ"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "まとめ"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "設定"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "設定されていません"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"次のインストールメディアを検出しました。\n"
+"使用しないものがあればここで選択を解除してください。"
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"インストールする前に CD の内容をハードドライブにコピーすることも可能です。\n"
+"そうするとインストーラはハードドライブからインストールを続けます。コピーされ"
+"たパッケージはインストール完了後も利用できます。"
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "CD 全体をコピー"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "エラーが発生しました"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "キーボードの配列を選んでください"
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "利用可能なすべてのキーボードのリスト"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "インストール/更新"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "インストールか更新を選んでください"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "%s を更新"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "%s の暗号鍵"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE を設定"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"1 MB のブートストラップ用の空き容量がありません。インストールを続けますが、シ"
+"ステムを起動するには、DiskDrake でブートストラップパーティションを作成する必"
+"要があります。"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"PPC PReP ブートストラップを作成する必要があります。インストールを続けますが、"
+"システムを起動するには、DiskDrake でブートストラップパーティションを作成する"
+"必要があります。"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"CD-ROM を交換してください。\n"
+"\"%s\" という CD-ROM をドライブに入れて「OK」を押してください。\n"
+"お持ちでない場合は「キャンセル」を押してください。"
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "利用可能なパッケージを探しています..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"あなたのシステムにはインストールまたはアップグレードに必要な空き容量がありま"
+"せん (%dMB > %dMB)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"パッケージの選択を読み込むか保存するかを選んでください。\n"
+"形式は auto_install で生成されたファイルと同じです。"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "読み込む"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "保存する"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "不正なファイル"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "指定されたサイズが空き容量を超えています"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "インストールの種類"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"パッケージグループが選択されていません。\n"
+"インストールする最低限のものを選んでください:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "X を使う"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "基本的なドキュメントを入れる (推奨)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "最小限のインストール (urpmi も含まれません)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "すべて"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "インストールの準備"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "パッケージ %s をインストール"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "パッケージを並べ替え中にエラーが発生:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "続けますか?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "再試行"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "このパッケージを飛ばす"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "メディア %s のすべてのパッケージを飛ばす"
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "メディアとパッケージの選択に戻る"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "パッケージ %s のインストール中にエラーが発生しました。"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "インストール後の設定"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "更新モジュールメディアがドライブ %s に入っていることを確認してください"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "更新"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"更新されたパッケージをダウンロードすることができます。これらのパッケージは\n"
+"ディストリビューション公開後に更新されたものです。セキュリティ問題や不具合\n"
+"の修正が含まれています。\n"
+"\n"
+"パッケージのダウンロードにはインターネット接続が必要です。\n"
+"\n"
+"更新されたパッケージをインストールしますか?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "ミラーに接続して利用可能なパッケージのリストを取得しています..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "ミラー %s に接続できません"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "ハードウェア"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "サウンドカード"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "ISA サウンドカードをお使いですか?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"インストール後に alsaconf か sndconfig を実行してサウンドカードを設定してくだ"
+"さい。"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"サウンドカードが見つかりません。インストール後に harddrake で再度設定を試みて"
+"ください。"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "テレビカード"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "グラフィカルインターフェース"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "ネットワークとインターネット"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "プロキシ"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "設定済み"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "セキュリティレベル"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "ファイアウォール"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "有効"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "無効"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "起動"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%2$s の %1$s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "X が設定されていません。本当によろしいですか?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "ブートローダを準備中..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"OldWorld もしくは不明なアーキテクチャのマシンをお使いのようです。このマシンで"
+"は yaboot は動きません。インストールを続けますが、マシンを起動するには、"
+"BootX もしくは他の方法が必要です。'root fs' のカーネル引数は 'root=%s' です。"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "aboot を使いますか?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"aboot をインストール中にエラーが発生しました。\n"
+"最初のパーティションを破壊しますが、強制的にインストールしますか?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"このセキュリティレベルでは、Windows パーティションのファイルへのアクセスが管"
+"理者のみに限定されます。"
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "空のフロッピーをドライブ %s に入れてください"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "インストール自動化フロッピーを作成中..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"一部の設定が完了していません。\n"
+"\n"
+"本当に終了しますか?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "おめでとうございます"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "再起動"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "インストール自動化フロッピーを作成"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"「自動」はインストールを完全に自動化することができます。\n"
+"この場合ハードドライブの内容がすべて書き換えられます。\n"
+"(別のマシンにインストールするためのものです。)\n"
+"\n"
+"インストールの「再現」を利用されたほうがいいかもしれません。\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "再現"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "自動"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "パッケージの選択を保存する"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "言語を選択"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "ライセンス"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "マウス"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "ハードドライブを検出"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "インストールクラス"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "キーボード"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "セキュリティ"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "パーティションの設定"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "フォーマット"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "パッケージの選択"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "インストール中"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "認証"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "ユーザ"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "ネットワーク"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "ブートローダ"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "X を設定"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "まとめ"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "サービス"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "更新"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "終了"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d 個のパッケージ, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d 個のパッケージ"
+
+#~ msgid "Language"
+#~ msgstr "言語を選択"
+
+#~ msgid "License"
+#~ msgstr "ライセンス"
+
+#~ msgid "Installation class"
+#~ msgstr "インストールクラス"
+
+#~ msgid "Formatting"
+#~ msgstr "フォーマット"
+
+#~ msgid "Choosing packages"
+#~ msgstr "パッケージの選択"
+
+#~ msgid "Users"
+#~ msgstr "ユーザ"
+
+#~ msgid "Networking"
+#~ msgstr "ネットワーク"
+
+#~ msgid "Configure X"
+#~ msgstr "X を設定"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "カーネルに対応したカーネルモジュールにアクセスできません (ファイル %s があ"
+#~ "りません)。恐らく起動用フロッピーがインストールメディアに対応していませ"
+#~ "ん。新しい起動フロッピーを作成してください。"
diff --git a/perl-install/install/share/po/ko.po b/perl-install/install/share/po/ko.po
new file mode 100644
index 000000000..aebfd247a
--- /dev/null
+++ b/perl-install/install/share/po/ko.po
@@ -0,0 +1,1564 @@
+# Korean translation of drakbootdisk.
+# Copyright (C) 2001 Free Software Foundation, Inc.
+# Jaegeum Choe <baedaron@hananet.net>, 2001.
+#
+# changes asked by HP people -- pablo 2003-01-23
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2002-09-09 09:08+0900\n"
+"Last-Translator: Jaegeum Cze <baedaron@hanafos.com>\n"
+"Language-Team: Korean <beadaron@hanafos.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "또 다른것이 설치되어 있습니까?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "네트웍"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "네트웍"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr "유효한 미러 목록을 받기 위해 맨드리바 리눅스 웹사이트에 접속 중..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr "유효한 미러 목록을 받기 위해 맨드리바 리눅스 웹사이트에 접속 중..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "팩키지를 받을 미러 사이트를 선택해 주세요."
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "디렉토리"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "%s를 열 수 없습니다: %s\n"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "이미 설치된 팩키지 찾는 중..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "업그레이드할 팩키지를 검색중입니다."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, fuzzy, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"다음과 같은 서버들이 선택되었습니다: %s\n"
+"\n"
+"\n"
+"이 서버들은 기본적으로 활성화됩니다. 비록 아직까지 알려진 보안 문제는 없지"
+"만,\n"
+"새로운 문제점이 발견될 수도 있습니다. 그럴 경우에는 가능한 한 신속하게\n"
+"업그레이드해야 합니다.\n"
+"\n"
+"\n"
+"정말로 이 서버들을 설치합니까?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "다음 팩키지들이 설치될 것입니다."
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "네트웍"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "선택하세요"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "파일이 이미 존재합니다. 덮어쓸까요?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "권한이 없습니다."
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "파일 %s 읽어들임"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "파티션을 나누기 전에는 스크린샷을 만들 수 없습니다."
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "스크린샷은 설치후에 %s에 있습니다."
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "설치중"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "설정"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr ""
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"「상업용」드라이버를 필요로하는 일부 하드웨어가 시스템상에 있습니다.\n"
+"자세한 정보는 다음을 참조하세요: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "네트웍 활성화 중..."
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "네트웍 해제 중..."
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "파일 전송 중 ..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "검색 진행 중"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "필수 팩키지"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "중요한 팩키지"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "훌륭한 팩키지"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "좋은 팩키지"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "괜찮은 팩키지"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr ""
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "워크스테이션"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "오피스 워크스테이션"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"오피스 프로그램들: 워드프로세서 (OpenOffice.org Writer, Kword), 스프레드쉬트 "
+"(OpenOffice.org Calc, Kspread), pdf 뷰어, 등등"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"오피스 프로그램들: 워드프로세서 (kword, abiword), 스프레드쉬트 (kspread,"
+"gnumeric), pdf 뷰어, 등등"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "게임 스테이션"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "장난감 프로그램: arcade, boards, strategy, 등등"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "멀티미디어 스테이션"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "사운드 및 비디오 연주/편집 프로그램"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "인터넷 스테이션"
+
+#: share/meta-task/compssUsers.pl:44
+#, fuzzy, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr "메일/뉴스를 일고 보내며 웹검색을 위한 도구모음(pine, mutt, tin...)"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "네트웍 컴퓨터 (클라이언트)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "SSH 및 다른 프로토콜의 클라이언트"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "쉬운 컴퓨터 설정을 위한 도구"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "콘솔 도구"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "에디터, 쉘, 파일도구, 터미널"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "개발"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C/C++ 개발 라이브러리, 프로그램 및 헤더파일"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "문서"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "리눅스 및 자유 소프트웨어에 대한 서적과 Howto문서"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "리눅스 표준 기반. 외부 애플리케이션 지원"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "웹 서버"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "아파치와"
+
+#: share/meta-task/compssUsers.pl:88
+#, fuzzy, c-format
+msgid "Groupware"
+msgstr "그룹"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab 서버"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "방화벽/라우터"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "인터넷 게이트웨이"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/파일(F)/새로 만들기(_N)"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "포스트픽스 메일 서버"
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "CD로부터 복구"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP 서버"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "도메인 네임 및 네트웍 정보 서버"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "프린터 서버"
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "삼바 서비스"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "데이터베이스"
+
+#: share/meta-task/compssUsers.pl:117
+#, fuzzy, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL 또는 MySQL 데이터베이스 서버"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "웹/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "아파치와 프로FTPD"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "메일"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "포스트픽스 메일 서버"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL 또는 MySQL 데이터베이스 서버"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "네트웍 컴퓨터 서버"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS 서버, 삼바 서버, 프락시 서버, SSH 서버"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "그래픽 환경"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE 워크스테이션"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "K Desktop 환경, 여러가지 도구를 수반한 기본 그래픽 환경"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME 워크스테이션"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "사용자 친화적 프로그램과 데스크탑 도구를 가진 그래픽 환경"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "일터"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "기타 그래픽 데스크탑"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, 윈도우 메이커, 인라이튼먼트, Fvwm, 등등"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "유틸리티"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH 서비스"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "웹민 서비스"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "맨드리바 터미널 서버 설정"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "네트웍 환경 설정"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "맨드리바 제어 센터"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "프린터 「%s」 설정 중 ..."
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"오류가 발생했습니다. 그러나 적절히 처리할 수 없습니다.\n"
+"위헝을 감수할려면 계속하세요."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"일부 중요한 팩키지들이 올바르게 설치되지 않았습니다.\n"
+"CDROM 드라이브 또는 미디어가 손상되었습니다.\n"
+"이미 설치가 완료된 컴퓨터에서 「rpm -qpl media/main/*.rpm」명령으로 점검해 보"
+"세요.\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "%s 단계로 넘어갑니다.\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "리눅스-맨드리바 설치 %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> 항목간 이동"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"시스템의 자원이 부족합니다. 리눅스 맨드리바를 설치하는데 일부 문제가 발생할\n"
+"수도 있습니다. 만약 문제가 발생하면, 택스트 모드로 설치를 시도해 보세요.\n"
+"텍스트 모드로 설치하려면, CDROM으로 부팅후 「F1」을 누르고 「text」라고 입력"
+"하세요."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "팩키지 그룹 선택"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "개별 팩키지 선택"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "전체 크기: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "잘못된 팩키지"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "버전: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "크기: "
+
+#: steps_gtk.pm:316
+#, fuzzy, c-format
+msgid "%d KB\n"
+msgstr "크기: %d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "중요도: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "이 팩키지를 선택/버림 할수 없습니다."
+
+#: steps_gtk.pm:355
+#, fuzzy, c-format
+msgid "due to missing %s"
+msgstr "kdesu가 없음"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr ""
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr ""
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr ""
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "디스크 공간이 부족하기 때문에 이 팩키지를 선택할 수 없습니다."
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "다음 팩키지들이 설치될 것입니다."
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "다음 팩키지들이 제거될 것입니다."
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "이것은 필수적인 팩키지입니다. 반드시 선택되어야 합니다."
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "이 팩키지를 선택해제할 수 없습니다. 이미 설치 되었습니다."
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "이 팩키지를 선택해제할수 없습니다. 반드시 업그레이드되어야 합니다."
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "자동으로 선택된 팩키지들 보이기"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "설치"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "선택 이동"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "선택된 팩키지 목록 업데이트 중"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "최소 설치"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "소프트웨어 관리"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "설치하고자 하는 팩키지를 선택하세요."
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "설치중"
+
+#: steps_gtk.pm:468
+#, fuzzy, c-format
+msgid "No details"
+msgstr "상세설명"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "남은 시간 "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "계산 중"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d 팩키지"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "요약설명"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "설정"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "not configured"
+msgstr "재설정"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "오류 발생"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "키보드 레이아웃 선택을 선택하세요."
+
+#: steps_interactive.pm:99
+#, fuzzy, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "지원되는 키보드 목록이 여기에 있습니다."
+
+#: steps_interactive.pm:128
+#, fuzzy, c-format
+msgid "Install/Upgrade"
+msgstr "설치/업데이트"
+
+#: steps_interactive.pm:129
+#, fuzzy, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "설치합니까 아니면 업데이트 합니까?"
+
+#: steps_interactive.pm:135
+#, fuzzy, c-format
+msgid "Upgrade %s"
+msgstr "업그레이드"
+
+#: steps_interactive.pm:148
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "암호화 키"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE 설정중"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"1MB 부트스트랩 공간 부족! 설치는 계속할 수 있지만, 시스템을 부팅하기 위해서"
+"는 디스크드레이크에서 부트스트랩 파티션을 만들어야 합니다."
+
+#: steps_interactive.pm:226
+#, fuzzy, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"1MB 부트스트랩 공간 부족! 설치는 계속할 수 있지만, 시스템을 부팅하기 위해서"
+"는 디스크드레이크에서 부트스트랩 파티션을 만들어야 합니다."
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"CDROM을 바꿔 주세요!\n"
+"\n"
+"「%s」라고 쓰여진 CDROM을 드라이브에 넣은 후, 「확인」을 눌러 주세요.\n"
+"만약 CDROM을 가지고 있지 않다면, 「취소」를 눌러 추가 설치를 취소하세요."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "유효한 팩키지를 찾고 있습니다."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"플로피에 팩키지 선택목록을 적재 또는 저장할지를 선택하세요.\n"
+"형식(포맷)은 자동설치 생성 플로피와 동일합니다."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "읽어들이기"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "저장"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "파일 읽기"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "선택된 용량이 사용할 수 있는 공간보다 큽니다."
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr ""
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr ""
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr ""
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "모두"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "설치 준비중입니다"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "%s 팩키지 설치중"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "팩키지를 정렬하는 중 오류발생:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "계속 진행합니까?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "선택된 팩키지 목록 저장"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "다음 팩키지를 설치중 오류가 발생했습니다: "
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "설치전 환경설정"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr ""
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "사용가능한 팩키지의 리스트를 미러 사이트에 접속해서 받습니다."
+
+#: steps_interactive.pm:666
+#, fuzzy, c-format
+msgid "Unable to contact mirror %s"
+msgstr "분기할 수 없습니다: %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "하드웨어"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "사운드 카드"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "ISA 사운드 카드가 있습니까?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV 카드"
+
+#: steps_interactive.pm:833
+#, fuzzy, c-format
+msgid "Graphical interface"
+msgstr "시작시 바로 X 실행"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "네트웍과 인터넷"
+
+#: steps_interactive.pm:851
+#, fuzzy, c-format
+msgid "Proxies"
+msgstr "프로파일: "
+
+#: steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "configured"
+msgstr "재설정"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "보안 등급"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "방화벽"
+
+#: steps_interactive.pm:880
+#, fuzzy, c-format
+msgid "activated"
+msgstr "지금 활성화"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "금지"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "부트"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s (%s 컴퓨터)"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "부트 로더 준비중"
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "aboot를 사용하시겠습니까?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"aboot 설치 실패. \n"
+"첫번째 파티션을 훼손할지라도 강제 설치할까요?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "%s 드라이브에 빈 플로피 디스크를 넣으세요"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "자동 설치 플로피 디스크 생성 중"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"몇몇 단계가 완전히 끝나지 않았습니다.\n"
+"\n"
+"정말 지금 종료 하시겠습니까?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "축하합니다."
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "다시 시작"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "자동 설치 플로피 디스크 생성"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"자동 설치는 원한다면 완벽한 자동화가 가능합니다.\n"
+"이럴 경우, 하드 드라이브를 점유해 버립니다!\n"
+"(이것은 또 다른 컴퓨터에 동일하게 설치할 때를 위한 것입니다.)\n"
+"\n"
+"일반적으로 직접 설치하는 것이 좋습니다.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "재시도"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "자동"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "선택된 팩키지 목록 저장"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "언어 선택"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "라이센스"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "마우스"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "하드 디스크 선택"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "키보드"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "보안"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr ""
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "구성중"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "설치중"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "사용자 인증"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "사용자들"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "네트워크"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr ""
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "X 설정"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "요약설명"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "서비스"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr ""
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "종료"
+
+#~ msgid "%d packages"
+#~ msgstr "%d 팩키지"
+
+#~ msgid "Language"
+#~ msgstr "언어 선택"
+
+#~ msgid "License"
+#~ msgstr "라이센스"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "설치 클래스 선택"
+
+#~ msgid "Formatting"
+#~ msgstr "구성중"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "설치 팩키지 선택"
+
+#~ msgid "Users"
+#~ msgstr "사용자들"
+
+#~ msgid "Networking"
+#~ msgstr "네트워크"
+
+#~ msgid "Configure X"
+#~ msgstr "X 설정"
diff --git a/perl-install/install/share/po/ky.po b/perl-install/install/share/po/ky.po
new file mode 100644
index 000000000..f395ceb45
--- /dev/null
+++ b/perl-install/install/share/po/ky.po
@@ -0,0 +1,1560 @@
+# translation of DrakX-ky.po to Kyrgyz
+# Copyright (C) 2004,2003, 2005 Free Software Foundation, Inc.
+# Timur Jamakeev <ztimur@mail.ru>, 2003,2004.
+# Nurlan Borubaev <nurlan@tamga.info>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-ky\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2005-04-20 20:27+0500\n"
+"Last-Translator: Nurlan Borubaev <nurlan@tamga.info>\n"
+"Language-Team: Kyrgyz\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Сизде кийинки кезектеги кошумча алып жүрүүчү барбы?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Желе (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Желе (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "Күзгүсүнүн URL'и?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Пакеттерди алуучу күзгүнү тандаңыз"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Каталог"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Бул күзгүдө пакеттердин тизмеси атбылган жок. Жайгашуусунун тууралыгын "
+"текшериңиз."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr ""
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Сиз төмөнкү серверлерди тандадыңыз: %s\n"
+"\n"
+"\n"
+"Бул серверлер алдынала жандандырылган болушат. Аларда кандайдыр бир "
+"белгилүү\n"
+"коопсуздук көйгөйлөрү жок, бирок алар табыла элек болушу да мүмкүн. Мындай\n"
+"учурда сиз аладрды мүмкүн болушунча тезирээк жаңылашыңыз керек.\n"
+"\n"
+"\n"
+"Сиз бул серверлерди орнотууну каалайсызбы?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Сиздин системага жаңылануу мүмкүнчүлүгүн берүү үчүн төмөнкү пакеттер\n"
+"алынып ташталат: %s\n"
+"\n"
+"\n"
+"Бул пакеттердин алынып ташталуусун каалайсызбы?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Төмөнкү диск(тер)дин аты өзгөртүлдү:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (мурунку аты %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Желе"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Алып жүрүүчүнү тандаңыз"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Файл алдагачан бар. Үстүнө кайра жазылсынбы?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Кирүү укугу четке кагылды"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "%s жараксыз алып жүрүүчү"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Бөлүмдөрдү жаратууга чейин скриншотторду түзүүгө болбойт"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Орнотуудан кийин скриншоттор %s ичинде болот"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Орнотуу"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Конфигурациялоо"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Сиз %s дагы форматташыңыз керек"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Тармак көтөрүлүүдө"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Тармак өчүрүлүүдө"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "%s файлын окуудагы ката"
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Көчүрүү жүрүүдө"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr ""
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr ""
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr ""
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr ""
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr ""
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Иш станциясы"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Офис станциясы"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Офис программалары: текст процессорлору (OpenOffice.org Writer, Kword), "
+"электрондук таблицалар (OpenOffice.org Calc, Kspread), pdf файлдарын көрүү "
+"программалары, ж.б."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Офис программалары: текст процессорлору (kword, abiword), электрондук "
+"таблицалар (kspread, gnumeric), pdf файлдарын көрүү программалары, ж.б."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Оюн станциясы"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+"Оюн-зоок программалары: аркада оюндары, тактай оюндары, стратегия оюндары, ж."
+"б."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Мультимедиа станциясы"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Үн жана видео ойнотуу/терүү программалары"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Интернет станциясы"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Почтаны жана жаңылыктарды (mutt, tin..) окууга жана жөнөтүүгө, жана вебде "
+"иштөөгө арналган куралдар тобу"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Тармак компьютери (клиент)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Ар түрдүү протоколдор клиенттери, ssh да кошулган"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Компьютериңизди жеңил конфигурациялоо куралдары"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Консоль куралдары"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Редакторлор, шелдер, файл куралдары, терминалдар"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Иштеп түзүү"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr ""
+"C жана C++ иштеп чыгуу библиотекалары, программалар жана include файлдары"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Документация"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Linux жана Free Software жөнүндөгү китептер жана HOWTOлар"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+"Linux стандарттык базасы. Үчүнчү тараптык иштеп чыгуучулардын тиркемелерин "
+"колдоо"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Веб-сервери"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab сервери"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Файрволл/Маршруттагыч"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Интернет дарбазасы"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/Файл/_Жаңы"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix почта сервери"
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "Веб-сервери"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP сервери"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, fuzzy, c-format
+msgid "DNS/NIS"
+msgstr "NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, fuzzy, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Домендик аттар системасы"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "Samba сервери"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Берилиштер базасы"
+
+#: share/meta-task/compssUsers.pl:117
+#, fuzzy, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL же MySQL берилиштер базасынын сервери"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Почта"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix почта сервери"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL же MySQL берилиштер базасынын сервери"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Тармак сервери"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS сервери, SMB сервери, Proxy сервери, ssh сервери"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Графикалык чөйрө"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE иш станциясы"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K Desktop Environment - негизги графикалык чөйрө, кошумча куралдар "
+"коллекциясы менен"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME иш станциясы"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Колдонуучуга ыңгайлашкан тиркемелерин жана иш столунун кураларын камтыган "
+"графикалык чөйрө"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Виртуладык иш столдору"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Башка графикалык иш столдору"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ж.б."
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH сервери"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "Веб-камера"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Конфигурацияны текшерүү"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Тармак мониторинги"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "<b>Mandriva Expert</b>"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "Кызматтарды конфигурациялоо"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Жаңылыштык орун алды, бирок мен аны кантип туура иштетүүнү билбейм.\n"
+"Мындан ары тобокелге салып өзүңүз улантыңыз."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "`%s' кадамына өтүү аракети\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux %s орнотуу"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> элементтер ортосунда"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Пакеттердин группасын тандоо"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Пакеттерди өз алдынча тандоо"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Жалпы көлөмү: %d / %d Мб"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Туура эмес пакет"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Версиясы: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Көлөмү: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d Кб\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Маанилүүлүгү:"
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr ""
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "%s жоктугунан"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "%s канаатанбагандыгынан"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "%s активдештирүү аракети"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "%s сактоо үчүн"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr ""
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr ""
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr ""
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr ""
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Бул пакетти белгилөөдөн алып салууга болбойт. Ал жаңыланышы керек"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Автоматтык түрдө тандалган пакеттерди көрсөтүү"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Орнотуу"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Тандалгандарды Жүктөө/Сактоо"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Пакеттерди тандоо жаңыланууда"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Минималдык орнотуу"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Пакеттерди башкаруу"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Сиз орнотууну каалаган пакеттерди тандаңыз"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Орнотуу"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Кеңири маалыматсыз"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Калган убакыт"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Болжолдуу убакыт"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d пакет"
+msgstr[1] "%d пакет"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Жыйынтык"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Конфигурация"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "конфигурацияланбаган"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "CD дискти толугу менен көчүрүү"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Жаңылыштык орун алды"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Өзүңүздүн алиптакта картасын тандаңыз."
+
+#: steps_interactive.pm:99
+#, fuzzy, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Мүмкүн болгон бардык өлкөлөр тизмеси"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Орнотуу/Жаңылоо"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Бул орнотуубу же жаңылообу?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "%s жаңылоо"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "%s үчүн шифрлөө ачкычы"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE конфигурацияланууда"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Мүмкүн болгон пакеттер изделүүдө..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Жүктөө"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Сактоо"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Туура эмес файл"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr ""
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr ""
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "X менен"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr ""
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Бардыгы"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr ""
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr ""
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Пакеттерди кабыл алууда ката пайда болду:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Буга карабай улантайынбы?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Тандалган пакеттерди сактоо"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Пакеттерди орнотууда ката пайда болду:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr ""
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Жаңылоолор"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr ""
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Техникалык жабдуу"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Добуш картасы"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr ""
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "ТВ-карта"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr ""
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Тармак жана Интернет"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Проксилер"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr ""
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Коосуздук деңгээли"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Файервол"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr ""
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "өчүк"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Жүктөө"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr ""
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr ""
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr ""
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr ""
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Конфигурациялар"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Кайра жүктөө"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr ""
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Кайталоо"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Автоматтык"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Тандалган пакеттерди сактоо"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Тил тандоо"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Лицензия"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Чычкан"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Таш дискти аныктоо"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Алиптергич"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Коопсуздук"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Бөлүмдөргө бөлүү"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Орнотуу"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Аутентификация"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Колдонуучулар"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Тармактар"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Баштапкы жүктөгүч"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "X конфигурациялоо"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Жыйынтык"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Кызматтар"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Жаңылоолор"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Чыгуу"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d пакет"
+#~ msgstr[1] "%d пакет"
+
+#~ msgid "%d packages"
+#~ msgstr "%d пакет"
+
+#~ msgid "Language"
+#~ msgstr "Тил тандоо"
+
+#~ msgid "License"
+#~ msgstr "Лицензия"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Орнотуу классын тандоо"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Болжолдуу убакыт"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Орнотуу үчүн пакеттерди тандаңыз"
+
+#~ msgid "Users"
+#~ msgstr "Колдонуучулар"
+
+#~ msgid "Networking"
+#~ msgstr "Тармактар"
+
+#~ msgid "Configure X"
+#~ msgstr "X конфигурациялоо"
diff --git a/perl-install/install/share/po/lt.po b/perl-install/install/share/po/lt.po
new file mode 100644
index 000000000..8a687f48d
--- /dev/null
+++ b/perl-install/install/share/po/lt.po
@@ -0,0 +1,1568 @@
+#
+# Mykolas Norvai-as <Myka@centras.lt>, 2002
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2000-12-23 13:50+0200\n"
+"Last-Translator: Mykolas Norvai­as <Myka@centras.lt>\n"
+"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%"
+"100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Ar turi dar vieną?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "Tinklo interfeisas"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "Tinklo interfeisas"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, fuzzy, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Jungiamasi prie atvaizdžio (mirror), kad gautume prieinamų paketų sąrašą"
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Jungiamasi prie atvaizdžio (mirror), kad gautume prieinamų paketų sąrašą"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Pasirink atvaizdį (mirror), iš kurio imti paketus"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Aplankas"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Adapteris %s: %s"
+
+#: any.pm:376
+#, fuzzy, c-format
+msgid "Looking at packages already installed..."
+msgstr "Tu negali atžymėti šio paketo. Jis jau yra įdiegtas"
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Ieškoma atnaujintinų paketų"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Ruošiamasi įdiegti šiuos paketus"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Tinklas"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "Pasirinkite kitą vardą."
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Jau yra tokia byla. Užrašyti ant jos?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Priėjimas draudžiamas"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr ""
+
+#: any.pm:1294
+#, fuzzy, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Aš daugiau negaliu pridėti nė vieno skirsnio"
+
+#: any.pm:1301
+#, fuzzy, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Tu gali pasirinkti kitas kalbas, kurios bus prieinamos po įdiegimo"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Įdiegiama"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Nustatymai"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr ""
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Kad kai kurie tavo kompiuterio įrenginiai veiktų, jiems reikia\n"
+"taip vadinamų \"proprietary\" tvarkyklių. daugiau informacijos apie jas "
+"gali\n"
+"rasti čia: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Paleidžiamas tinklas"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Išjungiamas tinklas"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "Išsaugoti į bylą"
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "aptiktas prievade %s"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "turi turėti"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "svarbus"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "labai gerai"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "nuostabu"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "galbūt"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr ""
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, fuzzy, c-format
+msgid "Workstation"
+msgstr "KDE darbo stotis"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Biuro darbo stotis"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Biuro programos: tekstų redaktoriai (OpenOffice.org Writer, Kword), "
+"skaičiuoklės (OpenOffice.org Calc, Kspread), pdf peržiūros programos ir pan."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Biuro programos: tekstų redaktoriai (kword, abiword), skaičiuoklės (kspread, "
+"gnumeric), pdf peržiūros programos ir pan."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Žaidimų stotis"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+"Programos pasilinksminimui: lentos, strateginiai, kortų žaidimai ir pan."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimedija stotis"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Garso ir vaizdo grojimo/redagavimo programos"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Interneto stotis"
+
+#: share/meta-task/compssUsers.pl:44
+#, fuzzy, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Rinkinys įrankių skaityti ir siųsti paštą bei naujienas (pine, mutt, tin) ir "
+"naršyti žiniatinklį (WWW)"
+
+#: share/meta-task/compssUsers.pl:49
+#, fuzzy, c-format
+msgid "Network Computer (client)"
+msgstr "Tinklo Kompiuteris, X klientas"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:55
+#, fuzzy, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Ar tu nori išbandyti nustatymus?"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Konsolės įrankiai"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Redaktoriai, shell'ai, bylų įrankiai, terminalai"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Programavimas"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C bei C++ kūrimo bibliotekos, programos ir include bylos"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentacija"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Knygos ir HOWTO apie Linux ir Free Software"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:84
+#, fuzzy, c-format
+msgid "Web Server"
+msgstr "serveris"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Grupinis darbas"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab serveris"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Serveris, Firewall/Routeris"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, fuzzy, c-format
+msgid "Internet gateway"
+msgstr "Priėjimas prie Interneto"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/Byla/_Nauja"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Serveris, Duomenų bazių"
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "Atstatyti iš diskelio"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP serveris"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, fuzzy, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Domeno vardas"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Spausdinimo serveris"
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "NIS serveris"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Serveris, Duomenų bazių"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Serveris, Tinklapių/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Paštas"
+
+#: share/meta-task/compssUsers.pl:126
+#, fuzzy, c-format
+msgid "Postfix mail server"
+msgstr "Serveris, Duomenų bazių"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:137
+#, fuzzy, c-format
+msgid "Network Computer server"
+msgstr "Serveris, Tinklo Kompiuterio serveris"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE darbo stotis"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"The K Desktop Environment, pagrindinė grafinė aplinka su dideliu rinkiniu "
+"pritaikytų programų"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Gnome darbo stotis"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Grafinė aplinka su vartotojui draugiškų programų ir darbalaukio įrankių "
+"rinkiniu"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Darbastalis"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Kiti grafiniai darbalaukiai"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "IceWM, Window Maker, Enlightenment, Fvwm ir pan."
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Naudės"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, fuzzy, c-format
+msgid "SSH Server"
+msgstr "NIS serveris"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "įrenginys"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Interneto konfigūravimas"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Tinklo konfigūravimas"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "Prisijungti prie interneto"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "Nustatyti spausdintuvą"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Įvyko klaida, bet aš nežinau, kaip su ja gražiai susitvarkyti.\n"
+"Tęsk darbą savo paties rizika."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Kai kurie svarbūs paketai nebuvo tvarkingai įdiegti.\n"
+"Arba tavo CD-ROM kaupiklis, arba CD yra su trūkumais.\n"
+"Patikrink CD įdiegtame kompiuteryje, naudodamas \"rpm -qpl media/main/*.rpm"
+"\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Įeinama į žingsnį „%s“\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux įdiegimas %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> tarp elementų"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Tavo sistemoje mažai resursų. Tu gali susidurti su bėdomis, įdiegdamas\n"
+"Mandriva Linux. Jei taip atsitiktų, gali pabandyti tekstinį diegimo būdą:\n"
+"Kai užsikrauna iš CDROM'o, paspausk `F1', o tada įvesk \"text\"."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Paketų grupių pasirinkimas"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Atskirų paketų pasirinkimas"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Bendras dydis: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Blogas paketas"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versija: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Dydis: "
+
+#: steps_gtk.pm:316
+#, fuzzy, c-format
+msgid "%d KB\n"
+msgstr "Dydis: %d KB\n"
+
+#: steps_gtk.pm:317
+#, fuzzy, c-format
+msgid "Importance: "
+msgstr "Svarba: %s\n"
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Tu negali pažymėti/atžymėti šio paketo"
+
+#: steps_gtk.pm:355
+#, fuzzy, c-format
+msgid "due to missing %s"
+msgstr "nieko"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "dėl nepatenkinto %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "bandau paaukštinti %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "%s išlaikymui"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Tu negali pasirinkti šio paketo, kadangi nebėra pakankamai vietos jam įdiegti"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Ruošiamasi įdiegti šiuos paketus"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Ruošiamasi pašalinti šiuos paketus"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Tai yra privalomas paketas, jis negali būti atžymėtas"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Tu negali atžymėti šio paketo. Jis jau yra įdiegtas"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Tu negali atžymėti šio paketo. Jis privalo būti atnaujintas"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr ""
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Įdiegti"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "Išsaugoti pažymėjimą"
+
+#: steps_gtk.pm:406
+#, fuzzy, c-format
+msgid "Updating package selection"
+msgstr "Išsaugoti paketų pasirinkimą"
+
+#: steps_gtk.pm:411
+#, fuzzy, c-format
+msgid "Minimal install"
+msgstr "Išmesti"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Programinės įrangos tvarkyklė"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Pasirink paketus, kuriuos tu nori įdiegti"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Įdiegiama"
+
+#: steps_gtk.pm:468
+#, fuzzy, c-format
+msgid "No details"
+msgstr "Detalės"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Liko laiko "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Skaičiuojama"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d paketų"
+msgstr[1] "%d paketų"
+msgstr[2] "%d paketų"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Apibendrinimas"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Nustatyti"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "not configured"
+msgstr "iš naujo nustatyti"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Įvyko klaida"
+
+#: steps_interactive.pm:97
+#, fuzzy, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Prašom pasirinkti klaviatūros išdėstymą."
+
+#: steps_interactive.pm:99
+#, fuzzy, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Čia yra galimų klaviatūrų sąrašas"
+
+#: steps_interactive.pm:128
+#, fuzzy, c-format
+msgid "Install/Upgrade"
+msgstr "Įdiegti/Atnaujinti"
+
+#: steps_interactive.pm:129
+#, fuzzy, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Ar tai įdiegimas, ar atnaujinimas?"
+
+#: steps_interactive.pm:135
+#, fuzzy, c-format
+msgid "Upgrade %s"
+msgstr "Atnaujinimas"
+
+#: steps_interactive.pm:148
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Slaptažodžiai nesutampa"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Nustatome IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Pakeisk CD!\n"
+"\n"
+"Prašom įkišti CD su užrašu „%s“ į kaupiklį, tada paspausk Gerai.\n"
+"Jei tu jo neturi, spausk Nutraukti, kad išvengtum įdiegimo iš šio CD."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Ieškomi galimi paketai"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Įkelti"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Išsaugoti"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "Įkelti bylą"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr ""
+
+#: steps_interactive.pm:483
+#, fuzzy, c-format
+msgid "Type of install"
+msgstr "Pasirink paketą įdiegimui"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+
+#: steps_interactive.pm:487
+#, fuzzy, c-format
+msgid "With X"
+msgstr "Palauk"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr ""
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Visos"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Ruošiamas įdiegimas"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Įdiegiamas paketas %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Įvyko klaida, bandant sutvarkyti paketus:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Vis tiek tęsti?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Išsaugoti paketų pasirinkimą"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Įvyko klaida, įdiegiant paketus:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Konfigūracija po įdiegimo"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Atnaujinimai"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"Jungiamasi prie atvaizdžio (mirror), kad gautume prieinamų paketų sąrašą"
+
+#: steps_interactive.pm:666
+#, fuzzy, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Uždrausti tinklą"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Geležis"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, fuzzy, c-format
+msgid "Sound card"
+msgstr "Standartinė"
+
+#: steps_interactive.pm:809
+#, fuzzy, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Ar turi dar vieną?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV plokštė"
+
+#: steps_interactive.pm:833
+#, fuzzy, c-format
+msgid "Graphical interface"
+msgstr "X paleidžiant"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Tinklas & Internetas"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Tarpinės stotys (proxies)"
+
+#: steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "configured"
+msgstr "iš naujo nustatyti"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Saugumo lygis"
+
+#: steps_interactive.pm:876
+#, fuzzy, c-format
+msgid "Firewall"
+msgstr "Serveris, Firewall/Routeris"
+
+#: steps_interactive.pm:880
+#, fuzzy, c-format
+msgid "activated"
+msgstr "Aktyvus"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "uždraustas"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Įkelties nustatymai"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s iš %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Ruošiama įkrovos tvarkyklė"
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Ar nori naudoti aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Klaida įdiegiant aboot,\n"
+"bandyti įdiegti priverstinai, net jei tai sunaikintų pirmąjį skirsnį?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Įdėk tuščią diskelį į kaupiklį %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Kuriamas automatinio įdiegimo diskelis"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Kai žingsniai buvo nebaigti.\n"
+"\n"
+"Ar tu nori išeiti dabar?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Sveikinimai"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Perkrauti"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Sukurti automatinio įdiegimo diskelį"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Automatinis įdiegimas reikalui esant gali būti pilnai\n"
+"automatizuotas. Tokiu atveju jis užims visą diską!!\n"
+"(turint omenyje įdiegimą į kitą dėžę).\n"
+"\n"
+"Jūs galbūt norėsite pakartoti įdiegimą.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Parodyti vėl"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatinis"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Išsaugoti paketų pasirinkimą"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Pasirink savo kalbą"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licencija"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Pelė"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Kieto disko nustatymas"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Klaviatūra"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Saugumas"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr ""
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Įdiegiama"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Autentikacija"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Vartotojai"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Tinklai"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr ""
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Nustatyti X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Apibendrinimas"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Paslaugų nustatymai"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Atnaujinimai"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Išeiti"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d paketų"
+#~ msgstr[1] "%d paketų"
+#~ msgstr[2] "%d paketų"
+
+#~ msgid "%d packages"
+#~ msgstr "%d paketų"
+
+#~ msgid "Language"
+#~ msgstr "Pasirink savo kalbą"
+
+#~ msgid "License"
+#~ msgstr "Licencija"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Parink įdiegimo klasę"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Skaičiuojama"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Pasirinkti paketus"
+
+#~ msgid "Users"
+#~ msgstr "Vartotojai"
+
+#~ msgid "Networking"
+#~ msgstr "Tinklai"
+
+#~ msgid "Configure X"
+#~ msgstr "Nustatyti X"
diff --git a/perl-install/install/share/po/ltg.po b/perl-install/install/share/po/ltg.po
new file mode 100644
index 000000000..484d7be4f
--- /dev/null
+++ b/perl-install/install/share/po/ltg.po
@@ -0,0 +1,1629 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Copyright (c) 2000 Mandriva.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2006-09-24 17:51+0200\n"
+"Last-Translator: Māris Laureckis <marlau@inbox.lv>\n"
+"Language-Team: Latgalian <linux@latgola.lv>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Voi jiusim ir papyldus datu nesiejs?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Tyka atrosts sekojūšs datu nesiejs, kurs tiks lītuots instalacejis laikā: %"
+"s.\n"
+"\n"
+"\n"
+"Voi jiusim ir papyldus datu nesieji deļ uzstuodeišonys?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Teiklys (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Teiklys (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Teiklys (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "Voi spūguļservera URL?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "URL juosasuoc ar ftp:// voi http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Pīsaslādzu Mandriva Linux teimekļam, lai sajimtu pīejamū spūguļserveru "
+"sarokstu..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Dasasliegšona Mandriva Linux teimekļam cīta naveiksmi, lai sajimtu pīejamū "
+"spūguļserveru sarokstu"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Izavielejit spūguļserveri, nu kura jimt pakūtnis"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "NFS uzstuodeišona"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Lyudzu, īvodit hosta vuordu i jiusu NFS datu nesieja katalogu"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Kaids ir NFS monteišonys hosta vuords?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Katalogs"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Iz ituo spūguļservera navar atrast pakūtņu saroksta failu. Puorbaudit, voi "
+"atsarūn pareizā vītā."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Mekleju jau īprīkš uzinstaleituos pakūtnis..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Teik nūdzāstys pakūtnis pyrms atjaunynuošonys..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Mekleju uzlobuojamuos pakūtnis"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Jius izavielēt sekojūšu(s) serveri(us): %s\n"
+"\n"
+"\n"
+"Itī serveri teik aktivizāti piec nūklusiejuma. Tim nav nikaidu zinomu "
+"drūšeibys\n"
+"tryukumu, bet jauni var tikt atrosti. Taidā gadīnī jiusim nūteikti tī "
+"juoatjaunynoj\n"
+"piec īspiejis uotruok.\n"
+"\n"
+"\n"
+"Voi tīšom gribit instalēt šūs serverus?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Sekuojūšys pakūtnis tiks nūjimtys, lai varātu uzlobuot jiusu sistemu: %s\n"
+"\n"
+"\n"
+"Voi teišom gribit nūjimt ituos pakūtnis?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Sekojūši diski tika puorsaukti:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (īprīkš tika saukta kai %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Teiklys"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Lyudzu, izavielejit datu nesieju"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Fails jau eksistej. Voi puorrakstēt pa viersu?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Pīeja līgta"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Naveiksmeigs NFS vuords"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Napareizs datu nesiejs %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Navar izveiduot ekrana attālus pyrms sadaļu izveidis"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Ekrana attāli byus pīejami piec instaleišonys %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Instalaceja"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Konfiguraceja"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Jiusim ir juoformatej ari %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Dažu jiusu datora aparaturys darbeibai napīcīšoī ``firmys'' draiveri.\n"
+"Papyldus informaceju par tim varit atrast ite: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Īdorbynoju teiklu"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Atslādzu teiklu"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Teik šursyuteiti fail %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Teik kopātys dažys pakūtnis lītuošonai nuokūtnē"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Nūteik kopeišona"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "napīcīšoms"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "svareigs"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "ļūti vālams"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "vālams"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "varbyut"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "2007 produktu lineja"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Invictus guņsmyurs"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery Dzeivaja reižimā"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Kai pīsaregistrēt"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva Tīšsaistis pakolpuojumi"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Jauna tema"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Dorba staceja"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Biroja dators"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Biroja programmys: teksta procesori (OpenOffice.org Writer, Kword), "
+"izkluojlopys (OpenOffice.org Calc, Kspread), PDF skateituoji, u.c."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Biroja programmys: teksta procesori (kword, abiword), izkluojlopys (kspread, "
+"gnumeric), pdf skateituoji, u.c."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Spēļu dators"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Izklaidis programmys: arkade, goldaspēlis, strategeja u.c."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimedeju dators"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Skanis i video atskaņuošonys/redigeišonys programmys"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Interneta dators"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Reiku komplekts, lai laseitu i syuteitu postu voi jaunumus (mutt, tin..), i "
+"puorlyukuotu Puorstaipteiklu"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Teikla dators (klients)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Klienti dažaidim protokolim, īskaitūt ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Reiki datora konfigureišonys atvīgluošonai"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Konsolis reiki"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Redaktori, čaulys, failu reiki, terminali"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Izstruode"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C i C++ izstruodis bibliotekys, programmys i īkļautī faili"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentaceja"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Gruomotys i vaicuojumu par Linux i Breivū programmaturu"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linuks Standarta Bāze. Trešū izstruoduoju aplikaceju atbolsts"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Puorstaipteikla (Web) servers"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab servers"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Gunsmyurs/Maršrutizators"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Interneta vuorteja"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Posts/Jauns"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix posta servers, Inn ziņu servers"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Katalogu Servers"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP servers"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "DNS i NIS servers"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Failu un Printeru Kūplītuošonys servers"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS servers, Samba servers"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Datubāzis"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL i MySQL datubāžu servers"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Teimeklis/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Posts"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix posta servers"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL voi MySQL datubāžu servers"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Teikla datoru servers"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS servers, SMB servers, storpnīkservers (Proxy), ssh servers"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Grafiskuo vide"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE dorba staceja"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K Desktop Environment, golvonuo grafiskuo vide kūpā ar papyldus reiku "
+"kolekceju"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Gnome dorba staceja"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Grafiskuo vide ar lītuotuojam draudzeigu programmu komplektu i dorba "
+"viersmys reikim"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm Dorba viersma"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Cytys grafiskuos dorba viersmys"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm u.c."
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Utilitys"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH servers"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin attuolynuotuos konfiguracejis servers "
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Teikla utilitys/puorraudzeiba"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Puorraudzeibys reiki, procesu uzskaite, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva paleigi"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Servera konfiguracejis paleigi"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Nūtyka klaida, bet es nazynu, kai tū korekti apstruoduot.\n"
+"Turpynuot iz jiusu poša riska."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Dažys svareigys pakūtnis naizadeve pareizi instalēt.\n"
+"Ir būjuota jiusu kompaktdisku īkuorta voi instalacejis disks.\n"
+"Puorbaudit disku iz instaleituo datora, izmontojūt komandu \"rpm -qpl media/"
+"main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Teik uzsuokts sūļs `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux instaleišona %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> puorīt"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Jiusu sistemai tryukst resursu. Mandriva Linux instaleišonys laikā var\n"
+"rastīs problemys. Ja tai nūteik, varit pamieginuot teksta režima "
+"instaleišonu. Lai tū izdareitu,\n"
+"nūspīdit`F1', kod nūteik īluode nu CDROM, tod īvodit `text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Pakūtņu grupu izviele"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Atsevišku pakūtņu izviele"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Kūpejais izmārs: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Slykta pakūtne"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Verseja: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Izmārs: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Svareigums: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Jius varit izavielēt/atsateikt nu ituos pakūtnis"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "tryukuma dieļ %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "deļ naapmīrynuojuma %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "teik mieginuots aktivizēt %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "lai saglobuot %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Jius navarit izavielēt itū pakūtni, par tū ka napīteik vītys tuos "
+"instaleišonai"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Tiks instaleitys sekojūšys pakūtnis"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Tiks nūjimtys sekojūšys pakūtnis"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Itei ir obligata pakūtne, nu tuos navar atsateikt"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Jius navarit atsateikt nu ituos pakūtnis. Tei jau ir instaleita"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Jius navarit atsateikt nu ituos pakūtnis. Tū ir napīcīšoms uzlobuot"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Paruodeit automatiski izvālātuos pakūtnis"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Instalēt"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Īluodēt/Saglobuot izviele"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Teik atjaunynuota pakūtņu izviele"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimala instaleišona"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Programmaturys puorvaļdeišona"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Izavielejit pakūtnis, kū gribit instalēt"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Teik instaleits"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Nav detaļu"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Atlykušais laiks"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Aptuvenais nūviertiejums"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pakūtnis"
+msgstr[1] "%d pakūtnis"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Kūpsavylkums"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Konfigurēt"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "nav konfigurāts"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Atrosti sekojūši instalacejis datu nesieji.\n"
+"Ja jius gribit izlaist dažus nu tim, jius tagad varit nūjimt atzeimi nu tim."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Jiusim ir opceja, pyrms instalacejis nūkopēt kompaktdiska saturu uz cītu "
+"disku.\n"
+"Taidā veidā turpynuosīs nu cītuo diska un pakūtnis byus pīejamys cikom "
+"sistema tiks piļneibā uzinstaleita."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Kopēt vysu kompaktdisku"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Atkluota kliuda"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Lyudzu izavielejit jiusu klaviaturys izkuortuojumu."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Ite ir pylns pīejamū klaviaturu saroksts"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Instalēt/Atjaunynuot"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Itei ir instaleišona voi atjaunynuošona?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Atjaunynuot %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Šifreišonys atslāga deļ %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Teik konfigurāts IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Nav 1MB breivys vītys suokneišonys programmai! Instaleišona turpynuosīs, bet "
+"lai īluodātu sistemu, jiusim vajadzēs izveiduot suokneišonys programmys "
+"diska sadali programmā DiskDrake"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Jiusim vajadzēs izveiduot PPC PReP Boot suokneišonys programmu! Instaleišona "
+"turpynuosīs, bet lai īluodātu sistemu, jiusim vajadzēs izveiduot "
+"suokneišonys programmys diska sadali programmā DiskDrake"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Nūmainit jiusu kompaktdisku!\n"
+"\n"
+"Lyudzu īlicit īkuortā Cd-Rom \"%s\", kod tys ir izdareits, nūspūdit Labi\n"
+"Ja jiusim nav ituo diska, nūspīdit Atceļt, lai nainstaleitu nu ituo "
+"kompaktdiska."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Mekleju pīejamuos pakūtnis"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Lyudzu izavielejit īluodēt voi saglobuot pakūtņu izvieli.\n"
+"Formats ir taids pats, kai ar auto_install generātom failim."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Īluodēt"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Saglobuot"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Napareizs fails"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Izvālātais apjūms ir leluoks nakai pīejamuo vīta"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Instalacejis tips"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Jius naizavielēt nivīnu pakūtņu grupu.\n"
+"Lyudzu, izavielejit minimalū instalaceju, kaidu jius gribit:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Ar X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Ar pamatdokumentaceju (īteicams!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Patīši minimala instalaceja (īpaši bez urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Vyss"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Sagataveju instaleišonu"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Instaleju pakūtni %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Pakūtņu kuortuošonys laikā atkluota kliuda:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Tūmār turpynuot?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Saglobuot pakūtņu izvieli"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Pakūtņu instaleišonys laikā atkluota kliuda:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Piecinstaleišonys konfigureišona"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "Lyudzu, puorsalīcynojit ka Update Modules atsarū īkuortā %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Atjaunynuojumi"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Tagad jiusim ir īspieja šurpsyutēt atjaunynuotuos pakūtnis. Šuos pakūtnis "
+"tyka atjaunynuotys \n"
+"piec šuos distribucejis izlaišonys. Tuos var saturēt\n"
+"drūšeibys voi kliudu lobuojumus.\n"
+"\n"
+"Lai šursyuteitu šuos pakūtnis, jiusim juobyut Interneta \n"
+"savīnuojums.\n"
+"\n"
+"Voi jius gribit instalēt atjaunynuojumus?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Pīsaslādzu spūguļserveram, lai sajimtu pīejamū pakūtņu sarokstu"
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Navar dasavīnuot pi spūguļservera %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Aparatura"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Skanis karte"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Vai jiusim ir ISA skanis karte?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Piec instaleišonys palaidit \"alsaconf\" voi \"sndconfig\", lai konfigurātu "
+"jiusu skanis karti"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Nav atrosta skanis karte. Piec instaleišonys izmieginit \"harddrake\""
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV karte"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Grafiskuo saskarne"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Teiklys & Internets"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Storpnīkserveri"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "konfigurāts"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Drūšeibys leimiņs"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Guņsmyurs"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "aktivizāts"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "atslāgts"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Suoknēt"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s iz %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+"Jiusim nav nūkonfigurāts X servers. Voi jius asot puorlīcynuoti, ka jius tū "
+"gribit?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Sagataveju suokneituoju"
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Izaver, ka jiusim ir vaca voi nazynomys izceļsmis dators, yaboot "
+"suokneituojs nastruoduos. Instaleišona turpynuosīs, bet jiusim byus "
+"juoizmontoj BootX voi kas cyts, lai īluodātu datoru. Kūdula arguments deļ "
+"root fs ir: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Voi gribit izmontuot aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Kliuda, instalejūt aboot, \n"
+"voi instalēt pīspīdu kuortā pat tod, ja tiks iznycynuota pyrmuo sadaļa?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Šymā drūšeibys leiminī, pīeeja Windows sadalis failim ir tikai "
+"administratoram."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Īlicit tukšu disketi īkuortā %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Sagataveju auto instaleišonys disketi"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Daži sūli nav izpiļdeiti.\n"
+"\n"
+"Voi tīšom gribit izīt tagad?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Apsveicam"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Puorsuoknēt"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Sagatavēt auto instaleišonys disketi"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Ja gribit, automatiskuo instalaceja var byut piļneigi\n"
+"automatizāta, taidā gadīnī tei nūkopēs vysu cītū disku!!\n"
+"(tys ir dūmuots uzstuodēt uz cyta datora).\n"
+"\n"
+"Jius varbyut gribēsit atkuortuot instalaceju.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Atkuortuot"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatisks"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Saglobuot pakūtņu izvieli"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Volūdys izviele"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "License"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Pele"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Cītuo diska nūteikšona"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Instaleišonys klase"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Klaviatura"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Drūšeiba"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Diska sadaleišona"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Formateišona"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Pakūtņu izviele"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Teik instaleits"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Autentifikaceja"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Lītuotuoji"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Teikluošona"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Suokneituojs"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "X konfigureišona"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Kūpsavylkums"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Servisi"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Atjaunynuojumi"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Izīt"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d pakūtnis"
+#~ msgstr[1] "%d pakūtnis"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pakūtnis"
+
+#~ msgid "Language"
+#~ msgstr "Volūdys izviele"
+
+#~ msgid "License"
+#~ msgstr "License"
+
+#~ msgid "Installation class"
+#~ msgstr "Instaleišonys klase"
+
+#~ msgid "Formatting"
+#~ msgstr "Formateišona"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Pakūtņu izviele"
+
+#~ msgid "Users"
+#~ msgstr "Lītuotuoji"
+
+#~ msgid "Networking"
+#~ msgstr "Teikluošona"
+
+#~ msgid "Configure X"
+#~ msgstr "X konfigureišona"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Navar pīkliut kūdula moduļam, atbylstūšim jiusu kūdulam (fails %s nav "
+#~ "atrūnams), parosti tys nūzeimej, ka īluodis diskete nav sinhronizeita ar "
+#~ "instalacejis datu nesieju (lyudzu izveidojit jaunuoku īluodis disketi)"
diff --git a/perl-install/install/share/po/lv.po b/perl-install/install/share/po/lv.po
new file mode 100644
index 000000000..97be9faa3
--- /dev/null
+++ b/perl-install/install/share/po/lv.po
@@ -0,0 +1,1608 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Copyright (c) 2000 Mandriva.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2002-09-27 17:45+0200\n"
+"Last-Translator: Raivo Saars <spaiks@inbox.lv>\n"
+"Language-Team: Latvian <ll10nt@listes.murds.lv>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
+"2);\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Vai ir vēl kāds?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "Tīkls"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "Tīkls"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Pieslēdzos Mandriva Linux tīmeklim, lai saņemtu pieejamo spoguļserveru "
+"sarakstu sarakstu..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Pieslēdzos Mandriva Linux tīmeklim, lai saņemtu pieejamo spoguļserveru "
+"sarakstu sarakstu..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Izvēlieties spoguļserveri, no kura ņemt pakotnes"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Katalogs"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Nevar atrast %s uz %s"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Meklēju jau iepriekš uzinstalētās pakotnes..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Meklēju uzlabojamās pakotnes"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, fuzzy, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Jūs izvēlējāties sekojošu(s) serveri(us): %s\n"
+"\n"
+"\n"
+"Šie serveri tiek aktivizēti pēc noklusēšanas. Tiem nav nekādu zināmu "
+"drošības\n"
+"trūkumu, bet var tikt atrasti kādi jauni. Tādā gadījumā Jums noteikti tie "
+"jāuzlabo\n"
+"pēc iespējas ātrāk.\n"
+"\n"
+"\n"
+"Vai tiešām vēlaties instalēt šos serverus?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Sekojošas pakotnes tiks noņemtas, lai varētu uzlabot Jūsu sistēmu: %s\n"
+"\n"
+"\n"
+"Vai tiešām vēlaties noņemt šīs pakotnes?\n"
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Tiks instalētas sekojošas pakotnes"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Tīkls"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "Lūdzu izvēlieties"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Fails jau eksistē. Pārrakstīt?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Pieeja liegta"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "pievienoju datu nesēju %s."
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Nevar izveidot ekrāna attēlus pirms sadaļu izveides"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Ekrāna attēli būs pieejami pēc instalēšanas %s."
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Instalēju"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Konfigurācija"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Jums ir jāformatē arī %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Dažu jūsu datora dzelžu darbībai nepieciešami ``firmas'' draiveri.\n"
+"Papildus informāciju varat atrast šeit: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Iedarbinu tīklu"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Atslēdzu tīklu"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "Nosūtu failus..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "Notiek noteikšana"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "nepieciešama"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "svarīga"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "ļoti derīga"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "derīga"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "varbūt"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr ""
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Darbastacija"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Biroja dators"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Biroja programmas: teksta procesori (OpenOffice.org Writer, Kword), "
+"izklājlapas (OpenOffice.org Calc, Kspread), pdf skatītāji, u.c."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Biroja programmas: teksta procesori (kword, abiword), izklājlapas (kspread, "
+"gnumeric), pdf skatītāji, u.c."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Spēļu dators"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Izklaides programmas: arkāde, galdiņspēles, stratēģija u.c."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimēdiju dators"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Skaņas un video atskaņošanas/rediģēšanas programmas"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Interneta dators"
+
+#: share/meta-task/compssUsers.pl:44
+#, fuzzy, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Rīku komplekts, lai lasītu un sūtītu pastu vai jaunumus (pine, mutt, tin..) "
+"un pārlūkotu Tīmekli"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Tīkla dators (klients)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Klienti dažādiem protokoliem, ieskaitot ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Rīki datora konfigurēšanas atvieglošanai"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Konsoles rīki"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Redaktori, čaulas, failu rīki, termināļi"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Izstrāde"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C un C++ izstrādes bibliotēkas, programmas un include faili"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentācija"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Grāmatas un Howto faili par Linux un Brīvo programmatūru"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Web serveris"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, fuzzy, c-format
+msgid "Groupware"
+msgstr "grupa"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab serveris"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Ugunsmūris/Maršrutizators"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Interneta vārteja"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/Fails/_Jauns"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix pasta serveris"
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "Atjanot no CD"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP serveris"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, fuzzy, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Domēna nosaukumu serveris"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Printera serveris"
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "Samba serveris"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Datubāzes"
+
+#: share/meta-task/compssUsers.pl:117
+#, fuzzy, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL vai MySQL datubāzu serveris"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Tīmeklis/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Pasts"
+
+#: share/meta-task/compssUsers.pl:126
+#, fuzzy, c-format
+msgid "Postfix mail server"
+msgstr "Postfix pasta serveris"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL vai MySQL datubāzu serveris"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Tīkla datoru serveris"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS serveris, SMB serveris, Proxy serveris, ssh serveris"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Grafiskā vide"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE darbastacija"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K Desktop Environment, galvenā grafiskā vide kopā ar papildus rīku kolekciju"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Gnome darbastacija"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Grafiskā vide ar lietotājiem draudzīgu programmu komplektu un darbavirsmas "
+"rīkiem"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Darbavirsma"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Citas grafiskās darbavirsmas"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm u.c."
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Utilites"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH serveris"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "Webmin serviss"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Mandriva termināļu servera konfigurācija"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Tīkla konfigurācija"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva Linux kontroles centrs"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "Konfigurēju printeri \"%s\"..."
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Atklāta kļūda, bet es nezinu, kā ar to pareizi apieties.\n"
+"Turpiniet, ja vēlaties riskēt."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Dažas svarīgas pakotnes neizdevās pareizi instalēt.\n"
+"Ir bojāta jūsu kompaktdisku iekārta vai instalācijas disks.\n"
+"Parbaudiet disku uz instalēta datora, izmantojot komandu \"rpm -qpl media/"
+"main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Uzsāku soli `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux instalēšana %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> pāriet"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Jūsu sistēmai trūkst resursu. Mandriva Linux instalēšanas laikā var\n"
+"rasties problēmas. Ja tā notiek, varat pamēģināt teksta instalēšanu.\n"
+"Lai to izdarītu, nospiediet`F1', ka notiek ielāde no CDROM, tad ievadiet\n"
+"`text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Pakotņu grupu izvēle"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Atsevišķu pakotņu izvēle"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Kopējais izmērs: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Slikta pakotne"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versija: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Apjoms: "
+
+#: steps_gtk.pm:316
+#, fuzzy, c-format
+msgid "%d KB\n"
+msgstr "Apjoms: %d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Svarīgums: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Jūs varat izvēlēties/atteikties no šīs pakotnes"
+
+#: steps_gtk.pm:355
+#, fuzzy, c-format
+msgid "due to missing %s"
+msgstr "trūkstošs kdesu"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr ""
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr ""
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr ""
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Jūs nevarat izvēlēties šo pakotni, jo nepietiek vietas tās instalēšanai"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Tiks instalētas sekojošas pakotnes"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Tiks noņemtas sekojošas pakotnes"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Šī ir obligāta pakotne, no tās nevar atteikties"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Jūs nevarat atteikties no šīs pakotnes. Tā jau ir instalēta"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Jūs nevarat atteikties no šīs pakotnes. To ir nepieciešams uzlabot"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Parādīt automātiski izvēlētās pakotnes"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Instalēt"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "Saglabāt iezīmēto"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Atjaunoju pakotņu izvēli"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimāla instalēšana"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Software Management"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Izvēlieties pakotnes, ko vēlaties instalēt"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Instalēju"
+
+#: steps_gtk.pm:468
+#, fuzzy, c-format
+msgid "No details"
+msgstr "Detaļas"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Atlikušais laiks"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Aprēķinu"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pakotnes"
+msgstr[1] "%d pakotnes"
+msgstr[2] "%d pakotnes"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Kopsavilkums"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Konfigurēt"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "not configured"
+msgstr "pārkonfigurēt"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Atklāta kļūda"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Lūdzu izvēlieties jūsu tastatūras izkārtojumu."
+
+#: steps_interactive.pm:99
+#, fuzzy, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Šeit ir pilns pieejamo tastatūru saraksts"
+
+#: steps_interactive.pm:128
+#, fuzzy, c-format
+msgid "Install/Upgrade"
+msgstr "Instalēt/Atjaunināt"
+
+#: steps_interactive.pm:129
+#, fuzzy, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Šī ir instalēšana vai atjaunināšana?"
+
+#: steps_interactive.pm:135
+#, fuzzy, c-format
+msgid "Upgrade %s"
+msgstr "Atjaunināt"
+
+#: steps_interactive.pm:148
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Šifrēšanas atslēga"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Konfigurēju IDE"
+
+#: steps_interactive.pm:221
+#, fuzzy, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Nav 1MB brīvas vietas sāknēšanas programmai! Instalēšana turpināsies, bet "
+"lai ielādētu sistēmu, Jums būs nepieciešams izveidot sāknēšanas programmas "
+"disaka sadaļu programmā DiskDrake"
+
+#: steps_interactive.pm:226
+#, fuzzy, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Nav 1MB brīvas vietas sāknēšanas programmai! Instalēšana turpināsies, bet "
+"lai ielādētu sistēmu, Jums būs nepieciešams izveidot sāknēšanas programmas "
+"disaka sadaļu programmā DiskDrake"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Nomainiet Cd-Rom!\n"
+"\n"
+"Lūdzu ielieciet iekārtā Cd-Rom \"%s\", kad tas ir izdarīts, nospiediet Labi\n"
+"Ja jums nav šī diska, nospiediet Atcelt, lai neinstalētu no šī Cd-Rom."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Meklēju pieejamās pakotnes"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Lūdzu izvēlieties ielādēt vai saglabāt pakotnes no/uz disketes.\n"
+"Formāts ir tāds pats, kā ar auto_install ģenerētām disketēm."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Ielādēt"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Saglabāt"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "Ielādēt failu"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Izvēlētais apjoms ir lielāks nekā pieejamā vieta"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Instalācijas tips"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Jūs neizvēlējāties nevienu pakotņu grupu.\n"
+"Lūdzu, izvēlieties minimālo instalāciju, kādu vēlaties:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Ar X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Ar pamatdokumentāciju (ieteicams!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Patiesi minimāla instalācija (īpaši bez urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Viss"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Sagatavoju instalēšanu"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Instalēju pakotni %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Pakotņu kārtošanas laikā atklāta kļūda:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Tomēr turpināt?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Saglabāt pakotņu izvēli"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Pakotņu instalēšanas laikā atklāta kļūda:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Pēcinstalēšanas konfigurēšana"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr ""
+
+#: steps_interactive.pm:639
+#, fuzzy, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Jums ir iespēja lejuplādēt atjauninātas pakotnes. Šīs pakotnes tika "
+"izlaistas\n"
+"pēc distribūcijas izlaišanas. Tās var saturēt drošības vai kļūdu labojumus.\n"
+"\n"
+"Lai lejuplādētu šīs pakotnes, Jums jabūt darbojošamies Interneta "
+"savienojumam.\n"
+"\n"
+"Vai Jūs vēlaties instalēt jauninājumus?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Pieslēdzos spoguļserverim, lai saņemtu pieejamo pakotņu sarakstu"
+
+#: steps_interactive.pm:666
+#, fuzzy, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Nevar atdalīt: %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Dzelži"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Skaņas karte"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Vai Jums ir ISA skaņas karte?"
+
+#: steps_interactive.pm:811
+#, fuzzy, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr "Pēc instalēšanas palaidiet \"sndconfig\", lai konfigurētu skaņu karti"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Nav atrasta skaņu karte. Pēc instalēšanas izmēģiniet \"harddrake\""
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV karte"
+
+#: steps_interactive.pm:833
+#, fuzzy, c-format
+msgid "Graphical interface"
+msgstr "X pēc startēšanas"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Tīkls & Internets"
+
+#: steps_interactive.pm:851
+#, fuzzy, c-format
+msgid "Proxies"
+msgstr "Profils: "
+
+#: steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "configured"
+msgstr "pārkonfigurēt"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Drošības Līmenis"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Ugunssiena"
+
+#: steps_interactive.pm:880
+#, fuzzy, c-format
+msgid "activated"
+msgstr "aktivizēt"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "aizliegts"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Sāknēt"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s uz %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Sagatavoju sāknētāju"
+
+#: steps_interactive.pm:977
+#, fuzzy, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Izskatās, ka Jums ir nezināmas izcelsmes dators,\n"
+"yaboot ielādētājs nedarbosies.\n"
+"Instalēšana turpināsies, bet Jums būs jāizmanto\n"
+"BootX, lai ielādētu datoru"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Vai vēlaties izmantot aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Kļūda, instalējot aboot, \n"
+"vai instalēt piespiedu kārtā pat tad, ja tiks iznīcināta pirmā sadaļa?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Ielieciet tukšu disketi iekārtā %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Sagatavoju auto instalēšanas disketi"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Daži soļi nav izpildīti.\n"
+"\n"
+"Vai tiešām vēlaties iziet tūlīt?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Apsveicam"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Pārstartēt"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Sagatavot auto instalēšanas disketi"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Atkārtot"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automātisks"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Saglabāt pakotņu izvēli"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Valodas izvēle"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licence"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Pele"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Cietā diska noteikšana"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Tastatūra"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Drošība"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr ""
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Instalēju"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Autentifikācija"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Lietotāji"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Tīkli"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr ""
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "X konfigurēšana"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Kopsavilkums"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Servisi"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr ""
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Iziet"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d pakotnes"
+#~ msgstr[1] "%d pakotnes"
+#~ msgstr[2] "%d pakotnes"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pakotnes"
+
+#~ msgid "Language"
+#~ msgstr "Valodas izvēle"
+
+#~ msgid "License"
+#~ msgstr "Licence"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Instalēšanas klases izvēle"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Aprēķinu"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Instalējamo pakotņu izvēle"
+
+#~ msgid "Users"
+#~ msgstr "Lietotāji"
+
+#~ msgid "Networking"
+#~ msgstr "Tīkli"
+
+#~ msgid "Configure X"
+#~ msgstr "X konfigurēšana"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Nevar piekļūt kodola moduļiem, atbilstošiem Jūsu kodolam (fails %s nav "
+#~ "atrodams), parasti tas nozīmē, ka ielādes diskete nav sinhronizēta ar "
+#~ "instalācijas datu nesēju (lūdzu izveidojiet jaunāku ielādes disketi)"
diff --git a/perl-install/install/share/po/mk.po b/perl-install/install/share/po/mk.po
new file mode 100644
index 000000000..a52d6b330
--- /dev/null
+++ b/perl-install/install/share/po/mk.po
@@ -0,0 +1,1635 @@
+# translation of DrakX-mk.po to Macedonian
+# Copyright (C) 2002,2003, 2004, 2006 Free Software Foundation, Inc.
+#
+# Danko Ilik <danko@mindless.com>, 2002,2003.
+# Vladimir Stefanov <vladoboss@mt.net.mk>, 2003.
+# Зоран Димовски <zoki@email.com>, 2003.
+# Danko Ilik <danko@on.net.mk>, 2003.
+# Зоран Димовски <decata@mt.net.mk>, 2004.
+# Zoran Dimovski <zoki.dimovski@gmail.com>, 2006.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-mk\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2006-09-24 20:39-0700\n"
+"Last-Translator: Zoran Dimovski <zoki.dimovski@gmail.com>\n"
+"Language-Team: Macedonian <mkde-l10n@lists.sourceforge.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2; plural= n==1 || n%10==1 ? 0 : 1\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Дали имате уште додатни медиуми?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Пронајдени се следниве медиуми и ќе се користат во текот на инсталацијата: %"
+"s.\n"
+"\n"
+"\n"
+"Дали имате додатен инсталационен медиум за конфигурирање?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Мрежа (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Мрежа (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Мрежа (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL на огледалото?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "URL-то мора да започнува со „ftp://“ или „http://“"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Контактирање со веб сајтот на Мандрива Линукс за добивање на листата на "
+"огледала..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Не може да се воспостави врска веб страница на „Mandriva Linux“ за да се "
+"добие листата на достапни огледала"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Изберете огледало од кое да се преземат пакетите"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Поставување на „NFS“"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+"Ве молиме внесете го името на домаќинот и директориумот на вашиот „NFS“ "
+"медиум"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Име на домаќинот каде е монтиран „NFS“ ?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Директориум"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Не мојажам да ја пронајдам hdlist датотеката на ова огледало"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Барање пакети што се веќе инсталирањен..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Отстранување на пакети поради надградување..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Барање пакети за надградба..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Сте ги избрале следниве сервери: %s\n"
+"\n"
+"Овие сервери се активираат автоматски. Тие немаат никакви познати стари\n"
+"сигурносни проблеми, но можно е да се појават нови. Во тој случај, треба да\n"
+"ги надградите пакетите што е можно побрзо.\n"
+"\n"
+"\n"
+"Дали навистина сакате да ги инсталирате овие сервери?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Следниве пакети ќе бидат отстранети за да се овозможи надградба на Вашиот\n"
+"систем: %s\n"
+"\n"
+"\n"
+"Дали навистина сакате да се избришат овие пакети?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Следниве дискови се преименувани:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (претходно именувано како %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Мрежа"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Ве молиме изберете медиум"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Датотеката веќе постои. Да се запише врз неа?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Недозволен пристап"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Лошо „NFS“ име"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Невалиден медиум %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Не можат да се прават снимки на екран пред партицирање"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Екранските снимки ќе бидат достапни по инсталацијата во %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Инсталација"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Конфигурација"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Мора да го форматирате и %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"На дел од хардверот на Вашиот компјутер му се потребни \"затворени\"\n"
+"(proprietary) драјвери за да работи. Некои информации за тоа можете\n"
+"да најдете на: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Подигање на мрежата"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Спуштање на мрежата"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Снимање на датотека %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Копирање на некои пакети на дискот за понатамошна употреба"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Копирањето е во тек"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "мора да се има"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "важно"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "одлично"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "убаво"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "можеби"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3Д"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "производна линија 2007"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Несовладлив заштитен ѕид"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "`"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Како да се регистрирате"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "„Mandriva Online“ сервиси"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Нова тема"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Веб 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Работна станица"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Канцелариски"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Канцелариски програми: обработка на текст (OpenOffice.org Writer, Kword), "
+"табеларни пресметки (OpenOffice.org Calc, Kspread), прегледувачи на „PDF“ "
+"итн."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Канцелариски програми: обработка на текст (kword, abiword), табеларни "
+"пресметки (kspread, gnumeric), прегледувачи на „pdf“ итн."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Станица за игри"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Забавни програми: аркадни, на табла, стратегија, итн."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Мултимедијална станица"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Програми за пуштање и уредување на звук и видео"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Интернет станица"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Комплет алатки за читање и пракање е-пошта и вести (mutt, tin..) и "
+"прелистување на Интернет"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Мрежен компјутер (клиент)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Клиенти за различни протоколи, вклучувајќи и „ssh“"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Алатки за лесно конфигурирање на вашиот компјутер"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Конзолски алатки"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Уредувачи, школки, алатки за датотеки, терминали"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Развој"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Развивачки датотеки за „C“ и „C++“, програми и „include“ датотеки"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Документација"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Книги и „Како да“ за „Linux“ и слободен софтвер"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "„Linux Standard Base“. Поддршка за апликации од други фирми"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Веб сервер"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Групи"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab Сервер"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Firewall/Router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Интернет gateway"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Пошта/Вести"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "„Postfix“ сервер за пошта, „Inn“ сервер за вести"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Директориумски сервер"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "„FTP“ сервер"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Име на доменот и сервер за мрежни информации"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Сервер за споделување на датотеки и печатач"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "„NFS“ сервер, „Samba“ сервер"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "База на податоци"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "„PostgreSQL“ и „MySQL“ сервер за бази на податоци"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Пошта"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix сервер за пошта"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "„PostgreSQL“ или „MySQL“ сервер за бази на податоци"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Мрежен компјутер-сервер"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "„NFS“ сервер, „SMB“ сервер, „Proxy“ сервер, „ssh“ сервер"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Графичка околина"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "„KDE“ работна станица"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"„К“ работна околина, основната графичка околина со додатна колекција на "
+"придружни алатки"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "„GNOME“ работна станица"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Графичка околина со кориснички пакет на алатки и алатки за работната површина"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "„IceWm“ работна површина"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Други графички работни околини"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, итн."
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Помошни алатки"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH Сервер"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "„Webmin“"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "„Webmin“ оддалечен сервер за конфигурирање"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Мрежни помошни алатки/надгледување"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Алатки за надгледување, раководење на процеси, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "„Mandriva“ волшебници"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Волшебници за конфигурирање на сервер"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Се случи грешка, но не знам како добро да се справам со неа.\n"
+"Продолжете на сопствен ризик."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Некои важни пакети не се инсталираа како што треба.\n"
+"Нешто не е во ред, или со Вашиот цедером или со цедеата.\n"
+"Проверете ги цедеата на инсталиран компјутер користејќи\n"
+"\"rpm -qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Премин на чекор \"%s\"\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux Инсталација %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> помеѓу елементи"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Вашиот систем е слаб со ресурси. Може да Ви се појават проблеми\n"
+"при инсталирање. Ако тоа се случи, пробајте со текстуална инсталација.\n"
+"За тоа, притиснете \"F1\" кога ќе се подигне цедеромот, и потоа внесете\n"
+"\"text\"."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Групна селекција на пакети"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Подделна селекција на пакети"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Вкупна големина: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Лош пакет"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Верзија:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Големина: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Важност: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Не можете да (не) го изберете овој пакет"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "поради недостасување на %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "поради незадоволување на %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "се обидувам да промовирам %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "за да се задржи %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Не можете да го изберете овој пакет, зашто нема доволно простор да се "
+"инсталира"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Ќе бидат инсталирани следниве пакети"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Следниве пакети ќе бидат отстранети"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Ова е неопходен пакет, и не може да не се избере"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Не може да не го изберете овој пакет. Веќе е инсталиран"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr ""
+"Не можете да не го изберете овој пакет. Тој мора да се надгради (upgrade)"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Прикажи ги автоматски избраните пакети"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Инсталирај"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Вчитај/зачувај избор"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Освежување на изборот на пакети"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Минимална инсталација"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Менаџмент на софтвер"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Изберете ги пакетите што сакате да се инсталираат"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Инсталирање"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Без детали"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Преостанато време "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Проценка"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d пакети"
+msgstr[1] "%d пакети"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Резиме"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Конфигурирај"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "не е конфигурирано"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Пронајдени се следниве инсталациски медиуми.\n"
+"Ако сакате да отстранете некои, можете сега да ги дештиклирате."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Имате опција да ја копирате содржината на CD-ата на дискот, пред самата "
+"инсталација.\n"
+"Потоа, инсталацијата ќе продолжи од хард дискот и пакетите ќе бидат достапни "
+"се додека системот е целосно инсталиран."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Копирај ги сите CD-а"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Се случи грешка"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Изберете распоред на тастатура."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Ова е целосна листа на достапни тастатури"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Инсталирај/Надогради"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Дали е ова инсталација или надградба?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Надгради %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Криптирачки клуч за %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Конфигурирање на IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Нема слободен простор за bootstrap од 1МБ! Инсталацијата ќе продолжи, но за "
+"да го подигнете Вашиот систем, ќе треба да креирате bootstrap партиција во "
+"DiskDrake"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Треба да креирате „PPC PReP Boot“ подигнување! Инсталацијата ќе продолжи, но "
+"за да го вклучите вашиот систем, ќе треба да креирате партиција за "
+"подигнување во „DiskDrake“"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Сменете го CD-то!\n"
+"\n"
+"Внесете го CD-то со наслов \"%s\" во вашиот уред и притиснете \"Во ред\".\n"
+"Ако го немате, притиснете \"Откажи\" за да не инсталирате од ова CD."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Барање достапни пакети..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Ве молиме изберете „вчитај“ или „зачувај“ го изборот на пакети\n"
+"Форматот е ист како за генерирани датотеки од „auto_install“."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Вчитај"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Зачувај"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Лоша датотека"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Избраната големина е поголема од слободниот простор"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Тип на инсталација"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Не сте избрале ниту една група пакети.\n"
+"Изберете ја минималната инсталација што ја сакате:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Со X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Со основна документација (препорачано!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Вистински минимална инсталација (без urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Сите"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Подготовка на инсталацијата"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Инсталирање на пакетот %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Се случи грешка во подредувањето на пакетите:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Да продолжиме?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Зачувување на селекцијата пакети"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Се случи грешка во инсталирањето на пакетите:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Пост-инсталациона конфигурација"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+"Ве молиме проверете дали медиумот со модулите за надградување е во уредот %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Надградби"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Имате можност да преземете надградени пакети. Овие пакети се издадени\n"
+"по издавањето на дистрибуцијата. Можно е да содржат поправки на\n"
+"грешки или безбедност.\n"
+"\n"
+"За преземање на овие пакети, потребно е да имате функционална Интернет\n"
+"врска.\n"
+"\n"
+"Дали сакате да ги инсталирате надградбите?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Контактирање со огледалото за добивање листа на достапни пакети..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Не можеше да контактира со другиот %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Хардвер(машински дел)"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Звучна картичка"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Дали имате ISA звучна картичка?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"По инсталацијата вклучете \"alsaconf\" или \"sndconfig\" за да ја "
+"конфигурирате звучаната картичка"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Не е детектирана звучна картичка. Обидете се со \"harddrake\" по "
+"инсталацијата"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "ТВ картичка"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Графички интерфејс"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Мрежа и Интернет"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Прокси"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "конфигурирано"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Ниво на сигурност"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Firewall"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "активиран"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "оневозможено"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Подигање"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s на %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Се уште го ш конфигурирано Х. Дали навистина сакаш да го направиш ова?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Подговтвување на подигачот..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Изгледа дека имате стара или непозната машина, затоа „yaboot“ подигнувачот "
+"нема да работи. Инсталацијата ќе продолжи, но ќе треба да користите „BootX“ "
+"или некои други средства за подигнување на вашата машина. Аргументот на "
+"кернелот за „root fs“ е следниов: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Дали сакате да го користите aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Грешка при инсталирање aboot. \n"
+"Да се обидеме со сила, иако тоа може да ја уништи првата партиција?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Во ова безбедносно ниво, пристап до датотеките кои се наоѓаат на „Windows“ "
+"партицијата е дозволен само на администраторот."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Внесете празна дискета во %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Создавање дискета за авто-инсталација..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Некои чекори не се завршени.\n"
+"\n"
+"Дали навистина сакате сега да напуштите?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Честитки"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Рестартирај"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Генерирање дискета за авто-инсталација"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Автоматската инсталација може да биде целосно автоматска,\n"
+"но во тој случај таа ќе го преземе дискот!!\n"
+"(ова е наменето за инсталирање на друга машина).\n"
+"\n"
+"Можеби претпочитате да ја репризирате (replay) инсталацијата.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Реприза"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Автоматска"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Зачувување на селекцијата пакети"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Јазик"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Лиценца"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Глушец"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Детекција на хард дискот"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Класа на инсталација"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Тастатура"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Безбедност"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Партиционирање"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Форматирање"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Избирање на пакети"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Инсталирање"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Автентикација"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Корисници"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Мрежа"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Подигач"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Конфигурирај Х"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Резиме"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Сервиси"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Надградби"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Излез"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d пакети"
+#~ msgstr[1] "%d пакети"
+
+#~ msgid "%d packages"
+#~ msgstr "%d пакети"
+
+#~ msgid "Language"
+#~ msgstr "Јазик"
+
+#~ msgid "License"
+#~ msgstr "Лиценца"
+
+#~ msgid "Installation class"
+#~ msgstr "Класа на инсталација"
+
+#~ msgid "Formatting"
+#~ msgstr "Форматирање"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Избирање на пакети"
+
+#~ msgid "Users"
+#~ msgstr "Корисници"
+
+#~ msgid "Networking"
+#~ msgstr "Мрежа"
+
+#~ msgid "Configure X"
+#~ msgstr "Конфигурирај Х"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Нема пристап до модулите на јадрото за Вашето јадро (датотеката %s "
+#~ "недостига). Ова обично значи дека Вашата boot-дискета не е синхронизирана "
+#~ "со инсталациониот медиум (креирајте понова boot-дискета)"
diff --git a/perl-install/install/share/po/mn.po b/perl-install/install/share/po/mn.po
new file mode 100644
index 000000000..51cf8a03d
--- /dev/null
+++ b/perl-install/install/share/po/mn.po
@@ -0,0 +1,1528 @@
+# translation of DrakX.po to Mongolian
+# Copyright (C) 2003, 2004 Free Software Foundation, Inc.
+# Khurelbaatar Lkhagavsuren <hujii247@yahoo.com>, 2003.
+# Khurelbaatar Lkhagvasuren <hujii247@yahoo.com>, 2003.
+# Sanlig Badral <Badral@openmn.org>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2004-01-02 00:35+0100\n"
+"Last-Translator: Sanlig Badral <Badral@openmn.org>\n"
+"Language-Team: Mongolian <openmn-core@lists.sf.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.0.2\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Та ямар нэгэн %s гэсэн харагдалттай юу?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "КД-РОМ"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "Сүлжээ"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "Сүлжээ"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, fuzzy, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr "сайт жигсаалт аас."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr "сайт жигсаалт аас."
+
+#: any.pm:244
+#, fuzzy, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Сонгох"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Лавлах"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "%s: %s-ийг холбож чадахгүй: %s\n"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr ""
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Дараах багцууд суулгагдах гэж байна"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, fuzzy, c-format
+msgid "NFS"
+msgstr "ТЭ"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Сүлжээ"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr ""
+"Нөөцлөх зөөврийн төхөөрөмжөө\n"
+"сонгоно уу."
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Файл?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Хандалт нурлаа"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr ""
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Хуваалт үүсгэхийн өмнө агшин дэлгэцүүдийг хийж чадахгүй"
+
+#: any.pm:1301
+#, fuzzy, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "ямх"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Суулгалт"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Тохиргоо"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr ""
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr ""
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr ""
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "Файлууд илгээж байна..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "ямх"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr ""
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr ""
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "маш аятайхан"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "аятайхан"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "магадгүй"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr ""
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:25
+#, fuzzy, c-format
+msgid "Office Workstation"
+msgstr "Албан газар"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:33
+#, fuzzy, c-format
+msgid "Game station"
+msgstr "Тоглоом"
+
+#: share/meta-task/compssUsers.pl:34
+#, fuzzy, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Зугаа цэнгэл"
+
+#: share/meta-task/compssUsers.pl:37
+#, fuzzy, c-format
+msgid "Multimedia station"
+msgstr "Мультимедиа"
+
+#: share/meta-task/compssUsers.pl:38
+#, fuzzy, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Дуу"
+
+#: share/meta-task/compssUsers.pl:43
+#, fuzzy, c-format
+msgid "Internet station"
+msgstr "Интернэт"
+
+#: share/meta-task/compssUsers.pl:44
+#, fuzzy, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr "аас"
+
+#: share/meta-task/compssUsers.pl:49
+#, fuzzy, c-format
+msgid "Network Computer (client)"
+msgstr "Сүлжээ"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:55
+#, fuzzy, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "аас"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:60
+#, fuzzy, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Засварлагчууд"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Хөгжүүлэл"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, fuzzy, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C C"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Баримтжуулалт"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, fuzzy, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Стандарт"
+
+#: share/meta-task/compssUsers.pl:84
+#, fuzzy, c-format
+msgid "Web Server"
+msgstr "Вэб"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:88
+#, fuzzy, c-format
+msgid "Groupware"
+msgstr "бүлэг"
+
+#: share/meta-task/compssUsers.pl:89
+#, fuzzy, c-format
+msgid "Kolab Server"
+msgstr "Самба"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Интернэт гарц"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/Файл/_Шинэ"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Мэйл"
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "Сэргээх Илгээгч"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP Сервер"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:109
+#, fuzzy, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Домэйн Нэрний Сервер"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Хэвлэгч"
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "Самба"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Өгөгдлийн сан"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Мэйл"
+
+#: share/meta-task/compssUsers.pl:126
+#, fuzzy, c-format
+msgid "Postfix mail server"
+msgstr "Мэйл"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:137
+#, fuzzy, c-format
+msgid "Network Computer server"
+msgstr "Сүлжээ"
+
+#: share/meta-task/compssUsers.pl:138
+#, fuzzy, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Итгэмжилэгч"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:146
+#, fuzzy, c-format
+msgid "KDE Workstation"
+msgstr "KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, fuzzy, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "Ажилын талбар аас"
+
+#: share/meta-task/compssUsers.pl:151
+#, fuzzy, c-format
+msgid "GNOME Workstation"
+msgstr "KDE"
+
+#: share/meta-task/compssUsers.pl:152
+#, fuzzy, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "аас"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Ширээний компьютер"
+
+#: share/meta-task/compssUsers.pl:159
+#, fuzzy, c-format
+msgid "Other Graphical Desktops"
+msgstr "Бусад"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Цонх"
+
+#: share/meta-task/compssUsers.pl:183
+#, fuzzy, c-format
+msgid "Utilities"
+msgstr "Филлипинни"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "Вэб дуран"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Терминал Сервер"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Сүлжээ толидох"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "Мандрива удирдлагын төв"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "\"%s\" хэвлэгч дээр хэвлэж байна"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+
+#: steps.pm:426
+#, fuzzy, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr "бол"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr ""
+
+#: steps_curses.pm:22
+#, fuzzy, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Мандрива удирдлагын төв"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr ""
+
+#: steps_gtk.pm:195
+#, fuzzy, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr "бол Та вы текст текст."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, fuzzy, c-format
+msgid "Package Group Selection"
+msgstr "Пакет Групп"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Тусдаа дан багц сонгох"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, fuzzy, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Нийт хэмжээ"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Тааруухан багц"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Хувилбар: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Хэмжээ: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d КБ\n"
+
+#: steps_gtk.pm:317
+#, fuzzy, c-format
+msgid "Importance: "
+msgstr "Цонтууд импортлох"
+
+#: steps_gtk.pm:351
+#, fuzzy, c-format
+msgid "You can not select/unselect this package"
+msgstr "Та"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr ""
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr ""
+
+#: steps_gtk.pm:357
+#, fuzzy, c-format
+msgid "trying to promote %s"
+msgstr "Юу ч үгүй"
+
+#: steps_gtk.pm:358
+#, fuzzy, c-format
+msgid "in order to keep %s"
+msgstr "ямх"
+
+#: steps_gtk.pm:363
+#, fuzzy, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "Та бол зүүн"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Дараах багцууд суулгагдах гэж байна"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr ""
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr ""
+
+#: steps_gtk.pm:394
+#, fuzzy, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Та бол"
+
+#: steps_gtk.pm:396
+#, fuzzy, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Та"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Автоматаар сонгогдсон багцуудыг харуулах"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Суулга"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "Пакет"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr ""
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr ""
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr ""
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Сонгохыг хүсэж буй багцаа сонгоно уу"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Суулгалт"
+
+#: steps_gtk.pm:468
+#, fuzzy, c-format
+msgid "No details"
+msgstr "Үгүй"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Үлдэж буй хугацаа"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr ""
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "Тааруухан багц"
+msgstr[1] "Тааруухан багц"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Дүгнэлт"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Тохируулах"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr ""
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr ""
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Та гарын байрлалаа сонгоно уу."
+
+#: steps_interactive.pm:99
+#, fuzzy, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "бол бүрэн жигсаалт аас"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr ""
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr ""
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr ""
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr ""
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr ""
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE-г тохируулах"
+
+#: steps_interactive.pm:221
+#, fuzzy, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr "Үгүй вы ямх"
+
+#: steps_interactive.pm:226
+#, fuzzy, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr "Үгүй вы ямх"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr ""
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr "ачаалах бол."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Процессор ачаалж байна"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Хадгалах"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "Файлыг ачаалах"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Сонгогдсон хэмжээ нь боломжтой зайнаас их байна"
+
+#: steps_interactive.pm:483
+#, fuzzy, c-format
+msgid "Type of install"
+msgstr "Төрөл аас"
+
+#: steps_interactive.pm:484
+#, fuzzy, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr "Та бүлэг аас вы:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr ""
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr ""
+
+#: steps_interactive.pm:489
+#, fuzzy, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "үгүй"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Бүгд"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Суулгалтын бэлтгэл"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr ""
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr ""
+
+#: steps_interactive.pm:576
+#, fuzzy, c-format
+msgid "Go on anyway?"
+msgstr "Очих?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Хадгалах"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Багцуудыг суулгахад алдаа гарлаа:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Суулгалтын тохируулгыг батал"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr ""
+
+#: steps_interactive.pm:639
+#, fuzzy, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr "Та г вы Интернэт г вы?"
+
+#: steps_interactive.pm:660
+#, fuzzy, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "жигсаалт аас."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr ""
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Техник хангамж"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Дууны карт"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Та ISA дууны карттай юу?"
+
+#: steps_interactive.pm:811
+#, fuzzy, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr "Ажиллуулах"
+
+#: steps_interactive.pm:813
+#, fuzzy, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Үгүй Reyna"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr ""
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr ""
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, fuzzy, c-format
+msgid "Network & Internet"
+msgstr "Сүлжээ"
+
+#: steps_interactive.pm:851
+#, fuzzy, c-format
+msgid "Proxies"
+msgstr "Польш"
+
+#: steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "configured"
+msgstr "Тохируулах"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Хамгаалалтын төвшин"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr ""
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr ""
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "хаалттай"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Эхлүүлэл"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s -д %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Та Х-г тохируулаагүй байна. Та үүнийг хийхдээ итгэлтэй байна уу?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr ""
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+
+#: steps_interactive.pm:983
+#, fuzzy, c-format
+msgid "Do you want to use aboot?"
+msgstr "вы?"
+
+#: steps_interactive.pm:986
+#, fuzzy, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr "Алдаа?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, fuzzy, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Оруулах ямх"
+
+#: steps_interactive.pm:1034
+#, fuzzy, c-format
+msgid "Creating auto install floppy..."
+msgstr "Үүсгэж байна."
+
+#: steps_interactive.pm:1045
+#, fuzzy, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr "г вы?"
+
+#: steps_interactive.pm:1055
+#, fuzzy, c-format
+msgid "Congratulations"
+msgstr "Баяр хүргэе!"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Дахин ачаал"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr ""
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr ""
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr ""
+
+#: steps_interactive.pm:1073
+#, fuzzy, c-format
+msgid "Save packages selection"
+msgstr "Хадгалах"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Хэл"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr ""
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Хулгана"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Хатуу диск хөтлөгч танилт"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Гар"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Нууцлал"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr ""
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Суулгалт"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Баталгаажуулалт"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Хэрэглэгчид"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Сүлжээ"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr ""
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr ""
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Дүгнэлт"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Үйлчилгээ"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr ""
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Гарах"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "Тааруухан багц"
+#~ msgstr[1] "Тааруухан багц"
+
+#~ msgid "Language"
+#~ msgstr "Хэл"
+
+#, fuzzy
+#~ msgid "License"
+#~ msgstr "Лиценз"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Суулгалтын ангилалыг сонгох"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Формат"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Сонгох"
+
+#~ msgid "Users"
+#~ msgstr "Хэрэглэгчид"
+
+#~ msgid "Networking"
+#~ msgstr "Сүлжээ"
+
+#, fuzzy
+#~ msgid "Configure X"
+#~ msgstr "Тохируулах"
diff --git a/perl-install/install/share/po/ms.po b/perl-install/install/share/po/ms.po
new file mode 100644
index 000000000..6bf11f780
--- /dev/null
+++ b/perl-install/install/share/po/ms.po
@@ -0,0 +1,1543 @@
+# DrakX Bahasa Melayu (Malay) (ms).
+# Copyright (C) 2003 Free Software Foundation, Inc.
+# Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>, 2003
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2006-02-19 14:09+0800\n"
+"Last-Translator: Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>\n"
+"Language-Team: Malay <translation-team-ms@lists.sourceforge.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Masukkan fail lain ke file semasa"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "Tetapan HTTP"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "Tetapan FTP"
+
+#: any.pm:173
+#, fuzzy, c-format
+msgid "Network (NFS)"
+msgstr "Imej NFS"
+
+#: any.pm:212
+#, fuzzy, c-format
+msgid "URL of the mirror?"
+msgstr "URL Autokonfigurasi:"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr ""
+
+#: any.pm:274
+#, fuzzy, c-format
+msgid "NFS setup"
+msgstr "Tetapan NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, fuzzy, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Titik lekapan NFS"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Direktori"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Ralat pada baris %d: %s"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr ""
+
+#: any.pm:383
+#, fuzzy, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Ralat berlaku bila mencari pakej untuk dinaiktaraf."
+
+#: any.pm:426
+#, fuzzy, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Mencari pakej untuk dinaiktaraf..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, fuzzy, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr "default Masuk"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Peranti audio berikut telah dikesan."
+
+#: any.pm:1083
+#, fuzzy, c-format
+msgid "%s (previously named as %s)"
+msgstr "Format sebagai Swap?"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Rangkaian"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "Pilih jenis media"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Fail Khas peranti telah wujud dalam gugusan"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Izin ditolak"
+
+#: any.pm:1231
+#, fuzzy, c-format
+msgid "Bad NFS name"
+msgstr "Nama pelayan NFS:"
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "Pemeriksaan Media"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr ""
+
+#: any.pm:1301
+#, fuzzy, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "dalam"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Memasang"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Konfigurasikan"
+
+#: install2.pm:165
+#, fuzzy, c-format
+msgid "You must also format %s"
+msgstr "Anda mesti masukkan direktori."
+
+#: interactive.pm:16
+#, fuzzy, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr "on"
+
+#: interactive.pm:22
+#, fuzzy, c-format
+msgid "Bringing up the network"
+msgstr "Menaikkan antaramuka $i: "
+
+#: interactive.pm:27
+#, fuzzy, c-format
+msgid "Bringing down the network"
+msgstr "Mematikan daemon palam rangkaian: "
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "Menyalin Fail"
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "Segerak sedang berjalan"
+
+#: pkgs.pm:27
+#, fuzzy, c-format
+msgid "must have"
+msgstr "Mesti nyatakan nilai"
+
+#: pkgs.pm:28
+#, fuzzy, c-format
+msgid "important"
+msgstr "Nota penting:"
+
+#: pkgs.pm:29
+#, fuzzy, c-format
+msgid "very nice"
+msgstr "Sangat Tinggi"
+
+#: pkgs.pm:30
+#, fuzzy, c-format
+msgid "nice"
+msgstr "Bantuan yang mulia"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr ""
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr ""
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, fuzzy, c-format
+msgid "Invictus Firewall"
+msgstr "_Konfigurasikan Firewall"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, fuzzy, c-format
+msgid "New Theme"
+msgstr "Tambah alamat baru..."
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "StesyenKerja"
+
+#: share/meta-task/compssUsers.pl:25
+#, fuzzy, c-format
+msgid "Office Workstation"
+msgstr "StesyenKerja Default"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:33
+#, fuzzy, c-format
+msgid "Game station"
+msgstr "Permainan memori"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:37
+#, fuzzy, c-format
+msgid "Multimedia station"
+msgstr "Menu multimedia"
+
+#: share/meta-task/compssUsers.pl:38
+#, fuzzy, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Bunyi dan"
+
+#: share/meta-task/compssUsers.pl:43
+#, fuzzy, c-format
+msgid "Internet station"
+msgstr "Internet Bergrafik"
+
+#: share/meta-task/compssUsers.pl:44
+#, fuzzy, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr "dan dan dan"
+
+#: share/meta-task/compssUsers.pl:49
+#, fuzzy, c-format
+msgid "Network Computer (client)"
+msgstr "Memulakan sm-client: "
+
+#: share/meta-task/compssUsers.pl:50
+#, fuzzy, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "protokol"
+
+#: share/meta-task/compssUsers.pl:55
+#, fuzzy, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Ujian"
+
+#: share/meta-task/compssUsers.pl:59
+#, fuzzy, c-format
+msgid "Console Tools"
+msgstr "Alatan Pentadbiran"
+
+#: share/meta-task/compssUsers.pl:60
+#, fuzzy, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Penyunting fail"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Pembangunan"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, fuzzy, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Pustaka dan fail selitan untuk Oaf."
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentasi"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, fuzzy, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "dan on dan Bebas"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, fuzzy, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Asas"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Pelayan Web"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, fuzzy, c-format
+msgid "Kolab Server"
+msgstr "Pelayan Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, fuzzy, c-format
+msgid "Firewall/Router"
+msgstr "_Konfigurasikan Firewall"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, fuzzy, c-format
+msgid "Internet gateway"
+msgstr "Gateway Tidak Sah"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "Pelayan Berita"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Sistem InterNetNews (INN), pelayan berita Usenet."
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Pelayan Direktori"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Pelayan FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, fuzzy, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Name=Pelayan Fail Awam"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "(%ld)PELAYAN >>> %s"
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "Konfigurasi Pelayan Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Pangkalan Data"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Mel"
+
+#: share/meta-task/compssUsers.pl:126
+#, fuzzy, c-format
+msgid "Postfix mail server"
+msgstr "Pelayan Mel (SMTP)"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:137
+#, fuzzy, c-format
+msgid "Network Computer server"
+msgstr "Pelayan Rangkaian Lama"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:144
+#, fuzzy, c-format
+msgid "Graphical Environment"
+msgstr "Pembolehubah Persekitaran"
+
+#: share/meta-task/compssUsers.pl:146
+#, fuzzy, c-format
+msgid "KDE Workstation"
+msgstr "StesyenKerja Default"
+
+#: share/meta-task/compssUsers.pl:147
+#, fuzzy, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "Desktop Persekitaran asas"
+
+#: share/meta-task/compssUsers.pl:151
+#, fuzzy, c-format
+msgid "GNOME Workstation"
+msgstr "StesyenKerja Default"
+
+#: share/meta-task/compssUsers.pl:152
+#, fuzzy, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "A pengguna dan"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Desktop Default:"
+
+#: share/meta-task/compssUsers.pl:159
+#, fuzzy, c-format
+msgid "Other Graphical Desktops"
+msgstr "Pada Semua Desktop"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Utiliti"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, fuzzy, c-format
+msgid "SSH Server"
+msgstr "_Pelayan NIS:"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Alatan Tetapan Pelayan NFS"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Aplet pengawas rangkaian"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "Wizard pelayan"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "Sila tetapkan pelayan PXE"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Ralat telah berlaku, tetapi saya tidak tahu bagaimana untuk mengawalnya "
+"dengan baik.\n"
+"Teruskan atas risiko anda."
+
+#: steps.pm:426
+#, fuzzy, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr "on"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, fuzzy, c-format
+msgid "Entering step `%s'\n"
+msgstr "Memasuki permulaan interaktif"
+
+#: steps_curses.pm:22
+#, fuzzy, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Arahan Pemasangan - Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr ""
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, fuzzy, c-format
+msgid "Package Group Selection"
+msgstr "Pemilihan Kumpulan Pakej"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, fuzzy, c-format
+msgid "Individual package selection"
+msgstr "Pemilihan Pakej Satu Persatu"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, fuzzy, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Saiz dicadangkan (MB):"
+
+#: steps_gtk.pm:313
+#, fuzzy, c-format
+msgid "Bad package"
+msgstr "Pakej Hilang"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versi: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Saiz: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr ""
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr ""
+
+#: steps_gtk.pm:355
+#, fuzzy, c-format
+msgid "due to missing %s"
+msgstr "kerana kehilangan %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "kerana ketidakpuasan %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "cuba untuk menaikkan %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "untuk menyimpan %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+
+#: steps_gtk.pm:366
+#, fuzzy, c-format
+msgid "The following packages are going to be installed"
+msgstr ""
+"Untuk memenuhi kebergantungan, %d pakej berikut perlu dipasang:\n"
+"%s\n"
+
+#: steps_gtk.pm:367
+#, fuzzy, c-format
+msgid "The following packages are going to be removed"
+msgstr ""
+"Untuk memenuhi kebergantungan, %d pakej berikut perlu dipasang:\n"
+"%s\n"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr ""
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr ""
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr ""
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr ""
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Pasang"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "/Simpan/Muat pra-tetap auto"
+
+#: steps_gtk.pm:406
+#, fuzzy, c-format
+msgid "Updating package selection"
+msgstr "Pemilihan Pakej Satu Persatu"
+
+#: steps_gtk.pm:411
+#, fuzzy, c-format
+msgid "Minimal install"
+msgstr "Tetingkap Pemasangan"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Pengurusan Perisian"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, fuzzy, c-format
+msgid "Choose the packages you want to install"
+msgstr "Dimana anda ingin pemuatbut ini dipasang?"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Memasang"
+
+#: steps_gtk.pm:468
+#, fuzzy, c-format
+msgid "No details"
+msgstr "Perincian bagi '%s'"
+
+#: steps_gtk.pm:483
+#, fuzzy, c-format
+msgid "Time remaining "
+msgstr "/Masa yang Tinggal"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr ""
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] " Pakej"
+msgstr[1] " Pakej"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Ringkasan"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Buat konfigurasi"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "not configured"
+msgstr "Firewall tidak dikonfigurasikan."
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, fuzzy, c-format
+msgid "Copy whole CDs"
+msgstr "Tulis CD/DVD"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Ralat telah berlaku"
+
+#: steps_interactive.pm:97
+#, fuzzy, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Sila pilih jenis logmasuk anda:"
+
+#: steps_interactive.pm:99
+#, fuzzy, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "penuh"
+
+#: steps_interactive.pm:128
+#, fuzzy, c-format
+msgid "Install/Upgrade"
+msgstr "Pemeriksaan Naiktaraf"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr ""
+
+#: steps_interactive.pm:135
+#, fuzzy, c-format
+msgid "Upgrade %s"
+msgstr "Naiktaraf"
+
+#: steps_interactive.pm:148
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Mencari pemasang %s ..."
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, fuzzy, c-format
+msgid "Configuring IDE"
+msgstr "Pengawal IDE"
+
+#: steps_interactive.pm:221
+#, fuzzy, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr "Tidak Install dalam"
+
+#: steps_interactive.pm:226
+#, fuzzy, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr "Tidak Install dalam"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+
+#: steps_interactive.pm:340
+#, fuzzy, c-format
+msgid "Looking for available packages..."
+msgstr "Pakej Mozilla untuk platform x86"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr "on."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Muatan"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Simpan"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "Menyalin Fail"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr ""
+
+#: steps_interactive.pm:483
+#, fuzzy, c-format
+msgid "Type of install"
+msgstr "Tetingkap Pemasangan"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+
+#: steps_interactive.pm:487
+#, fuzzy, c-format
+msgid "With X"
+msgstr "%s dengan %s"
+
+#: steps_interactive.pm:488
+#, fuzzy, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "asas"
+
+#: steps_interactive.pm:489
+#, fuzzy, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "tidak"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Semua"
+
+#: steps_interactive.pm:544
+#, fuzzy, c-format
+msgid "Preparing installation"
+msgstr "Jenis Pemasangan"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr ""
+
+#: steps_interactive.pm:576
+#, fuzzy, c-format
+msgid "There was an error ordering packages:"
+msgstr ""
+"Tedapat ralat memasang pakej.\n"
+"\n"
+"Keluar."
+
+#: steps_interactive.pm:576
+#, fuzzy, c-format
+msgid "Go on anyway?"
+msgstr "%s %s pemasangan pada hos %s"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Pemilihan Pakej Satu Persatu"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr ""
+"Tedapat ralat memasang pakej.\n"
+"\n"
+"Keluar."
+
+#: steps_interactive.pm:604
+#, fuzzy, c-format
+msgid "Post-install configuration"
+msgstr "Melakukan konfigurasi pasca pemasangan"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Kemaskini"
+
+#: steps_interactive.pm:639
+#, fuzzy, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr "Internet?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+
+#: steps_interactive.pm:666
+#, fuzzy, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Tidak boleh untuk akses ke CDROM"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Perkakasan"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, fuzzy, c-format
+msgid "Sound card"
+msgstr "Kad Bunyi"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr ""
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+
+#: steps_interactive.pm:813
+#, fuzzy, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Tidak"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Kad TV"
+
+#: steps_interactive.pm:833
+#, fuzzy, c-format
+msgid "Graphical interface"
+msgstr "Konfigurasi (X) Antaramuka Grafikal"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Rangkaian & Internet"
+
+#: steps_interactive.pm:851
+#, fuzzy, c-format
+msgid "Proxies"
+msgstr "Tetapkan proksi"
+
+#: steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "configured"
+msgstr "ditetapkan"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Tahap Keselamatan"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Firewall"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr ""
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "dimatikan"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Boot"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s pada %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+
+#: steps_interactive.pm:967
+#, fuzzy, c-format
+msgid "Preparing bootloader..."
+msgstr "Memasang PemuatBoot..."
+
+#: steps_interactive.pm:977
+#, fuzzy, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Entah\n"
+"\n"
+
+#: steps_interactive.pm:983
+#, fuzzy, c-format
+msgid "Do you want to use aboot?"
+msgstr "Apa yang anda ingin lakukan sekarang?"
+
+#: steps_interactive.pm:986
+#, fuzzy, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr "Ralat?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, fuzzy, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "masukkan cakera liut kosong ke dalam pemacu cakera liut"
+
+#: steps_interactive.pm:1034
+#, fuzzy, c-format
+msgid "Creating auto install floppy..."
+msgstr "Janakan cakera liut Auto Pasang"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Tahniah"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Boot semula"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, fuzzy, c-format
+msgid "Generate auto install floppy"
+msgstr "Janakan cakera liut Auto Pasang"
+
+#: steps_interactive.pm:1065
+#, fuzzy, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr "on"
+
+#: steps_interactive.pm:1070
+#, fuzzy, c-format
+msgid "Replay"
+msgstr "Main semula Log"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr ""
+
+#: steps_interactive.pm:1073
+#, fuzzy, c-format
+msgid "Save packages selection"
+msgstr "Pemilihan Pakej Satu Persatu"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Bahasa"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Lesen"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Tetikus"
+
+#: steps_list.pm:19
+#, fuzzy, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Partisyen Pemacu Keras:"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Papan Kekunci"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Keselamatan"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Pempartisyenan"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Memasang"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Pengesahan"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Pengguna"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Rangkaian"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr ""
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr ""
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Ringkasan"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Perkhidmatan"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Kemaskini"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Keluar"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] " Pakej"
+#~ msgstr[1] " Pakej"
+
+#~ msgid "Language"
+#~ msgstr "Bahasa"
+
+#~ msgid "License"
+#~ msgstr "Lesen"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Pilih protokol untuk pemasangan:"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Edit Partisyen"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "_Pasang pakej untuk memuaskan kebergantungan"
+
+#~ msgid "Users"
+#~ msgstr "Pengguna"
+
+#~ msgid "Networking"
+#~ msgstr "Rangkaian"
+
+#, fuzzy
+#~ msgid "Configure X"
+#~ msgstr "Konfigurasikan %s"
+
+#, fuzzy
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr "fail dalam dalam"
diff --git a/perl-install/install/share/po/mt.po b/perl-install/install/share/po/mt.po
new file mode 100644
index 000000000..e5900061c
--- /dev/null
+++ b/perl-install/install/share/po/mt.po
@@ -0,0 +1,1619 @@
+# translation of mt.po to Maltese
+# translation of DrakX-mt.po to Maltese
+# Copyright (C) 2002,2003, 2004 Free Software Foundation, Inc.
+# Ramon Casha <ramon.casha@linux.org.mt>, 2002,2003, 2004.
+# Ramon Casha <rcasha@waldonet.net.mt>, 2003.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: mt\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2004-10-04 18:45+0200\n"
+"Last-Translator: Ramon Casha <ramon.casha@linux.org.mt>\n"
+"Language-Team: Maltese <mt@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3.1\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Għandek iżjed sorsi supplimentari?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Network (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Network (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL tal-mera?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Qed nikkuntattja l-website ta' Mandriva Linux biex nikseb lista tal-mirja "
+"disponibbli"
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Qed nikkuntattja l-website ta' Mandriva Linux biex nikseb lista tal-mirja "
+"disponibbli"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Agħżel mera minn fejn trid iġġib il-pakketti"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Direttorju"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Ma nistax insib fajl hdlist fuq din il-mera"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Qed naqra l-pakketti diġà nstallati..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Qed insib pakketti x'naġġorna"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Int għażilt dan is-server/s: %s\n"
+"\n"
+"\n"
+"Dawn is-servers huma attivati impliċitament. M'għandhom ebda problemi ta'\n"
+"sigurtà magħrufa, imma jistgħu jinstabu ġodda minn żmien għal żmien. "
+"Għalhekk,\n"
+"importanti li żżommhom aġġornati.\n"
+"\n"
+"\n"
+"Żgur li trid tinstalla dawn is-servers?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Dawn il-pakketti se jitneħħew biex iħalluk taġġorna s-sistema: %s\n"
+"\n"
+"\n"
+"Żgur li trid tneħħi dawn il-pakketti?\n"
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "- %s tneħħa\n"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, fuzzy, c-format
+msgid "NFS"
+msgstr "PFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Network"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "Jekk jogħġbok agħżel wieħed"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Fajl diġà jeżisti. Tuża lilu?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Permess miċħud"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "ġie miżjud is-sors %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Ma nistax nieħu ritratti tal-iskrin qabel toħloq il-partizzjonijiet"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Ir-ritratti jkunu disponibbli wara l-installazzjoni f' %s"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Qed ninstalla"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Konfigurazzjoni"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Trid ukoll tifformattja %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Xi apparat fil-kompjuter tiegħek jeħtieġ drajvers speċjali biex jaħdem.\n"
+"Tista' ssib iżjed informazzjoni dwarhom fuq: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Qed intella' n-network"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Qed inniżżel in-network"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "Qed nibgħat fajls..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "Għaddej l-għarfien"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "neċessarju"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "importanti"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "tajjeb ħafna"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "tajjeb"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "forsi"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr ""
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Workstation"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Kompjuter tal-Uffiċċju"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Programmi tal-uffiċċju: wordprocessors (OpenOffice.org Writer, Kword), "
+"spreadsheet (OpenOffice.org Calc, Kspread) eċċ"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Programmi tal-uffiċċju: wordprocessors (kword, abiword), spreadsheet "
+"(kspread, gnumeric) eċċ"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Logħob"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Programmi ta' divertiment: logħob tal-arcaDES, karti, strateġija eċċ"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimedja"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Programmi għad-daqq u editjar ta' awdjo u video"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internet"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Sett għodda biex taqra u tibgħat imejl u \"news\", u biex tibbrawżja l-web"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Kompjuter fuq network (klijent)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Klijenti għal protokolli differenti, eż. SSH"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Għodda biex tiffaċilita l-konfigurazzjoni tal-kompjuter"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Għodda tal-konsol"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Edituri, shells, għodda tal-fajls, terminals"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Żviluppar"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Libreriji, programmi u fajls għal żviluppar C u C++"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentazzjoni"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Kotba u \"HOWTO\" dwar il-Linux u Softwer Ħieles"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Sapport ta' programmi ta' terzi partiti"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Server tal-web"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, fuzzy, c-format
+msgid "Groupware"
+msgstr "Grupp"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Server Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Firewall/Router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Gateway tal-internet"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/File/_Ġdid"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Server tal-imejl Postfix"
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "Direttorju minn fejn trid tirrestawra"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Server FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, fuzzy, c-format
+msgid "DNS/NIS"
+msgstr "DNS"
+
+#: share/meta-task/compssUsers.pl:109
+#, fuzzy, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Server tal-ismijiet tad-dominji"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Server tal-printer"
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "Server Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Database"
+
+#: share/meta-task/compssUsers.pl:117
+#, fuzzy, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Server tad-database PostgreSQL jew MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Imejl"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Server tal-imejl Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Server tad-database PostgreSQL jew MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Kompjuter Server tan-Network"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Servers NFS, SMB, Proxy, ssh"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Ambjent Grafiku"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Stazzjon KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K Desktop Environment, l-interfaċċja grafika bażi, b'għażla ta' għodda "
+"jakkumpanjawha"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Stazzjon GNOME"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "Ambjent grafiku b' għażla ta' programmi u għodda faċli"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Desktop"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Desktops Grafiċi Oħrajn"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, eċċ"
+
+#: share/meta-task/compssUsers.pl:183
+#, fuzzy, c-format
+msgid "Utilities"
+msgstr "Filippini"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Server SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "Webcam"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Konfigurazzjoni tat-Terminal Server"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Monitoraġġ tan-network"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "<b>Prodotti Mandriva</b>"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "Ma stajtx nikkonfigura l-printer \"%s\"!"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Inqalgħet problema, imma ma nafx kif nieħu ħsieba sew.\n"
+"Tista' tkompli b'riskju tiegħek"
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Xi pakketti importanti ma ġewx installati sew.\n"
+"Jew id-drajv tas-CDROM, jew is-CD nnifisha huma difettużi.\n"
+"Tista' tiċċekkja s-CD fuq kompjuter diġà nstallat permezz tal-kmand \"rpm -"
+"qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Dieħel fil-pass \"%s\"\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Installazzjoni Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> bejn l-elementi"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Is-sistema hija nieqsa mir-riżorsi. Jista' jkollok problema biex tinstalla \n"
+"l-Mandriva Linux. Jekk jiġri dan, ipprova installazzjoni testwali. Għal "
+"dan,\n"
+"agħfas F1 meta titla' s-CD, imbagħad ittajpja \"text\"."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Għażla ta' gruppi ta' pakketti"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Agħżel pakketti individwalment"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Daqs totali: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Pakkett ħażin"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Verżjoni: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Daqs: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Importanza: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Ma tistax tagħżel/tneħħi dan il-pakkett"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "minħabba %s nieqes"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "minħabba %s mhux sodisfatt"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "qed nipprova nippromwovi %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "sabiex inżomm %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Ma tistax tagħżel dan il-pakkett għax ma fadalx biżżejjed spazju għalih"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Dawn huma l-pakketti li se jiġu nstallati"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Dawn huma l-pakketti li se jiġu mneħħija"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Dan il-pakkett huwa kruċjali, ma jistax jitneħħa"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Ma tistax tneħħi l-għażla minn dan il-pakkett, diġà nstallat."
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Ma tistax tneħħi l-għażla minn dan il-pakkett. Irid jiġi aġġornat."
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Uri l-pakketti magħżula awtomatikament"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Installa"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "Għażla ta' pakketti"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Qed naġġorna l-għażla ta' pakketti"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Installazzjoni minima"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Maniġġjar ta' softwer"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Agħżel il-pakketti li trid tinstalla"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Qed ninstalla"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Ebda dettalji"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Ħin li fadal "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Qed nieħu stima"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pakketti"
+msgstr[1] "%d pakketti"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Sommarju"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Ikkonfigura"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "mhux konfigurat"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Dawn is-sorsi ta' installazzjoni instabu.\n"
+"Jekk trid taqbeż uħud minnhom, tista' tneħħi l-marka issa."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Inqalgħet problema"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Jekk jogħġbok agħżel tqassim tat-tastiera."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Din hi lista sħiħa tat-tastieri disponibbli"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Installa/Aġġorna"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Din hija installazzjoni ġdida jew aġġornament?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Aġġorna %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Ċifrarju għal %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Qed nikkonfigura IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"M'hemmx spazju għal bootstrap ta' 1MB. L-installazzjoni se tkompli, imma "
+"biex tħaddem is-sistema trid toħloq partizzjoni bootstrap f' Diskdrake."
+
+#: steps_interactive.pm:226
+#, fuzzy, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"M'hemmx spazju għal bootstrap ta' 1MB. L-installazzjoni se tkompli, imma "
+"biex tħaddem is-sistema trid toħloq partizzjoni bootstrap f' Diskdrake."
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Ibdel is-CD-ROM!\n"
+"\n"
+"Jekk jogħġbok daħħal id-diska mmarkata \"%s\" fid-drajv u agħfas Ok meta "
+"tlesti.\n"
+"Jekk m'għandekx din id-diska, agħfas \"Ikkanċella\" biex taqbeż il-pakketti "
+"li qegħdin fuqha."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Qed insib pakketti disponibbli"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Jekk jogħġbok agħżel \"ikteb\" jew \"aqra\" l-għażla tal-pakketti fuq\n"
+"flopi. Il-format huwa l-istess bħal diski flopi ġenerati bl-auto_install."
+
+#: steps_interactive.pm:387
+#, fuzzy, c-format
+msgid "Load"
+msgstr "XLoad"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Ikteb"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "fajl veru"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Id-daqs tal-għażla huwa ikbar mill-ispazju disponibbli"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Tip ta' installazzjoni"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Għadek m'għażilt ebda grupp ta' pakketti\n"
+"Jekk jogħġbok agħżel installazzjoni minima li trid:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Bl-XWindows"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "B' dokumentazzjoni bażika (rakkomandat)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Installazzjoni verament minima (mingħajr urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Kollha"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Qed nipprepara l-installazzjoni"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Qed jinstalla il-pakkett %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Kien hemm problema fl-ordni tal-pakketti:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Trid tkompli xorta?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Ikteb l-għażla ta' pakketti"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Kien hemm problema fl-installazzjoni tal-pakketti:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Konfigurazzjoni ta' wara l-installazzjoni"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Aġġornamenti"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Issa għandek l-opportunità li tniżżel pakketti aġġornati. Dawn ġew "
+"ippubblikati \n"
+"wara li din id-distribuzzjoni inħarġet. Jistgħu jinkludu tiswijiet ta' "
+"problemi jew \n"
+"sigurtà.\n"
+"\n"
+"Biex tniżżel dawn il-pakketti, jrid ikollok konnessjoni mal-internet qed "
+"taħdem.\n"
+"\n"
+"Trid tinstalla dawn l-aġġornamenti?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Qed nikkuntattja l-mera biex nikseb lista tal-pakketti disponibbli"
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Ma stajtx nikkuntattja l-mera %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Ħardwer"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Kard awdjo"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Għandek kard tal-awdjo ISA?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Ħaddem \"alsaconf\" jew \"sndconfig\" wara l-installazzjoni biex "
+"tikkonfigura l-kard awdjo."
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Ebda kard tal-awdjo ma nstabet. Ipprova ħaddem \"harddrake\" wara l-"
+"installazzjoni"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Kard TV"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Interfaċċja grafika"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Network u internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxies"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "konfigurat"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Livell ta' sigurtà"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Firewallr"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "attivat"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "mitfi"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Boot"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s fuq %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Għadek ma kkonfigurajtx X. Żgur trid hekk?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Qed nipprepara l-bootloader"
+
+#: steps_interactive.pm:977
+#, fuzzy, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Jidher li għandek magna \"OldWorld\" jew mhux \n"
+"magħrufa. Il-bootloader \"yaboot\" m'hux se jaħdem fuqha. \n"
+"L-installazzjoni se tkompli, imma trid tuża BootX biex \n"
+"ittella' l-Linux."
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Trid tuża \"aboot\"?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Problema fl-installazzjoni ta' aboot.\n"
+"trid tipprova timponi l-installazzjoni anke jekk tħassar l-ewwel partizzjoni?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"F'dan il-livell ta' sigurtà, l-aċċess għall-fajls fuq il-partizzjoni tal-"
+"Windows huwa ristrett għall-amministratur."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Daħħal flopi vojta fid-drajv %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Qed jinħoloq flopi awto-installazzjoni"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Xi passi ma ġewx finalizzati.\n"
+"\n"
+"Trid toħroġ issa?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Prosit"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Irributja"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Oħloq flopi awto-installa"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"L-awto-installazzjoni tista' tkun totalment awtomatizzata\n"
+"jekk trid. F'dak il-każ tieħu l-ħard disk kollu!!\n"
+"(dan huwa ntenzjonat għal installazzjoni fuq kompjuter ġdid)\n"
+"\n"
+"Forsi tippreferi tuża \"replay\" tal-installazzjoni.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Replay"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Awtomatizzata"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Ikteb l-għażla ta' pakketti"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Agħżel il-lingwa"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Liċenzja"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Maws"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Għarfien tal-ħard disk"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Tastiera"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Sigurtà"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Partizzjonament"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Qed ninstalla"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Awtentikazzjoni"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Users"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Networking"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Bootloader"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Ikkonfigura X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Sommarju"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Servizzi"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Aġġornamenti"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Oħroġ"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d pakketti"
+#~ msgstr[1] "%d pakketti"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pakketti"
+
+#~ msgid "Language"
+#~ msgstr "Agħżel il-lingwa"
+
+#~ msgid "License"
+#~ msgstr "Liċenzja"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Agħżel klassi ta' installazzjoni"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Qed nieħu stima"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Agħżel pakketti biex tinstalla"
+
+#~ msgid "Users"
+#~ msgstr "Users"
+
+#~ msgid "Networking"
+#~ msgstr "Networking"
+
+#~ msgid "Configure X"
+#~ msgstr "Ikkonfigura X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Ma nistax naċċessa moduli tal-kernel li jikkorrispondu għall-kernel (fajl "
+#~ "%s nieqes). Dan normalment ifisser li l-flopi mhuwiex sinkronizzat mal- "
+#~ "installazzjoni. Jekk jogħġbok oħloq flopi ġdida biex tistartja fuqha."
diff --git a/perl-install/install/share/po/nb.po b/perl-install/install/share/po/nb.po
new file mode 100644
index 000000000..73c7ca541
--- /dev/null
+++ b/perl-install/install/share/po/nb.po
@@ -0,0 +1,1639 @@
+# translation of DrakX-nb.po to
+# KTranslator Generated File
+# Translation file of Mandriva Linux graphic install
+# Copyright (C) 1999 Mandriva
+#
+# Terje Bjerkelia <terje@bjerkelia.com>, 1999-2000.
+# Andreas Bergstrøm <abergstr@halden.net>, 2000.
+# Kenneth Rørvik <kenneth@argon.no-ip.com>, 2003.
+# Per Øyvind Karlsen <peroyvind@sintrax.net>, 2003, 2004.
+# Keld Simonsen <keld@dkuug.dk>, 2004.
+# Per Øyvind Karlsen <peroyvind@mandrivalinux.org>, 2004, 2005.
+# Eskild Hustvedt <eskild@goldenfiles.com>, 2004.
+# Eskild Hustvedt <zerodogg@skolelinux.no>, 2004, 2005.
+# Per Øyvind Karlsen <pkarlsen@mandriva.com>, 2005, 2006.
+# Marius Laache <blakern_@hotmail.com>, 2007.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-nb\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-02-20 02:13+0100\n"
+"Last-Translator: Marius Laache <blakern_@hotmail.com>\n"
+"Language-Team: <en@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Har du flere ekstra medier?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Følgende medier er funnet, og vil bli benyttet under installasjonen: %s.\n"
+"\n"
+"\n"
+"Har du flere installasjonsmedier å sette opp?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Nettverk (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Nettverk (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Nettverk (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "Nettadresse til speilet?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "URL må starte med ftp:// eller http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Kontakter Mandriva Linux-nettstedet for å få listen over tilgjengelige "
+"speil..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Klarte ikke å kontakte Mandriva Linux-nettstedet for å få listen over "
+"tilgjengelige speil"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Velg et speil som pakkene kan hentes fra"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "NFS-oppsett"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Tast inn vertsnavn og katalog til ditt NFS-medie"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Vertsnavn mangler"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "Mappenavnet må starte med \"/\""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Vertsnavn til NFS-monteringen ?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Katalog"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Ekstra"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Kan ikke finne pakkelistefil på dette speilet. Kontrollér at adressen er "
+"riktig."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Ser på pakker som allerede er installert..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Fjerner pakker før oppgradering..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Finner pakker som skal oppgraderes..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Du har valgt følgende tjener(e): %s\n"
+"\n"
+"\n"
+"Disse tjenerene er aktivert som standard. De har ingen kjente sikkerhets\n"
+"problemer, men noen nye kan bli funnet. I så tilfelle må du oppgradere\n"
+"så snart som mulig.\n"
+"\n"
+"\n"
+"Ønsker du virkelig å installere disse tjenerene?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"De følgende pakkene vil bli fjernet for å tillate oppgradering av systemet "
+"ditt: %s\n"
+"\n"
+" \n"
+"Ønsker du å fjerne disse pakkene?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "De(n) følgende disken(e) fikk nytt navn:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (tidligere kalt %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Nettverk"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Velg et medie"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Filen eksisterer allerede. Overskriv?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Adgang nektet"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Ugyldig NFS-navn"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Feil i medie %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Jeg kan ikke ta skjembilder før partisjonering."
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Skjermbilder vil være tilgjengelig etter installasjon i %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Installasjon"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Oppsett"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Du må også formatere %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Noe maskinvare i maskinen din trenger «proprietære» drivere for å virke.\n"
+"Du kan finne noe informasjon om disse her: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Henter opp nettverket"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Tar ned nettverket"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Laster ned fil %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Kopiér noen pakker på disken for framtidig bruk"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Kopiering pågår"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "må ha"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "viktig"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "veldig bra"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "bra"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "kanskje"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "2007-produktlinje"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Invictus Brannmur"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery Live-modus"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Hvordan registrere deg"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva Online-tjenester"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Nytt tema"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Arbeidsstasjon"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Kontorarbeidsstasjon"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Kontorstøtteprogrammer: tekstbehandlere (OpenOffice.org Writer, Kword), "
+"regneark (OpenOffice.org Calc, Kspread), PDF-framvisere, etc"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Kontorstøtteprogrammer: tekstbehandlere (kword, abiword), regneark (kspread, "
+"gnumeric), pdf-framvisere etc"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Spillstasjon"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Underholdningsprogrammer: arkade, brettspill, strategi, etc"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimediastasjon"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Lyd- og videoavspilling/redigeringsprogrammer"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internettstasjon"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Sett med verktøy for å lese og sende e-post og njus (mutt, tin..) og til å "
+"surfe på nettet"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Nettverksmaskin (klient)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Klienter for forskjellige protokoller inkludert ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Verktøy for å forenkle oppsettet av maskinen din"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Konsollverktøy"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Tekstprogrammer, skall, filverktøy, terminaler"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Utvikling"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C- og C++-utviklingsbibliotek, -programmer og include-filer"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentasjon"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Bøker og Howto's om Linux og fri programvare"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Støtte for tredjeparts programvare"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Web-tjener"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Gruppevare"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab-tjener"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Brannmur/ruter"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internett-gateway"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "E-post/Njus"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix e-posttjener, Inn njustjener"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Katalogtjener"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP-tjener"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Domenenavn- og nettverksinformasjons-tjener"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Fil- og Skriverdelingstjener"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS-Tjener, Samba-tjener"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Database"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL- og MySQL-databasetjener"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "E-post"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix e-posttjener"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL eller MySQL-databasetjener"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Nettverksmaskintjener"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS-tjener, SMB-tjener, Proxy-tjener, SSH-tjener"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Grafisk miljø"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE-arbeidsstasjon"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K Desktop Environment, grunnleggende grafisk miljø med en samling av "
+"passende verktøy"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME-arbeidsstasjon"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Et grafisk miljø med et brukervennlig sett av programmer og "
+"skrivebordsverktøy"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm-skrivebord"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Andre grafiske skrivebord"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm etc"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Verktøy"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH-tjener"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin Fjernadministrasjonstjener"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Nettverks-verktøy/overvåkning"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Overvårkningsverktøy, prosessbokføring, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva-veivisere"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Veivisere til å sette opp tjener"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"En feil oppsto, men jeg vet ikke hvordan jeg skal håndtere dette på en pen "
+"måte.\n"
+"Fortsett på eget ansvar."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Noen viktige pakker ble ikke installert ordentlig.\n"
+"Det er noe galt enten med CD-romen eller CD-platen.\n"
+"Sjekk cd-platen på en installert maskin med «rpm -qpl media/main/*.rpm»\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Entrer trinn «%s»\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux-installasjon %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> mellom elementene"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Systemet ditt har lite ressurser. Du kan muligens oppleve noen problemer\n"
+"ved installering av Mandriva Linux. Hvis dette skjer kan du prøve "
+"installasjon i tekstmodus\n"
+"i stedet. Trykk «F1» ved oppstart av CD-ROM, skriv så «text»."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Valg pakkegruppe"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Individuelt pakkevalg"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Total størrelse: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Ugyldig pakke"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versjon: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Størrelse: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Viktighet: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Du kan ikke velge (bort) denne pakken"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "pga. manglende %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "pga. utilfredsstilt %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "prøver å promotere %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "for å beholde %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Du kan ikke velge denne pakken da det ikke er igjen nok plass til å "
+"installere den"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Følgende pakker vil bli installert"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Følgende pakker vil bli fjernet"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Dette er en obligatorisk pakke, den kan ikke fjernes"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Du kan ikke fjerne denne pakken. Den er allerede installert"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Du kan ikke fjerne denne pakken. Den må oppgraderes"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Vis automatisk valgte pakker"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Installer"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Last inn/lagre utvalg"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Oppdaterer pakkevalg"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimal installasjon"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Programvarehåndtering"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Velg pakkene du ønsker å installere"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Installerer"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Ingen detaljer"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Tid som gjenstår "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Beregner"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pakker"
+msgstr[1] "%d pakker"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Oppsummering"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Sett opp"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "ikke satt opp"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Følgende installasjonsmedia har blitt funnet.\n"
+"Hvis du vill hoppe over noen av de kan du velge de vekk nå."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Du har valget mellom å kopiere innholdet på CDene til harddisken før "
+"installasjon.\n"
+"Den vil da fortsette fra harddisken og pakkene vil forbli tilgjengelige når "
+"systemet er fullstendig installert."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Kopiér hele CDer"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "En feil oppstod"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Velg ditt tastaturoppsett."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Her er den komplette lista over tilgjengelige tastatur"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Installer/Oppgrader"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Er dette en installasjon eller en oppgradering?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Oppgrader %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Krypteringsnøkkel for %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Setter opp IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Det er ikke plass for 1 MB bootstrap! Installasjonen vil fortsette, men for "
+"å boote systemet ditt, må du lage en bootstrap-partisjon i DiskDrake"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Du må lage en PPC PReP Boot bootstrap! Installasjonen vil fortsette, men for "
+"å kunne starte systemet ditt vil du måtte opprette en bootstrap-partisjon i "
+"DiskDrake"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Bytt CD!\n"
+"\n"
+"Sett inn CDen merket «%s» i stasjonen og trykk Ok når du er ferdig.\n"
+"Hvis du ikke har den, trykk Avbryt for å unngå installasjon fra denne CDen."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Søker etter tilgjengelige pakker"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"Systemet har ikke nok gjenværende diskplass for installasjon eller "
+"oppgradering (%dMB > %dMB)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Velg lagre eller hent pakkevalg.\n"
+"Formatet er det samme som for auto_install-genererte filer."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Last inn"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Lagre"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Ødelagt fil"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Valgt størrelse er større enn tilgjengelig plass"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Type installasjon"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Du har ikke valgt noen pakkegrupper.\n"
+"Velg den minimale installasjonen du ønsker:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Med X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Med grunnleggende dokumentasjon (anbefalt!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Virkelig minimal installasjon (uten urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Alle"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Forbereder installasjon"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Installerer pakke %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Det var en feil ved endring av pakkenes rekkefølge:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Fortsett uansett?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Prøv igjen"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "Hopp over denne pakken"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "Hopp over alle pakker fra media \"%s\""
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "Gå tilbake til valg av media og pakker"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "Feil under installering av pakke %s"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Oppsett etter installering"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "Vennligst forsikre deg om at medie med oppdaterte moduler er i %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Oppdateringer"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Du har nå muligheten til å laste ned oppdaterte pakker. Dette er pakker som\n"
+"har blitt sluppet etter at distribusjonen ble sluppet. Dette kan være enten\n"
+"sikkerhetsoppdateringer eller feilrettelser.\n"
+"\n"
+"For å laste ned disse pakkene, så må du ha en fungerende "
+"internettoppkobling.\n"
+"\n"
+"Ønsker du å installere oppdateringene?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Kontakter speilet for å få en liste over tilgjengelige pakker..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Kan ikke kontakte speil %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Maskinvare"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Lydkort"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Har du et ISA-lydkort?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Kjør «alsaconf» eller «sndconfig» etter installasjonen for å sette opp "
+"lydkortet ditt"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Lydkort ikke oppdaget. Prøv «harddrake» etter installasjonen"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV-kort"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Grafisk grensesnitt"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Nettverk & internett"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxyer"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "satt opp"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Sikkerhetsnivå"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Brannmur"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "aktivert"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "deaktiver"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Oppstart"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s på %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+"Du har ikke satt opp det grafiske grensesnittet X. Er du sikker på at du "
+"ikke vil gjøre dette?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Klargjør oppstartslaster"
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Det virker som du har en OldWorld eller ukjent maskin, yaboot-"
+"oppstartslasteren vil ikke virke for deg. Installasjonen vil fortsette, men "
+"du må bruke BootX eller andre måter for å starte din maskin. "
+"Kjerneargumentet for root-filsystemet er: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Ønsker du å bruke aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Feil ved installasjon av aboot, \n"
+"prøv å installer selv om det ødelegger den første partisjonen?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"I dette sikkerhetsnivået er tilgang til Windows-partisjonen forbeholdt "
+"administratoren."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Sett inn en tom diskett i stasjon %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Oppretter diskett for autoinstallasjon..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Noen trinn er ikke fullført.\n"
+"\n"
+"Ønsker du virkelig å avslutte nå?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Gratulerer"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Restart"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Oppretter diskett for autoinstallasjon"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Autoinstallasjonen kan være fullstendig automatisk\n"
+"hvis du ønsker det. Den vil da ta over harddisken!!\n"
+"(dette er for å installere på en annen maskin)\n"
+"\n"
+"Du kanskje ønsker å kjøre installasjonen om igjen.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Gjør igjen"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatisert"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Lagre pakkevalg"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Språk"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Lisens"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Mus"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Oppdaging av harddisk"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Installasjonsklasse"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Tastatur"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Sikkerhet"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Partisjonering"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Formaterer"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Velger pakker"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Installerer"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Autentisering"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Brukere"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Nettverk"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Oppstartslaster"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Sett opp X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Oppsummering"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Tjenester"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Oppdateringer"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Avslutt"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d pakker, %d MB)"
+#~ msgstr[1] "(%d pakker, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pakker"
+
+#~ msgid "Language"
+#~ msgstr "Språk"
+
+#~ msgid "License"
+#~ msgstr "Lisens"
+
+#~ msgid "Installation class"
+#~ msgstr "Installasjonsklasse"
+
+#~ msgid "Formatting"
+#~ msgstr "Formaterer"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Velger pakker"
+
+#~ msgid "Users"
+#~ msgstr "Brukere"
+
+#~ msgid "Networking"
+#~ msgstr "Nettverk"
+
+#~ msgid "Configure X"
+#~ msgstr "Sett opp X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Kan ikke få tilgang til kjernemoduler for din kjerne (fil %s mangler), "
+#~ "dette betyr vanligvis at oppstartsdisketten din ikke er i synk med "
+#~ "installasjonsmediumet (opprett en nyere diskett)"
diff --git a/perl-install/install/share/po/nl.po b/perl-install/install/share/po/nl.po
new file mode 100644
index 000000000..08f9005c7
--- /dev/null
+++ b/perl-install/install/share/po/nl.po
@@ -0,0 +1,1635 @@
+# translation of DrakX-nl.po to Nederlands
+# Dutch translation of DrakX.
+# Copyright (C) 2000, 2005 Free Software Foundation, Inc.
+# Copyright (c) 2000 Mandriva
+# Niels Gras <niels.gras@wanadoo.nl>, 2000.
+# Jeroen ten Berge <j.ten.berge@twinbit.nl>, 2002.
+# Reinout van Schouwen <reinout@cs.vu.nl>, 2002-2006.
+# Peter Bosch <peter.bosch@hccnet.nl>, 2002.
+# Rob Teng <mandrake.tips@free.fr>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-nl\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2006-09-21 02:45+0200\n"
+"Last-Translator: Reinout van Schouwen <reinout@cs.vu.nl>\n"
+"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Heeft u nog aanvullende media?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"De volgende media zijn gevonden en zullen worden gebruikt tijdens de "
+"installatie: %s.\n"
+"\n"
+"\n"
+"Heeft u een aanvullend installatiemedium in te stellen?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Netwerk (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Netwerk (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Netwerk (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL van de mirror?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "URL dient te starten met ftp:// of http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Bezig te verbinden met de Mandriva Linux-website om de lijst met beschikbare "
+"mirrors op te halen..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Het verbinden met de Mandriva Linux-website om de lijst met beschikbare "
+"mirrors op te halen is mislukt"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Kies een `mirror' om de pakketten van af te halen"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "NFS configuratie"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Vul de hostnaam en map van uw NFS media in"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Hostnaam van de NFS mount?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Map"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Kan hdlist-bestand op deze mirror niet vinden"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Inventarisatie van reeds geïnstalleerde pakketten..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Verwijderen van pakketten vóór opwaardering..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Zoeken naar pakketten om op te waarderen..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"U heeft de volgende server(s) geselecteerd: %s\n"
+"\n"
+"\n"
+"Deze servers worden standaard geactiveerd. Ze hebben geen bekende\n"
+"beveiligingsproblemen, maar het is mogelijk dat men nieuwe vindt.\n"
+"Zorg er in dat geval voor dat u zo spoedig mogelijk opwaardeert.\n"
+"\n"
+"\n"
+"Weet u zeker dat u deze servers wilt installeren?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"De volgende pakketten zullen verwijderd worden om uw systeem te kunnen "
+"opwaarderen: %s\n"
+"\n"
+"\n"
+"Weet u zeker dat u deze pakketten wilt verwijderen?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "De volgende schijf/schijven zijn hernoemd:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (heette voorheen %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Netwerk"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Kies een medium"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Bestand bestaat reeds. Overschrijven?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Toegang geweigerd"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Slechte NFS naam"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Ongeldig medium %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Kan geen schermafdruk maken voor het partitioneren"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Schermafdrukken zullen beschikbaar zijn na installatie in %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Installatie"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Configuratie"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "U dient tevens %s te formatteren"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Sommige hardware op uw computer heeft ''fabrikantsgebonden'' drivers \n"
+"nodig om te kunnen functioneren. U kunt informatie hierover vinden op: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Bezig met opstarten van het netwerk"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Bezig met stoppen van het netwerk"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Bestand %s wordt gedownload..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Kopiëren van enkele pakketten op diskettes voor toekomstig gebruik"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Bezig met kopiëren"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "must-have"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "belangrijk"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "heel leuk"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "leuk"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "misschien"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "2007 productlijn"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Invictus Firewall"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery live-modus"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Hoe te registreren"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva Online-diensten"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Nieuw thema"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Werkstation"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Kantoorwerkstation"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Kantoorprogramma's: tekstverwerkers (OpenOffice.org Writer, Kword), "
+"rekenbladen (OpenOffice.org Calc, Kspread), PDF-lezers, etc"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Kantoorprogramma's: tekstverwerkers (kword, abiword), rekenbladen (kspread, "
+"gnumeric), PDF-lezers, etc"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Game-station"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Amusementsprogramma's: arcade, bordspellen, strategie etc"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimedia-station"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Geluids- en video-afspeel- en bewerkingsprogramma's"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internet-station"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Verzameling programma's om e-mail en usenet nieuws mee te lezen en te "
+"schrijven, en om het Web mee door te bladeren"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Netwerk-computer (client)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Clients voor verschillende protcollen waaronder ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Programma's om de configuratie van uw computer te vergemakkelijken"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Hulpprogramma's voor de opdrachtregel"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editors, shells, bestandsbeheer, terminals"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Ontwikkeling"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C and C++ ontwikkelingsbibliotheken, programma's en include-bestanden"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Documentatie"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Boeken en Howto's over Linux en Vrije Software"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standaard-Basis. Ondersteuning voor toepassingen van derden."
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Webserver"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab-server"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Firewall/Router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internet gateway"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "E-mail/nieuws"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix e-mailserver, Inn newsserver"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Gidsserver"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP-server"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Domeinnaam- en Network Information Server"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Gedeelde bestands- en printerserver"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS-server, Samba-server"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Database"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL en MySQL database-server"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "E-mail"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix e-mailserver"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL of MySQL database-server"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Netwerk-computer server"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS server, SMB server, Proxy server, ssh server"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Grafische omgeving"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE werkstation"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"Het K Desktop Environment, de basis-grafische omgeving met een verzameling "
+"van bijbehorende programma's"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME werkstation"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Een grafische omgeving met gebruikersvriendelijke verzameling toepassingen "
+"en bureaublad-programma's"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm Desktop"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Andere grafische bureaubladen"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, etc"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Hulpprogramma's"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH-server"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin-server voor configuratie op afstand"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Netwerk-hulpprogramma's/observatie"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Observatieprogramma's, bijhouden van processen, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva-wizards"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Wizards om server te configureren"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Er is een fout opgetreden waarvoor de juiste afhandeling onbekend is.\n"
+"Als u verdergaat, is dit op eigen risico."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Sommige belangrijke pakketen werden niet juist\n"
+"geïnstalleerd. Of uw CD-ROM-speler of uw CD-ROM is defect.\n"
+"Controleer de cdrom op een geïnstalleerde computer met\n"
+"\"rpm -qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Overgang naar stap `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux installatie %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> tussen elementen"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Uw systeem heeft weinig bronnen beschikbaar. U zou problemen kunnen\n"
+"ondervinden bij het installeren van Mandriva Linux. Als dit gebeurt,\n"
+"kunt u een tekstinstallatie proberen. Om dit te doen, drukt u op `F1'\n"
+"terwijl de CDROM opstart, en dan voert u `text' in."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Pakketgroep-selectie"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Individuele pakketselectie"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Totale grootte: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Onbruikbaar pakket"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versie: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Grootte: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d kB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Belang: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "U kunt dit pakket niet (de)selecteren"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "ten gevolge van ontbrekende %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "ten gevolge van onvoldane %s"
+
+# Wat wordt hier precies bedoeld?
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "proberen om %s te promoveren"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "om %s te kunnen behouden"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"U kunt dit pakket niet selecteren omdat er te weinig ruimte over is om het "
+"te installeren"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "De volgende pakketten zullen geïnstalleerd worden"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "De volgende pakketten zullen gedeïnstalleerd worden"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Dit is een verplicht pakket, het kan niet gedeselecteerd worden"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "U kunt dit pakket niet deselecteren. Het is al geïnstalleerd."
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "U kunt dit pakket niet deselecteren. Het moet opgewaardeerd worden."
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Automatisch geselecteerde pakketten tonen"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Installatie"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Selectie laden/opslaan"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Verversen van pakket-selectie"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimale installatie"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Softwarebeheer"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Kies de pakketten die u wenst te installeren"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Bezig met installeren"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Geen details"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Tijd over "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Schatting is gaande"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pakketten"
+msgstr[1] "%d pakketten"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Overzicht"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Configureren"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "niet geconfigureerd"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"De volgende installatiemedia zijn gevonden.\n"
+"Indien u sommige wilt overslaan, kunt u ze nu deselecteren."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"U heeft de mogelijkheid om de inhoud van de CD's naar de harde schijf te "
+"kopiëren vóór installatie.\n"
+"De installatie gaat dan door vanaf de harde schijf en de pakketten blijven "
+"beschikbaar zodra het systeem volledig geïnstalleerd is."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Hele cd's kopiëren"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Er is een fout opgetreden"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Kies uw toetsenbord-indeling."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Dit is de volledige lijst van beschikbare toetsenborden"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Installatie/Opwaardering"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Is dit een installatie of een opwaardering?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "%s opwaarderen"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Vercijferingssleutel voor %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE-Configuratie"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Er is geen vrije ruimte voor een \"bootstrap\" van 1MB! De installatie zal "
+"doorgaan, maar om uw systeem op te starten zult u de bootstrap partitie in "
+"DiskDrake moeten creëren."
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"U dient een PPC PReP Boot bootstrap aan te maken! Installatie zal verder "
+"gaan, maar om uw systeem op te starten zult u de bootstrappartitie in "
+"DiskDrake moeten creëren."
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Verwissel uw CD-ROM!\n"
+"\n"
+"Gelieve de CD-ROM met de naam \"%s\" in uw speler te plaatsen en op Ok te "
+"klikken wanneer u gereed bent.\n"
+"Als u deze CD niet heeft, klik dan Annuleren om verdere installatie vanaf "
+"deze CD te vermijden."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Bezig met zoeken naar beschikbare pakketten"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"U kunt kiezen of u de pakketselectie wilt laden of opslaan.\n"
+"Het formaat is dezelfde als de met auto_install gegenereerde bestanden."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Laden"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Opslaan"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Ongeldig bestand"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "De geselecteerde grootte is meer dan de beschikbare ruimte"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Type installatie"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"U heeft geen enkele pakketgroep geselecteerd\n"
+"Gelieve de minimale installatie die u wenst te kiezen."
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Met X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Met basis-documentatie (aanbevolen!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Werkelijk minimale installatie (in het bijzonder geen urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Alles"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Bezig met voorbereiden van installatie"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Bezig met installeren van pakket %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Er is een fout opgetreden bij het sorteren van de pakketten:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Toch verdergaan?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Opnieuw"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Pakket-selectie opslaan"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Er is een fout opgetreden bij het installeren van de pakketten:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Configuratie na installatiestap"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "Zorg ervoor dat de Update Modules-media zich in station %s bevindt"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Updates"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"U bent nu in de gelegenheid om bijgewerkte pakketten te downloaden.\n"
+"Deze pakketten zijn vernieuwd nadat de distributie werd uitgegeven.\n"
+"Ze kunnen beveiligings- of programmafoutreparaties bevatten.\n"
+"U heeft een werkende internetverbinding nodig om deze pakketten te \n"
+"downloaden.\n"
+"\n"
+"Wenst u de bijgewerkte pakketten te installeren?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"Bezig met verbinden met de mirror om de lijst met beschikbare pakketten op "
+"te halen..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Verbinden met mirror %s is onmogelijk"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Apparatuur"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Geluidskaart"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Heeft u een ISA geluidskaart?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Voer \"alsaconf\" of \"sndconfig\" na de installatie uit om uw geluidskaart "
+"te configureren"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Geen geluidskaart bespeurd. Probeer \"harddrake\" na de installatie"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV-kaart"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Grafische interface"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Netwerk & internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxy's"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "geconfigureerd"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Beveiligingsniveau"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Firewall"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "geactiveerd"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "uitgeschakeld"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Opstarten"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s op %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "U heeft X niet geconfigureerd. Weet u zeker dat u dit wilt?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Klaarmaken van opstartlader..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Het heeft er alle schijn van dat u een OldWorld- of Onbekende machine heeft. "
+"De yaboot opstartlader zal voor u niet werken. De installatie zal doorgaan, "
+"maar u zult BootX of een andere methode nodig hebben om uw machine op te "
+"starten. Het argument om aan de kernel mee te geven voor het root-"
+"bestandssysteem is: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Wenst u aboot te gebruiken?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Fout bij het installeren van aboot,\n"
+"toch proberen te installeren, zelfs als dat de eerste partitie vernietigt?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"In dit beveiligingsniveau wordt toegang tot de bestanden op de Windows-"
+"partitie voorbehouden aan de systeembeheerder."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Plaats een lege diskette in station %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Aanmaken van auto-installatiediskette..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Sommige stappen zijn nog niet voltooid.\n"
+"\n"
+"Weet u zeker dat u op dit moment wilt afsluiten?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Gefeliciteerd"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Herstarten"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Auto-installatiediskette aanmaken"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Desgewenst kan de auto-installatie volledig geautomatiseerd worden,\n"
+"in dat geval zal het de harde schijf overnemen!\n"
+"(Deze functie is bedoeld voor het installeren op een andere machine.)\n"
+"\n"
+"Wellicht geeft u de voorkeur aan het herhalen van de installatie.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Herhalen"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Geautomatiseerd"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Pakket-selectie opslaan"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Taal"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licentie"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Muis"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Harde schijf-detectie"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Installatieklasse"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Toetsenbord"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Beveiliging"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Partitionering"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Formatteren"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Pakketten kiezen"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Bezig met installeren"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Aanmeldingscontrole"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Gebruikers"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Netwerktoepassingen"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Opstartlader"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "X configureren"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Overzicht"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Diensten"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Updates"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Afsluiten"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d pakketten, %d MB)"
+#~ msgstr[1] "(%d pakketten, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pakketten"
+
+#~ msgid "Language"
+#~ msgstr "Taal"
+
+#~ msgid "License"
+#~ msgstr "Licentie"
+
+#~ msgid "Installation class"
+#~ msgstr "Installatieklasse"
+
+#~ msgid "Formatting"
+#~ msgstr "Formatteren"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Pakketten kiezen"
+
+#~ msgid "Users"
+#~ msgstr "Gebruikers"
+
+#~ msgid "Networking"
+#~ msgstr "Netwerktoepassingen"
+
+#~ msgid "Configure X"
+#~ msgstr "X configureren"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Kan kernelmodules behorend bij uw kernel niet benaderen (bestand %s "
+#~ "ontbreekt), dit betekent normaal gesproken dat uw opstartdiskette niet "
+#~ "hetzelfde is als die van het installatie medium. (Maak een nieuwe boot "
+#~ "diskette)"
diff --git a/perl-install/install/share/po/nn.po b/perl-install/install/share/po/nn.po
new file mode 100644
index 000000000..57784d070
--- /dev/null
+++ b/perl-install/install/share/po/nn.po
@@ -0,0 +1,1622 @@
+# translation of DrakX.po to Norwegian Nynorsk
+# Translation of nn to Norwegian Nynorsk
+# Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+#
+# Karl Ove Hufthammer <karl@huftis.org>, 2004, 2005, 2006, 2007.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-03-08 19:05+0100\n"
+"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
+"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Har du fleire medium?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Desse media vart funnen, og vert brukt under installeringa: %s.\n"
+"\n"
+"\n"
+"Har du fleire installasjonsmedium du ønskjer å setja opp?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Nettverk (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Nettverk (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Nettverk (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "Adresse til spegelen?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "Adresser må starta med «ftp://» eller «http://»."
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr "Kontaktar Mandriva Linux-nettstaden for oversikt over speglar …"
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Klarte ikkje få kontakt med Mandriva Linux-nettstaden for å henta oversikt "
+"over tilgjengelege speglar."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Vel spegelen du vil installera pakkar frå"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "NFS-oppsett"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Skriv inn vertsnamn og mappe til NFD-media"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Manglar vertsnam"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "Mappa må begynna med «/»"
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Vertsnamn til NFS-montering:"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Katalog"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Tillegg"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Finn ikkje pakkelistfila på denne spegelen. Sjå til at adressa er rett."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Ser på allereie installerte pakkar …"
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Fjernar pakkar for oppgradering …"
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Ser etter pakkar å oppgradera …"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Du har valt desse tenarane: %s\n"
+"\n"
+"\n"
+"Tenarane vert slått på som standard. Ingen av dei har nokon kjende "
+"tryggleikshol,\n"
+"men nye hol kan sjølvsagt bli oppdaga i framtida. Du må du i så fall "
+"oppgradera\n"
+"så snart som mogleg.\n"
+"\n"
+"\n"
+"Er du sikker på at du vil installera tenarane?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Desse pakkane vert fjerna for å kunna oppgradera systemet: %s\n"
+"\n"
+"\n"
+"Er du sikker på at du vil fjerna pakkane?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Desse diskane fekk nye namn:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "«%s» (tidlegare namn: «%s»)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Nettverk"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Vel medium"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Fila finst allereie. Vil du skriva over ho?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Nekta løyve"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Ugyldig NFS-namn"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Ugyldig medium: %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Kan ikkje ta skjermbilete før partisjonering"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Skjermbilete vert tilgjengelege i «%s» etter installeringa er ferdig"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Installerering"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Oppsett"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Du må òg formatera «%s»"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Noko av maskinvaren treng godseigde drivarar for å fungera.\n"
+"Du finn meir informasjon om desse på: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Koplar til nettverket"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Koplar frå nettverket"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Lastar ned «%s» …"
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Kopierer nokre pakkar til harddisken for seinare bruk"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Kopierer filer"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "må ha"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "viktig"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "veldig kjekt å ha"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "kjekt å ha"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "kanskje"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "2007-produkta"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Invictus brannmur"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery Live-modus"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Korleis registrera seg"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva Online-tenester"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Nytt tema"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Arbeidstasjon"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Kontormaskin"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Kontorprogramvare: Teksthandsamarar (OpenOffice.org Writer, Kword), rekneark "
+"(OpenOffice.org Calc, Kspread), PDF-viseprogram, med meir"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Kontorprogramvare: Teksthandsamarar (KWord, AbiWord), rekneark (KSpread, "
+"gnumeric), PDF-viseprogram, med meir"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Spelmaskin"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Moroprogram: Arkadespel, brettspel, strategispel, med meir"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimediemaskin"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Program for vising og redigering av film"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internett-maskin"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Program for lesing og sending av e-post, deltaking i diskusjonsgrupper og "
+"surfing på Internett"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Nettverksmaskin (klient)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Klientprogramvare for fleire protokollar, som ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Verktøy for enkelt oppsett av datamaskina"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Konsollverktøy"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Skriveprogram, skal, filverktøy og terminalprogram."
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Utvikling"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C og C++-utviklingsbibliotek, program og inkluderingsfiler"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Hjelpetekst"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Bøker og hjelpeoppskrifter for Linux og fri programvare"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base – støtte for tredjepartsprogram"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Vevtenar"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Gruppevare"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab-tenar"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Brannmur/rutar"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internett-portnar"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "E-post og diskusjonar"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix e-posttenar og Inn diskusjonstenar"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Katalogtenar"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP-tenar"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Domenenamn og nettverksinformasjonstenar."
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Fil- og skrivardeling-tenar"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS-tenar, Samba-tenar"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Database"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL- og MySQL-databasetenar"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Vev/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "E-post"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix-e-posttenar"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL- eller MySQL-databasetenar"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Nettverkstenar"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS-tenar, SMB-tenar, mellomtenar, ssh-tenar"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Grafisk miljø"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE-arbeidsstasjon"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "Skrivebordsmiljøet KDE, med ei samling tilhøyrande verktøy"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME-arbeidsstasjon"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Eit grafisk skrivebordsmiljø med brukarvenlege program og skrivebordsverktøy"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm-skrivebord"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Andre grafiske skrivebord"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, med fleire"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Verktøy"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH-tenar"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin-fjernoppsettenar"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Nettverksverktøy og -overvaking"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Overvakingsverktøy, prosesshandsaming, tcpdump, nmap, med meir"
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva-vegvisarar"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Vegvisarar for tenaroppsett"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr "Det oppstod ein kritisk feil. Hald fram på eige ansvar."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Nokre viktige pakkar vart ikkje installerte skikkeleg.\n"
+"Enten er det CD-ROM-stasjonen eller CD-plata di som øydelagd.\n"
+"Kontroller CD-plata på ei anna maskin med kommandoen: rpm -qpl media/main/*."
+"rpm\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Køyrer steg «%s»\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux-installering %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "«Tab»/«Alt + Tab» mellom element"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Du har lite systemresursar, og kan få vanskar med å installera Mandriva "
+"Linux.\n"
+"Du kan då installera i tekstmodus i staden for. Trykk «F1» ved oppstart av\n"
+"CD-plata, og skriv «text» om du ønskjer dette."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Pakkegruppeval"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Direkte pakkeval"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Totalstorleik: %d / %d MiB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Ugyldig pakke"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versjon: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Storleik: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KiB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Prioritet: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Du kan ikkje velja eller fjerna denne pakken"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "på grunn av manglande «%s»"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "då «%s» ikkje er tilfredsstilt"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "Prøver å prioritera «%s»"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "for å kunna behalda «%s»"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Du kan ikkje velja denne pakken, då det ikkje er nok ledig plass til å "
+"installera han."
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Desse pakkane vert installerte"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Desse pakkane vert fjerna"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Dette er ein obligatorisk pakke. Du kan ikkje velja han vekk."
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Du kan ikkje velja vekk denne pakken, då han allereie er installert."
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Kan ikkje velja vekk pakken. Han må oppgraderast."
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Vis automatiske valde pakkar"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Installer"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Opna/lagra utval"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Oppdaterer pakkeval"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimal installering"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Programvarehandsaming"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Vel pakkane du ønskjer å installera"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Installerer"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Skjul detaljar"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Tid igjen"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Estimerer"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pakke"
+msgstr[1] "%d pakkar"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Samandrag"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Set opp"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "ikkje sett opp"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Fann desse installasjonsmedia.\n"
+"Om du ikkje ønskjer å bruka alle, kan du velja vekk dei du ikkje treng no."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Du kan velja å kopiera innhaldet på CD-ane til harddisken før "
+"installasjonen.\n"
+"Installasjonen vil då helda fram frå harddisken, og pakkane vil vera lett "
+"tilgjengeleg òg etter at systemet er installert og sett opp."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Kopier CD-ane"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Det oppstod ein feil"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Vel tastaturoppsett"
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Her er heile lista over tastaturoppsett"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Installer/oppgrader"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Er dette ei installering eller ei oppgradering?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Oppgrader «%s»"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Krypteringsnøkkel for «%s»"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Set opp IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Ikkje nok ledig plass for oppstartslastar på 1 MiB. Installasjonen held "
+"fram, men du må sjølv laga ein oppstartslastarpartisjon i DiskDrake."
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Du må laga ein PPC PReP Boot-bootstrap. Installasjonen vil helda fram, men "
+"viss du vil starta systemet, må du først laga bootstrap-partisjonen i "
+"DiskDrake."
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Byt installasjonsplate.\n"
+"\n"
+"Set inn plata merkt «%s» og trykk «OK».\n"
+"Trykk eventuelt «Avbryt» om du ikkje har denne plata."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Ser etter tilgjengelege pakkar …"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"Maskina di har ikkje nok ledig plass for installering eller oppgradering (%d "
+"MB > %d MB)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Vel å lagra eller henta pakkeval.\n"
+"Formatet er likt det laga av «auto_install»."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Last"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Lagra"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Ugyldig fil"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Valt storleik er større enn tilgjengeleg plass"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Installasjonstype"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Du har ikkje valt noko pakkegruppe.\n"
+"Vel kva type minimal installasjon du vil ha:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Med X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Med grunnleggjande hjelpetekstar (tilrådd)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Heilt minimal (òg utan urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Alle"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Førebur installasjon"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Installerer pakken «%s»"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Det oppstod ein feil ved sortering av pakkar:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Vil du helda fram likevel?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Prøv på nytt"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "Hopp over denne pakken"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "Hopp over alle pakkar frå mediet «%s»"
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "Gå tilbake til medie- og pakkevalskjermen"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "Det oppstod ein feil ved installering av pakken «%s»."
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Oppsett etter installering"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "Sjå til at oppdateringsmediet er i stasjon %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Oppdateringar"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Du kan no lasta ned oppdaterte pakkar. Desse pakkane vart oppdaterte\n"
+"etter at distribusjonen var ferdigstilt, og kan innehelda tryggleiks- eller\n"
+"andre feilfiksar.\n"
+"\n"
+"For å lasta ned pakkane må du ha eit nettsamband oppe.\n"
+"\n"
+"Ønskjer du å installera oppdateringane?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Kontaktar spegel for oversikt over pakkar …"
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Klarte ikkje kontakta spegelen «%s»"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Maskinvare"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Lydkort"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Har du eit ISA-lydkort?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Køyr «sndconfig» etter installasjonen er ferdig for å setja opp lydkortet."
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Fann ingen lydkort. Køyr «harddrake» etter installasjonen er ferdig."
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Fjernsynskort"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Grafisk grensesnitt"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Nettverk og Internett"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Mellomtenarar"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "oppsett"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Tryggleiksnivå"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Brannmur"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "påslått"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "avslått"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Oppstart"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s på %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+"Du har ikkje sett opp det grafiske grensesnittet. Er du sikker på at du "
+"ikkje vil ha det?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Førebur oppstartslastar …"
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Oppstartslastaren yaboot vil ikkje fungera, då du har ei OldWorld- eller ei "
+"ukjend maskin. Installeringa vil helda fram, men du må bruka BootX eller ein "
+"annan måte å starta maskina di på. Kjerneargumentet for rotfilsystemet er: "
+"root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Vil du bruka aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Feil ved installering av «aboot».\n"
+"Vil du prøva å tvinga gjennom installering, sjølv om det kan øydeleggja den "
+"første partisjonen?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Med dette tryggleiksnivået er det berre administratoren som får tilgang til "
+"filer på Windows-partisjonen."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Set inn ein tom diskett i stasjon «%s»"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Lagar diskett for automatisk installasjon …"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Ikkje alle steg er gjennomførte.\n"
+"\n"
+"Er du sikker på at du vil avslutta?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Gratulerer"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Start på nytt"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Lag diskett for automatisk installasjon"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Du kan heilautomatisera autoinstalleringa om du ønskjer. Denne vil då "
+"overskriva heile harddisken. (Dette er meint for installering på ei anna "
+"maskin.)\n"
+"\n"
+"Du kan òg velja å køyra gjennom installasjonen på nytt.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Spel av"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatisert"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Lagra pakkeval"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Språk"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Lisensvilkår"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Mus"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Harddiskoppdaging"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Installasjonsklasse"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Tastatur"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Tryggleik"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Partisjonering"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Formatering"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Pakkeval"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Installerer"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Autentisering"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Brukarar"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Nettverk"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Oppstartslastar"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Set opp X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Samandrag"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Tenester"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Oppdateringar"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Avslutt"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d pakkar – %d MB)"
+#~ msgstr[1] "(%d pakkar – %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pakkar"
+
+#~ msgid "Language"
+#~ msgstr "Språk"
+
+#~ msgid "License"
+#~ msgstr "Lisensvilkår"
+
+#~ msgid "Installation class"
+#~ msgstr "Installasjonsklasse"
+
+#~ msgid "Formatting"
+#~ msgstr "Formatering"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Pakkeval"
+
+#~ msgid "Users"
+#~ msgstr "Brukarar"
+
+#~ msgid "Networking"
+#~ msgstr "Nettverk"
+
+#~ msgid "Configure X"
+#~ msgstr "Set opp X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Får ikkje tilgang til kjernemodular som svarar til kjernen din (manglar "
+#~ "fila «%s»). Det kjem vanlegvis av at oppstartsdisketten er laga for ein "
+#~ "annan versjon enn installasjonsmediet. Du bør då laga ein ny, oppdatert "
+#~ "oppstartsdiskett."
diff --git a/perl-install/install/share/po/pa_IN.po b/perl-install/install/share/po/pa_IN.po
new file mode 100644
index 000000000..ca6270e1e
--- /dev/null
+++ b/perl-install/install/share/po/pa_IN.po
@@ -0,0 +1,1583 @@
+# translation of DrakX.po to Punjabi
+# translation of DrakX.po to Panjabi
+# Copyright (C) 2005 Free Software Foundation, Inc.
+# Kanwaljeet Singh Brar <kanwaljeetbrar@yahoo.co.in>, 2005.
+# Jaswinder Singh Phulewala <jaswinderphulewala@yahoo.com>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2005-03-27 17:55+0530\n"
+"Last-Translator: Jaswinder Singh Phulewala <jaswinderphulewala@yahoo.com>\n"
+"Language-Team: Punjabi <punlinux-i18n@lists.soruceforge.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.9.1\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "ਕੀ ਤੁਹਾਡੇ ਕੋਲ ਅੱਗੇ ਅਨੁਪੂਰਕ ਮਾਧਿਅਮ ਹੈ?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "ਨੈੱਟਵਰਕ (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "ਨੈੱਟਵਰਕ (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "ਪ੍ਰਤਿਬਿੰਬ ਦਾ URL?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr "ਉਪਲੱਬਧ ਪ੍ਰਤੀਬਿੰਬਾਂ ਦੀ ਸੂਚੀ ਵੇਖਣ ਲਈ ਮੈਂਡਰਿਵ-ਲੀਨਕਸ ਵੈਬ ਸਾਈਟ ਨਾਲ ਸੰਪਰਕ ਜਾਰੀ ਹੈ..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr "ਉਪਲੱਬਧ ਪ੍ਰਤੀਬਿੰਬਾਂ ਦੀ ਸੂਚੀ ਵੇਖਣ ਲਈ ਮੈਂਡਰਿਵ-ਲੀਨਕਸ ਵੈਬ ਸਾਈਟ ਨਾਲ ਸੰਪਰਕ ਜਾਰੀ ਹੈ..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "ਪੈਕੇਜ ਪ੍ਰਾਪਤ ਕਰਨ ਲਈ ਪ੍ਰਤੀਬਿੰਬ ਚੁਣੋ"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "ਡਾਇਰੈਕਟਰੀ"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "ਇਸ ਪ੍ਰਤੀਬਿੰਬ ਤੇ ਪੈਕੇਜ ਸੂਚੀ ਫਾਇਲ ਨਹੀਂ ਲੱਭ ਸਕੀ। ਜਾਂਚ ਕਰੋ ਕਿ ਸਥਿਤੀ ਠੀਕ ਹੈ।"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "ਪਹਿਲਾਂ ਇੰਸਟਾਲ ਕੀਤੇ ਪੈਕੇਜਾਂ ਸੀ ਜਾਂਚ ਕਰ ਰਿਹਾ ਹੈ..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "ਨਵੀਨੀਕਰਨ ਲਈ ਪੈਕੇਜਾਂ ਦੀ ਖੋਜ..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"ਹੇਠਲੇ ਪੈਕੇਜ ਤੁਹਾਡੇ ਸਿਸਟਮ ਨਵੀਨੀਕਰਨ ਲਈ ਹਟਾਏ ਜਾਣਗੇ: %s\n"
+"\n"
+"\n"
+"ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਇਹ ਪੈਕੇਜ ਹਟਾਉਣੇ ਚਾਹੁੰਦੇ ਹੋ?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "ਹੇਠਲੀਆਂ ਡਿਸਕਾਂ ਦੇ ਨਾਂ ਤਬਦੀਲ ਕੀਤੇ ਹਨ:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (ਪਹਿਲਾਂ %s ਨਾਂ ਸੀ)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr ""
+
+#: any.pm:1140
+#, fuzzy, c-format
+msgid "FTP"
+msgstr "FPU"
+
+#: any.pm:1140
+#, fuzzy, c-format
+msgid "NFS"
+msgstr "PFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "ਨੈੱਟਵਰਕ"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "ਕਿਰਪਾ ਕਰਕੇ ਬੈਕਅੱਪ ਲਈ ਮਾਧਿਅਮ ਚੁਣੋ।"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "ਫਾਇਲ ਪਹਿਲਾਂ ਮੌਜੂਦ ਹੈ, ਇਹ ਵਰਤੋ?"
+
+#: any.pm:1183
+#, fuzzy, c-format
+msgid "Permission denied"
+msgstr "ਅਧਿਕਾਰ"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr ""
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "ਵਿਭਾਗੀਕਰਨ ਤੋਂ ਪਹਿਲਾਂ ਪਰਦਾ-ਤਸਵੀਰ ਨਹੀਂ ਬਣਾ ਸਕਦਾ"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "ਪਰਦਾ-ਤਸਵੀਰਾਂ %s ਵਿੱਚ ਇੰਸਟਾਲੇਸ਼ਨ ਤੋਂ ਬਾਅਦ ਉਪਲੱਬਧ ਹੋਣਗੀਆਂ"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "ਇੰਸਟਾਲ ਹੋ ਰਹੇ ਹਨ"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "ਸੰਰਚਨਾ"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "ਤੁਹਾਨੂੰ %s ਵੀ ਫਾਰਮਿਟ ਕਰਨਾ ਜਰੂਰੀ ਹੈ"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"ਤੁਹਾਡੇ ਕੰਪਿਊਟਰ ਤੇ ਕੁਝ ਜੰਤਰ ਲਈ ਕੰਮ ਕਰਨ ਵਾਸਤੇ ``ਮਲਕੀਅਤ'' ਡਰਾਈਵਰ ਦੀ ਲੋੜ ਹੈ।\n"
+"ਤੁਸੀਂ ਇਹਨਾਂ ਬਾਰੇ ਕੁਝ ਜਾਣਕਾਰੀ ਇਸ ਤੇ ਲੱਭ ਸਕਦੇ ਹੋ: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "ਨੈੱਟਵਰਕ ਚਲਾਇਆ ਜਾ ਰਿਹਾ ਹੈ"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "ਨੈੱਟਵਰਕ ਬੰਦ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "ਫਾਇਲਾਂ ਭੇਜ ਰਿਹਾ ਹੈ..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "ਨਕਲ ਜਾਰੀ ਹੈ"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "ਹੋਣਾ ਜਰੂਰੀ ਹੈ"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "ਜਰੂਰੀ"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "ਬਹੁਤ ਵਧੀਆ"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "ਵਧੀਆ"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "ਹੋ ਸਕਦਾ ਹੈ"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "ਵਰਕਸਟੇਸ਼ਨ"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "ਦਫਤਰ ਵਰਕਸਟੇਸ਼ਨ"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"ਦਫਤਰੀ ਪ੍ਰੋਗਰਾਮ: ਅੱਖਰਕਾਰ (OpenOffice.org Writer, Kword), ਸਾਰਣੀਕਾਰ (OpenOffice."
+"org Calc, Kspread), PDF ਦਰਸ਼ਕ, ਆਦਿ"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"ਦਫਤਰੀ ਪ੍ਰੋਗਰਾਮ: ਅੱਖਰਕਾਰ (kword, abiword), ਸਾਰਣੀਕਾਰ (kspread, gnumeric), pdf "
+"ਦਰਸ਼ਕ, ਆਦਿ"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "ਖੇਡ ਸਟੇਸ਼ਨ"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "ਮਨੋਰੰਜਨ ਪ੍ਰੋਗਰਾਮ: ਆਰਕੇਡ, ਬੋਰਡ, ਨੀਤੀ, ਆਦਿ"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "ਮਲਟੀਮੀਡੀਆ ਸਟੇਸ਼ਨ"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "ਸਾਊਂਡ ਅਤੇ ਵੀਡੀਓ ਚਲਾਉਣ/ਸੋਧਣ ਵਾਲੇ ਪ੍ਰੋਗਰਾਮ"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "ਇੰਟਰਨੈੱਟ ਸਟੇਸ਼ਨ"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr "ਪੱਤਰ ਅਤੇ ਖਬਰਾਂ ਪੜਨ ਅਤੇ ਭੇਜਣ ਲਈ (mutt, tin..) ਅਤੇ ਵੈਬ ਝਾਤੀ ਲਈ ਸੰਦਾਂ ਦਾ ਸਮੂਹ"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "ਨੈੱਟਵਰਕ ਕੰਪਿਊਟਰ (ਕਲਾਂਈਟ)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "ssh ਸਮੇਤ ਵੱਖ-ਵੱਖ ਪਰੋਟੋਕਾਲਾਂ ਲਈ ਕਲਾਂਈਟ"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "ਤੁਹਾਡੇ ਕੰਪਿਊਟਰ ਦੀ ਸੰਰਚਨਾ ਸਾਫ ਕਰਨ ਲਈ ਸੰਦ"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "ਕੰਸੋਲ ਸੰਦ"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "ਸੰਪਾਦਕ, ਸ਼ੈੱਲ, ਫਾਇਲ ਸੰਦ, ਟਰਮੀਨਲ"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "ਵਿਕਾਸ"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C ਅਤੇ C++ ਵਿਕਾਸ ਲਾਇਬ੍ਰੇਰੀਆਂ, ਪ੍ਰੋਗਰਾਮ ਅਤੇ ਸ਼ਾਮਿਲ ਫਾਇਲਾਂ"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "ਦਸਤਾਵੇਜ਼"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "ਲੀਨਕਸ ਅਤੇ ਮੁਕਤ ਸਾਫਟਵੇਅਰ ਉੱਪਰ ਕਿਤਾਬਾਂ ਅਤੇ Howto's"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "ਲੀਨਕਸ ਮਿਆਰੀ ਮੁੱਢ। ਤੀਜੀ ਪਾਰਟੀ ਕਾਰਜ ਸਹਿਯੋਗ"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "ਵੈਬ ਸਰਵਰ"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "ਗਰੁੱਪਵੇਅਰ"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab ਸਰਵਰ"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "ਫਾਇਲਵਾਲ/ਰਾਊਟਰ"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "ਇੰਟਰਨੈੱਟ ਗੇਟਵੇ"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "ਪੱਤਰ/ਖਬਰ"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix ਪੱਤਰ ਸਰਵਰ, Inn ਖਬਰ ਸਰਵਰ"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "ਡਾਇਰੈਕਟਰੀ ਸਰਵਰ"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP ਸਰਵਰ"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "ਡੋਮੇਨ ਨਾਂ ਅਤੇ ਨੈੱਟਵਰਕ ਜਾਣਕਾਰੀ ਸਰਵਰ"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "ਫਾਇਲ ਅਤੇ ਪ੍ਰਿੰਟਰ ਸ਼ੇਅਰਿੰਗ ਸਰਵਰ"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS ਸਰਵਰ, ਸਾਂਬਾ ਸਰਵਰ"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "ਡਾਟਾਬੇਸ "
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL ਅਤੇ MySQL ਡਾਟਾਬੇਸ ਸਰਵਰ"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "ਵੈਬ/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "ਪੱਤਰ"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix ਪੱਤਰ ਸਰਵਰ"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL ਜਾਂ MySQL ਡਾਟਾਬੇਸ ਸਰਵਰ"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "ਨੈੱਟਵਰਕ ਕੰਪਿਊਟਰ ਸਰਵਰ"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS ਸਰਵਰ, SMB ਸਰਵਰ, ਪਰਾਕਸੀ ਸਰਵਰ, ssh ਸਰਵਰ"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "ਗਰਾਫੀਕਲ ਵਾਤਾਵਰਨ"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "ਕੇ ਡੀ ਈ ਵਰਕਸਟੇਸ਼ਨ"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "ਕੇ ਵਿਹੜਾ ਵਾਤਾਵਰਨ, ਸਾਥੀ ਸੰਦਾਂ ਦੇ ਭੰਡਾਰ ਨਾਲ ਮੁੱਢਲਾ ਗਰਾਫਿਕਲ ਵਾਤਾਵਰਨ"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "ਗਨੋਮ ਵਰਕਸਟੇਸ਼ਨ"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "ਉਪਭੋਗੀ-ਅਨੁਕੂਲ ਕਾਰਜ ਸਮੂਹ ਅਤੇ ਵਿਹੜਾ ਸੰਦਾਂ ਨਾਲ ਇੱਕ ਗਰਾਫੀਕਲ ਵਾਤਾਵਰਨ"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "ਵਿਹੜਾ"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "ਹੋਰ ਗਰਾਫੀਕਲ ਵਿਹੜੇ"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ਆਦਿ"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "ਸਹੂਲਤਾਂ"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH ਸਰਵਰ"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin ਰਿਮੋਟ ਸੰਰਚਨਾ ਸਰਵਰ"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "ਨੈੱਟਵਰਕ ਸਹੂਲਤਾਂ/ਪ੍ਰਬੰਧਨ"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "ਪ੍ਰਬੰਧਨ ਸੰਦ, ਕਾਰਜ ਅਕਾਊਂਟਿੰਗ, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "ਮੈਂਡਰਿਵ-ਸਾਫਟ ਤਖਤੀ"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "ਸਰਵਰ ਸੰਰਚਨਾ ਲਈ ਤਖਤੀ"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"ਗਲਤੀ ਹੋਈ ਹੈ, ਪਰ ਮੈਂ ਨਹੀਂ ਜਾਣਦਾ ਕਿ ਇਸ ਦਾ ਕਿਸ ਤਰਾਂ ਪ੍ਰਬੰਧਨ ਕਰਨਾ ਹੈ।\n"
+"ਆਪਣੇ ਖਤਰੇ ਤੇ ਜਾਰੀ ਕਰੋ।"
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"ਕੁਝ ਜਰੂਰੀ ਪੈਕੇਜ ਠੀਕ ਤਰਾਂ ਇੰਸਟਾਲ ਨਹੀਂ ਹੋਏ।\n"
+"ਜਾਂ ਤਾਂ ਤੁਹਾਡੀ cdrom ਡਰਾਈਵ ਜਾਂ cdrom ਖਰਾਬ ਹੈ।\n"
+"ਇੰਸਟਾਲ ਕੀਤੇ ਕੰਪਿਊਟਰ ਤੇ \"rpm -qpl media/main/*.rpm\" ਵਰਤ ਕੇ cdrom ਦੀ ਜਾਂਚ ਕਰੋ\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "ਪਗ਼ `%s' ਸ਼ੁਰੂ ਹੋ ਰਿਹਾ ਹੈ\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "ਮੈਂਡਰਿਵ-ਲੀਨਕਸ ਇੰਸਟਾਲੇਸ਼ਨ %s "
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> ਇਕਾਈਆਂ ਵਿੱਚ "
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"ਤੁਹਾਡੇ ਸਿਸਟਮ ਤੇ ਸਰੋਤ ਘੱਟ ਹਨ। ਤੁਹਾਨੂੰ ਮੈਂਡਰਿਵ-ਲੀਨਕਸ ਇੰਸਟਾਲ ਕਰਨ ਸਮੇਂ ਮੁਸ਼ਕਿਲ\n"
+"ਆ ਸਕਦੀ ਹੈ। ਜੇ ਅਜਿਹਾ ਹੋਇਆ, ਤੁਸੀਂ ਪਾਠ ਇੰਸਟਾਲੇਸ਼ਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰੋ। ਇਸ ਲਈ,\n"
+"`F1' ਦਬਾਓ ਜਦੋਂ CDROM ਤੋਂ ਬੂਟ ਕਰਦੇ ਹੋ, ਫਿਰ `ਪਾਠ' ਭਰੋ।"
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "ਪੈਕੇਜ ਸਮੂਹ ਚੋਣ"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "ਵੱਖ-ਵੱਖ ਪੈਕੇਜ ਚੋਣ"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "ਕੁੱਲ ਅਕਾਰ: %d / %d ਮੈਬਾ"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "ਗਲਤ ਪੈਕੇਜ"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "ਵਰਜਨ:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "ਅਕਾਰ:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d ਕਿਬਾ\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "ਖਾਸੀਅਤ:"
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "ਤੁਸੀਂ ਇਹ ਪੈਕੇਜ ਚੁਣ/ਨਾ-ਚੁਣ ਨਹੀਂ ਸਕਦੇ"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "%s ਗੁੰਮ ਹੋਣ ਕਾਰਨ"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "%s ਲੋੜ ਪੂਰੀ ਨਾ ਹੋਣ ਕਰਕੇ"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "%s ਵਰਤੋਂ ਦੀ ਸਿਫਾਰਸ਼ ਕੀਤੀ ਜਾਂਦੀ ਹੈ"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "%s ਰੱਖਣ ਲਈ"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "ਤੁਸੀਂ ਇਹ ਪੈਕੇਜ ਨਹੀਂ ਚੁਣ ਸਕਦੇ ਕਿਉਂਕਿ ਇੱਥੇ ਇਸ ਨੂੰ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਲੋੜੀਂਦੀ ਥਾਂ ਨਹੀਂ ਹੈ।"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "ਹੇਠਲੇ ਪੈਕੇਜ ਇੰਸਟਾਲ ਹੋ ਰਹੇ ਹਨ"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "ਹੇਠਲੇ ਪੈਕੇਜ ਹਟਾਏ ਜਾ ਰਹੇ ਹਨ"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "ਇਹ ਲਾਜ਼ਮੀ ਪੈਕੇਜ ਹੈ, ਇਸ ਦੀ ਚੋਣ ਨਹੀਂ ਹਟਾਈ ਜਾ ਸਕਦੀ"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "ਤੁਸੀਂ ਇਸ ਪੈਕੇਜ ਦੀ ਚੋਣ ਨਹੀਂ ਹਟਾ ਸਕਦੇ। ਇਹ ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ।"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "ਤੁਸੀਂ ਇਸ ਪੈਕੇਜ ਦੀ ਚੋਣ ਨਹੀਂ ਹਟਾ ਸਕਦੇ। ਇਸ ਦਾ ਨਵੀਨੀਕਰਨ ਜਰੂਰੀ ਹੈ।"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "ਚੁਣੇ ਪੈਕੇਜ ਸਵੈ ਹੀ ਵਿਖਾਓ"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "ਇੰਸਟਾਲ"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "ਪੈਕੇਜ ਚੋਣ"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "ਪੈਕੇਜ ਚੋਣ ਨਵੀਨੀਕਰਨ ਜਾਰੀ ਹੈ"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "ਘੱਟੋ-ਘੱਟ ਇੰਸਟਾਲ"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "ਸਾਫਟਵੇਅਰ ਪ੍ਰਬੰਧਨ"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ ਚੁਣੋ"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "ਇੰਸਟਾਲ ਹੋ ਰਹੇ ਹਨ"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "ਕੋਈ ਵੇਰਵਾ ਨਹੀਂ"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "ਬਾਕੀ ਸਮਾਂ"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "ਅਨੁਮਾਨ ਜਾਰੀ ਹੈ"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d ਪੈਕੇਜ"
+msgstr[1] "%d ਪੈਕੇਜ"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "ਸਾਰ"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "ਸੰਰਚਨਾ"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "ਸੰਰਚਿਤ ਨਹੀਂ"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"ਹੇਠਲੇ ਇੰਸਟਾਲੇਸ਼ਨ ਮਾਧਿਅਨ ਲੱਭੇ ਹਨ।\n"
+"ਜੇ ਤੁਸੀਂ ਇਹਨਾਂ ਵਿੱਚੋਂ ਕੁਝ ਛੱਡਣੇ ਚਾਹੁੰਦੇ ਹੋ, ਤੁਸੀਂ ਹੁਣ ਰੱਦ ਕਰ ਸਕਦੇ ਹੋ।"
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"ਤੁਹਾਡੇ ਕੋਲ ਇੰਸਟਾਲੇਸ਼ਨ ਤੋਂ ਪਹਿਲਾਂ CDs ਦੇ ਸੰਖੇਪ ਹਾਰਡ ਡਰਾਈਵ ਤੇ ਨਕਲ ਕਰਨ ਦੀ ਚੋਣ ਹੈ।\n"
+"ਇਹ ਫਿਰ ਹਾਰਡ ਡਰਾਈਵ ਤੋਂ ਜਾਰੀ ਕਰੇਗਾ ਅਤੇ ਪੈਕੇਜ ਸਿਸਟਮ ਪੂਰੀ ਤਰਾਂ ਇੰਸਟਾਲ ਹੋਣ ਤੋਂ ਬਾਅਦ ਵੀ ਉਪਲੱਬਧ "
+"ਰਹਿਣਗੇ।"
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "ਪੂਰੀ CDs ਨਕਲ ਕਰੋ"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "ਇੱਕ ਗਲਤੀ ਆਈ ਹੈ"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "ਕਿਰਪਾ ਕਰਕੇ ਆਪਣਾ ਕੀਬੋਰਡ ਖਾਕਾ ਚੁਣੋ।"
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "ਇੱਥੇ ਉਪਲੱਬਧ ਕੀਬੋਰਡਾਂ ਦੀ ਸੂਚੀ ਹੈ"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "ਇੰਸਟਾਲ/ਨਵੀਨੀਕਰਨ"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "ਕੀ ਇਹ ਇੰਸਟਾਲ ਜਾਂ ਨਵੀਨੀਕਰਨ ਹੈ?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "ਨਵੀਨੀਕਰਨ %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "%s ਲਈ ਇਨਕ੍ਰਿਪਸ਼ਨ ਕੁੰਜੀ"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE ਸੰਰਚਨਾ ਹੋ ਰਹੀ ਹੈ"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"1ਮੈਬਾ ਬੂਟਸਟਰੈਪ ਲਈ ਕੋਈ ਖਾਲੀ ਥਾਂ ਨਹੀਂ ਹੈ! ਇੰਸਟਾਲ ਜਾਰੀ ਰਹੇਗੀ, ਪਰ ਤੁਹਾਡਾ ਸਿਸਟਮ ਬੂਟ ਕਰਨ ਲਈ, "
+"ਤੁਹਾਨੂੰ DiskDrake ਵਿੱਚ ਬੂਟਸਟਰੈਪ ਭਾਗ ਬਣਾਉਣ ਦੀ ਲੋੜ ਪਵੇਗੀ।"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"PPC PReP Boot ਬੂਟਸਟਰੈਪ ਲਈ ਕੋਈ ਖਾਲੀ ਥਾਂ ਨਹੀਂ ਹੈ! ਇੰਸਟਾਲ ਜਾਰੀ ਰਹੇਗੀ, ਪਰ ਤੁਹਾਡਾ ਸਿਸਟਮ ਬੂਟ "
+"ਕਰਨ ਲਈ, ਤੁਹਾਨੂੰ DiskDrake ਵਿੱਚ ਬੂਟਸਟਰੈਪ ਭਾਗ ਬਣਾਉਣ ਦੀ ਲੋੜ ਪਵੇਗੀ।"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"ਆਪਣੀ Cd-Rom ਤਬਦੀਲ ਕਰੋ!\n"
+"ਕਿਰਪਾ ਕਰਕੇ \"%s\" ਲੇਬਲ ਵਾਲੀ Cd-Rom ਆਪਣੀ ਡਰਾਈਵ ਵਿੱਚ ਪਾਓ ਅਤੇ ਸਮਾਪਤੀ ਤੇ ਠੀਕ ਹੈ ਦਬਾਓ\n"
+"ਜੇ ਤੁਹਾਡੇ ਕੋਲ ਇਹ ਨਹੀਂ ਹੈ, ਇਸ Cd-Rom ਤੋਂ ਇੰਸਟਾਲੇਸ਼ਨ ਰੋਕਣ ਲਈ ਰੱਦ ਕਰੋ ਦਬਾਓ।"
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "ਉਪਲੱਬਧ ਪੈਕੇਜ ਲੋਡ ਕਰ ਰਿਹਾ ਹੈ..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"ਕਿਰਪਾ ਕਰਕੇ ਫਲਾਪੀ ਤੇ ਪੈਕੇਜ ਲੋਡ ਜਾਂ ਸੰਭਾਲ ਚੁਣੋ।\n"
+"ਫਾਰਮਿਟ ਫਲਾਪੀਆਂ ਦੁਆਰਾ ਬਣਾਏ auto_install ਵਾਂਗ ਹੈ।"
+
+#: steps_interactive.pm:387
+#, fuzzy, c-format
+msgid "Load"
+msgstr "ਪੋਲੈਂਡ"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "ਸੰਭਾਲੋ"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "ਅਸਲੀ ਫਾਇਲ"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "ਚੁਣਿਆ ਅਕਾਰ ਉਪਲੱਬਧ ਥਾਂ ਨਾਲੋਂ ਜਿਆਦਾ ਹੈ"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "ਇੰਸਟਾਲ ਦੀ ਕਿਸਮ"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"ਤੁਸੀਂ ਪੈਕੇਜਾਂ ਦਾ ਕੋਈ ਸਮੂਹ ਨਹੀਂ ਚੁਣਿਆ।\n"
+"ਕਿਰਪਾ ਕਰਕੇ ਘੱਟੋ-ਘੱਟ ਇੰਸਟਾਲੇਸ਼ਨ ਚੁਣੋ:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "X ਨਾਲ"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "ਮੁੱਢਲੀ ਦਸਤਾਵੇਜ਼ੀ ਨਾਲ (ਸਿਫਾਰਸ਼ੀ)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "ਯਕੀਨਨ ਘੱਟੋ-ਘੱਟ ਇੰਸਟਾਲ (ਖਾਸ ਤੌਰ ਤੇ urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "ਸਭ"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "ਇੰਸਟਾਲੇਸ਼ਨ ਤਿਆਰੀ ਹੋ ਰਹੀ ਹੈ"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "%s ਪੈਕੇਜ ਇੰਸਟਾਲ ਹੋ ਰਹੀ ਹੈ"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "ਪੈਕੇਜ ਕ੍ਰਮਬੱਧ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "ਕਿਸੇ ਤਰਾਂ ਜਾਰੀ ਰੱਖੋ?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "ਪੈਕੇਜ ਚੋਣ ਸੰਭਾਲੋ"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "ਪੋਸਟ-ਇੰਸਟਾਲ ਸੰਰਚਨਾ"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "ਨਵਿਨੀਕਰਨ"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "ਉਪਲੱਬਧ ਪੈਕੇਜਾਂ ਦੀ ਸੂਚੀ ਵੇਖਣ ਲਈ ਪ੍ਰਤੀਬਿੰਬ ਨਾਲ ਸੰਪਰਕ ਜਾਰੀ ਹੈ..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "ਪ੍ਰਤੀਬਿੰਬ %s ਨਾਲ ਸੰਪਰਕ ਲਈ ਅਸਮਰਥ"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "ਜੰਤਰ"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "ਸਾਊਂਡ ਕਾਰਡ"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "ਕੀ ਤੁਹਾਡੇ ਕੋਲ ISA ਸਾਊਂਡ ਕਾਰਡ ਹੈ?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr "ਆਪਣੀ ਸਾਊਂਡ ਕਾਰਡ ਸੰਰਚਨਾ ਲਈ ਇੰਸਟਾਲੇਸ਼ਨ ਮਗਰੋਂ \"alsaconf\" ਜਾਂ \"sndconfig\" ਚਲਾਓ"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "ਕੋਈ ਸਾਊਂਡ ਕਾਰਡ ਨਹੀਂ ਲੱਭਿਆ। ਇੰਸਟਾਲੇਸ਼ਨ ਮਗਰੋਂ \"harddrake\" ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰੋ"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV ਕਾਰਡ"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "ਗਰਾਫੀਕਲ ਇੰਟਰਫੇਸ"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "ਨੈੱਟਵਰਕ ਤੇ ਇੰਟਰਨੈੱਟ"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "ਪਰਾਕਸੀ"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "ਸੰਰਚਿਤ"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "ਸੁਰੱਖਿਆ ਪੱਧਰ"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "ਫਾਇਰਵਾਲ"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "ਸਰਗਰਮ"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "ਅਯੋਗ"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "ਬੂਟ"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s, %s ਉੱਪਰ"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "ਤੁਸੀਂ X ਸੰਰਚਿਤ ਨਹੀਂ ਕੀਤਾ। ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਇਸ ਨੂੰ ਚਾਹੁੰਦੇ ਹੋ?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "ਬੂਟ-ਲੋਡਰ ਤਿਆਰ ਕਰ ਰਿਹਾ ਹੈ..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"ਤੁਹਾਡੇ ਕੋਲ ਓਲਡਵਰਡ ਜਾਂ ਅਣਪਛਾਤੀ ਮਸ਼ੀਨ ਲੱਗਦੀ ਹੈ, yaboot ਤੁਹਾਡੇ ਲਈ ਕੰਮ ਨਹੀਂ ਕਰੇਗਾ। ਇੰਸਟਾਲ "
+"ਜਾਰੀ ਰਹੇਗਾ, ਪਰ ਤੁਹਾਨੂੰ ਆਪਣੀ ਮਸ਼ੀਨ ਬੂਟ ਕਰਨ ਲਈ BootX ਜਾਂ ਹੋਰ ਢੰਗ ਵਰਤਣ ਦੀ ਲੋੜ ਪਵੇਗੀ। ਰੂਟ "
+"ਫਾਇਲ ਸਿਸਟਮ ਲਈ ਕਰਨਲ ਆਰਗੂਮੈਂਟ ਹਨ: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "ਕੀ ਤੁਸੀਂ aboot ਵਰਤਣਾ ਚਾਹੁੰਦੇ ਹੋ?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"aboot ਇੰਸਟਾਲ ਕਰਨ ਵਿੱਚ ਗਲਤੀ, \n"
+"ਇੰਸਟਾਲੇਸ਼ਨ ਮਜਬੂਰ ਕਰੋ ਭਾਵੇਂ ਇਹ ਪਹਿਲਾ ਭਾਗ ਨਕਾਰਾ ਕਰਦਾ ਹੈ?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr "ਇਸ ਸੁਰੱਖਿਆ ਪੱਧਰ ਵਿੱਚ, Windows ਭਾਗ ਵਿਚਲੀ ਫਾਇਲਾਂ ਵਰਤਣ ਲਈ ਪ੍ਰਬੰਧਕ ਨੂੰ ਮਨਾਹੀ ਹੈ।"
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "ਡਰਾਈਵ %s ਵਿੱਚ ਖਾਲੀ ਫਲਾਪੀ ਪਾਓ"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "ਸਵੈ ਇੰਸਟਾਲ ਫਲਾਪੀ ਬਣਾ ਰਿਹਾ ਹੈ..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"ਕੁਝ ਪਗ਼ ਮੁਕੰਮਲ ਨਹੀਂ ਕੀਤੇ।\n"
+"\n"
+"ਕੀ ਤੁਸੀਂ ਹੁਣ ਯਕੀਨਨ ਬਾਹਰ ਜਾਣਾ ਹੈ?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "ਮੁਬਾਰਕਾਂ"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "ਮੁੜ-ਚਾਲੂ"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "ਸਵੈ ਇੰਸਟਾਲ ਫਲਾਪੀ ਬਣਾਓ"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"ਜੇ ਚਾਹੁੰਦੇ ਹੋ, ਸਵੈ ਇੰਸਟਾਲ ਪੂਰੀ ਤਰਾਂ ਸਵੈਚਾਲਤ ਹੋ ਸਕਦਾ ਹੈ\n"
+"ਇਸ ਮੁੱਦੇ ਵਿੱਚ ਇਹ ਹਾਰ ਡਰਾਈਵ ਤੇ ਅਧਿਕਾਰ ਲਵੇਗਾ!!\n"
+"(ਇਸ ਦਾ ਮਤਲਬ ਹੈ ਹੋਰ ਬਕਸੇ ਤੇ ਇੰਸਟਾਲੇਸ਼ਨ ਹੋਵੇਗੀ)।\n"
+"\n"
+"ਤੁਸੀਂ ਇੰਸਟਾਲੇਸ਼ਨ ਮੁੜ ਚਲਾਉਣ ਲਈ ਚੁਣ ਸਕਦੇ ਹੋ।\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "ਮੁੜ-ਚਲਾਓ"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "ਸਵੈਚਾਲਤ"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "ਪੈਕੇਜ ਚੋਣ ਸੰਭਾਲੋ"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "ਬੋਲੀ"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "ਲਾਈਸੈਂਸ"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "ਮਾਊਸ"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "ਹਾਰਡ ਡਰਾਈਵ ਖੋਜ"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "ਕੀ-ਬੋਰਡ"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "ਸੁਰੱਖਿਆ"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "ਵਿਭਾਗੀਕਰਨ"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "ਇੰਸਟਾਲ ਹੋ ਰਹੇ ਹਨ"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "ਪ੍ਰਮਾਣਿਕਤਾ"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "ਉਪਭੋਗੀ"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "ਨੈਟਵਰਕਿੰਗ"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "ਬੂਟ-ਲੋਡਰ"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "X ਸੰਰਚਨਾ"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "ਸਾਰ"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "ਸੇਵਾਵਾਂ"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "ਨਵਿਨੀਕਰਨ"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "ਬਾਹਰ"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d ਪੈਕੇਜ"
+#~ msgstr[1] "%d ਪੈਕੇਜ"
+
+#~ msgid "%d packages"
+#~ msgstr "%d ਪੈਕੇਜ"
+
+#~ msgid "Language"
+#~ msgstr "ਬੋਲੀ"
+
+#~ msgid "License"
+#~ msgstr "ਲਾਈਸੈਂਸ"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "ਇੰਸਟਾਲੇਸ਼ਨ ਸ਼੍ਰੇਣੀਆਂ ਚੁਣੋ"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "ਅਨੁਮਾਨ ਜਾਰੀ ਹੈ"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ ਚੁਣੋ"
+
+#~ msgid "Users"
+#~ msgstr "ਉਪਭੋਗੀ"
+
+#~ msgid "Networking"
+#~ msgstr "ਨੈਟਵਰਕਿੰਗ"
+
+#~ msgid "Configure X"
+#~ msgstr "X ਸੰਰਚਨਾ"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "ਤੁਹਾਡੇ ਕਰਨਲ ਦੇ ਅਨੁਸਾਰੀ ਕਰਨਲ ਮੈਡਿਊਲਾਂ ਤੱਕ ਪਹੁੰਚ ਨਹੀਂ ਸਕਦਾ (ਫਾਇਲ %s ਗੁੰਮ ਹੈ), ਆਮ ਤੌਰ ਤੇ ਇਸ "
+#~ "ਦਾ ਮਤਲਬ ਹੈ ਤੁਹਾਡੀ ਬੂਟ ਫਲਾਪੀ ਇੰਸਟਾਲੇਸ਼ਨ ਮਾਧਿਅਮ ਨਾਲ ਸਮਕਾਲੀ ਨਹੀਂ ਹੈ (ਕਿਰਪਾ ਕਰਕੇ ਨਵੀਂ "
+#~ "ਬੂਟ ਫਲਾਪੀ ਬਣਾਓ)"
diff --git a/perl-install/install/share/po/pl.po b/perl-install/install/share/po/pl.po
new file mode 100644
index 000000000..73a0ef9e2
--- /dev/null
+++ b/perl-install/install/share/po/pl.po
@@ -0,0 +1,1596 @@
+# translation of DrakX.po to Polish
+# Polish translation file
+#
+# tomek, 2005.
+# Paweł Jabłoński <pj@linux-mandrake.com>, 2001,2002.
+# Arkadiusz Lipiec <arkadiusz.lipiec@gazeta.pl>, 2002-2004.
+# Tomasz Bednarski <bednarski@skrzynka.pl>, 2005.
+# Tomasz Bednarski <tomasz.bednarski@mandriva.pl>, 2005.
+# Maciej Walkowiak <m.walkowiak@computer.org>, 2005.
+# Tomasz Bednarski - Mandriva Poland <tomasz.bednarski@mandriva.pl>, 2006, 2007.
+# Tomasz Bednarski Mandriva Poland <tomasz.bednarski@mandriva.pl>, 2006.
+# Mandriva Poland <biuro@mandriva.pl>, 2006.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-03-13 16:52+0100\n"
+"Last-Translator: Tomasz Bednarski - Mandriva Poland <tomasz."
+"bednarski@mandriva.pl>\n"
+"Language-Team: Polish <pl@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%"
+"100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Czy posiadasz inne dodatkowe nośniki?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Znaleziono następujące nośniki, które zostaną wykorzystane podczas "
+"instalacji: %s.\n"
+"\n"
+"\n"
+"Czy chcesz skonfigurować dodatkowe nośniki instalacyjne?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Sieć (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Sieć (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Sieć (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "Adres URL dla serwera zwierciadlanego?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "Adres URL musi zaczynać się od ftp:// lub http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Łączenie ze stroną Mandriva Linux w celu pobrania listy dostępnych "
+"serwerów..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Łączenie ze stroną Mandriva Linux w celu pobrania listy dostępnych serwerów"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Wybierz serwer lustrzany, z którego chcesz pobrać pakiety"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Konfiguracja NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Wprowadź nazwę komputera i katalog nośnika NFS"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Brak nazwy hosta"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "Oznaczenie katalogu musi się zaczynać od znaku \"/\""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Nazwa komputera udostępniające udziały NFS?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Katalog"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Dodatkowe"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Nie można znaleźć listy pakietów na tym serwerze. Sprawdź poprawność "
+"lokalizacji."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Wyszukiwanie już zainstalowanych pakietów..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Usuwanie pakietów w celu wykonania aktualizacji..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Wyszukiwanie pakietów do uaktualnienia..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Wybrano następujące serwery: %s\n"
+"\n"
+"\n"
+"Będą one domyślnie uruchamiane. Nie zawierają one żadnych znanych błędów\n"
+"związanych z bezpieczeństwem, lecz błędy takie mogą zostać w przyszłości "
+"ujawnione.\n"
+"W takiej sytuacji należy dokonać jak najszybszego uaktualnienia.\n"
+"\n"
+"\n"
+"Czy na pewno chcesz zainstalować te serwery?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Aby umożliwić aktualizację systemu, usunięte będą następujące pakiety: %s\n"
+"\n"
+"\n"
+"Czy naprawdę chcesz usunąć te pakiety?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Zmieniono nazwy następujących dysków:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (wcześniejsza nazwa: %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Sieć"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Proszę wybrać nośnik"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Plik już istnieje. Nadpisać?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Dostęp zabroniony"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Niepoprawna nazwa NFS"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Nieprawidłowy nośnik %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Nie można pobrać zrzutu ekranu przed partycjonowaniem"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Zrzuty ekranu będą dostępne po instalacji w %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Instalacja"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Konfiguracja"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Należy także sformatować %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Część sprzętu w Twoim komputerze wymaga \"firmowych\" sterowników.\n"
+"Więcej informacji na ten temat uzyskasz z %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Uruchamianie sieci"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Zatrzymywanie sieci"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Pobieranie pliku %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Kopiowanie wybranych pakietów do późniejszego wykorzystania"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Kopiowanie w toku"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "trzeba posiadać"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "ważny"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "bardzo fajny"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "fajny"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "taki sobie"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "Linia produktów 2007"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Firewall Invictus"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Tryb Discovery Live"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Jak się zarejestrować"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Usługi Mandriva Online "
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Nowy temat "
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Stacja robocza"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Stacja biurowa"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Programy biurowe: procesory tekstu (OpenOffice.org Writer, Kword), arkusze "
+"kalkulacyjne (OpenOffice.org, Kspread), przeglądarki pdf, itd."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Programy biurowe: procesory tekstu (kword, abiword), arkusze kalkulacyjne "
+"(kspread, gnumeric), przeglądarki pdf, itd."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Stacja rozrywkowa (gry)"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Programy rozrywkowe: gry przygodowe, planszowe, strategie, itd."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Stacja multimedialna"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Programy do odtwarzania/edycji dźwięku i obrazu"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Stacja internetowa"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Zestaw narzędzi do odczytu i przesyłania poczty i grup dyskusyjnych (mutt, "
+"tin...) oraz przeglądania sieci"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Komputer sieciowy (klient)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Programy klienckie dla różnych protokołów włączając ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Narzędzia do łatwego zarządzania komputerem"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Narzędzia konsolowe"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Edytory, powłoki, narzędzia plikowe, terminale"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Programowanie"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Biblioteki programistyczne C i C++, programy i pliki nagłówkowe"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentacja"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Książki i dokumenty HOWTO o Linuksie i Otwartym Oprogramowaniu"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Obsługa aplikacji firm trzecich"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Serwer WWW"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "System do pracy grupowej"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Serwer Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Zapora sieciowa/router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Bramka internetowa"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Poczta/wiadomości"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Serwer pocztowy Postfix, serwer grup Inn"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Serwer katalogowy"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Serwer FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Serwer nazw domenowych i informacji sieciowych"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Serwer plików i współdzielenia drukarek"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "Serwer NFS, serwer Samby"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Baza danych"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Serwer bazodanowy PostgreSQL i MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Poczta"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Serwer pocztowy Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Serwer bazodanowy PostgreSQL i MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Serwer sieciowy"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Serwer NIS, serwer SMB, serwer pośrednika, serwer ssh"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Środowisko graficzne"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Stacja KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"Środowisko graficzne KDE, podstawowe środowisko graficzne ze zbiorem "
+"narzędzi towarzyszących"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Stacja GNOME"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Środowisko graficzne z przyjaznym dla użytkownika zbiorem aplikacji i "
+"narzędzi graficznych"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "Pulpit IceWM"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Inne środowiska graficzne"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, itd."
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Narzędzia"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Serwer SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Serwer konfiguracji zdalnej Webmin"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Narzędzia sieciowe/monitorowanie"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Narzędzia do monitorowania, księgowania procesów, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Druidy Mandriva"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Druidy do konfiguracji serwera"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Wystąpił jakiś błąd i nie wiadomo, jak poprawnie go obsłużyć.\n"
+"Kontynuuj na własną odpowiedzialność."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Pewne istotne pakiety nie zostały poprawnie zainstalowane.\n"
+"Prawdopodobnie uszkodzona jest płyta lub napęd CDROM.\n"
+"Sprawdź płytę w innym komputerze używając polecenia:\n"
+"\"rpm -qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Przechodzę do kroku `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Instalacja Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> pomiędzy elementami"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"System ma mało zasobów. Mogą wystąpić problemy z instalacją.\n"
+"Jeśli tak się dzieje, spróbuj instalacji w trybie tekstowym.\n"
+"Aby tak zrobić, naciśnij F1 podczas startu z CD i wpisz \"text\"."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Wybór grup pakietów"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Samodzielny wybór pakietów"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Rozmiar: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Uszkodzony pakiet"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Wersja: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Rozmiar: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Ważność: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Nie można zmienić statusu tego pakietu"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "z powodu brakującego %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "na skutek niespełnienia %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "próba aktualizacji wersji %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "w celu utrzymania %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "Nie możesz wybrać tego pakietu. Nie ma już miejsca, by go zainstalować"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Zostaną zainstalowane następujące pakiety"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Zostaną usunięte następujące pakiety"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Ten pakiet jest wymagany, nie można go pominąć"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Nie można odznaczyć tego pakietu. Został już zainstalowany"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Nie można odznaczyć tego pakietu. Musi zostać zaktualizowany"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Pokaż automatycznie wybrane pakiety"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Zainstaluj"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Wczytanie/Zapis zaznaczenia"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Uaktualnianie listy wybranych pakietów"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimalna instalacja"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Zarządzanie oprogramowaniem"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Wybierz pakiety do zainstalowania"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Instalowanie"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Bez szczegółów"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Pozostały czas "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Szacowanie"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "pakiet"
+msgstr[1] "%d pakietów"
+msgstr[2] "%d pakietów"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Różne"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Konfiguruj"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "nie skonfigurowano"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Znaleziono poniższe nośniki instalacyjne.\n"
+"Jeśli chcesz pominąć któreś z nich, możesz je teraz odznaczyć."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Istnieje możliwość skopiowania przed instalacją zawartości płyt CD na dysk "
+"twardy.\n"
+"Instalacja będzie kontynuowana z dysku twardego a skopiowane pakiety będą "
+"dostępne po zakończeniu instalacji."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Skopiuj wszystkie płyty CD"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Wystąpił błąd"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Wybierz układ klawiatury."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Oto pełna lista dostępnych klawiatur"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Instalacja/Uaktualnienie"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Czy to instalacja czy uaktualnienie?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Uaktualnienie %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Klucz szyfrujący dla %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Konfiguracja IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Brak wolnej przestrzeni na 1MB bootstrap! Instalacja będzie kontynuowana,"
+"lecz aby uruchomić system, należy utworzyć partycję bootstrap za pomocą "
+"programu DiskDrake."
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Konieczne jest utworzenie bootstrap PPC PReP!. Instalacja będzie "
+"kontynuowana, lecz aby uruchomić system, należy utworzyć partycję bootstrap "
+"w programie DiskDrake."
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Zmień płytę CD!\n"
+"\n"
+"Włóż płytę \"%s\" do napędu i naciśnij Ok. Jeśli jej nie posiadasz, naciśnij "
+"Anuluj, aby pominąć instalację pakietów z tej płyty."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Wyszukiwanie dostępnych pakietów..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"Za mało miejsca na dysku dla przeprowadzenia instalacji lub aktualizacji (%"
+"dMB > %dMB)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Wybierz odczyt lub zapis listy wybranych pakietów.\n"
+"Format jest identyczny z dyskiem automatycznej\n"
+"instalacji."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Wczytaj"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Zapisz"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Nieprawidłowy plik"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Wybrany rozmiar przekracza dostępne miejsce"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Typ instalacji"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Nie wybrano żadnej grupy pakietów.\n"
+"Wybierz minimalną żądaną instalację:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Z X Window"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Z podstawową dokumentacją (zalecane!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Naprawdę minimalna instalacja (w szczególności bez urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Wszystkie"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Przygotowywanie instalacji"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Instalowanie pakietu %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Wystąpił błąd porządkowania pakietów:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Kontynuować?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Ponów próbę"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "Pomiń ten pakiet"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "Pomiń wszystkie pakiety z nośnika \"%s\""
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "Wróć do wyboru nośników i pakietów"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "Wystąpił błąd podczas instalowania pakietu %s."
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Konfiguracja poinstalacyjna"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "Upewnij się, że nośnik Update Modules znajduje się w napędzie %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Aktualizacje"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Masz teraz możliwość pobrania zaktualizowanych pakietów, które\n"
+"zostały wydane po udostępnieniu dystrybucji. Mogą zawierać one poprawki\n"
+"poprawiające poziom bezpieczeństwa lub naprawiające błędy.\n"
+"\n"
+"Aby pobrać te pakiety, wymagane jest połączenie internetowe.\n"
+"\n"
+"Czy chcesz zainstalować uaktualnienia ?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Łączenie z serwerem - pobieranie listy dostępnych pakietów..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Nie można skontaktować się z serwerem zwierciadlanym %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Sprzęt"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Karta dźwiękowa"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Czy posiadasz kartę dźwiękową ISA?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Uruchom \"alsaconf\" lub \"sndconfig\" po zakończeniu instalacji aby "
+"skonfigurować kartę dźwiękową"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Karta dźwiękowa nie została wykryta. Wypróbuj \"harddrake\" po zakończeniu "
+"instalacji"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Karta TV"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Interfejs graficzny"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Sieć i Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Serwery pośredniczące"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "skonfigurowano"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Poziom bezpieczeństwa"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Zapora sieciowa"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "aktywowano"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "wyłączono"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Uruchamianie"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s na %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Nie masz skonfigurowanego systemu X Window. Czy na pewno chcesz tego?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Przygotowywanie programu rozruchowego..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Prawdopodobnie posiadasz przestarzały (OldWorld)lub też nieznany (Unknown) "
+"komputer. Program rozruchowy yaboot nie będzie działał. Instalacja będzie "
+"kontynuowana, lecz konieczne jest użycie programu BootX, aby uruchomić "
+"komputer. Argument jądra dla głównego systemu plików \"/\": root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Czy chcesz używać aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Błąd podczas instalowania aboot. \n"
+"Wymusić instalację, nawet gdyby groziło to zniszczeniem pierwszej partycji?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"W tym poziomie zabezpieczeń, dostęp do plików na partycji Windows jest "
+"ograniczony do administratora."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Włóż pustą dyskietkę do stacji %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Tworzenie dyskietki automatycznej instalacji..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Pewne etapy instalacji nie zostały zakończone\n"
+"\n"
+"Czy na pewno chcesz teraz zakończyć?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Gratulacje"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Uruchom ponownie"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Tworzenie dyskietki automatycznej instalacji"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Jeśli zachodzi taka potrzeba, to automatyczna instalacja może być \n"
+"przeprowadzona w sposób automatyczny .\n"
+"Zajmie ona wówczas cały dysk,\n"
+"co ma znaczenie przy późniejszej instalacji na innym komputerze.\n"
+"\n"
+"Można zażyczyć sobie odtworzenia instalacji.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Powtórzona"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatyczna"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Zapisz listę wybranych pakietów"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Wybór języka"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licencja"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Mysz"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Wykrywanie dysków"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Rodzaj instalacji"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Klawiatura"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Bezpieczeństwo"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Partycjonowanie"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Formatowanie"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Wybór pakietów"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Instalowanie"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Uwierzytelnianie"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Użytkownicy"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Sieć"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Program rozruchowy"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Konfiguracja X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Różne"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Usługi"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Aktualizacje"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Wyjdź"
diff --git a/perl-install/install/share/po/pt.po b/perl-install/install/share/po/pt.po
new file mode 100644
index 000000000..a8beee45a
--- /dev/null
+++ b/perl-install/install/share/po/pt.po
@@ -0,0 +1,1646 @@
+# translation of pt.po to Português
+# translation of pt.po to
+#
+# Latest versions of po files are at http://www.mandrivalinux.com/l10n/pt.php3
+#
+# Copyright (C) 2000 Mandriva
+#
+# Fernando Moreira <fmoreira@netc.pt>, 1999.
+# Jorge Costa <Jorgercosta@netc.pt>, 2001.
+# José JORGE <jose.jorge@oreka.com>, 2002,2003.
+# Jose Jorge <jjorge@free.fr>, 2003, 2004, 2005.
+# Jose Carlos D. S. Saraiva <jose.d.s.saraiva@clix.pt>, 2004.
+# Zé <mmodem00@netvisao.pt>, 2004, 2005, 2006.
+# Américo José Melo <mmodem00@netvisao.pt>, 2004, 2005.
+# Ze <mmodem00@netvisao.pt>, 2004.
+# José Melo <mmodem00@gmail.com>, 2005.
+# José Melo <mmodme00@gmail.com>, 2005.
+# Jose JORGE <jjorge@free.fr>, 2005.
+# Zé <mmodem00@gmail.com>, 2006, 2007.
+msgid ""
+msgstr ""
+"Project-Id-Version: pt\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-02-18 17:23+0000\n"
+"Last-Translator: Zé <mmodem00@gmail.com>\n"
+"Language-Team: Português <pt@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Tem mais alguma média suplementar?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"A seguinte média foi encontrada e será usada durante a instalação: %s.\n"
+"\n"
+"\n"
+"Tem alguma média de instalação suplementar para configurar?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Rede (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Rede (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Rede (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL do espelho?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "O URL deve começar por ftp:// ou http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"A contactar o sítio web Mandriva Linux para obter a lista de espelhos "
+"disponíveis..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Falha ao contactar o sítio web Mandriva Linux para obter a lista de espelhos "
+"disponíveis"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Escolha um espelho para transferir os pacotes"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Configuração NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Por favor indique o endereço e o directório da sua média NFS"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Nome do endereço em falta"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "O directório deve começar por \"/\""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Endereço da montagem NFS?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Directório"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Suplementar"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Não é possível encontrar o ficheiro hdlist neste espelho. Certifique-se que "
+"a localização está correcta."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "A ver os pacotes já instalados..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "A remover pacotes antes de actualizar..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "A procurar pacotes para actualizar..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Seleccionou o(s) seguinte(s) servidor(es): %s\n"
+"\n"
+"\n"
+"Estes servidores são activados por omissão. Não têm qualquer problema\n"
+"de segurança conhecido, mas podem ser encontrados alguns novos problemas.\n"
+"Nesse caso, deve actualizar o seu sistema assim que possível.\n"
+"\n"
+"\n"
+"Deseja realmente instalar estes servidores?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Os seguintes pacotes serão removidos para poder actualizar o seu sistema: %"
+"s\n"
+"\n"
+"\n"
+"Deseja realmente remover estes pacotes ?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Os seguintes discos foram renomeados:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (anteriormente conhecido por %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Rede"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Por favor escolha uma média"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "O ficheiro já existe. Deseja sobrepôr o ficheiro?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Permissão negada"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Nome NFS inválido"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Média danificada %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Não é possível capturar imagens do ecrã antes de particionar"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "As capturas de ecrã estarão disponíveis após instalar em %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Instalação"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Configuração"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Deve também formatar %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Algum material no seu computador precisa de controladores ``proprietários''\n"
+"para funcionar. Pode encontrar mais informações em: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "A ligar a rede"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "A desligar a rede"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "A transferir o ficheiro %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "A copiar alguns pacotes no disco para uso futuro"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Cópia em progresso"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "recomendado"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "importante"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "muito bom"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "bom"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "talvez"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "linha de produtos 2007"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Firewall Invictus"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Modo Discovery Live"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Como registar"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Serviços Emlinha Mandriva"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Novo Tema"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Estação de Trabalho"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Estação de Trabalho Office"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Programas Office: processadores de texto (OpenOffice.org Writer, Kword), "
+"folhas de cálculo (OpenOffice.org Calc, Kspread), visualizadores PDF, etc"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Programas office: processadores de texto (kword, abiword), folhas de cálculo "
+"(kspread, gnumeric), visualizadores pdf, etc"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Estação de Jogo"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Programas de divertimento: arcada, tabuleiros, estratégia, etc"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Estação multimédia"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Aplicações de reprodução/edição de som e vídeo"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Estação internet"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Conjunto de ferramentas para ler e enviar correio electrónico e news (pine, "
+"mutt, tin...) e para navegar na Web"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Computador de Rede (cliente)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Clientes para diferentes protocolos incluindo ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Ferramentas para facilitar a configuração do seu computador"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Ferramentas de Consola"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr ""
+"Editores, Linha de Comandos (shell), ferramentas de ficheiros, terminais"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Desenvolvimento"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C e C++ bibliotecas de programação, programas e ficheiros 'include'"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Documentação"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Livros e Howto's sobre o Linux e Software Livre"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Base Padrão do Linux (LSB). Suporte a aplicações terceiras."
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Servidor Web"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Servidor Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Firewall/Router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internet gateway"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Correio/Noticias"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Servidor de correio electrónico Postfix , servidor de noticias In"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Servidor de Directório"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Servidor FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Nome do Domínio e Servidor de Informação da Rede"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Servidor de Partilhas de Ficheiros e Impressão"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "Servidor NFS, Servidor Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Base de Dados"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Servidor de Base de Dados PostgreSQL e MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Correio Electrónico"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Servidor de correio electrónico Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Servidor de Base de Dados PostgreSQL ou MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Servidor/Computador de Rede"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Servidor NFS, servidor SMB, servidor Proxy, servidor SSH"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Ambiente Gráfico"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Estação de Trabalho KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"O Ecrâ de Trabalho K (KDE), o ambiente gráfico básico com uma colecção de "
+"ferramentas"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Estação de Trabalho Gnome"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Um ambiente gráfico com um conjunto de aplicações amigáveis e ferramentas de "
+"ecrâ"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "Ecrâ IceWm"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Outros Ambientes Gráficos"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, etc"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Utilidades"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Servidor SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Servidor de Configuração Remota Webmin"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Utilidades da Rede/Monitarização"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+"Ferramentas de monitorização, contagem de processos, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Assistentes Mandriva"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Assistentes para configurar o servidor"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Ocorreu um erro, mas não se sabe bem como o resolver.\n"
+"Continue a seu próprio risco."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Alguns pacotes importantes não foram devidamente instalados.\n"
+"O seu controlador de cdrom ou o seu cdrom está defeituoso.\n"
+"Verifique o cdrom num computador instalado usando \"rpm -qpl media/main/*.rpm"
+"\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "A entrar na etapa `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Instalação Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> entre elementos"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"O seu sistema é baixo em recursos. Pode ter algum problema ao instalar\n"
+"o Mandriva Linux. Se isso ocorrer, pode tentar uma instalação em modo "
+"texto.\n"
+"Para isso, prima `F1' quando arrancar do CDROM, e depois digite `text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Selecção do Grupo de Pacotes"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Selecção individual de pacotes"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Tamanho total: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Pacote danificado"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versão: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Tamanho: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Importância: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Não pode seleccionar/desseleccionar este pacote"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "devido a faltar %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "devido a %s insatisfeitas"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "a tentar promover %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "para manter %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Não pode seleccionar este pacote pois não existe espaço livre para o instalar"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Os seguintes pacotes irão ser instalados"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Os seguintes pacotes irão ser removidos"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Este é um pacote obrigatório, não pode ser desseleccionado"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Não pode desseleccionar este pacote. Já se encontra instalado"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Não pode desseleccionar este pacote. Tem que ser actualizado"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Mostrar pacotes seleccionados automaticamente"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Instalar"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Carregar/Gravar selecção"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "A actualizar selecção de pacotes"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Instalação mínima"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Gestão de Software"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Escolha os pacotes que deseja instalar"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "A instalar"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Sem detalhes"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Tempo restante "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "A estimar"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pacote"
+msgstr[1] "%d pacotes"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Sumário"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Configurar"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "não configurado"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"A seguinte média de instalação foi encontrada.\n"
+"Se quer evitar alguns deles, pode desmarcá-los agora."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Tem a opção de copiar o conteúdo dos CDs para o disco rígido antes da "
+"instalação.\n"
+"Irá continuar a partir do disco rígido e os pacotes irão permanecer "
+"disponíveis assim que o sistema estiver instalado."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Copiar todos os CDs"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Ocorreu um erro"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Por favor escolha o tipo de teclado."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Aqui está a lista completa dos teclados disponíveis"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Instalar/Actualizar"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Isto é uma instalação ou uma actualização?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Actualizar %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Senha de encriptação para %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "A configurar IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Sem espaço livre 1MB de arranque (bootstrap)! A instalação irá continuar, "
+"mas para arrancar o seu sistema, irá precisar de criar a partição de "
+"arranque (bootstrap) no DiskDrake"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Irá precisar de criar uma partição de arranque (bootstrap) PPC PReP! A "
+"instalação irá continuar, mas para arrancar o seu sistema, irá precisar de "
+"criar a partição de arranque (bootstrap) no DiskDrake"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Mude o seu Cd-Rom!\n"
+"Por favor insira o Cd-Rom chamado \"%s\" no seu dispositivo e prima Ok "
+"quando pronto.\n"
+"Se não o tiver, prima Cancelar para evitar a instalação deste Cd-Rom."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "A procurar pacotes disponíveis..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"O seu sistema não tem espaço suficiente em disco para instalar ou actualizar "
+"(%dMB > %dMB)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Por favor escolha carregar ou gravar uma selecção de pacotes.\n"
+"O formato é o mesmo como o dos ficheiros gerados por auto_install."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Ler"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Gravar"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Ficheiro danificado"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "O tamanho seleccionado é maior que o espaço disponível"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Tipo de instalação"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Não escolheu qualquer grupo de pacotes.\n"
+"Por favor escolha o tipo de instalação mínima que deseja:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Com X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Com documentação dbásica (recomendado!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Verdadeira instalação mínima (especialmente sem urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Tudo"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "A preparar instalação"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "A instalar o pacote %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Ocorreu um erro ao ordenar os pacotes:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Continuar mesmo assim?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Tentar novamente"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "Saltar este pacote"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "Saltar todos os pacotes da média \"%s\""
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "Voltar à média e selecção de pacotes"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "Ocorreu um erro a instalar o pacote %s."
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Configuração pós-instalação"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+"Por favor certifique-se que a média Módulos de Actualização está no "
+"dispositivo %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Actualizações"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Tem agora a possibilidade de transferir os pacotes de actualização.\n"
+"Estes pacotes foram actualizados depois da distribuição ter saído.\n"
+"Podem ter correcções de segurança ou de erros.\n"
+"\n"
+"Para transferir estes pacotes, irá precisar de uma conexão Internet activa.\n"
+"\n"
+"Deseja instalar as actualizações ?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"A contactar o espelho para transferir a lista de pacotes disponíveis..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Não é possível contactar o espelho %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Material"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Placa de Som"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Tem alguma placa de som ISA?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Execute \"alsaconf\" ou \"sndconfig\" depois da instalação para configurar a "
+"sua placa de som"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Nenhuma placa de som detectada. Tente \"harddrake\" depois da instalação"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Placa TV"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Interface gráfico"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Rede e Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxies"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "configurado"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Nível de Segurança"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Firewall"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "activado"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "desactivado"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Arranque"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s em %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Não configurou o X. Tem certeza que realmente quer isto?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "A preparar o carregador de arranque..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Parece ter uma máquina do Século Passado ou Desconhecida, o carregador de "
+"arranque yaboot não irá funcionar para si. A instalação irá continuar, mas "
+"irá precisar de usar o BootX ou algum outro meio para arrancar a sua "
+"máquina. O argumento do kernel para root fs é: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Deseja usar o aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Erro ao instalar o aboot, \n"
+"tentar forçar a instalação mesmo que isso destrua a primeira partição?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Neste nível de segurança, o acesso aos ficheiros na partição do Windows é "
+"limitado ao administrador."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Insira uma disquete vazia no dispositivo %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "A criar disquete de auto-instalação..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Alguns passos não estão completos.\n"
+"\n"
+"Deseja realmente sair agora?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Parabéns"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Reiniciar"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Gerar disquete de auto instalação"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"A auto instalação pode ser totalmente automatizada se\n"
+"quiser, nesse caso ela tomará conta do disco rígido!!\n"
+"(isto é feito para instalar outra máquina).\n"
+"\n"
+"Pode preferir repetir a instalação.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Repetir"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automática"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Gravar selecção de pacotes"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Linguagem"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licença"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Rato"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Detecção de discos rígidos"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Classe de instalação"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Teclado"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Segurança"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Particionar"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "A formatar"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "A escolher pacotes"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "A instalar"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Autenticação"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Utilizadores"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Rede"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Carregador de arranque"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Configurar X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Sumário"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Serviços"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Actualizações"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Sair"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d pacote, %d MB)"
+#~ msgstr[1] "(%d pacotes, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pacotes"
+
+#~ msgid "Language"
+#~ msgstr "Linguagem"
+
+#~ msgid "License"
+#~ msgstr "Licença"
+
+#~ msgid "Installation class"
+#~ msgstr "Classe de instalação"
+
+#~ msgid "Formatting"
+#~ msgstr "A formatar"
+
+#~ msgid "Choosing packages"
+#~ msgstr "A escolher pacotes"
+
+#~ msgid "Users"
+#~ msgstr "Utilizadores"
+
+#~ msgid "Networking"
+#~ msgstr "Rede"
+
+#~ msgid "Configure X"
+#~ msgstr "Configurar X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Não é possível aceder aos módulos que correspondem ao seu kernel (falta o "
+#~ "ficheiro %s), isto normalmente quer dizer que a sua disquete de arranque "
+#~ "não sincronizada com a média de instalação (por favor crie uma nova "
+#~ "disquete de arranque)"
diff --git a/perl-install/install/share/po/pt_BR.po b/perl-install/install/share/po/pt_BR.po
new file mode 100644
index 000000000..2a695bc1c
--- /dev/null
+++ b/perl-install/install/share/po/pt_BR.po
@@ -0,0 +1,1649 @@
+# translation of pt_BR.po to
+# translation of pt_BR.po to Brazilian Portuguese
+# translation of DrakX-pt_BR.po to Brazilian Portuguese
+# tradução de DrakX-pt_BR.po para Português do Brasil
+# DRAKX PT_BR PO FILE
+# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+# Lisiane Sztoltz Teixeira <lisiane@mandriva.com>
+# Andrei Bosco Bezerra Torres <andrei_bosco@yahoo.com.br>, 2000, 2003.
+# Bruno Dorfman Buys <brunobuys@zipmail.com.br>, 2002.
+# Tiago da Cruz Bezerra <tiagocruz18@uol.com.br>,2002 2003, 2004.
+# Ricardo de Castilho <cast_brasil@ig.com.br>, 2003.
+# Carlinhos Cecconi <carlinux@terra.com.br>, 2003, 2004.
+# Deivi Lopes Kuhn <deivikuhn@yahoo.com.br>, 2003, 2004.
+# Cristiano Otto Von Trompczynski <cris@mandriva.com>, 2005.
+# Arthur R. Mello <renato@conectiva.com.br>, 2005.
+# Arthur Renato Mello <renato@conectiva.com.br>, 2005.
+# Felipe Arruda <felipemiguel@gmail.com>, 2006.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: pt_BR\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2006-09-14 09:54-0300\n"
+"Last-Translator: Felipe Arruda <felipemiguel@gmail.com>\n"
+"Language-Team: Brazilian Portuguese <kde-i18n-pt_br@mail.kde.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Você tem alguma mídia suplementar adicional?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"A mídia a seguir foi encontrada e será usada durante a instalação: %s.\n"
+"\n"
+"\n"
+"Você deseja configurar alguma mídia suplementar?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Rede (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Rede (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Rede (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL do servidor espelho (mirror)?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "URL deve começar com ftp:// ou http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Contatando o site da Mandriva Linux para pegar a lista de mirrors (espelhos) "
+"disponíveis..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Falha ao tentar obter a lista de mirrors disponíveis do site da Mandriva "
+"Linux"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Escolha um servidor espelho (mirror) de onde pegar os pacotes"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Configuração NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Por favor, entre o nome do servidor e o diretório da mídia NFS"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Nome do servidor do ponto de montagem NFS"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Diretório"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Não foi possível encontrar o arquivo da lista de pacotes neste servidor "
+"(mirror). Verifique se a localização está correta."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Procurando por pacotes já instalados..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Removendo pacotes antes da atualização..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Procurando pacotes para atualizar..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Você selecionou o(s) seguinte(s) servidores(s): %s\n"
+"\n"
+"\n"
+"Estes servidores são ativados por padrão. Eles não possuem nenhuma falha\n"
+"de segurança conhecida, mas pode ocorrer de aparecer alguma nova. Neste\n"
+"caso, você deve atualizá-los o mais cedo possível.\n"
+"\n"
+"\n"
+"Você realmente quer instalar estes servidores?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Os seguintes pacotes serão removidos para permitir a atualização do seu\n"
+"sistema: %s\n"
+"\n"
+"\n"
+"Você realmente quer remover estes pacotes?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "O(s) seguinte(s) disco(s) foi renomeado:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (previamente nomeado como %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Rede"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Por favor, escolha uma mídia"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "O arquivo já existe. Sobrescrevê-lo?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Permissão negada"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Nome NFS inválido"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Mídia %s ruim"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Não foi possível capturar telas antes de particionar"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "As telas estarão disponíveis depois da instalação em %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Instalação"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Configuração"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Você também deve formatar %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Algum hardware no seu computador precisa de drivers 'proprietários' \n"
+"para funcionar. Você pode encontrar informações sobre eles em: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Ativando a rede"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Desativando a rede"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Baixando arquivo %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Copiando alguns pacotes em disco para uso posterior"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Cópia em progresso"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "precisa ter"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "importante"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "muito bom"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "bom"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "talvez"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "linha de produtos 2007"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Firewall Invictus"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery em Modo Live"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Como registrar"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Serviços Mandriva Online"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Novo Tema"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Estação de Trabalho"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Estação de Trabalho de Escritório"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Programas de escritório: processadores de texto (OpenOffice.org Writer, "
+"Kword), tabelas (OpenOffice.org Calc, Kspread), visualizadores PDF, etc."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Programas de escritório: processadores de texto (Kword, Abiword), tabelas "
+"(Kspread, Gnumeric), visualizadores PDF, etc"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Estação de Jogos"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Programas de entretenimento: arcade, tabuleiro, estratégia, etc."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Estação de Multimídia"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Programas de edição/reprodução de som e vídeo"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Estação de Internet"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Conjunto de ferramentas para ler e enviar mensagens e notícias (mutt, "
+"tin...) e para navegar na Web."
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Computador de rede (cliente)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Clientes para diferentes protocolos, incluindo ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Ferramentas para facilitar a configuração do seu computador"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Ferramentas de Console"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editores, shells, ferramentas de arquivos, terminais"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Desenvolvimento"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Bibliotecas de desenvolvimento C e C++, programas e arquivos include"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Documentação"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Livros e documentos Como Fazer sobre Linux e Software Livre"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base: suporte a aplicativos de terceiros"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Servidor Web"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Servidor Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Firewall/Roteador"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Gateway Internet"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "E-mail/Grupos de Notícias"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr ""
+"Servidor de e-mail Postfix, servidor de grupos de notícias (grupos de "
+"discussão) Inn"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Servidor de Diretório"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Servidor FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr ""
+"Servidor de Nomes do Domínio (DNS) e Servidor de Informações de Rede (NIS)"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Servidor de Compartilhamento de Impressoras e Arquivos"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "Servidor NFS, Servidor Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Banco de dados"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Servidor de banco de dados PostgreSQL e MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "E-mail"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Servidor de e-mail Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Servidor de banco de dados PostgreSQL ou MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Servidor de Rede"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Servidor NFS, servidor SMB, servidor Proxy, servidor SSH"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Ambiente Gráfico"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Estação de Trabalho KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"O Ambiente de Trabalho K (ou K Desktop Environment), o ambiente gráfico "
+"básico acompanhado de uma coleção de ferramentas"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Estação de Trabalho GNOME"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Um ambiente gráfico com um conjunto de aplicativos e ferramentas amigáveis"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "Ambiente de Trabalho IceWm"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Outros Ambientes Gráficos"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, etc"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Utilitários"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Servidor SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Servidor de Configuração Remota Webmin"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Utilitários de Rede/Monitoramento"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+"Ferramentas de monitoração, contabilização de processos, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Assistentes Mandriva"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Assistentes para configurar o servidor"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Um erro ocorreu, mas não é possível tratá-lo.\n"
+"Continue por sua própria conta e risco."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Alguns pacotes importantes não foram instalados corretamente.\n"
+" O seu drive de CD-ROM ou o seu CD-ROM estão defeituosos.\n"
+" Verifique o CD-ROM em um computador instalado, usando \"rpm -qpl media/main/"
+"*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Entrando no passo `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Instalação do Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> move entre elementos"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Seu sistema está com poucos recursos. Você pode ter algum problema na\n"
+"instalação do Mandriva Linux. Se isso ocorrer, você pode tentar instalar "
+"usando o\n"
+"modo texto. Para isso, aperte 'F1' na tela de inicialização e escreva 'text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Seleção de Grupo de Pacotes"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Seleção individual de pacotes"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Tamanho total: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Pacote defeituoso"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versão: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Tamanho:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Importância:"
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Você não pode selecionar/desmarcar este pacote"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "devido a falta de %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "devido a %s não-satisfeito(a)"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "tentando promover %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "a fim de manter %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Você não pode selecionar esse pacote pois não existe espaço livre para "
+"instalá-lo"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Os seguintes pacotes serão instalados"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Os seguintes pacotes serão removidos"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Esse é um pacote obrigatório, e não pode ser desmarcado"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Você não pode desmarcar esse pacote. Ele já está instalado"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Você não pode desmarcar este pacote. Ele precisa ser atualizado"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Mostrar automaticamente os pacotes selecionados"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Instalar"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Carregar/Salvar seleção"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Atualizando seleção de pacotes"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Instalação mínima"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Gerenciamento de Software"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Escolha os pacotes que você quer instalar"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Instalando"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Sem detalhes"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Tempo restante "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Estimando"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pacote"
+msgstr[1] "%d pacotes"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Sumário"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Configurar"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "não configurado"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"As seguintes mídias de instalação foram encontradas.\n"
+"Se você deseja ignorar alguma delas, você pode desmarcá-las agora."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Você pode copiar o conteúdo dos CDs para o seu disco rígido antes da "
+"instalação.\n"
+"A instalação irá continuar a partir do seu disco rígido e os pacotes "
+"continuarão disponíveis após a instalação ser finalizada."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Copiar todos os CDs"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Ocorreu um erro"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Por favor, escolha o layout do seu teclado."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Aqui está a lista completa dos teclados disponíveis"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Instalar/Atualizar"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Esta é uma instalação ou atualização?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Atualizar %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Chave de criptografia para %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Configurando IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Sem espaço livre para bootstrap de 1MB! A instalação continuará, mas para "
+"poder iniciar seu sistema você precisará criar uma partição bootstrap no "
+"DiskDrake"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Você precisará criar um PPC PReP Boot bootstrap! O instalador irá continuar, "
+"mas para iniciar seu sistema, você precisa criar uma partição bootstrap no "
+"DiskDrake."
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Mude o seu CD-ROM\n"
+"\n"
+"Por favor, insira o CD-ROM chamado \"%s\" no seu drive e clique em Ok quando "
+"estiver pronto.\n"
+"Se você não o tiver em mãos, clique em Cancelar para evitar a instalação "
+"desse CD-ROM."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Procurando por pacotes disponíveis..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Por favor, escolha entre carregar ou salvar a seleção de pacotes. \n"
+"O formato é o mesmo que os arquivos gerados pelo auto_install."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Carregar"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Salvar"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Arquivo corrompido"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "O tamanho escolhido é maior que o espaço disponível"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Tipo de instalação"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Você não selecionou nenhum grupo de pacotes.\n"
+"Por favor, escolha a instalação mínima que deseja:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Com X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Com documentação básica (recomendado!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Instalação realmente mínima (especialmente sem o uprmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Tudo"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Preparando a instalação"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr ""
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Houve um erro durante a ordenação dos pacotes:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Continuar mesmo assim?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Tentar Novamente"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Salvar seleção de pacotes"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Houve um erro durante a instalação dos pacotes:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Configuração pós-instalação"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+"Por favor, certifique-se de que a mídia Atualizar Módulos está no drive %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Atualizações"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Agora você tem a oportunidade de baixar os pacotes atualizados. Estes "
+"pacotes\n"
+"foram atualizados após o lançamento de sua distribuição. Eles podem conter\n"
+"atualizações de segurança ou correções de falhas.\n"
+"\n"
+"Para baixar estes pacotes, você precisa ter uma conexão com a internet\n"
+"funcionando.\n"
+"\n"
+"Você deseja instalar estas atualizações?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"Contatando o servidor espelho (mirror) para obter a lista de pacotes "
+"disponíveis..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Não foi possível conectar-se ao servidor %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Hardware"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Placa de som"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Você tem alguma placa de som ISA?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Execute \"alsaconf\"ou \"sndconfig\" após a instalação para configurar sua "
+"placa de som"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Nenhuma placa de som detectada. Tente o \"harddrake\" após a instalação"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Placa de TV"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Interface gráfica"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Rede & Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxies"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "configurado"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Nível de Segurança"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Firewall"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "ativado"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "desativado"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Boot"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s em %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Você não configurou o sistema X. Você quer realmente deixar assim?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Preparando gerenciador de inicialização..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Você parece ter uma máquina muito antiga ou desconhecida, e o gerenciador de "
+"inicialização yaboot não funcionará para você. A instalação continuará, mas "
+"você precisará usar o BootX ou outros meios para inicializar sua máquina. O "
+"argumento do kernel para o sistema de arquivos raiz é: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Você quer usar o aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Erro ao instalar o aboot; \n"
+"tentar forçar a instalação, mesmo que isto destrua a primeira partição?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Neste nível de segurança, o acesso aos arquivos em partições Windows é "
+"restrita apenas para o administrador."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Insira um disquete vazio no drive %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Criando disquete de instalação automática..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Alguns passos não foram completados.\n"
+"\n"
+"Você realmente quer sair agora?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Parabéns"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Reiniciar"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Criar disquete de instalação automática"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"A instalação automática pode ser totalmente automatizada, se\n"
+"você desejar, e neste caso, ela tomará conta do disco\n"
+"rígido!! (em vista da instalação em outra máquina).\n"
+"\n"
+"Você pode preferir repetir a instalação.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Repetir"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automático"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Salvar seleção de pacotes"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Idioma"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licença"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Mouse"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Detecção de discos rígidos"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Classe de instalação"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Teclado"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Segurança"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Particionamento"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Formatando"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Escolhendo pacotes"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Instalando"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Autenticação"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Usuários"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Rede"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Inicialização"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Configurar X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Sumário"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Serviços"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Atualizações"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Sair"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d pacote, %d MB)"
+#~ msgstr[1] "(%d pacotes, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pacote(s)"
+
+#~ msgid "Language"
+#~ msgstr "Idioma"
+
+#~ msgid "License"
+#~ msgstr "Licença"
+
+#~ msgid "Installation class"
+#~ msgstr "Classe de instalação"
+
+#~ msgid "Formatting"
+#~ msgstr "Formatando"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Escolhendo pacotes"
+
+#~ msgid "Users"
+#~ msgstr "Usuários"
+
+#~ msgid "Networking"
+#~ msgstr "Rede"
+
+#~ msgid "Configure X"
+#~ msgstr "Configurar X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Não foi possível acessar os módulos do kernel correspondentes ao seu "
+#~ "kernel (o arquivo %s está faltando); isto significa geralmente que seu "
+#~ "disco de boot não está em sincronia com sua instalação (favor criar um "
+#~ "novo disco de boot)"
diff --git a/perl-install/install/share/po/ro.po b/perl-install/install/share/po/ro.po
new file mode 100644
index 000000000..059a055c5
--- /dev/null
+++ b/perl-install/install/share/po/ro.po
@@ -0,0 +1,1577 @@
+# Translation file of Mandriva Linux graphic install
+# Copyright (c) 2000 Mandriva
+# Florin Grad <florin@mandriva.com>, 1999-2000
+# Dragos Marian Barbu <dragosb@softhome.net>, 2000
+# Ovidiu Constantin <ovidiu.constantin@gmx.net>, 2002, 2003
+# Harald Ersch <harald@ersch.ro>,2003
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX 7.1\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2003-09-11 18:11+0200\n"
+"Last-Translator: Ovidiu Constantin <ovidiu.constantin@gmx.net>\n"
+"Language-Team: Romanian Translators for Free Software <rtfs-project@lists."
+"sourceforge.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3;plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
+"2:1))\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Aveţi o altă interfaţa?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "Reţea %s"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "Reţea %s"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Contactez situl Mandriva Linux pentru obţinerea listei oglinzilor "
+"disponibile..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Contactez situl Mandriva Linux pentru obţinerea listei oglinzilor "
+"disponibile..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Alegeţi o oglindă de la care să descărcaţi pachetele"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Director"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Nu găsesc %s pe %s"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Căutare pachetele instalate deja ..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Cautarea pachetelor de actualizat"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Următoarele pachete vor fi şterse pentru a permite actualizarea sistemului "
+"dvs: %s\n"
+"\n"
+"\n"
+"Chiar doriţi ştergerea acestor pachete?\n"
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Este necesară instalarea următoarelor pachetele: \n"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, fuzzy, c-format
+msgid "NFS"
+msgstr "HFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Reţea"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "Vă rog să alegeţi"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Fişierul există deja. Îl suprascriu?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Permisiune respinsă."
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "am adăugat mediul %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Nu pot captura ecranul înainte de partiţionare"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Capturile ecran vor fi disponibile după instalare în %s"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "În curs de instalare"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Configuraţie"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Trebuie de asemenea formatat(ă) %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Pornire reţea"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Oprire reţea"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "Trimit fişierele..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "Detecţia este în progres..."
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "trebuie avut"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "important"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "foarte simpatic"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "simpatic: "
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "poate"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr ""
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Staţie de lucru"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Staţie de lucru de birou"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Programe gen Office: procesoare de text (OpenOffice.org Writer, Kword), "
+"calcul tabelar (OpenOffice.org Calc, Kspread), vizualizatoare de fişiere pdf "
+"etc."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Programe gen Office: procesoare de text (kword, abiword), calcul tabelar "
+"(kspread, gnumeric), vizualizatoare de fişiere pdf etc."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Staţie de lucru pt. jocuri"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Programe de amuzament: arcade, boards, strategie etc."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Staţie de lucru multimedia"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Programe de editare/redare pt. sunet şi video"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Staţie de lucru în Internet"
+
+#: share/meta-task/compssUsers.pl:44
+#, fuzzy, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Set de unelte pt. citire/trimitere poştă şi ştiri (pine, mutt, tin...) şi "
+"navigare pe Web"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Calculator în reţea (client)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Clienţi pt. diverse protocoale, inclusiv ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Unelete pentru uşurarea configurării calculatorului dvs."
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Unelte consolă"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editoare, interpretoare, terminale, unelte fişiere"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Dezvoltare"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Biblioteci de dezvoltare C şi C++, programe şi fişiere include"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Documentaţie"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Cărţi şi HowTo despre Linux şi programele libere"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Baza standard Linux. Sprijin pentru aplicaţii ale altora."
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Server Web"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, fuzzy, c-format
+msgid "Groupware"
+msgstr "Grup"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Server Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Firewall/Router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Gateway Internet"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/Fişier/_Nou"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Server de poştă Postfix"
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "Restaurează de pe CD"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Server FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Server nume de domeniu (DNS) şi NIS"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Server de imprimantă"
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "Server SAMBA"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Baze de date"
+
+#: share/meta-task/compssUsers.pl:117
+#, fuzzy, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Server de baze de date MySQL sau PostgreSQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Poştă"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Server de poştă Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Server de baze de date MySQL sau PostgreSQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Server în reţea"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Server NFS, SMB, Proxy, SSH"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Mediu Grafic"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Staţie de lucru KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"Mediul de birou K, mediul grafic de bază cu o colecţie de unelte asociate"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Staţie de lucru Gnome"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "Un mediu grafic cu un set de aplicaţii prietenoase şi unelte de birou"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Ecran"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Alte desktopuri grafice"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+
+#: share/meta-task/compssUsers.pl:183
+#, fuzzy, c-format
+msgid "Utilities"
+msgstr "Filipine"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Server SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "Webcam-uri"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Configurare Mandriva Linux Terminal Server"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Monitorizare reţea"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "Centrul de control Mandriva Linux"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "Nu am putut configura imprimanta \"%s\"!"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"A apărut o eroare pe care nu ştiu să o interpretez în mod corect.\n"
+"Continuaţi pe riscul dumneavoastră."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Cîteva pachete importante nu s-au instalat corect.\n"
+"Sau aveţi o problemă cu perifericul de cdrom sau cu \n"
+"cdrom-ul propriu-zis. Folosiţi comanda \"rpm -qpl \n"
+"media/main/*.rpm\" pentru a verifica cdrom-ul pe un\n"
+"sistem instalat.\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Începe etapa `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Instalare Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> între elemente"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Selectarea grupurilor de pachete"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Selectare individuală a pachetelor"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Mărime totală: %d / %d MB "
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Pachet defectuos"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versiune: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Mărime: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Importanţă: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Nu puteţi selecta/deselecta acest pachet"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "datorită %s lipsă"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "datorită %s nesatisfăcute"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "încerc să promovez %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "pentru a păstra %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "Nu aveţi destul spaţiu pentru a instala acest pachet"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Următoarele pachetele vor instalate"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Următoarele pachete vor fi şterse"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Acesta este un pachet indispensabil şi nu poate fi deselectat"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Nu puteţi deselecta acest pachet. E deja instalat"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Nu puteţi deselecta acest pachet. Trebuie acualizat."
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Arată pachetele selectate automat"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Instalare"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "Selectare pachete"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Actualizare pachete selectate"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Instalare minimă"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Administrare programe"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Alegeţi pachetele pe care doriţi să le instalaţi"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "În curs de instalare"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Fără detalii"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Timp rămas "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Estimare"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pachete"
+msgstr[1] "%d pachete"
+msgstr[2] "%d pachete"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Sumar"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Configurează"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "neconfigurat"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "A apărut o eroare"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Vă rog să alegeţi dispunerea tastaturii."
+
+#: steps_interactive.pm:99
+#, fuzzy, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Aici este lista tuturor ţărilor disponibile"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Instalare/Actualizare"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Este vorba de o instalare sau de o actualizare ?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Actualizare %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Cheia de criptare pentru %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Configuraţia IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Schimbaţi Cd-Rom-ul!\n"
+"\n"
+"Vă rog introduceţi Cd-Rom-ul etichetat \"%s\" şi apoi apăsaţi Ok.\n"
+"Dacă nu-l aveţi, apăsaţi Renunţă pentru a evita instalarea de pe acest Cd-"
+"Rom."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Căutarea pachetelor disponibile"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Încărcare"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Salvează"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "Încarcă un fişier"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr ""
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Tip instalare"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Cu X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr ""
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Instalare cu adevărat minimă (în mod expres fără urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Toate"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Pregătesc instalarea"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Instalarea pachetului %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "O eroare a apărut la ordonarea pachetelor:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Să continui totuşi?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Înregistrare selecţie pachete"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "A fost o eroare la instalarea pachetelor:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Configuraţie post-install"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Actualizări"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"Contactez serverul oglindă pentru preluarea listei pachetelor disponibile..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Nu pot executa serverul de oglindire %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Echipamente"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Placă de sunet"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Aveţi o placă de sunet ISA?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Nu am detectat nici o placă de sunet. Încercaţi \"harddrake\" după instalare"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Placă TV"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Interfaţa grafică"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Reţea şi Internet"
+
+#: steps_interactive.pm:851
+#, fuzzy, c-format
+msgid "Proxies"
+msgstr "Profiluri"
+
+#: steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "configured"
+msgstr "Reconfigurează"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Nivel de securitate"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Firewall"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "activat"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "dezactivat"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Demarare"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s pe %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Pegătirea gestionalului de demaraj..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Vreţi să folosiţi aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Eroare la instalrea lui aboot,\n"
+"să încerc să forţaţi instalarea chiar dacă aceasta distruge prima partiţie ?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Introduceţi o dischetă goală în perifericul %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Creez discheta de autoinstalare..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Câteva etape nu au fost terminate.\n"
+"\n"
+"Chiar vreţi să abandonaţi acum?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Felicitări"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Repornire sistem"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Generare dischetă de autoinstalare"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr ""
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatizat"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Înregistrare selecţie pachete"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Alegeţi limba"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licenţă"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Maus"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Detecţia discului fix"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Tastatură"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Securitate"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Partiţionare"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "În curs de instalare"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Autentificare"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Utilizatori"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Reţea"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Gestionar de demarare"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Configurare X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Sumar"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Servicii"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Actualizări"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Ieşire"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d pachete"
+#~ msgstr[1] "%d pachete"
+#~ msgstr[2] "%d pachete"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pachete"
+
+#~ msgid "Language"
+#~ msgstr "Alegeţi limba"
+
+#~ msgid "License"
+#~ msgstr "Licenţă"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Alegeţi tipul de instalare"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Estimare"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Alegeţi pachetele de instalat"
+
+#~ msgid "Users"
+#~ msgstr "Utilizatori"
+
+#~ msgid "Networking"
+#~ msgstr "Reţea"
+
+#~ msgid "Configure X"
+#~ msgstr "Configurare X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Nu pot accesa modulele corespunzătoare nucleului dvs. (fişierul %s "
+#~ "lipseşte), în general aceasta înseamnă că discheta de demaraj nu este "
+#~ "sincronizată cu mediul de instalare (vă rog creeaţi o nouă dischetă de "
+#~ "demaraj)"
diff --git a/perl-install/install/share/po/ru.po b/perl-install/install/share/po/ru.po
new file mode 100644
index 000000000..3e5e41c6a
--- /dev/null
+++ b/perl-install/install/share/po/ru.po
@@ -0,0 +1,1640 @@
+# Translation of DrakX.po to Russian
+# Copyright (C) 1999-2003 Mandriva
+#
+# Pavel Maryanov <acid_jack@ukr.net>, 2002,2003, 2005, 2006, 2007.
+# Alice Lafox <alice@lafox.com.ua>, 2003.
+# Alice Lafox <alice@lafox.net>, 2004, 2005.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-01-18 19:41+0200\n"
+"Last-Translator: Pavel Maryanov <acid_jack@ukr.net>\n"
+"Language-Team: Russian <ru@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Есть ли у вас следующий дополнительный носитель?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Был найден следующий носитель, который будет использован во время установки: "
+"%s.\n"
+"\n"
+"\n"
+"Если у вас вспомогательный носитель для настройки?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Сеть (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Сеть (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Сеть (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL зеркала?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "URL должен начинаться с ftp:// или http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Выполняется подключение к веб-сайту Mandriva Linux для получения списка "
+"доступных пакетов..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Не удалось подключиться к веб-сайту Mandriva Linux для получения списка "
+"доступных зеркал"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Выберите зеркало, с которого будут получены пакеты"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Настройка NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Укажите имя хоста и каталог носителя NFS"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Не указано имя хоста"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "Имя каталога должно начинаться с \"/\""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Имя хоста для монтирования NFS?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Каталог"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Дополнительный"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Невозможно найти список пакетов для этого зеркала. Проверьте правильность "
+"адреса."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Выполняется поиск уже установленных пакетов..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Удаляются пакеты перед обновлением..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Выполняется поиск пакетов для обновления..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Вы выбрали следующие серверы: %s\n"
+"\n"
+"\n"
+"Эти серверы по умолчанию включены. У них отсутствуют какие-либо известные\n"
+"проблемы с безопасностью, но некоторые еще могли быть не найдены. В этом\n"
+"случае вы обязательно должны обновить их и как можно скорее.\n"
+"\n"
+"\n"
+"Вы действительно хотите установить эти серверы?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Следующие пакеты будут удалены, чтобы обеспечить возможность обновления\n"
+"вашей системы: %s\n"
+"\n"
+"\n"
+"Вы действительно хотите удалить эти пакеты?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Следующие диски были переименованы:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (ранее назывался %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Сеть"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Пожалуйста, выберите источник"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Файл уже существует. Переписать его?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Доступ запрещен"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Неудачное имя NFS"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Неудачный источник %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Невозможно создать скриншоты перед разбивкой на разделы"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Скриншоты будут доступны после установки в %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Установка"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Настройка"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Вы также должны отформатировать %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Некоторым устройствам на вашем компьютере для нормальной работы требуются\n"
+"``родные'' драйверы.\n"
+"Вы можете найти различную информацию о них на: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Поднимается сеть"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Опускается сеть"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Загрузка файла %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "На диск копируются некоторые пакеты для использования в будущем"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Идёт копирование"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "должно присутствовать"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "важно"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "весьма желательно"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "желательно"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "может быть"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "Продукты серии 2007"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Файервол Invictus"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery в live-режиме"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Как зарегистрироваться"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Онлайновые службы Mandriva"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Новая тема"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Рабочая станция"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Офисная рабочая станция"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Офисные программы: текстовые процессоры (OpenOffice.org Writer, Kword), "
+"электронные таблицы (OpenOffice.org Calc, Kspread), программы просмотра pdf "
+"и т.д."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Офисные программы: текстовые процессоры (kword, abiword), электронные "
+"таблицы (kspread, gnumeric), программы просмотра pdf и т.д."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Игровая станция"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Развлекательные программы: аркады, настольные игры, стратегии и т.д."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Мультимедиа станция"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Программы для проигрывания/редактирования звука и видео"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Станция Интернет"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Набор утилит для чтения и отправки почты и новостей (mutt, tin...) и веб-"
+"серфинга"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Сетевой компьютер (клиент)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Клиенты для различных протоколов, включая ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Утилиты для облегчения настройки вашего компьютера"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Утилиты для консоли"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Редакторы, командные процессоры, файловые утилиты, терминалы"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Разработка"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Библиотеки разработки C и C++, программы и файлы include"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Документация"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Книги и HowTo по Linux и свободном программном обеспечении"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Стандартная база Linux. Поддержка приложений третьих разработчиков"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Веб-сервер"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Сервер Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Файервол/Маршрутизатор"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Интернет-шлюз"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Почта/Новости"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Почтовый сервер Postfix, сервер новостей Inn"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Сервер каталогов"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Сервер FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Сервер доменных имен и сервер информации о сети"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Сервер совместного доступа к файлам и принтерам"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "Сервер NFS, сервер Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "База данных"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Сервер баз данных PostgreSQL и MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Почта"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Почтовый сервер Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Сервер баз данных PostgreSQL или MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Сервер сети"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS-сервер, SMB-сервер, Proxy-сервер, ssh-сервер"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Графическая среда"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Рабочая станция KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K Desktop Environment - основная графическая среда с коллекцией "
+"сопроводительных утилит"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Рабочая станция Gnome"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Графическая среда с удобным для пользователя набором приложений и утилит "
+"рабочего стола"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "Рабочий стол IceWm"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Другие графические рабочие столы"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, и т.д."
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Утилиты"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Сервер SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Сервер удаленной настройки Webmin"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Сетевые утилиты/Мониторинг"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Утилиты мониторинга, учет процессов, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Мастера настройки от Mandriva"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Мастера для настройки сервера"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Произошла ошибка, но я не знаю, как ее корректно обработать.\n"
+"Продолжайте на свой собственный страх и риск."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Некоторые важные пакеты установились некорректно.\n"
+"Либо привод cdrom, либо компакт-диск поврежден.\n"
+"Проверьте диск, вставленный в компьютер, при помощи команды \"rpm -qpl media/"
+"main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Осуществляется переход на этап `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Установка Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> между элементами"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"В системе не хвататает ресурсов. Могут возникнуть проблемы при\n"
+"установке Mandriva Linux. В этом случае можно попробовать\n"
+"установку в текстовом режиме. Для этого нажмите `F1' при загрузке с\n"
+"CDROM'а, а затем наберите 'text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Выбор группы пакетов"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Выбор отдельных пакетов"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Общий объем: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Плохой пакет"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Версия:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Размер:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Важность: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Вы не можете выбрать/отменить_выбор этого пакета"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "из-за отсутствия %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "из-за неудовлетворенных %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "выполняется попытка активизировать %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "чтобы сохранить %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Вы не можете выбрать этот пакет, т.к. для его установки не хватает места"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Следующие пакеты будут установлены "
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Следующие пакеты будут удалены "
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Это обязательный пакет, его выбор не может быть отменен"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Вы не можете отменить выбор этого пакета. Он уже установлен"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Вы не можете отменить выбор этого пакета. Он должен быть обновлен"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Показывать автоматически выбранные пакеты"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Установить"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Загрузить/Сохранить выбор"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Обновляется выбор пакетов"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Минимальная установка"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Управление программами"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Выберите пакеты, которые вы хотите установить"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Устанавливается"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Убрать подробности"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Оставшееся время "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Приблизительная оценка"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d пакетов"
+msgstr[1] "%d пакетов"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Сводка"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Настройка"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "не настроен"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Найдены следующие установочные источники.\n"
+"Если вы хотите пропустить некоторые из них, вы можете снять с них отметку "
+"сейчас."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"У вас есть опция для копирования содержимого компакт-диска на жесткий диск "
+"перед установкой.\n"
+"Таким образом установка продолжится с жесткого диска и пакеты останутся "
+"доступными после полной установки системы."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Копировать cd-диски полностью"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Произошла ошибка"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Пожалуйста, выберите раскладку вашей клавиатуры."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Здесь представлен полный список имеющихся раскладок клавиатур"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Установка/Обновление"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Это установка или обновление?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Обновление %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Ключ шифрования для %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Настраивается IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Недостаточно свободного места для 1МБ программы самозагрузки! Установка "
+"продолжится, но чтобы загрузить вашу систему, вам придется создать раздел "
+"начальной загрузки в DiskDrake"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Вам нужно будет создать PPC PReP Boot bootstrap! Установка продолжится, "
+"однако чтобы загрузить систему, вам прийдется создать раздел bootstrap в "
+"DiskDrake"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Смените компакт-диск!\n"
+"\n"
+"Пожалуйста, вставьте компакт-диск под названием \"%s\" в свой привод, а "
+"затем и нажмите ОК.\n"
+"Если у вас его нет, нажмите Отмена, чтобы отказаться от установки с этого "
+"компакт-диска."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Выполняется поиск доступных пакетов..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"В системе недостаточно свободного дискового пространства для установки или "
+"обновления (%dМБ > %dМБ)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Выберите загрузку или сохранение выбора пакетов.\n"
+"Формат такой же, как и у файлов, созданных auto_install."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Загрузить"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Сохранить"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Неправильный файл"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Выбранный размер превышает доступное место"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Тип установки"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Вы не выбрали ни одной группы пакетов.\n"
+"Пожалуйста, выберите желаемую минимальную установку:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Вместе с Х"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "С основной документацией (рекомендуется!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Действительно минимальная установка (в особенности нет urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Все"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Подготовка к установке"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Устанавливается пакет %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Произошла ошибка при получении пакетов:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Всё равно продолжить?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Повторить"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "Пропустить этот пакет"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "Пропустить все пакеты из источника \"%s\""
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "Вернуться к источнику и выбору пакетов"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "При установке пакета %s возникла ошибка."
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Настройка после установки"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "Проверьте наличие в устройстве %s источника 'Update Modules'"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Обновления"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Теперь у вас есть возможность скачать обновленные пакеты. Эти пакеты\n"
+"были обновлены после того, как был выпущен дистрибутив. Они могут\n"
+"содержать фиксы для безопасности или ошибок.\n"
+"\n"
+"Чтобы скачать эти пакеты, вам понадобится действующее подключение \n"
+"Интернету.\n"
+"\n"
+"Хотите установить эти обновления?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"Выполняется подключение к зеркалу для получения списка доступных пакетов..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Невозможно соединиться с зеркалом %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Оборудование"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Звуковая карта"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Есть ли у вас звуковая карта ISA?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Запустите \"alsaconf\" или \"sndconfig\" после установки, чтобы настроить "
+"вашу звуковую карту"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Звуковая карта не обнаружена. Попробуйте запустить \"harddrake\" после "
+"установки"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV карта"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Графический интерфейс"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Сеть и Интернет"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Прокси"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "настроен"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Уровень безопасности"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Файервол"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "активировано"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "отключено"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Boot"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s на %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Вы еще не настраивали Х. Вы уверены, что действительно хотите этого?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Подготавливается начальный загрузчик..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Похоже, что вы являетесь обладателем древней или неизвестной машины, "
+"начальный загрузчик yaboot не будет у вас работать. Установка продолжится, "
+"но вам понадобится использовать BootX или что-то другое для загрузки вашей "
+"машины. Аргумент ядра для root fs такой: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Вы хотите использовать aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Ошибка установки aboot, \n"
+"попытаться форсировать установку, даже если это разрушит первый раздел?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"На данном уровне безопасности доступ к файлам на разделе Windows разрешен "
+"только администратору. "
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Вставьте чистую дискету в дисковод %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Создается дискета автоматической установки..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Некоторые этапы не завершены.\n"
+"\n"
+"Вы действительно хотите сейчас выйти?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Поздравления"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Перезагрузка"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Создать дискету автоматической установки"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"При желании автоматическая установка может быть\n"
+"полностью автоматизирована, в этом случае она\n"
+"полностью скопирует жесткий диск!!\n"
+"(предназначается для установки на другой компьютер).\n"
+"\n"
+"Вы можете предпочесть повторить установку.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Повторить"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Автоматический"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Сохранить выбор пакетов"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Выбор языка"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Лицензия"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Мышь"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Определение жёсткого диска"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Тип установки"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Клавиатура"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Безопасность"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Разметка диска"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Форматирование"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Выбор пакетов"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Устанавливается"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Аутентификация"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Пользователи"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Сеть"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Начальный загрузчик"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Настройка Х"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Сводка"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Службы"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Обновления"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Выход"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d пакетов, %d МБ)"
+#~ msgstr[1] "(%d пакетов, %d МБ)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d пакетов"
+
+#~ msgid "Language"
+#~ msgstr "Выбор языка"
+
+#~ msgid "License"
+#~ msgstr "Лицензия"
+
+#~ msgid "Installation class"
+#~ msgstr "Тип установки"
+
+#~ msgid "Formatting"
+#~ msgstr "Форматирование"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Выбор пакетов"
+
+#~ msgid "Users"
+#~ msgstr "Пользователи"
+
+#~ msgid "Networking"
+#~ msgstr "Сеть"
+
+#~ msgid "Configure X"
+#~ msgstr "Настройка Х"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Невозможно получить доступ к модулям ядра, соответствующим вашему ядру\n"
+#~ "(отсутствует файл %s), обычно это означает, что ваша загрузочная дискета\n"
+#~ "не синхронизирована с установочным накопителем (пожалуйста, создайте "
+#~ "более\n"
+#~ "новую загрузочную дискету)"
diff --git a/perl-install/install/share/po/sc.po b/perl-install/install/share/po/sc.po
new file mode 100644
index 000000000..7c1ed3664
--- /dev/null
+++ b/perl-install/install/share/po/sc.po
@@ -0,0 +1,1534 @@
+# translation of DrakX-sc.po to Sardu
+# Copyright (C) 2005 Free Software Foundation, Inc.
+# Antoni Pistis <antonio.pistis@virgilio.it>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-sc\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2005-09-14 11:29+0100\n"
+"Last-Translator: Antoni Pistis <antonio.pistis@virgilio.it>\n"
+"Language-Team: Sardu\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Arretza (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Arretza (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Arretza (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL de su sprigu?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Cuntatu su jassu web de Mandriva Linux po tenni sa lista de is sprigus..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Cuntatu su jassu web de Mandriva Linux po tenni sa lista de is sprigus..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr ""
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Assètiu NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Directory"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Càstiu is pakitus jai aposentaus..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Srèxinu is pakitus ki dui funt po ajorronai..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Agatu is pakitus po ajorronai..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Apu arrenominau is discus ki sighint:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (innantis nominau %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Arretza"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Sçobera unu suportu, po praxeri"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Su file esistit jai. Nci scriu apitzus?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Permissu dennegau"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr ""
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "No fait a fai fotografias innantis de pratzidurai"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "As a podi biri is fotografias apustis de s'aposentada in %s"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Seu aposentendi"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Assètiu"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Depis formatai %s puru"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"A cancu parti hardware serbint driver ``proprietàrius''po traballai.\n"
+"Podis agatai cancu sceda apitzus a: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Alluu s'arretza"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Studu s'arretza"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr ""
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Còpia in cursu"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr ""
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr ""
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr ""
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr ""
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr ""
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, fuzzy, c-format
+msgid "Invictus Firewall"
+msgstr "Interactive firewall"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Workstation"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Adelantamentu"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Documentadura"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Server Web"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Traballu in Grupu"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Server Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Firewall/Router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Gateway po Internet"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Curreu/Noas"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Server de curreu Postfix, server de noas Inn"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Server de Directory"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Server FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "Server NFS, server Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Database"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Server po Database PostGreSQL e MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Curreu"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Server de curreu Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Server po Database PostGreSQL e MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Ambienti Gràfigu"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE Workstation"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME Workstation"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm Desktop"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Atras scrianias gràfigas"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, etc"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Server SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr ""
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Faddina. No sciu comenti ndi bessiri beni.\n"
+"Sighi a perìgulu tuu."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr ""
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Aposentadura de Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> intr''e elementus"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr ""
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Sçoberu pakitus unu a unu"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Mesura totali: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Pakitu malu"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versioni: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Mesura: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Importu: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "No podis scerai/disiscerai custu pakitu"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "ca amancat %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "ca no est satisfatu %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "provu a sçoberai %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "po podi apoderai %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"No podis sçoberai custu pakitu, ca no dui at spàtziu abasta po d'aposentai"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Megu a aposentai is pakitus ki sighint"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Megu a srexinai is pakitus ki sighint"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Custu est unu palitu necessàriu, no fait a du disiscerai"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "No fait a disiscerai custu pakitu. Est jai aposentau"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "No fait a disiscerai custu pakitu. Bolit ajorronau"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Amosta in automàtigu is pakitus sçoberaus"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Aposenta"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Càrriga/Sarva su sçoberu"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Ajorronu su sçoberu de is pakitus"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Aposentadura minimali"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Maniju de is programas"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Sçobera is pakitus ki bolis aposentai"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Seu aposentendi"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr ""
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Tempus ki abarrat "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Seu carculendi"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pakitus"
+msgstr[1] "%d pakitus"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Arresùmini"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Assètia"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "no assetiau"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Còpia totu is CD"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Faddina"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Sçobera su skema de su tecrau."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Innoi sa lista de totu is tecraus a disposta"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Aposenta/Ajorrona"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Est una aposentadura o una ajorronadura?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Ajorrona %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Crai de cuadura po %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Assètiu IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Càmbia su Cd-Rom!\n"
+"Intra su Cd-Rom etiketau \"%s\" in su ligidori e craca Ok candu as fatu.\n"
+"Ki no du tenis, craca Annudda po scampai s'aposentadura de custu Cd-Rom."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr ""
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Càrriga"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Sarva"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "File malu"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr ""
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Tipu de aposentadura"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Cun X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr ""
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Totu"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Apariçu s'aposentadura"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr ""
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Faddina in s'ordinadura de is pakitus:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Sigu comuncas?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Sarva su sçoberu de is pakitus"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Faddina in s'aposentadura de is pakitus:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Assètiu pusti-aposentadura"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Ajorronus"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Cuntatu su sprigu po tenni sa lista de is pakitus a disposta..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "No potzu cuntatai su sprigu %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Hardware"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Skeda de Sonu"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Tenis una skeda de sonu ISA?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Skeda TV"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Interfaci Gràfiga"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Arretza & Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxy"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "assetiau"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Arrasu de Siguresa"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Firewall"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "abivau"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "disabivau"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Alluidura"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s in %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "No as assetiau ancora X. Siguru ses ca bolis custu?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Apariçu su bootloader..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Bolis impreai aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Intra unu floppy sbuidu in su trastu %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr ""
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Cumprimentus"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Torra a allui"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Crea unu floppy de aposentadura automàtiga"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Faiddu torra"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatisau"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Sarva su sçoberu de is pakitus"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Lìngua"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Permissu"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Sòrixi"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Controllu de su discu tostau"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Tecrau"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Siguresa"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Pratzimentu"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Seu aposentendi"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Autentigadura"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Umperadoris"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Arretza"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Bootloader"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Assètia X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Arresùmini"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Serbìtzius"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Ajorronus"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Bessi"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d pakitus"
+#~ msgstr[1] "%d pakitus"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pakitus"
+
+#~ msgid "Language"
+#~ msgstr "Lìngua"
+
+#~ msgid "License"
+#~ msgstr "Permissu"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Sçobera tipu de aposentadura"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Seu carculendi"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Sçobera pakitus de aposentai"
+
+#~ msgid "Users"
+#~ msgstr "Umperadoris"
+
+#~ msgid "Networking"
+#~ msgstr "Arretza"
+
+#~ msgid "Configure X"
+#~ msgstr "Assètia X"
diff --git a/perl-install/install/share/po/sk.po b/perl-install/install/share/po/sk.po
new file mode 100644
index 000000000..e7d1278d6
--- /dev/null
+++ b/perl-install/install/share/po/sk.po
@@ -0,0 +1,1618 @@
+# Jan Matis <damned@hq.alert.sk>, 2000.
+# Pavol Cvengros <orpheus@hq.alert.sk>, 2000.
+# Michal Holes <Michal@Holes.sk>, 2004,2005.
+# Tibor Pittich <Tibor.Pittich@phuture.sk>, 2002,2003,2004,2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2005-09-21 14:03+0100\n"
+"Last-Translator: Tibor Pittich <Tibor.Pittich@mandriva.org>\n"
+"Language-Team: <i18n@mandrake.sk>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Máte ešte nejaké ďalšie doplňujúce médiá?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Sieť (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Sieť (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Sieť (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL zrkadliaceho servera"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Pripájam sa k web stránke Mandriva Linux pre stiahnutie zoznamu zrkadiel..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Pripájam sa k web stránke Mandriva Linux pre stiahnutie zoznamu zrkadiel..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Vyberte miror, z ktorého si chcete stiahnuť balíky"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Nastavenie NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Zadajte prosím meno hostiteľa a priečinok pre vaše NFS médium"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Meno hostiteľa pre NFS bod pripojenia ?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Priečinok"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Nie je možné nájsť súbor hdlist na tomto zrkadliacom servery"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Hľadám balíky, ktoré sú už nainštalované..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Odstránenie balíkov pred aktualizáciou..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Hľadám balíky pre aktualizáciu..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Zvolili ste nasledujúcu službu/služby: %s\n"
+"\n"
+"\n"
+"Tieto služby sa spúšťajú implicitne. Momentálne nemajú žiadne známe "
+"bezpečnostné\n"
+"problémy, ale v budúcnosti nejaké môžu byť nájdené. V tom prípade musíte "
+"zabezpečiť\n"
+"upgrade čo najskôr.\n"
+"\n"
+"\n"
+"Naozaj si želáte inštalovať tieto služby?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Nasledovné balíky budú musieť byť odinštalované aby bolo možné vykonať "
+"upgrade vášho systému: %s\n"
+"\n"
+"\n"
+"Chcete naozaj tieto balíky odinštalovať?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Nasledovné disky boli premenované:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (predtým ako %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Sieť"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Vyberte si zdroj"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Súbor už existuje. Prepísať?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Prístup zamietnutý"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Nesprávne NFS meno"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Zlý zdroj %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Nemôžem spraviť kópie obrazovky pred rozdelením disku"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Kópie obrazovky budú po inštalácii dostupné v %s"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Inštalujem"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Konfigurácia"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Taktiež musíte naformátovať %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Niektorý hardvér vo vašom počítači potrebuje ``proprietárne'' ovládače.\n"
+"Informácie môžete nájsť na: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Spúšťam prácu so sieťou"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Ukončuje sa prácu so sieťou"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Sťahovanie súboru %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Prebieha kopírovanie"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "musíte mať"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "dôležité"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "veľmi zaujímavé"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "zaujímavé"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "možno.."
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, fuzzy, c-format
+msgid "Invictus Firewall"
+msgstr "Interaktívny firewall"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, fuzzy, c-format
+msgid "New Theme"
+msgstr "Nová téma pre webmin"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Pracovná stanica"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Kancelárska stanica"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Kancelárske programy: editory (OpenOffice.org Writer, Kword), tabuľkové "
+"procesory (OpenOffice.org Calc, Kspread), pdf prehliadače, atď"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Kancelárske programy: editory (kword, abiword), tabuľkové procesory "
+"(kspread, gnumeric), pdf prehliadače, atď"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Hracia stanica"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Zábavne programy: stolové, stratégie, atď"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimediálna stanica"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Programy na prehrávanie/editovanie zvuku a videa"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internetová stanica"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Nástroje na čítanie a posielanie emailov a news správ (mutt, tin..) a "
+"prehliadanie www"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Sieťovy počítač (klient)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Klientovia pre rôzne protokoly vrátane ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Nástroje na jednoduchú konfiguráciu vášho počítača"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Konzolové nástroje"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editory, shelly, súborové nástroje, terminály"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Vývojárska"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C a C++ vývojove knižnice, programy a include súbory"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentácia"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Knihy a návody pre Linux a iný voľný softvér"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Aplikačná podpora od tretej strany"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Web server"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab server"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Firewall/Router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Brána k Internetu"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Mail/News"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix poštový systém, Inn news server"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Adresárový server"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP server"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Server doménových mien a sieťový informačný server (NIS)"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Súborový a tlačový server"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS server, Samba server"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Databázy"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Databázový server PostgreSQL a MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache a Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Mail"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix mail server"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL, alebo MySQL databázový server"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Sieťový server"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS server, SMB server, Proxy server, SSH server"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Grafické prostredie"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE pracovná stanica"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K Desktop Enviroment, grafické prostredie s množstvom pribalených programov"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME pracovná stanica"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "Grafické rozhranie s aplikáciami a desktopovými nástrojmi"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "Pracovná plocha IceWm"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Iné grafické prostredia"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, atď"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Utility"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH server"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Vzdialená konfigurácia servera pomocou Webmin"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Sieťové utility/Monitoring"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Monitorovacie nástroje, účtovanie procesov, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Sprievodcovia Mandriva"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Sprievodcovia pre konfiguráciu servera"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Vyskytla sa chyba a neviem ju úplne vyriešiť.\n"
+"Pokračujte na vlastnú zodpovednosť."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Niektoré dôležité balíky neboli správne nainštalované.\n"
+"Je možné, že sú poškodené váš CD disk alebo mechanika.\n"
+"Skontrolujte to napríklad použitím \"rpm -qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Spúšťam krok %s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Inštalácia Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> medzi položkami"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Váš systém má nedostatok prostriedkov. Možno budete mať problémy s\n"
+"inštaláciou Mandriva Linux. Ak sa tak stane, skúste textovú inštaláciu. Pre "
+"jej\n"
+"spustenie stlačte `F1' po naštartovaní z CDROMky a zadajte `text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Výber skupín balíkov"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Osobitná voľba balíkov"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Celková veľkosť: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Chybný balík"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Verzia:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Veľkosť:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Dôležitosť:"
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Môžete označiť/odznačiť tento balík"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "kôli chýbajúcemu %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "z dôvodu neuspokojenia %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "pokus o povýšenie %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "v prípade zachovania %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Nemôžete označiť tento balík pretože na jeho inštaláciu nie je dosť miesta."
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Budú nainštalované nasledovné balíky"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Nasledujúce balíky budú odstránené"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Toto je jeden zo základných balíkov, nemôže byť odznačený"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Nemôžete odznačiť tento balík. Je už nainštalovaný"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Nemôžete odznačiť tento balík. Musíte pridať novú verziu"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Zobraziť automaticky zvolené balíky"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Inštalácia"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Načítať/Uložiť výber "
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Aktualizácia výberu balíkov"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimálna inštalácia"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Správa softvéru"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Zvoľte balíky, ktoré si želáte nainštalovať"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Inštalujem"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Bez detailov"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Zvyšný čas "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Odhadujem"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d balíky"
+msgstr[1] "%d balíky"
+msgstr[2] "%d balíky"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Zhrnutie"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Konfigurovať"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "nenakonfigurované"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Nasledovné inštalačné médiá boli nájdené.\n"
+"Ak nechcete niektoré z nich použiť, odznačte ich teraz."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Máte možnosť skopírovať obsah CD na pevný disk pred inštaláciou.\n"
+"Potom bude inštalácia pokračovať z pevného disku a balíky budú dostupné aj "
+"po kompletnej inštalácii."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Kopírovať kompletné CD"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Vyskytla sa chyba"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Prosím, zvoľte si typ vašej klávesnice."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Tu je úplný zoznam dostupných klávesníc"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Inštalácia/Aktualizácia"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Želáte si vykonať inštaláciu alebo aktualizáciu?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Aktualizácia %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Kryptovací kľúč pre %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Konfigurácia IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Nie je dostatok miesta pre 1MB veľký bootstrap! Inštalácia môže pokračovať, "
+"ale pre spustenie systému musíte vytvoriť oddiel pomocou DiskDrake"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Je potrebné vytvoriť PPC PReP spúšťací bootstrap! Inštalácia bude "
+"pokračovať, ale pre spustenie systému musíte vytvoriť bootstrap oddiel "
+"pomocou DiskDrake"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Vymente vaše CD-ROM médium!\n"
+"\n"
+"Prosím, vložte CD-ROM nazvané \"%s\" do vašej mechaniky a kliknite na OK.\n"
+"Ak takýto CD disk nemáte, zvoľte Zrušiť pre zrušenie inštalácie z tohoto CD-"
+"ROM disku."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Hľadajú sa dostupné balíky..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Vyberte si načítanie alebo uloženie výberu balíkov na disketu.\n"
+"Formát je rovnaký ako pre diskety generované automatickou\n"
+"inštaláciou."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Zaťaženie"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Uložiť"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Zlý súbor"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Zvolená veľkosť je väčšia ako dostupné miesto"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Typ inštalácie"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Nebola vybraná žiadna skupina balíkov\n"
+"Prosím, zvoľte si typ minimálnej inštalácie, ktorú si želáte vykonať:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "S X Window System"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "So základnou dokumentáciou (doporučené!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Naozaj minimálna inštalácia (bez urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Všetko"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Pripravuje sa inštalácia"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Inštaluje sa balík %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Chyba pri zoraďovaní zoznamu balíkov:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Napriek tomu pokračovať?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Uložiť výber balíkov"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Počas inštalácie balíkov sa vyskytla chyba:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Poinštalačná konfigurácia"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+"Presvečte sa prosím, že médium s aktualizovanými modulmi je v mechanike %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Aktualizácie"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Teraz máte možnosť stiahnuť si aktualizované verzie balíkov. Tieto balíky\n"
+"boli vydané až po uvoľnení distribúcie. Môžu obsahovať\n"
+"bezpečnostné alebo funkčné opravy.\n"
+"\n"
+"Pre získanie týchto balíkov je potrebné, aby ste mali fungujúce Internetové\n"
+"pripojenie.\n"
+"\n"
+"Želáte si nainštalovať aktualizácie balíčkov?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"Pripájanie k zrkadliacemu serveru a získavanie zoznamu možných balíkov..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Nebolo možné spojiť sa so zrkadliacim serverom %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Hardvér"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Zvuková karta"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Máte nejakú ISA zvukovú kartu?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Po inštalácii spustite \"alsaconf\" alebo \"sndconfig\" ak chcete nastaviť "
+"zvukovú kartu"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Zvuková karta nebola nájdená. Skúste \"harddrake\" po inštalácii"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV karta"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Grafické rozhranie"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Sieť a Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxy"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "nakonfigurované"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Úroveň bezpečnosti"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Firewall"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "aktivované"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "zakázané"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Boot"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s na %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Nemáte nakonfigurovaný X Window systém. Ste si istí, že to tak chcete?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Pripravuje sa zavádzač..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Zdá sa, že máte OldWorld alebo iný neznámy počítač a yaboot zavádzač vám "
+"nebude fungovať. Inštalácia bude pokračovať, ale budete potrebovať použiť "
+"BootX pre štartovanie vášho počítača. Argument pre jadro s umiestnením "
+"koreňového súborového systému je: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Chcete použiť aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Chyba inštalácie aboot.\n"
+"Skúsiť silovú inštaláciu s možnosťou zničenia prvého oddielu?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Vrámci tejto bezpečnostnej úrovne je prístup k súborom na Windows oblasti "
+"umožnený iba pre administrátora."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Vložte čistú disketu do mechaniky %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Pripravuje sa autoinštalačná disketa..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Niektoré kroky nie sú dokončené.\n"
+"\n"
+"Naozaj chcete teraz skončiť?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Gratulujeme"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Reštart"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Príprava auto inštalačnej diskety"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Automatická inštalácia môže byť plne automatizovaná\n"
+"v tom prípade však inštalácia zaberie celý pevný disk.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Zopakovať"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatická"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Uložiť výber balíkov"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Jazyk"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licencia"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Myš"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Detekcia pevného disku"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Klávesnica"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Bezpečnosť"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Rozdelenie diskov"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Inštalujem"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Autentifikácia"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Používatelia"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Sieť"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Zavádzač"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Konfigurácia X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Zhrnutie"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Služby"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Aktualizácie"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Koniec"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d balíky"
+#~ msgstr[1] "%d balíky"
+#~ msgstr[2] "%d balíky"
+
+#~ msgid "%d packages"
+#~ msgstr "%d balíky"
+
+#~ msgid "Language"
+#~ msgstr "Jazyk"
+
+#~ msgid "License"
+#~ msgstr "Licencia"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Voľba triedy inštalácie"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Odhadujem"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Výber balíkov"
+
+#~ msgid "Users"
+#~ msgstr "Používatelia"
+
+#~ msgid "Networking"
+#~ msgstr "Sieť"
+
+#~ msgid "Configure X"
+#~ msgstr "Konfigurácia X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Nie je možné načítať moduly pre vaše jadro (súbor %s chýba), toto sa "
+#~ "stáva hlavne vtedy, ak vaša disketa nie je vytvorená pre inštalačné "
+#~ "médium, ktoré používate (vytvorte si prosím novú štartovaciu disketu)"
diff --git a/perl-install/install/share/po/sl.po b/perl-install/install/share/po/sl.po
new file mode 100644
index 000000000..446bdf98d
--- /dev/null
+++ b/perl-install/install/share/po/sl.po
@@ -0,0 +1,1635 @@
+# translation of DrakX-sl.po to slovenščččina
+# Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
+#
+# Matjaž Kaše <matjaz.kase@g-kabel.si>, 2004.
+# Aljoša Ločičnik <aljosa.locicnik@mandrakeprinas.org>, 2005.
+# Gregor Pirnaver <gregor.pirnaver@sdm-si.org>, 2002,2004,2005.
+# Jure Repinc <jlp@holodeck1.com>, 2005.
+# Matjaž Kaše <matjaz.kase@telemach.net>, 2006.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-sl\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2006-09-16 09:42+0200\n"
+"Last-Translator: Matjaž Kaše <matjaz.kase@telemach.net>\n"
+"Language-Team: slovenščččina <sl@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
+"n%100==4 ? 2 : 3);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Imate še kakšen dodatni vir za nameščanje?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Zaznan je bil vir ki bo uporabljen med namestitvijo: %s.\n"
+"\n"
+"\n"
+"Imate še kakšen dodaten vir ki ga je potrebno nastaviti?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Omrežje (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Omrežje (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Omrežje (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL zrcalnega strežnika?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "URL se mora začeti s ftp:// ali http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Vzpostavljanje povezave s spletno stranjo Mandriva Linux in pridobivanje "
+"seznama dosegljivih strežnikov...."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Vzpostavljanje povezave s spletno stranjo Mandriva Linux in pridobivanje "
+"seznama dosegljivih strežnikov je spodletelo."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Izberite zrcalni strežnik, s katerega želite pridobiti popravke"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Namestitev prek NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Prosim, vnesite ime gostitelja in ime mape vašega vira NFS"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Ime gostitelja vira NFS"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Mapa"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Na tem zrcalnem strežniku ne najdem seznama paketov. Prepričajte se, da je "
+"naslov pravi."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Pregledovanje že nameščenih paketov...."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Odstranjevanje paketov pred posodobitvijo ..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Iskanje paketov za posodobitev..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Izbrali ste naslednje strežnike:%s\n"
+"\n"
+"\n"
+"Navedeni strežniki se zaženejo samodejno. O tem, ali so ti strežniki varni,\n"
+" ni podatkov, zato vas želimo opozoriti, da jih čimprej posodobite,\n"
+"če izveste za njihove novejše različice.\n"
+"\n"
+"\n"
+"Ste prepričani, da želite namestiti navedene strežnike?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Da bi bilo mogoče posodobiti sistem, je treba odstraniti naslednje pakete: %"
+"s\n"
+"\n"
+"\n"
+"Naj odstranim navedene pakete?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Preimenovani so bili diski:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (prejšnje ime %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Omrežje"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Prosim, izberite vir"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Datoteka že obstaja. Jo prepišem?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Nimate dovoljenja"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Napačno ime NFS"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Neustrezen vir %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Posnetkov zaslona ni mogoče zajeti, dokler disk ni razdeljen"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Posnetki zaslona bodo po namestitvi v %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Nameščanje "
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Nastavitev"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Formatirati morate tudi %s."
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Nekateri deli vaše strojne opreme potrebujejo za pravilno delovanje "
+"»lastniške« gonilnike.\n"
+"Nekaj informacij o tem dobite na: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Vklapljanje omrežja"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Izklapljanje omrežja"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Prenos datoteke %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Kopiranje nekaterih datotek na disk"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Kopiranje poteka"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "nepogrešljivo"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "pomembno"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "zelo uporabno"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "uporabno"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "morda"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "Izdaje 2007"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Požarni zid Invictus"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Živi način za Discovery"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Kako se registrirati"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Spletne storitve Mandriva"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Nova tema"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Delovna postaja"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Pisarniška delovna postaja"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Pisarniški programi: urejanje besedila (OpenOffice.org Writer, Kword), "
+"preglednice (OpenOffice.org Calc, Kspread), pregledovalniki PDF, itd"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Pisarniški programi: urejanje besedila (kword, abiword), preglednice "
+"(kspread, gnumeric), pregledovalniki PDF, itd"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Igralna postaja"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Programi za zabavo: arkade, deske, strategije, itd"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Večpredstavnostna postaja"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Programi za predvajanje in urejanje zvoka in videa"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internetna postaja"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Zbirka orodij za branje in pošiljanje pošte in pošiljanje v novičarske "
+"skupine (mitt, tin ...) ter brskanje po spletu"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Omrežni računalnik (odjemalec)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Odjemalci za različne protokole, vključujoč SSH"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Orodja za lažjo nastavitev računalnika"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Konzolna orodja"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Urejevalniki, lupine, datotečna orodja, terminali"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Razvoj"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Razvojne knjižnice, programi in zaglavne datoteke za C in C++"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentacija"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Knjige in priročniki o Linuxu in prostem programju"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Standardna osnova Linuxa (LSB). Podpora programom tretjih oseb"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Internetni strežnik"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Program za skupinsko delo"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Strežnik Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Požarni zid/Usmerjevalnik"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internetni prehod (gateway)"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Pošta/Novičarske skupine"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Poštni strežnik postfix in novičarski strežnik Inn"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Imeniški strežnik"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Strežnik FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Strežnik domen in omrežnih podatkov (NIS)"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Strežnik za datoteke in tiskalnike v skupni rabi"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "Strežnik NFS, strežnik Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Podatkovna baza"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Strežnik podatkovnih baz PostgreSQL in MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Splet/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Pošta"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Poštni strežnik Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Strežnik podatkovnih baz PostgreSQL in MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Strežnik omrežnega računalnika"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Strežnik NFS, strežnik SMB, posredniški strežnik, strežnik SSH"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Grafično okolje"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Delovna postaja KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "Namizno okolje KDE, osnovno okolje z zbirko pripadajočih orodij"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Delovna postaja GNOME"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Grafično okolje z uporabniku prijaznim naborom programov in namiznimi orodji"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "Namizje IceWM"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Druga grafična namizja"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, FVWM ..."
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Pripomočki"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Strežnik SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Strežnik Webmin za oddaljen dostop do nastavitev"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Omrežni pripomočki / Nadzorniki"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Nadzorna orodja, knjigovodstvo procesov, tcpdump, nmap ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandrivini čarovniki"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Čarovniki za nastavitev strežnikov"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Prišlo je do napake, ki je sistem na ustrezen način ne zna odpraviti.\n"
+"Nadaljujte na lastno odgovornost."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Nekateri pomembni paketi niso bili ustrezno nameščeni.\n"
+"Verjetno imate pokvarjeno zgoščenko ali CD-ROM.pogon. \n"
+"Na računalniku, na katerem je nameščen Linux, preverite zgoščenko\n"
+"z ukazom »rpm -qpl media/main/*.rpm«.\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Pričetek s korakom '%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Namestitev Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> med elementi"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Vaš sistem ni dovolj zmogljiv. Lahko, da boste imeli pri namestitvi\n"
+"Mandriva Linuxa težave. V tem primeru lahko poskusite z namestitvijo v "
+"besedilnem načinu. \n"
+"Po zagonu z zgoščenke pritisnite »F1« in vpišite »text«."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Izbira skupine paketov"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Izbira posamičnih paketov"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Celotna velikost: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Paket je pokvarjen"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Različica:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Velikost: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Pomembnost:"
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Tega paketa ne morete izbrati ali izločiti."
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "ker manjka %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "zaradi nezadovoljstva %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "poizkušam uveljaviti %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "da bi obdržal %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Tega paketa ne morete izbrati, ker ni dovolj prostora, da bi ga lahko "
+"namestili."
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Nameščeni bodo naslednji paketi:"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Odstranjeni bodo naslednji paketi:"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Tega paketa ni mogoče izločiti."
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Tega paketa ne morete izločiti, ker je že nameščen."
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Tega paketa ne morete izločiti, ker ga je treba posodobiti."
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Pokaži samodejno izbrane pakete"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Namesti"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Naloži/shrani izbiro"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Posodabljanje izbora paketov"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimalna namestitev"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Upravljanje programja"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Izberite pakete, ki jih želite namestiti"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Nameščanje"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Brez podrobnosti"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Preostali čas "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Ocena"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d paketov"
+msgstr[1] "%d paketov"
+msgstr[2] "%d paketov"
+msgstr[3] "%d paketov"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Povzetek"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Nastavite"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "ni nastavljeno"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Na voljo so naslednji viri za namestitev:\n"
+"Če želite katerega izmed njih izločiti, to lahko storite sedaj."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Pred namestitvijo lahko vsebino zgoščenk prekopirate na trdi disk.\n"
+"V tem primeru bo namestitev potekala s trdega diska, paketi pa bodo ostali "
+"na voljo tudi po dokončani namestitvi."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Prekopiraj celotno vsebino zgoščenk"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Prišlo je do napake"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Izberite razpored tipkovnice"
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Izbirate lahko med naslednjimi tipkovnicami:"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Namestitev/Posodobitev"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Želite izvesti novo namestitev ali posodobiti obstoječ sistem?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Posodobitev %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Šifrirni ključ za %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Nastavljanje IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Ni prostora za zapis začetnega nalaganja (1MB). Namestitev se bo "
+"nadaljevala, vendar morate, da bi sistem po namestitvi lahko zagnali, s "
+"pomočjo orodja DiskDrake ustvariti razdelek za začetno nalaganje."
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Ustvariti morate PPC PReP Boot bootstrap! Namestitev se bo nadaljevala, "
+"vendar boste morali za zagon sistema s pomočjo DiskDrake ustvariti bootstrap "
+"razdelek."
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Zamenjajte zgoščenko!\n"
+"\n"
+"Prosim, vstavite zgoščenko z oznako »%s« v pogon in kliknite V redu\n"
+"Če zahtevane zgoščenke nimate, kliknite Prekliči, da jo bo namestitev obšla."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Iskanje dosegljivih paketov...."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Prosim, izberite nalaganje ali shranjevanje izbora paketov.\n"
+"Format je enak datotekam za samodejno namestitev."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Naloži"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Shrani"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Neustrezna datoteka"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Izbrana velikost presega prostor, ki je na razpolago."
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Način namestitve"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Izbrali niste nobene skupine paketov.\n"
+"Izbrati morate vsaj minimalno namestitev:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Z X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Z osnovno dokumentacijo (Priporočeno!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Zares najmanjša možna namestitev (še posebej brez urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Vse"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Pripravljanje namestitve"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr ""
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Med razvrščanjem paketov je prišlo do napake:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Želite kljub temu nadaljevati?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Poskusi znova"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Shrani izbiro paketov"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Med nameščanjem paketov je prišlo do napake:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Nastavitve po namestitvi"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "Prosim, prepričajte se, da je medij »Posodobitev modulov« v pogonu %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Posodobitve"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Imate možnost, da s strežnika prenesete posodobljene pakete. Ti paketi\n"
+"so bili posodobljeni po izdaji distribucije. Vsebujejo varnostne popravke in "
+"popravke hroščev.\n"
+"\n"
+"Za namestitev teh paketov morate imeti vzpostavljeno internetno povezavo.\n"
+"\n"
+"Želite namestiti posodobitve? "
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"Vzpostavljanje povezave z zrcalnim strežnikom in pridobivanje seznama "
+"dosegljivih paketov...."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Povezave z zrcalnim strežnikom %s ni mogoče vzpostaviti."
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Strojna oprema"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Zvočna kartica"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Imate zvočno kartico na ISA vodilu?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Po namestitvi zaženite »alsaconf« ali »sndconfig« za nastavitev zvočne "
+"kartice."
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Ne zaznam zvočne kartice. Po namestitvi jo poskusite nastaviti s pomočjo "
+"»harddrake«."
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV kartica"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Grafična kartica"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Omrežje in internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Posredniški strežniki"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "Nastavljeno"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Raven varnosti"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Požarni zid"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "Aktivirano"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "Onemogočeno"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Zagon"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s na %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Niste nastavili strežnika X. Ali to zares želite?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Pripravljanje zagonskega nalagalnika..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Na vašem računalniku zagonski nalagalnik yaboot ne bo deloval.\n"
+"Namestitev se bo nadaljevala, vendar boste morali\n"
+"računalnik zagnati s pomočjo BootX ali na drug ustrezen način. Nastavitev "
+"jedra za root datotečni sistem je:%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Želite uporabiti aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Napaka pri namestitvi aboot\n"
+"Želite nadaljevati z namestitvijo, čeprav bo s tem prvi razdelek uničen?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Na tej varnostni stopnji je dostop do datotek na prvem razdelku za Windows "
+"dovoljen samo korenskemu uporabniku."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Vstavite prazno disketo v pogon %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Ustvarjanje diskete za samodejno namestitev..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Nekateri koraki še niso dokončani.\n"
+"\n"
+"Res želite končati?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Čestitke"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Ponovni zagon"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Ustvari disketo za samodejno namestitev"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Lahko izberete povsem samodejno namestitev,\n"
+"vključno s spremembami na trdem disku!!\n"
+"(Takšen način je uporaben, če želite namestitev ponoviti na drugem "
+"računalniku.)\n"
+"\n"
+"Morda vam bolj ustreza ponovna namestitev.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Ponovi"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Samodejno"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Shrani izbiro paketov"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Jezik"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licenca"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Miška"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Prepoznavanje trdega diska"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Razred namestitve "
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Tipkovnica"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Varnost"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Razdelitev diska"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Formatiranje"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Izbiranje paketov "
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Nameščanje"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Overjanje"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Uporabniki"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Povezovanje"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Zagonski nalagalnik"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Nastavitev X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Povzetek"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Storitve"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Posodobitve"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Izhod"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d paketov, %d MB)"
+#~ msgstr[1] "(%d paketov, %d MB)"
+#~ msgstr[2] "(%d paketov, %d MB)"
+#~ msgstr[3] "(%d paketov, %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d paketov"
+
+#~ msgid "Language"
+#~ msgstr "Jezik"
+
+#~ msgid "License"
+#~ msgstr "Licenca"
+
+#~ msgid "Installation class"
+#~ msgstr "Razred namestitve "
+
+#~ msgid "Formatting"
+#~ msgstr "Formatiranje"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Izbiranje paketov "
+
+#~ msgid "Users"
+#~ msgstr "Uporabniki"
+
+#~ msgid "Networking"
+#~ msgstr "Povezovanje"
+
+#~ msgid "Configure X"
+#~ msgstr "Nastavitev X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Ne najdem modulov jedra, ki bi se ujemali z vašim jedrom. (Manjka "
+#~ "datoteka %s) To običajno pomeni, da vaša zagonska disketa ni usklajena z "
+#~ "virom namestitve. Prosimo, ustvarite novo zagonsko disketo."
diff --git a/perl-install/install/share/po/sq.po b/perl-install/install/share/po/sq.po
new file mode 100644
index 000000000..5d75954c8
--- /dev/null
+++ b/perl-install/install/share/po/sq.po
@@ -0,0 +1,1616 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# Naim Daka <naim70@freesurf.ch>, 2002, 2003.
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX for MDK 9.2\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2004-09-15 13:33+0200\n"
+"Last-Translator: Naim Daka <naim70@freesurf.ch>\n"
+"Language-Team: Albanian <LL@li.org>\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:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "A posedoni ndonjë tjetër?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "Rrjeti %s"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "Rrjeti %s"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Lidhje në sitin Mandriva Linux për të pranuar listën e lirë të pasqyreve..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Lidhje në sitin Mandriva Linux për të pranuar listën e lirë të pasqyreve..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Zgjedheni një pasqyre nga e cila do ti transferoni pakot"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Repertori"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Nuk mund ta gjejë %s në %s"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Kërkimi i pakove veqse të instaluara..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Gjetja pakove azhurnuese..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Ju keni zgjedhur server(et) e radhitur: %s\n"
+"\n"
+"\n"
+"Këta server janë të aktivizuar me marrëveshje. Ata nuk kanë ndonji dalje\n"
+"të siguruar, mirëpo probleme të reja mund të paraqiten. Në ato momente\n"
+"ju duhet të jeni i sigurt që ti azhurnoni serverat tuja sa më shpejt.\n"
+"\n"
+"\n"
+"Me të vërtetë dëshironi t'instaloni këta server?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Pakot a radhitura do të zhduken pët të azhurnuar sistemin tuaj: %s\n"
+"\n"
+"\n"
+"Me të vërtetë dëshironi ti zhdukni?\n"
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Pakot e radhitura duhet të instalohen:\n"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Rrjeti"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "Ju lutemi zgjedheni"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Skedarje është veqse prezente. Përdoreni atë?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Autorizim i pa pranuar"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "shtuarja e burimit %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "E pa mundur grabitja e ekranit (screenshots) para ndarjeve"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr ""
+"Grabitjet e ekranit (screenshots) janë të mundura mbas instalimit në %s"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Instalimi"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Konfigurimi"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Ju duhet njashtu ta formatoni %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Disa periferik prezent në sistemin tuaj u nevojiten pilotë ``pronari'' për\n"
+"të funksionuar si duhet. Ju mund të gjeni më shumë informacione përkatëse "
+"këtu: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Nisja e rrjetit (network)"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Ndalja e rrjetit (network)"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "Dërgimi i skedareve..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "Zbulimi në vazhdim e sipër"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "duhet pa tjetër"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "me rëndësi"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "shumë mirë"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "i mirë"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "ndoshta"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr ""
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Stacion punues"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Stacioni Punues në Tryezë"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Programe për tryezë: trajtues të teksteve (OpenOffice.org Writer, Kword), "
+"tablues (OpenOffice.org Calc, Kspread), çfaqës pdf, etj."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Programe për tryezë: trajtues të teksteve (kword, abiword), tablues "
+"(kspread, gnumeric), çfaqës pdf, etj."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Stacion Lojërash"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Programe ahengi: lojë arkade, lojë me stenda, strategji, etj"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Stacion Multimedia"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Programe për lojëra/botime të zërit dhe videos"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Stacion Interneti"
+
+#: share/meta-task/compssUsers.pl:44
+#, fuzzy, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Përgjithësia a veglave të leximit, dërgimit të letrave elektronike të "
+"lajmeve (pine, mutt, tin...) dhe për të lundruar në internet."
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Kompjuter Rrjeti (klient)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Klient për protokole të ndryshme me përfshirje në ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Vegla për të konfiguruar kompjuterin tuaj"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Vegla në konsolë"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Botues, interpretues, vegla skedaresh, terminale"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Zhvillimi"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Bibloteka ndërtuese e C dhe C++, programe dhe skedare me përfshirje"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentacioni"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Libra dhe Howto's për Linux dhe Softver gratis"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Bazë Standarde e Linux. Përkrahë aplikacione të pjesës së tretë"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Server Web"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, fuzzy, c-format
+msgid "Groupware"
+msgstr "Grupi"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Server Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Murë-i-Zjarrtë/Router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Portë kaluese Interneti"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/Skedare/_E Re"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Server i letrave (mail) Postfix"
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "Riparoje Nga CD"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Server FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Server i Emrit (DNS) dhe Server i Informacionit (NIS)"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Server Stampues"
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "Server Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Bazë e të dhënave"
+
+#: share/meta-task/compssUsers.pl:117
+#, fuzzy, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Server PostgreSQL apo MySQL i bazës së të dhënave"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Mail"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Server i letrave (mail) Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Server PostgreSQL apo MySQL i bazës së të dhënave"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Server Kompjuter Rrjeti"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Server NFS, server SMB, server Proxy, server ssh"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Mjedis Grafikë"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Stacioni punues KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"Mjedisi i Tryezës K, dhe grafiku basic, i mjedisit me koleksionimin e veglave"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Stacioni punues Gnome"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Një mjedis grafikë me përdorues-miqësie, një përgjithësi e palikacioneve dhe "
+"vegla në tryezë"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Tryeza"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Mjedise të Tjera Grafike në Tryezë"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etj."
+
+#: share/meta-task/compssUsers.pl:183
+#, fuzzy, c-format
+msgid "Utilities"
+msgstr "Filipinet"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Server SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "Webcam"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Konfigurim i Serverit me Terminale Mandriva"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Vështrimi i Rrjetit (Network)"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "Qendra Kontrolluese Mandriva Linux"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "Dështim gjatë konfigurim të stampuesit %s\"!"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Një gabim është paraqitur, dhe me sa duket është vështir të zgjidhet.\n"
+"Ju mund të vazhdoni, mirëpo ju jeni përgjegjës për ndonji gabim eventual."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Disa pako me rëndësi nuk janë instalur në mënyrë korrekte.\n"
+"Është e mundur që cdrom-i apo lexuesi cdrom të jetë në defekt.\n"
+"Verifikoni cdrom-in në një kompjuter të instalur, duke shtypur urdhërin "
+"\"rpm -qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Nisja e etapës `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Instalimi i Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab> para /<Alt-Tab> mbrapa"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Kompjuteri i juaj posedon sasi të vogël të memorisë. Ju mund të ndesheni me\n"
+"disa probleme gjatë instalimit të Mandriva Linux. Nëse kjo ndodhë, ju\n"
+"mund të vazhdoni në një instalim në modë teksti. Për këtë shtypni mbi\n"
+"`F1' kut të niseni me një nisje të udhëzuar në CDROM, dhe fytni urdhërin "
+"`text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Zgjedhni Grupet e Pakove"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Zgjedhni pakot individualisht"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Madhësia totale: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Pako jo e mirë"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versioni: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Madhësia: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Me rëndësi: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Ju nuk mund ti zgjedhni/çzgjedhni këtë pako"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "ka arritur nga mungesa %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "ka arritur gjatë mosmarrëveshjes %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "tentim në gradimin e %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "në urdhër për ta mbajturë %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Nu nuk mund ta zgjidhni këtë pako, sepse nuk ka vend të mjaftueshëm për ta "
+"instaluar"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Pakot e radhitura do të instalohen"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Pakot e radhitura do të zhduken"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Kjo është një pako e nevojshme, dhe nuk mund çzgjedhet"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Ju nuk mund ta çzgjedhni këtë pako. Është e instaluar më parë"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Ju nuk mund ti çzgjedhni këtë pako. Duhet të azhurnohet"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Paraqiti automatikisht pakot e zgjedhura"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Instalim"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "Zgjedhja e pakos"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Azhurnimi i pakove të zgjedhura"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Instalim minimal"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Menagjuesi Softver"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Zgjedhi pakot të cilat dëshironi t'instaloni"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Instalimi"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Asnjë detaj"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Koha e mbetur"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Vlerësimi në sipër"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pakot"
+msgstr[1] "%d pakot"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Përmbledhje"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Konfiguroje"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "i pa konfiguruar"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Një gabim është paraqitur"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Ju lutemi zgjedheni tipin tastierës suaj"
+
+#: steps_interactive.pm:99
+#, fuzzy, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Ja ku është lista komplete e shteteve në disponibilitet"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Instalo/Azhurno"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Është ky një instalim apo një azhurnim?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Azhurno %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Çelës i kriptuar për %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Konfigurimi i IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Nuk ka hepësirë të lirë, për ndarjen me nisje të udhëzuar (bootstrap) me 1MB!"
+"Instalimi do të vazhdoj, ju duhet të krijoni një ndarje me nisje të udhëzuar"
+"(bootstrap) në DiskDrake"
+
+#: steps_interactive.pm:226
+#, fuzzy, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Nuk ka hepësirë të lirë, për ndarjen me nisje të udhëzuar (bootstrap) me 1MB!"
+"Instalimi do të vazhdoj, ju duhet të krijoni një ndarje me nisje të udhëzuar"
+"(bootstrap) në DiskDrake"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Ndërrojeni Cd-Rom tuaj!\n"
+"\n"
+"Ju lutemi futni Cd-Rom e emruar \"%s\" në lexuesin tuaj dhe shtypni mbi Ok.\n"
+"Nëse ju nuk e posedoni, shtypni mbi kopsën Anulo që më në fund të mos "
+"instaloni asgjë nga ky Cd-Rom."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Hetim mbi pakot e lira..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Ju lutemi zgjedhni ngarkimin apo shpëtimin e pakos së zgjedhur në floppy "
+"disketë.\n"
+"Forma është e njëjtë sikur në disketë me tërheqje të instalimit automatikë."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Ngarko"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Shpëtoje"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "Ngarko file"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Madhësia e zgjedhur është shumë më e gjatë se sa hapësira e lirë"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Tipi i instalimit"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Ju nuk e keni zgjedhur asnjë grup të pakove.\n"
+"Ju lutemi zgjedheni një instalim minimal të dëshiruar:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Me X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Me dokumentacion bazues (rekomanduar!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Instalim tejet minimal (në veçanti pa urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Gjitha"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Pregatitje për instalim"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Instalimi i pakove %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Një gabim është paraqitur gjatë radhitjes së pakove:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Vazhdo pa marrë parasysh?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Regjistroi pakot e zgjedhura"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Një gabim është paraqitur gjatë instalimit të pakove:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Konfigurimi i postit-instalues"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr ""
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Tani keni mundësin që ti shkarkoni azhurnimet e krijuara nga\n"
+"dalja e tyre në përdorim. Është e mundur që të ketë korigjime\n"
+"të sigurisë dhe rregullime të problemeve bug.\n"
+"\n"
+"Për ti transferuar pakot e shënuara, ju duhet të posedoni një lidhje \n"
+"me rrjetin internet.\n"
+"\n"
+"A dëshironi t'instaloni këto azhurnime ?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Transferimi i listës së pasqyreve me pako të lira..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Nuk mundur të kontaktohet pasqyrja %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Hardver"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Kartelë zëri"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "A posedoni një kartelë zëri ISA?"
+
+#: steps_interactive.pm:811
+#, fuzzy, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Nise \"sndconfig\" mbasë instalimit për ta konfiguruar kartëlën e zërit"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Asnjë kartelë e zbuluar. Provo \"harddrake\" mbasë instalimit"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Kartelë TV"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Interfaci grafik"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Rrjeti & Internet"
+
+#: steps_interactive.pm:851
+#, fuzzy, c-format
+msgid "Proxies"
+msgstr "Profili "
+
+#: steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "configured"
+msgstr "rikonfiguroje"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Nivel i Sigurisë"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Mur i Zjarrt"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "aktivizuar"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "i nxënë"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Boot"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s mbi %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+"Ju nuk e keni konfiguruar serverin X. A jeni i sigurt, se e dëshironi këtë?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Pregatitja e bootloader..."
+
+#: steps_interactive.pm:977
+#, fuzzy, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Me sa duket makina juaj posedon një arqitekturë të vjetër apo të pa\n"
+" njoftur, programi për nisje të udhëzuar yabbot nuk do të funksionoj.\n"
+"Dhe instalimi do të vazhdoj më tutje, mirëpo ju\n"
+" duhet të posedoni BootX që ta nisni sistemin tuaj"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "A dëshironi ta përdorni aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Gabim gjatë instalimit aboot, \n"
+"mundohu me instalim të forcuar, edhe pse ai do ta shkatërroj ndarjen e parë?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Futni një disketë të zbrazët në lexuesin e disketave %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Krijimi i një diskete auto instaluese..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Disa etapa nuk kanë përfunduar.\n"
+"\n"
+"A dëshironi me të vërtetë ti braktisni tani?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Urime"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Rinise (riboot)"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Krijo një disketë auto instaluese"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Auto instalimi mund të bëhet me instalim të automatizuar, nëse\n"
+"dëshironi, ai do të merë kontrolin mbi diskun tuaj të fort!!\n"
+"(është i përcaktuar për instalimin njodnjë makine tjetër).\n"
+"\n"
+"A dëshironi ta përsëritni instalimin.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Rilexo"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatizuar"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Regjistroi pakot e zgjedhura"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Zgjedheni gjuhën tuaj"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licenca"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Mini"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Zbulim i Diskut të Fortë (Hard drive)"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Tastiera"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Siguria"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Shpërndarja"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Instalimi"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Vërtetësimi"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Përdoruesit"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Punimi i rrjetit"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Bootloader"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Konfigurim i X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Përmbledhje"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Serviset"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr ""
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Braktise"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d pakot"
+#~ msgstr[1] "%d pakot"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pakot"
+
+#~ msgid "Language"
+#~ msgstr "Zgjedheni gjuhën tuaj"
+
+#~ msgid "License"
+#~ msgstr "Licenca"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Zgjedhe klasën e instalimit"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Vlerësimi në sipër"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Zgjedhi pakot instaluese"
+
+#~ msgid "Users"
+#~ msgstr "Përdoruesit"
+
+#~ msgid "Networking"
+#~ msgstr "Punimi i rrjetit"
+
+#~ msgid "Configure X"
+#~ msgstr "Konfigurim i X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Nuk mund të hyjë në modulet të cilat i përkasin bërthamës suaj (skedarja %"
+#~ "s mungon), kjo zakonisht do të thotë se disketa juaj me nisje të udhëzuar "
+#~ "nuk sinkronizohet, me burimin instalues (ju lutemi krijoni një disketë të "
+#~ "re)"
diff --git a/perl-install/install/share/po/sr.po b/perl-install/install/share/po/sr.po
new file mode 100644
index 000000000..1cc11134c
--- /dev/null
+++ b/perl-install/install/share/po/sr.po
@@ -0,0 +1,1630 @@
+# Cirilicni prevod drakbootdisk.po fajla.
+# Copyright (C) 1997-2003 MandrakeSERBIA.
+# Tomislav Jankovic <tomaja@net.yu>, 2000.
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2004-09-15 13:33+0200\n"
+"Last-Translator: Toma Jankovic <tomaja@net.yu>\n"
+"Language-Team: Serbian <i18n@mandrake.co.yu>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.9.6\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Да ли имате још додатних медија?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Следећи медији су пронађени и биће корићени током инсталације: %s.\n"
+"\n"
+"\n"
+"Да ли имате додатних инсталационих медија које треба подесити?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Мрежа (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Мрежа (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Мрежа (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "УРЛ мирора?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "УРЛ мора почињати са ftp:// или http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Контактирајте Mandriva Linux web сајт да би добили листу доступних mirror-"
+"а..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Неуспешно успостављање везе са Mandriva Linux web сајт ради листе доступних "
+"mirror-а"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Изаберите mirror са ког ћете скинути пакете"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Подешавање NFS-а"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Унесите име домаћина-hostname и директоријум вашег NFS медија"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Недостаје име домаћина-hostname"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "Директоријум мора почети са \"/\""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Име домаћина-hostname за монтирање NFS ?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Директоријум"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Додатни"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Не могу пронађем листу пакета на овом мирору. проверите да ли локација "
+"исправна."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Тражим већ инсталиране пакете..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Уклањам старе пакете..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Тражим пакете за ажурирање..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Ви сте изабрали следеђе сервере: %s\n"
+"\n"
+"\n"
+"Ови сервери се активирају по основној поставци. Они немају познатих "
+"сигурносних\n"
+"недостатака, али се ипак могу појавити неки нови. Уколико се то деси, морате "
+"их ажурирати\n"
+"што је пре могуђе.\n"
+"\n"
+"\n"
+"Да ли заиста желите да инсталирате ове сервисе?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Следећи пакети ће бити уклоњени да би систем могао да се ажурира: %s\n"
+"\n"
+"\n"
+"Да ли заиста желите да уклоните ове пакете?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Следећи диск(ови) ће бити преименовани:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (раније са именом %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Мрежа"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Изаберите медиј"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Датотека већ постоји. Да ли препишем преко постојеће?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Приступ одбијен"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Погрешно NFS име"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Лош медиј %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Не могу да направим снимак пре партиционирања"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Снимци ће бити доступни након инсталације у %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Инсталација"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Конфигурација"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Морате и %s да форматирате"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Неке хардверске компоненте у вашем рачунару захтевају одговарајуће драјвере "
+"да би нормално функционисале.\n"
+"Информације о њима можете пронаћи на: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Приступам мрежу"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Одступам од мреже"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Преузимам фајл %s ..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Копирање неких поакета на дискове ради касније употребе"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Копирање у току"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "морате имати"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "важно"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "веома лепо"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "лепо"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "можда"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "линија производа 2007"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Заштитни зид Invictus"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery Livе"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Како се регистровати"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva Online сервиси"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Нова тема"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Веб 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Касперски"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Радна станица"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Радна(Office) станица"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Office програми: текст процесори (OpenOffice.org Writer, Kword), табеле "
+"(OpenOffice.org Calc, Kspread), pdf прегледници, итд"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Office програми: текст процесори (kword, abiword), табеле (kspread, "
+"gnumeric), pdf прегледници, итд"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Станица за игру"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Забавни програми: аркаде, иге на табли, стратегије, итд"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Мултимедијална станица"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Програми за пуштање звука и видеа"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Интернет станица"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Скуп алата за читање и слање ел.поште и вести (mutt, tin..) и за "
+"претраживање Интернета"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Мрежни компјутер (клијент)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Клијенти за различите протоколе укључујући и ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Алати за лако конфигурисање компјутера"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Конзолни алати"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "едитори,шелови, алати за датотеке, терминали"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Развојна"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C и C++ развојне библиотеке, програми и пропратне датотеке"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Документација"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Књиге и Како? (Howto's) за Linux и Бесплатни Софтвер"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Линуксова Стандардна База. Подршка за Third party апликаицје"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Веб Сервер"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Софтвер за групни рад"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab Сервер"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Сервер, Firewall/Router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Интернет gateway"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Ел.пошта/вести"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix сервер за ел.пошту,Inn сервер за вести "
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Сервер директоријума"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP Сервер"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Име Домена и Мрежни Информациони Сервер"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Фајл Сервер и сервер за дељење штампача"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS Сервер, Samba Сервер"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Сервер,Базе података"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL или MySQL сервер за базу података"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Сервер, Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Пошта"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix mail сервер"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL или MySQL сервер за базу података"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Мрежни Сервер"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS сервер, SMB сервер, Proxy сервер, SSH сервер"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Графичко Окружење"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE падна станица"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K Десктоп окружење, основно графичко окружење са колекцијом пратећих алата"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Gnome радна станица"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Графичка окружења за сетом корисничк NFS server, SMB server, Proxy server, "
+"NFS server, SMB server, Proxy серверих апликација и десктопалата"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm Десктоп"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Други графички десктопови"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr " Window Maker, Enlightenment, Fvwm, итд"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Алати"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH Сервер"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin сервер за даљинску контролу"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Мрежни алати/Мониторинг"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Алати за мониторинг, управљање процесима, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva Чаробњаци"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Чаробњаци за подешавање сервера"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Грешка, али незнам како да је разрешим.\n"
+"Наставите на ваш ризик!"
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Неки важни пакети нису добро инсталирани.\n"
+"Ваш cdrom уређај или cd су неисправни.\n"
+"Проверите cdrom на инсталираном компјутеру користеће \"rpm -qpl media/main/*."
+"rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Покрећем корак `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux Инсталација %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> између елемената"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Ваш систем има мањак снаге. Услед тога можете имати проблема при "
+"инсталацији\n"
+"Mandriva Linux. Уколико се они појаве, можете пробати текстуалну "
+"инсталацију. Да би то постигли,\n"
+"притисните `F1' при стартању са CDROM-а, а онда укуцајте `text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Одабир група пакета"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Појединачно бирање пакета"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Укупна величина: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Лош пакет"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Верзија: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Величина: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Важност: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Не можете селектовати/деселектовати овај пакет"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "због не постојања %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "због не задовољеног %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "покушавам да прикажем %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "да бих задржао %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "Не можете селектовати овај пакет јер нема више слободног простора"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Следећи пакети треба да буду инсталирани"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Следећи пакети ће бити избрисани"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Ово је обавезни пакет,и не може бити деселектован"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Можете деселектовати овај пакет јер је већ инсталиран"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Не можете деселектовати овај пакет.Он мора бити ажуриран"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Аутоматски прикажи изабране пакете"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Инсталирај"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Учитај/Сачувај избор"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Ажурирање селекције пакета"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Минимално инсталирај"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Подешавање Софтвера"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Изабери пакете за инсталацију"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Инсталирам"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Без детаља"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Преостало време"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Процењујем"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d пакета"
+msgstr[1] "%d пакета"
+msgstr[2] "%d пакета"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Сажетак"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Подеси"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "није подешено"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Пронађени су следећи инсталациони медији.\n"
+"Уколико желите да прескочите неке од њих, деселектујте их сада."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Имате могућност да копирате садржај CD-ова на хард диск пре инсталације.\n"
+"Након тога ће инсталција наставити са хард диска а пакети ће остати доступни "
+"и када се заврши инсталација."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Копирање целог CDа"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Хм,појавила се грешка"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Изаберите распоред тастатуре."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Овде је представљена цела листа доступних распореда за тастатуре"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Инсталација/Ажурирање"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Да ли је ово инсталација или ажурирање?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Ажурирање %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Кључ за енкрипцију за %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Конфигурација IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Нема слободног простора за 1MB bootstrap! Инсталација ђе се наставити, али "
+"да би подигли вашсистем, морађете да креирате bootstrap партицију у "
+"DiskDrake-у"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Морате креирати PPC PReP bootstrap! Инсталација ђе се наставити, али да би "
+"подигли ваш систем, морађете да креирате bootstrap партицију у DiskDrake-у"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Промените ваш Cd-Rom!\n"
+"\n"
+"Убаците ваш CD означен са \"%s\" у погон и притисните \"У реду\" када сте "
+"спремни.\n"
+"Уколико га немате притисните Поништи."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Тражим пакете"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"Ваш систем нема довољно слободног простора за инсталацију или ажурирање "
+"система (%dMB > %dMB)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Молим Вас да изаберете учитавање или снимање селекције пакета.\n"
+"Формат који се користи је исти као и код auto_install генерисаних фајлова."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Учитај"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Сачувај"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Лош фајл"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Селектована величина је веђа од слободног простора"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Тип инсталације"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Нисте селектовали ниједну групу пакета.\n"
+"Изаберите минималну инсталацију коју желите:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Са X-овима"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Са основном документацијом (препорука!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Стварно минимална инсталација (посебно без urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Све"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Припремам инсталацију"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Инсталирам пакет %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Грешка у листи пакета:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Свеједно наставити даље ?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Сачувај селекцију пакета"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Грешка при инсталацији пакета:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Постинсталациона конфигурација"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "Проверите да ли се у уређају %s налази медиј за ажурирање модула"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Ажурирање"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Сада имате могућност да download-ујете ажуриране пакете који су\n"
+"креирани након изласка дистрибуције.\n"
+"Они могу садржавати исправке грешака и сигурносних рупа\n"
+"\n"
+"Да би скинули ове пакете морате да имате подешену Интернет конекцију.\n"
+"\n"
+"да ли желите да инсталирате update-ове ?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Кантактирајте mirror за листу могућих пакета"
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Не могу да контактирам мирор %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Хардвер"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Звучна картица"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Да ли имате ISA звучну картицу?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Покрените \"alsaconf\" или \"sndconfig\" након иснталације да би подесили "
+"своју звучну картицу"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Није детектована звучна картица. Покрените \"harddrake\" након инсталације"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV катица"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Графички интерфејс"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Мрежа и Интернет"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Проксији"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "подешено"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Ниво сигурности"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Заштитни зид (Firewall)"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "Активирано"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "онемогућено"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Стартање"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s на %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Нисте подесили X. Да ли сте сигурни да желите то?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Припремам стартер..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Пошто изгледа да имате старомодну или непознату машину, yaboot стартер неђе "
+"радити код вас.Инсталација ће бити настављена, али ћете морати да користите "
+"BootX или нешто друго да би подигли систем. Аргумент кернела заroot fs je: "
+"root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Да ли желите да користите aboot ?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Грешка при инсталацији aboot-а, \n"
+"Да ли да пробам да инсталирам чак ако то води уништењу прве партиције?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"У овом сугурносном нивоу приступ фајловима на Windows партицији је дозвољен "
+"само администраторима."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Убаците празну дискету у уређај %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Креирам ауто инсталациони флопи"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Неки кораци нису комплетирани.\n"
+"\n"
+"Да ли стварно желите да завршите ?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Честитке"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Рестарт"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Креирај ауто инсталациону дискету"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Ауто инсталација може бити потпуно аутоматизована уколико желите,\n"
+"у том случају преузеће контролу над хард-диском!!\n"
+"(ово се односи на инсталацију на другој машини).\n"
+"\n"
+"Можда волите да поновите инсталацију.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Понављање"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Аутоматски"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Сачувај селекцију пакета"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Изаберите језик"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Лиценца"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr ""
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Детекција хард диска"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Инсталациона класа"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr ""
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr ""
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr ""
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Форматирање"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Избор пакета"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Инсталирам"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr ""
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Корисници"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Мрежа"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr ""
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Конфигурисање X-а"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Сажетак"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr ""
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Ажурирање"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr ""
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d пакета"
+#~ msgstr[1] "%d пакета"
+#~ msgstr[2] "%d пакета"
+
+#~ msgid "%d packages"
+#~ msgstr "%d пакета"
+
+#~ msgid "Language"
+#~ msgstr "Изаберите језик"
+
+#~ msgid "License"
+#~ msgstr "Лиценца"
+
+#~ msgid "Installation class"
+#~ msgstr "Инсталациона класа"
+
+#~ msgid "Formatting"
+#~ msgstr "Форматирање"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Избор пакета"
+
+#~ msgid "Users"
+#~ msgstr "Корисници"
+
+#~ msgid "Networking"
+#~ msgstr "Мрежа"
+
+#~ msgid "Configure X"
+#~ msgstr "Конфигурисање X-а"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Не могу да приступим кернел модулима који одговарају вашем кернелу (фајл %"
+#~ "s нмедостаје), што генерално значи да ваш boot floppy није синхронизаован "
+#~ "са Инсталационим медијом (креирајте новији boot floppy)"
diff --git a/perl-install/install/share/po/sr@Latn.po b/perl-install/install/share/po/sr@Latn.po
new file mode 100644
index 000000000..9699b0cf0
--- /dev/null
+++ b/perl-install/install/share/po/sr@Latn.po
@@ -0,0 +1,1630 @@
+# Cirilicni prevod drakbootdisk.po fajla.
+# Copyright (C) 1997-2003 MandrakeSERBIA.
+# Tomislav Jankovic <tomaja@net.yu>, 2000.
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2004-09-15 13:33+0200\n"
+"Last-Translator: Toma Jankovic_<tomaja@net.yu>\n"
+"Language-Team: Serbian <i18n@mandrake.co.yu>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.9.6\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Da li imate još dodatnih medija?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Sledeći mediji su pronađeni i biće korićeni tokom instalacije: %s.\n"
+"\n"
+"\n"
+"Da li imate dodatnih instalacionih medija koje treba podesiti?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Mreža (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Mreža (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Mreža (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL mirora?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "URL mora počinjati sa ftp:// ili http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Kontaktirajte Mandriva Linux web sajt da bi dobili listu dostupnih mirror-"
+"a..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Neuspešno uspostavljanje veze sa Mandriva Linux web sajt radi liste "
+"dostupnih mirror-a"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Izaberite mirror sa kog ćete skinuti pakete"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Podešavanje NFS-a"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Unesite ime domaćina-hostname i direktorijum vašeg NFS medija"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Nedostaje ime domaćina-hostname"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "Direktorijum mora početi sa \"/\""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Ime domaćina-hostname za montiranje NFS ?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Direktorijum"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Dodatni"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Ne mogu pronađem listu paketa na ovom miroru. proverite da li lokacija "
+"ispravna."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Tražim već instalirane pakete..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Uklanjam stare pakete..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Tražim pakete za ažuriranje..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Vi ste izabrali sledeđe servere: %s\n"
+"\n"
+"\n"
+"Ovi serveri se aktiviraju po osnovnoj postavci. Oni nemaju poznatih "
+"sigurnosnih\n"
+"nedostataka, ali se ipak mogu pojaviti neki novi. Ukoliko se to desi, morate "
+"ih ažurirati\n"
+"što je pre moguđe.\n"
+"\n"
+"\n"
+"Da li zaista želite da instalirate ove servise?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Sledeći paketi će biti uklonjeni da bi sistem mogao da se ažurira: %s\n"
+"\n"
+"\n"
+"Da li zaista želite da uklonite ove pakete?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Sledeći disk(ovi) će biti preimenovani:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (ranije sa imenom %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Mreža"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Izaberite medij"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Datoteka već postoji. Da li prepišem preko postojeće?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Pristup odbijen"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Pogrešno NFS ime"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Loš medij %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Ne mogu da napravim snimak pre particioniranja"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Snimci će biti dostupni nakon instalacije u %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Instalacija"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Konfiguracija"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Morate i %s da formatirate"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Neke hardverske komponente u vašem računaru zahtevaju odgovarajuće drajvere "
+"da bi normalno funkcionisale.\n"
+"Informacije o njima možete pronaći na: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Pristupam mrežu"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Odstupam od mreže"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Preuzimam fajl %s ..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Kopiranje nekih poaketa na diskove radi kasnije upotrebe"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Kopiranje u toku"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "morate imati"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "važno"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "veoma lepo"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "lepo"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "možda"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "linija proizvoda 2007"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Zaštitni zid Invictus"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery Live"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Kako se registrovati"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva Online servisi"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Nova tema"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Veb 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kasperski"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Radna stanica"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Radna(Office) stanica"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Office programi: tekst procesori (OpenOffice.org Writer, Kword), tabele "
+"(OpenOffice.org Calc, Kspread), pdf preglednici, itd"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Office programi: tekst procesori (kword, abiword), tabele (kspread, "
+"gnumeric), pdf preglednici, itd"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Stanica za igru"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Zabavni programi: arkade, ige na tabli, strategije, itd"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimedijalna stanica"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Programi za puštanje zvuka i videa"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internet stanica"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Skup alata za čitanje i slanje el.pošte i vesti (mutt, tin..) i za "
+"pretraživanje Interneta"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Mrežni kompjuter (klijent)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Klijenti za različite protokole uključujući i ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Alati za lako konfigurisanje kompjutera"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Konzolni alati"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "editori,šelovi, alati za datoteke, terminali"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Razvojna"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C i C++ razvojne biblioteke, programi i propratne datoteke"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentacija"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Knjige i Kako? (Howto's) za Linux i Besplatni Softver"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux-ova Standardna Baza. Podrška za Third party aplikaicje"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Veb Server"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Softver za grupni rad"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab Server"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Server, Firewall/Router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internet gateway"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "El.pošta/vesti"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix server za el.poštu,Inn server za vesti "
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Server direktorijuma"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP Server"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Ime Domena i Mrežni Informacioni Server"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Fajl Server i server za deljenje štampača"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS Server, Samba Server"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Server,Baze podataka"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL ili MySQL server za bazu podataka"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Server, Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Pošta"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix mail server"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL ili MySQL server za bazu podataka"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Mrežni Server"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS server, SMB server, Proxy server, SSH server"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Grafičko Okruženje"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE padna stanica"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K Desktop okruženje, osnovno grafičko okruženje sa kolekcijom pratećih alata"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Gnome radna stanica"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Grafička okruženja za setom korisničk NFS server, SMB server, Proxy server, "
+"NFS server, SMB server, Proxy serverih aplikacija i desktopalata"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm Desktop"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Drugi grafički desktopovi"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr " Window Maker, Enlightenment, Fvwm, itd"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Alati"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH Server"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin server za daljinsku kontrolu"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Mrežni alati/Monitoring"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Alati za monitoring, upravljanje procesima, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva Čarobnjaci"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Čarobnjaci za podešavanje servera"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Greška, ali neznam kako da je razrešim.\n"
+"Nastavite na vaš rizik!"
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Neki važni paketi nisu dobro instalirani.\n"
+"Vaš cdrom uređaj ili cd su neispravni.\n"
+"Proverite cdrom na instaliranom kompjuteru koristeće \"rpm -qpl media/main/*."
+"rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Pokrećem korak `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux Instalacija %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> između elemenata"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Vaš sistem ima manjak snage. Usled toga možete imati problema pri "
+"instalaciji\n"
+"Mandriva Linux. Ukoliko se oni pojave, možete probati tekstualnu "
+"instalaciju. Da bi to postigli,\n"
+"pritisnite `F1' pri startanju sa CDROM-a, a onda ukucajte `text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Odabir grupa paketa"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Pojedinačno biranje paketa"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Ukupna veličina: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Loš paket"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Verzija: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Veličina: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Važnost: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Ne možete selektovati/deselektovati ovaj paket"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "zbog ne postojanja %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "zbog ne zadovoljenog %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "pokušavam da prikažem %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "da bih zadržao %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "Ne možete selektovati ovaj paket jer nema više slobodnog prostora"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Sledeći paketi treba da budu instalirani"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Sledeći paketi će biti izbrisani"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Ovo je obavezni paket,i ne može biti deselektovan"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Možete deselektovati ovaj paket jer je već instaliran"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Ne možete deselektovati ovaj paket.On mora biti ažuriran"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Automatski prikaži izabrane pakete"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Instaliraj"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Učitaj/Sačuvaj izbor"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Ažuriranje selekcije paketa"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimalno instaliraj"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Podešavanje Softvera"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Izaberi pakete za instalaciju"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Instaliram"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Bez detalja"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Preostalo vreme"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Procenjujem"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d paketa"
+msgstr[1] "%d paketa"
+msgstr[2] "%d paketa"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Sažetak"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Podesi"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "nije podešeno"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Pronađeni su sledeći instalacioni mediji.\n"
+"Ukoliko želite da preskočite neke od njih, deselektujte ih sada."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Imate mogućnost da kopirate sadržaj CD-ova na hard disk pre instalacije.\n"
+"Nakon toga će instalcija nastaviti sa hard diska a paketi će ostati dostupni "
+"i kada se završi instalacija."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Kopiranje celog CDa"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Hm,pojavila se greška"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Izaberite raspored tastature."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Ovde je predstavljena cela lista dostupnih rasporeda za tastature"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Instalacija/Ažuriranje"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Da li je ovo instalacija ili ažuriranje?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Ažuriranje %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Ključ za enkripciju za %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Konfiguracija IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Nema slobodnog prostora za 1MB bootstrap! Instalacija đe se nastaviti, ali "
+"da bi podigli vašsistem, morađete da kreirate bootstrap particiju u "
+"DiskDrake-u"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Morate kreirati PPC PReP bootstrap! Instalacija đe se nastaviti, ali da bi "
+"podigli vaš sistem, morađete da kreirate bootstrap particiju u DiskDrake-u"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Promenite vaš Cd-Rom!\n"
+"\n"
+"Ubacite vaš CD označen sa \"%s\" u pogon i pritisnite \"U redu\" kada ste "
+"spremni.\n"
+"Ukoliko ga nemate pritisnite Poništi."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Tražim pakete"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"Vaš sistem nema dovoljno slobodnog prostora za instalaciju ili ažuriranje "
+"sistema (%dMB > %dMB)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Molim Vas da izaberete učitavanje ili snimanje selekcije paketa.\n"
+"Format koji se koristi je isti kao i kod auto_install generisanih fajlova."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Učitaj"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Sačuvaj"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Loš fajl"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Selektovana veličina je veđa od slobodnog prostora"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Tip instalacije"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Niste selektovali nijednu grupu paketa.\n"
+"Izaberite minimalnu instalaciju koju želite:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Sa X-ovima"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Sa osnovnom dokumentacijom (preporuka!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Stvarno minimalna instalacija (posebno bez urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Sve"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Pripremam instalaciju"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Instaliram paket %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Greška u listi paketa:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Svejedno nastaviti dalje ?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Sačuvaj selekciju paketa"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Greška pri instalaciji paketa:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Postinstalaciona konfiguracija"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "Proverite da li se u uređaju %s nalazi medij za ažuriranje modula"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Ažuriranje"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Sada imate mogućnost da download-ujete ažurirane pakete koji su\n"
+"kreirani nakon izlaska distribucije.\n"
+"Oni mogu sadržavati ispravke grešaka i sigurnosnih rupa\n"
+"\n"
+"Da bi skinuli ove pakete morate da imate podešenu Internet konekciju.\n"
+"\n"
+"da li želite da instalirate update-ove ?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Kantaktirajte mirror za listu mogućih paketa"
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Ne mogu da kontaktiram miror %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Hardver"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Zvučna kartica"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Da li imate ISA zvučnu karticu?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Pokrenite \"alsaconf\" ili \"sndconfig\" nakon isntalacije da bi podesili "
+"svoju zvučnu karticu"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Nije detektovana zvučna kartica. Pokrenite \"harddrake\" nakon instalacije"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV katica"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Grafički interfejs"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Mreža i Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proksiji"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "podešeno"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Nivo sigurnosti"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Zaštitni zid (Firewall)"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "Aktivirano"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "onemogućeno"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Startanje"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s na %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Niste podesili X. Da li ste sigurni da želite to?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Pripremam starter..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Pošto izgleda da imate staromodnu ili nepoznatu mašinu, yaboot starter neđe "
+"raditi kod vas.Instalacija će biti nastavljena, ali ćete morati da koristite "
+"BootX ili nešto drugo da bi podigli sistem. Argument kernela zaroot fs je: "
+"root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Da li želite da koristite aboot ?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Greška pri instalaciji aboot-a, \n"
+"Da li da probam da instaliram čak ako to vodi uništenju prve particije?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"U ovom sugurnosnom nivou pristup fajlovima na Windows particiji je dozvoljen "
+"samo administratorima."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Ubacite praznu disketu u uređaj %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Kreiram auto instalacioni flopi"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Neki koraci nisu kompletirani.\n"
+"\n"
+"Da li stvarno želite da završite ?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Čestitke"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Restart"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Kreiraj auto instalacionu disketu"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Auto instalacija može biti potpuno automatizovana ukoliko želite,\n"
+"u tom slučaju preuzeće kontrolu nad hard-diskom!!\n"
+"(ovo se odnosi na instalaciju na drugoj mašini).\n"
+"\n"
+"Možda volite da ponovite instalaciju.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Ponavljanje"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatski"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Sačuvaj selekciju paketa"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Izaberite jezik"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licenca"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Miš"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Detekcija hard diska"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Instalaciona klasa"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Tastatura"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Sigurnost"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Particionisanje"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Formatiranje"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Izbor paketa"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Instaliram"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Autentifikacija"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Korisnici"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Mreža"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Starter"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Konfigurisanje X-a"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Sažetak"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Servisi"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Ažuriranje"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Izlaz"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d paketa"
+#~ msgstr[1] "%d paketa"
+#~ msgstr[2] "%d paketa"
+
+#~ msgid "%d packages"
+#~ msgstr "%d paketa"
+
+#~ msgid "Language"
+#~ msgstr "Izaberite jezik"
+
+#~ msgid "License"
+#~ msgstr "Licenca"
+
+#~ msgid "Installation class"
+#~ msgstr "Instalaciona klasa"
+
+#~ msgid "Formatting"
+#~ msgstr "Formatiranje"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Izbor paketa"
+
+#~ msgid "Users"
+#~ msgstr "Korisnici"
+
+#~ msgid "Networking"
+#~ msgstr "Mreža"
+
+#~ msgid "Configure X"
+#~ msgstr "Konfigurisanje X-a"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Ne mogu da pristupim kernel modulima koji odgovaraju vašem kernelu (fajl %"
+#~ "s nmedostaje), što generalno znači da vaš boot floppy nije sinhronizaovan "
+#~ "sa Instalacionim medijom (kreirajte noviji boot floppy)"
diff --git a/perl-install/install/share/po/sv.po b/perl-install/install/share/po/sv.po
new file mode 100644
index 000000000..df398e1d6
--- /dev/null
+++ b/perl-install/install/share/po/sv.po
@@ -0,0 +1,1592 @@
+# translation of DrakX-sv.po to
+# DrakX-sv - Swedish Translation
+#
+# Copyright (C) 2000,2002,2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+# Copyright (c) 2000 Mandriva
+#
+# Kenneth Krekula, 2005.
+# Fuad Sabanovic <manijak@telia.com>, 2000.
+# Mattias Dahlberg <voz@home.se>, 2001, 2002.
+# Mattias Newzella <newzella@linux.nu>, 2001, 2002,2003.
+# Magnus Björklöf <bjorklof@nic.fi>, 2003.
+# Lars Westergren <lars.westergren@home.se>, 2003, 2004, 2005.
+# Thomas Backlund <tmb@mandriva.org>, 2004, 2005, 2006.
+# Kenneth Krekula <kenneth.krekula@kiruna.se>, 2007.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-sv\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-03-18 12:05+0100\n"
+"Last-Translator: Kenneth Krekula <kenneth.krekula@kiruna.se>\n"
+"Language-Team: <sv@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Har du fler tilläggs-installationskällor?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Följande medier har blivit hittade och kommer att användas under "
+"installationen: %s.\n"
+"\n"
+"\n"
+"Har du några tilläggs-medier du vill konfigurera?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "Cd-rom"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Nätverk (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Nätverk (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Nätverk (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "Spegelns URL?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "URL måste starta med ftp:// eller http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Kontaktar Mandriva Linux webbplats för att hämta listan över tillgängliga "
+"speglar..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Misslyckades kontakta Mandriva Linux webbplats för att hämta listan över "
+"tillgängliga speglar"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Välj en webbplats från vilken du vill hämta paketen"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "NFS konfigurering"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Ange namn och katalog för ditt NFS medium"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Värdnamn saknas"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "Katalogen måste börja med \"/\""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "Maskinnamn för NFS anslutning ?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Katalog"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Tillägg"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Kan inte hitta hdlist filen på denna spegel"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Söker efter paket som redan är installerade..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Tar bort paket före uppgradering..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Söker efter paket att uppdatera..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Du har valt följande server/servrar: %s\n"
+"\n"
+"\n"
+"Dessa servrar aktiveras som standard. De har inga kända säkerhetsproblem,\n"
+"men sådana kan upptäckas. Om så blir fallet måste du se till att uppdatera\n"
+"dem så snabbt som möjligt.\n"
+"\n"
+"\n"
+"Vill du verkligen installera dessa servrar?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Följande paket kommer att tas bort för att kunna uppdatera systemet: %s\n"
+"\n"
+"\n"
+"Vill du verkligen ta bort dessa paket?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Följande disk(ar) har döpts om:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (gamla namnet %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Nätverk"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Välj media"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Filen finns redan. Skriv över?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Åtkomst nekad"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Felaktigt NFS namn"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Oanvändbart media %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Kan inte ta skärmdumpar före partitionering"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Skärmdumpar kommer att finnas tillgängliga efter installationen i %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Installation"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Konfiguration"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Du måste också formatera %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"En del hårdvara i datorn behöver slutna drivrutiner för att\n"
+"fungera. Du kan hitta en del information om dem här: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Startar nätverket"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Stoppar nätverket"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Laddar ner filen %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Kopierar några paket till hårddisken för senare användning"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Kopiering pågår"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "nödvändigt"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "viktigt"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "väldigt trevligt"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "trevligt"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "tveksamt"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "2007 produktlinje"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Invictus Brandvägg"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery Live Läge"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Hur registrera dig"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva Online Tjänster"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Nytt Tema"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Arbetsstation"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Kontorsarbetsstation"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Kontorsprogram: ordbehandlare (OpenOffice.org Writer, Kword), kalkylprogram "
+"(OpenOffice.org Calc, Kspread), PDF-visare, etc"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Kontorsprogram: ordbehandlare (Kword, Abiword), kalkylprogram (Kspread, "
+"Gnumeric), PDF-visare, etc"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Spelstation"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Underhållande program: arkad, brädspel, strategi, etc"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimediastation"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Redigerings- och uppspelningsprogram för video och ljud"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internetstation"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"En samling verktyg för att läsa och skicka e-post och nyheter (mutt, tin...) "
+"och för att utforska Internet"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Nätverksdator (klient)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Klienter för olika protokoll inkluderande SSH"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Verktyg för att underlätta konfigurationen av datorn"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Konsollverktyg"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editorer, skal, filverktyg, terminaler"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Utveckling"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Utvecklingsbibliotek, program och include-filer för C och C++"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentation"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Böcker och \"Howto's\" om Linux och fri mjukvara"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Stöd för tredjepartsprogram"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Webbserver"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab-server"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Brandvägg/Router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internet-gateway"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "E-post/Nyheter"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "E-postservern Postfix, Nyhetsgruppservern Inn"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Katalog-server"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP-server"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Domännamnserver och Nätverksinformationsserver"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Fil och Skrivarserver"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS-server, Samba-server"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Databas"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL- och MySQL-databasserver"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Webb/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "E-post"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "E-postservern Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL- eller MySQL-databasserver"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Nätverksserver"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS-server, SMB-server, Proxyserver, SSH-server"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Grafisk miljö"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE-arbetsstation"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K Desktop Environment, den grundläggande grafiska miljön med en samling "
+"tillhörande verktyg"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Gnome-arbetsstation"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Grafisk miljö med en samling användarvänliga program och skrivbordsverktyg"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm Skrivborsmiljö"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Andra grafiska skrivbordsmiljöer"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, etc"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Verktyg"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH-server"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Fjärrkonfigurationsserver"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Nätverksverktyg/Övervakning"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Övervakningsverkty, processhantering, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva Guider"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Guider för att konfigurera servern"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Ett fel uppstod och jag vet inte hur det kan hanteras på ett\n"
+"bra sätt. Fortsätt på egen risk."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Några viktiga paket blev inte installerade ordentligt.\n"
+"Antingen är cd-enheten eller cd-skivan trasig.\n"
+"Du kan kontrollera cd-skivan på en redan installerad\n"
+"Mandriva Linux-dator med kommandot \"rpm -qpl media/main/*.rpm\".\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Påbörjar steg \"%s\"\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux installation %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> mellan element"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Systemet har ont om resurser. Du kan få problem med att installera\n"
+"Mandriva Linux. Om det blir problem kan du prova den textbaserade\n"
+"installationen istället. För att göra det tryck F1 när du startar\n"
+"från cd-skivan, skriv sedan \"text\"."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Val av paketgrupper"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Välj enskilda paket"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Total storlek: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Ogiltigt paket"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Version: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Storlek: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Betydelsegrad: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Du kan inte välja/välja bort detta paket."
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "pga saknande %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "på grund av otillräckliga %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "försöker befordra %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "för att behålla %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Du kan inte välja detta paket eftersom det inte finns tillräckligt med "
+"utrymme."
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Följande paket kommer att installeras"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Följande paket kommer att tas bort"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Detta är ett obligatoriskt paket som inte kan väljas bort."
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Du kan inte välja bort detta paket. Det är redan installerat."
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Du kan inte välja bort det här paketet. Det måste uppdateras."
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Visa automatiskt valda paket"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Installera"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Ladda/Spara markering"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Uppdaterar paketval"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimal installation"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Programhantering"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Välj paketen som du vill installera"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Installerar"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Inga detaljer"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Återstående tid "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Uppskattar"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d paketet"
+msgstr[1] "%d paket"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Sammanfattning"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Konfigurera"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "Inte inställt"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Följande installationskällor har hittats.\n"
+"Du kan välja bort dom du inte önskar använda dig av."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Du har möjligheten att kopiera innehållet på CDn till hårddisk innan "
+"installationen.\n"
+"Installationen kommer att fortsätta från hårddisken och paketen kommer att "
+"fortsätta vara tillgängliga när systemet är färdiginstallerat."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Kopiera hela CD skivor"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Ett fel inträffade"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Välj tangentbordslayout."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Här är hela listan med tillgängliga tangentbord"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Installera/Uppdatera"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Är detta en installation eller en uppdatering?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Uppdatera %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Krypteringsnyckel för %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Konfigurerar IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Inget ledigt utrymme för 1MB bootstrap. Installationen fortsätter, men för "
+"att starta systemet måste du skapa en \"bootstrap\"-partition i Diskdrake."
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Du måste skapa en PPC PRep Bootstrap. Installationen fortsätter, men för att "
+"starta systemet måste du skapa \"bootstrap\"-partitionen i Diskdrake."
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Byt cd-skiva.\n"
+"\n"
+"Sätt in cd-skivan med namn \"%s\" och klicka på OK.\n"
+"Om du inte har den, klicka på Avbryt för att hoppa över\n"
+"den delen av installationen."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Söker efter tillgängliga paket..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"Ditt system har inte tillräckligt med utrymme kvar för installation eller "
+"uppgradering (%dMB > %dMB)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Välj ladda eller spara paketval.\n"
+"Formatet är detsamma som för auto_install-genererade filer."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Inläsning"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Spara"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Oanvändbar fil"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Vald storlek är större än tillgängligt utrymme."
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Installationstyp"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Du har inte valt några gruppaket.\n"
+"Välj den minimala installationen du vill ha:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Med X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Med grundläggande dokumentation (rekommenderas)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Minimal installation (ingen urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Alla"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Förbereder installation"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Installerar paket %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Det uppstod ett fel vid sortering av paket:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Fortsätta ändå?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Försök igen"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "Hoppa över detta paket"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "Hoppa över alla paket från mediet \"%s\""
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "Gå tillbaka till media och paketval"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "Det uppstod ett fel vid installation av paketet %s."
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Bearbetar installerade paket"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "Kontrollera att media för uppdateringsmoduler finns i enhet %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Uppdateringar"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Nu har du möjlighet att ladda hem programuppdateringar. Dessa\n"
+"paket har kommit ut efter att denna distribution släppts. De kan\n"
+"innehålla säkerhetsuppdateringar eller felrättningar.\n"
+"\n"
+"Du behöver en fungerande Internetanslutning för att kunna ladda ner dessa "
+"paket.\n"
+"\n"
+"Vill du installera uppdateringarna?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"Kontaktar webbplatsen för att hämta en lista över tillgängliga paket..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Kan inte kontakta spegeln %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Hårdvara"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Ljudkort"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Har du ett ISA-ljudkort?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Kör \"alsaconf\" eller \"sndconfig\" efter installationen för att "
+"konfigurera ljudkortet."
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Inget ljudkort hittades. Prova \"harddrake\" efter installationen."
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Tv-kort"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Grafiskt gränssnitt"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Nätverk & Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxyservrar"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "konfigurerad"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Säkerhetsnivå:"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Brandvägg"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "aktiverad"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "inaktiverad"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Starta"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s på %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Du har inte konfigurerat X. Är du säker på att du vill göra detta?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Förbereder starthanterare..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Du verkar ha en OldWorld eller okän maskin, yaboot-starthanteraren kommer "
+"inte att fungera Installationen fortsätter, men du behöver använda BootX "
+"eller något liknande för att starta datorn. Kernelargumentet för roten är "
+"root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Vill du använda aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Fel vid installationen av aboot.\n"
+"Vill du försöka ändå, fast det kan förstöra den första partitionen?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"På den här säkerhetsnivån är tillgång till Windowspartitionen förbehållen "
+"administratören."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Sätt in en tom diskett i diskettenhet %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Skapar automatisk installationsdiskett"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Några steg är inte slutförda.\n"
+"\n"
+"Vill du verkligen avbryta nu?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Gratulerar"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Starta om"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Genererar automatisk installationsdiskett"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Automatisk installation kan göras helt automatisk, om så önskas,\n"
+"vilket gör att den tar över hårddisken\n"
+"(syftet är att installera på en annan dator).\n"
+"\n"
+"Du kan tänkas vilja köra samma installation i repris.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Repris"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Automatiserad"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Spara paketval"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Välj språk"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licens"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Mus"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Identifiering av hårddisk"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Installationsklass"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Tangentbord"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Säkerhet"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Partitionering"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Formaterar"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Väljer paket"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Installerar"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Autentisering"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Användare"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Nätverk"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Starthanterare"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Konfigurera X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Sammanfattning"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Tjänster"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Uppdateringar"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Avsluta"
diff --git a/perl-install/install/share/po/ta.po b/perl-install/install/share/po/ta.po
new file mode 100644
index 000000000..8e8851e6e
--- /dev/null
+++ b/perl-install/install/share/po/ta.po
@@ -0,0 +1,1589 @@
+# Drak X
+# Copyright (C) 2002 Mandriva
+#
+# NOTE: use UTF-8 only
+#
+# prabu <prabu_anand2000@yahoo.com>, 2002.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX 1.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2002-09-06 00:35+0800\n"
+"Last-Translator: prabu anand <prabu_anand2000@yahoo.com>\n"
+"Language-Team: Tamil <tamilinix@yahoogroups.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.9.6\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "மேலும் உள்ளனவா?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "சிடி இயக்கி"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "வலையமைப்பு %s"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "வலையமைப்பு %s"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr "தற்ேபாதுள்ள இணைப் பதிப்புதளங்களை அறிய மாண்ட்ேரக் இணையதளம் தொடர்புகொள்ளப்படுகிறது"
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr "தற்ேபாதுள்ள இணைப் பதிப்புதளங்களை அறிய மாண்ட்ேரக் இணையதளம் தொடர்புகொள்ளப்படுகிறது"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "பொதிகளை எங்கிருந்து இறக்க விரும்புகிறீர்கள்"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "அடைவு"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "இதை திறக்க முடியவில்ைல%s: %s\n"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "ஏற்கனவே நிறுவப்பட்டுள்ள பொதிகள் பார்ைவயிடப்படுகின்றன"
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "மேம்படுத்தப்பட வேண்டிய பொதிகள் அறியப்படுகின்றன"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"நீங்கள் கீழ்கானும் ேசவையகங்களை ேதர்வு செய்து உள்ளீர்கள்: %s\n"
+"\n"
+"\n"
+"இந்த ேசவையகங்கள் கொடாநிலையாக துவக்கப்படும். இவற்றில் இவை: \n"
+"வெளியிடப் பட்டபோது பாதுகாப்பு பிரச்சினை ஏதுமில்ைல. ஆனால் பின்னாளில்:\n"
+"கண்டுபிடிக்கப்படலாம்.\n"
+"அப்ேபாது அவற்றுக்கான மாற்றுப் பொதிகளை நிறுவவும்\n"
+"\n"
+"\n"
+"நிங்கள் நிச்சயம் இவற்ைற நிறுவ விரும்புகிறீர்களா?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "கிழ்கானும் பொதிகள் நிறுவுவதற்கு தேர்வுச் செய்யப்பட்டுள்ளது"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "வலையமைப்பு"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "தயவுசெய்து ேதர்ந்ெதடுக்கவும்"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "இந்த கோப்பு ஏற்கனவே உள்ளது. பயன்பாடுத்தி கொள்ளலாமா?"
+
+#: any.pm:1183
+#, fuzzy, c-format
+msgid "Permission denied"
+msgstr "அனுமதிகள்"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "கெட்ட தகவல்"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "வகிர்தல் முடிவதற்கு முன் திரைவேட்டு எடுக்க முடியாது"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "நிறுவி முடித்தவுடன் திரைவேட்டுகள் %s என்ற அடைவில் கிடைக்கும்"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "நிறுவப்படுகிறது"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "வடிவமைப்புகள்"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "நீங்கள் %s இதனையும் வடிவுட்ட வேண்டும்"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"உங்கள் கணினியில் உள்ள சில வன்ெபாருட்களின் இயக்க நிரலை\n"
+"நீங்கள் %s இங்கிருந்து எடுக்கலாம்"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "வலையமைப்பாக்கங்கள் ஏற்றப்படுகிறது"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "வலையமைப்பாக்கங்கள் முடக்கப்படுகிறது"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "கோப்புகளைக் கண்டுபிடி "
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "இன்னும் தேடுதல் நடைபெறுகிறது"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "நிச்சயம் இருக்க வேண்டியவை"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "முக்கியமானவை"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "மிக அழகானவை"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "அழகானவை"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "தேவைப்பட்டால்"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "gwen பார்வை"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "வேலைக்களம்"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "அலுவல் கருவிகள்"
+
+#: share/meta-task/compssUsers.pl:27
+#, fuzzy, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr "அலுவல் கருவிகள்(விாிதாள், நிகழ்த்தி,வரைபடக் கருவிகள்)"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr "அலுவல் கருவிகள்(விாிதாள், நிகழ்த்தி,வரைபடக் கருவிகள்)"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "விளையாட்டுகள்"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "விளையாட்டுகள்"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "பல்லூடக கணினி"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "பல்லூடக இயக்கிகள்/உருவாக்க நிரல்கள்"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "இணையக் கணினி"
+
+#: share/meta-task/compssUsers.pl:44
+#, fuzzy, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr "நீங்கள் மின்னஞ்சல், மற்றும் இணையத்ைத மேலோட உதவுங்கருவிகள்"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "வலையமைப்புக் கணினி(வேண்டி)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "ssh முதலிய வலையமைப்புக் கருவிகள்"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "உங்கள் கணினியை எளிதாக வடிவமைக்க உதவுங்கருவிகள்"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "முனையக் கருவிகள்"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "முனையம்,தொகுப்பாளர்கள், கோப்பு மேலாளர்கள் மற்றும் ஓடுகள்"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "உருவாக்கம்"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C மற்றும் C++ நூலக நிரல்கள்"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "உதவிநூல்"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "புத்தகங்கள் மற்றும் எப்படிச் செய்வது போன்ற உதவி நூல்"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "LSB- லினக்ஸ் தரக்கட்டுப்பாட்டுக்கு தேவையான நிரல்கள்."
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "இணையத்தள சேவையகம்"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:88
+#, fuzzy, c-format
+msgid "Groupware"
+msgstr "கிரப்"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "கோலாப் சேவகன்"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "நெருப்புச்சுவர்/வழிப்படுத்தி"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "இணைய நுழைவாயில்"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/கோப்பு/_புதியது"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "மின்னஞ்சல் பரிமாறி"
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "RAID இருந்து நீக்கு"
+
+#: share/meta-task/compssUsers.pl:104
+#, fuzzy, c-format
+msgid "FTP Server"
+msgstr "NTP சேவையகம்"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, fuzzy, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS "
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "அச்சுப்ெபாறி சேவையகம்"
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "ஒலிப் பரிமாறி"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "தரவுதளங்கள்"
+
+#: share/meta-task/compssUsers.pl:117
+#, fuzzy, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL/MySQL தரவுத்தள பரிமாறிகள்"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "இணையதள/கோப்புப் பாிமாற்றம்"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "அப்பாச்சி, ftpd போன்ற பரிமாற்று நிரல்கள்"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "மின்னஞ்சல்"
+
+#: share/meta-task/compssUsers.pl:126
+#, fuzzy, c-format
+msgid "Postfix mail server"
+msgstr "மின்னஞ்சல் பரிமாறி"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL/MySQL தரவுத்தள பரிமாறிகள்"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "வலையமைப்பக பரிமாறி"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS /சம்பா/பினாமி/ssh பரிமாறிகள்"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "வரைவியல்வழி சூழல்கள்"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Kசாளரமைப்பு பணிக்கணினி"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "Kசாளரமைப்பு- ஓர் பயன்படுத்துவதற்கு எளிதான வரைவியல்வழி மேலாளர்"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "குேனாம் பணிக்கணினி"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "ஓர் பயன்படுத்துவதற்கு எளிதான வரைவியல்வழி மேலாளர்"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "மேசைசெயலி"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "மற்ற வரைவியல்வழி மேலாளர்கள்"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "குேனாம், ஐஸ்விம் ஆகிய பயன்படுத்துவதற்கு எளிதான வரைவியல்வழி மேலாளர்கள்"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "உதவிக்கருவிகள்"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, fuzzy, c-format
+msgid "SSH Server"
+msgstr "சேவையகம்"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "வலைபடக் கருவி"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "பரிமாறி வடிவமைப்பு"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "வலையமைப்பாக்க வடிவமைப்பு "
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "மாண்ட்ேரக் கட்டுப்பட்டு மையம்"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "அச்சுப்ெபாறி \"%s\" வடிவமைப்பு ெவற்றியடையவில்ைல"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"பிழை நேர்ந்துள்ளது மன்னிக்கவும் எனக்கு என்ன செய்வதென்று தெரியவில்ைல\n"
+"தொடர்ந்து செல்வது உங்கள் பொறுப்பு"
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"சில முக்கிய பொதிகள் நிறுவுவதில் பிழை நேர்ந்துள்ளது\n"
+"உங்கள் சிடி அல்லது சிடி இயக்கி பழுதடைந்து இருக்கலாம்.\n"
+"உங்கள் சிடியைச் சோதிக்க ஏற்கனவே இயங்குகின்ற கணினியில் \"rpm -qpl media/main/*.rpm என "
+"கட்டளையிடவும்\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "தற்ேபாது இந்த `%s நிலைக்கு செல்கிறோம்' \n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "மாண்ட்ேரக் லினக்ஸ் நிறுவல் %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr ""
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"உங்கள் கணினியில் வளங்கள் குறைவாக உள்ளதால்\n"
+"மாண்ட்ேரக் லினக்ஸ் நிறுவுவதில் பிழை ஏற்படலாம். நீங்கள் உரைவழி நிறுவலாம்,\n"
+"சிடியில் நிறுவ தொடங்கும் போது `F1' என அழுத்தி விட்டு, `text'. என அடிக்கவும்"
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "பொதிகள் குழுத் தேர்வு"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "தனித்னி பொதியாக தேர்வுச் செய்"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "மெகா பைட்டில் மொத்த அளவு %d / %d"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "தவறான பொதி"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "வெளியீடு: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "அளவு: "
+
+#: steps_gtk.pm:316
+#, fuzzy, c-format
+msgid "%d KB\n"
+msgstr "கிலோ பைட்டில் அளவு %d \n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "முக்கியத்துவம்: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "நீங்கள் இந்த பொதியை தேர்வு/நீக்க முடியாது"
+
+#: steps_gtk.pm:355
+#, fuzzy, c-format
+msgid "due to missing %s"
+msgstr "kdesu இல்ைல"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr ""
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr ""
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr ""
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "இடமில்ைல என்பதால் நீங்கள் இந்த பொதியைத் தே`ர்வுச் செய்ய முடியாது"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "கிழ்கானும் பொதிகள் நிறுவுவதற்கு தேர்வுச் செய்யப்பட்டுள்ளது"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "கிழ்கானும் பொதிகள் நீக்கப்படுகிறது"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "இது கட்டாய பொதி. இதனை நீக்க முடியாது"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "இந்த பொதியை.நீக்க முடியாது. இது ஏற்கனவே நிறுவப்பட்டள்ளது"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "இந்த பொதியை.நீக்க முடியாது. இது நிகழ்நிலைப்படுத்த வேண்டிய பொதி"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "தானாக தேர்வுச் செய்யப்பட்டுள்ள பொதிகளைக் காட்டு"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "நிறுவு"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "பொதிகள் தேர்வு"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "பொதிகள் தேர்ைவ நிகழ்நிலைப் படுத்து"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "குறைந்தபட்ச நிறுவல்"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "நிரல் மேலாண்மை"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "நிறுவ வேண்டிய பொதிகளை தேர்வுச் செய்யுங்கள் "
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "நிறுவப்படுகிறது"
+
+#: steps_gtk.pm:468
+#, fuzzy, c-format
+msgid "No details"
+msgstr "விவரங்கள்"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "தேவைப்படும் நேரம்"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "கணக்கிடப்படுகிறது"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d பொதிகள்"
+msgstr[1] "%d பொதிகள்"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "உரை"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "வடிவமை"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "வடிவமைக்கப்படவில்ைல"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "பிழை நேர்ந்துள்ளது மன்னிக்கவும்"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "தயவுசெய்து உங்கள் விசைப்பலகை இட அமைவைத் தேர்வு செய்க "
+
+#: steps_interactive.pm:99
+#, fuzzy, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "உங்கள் பயன்பாட்டிற்கு உள்ள விசைப்பலகைகள் அனைத்தும் இங்கே கொடுக்கப்பட்டுள்ளன"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "நிறுவுதுல்/ேமம்படுத்தல்"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "இது நிறுவுதலா அல்லது ேமம்படுத்தலா?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr " %s ேமம்படுத்து"
+
+#: steps_interactive.pm:148
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "மறைக்குறியீட்டுச் சாவி"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE வடிவமைக்கப்படுகிறது..."
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"துவங்குநிரலை நிறுவ இடமில்ைல. நிறுவுதல் தொடரும். ஆனால் உங்கள் லினக்ஸ் இயக்க நிரலை துவக்க "
+"டிரேக்வட்ைட பயன்படுத்துங்கள்"
+
+#: steps_interactive.pm:226
+#, fuzzy, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"துவங்குநிரலை நிறுவ இடமில்ைல. நிறுவுதல் தொடரும். ஆனால் உங்கள் லினக்ஸ் இயக்க நிரலை துவக்க "
+"டிரேக்வட்ைட பயன்படுத்துங்கள்"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"சிடியை மாற்றவும்\n"
+"\n"
+"தயவுசெய்து \"%s\" என பெயரிடப்பட்ட நிறுவல் சிடியை சிடிராமில் வைக்கவும். வைத்தவுடன் சரி "
+"என்ற பொத்தானை கிளிக் செய்யவும்\n"
+"இந்த சிடி இல்ைலயென்றால் நீக்கு என்ற பொத்தானை கிளிக் செய்தால் இந்த சிடியிலிருந்து நிறுவல் "
+"நின்றுவிடும்"
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "இருக்கும் பொதிகள் பார்ைவயிடப்படுகின்றன"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"தயவுசெய்து உங்கள் பொதி தேர்ைவ ஒரு நெகிழ்வட்டில் சேமிக்கவும்.\n"
+"இவ்வாறு சேமிக்கும் முறை தானியங்கி-நிறுவலை ஒத்து இருக்கும்"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "ஏற்றி"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "சேமி"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "கோப்பை ஏற்று"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "நீங்கள் தேர்வு செய்துள்ள அளவு, இருக்குமிடத்ைத விட அதிகமாக உள்ளது"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "நிறுவல் முறை"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"நீங்கள் பொதி குழுக்கள் எதனையும் தேர்வு செய்யவில்ைல.\n"
+"தயவுசெய்து உங்களுக்கு தேவையானதை தேர்வு செய்யவும்"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "X உடன் வரைவியல்வழியிடல பயன்படுத்த இது தேவை"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "உதவி நூல்களுடன் (குறைந்தபட்சம் இது தேவை!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "மிகச்சிறிய நிறுவல்(urpmi கூட கிடையாது)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "அனைத்து"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "நிறுவுதல் தொடங்குகிறது"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "%s பொதி நிறுவப்படுகிறது"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "பொதிகளை அடுக்குவதில் பிழை நேர்ந்துள்ளது"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "தொடர்ந்து செல்லலாமா?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "பொதித் தேர்ைவச் சேமி"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "பொதிகளை நிறுவுவதில் பிழை நேர்ந்துள்ளது"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "நிறுவியபின் சேய்ய வேண்டிய வடிவமைப்புகள்"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "புதுப்பித்தல்கள்"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"இந்த பொதிகள் உங்கள் இயக்க நிரல் வெளியிட்ட பின் வெளிவந்தவை\n"
+"இவை பொதுவாக பிழைகளை நீக்கவும், பாதுகாப்பு குறைபாடுகளை\n"
+"நீக்கவும் வெளியிடப்பட்டவை \n"
+"\n"
+"இவற்ைற நிறுவ உங்களுக்கு நல்ல இணையத்ெதாடர்பு தேவை\n"
+"\n"
+"இவற்ைற நிறுவ விருப்பமா ?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "இணைப் பதிப்புதளங்களில் தற்ேபாதுள்ள பொதிகளை அறிய இணையதளம் தொடர்புகொள்ளப்படுகிறது"
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr ""
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "வன்பொருள்"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "ஒலியட்ைட"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "உங்களிடம் ISA ஒலியட்ைட ஏதேனும் உள்ளனவா?"
+
+#: steps_interactive.pm:811
+#, fuzzy, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr "\"sndconfig\" என்ற நிரல் மூலம் உங்கள் ஒலியட்ைடயை வடிவமைக்க முடியும்"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"ஒலியட்ைட ஏதும் கண்டுபிடிக்க முடியவில்ைல. டிரேக்வன்ெபாருள் மாயாவியை பயன்படுத்துங்கள்"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV அட்ைட"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "வரைவியல்வழி"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "வலையமைப்பும் இணையமும்"
+
+#: steps_interactive.pm:851
+#, fuzzy, c-format
+msgid "Proxies"
+msgstr "பயனர்குறிப்பு: "
+
+#: steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "configured"
+msgstr "மறுவடிவமை"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "பாதுகாப்பு நிலை"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "நெருப்புச்சுவர்"
+
+#: steps_interactive.pm:880
+#, fuzzy, c-format
+msgid "activated"
+msgstr "இப்போது துவக்கு"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "முடமாக்கப்பட்டுள்ளது"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "துவக்கம்"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s இல் %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "துவங்குநிரலை உருவாக்குகிறேன்..."
+
+#: steps_interactive.pm:977
+#, fuzzy, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr "தயவுசெய்து நிறுவுவதற்கு ஆங்கிலத்ைத பயன்படுத்துங்கள்"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "தயவுசெய்து நிறுவுவதற்கு ஆங்கிலத்ைத பயன்படுத்துங்கள்"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr "தயவுசெய்து நிறுவுவதற்கு ஆங்கிலத்ைத பயன்படுத்துங்கள்"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "வெற்று நெகிழ்வட்ைட %s இயக்கியில் உள்ளிடவும்"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "தானியங்கி நிறுவல்வட்ைட உருவாக்கவும்"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"சில செயல்கள் இன்னும் முடிக்கப்படவில்ைல\n"
+"\n"
+"நீங்கள் நிச்சயம் நிறுவுதலை விட்டு வெளியேற விரும்புகிறீர்களா?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "வாழ்த்துக்கள்"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "மறுெதாடக்கம்"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "தானியங்கி நிறுவல்வட்ைட உருவாக்கவும்"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"தானியங்கி நிறுவல்வட்டின் மூலம் நீங்கள் நிறுவலை ,\n"
+"முழுதும் தானாக நிறுவ வைக்கலாம்,\n"
+"இது இன்னும் பல கணினிகளில் இதே போல் நிறுவ,\n"
+"பயன்படலாம்,\n"
+",\n"
+"நீங்கள் மீண்டும் ஒருமுறை உங்கள் நிறுவலை மறு இயக்கம் செய்யலாம்,\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "மறு இயக்கம்"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "தானியங்கி"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "பொதித் தேர்ைவச் சேமி"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "உங்கள் மொழியைத் தேர்வுச் செய்க"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "அனுமதி"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "எலி"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "வன்தட்டு கண்டுபிடித்தல்"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "விசைப்பலகை"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "பாதுகாப்பு"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "வகிர் ெசய்தல்"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "நிறுவப்படுகிறது"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "நல்குாிமை"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "பயனர்கள்"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "வலையமைப்பு"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "துவங்குநிரல்"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "X-ஐ வடிவமைக்கவும்"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "உரை"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "சேவைகள்"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "புதுப்பித்தல்கள்"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "வெளிச்ெசல்"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d பொதிகள்"
+#~ msgstr[1] "%d பொதிகள்"
+
+#~ msgid "%d packages"
+#~ msgstr "%d பொதிகள்"
+
+#~ msgid "Language"
+#~ msgstr "உங்கள் மொழியைத் தேர்வுச் செய்க"
+
+#~ msgid "License"
+#~ msgstr "அனுமதி"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "நிறுவல் வகையைத் தேர்வுச் செய்க"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "கணக்கிடப்படுகிறது"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "நிறுவ வேண்டிய பொதிகளை தேர்வுச் செய்யுங்கள்"
+
+#~ msgid "Users"
+#~ msgstr "பயனர்கள்"
+
+#~ msgid "Networking"
+#~ msgstr "வலையமைப்பு"
+
+#~ msgid "Configure X"
+#~ msgstr "X-ஐ வடிவமைக்கவும்"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "உங்கள் கருவிற்கு இணையான கூறுகளை காணமுடியவில்ைல (%s கோப்ேபா கானவில்ைல), இதற்கு "
+#~ "அர்த்தம் நீங்கள் தவறான நிறுவுதட்ைட பயன்படுத்துகிறீர்கள் (தயவுசெய்து புதிய நிறுவுதட்ைட "
+#~ "உருவாக்குங்கள்)"
diff --git a/perl-install/install/share/po/tg.po b/perl-install/install/share/po/tg.po
new file mode 100644
index 000000000..0b0f9f49e
--- /dev/null
+++ b/perl-install/install/share/po/tg.po
@@ -0,0 +1,1643 @@
+# translation of DrakX-tg.po to Tajik
+# translation of DrakX-tg.po to Тоҷикӣ
+# Copyright (C) 2001,2002,2003,2004, 2005 Free Software Foundation, Inc.
+# 2004, infoDev, a World Bank organization
+# 2004, Khujand Computer Technologies, Inc.
+# 2004, KCT1, NGO
+# 2005, Youth Opportunities, NGO
+# Abrorova Hiromon, 2004
+# Roger Kovacs <rkovacs@khujand.org>, 2003.
+# Dilshod Marupov <dma165@hotmail.com>, 2003, 2004.
+# Murod Marupov <abdullovich@khujand.org>, 2004.
+# Bahromhon Bobojonov <bahrambabajanov@hotmail.com>, 2004.
+# Victor Ibragimov <youth_opportunities@tajikngo.org>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-tg\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2005-09-17 16:03+0500\n"
+"Last-Translator: Victor Ibragimov <youth_opportunities@tajikngo.org>\n"
+"Language-Team: Tajik\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Шумо боз дигар расонаи иловагиро доред?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Шабака (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Шабака (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Шабакаи (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL-и оина?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Барои ба даст даровардани рӯйхати қуттиҳои дастрас пайвастшавӣ ба Mandriva "
+"Linuxweb site ба роҳ монда шудааст..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Барои ба даст даровардани рӯйхати қуттиҳои дастрас пайвастшавӣ ба Mandriva "
+"Linuxweb site ба роҳ монда шудааст..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Оинаро интихоб намоед, ки аз он қуттиҳоро гирифта мешавад"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Танзими NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Феҳрист"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Пайдо кардани файли hdlist дар ин оина нашуда истодааст."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr ""
+"Ҷустуҷи бастаи барномаҳои аллакай коргузорӣ шуда иҷро шуда истодааст..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Ҷустуҷӯи қуттиҳо барои нав намудан иҷро мешавад..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Шумо хидматрасон(ҳо)и зеринро интихоб намудаед: %s\n"
+"\n"
+"\n"
+"Мувофиқи пешфарз ин хидматрасонҳо фаъол карда шудаанд. Онҳо ягон муаммоҳои\n"
+"маълуми бо бехатарӣ вобаста бударо надоранд, лекин муаммоҳои нав пайдо шуда\n"
+"метавонад. Дар ин ҳолат шумо бояд онҳоро бо қадри имкон ба таври фаврӣ нав\n"
+"намоед.\n"
+"\n"
+"\n"
+"Шумо дар ҳақиқат ин хидматрасонҳоро коргузорӣ карданӣ ҳастед?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Барои имконияти густариши системаи шумо бастаи барномаҳои зерин, хориҷ карда "
+"мешаванд: %s\n"
+"\n"
+"\n"
+"Дар ҳақиқат мехоҳед, ки ин бастаи барномаҳоро хориҷ кунед?\n"
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "- %s хориҷ карда шуд\n"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Шабака"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "Илтимос интихоб кунед"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Файл аллакай вуҷуд дорад. Истифода барем?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Рухсат инкор шуд"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "миёнаи иловашуда %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Сохтани экранаксҳо пеш аз тақсимкунӣ номумкин"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "ЭкранАксҳо баъд аз коргузориш дар %s дастрас мешаванд"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Коргузорӣ шуда истодааст"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Батанзимдарорӣ"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Шумо бояд %s-ро шаклбандӣ намоед"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Якчанд сахтафзор дар компютери шумо барои кор кардан ба ронандаҳои ``худ'' "
+"мӯҳтоҷ аст.\n"
+"Шумо ахборотро оиди онҳо дар %s ёфта метавонед"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Шабака оварда мешавад"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Шабака фаромада истодааст"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "Файлҳо фиристода шуда истодааст..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "Муаяйнкунӣ дар раванди иҷроиш қарор дорад"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "бояд дошта бошад"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "ҳатмӣ"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "хеле хуб"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "хуб"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "мумкин аст"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "НамоишиGwen"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Истгоҳи корӣ"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Истгоҳи Кории Идораӣ"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Барномаҳои идорӣ: пардозандаҳои матнӣ (OpenOffice.org Writer, Kword), "
+"ҷадвалҳои густурда (OpenOffice.org Calc, Kspread), азназаргузарҳои PDF ва "
+"ғайра"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Барномаҳои идораӣ: пардозандаи матнӣ (kword, abiword), ҷадвалҳои густурда "
+"(kspread, gnumeric), pdf баррасҳо ва ғайра"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Истгоҳи бозӣ"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Барномаҳои шавқовар: аркадаҳо, бозиҳои рӯи мизӣ, стратегия ва ғайра"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Истгоҳи бисёрмуҳита"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Барномаҳо барои бозикунии/таҳрири овоз ва видео"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Истгоҳи Интернет"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Маҷмӯи асбобҳо барои хондан ва фиристодани пост ва ахборот (mutt, tin..) ва "
+"баррасии Web"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Компютери Шабакавӣ (мизоҷ)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Мизоҷон барои қарордодҳои гуногун, аз он ҷумла ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Асбобҳо барои осоннамоии танзими компютери шумо"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Асбобҳои Нозиргоҳ"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Муҳаррирон, пардозандаи фармонҳо, асбобҳои файлӣ, поёнаҳо"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Коркард"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Китобхонаи коркарди C ва C++, барномаҳо ва файлҳои дохилшаванда"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Санадсозӣ"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Китобҳо ва Чӣ тавр дар Linux ва Таъминоти Барномавии Озод"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Манбаи Низоммеъёри Linux. Пуштибонии замимаҳои коргардонони сеюм"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Хидматгори Веб"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Хидматрасони Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Фейрвол/Масиргузор"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Даричаи тадохули Интернет"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Пост/Ахборот"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Хидматрасони постии Postfix, Inn хидматрасони ахборотӣ"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Хидматрасони Феҳрист"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Хидматрасони FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Номи Доменӣ ва Хидматрасони Ахбороти Шабакавӣ"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Хидматрасони Истифодабарандаи Файл ва Чопгар"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "Хидматрасони NFS, хидматрасони Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Манбаи маълумот"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL ва MySQL Хидматрасони Манбаи Додаҳо"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Пост"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Хидматрасони пости Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Хидматрасони манбаи маълумоти PostgreSQL ё MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Хидматрасони Компютери Шабакавӣ"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS хидматрасон, SMB хидматрасон, Proxy хидматрасон, ssh хидматрасон"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Муҳити Графикӣ"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Истгоҳи кории KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K Муҳити Мизи Корӣ, ин муҳити графикии асосӣ бо маҷмӯи асбобҳои ҳамроҳкунанда"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Истгоҳи кории Gnome"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Муҳити графикӣ бо маҷмӯи замимаҳо ва мизи кории бо корванд иртиботи дӯстона "
+"дошта"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Мизи Кории Ғалатёб"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Дигар Мизҳои Кории Графикӣ"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ва ғайра"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Дастгоҳҳо"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Хидматгори SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Батанзимдарори Хидматрасони Дурдасти Webmin"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Дастгоҳҳои Шабака/Дидабонӣ"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Дидабонии асбобҳо, ҳисоботи ҷараёнҳо, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Устодҳои Mandriva"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Устод барои танзимдарории хидматрасон"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Хатогие пайдо шуд, аммо ман намедонам, ки чӣ тавр онро дуруст кор карда "
+"бароям.\n"
+"Мувофиқи таваккали худ давом диҳед."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Баъзе бастаи барномаҳои муҳим дуруст коргузорӣ нашудаанд.\n"
+"Ё гардонандаи cdrom ё диски фишурда хароб гаштаанд.\n"
+"Диски дар компютер гузошташударо ба воситаи фармони \"rpm -qpl media/main/*."
+"rpm санҷед\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Гузориш ба қадами `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Коргузории Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> байни элементҳо"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Дар системи шумо захира кам аст. Ҳангоми коргузорӣ намудани Mandriva Linux "
+"шумо метавонед бо муаммоҳо дучор гардед. Агар ин рӯй диҳад, онгоҳ шумо "
+"метавонед коргузории матниро ба амал оред. Ҳангоми худборкунии CDROM ба`F1' "
+"ангушт занед ва сониян ба `text' дохил шавед."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Интихоби Гурӯҳи Қуттиҳо"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Интихоби қуттиҳои алоҳида"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Андозаи умумӣ: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Қуттии бад"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Нусха: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Ҳаҷм: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d Кб\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Ҳатмӣ: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Шумо интихоб/рад кардани ин бастаи барномаҳоро, карда наметавонед"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "мувофиқи мавҷуд набудани %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "аз сабаби %s-и қонеънагашта"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "барои пешравӣ кӯшиш намудан %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "Барои нигоҳ доштани %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Шумо ин қуттиро интихоб карда наметавонед, зеро барои кор гузоштани он ҷой "
+"кофӣнест"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Қуттиҳои зерин коргузорӣ хоҳад шуд"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Қуттиҳои навбатӣ бояд хориҷ гардад"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Ин қуттии зарур мебошад, онро бекор карда намешавад"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr ""
+"Шумо интихоби ин бастаи барномаҳоро рад карда наметавонед. Он аллакай "
+"коргузорӣ шудааст"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Шумо интихоби ин қуттиро бекор карда наметавонед. он бояд нав гардад"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Ба таври автоматӣ қуттиҳои интихобшударо нишон диҳед"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Коргузоштан"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "Интихоби қуттӣ"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Интихоби қуттиҳо нав карда мешавад"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Коргузории хурдтарин"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Идоракунии Нармафзор"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Бастаи барномаҳоеро, ки коргузорӣ кардан мехоҳед, интихоб намоед"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Коргузорӣ шуда истодааст"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Тафсилот нест"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Вақти боқимонда "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Баҳодиҳии тахминӣ"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d қуттиҳо"
+msgstr[1] "%d қуттиҳо"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Ҷамбаст"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Танзим додан"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "танзимдода нашуда"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Расонаҳои коргузории зерин пайдо карда шудаанд.\n"
+"Агар баъзеи онҳоро партофтан хоҳед, онҳоро дар айни замон интихоб накарда "
+"метавонед."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Хатогӣ рух дод"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Лутфан, ороиши забонакро интихоб кунед."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Дар ин ҷо рӯйхати пурраи забонакҳои имконпазир дода шудааст"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Кор гузоштан/Афзоиш додан"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Ин коргузорӣ аст ё навсозӣ?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Афзоиш %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Дагмаи рамздошта барои %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE ба танзим дароварда мешавад"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Ҷои холӣ барои барномаи худборшавии 1МБ кофӣ нест! Коргузорӣ давом хоҳад "
+"кард, аммо барои худборшавии систем ба шумо лозим аст, то ки қисми "
+"худборшавии авваларо дар DiskDrake офаред"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Ба шумо лозим аст, ки худборшавии аввали PPC PReP Boot-ро офаред! Коргузорӣ "
+"давом хоҳад кард, аммо барои худборшавии систем ба шумо лозим аст, то ки "
+"қисми худборшавии авваларо дар DiskDrake офаред"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Диски Фишурдаи худро иваз кунед!\n"
+"\n"
+"Марҳамат карда Cd-Rom-и нишонааш \"%s\"-ро ба гардонандаи худ ҷойгир кунед "
+"ва баъд Ok-ро пахш кунед.\n"
+"Агар шумо онро надошта бошед, барои радкунии коргузорӣ аз ин Cd-Rom, Бекор "
+"карданро пахш кунед."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Қуттиҳои дастрасшаванда ҷустуҷӯ карда мешавад..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Лутфан интихоби кор андохтан ё нигоҳ доштанро дар дискет ба роҳ монед.\n"
+"Шаклбандӣ ҳамон хел аст ҳамчун дискетҳое ки бо auto_install офарида шудааст."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Боркунӣ"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Нигоҳ доштан"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "Пурбокунии файлҳо"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Андозаи интихобшуда аз ҷои дастрасшуда зиёд аст"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Навъи коргузорӣ"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Шумо ягон гурӯҳи қуттиҳоро интихоб накардед.\n"
+"Лутфан, коргузории пастарини дилхоҳатонро интихоб намоед:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Бо X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Бо санадсозии асосӣ (маслиҳат дода мешавад!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Дар ҳақиқат коргузории хурдтарин (алалхусус ғайри urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Ҳама"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Коргузорӣ тайёр шуда истодааст"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr ""
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Ҳангоми ба даст даровардани қуттиҳо хатогие рӯй дод:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Ба ҳар ҳол давом диҳам?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Интихоби қуттиҳоро нигоҳ доштан"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Ҳангоми коргузории қуттиҳо хатогӣ пайдо гардид:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Баъд аз пайкарабандӣ коргузорӣ мегардад"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Нав кардан"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Акнун шумо имкон доред, то ки қуттиҳои навшударо фаровир намоед. Ин "
+"қуттиҳои\n"
+"мазкур баъди ба амал овардани тақсимот нав карда шуда буд. Онҳо метавонад\n"
+"собитҳоро барои бехатарӣ ё ин ки хатогиҳо дошта бошад.\n"
+"\n"
+"Барои ба амал овардани фаровир ба шумо лозим аст, то ки алоқаи ҳозираи "
+"интернетро\n"
+"истифода баред.\n"
+"\n"
+"Оё шумо хоҳиши коргузорӣ намудани ин навигариҳо ҳастед?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"Пайвастшавӣ ба оина барои гирифтани рӯйхати қуттиҳои дастрас иҷро мешавад..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Имконияти пайвастшавӣ бо оинаи %s мавҷуд нест"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Сахтафзор"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Корти овоздор"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Шумо карти садои ISA доред?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Барои батанзимдарории корти овозии шумо баъди коргузорӣ \"alsaconf\" ё "
+"\"sndconfig\"-ро корандозӣ намоед"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Корти овозӣ муайян нагардид. \"harddrake\"-ро баъди коргузорӣ кӯшиш намоед"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV корт"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Интерфейси графикӣ"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Шабака ва Интернет"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Боваринок"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "танзимшуда"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Сатҳи Амният"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Фейрвол"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "фаъолшуда"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "ғайрифаъол"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Boot"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s дар %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Шумо X-ро ба танзим надаровардаед. Шумо дар ҳақиқат инро мехоҳед?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Корандози худборшави аввала тайёр мешавад..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Зоҳиран шумо World-и Кӯҳна ё мошинаи номаълумро доред, корандози худборшави "
+"yaboot барои шумо кор намекунад. Коргузорӣ давом хоҳад кард, вале шумо бояд "
+"BootX ё ин ки воситаҳои дигарро барои худборшавии мошини худ истифода баред. "
+"Нишонванди ҳаста барои решаи fs ин: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Мехоҳед, ки aboot-ро истифода баред?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Хатогии коргузории aboot, \n"
+"бо мақсади тезонидани коргузорӣ кӯшиш намудан, ҳатто агар ин қисми якумро "
+"нобуд созад?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Дар ин сатҳи бехатарӣ дастрасӣ ба файлҳо дар қисматҳои Windows таҳо ба "
+"идоракунанда иҷозат дода мешаванд."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Дискети холиро ба гардон дохил намоед %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Диски нарми худкоргузорӣ офарида шуда истодааст..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Якчанд марҳила ба итмом нарасидааст.\n"
+"\n"
+"Шумо дар ҳақиқат баромадан мехоҳед?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Табрикот"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Бозхудборшавӣ"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Дискети коргузории автоматиро офаридан"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Мувофиқи хоҳиш коргузории автоматӣ мумкин ба таври\n"
+"пурра автоматикона мешавад\n"
+"дар ин ҳолат он диски сахтро нусхабардорӣ хоҳад намуд!!\n"
+"(ба коргузорӣ намудан ба дигар компютер пешбинӣ шудааст).\n"
+"\n"
+"Мумкин, шумо коргузории такрориро афзалтар шуморед.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Такрор намудан"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Автоматикунонида"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Интихоби қуттиҳоро нигоҳ доштан"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Забон"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Лисензия"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Муш"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Муаяйн намудани ронандаи сахт"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Забонак"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Амният"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Ҷузъбандӣ"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Коргузорӣ шуда истодааст"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Аслшиносӣ"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Корвандҳо"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Шабака"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Корандози худборшав"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Танзими X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Ҷамбаст"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Хидматрасонҳо"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Нав кардан"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Хуруҷ"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d қуттиҳо"
+#~ msgstr[1] "%d қуттиҳо"
+
+#~ msgid "%d packages"
+#~ msgstr "%d қуттиҳо"
+
+#~ msgid "Language"
+#~ msgstr "Забон"
+
+#~ msgid "License"
+#~ msgstr "Лисензия"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Интихоби синфи коргузорӣ"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Баҳодиҳии тахминӣ"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Барои коргузорӣ қуттиҳоро интихоб намоед"
+
+#~ msgid "Users"
+#~ msgstr "Корвандҳо"
+
+#~ msgid "Networking"
+#~ msgstr "Шабака"
+
+#~ msgid "Configure X"
+#~ msgstr "Танзими X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Иҷозат барои дастёбӣ ба модули ҳаста, ки ба ҳастаи шумо мутобиқат мекунад "
+#~ "(файли %s партофта шудааст), гирифта нашуда истодааст, одатан ин маънои "
+#~ "онро дорад, ки диски нарми худборшавии шумо бо миёнаи Коргузорӣ ҳамзамон "
+#~ "карда нашудааст (марҳамат карда диски нарми худборшавии навтар офаред)"
diff --git a/perl-install/install/share/po/th.po b/perl-install/install/share/po/th.po
new file mode 100644
index 000000000..e28af886f
--- /dev/null
+++ b/perl-install/install/share/po/th.po
@@ -0,0 +1,1542 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# Wachara Chinsettawong <wachara@yahoo.com>, 2001
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2001-09-10 14:24GMT+7\n"
+"Last-Translator: Wachara Chinsettawong <wachara@yahoo.com>\n"
+"Language-Team: Thai <th@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.9.5\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "คุณมีอันอื่นๆอีกหรือไม่?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "ซีดี-รอม"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "Network interface"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "Network interface"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, fuzzy, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr "กำลังติดต่อกับมิลเรอร์ไซต์เพื่อหารายการของแพ็คเก็จที่มีให้"
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr "กำลังติดต่อกับมิลเรอร์ไซต์เพื่อหารายการของแพ็คเก็จที่มีให้"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "เลือกมิลเรอร์ไซต์ที่จะใช้ในการดาวน์โหลดแพ็คเก็จ"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "สารบัญ"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Adapter %s: %s"
+
+#: any.pm:376
+#, fuzzy, c-format
+msgid "Looking at packages already installed..."
+msgstr "คุณไม่สามารถไม่เลือกแพกเกจนี้เพราะมันได้ถูกติดตั้งไปแล้ว"
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "กำลังหาแพ็คเก็จที่จะทำการอัพเกรด"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "แพ็คเก็จเหล่านี้กำลังจะถูกติดตั้ง"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "ระบบเครือข่าย"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "กรุณาเลือก"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "ไฟล์มีอยู่แล้ว ต้องการใช้?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "สิทธิการทำงานถูกปฎิเสท"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "อุปกรณ์ที่ถูกเพิ่มเข้ามา %s"
+
+#: any.pm:1294
+#, fuzzy, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "โปรแกรมไม่สามารถเพิ่มพาร์ติชั่นได้อีก"
+
+#: any.pm:1301
+#, fuzzy, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "คุณสามารถเลือกภาษาอื่นซึ่งจะสามารถใช้ได้หลังติดตั้ง"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "กำลังติดตั้ง"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "ปรับแต่งค่า"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr ""
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"hardware บางชนิดต้องการ driver พิเศษ\n"
+"คุณสามารถหาข้อมูลได้จาก: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "ระบบเน็ตเวิร์กกำลังจะทำงาน"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "ระบบเน็ตเวิร์กกำลังจะหยุดทำงาน"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "บันทึกลงไฟล์"
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "ค้นหาเจอบน port %s"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "ต้องมี"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "สำคัญ"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "ดีมาก"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "ดี"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "อาจจะ"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr ""
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, fuzzy, c-format
+msgid "Workstation"
+msgstr "Workstation ที่ทำงาน"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Workstation ที่ทำงาน"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:33
+#, fuzzy, c-format
+msgid "Game station"
+msgstr "Workstation ที่ทำงาน"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:37
+#, fuzzy, c-format
+msgid "Multimedia station"
+msgstr "Multimedia - เขียน CD "
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:43
+#, fuzzy, c-format
+msgid "Internet station"
+msgstr "การเชื่อมต่อกับ Internet แบบ sharing"
+
+#: share/meta-task/compssUsers.pl:44
+#, fuzzy, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr "เครื่องมือในการอ่านและส่ง mail และ news (pine, mutt, tin..) และท่องอินเตอร์เน็ต"
+
+#: share/meta-task/compssUsers.pl:49
+#, fuzzy, c-format
+msgid "Network Computer (client)"
+msgstr "เครื่องพิมพ์ในระบบ Network (Socket)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Clients for different protocols including ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "เครืองมือที่ช่วยในการปรับแต่งเครื่องชองคุณให้ง่ายขึ้น"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "พัฒนาซอฟท์แวร์ (Development)"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "คู่มือ"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:84
+#, fuzzy, c-format
+msgid "Web Server"
+msgstr "เซิร์ฟเวอร์"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:88
+#, fuzzy, c-format
+msgid "Groupware"
+msgstr "เวิร์กกรุ๊ป (workgroup)"
+
+#: share/meta-task/compssUsers.pl:89
+#, fuzzy, c-format
+msgid "Kolab Server"
+msgstr "เซิร์ฟเวอร์ NIS"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, fuzzy, c-format
+msgid "Internet gateway"
+msgstr "การติดต่อ internet"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/ไฟล์/_ใหม่"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "ชื่อเซิร์ฟเวอร์ของพรินเตอร์"
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "เรียกคืนจากแผ่นฟล้อปปี้"
+
+#: share/meta-task/compssUsers.pl:104
+#, fuzzy, c-format
+msgid "FTP Server"
+msgstr "เซิร์ฟเวอร์ NIS"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, fuzzy, c-format
+msgid "DNS/NIS"
+msgstr "ใช้ NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, fuzzy, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "ชื่อโดเมน"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "ชื่อเซิร์ฟเวอร์ของพรินเตอร์"
+
+#: share/meta-task/compssUsers.pl:113
+#, fuzzy, c-format
+msgid "NFS Server, Samba server"
+msgstr "เซิร์ฟเวอร์ NIS"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "ฐานข้อมูล"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "จดหมาย"
+
+#: share/meta-task/compssUsers.pl:126
+#, fuzzy, c-format
+msgid "Postfix mail server"
+msgstr "ชื่อเซิร์ฟเวอร์ของพรินเตอร์"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:137
+#, fuzzy, c-format
+msgid "Network Computer server"
+msgstr "เครื่องพิมพ์ในระบบ Network (Socket)"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "การทำงานแบบกราฟฟิก"
+
+#: share/meta-task/compssUsers.pl:146
+#, fuzzy, c-format
+msgid "KDE Workstation"
+msgstr "Workstation ที่ทำงาน"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:151
+#, fuzzy, c-format
+msgid "GNOME Workstation"
+msgstr "Workstation ที่ทำงาน"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "พื้นที่ทำงาน"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Graphical Desktops อื่นๆ"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "อรรถประโยชน์"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, fuzzy, c-format
+msgid "SSH Server"
+msgstr "เซิร์ฟเวอร์ NIS"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "อุปกรณ์"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "การคอนฟิก Internet"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "การคอนฟิกระบบเน็ตเวิร์ก"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "Control Center"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "การคอนฟิกเครื่องพิมพ์"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"มีความผิดพลาดเกิดขึ้น แต่โปรแกรมไม่สามารถแก้ไขได้\n"
+"หากทำงานต่ออาจเกิดความเสียหายได้"
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"แพ็กเกจสำคัญบางอย่างไม่ได้ถูกติดตั้งอย่างเรียบร้อย\n"
+"cdrom หรือ cdrom drive ของคุณอาจมีการเสียหาย\n"
+"กรุณาตรวจสอบ cdrom ในเครื่องคอมพิวเตอร์ที่มีการติดตั้งแล้ว\n"
+"โดยใช้ \"rpm -qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "เข้าสู่ขั้นตอน `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "การติดตั้งลีนุกซ์-แมนเดรก %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> ระหว่างตัวเลือก"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"เครื่องของคุณมีทรัพยากรค่อนข้างต่ำคุณอาจมีปัญหาติดตั้ง \n"
+"Mandriva Linux ถ้าเป็นเช่นนั้น กรุณาทดลองติดตั้งแบบ text \n"
+"กรุณากด F1 ขณะ boot จาก cdrom แล้วพิมพ์ text"
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "เลือกกลุ่มแพ็คเก็จ"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Individual package selection"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "ขนาดรวม: %d / %d MB "
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "แพ็คเก็จชำรุด"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "เวอร์ชัน:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "ขนาด:"
+
+#: steps_gtk.pm:316
+#, fuzzy, c-format
+msgid "%d KB\n"
+msgstr "ขนาด: %d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "ความสำคัญ:"
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "คุณไม่สามารถเลือก/ไม่เลือกแพกเกจนี้"
+
+#: steps_gtk.pm:355
+#, fuzzy, c-format
+msgid "due to missing %s"
+msgstr "ไม่มี kdesu "
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr ""
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr ""
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr ""
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "คุณไม่สามารถเลือก package นี้เนื่องจากคุณมีพื้นที่ไม่เพียงพอ"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "แพ็คเก็จเหล่านี้กำลังจะถูกติดตั้ง"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "แพ็คเก็จเหล่านี้กำลังจะถูกลบ"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "นี่คือแพกเกจที่ต้องติดตั้ง ไม่สามารถไม่เลือก"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "คุณไม่สามารถไม่เลือกแพกเกจนี้เพราะมันได้ถูกติดตั้งไปแล้ว"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "คุณไม่สามารถไม่เลือกแพกเกจนี้ มันจำเป็นที่จะต้องถูก upgrade"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr ""
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "ติดตั้ง"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "เลือกกลุ่มแพ็คเก็จ"
+
+#: steps_gtk.pm:406
+#, fuzzy, c-format
+msgid "Updating package selection"
+msgstr "บันทึกกลุ่มแพ็คเก็จที่เลือก"
+
+#: steps_gtk.pm:411
+#, fuzzy, c-format
+msgid "Minimal install"
+msgstr "ออกจากการติดตั้ง"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "การบริหารโปรแกรม"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "เลือกแพ็คเก็จที่คุณต้องการติดตั้ง"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "กำลังติดตั้ง"
+
+#: steps_gtk.pm:468
+#, fuzzy, c-format
+msgid "No details"
+msgstr "รายละเอียด"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "เวลาที่เหลือ "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "การประเมิน"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "แพ็คเก็จ %d ชุด"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "รวมความ"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "การปรับแต่ง"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "not configured"
+msgstr "คอนฟิกใหม่"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "มีปัญหาเกิดขึ้น"
+
+#: steps_interactive.pm:97
+#, fuzzy, c-format
+msgid "Please choose your keyboard layout."
+msgstr "คุณต้องการเลือกคีย์บอร์ดเลย์เอ้าท์แบบใด "
+
+#: steps_interactive.pm:99
+#, fuzzy, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "ต่อไปนี้คือ keyboard ที่ใช้ได้"
+
+#: steps_interactive.pm:128
+#, fuzzy, c-format
+msgid "Install/Upgrade"
+msgstr "ติดตั้ง/อัพเกรด "
+
+#: steps_interactive.pm:129
+#, fuzzy, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "นี่เป็นการติดตั้งหรือการอัพเกรด"
+
+#: steps_interactive.pm:135
+#, fuzzy, c-format
+msgid "Upgrade %s"
+msgstr "Update"
+
+#: steps_interactive.pm:148
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "รหัสผ่านไม่เหมือนกัน"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "คอนฟิก IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"เปลี่ยน CD-ROM\n"
+"\n"
+"กรุณาใส่ CD-ROM \"%s\" และกด OK\n"
+"ถ้่าคุณไม่มี กรุณากด ยกเลิก (cancel) เพื่อหลีกเลี่ยงการติดตั้งจาก CD-ROM นี้"
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "กำลังหาแพ็คเก็จที่มีอยู่"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "โหลด"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "บันทึก"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "เปิดแฟ้ม"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr ""
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr ""
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr ""
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr ""
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "ทั้งหมด"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "กำลังเตรียมการติดตั้ง"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "กำลังติดตั้งแพ็คเก็จ %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "มีปัญหาการลำดับของแพ็คเก็จ:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "ทำงานต่อหรือไม่?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "บันทึกกลุ่มแพ็คเก็จที่เลือก"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "มีปัญหาการติดตั้งของแพ็คเก็จ:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "การคอนฟิกหลังการติดตั้ง"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr ""
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "กำลังติดต่อกับมิลเรอร์ไซต์เพื่อหารายการของแพ็คเก็จที่มีให้"
+
+#: steps_interactive.pm:666
+#, fuzzy, c-format
+msgid "Unable to contact mirror %s"
+msgstr "ไม่สามารถ forkได้.%s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "ฮาร์ดแวร์"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Sound card"
+
+#: steps_interactive.pm:809
+#, fuzzy, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "คุณมีอันอื่นๆอีกหรือไม่?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV card"
+
+#: steps_interactive.pm:833
+#, fuzzy, c-format
+msgid "Graphical interface"
+msgstr "ให้เป็นกราฟฟิคเมื่อเริ่มต้น"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "เน็ตเวิร์คกับอินเตอร์เน็ต"
+
+#: steps_interactive.pm:851
+#, fuzzy, c-format
+msgid "Proxies"
+msgstr "Profile: "
+
+#: steps_interactive.pm:852
+#, fuzzy, c-format
+msgid "configured"
+msgstr "คอนฟิกใหม่"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "ระดับความปลอดภัย"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr ""
+
+#: steps_interactive.pm:880
+#, fuzzy, c-format
+msgid "activated"
+msgstr "แอ็คทีฟ"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "ไม่ใช้งาน"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "บู๊ต"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s บน %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "กำลังเตรียมบูตโหลดเดอร์"
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "คุณต้องการใช้ aboot หรือไม่"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"การติดตั้ง aboot ล้มเหลว\n"
+"พยายามติดตั้งถึงแม้พาติชั่นแรกอาจจะเสียหาย?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "ให้ใส่แผ่นฟล้อปปี้ลงในไดรว์ %s "
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "กำลังเตรียมการติดตั้งลงบน floppy"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"ขั้นตอนบางขั้นตอนไม่สมบูรณ์\n"
+"\n"
+"คุณต้องการออกจากการติดตั้งจริงๆหรือไม่?"
+
+#: steps_interactive.pm:1055
+#, fuzzy, c-format
+msgid "Congratulations"
+msgstr "ขอแสดงความยินดี"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr ""
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "สร้างfloppyสำหรับการติดตั้งแบบออโตเมติก"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"การติดตั้งแบบออโตเมติกสามารถทำงานแบบเต็มรูปแบบหากต้องการ\n"
+"ในกรณีนั้นมันจะใช้ harddisk ทั้งหมด\n"
+"(มันเหมาะกับการติดตั้งบนเครื่องอื่น)\n"
+"คุณอาจอยากกลับไปเริ่มต้นติดตั้งใหม่\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "เรียกอีกครั้ง"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "อัตโนมัติ"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "บันทึกกลุ่มแพ็คเก็จที่เลือก"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "เลือกภาษาที่คุณใช้"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "สัญญาอนุญาต"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Mouse"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "การตรวจหาฮาร์ดไดรว์"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "คีย์บอร์ด"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "ระบบความป้องกัน"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr ""
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "กำลังติดตั้ง"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "การตรวจสอบสิทธิ์การใช้งาน"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "ผู้ใช้"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "ระบบเครือข่าย"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr ""
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "คอนฟิกระบบ X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "รวมความ"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "บริการ"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr ""
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "เลิกทำงาน"
+
+#~ msgid "%d packages"
+#~ msgstr "แพ็คเก็จ %d ชุด"
+
+#~ msgid "Language"
+#~ msgstr "เลือกภาษาที่คุณใช้"
+
+#~ msgid "License"
+#~ msgstr "สัญญาอนุญาต"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "เลือกชุดการติดตั้ง"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "การประเมิน"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "เลือกแพ็คเก็จ"
+
+#~ msgid "Users"
+#~ msgstr "ผู้ใช้"
+
+#~ msgid "Networking"
+#~ msgstr "ระบบเครือข่าย"
+
+#~ msgid "Configure X"
+#~ msgstr "คอนฟิกระบบ X"
diff --git a/perl-install/install/share/po/tl.po b/perl-install/install/share/po/tl.po
new file mode 100644
index 000000000..626ad632f
--- /dev/null
+++ b/perl-install/install/share/po/tl.po
@@ -0,0 +1,1628 @@
+# translation of DrakX-tl.po to Filipino
+# translation of DrakX.po to Filipino
+# Copyright (C) 2004 Free Software Foundation, Inc.
+# Arys P. Deloso <arys@deloso.org>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-tl\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2004-09-15 13:35+0200\n"
+"Last-Translator: Arys P. Deloso <arys@deloso.org>\n"
+"Language-Team: Filipino <salinpinoy@comitus.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Mayroon ba kayong isa pa?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "Network %s"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "Network %s"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Nakikipag-alam sa web site ng Mandriva Linux para makuha ang talaan ng mga "
+"available na mirror..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Nakikipag-alam sa web site ng Mandriva Linux para makuha ang talaan ng mga "
+"available na mirror..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Pumili ng mirror kung saan kukunin ang mga package"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Directory"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Hindi mahanap ang %s sa %s"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Naghahanap ng mga package na naka-install..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Naghahanap ng mga package na i-a-upgrade..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Pinili ninyo ang mga sumusunod na mga server: %s\n"
+"\n"
+"\n"
+"Bilang default, ang mga server ay papaganahin. Wala silang kilalang "
+"problema\n"
+"sa seguridad, pero ilang mga bago ay maaaring makita. Kung gayon, dapat\n"
+"ninyong tiyakin na mag-upgrade ng pinakamaagap.\n"
+"\n"
+"\n"
+"Gusto ninyo talagang i-install ang mga server na ito?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Ang mga sumusunod na mga package ay tatanggalin upang ma-upgrade ang inyong "
+"sistema: %s\n"
+"\n"
+"\n"
+"Gusto ninyo ba talagang tanggalin ang mga package na ito?\n"
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "- %s ay tinanggal\n"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr ""
+
+#: any.pm:1140
+#, fuzzy, c-format
+msgid "FTP"
+msgstr "gFTP"
+
+#: any.pm:1140
+#, fuzzy, c-format
+msgid "NFS"
+msgstr "PFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Network"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "Pumili ka"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Mayroon ng file. Gamitin ito?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Pahintulot ipinagkaila"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "idinagdag ang medium na %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Hindi makagawa ng mga screenshot bago mag-partisyon"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Ang mga screenshot ay magiging available matapos ang install sa %s"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Nag-i-install"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Configuration"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Dapat ninyo ring i-format ang %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Ilang hardware sa inyong computer ay nangangailangan ng ``proprietary'' (may "
+"nagmamay-ari) na driver para gumana.\n"
+"Makakahanap kayo ng ilang inpormasyon tungkol sa kanila sa: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Ginagawang \"up\" ang network"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Ginagawang \"down\" ang network"
+
+#: media.pm:697 media.pm:706
+#, fuzzy, c-format
+msgid "Downloading file %s..."
+msgstr "Ipinapadala ang mga file..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "Tumatakbo ang pagtitiktik"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "dapat magkaroon"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "importante"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "masyadong mainam"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "mainam"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "baka sakali"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Workstation"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Pang-opisina na Workstation"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Mga pang-opisinang program: mga wordprocessor (OpenOffice.org Writer, "
+"Kword), mga spreadsheet (OpenOffice.org Calc, Kspread), mga pdf viewer, etc"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Mga pang-opisinang program: mga wordprocessor (kword, abiword), mga "
+"spreadsheet (kspread, gnumeric), mga pdf viewer, etc"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Pang-laro na istasyon"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Mga nakakalibang na program: arcade, mga board game, strategy, etc"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Pang-multimedia na istasyon"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Mga program na pang-play/edit ng tunog, musika at video"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Pang-internet na istasyon"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Kumpol ng mga kagamitang pangbasa at pangsulat ng mail at news (mutt, tin..) "
+"at pang-browse ng Web"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Network Computer (client)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Mga client para sa iba't-ibang mga protocol kasama ang ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Kagamitang pangpadali ng configuration ng inyong computer"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Kagamitang Pang-Console"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Mga editor, shell, file tool, terminal"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Paglinang (Development)"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "mga C at C++ development library, program at include file"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Dokumentasyon"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Mga Libro at Howto tungkol sa Linux at Free Software"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Suporta para sa mga third party application"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Web Server"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab Server"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Firewall/Router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internet gateway"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/File/_Bago"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix mail server"
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "Directory Kung Saan Kukunin ang Ibabalik"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP Server"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, fuzzy, c-format
+msgid "DNS/NIS"
+msgstr "DNS"
+
+#: share/meta-task/compssUsers.pl:109
+#, fuzzy, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Domain Name Server"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Printer Server"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS server, Samba server"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Database"
+
+#: share/meta-task/compssUsers.pl:117
+#, fuzzy, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL o MySQL database server"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Mail"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix mail server"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL o MySQL database server"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Network Computer server"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS server, SMB server, Proxy server, ssh server"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Graphical na Kapaligiran"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE Workstation"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"Ang K Desktop Environment, ang pinakabatayang graphical environment na may "
+"koleksyon ng mga kasabay na kagamitan"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME Workstation"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Isang graphical environment na may kumpol ng mga user-friendly (madaling "
+"gamitin) na application at kagamitang pang-desktop"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Desktop"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Ibang Mga Graphical Desktop"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+
+#: share/meta-task/compssUsers.pl:183
+#, fuzzy, c-format
+msgid "Utilities"
+msgstr "Philippines"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH Server"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "Webcam"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Configuration ng Terminal Server"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Pagmo-monitor ng Network"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "<b>Mandriva Store</b>"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "Nabigong i-configure ang printer na \"%s\"!"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"May \"error\" na nangyari, pero hindi ko alam kung paano ayusin\n"
+"ng maganda. Mapanganib magpatuloy."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Ilang importanteng mga package ay hindi na-install ng maayos.\n"
+"May depekto ang inyong CD-ROM drive o ang inyong CD-ROM.\n"
+"Suriin ang CD-ROM sa naka-install nang computer gamit ang \"rpm -qpl media/"
+"main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Pumpasok sa hakbang na `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Pag-install ng Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> pagitan ng mga elemento"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Ang inyong sistema mababa sa kakayahan. Maaari kayong magkaproblema\n"
+"sa pag-install ng Mandriva Linux. Kung mangyari ito, maaari ninyong subukan\n"
+"ang \"text install\". Para dito, pindutin ang `F1' kapag nagbo-boot sa "
+"CDROM,\n"
+"at ipasok ang `text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Pagpili ng Pangkat ng mga Package"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Isa-isang pagpili ng package"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Kabuuang laki: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Sirang package"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Version: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Laki: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Kahalagahan: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Maaari ninyong piliin/di-piliin ang package na ito"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "dahil sa nawawalang %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "dahil sa hindi na-satisfy na %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "sinusubukang i-promote ang %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "para maitago ang %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Hindi ninyo maaaring piliin ang package na ito dahil walang sapat na puwang"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Ang mga sumusunod na package ay ii-install"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Ang mga sumusunod na package ay tatanggalin"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Ito ay kinakailangang package, hindi ito maaring di-piliin"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Hindi ninyo maaaring di-piliin ang package na ito. Naka-install na ito"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr ""
+"Hindi ninyong maaaring di-piliin ang package na ito. Dapat i-upgrade ito"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Ipakita kaagad ang mga napiling package"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "I-install"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "Pagpili ng package"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Ina-update ang pagpili ng package"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Maliitang install"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Pangangasiwa ng Software"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Piliin ang mga package na gusto ninyong i-install"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Nag-i-install"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Walang detalye"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Nalalabing oras "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Nagkukuro-kuro"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d mga package"
+msgstr[1] "%d mga package"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Kabuuan"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Configure"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "hindi na-configure"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "May \"error\" na nangyari"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Piliin ang inyong layout ng keyboard."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Narito ang buong talaan ng mga available na keyboard"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "I-install/I-upgrade"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Ito ba ay install o upgrade?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "I-pgrade ang %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Encryption key para sa %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Kino-configure ang IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Walang puwang para sa 1MB na bootstrap! Magpapatuloy ang install, pero para "
+"ma-boot ang inyong sistema, kailangan ninyong gumawa ng partisyon ng "
+"bootstrap sa DiskDrake"
+
+#: steps_interactive.pm:226
+#, fuzzy, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Walang puwang para sa 1MB na bootstrap! Magpapatuloy ang install, pero para "
+"ma-boot ang inyong sistema, kailangan ninyong gumawa ng partisyon ng "
+"bootstrap sa DiskDrake"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Palitan ang inyong CD-ROM!\n"
+"\n"
+"Pakisuksok ang CD-ROM na may tatak na \"%s\" sa inyong drive at pindutin\n"
+"ang Ok pagkatapos. Kung wala kayo nito, pindutin ang Cancel para iwasang\n"
+"mag-install mula sa CD-ROM na ito."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Naghahanap ng mga available na package..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Pakipili ang i-load o i-save ang pagpili ng package sa floppy.\n"
+"Ang format ay katulad ng sa mga ginawang auto_install na floppy."
+
+#: steps_interactive.pm:387
+#, fuzzy, c-format
+msgid "Load"
+msgstr "XLoad"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "I-save"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "I-load ang mga file"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Ang piniling laki ay mas malaki sa available na puwang"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Uri ng install"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Wala pa kayong napiling pangkat ng mga package.\n"
+"Pakipili ang maliitang pag-i-install na gusto ninyo:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "May X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "May pinakabatayang dokumento (inirerekomenda!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Talagang maliitang install (walang urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Lahat"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Inihahanda ang pag-i-install"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Ini-install ang package na %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "May error sa pagsasaayos ng mga package:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Magpatuloy pa rin?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "I-save ang mga piniling package"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "May error sa pag-i-install ng mga package na:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Configuration matapos ang install"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Mga update"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Mayroon kayo ngayong pagkakataon na i-download ang mga na-update na "
+"package.\n"
+"Ang mga package na ito ay na-update matapos mailabas ang distribusyon. "
+"Maaari\n"
+"silang maglaman ng mga ayos sa seguridad at \"bug\".\n"
+"\n"
+"Para i-download ang mga package na ito, kakailanganin ninyong magkaroon ng\n"
+"gumaganang koneksyon sa Internet.\n"
+"\n"
+"Gusto ninyong i-install ang mga update ?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"Nakikipag-alam sa mirror para makuha nag talaan ng mga available na "
+"package..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Hindi nakayang makipag-alam sa mirror na %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Hardware"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Sound card"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Mayroon ba kayong ISA na sound card?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Patakbuhin ang \"alsaconf\" o \"sndconfig\" pagkatapos mag-install para i-"
+"configure ang iyong sound card"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Walang natiktikang sound card. Subukan ang \"harddrake\" pagkatapos mag-"
+"install"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV card"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Graphical interface"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Network & Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Mga Proxy"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "na-configure"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Level ng Seguridad"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Firewall"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "na-activate"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "na-disable"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Boot"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s sa %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+"Hindi pa ninyo na-configure ang X. Sigurado kayong gusto ninyong gawin ito?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Inihahanda ang bootloader..."
+
+#: steps_interactive.pm:977
+#, fuzzy, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Mukhang mayroon kayong OldWorld (makaluma) o Hindi Kilalang\n"
+"makina, hindi gagana ang yaboot para sa inyo.\n"
+"Ang install ay magpapatuloy, ngunit kakailanganin ninyong\n"
+"gamitin ang BootX o ibang paraan para i-boot ang inyong makina"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Gusto ninyong gamiting ang aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"May error sa pag-install ng aboot,\n"
+"subukang ipilit ang pag-i-install kahit na sirain nito ang unang partisyon?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Sa level ng seguridad na ito, ang access sa mga file na nasa partisyon ng "
+"Windows ay limitado sa tagapangasiwa."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Magsuksok ng blangkong floppy sa drive %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Lumilikha ng auto install floppy..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Ilang mga hakbang ay hindi natapos.\n"
+"\n"
+"Gusto ninyo ba talagang sumuko ngayon?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Maligayang bati"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "I-reboot"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Gumawa ng auto install floppy"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Ang auto install ay maaaring maging talagang\n"
+"automatic kung gugustuhin. Sa ganitong kaso\n"
+"hahawakan nito ang hard drive!! (Ito ay sinadya\n"
+"para sa pag-i-install sa ibang box o makina).\n"
+"\n"
+"Maaari ninyong naising i-replay ang pag-i-install.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Gawin ulit"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Na-automatic"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "I-save ang mga piniling package"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Wika"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Lisensiya"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Mouse"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Pagtitiktik ng hard drive"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Keyboard"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Seguridad"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Pagpartisyon"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Nag-i-install"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Authentication"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Users"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Pagne-Network"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Bootloader"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "I-configure ang X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Kabuuan"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Mga serbisyo"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Mga update"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Exit"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d mga package"
+#~ msgstr[1] "%d mga package"
+
+#~ msgid "%d packages"
+#~ msgstr "%d mga package"
+
+#~ msgid "Language"
+#~ msgstr "Wika"
+
+#~ msgid "License"
+#~ msgstr "Lisensiya"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Piliin ang klase ng pag-i-install"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Nagkukuro-kuro"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Piliin ang mga package na ii-install"
+
+#~ msgid "Users"
+#~ msgstr "Users"
+
+#~ msgid "Networking"
+#~ msgstr "Pagne-Network"
+
+#~ msgid "Configure X"
+#~ msgstr "I-configure ang X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Hindi mapasok ang mga \"kernel module\" na katapat ng inyong kernel (ang "
+#~ "file na %s ay nawawala), nangangahulugang hindi naka-sync ang inyong boot "
+#~ "floppy sa Installation medium (lumikha ng bagong boot floppy)"
diff --git a/perl-install/install/share/po/tr.po b/perl-install/install/share/po/tr.po
new file mode 100644
index 000000000..694fd02ae
--- /dev/null
+++ b/perl-install/install/share/po/tr.po
@@ -0,0 +1,1613 @@
+# translation of DrakX-tr.po to Turkish
+# Copyright (C) 2000,2003 Free Software Foundation, Inc.
+# Copyright (c) 2000 Mandriva
+# ############################################
+#
+# Ömer Fadıl USTA <omer_fad@hotmail.com> , 1999-2003.
+# Tuncay YENİAY <tuncayyeniay@mynet.com>,2002.
+# Nazmi Savga <nsavga@doruk.net.tr>,2001.
+# Durmuş Celep <durmusc_tr@yahoo.com>,2002.
+# Erçin EKER <erc.caldera@gmx.net>, 2003.
+#
+# #############################################
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-tr\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2004-09-15 13:35+0200\n"
+"Last-Translator: Ömer Fadıl USTA <omer_fad@hotmail.com>\n"
+"Language-Team: Turkish <tr@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: any.pm:159
+#, fuzzy, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Başka var mı?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, fuzzy, c-format
+msgid "Network (HTTP)"
+msgstr "Ağ %s"
+
+#: any.pm:172
+#, fuzzy, c-format
+msgid "Network (FTP)"
+msgstr "Ağ %s"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr ""
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Yansı adreslerini almak için Mandriva Linux web sayfasına bağlantı kuruluyor"
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Yansı adreslerini almak için Mandriva Linux web sayfasına bağlantı kuruluyor"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Paketleri alacağınız bir yansı adresi seçiniz"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Dizin:"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, fuzzy, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "%s üzerinde %s bulunamadı"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Kurulu paketler inceleniyor..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Güncellenecek paketler bulunuyor"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Bu sunucu/sunucuları seçmiştiniz: %s\n"
+"\n"
+"\n"
+"Bu sunucular öntanımlı olarak etkinleştirilecektir. Bilinen bir güvenlik\n"
+"açığı yoktur, ancak dağıtımdan sonra bazı açıklar bulunmuş olabilir.\n"
+"Bu durumda bu sunucuları mümkün olan en kısa sürede güncellemelisiniz.\n"
+"\n"
+"\n"
+"Bu sunucuları gerçekten kurmak istiyor musunuz?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Sisteminizi güncellemek için şu paketler kaldırılacak: %s\n"
+"\n"
+"\n"
+"Bu paketleri kaldırmak istiyor musunuz?\n"
+
+#: any.pm:1081
+#, fuzzy, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Bu paketlerinde kurulu olması gerekiyor:\n"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr ""
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Ağ"
+
+#: any.pm:1163
+#, fuzzy, c-format
+msgid "Please choose a media"
+msgstr "Lütfen seçin"
+
+#: any.pm:1179
+#, fuzzy, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Bu dosya zaten var. Üzerine yazılsın mı?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "İzin verilmedi"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, fuzzy, c-format
+msgid "Bad media %s"
+msgstr "%s ortamı eklendi"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Disk bölümlemesi yapılmadan ekran örnekleri alınamaz."
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Ekran örnekleri %s kurulduktan sonra mümkün olacak"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Kuruluyor"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Yapılandırma"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Ayrıca %s biçemlendirilmelidir"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Bilgisayarınızdaki bazı donanımlar çalışmak için \"özgün\" sürücüler\n"
+"gerektiriyor. Bunlar hakkında bilgi bulabileceğiniz adres: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Ağ bağlanıyor"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Ağ ayrılıyor"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "%s dosyası indiriliyor..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, fuzzy, c-format
+msgid "Copying in progress"
+msgstr "Algılama sürüyor"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "zorunlu"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "önemli"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "çok hoş"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "güzel"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "belki"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "İş istasyonu"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Ofis iş istasyonu"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Ofis programları: kelime işlemciler (OpenOffice.org Writer, Kword), "
+"OpenOffice.org Calc, Kspread, pdf göstericiler, vb.."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Ofis programları: kelime işlemciler (kword, abiword), kspread, gnumeric, pdf "
+"göstericiler, vb.."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Oyun Konsolu"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Eğlence programları: kart oyunları, taktik ve strateji, vb.."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Çoklu ortam konsolu"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Ses ve video çalma/düzenleme uygulamaları"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internet konsolu"
+
+#: share/meta-task/compssUsers.pl:44
+#, fuzzy, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"E-posta alışverişi ve haber grubu istemci programları (pine, mutt, tin..) ve "
+"web istemcileri "
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Ağ Makinası (client)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "ssh içeren diğer ağ öğeleri için protokoller"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Sisteminizin ayarlarını düzenleyecek uygulama"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Konsol Araçları"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Metin düzenleyiciler, kabuklar, dosya araçları, terminaller"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Geliştirme"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C ve C++ geliştirme kütüphaneleri, programlar ve include dosyaları"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Belgeler"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Serbest Yazılım ve Linux üzerine Kitaplar ve Nasıl belgeleri"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standartları Temeli. Üçüncü parti uygulama desteği"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Web Sunucu"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, fuzzy, c-format
+msgid "Groupware"
+msgstr "Grup"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab Sunucu"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Güvenlik Kalkanı/Router"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internet ağ geçidi"
+
+#: share/meta-task/compssUsers.pl:96
+#, fuzzy, c-format
+msgid "Mail/News"
+msgstr "/Dosya/_Yeni"
+
+#: share/meta-task/compssUsers.pl:97
+#, fuzzy, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix posta sunucu"
+
+#: share/meta-task/compssUsers.pl:100
+#, fuzzy, c-format
+msgid "Directory Server"
+msgstr "CD'den Geri Al"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP sunucusu"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Alan adı ve Ağ Bilgileri Sunucusu"
+
+#: share/meta-task/compssUsers.pl:112
+#, fuzzy, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Yazdırma Sunucusu"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS sunucu, Samba sunucu"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Veritabanı"
+
+#: share/meta-task/compssUsers.pl:117
+#, fuzzy, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL veya MySQL veritabanı sunucusu"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache ve Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Posta"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix posta sunucu"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL veya MySQL veritabanı sunucusu"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Ağ Makinası sunucusu"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS sunucusu, SMB sunucusu, Vekil Sunucu, ssh Sunucu"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Grafik Ortamı"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE İş istasyonu"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "KDE Masaüstü Ortamı, temel grafik ortamla birlikte birleşik araçlar"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME İş istasyonu"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Kullanıcı dostu uygulamalar ve masaüstü araçlarına sahip görsel bir ortam "
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Masaüstü"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Diğer Görsel Masaüstleri"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Yardımcı araçlar"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH Sunucu"
+
+#: share/meta-task/compssUsers.pl:190
+#, fuzzy, c-format
+msgid "Webmin"
+msgstr "İnternet Kamerası"
+
+#: share/meta-task/compssUsers.pl:191
+#, fuzzy, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Mandriva Terminal Sunucu Yapılandırması"
+
+#: share/meta-task/compssUsers.pl:195
+#, fuzzy, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Ağ İzlemesi"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:200
+#, fuzzy, c-format
+msgid "Mandriva Wizards"
+msgstr "<b>Mandriva Store</b>"
+
+#: share/meta-task/compssUsers.pl:201
+#, fuzzy, c-format
+msgid "Wizards to configure server"
+msgstr "\"%s\" yazıcısını yapılandırılması başarısız!"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Bir hata oluştu, ancak sebebi saptanamadı.\n"
+"Devam edebilirsiniz, ama risk size ait!"
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Bazı paketlerin kurulumu doğru olarak tamamlanmadı.\n"
+"CDROM sürücünüz sorunlu ya da CD'niz bozuk olabilir.\n"
+"Linux kurulu başka bir makinada \"rpm -qpl media/main/*.rpm\"\n"
+"komutuyla CD'nizi kontrol edebilirsiniz.\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "`%s' adımına başlanıyor\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux Kurulum %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "gezinmek için <Tab>/<Alt-Tab>"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Sistem kaynaklarınız kısıtlı. Mandriva Linux'yi kurarken sorunlarınız\n"
+"olabilir. Bu durum oluşursa, metin tabanlı kurulumu deneyebilirsiniz.\n"
+"Bunun için CDROM'dan açtıktan sonra `F1'e basın, ve komut satırına\n"
+"`text' yazın."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Paket Grubu Seçimi"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Tek tek paket seçimi"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Toplam boyut: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Hatalı paket"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Sürüm: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Boyut: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Önem: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Bu paket seçimlik değildir"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "%s paketinin kayıplığından"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "%s' den dolayı yetersiz"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr ""
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr ""
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "Yeterli yeriniz kalmadığından bu paketi seçemezsiniz"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Aşağıdaki paketler kurulacaktır"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Aşağıdaki paketler sistemden silinecektir"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Bu zorunlu bir pakettir, seçmemek olmaz"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Bu paketi seçimlerinizden çıkaramazsınız. Zaten kurulmuş."
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Bu paketi seçimlerinizden çıkaramazsınız. Güncellenmek zorunda"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Kendiliğinden seçilen paketleri göster"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Kurulum"
+
+#: steps_gtk.pm:405
+#, fuzzy, c-format
+msgid "Load/Save selection"
+msgstr "Seçimi kaydet"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Paket seçimini güncellemesi"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "En ufak kurulum"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Yazılım Yöneticisi"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Kurmak istediğiniz paketleri seçin"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Kuruluyor"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Ayrıntısız"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Kalan süre "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Tahminen"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d paket"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Özet"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Yapılandır"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "yapılandırılmamış"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr ""
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Bir hata oluştu"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Lütfen klavye düzeninizi seçiniz."
+
+#: steps_interactive.pm:99
+#, fuzzy, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Mevcut tüm ülkelerin listesi"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Kurulum/Güncelleme"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Bu bir yükleme mi yoksa güncelleme mi ?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "%s güncelle"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "%s için Parola"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE yapılandırması"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+" 1 MB lık önyükleme bölümünün oluşturulması için disk başlangıcında yeterli "
+"alan yok! Kurulum devam edecektir fakat açılış için DiskDrake'i kullanarak "
+"bir önyükleme disk bölümü oluşturmanız gerekecek"
+
+#: steps_interactive.pm:226
+#, fuzzy, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+" 1 MB lık önyükleme bölümünün oluşturulması için disk başlangıcında yeterli "
+"alan yok! Kurulum devam edecektir fakat açılış için DiskDrake'i kullanarak "
+"bir önyükleme disk bölümü oluşturmanız gerekecek"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Cd-Rom'u değiştirin!\n"
+"\n"
+"\"%s\" etiketli Cd-Rom'u sürücüye takın ve TAMAM'a basın.\n"
+"Eğer Cd-Rom elinizde yoksa bu Cd-Rom'dan kurmamak için VAZGEÇ'e basın."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Mevcut paketler taranıyor"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, fuzzy, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Lütfen disketteki paket seçimini yükle veya kaydete tıklayınız.\n"
+"Otomatik kurulum disketleriyle aynı biçemde oluşturulacaktır."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Yük"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Kaydet"
+
+#: steps_interactive.pm:395
+#, fuzzy, c-format
+msgid "Bad file"
+msgstr "Dosya yükle"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Seçilen boyut boş disk alanından daha büyük"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Kurulum türü"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Seçilmiş bir paket grubu yok\n"
+"Lütfen isteğinize uyan ve en az yer kaplayacak kurulumu seçin:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "X ile"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Temel belgeler olsun (önerilir!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Gerçekten en küçük kurulum (özellikle urpmi-siz)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Tümü"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Kurulum hazırlanıyor"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "%s paketi kuruluyor"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Paketler düzenlenirken bir hata oluştu:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Yine de devam edilsin mi?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Paket seçimlerini Kaydet"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Paketler kurulurken bir hata oluştu:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Kurulum sonrası yapılandırma"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Güncellemeler"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Şu anda güncellenmiş paketleri indirme fırsatınız var. Bu paketler\n"
+"dağıtımın çıkış tarihinden sonra çıkan güncellemeleri içermektedir.\n"
+"Bu güncellemeler önemli hata düzeltmeleri ve güvenlik çözümleri\n"
+"içeriyor olabilir.\n"
+"\n"
+"[Güncelleme indirmenizi tavsiye ediyoruz]\n"
+"\n"
+"Bahsi geçen güncellemeleri indirebilmek için çalışan bir internet \n"
+"bağlantısına ihtiyacınız var.\n"
+"\n"
+"Güncellemeleri kurmak istiyor musunuz ?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"Güncelleme paketlerinin listesini almak için yansı adresine bağlantı "
+"kuruluyor"
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "%s yansısı ile iletişim kurulamıyor"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Donanım"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Ses Kartı"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Bir ISA ses kartınız var mı?"
+
+#: steps_interactive.pm:811
+#, fuzzy, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Ses kartınızı yapılandırmak için kurulumdan sonra \"sndconfig\" aracını "
+"çalıştırın."
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Ses kartı bulunamadı. Kurulumdan sonra \"harddrake\" ile deneyin."
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV kartı"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Grafiksel arabirim"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Ağ & İnternet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Vekil Sunucular"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "yapılandırıldı"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Güvenlik Seviyesi"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "AteşDuvarı"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "etkinleştirilmiş"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "pasifleştirilmiş"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Önyükleme"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%2$s üstündeki %1$s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "X'i yapılandırmadınız. Bunu yapmak istediğinizden emin misiniz?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Önyükleyici hazırlanıyor"
+
+#: steps_interactive.pm:977
+#, fuzzy, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Çok eski ya da bilinmeyen bir makinaya sahipmişsiniz gibi görünüyor.\n"
+"Yaboot önyükleyicisi düzgün çalışmayacaktır.\n"
+"Kurulum devam edecek ama bu makinayı açmak için\n"
+"BootX veya benzeri araçlar kullanmak zorunda kalacaksınız."
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "aboot uygulamasını kullanmak istiyor musunuz?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"aboot kurulumunda hata, \n"
+"ilk disk bölümünü yok etse bile yine de kurulmasını istiyor musunuz?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "%s sürücüsüne boş bir disket yerleştirin"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Otomatik kurulum disketi hazırlanıyor"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Bazı adımlar tamamlanmadı.\n"
+"\n"
+"Gerçekten çıkmak istiyormusunuz?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Tebrikler"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Yeniden başla"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Otomatik kurulum disketi oluştur"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Tam otomatik bir kurulum yapılabilir, ancak\n"
+"bu durumda sabit diskiniz tamamen ele geçirilebilir!!\n"
+"(Yani kurulum programı bütün diski kullanmaya kalkabilir).\n"
+"\n"
+"Etkileşimli bir kurulumu da tercih edebilirsiniz.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Etkileşimli"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Otomatik"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Paket seçimlerini Kaydet"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Kullanacağınız dili seçin"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Lisans"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Fare"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Sabit disk algılaması"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Klavye"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Güvenlik"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Bölümlendirme"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Kuruluyor"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Kimlik kanıtlama"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Kullanıcılar"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Ağ"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Önyükleyici"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "X Yapılandırması"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Özet"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Hizmetler"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Güncellemeler"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Çıkış"
+
+#~ msgid "%d packages"
+#~ msgstr "%d paket"
+
+#~ msgid "Language"
+#~ msgstr "Kullanacağınız dili seçin"
+
+#~ msgid "License"
+#~ msgstr "Lisans"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Kurulum sınıfını seçin"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Tahminen"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Kurulacak paketleri seçin"
+
+#~ msgid "Users"
+#~ msgstr "Kullanıcılar"
+
+#~ msgid "Networking"
+#~ msgstr "Ağ"
+
+#~ msgid "Configure X"
+#~ msgstr "X Yapılandırması"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Çekirdek değişikliği yüzünden bazı çekirdek modüllerine erişilemiyor.(%s "
+#~ "Dosyası eksik), bu genel olarak sistem açılış disketinizin sistemi "
+#~ "yüklediğiniz medya ile senkronize olmadığını gösterir.(Lütfen daha yeni "
+#~ "bir açılış disketi oluşturun)"
diff --git a/perl-install/install/share/po/uk.po b/perl-install/install/share/po/uk.po
new file mode 100644
index 000000000..09f24a05c
--- /dev/null
+++ b/perl-install/install/share/po/uk.po
@@ -0,0 +1,1636 @@
+# translation of DrakX-uk.po to ukrainian
+# translation of DrakX.po to ukrainian
+# $Id: uk.po 26602 2006-04-22 07:43:48Z fwang $
+# Copyright (C) 2000,2003, 2004, 2005 Free Software Foundation, Inc.
+# Dmytro Kovalov <kov@tokyo.email.ne.jp>, 2000.
+# Taras Boychuk <btr1@torba.com>, 2003, 2004.
+# Taras Boychuk <btr1@mail.ru>, 2004, 2003.
+# Taras Boychuk <btr1@ukrpost.net>, 2004, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-uk\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2005-03-01 01:29+0200\n"
+"Last-Translator: Taras Boychuk <btr1@ukrpost.net>\n"
+"Language-Team: ukrainian <uk@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Чи маєте Ви наступні додаткові носії?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Мережа (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Мережа (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "Посилання на дзеркало?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Зв'язуюсь з веб-сайтом Mandriva Linux, щоб отримати список наявних джерел..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Зв'язуюсь з веб-сайтом Mandriva Linux, щоб отримати список наявних джерел..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Виберіть сервер, з якого звантажити пакунки"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Каталог"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Неможливо знайти перелік пакунків на цьому дзеркалі. Переконайтеся, чи "
+"правильне розташування."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Переглядається список вже встановлених пакунків..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Шукаю пакунки для поновлення..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Ви вибрали такі(ий) сервер(и): %s\n"
+"\n"
+"\n"
+"Ці сервери стандартно активізовані. Для них невідомі будь-які проблеми з\n"
+"безпекою, але деякі можуть бути виявлені. В такому випадку Ви повинні\n"
+"якомога швидше поновити версії цих серверів. \n"
+"\n"
+"\n"
+"Ви хочете дозволити встановлення цих серверів?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Наступні пакунки будуть вилучені, щоб забезпечити поновлення\n"
+"Вашої системи: %s\n"
+"\n"
+"\n"
+"Ви справді хочете вилучити ці пакунки?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Назву наступних дисків було змінено:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (попередня назва %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Мережа"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Будь ласка, виберіть носій"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Файл вже існує. Переписати?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Доступ заборонено"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Поганий носій %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Не можу робити знімки екрану перед розбиттям на розділи"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Знімки екрану стануть можливими після встановлення в %s"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Встановлюю"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Конфігурація"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Вам потрібно також відформатувати %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Деякі з апаратних засобів на Вашому комп'ютері вимагають драйверів\n"
+"фірм-виготовлювачів для того, щоб працювати вірно. \n"
+"\n"
+"Ви можете знайти потрібну інформацію про них на: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Вмикаю мережу"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Вимикаю мережу"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Звантажується файл %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Триває копіювання"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "повинен мати"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "важливий"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "дуже гарний"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "гарно"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "можливо"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Робоча станція"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Офісна робоча станція"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Програми для офісу: текстові процесори (OpenOffice.org Writer, Kword), "
+"електронні таблиці (OpenOffice.org Calc, Kspread), переглядачі файлів PDF, "
+"тощо"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Програми для офісу: текстові процесори (kword, abiword), бухгалтерські "
+"таблиці (kspread, gnumeric), переглядачі файлів pdf, тощо"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Ігрова станція"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Програми для розваг: ігри-перегони, ігри на дошці, стратегічні, тощо"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Мультимедійна станція"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Звукові та відео програвачі та редактори"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Станція для Інтернету"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Набір засобів для читання та передавання електронної пошти та груп новин "
+"(pine, mutt, tin..), та для перегляду інформаційних тенет"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Мережевий Комп'ютер (клієнт)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Клієнти для різних протоколів (ssh включно)"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Засоби для полегшення конфіґурування Вашого комп'ютера"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Засоби для консолі"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Редактори, командні оболонки, файлові засоби та термінали"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Розробка"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Бібліотеки для програмування в C, C++, програми та файли include"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Документація"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Книжки та ЯК ЗРОБИТИ про Лінакс та вільне програмне забезпечення"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Стандартна база Лінакс. Підтримка програм сторонніх виробників"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Веб-сервер"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Групова робота"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Сервер Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Захисний шлюз/Маршрутизатор"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Інтернет-шлюз"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Пошта/Новини"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Поштовий сервер postfix, сервер новин Inn"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Сервер тек"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Сервер FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Сервер назв домена і мережевий інформаційний сервер"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Сервер доступу до файлів і друкарок"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "Сервер NFS, сервер Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "База даних"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Сервери баз даних PostgreSQL і MySQL "
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Тенета/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Пошта"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Поштовий сервер postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Сервери баз даних PostgreSQL або MySQL "
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Мережевий комп'ютер (сервер)"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Сервер NFS, сервер SMB, проксі-сервер, сервер ssh"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Графічне середовище"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Робоча станція KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"Робоче середовище K (KDE) - основне графічне середовище з набором допоміжних "
+"засобів"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Робоча станція Gnome"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Графічне середовище з дружнім інтерфейсом та програмами, засоби для стільниці"
+
+#: share/meta-task/compssUsers.pl:155
+#, fuzzy, c-format
+msgid "IceWm Desktop"
+msgstr "Стільниця Plucker"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Інші робочі середовища"
+
+#: share/meta-task/compssUsers.pl:160
+#, fuzzy, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, тощо"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Інструменти"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Сервер SSH "
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Сервер віддаленого налаштування Webmin"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Мережеві інструменти/Слідкування за мережею"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Інструменти для слідкування, облік процесів, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Помічники Mandriva"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Помічники для налаштування сервера"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Сталася помилка, але я не знаю, як її обробити.\n"
+"Продовжуйте на свій власний ризик."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Деякі важливі пакунки не вдалося вірно встановити. Ваш\n"
+"компакт-диск або привід дефектні. Перевірте компакт-диск\n"
+"командою \"rpm -qpl media/main/*.rpm\" \n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Починається крок `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Встановлення Мандріва лінакс %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> між елементами"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Ваша система має замало ресурсів. Ви можете мати проблеми з встановленням\n"
+"Мандріва лінакса. Якщо це станеться, Ви можете спробувати встановлення в\n"
+"текстовому режимі. Для цього під час завантаження з компакт-диску\n"
+"натисніть F1 і потім введіть \"text\"."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Вибір груп пакунків"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Індивідуальний вибір пакунків"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Загальний розмір: %d / %d Мб "
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Поганий пакунок"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Версія: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Розмір: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d Кб\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Важливість: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Ви не можете вибрати або відмінити вибір цього пакунка."
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "через відсутність %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "через незадоволеність %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "пробую активізувати %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "щоб залишити %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Ви не можете вибрати цей пакунок, бо для його встановлення не залишилося "
+"достатньо вільного місця."
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Ці пакунки буде встановлено"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Наступні пакунки будуть вилучені"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Цей пакунок необхідний, його вибір відмінити не можна"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Вибір цього пакунка неможливо відмінити. Його вже встановлено."
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Вибір цього пакунка неможливо відмінити. Він повинен бути поновлений."
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Показувати автоматично вибрані пакунки"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Встановлення"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Завантажити/зберегти виділене"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Поновлення вибору пакунків"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Мінімальне встановлення"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Менеджер програм"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Виберіть пакунки, які Ви хочете встановити"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Встановлюю"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Загально"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Залишок часу "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Наближене обчислення"
+
+#: steps_gtk.pm:511
+#, fuzzy, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d пакунків"
+msgstr[1] "%d пакунків"
+msgstr[2] "%d пакунків"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Загалом"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Налаштувати"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "не налаштовано"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Було знайдено наступні носії встановлення.\n"
+"Якщо Ви не хочете використовувати деякі з них, відмініть їх вибір."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"У Вас є можливість перед початком встановлення скопіювати вміст компакт-"
+"дисків на твердий диск.\n"
+"Після цього встановлення продовжиться з твердого диску і пакунки залишаться "
+"доступними після повного встановлення системи."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Копіювати компакт-диски повністю."
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Сталася помилка"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Будь ласка, виберіть розкладку клавіатури."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Тут наведено повний список можливих мап клавіатури"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Встановити/Поновити"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Це встановлення чи поновлення?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Поновити %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Ключ шифрування для %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Налаштування IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Не вистачає вільного місця для 1МБ завантажувального блоку! Встановлення\n"
+"буде продовжуватись, але для завантаження своєї системи Вам потрібно\n"
+"буде створити DiskDrake'ом завантажувальний розділ"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Вам потрібно створити початковий завантажувач PPC PReP Boot! Встановлення "
+"буде продовжуватись, але для завантаження системи потрібно буде створити "
+"DiskDrake'ом завантажувальний розділ"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Змініть компакт-диск!\n"
+"Будь ласка, вставте компакт-диск, позначений \"%s\" у пристрій і\n"
+"натисніть Гаразд після цього.\n"
+"Якщо Ви не маєте такого диску, натисніть Скасувати, щоб не\n"
+"встановлювати з цього диску."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Шукаю наявні пакунки..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Будь ласка, виберіть, завантажити чи записати вибір пакунків.\n"
+"Формат такий самий, як файлів auto_install."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Завантаження"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Зберегти"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Поганий файл"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Вибраний розмір більший за наявний простір"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Тип встановлення"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Ви не вказали жодної групи пакунків.\n"
+"Будь ласка, вкажіть мінімальне встановлення, яке Ви хочете:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Разом з Х"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "З основною документацією (рекомендується!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Насправді мінімальне встановлення (особливо немає urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Все"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Підготовка встановлення"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Встановлюється пакунок %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Сталася помилка під час сортування пакунків: "
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Все-таки продовжувати?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Зберегти вибір пакунків"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Сталася помилка під час встановлення пакунків: "
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Налаштування після встановлення"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Поновлення"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Зараз Ви маєте можливість звантажити поновлені пакунки. Ці пакунки\n"
+"було поновлено після виходу дистрибутиву. Вони можуть містити\n"
+"виправлення безпеки або помилок.\n"
+"\n"
+"Щоб звантажити ці пакунки, Вам потрібно мати працююче з'єднання з\n"
+"Інтернетом.\n"
+"\n"
+"Ви хочете встановити ці поновлення?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Зв'язуюсь з сервером, щоб прочитати список наявних пакунків..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Неможливо з'єднатися з дзеркалом %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Залізо"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Звукова плата"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Чи маєте Ви звукові карти ISA?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Виконайте \"alsaconf\" або \"sndconfig\" після встановлення, щоб налаштувати "
+"звукову карту"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Звукових карт не виявлено. Спробуйте \"harddrake\" після встановлення"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Телевізійна плата"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Графічний інтерфейс"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Мережа та Інтернет"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Проксі"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "налаштовано"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Рівень безпеки"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Захисний шлюз"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "увімкнено"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "відімкнено"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Завантажити"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s на %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Ви не сконфігурували X. Ви впевнені, що дійсно цього хочете?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Підготовлюю завантажувач..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Здається у Вас машина OldWorld чи Невідома. Завантажувач yaboot не буде "
+"працювати з цією машиною. Встановлення буде продовжуватись, але для "
+"завантаження, Вам потрібно використати BootX чи якийсь інший спосіб "
+"завантаження Вашої машини. Параметр ядра для коренефої файлової системи: "
+"root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Чи Ви хочете використовувати aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Помилка при встановленні aboot,\n"
+"спробувати встановити примусово, навіть якщо це зруйнує перший розділ?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"На цьому рівні безпеки доступ до файлів на розділі Windows дозволений тільки "
+"адміністратору."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Вставте чисту дискету в дисковод %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Створення дискети для автоматичного встановлення..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Деякі кроки не завершені.\n"
+"\n"
+"Ви дійсно хочете припинити зараз?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Вітання"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Перезавантажити"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Створити дискету для автовстановлення"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Якщо потрібно, автовстановлення може бути повністю\n"
+"автоматизоване. В цьому випадку процес встановлення \n"
+"буде мати повний контроль над вашим диском!! (Застосовується\n"
+"для встановлення на інші комп'ютери)\n"
+"\n"
+"Можливо, Ви захочете повторити встановлення.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Повторити"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Автоматизована"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Зберегти вибір пакунків"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Мова"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Ліцензія"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Миша"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Визначення твердого диску"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Клавіатура"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Безпека"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Розбиття на розділи"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Встановлюю"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Автентифікація"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Користувачі"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Робота в мережі"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Завантажувач"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Налаштувати X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Загалом"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Сервіси"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Поновлення"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Вийти"
+
+#, fuzzy
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "%d пакунків"
+#~ msgstr[1] "%d пакунків"
+#~ msgstr[2] "%d пакунків"
+
+#~ msgid "%d packages"
+#~ msgstr "%d пакунків"
+
+#~ msgid "Language"
+#~ msgstr "Мова"
+
+#~ msgid "License"
+#~ msgstr "Ліцензія"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Виберіть тип встановлення"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Наближене обчислення"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Виберіть пакунки для встановлення"
+
+#~ msgid "Users"
+#~ msgstr "Користувачі"
+
+#~ msgid "Networking"
+#~ msgstr "Робота в мережі"
+
+#~ msgid "Configure X"
+#~ msgstr "Налаштувати X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Неможливо отримати доступ до модулів ядра, що відповідають Вашому ядру\n"
+#~ "(немає файла %s), здебільшого це означає, що Ваша дискета для "
+#~ "завантаження\n"
+#~ "не синхронізована з інсталяційним носієм (будь ласка, створіть новішу\n"
+#~ "дискету для завантаження)"
diff --git a/perl-install/install/share/po/uz.po b/perl-install/install/share/po/uz.po
new file mode 100644
index 000000000..d0dc0e2f8
--- /dev/null
+++ b/perl-install/install/share/po/uz.po
@@ -0,0 +1,1550 @@
+# translation of DrakX-uz.po to Uzbek
+# Copyright (C) 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+# Copyright (C) 2003 Mandriva.
+#
+# Mashrab Kuvatov <kmashrab@uni-bremen.de>, 2003, 2004, 2006, 2007.
+# Nurali Abdurahmonov <mavnur@gmail.com>, 2006.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-uz\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-03-05 23:13+0100\n"
+"Last-Translator: Mashrab Kuvatov <kmashrab@uni-bremen.de>\n"
+"Language-Team: Uzbek <floss-uz-l10n@googlegroups.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Сизда қўшимча компакт-диск борми?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Ўрнатиш давомида қуйидаги манбадан фойдаланилади: %s.\n"
+"\n"
+"\n"
+"Мосланиши керак бўлган қўшимча ўрнатиш манбаси борми?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "Компакт-диск"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Тармоқ (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Тармоқ (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Тармоқ (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "Ойнанинг манзили (URL)"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "Манзил ftp:// ёки http:// билан бошланиши керак"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Мавжуд бўлган ойналарнинг рўйхатини олиш учун Mandriva Linux сайти билан "
+"алоқа ўрнатилмоқда..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Мавжуд бўлган ойналарнинг рўйхатини олиш учун Mandriva Linux сайти билан "
+"алоқа ўрнатиб бўлмади"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Пакетларни олиш учун ойнани танланг"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "NFS орқали ўрнатиш"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "NFS тўпламининг компьютер номини ва директорияни киритинг"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Компьютернинг номи кўрсатилмаган"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "Директория \"/\" белги билан бошлаши керак"
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "NFS серверининг хост номи"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Директория"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Қўшимча"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Ойнада пакетлар рўйхатини топиб бўлмади. Манзил (URL) тўғри "
+"кўрсатилганлигини текширинг."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Аллақачон ўрнатилган пакетлар қидирилмоқда..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Янгилашдан аввал пакетлар олиб ташланмоқда..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Янгилаш учун пакетлар қидирилмоқда..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Тизимни янгилаш учун қуйидаги пакетлар ўчирилади: %s\n"
+"\n"
+"\n"
+"Давом этишни истайсизми?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Қуйидаги диск(лар)нинг номи ўзгартирилди:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (олдинги номи %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Тармоқ"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Илтимос тўпламни танланг"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Файл аллақачон мавжуд. Уни алмаштиришни истайсизми?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Рухсат йўқ"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "NFS номи нотўғри"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Нотўғри тўплам %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Скриншотларни дискни бўлишдан аввал олиб бўлмайди"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr ""
+"Ўрнатиш тугаганидан кейин скриншотларни қуйидаги жойдан топиш мумкин: %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Ўрнатиш"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Мослаш"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Сиз %s'ни ҳам формат қилишингиз керак"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Компьютернинг баъзи асбоб-ускунаси эркин бўлмаган драйверни талаб қилади.\n"
+"Улар ҳақида баъзи маълумотни қуйидаги жойдан олса бўлади: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Тармоқ ишга туширилмоқда"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Тармоқ ўчирилмоқда"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "%s файли ёзиб олинмоқда..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Баъзи пакетлардан дискка нусха олинмоқда"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Нусха олиш давом этмоқда"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "бўлиши шарт"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "муҳим"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "жуда яхши"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "яхши"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "балки"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "2007 маҳсулотлари"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva Online хизматлари"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Янги мавзу"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Иш станцияси"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Идора станцияси"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Идора учун дастурлар: матн процессорлари (OpenOffice.org Writer, Kword), "
+"электрон жадваллар (OpenOffice.org Calc, Kspread), PDF кўрувчилар ва ҳоказо"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Идора учун дастурлар: матн процессорлари (kword, abiword), электрон "
+"жадваллар (kspread, gnumeric), PDF кўрувчилар ва ҳоказо"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Ўйин станцияси"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Овунчоқ дастурлар: аркада, стол ўйинлари, стратегия ва ҳоказо"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Мултимедиа станцияси"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Аудио ва видеони ўйнаш/таҳрирлаш учун дастурлар"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Интернет станцияси"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Хат-хабар, янгиликларни ўқиш ва жўнатиш (mutt, tin..) ва Интернетда сайр "
+"қилиш учун воситалар тўплами"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Тармоқдаги компьютер (клиент)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Турли протоколлар, шу жумлада SSH, учун клиентлар"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Компьютерни мослашни енгилаштириш учун воситалар"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Консол воситалари"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Таҳрирчилар, консоллар, файл воситалари, терминаллар"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Тузиш"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C ва C++ тузиш кутубхоналари, воситалар ва хедер файллар"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Қўлланмалар"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Linux ва эркин дастурлар ҳақида китоблар ва Howto'лар"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Веб-сервери"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab сервери"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Файервол/Рутер"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Интернет гейтвэйи"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Хат-хабар/Янгиликлар"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix хат-хабар сервери, Inn янгиликлар сервери"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Директория сервери"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP сервери"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "DNS ва NIS"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Файл ва принтерни бўлишиш сервери"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS сервери, Samba сервери"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Маълумот базаси"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL ва MySQL маълумот базаси"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Хат-хабар"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix хат-хабар сервери"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL ёки MySQL маълумот базаси"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Тармоқдаги компьютер (сервер)"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS сервери, SMB сервери, Proxy сервери, SSH сервери"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "График муҳит"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE станцияси"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "KDE - воситалар тўплами билан бирга асосий график муҳит"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME станцияси"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Фойдаланувчилар учун қулай дастурлар ва иш столи воситаларидан иборат график "
+"муҳит"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm иш столи"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Бошқа график иш столлари"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, ва ҳоказо"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Воситалар"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH сервери"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin масофадан бошқариш сервери"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Тармоқ воситалари/Назорат қилиш"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Назорат қилиш воситалари, вазифалар ҳисоботчилари, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva ёрдамчилари"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Серверни мослаш учун ёрдамчилар"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Баъзи бир муҳим пакетлар тўғри ўрнатилмади.\n"
+"Сизнинг компакт-диск ускунангизда ёки компакт-дискингизда хато бор.\n"
+"Компакт-дискни ўрнатилган компьютерда \"rpm -qpl media/main/*.rpm\" буйруғи "
+"билан текшириб кўринг.\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "%s босқичга ўтилмоқда\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux ОТни ўрнатиш %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> банддан-бандга"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Пакетларни гуруҳ бўйича танлаш"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Пакетларни биттама-битта танлаш"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Жами: %d / %d Мб"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Ёмон пакет"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Версияси: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Ҳажми: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d Кб\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Муҳимлиги: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Бу пакетни танлолмайсиз/танлашни бекор қилолмайсиз"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "%s етишмагани учун"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr ""
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr ""
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "%s'ни қолдириш учун"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Бу пакетни танлолмайсиз, чунки уни ўрнатиш учун етарли жой мавжуд эмас."
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Қуйидаги пакетлар ўрнатилади"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Қуйидаги пакетлар олиб ташланилади."
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Бу ўрнатилиши шарт бўлган пакет, уни танлашни бекор қилиб бўлмайди."
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Бу пакетни танлашни бекор қилолмайсиз. У аллақачон ўрнатилган."
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Бу пакетни танлашни бекор қилолмайсиз. У янгиланиши шарт."
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Автоматик равишда танланган пакетларни кўрсатиш"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Ўрнатиш"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Танланганни юклаш/сақлаш"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Пакетлар танлови янгиланмоқда"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Минимал ўрнатиш"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Дастурлар бошқаруви"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Сиз ўрнатмоқчи бўлган пакетларни танланг"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Ўрнатилмоқда"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Тафсилотларсиз"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Қолган вақт "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Чамаланмоқда"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d-та пакет"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Ҳисобот"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Мослаш"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "мосланмаган"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Қуйидаги ўрнатиш манбалари аниқланди.\n"
+"Фақат танланган манбалар ўрнатиш учун ишлатилади."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Ўрнатишдан аввал компакт-дисклардаги пакетлардан компьютернинг дискига нусха "
+"олиш мумкин.\n"
+"Ўрнатиш тўлиқ тугагандан сўнг улар тизимга маълум бўлади."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Бутун дискдан нусха олиш"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Хато рўй берди"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Илтимос тугмалар тартибини танланг."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Мавжуд бўлган тугматагларнинг тўлиқ рўйхати"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Ўрнатиш/Янгилаш"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Бу ўрнатишми ёки янгилашми?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "%s'ни янгилаш"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "%s учун кодлаш калити"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE'ни мослаш"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Компакт-дискни алмаштиринг!\n"
+"\n"
+"Илтимос '%s' белгили компакт-дискни қўйинг ва \"Ок\" тугмасини босинг.\n"
+"Агар у сизда бўлмаса, бу компакт-дискдан ўрнатишни бекор қилиш учун \"Бекор "
+"қилиш\" тугмасини босинг."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Мавжуд бўлган пакетлар қидирилмоқда..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr "Тизимда ўрнатиш ёки янгилаш учун етарли жой қолмади (%d Мб > %d Мб)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Юклаш"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Сақлаш"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Нотўғри файл"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Танланган ҳажм мавжуд бўлган бўш жойдан катта"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Ўрнатишнинг тури"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Сиз ҳеч қандай пакетлар гуруҳини танламадингиз.\n"
+"Илтимос сиз истаган минимал ўрнатишни танланг:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "X билан"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Асосий қўлланмалар билан (тавсия қилинади!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Ҳақиқий минимал ўрнатиш (хусусан urpmi'сиз)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Ҳаммаси"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Ўрнатишга тайёрланмоқда"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "%s пакети ўрнатилмоқда"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Қуйидаги пакетларни саралашда хато рўй берди:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Бунга қарамасдан давом этишни истайсизми?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Қайтадан уриниш"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "Бу пакетга эътибор берилмасин"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "\"%s\" тўпламидан ҳамма пакетларга эътибор берилмасин"
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "Ўрнатиш манбаларни ва пакетларни танлашга қайтиш"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "Қуйидаги пакетни ўрнатишда хато рўй берди: %s"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Ўрнатишдан кейин мослаш"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Янгиланишлар"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"Мавжуд бўлган пакетларнинг рўйхатини олиш учун ойна билан алоқа "
+"ўрнатилмоқда..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Ойна (%s)билан алоқа ўрнатиб бўлмади."
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Асбоб-ускуналар"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Товуш карта"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Сизда ISA товуш картаси борми?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Ўрнатишдан кейин, товуш картангизни мослаш учун, \"sndconfig\" ёки \"alsaconf"
+"\" дастурини ишга туширинг"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Товуш картаси топилмади. Ўрнатишдан кейин \"harddrake\" дастурини синаб "
+"кўринг."
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "ТВ карта"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "График интерфейс"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Тармоқ ва Интернет"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Проксилар"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "мосланган"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Хавфсизлик даражаси"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Файервол"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "ишлаяпти"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "ўчирилган"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Тизимни юкланиши"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s %s'да"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Сиз X'ни мосламадингиз. Ростдан буни истайсизми?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "ОТ юклагичи тайёрланмоқда..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "aboot дастуридан фойдаланишни истайсизми?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Ушбу хавфсизлик даража қўлланилганда дискнинг Windows қисмидаги файлларга "
+"фақат администратор мурожаат қилиши мумкин."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Бўш дискетни %s ускунасига қўйинг"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Авто-ўрнатиш дискети яратилмоқда..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Баъзи ўрнатиш босқичлари бажарилмади.\n"
+"\n"
+"Ростдан чиқишни истайсизми?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Табриклаймиз!"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Ўчириб-ёқиш"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Авто-ўрнатиш дискетни яратиш"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Қайтариш"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Автоматик"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Пакетлар танловини сақлаш"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Тил"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Лицензия"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Сичқонча"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Қаттиқ дискни аниқлаш"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Ўрнатиш синфи"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Тугматаг"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Хавфсизлик"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Дискни бўлиш"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Форматлаш"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Ўрнатилиши керак бўлган пакетларни танлаш"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Ўрнатилмоқда"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Тасдиқлаш"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Фойдаланувчилар"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Тармоқ"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "ОТ юклагичи"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "X серверини мослаш"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Ҳисобот"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Хизматлар"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Янгиланишлар"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Чиқиш"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d-та пакет, %d Мб)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d пакет"
diff --git a/perl-install/install/share/po/uz@Latn.po b/perl-install/install/share/po/uz@Latn.po
new file mode 100644
index 000000000..e746873af
--- /dev/null
+++ b/perl-install/install/share/po/uz@Latn.po
@@ -0,0 +1,1553 @@
+# translation of DrakX-uz.po to Uzbek
+# Copyright (C) 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+# Copyright (C) 2003 Mandriva.
+#
+# Mashrab Kuvatov <kmashrab@uni-bremen.de>, 2003, 2004, 2006, 2007.
+# Nurali Abdurahmonov <mavnur@gmail.com>, 2006.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-uz\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2007-03-05 23:13+0100\n"
+"Last-Translator: Mashrab Kuvatov <kmashrab@uni-bremen.de>\n"
+"Language-Team: Uzbek <floss-uz-l10n@googlegroups.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Sizda qo'shimcha kompakt-disk bormi?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"O'rnatish davomida quyidagi manbadan foydalaniladi: %s.\n"
+"\n"
+"\n"
+"Moslanishi kerak bo'lgan qo'shimcha o'rnatish manbasi bormi?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "Kompakt-disk"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Tarmoq (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Tarmoq (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Tarmoq (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "Oynaning manzili (URL)"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "Manzil ftp:// yoki http:// bilan boshlanishi kerak"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Mavjud bo'lgan oynalarning ro'yxatini olish uchun Mandriva Linux sayti bilan "
+"aloqa o'rnatilmoqda..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Mavjud bo'lgan oynalarning ro'yxatini olish uchun Mandriva Linux sayti bilan "
+"aloqa o'rnatib bo'lmadi"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Paketlarni olish uchun oynani tanlang"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "NFS orqali o'rnatish"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "NFS to'plamining kompyuter nomini va direktoriyani kiriting"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "Kompyuterning nomi ko'rsatilmagan"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "Direktoriya \"/\" belgi bilan boshlashi kerak"
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "NFS serverining xost nomi"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Direktoriya"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Qo'shimcha"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Oynada paketlar ro'yxatini topib bo'lmadi. Manzil (URL) to'g'ri "
+"ko'rsatilganligini tekshiring."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Allaqachon o'rnatilgan paketlar qidirilmoqda..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Yangilashdan avval paketlar olib tashlanmoqda..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Yangilash uchun paketlar qidirilmoqda..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Tizimni yangilash uchun quyidagi paketlar o'chiriladi: %s\n"
+"\n"
+"\n"
+"Davom etishni istaysizmi?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Quyidagi disk(lar)ning nomi o'zgartirildi:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (oldingi nomi %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Tarmoq"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Iltimos to'plamni tanlang"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Fayl allaqachon mavjud. Uni almashtirishni istaysizmi?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Ruxsat yo'q"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "NFS nomi noto'g'ri"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Noto'g'ri to'plam %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Skrinshotlarni diskni bo'lishdan avval olib bo'lmaydi"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr ""
+"O'rnatish tugaganidan keyin skrinshotlarni quyidagi joydan topish mumkin: %s"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "O'rnatish"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Moslash"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Siz %s'ni ham format qilishingiz kerak"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Kompyuterning ba'zi asbob-uskunasi erkin bo'lmagan drayverni talab qiladi.\n"
+"Ular haqida ba'zi ma'lumotni quyidagi joydan olsa bo'ladi: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Tarmoq ishga tushirilmoqda"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Tarmoq o'chirilmoqda"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "%s fayli yozib olinmoqda..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Ba'zi paketlardan diskka nusxa olinmoqda"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Nusxa olish davom etmoqda"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "bo'lishi shart"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "muhim"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "juda yaxshi"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "yaxshi"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "balki"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "2007 mahsulotlari"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva Online xizmatlari"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Yangi mavzu"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Ish stantsiyasi"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Idora stantsiyasi"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Idora uchun dasturlar: matn protsessorlari (OpenOffice.org Writer, Kword), "
+"elektron jadvallar (OpenOffice.org Calc, Kspread), PDF ko'ruvchilar va hokazo"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Idora uchun dasturlar: matn protsessorlari (kword, abiword), elektron "
+"jadvallar (kspread, gnumeric), PDF ko'ruvchilar va hokazo"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "O'yin stantsiyasi"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Ovunchoq dasturlar: arkada, stol o'yinlari, strategiya va hokazo"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Multimedia stantsiyasi"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Audio va videoni o'ynash/tahrirlash uchun dasturlar"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internet stantsiyasi"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Xat-xabar, yangiliklarni o'qish va jo'natish (mutt, tin..) va Internetda "
+"sayr qilish uchun vositalar to'plami"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Tarmoqdagi kompyuter (klient)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Turli protokollar, shu jumlada SSH, uchun klientlar"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Kompyuterni moslashni yengilashtirish uchun vositalar"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Konsol vositalari"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Tahrirchilar, konsollar, fayl vositalari, terminallar"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Tuzish"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C va C++ tuzish kutubxonalari, vositalar va xeder fayllar"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Qo'llanmalar"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Linux va erkin dasturlar haqida kitoblar va Howto'lar"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Veb-serveri"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab serveri"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Fayervol/Ruter"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internet geytveyi"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Xat-xabar/Yangiliklar"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix xat-xabar serveri, Inn yangiliklar serveri"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Direktoriya serveri"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP serveri"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "DNS va NIS"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Fayl va printerni bo'lishish serveri"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS serveri, Samba serveri"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Ma'lumot bazasi"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL va MySQL ma'lumot bazasi"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Xat-xabar"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix xat-xabar serveri"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL yoki MySQL ma'lumot bazasi"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Tarmoqdagi kompyuter (server)"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS serveri, SMB serveri, Proxy serveri, SSH serveri"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Grafik muhit"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE stantsiyasi"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "KDE - vositalar to'plami bilan birga asosiy grafik muhit"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME stantsiyasi"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Foydalanuvchilar uchun qulay dasturlar va ish stoli vositalaridan iborat "
+"grafik muhit"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm ish stoli"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Boshqa grafik ish stollari"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, va hokazo"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Vositalar"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH serveri"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin masofadan boshqarish serveri"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Tarmoq vositalari/Nazorat qilish"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr ""
+"Nazorat qilish vositalari, vazifalar hisobotchilari, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva yordamchilari"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Serverni moslash uchun yordamchilar"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Ba'zi bir muhim paketlar to'g'ri o'rnatilmadi.\n"
+"Sizning kompakt-disk uskunangizda yoki kompakt-diskingizda xato bor.\n"
+"Kompakt-diskni o'rnatilgan kompyuterda \"rpm -qpl media/main/*.rpm\" "
+"buyrug'i bilan tekshirib ko'ring.\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "%s bosqichga o'tilmoqda\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux OTni o'rnatish %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> banddan-bandga"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Paketlarni guruh bo'yicha tanlash"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Paketlarni bittama-bitta tanlash"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Jami: %d / %d Mb"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Yomon paket"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Versiyasi: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Hajmi: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d Kb\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Muhimligi: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Bu paketni tanlolmaysiz/tanlashni bekor qilolmaysiz"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "%s yetishmagani uchun"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr ""
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr ""
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "%s'ni qoldirish uchun"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Bu paketni tanlolmaysiz, chunki uni o'rnatish uchun yetarli joy mavjud emas."
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Quyidagi paketlar o'rnatiladi"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Quyidagi paketlar olib tashlaniladi."
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr ""
+"Bu o'rnatilishi shart bo'lgan paket, uni tanlashni bekor qilib bo'lmaydi."
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Bu paketni tanlashni bekor qilolmaysiz. U allaqachon o'rnatilgan."
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Bu paketni tanlashni bekor qilolmaysiz. U yangilanishi shart."
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Avtomatik ravishda tanlangan paketlarni ko'rsatish"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "O'rnatish"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Tanlanganni yuklash/saqlash"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Paketlar tanlovi yangilanmoqda"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Minimal o'rnatish"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Dasturlar boshqaruvi"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Siz o'rnatmoqchi bo'lgan paketlarni tanlang"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "O'rnatilmoqda"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Tafsilotlarsiz"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Qolgan vaqt "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Chamalanmoqda"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d-ta paket"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Hisobot"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Moslash"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "moslanmagan"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Quyidagi o'rnatish manbalari aniqlandi.\n"
+"Faqat tanlangan manbalar o'rnatish uchun ishlatiladi."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"O'rnatishdan avval kompakt-disklardagi paketlardan kompyuterning diskiga "
+"nusxa olish mumkin.\n"
+"O'rnatish to'liq tugagandan so'ng ular tizimga ma'lum bo'ladi."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Butun diskdan nusxa olish"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Xato ro'y berdi"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Iltimos tugmalar tartibini tanlang."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Mavjud bo'lgan tugmataglarning to'liq ro'yxati"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "O'rnatish/Yangilash"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Bu o'rnatishmi yoki yangilashmi?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "%s'ni yangilash"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "%s uchun kodlash kaliti"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE'ni moslash"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Kompakt-diskni almashtiring!\n"
+"\n"
+"Iltimos '%s' belgili kompakt-diskni qo'ying va \"Ok\" tugmasini bosing.\n"
+"Agar u sizda bo'lmasa, bu kompakt-diskdan o'rnatishni bekor qilish uchun "
+"\"Bekor qilish\" tugmasini bosing."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Mavjud bo'lgan paketlar qidirilmoqda..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"Tizimda o'rnatish yoki yangilash uchun yetarli joy qolmadi (%d Mb > %d Mb)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Yuklash"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Saqlash"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Noto'g'ri fayl"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Tanlangan hajm mavjud bo'lgan bo'sh joydan katta"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "O'rnatishning turi"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Siz hech qanday paketlar guruhini tanlamadingiz.\n"
+"Iltimos siz istagan minimal o'rnatishni tanlang:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "X bilan"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Asosiy qo'llanmalar bilan (tavsiya qilinadi!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Haqiqiy minimal o'rnatish (xususan urpmi'siz)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Hammasi"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "O'rnatishga tayyorlanmoqda"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "%s paketi o'rnatilmoqda"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Quyidagi paketlarni saralashda xato ro'y berdi:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Bunga qaramasdan davom etishni istaysizmi?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Qaytadan urinish"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "Bu paketga e'tibor berilmasin"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "\"%s\" to'plamidan hamma paketlarga e'tibor berilmasin"
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "O'rnatish manbalarni va paketlarni tanlashga qaytish"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "Quyidagi paketni o'rnatishda xato ro'y berdi: %s"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "O'rnatishdan keyin moslash"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Yangilanishlar"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"Mavjud bo'lgan paketlarning ro'yxatini olish uchun oyna bilan aloqa "
+"o'rnatilmoqda..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Oyna (%s)bilan aloqa o'rnatib bo'lmadi."
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Asbob-uskunalar"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Tovush karta"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Sizda ISA tovush kartasi bormi?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"O'rnatishdan keyin, tovush kartangizni moslash uchun, \"sndconfig\" yoki "
+"\"alsaconf\" dasturini ishga tushiring"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Tovush kartasi topilmadi. O'rnatishdan keyin \"harddrake\" dasturini sinab "
+"ko'ring."
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "TV karta"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Grafik interfeys"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Tarmoq va Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proksilar"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "moslangan"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Xavfsizlik darajasi"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Fayervol"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "ishlayapti"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "o'chirilgan"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Tizimni yuklanishi"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s %s'da"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Siz X'ni moslamadingiz. Rostdan buni istaysizmi?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "OT yuklagichi tayyorlanmoqda..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "aboot dasturidan foydalanishni istaysizmi?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Ushbu xavfsizlik daraja qo'llanilganda diskning Windows qismidagi fayllarga "
+"faqat administrator murojaat qilishi mumkin."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Bo'sh disketni %s uskunasiga qo'ying"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Avto-o'rnatish disketi yaratilmoqda..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Ba'zi o'rnatish bosqichlari bajarilmadi.\n"
+"\n"
+"Rostdan chiqishni istaysizmi?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Tabriklaymiz!"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "O'chirib-yoqish"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Avto-o'rnatish disketni yaratish"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Qaytarish"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Avtomatik"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Paketlar tanlovini saqlash"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Til"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Litsenziya"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Sichqoncha"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Qattiq diskni aniqlash"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "O'rnatish sinfi"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Tugmatag"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Xavfsizlik"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Diskni bo'lish"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Formatlash"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "O'rnatilishi kerak bo'lgan paketlarni tanlash"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "O'rnatilmoqda"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Tasdiqlash"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Foydalanuvchilar"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Tarmoq"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "OT yuklagichi"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "X serverini moslash"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Hisobot"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Xizmatlar"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Yangilanishlar"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Chiqish"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d-ta paket, %d Mb)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d paket"
diff --git a/perl-install/install/share/po/vi.po b/perl-install/install/share/po/vi.po
new file mode 100644
index 000000000..9b112e7b4
--- /dev/null
+++ b/perl-install/install/share/po/vi.po
@@ -0,0 +1,1608 @@
+# translation of DrakX-vi.po to
+# Vietnamese Translation for DrakX module.
+# Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
+# Trinh Minh Thanh <tmthanh@yahoo.com> 2001-2005.
+# Larry Nguyen <larry@vnlinux.org> 2005.
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX-vi version\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2005-06-02 21:17+0700\n"
+"Last-Translator: Larry Nguyen <larry@vnlinux.org>\n"
+"Language-Team: <gnomevi-list@lists.sourceforge.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Bạn còn phương tiện nào khác không?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Mạng (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Mạng (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr ""
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "URL của mirror?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr ""
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Đang kết nối với website của Mandriva Linux để lấy danh sách các mirrors "
+"hiệncó..."
+
+#: any.pm:234
+#, fuzzy, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Đang kết nối với website của Mandriva Linux để lấy danh sách các mirrors "
+"hiệncó..."
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Chọn một mirror để tải các gói về"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr ""
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr ""
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr ""
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Thư mục"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "Không thể tìm tập tin hdlist trên mirror này"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Kiểm tra các gói đã được cài đặt..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr ""
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Đang tìm các gói để nâng cấp"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Bạn đã chọn các máy chủ sau đây: %s\n"
+"\n"
+"\n"
+"Các máy chủ này sẽ được kích hoạt theo mặc định. Hiện giờ chưa có bất kỳ\n"
+"lỗi bảo mật nào được phát hiện, nhưng cũng có thể đã tìm ra một vài lỗi "
+"mới.\n"
+"Trong trường hợp đó, bạn phải nâng cấp càng sớm càng tốt.\n"
+"\n"
+"\n"
+"Bạn có thật sự muốn cài đặt các máy chủ này không?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Các gói tin sau đây sẽ được gỡ bỏ để cho phép nâng cấp hệ thống: %s\n"
+"\n"
+"\n"
+"Bạn có thật sự muốn gỡ bỏ các gói tin này không?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Đã đổi tên (các) đĩa sau:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (tên cũ là %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Mạng"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Hãy chọn phương tiện"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Tập tin tồn tại. Có ghi đè nó không?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Quyền hạn bị từ chối"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr ""
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Phương tiện hỏng %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Không thể tạo ảnh đĩa trước khi phân vùng"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Sẽ có ảnh chụp sau quá trình cài đặt trong %s"
+
+#: gtk.pm:136
+#, fuzzy, c-format
+msgid "Installation"
+msgstr "Đang cài đặt"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Cấu hình"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Cũng phải định dạng %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Một số phần cứng của máy tính cần các driver ``có bản quyền'' để hoạt động.\n"
+"Bạn có thể tìm thông tin về chúng tại: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Bật chức năng mạng"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Tắt chức năng mạng"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Đang tải về tập tin %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr ""
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Đang sao chép"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "phải có"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "quan trọng"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "rất tuyệt"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "tuyệt"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "có thể là"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr ""
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr ""
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr ""
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr ""
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr ""
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr ""
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr ""
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr ""
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr ""
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr ""
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr ""
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr ""
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr ""
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr ""
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr ""
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr ""
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr ""
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Máy trạm"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Văn phòng"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Các chương trình văn phòng: wordprocessors (OpenOffice.org Writer, Kword), "
+"spreadsheets (OpenOffice.org Calc, Kspread), chương trình xem PDF, v.v..."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Các chương trình văn phòng: wordprocessors (kword, abiword), spreadsheets "
+"(kspread, gnumeric), pdf viewers, v.v..."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Trò chơi"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Các chương trình giải trí: arcade, boards, strategy, v.v..."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Đa phương tiện"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Các chương trình chơi Audio-Video/soạn thảo"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internet"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr "Bộ công cụ đọc gửi thư tín và tin tức (mutt, tin..) và để duyệt Web"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Máy tính mạng (khách)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Máy khách cho các giao thức khác bao gồm ssh"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Công cụ xoá cấu hình máy tính của bạn"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Các công cụ console"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Các trình soạn thảo, các tiện ích tập tin, các thiết bị đầu cuối"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Phát triển"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr ""
+"Các thư viện phát triển C và C++, các chương trình và các tập tin đi kèm"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Tài liệu"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Các sách, how-to cho Linux và phần mềm miễn phí"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Cơ Sở Về Chuẩn Linux (LSB). Hỗ trợ ứng dụng cho hãng thứ ba."
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Máy chủ Web"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Groupware"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Máy chủ Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Tường lửa/Định tuyến"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Cổng kết nối Internet"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Mail/News"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix mail server, Inn news server"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Máy chủ thư mục"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Máy chủ FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Máy chủ thông tin mạng và tên miền"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Máy chủ chia sẻ máy in và tập tin"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "Máy chủ Samba, NFS"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Cơ sở dữ liệu"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Máy chủ cơ sở dữ liệu PostgreSQL và MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache và Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Thư"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Máy chủ thư Postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL hay MySQL máy chủ cơ sở dữ liệu"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Máy chủ mạng"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Máy chủ NFS, SMB, SSH, ủy nhiệm"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Môi trường đồ hoạ"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K Desktop Environment, một môi trường đồ họa với một sưu tập tiện ích đi kèm"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME Workstation"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Môi trường đồ họa thân thiện cho các ứng dụng và các tiện ích màn hình nền"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWm Desktop"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Các màn hình nền đồ hoạ khác"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, v.v..."
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Tiện ích"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Máy chủ SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Cấu hình máy chủ từ xa Webmin"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Giám sát và công cụ mạng"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Các công cụ theo dõi, quản lý tiến trình, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Đồ thuật Mandriva"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Đồ thuật cấu hình máy chủ"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Có lỗi xảy ra, không rõ cách giải quyết thích hợp.\n"
+"Tiếp tục với rủi ro."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Một số gói đã không được cài đặt đúng đắn.\n"
+"Có thể do ổ đĩa cdrom hoặc đĩa cdrom của bạn bị lỗi.\n"
+"Kiểm tra cdrom trên máy tính bằng \"rpm -qpl media/main/*.rpm\"\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Bắt đầu bước `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Cài đặt Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> giữa các phần tử"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Hệ thống của bạn có cấu hình thấp. Bạn có thể gặp một số trục trặc khi\n"
+"cài đặt Mandriva Linux. Nếu xảy ra lỗi, bạn có thể thay thế bằng kiểu cài "
+"đặt trong\n"
+"chế độ văn bản bằng cách nhấn phím `F1' khi khởi động từ CDROM, rồi nhập "
+"`text'."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Nhóm gói tin được chọn"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Chọn các gói riêng"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Kích thước toàn bộ: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Gói hỏng"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Phiên bản:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Kích thước:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Quan trọng:"
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Bạn không thể chọn/bỏ chọn gói này"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "vì thiếu %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "vì không thỏa mãn %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "thử xúc tiến %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "để giữ %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "Bạn không thể chọn gói này vì không còn đủ không gian để cài đặt"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Các gói sau đây sẽ được cài đặt"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Các gói sau đây sẽ được gỡ bỏ"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Bắt buộc cài đặt gói này, không thể bỏ chọn nó"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Bạn không thể bỏ chọn gói này. Nó được cài đặt rồi"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Bạn không thể không chọn gói này. Nó phải được nâng cấp."
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Tự động hiển thị các gói đã được chọn"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Cài đặt"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Nạp/Lưu lựa chọn"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Đang cập nhật sự lựa chọn các gói"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Cài đặt tối thiểu"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Quản Lý Phần Mềm"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Chọn các gói bạn muốn cài đặt "
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Đang cài đặt"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Không có thông tin"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Thời gian còn lại"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Đang ước lượng"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d các gói"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Tóm tắt"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Cấu hình"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "chưa được cấu hình"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Phát hiện thấy phương tiện cài đặt sau đây.\n"
+"Nếu không dùng, hãy bỏ chọn chúng."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Bạn có thể copy nội dung của các CD lên đĩa cứng trước khi thực hiện cài "
+"đặt.\n"
+"Sau đó tiếp tục tiến hành cài đặt từ đĩa cứng và các gói vẫn sẵn dùng ngay "
+"sau khi cài đặt xong hệ thống."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Sao chép toàn bộ CD"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Lỗi xảy ra"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Hãy chọn tổ chức bàn phím."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Đây là danh sách đầy đủ các bàn phím hiện có "
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Cài đặt/Nâng cấp"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Thực hiện việc cài đặt hay nâng cấp ?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Nâng cấp %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Khóa mã hóa cho %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Đang cấu hình IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Không còn không gian trống 1MB cho bootstrap! Vẫn tiếp tục cài đặt, nhưng để "
+"khởi động hệ thống, bạn cần tạo phân vùng bootstrap trong DiskDrake."
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Bạn cần tạo PPC PReP Boot bootstrap! Vẫn tiếp tục cài đặt, nhưng để khởi "
+"động hệ thống, bạn cần tạo phân vùng bootstrap trong DiskDrake."
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Đổi đĩa CD!\n"
+"\n"
+"Hãy nạp đĩa CD có nhãn \"%s\" vào ổ đĩa rồi nhấn OK.\n"
+"Nếu bạn không có, nhấn Bỏ qua để không chạy cài đặt từ đĩa này."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Đang tìm các gói hiện có"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Hãy chọn nạp hoặc lưu lựa chọn gói tin.\n"
+"Định dạng giống các tập tin auto_install được tạo."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Tải"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Lưu"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Tập tin lỗi"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Kích thước được chọn lớn hơn không gian hiện có"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Kiểu cài đặt"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Bạn đã không chọn bất kỳ một nhóm gói tin nào\n"
+"Hãy chọn việc cài đặt tối thiểu mà bạn muốn"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Với X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Với tài liệu cơ bản (khuyến nghị!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Cài đặt thật tối thiểu (đặc biệt là không có urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Toàn bộ"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Chuẩn bị cài đặt"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Đang cài đặt gói %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Lỗi khi đang xử lý các gói:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Vẫn cứ tiếp tục?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr ""
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "Lưu lựa chọn các gói"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "Lỗi khi đang cài đặt các gói:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Cấu hình sau khi cài đặt"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "Hãy đảm bảo là phương tiện Update Modules có trong drive %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Cập nhật"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Bây giờ bạn có thể tải xuống các gói cập nhật. Những gói này được cập nhật\n"
+"sau khi phát hành phân phối Mandriva Linux này. Chúng có thể\n"
+"là cập nhật sửa lỗi hay cập nhật bảo mật.\n"
+"\n"
+"Để tải về những gói này, bạn cần có một kết nối Internet hoạt động.\n"
+"\n"
+"Bạn có muốn cài đặt các gói cập nhật không ?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Đang kết nối với mirror để lấy danh sách các gói hiện có"
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Không thể kết nối được với mirror %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Phần cứng"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Card âm thanh"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Bạn có card âm thanh ISA không ?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Chạy lệnh \"alsaconf\" hoặc \"sndconfig\" sau khi cài đặt để cấu hìnhcard âm "
+"thanh"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Không phát hiện được card âm thanh nào. Hãy thử \"harddrake\" sau khi cài đặt"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Card TV"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Giao diện đồ họa"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Mạng & Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Proxies"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "đã cấu hình"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Mức Bảo Mật"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Tường lửa"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "Đã kích hoạt"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "Đã tắt"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Khởi động"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s trên %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "Chưa đặt cấu hình cho X. Bạn có chắc là muốn như vậy không ?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Đang chuẩn bị trình khởi động"
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"Bạn có máy tính đã quá cũ hoặc không được biết đến, trình khởi động yaboot "
+"sẽ không làm việc. Vẫn tiếp tục cài đặt, nhưng bạn sẽ cần sử dụng BootX hoặc "
+"phương tiện khác để khởi động máy tính. Đối số của kernel cho root fs là: "
+"root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Bạn có muốn sử dụng aboot không?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Lỗi khi cài đặt aboot, \n"
+"Cố gắng cài đặt kể cả khi nó có thể phá hỏng phân vùng đầu tiên?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Với mức bảo mật này, chỉ người quản trị mới có quyền truy cậpvào các tập tin "
+"trong phân vùng Windows."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Nạp một đĩa mềm trắng vào ổ %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Đang tạo đĩa mềm cài đặt tự động"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Một số bước chưa được hoàn thành.\n"
+"\n"
+"Bạn thực sự muốn thoát ra bây giờ?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Chúc mừng"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Khởi động lại"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Tạo đĩa mềm cài đặt tự động"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Cài đặt tự động có thể hoàn toàn tự động nếu\n"
+"muốn, trong trường hợp này nó sẽ tiếp nối ổ cứng!!\n"
+"(Nghĩa là tiến hành cài đặt lên một ổ khác).\n"
+"\n"
+"Có thể bạn thích diễn lại quá trình cài đặt.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Diễn lại"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Tự động"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Lưu lựa chọn các gói"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Chọn ngôn ngữ"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Giấy phép"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Chuột"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Dò tìm đĩa cứng"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr ""
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Bàn phím"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Bảo mật"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Phân vùng đĩa"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr ""
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr ""
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Đang cài đặt"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Xác nhận"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Người dùng"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Chạy mạng"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Trình nạp khởi động"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Cấu hình X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Tóm tắt"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Dịch vụ"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Cập nhật"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Thoát ra"
+
+#~ msgid "%d packages"
+#~ msgstr "%d các gói"
+
+#~ msgid "Language"
+#~ msgstr "Chọn ngôn ngữ"
+
+#~ msgid "License"
+#~ msgstr "Giấy phép"
+
+#, fuzzy
+#~ msgid "Installation class"
+#~ msgstr "Chọn kiểu cài đặt"
+
+#, fuzzy
+#~ msgid "Formatting"
+#~ msgstr "Đang ước lượng"
+
+#, fuzzy
+#~ msgid "Choosing packages"
+#~ msgstr "Chọn các gói cài đặt"
+
+#~ msgid "Users"
+#~ msgstr "Người dùng"
+
+#~ msgid "Networking"
+#~ msgstr "Chạy mạng"
+
+#~ msgid "Configure X"
+#~ msgstr "Cấu hình X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Không thể truy cập các mô-đun kernel tương ứng với kernel của bạn (thiếu "
+#~ "tập tin %s), thường là do đĩa mềm khởi động không đồng bộ với các phương "
+#~ "tiện cài đặt (hãy tạo một đĩa mềm khởi động mới hơn)"
diff --git a/perl-install/install/share/po/wa.po b/perl-install/install/share/po/wa.po
new file mode 100644
index 000000000..fb74b1f70
--- /dev/null
+++ b/perl-install/install/share/po/wa.po
@@ -0,0 +1,1642 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Pablo Saratxaga <pablo@mandriva.com>, 2000,2002,2003,2004,2006.
+# Lorint Hendschel <lorinthendschel@skynet.be>, 2002.
+# Lucyin Mahin <lucyin@walon.org>, 2002,2003,2005.
+# Pablo Saratxaga <pablo@walon.org>, 2003,2004,2005,2006.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2005-02-24 21:42+0100\n"
+"Last-Translator: Pablo Saratxaga <pablo@walon.org>\n"
+"Language-Team: Walloon <linux-wa@walon.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: KBabel 1.0.2\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "Avoz vs co ds ôtes sopoirts?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"Les sopoirts shuvants ont stî trovés eyet vont esse eployîs tins "
+"d' l' astalaedje: %s\n"
+"\n"
+"\n"
+"Avoz vs cor on sopoirt d' astalaedje a-z apontyî?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "Plake lazer"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "Rantoele (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "Rantoele (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "Rantoele (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "Hårdêye do muroe?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "Li hårdêye doet cmincî avou «ftp://» ou «http://»"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr ""
+"Dj' atôtche li waibe da Mandriva Linux po-z aveur li djivêye des muroes k' i "
+"gn a"
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr ""
+"Dji n' a savou atôtchî l' waibe da Mandriva Linux po-z aveur li djivêye des "
+"muroes k' i gn a"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Tchoezixhoz on muroe po nd aberweter des pacaedjes foû"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "Apontiaedje NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "Tapez l' no d' lodjoe eyet l' ridant di vosse sopoirt NFS"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "I manke li no d' lodjoe"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "Li ridant doet cmincî avou «/»"
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "No d' lodjoe do montaedje NFS?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "Ridant"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "Di rawete"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr ""
+"Dji n' sai trover l' djivêye di fitchîs so ç' muroe ci. Acertinez vs ki "
+"l' eplaeçmint est corek."
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "Dji cwir après les pacaedjes ki sont ddja astalés..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "Dji oistêye des pacaedjes divant d' fé l' metaedje a djoû..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Dji cwir après les pacaedjes a mete a djoû"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Vos avoz tchoezi le(s) sierveu(s) shuvant(s): %s\n"
+"\n"
+"\n"
+"Ces sierveus sront activés a l' enondaedje di l' éndjole. I n' ont nén\n"
+"di problinme di såvrité cnoxhou, mins i s' pôreut k' onk soeye trové el "
+"futeur.\n"
+"Dins ç' cas, vos dvroz a tot côp mete a djoû li pacaedje po esse a houte\n"
+"des problinmes.\n"
+"\n"
+"\n"
+"Voloz vs vormint astaler ces sierveus?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"Les pacaedjes shuvants vont esse oistés, po pleur mete a djoû vosse "
+"sistinme:\n"
+" %s\n"
+"\n"
+"Voloz vs vormint oister ces pacaedjes la?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "Les plakes shuvantes ont candjî d' no:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (lomêye divant %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "Rantoele"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "Tchoezixhoz on sopoirt s' i vs plait"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "Li fitchî egzistêye dedja. El voloz vs sipotchî?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "Permission rfuzêye"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "Måva no NFS"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "Måva sopoirt %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "Dji n' pou nén fé des waitroûlêyes divant l' pårtixhaedje"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Les waitroûlêyes seront metowes el ridant %s après l' astalaedje"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "Astalaedje"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "Apontiaedje"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "Vos dvoz abwesner eto %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Vos avoz di l' éndjolreye k' a mezåjhe di mineus «prôpietaire» po roter\n"
+"Vos trovroz di l' informåcion so zels so: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "Metant li rantoele en alaedje"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "Dj' arestêye li rantoele"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "Aberwetaedje do fitchî %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "Dji copeye sacwants pacaedjes sol deure plake po pus tård"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "Dji copeye..."
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "k' i fåt d' tote foice aveur"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "ki vént bén a pont"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "mo plaijhi a-z aveur"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "plaijhi a-z aveur"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "ki vénreut co bén a pont"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "ligne di prodûts 2007"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Côpe feu Invictus"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Môde «Discovery Live»"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "Kimint s' edjîstrer"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Siervices so les fyis di Mandriva"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "Novea tinme"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "Posse éndjolrece"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "Posse di buro"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"Programes di buro: aspougneus di tecse (OpenOffice.org Writer, Kword), "
+"tåvleus (OpenOffice.org Calc, Kspread), håyneus pdf, evnd."
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Programes di buro: aspougneus di tecse (kword, abiword), tåvleus (kspread, "
+"gnumeric), håyneus pdf, evnd."
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "Posse di djeus"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Programes pasmints d' tins: årcåde, plateas, stratedjeye, evnd."
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "Posse multimedia"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "Programes po vey/schoûter/candjî des sons et videyos"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Posse pol rantoele daegnrece"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr ""
+"Eshonna d' usteyes po lére et evoyî des messaedjes (pine, mutt, tin...) et "
+"po naivyî so les pådjes waibe"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "Copiutrece rantoele (cliyint)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "Cliyints po les protocoles k' i gn a (ssh avou)"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "Usteyes po vos aveur pus åjhey d' apontyî vosse copiutrece"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Usteyes pol conzôle"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "Aspougneus, shells, usteyes po fitchîs, terminås"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "Programaedje"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Livreyes di programaedje C et C++, programes et fitchîs *.h"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "Documintåcion"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Lives et Howtos so GNU/Linux et les libes programes"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Li «Linux Standard Base». Sopoirt po les programes tîces"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Sierveu waibe"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "Ovraedje e groupe"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Sierveu Kolab"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "Côpe feu/Routeu"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Pasrele pol rantoele daegnrece"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "Emilaedje/Copinreyes"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Sierveu d' emilaedje postfix, sierveu d' copinreyes INN"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "Sierveu d' botins"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "Sierveu FTP"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "Sierveu di nos d' dominne eyet d' informåcion rantoele"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "Sierveu di pårtaedje di fitchîs eyet di scrireces"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "Sierveu NFS, sierveu Samba"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "Sierveu, båzes di dnêyes"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "Sierveu båze di dnêyes PostgreSQL eyet MySQL"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Sierveu, Waibe/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache eyet Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "Emilaedje"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Sierveu d' emilaedje postfix"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "Sierveu båze di dnêyes PostgreSQL ou MySQL"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "Copiutrece sierveu sol rantoele"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Sierveu NFS, sierveu SMB, sierveu procsi, sierveu SSH"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "Evironmint grafike"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "Posse éndjolrece KDE"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"L' evironmint di scribanne KDE, l' evironmint grafike di båze, avou ene "
+"ramexhnêye d' usteyes ki vnèt avou"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "Posse éndjolrece GNOME"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Èn evironmint grafike avou on hopea di programes amiståves et d' usteyes pol "
+"sicribanne"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "Sicribanne IceWm"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "Ôtes sicribannes grafikes"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker, Enlightenment, Fvwm, evnd."
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "Usteyes"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "Sierveu SSH"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Sierveu d' apontiaedje då lon Webmin"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "Usteyes rantoele/Corwaitaedje"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "Usteyes di corwaitaedje, contaedje des process, tcpdump, nmap, ..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Macreas Mandriva"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "Macreas po-z apontyî on sierveu"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Åk n' a nén stî, et dji n' sai cmint m' saetchî l' cou foû des\n"
+"strons. Si vos continouwez, vos dvroz tirer vosse plan tot seu."
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"Sacwants consecants pacaedjes n' ont nén stî astalés comifåt.\n"
+"Motoit vosse lijheu di plakes lazer, oudonbén vosse plake lazer, ont\n"
+"des rujhes.\n"
+"Verifyîz vosse plake lazer sor ene copiutrece ddja astalêye, avou\n"
+"l' comande «rpm -qpl media/main/*.rpm»\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Intrant e l' etape '%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Astalåcion di Mandriva Linux %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> candjî elemints"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Vosse sistinme a po di rsources. Vos pôrîz aveur des rujhes po\n"
+"l' astalåcion di Mandriva Linux. Si çoula arive, vos ploz sayî ene\n"
+"astalåcion e môde tecse. Po çoula, tchoûkîz sol tape «F1» a l' enondaedje\n"
+"et poy tapez «text»."
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "Tchoezi les groupes di pacaedjes"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "Tchoezi tchaeke pacaedje sepårumint"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Grandeu å totå: %d / %d Mo"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "Måva pacaedje"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "Modêye: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "Grandeu: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d Ko\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "Impôrtance: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "Vos n' poloz nén tchoezi/distchoezi ci pacaedje chal"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "cåze di %s ki manke"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "cåze di %s ki n' est nén satisfyî"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "dji saye di promouvwer %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "po wårder %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr ""
+"Vos n' poloz tchoezi ci pacaedje chal ca n' a nén del plaece assez ki po "
+"l' astaler"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Les pacaedjes ki shuvèt vont esse astalés"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Les pacaedjes ki shuvèt vont esse disastalés"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "Ci pacaedje est obligatwere, vos n' poloz nén li distchoezi"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "Vos n' poloz nén distchoezi ci pacaedje chal. Il est ddja astalé"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "Vos n' poloz nén distchoezi ci pacaedje chal. I l' fåt mete a djoû"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Mostrer les pacaedjes tchoezis otomaticmint"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "Astalaedje"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "Tcherdjî/schaper li tchuze des pacaedjes"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "Metaedje a djoû del tchuze des pacaedjes"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "Astalåcion minimåle"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "Manaedjaedje di programes"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Tchoezixhoz les pacaedjes k' vos voloz astaler"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "Astalant"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "Po vey les rclames"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "Tins ki dmeure "
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "Dj' asteme"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d pacaedje"
+msgstr[1] "%d pacaedjes"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "Rascourti éndjolreye"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "Apontyî"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "nén apontyî"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"Les sopoirts d' astalaedje shuvants ont stî trovés.\n"
+"Si vos vloz passer houte di sacwants d' zels, vos les ploz asteure "
+"distchoezi."
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"Vos ploz copyî l' contnou des plakes lazer so vosse deure plake divant "
+"d' ataker l' astalaedje.\n"
+"L' astalaedje si frè-st adon a pårti del deure plake, eyet les pacaedjes "
+"vont dmorer disponibes on côp ki l' sistinme serè astalé."
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "Copyî les plakes lazer en etir"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "Dj' aroke so ene sacwè"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Tchoezixhoz li sôre di vosse taprece."
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "Vochal li djivêye di totes les tapreces k' on pout tchoezi"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "Astaler/Mete a djoû"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "C' est ene astalåcion ou on metaedje a djoû?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "Metaedje a djoû di %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "Clé d' ecriptaedje po %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "Apontiant les éndjins IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"I gn a pont del plaece po on secteu d' enondaedje di 1 Mo! L' astalåcion "
+"continouwrè, mins i vos fårè fé li pårticion d' enondaedje avou DiskDrake po "
+"poleur enonder vosse sistinme."
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"Vos dvoz ahiver on secteu d' enondaedje PPC PReP! L' astalåcion continouwrè, "
+"mins i vos fårè fé li pårticion d' enondaedje avou DiskDrake po poleur "
+"enonder vosse sistinme."
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Candjîz vosse CDROM!\n"
+"\n"
+"Metoz li CDROM lomé «%s» dvins l' lijheu, s' i vs plait;\n"
+"et clitchîz so «'l est bon» on côp ki c' est fwait.\n"
+"Si vos n' l' avoz nén, clitchîz so «Rinoncî» po rinoncî a astaler a pårti\n"
+"di ci CDROM chal."
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Dji cwir après les pacaedjes k' i gn a"
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+"I gn a pus del plaece assez so vosse sistinme po-z astaler ou mete a djoû (%"
+"dMo > %dMo)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"Tchoezixhoz si vos vloz tcherdjî ou schaper li tchuze des pacaedjes.\n"
+"Li cogne est l' minme ki po les fitchîs fwaits po l' oto-astalaedje."
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "Tcherdjî"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "Schaper"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "Måva fitchî"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Li grandeu tchoezeye est pus grande kel plaece ki dmeure"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "Sôre d' astalaedje"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Vos n' avoz tchoezi nou groupe di pacaedjes\n"
+"Tchoezixhoz li sôre d' astalåcion minimom ki vos vloz"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "Avou X11"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "Avou li documintåcion di båze (ricomandé!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Astalåcion vormint minimom (i gn a nén di urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "Totafwait"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "Dj' aprestêye l' astalaedje"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "Dj' astale li pacaedje %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Åk n' a nén stî come dj' arindjive les pacaedjes:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "Dji continouwe tot l' minme?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "Rissayî"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "Passer houte di ç' pacaedje ci"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "Passer houte di tos les pacaedjes do sopoirt «%s»"
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "Rivni al tchuze des pacaedjes et des sopoirts"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "Åk n' a nén stî come dj' astaléve li pacaedje %s."
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "Apontiaedje di post-astalåcion"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr ""
+"Acertinez vs ki l' sopoirt di metaedje a djoû des modules est dins l' lijheu "
+"%s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "Metaedjes a djoû"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"Vos avoz l' possibilité d' aberweter les pacaedjes k' on stî metous\n"
+"a djoû dispoy li fijhaedje del distribucion.\n"
+"I pôrént coridjî des bugs ou des problinmes di såvrité.\n"
+"\n"
+"Po ls aberweter, vos dvoz aveur on raloyaedje al daegntoele ki rote.\n"
+"\n"
+"Voloz vs astaler les pacaedjes metous a djoû?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Dj' atôche li muroe po-z aveur li djivêye des pacaedjes"
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "Dji n' a savou m' raloyî å muroe %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "Éndjolreye"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "Cåte son"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Avoz vs ene cåte son ISA?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"Enondez «alsaconf» ou «sndconfig» après l' astalåcion po-z apontyî vosse "
+"cåte son"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Nole cåte son di detectêye. Sayîz «harddrake» après l' astalåcion"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "Cåte tévé"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "Eterface grafike"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "Rantoele locåle & daegnrece"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "Procsis"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "apontyî"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "Livea di såvrité"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "Côpe feu"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "metou en alaedje"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "dismetou"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "Enondaedje"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%s so %s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
+"Vos n' avoz nén apontyî X11 (li sistinme di håynaedje grafike).\n"
+"Estoz vs seur di voleur çoula?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Dj' aprestêye l' enondrece"
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"I shonne ki voste éndjole est pår trop viye oudonbén k' ele nén cnoxhowe; "
+"adon l' enondrece yaboot ni rotrè nén por vos. L' astalaedje va continouwer, "
+"mins vos dvroz eployî BootX ou ôte tchoi po-z enonder voste éndjole. "
+"L' årgumint a passer å nawea pol pårticion raecene est: root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Voloz vs eployî aboot?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Åk n' a nén stî tot astalant aboot, \n"
+"voloz vs ki dji saye di foirci l' astalåcion, minme si çoula pout\n"
+"distrure li prumire pårticion?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr ""
+"Dins ç' livea di såvrité chal, l' accès åzès fitchîs des pårticions Windows "
+"n' est possibe ki po l' manaedjeu di l' éndjole."
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Metoz ene blanke plakete divins li lijheu %s"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Dji fé li plakete d' enondaedje otomatike"
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Sacwantès etapes n' ont nén stî fwaites,\n"
+"\n"
+"Voloz vs vormint cwiter asteure?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "Complumints"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "Renonder l' éndjole"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Fé li plakete d' astalaedje otomatike"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"L' astalaedje pout esse totafwait otomatike si vos vloz,\n"
+"dins ci cas i va abwesner totafwait li deure plake!!\n"
+"(dj' ô bén c' est po-z astaler sor ene nouve éndjole).\n"
+"\n"
+"Motoit ki vos vloz rifé l' astalåcion.\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "Rifé"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "Otomatike"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "Schaper li tchuze des pacaedjes"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "Lingaedje"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "Licince"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "Sori"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "Trover les deurès plakes"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "Li classe d' astalåcion"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "Taprece"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "Såvrité"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "Pårtixhaedje"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "Abwesnaedje"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "Tchoezi les pacaedjes"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "Astalant"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "Otintifiaedje"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "Uzeus"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "Rantoele"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "Enondrece"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "Apontyî X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "Rascourti éndjolreye"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "Siervices"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "Metaedjes a djoû"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "Moussî foû"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d pacaedje, %d Mo)"
+#~ msgstr[1] "(%d pacaedjes, %d Mo)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d pacaedjes"
+
+#~ msgid "Language"
+#~ msgstr "Lingaedje"
+
+#~ msgid "License"
+#~ msgstr "Licince"
+
+#~ msgid "Installation class"
+#~ msgstr "Li classe d' astalåcion"
+
+#~ msgid "Formatting"
+#~ msgstr "Abwesnaedje"
+
+#~ msgid "Choosing packages"
+#~ msgstr "Tchoezi les pacaedjes"
+
+#~ msgid "Users"
+#~ msgstr "Uzeus"
+
+#~ msgid "Networking"
+#~ msgstr "Rantoele"
+
+#~ msgid "Configure X"
+#~ msgstr "Apontyî X"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "Dji n' sai vey les modules po vosse nawea (i gn a pont d' fitchî %s), "
+#~ "çoula vout probåblumint dire ki vosse plakete d' enondaedje n' a nén stî "
+#~ "fwait pol sopoirt d' astalaedje ki vos vloz eployî. Vos dvrîz fé ene "
+#~ "nouve plakete, a pårti des imådjes ki vnèt avou li modêye di Mandriva "
+#~ "Linux ki vos vloz astaler"
diff --git a/perl-install/install/share/po/zh_CN.po b/perl-install/install/share/po/zh_CN.po
new file mode 100644
index 000000000..180b1eb7e
--- /dev/null
+++ b/perl-install/install/share/po/zh_CN.po
@@ -0,0 +1,1552 @@
+# drakx messages in Simplified Chinese
+# Danny Zeng <danny@zeng.com.cn>, 2000, 2002
+# Jesse Kuang <kjx@mandriva.com>, 2002
+# Shiyu Tang <shiyutang@netscape.net>, 2003, 2004
+# Funda Wang <fundawang@linux.net.cn>, 2002, 2003, 2004, 2005
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX 2007\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2006-08-25 18:54+0800\n"
+"Last-Translator: Funda Wang <fundawang@linux.net.cn>\n"
+"Language-Team: Mandriva Linux i18n Team <cooker-i18n@mandrivalinux.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "您有其它赠品介质吗?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"找到了下列介质,并且在安装时会使用:%s。\n"
+"\n"
+"\n"
+"您是否想要配置赠品安装介质?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "网络 (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "网络 (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "网络 (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "镜像的 URL?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "URL 必须以 ftp:// 或 http:// 开始"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr "正在连接 Mandriva Linux 网站获得可用镜像的列表..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr "连接 Mandriva Linux 网站以获得可用镜像的列表失败"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "选择一个镜像网站来取得软件包"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "NFS 设置"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "请输入您 NFS 介质的主机名和目录"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr "缺少主机名"
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr "目录必须以“/”开头"
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "NFS 挂载的主机名?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "目录"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr "赠品"
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "无法在此镜像上找到软件包列表文件。请确定位置正确。"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "正在查找已经安装过的软件包..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "正在删除由于更新所致的软件包..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "正在寻找可升级的程序..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"您选择了以下服务器: %s\n"
+"\n"
+"\n"
+"这些服务器默认会被激活。它们没有已知的安全问题, 但可能发现新问题。如果那样, "
+"您一定要立即升级。\n"
+"\n"
+"\n"
+"您真要安装这些服务器吗?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"为了升级您的系统, 将要删除下列的软件包: %s\n"
+"\n"
+"\n"
+"您确定要删除这些软件包吗?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "下列盘片已重命名:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s(以前的名称为 %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "网络"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "请选择介质"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "文件已经存在。覆盖吗?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "没有权限"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "无效的 NFS 名称"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "无效的介质 %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "无法在分区完成之前进行屏幕捕捉"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "安装完成后, 所有的屏幕抓图都会保存到 %s 之中"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "安装"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "配置"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "您还必须格式化 %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"您系统中的部分硬件需要“私有”的驱动程序才能工作。\n"
+"有关它们的情况, 请您查看: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "正在启动网络"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "正在禁用网络"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "正在下载文件 %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "正在将软件包复制到磁盘中以备后用"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "复制进行中"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "必须拥有"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "非常重要"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "比较重要"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "一般"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "或许有用"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "2007 产品线"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "防火城"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery Live 模式"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "如何注册"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva 在线服务"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "全新主题"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "卡巴斯基"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "工作站"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "办公工作站"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"办公程序: 字处理(OpenOffice.org Writer、Kword), 电子表格(OpenOffice.org "
+"Calc、Kspread)、PDF 阅读器等"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"办公程序: 字处理(kword、abiword), 电子表格(kspread、gnumeric)、pdf 阅读器等"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "游戏机"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "游戏程序: 街机、棋盘、战略等等"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "多媒体工作站"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "声音和视频播放/编辑程序"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "Internet 工作站"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr "一组工具, 用于收发电子邮件及新闻组(mutt, tin..), 浏览网站"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "网络计算机(客户端)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "SSH 等不同协议客户端"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "简化计算机配置的工具"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "控制台工具"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "编辑器, shell, 文件工具, 终端"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "开发"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C 和 C++ 开发库, 程序及头文件"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "文档"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "有关 Linux 和自由软件的书籍和指南"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base。第三方应用程序支持"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "Web 服务器"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "群件"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab 服务器"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "防火墙/路由器"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "Internet 网关"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "邮件/新闻"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix 邮件服务器、Inn 新闻服务器"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "目录服务器"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP 服务器"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "域名和网络信息服务器"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "文件和打印机共享服务器"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS 服务器、Samba 服务器"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "数据库"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL 和 MySQL 数据库服务"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache 和 Pro-ftpd"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "邮件"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix 邮件服务器"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL 或 MySQL 数据库服务"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "网络计算机服务器"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS 服务器, SMB 服务器, 代理服务器, SSH 服务器"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "图形环境"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE 工作站"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "KDE 桌面环境, 基本的图形环境和一组配套的工具"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME 工作站"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "配备了用户友善的应用程序与桌面工具的图形环境"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWM 桌面"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "其它图形桌面"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker、Enlightenment、Fvwm 等"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "工具"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH 服务器"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin 远程配置服务器"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "网络工具/监视"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "监视工具、进程统计、tcpdump、nmap……"
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva 向导"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "服务器配置向导"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"发生错误, 可是我不知道该怎样处理才好。\n"
+"继续下去会怎样就看您的运气了。"
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"一些重要软件包没有正确的安装。\n"
+"您的光盘或者驱动器可能有缺陷。\n"
+"请在一台安装好的电脑上检查光盘, 命令是“rpm -qpl media/main/*.rpm”\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "进入步骤“%s”\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux 安装 %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> 可在元素间切换"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"您系统的资源过低。您在安装 Mandriva Linux 的过程中可能遇到问题。\n"
+"如果您真的遇到问题的话,可以试试文本安装。要进入文本安装,请在启动时按“F1”,"
+"然后输入“text”。"
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "程序组选择"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "选择单个软件包"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "总共大小: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "有错的软件包"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "版本: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "大小: "
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "重要程度: "
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "您不能改变这个软件包的选定"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "由于缺少 %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "由于不满足的 %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "尝试推广 %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "为了保留 %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "您不可以选择这个软件包。没有足够空间安装它。"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "即将安装下列软件包"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "即将卸载下列软件包"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "这个软件包是必需的, 不能取消选定"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "您不可以取消选择这个软件包。它已经安装过了"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "您不能不选择这个软件包。它必须升级"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "自动显示选中的软件包"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "安装"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "装入/保存选择"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "更新软件包选择"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "最小安装"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "软件管理"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "选择您想要安装的软件包"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "安装"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "无细节"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "剩余时间"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "正在估计"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d 个软件包"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "摘要"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "配置"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "未配置"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"找到了下列安装介质。\n"
+"如果您想要跳过其中一些, 请不要选中。"
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"您可以选择在安装之前将光盘的全部内容复制到硬盘中。\n"
+"然后,安装将会从硬盘继续进行。当系统安装完成后,软件包仍然保留,以供日后添加"
+"软件使用。"
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "复制整张光盘"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "发生了一个错误"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "请选择您使用的键盘布局。"
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "在此列出了可用的全部键盘"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "安装/升级"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "现在要新装还是升级?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "升级 %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "%s 的加密密钥"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "配置 IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"无法创建启动空间(1MB)!安装将继续, 但如需启动系统, 您可用“Drak 磁盘管理”创建"
+"启动分区"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"您需要创建一个 PPC PReP 启动空间!安装将继续, 但如需启动系统, 您可用“Drak 磁"
+"盘管理”创建启动分区"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"请换另一片光盘!\n"
+"\n"
+"请在驱动器中插入标有“%s”的光盘, 然后单击“确定”。\n"
+"如果您没有这张光盘, 请单击“取消”, 放弃安装这张光盘上的软件。"
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "正在寻找可安装的程序..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr "系统的剩余空间不足以完成安装或升级(%d MB > %d MB)"
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"请选择装入或保存软件包选择息。\n"
+"格式与自动安装生成的文件一样。"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "装入"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "保存"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "文件有错"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "您选择的超过可用空间"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "安装类型"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr "您没有选择任何的组件, 请选择最小安装:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "安装 X"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "安装基础文档(建议!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "真正最小安装(注意没有 urpmi 包管理工具)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "全部"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "正在准备安装"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "正在安装软件包 %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "排列软件包时出错: "
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "真的要继续?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "重试"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr "跳过此软件包"
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr "通过介质“%s”中的全部软件包"
+
+#: steps_interactive.pm:583
+#, c-format
+msgid "Go back to media and packages selection"
+msgstr "返回介质和软件包选择"
+
+#: steps_interactive.pm:586
+#, c-format
+msgid "There was an error installing package %s."
+msgstr "安装软件包 %s 时出错。"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "安装后的配置"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "请确定更新模块介质位于驱动器 %s"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "更新"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"您现在有机会下载软件更新包。更新软件包是在发行版发布之后发布的。它们可能包含"
+"对一些安全问题或故障的修改。\n"
+"\n"
+"要下载这些软件包, 您的网络连接必须已经配置好并且可以使用。\n"
+"\n"
+"您是否要安装升级包?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "正在连接镜像网站以取得可供安装的软件包的列表..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "无法连接镜像 %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "硬件"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "声卡"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "您有 ISA 声卡吗?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr "安装之后运行“alsaconf”或“sndconfig”来配置您的声卡"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "没有检测到声卡。请在安装之后尝试“Drak 硬件配置”。"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "电视卡"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "图形界面"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "网络和 Internet"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "代理服务器"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "已配置"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "安全级别"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "防火墙"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "已激活"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "已禁用"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "启动"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "位于 %2$s 上的 %1$s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "您还没有配置过 X。您真的想要这样吗?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "正在准备引导程序..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"看来您用的是老掉牙或不认识的机器, yaboot 启动引导程序无法为您工作。安装将继"
+"续, 不过您需要使用 BootX 或其它方式启动您的机器。根文件系统的内核参数是:"
+"root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "您要使用 aboot 吗?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"安装 aboot 时出错, \n"
+"强迫安装会毁坏第一个分区, 要继续吗?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr "在此安全级别中, 只有管理员才能访问 Windows 分区中的文件。"
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "请在驱动器 %s 中插入一张空白软盘"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "正在创建自动安装软盘..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"某些步骤没有完成。\n"
+"\n"
+"您真的要现在退出吗?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "恭喜"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "重新启动"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "生成自动安装软盘"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"如果需要的话, 自动安装可以完全自动执行。\n"
+"但此时, 安装程序将会接管硬盘!!\n"
+"(只对在另外的计算机上安装而言)。\n"
+"\n"
+"您可能愿意重现安装过程。\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "重现"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "自动"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "保存软件包选择"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "语言"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "许可"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "鼠标"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "硬盘检测"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "安装类别"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "键盘"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "安全"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "分区"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "格式化"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "选择软件包"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "安装"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "身份验证"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "用户"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "联网"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "引导程序"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "配置 X"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "摘要"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "服务"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "更新"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "退出"
diff --git a/perl-install/install/share/po/zh_TW.po b/perl-install/install/share/po/zh_TW.po
new file mode 100644
index 000000000..e7c17f605
--- /dev/null
+++ b/perl-install/install/share/po/zh_TW.po
@@ -0,0 +1,1609 @@
+# translation of zh_TW.po to 正體中文
+# translation of zh_TW.po to Chinese Traditional
+# translation of DrakX-zh_TW.po to Chinese Traditional
+# drakbootdisk messages in Traditional Chinese
+# Copyright (C) 2000, 2003, 2004 Free Software Foundation, Inc.
+# Platin <platin@cle.linux.org.tw> , 2000
+# Kenduest Lee <kenduest@i18n.linux.org.tw> , 2002
+# Danny Zeng <danny@zeng.com.cn>, 2000.
+# Joe Man <trmetal@yahoo.com.hk>, 2001.
+# Chong Sein Yeo <csyeo@hal-pc.org>, 2003.
+# Hilbert <freehil@yahoo.com>, 2003, 2004.
+# Hilbert <h@mandrake.org>, 2004.
+# hilbert <h@mandrake.org>, 2004.
+# Shiva Huang <blueshiva@giga.net.tw>, 2005.
+# Shiva Huang <shivahuang@gmail.com>, 2005, 2006
+# You-Cheng Hsieh <yochenhsieh@xuite.net>, 2005, 2006.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: DrakX\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:07+0100\n"
+"PO-Revision-Date: 2006-09-14 09:46+0800\n"
+"Last-Translator: Shiva Huang <shivahuang@gmail.com>\n"
+"Language-Team: Traditional Chinese <zh@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3.1\n"
+"X-Poedit-Language: Chinese\n"
+"X-Poedit-Country: TAIWAN\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: any.pm:159
+#, c-format
+msgid "Do you have further supplementary media?"
+msgstr "您還有其他的補充媒介嗎?"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:162
+#, c-format
+msgid ""
+"The following media have been found and will be used during install: %s.\n"
+"\n"
+"\n"
+"Do you have a supplementary installation medium to configure?"
+msgstr ""
+"已經找到下列媒介,它們將會在安裝過程中使用到:%s。\n"
+"\n"
+"\n"
+"您有其他的安裝媒介需要設定嗎?"
+
+#: any.pm:170
+#, c-format
+msgid "CD-ROM"
+msgstr "CD-ROM"
+
+#: any.pm:171
+#, c-format
+msgid "Network (HTTP)"
+msgstr "網路 (HTTP)"
+
+#: any.pm:172
+#, c-format
+msgid "Network (FTP)"
+msgstr "網路 (FTP)"
+
+#: any.pm:173
+#, c-format
+msgid "Network (NFS)"
+msgstr "網路 (NFS)"
+
+#: any.pm:212
+#, c-format
+msgid "URL of the mirror?"
+msgstr "映像站的 URL?"
+
+#: any.pm:218
+#, c-format
+msgid "URL must start with ftp:// or http://"
+msgstr "URL 開頭必須是 ftp:// 或 http://"
+
+#: any.pm:229
+#, c-format
+msgid ""
+"Contacting Mandriva Linux web site to get the list of available mirrors..."
+msgstr "正在連結到 Mandriva Linux 網站查詢可用的映射站台..."
+
+#: any.pm:234
+#, c-format
+msgid ""
+"Failed contacting Mandriva Linux web site to get the list of available "
+"mirrors"
+msgstr "無法連結到 Mandriva Linux 網站取得可用的映射站台"
+
+#: any.pm:244
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "選取要用來抓取程式套件檔的 FTP 映射站台"
+
+#: any.pm:274
+#, c-format
+msgid "NFS setup"
+msgstr "設定 NFS"
+
+#: any.pm:275
+#, c-format
+msgid "Please enter the hostname and directory of your NFS media"
+msgstr "請輸入您的 NFS 媒介的主機和目錄名稱"
+
+#: any.pm:279
+#, c-format
+msgid "Hostname missing"
+msgstr ""
+
+#: any.pm:280
+#, c-format
+msgid "Directory must begin with \"/\""
+msgstr ""
+
+#: any.pm:284
+#, c-format
+msgid "Hostname of the NFS mount ?"
+msgstr "NFS 掛載點的主機名稱?"
+
+#: any.pm:285
+#, c-format
+msgid "Directory"
+msgstr "目錄"
+
+#: any.pm:307
+#, c-format
+msgid "Supplementary"
+msgstr ""
+
+#: any.pm:342
+#, c-format
+msgid ""
+"Can't find a package list file on this mirror. Make sure the location is "
+"correct."
+msgstr "無法在這個映像站上找到套件列表檔。請確定位址是正確的。"
+
+#: any.pm:376
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "正在查看已經安裝過的套件..."
+
+#: any.pm:383
+#, c-format
+msgid "Removing packages prior to upgrade..."
+msgstr "移除套件以更新..."
+
+#: any.pm:426
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "正在搜尋要升級的套件..."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:636
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They do not have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"您已經選擇了下面的伺服器:%s\n"
+"\n"
+"\n"
+"這些伺服器安裝好後預設是啟用的。他們沒有任何已知的安全性問題,\n"
+"但是某些新的安全性問題或許會被發現。在這種情況下,請您一定要儘快更新。\n"
+"\n"
+"\n"
+"您確定真的要安裝這些伺服器嗎?\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: any.pm:659
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+"下列套件將被移除以升級您的系統:%s\n"
+"\n"
+"\n"
+"您確定要移除這些套件嗎?\n"
+
+#: any.pm:1081
+#, c-format
+msgid "The following disk(s) were renamed:"
+msgstr "下列磁碟已經改名:"
+
+#: any.pm:1083
+#, c-format
+msgid "%s (previously named as %s)"
+msgstr "%s (原本為 %s)"
+
+#: any.pm:1140
+#, c-format
+msgid "HTTP"
+msgstr "HTTP"
+
+#: any.pm:1140
+#, c-format
+msgid "FTP"
+msgstr "FTP"
+
+#: any.pm:1140
+#, c-format
+msgid "NFS"
+msgstr "NFS"
+
+#: any.pm:1159 steps_interactive.pm:840
+#, c-format
+msgid "Network"
+msgstr "網路"
+
+#: any.pm:1163
+#, c-format
+msgid "Please choose a media"
+msgstr "請選擇一個媒介"
+
+#: any.pm:1179
+#, c-format
+msgid "File already exists. Overwrite it?"
+msgstr "檔案已經存在了。要覆蓋它嗎?"
+
+#: any.pm:1183
+#, c-format
+msgid "Permission denied"
+msgstr "權限不足"
+
+#: any.pm:1231
+#, c-format
+msgid "Bad NFS name"
+msgstr "錯誤的 NFS 名稱"
+
+#: any.pm:1252
+#, c-format
+msgid "Bad media %s"
+msgstr "損壞的媒介 %s"
+
+#: any.pm:1294
+#, c-format
+msgid "Can not make screenshots before partitioning"
+msgstr "在尚未進行分割前無法提供畫面捕捉功能"
+
+#: any.pm:1301
+#, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "在安裝後您可以於 %s 取得螢幕截圖"
+
+#: gtk.pm:136
+#, c-format
+msgid "Installation"
+msgstr "安裝"
+
+#: gtk.pm:139 share/meta-task/compssUsers.pl:54
+#, c-format
+msgid "Configuration"
+msgstr "組態設定"
+
+#: install2.pm:165
+#, c-format
+msgid "You must also format %s"
+msgstr "您也必須要格式化 %s"
+
+#: interactive.pm:16
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"某些在您電腦上的硬體需要 \"專有版權\" 的驅動程式以便於能夠工作。\n"
+"您可以在這裡找到一些相關的資訊: %s"
+
+#: interactive.pm:22
+#, c-format
+msgid "Bringing up the network"
+msgstr "啟動網路"
+
+#: interactive.pm:27
+#, c-format
+msgid "Bringing down the network"
+msgstr "關閉網路"
+
+#: media.pm:697 media.pm:706
+#, c-format
+msgid "Downloading file %s..."
+msgstr "正在下載檔案 %s..."
+
+#: media.pm:798
+#, c-format
+msgid "Copying some packages on disks for future use"
+msgstr "正在複製一些程式套件到磁碟以供稍後使用"
+
+#: media.pm:851
+#, c-format
+msgid "Copying in progress"
+msgstr "複製進行中"
+
+#: pkgs.pm:27
+#, c-format
+msgid "must have"
+msgstr "必備的"
+
+#: pkgs.pm:28
+#, c-format
+msgid "important"
+msgstr "重要的"
+
+#: pkgs.pm:29
+#, c-format
+msgid "very nice"
+msgstr "極好的"
+
+#: pkgs.pm:30
+#, c-format
+msgid "nice"
+msgstr "好的"
+
+#: pkgs.pm:31
+#, c-format
+msgid "maybe"
+msgstr "或許"
+
+#: share/advertising/ARKEIA_EN.pl:3 share/advertising/ARKEIA_FR.pl:3
+#, c-format
+msgid "Arkeia"
+msgstr "Arkeia"
+
+#: share/advertising/FLATOUT.pl:3
+#, c-format
+msgid "Flatout"
+msgstr "Flatout"
+
+#: share/advertising/IM-GWENVIEW.pl:3
+#, c-format
+msgid "Gwenview"
+msgstr "Gwenview"
+
+#: share/advertising/IM_3D.pl:3
+#, c-format
+msgid "3D"
+msgstr "3D"
+
+#: share/advertising/IM_CMSJOOMLA.pl:3
+#, c-format
+msgid "CMS"
+msgstr "CMS"
+
+#: share/advertising/IM_CRM.pl:3
+#, c-format
+msgid "CRM"
+msgstr "CRM"
+
+#: share/advertising/IM_GAMME.pl:3
+#, c-format
+msgid "2007 product line"
+msgstr "2007 產品線"
+
+#: share/advertising/IM_INVICTUS.pl:3
+#, c-format
+msgid "Invictus Firewall"
+msgstr "Invictus 防火牆"
+
+#: share/advertising/IM_ONE.pl:3
+#, c-format
+msgid "Discovery Live Mode"
+msgstr "Discovery Live 模式"
+
+#: share/advertising/IM_REGISTER.pl:3
+#, c-format
+msgid "How to register"
+msgstr "如何註冊"
+
+#: share/advertising/IM_RPMDRAKE.pl:3
+#, c-format
+msgid "Rpmdrake 2"
+msgstr "Rpmdrake 2"
+
+#: share/advertising/IM_SERVICES.pl:3
+#, c-format
+msgid "Mandriva Online Services"
+msgstr "Mandriva Online 服務"
+
+#: share/advertising/IM_THEME.pl:3
+#, c-format
+msgid "New Theme"
+msgstr "新的佈景主題"
+
+#: share/advertising/IM_web2.pl:3
+#, c-format
+msgid "Web 2.0"
+msgstr "Web 2.0"
+
+#: share/advertising/Kaspersky.pl:3
+#, c-format
+msgid "Kaspersky"
+msgstr "Kaspersky"
+
+#: share/advertising/LinDVD.pl:3
+#, c-format
+msgid "LinDVD"
+msgstr "LinDVD"
+
+#: share/advertising/Skype.pl:3
+#, c-format
+msgid "Skype"
+msgstr "Skype"
+
+#: share/advertising/TRANSGAMING-CEDEGA.pl:3
+#, c-format
+msgid "Transgaming/Cedega"
+msgstr "Transgaming/Cedega"
+
+#: share/advertising/VPN.pl:3
+#, c-format
+msgid "DrakVPN"
+msgstr "DrakVPN"
+
+#: share/meta-task/compssUsers.pl:23
+#, c-format
+msgid "Workstation"
+msgstr "工作站"
+
+#: share/meta-task/compssUsers.pl:25
+#, c-format
+msgid "Office Workstation"
+msgstr "辦公軟體平台"
+
+#: share/meta-task/compssUsers.pl:27
+#, c-format
+msgid ""
+"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
+"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
+msgstr ""
+"辦公軟體:文書處理軟體 (OpenOffice.org Writer、Kword)、試算表 (OpenOffice."
+"org Calc、Kspread)、PDF 檢視器等等"
+
+#: share/meta-task/compssUsers.pl:28
+#, c-format
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"辦公軟體:文書處理軟體 (kword、abiword)、試算表 (kspread、gnumeric)、PDF 檢視"
+"器等等"
+
+#: share/meta-task/compssUsers.pl:33
+#, c-format
+msgid "Game station"
+msgstr "遊戲平台"
+
+#: share/meta-task/compssUsers.pl:34
+#, c-format
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "娛樂的一些程式:紙牌、益智、動作、策略等"
+
+#: share/meta-task/compssUsers.pl:37
+#, c-format
+msgid "Multimedia station"
+msgstr "多媒體平台"
+
+#: share/meta-task/compssUsers.pl:38
+#, c-format
+msgid "Sound and video playing/editing programs"
+msgstr "音效以及影像撥放編輯程式"
+
+#: share/meta-task/compssUsers.pl:43
+#, c-format
+msgid "Internet station"
+msgstr "網際網路平台"
+
+#: share/meta-task/compssUsers.pl:44
+#, c-format
+msgid ""
+"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
+"Web"
+msgstr "包含讀信、寄信和閱讀新聞群組 (mutt、tin ..) 以及網路瀏覽的工具"
+
+#: share/meta-task/compssUsers.pl:49
+#, c-format
+msgid "Network Computer (client)"
+msgstr "網路電腦 (客戶端)"
+
+#: share/meta-task/compssUsers.pl:50
+#, c-format
+msgid "Clients for different protocols including ssh"
+msgstr "包含 ssh 等其他不同通訊協定的用戶端程式"
+
+#: share/meta-task/compssUsers.pl:55
+#, c-format
+msgid "Tools to ease the configuration of your computer"
+msgstr "讓您方便設定您系統的工具"
+
+#: share/meta-task/compssUsers.pl:59
+#, c-format
+msgid "Console Tools"
+msgstr "Console 工具"
+
+#: share/meta-task/compssUsers.pl:60
+#, c-format
+msgid "Editors, shells, file tools, terminals"
+msgstr "編輯器、shell、檔案工具、終端機"
+
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
+#: share/meta-task/compssUsers.pl:168
+#, c-format
+msgid "Development"
+msgstr "程式開發"
+
+#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
+#, c-format
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C/C++ 發展環境,包含編譯器、程式庫與及一些引入檔"
+
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
+#, c-format
+msgid "Documentation"
+msgstr "文件檔案"
+
+#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
+#, c-format
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Linux 系統與自由軟體的書籍、HOWTO 文件"
+
+#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
+#, c-format
+msgid "LSB"
+msgstr "LSB"
+
+#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
+#, c-format
+msgid "Linux Standard Base. Third party applications support"
+msgstr "LSB 的支援,包含第三類協力廠商軟體支援"
+
+#: share/meta-task/compssUsers.pl:84
+#, c-format
+msgid "Web Server"
+msgstr "網頁伺服器 (Web)"
+
+#: share/meta-task/compssUsers.pl:85
+#, c-format
+msgid "Apache"
+msgstr "Apache"
+
+#: share/meta-task/compssUsers.pl:88
+#, c-format
+msgid "Groupware"
+msgstr "群組軟體"
+
+#: share/meta-task/compssUsers.pl:89
+#, c-format
+msgid "Kolab Server"
+msgstr "Kolab 伺服器"
+
+#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
+#, c-format
+msgid "Firewall/Router"
+msgstr "防火牆/路由器"
+
+#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
+#, c-format
+msgid "Internet gateway"
+msgstr "網際網路閘道器"
+
+#: share/meta-task/compssUsers.pl:96
+#, c-format
+msgid "Mail/News"
+msgstr "郵件/新聞"
+
+#: share/meta-task/compssUsers.pl:97
+#, c-format
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix 郵件伺服器,Inn 新聞伺服器"
+
+#: share/meta-task/compssUsers.pl:100
+#, c-format
+msgid "Directory Server"
+msgstr "目錄伺服器"
+
+#: share/meta-task/compssUsers.pl:104
+#, c-format
+msgid "FTP Server"
+msgstr "FTP 伺服器"
+
+#: share/meta-task/compssUsers.pl:105
+#, c-format
+msgid "ProFTPd"
+msgstr "ProFTPd"
+
+#: share/meta-task/compssUsers.pl:108
+#, c-format
+msgid "DNS/NIS"
+msgstr "DNS/NIS"
+
+#: share/meta-task/compssUsers.pl:109
+#, c-format
+msgid "Domain Name and Network Information Server"
+msgstr "網域名稱與網路資訊伺服器"
+
+#: share/meta-task/compssUsers.pl:112
+#, c-format
+msgid "File and Printer Sharing Server"
+msgstr "檔案與列印分享伺服器"
+
+#: share/meta-task/compssUsers.pl:113
+#, c-format
+msgid "NFS Server, Samba server"
+msgstr "NFS 伺服器、Samba 伺服器"
+
+#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
+#, c-format
+msgid "Database"
+msgstr "資料庫軟體"
+
+#: share/meta-task/compssUsers.pl:117
+#, c-format
+msgid "PostgreSQL and MySQL Database Server"
+msgstr "PostgreSQL 與 MySQL 資料庫伺服器"
+
+#: share/meta-task/compssUsers.pl:121
+#, c-format
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: share/meta-task/compssUsers.pl:122
+#, c-format
+msgid "Apache, Pro-ftpd"
+msgstr "Apache、ProFTPD"
+
+#: share/meta-task/compssUsers.pl:125
+#, c-format
+msgid "Mail"
+msgstr "電子郵件"
+
+#: share/meta-task/compssUsers.pl:126
+#, c-format
+msgid "Postfix mail server"
+msgstr "Postfix 郵件伺服器"
+
+#: share/meta-task/compssUsers.pl:130
+#, c-format
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL、MySQL 資料庫"
+
+#: share/meta-task/compssUsers.pl:137
+#, c-format
+msgid "Network Computer server"
+msgstr "網路伺服器"
+
+#: share/meta-task/compssUsers.pl:138
+#, c-format
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS 伺服器、SMB 伺服器、Proxy 伺服器、SSH 伺服器"
+
+#: share/meta-task/compssUsers.pl:144
+#, c-format
+msgid "Graphical Environment"
+msgstr "圖形環境"
+
+#: share/meta-task/compssUsers.pl:146
+#, c-format
+msgid "KDE Workstation"
+msgstr "KDE 工作站"
+
+#: share/meta-task/compssUsers.pl:147
+#, c-format
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "K 桌面環境,包含許多好用的圖型介面工具程式"
+
+#: share/meta-task/compssUsers.pl:151
+#, c-format
+msgid "GNOME Workstation"
+msgstr "GNOME 工作站"
+
+#: share/meta-task/compssUsers.pl:152
+#, c-format
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "包含友善的應用程式、桌面軟體的圖型化使用環境"
+
+#: share/meta-task/compssUsers.pl:155
+#, c-format
+msgid "IceWm Desktop"
+msgstr "IceWM 桌面"
+
+#: share/meta-task/compssUsers.pl:159
+#, c-format
+msgid "Other Graphical Desktops"
+msgstr "其他圖型桌面軟體"
+
+#: share/meta-task/compssUsers.pl:160
+#, c-format
+msgid "Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Window Maker、Enlightenment、Fvwm 等"
+
+#: share/meta-task/compssUsers.pl:183
+#, c-format
+msgid "Utilities"
+msgstr "工具軟體"
+
+#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
+#, c-format
+msgid "SSH Server"
+msgstr "SSH 伺服主機"
+
+#: share/meta-task/compssUsers.pl:190
+#, c-format
+msgid "Webmin"
+msgstr "Webmin"
+
+#: share/meta-task/compssUsers.pl:191
+#, c-format
+msgid "Webmin Remote Configuration Server"
+msgstr "Webmin 遠端設定伺服器"
+
+#: share/meta-task/compssUsers.pl:195
+#, c-format
+msgid "Network Utilities/Monitoring"
+msgstr "網路工具/監控"
+
+#: share/meta-task/compssUsers.pl:196
+#, c-format
+msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
+msgstr "監控工具、程序管理、tcpdump、nmap..."
+
+#: share/meta-task/compssUsers.pl:200
+#, c-format
+msgid "Mandriva Wizards"
+msgstr "Mandriva 精靈"
+
+#: share/meta-task/compssUsers.pl:201
+#, c-format
+msgid "Wizards to configure server"
+msgstr "用來設定伺服器的精靈"
+
+#: steps.pm:85
+#, c-format
+msgid ""
+"An error occurred, but I do not know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"發生了一個錯誤,但我不知道該如何妥善處置它。\n"
+"要繼續安裝工作的話請小心。"
+
+#: steps.pm:426
+#, c-format
+msgid ""
+"Some important packages did not get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
+"\"\n"
+msgstr ""
+"有某些重要的套件沒有被適當地安裝。\n"
+"可能是您的光碟機或者是光碟片有缺陷。\n"
+"請將光碟放在一個已經安裝好的電腦上使用 \"rpm -qpl media/main/*.rpm\" 來檢查\n"
+
+#: steps_auto_install.pm:71 steps_stdio.pm:27
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "進入步驟 `%s'\n"
+
+#: steps_curses.pm:22
+#, c-format
+msgid "Mandriva Linux Installation %s"
+msgstr "Mandriva Linux 安裝程式 %s"
+
+#: steps_curses.pm:32
+#, c-format
+msgid "<Tab>/<Alt-Tab> between elements"
+msgstr "<Tab>/<Alt-Tab> 在元件間移動"
+
+#: steps_gtk.pm:195
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandriva Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"您的系統資源太少,可能會在安裝 Mandriva Linux 過程中遇到問題。\n"
+"若是真的發生問題,您或許可以改用文字模式的安裝方式來取代。\n"
+"要如此作的話,請在光碟開機時按下 `F1',然後輸入 `text'。"
+
+#: steps_gtk.pm:225 steps_interactive.pm:511
+#, c-format
+msgid "Package Group Selection"
+msgstr "套件群組選擇"
+
+#: steps_gtk.pm:246 steps_interactive.pm:529
+#, c-format
+msgid "Individual package selection"
+msgstr "選取單一套件"
+
+#: steps_gtk.pm:268 steps_interactive.pm:454
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "總共大小: %d / %d MB"
+
+#: steps_gtk.pm:313
+#, c-format
+msgid "Bad package"
+msgstr "壞掉的套件"
+
+#: steps_gtk.pm:315
+#, c-format
+msgid "Version: "
+msgstr "版本:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "Size: "
+msgstr "大小:"
+
+#: steps_gtk.pm:316
+#, c-format
+msgid "%d KB\n"
+msgstr "%d KB\n"
+
+#: steps_gtk.pm:317
+#, c-format
+msgid "Importance: "
+msgstr "重要性:"
+
+#: steps_gtk.pm:351
+#, c-format
+msgid "You can not select/unselect this package"
+msgstr "您不可以選擇/取消選擇這個套件"
+
+#: steps_gtk.pm:355
+#, c-format
+msgid "due to missing %s"
+msgstr "因為遺失 %s"
+
+#: steps_gtk.pm:356
+#, c-format
+msgid "due to unsatisfied %s"
+msgstr "由於沒有滿足 %s"
+
+#: steps_gtk.pm:357
+#, c-format
+msgid "trying to promote %s"
+msgstr "正在嘗試促進 %s"
+
+#: steps_gtk.pm:358
+#, c-format
+msgid "in order to keep %s"
+msgstr "為了要保留 %s"
+
+#: steps_gtk.pm:363
+#, c-format
+msgid ""
+"You can not select this package as there is not enough space left to install "
+"it"
+msgstr "您不可以選取這個套件,因為剩餘的空間不足以安裝它。"
+
+#: steps_gtk.pm:366
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "下列的套件將會被安裝上"
+
+#: steps_gtk.pm:367
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "下列的套件將會被移除"
+
+#: steps_gtk.pm:392
+#, c-format
+msgid "This is a mandatory package, it can not be unselected"
+msgstr "這是一個必要的套件,您不能不選取它"
+
+#: steps_gtk.pm:394
+#, c-format
+msgid "You can not unselect this package. It is already installed"
+msgstr "您不能不選這個套件。它已經被安裝上了。"
+
+#: steps_gtk.pm:396
+#, c-format
+msgid "You can not unselect this package. It must be upgraded"
+msgstr "您不能不選這個套件,它一定要更新才行。"
+
+#: steps_gtk.pm:400
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "顯示自動被選取的套件"
+
+#: steps_gtk.pm:402 steps_interactive.pm:133
+#, c-format
+msgid "Install"
+msgstr "安裝"
+
+#: steps_gtk.pm:405
+#, c-format
+msgid "Load/Save selection"
+msgstr "載入/儲存選取"
+
+#: steps_gtk.pm:406
+#, c-format
+msgid "Updating package selection"
+msgstr "正在更新套件的選擇"
+
+#: steps_gtk.pm:411
+#, c-format
+msgid "Minimal install"
+msgstr "最小安裝"
+
+#: steps_gtk.pm:425
+#, c-format
+msgid "Software Management"
+msgstr "軟體套件管理"
+
+#: steps_gtk.pm:425 steps_interactive.pm:373
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "選擇您想要安裝的套件"
+
+#: steps_gtk.pm:442 steps_interactive.pm:543
+#, c-format
+msgid "Installing"
+msgstr "正在安裝"
+
+#: steps_gtk.pm:468
+#, c-format
+msgid "No details"
+msgstr "沒有詳細資訊"
+
+#: steps_gtk.pm:483
+#, c-format
+msgid "Time remaining "
+msgstr "剩餘時間"
+
+#: steps_gtk.pm:484
+#, c-format
+msgid "Estimating"
+msgstr "正在估計"
+
+#: steps_gtk.pm:511
+#, c-format
+msgid "%d package"
+msgid_plural "%d packages"
+msgstr[0] "%d 個套件"
+
+#: steps_gtk.pm:557 steps_interactive.pm:729
+#, c-format
+msgid "Summary"
+msgstr "總結"
+
+#: steps_gtk.pm:570
+#, c-format
+msgid "Configure"
+msgstr "設定"
+
+#: steps_gtk.pm:580 steps_interactive.pm:725 steps_interactive.pm:852
+#, c-format
+msgid "not configured"
+msgstr "未被設定"
+
+#: steps_gtk.pm:612 steps_interactive.pm:268
+#, c-format
+msgid ""
+"The following installation media have been found.\n"
+"If you want to skip some of them, you can unselect them now."
+msgstr ""
+"已經找到下列的安裝媒介。\n"
+"如果您想略過它們,您現在可以將它們取消選取。"
+
+#: steps_gtk.pm:621 steps_interactive.pm:274
+#, c-format
+msgid ""
+"You have the option to copy the contents of the CDs onto the hard drive "
+"before installation.\n"
+"It will then continue from the hard drive and the packages will remain "
+"available once the system is fully installed."
+msgstr ""
+"您可以選擇在安裝前將光碟的內容複製到硬碟。稍候將會由硬碟繼續安裝,並且這些套"
+"件\n"
+"在安裝完畢之後仍然可以繼續使用。"
+
+#: steps_gtk.pm:623 steps_interactive.pm:276
+#, c-format
+msgid "Copy whole CDs"
+msgstr "複製整張光碟"
+
+#: steps_interactive.pm:38
+#, c-format
+msgid "An error occurred"
+msgstr "發生一個錯誤"
+
+#: steps_interactive.pm:97
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "請選取鍵盤排列的樣式。"
+
+#: steps_interactive.pm:99
+#, c-format
+msgid "Here is the full list of available keyboards"
+msgstr "以下是所有可用的的鍵盤"
+
+#: steps_interactive.pm:128
+#, c-format
+msgid "Install/Upgrade"
+msgstr "安裝/升級"
+
+#: steps_interactive.pm:129
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "這是安裝或是升級?"
+
+#: steps_interactive.pm:135
+#, c-format
+msgid "Upgrade %s"
+msgstr "升級 %s"
+
+#: steps_interactive.pm:148
+#, c-format
+msgid "Encryption key for %s"
+msgstr "加密金鑰於 %s"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: steps_interactive.pm:184
+#, c-format
+msgid "Configuring IDE"
+msgstr "正在設定 IDE"
+
+#: steps_interactive.pm:221
+#, c-format
+msgid ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"沒有足夠的可用空間安裝 bootstrap!安裝還是會繼續,但是您必須在 DiskDrake\n"
+"中建立 bootstrap 分割來啟動您的系統"
+
+#: steps_interactive.pm:226
+#, c-format
+msgid ""
+"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
+"to boot your system, you'll need to create the bootstrap partition in "
+"DiskDrake"
+msgstr ""
+"您需要建立一個 PPC PReP 開機 bootstrap!安裝還是會繼續,但是您必須在 "
+"DiskDrake 中建立 bootstrap 分割來啟動您的系統"
+
+#: steps_interactive.pm:318
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"更換光碟片!\n"
+"請插入標示為 \"%s\" 的光碟於您的光碟機中,完成後請按下確定。\n"
+"若是您沒有這片光碟,請點選取消以略過這一片光碟的安裝。"
+
+#: steps_interactive.pm:340
+#, c-format
+msgid "Looking for available packages..."
+msgstr "正在搜尋可以用的套件..."
+
+#: steps_interactive.pm:349
+#, c-format
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%"
+"dMB > %dMB)"
+msgstr ""
+
+#: steps_interactive.pm:385
+#, c-format
+msgid ""
+"Please choose load or save package selection.\n"
+"The format is the same as auto_install generated files."
+msgstr ""
+"請選擇要載入或者儲存套件選擇到磁片上。\n"
+"它使用與自動安裝所產生的磁片相同的格式。"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Load"
+msgstr "載入"
+
+#: steps_interactive.pm:387
+#, c-format
+msgid "Save"
+msgstr "儲存"
+
+#: steps_interactive.pm:395
+#, c-format
+msgid "Bad file"
+msgstr "損壞的檔案"
+
+#: steps_interactive.pm:468
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "所選取的大小超過可用的空間"
+
+#: steps_interactive.pm:483
+#, c-format
+msgid "Type of install"
+msgstr "安裝類型"
+
+#: steps_interactive.pm:484
+#, c-format
+msgid ""
+"You have not selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"您並未選取任何套件群組。\n"
+"請選擇您想要的最小安裝:"
+
+#: steps_interactive.pm:487
+#, c-format
+msgid "With X"
+msgstr "包含 X 環境"
+
+#: steps_interactive.pm:488
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "包含基本的說明文件 (建議的!)"
+
+#: steps_interactive.pm:489
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "真正最小安裝 (尤其無 urpmi)"
+
+#: steps_interactive.pm:528
+#, c-format
+msgid "All"
+msgstr "全部"
+
+#: steps_interactive.pm:544
+#, c-format
+msgid "Preparing installation"
+msgstr "正在準備安裝"
+
+#: steps_interactive.pm:552
+#, c-format
+msgid "Installing package %s"
+msgstr "正在安裝套件 %s"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "排列套件時發生錯誤:"
+
+#: steps_interactive.pm:576
+#, c-format
+msgid "Go on anyway?"
+msgstr "無論如何都要繼續嗎?"
+
+#: steps_interactive.pm:580
+#, c-format
+msgid "Retry"
+msgstr "重試"
+
+#: steps_interactive.pm:581
+#, c-format
+msgid "Skip this package"
+msgstr ""
+
+#: steps_interactive.pm:582
+#, c-format
+msgid "Skip all packages from medium \"%s\""
+msgstr ""
+
+#: steps_interactive.pm:583
+#, fuzzy, c-format
+msgid "Go back to media and packages selection"
+msgstr "儲存套件選擇"
+
+#: steps_interactive.pm:586
+#, fuzzy, c-format
+msgid "There was an error installing package %s."
+msgstr "安裝套件時發生錯誤:"
+
+#: steps_interactive.pm:604
+#, c-format
+msgid "Post-install configuration"
+msgstr "安裝後的設定"
+
+#: steps_interactive.pm:611
+#, c-format
+msgid "Please ensure the Update Modules media is in drive %s"
+msgstr "請確定更新模組媒介位於磁碟機 %s 中"
+
+#: steps_interactive.pm:638
+#, c-format
+msgid "Updates"
+msgstr "更新"
+
+#: steps_interactive.pm:639
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates?"
+msgstr ""
+"您現在有機會下載更新套件。這些套件在發行版釋放之後已經被更新過了。\n"
+"他們或許有安全性或臭蟲修正。\n"
+"\n"
+"要下載這些套件,您需要有正常運作的網際網路連線。\n"
+"\n"
+"您想要安裝更新嗎?"
+
+#: steps_interactive.pm:660
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "聯繫映射站台以取得可用的程式套件列表..."
+
+#: steps_interactive.pm:666
+#, c-format
+msgid "Unable to contact mirror %s"
+msgstr "無法聯繫映射站台 %s"
+
+#: steps_interactive.pm:788 steps_interactive.pm:805 steps_interactive.pm:821
+#: steps_interactive.pm:832
+#, c-format
+msgid "Hardware"
+msgstr "硬體"
+
+#: steps_interactive.pm:789 steps_interactive.pm:806
+#, c-format
+msgid "Sound card"
+msgstr "音效卡"
+
+#: steps_interactive.pm:809
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "您有 ISA 音效卡嗎?"
+
+#: steps_interactive.pm:811
+#, c-format
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr "請在安裝完畢後,執行 \"alsaconf\" 或 \"sndconfig\" 來設定您的音效卡"
+
+#: steps_interactive.pm:813
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "沒偵測到任何音效卡。請在安裝後嘗試 \"harddrake\" 進行設定"
+
+#: steps_interactive.pm:822
+#, c-format
+msgid "TV card"
+msgstr "電視卡"
+
+#: steps_interactive.pm:833
+#, c-format
+msgid "Graphical interface"
+msgstr "圖形介面"
+
+#: steps_interactive.pm:839 steps_interactive.pm:850
+#, c-format
+msgid "Network & Internet"
+msgstr "網路與網際網路"
+
+#: steps_interactive.pm:851
+#, c-format
+msgid "Proxies"
+msgstr "代理伺服器"
+
+#: steps_interactive.pm:852
+#, c-format
+msgid "configured"
+msgstr "已設定"
+
+#: steps_interactive.pm:862
+#, c-format
+msgid "Security Level"
+msgstr "安全層級"
+
+#: steps_interactive.pm:876
+#, c-format
+msgid "Firewall"
+msgstr "防火牆"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "activated"
+msgstr "已啟用"
+
+#: steps_interactive.pm:880
+#, c-format
+msgid "disabled"
+msgstr "已停用"
+
+#: steps_interactive.pm:891
+#, c-format
+msgid "Boot"
+msgstr "開機"
+
+#. -PO: example: lilo-graphic on /dev/hda1
+#: steps_interactive.pm:895
+#, c-format
+msgid "%s on %s"
+msgstr "%2$s 上的 %1$s"
+
+#: steps_interactive.pm:921
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "您尚未設定 X。您確定您真的要這樣做?"
+
+#: steps_interactive.pm:967
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "正在準備開機載入程式..."
+
+#: steps_interactive.pm:977
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
+"will not work for you. The install will continue, but you'll need to use "
+"BootX or some other means to boot your machine. The kernel argument for the "
+"root fs is: root=%s"
+msgstr ""
+"您的系統似乎有 OldWorld 或者是其他不認識的機器,\n"
+"這將會導致 yaboot 開機載入器無法正常運作。\n"
+"安裝還是會繼續下去,不過您將需要使用 bootX 或某些其他方法來啟動您的機器。"
+"root fs 的核心參數是:root=%s"
+
+#: steps_interactive.pm:983
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "您要使用 aboot 嗎?"
+
+#: steps_interactive.pm:986
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"安裝 aboot 時發生錯誤,\n"
+"您要冒著可能毀損第一個分割區的危險強制安裝嗎?"
+
+#: steps_interactive.pm:1003
+#, c-format
+msgid ""
+"In this security level, access to the files in the Windows partition is "
+"restricted to the administrator."
+msgstr "在這個安全層級中,只有管理者能夠存取位於 Windows 分割區的檔案。"
+
+#: steps_interactive.pm:1032
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "請在 %s 中插入一片空白磁片"
+
+#: steps_interactive.pm:1034
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "正在製作自動安裝磁片..."
+
+#: steps_interactive.pm:1045
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"還有些步驟沒有完成。\n"
+"\n"
+"您確定要結束安裝程式?"
+
+#: steps_interactive.pm:1055
+#, c-format
+msgid "Congratulations"
+msgstr "恭喜"
+
+#: steps_interactive.pm:1059
+#, c-format
+msgid "Reboot"
+msgstr "重新開機"
+
+#: steps_interactive.pm:1063 steps_interactive.pm:1064
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "製作自動安裝磁片"
+
+#: steps_interactive.pm:1065
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"需要的話,自動安裝可以完全自動化的安裝系統,在這種\n"
+"情況下它將接管硬碟!\n"
+"(這是設計來安裝於另一台機器上的)。\n"
+"\n"
+"您可以重演安裝過程。\n"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Replay"
+msgstr "重播"
+
+#: steps_interactive.pm:1070
+#, c-format
+msgid "Automated"
+msgstr "自動化"
+
+#: steps_interactive.pm:1073
+#, c-format
+msgid "Save packages selection"
+msgstr "儲存套件選擇"
+
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+#: steps_list.pm:16
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Language"
+msgstr "語言"
+
+#: steps_list.pm:17
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"License"
+msgstr "授權"
+
+#: steps_list.pm:18
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Mouse"
+msgstr "滑鼠"
+
+#: steps_list.pm:19
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Hard drive detection"
+msgstr "硬碟偵測"
+
+#: steps_list.pm:20
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installation class"
+msgstr "安裝類別"
+
+#: steps_list.pm:21
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Keyboard"
+msgstr "鍵盤"
+
+#: steps_list.pm:22
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Security"
+msgstr "安全性"
+
+#: steps_list.pm:23
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Partitioning"
+msgstr "分割磁區"
+
+#: steps_list.pm:24
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Formatting"
+msgstr "正在格式化"
+
+#: steps_list.pm:25
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Choosing packages"
+msgstr "選取程式套件"
+
+#: steps_list.pm:26
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Installing"
+msgstr "正在安裝"
+
+#: steps_list.pm:27
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Authentication"
+msgstr "認證方式"
+
+#: steps_list.pm:28
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Users"
+msgstr "使用者"
+
+#: steps_list.pm:29
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Networking"
+msgstr "網路"
+
+#: steps_list.pm:30
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Bootloader"
+msgstr "開機載入器"
+
+#: steps_list.pm:31
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Configure X"
+msgstr "設定 X 環境"
+
+#: steps_list.pm:32
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Summary"
+msgstr "總結"
+
+#: steps_list.pm:33
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Services"
+msgstr "服務"
+
+#: steps_list.pm:34
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Updates"
+msgstr "更新"
+
+#: steps_list.pm:35
+#, c-format
+msgid ""
+"_: Keep these entry short\n"
+"Exit"
+msgstr "離開"
+
+#~ msgid "(%d package, %d MB)"
+#~ msgid_plural "(%d packages, %d MB)"
+#~ msgstr[0] "(%d 個套件,共 %d MB)"
+
+#~ msgid "%d packages"
+#~ msgstr "%d 個套件"
+
+#~ msgid "Language"
+#~ msgstr "語言"
+
+#~ msgid "License"
+#~ msgstr "授權"
+
+#~ msgid "Installation class"
+#~ msgstr "安裝類別"
+
+#~ msgid "Formatting"
+#~ msgstr "正在格式化"
+
+#~ msgid "Choosing packages"
+#~ msgstr "選取程式套件"
+
+#~ msgid "Users"
+#~ msgstr "使用者"
+
+#~ msgid "Networking"
+#~ msgstr "網路"
+
+#~ msgid "Configure X"
+#~ msgstr "設定 X 環境"
+
+#~ msgid ""
+#~ "Can not access kernel modules corresponding to your kernel (file %s is "
+#~ "missing), this generally means your boot floppy in not in sync with the "
+#~ "Installation medium (please create a newer boot floppy)"
+#~ msgstr ""
+#~ "無法存取對應您的核心的核心模組 (檔案 %s 遺失),這一般表示您的開機軟片不同"
+#~ "步於\n"
+#~ "安裝媒介 (請建立一個更新的開機磁片)"
diff --git a/perl-install/share/symlinks b/perl-install/install/share/symlinks
index 6e30a7290..07f969a06 100644
--- a/perl-install/share/symlinks
+++ b/perl-install/install/share/symlinks
@@ -1,11 +1,11 @@
/sbin
/bin
-/proc/mounts /etc/mtab
/etc/protocols
/etc/services
/etc/group
/etc/passwd
/etc/termcap
/lib
+/lib64
/usr
/tmp /var/run
diff --git a/perl-install/share/themes-blue.rc b/perl-install/install/share/themes-blue.rc
index e8cac9521..e8cac9521 100644
--- a/perl-install/share/themes-blue.rc
+++ b/perl-install/install/share/themes-blue.rc
diff --git a/perl-install/share/themes-galaxy.rc b/perl-install/install/share/themes-galaxy.rc
index 3a396e75a..391f1bb7f 100644
--- a/perl-install/share/themes-galaxy.rc
+++ b/perl-install/install/share/themes-galaxy.rc
@@ -3,7 +3,7 @@ gtk-button-images=0
style "white-on-blue"
{
base[NORMAL] = { 0.28, 0.38, 0.66 }
- bg[NORMAL] = "#284B9F"
+ bg[NORMAL] = "#004594"
text[NORMAL] = "#FFFFFF"
fg[NORMAL] = "#FFFFFF"
@@ -20,7 +20,7 @@ style "banner"
style "background"
{
- bg[NORMAL] = "#284B9F"
+ bg[NORMAL] = "#004594"
}
widget "*Steps*" style "white-on-blue"
diff --git a/perl-install/share/upgrade/conectiva.10/map b/perl-install/install/share/upgrade/conectiva.10/map
index aa6ff15da..aa6ff15da 100644
--- a/perl-install/share/upgrade/conectiva.10/map
+++ b/perl-install/install/share/upgrade/conectiva.10/map
diff --git a/perl-install/share/upgrade/conectiva.10/pre.keep-kde-profile b/perl-install/install/share/upgrade/conectiva.10/pre.keep-kde-profile
index 26aff73d7..26aff73d7 100755
--- a/perl-install/share/upgrade/conectiva.10/pre.keep-kde-profile
+++ b/perl-install/install/share/upgrade/conectiva.10/pre.keep-kde-profile
diff --git a/perl-install/share/upgrade/conectiva.10/pre.merge-groups.sh b/perl-install/install/share/upgrade/conectiva.10/pre.merge-groups.sh
index b735d2bbe..b735d2bbe 100755
--- a/perl-install/share/upgrade/conectiva.10/pre.merge-groups.sh
+++ b/perl-install/install/share/upgrade/conectiva.10/pre.merge-groups.sh
diff --git a/perl-install/share/upgrade/conectiva.10/pre.remove-conflicting-files.sh b/perl-install/install/share/upgrade/conectiva.10/pre.remove-conflicting-files.sh
index 3db2fee4f..3db2fee4f 100755
--- a/perl-install/share/upgrade/conectiva.10/pre.remove-conflicting-files.sh
+++ b/perl-install/install/share/upgrade/conectiva.10/pre.remove-conflicting-files.sh
diff --git a/perl-install/install_steps.pm b/perl-install/install/steps.pm
index 13ae63365..dfd91646e 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install/steps.pm
@@ -1,4 +1,4 @@
-package install_steps; # $Id$
+package install::steps; # $Id$
use diagnostics;
use strict;
@@ -8,17 +8,19 @@ use vars qw(@filesToSaveForUpgrade @filesNewerToUseAfterUpgrade);
#- misc imports
#-######################################################################################
use common;
-use install_any qw(:all);
+use install::any 'addToBeDone';
use partition_table;
use detect_devices;
+use fs::any;
use fs::type;
+use fs::partitioning;
use modules;
use run_program;
use lang;
use keyboard;
use fsedit;
use do_pkgs;
-use pkgs;
+use install::pkgs;
use any;
use log;
@@ -57,9 +59,9 @@ sub leavingStep {
my ($o, $step) = @_;
log::l("step `$step' finished");
- if (-d "$o->{prefix}/root/drakx") {
- eval { cp_af("/tmp/ddebug.log", "$o->{prefix}/root/drakx") };
- output(install_any::auto_inst_file(), install_any::g_auto_install(1));
+ if (-d "$::prefix/root/drakx") {
+ eval { cp_af("/tmp/ddebug.log", "$::prefix/root/drakx") };
+ output(install::any::auto_inst_file(), install::any::g_auto_install(1));
}
foreach my $s (@{$o->{orderedSteps}}) {
@@ -78,9 +80,11 @@ sub leavingStep {
while (my $f = shift @{$o->{steps}{$step}{toBeDone} || []}) {
eval { &$f() };
- $o->ask_warn(N("Error"), [
+ if (my $err = $@) {
+ $o->ask_warn(N("Error"), [
N("An error occurred, but I do not know how to handle it nicely.
-Continue at your own risk."), formatError($@) || $@ ]) if $@;
+Continue at your own risk."), formatError($err) || $err ]);
+ }
}
}
@@ -107,8 +111,8 @@ sub selectLanguage {
lang::lang_changed($o->{locale});
}
- lang::set($o->{locale}, !$o->isa('interactive::gtk'));
add2hash_($o->{locale}, { utf8 => lang::utf8_should_be_needed($o->{locale}) });
+ lang::set($o->{locale}, !$o->isa('interactive::gtk'));
log::l("selectLanguage: pack_langs: ", lang::pack_langs($o->{locale}{langs}), " utf8-flag: ", to_bool($o->{locale}{utf8}));
@@ -151,12 +155,12 @@ sub acceptLicense {}
#------------------------------------------------------------------------------
sub setupSCSI {
my ($o) = @_;
- install_any::configure_pcmcia($o->{modules_conf}, $o->{pcmcia}) if $o->{pcmcia};
+ install::any::configure_pcmcia($o);
modules::load(modules::category2modules('disk/cdrom'));
modules::load_category($o->{modules_conf}, 'bus/firewire');
modules::load_category($o->{modules_conf}, 'disk/ide|scsi|hardware_raid|sata|firewire');
- install_any::getHds($o);
+ install::any::getHds($o);
}
#------------------------------------------------------------------------------
@@ -165,8 +169,8 @@ sub selectInstallClass {
if ($o->{partitioning}{use_existing_root} || $o->{isUpgrade}) {
# either one root is defined (and all is ok), or we take the first one we find
- my $p = fs::get::root_($o->{fstab}) || (first(install_any::find_root_parts($o->{fstab}, $o->{prefix})) || die)->{part};
- $o->{migrate_device_names} = install_any::use_root_part($o->{all_hds}, $p);
+ my $p = fs::get::root_($o->{fstab}) || (first(install::any::find_root_parts($o->{fstab}, $::prefix)) || die)->{part};
+ $o->{migrate_device_names} = install::any::use_root_part($o->{all_hds}, $p);
}
}
@@ -186,44 +190,23 @@ sub doPartitionDisksBefore {
sub doPartitionDisksAfter {
my ($o) = @_;
- if (!$::testing) {
- my $hds = $o->{all_hds}{hds};
- partition_table::write($_) foreach @$hds;
- $_->{rebootNeeded} and $o->rebootNeeded foreach @$hds;
- }
-
- fs::set_removable_mntpoints($o->{all_hds});
- fs::mount_options::set_all_default($o->{all_hds}, %$o, lang::fs_options($o->{locale}))
- if !$o->{isUpgrade};
-
- $o->{fstab} = [ fs::get::fstab($o->{all_hds}) ];
+ fs::any::write_hds($o->{all_hds}, $o->{fstab}, !$o->{isUpgrade}, sub { $o->rebootNeeded }, $o);
if ($::local_install) {
my $p = fs::get::mntpoint2part($::prefix, [ fs::read_fstab('', '/proc/mounts') ]);
- my $part = fs::get::device2part($p->{device}, $o->{fstab}) || $o->{fstab}[0];
+ my $part = find { fs::get::is_same_hd($p, $_) } @{$o->{fstab}};
+ $part ||= $o->{fstab}[0];
$part->{mntpoint} = '/';
$part->{isMounted} = 1;
}
- fs::get::root_($o->{fstab}) or die "Oops, no root partition";
-
- if (arch() =~ /ppc/ && detect_devices::get_mac_generation() =~ /NewWorld/) {
- die "Need bootstrap partition to boot system!" if !(defined $partition_table::mac::bootstrap_part);
- }
-
- if (arch() =~ /ia64/ && !fs::get::has_mntpoint("/boot/efi", $o->{all_hds})) {
- die N("You must have a FAT partition mounted in /boot/efi");
- }
+ fs::any::check_hds_boot_and_root($o->{all_hds}, $o->{fstab});
if ($o->{partitioning}{use_existing_root}) {
#- ensure those partitions are mounted so that they are not proposed in choosePartitionsToFormat
fs::mount::part($_) foreach sort { $a->{mntpoint} cmp $b->{mntpoint} }
grep { $_->{mntpoint} && maybeFormatted($_) } @{$o->{fstab}};
}
-
- cat_("/proc/mounts") =~ m|(\S+)\s+/tmp/nfsimage| &&
- !any { $_->{mntpoint} eq "/mnt/nfs" } @{$o->{all_hds}{nfss}} and
- push @{$o->{all_hds}{nfss}}, { fs_type => 'nfs', mntpoint => "/mnt/nfs", device => $1, options => "noauto,ro,nosuid,soft,rsize=8192,wsize=8192" };
}
#------------------------------------------------------------------------------
@@ -237,52 +220,15 @@ sub doPartitionDisks {
#------------------------------------------------------------------------------
-sub ask_mntpoint_s {#-}}}
- my ($_o, $fstab) = @_;
-
- #- TODO: set the mntpoints
-
- my %m; foreach (@$fstab) {
- my $m = $_->{mntpoint};
-
- $m && $m =~ m!^/! or next; #- there may be a lot of swaps or "none"
-
- $m{$m} and die N("Duplicate mount point %s", $m);
- $m{$m} = 1;
-
- #- in case the type does not correspond, force it to ext3
- fs::type::set_fs_type($_, 'ext3') if !isTrueFS($_) && !isOtherAvailableFS($_);
- }
- 1;
-}
-
-
sub rebootNeeded($) {
my ($_o) = @_;
log::l("Rebooting...");
c::_exit(0);
}
-sub choosePartitionsToFormat($$) {
- my ($_o, $fstab) = @_;
-
- return if $::local_install;
-
- foreach (@$fstab) {
- $_->{mntpoint} = "swap" if isSwap($_);
- $_->{mntpoint} or next;
-
- add2hash_($_, { toFormat => $_->{notFormatted} }) if $_->{fs_type}; #- eg: do not set toFormat for isRawRAID (0xfd)
- $_->{toFormatUnsure} ||= member($_->{mntpoint}, '/', '/usr');
-
- if (!$_->{toFormat}) {
- my $fs_type = fs::type::fs_type_from_magic($_);
- if (!$fs_type || $fs_type ne $_->{fs_type}) {
- log::l("setting toFormatUnsure for $_->{device} because <$_->{fs_type}> ne <$fs_type>");
- $_->{toFormatUnsure} = 1;
- }
- }
- }
+sub choosePartitionsToFormat {
+ my ($o) = @_;
+ fs::partitioning::guess_partitions_to_format($o->{fstab});
}
sub formatMountPartitions {
@@ -294,16 +240,21 @@ sub formatMountPartitions {
sub setPackages {
my ($o) = @_;
- install_any::setPackages($o, sub {});
+ install::any::setPackages($o);
}
-sub deselectFoundMedia {
- my (undef, $hdlists) = @_;
- return $hdlists, 0;
+sub ask_deselect_media__copy_on_disk {
+ my (undef, $_hdlists, $_copy_rpms_on_disk) = @_;
+ 0;
+}
+
+sub ask_change_cd {
+ my (undef, $phys_m, $_o_rel_file) = @_;
+ log::l("change to medium " . install::media::phys_medium_to_string($phys_m) . " refused (it can't be done automatically)");
+ 0;
}
sub selectSupplMedia { '' }
-sub askSupplMirror { '' }
sub choosePackages {
my ($o) = @_;
@@ -313,15 +264,15 @@ sub choosePackages {
#- make sure we kept some space left for available else the system may
#- not be able to start (xfs at least).
- my $available = install_any::getAvailableSpace($o);
- my $availableCorrected = pkgs::invCorrectSize($available / sqr(1024)) * sqr(1024);
+ my $available = install::any::getAvailableSpace($o);
+ my $availableCorrected = install::pkgs::invCorrectSize($available / sqr(1024)) * sqr(1024);
log::l(sprintf "available size %s (corrected %s)", formatXiB($available), formatXiB($availableCorrected));
add2hash_($o, { compssListLevel => 5 }) if !$::auto_install;
#- !! destroying user selection of packages (they may have done individual selection before)
exists $o->{compssListLevel}
- and pkgs::setSelectedFromCompssList($o->{packages}, $o->{rpmsrate_flags_chosen}, $o->{compssListLevel}, $availableCorrected);
+ and install::pkgs::setSelectedFromCompssList($o->{packages}, $o->{rpmsrate_flags_chosen}, $o->{compssListLevel}, $availableCorrected);
$availableCorrected;
}
@@ -375,18 +326,18 @@ sub beforeInstallPackages {
#- save these files in case of upgrade failure.
if ($o->{isUpgrade}) {
foreach (@filesToSaveForUpgrade) {
- unlink "$o->{prefix}/$_.mdkgisave";
- if (-e "$o->{prefix}/$_") {
- eval { cp_af("$o->{prefix}/$_", "$o->{prefix}/$_.mdkgisave") };
+ unlink "$::prefix/$_.mdkgisave";
+ if (-e "$::prefix/$_") {
+ eval { cp_af("$::prefix/$_", "$::prefix/$_.mdkgisave") };
}
}
foreach (@filesNewerToUseAfterUpgrade) {
- unlink "$o->{prefix}/$_.rpmnew";
+ unlink "$::prefix/$_.rpmnew";
}
}
#- mainly for upgrading redhat packages, but it can help other
- my @should_not_be_dirs = qw(/usr/X11R6/lib/X11/xkb /usr/share/locale/zh_TW/LC_TIME /usr/include/GL);
+ my @should_not_be_dirs = qw(/usr/share/locale/zh_TW/LC_TIME /usr/include/GL);
my @should_be_dirs = qw(/etc/X11/xkb);
my @to_remove = (
(grep { !-l $_ && -d $_ } map { "$::prefix$_" } @should_not_be_dirs),
@@ -405,30 +356,29 @@ sub beforeInstallPackages {
#- some packages need such files for proper installation.
- install_any::write_fstab($o);
+ install::any::write_fstab($o);
require network::network;
network::network::add2hosts("localhost", "127.0.0.1");
log::l("setting excludedocs to $o->{excludedocs}");
- substInFile { s/%_excludedocs.*//; $_ .= "%_excludedocs yes\n" if eof && $o->{excludedocs} } "$o->{prefix}/etc/rpm/macros";
+ substInFile { s/%_excludedocs.*//; $_ .= "%_excludedocs yes\n" if eof && $o->{excludedocs} } "$::prefix/etc/rpm/macros";
#- add oem theme if the files exists.
- mkdir_p("$o->{prefix}/usr/share");
- install_any::getAndSaveFile("install/oem-theme.rpm", "$o->{prefix}/usr/share/oem-theme.rpm");
+ mkdir_p("$::prefix/usr/share");
+ install::media::getAndSaveFile_($o->{stage2_phys_medium}, "install/oem-theme.rpm", "$::prefix/usr/share/oem-theme.rpm");
+
+ system("sh", "-c", $o->{preInstallNonRooted}) if $o->{preInstallNonRooted};
}
#- returns number of packages installed, 0 if none were selected.
sub pkg_install {
my ($o, @l) = @_;
log::l("selecting packages " . join(" ", @l));
- require pkgs;
- if ($::testing) {
- log::l(qq(selecting package "$_")) foreach @l;
- } else {
- pkgs::selectPackage($o->{packages}, pkgs::packageByName($o->{packages}, $_) || die "$_ rpm not found") foreach @l;
- }
- my @toInstall = pkgs::packagesToInstall($o->{packages});
+
+ install::pkgs::select_by_package_names($o->{packages}, \@l);
+
+ my @toInstall = install::pkgs::packagesToInstall($o->{packages});
if (@toInstall) {
log::l("installing packages");
$o->installPackages;
@@ -447,30 +397,24 @@ sub installPackages { #- complete REWORK, TODO and TOCHECK!
my ($o) = @_;
my $packages = $o->{packages};
- pkgs::remove_marked_ask_remove($packages, \&installCallback);
+ install::pkgs::remove_marked_ask_remove($packages, \&installCallback);
#- small transaction will be built based on this selection and depslist.
- my @toInstall = pkgs::packagesToInstall($packages);
+ my @toInstall = install::pkgs::packagesToInstall($packages);
my $time = time();
{
local $ENV{DURING_INSTALL} = 1;
local $ENV{TMPDIR} = '/tmp';
local $ENV{TMP} = '/tmp';
- pkgs::install($o->{isUpgrade}, \@toInstall, $packages, \&installCallback);
+ install::pkgs::install($o->{isUpgrade}, \@toInstall, $packages, \&installCallback);
}
- any::writeandclean_ldsoconf($o->{prefix});
-
- run_program::rooted_or_die($o->{prefix}, 'ldconfig');
+ any::writeandclean_ldsoconf($::prefix);
- eval {
- run_program::rooted($o->{prefix}, 'gdk-pixbuf-query-loaders', '>', '/etc/gtk-2.0/gdk-pixbuf.loaders.' . (arch() =~ /64/ ? 'lib64' : 'lib'));
- run_program::rooted($o->{prefix}, 'gtk-query-immodules-2.0', '>', '/etc/gtk-2.0/gtk.immodules.' . (arch() =~ /64/ ? 'lib64' : 'lib'));
- run_program::rooted($o->{prefix}, 'pango-querymodules-' . (arch() =~ /64/ ? '64' : '32'), '>', '/etc/pango/' . (arch() =~ /i.86/ ? 'i386' : arch()) . '/pango.modules');
- };
+ run_program::rooted_or_die($::prefix, 'ldconfig');
log::l("Install took: ", formatTimeRaw(time() - $time));
- install_any::log_sizes($o);
+ install::media::log_sizes();
scalar(@toInstall); #- return number of packages installed.
}
@@ -482,10 +426,10 @@ sub afterInstallPackages($) {
die N("Some important packages did not get installed properly.
Either your cdrom drive or your cdrom is defective.
Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm\"
-") if any { m|read failed: Input/output error| } cat_("$o->{prefix}/root/drakx/install.log");
+") if any { m|read failed: Input/output error| } cat_("$::prefix/root/drakx/install.log");
if (arch() !~ /^sparc/) { #- TODO restore it as may be needed for sparc
- -x "$o->{prefix}/usr/bin/dumpkeys" or $::testing or die
+ -x "$::prefix/usr/bin/dumpkeys" or $::testing or die
"Some important packages did not get installed properly.
Please switch to console 2 (using ctrl-alt-f2)
@@ -498,30 +442,32 @@ Consoles 1,3,4,7 may also contain interesting information";
common::sync(); common::sync();
#- generate /etc/lvmtab needed for rc.sysinit
- run_program::rooted($o->{prefix}, 'lvm2', 'vgscan') if -e '/etc/lvmtab';
+ run_program::rooted($::prefix, 'lvm2', 'vgscan') if -e '/etc/lvmtab';
- #- configure PCMCIA services if needed.
require harddrake::autoconf;
+ #- configure PCMCIA services if needed.
harddrake::autoconf::pcmcia($o->{pcmcia});
+ #- configure CPU frequency modules
+ harddrake::autoconf::cpufreq();
#- for mandrake_firstime
- touch "$o->{prefix}/var/lock/TMP_1ST";
+ touch "$::prefix/var/lock/TMP_1ST";
- any::config_dvd($o->{prefix}, 0);
- any::config_mtools($o->{prefix});
+ any::config_dvd($::prefix);
+ any::config_mtools($::prefix);
#- make sure wins is disabled in /etc/nsswitch.conf
#- else if eth0 is not existing, glibc segfaults.
- substInFile { s/\s*wins// if /^\s*hosts\s*:/ } "$o->{prefix}/etc/nsswitch.conf";
+ substInFile { s/\s*wins// if /^\s*hosts\s*:/ } "$::prefix/etc/nsswitch.conf";
#- make sure some services have been enabled (or a catastrophic restart will occur).
#- these are normally base package post install scripts or important services to start.
- run_program::rooted($o->{prefix}, "chkconfig", "--add", $_) foreach
+ run_program::rooted($::prefix, "chkconfig", "--add", $_) foreach
qw(netfs network rawdevices sound kheader keytable syslog crond portmap);
if ($o->{mouse}{device} =~ /ttyS/) {
log::l("disabling gpm for serial mice (does not get along nicely with X)");
- run_program::rooted($o->{prefix}, "chkconfig", "--del", "gpm");
+ run_program::rooted($::prefix, "chkconfig", "--del", "gpm");
}
#- install urpmi before as rpmdb will be opened, this will cause problem with update-menus.
@@ -529,20 +475,20 @@ Consoles 1,3,4,7 may also contain interesting information";
#- update menu scheme before calling update menus if desktop mode.
if ($o->{meta_class} eq 'desktop') {
- run_program::rooted($o->{prefix}, "touch", "/etc/menu/do-not-create-menu-link");
- run_program::rooted($o->{prefix}, "touch", "/etc/menu/enable_simplified");
+ run_program::rooted($::prefix, "touch", "/etc/menu/do-not-create-menu-link");
+ run_program::rooted($::prefix, "touch", "/etc/menu/enable_simplified");
} elsif (!$o->{isUpgrade}) {
- run_program::rooted($o->{prefix}, "touch", "/etc/menu/do-not-create-menu-link");
+ run_program::rooted($::prefix, "touch", "/etc/menu/do-not-create-menu-link");
}
if ($o->{pcmcia}) {
- substInFile { s/.*(TaskBarShowAPMStatus).*/$1=1/ } "$o->{prefix}/usr/lib/X11/icewm/preferences";
- eval { cp_af("$o->{prefix}/usr/share/applnk/System/kapm.kdelnk",
- "$o->{prefix}/etc/skel/Desktop/Autostart/kapm.kdelnk") };
+ substInFile { s/.*(TaskBarShowAPMStatus).*/$1=1/ } "$::prefix/usr/lib/X11/icewm/preferences";
+ eval { cp_af("$::prefix/usr/share/applnk/System/kapm.kdelnk",
+ "$::prefix/etc/skel/Desktop/Autostart/kapm.kdelnk") };
}
if ($o->{brltty}) {
- output("$o->{prefix}/etc/brltty.conf", <<EOF);
+ output("$::prefix/etc/brltty.conf", <<EOF);
braille-driver $o->{brltty}{driver}
braille-device $o->{brltty}{device}
text-table $o->{brltty}{table}
@@ -550,32 +496,32 @@ EOF
}
- install_any::disable_user_view() if $o->{security} >= 3 || $o->{authentication}{NIS};
- run_program::rooted($o->{prefix}, "kdeDesktopCleanup");
+ install::any::disable_user_view() if $o->{security} >= 3 || $o->{authentication}{NIS};
+ run_program::rooted($::prefix, "kdeDesktopCleanup");
#- move some file after an upgrade that may be seriously annoying.
#- and rename saved files to .mdkgiorig.
if ($o->{isUpgrade}) {
- my $pkg = pkgs::packageByName($o->{packages}, 'rpm');
- $pkg && ($pkg->flag_selected || $pkg->flag_installed) && $pkg->compare(">= 4.0") and pkgs::cleanOldRpmDb();
+ my $pkg = install::pkgs::packageByName($o->{packages}, 'rpm');
+ $pkg && ($pkg->flag_selected || $pkg->flag_installed) && $pkg->compare(">= 4.0") and install::pkgs::cleanOldRpmDb();
log::l("moving previous desktop files that have been updated to Trash of each user");
- install_any::kdemove_desktop_file($o->{prefix});
+ install::any::kdemove_desktop_file($::prefix);
foreach (@filesToSaveForUpgrade) {
- renamef("$o->{prefix}/$_.mdkgisave", "$o->{prefix}/$_.mdkgiorig")
- if -e "$o->{prefix}$_.mdkgisave";
+ renamef("$::prefix/$_.mdkgisave", "$::prefix/$_.mdkgiorig")
+ if -e "$::prefix$_.mdkgisave";
}
foreach (@filesNewerToUseAfterUpgrade) {
- if (-e "$o->{prefix}/$_.rpmnew" && -e "$o->{prefix}/$_") {
- renamef("$o->{prefix}/$_", "$o->{prefix}/$_.mdkgiorig");
- renamef("$o->{prefix}/$_.rpmnew", "$o->{prefix}/$_");
+ if (-e "$::prefix/$_.rpmnew" && -e "$::prefix/$_") {
+ renamef("$::prefix/$_", "$::prefix/$_.mdkgiorig");
+ renamef("$::prefix/$_.rpmnew", "$::prefix/$_");
}
}
}
- renamef(pkgs::removed_pkgs_to_upgrade_file(), pkgs::removed_pkgs_to_upgrade_file() . '.done');
+ renamef(install::pkgs::removed_pkgs_to_upgrade_file(), install::pkgs::removed_pkgs_to_upgrade_file() . '.done');
unlink(glob("$::prefix/root/drakx/*.upgrading"));
if ($o->{upgrade_by_removing_pkgs_matching}) {
@@ -589,13 +535,15 @@ EOF
any::fix_broken_alternatives($o->{isUpgrade} eq 'redhat');
#- update theme directly from a package (simplest).
- if (-s "$o->{prefix}/usr/share/oem-theme.rpm") {
- run_program::rooted($o->{prefix}, "rpm", "-U", "/usr/share/oem-theme.rpm");
+ if (-s "$::prefix/usr/share/oem-theme.rpm") {
+ run_program::rooted($::prefix, "rpm", "-U", "/usr/share/oem-theme.rpm");
unlink "/usr/share/oem-theme.rpm";
}
#- call update-menus at the end of package installation
- push @{$o->{waitpids}}, run_program::raw({ root => $o->{prefix}, detach => 1 }, "update-menus", "-n");
+ push @{$o->{waitpids}}, run_program::raw({ root => $::prefix, detach => 1 }, "update-menus", "-n");
+
+ $o->install_hardware_packages;
if ($o->{updatemodules}) {
$o->updatemodules($ENV{THIRDPARTY_DEVICE}, $ENV{THIRDPARTY_DIR});
@@ -605,20 +553,47 @@ EOF
sub install_urpmi {
my ($o) = @_;
- my $pkg = pkgs::packageByName($o->{packages}, 'urpmi');
+ my $pkg = install::pkgs::packageByName($o->{packages}, 'urpmi');
if ($pkg && ($pkg->flag_selected || $pkg->flag_installed)
#- this is a workaround. if many urpmi packages are found in the
#- provides of all media, packagesProviding() might return the wrong
#- one. This probably needs to be fixed in URPM
- || run_program::rooted_get_stdout($::prefix, '/usr/bin/rpm', '-q', 'urpmi') =~ /urpmi/
+ || run_program::rooted_get_stdout($::prefix, '/bin/rpm', '-q', 'urpmi') =~ /urpmi/
) {
- install_any::install_urpmi($o->{method}, $o->{packages});
- pkgs::saveCompssUsers($o->{packages}, $o->{compssUsers});
+ install::media::install_urpmi($o->{method}, $o->{packages});
+ install::pkgs::saveCompssUsers($o->{packages}, $o->{compssUsers});
} else {
log::l("skipping install_urpmi, urpmi not installed");
}
}
+sub install_hardware_packages {
+ my ($o) = @_;
+ if ($o->{match_all_hardware}) {
+ my @l;
+
+ require Xconfig::card;
+ require Xconfig::proprietary;
+ my $cards = Xconfig::card::readCardsDB("$ENV{SHARE_PATH}/ldetect-lst/Cards+");
+ my @drivers = uniq(map { exists $_->{Driver2} ? Xconfig::proprietary::pkg_name_for_Driver2($_) : () } values %$cards);
+ push @l, map { $_, @{$o->do_pkgs->check_kernel_module_packages($_) || []} } @drivers;
+
+ require network::connection;
+ require network::thirdparty;
+ foreach my $type (network::connection->get_types) {
+ $type->can('get_thirdparty_settings') or next;
+ foreach my $settings (@{$type->get_thirdparty_settings || []}) {
+ foreach (@network::thirdparty::thirdparty_types) {
+ my @packages = network::thirdparty::get_required_packages($_, $settings);
+ push @l, network::thirdparty::get_available_packages($_, $o, @packages);
+ }
+ }
+ }
+
+ $o->do_pkgs->install(@l) if @l;
+ }
+}
+
sub updatemodules {
my ($_o, $dev, $rel_dir) = @_;
return if $::testing;
@@ -686,10 +661,12 @@ sub configure_firewall {
my ($o) = @_;
#- set up a firewall if ports have been specified or if the security level is high enough
- if (exists $o->{firewall_ports} || $o->{security} >= 3) {
+ $o->{firewall_ports} ||= '' if $o->{security} >= 3 && !exists $o->{firewall_ports};
+
+ if (defined $o->{firewall_ports}) {
require network::drakfirewall;
$o->{firewall_ports} ||= ''; #- don't open any port by default
- network::drakfirewall::set_ports($o->do_pkgs, 0, $o->{firewall_ports});
+ network::drakfirewall::set_ports($o->do_pkgs, 0, $o->{firewall_ports}, 'log_net_drop');
network::drakfirewall::set_ifw($o->do_pkgs, 1, [ 'psd' ], '');
}
}
@@ -697,15 +674,21 @@ sub configure_firewall {
#------------------------------------------------------------------------------
sub installUpdates {
my ($o) = @_;
- my $u = $o->{updates} or return; $u->{updates} or return;
+ my $u = $o->{updates} or return;
+ $u->{url} or return;
upNetwork($o);
- require crypto;
- crypto::getPackages($o->{packages}, $u->{mirror}) and
- $o->pkg_install(@{$u->{packages} || []});
+ require mirror;
+
+ my $phys_medium = install::media::url2mounted_phys_medium($o, $u->{url} . '/media/main/updates');
+
+ my $update_medium = { name => "Updates for Mandriva Linux " . $o->{product_id}{version}, update => 1 };
+ install::media::get_standalone_medium($o, $phys_medium, $o->{packages}, $update_medium);
+
+ $o->pkg_install(@{$u->{packages} || []});
#- re-install urpmi with update security medium.
- $o->install_urpmi;
+ install_urpmi($o);
}
sub summaryBefore {}
@@ -713,7 +696,6 @@ sub summaryBefore {}
sub summary {
my ($o) = @_;
configureTimezone($o);
- configurePrinter($o) if $o->{printer} && $o->{printer}{SPOOLER};
}
sub summaryAfter {
@@ -723,7 +705,7 @@ sub summaryAfter {
#------------------------------------------------------------------------------
sub configureTimezone {
my ($o) = @_;
- install_any::preConfigureTimezone($o);
+ install::any::preConfigureTimezone($o);
$o->pkg_install('ntp') if $o->{timezone}{ntp};
@@ -739,40 +721,6 @@ sub configureServices {
services::doit($o, $o->{services});
}
}
-#------------------------------------------------------------------------------
-sub configurePrinter {
- my ($o) = @_;
- eval {
- $o->do_pkgs->install('foomatic-filters', 'foomatic-db-engine', 'foomatic-db', 'foomatic-db-hpijs', 'gutenprint-foomatic', 'postscript-ppds', 'printer-utils', 'printer-filters', 'printer-testpages',
- if_($o->do_pkgs->is_installed('gimp'), 'gutenprint-gimp2'));
- };
- if ($@ =~ /rpm not found/) {
- log::l("ERROR: $@");
- if ($o->{printer}) {
- require printer::printerdrake;
- printer::printerdrake::final_cleanup($o->{printer});
- }
- return;
- }
-
- require printer::main;
- eval { add2hash($o->{printer} ||= {}, printer::main::getinfo($o->{prefix})) }; #- get existing configuration.
-
- require printer::printerdrake;
- printer::printerdrake::install_spooler($o->{printer}, $o->{security}, $o->do_pkgs);
-
- foreach (values %{$o->{printer}{configured} || {}}) {
- log::l("configuring printer queue " . $_->{queuedata}{queue} || $_->{QUEUE});
- #- when copy is so adulee (sorry french taste :-)
- #- and when there are some configuration in one place and in another place...
- $o->{printer}{currentqueue} = {};
- printer::main::copy_printer_params($_->{queuedata}, $o->{printer}{currentqueue});
- printer::main::copy_printer_params($_, $o->{printer});
- #- setup all configured queues, which is not the case interactively where
- #- only the working queue is setup on configuration.
- printer::main::configure_queue($o->{printer});
- }
-}
#------------------------------------------------------------------------------
sub setRootPassword {
@@ -780,7 +728,7 @@ sub setRootPassword {
$o->{superuser} ||= {};
require authentication;
authentication::set_root_passwd($o->{superuser}, $o->{authentication});
- install_any::set_authentication($o);
+ install::any::set_authentication($o);
}
#------------------------------------------------------------------------------
@@ -801,9 +749,9 @@ sub addUser {
$o->{desktop} ||= first(any::sessions());
$o->pkg_install("autologin") if !member($o->{desktop}, 'KDE', 'GNOME');
}
- any::set_autologin($o->{autologin}, $o->{desktop});
+ any::set_autologin($o->do_pkgs, $o->{autologin}, $o->{desktop});
- install_any::disable_user_view() if @$users == ();
+ install::any::disable_user_view() if @$users == ();
}
#------------------------------------------------------------------------------
@@ -819,78 +767,8 @@ sub read_bootloader_config {
sub setupBootloaderBefore {
my ($o) = @_;
-
- require bootloader;
-
- #- auto_install backward compatibility
- #- one should now use {message_text}
- if ($o->{bootloader}{message} =~ m!^[^/]!) {
- $o->{bootloader}{message_text} = delete $o->{bootloader}{message};
- }
-
- #- remove previous ide-scsi lines
- bootloader::modify_append($o->{bootloader}, sub {
- my ($_simple, $dict) = @_;
- @$dict = grep { $_->[1] ne 'ide-scsi' } @$dict;
- });
-
- if (cat_("/proc/cmdline") =~ /mem=nopentium/) {
- bootloader::set_append_with_key($o->{bootloader}, mem => 'nopentium');
- }
- if (cat_("/proc/cmdline") =~ /\b(pci)=(\S+)/) {
- bootloader::set_append_with_key($o->{bootloader}, $1, $2);
- }
- if (my ($acpi) = cat_("/proc/cmdline") =~ /\bacpi=(\w+)/) {
- if ($acpi eq 'ht') {
- #- the user is using the default, which may not be the best
- my $year = detect_devices::computer_info()->{BIOS_Year};
- if ($year >= 2002) {
- log::l("forcing ACPI on recent bios ($year)");
- $acpi = '';
- }
- }
- bootloader::set_append_with_key($o->{bootloader}, acpi => $acpi);
- }
- if (cat_("/proc/cmdline") =~ /\bnoapic/) {
- bootloader::set_append_simple($o->{bootloader}, 'noapic');
- }
- my ($MemTotal) = cat_("/proc/meminfo") =~ /^MemTotal:\s*(\d+)/m;
- if (my ($biggest_swap) = sort { $b->{size} <=> $a->{size} } grep { isSwap($_) } @{$o->{fstab}}) {
- log::l("MemTotal: $MemTotal < ", $biggest_swap->{size} / 2);
- if ($MemTotal < $biggest_swap->{size} / 2) {
- bootloader::set_append_with_key($o->{bootloader}, resume => devices::make($biggest_swap->{device}));
- }
- }
-
- #- check for valid fb mode to enable a default boot with frame buffer.
- my $vga = $o->{allowFB} && (!detect_devices::matching_desc__regexp('3D Rage LT') &&
- !detect_devices::matching_desc__regexp('Rage Mobility [PL]') &&
- !detect_devices::matching_desc__regexp('i740') &&
- !detect_devices::matching_desc__regexp('Matrox') &&
- !detect_devices::matching_desc__regexp('Tseng.*ET6\d00') &&
- !detect_devices::matching_desc__regexp('SiS.*SG86C2.5') &&
- !detect_devices::matching_desc__regexp('SiS.*559[78]') &&
- !detect_devices::matching_desc__regexp('SiS.*300') &&
- !detect_devices::matching_desc__regexp('SiS.*540') &&
- !detect_devices::matching_desc__regexp('SiS.*6C?326') &&
- !detect_devices::matching_desc__regexp('SiS.*6C?236') &&
- !detect_devices::matching_desc__regexp('Voodoo [35]|Voodoo Banshee') && #- 3d acceleration seems to bug in fb mode
- !detect_devices::matching_desc__regexp('828[14][05].* CGC') #- i810 & i845 now have FB support during install but we disable it afterwards
- );
- my $force_vga = $o->{allowFB} && (detect_devices::matching_desc__regexp('SiS.*630') || #- SiS 630 need frame buffer.
- detect_devices::matching_desc__regexp('GeForce.*Integrated') #- needed for fbdev driver (hack).
- );
-
- #- propose the default fb mode for kernel fb, if aurora or bootsplash is installed.
- my $need_fb = do {
- my $p = pkgs::packageByName($o->{packages}, 'bootsplash');
- $p && $p->flag_installed;
- };
- bootloader::suggest($o->{bootloader}, $o->{all_hds},
- vga_fb => ($force_vga || $vga && $need_fb) && $o->{vga},
- quiet => $o->{meta_class} ne 'server');
-
- $o->{bootloader}{keytable} ||= keyboard::keyboard2kmap($o->{keyboard});
+ any::setupBootloaderBefore($o->do_pkgs, $o->{bootloader}, $o->{all_hds}, $o->{fstab}, $o->{keyboard},
+ $o->{allowFB}, $o->{vga}, $o->{meta_class} ne 'server');
}
sub setupBootloader {
@@ -907,7 +785,7 @@ sub configureXBefore {
my ($o) = @_;
#- keep this here if the package has to be updated.
- $o->pkg_install("xorg-x11");
+ $o->pkg_install("task-x11");
}
sub configureX {
my ($o) = @_;
@@ -917,7 +795,7 @@ sub configureX {
$o->{raw_X} = Xconfig::default::configure($o->do_pkgs, $o->{keyboard}, $o->{mouse});
require Xconfig::main;
- Xconfig::main::configure_everything_auto_install($o->{raw_X}, $o->do_pkgs, $o->{X}, install_any::X_options_from_o($o));
+ Xconfig::main::configure_everything_auto_install($o->{raw_X}, $o->do_pkgs, $o->{X}, install::any::X_options_from_o($o));
configureXAfter($o);
}
sub configureXAfter {
@@ -931,12 +809,10 @@ sub miscellaneousBefore {
require security::level;
require security::various;
$o->{security} ||= security::level::get();
- $o->{security_user} ||= security::various::config_security_user($o->{prefix});
- $o->{libsafe} ||= security::various::config_libsafe($o->{prefix});
+ $o->{security_user} ||= security::various::config_security_user($::prefix);
+ $o->{libsafe} ||= security::various::config_libsafe($::prefix);
log::l("security $o->{security}");
-
- add2hash_($o->{miscellaneous} ||= {}, { numlock => !detect_devices::isLaptop() });
}
sub miscellaneous {
my ($_o) = @_;
@@ -950,12 +826,10 @@ sub miscellaneousAfter {
$ENV{SECURE_LEVEL} = $o->{security}; #- deprecated with chkconfig 1.3.4-2mdk, uses /etc/sysconfig/msec
addToBeDone {
- addVarsInSh("$o->{prefix}/etc/sysconfig/system", {
- META_CLASS => $o->{meta_class} || 'PowerPack',
- });
- substInFile { s/KEYBOARD_AT_BOOT=.*/KEYBOARD_AT_BOOT=yes/ } "$o->{prefix}/etc/sysconfig/usb" if detect_devices::usbKeyboards();
+ addVarsInSh("$::prefix/etc/sysconfig/system", { META_CLASS => $o->{meta_class} });
+ substInFile { s/KEYBOARD_AT_BOOT=.*/KEYBOARD_AT_BOOT=yes/ } "$::prefix/etc/sysconfig/usb" if detect_devices::usbKeyboards();
- eval { install_any::set_security($o) };
+ eval { install::any::set_security($o) };
} 'installPackages';
}
@@ -963,28 +837,36 @@ sub miscellaneousAfter {
#------------------------------------------------------------------------------
sub exitInstall {
my ($o) = @_;
+
+ install::any::deploy_server_notify($o) if exists $o->{deploy_server};
+
+ #- mainly for auto_install's
+ #- do not use run_program::xxx because it does not leave stdin/stdout unchanged
+ system("bash", "-c", $o->{postInstallNonRooted}) if $o->{postInstallNonRooted};
+ system("chroot", $::prefix, "bash", "-c", $o->{postInstall}) if $o->{postInstall};
+
eval {
my $report = '/root/drakx/report.bug';
unlink "$::prefix$report", "$::prefix$report.gz";
- output "$::prefix$report", install_any::report_bug();
+ output "$::prefix$report", install::any::report_bug();
run_program::rooted($::prefix, 'gzip', $report);
};
- eval { install_any::getAndSaveAutoInstallFloppies($o, 1) } if arch() !~ /^ppc/;
- eval { output "$o->{prefix}/root/drakx/README", "This directory contains several installation-related files,
+ eval { install::any::getAndSaveAutoInstallFloppies($o, 1) } if arch() !~ /^ppc/;
+ eval { output "$::prefix/root/drakx/README", "This directory contains several installation-related files,
mostly log files (very useful if you ever report a bug!).
Beware that some Mandriva Linux tools rely on the contents of some
of these files... so remove any file from here at your own
risk!
" };
- install_any::deploy_server_notify($o) if exists $o->{deploy_server};
#- wait for remaining processes.
foreach (@{$o->{waitpids}}) {
waitpid $_, 0;
log::l("pid $_ returned $?");
}
- install_any::ejectCdrom();
- install_any::log_sizes($o);
+ install::media::umount_media($o->{packages});
+ install::media::openCdromTray(install::media::first_medium($o->{packages})->{phys_medium}{device}) if !detect_devices::is_xbox() && $o->{method} eq 'cdrom';
+ install::media::log_sizes();
}
#------------------------------------------------------------------------------
@@ -1000,24 +882,38 @@ sub network_is_cheap {
member($o->{net}{type}, qw(adsl lan cable));
}
+sub start_network_interface {
+ my ($o) = @_;
+ require network::tools;
+ network::tools::start_net_interface($o->{net}, 0);
+}
+
+sub stop_network_interface {
+ my ($o) = @_;
+ require network::tools;
+ network::tools::stop_net_interface($o->{net}, 0);
+}
+
#------------------------------------------------------------------------------
sub upNetwork {
my ($o, $b_pppAvoided) = @_;
- install_any::is_network_install($o) and return 1;
+ install::any::is_network_install($o) || $::local_install and return 1;
$o->{modules_conf}->write;
+ if (! -e "/etc/resolv.conf") {
+ #- symlink resolv.conf in install root too so that updates and suppl media can be added
+ symlink "$::prefix/etc/resolv.conf", "/etc/resolv.conf";
+ }
if (hasNetwork($o)) {
if (network_is_cheap($o)) {
log::l("starting network ($o->{net}{type})");
- require network::netconnect;
- network::netconnect::start_internet($o);
+ start_network_interface($o);
return 1;
} elsif (!$b_pppAvoided) {
log::l("starting network (ppp: $o->{net}{type})");
eval { modules::load(qw(serial ppp bsd_comp ppp_deflate)) };
- run_program::rooted($o->{prefix}, "/etc/rc.d/init.d/syslog", "start");
- require network::netconnect;
- network::netconnect::start_internet($o);
+ run_program::rooted($::prefix, "/etc/rc.d/init.d/syslog", "start");
+ start_network_interface($o);
return 1;
} else {
log::l(qq(not starting network (b/c ppp avoided and type is "$o->{net}{type})"));
@@ -1030,17 +926,15 @@ sub upNetwork {
sub downNetwork {
my ($o, $costlyOnly) = @_;
- install_any::is_network_install($o) and return 1;
+ install::any::is_network_install($o) || $::local_install and return 1;
$o->{modules_conf}->write;
if (hasNetwork($o)) {
if (!$costlyOnly) {
- require network::netconnect;
- network::netconnect::stop_internet($o);
+ stop_network_interface($o);
return 1;
} elsif (!network_is_cheap($o)) {
- require network::netconnect;
- network::netconnect::stop_internet($o);
- run_program::rooted($o->{prefix}, "/etc/rc.d/init.d/syslog", "stop");
+ stop_network_interface($o);
+ run_program::rooted($::prefix, "/etc/rc.d/init.d/syslog", "stop");
eval { modules::unload(qw(ppp_deflate bsd_comp ppp serial)) };
return 1;
}
@@ -1055,9 +949,9 @@ sub cleanIfFailedUpgrade($) {
#- if an upgrade has failed, there should be .mdkgisave files around.
if ($o->{isUpgrade}) {
foreach (@filesToSaveForUpgrade) {
- if (-e "$o->{prefix}/$_" && -e "$o->{prefix}/$_.mdkgisave") {
- rename "$o->{prefix}/$_", "$o->{prefix}/$_.mdkginew"; #- keep new files around in case !
- rename "$o->{prefix}/$_.mdkgisave", "$o->{prefix}/$_";
+ if (-e "$::prefix/$_" && -e "$::prefix/$_.mdkgisave") {
+ rename "$::prefix/$_", "$::prefix/$_.mdkginew"; #- keep new files around in case !
+ rename "$::prefix/$_.mdkgisave", "$::prefix/$_";
}
}
}
diff --git a/perl-install/install_steps_auto_install.pm b/perl-install/install/steps_auto_install.pm
index 2e35f972e..3b5e24636 100644
--- a/perl-install/install_steps_auto_install.pm
+++ b/perl-install/install/steps_auto_install.pm
@@ -1,74 +1,84 @@
-package install_steps_auto_install; # $Id$
+package install::steps_auto_install; # $Id$
use diagnostics;
use strict;
use vars qw(@ISA $graphical @graphical_steps);
-@ISA = qw(install_steps);
+@ISA = qw(install::steps);
#-######################################################################################
#- misc imports
#-######################################################################################
use common;
-use install_steps;
+use install::steps;
+use install::steps_gtk;
sub new {
my ($type, $o) = @_;
# Handle legacy options
$o->{interactive} ||= 'gtk' if $graphical || !is_empty_array_ref($o->{interactiveSteps});
- push @{$o->{interactiveSteps}}, qw(installPackages exitInstall configureNetwork), @graphical_steps;
+ push @{$o->{interactiveSteps}}, qw(installPackages configureNetwork), @graphical_steps, if_(!$o->{autoExitInstall}, 'exitInstall');
if ($o->{interactive}) {
- my $interactiveClass = "install_steps_$o->{interactive}";
- require "$interactiveClass.pm";
+ require "install/steps_$o->{interactive}.pm";
- @ISA = ($interactiveClass, @ISA);
+ @ISA = ('install::steps_' . $o->{interactive}, @ISA);
foreach my $f (@{$o->{orderedSteps}}) {
$o->{steps}{$f}{auto} = 1 if !member($f, @{$o->{interactiveSteps}});
}
- goto &{$::{$interactiveClass . "::"}{new}};
+ goto &{$install::{'steps_' . $o->{interactive} . '::'}{new}};
} else {
- @ISA = ('install_steps_auto_install_non_interactive', @ISA);
- (bless {}, ref($type) || $type)->install_steps::new($o);
+ @ISA = ('install::steps_auto_install_non_interactive', @ISA);
+ (bless {}, ref($type) || $type)->install::steps::new($o);
}
}
sub exitInstall {
my ($o, $alldone) = @_;
- return if $o->{autoExitInstall};
if ($o->{interactive}) {
$o->SUPER::exitInstall($alldone);
} else {
- install_steps::exitInstall($o);
+ install::steps::exitInstall($o);
+ return if $o->{autoExitInstall};
print "\a";
- print "Auto installation complete (the postInstall is not done yet though)\n";
- print "Press <Enter> to reboot\n";
+ print "Auto installation complete\n";
+ print "Press <Enter>" , $::local_install ? '' : " to reboot", "\n";
<STDIN>;
}
}
#-######################################################################################
-#- install_steps_auto_install_non_interactive package
+#- install::steps_auto_install_non_interactive package
#-######################################################################################
-package install_steps_auto_install_non_interactive;
+package install::steps_auto_install_non_interactive;
-use install_steps;
+use install::steps;
use lang;
use modules;
use common;
use log;
+my $iocharset;
+
sub enteringStep {
my ($o, $step) = @_;
- my ($s, $t) = (N_("Entering step `%s'\n"), $o->{steps}{$step}{text});
- ($s, $t) = (translate($s), translate($t)) if $ENV{LANG} !~ /ja|ko|zh/;
- print sprintf($s, $t);
- $o->install_steps::enteringStep($step);
+
+ my ($s, $t) = (N_("Entering step `%s'\n"), common::remove_translate_context($o->{steps}{$step}{text}));
+ my $txt;
+ if ($iocharset && !$::local_install) {
+ $txt = sprintf(translate($s), translate($t));
+ $txt = Locale::gettext::iconv($txt, "utf-8", $iocharset);
+ } else {
+ $txt = sprintf($s, $t);
+ }
+ print $txt;
+
+ $o->install::steps::enteringStep($step);
}
sub rebootNeeded {
@@ -80,16 +90,25 @@ EOF
}
sub ask_warn {
- log::l(ref($_[1]) ? join " ", @{$_[1]} : $_[1]);
+ my ($_o, $_title, $message) = @_;
+ log::l(join(" ", deref_array($message)) . ' ' . backtrace());
}
sub wait_message {
my ($_o, $_title, $_message) = @_;
}
+sub wait_message_with_progress_bar {
+ my ($_o, $_title) = @_;
+ undef, sub {};
+}
sub charsetChanged {
my ($o) = @_;
lang::load_console_font($o->{locale});
+
+ my ($name, $_sfm, $acm) = lang::l2console_font($o->{locale}, 1);
+ my %fs_options = lang::fs_options($o->{locale});
+ $iocharset = $name && $acm && $fs_options{iocharset} ne 'utf8' ? $fs_options{iocharset} : '';
}
sub errorInStep {
@@ -104,7 +123,7 @@ sub errorInStep {
log::l("restarting install");
c::_exit(0x35);
}
- c::_exit(0);
+ c::_exit(1);
}
@@ -113,7 +132,7 @@ sub errorInStep {
#-######################################################################################
sub installPackages {
my ($o, $packages) = @_;
- catch_cdie { $o->install_steps::installPackages($packages) } sub { print formatError($@), "\n"; 1 };
+ catch_cdie { $o->install::steps::installPackages($packages) } sub { print formatError($@), "\n"; 1 };
}
1;
diff --git a/perl-install/install/steps_curses.pm b/perl-install/install/steps_curses.pm
new file mode 100644
index 000000000..213993839
--- /dev/null
+++ b/perl-install/install/steps_curses.pm
@@ -0,0 +1,68 @@
+package install::steps_curses; # $Id$
+
+use diagnostics;
+use strict;
+use vars qw(@ISA);
+
+@ISA = qw(install::steps_interactive interactive::curses);
+
+#-######################################################################################
+#- misc imports
+#-######################################################################################
+use install::steps_interactive;
+use interactive::curses;
+use install::any;
+use devices;
+use lang;
+use common;
+
+my $banner;
+sub banner {
+ my ($cui, $step) = @_;
+ my $text = N("Mandriva Linux Installation %s", $step);
+ $banner ||= do {
+ my $win = $cui->add(undef, 'Window', '-x' => 1, '-y' => 0, '-height' => 1);
+ $win->add(undef, 'Label');
+ };
+ $banner->text($text);
+}
+
+sub help_line {
+ my ($cui) = @_;
+ my $text = N("<Tab>/<Alt-Tab> between elements");
+ my $win = $cui->add(undef, 'Window', '-x' => 1, '-y' => -1, '-height' => 1);
+ $win->add(undef, 'Label', '-text' => $text);
+}
+
+sub new {
+ my ($type, $o) = @_;
+
+ add2hash($o, interactive::curses->new);
+
+ #- unset DISPLAY so that code testing wether DISPLAY is set can know we don't have or use X
+ delete $ENV{DISPLAY};
+
+ banner($o->{cui}, '');
+ help_line($o->{cui});
+
+ (bless {}, ref($type) || $type)->SUPER::new($o);
+}
+
+sub charsetChanged {
+ my ($o) = @_;
+ lang::load_console_font($o->{locale});
+}
+
+sub enteringStep {
+ my ($o, $step) = @_;
+ $o->SUPER::enteringStep($step);
+ banner($o->{cui}, translate($o->{steps}{$step}{text}));
+}
+
+sub exitInstall {
+ &install::steps_interactive::exitInstall;
+ interactive::curses::end();
+}
+
+1;
+
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install/steps_gtk.pm
index 4c16cbcaf..07c684efd 100644
--- a/perl-install/install_steps_gtk.pm
+++ b/perl-install/install/steps_gtk.pm
@@ -1,16 +1,16 @@
-package install_steps_gtk; # $Id$
+package install::steps_gtk; # $Id$
use diagnostics;
use strict;
use vars qw(@ISA);
-@ISA = qw(install_steps_interactive interactive::gtk);
+@ISA = qw(install::steps_interactive interactive::gtk);
#-######################################################################################
#- misc imports
#-######################################################################################
-use pkgs;
-use install_steps_interactive;
+use install::pkgs;
+use install::steps_interactive;
use interactive::gtk;
use xf86misc::main;
use common;
@@ -18,10 +18,10 @@ use mygtk2;
use ugtk2 qw(:helpers :wrappers :create);
use devices;
use modules;
-use install_gtk;
-use install_any;
+use install::gtk;
+use install::any;
use mouse;
-use help;
+use install::help::help;
use log;
#-######################################################################################
@@ -31,7 +31,7 @@ sub new($$) {
my ($type, $o) = @_;
$ENV{DISPLAY} ||= $o->{display} || ":0";
- my $wanted_DISPLAY = $::testing && -x '/usr/X11R6/bin/Xnest' ? ':9' : $ENV{DISPLAY};
+ my $wanted_DISPLAY = $::testing && -x '/usr/bin/Xnest' ? ':9' : $ENV{DISPLAY};
if (!$::local_install &&
($::testing ? $ENV{DISPLAY} ne $wanted_DISPLAY : $ENV{DISPLAY} =~ /^:\d/)) { #- is the display local or distant?
@@ -48,13 +48,13 @@ sub new($$) {
if ($server eq 'Xnest') {
push @options, '-ac', '-geometry', $o->{vga} || ($o->{vga16} ? '640x480' : '800x600');
} elsif ($::globetrotter || !$::move) {
- install_gtk::createXconf($f, @{$o->{mouse}}{"XMOUSETYPE", "device"}, $o->{mouse}{wacom}[0], $Driver);
+ install::gtk::createXconf($f, @{$o->{mouse}}{'Protocol', 'device'}, $o->{mouse}{wacom}[0], $Driver);
push @options, if_(!$::globetrotter, '-kb'), '-allowMouseOpenFail', '-xf86config', $f if arch() !~ /^sparc/;
- push @options, 'tty7', '-dpms', '-s', '240';
+ push @options, 'tty7', '-s', '240';
#- old weird servers: Xsun
- push @options, '-fp', '/usr/X11R6/lib/X11/fonts:unscaled' if $server =~ /Xsun/;
+ push @options, '-fp', '/usr/share/fonts:unscaled' if $server =~ /Xsun/;
}
if (!fork()) {
@@ -137,11 +137,11 @@ sub new($$) {
modules::load('xpad');
run_program::run('xset', 'm', '1/8', '1');
}
- install_gtk::init_gtk($o);
- install_gtk::init_sizes();
- install_gtk::install_theme($o);
- install_gtk::create_logo_window($o);
- install_gtk::create_steps_window($o);
+ install::gtk::init_gtk($o);
+ install::gtk::init_sizes($o);
+ install::gtk::install_theme($o);
+ install::gtk::create_logo_window($o);
+ install::gtk::create_steps_window($o);
$ugtk2::grab = 1;
@@ -153,9 +153,9 @@ sub new($$) {
sub enteringStep {
my ($o, $step) = @_;
- printf "Entering step `%s'\n", $o->{steps}{$step}{text};
+ printf "Entering step `%s'\n", common::remove_translate_context($o->{steps}{$step}{text});
$o->SUPER::enteringStep($step);
- install_gtk::update_steps_position($o);
+ install::gtk::update_steps_position($o);
}
sub leavingStep {
my ($o, $step) = @_;
@@ -166,8 +166,22 @@ sub leavingStep {
sub charsetChanged {
my ($o) = @_;
Gtk2->set_locale;
- install_gtk::load_font($o);
- install_gtk::create_steps_window($o);
+ install::gtk::load_font($o);
+ install::gtk::create_steps_window($o);
+}
+
+
+sub interactive_help_has_id {
+ my ($_o, $id) = @_;
+ exists $install::help::help::{$id};
+}
+
+sub interactive_help_get_id {
+ my ($_o, @l) = @_;
+ @l = map {
+ join("\n\n", map { s/\n/ /mg; $_ } split("\n\n", translate($install::help::help::{$_}->())));
+ } grep { exists $install::help::help::{$_} } @l;
+ join("\n\n\n", @l);
}
#-######################################################################################
@@ -208,7 +222,7 @@ sub selectMouse {
sub reallyChooseGroups {
my ($o, $size_to_display, $individual, $_compssUsers) = @_;
- my $w = ugtk2->new(N("Package Group Selection"));
+ my $w = ugtk2->new(N("Package Group Selection"), icon => 'banner-sys');
my $w_size = gtknew('Label', text => &$size_to_display);
my $entry = sub {
@@ -223,17 +237,17 @@ sub reallyChooseGroups {
});
};
#- when restarting this step, it might be necessary to reload the compssUsers.pl (bug 11558). kludgy.
- if (!ref $o->{gtk_display_compssUsers}) { install_any::load_rate_files($o) }
+ if (!ref $o->{gtk_display_compssUsers}) { install::any::load_rate_files($o) }
ugtk2::gtkadd($w->{window},
gtknew('VBox', children => [
1, $o->{gtk_display_compssUsers}->($entry),
1, '',
+ 0, if_($individual,
+ gtknew('CheckButton', text => N("Individual package selection"), active_ref => $individual),
+ ),
0, gtknew('HBox', children_loose => [
gtknew('Button', text => N("Help"), clicked => $o->interactive_help_sub_display_id('choosePackages')),
$w_size,
- if_($individual,
- gtknew('CheckButton', text => N("Individual package selection"), active_ref => $individual),
- ),
gtknew('Button', text => N("Next"), clicked => sub { Gtk2->main_quit }),
]),
]),
@@ -245,17 +259,17 @@ sub reallyChooseGroups {
sub choosePackagesTree {
my ($o, $packages, $o_limit_medium) = @_;
- my $available = install_any::getAvailableSpace($o);
- my $availableCorrected = pkgs::invCorrectSize($available / sqr(1024)) * sqr(1024);
+ my $available = install::any::getAvailableSpace($o);
+ my $availableCorrected = install::pkgs::invCorrectSize($available / sqr(1024)) * sqr(1024);
my $common;
$common = { get_status => sub {
- my $size = pkgs::selectedSize($packages);
- N("Total size: %d / %d MB", pkgs::correctSize($size / sqr(1024)), $available / sqr(1024));
+ my $size = install::pkgs::selectedSize($packages);
+ N("Total size: %d / %d MB", install::pkgs::correctSize($size / sqr(1024)), $available / sqr(1024));
},
node_state => sub {
- my $p = pkgs::packageByName($packages, $_[0]) or return;
- pkgs::packageMedium($packages, $p)->selected or return;
+ my $p = install::pkgs::packageByName($packages, $_[0]) or return;
+ install::pkgs::packageMedium($packages, $p)->{selected} or return;
$p->arch eq 'src' and return;
$p->flag_base and return 'base';
$p->flag_installed && !$p->flag_upgrade and return 'installed';
@@ -266,7 +280,7 @@ sub choosePackagesTree {
my ($add_node, $flat) = @_;
if ($flat) {
foreach (sort map { $_->name }
- grep { !$o_limit_medium || pkgs::packageMedium($packages, $_) == $o_limit_medium }
+ grep { !$o_limit_medium || install::pkgs::packageMedium($packages, $_) == $o_limit_medium }
grep { $_ && $_->arch ne 'src' }
@{$packages->{depslist}}) {
$add_node->($_, undef);
@@ -276,7 +290,7 @@ sub choosePackagesTree {
my (@firstchoice, @others);
my %fl = map { ("CAT_$_" => 1) } @{$root->{flags}};
foreach my $p (@{$packages->{depslist}}) {
- !$o_limit_medium || pkgs::packageMedium($packages, $p) == $o_limit_medium or next;
+ !$o_limit_medium || install::pkgs::packageMedium($packages, $p) == $o_limit_medium or next;
my @flags = $p->rflags;
next if !($p->rate && any { any { !/^!/ && $fl{$_} } split('\|\|') } @flags);
$p->rate >= 3 ?
@@ -290,10 +304,10 @@ sub choosePackagesTree {
}
},
get_info => sub {
- my $p = pkgs::packageByName($packages, $_[0]) or return '';
- pkgs::extractHeaders([$p], $packages->{mediums});
+ my $p = install::pkgs::packageByName($packages, $_[0]) or return '';
+ install::pkgs::extractHeaders([$p], $packages->{mediums});
- my $imp = translate($pkgs::compssListDesc{$p->flag_base ? 5 : $p->rate});
+ my $imp = translate($install::pkgs::compssListDesc{$p->flag_base ? 5 : $p->rate});
my $tag = { 'foreground' => 'royalblue3' };
$@ ? N("Bad package") :
@@ -301,20 +315,21 @@ sub choosePackagesTree {
[ N("Version: "), $tag ], [ $p->version . '-' . $p->release . "\n" ],
[ N("Size: "), $tag ], [ N("%d KB\n", $p->size / 1024) ],
if_($imp, [ N("Importance: "), $tag ], [ "$imp\n" ]),
- [ "\n" ], [ formatLines(common::from_utf8($p->description)) ] ];
+ [ "\n" ], [ formatLines($p->description) ] ];
},
toggle_nodes => sub {
my $set_state = shift @_;
my $isSelection = 0;
- my %l = map { my $p = pkgs::packageByName($packages, $_);
+ my %l = map { my $p = install::pkgs::packageByName($packages, $_);
$isSelection ||= !$p->flag_selected;
$p->id => 1 } @_;
my $state = $packages->{state} ||= {};
+ $packages->{rpmdb} ||= install::pkgs::rpmDbOpen(); #- WORKAROUND
my @l = $isSelection ? $packages->resolve_requested($packages->{rpmdb}, $state, \%l,
- callback_choices => \&pkgs::packageCallbackChoices) :
+ callback_choices => \&install::pkgs::packageCallbackChoices) :
$packages->disable_selected($packages->{rpmdb}, $state,
map { $packages->{depslist}[$_] } keys %l);
- my $size = pkgs::selectedSize($packages);
+ my $size = install::pkgs::selectedSize($packages);
my $error;
if (!@l) {
@@ -344,10 +359,10 @@ sub choosePackagesTree {
);
$_ . ($s ? " ($s)" : '');
} sort @ask_unselect) ];
- } elsif (pkgs::correctSize($size / sqr(1024)) > $available / sqr(1024)) {
+ } elsif (install::pkgs::correctSize($size / sqr(1024)) > $available / sqr(1024)) {
$error = N("You can not select this package as there is not enough space left to install it");
} elsif (@l > @_ && $common->{state}{auto_deps}) {
- $o->ask_okcancel('', [ $isSelection ?
+ $o->ask_okcancel(N("Confirmation"), [ $isSelection ?
N("The following packages are going to be installed") :
N("The following packages are going to be removed"),
formatList(20, sort(map { $_->name } @l)) ], 1) or $error = ''; #- defined
@@ -355,6 +370,7 @@ sub choosePackagesTree {
if (defined $error) {
$o->ask_warn('', $error) if $error;
#- disable selection (or unselection).
+ $packages->{rpmdb} ||= install::pkgs::rpmDbOpen(); #- WORKAROUND
$isSelection ? $packages->disable_selected($packages->{rpmdb}, $state, @l) :
$packages->resolve_requested($packages->{rpmdb}, $state, { map { $_->id => 1 } @l });
} else {
@@ -365,24 +381,19 @@ sub choosePackagesTree {
}
},
grep_allowed_to_toggle => sub {
- grep { my $p = pkgs::packageByName($packages, $_); $p && !$p->flag_base } @_;
+ grep { my $p = install::pkgs::packageByName($packages, $_); $p && !$p->flag_base } @_;
},
grep_unselected => sub {
- grep { !pkgs::packageByName($packages, $_)->flag_selected } @_;
+ grep { !install::pkgs::packageByName($packages, $_)->flag_selected } @_;
},
check_interactive_to_toggle => sub {
- my $p = pkgs::packageByName($packages, $_[0]) or return;
+ my $p = install::pkgs::packageByName($packages, $_[0]) or return;
if ($p->flag_base) {
$o->ask_warn('', N("This is a mandatory package, it can not be unselected"));
} elsif ($p->flag_installed && !$p->flag_upgrade) {
$o->ask_warn('', N("You can not unselect this package. It is already installed"));
} elsif ($p->flag_selected && $p->flag_installed) {
- if ($::expert) {
- $o->ask_yesorno('', N("This package must be upgraded.\nAre you sure you want to deselect it?")) or return;
- return 1;
- } else {
- $o->ask_warn('', N("You can not unselect this package. It must be upgraded"));
- }
+ $o->ask_warn('', N("You can not unselect this package. It must be upgraded"));
} else { return 1 }
return;
},
@@ -400,8 +411,8 @@ sub choosePackagesTree {
help => N("Minimal install"),
code => sub {
- install_any::unselectMostPackages($o);
- pkgs::setSelectedFromCompssList($packages, { SYSTEM => 1 }, 4, $availableCorrected);
+ install::any::unselectMostPackages($o);
+ install::pkgs::setSelectedFromCompssList($packages, { SYSTEM => 1 }, 4, $availableCorrected);
1;
} }),
],
@@ -411,24 +422,24 @@ sub choosePackagesTree {
},
};
- $o->ask_browse_tree_info('', N("Choose the packages you want to install"), $common);
+ $o->ask_browse_tree_info(N("Software Management"), N("Choose the packages you want to install"), $common);
}
#------------------------------------------------------------------------------
sub beforeInstallPackages {
my ($o) = @_;
$o->SUPER::beforeInstallPackages;
- install_any::copy_advertising($o);
+ install::any::copy_advertising($o);
}
#------------------------------------------------------------------------------
sub installPackages {
my ($o, $packages) = @_;
- my ($current_total_size, $last_size, $nb, $total_size, $start_time, $last_dtime, $_trans_progress_total);
+ my ($current_total_size, $last_size, $nb, $total_size, $last_dtime, $_trans_progress_total);
local $::noborderWhenEmbedded = 1;
- my $w = ugtk2->new(N("Installing"));
+ my $w = ugtk2->new(N("Installing"), icon => 'banner-sys');
my $show_advertising if 0;
my $pkg_log_widget = gtknew('TextView', editable => 0);
@@ -436,10 +447,10 @@ sub installPackages {
my $advertize = sub {
my ($update) = @_;
- @install_any::advertising_images && $show_advertising && $update or return;
+ @install::any::advertising_images && $show_advertising && $update or return;
$change_time = time();
- my $f = $install_any::advertising_images[$i++ % @install_any::advertising_images];
+ my $f = $install::any::advertising_images[$i++ % @install::any::advertising_images];
log::l("advertising $f");
gtkval_modify(\$advertising_image, $f);
@@ -452,7 +463,7 @@ sub installPackages {
}
};
- my $cancel = gtknew('Button', text => N("Cancel"), clicked => sub { $pkgs::cancel_install = 1 });
+ my $cancel = gtknew('Button', text => N("Cancel"), clicked => sub { $install::pkgs::cancel_install = 1 });
my $details = gtknew('Button', text_ref => \$show_advertising,
format => sub { $show_advertising ? N("Details") : N("No details") },
clicked => sub {
@@ -480,9 +491,9 @@ sub installPackages {
#- for the hide_ref & show_ref to work, we must set $show_advertising after packing
gtkval_modify(\$show_advertising,
- defined $show_advertising ? $show_advertising : to_bool(@install_any::advertising_images));
+ defined $show_advertising ? $show_advertising : to_bool(@install::any::advertising_images));
- $details->hide if !@install_any::advertising_images;
+ $details->hide if !@install::any::advertising_images;
$w->sync;
foreach ($cancel, $details) {
gtkset_mousecursor_normal($_->window);
@@ -490,19 +501,19 @@ sub installPackages {
$advertize->(0);
- local *install_steps::installCallback = sub {
+ local *install::steps::installCallback = sub {
my ($packages, $type, $id, $subtype, $amount, $total) = @_;
if ($type eq 'user' && $subtype eq 'install') {
#- $amount and $total are used to return number of package and total size.
$nb = $amount;
$total_size = $total; $current_total_size = 0;
- $start_time = time();
- mygtk2::gtkadd($pkg_log_widget, text => N("%d packages", $nb));
+ $o->{install_start_time} = time();
+ mygtk2::gtkadd($pkg_log_widget, text => P("%d package", "%d packages", $nb, $nb));
$w->flush;
} elsif ($type eq 'open') {
gtkval_modify(\$pkg_progress, 0);
my $p = $packages->{depslist}[$id];
- mygtk2::gtkadd($pkg_log_widget, text => sprintf("\n%s: %s", $p->name, (split /\n/, common::from_utf8($p->summary))[0] || ''));
+ mygtk2::gtkadd($pkg_log_widget, text => sprintf("\n%s: %s", $p->name, (split /\n/, $p->summary)[0] || ''));
$current_total_size += $last_size;
$last_size = $p->size;
$advertize->(1) if $show_advertising && $total_size > 20_000_000 && time() - $change_time > 20;
@@ -510,10 +521,10 @@ sub installPackages {
} elsif ($type eq 'inst' && $subtype eq 'progress') {
gtkval_modify(\$pkg_progress, $total ? $amount / $total : 0);
- my $dtime = time() - $start_time;
+ my $dtime = time() - $o->{install_start_time};
my $ratio =
$total_size == 0 ? 0 :
- pkgs::size2time($current_total_size + $amount, $total_size) / pkgs::size2time($total_size, $total_size);
+ install::pkgs::size2time($current_total_size + $amount, $total_size) / install::pkgs::size2time($total_size, $total_size);
$ratio >= 1 and $ratio = 1;
my $total_time = $ratio ? $dtime / $ratio : time();
@@ -525,51 +536,15 @@ sub installPackages {
$w->flush;
}
};
- #- the modification is not local as the box should be living for other package installation.
- undef *install_any::changeMedium;
- *install_any::changeMedium = sub {
- my ($method, $medium) = @_;
-
- #- if not using a cdrom medium or an iso image, always abort.
- return if !install_any::method_allows_medium_change($method);
-
- my $name = install_medium::by_id($medium, $o->{packages})->{descr};
- local $| = 1; print "\a";
- my $time = time();
- 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");
- if ($method =~ /-iso$/) {
- $r = install_any::changeIso($name);
- } else {
- $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 do not have it, press Cancel to avoid installation from this Cd-Rom.", $name), 1);
- }
- #- add the elapsed time (otherwise the predicted time will be rubbish)
- $start_time += time() - $time;
- return $r;
- };
my $install_result;
- catch_cdie { $install_result = $o->install_steps::installPackages($packages) }
- sub {
- log::l("catch_cdie: $@");
- if (my @err = $@ =~ /^error ordering package list: (.*)/ ?
- (N("There was an error ordering packages:"), $1) :
- $@ =~ /^error installing package list: (.*)/ ?
- (N("There was an error installing packages:"), $1) : @{[]}) {
- my $time = time();
- if ($o->ask_yesorno('', [ @err, N("Go on anyway?") ], 1)) {
- #- add the elapsed time (otherwise the predicted time will be rubbish)
- $start_time += time() - $time;
- return 1;
- } else {
- ${$_[0]} = "already displayed";
- }
- }
- $w->destroy;
- 0;
+ catch_cdie { $install_result = $o->install::steps::installPackages($packages) }
+ sub {
+ my $rc = install::steps_interactive::installPackages__handle_error($o, $_[0]);
+ $rc or $w->destroy;
+ $rc;
};
- if ($pkgs::cancel_install) {
- $pkgs::cancel_install = 0;
+ if ($install::pkgs::cancel_install) {
+ $install::pkgs::cancel_install = 0;
die 'already displayed';
}
$w->destroy;
@@ -620,64 +595,34 @@ sub summary_prompt {
$w->main($check_complete);
}
-sub deselectFoundMedia {
- #- group by CD
- my ($o, $hdlists, $mediumsize) = @_;
- my %cdlist;
- my @hdlist2;
- my @corresp;
- my $i = 0;
- my $totalsize = 0;
- foreach (@$hdlists) {
- my $cd = install_medium->new(descr => $_->[3])->get_cd_number;
- if (!$cd || !@{$cdlist{$cd} || []}) {
- push @hdlist2, $_;
- $corresp[$i] = [ $i ];
- } else {
- $corresp[$i] = [];
- push @{$corresp[$cdlist{$cd}[0]]}, $i;
- }
- if ($cd) {
- $cdlist{$cd} ||= [];
- push @{$cdlist{$cd}}, $i;
- }
- $totalsize >= 0 and $totalsize += $mediumsize->{$_->[0]};
- ++$i;
- }
- $totalsize ||= -1; #- don't check size, total medium size unknown
- my @selection = (1) x @hdlist2;
- my $copy_rpms_on_disk = 0;
- my $ask_copy_rpms_on_disk = $o->{method} !~ /iso/i;
- #- check available size for copying rpms from infos in hdlists file
- if ($ask_copy_rpms_on_disk && $totalsize >= 0) {
- my $availvar = install_any::getAvailableSpace_mounted("$::prefix/var");
- $availvar /= 1024 * 1024; #- Mo
- log::l("totalsize=$totalsize, avail on $::prefix/var=$availvar");
- $ask_copy_rpms_on_disk = $totalsize < $availvar * 0.6;
- }
- if ($ask_copy_rpms_on_disk) {
- #- don't be afraid, cleanup old RPMs if upgrade
- eval { rm_rf("$::prefix/var/ftp/pub/Mandrivalinux", "$::prefix/var/ftp/pub/Mandrivalinux") if $o->{isUpgrade} };
+#- group by CD
+sub ask_deselect_media__copy_on_disk {
+ my ($_o, $hdlists, $o_copy_rpms_on_disk) = @_;
+
+ my @names = uniq(map { $_->{name} } @$hdlists);
+ my %selection = map { $_ => 1 } @names;
+
+ if (@names > 1 || $o_copy_rpms_on_disk) {
my $w = ugtk2->new("");
- $i = -1;
$w->sync;
ugtk2::gtkadd(
$w->{window},
gtkpack(
Gtk2::VBox->new(0, 5),
- Gtk2::WrappedLabel->new(N("The following installation media have been found.
-If you want to skip some of them, you can unselect them now.")),
+ Gtk2::WrappedLabel->new(formatAlaTeX(N("The following installation media have been found.
+If you want to skip some of them, you can unselect them now."))),
(map {
- ++$i;
- my $b = gtknew('CheckButton', text => $_->[3], active_ref => \$selection[$i]);
- $b->set_sensitive(0) unless $i;
+ my $b = gtknew('CheckButton', text => $_, active_ref => \$selection{$_});
+ $b->set_sensitive(0) if $_ eq $names[0];
$b;
- } @hdlist2),
- gtknew('HSeparator'),
- Gtk2::WrappedLabel->new(N("You have the option to copy the contents of the CDs onto the hard drive before installation.
-It will then continue from the hard drive and the packages will remain available once the system is fully installed.")),
- gtknew('CheckButton', text => N("Copy whole CDs"), active_ref => \$copy_rpms_on_disk),
+ } @names),
gtknew('HSeparator'),
+ if_($o_copy_rpms_on_disk,
+ Gtk2::WrappedLabel->new(formatAlaTeX(N("You have the option to copy the contents of the CDs onto the hard drive before installation.
+It will then continue from the hard drive and the packages will remain available once the system is fully installed."))),
+ gtknew('CheckButton', text => N("Copy whole CDs"), active_ref => $o_copy_rpms_on_disk),
+ gtknew('HSeparator'),
+ ),
gtknew('HBox', children_tight => [
gtknew('Button', text => N("Next"), clicked => sub { Gtk2->main_quit }),
]),
@@ -685,16 +630,8 @@ It will then continue from the hard drive and the packages will remain available
);
$w->main;
}
- $i = -1;
- my $l = [ grep { $selection[++$i] } @hdlist2 ];
- my @l2; $i = 0;
- foreach my $c (@$l) {
- ++$i while $hdlists->[$i][3] ne $c->[3];
- push @l2, $hdlists->[$_] foreach @{$corresp[$i]};
- }
- log::l("keeping media " . join ',', map { $_->[1] } @l2);
- $o->{mediumsize} = $totalsize;
- (\@l2, $copy_rpms_on_disk);
+ $_->{selected} = $selection{$_->{name}} foreach @$hdlists;
+ log::l("keeping media " . join ',', map { $_->{rpmsdir} } grep { $_->{selected} } @$hdlists);
}
1;
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install/steps_interactive.pm
index 2a348fdea..b196dbdcb 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install/steps_interactive.pm
@@ -1,10 +1,9 @@
-package install_steps_interactive; # $Id$
+package install::steps_interactive; # $Id$
use strict;
-use vars qw(@ISA $new_bootstrap);
-@ISA = qw(install_steps);
+our @ISA = qw(install::steps);
#-######################################################################################
@@ -13,10 +12,12 @@ use vars qw(@ISA $new_bootstrap);
use common;
use partition_table;
use fs::type;
-use install_steps;
-use install_interactive;
-use install_any;
-use install_messages;
+use fs::partitioning;
+use fs::partitioning_wizard;
+use install::steps;
+use install::interactive;
+use install::any;
+use messages;
use detect_devices;
use run_program;
use devices;
@@ -56,7 +57,7 @@ sub selectLanguage {
my ($o) = @_;
any::selectLanguage_install($o, $o->{locale});
- install_steps::selectLanguage($o);
+ install::steps::selectLanguage($o);
if ($o->isa('interactive::gtk')) {
$o->ask_warn('', formatAlaTeX(
@@ -82,7 +83,7 @@ sub selectKeyboard {
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) {
+ if ($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);
@best = () if @best == 1;
@@ -92,29 +93,29 @@ sub selectKeyboard {
my $ext_keyboard = my $KEYBOARD = $o->{keyboard}{KEYBOARD};
$o->ask_from_(
{ title => N("Keyboard"),
+ icon => 'banner-languages',
messages => N("Please choose your keyboard layout."),
interactive_help_id => 'selectKeyboard',
advanced_messages => N("Here is the full list of available keyboards"),
advanced_label => N("More"),
- callbacks => { changed => sub { $other = $_[0] == 1 } },
},
[ if_(@best, { val => \$KEYBOARD, type => 'list', format => $format, sort => 1,
- list => [ @best ] }),
- { val => \$ext_keyboard, type => 'list', format => $format,
+ list => [ @best ], changed => sub { $other = 0 } }),
+ { val => \$ext_keyboard, type => 'list', format => $format, changed => sub { $other = 1 },
list => [ difference2([ keyboard::KEYBOARDs() ], \@best) ], advanced => @best > 1 }
]);
$o->{keyboard}{KEYBOARD} = !@best || $other ? $ext_keyboard : $KEYBOARD;
delete $o->{keyboard}{unsafe};
}
keyboard::group_toggle_choose($o, $o->{keyboard}) or goto &selectKeyboard;
- install_steps::selectKeyboard($o);
+ install::steps::selectKeyboard($o);
}
#------------------------------------------------------------------------------
sub selectInstallClass {
my ($o) = @_;
- if (my @l = install_any::find_root_parts($o->{fstab}, $o->{prefix})) {
+ if (my @l = install::any::find_root_parts($o->{fstab}, $::prefix)) {
log::l("proposing to upgrade partitions " . join(" ", map { $_->{part} && $_->{part}{device} } @l));
my @releases = uniq(map { $_->{release} } @l);
@@ -136,7 +137,7 @@ sub selectInstallClass {
if (ref $p) {
if ($p->{part}) {
log::l("choosing to upgrade partition $p->{part}{device}");
- $o->{migrate_device_names} = install_any::use_root_part($o->{all_hds}, $p->{part}, $o);
+ $o->{migrate_device_names} = install::any::use_root_part($o->{all_hds}, $p->{part}, $o);
}
#- handle encrypted partitions (esp. /home)
@@ -162,62 +163,23 @@ sub selectInstallClass {
sub selectMouse {
my ($o, $force) = @_;
- $force ||= $o->{mouse}{unsafe};
+ $force || $o->{mouse}{unsafe} or return;
- if ($force) {
- my $prev = $o->{mouse}{type} . '|' . $o->{mouse}{name};
-
- $o->ask_from_({ messages => N("Please choose your type of mouse."),
- title => N("Mouse choice"),
- 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, $o->{modules_conf}, 'bus/usb', 1, 1);
+ mouse::select($o, $o->{mouse}) or return;
+
+ if ($o->{mouse}{device} eq "input/mice") {
+ modules::interactive::load_category($o, $o->{modules_conf}, 'bus/usb', 1, 0);
eval {
devices::make("usbmouse");
- modules::load(qw(hid mousedev usbmouse));
+ modules::load(qw(usbhid mousedev usbmouse));
};
}
-
- $o->SUPER::selectMouse;
- 1;
}
#------------------------------------------------------------------------------
sub setupSCSI {
my ($o) = @_;
- if (!$::noauto && arch() =~ /i.86/) {
- if ($o->{pcmcia} ||= detect_devices::real_pcmcia_probe()) {
- my $w = $o->wait_message(N("PCMCIA"), N("Configuring PCMCIA cards..."));
- my $results = install_any::configure_pcmcia($o->{modules_conf}, $o->{pcmcia});
- undef $w;
- $results and $o->ask_warn('', $results);
- }
- }
+ install::any::configure_pcmcia($o);
{
my $_w = $o->wait_message(N("IDE"), N("Configuring IDE"));
modules::load(modules::category2modules('disk/cdrom'));
@@ -225,53 +187,12 @@ sub setupSCSI {
modules::interactive::load_category($o, $o->{modules_conf}, '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, $o->{modules_conf}, 'disk/ide|scsi|hardware_raid|sata|firewire', 1, !$have_non_scsi);
- modules::interactive::load_category($o, $o->{modules_conf}, 'disk/ide|scsi|hardware_raid|sata|firewire') 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) = @_;
+ modules::interactive::load_category($o, $o->{modules_conf}, 'disk/card_reader|ide|scsi|hardware_raid|sata|firewire', 1, !$have_non_scsi);
+ modules::interactive::load_category($o, $o->{modules_conf}, 'disk/card_reader|ide|scsi|hardware_raid|sata|firewire') if !detect_devices::hds(); #- we really want a disk!
- 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;
+ install::interactive::tellAboutProprietaryModules($o);
- {
- 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"),
- title => N("Partitioning"),
- icon => 'banner-part',
- interactive_help_id => 'ask_mntpoint_s',
- callbacks => {
- complete => sub {
- require diskdrake::interactive;
- eval { 1, find_index {
- !diskdrake::interactive::check_mntpoint($o, $_->{mntpoint}, $_, $o->{all_hds});
- } @fstab };
- },
- },
- },
- [ map {
- {
- label => partition_table::description($_),
- val => \$_->{mntpoint},
- not_edit => 0,
- list => [ '', fsedit::suggestions_mntpoint(fs::get::empty_all_hds()) ],
- };
- } @fstab ]) or return;
- }
- $o->SUPER::ask_mntpoint_s($fstab);
+ install::any::getHds($o, $o);
}
#------------------------------------------------------------------------------
@@ -294,7 +215,7 @@ sub doPartitionDisks {
my $p = { start => $freepart->{start}, size => 1 << 11, mntpoint => '' };
fs::type::set_pt_type($p, 0x401);
fsedit::add($freepart->{hd}, $p, $o->{all_hds}, { force => 1, primaryOrExtended => 'Primary' });
- $new_bootstrap = 1;
+ $partition_table::mac::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"));
@@ -307,144 +228,129 @@ sub doPartitionDisks {
}
if (!$o->{isUpgrade}) {
- install_interactive::partitionWizard($o);
+ fs::partitioning_wizard::main($o, $o->{all_hds}, $o->{fstab}, $o->{manualFstab}, $o->{partitions}, $o->{partitioning}, $::local_install);
}
}
#------------------------------------------------------------------------------
sub rebootNeeded {
my ($o) = @_;
- $o->ask_warn(N("Partitioning"), N("You need to reboot for the partition table modifications to take place"), icon => 'banner-part');
-
- install_steps::rebootNeeded($o);
+ fs::partitioning_wizard::warn_reboot_needed($o);
+ 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($_) && !member($_->{fs_type}, 'reiserfs', 'xfs', '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};
- set_isFormatted($_, 0);
- }
+ my ($o) = @_;
+ fs::partitioning::choose_partitions_to_format($o, $o->{fstab});
}
-
sub formatMountPartitions {
my ($o, $_fstab) = @_;
- my ($w, $wait_message) = $o->wait_message_with_progress_bar;
- catch_cdie {
- fs::format::formatMount_all($o->{all_hds}, $o->{fstab}, $wait_message);
- } 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 lose 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;
+ fs::partitioning::format_mount_partitions($o, $o->{all_hds}, $o->{fstab});
}
#------------------------------------------------------------------------------
sub setPackages {
my ($o) = @_;
+ install::any::setPackages($o);
+}
- my ($w, $wait_message) = $o->wait_message_with_progress_bar;
+#- group by CD
+sub ask_deselect_media__copy_on_disk {
+ my ($o, $hdlists, $o_copy_rpms_on_disk) = @_;
+
+ log::l("ask_deselect_media__copy_on_disk");
+
+ my @names = uniq(map { $_->{name} } @$hdlists);
+ my %selection = map { $_ => 1 } @names;
+
+ $o->ask_from_({ messages => formatAlaTeX(N("The following installation media have been found.
+If you want to skip some of them, you can unselect them now.")) },
+ [ (map { { type => 'bool', text => $_, val => \$selection{$_},
+ if_($_ eq $names[0], disabled => sub { 1 }),
+ } } @names),
+ if_($o_copy_rpms_on_disk,
+ { type => 'label', val => \(formatAlaTeX(N("You have the option to copy the contents of the CDs onto the hard drive before installation.
+It will then continue from the hard drive and the packages will remain available once the system is fully installed."))) },
+ { type => 'bool', text => N("Copy whole CDs"), val => $o_copy_rpms_on_disk },
+ ),
+ ]);
+ $_->{selected} = $selection{$_->{name}} foreach @$hdlists;
+ log::l("keeping media " . join ',', map { $_->{rpmsdir} } grep { $_->{selected} } @$hdlists);
+}
- $wait_message->($o->{isUpgrade} ? N("Looking for available packages and rebuilding rpm database...") :
- N("Looking for available packages..."));
- install_any::setPackages($o, $wait_message);
+sub while_suspending_time {
+ my ($o, $f) = @_;
- undef $w; #- help perl
+ my $time = time();
+
+ my $r = $f->();
+
+ #- add the elapsed time (otherwise the predicted time will be rubbish)
+ $o->{install_start_time} += time() - $time;
+
+ $r;
}
-sub mirror2text { $crypto::mirrors{$_[0]} ? $crypto::mirrors{$_[0]}[0] . '|' . $_[0] : "-|URL" }
-sub askSupplMirror {
- my ($o, $message) = @_;
- my $u = $o->{updates} ||= {};
- require crypto;
- my @mirrors = do {
- #- Direct the user to the community mirror tree for an install from a mini-iso
- $o->{distro_type} ||= 'community';
- #- get the list of mirrors locally, to avoid weird bugs with making an
- #- http request before ftp at this point of the install
- crypto::mirrors($o->{distro_type}, 1);
- };
- push @mirrors, '-';
- $o->ask_from_(
- {
- messages => N("Choose a mirror from which to get the packages"),
- cancel => N("Cancel"),
- },
- [ { separator => '|',
- format => \&mirror2text,
- list => \@mirrors,
- val => \$u->{mirror},
- }, ],
- ) or $u->{mirror} = '';
- delete $o->{updates};
- if ($u->{mirror} eq '-') {
- return $o->ask_from_entry('', $message) || '';
+# nb: $file can be a directory
+sub ask_change_cd {
+ my ($o, $phys_m, $o_rel_file) = @_;
+
+ while_suspending_time($o, sub { ask_change_cd_($o, $phys_m, $o_rel_file) });
+}
+
+sub ask_change_cd_ {
+ my ($o, $phys_m, $o_rel_file) = @_;
+
+ local $| = 1; print "\a";
+
+ if ($phys_m->{name} =~ /commercial/i) {
+ $o->{useless_thing_accepted2} ||=
+ $o->ask_from_list_('', formatAlaTeX(messages::com_license()),
+ [ N_("Accept"), N_("Refuse") ], "Accept") eq "Accept" or return;
}
- my $url = "ftp://$u->{mirror}$crypto::mirrors{$u->{mirror}}[1]";
- $url =~ s!/(?:media/)?main/?\z!!;
- log::l("mirror chosen [$url]");
- return $url;
+
+ foreach (1 .. 32) {
+ install::media::umount_phys_medium($phys_m);
+ install::media::openCdromTray($phys_m->{device});
+
+ $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 do not have it, press Cancel to avoid installation from this Cd-Rom.", $phys_m->{name}), 1) or return;
+
+ fs::mount::part($phys_m);
+
+ #- it can be a directory, so don't use -f
+ !$o_rel_file || -e install::media::path($phys_m, $o_rel_file) and return 1;
+
+ log::l("file " . install::media::path($phys_m, $o_rel_file) . " not found");
+ }
+ undef;
}
sub selectSupplMedia {
- my ($o, $suppl_method) = @_;
- install_any::selectSupplMedia($o, $suppl_method);
+ my ($o) = @_;
+ install::any::selectSupplMedia($o);
}
#------------------------------------------------------------------------------
sub choosePackages {
my ($o) = @_;
- #- this is done at the very beginning to take into account
- #- selection of CD by user if using a cdrom.
- $o->chooseCD($o->{packages}) if install_any::method_allows_medium_change($o->{method});
-
my $w = $o->wait_message('', N("Looking for available packages..."));
- my $availableC = &install_steps::choosePackages;
+ my $availableC = &install::steps::choosePackages;
my $individual;
- require pkgs;
+ require install::pkgs;
- my $min_size = pkgs::selectedSize($o->{packages});
+ my $min_size = install::pkgs::selectedSize($o->{packages});
undef $w;
if ($min_size >= $availableC) {
- $o->ask_warn('', N("Your system does not have enough space left for installation or upgrade (%d > %d)",
- $min_size / sqr(1024), $availableC / sqr(1024)));
- install_steps::rebootNeeded($o);
+ my $msg = N("Your system does not have enough space left for installation or upgrade (%dMB > %dMB)",
+ $min_size / sqr(1024), $availableC / sqr(1024));
+ log::l($msg);
+ $o->ask_warn('', $msg);
+ install::steps::rebootNeeded($o);
}
my $min_mark = 4;
@@ -453,12 +359,12 @@ sub choosePackages {
$o->chooseGroups($o->{packages}, $o->{compssUsers}, $min_mark, \$individual) if !$o->{isUpgrade} && $o->{meta_class} ne 'desktop';
($o->{packages_}{ind}) =
- pkgs::setSelectedFromCompssList($o->{packages}, $o->{rpmsrate_flags_chosen}, $min_mark, $availableC);
+ install::pkgs::setSelectedFromCompssList($o->{packages}, $o->{rpmsrate_flags_chosen}, $min_mark, $availableC);
$o->choosePackagesTree($o->{packages}) or goto chooseGroups if $individual;
- install_any::warnAboutRemovedPackages($o, $o->{packages});
- install_any::warnAboutNaughtyServers($o) or goto chooseGroups if !$o->{isUpgrade} && $o->{meta_class} ne 'firewall';
+ install::any::warnAboutRemovedPackages($o, $o->{packages});
+ install::any::warnAboutNaughtyServers($o) or goto chooseGroups if !$o->{isUpgrade} && $o->{meta_class} ne 'firewall';
}
sub choosePackagesTree {
@@ -466,7 +372,7 @@ sub choosePackagesTree {
$o->ask_many_from_list('', N("Choose the packages you want to install"),
{
- list => [ grep { !$o_limit_to_medium || pkgs::packageMedium($packages, $_) == $o_limit_to_medium }
+ list => [ grep { !$o_limit_to_medium || install::pkgs::packageMedium($packages, $_) == $o_limit_to_medium }
@{$packages->{depslist}} ],
value => \&URPM::Package::flag_selected,
label => \&URPM::Package::name,
@@ -483,19 +389,19 @@ The format is the same as auto_install generated files."),
if ($choice eq 'Load') {
while (1) {
log::l("load package selection");
- my ($_h, $fh) = install_any::media_browser($o, '', 'package_list.pl') or return;
- my $O = eval { install_any::loadO(undef, $fh) };
+ my ($_h, $fh) = install::any::media_browser($o, '', 'package_list.pl') or return;
+ my $O = eval { install::any::loadO(undef, $fh) };
if ($@) {
$o->ask_okcancel('', N("Bad file")) or return;
} else {
- install_any::unselectMostPackages($o);
- pkgs::select_by_package_names($packages, $O->{default_packages} || []);
+ install::any::unselectMostPackages($o);
+ install::pkgs::select_by_package_names($packages, $O->{default_packages} || []);
return 1;
}
}
} else {
log::l("save package selection");
- install_any::g_default_packages($o);
+ install::any::g_default_packages($o);
}
}
sub chooseGroups {
@@ -506,12 +412,12 @@ sub chooseGroups {
#- limitation of current implementation.
#- use an empty state for each one (no flag update should be propagated).
- my $b = pkgs::saveSelected($packages);
- install_any::unselectMostPackages($o);
- pkgs::setSelectedFromCompssList($packages, { CAT_SYSTEM => 1 }, $min_level, 0);
- my $system_size = pkgs::selectedSize($packages);
- my ($sizes, $pkgs) = pkgs::computeGroupSize($packages, $min_level);
- pkgs::restoreSelected($b);
+ my $b = install::pkgs::saveSelected($packages);
+ install::any::unselectMostPackages($o);
+ install::pkgs::setSelectedFromCompssList($packages, { CAT_SYSTEM => 1 }, $min_level, 0);
+ my $system_size = install::pkgs::selectedSize($packages);
+ my ($sizes, $pkgs) = install::pkgs::computeGroupSize($packages, $min_level);
+ install::pkgs::restoreSelected($b);
log::l("system_size: $system_size");
my %stable_flags = grep_each { $::b } %{$o->{rpmsrate_flags_chosen}};
@@ -538,14 +444,14 @@ sub chooseGroups {
};
my ($size, $unselect_all);
- my $available_size = install_any::getAvailableSpace($o) / sqr(1024);
+ my $available_size = install::any::getAvailableSpace($o) / sqr(1024);
my $size_to_display = sub {
my $lsize = $system_size + $compute_size->(map { "CAT_$_" } map { @{$_->{flags}} } grep { $_->{selected} } @$compssUsers);
#- 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);
+ N("Total size: %d / %d MB", install::pkgs::correctSize($size / sqr(1024)), $available_size);
};
while (1) {
@@ -557,17 +463,17 @@ sub chooseGroups {
$o->reallyChooseGroups($size_to_display, $individual, $compssUsers) or return;
- last if $::testing || pkgs::correctSize($size / sqr(1024)) < $available_size || every { !$_->{selected} } @$compssUsers;
+ last if $::testing || install::pkgs::correctSize($size / sqr(1024)) < $available_size || every { !$_->{selected} } @$compssUsers;
$o->ask_warn('', N("Selected size is larger than available space"));
}
- install_any::set_rpmsrate_category_flags($o, $compssUsers);
+ install::any::set_rpmsrate_category_flags($o, $compssUsers);
log::l("compssUsersChoice selected: ", join(', ', map { qq("$_->{path}|$_->{label}") } grep { $_->{selected} } @$compssUsers));
#- do not try to deselect package (by default no groups are selected).
if (!$o->{isUpgrade}) {
- install_any::unselectMostPackages($o) if $unselect_all;
+ install::any::unselectMostPackages($o) if $unselect_all;
}
#- if no group have been chosen, ask for using base system only, or no X, or normal.
if (!$o->{isUpgrade} && !any { $_->{selected} } @$compssUsers) {
@@ -591,7 +497,7 @@ Please choose the minimal installation you want:"),
$o->{excludedocs} = !$docs;
$o->{rpmsrate_flags_chosen}{CAT_MINIMAL_DOCS} = $docs;
- install_any::unselectMostPackages($o);
+ install::any::unselectMostPackages($o);
}
1;
}
@@ -604,7 +510,6 @@ sub reallyChooseGroups {
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 {
@@ -617,6 +522,7 @@ sub reallyChooseGroups {
disabled => sub { $all },
text => translate($_->{label}),
help => translate($_->{descr}),
+ changed => sub { $size_text = &$size_to_display },
};
} @$compssUsers),
if_($o->{meta_class} eq 'desktop', { text => N("All"), val => \$all, type => 'bool' }),
@@ -629,123 +535,73 @@ sub reallyChooseGroups {
1;
}
-sub chooseCD {
- my ($o, $packages) = @_;
- my @mediums = grep { $_ != $install_any::boot_medium } pkgs::allMediums($packages);
- my @mediumsDescr;
- my %mediumsDescr;
-
- #- the boot medium is already selected.
- $mediumsDescr{install_medium::by_id($install_any::boot_medium, $packages)->{descr}} = 1;
-
- #- build mediumsDescr according to mediums, this avoids asking multiple times
- #- all the media grouped together on only one CD.
- foreach (@mediums) {
- my $descr = install_medium::by_id($_, $packages)->{descr};
- $packages->{mediums}{$_}->ignored and next;
- exists $mediumsDescr{$descr} or push @mediumsDescr, $descr;
- $mediumsDescr{$descr} ||= $packages->{mediums}{$_}->selected;
- }
-
- if (install_any::method_is_from_ISO_images($o->{method})) {
- $mediumsDescr{$_} = install_any::method_is_from_ISO_images($packages->{mediums}{$_}{method})
- ? to_bool(install_any::find_ISO_image_labelled($_)) : 1
- foreach @mediumsDescr;
- } elsif ($o->{method} eq "cdrom") {
- #- 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) {
- $packages->{mediums}{$_}->ignored and next;
- my $descr = install_medium::by_id($_, $packages)->{descr};
- if ($mediumsDescr{$descr}) {
- $packages->{mediums}{$_}->select;
- } else {
- $packages->{mediums}{$_}->refuse;
- }
- 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 ($_w, $wait_message) = $o->wait_message_with_progress_bar(N("Installing"));
+ $wait_message->(N("Preparing installation"), 0, 100); #- beware, interactive::curses::wait_message_with_progress_bar need to create the Dialog::Progress here because in installCallback we are chrooted
- local *install_steps::installCallback = sub {
+ local *install::steps::installCallback = sub {
my ($packages, $type, $id, $subtype, $_amount, $total_) = @_;
if ($type eq 'user' && $subtype eq 'install') {
$total = $total_;
} elsif ($type eq 'inst' && $subtype eq 'start') {
my $p = $packages->{depslist}[$id];
- $w->set(N("Installing package %s\n%d%%", $p->name, $total && 100 * $current / $total));
+ $wait_message->(N("Installing package %s", $p->name), $current, $total);
$current += $p->size;
}
};
- #- 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 or an iso image, always abort.
- return if !install_any::method_allows_medium_change($method);
-
- my $name = install_medium::by_id($medium, $o->{packages})->{descr};
- 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");
- if ($method =~ /-iso$/) {
- $r = install_any::changeIso($name);
- } else {
- $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 do not 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;
+ catch_cdie { $install_result = $o->install::steps::installPackages($packages) }
+ sub { installPackages__handle_error($o, $_[0]) };
+
+ if ($install::pkgs::cancel_install) {
+ $install::pkgs::cancel_install = 0;
die "setstep choosePackages\n";
}
$install_result;
}
+sub installPackages__handle_error {
+ my ($o, $err_ref) = @_;
+
+ log::l("catch_cdie: $$err_ref");
+ my $time = time();
+ my $go_on;
+ if ($$err_ref =~ /^error ordering package list: (.*)/) {
+ $go_on = $o->ask_yesorno('', [
+ N("There was an error ordering packages:"), $1, N("Go on anyway?") ], 1);
+ } elsif ($$err_ref =~ /^error installing package list: (\S+)\s*(.*)/) {
+ my ($pkg_name, $medium_name) = ($1, $2);
+ my @choices = (
+ [ 'retry', N("Retry") ],
+ [ 'skip_one', N("Skip this package") ],
+ [ 'disable_media', N("Skip all packages from medium \"%s\"", $medium_name) ],
+ [ '', N("Go back to media and packages selection") ],
+ );
+ my $choice;
+ $o->ask_from_({ messages => N("There was an error installing package %s.", $pkg_name) },
+ [ { val => \$choice, type => 'list', list => \@choices, format => sub { $_[0][1] } } ]);
+ $go_on = $choice->[0];
+ }
+ if ($go_on) {
+ #- add the elapsed time (otherwise the predicted time will be rubbish)
+ $o->{install_start_time} += time() - $time;
+ $go_on;
+ } else {
+ $o->{askmedia} = 1;
+ $$err_ref = "already displayed";
+ 0;
+ }
+}
+
+
sub afterInstallPackages($) {
my ($o) = @_;
- my $_w = $o->wait_message('toto', N("Post-install configuration"));
+ my $_w = $o->wait_message('', N("Post-install configuration"));
$o->SUPER::afterInstallPackages;
}
@@ -764,7 +620,7 @@ sub configureNetwork {
network::netconnect::real_main($o->{net}, $o, $o->{modules_conf});
} else {
#- don't overwrite configuration in a network install
- if (!install_any::is_network_install($o)) {
+ if (!install::any::is_network_install($o)) {
require network::network;
network::network::easy_dhcp($o->{net}, $o->{modules_conf});
}
@@ -779,8 +635,7 @@ sub installUpdates {
$o->hasNetwork or return;
- if (is_empty_hash_ref($u)) {
- $o->ask_yesorno_({ title => N("Updates"), icon => 'banner-update', messages => formatAlaTeX(
+ $o->ask_yesorno_({ title => N("Updates"), icon => 'banner-update', 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.
@@ -791,41 +646,26 @@ connection.
Do you want to install the updates?")),
interactive_help_id => 'installUpdates',
}) or return;
- }
- #- bring all interface up for installing crypto packages.
- install_interactive::upNetwork($o);
+ #- bring all interface up for installing updates 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 Mandriva Linux web site to get the list of available mirrors..."));
- crypto::mirrors($o->{distro_type});
- };
- #- if no mirror have been found, use current time zone and propose among available.
- $u->{mirror} ||= crypto::bestMirror($o->{timezone}{timezone}, $o->{distro_type});
- $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};
+ $u->{url} = install::any::ask_mirror($o, 'updates', $u->{url}) or goto &installUpdates;
+ my $phys_medium = install::media::url2mounted_phys_medium($o, $u->{url} . '/media/main/updates');
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->{packages}, $u->{mirror});
- }
+ my $_w = $o->wait_message('', N("Contacting the mirror to get the list of available packages..."));
+ $update_medium = { name => "Updates for Mandriva Linux " . $o->{product_id}{version}, update => 1 };
+ install::media::get_standalone_medium($o, $phys_medium, $o->{packages}, $update_medium);
};
- } 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 ($@) {
+ undef $update_medium;
+ $o->ask_warn('', N("Unable to contact mirror %s", $u->{mirror}));
+ }
+ } until $update_medium;
if ($update_medium) {
if ($o->choosePackagesTree($o->{packages}, $update_medium)) {
@@ -834,16 +674,15 @@ Do you want to install the updates?")),
} 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_medium->refuse;
+ $update_medium->{selected} = 0;
+ goto &installUpdates;
}
#- 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;
+ install::steps::install_urpmi($o);
}
-
- #- stop interface using ppp only. FIXME REALLY TOCHECK isdn (costly network) ?
- # FIXME damien install_interactive::downNetwork($o, 'pppOnly');
+
+ #- not downing network, even ppp. We don't care much since it is the end of install :)
}
@@ -851,27 +690,9 @@ Do you want to install the updates?")),
sub configureTimezone {
my ($o, $clicked) = @_;
- require timezone;
- $o->{timezone}{timezone} = $o->ask_from_treelist(N("Timezone"), N("Which is your timezone?"), '/', [ timezone::getTimeZones() ], $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 = timezone::ntp_servers();
- $o->{timezone}{ntp} ||= 'pool.ntp.org';
-
- $o->ask_from_({},
- [ { label => N("NTP Server"), val => \$o->{timezone}{ntp}, list => [ keys %$servers ], not_edit => 0,
- format => sub { $servers->{$_[0]} ? "$servers->{$_[0]} ($_[0])" : $_[0] } } ]
- ) or goto &configureTimezone;
- } else {
- $o->{timezone}{ntp} = '';
- }
- install_steps::configureTimezone($o);
+ any::configure_timezone($o, $o->{timezone}, $clicked) or return;
+
+ install::steps::configureTimezone($o);
1;
}
@@ -879,17 +700,15 @@ sub configureTimezone {
sub configureServices {
my ($o, $clicked) = @_;
require services;
- $o->{services} = services::ask($o) if $::expert || $clicked;
- install_steps::configureServices($o);
+ $o->{services} = services::ask($o) if $clicked;
+ install::steps::configureServices($o);
}
sub summaryBefore {
my ($o) = @_;
- #- auto-detection
- $o->configurePrinter(0);
- install_any::preConfigureTimezone($o);
+ install::any::preConfigureTimezone($o);
#- get back network configuration.
require network::network;
eval {
@@ -935,13 +754,13 @@ sub summary {
any::selectCountry($o, $o->{locale}) or return;
my $pkg_locale = lang::locale_to_main_locale(lang::getlocale_for_country($o->{locale}{lang}, $o->{locale}{country}));
- my @pkgs = pkgs::packagesProviding($o->{packages}, "locales-$pkg_locale");
+ my @pkgs = install::pkgs::packagesProviding($o->{packages}, "locales-$pkg_locale");
$o->pkg_install(map { $_->name } @pkgs) if @pkgs;
lang::write_and_install($o->{locale}, $o->do_pkgs);
if (!$timezone_manually_set) {
delete $o->{timezone};
- install_any::preConfigureTimezone($o); #- now we can precise the timezone thanks to the country
+ install::any::preConfigureTimezone($o); #- now we can precise the timezone thanks to the country
}
},
};
@@ -956,31 +775,10 @@ sub summary {
group => N("System"),
label => N("Mouse"),
val => sub { translate($o->{mouse}{type}) . ' ' . translate($o->{mouse}{name}) },
- clicked => sub { $o->selectMouse(1); mouse::write($o->do_pkgs, $o->{mouse}) },
+ clicked => sub { selectMouse($o, 1); mouse::write($o->do_pkgs, $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;
@@ -1042,7 +840,6 @@ sub summary {
label => N("Network"),
val => sub { $o->{net}{type} },
clicked => sub {
- local $::expert = $::expert;
require network::netconnect;
network::netconnect::real_main($o->{net}, $o, $o->{modules_conf});
},
@@ -1070,7 +867,7 @@ sub summary {
clicked => sub {
require security::level;
security::level::level_choose($o, \$o->{security}, \$o->{libsafe}, \$o->{security_user})
- and install_any::set_security($o);
+ and install::any::set_security($o);
},
};
@@ -1088,7 +885,7 @@ sub summary {
$o->{firewall_ports} = !$rc[0] && $rc[1];
}
},
- } if detect_devices::getNet();
+ } if detect_devices::get_net_interfaces();
push @l, {
group => N("Boot"),
@@ -1118,53 +915,18 @@ sub summary {
};
my $check_complete = sub {
- require pkgs;
- my $p = pkgs::packageByName($o->{packages}, 'xorg-x11');
+ require install::pkgs;
+ my $p = install::pkgs::packageByName($o->{packages}, 'task-x11');
$o->{raw_X} || !$::testing && $p && !$p->flag_installed ||
$o->ask_yesorno('', N("You have not configured X. Are you sure you really want this?"));
};
$o->summary_prompt(\@l, $check_complete);
- if ($o->{printer}) {
- #- Clean up $o->{printer} so that the records for an auto-installation
- #- contain only the important stuff
- require printer::printerdrake;
- printer::printerdrake::final_cleanup($o->{printer});
- }
- install_steps::configureTimezone($o) if !$timezone_manually_set; #- do not forget it.
+ 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}{country} eq 'US' || $o->{locale}{country} eq 'CA' ? 'Letter' : 'A4';
- printer::printerdrake::main($printer, $o->{security}, $o, $clicked, sub { install_interactive::upNetwork($o, 'pppAvoided') });
-
-}
-
-#------------------------------------------------------------------------------
sub setRootPassword {
my ($o, $clicked) = @_;
my $sup = $o->{superuser} ||= {};
@@ -1174,7 +936,7 @@ sub setRootPassword {
require authentication;
authentication::ask_root_password_and_authentication($o, $o->{net}, $sup, $o->{authentication} ||= {}, $o->{meta_class}, $o->{security});
}
- install_steps::setRootPassword($o);
+ install::steps::setRootPassword($o);
}
#------------------------------------------------------------------------------
@@ -1189,14 +951,14 @@ sub addUser {
if !member('mandrake', map { $_->{name} } @{$o->{users}});
}
if ($o->{security} >= 1 || $clicked) {
- my @suggested_names = @{$o->{users}} ? () : grep { !/lost\+found/ } all("$::prefix/home");
+ my @suggested_names = @{$o->{users}} ? () : grep { !/^\./ && $_ ne 'lost+found' && -d "$::prefix/home/$_" } all("$::prefix/home");
any::ask_users($o, $o->{users}, $o->{security}, \@suggested_names);
}
add2hash($o, any::get_autologin());
any::autologin($o, $o);
- any::set_autologin($o->{autologin}, $o->{desktop}) if $::globetrotter;
+ any::set_autologin($o->do_pkgs, $o->{autologin}, $o->{desktop}) if $::globetrotter;
- install_steps::addUser($o);
+ install::steps::addUser($o);
}
#------------------------------------------------------------------------------
@@ -1243,42 +1005,36 @@ sub miscellaneous {
}
}
- install_steps::miscellaneous($o);
+ install::steps::miscellaneous($o);
}
#------------------------------------------------------------------------------
sub configureX {
my ($o, $expert) = @_;
- install_steps::configureXBefore($o);
- symlink "$o->{prefix}/etc/gtk", "/etc/gtk";
+ install::steps::configureXBefore($o);
+ symlink "$::prefix/etc/gtk", "/etc/gtk";
require Xconfig::main;
- my ($raw_X) = Xconfig::main::configure_everything_or_configure_chooser($o, install_any::X_options_from_o($o), !$expert, $o->{keyboard}, $o->{mouse});
+ my ($raw_X) = Xconfig::main::configure_everything_or_configure_chooser($o, install::any::X_options_from_o($o), !$expert, $o->{keyboard}, $o->{mouse});
if ($raw_X) {
$o->{raw_X} = $raw_X;
- install_steps::configureXAfter($o);
+ install::steps::configureXAfter($o);
}
}
#------------------------------------------------------------------------------
sub generateAutoInstFloppy {
my ($o, $replay) = @_;
- my @imgs = install_any::getAndSaveAutoInstallFloppies($o, $replay) or return;
+ my $img = install::any::getAndSaveAutoInstallFloppies($o, $replay) or return;
my $floppy = detect_devices::floppy();
$o->ask_okcancel('', N("Insert a blank floppy in drive %s", $floppy), 1) or return;
- my $i;
- foreach (@imgs) {
- if ($i++) {
- $o->ask_okcancel('', N("Please insert another floppy for drivers disk"), 1) or return;
- }
my $_w = $o->wait_message('', N("Creating auto install floppy..."));
- require commands;
- commands::dd("if=$_", 'of=' . devices::make($floppy));
+ require install::commands;
+ install::commands::dd("if=$img", 'of=' . devices::make($floppy));
common::sync();
- }
}
#------------------------------------------------------------------------------
@@ -1290,7 +1046,7 @@ N("Some steps are not completed.
Do you really want to quit now?"), 0);
- install_steps::exitInstall($o);
+ install::steps::exitInstall($o);
$o->exit unless $alldone;
@@ -1298,7 +1054,7 @@ Do you really want to quit now?"), 0);
{
title => N("Congratulations"),
icon => 'banner-exit',
- messages => formatAlaTeX(install_messages::install_completed()),
+ messages => formatAlaTeX(messages::install_completed()),
interactive_help_id => 'exitInstall',
ok => $::local_install ? N("Quit") : N("Reboot"),
},
@@ -1314,7 +1070,7 @@ 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 },
+ { val => \ (my $_t2 = N("Save packages selection")), clicked => sub { install::any::g_default_packages($o) }, advanced => 1 },
]
) if $alldone;
}
diff --git a/perl-install/install/steps_list.pm b/perl-install/install/steps_list.pm
new file mode 100644
index 000000000..c298233be
--- /dev/null
+++ b/perl-install/install/steps_list.pm
@@ -0,0 +1,49 @@
+package install::steps_list;
+
+use strict;
+use vars qw(%installSteps @orderedInstallSteps);
+use common;
+
+#-######################################################################################
+#- Steps table
+#-######################################################################################
+{
+ my @installStepsFields = qw(text redoable onError hidden needs);
+ #entered reachable toBeDone next done;
+ my @installSteps = (
+ selectLanguage => [
+ #-PO: please keep the following messages very short: they must fit in the left list of the installer!!!
+ N_("_: Keep these entry short\nLanguage"), 1, 1, '', '' ],
+ acceptLicense => [ N_("_: Keep these entry short\nLicense"), 1, -1, '', '' ],
+ selectMouse => [ N_("_: Keep these entry short\nMouse"), 1, 1, '1', '' ],
+ setupSCSI => [ N_("_: Keep these entry short\nHard drive detection"), 1, 0, '1', '' ],
+ selectInstallClass => [ N_("_: Keep these entry short\nInstallation class"), 1, 1, '1', '' ],
+ selectKeyboard => [ N_("_: Keep these entry short\nKeyboard"), 1, 1, '1' ],
+ miscellaneous => [ N_("_: Keep these entry short\nSecurity"), 1, 1, '', '' ],
+ doPartitionDisks => [ N_("_: Keep these entry short\nPartitioning"), 1, 0, '', "selectInstallClass" ],
+ formatPartitions => [ N_("_: Keep these entry short\nFormatting"), 1, -1, '1', "doPartitionDisks" ],
+ choosePackages => [ N_("_: Keep these entry short\nChoosing packages"), 1, -2, '1', "formatPartitions" ],
+ installPackages => [ N_("_: Keep these entry short\nInstalling"), 1, -1, '', ["formatPartitions", "selectInstallClass"] ],
+ setRootPassword => [ N_("_: Keep these entry short\nAuthentication"), 1, 1, '', "installPackages" ],
+ addUser => [ N_("_: Keep these entry short\nUsers"), 1, 1, '', "installPackages" ],
+ configureNetwork => [ N_("_: Keep these entry short\nNetworking"), 1, 1, '1', "formatPartitions" ],
+ setupBootloader => [ N_("_: Keep these entry short\nBootloader"), 1, 0, '', "installPackages" ],
+ configureX => [ N_("_: Keep these entry short\nConfigure X"), 1, 1, '1', ["formatPartitions", "setupBootloader"] ],
+ summary => [ N_("_: Keep these entry short\nSummary"), 1, 0, '', "installPackages" ],
+ configureServices => [ N_("_: Keep these entry short\nServices"), 1, 1, '1', "installPackages" ],
+ installUpdates => [ N_("_: Keep these entry short\nUpdates"), 1, 1, '', ["installPackages", "configureNetwork", "summary"] ],
+ exitInstall => [ N_("_: Keep these entry short\nExit"), 0, 0, '', '' ],
+);
+ for (my $i = 0; $i < @installSteps; $i += 2) {
+ my %h; @h{@installStepsFields} = @{ $installSteps[$i + 1] };
+ $h{entered} = 0;
+ $h{onError} = $installSteps[$i + 2 * $h{onError}];
+ $h{reachable} = !$h{needs};
+ $installSteps{$installSteps[$i]} = \%h;
+ push @orderedInstallSteps, $installSteps[$i];
+ }
+ $installSteps{first} = $installSteps[0];
+}
+
+
+1;
diff --git a/perl-install/install_steps_stdio.pm b/perl-install/install/steps_stdio.pm
index ac9408b3c..f6a759cae 100644
--- a/perl-install/install_steps_stdio.pm
+++ b/perl-install/install/steps_stdio.pm
@@ -1,14 +1,14 @@
-package install_steps_stdio; # $Id$
+package install::steps_stdio; # $Id$
use diagnostics;
use strict;
use vars qw(@ISA);
-@ISA = qw(install_steps_interactive interactive::stdio);
+@ISA = qw(install::steps_interactive interactive::stdio);
use common;
use interactive::stdio;
-use install_steps_interactive;
+use install::steps_interactive;
use lang;
sub new($$) {
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm
deleted file mode 100644
index 2c33080db..000000000
--- a/perl-install/install_any.pm
+++ /dev/null
@@ -1,2030 +0,0 @@
-package install_any; # $Id$
-
-use strict;
-
-our @ISA = qw(Exporter);
-our %EXPORT_TAGS = (
- all => [ qw(getNextStep spawnShell addToBeDone) ],
-);
-our @EXPORT_OK = map { @$_ } values %EXPORT_TAGS;
-
-#-######################################################################################
-#- misc imports
-#-######################################################################################
-use common;
-use run_program;
-use fs::type;
-use fs::format;
-use partition_table;
-use devices;
-use fsedit;
-use modules;
-use detect_devices;
-use lang;
-use any;
-use log;
-use pkgs;
-
-#- boot medium (the first medium to take into account).
-our $boot_medium = 1;
-our $current_medium = $boot_medium;
-our $asked_medium = $boot_medium;
-our @advertising_images;
-
-#- current ftp root (for getFile) -- XXX must store this per media
-our $global_ftp_prefix;
-
-sub drakx_version() {
- $::move ? sprintf "DrakX-move v%s", cat_('/usr/bin/stage2/move.pm') =~ /move\.pm,v (\S+ \S+ \S+)/
- : sprintf "DrakX v%s built %s", $::testing ? ('TEST', scalar gmtime()) : (split('/', cat__(getFile("install/stage2/VERSION"))))[2,3];
-}
-
-#-######################################################################################
-#- Media change variables&functions
-#-######################################################################################
-my $postinstall_rpms = '';
-my $cdrom;
-my %iso_images;
-
-sub mountCdrom {
- my ($mountpoint, $o_cdrom) = @_;
- $o_cdrom = $cdrom if !defined $o_cdrom;
- eval { fs::mount::mount($o_cdrom, $mountpoint, "iso9660", 'readonly') };
-}
-
-sub useMedium($) {
- #- before ejecting the first CD, there are some files to copy!
- #- does nothing if the function has already been called.
- $_[0] > 1 and method_allows_medium_change($::o->{method}) and setup_postinstall_rpms($::prefix, $::o->{packages});
-
- $asked_medium eq $_[0] or log::l("selecting new medium '$_[0]'");
- $asked_medium = $_[0];
-}
-sub changeMedium($$) {
- my ($method, $medium_name) = @_;
- log::l("change to medium $medium_name for method $method (refused by default)");
- 0;
-}
-sub relGetFile($) {
- local $_ = $_[0];
- if (my ($arch) = m|\.([^\.]*)\.rpm$|) {
- $_ = install_medium::by_id($asked_medium)->{rpmsdir} . "/$_";
- s/%{ARCH}/$arch/g;
- s,^/+,,g;
- }
- $_;
-}
-sub askChangeMedium($$) {
- my ($method, $medium_name) = @_;
- my $allow;
- do {
- local $::o->{method} = $method = 'cdrom' if install_medium::by_id($medium_name)->is_suppl_cd;
- eval { $allow = changeMedium($method, $medium_name) };
- } while $@; #- really it is not allowed to die in changeMedium!!! or install will core with rpmlib!!!
- log::l($allow ? "accepting medium $medium_name" : "refusing medium $medium_name");
- $allow;
-}
-
-sub method_is_from_ISO_images($) {
- my ($method) = @_;
- $method eq "disk-iso" || $method eq "nfs-iso";
-}
-sub method_allows_medium_change($) {
- my ($method) = @_;
- $method eq "cdrom" || method_is_from_ISO_images($method);
-}
-
-sub look_for_ISO_images() {
- $iso_images{media} = [];
-
- ($iso_images{loopdev}, $iso_images{mountpoint}) = cat_("/proc/mounts") =~ m|(/dev/loop\d+)\s+(/tmp/image) iso9660| or return;
-
- my $get_iso_ids = sub {
- my ($F) = @_;
- my ($vol_id, $app_id) = c::get_iso_volume_ids(fileno $F);
- #- the ISO volume names must end in -Disc\d+ if they are belong (!) to a set
- my ($cd_set) = $vol_id =~ /^(.*)-disc\d+$/i;
- #- else use the full volume name as CD set identifier
- $cd_set ||= $vol_id;
- { cd_set => $cd_set, app_id => $app_id };
- };
-
- sysopen(my $F, $iso_images{loopdev}, 0) or return;
- put_in_hash(\%iso_images, $get_iso_ids->($F));
-
- my $iso_dir = $ENV{ISOPATH};
- #- strip old root and remove iso file from path if present
- $iso_dir =~ s!^/sysroot!!; $iso_dir =~ s![^/]*\.iso$!!;
-
- foreach my $iso_file (glob("$iso_dir/*.iso")) {
- sysopen($F, $iso_file, 0) or next;
- my $iso_ids = $get_iso_ids->($F);
- $iso_ids->{file} = $iso_file;
- push @{$iso_images{media}}, $iso_ids;
- }
- 1;
-}
-
-sub find_ISO_image_labelled($) {
- %iso_images or look_for_ISO_images() or return;
- my ($iso_label) = @_;
- find { $_->{app_id} eq $iso_label && $_->{cd_set} eq $iso_images{cd_set} } @{$iso_images{media}};
-}
-
-sub changeIso($) {
- my ($iso_label) = @_;
- my $iso_info = find_ISO_image_labelled($iso_label) or return;
-
- eval { fs::mount::umount($iso_images{mountpoint}) };
- $@ and warnAboutFilesStillOpen();
- devices::del_loop($iso_images{loopdev});
-
- $iso_images{loopdev} = devices::set_loop($iso_info->{file});
- eval {
- fs::mount::mount($iso_images{loopdev}, $iso_images{mountpoint}, "iso9660", 'readonly');
- log::l("using ISO image '$iso_label'");
- 1;
- };
-}
-
-sub errorOpeningFile($) {
- my ($file) = @_;
- $file eq 'XXX' and return; #- special case to force closing file after rpmlib transaction.
- $current_medium eq $asked_medium and log::l("errorOpeningFile $file"), return; #- nothing to do in such case.
- install_medium::by_id($asked_medium)->selected or return; #- not selected means no need to worry about.
- my $current_method = install_medium::by_id($asked_medium)->method || $::o->{method};
-
- my $max = 32; #- always refuse after $max tries.
- if ($current_method eq "cdrom") {
- cat_("/proc/mounts") =~ m,(/dev/\S+)\s+(/mnt/cdrom|/tmp/image),
- and ($cdrom, my $mountpoint) = ($1, $2);
- return unless $cdrom;
- ejectCdrom($cdrom, $mountpoint);
- while ($max > 0 && askChangeMedium($current_method, $asked_medium)) {
- $current_medium = $asked_medium;
- mountCdrom("/tmp/image");
- my $getFile = getFile($file);
- $getFile && @advertising_images and copy_advertising($::o);
- $getFile and return $getFile;
- $current_medium = 'unknown'; #- do not know what CD is inserted now.
- ejectCdrom($cdrom, $mountpoint);
- --$max;
- }
- } else {
- while ($max > 0 && askChangeMedium($current_method, $asked_medium)) {
- $current_medium = $asked_medium;
- my $getFile = getFile($file); $getFile and return $getFile;
- $current_medium = 'unknown'; #- do not know what CD image has been copied.
- --$max;
- }
- }
-
- #- Do not unselect supplementary CDs.
- return if install_medium::by_id($asked_medium)->is_suppl_cd;
-
- #- keep in mind the asked medium has been refused.
- #- this means it is no longer selected.
- install_medium::by_id($asked_medium)->refuse;
-
- #- on cancel, we can expect the current medium to be undefined too,
- #- this enables remounting if selecting a package back.
- $current_medium = 'unknown';
-
- return;
-}
-sub getFile {
- my ($f, $o_method, $o_altroot) = @_;
- my $current_method = ($asked_medium ? install_medium::by_id($asked_medium)->method : '') || $::o->{method};
- log::l("getFile $f:$o_method ($asked_medium:$current_method)");
- my $rel = relGetFile($f);
- do {
- if ($f =~ m|^http://|) {
- require http;
- http::getFile($f);
- } elsif ($o_method =~ /crypto|update/i) {
- require crypto;
- crypto::getFile($f);
- } elsif ($current_method eq "ftp") {
- require ftp;
- ftp::getFile($rel, @{ install_medium::by_id($asked_medium)->{ftp_prefix} || $global_ftp_prefix || [] });
- } elsif ($current_method eq "http") {
- require http;
- http::getFile(($ENV{URLPREFIX} || $o_altroot) . "/$rel");
- } else {
- #- try to open the file, but examine if it is present in the repository,
- #- this allows handling changing a media when some of the files on the
- #- first CD have been copied to other to avoid media change...
- my $f2 = "$postinstall_rpms/$f";
- $o_altroot ||= '/tmp/image';
- $f2 = "$o_altroot/$rel" if $rel !~ m,^/, && (!$postinstall_rpms || !-e $f2);
- my $F; open($F, $f2) ? $F : do { $f2 !~ /XXX/ and log::l("Can not open $f2: $!"); undef };
- }
- } || errorOpeningFile($f);
-}
-
-sub getLocalFile {
- my ($file) = @_;
- my $F;
- open($F, $file) ? $F : do { log::l("Can not open $file: $!"); undef };
-}
-
-sub getAndSaveFile {
- my ($file, $local) = @_ == 1 ? ("install/stage2/live$_[0]", $_[0]) : @_;
- local $/ = \ (16 * 1024);
- my $f = ref($file) ? $file : getFile($file) or return;
- open(my $F, ">$local") or log::l("getAndSaveFile(opening $local): $!"), return;
- local $_;
- while (<$f>) { syswrite($F, $_) or die("getAndSaveFile($local): $!") }
- 1;
-}
-
-
-#-######################################################################################
-#- Post installation RPMS from cdrom only, functions
-#-######################################################################################
-sub setup_postinstall_rpms($$) {
- my ($prefix, $packages) = @_;
-
- $postinstall_rpms and return;
- $postinstall_rpms = "$prefix/usr/postinstall-rpm";
-
- require pkgs;
-
- log::l("postinstall rpms directory set to $postinstall_rpms");
- clean_postinstall_rpms(); #- make sure in case of previous upgrade problem.
- mkdir_p($postinstall_rpms);
-
- my %toCopy;
- #- compute closure of package that may be copied, use INSTALL category
- #- in rpmsrate.
- pkgs::select_by_package_names($packages, $packages->{needToCopy} || [], 0, \%toCopy);
- delete $packages->{rpmdb};
-
- my @toCopy = grep { $_ && !$_->flag_selected } map { $packages->{depslist}[$_] } keys %toCopy;
-
- #- extract headers of package, this is necessary for getting
- #- the complete filename of each package.
- #- copy the package files in the postinstall RPMS directory.
- #- last arg is default medium '' known as the CD#1.
- #- cp_af does not handle correctly a missing file.
- eval { cp_af((grep { -r $_ } map { "/tmp/image/" . relGetFile($_->filename) } @toCopy), $postinstall_rpms) };
-
- log::l("copying Auto Install Floppy");
- getAndSaveInstallFloppies($::o, $postinstall_rpms, 'auto_install');
-}
-
-sub clean_postinstall_rpms() {
- $postinstall_rpms and -d $postinstall_rpms and rm_rf($postinstall_rpms);
-}
-
-
-#-######################################################################################
-#- Functions
-#-######################################################################################
-sub getNextStep {
- my ($o) = @_;
- find { !$o->{steps}{$_}{done} && $o->{steps}{$_}{reachable} } @{$o->{orderedSteps}};
-}
-
-sub dont_run_directly_stage2() {
- readlink("/usr/bin/runinstall2") eq "runinstall2.sh";
-}
-
-sub is_network_install {
- my ($o) = @_;
- member($o->{method}, qw(ftp http nfs));
-}
-
-
-sub start_i810fb() {
- my ($vga) = cat_('/proc/cmdline') =~ /vga=(\S+)/;
- return if !$vga || listlength(cat_('/proc/fb'));
-
- my %vga_to_xres = (0x311 => '640', 0x314 => '800', 0x317 => '1024');
- my $xres = $vga_to_xres{$vga} || '800';
-
- log::l("trying to load i810fb module with xres <$xres> (vga was <$vga>)");
- eval { modules::load('intel-agp') };
- eval {
- my $opt = "xres=$xres hsync1=32 hsync2=48 vsync1=50 vsync2=70 vram=2 bpp=16 accel=1 mtrr=1"; #- this sucking i810fb does not accept floating point numbers in hsync!
- modules::load_with_options([ 'i810fb' ], { i810fb => $opt });
- };
-}
-
-sub spawnShell() {
- return if $::local_install || $::testing || dont_run_directly_stage2();
-
- my $shellpid_file = '/var/run/drakx_shell.pid';
- return if -e $shellpid_file && -d '/proc/' . chomp_(cat_($shellpid_file));
-
- if (my $shellpid = fork()) {
- output($shellpid_file, $shellpid);
- return;
- }
-
- $ENV{DISPLAY} ||= ":0"; #- why not :pp
-
- local *F;
- sysopen F, "/dev/tty2", 2 or log::l("cannot open /dev/tty2 -- no shell will be provided: $!"), goto cant_spawn;
-
- open STDIN, "<&F" or goto cant_spawn;
- open STDOUT, ">&F" or goto cant_spawn;
- open STDERR, ">&F" or goto cant_spawn;
- close F;
-
- print drakx_version(), "\n";
-
- c::setsid();
-
- ioctl(STDIN, c::TIOCSCTTY(), 0) or warn "could not set new controlling tty: $!";
-
- my @args; -e '/etc/bashrc' and @args = qw(--rcfile /etc/bashrc);
- foreach (qw(/bin/bash /usr/bin/busybox /bin/sh)) {
- -x $_ or next;
- my $program_name = /busybox/ ? "/bin/sh" : $_; #- since perl_checker is too dumb
- exec { $_ } $program_name, @args or log::l("exec of $_ failed: $!");
- }
-
- log::l("cannot open any shell");
-cant_spawn:
- c::_exit(1);
-}
-
-sub getAvailableSpace {
- my ($o) = @_;
-
- #- make sure of this place to be available for installation, this could help a lot.
- #- currently doing a very small install use 36Mb of postinstall-rpm, but installing
- #- these packages may eat up to 90Mb (of course not all the server may be installed!).
- #- 65mb may be a good choice to avoid almost all problem of insuficient space left...
- my $minAvailableSize = 65 * sqr(1024);
-
- my $n = !$::testing && getAvailableSpace_mounted($o->{prefix}) ||
- getAvailableSpace_raw($o->{fstab}) * 512 / 1.07;
- $n - max(0.1 * $n, $minAvailableSize);
-}
-
-sub getAvailableSpace_mounted {
- my ($prefix) = @_;
- my $dir = -d "$prefix/usr" ? "$prefix/usr" : $prefix;
- my (undef, $free) = MDK::Common::System::df($dir) or return;
- log::l("getAvailableSpace_mounted $free KB");
- $free * 1024 || 1;
-}
-sub getAvailableSpace_raw {
- my ($fstab) = @_;
-
- do { $_->{mntpoint} eq '/usr' and return $_->{size} } foreach @$fstab;
- do { $_->{mntpoint} eq '/' and return $_->{size} } foreach @$fstab;
-
- if ($::testing) {
- my $nb = 450;
- log::l("taking ${nb}MB for testing");
- return $nb << 11;
- }
- die "missing root partition";
-}
-
-sub preConfigureTimezone {
- my ($o) = @_;
- require timezone;
-
- #- can not be done in install cuz' timeconfig %post creates funny things
- add2hash($o->{timezone}, timezone::read()) if $o->{isUpgrade};
-
- $o->{timezone}{timezone} ||= timezone::bestTimezone($o->{locale}{country});
-
- my $utc = every { !isFat_or_NTFS($_) } @{$o->{fstab}};
- my $ntp = timezone::ntp_server();
- add2hash_($o->{timezone}, { UTC => $utc, ntp => $ntp });
-}
-
-sub ask_if_suppl_media {
- my ($o) = @_;
- our $suppl_already_asked;
- my $msg = $suppl_already_asked
- ? N("Do you have further supplementary media?")
- : formatAlaTeX(
-#-PO: keep the double empty lines between sections, this is formatted a la LaTeX
- N("The following media have been found and will be used during install: %s.
-
-
-Do you have a supplementary installation medium to configure?",
- join ", ", uniq(sort {
- (my $x) = $a =~ /CD(\d+)/;
- (my $y) = $b =~ /CD(\d+)/;
- $x && $y ? $x <=> $y : $a cmp $b;
- } map { $_->{descr} } values %{$o->{packages}{mediums}})));
- $o->ask_from(
- '', $msg,
- [ {
- val => \my $suppl,
- list => [ N_("None"), N_("CD-ROM"), N_("Network (HTTP)"), N_("Network (FTP)"), N_("Network (NFS)") ],
- type => 'list',
- format => \&translate,
- } ],
- );
- $suppl_already_asked = 1;
- return $suppl;
-}
-
-#- if the supplementary media is networked, but not the main one, network
-#- support must be installed and network started.
-sub prep_net_suppl_media {
- return if our $net_suppl_media_configured;
- $net_suppl_media_configured = 1;
- my ($o) = @_;
- #- install basesystem now
- $o->do_pkgs->ensure_is_installed('basesystem', undef, 1);
- #- from install_steps_interactive:
- local $::expert = $::expert;
- require network::netconnect;
- network::netconnect::real_main($o->{net}, $o, $o->{modules_conf});
- require install_interactive;
- install_interactive::upNetwork($o);
- sleep(3);
-}
-
-sub remountCD1 {
- my ($o, $cdrom) = @_;
- return if install_medium::by_id(1, $o->{packages})->method ne 'cdrom';
- openCdromTray($cdrom);
- $o->ask_warn('', N("Insert the CD 1 again"));
- mountCdrom("/tmp/image", $cdrom);
- log::l($@) if $@;
- $asked_medium = 1;
-}
-
-sub selectSupplMedia {
- my ($o, $suppl_method) = @_;
- #- ask whether there are supplementary media
- my $prev_asked_medium = $asked_medium;
- if ($suppl_method && (my $suppl = ask_if_suppl_media($o)) ne 'None') {
- #- translate to method name
- $suppl_method = {
- 'CD-ROM' => 'cdrom',
- 'Network (HTTP)' => 'http',
- 'Network (FTP)' => 'ftp',
- 'Network (NFS)' => 'nfs',
- }->{$suppl};
- my $medium_name = int(keys %{$o->{packages}{mediums}}) + 1;
- #- configure network if needed
- prep_net_suppl_media($o) if !scalar keys %{$o->{net}{ifcfg}} && $suppl_method !~ /^(?:cdrom|disk)/;
- local $::isWizard = 0;
- local $o->{method} = $suppl_method;
- my $postinstall_rpms_tmp = $postinstall_rpms;
- if ($suppl_method eq 'cdrom') {
- (my $cdromdev) = detect_devices::cdroms();
- $o->ask_warn('', N("No device found")), return 'error' if !$cdromdev;
- $cdrom = $cdromdev->{device};
- $cdrom =~ m,^/, or $cdrom = "/dev/$cdrom";
- devices::make($cdrom);
- ejectCdrom($cdrom);
- if ($o->ask_okcancel('', N("Insert the CD"), 1)) {
- #- mount suppl CD in /mnt/cdrom to avoid umounting /tmp/image
- mountCdrom("/mnt/cdrom", $cdrom);
- if ($@) {
- log::l($@);
- $o->ask_warn('', N("Unable to mount CD-ROM"));
- return 'error';
- }
- useMedium($medium_name);
-
- #- probe for an hdlists file and then look for all hdlists listed herein
- $postinstall_rpms = '';
- eval {
- pkgs::psUsingHdlists($o, $suppl_method, "/mnt/cdrom", $o->{packages}, $medium_name, sub {
- my ($supplmedium) = @_;
- $supplmedium->mark_suppl;
- });
- };
- log::l("psUsingHdlists failed: $@") if $@;
-
- #- copy latest compssUsers.pl and rpmsrate somewhere locally
- getAndSaveFile("/mnt/cdrom/media/media_info/compssUsers.pl", "/tmp/compssUsers.pl");
- getAndSaveFile("/mnt/cdrom/media/media_info/rpmsrate", "/tmp/rpmsrate");
-
- #- umount supplementary CD. Will re-ask for it later
- getFile("XXX"); #- close still opened filehandles
- log::l("Umounting suppl. CD, back to medium 1");
- eval { fs::mount::umount("/mnt/cdrom") };
- #- re-mount CD 1 if this was a cdrom install
- remountCD1($o, $cdrom);
- } else {
- remountCD1($o, $cdrom);
- return 'error';
- }
- } else {
- my $url;
- local $global_ftp_prefix;
- if ($suppl_method eq 'ftp') {
- $url = $o->askSupplMirror(N("URL of the mirror?")) or return 'error';
- $url =~ m!^ftp://(?:(.*?)(?::(.*?))?\@)?([^/]+)/(.*)!
- and $global_ftp_prefix = [ $3, $4, $1, $2 ]; #- for getFile
- } elsif ($suppl_method eq 'nfs') {
- $o->ask_from_(
- { title => N("NFS setup"), messages => N("Please enter the hostname and directory of your NFS media") },
- [ { label => N("Hostname of the NFS mount ?"), val => \my $host }, { label => N("Directory"), val => \my $dir } ],
- ) or return 'error';
- $dir =~ s!/+\z!!; $dir eq '' and $dir = '/';
- return 'error' if !$host || !$dir || substr($dir, 0, 1) ne '/';
- my $mediadir = '/mnt/nfsmedia' . $medium_name;
- $url = "$::prefix$mediadir";
- -d $url or mkdir_p($url);
- my $dev = "$host:$dir";
- eval { fs::mount::mount($dev, $url, 'nfs'); 1 }
- or do { log::l("Mount failed: $@"); return 'error' };
- #- add $mediadir in fstab for post-installation
- push @{$o->{all_hds}{nfss}}, { fs_type => 'nfs', mntpoint => $mediadir, device => $dev, options => "noauto,ro,nosuid,soft,rsize=8192,wsize=8192" };
- } else {
- our $last_url; #- propose the last URL for correction in case of error
- $o->ask_from_({ focus_first => 1 },
- [ { label => N("URL of the mirror?"),
- val => \$last_url } ]);
- $last_url =~ s!/+\z!!;
- $url = $last_url or return 'error';
- }
- useMedium($medium_name);
- require http if $suppl_method eq 'http';
- require ftp if $suppl_method eq 'ftp';
- #- first, try to find an hdlists file
- $postinstall_rpms = '';
- eval { pkgs::psUsingHdlists($o, $suppl_method, $url, $o->{packages}, $medium_name, \&setup_suppl_medium) };
- if ($@) {
- log::l("psUsingHdlists failed: $@");
- } else {
- #- copy latest compssUsers.pl and rpmsrate somewhere locally
- if ($suppl_method eq 'ftp') {
- getAndSaveFile("media/media_info/compssUsers.pl", "/tmp/compssUsers.pl");
- getAndSaveFile("media/media_info/rpmsrate", "/tmp/rpmsrate");
- } else {
- getAndSaveFile("$url/media/media_info/compssUsers.pl", "/tmp/compssUsers.pl");
- getAndSaveFile("$url/media/media_info/rpmsrate", "/tmp/rpmsrate");
- }
- useMedium($prev_asked_medium); #- back to main medium
- return $suppl_method;
- }
- #- then probe for an hdlist.cz
- my $f = eval {
- if ($suppl_method eq 'http') {
- http::getFile("$url/media_info/hdlist.cz");
- } elsif ($suppl_method eq 'ftp') {
- getFile("media_info/hdlist.cz");
- } elsif ($suppl_method eq 'nfs') {
- getFile("$url/media_info/hdlist.cz");
- } else { undef }
- };
- if (!defined $f) {
- log::l($@ || "hdlist.cz unavailable");
- #- no hdlist found
- $o->ask_warn('', N("Can't find a package list file on this mirror. Make sure the location is correct."));
- useMedium($prev_asked_medium);
- return 'error';
- }
- $postinstall_rpms = '';
- my $supplmedium = pkgs::psUsingHdlist(
- $suppl_method,
- $o->{packages},
- "hdlist$medium_name.cz", #- hdlist
- $medium_name,
- '', #- rpmsdir
- "Supplementary media $medium_name", #- description
- 1, #- selected
- $f,
- );
- close $f;
- if ($supplmedium) {
- log::l("read suppl hdlist (via $suppl_method)");
- setup_suppl_medium($supplmedium, $url, $suppl_method);
- } else {
- log::l("no suppl hdlist");
- $suppl_method = 'error';
- }
- }
- $postinstall_rpms = $postinstall_rpms_tmp;
- } else {
- $suppl_method = '';
- }
- useMedium($prev_asked_medium); #- back to main medium
- return $suppl_method;
-}
-
-sub setup_suppl_medium {
- my ($supplmedium, $url, $suppl_method) = @_;
- $supplmedium->{prefix} = $url;
- if ($suppl_method eq 'ftp') {
- $url =~ m!^ftp://(?:(.*?)(?::(.*?))?\@)?([^/]+)/(.*)!
- and $supplmedium->{ftp_prefix} = [ $3, $4, $1, $2 ]; #- for getFile
- } elsif ($suppl_method eq 'nfs') { #- once installed, path changes
- $supplmedium->{finalprefix} = $supplmedium->{prefix};
- $supplmedium->{finalprefix} =~ s/^\Q$::prefix//;
- }
- $supplmedium->select;
- $supplmedium->{method} = $suppl_method;
- $supplmedium->{with_hdlist} = 'media_info/hdlist.cz'; #- for install_urpmi
- $supplmedium->mark_suppl;
-}
-
-sub load_rate_files {
- my ($o) = @_;
- #- must be done after getProvides
- #- if there is a supplementary media, the rpmsrate/compssUsers are overridable
- pkgs::read_rpmsrate(
- $o->{packages},
- $o->{rpmsrate_flags_chosen},
- -e "/tmp/rpmsrate" ? getLocalFile("/tmp/rpmsrate") : getFile("media/media_info/rpmsrate")
- );
- ($o->{compssUsers}, $o->{gtk_display_compssUsers}) = pkgs::readCompssUsers(
- -e '/tmp/compssUsers.pl' ? '/tmp/compssUsers.pl' : 'media/media_info/compssUsers.pl'
- );
- defined $o->{compssUsers} or die "Can't read compssUsers.pl file, aborting installation\n";
-}
-
-sub setPackages {
- my ($o, $wait_message) = @_;
-
- require pkgs;
- if (!$o->{packages} || is_empty_array_ref($o->{packages}{depslist})) {
- ($o->{packages}, my $suppl_method, my $copy_rpms_on_disk) = pkgs::psUsingHdlists($o, $o->{method});
-
- 1 while $suppl_method = $o->selectSupplMedia($suppl_method);
-
- #- open rpm db according to right mode needed (ie rebuilding database if upgrading)
- $o->{packages}{rpmdb} ||= pkgs::rpmDbOpen($o->{isUpgrade});
-
- if (my $extension = $o->{upgrade_by_removing_pkgs_matching}) {
- my $time = time();
- $wait_message->(N("Removing packages prior to upgrade..."));
- my ($current, $total);
- my $callback = sub {
- my (undef, $type, $_id, $subtype, $amount) = @_;
- if ($type eq 'user') {
- ($current, $total) = (0, $amount);
- } elsif ($type eq 'uninst' && $subtype eq 'stop') {
- $wait_message->('', $current++, $total);
- }
- };
- push @{$o->{default_packages}}, pkgs::upgrade_by_removing_pkgs($o->{packages}, $callback, $extension, $o->{isUpgrade});
- log::l("Removing packages took: ", formatTimeRaw(time() - $time));
- }
-
- #- always try to select basic kernel (else on upgrade, kernel will never be updated provided a kernel is already
- #- installed and provides what is necessary).
- pkgs::selectPackage($o->{packages},
- pkgs::bestKernelPackage($o->{packages}) || die("missing kernel package"), 1);
-
- pkgs::selectPackage($o->{packages},
- pkgs::packageByName($o->{packages}, 'basesystem') || die("missing basesystem package"), 1);
-
- my $rpmsrate_flags_was_chosen = $o->{rpmsrate_flags_chosen};
-
- put_in_hash($o->{rpmsrate_flags_chosen} ||= {}, rpmsrate_always_flags($o)); #- must be done before pkgs::read_rpmsrate()
- load_rate_files($o);
-
- copy_rpms_on_disk($o, $wait_message) if $copy_rpms_on_disk;
-
- set_rpmsrate_default_category_flags($o, $rpmsrate_flags_was_chosen);
-
- push @{$o->{default_packages}}, default_packages($o);
- select_default_packages($o);
- } else {
- #- this has to be done to make sure necessary files for urpmi are
- #- present.
- pkgs::psUpdateHdlistsDeps($o->{packages});
-
- #- open rpm db (always without rebuilding db, it should be false at this point).
- $o->{packages}{rpmdb} ||= pkgs::rpmDbOpen();
- }
-
- $wait_message->(N("Looking at packages already installed..."));
- pkgs::selectPackagesAlreadyInstalled($o->{packages});
-
- if ($o->{isUpgrade}) {
- $wait_message->(N("Finding packages to upgrade..."));
- pkgs::selectPackagesToUpgrade($o->{packages});
- }
-}
-
-sub create_minimal_files() {
- mkdir "$::prefix/$_", 0755 foreach
- qw(dev etc etc/profile.d etc/rpm etc/sysconfig etc/sysconfig/console
- etc/sysconfig/network-scripts etc/sysconfig/console/consolefonts
- etc/sysconfig/console/consoletrans
- home mnt tmp var var/tmp var/lib var/lib/rpm var/lib/urpmi);
- mkdir "$::prefix/$_", 0700 foreach qw(root root/tmp root/drakx);
-
- devices::make("$::prefix/dev/null");
- chmod 0666, "$::prefix/dev/null";
-}
-
-sub count_files {
- my ($dir) = @_;
- -d $dir or return 0;
- opendir my $dh, $dir or return 0;
- my @list = grep { !/^\.\.?$/ } readdir $dh;
- closedir $dh;
- my $c = 0;
- foreach my $n (@list) {
- my $p = "$dir/$n";
- if (-d $p) { $c += count_files($p) } else { ++$c }
- }
- $c;
-}
-
-sub cp_with_progress {
- my $wait_message = shift;
- my $current = shift;
- my $total = shift;
- my $dest = pop @_;
- @_ or return;
- @_ == 1 || -d $dest or die "cp: copying multiple files, but last argument ($dest) is not a directory\n";
-
- foreach my $src (@_) {
- my $dest = $dest;
- -d $dest and $dest .= '/' . basename($src);
-
- unlink $dest;
-
- if (-l $src) {
- unless (symlink(readlink($src) || die("readlink failed: $!"), $dest)) {
- warn "symlink: can't create symlink $dest: $!\n";
- }
- } elsif (-d $src) {
- -d $dest or mkdir $dest, (stat($src))[2] or die "mkdir: can't create directory $dest: $!\n";
- cp_with_progress($wait_message, $current, $total, glob_($src), $dest);
- } else {
- open(my $F, $src) or die "can't open $src for reading: $!\n";
- open(my $G, ">", $dest) or die "can't cp to file $dest: $!\n";
- local $/ = \4096;
- local $_; while (<$F>) { print $G $_ }
- chmod((stat($src))[2], $dest);
- $wait_message->('', ++$current, $total);
- }
- }
- 1;
-}
-
-sub copy_rpms_on_disk {
- my ($o, $wait_message) = @_;
- mkdir "$o->{prefix}/$_", 0755 foreach qw(var var/ftp var/ftp/pub var/ftp/pub/Mandrivalinux var/ftp/pub/Mandrivalinux/media);
- local *changeMedium = sub {
- my ($method, $medium) = @_;
- my $name = install_medium::by_id($medium, $o->{packages})->{descr};
- if (method_allows_medium_change($method)) {
- my $r;
- if ($method =~ /-iso$/) {
- $r = changeIso($name);
- } else {
- cat_("/proc/mounts") =~ m,(/dev/\S+)\s+(/mnt/cdrom|/tmp/image),
- and ($cdrom, my $mountpoint) = ($1, $2);
- ejectCdrom($cdrom, $mountpoint);
- $r = $o->ask_okcancel('', N("Change your Cd-Rom!
-Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when done.", $name), 1);
- }
- return $r;
- } else {
- return 1;
- }
- };
- foreach my $k (pkgs::allMediums($o->{packages})) {
- my $m = install_medium::by_id($k, $o->{packages});
- #- don't copy rpms of supplementary media
- next if $m->is_suppl;
- $wait_message->(N("Copying in progress") . "\n($m->{descr})"); #- XXX to be translated
- if ($k != $current_medium) {
- my $cd_k = $m->get_cd_number;
- my $cd_cur = install_medium::by_id($current_medium, $o->{packages})->get_cd_number;
- $cd_k ne $cd_cur and do {
- askChangeMedium($o->{method}, $k)
- or next;
- mountCdrom("/tmp/image", $cdrom) if $o->{method} eq 'cdrom';
- } while !-d "/tmp/image/$m->{rpmsdir}";
- $current_medium = $k;
- }
- log::l("copying /tmp/image/$m->{rpmsdir} to $o->{prefix}/var/ftp/pub/Mandrivalinux/media");
- my $total = count_files("/tmp/image/$m->{rpmsdir}");
- log::l("($total files)");
- eval {
- cp_with_progress($wait_message, 0, $total, "/tmp/image/$m->{rpmsdir}", "$o->{prefix}/var/ftp/pub/Mandrivalinux/media");
- };
- log::l($@) if $@;
- $m->{prefix} = "$o->{prefix}/var/ftp/pub/Mandrivalinux";
- $m->{method} = 'disk';
- $m->{with_hdlist} = 'media_info/hdlist.cz'; #- for install_urpmi
- }
- ejectCdrom() if $o->{method} eq "cdrom";
- #- now the install will continue as 'disk'
- $o->{method} = 'disk';
- #- should be enough to fool errorOpeningFile
- $current_medium = 1;
- our $copied_rpms_on_disk = 1;
-}
-
-sub set_rpmsrate_default_category_flags {
- my ($o, $rpmsrate_flags_was_chosen) = @_;
-
- #- if no cleaning needed, populate by default, clean is used for second or more call to this function.
- if ($::auto_install && ($o->{rpmsrate_flags_chosen} || {})->{CAT_ALL}) {
- $o->{rpmsrate_flags_chosen}{"CAT_$_"} = 1 foreach map { @{$_->{flags}} } @{$o->{compssUsers}};
- }
- if (!$rpmsrate_flags_was_chosen && !$o->{isUpgrade}) {
- #- use default selection seen in compssUsers directly.
- $_->{selected} = $_->{default_selected} foreach @{$o->{compssUsers}};
- set_rpmsrate_category_flags($o, $o->{compssUsers});
- }
-}
-
-sub set_rpmsrate_category_flags {
- my ($o, $compssUsers) = @_;
-
- $o->{rpmsrate_flags_chosen}{$_} = 0 foreach grep { /^CAT_/ } keys %{$o->{rpmsrate_flags_chosen}};
- $o->{rpmsrate_flags_chosen}{"CAT_$_"} = 1 foreach map { @{$_->{flags}} } grep { $_->{selected} } @$compssUsers;
- $o->{rpmsrate_flags_chosen}{CAT_SYSTEM} = 1;
- $o->{rpmsrate_flags_chosen}{CAT_MINIMAL_DOCS} = 1;
-}
-
-
-sub rpmsrate_always_flags {
- my ($o) = @_;
-
- my $rpmsrate_flags_chosen = {};
- $rpmsrate_flags_chosen->{qq(META_CLASS"$o->{meta_class}")} = 1;
- $rpmsrate_flags_chosen->{uc($_)} = 1 foreach grep { modules::probe_category("multimedia/$_") } modules::sub_categories('multimedia');
- $rpmsrate_flags_chosen->{uc($_)} = 1 foreach detect_devices::probe_name('Flag');
- $rpmsrate_flags_chosen->{UTF8} = $o->{locale}{utf8};
- $rpmsrate_flags_chosen->{BURNER} = 1 if detect_devices::burners();
- $rpmsrate_flags_chosen->{DVD} = 1 if detect_devices::dvdroms();
- $rpmsrate_flags_chosen->{USB} = 1 if $o->{modules_conf}->get_probeall("usb-interface");
- $rpmsrate_flags_chosen->{PCMCIA} = 1 if detect_devices::hasPCMCIA();
- $rpmsrate_flags_chosen->{HIGH_SECURITY} = 1 if $o->{security} > 3;
- $rpmsrate_flags_chosen->{BIGMEM} = 1 if detect_devices::BIGMEM();
- $rpmsrate_flags_chosen->{SMP} = 1 if detect_devices::hasSMP();
- $rpmsrate_flags_chosen->{CDCOM} = 1 if any { $_->{descr} =~ /commercial/i } values %{$o->{packages}{mediums}};
- $rpmsrate_flags_chosen->{'3D'} = 1 if
- detect_devices::matching_desc__regexp('Matrox.* G[245][05]0') ||
- detect_devices::matching_desc__regexp('Rage X[CL]') ||
- detect_devices::matching_desc__regexp('3D Rage (?:LT|Pro)') ||
- detect_devices::matching_desc__regexp('Voodoo [35]') ||
- detect_devices::matching_desc__regexp('Voodoo Banshee') ||
- detect_devices::matching_desc__regexp('8281[05].* CGC') ||
- detect_devices::matching_desc__regexp('Rage 128') ||
- detect_devices::matching_desc__regexp('Radeon ') || #- all Radeon card are now 3D with 4.3.0
- detect_devices::matching_desc__regexp('[nN]Vidia.*T[nN]T2') || #- TNT2 cards
- detect_devices::matching_desc__regexp('[nN][vV]idia.*NV[56]') ||
- detect_devices::matching_desc__regexp('[nN][vV]idia.*Vanta') ||
- detect_devices::matching_desc__regexp('[nN][vV]idia.*[gG]e[fF]orce') || #- GeForce cards
- detect_devices::matching_desc__regexp('[nN][vV]idia.*NV1[15]') ||
- detect_devices::matching_desc__regexp('[nN][vV]idia.*Quadro');
-
- foreach (lang::langsLANGUAGE($o->{locale}{langs})) {
- $rpmsrate_flags_chosen->{qq(LOCALES"$_")} = 1;
- }
- $rpmsrate_flags_chosen->{'CHARSET"' . lang::l2charset($o->{locale}{lang}) . '"'} = 1;
-
- $rpmsrate_flags_chosen;
-}
-
-sub default_packages {
- my ($o) = @_;
- my @l;
-
- push @l, "brltty" if cat_("/proc/cmdline") =~ /brltty=/;
- push @l, "nfs-utils-clients" if $o->{method} eq "nfs";
- push @l, "numlock" if $o->{miscellaneous}{numlock};
- push @l, "mdadm" if !is_empty_array_ref($o->{all_hds}{raids});
- push @l, "lvm2" if !is_empty_array_ref($o->{all_hds}{lvms});
- push @l, "dmraid" if any { fs::type::is_dmraid($_) } @{$o->{all_hds}{hds}};
- push @l, (arch() =~ /x86_64/ ? 'powernowd' : 'athcool') if cat_('/proc/cpuinfo') =~ /AuthenticAMD/;
- push @l, detect_devices::probe_name('Pkg');
-
- my $dmi_BIOS = detect_devices::dmidecode_category('BIOS');
- my $dmi_Base_Board = detect_devices::dmidecode_category('Base Board');
- if ($dmi_BIOS->{Vendor} eq 'COMPAL' && $dmi_BIOS->{Characteristics} =~ /Function key-initiated network boot is supported/
- || $dmi_Base_Board->{Manufacturer} =~ /^ACER/ && $dmi_Base_Board->{'Product Name'} =~ /TravelMate 610/) {
- #- FIXME : append correct options (wireless, ...)
- modules::append_to_modules_loaded_at_startup_for_all_kernels('acerhk');
- }
-
- push @l, "grub" if isLoopback(fs::get::root($o->{fstab}));
- push @l, uniq(grep { $_ } map { fs::format::package_needed_for_partition_type($_) } @{$o->{fstab}});
-
- my @locale_pkgs = map { pkgs::packagesProviding($o->{packages}, 'locales-' . $_) } lang::langsLANGUAGE($o->{locale}{langs});
- unshift @l, uniq(map { $_->name } @locale_pkgs);
-
- @l;
-}
-
-sub select_default_packages {
- my ($o) = @_;
- pkgs::select_by_package_names($o->{packages}, $o->{default_packages});
-}
-
-sub unselectMostPackages {
- my ($o) = @_;
- pkgs::unselectAllPackages($o->{packages});
- select_default_packages($o);
-}
-
-sub warnAboutNaughtyServers {
- my ($o) = @_;
- my @naughtyServers = pkgs::naughtyServers($o->{packages}) or return 1;
- my $r = $o->ask_from_list_('',
-formatAlaTeX(
- #-PO: keep the double empty lines between sections, this is formatted a la LaTeX
- N("You have selected the following server(s): %s
-
-
-These servers are activated by default. They do not have any known security
-issues, but some new ones could be found. In that case, you must make sure
-to upgrade as soon as possible.
-
-
-Do you really want to install these servers?
-", join(", ", @naughtyServers))), [ N_("Yes"), N_("No") ], 'Yes') or return;
- if ($r ne 'Yes') {
- log::l("unselecting naughty servers: " . join(' ', @naughtyServers));
- pkgs::unselectPackage($o->{packages}, pkgs::packageByName($o->{packages}, $_)) foreach @naughtyServers;
- }
- 1;
-}
-
-sub warnAboutRemovedPackages {
- my ($o, $packages) = @_;
- my @removedPackages = keys %{$packages->{state}{ask_remove} || {}} or return;
- if (!$o->ask_yesorno('',
-formatAlaTeX(
- #-PO: keep the double empty lines between sections, this is formatted a la LaTeX
- N("The following packages will be removed to allow upgrading your system: %s
-
-
-Do you really want to remove these packages?
-", join(", ", @removedPackages))), 1)) {
- $packages->{state}{ask_remove} = {};
- }
-}
-
-sub addToBeDone(&$) {
- my ($f, $step) = @_;
-
- return &$f() if $::o->{steps}{$step}{done};
-
- push @{$::o->{steps}{$step}{toBeDone}}, $f;
-}
-
-sub set_authentication {
- my ($o) = @_;
-
- my $when_network_is_up = sub {
- my ($f) = @_;
- #- defer running xxx - no network yet
- addToBeDone {
- require install_steps;
- install_steps::upNetwork($o, 'pppAvoided');
- $f->();
- } 'configureNetwork';
- };
- require authentication;
- authentication::set($o, $o->{net}, $o->{authentication} ||= {}, $when_network_is_up);
-}
-
-sub killCardServices() {
- my $pid = chomp_(cat_("/tmp/cardmgr.pid"));
- $pid and kill(15, $pid); #- send SIGTERM
-}
-
-sub unlockCdrom() {
- my $cdrom = cat_("/proc/mounts") =~ m!(/dev/\S+)\s+(?:/mnt/cdrom|/tmp/image)! && $1 or return;
- eval { ioctl(detect_devices::tryOpen($cdrom), c::CDROM_LOCKDOOR(), 0) };
- $@ and log::l("unlock cdrom ($cdrom) failed: $@");
-}
-
-sub openCdromTray {
- my ($cdrom) = @_;
- eval { ioctl(detect_devices::tryOpen($cdrom), c::CDROMEJECT(), 1) };
- $@ and log::l("ejection failed: $@");
-}
-
-sub ejectCdrom {
- my ($o_cdrom, $o_mountpoint) = @_;
- getFile("XXX"); #- close still opened filehandle
- my $cdrom;
- my $mounts = cat_("/proc/mounts");
- if ($o_mountpoint) {
- $cdrom = $o_cdrom || $mounts =~ m!(/dev/\S+)\s+(/mnt/cdrom|/tmp/image)! && $1;
- } else {
- my $mntpt;
- if ($o_cdrom) {
- $cdrom = $mounts =~ m!((?:/dev/)?$o_cdrom)\s+(/mnt/cdrom|/tmp/image)! && $1;
- $mntpt = $2;
- } else {
- $cdrom = $mounts =~ m!(/dev/\S+)\s+(/mnt/cdrom|/tmp/image)! && $1;
- $mntpt = $2;
- }
- $o_mountpoint ||= $cdrom ? $mntpt || '/tmp/image' : '';
- }
- $cdrom ||= $o_cdrom;
-
- #- umount BEFORE opening the cdrom device otherwise the umount will
- #- D state if the cdrom is already removed
- $o_mountpoint and eval { fs::mount::umount($o_mountpoint) };
- $@ and warnAboutFilesStillOpen();
- return if detect_devices::is_xbox();
- openCdromTray($cdrom);
-}
-
-sub warnAboutFilesStillOpen() {
- log::l("files still open: ", readlink($_)) foreach map { glob_("$_/fd/*") } glob_("/proc/*");
-}
-
-sub install_urpmi {
- my ($method, $packages) = @_;
-
- my @mediums = grep { defined $_->{medium} } values %{$packages->{mediums}};
- my $hdInstallPath = any::hdInstallPath();
-
- #- rare case where urpmi cannot be installed (no hd install path).
- our $copied_rpms_on_disk;
- $method eq 'disk' && !$hdInstallPath && !$copied_rpms_on_disk and return;
-
- log::l("install_urpmi $method");
- #- clean to avoid opening twice the rpm db.
- delete $packages->{rpmdb};
-
- #- import pubkey in rpmdb.
- my $db = pkgs::open_rpm_db_rw();
- $packages->parse_pubkeys(db => $db);
- foreach my $medium (@mediums) {
- $packages->import_needed_pubkeys($medium->{pubkey}, db => $db, callback => sub {
- my (undef, undef, $_k, $id, $imported) = @_;
- if ($id) {
- log::l(($imported ? "imported" : "found") . " key=$id for medium $medium->{descr}");
- $medium->{key_ids}{$id} = undef;
- }
- });
- }
-
- my @cfg;
- foreach (sort { $a->{medium} <=> $b->{medium} } @mediums) {
- my $name = $_->{fakemedium};
- if ($_->selected) {
- my $curmethod = $_->method || $::o->{method};
- my $dir = (($copied_rpms_on_disk ? "/var/ftp/pub/Mandrivalinux" : '')
- || $_->{finalprefix}
- || $_->{prefix}
- || ${{ nfs => "file://mnt/nfs",
- disk => "file:/" . $hdInstallPath,
- ftp => $ENV{URLPREFIX},
- http => $ENV{URLPREFIX},
- cdrom => "removable://mnt/cdrom" }}{$curmethod}
- || #- for live_update or live_install script.
- readlink("/tmp/image/media") =~ m,^(/.*)/media/*$, && "removable:/$1") . "/$_->{rpmsdir}";
- #- use list file only if visible password or macro.
- my $need_list = $dir =~ m,^(?:[^:]*://[^/:\@]*:[^/:\@]+\@|.*%{),; #- }
-
- my $removable_device;
-
- if ($curmethod eq 'disk-iso') {
- my $p = find { $_->{real_mntpoint} eq '/tmp/hdimage' } @{$::o->{fstab}} or
- log::l("unable to find ISO image mountpoint, not adding urpmi media"), next;
- my $iso_info = find_ISO_image_labelled($_->{descr}) or
- log::l("unable to find ISO image labelled $name, not adding urpmi media"), next;
- my ($iso_path) = $iso_info->{file} =~ m,^/tmp/hdimage/+(.*), or
- log::l("unable to find ISO image file name ($iso_info->{file}), not adding urpmi media"), next;
- my $dest = "/mnt/inst_iso";
- $dir = "removable:/$dest/$_->{rpmsdir}";
- -d "$::prefix$dest" or mkdir_p("$::prefix$dest");
- #- FIXME: don't use /mnt/hd but really try to find the mount point
- $removable_device = ($p->{mntpoint} || "/mnt/hd") . "/$iso_path";
- } elsif ($curmethod eq 'cdrom') {
- $removable_device = '/dev/cdrom';
- my $p; $p = fs::get::mntpoint2part("/tmp/image", $::o->{fstab})
- and $removable_device = $p->{device};
- $_->{static} = 1;
- }
-
- #- build a list file if needed.
- if ($need_list) {
- my $mask = umask 077;
- open(my $LIST, ">$::prefix/var/lib/urpmi/list.$name") or log::l("failed to write list.$name");
- umask $mask;
-
- #- build list file using internal data, synthesis file should exist.
- if ($_->{end} > $_->{start}) {
- #- WARNING this method of build only works because synthesis (or hdlist)
- #- has been read.
- foreach (@{$packages->{depslist}}[$_->{start} .. $_->{end}]) {
- my $arch = $_->arch;
- my $ldir = $dir;
- $ldir =~ s|/([^/]*)%{ARCH}|/./$1$arch|; $ldir =~ s|%{ARCH}|$arch|g;
- print $LIST "$ldir/" . $_->filename . "\n";
- }
- } else {
- #- need to use another method here to build list file.
- open(my $F, "parsehdlist '$::prefix/var/lib/urpmi/hdlist.$name.cz' |");
- local $_;
- while (<$F>) {
- my ($arch) = /\.([^\.]+)\.rpm$/;
- my $ldir = $dir;
- $ldir =~ s|/([^/]*)%{ARCH}|/./$1$arch|; $ldir =~ s|%{ARCH}|$arch|g;
- print $LIST "$ldir/$_";
- }
- close $F;
- }
- close $LIST;
- }
-
- #- build a names file
- if (open my $F, ">", "$::prefix/var/lib/urpmi/names.$name") {
- if (defined $_->{start} && defined $_->{end}) {
- foreach ($_->{start} .. $_->{end}) {
- print $F $packages->{depslist}[$_]->name . "\n";
- }
- }
- close $F;
- }
-
- #- build synthesis file if there are still not existing (ie not copied from mirror).
- if (-s "$::prefix/var/lib/urpmi/synthesis.hdlist.$name.cz" <= 32) {
- unlink "$::prefix/var/lib/urpmi/synthesis.hdlist.$name.cz";
- run_program::rooted($::prefix, "parsehdlist", ">", "/var/lib/urpmi/synthesis.hdlist.$name",
- "--synthesis", "/var/lib/urpmi/hdlist.$name.cz");
- run_program::rooted($::prefix, "gzip", "-S", ".cz", "/var/lib/urpmi/synthesis.hdlist.$name");
- }
-
- my ($qname, $qdir) = ($name, $dir);
- $qname =~ s/(\s)/\\$1/g; $qdir =~ s/(\s)/\\$1/g;
-
- #- compute correctly reference to media/media_info
- my $with;
- if ($_->{update}) {
- $with = "media_info/hdlist.cz";
- } elsif ($_->{with_hdlist}) {
- $with = $_->{with_hdlist};
- } else {
- $with = $_->{rpmsdir};
- $with =~ s|/[^/]*%{ARCH}.*||;
- $with =~ s|/+|/|g; $with =~ s|/$||; $with =~ s|[^/]||g; $with =~ s!/!../!g;
- $with .= "../media/media_info/$_->{hdlist}";
- }
-
- #- output new urpmi.cfg format here.
- push @cfg, "$qname " . ($need_list ? "" : $qdir) . " {
- hdlist: hdlist.$name.cz
- with_hdlist: $with" . ($need_list ? "
- list: list.$name" : "") . (keys(%{$_->{key_ids}}) ? "
- key-ids: " . join(',', keys(%{$_->{key_ids}})) : "") . (defined $removable_device && "
- removable: $removable_device") . ($_->{update} ? "
- update" : "") . ($_->{static} ? "
- static" : "") . "
-}
-
-";
- } else {
- #- remove deselected media by removing copied hdlist and synthesis files
- log::l("removing media $name");
- unlink "$::prefix/var/lib/urpmi/hdlist.$name.cz";
- unlink "$::prefix/var/lib/urpmi/synthesis.hdlist.$name.cz";
- }
- }
- #- touch a MD5SUM file and write config file
- eval { output("$::prefix/var/lib/urpmi/MD5SUM", '') };
- eval { output "$::prefix/etc/urpmi/urpmi.cfg", @cfg };
-}
-
-
-#-###############################################################################
-#- kde stuff
-#-###############################################################################
-sub kdemove_desktop_file {
- my ($prefix) = @_;
- my @toMove = qw(doc.kdelnk news.kdelnk updates.kdelnk home.kdelnk printer.kdelnk floppy.kdelnk cdrom.kdelnk FLOPPY.kdelnk CDROM.kdelnk);
-
- #- remove any existing save in Trash of each user and
- #- move appropriate file there after an upgrade.
- foreach my $dir (grep { -d $_ } list_skels($prefix, 'Desktop')) {
- renamef("$dir/$_", "$dir/Trash/$_")
- foreach grep { -e "$dir/$_" } @toMove, grep { /\.rpmorig$/ } all($dir);
- }
-}
-
-
-#-###############################################################################
-#- auto_install stuff
-#-###############################################################################
-sub auto_inst_file() { "$::prefix/root/drakx/auto_inst.cfg.pl" }
-
-sub report_bug() {
- any::report_bug('auto_inst' => g_auto_install('', 1));
-}
-
-sub g_auto_install {
- my ($b_replay, $b_respect_privacy) = @_;
- my $o = {};
-
- require pkgs;
- $o->{default_packages} = pkgs::selected_leaves($::o->{packages});
-
- my @fields = qw(mntpoint fs_type size);
- $o->{partitions} = [ map {
- my %l; @l{@fields} = @$_{@fields}; \%l;
- } grep {
- $_->{mntpoint} && fs::format::known_type($_);
- } @{$::o->{fstab}} ];
-
- exists $::o->{$_} and $o->{$_} = $::o->{$_} foreach qw(locale authentication mouse net timezone superuser keyboard users partitioning isUpgrade manualFstab nomouseprobe crypto security security_user libsafe useSupermount autoExitInstall X services postInstall postInstallNonRooted); #- TODO modules bootloader
-
- $o->{printer} = $::o->{printer} if $::o->{printer};
-
- local $o->{partitioning}{auto_allocate} = !$b_replay;
- $o->{autoExitInstall} = !$b_replay;
- $o->{interactiveSteps} = [ 'doPartitionDisks', 'formatPartitions' ] if $b_replay;
-
- #- deep copy because we're modifying it below
- $o->{users} = $b_respect_privacy ? [] : [ @{$o->{users} || []} ];
-
- my @user_info_to_remove = (
- if_($b_respect_privacy, qw(realname pw)),
- qw(oldu oldg password password2),
- );
- $_ = { %{$_ || {}} }, delete @$_{@user_info_to_remove} foreach $o->{superuser}, @{$o->{users} || []};
-
- if ($b_respect_privacy && $o->{net}) {
- if (my $type = $o->{net}{type}) {
- my @net_type_to_remove = qw(passwd login phone_in phone_out);
- $_ = { %{$_ || {}} }, delete @$_{@net_type_to_remove} foreach $o->{net}{$type};
- }
- }
- my $warn_privacy = $b_respect_privacy ? "!! This file has been simplified to respect privacy when reporting problems.
-# You should use /root/drakx/auto_inst.cfg.pl instead !!\n#" : '';
-
- require Data::Dumper;
- my $str = join('',
-"#!/usr/bin/perl -cw
-# $warn_privacy
-# You should check the syntax of this file before using it in an auto-install.
-# You can do this with 'perl -cw auto_inst.cfg.pl' or by executing this file
-# (note the '#!/usr/bin/perl -cw' on the first line).
-", Data::Dumper->Dump([$o], ['$o']), "\0");
- $str =~ s/ {8}/\t/g; #- replace all 8 space char by only one tabulation, this reduces file size so much :-)
- $str;
-}
-
-sub getAndSaveInstallFloppies {
- my ($o, $dest_dir, $name) = @_;
-
- if ($postinstall_rpms && -d $postinstall_rpms && -r "$postinstall_rpms/auto_install.img") {
- log::l("getAndSaveInstallFloppies: using file saved as $postinstall_rpms/auto_install.img");
- cp_af("$postinstall_rpms/auto_install.img", "$dest_dir/$name.img");
- "$dest_dir/$name.img";
- } else {
- my $image = cat_("/proc/cmdline") =~ /pcmcia/ ? "pcmcia" :
- arch() =~ /ia64|ppc/ ? "all" : #- we only use all.img there
- ${{ disk => 'hd_grub', 'disk-iso' => 'hd_grub', cdrom => 'cdrom', ftp => 'network', nfs => 'network', http => 'network' }}{$o->{method}};
- my $have_drivers = $image eq 'network';
- $image .= arch() =~ /sparc64/ && "64"; #- for sparc64 there are a specific set of image.
-
- if ($have_drivers) {
- getAndSaveFile("install/images/${image}_drivers.img", "$dest_dir/${name}_drivers.img") or log::l("failed to write Install Floppy (${image}_drivers.img) to $dest_dir/${name}_drivers.img"), return;
- }
- getAndSaveFile("install/images/$image.img", "$dest_dir/$name.img") or log::l("failed to write Install Floppy ($image.img) to $dest_dir/$name.img"), return;
-
- "$dest_dir/$name.img", if_($have_drivers, "$dest_dir/${name}_drivers.img");
- }
-}
-
-sub getAndSaveAutoInstallFloppies {
- my ($o, $replay) = @_;
- my $name = ($replay ? 'replay' : 'auto') . '_install';
- my $dest_dir = "$o->{prefix}/root/drakx";
-
- eval { modules::load('loop') };
-
- if (arch() =~ /ia64/) {
- #- nothing yet
- } else {
- my $mountdir = "$o->{prefix}/root/aif-mount"; -d $mountdir or mkdir $mountdir, 0755;
- my $param = 'kickstart=floppy ' . generate_automatic_stage1_params($o);
-
- my @imgs = getAndSaveInstallFloppies($o, $dest_dir, $name) or return;
-
- foreach my $img (@imgs) {
- my $dev = devices::set_loop($img) or log::l("couldn't set loopback device"), return;
- find { eval { fs::mount::mount($dev, $mountdir, $_, 0); 1 } } qw(ext2 vfat) or return;
-
- if (-e "$mountdir/menu.lst") {
- # hd_grub boot disk is different than others
- substInFile {
- s/^(\s*timeout.*)/timeout 1/;
- s/\bautomatic=method:disk/$param/;
- } "$mountdir/menu.lst";
- } elsif (-e "$mountdir/syslinux.cfg") {
- #- make room first
- unlink "$mountdir/help.msg", "$mountdir/boot.msg";
-
- substInFile {
- s/timeout.*/$replay ? 'timeout 1' : ''/e;
- s/^(\s*append)/$1 $param/;
- } "$mountdir/syslinux.cfg";
-
- output "$mountdir/boot.msg", $replay ? '' : "\n0c" .
-"!! If you press enter, an auto-install is going to start.
- All data on this computer is going to be lost,
- including any Windows partitions !!
-" . "07\n";
- }
-
- if (@imgs == 1 || $img =~ /drivers/) {
- local $o->{partitioning}{clearall} = !$replay;
- eval { output("$mountdir/auto_inst.cfg", g_auto_install($replay)) };
- $@ and log::l("Warning: <", formatError($@), ">");
- }
-
- fs::mount::umount($mountdir);
- devices::del_loop($dev);
- }
- rmdir $mountdir;
- @imgs;
- }
-}
-
-
-sub g_default_packages {
- my ($o) = @_;
-
- my ($_h, $file) = media_browser($o, 'save', 'package_list.pl') or return;
-
- require Data::Dumper;
- my $str = Data::Dumper->Dump([ { default_packages => pkgs::selected_leaves($o->{packages}) } ], ['$o']);
- $str =~ s/ {8}/\t/g;
- output($file,
- "# You should always check the syntax with 'perl -cw auto_inst.cfg.pl'\n" .
- "# before testing. To use it, boot with ``linux defcfg=floppy''\n" .
- $str . "\0");
-}
-
-sub loadO {
- my ($O, $f) = @_; $f ||= auto_inst_file();
- my $o;
- if ($f =~ /^(floppy|patch)$/) {
- my $f = $f eq "floppy" ? 'auto_inst.cfg' : "patch";
- unless ($::testing) {
- my $dev = devices::make(detect_devices::floppy());
- foreach my $fs (arch() =~ /sparc/ ? 'romfs' : ('ext2', 'vfat')) {
- eval { fs::mount::mount($dev, '/mnt', $fs, 'readonly'); 1 } and goto mount_ok;
- }
- die "Could not mount floppy [$dev]";
- mount_ok:
- $f = "/mnt/$f";
- }
- -e $f or $f .= '.pl';
-
- my $_b = before_leaving {
- fs::mount::umount("/mnt") unless $::testing;
- modules::unload(qw(vfat fat));
- };
- $o = loadO($O, $f);
- } else {
- my $fh;
- if (ref $f) {
- $fh = $f;
- } else {
- -e "$f.pl" and $f .= ".pl" unless -e $f;
-
- if (-e $f) { open $fh, $f } else { $fh = getFile($f) or die N("Error reading file %s", $f) }
- }
- {
- local $/ = "\0";
- no strict;
- eval <$fh>;
- close $fh;
- $@ and die;
- }
- $O and add2hash_($o ||= {}, $O);
- }
- $O and bless $o, ref $O;
-
- #- handle backward compatibility for things that changed
- foreach (@{$o->{partitions} || []}, @{$o->{manualFstab} || []}) {
- if (my $type = delete $_->{type}) {
- if ($type =~ /^(0x)?(\d*)$/) {
- fs::type::set_pt_type($_, $type);
- } else {
- fs::type::set_fs_type($_, $type);
- }
- }
- }
- #- {rpmsrate_flags_chosen} was called {compssUsersChoice}
- if (my $rpmsrate_flags_chosen = delete $o->{compssUsersChoice}) {
- $o->{rpmsrate_flags_chosen} = $rpmsrate_flags_chosen;
- }
- #- compssUsers flags are now named CAT_XXX
- if ($o->{rpmsrate_flags_chosen} &&
- ! any { /^CAT_/ } keys %{$o->{rpmsrate_flags_chosen}}) {
- #- we don't really know if this is needed for compatibility, but it won't hurt :)
- foreach (keys %{$o->{rpmsrate_flags_chosen}}) {
- $o->{rpmsrate_flags_chosen}{"CAT_$_"} = $o->{rpmsrate_flags_chosen}{$_};
- }
- #- it used to be always selected
- $o->{rpmsrate_flags_chosen}{CAT_SYSTEM} = 1;
- }
-
- #- backward compatibility for network fields
- exists $o->{intf} and $o->{net}{ifcfg} = delete $o->{intf};
- exists $o->{netcnx}{type} and $o->{net}{type} = delete $o->{netcnx}{type};
- exists $o->{netc}{NET_INTERFACE} and $o->{net}{net_interface} = delete $o->{netc}{NET_INTERFACE};
- my %netc_translation = (
- resolv => [ qw(dnsServer dnsServer2 dnsServer3 DOMAINNAME DOMAINNAME2 DOMAINNAME3) ],
- network => [ qw(NETWORKING FORWARD_IPV4 NETWORKING_IPV6 HOSTNAME GATEWAY GATEWAYDEV NISDOMAIN) ],
- auth => [ qw(LDAPDOMAIN WINDOMAIN) ],
- );
- foreach my $dest (keys %netc_translation) {
- exists $o->{netc}{$_} and $o->{net}{$dest}{$_} = delete $o->{netc}{$_} foreach @{$netc_translation{$dest}};
- }
- delete @$o{qw(netc netcnx)};
-
- $o;
-}
-
-sub generate_automatic_stage1_params {
- my ($o) = @_;
-
- my $method = $o->{method};
- my @ks;
-
- if ($o->{method} eq 'http') {
- $ENV{URLPREFIX} =~ m!(http|ftp)://([^/:]+)(.*)! or die;
- $method = $1; #- in stage1, FTP via HTTP proxy is available through FTP config, not HTTP
- @ks = (server => $2, directory => $3);
- } elsif ($o->{method} eq 'ftp') {
- @ks = (server => $ENV{HOST}, directory => $ENV{PREFIX}, user => $ENV{LOGIN}, pass => $ENV{PASSWORD});
- } elsif ($o->{method} eq 'nfs') {
- cat_("/proc/mounts") =~ m|(\S+):(\S+)\s+/tmp/nfsimage| or internal_error("can not find nfsimage");
- @ks = (server => $1, directory => $2);
- }
- @ks = (method => $method, @ks);
-
- if (is_network_install($o)) {
- if ($ENV{PROXY}) {
- push @ks, proxy_host => $ENV{PROXY}, proxy_port => $ENV{PROXYPORT};
- }
- my $intf = first(values %{$o->{net}{ifcfg}});
- push @ks, interface => $intf->{DEVICE};
- if ($intf->{BOOTPROTO} eq 'dhcp') {
- push @ks, network => 'dhcp';
- } else {
- push @ks, network => 'static', ip => $intf->{IPADDR}, netmask => $intf->{NETMASK}, gateway => $o->{net}{network}{GATEWAY};
- require network::network;
- if (my @dnss = network::network::dnsServers($o->{net})) {
- push @ks, dns => $dnss[0];
- }
- }
- }
-
- #- sync it with ../mdk-stage1/automatic.c
- my %aliases = (method => 'met', network => 'netw', interface => 'int', gateway => 'gat', netmask => 'netm',
- adsluser => 'adslu', adslpass => 'adslp', hostname => 'hos', domain => 'dom', server => 'ser',
- directory => 'dir', user => 'use', pass => 'pas', disk => 'dis', partition => 'par');
-
- 'automatic=' . join(',', map { ($aliases{$_->[0]} || $_->[0]) . ':' . $_->[1] } group_by2(@ks));
-}
-
-sub guess_mount_point {
- my ($part, $prefix, $user) = @_;
-
- my %l = (
- '/' => 'etc/fstab',
- '/boot' => 'vmlinuz',
- '/tmp' => '.X11-unix',
- '/usr' => 'X11R6',
- '/var' => 'catman',
- );
-
- my $handle = any::inspect($part, $prefix) or return;
- my $d = $handle->{dir};
- my $mnt = find { -e "$d/$l{$_}" } keys %l;
- $mnt ||= (stat("$d/.bashrc"))[4] ? '/root' : '/home/user' . ++$$user if -e "$d/.bashrc";
- $mnt ||= (any { -d $_ && (stat($_))[4] >= 500 && -e "$_/.bashrc" } glob_($d)) ? '/home' : '';
- ($mnt, $handle);
-}
-
-sub suggest_mount_points {
- my ($fstab, $prefix, $uniq) = @_;
-
- my $user;
- foreach my $part (grep { isTrueFS($_) } @$fstab) {
- $part->{mntpoint} && !$part->{unsafeMntpoint} and next; #- if already found via an fstab
-
- my ($mnt, $handle) = guess_mount_point($part, $prefix, \$user) or next;
-
- next if $uniq && fs::get::mntpoint2part($mnt, $fstab);
- $part->{mntpoint} = $mnt; delete $part->{unsafeMntpoint};
-
- #- try to find other mount points via fstab
- fs::merge_info_from_fstab($fstab, $handle->{dir}, $uniq, 'loose') if $mnt eq '/';
- }
- $_->{mntpoint} and log::l("suggest_mount_points: $_->{device} -> $_->{mntpoint}") foreach @$fstab;
-}
-
-sub find_root_parts {
- my ($fstab, $prefix) = @_;
-
- my $extract = sub {
- my ($prefix, $f, $part) = @_;
- chomp(my $s = cat_("$prefix$f"));
- $s =~ s/\s+for\s+\S+//;
- log::l("find_root_parts found $part->{device}: $s" . ($f !~ m!/etc/! ? " in special release file $f" : ''));
- { release => $s, release_file => $f, part => $part };
- };
-
- if ($::local_install) {
- my $f = common::release_file('/mnt') or return;
- return $extract->('/mnt', $f, {});
- }
-
- map {
- my $handle = any::inspect($_, $prefix);
- if (my $f = $handle && common::release_file($handle->{dir})) {
- $extract->($handle->{dir}, $f, $_);
- } else { () }
- } @$fstab;
-}
-
-sub migrate_device_names {
- my ($all_hds, $from_fstab, $new_root, $root_from_fstab, $o_in) = @_;
-
- log::l("warning: fstab says root partition is $root_from_fstab->{device}, whereas we were reading fstab from $new_root->{device}");
- my ($old_prefix, $old_part_number) = devices::simple_partition_scan($root_from_fstab);
- my ($new_prefix, $new_part_number) = devices::simple_partition_scan($new_root);
-
- if ($old_part_number != $new_part_number) {
- log::l("argh, $root_from_fstab->{device} and $old_part_number->{device} are not the same partition number");
- return;
- }
-
- log::l("replacing $old_prefix with $new_prefix");
-
- my %h;
- foreach (@$from_fstab) {
- if ($_->{device} =~ s!^\Q$old_prefix!$new_prefix!) {
- #- this is simple to handle, nothing more to do
- } elsif ($_->{part_number}) {
- my $device_prefix = devices::part_prefix($_);
- push @{$h{$device_prefix}}, $_;
- } else {
- #- hopefully this does not need anything special
- }
- }
- my @from_fstab_per_hds = values %h or return;
-
-
- my @current_hds = grep { $new_root->{rootDevice} ne $_->{device} } fs::get::hds($all_hds);
-
- found_one:
- @from_fstab_per_hds or return;
-
- foreach my $from_fstab_per_hd (@from_fstab_per_hds) {
- my ($matching, $other) = partition {
- my $hd = $_;
- every {
- my $wanted = $_;
- my $part = find { $_->{part_number} eq $wanted->{part_number} } partition_table::get_normal_parts($hd);
- $part && $part->{fs_type} && fs::type::can_be_this_fs_type($wanted, $part->{fs_type});
- } @$from_fstab_per_hd;
- } @current_hds;
- @$matching == 1 or next;
-
- my ($hd) = @$matching;
- @current_hds = @$other;
- @from_fstab_per_hds = grep { $_ != $from_fstab_per_hd } @from_fstab_per_hds;
-
- log::l("$hd->{device} nicely corresponds to " . join(' ', map { $_->{device} } @$from_fstab_per_hd));
- foreach (@$from_fstab_per_hd) {
- partition_table::compute_device_name($_, $hd);
- }
- goto found_one;
- }
-
- #- we can not find one and only one matching hd
- my @from_fstab_not_handled = map { @$_ } @from_fstab_per_hds;
- log::l("we still do not know what to do with: " . join(' ', map { $_->{device} } @from_fstab_not_handled));
-
-
- if (!$o_in) {
- die 'still have';
- log::l("well, ignoring them!");
- return;
- }
-
- my $propositions_valid = every {
- my $wanted = $_;
- my @parts = grep { $_->{part_number} eq $wanted->{part_number}
- && $_->{fs_type} && fs::type::can_be_this_fs_type($wanted, $_->{fs_type}) } fs::get::hds_fstab(@current_hds);
- $wanted->{propositions} = \@parts;
- @parts > 0;
- } @from_fstab_not_handled;
-
- $o_in->ask_from('',
- N("The following disk(s) were renamed:"),
- [ map {
- { label => N("%s (previously named as %s)", $_->{mntpoint}, $_->{device}),
- val => \$_->{device}, format => sub { $_[0] && $_->{device} },
- list => [ '',
- $propositions_valid ? @{$_->{propositions}} :
- fs::get::hds_fstab(@current_hds) ] };
- } @from_fstab_not_handled ]);
-}
-
-sub use_root_part {
- my ($all_hds, $part, $o_in) = @_;
- return if $::local_install;
-
- my $migrate_device_names;
- {
- my $handle = any::inspect($part, $::prefix) or internal_error();
-
- my @from_fstab = fs::read_fstab($handle->{dir}, '/etc/fstab', 'keep_default');
-
- my $root_from_fstab = fs::get::root_(\@from_fstab);
- if (!fs::get::is_same_hd($root_from_fstab, $part)) {
- $migrate_device_names = 1;
- log::l("from_fstab contained: $_->{device} $_->{mntpoint}") foreach @from_fstab;
- migrate_device_names($all_hds, \@from_fstab, $part, $root_from_fstab, $o_in);
- log::l("from_fstab now contains: $_->{device} $_->{mntpoint}") foreach @from_fstab;
- }
- fs::add2all_hds($all_hds, @from_fstab);
- log::l("fstab is now: $_->{device} $_->{mntpoint}") foreach fs::get::fstab($all_hds);
- }
- isSwap($_) and $_->{mntpoint} = 'swap' foreach fs::get::really_all_fstab($all_hds); #- use all available swap.
- $migrate_device_names;
-}
-
-sub getHds {
- my ($o, $o_in) = @_;
-
- getHds:
- my $all_hds = fsedit::get_hds($o->{partitioning}, $o_in);
- my $hds = $all_hds->{hds};
-
- if (is_empty_array_ref($hds) && !$::move) { #- no way
- die N("An error occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem");
- }
-
- #- try to figure out if the same number of hds is available, use them if ok.
- @{$o->{all_hds}{hds} || []} == @$hds and return 1;
-
- fs::get_raw_hds('', $all_hds);
- fs::add2all_hds($all_hds, @{$o->{manualFstab}});
-
- $o->{all_hds} = $all_hds;
- $o->{fstab} = [ fs::get::really_all_fstab($all_hds) ];
- fs::merge_info_from_mtab($o->{fstab}) if !$::local_install;
-
- my @win = grep { isFat_or_NTFS($_) && maybeFormatted($_) && !$_->{is_removable} } @{$o->{fstab}};
- log::l("win parts: ", join ",", map { $_->{device} } @win) if @win;
- if (@win == 1) {
- #- Suggest /boot/efi on ia64.
- $win[0]{mntpoint} = arch() =~ /ia64/ ? "/boot/efi" : "/mnt/windows";
- } else {
- my %w; foreach (@win) {
- my $v = $w{$_->{device_windobe}}++;
- $_->{mntpoint} = $_->{unsafeMntpoint} = "/mnt/win_" . lc($_->{device_windobe}) . ($v ? $v+1 : ''); #- lc cuz of StartOffice(!) cf dadou
- }
- }
-
- my @sunos = grep { $_->{pt_type} == 2 } @{$o->{fstab}}; #- take only into account root partitions.
- if (@sunos) {
- my $v = '';
- map { $_->{mntpoint} = $_->{unsafeMntpoint} = "/mnt/sunos" . ($v && ++$v) } @sunos;
- }
- #- a good job is to mount SunOS root partition, and to use mount point described here in /etc/vfstab.
-
- 1;
-}
-
-my %media_browser;
-sub media_browser {
- my ($in, $save, $o_suggested_name) = @_;
-
- my %media_type2text = (
- fd => N("Floppy"),
- hd => N("Hard Disk"),
- cdrom => N("CDROM"),
- );
- my @network_protocols = (if_(!$save, N_("HTTP")), if_(0, N_("FTP")), N_("NFS"));
-
- my $to_text = sub {
- my ($hd) = @_;
- ($media_type2text{$hd->{media_type}} || $hd->{media_type}) . ': ' . partition_table::description($hd);
- };
-
- ask_media:
- my $all_hds = fsedit::get_hds({}, $in);
- fs::get_raw_hds('', $all_hds);
-
- my @raw_hds = grep { !$save || $_->{media_type} ne 'cdrom' } @{$all_hds->{raw_hds}};
- my @dev_and_text = group_by2(
- (map { $_ => $to_text->($_) } @raw_hds),
- (map {
- my $hd = $to_text->($_);
- map { $_ => join('\1', $hd, partition_table::description($_)) } grep { isTrueFS($_) || isOtherAvailableFS($_) } fs::get::hds_fstab($_);
- } fs::get::hds($all_hds)),
- if_(is_network_install($::o) || install_steps::hasNetwork($::o),
- map { $_ => join('\1', N("Network"), translate($_)) } @network_protocols),
- );
-
- $in->ask_from_({
- messages => N("Please choose a media"),
- }, [
- { val => \$media_browser{dev}, separator => '\1', list => [ map { $_->[1] } @dev_and_text ] },
- ]) or return;
-
- my $dev = (find { $_->[1] eq $media_browser{dev} } @dev_and_text)->[0];
-
- my $browse = sub {
- my ($dir) = @_;
-
- browse:
- my $file = $in->ask_filename({ save => $save,
- directory => $dir,
- if_($o_suggested_name, file => "$dir/$o_suggested_name"),
- }) or return;
- if (-e $file && $save) {
- $in->ask_yesorno('', N("File already exists. Overwrite it?")) or goto browse;
- }
- if ($save) {
- if (!open(my $_fh, ">>$file")) {
- $in->ask_warn('', N("Permission denied"));
- goto browse;
- }
- $file;
- } else {
- open(my $fh, $file) or goto browse;
- $fh;
- }
- };
- my $inspect_and_browse = sub {
- my ($dev) = @_;
-
- if (my $h = any::inspect($dev, $::prefix, $save)) {
- if (my $file = $browse->($h->{dir})) {
- return $h, $file;
- }
- undef $h; #- help perl
- } else {
- $in->ask_warn(N("Error"), formatError($@));
- }
- ();
- };
-
- if (member($dev, @network_protocols)) {
- require install_interactive;
- install_interactive::upNetwork($::o);
-
- if ($dev eq 'HTTP') {
- require http;
- $media_browser{url} ||= 'http://';
-
- while (1) {
- $in->ask_from('', 'URL', [
- { val => \$media_browser{url} }
- ]) or last;
-
- if ($dev eq 'HTTP') {
- my $fh = http::getFile($media_browser{url});
- $fh and return '', $fh;
- }
- }
- } elsif ($dev eq 'NFS') {
- while (1) {
- $in->ask_from('', 'NFS', [
- { val => \$media_browser{nfs} }
- ]) or last;
-
- my ($kind) = fs::wild_device::analyze($media_browser{nfs});
- if ($kind ne 'nfs') {
- $in->ask_warn('', N("Bad NFS name"));
- next;
- }
-
- my $nfs = fs::wild_device::to_subpart($media_browser{nfs});
- $nfs->{fs_type} = 'nfs';
-
- if (my ($h, $file) = $inspect_and_browse->($nfs)) {
- return $h, $file;
- }
- }
- } else {
- $in->ask_warn('', 'todo');
- goto ask_media;
- }
- } else {
- if (!$dev->{fs_type} || $dev->{fs_type} eq 'auto' || $dev->{fs_type} =~ /:/) {
- if (my $p = fs::type::type_subpart_from_magic($dev)) {
- add2hash($p, $dev);
- $dev = $p;
- } else {
- $in->ask_warn(N("Error"), N("Bad media %s", partition_table::description($dev)));
- goto ask_media;
- }
- }
-
- if (my ($h, $file) = $inspect_and_browse->($dev)) {
- return $h, $file;
- }
-
- goto ask_media;
- }
-}
-
-sub log_sizes {
- my ($o) = @_;
- my @df = MDK::Common::System::df($o->{prefix});
- log::l(sprintf "Installed: %dMB(df), %dMB(rpm)",
- ($df[0] - $df[1]) / 1024,
- sum(run_program::rooted_get_stdout($o->{prefix}, 'rpm', '-qa', '--queryformat', '%{size}\n')) / 1024 / 1024) if -x "$o->{prefix}/bin/rpm";
-}
-
-sub X_options_from_o {
- my ($o) = @_;
- {
- freedriver => $o->{freedriver},
- allowFB => $o->{allowFB},
- ignore_bad_conf => $o->{isUpgrade} =~ /redhat|conectiva/,
- };
-}
-
-sub screenshot_dir__and_move() {
- my ($dir0, $dir1, $dir2) = ('/root', "$::prefix/root", '/tmp');
- if (-e $dir0) {
- $dir0; #- it occurs during pkgs install when we are chrooted
- } elsif (-e $dir1) {
- if (-e "$dir2/DrakX-screenshots") {
- cp_af("$dir2/DrakX-screenshots", $dir1);
- rm_rf("$dir2/DrakX-screenshots");
- }
- $dir1;
- } else {
- $dir2;
- }
-}
-
-sub take_screenshot {
- my ($in) = @_;
- my $dir = screenshot_dir__and_move() . '/DrakX-screenshots';
- my $warn;
- if (!-e $dir) {
- mkdir $dir or $in->ask_warn('', N("Can not make screenshots before partitioning")), return;
- $warn = 1;
- }
- my $nb = 1;
- $nb++ while -e "$dir/$nb.png";
- system("fb2png /dev/fb0 $dir/$nb.png 0");
-
- $in->ask_warn('', N("Screenshots will be available after install in %s", "/root/DrakX-screenshots")) if $warn;
-}
-
-sub copy_advertising {
- my ($o) = @_;
-
- return if $::rootwidth < 800;
-
- my $f;
- my $source_dir = "install/extra/advertising";
- foreach ("." . $o->{locale}{lang}, "." . substr($o->{locale}{lang},0,2), '') {
- $f = getFile("$source_dir$_/list") or next;
- $source_dir = "$source_dir$_";
- }
- if (my @files = <$f>) {
- my $dir = "$o->{prefix}/tmp/drakx-images";
- mkdir $dir;
- unlink glob_("$dir/*");
- foreach (@files) {
- chomp;
- getAndSaveFile("$source_dir/$_", "$dir/$_");
- (my $pl = $_) =~ s/\.png/.pl/;
- getAndSaveFile("$source_dir/$pl", "$dir/$pl");
- }
- @advertising_images = map { "$dir/$_" } @files;
- }
-}
-
-sub remove_advertising {
- my ($o) = @_;
- eval { rm_rf("$o->{prefix}/tmp/drakx-images") };
- @advertising_images = ();
-}
-
-sub disable_user_view() {
- substInFile { s/^UserView=.*/UserView=true/ } "$::prefix/usr/share/config/kdm/kdmrc";
- substInFile { s/^Browser=.*/Browser=0/ } "$::prefix/etc/X11/gdm/gdm.conf";
-}
-
-sub set_security {
- my ($o) = @_;
- require security::various;
- security::level::set($o->{security});
- security::various::config_libsafe($::prefix, $o->{libsafe});
- security::various::config_security_user($::prefix, $o->{security_user});
-}
-
-sub write_fstab {
- my ($o) = @_;
- fs::write_fstab($o->{all_hds}, $o->{prefix})
- if !$o->{isUpgrade} || $o->{isUpgrade} =~ /redhat|conectiva/ || $o->{migrate_device_names};
-}
-
-sub move_clp_to_disk {
- my ($o) = @_;
-
- our $clp_on_disk;
- return if $clp_on_disk || $::local_install;
-
- my $clp_name = 'mdkinst.clp';
- my ($loop, $current_clp) = devices::find_clp_loop($clp_name) or return;
- my $clp_size = (-s $current_clp) / 1024; #- put in KiB
-
- my $clp_dir;
- if (availableRamMB() > 400) {
- $clp_dir = '/tmp'; #- on tmpfs
- } else {
- my $tmp = fs::get::mntpoint2part('/tmp', $o->{fstab});
- if ($tmp && fs::df($tmp, $::prefix) / 2 > $clp_size * 1.2) { #- we want at least 20% free afterwards
- $clp_dir = "$::prefix/tmp";
- } else {
- my $root = fs::get::mntpoint2part('/', $o->{fstab});
- my $root_free_MB = fs::df($root, $::prefix) / 2 / 1024;
- my $wanted_size_MB = $o->{isUpgrade} || fs::get::mntpoint2part('/usr', $o->{fstab}) ? 150 : 300;
- log::l("clp: root free $root_free_MB MB, wanted at least $wanted_size_MB MB");
- if ($root_free_MB > $wanted_size_MB) {
- $clp_dir = $tmp ? $::prefix : "$::prefix/tmp";
- } else {
- $clp_dir = '/tmp'; #- on tmpfs
- if (availableRamMB() < 200) {
- log::l("ERROR: not much ram (" . availableRamMB() . " MB), we're going in the wall!");
- }
- }
- }
- }
- $clp_on_disk = "$clp_dir/$clp_name";
-
- if ($current_clp ne $clp_on_disk) {
- log::l("move_clp_to_disk: copying $current_clp to $clp_on_disk");
- cp_af($current_clp, $clp_on_disk);
- run_program::run('losetup', '-r', $loop, $clp_on_disk);
- unlink $current_clp if $current_clp eq "/tmp/$clp_name";
- }
-}
-
-sub deploy_server_notify {
- my ($o) = @_;
- my $fallback_intf = "eth0";
- my $fallback_port = 3710;
-
- my ($server, $port) = $o->{deploy_server} =~ /^(.*?)(?::(\d+))?$/;
- if ($server) {
- require network::tools;
- require IO::Socket;
- $port ||= $fallback_port;
- my $intf = network::tools::get_current_gateway_interface() || $fallback_intf;
- my $mac = c::get_hw_address($intf);
- my $sock = IO::Socket::INET->new(PeerAddr => $server, PeerPort => $port, Proto => 'tcp');
- if ($sock) {
- print $sock "$mac\n";
- close($sock);
- log::l(qq(successfully notified deploy server $server on port $port));
- } else {
- log::l(qq(unable to contact deploy server $server on port $port));
- }
- } else {
- log::l(qq(unable to parse deploy server in string $o->{deploy_server}));
- }
-}
-
-#-###############################################################################
-#- pcmcia various
-#-###############################################################################
-sub configure_pcmcia {
- my ($modules_conf, $pcic) = @_;
-
- #- try to setup pcmcia if cardmgr is not running.
- my $running if 0;
- return if $running;
- $running = 1;
-
- log::l("i try to configure pcmcia services");
-
- symlink "/tmp/stage2/$_", $_ foreach "/etc/pcmcia";
-
- #- ds is an alias for pcmcia in recent 2.6 kernels
- #- but we don't have modules.alias in install, so try to load both
- eval { modules::load('pcmcia', $pcic, 'ds', 'pcmcia') };
-
- #- run cardmgr in foreground while it is configuring the card.
- run_program::run("cardmgr", "-f", "-m", "/modules");
- sleep(3);
-
- #- make sure to be aware of loaded module by cardmgr.
- modules::read_already_loaded($modules_conf);
-}
-
-1;
diff --git a/perl-install/install_steps_newt.pm b/perl-install/install_steps_newt.pm
deleted file mode 100644
index 66a9accb0..000000000
--- a/perl-install/install_steps_newt.pm
+++ /dev/null
@@ -1,59 +0,0 @@
-package install_steps_newt; # $Id$
-
-use diagnostics;
-use strict;
-use vars qw(@ISA);
-
-@ISA = qw(install_steps_interactive interactive::newt);
-
-#-######################################################################################
-#- misc imports
-#-######################################################################################
-use install_steps_interactive;
-use interactive::newt;
-use install_any;
-use devices;
-use lang;
-use common;
-
-sub banner {
- my $banner = translate(N_("Mandriva Linux Installation %s"));
- my $l = first(Newt::GetScreenSize()) - length($banner) - length($_[0]) + 1;
- Newt::DrawRootText(0, 0, sprintf($banner, ' ' x $l . $_[0]));
- Newt::Refresh();
-}
-
-sub new {
- my ($type, $o) = @_;
-
- interactive::newt->new;
-
- #- unset DISPLAY so that code testing wether DISPLAY is set can know we don't have or use X
- delete $ENV{DISPLAY};
-
- banner('');
- Newt::PushHelpLine(
- #-PO: This string must fit in a 80-char wide text screen
- N(" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "));
-
- (bless {}, ref($type) || $type)->SUPER::new($o);
-}
-
-sub charsetChanged {
- my ($o) = @_;
- lang::load_console_font($o->{locale});
-}
-
-sub enteringStep {
- my ($o, $step) = @_;
- $o->SUPER::enteringStep($step);
- banner(translate($o->{steps}{$step}{text}));
-}
-
-sub exitInstall {
- &install_steps_interactive::exitInstall;
- interactive::newt::end();
-}
-
-1;
-
diff --git a/perl-install/interactive.pm b/perl-install/interactive.pm
index a4e865bff..c5f90942e 100644
--- a/perl-install/interactive.pm
+++ b/perl-install/interactive.pm
@@ -20,23 +20,31 @@ use do_pkgs;
#- ask_from_ takes global options ($common):
#- title => window title
#- messages => message displayed in the upper part of the window
-#- advanced_messages => message displayed when "Advanced" is pressed
#- ok => force the name of the "Ok"/"Next" button
#- cancel => force the name of the "Cancel"/"Previous" button
-#- advanced_label => force the name of the "Advanced" button
-#- advanced_label_close => force the name of the "Basic" button
-#- advanced_state => if set to 1, force the "Advanced" part of the dialog to be opened initially
#- focus_cancel => force focus on the "Cancel" button
-#- focus_first => force focus on the first entry
-#- callbacks => functions called when something happen: complete canceled advanced changed focus_out ok_disabled
+#- focus_first => (deprecated) force focus on the first entry
+#- ok_disabled => function returning wether {ok} should be disabled (grayed)
+#- validate => function called when {ok} is pressed. If it returns false, the first entry is focused, otherwise it quits
+#- advanced => (deprecated) function called when the "advanced" expander is toggled
+#- advanced_messages => (deprecated) message displayed when "Advanced" is pressed
+#- advanced_label => (deprecated) force the name of the "Advanced" button
+#- advanced_label_close => (deprecated) force the name of the "Basic" button
+#- advanced_state => (deprecated) if set to 1, force the "Advanced" part of the dialog to be opened initially
+#- callbacks => (deprecated) functions called when something happen: complete advanced ok_disabled
#- ask_from_ takes a list of entries with fields:
#- val => reference to the value
#- label => description
+#- title => a boolean: whether the label should be displayed as a title (see GNOME's HIG)
#- icon => icon to put before the description
#- help => tooltip
-#- advanced => wether it is shown in by default or only in advanced mode
+#- advanced => (deprecated) wether it is shown in by default or only in advanced mode
+#- focus_out => function called when the entry is focused out
+#- changed => function called when the entry is modified
+#- validate => function called when "Ok" is pressed. If it returns false, this entry is focused, otherwise it quits
#- disabled => function returning wether it should be disabled (grayed)
+#- focus => function returning wether it should be focused
#- gtk => gtk preferences
#- type =>
#- button => (with clicked or clicked_may_quit)
@@ -44,7 +52,7 @@ use do_pkgs;
#- (val need not be a reference) (if clicked_may_quit return true, it's as if "Ok" was pressed)
#- label => (val need not be a reference) (type defaults to label if val is not a reference)
#- bool (with "text" or "image" (which overrides text) giving an image filename)
-#- range (with min, max)
+#- range (with min, max, SpinButton)
#- combo (with list, not_edit, format)
#- list (with list, icon2f (aka icon), separator (aka tree), format (aka pre_format function),
#- help can be a hash or a function,
@@ -53,6 +61,7 @@ use do_pkgs;
#- allow_empty_list disables the special cases for 0 and 1 element lists
#- image2f is a subroutine which takes a value of the list as parameter, and returns image_file_name
#- entry (the default) (with hidden)
+#- expander (with text, expanded, message, children(a list of sub entries))
#
#- heritate from this class and you'll get all made interactivity for same steps.
#- for this you need to provide
@@ -109,16 +118,70 @@ sub vnew {
}
}
- require 'log.pm'; #- "require log" causes some pb, perl thinking that "log" is the log() function
- undef *log::l;
- *log::l = sub {}; # otherwise, it will bother us :(
- require interactive::newt;
- interactive::newt->new;
+ require interactive::curses;
+ interactive::curses->new;
}
sub ok { N_("Ok") }
sub cancel { N_("Cancel") }
+sub markup_parse {
+ my ($s) = @_;
+ my @l;
+ my @attrs;
+
+ while ($s) {
+ if ($s =~ s!^<(\w+)(\s+[^>]*?)?>!!s) {
+ push @attrs, [ $1, $2 ];
+ } elsif ($s =~ s!^</(\w+)>!!) {
+ my $previous = pop @attrs;
+ $previous->[0] eq $1 or return;
+ } elsif ($s =~ s!^(&(amp|lt|gt);)!!) {
+ push @l, [ $1, @attrs ];
+ } elsif ($s =~ s!^([^<>&]+)!!s) {
+ push @l, [ $1, @attrs ];
+ } else {
+ return;
+ }
+ }
+ markup_simplify(\@l);
+ \@l;
+}
+
+sub markup_simplify {
+ my ($l) = @_;
+ foreach (@$l) {
+ my ($s, @attrs) = @$_;
+ my %attrs = map {
+ my ($tag, $attrs) = @$_;
+ my $long = { b => { weight => "bold" },
+ i => { style => "italic" },
+ big => { size => 'larger' },
+ }->{$tag};
+ $long ? %$long : map { /^(.*?)=['"]?(.*?)['"]?$/ } split(' ', $attrs);
+ } @attrs;
+
+ $s = +{ '&amp;' => '&', '&lt;' => '<', '&gt;' => '>' }->{$s} || $s;
+
+ @$_ = ($s, if_(%attrs, \%attrs));
+ }
+}
+
+sub markup_remove {
+ my ($s) = @_;
+ if (my $l = markup_parse($s)) {
+ join('', map { $_->[0] } @$l);
+ } else {
+ $s;
+ }
+}
+
+#- drop markup as fallback
+sub adapt_markup {
+ my ($_o, $s) = @_;
+ markup_remove($s);
+}
+
sub enter_console {}
sub leave_console {}
sub suspend {}
@@ -165,7 +228,6 @@ sub ask_okcancel_ {
my ($o, $common, $b_def) = @_;
if ($::isWizard) {
- $::no_separator = 1;
$common->{focus_cancel} = !$b_def;
ask_from_no_check($o, $common, []);
} else {
@@ -292,7 +354,7 @@ sub ask_from_entries {
my @l = map { my $i = ''; { label => $_, val => \$i } } @$l;
- $o->ask_from_({ title => $title, messages => $message, callbacks => \%callback,
+ $o->ask_from_({ title => $title, messages => $message, %callback,
focus_first => 1 }, \@l) or return;
map { ${$_->{val}} } @l;
}
@@ -319,60 +381,70 @@ sub ask_from__add_modify_remove {
$continue = 1;
} } }
N_("Add"), if_(@{$e->{list}} > 0, N_("Modify"), N_("Remove")));
- $o->ask_from_({ title => $title, messages => $message, callbacks => \%callback }, \@l) or return;
+ $o->ask_from_({ title => $title, messages => $message, %callback }, \@l) or return;
return 1 if !$continue;
}
}
}
-#- can get a hash of callback: focus_out changed and complete
+#- can get a hash of callback: validate
#- moreove if you pass a hash with a field list -> combo
#- if you pass a hash with a field hidden -> emulate stty -echo
sub ask_from {
my ($o, $title, $message, $l, %callback) = @_;
- ask_from_($o, { title => $title, messages => $message, callbacks => \%callback }, $l);
+ ask_from_($o, { title => $title, messages => $message, %callback }, $l);
}
-sub ask_from_normalize {
- my ($o, $common, $l) = @_;
+sub _normalize_entry {
+ my ($o, $e) = @_;
- ref($l) eq 'ARRAY' or internal_error('ask_from_normalize');
- foreach my $e (@$l) {
- if (my $li = $e->{list}) {
- ref($e->{val}) =~ /SCALAR|REF/ or internal_error($e->{val} ? "field {val} must be a reference (it is $e->{val})" : "field {val} is mandatory"); #-#
- if ($e->{sort} || @$li > 10 && !exists $e->{sort}) {
- my @l2 = map { may_apply($e->{format}, $_) } @$li;
- my @places = sort { $l2[$a] cmp $l2[$b] } 0 .. $#l2;
- $e->{list} = $li = [ map { $li->[$_] } @places ];
- }
- $e->{type} = 'iconlist' if $e->{icon2f};
- $e->{type} = 'treelist' if $e->{separator} && $e->{type} ne 'combo';
- add2hash_($e, { not_edit => 1 });
- $e->{type} ||= 'combo';
+ if (my $li = $e->{list}) {
+ ref($e->{val}) =~ /SCALAR|REF/ or internal_error($e->{val} ? "field {val} must be a reference (it is $e->{val})" : "field {val} is mandatory"); #-#
+ if ($e->{sort} || @$li > 10 && !exists $e->{sort}) {
+ my @l2 = map { may_apply($e->{format}, $_) } @$li;
+ my @places = sort { $l2[$a] cmp $l2[$b] } 0 .. $#l2;
+ $e->{list} = $li = [ map { $li->[$_] } @places ];
+ }
+ $e->{type} = 'iconlist' if $e->{icon2f};
+ $e->{type} = 'treelist' if $e->{separator} && $e->{type} ne 'combo';
+ add2hash_($e, { not_edit => 1 });
+ $e->{type} ||= 'combo';
- if (!$e->{not_edit}) {
- die q(when using "not_edit" you must use strings, not a data structure) if ref(${$e->{val}}) || any { ref $_ } @$li;
- }
- if ($e->{type} ne 'combo' || $e->{not_edit}) {
- ${$e->{val}} = $li->[0] if !member(may_apply($e->{format}, ${$e->{val}}), map { may_apply($e->{format}, $_) } @$li);
- }
- } elsif ($e->{type} eq 'range') {
- $e->{min} <= $e->{max} or die "bad range min $e->{min} > max $e->{max} (called from " . join(':', caller()) . ")";
- ${$e->{val}} = max($e->{min}, min(${$e->{val}}, $e->{max}));
- } elsif ($e->{type} eq 'button' || $e->{clicked} || $e->{clicked_may_quit}) {
- $e->{type} = 'button';
- $e->{clicked_may_quit} ||= $e->{clicked} ? sub { $e->{clicked}(); 0 } : sub {};
- $e->{val} = \ (my $_v = $e->{val}) if !ref($e->{val});
- } elsif ($e->{type} eq 'label' || !ref($e->{val})) {
- $e->{type} = 'label';
- $e->{val} = \ (my $_v = $e->{val}) if !ref($e->{val});
- } else {
- $e->{type} ||= 'entry';
+ if (!$e->{not_edit}) {
+ die q(when using "not_edit" you must use strings, not a data structure) if ref(${$e->{val}}) || any { ref $_ } @$li;
}
- $e->{disabled} ||= sub { 0 };
+ if ($e->{type} ne 'combo' || $e->{not_edit}) {
+ ${$e->{val}} = $li->[0] if !member(may_apply($e->{format}, ${$e->{val}}), map { may_apply($e->{format}, $_) } @$li);
+ }
+ } elsif ($e->{type} eq 'range') {
+ $e->{min} <= $e->{max} or die "bad range min $e->{min} > max $e->{max} (called from " . join(':', caller()) . ")";
+ ${$e->{val}} = max($e->{min}, min(${$e->{val}}, $e->{max}));
+ } elsif ($e->{type} eq 'button' || $e->{clicked} || $e->{clicked_may_quit}) {
+ $e->{type} = 'button';
+ $e->{clicked_may_quit} ||= $e->{clicked} ? sub { $e->{clicked}(); 0 } : sub {};
+ $e->{val} = \ (my $_v = $e->{val}) if !ref($e->{val});
+ } elsif (!$e->{type} && !$e->{val}) {
+ $e->{type} = 'only_label';
+ $e->{val} = \ (my $_v = $o->adapt_markup(delete $e->{label}));
+ } elsif ($e->{type} eq 'label' || !ref($e->{val})) {
+ $e->{type} = 'label';
+ $e->{val} = \ (my $_v = $e->{val}) if !ref($e->{val});
+ } elsif ($e->{type} eq 'expander') {
+ _normalize_entries($o, $e->{children});
+ } else {
+ $e->{type} ||= 'entry';
}
+ $e->{label} = $o->adapt_markup($e->{label}) if $e->{label};
+}
+
+sub _normalize_entries {
+ my ($o, $l) = @_;
+
+ ref($l) eq 'ARRAY' or internal_error('ask_from_normalize');
+
+ _normalize_entry($o, $_) foreach @$l;
#- do not display empty lists and one element lists
@$l = grep {
@@ -388,6 +460,14 @@ sub ask_from_normalize {
1;
}
} @$l;
+}
+
+sub ask_from_normalize {
+ my ($o, $common, $l) = @_;
+
+ _normalize_entries($o, $l);
+
+ $l->[0]{focus} = sub { 1 } if $common->{focus_first};
if (!$common->{title} && $::isStandalone) {
($common->{title} = $0) =~ s|.*/||;
@@ -395,9 +475,31 @@ sub ask_from_normalize {
$common->{interactive_help} ||= $o->{interactive_help};
$common->{interactive_help} ||= $common->{interactive_help_id} && $o->interactive_help_sub_get_id($common->{interactive_help_id});
$common->{advanced_label} ||= N("Advanced");
- $common->{advanced_label_close} ||= N("Basic");
- $common->{$_} = $common->{$_} ? [ deref($common->{$_}) ] : [] foreach qw(messages advanced_messages);
- add2hash_($common->{callbacks} ||= {}, { changed => sub {}, focus_out => sub {}, complete => sub { 0 }, canceled => sub { 0 }, advanced => sub {} });
+ $common->{advanced_label_close} and log::l("advanced_label_close is not used anymore");
+ $common->{$_} = $common->{$_} ? [ map { $o->adapt_markup($_) } deref($common->{$_}) ] : []
+ foreach qw(messages advanced_messages);
+
+ if ($common->{callbacks}) {
+ $common->{callbacks}{changed} and internal_error(q(global "changed" callback is not handled anymore, use a per-entry changed callback));
+ $common->{callbacks}{focus_out} and internal_error(q(global "focus_out" callback is not handled anymore, use a per-entry focus_out callback));
+ add2hash($common, delete $common->{callbacks});
+ }
+ if (my $complete = delete $common->{complete}) {
+ $common->{validate} = sub { !first($complete->()) };
+ }
+ add2hash_($common, { validate => sub { 1 } });
+}
+
+sub migrate_advanced {
+ my ($common, $l) = @_;
+ my ($l1, $l2) = partition { !$_->{advanced} } @$l;
+ my $advanced_message = join("\n", @{$common->{advanced_messages}});
+ [ @$l1, if_(@$l2, { type => 'expander',
+ if_($advanced_message, message => $advanced_message),
+ text => $common->{advanced_label},
+ expanded => $common->{advanced_state},
+ children => $l2,
+ }) ];
}
sub ask_from_ {
@@ -411,15 +513,15 @@ sub ask_from_no_check {
my ($o, $common, $l) = @_;
ask_from_normalize($o, $common, $l);
$common->{cancel} = '' if !defined wantarray();
- my ($l1, $l2) = partition { !$_->{advanced} } @$l;
- $o->ask_fromW($common, $l1, $l2);
+ my $l_ = migrate_advanced($common, $l);
+ $o->ask_fromW($common, $l_);
}
sub ask_from_real {
my ($o, $common, $l) = @_;
- my ($l1, $l2) = partition { !$_->{advanced} } @$l;
- my $v = $o->ask_fromW($common, $l1, $l2);
+ my $l_ = migrate_advanced($common, $l);
+ my $v = $o->ask_fromW($common, $l_);
- foreach my $e (@$l1, @$l2) {
+ foreach my $e (@$l) {
if ($e->{type} eq 'range') {
${$e->{val}} = max($e->{min}, min(${$e->{val}}, $e->{max}));
}
@@ -471,47 +573,29 @@ sub ask_browse_tree_info_refW { #- default definition, do not use with too many
sub wait_message {
my ($o, $title, $message, $b_temp) = @_;
- my $w = $o->wait_messageW($title, [ N("Please wait"), deref($message) ]);
+ my $w = $o->wait_messageW($title, N("Please wait"), $message);
push @tempory::objects, $w if $b_temp;
my $b = before_leaving { $o->wait_message_endW($w) };
#- enable access through set
- MDK::Common::Func::add_f4before_leaving(sub { $o->wait_message_nextW([ deref($_[1]) ], $w) }, $b, 'set');
+ MDK::Common::Func::add_f4before_leaving(sub { $o->wait_message_nextW($_[1], $w) }, $b, 'set');
$b;
}
sub wait_message_with_progress_bar {
- my ($in) = @_;
+ my ($in, $o_title) = @_;
- my ($w, $progress, $last_msg, $displayed);
- my $on_expose = sub { $displayed = 1; 0 }; #- declared here to workaround perl limitation
+ my $w = $in->wait_message($o_title, '');
+ my $last_msg;
$w, sub {
my ($msg, $current, $total) = @_;
if ($msg) {
- $last_msg = $msg;
- if (!$w) {
- $progress = Gtk2::ProgressBar->new if $in->isa('interactive::gtk');
- $w = $in->wait_message('', [ '', if_($progress, $progress) ]);
- if ($progress) {
- #- don't show by default, only if we are given progress information
- $progress->hide;
- $progress->signal_connect(expose_event => $on_expose);
- }
- } else {
- #- re-hide if visible
- $progress->hide if $progress;
- }
- $w->set($msg);
- } elsif ($total) {
- if ($progress) {
- $progress->set_fraction($current / $total);
- $progress->show;
- $displayed = 0;
- mygtk2::flush() while !$displayed;
- } else {
- $w->set([ $last_msg, "$current / $total" ]);
- }
+ $w->set($last_msg = $msg);
+ }
+ if ($total) {
+ $w or internal_error('You must first give some text to display');
+ $w->set(join("\n", $last_msg, "$current / $total"));
}
};
}
@@ -544,27 +628,16 @@ sub helper_separator_tree_to_tree {
}
-sub interactive_help_has_id {
- my ($_o, $id) = @_;
- exists $help::{$id};
-}
-
-sub interactive_help_get_id {
- my ($_o, @l) = @_;
- @l = map {
- join("\n\n", map { s/\n/ /mg; $_ } split("\n\n", translate($help::{$_}->())));
- } grep { exists $help::{$_} } @l;
- join("\n\n\n", @l);
-}
-
sub interactive_help_sub_get_id {
my ($o, $id) = @_;
- $o->interactive_help_has_id($id) && sub { $o->interactive_help_get_id($id) };
+ eval { $o->interactive_help_has_id($id) }
+ && sub { $o->interactive_help_get_id($id) };
}
sub interactive_help_sub_display_id {
my ($o, $id) = @_;
- $o->interactive_help_has_id($id) && sub { $o->ask_warn(N("Help"), $o->interactive_help_get_id($id)) };
+ eval { $o->interactive_help_has_id($id) }
+ && sub { $o->ask_warn(N("Help"), $o->interactive_help_get_id($id)) };
}
1;
diff --git a/perl-install/interactive/curses.pm b/perl-install/interactive/curses.pm
new file mode 100644
index 000000000..b8da3c29a
--- /dev/null
+++ b/perl-install/interactive/curses.pm
@@ -0,0 +1,591 @@
+# implementer tree
+
+# to debug, use something like
+# PERLDB_OPTS=TTY=`tty` LC_ALL=fr_FR.UTF-8 xterm -geometry 80x25 -e sh -c 'DISPLAY= perl -d t.pl'
+
+package interactive::curses; # $Id$
+
+use diagnostics;
+use strict;
+use vars qw(@ISA);
+
+@ISA = qw(interactive);
+
+use interactive;
+use common;
+use log;
+use Curses::UI;
+
+my $SAVEERR;
+my $stderr_file = "/tmp/curses-stderr.$$";
+my $padleft = 1;
+my $padright = 1;
+my $indent = 1;
+my $cui;
+
+sub new {
+ my ($class) = @_;
+ if ($::isInstall && !$::local_install) {
+ system('unicode_start'); #- do not use run_program, we must do it on current console
+ }
+ open $SAVEERR, ">&STDERR";
+ open STDERR, ">", common::secured_file($stderr_file);
+
+ $cui ||= Curses::UI->new('-color_support' => 1);
+ bless { cui => $cui }, $class;
+}
+
+sub enter_console { &suspend }
+sub leave_console { &end }
+sub suspend { Curses::UI->leave_curses }
+sub resume { Curses::UI->reset_curses }
+sub end { &suspend; print $SAVEERR $_ foreach cat_($stderr_file); unlink $stderr_file }
+sub exit { end(); CORE::exit($_[1] || 0) }
+END { end() }
+
+sub _messages {
+ my ($width, @messages) = @_;
+ warp_text(join("\n", @messages), $width);
+}
+
+sub _enable_disable {
+ my ($w, $disabled) = @_;
+
+ if ($disabled ? $w->{'-is-disabled'} : !$w->{'-is-disabled'}) {
+ return;
+ }
+ $w->{'-is-disabled'} = $disabled;
+
+ if ($disabled) {
+ add2hash_($w, { '-was-focusable' => $w->focusable, '-was-fg' => $w->{'-fg'}, '-was-bfg' => $w->{'-bfg'} });
+ $w->focusable(0);
+ $w->{'-fg'} = $w->{'-bfg'} = 'blue';
+ } else {
+ $w->focusable($w->{'-was-focusable'});
+ $w->{'-fg'} = $w->{'-was-fg'};
+ $w->{'-bfg'} = $w->{'-was-bfg'};
+ }
+ $w->intellidraw;
+}
+
+sub filter_widget {
+ my ($e) = @_;
+
+ if ($e->{title} || $e->{type} eq 'expander') {
+ $e->{no_indent} = 1;
+ }
+
+ $e->{type} = 'list' if $e->{type} =~ /iconlist|treelist/;
+
+ #- combo does not allow modifications
+ $e->{type} = 'entry' if $e->{type} eq 'combo' && !$e->{not_edit};
+
+ $e->{formatted_list} = [ map { may_apply($e->{format}, $_) } @{$e->{list}} ];
+
+ $e->{default_curses} ||= delete $e->{curses};
+}
+sub filter_widgets {
+ my ($l) = @_;
+
+ filter_widget($_) foreach @$l;
+
+ map {
+ if (@$_ > 1) {
+ my $e = { type => 'checkboxes', label => $_->[0]{label}, val => \ (my $_ignored),
+ list => [ map { $_->{text} } @$_ ], children => $_ };
+ filter_widget($e);
+ $e;
+ } else {
+ @$_;
+ }
+ } common::group_by { !$_[0]{disabled} &&
+ $_[0]{type} eq 'bool' && $_[1]{type} eq 'bool'
+ && !$_[1]{label} } @$l;
+}
+
+
+sub heights {
+ my ($best, @fallbacks) = @_;
+ join(',', $best, grep { $_ < $best } @fallbacks);
+}
+
+sub entry_height {
+ my ($e) = @_;
+ to_int(max($e->{curses}{'-height'}, $e->{label_height} || 0));
+}
+
+sub compute_label_size {
+ my ($e, $available_width, $o_fixed_width) = @_;
+
+ $e->{label} or return;
+
+ my @text = _messages(min(80, $o_fixed_width || $available_width), $e->{label});
+ $e->{label_text_wrapped} = join("\n", @text);
+ $e->{label_height} = int(@text);
+ $e->{label_width} = $o_fixed_width || max(map { length } @text);
+}
+sub compute_label_sizes {
+ my ($cui, $wanted_widgets) = @_;
+
+ my $available_width = $cui->{'-width'} - 4;
+
+ foreach (@$wanted_widgets) {
+ compute_label_size($_, $available_width);
+ }
+}
+
+sub compute_size {
+ my ($e, $previous_e, $available_width, $o_labels_width) = @_;
+
+ {
+ my %c = %{$e->{default_curses} || {}};
+ $e->{curses} = \%c;
+ }
+ #- if $o_labels_width is given, it will be used
+ compute_label_size($e, $available_width, $o_labels_width);
+ $e->{curses}{'-x'} ||=
+ $previous_e && $previous_e->{same_line} ? 1 + $previous_e->{curses}{'-x'} + $previous_e->{curses}{'-width'} :
+ $e->{no_indent} ? $padleft :
+ $padleft + $indent + ($e->{label_width} ? $e->{label_width} + 1 : 0);
+
+ my $width_avail = $available_width - $e->{curses}{'-x'};
+
+ if ($e->{type} eq 'bool') {
+ my $indent = length("[X] ");
+ my @text = _messages($width_avail - $indent, $e->{text} || '');
+ $e->{curses}{'-height'} ||= heights(int(@text), 4);
+ $e->{curses}{'-width'} ||= max(map { length } @text) + $indent + 1;
+ $e->{curses}{'-label'} = join("\n", @text);
+ } elsif ($e->{type} eq 'combo') {
+ $e->{curses}{'-height'} ||= 1;
+ $e->{curses}{'-width'} ||= max(map { length } @{$e->{formatted_list}}) + 3;
+ } elsif ($e->{type} eq 'checkboxes') {
+ $e->{curses}{'-height'} ||= heights(map { $_ + 2 } int(@{$e->{formatted_list}}), 10, 4);
+ $e->{curses}{'-width'} ||= max(map { length } @{$e->{formatted_list}}) + 7;
+ } elsif ($e->{type} =~ /list/) {
+ $e->{curses}{'-height'} ||= heights(map { $_ + 2 } int(@{$e->{formatted_list}}), 5, 4);
+ $e->{curses}{'-width'} ||= max(map { length } @{$e->{formatted_list}}) + 3;
+ } elsif ($e->{type} eq 'button') {
+ my $s = sprintf('< %s >', may_apply($e->{format}, ${$e->{val}}));
+ $e->{curses}{'-width'} ||= length($s);
+ } elsif ($e->{type} eq 'expander') {
+ $e->{curses}{'-width'} ||= length("<+> $e->{text}");
+ } elsif ($e->{type} eq 'text' || $e->{type} eq 'label' || $e->{type} eq 'only_label') {
+ my @text = _messages(min(80, $width_avail - 1), ${$e->{val}}); #- -1 because of the scrollbar
+ $e->{curses}{'-focusable'} = 0;
+ $e->{curses}{'-height'} ||= heights(int(@text), 10, 4);
+ $e->{curses}{'-width'} ||= 1 + max(map { length } @text);
+ } else {
+ $e->{curses}{'-width'} ||= 20;
+ }
+ $e->{curses}{'-height'} ||= 1;
+
+}
+
+sub compute_sizes {
+ my ($cui, $wanted_widgets, $o_labels_width, $b_first_time) = @_;
+
+ my ($available_width, $available_height) = ($cui->{'-width'} - 2, $cui->{'-height'} - 2);
+
+ my $previous;
+ foreach (@$wanted_widgets) {
+ compute_size($_, $previous, $available_width, $o_labels_width);
+ $previous = $_;
+ }
+
+ my $width = max(map { $_->{curses}{'-x'} + $_->{curses}{'-width'} } @$wanted_widgets);
+ if ($width > $available_width) {
+ log::l("oops, could not fit... (width $width > $available_width)\n");
+ if ($o_labels_width && $b_first_time) {
+ log::l("retrying without aligning entries");
+ return compute_sizes($cui, $wanted_widgets);
+ } elsif (!$o_labels_width) {
+ my $width_no_labels = 4 + max(map { $_->{label} ? $_->{curses}{'-width'} : 0 } @$wanted_widgets);
+ if ($width_no_labels < $available_width) {
+ #- trying to force a smaller labels width
+ log::l("retrying forcing a smaller size for labels ($available_width - $width_no_labels)");
+ return compute_sizes($cui, $wanted_widgets, $available_width - $width_no_labels);
+ } else {
+ log::l("going on even if labels are too wide ($width_no_labels >= $available_width");
+ }
+ } else {
+ log::l("going on even if labels can't fit forced to $o_labels_width ($width < $available_width)");
+ }
+ }
+ my $height;
+ my $i = @$wanted_widgets;
+ retry: while (1) {
+ $height = sum(map { entry_height($_) } grep { !$_->{same_line} } @$wanted_widgets) + 1;
+ $height > $available_height or last;
+ while ($i--) {
+ if ($wanted_widgets->[$i]{curses}{'-height'} =~ s/\d+,//) {
+#- warn "retring after modifying $wanted_widgets->[$i]{type}\n";
+ if ($wanted_widgets->[$i]{type} eq 'text') {
+ $wanted_widgets->[$i]{curses}{'-vscrollbar'} = 1;
+ $wanted_widgets->[$i]{curses}{'-focusable'} = 1;
+ }
+ goto retry;
+ }
+ }
+ log::l("oops, could not fit... (height $height > $available_height)\n");
+ if ($o_labels_width) {
+ log::l("retrying without aligning entries");
+ compute_sizes($cui, $wanted_widgets);
+ } else {
+ #- hum, we need to use expander to split things
+ my $nb;
+ my $height = 5; #- room from buttons and expander
+ foreach (@$wanted_widgets) {
+ $height += to_int($_->{curses}{'-height'}) if !$_->{same_line};
+ $height <= $available_height or die "too_many $nb\n";
+ $nb++;
+ }
+ internal_error("should have died");
+ }
+ }
+
+ +{
+ '-x' => int(($available_width - $width) / 2 - 1),
+ '-y' => int(($available_height - $height) / 2 - 1),
+ '-width' => $width + 2,
+ '-height' => $height + 2,
+ };
+}
+
+sub compute_buttons {
+ my ($common, $validate) = @_;
+
+ my %buttons = (ok => $common->{ok}, cancel => $common->{cancel});
+ if (!defined $buttons{cancel} && !defined $buttons{ok}) {
+ $buttons{cancel} = $::isWizard && !$::Wizard_no_previous ? N("Previous") : N("Cancel");
+# $need_to_die = 1 if !($::isWizard && !$::Wizard_no_previous);
+ }
+ $buttons{ok} ||= $::isWizard ? ($::Wizard_finished ? N("Finish") : N("Next")) : N("Ok");
+
+ my @button_names = grep { $buttons{$_} } 'ok', 'cancel';
+ @button_names = reverse(@button_names) if $::isWizard;
+
+ my $same_line = @button_names;
+
+ my %buttons_e = map {
+ my $name = $_;
+ my $label = "< $buttons{$name} >";
+
+ $name =>
+ { type => 'button', val => \$buttons{$name}, same_line => --$same_line, no_indent => 1,
+ default_curses => { '-height' => 1, '-width' => length($label) },
+ clicked_may_quit => $name eq 'ok' ? $validate : sub { '0 but true' },
+ };
+ } @button_names;
+
+ $buttons_e{$common->{focus_cancel} ? 'cancel' : 'ok'}{focus} = sub { 1 };
+ $buttons_e{ok}{disabled} = $common->{ok_disabled} if $common->{ok_disabled};
+
+ map { $buttons_e{$_} } @button_names;
+}
+
+sub create_widget {
+ my ($cui, $win, $e, $y, $changed, $focus_out) = @_;
+
+ my $onchange = sub {
+ my ($f) = @_;
+ sub {
+ ${$e->{val}} = $f->();
+ $changed->() if $changed;
+ };
+ };
+
+ #- take the best remaining proposed height
+ $e->{curses}{'-height'} = to_int($e->{curses}{'-height'});
+
+ my %options = ('-y' => $y, %{$e->{curses}});
+
+ if ($e->{label}) {
+ $e->{label_w} = $win->add(undef,
+ $e->{label_height} <= 1 ? 'Label' :
+ ('TextViewer',
+ '-width' => $e->{label_width},
+ '-focusable' => 0,
+ '-height' => $e->{label_height}),
+ '-text' => $e->{label_text_wrapped},
+ '-y' => $options{'-y'}, '-x' => $padleft + 1,
+ );
+ }
+
+ if (!$e->{same_line}) {
+ delete $options{'-width'};
+ $options{'-padright'} = $padright;
+ }
+ $options{'-onblur'} = $focus_out if $focus_out;
+
+ my ($w, $set);
+ if ($e->{type} eq 'bool') {
+ $w = $win->add(
+ undef, 'Checkbox',
+ '-checked' => ${$e->{val}},
+ '-onchange' => $onchange->(sub { $w->get }),
+ %options);
+ $set = sub { my $meth = $_[0] ? 'check' : 'uncheck'; $w->$meth; $w->intellidraw };
+ } elsif ($e->{type} eq 'expander') {
+ my $toggle_s = '<+> ';
+ $e->{label_w} = $win->add(undef, 'Label', '-bold' => 1, '-text' => $toggle_s, %options);
+ $options{'-x'} += length($toggle_s);
+ $w = $win->add(undef, 'Buttonbox', '-buttons' => [ {
+ '-label' => $e->{text},
+ '-onpress' => sub {
+ my $common = { ok => "Close", cancel => '', messages => [ if_($e->{message}, $e->{message}) ] };
+ ask_fromW_($cui, $common, $e->{children});
+ },
+ } ], %options);
+ } elsif ($e->{type} eq 'button') {
+ my $clicked_may_quit = delete $options{clicked_may_quit};
+ $w = $win->add(undef, 'Buttonbox', '-buttons' => [ {
+ '-onpress' => $clicked_may_quit || sub { 1 },
+ } ], %options);
+ $w->set_binding('focus-up', Curses::KEY_LEFT());
+ $w->set_binding('focus-down', Curses::KEY_RIGHT());
+ $set = sub { $w->set_label(0, sprintf('< %s >', may_apply($e->{format}, $_[0]))) };
+ } elsif ($e->{type} eq 'list' || $e->{type} eq 'combo') {
+ $w = $win->add(undef, $e->{type} eq 'combo' ? 'Popupmenu' : 'Listbox',
+ '-values' => $e->{formatted_list},
+ '-onchange' => $onchange->(sub { $e->{list}[$w->id] }),
+ if_($e->{type} eq 'list',
+ '-vscrollbar' => 1,
+ '-onselchange' => sub {
+ #- we don't want selection AND active, so ensuring they are the same
+ $w->id == $w->get_active_id or $w->set_selection($w->get_active_id);
+ }),
+ %options);
+ $set = sub {
+ my ($val) = @_;
+ my $s = may_apply($e->{format}, $val);
+ eval {
+ my $id = find_index { $s eq $_ } @{$e->{formatted_list}};
+ $w->set_selection($id);
+ if ($w->can('set_active_id')) {
+ $w->set_active_id($id);
+ $w->intellidraw;
+ }
+ };
+ };
+ } elsif ($e->{type} eq 'checkboxes') {
+ my @selection;
+ $w = $win->add(undef, 'Listbox',
+ '-values' => $e->{formatted_list},
+ '-vscrollbar' => 1,
+ '-multi' => 1,
+ '-onselchange' => sub {
+ my @new = $w->id;
+ my %ids = (
+ (map { $_ => 1 } difference2(\@new, \@selection)),
+ (map { $_ => 0 } difference2(\@selection, \@new)),
+ );
+ foreach (keys %ids) {
+ my $sub_e = $e->{children}[$_];
+ ${$sub_e->{val}} = $ids{$_};
+ $changed->() if $changed;
+ }
+ },
+ %options);
+ $set = sub {
+ @selection = map_index { if_(${$_->{val}}, $::i) } @{$e->{children}};
+ $w->set_selection(@selection);
+ };
+ } elsif ($e->{type} eq 'only_label' && $e->{curses}{'-height'} == 1) {
+ $w = $win->add(undef, 'Label', '-text' => ${$e->{val}},
+ if_($e->{title}, '-bold' => 1),
+ %options);
+ } elsif ($e->{type} eq 'label' && $e->{curses}{'-height'} == 1) {
+ $w = $win->add(undef, 'Label', %options);
+ $set = sub { $w->text($_[0] || '') };
+ } elsif ($e->{type} eq 'label' || $e->{type} eq 'only_label' || $e->{type} eq 'text') {
+ $w = $win->add(undef, 'TextViewer', %options);
+ $set = sub {
+ my ($text) = @_;
+ my $width = $w->{'-sw'} - ($w->{'-vscrollbar'} ? 1 : 0);
+ $w->text(join("\n", _messages($width, $text)));
+ };
+ } else {
+ $w = $win->add(undef, $e->{hidden} ? 'PasswordEntry' : 'TextEntry',
+ '-sbborder' => 1,
+ '-text' => '',
+ '-onchange' => $onchange->(sub { $w->text }),
+ %options);
+ $set = sub { $w->text($_[0] || '') };
+ }
+
+ $e->{w} = $w;
+ $e->{set} = $set || sub {};
+}
+
+sub create_widgets {
+ my ($cui, $win, $l) = @_;
+
+ my $ignore; #-to handle recursivity
+ my $set_all = sub {
+ $ignore = 1;
+ foreach my $e (@$l) {
+ $e->{set}->(${$e->{val}});
+ my $disabled = $e->{disabled} && $e->{disabled}();
+ _enable_disable($e->{w}, $disabled);
+ _enable_disable($e->{label_w}, $disabled) if $e->{label_w};
+ }
+ $ignore = 0;
+ };
+ my $sub_update = sub {
+ my ($f) = @_;
+ sub {
+ return if $ignore;
+ $f->() if $f;
+ $set_all->();
+ };
+ };
+
+ my $to_focus;
+ my $y = 1;
+ foreach (@$l) {
+ my $e = $_;
+
+ $e->{curses}{clicked_may_quit} = sub {
+ if (my $v = $e->{clicked_may_quit}()) {
+ die "exit_mainloop $v";
+ }
+ $set_all->();
+ } if $e->{clicked_may_quit};
+
+ create_widget($cui, $win, $e, $y, $sub_update->($e->{changed}), $sub_update->($e->{focus_out}));
+ $to_focus ||= $e if $e->{focus} && $e->{focus}->();
+ $y += entry_height($e) if !$e->{same_line};
+ }
+
+ ($to_focus || $l->[-1])->{w}->focus;
+
+ $set_all->();
+
+ $set_all;
+}
+
+sub all_entries {
+ my ($l) = @_;
+ map { $_, if_($_->{children}, @{$_->{children}}) } @$l;
+}
+
+sub ask_fromW {
+ my ($o, $common, $l) = @_;
+ ask_fromW_($o->{cui}, $common, $l);
+}
+
+sub ask_fromW_ {
+ my ($cui, $common, $l) = @_;
+
+ $l = [ filter_widgets($l) ];
+
+ my $set_all;
+ my $validate = sub {
+ my @all = all_entries($l);
+ my $e = find { $_->{validate} && !$_->{validate}->() } @all;
+ $e ||= $common->{validate} && !$common->{validate}() && $all[0];
+ if ($e) {
+ $set_all->();
+ $e->{w}->focus if $e->{w}; #- widget may not exist if it is inside an expander
+ }
+ !$e;
+ };
+
+ my @wanted_widgets = (
+ if_(@{$common->{messages}}, { type => 'text', val => \(join("\n", @{$common->{messages}}, ' ')) }),
+ @$l,
+ { type => 'label', val => \ (my $_ignore) },
+ compute_buttons($common, $validate),
+ );
+
+ compute_label_sizes($cui, $l);
+ my $labels_width = max(map { $_->{label_width} } @$l);
+ my $window_size;
+ eval { $window_size = compute_sizes($cui, \@wanted_widgets, $labels_width, 'first_time') } or do {
+ my ($nb) = $@ =~ /^too_many (\d+)$/ or die;
+ $nb -= 1; #- remove {messages}
+ $nb != @$l or internal_error("dead-loop detected");
+
+ my @l = (
+ (@$l)[0 .. $nb - 1],
+ { type => 'expander', text => N("More"), children => [ (@$l)[$nb .. $#$l] ] },
+ );
+ return ask_fromW_($cui, $common, \@l);
+ };
+
+ my $win = $cui->add(undef, 'Window',
+ %$window_size,
+ '-border' => 1,
+ '-bfg' => 'blue', '-tfg' => 'yellow', '-tbg' => 'blue', '-titlereverse' => 0,
+ '-focusable' => 1,
+ if_($common->{title}, '-title' => $common->{title}),
+ );
+
+ $set_all = create_widgets($cui, $win, \@wanted_widgets);
+
+ $win->set_binding(\&exit, "\cC");
+ $win->set_binding(sub { suspend(); kill 19, $$ }, "\cZ");
+
+ $cui->focus($win, 1);
+ eval { $win->modalfocus };
+
+ my $err = $@;
+ $cui->delete_object($win);
+ $cui->draw;
+
+ my ($v) = $err =~ /^exit_mainloop (\S*)/ or die $err;
+
+ $v eq '0 but true' ? 0 : $v;
+}
+
+
+sub wait_messageW {
+ my ($o, $title, $message, $message_modifiable) = @_;
+
+ my $w = { title => $title, message_header => $message };
+ wait_message_nextW($o, $message_modifiable, $w);
+ $w;
+}
+
+sub wait_message_nextW {
+ my ($o, $message, $w) = @_;
+
+ wait_message_endW($o, $w) if $w->{w};
+ my $msg = join("\n", _messages($o->{cui}{'-width'}, $w->{message_header} . "\n" . $message));
+ $w->{w} = $o->{cui}->add(undef, 'Dialog::Status', '-title' => $w->{title}, '-message' => $msg);
+ $w->{w}->draw;
+}
+sub wait_message_endW {
+ my ($o, $w) = @_;
+ $o->{cui}->delete_object($w->{w});
+ $o->{cui}->draw;
+}
+
+sub wait_message_with_progress_bar {
+ my ($o, $o_title) = @_;
+
+ my $w = {};
+ my $b = before_leaving { $o->wait_message_endW($w) };
+ $b, sub {
+ my ($msg, $current, $total) = @_;
+ if (!$w->{w} || $w->{total} != $total) {
+ $o->{cui}->delete_object($w->{w}) if $w->{w};
+
+ $w->{w} = $o->{cui}->add(undef,
+ $total ? ('Dialog::Progress', '-max' => $total) : 'Dialog::Status',
+ if_($o_title, '-title' => $o_title),
+ '-message' => $msg || $w->{msg});
+ $w->{total} = $total;
+ $w->{msg} = $msg;
+ } elsif ($msg) {
+ $w->{w}->message($msg);
+ }
+ if ($current) {
+ $w->{w}->pos($current);
+ }
+ $o->{cui}->draw;
+ };
+}
+
+1;
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm
index e024fc54f..335bdda41 100644
--- a/perl-install/interactive/gtk.pm
+++ b/perl-install/interactive/gtk.pm
@@ -15,11 +15,16 @@ use Gtk2::Gdk::Keysyms;
my $forgetTime = 1000; #- in milli-seconds
sub new {
- ($::windowwidth, $::windowheight) = gtkroot()->get_size if !$::isInstall;
- goto &interactive::new;
+ my $w = &interactive::new;
+ ($w->{windowwidth}, $w->{windowheight}) = gtkroot()->get_size if !$::isInstall;
+ $w;
}
sub enter_console { my ($o) = @_; $o->{suspended} = common::setVirtual(1) }
sub leave_console { my ($o) = @_; common::setVirtual(delete $o->{suspended}) }
+sub adapt_markup {
+ #- nothing needed, the default markup is gtk2's
+ my ($_o, $s) = @_; return $s;
+}
sub exit { ugtk2::exit(@_) }
@@ -38,7 +43,7 @@ sub ask_fileW {
}
sub create_boxradio {
- my ($e, $may_go_to_next, $changed, $double_click) = @_;
+ my ($e, $onchange_f, $double_click) = @_;
my $boxradio = gtkpack2__(Gtk2::VBox->new(0, 0),
my @radios = gtkradio('', @{$e->{formatted_list}}));
@@ -47,13 +52,11 @@ sub create_boxradio {
my ($txt, $w) = @_;
$w->signal_connect(button_press_event => $double_click) if $double_click;
- $w->signal_connect(key_press_event => sub {
- &$may_go_to_next;
+ $w->signal_connect(key_press_event => $e->{may_go_to_next});
+ $w->signal_connect(clicked => sub {
+ ${$e->{val}} ne $txt or return;
+ $onchange_f->(sub { $txt });
});
- $w->signal_connect(clicked => sub {
- ${$e->{val}} = $txt;
- &$changed;
- });
if ($e->{help}) {
gtkset_tip($tips, $w,
ref($e->{help}) eq 'HASH' ? $e->{help}{$txt} :
@@ -71,7 +74,7 @@ sub create_boxradio {
}
sub create_treeview_list {
- my ($e, $may_go_to_next, $changed, $double_click) = @_;
+ my ($e, $onchange_f, $double_click) = @_;
my $curr;
my $list = Gtk2::ListStore->new("Glib::String");
@@ -97,7 +100,7 @@ sub create_treeview_list {
Glib::Source->remove($timeout) if $timeout; $timeout = '';
if ($event->keyval >= 0x100) {
- &$may_go_to_next if member($event->keyval, ($Gtk2::Gdk::Keysyms{Return}, $Gtk2::Gdk::Keysyms{KP_Enter}));
+ $e->{may_go_to_next}(), return 1 if member($event->keyval, ($Gtk2::Gdk::Keysyms{Return}, $Gtk2::Gdk::Keysyms{KP_Enter}));
$starting_word = '' if !member($event->keyval, ($Gtk2::Gdk::Keysyms{Control_L}, $Gtk2::Gdk::Keysyms{Control_R}));
} else {
if (member('control-mask', @{$event->state})) {
@@ -105,7 +108,7 @@ sub create_treeview_list {
$start_reg and $start_reg = '', return 1;
$curr++;
} else {
- &$may_go_to_next if $c eq ' ';
+ $e->{may_go_to_next}(), return 1 if $c eq ' ';
$curr++ if $starting_word eq '' || $starting_word eq $c;
$starting_word .= $c unless $starting_word eq $c;
@@ -132,9 +135,10 @@ sub create_treeview_list {
$list_tv->get_selection->signal_connect(changed => sub {
my ($model, $iter) = $_[0]->get_selected;
$model && $iter or return;
- my $row = $model->get_path_str($iter);
- ${$e->{val}} = $e->{list}[$curr = $row];
- &$changed;
+ $onchange_f->(sub {
+ my $row = $model->get_path_str($iter);
+ $e->{list}[$curr = $row];
+ });
});
$list_tv->signal_connect(button_press_event => $double_click) if $double_click;
@@ -193,7 +197,7 @@ sub __create_tree_model {
}
sub create_treeview_tree {
- my ($e, $may_go_to_next, $changed, $double_click, $tree_expanded) = @_;
+ my ($e, $onchange_f, $double_click) = @_;
my $tree_model = __create_tree_model($e);
my $tree = Gtk2::TreeView->new_with_model($tree_model);
@@ -220,7 +224,7 @@ sub create_treeview_tree {
};
my $curr = $tree_model->get_iter_first; #- default value
- $tree->expand_all if $tree_expanded;
+ $tree->expand_all if $e->{tree_expanded};
my $selected_via_click;
@@ -230,10 +234,11 @@ sub create_treeview_tree {
undef $curr if ref $curr;
my $path = $tree_model->get_path($curr = $iter);
if (!$tree_model->iter_has_child($iter)) {
- my $path_str = $path->to_string;
- my $i = find_index { $path_str eq $_ } @{$tree_model->{path_str_list}};
- ${$e->{val}} = $e->{list}[$i];
- &$changed;
+ $onchange_f->(sub {
+ my $path_str = $path->to_string;
+ my $i = find_index { $path_str eq $_ } @{$tree_model->{path_str_list}};
+ $e->{list}[$i];
+ });
} else {
$tree->expand_row($path, 0) if $selected_via_click;
}
@@ -246,7 +251,7 @@ sub create_treeview_tree {
$tree->toggle_expansion($tree_model->get_path($curr), 0);
} else {
- &$may_go_to_next;
+ &{$e->{may_go_to_next}};
}
};
@@ -259,7 +264,7 @@ sub create_treeview_tree {
Glib::Source->remove($timeout) if $timeout; $timeout = '';
if ($event->keyval >= 0x100) {
- &$toggle if member($event->keyval, ($Gtk2::Gdk::Keysyms{Return}, $Gtk2::Gdk::Keysyms{KP_Enter}));
+ &$toggle and return 1 if member($event->keyval, ($Gtk2::Gdk::Keysyms{Return}, $Gtk2::Gdk::Keysyms{KP_Enter}));
$starting_word = '' if !member($event->keyval, ($Gtk2::Gdk::Keysyms{Control_L}, $Gtk2::Gdk::Keysyms{Control_R}));
} else {
my $next;
@@ -268,7 +273,7 @@ sub create_treeview_tree {
$start_reg and $start_reg = '', return 0;
$next = 1;
} else {
- &$toggle if $c eq ' ';
+ &$toggle and return 1 if $c eq ' ';
$next = 1 if $starting_word eq '' || $starting_word eq $c;
$starting_word .= $c unless $starting_word eq $c;
}
@@ -322,50 +327,6 @@ sub create_treeview_tree {
};
}
-sub create_list {
- my ($e, $may_go_to_next, $changed, $double_click) = @_;
- my $l = $e->{list};
- my $list = Gtk2::List->new;
- $list->set_selection_mode('browse');
-
- my $select = sub {
- $list->select_item($_[0]);
- };
-
- my $tips = Gtk2::Tooltips->new;
- each_index {
- my $item = Gtk2::ListItem->new(may_apply($e->{format}, $_));
- $item->signal_connect(key_press_event => sub {
- my ($_w, $event) = @_;
- my $c = chr($event->keyval & 0xff);
- &$may_go_to_next if $event->keyval < 0x100 ? $c eq ' ' : $c eq "\r" || $c eq "\x8d";
- 0;
- });
- $list->append_items(gtkshow($item));
- if ($e->{help}) {
- gtkset_tip($tips, $item,
- ref($e->{help}) eq 'HASH' ? $e->{help}{$_} :
- ref($e->{help}) eq 'CODE' ? $e->{help}($_) : $e->{help});
- }
- $item->grab_focus if ${$e->{val}} && $_ eq ${$e->{val}};
- } @$l;
-
- #- signal_connect'ed after append_items otherwise it is called and destroys the default value
- $list->signal_connect(select_child => sub {
- my ($_w, $row) = @_;
- ${$e->{val}} = $l->[$list->child_position($row)];
- &$changed;
- });
- $list->signal_connect(button_press_event => $double_click) if $double_click;
-
- $list, sub {
- my ($v) = @_;
- eval {
- $select->(find_index { $_ eq $v } @$l);
- };
- };
-}
-
#- $actions is a ref list of $action
#- $action is a { kind => $kind, action => sub { ... }, button => Gtk2::Button->new(...) }
#- where $kind is one of '', 'modify', 'remove', 'add'
@@ -389,365 +350,447 @@ sub add_modify_remove_action {
1;
}
-sub add_modify_remove_sensitive {
- my ($buttons, $e) = @_;
- $_->{button}->set_sensitive(@{$e->{list}} != ()) foreach
- grep { member($_->{kind}, 'modify', 'remove') } @$buttons;
+sub create_widget {
+ my ($o, $e, $onchange_f, $update, $ignore_ref) = @_;
+
+ my $onchange = sub {
+ my ($f) = @_;
+ sub { $onchange_f->($f, @_) };
+ };
+
+ my ($w, $real_w, $focus_w, $set);
+ if ($e->{type} eq 'iconlist') {
+ $w = Gtk2::Button->new;
+ $set = sub {
+ gtkdestroy($e->{icon});
+ my $f = $e->{icon2f}->($_[0]);
+ $e->{icon} = -e $f ?
+ gtkcreate_img($f) :
+ Gtk2::WrappedLabel->new(may_apply($e->{format}, $_[0]));
+ $w->add(gtkshow($e->{icon}));
+ };
+ $w->signal_connect(clicked => sub {
+ $onchange_f->(sub { next_val_in_array(${$e->{val}}, $e->{list}) });
+ $set->(${$e->{val}});
+ });
+ $real_w = gtkpack_(Gtk2::HBox->new(0,10), 1, Gtk2::HBox->new(0,0), 0, $w, 1, Gtk2::HBox->new(0,0));
+ } elsif ($e->{type} eq 'bool') {
+ if ($e->{image}) {
+ $w = ugtk2::gtkadd(Gtk2::CheckButton->new, gtkshow(gtkcreate_img($e->{image})));
+ } else {
+ #- warn "\"text\" member should have been used instead of \"label\" one at:\n", common::backtrace(), "\n" if $e->{label} && !$e->{text};
+ $w = Gtk2::CheckButton->new_with_label($e->{text});
+ }
+ $w->signal_connect(clicked => $onchange->(sub { $w->get_active }));
+ $set = sub { $w->set_active($_[0]) };
+ } elsif ($e->{type} eq 'only_label') {
+ $w = $e->{title} ?
+ gtknew('Title2', label => escape_text_for_TextView_markup_format(${$e->{val}})) :
+ gtknew('Label_Left', line_wrap => 1, text_markup => ${$e->{val}});
+ } elsif ($e->{type} eq 'label') {
+ $w = gtknew('WrappedLabel', text_markup => ${$e->{val}});
+ $set = sub { $w->set($_[0]) };
+ } elsif ($e->{type} eq 'empty') {
+ $w = gtknew('HBox', height => $e->{height});
+ } elsif ($e->{type} eq 'button') {
+ $w = Gtk2::Button->new_with_label('');
+ $w->signal_connect(clicked => $e->{clicked_may_quit_cooked});
+ $set = sub { $w->child->set_label(may_apply($e->{format}, $_[0])) };
+ } elsif ($e->{type} eq 'range') {
+ my $adj = Gtk2::Adjustment->new(${$e->{val}}, $e->{min}, $e->{max} + ($e->{SpinButton} ? 0 : 1), 1, ($e->{max} - $e->{min}) / 10, 1);
+ $w = $e->{SpinButton} ? Gtk2::SpinButton->new($adj, 10, 0) : Gtk2::HScale->new($adj);
+ $w->set_size_request($e->{SpinButton} ? 100 : 200, -1);
+ $w->set_digits(0);
+ $adj->signal_connect(value_changed => $onchange->(sub { $adj->get_value }));
+ $w->signal_connect(key_press_event => $e->{may_go_to_next});
+ $set = sub { $adj->set_value($_[0]) };
+ } elsif ($e->{type} eq 'expander') {
+ $e->{grow} = 'fill';
+ my $children = [ if_($e->{message}, { type => 'only_label', no_indent => 1, val => \$e->{message} }), @{$e->{children}} ];
+ my $box = create_widgets_block($o, $children, $update, $ignore_ref);
+ $w = gtknew('Expander', text => $e->{text}, child => $box);
+ } elsif ($e->{type} =~ /list/) {
+
+ $e->{formatted_list} = [ map { may_apply($e->{format}, $_) } @{$e->{list}} ];
+
+ if (my $actions = $e->{add_modify_remove}) {
+ my @buttons = map {
+ { kind => lc $_, action => $actions->{$_}, button => Gtk2::Button->new(translate($_)) };
+ } N_("Add"), N_("Modify"), N_("Remove");
+ my $modify = find { $_->{kind} eq 'modify' } @buttons;
+
+ my $do_action = sub {
+ my ($button) = @_;
+ add_modify_remove_action($button, \@buttons, $e, $w) and $update->();
+ };
+
+ ($w, $set, $focus_w) = create_treeview_list($e, $onchange_f,
+ sub { $do_action->($modify) if $_[1]->type =~ /^2/ });
+
+ foreach my $button (@buttons) {
+ $button->{button}->signal_connect(clicked => sub { $do_action->($button) });
+ }
+ add_modify_remove_sensitive(\@buttons, $e);
+
+ $real_w = gtkpack_(Gtk2::HBox->new(0,0),
+ 1, create_scrolled_window($w),
+ 0, gtkpack__(Gtk2::VBox->new(0,0), map { $_->{button} } @buttons));
+ $e->{grow} = 'expand';
+ } else {
+ my $use_boxradio = exists $e->{gtk}{use_boxradio} ? $e->{gtk}{use_boxradio} : @{$e->{list}} <= 8;
+
+ if ($e->{help} || $use_boxradio && $e->{type} ne 'treelist') {
+ #- used only when needed, as key bindings are dropped by List (ListStore does not seems to accepts Tooltips).
+ ($w, $set, $focus_w) = create_boxradio($e, $onchange_f, $e->{quit_if_double_click_cooked});
+ } elsif ($e->{type} eq 'treelist') {
+ ($w, $set) = create_treeview_tree($e, $onchange_f, $e->{quit_if_double_click_cooked});
+ } else {
+ ($w, $set, $focus_w) = create_treeview_list($e, $onchange_f, $e->{quit_if_double_click_cooked});
+ }
+ if (@{$e->{list}} > 10 || $e->{gtk}{use_scrolling}) {
+ $real_w = create_scrolled_window($w);
+ $e->{grow} = 'expand';
+ }
+ }
+ } else {
+ if ($e->{type} eq "combo") {
+ my $model;
+
+ my @formatted_list = map { may_apply($e->{format}, $_) } @{$e->{list}};
+ $e->{formatted_list} = \@formatted_list;
+
+ my @l = sort { $b <=> $a } map { length } @formatted_list;
+ my $width = $l[@l / 16]; # take the third octile (think quartile)
+
+ if (!$e->{separator}) {
+ if ($e->{not_edit} && $width < 160) { #- ComboBoxes do not have an horizontal scroll-bar. This can cause havoc for long strings (eg: diskdrake Create dialog box in expert mode)
+ $w = Gtk2::ComboBox->new_text;
+ $w->set_wrap_width($e->{gtk}{wrap_width}) if exists $e->{gtk}{wrap_width};
+ } else {
+ $w = Gtk2::Combo->new;
+ $w->set_use_arrows_always(1);
+ $w->entry->set_editable(!$e->{not_edit});
+ $w->disable_activate;
+ }
+ $w->set_popdown_strings(@formatted_list);
+ $w->set_text(ref($e->{val}) ? may_apply($e->{format}, ${$e->{val}}) : $formatted_list[0]) if $w->isa('Gtk2::ComboBox');
+ } else {
+ $model = __create_tree_model($e);
+ $w = Gtk2::ComboBox->new_with_model($model);
+
+ $w->pack_start(my $texrender = Gtk2::CellRendererText->new, 0);
+ $w->add_attribute($texrender, text => 0);
+ if ($e->{image2f}) {
+ $w->pack_start(my $pixrender = Gtk2::CellRendererPixbuf->new, 0);
+ $w->add_attribute($pixrender, pixbuf => 1);
+ }
+ }
+ ($real_w, $w) = ($w, $w->entry);
+
+ my $get = sub {
+ my $i = $model ? do {
+ my $s = $model->get_string_from_iter($w->get_active_iter);
+ eval { find_index { $s eq $_ } @{$model->{path_str_list}} };
+ } : do {
+ my $s = $w->get_text;
+ eval { find_index { $s eq $_ } @formatted_list };
+ };
+ defined $i ? $e->{list}[$i] : $w->get_text;
+ };
+ if ($real_w->isa('Gtk2::Combo')) {
+ #- FIXME workaround gtk suckiness (set_text generates two 'change' signals, one when removing the whole, one for inserting the replacement..)
+ my $idle;
+ $w->signal_connect(changed => sub {
+ return if $$ignore_ref;
+ $idle ||= Glib::Idle->add(sub { undef $idle; $onchange_f->($get); 0 });
+ });
+ } else {
+ $w->signal_connect(changed => $onchange->($get));
+ }
+
+ $set = sub {
+ my $s = may_apply($e->{format}, $_[0]);
+ if ($model) {
+ eval {
+ my $i = find_index { $s eq $_ } @{$e->{formatted_list}};
+ my $path_str = $model->{path_str_list}[$i];
+ $w->set_active_iter($model->get_iter_from_string($path_str));
+ };
+ } else {
+ $w->set_text($s) if $s ne $w->get_text && $_[0] ne $w->get_text;
+ }
+ };
+ } else {
+ $w = Gtk2::Entry->new;
+ $w->signal_connect(changed => $onchange->(sub { $w->get_text }));
+ $w->signal_connect(focus_in_event => sub { $w->select_region(0, -1) });
+ $w->signal_connect(focus_out_event => sub { $w->select_region(0, 0) });
+ $set = sub { $w->set_text($_[0]) if $_[0] ne $w->get_text };
+ if ($e->{type} eq 'file') {
+ my $button = gtksignal_connect(Gtk2::Button->new_from_stock('gtk-open'), clicked => sub {
+ my $file = $o->ask_filename({ title => $e->{label} });
+ $set->($file) if $file;
+ });
+ $real_w = gtkpack_(Gtk2::HBox->new(0,0), 1, $w, 0, $button);
+ }
+ }
+ $w->signal_connect(key_press_event => $e->{may_go_to_next});
+ $w->set_visibility(0) if $e->{hidden};
+ }
+
+ if (my $focus_out = $e->{focus_out}) {
+ $w->signal_connect(focus_out_event => sub { $update->($focus_out) });
+ }
+ $real_w ||= $w;
+
+ $e->{w} = $w;
+ $e->{real_w} = $real_w;
+ $e->{focus_w} = $focus_w || $w if $e->{type} ne 'empty';
+ $e->{set} = $set || sub {};
}
-sub ask_fromW {
- my ($o, $common, $l, $l2) = @_;
- my $ignore = 0; #-to handle recursivity
+sub all_entries {
+ my ($l) = @_;
+ map { $_, if_($_->{children}, @{$_->{children}}) } @$l;
+}
- my $mainw = ugtk2->new($common->{title}, %$o, modal => 1, if__($::main_window, transient => $::main_window), if_($common->{icon}, icon => $common->{icon}));
-
- #-the widgets
- my (@widgets, @widgets_always, @widgets_advanced, $advanced);
- my $tooltips = Gtk2::Tooltips->new;
- my $ok_clicked = sub {
- !$mainw->{ok} || $mainw->{ok}->get_property('sensitive') or return;
- $mainw->{retval} = 1;
- Gtk2->main_quit;
- };
+sub all_focusable_entries {
+ my ($l) = @_;
+ map { $_->{type} eq 'expander'
+ ? ($_->{w}->get_expanded ? all_focusable_entries($_->{children}) : ())
+ : $_;
+ } grep { $_->{focus_w} } @$l;
+}
+
+sub create_widgets_block {
+ my ($o, $l, $update, $ignore_ref) = @_;
+
+ my $label_sizegrp = Gtk2::SizeGroup->new('horizontal');
+
+ @$l = map_index {
+ if ($::i && ($_->{type} eq 'expander' || $_->{title})) {
+ ({ type => 'empty', height => 4 }, $_);
+ } else {
+ $_;
+ }
+ } @$l;
+
+ foreach my $e (@$l) {
+ my $onchange_f = sub {
+ my ($f, @para) = @_;
+ return if $$ignore_ref;
+ ${$e->{val}} = $f->(@para);
+ $update->($e->{changed});
+ };
+
+ create_widget($o, $e, $onchange_f, $update, $ignore_ref);
+
+ my $label_w;
+ if ($e->{label} || !$e->{no_indent}) {
+ $label_w = gtknew('Label_Left', text_markup => $e->{label} || '',
+ size_group => $label_sizegrp, alignment => [ 0, 0.5 ]);
+ }
+
+ $e->{real_w} = gtkpack_(Gtk2::HBox->new,
+ if_($e->{icon}, 0, eval { gtkcreate_img($e->{icon}) }),
+ if_($label_w, 0, $label_w),
+ (1, $e->{real_w}),
+ );
+ }
+ gtknew('VBox', children => [ map { $_->{grow} || 0, $_->{real_w} } @$l ]);
+}
+
+sub create_widgets {
+ my ($o, $common, $mainw, $l) = @_;
+
+ my $ignore = 0; #-to handle recursivity
my $set_all = sub {
$ignore = 1;
- $_->{set}->(${$_->{e}{val}}, $_) foreach @widgets_always, @widgets_advanced;
- $_->{real_w}->set_sensitive(!$_->{e}{disabled}()) foreach @widgets_always, @widgets_advanced;
- $mainw->{ok}->set_sensitive(!$common->{callbacks}{ok_disabled}()) if $common->{callbacks}{ok_disabled};
+ my @all = all_entries($l);
+ $_->{set}->(${$_->{val}}, $_) foreach @all; #- nb: the parameter "$_" is needed for create_boxradio
+ $_->{disabled} and $_->{real_w}->set_sensitive(!$_->{disabled}()) foreach @all;
+ $mainw->{ok}->set_sensitive(!$common->{ok_disabled}()) if $common->{ok_disabled};
$ignore = 0;
};
- my $get_all = sub {
- ${$_->{e}{val}} = $_->{get}->() foreach @widgets_always, @widgets_advanced;
- };
my $update = sub {
my ($f) = @_;
return if $ignore;
- $get_all->();
- $f->();
+ $f->() if $f;
$set_all->();
};
- my @label_sizegrp = map { Gtk2::SizeGroup->new('horizontal') } 0 .. 1;
- my @realw_sizegrp = map { Gtk2::SizeGroup->new('horizontal') } 0 .. 1;
+ my $ok_clicked = sub {
+ !$mainw->{ok} || $mainw->{ok}->get_property('sensitive') or return;
+ $mainw->{retval} = 1;
+ Gtk2->main_quit;
+ };
- my $create_widget = sub {
- my ($e, $ind) = @_;
+ my @all = all_entries($l);
+ foreach (@all) {
+ my $e = $_; #- for closures
- my $may_go_to_next = sub {
- my (undef, $event) = @_;
- if (!$event || ($event->keyval & 0x7f) == 0xd) {
- if ($ind == $#widgets) {
- @widgets == 1 ? $ok_clicked->() : $mainw->{ok}->grab_focus;
- } else {
- $widgets[$ind+1]{focus_w}->grab_focus;
- }
- return 1; #- prevent an action on the just grabbed focus
- }
- };
- my $changed = sub { $update->(sub { $common->{callbacks}{changed}($ind) }) };
+ if (@all == 1 || $e->{quit_if_double_click}) {
+ #- i'm the only one, double click means accepting
+ $e->{quit_if_double_click_cooked} = sub { $_[1]->type =~ /^2/ && $ok_clicked->() };
+ }
- my ($w, $real_w, $focus_w, $set, $get, $grow);
- if ($e->{type} eq 'iconlist') {
- $w = Gtk2::Button->new;
- $set = sub {
- gtkdestroy($e->{icon});
- my $f = $e->{icon2f}->($_[0]);
- $e->{icon} = -e $f ?
- gtkcreate_img($f) :
- Gtk2::WrappedLabel->new(may_apply($e->{format}, $_[0]));
- $w->add(gtkshow($e->{icon}));
- };
- $w->signal_connect(clicked => sub {
- $set->(${$e->{val}} = next_val_in_array(${$e->{val}}, $e->{list}));
- $changed->();
- });
- $real_w = gtkpack_(Gtk2::HBox->new(0,10), 1, Gtk2::HBox->new(0,0), 0, $w, 1, Gtk2::HBox->new(0,0));
- } elsif ($e->{type} eq 'bool') {
- if ($e->{image}) {
- $w = ugtk2::gtkadd(Gtk2::CheckButton->new, gtkshow(gtkcreate_img($e->{image})));
- } else {
-#- warn "\"text\" member should have been used instead of \"label\" one at:\n", common::backtrace(), "\n" if $e->{label} && !$e->{text};
- $w = Gtk2::CheckButton->new_with_label($e->{text});
- }
- $w->signal_connect(clicked => $changed);
- $set = sub { $w->set_active($_[0]) };
- $get = sub { $w->get_active };
- } elsif ($e->{type} eq 'label') {
- $w = Gtk2::WrappedLabel->new(${$e->{val}});
- $set = sub { $w->set($_[0]) };
- } elsif ($e->{type} eq 'button') {
- $w = Gtk2::Button->new_with_label('');
- $w->signal_connect(clicked => sub {
- $get_all->();
+ if ($e->{clicked_may_quit}) {
+ $e->{clicked_may_quit_cooked} = sub {
$mainw->{rwindow}->hide;
if (my $v = $e->{clicked_may_quit}()) {
$mainw->{retval} = $v;
Gtk2->main_quit;
}
$mainw->{rwindow}->show;
- $set_all->();
- });
- $set = sub { $w->child->set_label(may_apply($e->{format}, $_[0])) };
- } elsif ($e->{type} eq 'range') {
- my $want_scale = !$::expert;
- my $adj = Gtk2::Adjustment->new(${$e->{val}}, $e->{min}, $e->{max} + ($want_scale ? 1 : 0), 1, ($e->{max} - $e->{min}) / 10, 1);
- $adj->signal_connect(value_changed => $changed);
- $w = $want_scale ? Gtk2::HScale->new($adj) : Gtk2::SpinButton->new($adj, 10, 0);
- $w->set_size_request($want_scale ? 200 : 100, -1);
- $w->set_digits(0);
- $w->signal_connect(key_press_event => $may_go_to_next);
- $set = sub { $adj->set_value($_[0]) };
- $get = sub { $adj->get_value };
- } elsif ($e->{type} =~ /list/) {
-
- $e->{formatted_list} = [ map { may_apply($e->{format}, $_) } @{$e->{list}} ];
-
- if (my $actions = $e->{add_modify_remove}) {
- my @buttons = map {
- { kind => lc $_, action => $actions->{$_}, button => Gtk2::Button->new(translate($_)) };
- } N_("Add"), N_("Modify"), N_("Remove");
- my $modify = find { $_->{kind} eq 'modify' } @buttons;
-
- my $do_action = sub {
- my ($button) = @_;
- add_modify_remove_action($button, \@buttons, $e, $w) and $changed->();
- };
-
- ($w, $set, $focus_w) = create_treeview_list($e, $may_go_to_next, $changed,
- sub { $do_action->($modify) if $_[1]->type =~ /^2/ });
- $e->{saved_default_val} = ${$e->{val}};
+ $update->();
+ };
+ }
- foreach my $button (@buttons) {
- $button->{button}->signal_connect(clicked => sub { $do_action->($button) });
+ $e->{may_go_to_next} = sub {
+ my (undef, $event) = @_;
+ if (!$event || ($event->keyval & 0x7f) == 0xd) {
+ my @current_all = all_focusable_entries($l);
+ my $ind = eval { find_index { $_ == $e } @current_all };
+ if (my $e_ = $current_all[$ind+1]) {
+ $e_->{focus_w}->grab_focus;
+ } else {
+ @current_all == 1 ? $ok_clicked->() : $mainw->{ok}->grab_focus;
}
- add_modify_remove_sensitive(\@buttons, $e);
-
- $real_w = gtkpack_(Gtk2::HBox->new(0,0),
- 1, create_scrolled_window($w),
- 0, gtkpack__(Gtk2::VBox->new(0,0), map { $_->{button} } @buttons));
- $grow = 1;
+ 1; #- prevent an action on the just grabbed focus
} else {
+ 0;
+ }
+ };
+ }
- my $quit_if_double_click =
- #- i'm the only one, double click means accepting
- @$l == 1 || $e->{quit_if_double_click} ?
- sub { $_[1]->type =~ /^2/ && $ok_clicked->() } : '';
+ my $box = create_widgets_block($o, $l, $update, \$ignore);
- my @para = ($e, $may_go_to_next, $changed, $quit_if_double_click);
- my $use_boxradio = exists $e->{gtk}{use_boxradio} ? $e->{gtk}{use_boxradio} : @{$e->{list}} <= 8;
+ my $tooltips = Gtk2::Tooltips->new;
+ foreach my $e (@all) {
+ $tooltips->set_tip($e->{w}, $e->{help}) if $e->{help} && !ref($e->{help});
+ }
- if ($e->{help}) {
- #- used only when needed, as key bindings are dropped by List (ListStore does not seems to accepts Tooltips).
- ($w, $set, $focus_w) = $use_boxradio ? create_boxradio(@para) : create_list(@para);
- } elsif ($e->{type} eq 'treelist') {
- ($w, $set) = create_treeview_tree(@para, $e->{tree_expanded});
- $e->{saved_default_val} = ${$e->{val}}; #- during realization, signals will mess up the default val :(
- } else {
- if ($use_boxradio) {
- ($w, $set, $focus_w) = create_boxradio(@para);
- } else {
- ($w, $set, $focus_w) = create_treeview_list(@para);
- $e->{saved_default_val} = ${$e->{val}};
- }
- }
- if (@{$e->{list}} > 10) {
- $real_w = create_scrolled_window($w);
- $grow = 1;
- }
- }
- } else {
- if ($e->{type} eq "combo") {
- my $model;
+ $box, $set_all;
+}
- my @formatted_list = map { may_apply($e->{format}, $_) } @{$e->{list}};
- $e->{formatted_list} = \@formatted_list;
+sub add_modify_remove_sensitive {
+ my ($buttons, $e) = @_;
+ $_->{button}->set_sensitive(@{$e->{list}} != ()) foreach
+ grep { member($_->{kind}, 'modify', 'remove') } @$buttons;
+}
- my @l = sort { $b <=> $a } map { length } @formatted_list;
- my $width = $l[@l / 16]; # take the third octile (think quartile)
+sub filter_widgets {
+ my ($l) = @_;
- if (!$e->{separator}) {
- if ($e->{not_edit} && $width < 160) { #- ComboBoxes do not have an horizontal scroll-bar. This can cause havoc for long strings (eg: diskdrake Create dialog box in expert mode)
- $w = Gtk2::ComboBox->new_text;
- } else {
- $w = Gtk2::Combo->new;
- $w->set_use_arrows_always(1);
- $w->entry->set_editable(!$e->{not_edit});
- $w->disable_activate;
- }
- $w->set_popdown_strings(@formatted_list);
- $w->set_text(ref($e->{val}) ? may_apply($e->{format}, ${$e->{val}}) : $formatted_list[0]) if $w->isa('Gtk2::ComboBox');
- } else {
- $model = __create_tree_model($e);
- $w = Gtk2::ComboBox->new_with_model($model);
-
- $w->pack_start(my $texrender = Gtk2::CellRendererText->new, 0);
- $w->add_attribute($texrender, text => 0);
- if ($e->{image2f}) {
- $w->pack_start(my $pixrender = Gtk2::CellRendererPixbuf->new, 0);
- $w->add_attribute($pixrender, pixbuf => 1);
- }
- }
- ($real_w, $w) = ($w, $w->entry);
+ foreach my $e (all_entries($l)) {
+ $e->{no_indent} = 1 if member($e->{type}, 'list', 'treelist', 'expander', 'bool', 'only_label');
+ }
+}
- #- FIXME workaround gtk suckiness (set_text generates two 'change' signals, one when removing the whole, one for inserting the replacement..)
- my $idle;
- $w->signal_connect(changed => sub {
- $idle ||= Glib::Idle->add(sub { undef $idle; $changed->(); 0 });
- });
-
- $set = sub {
- my $s = may_apply($e->{format}, $_[0]);
- if ($model) {
- eval {
- my $i = find_index { $s eq $_ } @{$e->{formatted_list}};
- my $path_str = $model->{path_str_list}[$i];
- $w->set_active_iter($model->get_iter_from_string($path_str));
- };
- } else {
- $w->set_text($s) if $s ne $w->get_text && $_[0] ne $w->get_text;
- }
- };
- $get = sub {
- my $i = $model ? do {
- my $s = $model->get_string_from_iter($w->get_active_iter);
- eval { find_index { $s eq $_ } @{$model->{path_str_list}} };
- } : do {
- my $s = $w->get_text;
- eval { find_index { $s eq $_ } @formatted_list };
- };
- defined $i ? $e->{list}[$i] : $w->get_text;
- };
- } else {
- $w = Gtk2::Entry->new;
- $w->signal_connect(changed => $changed);
- $w->signal_connect(focus_in_event => sub { $w->select_region(0, -1) });
- $w->signal_connect(focus_out_event => sub { $w->select_region(0, 0) });
- $set = sub { $w->set_text($_[0]) if $_[0] ne $w->get_text };
- $get = sub { $w->get_text };
- }
- $w->signal_connect(key_press_event => $may_go_to_next);
- $w->set_visibility(0) if $e->{hidden};
- }
- $w->signal_connect(focus_out_event => sub {
- $update->(sub { $common->{callbacks}{focus_out}($ind) });
- });
- $tooltips->set_tip($w, $e->{help}) if $e->{help} && !ref($e->{help});
+my $help_path = "/usr/share/doc/installer-help";
- $real_w ||= $w;
- $real_w = gtkpack_(Gtk2::HBox->new,
- if_($e->{icon}, 0, eval { gtkcreate_img($e->{icon}) }),
- 0, gtkadd_widget($label_sizegrp[$e->{advanced} ? 1 : 0], $e->{label}),
- 1, gtkadd_widget($realw_sizegrp[$e->{advanced} ? 1 : 0], $real_w),
- ) if !$real_w->isa("Gtk2::CheckButton") || $e->{icon} || $e->{label};
+sub load_from_uri {
+ my ($document, $url) = @_;
+ $url = "$help_path/$url" if $url !~ m!^/!;
+ my $str = scalar(cat_($url));
+ c::set_tagged_utf8($str);
+ $document->clear;
+ $document->open_stream("text/html");
+ $document->write_stream($str);
+}
- { e => $e, w => $w, real_w => $real_w, focus_w => $focus_w || $w,
- get => $get || sub { ${$e->{val}} }, set => $set || sub {}, grow => $grow };
- };
- @widgets_always = map_index { $create_widget->($_, $::i) } @$l;
- @widgets_advanced = map_index { $create_widget->($_, $::i + @$l) } @$l2;
+sub ask_fromW {
+ my ($o, $common, $l) = @_;
+
+ filter_widgets($l);
+
+ my $mainw = ugtk2->new($common->{title}, %$o, modal => 1, if__($::main_window, transient => $::main_window, modal => 1),
+ if_($common->{icon}, icon => $common->{icon}), banner_title => $common->{banner_title},
+ );
+
+ my ($box, $set_all) = create_widgets($o, $common, $mainw, $l);
$mainw->{box_allow_grow} = 1;
my $pack = create_box_with_title($mainw, @{$common->{messages}});
- mygtk2::set_main_window_size($mainw->{rwindow}) if $mainw->{pop_it} && (@$l || $mainw->{box_size} == 200);
-
- my @before_widgets_advanced = (
- (map { { grow => 0, real_w => Gtk2::WrappedLabel->new($_) } } @{$common->{advanced_messages}}),
- { grow => 0, real_w => Gtk2::HSeparator->new },
- );
-
- my $first_time = 1;
- my $set_advanced = sub {
- ($advanced) = @_;
- $update->($common->{callbacks}{advanced}) if $advanced && !$first_time;
- foreach (@before_widgets_advanced, @widgets_advanced) {
- my $w = $_->{embed_scroll} || $_->{real_w};
- $advanced ? $w->show : $w->hide;
- }
- @widgets = (@widgets_always, if_($advanced, @widgets_advanced));
- $first_time = 0;
- $set_all->(); #- must be done when showing advanced lists (to center selected value)
- };
- if ($::expert && @$l2) {
- $common->{advanced_state} = 1;
- }
- my $advanced_button = [ $common->{advanced_state} ? $common->{advanced_label_close} : $common->{advanced_label},
- sub {
- my ($w) = @_;
- $set_advanced->(!$advanced);
- $w->child->set_label($advanced ? $common->{advanced_label_close} : $common->{advanced_label});
- } ];
+ mygtk2::set_main_window_size($mainw->{rwindow}) if $mainw->{pop_it} && !$common->{auto_window_size} && (@$l || $mainw->{box_size} == 200);
my @more_buttons = (
if_($common->{interactive_help},
[ N("Help"), sub {
+ if (my $file = find { -e $_ } map { "$help_path/${_}.html" }
+ map {
+ my $id = $_;
+ require lang;
+ map { "$_/$id" } (split ':', lang::getLANGUAGE($o->{locale}{lang}));
+ } $common->{interactive_help_id}
+ ) {
+ require Gtk2::Html2;
+ my $view = Gtk2::Html2::View->new;
+ my $document = Gtk2::Html2::Document->new;
+ $document->signal_connect(request_url => sub {
+ my ($_document, $url, $stream) = @_;
+ $stream->write(join('', cat_("$help_path/$url")));
+ $stream->close;
+ });
+ $document->signal_connect('link-clicked' => \&load_from_uri);
+ $view->set_document($document);
+
+ load_from_uri($document, $file);
+
+ my $w = ugtk2->new(N("Help"), transient => $mainw->{real_window}, modal => 1);
+ gtkadd($w->{rwindow},
+ gtkpack_(Gtk2::VBox->new,
+ 1, create_scrolled_window(gtkset_border_width($view, 5),
+ [ 'never', 'automatic' ],
+ ),
+ 0, gtkpack(create_hbox('edge'),
+ gtknew('Button', text => N("Close"), clicked => sub { Gtk2->main_quit })
+ ),
+ ),
+ );
+ # make parent visible still visible:
+ local ($::real_windowwidth, $::real_windowheight) = ($::real_windowwidth - 50, $::real_windowheight - 50);
+ mygtk2::set_main_window_size($w->{rwindow});
+ $w->{real_window}->grab_focus;
+ $w->{real_window}->show_all;
+ $w->main;
+ return;
+ }
my $message = $common->{interactive_help}->() or return;
$o->ask_warn(N("Help"), $message);
}, 1 ]),
if_($common->{more_buttons}, @{$common->{more_buttons}}),
);
- my $buttons_pack = ($common->{ok} || !exists $common->{ok}) && $mainw->create_okcancel($common->{ok}, $common->{cancel}, '', @more_buttons, if_(@$l2, $advanced_button));
-
- my @widgets_to_pack;
- foreach my $l (\@widgets_always, if_(@widgets_advanced, [ @before_widgets_advanced, @widgets_advanced ])) {
- my @grouped;
- my $add_grouped = sub {
- if (@grouped == 0) {
- } elsif (@grouped == 1) {
- push @widgets_to_pack, 0 => $grouped[0]{real_w};
- } else {
- my $scroll = create_scrolled_window(gtkpack__(Gtk2::VBox->new(0,0), map { $_->{real_w} } @grouped),
- [ 'automatic', 'automatic' ], 'none');
- $_->{embed_scroll} = $scroll foreach @grouped;
- push @widgets_to_pack, 1 => $scroll;
- }
- @grouped = ();
- };
- foreach (@$l) {
- if ($_->{grow}) {
- $add_grouped->();
- push @widgets_to_pack, 1 => $_->{real_w};
- } else {
- push @grouped, $_;
- }
- }
- $add_grouped->();
- }
+ my $buttons_pack = ($common->{ok} || !exists $common->{ok}) && $mainw->create_okcancel($common->{ok}, $common->{cancel}, '', @more_buttons);
- gtkpack_($pack, @widgets_to_pack);
+ gtkpack_($pack, 1, gtknew('ScrolledWindow', shadow_type => 'none', child => $box)) if @$l;
if ($buttons_pack) {
$pack->pack_end(gtkshow($buttons_pack), 0, 0, 0);
}
ugtk2::gtkadd($mainw->{window}, $pack);
- $set_advanced->($common->{advanced_state});
-
- my $widget_to_focus =
- $common->{focus_cancel} ? $mainw->{cancel} :
- @widgets && ($common->{focus_first} || !$mainw->{ok} || @widgets == 1 && member(ref($widgets[0]{focus_w}), "Gtk2::TreeView", "Gtk2::RadioButton")) ?
- $widgets[0]{focus_w} :
- $mainw->{ok};
+ $set_all->();
+
+ my $entry_to_focus = find { $_->{focus} && $_->{focus}() } @$l;
+ my $widget_to_focus = $entry_to_focus ? $entry_to_focus->{focus_w} :
+ $common->{focus_cancel} ? $mainw->{cancel} :
+ @$l && (!$mainw->{ok} || @$l == 1 && member(ref($l->[0]{focus_w}), "Gtk2::TreeView", "Gtk2::RadioButton")) ?
+ $l->[0]{focus_w} :
+ $mainw->{ok};
$widget_to_focus->grab_focus if $widget_to_focus;
- my $check = sub {
- my ($f) = @_;
- sub {
- $get_all->();
- my ($error, $focus) = $f->();
-
- if ($error) {
- $set_all->();
- if (my $to_focus = $widgets[$focus || 0]) {
- $to_focus->{focus_w}->grab_focus;
- } else {
- log::l("ERROR: bad entry number given to focus " . backtrace());
- }
- }
- !$error;
- };
+ my $validate = sub {
+ my @all = all_entries($l);
+ my $e = find { $_->{validate} && !$_->{validate}->() } @all;
+ $e ||= $common->{validate} && !$common->{validate}() && $all[0];
+ if ($e) {
+ $set_all->();
+ $e->{focus_w}->grab_focus;
+ }
+ !$e;
};
- $_->{set}->($_->{e}{saved_default_val} || next) foreach @widgets_always, @widgets_advanced;
- $mainw->main(map { $check->($common->{callbacks}{$_}) } 'complete', 'canceled');
+ $mainw->main($validate);
}
@@ -770,18 +813,21 @@ sub ask_from__add_modify_removeW {
}
sub wait_messageW {
- my ($_o, $title, $messages) = @_;
+ my ($o, $title, $message, $message_modifiable) = @_;
- my $to_modify;
- my @l = map { ref $_ ? (0, $_) : (1, $to_modify = Gtk2::Label->new(scalar warp_text($_))) } @$messages;
- $l[0] = 0; #- force first one
+ my $to_modify = Gtk2::Label->new(scalar warp_text(ref $message_modifiable ? '' : $message_modifiable));
my $Window = gtknew('MagicWindow',
title => $title,
pop_it => !$::isInstall,
modal => 1,
+ no_Window_Manager => exists $o->{no_Window_Manager} ? $o->{no_Window_Manager} : !$::isStandalone,
if__($::main_window, transient_for => $::main_window),
- child => gtknew('VBox', padding => 4, border_width => 10, children => \@l),
+ child => gtknew('VBox', padding => 4, border_width => 10, children => [
+ 0, Gtk2::Label->new(scalar warp_text($message)),
+ 1, $to_modify,
+ if_(ref($message_modifiable), 0, $message_modifiable),
+ ]),
);
$Window->signal_connect(expose_event => sub { $Window->{displayed} = 1; 0 });
$Window->{wait_messageW} = $to_modify;
@@ -789,11 +835,10 @@ sub wait_messageW {
$Window;
}
sub wait_message_nextW {
- my ($_o, $messages, $Window) = @_;
- my $msg = warp_text(join "\n", @$messages);
- return if $msg eq $Window->{wait_messageW}->get_text; #- needed otherwise no expose_event :(
+ my ($_o, $message, $Window) = @_;
+ return if $message eq $Window->{wait_messageW}->get_text; #- needed otherwise no expose_event :(
$Window->{displayed} = 0;
- $Window->{wait_messageW}->set($msg);
+ $Window->{wait_messageW}->set($message);
mygtk2::sync($Window) while !$Window->{displayed};
}
sub wait_message_endW {
@@ -802,6 +847,31 @@ sub wait_message_endW {
mygtk2::flush();
}
+sub wait_message_with_progress_bar {
+ my ($in, $o_title) = @_;
+
+ my $progress = Gtk2::ProgressBar->new;
+ my $w = $in->wait_message($o_title, $progress);
+ my $displayed;
+ $progress->signal_connect(expose_event => sub { $displayed = 1; 0 });
+ $w, sub {
+ my ($msg, $current, $total) = @_;
+ if ($msg) {
+ $w->set($msg);
+ }
+
+ if ($total) {
+ $progress or internal_error('You must first give some text to display');
+ $progress->set_fraction($current / $total);
+ $progress->show;
+ $displayed = 0;
+ mygtk2::flush() while !$displayed;
+ } else {
+ $progress->hide if !$total;
+ }
+ };
+}
+
sub kill {
my ($_o) = @_;
$_->destroy foreach $::WizardTable ? $::WizardTable->get_children : (), @tempory::objects;
diff --git a/perl-install/interactive/http.pm b/perl-install/interactive/http.pm
index 6825ee007..52372ab7a 100644
--- a/perl-install/interactive/http.pm
+++ b/perl-install/interactive/http.pm
@@ -136,15 +136,15 @@ sub p {
}
sub wait_messageW {
- my ($_o, $_title, $messages) = @_;
+ my ($_o, $_title, $message, $message_modifiable) = @_;
cont_stdout();
print "\n" . CGI::p();
- p(@$messages);
+ p($message, $message_modifiable);
}
sub wait_message_nextW {
- my ($_o, $messages, $_w) = @_;
- p(@$messages);
+ my ($_o, $message, $_w) = @_;
+ p($message);
}
sub wait_message_endW {
my ($_o, $_w) = @_;
diff --git a/perl-install/interactive/newt.pm b/perl-install/interactive/newt.pm
deleted file mode 100644
index d42eb99d8..000000000
--- a/perl-install/interactive/newt.pm
+++ /dev/null
@@ -1,423 +0,0 @@
-package interactive::newt; # $Id$
-
-use diagnostics;
-use strict;
-use vars qw(@ISA);
-
-@ISA = qw(interactive);
-
-use interactive;
-use common;
-use log;
-use Newt::Newt; #- !! provides Newt and not Newt::Newt
-
-my ($width, $height) = (80, 25);
-my @wait_messages;
-
-sub new {
- if ($::isInstall) {
- system('unicode_start'); #- do not use run_program, we must do it on current console
- {
- local $ENV{LC_CTYPE} = "en_US.UTF-8";
- Newt::Init(1);
- }
- c::init_setlocale();
- } else {
- Newt::Init(0);
- }
- Newt::Cls();
- Newt::SetSuspendCallback();
- ($width, $height) = Newt::GetScreenSize();
- open STDERR, ">/dev/null" if $::isStandalone && !$::testing;
- bless {}, $_[0];
-}
-
-sub enter_console { Newt::Suspend() }
-sub leave_console { Newt::Resume() }
-sub suspend { Newt::Suspend() }
-sub resume { Newt::Resume() }
-sub end { Newt::Finished() }
-sub exit { end(); exit($_[1]) }
-END { end() }
-
-sub messages {
- my ($width, @messages) = @_;
- warp_text(join("\n", @messages), $width - 9);
-}
-
-sub myTextbox {
- my ($allow_scroll, $free_height, @messages) = @_;
-
- my @l = messages($width, @messages);
- my $h = min($free_height - 13, int @l);
-
- my $want_scroll;
- if ($h < @l) {
- if ($allow_scroll) {
- $want_scroll = 1;
- } else {
- # remove the text, no other way!
- @l = @l[0 .. $h-1];
- }
- }
-
- my $mess = Newt::Component::Textbox(1, 0, my $w = max(map { length } @l) + 1, $h, $want_scroll);
- $mess->TextboxSetText(join("\n", @l));
- $mess, $w + 1, $h;
-}
-
-sub separator {
- my $blank = Newt::Component::Form(\undef, '', 0);
- $blank->FormSetWidth($_[0]);
- $blank->FormSetHeight($_[1]);
- $blank;
-}
-sub checkval { $_[0] && $_[0] ne ' ' ? '*' : ' ' }
-
-sub ask_fromW {
- my ($o, $common, $l, $l2) = @_;
-
- if (@$l == 1 && $l->[0]{list} && @{$l->[0]{list}} == 2 && listlength(map { split "\n" } @{$common->{messages}}) > 20) {
- #- special ugly case, esp. for license agreement
- my $e = $l->[0];
- my $ok_disabled = $common->{callbacks} && delete $common->{callbacks}{ok_disabled};
- ($common->{ok}, $common->{cancel}) = map { may_apply($e->{format}, $_) } @{$e->{list}};
- do {
- ${$e->{val}} = ask_fromW_real($o, $common, [], $l2) ? $e->{list}[0] : $e->{list}[1];
- } while $ok_disabled && $ok_disabled->();
- 1;
- } elsif ((any { $_->{type} ne 'button' } @$l) || @$l < 5) {
- &ask_fromW_real;
- } else {
- $common->{cancel} = N("Do") if $common->{cancel} eq '';
- my $r;
- do {
- my @choices = map {
- my $s = simplify_string(may_apply($_->{format}, ${$_->{val}}));
- $s = "$_->{label}: $s" if $_->{label};
- { label => $s, clicked_may_quit => $_->{clicked_may_quit} };
- } @$l;
- #- replace many buttons with a list
- my $new_l = [ { val => \$r, type => 'list', list => \@choices, format => sub { $_[0]{label} }, sort => 0 } ];
- ask_fromW_real($o, $common, $new_l, $l2) and return;
- } until $r->{clicked_may_quit}->();
- 1;
- }
-}
-
-sub ask_fromW_real {
- my ($o, $common, $l, $l2) = @_;
- my $ignore; #-to handle recursivity
- my $old_focus = -2;
-
- my @l = $common->{advanced_state} ? @$l2 : @$l;
- my @messages = (@{$common->{messages}}, if_($common->{advanced_state}, @{$common->{advanced_messages}}));
-
- #-the widgets
- my (@widgets, $total_size, $has_scroll);
-
- my $label_width;
- my $get_label_width = sub {
- $label_width ||= max(map { length($_->{label}) } @l);
- };
-
- my $set_all = sub {
- $ignore = 1;
- $_->{set}->(${$_->{e}{val}}) foreach @widgets;
-# $_->{w}->set_sensitive(!$_->{e}{disabled}()) foreach @widgets;
- $ignore = 0;
- };
- my $get_all = sub {
- ${$_->{e}{val}} = $_->{get}->() foreach @widgets;
- };
- my $create_widget = sub {
- my ($e, $ind) = @_;
-
- $e->{type} = 'list' if $e->{type} =~ /iconlist/;
-
- #- combo does not exist, fallback to a sensible default
- $e->{type} = $e->{not_edit} ? 'list' : 'entry' if $e->{type} eq 'combo';
-
- my $changed = sub {
- return if $ignore;
- return $old_focus++ if $old_focus == -2; #- handle special first case
- $get_all->();
-
- #- TODO: this is very rough :(
- $common->{callbacks}{$old_focus == $ind ? 'changed' : 'focus_out'}->($ind);
-
- $set_all->();
- $old_focus = $ind;
- };
-
- my ($w, $real_w, $set, $get, $expand, $size, $invalid_choice, $extra_text);
- if ($e->{type} eq 'bool') {
- my $subwidth = $width - $get_label_width->() - 9;
- my @text = messages($subwidth, $e->{text} || '');
- $size = @text;
- $w = Newt::Component::Checkbox(shift(@text), checkval(${$e->{val}}), " *");
- if (@text) {
- $extra_text = Newt::Component::Textbox(-1, -1, $subwidth, $size - 1, 0);
- $extra_text->TextboxSetText(join("\n", @text));
- }
- $set = sub { $w->CheckboxSetValue(checkval($_[0])) };
- $get = sub { $w->CheckboxGetValue == ord '*' };
- } elsif ($e->{type} eq 'button') {
- $w = Newt::Component::Button(simplify_string(may_apply($e->{format}, ${$e->{val}})));
- } elsif ($e->{type} eq 'treelist') {
- $e->{formatted_list} = [ map { may_apply($e->{format}, $_) } @{$e->{list}} ];
- my $data_tree = interactive::helper_separator_tree_to_tree($e->{separator}, $e->{list}, $e->{formatted_list});
-
- my $count; $count = sub {
- my ($t) = @_;
- 1 + ($t->{_leaves_} ? int @{$t->{_leaves_}} : 0)
- + ($t->{_order_} ? sum(map { $count->($t->{$_}) } @{$t->{_order_}}) : 0);
- };
- $size = $count->($data_tree);
-
- my $prefered_size = @l == 1 && $height > 30 ? 10 : 5;
- my $scroll;
- if ($size > $prefered_size && !$o->{no_individual_scroll}) {
- $has_scroll = $scroll = 1;
- $size = $prefered_size;
- }
-
- $w = Newt::Component::Tree($size, $scroll);
-
- my $wi;
- my $add_item = sub {
- my ($text, $index, $parents) = @_;
- $text = simplify_string($text, $width - 10);
- $wi = max($wi, length($text) + 3 * @$parents + 4);
- $w->TreeAdd($text, $index, $parents);
- };
-
- my @data = '';
- my $populate; $populate = sub {
- my ($node, $parents) = @_;
- if (my $l = $node->{_order_}) {
- each_index {
- $add_item->($_, 0, $parents);
- $populate->($node->{$_}, [ @$parents, $::i ]);
- } @$l;
- }
- if (my $l = $node->{_leaves_}) {
- foreach (@$l) {
- my ($leaf, $data) = @$_;
- $add_item->($leaf, int(@data), $parents);
- push @data, $data;
- }
- }
- };
- $populate->($data_tree, []);
-
- $w->TreeSetWidth($wi + 1);
- $get = sub {
- my $i = $w->TreeGetCurrent;
- $invalid_choice = $i == 0;
- $data[$i];
- };
- $set = sub {
- my ($data) = @_;
- eval {
- my $i = find_index { $_ eq $data } @data;
- $w->TreeSetCurrent($i);
- } if $data;
- 1;
- };
- } elsif ($e->{type} =~ /list/) {
- $size = @{$e->{list}};
- my $prefered_size = @l == 1 && $height > 30 ? 10 : 5;
- my $scroll;
- if ($size > $prefered_size && !$o->{no_individual_scroll}) {
- $has_scroll = $scroll = 1;
- $size = $prefered_size;
- }
-
- $w = Newt::Component::Listbox($size, $scroll ? 1 << 2 : 0); #- NEWT_FLAG_SCROLL
-
- my @l = map {
- my $t = simplify_string(may_apply($e->{format}, $_), $width - 10);
- $w->ListboxAddEntry($t, $_);
- $t;
- } @{$e->{list}};
-
- $w->ListboxSetWidth(max(map { length($_) } @l) + 3); # 3 added for the scrollbar (?)
- $get = sub { $w->ListboxGetCurrent };
- $set = sub {
- my ($val) = @_;
- each_index {
- $w->ListboxSetCurrent($::i) if $val eq $_;
- } @{$e->{list}};
- };
- } else {
- $w = Newt::Component::Entry('', 20, ($e->{hidden} && 1 << 11) | (1 << 2));
- $get = sub { $w->EntryGetValue };
- $set = sub { $w->EntrySet($_[0], 1) };
- }
- $total_size += $size || 1;
-
- #- !! callbacks must be kept otherwise perl will free them !!
- #- (better handling of addCallback needed)
-
- { e => $e, w => $w, real_w => $real_w || $w, expand => $expand, callback => $changed,
- get => $get || sub { ${$e->{val}} }, set => $set || sub {},
- extra_text => $extra_text, invalid_choice => \$invalid_choice };
- };
- @widgets = map_index { $create_widget->($_, $::i) } @l;
-
- $_->{w}->addCallback($_->{callback}) foreach @widgets;
-
- $set_all->();
-
- my $grid = Newt::Grid::CreateGrid(3, max(1, sum(map { $_->{extra_text} ? 2 : 1 } @widgets)));
- my $i;
- foreach (@widgets) {
- $grid->GridSetField(0, $i, 1, ${Newt::Component::Label($_->{e}{label})}, 0, 0, 1, 0, 1, 0);
- $grid->GridSetField(1, $i, 1, ${$_->{real_w}}, 0, 0, 0, 0, 1, 0);
- $i++;
- if ($_->{extra_text}) {
- $grid->GridSetField(0, $i, 1, ${Newt::Component::Label('')}, 0, 0, 1, 0, 1, 0);
- $grid->GridSetField(1, $i, 1, ${$_->{extra_text}}, 0, 0, 0, 0, 1, 0);
- $i++;
- }
- }
-
- my $listg = do {
- my $wanted_header_height = min(8, listlength(messages($width, @messages)));
- my $height_avail = $height - $wanted_header_height - 13;
- #- use a scrolled window if there is a lot of checkboxes (aka
- #- ask_many_from_list) or a lot of widgets in general (aka
- #- options of a native PostScript printer in printerdrake)
- #- !! works badly together with list's (lists are one widget, so a
- #- big list window will not switch to scrollbar mode) :-(
- if (@l > 3 && $total_size > $height_avail) {
- $grid->GridPlace(1, 1); #- Uh?? otherwise the size allocated is bad
- if ($has_scroll) {
- #- trying again with no_individual_scroll set
- $o->{no_individual_scroll} and internal_error('no_individual_scroll already set, argh...');
- $o->{no_individual_scroll} = 1;
- goto &ask_fromW_real; #- same player shoot again!
- }
- $has_scroll = 1;
- $total_size = $height_avail;
-
- my $scroll = Newt::Component::VerticalScrollbar($height_avail, 9, 10); # 9=NEWT_COLORSET_CHECKBOX, 10=NEWT_COLORSET_ACTCHECKBOX
- my $subf = $scroll->Form('', 0);
- $subf->FormSetHeight($height_avail);
- $subf->FormAddGrid($grid, 0);
- Newt::Grid::HCloseStacked3($subf, separator(1, $height_avail-1), $scroll);
- } else {
- $grid;
- }
- };
-
- my ($ok, $cancel) = ($common->{ok}, $common->{cancel});
- my ($need_to_die);
- if (!defined $cancel && !defined $ok) {
- $cancel = $::isWizard && !$::Wizard_no_previous ? N("Previous") : N("Cancel");
- $need_to_die = 1 if !($::isWizard && !$::Wizard_no_previous);
- }
- $ok ||= $::isWizard ? ($::Wizard_finished ? N("Finish") : N("Next")) : N("Ok");
-
- my @okcancel = grep { $_ } $ok, $cancel;
- @okcancel = reverse(@okcancel) if $::isWizard;
- my @buttons_text = (if_(@$l2, $common->{advanced_state} ? $common->{advanced_label_close} : $common->{advanced_label}), @okcancel);
- my ($buttonbar, @buttons) = Newt::Grid::ButtonBar(map { simplify_string($_) } @buttons_text);
- my $advanced_button = @$l2 && shift @buttons;
- @buttons = reverse(@buttons) if $::isWizard;
- my ($ok_button, $cancel_button) = @buttons;
-
- my $form = Newt::Component::Form(\undef, '', 0);
- my $window = Newt::Grid::GridBasicWindow(first(myTextbox(!$has_scroll, $height - $total_size, @messages)), $listg, $buttonbar);
- $window->GridWrappedWindow($common->{title} || '');
- $form->FormAddGrid($window, 1);
-
- my $check = sub {
- my ($f) = @_;
-
- my ($error, $_focus) = $f->();
-
- if ($error) {
- $set_all->();
- }
- !$error;
- };
-
- my ($blocked, $canceled);
- while (1) {
- my $r = $form->RunForm;
-
- $get_all->();
-
- if ($advanced_button && $$r == $$advanced_button) {
- invbool(\$common->{advanced_state});
- $form->FormDestroy;
- Newt::PopWindow();
- return &ask_fromW_real;
- }
-
- $canceled = $cancel_button && $$r == $$cancel_button;
-
- next if !$canceled && any { ${$_->{invalid_choice}} } @widgets;
-
- $blocked =
- $$r == $$ok_button &&
- $common->{callbacks}{ok_disabled} &&
- do { $common->{callbacks}{ok_disabled}() };
-
- if (my $button = find { $$r == ${$_->{w}} } @widgets) {
- my $v = $button->{e}{clicked_may_quit}();
- $form->FormDestroy;
- Newt::PopWindow();
- return $v || &ask_fromW;
- }
- last if !$blocked && $check->($common->{callbacks}{$canceled ? 'canceled' : 'complete'});
- }
-
- $form->FormDestroy;
- Newt::PopWindow();
- die 'wizcancel' if $need_to_die && $canceled;
- !$canceled;
-}
-
-
-sub waitbox {
- my ($title, $messages) = @_;
- my ($t, $w, $h) = myTextbox(1, $height, @$messages);
- my $f = Newt::Component::Form(\undef, '', 0);
- Newt::CenteredWindow($w, $h, $title);
- $f->FormAddComponent($t);
- $f->DrawForm;
- Newt::Refresh();
- $f->FormDestroy;
- push @wait_messages, $f;
- $f;
-}
-
-
-sub wait_messageW {
- my ($_o, $title, $messages) = @_;
- { form => waitbox($title, $messages), title => $title };
-}
-
-sub wait_message_nextW {
- my ($o, $messages, $w) = @_;
- $o->wait_message_endW($w);
- $o->wait_messageW($w->{title}, $messages);
-}
-sub wait_message_endW {
- my ($_o, $_w) = @_;
- my $_wait = pop @wait_messages;
-# log::l("interactive_newt does not handle none stacked wait-messages") if $w->{form} != $wait;
- Newt::PopWindow();
-}
-
-sub simplify_string {
- my ($s, $o_width) = @_;
- $s =~ s/\n/ /g;
- $s = substr($s, 0, $o_width || 40); #- truncate if too long
- $s;
-}
-
-1;
diff --git a/perl-install/interactive/stdio.pm b/perl-install/interactive/stdio.pm
index 04b5abfcf..9dca9eaba 100644
--- a/perl-install/interactive/stdio.pm
+++ b/perl-install/interactive/stdio.pm
@@ -70,7 +70,7 @@ ask_fromW_begin:
print N("Your choice? (0/1, default `%s') ", ${$e->{val}} || '0');
my $i = readln();
if ($i) {
- to_bool($i) != to_bool(${$e->{val}}) and $common->{callbacks}{changed}->($ind);
+ to_bool($i) != to_bool(${$e->{val}}) and $common->{changed}->($ind);
${$e->{val}} = $i;
}
} elsif ($e->{type} =~ /list/) {
@@ -89,12 +89,12 @@ ask_fromW_begin:
print "\n";
my $i = good_choice(may_apply($e->{format}, ${$e->{val}}), $n);
print "Setting to <", $i ? ${$e->{list}}[$i-1] : ${$e->{val}}, ">\n";
- $i and ${$e->{val}} = ${$e->{list}}[$i-1], $common->{callbacks}{changed}->($ind);
+ $i and ${$e->{val}} = ${$e->{list}}[$i-1], $common->{changed}->($ind);
} elsif ($e->{type} eq 'button') {
print N("Button `%s': %s", $e->{label}, may_apply($e->{format}, ${$e->{val}})), " $e->{text}\n";
print N("Do you want to click on this button?");
my $i = readln();
- $i && $i !~ /^n/i and $e->{clicked_may_quit}(), $common->{callbacks}{changed}->($ind);
+ $i && $i !~ /^n/i and $e->{clicked_may_quit}(), $common->{changed}->($ind);
} elsif ($e->{type} eq 'label') {
my $t = $format_label->($e);
push @labels, $t;
@@ -106,7 +106,7 @@ ask_fromW_begin:
${$e->{val}} = $i || ${$e->{val}};
${$e->{val}} = '' if ${$e->{val}} eq 'void';
print "Setting to <", ${$e->{val}}, ">\n";
- $i and $common->{callbacks}{changed}->($ind);
+ $i and $common->{changed}->($ind);
} else {
printf "UNSUPPORTED WIDGET TYPE (type <%s> label <%s> text <%s> val <%s>\n", $e->{type}, $e->{label}, $e->{text}, ${$e->{val}};
}
@@ -153,17 +153,18 @@ Your choice? ");
} else {
$i = 1;
}
- my ($callback_error) = $common->{callbacks}{$i == 2 ? 'canceled' : 'complete'}->();
- $callback_error and goto ask_fromW_begin;
+ if ($i == 1 && !$common->{validate}()) {
+ goto ask_fromW_begin;
+ }
return $i != 2;
}
sub wait_messageW {
- my ($_o, $_title, $message) = @_;
- print join "\n", @$message;
+ my ($_o, $_title, $message, $message_modifiable) = @_;
+ print join "\n", $message, $message_modifiable;
}
sub wait_message_nextW {
- my $m = join "\n", @{$_[1]};
+ my $m = join "\n", $_[1];
print "\r$m", ' ' x (60 - length $m);
}
sub wait_message_endW { print "\nDone\n" }
diff --git a/perl-install/lang.pm b/perl-install/lang.pm
index 64d07fcd7..7c486bba0 100644
--- a/perl-install/lang.pm
+++ b/perl-install/lang.pm
@@ -27,32 +27,40 @@ our %langs = (
'as' => [ 'Assamese', 'ZZ Assamese', 'as_IN', ' 2 ', 'utf_beng' ],
'az' => [ 'Azeri (Latin)', 'Azerbaycanca', 'az_AZ', ' 2 ', 'utf_az' ],
'be' => [ 'Belarussian', 'Belaruskaya', 'be_BY', '1 ', 'utf_cyr1' ],
-#- ber_MA not yet done, using fr_FR locale instead
-'ber' => [ 'Berber', 'ZZ Tamazight', 'fr_FR', ' 3 ', 'utf_tfng', 'ber:fr' ],
+'ber' => [ 'Berber', 'ZZ Tamazight', 'ber_MA', ' 3 ', 'utf_tfng', 'ber_MA:ber:fr' ],
'bg' => [ 'Bulgarian', 'Blgarski', 'bg_BG', '1 ', 'cp1251' ],
'bn' => [ 'Bengali', 'ZZ Bengali', 'bn_BD', ' 2 ', 'utf_beng' ],
+#- bo_CN not yet done, using dz_BT locale instead
+'bo' => [ 'Tibetan', 'ZZ Bod skad', 'dz_BT', ' 2 ', 'utf_tibt', 'bo' ],
'br' => [ 'Breton', 'Brezhoneg', 'br_FR', '1 ', 'iso-8859-15', 'br:fr_FR:fr' ],
'bs' => [ 'Bosnian', 'Bosanski', 'bs_BA', '1 ', 'iso-8859-2' ],
'ca' => [ 'Catalan', 'Catala', 'ca_ES', '1 ', 'iso-8859-15', 'ca:es_ES:es' ],
+'ca@valencian' => [ 'Catalan (Valencian)', 'Catala (Valencia)', 'ca_ES', '1 ', 'iso-8859-15', 'ca_ES@valencian:ca@valencian:ca:es_ES:es' ],
'cs' => [ 'Czech', 'Cestina', 'cs_CZ', '1 ', 'iso-8859-2' ],
'cy' => [ 'Welsh', 'Cymraeg', 'cy_GB', '1 ', 'utf_lat8', 'cy:en_GB:en' ],
'da' => [ 'Danish', 'Dansk', 'da_DK', '1 ', 'iso-8859-15' ],
'de' => [ 'German', 'Deutsch', 'de_DE', '1 ', 'iso-8859-15' ],
-#-'dz' => [ 'Buthanese', 'ZZ Dzhonka', 'dz_BT', ' 2 ', 'unicode' ],
+'dz' => [ 'Buthanese', 'ZZ Dzhonka', 'dz_BT', ' 2 ', 'utf_tibt' ],
'el' => [ 'Greek', 'Ellynika', 'el_GR', '1 ', 'iso-8859-7' ],
-'en_GB' => [ 'English', 'English', 'en_GB', '12345', 'iso-8859-15' ],
-'en_US' => [ 'English (American)', 'English (American)', 'en_US', ' 5', 'C' ],
+'en_AU' => [ 'English (Australia)', 'English (AU)', 'en_AU', ' 4 ', 'iso-8859-1', 'en_AU:en_GB:en' ],
+'en_CA' => [ 'English (Canada)', 'English (Canada)', 'en_CA', ' 5', 'iso-8859-15', 'en_CA:en_GB:en' ],
+'en_GB' => [ 'English', 'English', 'en_GB', '123 5', 'iso-8859-15' ],
'en_IE' => [ 'English (Ireland)', 'English (Ireland)', 'en_IE', '1 ', 'iso-8859-15', 'en_IE:en_GB:en' ],
+'en_NZ' => [ 'English (New-Zealand)', 'English (NZ)', 'en_NZ', ' 4 ', 'iso-8859-1', 'en_NZ:en_AU:en_GB:en' ],
+'en_US' => [ 'English (American)', 'English (American)', 'en_US', ' 5', 'C' ],
'eo' => [ 'Esperanto', 'Esperanto', 'eo_XX', '12345', 'unicode' ],
'es' => [ 'Spanish', 'Espanol', 'es_ES', '1 3 5', 'iso-8859-15' ],
'et' => [ 'Estonian', 'Eesti', 'et_EE', '1 ', 'iso-8859-15' ],
'eu' => [ 'Euskara (Basque)', 'Euskara', 'eu_ES', '1 ', 'utf_lat1' ],
'fa' => [ 'Farsi (Iranian)', 'AA Farsi', 'fa_IR', ' 2 ', 'utf_ar' ],
'fi' => [ 'Finnish (Suomi)', 'Suomi', 'fi_FI', '1 ', 'iso-8859-15' ],
+#- 'tl' in priority position for now, as 'fil' is not much used.
+#- Monolingual window managers will not see the menus otherwise
+'fil' => [ 'Filipino', 'Filipino', 'fil_PH', ' 2 ', 'utf_lat1', 'tl:fil' ],
'fo' => [ 'Faroese', 'Foroyskt', 'fo_FO', '1 ', 'utf_lat1' ],
'fr' => [ 'French', 'Francais', 'fr_FR', '1 345', 'iso-8859-15' ],
'fur' => [ 'Furlan', 'Furlan', 'fur_IT', '1 ', 'utf_lat1', 'fur:it_IT:it' ],
-'fy' => [ 'Frisian', 'Frysk', 'fy_NL', '1 ', 'utf_lat1' ],
+'fy' => [ 'Frisian', 'Frysk', 'fy_NL', '1 ', 'utf_lat1' ],
'ga' => [ 'Gaelic (Irish)', 'Gaeilge', 'ga_IE', '1 ', 'utf_lat1', 'ga:en_IE:en_GB:en' ],
#'gd' => [ 'Gaelic (Scottish)', 'Gaidhlig', 'gd_GB', '1 ', 'utf_lat8', 'gd:en_GB:en' ],
'gl' => [ 'Galician', 'Galego', 'gl_ES', '1 ', 'iso-8859-15', 'gl:es_ES:es:pt:pt_BR' ],
@@ -60,6 +68,7 @@ our %langs = (
'gn' => [ 'Guarani', 'Avane-e', 'es_PY', ' 5', 'utf_lat1', 'gn:es_PY:es' ],
'gu' => [ 'Gujarati', 'ZZ Gujarati', 'gu_IN', ' 2 ', 'unicode' ],
#'gv' => [ 'Gaelic (Manx)', 'Gaelg', 'gv_GB', '1 ', 'utf_lat8', 'gv:en_GB:en' ],
+'ha' => [ 'Hausa', 'Hausa', 'ha_NG', ' 3 ', 'utf_yo', 'ha:en_NG' ],
'he' => [ 'Hebrew', 'AA Ivrit', 'he_IL', ' 2 ', 'utf_he' ],
'hi' => [ 'Hindi', 'ZZ Hindi', 'hi_IN', ' 2 ', 'utf_deva' ],
'hr' => [ 'Croatian', 'Hrvatski', 'hr_HR', '1 ', 'iso-8859-2' ],
@@ -68,11 +77,13 @@ our %langs = (
# locale not done yet
#'ia' => [ 'Interlingua', 'Interlingua', 'ia_XX', '1 5', 'utf_lat1' ],
'id' => [ 'Indonesian', 'Bahasa Indonesia', 'id_ID', ' 2 ', 'utf_lat1' ],
-'is' => [ 'Icelandic', 'Islenska', 'is_IS', '1 ', 'iso-8859-1' ],
+'ig' => [ 'Igbo', 'Igbo', 'ig_NG', ' 3 ', 'utf_yo', 'ig:en_NG' ],
+'is' => [ 'Icelandic', 'Islenska', 'is_IS', '1 ', 'iso-8859-15' ],
'it' => [ 'Italian', 'Italiano', 'it_IT', '1 ', 'iso-8859-15' ],
'iu' => [ 'Inuktitut', 'ZZ Inuktitut', 'iu_CA', ' 5', 'utf_iu' ],
'ja' => [ 'Japanese', 'ZZ Nihongo', 'ja_JP', ' 2 ', 'jisx0208' ],
'ka' => [ 'Georgian', 'ZZ Georgian', 'ka_GE', ' 2 ', 'utf_geor' ],
+'kk' => [ 'Kazakh', 'Kazak', 'kk_KZ', ' 2 ', 'utf_cyr2' ],
'kl' => [ 'Greenlandic (inuit)', 'Kalaallisut', 'kl_GL', ' 5', 'utf_lat1' ],
'km' => [ 'Khmer', 'ZZ Khmer', 'km_KH', ' 2 ', 'utf_khmr' ],
'kn' => [ 'Kannada', 'ZZ Kannada', 'kn_IN', ' 2 ', 'utf_knda' ],
@@ -89,27 +100,27 @@ our %langs = (
#- "ltg" is not a standard lang code, ISO-639 code was refused;
#- LTG_LV should be used instead (uppercase is for non-standard
#- langcodes, as defined by locale naming standard
-'ltg' => [ 'Latgalian', 'Latgalisu', 'lv_LV', '1 ', 'iso-8859-13', 'ltg:LTG:lv' ],
+'ltg' => [ 'Latgalian', 'Latgalisu', 'lv_LV', '1 ', 'utf_lat7', 'ltg:LTG:lv' ],
+#'lu' => [ 'Luganda', 'Luganda', 'lg_UG', ' 3 ', 'utf_lat1' ],
'lv' => [ 'Latvian', 'Latviesu', 'lv_LV', '1 ', 'iso-8859-13' ],
-'mi' => [ 'Maori', 'Maori', 'mi_NZ', ' 4 ', 'unicode' ],
+'mi' => [ 'Maori', 'Maori', 'mi_NZ', ' 4 ', 'utf_lat7' ],
'mk' => [ 'Macedonian', 'Makedonski', 'mk_MK', '1 ', 'utf_cyr1' ],
'ml' => [ 'Malayalam', 'ZZ Malayalam', 'ml_IN', ' 2 ', 'utf_mlym' ],
'mn' => [ 'Mongolian', 'Mongol', 'mn_MN', ' 2 ', 'utf_cyr2' ],
'mr' => [ 'Marathi', 'ZZ Marathi', 'mr_IN', ' 2 ', 'utf_deva' ],
'ms' => [ 'Malay', 'Bahasa Melayu', 'ms_MY', ' 2 ', 'utf_lat1' ],
'mt' => [ 'Maltese', 'Maltin', 'mt_MT', '1 3 ', 'unicode' ],
-'nb' => [ 'Norwegian Bokmaal', 'Norsk, Bokmal', 'nb_NO', '1 ', 'iso-8859-1', 'nb:no' ],
-'nds' => [ 'Low Saxon', 'Platduutsch', 'nds_DE', '1 ', 'utf_lat1', 'nds_DE:nds' ],
-'ne' => [ 'Nepali', 'ZZ Nepali', 'ne_NP', ' 2 ', 'unicode' ],
+#- "my_MM" not yet done, using "en_US" for now
+'my' => [ 'Burmese', 'ZZ Bamaca', 'en_US', ' 2 ', 'utf_mymr', 'my_MM:my' ],
+'nb' => [ 'Norwegian Bokmaal', 'Norsk, Bokmal', 'nb_NO', '1 ', 'iso-8859-15', 'nb:no' ],
+'nds' => [ 'Low Saxon', 'Platduutsch', 'nds_DE', '1 ', 'utf_lat1', 'nds_DE:nds' ],
+'ne' => [ 'Nepali', 'ZZ Nepali', 'ne_NP', ' 2 ', 'utf_deva' ],
'nl' => [ 'Dutch', 'Nederlands', 'nl_NL', '1 ', 'iso-8859-15' ],
-'nn' => [ 'Norwegian Nynorsk', 'Norsk, Nynorsk', 'nn_NO', '1 ', 'iso-8859-1', 'nn:no@nynorsk:no_NY:no:nb' ],
+'nn' => [ 'Norwegian Nynorsk', 'Norsk, Nynorsk', 'nn_NO', '1 ', 'iso-8859-15', 'nn:no@nynorsk:no_NY:no:nb' ],
+'nr' => [ 'Ndebele', 'IsiNdebele', 'nr_ZA', ' 3 ', 'utf_lat1', 'nr:en_ZA' ],
+'nso' => [ 'Northern Sotho', 'Sesotho sa Leboa', 'nso_ZA', ' 3 ', 'utf_lat1', 'st:nso:en_ZA' ],
'oc' => [ 'Occitan', 'Occitan', 'oc_FR', '1 ', 'utf_lat1', 'oc:fr_FR:fr' ],
'pa_IN' => [ 'Punjabi (gurmukhi)', 'ZZ Punjabi', 'pa_IN', ' 2 ', 'utf_guru' ],
-#- 'tl' in priority position for now, as 'fil' is not much used.
-#- Monolingual window managers will not see the menus otherwise
-#- "ph_PH" should change to "fil_PH" in the future ("ph" is not
-#- standard lang code, "fil" is standard)
-'ph' => [ 'Filipino', 'Filipino', 'ph_PH', ' 2 ', 'utf_lat1', 'tl:fil' ],
'pl' => [ 'Polish', 'Polski', 'pl_PL', '1 ', 'iso-8859-2' ],
'pt' => [ 'Portuguese', 'Portugues', 'pt_PT', '1 3 ', 'iso-8859-15', 'pt_PT:pt:pt_BR' ],
'pt_BR' => [ 'Portuguese Brazil', 'Portugues do Brasil', 'pt_BR', ' 5', 'iso-8859-1', 'pt_BR:pt_PT:pt' ],
@@ -117,41 +128,44 @@ our %langs = (
'qu' => [ 'Quichua', 'Runa Simi', 'es_PE', ' 5', 'utf_lat1', 'qu:es_PE:es' ],
'ro' => [ 'Romanian', 'Romana', 'ro_RO', '1 ', 'iso-8859-2' ],
'ru' => [ 'Russian', 'Russkij', 'ru_RU', '12 ', 'koi8-u' ],
+'rw' => [ 'Kinyarwanda', 'Kinyarwanda', 'rw_RW', ' 3 ', 'utf_lat1', 'rw' ],
'sc' => [ 'Sardinian', 'Sardu', 'sc_IT', '1 ', 'utf_lat1', 'sc:it_IT:it' ],
'se' => [ 'Saami', 'Samegiella', 'se_NO', '1 ', 'unicode' ],
'sk' => [ 'Slovak', 'Slovencina', 'sk_SK', '1 ', 'iso-8859-2' ],
'sl' => [ 'Slovenian', 'Slovenscina', 'sl_SI', '1 ', 'iso-8859-2' ],
+'so' => [ 'Somali', 'Soomaali', 'so_SO', ' 3 ', 'utf_lat1' ],
'sq' => [ 'Albanian', 'Shqip', 'sq_AL', '1 ', 'iso-8859-1' ],
'sr' => [ 'Serbian Cyrillic', 'Srpska', 'sr_CS', '1 ', 'utf_cyr1', 'sp:sr' ],
#- "sh" comes first, because otherwise, due to the way glibc does language
#- fallback, if "sr@Latn" is not there but a "sr" (whichs uses cyrillic)
#- is there, "sh" will never be used.
'sr@Latn' => [ 'Serbian Latin', 'Srpska', 'sr_CS', '1 ', 'unicode', 'sh:sr@Latn' ],
-#- ss_ZA not yet done, using en_ZA locale instead
-'ss' => [ 'Swati', 'SiSwati', 'en_ZA', ' 3 ', 'utf_lat1', 'ss:en_ZA' ],
+'ss' => [ 'Swati', 'SiSwati', 'ss_ZA', ' 3 ', 'utf_lat1', 'ss:en_ZA' ],
'st' => [ 'Sotho', 'Sesotho', 'st_ZA', ' 3 ', 'utf_lat1', 'st:nso:en_ZA' ],
-'sv' => [ 'Swedish', 'Svenska', 'sv_SE', '1 ', 'iso-8859-1' ],
+'sv' => [ 'Swedish', 'Svenska', 'sv_SE', '1 ', 'iso-8859-15' ],
'ta' => [ 'Tamil', 'ZZ Tamil', 'ta_IN', ' 2 ', 'utf_taml' ],
'te' => [ 'Telugu', 'ZZ Telugu', 'te_IN', ' 2 ', 'unicode' ],
'tg' => [ 'Tajik', 'Tojiki', 'tg_TJ', ' 2 ', 'utf_cyr2' ],
'th' => [ 'Thai', 'ZZ Thai', 'th_TH', ' 2 ', 'tis620' ],
'tk' => [ 'Turkmen', 'Turkmence', 'tk_TM', ' 2 ', 'utf_az' ],
+'tn' => [ 'Tswana', 'Setswana', 'tn_ZA', ' 3 ', 'utf_lat1', 'tn:en_ZA' ],
'tr' => [ 'Turkish', 'Turkce', 'tr_TR', '12 ', 'iso-8859-9' ],
+'ts' => [ 'Tsonga', 'Xitsonga', 'ts_ZA', ' 3 ', 'utf_lat1', 'ts:en_ZA' ],
'tt' => [ 'Tatar', 'Tatarca', 'tt_RU', ' 2 ', 'utf_lat5' ],
-#- ug_CN locale not done yet, using ar_EG locale instead
-'ug' => [ 'Uyghur', 'AA Uyghur', 'ar_EG', ' 2 ', 'utf_ar', 'ug' ],
+'ug' => [ 'Uyghur', 'AA Uyghur', 'ug_CN', ' 2 ', 'utf_ar', 'ug' ],
'uk' => [ 'Ukrainian', 'Ukrayinska', 'uk_UA', '1 ', 'koi8-u' ],
'ur' => [ 'Urdu', 'AA Urdu', 'ur_PK', ' 2 ', 'utf_ar' ],
'uz@Latn' => [ 'Uzbek (latin)', 'Ozbekcha', 'uz_UZ', ' 2 ', 'utf_cyr2', 'uz@Latn:uz' ],
'uz' => [ 'Uzbek (cyrillic)', 'Ozbekcha', 'uz_UZ', ' 2 ', 'utf_cyr2', 'uz@Cyrl:uz' ],
-#- ve_ZA not yet done, using en_ZA locale instead
-'ve' => [ 'Venda', 'Venda', 'en_ZA', ' 3 ', 'utf_lat1', 've:ven:en_ZA' ],
+'ve' => [ 'Venda', 'Tshivenda', 've_ZA', ' 3 ', 'utf_lat1', 've:ven:en_ZA' ],
'vi' => [ 'Vietnamese', 'Tieng Viet', 'vi_VN', ' 2 ', 'utf_vi' ],
'wa' => [ 'Walon', 'Walon', 'wa_BE', '1 ', 'utf_lat1', 'wa:fr_BE:fr' ],
-#- locale not done yet
-#'wen' => [ 'Sorbian', 'XX Sorbian', 'wen_XX', '1 ', 'utf_lat1' ],
+#- locale "wen_DE" not done yet, using "de_DE" instead
+#- wen disabled until we have a perl-install/pixmaps/langs/lang-wen.png for it
+#'wen' => [ 'Sorbian', 'Sorbian', 'de_DE', '1 ', 'utf_lat1', 'wen' ],
'xh' => [ 'Xhosa', 'IsiXhosa', 'xh_ZA', ' 3 ', 'utf_lat1', 'xh:en_ZA' ],
'yi' => [ 'Yiddish', 'AA Yidish', 'yi_US', '1 ', 'utf_he' ],
+'yo' => [ 'Yoruba', 'Yoruba', 'yo_NG', ' 3 ', 'utf_yo', 'yo:en_NG' ],
'zh_CN' => [ 'Chinese Simplified', 'ZZ ZhongWen', 'zh_CN', ' 2 ', 'gb2312', 'zh_CN.GBK:zh_CN.GB2312:zh_CN:zh' ],
'zh_TW' => [ 'Chinese Traditional', 'ZZ ZhongWen', 'zh_TW', ' 2 ', 'Big5', 'zh_TW.Big5:zh_TW:zh_HK:zh' ],
'zu' => [ 'Zulu', 'IsiZulu', 'zu_ZA', ' 3 ', 'utf_lat1', 'xh:en_ZA' ],
@@ -160,8 +174,9 @@ sub l2name { exists $langs{$_[0]} && $langs{$_[0]}[0] }
sub l2transliterated { exists $langs{$_[0]} && $langs{$_[0]}[1] }
sub l2locale { exists $langs{$_[0]} && $langs{$_[0]}[2] }
sub l2location {
+ my ($lang) = @_;
my %geo = (1 => 'Europe', 2 => 'Asia', 3 => 'Africa', 4 => 'Oceania/Pacific', 5 => 'America');
- map { if_($langs{$_[0]}[3] =~ $_, $geo{$_}) } 1..5;
+ map { $geo{$_} } grep { $langs{$lang} && $langs{$lang}[3] =~ $_ } 1..5;
}
sub l2charset { exists $langs{$_[0]} && $langs{$_[0]}[4] }
sub l2language { exists $langs{$_[0]} && $langs{$_[0]}[5] }
@@ -192,7 +207,7 @@ sub text_direction_rtl() {
#- the locale is not the "correct" one. 'en_US' is used when no good choice
#- is available.
my %countries = (
-'AD' => [ N_("Andorra"), 'ca_ES', '1' ], #
+'AD' => [ N_("Andorra"), 'ca_AD', '1' ],
'AE' => [ N_("United Arab Emirates"), 'ar_AE', '2' ],
'AF' => [ N_("Afghanistan"), 'en_US', '2' ], #
'AG' => [ N_("Antigua and Barbuda"), 'en_US', '5' ], #
@@ -222,7 +237,7 @@ my %countries = (
'BO' => [ N_("Bolivia"), 'es_BO', '5' ],
'BR' => [ N_("Brazil"), 'pt_BR', '5' ],
'BS' => [ N_("Bahamas"), 'en_US', '5' ], #
-'BT' => [ N_("Bhutan"), 'en_IN', '2' ], # dz_BT
+'BT' => [ N_("Bhutan"), 'dz_BT', '2' ],
'BV' => [ N_("Bouvet Island"), 'en_US', '3' ], #
'BW' => [ N_("Botswana"), 'en_BW', '3' ],
'BY' => [ N_("Belarus"), 'be_BY', '1' ],
@@ -244,7 +259,7 @@ my %countries = (
'CU' => [ N_("Cuba"), 'es_DO', '5' ], #
'CV' => [ N_("Cape Verde"), 'pt_PT', '3' ], #
'CX' => [ N_("Christmas Island"), 'en_US', '4' ], #
-'CY' => [ N_("Cyprus"), 'en_US', '1' ], #
+'CY' => [ N_("Cyprus"), 'el_CY', '1' ],
'CZ' => [ N_("Czech Republic"), 'cs_CZ', '2' ],
'DE' => [ N_("Germany"), 'de_DE', '1' ],
'DJ' => [ N_("Djibouti"), 'en_US', '3' ], #
@@ -311,12 +326,12 @@ my %countries = (
'KR' => [ N_("Korea"), 'ko_KR', '2' ],
'KW' => [ N_("Kuwait"), 'ar_KW', '2' ],
'KY' => [ N_("Cayman Islands"), 'en_US', '5' ], #
-'KZ' => [ N_("Kazakhstan"), 'ru_RU', '2' ], #
+'KZ' => [ N_("Kazakhstan"), 'kk_KZ', '2' ],
'LA' => [ N_("Laos"), 'lo_LA', '2' ],
'LB' => [ N_("Lebanon"), 'ar_LB', '2' ],
'LC' => [ N_("Saint Lucia"), 'en_US', '5' ], #
'LI' => [ N_("Liechtenstein"), 'de_CH', '1' ], #
-'LK' => [ N_("Sri Lanka"), 'en_IN', '2' ], #
+'LK' => [ N_("Sri Lanka"), 'si_LK', '2' ],
'LR' => [ N_("Liberia"), 'en_US', '3' ], #
'LS' => [ N_("Lesotho"), 'en_BW', '3' ], #
'LT' => [ N_("Lithuania"), 'lt_LT', '1' ],
@@ -326,11 +341,11 @@ my %countries = (
'MA' => [ N_("Morocco"), 'ar_MA', '3' ],
'MC' => [ N_("Monaco"), 'fr_FR', '1' ], #
'MD' => [ N_("Moldova"), 'ro_RO', '1' ], #
-'MG' => [ N_("Madagascar"), 'fr_FR', '3' ], #
+'MG' => [ N_("Madagascar"), 'mg_MG', '3' ],
'MH' => [ N_("Marshall Islands"), 'en_US', '4' ], #
'MK' => [ N_("Macedonia"), 'mk_MK', '1' ],
'ML' => [ N_("Mali"), 'en_US', '3' ], #
-'MM' => [ N_("Myanmar"), 'en_US', '2' ], #
+'MM' => [ N_("Myanmar"), 'en_US', '2' ], # my_MM
'MN' => [ N_("Mongolia"), 'mn_MN', '2' ],
'MP' => [ N_("Northern Mariana Islands"), 'en_US', '2' ], #
'MQ' => [ N_("Martinique"), 'fr_FR', '5' ], #
@@ -347,7 +362,7 @@ my %countries = (
'NC' => [ N_("New Caledonia"), 'fr_FR', '4' ], #
'NE' => [ N_("Niger"), 'en_US', '3' ], #
'NF' => [ N_("Norfolk Island"), 'en_GB', '4' ], #
-'NG' => [ N_("Nigeria"), 'en_US', '3' ], #
+'NG' => [ N_("Nigeria"), 'en_NG', '3' ],
'NI' => [ N_("Nicaragua"), 'es_NI', '5' ],
'NL' => [ N_("Netherlands"), 'nl_NL', '1' ],
'NO' => [ N_("Norway"), 'nb_NO', '1' ],
@@ -360,7 +375,7 @@ my %countries = (
'PE' => [ N_("Peru"), 'es_PE', '5' ],
'PF' => [ N_("French Polynesia"), 'fr_FR', '4' ], #
'PG' => [ N_("Papua New Guinea"), 'en_NZ', '4' ], #
-'PH' => [ N_("Philippines"), 'ph_PH', '2' ],
+'PH' => [ N_("Philippines"), 'fil_PH', '2' ],
'PK' => [ N_("Pakistan"), 'ur_PK', '2' ],
'PL' => [ N_("Poland"), 'pl_PL', '1' ],
'PM' => [ N_("Saint Pierre and Miquelon"), 'fr_CA', '5' ], #
@@ -374,7 +389,7 @@ my %countries = (
'RE' => [ N_("Reunion"), 'fr_FR', '2' ], #
'RO' => [ N_("Romania"), 'ro_RO', '1' ],
'RU' => [ N_("Russia"), 'ru_RU', '1' ],
-'RW' => [ N_("Rwanda"), 'fr_FR', '3' ], # rw_RW
+'RW' => [ N_("Rwanda"), 'rw_RW', '3' ],
'SA' => [ N_("Saudi Arabia"), 'ar_SA', '2' ],
'SB' => [ N_("Solomon Islands"), 'en_US', '4' ], #
'SC' => [ N_("Seychelles"), 'en_US', '4' ], #
@@ -388,7 +403,7 @@ my %countries = (
'SL' => [ N_("Sierra Leone"), 'en_US', '3' ], #
'SM' => [ N_("San Marino"), 'it_IT', '1' ], #
'SN' => [ N_("Senegal"), 'fr_FR', '3' ], #
-'SO' => [ N_("Somalia"), 'en_US', '3' ], # so_SO
+'SO' => [ N_("Somalia"), 'so_SO', '3' ],
'SR' => [ N_("Suriname"), 'nl_NL', '5' ], #
'ST' => [ N_("Sao Tome and Principe"), 'en_US', '5' ], #
'SV' => [ N_("El Salvador"), 'es_SV', '5' ],
@@ -411,7 +426,7 @@ my %countries = (
'TW' => [ N_("Taiwan"), 'zh_TW', '2' ],
'TZ' => [ N_("Tanzania"), 'en_US', '3' ], #
'UA' => [ N_("Ukraine"), 'uk_UA', '1' ],
-'UG' => [ N_("Uganda"), 'en_US', '3' ], # lug_UG
+'UG' => [ N_("Uganda"), 'lg_UG', '3' ],
'UM' => [ N_("United States Minor Outlying Islands"), 'en_US', '5' ], #
'US' => [ N_("United States"), 'en_US', '5' ],
'UY' => [ N_("Uruguay"), 'es_UY', '5' ],
@@ -440,8 +455,8 @@ sub list_countries {
}
#- this list is built with the following command on the compile cluster:
-#- rpm -qpl /RPMS/locales-* | grep LC_CTYPE | cut -d'/' -f5 | grep '_' | grep -v '\.' | sort | tr '\n' ' ' ; echo
-our @locales = qw(af_ZA am_ET an_ES ar_AE ar_BH ar_DZ ar_EG ar_IN ar_IQ ar_JO ar_KW ar_LB ar_LY ar_MA ar_OM ar_QA ar_SA ar_SD ar_SY ar_TN ar_YE as_IN az_AZ be_BY bg_BG bn_BD bn_IN br_FR bs_BA ca_ES cs_CZ cy_GB da_DK de_AT de_BE de_CH de_DE de_LU el_GR en_AU en_BE en_BW en_CA en_DK en_GB en_HK en_IE en_IN en_NZ en_PH en_SG en_US en_ZA en_ZW eo_XX es_AR es_BO es_CL es_CO es_CR es_DO es_EC es_ES es_GT es_HN es_MX es_NI es_PA es_PE es_PR es_PY es_SV es_US es_UY es_VE et_EE eu_ES fa_IR fi_FI fo_FO fr_BE fr_CA fr_CH fr_FR fr_LU fur_IT fy_DE fy_NL ga_IE gd_GB gez_ER gez_ER@abegede gez_ET gez_ET@abegede gl_ES gu_IN gv_GB he_IL hi_IN hr_HR hu_HU hy_AM id_ID ik_CA is_IS it_CH it_IT iu_CA ja_JP ka_GE kl_GL km_KH kn_IN ko_KR ku_TR kw_GB ky_KG li_BE li_NL lo_LA lt_LT lv_LV mi_NZ mk_MK ml_IN mn_MN mr_IN ms_MY mt_MT nb_NO nds_DE nds_DE@traditional nds_NL ne_NP nl_BE nl_NL nn_NO no_NO oc_FR om_ET om_KE pa_IN ph_PH pl_PL pt_BR pt_PT ro_RO ru_RU ru_UA sc_IT se_NO sid_ET sk_SK sl_SI sq_AL sr_CS sr_CS@Latn sr_YU sr_YU@Latn st_ZA sv_FI sv_SE sw_XX ta_IN te_IN tg_TJ th_TH ti_ER ti_ET tig_ER tk_TM tl_PH tr_TR tt_RU uk_UA ur_PK uz_UZ uz_UZ@Cyrl uz_UZ@Latn vi_VN wa_BE xh_ZA yi_US zh_CN zh_HK zh_SG zh_TW zu_ZA);
+#- rpm -qpl /cooker/RPMS/locales-* | grep LC_CTYPE | grep '\.UTF-8' | cut -d'/' -f5 | sed 's/.UTF-8//' | sort | tr '\n' ' ' ; echo
+our @locales = qw(aa_DJ aa_ER aa_ER@saaho aa_ET af_ZA am_ET an_ES ar_AE ar_BH ar_DZ ar_EG ar_IN ar_IQ ar_JO ar_KW ar_LB ar_LY ar_MA ar_OM ar_QA ar_SA ar_SD ar_SY ar_TN ar_YE as_IN az_AZ be_BY ber_DZ ber_MA bg_BG bn_BD bn_IN br_FR bs_BA byn_ER ca_AD ca_ES ca_FR ca_IT cs_CZ cy_GB da_DK de_AT de_BE de_CH de_DE de_LU dz_BT el_CY el_GR en_AU en_BE en_BW en_CA en_DK en_GB en_HK en_IE en_IN en_NG en_NZ en_PH en_SG en_US en_ZA en_ZW eo_XX es_AR es_BO es_CL es_CO es_CR es_DO es_EC es_ES es_GT es_HN es_MX es_NI es_PA es_PE es_PR es_PY es_SV es_US es_UY es_VE et_EE eu_ES fa_IR fi_FI fil_PH fo_FO fr_BE fr_CA fr_CH fr_FR fr_LU fur_IT fy_DE fy_NL ga_IE gd_GB gez_ER gez_ER@abegede gez_ET gez_ET@abegede gl_ES gu_IN gv_GB ha_NG he_IL hi_IN hr_HR hsb_DE hu_HU hy_AM id_ID ig_NG ik_CA is_IS it_CH it_IT iu_CA ja_JP ka_GE kk_KZ kl_GL km_KH kn_IN ko_KR ku_TR kw_GB ky_KG lg_UG li_BE li_NL lo_LA lt_LT lv_LV mg_MG mi_NZ mk_MK ml_IN mn_MN mr_IN ms_MY mt_MT nb_NO nds_DE nds_DE@traditional nds_NL ne_NP nl_BE nl_NL nn_NO no_NO nr_ZA nso_ZA oc_FR om_ET om_KE pa_IN pa_PK ph_PH pl_PL pt_BR pt_PT ro_RO ru_RU ru_UA rw_RW sc_IT se_NO sh_YU sid_ET si_LK sk_SK sl_SI so_DJ so_ET so_KE so_SO sq_AL sr_CS sr_CS@Latn sr_YU sr_YU@Latn ss_ZA st_ZA sv_FI sv_SE sw_XX ta_IN te_IN tg_TJ th_TH ti_ER ti_ET tig_ER tk_TM tl_PH tn_ZA tr_CY tr_TR ts_ZA tt_RU ug_CN uk_UA ur_PK uz_UZ uz_UZ@Cyrl uz_UZ@Latn ve_ZA vi_VN wa_BE wal_ET xh_ZA yi_US yo_NG zh_CN zh_HK zh_SG zh_TW zu_ZA);
sub standard_locale {
my ($lang, $country, $prefer_lang) = @_;
@@ -509,7 +524,7 @@ my @IM_i18n_fields = (
#- the module to use for Gtk programs ("xim" to use an X11
#- XIM server; or a a native gtk module if exists)
'XIM_PROGRAM',
-#- the program to run (usually the same as XIM value, but
+#- the XIM program to run (usually the same as XIM value, but
#- in some cases different, particularly if parameters are needed;
'QT_IM_MODULE',
#- the module to use for Qt programs ("xim" to use an X11
@@ -594,6 +609,14 @@ my %IM_config =
XMODIFIERS => '@im=nabi',
},
+ oxim => {
+ GTK_IM_MODULE => 'oxim',
+ QT_IM_MODULE => 'oxim',
+ XIM => 'oxim',
+ XIM_PROGRAM => 'oxim',
+ XMODIFIERS => '@im=oxim', # '@im=SCIM' is broken for now
+ packages => { generic => 'oxim' },
+ },
'scim+(default)' => {
GTK_IM_MODULE => 'scim',
QT_IM_MODULE => 'scim',
@@ -739,12 +762,16 @@ my %charsets = (
"utf_laoo" => [ undef, undef, undef, "utf8", undef ],
"utf_lat1" => [ "lat0-16", undef, undef, "utf8", undef ],
"utf_lat5" => [ "lat5u-16", undef, undef, "utf8", undef ],
+"utf_lat7" => [ "tlat7", undef, undef, "utf8", undef ],
"utf_lat8" => [ "iso14.f16", undef, undef, "utf8", undef ],
"utf_mlym" => [ undef, undef, undef, "utf8", undef ],
+"utf_mymr" => [ undef, undef, undef, "utf8", undef ],
"utf_taml" => [ "tamil", undef, undef, "utf8", undef ],
# console font still to do
"utf_tfng" => [ undef, undef, undef, "utf8", undef ],
+"utf_tibt" => [ undef, undef, undef, "utf8", undef ],
"utf_vi" => [ "tcvn8x16", undef, undef, "utf8", undef ],
+"utf_yo" => [ undef, undef, undef, "utf8", undef ],
# default for utf-8 encodings
"unicode" => [ "LatArCyrHeb-16", undef, undef, "utf8", undef ],
);
@@ -777,16 +804,20 @@ sub get_kde_lang {
#- get it using
#- echo C $(rpm -qp --qf "%{name}\n" /RPMS/kde-i18n-* | sed 's/kde-i18n-//')
my @valid_kde_langs = qw(C
-af ar az be bg bn br bs ca cs cy da de el en_GB eo es et eu fa fi fo fr ga gl he hi hr hsb hu id is it ja ko ku lo lt lv mi mk mn ms mt nb nds nl nn nso oc pl pt pt_BR ro ru se sk sl sr ss sv ta tg th tr uk uz ven vi wa wen xh zh_CN zh_TW zu);
+af ar az be bg bn br bs ca cs cy da de el en_GB eo es et eu fa fi fo fr ga gl he hi hr hsb hu id is it ja ko ku lo lt lv mi mk mn ms mt nb nds nl nn nso oc pa pl pt pt_BR ro ru se sk sl sr ss sv ta tg th tr uk uz ven vi wa wen xh zh_CN zh_TW zu);
my %valid_kde_langs; @valid_kde_langs{@valid_kde_langs} = ();
my $valid_lang = sub {
my ($lang) = @_;
#- fast & dirty solution to ensure bad entries do not happen
my %fixlangs = (en => 'C', en_US => 'C',
+ en_AU => 'en_GB', en_CA => 'en_GB',
+ en_IE => 'en_GB', en_NZ => 'en_GB',
+ pa_IN => 'pa',
'sr@Latn' => 'sr',
- st => 'nso', ve => 'ven',
- zh_CN => 'zh_CN', zh_SG => 'zh_CN', zh_TW => 'zh_TW', zh_HK => 'zh_TW');
+ ve => 'ven',
+ zh_CN => 'zh_CN', zh_SG => 'zh_CN',
+ zh_TW => 'zh_TW', zh_HK => 'zh_TW');
exists $fixlangs{$lang} ? $fixlangs{$lang} :
exists $valid_kde_langs{$lang} ? $lang :
exists $valid_kde_langs{locale_to_main_locale($lang)} ? locale_to_main_locale($lang) : '';
@@ -824,41 +855,45 @@ my %charset2kde_font = (
'C' => [ "Sans,10", "Monospace,10" ],
'iso-8859-1' => [ "Sans,10", "Monospace,10" ],
'iso-8859-2' => [ "Sans,10", "Monospace,10" ],
- 'iso-8859-7' => [ "Helvetica,12", "courier,10", "Helvetica,11" ],
+ 'iso-8859-7' => [ "DejaVu Sans,10", "FreeMono,10" ],
'iso-8859-9' => [ "Sans,10", "Monospace,10" ],
- 'iso-8859-15' => [ "Sans,10", "Monospace,10" ],
'iso-8859-13' => [ "Sans,10", "Monospace,10" ],
- 'jisx0208' => [ "Sazanami Gothic,13" ],
- 'ksc5601' => [ "Baekmuk Gulim,16" ],
+ 'iso-8859-15' => [ "Sans,10", "Monospace,10" ],
+ 'jisx0208' => [ "UmePlus P Gothic,12", "UmePlus Gothic,12" ],
+ 'ksc5601' => [ "Baekmuk Gulim,12" ],
'gb2312' => [ "Sans,10", "Monospace,10" ],
'Big5' => [ "Sans,10", "Monospace,10" ],
'tis620' => [ "Norasi,16", "Norasi,15" ],
- 'koi8-u' => [ "Nimbus Sans L,10", "Monospace,10" ],
- 'utf_ar' => [ "Terafik,14", "Courier New,13", "Terafik,13" ],
- 'utf_az' => [ "Nimbus Sans L,12", "Nimbus Mono L,10", "Nimbus Sans L,11" ],
- 'utf_he' => [ "Nachlieli CLM,13", "Miriam Mono CLM,10", "Nachlieli CLM,11" ],
+ 'koi8-u' => [ "DejaVu Sans,10", "FreeMono,10" ],
+ 'utf_ar' => [ "DejaVu Sans,11", "Courier New,13" ],
+ 'utf_az' => [ "DejaVu Sans,10", "FreeMono,10" ],
+ 'utf_he' => [ "DejaVu Sans,10", "FreeMono,10" ],
#-'utf_iu' => [ "????,14", ],
- 'utf_vi' => [ "Nimbus Sans L,12", "Nimbus Mono L,10", "Nimbus Sans L,11" ],
+ 'utf_vi' => [ "DejaVu Sans,12", "FreeMono,11", "DejaVu Sans,11" ],
+ 'utf_yo' => [ "DejaVu Sans,12", "FreeMono,11", "DejaVu Sans,11" ],
#- script based
- 'utf_armn' => [ "Artsounk,12", "Monospace,10", "Artsounk,11" ],
- 'utf_cyr2' => [ "Nimbus Sans L,10", "Monospace,10" ],
- 'utf_beng' => [ "Mukti Narrow,14", "Mitra Mono,12", "Mukti Narrow,14" ],
- 'utf_deva' => [ "Raghindi,14", ],
- 'utf_ethi' => [ "GF Zemen Unicode,15" ],
+ 'utf_armn' => [ "DejaVu Sans,11", "FreeMono,11" ],
+ 'utf_cyr2' => [ "DejaVu Sans,10", "FreeMono,10" ],
+ 'utf_beng' => [ "Mukti Narrow,13", "Mitra Mono,13", "Mukti Narrow,12" ],
+ 'utf_deva' => [ "Raghindi,12", ],
+ 'utf_ethi' => [ "GF Zemen Unicode,13" ],
'utf_guru' => [ "Lohit Punjab,14", ],
#-'utf_khmr' => [ "????,14", ],
'utf_knda' => [ "Sampige,14", ],
'utf_lat1' => [ "Sans,10", "Monospace,10" ],
'utf_lat5' => [ "Sans,10", "Monospace,10" ],
- 'utf_lat8' => [ "Sans,10", "Monospace,10" ],
- 'utf_mlym' => [ "malayalam,14", ],
- 'utf_taml' => [ "TSCu_Paranar,14", "Tsc_avarangalfxd,10", "TSCu_Paranar,12", ],
- 'utf_tfng' => [ "Hapax Berbère,14", ],
+ 'utf_lat7' => [ "Sans,10", "Monospace,10" ],
+ 'utf_lat8' => [ "DejaVu Sans,10", "FreeMono,10" ],
+ 'utf_mlym' => [ "malayalam,12", ],
+#-'utf_mymr' => [ "????,14", ],
+ 'utf_taml' => [ "TSCu_Paranar,14", "Tsc_avarangalfxd,14", "TSCu_Paranar,13", ],
+ 'utf_tfng' => [ "Hapax Berbère,12", ],
+ 'utf_tibt' => [ "Tibetan Machine Uni,14", ],
#- the following should be changed to better defaults when better fonts
#- get available
- 'utf_geor' => [ "ClearlyU,15" ],
- 'utf_laoo' => [ "ClearlyU,15" ],
- 'default' => [ "Sans,12", "Monospace,10", "Sans,11" ],
+ 'utf_geor' => [ "ClearlyU,13" ],
+ 'utf_laoo' => [ "DejaVu Sans,11", "ClearlyU,13" ],
+ 'default' => [ "DejaVu Sans,12", "FreeMono,11", "DejaVu Sans,11" ],
);
sub charset2kde_font {
@@ -876,21 +911,12 @@ sub charset2kde_font {
# on the "charset" defined by language array. This allows to selecting
# an appropriate font for each language for the installer only.
my %charset2pango_font = (
- 'tis620' => "Norasi 17",
- 'utf_ar' => "Roya 14",
- 'utf_armn' => "Artsounk 14",
- 'utf_cyr2' => "Nimbus Sans L 12",
'utf_geor' => "Sans 14",
- 'utf_he' => "Sans 12",
- 'utf_laoo' => "Sans 14",
'utf_taml' => "TSCu_Paranar 14",
- 'utf_vi' => "Sans 14",
- 'iso-8859-7' => "Kerkis 14",
'jisx0208' => "Sans 14",
- #- Nimbus Sans L is missing some chars used by some cyrillic languages,
- #- but tose have not yet DrakX translations; it also misses vietnamese
- #- latin chars; all other latin and cyrillic are covered.
- 'default' => "Sans 10"
+ 'utf_ar' => "Sans 15",
+ 'tis620' => "Norasi 20",
+ 'default' => "DejaVu Sans 12"
);
sub charset2pango_font {
@@ -912,36 +938,20 @@ sub l2pango_font {
sub set {
my ($locale, $b_translate_for_console) = @_;
+ put_in_hash(\%ENV, i18n_env($locale));
+
if ($::move) {
- move::handleI18NClp($locale->{lang});
- put_in_hash(\%ENV, i18n_env($locale));
- return;
} elsif (!$::isInstall) {
- put_in_hash(\%ENV, i18n_env($locale));
bindtextdomain();
- return;
- }
-
- my $lang = $locale->{lang};
- exists $langs{$lang} or log::l("lang::set: trying to set to $lang but I do not know it!"), return;
-
- #- set all LC_* variables to a unique locale ("C"), and only redefine
- #- LC_COLLATE (for sorting) and LANGUAGE (for the po files)
- $ENV{$_} = 'C' foreach qw(LC_NUMERIC LC_TIME LC_MONETARY LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT LC_IDENTIFICATION);
-
- $ENV{LC_CTYPE} = $lang;
- $ENV{LC_MESSAGES} = $lang;
- $ENV{LC_COLLATE} = $lang;
- $ENV{LANG} = $lang;
-
- if ($b_translate_for_console && $lang =~ /^(ko|ja|zh|th)/) {
- log::l("not translating in console");
- $ENV{LANGUAGE} = 'C';
} else {
- $ENV{LANGUAGE} = getLANGUAGE($lang);
+ $ENV{LC_NUMERIC} = 'C'; #- otherwise eval "1.5" returns 1 in fr_FR
+
+ if ($b_translate_for_console && $locale->{lang} =~ /^(ko|ja|zh|th)/) {
+ log::l("not translating in console");
+ $ENV{LANGUAGE} = 'C';
+ }
+ load_mo();
}
- load_mo();
- $lang;
}
sub langs {
@@ -955,9 +965,8 @@ sub langsLANGUAGE {
}
sub utf8_should_be_needed {
- my ($locale) = @_;
- my @l = uniq(grep { $_ ne 'C' } map { l2charset($_) } langs($locale->{langs}));
- @l > 1 || any { /utf|unicode/ } @l;
+ my ($_locale) = @_;
+ 1;
}
sub pack_langs {
@@ -1031,7 +1040,7 @@ sub i18n_env {
(map { $_ => $locale_country } qw(LC_NUMERIC LC_MONETARY LC_ADDRESS LC_MEASUREMENT LC_NAME LC_PAPER LC_IDENTIFICATION LC_TELEPHONE))
};
- log::l("lang::write: lang:$locale->{lang} country:$locale->{country} locale|lang:$locale_lang locale|country:$locale_country language:$h->{LANGUAGE}");
+ log::l("i18n_env: lang:$locale->{lang} country:$locale->{country} locale|lang:$locale_lang locale|country:$locale_country LANGUAGE:$h->{LANGUAGE}");
$h;
}
@@ -1042,7 +1051,7 @@ sub write_and_install {
my @packages = IM2packages($locale);
if (@packages && !$b_user_only) {
log::explanations("Installing IM packages: ", join(', ', @packages));
- $do_pkgs->install(@packages);
+ $do_pkgs->ensure_are_installed(\@packages, 1);
}
&write($locale, $b_user_only, $b_dont_touch_kde_files);
}
@@ -1108,7 +1117,7 @@ sub write {
if (member($locale->{lang}, qw(ar bn fa he hi ja kn ko pa_IN ug ur yi zh_TW zh_CN))) {
#- CONSOLE_NOT_LOCALIZED if defined to yes, disables translations on console
#- it is needed for languages not supported by the linux console
- log::explanations(qq(Disabling tranlsation on console since "$locale->{lang}" is not supported by the console));
+ log::explanations(qq(Disabling translation on console since "$locale->{lang}" is not supported by the console));
add2hash($h, { CONSOLE_NOT_LOCALIZED => 'yes' });
}
@@ -1116,14 +1125,9 @@ sub write {
log::explanations(qq(Setting l10n configuration in "$file"));
setVarsInSh($::prefix . $file, $h);
- if (!$b_user_only) {
- log::explanations("Set default menu language");
- substInFile {
- s!^function lang\b.*!function lang()="$h->{LANG}"!g;
- } "$::prefix/etc/menu-methods/lang.h" if !$b_user_only;
- }
-
configure_hal($locale) if !$b_user_only;
+
+ run_program::rooted($::prefix, 'grub-gfxmenu', '--quiet', '--lang', $locale->{lang});
my $charset = l2charset($locale->{lang});
my $qtglobals = $b_user_only ? "$ENV{HOME}/.qt/qtrc" : "$::prefix/etc/qtrc";
@@ -1132,7 +1136,8 @@ sub write {
));
eval {
- my $confdir = $::prefix . ($b_user_only ? "$ENV{HOME}/.kde" : '/usr') . '/share/config';
+ my %dir_defaults = read_gnomekderc("$::prefix/etc/kderc", 'Directories-default');
+ my $confdir = $::prefix . ($b_user_only ? "$ENV{HOME}/.kde" : first(split(',', $dir_defaults{prefixes})) || "/etc/kde") . '/share/config';
-d $confdir or die 'not configuring kde config files since it is not installed/used';
@@ -1161,7 +1166,7 @@ sub write {
s/^(FailFont)=.*/$1=$font_small,5,$kde_charset,75,0/;
s/^(GreetFont)=.*/$1=$font_huge,5,$kde_charset,50,0/;
}
- } "$::prefix/usr/share/config/kdm/kdmrc";
+ } "$::prefix/etc/kde/kdm/kdmrc";
}
} if !$b_dont_touch_kde_files;
@@ -1198,7 +1203,7 @@ EOF
output_p("$::prefix/usr/share/hal/fdi/30osvendor/locale-policy.fdi",
sprintf(<<'EOF', $options_per_fs, $options->('storage', 'cdrom')));
-<?xml version="1.0" encoding="ISO-8859-1"?> <!-- -*- SGML -*- -->
+<?xml version="1.0" encoding="UTF-8"?> <!-- -*- SGML -*- -->
<deviceinfo version="0.2">
@@ -1261,9 +1266,10 @@ sub bindtextdomain() {
my $localedir = "$ENV{SHARE_PATH}/locale" . ($::prefix ? "_special" : '');
c::init_setlocale();
- $::need_utf8_i18n = 1;
- Locale::gettext::bind_textdomain_codeset('libDrakX', 'UTF-8');
- Locale::gettext::bindtextdomain('libDrakX', $localedir);
+ foreach (@::textdomains, 'libDrakX') {
+ Locale::gettext::bind_textdomain_codeset($_, 'UTF-8');
+ Locale::gettext::bindtextdomain($_, $localedir);
+ }
$localedir;
}
@@ -1294,6 +1300,8 @@ sub console_font_files() {
sub load_console_font {
my ($locale) = @_;
+ return if $::local_install;
+
my ($name, $sfm, $acm) = l2console_font($locale, 1);
require run_program;
@@ -1354,7 +1362,7 @@ sub check() {
foreach grep { !member($_->[1], @locales) } map { [ $_, l2locale($_) ] } list_langs();
$err->("lang image for lang $_->[0] is missing (file $_->[1])")
- foreach grep { !(-e $_->[1]) } map { [ $_, "pixmaps/langs/lang-$_.png" ] } list_langs();
+ foreach grep { !(-e $_->[1]) } map { [ $_, "install/pixmaps/langs/lang-$_.png" ] } list_langs();
$err->("default locale $_->[1] of country $_->[0] is not listed in \@locales")
foreach grep { !member($_->[1], @locales) } map { [ $_, c2locale($_) ] } list_countries();
diff --git a/perl-install/list_modules.pm b/perl-install/list_modules.pm
new file mode 120000
index 000000000..ef195bcfe
--- /dev/null
+++ b/perl-install/list_modules.pm
@@ -0,0 +1 @@
+../kernel/list_modules.pm \ No newline at end of file
diff --git a/perl-install/log.pm b/perl-install/log.pm
index da3c56037..365aa323c 100644
--- a/perl-install/log.pm
+++ b/perl-install/log.pm
@@ -7,23 +7,22 @@ use c;
my ($LOG, $LOG2);
-#-#####################################################################################
-#- Globals
-#-#####################################################################################
-
-#-######################################################################################
-#- Functions
-#-######################################################################################
-sub F() { $LOG }
sub l {
- $LOG or openLog();
if ($::testing) {
print STDERR @_, "\n";
- } elsif ($LOG) {
+ } elsif ($::isInstall) {
+ if (!$LOG) {
+ open $LOG, '>>', '/tmp/ddebug.log';
+ open $LOG2, '>', '/dev/tty3' if !$::local_install;
+ select((select($LOG), $| = 1)[0]);
+ select((select($LOG2), $| = 1)[0]) if !$::local_install;
+ }
print $LOG "* ", @_, "\n";
print $LOG2 "* ", @_, "\n" if $LOG2;
} elsif ($::isStandalone) {
+ #- openlog was done in standalone.pm
+
c::syslog(c::LOG_WARNING(), join("", @_));
} else {
print STDERR @_, "\n";
@@ -31,22 +30,15 @@ sub l {
}
sub openLog {
- my ($o_file) = @_;
-
- if ($o_file) { #- useLocal
- open $LOG, "> $o_file";
- } elsif ($::isInstall) {
- open $LOG, "> /dev/tty3";
- open $LOG2, ">> /tmp/ddebug.log";
- }
- select((select($LOG), $| = 1)[0]) if $LOG;
- select((select($LOG2), $| = 1)[0]) if $LOG2;
+ my ($file) = @_;
+ open $LOG, "> $file";
+ select((select($LOG), $| = 1)[0]);
}
sub closeLog() {
if ($LOG) {
close $LOG;
- close $LOG2;
+ close $LOG2 if $LOG2;
} elsif ($::isStandalone) {
c::closelog();
}
diff --git a/perl-install/install_messages.pm b/perl-install/messages.pm
index 18cd1d192..354ebea19 100644
--- a/perl-install/install_messages.pm
+++ b/perl-install/messages.pm
@@ -1,4 +1,4 @@
-package install_messages; # $Id$
+package messages; # $Id$
use diagnostics;
use strict;
@@ -141,7 +141,7 @@ consult the Errata available from:
Information on configuring your system is available in the post
install chapter of the Official Mandriva Linux User's Guide.",
-"http://www.mandriva.com/security");
+'http://www.mandriva.com/en/security/advisories');
}
1;
diff --git a/perl-install/crypto.pm b/perl-install/mirror.pm
index 3d7071618..3d7071618 100644
--- a/perl-install/crypto.pm
+++ b/perl-install/mirror.pm
diff --git a/perl-install/modalias.pm b/perl-install/modalias.pm
new file mode 100644
index 000000000..3ff863e30
--- /dev/null
+++ b/perl-install/modalias.pm
@@ -0,0 +1,84 @@
+package modalias;
+
+# TODO:
+# - be faster (Elapsed time: lspcidrake.pl ~ 0.28s instead of 0.12s for old lspcidrake
+
+use strict;
+use MDK::Common;
+use c;
+
+my @config_groups = (
+ [
+ "/lib/module-init-tools/modprobe.default",
+ "/etc/modprobe.conf",
+ "/etc/modprobe.d",
+ ],
+ [
+ "/lib/modules/" . c::kernel_version() . "/modules.alias",
+ ],
+);
+my @classes = qw(ide ieee1394 input pci pcmcia pnp serio usb);
+my @alias_groups;
+
+sub alias_to_ids {
+ my ($alias) = @_;
+ my ($vendor, $device);
+ # returns (vendor, device)
+ if (($vendor, $device) = $alias =~ /:v([0-9A-F]{4})[dp]([0-9A-F]{4})/) {
+ return ($vendor, $device);
+ } elsif (($vendor, $device) = $alias =~ /:v0{4}([0-9A-F]{4})[dp]0{4}([0-9A-F]{4})/) {
+ return ($vendor, $device);
+ }
+}
+
+sub parse_path {
+ my ($group, $path) = @_;
+ if (-d $path) {
+ parse_path($group, "$path/$_") foreach all($path);
+ } elsif (-f $path) {
+ foreach (cat_($path)) {
+ if (my ($alias, $class, $module) = /^\s*alias\s+(([^:]+):\S+)\s+(\S+)$/) {
+ my ($vendor, $device) = alias_to_ids($alias);
+ if (member($class, @classes)) {
+ if ($vendor) {
+ $group->{$class} ||= {};
+ $group->{$class}{$vendor} ||= {};
+ $group->{$class}{$vendor}{$device} ||= [];
+ push @{$group->{$class}{$vendor}{$device}}, $alias, $module;
+ } else {
+ push @{$group->{$class}{other}}, $alias, $module;
+ }
+ }
+ }
+ }
+ }
+}
+
+sub get_alias_groups() {
+ @alias_groups = map {
+ my $group = {};
+ parse_path($group, $_) foreach @$_;
+ $group;
+ } @config_groups unless @alias_groups;
+ @alias_groups;
+}
+
+sub get_modules {
+ my ($modalias) = @_;
+ my ($class) = $modalias =~ /^([^:]+):\S+$/;
+ my ($vendor, $device) = alias_to_ids($modalias);
+ $class && member($class, @classes) or return;
+
+ require File::FnMatch;
+ foreach my $group (get_alias_groups()) {
+ my @aliases;
+ foreach my $subgroup ($group->{$class}{$vendor}{$device}, $group->{$class}{other}) {
+ foreach (group_by2(@$subgroup)) {
+ File::FnMatch::fnmatch($_->[0], $modalias) and push @aliases, $_->[1];
+ }
+ }
+ return uniq(@aliases) if @aliases;
+ }
+}
+
+1;
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index 98ef6cc4f..9191c454a 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -11,7 +11,7 @@ use modules::any_conf;
sub modules_descriptions() {
my $f = '/lib/modules/' . c::kernel_version() . '/modules.description';
- -e $f or $f = '/lib/modules.description';
+ -e $f or $f = '/modules/modules.description';
map { /(\S+)\s+(.*)/ } cat_($f);
}
@@ -47,7 +47,12 @@ sub mapping_26_24 {
sub cond_mapping_24_26 {
my ($modname) = @_;
- c::kernel_version() =~ /^\Q2.6/ && $mappings_24_26{$modname} || $modname;
+ $mappings_24_26{$modname} || $modname;
+}
+
+sub module_is_available {
+ my ($module) = @_;
+ find { m!/\Q$module\E\.k?o! } cat_($::prefix . '/lib/modules/' . c::kernel_version() . '/modules.dep');
}
#-###############################################################################
@@ -99,17 +104,10 @@ sub load {
sub load_and_configure {
my ($conf, $module, $o_options) = @_;
- my $category = module2category($module) || '';
- my $network_devices = $category =~ m!network/(main|gigabit|usb|wireless)! && [ detect_devices::getNet() ];
-
my @l = remove_loaded_modules(dependencies_closure(cond_mapping_24_26($module)));
load_raw(\@l, { $module => $o_options });
- if ($network_devices) {
- $conf->set_alias($_, $module) foreach difference2([ detect_devices::getNet() ], $network_devices);
- }
-
- if (c::kernel_version() =~ /^\Q2.6/ && member($module, 'imm', 'ppa')
+ if (member($module, 'imm', 'ppa')
&& ! -d "/proc/sys/dev/parport/parport0/devices/$module") {
log::l("$module loaded but is not useful, removing");
unload($module);
@@ -149,7 +147,7 @@ sub load_category {
my $other = { ahci => 'ata_piix', ata_piix => 'ahci' }->{$_->{driver}};
$_->{try} = 1 if $other;
($_, if_($other, { %$_, driver => $other }));
- } probe_category($category)),
+ } detect_devices::probe_category($category)),
(map { { driver => $_, description => $_, try => 1 } } @try_modules),
);
@@ -175,52 +173,28 @@ sub load_parallel_zip {
} 'imm', 'ppa';
}
-sub probe_category {
- my ($category) = @_;
-
- my @modules = category2modules($category);
-
- if_($category =~ /sound/ && arch() =~ /ppc/ && detect_devices::get_mac_model() !~ /IBM/,
- { driver => 'snd-powermac', description => 'Macintosh built-in' },
- ),
- grep {
- if ($category eq 'network/isdn') {
- my $b = $_->{driver} =~ /ISDN:([^,]*),?([^,]*)(?:,firmware=(.*))?/;
- if ($b) {
- $_->{driver} = $1;
- $_->{type} = $2;
- $_->{type} =~ s/type=//;
- $_->{firmware} = $3;
- $_->{driver} eq "hisax" and $_->{options} .= " id=HiSax";
- }
- $b;
- } else {
- member($_->{driver}, @modules);
- }
- } detect_devices::probeall();
-}
-
-
#-###############################################################################
#- modules.conf functions
#-###############################################################################
sub write_preload_conf {
my ($conf) = @_;
my @l;
+ my $is_laptop = detect_devices::isLaptop();
+ my $manufacturer = detect_devices::dmidecode_category('System')->{Manufacturer};
push @l, 'scsi_hostadapter' if $conf->get_probeall('scsi_hostadapter');
push @l, detect_devices::probe_name('Module');
- push @l, 'nvram' if detect_devices::isLaptop();
- push @l, map { $_->{driver} } probe_category($_) foreach qw(multimedia/dvb multimedia/tv various/laptop input/joystick various/crypto);
+ push @l, 'nvram' if $is_laptop;
+ push @l, map { $_->{driver} } detect_devices::probe_category($_) foreach qw(multimedia/dvb multimedia/tv various/agpgart various/laptop input/joystick various/crypto disk/card_reader);
push @l, 'padlock' if cat_("/proc/cpuinfo") =~ /rng_en/;
- push @l, 'evdev' if detect_devices::getSynapticsTouchpads();
- my @l_26 = @l;
- push @l_26, map { $_->{driver} } probe_category('various/agpgart');
- append_to_modules_loaded_at_startup("$::prefix/etc/modules", @l);
- append_to_modules_loaded_at_startup("$::prefix/etc/modprobe.preload", @l_26);
+ push @l, 'evdev' if any { $_->{Synaptics} || $_->{ALPS} || $_->{HWHEEL} } detect_devices::getInputDevices();
+ push @l, 'asus_acpi' if $is_laptop && $manufacturer =~ m/^ASUS/;
+ push @l, 'ibm_acpi' if $is_laptop && member($manufacturer, qw(IBM LENOVO));
+ push @l, 'hdaps' if $is_laptop && $manufacturer eq 'LENOVO';
+ append_to_modules_loaded_at_startup("$::prefix/etc/modprobe.preload", @l);
}
sub append_to_modules_loaded_at_startup_for_all_kernels {
- append_to_modules_loaded_at_startup($_, @_) foreach "$::prefix/etc/modules", "$::prefix/etc/modprobe.preload";
+ append_to_modules_loaded_at_startup($_, @_) foreach "$::prefix/etc/modprobe.preload";
}
sub append_to_modules_loaded_at_startup {
@@ -234,6 +208,17 @@ sub append_to_modules_loaded_at_startup {
} $file;
}
+sub set_preload_modules {
+ my ($service, @modules) = @_;
+ my $preload_file = "$::prefix/etc/modprobe.preload.d/$service";
+ if (@modules) {
+ output_p($preload_file, join("\n", @modules, ''));
+ } else {
+ unlink($preload_file);
+ }
+ eval { load(@modules) } if @modules && !$::isInstall;
+}
+
#-###############################################################################
#- internal functions
@@ -251,11 +236,9 @@ sub read_already_loaded {
when_load($conf, $_) foreach reverse loaded_modules();
}
-my $module_extension = c::kernel_version() =~ /^\Q2.4/ ? 'o' : 'ko';
-
sub name2file {
my ($name) = @_;
- "$name.$module_extension";
+ "$name.ko";
}
sub when_load {
@@ -290,30 +273,25 @@ sub when_load_category {
my $sound_alias = find { /^sound-slot-[0-9]+$/ && $conf->get_alias($_) eq $name } $conf->modules;
$sound_alias ||= 'sound-slot-0';
$conf->set_sound_slot($sound_alias, $name);
+ } elsif ($category =~ m!disk/card_reader!) {
+ $conf->set_above($name, 'tifm_sd') if $name =~ /tifm_7xx1/;
+ $conf->set_above($name, 'mmc_block');
}
}
#-###############################################################################
#- isInstall functions
#-###############################################################################
-sub cz_file() {
- "/lib/modules" . (arch() eq 'sparc64' && "64") . ".cz-" . c::kernel_version();
-}
-
sub extract_modules {
my ($dir, @modules) = @_;
- my $cz = cz_file();
- if (!-e $cz && !$::local_install) {
- unlink $_ foreach glob_("/lib/modules*.cz*");
- require install_any;
- install_any::getAndSaveFile("install/stage2/live$cz", $cz) or die "failed to get modules $cz: $!";
- }
- eval {
- require packdrake;
- my $packer = new packdrake($cz, quiet => 1);
- $packer->extract_archive($dir, map { name2file($_) } @modules) if @modules;
- map { $dir . '/' . name2file($_) } @modules;
- };
+ map {
+ my $f = name2file($_);
+ if (-e "/modules/$f.gz") {
+ system("gzip -dc /modules/$f.gz > $dir/$f") == 0
+ or unlink "$dir/$f";
+ }
+ "$dir/$f";
+ } @modules;
}
sub load_raw_install {
@@ -324,12 +302,12 @@ sub load_raw_install {
my $m = '/tmp/' . name2file($_);
if (-e $m) {
my $stdout;
- my $rc = run_program::run(["insmod_", "insmod"], '2>', \$stdout, $m, split(' ', $options->{$_}));
+ my $rc = run_program::run('insmod', '2>', \$stdout, $m, split(' ', $options->{$_}));
log::l(chomp_($stdout)) if $stdout;
if ($rc) {
unlink $m;
'';
- } else {
+ } elsif ($m !~ /pata/) { # FIXME: remove me once cooker is reopened
'error';
}
} else {
diff --git a/perl-install/modules/any_conf.pm b/perl-install/modules/any_conf.pm
index b6d0cef84..855678dfd 100644
--- a/perl-install/modules/any_conf.pm
+++ b/perl-install/modules/any_conf.pm
@@ -5,13 +5,8 @@ use common;
sub vnew {
- if (c::kernel_version() =~ /^\Q2.6/) {
- require modules::modprobe_conf;
- modules::modprobe_conf->new;
- } else {
- require modules::modules_conf;
- modules::modules_conf->new;
- }
+ require modules::modprobe_conf;
+ modules::modprobe_conf->new;
}
diff --git a/perl-install/modules/interactive.pm b/perl-install/modules/interactive.pm
index de7adc92b..df462e0f9 100644
--- a/perl-install/modules/interactive.pm
+++ b/perl-install/modules/interactive.pm
@@ -11,9 +11,9 @@ sub config_window {
require modules::parameters;
my @l;
foreach (modules::parameters::parameters($data->{driver})) {
- my ($name, $format, $description) = @$_;
- push @l, { label => $name, help => join("\n", $description, if_(c::kernel_version() !~ /^\Q2.6/, "[$format]")),
- val => \$conf{$name}, allow_empty_list => 1 };
+ my ($name, $description) = @$_;
+ push @l, { label => $name, help => $description,
+ val => \$conf{$name}, allow_empty_list => 1 };
}
if (!@l) {
$in->ask_warn(N("Error"), N("This driver has no configuration parameter!"));
@@ -86,7 +86,7 @@ my %category2text = (
);
sub wait_load_module {
- my ($in, $category, $text, $module) = @_;
+ my ($in, $category, $text, $_module) = @_;
my $msg = do {
if (my $t = $category2text{$category}) {
sprintf(translate($t), $text);
@@ -96,20 +96,21 @@ sub wait_load_module {
N("Installing driver for %s card %s", $category, $text);
}
};
- $in->wait_message('', [ $msg, if_($::expert, N("(module %s)", $module)) ]);
+ $in->wait_message('', $msg);
}
sub load_module__ask_options {
my ($in, $module_descr, $parameters) = @_;
- my @parameters = map { [ @$_[0, 1, 2] ] } @$parameters;
+ #- deep copying
+ my @parameters = map { [ @$_[0, 1] ] } @$parameters;
if (@parameters) {
$in->ask_from('',
N("You may now provide options to module %s.\nNote that any address should be entered with the prefix 0x like '0x123'", $module_descr),
- [ map { { label => $_->[0] . ($_->[1] ? " ($_->[1])" : ''), help => $_->[2], val => \$_->[3] } } @parameters ],
+ [ map { { label => $_->[0], help => $_->[1], val => \$_->[2] } } @parameters ],
) or return;
- join(' ', map { if_($_->[3], "$_->[0]=$_->[3]") } @parameters);
+ join(' ', map { if_($_->[2], "$_->[0]=$_->[2]") } @parameters);
} else {
my $s = $in->ask_from_entry('',
N("You may now provide options to module %s.
diff --git a/perl-install/modules/parameters.pm b/perl-install/modules/parameters.pm
index fa8fcfae7..2af5ce951 100644
--- a/perl-install/modules/parameters.pm
+++ b/perl-install/modules/parameters.pm
@@ -17,44 +17,11 @@ sub parameters {
($module) = modules::extract_modules('/tmp', $module);
}
- my @parameters;
- foreach (common::join_lines(run_program::get_stdout('modinfo', '-p', $module))) {
+ map {
chomp;
- next if /^warning:/;
- (my $name, $_) = /(\w+)(?::|\s+)(.*)/s or warn "modules::parameters::get_options_name($module): unknown line\n";
- if (c::kernel_version() =~ /^\Q2.6/) {
- push @parameters, [ $name, '', $_ ];
- next;
- }
-
- my $c_types = 'int|string|short|byte|char|long';
- my ($is_a_number, $description, $min, $max) = (0, '', 1, 1);
- if (/^($c_types) array \(min = (\d+), max = (\d+)\),?\s*(.*)/s) {
- $_ = $4;
- #- seems like "char" are buggy entries
- ($is_a_number, $min, $max) = ($1 ne 'string', $2, $3) if $1 ne 'char';
- } elsif (/^($c_types),?\s*(.*)/s) {
- $_ = $2;
- #- here "char" really are size-limited strings, modinfo does not display the size limit (but since we do not care about it, it does not matter :)
- $is_a_number = $1 ne 'string' if $1 ne 'char';
- } else {
- #- for things like "no format character" or "unknown format character"
- }
- if (/^description "(.*)",?\s*/s) {
- ($description, $_) = ($1, $2);
- }
- #- print "STILL HAVE ($_)\n" if $_;
-
- my $format = $min == 1 && $max == 1 ?
- ($is_a_number ? N("a number") : '') :
- $min == $max ?
- ($is_a_number ? N("%d comma separated numbers", $min) : N("%d comma separated strings", $min)) :
- $min == 1 ?
- ($is_a_number ? N("comma separated numbers") : N("comma separated strings")) :
- ''; #- too weird and buggy, do not display it
- push @parameters, [ $name, $format, $description ];
- }
- @parameters;
+ (my $name, $_) = /(\w+):(.*)/s or warn "modules::parameters::parameters($module): unknown line\n";
+ [ $name, $_ ];
+ } common::join_lines(run_program::get_stdout('modinfo', '-p', $module));
}
1;
diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm
index 18142326d..c8c1d544a 100644
--- a/perl-install/mygtk2.pm
+++ b/perl-install/mygtk2.pm
@@ -18,8 +18,7 @@ unless ($::no_ugtk_init) {
$::one_message_has_been_translated and warn("N() was called from $::one_message_has_been_translated BEFORE gtk2 initialisation, replace it with a N_() AND a translate() later.\n"), c::_exit(1);
Gtk2->init;
- Locale::gettext::bind_textdomain_codeset($_, 'UTF8') foreach 'libDrakX', @::textdomains;
- $::need_utf8_i18n = 1;
+ Locale::gettext::bind_textdomain_codeset($_, 'UTF8') foreach 'libDrakX', if_(!$::isInstall, 'libDrakX-standalone'), @::textdomains;
}
Gtk2->croak_execeptions if (!$::no_ugtk_init || $::isInstall) && 0.95 < $Gtk2::VERSION;
@@ -112,6 +111,8 @@ sub _gtk {
$w->can_focus(delete $opts->{can_focus}) if exists $opts->{can_focus};
$w->can_default(delete $opts->{can_default}) if exists $opts->{can_default};
$w->grab_focus if delete $opts->{grab_focus};
+ $w->set_padding(@{delete $opts->{padding}}) if exists $opts->{padding};
+ $w->set_sensitive(delete $opts->{sensitive}) if exists $opts->{sensitive};
(delete $opts->{size_group})->add_widget($w) if $opts->{size_group};
if (my $tip = delete $opts->{tip}) {
$global_tooltips ||= Gtk2::Tooltips->new;
@@ -135,25 +136,27 @@ sub _gtk {
sub _gtk__Button { &_gtk_any_Button }
sub _gtk__ToggleButton { &_gtk_any_Button }
sub _gtk__CheckButton { &_gtk_any_Button }
+sub _gtk__RadioButton { &_gtk_any_Button }
sub _gtk_any_Button {
my ($w, $opts, $class) = @_;
if (!$w) {
- if (!$opts->{image}) {
- add2hash_($opts, { mnemonic => 1 });
+ my @radio_options;
+ if ($class eq 'RadioButton') {
+ @radio_options = delete $opts->{group};
}
- $w = $opts->{image} ? "Gtk2::$class"->new :
- delete $opts->{mnemonic} ? "Gtk2::$class"->new_with_mnemonic(delete $opts->{text} || '') :
- "Gtk2::$class"->new_with_label(delete $opts->{text} || '');
+ $w = $opts->{image} || $opts->{child} ? "Gtk2::$class"->new :
+ delete $opts->{mnemonic} ? "Gtk2::$class"->new_with_mnemonic(@radio_options, delete $opts->{text} || '') :
+ $opts->{text} ? "Gtk2::$class"->new_with_label(@radio_options, delete $opts->{text} || '') :
+ "Gtk2::$class"->new(@radio_options);
$w->{format} = delete $opts->{format} if exists $opts->{format};
}
- if (my $image = delete $opts->{image}) {
- $w->add($image);
- $image->show;
+ if (my $widget = delete $opts->{image} || delete $opts->{child}) {
+ $w->add($widget);
+ $widget->show;
}
- $w->set_sensitive(delete $opts->{sensitive}) if exists $opts->{sensitive};
$w->set_relief(delete $opts->{relief}) if exists $opts->{relief};
if (my $text_ref = delete $opts->{text_ref}) {
@@ -316,8 +319,9 @@ sub _gtk__WrappedLabel {
sub _gtk__Label_Left {
my ($w, $opts) = @_;
-
- gtknew('HBox', children_tight => [ _gtk__Label($w, $opts) ]);
+ $opts->{alignment} ||= [ 0, 0 ];
+ $opts->{padding} = [ 20, 0 ];
+ _gtk__Label($w, $opts);
}
sub _gtk__Label {
@@ -339,10 +343,35 @@ sub _gtk__Label {
$set->();
}
- $w->set_markup(delete $opts->{text_markup}) if exists $opts->{text_markup};
+ if (my $t = delete $opts->{text_markup}) {
+ $w->set_markup($t);
+ if ($w->get_text eq '') {
+ log::l("invalid markup in $t. not using the markup");
+ $w->set_text($t);
+ }
+ }
$w;
}
+sub title1_to_markup {
+ my ($label) = @_;
+ '<b><big>' . $label . '</big></b>';
+}
+
+sub _gtk__Title1 {
+ my ($w, $opts) = @_;
+ $opts ||= {};
+ $opts->{text_markup} = '<b><big>' . delete($opts->{label}) . '</big></b>';
+ _gtk__Label($w, $opts);
+}
+
+sub _gtk__Title2 {
+ my ($w, $opts) = @_;
+ $opts ||= {};
+ $opts->{alignment} = [ 0, 0 ];
+ _gtk__Title1($w, $opts);
+}
+
sub _gtk__Entry {
my ($w, $opts) = @_;
@@ -353,6 +382,13 @@ sub _gtk__Entry {
$w->set_text(delete $opts->{text}) if exists $opts->{text};
$w->signal_connect(key_press_event => delete $opts->{key_press_event}) if exists $opts->{key_press_event};
+
+ if (my $text_ref = delete $opts->{text_ref}) {
+ my $set = sub { $w->set_text($$text_ref) };
+ gtkval_register($w, $text_ref, $set);
+ $set->();
+ }
+
$w;
}
@@ -381,6 +417,7 @@ sub _gtk__ComboBox {
my $set_list = sub {
$w->{formatted_list} = $w->{format} ? [ map { $w->{format}($_) } @{$w->{list}} ] : $w->{list};
$w->get_model->clear;
+ $w->{strings} = $w->{formatted_list}; # used by Gtk2::ComboBox wrappers such as get_text() in ugtk2
$w->append_text($_) foreach @{$w->{formatted_list}};
};
if (my $list_ref = delete $opts->{list_ref}) {
@@ -428,7 +465,7 @@ sub _gtk__ScrolledWindow {
my $faked_w = $w;
if (my $child = delete $opts->{child}) {
- if (member(ref($child), qw(Gtk2::Layout Gtk2::Text Gtk2::TextView Gtk2::TreeView))) {
+ if (member(ref($child), qw(Gtk2::Layout Gtk2::Html2::View Gtk2::SimpleList Gtk2::SourceView::View Gtk2::Text Gtk2::TextView Gtk2::TreeView))) {
$w->add($child);
} else {
$w->add_with_viewport($child);
@@ -468,6 +505,24 @@ sub _gtk__Frame {
$w;
}
+sub _gtk__Expander {
+ my ($w, $opts) = @_;
+
+ if ($w) {
+ $w->set_label(delete $opts->{text}) if exists $opts->{text};
+ } else {
+ $w = Gtk2::Expander->new(delete $opts->{text});
+ }
+
+ $w->signal_connect(activate => delete $opts->{activate}) if exists $opts->{activate};
+
+ if (my $child = delete $opts->{child}) {
+ $w->add($child);
+ $child->show;
+ }
+ $w;
+}
+
sub _gtk__Window { &_gtk_any_Window }
sub _gtk__Dialog { &_gtk_any_Window }
sub _gtk__Plug { &_gtk_any_Window }
@@ -484,6 +539,7 @@ sub _gtk_any_Window {
$w = "Gtk2::$class"->new;
}
+ $w->set_modal(1) if exists $opts->{transient_for};
$w->set_modal(delete $opts->{modal}) if exists $opts->{modal};
$w->set_transient_for(delete $opts->{transient_for}) if exists $opts->{transient_for};
$w->set_border_width(delete $opts->{border_width}) if exists $opts->{border_width};
@@ -520,6 +576,7 @@ sub _gtk__MagicWindow {
my $provided_banner = delete $opts->{banner};
if ($pop_it) {
+ $sub_child = gtknew('VBox', children_tight => [ $provided_banner ]) if $provided_banner;
$opts->{child} = $::isInstall ?
gtknew('Frame', shadow_type => 'out',
child => gtknew('Frame', shadow_type => 'none', border_width => 3, child => $sub_child)) :
@@ -544,6 +601,7 @@ sub _gtk__MagicWindow {
socket_id => $::XID,
child => $::WizardTable,
});
+ delete $opts->{no_Window_Manager};
$::Plug = $::WizardWindow = _gtk(undef, 'Plug', 'gtknew', $opts);
sync($::WizardWindow);
} else {
@@ -570,6 +628,49 @@ sub _gtk__MagicWindow {
}, 'mygtk2::MagicWindow';
}
+# A standard About dialog. Used with:
+# my $w = gtknew('AboutDialog', ...);
+# $w->show_all;
+# $w->run;
+sub _gtk__AboutDialog {
+ my ($w, $opts) = @_;
+
+ if (!$w) {
+ $w = Gtk2::AboutDialog->new;
+ $w->signal_connect(response => sub { $_[0]->destroy });
+ $w->set_name(delete $opts->{name}) if exists $opts->{name};
+ $w->set_version(delete $opts->{version}) if exists $opts->{version};
+ $w->set_icon(gtknew('Pixbuf', file => delete $opts->{icon})) if exists $opts->{icon};
+ $w->set_logo(gtknew('Pixbuf', file => delete $opts->{logo})) if exists $opts->{logo};
+ $w->set_copyright(delete $opts->{copyright}) if exists $opts->{copyright};
+ $w->set_url_hook(sub {
+ my (undef, $url) = @_;
+ run_program::raw({ detach => 1 }, 'www-browser', $url);
+ });
+ $w->set_email_hook(sub {
+ my (undef, $url) = @_;
+ run_program::raw({ detach => 1 }, 'www-browser', $url);
+ });
+
+ if (my $url = delete $opts->{website}) {
+ $url =~ s/^https:/http:/; # Gtk2::About doesn't like "https://..." like URLs
+ $w->set_website($url);
+ }
+ $w->set_license(delete $opts->{license}) if exists $opts->{license};
+ $w->set_wrap_license(delete $opts->{wrap_license}) if exists $opts->{wrap_license};
+ $w->set_comments(delete $opts->{comments}) if exists $opts->{comments};
+ $w->set_website_label(delete $opts->{website_label}) if exists $opts->{website_label};
+ $w->set_authors(delete $opts->{authors}) if exists $opts->{authors};
+ $w->set_documenters(delete $opts->{documenters}) if exists $opts->{documenters};
+ $w->set_translator_credits(delete $opts->{translator_credits}) if exists $opts->{translator_credits};
+ $w->set_artists(delete $opts->{artists}) if exists $opts->{artists};
+ $w->set_modal(delete $opts->{modal}) if exists $opts->{modal};
+ $w->set_transient_for(delete $opts->{transient_for}) if exists $opts->{transient_for};
+ $w->set_position(delete $opts->{position_policy}) if exists $opts->{position_policy};
+ }
+ $w;
+}
+
sub _gtk__FileSelection {
my ($w, $opts) = @_;
@@ -596,13 +697,36 @@ sub _gtk__FileChooser {
$w->set_current_folder($dir);
}
if ($file) {
- my $meth = $action =~ /save|create/ ? 'set_current_name' : 'set_filename';
- $w->$meth($file);
+ if ($action =~ /save|create/) {
+ $w->set_current_name(basename($file));
+ } else {
+ $w->set_filename($file);
+ }
}
}
$w;
}
+sub _gtk__VPaned { &_gtk_any_Paned }
+sub _gtk__HPaned { &_gtk_any_Paned }
+sub _gtk_any_Paned {
+ my ($w, $opts, $class, $action) = @_;
+
+ if (!$w) {
+ $w = "Gtk2::$class"->new;
+ $w->set_border_width(delete $opts->{border_width}) if exists $opts->{border_width};
+ } elsif ($action eq 'gtkset') {
+ $_->destroy foreach $w->get_children;
+ }
+
+ foreach my $opt (qw(resize1 shrink1 resize2 shrink2)) {
+ $opts->{$opt} = 1 if !defined $opts->{$opt};
+ }
+ $w->pack1(delete $opts->{child1}, delete $opts->{resize1}, delete $opts->{shrink1});
+ $w->pack2(delete $opts->{child2}, delete $opts->{resize2}, delete $opts->{shrink2});
+ $w;
+}
+
sub _gtk__VBox { &_gtk_any_Box }
sub _gtk__HBox { &_gtk_any_Box }
sub _gtk_any_Box {
@@ -709,9 +833,10 @@ sub _gtknew_handle_children {
foreach (@child) {
my ($fill, $child) = @$_;
- $fill eq '0' || $fill eq '1' or internal_error("odd {children} parameter must be 0 or 1 (got $fill)");
+ $fill eq '0' || $fill eq '1' || $fill eq 'fill' || $fill eq 'expand' or internal_error("odd {children} parameter must be 0 or 1 (got $fill)");
ref $child or $child = Gtk2::WrappedLabel->new($child);
- $w->pack_start($child, $fill, $fill, $padding || 0);
+ my $expand = $fill && $fill ne 'fill' ? 1 : 0;
+ $w->pack_start($child, $expand, $fill, $padding || 0);
$child->show;
}
}
@@ -746,7 +871,7 @@ sub mygtk2::MagicWindow::AUTOLOAD {
sub _create_Window {
my ($opts) = @_;
- my $no_Window_Manager = !$::isStandalone;
+ my $no_Window_Manager = exists $opts->{no_Window_Manager} ? delete $opts->{no_Window_Manager} : !$::isStandalone;
add2hash($opts, {
if_(!$::isInstall && !$::isWizard, border_width => 5),
@@ -755,8 +880,8 @@ sub _create_Window {
position_policy => $::isInstall ? 'none' : $no_Window_Manager ? 'center-always' : 'center-on-parent',
if_($::isInstall, position => [
- $::rootwidth - ($::windowwidth + $::real_windowwidth) / 2,
- $::logoheight + ($::windowheight - $::real_windowheight) / 2,
+ $::rootwidth - ($::o->{windowwidth} + $::real_windowwidth) / 2,
+ $::logoheight + ($::o->{windowheight} - $::real_windowheight) / 2,
]),
});
my $w = _gtk(undef, 'Window', 'gtknew', $opts);
@@ -776,9 +901,9 @@ sub _create_Window {
}
if ($::isInstall) {
- require install_gtk; #- for perl_checker
- install_gtk::handle_unsafe_mouse($::o, $w);
- $w->signal_connect(key_press_event => \&install_gtk::special_shortcuts);
+ require install::gtk; #- for perl_checker
+ install::gtk::handle_unsafe_mouse($::o, $w);
+ $w->signal_connect(key_press_event => \&install::gtk::special_shortcuts);
#- force center at a weird position, this can't be handled by position_policy
#- because center-on-parent is a window manager hint, and we don't have a WM
@@ -789,8 +914,8 @@ sub _create_Window {
return if $w_size[2] == $wi && $w_size[3] == $he; #BUG
(undef, undef, $wi, $he) = @w_size;
- $w->move(max(0, $::rootwidth - ($::windowwidth + $wi) / 2),
- max(0, $::logoheight + ($::windowheight - $he) / 2));
+ $w->move(max(0, $::rootwidth - ($::o->{windowwidth} + $wi) / 2),
+ max(0, $::logoheight + ($::o->{windowheight} - $he) / 2));
});
#- without this, the focus is broken during install, though this is not needed during X test, why??
$w->show;
@@ -807,8 +932,6 @@ sub _force_keyboard_focus {
my ($w) = @_;
if ($current_window == $w) {
$w->window->XSetInputFocus;
- } else {
- log::l("not XSetInputFocus since already done and not on top");
}
0;
}
@@ -869,7 +992,10 @@ sub _text_insert {
my $gtk_tags = $buffer->{gtk_tags};
my $tags = $buffer->{tags};
if (ref($t) eq 'ARRAY') {
- $opts{append} or $buffer->set_text('');
+ if (!$opts{append}) {
+ $buffer->set_text('');
+ $textview->{anchors} = [];
+ }
foreach my $token (@$t) {
my ($item, $tag) = @$token;
my $iter1 = $buffer->get_end_iter;
@@ -877,6 +1003,13 @@ sub _text_insert {
$buffer->insert_pixbuf($iter1, $item);
next;
}
+ if ($item =~ /^Gtk2::/) {
+ my $anchor = $buffer->create_child_anchor($iter1);
+ $textview->add_child_at_anchor($item, $anchor);
+ $textview->{anchors} ||= [];
+ push @{$textview->{anchors}}, $anchor;
+ next;
+ }
if ($tag) {
if (ref($tag)) {
# use anonymous tags
@@ -896,6 +1029,7 @@ sub _text_insert {
if ($opts{append}) {
$buffer->insert($buffer->get_end_iter, $t);
} else {
+ $textview->{anchors} = [];
$buffer->set_text($t);
}
}
@@ -918,6 +1052,7 @@ sub _allow_scroll_TextView_to_bottom {
my ($o_force) = @_;
my $adjustment = $scrolledWindow->get_vadjustment;
if ($o_force || $adjustment->page_size + $adjustment->value == $adjustment->upper) {
+ flush(); #- one must flush before scrolling to end, otherwise the text just added *may* not be taken into account correctly, and so it doesn't really scroll to end
$textView->scroll_to_mark($textView->get_buffer->get_mark('end'), 0, 1, 0, 1);
}
};
@@ -933,7 +1068,7 @@ my @icon_paths;
sub add_icon_path { push @icon_paths, @_ }
sub _icon_paths() {
(@icon_paths, (exists $ENV{SHARE_PATH} ? ($ENV{SHARE_PATH}, "$ENV{SHARE_PATH}/icons", "$ENV{SHARE_PATH}/libDrakX/pixmaps") : ()),
- "/usr/lib/libDrakX/icons", "pixmaps", 'standalone/icons', '/usr/share/rpmdrake/icons');
+ "/usr/lib/libDrakX/icons", "pixmaps", 'data/icons', 'standalone/icons', '/usr/share/rpmdrake/icons');
}
sub main {
diff --git a/perl-install/network/adsl.pm b/perl-install/network/adsl.pm
deleted file mode 100644
index 3768c171b..000000000
--- a/perl-install/network/adsl.pm
+++ /dev/null
@@ -1,336 +0,0 @@
-package network::adsl; # $Id$
-
-use common;
-use run_program;
-use network::tools;
-use modules;
-use vars qw(@ISA @EXPORT);
-
-@ISA = qw(Exporter);
-@EXPORT = qw(adsl_conf_backend);
-
-sub adsl_probe_info {
- my ($net) = @_;
- my $pppoe_file = "$::prefix/etc/ppp/pppoe.conf";
- my $login;
- foreach (qw(/etc/ppp/peers/ppp0 /etc/ppp/options /etc/ppp/options.adsl)) {
- ($login) = map { if_(/^user\s+"([^"]+)"/, $1) } cat_("$::prefix/$_") if !$login && -r "$::prefix/$_";
- }
- my %pppoe_conf; %pppoe_conf = getVarsFromSh($pppoe_file) if (!exists $net->{adsl}{method} || $net->{adsl}{method} eq 'pppoe') && -f $pppoe_file;
- $login ||= $pppoe_conf{USER};
- my $passwd = network::tools::passwd_by_login($login);
- if (!$net->{adsl}{vpi} && !$net->{adsl}{vci}) {
- ($net->{adsl}{vpi}, $net->{adsl}{vci}) =
- (map { if_(/^.*-vpi\s+(\d+)\s+-vci\s+(\d+)/, map { sprintf("%x", $_) } $1, $2) } cat_("$::prefix/etc/ppp/peers/ppp0"));
- }
- $pppoe_conf{DNS1} ||= '';
- $pppoe_conf{DNS2} ||= '';
- add2hash($net->{resolv}, { dnsServer2 => $pppoe_conf{DNS1}, dnsServer3 => $pppoe_conf{DNS2}, DOMAINNAME2 => '' });
- add2hash($net->{adsl}, { login => $login, passwd => $passwd });
-}
-
-sub adsl_detect() {
- require list_modules;
- require detect_devices;
- my @modules = list_modules::category2modules('network/usb_dsl');
- # return an hash compatible with what drakconnect expect us to return:
- my %compat = (
- 'speedtch' => 'speedtouch',
- 'eagle-usb' => 'sagem',
- );
-
- return {
- bewan => [ detect_devices::getBewan() ],
- eci => [ detect_devices::getECI() ],
- map { $compat{$_} || $_ => [ detect_devices::matching_driver($_) ] } @modules,
- };
-}
-
-sub sagem_set_parameters {
- my ($net) = @_;
- my %l = map { $_ => sprintf("%08s", $net->{adsl}{$_}) } qw(vci vpi Encapsulation);
-
- my $static_ip = $net->{adsl}{method} eq 'static' && $net->{ifcfg}{sagem}{IPADDR};
- foreach my $cfg_file (qw(/etc/analog/adiusbadsl.conf /etc/eagle-usb/eagle-usb.conf)) {
- substInFile {
- s/Linetype=.*\n/Linetype=0000000A\n/; #- use CMVs
- s/VCI=.*\n/VCI=$l{vci}\n/;
- s/VPI=.*\n/VPI=$l{vpi}\n/;
- s/Encapsulation=.*\n/Encapsulation=$l{Encapsulation}\n/;
- s/ISP=.*\n/ISP=$net->{adsl}{provider_id}\n/;
- s/STATIC_IP=.*\n//;
- s!</eaglectrl>!STATIC_IP=$static_ip\n</eaglectrl>! if $static_ip;
- } "$::prefix$cfg_file";
- }
- #- create CMV symlinks for both POTS and ISDN lines
- foreach my $type (qw(p i)) {
- my $cmv;
- my ($country) = $net->{adsl}{provider_id} =~ /^([a-zA-Z]+)\d+$/;
- #- try to find a CMV for this specific ISP
- $cmv = "$::prefix/etc/eagle-usb/CMVe${type}$net->{adsl}{provider_id}.txt" if $net->{adsl}{provider_id};
- #- if not found, try to found a CMV for the country
- -f $cmv or $cmv = "$::prefix/etc/eagle-usb/CMVe${type}${country}.txt";
- #- fallback on the generic CMV if no other matched
- -f $cmv or $cmv = "$::prefix/etc/eagle-usb/CMVe${type}WO.txt";
- symlinkf($cmv, "$::prefix/etc/eagle-usb/CMVe${type}.txt");
- }
- #- remove this otherwise eaglectrl won't start
- unlink("$::prefix/etc/eagle-usb/eagle-usb_must_be_configured");
-}
-
-sub adsl_conf_backend {
- my ($in, $modules_conf, $net) = @_;
-
- my $bewan_module;
- $bewan_module = $net->{adsl}{bus} eq 'PCI' ? 'unicorn_pci_atm' : 'unicorn_usb_atm' if $net->{adsl}{device} eq "bewan";
-
- my $adsl_type = $net->{adsl}{method};
- my $adsl_device = $net->{adsl}{device};
-
- # all supported modems came with their own pppoa module, so no need for "plugin pppoatm.so"
- my %modems =
- (
- bewan =>
- {
- start => qq(
-# ActivationMode=1
-modprobe $bewan_module
-# wait for the modem to be set up:
-sleep 10
-),
- stop => qq(modprobe -r $bewan_module),
- plugin => {
- pppoa => "pppoatm.so " . join('.', hex($net->{adsl}{vpi}), hex($net->{adsl}{vci}))
- },
- ppp_options => qq(
-default-asyncmap
-hide-password
-noaccomp
-nobsdcomp
-nodeflate
-novj novjccomp
-lcp-echo-interval 20
-lcp-echo-failure 3
-sync
-),
- },
-
- speedtouch =>
- {
- modules => [ qw(speedtch) ],
- start => '/usr/bin/speedtouch-start --nocall',
- overide_script => 1,
- server => {
- pppoa => qq("/usr/sbin/pppoa3 -c")
- },
- plugin => {
- pppoa => "pppoatm.so " . join('.', hex($net->{adsl}{vpi}), hex($net->{adsl}{vci})),
- },
- ppp_options => qq(
-sync
-noaccomp),
- aliases => [
- ['char-major-108', 'ppp_generic'],
- ['tty-ldisc-3', 'ppp_async'],
- ['tty-ldisc-13', 'n_hdlc'],
- ['tty-ldisc-14', 'ppp_synctty'],
- ['ppp-compress-21', 'bsd_comp'],
- ['ppp-compress-24', 'ppp_deflate'],
- ['ppp-compress-26', 'ppp_deflate']
- ],
- },
-
- sagem =>
- {
- modules => [ qw(eagle-usb) ],
- start => '/sbin/eaglectrl -i >/dev/null 2>/dev/null || /sbin/eaglectrl -d',
- stop => "/usr/bin/killall pppoa",
- get_intf => '/sbin/eaglectrl -i',
- server => {
- pppoa => q("/sbin/fctStartAdsl -t 1 -i"),
- },
- ppp_options => qq(
-mru 1492
-mtu 1492
-nobsdcomp
-nodeflate
-noaccomp -am
-novjccomp),
- aliases => [
- ['char-major-108', 'ppp_generic'],
- ['tty-ldisc-3', 'ppp_async'],
- ['tty-ldisc-13', 'n_hdlc'],
- ['tty-ldisc-14', 'ppp_synctty']
- ],
- },
-
- eci =>
- {
- start => '/usr/bin/startmodem',
- server => {
- pppoe => qq("/usr/bin/pppoeci -v 1 -vpi $net->{adsl}{vpi} -vci $net->{adsl}{vci}"),
- },
- ppp_options => qq(
-noipdefault
-sync
-noaccomp
-linkname eciadsl
-lcp-echo-interval 0)
- },
-
- pptp_modem =>
- {
- server => {
- pptp => qq("/usr/sbin/pptp 10.0.0.138 --nolaunchpppd"),
- },
- },
-
- capi_modem =>
- {
- ppp_options => qq(
-connect /bin/true
-ipcp-accept-remote
-ipcp-accept-local
-
-sync
-noauth
-lcp-echo-interval 5
-lcp-echo-failure 3
-lcp-max-configure 50
-lcp-max-terminate 2
-
-noccp
-noipx
-mru 1492
-mtu 1492),
- plugin => {
- capi => qq(capiplugin.so
-avmadsl)
- },
- },
- );
-
- my %generic =
- (
- pppoe =>
- {
- server => '"pppoe -I ' . (exists $modems{$adsl_device}{get_intf} ? "`$modems{$adsl_device}{get_intf}`" : $net->{adsl}{ethernet_device}) . '"',
- ppp_options => qq(default-asyncmap
-mru 1492
-mtu 1492
-noaccomp
-noccp
-nobsdcomp
-novjccomp
-nodeflate
-lcp-echo-interval 20
-lcp-echo-failure 3
-),
- }
- );
-
- if ($adsl_type =~ /^pp|^capi$/) {
- mkdir_p("$::prefix/etc/ppp");
- $in->do_pkgs->install('ppp');
- my %packages = (
- pppoa => [ qw(ppp-pppoatm) ],
- pppoe => [ qw(ppp-pppoe rp-pppoe) ],
- pptp => [ qw(pptp-linux) ],
- capi => [ qw(isdn4k-utils) ], #- capi4linux service
- );
- $in->do_pkgs->install(@{$packages{$adsl_type}});
-
- my $pty_option =
- exists $modems{$adsl_device}{server}{$adsl_type} ? "pty $modems{$adsl_device}{server}{$adsl_type}" :
- exists $generic{$adsl_type}{server} ? "pty $generic{$adsl_type}{server}" :
- "";
- my $plugin = exists $modems{$adsl_device}{plugin}{$adsl_type} && "plugin $modems{$adsl_device}{plugin}{$adsl_type}";
- my $noipdefault = $adsl_type eq 'pptp' ? '' : 'noipdefault';
- my $ppp_options =
- exists $modems{$adsl_device}{ppp_options} ? $modems{$adsl_device}{ppp_options} :
- exists $generic{$adsl_type}{ppp_options} ? $generic{$adsl_type}{ppp_options} :
- "";
- output("$::prefix/etc/ppp/peers/ppp0",
-qq(lock
-persist
-noauth
-usepeerdns
-defaultroute
-$noipdefault
-$ppp_options
-kdebug 1
-nopcomp
-noccp
-novj
-holdoff 4
-maxfail 25
-$pty_option
-$plugin
-user "$net->{adsl}{login}"
-));
-
- network::tools::write_secret_backend($net->{adsl}{login}, $net->{adsl}{passwd});
-
- my $ethernet_device = $net->{adsl}{ethernet_device};
- if ($ethernet_device =~ /^eth/) {
- $net->{ifcfg}{$ethernet_device} = {
- DEVICE => $ethernet_device,
- BOOTPROTO => 'none',
- NETMASK => '255.255.255.0',
- NETWORK => '10.0.0.0',
- BROADCAST => '10.0.0.255',
- MII_NOT_SUPPORTED => 'yes',
- ONBOOT => 'yes',
- };
- }
- }
-
- #- FIXME: ppp0 and ippp0 are hardcoded
- my $metric = network::tools::get_default_metric("adsl"); #- FIXME, do not override if already set
- put_in_hash($net->{ifcfg}{ppp0} ||= {}, {
- DEVICE => 'ppp0',
- TYPE => 'ADSL',
- METRIC => $metric,
- }) unless member($adsl_type, qw(static dhcp));
- #- don't overwrite ONBOOT setting, it may have been handled earlier in netconnect
- $net->{ifcfg}{ppp0}{ONBOOT} ||= 'yes';
-
- #- remove file used with sagem for dhcp/static connections
- unlink("$::prefix/etc/sysconfig/network-scripts/ifcfg-sagem");
-
- #- set vpi, vci and encapsulation parameters for sagem
- $adsl_device eq 'sagem' and sagem_set_parameters($net);
-
- #- set aliases
- if (exists $modems{$adsl_device}{aliases}) {
- $modules_conf->set_alias($_->[0], $_->[1]) foreach @{$modems{$adsl_device}{aliases}};
- $::isStandalone and $modules_conf->write;
- }
- #- remove the "speedtch off" alias that was written by Mandrakelinux 10.0
- $adsl_device eq 'speedtouch' and $modules_conf->remove_alias('speedtch');
-
- if ($adsl_type eq "capi") {
- require network::isdn;
- network::isdn::setup_capi_conf($in, $net->{adsl}{capi_card});
- services::disable('isdn4linux');
- services::enable('capi4linux');
-
- #- install and run drdsl for dsl connections, once capi driver is loaded
- $in->do_pkgs->ensure_is_installed_if_available("drdsl", "/usr/sbin/drdsl");
- run_program::rooted($::prefix, "/usr/sbin/drdsl");
- }
-
- #- load modules and run modem-specific start programs
- #- useful during install, or in case the packages have been installed after the device has been plugged
- my @modules = (@{$modems{$adsl_device}{modules}}, map { $_->[1] } @{$modems{$adsl_device}{aliases}});
- @modules or @modules = qw(ppp_synctty ppp_async ppp_generic n_hdlc); #- required for pppoe/pptp connections
- #- pppoa connections need the pppoatm module
- #- pppd should run "modprobe pppoatm", but it will fail during install
- push @modules, 'pppoatm' if $adsl_type eq 'pppoa';
- foreach (@modules) {
- eval { modules::load($_) } or log::l("failed to load $_ module: $@");
- }
- $modems{$adsl_device}{start} and run_program::rooted($::prefix, $modems{$adsl_device}{start});
-}
-
-1;
diff --git a/perl-install/network/adsl_consts.pm b/perl-install/network/adsl_consts.pm
deleted file mode 100644
index c3cc03b1c..000000000
--- a/perl-install/network/adsl_consts.pm
+++ /dev/null
@@ -1,979 +0,0 @@
-package network::adsl_consts; # $Id$
-
-# This should probably be splitted out into ldetect-lst as some provider db
-
-use vars qw(@ISA @EXPORT);
-use common;
-use utf8;
-
-@ISA = qw(Exporter);
-@EXPORT = qw(@adsl_data);
-
-# Originally from :
-# http://www.eagle-usb.org/article.php3?id_article=23
-# http://www.sagem.com/web-modems/download/support-fast1000-fr.htm
-# http://perso.wanadoo.fr/michel-m/protocolesfai.htm
-
-our %adsl_data = (
- ## format chosen is the following :
- # country|provider => { VPI, VCI_hexa, ... } all parameters
- # country is automagically translated into LANG with N function
- # provider is kept "as-is", not translated
- # provider_id is used by eagleconfig to identify an ISP (I use ISO_3166-1)
- # see http://en.wikipedia.org/wiki/ISO_3166-1
- # url_tech : technical URL providing info about ISP
- # vpi : virtual path identifier
- # vci : virtual channel identifier (in hexa below !!)
- # Encapsulation:
- # 1=PPPoE LLC, 2=PPPoE VCmux (never used ?)
- # 3=RFC1483/2684 Routed IP LLC,
- # 4=RFC1483/2684 Routed IP (IPoA VCmux)
- # 5 RFC2364 PPPoA LLC,
- # 6 RFC2364 PPPoA VCmux
- # see http://faq.eagle-usb.org/wakka.php?wiki=AdslDescription
- # dns are provided for when !usepeerdns in peers config file
- # dnsServer2 dnsServer3 : main DNS
- # dnsServers_text : string with any valid DNS (when more than 2)
- # DOMAINNAME2 : used for search key in /etc/resolv.conf
- # method : PPPoA, pppoe, static or dhcp
- # methods_all : all methods for connection with this ISP (when more than 1)
- # modem : model of modem provided by ISP or tested with ISP
- # please forward updates to http://forum.eagle-usb.org
- # try to order alphabetically by country (in English) / ISP (local language)
-
- N("Algeria") . "|Wanadoo" =>
- {
- provider_id => 'DZ01',
- vpi => 0,
- vci => 23,
- Encapsulation => 1,
- method => 'pppoe',
- dnsServer2 => '82.101.136.29',
- dnsServer3 => '82.101.136.206',
- },
-
- N("Argentina") . "|Speedy" =>
- {
- provider_id => 'AR01',
- vpi => 1,
- vci => 23,
- Encapsulation => 1,
- method => 'pppoe',
- dnsServer2 => '200.51.254.238',
- dnsServer3 => '200.51.209.22',
- },
-
- N("Austria") . "|Any" =>
- {
- provider_id => 'AT00',
- vpi => 8,
- vci => 30,
- Encapsulation => 6,
- method => 'pppoa',
- },
-
- N("Austria") . "|AON" =>
- {
- provider_id => 'AT01',
- vpi => 1,
- vci => 20,
- Encapsulation => 6,
- method => 'pppoa',
- },
-
- N("Austria") . "|Telstra" =>
- {
- provider_id => 'AT02',
- vpi => 8,
- vci => 23,
- Encapsulation => 1,
- method => 'pppoe',
- },
-
- N("Belgium") . "|ADSL Office" =>
- {
- provider_id => 'BE04',
- vpi => 8,
- vci => 23,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("Belgium") . "|Tiscali BE" =>
- {
- provider_id => 'BE01',
- vpi => 8,
- vci => 23,
- Encapsulation => 6,
- method => 'pppoa',
- dnsServer2 => '212.35.2.1',
- dnsServer3 => '212.35.2.2',
- DOMAINNAME2 => 'tiscali.be',
- },
-
- N("Belgium") . "|Belgacom" =>
- {
- provider_id => 'BE03',
- vpi => 8,
- vci => 23,
- Encapsulation => 6,
- method => 'pppoa',
- },
-
- N("Belgium") . "|Turboline" =>
- {
- provider_id => 'BE02',
- vpi => 8,
- vci => 23,
- Encapsulation => 5,
- method => 'pppoa',
- },
-
- N("Brazil") . "|Speedy/Telefonica" =>
- {
- provider_id => 'BR01',
- vpi => 8,
- vci => 23,
- Encapsulation => 1,
- method => 'pppoe',
- dnsServer2 => '200.204.0.10',
- dnsServer3 => '200.204.0.138',
- },
-
- N("Brazil") . "|Velox/Telemar" =>
- {
- provider_id => 'BR02',
- vpi => 0,
- vci => 21,
- Encapsulation => 1,
- method => 'pppoe',
- },
-
- N("Brazil") . "|Turbo/Brasil Telecom" =>
- {
- provider_id => 'BR03',
- vpi => 0,
- vci => 23,
- Encapsulation => 1,
- method => 'pppoe',
- },
-
- N("Brazil") . "|Rio Grande do Sul (RS)" =>
- {
- provider_id => 'BR04',
- vpi => 1,
- vci => 20,
- Encapsulation => 1,
- method => 'pppoe',
- },
-
- N("Bulgaria") . "|BTK ISDN" =>
- {
- provider_id => 'BG02',
- vpi => 1,
- vci => 20,
- Encapsulation => 1,
- method => 'pppoe',
- },
-
- N("Bulgaria") . "|BTK POTS" =>
- {
- provider_id => 'BG01',
- vpi => 0,
- vci => 23,
- Encapsulation => 1,
- method => 'pppoe',
- },
-
- N("China") . "|China Netcom|Beijing" =>
- {
- provider_id => 'CN01',
- vpi => 0,
- vci => 23,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("China") . "|China Netcom|Changchun" =>
- {
- provider_id => 'CN02',
- vpi => 8,
- vci => 23,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("China") . "|China Netcom|Harbin" =>
- {
- provider_id => 'CN03',
- vpi => 8,
- vci => 23,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("China") . "|China Netcom|Jilin" =>
- {
- provider_id => 'CN04',
- vpi => 0,
- vci => 27,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("China") . "|China Netcom|Lanzhou" =>
- {
- provider_id => 'CN05',
- vpi => 0,
- vci => 20,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("China") . "|China Netcom|Tianjin" =>
- {
- provider_id => 'CN06',
- vpi => 0,
- vci => 23,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("China") . "|China Netcom|Xi'an" =>
- {
- provider_id => 'CN07',
- vpi => 8,
- vci => 23,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("China") . "|China Telecom|Chongqing" =>
- {
- provider_id => 'CN08',
- vpi => 0,
- vci => 23,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("China") . "|China Telecom|Fujian" =>
- {
- provider_id => 'CN09',
- vpi => 0,
- vci => 0xc8,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("China") . "|China Telecom|Guangxi" =>
- {
- provider_id => 'CN10',
- vpi => 0,
- vci => 23,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("China") . "|China Telecom|Guangzhou" =>
- {
- provider_id => 'CN11',
- vpi => 8,
- vci => 20,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("China") . "|China Telecom|Hangzhou" =>
- {
- provider_id => 'CN12',
- vpi => 0,
- vci => 20,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("China") . "|China Netcom|Hunan" =>
- {
- provider_id => 'CN13',
- vpi => 0,
- vci => 23,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("China") . "|China Telecom|Nanjing" =>
- {
- provider_id => 'CN14',
- vpi => 8,
- vci => 23,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("China") . "|China Telecom|Shanghai" =>
- {
- provider_id => 'CN15',
- vpi => 8,
- vci => 51,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("China") . "|China Telecom|Shenzhen" =>
- {
- provider_id => 'CN16',
- vpi => 8,
- vci => 23,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("China") . "|China Telecom|Urumqi" =>
- {
- provider_id => 'CN17',
- vpi => 0,
- vci => 20,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("China") . "|China Telecom|Wuhan" =>
- {
- provider_id => 'CN18',
- vpi => 0,
- vci => 20,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("China") . "|China Telecom|Yunnan" =>
- {
- provider_id => 'CN19',
- vpi => 0,
- vci => 23,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("China") . "|China Telecom|Zhuhai" =>
- {
- provider_id => 'CN20',
- vpi => 0,
- vci => 23,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("Czech Republic") . "|Cesky Telecom" =>
- {
- provider_id => 'CZ01',
- url_tech => 'http://www.telecom.cz/domacnosti/internet/pristupove_sluzby/broadband/vse_o_kz_a_moznostech_instalace.php',
- vpi => 8,
- vci => 48,
- Encapsulation => 6,
- method => 'pppoa',
- },
-
- N("Denmark") . "|Any" =>
- {
- provider_id => 'DK01',
- vpi => 0,
- vci => 65,
- method => 'pppoe',
- Encapsulation => 3,
- },
-
- N("Finland") . "|Sonera" =>
- {
- provider_id => 'FI01',
- vpi => 0,
- vci => 64,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("France") . "|Free non dégroupé 512/128 & 1024/128" =>
- {
- provider_id => 'FR01',
- vpi => 8,
- vci => 23,
- Encapsulation => 6,
- dnsServer2 => '213.228.0.23',
- dnsServer3 => '212.27.32.176',
- method => 'pppoa',
- DOMAINNAME2 => 'free.fr',
- },
-
- N("France") . "|Free dégroupé 1024/256 (mini)" =>
- {
- provider_id => 'FR04',
- vpi => 8,
- vci => 24,
- Encapsulation => 4,
- dnsServer2 => '213.228.0.23',
- dnsServer3 => '212.27.32.176',
- method => 'dhcp',
- DOMAINNAME2 => 'free.fr',
- },
-
- N("France") . "|n9uf tel9com 512 & dégroupé 1024" =>
- {
- provider_id => 'FR05',
- vpi => 8,
- vci => 23,
- Encapsulation => 6,
- dnsServer2 => '212.30.93.108',
- dnsServer3 => '212.203.124.146',
- method => 'pppoa',
- },
-
- N("France") . "|Cegetel non dégroupé 512 IP/ADSL et dégroupé" =>
- {
- provider_id => 'FR08',
- vpi => 8,
- vci => 23,
- Encapsulation => 6,
- dnsServer2 => '212.94.174.85',
- dnsServer3 => '212.94.174.86',
- method => 'pppoa',
- },
-
- N("France") . "|Club-Internet" =>
- {
- provider_id => 'FR06',
- vpi => 8,
- vci => 23,
- Encapsulation => 6,
- dnsServer2 => '194.117.200.10',
- dnsServer3 => '194.117.200.15',
- method => 'pppoa',
- DOMAINNAME2 => 'club-internet.fr',
- },
-
- N("France") . "|Wanadoo" =>
- {
- provider_id => 'FR09',
- vpi => 8,
- vci => 23,
- Encapsulation => 6,
- dnsServer2 => '80.10.246.2',
- dnsServer3 => '80.10.246.129',
- method => 'pppoa',
- DOMAINNAME2 => 'wanadoo.fr',
- },
-
- N("France") . "|Télé2" =>
- {
- provider_id => 'FR02',
- vpi => 8,
- vci => 23,
- Encapsulation => 6,
- dnsServer2 => '212.151.136.242',
- dnsServer3 => '130.244.127.162',
- method => 'pppoa',
- },
-
- N("France") . "|Tiscali.fr 128k" =>
- {
- provider_id => 'FR03',
- vpi => 8,
- vci => 23,
- Encapsulation => 5,
- dnsServer2 => '213.36.80.1',
- dnsServer3 => '213.36.80.2',
- method => 'pppoa',
- },
-
- N("France") . "|Tiscali.fr 512k" =>
- {
- provider_id => 'FR07',
- vpi => 8,
- vci => 23,
- Encapsulation => 6,
- dnsServer2 => '213.36.80.1',
- dnsServer3 => '213.36.80.2',
- method => 'pppoa',
- },
-
- N("Germany") . "|Deutsche Telekom (DT)" =>
- {
- provider_id => 'DE01',
- vpi => 1,
- vci => 20,
- Encapsulation => 1,
- method => 'pppoe',
- },
-
- N("Germany") . "|1&1" =>
- {
- provider_id => 'DE02',
- vpi => 1,
- vci => 20,
- Encapsulation => 1,
- dnsServer2 => '195.20.224.234',
- dnsServer3 => '194.25.2.129',
- method => 'pppoe',
- },
-
- N("Greece") . "|Any" =>
- {
- provider_id => 'GR01',
- vpi => 8,
- vci => 23,
- Encapsulation => 6,
- method => 'pppoa',
- },
-
- N("Hungary") . "|Matav" =>
- {
- provider_id => 'HU01',
- vpi => 1,
- vci => 20,
- Encapsulation => 1,
- method => 'pppoe',
- },
-
- N("Ireland") . "|Any" =>
- {
- provider_id => 'IE01',
- vpi => 8,
- vci => 23,
- Encapsulation => 1,
- method => 'pppoe',
- },
-
- N("Israel") . "|Bezeq" =>
- {
- provider_id => 'IL01',
- vpi => 8,
- vci => 30,
- Encapsulation => 6,
- dnsServer2 => '192.115.106.10',
- dnsServer3 => '192.115.106.11',
- method => 'pppoa',
- },
-
- N("Italy") . "|Libero.it" =>
- {
- provider_id => 'IT04',
- url_tech => 'http://internet.libero.it/assistenza/adsl/installazione_ass.phtml',
- vpi => 8,
- vci => 23,
- Encapsulation => 6,
- dnsServer2 => '193.70.192.25',
- dnsServer3 => '193.70.152.25',
- method => 'pppoa',
- },
-
- N("Italy") . "|Telecom Italia" =>
- {
- provider_id => 'IT01',
- vpi => 8,
- vci => 23,
- Encapsulation => 6,
- dnsServer2 => '195.20.224.234',
- dnsServer3 => '194.25.2.129',
- method => 'pppoa',
- },
-
- N("Italy") . "|Telecom Italia/Office Users (ADSL Smart X)" =>
- {
- provider_id => 'IT02',
- vpi => 8,
- vci => 23,
- Encapsulation => 3,
- method => 'static',
- },
-
- N("Italy") . "|Tiscali.it, Alice" =>
- {
- provider_id => 'IT03',
- vpi => 8,
- vci => 23,
- Encapsulation => 6,
- dnsServer2 => '195.20.224.234',
- dnsServer3 => '194.25.2.129',
- method => 'pppoa',
- },
-
- N("Lithuania") . "|Lietuvos Telekomas" =>
- {
- provider_id => 'LT01',
- vpi => 8,
- vci => 23,
- Encapsulation => 1,
- method => 'pppoe',
- },
-
- N("Morocco") . "|Maroc Telecom" =>
- {
- provider_id => 'MA01',
- vpi => 8,
- vci => 23,
- Encapsulation => 6,
- dnsServer2 => '212.217.0.1',
- dnsServer3 => '212.217.0.12',
- method => 'pppoa',
- },
-
- N("Netherlands") . "|KPN" =>
- {
- provider_id => 'NL01',
- vpi => 8,
- vci => 30,
- Encapsulation => 6,
- method => 'pppoa',
- },
-
- N("Netherlands") . "|Eager Telecom" =>
- {
- provider_id => 'NL02',
- vpi => 0,
- vci => 21,
- Encapsulation => 3,
- method => 'dhcp',
- },
-
- N("Netherlands") . "|Tiscali" =>
- {
- provider_id => 'NL03',
- vpi => 0,
- vci => 22,
- Encapsulation => 3,
- method => 'dhcp',
- },
-
- N("Netherlands") . "|Versatel" =>
- {
- provider_id => 'NL04',
- vpi => 0,
- vci => 20,
- Encapsulation => 3,
- method => 'dhcp',
- },
-
- N("Norway") . "|Bluecom" =>
- {
- method => 'dhcp',
- },
-
- N("Norway") . "|Firstmile" =>
- {
- method => 'dhcp',
- },
-
- N("Norway") . "|NextGenTel" =>
- {
- method => 'dhcp',
- },
-
- N("Norway") . "|SSC" =>
- {
- method => 'dhcp',
- },
-
- N("Norway") . "|Tele2" =>
- {
- method => 'dhcp',
- },
-
- N("Norway") . "|Telenor ADSL" =>
- {
- method => 'PPPoE',
- },
-
- N("Norway") . "|Tiscali" =>
- {
- vpi => 8,
- vci => 35,
- method => 'dhcp',
- },
-
- N("Poland") . "|Telekomunikacja Polska (TPSA/neostrada)" =>
- {
- provider_id => 'PL01',
- vpi => 0,
- vci => 23,
- Encapsulation => 6,
- dnsServer2 => '194.204.152.34',
- dnsServer3 => '217.98.63.164',
- method => 'pppoa',
- },
-
- N("Poland") . "|Netia neostrada" =>
- {
- provider_id => 'PL02',
- url_tech => 'http://www.netia.pl/?o=d&s=210',
- vpi => 8,
- vci => 23,
- Encapsulation => 1,
- dnsServer2 => '195.114.181.130',
- dnsServer3 => '195.114.161.61',
- method => 'pppoe',
- },
-
- N("Portugal") . "|PT" =>
- {
- provider_id => 'PT01',
- vpi => 0,
- vci => 23,
- Encapsulation => 1,
- method => 'pppoe',
- },
-
- N("Russia") . "|MTU-Intel" =>
- {
- provider_id => 'RU01',
- url_tech => 'http://stream.ru/s-requirements',
- vpi => 1,
- vci => 50,
- Encapsulation => 1,
- dnsServer2 => '212.188.4.10',
- dnsServer3 => '195.34.32.116',
- method => 'pppoe',
- },
-
- N("Senegal") . "|Sonatel Multimedia Sentoo" =>
- {
- provider_id => 'SN01',
- vpi => 0,
- vci => 35,
- Encapsulation => 6,
- method => 'pppoa',
- DOMAINNAME2 => 'sentoo.sn',
- },
-
- N("Slovenia") . "|SiOL" =>
- {
- provider_id => 'SL01',
- vpi => 1,
- vci => 20,
- method => 'pppoe',
- Encapsulation => 1,
- dnsServer2 => '193.189.160.11',
- dnsServer3 => '193.189.160.12',
- DOMAINNAME2 => 'siol.net',
- },
-
- N("Spain") . "|Telefónica IP dinámica" =>
- {
- provider_id => 'ES01',
- vpi => 8,
- vci => 20,
- Encapsulation => 1,
- dnsServer2 => '80.58.32.33',
- dnsServer3 => '80.58.0.97',
- method => 'pppoe',
- },
-
- N("Spain") . "|Telefónica ip fija" =>
- {
- provider_id => 'ES02',
- vpi => 8,
- vci => 20,
- Encapsulation => 3,
- method => 'static',
- dnsServer2 => '80.58.32.33',
- dnsServer3 => '80.58.0.97',
- },
-
- N("Spain") . "|Wanadoo/Eresmas Retevision" =>
- {
- provider_id => 'ES03',
- vpi => 8,
- vci => 23,
- Encapsulation => 6,
- dnsServer2 => '80.58.0.33',
- dnsServer3 => '80.58.32.97',
- method => 'pppoa',
- },
-
- N("Spain") . "|Wanadoo PPPoE" =>
- {
- provider_id => 'ES04',
- vpi => 8,
- vci => 20,
- Encapsulation => 1,
- method => 'pppoe',
- },
-
- N("Spain") . "|Wanadoo ip fija" =>
- {
- provider_id => 'ES05',
- vpi => 8,
- vci => 20,
- Encapsulation => 3,
- method => 'static',
- },
-
- N("Spain") . "|Tiscali" =>
- {
- provider_id => 'ES06',
- vpi => 1,
- vci => 20,
- Encapsulation => 6,
- method => 'pppoa',
- },
-
- N("Spain") . "|Arrakis" =>
- {
- provider_id => 'ES07',
- vpi => 0,
- vci => 23,
- Encapsulation => 6,
- method => 'pppoa',
- },
-
- N("Spain") . "|Auna" =>
- {
- provider_id => 'ES08',
- vpi => 0,
- vci => 23,
- Encapsulation => 6,
- method => 'pppoa',
- },
-
- N("Spain") . "|Communitel" =>
- {
- provider_id => 'ES09',
- vpi => 0,
- vci => 21,
- Encapsulation => 6,
- method => 'pppoa',
- },
-
- N("Spain") . "|Euskatel" =>
- {
- provider_id => 'ES10',
- vpi => 8,
- vci => 20,
- Encapsulation => 1,
- method => 'pppoe',
- },
-
- N("Spain") . "|Uni2" =>
- {
- provider_id => 'ES11',
- vpi => 1,
- vci => 21,
- Encapsulation => 6,
- method => 'pppoa',
- },
-
- N("Spain") . "|Ya.com PPPoE" =>
- {
- provider_id => 'ES12',
- vpi => 8,
- vci => 20,
- Encapsulation => 1,
- method => 'pppoe',
- },
-
- N("Spain") . "|Ya.com static" =>
- {
- provider_id => 'ES13',
- vpi => 8,
- vci => 20,
- Encapsulation => 3,
- method => 'static',
- },
-
- N("Sweden") . "|Telia" =>
- {
- provider_id => 'SE01',
- vpi => 8,
- vci => 23,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("Switzerland") . "|Any" =>
- {
- provider_id => 'CH01',
- vpi => 8,
- vci => 23,
- Encapsulation => 3,
- method => 'pppoe',
- },
-
- N("Switzerland") . "|BlueWin / Swisscom" =>
- {
- provider_id => 'CH02',
- vpi => 8,
- vci => 23,
- Encapsulation => 5,
- dnsServer2 => '195.186.4.108',
- dnsServer3 => '195.186.4.109',
- method => 'pppoa',
- },
-
- N("Switzerland") . "|Tiscali.ch" =>
- {
- provider_id => 'CH03',
- vpi => 8,
- vci => 23,
- Encapsulation => 1,
- method => 'pppoa',
- },
-
- N("Thailand") . "|Asianet" =>
- {
- provider_id => 'TH01',
- vpi => 0,
- vci => 64,
- Encapsulation => 1,
- dnsServer2 => '203.144.225.242',
- dnsServer3 => '203.144.225.72',
- method => 'pppoe',
- },
-
- N("Tunisia") . "|Planet.tn" =>
- {
- provider_id => 'TH01',
- url_tech => 'http://www.planet.tn/',
- vpi => 0,
- vci => 23,
- Encapsulation => 5,
- dnsServer2 => '193.95.93.77',
- dnsServer3 => '193.95.66.10',
- method => 'pppoe',
- },
-
- N("United Arab Emirates") . "|Etisalat" =>
- {
- provider_id => 'AE01',
- vpi => 0,
- vci => 32,
- Encapsulation => 5,
- dnsServer2 => '213.42.20.20',
- dnsServer3 => '195.229.241.222',
- method => 'pppoa',
- },
-
- N("United Kingdom") . "|Tiscali UK " =>
- {
- provider_id => 'UK01',
- vpi => 0,
- vci => 26,
- Encapsulation => 6,
- dnsServer2 => '212.74.112.66',
- dnsServer3 => '212.74.112.67',
- method => 'pppoa',
- },
-
- N("United Kingdom") . "|British Telecom " =>
- {
- provider_id => 'UK02',
- vpi => 0,
- vci => 26,
- Encapsulation => 6,
- dnsServer2 => '194.74.65.69',
- dnsServer3 => '194.72.9.38',
- method => 'pppoa',
- },
-
- );
-
-
-1;
diff --git a/perl-install/network/dhcpd.pm b/perl-install/network/dhcpd.pm
deleted file mode 100644
index 8cf30d5fc..000000000
--- a/perl-install/network/dhcpd.pm
+++ /dev/null
@@ -1,50 +0,0 @@
-package network::dhcpd;
-
-use strict;
-use common;
-
-my $sysconf_dhcpd = "$::prefix/etc/sysconfig/dhcpd";
-my $dhcpd_conf_file = "$::prefix/etc/dhcpd.conf";
-my $update_dhcp = "/usr/sbin/update_dhcp.pl";
-
-sub read_dhcpd_conf {
- my ($o_file) = @_;
- my $s = cat_($o_file || $dhcpd_conf_file);
- { option_routers => [ $s =~ /^\s*option routers\s+(\S+);/mg ],
- subnet_mask => [ if_($s =~ /^\s*option subnet-mask\s+(.*);/mg, split(' ', $1)) ],
- domain_name => [ if_($s =~ /^\s*option domain-name\s+"(.*)";/mg, split(' ', $1)) ],
- domain_name_servers => [ if_($s =~ /^\s*option domain-name-servers\s+(.*);/m, split(' ', $1)) ],
- dynamic_bootp => [ if_($s =~ /^\s*range dynamic-bootp\s+\S+\.(\d+)\s+\S+\.(\d+)\s*;/m, split(' ', $1)) ],
- default_lease_time => [ if_($s =~ /^\s*default-lease-time\s+(.*);/m, split(' ', $1)) ],
- max_lease_time => [ if_($s =~ /^\s*max-lease-time\s+(.*);/m, split(' ', $1)) ] };
-}
-
-sub write_dhcpd_conf {
- my ($dhcpd_conf, $device) = @_;
-
- my ($lan) = $dhcpd_conf->{option_routers}[0] =~ /^(.*)\.\d+$/;
- log::explanations("Configuring a DHCP server on $lan.0");
-
- renamef($dhcpd_conf_file, "$dhcpd_conf_file.old");
- output($dhcpd_conf_file, qq(subnet $lan.0 netmask $dhcpd_conf->{subnet_mask}[0] {
- # default gateway
- option routers $dhcpd_conf->{option_routers}[0];
- option subnet-mask $dhcpd_conf->{subnet_mask}[0];
-
- option domain-name "$dhcpd_conf->{domain_name}[0]";
- option domain-name-servers $dhcpd_conf->{domain_name_servers}[0];
-
- range dynamic-bootp $lan.$dhcpd_conf->{dynamic_bootp}[0] $lan.$dhcpd_conf->{dynamic_bootp}[1];
- default-lease-time $dhcpd_conf->{default_lease_time}[0];
- max-lease-time $dhcpd_conf->{max_lease_time}[0];
-}
-));
-
- #- put the interface for the dhcp server in the sysconfig-dhcp config, for the /etc/init.d script of dhcpd
- log::explanations("Update network interfaces list for dhcpd server");
- substInFile { s/^INTERFACES\n//; $_ .= qq(INTERFACES="$device"\n) if eof } $sysconf_dhcpd if !$::testing;
- run_program::rooted($::prefix, $update_dhcp);
-}
-
-
-1;
diff --git a/perl-install/network/drakfirewall.pm b/perl-install/network/drakfirewall.pm
deleted file mode 100644
index e67da229b..000000000
--- a/perl-install/network/drakfirewall.pm
+++ /dev/null
@@ -1,283 +0,0 @@
-package network::drakfirewall; # $Id$
-
-use strict;
-use diagnostics;
-
-use network::shorewall;
-use common;
-
-my @all_servers =
-(
- {
- name => N_("Web Server"),
- pkg => 'apache apache-mod_perl boa',
- ports => '80/tcp 443/tcp',
- },
- {
- name => N_("Domain Name Server"),
- pkg => 'bind',
- ports => '53/tcp 53/udp',
- },
- {
- name => N_("SSH server"),
- pkg => 'openssh-server',
- ports => '22/tcp',
- },
- {
- name => N_("FTP server"),
- pkg => 'ftp-server-krb5 wu-ftpd proftpd pure-ftpd',
- ports => '20/tcp 21/tcp',
- },
- {
- name => N_("Mail Server"),
- pkg => 'sendmail postfix qmail',
- ports => '25/tcp',
- },
- {
- name => N_("POP and IMAP Server"),
- pkg => 'imap courier-imap-pop',
- ports => '109/tcp 110/tcp 143/tcp',
- },
- {
- name => N_("Telnet server"),
- pkg => 'telnet-server-krb5',
- ports => '23/tcp',
- hide => 1,
- },
- {
- name => N_("Windows Files Sharing (SMB)"),
- pkg => 'samba-server',
- ports => '137/tcp 137/udp 138/tcp 138/udp 139/tcp 139/udp 445/tcp 445/udp 1024:1100/tcp 1024:1100/udp',
- hide => 1,
- },
- {
- name => N_("CUPS server"),
- pkg => 'cups',
- ports => '631/tcp 631/udp',
- hide => 1,
- },
- {
- name => N_("Echo request (ping)"),
- ports => '8/icmp',
- force_default_selection => 0,
- },
- {
- name => N_("BitTorrent"),
- ports => '6881:6999/tcp',
- hide => 1,
- pkg => 'bittorrent bittorrent-shadowsclient',
- },
-);
-
-my @ifw_rules = (
- {
- name => N_("Port scan detection"),
- ifw_rule => 'psd',
- },
-);
-
-sub port2server {
- my ($port) = @_;
- find {
- any { $port eq $_ } split(' ', $_->{ports});
- } @all_servers;
-}
-
-sub check_ports_syntax {
- my ($ports) = @_;
- foreach (split ' ', $ports) {
- my ($nb, $range, $nb2) = m!^(\d+)(:(\d+))?/(tcp|udp|icmp)$! or return $_;
- foreach my $port ($nb, if_($range, $nb2)) {
- 1 <= $port && $port <= 65535 or return $_;
- }
- $nb < $nb2 or return $_ if $range;
- }
- '';
-}
-
-sub to_ports {
- my ($servers, $unlisted) = @_;
- join(' ', (map { $_->{ports} } @$servers), if_($unlisted, $unlisted));
-}
-
-sub from_ports {
- my ($ports) = @_;
-
- my @l;
- my @unlisted;
- foreach (split ' ', $ports) {
- if (my $s = port2server($_)) {
- push @l, $s;
- } else {
- push @unlisted, $_;
- }
- }
- [ uniq(@l) ], join(' ', @unlisted);
-}
-
-sub default_from_pkgs {
- my ($do_pkgs) = @_;
- my @pkgs = $do_pkgs->are_installed(map { split ' ', $_->{pkg} } @all_servers);
- [ grep {
- my $s = $_;
- exists $s->{force_default_selection} ?
- $s->{force_default_selection} :
- any { member($_, @pkgs) } split(' ', $s->{pkg});
- } @all_servers ];
-}
-
-sub default_ports {
- my ($do_pkgs) = @_;
- to_ports(default_from_pkgs($do_pkgs), '');
-}
-
-sub get_ports() {
- my $shorewall = network::shorewall::read() or return;
- $shorewall->{ports};
-}
-
-sub set_ports {
- my ($do_pkgs, $disabled, $ports, $o_in) = @_;
-
- my $shorewall = network::shorewall::read($o_in) or return;
-
- if (!$disabled || -x "$::prefix/sbin/shorewall") {
- $do_pkgs->ensure_binary_is_installed('shorewall', 'shorewall', $::isInstall) or return;
-
- $shorewall->{disabled} = $disabled;
- $shorewall->{ports} = $ports;
- log::l($disabled ? "disabling shorewall" : "configuring shorewall to allow ports: $ports");
- network::shorewall::write($shorewall);
- }
-}
-
-sub get_conf {
- my ($in, $disabled, $o_ports) = @_;
-
- my $possible_servers = default_from_pkgs($in->do_pkgs);
- $_->{hide} = 0 foreach @$possible_servers;
-
- if ($o_ports) {
- $disabled, from_ports($o_ports);
- } elsif (my $shorewall = network::shorewall::read()) {
- $shorewall->{disabled}, from_ports($shorewall->{ports});
- } else {
- $in->ask_okcancel('', N("drakfirewall configurator
-
-This configures a personal firewall for this Mandriva Linux machine.
-For a powerful and dedicated firewall solution, please look to the
-specialized Mandriva Security Firewall distribution."), 1) or return;
-
- $in->ask_okcancel('', N("drakfirewall configurator
-
-Make sure you have configured your Network/Internet access with
-drakconnect before going any further."), 1) or return;
-
- $disabled, $possible_servers, '';
- }
-}
-
-sub choose_allowed_services {
- my ($in, $disabled, $servers, $unlisted) = @_;
-
- $_->{on} = 0 foreach @all_servers;
- $_->{on} = 1 foreach @$servers;
- my @l = grep { $_->{on} || !$_->{hide} } @all_servers;
-
- $in->ask_from_({
- messages => N("Which services would you like to allow the Internet to connect to?"),
- title => N("Firewall"),
- icon => 'banner-security',
- advanced_messages => N("You can enter miscellaneous ports.
-Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.
-Have a look at /etc/services for information."),
- callbacks => {
- complete => sub {
- if (my $invalid_port = check_ports_syntax($unlisted)) {
- $in->ask_warn('', N("Invalid port given: %s.
-The proper format is \"port/tcp\" or \"port/udp\",
-where port is between 1 and 65535.
-
-You can also give a range of ports (eg: 24300:24350/udp)", $invalid_port));
- return 1;
- }
- },
- } },
- [
- { text => N("Everything (no firewall)"), val => \$disabled, type => 'bool' },
- (map { { text => translate($_->{name}), val => \$_->{on}, type => 'bool', disabled => sub { $disabled } } } @l),
- { label => N("Other ports"), val => \$unlisted, advanced => 1, disabled => sub { $disabled } }
- ]) or return;
-
- $disabled, [ grep { $_->{on} } @l ], $unlisted;
-}
-
-sub set_ifw {
- my ($do_pkgs, $enabled, $rules, $ports) = @_;
- if ($enabled) {
- $do_pkgs->ensure_is_installed('mandi-ifw', '/etc/ifw/start', $::isInstall) or return;
-
- my $ports_by_proto = network::shorewall::ports_by_proto($ports);
- output_with_perm("$::prefix/etc/ifw/rules", 0644, map { "$_\n" } (
- (map { "source /etc/ifw/rules.d/$_" } @$rules),
- map {
- my $proto = $_;
- map {
- my $multiport = /:/ && " -m multiport";
- "iptables -A Ifw -m state --state NEW -p $proto$multiport --dport $_ -j IFWLOG --log-prefix NEW\n";
- } @{$ports_by_proto->{$proto}};
- } keys %$ports_by_proto,
- ));
- }
-
- my $set_in_file = sub {
- my ($file, @list) = @_;
- substInFile {
- foreach my $l (@list) { s|^$l\n|| }
- $_ .= join("\n", @list) . "\n" if eof && $enabled;
- } "$::prefix/etc/shorewall/$file";
- };
- $set_in_file->('start', "INCLUDE /etc/ifw/start", "INCLUDE /etc/ifw/rules", "iptables -I INPUT 2 -j Ifw");
- $set_in_file->('stop', "iptables -D INPUT -j Ifw", "INCLUDE /etc/ifw/stop");
-}
-
-sub choose_watched_services {
- my ($in, $servers, $unlisted) = @_;
-
- my @l = (@ifw_rules, @$servers, map { { ports => $_ } } split(' ', $unlisted));
- my $enabled = 1;
- $_->{ifw} = 1 foreach @l;
-
- $in->ask_from_({
- messages =>
- N("Interactive Firewall") . "\n\n" .
- N("You can be warned when someone accesses to a service or tries to intrude into your computer.
-Please select which network activity should be watched."),
- title => N("Interactive Firewall"),
- },
- [
- { text => N("Use Interactive Firewall"), val => \$enabled, type => 'bool' },
- map { {
- text => (exists $_->{name} ? translate($_->{name}) : $_->{ports}),
- val => \$_->{ifw},
- type => 'bool', disabled => sub { !$enabled },
- } } @l,
- ]) or return;
- my ($rules, $ports) = partition { exists $_->{ifw_rule} } grep { $_->{ifw} } @l;
- set_ifw($in->do_pkgs, $enabled, [ map { $_->{ifw_rule} } @$rules ], to_ports($ports));
-}
-
-sub main {
- my ($in, $disabled) = @_;
-
- ($disabled, my $servers, my $unlisted) = get_conf($in, $disabled) or return;
-
- ($disabled, $servers, $unlisted) = choose_allowed_services($in, $disabled, $servers, $unlisted) or return;
-
- choose_watched_services($in, $servers, $unlisted) unless $disabled;
-
- my $ports = to_ports($servers, $unlisted);
- set_ports($in->do_pkgs, $disabled, $ports, $in) or return;
-
- ($disabled, $ports);
-}
diff --git a/perl-install/network/ethernet.pm b/perl-install/network/ethernet.pm
deleted file mode 100644
index c97f45f1c..000000000
--- a/perl-install/network/ethernet.pm
+++ /dev/null
@@ -1,162 +0,0 @@
-package network::ethernet; # $Id$
-
-use c;
-use detect_devices;
-use common;
-use run_program;
-
-our @dhcp_clients = qw(dhclient dhcpcd pump dhcpxd);
-
-sub install_dhcp_client {
- my ($in, $client) = @_;
- my %packages = (
- "dhclient" => "dhcp-client",
- );
- #- use default dhcp client if none is provided
- $client ||= $dhcp_clients[0];
- $client = $packages{$client} if exists $packages{$client};
- $in->do_pkgs->install($client);
-}
-
-sub mapIntfToDevice {
- my ($interface) = @_;
- my $hw_addr = c::getHwIDs($interface);
- return {} if $hw_addr =~ /^usb/;
- my ($bus, $slot, $func) = map { hex($_) } ($hw_addr =~ /([0-9a-f]+):([0-9a-f]+)\.([0-9a-f]+)/);
- $hw_addr && (every { defined $_ } $bus, $slot, $func) ?
- grep { $_->{pci_bus} == $bus && $_->{pci_device} == $slot && $_->{pci_function} == $func } detect_devices::probeall() : {};
-}
-
-
-# return list of [ intf_name, module, device_description ] tuples such as:
-# [ "eth0", "3c59x", "3Com Corporation|3c905C-TX [Fast Etherlink]" ]
-#
-# this function try several method in order to get interface's driver and description in order to support both:
-# - hotplug managed devices (USB, firewire)
-# - special interfaces (IP aliasing, VLAN)
-sub get_eth_cards {
- my ($modules_conf) = @_;
- my @all_cards = detect_devices::getNet();
-
- my @devs = detect_devices::pcmcia_probe();
- my $saved_driver;
- # compute device description and return (interface, driver, description) tuples:
- return map {
- my $interface = $_;
- my $description;
- # 1) get interface's driver through ETHTOOL ioctl:
- my ($a, $detected_through_ethtool);
- $a = c::getNetDriver($interface);
- if ($a) {
- $detected_through_ethtool = 1;
- } else {
- # 2) get interface's driver through module aliases:
- $a = $modules_conf->get_alias($interface);
- }
-
- # workaround buggy drivers that returns a bogus driver name for the GDRVINFO command of the ETHTOOL ioctl:
- my %fixes = (
- "p80211_prism2_cs" => 'prism2_cs',
- "p80211_prism2_pci" => 'prism2_pci',
- "p80211_prism2_usb" => 'prism2_usb',
- "ip1394" => "eth1394",
- "DL2K" => "dl2k",
- "orinoco" => undef, #- should be orinoco_{cs,nortel,pci,plx,tmd}
- "hostap" => undef, #- should be hostap_{cs,pci,plx}
- );
- if (exists $fixes{$a}) {
- $a = $fixes{$a};
- $a or undef $detected_through_ethtool;
- }
-
- # 3) try to match a PCMCIA device for device description:
- if (my $b = find { $_->{device} eq $interface } @devs) { # PCMCIA case
- $a = $b->{driver};
- $description = $b->{description};
- } else {
- # 4) try to lookup a device by hardware address for device description:
- # maybe should have we try sysfs first for robustness?
- ($description) = (mapIntfToDevice($interface))[0]->{description};
- }
- # 5) try to match a device through sysfs for driver & device description:
- # (eg: ipw2100 driver for intel centrino do not support ETHTOOL)
- if (!$description || !$a) {
- my $dev_path = "/sys/class/net/$interface/device";
- my $drv = readlink("$dev_path/driver");
- if ($drv && $drv =~ s!.*/!!) {
- $a = $drv unless $detected_through_ethtool;
- my $sysfs_fields = detect_devices::get_sysfs_device_id_map($dev_path);
- my %l = map { $_ => hex(chomp_(cat_("$dev_path/" . $sysfs_fields->{$_}))) } keys %$sysfs_fields;
- my @cards = grep { my $dev = $_; every { $dev->{$_} eq $l{$_} } keys %l } detect_devices::probeall();
- $description ||= $cards[0]{description} if @cards == 1;
- } elsif (!$a && -e "/sys/class/net/$interface/wireless") {
- # probably a rt2400/rt2500 device (PCI or PCMCIA CardBus) or zd1201 (USB)
- # these broken drivers don't create the "device" link
- # try to see if rt2400/rt2500/zd1201 is loaded, and assume current wireless device uses it
- # FIXME: remove this code as soon as the drivers are fixed
- $a = find { -e "/sys/bus/pci/drivers/$_" } qw(rt2400 rt2500);
- $a ||= find { -e "/sys/bus/usb/drivers/$_" } qw(zd1201);
- }
- }
- # 6) try to match a device by driver for device description:
- # (eg: madwifi, ndiswrapper, ...)
- if (!$description) {
- my @cards = grep { $_->{driver} eq ($a || $saved_driver) } detect_devices::probeall();
- $description = $cards[0]{description} if @cards == 1;
- }
- $a and $saved_driver = $a; # handle multiple cards managed by the same driver
- [ $interface, $saved_driver, if_($description, $description) ];
- } @all_cards;
-}
-
-sub get_eth_cards_names {
- my (@all_cards) = @_;
- map { $_->[0] => join(': ', $_->[0], $_->[2]) } @all_cards;
-}
-
-#- returns (link_type, mac_address)
-sub get_eth_card_mac_address {
- my ($intf) = @_;
- #- don't look for 6 bytes addresses only because of various non-standard MAC addresses
- `$::prefix/sbin/ip -o link show $intf 2>/dev/null` =~ m|.*link/(\S+)\s((?:[0-9a-f]{2}:?)+)\s|;
-}
-
-#- write interfaces MAC address in iftab
-sub update_iftab() {
- #- skip aliases interfaces
- foreach my $intf (grep { !/:\d+$/ } detect_devices::getNet()) {
- my ($link_type, $mac_address) = get_eth_card_mac_address($intf) or next;
- #- do not write zeroed MAC addresses in iftab, it confuses ifrename
- $mac_address =~ /^[0:]+$/ and next;
- # ifrename supports alsa IEEE1394, EUI64 and IRDA
- member($link_type, 'ether', 'ieee1394', 'irda', '[27]') or next;
- substInFile {
- s/^$intf\s+.*\n//;
- s/^.*\s+$mac_address\n//;
- $_ .= qq($intf mac $mac_address\n) if eof;
- } "$::prefix/etc/iftab";
- }
-}
-
-# automatic net aliases configuration
-sub configure_eth_aliases {
- my ($modules_conf) = @_;
- my @pcmcia_interfaces = map { $_->{device} } detect_devices::pcmcia_probe();
- foreach my $card (get_eth_cards($modules_conf)) {
- if (member($card->[0], @pcmcia_interfaces)) {
- #- do not write aliases for pcmcia cards, or cardmgr will not be loaded
- $modules_conf->remove_alias($card->[0]);
- } else {
- $modules_conf->set_alias($card->[0], $card->[1]);
- }
- }
- $::isStandalone and $modules_conf->write;
- update_iftab();
-}
-
-sub is_ifplugd_blacklisted {
- my ($module) = @_;
- member($module, qw(forcedeth via-velocity));
-}
-
-1;
diff --git a/perl-install/network/ifw.pm b/perl-install/network/ifw.pm
deleted file mode 100644
index 40ff0ac6d..000000000
--- a/perl-install/network/ifw.pm
+++ /dev/null
@@ -1,141 +0,0 @@
-package network::ifw;
-
-use Socket;
-use common;
-
-our @ISA = qw(dbus_object);
-
-sub new {
- my ($type, $bus, $filter) = @_;
-
- my $con = $bus->{connection};
- $con->add_filter($filter);
- $con->add_match("type='signal',interface='com.mandriva.monitoring.ifw'");
-
- require dbus_object;
- my $o = dbus_object::new($type,
- $bus,
- "com.mandriva.monitoring",
- "/com/mandriva/monitoring/ifw",
- "com.mandriva.monitoring.ifw");
- dbus_object::set_gtk2_watch($o);
- $o;
-}
-
-sub set_blacklist_verdict {
- my ($o, $seq, $blacklist) = @_;
- $o->call_method('SetBlacklistVerdict', Net::DBus::dbus_uint32($seq), Net::DBus::dbus_uint32($blacklist));
-}
-
-sub unblacklist {
- my ($o, $addr) = @_;
- $o->call_method('UnBlacklist', Net::DBus::dbus_uint32($addr));
-}
-
-sub whitelist {
- my ($o, $addr) = @_;
- $o->call_method('Whitelist', Net::DBus::dbus_uint32($addr));
-}
-
-sub unwhitelist {
- my ($o, $addr) = @_;
- $o->call_method('UnWhitelist', Net::DBus::dbus_uint32($addr));
-}
-
-sub get_interactive {
- my ($o) = @_;
- $o->call_method('GetMode');
-}
-
-sub set_interactive {
- my ($o, $mode) = @_;
- $o->call_method('SetMode', Net::DBus::dbus_uint32($mode));
-}
-
-sub get_reports {
- my ($o, $o_include_processed) = @_;
- $o->call_method('GetReports', Net::DBus::dbus_uint32(to_bool($o_include_processed)));
-}
-
-sub get_blacklist {
- my ($o) = @_;
- $o->call_method('GetBlacklist');
-}
-
-sub get_whitelist {
- my ($o) = @_;
- $o->call_method('GetWhitelist');
-}
-
-sub clear_processed_reports {
- my ($o) = @_;
- $o->call_method('ClearProcessedReports');
-}
-
-sub send_alert_ack {
- my ($o) = @_;
- $o->call_method('SendAlertAck');
-}
-
-sub send_manage_request {
- my ($o) = @_;
- $o->call_method('SendManageRequest');
-}
-
-sub format_date {
- my ($timestamp) = @_;
- require c;
- c::strftime("%c", localtime($timestamp));
-}
-
-sub get_service {
- my ($port) = @_;
- getservbyport($port, undef) || $port;
-}
-
-sub get_protocol {
- my ($protocol) = @_;
- getprotobynumber($protocol) || $protocol;
-}
-
-sub get_ip_address {
- my ($addr) = @_;
- inet_ntoa(pack('L', $addr));
-}
-
-sub resolve_address {
- my ($ip_addr) = @_;
- #- try to resolve address, timeout after 2 seconds
- my $hostname;
- eval {
- local $SIG{ALRM} = sub { die "ALARM" };
- alarm 2;
- $hostname = gethostbyaddr(inet_aton($ip_addr), AF_INET);
- alarm 0;
- };
- $hostname || $ip_addr;
-}
-
-sub attack_to_hash {
- my ($args) = @_;
- my $attack = { mapn { $_[0] => $_[1] } [ 'timestamp', 'indev', 'prefix', 'sensor', 'protocol', 'addr', 'port', 'icmp_type', 'seq', 'processed' ], $args };
- $attack->{port} = unpack('S', pack('n', $attack->{port}));
- $attack->{date} = format_date($attack->{timestamp});
- $attack->{ip_addr} = get_ip_address($attack->{addr});
- $attack->{hostname} = resolve_address($attack->{ip_addr});
- $attack->{protocol} = get_protocol($attack->{protocol});
- $attack->{service} = get_service($attack->{port});
- $attack->{type} =
- $attack->{prefix} eq 'SCAN' ? N("Port scanning")
- : $attack->{prefix} eq 'SERV' ? N("Service attack")
- : $attack->{prefix} eq 'PASS' ? N("Password cracking")
- : N(qq("%s" attack), $attack->{prefix});
- $attack->{msg} =
- $attack->{prefix} eq "SCAN" ? N("A port scanning attack has been attempted by %s.", $attack->{hostname})
- : $attack->{prefix} eq "SERV" ? N("The %s service has been attacked by %s.", $attack->{service}, $attack->{hostname})
- : $attack->{prefix} eq "PASS" ? N("A password cracking attack has been attempted by %s.", $attack->{hostname})
- : N(qq(A "%s" attack has been attempted by %s), $attack->{prefix}, $attack->{hostname});
- $attack;
-}
-
-1;
diff --git a/perl-install/network/ipsec.pm b/perl-install/network/ipsec.pm
deleted file mode 100644
index c0ca7689e..000000000
--- a/perl-install/network/ipsec.pm
+++ /dev/null
@@ -1,781 +0,0 @@
-package network::ipsec;
-
-
-
-use detect_devices;
-use run_program;
-use common;
-use log;
-
-#- debugg functions ----------
-sub recreate_ipsec_conf {
- my ($ipsec, $kernel_version) = @_;
- if ($kernel_version < 2.5) {
- #- kernel 2.4 part -------------------------------
- foreach my $key1 (ikeys %$ipsec) {
- print "$ipsec->{$key1}\n" if ! $ipsec->{$key1}{1};
- foreach my $key2 (ikeys %{$ipsec->{$key1}}) {
- if ($ipsec->{$key1}{$key2}[0] =~ m/^#/) {
- print "\t$ipsec->{$key1}{$key2}[0]\n";
- } elsif ($ipsec->{$key1}{$key2}[0] =~ m/(conn|config|version)/) {
- print "$ipsec->{$key1}{$key2}[0] $ipsec->{$key1}{$key2}[1]\n";
- } else {
- print "\t$ipsec->{$key1}{$key2}[0]=$ipsec->{$key1}{$key2}[1]\n";
- }
- }
- }
- } else {
- #- kernel 2.6 part -------------------------------
- foreach my $key1 (ikeys %$ipsec) {
- if (! $ipsec->{$key1}{command}) {
- print "$ipsec->{$key1}\n";
- } else {
- print $ipsec->{$key1}{command} . " " .
- $ipsec->{$key1}{src_range} . " " .
- $ipsec->{$key1}{dst_range} . " " .
- $ipsec->{$key1}{upperspec} . " " .
- $ipsec->{$key1}{flag} . " " .
- $ipsec->{$key1}{direction} . " " .
- $ipsec->{$key1}{ipsec} . "\n\t" .
- $ipsec->{$key1}{protocol} . "/" .
- $ipsec->{$key1}{mode} . "/" .
- $ipsec->{$key1}{src_dest} . "/" .
- $ipsec->{$key1}{level} . ";\n";
- }
- }
- }
-}
-
-sub recreate_racoon_conf {
- my ($racoon) = @_;
- my $in_a_section = "n";
- my $in_a_proposal_section = "n";
- foreach my $key1 (ikeys %$racoon) {
- if ($in_a_proposal_section eq "y") {
- print "\t}\n}\n$racoon->{$key1}\n" if ! $racoon->{$key1}{1};
- } elsif ($in_a_section eq "y") {
- print "}\n$racoon->{$key1}\n" if ! $racoon->{$key1}{1};
- } else {
- print "$racoon->{$key1}\n" if ! $racoon->{$key1}{1};
- }
- $in_a_section = "n";
- $in_a_proposal_section = "n";
- foreach my $key2 (ikeys %{$racoon->{$key1}}) {
- if ($racoon->{$key1}{$key2}[0] =~ /^path/) {
- print "$racoon->{$key1}{$key2}[0] $racoon->{$key1}{$key2}[1] $racoon->{$key1}{$key2}[2];\n";
- } elsif ($racoon->{$key1}{$key2}[0] =~ /^remote/) {
- $in_a_section = "y";
- $in_a_proposal_section = "n";
- print "$racoon->{$key1}{$key2}[0] $racoon->{$key1}{$key2}[1] {\n";
- } elsif ($racoon->{$key1}{$key2}[0] =~ /^sainfo/) {
- $in_a_section = "y";
- $in_a_proposal_section = "n";
- if ($racoon->{$key1}{$key2}[2] && $racoon->{$key1}{$key2}[5]) {
- print "$racoon->{$key1}{$key2}[0] $racoon->{$key1}{$key2}[1] $racoon->{$key1}{$key2}[2] $racoon->{$key1}{$key2}[3] $racoon->{$key1}{$key2}[4] $racoon->{$key1}{$key2}[5] $racoon->{$key1}{$key2}[6] {\n";
- } else {
- print "$racoon->{$key1}{$key2}[0] anonymous {\n";
- }
- } elsif ($racoon->{$key1}{$key2}[0] =~ /^proposal /) {
- $in_a_proposal_section = "y";
- print "\t$racoon->{$key1}{$key2}[0] {\n";
- } elsif ($in_a_section eq "y" && $racoon->{$key1}{$key2}[0] =~ /^certificate_type/) {
- print "\t$racoon->{$key1}{$key2}[0] $racoon->{$key1}{$key2}[1] $racoon->{$key1}{$key2}[2] $racoon->{$key1}{$key2}[3];\n";
- } elsif ($in_a_section eq "y" && $racoon->{$key1}{$key2}[0] =~ /^#/) {
- print "\t$racoon->{$key1}{$key2}[0] $racoon->{$key1}{$key2}[1]\n";
- } elsif ($in_a_section eq "y") {
- print "\t$racoon->{$key1}{$key2}[0] $racoon->{$key1}{$key2}[1];\n";
- } elsif ($in_a_proposal_section eq "y" && $racoon->{$key1}{$key2}[0] =~ /^#/) {
- print "\t\t$racoon->{$key1}{$key2}[0] $racoon->{$key1}{$key2}[1]\n";
- } elsif ($in_a_proposal_section eq "y") {
- print "\t\t$racoon->{$key1}{$key2}[0] $racoon->{$key1}{$key2}[1];\n";
- }
- }
- }
-
-print "}\n";
-}
-
-sub recreate_ipsec_conf1_k24 {
- my ($ipsec) = @_;
- foreach my $key1 (ikeys %$ipsec) {
- print "$key1-->$ipsec->{$key1}\n" if ! $ipsec->{$key1}{1};
- foreach my $key2 (ikeys %{$ipsec->{$key1}}) {
- if ($ipsec->{$key1}{$key2}[0] =~ m/^#/) {
- print "\t$key2-->$ipsec->{$key1}{$key2}[0]\n";
- } elsif ($ipsec->{$key1}{$key2}[0] =~ m/(conn|config|version)/) {
- print "$key1-->$key2-->$ipsec->{$key1}{$key2}[0] $ipsec->{$key1}{$key2}[1]\n";
- } else {
- print "\t$key2-->$ipsec->{$key1}{$key2}[0]=$ipsec->{$key1}{$key2}[1]\n";
- }
- }
- }
-}
-#- end of debug functions --------
-
-sub sys { system(@_) == 0 or log::l("[drakvpn] Warning, sys failed for $_[0]") }
-
-sub start_daemons () {
- return if $::testing;
- log::explanations("Starting daemons");
- if (-e "/etc/rc.d/init.d/ipsec") {
- system("/etc/rc.d/init.d/ipsec status >/dev/null") == 0 and sys("/etc/rc.d/init.d/ipsec stop");
- sys("/etc/rc.d/init.d/$_ start >/dev/null"), sys("/sbin/chkconfig --level 345 $_ on") foreach 'ipsec';
- } else {
-
- }
- sys("/etc/rc.d/init.d/$_ start >/dev/null"), sys("/sbin/chkconfig --level 345 $_ on") foreach 'shorewall';
-}
-
-sub stop_daemons () {
- return if $::testing;
- log::explanations("Stopping daemons");
- if (-e "/etc/rc.d/init.d/ipsec") {
- foreach (qw(ipsec)) {
- system("/etc/rc.d/init.d/$_ status >/dev/null 2>/dev/null") == 0 and sys("/etc/rc.d/init.d/$_ stop");
- }
- sys("/sbin/chkconfig --level 345 $_ off") && -e "/etc/rc.d/init.d/$_" foreach 'ipsec';
- }
- system("/etc/rc.d/init.d/shorewall status >/dev/null 2>/dev/null") == 0 and sys("/etc/rc.d/init.d/shorewall stop >/dev/null");
-
-}
-
-sub set_config_file {
- my ($file, @l) = @_;
-
- my $done;
- substInFile {
- if (!$done && (/^#LAST LINE/ || eof)) {
- $_ = join('', map { join("\t", @$_) . "\n" } @l) . $_;
- $done = 1;
- } else {
- $_ = '' if /^[^#]/;
- }
- } "$::prefix/$file";
-}
-
-sub get_config_file {
- my ($file) = @_;
- map { [ split ' ' ] } grep { !/^#/ } cat_("$::prefix/$file");
-}
-
-
-#-------------------------------------------------------------------
-#---------------------- configure racoon_conf -----------------------
-#-------------------------------------------------------------------
-
-sub read_racoon_conf {
- my ($racoon_conf) = @_;
- my %conf;
- my $nb = 0; #total number
- my $i = 0; #nb within a section
- my $in_a_section = "n";
- my @line1;
- my $line = "";
- local $_;
- open(my $LIST, "< $racoon_conf");
- while (<$LIST>) {
- chomp($_);
- $line = $_;
- $in_a_section = "n" if $line =~ /}/ && $line !~ /^#/;
- $line =~ s/^\s+|\s*;|\s*{//g if $line !~ /^#/;
- $line =~ /(.*)#(.*)/ if $line !~ /^#/; #- define before and after comment
-# print "--line-->$line\n";
- my $data_part = $1;
- my $comment_part = "#" . $2;
- if ($data_part) {
- $data_part =~ s/,//g;
-# print "@@".$data_part."->".$comment_part."\n";
- @line1 = split /\s+/,$data_part;
- @line1 = (@line1, $comment_part) if $comment_part;
- } else {
- @line1 = split /\s+/,$line;
- }
- if (!$line && $in_a_section eq "n") {
- $nb++;
- put_in_hash(\%conf, { $nb => $line });
- $in_a_section = "n";
- } elsif (!$line && $in_a_section eq "y") {
- put_in_hash($conf{$nb} ||= {}, { $i => [ '' ] });
- $i++;
- } elsif ($line =~ /^path/) {
- $i=1;
- $nb++;
- put_in_hash($conf{$nb} ||= {}, { $i => [@line1] });
- $in_a_section = "n";
- $i++;
- } elsif ($line =~ /^#|^{|^}/) {
- if ($in_a_section eq "y") {
- put_in_hash($conf{$nb} ||= {}, { $i => [$line] });
- $i++;
- } else {
- $nb++;
- put_in_hash(\%conf, { $nb => $line });
- $in_a_section = "n";
- }
- } elsif ($line =~ /^sainfo|^remote|^listen|^timer|^padding/ && $in_a_section eq "n") {
- $i=1;
- $nb++;
- put_in_hash($conf{$nb} ||= {}, { $i => [@line1] });
- $in_a_section = "y";
- $i++;
- } elsif ($line eq "proposal" && $in_a_section eq "y") {
- $i=1;
- $nb++;
- put_in_hash($conf{$nb} ||= {}, { $i => [@line1] });
- $in_a_section = "y";
- $i++;
- } else {
- put_in_hash($conf{$nb} ||= {}, { $i => [@line1] });
- $i++;
- }
- }
-
-\%conf;
-}
-
-sub display_racoon_conf {
- my ($racoon) = @_;
- my $display = "";
- my $prefix_to_simple_line = "";
- foreach my $key1 (ikeys %$racoon) {
- if (!$racoon->{$key1}{1}) {
- $display .= $prefix_to_simple_line . $racoon->{$key1} . "\n";
- $prefix_to_simple_line = "";
- } else {
- foreach my $key2 (ikeys %{$racoon->{$key1}}) {
- my $t = $racoon->{$key1}{1}[0];
- my $f = $racoon->{$key1}{$key2}[0];
- my $list_length = scalar @{$racoon->{$key1}{$key2}};
- my $line = "";
-
- if ($racoon->{$key1}{$key2}[0] eq "sainfo" && !$racoon->{$key1}{$key2}[2]) {
- $line = "sainfo anonymous";
- } else {
- for (my $i = 0; $i <= $list_length-1; $i++) {
-
- my $c = $racoon->{$key1}{$key2}[$i];
- my $n = $racoon->{$key1}{$key2}[$i+1];
-
- if ($c =~ /^path|^log|^timer|^listen|^padding|^remote|^proposal|^sainfo/) {
- $line .= "$c ";
- } elsif ($i == $list_length-2 && $n =~ /^#/) {
- $line .= "$c; ";
- } elsif ($i == $list_length-1) {
- if ($f =~ /^#|^$|^timer|^listen|^padding|^remote|^proposal\s+|^sainfo/) {
- $line .= $c;
- } elsif ($c =~ /^#/) {
- $line .= "\t$c";
- } else {
- $line .= "$c;";
- }
- } else {
- $line .= "$c ";
- }
- }
- }
-
- if ($f =~ /^timer|^listen|^padding|^remote|^sainfo/) {
- $line .= " {";
- $prefix_to_simple_line = "";
- } elsif ($f eq "proposal") {
- $line = "\t" . $line . " {";
- } elsif ($t eq "proposal") {
- $line = "\t\t" . $line if $line ne "proposal";
- $prefix_to_simple_line = "\t";
- } else {
- $line = "\t" . $line if $t !~ /^path|^log/;
- $prefix_to_simple_line = "";
- }
- $display .= "$line\n";
- }
- }
- }
-
-$display;
-
-}
-
-sub write_racoon_conf {
- my ($racoon_conf, $racoon) = @_;
- my $display = "";
- my $prefix_to_simple_line = "";
- foreach my $key1 (ikeys %$racoon) {
- if (!$racoon->{$key1}{1}) {
- $display .= $prefix_to_simple_line . $racoon->{$key1} . "\n";
- $prefix_to_simple_line = "";
- } else {
- foreach my $key2 (ikeys %{$racoon->{$key1}}) {
- my $t = $racoon->{$key1}{1}[0];
- my $f = $racoon->{$key1}{$key2}[0];
- my $list_length = scalar @{$racoon->{$key1}{$key2}};
- my $line = "";
-
- if ($racoon->{$key1}{$key2}[0] eq "sainfo" && !$racoon->{$key1}{$key2}[2]) {
- $line = "sainfo anonymous";
- } else {
- for (my $i = 0; $i <= $list_length-1; $i++) {
-
- my $c = $racoon->{$key1}{$key2}[$i];
- my $n = $racoon->{$key1}{$key2}[$i+1];
-
- if ($c =~ /^path|^log|^timer|^listen|^padding|^remote|^proposal|^sainfo/) {
- $line .= "$c ";
- } elsif ($i == $list_length-2 && $n =~ /^#/) {
- $line .= "$c; ";
- } elsif ($i == $list_length-1) {
- if ($f =~ /^#|^$|^timer|^listen|^padding|^remote|^proposal\s+|^sainfo/) {
- $line .= $c;
- } elsif ($c =~ /^#/) {
- $line .= "\t$c";
- } else {
- $line .= "$c;";
- }
- } else {
- $line .= "$c ";
- }
- }
- }
-
- if ($f =~ /^timer|^listen|^padding|^remote|^sainfo/) {
- $line .= " {";
- $prefix_to_simple_line = "";
- } elsif ($f eq "proposal") {
- $line = "\t" . $line . " {";
- } elsif ($t eq "proposal") {
- $line = "\t\t" . $line if $line ne "proposal";
- $prefix_to_simple_line = "\t";
- } else {
- $line = "\t" . $line if $t !~ /^path|^log/;
- $prefix_to_simple_line = "";
- }
- $display .= "$line\n";
- }
- }
- }
-
-open(my $ADD, "> $racoon_conf") or die "Can not open the $racoon_conf file for writing";
- print $ADD "$display\n";
-
-}
-
-sub get_section_names_racoon_conf {
- my ($racoon) = @_;
- my @section_names;
-
- foreach my $key1 (ikeys %$racoon) {
- if (!$racoon->{$key1}{1}) {
- next;
- } else {
- my $list_length = scalar @{$racoon->{$key1}{1}};
- my $section_title = "";
- my $separator = "";
- for (my $i = 0; $i <= $list_length-1; $i++) {
- my $s = $racoon->{$key1}{1}[$i];
- if ($s !~ /^#|^proposal/) {
- $section_title .= $separator . $s;
- $separator = " ";
- }
- }
- push(@section_names, $section_title) if $section_title ne "";
- }
- }
-
- @section_names;
-
-}
-
-sub add_section_racoon_conf {
- my ($new_section, $racoon) = @_;
- put_in_hash($racoon, { max(keys %$racoon) + 1 => '' });
- put_in_hash($racoon, { max(keys %$racoon) + 1 => $new_section });
- put_in_hash($racoon, { max(keys %$racoon) + 1 => '}' }) if $new_section->{1}[0] !~ /^path|^remote/;
- put_in_hash($racoon, { max(keys %$racoon) + 1 => '' }) if $new_section->{1}[0] =~ /^proposal/;
- put_in_hash($racoon, { max(keys %$racoon) + 1 => '}' }) if $new_section->{1}[0] =~ /^proposal/;
-}
-
-sub matched_section_key_number_racoon_conf {
- my ($section_name, $racoon) = @_;
- foreach my $key1 (ikeys %$racoon) {
- if (!$racoon->{$key1}{1}) {
- next;
- } else {
- my $list_length = scalar @{$racoon->{$key1}{1}};
- my $section_title = "";
- my $separator = "";
- for (my $i = 0; $i <= $list_length-1; $i++) {
- my $s = $racoon->{$key1}{1}[$i];
- if ($s !~ /^#|^proposal/) {
- $section_title .= $separator . $s;
- $separator = " ";
- }
- }
- if ($section_title eq $section_name) {
- return $key1;
- }
- }
- }
-
-}
-
-sub already_existing_section_racoon_conf {
- my ($section_name, $racoon, $racoon_conf) = @_;
- if (-e $racoon_conf) {
- foreach my $key1 (ikeys %$racoon) {
- if (!$racoon->{$key1}{1}) {
- next;
- } elsif (find {
- my $list_length = scalar @{$racoon->{$key1}{1}};
- my $section_title = "";
- my $separator = "";
- for (my $i = 0; $i <= $list_length-1; $i++) {
- my $s = $racoon->{$key1}{1}[$i];
- if ($s !~ /^#|^proposal/) {
- $section_title .= $separator . $s;
- $separator = " ";
- }
- }
-
- $section_title eq $section_name;
-
- } ikeys %{$racoon->{$key1}}) {
-
- return "already existing";
- }
- }
- }
-
-}
-
-sub remove_section_racoon_conf {
- my ($section_name, $racoon, $k) = @_;
- if ($section_name =~ /^remote/) {
-
- delete $racoon->{$k} if $k > 1 && !$racoon->{$k-1};
- my $closing_curly_bracket = 0;
- while ($closing_curly_bracket < 2) {
- print "-->$k\n";
- $closing_curly_bracket++ if $racoon->{$k} eq "}";
- delete $racoon->{$k};
- $k++;
- }
-
- } elsif ($section_name =~ /^path/) {
-
- delete $racoon->{$k};
- delete $racoon->{$k+1} if $racoon->{$k+1}{1} eq "";
-
- } else {
-
- delete $racoon->{$k};
- delete $racoon->{$k+1} if $racoon->{$k+1}{1} eq "";
- delete $racoon->{$k+2} if $racoon->{$k+2}{1} eq ""; #- remove assoc }
-
- }
-
-}
-
-#-------------------------------------------------------------------
-#---------------------- configure ipsec_conf -----------------------
-#-------------------------------------------------------------------
-
-sub read_ipsec_conf {
- my ($ipsec_conf, $kernel_version) = @_;
- my %conf;
- my $nb = 0; #total number
- my $i = 0; #nb within a connexion
- my $in_a_conn = "n";
- my $line = "";
- my @line1;
- local $_;
- if ($kernel_version < 2.5) {
- #- kernel 2.4 part -------------------------------
- open(my $LIST, "< $ipsec_conf"); #or die "Can not open the $ipsec_conf file for reading";
- while (<$LIST>) {
- chomp($_);
- $line = $_;
- $line =~ s/^\s+//;
- if (!$line) {
- $nb++;
- put_in_hash(\%conf, { $nb => $line });
- $in_a_conn = "n";
- } elsif ($line =~ /^#/) {
- if ($in_a_conn eq "y") {
- put_in_hash($conf{$nb} ||= {}, { $i => [$line] });
- $i++;
- } else {
- $nb++;
- put_in_hash(\%conf, { $nb => $line });
- $in_a_conn = "n";
- }
- } elsif ($line =~ /^conn|^config|^version/ && $in_a_conn eq "n") {
- @line1 = split /\s+/,$line;
- $i=1;
- $nb++;
- put_in_hash($conf{$nb} ||= {}, { $i => [$line1[0], $line1[1]] });
- $in_a_conn = "y" if $line !~ /^version/;
- $i++;
- } elsif ($line =~ /^conn|^config|^version/ && $in_a_conn eq "y") {
- @line1 = split /\s+/,$line;
- $i=1;
- $nb++;
- put_in_hash($conf{$nb} ||= {}, { $i => [$line1[0], $line1[1]] });
- $i++;
- } else {
- @line1 = split /=/,$line;
- put_in_hash($conf{$nb} ||= {}, { $i => [$line1[0], $line1[1]] });
- $i++;
- }
- }
-
- } else {
- #- kernel 2.6 part -------------------------------
- my @mylist;
- my $myline = "";
- open(my $LIST, "< $ipsec_conf"); #or die "Can not open the $ipsec_conf file for reading";
- while (<$LIST>) {
- chomp($_);
- $myline = $_;
- $myline =~ s/^\s+//;
- $myline =~ s/;$//;
- if ($myline =~ /^spdadd/) {
- @mylist = split /\s+/,$myline;
- $in_a_conn = "y";
- $nb++;
- next;
- } elsif ($in_a_conn eq "y") {
- @mylist = (@mylist, split '\s+|/',$myline);
- put_in_hash(\%conf, { $nb => { command => $mylist[0],
- src_range => $mylist[1],
- dst_range => $mylist[2],
- upperspec => $mylist[3],
- flag => $mylist[4],
- direction => $mylist[5],
- ipsec => $mylist[6],
- protocol => $mylist[7],
- mode => $mylist[8],
- src_dest => $mylist[9],
- level => $mylist[10] } });
- $in_a_conn = "n";
- } else {
- $nb++;
- put_in_hash(\%conf, { $nb => $myline });
- }
- }
-
- }
-
- \%conf;
-}
-
-sub write_ipsec_conf {
- my ($ipsec_conf, $ipsec, $kernel_version) = @_;
- if ($kernel_version < 2.5) {
- #- kernel 2.4 part -------------------------------
- open(my $ADD, "> $ipsec_conf") or die "Can not open the $ipsec_conf file for writing";
- foreach my $key1 (ikeys %$ipsec) {
- print $ADD "$ipsec->{$key1}\n" if ! $ipsec->{$key1}{1};
- foreach my $key2 (ikeys %{$ipsec->{$key1}}) {
- if ($ipsec->{$key1}{$key2}[0] =~ m/^#/) {
- print $ADD "\t$ipsec->{$key1}{$key2}[0]\n";
- } elsif ($ipsec->{$key1}{$key2}[0] =~ m/(^conn|^config|^version)/) {
- print $ADD "$ipsec->{$key1}{$key2}[0] $ipsec->{$key1}{$key2}[1]\n";
- } else {
- print $ADD "\t$ipsec->{$key1}{$key2}[0]=$ipsec->{$key1}{$key2}[1]\n" if $ipsec->{$key1}{$key2}[0] && $ipsec->{$key1}{$key2}[1];
- }
- }
- }
- } else {
- #- kernel 2.6 part -------------------------------
- my $display = "";
- foreach my $key1 (ikeys %$ipsec) {
- if (! $ipsec->{$key1}{command}) {
- $display .= "$ipsec->{$key1}\n";
- } else {
- $display .= $ipsec->{$key1}{command} . " " .
- $ipsec->{$key1}{src_range} . " " .
- $ipsec->{$key1}{dst_range} . " " .
- $ipsec->{$key1}{upperspec} . " " .
- $ipsec->{$key1}{flag} . " " .
- $ipsec->{$key1}{direction} . " " .
- $ipsec->{$key1}{ipsec} . "\n\t" .
- $ipsec->{$key1}{protocol} . "/" .
- $ipsec->{$key1}{mode} . "/" .
- $ipsec->{$key1}{src_dest} . "/" .
- $ipsec->{$key1}{level} . ";\n";
- }
- }
- open(my $ADD, "> $ipsec_conf") or die "Can not open the $ipsec_conf file for writing";
- print $ADD $display;
- }
-}
-
-sub display_ipsec_conf {
- my ($ipsec, $kernel_version) = @_;
- my $display = "";
-
- if ($kernel_version < 2.5) {
- #- kernel 2.4 part -------------------------------
- foreach my $key1 (ikeys %$ipsec) {
- $display .= "$ipsec->{$key1}\n" if ! $ipsec->{$key1}{1};
- foreach my $key2 (ikeys %{$ipsec->{$key1}}) {
- if ($ipsec->{$key1}{$key2}[0] =~ m/^#/) {
- $display .= "\t$ipsec->{$key1}{$key2}[0]\n";
- } elsif ($ipsec->{$key1}{$key2}[0] =~ m/(^conn|^config|^version)/) {
- $display .= "$ipsec->{$key1}{$key2}[0] $ipsec->{$key1}{$key2}[1]\n";
- } else {
- $display .= "\t$ipsec->{$key1}{$key2}[0]=$ipsec->{$key1}{$key2}[1]\n";
- }
- }
- }
-
- } else {
- #- kernel 2.6 part -------------------------------
- foreach my $key1 (ikeys %$ipsec) {
- if (! $ipsec->{$key1}{command}) {
- $display .= "$ipsec->{$key1}\n";
- } else {
- $display .= $ipsec->{$key1}{command} . " " .
- $ipsec->{$key1}{src_range} . " " .
- $ipsec->{$key1}{dst_range} . " " .
- $ipsec->{$key1}{upperspec} . " " .
- $ipsec->{$key1}{flag} . " " .
- $ipsec->{$key1}{direction} . " " .
- $ipsec->{$key1}{ipsec} . "\n\t" .
- $ipsec->{$key1}{protocol} . "/" .
- $ipsec->{$key1}{mode} . "/" .
- $ipsec->{$key1}{src_dest} . "/" .
- $ipsec->{$key1}{level} . ";\n";
- }
- }
-
- }
-
- $display;
-
-}
-
-sub get_section_names_ipsec_conf {
- my ($ipsec, $kernel_version) = @_;
- my @section_names;
-
- if ($kernel_version < 2.5) {
- #- kernel 2.4 part -------------------------------
- foreach my $key1 (ikeys %$ipsec) {
- foreach my $key2 (ikeys %{$ipsec->{$key1}}) {
- if ($ipsec->{$key1}{$key2}[0] =~ m/(^conn|^config|^version)/) {
- push(@section_names, "$ipsec->{$key1}{$key2}[0] $ipsec->{$key1}{$key2}[1]");
- }
- }
- }
-
- } else {
- #- kernel 2.6 part -------------------------------
- foreach my $key1 (ikeys %$ipsec) {
- if ($ipsec->{$key1}{command} =~ m/(^spdadd)/) {
- push(@section_names, "$ipsec->{$key1}{src_range} $ipsec->{$key1}{dst_range}");
- }
- }
- }
-
- @section_names;
-
-}
-
-sub remove_section_ipsec_conf {
- my ($section_name, $ipsec, $kernel_version) = @_;
- if ($kernel_version < 2.5) {
- #- kernel 2.4 part -------------------------------
- foreach my $key1 (ikeys %$ipsec) {
- if (find {
- my $s = $ipsec->{$key1}{$_}[0];
- $s !~ /^#/ && $s =~ m/(^conn|^config|^version)/ &&
- $section_name eq "$s $ipsec->{$key1}{$_}[1]";
- } ikeys %{$ipsec->{$key1}}) {
- delete $ipsec->{$key1};
- }
- }
- } else {
- #- kernel 2.6 part -------------------------------
- foreach my $key1 (ikeys %$ipsec) {
- if (find {
- my $s = "$ipsec->{$key1}{src_range} $ipsec->{$key1}{dst_range}";
- $s !~ /^#/ && $ipsec->{$key1}{src_range} && $section_name eq $s;
- } ikeys %{$ipsec->{$key1}}) {
- delete $ipsec->{$key1-1};
- delete $ipsec->{$key1};
- }
- }
- }
-}
-
-sub add_section_ipsec_conf {
- my ($new_section, $ipsec) = @_;
- put_in_hash($ipsec, { max(keys %$ipsec) + 1 => '' });
- put_in_hash($ipsec, { max(keys %$ipsec) + 1 => $new_section });
-}
-
-sub already_existing_section_ipsec_conf {
- my ($section_name, $ipsec, $kernel_version) = @_;
- if ($kernel_version < 2.5) {
- #- kernel 2.4 part -------------------------------
- foreach my $key1 (ikeys %$ipsec) {
- if (find {
- my $s = $ipsec->{$key1}{$_}[0];
- $s !~ /^#/ && $s =~ m/(^conn|^config|^version)/ &&
- $section_name eq "$s $ipsec->{$key1}{$_}[1]";
- } ikeys %{$ipsec->{$key1}}) {
- return "already existing";
- }
- }
- } else {
- #- kernel 2.6 part -------------------------------
- foreach my $key1 (ikeys %$ipsec) {
- if (find {
- my $s = "$ipsec->{$key1}{src_range} $ipsec->{$key1}{dst_range}";
- $s !~ /^#/ && $ipsec->{$key1}{src_range} &&
- $section_name eq $s;
- } ikeys %{$ipsec->{$key1}}) {
- return "already existing";
- }
- }
- }
- return "no";
-}
-
-#- returns the reference to the dynamical list for editing
-sub dynamic_list {
- my ($number, $ipsec) = @_;
- my @list = map { { label => $ipsec->{$number}{$_}[0] . "=",
- val => \$ipsec->{$number}{$_}[1] } } ikeys %{$ipsec->{$number}};
-
- @list;
-}
-
-#- returns the hash key number of $section_name
-sub matched_section_key_number_ipsec_conf {
- my ($section_name, $ipsec, $kernel_version) = @_;
- if ($kernel_version < 2.5) {
- #- kernel 2.4 part -------------------------------
- foreach my $key1 (ikeys %$ipsec) {
- if (find {
- my $s = $ipsec->{$key1}{$_}[0];
- $s !~ /^#/ && $s =~ m/(^conn|^config|^version)/ &&
- $section_name eq "$s $ipsec->{$key1}{$_}[1]";
- } ikeys %{$ipsec->{$key1}}) {
- return $key1;
- }
- }
- } else {
- #- kernel 2.6 part -------------------------------
- foreach my $key1 (ikeys %$ipsec) {
- if (find {
- my $s = "$ipsec->{$key1}{src_range} $ipsec->{$key1}{dst_range}";
- $s !~ /^#/ && $ipsec->{$key1}{src_range} &&
- $section_name eq $s;
- } ikeys %{$ipsec->{$key1}}) {
- return $key1;
- }
- }
- }
-}
-1
diff --git a/perl-install/network/isdn.pm b/perl-install/network/isdn.pm
deleted file mode 100644
index 740741b16..000000000
--- a/perl-install/network/isdn.pm
+++ /dev/null
@@ -1,193 +0,0 @@
-package network::isdn; # $Id$
-
-use strict;
-use network::isdn_consts;
-use common;
-use modules;
-use run_program;
-use log;
-use network::tools;
-use services;
-
-
-sub write_config {
- my ($in, $isdn) = @_;
- $in->do_pkgs->install('isdn4net', if_($isdn->{speed} =~ /128/, 'ibod'), 'isdn4k-utils');
-
- output_with_perm("$::prefix/etc/isdn/profile/link/myisp", 0600,
- qq(
-I4L_USERNAME="$isdn->{login}"
-I4L_SYSNAME=""
-I4L_LOCALMSN="$isdn->{phone_in}"
-I4L_REMOTE_OUT="$isdn->{phone_out}"
-I4L_DIALMODE="$isdn->{dialing_mode}"
-I4L_IDLETIME="$isdn->{huptimeout}"
-) . if_($isdn->{speed} =~ /128/, 'SLAVE="ippp1"
-'));
- output "$::prefix/etc/isdn/profile/card/mycard",
- qq(
-I4L_MODULE="$isdn->{driver}"
-I4L_TYPE="$isdn->{type}"
-I4L_IRQ="$isdn->{irq}"
-I4L_MEMBASE="$isdn->{mem}"
-I4L_PORT="$isdn->{io}"
-I4L_IO0="$isdn->{io0}"
-I4L_IO1="$isdn->{io1}"
-I4L_ID="HiSax"
-I4L_FIRMWARE="$isdn->{firmware}"
-I4L_PROTOCOL="$isdn->{protocol}"
-);
-
- output "$::prefix/etc/ppp/ioptions",
- "lock
-usepeerdns
-defaultroute
-";
-
- services::stop("isdn4linux"); #- to be stopped before capi is loaded
- if ($isdn->{driver} eq "capidrv") {
- setup_capi_conf($in, get_capi_card($in, $isdn));
- services::enable('capi4linux');
- } else {
- services::disable('capi4linux');
- }
- services::enable('isdn4linux');
-
- network::tools::write_secret_backend($isdn->{login}, $isdn->{passwd});
-
- 1;
-}
-
-
-sub setup_capi_conf {
- my ($in, $capi_card) = @_;
-
- $in->do_pkgs->ensure_is_installed('isdn4k-utils', "/etc/rc.d/init.d/capi4linux"); #- capi4linux service
- is_module_installed($capi_card->{driver}) or $in->do_pkgs->install(@{$capi_card->{packages}});
- if ($capi_card->{firmware} && ! -f "$::prefix/usr/lib/isdn/$capi_card->{firmware}") {
- $in->do_pkgs->install("$capi_card->{driver}-firmware");
- }
-
- #- stop capi4linux before new config is written so that it can unload the driver
- services::stop("capi4linux");
-
- my $capi_conf;
- my $firmware = $capi_card->{firmware} || '-';
- if ($capi_card->{driver} eq "fcclassic") {
- $capi_conf = "fcclassic - - 0x300 5 - -\n# adjust IRQ and IO !! ^^^^^ ^^^\n";
- } elsif ($capi_card->{driver} eq "fcpnp") {
- $capi_conf = "fcpnp - - 0x300 5 - -\n# adjust IRQ and IO !! ^^^^^ ^^^\n";
- } else {
- $capi_conf = "$capi_card->{driver} $firmware - - - - -\n";
- }
- output("$::prefix/etc/capi.conf", $capi_conf);
-}
-
-sub read_config {
- my ($isdn) = @_;
-
- my %match = (I4L_USERNAME => 'login',
- I4L_LOCALMSN => 'phone_in',
- I4L_REMOTE_OUT => 'phone_out',
- I4L_DIALMODE => 'dialing_mode',
- I4L_IDLETIME => 'huptimeout',
- I4L_MODULE => 'driver',
- I4L_TYPE => 'type',
- I4L_IRQ => 'irq',
- I4L_MEMBASE => 'mem',
- I4L_PORT => 'io',
- I4L_IO0 => 'io0',
- I4L_IO1 => 'io1',
- I4L_FIRMWARE => 'firmware');
- foreach ('link/myisp', 'card/mycard') {
- my %conf = getVarsFromSh("$::prefix/etc/isdn/profile/$_");
- foreach (keys %conf) {
- $isdn->{$match{$_}} = $conf{$_} if $match{$_} && $conf{$_};
- }
- }
-
- $isdn->{passwd} = network::tools::passwd_by_login($isdn->{login});
-}
-
-my $file = "$ENV{SHARE_PATH}/ldetect-lst/isdn.db";
-$file = "$::prefix$file" if !-e $file;
-
-sub get_info_providers_backend {
- my ($isdn, $name) = @_;
- $name eq N("Unlisted - edit manually") and return;
- foreach (catMaybeCompressed($file)) {
- chop;
- my ($name_, $phone, $real, $dns1, $dns2) = split '=>';
- if ($name eq $name_) {
- @$isdn{qw(user_name phone_out DOMAINNAME2 dnsServer3 dnsServer2)} =
- ((split(/\|/, $name_))[2], $phone, $real, $dns1, $dns2);
- }
- }
-}
-
-sub read_providers_backend() { map { /(.*?)=>/ } catMaybeCompressed($file) }
-
-
-sub detect_backend {
- my ($modules_conf) = @_;
- my @isdn;
- require detect_devices;
- each_index {
- my $c = $_;
- my $isdn = { map { $_ => $c->{$_} } qw(description vendor id driver card_type type) };
- $isdn->{intf_id} = $::i;
- $isdn->{$_} = sprintf("%0x", $isdn->{$_}) foreach 'vendor', 'id';
- $isdn->{card_type} = $c->{bus} eq 'USB' ? 'usb' : 'pci';
- $isdn->{description} =~ s/.*\|//;
-# $c->{options} !~ /id=HiSax/ && $isdn->{driver} eq "hisax" and $c->{options} .= " id=HiSax";
- if ($c->{options} !~ /protocol=/ && $isdn->{protocol} =~ /\d/) {
- $modules_conf->set_options($c->{driver}, $c->{options} . " protocol=" . $isdn->{protocol});
- }
- $c->{options} =~ /protocol=(\d)/ and $isdn->{protocol} = $1;
- push @isdn, $isdn;
- } modules::probe_category('network/isdn');
- \@isdn;
-}
-
-sub get_cards_by_type {
- my ($isdn_type) = @_;
- grep { $_->{card} eq $isdn_type } @isdndata;
-}
-
-
-sub get_cards() {
- my %buses = (
- isa => N("ISA / PCMCIA") . "/" . N("I do not know"),
- pci => N("PCI"),
- usb => N("USB"),
- );
- # pmcia alias (we should really split up pcmcia from isa in isdn db):
- $buses{pcmcia} = $buses{isa};
-
- map { $buses{$_->{card}} . "|" . $_->{description} => $_ } @isdndata;
-}
-
-
-sub is_module_installed {
- my ($driver) = @_;
- find { m!/\Q$driver\E\.k?o! } cat_($::prefix . '/lib/modules/' . c::kernel_version() . '/modules.dep');
-}
-
-
-sub get_capi_card {
- my ($in, $isdn) = @_;
-
- my $capi_card = find {
- hex($isdn->{vendor}) == $_->{vendor} && hex($isdn->{id}) == $_->{id};
- } @isdn_capi or return;
-
- #- check if the capi driver is available
- unless (is_module_installed($capi_card->{driver}) || ($capi_card->{packages} = $in->do_pkgs->check_kernel_module_packages("$capi_card->{driver}-kernel"))) {
- log::explanations("a capi driver ($capi_card->{driver}) exists to replace $isdn->{driver}, but it is not installed and no packages provide it");
- return;
- }
-
- $capi_card;
-}
-
-1;
diff --git a/perl-install/network/isdn_consts.pm b/perl-install/network/isdn_consts.pm
deleted file mode 100644
index b2361febc..000000000
--- a/perl-install/network/isdn_consts.pm
+++ /dev/null
@@ -1,460 +0,0 @@
-package network::isdn_consts; # $Id$
-use vars qw(@ISA @EXPORT);
-@ISA = qw(Exporter);
-@EXPORT = qw(@isdndata @isdn_capi);
-
-our @isdndata =
- (
- { description => "Teles|16.0", #1 irq, mem, io
- driver => 'hisax',
- type => '1',
- irq => '5',
- mem => '0xd000',
- io => '0xd80',
- card => 'isa',
- },
- { description => "Teles|8.0", #2 irq, mem
- driver => 'hisax',
- type => '2',
- irq => '9',
- mem => '0xd800',
- card => 'isa',
- },
- { description => "Teles|16.3 (ISA non PnP)", #3 irq, io
- driver => 'hisax',
- type => '3',
- irq => '9',
- io => '0xd80',
- card => 'isa',
- },
- { description => "Teles|16.3c (ISA PnP)", #14 irq, io
- driver => 'hisax',
- type => '14',
- irq => '9',
- io => '0xd80',
- card => 'isa',
- },
- { description => "Creatix/Teles|Generic (ISA PnP)", #4 irq, io0 (ISAC), io1 (HSCX)
- driver => 'hisax',
- type => '4',
- irq => '5',
- io0 => '0x0000',
- io1 => '0x0000',
- card => 'isa',
- },
- { description => "Teles|generic", #21 no parameter
- driver => 'hisax',
- type => '21',
- card => 'pci',
- },
- { description => "Teles|16.3 (PCMCIA)", #8 irq, io
- driver => 'hisax',
- type => '8',
- irq => '',
- io => '0x',
- card => 'isa',
- },
- { description => "Teles|S0Box", #25 irq, io (of the used lpt port)
- driver => 'hisax',
- type => '25',
- irq => '7',
- io => '0x378',
- card => 'isa',
- },
- { description => "ELSA|PCC/PCF cards", #6 io or nothing for autodetect (the io is required only if you have n>1 ELSA|card)
- driver => 'hisax',
- type => '6',
- io => "",
- card => 'isa',
- },
- { description => "ELSA|Quickstep 1000", #7 irq, io (from isapnp setup)
- driver => 'hisax',
- type => '7',
- irq => '5',
- io => '0x300',
- card => 'isa',
- },
- { description => "ELSA|Quickstep 1000", #18 no parameter
- driver => 'hisax',
- type => '18',
- card => 'pci',
- },
- { description => "ELSA|Quickstep 3000", #18 no parameter
- driver => 'hisax',
- type => '18',
- card => 'pci',
- },
- { description => "ELSA|generic (PCMCIA)", #10 irq, io (set with card manager)
- driver => 'hisax',
- type => '10',
- irq => '',
- io => '0x',
- card => 'isa',
- },
- { description => "ELSA|MicroLink (PCMCIA)", #10 irq, io (set with card manager)
- driver => 'elsa_cs',
- card => 'isa',
- },
- { description => "ITK|ix1-micro Rev.2", #9 irq, io
- driver => 'hisax',
- type => '9',
- irq => '9',
- io => '0xd80',
- card => 'isa',
- },
- { description => "Eicon.Diehl|Diva (ISA PnP)", #11 irq, io
- driver => 'hisax',
- type => '11',
- irq => '9',
- io => '0x180',
- card => 'isa',
- },
- { description => "Eicon.Diehl|Diva 20", #11 no parameter
- driver => 'hisax',
- type => '11',
- card => 'pci',
- },
- { description => "Eicon.Diehl|Diva 20PRO", #11 no parameter
- driver => 'hisax',
- type => '11',
- card => 'pci',
- },
- { description => "Eicon.Diehl|Diva 20_U", #11 no parameter
- driver => 'hisax',
- type => '11',
- card => 'pci',
- },
- { description => "Eicon.Diehl|Diva 20PRO_U", #11 no parameter
- driver => 'hisax',
- type => '11',
- card => 'pci',
- },
- { description => "ASUS|COM ISDNLink", #12 irq, io (from isapnp setup)
- driver => 'hisax',
- type => '12',
- irq => '5',
- io => '0x200',
- card => 'isa',
- },
- { description => "ASUS|COM ISDNLink",
- driver => 'hisax',
- type => '35',
- card => 'pci',
- },
- { description => "DynaLink|Any",
- driver => 'hisax',
- type => '12',
- card => 'pci',
- },
- { description => "DynaLink|IS64PH, ASUSCOM", #36
- driver => 'hisax',
- type => '36',
- card => 'pci',
- },
- { description => "HFC|2BS0 based cards", #13 irq, io
- driver => 'hisax',
- type => '13',
- irq => '9',
- io => '0xd80',
- card => 'isa',
- },
- { description => "HFC|2BDS0", #35 none
- driver => 'hisax',
- type => '35',
- card => 'pci',
- },
- { description => "HFC|2BDS0 S+, SP (PCMCIA)", #37 irq,io (pcmcia must be set with cardmgr)
- driver => 'hisax',
- type => '37',
- card => 'isa',
- },
- { description => "Sedlbauer|Speed Card", #15 irq, io
- driver => 'hisax',
- type => '15',
- irq => '9',
- io => '0xd80',
- card => 'isa',
- },
- { description => "Sedlbauer|PC/104", #15 irq, io
- driver => 'hisax',
- type => '15',
- irq => '9',
- io => '0xd80',
- card => 'isa',
- },
- { description => "Sedlbauer|Speed Card", #15 no parameter
- driver => 'hisax',
- type => '15',
- card => 'pci',
- },
- { description => "Sedlbauer|Speed Star (PCMCIA)", #22 irq, io (set with card manager)
- driver => 'sedlbauer_cs',
- card => 'isa',
- },
- { description => "Sedlbauer|Speed Fax+ (ISA Pnp)", #28 irq, io (from isapnp setup)
- driver => 'hisax',
- type => '28',
- irq => '9',
- io => '0xd80',
- card => 'isa',
- firmware => '/usr/lib/isdn/ISAR.BIN',
- },
- { description => "Sedlbauer|Speed Fax+", #28 no parameter
- driver => 'hisax',
- type => '28',
- card => 'pci',
- firmware => '/usr/lib/isdn/ISAR.BIN',
- },
- { description => "USR|Sportster internal", #16 irq, io
- driver => 'hisax',
- type => '16',
- irq => '9',
- io => '0xd80',
- card => 'isa',
- },
- { description => "Generic|MIC card", #17 irq, io
- driver => 'hisax',
- type => '17',
- irq => '9',
- io => '0xd80',
- card => 'isa',
- },
- { description => "Compaq|ISDN S0 card", #19 irq, io0, io1, io (from isapnp setup io=IO2)
- driver => 'hisax',
- type => '19',
- irq => '5',
- io => '0x0000',
- io0 => '0x0000',
- io1 => '0x0000',
- card => 'isa',
- },
- { description => "Generic|NETjet card", #20 no parameter
- driver => 'hisax',
- type => '20',
- card => 'pci',
- },
- { description => "Dr. Neuhaus|Niccy (ISA PnP)", #24 irq, io0, io1 (from isapnp setup)
- driver => 'hisax',
- type => '24',
- irq => '5',
- io0 => '0x0000',
- io1 => '0x0000',
- card => 'isa',
- },
- { description => "Dr. Neuhaus|Niccy", ##24 no parameter
- driver => 'hisax',
- type => '24',
- card => 'pci',
- },
- { description => "AVM|A1 (Fritz) (ISA non PnP)", #5 irq, io
- driver => 'hisax',
- type => '5',
- irq => '10',
- io => '0x300',
- card => 'isa',
- },
- { description => "AVM|ISA Pnp generic", #27 irq, io (from isapnp setup)
- driver => 'hisax',
- type => '27',
- irq => '5',
- io => '0x300',
- card => 'isa',
- },
- { description => "AVM|A1 (Fritz) (PCMCIA)", #26 irq, io (set with card manager)
- driver => 'hisax',
- type => '26',
- irq => '',
- card => 'isa',
- },
- { description => "AVM|PCI (Fritz!)", #27 no parameter
- driver => 'hisax',
- type => '27',
- card => 'pci',
- },
- { description => "AVM|B1",
- driver => 'b1pci',
- card => 'pci',
- },
- { description => "Siemens|I-Surf 1.0 (ISA Pnp)", #29 irq, io, memory (from isapnp setup)
- driver => 'hisax',
- type => '29',
- irq => '9',
- io => '0xd80',
- mem => '0xd000',
- card => 'isa',
- },
- { description => "ACER|P10 (ISA Pnp)", #30 irq, io (from isapnp setup)
- driver => 'hisax',
- type => '30',
- irq => '5',
- io => '0x300',
- card => 'isa',
- },
- { description => "HST|Saphir (ISA Pnp)", #31 irq, io
- driver => 'hisax',
- type => '31',
- irq => '5',
- io => '0x300',
- card => 'isa',
- },
- { description => "Telekom|A4T", #32 none
- driver => 'hisax',
- type => '32',
- card => 'pci',
- },
- { description => "Scitel|Quadro", #33 subcontroller (4*S0, subctrl 1...4)
- driver => 'hisax',
- type => '33',
- card => 'pci',
- },
- { description => "Gazel|ISDN cards", #34 irq,io
- driver => 'hisax',
- type => '34',
- irq => '5',
- io => '0x300',
- card => 'isa',
- },
- { description => "Gazel|Gazel ISDN cards", #34 none
- driver => 'hisax',
- type => '34',
- card => 'pci',
- },
- { description => "Winbond|W6692 and Winbond based cards", #36 none
- driver => 'hisax',
- type => '36',
- card => 'pci',
- },
- { description => "BeWAN|R834",
- driver => 'hisax_st5481',
- type => '99',
- card => 'usb',
- },
- { description => "Gazel|128",
- driver => 'hisax_st5481',
- type => '99',
- card => 'usb',
- },
- );
-
-#- cards than can be used with capi drivers
-our @isdn_capi =
- (
- {
- vendor => 0x1131,
- id => 0x5402,
- description => 'AVM Audiovisuelles|Fritz DSL ISDN/DSL Adapter',
- bus => 'PCI',
- driver => 'fcdsl',
- firmware => 'fdslbase.bin'
- },
- {
- vendor => 0x1244,
- id => 0x0a00,
- description => 'AVM Audiovisuelles|A1 ISDN Adapter [Fritz] CAPI',
- bus => 'PCI',
- driver => 'fcpci'
- },
- {
- vendor => 0x1244,
- id => 0x0e00,
- description => 'AVM Audiovisuelles|A1 ISDN Adapter [Fritz] CAPI',
- bus => 'PCI',
- driver => 'fcpci'
- },
- {
- vendor => 0x1244,
- id => 0x0f00,
- description => 'AVM Audiovisuelles|Fritz DSL ISDN/DSL Adapter',
- bus => 'PCI',
- driver => 'fcdsl',
- firmware => 'fdslbase.bin'
- },
- {
- vendor => 0x1244,
- id => 0x2700,
- description => 'AVM Audiovisuelles|Fritz!Card DSL SL',
- bus => 'PCI',
- driver => 'fcdslsl',
- firmware => 'fdssbase.bin'
- },
- {
- vendor => 0x1244,
- id => 0x2900,
- description => 'AVM Audiovisuelles|Fritz DSL Ver. 2.0',
- bus => 'PCI',
- driver => 'fcdsl2',
- firmware => 'fds2base.bin'
- },
- {
- vendor => 0x057c,
- id => 0x0c00,
- description => 'AVM GmbH|FritzCard USB ISDN TA',
- bus => 'USB',
- driver => 'fcusb'
- },
- {
- vendor => 0x057c,
- id => 0x1000,
- description => 'AVM GmbH|FritzCard USB 2 Ver. 2.0 ISDN TA',
- bus => 'USB',
- driver => 'fcusb2',
- firmware => 'fus2base.frm'
- },
- {
- vendor => 0x057c,
- id => 0x1900,
- description => 'AVM GmbH|FritzCard USB 2 Ver. 3.0 ISDN TA',
- bus => 'USB',
- driver => 'fcusb2',
- firmware => 'fus3base.frm'
- },
- {
- vendor => 0x057c,
- id => 0x2000,
- description => 'AVM GmbH|Fritz X USB ISDN TA',
- bus => 'USB',
- driver => 'fxusb'
- },
- {
- vendor => 0x057c,
- id => 0x2300,
- description => 'AVM GmbH|FtitzCard USB DSL ISDN TA/ DSL Modem',
- bus => 'USB',
- driver => 'fcdslusb',
- firmware => 'fdsubase.frm'
- },
- {
- vendor => 0x057c,
- id => 0x2800,
- description => 'AVM GmbH|Fritz X USB OEM ISDN TA',
- bus => 'USB',
- driver => 'fxusb_CZ'
- },
- {
- vendor => 0x057c,
- id => 0x3000,
- description => 'AVM GmbH|FtitzCard USB DSL SL USB',
- bus => 'USB',
- driver => 'fcdslusba',
- firmware => 'fdlabase.frm'
- },
- {
- vendor => 0x057c,
- id => 0x3500,
- description => 'AVM GmbH|FtitzCard USB DSL SL USB Analog',
- bus => 'USB',
- driver => 'fcdslslusb',
- firmware => 'fdlubase.frm',
- },
- {
- vendor => 0x057c,
- id => 0x3600,
- description => 'AVM FRITZ!Card DSL USB v2.0',
- bus => 'USB',
- driver => 'fcdslusb2',
- firmware => 'fds2base.frm',
- },
- );
-
-
-1;
diff --git a/perl-install/network/modem.pm b/perl-install/network/modem.pm
deleted file mode 100644
index 29afb69a4..000000000
--- a/perl-install/network/modem.pm
+++ /dev/null
@@ -1,223 +0,0 @@
-package network::modem; # $Id$
-
-use strict;
-use common;
-use any;
-use modules;
-use detect_devices;
-use network::network;
-use network::tools;
-
-sub get_user_home() {
- my $home;
- if ($ENV{USER} ne "root") {
- #- kdesu case
- my $user = find { $_->[0] eq $ENV{USER} } list_passwd();
- $home = $user->[7] if $user;
- }
- $home ||= $ENV{HOME}; #- consolehelper case
- $home;
-}
-
-sub ppp_read_conf() {
- my $modem = {};
- my %l = getVarsFromSh(get_user_home() . "/.kde/share/config/kppprc");
- add2hash(\%l, { getVarsFromSh("$::prefix/usr/share/config/kppprc") });
- $l{Authentication} = 4 if $l{Authentication} !~ /\d/;
- $modem->{$_} ||= $l{$_} foreach qw(Authentication Gateway IPAddr SubnetMask);
- $modem->{connection} ||= $l{Name};
- $modem->{domain} ||= $l{Domain};
- ($modem->{dns1}, $modem->{dns2}) = split(',', $l{DNS});
-
- foreach (cat_("/etc/sysconfig/network-scripts/chat-ppp0")) {
- /.*ATDT([\d#*]*)/ and $modem->{phone} ||= $1;
- }
- foreach (cat_("/etc/sysconfig/network-scripts/ifcfg-ppp0")) {
- /NAME=(['"]?)(.*)\1/ and $modem->{login} ||= $2;
- /^METRIC=(.*)/ and $modem->{METRIC} = $1;
- }
- $modem->{login} ||= $l{Username};
- my $secret = network::tools::read_secret_backend();
- foreach (@$secret) {
- $modem->{passwd} ||= $_->{passwd} if $_->{login} eq $modem->{login};
- }
- #my $secret = network::tools::read_secret_backend();
- #my @cnx_list = map { $_->{server} } @$secret;
- $modem->{$_} ||= '' foreach qw(connection phone login passwd auth domain dns1 dns2);
- $modem->{auto_gateway} ||= defined $modem->{Gateway} && $modem->{Gateway} ne '0.0.0.0' ? N("Manual") : N("Automatic");
- $modem->{auto_ip} ||= defined $modem->{IPAddr} && $modem->{IPAddr} ne '0.0.0.0' ? N("Manual") : N("Automatic");
- $modem->{auto_dns} ||= $modem->{dns1} || $modem->{dns2} ? N("Manual") : N("Automatic");
- $modem->{device} ||= '/dev/modem';
- $modem;
-}
-
-#-----modem conf
-sub ppp_configure {
- my ($net, $in, $modem) = @_;
- $in->do_pkgs->install('ppp') if !$::testing;
- $in->do_pkgs->install('kdenetwork-kppp') if !$::testing && $in->do_pkgs->is_installed('kdebase');
-
- if ($modem->{device} ne "/dev/modem") {
- my $dev = $modem->{device};
- $dev =~ s!^/dev/!!;
- any::devfssymlinkf({ device => $dev }, 'modem');
- }
-
- my %toreplace = map { $_ => $modem->{$_} } qw(Authentication AutoName connection dns1 dns2 domain IPAddr login passwd phone SubnetMask);
- $toreplace{phone} =~ s/[^\d#*]//g;
- if ($modem->{auto_dns} ne N("Automatic")) {
- $toreplace{dnsserver} = join ',', map { $modem->{$_} } "dns1", "dns2";
- $toreplace{dnsserver} .= $toreplace{dnsserver} && ',';
- }
-
- #- using peerdns or dns1,dns2 avoid writing a /etc/resolv.conf file.
- $toreplace{peerdns} = "yes";
-
- $toreplace{connection} ||= 'DialupConnection';
- $toreplace{domain} ||= 'localdomain';
- $toreplace{papname} = $toreplace{login} if member($modem->{Authentication}, 1, 3, 4);
-
- # handle static/dynamic settings:
- if ($modem->{auto_ip} eq N("Automatic")) {
- $toreplace{$_} = '0.0.0.0' foreach qw(IPAddr SubnetMask);
- } else {
- $toreplace{$_} = $modem->{$_} foreach qw(IPAddr SubnetMask);
- }
- $toreplace{Gateway} = $modem->{auto_gateway} eq N("Automatic") ? '0.0.0.0' : $modem->{Gateway};
-
- $toreplace{METRIC} = defined($modem->{METRIC}) ? $modem->{METRIC} : network::tools::get_default_metric("modem");
-
- $net->{ifcfg}{ppp0} = {
- DEVICE => "ppp0",
- ONBOOT => "no",
- USERCTL => "no",
- MODEMPORT => "/dev/modem",
- LINESPEED => "115200",
- PERSIST => "yes",
- DEFABORT => "yes",
- DEBUG => "yes",
- INITSTRING => "ATZ",
- DEFROUTE => "yes",
- HARDFLOWCTL => "yes",
- ESCAPECHARS => "no",
- PPPOPTIONS => "",
- PAPNAME => $toreplace{papname},
- REMIP => "",
- NETMASK => "",
- IPADDR => "",
- MRU => "",
- MTU => "",
- DISCONNECTTIMEOUT => "5",
- RETRYTIMEOUT => "60",
- BOOTPROTO => "none",
- PEERDNS => $toreplace{peerdns},
- METRIC => $toreplace{METRIC},
- if_($modem->{auto_dns} ne N("Automatic"),
- map { qq(DNS$_=$toreplace{"dns$_"}\n) } grep { $toreplace{"dns$_"} } 1..2),
- };
-
- #- build chat-ppp0.
- my @chat = <<END;
-'ABORT' 'BUSY'
-'ABORT' 'ERROR'
-'ABORT' 'NO CARRIER'
-'ABORT' 'NO DIALTONE'
-'ABORT' 'Invalid Login'
-'ABORT' 'Login incorrect'
-'' 'ATZ'
-END
- if ($modem->{special_command}) {
- push @chat, <<END;
-'OK' '$modem->{special_command}'
-END
- }
- push @chat, <<END;
-'OK' 'ATDT$toreplace{phone}'
-'TIMEOUT' '120'
-'CONNECT' ''
-END
- if (member($modem->{Authentication}, 0, 2)) {
- push @chat, <<END;
-'ogin:--ogin:' '$toreplace{login}'
-'ord:' '$toreplace{passwd}'
-END
- }
- push @chat, <<END;
-'TIMEOUT' '5'
-'~--' ''
-END
- my $chat_file = "$::prefix/etc/sysconfig/network-scripts/chat-ppp0";
- output_with_perm($chat_file, 0600, @chat);
-
- network::tools::write_secret_backend($toreplace{login}, $toreplace{passwd});
-
- #- install kppprc file according to used configuration.
- mkdir_p("$::prefix/usr/share/config");
-
- $toreplace{$_->[0]} = $modem->{$_->[0]} || $_->[1] foreach [ 'Timeout', 60 ], [ 'UseLockFile', 1 ], [ 'Enter', 'CR' ], [ 'Volume', 0 ],
- [ 'BusyWait', 0 ], [ 'FlowControl', 'CRTSCTS' ], [ 'Speed', 115200 ];
- output($modem->{kppprc} || "$::prefix/usr/share/config/kppprc", common::to_utf8(<<END));
-# KDE Config File
-
-[Account0]
-ExDNSDisabled=0
-AutoName=$toreplace{AutoName}
-ScriptArguments=
-AccountingEnabled=0
-DialString=ATDT
-Phonenumber=$toreplace{phone}
-IPAddr=$toreplace{IPAddr}
-Domain=$toreplace{domain}
-Name=$toreplace{connection}
-VolumeAccountingEnabled=0
-pppdArguments=
-Password=$toreplace{passwd}
-BeforeDisconnect=
-Command=
-ScriptCommands=
-Authentication=$toreplace{Authentication}
-DNS=$toreplace{dnsserver}
-SubnetMask=$toreplace{SubnetMask}
-AccountingFile=
-DefaultRoute=1
-Username=$toreplace{login}
-Gateway=$toreplace{Gateway}
-StorePassword=1
-DisconnectCommand=
-
-[Modem]
-BusyWait=$toreplace{BusyWait}
-Enter=$toreplace{Enter}
-FlowControl=$toreplace{FlowControl}
-Volume=$toreplace{Volume}
-Timeout=$toreplace{Timeout}
-UseCDLine=0
-UseLockFile=$toreplace{UseLockFile}
-Device=/dev/modem
-Speed=$toreplace{Speed}
-
-[Graph]
-InBytes=0,0,255
-Text=0,0,0
-Background=255,255,255
-Enabled=true
-OutBytes=255,0,0
-
-[General]
-QuitOnDisconnect=0
-ShowLogWindow=0
-DisconnectOnXServerExit=1
-DefaultAccount=$toreplace{connection}
-iconifyOnConnect=1
-Hint_QuickHelp=0
-AutomaticRedial=0
-PPPDebug=0
-NumberOfAccounts=1
-ShowClock=1
-DockIntoPanel=0
-pppdTimeout=30
-END
- network::network::proxy_configure($::o->{miscellaneous});
-}
-
-1;
diff --git a/perl-install/network/monitor.pm b/perl-install/network/monitor.pm
deleted file mode 100644
index c0ed8f80e..000000000
--- a/perl-install/network/monitor.pm
+++ /dev/null
@@ -1,83 +0,0 @@
-package network::monitor;
-
-use common;
-use dbus_object;
-
-our @ISA = qw(dbus_object);
-
-sub new {
- my ($type, $bus) = @_;
- dbus_object::new($type,
- $bus,
- "com.mandriva.monitoring",
- "/com/mandriva/monitoring/wireless",
- "com.mandriva.monitoring.wireless");
-}
-
-sub list_wireless {
- my ($monitor, $o_intf) = @_;
- my ($results, $list, %networks);
- #- first try to use mandi
- eval {
- $results = $monitor->call_method('ScanResults');
- $list = $monitor->call_method('ListNetworks');
- };
- my $has_roaming = defined $results && defined $list;
- #- try wpa_cli if we're root
- if ($@ && !$>) {
- $results = `/usr/sbin/wpa_cli scan_results 2>/dev/null`;
- $list = `/usr/sbin/wpa_cli list_networks 2>/dev/null`;
- }
- if ($results && $list) {
- #- bssid / frequency / signal level / flags / ssid
- while ($results =~ /^((?:[0-9a-f]{2}:){5}[0-9a-f]{2})\t(\d+)\t(\d+)\t(.*?)\t(.*)$/mg) {
- #- wpa_supplicant may list the network two times, use ||=
- $networks{$1}{frequency} ||= $2;
- #- signal level is really too high in wpa_supplicant
- #- this should be standardized at some point
- $networks{$1}{signal_level} ||= int($3/3.5);
- $networks{$1}{flags} ||= $4;
- $networks{$1}{essid} ||= $5 if $5 ne '<hidden>';
- }
- #- network id / ssid / bssid / flags
- while ($list =~ /^(\d+)\t(.*?)\t(.*?)\t(.*)$/mg) {
- if (my $net = $networks{$3} || find { $_->{essid} eq $2 } values(%networks)) {
- $net->{id} = $1;
- $net->{essid} ||= $2;
- $net->{current} = to_bool($4 eq '[CURRENT]');
- }
- }
- } elsif ($o_intf) {
- #- else use iwlist
- my $current_essid = chomp_(`/sbin/iwgetid -r $o_intf`);
- my $current_ap = lc(chomp_(`/sbin/iwgetid -r -a $o_intf`));
- my @list = `/sbin/iwlist $o_intf scanning`;
- my $net = {};
- foreach (@list) {
- if ((/^\s*$/ || /Cell/) && exists $net->{ap}) {
- $net->{current} = to_bool($net->{essid} && $net->{essid} eq $current_essid || $net->{ap} eq $current_ap);
- $networks{$net->{ap}} = $net;
- $net = {};
- }
- /Address: (.*)/ and $net->{ap} = lc($1);
- /ESSID:"(.*?)"/ and $net->{essid} = $1;
- /Mode:(\S*)/ and $net->{mode} = $1;
- if (m!Quality[:=](\S*)/!) {
- my $qual = $1;
- $net->{signal_level} = $qual =~ m!/! ? eval($qual)*100 : $qual;
- }
- /Extra:wpa_ie=/ and $net->{flags} = '[WPA]';
- /key:(\S*)\s/ and $net->{flags} ||= $1 eq 'on' && '[WEP]';
- }
- }
-
- $networks{$_}{approx_level} = 20 + min(80, int($networks{$_}{signal_level}/20)*20) foreach keys %networks;
- (\%networks, $has_roaming);
-}
-
-sub select_network {
- my ($o, $id) = @_;
- $o->call_method('SelectNetwork', Net::DBus::dbus_uint32($id));
-}
-
-1;
diff --git a/perl-install/network/ndiswrapper.pm b/perl-install/network/ndiswrapper.pm
deleted file mode 100644
index 83f0c3704..000000000
--- a/perl-install/network/ndiswrapper.pm
+++ /dev/null
@@ -1,108 +0,0 @@
-package network::ndiswrapper;
-
-use strict;
-use common;
-use modules;
-use detect_devices;
-
-my $ndiswrapper_root = "/etc/ndiswrapper";
-
-sub installed_drivers() {
- grep { -d $::prefix . "$ndiswrapper_root/$_" } all($::prefix . $ndiswrapper_root);
-}
-
-sub present_devices {
- my ($driver) = @_;
- my @supported_devices;
- foreach (all($::prefix . "$ndiswrapper_root/$driver")) {
- my ($ids) = /^([0-9A-Z]{4}:[0-9A-Z]{4})\.[05]\.conf$/;
- $ids and push @supported_devices, $ids;
- }
- grep { member(uc(sprintf("%04x:%04x", $_->{vendor}, $_->{id})), @supported_devices) } detect_devices::probeall();
-}
-
-sub get_devices {
- my ($in, $driver) = @_;
- my @devices = present_devices($driver);
- @devices or $in->ask_warn(N("Error"), N("No device supporting the %s ndiswrapper driver is present!", $driver));
- @devices;
-}
-
-sub ask_driver {
- my ($in) = @_;
- if (my $inf_file = $in->ask_file(N("Please select the Windows driver (.inf file)"), "/mnt/cdrom")) {
- my $driver = basename(lc($inf_file));
- $driver =~ s/\.inf$//;
-
- #- first uninstall the driver if present, may solve issues if it is corrupted
- require run_program;
- -d $::prefix . "$ndiswrapper_root/$driver" and run_program::rooted($::prefix, 'ndiswrapper', '-e', $driver);
-
- unless (run_program::rooted($::prefix, 'ndiswrapper', '-i', $inf_file)) {
- $in->ask_warn(N("Error"), N("Unable to install the %s ndiswrapper driver!", $driver));
- return undef;
- }
-
- return $driver;
- }
- undef;
-}
-
-sub find_matching_devices {
- my ($device) = @_;
- my $net_path = '/sys/class/net';
- my @devices;
-
- foreach my $interface (all($net_path)) {
- my $dev_path = "$net_path/$interface/device";
- -l $dev_path or next;
- my $map = detect_devices::get_sysfs_device_id_map($dev_path);
- if (every { hex(chomp_(cat_("$dev_path/" . $map->{$_}))) eq $device->{$_} } keys %$map) {
- my $driver = readlink("$dev_path/driver");
- $driver =~ s!.*/!!;
- push @devices, [ $interface, $driver ] if $driver;
- }
- }
-
- @devices;
-}
-
-sub find_conflicting_devices {
- my ($device) = @_;
- grep { $_->[1] ne "ndiswrapper" } find_matching_devices($device);
-}
-
-sub find_interface {
- my ($device) = @_;
- my $dev = find { $_->[1] eq "ndiswrapper" } find_matching_devices($device);
- $dev->[0];
-}
-
-sub setup_device {
- my ($in, $device) = @_;
-
- #- unload ndiswrapper first so that the newly installed .inf files will be read
- eval { modules::unload("ndiswrapper") };
- eval { modules::load("ndiswrapper") };
-
- if ($@) {
- $in->ask_warn(N("Error"), N("Unable to load the ndiswrapper module!"));
- return;
- }
-
- my @conflicts = find_conflicting_devices($device);
- if (@conflicts) {
- $in->ask_yesorno(N("Warning"), N("The selected device has already been configured with the %s driver.
-Do you really want to use a ndiswrapper driver?", $conflicts[0][1])) or return;
- }
-
- my $interface = find_interface($device);
- unless ($interface) {
- $in->ask_warn(N("Error"), N("Unable to find the ndiswrapper interface!"));
- return;
- }
-
- $interface;
-}
-
-1;
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm
deleted file mode 100644
index adf7f2084..000000000
--- a/perl-install/network/netconnect.pm
+++ /dev/null
@@ -1,1461 +0,0 @@
-package network::netconnect; # $Id$
-
-use strict;
-use common;
-use log;
-use detect_devices;
-use list_modules;
-use modules;
-use mouse;
-use services;
-use network::network;
-use network::tools;
-use network::thirdparty;
-
-sub detect {
- my ($modules_conf, $auto_detect, $o_class) = @_;
- my %l = (
- isdn => sub {
- require network::isdn;
- $auto_detect->{isdn} = network::isdn::detect_backend($modules_conf);
- },
- lan => sub { # ethernet
- require network::ethernet;
- modules::load_category($modules_conf, list_modules::ethernet_categories());
- $auto_detect->{lan} = { map { $_->[0] => $_->[1] } network::ethernet::get_eth_cards($modules_conf) };
- },
- adsl => sub {
- require network::adsl;
- $auto_detect->{adsl} = network::adsl::adsl_detect();
- },
- modem => sub {
- $auto_detect->{modem} = { map { $_->{description} || "$_->{MANUFACTURER}|$_->{DESCRIPTION} ($_->{device})" => $_ } detect_devices::getModem($modules_conf) };
- },
- );
- $l{$_}->() foreach $o_class || keys %l;
- return;
-}
-
-sub detect_timezone() {
- my %tmz2country = (
- 'Europe/Paris' => N("France"),
- 'Europe/Amsterdam' => N("Netherlands"),
- 'Europe/Rome' => N("Italy"),
- 'Europe/Brussels' => N("Belgium"),
- 'America/New_York' => N("United States"),
- 'Europe/London' => N("United Kingdom")
- );
- my %tm_parse = MDK::Common::System::getVarsFromSh("$::prefix/etc/sysconfig/clock");
- my @country;
- foreach (keys %tmz2country) {
- if ($_ eq $tm_parse{ZONE}) {
- unshift @country, $tmz2country{$_};
- } else { push @country, $tmz2country{$_} }
- }
- \@country;
-}
-
-sub real_main {
- my ($net, $in, $modules_conf) = @_;
- #- network configuration should have been already read in $net at this point
- my $mouse = $::o->{mouse} || {};
- my ($cnx_type, @all_cards, %eth_intf, %all_eth_intf, %unavailable_wireless_intf);
- my (%connections, @connection_list);
- my ($modem, $modem_name, $modem_dyn_dns, $modem_dyn_ip);
- my $cable_no_auth;
- my (@adsl_devices, %adsl_cards, %adsl_data, $adsl_data, $adsl_provider, $adsl_old_provider, $adsl_vpi, $adsl_vci);
- my ($ntf_name, $gateway_ex, $up);
- my ($isdn, $isdn_name, $isdn_type, %isdn_cards, @isdn_dial_methods);
- my $my_isdn = join('', N("Manual choice"), " (", N("Internal ISDN card"), ")");
- my (@ndiswrapper_drivers, $ndiswrapper_driver, $ndiswrapper_device);
- my ($is_wireless, $wireless_enc_mode, $wireless_enc_key, $need_rt2x00_iwpriv, $wireless_roaming, $need_wpa_supplicant);
- my ($dvb_adapter, $dvb_ad, $dvb_net, $dvb_pid);
- my ($module, $auto_ip, $protocol, $onboot, $needhostname, $peerdns, $peeryp, $peerntpd, $ifplugd, $track_network_id, $ipv6_tunnel, $need_network_restart);
- my $success = 1;
- my $ethntf = {};
- my $db_path = "/usr/share/apps/kppp/Provider";
- my (%countries, @isp, $country, $provider, $old_provider);
-
- my %l10n_lan_protocols = (
- static => N("Manual configuration"),
- dhcp => N("Automatic IP (BOOTP/DHCP)"),
- if_(0,
- dhcp_zeroconf => N("Automatic IP (BOOTP/DHCP/Zeroconf)"),
- )
- );
- my $_w = N("Protocol for the rest of the world");
- my %isdn_protocols = (
- 2 => N("European protocol (EDSS1)"),
- 3 => N("Protocol for the rest of the world\nNo D-Channel (leased lines)"),
- );
-
- $net->{autodetect} = {};
-
- my $lan_detect = sub {
- detect($modules_conf, $net->{autodetect}, 'lan');
- @all_cards = network::ethernet::get_eth_cards($modules_conf);
- %all_eth_intf = network::ethernet::get_eth_cards_names(@all_cards); #- needed not to loose GATEWAYDEV
- %eth_intf = map { $_->[0] => join(': ', $_->[0], $_->[2] || N("Unknown driver")) }
- grep { to_bool($is_wireless) == detect_devices::is_wireless_interface($_->[0]) } @all_cards;
- my %available;
- $available{$_->[2]} = undef foreach grep { $_->[2] } @all_cards;
- %unavailable_wireless_intf = map {
- $_->{driver} => sprintf('%s (%s): %s', N("unknown"), $_->{driver}, $_->{description});
- } grep { !exists($available{$_->{description}}) } modules::probe_category('network/wireless');
- };
-
- my $is_dvb_interface = sub { $_[0]{DEVICE} =~ /^dvb\d+_\d+/ };
-
- my $find_lan_module = sub {
- if (my $dev = find { $_->{device} eq $ethntf->{DEVICE} } detect_devices::pcmcia_probe()) { # PCMCIA case
- $module = $dev->{driver};
- } elsif ($dev = find { $_->[0] eq $ethntf->{DEVICE} } @all_cards) {
- $module = $dev->[1];
- } elsif ($is_dvb_interface->($ethntf)) {
- $module = $dvb_adapter->{driver};
- } else { $module = "" }
- };
-
- my %adsl_descriptions = (
- speedtouch => N("Alcatel speedtouch USB modem"),
- sagem => N("Sagem USB modem"),
- bewan => N("Bewan modem"),
- eci => N("ECI Hi-Focus modem"), # this one needs eci agreement
- );
-
- my %adsl_types = (
- dhcp => N("Dynamic Host Configuration Protocol (DHCP)"),
- static => N("Manual TCP/IP configuration"),
- pptp => N("Point to Point Tunneling Protocol (PPTP)"),
- pppoe => N("PPP over Ethernet (PPPoE)"),
- pppoa => N("PPP over ATM (PPPoA)"),
- capi => N("DSL over CAPI"),
- );
-
- my %encapsulations = (
- 1 => N("Bridged Ethernet LLC"),
- 2 => N("Bridged Ethernet VC"),
- 3 => N("Routed IP LLC"),
- 4 => N("Routed IP VC"),
- 5 => N("PPPoA LLC"),
- 6 => N("PPPoA VC"),
- );
-
- my %ppp_auth_methods = (
- 0 => N("Script-based"),
- 1 => N("PAP"),
- 2 => N("Terminal-based"),
- 3 => N("CHAP"),
- 4 => N("PAP/CHAP"),
- );
-
- my $offer_to_connect = sub {
- #- FIXME: create $try_to_connect sub out of this code
- #- merge with "ask_connect_now" post code
- if ($net->{type} eq 'adsl' && !member($net->{adsl}{method}, qw(static dhcp)) ||
- member($net->{type}, qw(modem isdn isdn_external))) {
- return "ask_connect_now";
- }
-
- unless ($::isInstall) {
- if ($need_network_restart) {
- services::restart("network");
- } else {
- #- FIXME: move this in network::tools::restart_net_interface
- network::tools::stop_net_interface($net, 0);
- if (exists $net->{adsl}{ethernet_device}) {
- network::tools::stop_interface($net->{adsl}{ethernet_device}, 0);
- network::tools::start_interface($net->{adsl}{ethernet_device}, 0);
- }
- network::tools::start_net_interface($net, 0);
- }
- }
- #- FIXME: check for connection here
- #- check for real interface in connection test
- #- don't block when checking connection
- #- return "after_connect" (old "disconnect" step)
- return "end";
- };
-
- my $after_lan_intf_selection = sub { $is_wireless ? 'wireless' : 'lan_protocol' };
-
- my $after_start_on_boot_step = sub {
- #- can't be done in adsl_account step because of static/dhcp adsl methods
- #- we need to write sagem specific parameters and load corresponding modules/programs (sagem/speedtouch)
- $net->{type} eq 'adsl' and network::adsl::adsl_conf_backend($in, $modules_conf, $net);
-
- network::network::configure_network($net, $in, $modules_conf);
- #- FIXME: always run "ask_connect_now"
- return $offer_to_connect->();
- };
-
- my $goto_start_on_boot_ifneeded = sub {
- return $after_start_on_boot_step->() if $net->{type} eq "lan";
- return "isdn_dial_on_boot" if $net->{type} eq 'isdn';
- return "network_on_boot";
- };
-
- my $delete_gateway_settings = sub {
- my ($device) = @_;
- #- delete gateway settings if gateway device is invalid or matches the reconfigured device
- if (!$net->{network}{GATEWAYDEV} || !exists $eth_intf{$net->{network}{GATEWAYDEV}} || $net->{network}{GATEWAYDEV} eq $device) {
- delete $net->{network}{GATEWAY};
- delete $net->{network}{GATEWAYDEV};
- }
- };
-
- my $ndiswrapper_do_device_selection = sub {
- $ntf_name = network::ndiswrapper::setup_device($in, $ndiswrapper_device);
- unless ($ntf_name) {
- undef $ndiswrapper_device;
- return;
- }
-
- #- redetect interfaces (so that the ndiswrapper module can be detected)
- $lan_detect->();
-
- $ethntf = $net->{ifcfg}{$ntf_name} ||= { DEVICE => $ntf_name };
-
- 1;
- };
-
- my $ndiswrapper_do_driver_selection = sub {
- my @devices = network::ndiswrapper::get_devices($in, $ndiswrapper_driver);
-
- if (!@devices) {
- undef $ndiswrapper_driver;
- return;
- } elsif (@devices == 1) {
- #- only one device matches installed driver
- $ndiswrapper_device = $devices[0];
- return $ndiswrapper_do_device_selection->();
- }
-
- 1;
- };
-
- my $ndiswrapper_next_step = sub {
- return $ndiswrapper_device ? $after_lan_intf_selection->() :
- $ndiswrapper_driver ? 'ndiswrapper_select_device' :
- 'ndiswrapper_select_driver';
- };
-
- use locale;
- set_l10n_sort();
-
- require wizards;
- my $wiz = wizards->new(
- {
- defaultimage => "drakconnect.png",
- name => N("Network & Internet Configuration"),
- pages => {
- welcome =>
- {
- pre => sub {
- my @connections = (
- [ N("LAN connection"), "lan" ],
- [ N("Wireless connection"), "lan" ],
- [ N("ADSL connection"), "adsl" ],
- [ N("Cable connection"), "cable" ],
- [ N("ISDN connection"), "isdn" ],
- [ N("Modem connection"), "modem" ],
- [ N("DVB connection"), "dvb" ],
- );
-
- foreach (@connections) {
- my ($string, $type) = @$_;
- $connections{$string} = $type;
- }
- @connection_list = { val => \$cnx_type, type => 'list', list => [ map { $_->[0] } @connections ], };
- },
- if_(!$::isInstall, no_back => 1),
- name => N("Choose the connection you want to configure"),
- interactive_help_id => 'configureNetwork',
- data => \@connection_list,
- post => sub {
- $is_wireless = $cnx_type eq N("Wireless connection");
- return $net->{type} = $connections{$cnx_type};
- },
- },
-
- isdn_account =>
- {
- pre => sub {
- network::isdn::get_info_providers_backend($isdn, $provider);
- $isdn->{huptimeout} ||= 180;
- },
- name => N("Connection Configuration") . "\n\n" . N("Please fill or check the field below"),
- data => sub {
- [
- { label => N("Your personal phone number"), val => \$isdn->{phone_in} },
- { label => N("Provider name (ex provider.net)"), val => \$net->{resolv}{DOMAINNAME2} },
- { label => N("Provider phone number"), val => \$isdn->{phone_out} },
- { label => N("Provider DNS 1 (optional)"), val => \$net->{resolv}{dnsServer2} },
- { label => N("Provider DNS 2 (optional)"), val => \$net->{resolv}{dnsServer3} },
- { label => N("Dialing mode"), list => ["auto", "manual"], val => \$isdn->{dialing_mode} },
- { label => N("Connection speed"), list => ["64 Kb/s", "128 Kb/s"], val => \$isdn->{speed} },
- { label => N("Connection timeout (in sec)"), val => \$isdn->{huptimeout} },
- { label => N("Account Login (user name)"), val => \$isdn->{login} },
- { label => N("Account Password"), val => \$isdn->{passwd}, hidden => 1 },
- { label => N("Card IRQ"), val => \$isdn->{irq}, advanced => 1 },
- { label => N("Card mem (DMA)"), val => \$isdn->{mem}, advanced => 1 },
- { label => N("Card IO"), val => \$isdn->{io}, advanced => 1 },
- { label => N("Card IO_0"), val => \$isdn->{io0}, advanced => 1 },
- { label => N("Card IO_1"), val => \$isdn->{io1}, advanced => 1 },
- ];
- },
- post => sub {
- network::isdn::write_config($in, $isdn);
- $net->{net_interface} = 'ippp0';
- "allow_user_ctl";
- },
- },
-
- cable =>
- {
- pre => sub {
- $cable_no_auth = sub { $net->{cable}{bpalogin} eq N("None") };
- },
- name => N("Cable: account options"),
- data => sub {
- [
- { label => N("Authentication"), type => "list", val => \$net->{cable}{bpalogin}, list => [ N("None"), N("Use BPALogin (needed for Telstra)") ] },
- { label => N("Account Login (user name)"), val => \$net->{cable}{login}, disabled => $cable_no_auth },
- { label => N("Account Password"), val => \$net->{cable}{passwd}, hidden => 1, disabled => $cable_no_auth },
- ];
- },
- complete => sub {
- !$cable_no_auth->() && !$in->do_pkgs->ensure_is_installed('bpalogin', '/usr/sbin/bpalogin');
- },
- post => sub {
- my $use_bpalogin = !$cable_no_auth->();
- $use_bpalogin and substInFile {
- s/username\s+.*\n/username $net->{cable}{login}\n/;
- s/password\s+.*\n/password $net->{cable}{passwd}\n/;
- } "$::prefix/etc/bpalogin.conf";
- services::set_status("bpalogin", $use_bpalogin);
- $auto_ip = 1;
- return "lan";
- }
- },
-
- isdn =>
- {
- pre=> sub {
- detect($modules_conf, $net->{autodetect}, 'isdn');
- %isdn_cards = map { $_->{description} => $_ } @{$net->{autodetect}{isdn}};
- },
- name => N("Select the network interface to configure:"),
- data => sub {
- [ { label => N("Net Device"), type => "list", val => \$isdn_name, allow_empty_list => 1,
- list => [ $my_isdn, N("External ISDN modem"), keys %isdn_cards ] } ];
- },
- post => sub {
- if ($isdn_name eq $my_isdn) {
- return "isdn_ask";
- } elsif ($isdn_name eq N("External ISDN modem")) {
- $net->{type} = 'isdn_external';
- return "modem";
- }
-
- # FIXME: some of these should be taken from isdn db
- $isdn = { map { $_ => $isdn_cards{$isdn_name}{$_} } qw(description vendor id card_type driver type mem io io0 io1 irq firmware) };
-
- if ($isdn->{id}) {
- log::explanations("found isdn card : $isdn->{description}; vendor : $isdn->{vendor}; id : $isdn->{id}; driver : $isdn->{driver}\n");
- $isdn->{description} =~ s/\|/ -- /;
- }
-
- network::isdn::read_config($isdn);
- $isdn->{driver} = $isdn_cards{$isdn_name}{driver}; #- do not let config overwrite default driver
-
- #- let the user choose hisax or capidrv if both are available
- $isdn->{driver} ne "capidrv" && network::isdn::get_capi_card($in, $isdn) and return "isdn_driver";
- return "isdn_protocol";
- },
- },
-
-
- isdn_ask =>
- {
- pre => sub {
- %isdn_cards = network::isdn::get_cards();
- },
- name => N("Select a device!"),
- data => sub { [ { label => N("Net Device"), val => \$isdn_name, type => 'list', separator => '|', list => [ keys %isdn_cards ], allow_empty_list => 1 } ] },
- pre2 => sub {
- my ($label) = @_;
-
- #- ISDN card already detected
- goto isdn_ask_step_3;
-
- isdn_ask_step_1:
- my $e = $in->ask_from_list_(N("ISDN Configuration"),
- $label . "\n" . N("What kind of card do you have?"),
- [ N_("ISA / PCMCIA"), N_("PCI"), N_("USB"), N_("I do not know") ]
- ) or return;
- isdn_ask_step_1b:
- if ($e =~ /PCI/) {
- $isdn->{card_type} = 'pci';
- } elsif ($e =~ /USB/) {
- $isdn->{card_type} = 'usb';
- } else {
- $in->ask_from_list_(N("ISDN Configuration"),
- N("
-If you have an ISA card, the values on the next screen should be right.\n
-If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your card.
-"),
- [ N_("Continue"), N_("Abort") ]) eq 'Continue' or goto isdn_ask_step_1;
- $isdn->{card_type} = 'isa';
- }
-
- isdn_ask_step_2:
- $e = $in->ask_from_listf(N("ISDN Configuration"),
- N("Which of the following is your ISDN card?"),
- sub { $_[0]{description} },
- [ network::isdn::get_cards_by_type($isdn->{card_type}) ]) or goto($isdn->{card_type} =~ /usb|pci/ ? 'isdn_ask_step_1' : 'isdn_ask_step_1b');
- $e->{$_} and $isdn->{$_} = $e->{$_} foreach qw(driver type mem io io0 io1 irq firmware);
-
- },
- post => sub {
- $isdn = $isdn_cards{$isdn_name};
- return "isdn_protocol";
- }
- },
-
-
- isdn_driver =>
- {
- pre => sub {
- $isdn_name = "capidrv";
- },
- name => N("A CAPI driver is available for this modem. This CAPI driver can offer more capabilities than the free driver (like sending faxes). Which driver do you want to use?"),
- data => sub { [
- { label => N("Driver"), type => "list", val => \$isdn_name,
- list => [ $isdn->{driver}, "capidrv" ] }
- ] },
- post => sub {
- $isdn->{driver} = $isdn_name;
- return "isdn_protocol";
- }
- },
-
-
- isdn_protocol =>
- {
- name => N("ISDN Configuration") . "\n\n" . N("Which protocol do you want to use?"),
- data => [
- { label => N("Protocol"), type => "list", val => \$isdn_type,
- list => [ keys %isdn_protocols ], format => sub { $isdn_protocols{$_[0]} } }
- ],
- post => sub {
- $isdn->{protocol} = $isdn_type;
- return "isdn_db";
- }
- },
-
-
- isdn_db =>
- {
- name => N("ISDN Configuration") . "\n\n" . N("Select your provider.\nIf it is not listed, choose Unlisted."),
- data => sub {
- [ { label => N("Provider:"), type => "list", val => \$provider, separator => '|',
- list => [ N("Unlisted - edit manually"), network::isdn::read_providers_backend() ] } ];
- },
- next => "isdn_account",
- },
-
-
- no_supported_winmodem =>
- {
- name => N("Warning") . "\n\n" . N("Your modem is not supported by the system.
-Take a look at http://www.linmodems.org"),
- end => 1,
- },
-
-
- modem =>
- {
- pre => sub {
- require network::modem;
- detect($modules_conf, $net->{autodetect}, 'modem');
- $modem = {};
- if ($net->{type} eq 'isdn_external') {
- #- FIXME: seems to be specific to ZyXEL Adapter Omni.net/TA 128/Elite 2846i
- #- it does not even work with TA 128 modems
- #- http://bugs.mandrakelinux.com/query.php?bug=1033
- $modem->{special_command} = 'AT&F&O2B40';
- }
- },
- name => N("Select the modem to configure:"),
- data => sub {
- [ { label => N("Modem"), type => "list", val => \$modem_name, allow_empty_list => 1,
- list => [ keys %{$net->{autodetect}{modem}}, N("Manual choice") ], } ];
- },
- complete => sub {
- my $driver = $net->{autodetect}{modem}{$modem_name}{driver} or return 0;
- #- some modem configuration programs modify modprobe.conf while we're loaded
- #- so write it now and reload then
- $modules_conf->write;
- my $ret = network::thirdparty::setup_device($in, 'rtc', $driver, $modem, qw(device));
- $modules_conf->read if $ret;
- !$ret;
- },
- post => sub {
- return 'choose_serial_port' if $modem_name eq N("Manual choice");
- if (exists $net->{autodetect}{modem}{$modem_name}{device}) {
- #- this is a serial probed modem
- $modem->{device} = $net->{autodetect}{modem}{$modem_name}{device};
- }
- if (exists $modem->{device}) {
- return "ppp_provider";
- } else {
- #- driver exists but device field hasn't been filled by network::thirdparty::setup_device
- return "no_supported_winmodem";
- }
- },
- },
-
-
- choose_serial_port =>
- {
- pre => sub {
- $modem->{device} ||= readlink "$::prefix/dev/modem";
- },
- name => N("Please choose which serial port your modem is connected to."),
- interactive_help_id => 'selectSerialPort',
- data => sub {
- [ { val => \$modem->{device}, format => \&mouse::serial_port2text, type => "list",
- list => [ grep { $_ ne $mouse->{device} } (mouse::serial_ports(), grep { -e $_ } '/dev/modem', '/dev/ttySL0', '/dev/ttyS14',) ] } ];
- },
- post => sub {
- return 'ppp_provider';
- },
- },
-
-
- ppp_provider =>
- {
- pre => sub {
- add2hash($modem, network::modem::ppp_read_conf());
- $in->do_pkgs->ensure_is_installed('kdenetwork-kppp-provider', $db_path);
- my $p_db_path = "$::prefix$db_path";
- @isp = map {
- my $country = $_;
- map {
- s!$p_db_path/$country!!;
- s/%([0-9]{3})/chr(int($1))/eg;
- $countries{$country} ||= translate($country);
- join('', $countries{$country}, $_);
- } grep { !/.directory$/ } glob_("$p_db_path/$country/*");
- } map { s!$p_db_path/!!o; s!_! !g; $_ } glob_("$p_db_path/*") if !@isp;
- $old_provider = $provider;
- },
- name => N("Select your provider:"),
- data => sub {
- [ { label => N("Provider:"), type => "list", val => \$provider, separator => '/',
- list => [ N("Unlisted - edit manually"), @isp ] } ];
- },
- post => sub {
- if ($provider ne N("Unlisted - edit manually")) {
- ($country, $provider) = split('/', $provider);
- $country = { reverse %countries }->{$country};
- my %l = getVarsFromSh("$::prefix$db_path/$country/$provider");
- if (defined $old_provider && $old_provider ne $provider) {
- $modem->{connection} = $l{Name};
- $modem->{phone} = $l{Phonenumber};
- $modem->{$_} = $l{$_} foreach qw(Authentication AutoName Domain Gateway IPAddr SubnetMask);
- ($modem->{dns1}, $modem->{dns2}) = split(',', $l{DNS});
- }
- }
- return "ppp_account";
- },
- },
-
-
- ppp_account =>
- {
- name => N("Dialup: account options"),
- data => sub {
- [
- { label => N("Connection name"), val => \$modem->{connection} },
- { label => N("Phone number"), val => \$modem->{phone} },
- { label => N("Login ID"), val => \$modem->{login} },
- { label => N("Password"), val => \$modem->{passwd}, hidden => 1 },
- { label => N("Authentication"), val => \$modem->{Authentication},
- list => [ sort keys %ppp_auth_methods ], format => sub { $ppp_auth_methods{$_[0]} } },
- ];
- },
- next => "ppp_ip",
- },
-
-
- ppp_ip =>
- {
- pre => sub {
- $modem_dyn_ip = sub { $modem->{auto_ip} eq N("Automatic") };
- },
- name => N("Dialup: IP parameters"),
- data => sub {
- [
- { label => N("IP parameters"), type => "list", val => \$modem->{auto_ip}, list => [ N("Automatic"), N("Manual") ] },
- { label => N("IP address"), val => \$modem->{IPAddr}, disabled => $modem_dyn_ip },
- { label => N("Subnet mask"), val => \$modem->{SubnetMask}, disabled => $modem_dyn_ip },
- ];
- },
- next => "ppp_dns",
- },
-
-
- ppp_dns =>
- {
- pre => sub {
- $modem_dyn_dns = sub { $modem->{auto_dns} eq N("Automatic") };
- },
- name => N("Dialup: DNS parameters"),
- data => sub {
- [
- { label => N("DNS"), type => "list", val => \$modem->{auto_dns}, list => [ N("Automatic"), N("Manual") ] },
- { label => N("Domain name"), val => \$modem->{domain}, disabled => $modem_dyn_dns },
- { label => N("First DNS Server (optional)"), val => \$modem->{dns1}, disabled => $modem_dyn_dns },
- { label => N("Second DNS Server (optional)"), val => \$modem->{dns2}, disabled => $modem_dyn_dns },
- { text => N("Set hostname from IP"), val => \$modem->{AutoName}, type => 'bool', disabled => $modem_dyn_dns },
- ];
- },
- next => "ppp_gateway",
- },
-
-
- ppp_gateway =>
- {
- name => N("Dialup: IP parameters"),
- data => sub {
- [
- { label => N("Gateway"), type => "list", val => \$modem->{auto_gateway}, list => [ N("Automatic"), N("Manual") ] },
- { label => N("Gateway IP address"), val => \$modem->{Gateway},
- disabled => sub { $modem->{auto_gateway} eq N("Automatic") } },
- ];
- },
- post => sub {
- network::modem::ppp_configure($net, $in, $modem);
- $net->{net_interface} = 'ppp0';
- "allow_user_ctl";
- },
- },
-
-
- adsl =>
- {
- pre => sub {
- $lan_detect->();
- @adsl_devices = keys %eth_intf;
-
- detect($modules_conf, $net->{autodetect}, 'adsl');
- %adsl_cards = ();
- foreach my $modem_type (keys %{$net->{autodetect}{adsl}}) {
- foreach my $modem (@{$net->{autodetect}{adsl}{$modem_type}}) {
- my $name = join(': ', $adsl_descriptions{$modem_type}, $modem->{description});
- $adsl_cards{$name} = [ $modem_type, $modem ];
- }
- }
- push @adsl_devices, keys %adsl_cards;
-
- detect($modules_conf, $net->{autodetect}, 'isdn');
- if (my @isdn_modems = @{$net->{autodetect}{isdn}}) {
- require network::isdn;
- %isdn_cards = map { $_->{description} => $_ } grep { $_->{driver} =~ /dsl/i } map { network::isdn::get_capi_card($in, $_) } @isdn_modems;
- push @adsl_devices, keys %isdn_cards;
- }
- },
- name => N("ADSL configuration") . "\n\n" . N("Select the network interface to configure:"),
- data => [ { label => N("Net Device"), type => "list", val => \$ntf_name, allow_empty_list => 1,
- list => \@adsl_devices, format => sub { $eth_intf{$_[0]} || $_[0] } } ],
- complete => sub {
- exists $adsl_cards{$ntf_name} && !network::thirdparty::setup_device($in, 'dsl', $adsl_cards{$ntf_name}[0]);
- },
- post => sub {
- if (exists $adsl_cards{$ntf_name}) {
- my $modem;
- ($ntf_name, $modem) = @{$adsl_cards{$ntf_name}};
- $net->{adsl}{bus} = $modem->{bus} if $ntf_name eq 'bewan';
- }
- if (exists($isdn_cards{$ntf_name})) {
- require network::isdn;
- $net->{adsl}{capi_card} = $isdn_cards{$ntf_name};
- $net->{adsl}{method} = "capi";
- return 'adsl_account';
- }
- return 'adsl_provider';
- },
- },
-
-
- adsl_provider =>
- {
- pre => sub {
- require network::adsl_consts;
- %adsl_data = %network::adsl_consts::adsl_data if is_empty_hash_ref(\%adsl_data);
- $adsl_old_provider = $adsl_provider;
- if (!$adsl_provider) {
- require lang;
- my $locale_country = lang::c2name($::o->{locale}{country} || lang::read()->{country});
- $adsl_provider = find { /^$locale_country/ } sort(keys %adsl_data);
- }
- },
- name => N("Please choose your ADSL provider"),
- data => sub {
- [ { label => N("Provider:"), type => "list", val => \$adsl_provider, separator => '|',
- list => [ sort(N("Unlisted - edit manually"), keys %adsl_data) ], sort => 0 } ];
- },
- post => sub {
- $net->{adsl}{method} = 'pppoa' if member($ntf_name, qw(bewan speedtouch));
- if ($adsl_provider ne N("Unlisted - edit manually")) {
- $adsl_data = $adsl_data{$adsl_provider};
- if ($adsl_provider ne $adsl_old_provider) {
- $net->{adsl}{$_} = $adsl_data->{$_} foreach qw(Encapsulation vpi vci provider_id method);
- $net->{resolv}{$_} = $adsl_data->{$_} foreach qw(DOMAINNAME2);
- }
- }
- return 'adsl_protocol';
- },
- },
-
-
- adsl_protocol =>
- {
- pre => sub {
- # preselect right protocol for ethernet though connections:
- if (!exists $adsl_descriptions{$ntf_name}) {
- $ethntf = $net->{ifcfg}{$ntf_name} ||= { DEVICE => $ntf_name };
- $net->{adsl}{method} ||= $ethntf->{BOOTPROTO} || "dhcp";
- #- pppoa shouldn't be selected by default for ethernet devices, fallback on pppoe
- $net->{adsl}{method} = "pppoe" if $net->{adsl}{method} eq "pppoa";
- }
- },
- name => N("Please choose your DSL connection type.
-If you do not know it, keep the preselected type."),
- data => [
- { text => N("ADSL connection type:"), val => \$net->{adsl}{method}, type => "list",
- list => [ sort { $adsl_types{$a} cmp $adsl_types{$b} } keys %adsl_types ],
- format => sub { $adsl_types{$_[0]} },
- },
- ],
- post => sub {
- my $real_interface = $ntf_name;
- $net->{type} = 'adsl';
- # blacklist bogus driver, enable ifplugd support else:
- $find_lan_module->();
- $ethntf->{MII_NOT_SUPPORTED} ||= bool2yesno(network::ethernet::is_ifplugd_blacklisted($module));
- if ($ntf_name eq "sagem" && member($net->{adsl}{method}, qw(static dhcp))) {
- #- "fctStartAdsl -i" builds ifcfg-ethX from ifcfg-sagem and echoes ethX
- #- it auto-detects dhcp/static modes thanks to encapsulation setting
- $ethntf = $net->{ifcfg}{sagem} ||= {};
- $ethntf->{DEVICE} = "`/usr/sbin/fctStartAdsl -i`";
- $ethntf->{MII_NOT_SUPPORTED} = "yes";
- }
- if ($ntf_name eq "speedtouch" && member($net->{adsl}{method}, qw(static dhcp))) {
- #- use ATMARP with the atm0 interface
- $real_interface = "atm0";
- $ethntf = $net->{ifcfg}{$real_interface} ||= {};
- $ethntf->{DEVICE} = $real_interface;
- $ethntf->{ATM_ADDR} = undef;
- $ethntf->{MII_NOT_SUPPORTED} = "yes";
- }
- #- delete gateway settings if gateway device is invalid or if reconfiguring the gateway interface
- exists $net->{ifcfg}{$real_interface} and $delete_gateway_settings->($real_interface);
- # process static/dhcp ethernet devices:
- if (exists($net->{ifcfg}{$real_interface}) && member($net->{adsl}{method}, qw(static dhcp))) {
- $ethntf->{TYPE} = "ADSL";
- $auto_ip = $net->{adsl}{method} eq 'dhcp';
- return 'lan_intf';
- }
- member($net->{adsl}{method}, qw(pppoe pptp)) and $net->{adsl}{ethernet_device} = $ntf_name;
- return 'adsl_account';
- },
- },
-
-
- adsl_account =>
- {
- pre => sub {
- network::adsl::adsl_probe_info($net);
- $net->{net_interface} = 'ppp0';
- $net->{ifcfg}{ppp0} ||= {};
- ($adsl_vpi, $adsl_vci) = (hex($net->{adsl}{vpi}), hex($net->{adsl}{vci}));
- },
- name => N("Connection Configuration") . "\n\n" .
- N("Please fill or check the field below"),
- data => sub {
- [
- if_(0, { label => N("Provider name (ex provider.net)"), val => \$net->{resolv}{DOMAINNAME2} }),
- { label => N("First DNS Server (optional)"), val => \$net->{resolv}{dnsServer2} },
- { label => N("Second DNS Server (optional)"), val => \$net->{resolv}{dnsServer3} },
- { label => N("Account Login (user name)"), val => \$net->{adsl}{login} },
- { label => N("Account Password"), val => \$net->{adsl}{passwd}, hidden => 1 },
- if_($net->{adsl}{method} ne "capi",
- { label => N("Virtual Path ID (VPI):"), val => \$adsl_vpi, advanced => 1 },
- { label => N("Virtual Circuit ID (VCI):"), val => \$adsl_vci, advanced => 1 }
- ),
- if_($ntf_name eq "sagem",
- { label => N("Encapsulation:"), val => \$net->{adsl}{Encapsulation}, list => [ keys %encapsulations ],
- format => sub { $encapsulations{$_[0]} }, advanced => 1,
- },
- ),
- ];
- },
- post => sub {
- #- update ATM_ADDR for ATMARP connections
- exists $ethntf->{ATM_ADDR} and $ethntf->{ATM_ADDR} = join('.', $adsl_vpi, $adsl_vci);
- #- convert VPI/VCI back to hex
- ($net->{adsl}{vpi}, $net->{adsl}{vci}) = map { sprintf("%x", $_) } ($adsl_vpi, $adsl_vci);
-
- $net->{adsl}{device} =
- $net->{adsl}{method} eq 'capi' ? 'capi_modem' :
- $net->{adsl}{method} eq 'pptp' ? 'pptp_modem' :
- $ntf_name;
- # FIXME: duplicate with $after_start_on_boot_step sub
- network::adsl::adsl_conf_backend($in, $modules_conf, $net);
- "allow_user_ctl";
- },
- },
-
-
- lan =>
- {
- pre => $lan_detect,
- name => N("Select the network interface to configure:"),
- data => sub {
- [ { label => N("Net Device"), type => "list", val => \$ntf_name, list => [
- (sort keys %eth_intf, if_($is_wireless, keys %unavailable_wireless_intf)),
- N_("Manually load a driver"),
- if_($is_wireless, N_("Use a Windows driver (with ndiswrapper)")),
- ], allow_empty_list => 1, format => sub {
- translate($eth_intf{$_[0]} || $unavailable_wireless_intf{$_[0]} || $_[0]) } } ];
- },
- complete => sub {
- if (any { $_->[0] eq $ntf_name && !$_->[1] } @all_cards) {
- $in->ask_warn(N("Error"), N("Unknown driver"));
- return 1;
- }
-
- if ($ntf_name eq "Use a Windows driver (with ndiswrapper)") {
- require network::ndiswrapper;
- $in->do_pkgs->ensure_is_installed('ndiswrapper', '/usr/sbin/ndiswrapper') or return 1;
- undef $ndiswrapper_driver;
- undef $ndiswrapper_device;
- unless (network::ndiswrapper::installed_drivers()) {
- $ndiswrapper_driver = network::ndiswrapper::ask_driver($in) or return 1;
- return !$ndiswrapper_do_driver_selection->();
- }
- }
- if (exists $unavailable_wireless_intf{$ntf_name}) {
- my $driver = $ntf_name;
- network::thirdparty::setup_device($in, 'wireless', $driver) or return 1;
- eval {
- modules::unload($driver);
- modules::load($driver);
- };
- $lan_detect->();
- my $eth_card = find { $_->[1] eq $driver } @all_cards;
- unless ($eth_card) {
- #- FIXME (#17545)
- #- "No matching device found for driver %s."
- #- "The driver has probably failed to load because of a missing firmware
- #- or because it doesn't support your card revision.
- #- Have a look at /var/log/messages to find additional information."
- $in->ask_warn(N("Error"), N("No device found"));
- return 1;
- }
- $ntf_name = $eth_card->[0];
- }
- 0;
- },
- post => sub {
- if ($ntf_name eq "Manually load a driver") {
- require modules::interactive;
- modules::interactive::load_category__prompt($in, $modules_conf, list_modules::ethernet_categories());
- return 'lan';
- } elsif ($ntf_name eq "Use a Windows driver (with ndiswrapper)") {
- return $ndiswrapper_next_step->();
- }
- $ethntf = $net->{ifcfg}{$ntf_name} ||= { DEVICE => $ntf_name };
- return $after_lan_intf_selection->();
- },
- },
-
-
- lan_protocol =>
- {
- pre => sub {
- $find_lan_module->();
- $ethntf->{METRIC} = network::tools::get_default_metric(network::tools::get_interface_type($ethntf, $module))
- unless defined($ethntf->{METRIC});
- $protocol = $l10n_lan_protocols{defined $auto_ip ? ($auto_ip ? 'dhcp' : 'static') : $ethntf->{BOOTPROTO}} || 0;
- },
- name => sub {
- my $_msg = N("Zeroconf hostname resolution");
- N("Configuring network device %s (driver %s)", $ethntf->{DEVICE}, $module) . "\n\n" .
- N("The following protocols can be used to configure a LAN connection. Please choose the one you want to use");
- },
- data => sub {
- [ { val => \$protocol, type => "list", list => [ sort values %l10n_lan_protocols ] } ];
- },
- post => sub {
- $auto_ip = $protocol ne $l10n_lan_protocols{static} || 0;
- return 'lan_intf';
- },
- },
-
-
- lan_intf =>
- {
- pre => sub {
- require network::ethernet;
- $onboot = $ethntf->{ONBOOT} ? $ethntf->{ONBOOT} =~ /yes/ : bool2yesno(!member($ethntf->{DEVICE},
- map { $_->{device} } detect_devices::pcmcia_probe()));
- $needhostname = $ethntf->{NEEDHOSTNAME} !~ /no/;
- $peerdns = $ethntf->{PEERDNS} !~ /no/;
- $peeryp = $ethntf->{PEERYP} =~ /yes/;
- $peerntpd = $ethntf->{PEERNTPD} =~ /yes/;
- # blacklist bogus driver, enable ifplugd support else:
- $ifplugd = !text2bool($ethntf->{MII_NOT_SUPPORTED}) && !network::ethernet::is_ifplugd_blacklisted($module);
- $track_network_id = $::isStandalone && $ethntf->{HWADDR} || detect_devices::isLaptop();
- delete $ethntf->{TYPE} if $net->{type} ne 'adsl' || !member($net->{adsl}{method}, qw(static dhcp));
- $ethntf->{DHCP_CLIENT} ||= (find { -x "$::prefix/sbin/$_" } qw(dhclient dhcpcd pump dhcpxd));
- $ipv6_tunnel = text2bool($ethntf->{IPV6TO4INIT});
- },
- name => sub { join('',
- N("Configuring network device %s (driver %s)", $ethntf->{DEVICE}, $module),
- if_(!$auto_ip, "\n\n" . N("Please enter the IP configuration for this machine.
-Each item should be entered as an IP address in dotted-decimal
-notation (for example, 1.2.3.4).")),
- ) },
- data => sub {
- [ $auto_ip ?
- (
- { text => N("Assign host name from DHCP address"), val => \$needhostname, type => "bool" },
- { label => N("DHCP host name"), val => \$ethntf->{DHCP_HOSTNAME} },
- )
- :
- (
- { label => N("IP address"), val => \$ethntf->{IPADDR}, disabled => sub { $auto_ip } },
- { label => N("Netmask"), val => \$ethntf->{NETMASK}, disabled => sub { $auto_ip } },
- ),
- { text => N("Track network card id (useful for laptops)"), val => \$track_network_id, type => "bool" },
- { text => N("Network Hotplugging"), val => \$ifplugd, type => "bool", disabled => sub { $wireless_roaming } },
- if_($net->{type} eq "lan",
- { text => N("Start at boot"), val => \$onboot, type => "bool" },
- ),
- { label => N("Metric"), val => \$ethntf->{METRIC}, advanced => 1 },
- { text => N("Enable IPv6 to IPv4 tunnel"), val => \$ipv6_tunnel, type => "bool", advanced => 1 },
- if_($auto_ip,
- { label => N("DHCP client"), val => \$ethntf->{DHCP_CLIENT},
- list => \@network::ethernet::dhcp_clients, advanced => 1 },
- { label => N("DHCP timeout (in seconds)"), val => \$ethntf->{DHCP_TIMEOUT}, advanced => 1 },
- { text => N("Get DNS servers from DHCP"), val => \$peerdns, type => "bool", advanced => 1 },
- { text => N("Get YP servers from DHCP"), val => \$peeryp, type => "bool", advanced => 1 },
- { text => N("Get NTPD servers from DHCP"), val => \$peerntpd, type => "bool", advanced => 1 },
- ),
- ];
- },
- complete => sub {
- $ethntf->{BOOTPROTO} = $auto_ip ? "dhcp" : "static";
- return 0 if $auto_ip;
- if (!is_ip($ethntf->{IPADDR})) {
- $in->ask_warn(N("Error"), N("IP address should be in format 1.2.3.4"));
- return 1, 0;
- }
- if (!is_ip($ethntf->{NETMASK})) {
- $in->ask_warn(N("Error"), N("Netmask should be in format 255.255.224.0"));
- return 1, 1;
- }
- if (is_ip_forbidden($ethntf->{IPADDR})) {
- $in->ask_warn(N("Error"), N("Warning: IP address %s is usually reserved!", $ethntf->{IPADDR}));
- return 1, 0;
- }
- #- test if IP address is already used (do not test for sagem DSL devices since it may use many ifcfg files)
- if ($ntf_name ne "sagem" && find { $_->{DEVICE} ne $ethntf->{DEVICE} && $_->{IPADDR} eq $ethntf->{IPADDR} } values %{$net->{ifcfg}}) {
- $in->ask_warn(N("Error"), N("%s already in use\n", $ethntf->{IPADDR}));
- return 1, 0;
- }
- },
- focus_out => sub {
- $ethntf->{NETMASK} ||= netmask($ethntf->{IPADDR}) unless $ethntf->{NETMASK};
- },
- post => sub {
- $ethntf->{ONBOOT} = bool2yesno($onboot);
- $ethntf->{NEEDHOSTNAME} = bool2yesno($needhostname);
- $ethntf->{PEERDNS} = bool2yesno($peerdns);
- $ethntf->{PEERYP} = bool2yesno($peeryp);
- $ethntf->{PEERNTPD} = bool2yesno($peerntpd);
- $ethntf->{MII_NOT_SUPPORTED} = bool2yesno(!$ifplugd);
- $ethntf->{HWADDR} = $track_network_id or delete $ethntf->{HWADDR};
- #- FIXME: special case for sagem where $ethntf->{DEVICE} is the result of a command
- #- we can't always use $ntf_name because of some USB DSL modems
- $net->{net_interface} = $ntf_name eq "sagem" ? "sagem" : $ethntf->{DEVICE};
- $need_network_restart = $ipv6_tunnel ^ text2bool($ethntf->{IPV6TO4INIT});
- if ($ipv6_tunnel) {
- $net->{network}{NETWORKING_IPV6} = "yes";
- $net->{network}{IPV6_DEFAULTDEV} = "tun6to4";
- }
- $ethntf->{IPV6INIT} = bool2yesno($ipv6_tunnel);
- $ethntf->{IPV6TO4INIT} = bool2yesno($ipv6_tunnel);
- if ($auto_ip) {
- #- delete gateway settings if gateway device is invalid or if reconfiguring the gateway interface to dhcp
- $delete_gateway_settings->($ntf_name);
- }
- return "static_hostname";
- },
- },
-
- ndiswrapper_select_driver =>
- {
- pre => sub {
- @ndiswrapper_drivers = network::ndiswrapper::installed_drivers();
- $ndiswrapper_driver ||= first(@ndiswrapper_drivers);
- },
- data => sub {
- [ { label => N("Choose an ndiswrapper driver"), type => "list", val => \$ndiswrapper_driver, allow_empty_list => 1,
- list => [ undef, @ndiswrapper_drivers ],
- format => sub { defined $_[0] ? N("Use the ndiswrapper driver %s", $_[0]) : N("Install a new driver") } } ];
- },
- complete => sub {
- $ndiswrapper_driver ||= network::ndiswrapper::ask_driver($in) or return 1;
- !$ndiswrapper_do_driver_selection->();
- },
- post => $ndiswrapper_next_step,
- },
-
- ndiswrapper_select_device =>
- {
- data => sub {
- [ { label => N("Select a device:"), type => "list", val => \$ndiswrapper_device, allow_empty_list => 1,
- list => [ network::ndiswrapper::present_devices($ndiswrapper_driver) ],
- format => sub { $_[0]{description} } } ];
- },
- complete => sub {
- !$ndiswrapper_do_device_selection->();
- },
- post => $ndiswrapper_next_step,
- },
-
- wireless =>
- {
- pre => sub {
- require network::wireless;
- $find_lan_module->();
- $need_rt2x00_iwpriv = network::wireless::is_old_rt2x00($module);
- $wireless_roaming = delete $ethntf->{WIRELESS_MODE} eq 'Roaming' && !$need_rt2x00_iwpriv;
- $ethntf->{WIRELESS_MODE} ||= "Managed";
- $ethntf->{WIRELESS_ESSID} ||= "any";
- ($wireless_enc_key, my $restricted) = network::wireless::get_wep_key_from_iwconfig($ethntf->{WIRELESS_ENC_KEY});
- $wireless_enc_mode =
- $ethntf->{WIRELESS_WPA_DRIVER} || $ethntf->{WIRELESS_IWPRIV} =~ /WPAPSK/ ? 'wpa-psk' :
- !$wireless_enc_key ? 'none' :
- $restricted ? 'restricted' :
- 'open';
- delete $ethntf->{WIRELESS_ENC_KEY};
- delete $ethntf->{WIRELESS_IWPRIV};
- delete $ethntf->{WIRELESS_WPA_DRIVER};
- },
- name => N("Please enter the wireless parameters for this card:"),
- data => sub {
- [
- { label => N("Operating Mode"), val => \$ethntf->{WIRELESS_MODE},
- list => [ N_("Ad-hoc"), N_("Managed"), N_("Master"), N_("Repeater"), N_("Secondary"), N_("Auto") ],
- format => \&translate,
- disabled => sub { $wireless_roaming } },
- { label => N("Network name (ESSID)"), val => \$ethntf->{WIRELESS_ESSID} },
- { label => N("Encryption mode"), val => \$wireless_enc_mode,
- list => [ keys %network::wireless::wireless_enc_modes ],
- sort => 1,
- format => sub { translate($network::wireless::wireless_enc_modes{$_[0]}) } },
- { label => N("Encryption key"), val => \$wireless_enc_key, disabled => sub { $wireless_enc_mode eq 'none' } },
- { text => N("Allow access point roaming"), val => \$wireless_roaming, type => "bool",
- disabled => sub { network::wireless::is_wpa_supplicant_blacklisted($module) } },
- { label => N("Network ID"), val => \$ethntf->{WIRELESS_NWID}, advanced => 1 },
- { label => N("Operating frequency"), val => \$ethntf->{WIRELESS_FREQ}, advanced => 1 },
- { label => N("Sensitivity threshold"), val => \$ethntf->{WIRELESS_SENS}, advanced => 1 },
- { label => N("Bitrate (in b/s)"), val => \$ethntf->{WIRELESS_RATE}, advanced => 1 },
- { label => N("RTS/CTS"), val => \$ethntf->{WIRELESS_RTS}, advanced => 1,
- help => N("RTS/CTS adds a handshake before each packet transmission to make sure that the
-channel is clear. This adds overhead, but increase performance in case of hidden
-nodes or large number of active nodes. This parameter sets the size of the
-smallest packet for which the node sends RTS, a value equal to the maximum
-packet size disable the scheme. You may also set this parameter to auto, fixed
-or off.")
- },
- { label => N("Fragmentation"), val => \$ethntf->{WIRELESS_FRAG}, advanced => 1 },
- { label => N("iwconfig command extra arguments"), val => \$ethntf->{WIRELESS_IWCONFIG}, advanced => 1,
- help => N("Here, one can configure some extra wireless parameters such as:
-ap, channel, commit, enc, power, retry, sens, txpower (nick is already set as the hostname).
-
-See iwconfig(8) man page for further information."),
- },
- { label =>
- #-PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
- N("iwspy command extra arguments"), val => \$ethntf->{WIRELESS_IWSPY}, advanced => 1,
- help => N("iwspy is used to set a list of addresses in a wireless network
-interface and to read back quality of link information for each of those.
-
-This information is the same as the one available in /proc/net/wireless :
-quality of the link, signal strength and noise level.
-
-See iwpspy(8) man page for further information."),
- },
- if_(!$need_rt2x00_iwpriv,
- { label => N("iwpriv command extra arguments"), val => \$ethntf->{WIRELESS_IWPRIV}, advanced => 1,
- help => N("iwpriv enable to set up optionals (private) parameters of a wireless network
-interface.
-
-iwpriv deals with parameters and setting specific to each driver (as opposed to
-iwconfig which deals with generic ones).
-
-In theory, the documentation of each device driver should indicate how to use
-those interface specific commands and their effect.
-
-See iwpriv(8) man page for further information."),
- })
- ];
- },
- complete => sub {
- if ($ethntf->{WIRELESS_FREQ} && $ethntf->{WIRELESS_FREQ} !~ /[0-9.]*[kGM]/) {
- $in->ask_warn(N("Error"), N("Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz frequency), or add enough '0' (zeroes)."));
- return 1, 6;
- }
- if ($ethntf->{WIRELESS_RATE} && $ethntf->{WIRELESS_RATE} !~ /[0-9.]*[kGM]/) {
- $in->ask_warn(N("Error"), N("Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add enough '0' (zeroes)."));
- return 1, 8;
- }
- if (network::wireless::wlan_ng_needed($module)) {
- $in->do_pkgs->ensure_is_installed('prism2-utils', '/sbin/wlanctl-ng') or return 1;
- }
- $need_wpa_supplicant = ($wireless_roaming || $wireless_enc_mode eq 'wpa-psk') && !$need_rt2x00_iwpriv;
- if ($need_wpa_supplicant) {
- $in->do_pkgs->ensure_is_installed('wpa_supplicant', '/usr/sbin/wpa_supplicant') or return 1;
- }
- !network::thirdparty::setup_device($in, 'wireless', $module);
- },
- post => sub {
- if ($wireless_roaming) {
- $ethntf->{MII_NOT_SUPPORTED} = 'no';
- $ethntf->{WIRELESS_MODE} = 'Roaming';
- } elsif (member($wireless_enc_mode, qw(open restricted))) {
- $ethntf->{WIRELESS_ENC_KEY} = network::wireless::convert_wep_key_for_iwconfig($wireless_enc_key, $wireless_enc_mode eq 'restricted');
- } elsif ($need_rt2x00_iwpriv) {
- #- use iwpriv for WPA with rt2400/rt2500 drivers, they don't plan to support wpa_supplicant
- $ethntf->{WIRELESS_IWPRIV} = $wireless_enc_mode eq 'wpa-psk' && qq(set AuthMode=WPAPSK
-set EncrypType=TKIP
-set SSID=$ethntf->{WIRELESS_ESSID}
-set WPAPSK="$wireless_enc_key"
-set TxRate=0);
- }
-
- if ($need_wpa_supplicant) {
- $ethntf->{WIRELESS_WPA_DRIVER} = network::wireless::wpa_supplicant_get_driver($module);
- network::wireless::wpa_supplicant_add_network($ethntf->{WIRELESS_ESSID}, $wireless_enc_mode, $wireless_enc_key);
- }
-
- if (network::wireless::wlan_ng_needed($module)) {
- network::wireless::wlan_ng_configure($ethntf->{WIRELESS_ESSID}, $wireless_enc_key, $ethntf->{DEVICE}, $module);
- }
-
- return "lan_protocol";
- },
- },
-
-
- dvb =>
- {
- name => N("DVB configuration") . "\n\n" . N("Select the network interface to configure:"),
- data => [ { label => N("DVB Adapter"), type => "list", val => \$dvb_adapter, allow_empty_list => 1,
- list => [ modules::probe_category("multimedia/dvb") ], format => sub { $_[0]{description} } } ],
- next => "dvb_adapter",
- },
-
-
- dvb_adapter =>
- {
- pre => sub {
- my $previous_ethntf = find { $is_dvb_interface->($_) } values %{$net->{ifcfg}};
- $dvb_ad = $previous_ethntf->{DVB_ADAPTER_ID};
- $dvb_net = $previous_ethntf->{DVB_NETWORK_DEMUX};
- $dvb_pid = $previous_ethntf->{DVB_NETWORK_PID};
- if (my $device = find { sysopen(undef, $_, c::O_RDWR() | c::O_NONBLOCK()) } glob("/dev/dvb/adapter*/net*")) {
- ($dvb_ad, $dvb_net) = $device =~ m,/dev/dvb/adapter(\d+)/net(\d+),;
- }
- },
- name => N("DVB adapter settings"),
- data => sub {
- [
- { label => N("Adapter card"), val => \$dvb_ad },
- { label => N("Net demux"), val => \$dvb_net },
- { label => N("PID"), val => \$dvb_pid },
- ];
- },
- post => sub {
- $ntf_name = 'dvb' . $dvb_ad . '_' . $dvb_net;
- $ethntf = $net->{ifcfg}{$ntf_name} ||= {};
- $ethntf->{DEVICE} = $ntf_name;
- $ethntf->{DVB_ADAPTER_ID} = qq("$dvb_ad");
- $ethntf->{DVB_NETWORK_DEMUX} = qq("$dvb_net");
- $ethntf->{DVB_NETWORK_PID} = qq("$dvb_pid");
- return "lan_protocol";
- },
- },
-
- static_hostname =>
- {
- pre => sub {
- if ($ethntf->{IPADDR}) {
- $net->{resolv}{dnsServer} ||= dns($ethntf->{IPADDR});
- $gateway_ex = gateway($ethntf->{IPADDR});
- # $net->{network}{GATEWAY} ||= gateway($ethntf->{IPADDR});
- if ($ntf_name eq "sagem") {
- my @sagem_ip = split(/\./, $ethntf->{IPADDR});
- $sagem_ip[3] = 254;
- $net->{network}{GATEWAY} = join(".", @sagem_ip);
- }
- }
- },
- name => N("Please enter your host name.
-Your host name should be a fully-qualified host name,
-such as ``mybox.mylab.myco.com''.
-You may also enter the IP address of the gateway if you have one.") .
- " " . # better looking text (to be merged into texts since some languages (eg: ja) doesn't need it
-N("Last but not least you can also type in your DNS server IP addresses."),
- data => sub {
- [ { label => $auto_ip ? N("Host name (optional)") : N("Host name"), val => \$net->{network}{HOSTNAME} },
- if_(!$auto_ip,
- { label => N("DNS server 1"), val => \$net->{resolv}{dnsServer} },
- { label => N("DNS server 2"), val => \$net->{resolv}{dnsServer2} },
- { label => N("DNS server 3"), val => \$net->{resolv}{dnsServer3} },
- { label => N("Search domain"), val => \$net->{resolv}{DOMAINNAME},
- help => N("By default search domain will be set from the fully-qualified host name") },
- { label => N("Gateway (e.g. %s)", $gateway_ex), val => \$net->{network}{GATEWAY} },
- if_(@all_cards > 1,
- { label => N("Gateway device"), val => \$net->{network}{GATEWAYDEV}, list => [ N_("None"), sort keys %all_eth_intf ],
- format => sub { $all_eth_intf{$_[0]} || translate($_[0]) } },
- ),
- ),
- ];
- },
- complete => sub {
- foreach my $dns (qw(dnsServer dnsServer2 dnsServer3)) {
- if ($net->{resolv}{$dns} && !is_ip($net->{resolv}{$dns})) {
- $in->ask_warn(N("Error"), N("DNS server address should be in format 1.2.3.4"));
- return 1;
- }
- }
- if ($net->{network}{GATEWAY} && !is_ip($net->{network}{GATEWAY})) {
- $in->ask_warn(N("Error"), N("Gateway address should be in format 1.2.3.4"));
- return 1;
- }
- },
- post => sub {
- $net->{network}{GATEWAYDEV} eq "None" and delete $net->{network}{GATEWAYDEV};
- return "zeroconf";
- }
- },
-
-
- zeroconf =>
- {
- name => N("If desired, enter a Zeroconf hostname.
-This is the name your machine will use to advertise any of
-its shared resources that are not managed by the network.
-It is not necessary on most networks."),
- data => [ { label => N("Zeroconf Host name"), val => \$net->{zeroconf}{hostname} } ],
- complete => sub {
- if ($net->{zeroconf}{hostname} =~ /\./) {
- $in->ask_warn(N("Error"), N("Zeroconf host name must not contain a ."));
- return 1;
- }
- },
- next => "allow_user_ctl",
- },
-
-
- allow_user_ctl =>
- {
- name => N("Do you want to allow users to start the connection?"),
- type => "yesorno",
- default => sub { bool2yesno(text2bool($net->{ifcfg}{$net->{net_interface}}{USERCTL})) },
- post => sub {
- my ($res) = @_;
- $net->{ifcfg}{$net->{net_interface}}{USERCTL} = bool2yesno($res);
- return $goto_start_on_boot_ifneeded->();
- },
- },
-
-
- network_on_boot =>
- {
- name => N("Do you want to start the connection at boot?"),
- type => "yesorno",
- default => sub { ($net->{type} eq 'modem' ? 'no' : 'yes') },
- post => sub {
- my ($res) = @_;
- $net->{ifcfg}{$net->{net_interface}}{ONBOOT} = bool2yesno($res);
- return $after_start_on_boot_step->();
- },
- },
-
-
- isdn_dial_on_boot =>
- {
- pre => sub {
- $net->{ifcfg}{ippp0} ||= {}; # we want the ifcfg-ippp0 file to be written
- $net->{ifcfg}{ippp0}{DEVICE} = "ippp0";
- @isdn_dial_methods = ({ name => N("Automatically at boot"),
- ONBOOT => 1, DIAL_ON_IFUP => 1 },
- { name => N("By using Net Applet in the system tray"),
- ONBOOT => 0, DIAL_ON_IFUP => 1 },
- { name => N("Manually (the interface would still be activated at boot)"),
- ONBOOT => 1, DIAL_ON_IFUP => 0 });
- my $method = find {
- $_->{ONBOOT} eq text2bool($net->{ifcfg}{ippp0}{ONBOOT}) &&
- $_->{DIAL_ON_IFUP} eq text2bool($net->{ifcfg}{ippp0}{DIAL_ON_IFUP});
- } @isdn_dial_methods;
- #- use net_applet by default
- $isdn->{dial_method} = $method->{name} || $isdn_dial_methods[1]{name};
- },
- name => N("How do you want to dial this connection?"),
- data => sub {
- [ { type => "list", val => \$isdn->{dial_method}, list => [ map { $_->{name} } @isdn_dial_methods ] } ];
- },
- post => sub {
- my $method = find { $_->{name} eq $isdn->{dial_method} } @isdn_dial_methods;
- $net->{ifcfg}{ippp0}{$_} = bool2yesno($method->{$_}) foreach qw(ONBOOT DIAL_ON_IFUP);
- return $after_start_on_boot_step->();
- },
- },
-
- ask_connect_now =>
- {
- name => N("Do you want to try to connect to the Internet now?"),
- type => "yesorno",
- post => sub {
- my ($a) = @_;
- my $type = $net->{type};
- $up = 1;
- if ($a) {
- # local $::isWizard = 0;
- my $_w = $in->wait_message('', N("Testing your connection..."), 1);
- network::tools::stop_net_interface($net, 0);
- if (exists $net->{adsl}{ethernet_device}) {
- network::tools::stop_interface($net->{adsl}{ethernet_device}, 0);
- sleep 1;
- network::tools::start_interface($net->{adsl}{ethernet_device}, 0);
- }
- sleep 1;
- network::tools::start_net_interface($net, 1);
- my $s = 30;
- $type =~ /modem/ and $s = 50;
- $type =~ /adsl/ and $s = 35;
- $type =~ /isdn/ and $s = 20;
- sleep $s;
- $up = network::tools::connected();
- }
- $success = $up;
- return $a ? "disconnect" : "end";
- }
- },
-
-
- disconnect =>
- {
- name => sub {
- $up ? N("The system is now connected to the Internet.") .
- if_($::isInstall, N("For security reasons, it will be disconnected now.")) :
- N("The system does not seem to be connected to the Internet.
-Try to reconfigure your connection.");
- },
- no_back => 1,
- end => 1,
- post => sub {
- $::isInstall and network::tools::stop_net_interface($net, 0);
- return "end";
- },
- },
-
-
- end =>
- {
- name => sub {
- return $success ? join('', N("Congratulations, the network and Internet configuration is finished.
-
-"), if_($::isStandalone && $in->isa('interactive::gtk'),
- N("After this is done, we recommend that you restart your X environment to avoid any hostname-related problems."))) :
- N("Problems occurred during configuration.
-Test your connection via net_monitor or mcc. If your connection does not work, you might want to relaunch the configuration.");
- },
- end => 1,
- },
- },
- });
- $wiz->process($in);
-
- #- keeping the translations in case someone want to restore these texts
- if_(0,
- # keep b/c of translations in case they can be reused somewhere else:
- N("(detected on port %s)", 'toto'),
- #-PO: here, "(detected)" string will be appended to eg "ADSL connection"
- N("(detected %s)", 'toto'), N("(detected)"),
- N("Network Configuration"),
- N("Because you are doing a network installation, your network is already configured.
-Click on Ok to keep your configuration, or cancel to reconfigure your Internet & Network connection.
-"),
- N("The network needs to be restarted. Do you want to restart it?"),
- N("A problem occurred while restarting the network: \n\n%s", 'foo'),
- N("We are now going to configure the %s connection.\n\n\nPress \"%s\" to continue.", 'a', 'b'),
- N("Configuration is complete, do you want to apply settings?"),
- N("You have configured multiple ways to connect to the Internet.\nChoose the one you want to use.\n\n"),
- N("Internet connection"),
- );
-}
-
-sub safe_main {
- my ($net, $in, $modules_conf) = @_;
- eval { real_main($net, $in, $modules_conf) };
- my $err = $@;
- if ($err) { # && $in->isa('interactive::gtk')
- $err =~ /wizcancel/ and $in->exit(0);
-
- local $::isEmbedded = 0; # to prevent sub window embedding
- local $::isWizard = 0 if !$::isInstall; # to prevent sub window embedding
- #err_dialog(N("Error"), N("An unexpected error has happened:\n%s", $err));
- $in->ask_warn(N("Error"), N("An unexpected error has happened:\n%s", $err));
- }
-}
-
-sub start_internet {
- my ($o) = @_;
- #- give a chance for module to be loaded using kernel-BOOT modules...
- #- FIXME, this has nothing to do there
- $::isStandalone or modules::load_category($o->{modules_conf}, 'network/*');
- network::tools::start_net_interface($o->{net}, 1);
-}
-
-sub stop_internet {
- my ($o) = @_;
- network::tools::stop_net_interface($o->{net}, 1);
-}
-
-1;
-
-=head1 network::netconnect::detect()
-
-=head2 example of usage
-
-use lib qw(/usr/lib/libDrakX);
-use network::netconnect;
-use modules;
-use Data::Dumper;
-
-my %i;
-my $modules_conf = modules::any_conf->read;
-network::netconnect::detect($modules_conf, \%i);
-print Dumper(\%i),"\n";
-
-=cut
diff --git a/perl-install/network/network.pm b/perl-install/network/network.pm
deleted file mode 100644
index 45c5dc2ee..000000000
--- a/perl-install/network/network.pm
+++ /dev/null
@@ -1,627 +0,0 @@
-package network::network; # $Id$wir
-
-#-######################################################################################
-#- misc imports
-#-######################################################################################
-
-use strict;
-
-use Socket;
-use common;
-use detect_devices;
-use run_program;
-use network::tools;
-use vars qw(@ISA @EXPORT);
-use log;
-
-my $network_file = "/etc/sysconfig/network";
-my $resolv_file = "/etc/resolv.conf";
-my $tmdns_file = "/etc/tmdns.conf";
-
-
-@ISA = qw(Exporter);
-@EXPORT = qw(addDefaultRoute dns dnsServers gateway guessHostname is_ip is_ip_forbidden masked_ip netmask resolv sethostname);
-
-#- $net hash structure
-#- autodetect
-#- type
-#- net_interface
-#- PROFILE: selected netprofile
-#- network (/etc/sysconfig/network) : NETWORKING FORWARD_IPV4 NETWORKING_IPV6 HOSTNAME GATEWAY GATEWAYDEV NISDOMAIN
-#- NETWORKING : networking flag : string : "yes" by default
-#- FORWARD_IPV4 : forward IP flag : string : "false" by default
-#- HOSTNAME : hostname : string : "localhost.localdomain" by default
-#- GATEWAY : gateway
-#- GATEWAYDEV : gateway interface
-#- NISDOMAIN : nis domain
-#- NETWORKING_IPV6 : use IPv6, "yes" or "no"
-#- IPV6_DEFAULTDEV
-#- resolv (/etc/resolv.conf): dnsServer, dnsServer2, dnsServer3, DOMAINNAME, DOMAINNAME2, DOMAINNAME3
-#- dnsServer : dns server 1
-#- dnsServer2 : dns server 2
-#- dnsServer3 : dns server 3 : note that we uses the dns1 for the LAN, and the 2 others for the internet conx
-#- DOMAINNAME : domainname : string : $net->{network}{HOSTNAME} =~ /\.(.*)/ by default
-#- DOMAINNAME2 : well it's another domainname : have to look further why we used 2
-#- adsl: bus, Encapsulation, vpi, vci provider_id, method, login, passwd, ethernet_device, capi_card
-#- cable: bpalogin, login, passwd
-#- zeroconf: hostname
-#- auth: LDAPDOMAIN WINDOMAIN
-#- ifcfg (/etc/sysconfig/network-scripts/ifcfg-*):
-#- key : device name
-#- value : hash containing ifcfg file values, see write_interface_conf() for an exhaustive list
-#- DHCP_HOSTNAME : If you have a dhcp and want to set the hostname
-#- IPADDR : IP address
-#- NETMASK : netmask
-#- DEVICE : device name
-#- BOOTPROTO : boot prototype : "bootp" or "dhcp" or "pump" or ...
-#- IPV6INIT
-#- IPV6TO4INIT
-#- MS_DNS1
-#- MS_DNS2
-#- DOMAIN
-
-sub read_conf {
- my ($file) = @_;
- +{ getVarsFromSh($file) };
-}
-
-sub read_resolv_conf_raw {
- my ($o_file) = @_;
- my $s = cat_($o_file || $::prefix . $resolv_file);
- { nameserver => [ $s =~ /^\s*nameserver\s+(\S+)/mg ],
- search => [ if_($s =~ /^\s*search\s+(.*)/m, split(' ', $1)) ] };
-}
-
-sub read_resolv_conf {
- my ($o_file) = @_;
- my $resolv_conf = read_resolv_conf_raw($o_file);
- +{
- (mapn { $_[0] => $_[1] } [ qw(dnsServer dnsServer2 dnsServer3) ], $resolv_conf->{nameserver}),
- (mapn { $_[0] => $_[1] } [ qw(DOMAINNAME DOMAINNAME2 DOMAINNAME3) ], $resolv_conf->{search}),
- };
-}
-
-sub read_interface_conf {
- my ($file) = @_;
- my %intf = getVarsFromSh($file);
-
- $intf{BOOTPROTO} ||= 'static';
- $intf{isPtp} = $intf{NETWORK} eq '255.255.255.255';
- $intf{isUp} = 1;
- \%intf;
-}
-
-sub read_zeroconf() {
- cat_($::prefix . $tmdns_file) =~ /^\s*hostname\s*=\s*(\w+)/m && { ZEROCONF_HOSTNAME => $1 };
-}
-
-sub write_network_conf {
- my ($net) = @_;
-
- if ($net->{network}{HOSTNAME} && $net->{network}{HOSTNAME} =~ /\.(.+)$/) {
- $net->{resolv}{DOMAINNAME} = $1;
- }
- $net->{network}{NETWORKING} = 'yes';
-
- setVarsInSh($::prefix . $network_file, $net->{network}, qw(HOSTNAME NETWORKING GATEWAY GATEWAYDEV NISDOMAIN FORWARD_IPV4 NETWORKING_IPV6 IPV6_DEFAULTDEV));
-}
-
-sub write_zeroconf {
- my ($net, $in) = @_;
- my $zhostname = $net->{zeroconf}{hostname};
- my $file = $::prefix . $tmdns_file;
-
- if ($zhostname) {
- $in->do_pkgs->ensure_binary_is_installed('tmdns', 'tmdns', 'auto') if !$in->do_pkgs->is_installed('bind');
- $in->do_pkgs->ensure_binary_is_installed('zcip', 'zcip', 'auto');
- }
-
- #- write blank hostname even if disabled so that drakconnect does not assume zeroconf is enabled
- eval { substInFile { s/^\s*(hostname)\s*=.*/$1 = $zhostname/ } $file } if $zhostname || -f $file;
-
- require services;
- services::set_status('tmdns', $net->{zeroconf}{hostname}, $::isInstall);
-}
-
-sub write_resolv_conf {
- my ($net) = @_;
- my $resolv = $net->{resolv};
- my $file = $::prefix . $resolv_file;
-
- my %new = (
- search => [ grep { $_ } uniq(@$resolv{'DOMAINNAME', 'DOMAINNAME2', 'DOMAINNAME3'}) ],
- nameserver => [ grep { $_ } uniq(@$resolv{'dnsServer', 'dnsServer2', 'dnsServer3'}) ],
- );
-
- my (%prev, @unknown);
- foreach (cat_($file)) {
- s/\s+$//;
- s/^[#\s]*//;
-
- if (my ($key, $val) = /^(search|nameserver)\s+(.*)$/) {
- push @{$prev{$key}}, $val;
- } elsif (/^ppp temp entry$/) {
- } elsif (/\S/) {
- push @unknown, $_;
- }
- }
- unlink $file if -l $file; #- workaround situation when /etc/resolv.conf is an absolute link to /etc/ppp/resolv.conf or whatever
-
- if (@{$new{search}} || @{$new{nameserver}}) {
- $prev{$_} = [ difference2($prev{$_} || [], $new{$_}) ] foreach keys %new;
-
- my @search = do {
- my @new = if_(@{$new{search}}, "search " . join(' ', @{$new{search}}) . "\n");
- my @old = if_(@{$prev{search}}, "# search " . join(' ', @{$prev{search}}) . "\n");
- @new, @old;
- };
- my @nameserver = do {
- my @new = map { "nameserver $_\n" } @{$new{nameserver}};
- my @old = map { "# nameserver $_\n" } @{$prev{nameserver}};
- @new, @old;
- };
- output_with_perm($file, 0644, @search, @nameserver, (map { "# $_\n" } @unknown), "\n# ppp temp entry\n");
-
- #-res_init(); # reinit the resolver so DNS changes take affect
- 1;
- } else {
- log::explanations("neither domain name nor dns server are configured");
- 0;
- }
-}
-
-sub update_broadcast_and_network {
- my ($intf) = @_;
- my @ip = split '\.', $intf->{IPADDR};
- my @mask = split '\.', $intf->{NETMASK};
- $intf->{BROADCAST} = join('.', mapn { int($_[0]) | ((~int($_[1])) & 255) } \@ip, \@mask);
- $intf->{NETWORK} = join('.', mapn { int($_[0]) & $_[1] } \@ip, \@mask);
-}
-
-sub write_interface_settings {
- my ($intf, $file) = @_;
- setVarsInSh($file, $intf, qw(DEVICE BOOTPROTO IPADDR NETMASK NETWORK BROADCAST ONBOOT HWADDR METRIC MII_NOT_SUPPORTED TYPE USERCTL ATM_ADDR ETHTOOL_OPTS VLAN MTU MS_DNS1 MS_DNS2 DOMAIN),
- qw(WIRELESS_MODE WIRELESS_ESSID WIRELESS_NWID WIRELESS_FREQ WIRELESS_SENS WIRELESS_RATE WIRELESS_ENC_KEY WIRELESS_RTS WIRELESS_FRAG WIRELESS_IWCONFIG WIRELESS_IWSPY WIRELESS_IWPRIV WIRELESS_WPA_DRIVER),
- qw(DVB_ADAPTER_ID DVB_NETWORK_DEMUX DVB_NETWORK_PID),
- qw(IPV6INIT IPV6TO4INIT),
- qw(MRU REMIP PEERDNS PPPOPTIONS HARDFLOWCTL DEFABORT RETRYTIMEOUT PAPNAME LINESPEED MODEMPORT DEBUG ESCAPECHARS INITSTRING),
- qw(DISCONNECTTIMEOUT PERSIST DEFROUTE),
- if_($intf->{BOOTPROTO} eq "dhcp", qw(DHCP_CLIENT DHCP_HOSTNAME NEEDHOSTNAME PEERDNS PEERYP PEERNTPD DHCP_TIMEOUT)),
- if_($intf->{DEVICE} =~ /^ippp\d+$/, qw(DIAL_ON_IFUP))
- );
- substInFile { s/^DEVICE='(`.*`)'/DEVICE=$1/g } $file; #- remove quotes if DEVICE is the result of a command
- chmod $intf->{WIRELESS_ENC_KEY} ? 0700 : 0755, $file; #- hide WEP key for non-root users
- log::explanations("written $intf->{DEVICE} interface configuration in $file");
-}
-
-sub write_interface_conf {
- my ($net, $name) = @_;
-
- my $file = "$::prefix/etc/sysconfig/network-scripts/ifcfg-$name";
- #- prefer ifcfg-XXX files
- unlink("$::prefix/etc/sysconfig/network-scripts/$name");
-
- my $intf = $net->{ifcfg}{$name};
-
- require network::ethernet;
- my (undef, $mac_address) = network::ethernet::get_eth_card_mac_address($intf->{DEVICE});
- $intf->{HWADDR} &&= $mac_address; #- set HWADDR to MAC address if required
-
- update_broadcast_and_network($intf);
- $intf->{ONBOOT} ||= bool2yesno(!member($intf->{DEVICE}, map { $_->{device} } detect_devices::pcmcia_probe()));
-
- defined($intf->{METRIC}) or $intf->{METRIC} = network::tools::get_default_metric(network::tools::get_interface_type($intf)),
- $intf->{BOOTPROTO} =~ s/dhcp.*/dhcp/;
-
- write_interface_settings($intf, $file);
-}
-
-sub write_wireless_conf {
- my ($ssid, $ifcfg) = @_;
- my $wireless_file = "$::prefix/etc/sysconfig/network-scripts/wireless.d/$ssid";
- write_interface_settings($ifcfg, $wireless_file);
- # FIXME: write only DHCP/IP settings here
- substInFile { $_ = '' if /^DEVICE=/ } $wireless_file;
-}
-
-sub add2hosts {
- my ($hostname, @ips) = @_;
- my ($sub_hostname) = $hostname =~ /(.*?)\./;
-
- my $file = "$::prefix/etc/hosts";
-
- my %l;
- foreach (cat_($file)) {
- my ($ip, $aliases) = /^\s*(\S+)\s+(\S+.*)$/ or next;
- push @{$l{$ip}}, difference2([ split /\s+/, $aliases ], [ $hostname, $sub_hostname ]);
- } cat_($file);
-
- unshift @{$l{$_}}, $hostname, if_($sub_hostname, $sub_hostname) foreach grep { $_ } @ips;
-
- log::explanations("writing host information to $file");
- output($file, map { "$_\t\t" . join(" ", @{$l{$_}}) . "\n" } keys %l);
-}
-
-# The interface/gateway needs to be configured before this will work!
-sub guessHostname {
- my ($net, $intf_name) = @_;
-
- $net->{ifcfg}{$intf_name}{isUp} && dnsServers($net) or return 0;
- $net->{network}{HOSTNAME} && $net->{resolv}{DOMAINNAME} and return 1;
-
- write_resolv_conf($net);
-
- my $name = gethostbyaddr(Socket::inet_aton($net->{ifcfg}{$intf_name}{IPADDR}), Socket::AF_INET()) or log::explanations("reverse name lookup failed"), return 0;
-
- log::explanations("reverse name lookup worked");
-
- $net->{network}{HOSTNAME} ||= $name;
- 1;
-}
-
-sub addDefaultRoute {
- my ($net) = @_;
- c::addDefaultRoute($net->{network}{GATEWAY}) if $net->{network}{GATEWAY};
-}
-
-sub sethostname {
- my ($net) = @_;
- my $text;
- my $hostname = $net->{network}{HOSTNAME};
- syscall_("sethostname", $hostname, length $hostname) ? ($text="set sethostname to $hostname") : ($text="sethostname failed: $!");
- log::explanations($text);
-
- run_program::run("/usr/bin/run-parts", "--arg", $hostname, "/etc/sysconfig/network-scripts/hostname.d") unless $::isInstall;
-}
-
-sub resolv($) {
- my ($name) = @_;
- is_ip($name) and return $name;
- my $a = join(".", unpack "C4", (gethostbyname $name)[4]);
- #-log::explanations("resolved $name in $a");
- $a;
-}
-
-sub dnsServers {
- my ($net) = @_;
- #- FIXME: that's weird
- my %used_dns; @used_dns{$net->{network}{dnsServer}, $net->{network}{dnsServer2}, $net->{network}{dnsServer3}} = (1, 2, 3);
- sort { $used_dns{$a} <=> $used_dns{$b} } grep { $_ } keys %used_dns;
-}
-
-sub findIntf {
- my ($net, $device) = @_;
- $net->{ifcfg}{$device}{DEVICE} = undef;
- $net->{ifcfg}{$device};
-}
-
-my $ip_regexp = qr/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/;
-
-sub is_ip {
- my ($ip) = @_;
- my @fields = $ip =~ $ip_regexp or return;
- every { 0 <= $_ && $_ <= 255 } @fields or return;
- @fields;
-}
-
-sub ip_compare {
- my ($ip1, $ip2) = @_;
- my (@ip1_fields) = $ip1 =~ $ip_regexp;
- my (@ip2_fields) = $ip2 =~ $ip_regexp;
-
- every { $ip1_fields[$_] eq $ip2_fields[$_] } (0 .. 3);
-}
-
-sub is_ip_forbidden {
- my ($ip) = @_;
- my @forbidden = ('127.0.0.1', '255.255.255.255');
-
- any { ip_compare($ip, $_) } @forbidden;
-}
-
-sub is_domain_name {
- my ($name) = @_;
- my @fields = split /\./, $name;
- $name !~ /\.$/ && @fields > 0 && @fields == grep { /^[[:alnum:]](?:[\-[:alnum:]]{0,61}[[:alnum:]])?$/ } @fields;
-}
-
-sub netmask {
- my ($ip) = @_;
- return "255.255.255.0" unless is_ip($ip);
- $ip =~ $ip_regexp or warn "IP_regexp failed\n" and return "255.255.255.0";
- if ($1 >= 1 && $1 < 127) {
- "255.0.0.0"; #-1.0.0.0 to 127.0.0.0
- } elsif ($1 >= 128 && $1 <= 191) {
- "255.255.0.0"; #-128.0.0.0 to 191.255.0.0
- } elsif ($1 >= 192 && $1 <= 223) {
- "255.255.255.0";
- } else {
- "255.255.255.255"; #-experimental classes
- }
-}
-
-sub masked_ip {
- my ($ip) = @_;
- my @ip = is_ip($ip) or return '';
- my @mask = netmask($ip) =~ $ip_regexp;
- for (my $i = 0; $i < @ip; $i++) {
- $ip[$i] &= int $mask[$i];
- }
- join(".", @ip);
-}
-
-sub dns {
- my ($ip) = @_;
- my @masked = masked_ip($ip) =~ $ip_regexp;
- $masked[3] = 2;
- join(".", @masked);
-
-}
-
-sub gateway {
- my ($ip) = @_;
- my @masked = masked_ip($ip) =~ $ip_regexp;
- $masked[3] = 1;
- join(".", @masked);
-}
-
-
-sub netprofile_set {
- my ($net, $profile) = @_;
- $net->{PROFILE} = $profile;
- system('/sbin/set-netprofile', $net->{PROFILE});
- log::explanations(qq(Switching to "$net->{PROFILE}" profile));
-}
-
-sub netprofile_save {
- my ($net) = @_;
- system('/sbin/save-netprofile', $net->{PROFILE});
- log::explanations(qq(Saving "$net->{PROFILE}" profile));
-}
-
-sub netprofile_delete {
- my ($profile) = @_;
- return if !$profile || $profile eq "default";
- rm_rf("$::prefix/etc/netprofile/profiles/$profile");
- log::explanations(qq(Deleting "$profile" profile));
-}
-
-sub netprofile_add {
- my ($net, $profile) = @_;
- return if !$profile || $profile eq "default" || member($profile, netprofile_list());
- system('/sbin/clone-netprofile', $net->{PROFILE}, $profile);
- log::explanations(qq("Creating "$profile" profile));
-}
-
-sub netprofile_list() {
- map { if_(m!([^/]*)/$!, $1) } glob("$::prefix/etc/netprofile/profiles/*/");
-}
-
-sub netprofile_read {
- my ($net) = @_;
- my $config = { getVarsFromSh("$::prefix/etc/netprofile/current") };
- $net->{PROFILE} = $config->{PROFILE} || 'default';
-}
-
-
-sub miscellaneous_choose {
- my ($in, $u) = @_;
-
- my $use_http_for_https = $u->{https_proxy} eq $u->{http_proxy};
- $in->ask_from(N("Proxies configuration"),
- N("Here you can set up your proxies configuration (eg: http://my_caching_server:8080)"),
- [ { label => N("HTTP proxy"), val => \$u->{http_proxy} },
- { text => N("Use HTTP proxy for HTTPS connections"), val => \$use_http_for_https, type => "bool" },
- { label => N("HTTPS proxy"), val => \$u->{https_proxy}, disabled => sub { $use_http_for_https } },
- { label => N("FTP proxy"), val => \$u->{ftp_proxy} },
- ],
- complete => sub {
- $use_http_for_https and $u->{https_proxy} = $u->{http_proxy};
- $u->{http_proxy} =~ m,^($|http://), or $in->ask_warn('', N("Proxy should be http://...")), return 1,0;
- $u->{https_proxy} =~ m,^($|http://), or $in->ask_warn('', N("Proxy should be https?://...")), return 1,2;
- $u->{ftp_proxy} =~ m,^($|ftp://|http://), or $in->ask_warn('', N("URL should begin with 'ftp:' or 'http:'")), return 1,3;
- 0;
- }
- ) or return;
- 1;
-}
-
-sub proxy_configure {
- my ($u) = @_;
- my $sh_file = "$::prefix/etc/profile.d/proxy.sh";
- setExportedVarsInSh($sh_file, $u, qw(http_proxy https_proxy ftp_proxy));
- chmod 0755, $sh_file;
- my $csh_file = "$::prefix/etc/profile.d/proxy.csh";
- setExportedVarsInCsh($csh_file, $u, qw(http_proxy https_proxy ftp_proxy));
- chmod 0755, $csh_file;
-
- #- KDE proxy settings
- my $kde_config_dir = "$::prefix/usr/share/config";
- my $kde_config_file = "$kde_config_dir/kioslaverc";
- if (-d $kde_config_dir) {
- update_gnomekderc($kde_config_file,
- undef,
- PersistentProxyConnection => "false"
- );
- update_gnomekderc($kde_config_file,
- "Proxy Settings",
- AuthMode => 0,
- ProxyType => $u->{http_proxy} || $u->{https_proxy} || $u->{ftp_proxy} ? 4 : 0,
- ftpProxy => "ftp_proxy",
- httpProxy => "http_proxy",
- httpsProxy => "https_proxy"
- );
- }
-
- #- Gnome proxy settings
- if (-d "$::prefix/etc/gconf/2/") {
- my $defaults_dir = "/etc/gconf/gconf.xml.local-defaults";
- my $p_defaults_dir = "$::prefix$defaults_dir";
- my $p_defaults_path = "$::prefix/etc/gconf/2/local-defaults.path";
- -r $p_defaults_path or output_with_perm($p_defaults_path, 0755, qq(
-# System local settings
-xml:readonly:$defaults_dir
-));
- -d $p_defaults_dir or mkdir $p_defaults_dir, 0755;
-
- my $use_alternate_proxy;
- my $gconf_set = sub {
- my ($key, $type, $value) = @_;
- #- gconftool-2 is available since /etc/gconf/2/ exists
- system("gconftool-2", "--config-source=xml::$p_defaults_dir", "--direct", "--set", "--type=$type", $key, $value);
- };
-
- #- http proxy
- if (my ($user, $password, $host, $port) = $u->{http_proxy} =~ m,^http://(?:([^:\@]+)(?::([^:\@]+))?\@)?([^\:]+)(?::(\d+))?$,) {
- $port ||= 80;
- $gconf_set->("/system/http_proxy/use_http_proxy", "bool", 1);
- $gconf_set->("/system/http_proxy/host", "string", $host);
- $gconf_set->("/system/http_proxy/port", "int", $port);
- $gconf_set->("/system/http_proxy/use_authentication", "bool", to_bool($user));
- $user and $gconf_set->("/system/http_proxy/authentication_user", "string", $user);
- $password and $gconf_set->("/system/http_proxy/authentication_password", "string", $password);
- } else {
- $gconf_set->("/system/http_proxy/use_http_proxy", "bool", 0);
- }
-
- #- https proxy
- if (my ($host, $port) = $u->{https_proxy} =~ m,^https?://(?:[^:\@]+(?::[^:\@]+)?\@)?([^\:]+)(?::(\d+))?$,) {
- $port ||= 443;
- $gconf_set->("/system/proxy/secure_host", "string", $host);
- $gconf_set->("/system/proxy/secure_port", "int", $port);
- $use_alternate_proxy = 1;
- } else {
- #- clear the ssl host so that it isn't used if the manual proxy is activated for ftp
- $gconf_set->("/system/proxy/secure_host", "string", "");
- }
-
- #- ftp proxy
- if (my ($host, $port) = $u->{ftp_proxy} =~ m,^(?:http|ftp)://(?:[^:\@]+(?::[^:\@]+)?\@)?([^\:]+)(?::(\d+))?$,) {
- $port ||= 21;
- $gconf_set->("/system/proxy/ftp_host", "string", $host);
- $gconf_set->("/system/proxy/ftp_port", "int", $port);
- $use_alternate_proxy = 1;
- } else {
- #- clear the ftp host so that it isn't used if the manual proxy is activated for ssl
- $gconf_set->("/system/proxy/ftp_host", "string", "");
- }
-
- #- set proxy mode to manual if either https or ftp is used
- $gconf_set->("/system/proxy/mode", "string", $use_alternate_proxy ? "manual" : "none");
-
- #- make gconf daemons reload their settings
- system("killall -s HUP gconfd-2");
- }
-}
-
-sub read_net_conf {
- my ($net) = @_;
- add2hash($net->{network} ||= {}, read_conf($::prefix . $network_file));
- add2hash($net->{resolv} ||= {}, read_resolv_conf());
- add2hash($net->{zeroconf} ||= {}, read_zeroconf());
-
- foreach (all("$::prefix/etc/sysconfig/network-scripts")) {
- my ($device) = /^ifcfg-([A-Za-z0-9.:_-]+)$/;
- next if $device =~ /.rpmnew$|.rpmsave$/;
- if ($device && $device ne 'lo') {
- my $intf = findIntf($net, $device);
- add2hash($intf, { getVarsFromSh("$::prefix/etc/sysconfig/network-scripts/$_") });
- $intf->{DEVICE} ||= $device;
- }
- }
- $net->{wireless} ||= {};
- foreach (all("$::prefix/etc/sysconfig/network-scripts/wireless.d")) {
- $net->{wireless}{$_} = { getVarsFromSh("$::prefix/etc/sysconfig/network-scripts/wireless.d/$_") };
- }
- netprofile_read($net);
- if (my $default_intf = network::tools::get_default_gateway_interface($net)) {
- $net->{net_interface} = $default_intf;
- $net->{type} = network::tools::get_interface_type($net->{ifcfg}{$default_intf});
- }
-}
-
-#- FIXME: this is buggy, use network::tools::get_default_gateway_interface
-sub probe_netcnx_type {
- my ($net) = @_;
- #- try to probe $netcnx->{type} which is used almost everywhere.
- unless ($net->{type}) {
- #- ugly hack to determine network type (avoid saying not configured in summary).
- -e "$::prefix/etc/ppp/peers/adsl" and $net->{type} ||= 'adsl'; # enough ?
- -e "$::prefix/etc/ppp/ioptions1B" || -e "$::prefix/etc/ppp/ioptions2B" and $net->{type} ||= 'isdn'; # enough ?
- $net->{ifcfg}{ppp0} and $net->{type} ||= 'modem';
- $net->{ifcfg}{eth0} and $net->{type} ||= 'lan';
- }
-}
-
-sub easy_dhcp {
- my ($net, $modules_conf) = @_;
-
- return if text2bool($net->{network}{NETWORKING});
-
- require modules;
- require network::ethernet;
- modules::load_category($modules_conf, list_modules::ethernet_categories());
- my @all_dev = sort map { $_->[0] } network::ethernet::get_eth_cards($modules_conf);
-
- #- only for a single ethernet network card
- my @ether_dev = grep { /^eth[0-9]+$/ && `LC_ALL= LANG= $::prefix/sbin/ip -o link show $_ 2>/dev/null` =~ m|\slink/ether\s| } @all_dev;
- @ether_dev == 1 or return;
-
- my $dhcp_intf = $ether_dev[0];
- log::explanations("easy_dhcp: found $dhcp_intf");
-
- put_in_hash($net->{network}, {
- NETWORKING => "yes",
- DHCP => "yes",
- NET_DEVICE => $dhcp_intf,
- NET_INTERFACE => $dhcp_intf,
- });
- $net->{ifcfg}{$dhcp_intf} ||= {};
- put_in_hash($net->{ifcfg}{$dhcp_intf}, {
- DEVICE => $dhcp_intf,
- BOOTPROTO => 'dhcp',
- NETMASK => '255.255.255.0',
- ONBOOT => 'yes'
- });
- $net->{type} = 'lan';
- $net->{net_interface} = $dhcp_intf;
-
- 1;
-}
-
-sub configure_network {
- my ($net, $in, $modules_conf) = @_;
- if (!$::testing) {
- require network::ethernet;
- network::ethernet::configure_eth_aliases($modules_conf);
-
- write_network_conf($net);
- write_resolv_conf($net);
- if ($::isInstall && ! -e "/etc/resolv.conf") {
- #- symlink resolv.conf in install root too so that updates and suppl media can be added
- symlink "$::prefix/etc/resolv.conf", "/etc/resolv.conf";
- }
- foreach (keys %{$net->{ifcfg}}) {
- write_interface_conf($net, $_);
- my $ssid = $net->{ifcfg}{$_}{WIRELESS_ESSID} or next;
- write_wireless_conf($ssid, $net->{ifcfg}{$_});
- }
- network::ethernet::install_dhcp_client($in, $_->{DHCP_CLIENT}) foreach grep { $_->{BOOTPROTO} eq "dhcp" } values %{$net->{ifcfg}};
- add2hosts("localhost", "127.0.0.1");
- add2hosts($net->{network}{HOSTNAME}, "127.0.0.1") if $net->{network}{HOSTNAME};
- write_zeroconf($net, $in);
-
- any { $_->{BOOTPROTO} =~ /^(pump|bootp)$/ } values %{$net->{ifcfg}} and $in->do_pkgs->install('pump');
-
- require network::shorewall;
- network::shorewall::update_interfaces_list();
-
- $net->{network}{HOSTNAME} && !$::isInstall and sethostname($net);
- }
-
- #- make net_applet reload the configuration
- my $pid = chomp_(`pidof -x net_applet`);
- $pid and kill 1, $pid;
-}
-
-1;
diff --git a/perl-install/network/pxe.pm b/perl-install/network/pxe.pm
deleted file mode 100644
index 1bc625ad0..000000000
--- a/perl-install/network/pxe.pm
+++ /dev/null
@@ -1,286 +0,0 @@
-package network::pxe;
-
-use common;
-use network::tools;
-use Xconfig::resolution_and_depth;
-
-our $tftp_root = "/var/lib/tftpboot";
-my $client_path = '/X86PC/linux';
-our $pxelinux_client_root = $tftp_root . $client_path;
-our $pxelinux_images = $pxelinux_client_root . '/images';
-our $pxelinux_help_file = $pxelinux_client_root . '/help.txt';
-our $pxelinux_message_file = $pxelinux_client_root . '/messages';
-my $pxelinux_config_root = $pxelinux_client_root . '/pxelinux.cfg';
-our $pxelinux_config_file = $pxelinux_config_root . '/default';
-our $pxe_config_file = '/etc/pxe.conf';
-
-my @global_pxelinux_settings = qw(PROMPT DEFAULT DISPLAY TIMEOUT F1);
-my @append_settings = qw(initrd ramdisk_size vga display auto_install);
-my @automatic_settings = qw(method interface network server directory);
-
-our %vga_bios_to_resolution = (
- 'normal' => "vga",
- 'text' => "text",
- '' => "automatic",
- map { $_->{bios} => "$_->{X}x$_->{Y}" } grep { $_->{Depth} == 16 } Xconfig::resolution_and_depth::bios_vga_modes()
- );
-our %vga_resolution_to_bios = reverse %vga_bios_to_resolution;
-
-sub read_pxelinux_help {
- my ($help_file) = @_;
- my %info;
- foreach (cat_($help_file)) {
- /^(\w+)\s*:\s*(.*)$/ and $info{$1} = $2;
- }
- \%info;
-}
-
-sub read_pxelinux_conf {
- my ($conf_file, $help_file) = @_;
- my (%conf);
- my $info = read_pxelinux_help($help_file);
- my $entry = {};
- foreach (cat_($conf_file)) {
- my $global = join('|', @global_pxelinux_settings);
- if (/^($global)\s+(.*)/) {
- $conf{lc($1)} = $2;
- } elsif (/^label\s+(.*)/) {
- $entry->{label} = $1;
- } elsif (/^\s+LOCALBOOT\s+(\d+)/) {
- $entry->{localboot} = $1;
- } elsif (/^\s+KERNEL\s+(.*)/) {
- $entry->{kernel} = $1;
- } elsif (/^\s+APPEND\s+(.*)/) {
- my @others;
- foreach (split /\s+/, $1) {
- my ($option, $value) = /^(.+?)(?:=(.*))?$/;
- if (member($option, @append_settings)) {
- $entry->{$option} = $value;
- } elsif ($option eq 'automatic') {
- foreach (split /,/, $value) {
- my ($option, $value) = /^(.+?):(.+)$/;
- $entry->{$option} = $value;
- }
- } else {
- push @others, $_;
- }
- }
- $entry->{others} = join(' ', @others);
- }
- if (exists $entry->{label} && (exists $entry->{localboot} || exists $entry->{kernel} && exists $entry->{initrd})) {
- $entry->{info} = $info->{$entry->{label}};
- push @{$conf{entries}}, $entry;
- $entry = {};
- }
- }
- \%conf;
-}
-
-
-sub list_pxelinux_labels {
- my ($conf) = @_;
- map { $_->{label} } @{$conf->{entries}};
-}
-
-sub write_pxelinux_conf {
- my ($conf, $conf_file) = @_;
-
- output($conf_file,
- join("\n",
- "# DO NOT EDIT auto_generated by drakpxelinux.pl",
- (map { $_ . ' ' . $conf->{lc($_)} } @global_pxelinux_settings),
- '',
- (map {
- my $e = $_;
- my $automatic = join(',', map { "$_:$e->{$_}" } grep { $e->{$_} } @automatic_settings);
- ("label $e->{label}",
- exists $e->{localboot} ?
- " LOCALBOOT $e->{localboot}" :
- (" KERNEL $e->{kernel}",
- " APPEND " . join(' ',
- (map { "$_=$e->{$_}" } grep { $e->{$_} } @append_settings),
- if_($automatic, "automatic=$automatic"),
- $e->{others})),
- '');
- } @{$conf->{entries}})));
-}
-
-sub write_default_pxe_messages {
- my ($net) = @_;
- my $hostname = $net->{hostname} || chomp_(`hostname`);
- output($pxelinux_message_file, <<EOF);
-
- Welcome to Mandriva Linux PXE Server
- Pxelinux
- . .-----------------------------------.
- /|\\ / Press F1 for available images \\
- /_|_\\ \\ Hosted by $hostname
- \\ | / _ /'-----------------------------------'
- \\|/ (') /
- '. U / (O__
- . '. / (o_ (o_ (0_ //\\
- {o_ (o_ (o_ (o_ (o_ //\\ //\\ //\\ // )
- (')_ (`)_ (/)_ (/)_ (/)_ V_/_ V_/_ V_/_ V__/_
- ---------------------------------------------------------
-
- press F1 for help
-EOF
-}
-
-sub write_default_pxe_help() {
- output($pxelinux_help_file, <<EOF);
-Available images are:
----------------------
-local: local boot
-EOF
-}
-
-sub add_in_help {
- my ($NAME, $INFO) = @_;
- if (!any { /$NAME/ } cat_($pxelinux_help_file)) {
- append_to_file($pxelinux_help_file, <<EOF);
-$NAME : $INFO
-EOF
-
- } else {
- substInFile {
- s/$NAME.*/$NAME : $INFO/;
- } $pxelinux_help_file;
- }
-}
-
-sub change_label_in_help {
- my ($NAMEOLD, $NEWNAME) = @_;
- substInFile {
- s/$NAMEOLD\s(.*)/$NEWNAME $1/;
- } $pxelinux_help_file;
-}
-
-# remove entry in help.txt
-sub remove_in_help {
- my ($NAME) = @_;
- substInFile {
- s/^$NAME\s:.*//x;
- s/^\s*$//;
- } $pxelinux_help_file;
-}
-
-# adjust pxe confi with good value
-sub write_pxe_conf {
- my ($net, $interface) = @_;
- if (!-f "$pxe_config_file.orig") { cp_af($pxe_config_file, "$pxe_config_file.orig") }
- my $domainname = $net->{resolv}{domainname} || chomp_(`dnsdomainname`);
- my $ip_address = network::tools::get_interface_ip_address($net, $interface);
-
- substInFile {
- s/default_address.*/default_address=$ip_address/;
- s/mtftp_address.*/mtftp_address=$ip_address/;
- s/domain.*/domain=$domainname/;
- } $pxe_config_file;
-}
-
-
-sub get_pxelinux_config_file_for_mac_address {
- my ($mac_address) = @_;
- #- 01 is the hardware type: Ethernet (ARP type 1)
- $pxelinux_config_root . "/" . join('-', '01', split(/:/, $mac_address));
-}
-
-sub set_profile_for_mac_address {
- my ($profile, $to_install, $mac_address) = @_;
- if ($profile) {
- symlinkf("profiles/" . ($to_install ? "install/" : "boot/") . $profile, get_pxelinux_config_file_for_mac_address($mac_address));
- } else {
- unlink get_pxelinux_config_file_for_mac_address($mac_address);
- }
-}
-
-#- returns (profile_type, profile_name)
-sub profile_from_file {
- my ($file) = @_;
- $file =~ m!(?:^|/)profiles/(\w+)/(.*)?$!;
-}
-
-sub read_profiles() {
- my %profiles_conf;
-
- foreach (all($pxelinux_config_root)) {
- my $file = $pxelinux_config_root . '/' . $_;
- if (-l $file && /^01(?:-([0-9a-z]{2}))+$/) {
- #- per MAC address settings
- #- the filename looks like 01-aa-bb-cc-dd-ee-ff
- #- where AA:BB:CC:DD:EE:FF is the MAC address
- my ($type, $name) = profile_from_file(readlink($file));
- tr/-/:/;
- my $mac_address = substr($_, 3);
- $profiles_conf{per_mac}{$mac_address} = { profile => $name, to_install => $type eq 'install' };
- }
- }
-
- foreach my $type (qw(boot install)) {
- my $root = $pxelinux_config_root . '/profiles/' . $type;
- mkdir_p($root);
- $profiles_conf{profiles}{$type}{$_} = 1 foreach all($root);
- }
-
- \%profiles_conf;
-}
-
-#- returns (pxelinux entries file, help file)
-sub get_pxelinux_profile_path {
- my ($profile, $type) = @_;
- my $root = $pxelinux_config_root . '/profiles/' . $type;
- "$root/$profile", "$root/help-$profile.txt";
-}
-
-sub list_profiles {
- my ($profiles_conf) = @_;
- sort(uniq(map { keys %{$profiles_conf->{profiles}{$_}} } qw(boot install)));
-}
-
-sub profile_exists {
- my ($profiles_conf, $profile) = @_;
- member($profile, network::pxe::list_profiles($profiles_conf));
-}
-
-sub find_next_profile_name {
- my ($profiles_conf, $prefix) = @_;
- my $i;
- /^$prefix(\d*)$/ && $1 >= $i and $i = $1 + 1 foreach network::pxe::list_profiles($profiles_conf);
- "$prefix$i";
-}
-
-sub add_empty_profile {
- my ($profiles_conf, $profile, $to_install) = @_;
- $to_install and $profiles_conf->{profiles}{install}{$profile} = 1;
- $profiles_conf->{profiles}{boot}{$profile} = 1;
-}
-
-sub copy_profile_for_type {
- my ($profile, $clone, $type) = @_;
- my ($pxe, $help) = get_pxelinux_profile_path($profile, $type);
- my ($clone_pxe, $clone_help) = get_pxelinux_profile_path($clone, $type);
- -r $pxe and cp_f($pxe, $clone_pxe);
- -r $help and cp_f($help, $clone_help);
-}
-
-sub clone_profile {
- my ($profiles_conf, $profile) = @_;
- my $clone = find_next_profile_name($profiles_conf, $profile);
- if (exists $profiles_conf->{profiles}{install}{$profile}) {
- $profiles_conf->{profiles}{install}{$clone} = 1;
- copy_profile_for_type($profile, $clone, 'install');
- }
- $profiles_conf->{profiles}{boot}{$clone} = 1;
- copy_profile_for_type($profile, $clone, 'boot');
-}
-
-sub remove_profile {
- my ($profiles_conf, $profile) = @_;
- foreach my $type (qw(boot install)) {
- delete $profiles_conf->{profiles}{$type}{$profile};
- unlink(get_pxelinux_profile_path($profile, $type));
- }
-}
-
-1;
diff --git a/perl-install/network/shorewall.pm b/perl-install/network/shorewall.pm
deleted file mode 100644
index 2567b4881..000000000
--- a/perl-install/network/shorewall.pm
+++ /dev/null
@@ -1,172 +0,0 @@
-package network::shorewall; # $Id$
-
-use detect_devices;
-use network::ethernet;
-use network::network;
-use run_program;
-use common;
-use log;
-
-sub check_iptables() {
- -f "$::prefix/etc/sysconfig/iptables" ||
- $::isStandalone && do {
- system('modprobe iptable_nat');
- -x '/sbin/iptables' && listlength(`/sbin/iptables -t nat -nL`) > 8;
- };
-}
-
-sub set_config_file {
- my ($file, @l) = @_;
-
- my $done;
- substInFile {
- if (!$done && (/^#LAST LINE/ || eof)) {
- $_ = join('', map { join("\t", @$_) . "\n" } @l) . $_;
- $done = 1;
- } else {
- $_ = '' if /^[^#]/;
- }
- } "$::prefix/etc/shorewall/$file";
-}
-
-sub get_config_file {
- my ($file) = @_;
- map { [ split ' ' ] } grep { !/^#/ } cat_("$::prefix/etc/shorewall/$file");
-}
-
-sub get_ifcfg_interface() {
- my $net = {};
- network::network::read_net_conf($net);
- network::tools::get_default_gateway_interface($net);
-}
-
-sub dev_to_shorewall {
- my ($dev) = @_;
- $dev =~ /^ippp/ && "ippp+" ||
- $dev =~ /^ppp/ && "ppp+" ||
- $dev;
-}
-
-sub get_shorewall_interface() {
- #- read shorewall configuration first
- foreach (get_config_file('interfaces')) {
- $_->[0] eq 'net' and return $_->[1];
- }
- #- else try to find the best interface available
- dev_to_shorewall(get_ifcfg_interface());
-}
-
-our $ask_shorewall_interface_label = N_("Please enter the name of the interface connected to the internet.
-
-Examples:
- ppp+ for modem or DSL connections,
- eth0, or eth1 for cable connection,
- ippp+ for a isdn connection.
-");
-
-sub shorewall_interface_choices {
- my ($refval) = @_;
- my $modules_conf = modules::any_conf->read;
- my @all_cards = network::ethernet::get_eth_cards($modules_conf);
- my %net_devices = network::ethernet::get_eth_cards_names(@all_cards);
- put_in_hash(\%net_devices, { 'ppp+' => 'ppp+', 'ippp+' => 'ippp+' });
-
- [ { label => N("Net Device"), val => $refval, list => [ sort keys %net_devices ], format => sub { $net_devices{$_[0]} || $_[0] }, not_edit => 0 } ];
-}
-
-sub read_default_interfaces {
- my ($conf, $o_in) = @_;
- my $interface = get_shorewall_interface();
- $o_in and $o_in->ask_from('', translate($ask_shorewall_interface_label), shorewall_interface_choices(\$interface));
- set_net_interface($conf, $interface);
-}
-
-sub set_net_interface {
- my ($conf, $interface) = @_;
- $conf->{net_interface} = $interface;
- my $net = {};
- network::network::read_net_conf($net);
- my @all_intf = uniq((map { dev_to_shorewall($_) } keys %{$net->{ifcfg}}), detect_devices::getNet());
- #- keep all other interfaces (but alias interfaces) in local zone
- $conf->{loc_interface} = [ grep { !/:/ && $_ ne $interface } @all_intf ];
-}
-
-sub read {
- my ($o_in) = @_;
- my @rules = get_config_file('rules');
- my %conf = (disabled => !glob_("$::prefix/etc/rc3.d/S*shorewall"),
- ports => join(' ', map {
- my $e = $_;
- map { "$_/$e->[3]" } split(',', $e->[4]);
- } grep { $_->[0] eq 'ACCEPT' && $_->[1] eq 'net' } @rules),
- );
- $conf{redirects}{$_->[3]}{$_->[2]} = $_->[4] foreach grep { $_->[0] eq 'REDIRECT' } @rules;
-
- if (my ($e) = get_config_file('masq')) {
- $conf{masq_subnet} = $e->[1];
- }
- read_default_interfaces(\%conf, $o_in);
- $conf{net_interface} && \%conf;
-}
-
-sub ports_by_proto {
- my ($ports) = @_;
- my %ports_by_proto;
- foreach (split ' ', $ports) {
- m!^(\d+(?::\d+)?)/(udp|tcp|icmp)$! or die "bad port $_\n";
- push @{$ports_by_proto{$2}}, $1;
- }
- \%ports_by_proto;
-}
-
-sub write {
- my ($conf) = @_;
- my $default_intf = get_ifcfg_interface();
- my $use_pptp = $default_intf =~ /^ppp/ && cat_("$::prefix/etc/ppp/peers/$default_intf") =~ /pptp/;
- my $ports_by_proto = ports_by_proto($conf->{ports});
-
- my $interface_settings = sub {
- my ($zone, $interface) = @_;
- [ $zone, $interface, 'detect', if_(detect_devices::is_bridge_interface($interface), 'routeback') ];
- };
-
- set_config_file("zones",
- [ 'net', 'ipv4' ],
- if_($conf->{loc_interface}[0], [ 'loc', 'ipv4' ]),
- [ 'fw', 'firewall' ],
- );
- set_config_file('interfaces',
- $interface_settings->('net', $conf->{net_interface}),
- (map { $interface_settings->('loc', $_) } @{$conf->{loc_interface} || []}),
- );
- set_config_file('policy',
- if_($conf->{loc_interface}[0], [ 'loc', 'net', 'ACCEPT' ], [ 'loc', 'fw', 'ACCEPT' ], [ 'fw', 'loc', 'ACCEPT' ]),
- [ 'fw', 'net', 'ACCEPT' ],
- [ 'net', 'all', 'DROP', 'info' ],
- [ 'all', 'all', 'REJECT', 'info' ],
- );
- set_config_file('rules',
- if_($use_pptp, [ 'ACCEPT', 'fw', 'loc:10.0.0.138', 'tcp', '1723' ]),
- if_($use_pptp, [ 'ACCEPT', 'fw', 'loc:10.0.0.138', 'gre' ]),
- (map_each { [ 'ACCEPT', 'net', 'fw', $::a, join(',', @$::b), '-' ] } %$ports_by_proto),
- (map {
- map_each { [ 'REDIRECT', 'loc', $::a, $_, $::b, '-' ] } %{$conf->{redirects}{$_}};
- } keys %{$conf->{redirects}}),
- );
- set_config_file('masq', if_($conf->{masq_subnet}, [ $conf->{net_interface}, $conf->{masq_subnet} ]));
-
- require services;
- if ($conf->{disabled}) {
- services::disable('shorewall', $::isInstall);
- run_program::rooted($::prefix, '/sbin/shorewall', 'clear') unless $::isInstall;
- } else {
- services::enable('shorewall', $::isInstall);
- }
-}
-
-sub update_interfaces_list() {
- my $shorewall = network::shorewall::read();
- $shorewall && !$shorewall->{disabled} and network::shorewall::write($shorewall);
-}
-
-1;
diff --git a/perl-install/network/squid.pm b/perl-install/network/squid.pm
deleted file mode 100644
index 7ca60d2b6..000000000
--- a/perl-install/network/squid.pm
+++ /dev/null
@@ -1,73 +0,0 @@
-package network::squid;
-
-use strict;
-use common;
-
-our $squid_conf_file = "$::prefix/etc/squid/squid.conf";
-
-sub read_squid_conf {
- my ($o_file) = @_;
- my $s = cat_($o_file || $squid_conf_file);
- { http_port => [ $s =~ /^\s*http_port\s+(.*)/mg ],
- cache_size => [ if_($s =~ /^\s*cache_dir diskd\s+(.*)/mg, split(' ', $1)) ],
- admin_mail => [ if_($s =~ /^\s*err_html_text\s+(.*)/mg, split(' ', $1)) ] };
-}
-
-sub write_squid_conf {
- my ($squid_conf, $intf, $internal_domain_name) = @_;
-
- renamef($squid_conf_file, "$squid_conf_file.old");
- output($squid_conf_file, qq(
-http_port $squid_conf->{http_port}[0]
-hierarchy_stoplist cgi-bin ?
-acl QUERY urlpath_regex cgi-bin \\?
-no_cache deny QUERY
-cache_dir diskd /var/spool/squid $squid_conf->{cache_size}[1] 16 256
-cache_store_log none
-auth_param basic children 5
-auth_param basic realm Squid proxy-caching web server
-auth_param basic credentialsttl 2 hours
-refresh_pattern ^ftp: 1440 20% 10080
-refresh_pattern ^gopher: 1440 0% 1440
-refresh_pattern . 0 20% 4320
-half_closed_clients off
-acl all src 0.0.0.0/0.0.0.0
-acl manager proto cache_object
-acl localhost src 127.0.0.1/255.255.255.255
-acl to_localhost dst 127.0.0.0/8
-acl SSL_ports port 443 563
-acl Safe_ports port 80 # http
-acl Safe_ports port 21 # ftp
-acl Safe_ports port 443 563 # https, snews
-acl Safe_ports port 70 # gopher
-acl Safe_ports port 210 # wais
-acl Safe_ports port 1025-65535 # unregistered ports
-acl Safe_ports port 280 # http-mgmt
-acl Safe_ports port 488 # gss-http
-acl Safe_ports port 591 # filemaker
-acl Safe_ports port 777 # multiling http
-acl CONNECT method CONNECT
-http_access allow manager localhost
-http_access deny manager
-http_access deny !Safe_ports
-http_access deny CONNECT !SSL_ports
-http_access deny to_localhost
-acl mynetwork src $intf->{NETWORK}/$intf->{NETMASK}
-http_access allow mynetwork
-http_access allow localhost
-http_reply_access allow all
-icp_access allow all
-visible_hostname $squid_conf->{visible_hostname}[0]
-httpd_accel_host virtual
-httpd_accel_with_proxy on
-httpd_accel_uses_host_header on
-append_domain .$internal_domain_name
-err_html_text $squid_conf->{admin_mail}[0]
-deny_info ERR_CUSTOM_ACCESS_DENIED all
-memory_pools off
-coredump_dir /var/spool/squid
-ie_refresh on
-)) if !$::testing;
-}
-
-1;
diff --git a/perl-install/network/test.pm b/perl-install/network/test.pm
deleted file mode 100644
index ec680b7a3..000000000
--- a/perl-install/network/test.pm
+++ /dev/null
@@ -1,158 +0,0 @@
-package network::test; # $Id$
-
-use strict;
-use common;
-use run_program;
-use Socket;
-
-sub new {
- my ($class, $o_hostname) = @_;
- bless {
- hostname => $o_hostname || "www.mandriva.com"
- }, $class;
-}
-
-#- launch synchronous test, will hang until the test finishes
-sub test_synchronous {
- my ($o) = @_;
- ($o->{address}, $o->{ping}) = resolve_and_ping($o->{hostname});
- $o->{done} = 1;
-}
-
-#- launch asynchronous test, will not hang
-sub start {
- my ($o) = @_;
- $o->{done} = 0;
- $o->{kid} = bg_command->new(sub {
- my ($address, $ping) = resolve_and_ping($o->{hostname});
- print "$address|$ping\n";
- });
-}
-
-#- abort asynchronous test
-sub abort {
- my ($o) = @_;
- if ($o->{kid}) {
- kill -9, $o->{kid}{pid};
- undef $o->{kid};
- }
-}
-
-#- returns a true value if the test is finished, usefull for asynchronous tests
-sub is_done {
- my ($o) = @_;
- $o->update_status;
- to_bool($o->{done});
-}
-
-#- return a true value if the connection works (hostname resolution and ping)
-sub is_connected {
- my ($o) = @_;
- to_bool(defined($o->{hostname}) && defined($o->{ping}));
-}
-
-#- get hostname used in test for resolution and ping
-sub get_hostname {
- my ($o) = @_;
- $o->{hostname};
-}
-
-#- get resolved address (if any) of given hostname
-sub get_address {
- my ($o) = @_;
- $o->{address};
-}
-
-#- get ping (if any) to given hostname
-sub get_ping {
- my ($o) = @_;
- $o->{ping};
-}
-
-sub resolve_and_ping {
- my ($hostname) = @_;
- require Net::Ping;
- require Time::HiRes;
- my $p;
- if ($>) {
- $p = Net::Ping->new('tcp');
- # Try connecting to the www port instead of the echo port
- $p->{port_num} = getservbyname('http', 'tcp');
- } else {
- $p = Net::Ping->new('icmp');
- }
- $p->hires; #- get ping as float
- #- default timeout is 5 seconds
- my ($ret, $ping, $address) = $p->ping($hostname, 5);
- if ($ret) {
- return $address, $ping;
- } elsif (defined($ret)) {
- return $address;
- }
-}
-
-sub update_status {
- my ($o) = @_;
- if ($o->{kid}) {
- my $fd = $o->{kid}{fd};
- fcntl($fd, c::F_SETFL(), c::O_NONBLOCK()) or die "can not fcntl F_SETFL: $!";
- local $| = 1;
- if (defined(my $output = <$fd>)) {
- ($o->{address}, $o->{ping}) = $output =~ /^([\d\.]+)\|([\d\.,]+)*$/;
- $o->{done} = 1;
- undef $o->{kid};
- }
- }
-}
-
-1;
-
-=head1 network::test
-
-=head2 Test synchronously
-
-#- resolve and get ping to hostname from command line if given, else to www.mandriva.com
-use lib qw(/usr/lib/libDrakX);
-use network::test;
-
-my $net_test = network::test->new($ARGV[0]);
-$net_test->test_synchronous;
-
-my $is_connected = $net_test->is_connected;
-my $hostname = $net_test->get_hostname;
-my $address = $net_test->get_address;
-my $ping = $net_test->get_ping;
-
-print "connected: $is_connected
-host: $hostname
-resolved host: $address
-ping to host: $ping
-";
-
-=head2 Test asynchronously
-
-#- resolve and get ping to hostname from command line if given, else to Mandriva
-#- prints a "." every 10 miliseconds during connection test
-use lib qw(/usr/lib/libDrakX);
-use network::test;
-
-my $net_test = network::test->new($ARGV[0]);
-$net_test->start;
-
-do {
- print ".\n";
- select(undef, undef, undef, 0.01);
-} while !$net_test->is_done;
-
-my $is_connected = $net_test->is_connected;
-my $hostname = $net_test->get_hostname;
-my $address = $net_test->get_address;
-my $ping = $net_test->get_ping;
-
-print "connected: $is_connected
-host: $hostname
-resolved host: $address
-ping to host: $ping
-";
-
-=cut
diff --git a/perl-install/network/thirdparty.pm b/perl-install/network/thirdparty.pm
deleted file mode 100644
index b7b8c1e03..000000000
--- a/perl-install/network/thirdparty.pm
+++ /dev/null
@@ -1,517 +0,0 @@
-package network::thirdparty;
-
-use strict;
-use common;
-use detect_devices;
-use run_program;
-use services;
-use fs::get;
-use fs;
-use log;
-
-#- network_settings is an hash of categories (rtc, dsl, wireless, ...)
-#- each category is an hash of device settings
-
-#- a device settings element must have the following fields:
-#- o matching:
-#- specify if this settings element matches a driver
-#- can be a regexp, array ref or Perl code (parameters: driver)
-#- o description:
-#- full name of the device
-#- o name: name used by the packages
-
-#- the following fields are optional:
-#- o url:
-#- url where the user can find tools/drivers/firmwares for this device
-#- o device:
-#- device in /dev to be configured
-#- o post:
-#- command to be run after all packages are installed
-#- can be a shell command or Perl code
-#- o restart_service:
-#- if exists but not 1, name of the service to be restarted
-#- if 1, specify that the service named by the name field should be restarted
-#- o tools:
-#- hash of the tools settings
-#- test_file field required
-#- if package field doesn't exist, 'name' is used
-#- o kernel_module:
-#- if exists but not 1, hash of the module settings
-#- if 1, kernel modules are needed and use the name field
-#- (name-kernel or dkms-name)
-#- o firmware:
-#- hash of the firmware settings
-#- test_file field required
-#- if package field doesn't exist, 'name-firmware' is used
-
-#- hash of package settings structure:
-#- o package:
-#- name of the package to be installed for these device
-#- o test_file:
-#- file used to test if the package is installed
-#- o prefix:
-#- path of the files that are tested
-#- o links:
-#- useful links for this device
-#- can be a single link or array ref
-#- o user_install:
-#- function to call if the package installation fails
-#- o explanations:
-#- additionnal text to display if the installation fails
-#- o no_club:
-#- 1 if the package isn't available on Mandriva club
-
-my $firmware_directory = "/lib/firmware";
-
-my %network_settings = (
- rtc =>
- [
- {
- matching => qr/^Hcf:/,
- description => 'HCF 56k Modem',
- url => 'http://www.linuxant.com/drivers/hcf/',
- name => 'hcfpcimodem',
- kernel_module => {
- test_file => 'hcfpciengine',
- },
- tools =>
- {
- test_file => '/usr/sbin/hcfpciconfig',
- },
- device => '/dev/ttySHCF0',
- post => '/usr/sbin/hcfpciconfig --auto',
- restart_service => 'hcfpci',
- },
-
- {
- matching => qr/^Hsf:/,
- description => 'HSF 56k Modem',
- url => 'http://www.linuxant.com/drivers/hsf/',
- name => 'hsfmodem',
- kernel_module => {
- test_file => 'hsfengine',
- },
- tools =>
- {
- test_file => '/usr/sbin/hsfconfig',
- },
- device => '/dev/ttySHSF0',
- post => '/usr/sbin/hsfconfig --auto',
- restart_service => 'hsf',
- },
-
- {
- matching => qr/^LT:/,
- description => 'LT WinModem',
- url => 'http://www.heby.de/ltmodem/',
- name => 'ltmodem',
- kernel_module => 1,
- tools =>
- {
- test_file => '/etc/devfs/conf.d/ltmodem.conf',
- },
- device => '/dev/ttyS14',
- links =>
- [
- 'http://linmodems.technion.ac.il/Ltmodem.html',
- 'http://linmodems.technion.ac.il/packages/ltmodem/',
- ],
- },
-
- {
- matching => [ list_modules::category2modules('network/slmodem') ],
- description => 'Smartlink WinModem',
- url => 'http://www.smlink.com/content.aspx?id=135/',
- name => 'slmodem',
- kernel_module => 1,
- tools =>
- {
- test_file => '/usr/sbin/slmodemd',
- },
- device => '/dev/ttySL0',
- post => sub {
- my ($driver) = @_;
- addVarsInSh("$::prefix/etc/sysconfig/slmodemd", { SLMODEMD_MODULE => $driver });
- },
- restart_service => "slmodemd",
- },
-
- {
- matching => 'sm56',
- description => 'Motorola SM56 WinModem',
- url => 'http://www.motorola.com/softmodem/driver.htm#linux',
- name => 'sm56',
- kernel_module =>
- {
- package => 'sm56',
- },
- no_club => 1,
- device => '/dev/sm56',
- },
- ],
-
- wireless =>
- [
- {
- matching => 'zd1201',
- description => 'ZyDAS ZD1201',
- url => 'http://linux-lc100020.sourceforge.net/',
- firmware =>
- {
- test_file => 'zd1201*.fw',
- },
- },
-
- (map {
- {
- matching => "ipw${_}",
- description => "Intel(R) PRO/Wireless ${_}",
- url => "http://ipw${_}.sourceforge.net/",
- name => "ipw${_}",
- firmware =>
- {
- url => "http://ipw${_}.sourceforge.net/firmware.php",
- test_file => ($_ == 2100 ? "ipw2100-*.fw" : "ipw-2.3-*.fw"),
- },
- };
- } (2100, 2200)),
-
- {
- matching => 'prism54',
- description => 'Prism GT / Prism Duette / Prism Indigo Chipsets',
- url => 'http://prism54.org/',
- name => 'prism54',
- firmware =>
- {
- url => 'http://prism54.org/~mcgrof/firmware/',
- test_file => "isl38*",
- },
- },
-
- {
- matching => qr/^at76c50/,
- description => 'Atmel at76c50x cards',
- url => 'http://thekelleys.org.uk/atmel/',
- name => 'atmel',
- firmware =>
- {
- test_file => 'atmel_at76c50*',
- },
- links => 'http://at76c503a.berlios.de/',
- },
-
- {
- matching => 'ath_pci',
- description => 'Multiband Atheros Driver for WiFi',
- url => 'http://madwifi.sourceforge.net/',
- name => 'madwifi',
- kernel_module => 1,
- tools => {
- optionnal => 1,
- test_file => '/usr/bin/athstats',
- },
- },
- ],
-
- dsl =>
- [
- {
- matching => 'speedtouch',
- description => N_("Alcatel speedtouch USB modem"),
- url => "http://www.speedtouch.com/supuser.htm",
- name => 'speedtouch',
- tools =>
- {
- test_file => '/usr/sbin/modem_run',
- },
- firmware =>
- {
- package => 'speedtouch_mgmt',
- prefix => '/usr/share/speedtouch',
- test_file => 'mgmt*.o',
- explanations => N_("Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"),
- user_install => \&install_speedtouch_microcode,
- },
- links => 'http://linux-usb.sourceforge.net/SpeedTouch/mandrake/index.html',
- },
-
- {
- matching => 'eciadsl',
- name => 'eciadsl',
- explanations => N_("The ECI Hi-Focus modem cannot be supported due to binary driver distribution problem.
-
-You can find a driver on http://eciadsl.flashtux.org/"),
- no_club => 1,
- tools => {
- test_file => '/usr/sbin/pppoeci',
- },
- },
-
- {
- matching => 'sagem',
- description => 'Eagle chipset (from Analog Devices), e.g. Sagem F@st 800/840/908',
- url => 'http://www.eagle-usb.org/',
- name => 'eagle-usb',
- tools =>
- {
- test_file => '/sbin/eaglectrl',
- },
- },
-
- {
- matching => 'bewan',
- description => 'Bewan Adsl (Unicorn)',
- url => 'http://www.bewan.com/bewan/users/downloads/',
- name => 'unicorn',
- kernel_module => {
- test_file => 'unicorn_.*_atm',
- },
- tools => {
- optionnal => 1,
- test_file => '/usr/bin/bewan_adsl_status',
- },
- },
- ],
-);
-
-sub device_get_package {
- my ($settings, $option, $o_default) = @_;
- $settings->{$option} or return;
- my $package;
- if (ref $settings->{$option} eq 'HASH') {
- $package = $settings->{$option}{package} || 1;
- } else {
- $package = $settings->{$option};
- }
- $package == 1 ? $o_default || $settings->{name} : $package;
-}
-
-sub device_get_option {
- my ($settings, $option) = @_;
- $settings->{$option} or return;
- my $value = $settings->{$option};
- $value == 1 ? $settings->{name} : $value;
-}
-
-sub find_settings {
- my ($category, $driver) = @_;
- find {
- my $type = ref $_->{matching};
- $type eq 'Regexp' && $driver =~ $_->{matching} ||
- $type eq 'CODE' && $_->{matching}->($driver) ||
- $type eq 'ARRAY' && member($driver, @{$_->{matching}}) ||
- $driver eq $_->{matching};
- } @{$network_settings{$category}};
-}
-
-sub device_run_command {
- my ($settings, $driver, $option) = @_;
- my $command = $settings->{$option} or return;
-
- if (ref $command eq 'CODE') {
- $command->($driver);
- } else {
- log::explanations("Running $option command $command");
- run_program::rooted($::prefix, $command);
- }
-}
-
-sub warn_not_installed {
- my ($in, @packages) = @_;
- $in->ask_warn(N("Error"), N("Could not install the packages (%s)!", @packages));
-}
-
-sub warn_not_found {
- my ($in, $settings, $option, @packages) = @_;
- my %opt;
- $opt{$_} = $settings->{$option}{$_} || $settings->{$_} foreach qw(url explanations no_club);
- $in->ask_warn(N("Error"),
- N("Some packages (%s) are required but aren't available.", @packages) .
- (!$opt{no_club} && "\n" . N("These packages can be found in Mandriva Club or in Mandriva commercial releases.")) .
- ($option eq 'firmware' && "\n\n" . N("Info: ") . "\n" . N("due to missing %s", get_firmware_path($settings))) .
- ($opt{url} && "\n\n" . N("The required files can also be installed from this URL:
-%s", $opt{url})) .
- ($opt{explanations} && "\n\n" . translate($opt{explanations})));
-}
-
-sub is_file_installed {
- my ($settings, $option) = @_;
- my $file = exists $settings->{$option} && $settings->{$option}{test_file};
- $file && -e "$::prefix$file";
-}
-
-sub is_module_installed {
- my ($settings, $driver) = @_;
- my $module = ref $settings->{kernel_module} eq 'HASH' && $settings->{kernel_module}{test_file} || $driver;
- find { m!/$module\.k?o! } cat_("$::prefix/lib/modules/" . c::kernel_version() . '/modules.dep');
-}
-
-sub get_firmware_path {
- my ($settings) = @_;
- my $wildcard = exists $settings->{firmware} && $settings->{firmware}{test_file} or return;
- my $path = $settings->{firmware}{prefix} || $firmware_directory;
- "$::prefix$path/$wildcard";
-}
-
-sub is_firmware_installed {
- my ($settings) = @_;
- my $pattern = get_firmware_path($settings) or return;
- scalar glob_($pattern);
-}
-
-sub find_file_on_windows_system {
- my ($in, $file) = @_;
- my $source;
- require fsedit;
- my $all_hds = fsedit::get_hds();
- fs::get_info_from_fstab($all_hds);
- if (my $part = find { $_->{device_windobe} eq 'C' } fs::get::fstab($all_hds)) {
- foreach (qw(windows/system winnt/system windows/system32/drivers winnt/system32/drivers)) {
- -d $_ and $source = first(glob_("$part->{mntpoint}/$_/$file")) and last;
- }
- $source or $in->ask_warn(N("Error"), N("Unable to find \"%s\" on your Windows system!", $file));
- } else {
- $in->ask_warn(N("Error"), N("No Windows system has been detected!"));
- }
- { file => $source };
-}
-
-sub find_file_on_floppy {
- my ($in, $file) = @_;
- my $floppy = detect_devices::floppy();
- my $mountpoint = '/mnt/floppy';
- my $h;
- $in->ask_okcancel(N("Insert floppy"),
- N("Insert a FAT formatted floppy in drive %s with %s in root directory and press %s", $floppy, $file, N("Next"))) or return;
- if (eval { fs::mount::mount(devices::make($floppy), $mountpoint, 'vfat', 'readonly'); 1 }) {
- log::explanations("Mounting floppy device $floppy in $mountpoint");
- $h = before_leaving { fs::mount::umount($mountpoint) };
- if ($h->{file} = first(glob("$mountpoint/$file"))) {
- log::explanations("Found $h->{file} on floppy device");
- } else {
- log::explanations("Unabled to find $file on floppy device");
- }
- } else {
- $in->ask_warn(N("Error"), N("Floppy access error, unable to mount device %s", $floppy));
- log::explanations("Unable to mount floppy device $floppy");
- }
- $h;
-}
-
-sub install_speedtouch_microcode {
- my ($in) = @_;
- my $choice;
- $in->ask_from('',
- N("You need the Alcatel microcode.
-You can provide it now via a floppy or your windows partition,
-or skip and do it later."),
- [ { type => "list", val => \$choice, format => \&translate,
- list => [ N_("Use a floppy"), N_("Use my Windows partition") ] } ]) or return;
- my ($h, $source);
- if ($choice eq N_("Use a floppy")) {
- $source = 'mgmt*.o';
- $h = find_file_on_floppy($in, $source);
- } else {
- $source = 'alcaudsl.sys';
- $h = find_file_on_windows_system($in, $source);
- }
- unless (-e $h->{file} && cp_f($h->{file}, "$::prefix/usr/share/speedtouch/mgmt.o")) {
- $in->ask_warn(N("Error"), N("Firmware copy failed, file %s not found", $source));
- log::explanations("Firmware copy of $source ($h->{file}) failed");
- return;
- }
- log::explanations("Firmware copy of $h->{file} succeeded");
- $in->ask_warn(N("Congratulations!"), N("Firmware copy succeeded"));
- 1;
-}
-
-sub install_packages {
- my ($in, $settings, $driver, @options) = @_;
-
- foreach my $option (@options) {
- my %methods =
- (
- default =>
- {
- find_package_name => sub { device_get_package($settings, $option) },
- check_installed => sub { is_file_installed($settings, $option) },
- get_packages => sub { my ($name) = @_; $in->do_pkgs->is_available($name) },
- user_install => sub { my $f = $settings->{$option}{user_install}; $f && $f->($in) },
- },
- kernel_module =>
- {
- find_package_name => sub { device_get_package($settings, $option, "$settings->{name}-kernel") },
- check_installed => sub { is_module_installed($settings, $driver) },
- get_packages => sub { my ($name) = @_; my $l = $in->do_pkgs->check_kernel_module_packages($name); $l ? @$l : () }
- },
- firmware =>
- {
- find_package_name => sub { device_get_package($settings, $option, "$settings->{name}-firmware") },
- check_installed => sub { is_firmware_installed($settings) },
- },
- );
- my $get_method = sub { my ($method) = @_; exists $methods{$option} && $methods{$option}{$method} || $methods{default}{$method} };
-
- my $name = $get_method->('find_package_name')->();
- unless ($name) {
- log::explanations(qq(No $option package for module "$driver" is required, skipping));
- next;
- }
-
- if ($get_method->('check_installed')->()) {
- log::explanations(qq(Required $option package for module "$driver" is already installed, skipping));
- next;
- }
-
- if (my @packages = $get_method->('get_packages')->($name)) {
- log::explanations("Installing thirdparty packages ($option) " . join(', ', @packages));
- if (!$in->do_pkgs->install(@packages)) {
- next if ref $settings->{$option} eq 'HASH' && $settings->{$option}{optionnal};
- warn_not_installed($in, @packages);
- } elsif ($get_method->('check_installed')->()) {
- next;
- }
- }
- log::explanations("Thirdparty package $name ($option) is required but not available");
-
- unless ($get_method->('user_install')->($in)) {
- warn_not_found($in, $settings, $option, $name);
- return;
- }
- }
-
- 1;
-}
-
-sub setup_device {
- my ($in, $category, $driver, $o_config, @o_fields) = @_;
-
- my $settings = find_settings($category, $driver);
- if ($settings) {
- log::explanations(qq(Found settings for driver "$driver" in category "$category"));
-
- my $wait = $in->wait_message('', N("Looking for required software and drivers..."));
-
- install_packages($in, $settings, $driver, qw(kernel_module firmware tools)) or return;
-
- undef $wait;
- $wait = $in->wait_message('', N("Please wait, running device configuration commands..."));
- device_run_command($settings, $driver, 'post');
-
- if (my $service = device_get_option($settings, 'restart_service')) {
- log::explanations("Restarting service $service");
- services::restart_or_start($service);
- }
-
- log::explanations(qq(Settings for driver "$driver" applied));
- } else {
- log::explanations(qq(No settings found for driver "$driver" in category "$category"));
- }
-
- #- assign requested settings, erase with undef if no settings have been found
- $o_config->{$_} = $settings->{$_} foreach @o_fields;
-
- 1;
-}
-
-1;
diff --git a/perl-install/network/tools.pm b/perl-install/network/tools.pm
deleted file mode 100644
index 460797959..000000000
--- a/perl-install/network/tools.pm
+++ /dev/null
@@ -1,255 +0,0 @@
-package network::tools; # $Id$
-
-use strict;
-use common;
-use run_program;
-use c;
-use Socket;
-
-sub write_secret_backend {
- my ($a, $b) = @_;
- foreach my $i ("$::prefix/etc/ppp/pap-secrets", "$::prefix/etc/ppp/chap-secrets") {
- substInFile { s/^'$a'.*\n//; $_ .= "\n'$a' * '$b' * \n" if eof } $i;
- #- restore access right to secrets file, just in case.
- chmod 0600, $i;
- }
-}
-
-sub unquotify {
- my ($word) = @_;
- $$word =~ s/^(['"]?)(.*)\1$/$2/;
-}
-
-sub read_secret_backend() {
- my $conf = [];
- foreach my $i ("pap-secrets", "chap-secrets") {
- foreach (cat_("$::prefix/etc/ppp/$i")) {
- my ($login, $server, $passwd) = split(' ');
- if ($login && $passwd) {
- unquotify \$passwd;
- unquotify \$login;
- unquotify \$server;
- push @$conf, {login => $login,
- passwd => $passwd,
- server => $server };
- }
- }
- }
- $conf;
-}
-
-sub passwd_by_login {
- my ($login) = @_;
-
- unquotify \$login;
- my $secret = read_secret_backend();
- foreach (@$secret) {
- return $_->{passwd} if $_->{login} eq $login;
- }
-}
-
-sub wrap_command_for_root {
- my ($name, @args) = @_;
- #- FIXME: duplicate code from common::require_root_capability
- check_for_xserver() && fuzzy_pidofs(qr/\bkwin\b/) > 0 ?
- ("kdesu", "--ignorebutton", "-c", "$name @args") :
- ([ 'consolehelper', $name ], @args);
-}
-
-sub run_interface_command {
- my ($command, $intf, $detach) = @_;
- my @command =
- !$> || system("/usr/sbin/usernetctl $intf report") == 0 ?
- ($command, $intf, if_(!$::isInstall, "daemon")) :
- wrap_command_for_root($command, $intf);
- run_program::raw({ detach => $detach, root => $::prefix }, @command);
-}
-
-sub start_interface {
- my ($intf, $detach) = @_;
- run_interface_command('/sbin/ifup', $intf, $detach);
-}
-
-sub stop_interface {
- my ($intf, $detach) = @_;
- run_interface_command('/sbin/ifdown', $intf, $detach);
-}
-
-sub start_net_interface {
- my ($net, $detach) = @_;
- start_interface($net->{net_interface}, $detach);
-}
-
-sub stop_net_interface {
- my ($net, $detach) = @_;
- stop_interface($net->{net_interface}, $detach);
-}
-
-sub connected() { gethostbyname("www.mandriva.com") ? 1 : 0 }
-
-# request a ref on a bg_connect and a ref on a scalar
-sub connected_bg__raw {
- my ($kid_pipe, $status) = @_;
- local $| = 1;
- if (ref($kid_pipe) && ref($$kid_pipe)) {
- my $fd = $$kid_pipe->{fd};
- fcntl($fd, c::F_SETFL(), c::O_NONBLOCK()) or die "can not fcntl F_SETFL: $!";
- my $a = <$fd>;
- $$status = $a if defined $a;
- } else { $$kid_pipe = check_link_beat() }
-}
-
-my $kid_pipe;
-sub connected_bg {
- my ($status) = @_;
- connected_bg__raw(\$kid_pipe, $status);
-}
-
-# test if connected;
-# cmd = 0 : ask current status
-# return : 0 : not connected; 1 : connected; -1 : no test ever done; -2 : test in progress
-# cmd = 1 : start new connection test
-# return : -2
-# cmd = 2 : cancel current test
-# return : nothing
-# cmd = 3 : return current status even if a test is in progress
-my $kid_pipe_connect;
-my $current_connection_status;
-
-sub test_connected {
- local $| = 1;
- my ($cmd) = @_;
-
- $current_connection_status = -1 if !defined $current_connection_status;
-
- if ($cmd == 0) {
- connected_bg__raw(\$kid_pipe_connect, \$current_connection_status);
- } elsif ($cmd == 1) {
- if ($current_connection_status != -2) {
- $current_connection_status = -2;
- $kid_pipe_connect = check_link_beat();
- }
- } elsif ($cmd == 2) {
- if (defined($kid_pipe_connect)) {
- kill -9, $kid_pipe_connect->{pid};
- undef $kid_pipe_connect;
- }
- }
- return $current_connection_status;
-}
-
-sub check_link_beat() {
- bg_command->new(sub {
- require Net::Ping;
- my $p;
- if ($>) {
- $p = Net::Ping->new("tcp");
- # Try connecting to the www port instead of the echo port
- $p->{port_num} = getservbyname("http", "tcp");
- } else {
- $p = Net::Ping->new("icmp");
- }
- print $p->ping("www.mandriva.com") ? 1 : 0;
- });
-}
-
-sub is_dynamic_ip {
- my ($net) = @_;
- any { $_->{BOOTPROTO} !~ /^(none|static|)$/ } values %{$net->{ifcfg}};
-}
-
-sub is_dynamic_host {
- my ($net) = @_;
- any { defined $_->{DHCP_HOSTNAME} } values %{$net->{ifcfg}};
-}
-
-#- returns interface whose IP address matchs given IP address, according to its network mask
-sub find_matching_interface {
- my ($net, $address) = @_;
- my @ip = split '\.', $address;
- find {
- my @intf_ip = split '\.', $net->{ifcfg}{$_}{IPADDR} or return;
- my @mask = split '\.', $net->{ifcfg}{$_}{NETMASK} or return;
- every { $_ } mapn { ($_[0] & $_[2]) == ($_[1] & $_[2]) } \@intf_ip, \@ip, \@mask;
- } sort keys %{$net->{ifcfg}};
-}
-
-#- returns the current gateway, with lowest metric
-sub get_current_gateway_interface() {
- my $routes = get_routes();
- first(sort { $routes->{$a}{metric} <=> $routes->{$b}{metric} } grep { exists $routes->{$_}{gateway} } keys %$routes);
-}
-
-#- returns gateway interface if found
-sub get_default_gateway_interface {
- my ($net) = @_;
- my @intfs = sort keys %{$net->{ifcfg}};
- get_current_gateway_interface() ||
- $net->{network}{GATEWAYDEV} ||
- $net->{network}{GATEWAY} && find_matching_interface($net, $net->{network}{GATEWAY}) ||
- (find { get_interface_type($net->{ifcfg}{$_}) eq 'adsl' } @intfs) ||
- (find { get_interface_type($net->{ifcfg}{$_}) eq 'isdn' && text2bool($net->{ifcfg}{$_}{DIAL_ON_IFUP}) } @intfs) ||
- (find { get_interface_type($net->{ifcfg}{$_}) eq 'modem' } @intfs) ||
- (find { get_interface_type($net->{ifcfg}{$_}) eq 'wifi' && $net->{ifcfg}{$_}{BOOTPROTO} eq 'dhcp' } @intfs) ||
- (find { get_interface_type($net->{ifcfg}{$_}) eq 'ethernet' && $net->{ifcfg}{$_}{BOOTPROTO} eq 'dhcp' } @intfs);
-}
-
-sub get_interface_status {
- my ($intf) = @_;
- my $routes = get_routes();
- return $routes->{$intf}{network}, $routes->{$intf}{gateway};
-}
-
-#- returns (gateway_interface, interface is up, gateway address, dns server address)
-sub get_internet_connection {
- my ($net, $o_gw_intf) = @_;
- my $gw_intf = $o_gw_intf || get_default_gateway_interface($net) or return;
- return $gw_intf, get_interface_status($gw_intf), $net->{resolv}{dnsServer};
-}
-
-sub get_interface_type {
- my ($interface, $o_module) = @_;
- require detect_devices;
- member($interface->{TYPE}, "xDSL", "ADSL") && "adsl" ||
- $interface->{DEVICE} =~ /^ippp/ && "isdn" ||
- $interface->{DEVICE} =~ /^ppp/ && "modem" ||
- (detect_devices::is_wireless_interface($interface->{DEVICE}) || exists $interface->{WIRELESS_MODE}) && "wifi" ||
- detect_devices::is_lan_interface($interface->{DEVICE}) &&
- ($o_module && member($o_module, list_modules::category2modules('network/gigabit')) ? "ethernet_gigabit" : "ethernet") ||
- "unknown";
-}
-
-sub get_default_metric {
- my ($type) = @_;
- my @known_types = ("ethernet_gigabit", "ethernet", "adsl", "wifi", "isdn", "modem", "unknown");
- my $idx;
- eval { $idx = find_index { $type eq $_ } @known_types };
- $idx = @known_types if $@;
- $idx * 10;
-}
-
-sub get_interface_ip_address {
- my ($net, $interface) = @_;
- `/sbin/ip addr show dev $interface` =~ /^\s*inet\s+([\d.]+)/m && $1 ||
- $net->{ifcfg}{$interface}{IPADDR};
-}
-
-sub host_hex_to_dotted {
- my ($address) = @_;
- inet_ntoa(pack('N', unpack('L', pack('H8', $address))));
-}
-
-sub get_routes() {
- my %routes;
- foreach (cat_("/proc/net/route")) {
- if (/^(\S+)\s+([0-9A-F]+)\s+([0-9A-F]+)\s+[0-9A-F]+\s+\d+\s+\d+\s+(\d+)\s+([0-9A-F]+)/) {
- if (hex($2)) { $routes{$1}{network} = host_hex_to_dotted($2) }
- elsif (hex($3)) { $routes{$1}{gateway} = host_hex_to_dotted($3) }
- if ($4) { $routes{$1}{metric} = $4 }
- }
- }
- #- TODO: handle IPv6 with /proc/net/ipv6_route
- \%routes;
-}
-
-1;
diff --git a/perl-install/network/wireless.pm b/perl-install/network/wireless.pm
deleted file mode 100644
index 513c8a95e..000000000
--- a/perl-install/network/wireless.pm
+++ /dev/null
@@ -1,239 +0,0 @@
-package network::wireless;
-
-use strict;
-use common;
-
-our %wireless_enc_modes = (
- none => N_("None"),
- open => N_("Open WEP"),
- restricted => N_("Restricted WEP"),
- 'wpa-psk' => N_("WPA Pre-Shared Key"),
-);
-
-my $wpa_supplicant_conf = "/etc/wpa_supplicant.conf";
-
-sub is_old_rt2x00 {
- my ($module) = @_;
- member($module, qw(rt2400 rt2500));
-}
-
-sub is_wpa_supplicant_blacklisted {
- my ($module) = @_;
- is_old_rt2x00($module);
-}
-
-sub get_hex_key {
- my ($key) = @_;
- if ($key =~ /^([[:xdigit:]]{4}[\:-]?)+[[:xdigit:]]{2,}$/) {
- $key =~ s/[\:-]//g;
- return lc($key);
- }
-}
-
-sub convert_wep_key_for_iwconfig {
- #- 5 or 13 characters, consider the key as ASCII and prepend "s:"
- #- else consider the key as hexadecimal, do not strip dashes
- #- always quote the key as string
- my ($real_key, $restricted) = @_;
- my $key = get_hex_key($real_key) || "s:$real_key";
- $restricted ? "restricted $key" : "open $key";
-}
-
-sub get_wep_key_from_iwconfig {
- #- strip "s:" if the key is 5 or 13 characters (ASCII)
- #- else the key as hexadecimal, do not modify
- my ($key) = @_;
- my ($mode, $real_key) = $key =~ /^(?:(open|restricted)\s+)?(.*)$/;
- $real_key =~ s/^s://;
- ($real_key, $mode eq 'restricted');
-}
-
-sub convert_key_for_wpa_supplicant {
- my ($key) = @_;
- get_hex_key($key) || qq("$key");
-}
-
-sub wlan_ng_needed {
- my ($module) = @_;
- $module =~ /^prism2_/;
-}
-
-#- FIXME: to be improved (quotes, comments) and moved in common files
-sub wlan_ng_update_vars {
- my ($file, $vars) = @_;
- substInFile {
- while (my ($key, $value) = each(%$vars)) {
- s/^#?\Q$key\E=(?:"[^#]*"|[^#\s]*)(\s*#.*)?/$key=$value$1/ and delete $vars->{$key};
- }
- $_ .= join('', map { "$_=$vars->{$_}\n" } keys %$vars) if eof;
- } $file;
-}
-
-sub wlan_ng_configure {
- my ($essid, $key, $device, $module) = @_;
- my $wlan_conf_file = "$::prefix/etc/wlan/wlan.conf";
- my @wlan_devices = split(/ /, (cat_($wlan_conf_file) =~ /^WLAN_DEVICES="(.*)"/m)[0]);
- push @wlan_devices, $device unless member($device, @wlan_devices);
- #- enable device and make it use the choosen ESSID
- wlan_ng_update_vars($wlan_conf_file,
- {
- WLAN_DEVICES => qq("@wlan_devices"),
- "SSID_$device" => qq("$essid"),
- "ENABLE_$device" => "y"
- });
-
- my $wlan_ssid_file = "$::prefix/etc/wlan/wlancfg-$essid";
- #- copy default settings for this ESSID if config file does not exist
- -f $wlan_ssid_file or cp_f("$::prefix/etc/wlan/wlancfg-DEFAULT", $wlan_ssid_file);
-
- #- enable/disable encryption
- wlan_ng_update_vars($wlan_ssid_file,
- {
- (map { $_ => $key ? "true" : "false" } qw(lnxreq_hostWEPEncrypt lnxreq_hostWEPDecrypt dot11PrivacyInvoked dot11ExcludeUnencrypted)),
- AuthType => $key ? qq("sharedkey") : qq("opensystem"),
- if_($key,
- dot11WEPDefaultKeyID => 0,
- dot11WEPDefaultKey0 => qq("$key")
- )
- });
- #- hide settings for non-root users
- chmod 0600, $wlan_conf_file;
- chmod 0600, $wlan_ssid_file;
-
- #- apply settings on wlan interface
- require services;
- services::restart($module eq 'prism2_cs' ? 'pcmcia' : 'wlan');
-}
-
-sub wpa_supplicant_get_driver {
- my ($module) = @_;
- $module =~ /^hostap_/ ? "hostap" :
- $module eq "prism54" ? "prism54" :
- $module =~ /^ath_/ ? "madwifi" :
- $module =~ /^at76c50|atmel_/ ? "atmel" :
- $module eq "ndiswrapper" ? "ndiswrapper" :
- "wext";
-}
-
-sub wpa_supplicant_add_network {
- my ($essid, $enc_mode, $key) = @_;
- my $conf = wpa_supplicant_read_conf();
- my $network = {
- ssid => qq("$essid"),
- scan_ssid => 1,
- };
-
- if ($enc_mode eq 'wpa-psk') {
- $network->{psk} = convert_key_for_wpa_supplicant($key);
- } else {
- $network->{key_mgmt} = 'NONE';
- if (member($enc_mode, qw(open restricted))) {
- put_in_hash($network, {
- wep_key0 => convert_key_for_wpa_supplicant($key),
- wep_tx_keyidx => 0,
- auth_alg => $enc_mode eq 'restricted' ? 'SHARED' : 'OPEN',
- });
- }
- }
-
- @$conf = difference2($conf, [ wpa_supplicant_find_similar($conf, $network) ]);
- push @$conf, $network;
- wpa_supplicant_write_conf($conf);
-}
-
-sub wpa_supplicant_find_similar {
- my ($conf, $network) = @_;
- grep {
- my $current = $_;
- any { exists $network->{$_} && $network->{$_} eq $current->{$_} } qw(ssid bssid);
- } @$conf;
-}
-
-sub wpa_supplicant_read_conf() {
- my @conf;
- my $network;
- foreach (cat_($::prefix . $wpa_supplicant_conf)) {
- if ($network) {
- #- in a "network = {}" block
- if (/^\s*(\w+)=(.*?)(?:\s*#.*)?$/) {
- $network->{$1} = $2;
- } elsif (/^\}/) {
- #- end of network block
- push @conf, $network;
- undef $network;
- }
- } elsif (/^\s*network={/) {
- #- beginning of a new network block
- $network = {};
- }
- }
- \@conf;
-}
-
-sub wpa_supplicant_write_conf {
- my ($conf) = @_;
- my $buf;
- my @conf = @$conf;
- my $network;
- foreach (cat_($::prefix . $wpa_supplicant_conf)) {
- if ($network) {
- #- in a "network = {}" block
- if (/^\s*(\w+)=(.*)$/) {
- push @{$network->{entries}}, { key => $1, value => $2 };
- member($1, qw(ssid bssid)) and $network->{$1} = $2;
- } elsif (/^\}/) {
- #- end of network block, write it
- $buf .= "network={$network->{comment}\n";
-
- my $new_network = first(wpa_supplicant_find_similar(\@conf, $network));
- foreach (@{$network->{entries}}) {
- my $key = $_->{key};
- if ($new_network) {
- #- do not write entry if not provided in the new network
- exists $new_network->{$key} or next;
- #- update value from the new network
- $_->{value} = delete $new_network->{$key};
- }
- $buf .= " ";
- $buf .= "$key=$_->{value}" if $key;
- $buf .= "$_->{comment}\n";
- }
- if ($new_network) {
- #- write new keys
- while (my ($key, $value) = each(%$new_network)) {
- $buf .= " $key=$value\n";
- }
- }
- $buf .= "}\n";
- $new_network and @conf = grep { $_ != $new_network } @conf;
- undef $network;
- } else {
- #- unrecognized, keep it anyway
- push @{$network->{entries}}, { comment => $_ };
- }
- } else {
- if (/^\s*network={/) {
- #- beginning of a new network block
- $network = {};
- } else {
- #- keep other options, comments
- $buf .= $_;
- }
- }
- }
-
- #- write remaining networks
- foreach (@conf) {
- $buf .= "\nnetwork={\n";
- while (my ($key, $value) = each(%$_)) {
- $buf .= " $key=$value\n";
- }
- $buf .= "}\n";
- }
-
- output($::prefix . $wpa_supplicant_conf, $buf);
- #- hide keys for non-root users
- chmod 0600, $::prefix . $wpa_supplicant_conf;
-}
-
-1;
diff --git a/perl-install/partition_table.pm b/perl-install/partition_table.pm
index 651de92fe..28278e1b3 100644
--- a/perl-install/partition_table.pm
+++ b/perl-install/partition_table.pm
@@ -83,7 +83,6 @@ sub verifyPrimary {
sub compute_device_name {
my ($part, $hd) = @_;
$part->{device} = $hd->{prefix} . $part->{part_number};
- $part->{devfs_device} = $hd->{devfs_prefix} . '/part' . $part->{part_number};
}
sub assign_device_numbers {
@@ -376,7 +375,7 @@ sub tell_kernel {
} elsif ($action eq 'del') {
$force_reboot ||= !c::del_partition(fileno $F, $part_number);
}
- log::l("tell kernel $action ($hd->{device} $part_number $o_start $o_size), rebootNeeded is now " . bool2text($hd->{rebootNeeded}));
+ log::l("tell kernel $action ($hd->{device} $part_number $o_start $o_size) force_reboot=$force_reboot rebootNeeded=$hd->{rebootNeeded}");
}
}
if ($force_reboot) {
@@ -385,7 +384,7 @@ sub tell_kernel {
syscall_('umount', $_->{real_mntpoint}) or log::l(N("error unmounting %s: %s", $_->{real_mntpoint}, $!));
}
$hd->{rebootNeeded} = !ioctl($F, c::BLKRRPART(), 0);
- log::l("tell kernel force_reboot ($hd->{device}), rebootNeeded is now $hd->{rebootNeeded}.");
+ log::l("tell kernel force_reboot ($hd->{device}), rebootNeeded=$hd->{rebootNeeded}");
foreach (@magic_parts) {
syscall_('mount', $_->{real_mntpoint}, $_->{fs_type}, c::MS_MGC_VAL()) or log::l(N("mount failed: ") . $!);
@@ -397,7 +396,7 @@ sub tell_kernel {
sub write {
my ($hd) = @_;
$hd->{isDirty} or return;
- $hd->{readonly} and die "a read-only partition table should not be dirty!";
+ $hd->{readonly} and internal_error("a read-only partition table should not be dirty ($hd->{device})!");
#- set first primary partition active if no primary partitions are marked as active.
if (my @l = @{$hd->{primary}{raw}}) {
@@ -428,7 +427,12 @@ sub write {
$hd->{hasBeenDirty} = 1; #- used in undo (to know if undo should believe isDirty or not)
if (my $tell_kernel = delete $hd->{will_tell_kernel}) {
- tell_kernel($hd, $tell_kernel);
+ if (fs::type::is_dmraid($hd)) {
+ fs::dmraid::call_dmraid('-an');
+ fs::dmraid::call_dmraid('-ay');
+ } else {
+ tell_kernel($hd, $tell_kernel);
+ }
}
}
@@ -590,12 +594,7 @@ sub next_start {
sub load {
my ($hd, $file, $b_force) = @_;
- my $F;
- if (ref $file) {
- $F = $file;
- } else {
- open($F, $file) or die N("Error reading file %s", $file);
- }
+ my $F = ref $file ? $file : common::open_file($file) || die N("Error reading file %s", $file);
my $h;
{
diff --git a/perl-install/partition_table/dos.pm b/perl-install/partition_table/dos.pm
index 90b86b9c2..0ac56d453 100644
--- a/perl-install/partition_table/dos.pm
+++ b/perl-install/partition_table/dos.pm
@@ -104,8 +104,8 @@ sub is_geometry_valid_for_the_partition_table {
my ($chs_start_v1, $chs_end_v1) = map { join(',', @$_) } CHS_from_part_rawCHS($_) or next;
my ($chs_start_v2, $chs_end_v2) = map { join(',', @$_) } map { [ min($_->[0], 1023), $_->[1], $_->[2] ] } CHS_from_part_linear($geom, $_);
if (!$no_log) {
- $chs_start_v1 eq $chs_start_v2 or log::l("check_geometry_using_the_partition_table failed for ($_->{device}, $_->{start}): $chs_start_v1 vs $chs_start_v2 with geometry " . geometry_to_string($geom));
- $chs_end_v1 eq $chs_end_v2 or log::l("check_geometry_using_the_partition_table failed for ($_->{device}, " . ($_->{start} + $_->{size} - 1) . "): $chs_end_v1 vs $chs_end_v2 with geometry " . geometry_to_string($geom));
+ $chs_start_v1 eq $chs_start_v2 or log::l("is_geometry_valid_for_the_partition_table failed for ($_->{device}, $_->{start}): $chs_start_v1 vs $chs_start_v2 with geometry " . geometry_to_string($geom));
+ $chs_end_v1 eq $chs_end_v2 or log::l("is_geometry_valid_for_the_partition_table failed for ($_->{device}, " . ($_->{start} + $_->{size} - 1) . "): $chs_end_v1 vs $chs_end_v2 with geometry " . geometry_to_string($geom));
}
$chs_start_v1 eq $chs_start_v2 && $chs_end_v1 eq $chs_end_v2;
} @{$hd->{primary}{normal} || []};
diff --git a/perl-install/partition_table/mac.pm b/perl-install/partition_table/mac.pm
index 93b9d0934..ef638f2b6 100644
--- a/perl-install/partition_table/mac.pm
+++ b/perl-install/partition_table/mac.pm
@@ -2,7 +2,7 @@ package partition_table::mac; # $Id$
use diagnostics;
#use strict; - fixed other PPC code to comply, but program bails on empty partition table - sbenedict
-use vars qw(@ISA $freepart $bootstrap_part $macos_part);
+use vars qw(@ISA $freepart $bootstrap_part $macos_part $new_bootstrap);
@ISA = qw(partition_table::raw);
@@ -296,7 +296,7 @@ sub write($$$;$) {
$_->{pFlags} = 0x33;
$_->{isBoot} = 1;
log::l("writing a bootstrap at /dev/$_->{device}");
- $install_steps_interactive::new_bootstrap = 1 if !(defined $bootstrap_part);
+ $new_bootstrap = 1 if !(defined $bootstrap_part);
$bootstrap_part = "/dev/" . $_->{device};
} elsif (isSwap($_)) {
$_->{pType} = "Apple_UNIX_SVR2";
diff --git a/perl-install/partition_table/raw.pm b/perl-install/partition_table/raw.pm
index 82d2c3cd9..35a67ebd8 100644
--- a/perl-install/partition_table/raw.pm
+++ b/perl-install/partition_table/raw.pm
@@ -18,8 +18,16 @@ if_(arch() =~ /ppc/,
[ 'grub', 0, "\xEBG", 0x17d, "stage1 \0" ],
[ 'grub', 0, "\xEBH", 0x17e, "stage1 \0" ],
[ 'grub', 0, "\xEBH", 0x18a, "stage1 \0" ],
- [ 'grub', 0, "\xEBH", 0x181, "GRUB \0" ],
- [ 'grub', 0, "\xEBH", 0x176, "GRUB \0" ], #- Conectiva 10
+ sub { my ($F) = @_;
+ #- standard grub has no good magic (Mandriva's grub is patched to have "GRUB" at offset 6)
+ #- so scanning a range of possible places where grub can have its string
+ #- 0x176 found on Conectiva 10
+ my ($min, $max, $magic) = (0x176, 0x181, "GRUB \0");
+ my $tmp;
+ sysseek($F, 0, 0) && sysread($F, $tmp, $max + length($magic)) or return;
+ substr($tmp, 0, 2) eq "\xEBH" or return;
+ index($tmp, $magic, $min) >= 0 && "grub";
+ },
[ 'lilo', 0x2, "LILO" ],
[ 'lilo', 0x6, "LILO" ],
[ 'lilo', 0x6 + 0x40, "LILO" ], #- when relocated in lilo's bsect_update(), variable "space" on paragraph boundary gives 0x40
@@ -94,7 +102,9 @@ sub adjustEnd($$) {
sub compute_nb_cylinders {
my ($geom, $totalsectors) = @_;
- $geom->{cylinders} = int $totalsectors / $geom->{heads} / $geom->{sectors};
+ if ($geom->{heads} && $geom->{sectors}) {
+ $geom->{cylinders} = int $totalsectors / $geom->{heads} / $geom->{sectors};
+ }
}
sub keep_non_duplicates {
@@ -158,6 +168,7 @@ sub get_geometry {
my %geom;
if (ioctl($F, c::HDIO_GETGEO(), $g)) {
@geom{qw(heads sectors cylinders start)} = unpack "CCSL", $g;
+ log::l("HDIO_GETGEO on $dev succeeded: heads=$geom{heads} sectors=$geom{sectors} cylinders=$geom{cylinders} start=$geom{start}");
$geom{totalcylinders} = $geom{cylinders};
#- $geom{cylinders} is no good (only a ushort, that means less than 2^16 => at best 512MB)
@@ -232,7 +243,7 @@ sub test_for_bad_drives {
my ($hd) = @_;
log::l("test_for_bad_drives($hd->{file})");
- my $sector = $hd->{geom}{sectors} - 1;
+ my $sector = $hd->{geom} ? $hd->{geom}{sectors} - 1 : 0;
sub error { die "$_[0] error: $_[1]" }
diff --git a/perl-install/patch/9.1/hp.diff b/perl-install/patch/9.1/hp.diff
deleted file mode 100644
index befdf71f6..000000000
--- a/perl-install/patch/9.1/hp.diff
+++ /dev/null
@@ -1,137 +0,0 @@
-Index: install_steps_interactive.pm
-===================================================================
-RCS file: /cooker/gi/perl-install/install_steps_interactive.pm,v
-retrieving revision 1.810
-retrieving revision 1.812
-diff -u -p -r1.810 -r1.812
---- install_steps_interactive.pm 12 Mar 2003 15:34:46 -0000 1.810
-+++ install_steps_interactive.pm 20 Mar 2003 10:12:38 -0000 1.812
-@@ -1006,6 +1006,9 @@ sub summary {
- local $::expert = $::expert;
- require network::netconnect;
- network::netconnect::main($o->{prefix}, $o->{netcnx} ||= {}, $o->{netc}, $o->{mouse}, $o, $o->{intf}, 0, 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});
- },
- b
- };
-
-Index: lang.pm
-===================================================================
-RCS file: /cooker/gi/perl-install/lang.pm,v
-retrieving revision 1.309
-retrieving revision 1.312
-diff -u -p -r1.309 -r1.312
---- lang.pm 11 Mar 2003 23:35:36 -0000 1.309
-+++ lang.pm 19 Mar 2003 17:06:18 -0000 1.312
-@@ -229,7 +229,7 @@ my %countries = (
- 'GU' => [ N_("Guam"), 'en_US', '4' ], #
- 'GW' => [ N_("Guinea-Bissau"), 'pt_PT', '3' ], #
- 'GY' => [ N_("Guyana"), 'en_US', '5' ], #
--'HK' => [ N_("Hong Kong"), 'zh_HK', '2' ],
-+'HK' => [ N_("China") . ' (' . N_("Hong Kong") . ')', 'zh_HK', '2' ],
- 'HM' => [ N_("Heard and McDonald Islands"), 'en_US', '4' ], #
- 'HN' => [ N_("Honduras"), 'es_HN', '5' ],
- 'HR' => [ N_("Croatia"), 'hr_HR', '1' ],
-@@ -742,6 +742,9 @@ sub l2pango_font {
-
- sub set {
- my ($lang, $translate_for_console) = @_;
-+
-+ #- disable Arabic in install as no (free) fonts are available.
-+ $lang eq 'ar' and $lang='en_US';
-
- exists $langs{$lang} or log::l("lang::set: trying to set to $lang but I don't know it!"), return;
-
-Index: standalone/service_harddrake
-===================================================================
-RCS file: /cooker/gi/perl-install/standalone/service_harddrake,v
-retrieving revision 1.34
-diff -u -p -r1.34 service_harddrake
---- standalone/service_harddrake 12 Mar 2003 10:55:35 -0000 1.34
-+++ standalone/service_harddrake 21 Mar 2003 16:06:52 -0000
-@@ -13,7 +13,7 @@ use modules;
- use Storable qw(store retrieve);
-
- my $invert_do_it = $ARGV[0] eq 'X11' ? 1 : 0;
--my ($hw_sysconfdir, $timeout) = ("/etc/sysconfig/harddrake2", $invert_do_it ? 600 : 5);
-+my ($hw_sysconfdir, $timeout) = ("/etc/sysconfig/harddrake2", $invert_do_it ? 600 : 25);
- my $last_boot_config = $hw_sysconfdir."/previous_hw";
-
- $last_boot_config .= '_X11' if $invert_do_it;
-Index: drakxtools.spec
-===================================================================
-RCS file: /cooker/gi/perl-install/drakxtools.spec,v
-retrieving revision 1.247
-diff -u -p -r1.247 drakxtools.spec
---- drakxtools.spec 16 Mar 2003 15:30:56 -0000 1.247
-+++ drakxtools.spec 21 Mar 2003 16:17:22 -0000
-@@ -1,7 +1,7 @@
- Summary: The drakxtools (XFdrake, diskdrake, keyboarddrake, mousedrake...)
- Name: drakxtools
- Version: 9.1
--Release: 26mdk
-+Release: 27mdk
- Url: http://www.mandrakelinux.com/en/drakx.php2
- Source0: %name-%version.tar.bz2
- License: GPL
-@@ -303,6 +303,9 @@ file /etc/sysconfig/harddrake2/previous_
- %config(noreplace) %_sysconfdir/logrotate.d/drakxtools-http
-
- %changelog
-+* Fri Mar 21 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-27mdk
-+- harddrake service: increase default timeout from 5 to 25 seconds
-+
- * Sun Mar 16 2003 Warly <warly@mandrakesoft.com> 9.1-25mdk
- - do a correct cvs up of all gi before (me sux)
-
-Index: install_steps_interactive.pm
-===================================================================
-RCS file: /cooker/gi/perl-install/install_steps_interactive.pm,v
-retrieving revision 1.810
-diff -u -p -r1.810 install_steps_interactive.pm
---- install_steps_interactive.pm 12 Mar 2003 15:34:46 -0000 1.810
-+++ install_steps_interactive.pm 21 Mar 2003 16:11:09 -0000
-@@ -894,7 +894,7 @@ sub summary {
- my $timezone_manually_set;
- push @l, {
- group => N("System"),
-- label => N("Country"),
-+ label => N("Country") . N(" / Region"),
- val => sub { lang::c2name($o->{locale}{country}) },
- clicked => sub {
- any::selectCountry($o, $o->{locale}) or return;
-Index: any.pm
-===================================================================
-RCS file: /cooker/gi/perl-install/any.pm,v
-retrieving revision 1.340
-diff -u -p -r1.340 any.pm
---- any.pm 13 Mar 2003 10:42:51 -0000 1.340
-+++ any.pm 21 Mar 2003 16:11:09 -0000
-@@ -688,7 +688,7 @@ sub selectCountry {
- my ($other, $ext_country);
- member($country, @best) or ($ext_country, $country) = ($country, $ext_country);
- $o->ask_from_(
-- { title => N("Country"),
-+ { title => N("Country") . N(" / Region"),
- messages => N("Please choose your country."),
- interactive_help_id => 'selectCountry',
- advanced_messages => N("Here is the full list of available countries"),
-Index: lang.pm
-===================================================================
-RCS file: /cooker/gi/perl-install/lang.pm,v
-retrieving revision 1.312
-diff -u -r1.312 lang.pm
---- lang.pm 19 Mar 2003 17:06:18 -0000 1.312
-+++ lang.pm 28 Mar 2003 15:24:41 -0000
-@@ -23,7 +23,8 @@
- my %langs = (
- 'af' => [ 'Afrikaans', 'Afrikaans', 'af_ZA', ' 3 ', 'iso-8859-1' ],
- 'am' => [ 'Amharic', 'ZZ emarNa', 'am_ET', ' 3 ', 'utf_am' ],
--'ar' => [ 'Arabic', 'AA Arabic', 'ar_EG', ' 23 ', 'utf_ar' ],
-+#- doesn't work well after install
-+#'ar' => [ 'Arabic', 'AA Arabic', 'ar_EG', ' 23 ', 'utf_ar' ],
- 'az' => [ 'Azeri (Latin)', 'Azerbaycanca', 'az_AZ', ' 2 ', 'utf_az' ],
- 'be' => [ 'Belarussian', 'Belaruskaya', 'be_BY', '1 ', 'cp1251' ],
- 'bg' => [ 'Bulgarian', 'Blgarski', 'bg_BG', '1 ', 'cp1251' ],
diff --git a/perl-install/patch/9.1/patch-detectSMP-K6.pl b/perl-install/patch/9.1/patch-detectSMP-K6.pl
deleted file mode 100644
index acf5821f6..000000000
--- a/perl-install/patch/9.1/patch-detectSMP-K6.pl
+++ /dev/null
@@ -1,5 +0,0 @@
-use detect_devices;
-package detect_devices;
-
-undef *hasSMP;
-*hasSMP = sub { 0 };
diff --git a/perl-install/patch/9.1/patch-loopback.pl b/perl-install/patch/9.1/patch-loopback.pl
deleted file mode 100644
index d0f4185b3..000000000
--- a/perl-install/patch/9.1/patch-loopback.pl
+++ /dev/null
@@ -1,18 +0,0 @@
-use bootloader;
-package bootloader;
-log::l("PATCHING: fixing 9.1 aes.o missing in initrd for / on loopback");
-
-*mkinitrd = sub {
- my ($kernelVersion, $initrdImage) = @_;
-
- my $loop_boot = loopback::prepare_boot();
-
- modules::load('loop');
- if (!run_program::rooted($::prefix, "mkinitrd", "--with=aes", "-v", "-f", $initrdImage, "--ifneeded", $kernelVersion)) {
- unlink("$::prefix/$initrdImage");
- die "mkinitrd failed";
- }
- loopback::save_boot($loop_boot);
-
- -e "$::prefix/$initrdImage";
-};
diff --git a/perl-install/patch/patch-2006-auto_install_LDAP_auth.pl b/perl-install/patch/patch-2006-auto_install_LDAP_auth.pl
deleted file mode 100644
index db719a905..000000000
--- a/perl-install/patch/patch-2006-auto_install_LDAP_auth.pl
+++ /dev/null
@@ -1,16 +0,0 @@
-use do_pkgs;
-package do_pkgs_common;
-
-undef *ensure_are_installed;
-*ensure_are_installed = sub {
- my ($do, $pkgs, $b_auto) = @_;
-
- my @not_installed = difference2($pkgs, [ $do->are_installed(@$pkgs) ]) or return 1;
-
- if (!$do->install(@not_installed)) {
- $do->in->ask_warn(N("Error"), N("Could not install the %s package!", $not_installed[0]));
- return;
- }
- 1;
-};
-
diff --git a/perl-install/patch/patch-2006-new-dmraid.pl b/perl-install/patch/patch-2006-new-dmraid.pl
deleted file mode 100644
index 02f4b13aa..000000000
--- a/perl-install/patch/patch-2006-new-dmraid.pl
+++ /dev/null
@@ -1,12 +0,0 @@
-use MDK::Common;
-
-log::l("PATCH: 2006-new-dmraid");
-
-if (-e '/mnt/dmraid') {
- mkdir_p('/tmp/bin');
- cp_af('/mnt/dmraid', '/tmp/bin');
- $ENV{PATH} = "/tmp/bin:$ENV{PATH}";
-} else {
- warn "ERROR: dmraid not available\n";
- die "ERROR: dmraid not available\n";
-}
diff --git a/perl-install/patch/patch-9.0-auto-inst-network-config.pl b/perl-install/patch/patch-9.0-auto-inst-network-config.pl
deleted file mode 100644
index f7cdc95ce..000000000
--- a/perl-install/patch/patch-9.0-auto-inst-network-config.pl
+++ /dev/null
@@ -1,8 +0,0 @@
-package install_steps;
-log::l("fixing network module probe & configuration in interactive auto_install");
-my $old_configureNetwork = \&configureNetwork;
-undef *configureNetwork;
-*configureNetwork = sub {
- modules::load_category('network/main|usb');
- &$old_configureNetwork;
-};
diff --git a/perl-install/patch/patch-IMPS2.pl b/perl-install/patch/patch-IMPS2.pl
deleted file mode 100644
index 488b6ac11..000000000
--- a/perl-install/patch/patch-IMPS2.pl
+++ /dev/null
@@ -1,9 +0,0 @@
-use install_gtk;
-package install_gtk;
-
-my $old_createXconf = \&createXconf;
-undef *createXconf;
-*createXconf = sub {
- symlink 'mouse', '/dev/cdrom';
- &$old_createXconf;
-}
diff --git a/perl-install/patch/patch-da.pl b/perl-install/patch/patch-da.pl
deleted file mode 100644
index 63a9f76d5..000000000
--- a/perl-install/patch/patch-da.pl
+++ /dev/null
@@ -1,6 +0,0 @@
-use common;
-
-log::l("PATCHING: installing mo");
-my $dir = '/usr/share/locale_special/da/LC_MESSAGES';
-mkdir_p($dir);
-system("gzip -dc /mnt/da_mo.gz > $dir/libDrakX.mo");
diff --git a/perl-install/patch/patch-nforce.pl b/perl-install/patch/patch-nforce.pl
deleted file mode 100644
index 35587ec75..000000000
--- a/perl-install/patch/patch-nforce.pl
+++ /dev/null
@@ -1,35 +0,0 @@
-use install_steps;
-use common;
-
-package install_steps;
-
-my $old_afterInstallPackages = \&afterInstallPackages;
-undef *afterInstallPackages;
-*afterInstallPackages = sub {
- &$old_afterInstallPackages;
-
- my ($o) = @_;
-
- # workaround nforce stuff.
- #
- # modules.pm uses /lib/modules/VERSION/modules*map to know which
- # sound drivers to use : this'll cause i810_audio to override
- # nvaudio since it exports the nvforce audio pci ids
- #
- # the right solution is to :
- #
- # - remove the nforce ids from i810_audio until the oss driver got
- # fixes implemented in alsa driver for nforce (snd-intel8x0.o)
- #
- # - ask nvidia to declare which pci ids they use and export them
- # for depmod :
- # MODULE_DEVICE_TABLE (pci, <name_of_the struct pci_device_id variable>);
-
- #- try to workaround nforce stuff.
- foreach (keys %{$o->{packages}{provides}{kernel}}) {
- my $p = $o->{packages}{depslist}[$_];
- my ($ext, $version, $release) = $p->name =~ /^kernel-([^\d\-]*)-?([^\-]*)\.([^\-\.]*)$/ or next;
- -s "$o->{prefix}/lib/modules/$version-$release$ext/kernel/drivers/sound/nvaudio.o.gz" and
- run_program::rooted($o->{prefix}, "cp -f /lib/modules/$version-$release$ext/kernel/drivers/sound/nvaudio.o.gz /lib/modules/$version-$release$ext/kernel/drivers/sound/i810_audio.o.gz");
- }
-};
diff --git a/perl-install/patch/patch-oem-9.0.pl b/perl-install/patch/patch-oem-9.0.pl
deleted file mode 100644
index 60c7422fe..000000000
--- a/perl-install/patch/patch-oem-9.0.pl
+++ /dev/null
@@ -1,52 +0,0 @@
-use install_steps;
-package install_steps;
-
-my $old_afterInstallPackages = \&afterInstallPackages;
-undef *afterInstallPackages;
-*afterInstallPackages = sub {
- &$old_afterInstallPackages;
-
- my ($o) = @_;
-
- #- update oem lilo image if it exists.
- if (-s "$o->{prefix}/boot/oem-message-graphic") {
- rename "$o->{prefix}/boot/message-graphic", "$o->{prefix}/boot/message-graphic.mdkgiorig";
- rename "$o->{prefix}/boot/oem-message-graphic", "$o->{prefix}/boot/message-graphic";
- }
-
- #- update background image if it exists for common environment.
- if (-s "$o->{prefix}/usr/share/mdk/oem-background.png") {
- if (-e "$o->{prefix}/usr/share/mdk/backgrounds/default.png") {
- rename "$o->{prefix}/usr/share/mdk/backgrounds/default.png",
- "$o->{prefix}/usr/share/mdk/backgrounds/default.png.mdkgiorig";
- rename "$o->{prefix}/usr/share/mdk/oem-background.png", "$o->{prefix}/usr/share/mdk/backgrounds/default.png";
- } else {
- #- KDE desktop background.
- if (-e "$o->{prefix}/usr/share/config/kdesktoprc") {
- update_gnomekderc("$o->{prefix}/usr/share/config/kdesktoprc", "Desktop0",
- MultiWallpaperMode => "NoMulti",
- Wallpaper => "/usr/share/mdk/oem-background.png",
- WallpaperMode => "Scaled",
- );
- }
- #- GNOME desktop background.
- if (-e "$o->{prefix}/etc/gnome/config/Background") {
- update_gnomekderc("$o->{prefix}/etc/gnome/config/Background", "Default",
- wallpaper => "/usr/share/mdk/oem-background.png",
- wallpaperAlign => "3",
- );
- }
- }
- }
-
- #- try to workaround nforce stuff.
- foreach (keys %{$o->{packages}{provides}{kernel}}) {
- my $p = $o->{packages}{depslist}[$_];
- my ($ext, $version, $release) = $p->name =~ /^kernel-([^\d\-]*)-?([^\-]*)\.([^\-\.]*)$/ or next;
- -s "$o->{prefix}/lib/modules/$version-$release$ext/kernel/drivers/sound/nvaudio.o.gz" and
- run_program::rooted($o->{prefix}, "cp -f /lib/modules/$version-$release$ext/kernel/drivers/sound/nvaudio.o.gz /lib/modules/$version-$release$ext/kernel/drivers/sound/i810_audio.o.gz");
- }
-
- #- try to check if pcitable and others have been built correctly.
- -e "$o->{prefix}/usr/share/ldetect-lst/pcitable" or run_program::rooted($o->{prefix}, "/usr/sbin/update-ldetect-lst");
-};
diff --git a/perl-install/patch/patch-oem-hp.pl b/perl-install/patch/patch-oem-hp.pl
deleted file mode 100644
index 0a5b0b51e..000000000
--- a/perl-install/patch/patch-oem-hp.pl
+++ /dev/null
@@ -1,323 +0,0 @@
-use modules;
-package modules;
-my $old_load_raw = \&load_raw;
-undef *load_raw;
-*load_raw = sub {
- &$old_load_raw;
-
- my @l = map { my ($i, @i) = @$_; [ $i, \@i ] } grep { $_->[0] !~ /ignore/ } @_;
- foreach (@l) {
- if ($_->[0] eq 'ehci-hcd') {
- add_alias('usb-interface1', $_->[0]);
- }
- }
-
- if (get_alias("usb-interface") || get_alias("usb-interface1")) {
- unless (-e "/proc/bus/usb/devices") {
- require fs; fs::mount('/proc/bus/usb', '/proc/bus/usb', 'usbdevfs');
- #- ensure keyboard is working, the kernel must do the job the BIOS was doing
- sleep 4;
- load_multi("usbkbd", "keybdev") if detect_devices::usbKeyboards();
- }
- }
-};
-
-my $old_load = \&load;
-undef *load;
-*load = sub {
- &$old_load;
-
- #- hack to get back usb-interface (even if already loaded by stage1)
- #- NOTE load_multi is not used for that so not overloaded to fix that too.
- if ($_[0] =~ /usb-[uo]hci/ && !get_alias("usb-interface")) {
- add_alias('usb-interface', $_[0]);
- } elsif ($_[0] eq 'ehci-hcd' && !get_alias("usb-interface1")) {
- add_alias('usb-interface1', $_[0]);
- }
-
- if (get_alias("usb-interface") || get_alias("usb-interface1")) {
- unless (-e "/proc/bus/usb/devices") {
- require fs; fs::mount('/proc/bus/usb', '/proc/bus/usb', 'usbdevfs');
- #- ensure keyboard is working, the kernel must do the job the BIOS was doing
- sleep 4;
- load_multi("usbkbd", "keybdev") if detect_devices::usbKeyboards();
- }
- }
-};
-
-#- ensure it is loaded using this patch.
-$::noauto or modules::load_thiskind("usb");
-sleep 2;
-
-use install_steps;
-package install_steps;
-
-my $old_beforeInstallPackages = \&beforeInstallPackages;
-undef *beforeInstallPackages;
-*beforeInstallPackages = sub {
- &$old_beforeInstallPackages;
-
- my ($o) = @_;
- mkdir "$o->{prefix}$_" foreach qw(/boot /usr /usr/share /usr/share/mdk);
- install_any::getAndSaveFile("Mandrake/base/oem-message-graphic", "$o->{prefix}/boot/oem-message-graphic");
- install_any::getAndSaveFile("Mandrake/base/oem-background.png", "$o->{prefix}/usr/share/mdk/oem-background.png");
-};
-
-my $old_afterInstallPackages = \&afterInstallPackages;
-undef *afterInstallPackages;
-*afterInstallPackages = sub {
- &$old_afterInstallPackages;
-
- my ($o) = @_;
-
- #- lilo image.
- rename "$o->{prefix}/boot/lilo-graphic/message", "$o->{prefix}/boot/lilo-graphic/message.orig";
- system "chroot", $o->{prefix}, "cp", "-f", "/boot/oem-message-graphic", "/boot/lilo-graphic/message";
-
- #- KDE desktop background.
- if (-e "$o->{prefix}/usr/share/config/kdesktoprc") {
- update_gnomekderc("$o->{prefix}/usr/share/config/kdesktoprc", "Desktop0",
- MultiWallpaperMode => "NoMulti",
- Wallpaper => "/usr/share/mdk/oem-background.png",
- WallpaperMode => "Scaled",
- );
- }
- #- GNOME desktop background.
- if (-e "$o->{prefix}/etc/gnome/config/Background") {
- update_gnomekderc("$o->{prefix}/etc/gnome/config/Background", "Default",
- wallpaper => "/usr/share/mdk/oem-background.png",
- wallpaperAlign => "3",
- );
- }
-
- #- make sure no error can be forwarded, test staroffice installed and OpenOffice.org,
- #- remove the first if the second is installed.
- eval {
- if (!$o->{isUpgrade} && -e "$o->{prefix}/usr/lib/openoffice/program/soffice.bin" && grep { -e "$o->{prefix}/usr/lib/office60_$_/program/soffice.bin" } qw(de en es fr it)) {
- require run_program;
- log::l("removing OpenOffice.org as staroffice is installed");
- run_program::rooted($o->{prefix}, "rpm", "-e", "OpenOffice.org");
- }
- };
-};
-
-use install_any;
-package install_any;
-
-undef *copy_advertising;
-*copy_advertising = sub {
- my ($o) = @_;
-
- return if $::rootwidth < 800;
-
- my $f;
- my $source_dir = "Mandrake/share/advertising";
- foreach ("." . $o->{lang}, "." . substr($o->{lang},0,2), '') {
- $f = getFile("$source_dir$_/list") or next;
- $source_dir = "$source_dir$_";
- }
- if (my @files = <$f>) {
- my $dir = "$o->{prefix}/tmp/drakx-images";
- mkdir $dir;
- unlink glob_("$dir/*");
- foreach (@files) {
- chomp;
- getAndSaveFile("$source_dir/$_", "$dir/$_");
- s/\.png/\.pl/;
- getAndSaveFile("$source_dir/$_", "$dir/$_");
- s/\.pl/_icon\.png/;
- getAndSaveFile("$source_dir/$_", "$dir/$_");
- s/_icon\.png/\.png/;
- }
- @advertising_images = map { $_ && -e "$dir/$_" ? ("$dir/$_") : () } @files;
- }
-};
-
-#undef *allowNVIDIA_rpms;
-#*allowNVIDIA_rpms = sub {
-# my ($packages) = @_;
-# require pkgs;
-# if (pkgs::packageByName($packages, "NVIDIA_GLX")) {
-# #- at this point, we can allow using NVIDIA 3D acceleration packages.
-# my @rpms;
-# foreach (keys %{$packages->{names}}) {
-# my ($ext, $version, $release) = /kernel[^-]*(-smp|-enterprise|-secure)?(?:-(\d.*?)\.(\d+\.\d+mdk))?$/ or next;
-# my $p = pkgs::packageByName($packages, $_);
-# pkgs::packageSelectedOrInstalled($p) or next;
-# $version or ($version, $release) = (pkgs::packageVersion($p), pkgs::packageRelease($p));
-# my $name = "NVIDIA_kernel-$version-$release$ext";
-# pkgs::packageByName($packages, $name) or return;
-# push @rpms, $name;
-# }
-# @rpms > 0 or return;
-# return [ @rpms, "NVIDIA_GLX" ];
-# }
-#};
-
-use detect_devices;
-package detect_devices;
-
-undef *usbMice;
-*usbMice = sub { grep { ($_->{media_type} =~ /\|Mouse/ || $_->{driver} =~ /Mouse:USB/) &&
- $_->{driver} !~ /Tablet:wacom/} usb_probe() };
-
-use Xconfigurator;
-package Xconfigurator;
-
-undef *cardConfigurationAuto;
-*cardConfigurationAuto = sub {
- my @cards;
- if (my @c = grep { $_->{driver} =~ /(Card|Server):/ } detect_devices::probeall()) {
- @c >= 2 && $c[0]{description} eq $c[1]{description} && $c[0]{description} =~ /82830 CGC/ and shift @c;
- foreach my $i (0..$#c) {
- local $_ = $c[$i]->{driver};
- my $card = { identifier => ($c[$i]{description} . (@c > 1 && " $i")) };
- $card->{type} = $1 if /Card:(.*)/;
- $card->{server} = $1 if /Server:(.*)/;
- $card->{driver} = $1 if /Driver:(.*)/;
- $card->{flags}{needVideoRam} = /86c368|S3 Inc|Tseng.*ET6\d00/;
- $card->{busid} = "PCI:$c[$i]{pci_bus}:$c[$i]{pci_device}:$c[$i]{pci_function}";
- push @{$card->{lines}}, @{$lines{$card->{identifier}} || []};
- push @cards, $card;
- }
- }
- #- take a default on sparc if nothing has been found.
- if (arch() =~ /^sparc/ && !@cards) {
- log::l("Using probe with /proc/fb as nothing has been found!");
- local $_ = cat_("/proc/fb");
- if (/Mach64/) { push @cards, { server => "Mach64" } }
- elsif (/Permedia2/) { push @cards, { server => "3DLabs" } }
- else { push @cards, { server => "Sun24" } }
- }
- #- special case for dual head card using only one busid.
- @cards = map { my $dup = $_->{identifier} =~ /MGA G[45]50/ ? 2 : 1;
- if ($dup > 1) {
- my @result;
- my $orig = $_;
- foreach (1..$dup) {
- my $card = {};
- add2hash($card, $orig);
- push @result, $card;
- }
- @result;
- } else {
- ($_);
- }
- } @cards;
- #- make sure no type are already used, duplicate both screen
- #- and rename type (because used as id).
- if (@cards > 1) {
- my $card = 1;
- foreach (@cards) {
- updateCardAccordingName($_, $_->{type}) if $_->{type};
- $_->{type} = "$_->{type} $card";
- $card++;
- }
- }
- #- in case of only one cards, remove all busid reference, this will avoid
- #- need of change of it if the card is moved.
- #- on many PPC machines, card is on-board, busid is important, leave?
- @cards == 1 and delete $cards[0]{busid} if arch() !~ /ppc/;
- @cards;
-};
-
-use mouse;
-package mouse;
-undef *detect;
-*detect = sub {
- if (arch() =~ /^sparc/) {
- return fullname2mouse("sunmouse|Sun - Mouse");
- }
- if (arch() eq "ppc") {
- return fullname2mouse(detect_devices::hasMousePS2("usbmouse") ?
- "USB|1 button" :
- #- No need to search for an ADB mouse. If I did, the PPC kernel would
- #- find one whether or not I had one installed! So.. default to it.
- "busmouse|1 button");
- }
-
- my @wacom;
- my $fast_mouse_probe = sub {
- my $auxmouse = detect_devices::hasMousePS2("psaux") && fullname2mouse("PS/2|Standard", unsafe => 1);
-
- if (modules::get_alias("usb-interface")) {
- if (my (@l) = detect_devices::usbMice()) {
- log::l("found usb mouse $_->{driver} $_->{description} ($_->{type})") foreach @l;
- eval { modules::load($_) foreach qw(hid mousedev usbmouse) };
- if (!$@ && detect_devices::tryOpen("usbmouse")) {
- my $mouse = fullname2mouse($l[0]{driver} =~ /Mouse:(.*)/ ? $1 : "USB|Generic");
- $auxmouse and $mouse->{auxmouse} = $auxmouse; #- for laptop, we kept the PS/2 as secondary (symbolic).
- return $mouse;
- }
- eval { modules::unload($_) foreach qw(usbmouse mousedev hid) };
- }
- }
- $auxmouse;
- };
-
- if (modules::get_alias("usb-interface")) {
- my $keep_mouse;
- if (my (@l) = detect_devices::usbWacom()) {
- log::l("found usb wacom $_->{driver} $_->{description} ($_->{type})") foreach @l;
- eval { modules::load("wacom"); modules::load("evdev"); };
- unless ($@) {
- foreach (0..$#l) {
- detect_devices::tryOpen("input/event$_") and $keep_mouse = 1, push @wacom, "input/event$_";
- }
- }
- $keep_mouse or eval { modules::unload("evdev"); modules::unload("wacom"); };
- }
- }
-
- #- at this level, not all possible mice are detected so avoid invoking serial_probe
- #- which takes a while for its probe.
- if ($::isStandalone) {
- my $mouse = $fast_mouse_probe->();
- $mouse and return ($mouse, @wacom);
- }
-
- #- probe serial device to make sure a wacom has been detected.
- eval { modules::load("serial") };
- my ($r, @serial_wacom) = mouseconfig(); push @wacom, @serial_wacom;
-
- if (!$::isStandalone) {
- my $mouse = $fast_mouse_probe->();
- $r && $mouse and $r->{auxmouse} = $mouse; #- we kept the auxilliary mouse as PS/2.
- $r and return ($r, @wacom);
- $mouse and return ($mouse, @wacom);
- } else {
- $r and return ($r, @wacom);
- }
-
- #- in case only a wacom has been found, assume an inexistant mouse (necessary).
- @wacom and return { CLASS => 'MOUSE',
- nbuttons => 2,
- device => "nothing",
- MOUSETYPE => "Microsoft",
- XMOUSETYPE => "Microsoft"}, @wacom;
-
- if (!modules::get_alias("usb-interface") && detect_devices::is_a_recent_computer() && $::isInstall && !$::noauto) {
- #- special case for non detected usb interface on a box with no mouse.
- #- we *must* find out if there really is no usb, otherwise the box may
- #- not be accessible via the keyboard (if the keyboard is USB)
- #- the only way to know this is to make a full pci probe
- modules::load_thiskind("usb", '', 'unsafe');
- if (my $mouse = $fast_mouse_probe->()) {
- return $mouse;
- }
- }
-
- if (modules::get_alias("usb-interface")) {
- eval { modules::load($_) foreach qw(hid mousedev usbmouse) };
- sleep 1;
- if (!$@ && detect_devices::tryOpen("usbmouse")) {
- #- defaults to generic USB mouse on usbmouse.
- log::l("defaulting to usb generic mouse");
- return fullname2mouse("USB|Generic", unsafe => 1);
- }
- }
-
- #- defaults to generic serial mouse on ttyS0.
- #- Oops? using return let return a hash ref, if not using it, it return a list directly :-)
- return fullname2mouse("serial|Generic 2 Button Mouse", unsafe => 1);
-};
diff --git a/perl-install/patch/patch-raidtab.pl b/perl-install/patch/patch-raidtab.pl
deleted file mode 100644
index de03a1b2a..000000000
--- a/perl-install/patch/patch-raidtab.pl
+++ /dev/null
@@ -1,37 +0,0 @@
-use detect_devices;
-package detect_devices;
-log::l("PATCHING");
-
-*raidAutoStartRaidtab = sub {
- my (@parts) = @_;
- log::l("patched raidAutoStartRaidtab");
- $::isInstall or return;
- require raid;
- #- faking a raidtab, it seems to be working :-)))
- #- (choosing any inactive md)
- raid::inactivate_all();
- foreach (@parts) {
- my ($nb) = grep { !raid::is_active("md$_") } 0..7;
- output("/tmp/raidtab", "raiddev /dev/md$nb\n device " . devices::make($_->{device}) . "\n");
- run_program::run('raidstart', '-c', "/tmp/raidtab", devices::make("md$nb"));
- }
- unlink "/tmp/raidtab";
-};
-
-use raid;
-package raid;
-
-*prepare_prefixed = sub {
- my ($raids, $prefix) = @_;
-
- log::l("patched prepare_prefixed");
-
- $raids or return;
-
- &write($raids, "/etc/raidtab") if ! -e "/etc/raidtab";
-
- eval { cp_af("/etc/raidtab", "$prefix/etc/raidtab") };
- foreach (grep { $_ } @$raids) {
- devices::make("$prefix/dev/$_->{device}") foreach @{$_->{disks}};
- }
-};
diff --git a/perl-install/patch/patch-rh9-mdk10.pl b/perl-install/patch/patch-rh9-mdk10.pl
deleted file mode 100644
index 92c4e58ab..000000000
--- a/perl-install/patch/patch-rh9-mdk10.pl
+++ /dev/null
@@ -1,116 +0,0 @@
-
-warn "PATCHING\n";
-log::l("PATCHING\n");
-
-use install_any;
-
-undef *find_root_parts;
-*find_root_parts = sub {
- my ($fstab, $prefix) = @_;
- map {
- my $handle = any::inspect($_, $prefix);
- my $s = $handle && cat_("$handle->{dir}/etc/redhat-release");
- if ($s) {
- chomp($s);
- $s =~ s/\s+for\s+\S+//;
- log::l("find_root_parts found $_->{device}: $s");
- { release => $s, part => $_ };
- } else { () }
- } @$fstab;
-};
-
-
-use pkgs;
-package pkgs;
-
-my $old_compare_pkg = \&URPM::Package::compare_pkg;
-undef *URPM::Package::compare_pkg;
-*URPM::Package::compare_pkg = sub {
- my ($lpkg, $rpkg) = @_;
- my $c = ($lpkg->release =~ /mdk$/ ? 1 : 0) - ($rpkg->release =~ /mdk$/ ? 1 : 0);
- if ($c) {
- my $lpkg_ver = $lpkg->version . '-' . $lpkg->release;
- my $rpkg_ver = $rpkg->version . '-' . $rpkg->release;
- log::l($lpkg->name . ' ' . $rpkg->name . ': prefering ' . ($c == 1 ? "$lpkg_ver over $rpkg_ver" : "$rpkg_ver over $lpkg_ver"));
- return $c;
- }
- &$old_compare_pkg;
-};
-
-my $old_compare = \&URPM::Package::compare;
-undef *URPM::Package::compare;
-*URPM::Package::compare = sub {
- my ($lpkg, $rpkg_ver) = @_;
- my $c = ($lpkg->release =~ /mdk$/ ? 1 : 0) - ($rpkg_ver =~ /mdk$/ ? 1 : 0);
- if ($c) {
- my $lpkg_ver = $lpkg->version . '-' . $lpkg->release;
- log::l($lpkg->name . ' ' . ': prefering ' . ($c == 1 ? "$lpkg_ver over $rpkg_ver" : "$rpkg_ver over $lpkg_ver"));
- return $c;
- }
- &$old_compare;
-};
-
-use install2;
-package install2;
-my $old_choosePackages = \&choosePackages;
-undef *choosePackages;
-*choosePackages = sub {
- my @should_not_be_dirs = qw(/usr/X11R6/lib/X11/xkb /usr/share/locale/zh_TW/LC_TIME /usr/include/GL);
- my @should_be_dirs = qw(/etc/X11/xkb);
- foreach (@should_not_be_dirs) {
- my $f = "$::prefix$_";
- rm_rf($f) if !-l $f && -d $f;
- }
- foreach (@should_be_dirs) {
- my $f = "$::prefix$_";
- rm_rf($f) if -l $f || !-d $f;
- }
- unlink "$::prefix/etc/X11/XF86Config";
- unlink "$::prefix/etc/X11/XF86Config-4";
-
- &$old_choosePackages;
-};
-
-use fs;
-package fs;
-
-my $old = \&read_fstab;
-undef *read_fstab;
-*read_fstab = sub {
- my @l = &$old;
-
- my %label2device = map {
- my $dev = devices::make($_->{device});
- if (my ($label) = `tune2fs -l $dev 2>/dev/null` =~ /volume name:\s*(\S+)/) {
- log::l("device $_->{device} has label $label");
- $label => $_->{device};
- } else {
- ();
- }
- } fsedit::read_proc_partitions([]);
-
- foreach (@l) {
- my ($label) = ($_->{device_LABEL} || $_->{device}) =~ /^LABEL=(.*)/ or next;
- if ($label2device{$label}) {
- $_->{device} = $label2device{$label};
- } else {
- log::l("can't find label $label");
- }
- }
-
- @l;
-};
-
-use any;
-package any;
-
-undef *fix_broken_alternatives;
-*fix_broken_alternatives = sub {
- #- fix bad update-alternatives that may occurs after upgrade (and sometimes for install too).
- -d "$::prefix/etc/alternatives" or return;
-
- foreach (all("$::prefix/etc/alternatives")) {
- log::l("setting alternative $_");
- run_program::rooted($::prefix, 'update-alternatives', '--auto', $_);
- }
-};
diff --git a/perl-install/patch/patch-stage2-updatemodules.pl b/perl-install/patch/patch-stage2-updatemodules.pl
deleted file mode 100644
index a62e83e46..000000000
--- a/perl-install/patch/patch-stage2-updatemodules.pl
+++ /dev/null
@@ -1,12 +0,0 @@
-# put this file in install/patch.pl, and boot with auto_install=install/patch.pl
-# put modules in install/modules and list them below
-
-my @modules = map { "install/modules/$_.ko" } 'tg3';
-
-foreach my $remote (@modules) {
- my $local = '/tmp/' . basename($remote);
-
- install_any::getAndSaveFile($remote, $local);
-
- run_program::run(["/usr/bin/insmod_", "insmod"], "-f", $local);
-}
diff --git a/perl-install/patch/rpmsrate.oem-9.0-openoffice b/perl-install/patch/rpmsrate.oem-9.0-openoffice
deleted file mode 100644
index a8d40cd0f..000000000
--- a/perl-install/patch/rpmsrate.oem-9.0-openoffice
+++ /dev/null
@@ -1,551 +0,0 @@
-LSB
- 5 lsb
-
-GRAPHICAL_DESKTOP
- 4 WindowMaker icewm
- 3 Epplets WMRack blackbox enlightenment ethemes icepref
- wmakerconf xlockmore xfce
- 2 wmnet
- 1 lesstif-mwm xbanner
-
-GNOME
- 5 gnome-panel nautilus gnome-control-center metacity gnome-terminal yelp
- nautilus-gtkhtml
- 4 gnome-tiles gdm gnome-applets gnome-user-docs gtk-themes file-roller
- gnome-network gnome-utils xlockmore gtk-engines2
- gnome-vfs-extras gconf-editor
- 3 gnome-pilot
- 2 bug-buddy
-
-KDE
- 5 kdebase kdebase-nsplugins
- 5 kde-i18n-af kde-i18n-az kde-i18n-bg kde-i18n-ca kde-i18n-cs kde-i18n-da kde-i18n-de kde-i18n-el kde-i18n-en_GB kde-i18n-eo kde-i18n-es kde-i18n-et kde-i18n-fi kde-i18n-fr kde-i18n-he kde-i18n-hu kde-i18n-is kde-i18n-it kde-i18n-ja kde-i18n-ko kde-i18n-lt kde-i18n-lv kde-i18n-nl kde-i18n-no kde-i18n-no_NY kde-i18n-pl kde-i18n-pt kde-i18n-pt_BR kde-i18n-ro kde-i18n-ru kde-i18n-sk kde-i18n-sl kde-i18n-sr kde-i18n-sv kde-i18n-ta kde-i18n-th kde-i18n-tr kde-i18n-uk kde-i18n-zh_CN.GB2312 kde-i18n-zh_TW.Big5
- 4 kdeaddutils kdeadmin kdegraphics kdemultimedia kdenetwork krozat
- kdepim kdetoys kdeutils quanta
-
- 2 kdesdk kdoc
-
-VIDEO
- 4 xine-ui xine-oss xine-xv powerdvd RealPlayer
- 3 nist xanim xmms-smpeg xmovie
- 2 mtv mtv-fullscreen-extension
- 1 bcast mpeg2_movie
-TV
- 4 zapping xawtv gatos
- 4 KDE kwintv
-
-OFFICE
- 4 staroffice-de staroffice-en staroffice-es staroffice-fr staroffice-it
- acroread acroread-nppdf
- OpenOffice.org OpenOffice.org-l10n-ca OpenOffice.org-l10n-cs OpenOffice.org-l10n-da OpenOffice.org-l10n-de OpenOffice.org-l10n-el OpenOffice.org-l10n-en OpenOffice.org-l10n-es OpenOffice.org-l10n-fr OpenOffice.org-l10n-it OpenOffice.org-l10n-ja OpenOffice.org-l10n-ko OpenOffice.org-l10n-nl OpenOffice.org-l10n-pl OpenOffice.org-l10n-pt OpenOffice.org-l10n-ru OpenOffice.org-l10n-sv OpenOffice.org-l10n-tr
- 4 cbb gaddr xpdf moneydance
- 3 wv ical pyDict
- 2 units lyx
- GNOME
- 4 gnome-pim gnome-pim-conduits gnumeric mrproject
- 3 dia gnome-pilot-conduits Guppi
- 2 ggv gnucash
- KDE
- 3 koffice
- 3 koffice-i18n-az koffice-i18n-bg koffice-i18n-cs koffice-i18n-da koffice-i18n-de koffice-i18n-en_GB koffice-i18n-eo koffice-i18n-es koffice-i18n-et koffice-i18n-fr koffice-i18n-hu koffice-i18n-it koffice-i18n-ja koffice-i18n-lt koffice-i18n-mt koffice-i18n-nl koffice-i18n-no koffice-i18n-no_NY koffice-i18n-pl koffice-i18n-pt koffice-i18n-pt_BR koffice-i18n-ro koffice-i18n-ru koffice-i18n-sk koffice-i18n-sl koffice-i18n-sv koffice-i18n-ta koffice-i18n-tr koffice-i18n-uk
- 2 klyx
-
-SOUND
- 5 sox
- 4 aumix
- 4 KDE xmms-arts
-
-AUDIO
- 4 grip xmms xmms-skins
- 4 GNOME gnome-audio gnome-media
- 4 KDE kdelibs-sound
- 4 3D xmms-mesa
- 3 cdp cdparanoia cdrecord-cdda2wav space_sounds timidity-instruments xmms-esd
- xmms-kjofol-skins xmms-more-vis-plugins
- 3 GNOME gnome-audio-extra
- 2 mokmod mp3info mpg123 playmidi playmidi-X11 xmms-mikmod
-
- 4 HW"Rio 500" rio500 grio500
-
-ACCESSIBILITY
- 2 gtkeyboard
-
-PUBLISHING
- 5 enscript ghostscript-module-X
- 4 ghostscript-utils gv psutils texinfo nlpr
- 2 latex2html jadetex tetex-afm tetex-dvips tetex-latex tetex-xdvi tetex-latex-arab tetex-latex-heb docbook-dtd31-sgml
- 2 BOOKS tetex-doc
- 1 docbook-style-dsssl openjade sgml-tools ghostscript-module-SVGALIB cttex
- 1 BOOKS docbook-style-dsssl-doc
-
- 5 CUPS
- cups-drivers xpp
- 5 CUPS || LPR foomatic
- 1 CUPS hpoj
-
-SHELLS
- 3 zsh
- 3 BOOKS bash-doc zsh-doc
- 2 eshell pdksh tcsh
- 1 bash1
-
-SCIENCES
- 5 3D openuniverse
- 4 gnuplot gtkgraphh
- 3 xlispstat HDF
- 2 mathplot octave
- 1 xoscope
-
-EDITORS
- 4 emacs-X11
- 3 GXedit vim-X11 yudit
- 2 nedit cooledit emacs-tramp joe emacs-leim jed-xjed xemacs xemacs-extras xemacs-info
- 1 auctex emacs-el jed xemacs-el emacs-nox xwpe xwpe-X11
- GNOME
- 4 gedit
-
-TEXT_TOOLS
- 5 words
- 4 groff patch recode rgrep
- 4 ispell-af ispell-br ispell-ca ispell-cs ispell-da ispell-de ispell-el ispell-en ispell-eo ispell-es ispell-fi ispell-fr ispell-ga ispell-gd ispell-gv ispell-id ispell-it ispell-nl ispell-no ispell-pl ispell-pt ispell-pt_BR ispell-ro ispell-ru ispell-sk ispell-sl ispell-sv
- 3 ed
- 2 groff-gxditview lout
- BOOKS
- 3 gawk-doc
- 1 lout-doc
-
-COMMUNICATIONS
- 4 efax
- 3 jpilot pilot-link
- 2 hylafax-server hylafax-client dip
- 2 lrzsz mgetty mgetty-contrib mgetty-sendfax mgetty-viewfax mgetty-voice minicom
- 1 jpilot-Mail jpilot-syncmal statserial tkbabel
-
-TERMINALS
- 5 open xterm
- 4 screen kon2
- 3 Eterm vlock
- 1 aterm x3270
-
- 4 KDE ktelnet
- 4 GNOME gnome-telnet
- 4 LOCALES"ja" kterm
-
-NETWORKING_CHAT
- 3 talk ytalk
-NETWORKING_CHAT_SERVER
- 4 jabber
- 3 talk-server
-
-NETWORKING_FILE_TRANSFER
- 5 lftp mirrordir rsync
- 4 gftp rdist
- 3 fmirror ncftp tftp
- 3 GNOME dpsftp
- 2 uucp
-
-NETWORKING_FILE_TRANSFER_SERVER
- 4 proftpd bwbserver_linux
- 2 wu-ftpd anonftp
-
-NETWORKING_LDAP_SERVER
- 4 openldap directory_administrator
-
-NETWORKING_INSTANT_MESSAGING
- 4 licq
- 3 everybuddy licq-console licq-rms
- GNOME
- 5 aspell-br aspell-ca aspell-cs aspell-da aspell-de aspell-de_CH aspell-en aspell-en_CA aspell-en_GB aspell-eo aspell-es aspell-fr aspell-it aspell-nl aspell-no aspell-pl aspell-sv
- 4 gnomeicu gabber gaim
- 3 gtk+licq
-
-NETWORKING_IRC
- 3 BitchX mozilla-irc
- 3 GNOME xchat
- 2 irssi
- 1 eggdrop
-
-NETWORKING_FIREWALLING_SERVER
- 5 iproute2 routed iptables
- 3 prelude
- 1 portsentry
-
-NETWORKING_GROUPWARE_SERVER
- 4 phpgroupware bwbserver_linux
-
-NETWORKING_MAIL
- 5 mailx metamail
- 4 faces mozilla-mail evolution
- 3 fetchmail urlview mutt
- 3 !GNOME !KDE xmailbox
- 2 FaxMail comsat elm faces-xface
- 1 exmh sylpheed fetchmail-daemon fetchmailconf
-NETWORKING_MAIL_SERVER
- 5 postfix
- 4 mailman
-
-NETWORKING_NEWS
- 5 GNOME pan
- 2 slrn tin trn
- 1 slrn-pull xrn
-NETWORKING_NEWS_SERVER
- 4 inn
- 3 inews
-
-NETWORKING_OTHER
- 2 finger fwhois ucd-snmp-utils htdig macutils
-NETWORKING_OTHER_SERVER
- 3 dhcp-server gated timed ntp
-
- 3 intimed mcserv nscd imap pidentd
- rdate bootparamd
- cleanfeed ucd-snmp leafnode
- cvsweb nut-server
- XFree86-Xvfb XFree86-Xnest
- 2 heartbeat diald finger-server mars-nwe
-
-NIS
- 5 ypbind
-NIS_SERVER
- 5 ypserv
-
-NETWORKING_REMOTE_ACCESS
- 5 openssh-clients telnet telnet-client-krb5
- KDE lisa
- 4 traceroute rfbdrake
- 3 vnc
- 2 rsh
- 2 BOOKS vnc-doc
-NETWORKING_REMOTE_ACCESS_SERVER
- 5 openssh-server
- 4 rfbdrake
- 2 vnc-server
- 1 telnet-server-krb5 rsh-server
-
-NETWORKING_DNS
- 4 bind-utils
-NETWORKING_DNS_SERVER
- 5 bind
- 4 caching-nameserver
- 1 nslint
-
-NETWORKING_FILE
- 4 samba-client nfs-utils-clients
- 2 arkeia-gui arkeia-client arkeia-arkc
- 2 GNOME gnomba gtm
- 2 autofs
- 1 am-utils
-NETWORKING_FILE_SERVER
- 5 nfs-utils
- 4 samba-server bwbserver_linux
- 3 BOOKS samba-doc
- 2 arkeia-server samba-winbind
- 3 squid squidGuard
-
-NETWORKING_WWW
- 3 lynx
- 4 !LOCALES"eu" netscape-communicator netscape-plugins
- 4 wget links mozilla Flashplayer crossover-plugin-demo j2re
- 4 GNOME
- screem
- !LOCALES"eu" galeon
- 3 plugger opera bluefish
-NETWORKING_WWW_SERVER
- 5 apache apache-mod_perl mod_ssl mod_php
- 4 apache-suexec
- bwbserver_linux
- 4 BOOKS apache-manual
- 3 php-dba_gdbm_db2 php-gd php-imap php-ldap php-manual php-mysql php-oracle
- php-pgsql php-readline php mod_sxnet auth_ldap HTML-Embperl
- 2 ApacheJServ
- 1 Zope Zope-core Zope-pcgi Zope-zserver
-
-GRAPHICS
- 4 ImageMagick giftrans gimp gphoto gphoto2 qiv ac3d
- 3 gimp-data-extras gqview sketch xwpick xli
- 2 gif2png gimp-perl xpcd xfig xpcd-gimp gd-utils cameleo
- 1 libgr-progs libungif-progs qcad transfig xpaint xmorph
- 1 3D Mesa-demos
- GNOME
- 4 gnome-iconedit
- 3 ee
-
-ARCHIVING
- 5 dump ncompress sharutils unzip
- 4 gtkzip zip
- 3 unarj unstuff mt-st
- 2 taper
- 1 lha
- GNOME
- 4 gnozip
- 3 gtktalog
-
-BURNER
- 5 mkisofs cdrecord
- 4 GNOME gnome-toaster gcombust
- 4 X xcdroast
- 2 X eroaster
- DEVELOPMENT
- 3 cdrecord-devel
-
-SCANNER
- 5 sane-frontends
- 4 gimp
- 4 xsane
-
-PHOTO
- 4 gphoto gphoto2
- 3 gnomemeeting openmcu
-
-DATABASES
- 5 postgresql
- 3 MySQL-client MySQL-shared
- DATABASES_SERVER
- 4 postgresql-server
- 3 MySQL
- 3 postgresql-perl postgresql-python
- 2 postgresql-jdbc postgresql-tk postgresql-odbc postgresql-tcl postgresql-test
- DEVELOPMENT
- 4 perl-Mysql
- 3 postgresql-devel
- 1 MySQL-bench MySQL-devel
-
-GAMES
- 4 sin-demo
- 4 clanbomber freeciv lbreakout2 toppler frozen-bubble
- 3 shogo-demo
- 3 cxhextris rocksndiamonds powermanga mures methane
- 2 Maelstrom pingus ltris penguin-command pysol xtrojka bunnies xpilot trophy xboard xgammon xkobo xpat2 xpuzzles xsoldier xfishtank
- 1 7colors xrally fortune-mod nil
- GNOME
- 4 gnome-games
- 3 gnome-chess
- 2 3D gtulpas
- 1 gtkgo
- DEVELOPMENT
- 2 gnomes-games-devel
- KDE
- 4 kdegames
- DEVELOPMENT
- 2 kdegames-devel
- 3D
- 4 csmash armagetron
- !HW"Riva.*128" chromium tuxracer
-
- 3 !HW"Riva.*128" !HW"Rage X[CL]" !HW"Rage Mobility (?:P\/M|L) " !HW"3D Rage (?:LT|Pro)"
- bzflag
-
-DEVELOPMENT
- 5 autoconf automake m4 make
- 3 autoconf2.5
- 1 tmake pmake pmake-customs
-
- 3 libtool binutils ltrace gdb gcc
- 2 gperf cdecl cproto indent ElectricFence
- 1 egcs glibc-profile xxgdb
-
- 4 gcc-c++ libstdc++5-devel libstdc++-devel
- 2 libsigc++-examples
- 1 egcs-c++
-
- 3 bison flex
- 2 byacc
-
- 2 doxygen C++2LaTeX
-
- 3 jikes kaffe
- 1 gcc-java
-
- 5 cvs rcs
- 2 diffstat tkcvs
-
- 3 swig
-
- 4 python veepee tkinter
- 3 libpython2.2-devel python-devel python-imaging pygtk-glarea pygtk pygtk-libglade rpm-python
-
- 4 perl perl-Term-Readline-Gnu perl-libnet perl-libwww-perl perl-devel
- 3 perl-DBI perl-Digest-MD5 perl-IO-stringy perl-PDL perl-Parse-RecDescent
- perl-GTK-GLArea perl-Tk perlftlib eperl perl-URI perl-DB_File
- perl-Data-ShowTable perl-HTML-Parser perl-HTML-SimpleParse perl-MIME-Base64
- perl-MIME-tools perl-MP3-Info perl-MailTools perl-Msgcat
-
- 4 rpm-build
- 3 rpmlint rpm-devel
- 3 kernel-source
-
- 2 gcc-g77 nasm dev86
- 1 gcc-objc
-
- 2 teyjus gprolog ocaml umb-scheme mawk guile clisp SmallEiffel p2c
- ghc ghc-prof happy haskell-GTK haskell-GTK-devel hugs98 mercury swi-prolog
- ruby-extensions ruby-gtk ruby
-
- 4 gettext-devel
-
- BOOKS
- 2 pam-doc python-docs slang-doc kernel-doc nasm-doc qt2-doc ruby-doc lkmpg
-
- KDE
- 3 kdevelop
- 3 kdebase-devel kdegraphics-devel kdelibs-devel kdelibs-sound-devel
- kdemultimedia-devel kdenetwork-devel
- 1 kdesupport-devel kdeaddutils-devel koffice-devel
-
- GNOME
- 4 perl-GTK-Glade perl-GTK-Gnome
- 3 memprof glade gnome-guile pygnome libgnomeui2_0-devel gnome-guile-devel
- gnome-pim-devel gob
- 2 pygnome-applet pygnome-capplet pygnome-libglade rep-gtk-gnome
- libgnomemm-1.2_9-devel gnomemm-devel libgnome-pilot1-devel gnome-pilot-devel glademm
- 1 gnucash-devel rep-gtk-libglade
-
- DEVELOPMENT_OTHER
- 2 ImageMagick-devel Mesa-common-devel libXaw3d7-devel Xaw3d-devel detect-devel
- libgd2-devel gd-devel p2c-devel libgmp3-devel gmp-devel libguile9-devel guile-devel libgr-devel libjpeg62-devel libjpeg-devel libpng3-devel libpng-devel
- libtermcap2-devel libtermcap-devel libtiff3-devel libtiff-devel libungif4-devel libungif-devel libxml2-devel libxml-devel
- linuxconf-devel libslang1-devel slang-devel sox-devel zlib1-devel zlib-devel XFree86-devel dev86-devel
- libgdk-pixbuf2-devel gdk-pixbuf-devel libgimp1.2_1-devel gimp-devel libgpm1-devel gpm-devel kudzu-devel libghttp1-devel libghttp-devel libgtop2.0_0-devel libgtop-devel
- libmikmod2-devel libmikmod-devel librep9-devel librep-devel libunicode-devel popt-devel pwdb-devel t1lib1-devel t1lib-devel
- ucd-snmp-devel mpeg_lib-devel WindowMaker-devel aalib-devel libadns1-devel adns-devel
- alsa-lib-devel audiofile-devel libcups1-devel cups-devel e2fsprogs-devel egcs-objc-devel
- libg-wrap2-devel g-wrap-devel gkrellm-devel ibtk libPropList-devel licq-devel openldap-devel
- libparted1.6-devel parted-devel pciutils-devel pilot-link-devel svgalib-devel
- recode-devel libaspell10-devel aspell-devel cracklib-devel faces-devel fnlib-devel
- freetype-devel libgtk+mdk0.1_6-devel gtk+mdk-devel libgtkglarea5-devel gtkglarea-devel XFree86-static-libs imap-devel
- php-devel libpth14-devel pth-devel libsane1-devel sane-devel swig-devel xdelta-devel isapnptools-devel
- libpango1.0_0-devel pango-devel readline-devel
-
-MONITORING
- 5 procinfo psacct
- 5 PCMCIA apmd
- 4 lsof swatch tcpdump traceroute
- 3 iplog arpwatch lslk nmap nmap-frontend procps-X11 xcpustate xsysinfo
- 2 cfengine gkrellm gps rusers mon xosview 3D xtraceroute
- 1 logcheck bonnie
- GNOME
- 4 gnome-system-monitor
-
-FILE_TOOLS
- 5 file gnupg mkxauth mtools slocate
- 4 symlinks
- 3 dosfstools draksync mc tree
- 2 git gentoo sfm xwc FileRunner
- 1 xdelta
-
-WEBMIN
- 3 webmin
-
-WIZARDS
- 5 drakwizard
-
-CONFIG
- 4 linuxconf linuxconf-lang-cs linuxconf-lang-de linuxconf-lang-es linuxconf-lang-fi linuxconf-lang-fr linuxconf-lang-hu linuxconf-lang-it linuxconf-lang-ko linuxconf-lang-no linuxconf-lang-pt linuxconf-lang-ro linuxconf-lang-sk linuxconf-lang-sv linuxconf-lang-zh
- 4 X gnome-linuxconf
- 3 ipvsadm quota usernet nut
- 2 gfcc control-panel adjtimex isicom xinput timeconfig samba-swat
- 1 ipxutils
-
-BOOKS
- 3 mandrake_doc-de mandrake_doc-en mandrake_doc-es mandrake_doc-fr mandrake_doc-it mandrake_doc-ru
-
-X
- 5 XFree86 rxvt XFree86-75dpi-fonts urw-fonts
- 5 icewm-light
-
- 4 vim-enhanced
- 4 gurpmi rpmdrake drakconf userdrake fonts-ttf-decoratives fonts-ttf-west_european
- mandrake-mime menudrake mandrake_desk
- mdkonline drakfirsttime gtk-engines bootsplash
- 4 LOCALES"ja" || LOCALES"ko" || LOCALES"zh" rxvt-CJK
-
- 3 XFree86-100dpi-fonts draksync drakprofile
- 3 USB usbview
- 2 LOCALES"ja" || LOCALES"ko" || LOCALES"zh" jmcce
- 2 tksysv imlib-cfgeditor
- 1 DrakeLogo Mesa xtoolwait X11R6-contrib
-
- GNOME
- 3 gnorpm
-
- 5 xcin Chinput xa+cv xvnkb FreeWnn ami kinput2-wnn4
-
- 2 app-defaults-be app-defaults-cs app-defaults-ga app-defaults-ru app-defaults-th app-defaults-uk
-
- 5 CHARSET"iso-8859-13" fonts-type1-baltic
- LOCALES"ru" || LOCALES"uk" XFree86-cyrillic-fonts
- LOCALES"he" fonts-hebrew-elmar
- LOCALES"hy" fonts-ttf-armenian
- LOCALES"ja" fonts-ttf-japanese
- LOCALES"ko" fonts-ttf-korean
- LOCALES"ta" fonts-ttf-tscii fonts-bitmap-tscii
- LOCALES"th" fonts-ttf-thai
- LOCALES"zh_CN" || LOCALES"zh" fonts-ttf-gb2312
- LOCALES"zh_TW" || LOCALES"zh" taipeifonts fonts-ttf-big5
-
-DOCS
- 5 man info man-pages
-
-SYSTEM
- 5 at MAKEDEV eject ldetect devfsd
- locales iputils urpmi cpio msec tmpwatch
-
- 5 HIGH_SECURITY libsafe kernel-secure-2.4.19.16mdk kernel-secure
- 5 BIGMEM kernel-enterprise-2.4.19.16mdk kernel-enterprise
- 5 SMP kernel-smp-2.4.19.16mdk kernel-smp
- 5 PCMCIA pcmcia-cs
- 5 USB hotplug
-
- 5 HW"nForce.*(?:Audio|Network)"
- NVIDIA_nforce-2.4.19-16mdk
- BIGMEM NVIDIA_nforce-2.4.19-16mdk-enterprise
-
- 4 ftp-client-krb5 gpm hexedit strace sudo grub procmail gnupg
-
- 3 bc
- 2 sndconfig kernel-utils acpid adns audiofile freeswan awesfx fbset vlan-utils
- 1 fdutils genromfs mailcap pinfo
-
- BOOKS
- 5 man-pages-cs man-pages-da man-pages-de man-pages-es man-pages-fr man-pages-hu man-pages-id man-pages-it man-pages-ja man-pages-ko man-pages-pl man-pages-ru man-pages-zh
- 3 grub-doc lilo-doc
- howto-html-de howto-html-el howto-html-en howto-html-es howto-html-fr howto-html-hr howto-html-hu howto-html-id howto-html-it howto-html-ja howto-html-ko howto-html-nl howto-html-pl howto-html-ro howto-html-sl howto-html-sv howto-html-zh
-
- 4 NIS yp-tools
- 3 PCMCIA irda-utils
- 3 USB usbutils
-
- 4 LOCALES"ar" || LOCALES"fa" || LOCALES"he" || LOCALES"yi" acon
- 3 LOCALES"zh" zh-autoconvert
-
-EMULATORS
- 3 wine
- 2 BasiliskII-jit
- 1 BasiliskII
- 2 xdosemu
- 1 xmame xmess
-
-INSTALL
- NOCOPY
- 5 kernel-2.4.19.16mdk kernel-2.4.19.16mdk kernel kernel-smp-2.4.19.16mdk kernel-smp-2.4.19.16mdk kernel-smp kernel-enterprise-2.4.19.16mdk kernel-enterprise-2.4.19.16mdk kernel-enterprise
- raidtools lvm reiserfsprogs jfsprogs xfsprogs
- alsa alsa-utils
- 4 XFree86
-
- 5 pptp-adsl dhcpcd dhcpxd dhcp-client isdn4net isdn-light isdn4k-utils ibod rp-pppoe pump wireless-tools speedtouch
- ppp nfs-utils-clients
- autologin ntp cups-drivers samba ncpfs hpoj ucd-snmp libptal0
- libhpojip0 libsnmp0 xojpanel libsane-hpoj0
- ipchains shorewall iptables printer-utils rlpr samba-client
- xpp pdq printer-testpages nmap scli net-tools
- cups lpr foomatic gimpprint
- nc sndconfig
- ImageMagick ghostscript printer-filters mpage a2ps ppdfilt libppd1 gpr groff libgimpprint1 numlock curl
- sane-backends sane-frontends xsane xsane-gimp mtools mtoolsfm
- hotplug dev ypbind speedtouch_mgmt
- 4 XFree86-server XFree86-FBDev
-# 4 XFree86-SVGA XFree86-server XFree86-Mach64 XFree86-FBDev
-# XFree86-glide-module Device3Dfx Glide_V3-DRI Glide_V5 Mesa
-# 3 XFree86-S3 XFree86-S3V XFree86-VGA16
-# 2 XFree86-8514 XFree86-AGX XFree86-I128 XFree86-Mach32 XFree86-Mach8 XFree86-Mono XFree86-P9000 XFree86-W32
-# 1 XFree86-3DLabs XFree86-Sun XFree86-SunMono XFree86-Sun24
diff --git a/perl-install/patch/rpmsrate.oem-9.0-staroffice b/perl-install/patch/rpmsrate.oem-9.0-staroffice
deleted file mode 100644
index 179e19d06..000000000
--- a/perl-install/patch/rpmsrate.oem-9.0-staroffice
+++ /dev/null
@@ -1,552 +0,0 @@
-LSB
- 5 lsb
-
-GRAPHICAL_DESKTOP
- 4 icewm
- 3 WindowMaker
- 3 Epplets WMRack blackbox enlightenment ethemes icepref
- wmakerconf xlockmore xfce
- 2 wmnet
- 1 lesstif-mwm xbanner
-
-GNOME
- 5 gnome-panel nautilus gnome-control-center metacity gnome-terminal yelp
- nautilus-gtkhtml
- 4 gnome-tiles gdm gnome-applets gnome-user-docs gtk-themes file-roller
- gnome-network gnome-utils xlockmore gtk-engines2
- gnome-vfs-extras gconf-editor
- 3 gnome-pilot
- 2 bug-buddy
-
-KDE
- 5 kdebase kdebase-nsplugins
- 5 kde-i18n-af kde-i18n-az kde-i18n-bg kde-i18n-ca kde-i18n-cs kde-i18n-da kde-i18n-de kde-i18n-el kde-i18n-en_GB kde-i18n-eo kde-i18n-es kde-i18n-et kde-i18n-fi kde-i18n-fr kde-i18n-he kde-i18n-hu kde-i18n-is kde-i18n-it kde-i18n-ja kde-i18n-ko kde-i18n-lt kde-i18n-lv kde-i18n-nl kde-i18n-no kde-i18n-no_NY kde-i18n-pl kde-i18n-pt kde-i18n-pt_BR kde-i18n-ro kde-i18n-ru kde-i18n-sk kde-i18n-sl kde-i18n-sr kde-i18n-sv kde-i18n-ta kde-i18n-th kde-i18n-tr kde-i18n-uk kde-i18n-zh_CN.GB2312 kde-i18n-zh_TW.Big5
- 4 kdeaddutils kdeadmin kdegraphics kdemultimedia kdenetwork krozat
- kdepim kdetoys kdeutils quanta
-
- 2 kdesdk kdoc
-
-VIDEO
- 4 xine-ui xine-oss xine-xv powerdvd RealPlayer
- 3 nist xanim xmms-smpeg xmovie
- 2 mtv mtv-fullscreen-extension
- 1 bcast mpeg2_movie
-TV
- 4 zapping xawtv gatos
- 4 KDE kwintv
-
-OFFICE
- 4 staroffice-de staroffice-en staroffice-es staroffice-fr staroffice-it
- acroread acroread-nppdf
- 3 OpenOffice.org OpenOffice.org-l10n-ca OpenOffice.org-l10n-cs OpenOffice.org-l10n-da OpenOffice.org-l10n-de OpenOffice.org-l10n-el OpenOffice.org-l10n-en OpenOffice.org-l10n-es OpenOffice.org-l10n-fr OpenOffice.org-l10n-it OpenOffice.org-l10n-ja OpenOffice.org-l10n-ko OpenOffice.org-l10n-nl OpenOffice.org-l10n-pl OpenOffice.org-l10n-pt OpenOffice.org-l10n-ru OpenOffice.org-l10n-sv OpenOffice.org-l10n-tr
- 4 cbb gaddr xpdf moneydance
- 3 wv ical pyDict
- 2 units lyx
- GNOME
- 4 gnome-pim gnome-pim-conduits gnumeric mrproject
- 3 dia gnome-pilot-conduits Guppi
- 2 ggv gnucash
- KDE
- 3 koffice
- 3 koffice-i18n-az koffice-i18n-bg koffice-i18n-cs koffice-i18n-da koffice-i18n-de koffice-i18n-en_GB koffice-i18n-eo koffice-i18n-es koffice-i18n-et koffice-i18n-fr koffice-i18n-hu koffice-i18n-it koffice-i18n-ja koffice-i18n-lt koffice-i18n-mt koffice-i18n-nl koffice-i18n-no koffice-i18n-no_NY koffice-i18n-pl koffice-i18n-pt koffice-i18n-pt_BR koffice-i18n-ro koffice-i18n-ru koffice-i18n-sk koffice-i18n-sl koffice-i18n-sv koffice-i18n-ta koffice-i18n-tr koffice-i18n-uk
- 2 klyx
-
-SOUND
- 5 sox
- 4 aumix
- 4 KDE xmms-arts
-
-AUDIO
- 4 grip xmms xmms-skins
- 4 GNOME gnome-audio gnome-media
- 4 KDE kdelibs-sound
- 4 3D xmms-mesa
- 3 cdp cdparanoia cdrecord-cdda2wav space_sounds timidity-instruments xmms-esd
- xmms-kjofol-skins xmms-more-vis-plugins
- 3 GNOME gnome-audio-extra
- 2 mokmod mp3info mpg123 playmidi playmidi-X11 xmms-mikmod
-
- 4 HW"Rio 500" rio500 grio500
-
-ACCESSIBILITY
- 2 gtkeyboard
-
-PUBLISHING
- 5 enscript ghostscript-module-X
- 4 ghostscript-utils gv psutils texinfo nlpr
- 2 latex2html jadetex tetex-afm tetex-dvips tetex-latex tetex-xdvi tetex-latex-arab tetex-latex-heb docbook-dtd31-sgml
- 2 BOOKS tetex-doc
- 1 docbook-style-dsssl openjade sgml-tools ghostscript-module-SVGALIB cttex
- 1 BOOKS docbook-style-dsssl-doc
-
- 5 CUPS
- cups-drivers xpp
- 5 CUPS || LPR foomatic
- 1 CUPS hpoj
-
-SHELLS
- 3 zsh
- 3 BOOKS bash-doc zsh-doc
- 2 eshell pdksh tcsh
- 1 bash1
-
-SCIENCES
- 5 3D openuniverse
- 4 gnuplot gtkgraphh
- 3 xlispstat HDF
- 2 mathplot octave
- 1 xoscope
-
-EDITORS
- 4 emacs-X11
- 3 GXedit vim-X11 yudit
- 2 nedit cooledit emacs-tramp joe emacs-leim jed-xjed xemacs xemacs-extras xemacs-info
- 1 auctex emacs-el jed xemacs-el emacs-nox xwpe xwpe-X11
- GNOME
- 4 gedit
-
-TEXT_TOOLS
- 5 words
- 4 groff patch recode rgrep
- 4 ispell-af ispell-br ispell-ca ispell-cs ispell-da ispell-de ispell-el ispell-en ispell-eo ispell-es ispell-fi ispell-fr ispell-ga ispell-gd ispell-gv ispell-id ispell-it ispell-nl ispell-no ispell-pl ispell-pt ispell-pt_BR ispell-ro ispell-ru ispell-sk ispell-sl ispell-sv
- 3 ed
- 2 groff-gxditview lout
- BOOKS
- 3 gawk-doc
- 1 lout-doc
-
-COMMUNICATIONS
- 4 efax
- 3 jpilot pilot-link
- 2 hylafax-server hylafax-client dip
- 2 lrzsz mgetty mgetty-contrib mgetty-sendfax mgetty-viewfax mgetty-voice minicom
- 1 jpilot-Mail jpilot-syncmal statserial tkbabel
-
-TERMINALS
- 5 open xterm
- 4 screen kon2
- 3 Eterm vlock
- 1 aterm x3270
-
- 4 KDE ktelnet
- 4 GNOME gnome-telnet
- 4 LOCALES"ja" kterm
-
-NETWORKING_CHAT
- 3 talk ytalk
-NETWORKING_CHAT_SERVER
- 4 jabber
- 3 talk-server
-
-NETWORKING_FILE_TRANSFER
- 5 lftp mirrordir rsync
- 4 gftp rdist
- 3 fmirror ncftp tftp
- 3 GNOME dpsftp
- 2 uucp
-
-NETWORKING_FILE_TRANSFER_SERVER
- 4 proftpd bwbserver_linux
- 2 wu-ftpd anonftp
-
-NETWORKING_LDAP_SERVER
- 4 openldap directory_administrator
-
-NETWORKING_INSTANT_MESSAGING
- 4 licq
- 3 everybuddy licq-console licq-rms
- GNOME
- 5 aspell-br aspell-ca aspell-cs aspell-da aspell-de aspell-de_CH aspell-en aspell-en_CA aspell-en_GB aspell-eo aspell-es aspell-fr aspell-it aspell-nl aspell-no aspell-pl aspell-sv
- 4 gnomeicu gabber gaim
- 3 gtk+licq
-
-NETWORKING_IRC
- 3 BitchX mozilla-irc
- 3 GNOME xchat
- 2 irssi
- 1 eggdrop
-
-NETWORKING_FIREWALLING_SERVER
- 5 iproute2 routed iptables
- 3 prelude
- 1 portsentry
-
-NETWORKING_GROUPWARE_SERVER
- 4 phpgroupware bwbserver_linux
-
-NETWORKING_MAIL
- 5 mailx metamail
- 4 faces mozilla-mail evolution
- 3 fetchmail urlview mutt
- 3 !GNOME !KDE xmailbox
- 2 FaxMail comsat elm faces-xface
- 1 exmh sylpheed fetchmail-daemon fetchmailconf
-NETWORKING_MAIL_SERVER
- 5 postfix
- 4 mailman
-
-NETWORKING_NEWS
- 5 GNOME pan
- 2 slrn tin trn
- 1 slrn-pull xrn
-NETWORKING_NEWS_SERVER
- 4 inn
- 3 inews
-
-NETWORKING_OTHER
- 2 finger fwhois ucd-snmp-utils htdig macutils
-NETWORKING_OTHER_SERVER
- 3 dhcp-server gated timed ntp
-
- 3 intimed mcserv nscd imap pidentd
- rdate bootparamd
- cleanfeed ucd-snmp leafnode
- cvsweb nut-server
- XFree86-Xvfb XFree86-Xnest
- 2 heartbeat diald finger-server mars-nwe
-
-NIS
- 5 ypbind
-NIS_SERVER
- 5 ypserv
-
-NETWORKING_REMOTE_ACCESS
- 5 openssh-clients telnet telnet-client-krb5
- KDE lisa
- 4 traceroute rfbdrake
- 3 vnc
- 2 rsh
- 2 BOOKS vnc-doc
-NETWORKING_REMOTE_ACCESS_SERVER
- 5 openssh-server
- 4 rfbdrake
- 2 vnc-server
- 1 telnet-server-krb5 rsh-server
-
-NETWORKING_DNS
- 4 bind-utils
-NETWORKING_DNS_SERVER
- 5 bind
- 4 caching-nameserver
- 1 nslint
-
-NETWORKING_FILE
- 4 samba-client nfs-utils-clients
- 2 arkeia-gui arkeia-client arkeia-arkc
- 2 GNOME gnomba gtm
- 2 autofs
- 1 am-utils
-NETWORKING_FILE_SERVER
- 5 nfs-utils
- 4 samba-server bwbserver_linux
- 3 BOOKS samba-doc
- 2 arkeia-server samba-winbind
- 3 squid squidGuard
-
-NETWORKING_WWW
- 3 lynx
- 4 !LOCALES"eu" netscape-communicator netscape-plugins
- 4 wget links mozilla Flashplayer crossover-plugin-demo j2re
- 4 GNOME
- screem
- !LOCALES"eu" galeon
- 3 plugger opera bluefish
-NETWORKING_WWW_SERVER
- 5 apache apache-mod_perl mod_ssl mod_php
- 4 apache-suexec
- bwbserver_linux
- 4 BOOKS apache-manual
- 3 php-dba_gdbm_db2 php-gd php-imap php-ldap php-manual php-mysql php-oracle
- php-pgsql php-readline php mod_sxnet auth_ldap HTML-Embperl
- 2 ApacheJServ
- 1 Zope Zope-core Zope-pcgi Zope-zserver
-
-GRAPHICS
- 4 ImageMagick giftrans gimp gphoto gphoto2 qiv ac3d
- 3 gimp-data-extras gqview sketch xwpick xli
- 2 gif2png gimp-perl xpcd xfig xpcd-gimp gd-utils cameleo
- 1 libgr-progs libungif-progs qcad transfig xpaint xmorph
- 1 3D Mesa-demos
- GNOME
- 4 gnome-iconedit
- 3 ee
-
-ARCHIVING
- 5 dump ncompress sharutils unzip
- 4 gtkzip zip
- 3 unarj unstuff mt-st
- 2 taper
- 1 lha
- GNOME
- 4 gnozip
- 3 gtktalog
-
-BURNER
- 5 mkisofs cdrecord
- 4 GNOME gnome-toaster gcombust
- 4 X xcdroast
- 2 X eroaster
- DEVELOPMENT
- 3 cdrecord-devel
-
-SCANNER
- 5 sane-frontends
- 4 gimp
- 4 xsane
-
-PHOTO
- 4 gphoto gphoto2
- 3 gnomemeeting openmcu
-
-DATABASES
- 5 postgresql
- 3 MySQL-client MySQL-shared
- DATABASES_SERVER
- 4 postgresql-server
- 3 MySQL
- 3 postgresql-perl postgresql-python
- 2 postgresql-jdbc postgresql-tk postgresql-odbc postgresql-tcl postgresql-test
- DEVELOPMENT
- 4 perl-Mysql
- 3 postgresql-devel
- 1 MySQL-bench MySQL-devel
-
-GAMES
- 4 sin-demo
- 3 clanbomber freeciv lbreakout2 toppler frozen-bubble
- 3 shogo-demo
- 3 cxhextris rocksndiamonds powermanga mures methane
- 2 Maelstrom pingus ltris penguin-command pysol xtrojka bunnies xpilot trophy xboard xgammon xkobo xpat2 xpuzzles xsoldier xfishtank
- 1 7colors xrally fortune-mod nil
- GNOME
- 3 gnome-games
- 3 gnome-chess
- 2 3D gtulpas
- 1 gtkgo
- DEVELOPMENT
- 2 gnomes-games-devel
- KDE
- 3 kdegames
- DEVELOPMENT
- 2 kdegames-devel
- 3D
- 3 csmash armagetron
- !HW"Riva.*128" chromium tuxracer
-
- 3 !HW"Riva.*128" !HW"Rage X[CL]" !HW"Rage Mobility (?:P\/M|L) " !HW"3D Rage (?:LT|Pro)"
- bzflag
-
-DEVELOPMENT
- 3 autoconf automake m4 make
- 3 autoconf2.5
- 1 tmake pmake pmake-customs
-
- 3 libtool binutils ltrace gdb gcc
- 2 gperf cdecl cproto indent ElectricFence
- 1 egcs glibc-profile xxgdb
-
- 3 gcc-c++ libstdc++5-devel libstdc++-devel
- 2 libsigc++-examples
- 1 egcs-c++
-
- 3 bison flex
- 2 byacc
-
- 2 doxygen C++2LaTeX
-
- 3 jikes kaffe
- 1 gcc-java
-
- 3 cvs rcs
- 2 diffstat tkcvs
-
- 3 swig
-
- 3 python veepee tkinter
- 3 libpython2.2-devel python-devel python-imaging pygtk-glarea pygtk pygtk-libglade rpm-python
-
- 4 perl perl-Term-Readline-Gnu perl-libnet perl-libwww-perl perl-devel
- 3 perl-DBI perl-Digest-MD5 perl-IO-stringy perl-PDL perl-Parse-RecDescent
- perl-GTK-GLArea perl-Tk perlftlib eperl perl-URI perl-DB_File
- perl-Data-ShowTable perl-HTML-Parser perl-HTML-SimpleParse perl-MIME-Base64
- perl-MIME-tools perl-MP3-Info perl-MailTools perl-Msgcat
-
- 3 rpm-build
- 3 rpmlint rpm-devel
- 3 kernel-source
-
- 2 gcc-g77 nasm dev86
- 1 gcc-objc
-
- 2 teyjus gprolog ocaml umb-scheme mawk guile clisp SmallEiffel p2c
- ghc ghc-prof happy haskell-GTK haskell-GTK-devel hugs98 mercury swi-prolog
- ruby-extensions ruby-gtk ruby
-
- 3 gettext-devel
-
- BOOKS
- 2 pam-doc python-docs slang-doc kernel-doc nasm-doc qt2-doc ruby-doc lkmpg
-
- KDE
- 3 kdevelop
- 3 kdebase-devel kdegraphics-devel kdelibs-devel kdelibs-sound-devel
- kdemultimedia-devel kdenetwork-devel
- 1 kdesupport-devel kdeaddutils-devel koffice-devel
-
- GNOME
- 4 perl-GTK-Glade perl-GTK-Gnome
- 3 memprof glade gnome-guile pygnome libgnomeui2_0-devel gnome-guile-devel
- gnome-pim-devel gob
- 2 pygnome-applet pygnome-capplet pygnome-libglade rep-gtk-gnome
- libgnomemm-1.2_9-devel gnomemm-devel libgnome-pilot1-devel gnome-pilot-devel glademm
- 1 gnucash-devel rep-gtk-libglade
-
- DEVELOPMENT_OTHER
- 2 ImageMagick-devel Mesa-common-devel libXaw3d7-devel Xaw3d-devel detect-devel
- libgd2-devel gd-devel p2c-devel libgmp3-devel gmp-devel libguile9-devel guile-devel libgr-devel libjpeg62-devel libjpeg-devel libpng3-devel libpng-devel
- libtermcap2-devel libtermcap-devel libtiff3-devel libtiff-devel libungif4-devel libungif-devel libxml2-devel libxml-devel
- linuxconf-devel libslang1-devel slang-devel sox-devel zlib1-devel zlib-devel XFree86-devel dev86-devel
- libgdk-pixbuf2-devel gdk-pixbuf-devel libgimp1.2_1-devel gimp-devel libgpm1-devel gpm-devel kudzu-devel libghttp1-devel libghttp-devel libgtop2.0_0-devel libgtop-devel
- libmikmod2-devel libmikmod-devel librep9-devel librep-devel libunicode-devel popt-devel pwdb-devel t1lib1-devel t1lib-devel
- ucd-snmp-devel mpeg_lib-devel WindowMaker-devel aalib-devel libadns1-devel adns-devel
- alsa-lib-devel audiofile-devel libcups1-devel cups-devel e2fsprogs-devel egcs-objc-devel
- libg-wrap2-devel g-wrap-devel gkrellm-devel ibtk libPropList-devel licq-devel openldap-devel
- libparted1.6-devel parted-devel pciutils-devel pilot-link-devel svgalib-devel
- recode-devel libaspell10-devel aspell-devel cracklib-devel faces-devel fnlib-devel
- freetype-devel libgtk+mdk0.1_6-devel gtk+mdk-devel libgtkglarea5-devel gtkglarea-devel XFree86-static-libs imap-devel
- php-devel libpth14-devel pth-devel libsane1-devel sane-devel swig-devel xdelta-devel isapnptools-devel
- libpango1.0_0-devel pango-devel readline-devel
-
-MONITORING
- 5 procinfo psacct
- 5 PCMCIA apmd
- 4 lsof swatch tcpdump traceroute
- 3 iplog arpwatch lslk nmap nmap-frontend procps-X11 xcpustate xsysinfo
- 2 cfengine gkrellm gps rusers mon xosview 3D xtraceroute
- 1 logcheck bonnie
- GNOME
- 4 gnome-system-monitor
-
-FILE_TOOLS
- 5 file gnupg mkxauth mtools slocate
- 4 symlinks
- 3 dosfstools draksync mc tree
- 2 git gentoo sfm xwc FileRunner
- 1 xdelta
-
-WEBMIN
- 3 webmin
-
-WIZARDS
- 5 drakwizard
-
-CONFIG
- 4 linuxconf linuxconf-lang-cs linuxconf-lang-de linuxconf-lang-es linuxconf-lang-fi linuxconf-lang-fr linuxconf-lang-hu linuxconf-lang-it linuxconf-lang-ko linuxconf-lang-no linuxconf-lang-pt linuxconf-lang-ro linuxconf-lang-sk linuxconf-lang-sv linuxconf-lang-zh
- 4 X gnome-linuxconf
- 3 ipvsadm quota usernet nut
- 2 gfcc control-panel adjtimex isicom xinput timeconfig samba-swat
- 1 ipxutils
-
-BOOKS
- 3 mandrake_doc-de mandrake_doc-en mandrake_doc-es mandrake_doc-fr mandrake_doc-it mandrake_doc-ru
-
-X
- 5 XFree86 rxvt XFree86-75dpi-fonts urw-fonts
- 5 icewm-light
-
- 4 vim-enhanced
- 4 gurpmi rpmdrake drakconf userdrake fonts-ttf-decoratives fonts-ttf-west_european
- mandrake-mime menudrake mandrake_desk
- mdkonline drakfirsttime gtk-engines bootsplash
- 4 LOCALES"ja" || LOCALES"ko" || LOCALES"zh" rxvt-CJK
-
- 3 XFree86-100dpi-fonts draksync drakprofile
- 3 USB usbview
- 2 LOCALES"ja" || LOCALES"ko" || LOCALES"zh" jmcce
- 2 tksysv imlib-cfgeditor
- 1 DrakeLogo Mesa xtoolwait X11R6-contrib
-
- GNOME
- 3 gnorpm
-
- 5 xcin Chinput xa+cv xvnkb FreeWnn ami kinput2-wnn4
-
- 2 app-defaults-be app-defaults-cs app-defaults-ga app-defaults-ru app-defaults-th app-defaults-uk
-
- 5 CHARSET"iso-8859-13" fonts-type1-baltic
- LOCALES"ru" || LOCALES"uk" XFree86-cyrillic-fonts
- LOCALES"he" fonts-hebrew-elmar
- LOCALES"hy" fonts-ttf-armenian
- LOCALES"ja" fonts-ttf-japanese
- LOCALES"ko" fonts-ttf-korean
- LOCALES"ta" fonts-ttf-tscii fonts-bitmap-tscii
- LOCALES"th" fonts-ttf-thai
- LOCALES"zh_CN" || LOCALES"zh" fonts-ttf-gb2312
- LOCALES"zh_TW" || LOCALES"zh" taipeifonts fonts-ttf-big5
-
-DOCS
- 5 man info man-pages
-
-SYSTEM
- 5 at MAKEDEV eject ldetect devfsd
- locales iputils urpmi cpio msec tmpwatch
-
- 5 HIGH_SECURITY libsafe kernel-secure-2.4.19.16mdk kernel-secure
- 5 BIGMEM kernel-enterprise-2.4.19.16mdk kernel-enterprise
- 5 SMP kernel-smp-2.4.19.16mdk kernel-smp
- 5 PCMCIA pcmcia-cs
- 5 USB hotplug
-
- 5 HW"nForce.*(?:Audio|Network)"
- NVIDIA_nforce-2.4.19-16mdk
- BIGMEM NVIDIA_nforce-2.4.19-16mdk-enterprise
-
- 4 ftp-client-krb5 gpm hexedit strace sudo grub procmail gnupg
-
- 3 bc
- 2 sndconfig kernel-utils acpid adns audiofile freeswan awesfx fbset vlan-utils
- 1 fdutils genromfs mailcap pinfo
-
- BOOKS
- 5 man-pages-cs man-pages-da man-pages-de man-pages-es man-pages-fr man-pages-hu man-pages-id man-pages-it man-pages-ja man-pages-ko man-pages-pl man-pages-ru man-pages-zh
- 3 grub-doc lilo-doc
- howto-html-de howto-html-el howto-html-en howto-html-es howto-html-fr howto-html-hr howto-html-hu howto-html-id howto-html-it howto-html-ja howto-html-ko howto-html-nl howto-html-pl howto-html-ro howto-html-sl howto-html-sv howto-html-zh
-
- 4 NIS yp-tools
- 3 PCMCIA irda-utils
- 3 USB usbutils
-
- 4 LOCALES"ar" || LOCALES"fa" || LOCALES"he" || LOCALES"yi" acon
- 3 LOCALES"zh" zh-autoconvert
-
-EMULATORS
- 3 wine
- 2 BasiliskII-jit
- 1 BasiliskII
- 2 xdosemu
- 1 xmame xmess
-
-INSTALL
- NOCOPY
- 5 kernel-2.4.19.16mdk kernel-2.4.19.16mdk kernel kernel-smp-2.4.19.16mdk kernel-smp-2.4.19.16mdk kernel-smp kernel-enterprise-2.4.19.16mdk kernel-enterprise-2.4.19.16mdk kernel-enterprise
- raidtools lvm reiserfsprogs jfsprogs xfsprogs
- alsa alsa-utils
- 4 XFree86
-
- 5 pptp-adsl dhcpcd dhcpxd dhcp-client isdn4net isdn-light isdn4k-utils ibod rp-pppoe pump wireless-tools speedtouch
- ppp nfs-utils-clients
- autologin ntp cups-drivers samba ncpfs hpoj ucd-snmp libptal0
- libhpojip0 libsnmp0 xojpanel libsane-hpoj0
- ipchains shorewall iptables printer-utils rlpr samba-client
- xpp pdq printer-testpages nmap scli net-tools
- cups lpr foomatic gimpprint
- nc sndconfig
- ImageMagick ghostscript printer-filters mpage a2ps ppdfilt libppd1 gpr groff libgimpprint1 numlock curl
- sane-backends sane-frontends xsane xsane-gimp mtools mtoolsfm
- hotplug dev ypbind speedtouch_mgmt
- 4 XFree86-server XFree86-FBDev
-# 4 XFree86-SVGA XFree86-server XFree86-Mach64 XFree86-FBDev
-# XFree86-glide-module Device3Dfx Glide_V3-DRI Glide_V5 Mesa
-# 3 XFree86-S3 XFree86-S3V XFree86-VGA16
-# 2 XFree86-8514 XFree86-AGX XFree86-I128 XFree86-Mach32 XFree86-Mach8 XFree86-Mono XFree86-P9000 XFree86-W32
-# 1 XFree86-3DLabs XFree86-Sun XFree86-SunMono XFree86-Sun24
diff --git a/perl-install/perl2etags b/perl-install/perl2etags
deleted file mode 100755
index 6eed722c0..000000000
--- a/perl-install/perl2etags
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/usr/bin/perl -p
-
-if (/^ / ... !/^ /) {
- ($package) = /(.*).pm,/;
- $package =~ s|/|::|g;
-}
-
-s/(\x7F)(sub\s+)?(\w+)(\([^)]*\))?/$1${package}::$3/;
diff --git a/perl-install/pixmaps/about-printerdrake.png b/perl-install/pixmaps/about-printerdrake.png
deleted file mode 100644
index ebab96dfe..000000000
--- a/perl-install/pixmaps/about-printerdrake.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/arrow_down.png b/perl-install/pixmaps/arrow_down.png
deleted file mode 100644
index 256dee04e..000000000
--- a/perl-install/pixmaps/arrow_down.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/arrow_up.png b/perl-install/pixmaps/arrow_up.png
deleted file mode 100644
index fd2408b23..000000000
--- a/perl-install/pixmaps/arrow_up.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/colors.png b/perl-install/pixmaps/colors.png
deleted file mode 100644
index 8de1929b4..000000000
--- a/perl-install/pixmaps/colors.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/colors16.png b/perl-install/pixmaps/colors16.png
deleted file mode 100644
index 9663c6140..000000000
--- a/perl-install/pixmaps/colors16.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/colors8.png b/perl-install/pixmaps/colors8.png
deleted file mode 100644
index 904517e2f..000000000
--- a/perl-install/pixmaps/colors8.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/connected.png b/perl-install/pixmaps/connected.png
deleted file mode 100755
index 3fc98ceb9..000000000
--- a/perl-install/pixmaps/connected.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/disconnected.png b/perl-install/pixmaps/disconnected.png
deleted file mode 100644
index 1c0509048..000000000
--- a/perl-install/pixmaps/disconnected.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/ic82-tape-40.png b/perl-install/pixmaps/ic82-tape-40.png
deleted file mode 100644
index d42585c1b..000000000
--- a/perl-install/pixmaps/ic82-tape-40.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-af.png b/perl-install/pixmaps/langs/lang-af.png
deleted file mode 100644
index 08a6a6212..000000000
--- a/perl-install/pixmaps/langs/lang-af.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-am.png b/perl-install/pixmaps/langs/lang-am.png
deleted file mode 100644
index ee9f7ae92..000000000
--- a/perl-install/pixmaps/langs/lang-am.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ar.png b/perl-install/pixmaps/langs/lang-ar.png
deleted file mode 100644
index e4abc7176..000000000
--- a/perl-install/pixmaps/langs/lang-ar.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-as.png b/perl-install/pixmaps/langs/lang-as.png
deleted file mode 100644
index 4f4c6d640..000000000
--- a/perl-install/pixmaps/langs/lang-as.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-az.png b/perl-install/pixmaps/langs/lang-az.png
deleted file mode 100644
index 9aef0bb54..000000000
--- a/perl-install/pixmaps/langs/lang-az.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-be.png b/perl-install/pixmaps/langs/lang-be.png
deleted file mode 100644
index e9cbbbad8..000000000
--- a/perl-install/pixmaps/langs/lang-be.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ber.png b/perl-install/pixmaps/langs/lang-ber.png
deleted file mode 100644
index 758f87d27..000000000
--- a/perl-install/pixmaps/langs/lang-ber.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-bg.png b/perl-install/pixmaps/langs/lang-bg.png
deleted file mode 100644
index d815d9f5c..000000000
--- a/perl-install/pixmaps/langs/lang-bg.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-bn.png b/perl-install/pixmaps/langs/lang-bn.png
deleted file mode 100644
index 1fed9d2c4..000000000
--- a/perl-install/pixmaps/langs/lang-bn.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-br.png b/perl-install/pixmaps/langs/lang-br.png
deleted file mode 100644
index 51b8a87de..000000000
--- a/perl-install/pixmaps/langs/lang-br.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-bs.png b/perl-install/pixmaps/langs/lang-bs.png
deleted file mode 100644
index df795a31f..000000000
--- a/perl-install/pixmaps/langs/lang-bs.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ca.png b/perl-install/pixmaps/langs/lang-ca.png
deleted file mode 100644
index 8609cba11..000000000
--- a/perl-install/pixmaps/langs/lang-ca.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-chr.png b/perl-install/pixmaps/langs/lang-chr.png
deleted file mode 100644
index b93621609..000000000
--- a/perl-install/pixmaps/langs/lang-chr.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-cs.png b/perl-install/pixmaps/langs/lang-cs.png
deleted file mode 100644
index a9606348c..000000000
--- a/perl-install/pixmaps/langs/lang-cs.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-csb.png b/perl-install/pixmaps/langs/lang-csb.png
deleted file mode 100644
index 897f65a02..000000000
--- a/perl-install/pixmaps/langs/lang-csb.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-cy.png b/perl-install/pixmaps/langs/lang-cy.png
deleted file mode 100644
index b62fd955c..000000000
--- a/perl-install/pixmaps/langs/lang-cy.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-da.png b/perl-install/pixmaps/langs/lang-da.png
deleted file mode 100644
index 5e0e36fb0..000000000
--- a/perl-install/pixmaps/langs/lang-da.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-de.png b/perl-install/pixmaps/langs/lang-de.png
deleted file mode 100644
index d9bedadc0..000000000
--- a/perl-install/pixmaps/langs/lang-de.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-el.png b/perl-install/pixmaps/langs/lang-el.png
deleted file mode 100644
index 62b1bba08..000000000
--- a/perl-install/pixmaps/langs/lang-el.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-en_GB.png b/perl-install/pixmaps/langs/lang-en_GB.png
deleted file mode 100644
index 15ee5fa24..000000000
--- a/perl-install/pixmaps/langs/lang-en_GB.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-en_IE.png b/perl-install/pixmaps/langs/lang-en_IE.png
deleted file mode 100644
index fabe38773..000000000
--- a/perl-install/pixmaps/langs/lang-en_IE.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-en_US.png b/perl-install/pixmaps/langs/lang-en_US.png
deleted file mode 100644
index 974c3283e..000000000
--- a/perl-install/pixmaps/langs/lang-en_US.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-eo.png b/perl-install/pixmaps/langs/lang-eo.png
deleted file mode 100644
index 063942f3a..000000000
--- a/perl-install/pixmaps/langs/lang-eo.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-es.png b/perl-install/pixmaps/langs/lang-es.png
deleted file mode 100644
index e08d98f13..000000000
--- a/perl-install/pixmaps/langs/lang-es.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-et.png b/perl-install/pixmaps/langs/lang-et.png
deleted file mode 100644
index a93082949..000000000
--- a/perl-install/pixmaps/langs/lang-et.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-eu.png b/perl-install/pixmaps/langs/lang-eu.png
deleted file mode 100644
index 024bc1bff..000000000
--- a/perl-install/pixmaps/langs/lang-eu.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-fa.png b/perl-install/pixmaps/langs/lang-fa.png
deleted file mode 100644
index 2edc3e2c0..000000000
--- a/perl-install/pixmaps/langs/lang-fa.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-fi.png b/perl-install/pixmaps/langs/lang-fi.png
deleted file mode 100644
index 20c6b4654..000000000
--- a/perl-install/pixmaps/langs/lang-fi.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-fo.png b/perl-install/pixmaps/langs/lang-fo.png
deleted file mode 100644
index 8b3dc056e..000000000
--- a/perl-install/pixmaps/langs/lang-fo.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-fr.png b/perl-install/pixmaps/langs/lang-fr.png
deleted file mode 100644
index f871e3e5b..000000000
--- a/perl-install/pixmaps/langs/lang-fr.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-fur.png b/perl-install/pixmaps/langs/lang-fur.png
deleted file mode 100644
index 426f94c54..000000000
--- a/perl-install/pixmaps/langs/lang-fur.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-fy.png b/perl-install/pixmaps/langs/lang-fy.png
deleted file mode 100644
index 6a09f98cc..000000000
--- a/perl-install/pixmaps/langs/lang-fy.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ga.png b/perl-install/pixmaps/langs/lang-ga.png
deleted file mode 100644
index af049dab0..000000000
--- a/perl-install/pixmaps/langs/lang-ga.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-gd.png b/perl-install/pixmaps/langs/lang-gd.png
deleted file mode 100644
index 01ebf64bb..000000000
--- a/perl-install/pixmaps/langs/lang-gd.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-gl.png b/perl-install/pixmaps/langs/lang-gl.png
deleted file mode 100644
index dacb6b91b..000000000
--- a/perl-install/pixmaps/langs/lang-gl.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-gn.png b/perl-install/pixmaps/langs/lang-gn.png
deleted file mode 100644
index 93c58a779..000000000
--- a/perl-install/pixmaps/langs/lang-gn.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-gu.png b/perl-install/pixmaps/langs/lang-gu.png
deleted file mode 100644
index 10685a0fe..000000000
--- a/perl-install/pixmaps/langs/lang-gu.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-gv.png b/perl-install/pixmaps/langs/lang-gv.png
deleted file mode 100644
index 76e2c242a..000000000
--- a/perl-install/pixmaps/langs/lang-gv.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ha.png b/perl-install/pixmaps/langs/lang-ha.png
deleted file mode 100644
index e84e1b191..000000000
--- a/perl-install/pixmaps/langs/lang-ha.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-he.png b/perl-install/pixmaps/langs/lang-he.png
deleted file mode 100644
index a3a43a179..000000000
--- a/perl-install/pixmaps/langs/lang-he.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-hi.png b/perl-install/pixmaps/langs/lang-hi.png
deleted file mode 100644
index 3749905da..000000000
--- a/perl-install/pixmaps/langs/lang-hi.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-hr.png b/perl-install/pixmaps/langs/lang-hr.png
deleted file mode 100644
index 42add5cf5..000000000
--- a/perl-install/pixmaps/langs/lang-hr.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-hu.png b/perl-install/pixmaps/langs/lang-hu.png
deleted file mode 100644
index baa0be79a..000000000
--- a/perl-install/pixmaps/langs/lang-hu.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-hy.png b/perl-install/pixmaps/langs/lang-hy.png
deleted file mode 100644
index 969a0f0ec..000000000
--- a/perl-install/pixmaps/langs/lang-hy.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ia.png b/perl-install/pixmaps/langs/lang-ia.png
deleted file mode 100644
index ee4d1b2bd..000000000
--- a/perl-install/pixmaps/langs/lang-ia.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-id.png b/perl-install/pixmaps/langs/lang-id.png
deleted file mode 100644
index a31b4f3ee..000000000
--- a/perl-install/pixmaps/langs/lang-id.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ik.png b/perl-install/pixmaps/langs/lang-ik.png
deleted file mode 100644
index 1fad276d8..000000000
--- a/perl-install/pixmaps/langs/lang-ik.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-is.png b/perl-install/pixmaps/langs/lang-is.png
deleted file mode 100644
index ea7aea4d2..000000000
--- a/perl-install/pixmaps/langs/lang-is.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-it.png b/perl-install/pixmaps/langs/lang-it.png
deleted file mode 100644
index 123c65155..000000000
--- a/perl-install/pixmaps/langs/lang-it.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-iu.png b/perl-install/pixmaps/langs/lang-iu.png
deleted file mode 100644
index eef7f3184..000000000
--- a/perl-install/pixmaps/langs/lang-iu.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ja.png b/perl-install/pixmaps/langs/lang-ja.png
deleted file mode 100644
index 7c521e108..000000000
--- a/perl-install/pixmaps/langs/lang-ja.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ka.png b/perl-install/pixmaps/langs/lang-ka.png
deleted file mode 100644
index 56157f8bc..000000000
--- a/perl-install/pixmaps/langs/lang-ka.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-kk.png b/perl-install/pixmaps/langs/lang-kk.png
deleted file mode 100644
index 008c6182d..000000000
--- a/perl-install/pixmaps/langs/lang-kk.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-kl.png b/perl-install/pixmaps/langs/lang-kl.png
deleted file mode 100644
index fc471261b..000000000
--- a/perl-install/pixmaps/langs/lang-kl.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-km.png b/perl-install/pixmaps/langs/lang-km.png
deleted file mode 100644
index 20836b561..000000000
--- a/perl-install/pixmaps/langs/lang-km.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-kn.png b/perl-install/pixmaps/langs/lang-kn.png
deleted file mode 100644
index 6cf704799..000000000
--- a/perl-install/pixmaps/langs/lang-kn.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ko.png b/perl-install/pixmaps/langs/lang-ko.png
deleted file mode 100644
index 8dd6c5529..000000000
--- a/perl-install/pixmaps/langs/lang-ko.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ks.png b/perl-install/pixmaps/langs/lang-ks.png
deleted file mode 100644
index edbe86c72..000000000
--- a/perl-install/pixmaps/langs/lang-ks.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ks@Arab.png b/perl-install/pixmaps/langs/lang-ks@Arab.png
deleted file mode 100644
index c3eba40ca..000000000
--- a/perl-install/pixmaps/langs/lang-ks@Arab.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ku.png b/perl-install/pixmaps/langs/lang-ku.png
deleted file mode 100644
index c776e1321..000000000
--- a/perl-install/pixmaps/langs/lang-ku.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-kw.png b/perl-install/pixmaps/langs/lang-kw.png
deleted file mode 100644
index 2e1fa3edf..000000000
--- a/perl-install/pixmaps/langs/lang-kw.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ky.png b/perl-install/pixmaps/langs/lang-ky.png
deleted file mode 100644
index 72924a206..000000000
--- a/perl-install/pixmaps/langs/lang-ky.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-lb.png b/perl-install/pixmaps/langs/lang-lb.png
deleted file mode 100644
index ba1b6c01e..000000000
--- a/perl-install/pixmaps/langs/lang-lb.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-lg.png b/perl-install/pixmaps/langs/lang-lg.png
deleted file mode 100644
index 2e67836e0..000000000
--- a/perl-install/pixmaps/langs/lang-lg.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-li.png b/perl-install/pixmaps/langs/lang-li.png
deleted file mode 100644
index 77f36a985..000000000
--- a/perl-install/pixmaps/langs/lang-li.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-lo.png b/perl-install/pixmaps/langs/lang-lo.png
deleted file mode 100644
index c8ac6c880..000000000
--- a/perl-install/pixmaps/langs/lang-lo.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-lt.png b/perl-install/pixmaps/langs/lang-lt.png
deleted file mode 100644
index 9869002a2..000000000
--- a/perl-install/pixmaps/langs/lang-lt.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ltg.png b/perl-install/pixmaps/langs/lang-ltg.png
deleted file mode 100644
index 2cd1c8227..000000000
--- a/perl-install/pixmaps/langs/lang-ltg.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-lv.png b/perl-install/pixmaps/langs/lang-lv.png
deleted file mode 100644
index b73a804bc..000000000
--- a/perl-install/pixmaps/langs/lang-lv.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-mi.png b/perl-install/pixmaps/langs/lang-mi.png
deleted file mode 100644
index 1d0658497..000000000
--- a/perl-install/pixmaps/langs/lang-mi.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-mk.png b/perl-install/pixmaps/langs/lang-mk.png
deleted file mode 100644
index ef82b87d3..000000000
--- a/perl-install/pixmaps/langs/lang-mk.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ml.png b/perl-install/pixmaps/langs/lang-ml.png
deleted file mode 100644
index b1d933a1e..000000000
--- a/perl-install/pixmaps/langs/lang-ml.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-mn.png b/perl-install/pixmaps/langs/lang-mn.png
deleted file mode 100644
index 18af73e27..000000000
--- a/perl-install/pixmaps/langs/lang-mn.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-mr.png b/perl-install/pixmaps/langs/lang-mr.png
deleted file mode 100644
index 8181f89bf..000000000
--- a/perl-install/pixmaps/langs/lang-mr.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ms.png b/perl-install/pixmaps/langs/lang-ms.png
deleted file mode 100644
index 2d40e300f..000000000
--- a/perl-install/pixmaps/langs/lang-ms.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-mt.png b/perl-install/pixmaps/langs/lang-mt.png
deleted file mode 100644
index c75d1413d..000000000
--- a/perl-install/pixmaps/langs/lang-mt.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-nb.png b/perl-install/pixmaps/langs/lang-nb.png
deleted file mode 100644
index ebd4d42d3..000000000
--- a/perl-install/pixmaps/langs/lang-nb.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-nds.png b/perl-install/pixmaps/langs/lang-nds.png
deleted file mode 100644
index 39e0583c7..000000000
--- a/perl-install/pixmaps/langs/lang-nds.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ne.png b/perl-install/pixmaps/langs/lang-ne.png
deleted file mode 100644
index 695c8b8e2..000000000
--- a/perl-install/pixmaps/langs/lang-ne.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-nl.png b/perl-install/pixmaps/langs/lang-nl.png
deleted file mode 100644
index 014adbe98..000000000
--- a/perl-install/pixmaps/langs/lang-nl.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-nn.png b/perl-install/pixmaps/langs/lang-nn.png
deleted file mode 100644
index 771d08a94..000000000
--- a/perl-install/pixmaps/langs/lang-nn.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-no.png b/perl-install/pixmaps/langs/lang-no.png
deleted file mode 100644
index ebd4d42d3..000000000
--- a/perl-install/pixmaps/langs/lang-no.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-oc.png b/perl-install/pixmaps/langs/lang-oc.png
deleted file mode 100644
index f4efa6dd3..000000000
--- a/perl-install/pixmaps/langs/lang-oc.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-pa.png b/perl-install/pixmaps/langs/lang-pa.png
deleted file mode 100644
index c1945c3da..000000000
--- a/perl-install/pixmaps/langs/lang-pa.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-pa_IN.png b/perl-install/pixmaps/langs/lang-pa_IN.png
deleted file mode 100644
index c1945c3da..000000000
--- a/perl-install/pixmaps/langs/lang-pa_IN.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ph.png b/perl-install/pixmaps/langs/lang-ph.png
deleted file mode 100644
index 78a7bd614..000000000
--- a/perl-install/pixmaps/langs/lang-ph.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-pl.png b/perl-install/pixmaps/langs/lang-pl.png
deleted file mode 100644
index d525067b3..000000000
--- a/perl-install/pixmaps/langs/lang-pl.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ps.png b/perl-install/pixmaps/langs/lang-ps.png
deleted file mode 100644
index a4db7252c..000000000
--- a/perl-install/pixmaps/langs/lang-ps.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-pt.png b/perl-install/pixmaps/langs/lang-pt.png
deleted file mode 100644
index 60643675d..000000000
--- a/perl-install/pixmaps/langs/lang-pt.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-pt_BR.png b/perl-install/pixmaps/langs/lang-pt_BR.png
deleted file mode 100644
index 41c955b8e..000000000
--- a/perl-install/pixmaps/langs/lang-pt_BR.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-qu.png b/perl-install/pixmaps/langs/lang-qu.png
deleted file mode 100644
index 53e233cdb..000000000
--- a/perl-install/pixmaps/langs/lang-qu.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ro.png b/perl-install/pixmaps/langs/lang-ro.png
deleted file mode 100644
index 0483ff00a..000000000
--- a/perl-install/pixmaps/langs/lang-ro.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ru.png b/perl-install/pixmaps/langs/lang-ru.png
deleted file mode 100644
index 50bfb23d2..000000000
--- a/perl-install/pixmaps/langs/lang-ru.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-sc.png b/perl-install/pixmaps/langs/lang-sc.png
deleted file mode 100644
index e4dda5f79..000000000
--- a/perl-install/pixmaps/langs/lang-sc.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-se.png b/perl-install/pixmaps/langs/lang-se.png
deleted file mode 100644
index 92b76282c..000000000
--- a/perl-install/pixmaps/langs/lang-se.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-sh.png b/perl-install/pixmaps/langs/lang-sh.png
deleted file mode 100644
index 05fc8b034..000000000
--- a/perl-install/pixmaps/langs/lang-sh.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-sk.png b/perl-install/pixmaps/langs/lang-sk.png
deleted file mode 100644
index 9e939c857..000000000
--- a/perl-install/pixmaps/langs/lang-sk.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-sl.png b/perl-install/pixmaps/langs/lang-sl.png
deleted file mode 100644
index fc5657a97..000000000
--- a/perl-install/pixmaps/langs/lang-sl.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-so.png b/perl-install/pixmaps/langs/lang-so.png
deleted file mode 100644
index b6649980a..000000000
--- a/perl-install/pixmaps/langs/lang-so.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-sq.png b/perl-install/pixmaps/langs/lang-sq.png
deleted file mode 100644
index f6c2d2f0e..000000000
--- a/perl-install/pixmaps/langs/lang-sq.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-sr.png b/perl-install/pixmaps/langs/lang-sr.png
deleted file mode 100644
index 5b822b402..000000000
--- a/perl-install/pixmaps/langs/lang-sr.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-sr@Latn.png b/perl-install/pixmaps/langs/lang-sr@Latn.png
deleted file mode 100644
index 05fc8b034..000000000
--- a/perl-install/pixmaps/langs/lang-sr@Latn.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ss.png b/perl-install/pixmaps/langs/lang-ss.png
deleted file mode 100644
index ed1da073c..000000000
--- a/perl-install/pixmaps/langs/lang-ss.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-st.png b/perl-install/pixmaps/langs/lang-st.png
deleted file mode 100644
index 3f4c3a022..000000000
--- a/perl-install/pixmaps/langs/lang-st.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-sv.png b/perl-install/pixmaps/langs/lang-sv.png
deleted file mode 100644
index 21822dbf8..000000000
--- a/perl-install/pixmaps/langs/lang-sv.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-sw.png b/perl-install/pixmaps/langs/lang-sw.png
deleted file mode 100644
index 690b07c0c..000000000
--- a/perl-install/pixmaps/langs/lang-sw.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ta.png b/perl-install/pixmaps/langs/lang-ta.png
deleted file mode 100644
index c603ea0de..000000000
--- a/perl-install/pixmaps/langs/lang-ta.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-te.png b/perl-install/pixmaps/langs/lang-te.png
deleted file mode 100644
index a263d449d..000000000
--- a/perl-install/pixmaps/langs/lang-te.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-tg.png b/perl-install/pixmaps/langs/lang-tg.png
deleted file mode 100644
index f537f85ad..000000000
--- a/perl-install/pixmaps/langs/lang-tg.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-th.png b/perl-install/pixmaps/langs/lang-th.png
deleted file mode 100644
index 75c913c73..000000000
--- a/perl-install/pixmaps/langs/lang-th.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-tk.png b/perl-install/pixmaps/langs/lang-tk.png
deleted file mode 100644
index d95c94774..000000000
--- a/perl-install/pixmaps/langs/lang-tk.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-tr.png b/perl-install/pixmaps/langs/lang-tr.png
deleted file mode 100644
index a6c266603..000000000
--- a/perl-install/pixmaps/langs/lang-tr.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-tt.png b/perl-install/pixmaps/langs/lang-tt.png
deleted file mode 100644
index f643f18cd..000000000
--- a/perl-install/pixmaps/langs/lang-tt.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-tt@Cyrl.png b/perl-install/pixmaps/langs/lang-tt@Cyrl.png
deleted file mode 100644
index 5d8ab2669..000000000
--- a/perl-install/pixmaps/langs/lang-tt@Cyrl.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ug.png b/perl-install/pixmaps/langs/lang-ug.png
deleted file mode 100644
index 36033a501..000000000
--- a/perl-install/pixmaps/langs/lang-ug.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-uk.png b/perl-install/pixmaps/langs/lang-uk.png
deleted file mode 100644
index cee670ee3..000000000
--- a/perl-install/pixmaps/langs/lang-uk.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ur.png b/perl-install/pixmaps/langs/lang-ur.png
deleted file mode 100644
index 0a395fd04..000000000
--- a/perl-install/pixmaps/langs/lang-ur.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-uz.png b/perl-install/pixmaps/langs/lang-uz.png
deleted file mode 100644
index d32d0ffea..000000000
--- a/perl-install/pixmaps/langs/lang-uz.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-uz@Cyrl.png b/perl-install/pixmaps/langs/lang-uz@Cyrl.png
deleted file mode 100644
index d32d0ffea..000000000
--- a/perl-install/pixmaps/langs/lang-uz@Cyrl.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-uz@Latn.png b/perl-install/pixmaps/langs/lang-uz@Latn.png
deleted file mode 100644
index e9761e7d5..000000000
--- a/perl-install/pixmaps/langs/lang-uz@Latn.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-ve.png b/perl-install/pixmaps/langs/lang-ve.png
deleted file mode 100644
index ac0233033..000000000
--- a/perl-install/pixmaps/langs/lang-ve.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-vi.png b/perl-install/pixmaps/langs/lang-vi.png
deleted file mode 100644
index eaa8fe477..000000000
--- a/perl-install/pixmaps/langs/lang-vi.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-wa.png b/perl-install/pixmaps/langs/lang-wa.png
deleted file mode 100644
index 176976de8..000000000
--- a/perl-install/pixmaps/langs/lang-wa.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-xh.png b/perl-install/pixmaps/langs/lang-xh.png
deleted file mode 100644
index d31040a18..000000000
--- a/perl-install/pixmaps/langs/lang-xh.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-yi.png b/perl-install/pixmaps/langs/lang-yi.png
deleted file mode 100644
index 729b7e166..000000000
--- a/perl-install/pixmaps/langs/lang-yi.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-zh_CN.png b/perl-install/pixmaps/langs/lang-zh_CN.png
deleted file mode 100644
index b8eff030a..000000000
--- a/perl-install/pixmaps/langs/lang-zh_CN.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-zh_TW.png b/perl-install/pixmaps/langs/lang-zh_TW.png
deleted file mode 100644
index bbfdc8fe8..000000000
--- a/perl-install/pixmaps/langs/lang-zh_TW.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/langs/lang-zu.png b/perl-install/pixmaps/langs/lang-zu.png
deleted file mode 100644
index b44493b50..000000000
--- a/perl-install/pixmaps/langs/lang-zu.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/monitor-1024.png b/perl-install/pixmaps/monitor-1024.png
deleted file mode 100644
index 8dee9c29c..000000000
--- a/perl-install/pixmaps/monitor-1024.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/monitor-1152.png b/perl-install/pixmaps/monitor-1152.png
deleted file mode 100644
index 95380098b..000000000
--- a/perl-install/pixmaps/monitor-1152.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/monitor-1280.png b/perl-install/pixmaps/monitor-1280.png
deleted file mode 100644
index 24bdf631b..000000000
--- a/perl-install/pixmaps/monitor-1280.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/monitor-1400.png b/perl-install/pixmaps/monitor-1400.png
deleted file mode 100644
index 6b6cd8dfc..000000000
--- a/perl-install/pixmaps/monitor-1400.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/monitor-1600.png b/perl-install/pixmaps/monitor-1600.png
deleted file mode 100644
index 3016b0590..000000000
--- a/perl-install/pixmaps/monitor-1600.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/monitor-1920.png b/perl-install/pixmaps/monitor-1920.png
deleted file mode 100644
index 844d378c4..000000000
--- a/perl-install/pixmaps/monitor-1920.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/monitor-2048.png b/perl-install/pixmaps/monitor-2048.png
deleted file mode 100644
index eb208663c..000000000
--- a/perl-install/pixmaps/monitor-2048.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/monitor-640.png b/perl-install/pixmaps/monitor-640.png
deleted file mode 100644
index 5ee916c84..000000000
--- a/perl-install/pixmaps/monitor-640.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/monitor-800.png b/perl-install/pixmaps/monitor-800.png
deleted file mode 100644
index dc2e3a915..000000000
--- a/perl-install/pixmaps/monitor-800.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/monitor.png b/perl-install/pixmaps/monitor.png
deleted file mode 100644
index 097c022bd..000000000
--- a/perl-install/pixmaps/monitor.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/mouse_2b.png b/perl-install/pixmaps/mouse_2b.png
deleted file mode 100644
index 5df9cf38a..000000000
--- a/perl-install/pixmaps/mouse_2b.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/mouse_2b_left.png b/perl-install/pixmaps/mouse_2b_left.png
deleted file mode 100644
index 9844cbc3e..000000000
--- a/perl-install/pixmaps/mouse_2b_left.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/mouse_2b_right.png b/perl-install/pixmaps/mouse_2b_right.png
deleted file mode 100644
index d1bea0424..000000000
--- a/perl-install/pixmaps/mouse_2b_right.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/mouse_3b+.png b/perl-install/pixmaps/mouse_3b+.png
deleted file mode 100644
index 964ba5c15..000000000
--- a/perl-install/pixmaps/mouse_3b+.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/mouse_3b+_middle.png b/perl-install/pixmaps/mouse_3b+_middle.png
deleted file mode 100644
index 7b7547318..000000000
--- a/perl-install/pixmaps/mouse_3b+_middle.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/mouse_3b.png b/perl-install/pixmaps/mouse_3b.png
deleted file mode 100644
index c2a9585ba..000000000
--- a/perl-install/pixmaps/mouse_3b.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/mouse_3b_left.png b/perl-install/pixmaps/mouse_3b_left.png
deleted file mode 100644
index 4115a3f8c..000000000
--- a/perl-install/pixmaps/mouse_3b_left.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/mouse_3b_middle.png b/perl-install/pixmaps/mouse_3b_middle.png
deleted file mode 100644
index c2c99f1f7..000000000
--- a/perl-install/pixmaps/mouse_3b_middle.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/mouse_3b_right.png b/perl-install/pixmaps/mouse_3b_right.png
deleted file mode 100644
index f7a04d530..000000000
--- a/perl-install/pixmaps/mouse_3b_right.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/printer-mdk.png b/perl-install/pixmaps/printer-mdk.png
deleted file mode 100644
index 9399efd02..000000000
--- a/perl-install/pixmaps/printer-mdk.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/printer_add.png b/perl-install/pixmaps/printer_add.png
deleted file mode 100644
index c221193e0..000000000
--- a/perl-install/pixmaps/printer_add.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/printer_conf.png b/perl-install/pixmaps/printer_conf.png
deleted file mode 100644
index f07042b28..000000000
--- a/perl-install/pixmaps/printer_conf.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/printer_default.png b/perl-install/pixmaps/printer_default.png
deleted file mode 100644
index 9c732f7f6..000000000
--- a/perl-install/pixmaps/printer_default.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/printer_del.png b/perl-install/pixmaps/printer_del.png
deleted file mode 100644
index d80786d50..000000000
--- a/perl-install/pixmaps/printer_del.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/printerdrake.png b/perl-install/pixmaps/printerdrake.png
deleted file mode 100644
index 87c198972..000000000
--- a/perl-install/pixmaps/printerdrake.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/unselected.png b/perl-install/pixmaps/unselected.png
deleted file mode 100644
index 689a4eb01..000000000
--- a/perl-install/pixmaps/unselected.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/wifi-020.png b/perl-install/pixmaps/wifi-020.png
deleted file mode 100644
index 7ecb7031c..000000000
--- a/perl-install/pixmaps/wifi-020.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/wifi-040.png b/perl-install/pixmaps/wifi-040.png
deleted file mode 100644
index e79cfd476..000000000
--- a/perl-install/pixmaps/wifi-040.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/wifi-060.png b/perl-install/pixmaps/wifi-060.png
deleted file mode 100644
index 93b16b468..000000000
--- a/perl-install/pixmaps/wifi-060.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/wifi-080.png b/perl-install/pixmaps/wifi-080.png
deleted file mode 100644
index 565c9faa6..000000000
--- a/perl-install/pixmaps/wifi-080.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pixmaps/wifi-100.png b/perl-install/pixmaps/wifi-100.png
deleted file mode 100644
index bd0a206e9..000000000
--- a/perl-install/pixmaps/wifi-100.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm
deleted file mode 100644
index 00920c079..000000000
--- a/perl-install/pkgs.pm
+++ /dev/null
@@ -1,1598 +0,0 @@
-package pkgs; # $Id$
-
-use strict;
-
-use URPM;
-use URPM::Resolve;
-use URPM::Signature;
-use common;
-use install_any;
-use run_program;
-use detect_devices;
-use log;
-use fs;
-use fs::loopback;
-use c;
-
-our %preferred = map { $_ => undef } qw(lilo nail perl-base openjade ctags glibc glibc-devel curl sane-backends postfix gcc gcc-cpp gcc-c++ proftpd vim-minimal db1 libxpm4 zlib1 libncurses5 harddrake cups);
-
-#- lower bound on the left ( aka 90 means [90-100[ )
-our %compssListDesc = (
- 5 => N_("must have"),
- 4 => N_("important"),
- 3 => N_("very nice"),
- 2 => N_("nice"),
- 1 => N_("maybe"),
-);
-
-#- constant for small transaction.
-our $limitMinTrans = 13;
-
-
-#- package to ignore, typically in Application CD. OBSOLETED ?
-my %ignoreBadPkg = (
- 'civctp-demo' => 1,
- 'eus-demo' => 1,
- 'myth2-demo' => 1,
- 'heretic2-demo' => 1,
- 'heroes3-demo' => 1,
- 'rt2-demo' => 1,
- );
-
-sub packageMedium {
- my ($packages, $p) = @_; $p or die "invalid package from\n" . backtrace();
- foreach (values %{$packages->{mediums}}) {
- defined $_->{start} && defined $_->{end} or next;
- $p->id >= $_->{start} && $p->id <= $_->{end} and return $_;
- }
- return {};
-}
-
-sub cleanHeaders() {
- rm_rf("$::prefix/tmp/headers") if -e "$::prefix/tmp/headers";
-}
-
-#- get all headers from an hdlist file.
-sub extractHeaders {
- my ($pkgs, $media) = @_;
- my %medium2pkgs;
-
- cleanHeaders();
-
- foreach (@$pkgs) {
- foreach my $medium (values %$media) {
- $_->id >= $medium->{start} && $_->id <= $medium->{end} or next;
- push @{$medium2pkgs{$medium->{medium}} ||= []}, $_;
- }
- }
-
- foreach (keys %medium2pkgs) {
- my $medium = $media->{$_};
-
- eval {
- require packdrake;
- my $packer = new packdrake("/tmp/$medium->{hdlist}", quiet => 1);
- $packer->extract_archive("$::prefix/tmp/headers", map { $_->header_filename } @{$medium2pkgs{$_}});
- };
- }
-
- foreach (@$pkgs) {
- my $f = "$::prefix/tmp/headers/" . $_->header_filename;
- $_->update_header($f) or log::l("unable to open header file $f"), next;
- log::l("read header file $f");
- }
-}
-
-#- TODO BEFORE TODO
-#- size and correction size functions for packages.
-my $B = 1.20873;
-my $C = 4.98663; #- does not take hdlist's into account as getAvailableSpace will do it.
-sub correctSize { $B * $_[0] + $C }
-sub invCorrectSize { ($_[0] - $C) / $B }
-
-sub selectedSize {
- my ($packages) = @_;
- my $size = 0;
- my %skip;
- #- take care of packages selected...
- foreach (@{$packages->{depslist}}) {
- if ($_->flag_selected) {
- $size += $_->size;
- #- if a package is obsoleted with the same name it should
- #- have been selected, so a selected new package obsoletes
- #- all the old package.
- exists $skip{$_->name} and next; $skip{$_->name} = undef;
- $size -= $packages->{sizes}{$_->name};
- }
- }
- #- but remove size of package being obsoleted or removed.
- foreach (keys %{$packages->{state}{rejected}}) {
- my ($name) = /(.*)-[^\-]*-[^\-]*$/ or next;
- exists $skip{$name} and next; $skip{$name} = undef;
- $size -= $packages->{sizes}{$name};
- }
- $size;
-}
-
-sub size2time {
- my ($x, $max) = @_;
- my $A = 7e-07;
- my $limit = min($max * 3 / 4, 9e8);
- if ($x < $limit) {
- $A * $x;
- } else {
- $x -= $limit;
- my $B = 6e-16;
- my $C = 15e-07;
- $B * $x ** 2 + $C * $x + $A * $limit;
- }
-}
-
-
-sub packagesProviding {
- my ($packages, $name) = @_;
- map { $packages->{depslist}[$_] } keys %{$packages->{provides}{$name} || {}};
-}
-
-#- 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) = @_;
- #- search package with given name and compatible with current architecture.
- #- take the best one found (most up-to-date).
- my @packages;
- foreach my $pkg (packagesProviding($packages, $name)) {
- $pkg->is_arch_compat or next;
- $pkg->name eq $name or next;
- push @packages, $pkg;
- }
- my $best;
- foreach (@packages) {
- if ($best && $best != $_) {
- $_->compare_pkg($best) > 0 and $best = $_;
- } else {
- $best = $_;
- }
- }
- $best or log::l("unknown package `$name'");
- $best;
-}
-
-sub analyse_kernel_name {
- my $kernels = join('|', map { "-$_" }
- '(p3|i586|i686)-(up|smp)-(1GB|4GB|64GB)',
- qw(enterprise secure smp multimedia multimedia-smp xbox),
- );
- my @l = $_[0] =~ /kernel[^\-]*($kernels)?(-([^\-]+))?$/ or return;
- $l[0], $l[-1];
-}
-
-sub packages2kernels {
- my ($packages) = @_;
-
- sort {
- $a->{ext} cmp $b->{ext} || URPM::rpmvercmp($b->{version}, $a->{version});
- } map {
- if (my ($ext, $version) = analyse_kernel_name($_->name)) {
- { pkg => $_, ext => $ext, version => $version };
- } else {
- log::l("ERROR: unknown package " . $_->name . " providing kernel");
- ();
- }
- } packagesProviding($packages, 'kernel');
-}
-
-sub bestKernelPackage {
- my ($packages) = @_;
-
- my @kernels = packages2kernels($packages) or internal_error('no kernel available');
- my ($version_BOOT) = c::kernel_version() =~ /^(\d+\.\d+)/;
- if (my @l = grep { $_->{version} =~ /\Q$version_BOOT/ } @kernels) {
- #- favour versions corresponding to current BOOT version
- @kernels = @l;
- }
- my @preferred_exts =
- $::o->{build_live_system} ? '-i586-up-1GB' :
- $::build_globetrotter ? '' :
- detect_devices::is_xbox() ? '-xbox' :
- detect_devices::is_i586() ? '-i586-up-1GB' :
- !detect_devices::has_cpu_flag('pae') ? ('-i686-up-4GB', '-i586-up-1GB') :
- detect_devices::hasSMP() ? '-smp' :
- '';
- foreach my $prefered_ext (@preferred_exts, '') {
- if (my @l = grep { $_->{ext} eq $prefered_ext } @kernels) {
- @kernels = @l;
- }
- }
-
- log::l("bestKernelPackage (" . join(':', @preferred_exts) . "): " . join(' ', map { $_->{pkg}->name } @kernels) . (@kernels > 1 ? ' (choosing the first)' : ''));
- $preferred{'kernel-source-' . $kernels[0]{version}} = undef;
- $kernels[0]{pkg};
-}
-
-sub packagesOfMedium {
- my ($packages, $medium) = @_;
- defined $medium->{start} && defined $medium->{end} ? @{$packages->{depslist}}[$medium->{start} .. $medium->{end}] : ();
-}
-sub packagesToInstall {
- my ($packages) = @_;
- my @packages;
- foreach (values %{$packages->{mediums}}) {
- $_->{selected} or next;
- log::l("examining packagesToInstall of medium $_->{descr}");
- push @packages, grep { $_->flag_selected } packagesOfMedium($packages, $_);
- }
- log::l("found " . scalar(@packages) . " packages to install");
- @packages;
-}
-
-sub allMediums {
- my ($packages) = @_;
- sort {
- #- put supplementary media at the end
- my @x = ($a, $b);
- foreach (@x) { install_medium::by_id($_, $packages)->is_suppl and $_ += 100 }
- $x[0] <=> $x[1];
- } keys %{$packages->{mediums}};
-}
-
-sub packageRequest {
- my ($packages, $pkg) = @_;
-
- #- check if the same or better version is installed,
- #- do not select in such case.
- $pkg && ($pkg->flag_upgrade || !$pkg->flag_installed) or return;
-
- #- check for medium selection, if the medium has not been
- #- selected, the package cannot be selected.
- foreach (values %{$packages->{mediums}}) {
- !$_->{selected} && $pkg->id >= $_->{start} && $pkg->id <= $_->{end} and return;
- }
-
- return { $pkg->id => 1 };
-}
-
-sub packageCallbackChoices {
- my ($urpm, $_db, $state, $choices) = @_;
- if (my $prefer = find { $_->arch ne 'src' && exists $preferred{$_->name} } @$choices) {
- log::l("packageCallbackChoices: prefered choice " . $prefer->name . " from ", join(",", map { $_->name } @$choices));
- $prefer;
- } else {
- my @l = grep {
- #- or even if a package requires a specific locales which
- #- is already selected.
- find {
- /locales-/ && do {
- my $p = packageByName($urpm, $_);
- $p && $p->flag_available;
- };
- } $_->requires_nosense;
- } @$choices;
- if (!@l) {
- @l = $choices->[0];
- log::l("packageCallbackChoices: default choice from ", join(",", map { $_->name } @$choices), " in ", join(",", map { $urpm->{depslist}[$_]->name } keys %{$state->{selected}}));
- }
- #-log::l("packageCallbackChoices: chosen " . join(" ", map { $_->name } @l));
- @l;
- }
-}
-
-sub select_by_package_names {
- my ($packages, $names, $b_base, $o_otherOnly) = @_;
-
- foreach (@$names) {
- my $p = packageByName($packages, $_) or next;
- selectPackage($packages, $p, $b_base, $o_otherOnly);
- }
-}
-
-#- selection, unselection of package.
-sub selectPackage {
- my ($packages, $pkg, $b_base, $o_otherOnly) = @_;
-
- #- select package and dependancies, o_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)
- my $state = $packages->{state} ||= {};
-
- $packages->{rpmdb} ||= rpmDbOpen();
-
- my @l = $packages->resolve_requested($packages->{rpmdb}, $state, packageRequest($packages, $pkg) || {},
- callback_choices => \&packageCallbackChoices);
-
- if ($b_base || $o_otherOnly) {
- foreach (@l) {
- $b_base and $_->set_flag_base;
- $o_otherOnly and $o_otherOnly->{$_->id} = $_->flag_requested;
- }
- $o_otherOnly and $packages->disable_selected($packages->{rpmdb}, $state, @l);
- }
- 1;
-}
-
-sub unselectPackage($$;$) {
- my ($packages, $pkg, $o_otherOnly) = @_;
-
- #- base packages are not unselectable,
- #- and already unselected package are no more unselectable.
- $pkg->flag_base and return;
- $pkg->flag_selected or return;
-
- my $state = $packages->{state} ||= {};
- log::l("removing selection on package " . $pkg->fullname);
- my @l = $packages->disable_selected($packages->{rpmdb}, $state, $pkg);
- log::l(" removed selection on package " . $pkg->fullname . "gives " . join(',', map { scalar $_->fullname } @l));
- if ($o_otherOnly) {
- foreach (@l) {
- $o_otherOnly->{$_->id} = undef;
- }
- log::l(" reselecting removed selection...");
- $packages->resolve_requested($packages->{rpmdb}, $state, $o_otherOnly, callback_choices => \&packageCallbackChoices);
- log::l(" done");
- }
- 1;
-}
-
-sub unselectAllPackages($) {
- my ($packages) = @_;
- my %keep_selected;
- log::l("unselecting all packages...");
- foreach (@{$packages->{depslist}}) {
- if ($_->flag_base || $_->flag_installed && $_->flag_selected) {
- #- keep track of packages that should be kept selected.
- $keep_selected{$_->id} = $_;
- } else {
- #- deselect all packages except base or packages that need to be upgraded.
- $_->set_flag_required(0);
- $_->set_flag_requested(0);
- }
- }
- #- clean state, in order to start with a brand new set...
- $packages->{state} = {};
- $packages->resolve_requested($packages->{rpmdb}, $packages->{state}, \%keep_selected,
- callback_choices => \&packageCallbackChoices);
-}
-
-sub urpmidir() {
- my $v = "$::prefix/var/lib/urpmi";
- -l $v && !-e $v and unlink $v and mkdir $v, 0755; #- dangling symlink
- -w $v ? $v : '/tmp';
-}
-
-sub psUpdateHdlistsDeps {
- my ($packages) = @_;
- my $need_copy = 0;
- my $urpmidir = urpmidir();
-
- #- check if current configuration is still up-to-date and do not need to be updated.
- foreach (values %{$packages->{mediums}}) {
- next if ref $_ ne 'install_medium'; #- skip empty hash artifact
- $_->selected || $_->ignored or next;
- my $hdlistf = "$urpmidir/hdlist.$_->{fakemedium}.cz" . ($_->{hdlist} =~ /\.cz2/ && "2");
- my $synthesisf = "$urpmidir/synthesis.hdlist.$_->{fakemedium}.cz" . ($_->{hdlist} =~ /\.cz2/ && "2");
- if (-s $hdlistf != $_->{hdlist_size}) {
- install_any::getAndSaveFile("media/media_info/$_->{hdlist}", $hdlistf) or die "no $_->{hdlist} found";
- symlinkf $hdlistf, "/tmp/$_->{hdlist}";
- ++$need_copy;
- chown 0, 0, $hdlistf;
- }
- if (-s $synthesisf != $_->{synthesis_hdlist_size}) {
- install_any::getAndSaveFile("media/media_info/synthesis.$_->{hdlist}", $synthesisf);
- if (-s $synthesisf > 0) { chown 0, 0, $synthesisf } else { unlink $synthesisf }
- }
- }
-
- if ($need_copy) {
- #- this is necessary for urpmi.
- install_any::getAndSaveFile("media/media_info/$_", "$urpmidir/$_") && chown 0, 0, "$urpmidir/$_" foreach qw(rpmsrate);
- }
-}
-
-sub psUsingHdlists {
- my ($o, $method, $o_hdlistsprefix, $o_packages, $o_initialmedium, $o_callback) = @_;
- my $is_ftp = $o_hdlistsprefix =~ /^ftp:/;
- my $listf = install_any::getFile($o_hdlistsprefix && !$is_ftp ? "$o_hdlistsprefix/media/media_info/hdlists" : 'media/media_info/hdlists')
- or die "no hdlists found";
- my ($suppl_CDs, $deselectionAllowed) = ($o->{supplmedia} || 0, $o->{askmedia} || 0);
- if (!$o_packages) {
- $o_packages = new URPM;
- #- add additional fields used by DrakX.
- @$o_packages{qw(count mediums)} = (0, {});
- }
-
- #- parse hdlists file.
- my $medium_name = $o_initialmedium || 1;
- my (@hdlists, %mediumsize);
- foreach (<$listf>) {
- chomp;
- s/\s*#.*$//;
- /^\s*$/ and next;
- #- we'll ask afterwards for supplementary CDs, if the hdlists file contains
- #- a line that begins with "suppl"
- if (/^suppl/) { $suppl_CDs = 1; next }
- #- if the hdlists contains a line "askmedia", deletion of media found
- #- in this hdlist is allowed
- if (/^askmedia/) { $deselectionAllowed = 1; next }
- my $cdsuppl = index($medium_name, 's') >= 0;
- my ($noauto, $hdlist, $rpmsdir, $descr, $size) = m/^\s*(noauto:)?(hdlist\S*\.cz2?)\s+(\S+)\s*([^(]*)(\(.+\))?$/
- or die qq(invalid hdlist description "$_" in hdlists file);
- $descr =~ s/\s+$//;
- push @hdlists, [ $hdlist, $medium_name, $rpmsdir, $descr, !$noauto,
- #- hdlist path, suppl CDs are mounted on /mnt/cdrom :
- $o_hdlistsprefix ? ($is_ftp ? "media/media_info/$hdlist" : "$o_hdlistsprefix/media/media_info/$hdlist") : undef,
- ];
- if ($size) {
- ($mediumsize{$hdlist}) = $size =~ /(\d+)/; #- XXX assume Mo
- } else {
- $mediumsize{$hdlist} = 0;
- }
- $cdsuppl ? ($medium_name = ($medium_name + 1) . 's') : ++$medium_name;
- }
- my $copy_rpms_on_disk = 0;
- if ($deselectionAllowed && !defined $o_initialmedium) {
- (my $finalhdlists, $copy_rpms_on_disk) = $o->deselectFoundMedia(\@hdlists, \%mediumsize);
- @hdlists = @$finalhdlists;
- }
-
- foreach my $h (@hdlists) {
- my $medium = psUsingHdlist($method, $o_packages, @$h);
- $o_callback and $o_callback->($medium, $o_hdlistsprefix, $method);
- }
-
- log::l("psUsingHdlists read " . int(@{$o_packages->{depslist}}) .
- " headers on " . int(keys %{$o_packages->{mediums}}) . " hdlists");
-
- return $o_packages, $suppl_CDs, $copy_rpms_on_disk;
-}
-
-sub psUsingHdlist {
- my ($method, $packages, $hdlist, $medium_name, $rpmsdir, $descr, $selected, $o_fhdlist, $o_pubkey, $o_nocopy) = @_;
- my $fakemedium = "$descr ($method$medium_name)";
- my $urpmidir = urpmidir();
- log::l("trying to read $hdlist for medium $medium_name");
-
- my $m = install_medium->new(
- hdlist => $hdlist,
- method => $method,
- medium => $medium_name,
- rpmsdir => $rpmsdir, #- where is RPMS directory.
- descr => $descr,
- fakemedium => $fakemedium,
- selected => $selected, #- this is !$noauto from the hdlists file
- ignored => !$selected, #- keep track of ignored medium by DrakX.
- pubkey => [], #- all pubkey blocks here
- );
-
- #- copy hdlist file directly to urpmi directory, this will be used
- #- for getting header of package during installation or after by urpmi.
- my $newf = "$urpmidir/hdlist.$fakemedium.cz" . ($hdlist =~ /\.cz2/ && "2");
- unless ($o_nocopy) {
- my $w_wait;
- $w_wait = $::o->wait_message(N("Please wait"), N("Downloading file %s...", $hdlist)) if $method =~ /^(?:ftp|http|nfs)$/;
- -e $newf and do { unlink $newf or die "cannot remove $newf: $!" };
- install_any::getAndSaveFile($o_fhdlist || "media/media_info/$hdlist", $newf) or do { unlink $newf; die "no $hdlist found" };
- $m->{hdlist_size} = -s $newf; #- keep track of size for post-check.
- symlinkf $newf, "/tmp/$hdlist";
- undef $w_wait;
- }
-
- my $newsf = "$urpmidir/synthesis.hdlist.$fakemedium.cz" . ($hdlist =~ /\.cz2/ && "2");
- #- if $o_fhdlist is a filehandle, it's preferable not to try to find the associated synthesis.
- if (!$o_nocopy && !ref $o_fhdlist) {
- #- copy existing synthesis file too.
- my $synth;
- if ($o_fhdlist) {
- $synth = $o_fhdlist;
- $synth =~ s/hdlist/synthesis.hdlist/ or $synth = undef;
- }
- $synth ||= "media/media_info/synthesis.$hdlist";
- install_any::getAndSaveFile($synth, $newsf);
- $m->{synthesis_hdlist_size} = -s $newsf; #- keep track of size for post-check.
- -s $newsf > 0 or unlink $newsf;
- }
-
- chown 0, 0, $newf, $newsf;
-
- #- get all keys corresponding in the right pubkey file,
- #- they will be added in rpmdb later if not found.
- if (!$o_fhdlist || $o_pubkey) {
- $m->{pubkey} = $o_pubkey;
- unless ($m->{pubkey}) {
- my $pubkey = install_any::getFile("media/media_info/pubkey" . ($hdlist =~ /hdlist(\S*)\.cz2?/ && $1));
- $m->{pubkey} = [ $packages->parse_armored_file($pubkey) ];
- }
- }
-
- #- integrate medium in media list, only here to avoid download error (update) to be propagated.
- $packages->{mediums}{$medium_name} = $m;
-
- #- parse synthesis (if available) of directly hdlist (with packing).
- if ($m->ignored) {
- log::l("ignoring packages in $hdlist");
- } else {
- my $nb_suppl_pkg_skipped = 0;
- my $callback = sub {
- my (undef, $p) = @_;
- our %uniq_pkg_seen;
- if ($uniq_pkg_seen{$p->fullname}++) {
- log::l("skipping " . scalar $p->fullname);
- ++$nb_suppl_pkg_skipped;
- return 0;
- } else {
- return 1;
- }
- };
- if (-s $newsf) {
- ($m->{start}, $m->{end}) = $packages->parse_synthesis($newsf, callback => $callback);
- } elsif (-s $newf) {
- ($m->{start}, $m->{end}) = $packages->parse_hdlist($newf, callback => $callback);
- } else {
- delete $packages->{mediums}{$medium_name};
- unlink $newf;
- $o_fhdlist or unlink $newsf;
- die "fatal: no hdlist nor synthesis to read for $fakemedium";
- }
- $m->{start} > $m->{end} and do { delete $packages->{mediums}{$medium_name};
- unlink $newf;
- $o_fhdlist or unlink $newsf;
- die "fatal: nothing read in hdlist or synthesis for $fakemedium" };
- log::l("read " . ($m->{end} - $m->{start} + 1) . " packages in $hdlist, $nb_suppl_pkg_skipped skipped");
- }
- $m;
-}
-
-sub read_rpmsrate_raw {
- my ($f) = @_;
- my $line_nb = 0;
- my $fatal_error;
- my (%flags, %rates, @need_to_copy);
- my (@l);
- local $_;
- while (<$f>) {
- $line_nb++;
- /\t/ and die "tabulations not allowed at line $line_nb\n";
- s/#.*//; # comments
-
- my ($indent, $data) = /(\s*)(.*)/;
- next if !$data; # skip empty lines
-
- @l = grep { $_->[0] < length $indent } @l;
-
- my @m = @l ? @{$l[-1][1]} : ();
- my ($t, $flag, @l2);
- while ($data =~
- /^((
- [1-5]
- |
- (?: (?: !\s*)? [0-9A-Z_]+(?:".*?")?)
- (?: \s*\|\|\s* (?: !\s*)? [0-9A-Z_]+(?:".*?")?)*
- )
- (?:\s+|$)
- )(.*)/x) { #@")) {
- ($t, $flag, $data) = ($1,$2,$3);
- while ($flag =~ s,^\s*(("[^"]*"|[^"\s]*)*)\s+,$1,) {}
- push @m, $flag;
- push @l2, [ length $indent, [ @m ] ];
- $indent .= $t;
- }
- if ($data) {
- # has packages on same line
- my ($rates, $flags) = partition { /^\d$/ } @m;
- my ($rate) = @$rates or die sprintf qq(missing rate for "%s" at line %d (flags are %s)\n), $data, $line_nb, join('&&', @m);
- foreach my $name (split ' ', $data) {
- if (uc($name) eq $name) {
- log::l("$name is parsed as a package name, not as a flag");
- }
- if (member('INSTALL', @$flags)) {
- push @need_to_copy, $name if !member('NOCOPY', @$flags);
- next; #- do not need to put INSTALL flag for a package.
- }
- if (member('PRINTER', @$flags)) {
- push @need_to_copy, $name;
- }
- my @new_flags = @$flags;
- if (my $previous = $flags{$name}) {
- my @common = intersection($flags, $previous);
- my @diff1 = difference2($flags, \@common);
- my @diff2 = difference2($previous, \@common);
- if (!@diff1 || !@diff2) {
- @new_flags = @common;
- } elsif (@diff1 == 1 && @diff2 == 1) {
- @new_flags = (@common, join('||', $diff1[0], $diff2[0]));
- } else {
- log::l("can not handle complicate flags for packages appearing twice ($name)");
- $fatal_error++;
- }
- log::l("package $name appearing twice with different rates ($rate != " . $rates{$name} . ")") if $rate != $rates{$name};
- }
- $rates{$name} = $rate;
- $flags{$name} = \@new_flags;
- }
- push @l, @l2;
- } else {
- push @l, [ $l2[0][0], $l2[-1][1] ];
- }
- }
- $fatal_error and die "$fatal_error fatal errors in rpmsrate";
- \%rates, \%flags, \@need_to_copy;
-}
-
-sub read_rpmsrate {
- my ($packages, $rpmsrate_flags_chosen, $f) = @_;
-
- my ($rates, $flags, $need_to_copy) = read_rpmsrate_raw($f);
-
- foreach (keys %$flags) {
- my $p = packageByName($packages, $_) or next;
- my @flags = @{$flags->{$_}};
- if (my @l = map { if_(/locales-(.*)/, qq(LOCALES"$1")) } $p->requires_nosense) {
- if (@l > 1) {
- log::l("ERROR: package $_ is requiring many locales") if $_ ne 'lsb';
- } else {
- push @flags, @l;
- }
- }
-
- @flags = map {
- my ($user_flags, $known_flags) = partition { /^!?CAT_/ } split('\|\|', $_);
- my $ok = find {
- my $inv = s/^!//;
- $inv xor do {
- if (my ($p) = /^HW"(.*)"/) {
- return $::o->{build_live_system} ? !$inv : detect_devices::matching_desc__regexp($p);
- } elsif (($p) = /^HW_CAT"(.*)"/) {
- return $::o->{build_live_system} ? !$inv : modules::probe_category($p);
- } elsif (($p) = /^DRIVER"(.*)"/) {
- return $::o->{build_live_system} ? !$inv : detect_devices::matching_driver__regexp($p);
- } elsif (($p) = /^TYPE"(.*)"/) {
- return $::o->{build_live_system} ? !$inv : detect_devices::matching_type($p);
- } else {
- $rpmsrate_flags_chosen->{$_};
- }
- };
- } @$known_flags;
- $ok ? 'TRUE' : @$user_flags ? join('||', @$user_flags) : 'FALSE';
- } @flags;
-
- $p->set_rate($rates->{$_});
- $p->set_rflags(member('FALSE', @flags) ? 'FALSE' : @flags);
- }
- push @{$packages->{needToCopy} ||= []}, @$need_to_copy;
-}
-
-sub readCompssUsers {
- my ($file) = @_;
-
- my $f = -e $file ? install_any::getLocalFile($file) : install_any::getFile($file)
- or do { log::l("can not find $file: $!"); return undef, undef };
- my ($compssUsers, $gtk_display_compssUsers) = eval join('', <$f>);
- if ($@) {
- log::l("ERROR: bad $file: $@");
- } else {
- log::l("compssUsers.pl got: ", join(', ', map { qq("$_->{path}|$_->{label}") } @$compssUsers));
- }
- ($compssUsers, $gtk_display_compssUsers);
-}
-
-sub saveCompssUsers {
- my ($packages, $compssUsers) = @_;
- my $flat;
- foreach (@$compssUsers) {
- my %fl = map { ("CAT_$_" => 1) } @{$_->{flags}};
- $flat .= "$_->{label} [icon=xxx] [path=$_->{path}]\n";
- foreach my $p (@{$packages->{depslist}}) {
- my @flags = $p->rflags;
- if ($p->rate && any { any { !/^!/ && $fl{$_} } split('\|\|') } @flags) {
- $flat .= sprintf "\t%d %s\n", $p->rate, $p->name;
- }
- }
- }
- my $urpmidir = urpmidir();
- output "$urpmidir/compssUsers.flat", $flat;
-}
-
-sub setSelectedFromCompssList {
- my ($packages, $rpmsrate_flags_chosen, $min_level, $max_size) = @_;
- $rpmsrate_flags_chosen->{TRUE} = 1; #- ensure TRUE is set
- my $nb = selectedSize($packages);
- foreach my $p (sort { $b->rate <=> $a->rate } @{$packages->{depslist}}) {
- my @flags = $p->rflags;
- next if
- !$p->rate || $p->rate < $min_level ||
- any { !any { /^!(.*)/ ? !$rpmsrate_flags_chosen->{$1} : $rpmsrate_flags_chosen->{$_} } split('\|\|') } @flags;
-
- #- determine the packages that will be selected when
- #- selecting $p. the packages are not selected.
- my $state = $packages->{state} ||= {};
-
- my @l = $packages->resolve_requested($packages->{rpmdb}, $state, packageRequest($packages, $p) || {},
- callback_choices => \&packageCallbackChoices);
-
- #- this enable an incremental total size.
- my $old_nb = $nb;
- foreach (@l) {
- $nb += $_->size;
- }
- if ($max_size && $nb > $max_size) {
- $nb = $old_nb;
- $min_level = $p->rate;
- $packages->disable_selected($packages->{rpmdb}, $state, @l);
- last;
- }
- }
- my @flags = map_each { if_($::b, $::a) } %$rpmsrate_flags_chosen;
- log::l("setSelectedFromCompssList: reached size ", formatXiB($nb), ", up to indice $min_level (less than ", formatXiB($max_size), ") for flags ", join(' ', sort @flags));
- log::l("setSelectedFromCompssList: ", join(" ", sort map { $_->name } grep { $_->flag_selected } @{$packages->{depslist}}));
- $min_level;
-}
-
-#- useful to know the size it would take for a given min_level/max_size
-#- just save the selected packages, call setSelectedFromCompssList, and restore the selected packages
-sub saveSelected {
- my ($packages) = @_;
- my $state = delete $packages->{state};
- my @l = @{$packages->{depslist}};
- my @flags = map { ($_->flag_requested && 1) + ($_->flag_required && 2) + ($_->flag_upgrade && 4) } @l;
- [ $packages, $state, \@l, \@flags ];
-}
-sub restoreSelected {
- my ($packages, $state, $l, $flags) = @{$_[0]};
- $packages->{state} = $state;
- mapn { my ($pkg, $flag) = @_;
- $pkg->set_flag_requested($flag & 1);
- $pkg->set_flag_required($flag & 2);
- $pkg->set_flag_upgrade($flag & 4);
- } $l, $flags;
-}
-
-sub computeGroupSize {
- my ($packages, $min_level) = @_;
-
- sub inside {
- my ($l1, $l2) = @_;
- my $i = 0;
- return if @$l1 > @$l2;
- foreach (@$l1) {
- my $c;
- while ($c = $l2->[$i++] cmp $_) {
- return if $c == 1 || $i > @$l2;
- }
- }
- 1;
- }
-
- sub or_ify {
- my ($first, @other) = @_;
- my @l = split('\|\|', $first);
- foreach (@other) {
- @l = map {
- my $n = $_;
- map { "$_&&$n" } @l;
- } split('\|\|');
- }
- @l;
- }
- my %or_ify_cache;
- my $or_ify_cached = sub {
- $or_ify_cache{$_[0]} ||= join("\t", or_ify(split("\t", $_[0])));
- };
- sub or_clean {
- my ($flags) = @_;
- my @l = split("\t", $flags);
- @l = map { [ sort split('&&') ] } @l;
- my @r;
- B: while (@l) {
- my $e = shift @l;
- foreach (@r, @l) {
- inside($_, $e) and next B;
- }
- push @r, $e;
- }
- join("\t", map { join('&&', @$_) } @r);
- }
- my (%group, %memo, $slowpart_counter);
-
- log::l("pkgs::computeGroupSize");
- my $time = time();
-
- my %pkgs_with_same_rflags;
- foreach (@{$packages->{depslist}}) {
- next if !$_->rate || $_->rate < $min_level || $_->flag_available;
- my $flags = join("\t", $_->rflags);
- next if $flags eq 'FALSE';
- push @{$pkgs_with_same_rflags{$flags}}, $_;
- }
-
- foreach my $raw_flags (keys %pkgs_with_same_rflags) {
- my $flags = $or_ify_cached->($raw_flags);
- my @pkgs = @{$pkgs_with_same_rflags{$raw_flags}};
-
- #- determine the packages that will be selected when selecting $p.
- #- make a fast selection (but potentially erroneous).
- #- installed and upgrade flags must have been computed (see compute_installed_flags).
- my %newSelection;
-
- my @l2 = map { $_->id } @pkgs;
- my $id;
-
- while (defined($id = shift @l2)) {
- exists $newSelection{$id} and next;
- $newSelection{$id} = undef;
-
- my $pkg = $packages->{depslist}[$id];
- foreach ($pkg->requires_nosense) {
- my @choices = keys %{$packages->{provides}{$_} || {}};
- if (@choices <= 1) {
- push @l2, @choices;
- } elsif (! find { exists $newSelection{$_} } @choices) {
- my ($candidate_id, $prefer_id);
- foreach (@choices) {
- ++$slowpart_counter;
- my $ppkg = $packages->{depslist}[$_] or next;
- $ppkg->flag_available and $prefer_id = $candidate_id = undef, last;
- exists $preferred{$ppkg->name} and $prefer_id = $_;
- $ppkg->name =~ /kernel-\d/ and $prefer_id ||= $_;
- foreach my $l ($ppkg->requires_nosense) {
- /locales-/ or next;
- my $pppkg = packageByName($packages, $l) or next;
- $pppkg->flag_available and $prefer_id ||= $_;
- }
- $candidate_id = $_;
- }
- if (defined $prefer_id || defined $candidate_id) {
- push @l2, defined $prefer_id ? $prefer_id : $candidate_id;
- }
- }
- }
- }
-
- foreach (keys %newSelection) {
- my $p = $packages->{depslist}[$_] or next;
- next if $p->flag_selected; #- always installed (accounted in system_size)
- my $s = $group{$p->name} || $or_ify_cached->(join("\t", $p->rflags));
- my $m = "$flags\t$s";
- $group{$p->name} = ($memo{$m} ||= or_clean($m));
- }
- }
- my (%sizes, %pkgs);
- while (my ($k, $v) = each %group) {
- my $pkg = packageByName($packages, $k) or next;
- push @{$pkgs{$v}}, $k;
- $sizes{$v} += $pkg->size - $packages->{sizes}{$pkg->name};
- }
- log::l("pkgs::computeGroupSize took: ", formatTimeRaw(time() - $time));
- log::l(sprintf "%s %dMB %s", $_, $sizes{$_} / sqr(1024), join(',', @{$pkgs{$_}})) foreach keys %sizes;
- \%sizes, \%pkgs;
-}
-
-
-sub openInstallLog() {
- my $f = "$::prefix/root/drakx/install.log";
- open(my $LOG, ">> $f") ? log::l("opened $f") : log::l("Failed to open $f. No install log will be kept."); #-#
- CORE::select((CORE::select($LOG), $| = 1)[0]);
- URPM::rpmErrorWriteTo(fileno $LOG);
- $LOG;
-}
-
-sub rpmDbOpen {
- my ($o_rebuild_needed) = @_;
-
- if ($o_rebuild_needed) {
- if (my $pid = fork()) {
- waitpid $pid, 0;
- $? & 0xff00 and die "rebuilding of rpm database failed";
- } else {
- log::l("rebuilding rpm database");
- my $rebuilddb_dir = "$::prefix/var/lib/rpmrebuilddb.$$";
- -d $rebuilddb_dir and log::l("removing stale directory $rebuilddb_dir"), rm_rf($rebuilddb_dir);
-
- URPM::DB::rebuild($::prefix) or log::l("rebuilding of rpm database failed: " . URPM::rpmErrorString()), c::_exit(2);
-
- c::_exit(0);
- }
- }
-
- my $db;
- if ($db = URPM::DB::open($::prefix)) {
- log::l("opened rpm database for examining existing packages");
- } else {
- log::l("unable to open rpm database, using empty rpm db emulation");
- $db = new URPM;
- }
-
- $db;
-}
-
-sub rpmDbCleanLogs() {
- unlink glob("$::prefix/var/lib/rpm/__db.*");
-}
-
-sub open_rpm_db_rw() {
- my $db = URPM::DB::open($::prefix, 1);
- $db and log::l("opened rpmdb for writing in $::prefix");
- $db;
-}
-
-sub cleanOldRpmDb() {
- my $failed;
-
- foreach (qw(Basenames Conflictname Group Name Packages Providename Requirename Triggername)) {
- -s "$::prefix/var/lib/rpm/$_" or $failed = 'failed';
- }
- #- rebuilding has been successfull, so remove old rpm database if any.
- #- once we have checked the rpm4 db file are present and not null, in case
- #- of doubt, avoid removing them...
- unless ($failed) {
- log::l("rebuilding rpm database completed successfully");
- foreach (qw(conflictsindex.rpm fileindex.rpm groupindex.rpm nameindex.rpm packages.rpm
- providesindex.rpm requiredby.rpm triggerindex.rpm)) {
- -e "$::prefix/var/lib/rpm/$_" or next;
- log::l("removing old rpm file $_");
- rm_rf("$::prefix/var/lib/rpm/$_");
- }
- }
-}
-
-sub selectPackagesAlreadyInstalled {
- my ($packages) = @_;
-
- log::l("computing installed flags and size of installed packages");
-
- $packages->compute_installed_flags($packages->{rpmdb});
-
- my %sizes;
- $packages->{rpmdb}->traverse(sub {
- my ($p) = @_;
- $sizes{$p->name} += $p->size;
- });
- $packages->{sizes} = \%sizes;
-}
-
-sub selectPackagesToUpgrade {
- my ($packages, $o_medium) = @_;
-
- #- check before that if medium is given, it should be valid.
- $o_medium && (! defined $o_medium->{start} || ! defined $o_medium->{end}) and return;
-
- log::l("selecting packages to upgrade");
-
- my $state = $packages->{state} ||= {};
- $state->{selected} = {};
-
- my %selection;
- $packages->request_packages_to_upgrade($packages->{rpmdb}, $state, \%selection,
- requested => undef,
- $o_medium ? (start => $o_medium->{start}, end => $o_medium->{end}) : (),
- );
- log::l("resolving dependencies...");
- $packages->resolve_requested($packages->{rpmdb}, $state, \%selection,
- callback_choices => \&packageCallbackChoices);
- log::l("...done");
-}
-
-sub allowedToUpgrade { $_[0] !~ /^(kernel|kernel22|kernel2.2|kernel-secure|kernel-smp|kernel-linus|kernel-linus2.2|hackkernel|kernel-enterprise)$/ }
-
-sub supplCDMountPoint() { install_medium::by_id(1)->method eq 'cdrom' ? "/tmp/image" : "/mnt/cdrom" }
-
-sub installTransactionClosure {
- my ($packages, $id2pkg) = @_;
- my ($id, %closure, @l, $medium, $min_id, $max_id);
-
- @l = sort { $a <=> $b } keys %$id2pkg;
-
- #- search first usable medium (sorted by medium ordering).
- foreach (sort { $a->{start} <=> $b->{start} } values %{$packages->{mediums}}) {
- next if ref $_ ne 'install_medium'; #- skip empty hash artifact
- unless ($_->selected) {
- #- this medium is not selected, but we have to make sure no package is left
- #- in $id2pkg.
- if (defined $_->{start} && defined $_->{end}) {
- foreach ($_->{start} .. $_->{end}) {
- delete $id2pkg->{$_};
- }
- @l = sort { $a <=> $b } keys %$id2pkg;
- }
- #- anyway, examine the next one.
- next;
- }
- if ($l[0] <= $_->{end}) {
- #- we have a candidate medium, it could be the right one containing
- #- the first package of @l...
- $l[0] >= $_->{start} and $medium = $_, last;
- #- ... but it could be necessary to find the first
- #- medium containing package of @l.
- foreach my $id (@l) {
- $id >= $_->{start} && $id <= $_->{end} and $medium = $_, last;
- }
- $medium and last;
- }
- }
- $medium or return (); #- no more medium usable -> end of installation by returning empty list.
- ($min_id, $max_id) = ($medium->{start}, $medium->{end});
-
- #- Supplementary CD : switch temporarily to "cdrom" method
- my $suppl_CD = $medium->is_suppl_cd;
- local $::o->{method} = do {
- my $cdrom;
- cat_("/proc/mounts") =~ m,(/dev/\S+)\s+(?:/mnt/cdrom|/tmp/image), and $cdrom = $1;
- if (!defined $cdrom) {
- (my $cdromdev) = detect_devices::cdroms();
- $cdrom = $cdromdev->{device};
- log::l("cdrom redetected at $cdrom");
- devices::make($cdrom);
- install_any::ejectCdrom($cdrom) if $::o->{method} eq 'cdrom';
- install_any::mountCdrom(supplCDMountPoint(), $cdrom);
- } else { log::l("cdrom already found at $cdrom") }
- 'cdrom';
- } if $suppl_CD;
- #- it is sure at least one package will be installed according to medium chosen.
- install_any::useMedium($medium->{medium});
- if (install_any::method_allows_medium_change($medium->method)) {
- my $pkg = $packages->{depslist}[$l[0]];
-
- #- force changeCD callback to be called from main process.
- install_any::getFile($pkg->filename, $::o->{method}, $suppl_CD ? supplCDMountPoint() : undef);
- #- close opened handle above.
- install_any::getFile('XXX');
- }
-
- while (defined($id = shift @l)) {
- my @l2 = $id;
-
- while (defined($id = shift @l2)) {
- exists $closure{$id} and next;
- $id >= $min_id && $id <= $max_id or next;
- $closure{$id} = undef;
-
- my $pkg = $packages->{depslist}[$id];
- foreach ($pkg->requires_nosense) {
- foreach (keys %{$packages->{provides}{$_} || {}}) {
- if ($id2pkg->{$_}) {
- push @l2, $_;
- last;
- }
- }
- }
- }
-
- keys %closure >= $limitMinTrans and last;
- }
-
- map { delete $id2pkg->{$_} } grep { $id2pkg->{$_} } sort { $a <=> $b } keys %closure;
-}
-
-sub installCallback {
-# my (undef, $msg, @para) = @_;
-# log::l("$msg: " . join(',', @para));
-}
-
-sub install {
- my ($isUpgrade, $toInstall, $packages, $callback) = @_;
- my %packages;
-
- delete $packages->{rpmdb}; #- make sure rpmdb is closed before.
- #- avoid potential problems with rpm db personality change
- rpmDbCleanLogs();
-
- return if !@$toInstall;
-
- #- for root loopback'ed /boot
- my $loop_boot = fs::loopback::prepare_boot();
-
- #- first stage to extract some important information
- #- about the selected packages. This is used to select
- #- one or many transactions.
- my ($total, $nb);
- foreach my $pkg (@$toInstall) {
- $packages{$pkg->id} = $pkg;
- $nb++;
- $total += to_int($pkg->size); #- do not correct for upgrade!
- }
-
- log::l("pkgs::install $::prefix");
- log::l("pkgs::install the following: ", join(" ", map { $_->name } values %packages));
-
- URPM::read_config_files();
- URPM::add_macro(join(' ', '__dbi_cdb', URPM::expand('%__dbi_cdb'), 'nofsync'));
- my $LOG = openInstallLog();
-
- #- 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,...).
- $callback->($packages, user => undef, install => $nb, $total);
-
- do {
- my @transToInstall = installTransactionClosure($packages, \%packages);
- $nb = values %packages;
-
- #- added to exit typically after last media unselected.
- if ($nb == 0 && scalar(@transToInstall) == 0) {
- cleanHeaders();
-
- fs::loopback::save_boot($loop_boot);
- return;
- }
-
- #- extract headers for parent as they are used by callback.
- extractHeaders(\@transToInstall, $packages->{mediums});
-
- my $close = sub {
- my ($pkg) = @_;
- #- update flag associated to package.
- $pkg->set_flag_installed(1);
- $pkg->set_flag_upgrade(0);
- #- update obsoleted entry.
- my $rejected = $packages->{state}{rejected};
- foreach (keys %$rejected) {
- if (delete $rejected->{$_}{closure}{$pkg->fullname}) {
- %{$rejected->{$_}{closure}} or delete $rejected->{$_};
- }
- }
- };
-
- my ($retry_pkg, $retry_count);
- while ($retry_pkg || @transToInstall) {
-
- if ($::testing) {
- my $size_typical = $nb ? int($total/$nb) : 0;
- foreach (@transToInstall) {
- log::l("i would install ", $_->name, " now");
- my $id = $_->id;
- $callback->($packages, inst => $id, start => 0, $size_typical);
- $callback->($packages, inst => $id, progress => 0, $size_typical);
- $close->($_);
- }
- } else {
- my $db = open_rpm_db_rw() or die "error opening RPM database: ", URPM::rpmErrorString();
- my $trans = $db->create_transaction($::prefix);
- if ($retry_pkg) {
- log::l("opened rpm database for retry transaction of 1 package only");
- $trans->add($retry_pkg, $isUpgrade && allowedToUpgrade($retry_pkg->name))
- or log::l("add failed for " . $retry_pkg->fullname);
- } else {
- log::l("opened rpm database for transaction of " . int(@transToInstall) .
- " new packages, still $nb after that to do");
- $trans->add($_, $isUpgrade && allowedToUpgrade($_->name))
- foreach @transToInstall;
- }
-
- my @checks = $trans->check; @checks and log::l("check failed : " . join("\n ", @checks));
- $trans->order or die "error ordering package list: " . URPM::rpmErrorString();
- $trans->set_script_fd(fileno $LOG);
-
- log::l("rpm transactions start");
- my $fd; #- since we return the "fileno", perl does not know we're still using it, and so closes it, and :-(
- my @probs = $trans->run($packages, force => 1, nosize => 1, callback_open => sub {
- my ($packages, $_type, $id) = @_;
- &$callback;
- my $pkg = defined $id && $packages->{depslist}[$id];
- my $medium = packageMedium($packages, $pkg);
- my $f = $pkg && $pkg->filename;
- print $LOG "$f\n";
- if ($medium->is_suppl_cd) {
- $fd = install_any::getFile($f, $::o->{method}, supplCDMountPoint());
- } else {
- $fd = install_any::getFile($f, $::o->{method}, $medium->{prefix});
- }
- $fd ? fileno $fd : -1;
- }, callback_close => sub {
- my ($packages, $_type, $id) = @_;
- &$callback;
- my $pkg = defined $id && $packages->{depslist}[$id] or return;
- my $check_installed;
- $db->traverse_tag('name', [ $pkg->name ], sub {
- my ($p) = @_;
- $check_installed ||= $pkg->compare_pkg($p) == 0;
- });
- $check_installed or log::l($pkg->name . " not installed, " . URPM::rpmErrorString());
- $check_installed and $close->($pkg);
- }, callback_inst => $callback,
- );
- log::l("transactions done, now trying to close still opened fd");
- install_any::getFile('XXX'); #- close still opened fd.
-
- @probs and die "installation of rpms failed:\n ", join("\n ", @probs);
- }
-
- #- if we are using a retry mode, this means we have to split the transaction with only
- #- one package for each real transaction.
- if (!$retry_pkg) {
- my @badPackages;
- foreach (@transToInstall) {
- if (!$_->flag_installed && packageMedium($packages, $_)->selected && !exists($ignoreBadPkg{$_->name})) {
- push @badPackages, $_;
- log::l("bad package " . $_->fullname);
- } else {
- $_->free_header;
- }
- }
- @transToInstall = @badPackages;
- #- if we are in retry mode, we have to fetch only one package at a time.
- $retry_pkg = shift @transToInstall;
- $retry_count = 3;
- } else {
- my $name;
- if (!$retry_pkg->flag_installed && packageMedium($packages, $retry_pkg)->selected && !exists($ignoreBadPkg{$retry_pkg->name})) {
- if ($retry_count) {
- log::l("retrying installing package " . $retry_pkg->fullname . " alone in a transaction");
- --$retry_count;
- } else {
- log::l("bad package " . $retry_pkg->fullname . " unable to be installed");
- $retry_pkg->set_flag_requested(0);
- $retry_pkg->set_flag_required(0);
- #- keep name to display (problem of displaying ?).
- $name = $retry_pkg->fullname;
- $retry_pkg->free_header;
- $retry_pkg = shift @transToInstall;
- $retry_count = 3;
- #- now it could be safe to display error message ?
- cdie("error installing package list: $name");
- }
- }
- #- check if name has been set (so that the following code has been executed already).
- if (!$name && ($retry_pkg->flag_installed || !$retry_pkg->flag_selected)) {
- $retry_pkg->free_header;
- $retry_pkg = shift @transToInstall;
- $retry_count = 3;
- }
- }
- }
- cleanHeaders();
- } while $nb > 0 && !$pkgs::cancel_install;
-
- log::l("closing install.log file");
- close $LOG;
- eval { fs::mount::umount("/mnt/cdrom") };
-
- cleanHeaders();
-
- fs::loopback::save_boot($loop_boot);
-}
-
-sub upgrade_by_removing_pkgs {
- my ($packages, $callback, $extension, $upgrade_name) = @_;
-
- my $upgrade_data;
- if ($upgrade_name) {
- my @l = glob("$ENV{SHARE_PATH}/upgrade/$upgrade_name*");
- @l == 0 and log::l("upgrade_by_removing_pkgs: no special upgrade data");
- @l > 1 and log::l("upgrade_by_removing_pkgs: many special upgrade data (" . join(' ', @l) . ")");
- $upgrade_data = $l[0];
- }
-
- log::l("upgrade_by_removing_pkgs (extension=$extension, upgrade_data=$upgrade_data)");
-
- #- put the release file in /root/drakx so that we continue an upgrade even if the file has gone
- my $f = common::release_file($::prefix);
- if (dirname($f) eq '/etc') {
- output_p("$::prefix/root/drakx/" . basename($f) . '.upgrading', cat_("$::prefix$f"));
- }
- my $busy_var_tmp = "$::prefix/var/tmp/ensure-rpm-does-not-remove-this-dir";
- touch($busy_var_tmp);
-
- if ($upgrade_data) {
- foreach (glob("$upgrade_data/pre.*")) {
- my $f = '/tmp/' . basename($_);
- cp_af($_, "$::prefix$f");
- run_program::rooted($::prefix, $f);
- unlink "$::prefix$f";
- }
- }
-
- my @was_installed = remove_pkgs_to_upgrade($packages, $callback, $extension);
-
- {
- my @restore_files = qw(/etc/passwd /etc/group /etc/ld.so.conf);
- foreach (@restore_files) {
- rename "$::prefix$_.rpmsave", "$::prefix$_";
- }
- install_any::create_minimal_files();
- unlink $busy_var_tmp;
- }
-
- my %map = map {
- chomp;
- my ($name, @new) = split;
- $name => \@new;
- } $upgrade_data ? cat_("$upgrade_data/map") : ();
-
- log::l("upgrade_by_removing_pkgs: map $upgrade_data/map gave " . (int keys %map) . " rules");
-
- my $log;
- my @to_install = uniq(map {
- $log .= " $_=>" . join('+', @{$map{$_}}) if $map{$_};
- $map{$_} ? @{$map{$_}} : $_;
- } @was_installed);
- log::l("upgrade_by_removing_pkgs special maps:$log");
- log::l("upgrade_by_removing_pkgs: wanted packages: ", join(' ', sort @to_install));
-
- @to_install;
-}
-
-sub removed_pkgs_to_upgrade_file() { "$::prefix/root/drakx/removed_pkgs_to_upgrade" }
-
-sub remove_pkgs_to_upgrade {
- my ($packages, $callback, $extension) = @_;
-
- my @to_remove;
- my @was_installed;
- {
- $packages->{rpmdb} ||= pkgs::rpmDbOpen();
- $packages->{rpmdb}->traverse(sub {
- my ($pkg) = @_;
- if ($pkg->release =~ /$extension$/) {
- push @was_installed, $pkg->name;
- push @to_remove, scalar $pkg->fullname;
- }
- });
- }
- if (-e removed_pkgs_to_upgrade_file()) {
- log::l("removed_pkgs_to_upgrade: using saved installed packages list ", removed_pkgs_to_upgrade_file());
- @was_installed = chomp_(cat_(removed_pkgs_to_upgrade_file()));
- } else {
- log::l("removed_pkgs_to_upgrade: saving (old) installed packages in ", removed_pkgs_to_upgrade_file());
- output_p(removed_pkgs_to_upgrade_file(), map { "$_\n" } @was_installed);
- }
-
- delete $packages->{rpmdb}; #- make sure rpmdb is closed before.
-
- remove(\@to_remove, $callback, noscripts => 1);
-
- @was_installed;
-}
-
-sub remove_marked_ask_remove {
- my ($packages, $callback) = @_;
-
- my @to_remove = keys %{$packages->{state}{ask_remove}} or return;
-
- delete $packages->{rpmdb}; #- make sure rpmdb is closed before.
-
- #- we are not checking depends since it should come when
- #- upgrading a system. although we may remove some functionalities ?
-
- remove(\@to_remove, $callback, force => 1);
-
- delete $packages->{state}{ask_remove}{$_} foreach @to_remove;
-}
-
-sub remove_raw {
- my ($to_remove, $callback, %run_transaction_options) = @_;
-
- log::l("removing: " . join(' ', @$to_remove));
-
- URPM::read_config_files();
- URPM::add_macro(URPM::expand('__dbi_cdb %__dbi_cdb nofsync'));
-
- my $db = open_rpm_db_rw() or die "error opening RPM database: ", URPM::rpmErrorString();
- my $trans = $db->create_transaction($::prefix);
-
- #- stuff remove all packages that matches $p, not a problem since $p has name-version-release format.
- $trans->remove($_) foreach @$to_remove;
-
- $callback->($db, user => undef, remove => scalar @$to_remove);
-
- $trans->run(undef, %run_transaction_options, callback_uninst => $callback);
-}
-sub remove {
- my ($_to_remove, $_callback, %run_transaction_options) = @_;
-
- my @pbs = &remove_raw;
- if (@pbs && !$run_transaction_options{noscripts}) {
- $run_transaction_options{noscripts} = 1;
- @pbs = &remove_raw;
- }
- if (@pbs) {
- die "removing of old rpms failed:\n ", join("\n ", @pbs);
- }
-}
-
-sub selected_leaves {
- my ($packages) = @_;
- my $provides = $packages->{provides};
-
- my @l = grep { $_->flag_requested || $_->flag_installed } @{$packages->{depslist}};
-
- my %required_ids;
- foreach my $pkg (@l) {
- foreach my $req ($pkg->requires_nosense) {
- my $h = $provides->{$req} or next;
- my @provides = my ($provide) = keys %$h;
- @provides == 1 or next;
- if ($provide != (exists $required_ids{$pkg->id} ? $required_ids{$pkg->id} : $pkg->id)) {
-# log::l($packages->{depslist}[$provide]->name . " is not a leaf because required by " . $pkg->name . " (through require $req)");
- #- $pkg requires $req, provided by $provide, so we can skip $provide
- $required_ids{$provide} = $pkg->id;
- }
- }
- }
- [ map { $_->name } grep { ! exists $required_ids{$_->id} } @l ];
-}
-
-sub naughtyServers_list {
- my ($quiet) = @_;
-
- my @_old_81 = qw(
-freeswan
-);
- my @_old_82 = qw(
-vnc-server
-postgresql-server
-);
-
- my @_old_92 = qw(
-postfix ypbind bind ibod
-);
-
- my @_removed_92 = qw(
-mcserv
-samba
-lpr
-);
-
- my @_moved_to_contrib_92 = qw(
-boa
-LPRng
-wu-ftpd
-am-utils
-);
-
- my @new_80 = qw(
-jabber
-am-utils
-boa
-cups
-drakxtools-http
-finger-server
-imap
-leafnode
-ntp
-openssh-server
-pidentd
-proftpd
-rwall
-squid
-webmin
-wu-ftpd
-);
-
- my @new_81 = qw(
-ftp-server-krb5
-telnet-server-krb5
-ypserv
-);
-
- my @new_82 = qw(
-LPRng
-inn
-netatalk
-nfs-utils
-rusers-server
-samba-swat
-tftp-server
-ucd-snmp
-);
-
- my @new_92 = qw(
-clusternfs
-gkrellm-server
-mon
-net-snmp
-openldap-servers
-samba-server
-saned
-vsftpd
-);
-
- my @new_2006 = qw(
-apache-conf
-bpalogin
-cfengine-cfservd
-freeradius
-mDNSResponder
-openslp
-pxe
-routed
-sendmail
-spamassassin-spamd
-);
-
- my @not_warned = qw(
-lisa
-nfs-utils-clients
-portmap
-howl
-); # X server
-
- (@new_80, @new_81, @new_82, @new_92, @new_2006, if_(!$quiet, @not_warned));
-}
-
-sub naughtyServers {
- my ($packages) = @_;
-
- grep {
- my $p = packageByName($packages, $_);
- $p && $p->flag_selected;
- } naughtyServers_list('quiet');
-}
-
-package install_medium;
-
-use strict;
-
-#- list of fields :
-#- descr (text description)
-#- end (last rpm id)
-#- fakemedium ("$descr ($method$medium_name)", used locally by urpmi)
-#- hdlist
-#- hdlist_size
-#- ignored
-#- issuppl (is a supplementary media)
-#- key_ids (hashref, values are key ids)
-#- medium (number of the medium)
-#- method
-#- prefix
-#- finalprefix (for install_urpmi)
-#- pubkey
-#- rpmsdir
-#- selected
-#- start (first rpm id)
-#- synthesis_hdlist_size
-#- update (for install_urpmi)
-#- with_hdlist (for install_urpmi)
-
-#- create a new medium
-sub new { my ($class, %h) = @_; bless \%h, $class }
-
-#- retrieve medium by id (usually a number) or an empty placeholder
-sub by_id {
- my ($medium_id, $o_packages) = @_;
- $o_packages = $::o->{packages} unless defined $o_packages;
- defined $o_packages->{mediums}{$medium_id}
- ? $o_packages->{mediums}{$medium_id}
- #- if the medium is not known, return a placeholder
- : bless { invalid => 1, medium => $medium_id };
-}
-
-#- is this medium a supplementary medium ?
-sub is_suppl { my ($self) = @_; $self->{issuppl} }
-
-sub mark_suppl { my ($self) = @_; $self->{issuppl} = 1 }
-
-#- is this medium a supplementary CD ?
-sub is_suppl_cd { my ($self) = @_; $self->{method} eq 'cdrom' && $self->is_suppl }
-
-sub method {
- my ($self) = @_;
- $self->{method};
-}
-
-sub selected { my ($self) = @_; $self->{selected} }
-sub select { my ($self) = @_; $self->{selected} = 1 }
-#- unselect, keep it mind it was unselected
-sub refuse { my ($self) = @_; $self->{selected} = undef }
-
-#- XXX this function seems to be obsolete
-sub ignored { my ($self) = @_; $self->{ignored} }
-
-#- guess the CD number for this media.
-#- XXX lots of heuristics here, must design this properly
-sub get_cd_number {
- my ($self) = @_;
- my $description = $self->{descr};
- (my $cd) = $description =~ /\b(?:CD|DVD) ?(\d+)\b/i;
- if (!$cd) { #- test for single unnumbered DVD
- $cd = 1 if $description =~ /\bDVD\b/i;
- }
- if (!$cd) { #- test for mini-ISO
- $cd = 1 if $description =~ /\bmini.?cd\b/i;
- }
- #- don't mix suppl. cds with regular ones
- if ($description =~ /suppl/i) { $cd += 100 }
- $cd;
-}
-
-1;
diff --git a/perl-install/printer/STATUS b/perl-install/printer/STATUS
deleted file mode 100644
index e9c5bc205..000000000
--- a/perl-install/printer/STATUS
+++ /dev/null
@@ -1,5 +0,0 @@
-printerdrake status
-
-- printer::printerdrake still needs to be splited/cleaned
-
-- printer::printerdrake should probably be renamed printer::gui
diff --git a/perl-install/printer/common.pm b/perl-install/printer/common.pm
deleted file mode 100644
index 9d8f4d9a5..000000000
--- a/perl-install/printer/common.pm
+++ /dev/null
@@ -1,86 +0,0 @@
-package printer::common;
-
-use strict;
-use vars qw(@ISA @EXPORT);
-
-@ISA = qw(Exporter);
-@EXPORT = qw(addentry addsection removeentry removesection);
-
-
-sub addentry {
- my ($section, $entry, $filecontent) = @_;
- my $sectionfound = 0;
- my $entryinserted = 0;
- my @lines = split("\n", $filecontent);
- foreach (@lines) {
- if (!$sectionfound) {
- $sectionfound = 1 if /^\s*\[\s*$section\s*\]\s*$/;
- } else {
- if (!/^\s*$/ && !/^\s*;/) { #-#
- $_ = "$entry\n$_";
- $entryinserted = 1;
- last;
- }
- }
- }
- push(@lines, $entry) if $sectionfound && !$entryinserted;
- return join "\n", @lines;
-}
-
-sub addsection {
- my ($section, $filecontent) = @_;
- my @lines = split("\n", $filecontent);
- foreach (@lines) {
- # section already there, nothing to be done
- return $filecontent if /^\s*\[\s*$section\s*\]\s*$/;
- }
- return $filecontent . "\n[$section]";
-}
-
-sub removeentry {
- my ($section, $entry, $filecontent) = @_;
- my $sectionfound = 0;
- my $done = 0;
- my @lines = split("\n", $filecontent);
- foreach (@lines) {
- $_ = "$_\n";
- next if $done;
- if (!$sectionfound) {
- $sectionfound = 1 if /^\s*\[\s*$section\s*\]\s*$/;
- } else {
- if (/^\s*\[.*\]\s*$/) { # Next section
- $done = 1;
- } elsif (/^\s*$entry/) {
- $_ = "";
- $done = 1;
- }
- }
- }
- return join "", @lines;
-}
-
-sub removesection {
- my ($section, $filecontent) = @_;
- my $sectionfound = 0;
- my $done = 0;
- my @lines = split("\n", $filecontent);
- foreach (@lines) {
- $_ = "$_\n";
- next if $done;
- if (!$sectionfound) {
- if (/^\s*\[\s*$section\s*\]\s*$/) {
- $_ = "";
- $sectionfound = 1;
- }
- } else {
- if (/^\s*\[.*\]\s*$/) { # Next section
- $done = 1;
- } else {
- $_ = "";
- }
- }
- }
- return join "", @lines;
-}
-
-1;
diff --git a/perl-install/printer/cups.pm b/perl-install/printer/cups.pm
deleted file mode 100644
index eb443482e..000000000
--- a/perl-install/printer/cups.pm
+++ /dev/null
@@ -1,147 +0,0 @@
-package printer::cups;
-
-use strict;
-
-use printer::data;
-use run_program;
-use common;
-
-
-#------------------------------------------------------------------------------
-
-sub lpstat_lpv() {
-
- # Get a list of remotely defined print queues, with "Description" and
- # "Location"
-
- # Info to return
- my @items;
-
- # Hash to simplify the adding of the URIs
- my $itemshash;
-
- # Run the "lpstat" command in a mode to give as much info about the
- # print queues as possible
- my @lpstat = run_program::rooted_get_stdout
- ($::prefix, 'lpstat', '-l', '-p', '-v');
-
- my $currentitem = -1;
- for my $line (@lpstat) {
- chomp($line);
- if ($line !~ m!^\s*$!) {
- if ($line =~ m!^printer\s+(\S+)\s+.*\b(enabled|disabled)\b!) {
- # Beginning of new printer's entry
- my $name = $1;
- my $state = $2;
- push(@items, {});
- $currentitem = $#items;
- $itemshash->{$name} = $currentitem;
- $items[$currentitem]{queuename} ||= $name;
- $items[$currentitem]{state} ||= $state;
- } elsif ($line =~ m!^\s+Description:\s+(\S.*)$!) {
- # Description field
- if ($currentitem != -1) {
- $items[$currentitem]{description} ||= $1;
- }
- } elsif ($line =~ m!^\s+Location:\s+(\S.*)$!) {
- # Location field
- if ($currentitem != -1) {
- $items[$currentitem]{location} ||= $1;
- }
- } elsif ($line =~ m!^device\s+for\s+(\S+):\s+(\S.*)$!) {
- # "device for ..." line, extract URI
- my $name = $1;
- my $uri = $2;
- if (defined($itemshash->{$name})) {
- if ($uri !~ /:/) { $uri = "file:" . $uri }
- $currentitem = $itemshash->{$name};
- if (($currentitem <= $#items) &&
- ($items[$currentitem]{queuename} eq $name)) {
- $items[$currentitem]{uri} ||= $uri;
- if ($uri =~ m!^ipp://([^/:]+)[:/]!) {
- $items[$currentitem]{ipp} = $1;
- }
- }
- }
- }
- }
- }
- return @items;
-}
-
-sub lpstat_v() {
- map {
- if (my ($queuename, $uri) = m/^\s*device\s+for\s+([^:\s]+):\s*(\S+)\s*$/) {
- +{ queuename => $queuename, uri => $uri, if_($uri =~ m!^ipp://([^/:]+)[:/]!, ipp => $1) };
- } else {
- ();
- }
- } run_program::rooted_get_stdout($::prefix, 'lpstat', '-v');
-}
-
-sub lpinfo_v() {
- map {
- if (my ($type, $uri) = m/^\s*(\S+)\s+(\S+)\b/) {
- if ($uri =~ m!:/!) {
- $uri;
- } elsif ($type =~ m/network/i) {
- "$uri://";
- } else {
- "$uri:/";
- }
- } else {
- ();
- }
- } run_program::rooted_get_stdout($::prefix, 'lpinfo', '-v');
-}
-
-sub read_printer_list {
- my ($printer) = @_;
- # This function reads in a list of all printers which the local CUPS
- # daemon currently knows, including remote ones.
- map {
- my $comment =
- $_->{ipp} && !$printer->{configured}{$_->{queuename}} ?
- N("(on %s)", $_->{ipp}) : N("(on this machine)");
- "$_->{queuename} $comment";
- } lpstat_v();
-}
-
-sub get_formatted_remote_queues {
- my ($printer) = @_;
-
- # This function reads in a list of all remote printers which the local
- # CUPS daemon knows due to broadcasting of remote servers or
- # "BrowsePoll" entries in the local /etc/cups/cupsd.conf/
- map {
- join('!', if_($printer->{expert}, N("CUPS")), N("Configured on other machines"), $_);
- } map {
- my $comment = N("On CUPS server \"%s\"", ($_->{ipp} ? $_->{ipp} : $printer->{remote_cups_server})) . ($_->{queuename} eq $printer->{DEFAULT} ? N(" (Default)") : "");
- "$_->{queuename}: $comment";
- } grep {
- !$printer->{configured}{$_->{queuename}};
- } lpstat_v();
-}
-
-sub get_remote_queues {
- my ($printer) = @_;
- # The following code reads in a list of all remote printers which the
- # local CUPS daemon knows due to broadcasting of remote servers or
- # "BrowsePoll" entries in the local /etc/cups/cupsd.conf
- map {
- "$_->{queuename}|$_->{ipp}";
- } grep {
- $_->{ipp} && !$printer->{configured}{$_->{queuename}};
- } lpstat_v();
-}
-
-sub queue_enabled {
- my ($queue) = @_;
- 0 != grep {
- /\b$queue\b.*\benabled\b/i;
- } run_program::rooted_get_stdout($::prefix, 'lpstat', '-p', $queue);
-}
-
-
-
-1;
diff --git a/perl-install/printer/data.pm b/perl-install/printer/data.pm
deleted file mode 100644
index 0d650ac02..000000000
--- a/perl-install/printer/data.pm
+++ /dev/null
@@ -1,177 +0,0 @@
-package printer::data;
-
-use strict;
-use common;
-use vars qw(@ISA @EXPORT);
-
-@ISA = qw(Exporter);
-@EXPORT = qw(%spoolers %spooler_inv %shortspooler_inv
- $kernelversion $usbprintermodule $lib
- $commonpackages $gimpprintingpackages $gnomecupspackages
- $localqueuepackages);
-
-
-# Kernel-specific data
-our $kernelversion = `uname -r 2>/dev/null`;
-$kernelversion =~ s/^(\s*)(\d+\.\d+)(\..*)$/$2/;
-chomp $kernelversion;
-
-our $usbprintermodule = ($kernelversion eq '2.6' ? "usblp" : "printer");
-
-# Architecture-specific data
-our $lib = arch() =~ /x86_64/ ? "lib64" : "lib";
-
-# Packages which are always needed to run printerdrake
-our $commonpackages = [ [ 'foomatic-db-engine' ],
- [ '/usr/bin/foomatic-configure' ] ];
-
-# Packages which are needed to print with the GIMP
-our $gimpprintingpackages = [ [ 'gutenprint-gimp2' ],
- [ "/usr/$lib/gimp/2.0/plug-ins/print" ] ];
-
-# Packages which are needed for CUPS under GNOME
-our $gnomecupspackages = [ [ 'desktop-printing' ],
- [ '/usr/bin/eggcups' ] ];
-
-# Packages which are needed to create and manage local print queues
-our $localqueuepackages = [ [ 'foomatic-filters', 'foomatic-db',
- 'foomatic-db-hpijs', 'foomatic-db-engine',
- 'printer-filters',
- 'printer-utils', 'printer-testpages',
- 'ghostscript', 'hplip-hpijs', 'gutenprint-ijs',
- 'gutenprint-foomatic', 'gutenprint-escputil',
- 'postscript-ppds',
- 'hplip-model-data', 'nmap', 'scli' ],
- [qw(/usr/bin/foomatic-rip
- /usr/share/foomatic/db/source/driver/ljet4.xml
- /usr/share/foomatic/db/source/driver/hpijs.xml
- /usr/bin/foomatic-configure
- /usr/bin/pnm2ppa
- /usr/bin/getusbprinterid
- /usr/share/printer-testpages/testprint.ps
- /usr/bin/gs-common
- /usr/bin/hpijs
- /usr/share/man/man1/ijsgutenprint.1.bz2
- /usr/share/foomatic/db/source/driver/gutenprint-ijs.5.0.xml
- /usr/bin/escputil
- /usr/share/cups/model/postscript.ppd.gz
- /usr/share/hplip/data/xml/models.xml
- /usr/bin/nmap
- /usr/bin/scli)] ];
-
-# Spooler-specific data
-our %spoolers = ('pdq' => {
- 'help' => "/usr/bin/pdq -h -P %s 2>&1 |",
- 'print_command' => 'lpr-pdq',
- 'print_gui' => 'xpdq',
- 'long_name' => N("PDQ - Print, Do not Queue"),
- 'short_name' => N("PDQ"),
- 'local_queues' => 1,
- 'packages2add' => [ [ 'pdq' ], [qw(/usr/bin/pdq /usr/X11R6/bin/xpdq)] ],
- 'alternatives' => [
- [ 'lpr', '/usr/bin/lpr-pdq' ],
- [ 'lpq', '/usr/bin/lpq-foomatic' ],
- [ 'lprm', '/usr/bin/lprm-foomatic' ]
- ],
- },
- 'lpd' => {
- 'print_command' => 'lpr-lpd',
- 'print_gui' => 'lpr-lpd',
- 'long_name' => N("LPD - Line Printer Daemon"),
- 'short_name' => N("LPD"),
- 'boot_spooler' => 'lpd',
- 'service' => 'lpd',
- 'local_queues' => 1,
- 'packages2add' => [ [qw(lpr net-tools a2ps ImageMagick)],
- [qw(/usr/sbin/lpf
- /usr/sbin/lpd
- /sbin/ifconfig
- /usr/bin/a2ps
- /usr/bin/convert)] ],
- 'packages2rm' => [ 'LPRng', "/usr/$lib/filters/lpf" ],
- 'alternatives' => [
- [ 'lpr', '/usr/bin/lpr-lpd' ],
- [ 'lpq', '/usr/bin/lpq-lpd' ],
- [ 'lprm', '/usr/bin/lprm-lpd' ],
- [ 'lpc', '/usr/sbin/lpc-lpd' ]
- ]
- },
- 'lprng' => {
- 'print_command' => 'lpr-lpd',
- 'print_gui' => 'lpr-lpd',
- 'long_name' => N("LPRng - LPR New Generation"),
- 'short_name' => N("LPRng"),
- 'boot_spooler' => 'lpd',
- 'service' => 'lpd',
- 'local_queues' => 1,
- 'packages2add' => [ [qw(LPRng net-tools a2ps ImageMagick)],
- ["/usr/$lib/filters/lpf",
- "/usr/sbin/lpd",
- "/sbin/ifconfig",
- "/usr/bin/a2ps",
- "/usr/bin/convert"] ],
- 'packages2rm' => [ 'lpr', '/usr/sbin/lpf' ],
- 'alternatives' => [
- [ 'lpr', '/usr/bin/lpr-lpd' ],
- [ 'lpq', '/usr/bin/lpq-lpd' ],
- [ 'lprm', '/usr/bin/lprm-lpd' ],
- [ 'lp', '/usr/bin/lp-lpd' ],
- [ 'cancel', '/usr/bin/cancel-lpd' ],
- [ 'lpstat', '/usr/bin/lpstat-lpd' ],
- [ 'lpc', '/usr/sbin/lpc-lpd' ]
- ]
- },
- 'cups' => {
- 'help' => "/usr/bin/lphelp %s |",
- 'print_command' => 'lpr-cups',
- 'print_gui' => 'xpp',
- 'long_name' => N("CUPS - Common Unix Printing System"),
- 'short_name' => N("CUPS"),
- 'boot_spooler' => 'cups',
- 'service' => 'cups',
- 'local_queues' => 1,
- 'packages2add' => [ ['cups', 'net-tools', 'xpp', 'cups-drivers', 'gutenprint-cups',
- $::isInstall ? 'curl' : 'webfetch'],
- [ "/usr/$lib/cups/cgi-bin/printers.cgi",
- "/sbin/ifconfig",
- "/usr/bin/xpp",
- "/usr/$lib/cups/filter/rastertolxx74",
- "/usr/$lib/cups/filter/commandtoepson",
- $::isInstall ||
- !(-x '/usr/bin/wget') ?
- '/usr/bin/curl' :
- '/usr/bin/wget' ] ],
- 'alternatives' => [
- [ 'lpr', '/usr/bin/lpr-cups' ],
- [ 'lpq', '/usr/bin/lpq-cups' ],
- [ 'lprm', '/usr/bin/lprm-cups' ],
- [ 'lp', '/usr/bin/lp-cups' ],
- [ 'cancel', '/usr/bin/cancel-cups' ],
- [ 'lpstat', '/usr/bin/lpstat-cups' ],
- [ 'lpc', '/usr/sbin/lpc-cups' ]
- ]
- },
- 'rcups' => {
- 'help' => "/usr/bin/lphelp %s |",
- 'print_command' => 'lpr-cups',
- 'print_gui' => 'xpp',
- 'long_name' => N("CUPS - Common Unix Printing System (remote server)"),
- 'short_name' => N("Remote CUPS"),
- 'local_queues' => 0,
- 'packages2add' => [ ['cups-common', 'xpp'],
- ['/usr/bin/lpr-cups',
- '/usr/bin/xpp'] ],
- 'alternatives' => [
- [ 'lpr', '/usr/bin/lpr-cups' ],
- [ 'lpq', '/usr/bin/lpq-cups' ],
- [ 'lprm', '/usr/bin/lprm-cups' ],
- [ 'lp', '/usr/bin/lp-cups' ],
- [ 'cancel', '/usr/bin/cancel-cups' ],
- [ 'lpstat', '/usr/bin/lpstat-cups' ],
- [ 'lpc', '/usr/sbin/lpc-cups' ]
- ]
- }
- );
-our %spooler_inv = map { $spoolers{$_}{long_name} => $_ } keys %spoolers;
-
-our %shortspooler_inv = map { $spoolers{$_}{short_name} => $_ } keys %spoolers;
diff --git a/perl-install/printer/default.pm b/perl-install/printer/default.pm
deleted file mode 100644
index 41da25c56..000000000
--- a/perl-install/printer/default.pm
+++ /dev/null
@@ -1,64 +0,0 @@
-package printer::default;
-
-use strict;
-use run_program;
-use common;
-
-#-configuration directory of Foomatic
-my $FOOMATICCONFDIR = "/etc/foomatic";
-#-location of the file containing the default spooler's name
-my $FOOMATIC_DEFAULT_SPOOLER = "$FOOMATICCONFDIR/defaultspooler";
-
-sub set_printer {
- my ($printer) = $_[0];
- my $spooler = $printer->{SPOOLER};
- if ($spooler eq "rcups") {
- run_program::rooted($::prefix, "lpoptions",
- "-d", $printer->{DEFAULT}) or return 0;
- } else {
- run_program::rooted($::prefix, "foomatic-configure",
- "-D", "-q", "-s", $spooler,
- "-n", $printer->{DEFAULT}) or return 0;
- }
- return 1;
-}
-
-sub get_printer {
- my $printer = $_[0];
- my $spooler = $printer->{SPOOLER};
- $spooler = "cups" if $spooler eq "rcups";
- local *F;
- open F, ($::testing ? $::prefix : "chroot $::prefix/ ") .
- "foomatic-configure -Q -q -s $spooler |" or return undef;
- my $line;
- while ($line = <F>) {
- if ($line =~ m!^\s*<defaultqueue>(.*)</defaultqueue>\s*$!) {
- return $1;
- }
- }
- return undef;
-}
-
-sub printer_type() { "LOCAL" }
-
-sub get_spooler () {
- if (-f "$::prefix$FOOMATIC_DEFAULT_SPOOLER") {
- my $spool = cat_("$::prefix$FOOMATIC_DEFAULT_SPOOLER");
- chomp $spool;
- if ($spool =~ /cups/) {
- my ($daemonless_cups, $_remote_cups_server) =
- printer::main::read_client_conf();
- $spool = ($daemonless_cups > 0 ? "rcups" : "cups");
- }
- return $spool if $spool =~ /cups|lpd|lprng|pdq/;
- }
-}
-
-sub set_spooler ($) {
- my ($printer) = @_;
- # Mark the default driver in a file
- output_p("$::prefix$FOOMATIC_DEFAULT_SPOOLER", $printer->{SPOOLER});
-}
-
-
-1;
diff --git a/perl-install/printer/detect.pm b/perl-install/printer/detect.pm
deleted file mode 100644
index d02e89ac3..000000000
--- a/perl-install/printer/detect.pm
+++ /dev/null
@@ -1,637 +0,0 @@
-package printer::detect;
-
-use strict;
-use common;
-use modules;
-use detect_devices;
-use printer::data;
-
-sub local_detect() {
- modules::any_conf->read->get_probeall("usb-interface") and eval { modules::load($usbprintermodule) };
- # Reload parallel port modules only when we were not called by
- # automatic setup of print queues, to avoid recursive calls
- if ($::autoqueue) {
- whatUsbport();
- } else {
- eval { modules::unload(qw(lp parport_pc ppdev parport)) }; #- on kernel 2.4 parport has to be unloaded to probe again
- eval { modules::load(qw(ppdev parport_pc lp)) }; #- take care as not available on 2.4 kernel (silent error).
- whatPrinter();
- }
-}
-
-sub net_detect { whatNetPrinter(1, 0, @_) }
-
-sub net_smb_detect { whatNetPrinter(0, 1, @_) }
-
-sub detect {
- local_detect(), whatNetPrinter(1, 1, @_);
-}
-
-
-#-CLASS:PRINTER;
-#-MODEL:HP LaserJet 1100;
-#-MANUFACTURER:Hewlett-Packard;
-#-DESCRIPTION:HP LaserJet 1100 Printer;
-#-COMMAND SET:MLC,PCL,PJL;
-sub whatPrinter() {
- my @res = (whatParport(), whatUsbport());
- grep { $_->{val}{CLASS} eq "PRINTER" } @res;
-}
-
-sub whatParport() {
- my @res;
- my $i = 0;
- foreach (sort { $a =~ /(\d+)/; my $m = $1; $b =~ /(\d+)/; my $n = $1; $m <=> $n } `ls -1d /proc/parport/[0-9]* /proc/sys/dev/parport/parport[0-9]* 2>/dev/null`) {
- chomp;
- my $elem = {};
- my $F;
- open $F, "$_/autoprobe" or next;
- {
- local $_;
- my $itemfound = 0;
- while (<$F>) {
- chomp;
- if (/(.*):(.*);/) { #-#
- $elem->{$1} = $2;
- $elem->{$1} =~ s/Hewlett[-\s_]Packard/HP/;
- $elem->{$1} =~ s/HEWLETT[-\s_]PACKARD/HP/;
- $itemfound = 1;
- # Add IEEE-1284 device ID string
- $elem->{IEEE1284} .= $_;
- }
- }
- # Some parallel printers miss the "CLASS" field
- $elem->{CLASS} = 'PRINTER'
- if $itemfound && !defined($elem->{CLASS});
- }
- push @res, { port => "/dev/lp$i", val => $elem };
- $i ++;
- }
- @res;
-}
-
-sub whatPrinterPort() {
- grep { detect_devices::tryWrite($_) } qw(/dev/lp0 /dev/lp1 /dev/lp2 /dev/usb/lp0 /dev/usb/lp1 /dev/usb/lp2 /dev/usb/lp3 /dev/usb/lp4 /dev/usb/lp5 /dev/usb/lp6 /dev/usb/lp7 /dev/usb/lp8 /dev/usb/lp9);
-}
-
-sub whatUsbport() {
- # The printer manufacturer and model names obtained with the usb_probe()
- # function were very messy, once there was a lot of noise around the
- # manufacturers name ("Inc.", "SA", "International", ...) and second,
- # all Epson inkjets answered with the name "Epson Stylus Color 760" which
- # lead many newbies to install their Epson Stylus Photo XXX as an Epson
- # Stylus Color 760 ...
- #
- # This routine based on an ioctl request gives very clean and correct
- # manufacturer and model names, so that they are easily matched to the
- # printer entries in the Foomatic database
- my @res;
- foreach my $i (0..15) {
- my $port = "/dev/usb/lp$i";
- my $realport = devices::make($port);
- next if !$realport;
- next if ! -r $realport;
- foreach my $j (1..3) {
- open(my $PORT, $realport) or next;
- my $idstr = "";
- # Calculation of IOCTL function 0x84005001 (to get device ID
- # string):
- # len = 1024
- # IOCNR_GET_DEVICE_ID = 1
- # LPIOC_GET_DEVICE_ID(len) =
- # _IOC(_IOC_READ, 'P', IOCNR_GET_DEVICE_ID, len)
- # _IOC(), _IOC_READ as defined in /usr/include/asm/ioctl.h
- # Use "eval" so that program does not stop when IOCTL fails
- eval {
- my $output = "\0" x 1024;
- ioctl($PORT, 0x84005001, $output);
- $idstr = $output;
- } or do {
- close $PORT;
- next;
- };
- close $PORT;
- # Cut resulting string to its real length
- my $length = ord(substr($idstr, 1, 1)) +
- (ord(substr($idstr, 0, 1)) << 8);
- $idstr = substr($idstr, 2, $length-2);
- # Remove non-printable characters
- $idstr =~ tr/[\x00-\x1f]/./;
- # If we do not find any item in the ID string, we try to read
- # it again
- my $itemfound = 0;
- # Extract the printer data from the ID string
- my ($manufacturer, $model, $serialnumber, $description, $commandset) =
- ("", "", "", "", "");
- my ($sku);
- if ($idstr =~ /CLS:([^;]+);/ || $idstr =~ /CLASS:([^;]+);/) {
- $itemfound = 1;
- }
- if ($idstr =~ /MFG:([^;]+);/ || $idstr =~ /MANUFACTURER:([^;]+);/) {
- $manufacturer = $1;
- $manufacturer =~ s/Hewlett[-\s_]Packard/HP/;
- $manufacturer =~ s/HEWLETT[-\s_]PACKARD/HP/;
- $itemfound = 1;
- }
- # For HP's multi-function devices the real model name is in the "SKU"
- # field. So use this field with priority for $model when it exists.
- if ($idstr =~ /MDL:([^;]+);/ || $idstr =~ /MODEL:([^;]+);/) {
- $model ||= $1;
- $itemfound = 1;
- }
- if ($idstr =~ /SKU:([^;]+);/) {
- $sku = $1;
- $itemfound = 1;
- }
- if ($idstr =~ /DES:([^;]+);/ || $idstr =~ /DESCRIPTION:([^;]+);/) {
- $description = $1;
- $description =~ s/Hewlett[-\s_]Packard/HP/;
- $description =~ s/HEWLETT[-\s_]PACKARD/HP/;
- $itemfound = 1;
- }
- if (($idstr =~ /SE*R*N:([^;]+);/) ||
- ($idstr =~ /SN:([^;]+);/)) {
- $serialnumber = $1;
- $itemfound = 1;
- }
- if ($idstr =~ /CMD:([^;]+);/ ||
- $idstr =~ /COMMAND\s*SET:([^;]+);/) {
- $commandset ||= $1;
- $itemfound = 1;
- }
- # Nothing found? Try again if not in the third attempt,
- # after the third attempt give up
- next if !$itemfound;
- # Was there a manufacturer and a model in the string?
- if ($manufacturer eq "" || $model eq "") {
- $manufacturer = "";
- $model = N("Unknown model");
- }
- # No description field? Make one out of manufacturer and model.
- if ($description eq "") {
- $description = "$manufacturer $model";
- }
- # Store this auto-detection result in the data structure
- push @res, { port => $port, val =>
- { CLASS => 'PRINTER',
- MODEL => $model,
- MANUFACTURER => $manufacturer,
- DESCRIPTION => $description,
- SERIALNUMBER => $serialnumber,
- 'COMMAND SET' => $commandset,
- SKU => $sku,
- IEEE1284 => $idstr,
- } };
- last;
- }
- }
- @res;
-}
-
-sub whatNetPrinter {
- my ($network, $smb, $timeout) = @_;
-
- my (@res);
-
- # Set timeouts for "nmap"
- $timeout = 4000 if !$timeout;
- my $irtimeout = $timeout / 2;
-
- # Which ports should be scanned?
- my @portstoscan;
- push @portstoscan, "139" if $smb;
- push @portstoscan, "4010", "4020", "4030", "5503", "9100-9104" if $network;
-
- return () if $#portstoscan < 0;
- my $portlist = join ",", @portstoscan;
-
- # Which hosts should be scanned?
- # (Applying nmap to a whole network is very time-consuming,
- # because nmap waits for a certain timeout period on non-existing
- # hosts, so we get a lists of existing hosts by pinging the
- # broadcast addresses for existing hosts and then scanning only
- # them, which is much faster)
- my @hostips = getIPsInLocalNetworks();
- return () if $#hostips < 0;
- my $hostlist = join " ", @hostips;
-
- # Scan network for printers, the timeout settings are there to avoid
- # delays caused by machines blocking their ports with a firewall
- local *F;
- open F, ($::testing ? "" : "chroot $::prefix/ ") .
- qq(/bin/sh -c "export LC_ALL=C; nmap -r -P0 --host_timeout $timeout --initial_rtt_timeout $irtimeout -p $portlist $hostlist" 2> /dev/null |)
- or return @res;
- my ($host, $ip, $port, $modelinfo, $namechecked) = ("", "", "", "", 0);
- while (my $line = <F>) {
- chomp $line;
-
- # head line of the report of a host with the ports in question open
- if (($line =~ m/^\s*Interesting\s+ports\s+on\s+(\S*)\s*\((\S+)\)\s*:\s*$/i) ||
- ($line =~ m/^\s*Interesting\s+ports\s+on\s+(\S+)\s*:\s*$/i)) {
- ($host, $ip) = ($1, $2);
- $ip = $host if !$ip;
- $host = $ip if $host eq "";
- $port = "";
- $namechecked = 0;
-
- undef $modelinfo;
-
- } elsif ($line =~ m!^\s*(\d+)/\S+\s+open\s+!i) {
- next if $ip eq "";
- $port = $1;
-
- # Check integrity of the host name (work around DNS problems
- # by using IP if host name is broken)
- if (!$namechecked && ($host ne $ip)) {
- $namechecked = 1; # Do not check more than once
- my $packedip = gethostbyname("$host");
- my ($a,$b,$c,$d) = unpack('C4',$packedip);
- my $ipfromdns = sprintf("%d.%d.%d.%d", $a, $b, $c, $d);
- $host = $ip if $ip ne $ipfromdns;
- }
- # Now we have all info for one printer
- # Store this auto-detection result in the data structure
-
- # Determine the protocol by the port number
-
- # SMB/Windows
- if ($port eq "139") {
- my @shares = getSMBPrinterShares($ip);
- foreach my $share (@shares) {
- push @res, { port => "smb://$host/$share->{name}",
- val => { CLASS => 'PRINTER',
- MODEL => N("Unknown model"),
- MANUFACTURER => "",
- DESCRIPTION => $share->{description},
- SERIALNUMBER => ""
- }
- };
- }
- } else {
- if (!defined($modelinfo)) {
- # SNMP request to auto-detect model
- $modelinfo = getSNMPModel($ip);
- }
- if (defined($modelinfo)) {
- push @res, { port => "socket://$host:$port",
- val => $modelinfo
- };
- }
- }
- }
- }
- close F;
- @res;
-}
-
-sub getNetworkInterfaces() {
-
- # subroutine determines the list of all network interfaces reported
- # by "ifconfig", except "lo".
-
- # Return an empty list if no network is running
- return () unless network_running();
-
- my @interfaces;
-
- local *IFCONFIG_OUT;
- open IFCONFIG_OUT, ($::testing ? "" : "chroot $::prefix/ ") .
- '/bin/sh -c "export LC_ALL=C; ifconfig" 2> /dev/null |' or return ();
- while (my $readline = <IFCONFIG_OUT>) {
- # New entry ...
- if ($readline =~ /^(\S+)\s/) {
- my $dev = $1;
- if ($dev ne "lo") {
- push @interfaces, $dev;
- }
- }
- }
- close(IFCONFIG_OUT);
-
- @interfaces;
-}
-
-sub getIPsOfLocalMachine() {
-
- # subroutine determines all IPs which point to the local machine,
- # except 127.0.0.1 (localhost).
-
- # Return an empty list if no network is running
- return () unless network_running();
-
- # Read the output of "ifconfig" to determine the broadcast addresses of
- # the local networks
- my $dev_is_realnet = 0;
- my @local_ips;
- my $current_ip = "";
-
- local *IFCONFIG_OUT;
- open IFCONFIG_OUT, ($::testing ? "" : "chroot $::prefix/ ") .
- '/bin/sh -c "export LC_ALL=C; ifconfig" 2> /dev/null |' or return ();
- while (my $readline = <IFCONFIG_OUT>) {
- # New entry ...
- if ($readline =~ /^(\S+)\s/) {
- my $dev = $1;
- # ... for a real network (not lo = localhost)
- $dev_is_realnet = $dev ne 'lo';
- # delete previous address
- $current_ip = "";
- }
- # Are we in the important line now?
- if ($readline =~ /\sinet addr:([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)\s/) {
- # Rip out the IP address
- $current_ip = $1;
-
- # Are we in an entry for a real network?
- if ($dev_is_realnet) {
- # Store current IP address
- push @local_ips, $current_ip;
- }
- }
- }
- close(IFCONFIG_OUT);
- @local_ips;
-}
-
-sub getIPsInLocalNetworks() {
-
- # subroutine determines the list of all hosts reachable in the local
- # networks by means of pinging the broadcast addresses.
-
- # Return an empty list if no network is running
- return () unless network_running();
-
- # Read the output of "ifconfig" to determine the broadcast addresses of
- # the local networks
- my $dev_is_localnet = 0;
- my $local_nets = {};
- my $dev;
- local *IFCONFIG_OUT;
- open IFCONFIG_OUT, ($::testing ? "" : "chroot $::prefix/ ") .
- '/bin/sh -c "export LC_ALL=C; ifconfig" 2> /dev/null |' or return ();
- while (my $readline = <IFCONFIG_OUT>) {
- # New entry ...
- if ($readline =~ /^(\S+)\s/) {
- $dev = $1;
- # ... for a local network (eth = ethernet,
- # vmnet = VMWare,
- # ethernet card connected to ISP excluded)?
- $dev_is_localnet = $dev =~ /^eth/ || $dev =~ /^vmnet/;
- }
- if ($dev_is_localnet) {
- # Are we in the important line now?
- if ($readline =~ /\saddr:([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)\s/) {
- # Rip out the broadcast IP address
- $local_nets->{$dev}{ip} = $1;
- }
- if ($readline =~ /\sBcast:([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)\s/) {
- # Rip out the broadcast IP address
- $local_nets->{$dev}{bcast} = $1;
- }
- if ($readline =~ /\sMask:([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)\s/) {
- # Rip out the broadcast IP address
- $local_nets->{$dev}{mask} = $1;
- }
- }
- }
- close(IFCONFIG_OUT);
-
- # Now find all addresses in the local networks which we will investigate
- my @addresses;
- foreach my $dev (keys %{$local_nets}) {
- my $ip = $local_nets->{$dev}{ip};
- my $bcast = $local_nets->{$dev}{bcast};
- my $mask = $local_nets->{$dev}{mask};
- if ($mask =~ /255.255.255.(\d+)/) {
- # Small network, never more than 255 boxes, so we return
- # all addresses belonging to this network, nwithout pinging
- my $lastnumber = $1;
- my $masknumber;
- if ($lastnumber < 128) {
- $masknumber = 24;
- } elsif ($lastnumber < 192) {
- $masknumber = 25;
- } elsif ($lastnumber < 224) {
- $masknumber = 26;
- } elsif ($lastnumber < 240) {
- $masknumber = 27;
- } elsif ($lastnumber < 248) {
- $masknumber = 28;
- } elsif ($lastnumber < 252) {
- $masknumber = 29;
- } elsif ($lastnumber < 254) {
- $masknumber = 30;
- } elsif ($lastnumber < 255) {
- $masknumber = 31;
- } else {
- $masknumber = 32;
- }
- push @addresses, "$ip/$masknumber";
- } else {
- # Big network, probably more than 255 boxes, so ping the
- # broadcast address and additionally "nmblookup" the
- # networks (to find Windows servers which do not answer to ping)
- local *F;
- open F, ($::testing ? "" : "chroot $::prefix/ ") .
- qq(/bin/sh -c "export LC_ALL=C; ping -w 1 -b -n $bcast 2> /dev/null | cut -f 4 -d ' ' | sed s/:// | egrep '^[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+' | uniq | sort" |)
- or next;
- local $_;
- while (<F>) { chomp; push @addresses, $_ }
- close F;
- if (-x "/usr/bin/nmblookup") {
- local *F;
- open F, ($::testing ? "" : "chroot $::prefix/ ") .
- qq(/bin/sh -c "export LC_ALL=C; nmblookup -B $bcast \\* 2> /dev/null | cut -f 1 -d ' ' | egrep '^[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+' | uniq | sort" |)
- or next;
- local $_;
- while (<F>) {
- chomp;
- push @addresses, $_ if !(member($_,@addresses));
- }
- }
- }
- }
-
- @addresses;
-}
-
-sub getSMBPrinterShares {
- my ($host) = @_;
-
- # SMB request to auto-detect shares
- local *F;
- open F, ($::testing ? "" : "chroot $::prefix/ ") .
- qq(/bin/sh -c "export LC_ALL=C; smbclient -N -L $host" 2> /dev/null |) or return ();
- my $insharelist = 0;
- my @shares;
- while (my $l = <F>) {
- chomp $l;
- if ($l =~ /^\s*Sharename\s+Type\s+Comment\s*$/i) {
- $insharelist = 1;
- } elsif ($l =~ /^\s*Server\s+Comment\s*$/i) {
- $insharelist = 0;
- } elsif ($l =~ /^\s*(\S+)\s+Printer\s*(.*)$/i &&
- $insharelist) {
- my $name = $1;
- my $description = $2;
- $description =~ s/^(\s*)//;
- push @shares, { name => $name, description => $description };
- }
- }
- close F;
-
- return @shares;
-}
-
-sub getSNMPModel {
- my ($host) = @_;
- my $manufacturer = "";
- my $model = "";
- my $description = "";
- my $serialnumber = "";
-
- # SNMP request to auto-detect model
- local *F;
- open F, ($::testing ? $::prefix : "chroot $::prefix/ ") .
- qq(/bin/sh -c "scli -v 1 -c 'show printer info' $host" 2> /dev/null |) or
- return { CLASS => 'PRINTER',
- MODEL => N("Unknown model"),
- MANUFACTURER => "",
- DESCRIPTION => "",
- SERIALNUMBER => ""
- };
- while (my $l = <F>) {
- chomp $l;
- if ($l =~ /^\s*Manufacturer:\s*(\S.*)$/i &&
- $l =~ /^\s*Vendor:\s*(\S.*)$/i) {
- $manufacturer = $1;
- $manufacturer =~ s/Hewlett[-\s_]Packard/HP/;
- $manufacturer =~ s/HEWLETT[-\s_]PACKARD/HP/;
- } elsif ($l =~ /^\s*Model:\s*(\S.*)$/i) {
- $model = $1;
- } elsif ($l =~ /^\s*Description:\s*(\S.*)$/i) {
- $description = $1;
- $description =~ s/Hewlett[-\s_]Packard/HP/;
- $description =~ s/HEWLETT[-\s_]PACKARD/HP/;
- } elsif ($l =~ /^\s*Serial\s*Number:\s*(\S.*)$/i) {
- $serialnumber = $1;
- }
- }
- close F;
-
- # Was there a manufacturer and a model in the output?
- # If not, get them from the description
- if ($manufacturer eq "" || $model eq "") {
- # Replace bad description
- if ((length($description) < 5) &&
- (length($description) >= 5)) {
- $description = $model;
- }
- # Guess manufacturer by model name
- if ($description =~
- /^\s*(DeskJet|LaserJet|OfficeJet|PSC|PhotoSmart)\b/i) {
- # HP printer
- $manufacturer = "HP";
- $model = $description;
- } elsif ($description =~
- /^\s*(Stylus|EPL|AcuLaser)\b/i) {
- # Epson printer
- $manufacturer = "Epson";
- $model = $description;
- } elsif ($description =~
- /^\s*(Aficio)\b/i) {
- # Ricoh printer
- $manufacturer = "Ricoh";
- $model = $description;
- } elsif ($description =~
- /^\s*(Optra|Color\s+JetPrinter)\b/i) {
- # Lexmark printer
- $manufacturer = "Lexmark";
- $model = $description;
- } elsif ($description =~
- /^\s*(imageRunner|Pixma|Pixus|BJC|LBP)\b/i) {
- # Canon printer
- $manufacturer = "Canon";
- $model = $description;
- } elsif ($description =~
- /^\s*(Phaser|DocuPrint|(Work|Document)\s*(Home|)Centre)\b/i) {
- # Xerox printer
- $manufacturer = "Xerox";
- $model = $description;
- } elsif ($description =~ /^\s*(\S*)\s+(\S.*)$/) {
- $manufacturer = $1 if $manufacturer eq "";
- $model = $2 if $model eq "";
- }
- # No description field? Make one out of manufacturer and model.
- } elsif ($description eq "") {
- $description = "$manufacturer $model";
- }
-
- # We couldn't determine a model
- $model = N("Unknown model") if $model eq "";
-
- # Remove trailing spaces
- $manufacturer =~ s/(\S+)\s+$/$1/;
- $model =~ s/(\S+)\s+$/$1/;
- $description =~ s/(\S+)\s+$/$1/;
- $serialnumber =~ s/(\S+)\s+$/$1/;
-
- # Now we have all info for one printer
- # Store this auto-detection result in the data structure
- return { CLASS => 'PRINTER',
- MODEL => $model,
- MANUFACTURER => $manufacturer,
- DESCRIPTION => $description,
- SERIALNUMBER => $serialnumber
- };
-}
-
-sub network_running() {
- # If the network is not running return 0, otherwise 1.
- local *F;
- open F, ($::testing ? $::prefix : "chroot $::prefix/ ") .
- '/bin/sh -c "export LC_ALL=C; /sbin/ifconfig" 2> /dev/null |' or
- die 'Could not run "ifconfig"!';
- while (my $line = <F>) {
- if ($line !~ /^lo\s+/ && # The loopback device can have been
- # started by the spooler's startup script
- $line =~ /^(\S+)\s+/) { # In this line starts an entry for a
- # running network
- close F;
- return 1;
- }
- }
- close F;
- return 0;
-}
-
-sub parport_addr {
- # auto-detect the parallel port addresses
- my ($device) = @_;
- $device =~ m!^/dev/lp(\d+)$! or
- $device =~ m!^/dev/printers/(\d+)$!;
- my $portnumber = $1;
- my $i = 0;
- my $parportdir;
- foreach (sort { $a =~ /(\d+)/; my $m = $1; $b =~ /(\d+)/; my $n = $1; $m <=> $n } `ls -1d /proc/parport/[0-9]* /proc/sys/dev/parport/parport[0-9]* 2>/dev/null`) {
- chomp;
- if ($i == $portnumber) {
- $parportdir = $_;
- last;
- }
- $i++;
- }
- my $parport_addresses =
- `cat $parportdir/base-addr`;
- my $address_arg;
- if ($parport_addresses =~ /^\s*(\d+)\s+(\d+)\s*$/) {
- $address_arg = sprintf(" -base 0x%x -basehigh 0x%x", $1, $2);
- } elsif ($parport_addresses =~ /^\s*(\d+)\s*$/) {
- $address_arg = sprintf(" -base 0x%x", $1);
- } else {
- $address_arg = "";
- }
- return $address_arg;
-}
-
-1;
diff --git a/perl-install/printer/main.pm b/perl-install/printer/main.pm
deleted file mode 100644
index 37e2952bb..000000000
--- a/perl-install/printer/main.pm
+++ /dev/null
@@ -1,3010 +0,0 @@
-package printer::main;
-
-# $Id$
-
-use strict;
-
-use common;
-use run_program;
-use printer::data;
-use printer::services;
-use printer::default;
-use printer::cups;
-use printer::detect;
-use handle_configs;
-use services;
-use lang;
-
-use vars qw(@ISA @EXPORT);
-
-@ISA = qw(Exporter);
-@EXPORT = qw(%printer_type %printer_type_inv);
-
-our %printer_type = (
- N("Local printer") => "LOCAL",
- N("Remote printer") => "REMOTE",
- N("Printer on remote CUPS server") => "CUPS",
- N("Printer on remote lpd server") => "LPD",
- N("Network printer (TCP/Socket)") => "SOCKET",
- N("Printer on SMB/Windows server") => "SMB",
- N("Printer on NetWare server") => "NCP",
- N("Enter a printer device URI") => "URI",
- N("Pipe job into a command") => "POSTPIPE"
-);
-
-our %printer_type_inv = reverse %printer_type;
-
-our %thedb;
-our %linkedppds;
-
-our $hplipdevicesdb;
-
-# Translation of the "(recommended)" in printer driver entries
-our $recstr = N("recommended");
-our $precstr = "($recstr)";
-our $sprecstr = quotemeta($precstr);
-
-#------------------------------------------------------------------------------
-
-sub spooler() {
- # LPD is taken from the menu for the moment because the classic LPD is
- # highly unsecure. Depending on how the GNU lpr development is going on
- # LPD support can be reactivated by uncommenting the following line.
-
- #return @spooler_inv{qw(cups lpd lprng pdq)};
-
- # LPRng is not officially supported any more since version 9.0 of
- # this distribution, so show it only in the spooler menu when it
- # was manually installed.
-
- # PDQ is not officially supported any more since version 9.1, so
- # show it only in the spooler menu when it was manually installed.
-
- return map { $spoolers{$_}{long_name} } ('cups', 'rcups' ,
- if_(files_exist(qw(/usr/bin/pdq)), 'pdq'),
- if_(files_exist("/usr/$lib/filters/lpf", "/usr/sbin/lpd"), 'lprng'));
-}
-
-sub printer_type($) {
- my ($printer) = @_;
- for ($printer->{SPOOLER}) {
- /cups/ and return @printer_type_inv{qw(LOCAL LPD SOCKET SMB), if_($printer->{expert}, qw(URI))};
- /lpd/ and return @printer_type_inv{qw(LOCAL LPD SOCKET SMB NCP), if_($printer->{expert}, qw(POSTPIPE URI))};
- /lprng/ and return @printer_type_inv{qw(LOCAL LPD SOCKET SMB NCP), if_($printer->{expert}, qw(POSTPIPE URI))};
- /pdq/ and return @printer_type_inv{qw(LOCAL LPD SOCKET), if_($printer->{expert}, qw(URI))};
- /rcups/ and return ();
- }
-}
-
-sub SIGHUP_daemon {
- my ($service) = @_;
- if ($service eq "cupsd") { $service = "cups" }
- # PDQ and remote CUPS have no daemons, exit.
- if (($service eq "pdq") || ($service eq "rcups")) { return 1 }
- # CUPS needs auto-correction for its configuration
- run_program::rooted($::prefix, "/usr/sbin/correctcupsconfig") if $service eq "cups";
- # Name of the daemon
- my %daemons = (
- "lpr" => "lpd",
- "lpd" => "lpd",
- "lprng" => "lpd",
- "cups" => "cupsd",
- "devfs" => "devfsd",
- );
- my $daemon = $daemons{$service};
- $daemon = $service unless defined $daemon;
-# if ($service eq "cups") {
-# # The current CUPS (1.1.13) dies on SIGHUP, do the normal restart.
-# printer::services::restart($service);
-# # CUPS needs some time to come up.
-# printer::services::wait_for_cups();
-# } else {
-
- # Send the SIGHUP
- run_program::rooted($::prefix, "/usr/bin/killall", "-HUP", $daemon);
- if ($service eq "cups") {
- # CUPS needs some time to come up.
- printer::services::wait_for_cups();
- }
-
- return 1;
-}
-
-
-sub assure_device_is_available_for_cups {
- # Checks whether CUPS already "knows" a certain port, it does not
- # know it usually when the appropriate kernel module is loaded
- # after CUPS was started or when the printer is turned on after
- # CUPS was started. CUPS 1.1.12 and newer refuses to set up queues
- # on devices which it does not know, it points these queues to
- # file:/dev/null instead. Restart CUPS if necessary to assure that
- # CUPS knows the device.
- my ($device) = @_;
- my $sdevice = handle_configs::searchstr($device);
- my ($result, $i);
- # USB printers get special model-dependent URLs in "lpinfo -v" here
- # checking is complicated, so we simply restart CUPS then and ready.
- if ($device =~ /usb/) {
- $result = printer::services::restart("cups");
- return 1;
- }
- my $maxattempts = 3;
- for ($i = 0; $i < $maxattempts; $i++) {
- open(my $F, ($::testing ? $::prefix : "chroot $::prefix/ ") .
- '/bin/sh -c "export LC_ALL=C; /usr/sbin/lpinfo -v" |') or
- die 'Could not run "lpinfo"!';
- while (my $line = <$F>) {
- if ($line =~ /$sdevice/) { # Found a line containing the device
- # name, so CUPS knows it.
- close $F;
- return 1;
- }
- }
- close $F;
- $result = printer::services::restart("cups");
- }
- return $result;
-}
-
-
-sub spooler_in_security_level {
- # Was the current spooler already added to the current security level?
- my ($spooler, $level) = @_;
- my $sp;
- $sp = $spooler eq "lpr" || $spooler eq "lprng" ? "lpd" : $spooler;
- my $file = "$::prefix/etc/security/msec/server.$level";
- if (-f $file) {
- open(my $F, "< $file") or return 0;
- while (my $line = <$F>) {
- if ($line =~ /^\s*$sp\s*$/) {
- close $F;
- return 1;
- }
- }
- close $F;
- }
- return 0;
-}
-
-sub add_spooler_to_security_level {
- my ($spooler, $level) = @_;
- my $sp;
- $sp = $spooler eq "lpr" || $spooler eq "lprng" ? "lpd" : $spooler;
- my $file = "$::prefix/etc/security/msec/server.$level";
- if (-f $file) {
- eval { append_to_file($file, "$sp\n") } or return 0;
- }
- return 1;
-}
-
-sub pdq_panic_button {
- my $setting = $_[0];
- if (-f "$::prefix/usr/sbin/pdqpanicbutton") {
- run_program::rooted($::prefix, "/usr/sbin/pdqpanicbutton", "--$setting")
- or die "Could not $setting PDQ panic buttons!";
- }
-}
-
-sub copy_printer_params($$) {
- my ($from, $to) = @_;
- map { $to->{$_} = $from->{$_} } grep { $_ ne 'configured' } keys %$from;
- #- avoid cycles-----------------^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-}
-
-sub getinfo($) {
- my ($prefix) = @_;
- my $printer = {};
-
- $::prefix = $prefix;
-
- # Initialize $printer data structure
- resetinfo($printer);
-
- return $printer;
-}
-
-#------------------------------------------------------------------------------
-sub resetinfo($) {
- my ($printer) = @_;
- $printer->{QUEUE} = "";
- $printer->{OLD_QUEUE} = "";
- $printer->{OLD_CHOICE} = "";
- $printer->{ARGS} = {};
- $printer->{DBENTRY} = "";
- $printer->{DEFAULT} = "";
- $printer->{currentqueue} = {};
- # -check which printing system was used previously and load the information
- # -about its queues
- read_configured_queues($printer);
-}
-
-sub read_configured_queues($) {
- my ($printer) = @_;
- my @QUEUES;
- # Get the default spooler choice from the config file
- $printer->{SPOOLER} ||= printer::default::get_spooler();
- if (!$printer->{SPOOLER}) {
- #- Find the first spooler where there are queues
- foreach my $spooler (qw(rcups cups pdq lprng lpd)) {
- #- Is the spooler's daemon running?
- my $service = $spooler;
- if ($service eq "lprng") {
- $service = "lpd";
- }
- if (($service ne "pdq") && ($service ne "rcups")) {
- next unless services::is_service_running($service);
- # daemon is running, spooler found
- $printer->{SPOOLER} = $spooler;
- }
- #- poll queue info
- if ($service ne "rcups") {
- open(my $F, ($::testing ?
- $::prefix : "chroot $::prefix/ ") .
- "foomatic-configure -P -q -s $spooler |") or
- die "Could not run foomatic-configure";
- eval join('', <$F>);
- close $F;
- }
- if ($service eq "pdq") {
- #- Have we found queues? PDQ has no damon, so we consider
- #- it in use when there are defined printer queues
- if ($#QUEUES != -1) {
- $printer->{SPOOLER} = $spooler;
- last;
- }
- } elsif ($service eq "rcups") {
- #- In daemon-less CUPS mode there are no local queues,
- #- we can only recognize it by a server entry in
- #- /etc/cups/client.conf
- my ($daemonless_cups, $remote_cups_server) =
- printer::main::read_client_conf();
- if ($daemonless_cups) {
- $printer->{SPOOLER} = $spooler;
- $printer->{remote_cups_server} = $remote_cups_server;
- last;
- }
- } else {
- #- For other spoolers we have already found a running
- #- daemon when we have arrived here
- last;
- }
- }
- } else {
- if ($printer->{SPOOLER} ne "rcups") {
- #- Poll the queues of the current default spooler
- open(my $F, ($::testing ? $::prefix : "chroot $::prefix/ ") .
- "foomatic-configure -P -q -s $printer->{SPOOLER} -r |") or
- die "Could not run foomatic-configure";
- eval join('', <$F>);
- close $F;
- } else {
- my ($_daemonless_cups, $remote_cups_server) =
- printer::main::read_client_conf();
- $printer->{remote_cups_server} = $remote_cups_server;
- }
- }
- $printer->{configured} = {};
- my $i;
- my $N = $#QUEUES + 1;
- for ($i = 0; $i < $N; $i++) {
- # Set the default printer
- $printer->{DEFAULT} = $QUEUES[$i]{queuedata}{queue} if
- $QUEUES[$i]{queuedata}{default};
- # Advance to the next entry if the current is a remotely defined
- # printer
- next if $QUEUES[$i]{queuedata}{remote};
- # Add an entry for a locally defined queue
- $printer->{configured}{$QUEUES[$i]{queuedata}{queue}} =
- $QUEUES[$i];
- if (!$QUEUES[$i]{make} || !$QUEUES[$i]{model}) {
- if ($printer->{SPOOLER} eq "cups") {
- $printer->{OLD_QUEUE} = $QUEUES[$i]{queuedata}{queue};
- my $descr = get_descr_from_ppd($printer);
- if ($descr =~ m/^([^\|]*)\|([^\|]*)(\|.*|)$/) {
- $printer->{configured}{$QUEUES[$i]{queuedata}{queue}}{queuedata}{make} ||= $1;
- $printer->{configured}{$QUEUES[$i]{queuedata}{queue}}{queuedata}{model} ||= $2;
- }
- # Read out which PPD file was originally used to set up this
- # queue
- if (open(my $F, "< $::prefix/etc/cups/ppd/$QUEUES[$i]{queuedata}{queue}.ppd")) {
- while (my $line = <$F>) {
- if ($line =~ /^\*%MDKMODELCHOICE:(.+)$/) {
- $printer->{configured}{$QUEUES[$i]{queuedata}{queue}}{queuedata}{ppd} = $1;
- }
- }
- close $F;
- # Mark that we have a CUPS queue but do not know the
- # name the PPD file in /usr/share/cups/model
- $printer->{configured}{$QUEUES[$i]{queuedata}{queue}}{queuedata}{ppd} ||= '1';
- # Mark that our PPD file is not a Foomatic one
- $printer->{configured}{$QUEUES[$i]{queuedata}{queue}}{queuedata}{driver} = "PPD";
- } else {
- # We do not have a PPD file for this queue
- $printer->{configured}{$QUEUES[$i]{queuedata}{queue}}{queuedata}{ppd} = undef;
- # No PPD found? Then we have a raw queue
- $printer->{configured}{$QUEUES[$i]{queuedata}{queue}}{queuedata}{driver} = "raw";
- }
- $printer->{OLD_QUEUE} = "";
- }
- $printer->{configured}{$QUEUES[$i]{queuedata}{queue}}{queuedata}{make} ||= "";
- $printer->{configured}{$QUEUES[$i]{queuedata}{queue}}{queuedata}{model} ||= N("Unknown model");
- } else {
- $printer->{configured}{$QUEUES[$i]{queuedata}{queue}}{queuedata}{make} = $QUEUES[$i]{make};
- $printer->{configured}{$QUEUES[$i]{queuedata}{queue}}{queuedata}{model} = $QUEUES[$i]{model};
- }
- # Fill in "options" field
- if (my $args = $printer->{configured}{$QUEUES[$i]{queuedata}{queue}}{args}) {
- my @options;
- foreach my $arg (@$args) {
- push(@options, "-o");
- my $optstr = $arg->{name} . "=" . $arg->{default};
- push(@options, $optstr);
- }
- @{$printer->{configured}{$QUEUES[$i]{queuedata}{queue}}{queuedata}{options}} = @options;
- }
- # Construct an entry line for tree view in main window of
- # printerdrake
- make_menuentry($printer, $QUEUES[$i]{queuedata}{queue});
- }
-}
-
-sub make_menuentry {
- my ($printer, $queue) = @_;
- my $spooler = $spoolers{$printer->{SPOOLER}}{short_name};
- my $connect = $printer->{configured}{$queue}{queuedata}{connect};
- my $localremote = N("Configured on this machine");
- my $make = $printer->{configured}{$queue}{queuedata}{make};
- my $model = $printer->{configured}{$queue}{queuedata}{model};
- my $connection;
- if ($connect =~ m!^(file|parallel):/dev/lp(\d+)$!) {
- my $number = $2;
- $connection = N(" on parallel port #%s", $number);
- } elsif ($connect =~ m!^(file|usb):/dev/usb/lp(\d+)$!) {
- my $number = $2;
- $connection = N(", USB printer #%s", $number);
- } elsif ($connect =~ m!^usb://!) {
- $connection = N(", USB printer");
- } elsif ($connect =~ m!^hp:/(.+?)$!) {
- my $hplipdevice = $1;
- if ($hplipdevice =~ m!^par/!) {
- $connection = N(", HP printer on a parallel port");
- } elsif ($hplipdevice =~ m!^usb/!) {
- $connection = N(", HP printer on USB");
- } elsif ($hplipdevice =~ m!^net/!) {
- $connection = N(", HP printer on HP JetDirect");
- } else {
- $connection = N(", HP printer");
- }
- } elsif ($connect =~ m!^ptal://?(.+?)$!) {
- my $ptaldevice = $1;
- if ($ptaldevice =~ /^mlc:par:(\d+)$/) {
- my $number = $1;
- $connection = N(", multi-function device on parallel port #%s",
- $number);
- } elsif ($ptaldevice =~ /^mlc:par:/) {
- $connection = N(", multi-function device on a parallel port");
- } elsif ($ptaldevice =~ /^mlc:usb:/) {
- $connection = N(", multi-function device on USB");
- } elsif ($ptaldevice =~ /^hpjd:/) {
- $connection = N(", multi-function device on HP JetDirect");
- } else {
- $connection = N(", multi-function device");
- }
- } elsif ($connect =~ m!^file:(.+)$!) {
- my $file = $1;
- $connection = N(", printing to %s", $file);
- } elsif ($connect =~ m!^lpd://([^/]+)/([^/]+)/?$!) {
- my ($server, $printer) = ($1, $2);
- $connection = N(" on LPD server \"%s\", printer \"%s\"", $server, $printer);
- } elsif ($connect =~ m!^socket://([^/:]+):([^/:]+)/?$!) {
- my ($host, $port) = ($1, $2);
- $connection = N(", TCP/IP host \"%s\", port %s", $host, $port);
- } elsif ($connect =~ m!^smb://([^/\@]+)/([^/\@]+)/?$! ||
- $connect =~ m!^smb://.*/([^/\@]+)/([^/\@]+)/?$! ||
- $connect =~ m!^smb://.*\@([^/\@]+)/([^/\@]+)/?$!) {
- my ($server, $share) = ($1, $2);
- $connection = N(" on SMB/Windows server \"%s\", share \"%s\"", $server, $share);
- } elsif ($connect =~ m!^ncp://([^/\@]+)/([^/\@]+)/?$! ||
- $connect =~ m!^ncp://.*/([^/\@]+)/([^/\@]+)/?$! ||
- $connect =~ m!^ncp://.*\@([^/\@]+)/([^/\@]+)/?$!) {
- my ($server, $printer) = ($1, $2);
- $connection = N(" on Novell server \"%s\", printer \"%s\"", $server, $printer);
- } elsif ($connect =~ m!^postpipe:(.+)$!) {
- my $command = $1;
- $connection = N(", using command %s", $command);
- } else {
- $connection = ($printer->{expert} ? ", URI: $connect" : "");
- }
- my $sep = "!";
- $printer->{configured}{$queue}{queuedata}{menuentry} =
- ($printer->{expert} ? "$spooler$sep" : "") .
- "$localremote$sep$queue: $make $model$connection";
-}
-
-sub connectionstr {
- my ($connect) = @_;
- my $connection;
- if ($connect =~ m!^(file|parallel):/dev/lp(\d+)$!) {
- my $number = $2;
- $connection = N("Parallel port #%s", $number);
- } elsif ($connect =~ m!^(file|usb):/dev/usb/lp(\d+)$!) {
- my $number = $2;
- $connection = N("USB printer #%s", $number);
- } elsif ($connect =~ m!^usb://!) {
- $connection = N("USB printer");
- } elsif ($connect =~ m!^hp:/(.+?)$!) {
- my $hplipdevice = $1;
- if ($hplipdevice =~ m!^par/!) {
- $connection = N("HP printer on a parallel port");
- } elsif ($hplipdevice =~ m!^usb/!) {
- $connection = N("HP printer on USB");
- } elsif ($hplipdevice =~ m!^net/!) {
- $connection = N("HP printer on HP JetDirect");
- } else {
- $connection = N("HP printer");
- }
- } elsif ($connect =~ m!^ptal://?(.+?)$!) {
- my $ptaldevice = $1;
- if ($ptaldevice =~ /^mlc:par:(\d+)$/) {
- my $number = $1;
- $connection = N("Multi-function device on parallel port #%s",
- $number);
- } elsif ($ptaldevice =~ /^mlc:par:/) {
- $connection = N("Multi-function device on a parallel port");
- } elsif ($ptaldevice =~ /^mlc:usb:/) {
- $connection = N("Multi-function device on USB");
- } elsif ($ptaldevice =~ /^hpjd:/) {
- $connection = N("Multi-function device on HP JetDirect");
- } else {
- $connection = N("Multi-function device");
- }
- } elsif ($connect =~ m!^file:(.+)$!) {
- my $file = $1;
- $connection = N("Prints into %s", $file);
- } elsif ($connect =~ m!^lpd://([^/]+)/([^/]+)/?$!) {
- my ($server, $port) = ($1, $2);
- $connection = N("LPD server \"%s\", printer \"%s\"", $server, $port);
- } elsif ($connect =~ m!^socket://([^/:]+):([^/:]+)/?$!) {
- my ($host, $port) = ($1, $2);
- $connection = N("TCP/IP host \"%s\", port %s", $host, $port);
- } elsif ($connect =~ m!^smb://([^/\@]+)/([^/\@]+)/?$! ||
- $connect =~ m!^smb://.*/([^/\@]+)/([^/\@]+)/?$! ||
- $connect =~ m!^smb://.*\@([^/\@]+)/([^/\@]+)/?$!) {
- my ($server, $share) = ($1, $2);
- $connection = N("SMB/Windows server \"%s\", share \"%s\"", $server, $share);
- } elsif ($connect =~ m!^ncp://([^/\@]+)/([^/\@]+)/?$! ||
- $connect =~ m!^ncp://.*/([^/\@]+)/([^/\@]+)/?$! ||
- $connect =~ m!^ncp://.*\@([^/\@]+)/([^/\@]+)/?$!) {
- my ($server, $share) = ($1, $2);
- $connection = N("Novell server \"%s\", printer \"%s\"", $server, $share);
- } elsif ($connect =~ m!^postpipe:(.+)$!) {
- my $command = $1;
- $connection = N("Uses command %s", $command);
- } else {
- $connection = N("URI: %s", $connect);
- }
- return $connection;
-}
-
-sub read_printer_db {
-
- my ($printer, $spooler, $newppd) = @_;
-
- # If a $newppd is supplied, we return the key of the DB entry which
- # is for this file. This way we can pre-select a freshly added PPD in
- # the model/driver list.
-
- # No local queues available in daemon-less CUPS mode
- return 1 if $spooler eq "rcups";
-
- my $DBPATH; #- do not have to do close ... and do not modify globals at least
- # Generate the Foomatic printer/driver overview
- open($DBPATH, ($::testing ? $::prefix : "chroot $::prefix/ ") . #-#
- "foomatic-configure -O -q |") or
- die "Could not run foomatic-configure";
-
- %linkedppds = ();
- my $entry = {};
- @{$entry->{drivers}} = ();
- my $inentry = 0;
- my $indrivers = 0;
- my $inppds = 0;
- my $inppd = 0;
- my $inautodetect = 0;
- my $autodetecttype = "";
- my $ppds = {};
- my $ppddriver = "";
- my $ppdfile = "";
- my $ppdentry = "";
- local $_;
- while (<$DBPATH>) {
- chomp;
- if ($inentry) {
- # We are inside a printer entry
- if ($indrivers) {
- # We are inside the drivers block of a printers entry
- if (m!^\s*</drivers>\s*$!) {
- # End of drivers block
- $indrivers = 0;
- } elsif (m!^\s*<driver>(.+)</driver>\s*$!) {
- push @{$entry->{drivers}}, $1;
- }
- } elsif ($inppds) {
- # We are inside the ppds block of a printers entry
- if ($inppd) {
- # We are inside a PPD entry in the ppds block
- if (m!^\s*</ppd>\s*$!) {
- # End of ppds block
- $inppd = 0;
- if ($ppddriver && $ppdfile) {
- $ppds->{$ppddriver} = $ppdfile;
- }
- $ppddriver = "";
- $ppdfile = "";
- } elsif (m!^\s*<driver>(.+)</driver>\s*$!) {
- $ppddriver = $1;
- } elsif (m!^\s*<ppdfile>(.+)</ppdfile>\s*$!) {
- $ppdfile = $1;
- }
- } else {
- if (m!^\s*</ppds>\s*$!) {
- # End of ppds block
- $inppds = 0;
- } elsif (m!^\s*<ppd>\s*$!) {
- $inppd = 1;
- }
- }
- } elsif ($inautodetect) {
- # We are inside the autodetect block of a printers entry
- # All entries inside this block will be ignored
- if ($autodetecttype) {
- if (m!^.*</$autodetecttype>\s*$!) {
- # End of general, parallel, USB, or SNMP section
- $autodetecttype = "";
- } elsif (m!^\s*<manufacturer>\s*([^<>]+)\s*</manufacturer>\s*$!) {
- # Manufacturer
- $entry->{devidmake} = $1;
- } elsif (m!^\s*<model>\s*([^<>]+)\s*</model>\s*$!) {
- # Model
- $entry->{devidmodel} = $1;
- } elsif (m!^\s*<description>\s*([^<>]+)\s*</description>\s*$!) {
- # Description
- $entry->{deviddesc} = $1;
- } elsif (m!^\s*<commandset>\s*([^<>]+)\s*</commandset>\s*$!) {
- # Command set
- $entry->{devidcmdset} = $1;
- } elsif (m!^\s*<ieee1284>\s*([^<>]+)\s*</ieee1284>\s*$!) {
- # Full ID string
- my $idstr = $1;
- $idstr =~ m!(MFG|MANUFACTURER):([^;]+);!i
- and $entry->{devidmake} = $2;
- $idstr =~ m!(MDL|MODEL):([^;]+);!i
- and $entry->{devidmodel} = $2;
- $idstr =~ m!(DES|DESCRIPTION):([^;]+);!i
- and $entry->{deviddesc} = $2;
- $idstr =~ m!(CMD|COMMAND\s*SET):([^;]+);!i
- and $entry->{devidcmdset} = $2;
- }
- } else {
- if (m!^.*</autodetect>\s*$!) {
- # End of autodetect block
- $inautodetect = 0;
- } elsif (m!^\s*<(general|parallel|usb|snmp)>\s*$!) {
- # Beginning of parallel, USB, or SNMP section
- $autodetecttype = $1;
- }
- }
- } else {
- if (m!^\s*</printer>\s*$!) {
- # entry completed
- $inentry = 0;
- # Expert mode:
- # Make one database entry per driver with the entry name
- # manufacturer|model|driver
- if ($printer->{expert}) {
- foreach my $driver (@{$entry->{drivers}}) {
- my $driverstr;
- if ($driver eq "Postscript") {
- $driverstr = "PostScript";
- } else {
- $driverstr = "GhostScript + $driver";
- }
- if ($driver eq $entry->{defaultdriver}) {
- $driverstr .= " $precstr";
- }
- $entry->{ENTRY} = "$entry->{make}|$entry->{model}|$driverstr";
- $entry->{ENTRY} =~ s/^CITOH/C.ITOH/i;
- $entry->{ENTRY} =~
- s/^KYOCERA[\s\-]*MITA/KYOCERA/i;
- $entry->{driver} = $driver;
- if (defined($ppds->{$driver})) {
- $entry->{ppd} = $ppds->{$driver};
- $ppds->{$driver} =~ m!([^/]+)$!;
- push(@{$linkedppds{$1}}, $entry->{ENTRY});
- } else {
- undef $entry->{ppd};
- }
- # Duplicate contents of $entry because it is multiply entered to the database
- map { $thedb{$entry->{ENTRY}}{$_} = $entry->{$_} } keys %$entry;
- }
- } else {
- # Recommended mode
- # Make one entry per printer, with the recommended
- # driver (manufacturerer|model)
- $entry->{ENTRY} = "$entry->{make}|$entry->{model}";
- $entry->{ENTRY} =~ s/^CITOH/C.ITOH/i;
- $entry->{ENTRY} =~
- s/^KYOCERA[\s\-]*MITA/KYOCERA/i;
- if (($entry->{defaultdriver}) &&
- (member($entry->{defaultdriver},
- @{$entry->{drivers}}))) {
- my $driver = $entry->{defaultdriver};
- $entry->{driver} = $driver;
- if (defined($ppds->{$driver})) {
- $entry->{ppd} = $ppds->{$driver};
- $ppds->{$driver} =~ m!([^/]+)$!;
- push(@{$linkedppds{$1}}, $entry->{ENTRY});
- } else {
- undef $entry->{ppd};
- }
- map { $thedb{$entry->{ENTRY}}{$_} = $entry->{$_} } keys %$entry;
- }
- }
- $entry = {};
- @{$entry->{drivers}} = ();
- $ppds = {};
- } elsif (m!^\s*<id>\s*([^\s<>]+)\s*</id>\s*$!) {
- # Foomatic printer ID
- $entry->{printer} = $1;
- } elsif (m!^\s*<make>(.+)</make>\s*$!) {
- # Printer manufacturer
- $entry->{make} = uc($1);
- } elsif (m!^\s*<model>(.+)</model>\s*$!) {
- # Printer model
- $entry->{model} = $1;
- } elsif (m!<driver>(.+)</driver>!) {
- # Printer default driver
- $entry->{defaultdriver} = $1;
- } elsif (m!^\s*<drivers>\s*$!) {
- # Drivers block
- $indrivers = 1;
- } elsif (m!^\s*<ppds>\s*$!) {
- # PPDs block
- $inppds = 1;
- } elsif (m!^\s*<autodetect>\s*$!) {
- # Autodetect block
- $inautodetect = 1;
- }
- }
- } else {
- if (m!^\s*<printer>\s*$!) {
- # new entry
- $inentry = 1;
- }
- }
- }
- close $DBPATH;
-
- # Add raw queue
- $entry->{ENTRY} = N("Raw printer (No driver)");
- $entry->{driver} = "raw";
- $entry->{make} = "";
- $entry->{model} = N("Unknown model");
- $thedb{$entry->{ENTRY}}{$_} = $entry->{$_} foreach keys %$entry;
-
- #- Load CUPS driver database if CUPS is used as spooler
- if ($spooler && $spooler eq "cups") {
- $ppdentry = poll_ppd_base($printer, $newppd);
- }
-
- #my @entries_db_short = sort keys %printer::thedb;
- #%descr_to_db = map { $printer::thedb{$_}{DESCR}, $_ } @entries_db_short;
- #%descr_to_help = map { $printer::thedb{$_}{DESCR}, $printer::thedb{$_}{ABOUT} } @entries_db_short;
- #@entry_db_description = keys %descr_to_db;
- #db_to_descr = reverse %descr_to_db;
-
- return $ppdentry if $newppd;
-
-}
-
-sub read_foomatic_options ($) {
- my ($printer) = @_;
- # Generate the option data for the chosen printer/driver combo
- my $COMBODATA;
- open(my $F, ($::testing ? $::prefix : "chroot $::prefix/ ") .
- "foomatic-configure -P -q -p $printer->{currentqueue}{printer}" .
- " -d $printer->{currentqueue}{driver}" .
- ($printer->{OLD_QUEUE} ?
- " -s $printer->{SPOOLER} -n $printer->{OLD_QUEUE}" : "") .
- ($printer->{SPECIAL_OPTIONS} ?
- " $printer->{SPECIAL_OPTIONS}" : "")
- . " |") or
- die "Could not run foomatic-configure";
- eval join('', (<$F>));
- close $F;
- # Return the arguments field
- return $COMBODATA->{args};
-}
-
-sub read_ppd_options ($) {
- my ($printer) = @_;
- # Generate the option data for a given PPD file
- my $COMBODATA;
- open(my $F, ($::testing ? $::prefix : "chroot $::prefix/ ") .
- "foomatic-configure -P -q" .
- if_($printer->{currentqueue}{ppd} &&
- ($printer->{currentqueue}{ppd} ne '1'),
- " --ppd \'" . ($printer->{currentqueue}{ppd} !~ m!^/! ?
- "/usr/share/cups/model/" : "") .
- $printer->{currentqueue}{ppd} . "\'") .
- ($printer->{OLD_QUEUE} ?
- " -s $printer->{SPOOLER} -n $printer->{OLD_QUEUE}" : "") .
- ($printer->{SPECIAL_OPTIONS} ?
- " $printer->{SPECIAL_OPTIONS}" : "")
- . " |") or
- die "Could not run foomatic-configure";
- eval join('', (<$F>));
- close $F;
- # Return the arguments field
- return $COMBODATA->{args};
-}
-
-sub set_cups_special_options {
- my ($printer, $queue) = @_;
- # Set some special CUPS options
- my @lpoptions = cat_("$::prefix/etc/cups/lpoptions");
- # If nothing is already configured, set text file borders of half
- # an inch so nothing of the text gets cut off by unprintable
- # borders. Do this only when the driver is not Gutenprint or HPIJS, as
- # both drivers decent border settings are already done and with
- # Gutenprint this will even break PostScript printing
- if ((($queue eq $printer->{currentqueue}{$queue}) &&
- (($printer->{currentqueue}{driver} =~
- /(guten.*print|hpijs|hplip)/i) ||
- ($printer->{currentqueue}{ppd} =~
- /(guten.*print|hpijs|hplip)/i))) ||
- ((defined($printer->{configured}{$queue})) &&
- (($printer->{configured}{$queue}{queuedata}{driver} =~
- /(guten.*print|hpijs|hplip)/i) ||
- ($printer->{configured}{$queue}{queuedata}{ppd} =~
- /(guten.*print|hpijs|hplip)/i))) ||
- (($printer->{SPOOLER} eq "cups") &&
- (-r "$::prefix/etc/cups/ppd/$queue.ppd") &&
- (`egrep -ic '(gutenprint|hpijs|hplip)' $::prefix/etc/cups/ppd/$queue.ppd` > 2))) {
- # Remove page margin settings
- foreach (@lpoptions) {
- s/\s*page-(top|bottom|left|right)=\S+//g if /$queue/;
- }
- output("$::prefix/etc/cups/lpoptions", @lpoptions);
- } else {
- if (!any { /$queue.*\spage-(top|bottom|left|right)=/ } @lpoptions) {
- run_program::rooted($::prefix, "lpoptions",
- "-p", $queue,
- "-o", "page-top=36", "-o", "page-bottom=36",
- "-o", "page-left=36", "-o page-right=36");
- }
- }
- # Let images fill the whole page by default and let text be word-wrapped
- # and printed in a slightly smaller font
- if (!any { /$queue.*\s(scaling|natural-scaling|ppi)=/ } @lpoptions) {
- run_program::rooted($::prefix, "lpoptions",
- "-p", $queue,
- "-o", "scaling=100");
- }
- if (!any { /$queue.*\s(cpi|lpi)=/ } @lpoptions) {
- run_program::rooted($::prefix, "lpoptions",
- "-p", $queue,
- "-o", "cpi=12", "-o", "lpi=7", "-o", "wrap");
- }
- return 1;
-}
-
-my %sysconfig = getVarsFromSh("$::prefix/etc/sysconfig/printing");
-
-sub set_cups_autoconf {
- my ($autoconf) = @_;
- $sysconfig{CUPS_CONFIG} = $autoconf ? "automatic" : "manual";
- setVarsInSh("$::prefix/etc/sysconfig/printing", \%sysconfig);
- # Restart CUPS
- printer::services::restart("cups") if $autoconf;
- return 1;
-}
-
-sub get_cups_autoconf() { $sysconfig{CUPS_CONFIG} ne 'manual' ? 1 : 0 }
-
-sub set_usermode {
- my ($usermode) = @_;
- $sysconfig{USER_MODE} = $usermode ? "expert" : "recommended";
- setVarsInSh("$::prefix/etc/sysconfig/printing", \%sysconfig) if !$::testing;
- return $usermode;
-}
-
-sub get_usermode() { $sysconfig{USER_MODE} eq 'expert' ? 1 : 0 }
-
-sub set_auto_admin {
- my ($printer) = @_;
- $sysconfig{ENABLE_QUEUES_ON_PRINTER_CONNECTED} =
- $printer->{enablequeuesonnewprinter} ? "yes" : "no";
- $sysconfig{AUTO_SETUP_QUEUES_ON_PRINTER_CONNECTED} =
- $printer->{autoqueuesetuponnewprinter} ? "yes" : "no";
- $sysconfig{ENABLE_QUEUES_ON_SPOOLER_START} =
- $printer->{enablequeuesonspoolerstart} ? "yes" : "no";
- $sysconfig{AUTO_SETUP_QUEUES_ON_PRINTERDRAKE_START} =
- $printer->{autoqueuesetuponstart} ? "yes" : "no";
- $sysconfig{AUTO_SETUP_QUEUES_MODE} =
- $printer->{autoqueuesetupgui} ? "waitforgui" : "nogui";
- setVarsInSh("$::prefix/etc/sysconfig/printing", \%sysconfig);
- return 1;
-}
-
-sub get_auto_admin {
- my ($printer) = @_;
- $printer->{enablequeuesonnewprinter} =
- (!defined($sysconfig{ENABLE_QUEUES_ON_PRINTER_CONNECTED}) ||
- ($sysconfig{ENABLE_QUEUES_ON_PRINTER_CONNECTED} =~ /no/i) ?
- 0 : 1);
- $printer->{autoqueuesetuponnewprinter} =
- (!defined($sysconfig{AUTO_SETUP_QUEUES_ON_PRINTER_CONNECTED}) ||
- ($sysconfig{AUTO_SETUP_QUEUES_ON_PRINTER_CONNECTED} =~ /yes/i) ?
- 1 : 0);
- $printer->{enablequeuesonspoolerstart} =
- (!defined($sysconfig{ENABLE_QUEUES_ON_SPOOLER_START}) ||
- ($sysconfig{ENABLE_QUEUES_ON_SPOOLER_START} =~ /no/i) ?
- 0 : 1);
- $printer->{autoqueuesetuponstart} =
- (!defined($sysconfig{AUTO_SETUP_QUEUES_ON_PRINTERDRAKE_START}) ||
- ($sysconfig{AUTO_SETUP_QUEUES_ON_PRINTERDRAKE_START} =~ /yes/i) ?
- 1 : 0);
- $printer->{autoqueuesetupgui} =
- (!defined($sysconfig{AUTO_SETUP_QUEUES_MODE}) ||
- ($sysconfig{AUTO_SETUP_QUEUES_MODE} =~ /waitforgui/i) ?
- 1 : 0);
-}
-
-sub set_jap_textmode {
- my $textmode = ($_[0] ? 'cjk' : '');
- # Do not write mime.convs if the file does not exist, as then
- # CUPS is not installed and the created mime.convs will be broken.
- # When installing CUPS later it will not work.
- return 1 if (! -r "$::prefix/etc/cups/mime.convs");
- substInFile {
- s!^(\s*text/plain\s+\S+\s+\d+\s+)\S+(\s*$)!$1${textmode}texttops$2!;
- } "$::prefix/etc/cups/mime.convs";
- return 1;
-}
-
-sub get_jap_textmode() {
- my @mimeconvs = cat_("$::prefix/etc/cups/mime.convs");
- (m!^\s*text/plain\s+\S+\s+\d+\s+(\S+)\s*$!m and
- $1 eq 'cjktexttops' and return 1) foreach @mimeconvs;
- return 0;
-}
-
-#----------------------------------------------------------------------
-# Handling of /etc/cups/cupsd.conf
-
-sub read_cupsd_conf() {
- # If /etc/cups/cupsd.conf does not exist a default cupsd.conf will be
- # put out to avoid writing of a broken cupsd.conf file when we write
- # it back later.
- my @cupsd_conf = cat_("$::prefix/etc/cups/cupsd.conf");
- if (!@cupsd_conf) {
- @cupsd_conf = map { /\n$/s or "$_\n" } split('\n',
-'LogLevel info
-TempDir /var/spool/cups/tmp
-Port 631
-Browsing On
-BrowseAddress @LOCAL
-BrowseDeny All
-BrowseAllow 127.0.0.1
-BrowseAllow @LOCAL
-BrowseOrder deny,allow
-<Location />
-Order Deny,Allow
-Deny From All
-Allow From 127.0.0.1
-Allow From @LOCAL
-</Location>
-<Location /admin>
-AuthType Basic
-AuthClass System
-Order Deny,Allow
-Deny From All
-Allow From 127.0.0.1
-</Location>
-');
- }
- return @cupsd_conf;
-}
-
-sub write_cupsd_conf {
- my (@cupsd_conf) = @_;
- # Do not write cupsd.conf if the file does not exist, as then
- # CUPS is not installed and the created cupsd.conf will be broken.
- # When installing CUPS later it will not start.
- return 1 if (! -r "$::prefix/etc/cups/cupsd.conf");
- output("$::prefix/etc/cups/cupsd.conf", @cupsd_conf);
-}
-
-sub read_location {
-
- # Return the lines inside the [path] location block
- #
- # <Location [path]>
- # ...
- # </Location>
-
- my ($cupsd_conf_ptr, $path) = @_;
-
- my @result;
- if (any { m!^\s*<Location\s+$path\s*>! } @$cupsd_conf_ptr) {
- my $location_start = -1;
- my $location_end = -1;
- # Go through all the lines, bail out when start and end line found
- for (my $i = 0;
- $i <= $#{$cupsd_conf_ptr} && $location_end == -1;
- $i++) {
- if ($cupsd_conf_ptr->[$i] =~ m!^\s*<\s*Location\s+$path\s*>!) {
- # Start line of block
- $location_start = $i;
- } elsif ($cupsd_conf_ptr->[$i] =~
- m!^\s*<\s*/Location\s*>! &&
- $location_start != -1) {
- # End line of block
- $location_end = $i;
- last;
- } elsif ($location_start >= 0 && $location_end < 0) {
- # Inside the location block
- push(@result, $cupsd_conf_ptr->[$i]);
- }
- }
- } else {
- # If there is no root location block, set the result array to
- # "undef"
- @result = undef;
- }
- return @result;
-}
-
-sub rip_location {
-
- # Cut out the [path] location block
- #
- # <Location [path]>
- # ...
- # </Location>
- #
- # so that it can be treated seperately without affecting the
- # rest of the file
-
- my ($cupsd_conf_ptr, $path) = @_;
-
- my @location;
- my $location_start = -1;
- my $location_end = -1;
- if (any { m!^\s*<Location\s+$path\s*>! } @$cupsd_conf_ptr) {
- # Go through all the lines, bail out when start and end line found
- for (my $i = 0;
- $i <= $#{$cupsd_conf_ptr} && $location_end == -1;
- $i++) {
- if ($cupsd_conf_ptr->[$i] =~ m!^\s*<\s*Location\s+$path\s*>!) {
- # Start line of block
- $location_start = $i;
- } elsif ($cupsd_conf_ptr->[$i] =~
- m!^\s*<\s*/Location\s*>! &&
- $location_start != -1) {
- # End line of block
- $location_end = $i;
- last;
- }
- }
- # Rip out the block and store it seperately
- @location =
- splice(@$cupsd_conf_ptr, $location_start,
- $location_end - $location_start + 1);
- } else {
- # If there is no location block, create one
- $location_start = $#{$cupsd_conf_ptr} + 1;
- @location = ("<Location $path>\n", "</Location>\n");
- }
-
- return $location_start, @location;
-}
-
-sub insert_location {
-
- # Re-insert a location block ripped with "rip_location"
-
- my ($cupsd_conf_ptr, $location_start, @location) = @_;
-
- splice(@$cupsd_conf_ptr, $location_start,0,@location);
-}
-
-sub add_to_location {
-
- # Add a directive to a given location (only if it is not already there)
-
- my ($cupsd_conf_ptr, $path, $directive) = @_;
-
- my ($location_start, @location) = rip_location($cupsd_conf_ptr, $path);
- my $success = handle_configs::insert_directive(\@location, $directive);
- insert_location($cupsd_conf_ptr, $location_start, @location);
- return $success;
-}
-
-sub remove_from_location {
-
- # Remove a directive from a given location
-
- my ($cupsd_conf_ptr, $path, $directive) = @_;
-
- my ($location_start, @location) = rip_location($cupsd_conf_ptr, $path);
- my $success = handle_configs::remove_directive(\@location, $directive);
- insert_location($cupsd_conf_ptr, $location_start, @location);
- return $success;
-}
-
-sub replace_in_location {
-
- # Replace a directive in a given location
-
- my ($cupsd_conf_ptr, $path, $olddirective, $newdirective) = @_;
-
- my ($location_start, @location) = rip_location($cupsd_conf_ptr, $path);
- my $success = handle_configs::replace_directive(\@location,
- $olddirective,
- $newdirective);
- insert_location($cupsd_conf_ptr, $location_start, @location);
- return $success;
-}
-
-sub add_allowed_host {
-
- # Add a host or network which should get access to the local printer(s)
- my ($cupsd_conf_ptr, $host) = @_;
-
- return (handle_configs::insert_directive($cupsd_conf_ptr,
- "BrowseAddress $host") and
- add_to_location($cupsd_conf_ptr, "/", "Allow From $host"));
-}
-
-sub remove_allowed_host {
-
- # Remove a host or network which should get access to the local
- # printer(s)
- my ($cupsd_conf_ptr, $host) = @_;
-
- return (handle_configs::remove_directive($cupsd_conf_ptr, "BrowseAddress $host") and
- remove_from_location($cupsd_conf_ptr, "/",
- "Allow From $host"));
-}
-
-sub replace_allowed_host {
-
- # Remove a host or network which should get access to the local
- # printer(s)
- my ($cupsd_conf_ptr, $oldhost, $newhost) = @_;
-
- return (handle_configs::replace_directive($cupsd_conf_ptr,
- "BrowseAddress $oldhost",
- "BrowseAddress $newhost") and
- replace_in_location($cupsd_conf_ptr, "/", "Allow From $newhost",
- "Allow From $newhost"));
-}
-
-sub broadcastaddress {
-
- # Determines the broadcast address (for "BrowseAddress" line) for
- # a given network IP
-
- my ($address) = @_;
-
- if ($address =~ /^\d+\.\*$/) {
- $address =~ s/\*$/255.255.255/;
- } elsif ($address =~ /^\d+\.\d+\.\*$/) {
- $address =~ s/\*$/255.255/;
- } elsif ($address =~ /^\d+\.\d+\.\d+\.\*$/) {
- $address =~ s/\*$/255/;
- } elsif ($address =~ m!^(\d+)\.(\d+)\.(\d+)\.(\d+)/(\d+)$!) {
- my $numadr = ($1 << 24) + ($2 << 16) + ($3 << 8) + $4;
- my $mask = ((1 << $5) - 1) << (32 - $5);
- my $broadcast = $numadr | (~$mask);
- $address =
- (($broadcast & (255 << 24)) >> 24) . '.' .
- (($broadcast & (255 << 16)) >> 16) . '.' .
- (($broadcast & (255 << 8)) >> 8) . '.' .
- ($broadcast & 255);
- } elsif ($address =~
- m!^(\d+)\.(\d+)\.(\d+)\.(\d+)/(\d+)\.(\d+)\.(\d+)\.(\d+)$!) {
- my $numadr = ($1 << 24) + ($2 << 16) + ($3 << 8) + $4;
- my $mask = ($5 << 24) + ($6 << 16) + ($7 << 8) + $8;
- my $broadcast = $numadr | (~$mask);
- $address =
- (($broadcast & (255 << 24)) >> 24) . '.' .
- (($broadcast & (255 << 16)) >> 16) . '.' .
- (($broadcast & (255 << 8)) >> 8) . '.' .
- ($broadcast & 255);
- }
-
- return $address;
-}
-
-sub networkaddress {
-
- # Guesses a network address for a given broadcast address
-
- my ($address) = @_;
-
- if ($address =~ /\.255$/) {
- while ($address =~ s/\.255$//) {}
- $address .= ".*";
- }
-
- return $address;
-}
-
-sub localprintersshared {
-
- # Do we broadcast our local printers
-
- my ($printer) = @_;
-
- return ($printer->{cupsconfig}{keys}{Browsing} !~ /off/i &&
- $printer->{cupsconfig}{keys}{BrowseInterval} != 0 &&
- $#{$printer->{cupsconfig}{keys}{BrowseAddress}} >= 0);
-}
-
-sub remotebroadcastsaccepted {
-
- # Do we accept broadcasts from remote CUPS servers?
-
- my ($printer) = @_;
-
- # Is browsing not turned on at all?
- if ($printer->{cupsconfig}{keys}{Browsing} =~ /off/i) {
- return 0;
- }
-
- # No "BrowseDeny" lines at all
- if ($#{$printer->{cupsconfig}{keys}{BrowseDeny}} < 0) {
- return 1;
- }
-
- my $havedenyall =
- join('', @{$printer->{cupsconfig}{keys}{BrowseDeny}}) =~
- /All/im;
- my $havedenylocal =
- join('', @{$printer->{cupsconfig}{keys}{BrowseDeny}}) =~
- /\@LOCAL/im;
- my $orderallowdeny =
- $printer->{cupsconfig}{keys}{BrowseOrder} =~
- /allow\s*,\s*deny/i;
- my $haveallowremote = 0;
- foreach my $allowline (@{$printer->{cupsconfig}{keys}{BrowseAllow}}) {
- next if
- $allowline =~ /^\s*(localhost|0*127\.0+\.0+\.0*1|none)\s*$/i;
- $haveallowremote = 1;
- }
-
- # A line denying all (or at least the all LANs) together with the order
- # "allow,deny" or without "BrowseAllow" lines (which allow the
- # broadcasts of at least one remote resource).
- if (($havedenyall || $havedenylocal) &&
- ($orderallowdeny || !$haveallowremote)) {
- return 0;
- }
-
- return 1;
-}
-
-sub clientnetworks {
-
- # Determine the client networks to which the printers will be
- # shared If the configuration is supported by our simplified
- # interface ("Deny From All", "Order Deny,Allow", "Allow From ..."
- # lines in "<location /> ... </location>", a "BrowseAddress ..."
- # line for each "Allow From ..." line), return the list of allowed
- # client networks ("Allow"/"BrowseAddress" lines), if not, return
- # the list of all items which are at least one of the
- # "BrowseAddresse"s or one of the "Allow From" addresses together
- # with a flag that the setup is not supported.
-
- my ($printer) = @_;
-
- # Check for a "Deny From All" line
- my $havedenyfromall =
- (join('', @{$printer->{cupsconfig}{root}{DenyFrom}}) =~
- /All/im ? 1 : 0);
-
- # Check for "Deny From XXX" with XXX != All
- my $havedenyfromnotall =
- ($#{$printer->{cupsconfig}{root}{DenyFrom}} - $havedenyfromall < 0 ?
- 0 : 1);
-
- # Check for a "BrowseDeny All" line
- my $havebrowsedenyall =
- (join('', @{$printer->{cupsconfig}{keys}{BrowseDeny}}) =~
- /All/im ? 1 : 0);
-
- # Check for "BrowseDeny XXX" with XXX != All
- my $havebrowsedenynotall =
- ($#{$printer->{cupsconfig}{keys}{BrowseDeny}} -
- $havebrowsedenyall < 0 ? 0 : 1);
-
- my @sharehosts;
- my $haveallowfromlocalhost = 0;
- my $haveallowedhostwithoutbrowseaddress = 0;
- my $haveallowedhostwithoutbrowseallow = 0;
- # Go through all "Allow From" lines
- foreach my $line (@{$printer->{cupsconfig}{root}{AllowFrom}}) {
- if ($line =~ /^\s*(localhost|0*127\.0+\.0+\.0*1)\s*$/i) {
- # Line pointing to localhost
- $haveallowfromlocalhost = 1;
- } elsif ($line =~ /^\s*(none)\s*$/i) {
- # Skip "Allow From None" lines
- } elsif (!member($line, @sharehosts)) {
- # Line pointing to remote server
- push(@sharehosts, $line);
- if (!member(broadcastaddress($line),
- @{$printer->{cupsconfig}{keys}{BrowseAddress}})) {
- $haveallowedhostwithoutbrowseaddress = 1;
- }
- if (!member($line,
- @{$printer->{cupsconfig}{keys}{BrowseAllow}})) {
- $haveallowedhostwithoutbrowseallow = 1;
- }
- }
- }
- my $havebrowseaddresswithoutallowedhost = 0;
- # Go through all "BrowseAdress" lines
- foreach my $line (@{$printer->{cupsconfig}{keys}{BrowseAddress}}) {
- if ($line =~ /^\s*(localhost|0*127\.0+\.0+\.0*1)\s*$/i) {
- # Skip lines pointing to localhost
- } elsif ($line =~ /^\s*(none)\s*$/i) {
- # Skip "Allow From None" lines
- } elsif (!member($line, map { broadcastaddress($_) } @sharehosts)) {
- # Line pointing to remote server
- push(@sharehosts, networkaddress($line));
- if ($printer->{cupsconfig}{localprintersshared}) {
- $havebrowseaddresswithoutallowedhost = 1;
- }
- }
- }
- my $havebrowseallowwithoutallowedhost = 0;
- # Go through all "BrowseAllow" lines
- foreach my $line (@{$printer->{cupsconfig}{keys}{BrowseAllow}}) {
- if ($line =~ /^\s*(localhost|0*127\.0+\.0+\.0*1)\s*$/i) {
- # Skip lines pointing to localhost
- } elsif ($line =~ /^\s*(none)\s*$/i) {
- # Skip "BrowseAllow None" lines
- } elsif (!member($line, @sharehosts)) {
- # Line pointing to remote server
- push(@sharehosts, $line);
- #$havebrowseallowwithoutallowedhost = 1;
- }
- }
-
- my $configunsupported = (!$havedenyfromall || $havedenyfromnotall ||
- !$havebrowsedenyall || $havebrowsedenynotall ||
- !$haveallowfromlocalhost ||
- $haveallowedhostwithoutbrowseaddress ||
- $havebrowseaddresswithoutallowedhost ||
- $haveallowedhostwithoutbrowseallow ||
- $havebrowseallowwithoutallowedhost);
-
- return $configunsupported, @sharehosts;
-}
-
-sub makesharehostlist {
-
- # Human-readable strings for hosts onto which the local printers
- # are shared
-
- my ($printer) = @_;
-
- my @sharehostlist;
- my %sharehosthash;
- foreach my $host (@{$printer->{cupsconfig}{clientnetworks}}) {
- if ($host =~ /\@LOCAL/i) {
- $sharehosthash{$host} = N("Local network(s)");
- } elsif ($host =~ /\@IF\((.*)\)/i) {
- $sharehosthash{$host} = N("Interface \"%s\"", $1);
- } elsif ($host =~ m!(/|^\*|\*$|^\.)!) {
- $sharehosthash{$host} = N("Network %s", $host);
- } else {
- $sharehosthash{$host} = N("Host %s", $host);
- }
- push(@sharehostlist, $sharehosthash{$host});
- }
- my %sharehosthash_inv = reverse %sharehosthash;
-
- return { list => \@sharehostlist,
- hash => \%sharehosthash,
- invhash => \%sharehosthash_inv };
-}
-
-sub makebrowsepolllist {
-
- # Human-readable strings for hosts from which the print queues are
- # polled
-
- my ($printer) = @_;
-
- my @browsepolllist;
- my %browsepollhash;
- foreach my $host (@{$printer->{cupsconfig}{BrowsePoll}}) {
- my ($ip, $port);
- if ($host =~ /^([^:]+):([^:]+)$/) {
- $ip = $1;
- $port = $2;
- } else {
- $ip = $host;
- $port = '631';
- }
- $browsepollhash{$host} = N("%s (Port %s)", $ip, $port);
- push(@browsepolllist, $browsepollhash{$host});
- }
- my %browsepollhash_inv = reverse %browsepollhash;
-
- return { list => \@browsepolllist,
- hash => \%browsepollhash,
- invhash => \%browsepollhash_inv };
-}
-
-sub is_network_ip {
-
- # Determine whwther the given string is a valid network IP
-
- my ($address) = @_;
-
- $address =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/ ||
- $address =~ /^(\d+\.){1,3}\*$/ ||
- $address =~ m!^(\d+)\.(\d+)\.(\d+)\.(\d+)/(\d+)$! ||
- $address =~
- m!^(\d+)\.(\d+)\.(\d+)\.(\d+)/(\d+)\.(\d+)\.(\d+)\.(\d+)$!;
-
-}
-
-sub read_cups_config {
-
- # Read the information relevant to the printer sharing dialog from
- # the CUPS configuration
-
- my ($printer) = @_;
-
- # From /etc/cups/cupsd.conf
-
- # Keyword "Browsing"
- $printer->{cupsconfig}{keys}{Browsing} =
- handle_configs::read_unique_directive($printer->{cupsconfig}{cupsd_conf},
- 'Browsing', 'On');
-
- # Keyword "BrowseInterval"
- $printer->{cupsconfig}{keys}{BrowseInterval} =
- handle_configs::read_unique_directive($printer->{cupsconfig}{cupsd_conf},
- 'BrowseInterval', '30');
-
- # Keyword "BrowseAddress"
- @{$printer->{cupsconfig}{keys}{BrowseAddress}} =
- handle_configs::read_directives($printer->{cupsconfig}{cupsd_conf},
- 'BrowseAddress');
-
- # Keyword "BrowseAllow"
- @{$printer->{cupsconfig}{keys}{BrowseAllow}} =
- handle_configs::read_directives($printer->{cupsconfig}{cupsd_conf},
- 'BrowseAllow');
-
- # Keyword "BrowseDeny"
- @{$printer->{cupsconfig}{keys}{BrowseDeny}} =
- handle_configs::read_directives($printer->{cupsconfig}{cupsd_conf},
- 'BrowseDeny');
-
- # Keyword "BrowseOrder"
- $printer->{cupsconfig}{keys}{BrowseOrder} =
- handle_configs::read_unique_directive($printer->{cupsconfig}{cupsd_conf},
- 'BrowseOrder', 'deny,allow');
-
- # Keyword "BrowsePoll" (needs "Browsing On")
- if ($printer->{cupsconfig}{keys}{Browsing} !~ /off/i) {
- @{$printer->{cupsconfig}{BrowsePoll}} =
- handle_configs::read_directives($printer->{cupsconfig}{cupsd_conf},
- 'BrowsePoll');
- }
-
- # Root location
- @{$printer->{cupsconfig}{rootlocation}} =
- read_location($printer->{cupsconfig}{cupsd_conf}, '/');
-
- # Keyword "Allow from"
- @{$printer->{cupsconfig}{root}{AllowFrom}} =
- handle_configs::read_directives($printer->{cupsconfig}{rootlocation},
- 'Allow From');
- # Remove the IPs pointing to the local machine
- my @localips = printer::detect::getIPsOfLocalMachine();
- @{$printer->{cupsconfig}{root}{AllowFrom}} =
- grep {
- !member($_, @localips);
- } @{$printer->{cupsconfig}{root}{AllowFrom}};
-
- # Keyword "Deny from"
- @{$printer->{cupsconfig}{root}{DenyFrom}} =
- handle_configs::read_directives($printer->{cupsconfig}{rootlocation},
- 'Deny From');
-
- # Keyword "Order"
- $printer->{cupsconfig}{root}{Order} =
- handle_configs::read_unique_directive($printer->{cupsconfig}{rootlocation},
- 'Order', 'Deny,Allow');
-
- # Widget settings
-
- # Local printers available to other machines?
- $printer->{cupsconfig}{localprintersshared} =
- localprintersshared($printer);
-
- # This machine is accepting printers shared by remote machines?
- $printer->{cupsconfig}{remotebroadcastsaccepted} =
- remotebroadcastsaccepted($printer);
-
- # To which machines are the local printers available?
- ($printer->{cupsconfig}{customsharingsetup},
- @{$printer->{cupsconfig}{clientnetworks}}) =
- clientnetworks($printer);
-
-}
-
-sub write_cups_config {
-
- # Write the information edited via the printer sharing dialog into
- # the CUPS configuration
-
- my ($printer) = @_;
-
- # Local printers available to other machines?
- if ($printer->{cupsconfig}{localprintersshared}) {
- handle_configs::set_directive($printer->{cupsconfig}{cupsd_conf},
- 'Browsing On');
- if ($printer->{cupsconfig}{keys}{BrowseInterval} == 0) {
- handle_configs::set_directive($printer->{cupsconfig}{cupsd_conf},
- 'BrowseInterval 30');
- }
- } else {
- handle_configs::set_directive($printer->{cupsconfig}{cupsd_conf},
- 'BrowseInterval 0');
- }
-
- # This machine is accepting printers shared by remote machines?
- if ($printer->{cupsconfig}{remotebroadcastsaccepted}) {
- handle_configs::set_directive($printer->{cupsconfig}{cupsd_conf},
- 'Browsing On');
- if (!$printer->{cupsconfig}{customsharingsetup}) {
- # If we broadcast our printers, let's accept the broadcasts
- # from the machines to which we broadcast
- handle_configs::set_directive($printer->{cupsconfig}{cupsd_conf},
- 'BrowseDeny All');
- handle_configs::set_directive($printer->{cupsconfig}{cupsd_conf},
- 'BrowseOrder Deny,Allow');
- }
- } else {
- if ($printer->{cupsconfig}{localprintersshared} ||
- $#{$printer->{cupsconfig}{BrowsePoll}} >= 0) {
- # Deny all broadcasts, but leave all "BrowseAllow" lines
- # untouched
- handle_configs::set_directive($printer->{cupsconfig}{cupsd_conf},
- 'BrowseDeny All');
- handle_configs::set_directive($printer->{cupsconfig}{cupsd_conf},
- 'BrowseOrder Allow,Deny');
- } else {
- # We also do not share printers, if we also do not
- # "BrowsePoll", we turn browsing off to do not need to deal
- # with any addresses
- handle_configs::set_directive($printer->{cupsconfig}{cupsd_conf},
- 'Browsing Off');
- }
- }
-
- # To which machines are the local printers available?
- if (!$printer->{cupsconfig}{customsharingsetup}) {
- my @localips = printer::detect::getIPsOfLocalMachine();
- # root location block
- @{$printer->{cupsconfig}{rootlocation}} =
- "<Location />\n" .
- "Order Deny,Allow\n" .
- "Deny From All\n" .
- "Allow From 127.0.0.1\n" .
- (@localips ?
- "Allow From " .
- join("\nAllow From ", @localips) .
- "\n" : "") .
- ($printer->{cupsconfig}{localprintersshared} &&
- $#{$printer->{cupsconfig}{clientnetworks}} >= 0 ?
- "Allow From " .
- join("\nAllow From ",
- grep {
- !member($_, @localips);
- } @{$printer->{cupsconfig}{clientnetworks}}) .
- "\n" : "") .
- "</Location>\n";
- my ($location_start, @_location) =
- rip_location($printer->{cupsconfig}{cupsd_conf}, "/");
- insert_location($printer->{cupsconfig}{cupsd_conf}, $location_start,
- @{$printer->{cupsconfig}{rootlocation}});
- # "BrowseAddress" lines
- if ($#{$printer->{cupsconfig}{clientnetworks}} >= 0) {
- handle_configs::set_directive($printer->{cupsconfig}{cupsd_conf},
- 'BrowseAddress ' .
- join("\nBrowseAddress ",
- map { broadcastaddress($_) }
- @{$printer->{cupsconfig}{clientnetworks}}));
- } else {
- handle_configs::comment_directive($printer->{cupsconfig}{cupsd_conf},
- 'BrowseAddress');
- }
- # Set "BrowseAllow" lines
- if ($#{$printer->{cupsconfig}{clientnetworks}} >= 0) {
- handle_configs::set_directive($printer->{cupsconfig}{cupsd_conf},
- 'BrowseAllow ' .
- join("\nBrowseAllow ",
- @{$printer->{cupsconfig}{clientnetworks}}));
- } else {
- handle_configs::comment_directive($printer->{cupsconfig}{cupsd_conf},
- 'BrowseAllow');
- }
- }
-
- # Set "BrowsePoll" lines
- if ($#{$printer->{cupsconfig}{BrowsePoll}} >= 0) {
- handle_configs::set_directive($printer->{cupsconfig}{cupsd_conf},
- 'BrowsePoll ' .
- join("\nBrowsePoll ",
- @{$printer->{cupsconfig}{BrowsePoll}}));
- # "Browsing" must be on for "BrowsePoll" to work
- handle_configs::set_directive($printer->{cupsconfig}{cupsd_conf},
- 'Browsing On');
- } else {
- handle_configs::comment_directive($printer->{cupsconfig}{cupsd_conf},
- 'BrowsePoll');
- }
-
-}
-
-sub clean_cups_config {
-
- # Clean $printer data structure from all settings not related to
- # the CUPS printer sharing dialog
-
- my ($printer) = @_;
-
- delete $printer->{cupsconfig}{keys};
- delete $printer->{cupsconfig}{root};
- delete $printer->{cupsconfig}{cupsd_conf};
- delete $printer->{cupsconfig}{rootlocation};
-}
-
-#----------------------------------------------------------------------
-# Handling of /etc/cups/client.conf
-
-sub read_client_conf() {
- return (0, undef) if (! -r "$::prefix/etc/cups/client.conf");
- my @client_conf = cat_("$::prefix/etc/cups/client.conf");
- my @servers = handle_configs::read_directives(\@client_conf,
- "ServerName");
- return (@servers > 0,
- $servers[0]); # If there is more than one entry in client.conf,
- # the first one counts.
-}
-
-sub write_client_conf {
- my ($daemonless_cups, $remote_cups_server) = @_;
- # Create the directory for client.conf if needed
- (-d "$::prefix/etc/cups/") || mkdir("$::prefix/etc/cups/") || return 1;
- my (@client_conf) = cat_("$::prefix/etc/cups/client.conf");
- if ($daemonless_cups) {
- handle_configs::set_directive(\@client_conf,
- "ServerName $remote_cups_server");
- } else {
- handle_configs::comment_directive(\@client_conf, "ServerName");
- }
- output("$::prefix/etc/cups/client.conf", @client_conf);
-}
-
-
-
-#----------------------------------------------------------------------
-sub read_printers_conf {
- my ($printer) = @_;
- my $current;
-
- #- read /etc/cups/printers.conf file.
- #- according to this code, we are now using the following keys for each queues.
- #- DeviceURI > lpd://printer6/lp
- #- Info > Info Text
- #- Location > Location Text
- #- State > Idle|Stopped
- #- Accepting > Yes|No
- open(my $PRINTERS, "$::prefix/etc/cups/printers.conf") or return;
- local $_;
- while (<$PRINTERS>) {
- chomp;
- /^\s*#/ and next;
- if (/^\s*<(?:DefaultPrinter|Printer)\s+([^>]*)>/) { $current = { mode => 'cups', QUEUE => $1, } }
- elsif (m!\s*</Printer>!) { $current->{QUEUE} && $current->{DeviceURI} or next; #- minimal check of synthax.
- add2hash($printer->{configured}{$current->{QUEUE}} ||= {}, $current); $current = undef }
- elsif (/\s*(\S*)\s+(.*)/) { $current->{$1} = $2 }
- }
- close $PRINTERS;
-
- #- assume this printing system.
- $printer->{SPOOLER} ||= 'cups';
-}
-
-sub get_direct_uri() {
- #- get the local printer to access via a Device URI.
- my @direct_uri;
- open(my $F, ($::testing ? $::prefix : "chroot $::prefix/ ") . "/usr/sbin/lpinfo -v |");
- local $_;
- while (<$F>) {
- /^(direct|usb|serial)\s+(\S*)/ and push @direct_uri, $2;
- }
- close $F;
- @direct_uri;
-}
-
-sub checkppd {
- # Check whether the PPD file is valid
- my ($printer, $ppdfile) = @_;
- return 1 if $printer->{SPOOLER} ne "cups";
- return run_program::rooted($::prefix, "cupstestppd", "-q",
- $ppdfile);
-}
-
-sub installppd {
- # Install the PPD file in /usr/share/cups/model/printerdrake/
- my ($printer, $ppdfile) = @_;
- return "" if !$ppdfile;
- # Install PPD file
- mkdir_p("$::prefix/usr/share/cups/model/printerdrake");
- # "cp_f()" is broken, it hangs infinitely
- # cp_f($ppdfile, "$::prefix/usr/share/cups/model/printerdrake");
- run_program::rooted($::prefix, "cp", "-f", $ppdfile,
- "$::prefix/usr/share/cups/model/printerdrake");
- $ppdfile =~ s!^(.*)(/[^/]+)$!/usr/share/cups/model/printerdrake$2!;
- chmod 0644, "$::prefix$ppdfile";
- # Restart CUPS to register new PPD file
- printer::services::restart("cups") if $printer->{SPOOLER} eq "cups";
- # Re-read printer database
- %thedb = ();
- # Supplying $ppdfile returns us the key for this PPD file in the
- # so that we can point to it in the printer/driver list
- return read_printer_db($printer, $printer->{SPOOLER}, $ppdfile);
-}
-
-sub clean_manufacturer_name {
- my ($make) = @_;
- # Clean some manufacturer's names so that every manufacturer has only
- # one entry in the tree list
- $make =~ s/^CANON\W.*$/CANON/i;
- $make =~ s/^LEXMARK.*$/LEXMARK/i;
- $make =~ s/^HEWLETT?[\s\-]*PACKARD/HP/i;
- $make =~ s/^SEIKO[\s\-]*EPSON/EPSON/i;
- $make =~ s/^KYOCERA[\s\-]*MITA/KYOCERA/i;
- $make =~ s/^CITOH/C.ITOH/i;
- $make =~ s/^OKI(|[\s\-]*DATA)\s*$/OKIDATA/i;
- $make =~ s/^(SILENTWRITER2?|COLORMATE)/NEC/i;
- $make =~ s/^(XPRINT|MAJESTIX)/XEROX/i;
- $make =~ s/^QMS-PS/QMS/i;
- $make =~ s/^(PERSONAL|LASERWRITER)/APPLE/i;
- $make =~ s/^DIGITAL/DEC/i;
- $make =~ s/\s+Inc\.//i;
- $make =~ s/\s+Corp\.//i;
- $make =~ s/\s+SA\.//i;
- $make =~ s/\s+S\.\s*A\.//i;
- $make =~ s/\s+Ltd\.//i;
- $make =~ s/\s+International//i;
- $make =~ s/\s+Int\.//i;
- return uc($make);
-}
-
-sub ppd_entry_str {
- my ($mf, $descr, $lang) = @_;
- my ($model, $driver);
- if ($descr) {
- # Apply the beautifying rules of poll_ppd_base
- if ($descr =~ /Foomatic \+ Postscript/) {
- $descr =~ s/Foomatic \+ Postscript/PostScript/;
- } elsif ($descr =~ /Foomatic/i) {
- $descr =~ s/Foomatic/GhostScript/i;
- } elsif ($descr =~ /CUPS\+Gimp-Print/i) {
- $descr =~ s/CUPS\+Gimp-Print/CUPS + Gimp-Print/i;
- } elsif ($descr =~ /CUPS\+Gutenprint/i) {
- $descr =~ s/CUPS\+Gutenprint/CUPS + Gutenprint/i;
- } elsif ($descr =~ /Series CUPS/i) {
- $descr =~ s/Series CUPS/Series, CUPS/i;
- } elsif ($descr !~ /(PostScript|GhostScript|CUPS|Foomatic|PCL|PXL)/i) {
- $descr .= ", PostScript";
- }
- # Avoid duplicate entries produced by ready-made Foomatic PPDs vs.
- # the Foomatic XML database
- $descr =~ s!(Foomatic|GhostScript)\s*/\s*(\S+)!$1 + $2!i;
- # Split model and driver
- $descr =~ s/\s*Series//i;
- $descr =~ s/\((.*?(PostScript|PS.*).*?)\)/$1/i;
- if ($descr =~
- /^\s*(Generic\s*PostScript\s*Printer)\s*,?\s*(.*)$/i ||
- $descr =~
- /^\s*(PostScript\s*Printer)\s*,?\s*(.*)$/i ||
- $descr =~ /^([^,]+?)\s*,?\s*(Foomatic.*)$/i ||
- $descr =~ /^([^,]+?)\s*,?\s*(GhostScript.*)$/i ||
- $descr =~ /^([^,]+?)\s*,?\s*(CUPS.*)$/i ||
- $descr =~ /^([^,]+?)\s*,\s+(PS.*)$/i ||
- $descr =~ /^([^,]+?)\s*,\s+(PXL.*)$/i ||
- $descr =~ /^([^,]+?)\s*,\s+(PCL.*)$/i ||
- $descr =~
- /^([^,]+?)\s*,?\s*(\(v?\.?\s*\d\d\d\d\.\d\d\d\).*)$/i ||
- $descr =~ /^([^,]+?)\s*,?\s*(v?\.?\s*\d+\.\d+.*)$/i ||
- $descr =~ /^([^,]+?)\s*,?\s*(PostScript.*)$/i ||
- $descr =~ /^([^,]+?)\s*,\s*(.+?)$/) {
- $model = $1;
- $driver = $2;
- $model =~ s/[\-\s,]+$//;
- $driver =~ s/\b(PS|PostScript\b)/PostScript/gi;
- $driver =~ s/(PostScript)(.*)(PostScript)/$1$2/i;
- $driver =~ s/\b(PXL|PCL[\s\-]*(6|XL)\b)/PCL-XL/gi;
- $driver =~ s/(PCL-XL)(.*)(PCL-XL)/$1$2/i;
- $driver =~ s/\b(PCL[\s\-]*(|4|5|5c|5e)\b)/PCL/gi;
- $driver =~ s/(PCL)(.*)(PCL)/$1$2/i;
- $driver =~
- s/^\s*(\(?v?\.?\s*\d\d\d\d\.\d\d\d\)?|v\d+\.\d+)([,\s]*)(.*?)\s*$/$3$2$1/i;
- $driver =~ s/,\s*\(/ (/g;
- $driver =~ s/[\-\s,]+$//;
- $driver =~ s/^[\-\s,]+//;
- $driver =~ s/\s+/ /g;
- if ($driver !~ /[a-z]/i) {
- $driver = "PostScript " . $driver;
- $driver =~ s/ $//;
- }
- } else {
- # Some PPDs do not have the ", <driver>" part.
- $model = $descr;
- if ($model =~ /\b(PXL|PCL[\s\-]*(6|XL))\b/i) {
- $driver = "PCL-XL";
- } elsif ($model =~ /\b(PCL[\s\-]*(|4|5|5c|5e)\b)/i) {
- $driver = "PCL";
- } else {
- $driver = "PostScript";
- }
- }
- }
- # Remove manufacturer's name from the beginning of the model
- # name (do not do this with manufacturer names which contain
- # odd characters)
- $model =~ s/^$mf[\s\-]+//i
- if $mf && $mf !~ m![\\/\(\)\[\]\|\.\$\@\%\*\?]!;
- # Clean some manufacturer's names
- $mf = clean_manufacturer_name($mf);
- # Rename Canon "BJC XXXX" models into "BJC-XXXX" so that the
- # models do not appear twice
- if ($mf eq "CANON") {
- $model =~ s/BJC\s+/BJC-/;
- }
- # New MF devices from Epson have mis-spelled name in PPD files for
- # native CUPS drivers of Gimp-Print
- if ($mf eq "EPSON") {
- $model =~ s/Stylus CX\-/Stylus CX/;
- }
- # Remove the "Oki" from the beginning of the model names of Okidata
- # printers
- if ($mf eq "OKIDATA") {
- $model =~ s/Oki\s+//i;
- }
- # Try again to remove manufacturer's name from the beginning of the
- # model name, this time with the cleaned manufacturer name
- $model =~ s/^$mf[\s\-]+//i
- if $mf && $mf !~ m![\\/\(\)\[\]\|\.\$\@\%\*\?]!;
- # Translate "(recommended)" in the driver string
- $driver =~ s/\(recommended\)/$precstr/gi;
- # Put out the resulting description string
- uc($mf) . '|' . $model . '|' . $driver .
- ($lang && " (" . lang::locale_to_main_locale($lang) . ")");
-}
-
-sub get_descr_from_ppd {
- my ($printer) = @_;
- #- if there is no ppd, this means this is a raw queue.
- if (! -r "$::prefix/etc/cups/ppd/$printer->{OLD_QUEUE}.ppd") {
- return "|" . N("Unknown model");
- }
- return get_descr_from_ppdfile($printer, "/etc/cups/ppd/$printer->{OLD_QUEUE}.ppd");
-}
-
-sub get_descr_from_ppdfile {
- my ($printer, $ppdfile) = @_;
- my %ppd;
-
- # Remove ".gz" from end of file name, so that "catMaybeCompressed" works
- $ppdfile =~ s/\.gz$//;
-
- eval {
- local $_;
- foreach (catMaybeCompressed("$::prefix$ppdfile")) {
- # "OTHERS|Generic PostScript printer|PostScript (en)";
- /^\*([^\s:]*)\s*:\s*"([^"]*)"/ and
- do { $ppd{$1} = $2; next };
- /^\*([^\s:]*)\s*:\s*([^\s"]*)/ and
- do { $ppd{$1} = $2; next };
- }
- };
- my $descr = ($ppd{NickName} || $ppd{ShortNickName} || $ppd{ModelName});
- my $make = $ppd{Manufacturer};
- my $lang = $ppd{LanguageVersion};
- my $entry = ppd_entry_str($make, $descr, $lang);
- if (!$printer->{expert}) {
- # Remove driver from printer list entry when in recommended mode
- $entry =~ s/^([^\|]+\|[^\|]+)\|.*$/$1/;
- }
- return $entry;
-}
-
-sub ppd_devid_data {
- my ($ppd) = @_;
- $ppd = "$::prefix/usr/share/cups/model/$ppd";
- my @content = eval { catMaybeCompressed($ppd) } or return "", "";
-
- my ($devidmake, $devidmodel);
- /^\*Manufacturer:\s*"(.*)"\s*$/ and $devidmake = $1
- foreach @content;
- /^\*Product:\s*"\(?(.*?)\)?"\s*$/ and $devidmodel = $1
- foreach @content;
- return $devidmake, $devidmodel;
-}
-
-sub poll_ppd_base {
- my ($printer, $ppdfile) = @_;
-
- # If a $ppdfile is supplied, we return the key of the DB entry which
- # is for this file. This way we can pre-select a freshly added PPD in
- # the model/driver list.
-
- #- Before trying to poll the ppd database available to cups, we have
- #- to make sure the file /etc/cups/ppds.dat is no more modified.
- #- If cups continue to modify it (because it reads the ppd files
- #- available), the poll_ppd_base program simply cores :-)
- # else cups will not be happy! and ifup lo do not run ?
- run_program::rooted($::prefix, 'ifconfig', 'lo', '127.0.0.1');
- printer::services::start_not_running_service("cups");
- my $driversthere = scalar(keys %thedb);
- my $ppdentry = "";
- $ppdfile = "" if !defined($ppdfile);
- foreach (1..60) {
- open(my $PPDS, ($::testing ? $::prefix :
- "chroot $::prefix/ ") .
- "/usr/bin/poll_ppd_base -a |");
- local $_;
- while (<$PPDS>) {
- chomp;
- my ($ppd, $mf, $descr, $lang) = split /\|/;
- if ($ppd eq "raw") { next }
- $ppd && $mf && $descr and do {
- my $key = ppd_entry_str($mf, $descr, $lang);
- my ($model, $driver) = ($1, $2) if $key =~ /^[^\|]+\|([^\|]+)\|(.*)$/;
- # Clean some manufacturer's names
- $mf = clean_manufacturer_name($mf);
- # Remove language tag
- $driver =~ s/\s*\([a-z]{2}(|_[A-Z]{2})\)\s*$//;
- # Recommended Foomatic PPD? Extract "(recommended)"
- my $isrecommended =
- $driver =~ s/\s+$sprecstr\s*$//i;
- # Remove trailing white space
- $driver =~ s/\s+$//;
- # For Foomatic: Driver with "GhostScript + "
- my $fullfoomaticdriver = $driver;
- # Foomatic PPD? Extract driver name
- my $isfoomatic =
- $driver =~ s!^\s*(GhostScript|Foomatic)(\s*\+\s*|/)!!i;
- # Foomatic PostScript driver?
- $isfoomatic ||= $descr =~ /Foomatic/i;
- # Native CUPS?
- my $isnativecups = $driver =~ /CUPS/i;
- # Native PostScript
- my $isnativeps = !$isfoomatic && !$isnativecups;
- # Key without language tag (key as it was produced for the
- # entries from the Foomatic XML database)
- my $keynolang = $key;
- $keynolang =~ s/\s*\([a-z]{2}(|_[A-Z]{2})\)\s*$//;
- if (!$isfoomatic) {
- # Driver is PPD when the PPD is a non-Foomatic one
- $driver = "PPD";
- } else {
- # Remove language tag in menu entry when PPD is from
- # Foomatic
- $key = $keynolang;
- }
- my ($devidmake, $devidmodel, $deviddesc, $devidcmdset);
- # Replace an existing printer entry if it has linked
- # to the current PPD file.
- my ($filename, $ppdkey);
- $ppd =~ m!([^/]+\.ppd)(\.gz|\.bz2|)$!;
- if (($filename = $1) &&
- ($#{$linkedppds{$filename}} >= 0)) {
- foreach $ppdkey (@{$linkedppds{$filename}}) {
- next if !defined($thedb{$ppdkey});
- # Save the autodetection data
- $devidmake = $thedb{$ppdkey}{devidmake};
- $devidmodel = $thedb{$ppdkey}{devidmodel};
- $deviddesc = $thedb{$ppdkey}{deviddesc};
- $devidcmdset = $thedb{$ppdkey}{devidcmdset};
- # We must preserve make and model if we have one
- # PPD for multiple printers
- my $oldmake = $thedb{$ppdkey}{make};
- my $oldmodel = $thedb{$ppdkey}{model};
- # Remove the old entry
- delete $thedb{$ppdkey};
- my $newkey = $key;
- # User-added PPD file, mark it
- if ($ppd =~ m!printerdrake/!i) {
- $newkey .= ", " . N("user-supplied");
- }
- # Newly added PPD file, mark it
- if ($ppdfile eq "/usr/share/cups/model/$ppd") {
- $newkey .= ", " . N("NEW");
- }
- if (!$printer->{expert}) {
- # Remove driver part in recommended mode
- $newkey =~ s/^([^\|]+\|[^\|]+)\|.*$/$1/;
- } else {
- # If the Foomatic entry is "recommended" let
- # the new PPD entry be "recommended" and
- # otherwise not
- $newkey =~ s/\s*$sprecstr//g;
- $newkey .= " $precstr"
- if $ppdkey =~ m!$sprecstr!;
- # Remove duplicate "recommended" tags and have
- # the "recommended" tag at the end
- $newkey =~
- s/(\s*$sprecstr)(.*?)(\s*$sprecstr)/$2$3/;
- $newkey =~ s/(\s*$sprecstr)(.+)$/$2$1/;
- }
- # Conserve the make and model of the original entry
- $newkey =~
- s/^([^\|]+)(\|[^\|]+)(\|.*|)$/$oldmake$2$3/;
- $newkey =~
- s/^([^\|]+\|)([^\|]+)(\|.*|)$/$1$oldmodel$3/;
- # Do not overwrite another entry which has the
- # same key, consider different PPD files with
- # the same identity as a bug and drop them
- if ($thedb{$newkey}) {
- next;
- }
- # Create the new entry
- $thedb{$newkey}{ppd} = $ppd;
- $thedb{$newkey}{make} = $oldmake;
- $thedb{$newkey}{model} = $oldmodel;
- $thedb{$newkey}{driver} = $driver;
- # Recover saved autodetection data
- $thedb{$newkey}{devidmake} = $devidmake
- if $devidmake;
- $thedb{$newkey}{devidmodel} = $devidmodel
- if $devidmodel;
- $thedb{$newkey}{deviddesc} = $deviddesc
- if $deviddesc;
- $thedb{$newkey}{devidcmdset} = $devidcmdset
- if $devidcmdset;
- # Rememeber which entry is the freshly added
- # PPD file
- $ppdentry = $newkey if
- $ppdfile eq "/usr/share/cups/model/$ppd";
- }
- next;
- } elsif (!$printer->{expert}) {
- # Remove driver from printer list entry when in
- # recommended mode
- $key =~ s/^([^\|]+\|[^\|]+)\|.*$/$1/;
- # Only replace an existing printer entry if
- # - its driver is not the same as the driver of the
- # new one
- # AND if one of the following items is true
- # - The existing entry uses a "Foomatic + Postscript"
- # driver and the new one is native PostScript
- # - The existing entry is a Foomatic entry and the new
- # one is "recommended"
- # - The existing entry is a native PostScript entry
- # and the new entry is a "recommended" driver other
- # then "Foomatic + Postscript"
- if (defined($thedb{$key})) {
- next if lc($thedb{$key}{driver}) eq
- lc($driver);
- if ($isnativeps &&
- $thedb{$key}{driver} =~ /^PostScript$/i ||
- $thedb{$key}{driver} ne "PPD" && $isrecommended ||
- $thedb{$key}{driver} eq "PPD" && $isrecommended && $driver ne "PostScript") {
- # Save the autodetection data
- $devidmake = $thedb{$key}{devidmake};
- $devidmodel = $thedb{$key}{devidmodel};
- $deviddesc = $thedb{$key}{deviddesc};
- $devidcmdset = $thedb{$key}{devidcmdset};
- # Remove the old entry
- delete $thedb{$key};
- } else {
- next;
- }
- }
- } elsif ((defined
- $thedb{"$mf|$model|$fullfoomaticdriver"} ||
- defined
- $thedb{"$mf|$model|$fullfoomaticdriver $precstr"}) &&
- $isfoomatic) {
- # Expert mode: There is already an entry for the
- # same printer/driver combo produced by the
- # Foomatic XML database, so do not make a second
- # entry
- next;
- } elsif (defined
- $thedb{"$mf|$model|PostScript $precstr"} &&
- $isnativeps) {
- # Expert mode: "Foomatic + Postscript" driver is
- # recommended and this is a PostScript PPD? Make
- # this PPD the recommended one
- foreach (keys
- %{$thedb{"$mf|$model|PostScript $precstr"}}) {
- $thedb{"$mf|$model|PostScript"}{$_} =
- $thedb{"$mf|$model|PostScript $precstr"}{$_};
- }
- delete
- $thedb{"$mf|$model|PostScript $precstr"};
- if (!$isrecommended) {
- $key .= " $precstr";
- }
- } elsif ($driver =~ /PostScript/i &&
- $isrecommended && $isfoomatic &&
- (my @foundkeys = grep {
- /^$mf\|$model\|/ && !/CUPS/i &&
- $thedb{$_}{driver} eq "PPD";
- } keys %thedb)) {
- # Expert mode: "Foomatic + Postscript" driver is
- # recommended and there was a PostScript PPD? Make
- # the PostScript PPD the recommended one
- my $firstfound = $foundkeys[0];
- if (!(any { /$sprecstr/ } @foundkeys)) {
- # Do it only if none of the native PostScript
- # PPDs for this printer is already "recommended"
- foreach (keys %{$thedb{$firstfound}}) {
- $thedb{"$firstfound $precstr"}{$_} =
- $thedb{$firstfound}{$_};
- }
- delete $thedb{$firstfound};
- }
- $key =~ s/\s*$sprecstr//;
- } elsif ($driver !~ /PostScript/i &&
- $isrecommended && $isfoomatic &&
- (@foundkeys = grep {
- /^$mf\|$model\|.*$sprecstr/ &&
- !/CUPS/i && $thedb{$_}{driver} eq "PPD";
- } keys %thedb)) {
- # Expert mode: Foomatic driver other than "Foomatic +
- # Postscript" is recommended and there was a PostScript
- # PPD which was recommended? Make the Foomatic driver
- # the recommended one
- foreach my $sourcekey (@foundkeys) {
- # Remove the "recommended" tag
- my $destkey = $sourcekey;
- $destkey =~ s/\s+$sprecstr\s*$//i;
- foreach (keys %{$thedb{$sourcekey}}) {
- $thedb{$destkey}{$_} = $thedb{$sourcekey}{$_};
- }
- delete $thedb{$sourcekey};
- }
- }
-
- # User-added PPD file, mark it
- if ($ppd =~ m!printerdrake/!i) {
- $key .= ", " . N("user-supplied");
- }
- # Newly added PPD file, mark it
- if ($ppdfile eq "/usr/share/cups/model/$ppd") {
- $key .= ", " . N("NEW");
- }
- # Remove duplicate "recommended" tags and have the
- # "recommended" tag at the end
- $key =~ s/(\s*$sprecstr)(.*?)(\s*$sprecstr)/$2$3/;
- $key =~ s/(\s*$sprecstr)(.+)$/$2$1/;
- # Do not overwrite another entry which has the same
- # key, consider different PPD files with the same identity
- # as a bug and drop them
- if ($thedb{$key}) {
- next;
- }
- # Create the new entry
- $thedb{$key}{ppd} = $ppd;
- $thedb{$key}{make} = $mf;
- $thedb{$key}{model} = $model;
- $thedb{$key}{driver} = $driver;
- # Recover saved autodetection data
- $thedb{$key}{devidmake} = $devidmake if $devidmake;
- $thedb{$key}{devidmodel} = $devidmodel if $devidmodel;
- $thedb{$key}{deviddesc} = $deviddesc if $deviddesc;
- $thedb{$key}{devidcmdset} = $devidcmdset if $devidcmdset;
- # Get autodetection data
- #my ($devidmake, $devidmodel) = ppd_devid_data($ppd);
- #$thedb{$key}{devidmake} = $devidmake;
- #$thedb{$key}{devidmodel} = $devidmodel;
- # Rememeber which entry is the freshly added PPD file
- $ppdentry = $key if
- $ppdfile eq "/usr/share/cups/model/$ppd";
- };
- }
- close $PPDS;
- scalar(keys %thedb) - $driversthere > 5 and last;
- #- we have to try again running the program, wait here a little
- #- before.
- sleep 1;
- }
- #scalar(keys %descr_to_ppd) > 5 or
- # die "unable to connect to cups server";
-
- return $ppdentry;
-}
-
-
-
-#-******************************************************************************
-#- write functions
-#-******************************************************************************
-
-sub configure_queue($) {
- my ($printer) = @_;
-
- #- Create the queue with "foomatic-configure", in case of queue
- #- renaming copy the old queue
- my $quotedconnect = $printer->{currentqueue}{connect};
- $quotedconnect =~ s/\$/\\\$/g; # Quote '$' in URI
- run_program::rooted($::prefix, "foomatic-configure", "-q",
- "-s", $printer->{currentqueue}{spooler},
- "-n", $printer->{currentqueue}{queue},
- ($printer->{currentqueue}{queue} ne
- $printer->{OLD_QUEUE} &&
- $printer->{configured}{$printer->{OLD_QUEUE}} ?
- ("-C", $printer->{OLD_QUEUE}) : ()),
- "-c", $quotedconnect,
- ($printer->{currentqueue}{ppd} ?
- ($printer->{currentqueue}{ppd} ne '1' ?
- ("--ppd",
- ($printer->{currentqueue}{ppd} !~ m!^/! ?
- "/usr/share/cups/model/" : "") .
- $printer->{currentqueue}{ppd}) : ()) :
- ($printer->{currentqueue}{foomatic} ?
- ("-p", $printer->{currentqueue}{printer},
- "-d",($printer->{currentqueue}{driver} ne "PPD" ?
- $printer->{currentqueue}{driver} :
- "Postscript")) :
- ("-d", "raw"))),
- "-N", $printer->{currentqueue}{desc},
- "-L", $printer->{currentqueue}{loc},
- if_($printer->{SPOOLER} eq "cups",
- "--backend-dont-disable=" .
- $printer->{currentqueue}{dd},
- "--backend-attempts=" .
- $printer->{currentqueue}{att},
- "--backend-delay=" .
- $printer->{currentqueue}{delay}),
- @{$printer->{currentqueue}{options}}
- ) or return 0;
- if ($printer->{currentqueue}{ppd} &&
- ($printer->{currentqueue}{ppd} ne '1')) {
- # Add a comment line containing the path of the used PPD file to the
- # end of the PPD file
- if ($printer->{currentqueue}{ppd} ne '1') {
- append_to_file("$::prefix/etc/cups/ppd/$printer->{currentqueue}{queue}.ppd", "*%MDKMODELCHOICE:$printer->{currentqueue}{ppd}\n");
- }
- }
-
- # Make sure that queue is active
- if ($printer->{NEW} && ($printer->{SPOOLER} ne "pdq")) {
- run_program::rooted($::prefix, "foomatic-printjob",
- "-s", $printer->{currentqueue}{spooler},
- "-C", "up", $printer->{currentqueue}{queue});
- }
-
- # Check whether a USB printer is configured and activate USB printing if so
- my $useUSB = 0;
- foreach (values %{$printer->{configured}}) {
- $useUSB ||= $_->{queuedata}{connect} =~ /usb/i ||
- $_->{DeviceURI} =~ /usb/i;
- }
- $useUSB ||= $printer->{currentqueue}{connect} =~ /usb/i;
- if ($useUSB) {
- my $f = "$::prefix/etc/sysconfig/usb";
- my %usb = getVarsFromSh($f);
- $usb{PRINTER} = "yes";
- setVarsInSh($f, \%usb);
- }
-
- # Open permissions for device file when PDQ is chosen as spooler
- # so normal users can print.
- if ($printer->{SPOOLER} eq 'pdq') {
- if ($printer->{currentqueue}{connect} =~
- m!^\s*(file|parallel|usb|serial):(\S*)\s*$!) {
- set_permissions($1, "666");
- }
- }
-
- # Make a new printer entry in the $printer structure
- $printer->{configured}{$printer->{currentqueue}{queue}}{queuedata} =
- {};
- copy_printer_params($printer->{currentqueue},
- $printer->{configured}{$printer->{currentqueue}{queue}}{queuedata});
- # Construct an entry line for tree view in main window of
- # printerdrake
- make_menuentry($printer, $printer->{currentqueue}{queue});
-
- # Store the default option settings
- $printer->{configured}{$printer->{currentqueue}{queue}}{args} = {};
- $printer->{configured}{$printer->{currentqueue}{queue}}{args} =
- $printer->{ARGS};
-
- # In case of CUPS set some more useful defaults for text and image
- # printing
- if ($printer->{SPOOLER} eq "cups") {
- set_cups_special_options($printer,
- $printer->{currentqueue}{queue});
- }
-
- # Clean up
- delete($printer->{ARGS});
- $printer->{OLD_CHOICE} = "";
- $printer->{ARGS} = {};
- $printer->{DBENTRY} = "";
- $printer->{currentqueue} = {};
-
- return 1;
-}
-
-sub enable_disable_queue {
- my ($printer, $queue, $state) = @_;
-
- if (($printer->{SPOOLER} ne "pdq") &&
- ($printer->{SPOOLER} ne "rcups")) {
- run_program::rooted($::prefix, "foomatic-printjob",
- "-s", $printer->{SPOOLER},
- "-C", ($state ? "start" : "stop"), $queue);
- }
-}
-
-sub remove_queue($$) {
- my ($printer, $queue) = @_;
- run_program::rooted($::prefix, "foomatic-configure", "-R", "-q",
- "-s", $printer->{SPOOLER},
- "-n", $queue);
- # Delete old stuff from data structure
- delete $printer->{configured}{$queue};
- delete($printer->{currentqueue});
- delete($printer->{ARGS});
- $printer->{OLD_CHOICE} = "";
- $printer->{ARGS} = {};
- $printer->{DBENTRY} = "";
- $printer->{currentqueue} = {};
-}
-
-sub restart_queue($) {
- my ($printer) = @_;
- my $queue = $printer->{QUEUE};
-
- # Restart the daemon(s)
- for ($printer->{SPOOLER}) {
- /cups/ and do {
- #- restart cups.
- printer::services::restart("cups");
- last };
- /lpr|lprng/ and do {
- #- restart lpd.
- foreach ("/var/spool/lpd/$queue/lock", "/var/spool/lpd/lpd.lock") {
- my $pidlpd = (cat_("$::prefix$_"))[0];
- kill 'TERM', $pidlpd if $pidlpd;
- unlink "$::prefix$_";
- }
- printer::services::restart("lpd"); sleep 1;
- last };
- }
- # Kill the jobs
- run_program::rooted($::prefix, "foomatic-printjob", "-R",
- "-s", $printer->{SPOOLER},
- "-P", $queue, "-");
-
-}
-
-sub print_pages($@) {
- my ($printer, @pages) = @_;
- my $queue = $printer->{QUEUE};
- my $lpr = "/usr/bin/foomatic-printjob";
- my $lpq = "$lpr -Q";
- my $spooler = $printer->{SPOOLER};
- $spooler = "cups" if $spooler eq "rcups";
-
- # Print the pages
- foreach (@pages) {
- my $page = $_;
- # Only text and PostScript can be printed directly with all
- # spoolers, images must be treated seperately
- if ($page =~ /\.jpg$/) {
- if ($spooler ne "cups") {
- # Use "convert" from ImageMagick for non-CUPS spoolers
- system(($::testing ? $::prefix : "chroot $::prefix/ ") .
- "/usr/bin/convert $page -page 427x654+100+65 PS:- | " .
- ($::testing ? $::prefix : "chroot $::prefix/ ") .
- "$lpr -s $spooler -P $queue");
- } else {
- # Use CUPS's internal image converter with CUPS, tell it
- # to let the image occupy 90% of the page size (so nothing
- # gets cut off by unprintable borders)
- run_program::rooted($::prefix, $lpr, "-s", $spooler,
- "-P", $queue, "-o", "scaling=90", $page);
- }
- } else {
- run_program::rooted($::prefix, $lpr, "-s", $spooler,
- "-P", $queue, $page);
- }
- }
- sleep 5; #- allow lpr to send pages.
- # Check whether the job is queued
- open(my $F, ($::testing ? $::prefix : "chroot $::prefix/ ") . "$lpq -s $spooler -P $queue |");
- my @lpq_output =
- grep { !/^no entries/ && !(/^Rank\s+Owner/ .. /^\s*$/) } <$F>;
- close $F;
- @lpq_output;
-}
-
-sub help_output {
- my ($printer, $spooler) = @_;
- my $queue = $printer->{QUEUE};
-
- open(my $F, ($::testing ? $::prefix : "chroot $::prefix/ ") . sprintf($spoolers{$spooler}{help}, $queue));
- my $helptext = join("", <$F>);
- close $F;
- $helptext ||= "Option list not available!\n";
- return $helptext;
-}
-
-sub print_optionlist {
- my ($printer) = @_;
- my $queue = $printer->{QUEUE};
- my $lpr = "/usr/bin/foomatic-printjob";
-
- # Print the option list pages
- if ($printer->{configured}{$queue}{queuedata}{foomatic}) {
- run_program::rooted($::prefix, $lpr, "-s", $printer->{SPOOLER},
- "-P", $queue, "-o", "docs",
- "/etc/bashrc");
- } elsif ($printer->{configured}{$queue}{queuedata}{ppd}) {
- system(($::testing ? $::prefix : "chroot $::prefix/ ") .
- "/usr/bin/lphelp $queue | " .
- ($::testing ? $::prefix : "chroot $::prefix/ ") .
- "$lpr -s $printer->{SPOOLER} -P $queue");
- }
-}
-
-# ---------------------------------------------------------------
-#
-# Spooler config stuff
-#
-# ---------------------------------------------------------------
-
-sub get_copiable_queues {
- my ($oldspooler, $newspooler) = @_;
-
- # No local queues available in daemon-less CUPS mode
- return () if ($oldspooler eq "rcups") or ($newspooler eq "rcups");
-
- my @queuelist; #- here we will list all Foomatic-generated queues
- # Get queue list with foomatic-configure
- open(my $QUEUEOUTPUT, ($::testing ? $::prefix : "chroot $::prefix/ ") .
- "foomatic-configure -Q -q -s $oldspooler |") or
- die "Could not run foomatic-configure";
-
- my $entry = {};
- my $inentry = 0;
- local $_;
- while (<$QUEUEOUTPUT>) {
- chomp;
- if ($inentry) {
- # We are inside a queue entry
- if (m!^\s*</queue>\s*$!) {
- # entry completed
- $inentry = 0;
- if ($entry->{foomatic} && $entry->{spooler} eq $oldspooler) {
- # Is the connection type supported by the new
- # spooler?
- if ($newspooler eq "cups" && $entry->{connect} =~ /^(file|hp|ptal|lpd|socket|smb|ipp):/ ||
- $newspooler =~ /^(lpd|lprng)$/ && $entry->{connect} =~ /^(file|ptal|lpd|socket|smb|ncp|postpipe):/ ||
- $newspooler eq "pdq" && $entry->{connect} =~ /^(file|ptal|lpd|socket):/) {
- push(@queuelist, $entry->{name});
- }
- }
- $entry = {};
- } elsif (m!^\s*<name>(.+)</name>\s*$!) {
- # queue name
- $entry->{name} = $1;
- } elsif (m!^\s*<connect>(.+)</connect>\s*$!) {
- # connection type (URI)
- $entry->{connect} = $1;
- }
- } else {
- if (m!^\s*<queue\s+foomatic\s*=\s*"?(\d+)"?\s*spooler\s*=\s*"?(\w+)"?\s*>\s*$!) {
- # new entry
- $inentry = 1;
- $entry->{foomatic} = $1;
- $entry->{spooler} = $2;
- }
- }
- }
- close $QUEUEOUTPUT;
-
- return @queuelist;
-}
-
-sub copy_foomatic_queue {
- my ($printer, $oldqueue, $oldspooler, $newqueue) = @_;
- run_program::rooted($::prefix, "foomatic-configure", "-q",
- "-s", $printer->{SPOOLER},
- "-n", $newqueue,
- "-C", $oldspooler, $oldqueue);
- # In case of CUPS set some more useful defaults for text and image printing
- if ($printer->{SPOOLER} eq "cups") {
- set_cups_special_options($printer, $newqueue);
- }
-}
-
-# ------------------------------------------------------------------
-#
-# Stuff for non-interactive printer configuration
-#
-# ------------------------------------------------------------------
-
-# Check whether a given URI (for example of an existing queue matches
-# one of the auto-detected printers
-
-sub autodetectionentry_for_uri {
- my ($uri, @autodetected) = @_;
-
- if ($uri =~ m!^usb://([^/]+)/([^\?]+)(|\?serial=(\S+))$!) {
- # USB device with URI referring to printer model
- my $make = $1;
- my $model = $2;
- my $serial = $4;
- if ($make && $model) {
- $make =~ s/\%20/ /g;
- $model =~ s/\%20/ /g;
- $serial =~ s/\%20/ /g;
- $make =~ s/Hewlett[-\s_]Packard/HP/;
- $make =~ s/HEWLETT[-\s_]PACKARD/HP/;
- my $smake = handle_configs::searchstr($make);
- my $smodel = handle_configs::searchstr($model);
- foreach my $p (@autodetected) {
- next if $p->{port} !~ /usb/i;
- next if ((!$p->{val}{MANUFACTURER} ||
- $p->{val}{MANUFACTURER} ne $make) &&
- (!$p->{val}{DESCRIPTION} ||
- $p->{val}{DESCRIPTION} !~ /^\s*$smake\s+/));
- next if ((!$p->{val}{MODEL} ||
- $p->{val}{MODEL} ne $model) &&
- (!$p->{val}{DESCRIPTION} ||
- $p->{val}{DESCRIPTION} !~ /\s+$smodel\s*$/));
- next if ($serial &&
- (!$p->{val}{SERIALNUMBER} ||
- $p->{val}{SERIALNUMBER} ne $serial));
- return $p;
- }
- }
- } elsif ($uri =~ m!^hp:/(usb|par|net)/!) {
- # HP printer (controlled by HPLIP)
- my $hplipdevice = $uri;
- $hplipdevice =~ m!^hp:/(usb|par|net)/(\S+?)(\?(serial|device)=(\S+)|)$!;
- my $bus = $1;
- my $model = $2;
- my $serial = undef;
- my $device = undef;
- if ($4 eq 'serial') {
- $serial = $5;
- } elsif ($4 eq 'device') {
- $device = $5;
- }
- $model =~ s/_/ /g;
- foreach my $p (@autodetected) {
- next if (!$p->{port}) ||
- (($p->{port} =~ m!/usb!) && ($bus ne "usb")) ||
- (($p->{port} =~ m!/dev/(lp|par.*|printer.*)\d+!) &&
- ($bus ne "par"));
- next if !$p->{val}{MODEL};
- if (uc($p->{val}{MODEL}) ne uc($model)) {
- my $entry = hplip_device_entry($p->{port}, @autodetected);
- next if !$entry;
- my $m = $entry->{model};
- $m =~ s/_/ /g;
- next if uc($m) ne uc($model);
- }
- next if ($serial && !$p->{val}{SERIALNUMBER}) ||
- (!$serial && $p->{val}{SERIALNUMBER}) ||
- (uc($serial) ne uc($p->{val}{SERIALNUMBER}));
- if ($device) {
- if ($bus eq "par") {
- $device =~ m!/dev/(lp|parport|printer/)(\d+)!;
- my $parporthplip = $1;
- $p->{port} =~ m!/dev/(lp|parport|printer/)(\d+)!;
- my $parportauto = $1;
- next if $parporthplip != $parportauto;
- } else {
- next if $device ne $p->{port};
- }
- }
- return $p;
- }
- } elsif ($uri =~ m!^ptal://?mlc:!) {
- # HP multi-function device (controlled by HPOJ)
- my $ptaldevice = $uri;
- $ptaldevice =~ s!^ptal://?mlc:!!;
- if ($ptaldevice =~ /^par:(\d+)$/) {
- my $device = "/dev/lp$1";
- foreach my $p (@autodetected) {
- next if !$p->{port} ||
- $p->{port} ne $device;
- return $p;
- }
- } else {
- my $model = $2 if $ptaldevice =~ /^(usb|par):(.*)$/;
- $model =~ s/_/ /g;
- foreach my $p (@autodetected) {
- next if !$p->{val}{MODEL} ||
- $p->{val}{MODEL} ne $model;
- return $p;
- }
- }
- } elsif ($uri =~ m!^(socket|smb|file|parallel|usb|serial):/!) {
- # Local print-only device, Ethernet-(TCP/Socket)-connected printer,
- # or printer on Windows server
- my $device = $uri;
- $device =~ s/^(file|parallel|usb|serial)://;
- foreach my $p (@autodetected) {
- next if !$p->{port} ||
- $p->{port} ne $device;
- return $p;
- }
- }
- return undef;
-}
-
-# ------------------------------------------------------------------
-#
-# Configuration of HP printers and multi-function devices with HPLIP
-#
-# ------------------------------------------------------------------
-
-sub read_hplip_db {
-
- # Read the device database XML file which comes with the HPLIP
- # package
- open(my $F, "< $::prefix/usr/share/hplip/data/xml/models.xml") or
- warn "Could not read /usr/share/hplip/data/xml/models.xml\n";
-
- my $entry = {};
- my $inentry = 0;
- my $inrX = 0;
- my $incomment = 0;
- my %hplipdevices;
- local $_;
- while (<$F>) {
- chomp;
- if ($incomment) {
- # In a comment block, skip all except the end of the comment
- if (m!^(.*?)-->(.*)$!) {
- # End of comment, keep rest of line
- $_ = $2;
- $incomment = 0;
- } else {
- # Skip line
- $_ = '';
- }
- } else {
- while (m/^(.*?)<!--(.*?)-->(.*)$/) {
- # Remove one-line comments
- $_ = $1 . $3;
- }
- if (m/^(.*?)<!--(.*)$/) {
- # Start of comment, keep the beginning of the line
- $_ = $1;
- $incomment = 1;
- }
- }
- # Is there some non-comment part left in the line
- if (m!\S!) {
- if ($inentry) {
- # We are inside a device entry
- if ($inrX) {
- # We are in one of the the device's <rX> sections,
- # skip the section
- if (m!^\s*</r\d+>\s*$!) {
- # End of <rX> section
- $inrX = 0;
- }
- } else {
- if (m!^\s*<r\d+>\s*$!) {
- # Start of <rX> section
- $inrX = 1;
- } elsif (m!^\s*</model>\s*$!) {
- # End of device entry
- $inentry = 0;
- my $devidmodel;
- if ($entry->{$devidmodel}) {
- $devidmodel = $entry->{devidmodel};
- $devidmodel =~ s/ /_/g;
- } else {
- $devidmodel = $entry->{model};
- }
- $hplipdevices{$devidmodel} = $entry;
- $entry = {};
- } elsif (m!^\s*<id>\s*([^<>]+)\s*</id>\s*$!) {
- # Full ID string
- my $idstr = $1;
- $idstr =~ m!(MFG|MANUFACTURER):([^;]+);!i
- and $entry->{devidmake} = $2;
- $idstr =~ m!(MDL|MODEL):([^;]+);!i
- and $entry->{devidmodel} = $2;
- $idstr =~ m!(DES|DESCRIPTION):([^;]+);!i
- and $entry->{deviddesc} = $2;
- $idstr =~ m!(CMD|COMMAND\s*SET):([^;]+);!i
- and $entry->{devidcmdset} = $2;
- } elsif (m!^\s*<io support="(\d+)".*/>\s*$!) {
- # Input/Output ports explicitly supported by HPLIP
- my $ports = $1;
- $entry->{bus}{par} = 1 if ($ports & 1);
- $entry->{bus}{usb} = 1 if ($ports & 2);
- $entry->{bus}{net} = 1 if ($ports & 4);
- } elsif (m!^\s*<tech type="(\d+)"/>\s*$!) {
- # Printing technology
- $entry->{tech} = $1;
- } elsif (m!^\s*<align type="(\d+)"/>\s*$!) {
- # Head alignment type
- $entry->{align} = $1;
- } elsif (m!^\s*<clean type="(\d+)"/>\s*$!) {
- # Head cleaning type
- $entry->{clean} = $1;
- } elsif (m!^\s*<color-cal type="(\d+)"/>\s*$!) {
- # Color calibration type
- $entry->{colorcal} = $1;
- } elsif (m!^\s*<status type="(\d+)"/>\s*$!) {
- # Status request type
- $entry->{status} = $1;
- } elsif (m!^\s*<scan type="(\d+)"/>\s*$!) {
- # Scanner access type
- $entry->{scan} = $1;
- } elsif (m!^\s*<fax type="(\d+)"/>\s*$!) {
- # Fax access type
- $entry->{fax} = $1;
- } elsif (m!^\s*<pcard type="(\d+)"/>\s*$!) {
- # Memory card access type
- $entry->{card} = $1;
- } elsif (m!^\s*<copy type="(\d+)"/>\s*$!) {
- # Copier access type
- $entry->{copy} = $1;
- }
- }
- } else {
- # We are not in a printer entry
- if (m!^\s*<\s*model\s+name=\"(\S+)\"\a*>\s*$!) {
- $inentry = 1;
- # HPLIP model ID
- $entry->{model} = $1;
- }
- }
- }
- }
- close $F;
- return \%hplipdevices;
-}
-
-sub hplip_simple_model {
- my ($model) = @_;
- my $simplemodel = $model;
- $simplemodel =~ s/[^A-Za-z0-9]//g;
- $simplemodel =~ s/HewlettPackard/HP/gi;
- $simplemodel =~ s/HP//gi;
- $simplemodel =~ s/(DeskJet\d+C?)([a-z]*?)/$1/gi;
- $simplemodel =~ s/((LaserJet|OfficeJet|PhotoSmart|PSC)\d+)([a-z]*?)/$1/gi;
- $simplemodel =~ s/DeskJet/DJ/gi;
- $simplemodel =~ s/PhotoSmartP/PhotoSmart/gi;
- $simplemodel =~ s/LaserJet/LJ/gi;
- $simplemodel =~ s/OfficeJet/OJ/gi;
- $simplemodel =~ s/Series//gi;
- $simplemodel = uc($simplemodel);
- return $simplemodel;
-}
-
-sub hplip_device_entry {
- my ($device, @autodetected) = @_;
-
- # Currently, only local or TCP/Socket device work
- return undef if ($device !~ /usb/i) &&
- ($device !~ m!/dev/(lp|par.*|printer.*)\d+!) &&
- ($device !~ m!^socket://!i);
-
- if (!$hplipdevicesdb) {
- # Read the HPLIP device database if not done already
- $hplipdevicesdb = read_hplip_db();
- }
-
- my $entry;
- foreach my $a (@autodetected) {
- $device eq $a->{port} or next;
- # Only HP devices supported
- return undef if $a->{val}{MANUFACTURER} !~ /^\s*HP\s*$/i;
- my $modelstr = $a->{val}{MODEL};
- $modelstr =~ s/ /_/g;
- if ($entry = $hplipdevicesdb->{$modelstr}) {
- # Exact match
- return $entry;
- }
- my $hpmodelstr = "HP_" . $modelstr;
- if ($entry = $hplipdevicesdb->{$hpmodelstr}) {
- # Exact match
- return $entry;
- }
- my $hpmodelstr = "hp_" . $modelstr;
- if ($entry = $hplipdevicesdb->{$hpmodelstr}) {
- # Exact match
- return $entry;
- }
- # More 'fuzzy' matching
- my $simplemodel = hplip_simple_model($modelstr);
- foreach my $key (keys %{$hplipdevicesdb}) {
- my $simplekey = hplip_simple_model($key);
- return $hplipdevicesdb->{$key} if $simplemodel eq $simplekey;
- }
- foreach my $key (keys %{$hplipdevicesdb}) {
- my $simplekey = hplip_simple_model($key);
- $simplekey =~ s/(\d\d)00(C?)$/$1\\d\\d$2/;
- $simplekey =~ s/(\d\d\d)0(C?)$/$1\\d$2/;
- $simplekey =~ s/(\d\d)0(\dC?)$/$1\\d$2/;
- return $hplipdevicesdb->{$key} if
- $simplemodel =~ m/^$simplekey$/i;
- }
- # Device not supported
- return undef;
- }
- # $device not in @autodetected
- return undef;
-}
-
-sub hplip_device_entry_from_uri {
- my ($deviceuri) = @_;
-
- return undef if $deviceuri !~ m!^hp:/!;
-
- if (!$hplipdevicesdb) {
- # Read the HPLIP device database if not done already
- $hplipdevicesdb = read_hplip_db();
- }
-
- $deviceuri =~ m!^hp:/(usb|par|net)/(\S+?)(\?\S+|)$!;
- my $model = $2;
- return undef if !$model;
-
- my $entry;
- if ($entry = $hplipdevicesdb->{$model}) {
- return $entry;
- }
- return undef;
-}
-
-sub start_hplip {
- my ($device, $hplipentry, @autodetected) = @_;
-
- # Determine connection type
- my $bus;
- if ($device =~ /usb/) {
- $bus = "usb";
- } elsif ($device =~ m!/dev/(lp|par.*|printer.*)\d+!) {
- $bus = "par";
- } elsif ($device =~ m!^socket://!) {
- $bus = "net";
- } else {
- return undef;
- }
-
- # Start HPLIP daemons
- printer::services::start_not_running_service("hplip");
-
- # Determine HPLIP device URI for the CUPS queue
- if ($bus eq "net") {
- $device =~ m!^socket://([^:]+)(|:\d+)$!;
- my $host = $1;
- my $ip;
- if ($host !~ m!^\d+\.\d+\.\d+\.\d+$!) {
- my $addr = gethostbyname("$host");
- my ($a,$b,$c,$d) = unpack('C4',$addr);
- $ip = sprintf("%d.%d.%d.%d", $a, $b, $c, $d);
- } else {
- $ip = $host;
- }
- open(my $F, ($::testing ? $::prefix : "chroot $::prefix/ ") .
- "/bin/sh -c \"export LC_ALL=C; /usr/bin/hp-makeuri $ip\" |") or
- die "Could not run \"/usr/bin/hp-makeuri $ip\"!";
- while (my $line = <$F>) {
- if ($line =~ m!(hp:/net/\S+)!) {
- my $uri = $1;
- close $F;
- return $uri;
- }
- }
- close $F;
- } else {
- foreach my $a (@autodetected) {
- $device eq $a->{port} or next;
- open(my $F, ($::testing ? $::prefix : "chroot $::prefix/ ") .
- "/bin/sh -c \"export LC_ALL=C; /usr/$lib/cups/backend/hp\" |") or
- die "Could not run \"/usr/$lib/cups/backend/hp\"!";
- while (my $line = <$F>) {
- if (($line =~ m!^direct\s+(hp:/$bus/(\S+?)\?serial=(\S+))\s+!) ||
- ($line =~ m!^direct\s+(hp:/$bus/(\S+?)\?device=()(\S+))\s+!) ||
- ($line =~ m!^direct\s+(hp:/$bus/(\S+))\s+!)) {
- my $uri = $1;
- my $modelstr = $2;
- my $serial = $3;
- my $devicestr = $4;
- $devicestr =~ m!/dev/(lp|parport|printer/)(\d+)!;
- my $parporthplip = $1;
- $device =~ m!/dev/(lp|parport|printer/)(\d+)!;
- my $parportdevice = $1;
- if ((uc($modelstr) eq uc($hplipentry->{model})) &&
- (!$serial ||
- (uc($serial) eq uc($a->{val}{SERIALNUMBER}))) &&
- (!$devicestr ||
- ($devicestr eq $device) ||
- (($parporthplip ne "") &&
- ($parportdevice ne "") &&
- ($parporthplip == $parportdevice)))) {
- close $F;
- return $uri;
- }
- }
- }
- close $F;
- last;
- }
- }
- # HPLIP URI not found
- return undef;
-}
-
-sub start_hplip_manual {
-
- # Start HPLIP daemons
- printer::services::start_not_running_service("hplip");
-
- # Return all possible device URIs
- open(my $F, ($::testing ? $::prefix : "chroot $::prefix/ ") .
- "/bin/sh -c \"export LC_ALL=C; /usr/$lib/cups/backend/hp\" |") or
- die "Could not run \"/usr/$lib/cups/backend/hp\"!";
- my @uris;
- while (<$F>) {
- m!^direct\s+(hp:\S+)\s+!;
- push(@uris, $1);
- }
- return @uris;
-}
-
-sub remove_hpoj_config {
- my ($device, @autodetected) = @_;
-
- for my $d (@autodetected) {
- $device eq $d->{port} or next;
- my $bus;
- if ($device =~ /usb/) {
- $bus = "usb";
- } elsif ($device =~ m!/dev/(lp|par.*|printer.*)\d+!) {
- $bus = "par";
- } elsif ($device =~ /socket/) {
- $bus = "hpjd";
- }
- my $path = "$::prefix/etc/ptal";
- opendir PTALDIR, "$path";
- while (my $file = readdir(PTALDIR)) {
- next if $file !~ /^(mlc:|)$bus:/;
- $file = "$path/$file";
- if ($bus eq "hpjd") {
- $device =~ m!^socket://(\S+?)(:\d+|)$!;
- my $host = $1;
- if ($file =~ /$host/) {
- closedir PTALDIR;
- unlink($file) or return $file;
- printer::services::restart("hpoj");
- return undef;
- }
- } else {
- if ((grep { /$d->{val}{MODEL}/ } chomp_(cat_($file))) &&
- ((!$d->{val}{SERIALNUMBER}) ||
- (grep { /$d->{val}{SERIALNUMBER}/ }
- chomp_(cat_($file))))) {
- closedir PTALDIR;
- unlink($file) or return $file;
- printer::services::restart("hpoj");
- return undef;
- }
- }
- }
- last;
- }
- closedir PTALDIR;
- return undef;
-}
-
-sub devicefound {
- my ($usbid, $model, $serial) = @_;
- # Compare the output of "lsusb -vv" with the elements of the device
- # ID string
- if ($serial && $usbid->{SERIALNUMBER} eq $serial) {
- # Match of serial number has absolute priority
- return 1;
- } elsif ($model && $usbid->{MODEL} eq $model) {
- # Try to match the model name otherwise
- return 1;
- }
- return 0;
-}
-
-sub usbdevice {
- my ($usbid) = @_;
- # Run "lsusb -vv" and search the given device to get its USB bus and
- # device numbers
- open(my $F, ($::testing ? "" : "chroot $::prefix/ ") .
- '/bin/sh -c "export LC_ALL=C; lsusb -vv 2> /dev/null" |')
- or return undef;
- my ($bus, $device, $model, $serial) = ("", "", "", "");
- my $found = 0;
- while (my $line = <$F>) {
- chomp $line;
- if ($line =~ m/^\s*Bus\s+(\d+)\s+Device\s+(\d+)\s*:/i) {
- # head line of a new device
- my ($newbus, $newdevice) = ($1, $2);
- last if (($model || $serial) &&
- ($found = devicefound($usbid, $model, $serial)));
- ($bus, $device) = ($newbus, $newdevice);
- } elsif ($line =~ m/^\s*iProduct\s+\d+\s+(.+)$/i) {
- # model line
- next if $device eq "";
- $model = $1;
- } elsif ($line =~ m/^\s*iSerial\s+\d+\s+(.+)$/i) {
- # model line
- next if $device eq "";
- $serial = $1;
- }
- }
- close $F;
- # Check last entry
- $found = devicefound($usbid, $model, $serial);
-
- return 0 if !$found;
- return sprintf("%%%03d%%%03d", $bus, $device);
-}
-
-sub config_sane {
- my ($backend) = @_;
-
- # Add HPOJ/HPLIP backend to /etc/sane.d/dll.conf if needed (no
- # individual config file /etc/sane.d/hplip.conf or
- # /etc/sane.d/hpoj.conf necessary, the HPLIP and HPOJ drivers find
- # the scanner automatically)
-
- return if (! -f "$::prefix/etc/sane.d/dll.conf");
- return if member($backend,
- chomp_(cat_("$::prefix/etc/sane.d/dll.conf")));
- eval { append_to_file("$::prefix/etc/sane.d/dll.conf",
- "$backend\n") } or
- die "can not write SANE config in /etc/sane.d/dll.conf: $!";
-}
-
-sub setcupslink {
- my ($printer) = @_;
- return 1 if !$::isInstall || $printer->{SPOOLER} ne "cups" || -d "/etc/cups/ppd";
- system("ln -sf $::prefix/etc/cups /etc/cups");
- return 1;
-}
-
-
-1;
diff --git a/perl-install/printer/printerdrake.pm b/perl-install/printer/printerdrake.pm
deleted file mode 100644
index 70fa367d3..000000000
--- a/perl-install/printer/printerdrake.pm
+++ /dev/null
@@ -1,5548 +0,0 @@
-package printer::printerdrake;
-# $Id$
-
-use strict;
-
-use common;
-use modules;
-use network::network;
-use log;
-use interactive;
-use printer::main;
-use printer::services;
-use printer::detect;
-use printer::default;
-use printer::data;
-
-# Overtake translation for "(recommended)" from printer/main.pm
-my $recstr = $printer::main::recstr;
-my $precstr = $printer::main::precstr;
-my $sprecstr = $printer::main::sprecstr;
-
-my $shortdistroname = "Mandriva Linux";
-
-my $hp1000fwtext = N("The HP LaserJet 1000 needs its firmware to be uploaded after being turned on. Download the Windows driver package from the HP web site (the firmware on the printer's CD does not work) and extract the firmware file from it by decompressing the self-extracting '.exe' file with the 'unzip' utility and searching for the 'sihp1000.img' file. Copy this file into the '/etc/printer' directory. There it will be found by the automatic uploader script and uploaded whenever the printer is connected and turned on.
-");
-
-1;
-
-sub config_cups {
- my ($printer, $security, $in, $upNetwork) = @_;
-
- local $::isWizard = 0;
- local $::isEmbedded = 0;
- # Check whether the network functionality is configured and
- # running
- if (!check_network($printer, $in, $upNetwork, 0)) { return 0 }
-
- #$in->set_help('configureRemoteCUPSServer') if $::isInstall;
- #- hack to handle cups remote server printing,
- #- first read /etc/cups/cupsd.conf for variable BrowsePoll address:port
- # Return value: 0 when nothing was changed ("Apply" never pressed), 1
- # when "Apply" was at least pressed once.
- my $retvalue = 0;
- # Read CUPS config file
- @{$printer->{cupsconfig}{cupsd_conf}} =
- printer::main::read_cupsd_conf();
- printer::main::read_cups_config($printer);
- # Read client.conf file
- my ($daemonless_cups, $remote_cups_server) =
- printer::main::read_client_conf();
- # Read state of japanese text printing mode
- my $jap_textmode = printer::main::get_jap_textmode();
- # Read state for auto-correction of cupsd.conf
- $printer->{cupsconfig}{autocorrection} =
- printer::main::get_cups_autoconf();
- my $oldautocorr = $printer->{cupsconfig}{autocorrection};
- # Human-readable strings for hosts onto which the local printers
- # are shared
- my $maindone;
- while (!$maindone) {
- my $sharehosts = printer::main::makesharehostlist($printer);
- my $browsepoll = printer::main::makebrowsepolllist($printer);
- my $buttonclicked;
- #- Show dialog
- if ($in->ask_from_(
- {
- title => N("CUPS printer configuration"),
- messages => N("Here you can choose whether the printers connected to this machine should be accessible by remote machines and by which remote machines.") .
- N("You can also decide here whether printers on remote machines should be automatically made available on this machine."),
- },
- [
- { val => N("Remote CUPS server and no local CUPS daemon") .
- ": " .
- ($daemonless_cups ?
- N("On") . "; " . N("Server") . ": " .
- $remote_cups_server :
- N("Off")),
- help => N("In this mode the local CUPS daemon will be stopped and all printing requests go directly to the server specified below. Note that it is not possible to define local print queues then and if the specified server is down it cannot be printed at all from this machine."),
- type => 'button',
- clicked_may_quit => sub {
- $buttonclicked = "daemonlesscups";
- 1;
- } },
- { text => N("The printers on this machine are available to other computers"), type => 'bool',
- val => \$printer->{cupsconfig}{localprintersshared},
- disabled => sub {
- $daemonless_cups;
- } },
- { text => N("Automatically find available printers on remote machines"), type => 'bool',
- val => \$printer->{cupsconfig}{remotebroadcastsaccepted},
- disabled => sub {
- $daemonless_cups;
- } },
- { val => N("Printer sharing on hosts/networks: ") .
- ($printer->{cupsconfig}{customsharingsetup} ?
- N("Custom configuration") :
- ($#{$sharehosts->{list}} >= 0 ?
- ($#{$sharehosts->{list}} > 1 ?
- join(", ", @{$sharehosts->{list}}[0,1]) . " ..." :
- join(", ", @{$sharehosts->{list}})) :
- N("No remote machines"))),
- type => 'button',
- clicked_may_quit => sub {
- $buttonclicked = "sharehosts";
- 1;
- },
- disabled => sub {
- $daemonless_cups ||
- !$printer->{cupsconfig}{localprintersshared} &&
- !$printer->{cupsconfig}{remotebroadcastsaccepted};
- } },
- { val => N("Additional CUPS servers: ") .
- ($#{$browsepoll->{list}} >= 0 ?
- ($#{$browsepoll->{list}} > 1 ?
- join(", ", @{$browsepoll->{list}}[0,1]) . " ..." :
- join(", ", @{$browsepoll->{list}})) :
- N("None")),
- type => 'button',
- help => N("To get access to printers on remote CUPS servers in your local network you only need to turn on the \"Automatically find available printers on remote machines\" option; the CUPS servers inform your machine automatically about their printers. All printers currently known to your machine are listed in the \"Remote printers\" section in the main window of Printerdrake. If your CUPS server(s) is/are not in your local network, you have to enter the IP address(es) and optionally the port number(s) here to get the printer information from the server(s)."),
- clicked_may_quit => sub {
- $buttonclicked = "browsepoll";
- 1;
- },
- disabled => sub {
- $daemonless_cups;
- } },
- { text => N("Japanese text printing mode"),
- help => N("Turning on this allows to print plain text files in Japanese language. Only use this function if you really want to print text in Japanese, if it is activated you cannot print accentuated characters in latin fonts any more and you will not be able to adjust the margins, the character size, etc. This setting only affects printers defined on this machine. If you want to print Japanese text on a printer set up on a remote machine, you have to activate this function on that remote machine."),
- type => 'bool',
- val => \$jap_textmode,
- disabled => sub {
- $daemonless_cups;
- } },
- if_($printer->{expert},
- { text => N("Automatic correction of CUPS configuration"),
- type => 'bool',
- help => N("When this option is turned on, on every startup of CUPS it is automatically made sure that
-
-- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS
-
-- if /etc/cups/cupsd.conf is missing, it will be created
-
-- when printer information is broadcasted, it does not contain \"localhost\" as the server name.
-
-If some of these measures lead to problems for you, turn this option off, but then you have to take care of these points."),
- val => \$printer->{cupsconfig}{autocorrection},
- disabled => sub {
- $daemonless_cups;
- } }),
- ]
- )
- ) {
- if ($buttonclicked eq "sharehosts") {
- # Show dialog to add hosts to share printers to
- my $subdone = 0;
- my $choice;
- while (!$subdone) {
- # Entry should be edited when double-clicked
- $buttonclicked = "edit";
- $in->ask_from_(
- { title => N("Sharing of local printers"),
- messages => N("These are the machines and networks on which the locally connected printer(s) should be available:"),
- ok => "",
- cancel => "",
- },
- # List the hosts
- [ { val => \$choice, format => \&translate,
- sort => 0, separator => "####",
- tree_expanded => 1,
- quit_if_double_click => 1,
- allow_empty_list => 1,
- list => $sharehosts->{list} },
- { val => N("Add host/network"),
- type => 'button',
- clicked_may_quit => sub {
- $buttonclicked = "add";
- 1;
- } },
- { val => N("Edit selected host/network"),
- type => 'button',
- clicked_may_quit => sub {
- $buttonclicked = "edit";
- 1;
- },
- disabled => sub {
- return $#{$sharehosts->{list}} < 0;
- } },
- { val => N("Remove selected host/network"),
- type => 'button',
- clicked_may_quit => sub {
- $buttonclicked = "remove";
- 1;
- },
- disabled => sub {
- return $#{$sharehosts->{list}} < 0;
- } },
- { val => N("Done"),
- type => 'button',
- clicked_may_quit => sub {
- $buttonclicked = "";
- $subdone = 1;
- 1;
- } },
- ]
- );
- if ($buttonclicked eq "add" ||
- $buttonclicked eq "edit") {
- my ($hostchoice, $ip);
- if ($buttonclicked eq "add") {
- # Use first entry as default for a new entry
- $hostchoice = N("Local network(s)");
- } else {
- if ($sharehosts->{invhash}{$choice} =~ /^\@/) {
- # Entry to edit is not an IP address
- $hostchoice = $choice;
- } else {
- # Entry is an IP address
- $hostchoice =
- N("IP address of host/network:");
- $ip = $sharehosts->{invhash}{$choice};
- }
- }
- my @menu = N("Local network(s)");
- my @interfaces =
- printer::detect::getNetworkInterfaces();
- foreach my $interface (@interfaces) {
- push @menu, N("Interface \"%s\"", $interface);
- }
- push @menu, N("IP address of host/network:");
- # Show the dialog
- my $address;
- my $oldaddress =
- ($buttonclicked eq "edit" ?
- $sharehosts->{invhash}{$choice} : "");
- if ($in->ask_from_(
- { title => N("Sharing of local printers"),
- messages => N("Choose the network or host on which the local printers should be made available:"),
- callbacks => {
- complete => sub {
- if ($hostchoice eq
- N("IP address of host/network:") &&
- $ip =~ /^\s*$/) {
-
- $in->ask_warn(N("Error"), N("Host/network IP address missing."));
- return 1, 1;
- }
- if ($hostchoice eq
- N("IP address of host/network:") &&
- !printer::main::is_network_ip($ip)) {
-
- $in->ask_warn(N("Error"),
-N("The entered host/network IP is not correct.\n") .
-N("Examples for correct IPs:\n") .
- "192.168.100.194\n" .
- "10.0.0.*\n" .
- "10.1.*\n" .
- "192.168.100.0/24\n" .
- "192.168.100.0/255.255.255.0\n"
-);
- return 1, 1;
- }
- if ($hostchoice eq $menu[0]) {
- $address = '@LOCAL';
- } elsif ($hostchoice eq $menu[-1]) {
- $address = $ip;
- } else {
- ($address) =
- grep { $hostchoice =~ /$_/ }
- @interfaces;
- $address = "\@IF($address)";
- }
- # Check whether item is duplicate
- if ($address ne $oldaddress &&
- member($address,
- @{$printer->{cupsconfig}{clientnetworks}})) {
- $in->ask_warn(N("Error"),
- N("This host/network is already in the list, it cannot be added again.\n"));
- if ($hostchoice eq
- N("IP address of host/network:")) {
- return 1, 1;
- } else {
- return 1, 0;
- }
- }
- return 0;
- },
- },
- },
- # List the host types
- [ { val => \$hostchoice, format => \&translate,
- type => 'list',
- sort => 0,
- list => \@menu },
- { val => \$ip,
- disabled => sub {
- $hostchoice ne
- N("IP address of host/network:");
- } },
- ],
- )) {
- # OK was clicked, insert new item into the list
- if ($buttonclicked eq "add") {
- push(@{$printer->{cupsconfig}{clientnetworks}},
- $address);
- } else {
- @{$printer->{cupsconfig}{clientnetworks}} =
- map { ($_ eq
- $sharehosts->{invhash}{$choice} ?
- $address : $_) }
- @{$printer->{cupsconfig}{clientnetworks}};
- }
- # Refresh list of hosts
- $sharehosts =
- printer::main::makesharehostlist($printer);
- # We have modified the configuration now
- $printer->{cupsconfig}{customsharingsetup} = 0;
- # Position the list cursor on the new/modified
- # item
- $choice = $sharehosts->{hash}{$address};
- }
- } elsif ($buttonclicked eq "remove") {
- @{$printer->{cupsconfig}{clientnetworks}} =
- grep { $_ ne $sharehosts->{invhash}{$choice} }
- @{$printer->{cupsconfig}{clientnetworks}};
- # Refresh list of hosts
- $sharehosts =
- printer::main::makesharehostlist($printer);
- # We have modified the configuration now
- $printer->{cupsconfig}{customsharingsetup} = 0;
- }
- }
- # If we have no entry in the list, we do not
- # share the local printers, mark this
- if ($#{$printer->{cupsconfig}{clientnetworks}} < 0) {
- $printer->{cupsconfig}{localprintersshared} = 0;
- $printer->{cupsconfig}{remotebroadcastsaccepted} = 0;
- }
- } elsif ($buttonclicked eq "browsepoll") {
- # Show dialog to add hosts to "BrowsePoll" from
- my $subdone = 0;
- my $choice;
- while (!$subdone) {
- # Entry should be edited when double-clicked
- $buttonclicked = "edit";
- $in->ask_from_(
- { title => N("Accessing printers on remote CUPS servers"),
- messages => N("Add here the CUPS servers whose printers you want to use. You only need to do this if the servers do not broadcast their printer information into the local network."),
- ok => "",
- cancel => "",
- },
- # List the hosts
- [ { val => \$choice, format => \&translate,
- sort => 0, separator => "####",
- tree_expanded => 1,
- quit_if_double_click => 1,
- allow_empty_list => 1,
- list => $browsepoll->{list} },
- { val => N("Add server"),
- type => 'button',
- clicked_may_quit => sub {
- $buttonclicked = "add";
- 1;
- } },
- { val => N("Edit selected server"),
- type => 'button',
- clicked_may_quit => sub {
- $buttonclicked = "edit";
- 1;
- },
- disabled => sub {
- return $#{$browsepoll->{list}} < 0;
- } },
- { val => N("Remove selected server"),
- type => 'button',
- clicked_may_quit => sub {
- $buttonclicked = "remove";
- 1;
- },
- disabled => sub {
- return $#{$browsepoll->{list}} < 0;
- } },
- { val => N("Done"),
- type => 'button',
- clicked_may_quit => sub {
- $buttonclicked = "";
- $subdone = 1;
- 1;
- } },
- ]
- );
- if ($buttonclicked eq "add" ||
- $buttonclicked eq "edit") {
- my ($ip, $port);
- if ($buttonclicked eq "add") {
- # Use default port
- $port = '631';
- } else {
- if ($browsepoll->{invhash}{$choice} =~
- /^([^:]+):([^:]+)$/) {
- # Entry to edit has IP and port
- $ip = $1;
- $port = $2;
- } else {
- # Entry is only an IP, no port, so take
- # the default port 631
- $ip = $browsepoll->{invhash}{$choice};
- $port = '631';
- }
- }
- # Show the dialog
- my $address;
- my $oldaddress =
- ($buttonclicked eq "edit" ?
- $browsepoll->{invhash}{$choice} : "");
- if ($in->ask_from_(
- { title => N("Accessing printers on remote CUPS servers"),
- messages => N("Enter IP address and port of the host whose printers you want to use.") . ' ' .
- N("If no port is given, 631 will be taken as default."),
- callbacks => {
- complete => sub {
- if ($ip =~ /^\s*$/) {
- $in->ask_warn(N("Error"), N("Server IP missing!"));
- return 1, 0;
- }
- if ($ip !~
- /^\s*(\d+\.\d+\.\d+\.\d+)\s*$/) {
- $in->ask_warn(N("Error"),
-N("The entered IP is not correct.\n") .
-N("Examples for correct IPs:\n") .
- "192.168.100.194\n" .
- "10.0.0.2\n"
-);
- return 1, 0;
- } else {
- $ip = $1;
- }
- if ($port !~ /\S/) {
- $port = '631';
- } elsif ($port !~ /^\s*(\d+)\s*$/) {
- $in->ask_warn(N("Error"), N("The port number should be an integer!"));
- return 1, 1;
- } else {
- $port = $1;
- }
- $address = "$ip:$port";
- # Check whether item is duplicate
- if ($address ne $oldaddress &&
- member($address,
- @{$printer->{cupsconfig}{BrowsePoll}})) {
- $in->ask_warn(N("Error"),
- N("This server is already in the list, it cannot be added again.\n"));
- return 1, 0;
- }
- return 0;
- },
- },
- },
- # Ask for IP and port
- [ { val => \$ip,
- label => N("IP address") },
- { val => \$port,
- label => N("Port") },
- ],
- )) {
- # OK was clicked, insert new item into the list
- if ($buttonclicked eq "add") {
- push(@{$printer->{cupsconfig}{BrowsePoll}},
- $address);
- } else {
- @{$printer->{cupsconfig}{BrowsePoll}} =
- map { ($_ eq
- $browsepoll->{invhash}{$choice} ?
- $address : $_) }
- @{$printer->{cupsconfig}{BrowsePoll}};
- }
- # Refresh list of hosts
- $browsepoll =
- printer::main::makebrowsepolllist($printer);
- # Position the list cursor on the new/modified
- # item
- $choice = $browsepoll->{hash}{$address};
- }
- } elsif ($buttonclicked eq "remove") {
- @{$printer->{cupsconfig}{BrowsePoll}} =
- grep { $_ ne $browsepoll->{invhash}{$choice} }
- @{$printer->{cupsconfig}{BrowsePoll}};
- # Refresh list of hosts
- $browsepoll =
- printer::main::makebrowsepolllist($printer);
- }
- }
- } elsif ($buttonclicked eq "daemonlesscups") {
- my ($modechoice, $rserver);
- if ($daemonless_cups) {
- $modechoice = N("On, Name or IP of remote server:");
- $rserver = $remote_cups_server;
- } else {
- $modechoice = N("Off");
- }
- # Show the dialog
- #my $address;
- #my $oldaddress =
- # ($buttonclicked eq "edit" ?
- # $sharehosts->{invhash}{$choice} : "");
- if ($in->ask_from_
- ({ title => N("Remote CUPS server and no local CUPS daemon"),
- messages => N("In this mode the local CUPS daemon will be stopped and all printing requests go directly to the server specified below. Note that it is not possible to define local print queues then and if the specified server is down it cannot be printed at all from this machine."),
- callbacks => {
- complete => sub {
- if ($modechoice eq
- N("On, Name or IP of remote server:") &&
- $rserver =~ /^\s*$/) {
-
- $in->ask_warn(N("Error"), N("CUPS server name or IP address missing."));
- return 1, 1;
- }
- return 0;
- },
- },
- },
- # Show the widgets
- [ { val => \$modechoice, format => \&translate,
- type => 'list',
- sort => 0,
- list => [ N("Off"),
- N("On, Name or IP of remote server:") ] },
- { val => \$rserver,
- disabled => sub {
- $modechoice ne
- N("On, Name or IP of remote server:");
- } },
- ],
- )) {
- # OK was clicked, update the data
- $daemonless_cups =
- $modechoice eq N("On, Name or IP of remote server:");
- $remote_cups_server = $rserver;
- }
- } else {
- # We have clicked "OK"
- $retvalue = 1;
- $maindone = 1;
- # Write state for auto-correction of cupsd.conf
- if ($oldautocorr !=
- $printer->{cupsconfig}{autocorrection}) {
- printer::main::set_cups_autoconf(
- $printer->{cupsconfig}{autocorrection});
- }
- # Write state of japanese text printing mode
- printer::main::set_jap_textmode($jap_textmode);
- # Switch state of daemon-less CUPS mode and write
- # client.conf
- if ($daemonless_cups && $printer->{SPOOLER} ne "rcups" ||
- !$daemonless_cups && $printer->{SPOOLER} eq "rcups") {
- my $oldspooler = $printer->{SPOOLER};
- $printer->{SPOOLER} = ($daemonless_cups ?
- "rcups" : "cups");
- if (install_spooler($printer, $security, $in->do_pkgs, $in, $upNetwork, 1)) {
- printer::default::set_spooler($printer);
- printer::main::write_client_conf
- ($daemonless_cups, $remote_cups_server);
- $printer->{remote_cups_server} =
- $remote_cups_server;
- # Get the queues of this spooler
- my $w = $in->wait_message
- (N("Printerdrake"),
- N("Reading printer data..."));
- printer::main::read_configured_queues($printer);
- undef $w;
- # Re-read the printer database next time
- %printer::main::thedb = ();
- assure_default_printer_is_set($printer, $in);
- } else {
- $printer->{SPOOLER} = $oldspooler;
- }
- } elsif ($daemonless_cups) {
- printer::main::write_client_conf($daemonless_cups,
- $remote_cups_server);
- $printer->{remote_cups_server} = $remote_cups_server;
- } else {
- undef $printer->{remote_cups_server};
- }
- # Write cupsd.conf
- printer::main::write_cups_config($printer);
- my $w =
- $in->wait_message(N("Printerdrake"),
- N("Restarting CUPS..."));
- printer::main::write_cupsd_conf(
- @{$printer->{cupsconfig}{cupsd_conf}});
- #- restart cups after updating configuration.
- printer::main::SIGHUP_daemon($printer->{SPOOLER});
- undef $w;
- }
- } else {
- # Cancel clicked
- $maindone = 1;
- }
- }
- printer::main::clean_cups_config($printer);
- return $retvalue;
-}
-
-sub config_auto_admin {
- my ($printer, $in) = @_;
-
- local $::isWizard = 0;
- local $::isEmbedded = 0;
-
- # Read current configuration
- printer::main::get_auto_admin($printer);
-
- # Configuration dialog
- my $waitforgui =
- N("Allow pop-up windows, printer setup and package installation may be canceled");
- my $nogui =
- N("No pop-up windows, printer setup and package installation cannot be canceled");
- my $autoqueuesetupmode =
- ($printer->{autoqueuesetupgui} && -x "$::prefix/usr/X11R6/bin/X") ?
- $waitforgui : $nogui;
- if ($in->ask_from_
- ({
- title => N("Printer auto administration"),
- messages => N("Here you can configure printer administration tasks which should be done automatically."),
- },
- [
- { val => N("Do automatic configuration of new printers") },
- { text => N("when a USB printer is connected and turned on"),
- type => 'bool',
- val => \$printer->{autoqueuesetuponnewprinter} },
- { text => N("when Printerdrake is started"),
- type => 'bool',
- val => \$printer->{autoqueuesetuponstart} },
- if_(-x "$::prefix/usr/X11R6/bin/X",
- { val => N("Mode for automatic printer setup:") }),
- { val => \$autoqueuesetupmode,
- list => [ if_(-x "$::prefix/usr/X11R6/bin/X", $waitforgui),
- $nogui ],
- not_edit => 1, sort => 0,
- type => 'list' },
- { val => N("Re-enable disabled printers") },
- { text => N("when a USB printer is connected and turned on"),
- type => 'bool',
- val => \$printer->{enablequeuesonnewprinter} },
- { text => N("when the printing system is started"),
- type => 'bool',
- val => \$printer->{enablequeuesonspoolerstart} },
- ]
- )
- ) {
- # Auto queue setup mode
- $printer->{autoqueuesetupgui} =
- ($autoqueuesetupmode eq $waitforgui ? 1 : 0);
- # Save new settings
- printer::main::set_auto_admin($printer);
- return 1;
- } else {
- # Reset original settings
- printer::main::get_auto_admin($printer);
- return 0;
- }
-}
-
-sub config_backend_error_handling {
- my ($printer, $in) = @_;
-
- local $::isEmbedded = 0;
-
- # Get currentconfiguration
- my $dontdisable = $printer->{currentqueue}{dd};
- my $infiniteretries = ($printer->{currentqueue}{att} == 0);
- my $retries = ($printer->{currentqueue}{att} != 0 ?
- $printer->{currentqueue}{att} : 1);
- my $delay = $printer->{currentqueue}{delay};
- my $queue = $printer->{currentqueue}{queue};
-
- # Configuration dialog
- if ($in->ask_from_
- ({
- title =>
- N("Communication error handling for the printer \"%s\"",
- $queue),
- messages => N("Here you can configure how errors during the communication between your computer and the printer \"%s\" should be handled (for example if the printer is not turned on).", $queue),
- callbacks => {
- complete => sub {
- unless (($retries =~ /^[0-9]+$/) && ($retries > 0)) {
- $in->ask_warn(N("Error"), N("The number of retries should be an integer number of at least 1!"));
- return 1, 0;
- }
- unless ($delay =~ /^[0-9]+$/) {
- $in->ask_warn(N("Error"), N("The delay between retries should be a positive integer number!"));
- return 1, 1;
- }
- return 0;
- },
- changed => sub {
- return 0;
- }
- }
- },
- [
- { text => N("Do not disable the printer"),
- type => 'bool',
- val => \$dontdisable },
- { text => N("Retry infinitely often"),
- type => 'bool',
- val => \$infiniteretries },
- { val => N("Number of retries") },
- { val => \$retries,
- disabled => sub {
- $infiniteretries;
- } },
- { val => N("Delay between retries (in sec)") },
- { val => \$delay,
- disabled => sub {
- ($retries eq 1) && !$infiniteretries;
- } },
- ]
- )
- ) {
- # Apply new settings
- $dontdisable = "0" if $dontdisable eq "";
- $retries = "0" if $retries eq "";
- $delay = "0" if $delay eq "";
- $printer->{currentqueue}{dd} = $dontdisable;
- $printer->{currentqueue}{att} =
- ($infiniteretries ? "0" : $retries);
- $printer->{currentqueue}{delay} = $delay;
- return 1;
- } else {
- return 0;
- }
-}
-
-sub choose_printer_type {
- my ($printer, $in, $upNetwork) = @_;
- my $havelocalnetworks = check_network($printer, $in, $upNetwork, 1) &&
- printer::detect::getIPsInLocalNetworks() != ();
- $printer->{str_type} = $printer_type_inv{$printer->{TYPE}};
- my $autodetect = 0;
- $autodetect = 1 if $printer->{AUTODETECT};
- my $timeout = 4000;
- $timeout = $printer->{TIMEOUT} if defined($printer->{TIMEOUT});
- my @printertypes = printer::main::printer_type($printer);
- $in->ask_from_(
- { title => N("Select Printer Connection"),
- messages => N("How is the printer connected?") .
- if_($printer->{SPOOLER} eq "cups",
- N("
-Printers on remote CUPS servers do not need to be configured here; these printers will be automatically detected.")) .
- if_(!$havelocalnetworks,
- N("\nWARNING: No local network connection active, remote printers can neither be detected nor tested!")),
- },
- [
- { val => \$printer->{str_type},
- list => \@printertypes,
- not_edit => 1, sort => 0,
- type => 'list' },
- { text => N("Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"),
- type => 'bool', val => \$autodetect },
- { val => N("Modify timeout for network printer auto-detection") ,
- type => 'button',
- clicked_may_quit => sub {
- local $::isWizard = 0;
- $in->ask_from_
- ({ title => N("Select Printer Connection"),
- messages => N("Enter the timeout for network printer auto-detection (in msec) here. ") .
- "\n\n" .
- N("The longer you choose the timeout, the more reliable the detections of network printers will be, but the scan can take longer then, especially if there are many machines with local firewalls in the network. "),
- callbacks => {
- complete => sub {
- if ($timeout !~ /^[0-9]+$/) {
- $in->ask_warn(N("Error"), N("The timeout must be a positive integer number!"));
- return 1, 0;
- }
- return 0;
- }
- } },
- [ { val => \$timeout } ]);
- 0;
- } },
- ],
- ) or return 0;
- $printer->{TIMEOUT} = $timeout;
- $printer->{AUTODETECT} = $autodetect ? 1 : undef;
- $printer->{TYPE} = $printer_type{$printer->{str_type}};
- 1;
-}
-
-sub setup_printer_connection {
- my ($printer, $in, $upNetwork) = @_;
- # Choose the appropriate connection config dialog
- my $done = 1;
- for ($printer->{TYPE}) {
- /LOCAL/ and setup_local_autoscan($printer, $in, $upNetwork) and last;
- /LPD/ and setup_lpd( $printer, $in, $upNetwork) and last;
- /SOCKET/ and setup_socket( $printer, $in, $upNetwork) and last;
- /SMB/ and setup_smb( $printer, $in, $upNetwork) and last;
- /NCP/ and setup_ncp( $printer, $in, $upNetwork) and last;
- /URI/ and setup_uri( $printer, $in, $upNetwork) and last;
- /POSTPIPE/ and setup_postpipe( $printer, $in) and last;
- $done = 0; last;
- }
- return $done;
-}
-
-sub first_time_dialog {
- my ($printer, $in, $upNetwork) = @_;
- local $::isEmbedded = 0;
- return 1 if printer::default::get_spooler() || $::isInstall;
-
- my $w = $in->wait_message(N("Printerdrake"), N("Checking your system..."));
-
- # Auto-detect local printers
- my @autodetected = printer::detect::local_detect();
- $printer->{AUTODETECTEDLOCALPRINTERSFIRSTTIME} = \@autodetected if @autodetected;
- my $msg = do {
- if (@autodetected) {
- my @printerlist =
- map {
- my $entry = $_->{val}{DESCRIPTION};
- $entry = "$_->{val}{MANUFACTURER} $_->{val}{MODEL}"
- if (length($entry) < 5) or ($entry !~ /\S+\s+\S+/);
- if_($entry, " - $entry\n");
- } @autodetected;
- my $unknown_printers = @autodetected - @printerlist;
- if (@printerlist) {
- my $unknown_msg =
- $unknown_printers == 1 ?
- "\n" . N("and one unknown printer") :
- $unknown_printers > 1 ?
- "\n" . N("and %d unknown printers", $unknown_printers) :
- '';
- my $main_msg =
- @printerlist > 1 ?
- N_("The following printers\n\n%s%s\nare directly connected to your system") :
- $unknown_printers ?
- N_("The following printer\n\n%s%s\nare directly connected to your system") :
- N_("The following printer\n\n%s%s\nis directly connected to your system");
- sprintf($main_msg, join('', @printerlist), $unknown_msg);
- } else {
- $unknown_printers == 1 ?
- N("\nThere is one unknown printer directly connected to your system") :
- N("\nThere are %d unknown printers directly connected to your system", $unknown_printers);
- }
- } else {
- N("There are no printers found which are directly connected to your machine");
- }
- };
- $msg .= N(" (Make sure that all your printers are connected and turned on).\n");
-
- # Do we have a local network?
-
- # If networking is configured, start it, but do not ask the user to
- # configure networking.
- my $havelocalnetworks =
- check_network($printer, $in, $upNetwork, 1) &&
- printer::detect::getIPsInLocalNetworks() != ();
-
- # Finish building the dialog text
- my $question = ($havelocalnetworks ?
- (@autodetected ?
- N("Do you want to enable printing on the printers mentioned above or on printers in the local network?\n") :
- N("Do you want to enable printing on printers in the local network?\n")) :
- (@autodetected ?
- N("Do you want to enable printing on the printers mentioned above?\n") :
- N("Are you sure that you want to set up printing on this machine?\n")));
- my $warning = N("NOTE: Depending on the printer model and the printing system up to %d MB of additional software will be installed.", 80);
- my $dialogtext = "$msg\n$question\n$warning";
-
- # Close wait message
- undef $w;
-
- while (1) {
- # Show dialog
- my $donotsetupagain = 0;
- my $choice;
- if ($::autoqueue) {
- $choice = $in->ask_from_
- ({
- title => N("Printerdrake"),
- messages => $dialogtext,
- cancel => N("Quit"),
- ok => N("Yes") },
- [ { text => N("Do not setup printer automatically now, and never do it again"),
- type => 'bool',
- val => \$donotsetupagain } ] );
-
- # Turn off auto queue setup if the user wishes it
- turnoffautosetup($printer, $in) if $donotsetupagain;
-
- # Now, where the first-time dialog was displayed, all
- # subsequent wait messages should be displayed, also if we
- # are in GUI auto queue setup mode
- undef $::autoqueue;
-
- return 0 if !$choice;
- } else {
- my $do_it = N("Yes");
- my $quit = N("Quit");
- my @choices = ($do_it, $quit);
- $choice = $in->ask_from_list(N("Printerdrake"), $dialogtext,
- \@choices, $quit);
- return 0 if $choice ne $do_it;
- }
-
- if ($havelocalnetworks && !@autodetected) {
- return set_cups_daemon_mode($printer, $in);
- } else {
- $printer->{SPOOLER} = "cups";
- return 1;
- }
- }
-}
-
-sub configure_new_printers {
- my ($printer, $in, $_upNetwork) = @_;
-
- # This procedure auto-detects local printers and checks whether
- # there is already a queue for them. If there is no queue for an
- # auto-detected printer, a queue gets set up non-interactively.
-
- # Stop here if auto queue setup is not selected
- return 1 if !($printer->{autoqueuesetuponstart} || $::autoqueue);
-
- # Wait message
- my $w = $::noX || $::autoqueue ||
- $in->wait_message(N("Printerdrake"),
- N("Searching for new printers..."));
-
- # Auto-detect local printers
- my @autodetected = printer::detect::local_detect();
- $printer->{AUTODETECTEDPRINTERSNONINTERACTIVE} = \@autodetected if @autodetected;
-
- # No printer found? So no need of new queues.
- return 1 if !@autodetected;
-
- # Black-list all auto-detected printers for which there is already
- # a queue
- my @blacklist;
- foreach my $queue (keys %{$printer->{configured}}) {
- # Does the URI of this installed queue match one of the autodetected
- # printers?
- my $uri = $printer->{configured}{$queue}{queuedata}{connect};
- my $p = printer::main::autodetectionentry_for_uri(
- $uri, @autodetected);
- if (defined($p)) {
- # Blacklist the port
- push(@blacklist, $p->{port});
- }
- }
-
- my %printerselectedlist;
- if (!$::noX) {
- my @widgets;
- foreach my $p (@autodetected) {
- if (!member($p->{port}, @blacklist)) {
- my $entry = $p->{val}{DESCRIPTION};
- $entry = "$p->{val}{MANUFACTURER} $p->{val}{MODEL}"
- if (length($entry) < 5) or ($entry !~ /\S+\s+\S+/);
- $entry = N("Unknown model") if $entry !~ /\S/;
- $entry = N("%s on %s", $entry, $p->{port});
- $printerselectedlist{$p->{port}} = 1;
- push (@widgets,
- { text => $entry,
- type => 'bool',
- val => \$printerselectedlist{$p->{port}} });
- }
- }
- # Do not show empty dialog
- return 1 if $#widgets < 0;
- my $morethanone = ($#widgets > 0);
- # Add entry to turn off auto queue setup
- my $donotsetupagain = 0;
- push (@widgets, { val => "__________" });
- push (@widgets, { text =>
- N("Do not setup printer automatically again"),
- type => 'bool',
- val => \$donotsetupagain });
- undef $w;
- if ($in->ask_from_
- ({
- title => ($morethanone ?
- N("New printers found") :
- N("New printer found")),
- messages => ($morethanone ?
- N("The following new printers were found and Printerdrake can automatically set them up for you. If you do not want to have all of them set up, unselect the ones which should be skipped, or click \"Cancel\" to set up none of them.\n") :
- N("The following new printer was found and printerdrake can automatically set it up for you. If you do not want to have it set up, unselect it, or click \"Cancel\".\n")) .
- N("Note that for certain printer models additional packages need to be installed. So keep your installation media handy.\n"),
- },
- \@widgets )) {
- # Turn off auto queue setup if the user wishes it
- turnoffautosetup($printer, $in) if $donotsetupagain;
- } else {
- return 1;
- }
- }
-
- # Now install queues for all auto-detected printers which have no queue
- # yet
- $printer->{noninteractive} = 1; # Suppress all interactive steps
- foreach my $p (@autodetected) {
- if (!member($p->{port}, @blacklist) &&
- ($::noX || $printerselectedlist{$p->{port}})) {
- # Initialize some variables for queue setup
- $printer->{NEW} = 1;
- $printer->{TYPE} = "LOCAL";
- $printer->{currentqueue} = { queue => "",
- foomatic => 0,
- desc => "",
- loc => "",
- make => "",
- model => "",
- printer => "",
- driver => "",
- connect => "",
- dd => 1,
- att => 0,
- delay => 30,
- spooler => $printer->{SPOOLER},
- };
- undef $w;
- $w = $::noX ||
- $in->wait_message(N("Printerdrake"),
- N("Configuring printer on %s...",
- $p->{port}));
- # Do configuration of multi-function devices and look up
- # model name in the printer database
- setup_common($printer, $in, $p->{val}{DESCRIPTION}, $p->{port},
- 1, @autodetected) or next;
- # Do the steps of queue setup
- get_db_entry($printer, $in);
- # Let the user choose the model manually if it could not be
- # auto-detected.
- if (!$printer->{DBENTRY}) {
- # Skip this printer if we install print queues in a
- # background without X access.
- if ($::noX) {
- # Delete some variables
- foreach (qw(OLD_QUEUE QUEUE TYPE str_type DBENTRY ARGS OLD_CHOICE currentqueue NEW)) {
- $printer->{$_} = "";
- }
- next;
- }
- # Set the OLD_CHOICE to a non-existing value
- $printer->{OLD_CHOICE} = "XXX";
- # Set model selection cursor onto the "Raw Printer" entry.
- $printer->{DBENTRY} = N("Raw printer (No driver)");
- # Info about what was detected
- my $info = $p->{val}{DESCRIPTION} ?
- #-PO: this string is "device_description on port_number" formated (eg: "HP printer on 631"):
- N("(%s on %s)", $p->{val}{DESCRIPTION}, $p->{port}) :
- #-PO: a port number between round brackets:
- N("(%s)", $p->{port});
- # Remove wait message
- undef $w;
- # Choose the printer/driver from the list
- $printer->{DBENTRY} =
- $in->ask_from_treelist(N("Printer model selection"),
- N("Which printer model do you have?") .
- N("
-
-Printerdrake could not determine which model your printer %s is. Please choose the correct model from the list.", $info) . " " .
- N("If your printer is not listed, choose a compatible (see printer manual) or a similar one."), '|',
- [ keys %printer::main::thedb ], $printer->{DBENTRY}) or next;
- # Restore wait message
- $w = $::noX ||
- $in->wait_message(N("Printerdrake"),
- N("Configuring printer on %s...",
- $p->{port}));
- }
- get_printer_info($printer, $in) or next;
- setup_options($printer, $in) or next;
- my $_queue = generate_queuename($printer);
- # Change wait message
- undef $w;
- $w = $::noX ||
- $in->wait_message(N("Printerdrake"),
- N("Configuring printer \"%s\"...",
- $printer->{currentqueue}{queue}));
- # Create the queue
- configure_queue($printer, $in) or next;
- # If there is no default printer set, let this one get the
- # default
- if (!$printer->{DEFAULT}) {
- $printer->{DEFAULT} = $printer->{QUEUE};
- printer::default::set_printer($printer);
- }
- }
- # Delete some variables
- foreach (qw(OLD_QUEUE QUEUE TYPE str_type DBENTRY ARGS OLD_CHOICE)) {
- $printer->{$_} = "";
- }
- $printer->{currentqueue} = {};
- $printer->{complete} = 0;
- }
- undef $printer->{noninteractive};
-}
-
-sub turnoffautosetup {
- # Turn off auto queue setup if the user wishes it
- my ($printer, $in) = @_;
- local $::isEmbedded = 0;
- # Read current configuration
- printer::main::get_auto_admin($printer);
- # Turn off automatic print queue setup
- $printer->{autoqueuesetuponnewprinter} = 0;
- $printer->{autoqueuesetuponstart} = 0;
- # Save new settings
- printer::main::set_auto_admin($printer);
- # Tell the user what evil thing he has done and
- # how he can fix it.
- $in->ask_warn(N("Printerdrake"),
- N("Now you have turned off automatic printer setup.\n\n") .
- N("You can turn it back on again by choosing \"%s\" -> \"%s\" in Printerdrake's main menu. ", N("Options"), N("Configure Auto Administration")) .
- N("There you can also choose in which situation automatic printer setup is done (On Printerdrake startup, on printing system startup, when connecting a new USB printer)."));
-}
-
-sub generate_queuename {
- my ($printer) = @_;
- my $queue;
- if ($printer->{currentqueue}{model}) {
- if ($printer->{currentqueue}{model} eq N("Unknown model")) {
- $queue = "P";
- } else {
- $queue = $printer->{currentqueue}{make} . '|' .
- $printer->{currentqueue}{model};
- }
- } else {
- $queue = $printer->{DBENTRY};
- }
- $queue =~ s/\|/ /g;
- $printer->{currentqueue}{desc} = $queue;
- $queue =~ s/series//gi;
- $queue =~ s/[\s\(\)\-,]//g;
- my $make = $printer->{currentqueue}{make};
- my $model = $printer->{currentqueue}{model};
- $queue =~ s/$make$make/$make/gi;
- # Remove weird characters
- $queue =~ s/[^A-Za-z0-9_]//g;
- $make =~ s/[^A-Za-z0-9_]//g;
- $model =~ s/[^A-Za-z0-9_]//g;
- # Do not use a queue name longer than 12 characters, as otherwise
- # Windows clients will not be able to access the printer
- my $ml = 12;
- if (length($queue) > $ml) {
- my %parts;
- $parts{make} = $make;
- $parts{model} = $model;
- # Go through the two components, begin with model name, then
- # make and then driver
- foreach my $part (qw(model make)) {
- $parts{$part} =~ s/[^a-zA-Z0-9_]/ /g;
-
- # Split the component into words, cutting always at the
- # right edge of the word. Cut also at a capital in the
- # middle of the word (ex: "S" in "PostScript").
- my @words =
- split(/(?<=[a-zA-Z])(?![a-zA-Z])|(?<=[a-z])(?=[A-Z])/,
- $parts{$part});
- # Go through all words
- foreach (@words) {
- # Do not abbreviate words of less than 3 letters
- next if !/[a-zA-Z]{3,}$/;
- while (1) {
- # Remove the last letter
- chop;
- # Build the shortened component ...
- $parts{$part} = join('', @words);
- # ... and the queue name
- $queue = "$parts{make} $parts{model}";
- $queue =~ s/\s+//g;
- # Stop if the queue name has 12 characters or
- # less, if there is only one letter left, or if
- # the manufacturer name is reduced to three
- # characters.
- last if ((length($queue) <= $ml) ||
- (!/[a-zA-Z]{2,}$/) ||
- (($part eq 'make') &&
- (length($parts{make}) <= 3)));
- }
- $parts{$part} = join('', @words);
- $queue = "$parts{make} $parts{model}";
- $queue =~ s/\s+//g;
- last if (length($queue) <= $ml);
- }
- last if (length($queue) <= $ml);
- }
- while ((length($queue) > $ml) &&
- (length($parts{model}) > 3)) {
- # Queue name too long? Remove last words from model name.
- last if !($parts{model} =~
- s/[^a-zA-Z0-9]+[a-zA-Z0-9]*$//);
- $queue = "$parts{make} $parts{model}";
- $queue =~ s/\s+//g;
- }
- if (length($queue) > $ml) {
- # If nothing else helps ...
- $queue = substr($queue, 0, $ml);
- }
- }
-
- # Append a number if the queue name already exists
- if ($printer->{configured}{$queue}) {
- my $origname = $queue;
- my $i = 1;
- while (1) {
- my $ol = length($origname);
- my $nl = length($i);
- my $us = ($origname =~ m/\d$/ ? 1 : 0);
- if ($ol + $nl + $us <= $ml) {
- $queue = $origname . ($us ? '_' : '') . $i;
- } else {
- $queue = substr($queue, 0, $ml - $nl);
- $queue =~ s/\d$/_/;
- $queue .= $i;
- }
- last if (!$printer->{configured}{$queue});
- $i++;
- }
- }
-
- $printer->{currentqueue}{queue} = $queue;
- $printer->{OLD_QUEUE} = $printer->{QUEUE} = $queue;
- return $queue;
-}
-
-sub wizard_welcome {
- my ($printer, $in, $upNetwork) = @_;
- local $::isEmbedded = 0;
- my $ret;
- my $autodetectlocal = 0;
- my $autodetectnetwork = 0;
- my $autodetectsmb = 0;
- my $configlpd = 0;
- # If networking is configured, start it, but do not ask the user to
- # configure networking.
- my $havelocalnetworks;
- if ($printer->{expert}) {
- $havelocalnetworks = 0;
- undef $printer->{AUTODETECTNETWORK};
- undef $printer->{AUTODETECTSMB};
- } else {
- $havelocalnetworks = check_network($printer, $in, $upNetwork, 1) &&
- printer::detect::getIPsInLocalNetworks() != ();
- if (!$havelocalnetworks) {
- undef $printer->{AUTODETECTNETWORK};
- undef $printer->{AUTODETECTSMB};
- }
- $autodetectlocal = 1 if $printer->{AUTODETECTLOCAL};
- $autodetectnetwork = 1 if $printer->{AUTODETECTNETWORK};
- $autodetectsmb = 1 if $printer->{AUTODETECTSMB};
- $configlpd = 1 if $printer->{CONFIGLPD};
- }
- my $oldautodetectlocal = $autodetectlocal;
- my $oldautodetectnetwork = $autodetectnetwork;
- my $oldautodetectsmb = $autodetectsmb;
- my $oldconfiglpd = $configlpd;
- if ($in) {
- eval {
- if ($printer->{expert}) {
- if ($::isWizard) {
- $ret = $in->ask_okcancel(
- N("Add a new printer"),
- N("
-Welcome to the Printer Setup Wizard
-
-This wizard allows you to install local or remote printers to be used from this machine and also from other machines in the network.
-
-It asks you for all necessary information to set up the printer and gives you access to all available printer drivers, driver options, and printer connection types."));
- } else {
- $ret = 1;
- }
- } else {
- $ret = $in->ask_from_(
- { title => N("Add a new printer"),
- messages => ($printer->{SPOOLER} ne "pdq" ?
- ($havelocalnetworks ? N("
-Welcome to the Printer Setup Wizard
-
-This wizard will help you to install your printer(s) connected to this computer, connected directly to the network or to a remote Windows machine.
-
-Please plug in and turn on all printers connected to this machine so that it/they can be auto-detected. Also your network printer(s) and your Windows machines must be connected and turned on.
-
-Note that auto-detecting printers on the network takes longer than the auto-detection of only the printers connected to this machine. So turn off the auto-detection of network and/or Windows-hosted printers when you do not need it.
-
- Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want to set up your printer(s) now.") : N("
-Welcome to the Printer Setup Wizard
-
-This wizard will help you to install your printer(s) connected to this computer.
-
-Please plug in and turn on all printers connected to this machine so that it/they can be auto-detected.
-
- Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want to set up your printer(s) now.")) :
- ($havelocalnetworks ? N("
-Welcome to the Printer Setup Wizard
-
-This wizard will help you to install your printer(s) connected to this computer or connected directly to the network.
-
-If you have printer(s) connected to this machine, Please plug it/them in on this computer and turn it/them on so that it/they can be auto-detected. Also your network printer(s) must be connected and turned on.
-
-Note that auto-detecting printers on the network takes longer than the auto-detection of only the printers connected to this machine. So turn off the auto-detection of network printers when you do not need it.
-
- Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want to set up your printer(s) now.") : N("
-Welcome to the Printer Setup Wizard
-
-This wizard will help you to install your printer(s) connected to this computer.
-
-If you have printer(s) connected to this machine, Please plug it/them in on this computer and turn it/them on so that it/they can be auto-detected.
-
- Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want to set up your printer(s) now."))),
- callbacks => {
- changed => sub {
- if ($oldautodetectlocal ne
- $autodetectlocal) {
- if ($autodetectlocal) {
- $configlpd = 0;
- $oldconfiglpd = 0;
- }
- $oldautodetectlocal = $autodetectlocal;
- }
- if ($oldautodetectnetwork ne
- $autodetectnetwork) {
- if ($autodetectnetwork) {
- $configlpd = 0;
- $oldconfiglpd = 0;
- }
- $oldautodetectnetwork =
- $autodetectnetwork;
- }
- if ($oldautodetectsmb ne
- $autodetectsmb) {
- if ($autodetectsmb) {
- $configlpd = 0;
- $oldconfiglpd = 0;
- }
- $oldautodetectsmb = $autodetectsmb;
- }
- if ($oldconfiglpd ne $configlpd) {
- if ($configlpd) {
- $autodetectlocal = 0;
- $autodetectnetwork = 0;
- $autodetectsmb = 0;
- $oldautodetectlocal = 0;
- $oldautodetectnetwork = 0;
- $oldautodetectsmb = 0;
- }
- $oldconfiglpd = $configlpd;
- }
- return 0;
- }
- }
- },
- [
- { text => N("Auto-detect printers connected to this machine"), type => 'bool',
- val => \$autodetectlocal },
- if_($havelocalnetworks,
- { text => N("Auto-detect printers connected directly to the local network"), type => 'bool',
- val => \$autodetectnetwork },
- if_($printer->{SPOOLER} ne "pdq",
- { text => N("Auto-detect printers connected to machines running Microsoft Windows"), type => 'bool',
- val => \$autodetectsmb },
- { text => N("Printer on remote lpd server")
- . " (" . N("No auto-detection") . ")",
- type => 'bool',
- val => \$configlpd })),
- ]);
- $printer->{AUTODETECTLOCAL} = $autodetectlocal ? 1 : undef;
- $printer->{AUTODETECTNETWORK} = $autodetectnetwork ? 1 : undef;
- $printer->{AUTODETECTSMB} = $autodetectsmb && $printer->{SPOOLER} ne "pdq" ? 1 : undef;
- $printer->{CONFIGLPD} = $configlpd ? 1 : undef;
- $printer->{TIMEOUT} = 4000;
- }
- };
- return $@ =~ /wizcancel/ ? 0 : $ret;
- }
-}
-
-sub wizard_congratulations {
- my ($in) = @_;
- local $::isEmbedded = 0;
- if ($in) {
- $in->ask_okcancel(N("Add a new printer"),
- N("
-Congratulations, your printer is now installed and configured!
-
-You can print using the \"Print\" command of your application (usually in the \"File\" menu).
-
-If you want to add, remove, or rename a printer, or if you want to change the default option settings (paper input tray, printout quality, ...), select \"Printer\" in the \"Hardware\" section of the %s Control Center.", $shortdistroname));
- }
-}
-
-sub setup_local_autoscan {
- my ($printer, $in, $upNetwork) = @_;
- local $::isEmbedded = 0;
- my $queue = $printer->{OLD_QUEUE};
- my $expert_or_modify = $printer->{expert} || !$printer->{NEW};
- my $do_auto_detect =
- ($expert_or_modify &&
- $printer->{AUTODETECT} ||
- (!$expert_or_modify &&
- ($printer->{AUTODETECTLOCAL} ||
- $printer->{AUTODETECTNETWORK} ||
- $printer->{AUTODETECTSMB})));
-
- # If the user requested auto-detection of remote printers, check
- # whether the network functionality is configured and running
- if ($printer->{AUTODETECTNETWORK} || $printer->{AUTODETECTSMB}) {
- return 0 unless check_network($printer, $in, $upNetwork, 0);
- }
-
- my @autodetected;
- my $menuentries = {};
-# $in->set_help('setupLocal') if $::isInstall;
- if ($do_auto_detect) {
- if (!$::testing &&
- !$expert_or_modify && $printer->{AUTODETECTSMB} && !files_exist('/usr/bin/smbclient')) {
- $in->do_pkgs->install('samba-client') or do {
- $in->ask_warn(N("Warning"),
- N("Could not install the %s packages!",
- "Samba client") . " " .
- N("Skipping Windows/SMB server auto-detection"));
- $printer->{AUTODETECTSMB} = 0;
- return 0 if !$printer->{AUTODETECTLOCAL} &&
- !$printer->{AUTODETECTNETWORK};
- };
- }
- my $_w = $in->wait_message(N("Printer auto-detection"), N("Detecting devices..."));
- @autodetected = (
- $expert_or_modify || $printer->{AUTODETECTLOCAL} ? printer::detect::local_detect() : (),
- !$expert_or_modify ? printer::detect::whatNetPrinter($printer->{AUTODETECTNETWORK}, $printer->{AUTODETECTSMB}, $printer->{TIMEOUT}) : (),
- );
- $printer->{AUTODETECTEDPRINTERSADDPRINTERSTANDARD} = \@autodetected if @autodetected;
- # We have more than one printer, so we must ask the user for a queue
- # name in the fully automatic printer configuration.
- $printer->{MORETHANONE} = $#autodetected > 0;
- my @str;
- foreach my $p (@autodetected) {
- if (($p->{val}{DESCRIPTION}) || ($p->{val}{MODEL})) {
- my $menustr = (defined($p->{val}{DESCRIPTION}) &&
- (length($p->{val}{DESCRIPTION}) > 5) ?
- $p->{val}{DESCRIPTION} :
- (($p->{val}{MANUFACTURER} ?
- ($p->{val}{MANUFACTURER} . " ") : ()) .
- $p->{val}{MODEL}));
- if ($p->{port} =~ m!^/dev/lp(\d+)$!) {
- my $port = $1;
- $menustr .= N(" on parallel port #%s", $port);
- } elsif ($p->{port} =~ m!^/dev/usb/lp(\d+)$!) {
- my $printer = $1;
- $menustr .= N(", USB printer #%s", $printer);
- } elsif ($p->{port} =~ m!^socket://([^:]+):(\d+)$!) {
- my ($printer, $port) = ($1, $2);
- $menustr .= N(", network printer \"%s\", port %s", $printer, $port);
- } elsif ($p->{port} =~ m!^smb://([^/:]+)/([^/:]+)$!) {
- my ($server, $printer) = ($1, $2);
- $menustr .= N(", printer \"%s\" on SMB/Windows server \"%s\"", $printer, $server);
- }
- $menustr .= " ($p->{port})" if $printer->{expert};
- $menuentries->{$menustr} = $p->{port};
- push @str, N("Detected %s", $menustr);
- } else {
- my $menustr;
- if ($p->{port} =~ m!^/dev/lp(\d+)$!) {
- my $port = $1;
- $menustr = N("Printer on parallel port #%s", $port);
- } elsif ($p->{port} =~ m!^/dev/usb/lp(\d+)$!) {
- my $printer = $1;
- $menustr = N("USB printer #%s", $printer);
- } elsif ($p->{port} =~ m!^socket://([^:]+):(\d+)$!) {
- my ($printer, $port);
- $menustr .= N("Network printer \"%s\", port %s", $printer, $port);
- } elsif ($p->{port} =~ m!^smb://([^/:]+)/([^/:]+)$!) {
- my ($server, $printer) = ($1, $2);
- $menustr .= N("Printer \"%s\" on SMB/Windows server \"%s\"", $printer, $server);
- }
- $menustr .= " ($p->{port})" if $printer->{expert};
- $menuentries->{$menustr} = $p->{port};
- }
- }
- my @port;
- if ($printer->{expert}) {
- @port = printer::detect::whatPrinterPort();
- LOOP: foreach my $q (@port) {
- if (@str) {
- foreach my $p (@autodetected) {
- last LOOP if $p->{port} eq $q;
- }
- }
- my $menustr;
- if ($q =~ m!^/dev/lp(\d+)$!) {
- my $port = $1;
- $menustr = N("Printer on parallel port #%s", $port);
- } elsif ($q =~ m!^/dev/usb/lp(\d+)$!) {
- my $printer;
- $menustr = N("USB printer #%s", $printer);
- }
- $menustr .= " ($q)" if $printer->{expert};
- $menuentries->{$menustr} = $q;
- }
- }
- } else {
- # Always ask for queue name in recommended mode when no auto-
- # detection was done
- $printer->{MORETHANONE} = $#autodetected > 0;
- my $m;
- for ($m = 0; $m <= 2; $m++) {
- my $menustr = N("Printer on parallel port #%s", $m);
- $menustr .= " (/dev/lp$m)" if $printer->{expert};
- $menuentries->{$menustr} = "/dev/lp$m";
- $menustr = N("USB printer #%s", $m);
- $menustr .= " (/dev/usb/lp$m)" if $printer->{expert};
- $menuentries->{$menustr} = "/dev/usb/lp$m";
- }
- }
- my @menuentrieslist = sort {
- my @prefixes = ("/dev/lp", "/dev/usb/lp", "/dev/", "socket:",
- "smb:");
- my $first = $menuentries->{$a};
- my $second = $menuentries->{$b};
- for (my $i = 0; $i <= $#prefixes; $i++) {
- my $firstinlist = $first =~ m!^$prefixes[$i]!;
- my $secondinlist = $second =~ m!^$prefixes[$i]!;
- if ($firstinlist && !$secondinlist) { return -1 }
- if ($secondinlist && !$firstinlist) { return 1 }
- }
- return $first cmp $second;
- } keys(%$menuentries);
- my $menuchoice = "";
- my $oldmenuchoice = "";
- my $device;
- if ($printer->{configured}{$queue}) {
- my $p = printer::main::autodetectionentry_for_uri(
- $printer->{currentqueue}{connect}, @autodetected);
- if (defined($p)) {
- $device = $p->{port};
- $menuchoice = { reverse %$menuentries }->{$device};
- }
- }
- if ($menuchoice eq "" && @menuentrieslist > -1) {
- $menuchoice = $menuentrieslist[0];
- $oldmenuchoice = $menuchoice;
- $device = $menuentries->{$menuchoice} if $device eq "";
- }
- if ($in) {
-# $printer->{expert} or $in->set_help('configurePrinterDev') if $::isInstall;
- if (@menuentrieslist < 1) { # No menu entry
- # auto-detection has failed, we must do all manually
- $do_auto_detect = 0;
- $printer->{MANUAL} = 1;
- if ($printer->{expert}) {
- $device = $in->ask_from_entry(
- N("Local Printer"),
- N("No local printer found! To manually install a printer enter a device name/file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."),
- {
- complete => sub {
- if ($menuchoice eq "") {
- $in->ask_warn(N("Error"), N("You must enter a device or file name!"));
- return 1, 0;
- }
- return 0;
- }
- });
- return 0 if $device eq "";
- } else {
- local $::isWizard = 0;
- $in->ask_warn(N("Printer auto-detection"),
- N("No printer found!"));
- return 0;
- }
- } else {
- my $manualconf = 0;
- $manualconf = 1 if $printer->{MANUAL} || !$do_auto_detect;
- if (!$in->ask_from_(
- { title => ($expert_or_modify ?
- N("Local Printers") :
- N("Available printers")),
- messages => (($do_auto_detect ?
- ($printer->{expert} ?
- (@menuentrieslist == 1 ?
- (N("The following printer was auto-detected. ") .
- ($printer->{NEW} ?
- N("If it is not the one you want to configure, enter a device name/file name in the input line") :
- N("Alternatively, you can specify a device name/file name in the input line"))) :
- (N("Here is a list of all auto-detected printers. ") .
- ($printer->{NEW} ?
- N("Please choose the printer you want to set up or enter a device name/file name in the input line") :
- N("Please choose the printer to which the print jobs should go or enter a device name/file name in the input line")))) :
- (@menuentrieslist == 1 ?
- (N("The following printer was auto-detected. ") .
- ($printer->{NEW} ?
- N("The configuration of the printer will work fully automatically. If your printer was not correctly detected or if you prefer a customized printer configuration, turn on \"Manual configuration\".") :
- N("Currently, no alternative possibility is available"))) :
- (N("Here is a list of all auto-detected printers. ") .
- ($printer->{NEW} ?
- N("Please choose the printer you want to set up. The configuration of the printer will work fully automatically. If your printer was not correctly detected or if you prefer a customized printer configuration, turn on \"Manual configuration\".") :
- N("Please choose the printer to which the print jobs should go."))))) :
- ($printer->{expert} ?
- N("Please choose the port that your printer is connected to or enter a device name/file name in the input line") :
- N("Please choose the port that your printer is connected to."))) .
- if_($printer->{expert},
- N(" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."))),
- callbacks => {
- complete => sub {
- unless ($menuchoice ne "") {
- $in->ask_warn(N("Error"), N("You must choose/enter a printer/device!"));
- return 1, 0;
- }
- return 0;
- },
- changed => sub {
- if ($oldmenuchoice ne $menuchoice) {
- $device = $menuentries->{$menuchoice};
- $oldmenuchoice = $menuchoice;
- }
- return 0;
- }
- } },
- [
- if_($printer->{expert}, { val => \$device }),
- { val => \$menuchoice, list => \@menuentrieslist,
- not_edit => !$printer->{expert}, format => \&translate,
- allow_empty_list => 1, type => 'list' },
- if_(!$printer->{expert} && $do_auto_detect && $printer->{NEW},
- { text => N("Manual configuration"), type => 'bool',
- val => \$manualconf }),
- ]
- )) {
- return 0;
- }
- if ($device ne $menuentries->{$menuchoice}) {
- $menuchoice = "";
- $do_auto_detect = 0;
- }
- $printer->{MANUAL} = $manualconf ? 1 : undef;
- }
- }
-
- #- LPD and LPRng need netcat ('nc') to access to socket printers
- if (($printer->{SPOOLER} eq 'lpd' || $printer->{SPOOLER} eq 'lprng') &&
- !$::testing && $device =~ /^socket:/ && !files_exist('/usr/bin/nc')) {
- $in->do_pkgs->install('nc') or do {
- $in->ask_warn(N("Error"),
- N("Could not install the %s packages!",
- "nc") . " " .
- N("Aborting"));
- return 0;
- };
- }
-
- # Do configuration of multi-function devices and look up model name
- # in the printer database
- setup_common($printer, $in, $menuchoice, $device, $do_auto_detect,
- @autodetected);
-
- 1;
-}
-
-sub setup_lpd {
- my ($printer, $in, $upNetwork) = @_;
-
- local $::isEmbedded = 0;
- # Check whether the network functionality is configured and
- # running
- if (!check_network($printer, $in, $upNetwork, 0)) { return 0 }
-
-# $in->set_help('setupLPD') if $::isInstall;
- my ($uri, $remotehost, $remotequeue);
- my $queue = $printer->{OLD_QUEUE};
- if ($printer->{configured}{$queue} &&
- $printer->{currentqueue}{connect} =~ m/^lpd:/) {
- $uri = $printer->{currentqueue}{connect};
- if ($uri =~ m!^\s*lpd://([^/]+)/([^/]+)/?\s*$!) {
- $remotehost = $1;
- $remotequeue = $2;
- }
- } else {
- $remotehost = "";
- $remotequeue = "lp";
- }
-
- return if !$in->ask_from(N("Remote lpd Printer Options"),
-N("To use a remote lpd printer, you need to supply the hostname of the printer server and the printer name on that server."), [
-{ label => N("Remote host name"), val => \$remotehost },
-{ label => N("Remote printer name"), val => \$remotequeue } ],
-complete => sub {
- if ($remotehost eq "") {
- $in->ask_warn(N("Error"), N("Remote host name missing!"));
- return 1, 0;
- }
- if ($remotequeue eq "") {
- $in->ask_warn(N("Error"), N("Remote printer name missing!"));
- return 1, 1;
- }
- return 0;
-}
- );
- #- make the DeviceURI from user input.
- $printer->{currentqueue}{connect} = "lpd://$remotehost/$remotequeue";
-
- #- LPD does not support filtered queues to a remote LPD server by itself
- #- It needs an additional program as "rlpr"
- if ($printer->{SPOOLER} eq 'lpd' && !$::testing &&
- !files_exist('/usr/bin/rlpr')) {
- $in->do_pkgs->install('rlpr') or do {
- $in->ask_warn(N("Error"),
- N("Could not install the %s packages!",
- "rlpr") . " " .
- N("Aborting"));
- return 0;
- };
- }
-
- # Auto-detect printer model (works if host is an ethernet-connected
- # printer)
- my $modelinfo = printer::detect::getSNMPModel($remotehost);
- my $auto_hplip;
- if (defined($modelinfo) &&
- $modelinfo->{MANUFACTURER} ne "" &&
- $modelinfo->{MODEL} ne "") {
- local $::isWizard = 0;
- $in->ask_warn(N("Information"), N("Detected model: %s %s",
- $modelinfo->{MANUFACTURER}, $modelinfo->{MODEL}));
- $auto_hplip = 1;
- } else {
- $auto_hplip = 0;
- }
-
- # Do configuration of multi-function devices and look up model name
- # in the printer database
- setup_common($printer, $in,
- "$modelinfo->{MANUFACTURER} $modelinfo->{MODEL}",
- $printer->{currentqueue}{connect}, $auto_hplip,
- ({port => $printer->{currentqueue}{connect},
- val => $modelinfo }));
-
- 1;
-}
-
-sub setup_smb {
- my ($printer, $in, $upNetwork) = @_;
-
- local $::isEmbedded = 0;
- # Check whether the network functionality is configured and
- # running
- if (!check_network($printer, $in, $upNetwork, 0)) { return 0 }
-
-# $in->set_help('setupSMB') if $::isInstall;
- my ($uri, $smbuser, $smbpassword, $workgroup, $smbserver, $smbserverip, $smbshare);
- my $queue = $printer->{OLD_QUEUE};
- if ($printer->{configured}{$queue} &&
- $printer->{currentqueue}{connect} =~ m/^smb:/) {
- $uri = $printer->{currentqueue}{connect};
- my $parameters = $uri =~ m!^\s*smb://(.*)$! && $1;
- # Get the user's login and password from the URI
- if ($parameters =~ m!([^@]*)@([^@]+)!) {
- my $login = $1;
- $parameters = $2;
- if ($login =~ m!([^:]*):([^:]*)!) {
- $smbuser = $1;
- $smbpassword = $2;
- } else {
- $smbuser = $login;
- $smbpassword = "";
- }
- } else {
- $smbuser = "";
- $smbpassword = "";
- }
- # Get the workgroup, server, and share name
- if ($parameters =~ m!([^/]*)/([^/]+)/([^/]+)$!) {
- $workgroup = $1;
- $smbserver = $2;
- $smbshare = $3;
- } elsif ($parameters =~ m!([^/]+)/([^/]+)$!) {
- $workgroup = "";
- $smbserver = $1;
- $smbshare = $2;
- } else {
- die qq(The "smb://" URI must at least contain the server name and the share name!\n);
- }
- if (is_ip($smbserver)) {
- $smbserverip = $smbserver;
- $smbserver = "";
- }
- }
-
- my $autodetect = 0;
- my @autodetected;
- my $menuentries;
- my @menuentrieslist;
- my $menuchoice = "";
- my $oldmenuchoice = "";
- if ($printer->{AUTODETECT}) {
- $autodetect = 1;
- if (!$::testing && !files_exist('/usr/bin/smbclient')) {
- $in->do_pkgs->install('samba-client') or do {
- $in->ask_warn(N("Error"),
- N("Could not install the %s packages!",
- "Samba client") . " " .
- N("Aborting"));
- return 0;
- };
- }
- my $_w = $in->wait_message(N("Printer auto-detection"), N("Scanning network..."));
- @autodetected = printer::detect::net_smb_detect($printer->{TIMEOUT});
- $printer->{AUTODETECTEDPRINTERSADDPRINTEREXPERTSMB} = \@autodetected if @autodetected;
- my ($server, $share);
- foreach my $p (@autodetected) {
- my $menustr;
- if ($p->{port} =~ m!^smb://([^/:]+)/([^/:]+)$!) {
- $server = $1;
- $share = $2;
- }
- if ($p->{val}{DESCRIPTION}) {
- $menustr = $p->{val}{DESCRIPTION};
- $menustr .= N(", printer \"%s\" on server \"%s\"",
- $share, $server);
- } else {
- $menustr = N("Printer \"%s\" on server \"%s\"",
- $share, $server);
- }
- $menuentries->{$menustr} = $p->{port};
- if ($server eq $smbserver &&
- $share eq $smbshare) {
- $menuchoice = $menustr;
- }
- }
- @menuentrieslist = sort {
- $menuentries->{$a} cmp $menuentries->{$b};
- } keys(%$menuentries);
- if ($printer->{configured}{$queue} &&
- $printer->{currentqueue}{connect} =~ m/^smb:/ &&
- $menuchoice eq "") {
- my $menustr;
- if ($printer->{currentqueue}{make}) {
- $menustr = "$printer->{currentqueue}{make} $printer->{currentqueue}{model}";
- $menustr .= N(", printer \"%s\" on server \"%s\"",
- $smbshare, $smbserver);
- } else {
- $menustr = N("Printer \"%s\" on server \"%s\"",
- $smbshare, $smbserver);
- }
- $menuentries->{$menustr} = "smb://$smbserver/$smbshare";
- unshift(@menuentrieslist, $menustr);
- $menuchoice = $menustr;
- }
- if (@menuentrieslist < 1) {
- $autodetect = 0;
- } elsif ($menuchoice eq "") {
- $menuchoice = $menuentrieslist[0];
- if ($menuentries->{$menuentrieslist[0]} =~
- m!^smb://([^/:]+)/([^/:]+)$!) {
- $smbserver = $1;
- $smbshare = $2;
- }
- }
- $oldmenuchoice = $menuchoice;
- }
-
- return 0 if !$in->ask_from(
- N("SMB (Windows 9x/NT) Printer Options"),
- N("To print to a SMB printer, you need to provide the SMB host name (Note! It may be different from its TCP/IP hostname!) and possibly the IP address of the print server, as well as the share name for the printer you wish to access and any applicable user name, password, and workgroup information.") .
- ($autodetect ? N(" If the desired printer was auto-detected, simply choose it from the list and then add user name, password, and/or workgroup if needed.") : ""),
- [
- { label => N("SMB server host"), val => \$smbserver },
- { label => N("SMB server IP"), val => \$smbserverip },
- { label => N("Share name"), val => \$smbshare },
- { label => N("User name"), val => \$smbuser },
- { label => N("Password"), val => \$smbpassword, hidden => 1 },
- { label => N("Workgroup"), val => \$workgroup },
- if_($autodetect,
- { label => N("Auto-detected"),
- val => \$menuchoice, list => \@menuentrieslist,
- not_edit => 1, format => \&translate, sort => 0,
- allow_empty_list => 1, type => 'combo' }) ],
- complete => sub {
- if (!is_ip($smbserverip) && $smbserverip ne "") {
- $in->ask_warn(N("Error"), N("IP address should be in format 1.2.3.4"));
- return 1, 1;
- }
- if ($smbserver eq "" && $smbserverip eq "") {
- $in->ask_warn(N("Error"), N("Either the server name or the server's IP must be given!"));
- return 1, 0;
- }
- if ($smbshare eq "") {
- $in->ask_warn(N("Error"), N("Samba share name missing!"));
- return 1, 2;
- }
- if ($smbpassword ne "") {
- local $::isWizard = 0;
- my $yes = $in->ask_yesorno(
- N("SECURITY WARNING!"),
- N("You are about to set up printing to a Windows account with password. Due to a fault in the architecture of the Samba client software the password is put in clear text into the command line of the Samba client used to transmit the print job to the Windows server. So it is possible for every user on this machine to display the password on the screen by issuing commands as \"ps auxwww\".
-
-We recommend to make use of one of the following alternatives (in all cases you have to make sure that only machines from your local network have access to your Windows server, for example by means of a firewall):
-
-Use a password-less account on your Windows server, as the \"GUEST\" account or a special account dedicated for printing. Do not remove the password protection from a personal account or the administrator account.
-
-Set up your Windows server to make the printer available under the LPD protocol. Then set up printing from this machine with the \"%s\" connection type in Printerdrake.
-
-", N("Printer on remote lpd server")) .
- ($printer->{expert} ?
- N("Set up your Windows server to make the printer available under the IPP protocol and set up printing from this machine with the \"%s\" connection type in Printerdrake.
-
-", N("Enter a printer device URI")) : "") .
-N("Connect your printer to a Linux server and let your Windows machine(s) connect to it as a client.
-
-Do you really want to continue setting up this printer as you are doing now?"), 0);
- return 0 if $yes;
- return 1, 2;
- }
- return 0;
- },
- changed => sub {
- return 0 if !$autodetect;
- if ($oldmenuchoice ne $menuchoice) {
- if ($menuentries->{$menuchoice} =~ m!^smb://([^/:]+)/([^/:]+)$!) {
- $smbserver = $1;
- $smbshare = $2;
- }
- $oldmenuchoice = $menuchoice;
- }
- return 0;
- }
- );
- #- make the DeviceURI from, try to probe for available variable to
- #- build a suitable URI.
- $printer->{currentqueue}{connect} =
- join '', ("smb://", ($smbuser && ($smbuser .
- ($smbpassword && ":$smbpassword") . '@')), ($workgroup && "$workgroup/"),
- ($smbserver || $smbserverip), "/$smbshare");
-
- if (!$::testing && !files_exist('/usr/bin/smbclient')) {
- $in->do_pkgs->install('samba-client') or do {
- $in->ask_warn(N("Error"),
- N("Could not install the %s packages!",
- "Samba client") . " " .
- N("Aborting"));
- return 0;
- };
- }
- $printer->{SPOOLER} eq 'cups' and printer::main::restart_queue($printer);
- 1;
-}
-
-sub setup_ncp {
- my ($printer, $in, $upNetwork) = @_;
-
- local $::isEmbedded = 0;
- # Check whether the network functionality is configured and
- # running
- if (!check_network($printer, $in, $upNetwork, 0)) { return 0 }
-
-# $in->set_help('setupNCP') if $::isInstall;
- my ($uri, $ncpuser, $ncppassword, $ncpserver, $ncpqueue);
- my $queue = $printer->{OLD_QUEUE};
- if ($printer->{configured}{$queue} &&
- $printer->{currentqueue}{connect} =~ m/^ncp:/) {
- $uri = $printer->{currentqueue}{connect};
- my $parameters = $uri =~ m!^\s*ncp://(.*)$!;
- # Get the user's login and password from the URI
- if ($parameters =~ m!([^@]*)@([^@]+)!) {
- my $login = $1;
- $parameters = $2;
- if ($login =~ m!([^:]*):([^:]*)!) {
- $ncpuser = $1;
- $ncppassword = $2;
- } else {
- $ncpuser = $login;
- $ncppassword = "";
- }
- } else {
- $ncpuser = "";
- $ncppassword = "";
- }
- # Get the workgroup, server, and share name
- if ($parameters =~ m!([^/]+)/([^/]+)$!) {
- $ncpserver = $1;
- $ncpqueue = $2;
- } else {
- die qq(The "ncp://" URI must at least contain the server name and the share name!\n);
- }
- }
-
- return 0 if !$in->ask_from(N("NetWare Printer Options"),
-N("To print on a NetWare printer, you need to provide the NetWare print server name (Note! it may be different from its TCP/IP hostname!) as well as the print queue name for the printer you wish to access and any applicable user name and password."), [
-{ label => N("Printer Server"), val => \$ncpserver },
-{ label => N("Print Queue Name"), val => \$ncpqueue },
-{ label => N("User name"), val => \$ncpuser },
-{ label => N("Password"), val => \$ncppassword, hidden => 1 } ],
-complete => sub {
- unless ($ncpserver ne "") {
- $in->ask_warn(N("Error"), N("NCP server name missing!"));
- return 1, 0;
- }
- unless ($ncpqueue ne "") {
- $in->ask_warn(N("Error"), N("NCP queue name missing!"));
- return 1, 1;
- }
- return 0;
-}
- );
- # Generate the Foomatic URI
- $printer->{currentqueue}{connect} =
- join '', ("ncp://", ($ncpuser && ($ncpuser .
- ($ncppassword && ":$ncppassword") . '@')),
- "$ncpserver/$ncpqueue");
-
- if (!$::testing && !files_exist('/usr/bin/nprint')) {
- $in->do_pkgs->install('ncpfs') or do {
- $in->ask_warn(N("Error"),
- N("Could not install the %s packages!",
- "ncpfs") . " " .
- N("Aborting"));
- return 0;
- };
- }
- 1;
-}
-
-sub setup_socket {
- my ($printer, $in, $upNetwork) = @_;
-
- local $::isEmbedded = 0;
- # Check whether the network functionality is configured and
- # running
- if (!check_network($printer, $in, $upNetwork, 0)) { return 0 }
-
-# $in->set_help('setupSocket') if $::isInstall;
-
- my ($uri, $remotehost, $remoteport);
- my $queue = $printer->{OLD_QUEUE};
- if ($printer->{configured}{$queue} &&
- $printer->{currentqueue}{connect} =~
- m!^(socket:|ptal://?hpjd:|hp:/net/)!) {
- $uri = $printer->{currentqueue}{connect};
- if ($uri =~ m!^hp:!) {
- if ($uri =~ m!^hp:/net/[^\?]+\?ip=(\d+\.\d+\.\d+\.\d+)!) {
- ($remotehost, $remoteport) = ($1, 9100);
- }
- } elsif ($uri =~ m!^ptal:!) {
- if ($uri =~ m!^ptal://?hpjd:([^/:]+):([0-9]+)/?\s*$!) {
- my $ptalport = $2 - 9100;
- ($remotehost, $remoteport) = ($1, $ptalport);
- } elsif ($uri =~ m!^ptal://?hpjd:([^/:]+)\s*$!) {
- ($remotehost, $remoteport) = ($1, 9100);
- }
- } else {
- ($remotehost, $remoteport) =
- $uri =~ m!^\s*socket://([^/:]+):([0-9]+)/?\s*$!;
- }
- } else {
- $remotehost = "";
- $remoteport = "9100";
- }
-
- my $autodetect = 0;
- my @autodetected;
- my $menuentries;
- my @menuentrieslist;
- my $menuchoice = "";
- my $oldmenuchoice = "";
- my $detectedprinterchosen = 0;
- if ($printer->{AUTODETECT}) {
- $autodetect = 1;
- my $_w = $in->wait_message(N("Printer auto-detection"), N("Scanning network..."));
- @autodetected = printer::detect::net_detect($printer->{TIMEOUT});
- $printer->{AUTODETECTEDPRINTERSEXPERTSOCKET} = \@autodetected if @autodetected;
- my ($host, $port);
- foreach my $p (@autodetected) {
- my $menustr;
- if ($p->{port} =~ m!^socket://([^:]+):(\d+)$!) {
- $host = $1;
- $port = $2;
- }
- if ($p->{val}{DESCRIPTION}) {
- $menustr = $p->{val}{DESCRIPTION};
- $menustr .= N(", host \"%s\", port %s",
- $host, $port);
- } else {
- $menustr = N("Host \"%s\", port %s", $host, $port);
- }
- $menuentries->{$menustr} = $p->{port};
- if ($host eq $remotehost &&
- $host eq $remotehost) {
- $menuchoice = $menustr;
- $detectedprinterchosen = 1;
- }
- }
- @menuentrieslist = sort {
- $menuentries->{$a} cmp $menuentries->{$b};
- } keys(%$menuentries);
- if ($printer->{configured}{$queue} &&
- $printer->{currentqueue}{connect} =~ m!^(socket:|ptal://?hpjd:|hp:/net/)! &&
- $menuchoice eq "") {
- my $menustr;
- if ($printer->{currentqueue}{make}) {
- $menustr = "$printer->{currentqueue}{make} $printer->{currentqueue}{model}";
- $menustr .= N(", host \"%s\", port %s",
- $remotehost, $remoteport);
- } else {
- $menustr = N("Host \"%s\", port %s",
- $remotehost, $remoteport);
- }
- $menuentries->{$menustr} = "socket://$remotehost:$remoteport";
- unshift(@menuentrieslist, $menustr);
- $menuchoice = $menustr;
- }
- if (@menuentrieslist < 1) {
- $autodetect = 0;
- } elsif ($menuchoice eq "") {
- $menuchoice = $menuentrieslist[0];
- if ($menuentries->{$menuentrieslist[0]} =~ m!^socket://([^:]+):(\d+)$!) {
- $remotehost = $1;
- $remoteport = $2;
- $detectedprinterchosen = 1;
- }
- }
- $oldmenuchoice = $menuchoice;
- }
-
- return 0 if !$in->ask_from_(
- {
- title => N("TCP/Socket Printer Options"),
- messages => ($autodetect ?
- N("Choose one of the auto-detected printers from the list or enter the hostname or IP and the optional port number (default is 9100) in the input fields.") :
- N("To print to a TCP or socket printer, you need to provide the host name or IP of the printer and optionally the port number (default is 9100). On HP JetDirect servers the port number is usually 9100, on other servers it can vary. See the manual of your hardware.")),
- callbacks => {
- complete => sub {
- unless ($remotehost ne "") {
- $in->ask_warn(N("Error"), N("Printer host name or IP missing!"));
- return 1, 0;
- }
- unless ($remoteport =~ /^[0-9]+$/) {
- $in->ask_warn(N("Error"), N("The port number should be an integer!"));
- return 1, 1;
- }
- return 0;
- },
- changed => sub {
- return 0 if !$autodetect;
- if ($oldmenuchoice ne $menuchoice) {
- if ($menuentries->{$menuchoice} =~
- m!^socket://([^:]+):(\d+)$!) {
- $remotehost = $1;
- $remoteport = $2;
- $detectedprinterchosen = 1;
- } else {
- $detectedprinterchosen = 0;
- }
- $oldmenuchoice = $menuchoice;
- } else {
- $detectedprinterchosen = 0;
- }
- return 0;
- }
- }
- },
- [
- { label => ($autodetect ? "" : N("Printer host name or IP")),
- val => \$remotehost },
- { label => ($autodetect ? "" : N("Port")), val => \$remoteport },
- if_($autodetect,
- { val => \$menuchoice, list => \@menuentrieslist,
- not_edit => 0, format => \&translate, sort => 0,
- allow_empty_list => 1, type => 'list' })
- ]
- );
-
- #- make the Foomatic URI
- $printer->{currentqueue}{connect} =
- join '', ("socket://$remotehost", $remoteport ? ":$remoteport" : ());
-
- #- LPD and LPRng need netcat ('nc') to access to socket printers
- if (($printer->{SPOOLER} eq 'lpd' || $printer->{SPOOLER} eq 'lprng') &&
- !$::testing && !files_exist('/usr/bin/nc')) {
- $in->do_pkgs->install('nc') or do {
- $in->ask_warn(N("Error"),
- N("Could not install the %s packages!",
- "nc") . " " .
- N("Aborting"));
- return 0;
- };
- }
-
- # Auto-detect printer model
- my $modelinfo;
- if ($printer->{AUTODETECT}) {
- $modelinfo = printer::detect::getSNMPModel($remotehost);
- }
- my $auto_hplip;
- if (defined($modelinfo) &&
- $modelinfo->{MANUFACTURER} ne "" &&
- $modelinfo->{MODEL} ne "") {
- if (!$detectedprinterchosen) {
- local $::isWizard = 0;
- $in->ask_warn(N("Information"), N("Detected model: %s %s",
- $modelinfo->{MANUFACTURER},
- $modelinfo->{MODEL}));
- }
- $auto_hplip = 1;
- } else {
- $auto_hplip = 0;
- }
-
- # Do configuration of multi-function devices and look up model name
- # in the printer database
- setup_common($printer, $in,
- "$modelinfo->{MANUFACTURER} $modelinfo->{MODEL}",
- $printer->{currentqueue}{connect}, $auto_hplip,
- ({port => $printer->{currentqueue}{connect},
- val => $modelinfo }));
- 1;
-}
-
-sub setup_uri {
- my ($printer, $in, $upNetwork) = @_;
-
- local $::isEmbedded = 0;
-# $in->set_help('setupURI') if $::isInstall;
- if ($printer->{AUTODETECT} && $printer->{SPOOLER} eq 'cups') {
- my $_w = $in->wait_message(N("Printerdrake"),
- N("Refreshing Device URI list..."));
- printer::services::restart("cups");
- }
- return if !$in->ask_from(N("Printer Device URI"),
-N("You can specify directly the URI to access the printer. The URI must fulfill either the CUPS or the Foomatic specifications. Note that not all URI types are supported by all the spoolers."), [
-{ label => N("Printer Device URI"),
-val => \$printer->{currentqueue}{connect},
-list => [ if_($printer->{currentqueue}{connect},
- $printer->{currentqueue}{connect}),
- ($printer->{SPOOLER} eq 'cups' ?
- printer::cups::lpinfo_v() :
- ("parallel:/",
- "usb:/",
- "serial:/",
- "http://",
- "ipp://",
- "lpd://",
- "smb://",
- "ncp://",
- "socket://",
- "hp:/usb/",
- "hp:/par/",
- "hp:/net/",
- "file:/",
- 'postpipe:""')),
- ], not_edit => 0, sort => 0 }, ],
-complete => sub {
- unless ($printer->{currentqueue}{connect} =~ /[^:]+:.+/) {
- $in->ask_warn(N("Error"), N("A valid URI must be entered!"));
- return 1, 0;
- }
- return 0;
-}
- );
-
- # Non-local printer, check network and abort if no network available
- if ($printer->{currentqueue}{connect} !~ m!^(file:|parallel:|usb:|serial:|mtink:|ptal://?mlc|hp:/(usb|par))! &&
- !check_network($printer, $in, $upNetwork, 0)) {
- return 0;
- # If the chosen protocol needs additional software, install it.
- } elsif ($printer->{currentqueue}{connect} =~ /^lpd:/ &&
- $printer->{SPOOLER} eq 'lpd' &&
- !$::testing && !files_exist('/usr/bin/rlpr')) {
- # LPD does not support filtered queues to a remote LPD server by itself
- # It needs an additional program as "rlpr"
- $in->do_pkgs->install('rlpr') or do {
- $in->ask_warn(N("Error"),
- N("Could not install the %s packages!",
- "rlpr") . " " .
- N("Aborting"));
- return 0;
- };
- } elsif ($printer->{currentqueue}{connect} =~ /^smb:/ &&
- !$::testing && !files_exist('/usr/bin/smbclient')) {
- $in->do_pkgs->install('samba-client') or do {
- $in->ask_warn(N("Error"),
- N("Could not install the %s packages!",
- "Samba client") . " " .
- N("Aborting"));
- return 0;
- };
- } elsif ($printer->{currentqueue}{connect} =~ /^ncp:/ &&
- !$::testing && !files_exist('/usr/bin/nprint')) {
- $in->do_pkgs->install('ncpfs') or do {
- $in->ask_warn(N("Error"),
- N("Could not install the %s packages!",
- "ncpfs") . " " .
- N("Aborting"));
- return 0;
- };
- } elsif ($printer->{currentqueue}{connect} =~ /^socket:/ &&
- #- LPD and LPRng need netcat ('nc') to access to socket printers
- ($printer->{SPOOLER} eq 'lpd' || $printer->{SPOOLER} eq 'lprng') &&
- !$::testing && !files_exist('/usr/bin/nc')) {
- $in->do_pkgs->install('nc') or do {
- $in->ask_warn(N("Error"),
- N("Could not install the %s packages!",
- "nc") . " " .
- N("Aborting"));
- return 0;
- };
- }
-
- if ($printer->{currentqueue}{connect} =~ m!^socket://([^:/]+)! ||
- $printer->{currentqueue}{connect} =~ m!^lpd://([^:/]+)! ||
- $printer->{currentqueue}{connect} =~ m!^http://([^:/]+)! ||
- $printer->{currentqueue}{connect} =~ m!^ipp://([^:/]+)!) {
-
- # Auto-detect printer model (works if host is an ethernet-connected
- # printer)
- my $remotehost = $1;
- my $modelinfo = printer::detect::getSNMPModel($remotehost);
- my $auto_hplip;
- if (defined($modelinfo) &&
- $modelinfo->{MANUFACTURER} ne "" &&
- $modelinfo->{MODEL} ne "") {
- local $::isWizard = 0;
- $in->ask_warn(N("Information"), N("Detected model: %s %s",
- $modelinfo->{MANUFACTURER},
- $modelinfo->{MODEL}));
- $auto_hplip = 1;
- } else {
- $auto_hplip = 0;
- }
-
- # Do configuration of multi-function devices and look up model name
- # in the printer database
- setup_common($printer, $in,
- "$modelinfo->{MANUFACTURER} $modelinfo->{MODEL}",
- $printer->{currentqueue}{connect}, $auto_hplip,
- ({port => $printer->{currentqueue}{connect},
- val => $modelinfo }));
- }
-
- 1;
-}
-
-sub setup_postpipe {
- my ($printer, $in) = @_;
-
- local $::isEmbedded = 0;
-# $in->set_help('setupPostpipe') if $::isInstall;
- my $uri;
- my $commandline;
- my $queue = $printer->{OLD_QUEUE};
- if ($printer->{configured}{$queue} &&
- $printer->{currentqueue}{connect} =~ m/^postpipe:/) {
- $uri = $printer->{currentqueue}{connect};
- $commandline = $1 if $uri =~ m!^\s*postpipe:"(.*)"$!;
- } else {
- $commandline = "";
- }
-
- return if !$in->ask_from(N("Pipe into command"),
-N("Here you can specify any arbitrary command line into which the job should be piped instead of being sent directly to a printer."), [
-{ label => N("Command line"),
-val => \$commandline }, ],
-complete => sub {
- unless ($commandline ne "") {
- $in->ask_warn(N("Error"), N("A command line must be entered!"));
- return 1, 0;
- }
- return 0;
-}
-);
-
- #- make the Foomatic URI
- $printer->{currentqueue}{connect} = "postpipe:$commandline";
-
- 1;
-}
-
-sub hplip_bus_warning {
-
- my ($printer, $in, $device, $hplipentry) = @_;
-
- # Determine connection type
- my $bus;
- if ($device =~ /usb/) {
- $bus = "usb";
- } elsif ($device =~ m!/dev/(lp|par.*|printer.*)\d+!) {
- $bus = "par";
- } elsif ($device =~ m!^socket://!) {
- $bus = "net";
- } else {
- return 0;
- }
-
- # HPLIP supports the connection through which the device is currently
- # accessed
- return 1 if $hplipentry->{bus}{$bus};
-
- # Ask user what to do
- if ($::noX) {
- return 0;
- } else {
- local $::isWizard = 0;
- my $modelstr = $hplipentry->{model};
- $modelstr =~ s/_/ /g;
- my $choice = $in->ask_from_list
- (N("Add a new printer"),
- #-PO: here, the second %s will be replaced by eiher "to a parallel port",
- #-PO: "to the USB" or "via the the network:
- N("Your printer %s is currently connected %s.",
- $modelstr,
- ($bus eq "par" ? N("to a parallel port") :
- ($bus eq "usb" ? N("to the USB") :
- N("via the network")))) . " " .
- N("This type of connection is currently not fully supported by HPLIP.") .
- " " .
- N("You get full HPLIP support for your device if you connect it ") .
- join(", ",
- (if_($hplipentry->{bus}{par}, N("to a parallel port")),
- if_($hplipentry->{bus}{usb}, N("to the USB")),
- if_($hplipentry->{bus}{net}, N("via the network")))) .
- ".\n\n" .
- N("You can now set up your device with HPLIP anyway (works in many cases), ") .
- N("set it up without HPLIP (print-only), ") . N("or") . " " .
- N("cancel the setup (for example to reconnect your device).") .
- "\n\n" .
- N("You can always revise your choice by clicking your printer's entry in the main window, ") .
- N("clicking the \"%s\" button, ", N("Edit")) .
- N("and choosing \"%s\".", N("Printer connection type")) .
- "\n\n" .
- N("What do you want to do?"),
- [N("Set up with HPLIP"),
- N("Set up without HPLIP"),
- #N("Cancel setup")
- ], N("Set up without HPLIP"));
- if ($choice eq N("Set up with HPLIP")) {
- return 1;
- } elsif ($choice eq N("Set up without HPLIP")) {
- return 2;
- } else {
- return 0;
- }
- }
-}
-
-sub setup_common {
-
- my ($printer, $in, $makemodel, $device, $do_auto_detect, @autodetected) = @_;
-
- local $::isEmbedded = 0;
- #- Check whether the printer is an HP printer or multi-function device and
- #- configure HPLIP if it is one
-
- my $hplipdevice = "";
- my $isHPLIP = 0;
- my $searchunknown = N("Unknown model");
- my $w;
- if ($device =~ m!^/dev/! || $device =~ m!^socket://!) {
- # Ask user whether he has a multi-function device when he did not
- # do auto-detection or when auto-detection failed
- if (!$do_auto_detect ||
- $makemodel =~ /$searchunknown/i ||
- $makemodel =~ /^\s*$/) {
- local $::isWizard = 0;
- if (!$printer->{noninteractive}) {
- if ($printer->{SPOOLER} eq 'cups') {
- $isHPLIP = $in->ask_yesorno
- (N("Add a new printer"),
- N("On many HP printers there are special functions available, maintenance (ink level checking, nozzle cleaning. head alignment, ...) on all not too old inkjets, scanning on multi-function devices, and memory card access on printers with card readers. ") .
- "\n\n" .
- N("To access these extra functions on HP printers they must be set up with HPLIP (HP Linux Imaging and Printing). ") .
- "\n\n" .
- N("Do you want to use HPLIP (choose \"No\" for non-HP printers)? "), 0);
- }
- }
- }
- my $hplipentry;
- my $hplipaborted = 0;
- if (($printer->{SPOOLER} eq 'cups') &&
- (($hplipentry =
- printer::main::hplip_device_entry($device, @autodetected)) ||
- $isHPLIP)) {
- # Device is supported by HPLIP
- if ($hplipentry) {
- my $buswarning =
- hplip_bus_warning($printer, $in, $device, $hplipentry);
- return 0 if !$buswarning;
- $hplipaborted = 1 if $buswarning == 2;
- }
- # Install HPLIP packages
- my $hplipinstallfailed = 0;
- if (!$::testing &&
- !$hplipaborted &&
- !files_exist(qw(/usr/sbin/hpiod))) {
- if ($::noX) {
- $hplipinstallfailed = 1;
- } else {
- $w = $in->wait_message(N("Printerdrake"),
- N("Installing %s package...", N("HPLIP")))
- if !$printer->{noninteractive};
- $in->do_pkgs->install('hplip')
- or do {
- $in->ask_warn(N("Warning"),
- N("Could not install the %s packages!",
- N("HPLIP")) . " " .
- N("Only printing will be possible on the %s.",
- $makemodel));
- $hplipinstallfailed = 1;
- };
- }
- }
- # Remove old HPOJ configuration for this device
- if (-f "$::prefix/usr/sbin/ptal-mlcd") { # HPOJ installed?
- if (my $configfile =
- printer::main::remove_hpoj_config($device, @autodetected)) {
- if (!$printer->{noninteractive} && !$::noX) {
- undef $w;
- local $::isWizard = 0;
- $in->ask_warn
- (N("Error"),
- N("Could not remove your old HPOJ configuration file %s for your %s! ",
- $configfile, $makemodel) .
- N("Please remove the file manually and restart HPOJ."));
- }
- }
- }
-
- if (!$hplipinstallfailed && !$hplipaborted) {
- # Start HPLIP and get device URI
- undef $w;
- $w = $in->wait_message
- (N("Printerdrake"),
- N("Checking device and configuring %s...", N("HPLIP")))
- if !$printer->{noninteractive};
-
- if ($isHPLIP && ($device !~ m!^socket://!)) {
- # Determine connection type
- my $bus;
- if ($device =~ /usb/) {
- $bus = "usb";
- } elsif ($device =~ m!/dev/(lp|par.*|printer.*)\d+!) {
- $bus = "par";
- } elsif ($device =~ m!^socket://!) {
- $bus = "net";
- } else {
- $bus = "@@@";
- }
- my @uris = printer::main::start_hplip_manual();
- my (@menu, %menuhash);
- foreach my $item (@uris) {
- if ($item =~ m!^hp:/($bus)/(\S*?)(\?\S*|)$!) {
- my $modelname = $2;
- $modelname =~ s/_/ /g;
- $modelname = "HP " . $modelname
- if $modelname !~ m!^HP\s!i;
- push(@menu, $modelname);
- $menuhash{$modelname} = $item;
- }
- }
- undef $w;
- local $::isWizard = 0;
- if ($#menu >= 0) {
- my $choice = $in->ask_from_list
- (N("Add a new printer"),
- N("Which printer do you want to set up with HPLIP?"),
- \@menu, $menu[0]);
- $hplipdevice = $menuhash{$choice};
- $hplipentry =
- printer::main::hplip_device_entry_from_uri
- ($hplipdevice);
- if ($hplipentry) {
- my $buswarning =
- hplip_bus_warning($printer, $in,
- $device, $hplipentry);
- return 0 if !$buswarning;
- if ($buswarning == 2) {
- $hplipaborted = 1;
- $hplipdevice = "";
- } else {
- $makemodel = $choice;
- }
- } else {
- $in->ask_warn(N("Printerdrake"),
- N("HPLIP was not able to communicate with the chosen printer!") . " " .
- N("Setting up the printer without HPLIP..."));
- $hplipaborted = 1;
- $hplipdevice = "";
- }
- } else {
- $in->ask_warn(N("Printerdrake"),
- N("HPLIP did not find any local printers (Parallel, USB) which it supports!") . " " .
- N("Setting up the printer without HPLIP..."));
- $hplipaborted = 1;
- $hplipdevice = "";
- }
- } else {
- $hplipdevice = printer::main::start_hplip
- ($device, $hplipentry, @autodetected);
- if (!$hplipentry) {
- $hplipentry =
- printer::main::hplip_device_entry_from_uri
- ($hplipdevice);
- }
- if (($makemodel !~ /\S/) ||
- ($makemodel =~ /$searchunknown/i)) {
- $makemodel = $hplipentry->{model};
- $makemodel =~ s/_/ /g;
- $makemodel = "HP " . $makemodel
- if $makemodel !~ m!^HP\s!i;
- }
- }
- }
-
- if ($hplipdevice) {
- # Configure scanning with SANE on HP's MF devices
- if ($hplipentry->{scan}) {
- # Install SANE
- if (!$::testing &&
- (!files_exist("/usr/bin/scanimage",
- #"/usr/bin/xscanimage",
- "/etc/sane.d/dll.conf",
- "/usr/$lib/sane/libsane-hpaio.so.1") ||
- (!files_exist(qw(/usr/bin/xsane)) &&
- !files_exist(qw(/usr/bin/kooka)) &&
- ($::isInstall ||
- !$in->do_pkgs->is_installed('scanner-gui'))))) {
- undef $w;
- $w = $in->wait_message(
- N("Printerdrake"),
- N("Installing SANE packages..."))
- if !$printer->{noninteractive};
- $::noX
- or $in->do_pkgs->install('sane-backends',
- #'sane-frontends',
- ($::isInstall ?
- 'xsane' :
- 'scanner-gui'),
- "${lib}sane-hpaio1")
- or do {
- $in->ask_warn(N("Warning"),
- N("Could not install the %s packages!",
- "SANE") . " " .
- N("Scanning on the %s will not be possible.",
- $makemodel));
- };
- }
- # Configure the HPLIP SANE backend
- printer::main::config_sane('hpaio');
- }
- if (!$printer->{noninteractive} && !$::noX) {
- my $text = "";
- # Inform user about how to use HPLIP extra functions
- $text = hplip_help($makemodel, $hplipdevice);
- if ($text) {
- undef $w;
- local $::isWizard = 0;
- $in->ask_warn
- (N("Using and Maintaining your %s",
- $makemodel),
- $text);
- }
- }
- # Take the DeviceURI from $hplipdevice.
- $printer->{currentqueue}{connect} = $hplipdevice;
- }
- }
- if (!$hplipdevice) {
- # make the DeviceURI from $device.
- $printer->{currentqueue}{connect} = $device;
- $w = $in->wait_message(
- N("Printerdrake"),
- N("Configuring device..."))
- if !$printer->{noninteractive} && !defined($w);
- }
- } else {
- # make the DeviceURI from $device.
- $printer->{currentqueue}{connect} = $device;
- }
-
- if ($printer->{currentqueue}{connect} !~ /:/) {
- if ($printer->{currentqueue}{connect} =~ /usb/) {
- $printer->{currentqueue}{connect} =
- "usb:" . $printer->{currentqueue}{connect};
- } elsif ($printer->{currentqueue}{connect} =~ /(serial|tty)/) {
- $printer->{currentqueue}{connect} =
- "serial:" . $printer->{currentqueue}{connect};
- } elsif ($printer->{currentqueue}{connect} =~
- /(printers|parallel|parport|lp\d)/) {
- $printer->{currentqueue}{connect} =
- "parallel:" . $printer->{currentqueue}{connect};
- } else {
- $printer->{currentqueue}{connect} =
- "file:" . $printer->{currentqueue}{connect};
- }
- }
-
- #- if CUPS is the spooler, make sure that CUPS knows the device
- if ($printer->{SPOOLER} eq "cups") {
- my $hplipsocket = undef;
- $hplipsocket = "hp:/" if $hplipdevice =~ m!/net/!i;
- if ($hplipsocket ||
- ($device !~ /^lpd:/ &&
- $device !~ /^smb:/ &&
- $device !~ /^socket:/ &&
- $device !~ /^http:/ &&
- $device !~ /^ipp:/)) {
- my $_w = $in->wait_message(
- N("Printerdrake"),
- N("Making printer port available for CUPS..."))
- if !$printer->{noninteractive};
- printer::main::assure_device_is_available_for_cups(
- $hplipsocket || $hplipdevice || $device);
- }
- }
-
- #- Read the printer driver database if necessary
- if (keys %printer::main::thedb == 0) {
- my $_w = $in->wait_message(
- N("Printerdrake"), N("Reading printer database..."))
- if !$printer->{noninteractive};
- printer::main::read_printer_db($printer, $printer->{SPOOLER});
- }
-
- #- Search the database entry which matches the detected printer best
- my $descr = "";
- if ((!$do_auto_detect) &&
- ($makemodel =~ m!^(\S+)\s+(.*?)$!)) {
- my $mk = $1;
- my $md = $2;
- @autodetected = ({ port => $device,
- val => { CLASS => 'PRINTER',
- MANUFACTURER => $mk,
- MODEL => $md,
- DESCRIPTION => $makemodel } });
- }
- foreach (@autodetected) {
- $device eq $_->{port} or next;
- my ($automake, $automodel, $autodescr, $autocmdset, $autosku) =
- ($_->{val}{MANUFACTURER}, $_->{val}{MODEL},
- $_->{val}{DESCRIPTION}, $_->{val}{'COMMAND SET'},
- $_->{val}{SKU});
- # Clean some manufacturer's names
- my $descrmake = printer::main::clean_manufacturer_name($automake);
- if ($automake && $autosku) {
- $descr = "$descrmake|$autosku";
- } elsif ($automake && $automodel) {
- $descr = "$descrmake|$automodel";
- } elsif ($autodescr && (length($autodescr) > 5)) {
- $descr = $autodescr;
- $descr =~ s/ /|/;
- } elsif ($automodel) {
- $descr = $automodel;
- if ($descr !~ /$searchunknown/i) {
- $descr =~ s/ /|/;
- } else {
- $descr = "|$searchunknown";
- }
- } elsif ($automake) {
- $descr = "$descrmake|";
- } elsif ($makemodel =~ /\S/) {
- $descr = $makemodel;
- $descr =~ s/ /|/;
- } else {
- $printer->{DBENTRY} = "";
- last;
- }
- # Remove manufacturer's name from the beginning of the
- # description (do not do this with manufacturer names which
- # contain odd characters)
- $descr =~ s/^$descrmake\|\s*$descrmake\s*/$descrmake|/i
- if $descrmake &&
- $descrmake !~ m![\\/\(\)\[\]\|\.\$\@\%\*\?]!;
- # Clean up the description from noise which makes the best match
- # difficult
- $descr =~ s/\s+[Ss]eries//i;
- $descr =~ s/\s+\(?[Pp]rinter\)?$//i;
- $printer->{DBENTRY} = "";
- # Try to find an exact match, check both whether the detected
- # make|model is in the make|model of the database entry and vice versa
- # If there is more than one matching database entry, the longest match
- # counts.
- my $matchlength = -100;
- foreach my $entry (keys %printer::main::thedb) {
- # Try to match the device ID string of the auto-detection
- if ($printer::main::thedb{$entry}{make} =~ /Generic/i) {
- # Database entry for generic printer, check printer
- # languages (command set)
- my $_cmd = $printer::main::thedb{$entry}{devidcmd};
- if ($printer::main::thedb{$entry}{model} =~
- m!PCL\s*5/5e!i) {
- # Generic PCL 5/5e Printer
- if ($autocmdset =~
- /(^|[:,])PCL\s*\-*\s*(5|)([,;]|$)/i) {
- if ($matchlength < -50) {
- $matchlength = -50;
- $printer->{DBENTRY} = $entry;
- next;
- }
- }
- } elsif ($printer::main::thedb{$entry}{model} =~
- m!PCL\s*(6|XL)!i) {
- # Generic PCL 6/XL Printer
- if ($autocmdset =~
- /(^|[:,])PCL\s*\-*\s*(6|XL)([,;]|$)/i) {
- if ($matchlength < -40) {
- $matchlength = -40;
- $printer->{DBENTRY} = $entry;
- next;
- }
- }
- } elsif ($printer::main::thedb{$entry}{model} =~
- m!(PostScript)!i) {
- # Generic PostScript Printer
- if ($autocmdset =~
- /(^|[:,])(PS|POSTSCRIPT)[^:;,]*([,;]|$)/i) {
- if ($matchlength < -10) {
- $matchlength = -10;
- $printer->{DBENTRY} = $entry;
- next;
- }
- }
- }
- } else {
- # "Real" manufacturer, check manufacturer, model, and/or
- # description
- my $matched = 1;
- my ($mfg, $mdl, $des);
- if ($mfg = $printer::main::thedb{$entry}{devidmake}) {
- $mfg =~ s/Hewlett[-\s_]Packard/HP/i;
- if (uc($mfg) ne uc($automake)) {
- $matched = 0;
- }
- }
- if ($mdl = $printer::main::thedb{$entry}{devidmodel}) {
- if ($mdl ne $automodel) {
- $matched = 0;
- }
- }
- if ($des = $printer::main::thedb{$entry}{deviddesc}) {
- $des =~ s/Hewlett[-\s_]Packard/HP/;
- $des =~ s/HEWLETT[-\s_]PACKARD/HP/;
- if ($des ne $autodescr) {
- $matched = 0;
- }
- }
- if ($matched && ($des || $mfg && $mdl)) {
- # Full match to known auto-detection data
- $printer->{DBENTRY} = $entry;
- $matchlength = 1000;
- last;
- }
- }
- # Do not search human-readable make and model names if we had an
- # exact match or a match to the auto-detection ID string
- next if $matchlength >= 100;
- # Try to match the (human-readable) make and model of the
- # Foomatic database or of the PPD file
- my $dbmakemodel;
- if ($printer->{expert}) {
- $dbmakemodel = $1 if $entry =~ m/^(.*)\|[^\|]*$/;
- } else {
- $dbmakemodel = $entry;
- }
- # Do not try to match if the database entry does not provide
- # make and model
- next unless $dbmakemodel;
- # If make and model match exactly, we have found the correct
- # entry and we can stop searching human-readable makes and
- # models
- if (lc($dbmakemodel) eq lc($descr)) {
- $printer->{DBENTRY} = $entry;
- $matchlength = 100;
- next;
- }
- # Matching a part of the human-readable makes and models
- # should only be done if the search term is not the name of
- # an old model, otherwise the newest, not yet listed models
- # match with the oldest model of the manufacturer (as the
- # Epson Stylus Photo 900 with the original Epson Stylus Photo)
- my @badsearchterms =
- ("HP|DeskJet",
- "HP|LaserJet",
- "HP|DesignJet",
- "HP|OfficeJet",
- "HP|PhotoSmart",
- "EPSON|Stylus",
- "EPSON|Stylus Color",
- "EPSON|Stylus Photo",
- "EPSON|Stylus Pro",
- "XEROX|WorkCentre",
- "XEROX|DocuPrint");
- if (!member($descr, @badsearchterms)) {
- my $searchterm = $descr;
- my $lsearchterm = length($searchterm);
- $searchterm =~ s!([\\/\(\)\[\]\|\.\$\@\%\*\?])!\\$1!g;
- if ($lsearchterm > $matchlength &&
- $dbmakemodel =~ m!$searchterm!i) {
- $matchlength = $lsearchterm;
- $printer->{DBENTRY} = $entry;
- }
- }
- if (!member($dbmakemodel, @badsearchterms)) {
- my $searchterm = $dbmakemodel;
- my $lsearchterm = length($searchterm);
- $searchterm =~ s!([\\/\(\)\[\]\|\.\$\@\%\*\?])!\\$1!g;
- if ($lsearchterm > $matchlength &&
- $descr =~ m!$searchterm!i) {
- $matchlength = $lsearchterm;
- $printer->{DBENTRY} = $entry;
- }
- }
- }
- # No matching printer found, try a best match as last mean (not
- # when generating queues non-interactively)
- if (!$printer->{noninteractive}) {
- $printer->{DBENTRY} ||=
- bestMatchSentence($descr, keys %printer::main::thedb);
- # If the manufacturer was not guessed correctly, discard the
- # guess.
- my $guessedmake = lc($1) if $printer->{DBENTRY} =~ /^([^\|]+)\|/;
- if ($guessedmake !~ /Generic/i &&
- $descr !~ /$guessedmake/i &&
- ($guessedmake ne "hp" ||
- $descr !~ /Hewlett[\s-]+Packard/i))
- { $printer->{DBENTRY} = "" }
- }
- last;
- }
-
- #- Pre-fill the "Description" field with the printer's model name
- if (!$printer->{currentqueue}{desc} && $descr) {
- $printer->{currentqueue}{desc} = $descr;
- $printer->{currentqueue}{desc} =~ s/\|/ /g;
- }
-
- #- When we have chosen a printer here, the question whether the
- #- automatically chosen model from the database is correct, should
- #- have "This model is correct" as default answer
- delete($printer->{MANUALMODEL});
-
- 1;
-}
-
-sub choose_printer_name {
- my ($printer, $in) = @_;
- local $::isEmbedded = 0;
- # Name, description, location
-# $in->set_help('setupPrinterName') if $::isInstall;
- my $default = $printer->{currentqueue}{queue};
- $in->ask_from_(
- { title => N("Enter Printer Name and Comments"),
- #cancel => !$printer->{configured}{$queue} ? '' : N("Remove queue"),
- callbacks => { complete => sub {
- unless ($printer->{currentqueue}{queue} =~ /^[A-Za-z0-9_]+$/) {
- $in->ask_warn(N("Error"), N("Name of printer should contain only letters, numbers and the underscore"));
- return 1, 0;
- }
- local $::isWizard = 0;
- if ($printer->{configured}{$printer->{currentqueue}{queue}}
- && $printer->{currentqueue}{queue} ne $default &&
- !$in->ask_yesorno(N("Warning"), N("The printer \"%s\" already exists,\ndo you really want to overwrite its configuration?",
- $printer->{currentqueue}{queue}),
- 0)) {
- return 1, 0; # Let the user correct the name
- }
- my $ml = 12;
- if ((length($printer->{currentqueue}{queue}) > $ml) &&
- !$in->ask_yesorno(N("Warning"), N("The printer name \"%s\" has more than 12 characters which can make the printer unaccessible from Windows clients. Do you really want to use this name?",
- $printer->{currentqueue}{queue}),
- 0)) {
- return 1, 0; # Let the user correct the name
- }
- return 0;
- },
- },
- messages =>
-N("Every printer needs a name (for example \"printer\"). The Description and Location fields do not need to be filled in. They are comments for the users.") },
- [ { label => N("Name of printer"), val => \$printer->{currentqueue}{queue} },
- { label => N("Description"), val => \$printer->{currentqueue}{desc} },
- { label => N("Location"), val => \$printer->{currentqueue}{loc} },
- ]) or return 0;
-
- $printer->{QUEUE} = $printer->{currentqueue}{queue};
- 1;
-}
-
-sub get_db_entry {
- my ($printer, $in) = @_;
- local $::isEmbedded = 0;
- #- Read the printer driver database if necessary
- if (keys %printer::main::thedb == 0) {
- my $_w = $in->wait_message(N("Printerdrake"),
- N("Reading printer database..."))
- if $printer->{noninteractive};
- printer::main::read_printer_db($printer, $printer->{SPOOLER});
- }
- my $_w = $in->wait_message(N("Printerdrake"),
- N("Preparing printer database..."))
- if !$printer->{noninteractive};
- my $queue = $printer->{OLD_QUEUE};
- if ($printer->{configured}{$queue}) {
- # The queue was already configured
- if ($printer->{configured}{$queue}{queuedata}{foomatic}) {
- # The queue was configured with Foomatic
- my $driverstr;
- if ($printer->{configured}{$queue}{queuedata}{driver} eq "Postscript") {
- $driverstr = "PostScript";
- } else {
- $driverstr = "GhostScript + $printer->{configured}{$queue}{queuedata}{driver}";
- }
- my $make = uc($printer->{configured}{$queue}{queuedata}{make});
- my $model = $printer->{configured}{$queue}{queuedata}{model};
- if ($printer->{expert}) {
- $printer->{DBENTRY} = "$make|$model|$driverstr";
- # database key contains the "(recommended)" for the
- # recommended driver, so add it if necessary
- unless (exists($printer::main::thedb{$printer->{DBENTRY}})) {
- $printer->{DBENTRY} .= " $precstr";
- }
- } else {
- $printer->{DBENTRY} = "$make|$model";
- }
- $printer->{OLD_CHOICE} = $printer->{DBENTRY};
- }
- if ($printer->{configured}{$queue}{queuedata}{ppd} ||
- ($printer->{DBENTRY} eq "") ||
- !exists($printer::main::thedb{$printer->{DBENTRY}})) {
- # Do we have a native CUPS driver, a PostScript PPD file,
- # or a pre-built Foomatic PPD file?
- $printer->{DBENTRY} =
- printer::main::get_descr_from_ppd($printer) ||
- $printer->{DBENTRY};
- unless (exists($printer::main::thedb{$printer->{DBENTRY}})) {
- $printer->{DBENTRY} .= " $precstr";
- }
- $printer->{OLD_CHOICE} = $printer->{DBENTRY};
- }
- my ($make, $model);
- if (($printer->{DBENTRY} eq "") ||
- !exists($printer::main::thedb{$printer->{DBENTRY}})) {
- # Point the list cursor at least to manufacturer and model of
- # the printer
- $printer->{DBENTRY} = "";
- if ($printer->{configured}{$queue}{queuedata}{foomatic}) {
- $make = uc($printer->{configured}{$queue}{queuedata}{make});
- $model = $printer->{configured}{$queue}{queuedata}{model};
- } elsif ($printer->{configured}{$queue}{queuedata}{ppd}) {
- my $makemodel =
- printer::main::get_descr_from_ppd($printer);
- if ($makemodel =~ m!^([^\|]+)\|([^\|]+)(|\|.*)$!) {
- $make = $1;
- $model = $2;
- }
- }
- foreach my $key (keys %printer::main::thedb) {
- if ($printer->{expert} &&
- $key =~ /^$make\|$model\|.*$sprecstr.*$/ ||
- !$printer->{expert} && $key =~ /^$make\|$model$/) {
- $printer->{DBENTRY} = $key;
- }
- }
- }
- if (($printer->{DBENTRY} eq "") ||
- !exists($printer::main::thedb{$printer->{DBENTRY}})) {
- # Exact match of make and model did not work, try to clean
- # up the model name
- $model =~ s/PS//;
- $model =~ s/PostScript//i;
- $model =~ s/Series//i;
- foreach my $key (keys %printer::main::thedb) {
- if ($printer->{expert} && $key =~ /^$make\|$model\|.*$sprecstr.*$/ ||
- !$printer->{expert} && $key =~ /^$make\|$model$/) {
- $printer->{DBENTRY} = $key;
- }
- }
- }
- if ((($printer->{DBENTRY} eq "") ||
- !exists($printer::main::thedb{$printer->{DBENTRY}})) &&
- $make ne "") {
- # Exact match with cleaned-up model did not work, try a best match
- my $matchstr = "$make|$model";
- $printer->{DBENTRY} =
- bestMatchSentence($matchstr, keys %printer::main::thedb);
- # If the manufacturer was not guessed correctly, discard the
- # guess.
- my $guessedmake = lc($1) if $printer->{DBENTRY} =~ /^([^\|]+)\|/;
- if ($matchstr !~ /$guessedmake/i &&
- ($guessedmake ne "hp" ||
- $matchstr !~ /Hewlett[\s-]+Packard/i))
- { $printer->{DBENTRY} = "" }
- }
- if (($printer->{DBENTRY} eq "") ||
- !exists($printer::main::thedb{$printer->{DBENTRY}})) {
- # Set the OLD_CHOICE to a non-existing value
- $printer->{OLD_CHOICE} = "XXX";
- }
- } else {
- if ($printer->{expert} && $printer->{DBENTRY} !~ /$sprecstr/) {
- my ($make, $model) = $printer->{DBENTRY} =~ /^([^\|]+)\|([^\|]+)\|/;
- foreach my $key (keys %printer::main::thedb) {
- if ($key =~ /^$make\|$model\|.*$sprecstr.*$/) {
- $printer->{DBENTRY} = $key;
- }
- }
- }
- $printer->{OLD_CHOICE} = $printer->{DBENTRY};
- }
- 1;
-}
-
-sub is_model_correct {
- my ($printer, $in) = @_;
- local $::isEmbedded = 0;
-# $in->set_help('chooseModel') if $::isInstall;
- my $dbentry = $printer->{DBENTRY};
- if (!$dbentry) {
- # If printerdrake could not determine the model, omit this dialog and
- # let the user choose manually.
- $printer->{MANUALMODEL} = 1;
- return 1;
- }
- $dbentry =~ s/\|/ /g;
- my $res = $in->ask_from_list_(
- N("Your printer model"),
- N("Printerdrake has compared the model name resulting from the printer auto-detection with the models listed in its printer database to find the best match. This choice can be wrong, especially when your printer is not listed at all in the database. So check whether the choice is correct and click \"The model is correct\" if so and if not, click \"Select model manually\" so that you can choose your printer model manually on the next screen.
-
-For your printer Printerdrake has found:
-
-%s", $dbentry),
- [N("The model is correct"),
- N("Select model manually")],
- ($printer->{MANUALMODEL} ? N("Select model manually") :
- N("The model is correct")));
- return 0 if !$res;
- $printer->{MANUALMODEL} = $res eq N("Select model manually");
- 1;
-}
-
-sub choose_model {
- my ($printer, $in) = @_;
- local $::isEmbedded = 0;
-# $in->set_help('chooseModel') if $::isInstall;
- #- Read the printer driver database if necessary
- if (keys %printer::main::thedb == 0) {
- my $_w = $in->wait_message(N("Printerdrake"),
- N("Reading printer database..."));
- printer::main::read_printer_db($printer, $printer->{SPOOLER});
- }
- unless (exists($printer::main::thedb{$printer->{DBENTRY}})) {
- $printer->{DBENTRY} = N("Raw printer (No driver)");
- }
- # Choose the printer/driver from the list
- my $choice = $printer->{DBENTRY};
- my $loadppdchosen = 0;
- while (1) {
- if ($in->ask_from_({
- title => N("Printer model selection"),
- messages => N("Which printer model do you have?") .
- N("
-
-Please check whether Printerdrake did the auto-detection of your printer model correctly. Find the correct model in the list when a wrong model or \"Raw printer\" is highlighted.")
- . " " .
- N("If your printer is not listed, choose a compatible (see printer manual) or a similar one."),
- #cancel => (""),
- #ok => (""),
- }, [
- # List the printers/drivers
- { val => \$choice, format => \&translate,
- sort => 1, separator => "|", tree_expanded => 0,
- quit_if_double_click => 1, allow_empty_list => 1,
- list => [ keys %printer::main::thedb ] },
- # Button to install a manufacturer-supplied PPD file
- { clicked_may_quit =>
- sub {
- $loadppdchosen = 1;
- 1;
- },
- val => N("Install a manufacturer-supplied PPD file") },
- ])) {
- $printer->{DBENTRY} = $choice if !$loadppdchosen;
- } else {
- return 0;
- }
- last if !$loadppdchosen;
- # Install a manufacturer-supplied PPD file
- my $ppdentry;
- if ($ppdentry = installppd($printer, $in)) {
- $choice = $ppdentry;
- }
- $loadppdchosen = 0;
- }
- return 1;
-}
-
-sub installppd {
- my ($printer, $in) = @_;
-
- local $::isEmbedded = 0;
- # Install a manufacturer-supplied PPD file
-
- # The dialogs to choose the PPD file should appear as extra
- # windows and not embedded in the "Add printer" wizard.
- local $::isWizard = 0;
-
- my $ppdfile;
- my ($mediachoice);
- while (1) {
- # Tell user about PPD file installation
- $in->ask_from('Printerdrake',
- N("Every PostScript printer is delivered with a PPD file which describes the printer's options and features.") . " " .
- N("This file is usually somewhere on the CD with the Windows and Mac drivers delivered with the printer.") . " " .
- N("You can find the PPD files also on the manufacturer's web sites.") . " " .
- N("If you have Windows installed on your machine, you can find the PPD file on your Windows partition, too.") . "\n" .
- N("Installing the printer's PPD file and using it when setting up the printer makes all options of the printer available which are provided by the printer's hardware") . "\n" .
- N("Here you can choose the PPD file to be installed on your machine, it will then be used for the setup of your printer."),
- [
- { label => N("Install PPD file from"),
- val => \$mediachoice,
- list => [N("CD-ROM"),
- N("Floppy Disk"),
- N("Other place")],
- not_edit => 1, sort => 0 },
- ],
- ) or return 0;
- my $dir;
- if ($mediachoice eq N("CD-ROM")) {
- $dir = "/mnt/cdrom";
- } elsif ($mediachoice eq N("Floppy Disk")) {
- $dir = "/mnt/floppy";
- } elsif ($mediachoice eq N("Other place")) {
- $dir = "/mnt";
- } else {
- return 0;
- }
- # Let user select a PPD file from a floppy, hard disk, ...
- $ppdfile = $in->ask_file(N("Select PPD file"), $dir);
- last if !$ppdfile;
- if (! -r $ppdfile) {
- $in->ask_warn(N("Error"),
- N("The PPD file %s does not exist or is unreadable!",
- $ppdfile));
- next;
- }
- if (! printer::main::checkppd($printer, $ppdfile)) {
- $in->ask_warn(N("Error"),
- N("The PPD file %s does not conform with the PPD specifications!",
- $ppdfile));
- next;
- }
- last;
- }
-
- return 0 if !$ppdfile;
-
- # Install the PPD file in /usr/share/cups/ppd/printerdrake/
- my $w = $in->wait_message(N("Printerdrake"),
- N("Installing PPD file..."));
- my $ppdentry = printer::main::installppd($printer, $ppdfile);
- undef $w;
- return $ppdentry;
-}
-
-my %lexmarkinkjet_options = (
- 'parallel:/dev/lp0' => " -o Port=ParPort1",
- 'parallel:/dev/lp1' => " -o Port=ParPort2",
- 'parallel:/dev/lp2' => " -o Port=ParPort3",
- 'usb:/dev/usb/lp0' => " -o Port=USB1",
- 'usb:/dev/usb/lp1' => " -o Port=USB2",
- 'usb:/dev/usb/lp2' => " -o Port=USB3",
- 'file:/dev/lp0' => " -o Port=ParPort1",
- 'file:/dev/lp1' => " -o Port=ParPort2",
- 'file:/dev/lp2' => " -o Port=ParPort3",
- 'file:/dev/usb/lp0' => " -o Port=USB1",
- 'file:/dev/usb/lp1' => " -o Port=USB2",
- 'file:/dev/usb/lp2' => " -o Port=USB3",
- );
-
-my %drv_x125_options = (
- 'usb:/dev/usb/lp0' => " -o Device=usb_lp1",
- 'usb:/dev/usb/lp1' => " -o Device=usb_lp2",
- 'usb:/dev/usb/lp2' => " -o Device=usb_lp3",
- 'usb:/dev/usb/lp3' => " -o Device=usb_lp4",
- 'file:/dev/usb/lp0' => " -o Device=usb_lp1",
- 'file:/dev/usb/lp1' => " -o Device=usb_lp2",
- 'file:/dev/usb/lp2' => " -o Device=usb_lp3",
- 'file:/dev/usb/lp3' => " -o Device=usb_lp4",
- );
-
-sub get_printer_info {
- my ($printer, $in) = @_;
- local $::isEmbedded = 0;
- my $queue = $printer->{OLD_QUEUE};
- my $oldchoice = $printer->{OLD_CHOICE};
- my $newdriver = 0;
- if (!$printer->{configured}{$queue} || # New queue or
- ($oldchoice && $printer->{DBENTRY} && # make/model/driver changed
- ($oldchoice ne $printer->{DBENTRY} ||
- $printer->{currentqueue}{driver} ne
- $printer::main::thedb{$printer->{DBENTRY}}{driver}))) {
- delete($printer->{currentqueue}{printer});
- delete($printer->{currentqueue}{ppd});
- $printer->{currentqueue}{foomatic} = 0;
- # Read info from printer database
- foreach (qw(printer ppd driver make model)) {
- #- copy some parameters, shorter that way...
- $printer->{currentqueue}{$_} = $printer::main::thedb{$printer->{DBENTRY}}{$_};
- }
- $newdriver = 1;
- }
- # Use the "printer" and not the "foomatic" field to identify a Foomatic
- # queue because in a new queue "foomatic" is not set yet.
- if ($printer->{currentqueue}{printer} || # We have a Foomatic queue
- $printer->{currentqueue}{ppd}) { # We have a PPD queue
- if ($printer->{currentqueue}{printer}) { # Foomatic queue?
- # In case of a new queue "foomatic" was not set yet
- $printer->{currentqueue}{foomatic} = 1;
- $printer->{currentqueue}{ppd} = undef;
- } elsif ($printer->{currentqueue}{ppd}) { # PPD queue?
- # If we had a Foomatic queue before, unmark the flag and
- # initialize the "printer" and "driver" fields
- $printer->{currentqueue}{foomatic} = 0;
- $printer->{currentqueue}{printer} = undef;
- $printer->{currentqueue}{driver} = "PPD";
- }
- # Now get the options for this printer/driver combo
- if ($printer->{configured}{$queue} &&
- ($printer->{configured}{$queue}{queuedata}{foomatic} ||
- $printer->{configured}{$queue}{queuedata}{ppd})) {
- if (!$newdriver) {
- # The user did not change the printer/driver
- $printer->{ARGS} = $printer->{configured}{$queue}{args};
- } elsif ($printer->{currentqueue}{foomatic}) {
- # The queue was already configured with Foomatic ...
- # ... and the user has chosen another printer/driver
- $printer->{ARGS} =
- printer::main::read_foomatic_options($printer);
- } elsif ($printer->{currentqueue}{ppd}) {
- # ... and the user has chosen another printer/driver
- $printer->{ARGS} =
- printer::main::read_ppd_options($printer);
- }
- } else {
- # The queue was not configured with Foomatic before
- # Set some special options
- $printer->{SPECIAL_OPTIONS} = '';
- # Default page size depending on the country/language
- # (US/Canada -> Letter, Others -> A4)
- my $pagesize;
- if ($printer->{PAPERSIZE}) {
- $printer->{SPECIAL_OPTIONS} .=
- " -o PageSize=$printer->{PAPERSIZE}";
- } elsif (($pagesize = $in->{locale}{country}) ||
- ($pagesize = $ENV{LC_PAPER}) ||
- ($pagesize = $in->{locale}{lang}) ||
- ($pagesize = $ENV{LANG}) ||
- ($pagesize = $ENV{LANGUAGE}) ||
- ($pagesize = $ENV{LC_ALL})) {
- if ($pagesize =~ /US/ ||
- $pagesize =~ /CA/) {
- $pagesize = "Letter";
- } else {
- $pagesize = "A4";
- }
- $printer->{SPECIAL_OPTIONS} .=
- " -o PageSize=$pagesize";
- }
- # Do not embed the following messages in the add-printer
- # wizard.
- local $::isWizard = 0;
- # oki4drv driver -> OKI winprinter which needs the
- # oki4daemon to work
- if ($printer->{currentqueue}{driver} eq 'oki4drv') {
- if ($printer->{currentqueue}{connect} !~
- m!^(parallel|file):/dev/lp0$!) {
- $::noX ||
- $in->ask_warn(N("OKI winprinter configuration"),
- N("You are configuring an OKI laser winprinter. These printers\nuse a very special communication protocol and therefore they work only when connected to the first parallel port. When your printer is connected to another port or to a print server box please connect the printer to the first parallel port before you print a test page. Otherwise the printer will not work. Your connection type setting will be ignored by the driver."));
- }
- $printer->{currentqueue}{connect} = 'file:/dev/null';
- # Start the oki4daemon
- services::start_service_on_boot('oki4daemon');
- printer::services::start('oki4daemon');
- # Set permissions
-
- my $h = {
- cups => sub { set_permissions('/dev/oki4drv', '660',
- 'lp', 'sys') },
- pdq => sub { set_permissions('/dev/oki4drv', '666') }
- };
- my $s = $h->{$printer->{SPOOLER}} ||=
- sub { set_permissions('/dev/oki4drv', '660',
- 'lp', 'lp') };
- &$s;
- } elsif ($printer->{currentqueue}{driver} eq 'lexmarkinkjet') {
- # Set "Port" option
- my $opt =
- $lexmarkinkjet_options{$printer->{currentqueue}{connect}};
- if ($opt) {
- $printer->{SPECIAL_OPTIONS} .= $opt;
- } else {
- $::noX ||
- $in->ask_warn(N("Lexmark inkjet configuration"),
- N("The inkjet printer drivers provided by Lexmark only support local printers, no printers on remote machines or print server boxes. Please connect your printer to a local port or configure it on the machine where it is connected to."));
- return 0;
- }
- # Set device permissions
- if ($printer->{currentqueue}{connect} =~
- /^\s*(file|parallel|usb):(\S*)\s*$/) {
- if ($printer->{SPOOLER} eq 'cups') {
- set_permissions($2, '660', 'lp', 'sys');
- } elsif ($printer->{SPOOLER} eq 'pdq') {
- set_permissions($2, '666');
- } else {
- set_permissions($2, '660', 'lp', 'lp');
- }
- }
- # This is needed to have the device not blocked by the
- # spooler backend.
- $printer->{currentqueue}{connect} = 'file:/dev/null';
- #install packages
- my $drivertype = $printer->{currentqueue}{model};
- if ($drivertype eq 'Z22') { $drivertype = 'Z32' }
- if ($drivertype eq 'Z23') { $drivertype = 'Z33' }
- $drivertype = lc($drivertype);
- if (!files_exist("/usr/local/lexmark/$drivertype/$drivertype")) {
- eval { $::noX or $in->do_pkgs->install("lexmark-drivers-$drivertype") };
- }
- if (!files_exist("/usr/local/lexmark/$drivertype/$drivertype")) {
- # Driver installation failed, probably we do not have
- # the commercial CDs
- $::noX ||
- $in->ask_warn(N("Lexmark inkjet configuration"),
- N("To be able to print with your Lexmark inkjet and this configuration, you need the inkjet printer drivers provided by Lexmark (http://www.lexmark.com/). Click on the \"Drivers\" link. Then choose your model and afterwards \"Linux\" as operating system. The drivers come as RPM packages or shell scripts with interactive graphical installation. You do not need to do this configuration by the graphical frontends. Cancel directly after the license agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and adjust the head alignment settings with this program."));
- }
- } elsif ($printer->{currentqueue}{driver} eq 'drv_x125') {
- # Set "Device" option
- my $opt =
- $drv_x125_options{$printer->{currentqueue}{connect}};
- if ($opt) {
- $printer->{SPECIAL_OPTIONS} .= $opt;
- } else {
- $::noX ||
- $in->ask_warn(N("Lexmark X125 configuration"),
- N("The driver for this printer only supports printers locally connected via USB, no printers on remote machines or print server boxes. Please connect your printer to a local USB port or configure it on the machine where it is connected to."));
- return 0;
- }
- # Set device permissions
- if ($printer->{currentqueue}{connect} =~
- /^\s*(file|parallel|usb):(\S*)\s*$/) {
- if ($printer->{SPOOLER} eq 'cups') {
- set_permissions($2, '660', 'lp', 'sys');
- } elsif ($printer->{SPOOLER} eq 'pdq') {
- set_permissions($2, '666');
- } else {
- set_permissions($2, '660', 'lp', 'lp');
- }
- }
- # This is needed to have the device not blocked by the
- # spooler backend.
- $printer->{currentqueue}{connect} = 'file:/dev/null';
- } elsif ($printer->{currentqueue}{driver} eq 'ml85p') {
- # Check whether printer is on first parallel port
- if ($printer->{currentqueue}{connect} !~
- m!^\s*(parallel|file):/dev/(lp|printers/)0\s*$!) {
- $::noX ||
- $in->ask_warn(N("Samsung ML/QL-85G configuration"),
- N("The driver for this printer only supports printers locally connected on the first parallel port, no printers on remote machines or print server boxes or on other parallel ports. Please connect your printer to the first parallel port or configure it on the machine where it is connected to."));
- return 0;
- }
- # Set driver executable permissions
- if ($printer->{SPOOLER} eq 'cups') {
- set_permissions('/usr/bin/ml85p',
- '4750', 'root', 'sys');
- } elsif ($printer->{SPOOLER} eq 'pdq') {
- set_permissions('/usr/bin/ml85p',
- '4755', 'root', 'sys');
- } else {
- set_permissions('/usr/bin/ml85p',
- '4750', 'root', 'lp');
- }
- # This is needed to have the device not blocked by the
- # spooler backend.
- $printer->{currentqueue}{connect} = 'file:/dev/null';
- } elsif (($printer->{currentqueue}{driver} =~
- m!^\s*lbp[46]60\s*$!) ||
- ($printer->{currentqueue}{ppd} &&
- ($printer->{currentqueue}{ppd} =~
- m!Canon-LBP-[46]60-lbp[46]60.ppd!))) {
- # Check whether printer is on first parallel port
- if ($printer->{currentqueue}{connect} !~
- m!^\s*(parallel|file):/dev/(lp|printers/)0\s*$!) {
- $::noX ||
- $in->ask_warn(N("Canon LBP-460/660 configuration"),
- N("The driver for this printer only supports printers locally connected on the first parallel port, no printers on remote machines or print server boxes or on other parallel ports. Please connect your printer to the first parallel port or configure it on the machine where it is connected to."));
- return 0;
- }
- # Set driver executable permissions
- if ($printer->{SPOOLER} eq 'cups') {
- set_permissions('/usr/bin/lbp660',
- '4750', 'root', 'sys');
- } elsif ($printer->{SPOOLER} eq 'pdq') {
- set_permissions('/usr/bin/lbp660',
- '4755', 'root', 'sys');
- } else {
- set_permissions('/usr/bin/lbp660',
- '4750', 'root', 'lp');
- }
- # This is needed to have the device not blocked by the
- # spooler backend.
- $printer->{currentqueue}{connect} = 'file:/dev/null';
- } elsif (($printer->{currentqueue}{driver} =~
- m!^\s*capt\s*$!) ||
- ($printer->{currentqueue}{ppd} &&
- ($printer->{currentqueue}{ppd} =~
- m!Canon-LBP-\d*-capt.ppd!))) {
- # Check whether printer is on USB
- if ($printer->{currentqueue}{connect} !~
- m!^\s*(usb):!) {
- $::noX ||
- $in->ask_warn(N("Canon LBP-810/1120 (CAPT) configuration"),
- N("The driver for this printer only supports printers locally connected via USB, no printers on remote machines or print server boxes or on the parallel port. Please connect your printer to the USB or configure it on the machine where it is directly connected to."));
- return 0;
- }
- # This is needed to have the device not blocked by the
- # spooler backend.
- $printer->{currentqueue}{connect} = 'file:/dev/null';
- } elsif ($printer->{currentqueue}{printer} eq 'HP-LaserJet_1000') {
- $in->ask_warn(N("Firmware-Upload for HP LaserJet 1000"),
- $hp1000fwtext);
- }
- if ($printer->{currentqueue}{foomatic}) { # Foomatic queue?
- $printer->{ARGS} =
- printer::main::read_foomatic_options($printer);
- } elsif ($printer->{currentqueue}{ppd}) { # PPD queue?
- $printer->{ARGS} =
- printer::main::read_ppd_options($printer);
- }
- delete($printer->{SPECIAL_OPTIONS});
- }
- }
- 1;
-}
-
-sub unhexify {
- # Replace hex notation for unprintable characters in PPD files
- # by the actual characters ex: "<0A>" --> chr(hex("0A"))
- # Taken from Foomatic
- my ($input) = @_;
- my $output = "";
- my $hexmode = 0;
- my $firstdigit = "";
- for (my $i = 0; $i < length($input); $i++) {
- my $c = substr($input, $i, 1);
- if ($hexmode) {
- if ($c eq ">") {
- # End of hex string
- $hexmode = 0;
- } elsif ($c =~ /^[0-9a-fA-F]$/) {
- # Hexadecimal digit, two of them give a character
- if ($firstdigit ne "") {
- $output .= chr(hex("$firstdigit$c"));
- $firstdigit = "";
- } else {
- $firstdigit = $c;
- }
- }
- } else {
- if ($c eq "<") {
- # Beginning of hex string
- $hexmode = 1;
- } else {
- # Normal character
- $output .= $c;
- }
- }
- }
- return $output;
-}
-
-sub setup_options {
- my ($printer, $in) = @_;
- local $::isEmbedded = 0;
- my @simple_options =
- ("PageSize", # Media properties
- "MediaType",
- "Form",
- "InputSlot", # Trays
- "Tray",
- "OutBin",
- "OutputBin",
- "FaceUp",
- "FaceDown",
- "Collate",
- "Manual",
- "ManualFeed",
- "Manualfeed",
- "ManualFeeder",
- "Feeder",
- "Duplex", # Double-sided printing
- "Binding",
- "Tumble",
- "DoubleSided",
- "Resolution", # Resolution/Quality
- "GSResolution",
- "HWResolution",
- "JCLResolution",
- "Quality",
- "PrintQuality",
- "PrintoutQuality",
- "QualityType",
- "ImageType",
- "stpImageType",
- "EconoMode",
- "JCLEconoMode",
- "FastRes",
- "JCLFastRes",
- "InkType", # Colour/Gray/BW, 4-ink/6-ink
- "stpInkType",
- "Mode",
- "OutputMode",
- "OutputType",
- "ColorMode",
- "ColorModel",
- "PrintingMode",
- "Monochrome",
- "BlackOnly",
- "Grayscale",
- "GrayScale",
- "Colour",
- "Color",
- "Gamma", # Lighter/Darker
- "GammaCorrection",
- "GammaGeneral",
- "MasterGamma",
- "StpGamma",
- "stpGamma",
- "EconoMode", # Ink/Toner saving
- "Economode",
- "TonerSaving",
- "JCLEconomode",
- "HPNup", # Other useful options
- "InstalledMemory", # Laser printer hardware config
- "Option1",
- "Option2",
- "Option3",
- "Option4",
- "Option5",
- "Option6",
- "Option7",
- "Option8",
- "Option9",
- "Option10",
- "Option11",
- "Option12",
- "Option13",
- "Option14",
- "Option15",
- "Option16",
- "Option17",
- "Option18",
- "Option19",
- "Option20",
- "Option21",
- "Option22",
- "Option23",
- "Option24",
- "Option25",
- "Option26",
- "Option27",
- "Option28",
- "Option29",
- "Option30"
- );
-# $in->set_help('setupOptions') if $::isInstall;
- if ($printer->{currentqueue}{printer} || # We have a Foomatic queue
- $printer->{currentqueue}{ppd}) { # We have a CUPS+PPD queue
- # Set up the widgets for the option dialog
- my $helptext = N("Printer default settings
-
-You should make sure that the page size and the ink type/printing mode (if available) and also the hardware configuration of laser printers (memory, duplex unit, extra trays) are set correctly. Note that with a very high printout quality/resolution printing can get substantially slower.");
- my @widgets;
- my @userinputs;
- my @choicelists;
- my @shortchoicelists;
- my $i;
- my @oldgroup = ("", "");
- for ($i = 0; $i <= $#{$printer->{ARGS}}; $i++) {
- # Do not show hidden options (member options of a forced
- # composite option)
- next if $printer->{ARGS}[$i]{hidden};
- my $optshortdefault = $printer->{ARGS}[$i]{default};
- # Should the option only show when the "Advanced" button was
- # clicked?
- my $advanced = ((defined($printer->{ARGS}[$i]{group}) &&
- $printer->{ARGS}[$i]{group} !~
- /^(|General|.*install.*)$/i) ||
- (!($printer->{ARGS}[$i]{group}) &&
- !member($printer->{ARGS}[$i]{name},
- @simple_options)) ? 1 : 0);
- # Group header
- if ($printer->{ARGS}[$i]{group} ne $oldgroup[$advanced]) {
- my $_level = $#{$printer->{ARGS}[$i]{grouptrans}};
- $oldgroup[$advanced] = $printer->{ARGS}[$i]{group};
- if ($printer->{ARGS}[$i]{group}) {
- push(@widgets,
- { val => unhexify(join(" / ",
- @{$printer->{ARGS}[$i]{grouptrans}})),
- advanced => $advanced });
- }
- }
- if ($printer->{ARGS}[$i]{type} eq 'enum') {
- # enumerated option
- $choicelists[$i] = [];
- $shortchoicelists[$i] = [];
- foreach my $choice (@{$printer->{ARGS}[$i]{vals}}) {
- push(@{$choicelists[$i]}, unhexify($choice->{comment}));
- push(@{$shortchoicelists[$i]}, $choice->{value});
- if ($choice->{value} eq $optshortdefault) {
- $userinputs[$i] = unhexify($choice->{comment});
- }
- }
- push(@widgets,
- { label => unhexify($printer->{ARGS}[$i]{comment}),
- val => \$userinputs[$i],
- not_edit => 1,
- list => \@{$choicelists[$i]},
- sort => 0,
- advanced => $advanced,
- help => $helptext })
- if $printer->{ARGS}[$i]{name} ne 'PageRegion';
- } elsif ($printer->{ARGS}[$i]{type} eq 'bool') {
- # boolean option
- $choicelists[$i] =
- [(unhexify($printer->{ARGS}[$i]{comment_true}) ||
- unhexify($printer->{ARGS}[$i]{name}) || "Yes"),
- (unhexify($printer->{ARGS}[$i]{comment_false}) ||
- unhexify($printer->{ARGS}[$i]{name_false}) || "No")];
- $shortchoicelists[$i] = [];
- my $numdefault =
- ($optshortdefault =~ m!^\s*(true|on|yes|1)\s*$!i ?
- "1" : "0");
- $userinputs[$i] = $choicelists[$i][1-$numdefault];
- push(@widgets,
- { label => unhexify($printer->{ARGS}[$i]{comment}),
- val => \$userinputs[$i],
- not_edit => 1,
- list => \@{$choicelists[$i]},
- sort => 0,
- advanced => $advanced,
- help => $helptext });
- } else {
- # numerical option
- $choicelists[$i] = [];
- $shortchoicelists[$i] = [];
- $userinputs[$i] = $optshortdefault;
- push(@widgets,
- { label => unhexify($printer->{ARGS}[$i]{comment}) .
- " ($printer->{ARGS}[$i]{min}... " .
- "$printer->{ARGS}[$i]{max})",
- #type => 'range',
- #min => $printer->{ARGS}[$i]{min},
- #max => $printer->{ARGS}[$i]{max},
- val => \$userinputs[$i],
- advanced => $advanced,
- help => $helptext });
- }
- }
- # Show the options dialog. The call-back function does a
- # range check of the numerical options.
- my $windowtitle = "$printer->{currentqueue}{make} $printer->{currentqueue}{model}";
- if ($printer->{expert}) {
- my $driver;
- if ($driver = $printer->{currentqueue}{driver}) {
- if ($printer->{currentqueue}{foomatic}) {
- if ($driver eq 'Postscript') {
- $driver = "PostScript";
- } else {
- $driver = "GhostScript + $driver";
- }
- } elsif ($printer->{currentqueue}{ppd}) {
- if ($printer->{DBENTRY}) {
- $driver = $1 if $printer->{DBENTRY} =~ /^[^\|]*\|[^\|]*\|(.*)$/;
- } else {
- $driver = printer::main::get_descr_from_ppd($printer);
- if ($driver =~ /^[^\|]*\|[^\|]*$/) { # No driver info
- $driver = "PPD";
- } else {
- $driver = $1 if $driver =~ /^[^\|]*\|[^\|]*\|(.*)$/;
- }
- }
- }
- }
- if ($driver) {
- $windowtitle .= ", $driver";
- }
- }
- # Do not show the options setup dialog when installing a new printer
- # in recommended mode without "Manual configuration" turned on.
- if ((!$printer->{NEW} || $printer->{expert} || $printer->{MANUAL}) &&
- !$printer->{noninteractive}) {
- return 0 if !$in->ask_from(
- $windowtitle,
- N("Printer default settings"),
- \@widgets,
- complete => sub {
- my $i;
- for ($i = 0; $i <= $#{$printer->{ARGS}}; $i++) {
- if ($printer->{ARGS}[$i]{type} eq 'int' || $printer->{ARGS}[$i]{type} eq 'float') {
- if ($printer->{ARGS}[$i]{type} eq 'int' && $userinputs[$i] !~ /^[\-\+]?[0-9]+$/) {
- $in->ask_warn(N("Error"), N("Option %s must be an integer number!", unhexify($printer->{ARGS}[$i]{comment})));
- return 1, $i;
- }
- if ($printer->{ARGS}[$i]{type} eq 'float' && $userinputs[$i] !~ /^[\-\+]?[0-9\.]+$/) {
- $in->ask_warn(N("Error"), N("Option %s must be a number!", unhexify($printer->{ARGS}[$i]{comment})));
- return 1, $i;
- }
- if ($userinputs[$i] < $printer->{ARGS}[$i]{min} || $userinputs[$i] > $printer->{ARGS}[$i]{max}) {
- $in->ask_warn(N("Error"), N("Option %s out of range!", unhexify($printer->{ARGS}[$i]{comment})));
- return 1, $i;
- }
- }
- }
- return 0;
- });
- }
- # Read out the user's choices and generate the appropriate command
- # line arguments
- @{$printer->{currentqueue}{options}} = ();
- for ($i = 0; $i <= $#{$printer->{ARGS}}; $i++) {
- # We did not show hidden options, so we do not have user input
- # to add to the option list
- next if $printer->{ARGS}[$i]{hidden};
- push(@{$printer->{currentqueue}{options}}, "-o");
- if ($printer->{ARGS}[$i]{type} eq 'enum') {
- # enumerated option
- my $j;
- for ($j = 0; $j <= $#{$choicelists[$i]}; $j++) {
- if ($choicelists[$i][$j] eq $userinputs[$i]) {
- $printer->{ARGS}[$i]{default} =
- $shortchoicelists[$i][$j];
- push(@{$printer->{currentqueue}{options}},
- $printer->{ARGS}[$i]{name} . "=" .
- $shortchoicelists[$i][$j]);
- }
- }
- } elsif ($printer->{ARGS}[$i]{type} eq 'bool') {
- # boolean option
- my $v =
- ($choicelists[$i][0] eq $userinputs[$i] ? "1" : "0");
- $printer->{ARGS}[$i]{default} = $v;
- push(@{$printer->{currentqueue}{options}},
- $printer->{ARGS}[$i]{name} . "=" . $v);
- } else {
- # numerical option
- $printer->{ARGS}[$i]{default} = $userinputs[$i];
- push(@{$printer->{currentqueue}{options}},
- $printer->{ARGS}[$i]{name} . "=" . $userinputs[$i]);
- }
- }
- }
- 1;
-}
-
-sub setasdefault {
- my ($printer, $in) = @_;
- local $::isEmbedded = 0;
-# $in->set_help('setupAsDefault') if $::isInstall;
- if ($printer->{DEFAULT} eq '' || # We have no default printer,
- # so set the current one as default
- $in->ask_yesorno(N("Printerdrake"), N("Do you want to set this printer (\"%s\")\nas the default printer?", $printer->{QUEUE}), 0)) { # Ask the user
- $printer->{DEFAULT} = $printer->{QUEUE};
- printer::default::set_printer($printer);
- }
-}
-
-sub print_testpages {
- my ($printer, $in, $upNetwork) = @_;
- local $::isEmbedded = 0;
-# $in->set_help('printTestPages') if $::isInstall;
- # print test pages
- my $res2 = 0;
- my %options = (alta4 => 0, altletter => 0, ascii => 0, photo => 0, standard => 1);
- my %old_options = (alta4 => 0, altletter => 0, ascii => 0, photo => 0, standard => 1);
- my $oldres2 = 0;
- my $res1 = $in->ask_from_(
- { title => N("Test pages"),
- messages => N("Please select the test pages you want to print.
-Note: the photo test page can take a rather long time to get printed and on laser printers with too low memory it can even not come out. In most cases it is enough to print the standard test page."),
- cancel => (!$printer->{NEW} ?
- N("Cancel") : ($::isWizard ? N("Previous") :
- N("No test pages"))),
- ok => ($::isWizard ? N("Next") : N("Print")),
- callbacks => {
- changed => sub {
- if ($oldres2 ne $res2) {
- if ($res2) {
- foreach my $opt (keys %options) {
- $options{$opt} = 0;
- $old_options{$opt} = 0;
- }
- }
- $oldres2 = $res2;
- }
- foreach my $opt (keys %options) {
- if ($old_options{$opt} ne $options{$opt}) {
- if ($options{$opt}) {
- $res2 = 0;
- $oldres2 = 0;
- }
- $old_options{$opt} = $options{$opt};
- }
- }
- return 0;
- }
- } },
- [
- { text => N("Standard test page"), type => 'bool',
- val => \$options{standard} },
- if_($printer->{expert},
- { text => N("Alternative test page (Letter)"), type => 'bool',
- val => \$options{altletter} }),
- if_($printer->{expert},
- { text => N("Alternative test page (A4)"), type => 'bool',
- val => \$options{alta4} }),
- { text => N("Photo test page"), type => 'bool', val => \$options{photo} },
- #{ text => N("Plain text test page"), type => 'bool',
- # val => \$options{ascii} }
- #if_($::isWizard,
- # ({ val => "__________" },
- # { text => N("Do not print any test page"), type => 'bool',
- # val => \$res2 }))
- ]);
- $res2 = 1 if !($options{standard} || $options{altletter} || $options{alta4} || $options{photo} || $options{ascii});
- if ($res1 && !$res2) {
- my @lpq_output;
- {
- my $_w = $in->wait_message(N("Printerdrake"),
- N("Printing test page(s)..."));
-
- $upNetwork and do { &$upNetwork(); undef $upNetwork; sleep(1) };
- my $stdtestpage = "/usr/share/printer-testpages/testprint.ps";
- my $altlttestpage = "/usr/share/printer-testpages/testpage.ps";
- my $alta4testpage = "/usr/share/printer-testpages/testpage-a4.ps";
- my $phototestpage = "/usr/share/printer-testpages/photo-testpage.jpg";
- my $asciitestpage = "/usr/share/printer-testpages/testpage.asc";
- my @testpages;
- # Install the filter to convert the photo test page to PS
- if ($printer->{SPOOLER} ne "cups" && $options{photo} && !$::testing &&
- !files_exist('/usr/bin/convert')) {
- $in->do_pkgs->install('ImageMagick')
- or do {
- # Do not embed this message in the add-printer
- # wizard.
- local $::isWizard = 0;
- $in->ask_warn(N("Warning"),
- N("Could not install the %s package!",
- "ImageMagick") . " " .
- N("Skipping photo test page."));
- $options{photo} = 0;
- };
- }
- # set up list of pages to print
- $options{standard} and push @testpages, $stdtestpage;
- $options{altletter} and push @testpages, $altlttestpage;
- $options{alta4} and push @testpages, $alta4testpage;
- $options{photo} and push @testpages, $phototestpage;
- $options{ascii} and push @testpages, $asciitestpage;
- # Nothing to print
- return 1 if $#testpages < 0;
- # print the stuff
- @lpq_output = printer::main::print_pages($printer, @testpages);
- }
- my $dialogtext;
- if (@lpq_output) {
- $dialogtext = N("Test page(s) have been sent to the printer.
-It may take some time before the printer starts.
-Printing status:\n%s\n\n", @lpq_output);
- } else {
- $dialogtext = N("Test page(s) have been sent to the printer.
-It may take some time before the printer starts.\n");
- }
- if ($printer->{NEW} == 0) {
- # Do not embed the following messages in the add-printer
- # wizard.
- local $::isWizard = 0;
- $in->ask_warn(N("Printerdrake"),$dialogtext);
- return 1;
- } else {
- $in->ask_yesorno(N("Printerdrake"), $dialogtext . N("Did it work properly?"), 1)
- and return 1;
- }
- } else {
- return($::isWizard ? $res1 : 1);
- }
- return 2;
-}
-
-sub printer_help {
- my ($printer, $in) = @_;
- local $::isEmbedded = 0;
- my $spooler = $printer->{SPOOLER};
- $spooler = "cups" if $spooler eq "rcups";
- my $queue = $printer->{QUEUE};
- my $default = $printer->{DEFAULT};
- my $raw = 0;
- my $cupsremote = 0;
- my $hplip = "";
- my $scanning = "";
- my $photocard = "";
- my $hp11000fw = "";
- if ($printer->{configured}{$queue}) {
- if ($printer->{configured}{$queue}{queuedata}{model} eq N("Unknown model") ||
- $printer->{configured}{$queue}{queuedata}{model} eq N("Raw printer")) {
- $raw = 1;
- }
- # Information about extra functions of HP printers enabled by HPLIP
- $hplip = hplip_help(
- $printer->{configured}{$queue}{queuedata}{make} . " " .
- $printer->{configured}{$queue}{queuedata}{model},
- $printer->{configured}{$queue}{queuedata}{connect});
- if ($hplip) {
- $hplip = "\n\n$hplip\n\n";
- }
- if ($printer->{configured}{$queue}{queuedata}{printer} eq
- 'HP-LaserJet_1000') {
- $hp11000fw = "\n\n$hp1000fwtext\n";
- }
- } else {
- $cupsremote = 1;
- }
-
- my $dialogtext;
- if ($spooler eq "cups") {
- $dialogtext =
-N("To print a file from the command line (terminal window) you can either use the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or \"kprinter <file>\". The graphical tools allow you to choose the printer and to modify the option settings easily.
-", ($queue ne $default ? "lpr -P $queue" : "lpr")) .
-N("These commands you can also use in the \"Printing command\" field of the printing dialogs of many applications, but here do not supply the file name because the file to print is provided by the application.
-") .
-(!$raw ?
-N("
-The \"%s\" command also allows to modify the option settings for a particular printing job. Simply add the desired settings to the command line, e. g. \"%s <file>\". ", "lpr", ($queue ne $default ? "lpr -P $queue -o option=setting -o switch" : "lpr -o option=setting -o switch")) .
-(!$cupsremote ?
- N("To know about the options available for the current printer read either the list shown below or click on the \"Print option list\" button.%s%s%s
-
-", $hplip, $hp11000fw) . printer::main::help_output($printer, 'cups') :
- $hplip . $hp11000fw .
- N("Here is a list of the available printing options for the current printer:
-
-") . printer::main::help_output($printer, 'cups')) : $hplip . $hp11000fw);
- } elsif ($spooler eq "lprng") {
- $dialogtext =
-N("To print a file from the command line (terminal window) use the command \"%s <file>\".
-", ($queue ne $default ? "lpr -P $queue" : "lpr")) .
-N("This command you can also use in the \"Printing command\" field of the printing dialogs of many applications. But here do not supply the file name because the file to print is provided by the application.
-") .
-(!$raw ?
-N("
-The \"%s\" command also allows to modify the option settings for a particular printing job. Simply add the desired settings to the command line, e. g. \"%s <file>\". ", "lpr", ($queue ne $default ? "lpr -P $queue -Z option=setting -Z switch" : "lpr -Z option=setting -Z switch")) .
-N("To get a list of the options available for the current printer click on the \"Print option list\" button.") . $hplip . $hp11000fw : $hplip . $hp11000fw);
- } elsif ($spooler eq "lpd") {
- $dialogtext =
-N("To print a file from the command line (terminal window) use the command \"%s <file>\".
-", ($queue ne $default ? "lpr -P $queue" : "lpr")) .
-N("This command you can also use in the \"Printing command\" field of the printing dialogs of many applications. But here do not supply the file name because the file to print is provided by the application.
-") .
-(!$raw ?
-N("
-The \"%s\" command also allows to modify the option settings for a particular printing job. Simply add the desired settings to the command line, e. g. \"%s <file>\". ", "lpr", ($queue ne $default ? "lpr -P $queue -o option=setting -o switch" : "lpr -o option=setting -o switch")) .
-N("To get a list of the options available for the current printer click on the \"Print option list\" button.") . $hplip . $hp11000fw : $hplip . $hp11000fw);
- } elsif ($spooler eq "pdq") {
- $dialogtext =
-N("To print a file from the command line (terminal window) use the command \"%s <file>\" or \"%s <file>\".
-", ($queue ne $default ? "pdq -P $queue" : "pdq"), ($queue ne $default ? "lpr -P $queue" : "lpr")) .
-N("This command you can also use in the \"Printing command\" field of the printing dialogs of many applications. But here do not supply the file name because the file to print is provided by the application.
-") .
-N("You can also use the graphical interface \"xpdq\" for setting options and handling printing jobs.
-If you are using KDE as desktop environment you have a \"panic button\", an icon on the desktop, labeled with \"STOP Printer!\", which stops all print jobs immediately when you click it. This is for example useful for paper jams.
-") .
-(!$raw ?
-N("
-The \"%s\" and \"%s\" commands also allow to modify the option settings for a particular printing job. Simply add the desired settings to the command line, e. g. \"%s <file>\".
-", "pdq", "lpr", ($queue ne $default ? "pdq -P $queue -aoption=setting -oswitch" : "pdq -aoption=setting -oswitch")) .
-N("To know about the options available for the current printer read either the list shown below or click on the \"Print option list\" button.%s%s%s
-
-", $hplip, $hp11000fw) . printer::main::help_output($printer, 'pdq') :
- $hplip . $hp11000fw);
- }
- my $windowtitle = ($hplip ?
- N("Using/Maintaining the printer \"%s\"", $queue) :
- N("Printing on the printer \"%s\"", $queue));
- if (!$raw && !$cupsremote) {
- my $choice;
- while ($choice ne N("Close")) {
- $choice = $in->ask_from_list_(
- $windowtitle, $dialogtext,
- [ N("Print option list"), N("Close") ],
- N("Close"));
- if ($choice ne N("Close")) {
- my $_w = $in->wait_message(N("Printerdrake"),
- N("Printing option list..."));
- printer::main::print_optionlist($printer);
- }
- }
- } else {
- $in->ask_warn($windowtitle, $dialogtext);
- }
-}
-
-sub hplip_help {
- my ($makemodel, $deviceuri, $hplipentry) = @_;
- return "" if (!$hplipentry && $deviceuri !~ m!^hp:/!);
- if (!$hplipentry) {
- $hplipentry =
- printer::main::hplip_device_entry_from_uri($deviceuri);
- return "" if !$hplipentry;
- }
-
- my $text = N("Your %s is set up with HP's HPLIP driver software. This way many special features of your printer are supported.\n\n", $makemodel);
-
- if ($hplipentry->{scan}) {
- $text .= N("The scanner in your printer can be used with the usual SANE software, for example Kooka or XSane (Both in the Multimedia/Graphics menu). ");
- $text .= N("Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to share your scanner on the network.\n\n");
- }
-
- if (($hplipentry->{card} == 2) && ($deviceuri =~ m!/usb/!i)) {
- $text .= N("The memory card readers in your printer can be accessed like a usual USB mass storage device. ");
- $text .= N("After inserting a card a hard disk icon to access the card should appear on your desktop.\n\n");
- } elsif ($hplipentry->{card} > 0) {
- $text .= N("The memory card readers in your printer can be accessed using HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) clicking the \"Access Photo Cards...\" button on the \"Functions\" tab. ");
- $text .= N("Note that this is very slow, reading the pictures from the camera or a USB card reader is usually faster.\n\n");
- }
-
- $text .= N("HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a lot of status monitoring and maintenance functions for your %s:\n\n", $makemodel);
- $text .= N(" - Ink level/status info\n") if $hplipentry->{status};
- $text .= N(" - Ink nozzle cleaning\n") if $hplipentry->{clean};
- $text .= N(" - Print head alignment\n") if $hplipentry->{align};
- $text .= N(" - Color calibration\n") if $hplipentry->{colorcal};
-
- $text .= "\n";
-
- return $text;
-}
-
-sub copy_queues_from {
- my ($printer, $in, $oldspooler) = @_;
-
- local $::isEmbedded = 0;
-# $in->set_help('copyQueues') if $::isInstall;
- my $newspooler = $printer->{SPOOLER};
- my @oldqueues;
- my @queueentries;
- my @queuesselected;
- my $newspoolerstr;
- my $oldspoolerstr;
- my $noninteractive = 0;
- {
- my $_w = $in->wait_message(N("Printerdrake"),
- N("Reading printer data..."));
- @oldqueues = printer::main::get_copiable_queues($oldspooler, $newspooler);
- @oldqueues = sort(@oldqueues);
- $newspoolerstr = $printer::data::spoolers{$newspooler}{short_name};
- $oldspoolerstr = $printer::data::spoolers{$oldspooler}{short_name};
- foreach (@oldqueues) {
- push @queuesselected, 1;
- push @queueentries, { text => $_, type => 'bool',
- val => \$queuesselected[-1] };
- }
- # LPRng and LPD use the same config files, therefore one sees the
- # queues of LPD when one uses LPRng and vice versa, but these queues
- # do not work. So automatically transfer all queues when switching
- # between LPD and LPRng.
- if ($oldspooler =~ /^lp/ && $newspooler =~ /^lp/) {
- $noninteractive = 1;
- }
- }
- if ($noninteractive ||
- $in->ask_from_(
- { title => N("Transfer printer configuration"),
- messages => N("You can copy the printer configuration which you have done for the spooler %s to %s, your current spooler. All the configuration data (printer name, description, location, connection type, and default option settings) is overtaken, but jobs will not be transferred.
-Not all queues can be transferred due to the following reasons:
-", $oldspoolerstr, $newspoolerstr) .
-($newspooler eq "cups" ? N("CUPS does not support printers on Novell servers or printers sending the data into a free-formed command.
-") :
- ($newspooler eq "pdq" ? N("PDQ only supports local printers, remote LPD printers, and Socket/TCP printers.
-") :
- N("LPD and LPRng do not support IPP printers.
-"))) .
-N("In addition, queues not created with this program or \"foomatic-configure\" cannot be transferred.") .
-if_($oldspooler eq "cups", N("
-Also printers configured with the PPD files provided by their manufacturers or with native CUPS drivers cannot be transferred.")) . N("
-Mark the printers which you want to transfer and click
-\"Transfer\"."),
- cancel => N("Do not transfer printers"),
- ok => N("Transfer")
- },
- \@queueentries
- )) {
- my $queuecopied = 0;
- foreach (@oldqueues) {
- if (shift(@queuesselected)) {
- my $oldqueue = $_;
- my $newqueue = $_;
- if (!$printer->{configured}{$newqueue} || $noninteractive ||
- $in->ask_from_(
- { title => N("Transfer printer configuration"),
- messages => N("A printer named \"%s\" already exists under %s.
-Click \"Transfer\" to overwrite it.
-You can also type a new name or skip this printer.",
- $newqueue, $newspoolerstr),
- ok => N("Transfer"),
- cancel => N("Skip"),
- callbacks => { complete => sub {
- unless ($newqueue =~ /^\w+$/) {
- $in->ask_warn(N("Error"), N("Name of printer should contain only letters, numbers and the underscore"));
- return 1, 0;
- }
- if ($printer->{configured}{$newqueue}
- && $newqueue ne $oldqueue &&
- !$in->ask_yesorno(N("Warning"), N("The printer \"%s\" already exists,\ndo you really want to overwrite its configuration?",
- $newqueue),
- 0)) {
- return 1, 0; # Let the user correct the name
- }
- return 0;
- } }
- },
- [{label => N("New printer name"),val => \$newqueue }])) {
- {
- my $_w = $in->wait_message(N("Printerdrake"),
- N("Transferring %s...", $oldqueue));
- printer::main::copy_foomatic_queue($printer, $oldqueue,
- $oldspooler, $newqueue) and
- $queuecopied = 1;
- }
- if ($oldqueue eq $printer->{DEFAULT}) {
- # Make the former default printer the new default
- # printer if the user does not reject
- if ($noninteractive ||
- $in->ask_yesorno(
- N("Transfer printer configuration"),
- N("You have transferred your former default printer (\"%s\"), Should it be also the default printer under the new printing system %s?", $oldqueue, $newspoolerstr), 1)) {
- $printer->{DEFAULT} = $newqueue;
- printer::default::set_printer($printer);
- }
- }
- }
- }
- }
- if ($queuecopied) {
- my $_w = $in->wait_message(N("Printerdrake"),
- N("Refreshing printer data..."));
- printer::main::read_configured_queues($printer);
- }
- }
-}
-
-sub start_network {
- my ($in, $upNetwork) = @_;
- local $::isEmbedded = 0;
- my $_w = $in->wait_message(N("Printerdrake"),
- N("Starting network..."));
- if ($::isInstall) {
- my $ret;
- if ($upNetwork) {
- $ret = &$upNetwork();
- undef $upNetwork;
- sleep(1);
- }
- return $ret;
- } else { return printer::services::start("network") }
-}
-
-sub network_configured() {
- # Do configured networks (/etc/sysconfig/network-scripts/ifcfg*) exist?
- my @netscripts = all("$::prefix/etc/sysconfig/network-scripts");
- my $netconfigured = 0;
- (/ifcfg-/ and !/(ifcfg-lo|:|rpmsave|rpmorig|rpmnew)/ and
- !/(~|\.bak)$/ and $netconfigured = 1) foreach @netscripts;
- return $netconfigured;
-}
-
-sub check_network {
-
- # This routine is called whenever the user tries to configure a remote
- # printer. It checks the state of the network functionality to assure
- # that the network is up and running so that the remote printer is
- # reachable.
-
- my ($printer, $in, $upNetwork, $b_dontconfigure) = @_;
-
- local $::isEmbedded = 0;
- # Any additional dialogs caused by this subroutine should appear as
- # extra windows and not embedded in the "Add printer" wizard.
- local $::isWizard = 0;
-
-# $in->set_help('checkNetwork') if $::isInstall;
-
- # First check: Do configured networks
- # (/etc/sysconfig/network-scripts/ifcfg*) exist?
-
- if (!$b_dontconfigure && !network_configured()) {
- my $go_on = 0;
- while (!$go_on) {
- my $choice = N("Configure the network now");
- if ($in->ask_from(N("Network functionality not configured"),
- N("You are going to configure a remote printer. This needs working network access, but your network is not configured yet. If you go on without network configuration, you will not be able to use the printer which you are configuring now. How do you want to proceed?"),
- [ { val => \$choice, type => 'list',
- list => [ N("Configure the network now"),
- N("Go on without configuring the network") ] } ])) {
- if ($choice eq N("Configure the network now")) {
- if ($::isInstall) {
- my $o = $in;
- require network::netconnect;
- network::netconnect::real_main($o->{net}, $o, $o->{modules_conf});
- } else {
- system("/usr/sbin/drakconnect");
- }
- $go_on = network_configured();
- } else {
- return 1;
- }
- } else {
- return 0;
- }
- }
- }
-
- # Do not try to start the network if it is not configured
- if (!network_configured()) { return 0 }
-
- # Second check: Is the network running?
-
- if (printer::detect::network_running()) { return 1 }
-
- # The network is configured now, start it.
- if (!start_network($in, $upNetwork) &&
- (!$b_dontconfigure || $::isInstall)) {
- $in->ask_warn(N("Warning"),
-($::isInstall ?
-N("The network configuration done during the installation cannot be started now. Please check whether the network is accessible after booting your system and correct the configuration using the %s Control Center, section \"Network & Internet\"/\"Connection\", and afterwards set up the printer, also using the %s Control Center, section \"Hardware\"/\"Printer\"", $shortdistroname, $shortdistroname) :
-N("The network access was not running and could not be started. Please check your configuration and your hardware. Then try to configure your remote printer again.")));
- return 0;
- }
-
- # Give a SIGHUP to the daemon and in case of CUPS do also the
- # automatic configuration of broadcasting/access permissions
- # The daemon is not really restarted but only SIGHUPped to not
- # interrupt print jobs.
-
- my $_w = $in->wait_message(N("Printerdrake"),
- N("Restarting printing system..."));
-
- return printer::main::SIGHUP_daemon($printer->{SPOOLER});
-
-}
-
-sub security_check {
- # Check the security mode and when in "high" or "paranoid" mode ask the
- # user whether he really wants to configure printing.
- my ($spooler, $security, $o_in) = @_;
-
- local $::isEmbedded = 0;
- # Any additional dialogs caused by this subroutine should appear as
- # extra windows and not embedded in the "Add printer" wizard.
- local $::isWizard = 0;
-
-# $in->set_help('securityCheck') if $::isInstall;
-
- # Exit silently if the spooler is PDQ
- if ($spooler eq "pdq") { return 1 }
-
- # Exit silently in medium or lower security levels
- if (!$security || $security < 4) { return 1 }
-
- # Exit silently if the current spooler is already activated for the current
- # security level
- if (printer::main::spooler_in_security_level($spooler, $security)) { return 1 }
-
- # Tell user in which security mode he is and ask him whether he really
- # wants to activate the spooler in the given security mode. Stop the
- # operation of installing the spooler if he disagrees.
- my $securitystr = ($security == 4 ? N("high") : N("paranoid"));
- if ($o_in &&
- $o_in->ask_yesorno(N("Installing a printing system in the %s security level", $securitystr),
- N("You are about to install the printing system %s on a system running in the %s security level.
-
-This printing system runs a daemon (background process) which waits for print jobs and handles them. This daemon is also accessible by remote machines through the network and so it is a possible point for attacks. Therefore only a few selected daemons are started by default in this security level.
-
-Do you really want to configure printing on this machine?",
- $printer::data::spoolers{$spooler}{short_name},
- $securitystr))) {
- printer::main::add_spooler_to_security_level($spooler, $security);
- my $service;
- if ($spooler eq "lpr" || $spooler eq "lprng") {
- $service = "lpd";
- } else {
- $service = $spooler;
- }
- services::start_service_on_boot($service); #TV
- return 1;
- } else {
- return 0;
- }
-}
-
-sub start_spooler_on_boot {
- # Checks whether the spooler will be started at boot time and if not,
- # ask the user whether he wants to start the spooler at boot time.
- my ($printer, $o_in, $b_service, $b_silentspooleronboot) = @_;
- # PDQ has no daemon, so nothing needs to be started :
- return unless $b_service;
-
- local $::isEmbedded = 0;
- # Any additional dialogs caused by this subroutine should appear as
- # extra windows and not embedded in the "Add printer" wizard.
- local $::isWizard = 0;
-
-# $in->set_help('startSpoolerOnBoot') if $::isInstall;
- if (!services::starts_on_boot($b_service)) {
- if ($b_silentspooleronboot ||
- $o_in && $o_in->ask_yesorno(N("Starting the printing system at boot time"),
- N("The printing system (%s) will not be started automatically when the machine is booted.
-
-It is possible that the automatic starting was turned off by changing to a higher security level, because the printing system is a potential point for attacks.
-
-Do you want to have the automatic starting of the printing system turned on again?",
- $printer::data::spoolers{$printer->{SPOOLER}}{short_name}))) {
- services::start_service_on_boot($b_service);
- }
- }
- 1;
-}
-
-sub install_spooler {
- # installs the default spooler and start its daemon
- my ($printer, $security, $do_pkgs, $o_in, $o_upNetwork, $b_silentspooleronboot) = @_;
- local $::isEmbedded = 0;
- return 1 if $::testing;
- my $spooler = $printer->{SPOOLER};
- # If the user refuses to install the spooler in high or paranoid
- # security level, exit.
- return 0 unless security_check($spooler, $security, $o_in);
- # should not happen
- return 0 if $spooler !~ /^(rcups|cups|lpd|lprng|pqd)$/;
- my $w = $::noX || $::autoqueue || ($o_in && $o_in->wait_message(N("Printerdrake"), N("Checking installed software...")));
-
- # "lpr" conflicts with "LPRng", remove either "LPRng" or remove "lpr"
- my $packages = $spoolers{$spooler}{packages2rm};
- if ($packages && files_exist($packages->[1])) {
- undef $w;
- $w = $o_in && $o_in->wait_message(N("Printerdrake"), N("Removing %s..."), $spoolers{$packages->[0]}{short_name});
- $do_pkgs->remove_nodeps($packages->[0])
- or do {
- $o_in && $o_in->ask_warn(N("Error"),
- N("Could not remove the %s printing system!",
- $spoolers{$packages->[0]}{short_name}));
- return 0;
- };
- }
-
- # Install all packages needed to run printerdrake and the chosen spooler
- $packages = $spoolers{$spooler}{packages2add};
- push @{$packages->[0]}, @{$commonpackages->[0]};
- push @{$packages->[0]}, @{$localqueuepackages->[0]} if
- $spoolers{$spooler}{local_queues};
- push @{$packages->[1]}, @{$commonpackages->[1]};
- push @{$packages->[1]}, @{$localqueuepackages->[1]} if
- $spoolers{$spooler}{local_queues};
- if (files_exist("/usr/bin/gimp") || files_exist("/usr/bin/gimp-2.2")) {
- push @{$packages->[0]}, @{$gimpprintingpackages->[0]};
- push @{$packages->[1]}, @{$gimpprintingpackages->[1]};
- }
- if (files_exist("/usr/bin/gnome-panel")) {
- push @{$packages->[0]}, @{$gnomecupspackages->[0]};
- push @{$packages->[1]}, @{$gnomecupspackages->[1]};
- }
- if (@{$packages->[0]} && !files_exist(@{$packages->[1]})) {
- undef $w;
- $w = $o_in && $o_in->wait_message(N("Printerdrake"), N("Installing %s..."), $spoolers{$spooler}{short_name});
- $do_pkgs->install(@{$packages->[0]})
- or do {
- $o_in && $o_in->ask_warn(N("Error"),
- N("Could not install the %s printing system!",
- $spoolers{$spooler}{short_name}));
- return 0;
- };
- }
-
- undef $w;
-
- # Start the network (especially during installation), so the
- # user can set up queues to remote printers.
-
- $o_upNetwork and do {
- &$o_upNetwork();
- undef $o_upNetwork;
- sleep(1);
- };
-
- # Start daemon
- if ($spooler eq "cups") {
- # Start daemon
- # Avoid unnecessary restarting of CUPS, this blocks the
- # startup of printerdrake for several seconds.
- printer::services::start_not_running_service("cups");
- # Remove a remote CUPS server setting from the client.conf
- # file, otherwise the local CUPS daemon gets overridden.
- my ($daemonless_cups, $remote_cups_server) =
- printer::main::read_client_conf();
- if ($daemonless_cups) {
- printer::main::write_client_conf(0, $remote_cups_server);
- }
- } elsif ($spooler eq "rcups") {
- # Stop CUPS daemon, we want to run daemon-less
- services::stop("cups") if services::is_service_running("cups");
- # Do not start CUPS daemon during boot
- services::do_not_start_service_on_boot("cups");
- } elsif ($spoolers{$spooler}{service}) {
- printer::services::restart($spoolers{$spooler}{service});
- }
-
- # Set the choosen spooler tools as defaults for "lpr", "lpq",
- # "lprm", ...
- foreach (@{$spoolers{$spooler}{alternatives}}) {
- set_alternative($_->[0], $_->[1]);
- }
-
- # Remove/add PDQ panic buttons from the user's KDE Desktops
- printer::main::pdq_panic_button($spooler eq 'pdq' ? "add" : "remove");
-
- # Should it be started at boot time?
- start_spooler_on_boot($printer, $o_in, $spoolers{$spooler}{boot_spooler},
- $b_silentspooleronboot);
-
- # Give a SIGHUP to the devfsd daemon to correct the permissions
- # for the /dev/... files according to the spooler
- #printer::main::SIGHUP_daemon("devfs");
- 1;
-}
-
-sub assure_remote_server_is_set {
- my ($printer, $in) = @_;
- local $::isEmbedded = 0;
- # Check if a remote CUPS server is specified
- if (!$printer->{remote_cups_server}) {
- my ($daemonless_cups, $remote_cups_server) =
- printer::main::read_client_conf();
- if (!$daemonless_cups) {
- if (!$in->ask_from_
- ({ title => N("Remote CUPS server and no local CUPS daemon"),
- messages => N("In this mode there is no local printing system, all printing requests go directly to the server specified below. Note that it is not possible to define local print queues then and if the specified server is down it cannot be printed at all from this machine.") .
- "\n\n" .
- N("Enter the host name or IP of your CUPS server and click OK if you want to use this mode, click \"Quit\" otherwise."),
- cancel => N("Quit"),
- callbacks => {
- complete => sub {
- if ($remote_cups_server =~ /^\s*$/) {
-
- $in->ask_warn(N("Error"), N("CUPS server name or IP address missing."));
- return 1, 1;
- }
- return 0;
- },
- },
- },
- # Show the widgets
- [ { label => N("Name or IP of remote server:"),
- val => \$remote_cups_server,
- } ],
- )) {
- # Cancel was clicked
- exit 1;
- }
- printer::main::write_client_conf(1, $remote_cups_server);
- $printer->{remote_cups_server} = $remote_cups_server;
- }
- }
- 1;
-}
-
-sub assure_default_printer_is_set {
- my ($printer, $in) = @_;
- if (defined($printer->{SPOOLER}) && $printer->{SPOOLER} &&
- (!defined($printer->{DEFAULT}) || !$printer->{DEFAULT})) {
- my $_w = $::noX || $::autoqueue ||
- $in->wait_message(N("Printerdrake"),
- N("Setting Default Printer..."));
- $printer->{DEFAULT} = printer::default::get_printer($printer);
- if ($printer->{DEFAULT}) {
- # If a CUPS system has only remote printers and no default
- # printer defined, it defines the first printer whose
- # broadcast signal appeared after the start of the CUPS
- # daemon, so on every start another printer gets the default
- # printer. To avoid this, make sure that the default printer
- # is defined.
- printer::default::set_printer($printer);
- } else { $printer->{DEFAULT} = '' }
- }
-}
-
-sub set_cups_daemon_mode {
- my ($printer, $in) = @_;
- local $::isEmbedded = 0;
- my ($modechoice, $daemonless_cups, $remote_cups_server);
-
- if ($in->ask_from_
- ({ title => N("Local CUPS printing system or remote CUPS server?"),
- messages => N("The CUPS printing system can be used in two ways: ") .
- "\n\n" .
- N("1. The CUPS printing system can run locally. ") .
- N("Then locally connected printers can be used and remote printers on other CUPS servers in the same network are automatically discovered. ") .
- N("Disadvantage of this approach is, that more resources on the local machine are needed: Additional software packages need to be installed, the CUPS daemon has to run in the background and needs some memory, and the IPP port (port 631) is opened. ") .
- "\n\n" .
- N("2. All printing requests are immediately sent to a remote CUPS server. ") .
- N("Here local resource occupation is reduced to a minimum. No CUPS daemon is started or port opened, no software infrastructure for setting up local print queues is installed, so less memory and disk space is used. ") .
- N("Disadvantage is that it is not possible to define local printers then and if the specified server is down it cannot be printed at all from this machine. ") .
- "\n\n" .
- N("How should CUPS be set up on your machine?"),
- callbacks => {
- complete => sub {
- if ($modechoice eq
- N("Remote server, specify Name or IP here:") &&
- $remote_cups_server =~ /^\s*$/) {
-
- $in->ask_warn(N("Error"), N("CUPS server name or IP address missing."));
- return 1, 1;
- }
- return 0;
- },
- },
- },
- # Show the widgets
- [ { val => \$modechoice, format => \&translate,
- type => 'list',
- sort => 0,
- list => [ N("Local CUPS printing system"),
- N("Remote server, specify Name or IP here:") ] },
- { val => \$remote_cups_server,
- disabled => sub {
- $modechoice ne
- N("Remote server, specify Name or IP here:");
- } },
- ],
- )) {
- # OK was clicked, update the data
- $daemonless_cups =
- ($modechoice eq N("Remote server, specify Name or IP here:"));
- if ($daemonless_cups) {
- $printer->{SPOOLER} = "rcups";
- $printer->{remote_cups_server} = $remote_cups_server;
- } else {
- $printer->{SPOOLER} = "cups";
- undef $printer->{remote_cups_server};
- }
- printer::main::write_client_conf($daemonless_cups,
- $remote_cups_server);
- return 1;
- } else {
- # Cancel was clicked
- return 0;
- }
-}
-
-
-sub setup_default_spooler {
- my ($printer, $security, $in, $upNetwork) = @_;
- local $::isEmbedded = 0;
- my $oldspooler = $printer->{SPOOLER};
- $printer->{SPOOLER} ||= 'cups';
- my @spoolerlist = printer::main::spooler();
- if ($#spoolerlist == 1) {
- set_cups_daemon_mode($printer, $in) || return;
- } else {
- my $str_spooler =
- $in->ask_from_listf_raw({ title => N("Select Printer Spooler"),
- messages => N("Which printing system (spooler) do you want to use?"),
- interactive_help_id => 'setupDefaultSpooler',
- },
- sub { translate($_[0]) },
- \@spoolerlist,
- $spoolers{$printer->{SPOOLER}}{long_name},
- ) or return;
- $printer->{SPOOLER} = $spooler_inv{$str_spooler};
- }
- # Install the spooler if not done yet
- if (!install_spooler($printer, $security, $in->do_pkgs, $in, $upNetwork)) {
- $printer->{SPOOLER} = $oldspooler;
- return;
- }
- assure_remote_server_is_set($printer, $in)
- if ($printer->{SPOOLER} eq "rcups");
- if ($printer->{SPOOLER} ne $oldspooler) {
- # Get the queues of this spooler
- {
- my $_w = $in->wait_message(N("Printerdrake"),
- N("Reading printer data..."));
- printer::main::read_configured_queues($printer);
- }
- # Copy queues from former spooler
- copy_queues_from($printer, $in, $oldspooler)
- if ($oldspooler && ($oldspooler ne "rcups"));
- # Re-read the printer database (CUPS has additional drivers, PDQ
- # has no raw queue)
- %printer::main::thedb = ();
- assure_default_printer_is_set($printer, $in);
- }
- # Save spooler choice
- printer::default::set_spooler($printer);
- return $printer->{SPOOLER};
-}
-
-sub configure_queue {
- my ($printer, $in) = @_;
- local $::isEmbedded = 0;
- my $_w = $in->wait_message(N("Printerdrake"),
- N("Configuring printer \"%s\"...",
- $printer->{currentqueue}{queue}))
- if !$printer->{noninteractive};
- $printer->{complete} = 1;
- my $retval = printer::main::configure_queue($printer);
- $printer->{complete} = 0;
- if (!$retval && !$printer->{noninteractive}) {
- local $::isWizard = 0;
- $in->ask_warn(N("Printerdrake"),
- N("Failed to configure printer \"%s\"!",
- $printer->{currentqueue}{queue}));
- }
- return $retval;
-}
-
-sub install_foomatic {
- my ($in) = @_;
- local $::isEmbedded = 0;
- if (!$::testing &&
- !files_exist(qw(/usr/bin/foomatic-configure
- /usr/bin/foomatic-rip
- /usr/share/foomatic/db/source/driver/ljet4.xml
- /usr/share/foomatic/db/source/driver/hpijs.xml))) {
- my $_w = $in->wait_message(N("Printerdrake"),
- N("Installing Foomatic..."));
- $in->do_pkgs->install('foomatic-db-engine',
- 'foomatic-filters',
- 'foomatic-db', 'foomatic-db-hpijs')
- or do {
- $in->ask_warn(N("Error"),
- N("Could not install %s packages, %s cannot be started!",
- "Foomatic", "printerdrake"));
- exit 1;
- };
- }
-}
-
-sub wizard_close {
- my ($in, $mode) = @_;
- local $::isEmbedded = 0;
- # Leave wizard mode with congratulations screen if $mode = 1
- $::Wizard_no_previous = 1;
- $::Wizard_no_cancel = 1;
- $::Wizard_finished = 1;
- wizard_congratulations($in) if $mode == 1;
- undef $::isWizard;
- $::WizardWindow->destroy if defined $::WizardWindow;
- undef $::WizardWindow;
-}
-
-#- Program entry point for configuration of the printing system.
-sub main {
- my ($printer, $security, $in, $install_step, $upNetwork) = @_;
- # $install_step is only made use of during the installation. It is
- # 0 when this function is called during the preparation of the "Summary"
- # screen and 1 when the user clicks on "Configure" on the "Summary"
- # screen
-
- # Initialization of Printerdrake and queue auto-installation:
- # During installation we do this step only once, when we prepare
- # the "Summary" screen in case of detected local printers or when
- # the "Configure" button in the "Printer" entry of the "Summary"
- # screen is clicked. If the button is clicked after an automatic
- # installation of local printers or if it is clicked for the
- # second time, these steps are not repeated.
-
- # Set the spooler to CUPS if we arrive here during the preparation
- # of the "Summary" screen of the installation, as we have local
- # printers then (if we do not have local printers, this function
- # is not called during the preparation of the "Summary" screen).
- if (!$::isInstall || !$::printerdrake_initialized) {
- $printer->{SPOOLER} ||= 'cups'
- if ($::isInstall && $install_step == 0 && !$printer->{expert});
- init($printer, $security, $in, $upNetwork) or return;
- }
-
- # Main loop: During installation we only enter it when the user has
- # clicked on the "Configure" button in the "Summary" step. We do not
- # call it during the preparation of the "Summary" screen.
- if (!$::isInstall || $install_step == 1) {
- # Ask for a spooler when none is defined yet
- $printer->{SPOOLER} ||=
- setup_default_spooler($printer, $security, $in, $upNetwork) || return;
-
- # Save the default spooler
- printer::default::set_spooler($printer);
-
- mainwindow_interactive($printer, $security, $in, $upNetwork);
- }
- # In the installation we call the clean-up manually when we leave
- # the "Summary" step
- if (!$::isInstall) {
- final_cleanup($printer);
- }
-}
-
-sub init {
- my ($printer, $security, $in, $upNetwork) = @_;
-
- # Initialization of Printerdrake and queue auto-installation
-
- # This subroutine is called on every start of printerdrake
- # directly, from mcc, during installation, or for automatic print
- # queue setup in the background, triggered when
- # hotplug/udev/dynamic (script /etc/dynamic/script/lp.script)
- # discovers a new printer being connected and turned on.
-
- # In the latter case (background queue installation) only this
- # subroutine is called as only the automatic, non-interactive
- # print queue creation is needed. This must be totally
- # non-interactive and cannot open any window on the X desktop,
- # also packages cannot be installed, as the background process
- # cannot ask the user to insert CDs. To reach this state of
- # absolute silence, there is the global variable $::noX. If it is
- # set, all interactivity or wait message is suppressed. If
- # interactivity is required, the operation requiring interactivity
- # will be skipped.
-
- # Save the user mode, so that the same one is used on the next start
- # of Printerdrake
- printer::main::set_usermode($printer->{expert});
-
- # Get the settings for printer auto administration
- printer::main::get_auto_admin($printer);
-
- # only experts should be asked for the spooler also for background
- # installation of print it should not be asked for the spooler,
- # as this feature is only supported for CUPS.
- $printer->{SPOOLER} ||= 'cups'
- if (!$printer->{expert} || $::noX || $::autoqueue) && !$::isInstall;
-
- # If we have chosen a spooler, install it and mark it as default
- # spooler. Spooler installation is ommitted on background queue
- # installation, because this only works when CUPS is already running
- if ($printer->{SPOOLER}) {
- return 0 unless ($::noX ||
- install_spooler($printer, $security, $in->do_pkgs, $in, $upNetwork));
- assure_remote_server_is_set($printer, $in)
- if ($printer->{SPOOLER} eq "rcups") && !$::noX && !$::autoqueue;
- printer::main::read_configured_queues($printer)
- if (($printer->{SPOOLER} ne "rcups") &&
- (keys(%{$printer->{configured}}) == 0));
- printer::default::set_spooler($printer);
-
- # Get the default printer (Done before non-interactive queue setup,
- # so that former default is not lost)
- assure_default_printer_is_set($printer, $in);
- my $nodefault = !$printer->{DEFAULT};
-
- # Non-interactive setup of newly detected printers (This is done
- # only when not in expert mode, so we always have a spooler defined
- # here)
- configure_new_printers($printer, $in, $upNetwork)
- if $printer->{SPOOLER} ne "rcups";
-
- # Make sure that default printer is registered
- if ($nodefault && $printer->{DEFAULT}) {
- printer::default::set_printer($printer);
- }
- }
-
- # Turn on local printer autodetection by default
- $printer->{AUTODETECT} = 1;
- $printer->{AUTODETECTLOCAL} = 1;
- $printer->{AUTODETECTNETWORK} = 0;
- $printer->{AUTODETECTSMB} = 0;
- $printer->{CONFIGLPD} = 0;
-
- # Mark this part as done, it should not be done a second time.
- if ($::isInstall) {
- $::printerdrake_initialized = 1;
- }
-
- return 1;
-}
-
-sub mainwindow_interactive {
-
- my ($printer, $security, $in, $upNetwork) = @_;
-
- # Control variables for the main loop
- my ($menuchoice, $cursorpos) = ('', '::');
-
- while (1) {
- my ($queue, $newcursorpos) = ('', 0);
- # If networking is configured, start it, but do not ask the
- # user to configure networking. We want to know whether we
- # have a local network to suppress some buttons when there is
- # no network
- my $havelocalnetworks =
- check_network($printer, $in, $upNetwork, 1) &&
- printer::detect::getIPsInLocalNetworks() != ();
- my $havelocalnetworks_or_expert =
- $printer->{expert} || $havelocalnetworks;
-# $in->set_help('mainMenu') if $::isInstall;
- # Initialize the cursor position
- if ($cursorpos eq "::" &&
- $printer->{DEFAULT} &&
- $printer->{DEFAULT} ne "") {
- if (defined($printer->{configured}{$printer->{DEFAULT}})) {
- $cursorpos =
- $printer->{configured}{$printer->{DEFAULT}}{queuedata}{menuentry} . N(" (Default)");
- } elsif (($printer->{SPOOLER} eq "cups") ||
- ($printer->{SPOOLER} eq "rcups")) {
- $cursorpos = find { /!$printer->{DEFAULT}:[^!]*$/ } printer::cups::get_formatted_remote_queues($printer);
- }
- }
- # Generate the list of available printers
- my @printerlist =
- (sort(map { $printer->{configured}{$_}{queuedata}{menuentry}
- . ($_ eq $printer->{DEFAULT} ?
- N(" (Default)") : "") }
- keys(%{$printer->{configured}
- || {}})),
- (($printer->{SPOOLER} eq "cups") ||
- ($printer->{SPOOLER} eq "rcups") ?
- sort(printer::cups::get_formatted_remote_queues($printer)) :
- ()));
- my $noprinters = $#printerlist < 0;
- # Position the cursor where it was before (in case
- # a button was pressed).
- $menuchoice = $cursorpos;
- # Show the main dialog
- $in->ask_from_({
- title => N("Printerdrake"),
- messages => if_(!$noprinters, N("The following printers are configured. Double-click on a printer to change its settings; to make it the default printer; or to view information about it. ")) .
- if_(!$havelocalnetworks, N("\nWARNING: No local network connection active, remote printers can neither be detected nor tested!")),
- cancel => (""),
- ok => ("") },
- # List the queues
- [ if_(!$noprinters,
- { val => \$menuchoice, format => \&translate,
- sort => 0, separator => "!", tree_expanded => 1,
- quit_if_double_click => 1, allow_empty_list => 1,
- list => \@printerlist }),
- ($printer->{SPOOLER} ne "rcups" ?
- { clicked_may_quit =>
- sub {
- # Save the cursor position
- $cursorpos = $menuchoice;
- $menuchoice = '@addprinter';
- 1;
- },
- val => N("Add a new printer") } : ()),
- ((($printer->{SPOOLER} eq "cups") ||
- ($printer->{SPOOLER} eq "rcups")) &&
- $havelocalnetworks ?
- { clicked_may_quit =>
- sub {
- # Save the cursor position
- $cursorpos = $menuchoice;
- $menuchoice = '@refresh';
- 1;
- },
- val => ($noprinters ?
- N("Display all available remote CUPS printers") :
- N("Refresh printer list (to display all available remote CUPS printers)")) } : ()),
- ((($printer->{SPOOLER} eq "cups") ||
- ($printer->{SPOOLER} eq "rcups")) &&
- $havelocalnetworks_or_expert ?
- { clicked_may_quit =>
- sub {
- # Save the cursor position
- $cursorpos = $menuchoice;
- $menuchoice = '@cupsconfig';
- 1;
- },
- val => N("CUPS configuration") } : ()),
- (($printer->{SPOOLER} eq "cups") ?
- { clicked_may_quit =>
- sub {
- # Save the cursor position
- $cursorpos = $menuchoice;
- $menuchoice = '@autoadminconfig';
- 1;
- },
- val => N("Configure Auto Administration") } : ()),
- ($printer->{expert} &&
- (files_exist(qw(/usr/bin/pdq)) ||
- files_exist("/usr/$lib/filters/lpf",
- "/usr/sbin/lpd")) ?
- { clicked_may_quit =>
- sub {
- # Save the cursor position
- $cursorpos = $menuchoice;
- $menuchoice = '@spooler';
- 1;
- },
- val => N("Change the printing system") } :
- ()),
- { clicked_may_quit =>
- sub {
- # Save the cursor position
- $cursorpos = $menuchoice;
- $menuchoice = '@usermode';
- 1;
- },
- val => ($printer->{expert} ? N("Normal Mode") :
- N("Expert Mode")) },
- { clicked_may_quit =>
- sub { $menuchoice = '@quit'; 1 },
- val => ($::isEmbedded || $::isInstall ?
- N("Done") : N("Quit")) },
- ]);
- # Toggle expert mode and standard mode
- if ($menuchoice eq '@usermode') {
- $printer->{expert} = printer::main::set_usermode(!$printer->{expert});
- # Read printer database for the new user mode
- %printer::main::thedb = ();
- # Modify menu entries to switch the tree
- # structure between expert/normal mode.
- my $spooler =
- $spoolers{$printer->{SPOOLER}}{short_name};
- if ($printer->{expert}) {
- foreach (keys(%{$printer->{configured}})) {
- $printer->{configured}{$_}{queuedata}{menuentry} =~
- s/^/$spooler!/;
- }
- $cursorpos =~ s/^/$spooler!/;
- } else {
- foreach (keys(%{$printer->{configured}})) {
- $printer->{configured}{$_}{queuedata}{menuentry} =~
- s/^$spooler!//;
- }
- $cursorpos =~ s/^$spooler!//;
- }
- next;
- }
- # Refresh printer list
- next if $menuchoice eq '@refresh';
- # Configure CUPS
- if ($menuchoice eq '@cupsconfig') {
- config_cups($printer, $security, $in, $upNetwork);
- next;
- }
- # Configure auto administration
- if ($menuchoice eq '@autoadminconfig') {
- config_auto_admin($printer, $in);
- next;
- }
- # Call function to switch to another spooler
- if ($menuchoice eq '@spooler') {
- $printer->{SPOOLER} = setup_default_spooler($printer, $security, $in, $upNetwork) || $printer->{SPOOLER};
- next;
- }
- # Add a new print queue
- if ($menuchoice eq '@addprinter') {
- $newcursorpos = add_printer($printer, $in, $upNetwork);
- }
- # Edit an existing print queue
- if ($menuchoice =~ /!([^\s!:]+):[^!]*$/) {
- # Rip the queue name out of the chosen menu entry
- $queue = $1;
- # Save the cursor position
- $cursorpos = $menuchoice;
- # Edit the queue
- edit_printer($printer, $in, $upNetwork, $queue);
- $newcursorpos = 1;
- }
- #- Close printerdrake
- $menuchoice eq '@quit' and last;
-
- if ($newcursorpos) {
- # Set the cursor onto the current menu entry
- $queue = $printer->{QUEUE};
- if ($queue) {
- # Make sure that the cursor is still at the same position
- # in the main menu when one has modified something on the
- # current printer
- if (!$printer->{configured}{$printer->{QUEUE}}) {
- my $s1 = N(" (Default)");
- my $s2 = $s1;
- $s2 =~ s/\(/\\(/;
- $s2 =~ s/\)/\\)/;
- $cursorpos .= $s1
- if $printer->{QUEUE} eq
- $printer->{DEFAULT} && $cursorpos !~ /$s2/;
- } else {
- $cursorpos =
- $printer->{configured}{$queue}{queuedata}{menuentry} .
- ($queue eq $printer->{DEFAULT} ?
- N(" (Default)") : '');
- }
- } else {
- $cursorpos = "::";
- }
- } else {
- delete($printer->{QUEUE});
- }
- }
-}
-
-sub add_printer {
-
- my ($printer, $in, $upNetwork) = @_;
-
- # The add-printer wizard of printerdrake, adds a queue for a local
- # or remote printer interactively
-
- # Tell subroutines that we add a new printer
- $printer->{NEW} = 1;
-
- # Printer queue name
- my $queue = "";
-
- #- Set default values for a new queue
- $printer_type_inv{$printer->{TYPE}} or
- $printer->{TYPE} = printer::default::printer_type();
- $printer->{currentqueue} = { queue => "",
- foomatic => 0,
- desc => "",
- loc => "",
- make => "",
- model => "",
- printer => "",
- driver => "",
- connect => "",
- dd => 1,
- att => 0,
- delay => 30,
- spooler => $printer->{SPOOLER},
- };
- #- Do all the configuration steps for a new queue
- if (!$::isInstall &&
- $in->isa('interactive::gtk')) {
- local $::isEmbedded = 0;
- undef $::WizardTable;
- undef $::WizardWindow;
- # Enter wizard mode (only after installation)
- $::Wizard_pix_up = "printerdrake.png";
- $::Wizard_title = N("Add a new printer");
- $::isWizard = 1;
- # Wizard welcome screen
- step_0:
- $::Wizard_no_previous = 1;
- undef $::Wizard_no_cancel; undef $::Wizard_finished;
- wizard_welcome($printer, $in, $upNetwork) or do {
- wizard_close($in, 0);
- return 0;
- };
- undef $::Wizard_no_previous;
- eval {
- #do {
- # eval to catch wizard cancel. The wizard stuff
- # should be in a separate function with steps. see
- # drakgw.
- $printer->{expert} or do {
- if ($printer->{CONFIGLPD}) {
- $printer->{TYPE} = "LPD";
- } else {
- $printer->{TYPE} = "LOCAL";
- }
- };
- step_1:
- !$printer->{expert} or choose_printer_type($printer, $in, $upNetwork) or
- goto step_0;
- step_2:
- setup_printer_connection($printer, $in, $upNetwork) or
- do {
- goto step_1 if $printer->{expert};
- goto step_0;
- };
- get_db_entry($printer, $in);
- step_3_9:
- if (!$printer->{expert} && !$printer->{MANUAL}) {
- is_model_correct($printer, $in) or goto step_2;
- }
- step_4:
- # Remember DB entry for "Previous" button in wizard
- my $dbentry = $printer->{DBENTRY};
- if ($printer->{expert} || $printer->{MANUAL} ||
- $printer->{MANUALMODEL}) {
- choose_model($printer, $in) or do {
- # Restore DB entry
- $printer->{DBENTRY} = $dbentry;
- goto step_3_9 if $printer->{MANUALMODEL} &&
- $printer->{DBENTRY};
- goto step_2;
- };
- }
- get_printer_info($printer, $in) or do {
- goto step_4 if $printer->{expert} || $printer->{MANUAL} ||
- $printer->{MANUALMODEL};
- goto step_3_9;
- };
- $queue = generate_queuename($printer);
- step_5:
- setup_options($printer, $in) or
- goto step_4;
- step_6:
- if ($printer->{expert} || $printer->{MANUAL} ||
- $printer->{MORETHANONE}) {
- choose_printer_name($printer, $in) or do {
- goto step_5 if $printer->{expert} || $printer->{MANUAL};
- goto step_4 if $printer->{MANUALMODEL};
- goto step_3_9;
- };
- }
- configure_queue($printer, $in) or die 'wizcancel';
- undef $printer->{MANUAL} if $printer->{MANUAL};
- step_7:
- $::Wizard_no_previous = 1;
- setasdefault($printer, $in);
- my $testpages = print_testpages($printer, $in, $printer->{TYPE} !~ /LOCAL/ && $upNetwork);
- if ($testpages == 1) {
- # User was content with test pages
- # Leave wizard mode with congratulations screen
- wizard_close($in, 1);
- } elsif ($testpages == 2) {
- # User was not content with test pages
- # Leave wizard mode without congratulations
- # screen
- wizard_close($in, 0);
- $queue = $printer->{QUEUE};
- edit_printer($printer, $in, $upNetwork, $queue);
- return 1;
- } else {
- # "Previous" button clicked in test page dialog
- goto step_7;
- }
- };
- die if $@ && $@ !~ /^wizcancel/;
- wizard_close($in, 0);
- } else {
- # Print queue setup without wizard (for installation)
- $printer->{expert} or $printer->{TYPE} = "LOCAL";
- wizard_welcome($printer, $in, $upNetwork) or return 0;
- $printer->{expert} or do {
- if ($printer->{CONFIGLPD}) {
- $printer->{TYPE} = "LPD";
- } else {
- $printer->{TYPE} = "LOCAL";
- }
- };
- !$printer->{expert} or choose_printer_type($printer, $in, $upNetwork) or return 0;
- setup_printer_connection($printer, $in, $upNetwork) or return 0;
- get_db_entry($printer, $in);
- if (!$printer->{expert} && !$printer->{MANUAL}) {
- is_model_correct($printer, $in) or return 0;
- }
- if ($printer->{expert} || $printer->{MANUAL} ||
- $printer->{MANUALMODEL}) {
- choose_model($printer, $in) or return 0;
- }
- get_printer_info($printer, $in) or return 0;
- $queue = generate_queuename($printer);
- setup_options($printer, $in) or return 0;
- if ($printer->{expert} || $printer->{MANUAL} ||
- $printer->{MORETHANONE}) {
- choose_printer_name($printer, $in) or return 0;
- }
- configure_queue($printer, $in) or return 0;
- undef $printer->{MANUAL} if $printer->{MANUAL};
- setasdefault($printer, $in);
- my $testpages = print_testpages($printer, $in, $printer->{TYPE} !~ /LOCAL/ && $upNetwork);
- if ($testpages == 2) {
- # User was not content with test pages
- $queue = $printer->{QUEUE};
- edit_printer($printer, $in, $upNetwork, $queue);
- return 1;
- }
- }
-
- # Delete some variables
- cleanup($printer);
-
- return 1;
-}
-
-sub edit_printer {
-
- my ($printer, $in, $upNetwork, $queue) = @_;
-
- # The menu for doing modifications on an existing print queue
-
- # Cursor position in queue modification window
- my $modify = N("Printer options");
-
- # Tell subroutines that we modify the printer
- $printer->{NEW} = 0;
-
- while (defined($printer->{QUEUE}) ||
- defined($queue)) { # Do not continue when current queue
- # is deleted
- # Modify a queue, ask which part should be modified
-# $in->set_help('modifyPrinterMenu') if $::isInstall;
- # Get some info to display
- my $infoline;
- if ($printer->{configured}{$queue}) {
- # Here we must regenerate the menu entry, because the
- # parameters can be changed.
- printer::main::make_menuentry($printer,$queue);
- if ($printer->{configured}{$queue}{queuedata}{menuentry} =~
- /!([^!]+)$/) {
- $infoline = $1 .
- ($queue eq $printer->{DEFAULT} ? N(" (Default)") : '') .
- ($printer->{configured}{$queue}{queuedata}{desc} ?
- ", Descr.: $printer->{configured}{$queue}{queuedata}{desc}" : '') .
- ($printer->{configured}{$queue}{queuedata}{loc} ?
- ", Loc.: $printer->{configured}{$queue}{queuedata}{loc}" : '') .
- ($printer->{expert} ?
- ", Driver: $printer->{configured}{$queue}{queuedata}{driver}" : '');
- }
- } else {
- # Extract the entry for a remote CUPS queue from the menu entry
- # for it.
- my $menuentry = find { /!$queue:[^!]*$/ } printer::cups::get_formatted_remote_queues($printer);
- $infoline = $1 if $menuentry =~ /!([^!]+)$/;
- }
- # Mark the printer queue which we edit
- $printer->{QUEUE} = $queue;
- if ($in->ask_from_(
- { title => N("Modify printer configuration"),
- messages =>
- N("Printer %s%s
-What do you want to modify on this printer?",
- $infoline,
- if_(($printer->{SPOOLER} =~ /cups/) &&
- !printer::cups::queue_enabled($queue),
- "\n" . N("This printer is disabled"))),
- cancel => N("Close"),
- ok => N("Do it!")
- },
- [ { val => \$modify, format => \&translate,
- type => 'list', separator => '|',
- list => [ ($printer->{configured}{$queue} ?
- (N("Printer connection type"),
- N("Printer name, description, location"),
- ($printer->{expert} ?
- N("Printer manufacturer, model, driver") :
- N("Printer manufacturer, model")),
- if_($printer->{configured}{$queue}{args},
- N("Printer options"))) : ()),
- if_($queue ne $printer->{DEFAULT},
- N("Set this printer as the default")),
- if_(($printer->{SPOOLER} ne "pdq") &&
- $printer->{configured}{$queue},
- if_(($printer->{SPOOLER} !~ /cups/) ||
- !printer::cups::queue_enabled($queue),
- N("Enable Printer")),
- if_(($printer->{SPOOLER} !~ /cups/) ||
- printer::cups::queue_enabled($queue),
- N("Disable Printer"))),
- if_(($printer->{SPOOLER} eq "cups") &&
- $printer->{configured}{$queue} &&
- ($printer->{configured}{$queue}{queuedata}{connect} !~ m!^hp:/!),
- N("Printer communication error handling")),
- N("Print test pages"),
- N("Learn how to use this printer"),
- if_($printer->{configured}{$queue}, N("Remove printer")) ] } ])) {
-
- #- Copy the queue data and work on the copy
- $printer->{currentqueue} = {};
- if ($printer->{configured}{$queue}) {
- printer::main::copy_printer_params($printer->{configured}{$queue}{queuedata}, $printer->{currentqueue});
- }
- #- keep in mind old name of queue (in case of changing)
- $printer->{OLD_QUEUE} = $printer->{QUEUE} = $queue;
- #- Reset some variables
- $printer->{OLD_CHOICE} = undef;
- $printer->{DBENTRY} = undef;
- #- Which printer type did we have before (check
- #- beginning of URI)
- if ($printer->{configured}{$queue}) {
- if (($printer->{currentqueue}{connect} =~
- m!^ptal://?hpjd!) ||
- ($printer->{currentqueue}{connect} =~
- m!^hp:/net!)) {
- $printer->{TYPE} = "SOCKET";
- } else {
- foreach my $type (qw(file parallel serial usb ptal hp
- mtink lpd socket smb ncp
- postpipe)) {
- if ($printer->{currentqueue}{connect} =~
- /^$type:/) {
- $printer->{TYPE} =
- ($type =~
- /(file|parallel|serial|usb|ptal|hp|mtink)/ ?
- 'LOCAL' : uc($type));
- last;
- }
- }
- }
- }
-
- # Do the chosen task
- if ($modify eq N("Printer connection type")) {
- choose_printer_type($printer, $in, $upNetwork) &&
- setup_printer_connection($printer, $in, $upNetwork) &&
- #get_db_entry($printer, $in) &&
- get_printer_info($printer, $in) &&
- configure_queue($printer, $in);
- } elsif ($modify eq N("Printer name, description, location")) {
- choose_printer_name($printer, $in) and
- get_printer_info($printer, $in) and
- configure_queue($printer, $in) or next;
- # Delete old queue when it was renamed
- if (lc($printer->{QUEUE}) ne lc($printer->{OLD_QUEUE})) {
- my $_w = $in->wait_message(
- N("Printerdrake"),
- N("Removing old printer \"%s\"...",
- $printer->{OLD_QUEUE}));
- printer::main::remove_queue($printer, $printer->{OLD_QUEUE});
- # If the default printer was renamed, correct the
- # the default printer setting of the spooler
- if ($queue eq $printer->{DEFAULT}) {
- $printer->{DEFAULT} = $printer->{QUEUE};
- printer::default::set_printer($printer);
- }
- $queue = $printer->{QUEUE};
- }
- } elsif ($modify eq N("Printer manufacturer, model, driver") ||
- $modify eq N("Printer manufacturer, model")) {
- get_db_entry($printer, $in);
- choose_model($printer, $in) &&
- get_printer_info($printer, $in) &&
- setup_options($printer, $in) &&
- configure_queue($printer, $in);
- } elsif ($modify eq N("Printer options")) {
- get_printer_info($printer, $in) &&
- setup_options($printer, $in) &&
- configure_queue($printer, $in);
- } elsif ($modify eq N("Set this printer as the default")) {
- default_printer($printer, $in, $queue);
- # The "Set this printer as the default" menu entry will
- # disappear if the printer is the default, so go back to the
- # default entry
- $modify = N("Printer options");
- } elsif ($modify eq N("Enable Printer")) {
- printer::main::enable_disable_queue($printer, $queue, 1) &&
- $in->ask_warn(N("Enable Printer"),
- N("Printer \"%s\" is now enabled.",
- $queue));
- $modify = N("Disable Printer");
- } elsif ($modify eq N("Disable Printer")) {
- printer::main::enable_disable_queue($printer, $queue, 0) &&
- $in->ask_warn(N("Disable Printer"),
- N("Printer \"%s\" is now disabled.",
- $queue));
- $modify = N("Enable Printer");
- } elsif ($modify eq N("Printer communication error handling")) {
- config_backend_error_handling($printer, $in) &&
- get_printer_info($printer, $in) &&
- configure_queue($printer, $in);
- } elsif ($modify eq N("Print test pages")) {
- print_testpages($printer, $in, $upNetwork);
- } elsif ($modify eq N("Learn how to use this printer")) {
- printer_help($printer, $in);
- } elsif ($modify eq N("Remove printer")) {
- if (remove_printer($printer, $in, $queue)) {
- # Let the main menu cursor go to the default
- # position
- delete $printer->{QUEUE};
- undef $queue;
- }
- }
-
- # Delete some variables
- cleanup($printer);
- } else {
- # User closed the dialog
-
- # Delete some variables
- cleanup($printer);
-
- last;
- }
- }
-}
-
-sub remove_printer {
-
- my ($printer, $in, $queue) = @_;
-
- # Asks the user whether he really wants to remove the selected printer
- # and, if yes, removes it. The default printer will be reassigned if
- # needed.
-
- if ($in->ask_yesorno(
- N("Warning"), N("Do you really want to remove the printer \"%s\"?", $queue),
- 1)) {
- my $_w = $in->wait_message(
- N("Printerdrake"),
- N("Removing printer \"%s\"...", $queue));
- if (printer::main::remove_queue($printer, $queue)) {
- # Define a new default printer if we have
- # removed the default one
- if ($queue eq $printer->{DEFAULT}) {
- my @k = sort(keys %{$printer->{configured}});
- $printer->{DEFAULT} = $k[0];
- printer::default::set_printer($printer) if @k;
- }
- return 1;
- }
- }
- return 0;
-}
-
-sub default_printer {
-
- my ($printer, $in, $queue) = @_;
-
- # Makes the given queue the default queue and gives an information
- # message
-
- $printer->{DEFAULT} = $queue;
- printer::default::set_printer($printer);
- $in->ask_warn(N("Default printer"),
- N("The printer \"%s\" is set as the default printer now.",
- $queue));
- return 1;
-}
-
-sub cleanup {
- my ($printer) = @_;
- # Clean up the $printer data structure after printer manipulations
- foreach (qw(OLD_QUEUE TYPE str_type DBENTRY ARGS
- OLD_CHOICE MANUAL)) {
- delete($printer->{$_});
- }
- $printer->{currentqueue} = {};
- $printer->{complete} = 0;
-}
-
-sub final_cleanup {
- my ($printer) = @_;
- # Clean up the $printer data structure for auto-install log
- foreach my $queue (keys %{$printer->{configured}}) {
- foreach my $item (keys %{$printer->{configured}{$queue}}) {
- delete($printer->{configured}{$queue}{$item}) if $item ne "queuedata";
- }
- delete($printer->{configured}{$queue}{queuedata}{menuentry});
- }
- foreach (qw(Old_queue OLD_QUEUE QUEUE TYPE str_type currentqueue DBENTRY ARGS complete OLD_CHOICE NEW MORETHANONE MANUALMODEL AUTODETECT AUTODETECTLOCAL AUTODETECTNETWORK AUTODETECTSMB CONFIGLPD noninteractive expert))
- { delete $printer->{$_} }
-}
-
diff --git a/perl-install/printer/services.pm b/perl-install/printer/services.pm
deleted file mode 100644
index f94cc5af5..000000000
--- a/perl-install/printer/services.pm
+++ /dev/null
@@ -1,63 +0,0 @@
-package printer::services;
-
-use strict;
-use services;
-use run_program;
-
-sub restart ($) {
- my ($service) = @_;
- if (services::restart($service)) {
- # CUPS needs some time to come up.
- wait_for_cups() if $service eq "cups";
- return 1;
- } else { return 0 }
-}
-
-sub start ($) {
- my ($service) = @_;
- if (services::start($service)) {
- # CUPS needs some time to come up.
- wait_for_cups() if $service eq "cups";
- return 1;
- } else { return 0 }
-}
-
-sub start_not_running_service ($) {
- my ($service) = @_;
- # The exit status is not zero when the service is not running
- if (services::start_not_running_service($service)) {
- return 0;
- } else {
- run_program::rooted($::prefix, "/etc/rc.d/init.d/$service", "start");
- if (($? >> 8) != 0) {
- return 0;
- } else {
- # CUPS needs some time to come up.
- wait_for_cups() if $service eq "cups";
- return 1;
- }
- }
-}
-
-sub wait_for_cups() {
- # CUPS needs some time to come up. Wait up to 30 seconds, checking
- # whether CUPS is ready.
- my $cupsready = 0;
- my $i;
- for ($i = 0; $i < 30; $i++) {
- # Check whether CUPS is running without any console output
- system(($::testing ? $::prefix : "chroot $::prefix/ ") .
- "/usr/bin/lpstat -r >/dev/null 2>&1");
- if (($? >> 8) != 0) {
- # CUPS is not ready, continue
- sleep 1;
- } else {
- # CUPS is ready, quit
- $cupsready = 1;
- last;
- }
- }
- return $cupsready;
-}
-
-1;
diff --git a/perl-install/raid.pm b/perl-install/raid.pm
index 3a251439e..135218344 100644
--- a/perl-install/raid.pm
+++ b/perl-install/raid.pm
@@ -85,9 +85,10 @@ sub updateSize {
my @l = map { $_->{size} } @{$part->{disks}};
$part->{size} = do {
- if (/0|linear/) { sum @l }
- elsif (/1/) { min @l }
- elsif (/4|5/) { min(@l) * $#l }
+ if (/0|linear/) { sum @l }
+ elsif (/1/) { min @l }
+ elsif (/4|5/) { min(@l) * (@l - 1) }
+ elsif (/6/) { min(@l) * (@l - 2) }
};
}
@@ -145,7 +146,8 @@ sub format_part {
sub verify {
my ($raids) = @_;
foreach (@$raids) {
- @{$_->{disks}} >= ($_->{level} =~ /4|5/ ? 3 : 2) or die N("Not enough partitions for RAID level %d\n", $_->{level});
+ my $nb = $_->{level} =~ /6/ ? 4 : $_->{level} =~ /4|5/ ? 3 : 2;
+ @{$_->{disks}} >= $nb or die N("Not enough partitions for RAID level %d\n", $_->{level});
}
}
@@ -198,7 +200,7 @@ sub get_existing {
foreach my $md (active_mds()) {
my $raw_part = get_md_info(devices::make($md)) or next;
- $raw_part->{level} =~ s/raid//; #- { linear | raid0 | raid1 | raid5 } -> { linear | 0 | 1 | 5 }
+ $raw_part->{level} =~ s/raid//; #- { linear | raid0 | raid1 | raid5 | raid6 } -> { linear | 0 | 1 | 5 | 6 }
my @mdparts =
map {
diff --git a/perl-install/resize_fat/.cvsignore b/perl-install/resize_fat/.cvsignore
deleted file mode 100644
index 3001c7424..000000000
--- a/perl-install/resize_fat/.cvsignore
+++ /dev/null
@@ -1,5 +0,0 @@
-blib
-pm_to_blib
-Makefile_c
-c_rewritten.c
-c_rewritten.bs
diff --git a/perl-install/run_program.pm b/perl-install/run_program.pm
index c836efd72..3c7e556dd 100644
--- a/perl-install/run_program.pm
+++ b/perl-install/run_program.pm
@@ -62,8 +62,8 @@ sub raw {
my $stdout = $stdout_raw && (ref($stdout_raw) ? $tmpdir->() . "/.drakx-stdout.$$" : "$root$stdout_raw");
my $stderr = $stderr_raw && (ref($stderr_raw) ? $tmpdir->() . "/.drakx-stderr.$$" : "$root$stderr_raw");
- #- checking if binary exist to avoid cloberring stdout file
- my ($rname) = $real_name =~ /(.*?)[\s\|]/;
+ #- checking if binary exist to avoid clobbering stdout file
+ my $rname = $real_name =~ /(.*?)[\s\|]/ ? $1 : $real_name;
if (! ($rname =~ m!^/!
? -x "$root$rname" || $root && -l "$root$rname" #- handle non-relative symlink which can be broken when non-rooted
: whereis_binary($rname, $root))) {
@@ -76,12 +76,13 @@ sub raw {
$pid;
} else {
my $ok;
+ add2hash_($options, { timeout => 10 * 60 });
eval {
local $SIG{ALRM} = sub { die "ALARM" };
- alarm($options->{timeout} || 10 * 60);
+ my $remaining = $options->{timeout} && $options->{timeout} ne 'never' && alarm($options->{timeout});
waitpid $pid, 0;
- $ok = $? == 0;
- alarm 0;
+ $ok = $? == -1 || ($? >> 8) == 0;
+ alarm $remaining;
};
if ($@) {
log::l("ERROR: killing runaway process (process=$real_name, pid=$pid, args=@args, error=$@)");
@@ -127,7 +128,7 @@ sub raw {
}
$root and chroot $root;
- chdir "/";
+ chdir($options->{chdir} || "/");
my $ok = ref $name ? do {
exec { $name->[0] } $name->[1], @args;
diff --git a/perl-install/scanner.pm b/perl-install/scanner.pm
index bdbcd2193..4989aceb8 100755
--- a/perl-install/scanner.pm
+++ b/perl-install/scanner.pm
@@ -20,7 +20,6 @@ package scanner;
#
# pbs/TODO:
# - scsi mis-configuration (should work better now)
-# - devfs use dev_is_devfs()
# - with 2 scanners same manufacturer -> will overwrite previous conf -> only 1 conf !! (should work now)
# - lp: see printerdrake
# - install: prefix --> done (partially)
@@ -36,7 +35,7 @@ our $scannerDB = readScannerDB("$scannerDBdir/ScannerDB");
sub confScanner {
my ($model, $port, $vendor, $product, $firmware) = @_;
- $port ||= detect_devices::dev_is_devfs() ? "$::prefix/dev/usb/scanner0" : "$::prefix/dev/scanner";
+ $port ||= "$::prefix/dev/scanner";
my $a = $scannerDB->{$model}{server};
#print "file:[$a]\t[$model]\t[$port]\n| ", (join "\n| ", @{$scannerDB->{$model}{lines}}),"\n";
my @driverconf = cat_("$sanedir/$a.conf");
@@ -92,7 +91,7 @@ sub installfirmware {
# Install firmware
run_program::rooted($::prefix, "mkdir", "-p",
"/usr/share/sane/firmware") || do {
- $in->ask_warn('Scannerdrake',
+ $in->ask_warn(N("Error"),
N("Could not create directory /usr/share/sane/firmware!"));
return "";
};
@@ -103,21 +102,21 @@ sub installfirmware {
run_program::rooted($::prefix, "ln", "-sf",
"/usr/share/sane/firmware",
"/usr/share/sane/$backend") || do {
- $in->ask_warn('Scannerdrake',
+ $in->ask_warn(N("Error"),
N("Could not create link /usr/share/sane/%s!", $backend));
return "";
};
}
run_program::rooted($::prefix, "cp", "-f", "$firmware",
"/usr/share/sane/firmware") || do {
- $in->ask_warn('Scannerdrake',
+ $in->ask_warn(N("Error"),
N("Could not copy firmware file %s to /usr/share/sane/firmware!", $firmware));
return "";
};
$firmware =~ s!^(.*)(/[^/]+)$!/usr/share/sane/firmware$2!;
run_program::rooted($::prefix, "chmod", "644",
$firmware) || do {
- $in->ask_warn('Scannerdrake',
+ $in->ask_warn(N("Error"),
N("Could not set permissions of firmware file %s!", $firmware));
return "";
};
diff --git a/perl-install/security/help.pm b/perl-install/security/help.pm
index 6f24b4bbb..c69f26c95 100644
--- a/perl-install/security/help.pm
+++ b/perl-install/security/help.pm
@@ -10,9 +10,9 @@ our %help = (
'accept_bogus_error_responses' => N("Accept/Refuse bogus IPv4 error messages."),
-'accept_broadcasted_icmp_echo' => N(" Accept/Refuse broadcasted icmp echo."),
+'accept_broadcasted_icmp_echo' => N("Accept/Refuse broadcasted icmp echo."),
-'accept_icmp_echo' => N(" Accept/Refuse icmp echo."),
+'accept_icmp_echo' => N("Accept/Refuse icmp echo."),
'allow_autologin' => N("Allow/Forbid autologin."),
@@ -87,15 +87,15 @@ and crontab(1))."),
'enable_msec_cron' => N("Enable/Disable msec hourly security check."),
-'enable_pam_wheel_for_su' => N(" Enabling su only from members of the wheel group or allow su from any user."),
+'enable_pam_wheel_for_su' => N("Enable su only from members of the wheel group. If set to no, allows su from any user."),
'enable_password' => N("Use password to authenticate users."),
'enable_promisc_check' => N("Activate/Disable ethernet cards promiscuity check."),
-'enable_security_check' => N(" Activate/Disable daily security check."),
+'enable_security_check' => N("Activate/Disable daily security check."),
-'enable_sulogin' => N(" Enable/Disable sulogin(8) in single user level."),
+'enable_sulogin' => N("Enable/Disable sulogin(8) in single user level."),
'no_password_aging_for' => N("Add the name as an exception to the handling of password aging by msec."),
diff --git a/perl-install/security/l10n.pm b/perl-install/security/l10n.pm
index de39c3d41..355f1fff1 100644
--- a/perl-install/security/l10n.pm
+++ b/perl-install/security/l10n.pm
@@ -29,7 +29,7 @@ sub fields() {
'enable_libsafe' => N("Enable libsafe if libsafe is found on the system"),
'enable_log_strange_packets' => N("Enable the logging of IPv4 strange packets"),
'enable_msec_cron' => N("Enable msec hourly security check"),
- 'enable_pam_wheel_for_su' => N("Enable su only from the wheel group members or for any user"),
+ 'enable_pam_wheel_for_su' => N("Enable su only from the wheel group members"),
'enable_password' => N("Use password to authenticate users"),
'enable_promisc_check' => N("Ethernet cards promiscuity check"),
'enable_security_check' => N("Daily security check"),
@@ -54,7 +54,7 @@ sub fields() {
CHECK_UNOWNED => N("Report unowned files"),
CHECK_WRITABLE => N("Check files/directories writable by everybody"),
CHKROOTKIT_CHECK => N("Run chkrootkit checks"),
- MAIL_EMPTY_CONTENT => N("Do not send mails when unneeded"),
+ MAIL_EMPTY_CONTENT => N("Do not send empty mail reports"),
MAIL_USER => N("If set, send the mail report to this email address else send it to root"),
MAIL_WARN => N("Report check result by mail"),
RPM_CHECK => N("Run some checks against the rpm database"),
diff --git a/perl-install/services.pm b/perl-install/services.pm
index e539e1cfd..d2c2e9244 100644
--- a/perl-install/services.pm
+++ b/perl-install/services.pm
@@ -99,7 +99,7 @@ xfs => N_("Starts the X Font Server (this is mandatory for Xorg to run)."),
$s = cat_($file);
$s =~ s/\\\s*\n#\s*//mg;
$s =
- $s =~ /^# description:\s+(.*?)^(?:[^#]|# {0,2}\S)/sm ? $1 :
+ $s =~ /^#\s+(?:Short-)?[dD]escription:\s+(.*?)^(?:[^#]|# {0,2}\S)/sm ? $1 :
$s =~ /^#\s*(.*?)^[^#]/sm ? $1 : '';
$s =~ s/#\s*//mg;
@@ -108,20 +108,7 @@ xfs => N_("Starts the X Font Server (this is mandatory for Xorg to run)."),
$s;
}
-sub ask_install_simple {
- my ($in) = @_;
- my ($l, $on_services) = services();
- $in->ask_many_from_list(N("Services"),
- N("Choose which services should be automatically started at boot time"),
- {
- list => $l,
- help => sub { description($_[0]) },
- values => $on_services,
- sort => 1,
- });
-}
-
-sub ask_install {
+sub ask_ {
my ($in) = @_;
my %root_services = (
N("Printing") => [ qw(cups cupslpd lpr lpd oki4daemon hpoj cups-lpd) ],
@@ -210,7 +197,8 @@ sub ask_standalone_gtk {
};
my $b = Gtk2::EventBox->new;
$b->set_events('pointer_motion_mask');
- gtkadd($W->{window}, gtkadd($b, gtkpack_($W->create_box_with_title(N("Services and daemons")),
+ gtkadd($W->{window}, gtkadd($b, gtkpack_($W->create_box_with_title,
+ 0, mygtk2::gtknew('Title1', label => N("Services and daemons")),
1, gtkset_size_request(create_scrolled_window(create_packtable({ col_spacings => 10, row_spacings => 3 },
map {
my $service = $_;
@@ -235,6 +223,7 @@ sub ask_standalone_gtk {
gtkpack__(Gtk2::HBox->new(0,0), gtksignal_connect(Gtk2::Button->new(translate($a)),
clicked => sub {
my $action = $a eq "Start" ? 'restart' : 'stop';
+ log::explanations(qq(GP_LANG="UTF-8" service $service $action));
# as we need the output in UTF-8, force it
local $_ = `GP_LANG="UTF-8" service $service $action 2>&1`; s/\033\[[^mG]*[mG]//g;
c::set_tagged_utf8($_);
@@ -259,7 +248,7 @@ sub ask_standalone_gtk {
sub ask {
my ($in) = @_;
- !$::isInstall && $in->isa('interactive::gtk') ? &ask_standalone_gtk : &ask_install;
+ !$::isInstall && $in->isa('interactive::gtk') ? &ask_standalone_gtk : &ask_;
}
sub doit {
diff --git a/perl-install/share/.cvsignore b/perl-install/share/.cvsignore
deleted file mode 100644
index 4173dc671..000000000
--- a/perl-install/share/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-locales.tar.bz2
-locales-*-drakx.tar.bz2
diff --git a/perl-install/share/advertising/01.pl b/perl-install/share/advertising/01.pl
deleted file mode 100644
index fd96d1d4b..000000000
--- a/perl-install/share/advertising/01.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Mandriva Linux 2006: Packs")
diff --git a/perl-install/share/advertising/01.png b/perl-install/share/advertising/01.png
deleted file mode 100644
index 024c092b1..000000000
--- a/perl-install/share/advertising/01.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/02.pl b/perl-install/share/advertising/02.pl
deleted file mode 100644
index 1e085e80f..000000000
--- a/perl-install/share/advertising/02.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Mandriva Linux 2006: More features")
diff --git a/perl-install/share/advertising/02.png b/perl-install/share/advertising/02.png
deleted file mode 100644
index 91129ffb5..000000000
--- a/perl-install/share/advertising/02.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/03.pl b/perl-install/share/advertising/03.pl
deleted file mode 100644
index 39eb5cb8b..000000000
--- a/perl-install/share/advertising/03.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Interactive firewall")
diff --git a/perl-install/share/advertising/03.png b/perl-install/share/advertising/03.png
deleted file mode 100644
index 5ee81b425..000000000
--- a/perl-install/share/advertising/03.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/04.pl b/perl-install/share/advertising/04.pl
deleted file mode 100644
index b8446f700..000000000
--- a/perl-install/share/advertising/04.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Desktop search")
diff --git a/perl-install/share/advertising/04.png b/perl-install/share/advertising/04.png
deleted file mode 100644
index 165907509..000000000
--- a/perl-install/share/advertising/04.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/05.pl b/perl-install/share/advertising/05.pl
deleted file mode 100644
index 86cf4f4fe..000000000
--- a/perl-install/share/advertising/05.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("New package manager")
diff --git a/perl-install/share/advertising/05.png b/perl-install/share/advertising/05.png
deleted file mode 100644
index 36e1f951e..000000000
--- a/perl-install/share/advertising/05.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/06.pl b/perl-install/share/advertising/06.pl
deleted file mode 100644
index aa04ac0ab..000000000
--- a/perl-install/share/advertising/06.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Mandriva Linux 2006: More performances")
diff --git a/perl-install/share/advertising/06.png b/perl-install/share/advertising/06.png
deleted file mode 100644
index e26f82305..000000000
--- a/perl-install/share/advertising/06.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/07.pl b/perl-install/share/advertising/07.pl
deleted file mode 100644
index 2267e1c99..000000000
--- a/perl-install/share/advertising/07.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Latest kernel and GCC")
diff --git a/perl-install/share/advertising/07.png b/perl-install/share/advertising/07.png
deleted file mode 100644
index f627ab76f..000000000
--- a/perl-install/share/advertising/07.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/08.pl b/perl-install/share/advertising/08.pl
deleted file mode 100644
index 84d050948..000000000
--- a/perl-install/share/advertising/08.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("High Availibility")
diff --git a/perl-install/share/advertising/08.png b/perl-install/share/advertising/08.png
deleted file mode 100644
index 675dfb5b2..000000000
--- a/perl-install/share/advertising/08.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/09.pl b/perl-install/share/advertising/09.pl
deleted file mode 100644
index 6953f6d2f..000000000
--- a/perl-install/share/advertising/09.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Delta RPM")
diff --git a/perl-install/share/advertising/09.png b/perl-install/share/advertising/09.png
deleted file mode 100644
index ef898e62a..000000000
--- a/perl-install/share/advertising/09.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/10.pl b/perl-install/share/advertising/10.pl
deleted file mode 100644
index 17c5c1063..000000000
--- a/perl-install/share/advertising/10.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Low resources setup")
diff --git a/perl-install/share/advertising/10.png b/perl-install/share/advertising/10.png
deleted file mode 100644
index afe203637..000000000
--- a/perl-install/share/advertising/10.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/11.pl b/perl-install/share/advertising/11.pl
deleted file mode 100644
index 68511596b..000000000
--- a/perl-install/share/advertising/11.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Boot time reduction")
diff --git a/perl-install/share/advertising/11.png b/perl-install/share/advertising/11.png
deleted file mode 100644
index ae4139283..000000000
--- a/perl-install/share/advertising/11.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/12.pl b/perl-install/share/advertising/12.pl
deleted file mode 100644
index 8869400dd..000000000
--- a/perl-install/share/advertising/12.pl
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Mandriva Linux 2006: Easier to use")
-
diff --git a/perl-install/share/advertising/12.png b/perl-install/share/advertising/12.png
deleted file mode 100644
index 37e41a426..000000000
--- a/perl-install/share/advertising/12.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/13.pl b/perl-install/share/advertising/13.pl
deleted file mode 100644
index 129cbf049..000000000
--- a/perl-install/share/advertising/13.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Latest graphical interfaces: KDE and GNOME")
diff --git a/perl-install/share/advertising/13.png b/perl-install/share/advertising/13.png
deleted file mode 100644
index 1a1cb2b49..000000000
--- a/perl-install/share/advertising/13.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/14.pl b/perl-install/share/advertising/14.pl
deleted file mode 100644
index cd21a2150..000000000
--- a/perl-install/share/advertising/14.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("auto-installation servers")
diff --git a/perl-install/share/advertising/14.png b/perl-install/share/advertising/14.png
deleted file mode 100644
index 745db3f65..000000000
--- a/perl-install/share/advertising/14.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/15.pl b/perl-install/share/advertising/15.pl
deleted file mode 100644
index b3c3d699c..000000000
--- a/perl-install/share/advertising/15.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Easy and quick installation")
diff --git a/perl-install/share/advertising/15.png b/perl-install/share/advertising/15.png
deleted file mode 100644
index 4dced98b3..000000000
--- a/perl-install/share/advertising/15.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/16.pl b/perl-install/share/advertising/16.pl
deleted file mode 100644
index dedfd3d27..000000000
--- a/perl-install/share/advertising/16.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Easy configuration thanks to 60 wizards")
diff --git a/perl-install/share/advertising/16.png b/perl-install/share/advertising/16.png
deleted file mode 100644
index 4d6aadd5b..000000000
--- a/perl-install/share/advertising/16.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/17.pl b/perl-install/share/advertising/17.pl
deleted file mode 100644
index 515fa6e42..000000000
--- a/perl-install/share/advertising/17.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Look and feel improved")
diff --git a/perl-install/share/advertising/17.png b/perl-install/share/advertising/17.png
deleted file mode 100644
index 62e278ff4..000000000
--- a/perl-install/share/advertising/17.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/18.pl b/perl-install/share/advertising/18.pl
deleted file mode 100644
index 180d269df..000000000
--- a/perl-install/share/advertising/18.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("New webmin theme")
diff --git a/perl-install/share/advertising/18.png b/perl-install/share/advertising/18.png
deleted file mode 100644
index bcecb8432..000000000
--- a/perl-install/share/advertising/18.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/19.pl b/perl-install/share/advertising/19.pl
deleted file mode 100644
index 2055a3c5a..000000000
--- a/perl-install/share/advertising/19.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Mandriva Linux 2006: More support")
diff --git a/perl-install/share/advertising/19.png b/perl-install/share/advertising/19.png
deleted file mode 100644
index acdbf35d4..000000000
--- a/perl-install/share/advertising/19.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/20.pl b/perl-install/share/advertising/20.pl
deleted file mode 100644
index 3a65b240a..000000000
--- a/perl-install/share/advertising/20.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Better Hardware support")
diff --git a/perl-install/share/advertising/20.png b/perl-install/share/advertising/20.png
deleted file mode 100644
index ec9c042a7..000000000
--- a/perl-install/share/advertising/20.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/21.pl b/perl-install/share/advertising/21.pl
deleted file mode 100644
index 3117b5336..000000000
--- a/perl-install/share/advertising/21.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Xen support")
diff --git a/perl-install/share/advertising/21.png b/perl-install/share/advertising/21.png
deleted file mode 100644
index eac00871a..000000000
--- a/perl-install/share/advertising/21.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/22.pl b/perl-install/share/advertising/22.pl
deleted file mode 100644
index 3bd198a4b..000000000
--- a/perl-install/share/advertising/22.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Mandriva Linux 2006: More information")
diff --git a/perl-install/share/advertising/22.png b/perl-install/share/advertising/22.png
deleted file mode 100644
index 721c0d7b4..000000000
--- a/perl-install/share/advertising/22.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/23.pl b/perl-install/share/advertising/23.pl
deleted file mode 100644
index a44f53d58..000000000
--- a/perl-install/share/advertising/23.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Mandriva Linux 2006: Where to buy?")
diff --git a/perl-install/share/advertising/23.png b/perl-install/share/advertising/23.png
deleted file mode 100644
index 03c33265c..000000000
--- a/perl-install/share/advertising/23.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/24.pl b/perl-install/share/advertising/24.pl
deleted file mode 100644
index cc40e20b1..000000000
--- a/perl-install/share/advertising/24.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Where to find technical assistance?")
diff --git a/perl-install/share/advertising/24.png b/perl-install/share/advertising/24.png
deleted file mode 100644
index 4f3e8c77e..000000000
--- a/perl-install/share/advertising/24.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/25.pl b/perl-install/share/advertising/25.pl
deleted file mode 100644
index 372d8a2ce..000000000
--- a/perl-install/share/advertising/25.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("How to join the Mandriva Linux community?")
diff --git a/perl-install/share/advertising/25.png b/perl-install/share/advertising/25.png
deleted file mode 100644
index df028fb63..000000000
--- a/perl-install/share/advertising/25.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/26.pl b/perl-install/share/advertising/26.pl
deleted file mode 100644
index d29d000d3..000000000
--- a/perl-install/share/advertising/26.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("How to keep your system up-to-date?")
diff --git a/perl-install/share/advertising/26.png b/perl-install/share/advertising/26.png
deleted file mode 100644
index 57157830c..000000000
--- a/perl-install/share/advertising/26.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/Makefile b/perl-install/share/advertising/Makefile
deleted file mode 100644
index c9313c3aa..000000000
--- a/perl-install/share/advertising/Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
-include ../../../Makefile.config
-
-PRODUCT = dwd
-DESTDIR = $(EXTRA_INSTALL_DEST)/advertising
-
-install:
- rm -rf $(DESTDIR)
- install -d $(DESTDIR)
- install -m755 `cat list-$(PRODUCT) | sed 's/png$$/pl/'` $(DESTDIR)
- install -m644 `cat list-$(PRODUCT)` $(DESTDIR)
- install -m644 list-$(PRODUCT) $(DESTDIR)/list
diff --git a/perl-install/share/advertising/README b/perl-install/share/advertising/README
deleted file mode 100644
index 58d63c2e3..000000000
--- a/perl-install/share/advertising/README
+++ /dev/null
@@ -1,4 +0,0 @@
-dis == Discovery
-dwd == Download
-ppp == PowerPackPlus
-pwp == PowerPack
diff --git a/perl-install/share/advertising/intel.pl b/perl-install/share/advertising/intel.pl
deleted file mode 100644
index be311e3e5..000000000
--- a/perl-install/share/advertising/intel.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Intel Software")
diff --git a/perl-install/share/advertising/intel.png b/perl-install/share/advertising/intel.png
deleted file mode 100644
index e3452adf9..000000000
--- a/perl-install/share/advertising/intel.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/advertising/list-dis b/perl-install/share/advertising/list-dis
deleted file mode 100644
index cfdc9be4e..000000000
--- a/perl-install/share/advertising/list-dis
+++ /dev/null
@@ -1,26 +0,0 @@
-01.png
-02.png
-03.png
-04.png
-05.png
-06.png
-07.png
-08.png
-09.png
-10.png
-11.png
-12.png
-13.png
-14.png
-15.png
-16.png
-17.png
-18.png
-19.png
-20.png
-21.png
-22.png
-23.png
-24.png
-25.png
-26.png
diff --git a/perl-install/share/advertising/list-dwd b/perl-install/share/advertising/list-dwd
deleted file mode 100644
index 7913334d0..000000000
--- a/perl-install/share/advertising/list-dwd
+++ /dev/null
@@ -1,28 +0,0 @@
-01.png
-02.png
-03.png
-04.png
-05.png
-06.png
-07.png
-08.png
-09.png
-10.png
-11.png
-12.png
-13.png
-14.png
-15.png
-16.png
-17.png
-18.png
-19.png
-20.png
-21.png
-22.png
-23.png
-24.png
-25.png
-26.png
-skype.png
-intel.png
diff --git a/perl-install/share/advertising/list-ppp b/perl-install/share/advertising/list-ppp
deleted file mode 100644
index cfdc9be4e..000000000
--- a/perl-install/share/advertising/list-ppp
+++ /dev/null
@@ -1,26 +0,0 @@
-01.png
-02.png
-03.png
-04.png
-05.png
-06.png
-07.png
-08.png
-09.png
-10.png
-11.png
-12.png
-13.png
-14.png
-15.png
-16.png
-17.png
-18.png
-19.png
-20.png
-21.png
-22.png
-23.png
-24.png
-25.png
-26.png
diff --git a/perl-install/share/advertising/list-pwp b/perl-install/share/advertising/list-pwp
deleted file mode 100644
index cfdc9be4e..000000000
--- a/perl-install/share/advertising/list-pwp
+++ /dev/null
@@ -1,26 +0,0 @@
-01.png
-02.png
-03.png
-04.png
-05.png
-06.png
-07.png
-08.png
-09.png
-10.png
-11.png
-12.png
-13.png
-14.png
-15.png
-16.png
-17.png
-18.png
-19.png
-20.png
-21.png
-22.png
-23.png
-24.png
-25.png
-26.png
diff --git a/perl-install/share/advertising/skype.pl b/perl-install/share/advertising/skype.pl
deleted file mode 100644
index 08ed1b987..000000000
--- a/perl-install/share/advertising/skype.pl
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/perl
-
-$title = N("Skype lets you make calls through the Internet for free.")
diff --git a/perl-install/share/advertising/skype.png b/perl-install/share/advertising/skype.png
deleted file mode 100644
index 63d7b3606..000000000
--- a/perl-install/share/advertising/skype.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/aliases b/perl-install/share/aliases
deleted file mode 100644
index 3596ec4d2..000000000
--- a/perl-install/share/aliases
+++ /dev/null
@@ -1,8 +0,0 @@
-/bin/gunzip gzip
-/usr/bin/install2 ../lib/libDrakX/install2
-/usr/bin/commands ../lib/libDrakX/commands
-/usr/bin/runinstall2 install2
-/sbin/fsck.ext2 e2fsck
-/sbin/lsmod lsmod-25
-/sbin/rmmod rmmod-25
-/sbin/insmod_ insmod-25
diff --git a/perl-install/share/compssUsers.pl b/perl-install/share/compssUsers.pl
deleted file mode 100644
index 31bddec62..000000000
--- a/perl-install/share/compssUsers.pl
+++ /dev/null
@@ -1,249 +0,0 @@
-package tmp::compssUsers;
-
-use common;
-use ugtk2 qw(:helpers :wrappers :create);
-
-my $low_resources = availableRamMB() < 100 || detect_devices::ix86_cpu_frequency() < 350;
-my $meta_class = $::o->{meta_class};
-my $desktop = $meta_class eq 'desktop';
-my $powerpack = $meta_class eq 'powerpack';
-my $server = $meta_class eq 'server';
-
-my $h = {
-
-$desktop ? (
-"Discovery" =>
-[
- { label => ("Discovery"),
- descr => (""),
- flags => [ qw(OFFICE SPELLCHECK PUBLISHING PIM ARCHIVING PRINTER AUDIO VIDEO GRAPHICS NETWORKING_WWW NETWORKING_MAIL NETWORKING_NEWS COMMUNICATIONS NETWORKING_CHAT NETWORKING_FILE_TRANSFER NETWORKING_IRC NETWORKING_INSTANT_MESSAGING NETWORKING_DNS CONFIG TERMINALS TEXT_TOOLS SHELLS FILE_TOOLS KDE X BOOKS) ],
- default_selected => 1,
- },
-],
-) : (
-N_("Workstation") =>
-[
- { label => N_("Office Workstation"),
- descr => $server
- ? N_("Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets (OpenOffice.org Calc, Kspread), PDF viewers, etc")
- : N_("Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, gnumeric), pdf viewers, etc"),
- flags => [ qw(OFFICE SPELLCHECK PUBLISHING PIM ARCHIVING PRINTER) ],
- default_selected => 1,
- },
- if_(!$server,
- { label => N_("Game station"),
- descr => N_("Amusement programs: arcade, boards, strategy, etc"),
- flags => [ qw(GAMES) ],
- },
- { label => N_("Multimedia station"),
- descr => N_("Sound and video playing/editing programs"),
- flags => [ qw(AUDIO VIDEO GRAPHICS) ],
- default_selected => 1,
- },
- ),
- { label => N_("Internet station"),
- descr => N_("Set of tools to read and send mail and news (mutt, tin..) and to browse the Web"),
- flags => [ qw(NETWORKING_WWW NETWORKING_MAIL NETWORKING_NEWS COMMUNICATIONS NETWORKING_CHAT NETWORKING_FILE_TRANSFER NETWORKING_IRC NETWORKING_INSTANT_MESSAGING NETWORKING_DNS) ],
- default_selected => 1,
- },
- if_(!$server,
- { label => N_("Network Computer (client)"),
- descr => N_("Clients for different protocols including ssh"),
- flags => [ qw(NETWORKING_REMOTE_ACCESS NETWORKING_FILE) ],
- default_selected => $powerpack,
- },
- { label => N_("Configuration"),
- descr => N_("Tools to ease the configuration of your computer"),
- flags => [ qw(CONFIG) ],
- default_selected => 1,
- },
- { label => N_("Console Tools"),
- descr => N_("Editors, shells, file tools, terminals"),
- flags => [ qw(EDITORS TERMINALS TEXT_TOOLS SHELLS FILE_TOOLS) ],
- default_selected => 1,
- },
- { label => N_("Development"),
- descr => N_("C and C++ development libraries, programs and include files"),
- flags => [ qw(DEVELOPMENT EDITORS) ],
- default_selected => $powerpack,
- },
- { label => N_("Documentation"),
- descr => N_("Books and Howto's on Linux and Free Software"),
- flags => [ qw(BOOKS) ],
- default_selected => $powerpack,
- },
- { label => N_("LSB"),
- descr => N_("Linux Standard Base. Third party applications support"),
- flags => [ qw(LSB) ],
- },
- ),
-],
-
-N_("Server") =>
-[
- $server ? (
- { label => N_("Web Server"),
- descr => N_("Apache"),
- flags => [ qw(NETWORKING_WWW_SERVER) ],
- },
- { label => N_("Groupware"),
- descr => N_("Kolab Server"),
- flags => [ qw(NETWORKING_GROUPWARE_SERVER) ],
- },
- { label => N_("Firewall/Router"),
- descr => N_("Internet gateway"),
- flags => [ qw(NETWORKING_FIREWALLING_SERVER) ],
- },
- { label => N_("Mail/News"),
- descr => N_("Postfix mail server, Inn news server"),
- flags => [ qw(NETWORKING_MAIL_SERVER NETWORKING_NEWS_SERVER) ],
- },
- { label => N_("Directory Server"),
- descr => N_("LDAP Server"),
- flags => [ qw(NETWORKING_LDAP_SERVER) ],
- },
- { label => N_("FTP Server"),
- descr => N_("ProFTPd"),
- flags => [ qw(NETWORKING_FILE_TRANSFER_SERVER) ],
- },
- { label => N_("DNS/NIS"),
- descr => N_("Domain Name and Network Information Server"),
- flags => [ qw(NIS_SERVER NETWORKING_DNS_SERVER) ],
- },
- { label => N_("File and Printer Sharing Server"),
- descr => N_("NFS Server, Samba server"),
- flags => [ qw(NETWORKING_FILE_SERVER PRINTER) ],
- },
- { label => N_("Database"),
- descr => N_("PostgreSQL and MySQL Database Server"),
- flags => [ qw(DATABASES DATABASES_SERVER) ],
- },
- ) : (
- { label => N_("Web/FTP"),
- descr => N_("Apache, Pro-ftpd"),
- flags => [ qw(NETWORKING_WWW_SERVER NETWORKING_FILE_TRANSFER_SERVER) ],
- },
- { label => N_("Mail"),
- descr => N_("Postfix mail server"),
- flags => [ qw(NETWORKING_MAIL_SERVER) ],
- },
- { label => N_("Database"),
- descr => N_("PostgreSQL or MySQL database server"),
- flags => [ qw(DATABASES DATABASES_SERVER) ],
- },
- { label => N_("Firewall/Router"),
- descr => N_("Internet gateway"),
- flags => [ qw(NETWORKING_FIREWALLING_SERVER) ],
- },
- { label => N_("Network Computer server"),
- descr => N_("NFS server, SMB server, Proxy server, ssh server"),
- flags => [ qw(NETWORKING_FILE_SERVER NETWORKING_REMOTE_ACCESS_SERVER) ],
- },
- ),
-],
-
-N_("Graphical Environment") =>
-[
- { label => N_("KDE Workstation"),
- descr => N_("The K Desktop Environment, the basic graphical environment with a collection of accompanying tools"),
- flags => [ qw(KDE X ACCESSIBILITY THEMES) ],
- default_selected => !$low_resources,
- },
- { label => N_("GNOME Workstation"),
- descr => N_("A graphical environment with user-friendly set of applications and desktop tools"),
- flags => [ qw(GNOME X ACCESSIBILITY THEMES) ],
- },
- { label => N_("IceWm Desktop"),
- flags => [ qw(ICEWM X ACCESSIBILITY) ],
- default_selected => $low_resources,
- },
- { label => N_("Other Graphical Desktops"),
- descr => N_("Window Maker, Enlightenment, Fvwm, etc"),
- flags => [ qw(GRAPHICAL_DESKTOP X ACCESSIBILITY) ],
- },
-],
-
-if_($server,
-N_("Development") =>
-[
- { label => N_("Development"),
- descr => N_("C and C++ development libraries, programs and include files"),
- flags => [ qw(DEVELOPMENT EDITORS) ],
- default_selected => 1,
- },
- { label => N_("Documentation"),
- descr => N_("Books and Howto's on Linux and Free Software"),
- flags => [ qw(BOOKS) ],
- },
- { label => N_("LSB"),
- descr => N_("Linux Standard Base. Third party applications support"),
- flags => [ qw(LSB) ],
- },
-],
-
-N_("Utilities") =>
-[
- { label => N_("SSH Server"),
- descr => N_("SSH Server"),
- flags => [ qw(NETWORKING_REMOTE_ACCESS_SERVER) ],
- default_selected => 1,
- },
- { label => N_("Webmin"),
- descr => N_("Webmin Remote Configuration Server"),
- flags => [ qw(WEBMIN) ],
- default_selected => 1,
- },
- { label => N_("Network Utilities/Monitoring"),
- descr => N_("Monitoring tools, processes accounting, tcpdump, nmap, ..."),
- flags => [ qw(MONITORING NETWORKING_FILE) ],
- default_selected => 1,
- },
- { label => N_("Mandriva Wizards"),
- descr => N_("Wizards to configure server"),
- flags => [ qw(WIZARDS) ],
- default_selected => 1,
- },
-],
-),
-),
-};
-
-foreach my $path (keys %$h) {
- foreach (@{$h->{$path}}) {
- $_->{path} = $path;
- $_->{uid} = join('|', $path, $_->{label});
- }
-}
-
-my $compssUsers = [ map { @$_ } values %$h ];
-
-my $gtk_display_compssUsers = sub {
- my ($entry) = @_;
-
- my $entries_in_path = sub {
- my ($path) = @_;
- translate($path), map { $entry->($_) } @{$h->{$path}};
- };
-
- gtkpack_(Gtk2::VBox->new(0, 0),
- 1, gtkpack_(Gtk2::HBox->new(0, 0),
- 1, gtkpack(Gtk2::VBox->new(0, 0),
- $entries_in_path->('Workstation'),
- $server ? $entries_in_path->('Server') : (),
- ),
- 0, gtkpack(Gtk2::VBox->new(0, 0),
- $server ? (
- $entries_in_path->('Graphical Environment'),
- $entries_in_path->('Development'),
- $entries_in_path->('Utilities'),
- ) : (
- $entries_in_path->('Server'),
- '',
- $entries_in_path->('Graphical Environment'),
- ),
- ),
- ),
- );
-};
-
-$compssUsers, $gtk_display_compssUsers;
diff --git a/perl-install/share/devices b/perl-install/share/devices
deleted file mode 100644
index 06f6d9fba..000000000
--- a/perl-install/share/devices
+++ /dev/null
@@ -1,19 +0,0 @@
-/dev/console c 5 1
-/dev/tty c 5 0
-/dev/ttyS0 c 4 64
-/dev/null c 1 3
-/dev/mem c 1 1
-/dev/tty0 c 4 0
-/dev/tty1 c 4 1
-/dev/tty2 c 4 2
-/dev/tty3 c 4 3
-/dev/tty4 c 4 4
-/dev/tty5 c 4 5
-/dev/tty6 c 4 6
-/dev/tty7 c 4 7
-/dev/tty8 c 4 8
-/dev/fb0 c 29 0
-/dev/loop3 b 7 3
-/dev/ram3 b 1 3
-/dev/fd0 b 2 0
-/dev/ram b 1 1
diff --git a/perl-install/share/fonts.tar.bz2 b/perl-install/share/fonts.tar.bz2
deleted file mode 100644
index 2f96aeb16..000000000
--- a/perl-install/share/fonts.tar.bz2
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/keyboards.tar.bz2 b/perl-install/share/keyboards.tar.bz2
deleted file mode 100644
index 0e5a05351..000000000
--- a/perl-install/share/keyboards.tar.bz2
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/locales-skeleton.tar.bz2 b/perl-install/share/locales-skeleton.tar.bz2
deleted file mode 100644
index 47b88cf37..000000000
--- a/perl-install/share/locales-skeleton.tar.bz2
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/logo-mandriva.png b/perl-install/share/logo-mandriva.png
deleted file mode 100644
index 528c367f1..000000000
--- a/perl-install/share/logo-mandriva.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/po/.cvsignore b/perl-install/share/po/.cvsignore
deleted file mode 100644
index 4bcdbffcf..000000000
--- a/perl-install/share/po/.cvsignore
+++ /dev/null
@@ -1,5 +0,0 @@
-.*.sw?
-.memdump
-*.mo
-*~
-doc
diff --git a/perl-install/share/po/DrakX.pot b/perl-install/share/po/DrakX.pot
deleted file mode 100644
index 7a34a61ec..000000000
--- a/perl-install/share/po/DrakX.pot
+++ /dev/null
@@ -1,22661 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2006-03-05 18:57+0800\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8-bit\n"
-
-#: ../move/move.pm:292
-#, c-format
-msgid "Which USB key do you want to format?"
-msgstr ""
-
-#: ../move/move.pm:296
-#, c-format
-msgid ""
-"You are about to format a USB device \"%s\". This will delete all data on it.\n"
-"Make sure that the selected device is the USB key you want to format. \n"
-"We advise you to unplug all other USB storage devices while doing this operation."
-msgstr ""
-
-#: ../move/move.pm:448 ../move/move.pm:460
-#, c-format
-msgid "Key is not writable"
-msgstr ""
-
-#: ../move/move.pm:450
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-
-#: ../move/move.pm:452
-#, c-format
-msgid "Retry"
-msgstr ""
-
-#: ../move/move.pm:453 ../move/move.pm:497
-#, c-format
-msgid "Continue without USB key"
-msgstr ""
-
-#: ../move/move.pm:462
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled, but we can not safely\n"
-"unplug it now.\n"
-"\n"
-"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandriva Move again."
-msgstr ""
-
-#: ../move/move.pm:468 help.pm:410 install_steps_interactive.pm:1303
-#, c-format
-msgid "Reboot"
-msgstr ""
-
-#: ../move/move.pm:473
-#, c-format
-msgid ""
-"Your USB key does not have any valid Windows (FAT) partitions.\n"
-"We need one to continue (beside, it's more standard so that you\n"
-"will be able to move and access your files from machines\n"
-"running Windows). Please plug in an USB key containing a\n"
-"Windows partition instead.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-
-#: ../move/move.pm:483
-#, c-format
-msgid ""
-"We did not detect any USB key on your system. If you\n"
-"plug in an USB key now, Mandriva Move will have the ability\n"
-"to transparently save the data in your home directory and\n"
-"system wide configuration, for next boot on this computer\n"
-"or another one. Note: if you plug in a key now, wait several\n"
-"seconds before detecting again.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-
-#: ../move/move.pm:494
-#, c-format
-msgid "Need a key to save your data"
-msgstr ""
-
-#: ../move/move.pm:496
-#, c-format
-msgid "Detect USB key again"
-msgstr ""
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Setting up USB key"
-msgstr ""
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr ""
-
-#: ../move/move.pm:546
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Auto configuration"
-msgstr ""
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr ""
-
-#: ../move/move.pm:604 ../move/move.pm:660 ../move/move.pm:664 diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/interactive.pm:231 diskdrake/interactive.pm:244 diskdrake/interactive.pm:405 diskdrake/interactive.pm:423 diskdrake/interactive.pm:560 diskdrake/interactive.pm:565 diskdrake/smbnfs_gtk.pm:41 do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:52 fsedit.pm:218 install_any.pm:1775 install_any.pm:1827 install_steps.pm:81 install_steps_interactive.pm:37 interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19 network/ndiswrapper.pm:27 network/ndiswrapper.pm:42 network/ndiswrapper.pm:89 network/ndiswrapper.pm:101 network/netconnect.pm:837 network/netconnect.pm:866 network/netconnect.pm:965 network/netconnect.pm:969 network/netconnect.pm:973 network/netconnect.pm:978 network/netconnect.pm:1123 network/netconnect.pm:1127 network/netconnect.pm:1246 network/netconnect.pm:1251 network/netconnect.pm:1271 network/netconnect.pm:1428 network/thirdparty.pm:321 network/thirdparty.pm:328 network/thirdparty.pm:372 network/thirdparty.pm:374 network/thirdparty.pm:395 network/thirdparty.pm:419 printer/printerdrake.pm:244 printer/printerdrake.pm:251 printer/printerdrake.pm:276 printer/printerdrake.pm:422 printer/printerdrake.pm:427 printer/printerdrake.pm:440 printer/printerdrake.pm:450 printer/printerdrake.pm:514 printer/printerdrake.pm:686 printer/printerdrake.pm:690 printer/printerdrake.pm:772 printer/printerdrake.pm:1555 printer/printerdrake.pm:1603 printer/printerdrake.pm:1640 printer/printerdrake.pm:1685 printer/printerdrake.pm:1689 printer/printerdrake.pm:1703 printer/printerdrake.pm:1795 printer/printerdrake.pm:1876 printer/printerdrake.pm:1880 printer/printerdrake.pm:1884 printer/printerdrake.pm:1933 printer/printerdrake.pm:1991 printer/printerdrake.pm:1995 printer/printerdrake.pm:2009 printer/printerdrake.pm:2129 printer/printerdrake.pm:2133 printer/printerdrake.pm:2176 printer/printerdrake.pm:2249 printer/printerdrake.pm:2267 printer/printerdrake.pm:2276 printer/printerdrake.pm:2285 printer/printerdrake.pm:2296 printer/printerdrake.pm:2360 printer/printerdrake.pm:2512 printer/printerdrake.pm:2947 printer/printerdrake.pm:3231 printer/printerdrake.pm:3237 printer/printerdrake.pm:3802 printer/printerdrake.pm:3806 printer/printerdrake.pm:3810 printer/printerdrake.pm:4206 printer/printerdrake.pm:4446 printer/printerdrake.pm:4474 printer/printerdrake.pm:4551 printer/printerdrake.pm:4617 printer/printerdrake.pm:4737 standalone/drakTermServ:422 standalone/drakTermServ:492 standalone/drakTermServ:501 standalone/drakTermServ:812 standalone/drakTermServ:819 standalone/drakTermServ:845 standalone/drakTermServ:894 standalone/drakTermServ:1146 standalone/drakTermServ:1181 standalone/drakTermServ:1634 standalone/drakTermServ:1643 standalone/drakTermServ:1651 standalone/drakTermServ:1656 standalone/drakTermServ:1664 standalone/drakTermServ:1680 standalone/drakTermServ:1700 standalone/drakauth:36 standalone/drakbackup:511 standalone/drakbackup:625 standalone/drakbackup:1110 standalone/drakbackup:1141 standalone/drakbackup:1332 standalone/drakbackup:1664 standalone/drakbackup:1820 standalone/drakbackup:2548 standalone/drakbackup:4463 standalone/drakclock:124 standalone/drakconnect:676 standalone/drakconnect:680 standalone/drakconnect:685 standalone/drakconnect:700 standalone/drakfont:209 standalone/drakfont:222 standalone/drakfont:260 standalone/drakgw:50 standalone/drakgw:188 standalone/drakhosts:98 standalone/drakhosts:246 standalone/drakhosts:253 standalone/drakhosts:260 standalone/draknfs:306 standalone/draknfs:609 standalone/draknfs:616 standalone/draknfs:623 standalone/drakroam:33 standalone/draksambashare:384 standalone/draksambashare:388 standalone/draksambashare:391 standalone/draksambashare:394 standalone/draksambashare:453 standalone/draksambashare:477 standalone/draksambashare:551 standalone/draksambashare:633 standalone/draksambashare:700 standalone/draksambashare:800 standalone/draksambashare:807 standalone/draksambashare:942 standalone/draksambashare:1133 standalone/draksambashare:1142 standalone/draksambashare:1151 standalone/draksambashare:1172 standalone/draksambashare:1181 standalone/draksambashare:1190 standalone/draksambashare:1210 standalone/draksambashare:1218 standalone/draksambashare:1230 standalone/draksplash:162 standalone/drakxtv:107 standalone/finish-install:79 standalone/logdrake:171 standalone/logdrake:439 standalone/logdrake:444 standalone/scannerdrake:59 standalone/scannerdrake:202 standalone/scannerdrake:261 standalone/scannerdrake:732 standalone/scannerdrake:743 standalone/scannerdrake:882 standalone/scannerdrake:893 standalone/scannerdrake:963 wizards.pm:95 wizards.pm:99 wizards.pm:121
-#, c-format
-msgid "Error"
-msgstr ""
-
-#: ../move/move.pm:605 install_steps.pm:82
-#, c-format
-msgid ""
-"An error occurred, but I do not know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-
-#: ../move/move.pm:660 install_steps_interactive.pm:37
-#, c-format
-msgid "An error occurred"
-msgstr ""
-
-#: ../move/move.pm:666
-#, c-format
-msgid ""
-"An error occurred:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"This may come from corrupted system configuration files\n"
-"on the USB key, in this case removing them and then\n"
-"rebooting Mandriva Move would fix the problem. To do\n"
-"so, click on the corresponding button.\n"
-"\n"
-"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-
-#: ../move/move.pm:681
-#, c-format
-msgid "Remove system config files"
-msgstr ""
-
-#: ../move/move.pm:682
-#, c-format
-msgid "Simply reboot"
-msgstr ""
-
-#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr ""
-
-#: ../move/tree/mdk_totem:71
-#, c-format
-msgid "Kill those programs"
-msgstr ""
-
-#: ../move/tree/mdk_totem:72
-#, c-format
-msgid "No CDROM support"
-msgstr ""
-
-#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92 diskdrake/interactive.pm:1062 diskdrake/interactive.pm:1072 diskdrake/interactive.pm:1125
-#, c-format
-msgid "Read carefully!"
-msgstr ""
-
-#: ../move/tree/mdk_totem:77
-#, c-format
-msgid ""
-"You can not use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-
-#: ../move/tree/mdk_totem:101
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr ""
-
-#: Xconfig/card.pm:13
-#, c-format
-msgid "256 kB"
-msgstr ""
-
-#: Xconfig/card.pm:14
-#, c-format
-msgid "512 kB"
-msgstr ""
-
-#: Xconfig/card.pm:15
-#, c-format
-msgid "1 MB"
-msgstr ""
-
-#: Xconfig/card.pm:16
-#, c-format
-msgid "2 MB"
-msgstr ""
-
-#: Xconfig/card.pm:17
-#, c-format
-msgid "4 MB"
-msgstr ""
-
-#: Xconfig/card.pm:18
-#, c-format
-msgid "8 MB"
-msgstr ""
-
-#: Xconfig/card.pm:19
-#, c-format
-msgid "16 MB"
-msgstr ""
-
-#: Xconfig/card.pm:20
-#, c-format
-msgid "32 MB"
-msgstr ""
-
-#: Xconfig/card.pm:21
-#, c-format
-msgid "64 MB or more"
-msgstr ""
-
-#: Xconfig/card.pm:162
-#, c-format
-msgid "X server"
-msgstr ""
-
-#: Xconfig/card.pm:163
-#, c-format
-msgid "Choose an X server"
-msgstr ""
-
-#: Xconfig/card.pm:195
-#, c-format
-msgid "Multi-head configuration"
-msgstr ""
-
-#: Xconfig/card.pm:196
-#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-
-#: Xconfig/card.pm:265
-#, c-format
-msgid "Can not install Xorg package: %s"
-msgstr ""
-
-#: Xconfig/card.pm:275
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr ""
-
-#: Xconfig/card.pm:371
-#, c-format
-msgid "Xorg configuration"
-msgstr ""
-
-#: Xconfig/card.pm:373
-#, c-format
-msgid "Which configuration of Xorg do you want to have?"
-msgstr ""
-
-#: Xconfig/card.pm:406
-#, c-format
-msgid "Configure all heads independently"
-msgstr ""
-
-#: Xconfig/card.pm:407
-#, c-format
-msgid "Use Xinerama extension"
-msgstr ""
-
-#: Xconfig/card.pm:412
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr ""
-
-#: Xconfig/card.pm:424 Xconfig/various.pm:23
-#, c-format
-msgid "Xorg %s"
-msgstr ""
-
-#: Xconfig/card.pm:431 Xconfig/various.pm:22
-#, c-format
-msgid "Xorg %s with 3D hardware acceleration"
-msgstr ""
-
-#: Xconfig/card.pm:433
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with Xorg %s."
-msgstr ""
-
-#: Xconfig/card.pm:439
-#, c-format
-msgid "Xorg %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr ""
-
-#: Xconfig/card.pm:441
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with Xorg %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:1021
-#, c-format
-msgid "Custom"
-msgstr ""
-
-#: Xconfig/main.pm:127 any.pm:742 diskdrake/dav.pm:26 help.pm:15 install_steps_interactive.pm:1303 printer/printerdrake.pm:882 printer/printerdrake.pm:899 printer/printerdrake.pm:4546 printer/printerdrake.pm:5010 standalone/drakhosts:263 standalone/drakroam:230 standalone/draksplash:93 standalone/logdrake:176 standalone/net_applet:103 standalone/scannerdrake:494
-#, c-format
-msgid "Quit"
-msgstr ""
-
-#: Xconfig/main.pm:129
-#, c-format
-msgid "Graphic Card"
-msgstr ""
-
-#: Xconfig/main.pm:132 Xconfig/monitor.pm:110
-#, c-format
-msgid "Monitor"
-msgstr ""
-
-#: Xconfig/main.pm:135 Xconfig/resolution_and_depth.pm:289
-#, c-format
-msgid "Resolution"
-msgstr ""
-
-#: Xconfig/main.pm:138
-#, c-format
-msgid "Test"
-msgstr ""
-
-#: Xconfig/main.pm:143 diskdrake/dav.pm:65 diskdrake/interactive.pm:449 diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79 printer/printerdrake.pm:1112 standalone/drakfont:493 standalone/drakfont:548
-#, c-format
-msgid "Options"
-msgstr ""
-
-#: Xconfig/main.pm:178
-#, c-format
-msgid "Your Xorg configuration file is broken, we will ignore it."
-msgstr ""
-
-#: Xconfig/main.pm:196
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor for head #%d"
-msgstr ""
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor"
-msgstr ""
-
-#: Xconfig/monitor.pm:117
-#, c-format
-msgid "Plug'n Play"
-msgstr ""
-
-#: Xconfig/monitor.pm:118 mouse.pm:49
-#, c-format
-msgid "Generic"
-msgstr ""
-
-#: Xconfig/monitor.pm:119 standalone/drakconnect:591 standalone/harddrake2:54 standalone/harddrake2:88
-#, c-format
-msgid "Vendor"
-msgstr ""
-
-#: Xconfig/monitor.pm:129
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr ""
-
-#: Xconfig/monitor.pm:137
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync range\n"
-"that is beyond the capabilities of your monitor: you may damage your monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-
-#: Xconfig/monitor.pm:144
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr ""
-
-#: Xconfig/monitor.pm:145
-#, c-format
-msgid "Vertical refresh rate"
-msgstr ""
-
-#: Xconfig/resolution_and_depth.pm:10
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr ""
-
-#: Xconfig/resolution_and_depth.pm:11
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr ""
-
-#: Xconfig/resolution_and_depth.pm:12
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr ""
-
-#: Xconfig/resolution_and_depth.pm:13
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr ""
-
-#: Xconfig/resolution_and_depth.pm:127
-#, c-format
-msgid "Resolutions"
-msgstr ""
-
-#: Xconfig/resolution_and_depth.pm:311 diskdrake/hd_gtk.pm:336 install_steps_gtk.pm:288 mouse.pm:168 services.pm:162 standalone/drakbackup:1606 standalone/drakperm:250
-#, c-format
-msgid "Other"
-msgstr ""
-
-#: Xconfig/resolution_and_depth.pm:360
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr ""
-
-#: Xconfig/resolution_and_depth.pm:361
-#, c-format
-msgid "Graphics card: %s"
-msgstr ""
-
-#: Xconfig/resolution_and_depth.pm:375 interactive.pm:119 interactive.pm:436 interactive/http.pm:103 interactive/http.pm:156 interactive/newt.pm:321 interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:143 standalone/drakTermServ:222 standalone/drakTermServ:543 standalone/drakbackup:1372 standalone/drakbackup:4123 standalone/drakbackup:4183 standalone/drakbackup:4227 standalone/drakbackup:4481 standalone/drakconnect:158 standalone/drakconnect:852 standalone/drakconnect:939 standalone/drakconnect:1030 standalone/drakfont:569 standalone/drakfont:579 standalone/draksplash:173 standalone/drakups:210 standalone/net_monitor:339 ugtk2.pm:392 ugtk2.pm:490 ugtk2.pm:899 ugtk2.pm:922
-#, c-format
-msgid "Ok"
-msgstr ""
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/smbnfs_gtk.pm:80 help.pm:90 help.pm:445 install_steps_gtk.pm:455 install_steps_interactive.pm:406 install_steps_interactive.pm:811 interactive.pm:120 interactive.pm:437 interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318 interactive/stdio.pm:39 interactive/stdio.pm:142 printer/printerdrake.pm:3882 standalone/drakautoinst:215 standalone/drakbackup:1372 standalone/drakbackup:4052 standalone/drakbackup:4056 standalone/drakbackup:4111 standalone/drakbackup:4481 standalone/drakconnect:157 standalone/drakconnect:937 standalone/drakconnect:1029 standalone/drakfont:579 standalone/drakfont:655 standalone/drakfont:733 standalone/draksplash:173 standalone/drakups:217 standalone/logdrake:176 standalone/net_monitor:338 ugtk2.pm:386 ugtk2.pm:488 ugtk2.pm:497 ugtk2.pm:899
-#, c-format
-msgid "Cancel"
-msgstr ""
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/hd_gtk.pm:150 install_steps_gtk.pm:232 install_steps_gtk.pm:617 interactive.pm:567 interactive/gtk.pm:682 interactive/gtk.pm:684 standalone/drakTermServ:311 standalone/drakbackup:4048 standalone/drakbug:105 standalone/drakconnect:153 standalone/drakconnect:236 standalone/drakfont:511 standalone/draknfs:206 standalone/drakperm:133 standalone/draksambashare:320 standalone/draksec:344 standalone/draksec:346 standalone/draksec:364 standalone/draksec:366 ugtk2.pm:1031 ugtk2.pm:1032
-#, c-format
-msgid "Help"
-msgstr ""
-
-#: Xconfig/test.pm:30
-#, c-format
-msgid "Test of the configuration"
-msgstr ""
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr ""
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-
-#: Xconfig/test.pm:69
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr ""
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Is this the correct setting?"
-msgstr ""
-
-#: Xconfig/various.pm:29
-#, c-format
-msgid ""
-"Keyboard layout: %s\n"
-""
-msgstr ""
-
-#: Xconfig/various.pm:30
-#, c-format
-msgid ""
-"Mouse type: %s\n"
-""
-msgstr ""
-
-#: Xconfig/various.pm:31
-#, c-format
-msgid ""
-"Mouse device: %s\n"
-""
-msgstr ""
-
-#: Xconfig/various.pm:33
-#, c-format
-msgid ""
-"Monitor: %s\n"
-""
-msgstr ""
-
-#: Xconfig/various.pm:34
-#, c-format
-msgid ""
-"Monitor HorizSync: %s\n"
-""
-msgstr ""
-
-#: Xconfig/various.pm:35
-#, c-format
-msgid ""
-"Monitor VertRefresh: %s\n"
-""
-msgstr ""
-
-#: Xconfig/various.pm:37
-#, c-format
-msgid ""
-"Graphics card: %s\n"
-""
-msgstr ""
-
-#: Xconfig/various.pm:38
-#, c-format
-msgid ""
-"Graphics memory: %s kB\n"
-""
-msgstr ""
-
-#: Xconfig/various.pm:40
-#, c-format
-msgid ""
-"Color depth: %s\n"
-""
-msgstr ""
-
-#: Xconfig/various.pm:41
-#, c-format
-msgid ""
-"Resolution: %s\n"
-""
-msgstr ""
-
-#: Xconfig/various.pm:43
-#, c-format
-msgid ""
-"Xorg driver: %s\n"
-""
-msgstr ""
-
-#: Xconfig/various.pm:72
-#, c-format
-msgid "Graphical interface at startup"
-msgstr ""
-
-#: Xconfig/various.pm:74
-#, c-format
-msgid ""
-"I can setup your computer to automatically start the graphical interface (Xorg) upon booting.\n"
-"Would you like Xorg to start when you reboot?"
-msgstr ""
-
-#: Xconfig/various.pm:87
-#, c-format
-msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
-msgstr ""
-
-#: Xconfig/various.pm:99
-#, c-format
-msgid "What norm is your TV using?"
-msgstr ""
-
-#: Xconfig/xfree.pm:648
-#, c-format
-msgid ""
-"_:weird aspect ratio\n"
-"other"
-msgstr ""
-
-#: any.pm:153 harddrake/sound.pm:195 interactive.pm:474 pkgs.pm:474 standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68 standalone/drakups:99 standalone/drakxtv:92 standalone/harddrake2:375 standalone/service_harddrake:235
-#, c-format
-msgid "Please wait"
-msgstr ""
-
-#: any.pm:153
-#, c-format
-msgid "Bootloader installation in progress"
-msgstr ""
-
-#: any.pm:164
-#, c-format
-msgid ""
-"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
-"the Volume ID of a Windows NT, 2000, or XP boot disk is a fatal Windows error.\n"
-"This caution does not apply to Windows 95 or 98, or to NT data disks.\n"
-"\n"
-"Assign a new Volume ID?"
-msgstr ""
-
-#: any.pm:175
-#, c-format
-msgid "Installation of bootloader failed. The following error occurred:"
-msgstr ""
-
-#: any.pm:181
-#, 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 ""
-
-#: any.pm:219
-#, c-format
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: any.pm:242 help.pm:740
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr ""
-
-#: any.pm:243
-#, c-format
-msgid "First sector of the root partition"
-msgstr ""
-
-#: any.pm:245
-#, c-format
-msgid "On Floppy"
-msgstr ""
-
-#: any.pm:247 help.pm:740 printer/printerdrake.pm:4203
-#, c-format
-msgid "Skip"
-msgstr ""
-
-#: any.pm:251
-#, c-format
-msgid "LILO/grub Installation"
-msgstr ""
-
-#: any.pm:252
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr ""
-
-#: any.pm:278 standalone/drakboot:269
-#, c-format
-msgid "Boot Style Configuration"
-msgstr ""
-
-#: any.pm:280 any.pm:281 any.pm:314 any.pm:315
-#, c-format
-msgid "Bootloader main options"
-msgstr ""
-
-#: any.pm:286
-#, c-format
-msgid "Give the ram size in MB"
-msgstr ""
-
-#: any.pm:288
-#, c-format
-msgid "Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-
-#: any.pm:289 any.pm:628 authentication.pm:192
-#, c-format
-msgid "The passwords do not match"
-msgstr ""
-
-#: any.pm:289 any.pm:628 authentication.pm:192 diskdrake/interactive.pm:1336
-#, c-format
-msgid "Please try again"
-msgstr ""
-
-#: any.pm:294 any.pm:319
-#, c-format
-msgid "Bootloader to use"
-msgstr ""
-
-#: any.pm:296 any.pm:321
-#, c-format
-msgid "Boot device"
-msgstr ""
-
-#: any.pm:298
-#, c-format
-msgid "Delay before booting default image"
-msgstr ""
-
-#: any.pm:299
-#, c-format
-msgid "Enable ACPI"
-msgstr ""
-
-#: any.pm:301
-#, c-format
-msgid "Force no APIC"
-msgstr ""
-
-#: any.pm:303
-#, c-format
-msgid "Force No Local APIC"
-msgstr ""
-
-#: any.pm:305 any.pm:662 authentication.pm:197 diskdrake/smbnfs_gtk.pm:180 network/netconnect.pm:584 printer/printerdrake.pm:1867 printer/printerdrake.pm:1988 standalone/drakbackup:1650 standalone/drakbackup:3641 standalone/drakups:297
-#, c-format
-msgid "Password"
-msgstr ""
-
-#: any.pm:306 any.pm:663 authentication.pm:198
-#, c-format
-msgid "Password (again)"
-msgstr ""
-
-#: any.pm:307
-#, c-format
-msgid "Restrict command line options"
-msgstr ""
-
-#: any.pm:307
-#, c-format
-msgid "restrict"
-msgstr ""
-
-#: any.pm:309
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr ""
-
-#: any.pm:310
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr ""
-
-#: any.pm:320
-#, c-format
-msgid "Init Message"
-msgstr ""
-
-#: any.pm:322
-#, c-format
-msgid "Open Firmware Delay"
-msgstr ""
-
-#: any.pm:323
-#, c-format
-msgid "Kernel Boot Timeout"
-msgstr ""
-
-#: any.pm:324
-#, c-format
-msgid "Enable CD Boot?"
-msgstr ""
-
-#: any.pm:325
-#, c-format
-msgid "Enable OF Boot?"
-msgstr ""
-
-#: any.pm:326
-#, c-format
-msgid "Default OS?"
-msgstr ""
-
-#: any.pm:380
-#, c-format
-msgid "Image"
-msgstr ""
-
-#: any.pm:381 any.pm:391
-#, c-format
-msgid "Root"
-msgstr ""
-
-#: any.pm:382 any.pm:404
-#, c-format
-msgid "Append"
-msgstr ""
-
-#: any.pm:384 standalone/drakboot:271 standalone/drakboot:275
-#, c-format
-msgid "Video mode"
-msgstr ""
-
-#: any.pm:386
-#, c-format
-msgid "Initrd"
-msgstr ""
-
-#: any.pm:387
-#, c-format
-msgid "Network profile"
-msgstr ""
-
-#: any.pm:396 any.pm:401 any.pm:403 diskdrake/interactive.pm:450
-#, c-format
-msgid "Label"
-msgstr ""
-
-#: any.pm:398 any.pm:408 harddrake/v4l.pm:438 standalone/drakbackup:2104 standalone/draksec:52
-#, c-format
-msgid "Default"
-msgstr ""
-
-#: any.pm:405
-#, c-format
-msgid "Initrd-size"
-msgstr ""
-
-#: any.pm:407
-#, c-format
-msgid "NoVideo"
-msgstr ""
-
-#: any.pm:418
-#, c-format
-msgid "Empty label not allowed"
-msgstr ""
-
-#: any.pm:419
-#, c-format
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: any.pm:419
-#, c-format
-msgid "You must specify a root partition"
-msgstr ""
-
-#: any.pm:420
-#, c-format
-msgid "This label is already used"
-msgstr ""
-
-#: any.pm:434
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr ""
-
-#: any.pm:435
-#, c-format
-msgid "Linux"
-msgstr ""
-
-#: any.pm:435
-#, c-format
-msgid "Other OS (SunOS...)"
-msgstr ""
-
-#: any.pm:436
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr ""
-
-#: any.pm:436
-#, c-format
-msgid "Other OS (Windows...)"
-msgstr ""
-
-#: any.pm:464
-#, 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 ""
-
-#: any.pm:614
-#, c-format
-msgid "access to X programs"
-msgstr ""
-
-#: any.pm:615
-#, c-format
-msgid "access to rpm tools"
-msgstr ""
-
-#: any.pm:616
-#, c-format
-msgid "allow \"su\""
-msgstr ""
-
-#: any.pm:617
-#, c-format
-msgid "access to administrative files"
-msgstr ""
-
-#: any.pm:618
-#, c-format
-msgid "access to network tools"
-msgstr ""
-
-#: any.pm:619
-#, c-format
-msgid "access to compilation tools"
-msgstr ""
-
-#: any.pm:624
-#, c-format
-msgid "(already added %s)"
-msgstr ""
-
-#: any.pm:629
-#, c-format
-msgid "This password is too simple"
-msgstr ""
-
-#: any.pm:630
-#, c-format
-msgid "Please give a user name"
-msgstr ""
-
-#: any.pm:631
-#, c-format
-msgid "The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-
-#: any.pm:632
-#, c-format
-msgid "The user name is too long"
-msgstr ""
-
-#: any.pm:633
-#, c-format
-msgid "This user name has already been added"
-msgstr ""
-
-#: any.pm:634 any.pm:665
-#, c-format
-msgid "User ID"
-msgstr ""
-
-#: any.pm:635 any.pm:666
-#, c-format
-msgid "Group ID"
-msgstr ""
-
-#: any.pm:638
-#, c-format
-msgid "%s must be a number"
-msgstr ""
-
-#: any.pm:639
-#, c-format
-msgid "%s should be above 500. Accept anyway?"
-msgstr ""
-
-#: any.pm:644 standalone/draksambashare:1214
-#, c-format
-msgid "Add user"
-msgstr ""
-
-#: any.pm:646
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-
-#: any.pm:649 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:154 diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:81 help.pm:531 interactive/http.pm:151 printer/printerdrake.pm:197 printer/printerdrake.pm:382 printer/printerdrake.pm:5010 standalone/drakbackup:2836 standalone/scannerdrake:685 standalone/scannerdrake:835
-#, c-format
-msgid "Done"
-msgstr ""
-
-#: any.pm:650 help.pm:52
-#, c-format
-msgid "Accept user"
-msgstr ""
-
-#: any.pm:660
-#, c-format
-msgid "Real name"
-msgstr ""
-
-#: any.pm:661 standalone/drakbackup:1645
-#, c-format
-msgid "Login name"
-msgstr ""
-
-#: any.pm:664
-#, c-format
-msgid "Shell"
-msgstr ""
-
-#: any.pm:668
-#, c-format
-msgid "Icon"
-msgstr ""
-
-#: any.pm:715 security/l10n.pm:14
-#, c-format
-msgid "Autologin"
-msgstr ""
-
-#: any.pm:716
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
-msgstr ""
-
-#: any.pm:717
-#, c-format
-msgid "Use this feature"
-msgstr ""
-
-#: any.pm:718
-#, c-format
-msgid "Choose the default user:"
-msgstr ""
-
-#: any.pm:719
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr ""
-
-#: any.pm:740
-#, c-format
-msgid "License agreement"
-msgstr ""
-
-#: any.pm:745 any.pm:745
-#, c-format
-msgid "Release Notes"
-msgstr ""
-
-#: any.pm:748 help.pm:15 install_steps_gtk.pm:539 install_steps_interactive.pm:715 standalone/drakautoinst:214
-#, c-format
-msgid "Accept"
-msgstr ""
-
-#: any.pm:748 install_steps_gtk.pm:539 install_steps_interactive.pm:715
-#, c-format
-msgid "Refuse"
-msgstr ""
-
-#: any.pm:765 any.pm:833
-#, c-format
-msgid "Please choose a language to use."
-msgstr ""
-
-#: any.pm:766 any.pm:834
-#, c-format
-msgid "Language choice"
-msgstr ""
-
-#: any.pm:794
-#, c-format
-msgid ""
-"Mandriva Linux can support multiple languages. Select\n"
-"the languages you would like to install. They will be available\n"
-"when your installation is complete and you restart your system."
-msgstr ""
-
-#: any.pm:797
-#, c-format
-msgid "Multi languages"
-msgstr ""
-
-#: any.pm:813 any.pm:842 help.pm:648
-#, c-format
-msgid "Use Unicode by default"
-msgstr ""
-
-#: any.pm:814 help.pm:648
-#, c-format
-msgid "All languages"
-msgstr ""
-
-#: any.pm:888 help.pm:567 help.pm:856 install_steps_interactive.pm:932
-#, c-format
-msgid "Country / Region"
-msgstr ""
-
-#: any.pm:890
-#, c-format
-msgid "Please choose your country."
-msgstr ""
-
-#: any.pm:892
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr ""
-
-#: any.pm:893
-#, c-format
-msgid "Other Countries"
-msgstr ""
-
-#: any.pm:893 help.pm:52 help.pm:410 help.pm:432 help.pm:648 help.pm:723 interactive.pm:397
-#, c-format
-msgid "Advanced"
-msgstr ""
-
-#: any.pm:901
-#, c-format
-msgid "Input method:"
-msgstr ""
-
-#: any.pm:904 install_any.pm:422 network/netconnect.pm:317 network/netconnect.pm:322 network/netconnect.pm:1237 network/wireless.pm:7 printer/printerdrake.pm:117
-#, c-format
-msgid "None"
-msgstr ""
-
-#: any.pm:1021
-#, c-format
-msgid "No sharing"
-msgstr ""
-
-#: any.pm:1021
-#, c-format
-msgid "Allow all users"
-msgstr ""
-
-#: any.pm:1025
-#, 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 ""
-
-#: any.pm:1037
-#, c-format
-msgid "NFS: the traditional Unix file sharing system, with less support on Mac and Windows."
-msgstr ""
-
-#: any.pm:1040
-#, c-format
-msgid "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux systems."
-msgstr ""
-
-#: any.pm:1048
-#, c-format
-msgid "You can export using NFS or SMB. Please select which you would like to use."
-msgstr ""
-
-#: any.pm:1073
-#, c-format
-msgid "Launch userdrake"
-msgstr ""
-
-#: any.pm:1073 printer/printerdrake.pm:4085 printer/printerdrake.pm:4088 printer/printerdrake.pm:4089 printer/printerdrake.pm:4090 printer/printerdrake.pm:5328 standalone/drakTermServ:321 standalone/drakbackup:4245 standalone/drakbug:126 standalone/drakfont:499 standalone/drakids:64 standalone/drakids:77 standalone/drakids:85 standalone/draknfs:210 standalone/net_monitor:117 standalone/printerdrake:583
-#, c-format
-msgid "Close"
-msgstr ""
-
-#: any.pm:1075
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
-msgstr ""
-
-#: authentication.pm:23
-#, c-format
-msgid "Local file"
-msgstr ""
-
-#: authentication.pm:24
-#, c-format
-msgid "LDAP"
-msgstr ""
-
-#: authentication.pm:25
-#, c-format
-msgid "NIS"
-msgstr ""
-
-#: authentication.pm:26
-#, c-format
-msgid "Smart Card"
-msgstr ""
-
-#: authentication.pm:27 authentication.pm:163
-#, c-format
-msgid "Windows Domain"
-msgstr ""
-
-#: authentication.pm:28
-#, c-format
-msgid "Active Directory with SFU"
-msgstr ""
-
-#: authentication.pm:29
-#, c-format
-msgid "Active Directory with Winbind"
-msgstr ""
-
-#: authentication.pm:66
-#, c-format
-msgid "Local file:"
-msgstr ""
-
-#: authentication.pm:66
-#, c-format
-msgid "Use local for all authentication and information user tell in local file"
-msgstr ""
-
-#: authentication.pm:67
-#, c-format
-msgid "LDAP:"
-msgstr ""
-
-#: authentication.pm:67
-#, c-format
-msgid "Tells your computer to use LDAP for some or all authentication. LDAP consolidates certain types of information within your organization."
-msgstr ""
-
-#: authentication.pm:68
-#, c-format
-msgid "NIS:"
-msgstr ""
-
-#: authentication.pm:68
-#, c-format
-msgid "Allows you to run a group of computers in the same Network Information Service domain with a common password and group file."
-msgstr ""
-
-#: authentication.pm:69
-#, c-format
-msgid "Windows Domain:"
-msgstr ""
-
-#: authentication.pm:69
-#, c-format
-msgid "Winbind allows the system to retrieve information and authenticate users in a Windows domain."
-msgstr ""
-
-#: authentication.pm:70
-#, c-format
-msgid "Active Directory with SFU:"
-msgstr ""
-
-#: authentication.pm:70
-#, c-format
-msgid "With Kerberos and Ldap for authentication in Active Directory Server "
-msgstr ""
-
-#: authentication.pm:71
-#, c-format
-msgid "Active Directory with Winbind:"
-msgstr ""
-
-#: authentication.pm:71
-#, c-format
-msgid "Winbind allows the system to authenticate users in a Windows Active Directory Server."
-msgstr ""
-
-#: authentication.pm:96
-#, c-format
-msgid "Authentication LDAP"
-msgstr ""
-
-#: authentication.pm:97
-#, c-format
-msgid "LDAP Base dn"
-msgstr ""
-
-#: authentication.pm:98 share/compssUsers.pl:102
-#, c-format
-msgid "LDAP Server"
-msgstr ""
-
-#: authentication.pm:111 fsedit.pm:23
-#, c-format
-msgid "simple"
-msgstr ""
-
-#: authentication.pm:112
-#, c-format
-msgid "TLS"
-msgstr ""
-
-#: authentication.pm:113
-#, c-format
-msgid "SSL"
-msgstr ""
-
-#: authentication.pm:114
-#, c-format
-msgid "security layout (SASL/Kerberos)"
-msgstr ""
-
-#: authentication.pm:121 authentication.pm:159
-#, c-format
-msgid "Authentication Active Directory"
-msgstr ""
-
-#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:181
-#, c-format
-msgid "Domain"
-msgstr ""
-
-#: authentication.pm:124 diskdrake/dav.pm:63 help.pm:147 printer/printerdrake.pm:75 share/compssUsers.pl:82 standalone/drakTermServ:296
-#, c-format
-msgid "Server"
-msgstr ""
-
-#: authentication.pm:125
-#, c-format
-msgid "LDAP users database"
-msgstr ""
-
-#: authentication.pm:126
-#, c-format
-msgid "Use Anonymous BIND "
-msgstr ""
-
-#: authentication.pm:127
-#, c-format
-msgid "LDAP user allowed to browse the Active Directory"
-msgstr ""
-
-#: authentication.pm:128
-#, c-format
-msgid "Password for user"
-msgstr ""
-
-#: authentication.pm:140
-#, c-format
-msgid "Authentication NIS"
-msgstr ""
-
-#: authentication.pm:141
-#, c-format
-msgid "NIS Domain"
-msgstr ""
-
-#: authentication.pm:142
-#, c-format
-msgid "NIS Server"
-msgstr ""
-
-#: authentication.pm:147
-#, c-format
-msgid ""
-"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.\n"
-"You will also need the username/password of a Domain Admin to join the machine to the Windows(TM) domain.\n"
-"If networking is not yet enabled, Drakx will attempt to join the domain after the network setup step.\n"
-"Should 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.\n"
-"The command 'wbinfo -t' will test whether your authentication secrets are good."
-msgstr ""
-
-#: authentication.pm:159
-#, c-format
-msgid "Authentication Windows Domain"
-msgstr ""
-
-#: authentication.pm:161
-#, c-format
-msgid "Active Directory Realm "
-msgstr ""
-
-#: authentication.pm:164
-#, c-format
-msgid "Domain Admin User Name"
-msgstr ""
-
-#: authentication.pm:165
-#, c-format
-msgid "Domain Admin Password"
-msgstr ""
-
-#: authentication.pm:181
-#, c-format
-msgid "Set administrator (root) password and network authentication methods"
-msgstr ""
-
-#: authentication.pm:182
-#, c-format
-msgid "Set administrator (root) password"
-msgstr ""
-
-#: authentication.pm:183 standalone/drakvpn:1111
-#, c-format
-msgid "Authentication method"
-msgstr ""
-
-#. -PO: keep this short or else the buttons will not fit in the window
-#: authentication.pm:188 help.pm:723
-#, c-format
-msgid "No password"
-msgstr ""
-
-#: authentication.pm:194
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr ""
-
-#: authentication.pm:199 network/netconnect.pm:322 network/netconnect.pm:585 standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:481
-#, c-format
-msgid "Authentication"
-msgstr ""
-
-#: authentication.pm:331
-#, c-format
-msgid "Can not use broadcast with no NIS domain"
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:767
-#, 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 ""
-
-#: bootloader.pm:909
-#, c-format
-msgid "LILO with graphical menu"
-msgstr ""
-
-#: bootloader.pm:910
-#, c-format
-msgid "LILO with text menu"
-msgstr ""
-
-#: bootloader.pm:911
-#, c-format
-msgid "GRUB with graphical menu"
-msgstr ""
-
-#: bootloader.pm:912
-#, c-format
-msgid "GRUB with text menu"
-msgstr ""
-
-#: bootloader.pm:913
-#, c-format
-msgid "Yaboot"
-msgstr ""
-
-#: bootloader.pm:990
-#, c-format
-msgid "not enough room in /boot"
-msgstr ""
-
-#: bootloader.pm:1483
-#, c-format
-msgid ""
-"You can not install the bootloader on a %s partition\n"
-""
-msgstr ""
-
-#: bootloader.pm:1523
-#, c-format
-msgid "Your bootloader configuration must be updated because partition has been renumbered"
-msgstr ""
-
-#: bootloader.pm:1536
-#, c-format
-msgid "The bootloader can not be installed correctly. You have to boot rescue and choose \"%s\""
-msgstr ""
-
-#: bootloader.pm:1537
-#, c-format
-msgid "Re-install Boot Loader"
-msgstr ""
-
-#: common.pm:134
-#, c-format
-msgid "KB"
-msgstr ""
-
-#: common.pm:134
-#, c-format
-msgid "MB"
-msgstr ""
-
-#: common.pm:134
-#, c-format
-msgid "GB"
-msgstr ""
-
-#: common.pm:142
-#, c-format
-msgid "TB"
-msgstr ""
-
-#: common.pm:150
-#, c-format
-msgid "%d minutes"
-msgstr ""
-
-#: common.pm:152
-#, c-format
-msgid "1 minute"
-msgstr ""
-
-#: common.pm:154
-#, c-format
-msgid "%d seconds"
-msgstr ""
-
-#: common.pm:260
-#, c-format
-msgid "kdesu missing"
-msgstr ""
-
-#: common.pm:263
-#, c-format
-msgid "consolehelper missing"
-msgstr ""
-
-#: crypto.pm:13 crypto.pm:48 lang.pm:207 network/adsl_consts.pm:66 network/adsl_consts.pm:75 network/adsl_consts.pm:84
-#, c-format
-msgid "Austria"
-msgstr ""
-
-#: crypto.pm:14 crypto.pm:47 lang.pm:208 standalone/drakxtv:48
-#, c-format
-msgid "Australia"
-msgstr ""
-
-#: crypto.pm:15 crypto.pm:49 lang.pm:214 network/adsl_consts.pm:93 network/adsl_consts.pm:102 network/adsl_consts.pm:114 network/adsl_consts.pm:123 network/netconnect.pm:44
-#, c-format
-msgid "Belgium"
-msgstr ""
-
-#: crypto.pm:16 crypto.pm:50 lang.pm:223 network/adsl_consts.pm:132 network/adsl_consts.pm:143 network/adsl_consts.pm:152 network/adsl_consts.pm:161
-#, c-format
-msgid "Brazil"
-msgstr ""
-
-#: crypto.pm:17 crypto.pm:51 lang.pm:230
-#, c-format
-msgid "Canada"
-msgstr ""
-
-#: crypto.pm:18 crypto.pm:74 lang.pm:235 network/adsl_consts.pm:891 network/adsl_consts.pm:900 network/adsl_consts.pm:911
-#, c-format
-msgid "Switzerland"
-msgstr ""
-
-#: crypto.pm:19 lang.pm:242
-#, c-format
-msgid "Costa Rica"
-msgstr ""
-
-#: crypto.pm:20 crypto.pm:52 lang.pm:248 network/adsl_consts.pm:368
-#, c-format
-msgid "Czech Republic"
-msgstr ""
-
-#: crypto.pm:21 crypto.pm:57 lang.pm:249 network/adsl_consts.pm:499 network/adsl_consts.pm:508
-#, c-format
-msgid "Germany"
-msgstr ""
-
-#: crypto.pm:22 crypto.pm:53 lang.pm:251 network/adsl_consts.pm:378
-#, c-format
-msgid "Denmark"
-msgstr ""
-
-#: crypto.pm:23 crypto.pm:54 lang.pm:256
-#, c-format
-msgid "Estonia"
-msgstr ""
-
-#: crypto.pm:24 crypto.pm:72 lang.pm:260 network/adsl_consts.pm:759 network/adsl_consts.pm:770 network/adsl_consts.pm:781 network/adsl_consts.pm:792 network/adsl_consts.pm:801 network/adsl_consts.pm:810 network/adsl_consts.pm:819 network/adsl_consts.pm:828 network/adsl_consts.pm:837 network/adsl_consts.pm:846 network/adsl_consts.pm:855 network/adsl_consts.pm:864 network/adsl_consts.pm:873
-#, c-format
-msgid "Spain"
-msgstr ""
-
-#: crypto.pm:25 crypto.pm:55 lang.pm:262 network/adsl_consts.pm:387
-#, c-format
-msgid "Finland"
-msgstr ""
-
-#: crypto.pm:26 crypto.pm:56 lang.pm:267 network/adsl_consts.pm:396 network/adsl_consts.pm:408 network/adsl_consts.pm:420 network/adsl_consts.pm:431 network/adsl_consts.pm:442 network/adsl_consts.pm:454 network/adsl_consts.pm:466 network/adsl_consts.pm:477 network/adsl_consts.pm:488 network/netconnect.pm:41
-#, c-format
-msgid "France"
-msgstr ""
-
-#: crypto.pm:27 crypto.pm:58 lang.pm:280 network/adsl_consts.pm:519
-#, c-format
-msgid "Greece"
-msgstr ""
-
-#: crypto.pm:28 crypto.pm:59 lang.pm:291 network/adsl_consts.pm:528
-#, c-format
-msgid "Hungary"
-msgstr ""
-
-#: crypto.pm:29 crypto.pm:60 lang.pm:293 network/adsl_consts.pm:537 standalone/drakxtv:47
-#, c-format
-msgid "Ireland"
-msgstr ""
-
-#: crypto.pm:30 crypto.pm:61 lang.pm:294 network/adsl_consts.pm:546
-#, c-format
-msgid "Israel"
-msgstr ""
-
-#: crypto.pm:31 crypto.pm:62 lang.pm:300 network/adsl_consts.pm:557 network/adsl_consts.pm:569 network/adsl_consts.pm:580 network/adsl_consts.pm:589 network/netconnect.pm:43 standalone/drakxtv:47
-#, c-format
-msgid "Italy"
-msgstr ""
-
-#: crypto.pm:32 crypto.pm:63 lang.pm:303
-#, c-format
-msgid "Japan"
-msgstr ""
-
-#: crypto.pm:33 crypto.pm:64 lang.pm:352 network/adsl_consts.pm:620 network/adsl_consts.pm:629 network/adsl_consts.pm:638 network/adsl_consts.pm:647 network/netconnect.pm:42
-#, c-format
-msgid "Netherlands"
-msgstr ""
-
-#: crypto.pm:34 crypto.pm:66 lang.pm:353 network/adsl_consts.pm:656 network/adsl_consts.pm:661 network/adsl_consts.pm:666 network/adsl_consts.pm:671 network/adsl_consts.pm:676 network/adsl_consts.pm:681 network/adsl_consts.pm:686
-#, c-format
-msgid "Norway"
-msgstr ""
-
-#: crypto.pm:35 crypto.pm:65 lang.pm:357
-#, c-format
-msgid "New Zealand"
-msgstr ""
-
-#: crypto.pm:36 crypto.pm:67 lang.pm:365 network/adsl_consts.pm:693 network/adsl_consts.pm:704
-#, c-format
-msgid "Poland"
-msgstr ""
-
-#: crypto.pm:37 crypto.pm:68 lang.pm:370 network/adsl_consts.pm:716
-#, c-format
-msgid "Portugal"
-msgstr ""
-
-#: crypto.pm:38 crypto.pm:69 lang.pm:376 network/adsl_consts.pm:725
-#, c-format
-msgid "Russia"
-msgstr ""
-
-#: crypto.pm:39 crypto.pm:73 lang.pm:382 network/adsl_consts.pm:882
-#, c-format
-msgid "Sweden"
-msgstr ""
-
-#: crypto.pm:40 crypto.pm:70 lang.pm:387
-#, c-format
-msgid "Slovakia"
-msgstr ""
-
-#: crypto.pm:41 crypto.pm:76 lang.pm:401 network/adsl_consts.pm:920
-#, c-format
-msgid "Thailand"
-msgstr ""
-
-#: crypto.pm:42 crypto.pm:75 lang.pm:411
-#, c-format
-msgid "Taiwan"
-msgstr ""
-
-#: crypto.pm:43 crypto.pm:71 lang.pm:430 standalone/drakxtv:49
-#, c-format
-msgid "South Africa"
-msgstr ""
-
-#: crypto.pm:77 crypto.pm:112 lang.pm:416 network/netconnect.pm:45
-#, c-format
-msgid "United States"
-msgstr ""
-
-#: diskdrake/dav.pm:17
-#, c-format
-msgid ""
-"WebDAV is a protocol that allows you to mount a web server's directory\n"
-"locally, and treat it like a local filesystem (provided the web server is\n"
-"configured as a WebDAV server). If you would like to add WebDAV mount\n"
-"points, select \"New\"."
-msgstr ""
-
-#: diskdrake/dav.pm:25
-#, c-format
-msgid "New"
-msgstr ""
-
-#: diskdrake/dav.pm:61 diskdrake/interactive.pm:456 diskdrake/smbnfs_gtk.pm:74
-#, c-format
-msgid "Unmount"
-msgstr ""
-
-#: diskdrake/dav.pm:62 diskdrake/interactive.pm:453 diskdrake/smbnfs_gtk.pm:75
-#, c-format
-msgid "Mount"
-msgstr ""
-
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:447 diskdrake/interactive.pm:679 diskdrake/interactive.pm:698 diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:78
-#, c-format
-msgid "Mount point"
-msgstr ""
-
-#: diskdrake/dav.pm:83
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr ""
-
-#: diskdrake/dav.pm:87
-#, c-format
-msgid "The URL must begin with http:// or https://"
-msgstr ""
-
-#: diskdrake/dav.pm:109
-#, c-format
-msgid "Server: "
-msgstr ""
-
-#: diskdrake/dav.pm:110 diskdrake/interactive.pm:523 diskdrake/interactive.pm:1218 diskdrake/interactive.pm:1296
-#, c-format
-msgid "Mount point: "
-msgstr ""
-
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1303
-#, c-format
-msgid "Options: %s"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:52 diskdrake/interactive.pm:293 diskdrake/smbnfs_gtk.pm:21 install_interactive.pm:63 install_interactive.pm:217 install_interactive.pm:223 install_interactive.pm:276 install_interactive.pm:281 install_steps_interactive.pm:253 install_steps_interactive.pm:317 steps.pm:21
-#, c-format
-msgid "Partitioning"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:92
-#, c-format
-msgid "Please make a backup of your data first"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:95
-#, c-format
-msgid ""
-"If you plan to use aboot, be careful to leave a free space (2048 sectors is enough)\n"
-"at the beginning of the disk"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:152 help.pm:531
-#, c-format
-msgid "Wizard"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:185
-#, c-format
-msgid "Choose action"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:189
-#, 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 ""
-
-#: diskdrake/hd_gtk.pm:191
-#, c-format
-msgid "Please click on a partition"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:457 standalone/drakbackup:3088 standalone/drakbackup:3148
-#, c-format
-msgid "Details"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:251
-#, c-format
-msgid "No hard drives found"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:335
-#, c-format
-msgid "Ext2"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:335
-#, c-format
-msgid "Journalised FS"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:335
-#, c-format
-msgid "Swap"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:335
-#, c-format
-msgid "SunOS"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:335
-#, c-format
-msgid "HFS"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:335
-#, c-format
-msgid "Windows"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1233
-#, c-format
-msgid "Empty"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:340
-#, c-format
-msgid "Filesystem types:"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:359 diskdrake/hd_gtk.pm:365
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:357 diskdrake/interactive.pm:472
-#, c-format
-msgid "Create"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:365 diskdrake/interactive.pm:448 diskdrake/interactive.pm:625 diskdrake/removable.pm:25 diskdrake/removable.pm:48 standalone/harddrake2:108 standalone/harddrake2:117
-#, c-format
-msgid "Type"
-msgstr ""
-
-#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: diskdrake/hd_gtk.pm:359 diskdrake/interactive.pm:457 standalone/drakperm:123 standalone/printerdrake:248
-#, c-format
-msgid "Delete"
-msgstr ""
-
-#: diskdrake/hd_gtk.pm:365
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr ""
-
-#: diskdrake/interactive.pm:195
-#, c-format
-msgid "Choose another partition"
-msgstr ""
-
-#: diskdrake/interactive.pm:195
-#, c-format
-msgid "Choose a partition"
-msgstr ""
-
-#: diskdrake/interactive.pm:224
-#, c-format
-msgid "Exit"
-msgstr ""
-
-#: diskdrake/interactive.pm:257 help.pm:531
-#, c-format
-msgid "Undo"
-msgstr ""
-
-#: diskdrake/interactive.pm:257
-#, c-format
-msgid "Toggle to normal mode"
-msgstr ""
-
-#: diskdrake/interactive.pm:257
-#, c-format
-msgid "Toggle to expert mode"
-msgstr ""
-
-#: diskdrake/interactive.pm:276
-#, c-format
-msgid "Continue anyway?"
-msgstr ""
-
-#: diskdrake/interactive.pm:281
-#, c-format
-msgid "Quit without saving"
-msgstr ""
-
-#: diskdrake/interactive.pm:281
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr ""
-
-#: diskdrake/interactive.pm:286
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr ""
-
-#: diskdrake/interactive.pm:293 install_steps_interactive.pm:317
-#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-
-#: diskdrake/interactive.pm:298
-#, c-format
-msgid ""
-"You should format partition %s.\n"
-"Otherwise no entry for mount point %s will be written in fstab.\n"
-"Quit anyway?"
-msgstr ""
-
-#: diskdrake/interactive.pm:311 help.pm:531
-#, c-format
-msgid "Clear all"
-msgstr ""
-
-#: diskdrake/interactive.pm:312 help.pm:531
-#, c-format
-msgid "Auto allocate"
-msgstr ""
-
-#: diskdrake/interactive.pm:313 help.pm:531 help.pm:567 help.pm:607 help.pm:856 install_steps_interactive.pm:98
-#, c-format
-msgid "More"
-msgstr ""
-
-#: diskdrake/interactive.pm:318
-#, c-format
-msgid "Hard drive information"
-msgstr ""
-
-#: diskdrake/interactive.pm:350
-#, c-format
-msgid "All primary partitions are used"
-msgstr ""
-
-#: diskdrake/interactive.pm:351
-#, c-format
-msgid "I can not add any more partitions"
-msgstr ""
-
-#: diskdrake/interactive.pm:352
-#, c-format
-msgid "To have more partitions, please delete one to be able to create an extended partition"
-msgstr ""
-
-#: diskdrake/interactive.pm:361
-#, c-format
-msgid "No supermount"
-msgstr ""
-
-#: diskdrake/interactive.pm:362
-#, c-format
-msgid "Supermount"
-msgstr ""
-
-#: diskdrake/interactive.pm:363
-#, c-format
-msgid "Supermount except for CDROM drives"
-msgstr ""
-
-#: diskdrake/interactive.pm:369 help.pm:531
-#, c-format
-msgid "Save partition table"
-msgstr ""
-
-#: diskdrake/interactive.pm:370 help.pm:531
-#, c-format
-msgid "Restore partition table"
-msgstr ""
-
-#: diskdrake/interactive.pm:371 help.pm:531
-#, c-format
-msgid "Rescue partition table"
-msgstr ""
-
-#: diskdrake/interactive.pm:373 help.pm:531
-#, c-format
-msgid "Reload partition table"
-msgstr ""
-
-#: diskdrake/interactive.pm:375
-#, c-format
-msgid "Removable media automounting"
-msgstr ""
-
-#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:414
-#, c-format
-msgid "Select file"
-msgstr ""
-
-#: diskdrake/interactive.pm:400
-#, c-format
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-
-#: diskdrake/interactive.pm:429
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr ""
-
-#: diskdrake/interactive.pm:435
-#, c-format
-msgid "Detailed information"
-msgstr ""
-
-#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:769
-#, c-format
-msgid "Resize"
-msgstr ""
-
-#: diskdrake/interactive.pm:452
-#, c-format
-msgid "Format"
-msgstr ""
-
-#: diskdrake/interactive.pm:454
-#, c-format
-msgid "Add to RAID"
-msgstr ""
-
-#: diskdrake/interactive.pm:455
-#, c-format
-msgid "Add to LVM"
-msgstr ""
-
-#: diskdrake/interactive.pm:458
-#, c-format
-msgid "Remove from RAID"
-msgstr ""
-
-#: diskdrake/interactive.pm:459
-#, c-format
-msgid "Remove from LVM"
-msgstr ""
-
-#: diskdrake/interactive.pm:460
-#, c-format
-msgid "Modify RAID"
-msgstr ""
-
-#: diskdrake/interactive.pm:461
-#, c-format
-msgid "Use for loopback"
-msgstr ""
-
-#: diskdrake/interactive.pm:516
-#, c-format
-msgid "Create a new partition"
-msgstr ""
-
-#: diskdrake/interactive.pm:519
-#, c-format
-msgid "Start sector: "
-msgstr ""
-
-#: diskdrake/interactive.pm:521 diskdrake/interactive.pm:938
-#, c-format
-msgid "Size in MB: "
-msgstr ""
-
-#: diskdrake/interactive.pm:522 diskdrake/interactive.pm:939
-#, c-format
-msgid "Filesystem type: "
-msgstr ""
-
-#: diskdrake/interactive.pm:527
-#, c-format
-msgid "Preference: "
-msgstr ""
-
-#: diskdrake/interactive.pm:530
-#, c-format
-msgid "Logical volume name "
-msgstr ""
-
-#: diskdrake/interactive.pm:560
-#, c-format
-msgid ""
-"You can not create a new partition\n"
-"(since you reached the maximal number of primary partitions).\n"
-"First remove a primary partition and create an extended partition."
-msgstr ""
-
-#: diskdrake/interactive.pm:590
-#, c-format
-msgid "Remove the loopback file?"
-msgstr ""
-
-#: diskdrake/interactive.pm:609
-#, c-format
-msgid "After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-
-#: diskdrake/interactive.pm:621
-#, c-format
-msgid "Change partition type"
-msgstr ""
-
-#: diskdrake/interactive.pm:622 diskdrake/removable.pm:47
-#, c-format
-msgid "Which filesystem do you want?"
-msgstr ""
-
-#: diskdrake/interactive.pm:630
-#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr ""
-
-#: diskdrake/interactive.pm:650
-#, c-format
-msgid "Which volume label?"
-msgstr ""
-
-#: diskdrake/interactive.pm:666
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr ""
-
-#: diskdrake/interactive.pm:667
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr ""
-
-#: diskdrake/interactive.pm:672
-#, c-format
-msgid ""
-"Can not unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-
-#: diskdrake/interactive.pm:697
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr ""
-
-#: diskdrake/interactive.pm:721 diskdrake/interactive.pm:800 install_interactive.pm:157 install_interactive.pm:189
-#, c-format
-msgid "Resizing"
-msgstr ""
-
-#: diskdrake/interactive.pm:721
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr ""
-
-#: diskdrake/interactive.pm:757
-#, c-format
-msgid "This partition is not resizeable"
-msgstr ""
-
-#: diskdrake/interactive.pm:762
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr ""
-
-#: diskdrake/interactive.pm:764
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-
-#: diskdrake/interactive.pm:769
-#, c-format
-msgid "Choose the new size"
-msgstr ""
-
-#: diskdrake/interactive.pm:770
-#, c-format
-msgid "New size in MB: "
-msgstr ""
-
-#: diskdrake/interactive.pm:811 install_interactive.pm:197
-#, c-format
-msgid ""
-"To ensure data integrity after resizing the partition(s), \n"
-"filesystem checks will be run on your next boot into Microsoft Windows®"
-msgstr ""
-
-#: diskdrake/interactive.pm:852
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr ""
-
-#: diskdrake/interactive.pm:854 diskdrake/interactive.pm:871
-#, c-format
-msgid "new"
-msgstr ""
-
-#: diskdrake/interactive.pm:869
-#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr ""
-
-#: diskdrake/interactive.pm:875
-#, c-format
-msgid "LVM name?"
-msgstr ""
-
-#: diskdrake/interactive.pm:903
-#, c-format
-msgid ""
-"Physical volume %s is still in use.\n"
-"Do you want to move used physical extents on this volume to other volumes?"
-msgstr ""
-
-#: diskdrake/interactive.pm:905
-#, c-format
-msgid "Moving physical extents"
-msgstr ""
-
-#: diskdrake/interactive.pm:923
-#, c-format
-msgid "This partition can not be used for loopback"
-msgstr ""
-
-#: diskdrake/interactive.pm:936
-#, c-format
-msgid "Loopback"
-msgstr ""
-
-#: diskdrake/interactive.pm:937
-#, c-format
-msgid "Loopback file name: "
-msgstr ""
-
-#: diskdrake/interactive.pm:942
-#, c-format
-msgid "Give a file name"
-msgstr ""
-
-#: diskdrake/interactive.pm:945
-#, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr ""
-
-#: diskdrake/interactive.pm:946
-#, c-format
-msgid "File already exists. Use it?"
-msgstr ""
-
-#: diskdrake/interactive.pm:969
-#, c-format
-msgid "Mount options"
-msgstr ""
-
-#: diskdrake/interactive.pm:976
-#, c-format
-msgid "Various"
-msgstr ""
-
-#: diskdrake/interactive.pm:1044
-#, c-format
-msgid "device"
-msgstr ""
-
-#: diskdrake/interactive.pm:1045
-#, c-format
-msgid "level"
-msgstr ""
-
-#: diskdrake/interactive.pm:1046
-#, c-format
-msgid "chunk size in KiB"
-msgstr ""
-
-#: diskdrake/interactive.pm:1063
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr ""
-
-#: diskdrake/interactive.pm:1078
-#, c-format
-msgid "What type of partitioning?"
-msgstr ""
-
-#: diskdrake/interactive.pm:1116
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr ""
-
-#: diskdrake/interactive.pm:1125
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr ""
-
-#: diskdrake/interactive.pm:1148
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-
-#: diskdrake/interactive.pm:1164
-#, c-format
-msgid "Move files to the new partition"
-msgstr ""
-
-#: diskdrake/interactive.pm:1164 standalone/draksambashare:81 standalone/draksambashare:144
-#, c-format
-msgid "Hide files"
-msgstr ""
-
-#: diskdrake/interactive.pm:1165
-#, c-format
-msgid ""
-"Directory %s already contains data\n"
-"(%s)"
-msgstr ""
-
-#: diskdrake/interactive.pm:1176
-#, c-format
-msgid "Moving files to the new partition"
-msgstr ""
-
-#: diskdrake/interactive.pm:1180
-#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: diskdrake/interactive.pm:1184
-#, c-format
-msgid "Removing %s"
-msgstr ""
-
-#: diskdrake/interactive.pm:1198
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: diskdrake/interactive.pm:1199
-#, c-format
-msgid "Partitions have been renumbered: "
-msgstr ""
-
-#: diskdrake/interactive.pm:1219 diskdrake/interactive.pm:1281
-#, c-format
-msgid "Device: "
-msgstr ""
-
-#: diskdrake/interactive.pm:1220
-#, c-format
-msgid "Devfs name: "
-msgstr ""
-
-#: diskdrake/interactive.pm:1221
-#, c-format
-msgid "Volume label: "
-msgstr ""
-
-#: diskdrake/interactive.pm:1222
-#, c-format
-msgid ""
-"DOS drive letter: %s (just a guess)\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1226 diskdrake/interactive.pm:1235 diskdrake/interactive.pm:1299
-#, c-format
-msgid "Type: "
-msgstr ""
-
-#: diskdrake/interactive.pm:1230 install_steps_gtk.pm:300
-#, c-format
-msgid "Name: "
-msgstr ""
-
-#: diskdrake/interactive.pm:1237
-#, c-format
-msgid ""
-"Start: sector %s\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1238
-#, c-format
-msgid "Size: %s"
-msgstr ""
-
-#: diskdrake/interactive.pm:1240
-#, c-format
-msgid ", %s sectors"
-msgstr ""
-
-#: diskdrake/interactive.pm:1242
-#, c-format
-msgid ""
-"Cylinder %d to %d\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1243
-#, c-format
-msgid ""
-"Number of logical extents: %d\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1244
-#, c-format
-msgid ""
-"Formatted\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1245
-#, c-format
-msgid ""
-"Not formatted\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1246
-#, c-format
-msgid ""
-"Mounted\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1247
-#, c-format
-msgid ""
-"RAID %s\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1252
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1253
-#, c-format
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1255
-#, c-format
-msgid ""
-"Level %s\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1256
-#, c-format
-msgid ""
-"Chunk size %d KiB\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1257
-#, c-format
-msgid ""
-"RAID-disks %s\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1259
-#, c-format
-msgid "Loopback file name: %s"
-msgstr ""
-
-#: diskdrake/interactive.pm:1262
-#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1265
-#, c-format
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1282
-#, c-format
-msgid "Read-only"
-msgstr ""
-
-#: diskdrake/interactive.pm:1283
-#, c-format
-msgid ""
-"Size: %s\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1284
-#, c-format
-msgid ""
-"Geometry: %s cylinders, %s heads, %s sectors\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1285 network/thirdparty.pm:331
-#, c-format
-msgid "Info: "
-msgstr ""
-
-#: diskdrake/interactive.pm:1286
-#, c-format
-msgid ""
-"LVM-disks %s\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1287
-#, c-format
-msgid ""
-"Partition table type: %s\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1288
-#, c-format
-msgid ""
-"on channel %d id %d\n"
-""
-msgstr ""
-
-#: diskdrake/interactive.pm:1331
-#, c-format
-msgid "Filesystem encryption key"
-msgstr ""
-
-#: diskdrake/interactive.pm:1332
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: diskdrake/interactive.pm:1335
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-
-#: diskdrake/interactive.pm:1336
-#, c-format
-msgid "The encryption keys do not match"
-msgstr ""
-
-#: diskdrake/interactive.pm:1339 network/netconnect.pm:1073 standalone/drakconnect:419 standalone/drakroam:120
-#, c-format
-msgid "Encryption key"
-msgstr ""
-
-#: diskdrake/interactive.pm:1340
-#, c-format
-msgid "Encryption key (again)"
-msgstr ""
-
-#: diskdrake/interactive.pm:1342 standalone/drakvpn:1017 standalone/drakvpn:1102
-#, c-format
-msgid "Encryption algorithm"
-msgstr ""
-
-#: diskdrake/removable.pm:46
-#, c-format
-msgid "Change type"
-msgstr ""
-
-#: diskdrake/smbnfs_gtk.pm:163
-#, c-format
-msgid "Can not login using username %s (bad password?)"
-msgstr ""
-
-#: diskdrake/smbnfs_gtk.pm:167 diskdrake/smbnfs_gtk.pm:176
-#, c-format
-msgid "Domain Authentication Required"
-msgstr ""
-
-#: diskdrake/smbnfs_gtk.pm:168
-#, c-format
-msgid "Which username"
-msgstr ""
-
-#: diskdrake/smbnfs_gtk.pm:168
-#, c-format
-msgid "Another one"
-msgstr ""
-
-#: diskdrake/smbnfs_gtk.pm:177
-#, c-format
-msgid "Please enter your username, password and domain name to access this host."
-msgstr ""
-
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3640
-#, c-format
-msgid "Username"
-msgstr ""
-
-#: diskdrake/smbnfs_gtk.pm:205
-#, c-format
-msgid "Search servers"
-msgstr ""
-
-#: diskdrake/smbnfs_gtk.pm:210
-#, c-format
-msgid "Search new servers"
-msgstr ""
-
-#: do_pkgs.pm:16 do_pkgs.pm:49
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-
-#: do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:52 printer/printerdrake.pm:3948
-#, c-format
-msgid "Could not install the %s package!"
-msgstr ""
-
-#: do_pkgs.pm:24 do_pkgs.pm:57
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: do_pkgs.pm:35 harddrake/sound.pm:278 install_steps_interactive.pm:1288 keyboard.pm:381 network/ndiswrapper.pm:95 network/netconnect.pm:471 printer/printerdrake.pm:1416 printer/printerdrake.pm:2495 printer/printerdrake.pm:2632 printer/printerdrake.pm:2953 printer/printerdrake.pm:2960 printer/printerdrake.pm:3947 printer/printerdrake.pm:4211 printer/printerdrake.pm:4330 printer/printerdrake.pm:5487 standalone/drakTermServ:354 standalone/drakTermServ:1267 standalone/drakTermServ:1328 standalone/drakTermServ:2006 standalone/drakbackup:510 standalone/drakbackup:609 standalone/drakboot:133 standalone/drakclock:224 standalone/drakconnect:973 standalone/drakfont:679 standalone/drakperm:380 standalone/drakperm:390 standalone/drakups:27 standalone/harddrake2:510 standalone/harddrake2:526 standalone/localedrake:43 standalone/scannerdrake:51 standalone/scannerdrake:957
-#, c-format
-msgid "Warning"
-msgstr ""
-
-#: do_pkgs.pm:35 standalone/harddrake2:526
-#, c-format
-msgid ""
-"The following packages need to be installed:\n"
-""
-msgstr ""
-
-#: do_pkgs.pm:205
-#, c-format
-msgid "Installing packages..."
-msgstr ""
-
-#: do_pkgs.pm:252
-#, c-format
-msgid "Removing packages..."
-msgstr ""
-
-#: fs/format.pm:58 fs/format.pm:65
-#, c-format
-msgid "Formatting partition %s"
-msgstr ""
-
-#: fs/format.pm:62
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr ""
-
-#: fs/format.pm:115
-#, c-format
-msgid "I do not know how to format %s in type %s"
-msgstr ""
-
-#: fs/format.pm:120 fs/format.pm:122
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr ""
-
-#: fs/loopback.pm:24
-#, c-format
-msgid ""
-"Circular mounts %s\n"
-""
-msgstr ""
-
-#: fs/mount.pm:74
-#, c-format
-msgid "Mounting partition %s"
-msgstr ""
-
-#: fs/mount.pm:75
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: fs/mount.pm:80 fs/mount.pm:97
-#, c-format
-msgid "Checking %s"
-msgstr ""
-
-#: fs/mount.pm:113 partition_table.pm:385
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr ""
-
-#: fs/mount.pm:142
-#, c-format
-msgid "Enabling swap partition %s"
-msgstr ""
-
-#: fs/mount_options.pm:113
-#, c-format
-msgid "Use an encrypted file system"
-msgstr ""
-
-#: fs/mount_options.pm:115
-#, c-format
-msgid "Enable group disk quota accounting and optionally enforce limits"
-msgstr ""
-
-#: fs/mount_options.pm:117
-#, c-format
-msgid ""
-"Do not update inode access times on this file system\n"
-"(e.g, for faster access on the news spool to speed up news servers)."
-msgstr ""
-
-#: fs/mount_options.pm:120
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
-msgstr ""
-
-#: fs/mount_options.pm:123
-#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr ""
-
-#: fs/mount_options.pm:125
-#, c-format
-msgid ""
-"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
-"containing binaries for architectures other than its own."
-msgstr ""
-
-#: fs/mount_options.pm:129
-#, c-format
-msgid ""
-"Do not allow set-user-identifier or set-group-identifier\n"
-"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
-"have suidperl(1) installed.)"
-msgstr ""
-
-#: fs/mount_options.pm:133
-#, c-format
-msgid "Mount the file system read-only."
-msgstr ""
-
-#: fs/mount_options.pm:135
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
-msgstr ""
-
-#: fs/mount_options.pm:139
-#, c-format
-msgid "Allow an ordinary user to mount the file system."
-msgstr ""
-
-#: fs/mount_options.pm:141
-#, c-format
-msgid "Enable user disk quota accounting, and optionally enforce limits"
-msgstr ""
-
-#: fs/mount_options.pm:143
-#, c-format
-msgid "Support user. extended attributes"
-msgstr ""
-
-#: fs/mount_options.pm:145
-#, c-format
-msgid "Give write access to ordinary users"
-msgstr ""
-
-#: fs/mount_options.pm:147
-#, c-format
-msgid "Give read-only access to ordinary users"
-msgstr ""
-
-#: fs/type.pm:363
-#, c-format
-msgid "You can not use JFS for partitions smaller than 16MB"
-msgstr ""
-
-#: fs/type.pm:364
-#, c-format
-msgid "You can not use ReiserFS for partitions smaller than 32MB"
-msgstr ""
-
-#: fsedit.pm:27
-#, c-format
-msgid "with /usr"
-msgstr ""
-
-#: fsedit.pm:32
-#, c-format
-msgid "server"
-msgstr ""
-
-#: fsedit.pm:219
-#, c-format
-msgid ""
-"I can not read the partition table of device %s, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to lose all the partitions?\n"
-""
-msgstr ""
-
-#: fsedit.pm:392
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr ""
-
-#: fsedit.pm:393
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr ""
-
-#: fsedit.pm:394
-#, c-format
-msgid ""
-"There is already a partition with mount point %s\n"
-""
-msgstr ""
-
-#: fsedit.pm:398
-#, c-format
-msgid ""
-"You've selected a software RAID partition as root (/).\n"
-"No bootloader is able to handle this without a /boot partition.\n"
-"Please be sure to add a /boot partition"
-msgstr ""
-
-#: fsedit.pm:404
-#, c-format
-msgid "You can not use the LVM Logical Volume for mount point %s since it spans physical volumes"
-msgstr ""
-
-#: fsedit.pm:406
-#, c-format
-msgid ""
-"You've selected the LVM Logical Volume as root (/).\n"
-"The bootloader is not able to handle this when the volume spans physical volumes.\n"
-"You should create a /boot partition first"
-msgstr ""
-
-#: fsedit.pm:410 fsedit.pm:412
-#, c-format
-msgid "This directory should remain within the root filesystem"
-msgstr ""
-
-#: fsedit.pm:414 fsedit.pm:416
-#, c-format
-msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount point\n"
-""
-msgstr ""
-
-#: fsedit.pm:418
-#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
-msgstr ""
-
-#: fsedit.pm:482
-#, c-format
-msgid "Not enough free space for auto-allocating"
-msgstr ""
-
-#: fsedit.pm:484
-#, c-format
-msgid "Nothing to do"
-msgstr ""
-
-#: harddrake/data.pm:62 install_any.pm:1710
-#, c-format
-msgid "Floppy"
-msgstr ""
-
-#: harddrake/data.pm:72
-#, c-format
-msgid "Zip"
-msgstr ""
-
-#: harddrake/data.pm:88 install_any.pm:1711
-#, c-format
-msgid "Hard Disk"
-msgstr ""
-
-#: harddrake/data.pm:97 install_any.pm:1712
-#, c-format
-msgid "CDROM"
-msgstr ""
-
-#: harddrake/data.pm:107
-#, c-format
-msgid "CD/DVD burners"
-msgstr ""
-
-#: harddrake/data.pm:117
-#, c-format
-msgid "DVD-ROM"
-msgstr ""
-
-#: harddrake/data.pm:127 standalone/drakbackup:2066
-#, c-format
-msgid "Tape"
-msgstr ""
-
-#: harddrake/data.pm:136
-#, c-format
-msgid "Videocard"
-msgstr ""
-
-#: harddrake/data.pm:146
-#, c-format
-msgid "DVB card"
-msgstr ""
-
-#: harddrake/data.pm:154
-#, c-format
-msgid "Tvcard"
-msgstr ""
-
-#: harddrake/data.pm:163
-#, c-format
-msgid "Other MultiMedia devices"
-msgstr ""
-
-#: harddrake/data.pm:172
-#, c-format
-msgid "Soundcard"
-msgstr ""
-
-#: harddrake/data.pm:185
-#, c-format
-msgid "Webcam"
-msgstr ""
-
-#: harddrake/data.pm:199
-#, c-format
-msgid "Processors"
-msgstr ""
-
-#: harddrake/data.pm:209
-#, c-format
-msgid "ISDN adapters"
-msgstr ""
-
-#: harddrake/data.pm:220
-#, c-format
-msgid "USB sound devices"
-msgstr ""
-
-#: harddrake/data.pm:229
-#, c-format
-msgid "Radio cards"
-msgstr ""
-
-#: harddrake/data.pm:238
-#, c-format
-msgid "ATM network cards"
-msgstr ""
-
-#: harddrake/data.pm:247
-#, c-format
-msgid "WAN network cards"
-msgstr ""
-
-#: harddrake/data.pm:256
-#, c-format
-msgid "Bluetooth devices"
-msgstr ""
-
-#: harddrake/data.pm:265
-#, c-format
-msgid "Ethernetcard"
-msgstr ""
-
-#: harddrake/data.pm:282 network/netconnect.pm:492
-#, c-format
-msgid "Modem"
-msgstr ""
-
-#: harddrake/data.pm:292
-#, c-format
-msgid "ADSL adapters"
-msgstr ""
-
-#: harddrake/data.pm:306
-#, c-format
-msgid "Memory"
-msgstr ""
-
-#: harddrake/data.pm:315
-#, c-format
-msgid "AGP controllers"
-msgstr ""
-
-#: harddrake/data.pm:324 help.pm:187 help.pm:856 install_steps_interactive.pm:964
-#, c-format
-msgid "Printer"
-msgstr ""
-
-#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:338
-#, c-format
-msgid "Game port controllers"
-msgstr ""
-
-#: harddrake/data.pm:347
-#, c-format
-msgid "Joystick"
-msgstr ""
-
-#: harddrake/data.pm:357
-#, c-format
-msgid "SATA controllers"
-msgstr ""
-
-#: harddrake/data.pm:366
-#, c-format
-msgid "RAID controllers"
-msgstr ""
-
-#: harddrake/data.pm:375
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr ""
-
-#: harddrake/data.pm:385
-#, c-format
-msgid "Firewire controllers"
-msgstr ""
-
-#: harddrake/data.pm:394
-#, c-format
-msgid "PCMCIA controllers"
-msgstr ""
-
-#: harddrake/data.pm:403
-#, c-format
-msgid "SCSI controllers"
-msgstr ""
-
-#: harddrake/data.pm:412
-#, c-format
-msgid "USB controllers"
-msgstr ""
-
-#: harddrake/data.pm:421
-#, c-format
-msgid "USB ports"
-msgstr ""
-
-#: harddrake/data.pm:430
-#, c-format
-msgid "SMBus controllers"
-msgstr ""
-
-#: harddrake/data.pm:439
-#, c-format
-msgid "Bridges and system controllers"
-msgstr ""
-
-#: harddrake/data.pm:450 help.pm:856 install_steps_interactive.pm:94 install_steps_interactive.pm:924 standalone/finish-install:41 standalone/keyboarddrake:29
-#, c-format
-msgid "Keyboard"
-msgstr ""
-
-#: harddrake/data.pm:463
-#, c-format
-msgid "Tablet and touchscreen"
-msgstr ""
-
-#: harddrake/data.pm:472 help.pm:856 install_steps_interactive.pm:957
-#, c-format
-msgid "Mouse"
-msgstr ""
-
-#: harddrake/data.pm:486
-#, c-format
-msgid "UPS"
-msgstr ""
-
-#: harddrake/data.pm:495
-#, c-format
-msgid "Scanner"
-msgstr ""
-
-#: harddrake/data.pm:505 standalone/harddrake2:475
-#, c-format
-msgid "Unknown/Others"
-msgstr ""
-
-#: harddrake/data.pm:533
-#, c-format
-msgid "cpu # "
-msgstr ""
-
-#: harddrake/sound.pm:195 standalone/drakconnect:162 standalone/drakconnect:637
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr ""
-
-#: harddrake/sound.pm:232
-#, c-format
-msgid "No alternative driver"
-msgstr ""
-
-#: harddrake/sound.pm:233
-#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s) which currently uses \"%s\""
-msgstr ""
-
-#: harddrake/sound.pm:239
-#, c-format
-msgid "Sound configuration"
-msgstr ""
-
-#: harddrake/sound.pm:241
-#, c-format
-msgid "Here you can select an alternative driver (either OSS or ALSA) for your sound card (%s)."
-msgstr ""
-
-#. -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:246
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is \"%s\")"
-msgstr ""
-
-#: harddrake/sound.pm:248
-#, c-format
-msgid ""
-"OSS (Open Sound System) was the first sound API. It's an OS independent sound API (it's available on most UNIX(tm) systems) but it's a very basic and limited API.\n"
-"What's more, OSS drivers all reinvent the wheel.\n"
-"\n"
-"ALSA (Advanced Linux Sound Architecture) is a modularized architecture which\n"
-"supports quite a large range of ISA, USB and PCI cards.\n"
-"\n"
-"It also provides a much higher API than OSS.\n"
-"\n"
-"To use alsa, one can either use:\n"
-"- the old compatibility OSS api\n"
-"- the new ALSA api that provides many enhanced features but requires using the ALSA library.\n"
-""
-msgstr ""
-
-#: harddrake/sound.pm:262 harddrake/sound.pm:350 standalone/drakups:144
-#, c-format
-msgid "Driver:"
-msgstr ""
-
-#: harddrake/sound.pm:270
-#, c-format
-msgid "Trouble shooting"
-msgstr ""
-
-#: harddrake/sound.pm:278
-#, c-format
-msgid ""
-"The old \"%s\" driver is blacklisted.\n"
-"\n"
-"It has been reported to oops the kernel on unloading.\n"
-"\n"
-"The new \"%s\" driver will only be used on next bootstrap."
-msgstr ""
-
-#: harddrake/sound.pm:286
-#, c-format
-msgid "No open source driver"
-msgstr ""
-
-#: harddrake/sound.pm:287
-#, c-format
-msgid "There's no free driver for your sound card (%s), but there's a proprietary driver at \"%s\"."
-msgstr ""
-
-#: harddrake/sound.pm:290
-#, c-format
-msgid "No known driver"
-msgstr ""
-
-#: harddrake/sound.pm:291
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr ""
-
-#: harddrake/sound.pm:295 network/netconnect.pm:98 network/netconnect.pm:837
-#, c-format
-msgid "Unknown driver"
-msgstr ""
-
-#: harddrake/sound.pm:296
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr ""
-
-#: harddrake/sound.pm:310
-#, c-format
-msgid "Sound trouble shooting"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:313
-#, c-format
-msgid ""
-"The classic bug sound tester is to run the following commands:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
-"currently uses\n"
-"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services're configured to be run on\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-""
-msgstr ""
-
-#: harddrake/sound.pm:339
-#, c-format
-msgid "Let me pick any driver"
-msgstr ""
-
-#: harddrake/sound.pm:342
-#, c-format
-msgid "Choosing an arbitrary driver"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:345
-#, c-format
-msgid ""
-"If you really think that you know which driver is the right one for your card\n"
-"you can pick one in the above list.\n"
-"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
-msgstr ""
-
-#: harddrake/v4l.pm:12 standalone/net_applet:64 standalone/net_applet:65 standalone/net_applet:67
-#, c-format
-msgid "Auto-detect"
-msgstr ""
-
-#: harddrake/v4l.pm:97 harddrake/v4l.pm:285 harddrake/v4l.pm:337
-#, c-format
-msgid "Unknown|Generic"
-msgstr ""
-
-#: harddrake/v4l.pm:130
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: harddrake/v4l.pm:131
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: harddrake/v4l.pm:474
-#, 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 ""
-
-#: harddrake/v4l.pm:477
-#, c-format
-msgid "Card model:"
-msgstr ""
-
-#: harddrake/v4l.pm:478
-#, c-format
-msgid "Tuner type:"
-msgstr ""
-
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "Number of capture buffers:"
-msgstr ""
-
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: harddrake/v4l.pm:481
-#, c-format
-msgid "PLL setting:"
-msgstr ""
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "Radio support:"
-msgstr ""
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "enable radio support"
-msgstr ""
-
-#: help.pm:12
-#, c-format
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandriva Linux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-
-#: help.pm:18
-#, c-format
-msgid ""
-"GNU/Linux is a multi-user system which means each user can have his or her\n"
-"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point will not be authorized\n"
-"to change anything except their own files and their own configurations,\n"
-"protecting the system from unintentional or malicious changes which could\n"
-"impact on the system as a whole. You'll have to create at least one regular\n"
-"user for yourself -- this is the account which you should use for routine,\n"
-"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
-"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system will not work any more. If you make a\n"
-"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you will not affect the entire system.\n"
-"\n"
-"The first field asks you for a real name. Of course, this is not mandatory\n"
-"-- you can actually enter whatever you like. DrakX will use the first word\n"
-"you type in this field and copy it to the \"%s\" one, which is the name\n"
-"this user will enter to log onto the system. If you like, you may override\n"
-"the default and change the user name. The next step is to enter a password.\n"
-"From a security point of view, a non-privileged (regular) user password is\n"
-"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
-"by making it blank or too simple: after all, your files could be the ones\n"
-"at risk.\n"
-"\n"
-"Once you click on \"%s\", you can add other users. Add a user for each one\n"
-"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
-"finished adding users.\n"
-"\n"
-"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
-"that user (bash by default).\n"
-"\n"
-"When you're finished adding users, you'll be asked to choose a user who\n"
-"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click on\n"
-"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
-msgstr ""
-
-#: help.pm:52 printer/printerdrake.pm:1866 printer/printerdrake.pm:1987 standalone/draksambashare:60
-#, c-format
-msgid "User name"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: help.pm:52 help.pm:52 help.pm:432 help.pm:682 install_interactive.pm:176 install_steps_gtk.pm:237 install_steps_gtk.pm:682 interactive.pm:436 interactive/newt.pm:321 network/thirdparty.pm:385 printer/printerdrake.pm:3884 standalone/drakTermServ:412 standalone/drakbackup:4102 standalone/drakbackup:4196 standalone/drakbackup:4213 standalone/drakbackup:4231 ugtk2.pm:490
-#, c-format
-msgid "Next"
-msgstr ""
-
-#: help.pm:52
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr ""
-
-#: help.pm:55
-#, c-format
-msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-
-#: help.pm:86
-#, c-format
-msgid ""
-"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-
-#: help.pm:93
-#, c-format
-msgid ""
-"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandriva Linux, and to make it\n"
-"simpler to manage, they have been placed into groups of similar\n"
-"applications.\n"
-"\n"
-"Mandriva Linux sorts package groups in four categories. You can mix and\n"
-"match applications from the various categories, so a ``Workstation''\n"
-"installation can still have applications from the ``Server'' category\n"
-"installed.\n"
-"\n"
-" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
-"more of the groups in the workstation category.\n"
-"\n"
-" * \"%s\": if you plan on using your machine for programming, select the\n"
-"appropriate groups from that category. The special \"LSB\" group will\n"
-"configure your system so that it complies as much as possible with the\n"
-"Linux Standard Base specifications.\n"
-"\n"
-" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
-"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
-"of the system. However, if you do not select the \"LSB\" group you will\n"
-"still have a system which is nearly 100%% LSB-compliant.\n"
-"\n"
-" * \"%s\": if your machine is intended to be a server, select which of the\n"
-"more common services you wish to install on your machine.\n"
-"\n"
-" * \"%s\": this is where you will choose your preferred graphical\n"
-"environment. At least one must be selected if you want to have a graphical\n"
-"interface available.\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group.\n"
-"\n"
-"You can check the \"%s\" box, which is useful if you're familiar with the\n"
-"packages being offered or if you want to have total control over what will\n"
-"be installed.\n"
-"\n"
-"If you start the installation in \"%s\" mode, you can deselect all groups\n"
-"and prevent the installation of any new packages. This is useful for\n"
-"repairing or updating an existing system.\n"
-"\n"
-"If you deselect all groups when performing a regular installation (as\n"
-"opposed to an upgrade), a dialog will pop up suggesting different options\n"
-"for a minimal installation:\n"
-"\n"
-" * \"%s\": install the minimum number of packages possible to have a\n"
-"working graphical desktop.\n"
-"\n"
-" * \"%s\": installs the base system plus basic utilities and their\n"
-"documentation. This installation is suitable for setting up a server.\n"
-"\n"
-" * \"%s\": will install the absolute minimum number of packages necessary\n"
-"to get a working Linux system. With this installation you will only have a\n"
-"command-line interface. The total size of this installation is about 65\n"
-"megabytes."
-msgstr ""
-
-#: help.pm:147 share/compssUsers.pl:24
-#, c-format
-msgid "Workstation"
-msgstr ""
-
-#: help.pm:147 share/compssUsers.pl:65 share/compssUsers.pl:167 share/compssUsers.pl:169
-#, c-format
-msgid "Development"
-msgstr ""
-
-#: help.pm:147 share/compssUsers.pl:145
-#, c-format
-msgid "Graphical Environment"
-msgstr ""
-
-#: help.pm:147 install_steps_gtk.pm:235 install_steps_interactive.pm:623
-#, c-format
-msgid "Individual package selection"
-msgstr ""
-
-#: help.pm:147 help.pm:589
-#, c-format
-msgid "Upgrade"
-msgstr ""
-
-#: help.pm:147 install_steps_interactive.pm:581
-#, c-format
-msgid "With X"
-msgstr ""
-
-#: help.pm:147
-#, c-format
-msgid "With basic documentation"
-msgstr ""
-
-#: help.pm:147
-#, c-format
-msgid "Truly minimal install"
-msgstr ""
-
-#: help.pm:150
-#, c-format
-msgid ""
-"If you choose to install packages individually, the installer will present\n"
-"a tree containing all packages classified by groups and subgroups. While\n"
-"browsing the tree, you can select entire groups, subgroups, or individual\n"
-"packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description will appear on the\n"
-"right to let you know the purpose of that package.\n"
-"\n"
-"!! If a server package has been selected, either because you specifically\n"
-"chose the individual package or because it was part of a group of packages,\n"
-"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandriva Linux will automatically start any installed\n"
-"services at boot time. Even if they are safe and have no known issues at\n"
-"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandriva Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do or\n"
-"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
-"the listed services and they will be started automatically at boot time. !!\n"
-"\n"
-"The \"%s\" option is used to disable the warning dialog which appears\n"
-"whenever the installer automatically selects a package to resolve a\n"
-"dependency issue. Some packages depend on others and the installation of\n"
-"one particular package may require the installation of another package. The\n"
-"installer can determine which packages are required to satisfy a dependency\n"
-"to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-"package list created during a previous installation. This is useful if you\n"
-"have a number of machines that you wish to configure identically. Clicking\n"
-"on this icon will ask you to insert the floppy disk created at the end of\n"
-"another installation. See the second tip of the last step on how to create\n"
-"such a floppy."
-msgstr ""
-
-#: help.pm:181 help.pm:286 help.pm:314 help.pm:445 install_any.pm:944 interactive.pm:161 modules/interactive.pm:71 standalone/drakbackup:2636 standalone/drakfont:687 standalone/draksec:54 standalone/harddrake2:331 ugtk2.pm:898 wizards.pm:156
-#, c-format
-msgid "No"
-msgstr ""
-
-#: help.pm:181 help.pm:286 help.pm:445 help.pm:445 install_any.pm:944 interactive.pm:161 modules/interactive.pm:71 printer/printerdrake.pm:883 printer/printerdrake.pm:898 standalone/drakbackup:2636 standalone/drakfont:685 standalone/draksec:55 standalone/harddrake2:330 ugtk2.pm:898 wizards.pm:156
-#, c-format
-msgid "Yes"
-msgstr ""
-
-#: help.pm:181
-#, c-format
-msgid "Automatic dependencies"
-msgstr ""
-
-#: help.pm:184
-#, c-format
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to set up a new printer. The interface presented in our\n"
-"manual is similar to the one used during installation."
-msgstr ""
-
-#: help.pm:187 help.pm:567 help.pm:856 help.pm:856 help.pm:856 help.pm:856 help.pm:856 help.pm:856 help.pm:856 install_steps_gtk.pm:595 standalone/drakbackup:2460 standalone/drakbackup:2464 standalone/drakbackup:2468 standalone/drakbackup:2472 standalone/drakroam:227
-#, c-format
-msgid "Configure"
-msgstr ""
-
-#: help.pm:190
-#, c-format
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
-"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which are not needed at boot\n"
-"time.\n"
-"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably do not want to start any services which you do not need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-
-#: help.pm:207
-#, c-format
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
-"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
-msgstr ""
-
-#: help.pm:218 install_steps_interactive.pm:859
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr ""
-
-#: help.pm:218
-#, c-format
-msgid "Automatic time synchronization"
-msgstr ""
-
-#: help.pm:221
-#, c-format
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-
-#: help.pm:232
-#, c-format
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-
-#: help.pm:289
-#, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
-msgstr ""
-
-#: help.pm:296
-#, c-format
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
-msgstr ""
-
-#: help.pm:304
-#, c-format
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-
-#: help.pm:309
-#, c-format
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-
-#: help.pm:317
-#, c-format
-msgid ""
-"You now need to decide where you want to install the Mandriva Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandriva Linux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandriva Linux system, choose\n"
-"this option. Be careful, because you will not be able to undo this operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-
-#: help.pm:375 install_interactive.pm:96
-#, c-format
-msgid "Use free space"
-msgstr ""
-
-#: help.pm:375
-#, c-format
-msgid "Use existing partition"
-msgstr ""
-
-#: help.pm:375 install_interactive.pm:138
-#, c-format
-msgid "Use the free space on the Microsoft Windows® partition"
-msgstr ""
-
-#: help.pm:375
-#, c-format
-msgid "Erase entire disk"
-msgstr ""
-
-#: help.pm:375
-#, c-format
-msgid "Remove Windows"
-msgstr ""
-
-#: help.pm:375 install_interactive.pm:233
-#, c-format
-msgid "Custom disk partitioning"
-msgstr ""
-
-#: help.pm:378
-#, c-format
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
-"to remove the installation media (CD-ROM or floppy). The first thing you\n"
-"should see after your computer has finished doing its hardware tests is the\n"
-"boot-loader menu, giving you the choice of which operating system to start.\n"
-"\n"
-"The \"%s\" button shows two more buttons to:\n"
-"\n"
-" * \"%s\": enables you to create an installation floppy disk which will\n"
-"automatically perform a whole installation without the help of an operator,\n"
-"similar to the installation you've just configured.\n"
-"\n"
-" Note that two different options are available after clicking on that\n"
-"button:\n"
-"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
-"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing on a number of similar\n"
-"machines. See the Auto install section on our web site for more\n"
-"information.\n"
-"\n"
-" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
-"To use this selection with another installation, insert the floppy and\n"
-"start the installation. At the prompt, press the [F1] key, type >>linux\n"
-"defcfg=\"floppy\"<< and press the [Enter] key.\n"
-"\n"
-"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
-"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
-"/dev/fd0\"."
-msgstr ""
-
-#: help.pm:410
-#, c-format
-msgid "Generate auto-install floppy"
-msgstr ""
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Replay"
-msgstr ""
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Automated"
-msgstr ""
-
-#: help.pm:410 install_steps_interactive.pm:1317
-#, c-format
-msgid "Save packages selection"
-msgstr ""
-
-#: help.pm:413
-#, c-format
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
-"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"will not be able to recover it.\n"
-"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
-"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandriva Linux operating system installation.\n"
-"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-
-#: help.pm:432 install_steps_gtk.pm:392 interactive.pm:437 interactive/newt.pm:318 printer/printerdrake.pm:3882 standalone/drakTermServ:391 standalone/drakbackup:4065 standalone/drakbackup:4101 standalone/drakbackup:4212 standalone/drakbackup:4227 ugtk2.pm:488
-#, c-format
-msgid "Previous"
-msgstr ""
-
-#: help.pm:435
-#, c-format
-msgid ""
-"By the time you install Mandriva Linux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-
-#: help.pm:445 help.pm:589 install_steps_gtk.pm:391 install_steps_interactive.pm:132
-#, c-format
-msgid "Install"
-msgstr ""
-
-#: help.pm:448
-#, c-format
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
-"\n"
-"If you do not know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandriva Linux\n"
-"Control Center.\n"
-"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-
-#: help.pm:459
-#, c-format
-msgid "Security Administrator"
-msgstr ""
-
-#: help.pm:462
-#, c-format
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandriva Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"%s\": this option deletes all partitions on the selected hard drive\n"
-"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
-"partitions in the free space of your hard drive\n"
-"\n"
-"\"%s\": gives access to additional features:\n"
-"\n"
-" * \"%s\": saves the partition table to a floppy. Useful for later\n"
-"partition-table recovery if necessary. It is strongly recommended that you\n"
-"perform this step.\n"
-"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
-"\n"
-" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it does not always\n"
-"work.\n"
-"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
-"\n"
-" * \"%s\": un-checking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
-"\n"
-" * \"%s\": use this option if you wish to use a wizard to partition your\n"
-"hard drive. This is recommended if you do not have a good understanding of\n"
-"partitioning.\n"
-"\n"
-" * \"%s\": use this option to cancel your changes.\n"
-"\n"
-" * \"%s\": allows additional actions on partitions (type, options, format)\n"
-"and gives more information about the hard drive.\n"
-"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"When defining the size of a partition, you can finely set the partition\n"
-"size by using the Arrow keys of your keyboard.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and the [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
-"\n"
-" * Ctrl-d to delete a partition\n"
-"\n"
-" * Ctrl-m to set the mount point\n"
-"\n"
-"To get information about the different file system types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-
-#: help.pm:531
-#, c-format
-msgid "Removable media auto-mounting"
-msgstr ""
-
-#: help.pm:531
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr ""
-
-#: help.pm:534
-#, c-format
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandriva Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-
-#: help.pm:565
-#, c-format
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country is not in the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-
-#: help.pm:570
-#, c-format
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandriva Linux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandriva Linux system. Your current partitioning\n"
-"scheme and user data will not be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandriva Linux version \"8.1\" is not recommended."
-msgstr ""
-
-#: help.pm:592
-#, c-format
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
-"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard do not match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
-"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
-"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-
-#: help.pm:610
-#, c-format
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandriva Linux's use of UTF-8 will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-
-#: help.pm:648
-#, c-format
-msgid "Espanol"
-msgstr ""
-
-#: help.pm:651
-#, c-format
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
-"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-
-#: help.pm:682
-#, c-format
-msgid "with Wheel emulation"
-msgstr ""
-
-#: help.pm:682
-#, c-format
-msgid "Universal | Any PS/2 & USB mice"
-msgstr ""
-
-#: help.pm:685
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-
-#: help.pm:689
-#, c-format
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: do not make the password too long or too complicated because you\n"
-"must be able to remember it!\n"
-"\n"
-"The password will not be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you do not know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-
-#: help.pm:723
-#, c-format
-msgid "authentication"
-msgstr ""
-
-#: help.pm:726
-#, c-format
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can not determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" will not install any boot loader. Use this option only if you\n"
-"know what you're doing."
-msgstr ""
-
-#: help.pm:743
-#, c-format
-msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you do not like your printing\n"
-"system you may change it by running PrinterDrake from the Mandriva Linux\n"
-"Control Center and clicking on the \"%s\" button."
-msgstr ""
-
-#: help.pm:766 help.pm:766
-#, c-format
-msgid "pdq"
-msgstr ""
-
-#: help.pm:766 help.pm:766 printer/cups.pm:117 printer/data.pm:129
-#, c-format
-msgid "CUPS"
-msgstr ""
-
-#: help.pm:766
-#, c-format
-msgid "Expert"
-msgstr ""
-
-#: help.pm:769
-#, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-
-#: help.pm:787
-#, c-format
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-
-#: help.pm:789 help.pm:856 install_steps_interactive.pm:991 install_steps_interactive.pm:1008
-#, c-format
-msgid "Sound card"
-msgstr ""
-
-#: help.pm:792
-#, c-format
-msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"is not in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it is not\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandriva Linux Control Center after the installation has finished to benefit\n"
-"from full in-line help.\n"
-"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandriva Linux Control Center.\n"
-"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-
-#: help.pm:856 install_steps_interactive.pm:855 install_steps_interactive.pm:950 standalone/drakclock:100 standalone/finish-install:56 standalone/finish-install:57
-#, c-format
-msgid "Timezone"
-msgstr ""
-
-#: help.pm:856 install_steps_interactive.pm:1024
-#, c-format
-msgid "TV card"
-msgstr ""
-
-#: help.pm:856
-#, c-format
-msgid "ISDN card"
-msgstr ""
-
-#: help.pm:856
-#, c-format
-msgid "Graphical Interface"
-msgstr ""
-
-#: help.pm:856 install_any.pm:1733 install_steps_interactive.pm:1042 standalone/drakbackup:2051
-#, c-format
-msgid "Network"
-msgstr ""
-
-#: help.pm:856 install_steps_interactive.pm:1054
-#, c-format
-msgid "Proxies"
-msgstr ""
-
-#: help.pm:856 install_steps_interactive.pm:1065
-#, c-format
-msgid "Security Level"
-msgstr ""
-
-#: help.pm:856 install_steps_interactive.pm:1079 network/drakfirewall.pm:189
-#, c-format
-msgid "Firewall"
-msgstr ""
-
-#: help.pm:856 install_steps_interactive.pm:1095
-#, c-format
-msgid "Bootloader"
-msgstr ""
-
-#: help.pm:856 install_steps_interactive.pm:1108 services.pm:114 services.pm:157 services.pm:193
-#, c-format
-msgid "Services"
-msgstr ""
-
-#: help.pm:859
-#, c-format
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-
-#: help.pm:864
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-
-#: help.pm:870 help.pm:870
-#, c-format
-msgid "Next ->"
-msgstr ""
-
-#: help.pm:870
-#, c-format
-msgid "<- Previous"
-msgstr ""
-
-#: install2.pm:115
-#, c-format
-msgid "Can not access kernel modules corresponding to your kernel (file %s is missing), this generally means your boot floppy in not in sync with the Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: install2.pm:167
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: install_any.pm:406
-#, c-format
-msgid "Do you have further supplementary media?"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:409
-#, c-format
-msgid ""
-"The following media have been found and will be used during install: %s.\n"
-"\n"
-"\n"
-"Do you have a supplementary installation medium to configure?"
-msgstr ""
-
-#: install_any.pm:422 printer/printerdrake.pm:3211 printer/printerdrake.pm:3218 standalone/scannerdrake:182 standalone/scannerdrake:190 standalone/scannerdrake:241 standalone/scannerdrake:248
-#, c-format
-msgid "CD-ROM"
-msgstr ""
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (HTTP)"
-msgstr ""
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (FTP)"
-msgstr ""
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (NFS)"
-msgstr ""
-
-#: install_any.pm:452
-#, c-format
-msgid "Insert the CD 1 again"
-msgstr ""
-
-#: install_any.pm:478 network/netconnect.pm:866 standalone/drakbackup:114
-#, c-format
-msgid "No device found"
-msgstr ""
-
-#: install_any.pm:483
-#, c-format
-msgid "Insert the CD"
-msgstr ""
-
-#: install_any.pm:488
-#, c-format
-msgid "Unable to mount CD-ROM"
-msgstr ""
-
-#: install_any.pm:521 install_any.pm:542
-#, c-format
-msgid "URL of the mirror?"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "NFS setup"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "Please enter the hostname and directory of your NFS media"
-msgstr ""
-
-#: install_any.pm:527
-#, c-format
-msgid "Hostname of the NFS mount ?"
-msgstr ""
-
-#: install_any.pm:527 standalone/draknfs:288
-#, c-format
-msgid "Directory"
-msgstr ""
-
-#: install_any.pm:580
-#, c-format
-msgid "Can't find a package list file on this mirror. Make sure the location is correct."
-msgstr ""
-
-#: install_any.pm:657
-#, c-format
-msgid "Removing packages prior to upgrade..."
-msgstr ""
-
-#: install_any.pm:699
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr ""
-
-#: install_any.pm:703
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr ""
-
-#: install_any.pm:781
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when done."
-msgstr ""
-
-#: install_any.pm:793
-#, c-format
-msgid "Copying in progress"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:935
-#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They do not have any known security\n"
-"issues, but some new ones could be found. In that case, you must make sure\n"
-"to upgrade as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-""
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:958
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-""
-msgstr ""
-
-#: install_any.pm:1394 partition_table.pm:597
-#, c-format
-msgid "Error reading file %s"
-msgstr ""
-
-#: install_any.pm:1628
-#, c-format
-msgid "The following disk(s) were renamed:"
-msgstr ""
-
-#: install_any.pm:1630
-#, c-format
-msgid "%s (previously named as %s)"
-msgstr ""
-
-#: install_any.pm:1670
-#, 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 ""
-
-#: install_any.pm:1714
-#, c-format
-msgid "HTTP"
-msgstr ""
-
-#: install_any.pm:1714
-#, c-format
-msgid "FTP"
-msgstr ""
-
-#: install_any.pm:1714
-#, c-format
-msgid "NFS"
-msgstr ""
-
-#: install_any.pm:1737
-#, c-format
-msgid "Please choose a media"
-msgstr ""
-
-#: install_any.pm:1753
-#, c-format
-msgid "File already exists. Overwrite it?"
-msgstr ""
-
-#: install_any.pm:1757
-#, c-format
-msgid "Permission denied"
-msgstr ""
-
-#: install_any.pm:1806
-#, c-format
-msgid "Bad NFS name"
-msgstr ""
-
-#: install_any.pm:1827
-#, c-format
-msgid "Bad media %s"
-msgstr ""
-
-#: install_any.pm:1877
-#, c-format
-msgid "Can not make screenshots before partitioning"
-msgstr ""
-
-#: install_any.pm:1884
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr ""
-
-#: install_gtk.pm:136
-#, c-format
-msgid "System installation"
-msgstr ""
-
-#: install_gtk.pm:139
-#, c-format
-msgid "System configuration"
-msgstr ""
-
-#: install_interactive.pm:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-
-#: install_interactive.pm:63
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-
-#: install_interactive.pm:68
-#, c-format
-msgid ""
-"You do not have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-
-#: install_interactive.pm:71 install_steps.pm:215
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr ""
-
-#: install_interactive.pm:98
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr ""
-
-#: install_interactive.pm:106
-#, c-format
-msgid "Use existing partitions"
-msgstr ""
-
-#: install_interactive.pm:108
-#, c-format
-msgid "There is no existing partition to use"
-msgstr ""
-
-#: install_interactive.pm:115
-#, c-format
-msgid "Use the Microsoft Windows® partition for loopback"
-msgstr ""
-
-#: install_interactive.pm:118
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr ""
-
-#: install_interactive.pm:120
-#, c-format
-msgid "Choose the sizes"
-msgstr ""
-
-#: install_interactive.pm:121
-#, c-format
-msgid "Root partition size in MB: "
-msgstr ""
-
-#: install_interactive.pm:122
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr ""
-
-#: install_interactive.pm:131
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-
-#: install_interactive.pm:140
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr ""
-
-#: install_interactive.pm:154
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occurred: %s"
-msgstr ""
-
-#: install_interactive.pm:157
-#, c-format
-msgid "Computing the size of the Microsoft Windows® partition"
-msgstr ""
-
-#: install_interactive.pm:164
-#, c-format
-msgid "Your Microsoft Windows® partition is too fragmented. Please reboot your computer under Microsoft Windows®, run the ``defrag'' utility, then restart the Mandriva Linux installation."
-msgstr ""
-
-#: install_interactive.pm:167
-#, 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 ""
-
-#: install_interactive.pm:179
-#, c-format
-msgid "Which size do you want to keep for Microsoft Windows® on"
-msgstr ""
-
-#: install_interactive.pm:180
-#, c-format
-msgid "partition %s"
-msgstr ""
-
-#: install_interactive.pm:189
-#, c-format
-msgid "Resizing Microsoft Windows® partition"
-msgstr ""
-
-#: install_interactive.pm:194
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr ""
-
-#: install_interactive.pm:209
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr ""
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Remove Microsoft Windows®"
-msgstr ""
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Erase and use entire disk"
-msgstr ""
-
-#: install_interactive.pm:216
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-
-#: install_interactive.pm:222
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-
-#: install_interactive.pm:237
-#, c-format
-msgid "Use fdisk"
-msgstr ""
-
-#: install_interactive.pm:240
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, do not forget to save using `w'"
-msgstr ""
-
-#: install_interactive.pm:276
-#, c-format
-msgid "I can not find any room for installing"
-msgstr ""
-
-#: install_interactive.pm:280
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr ""
-
-#: install_interactive.pm:288
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr ""
-
-#: install_interactive.pm:295
-#, c-format
-msgid "Bringing up the network"
-msgstr ""
-
-#: install_interactive.pm:300
-#, c-format
-msgid "Bringing down the network"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:10
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandriva Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related to the operating \n"
-"system and the different components of the Mandriva Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. This document is a license agreement between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this License. \n"
-"If you disagree with any portion of the License, you are not allowed to install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner which does not comply \n"
-"with the terms and conditions of this License is void and will terminate your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Limited Warranty\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or occurrence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever (including without \n"
-"limitation damages for loss of business, interruption of business, financial loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential loss) arising out \n"
-"of the possession and use of software components or arising out of downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. The GPL License and Related Licenses\n"
-"\n"
-"The Software Products consist of components created by different persons or entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please read carefully the terms \n"
-"and conditions of the license agreement for each component before using any component. Any question \n"
-"on a component license should be addressed to the component author and not to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. Intellectual Property Rights\n"
-"\n"
-"All rights to the components of the Software Products belong to their respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Governing Laws \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of France.\n"
-"All disputes on the terms of this license will preferably be settled out of court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-""
-msgstr ""
-
-#: install_messages.pm:90
-#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:98
-#, c-format
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-""
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:131
-#, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press Enter to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandriva Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandriva Linux User's Guide."
-msgstr ""
-
-#: install_steps.pm:250
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr ""
-
-#: install_steps.pm:482
-#, c-format
-msgid ""
-"Some important packages did not get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm\"\n"
-""
-msgstr ""
-
-#: install_steps_auto_install.pm:68 install_steps_stdio.pm:27
-#, c-format
-msgid ""
-"Entering step `%s'\n"
-""
-msgstr ""
-
-#: install_steps_gtk.pm:181
-#, c-format
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandriva Linux. If that occurs, you can try a text install instead. For this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-
-#: install_steps_gtk.pm:211 install_steps_interactive.pm:605
-#, c-format
-msgid "Package Group Selection"
-msgstr ""
-
-#: install_steps_gtk.pm:254 install_steps_interactive.pm:548
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr ""
-
-#: install_steps_gtk.pm:299
-#, c-format
-msgid "Bad package"
-msgstr ""
-
-#: install_steps_gtk.pm:301
-#, c-format
-msgid "Version: "
-msgstr ""
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "Size: "
-msgstr ""
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid ""
-"%d KB\n"
-""
-msgstr ""
-
-#: install_steps_gtk.pm:303
-#, c-format
-msgid "Importance: "
-msgstr ""
-
-#: install_steps_gtk.pm:336
-#, c-format
-msgid "You can not select/unselect this package"
-msgstr ""
-
-#: install_steps_gtk.pm:340 network/thirdparty.pm:331
-#, c-format
-msgid "due to missing %s"
-msgstr ""
-
-#: install_steps_gtk.pm:341
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr ""
-
-#: install_steps_gtk.pm:342
-#, c-format
-msgid "trying to promote %s"
-msgstr ""
-
-#: install_steps_gtk.pm:343
-#, c-format
-msgid "in order to keep %s"
-msgstr ""
-
-#: install_steps_gtk.pm:348
-#, c-format
-msgid "You can not select this package as there is not enough space left to install it"
-msgstr ""
-
-#: install_steps_gtk.pm:351
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr ""
-
-#: install_steps_gtk.pm:352
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr ""
-
-#: install_steps_gtk.pm:376
-#, c-format
-msgid "This is a mandatory package, it can not be unselected"
-msgstr ""
-
-#: install_steps_gtk.pm:378
-#, c-format
-msgid "You can not unselect this package. It is already installed"
-msgstr ""
-
-#: install_steps_gtk.pm:381
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-
-#: install_steps_gtk.pm:384
-#, c-format
-msgid "You can not unselect this package. It must be upgraded"
-msgstr ""
-
-#: install_steps_gtk.pm:389
-#, c-format
-msgid "Show automatically selected packages"
-msgstr ""
-
-#: install_steps_gtk.pm:394
-#, c-format
-msgid "Load/Save selection"
-msgstr ""
-
-#: install_steps_gtk.pm:395
-#, c-format
-msgid "Updating package selection"
-msgstr ""
-
-#: install_steps_gtk.pm:400
-#, c-format
-msgid "Minimal install"
-msgstr ""
-
-#: install_steps_gtk.pm:414 install_steps_interactive.pm:467
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr ""
-
-#: install_steps_gtk.pm:431 install_steps_interactive.pm:691
-#, c-format
-msgid "Installing"
-msgstr ""
-
-#: install_steps_gtk.pm:457
-#, c-format
-msgid "No details"
-msgstr ""
-
-#: install_steps_gtk.pm:472
-#, c-format
-msgid "Time remaining "
-msgstr ""
-
-#: install_steps_gtk.pm:473
-#, c-format
-msgid "Estimating"
-msgstr ""
-
-#: install_steps_gtk.pm:500
-#, c-format
-msgid "%d packages"
-msgstr ""
-
-#: install_steps_gtk.pm:543 install_steps_interactive.pm:719
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when done.\n"
-"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-
-#: install_steps_gtk.pm:556 install_steps_interactive.pm:730
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr ""
-
-#: install_steps_gtk.pm:558 install_steps_interactive.pm:734
-#, c-format
-msgid "There was an error installing packages:"
-msgstr ""
-
-#: install_steps_gtk.pm:560 install_steps_interactive.pm:730 install_steps_interactive.pm:734
-#, c-format
-msgid "Go on anyway?"
-msgstr ""
-
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:910 steps.pm:30
-#, c-format
-msgid "Summary"
-msgstr ""
-
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:906 install_steps_interactive.pm:1055
-#, c-format
-msgid "not configured"
-msgstr ""
-
-#: install_steps_gtk.pm:668
-#, c-format
-msgid ""
-"The following installation media have been found.\n"
-"If you want to skip some of them, you can unselect them now."
-msgstr ""
-
-#: install_steps_gtk.pm:677
-#, c-format
-msgid ""
-"You have the option to copy the contents of the CDs onto the hard drive before installation.\n"
-"It will then continue from the hard drive and the packages will remain available once the system is fully installed."
-msgstr ""
-
-#: install_steps_gtk.pm:679
-#, c-format
-msgid "Copy whole CDs"
-msgstr ""
-
-#: install_steps_interactive.pm:95
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr ""
-
-#: install_steps_interactive.pm:97
-#, c-format
-msgid "Here is the full list of available keyboards"
-msgstr ""
-
-#: install_steps_interactive.pm:127
-#, c-format
-msgid "Install/Upgrade"
-msgstr ""
-
-#: install_steps_interactive.pm:128
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr ""
-
-#: install_steps_interactive.pm:134
-#, c-format
-msgid "Upgrade %s"
-msgstr ""
-
-#: install_steps_interactive.pm:147
-#, c-format
-msgid "Encryption key for %s"
-msgstr ""
-
-#: install_steps_interactive.pm:170
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr ""
-
-#: install_steps_interactive.pm:171
-#, c-format
-msgid "Mouse choice"
-msgstr ""
-
-#: install_steps_interactive.pm:180 standalone/mousedrake:46
-#, c-format
-msgid "Mouse Port"
-msgstr ""
-
-#: install_steps_interactive.pm:181 standalone/mousedrake:47
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr ""
-
-#: install_steps_interactive.pm:191
-#, c-format
-msgid "Buttons emulation"
-msgstr ""
-
-#: install_steps_interactive.pm:193
-#, c-format
-msgid "Button 2 Emulation"
-msgstr ""
-
-#: install_steps_interactive.pm:194
-#, c-format
-msgid "Button 3 Emulation"
-msgstr ""
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "PCMCIA"
-msgstr ""
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr ""
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "IDE"
-msgstr ""
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "Configuring IDE"
-msgstr ""
-
-#: install_steps_interactive.pm:242
-#, c-format
-msgid "No partition available"
-msgstr ""
-
-#: install_steps_interactive.pm:245
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr ""
-
-#: install_steps_interactive.pm:252
-#, c-format
-msgid "Choose the mount points"
-msgstr ""
-
-#: install_steps_interactive.pm:300
-#, c-format
-msgid "No free space for 1MB bootstrap! Install will continue, but to boot your system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: install_steps_interactive.pm:305
-#, c-format
-msgid "You'll need to create a PPC PReP Boot bootstrap! Install will continue, but to boot your system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: install_steps_interactive.pm:341
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr ""
-
-#: install_steps_interactive.pm:343
-#, c-format
-msgid "Check bad blocks?"
-msgstr ""
-
-#: install_steps_interactive.pm:371
-#, c-format
-msgid "Failed to check filesystem %s. Do you want to repair the errors? (beware, you can lose data)"
-msgstr ""
-
-#: install_steps_interactive.pm:374
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr ""
-
-#: install_steps_interactive.pm:383
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr ""
-
-#: install_steps_interactive.pm:384 install_steps_interactive.pm:436
-#, c-format
-msgid "Looking for available packages..."
-msgstr ""
-
-#: install_steps_interactive.pm:405 install_steps_interactive.pm:810
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr ""
-
-#: install_steps_interactive.pm:445
-#, c-format
-msgid "Your system does not have enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-
-#: install_steps_interactive.pm:479
-#, c-format
-msgid ""
-"Please choose load or save package selection.\n"
-"The format is the same as auto_install generated files."
-msgstr ""
-
-#: install_steps_interactive.pm:481
-#, c-format
-msgid "Load"
-msgstr ""
-
-#: install_steps_interactive.pm:481 standalone/drakbackup:4083 standalone/drakbackup:4153 standalone/logdrake:175
-#, c-format
-msgid "Save"
-msgstr ""
-
-#: install_steps_interactive.pm:489
-#, c-format
-msgid "Bad file"
-msgstr ""
-
-#: install_steps_interactive.pm:562
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr ""
-
-#: install_steps_interactive.pm:577
-#, c-format
-msgid "Type of install"
-msgstr ""
-
-#: install_steps_interactive.pm:578
-#, c-format
-msgid ""
-"You have not selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: install_steps_interactive.pm:582
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: install_steps_interactive.pm:583
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: install_steps_interactive.pm:622 standalone/drakxtv:52
-#, c-format
-msgid "All"
-msgstr ""
-
-#: install_steps_interactive.pm:661
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-
-#: install_steps_interactive.pm:666
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr ""
-
-#: install_steps_interactive.pm:691
-#, c-format
-msgid "Preparing installation"
-msgstr ""
-
-#: install_steps_interactive.pm:699
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-
-#: install_steps_interactive.pm:748
-#, c-format
-msgid "Post-install configuration"
-msgstr ""
-
-#: install_steps_interactive.pm:755
-#, c-format
-msgid "Please ensure the Update Modules media is in drive %s"
-msgstr ""
-
-#: install_steps_interactive.pm:783
-#, c-format
-msgid "Updates"
-msgstr ""
-
-#: install_steps_interactive.pm:784
-#, c-format
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates?"
-msgstr ""
-
-#: install_steps_interactive.pm:805
-#, c-format
-msgid "Contacting Mandriva Linux web site to get the list of available mirrors..."
-msgstr ""
-
-#: install_steps_interactive.pm:824
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr ""
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr ""
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Would you like to try again?"
-msgstr ""
-
-#: install_steps_interactive.pm:855 standalone/drakclock:45 standalone/finish-install:56
-#, c-format
-msgid "Which is your timezone?"
-msgstr ""
-
-#: install_steps_interactive.pm:860
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: install_steps_interactive.pm:868
-#, c-format
-msgid "NTP Server"
-msgstr ""
-
-#: install_steps_interactive.pm:923 install_steps_interactive.pm:931 install_steps_interactive.pm:949 install_steps_interactive.pm:956 install_steps_interactive.pm:1107 services.pm:133 standalone/drakbackup:1596
-#, c-format
-msgid "System"
-msgstr ""
-
-#: install_steps_interactive.pm:963 install_steps_interactive.pm:990 install_steps_interactive.pm:1007 install_steps_interactive.pm:1023 install_steps_interactive.pm:1034
-#, c-format
-msgid "Hardware"
-msgstr ""
-
-#: install_steps_interactive.pm:969 install_steps_interactive.pm:978
-#, c-format
-msgid "Remote CUPS server"
-msgstr ""
-
-#: install_steps_interactive.pm:969
-#, c-format
-msgid "No printer"
-msgstr ""
-
-#: install_steps_interactive.pm:1011
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr ""
-
-#: install_steps_interactive.pm:1013
-#, c-format
-msgid "Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: install_steps_interactive.pm:1015
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: install_steps_interactive.pm:1035
-#, c-format
-msgid "Graphical interface"
-msgstr ""
-
-#: install_steps_interactive.pm:1041 install_steps_interactive.pm:1053
-#, c-format
-msgid "Network & Internet"
-msgstr ""
-
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "configured"
-msgstr ""
-
-#: install_steps_interactive.pm:1064 install_steps_interactive.pm:1078 security/level.pm:55 steps.pm:20
-#, c-format
-msgid "Security"
-msgstr ""
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "activated"
-msgstr ""
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "disabled"
-msgstr ""
-
-#: install_steps_interactive.pm:1094
-#, c-format
-msgid "Boot"
-msgstr ""
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1098 printer/printerdrake.pm:961
-#, c-format
-msgid "%s on %s"
-msgstr ""
-
-#: install_steps_interactive.pm:1112 services.pm:175
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: install_steps_interactive.pm:1124
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr ""
-
-#: install_steps_interactive.pm:1205
-#, c-format
-msgid "Preparing bootloader..."
-msgstr ""
-
-#: install_steps_interactive.pm:1215
-#, c-format
-msgid "You appear to have an OldWorld or Unknown machine, the yaboot bootloader will not work for you. The install will continue, but you'll need to use BootX or some other means to boot your machine. The kernel argument for the root fs is: root=%s"
-msgstr ""
-
-#: install_steps_interactive.pm:1221
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr ""
-
-#: install_steps_interactive.pm:1224
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-
-#: install_steps_interactive.pm:1241
-#, c-format
-msgid "In this security level, access to the files in the Windows partition is restricted to the administrator."
-msgstr ""
-
-#: install_steps_interactive.pm:1270 standalone/drakautoinst:76
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr ""
-
-#: install_steps_interactive.pm:1275
-#, c-format
-msgid "Please insert another floppy for drivers disk"
-msgstr ""
-
-#: install_steps_interactive.pm:1277
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr ""
-
-#: install_steps_interactive.pm:1289
-#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-
-#: install_steps_interactive.pm:1299 standalone/draksambashare:421 standalone/draksambashare:527 standalone/drakups:118 standalone/drakups:157 standalone/logdrake:451 standalone/logdrake:457
-#, c-format
-msgid "Congratulations"
-msgstr ""
-
-#: install_steps_interactive.pm:1307 install_steps_interactive.pm:1308
-#, c-format
-msgid "Generate auto install floppy"
-msgstr ""
-
-#: install_steps_interactive.pm:1309
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-""
-msgstr ""
-
-#: install_steps_newt.pm:20
-#, c-format
-msgid "Mandriva Linux Installation %s"
-msgstr ""
-
-#. -PO: This string must fit in a 80-char wide text screen
-#: install_steps_newt.pm:37
-#, c-format
-msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-
-#: interactive.pm:196
-#, c-format
-msgid "Choose a file"
-msgstr ""
-
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakbackup:1537 standalone/drakfont:649 standalone/drakhosts:242 standalone/draknfs:605 standalone/draksambashare:1127 standalone/drakups:299 standalone/drakups:359 standalone/drakups:379 standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid "Add"
-msgstr ""
-
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakhosts:249 standalone/draknfs:612 standalone/draksambashare:1084 standalone/draksambashare:1137 standalone/draksambashare:1176
-#, c-format
-msgid "Modify"
-msgstr ""
-
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakfont:732 standalone/drakhosts:256 standalone/draknfs:619 standalone/draksambashare:1085 standalone/draksambashare:1145 standalone/draksambashare:1184 standalone/drakups:301 standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid "Remove"
-msgstr ""
-
-#: interactive.pm:398
-#, c-format
-msgid "Basic"
-msgstr ""
-
-#: interactive.pm:436 interactive/newt.pm:321 ugtk2.pm:490
-#, c-format
-msgid "Finish"
-msgstr ""
-
-#: interactive/newt.pm:92
-#, c-format
-msgid "Do"
-msgstr ""
-
-#: interactive/stdio.pm:29 interactive/stdio.pm:148
-#, c-format
-msgid ""
-"Bad choice, try again\n"
-""
-msgstr ""
-
-#: interactive/stdio.pm:30 interactive/stdio.pm:149
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr ""
-
-#: interactive/stdio.pm:54
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: interactive/stdio.pm:70
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr ""
-
-#: interactive/stdio.pm:94
-#, c-format
-msgid "Button `%s': %s"
-msgstr ""
-
-#: interactive/stdio.pm:95
-#, c-format
-msgid "Do you want to click on this button?"
-msgstr ""
-
-#: interactive/stdio.pm:104
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr ""
-
-#: interactive/stdio.pm:104
-#, c-format
-msgid " enter `void' for void entry"
-msgstr ""
-
-#: interactive/stdio.pm:122
-#, c-format
-msgid ""
-"=> There are many things to choose from (%s).\n"
-""
-msgstr ""
-
-#: interactive/stdio.pm:125
-#, 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 ""
-
-#: interactive/stdio.pm:138
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: interactive/stdio.pm:145
-#, c-format
-msgid "Re-submit"
-msgstr ""
-
-#: keyboard.pm:171 keyboard.pm:202
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTZ)"
-msgstr ""
-
-#: keyboard.pm:172 keyboard.pm:204
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German"
-msgstr ""
-
-#: keyboard.pm:173
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak"
-msgstr ""
-
-#: keyboard.pm:174 keyboard.pm:217
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Spanish"
-msgstr ""
-
-#: keyboard.pm:175 keyboard.pm:218
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Finnish"
-msgstr ""
-
-#: keyboard.pm:176 keyboard.pm:220
-#, c-format
-msgid ""
-"_: keyboard\n"
-"French"
-msgstr ""
-
-#: keyboard.pm:177 keyboard.pm:264
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Norwegian"
-msgstr ""
-
-#: keyboard.pm:178
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish"
-msgstr ""
-
-#: keyboard.pm:179 keyboard.pm:275
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian"
-msgstr ""
-
-#: keyboard.pm:180 keyboard.pm:281
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swedish"
-msgstr ""
-
-#: keyboard.pm:181 keyboard.pm:310
-#, c-format
-msgid "UK keyboard"
-msgstr ""
-
-#: keyboard.pm:182 keyboard.pm:313
-#, c-format
-msgid "US keyboard"
-msgstr ""
-
-#: keyboard.pm:184
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Albanian"
-msgstr ""
-
-#: keyboard.pm:185
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (old)"
-msgstr ""
-
-#: keyboard.pm:186
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (typewriter)"
-msgstr ""
-
-#: keyboard.pm:187
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (phonetic)"
-msgstr ""
-
-#: keyboard.pm:188
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Arabic"
-msgstr ""
-
-#: keyboard.pm:189
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Azerbaidjani (latin)"
-msgstr ""
-
-#: keyboard.pm:190
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belgian"
-msgstr ""
-
-#: keyboard.pm:191
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Inscript-layout)"
-msgstr ""
-
-#: keyboard.pm:192
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Probhat)"
-msgstr ""
-
-#: keyboard.pm:193
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (phonetic)"
-msgstr ""
-
-#: keyboard.pm:194
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (BDS)"
-msgstr ""
-
-#: keyboard.pm:195
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Brazilian (ABNT-2)"
-msgstr ""
-
-#: keyboard.pm:196
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bosnian"
-msgstr ""
-
-#: keyboard.pm:197
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belarusian"
-msgstr ""
-
-#: keyboard.pm:198
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (German layout)"
-msgstr ""
-
-#: keyboard.pm:199
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (French layout)"
-msgstr ""
-
-#: keyboard.pm:201
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Cherokee syllabics"
-msgstr ""
-
-#: keyboard.pm:203
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTY)"
-msgstr ""
-
-#: keyboard.pm:205
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German (no dead keys)"
-msgstr ""
-
-#: keyboard.pm:206
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Devanagari"
-msgstr ""
-
-#: keyboard.pm:207
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Danish"
-msgstr ""
-
-#: keyboard.pm:208
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (US)"
-msgstr ""
-
-#: keyboard.pm:209
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Esperanto)"
-msgstr ""
-
-#: keyboard.pm:210
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (French)"
-msgstr ""
-
-#: keyboard.pm:211
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (UK)"
-msgstr ""
-
-#: keyboard.pm:212
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Norwegian)"
-msgstr ""
-
-#: keyboard.pm:213
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Polish)"
-msgstr ""
-
-#: keyboard.pm:214
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Swedish)"
-msgstr ""
-
-#: keyboard.pm:215
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dzongkha/Tibetan"
-msgstr ""
-
-#: keyboard.pm:216
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Estonian"
-msgstr ""
-
-#: keyboard.pm:219
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Faroese"
-msgstr ""
-
-#: keyboard.pm:221
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Russian\" layout)"
-msgstr ""
-
-#: keyboard.pm:222
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Latin\" layout)"
-msgstr ""
-
-#: keyboard.pm:223
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek"
-msgstr ""
-
-#: keyboard.pm:224
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek (polytonic)"
-msgstr ""
-
-#: keyboard.pm:225
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gujarati"
-msgstr ""
-
-#: keyboard.pm:226
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gurmukhi"
-msgstr ""
-
-#: keyboard.pm:227
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Croatian"
-msgstr ""
-
-#: keyboard.pm:228
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Hungarian"
-msgstr ""
-
-#: keyboard.pm:229
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Irish"
-msgstr ""
-
-#: keyboard.pm:230
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli"
-msgstr ""
-
-#: keyboard.pm:231
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli (phonetic)"
-msgstr ""
-
-#: keyboard.pm:232
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Iranian"
-msgstr ""
-
-#: keyboard.pm:233
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Icelandic"
-msgstr ""
-
-#: keyboard.pm:234
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Italian"
-msgstr ""
-
-#: keyboard.pm:235
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Inuktitut"
-msgstr ""
-
-#: keyboard.pm:239
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Japanese 106 keys"
-msgstr ""
-
-#: keyboard.pm:240
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kannada"
-msgstr ""
-
-#: keyboard.pm:243
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Korean"
-msgstr ""
-
-#: keyboard.pm:245
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kurdish (arabic script)"
-msgstr ""
-
-#: keyboard.pm:246
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kyrgyz"
-msgstr ""
-
-#: keyboard.pm:247
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latin American"
-msgstr ""
-
-#: keyboard.pm:249
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Laotian"
-msgstr ""
-
-#: keyboard.pm:250
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (old)"
-msgstr ""
-
-#: keyboard.pm:252
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (new)"
-msgstr ""
-
-#: keyboard.pm:253
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"number row\" QWERTY"
-msgstr ""
-
-#: keyboard.pm:254
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"phonetic\" QWERTY"
-msgstr ""
-
-#: keyboard.pm:255
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latvian"
-msgstr ""
-
-#: keyboard.pm:256
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Malayalam"
-msgstr ""
-
-#: keyboard.pm:258
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Macedonian"
-msgstr ""
-
-#: keyboard.pm:259
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Myanmar (Burmese)"
-msgstr ""
-
-#: keyboard.pm:260
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Mongolian (cyrillic)"
-msgstr ""
-
-#: keyboard.pm:261
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (UK)"
-msgstr ""
-
-#: keyboard.pm:262
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (US)"
-msgstr ""
-
-#: keyboard.pm:263
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dutch"
-msgstr ""
-
-#: keyboard.pm:265
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Oriya"
-msgstr ""
-
-#: keyboard.pm:266
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwerty layout)"
-msgstr ""
-
-#: keyboard.pm:267
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwertz layout)"
-msgstr ""
-
-#: keyboard.pm:269
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Pashto"
-msgstr ""
-
-#: keyboard.pm:270
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Portuguese"
-msgstr ""
-
-#: keyboard.pm:272
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Canadian (Quebec)"
-msgstr ""
-
-#: keyboard.pm:273
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwertz)"
-msgstr ""
-
-#: keyboard.pm:274
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwerty)"
-msgstr ""
-
-#: keyboard.pm:276
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian (phonetic)"
-msgstr ""
-
-#: keyboard.pm:277
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (norwegian)"
-msgstr ""
-
-#: keyboard.pm:278
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (swedish/finnish)"
-msgstr ""
-
-#: keyboard.pm:280
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sindhi"
-msgstr ""
-
-#: keyboard.pm:282
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovenian"
-msgstr ""
-
-#: keyboard.pm:284
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sinhala"
-msgstr ""
-
-#: keyboard.pm:285
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTZ)"
-msgstr ""
-
-#: keyboard.pm:286
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTY)"
-msgstr ""
-
-#: keyboard.pm:288
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Serbian (cyrillic)"
-msgstr ""
-
-#: keyboard.pm:289
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac"
-msgstr ""
-
-#: keyboard.pm:290
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac (phonetic)"
-msgstr ""
-
-#: keyboard.pm:291
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Telugu"
-msgstr ""
-
-#: keyboard.pm:293
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (ISCII-layout)"
-msgstr ""
-
-#: keyboard.pm:294
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (Typewriter-layout)"
-msgstr ""
-
-#: keyboard.pm:295
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Kedmanee)"
-msgstr ""
-
-#: keyboard.pm:296
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (TIS-820)"
-msgstr ""
-
-#: keyboard.pm:298
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Pattachote)"
-msgstr ""
-
-#: keyboard.pm:300
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (moroccan layout) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:301
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (phonetic) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:303
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tajik"
-msgstr ""
-
-#: keyboard.pm:305
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkmen"
-msgstr ""
-
-#: keyboard.pm:306
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (traditional \"F\" model)"
-msgstr ""
-
-#: keyboard.pm:307
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (modern \"Q\" model)"
-msgstr ""
-
-#: keyboard.pm:309
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Ukrainian"
-msgstr ""
-
-#: keyboard.pm:312
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Urdu keyboard"
-msgstr ""
-
-#: keyboard.pm:314
-#, c-format
-msgid "US keyboard (international)"
-msgstr ""
-
-#: keyboard.pm:315
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Uzbek (cyrillic)"
-msgstr ""
-
-#: keyboard.pm:317
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Vietnamese \"numeric row\" QWERTY"
-msgstr ""
-
-#: keyboard.pm:318
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Yugoslavian (latin)"
-msgstr ""
-
-#: keyboard.pm:325
-#, c-format
-msgid "Right Alt key"
-msgstr ""
-
-#: keyboard.pm:326
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:327
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:328
-#, c-format
-msgid "CapsLock key"
-msgstr ""
-
-#: keyboard.pm:329
-#, c-format
-msgid "Shift and CapsLock keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:330
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:331
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:332
-#, c-format
-msgid "\"Menu\" key"
-msgstr ""
-
-#: keyboard.pm:333
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: keyboard.pm:334
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: keyboard.pm:335
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:336
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:337
-#, c-format
-msgid "Left Shift key"
-msgstr ""
-
-#: keyboard.pm:338
-#, c-format
-msgid "Right Shift key"
-msgstr ""
-
-#: keyboard.pm:339
-#, c-format
-msgid "Left Alt key"
-msgstr ""
-
-#: keyboard.pm:340
-#, c-format
-msgid "Left Control key"
-msgstr ""
-
-#: keyboard.pm:341
-#, c-format
-msgid "Right Control key"
-msgstr ""
-
-#: keyboard.pm:377
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-
-#: keyboard.pm:382
-#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
-msgstr ""
-
-#. -PO: the string "default:LTR" can be translated *ONLY* as "default:LTR"
-#. -PO: or as "default:RTL", depending if your language is written from
-#. -PO: left to right, or from right to left; any other string is wrong.
-#: lang.pm:178
-#, c-format
-msgid "default:LTR"
-msgstr ""
-
-#: lang.pm:195
-#, c-format
-msgid "Andorra"
-msgstr ""
-
-#: lang.pm:196 network/adsl_consts.pm:943
-#, c-format
-msgid "United Arab Emirates"
-msgstr ""
-
-#: lang.pm:197
-#, c-format
-msgid "Afghanistan"
-msgstr ""
-
-#: lang.pm:198
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr ""
-
-#: lang.pm:199
-#, c-format
-msgid "Anguilla"
-msgstr ""
-
-#: lang.pm:200
-#, c-format
-msgid "Albania"
-msgstr ""
-
-#: lang.pm:201
-#, c-format
-msgid "Armenia"
-msgstr ""
-
-#: lang.pm:202
-#, c-format
-msgid "Netherlands Antilles"
-msgstr ""
-
-#: lang.pm:203
-#, c-format
-msgid "Angola"
-msgstr ""
-
-#: lang.pm:204
-#, c-format
-msgid "Antarctica"
-msgstr ""
-
-#: lang.pm:205 network/adsl_consts.pm:55 standalone/drakxtv:50
-#, c-format
-msgid "Argentina"
-msgstr ""
-
-#: lang.pm:206
-#, c-format
-msgid "American Samoa"
-msgstr ""
-
-#: lang.pm:209
-#, c-format
-msgid "Aruba"
-msgstr ""
-
-#: lang.pm:210
-#, c-format
-msgid "Azerbaijan"
-msgstr ""
-
-#: lang.pm:211
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr ""
-
-#: lang.pm:212
-#, c-format
-msgid "Barbados"
-msgstr ""
-
-#: lang.pm:213
-#, c-format
-msgid "Bangladesh"
-msgstr ""
-
-#: lang.pm:215
-#, c-format
-msgid "Burkina Faso"
-msgstr ""
-
-#: lang.pm:216 network/adsl_consts.pm:170 network/adsl_consts.pm:179
-#, c-format
-msgid "Bulgaria"
-msgstr ""
-
-#: lang.pm:217
-#, c-format
-msgid "Bahrain"
-msgstr ""
-
-#: lang.pm:218
-#, c-format
-msgid "Burundi"
-msgstr ""
-
-#: lang.pm:219
-#, c-format
-msgid "Benin"
-msgstr ""
-
-#: lang.pm:220
-#, c-format
-msgid "Bermuda"
-msgstr ""
-
-#: lang.pm:221
-#, c-format
-msgid "Brunei Darussalam"
-msgstr ""
-
-#: lang.pm:222
-#, c-format
-msgid "Bolivia"
-msgstr ""
-
-#: lang.pm:224
-#, c-format
-msgid "Bahamas"
-msgstr ""
-
-#: lang.pm:225
-#, c-format
-msgid "Bhutan"
-msgstr ""
-
-#: lang.pm:226
-#, c-format
-msgid "Bouvet Island"
-msgstr ""
-
-#: lang.pm:227
-#, c-format
-msgid "Botswana"
-msgstr ""
-
-#: lang.pm:228
-#, c-format
-msgid "Belarus"
-msgstr ""
-
-#: lang.pm:229
-#, c-format
-msgid "Belize"
-msgstr ""
-
-#: lang.pm:231
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr ""
-
-#: lang.pm:232
-#, c-format
-msgid "Congo (Kinshasa)"
-msgstr ""
-
-#: lang.pm:233
-#, c-format
-msgid "Central African Republic"
-msgstr ""
-
-#: lang.pm:234
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr ""
-
-#: lang.pm:236
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr ""
-
-#: lang.pm:237
-#, c-format
-msgid "Cook Islands"
-msgstr ""
-
-#: lang.pm:238
-#, c-format
-msgid "Chile"
-msgstr ""
-
-#: lang.pm:239
-#, c-format
-msgid "Cameroon"
-msgstr ""
-
-#: lang.pm:240 network/adsl_consts.pm:188 network/adsl_consts.pm:197 network/adsl_consts.pm:206 network/adsl_consts.pm:215 network/adsl_consts.pm:224 network/adsl_consts.pm:233 network/adsl_consts.pm:242 network/adsl_consts.pm:251 network/adsl_consts.pm:260 network/adsl_consts.pm:269 network/adsl_consts.pm:278 network/adsl_consts.pm:287 network/adsl_consts.pm:296 network/adsl_consts.pm:305 network/adsl_consts.pm:314 network/adsl_consts.pm:323 network/adsl_consts.pm:332 network/adsl_consts.pm:341 network/adsl_consts.pm:350 network/adsl_consts.pm:359
-#, c-format
-msgid "China"
-msgstr ""
-
-#: lang.pm:241
-#, c-format
-msgid "Colombia"
-msgstr ""
-
-#: lang.pm:243
-#, c-format
-msgid "Serbia & Montenegro"
-msgstr ""
-
-#: lang.pm:244
-#, c-format
-msgid "Cuba"
-msgstr ""
-
-#: lang.pm:245
-#, c-format
-msgid "Cape Verde"
-msgstr ""
-
-#: lang.pm:246
-#, c-format
-msgid "Christmas Island"
-msgstr ""
-
-#: lang.pm:247
-#, c-format
-msgid "Cyprus"
-msgstr ""
-
-#: lang.pm:250
-#, c-format
-msgid "Djibouti"
-msgstr ""
-
-#: lang.pm:252
-#, c-format
-msgid "Dominica"
-msgstr ""
-
-#: lang.pm:253
-#, c-format
-msgid "Dominican Republic"
-msgstr ""
-
-#: lang.pm:254 network/adsl_consts.pm:44
-#, c-format
-msgid "Algeria"
-msgstr ""
-
-#: lang.pm:255
-#, c-format
-msgid "Ecuador"
-msgstr ""
-
-#: lang.pm:257
-#, c-format
-msgid "Egypt"
-msgstr ""
-
-#: lang.pm:258
-#, c-format
-msgid "Western Sahara"
-msgstr ""
-
-#: lang.pm:259
-#, c-format
-msgid "Eritrea"
-msgstr ""
-
-#: lang.pm:261
-#, c-format
-msgid "Ethiopia"
-msgstr ""
-
-#: lang.pm:263
-#, c-format
-msgid "Fiji"
-msgstr ""
-
-#: lang.pm:264
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr ""
-
-#: lang.pm:265
-#, c-format
-msgid "Micronesia"
-msgstr ""
-
-#: lang.pm:266
-#, c-format
-msgid "Faroe Islands"
-msgstr ""
-
-#: lang.pm:268
-#, c-format
-msgid "Gabon"
-msgstr ""
-
-#: lang.pm:269 network/adsl_consts.pm:954 network/adsl_consts.pm:965 network/netconnect.pm:46
-#, c-format
-msgid "United Kingdom"
-msgstr ""
-
-#: lang.pm:270
-#, c-format
-msgid "Grenada"
-msgstr ""
-
-#: lang.pm:271
-#, c-format
-msgid "Georgia"
-msgstr ""
-
-#: lang.pm:272
-#, c-format
-msgid "French Guiana"
-msgstr ""
-
-#: lang.pm:273
-#, c-format
-msgid "Ghana"
-msgstr ""
-
-#: lang.pm:274
-#, c-format
-msgid "Gibraltar"
-msgstr ""
-
-#: lang.pm:275
-#, c-format
-msgid "Greenland"
-msgstr ""
-
-#: lang.pm:276
-#, c-format
-msgid "Gambia"
-msgstr ""
-
-#: lang.pm:277
-#, c-format
-msgid "Guinea"
-msgstr ""
-
-#: lang.pm:278
-#, c-format
-msgid "Guadeloupe"
-msgstr ""
-
-#: lang.pm:279
-#, c-format
-msgid "Equatorial Guinea"
-msgstr ""
-
-#: lang.pm:281
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr ""
-
-#: lang.pm:282
-#, c-format
-msgid "Guatemala"
-msgstr ""
-
-#: lang.pm:283
-#, c-format
-msgid "Guam"
-msgstr ""
-
-#: lang.pm:284
-#, c-format
-msgid "Guinea-Bissau"
-msgstr ""
-
-#: lang.pm:285
-#, c-format
-msgid "Guyana"
-msgstr ""
-
-#: lang.pm:286
-#, c-format
-msgid "Hong Kong SAR (China)"
-msgstr ""
-
-#: lang.pm:287
-#, c-format
-msgid "Heard and McDonald Islands"
-msgstr ""
-
-#: lang.pm:288
-#, c-format
-msgid "Honduras"
-msgstr ""
-
-#: lang.pm:289
-#, c-format
-msgid "Croatia"
-msgstr ""
-
-#: lang.pm:290
-#, c-format
-msgid "Haiti"
-msgstr ""
-
-#: lang.pm:292
-#, c-format
-msgid "Indonesia"
-msgstr ""
-
-#: lang.pm:295
-#, c-format
-msgid "India"
-msgstr ""
-
-#: lang.pm:296
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr ""
-
-#: lang.pm:297
-#, c-format
-msgid "Iraq"
-msgstr ""
-
-#: lang.pm:298
-#, c-format
-msgid "Iran"
-msgstr ""
-
-#: lang.pm:299
-#, c-format
-msgid "Iceland"
-msgstr ""
-
-#: lang.pm:301
-#, c-format
-msgid "Jamaica"
-msgstr ""
-
-#: lang.pm:302
-#, c-format
-msgid "Jordan"
-msgstr ""
-
-#: lang.pm:304
-#, c-format
-msgid "Kenya"
-msgstr ""
-
-#: lang.pm:305
-#, c-format
-msgid "Kyrgyzstan"
-msgstr ""
-
-#: lang.pm:306
-#, c-format
-msgid "Cambodia"
-msgstr ""
-
-#: lang.pm:307
-#, c-format
-msgid "Kiribati"
-msgstr ""
-
-#: lang.pm:308
-#, c-format
-msgid "Comoros"
-msgstr ""
-
-#: lang.pm:309
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr ""
-
-#: lang.pm:310
-#, c-format
-msgid "Korea (North)"
-msgstr ""
-
-#: lang.pm:311
-#, c-format
-msgid "Korea"
-msgstr ""
-
-#: lang.pm:312
-#, c-format
-msgid "Kuwait"
-msgstr ""
-
-#: lang.pm:313
-#, c-format
-msgid "Cayman Islands"
-msgstr ""
-
-#: lang.pm:314
-#, c-format
-msgid "Kazakhstan"
-msgstr ""
-
-#: lang.pm:315
-#, c-format
-msgid "Laos"
-msgstr ""
-
-#: lang.pm:316
-#, c-format
-msgid "Lebanon"
-msgstr ""
-
-#: lang.pm:317
-#, c-format
-msgid "Saint Lucia"
-msgstr ""
-
-#: lang.pm:318
-#, c-format
-msgid "Liechtenstein"
-msgstr ""
-
-#: lang.pm:319
-#, c-format
-msgid "Sri Lanka"
-msgstr ""
-
-#: lang.pm:320
-#, c-format
-msgid "Liberia"
-msgstr ""
-
-#: lang.pm:321
-#, c-format
-msgid "Lesotho"
-msgstr ""
-
-#: lang.pm:322 network/adsl_consts.pm:600
-#, c-format
-msgid "Lithuania"
-msgstr ""
-
-#: lang.pm:323
-#, c-format
-msgid "Luxembourg"
-msgstr ""
-
-#: lang.pm:324
-#, c-format
-msgid "Latvia"
-msgstr ""
-
-#: lang.pm:325
-#, c-format
-msgid "Libya"
-msgstr ""
-
-#: lang.pm:326 network/adsl_consts.pm:609
-#, c-format
-msgid "Morocco"
-msgstr ""
-
-#: lang.pm:327
-#, c-format
-msgid "Monaco"
-msgstr ""
-
-#: lang.pm:328
-#, c-format
-msgid "Moldova"
-msgstr ""
-
-#: lang.pm:329
-#, c-format
-msgid "Madagascar"
-msgstr ""
-
-#: lang.pm:330
-#, c-format
-msgid "Marshall Islands"
-msgstr ""
-
-#: lang.pm:331
-#, c-format
-msgid "Macedonia"
-msgstr ""
-
-#: lang.pm:332
-#, c-format
-msgid "Mali"
-msgstr ""
-
-#: lang.pm:333
-#, c-format
-msgid "Myanmar"
-msgstr ""
-
-#: lang.pm:334
-#, c-format
-msgid "Mongolia"
-msgstr ""
-
-#: lang.pm:335
-#, c-format
-msgid "Northern Mariana Islands"
-msgstr ""
-
-#: lang.pm:336
-#, c-format
-msgid "Martinique"
-msgstr ""
-
-#: lang.pm:337
-#, c-format
-msgid "Mauritania"
-msgstr ""
-
-#: lang.pm:338
-#, c-format
-msgid "Montserrat"
-msgstr ""
-
-#: lang.pm:339
-#, c-format
-msgid "Malta"
-msgstr ""
-
-#: lang.pm:340
-#, c-format
-msgid "Mauritius"
-msgstr ""
-
-#: lang.pm:341
-#, c-format
-msgid "Maldives"
-msgstr ""
-
-#: lang.pm:342
-#, c-format
-msgid "Malawi"
-msgstr ""
-
-#: lang.pm:343
-#, c-format
-msgid "Mexico"
-msgstr ""
-
-#: lang.pm:344
-#, c-format
-msgid "Malaysia"
-msgstr ""
-
-#: lang.pm:345
-#, c-format
-msgid "Mozambique"
-msgstr ""
-
-#: lang.pm:346
-#, c-format
-msgid "Namibia"
-msgstr ""
-
-#: lang.pm:347
-#, c-format
-msgid "New Caledonia"
-msgstr ""
-
-#: lang.pm:348
-#, c-format
-msgid "Niger"
-msgstr ""
-
-#: lang.pm:349
-#, c-format
-msgid "Norfolk Island"
-msgstr ""
-
-#: lang.pm:350
-#, c-format
-msgid "Nigeria"
-msgstr ""
-
-#: lang.pm:351
-#, c-format
-msgid "Nicaragua"
-msgstr ""
-
-#: lang.pm:354
-#, c-format
-msgid "Nepal"
-msgstr ""
-
-#: lang.pm:355
-#, c-format
-msgid "Nauru"
-msgstr ""
-
-#: lang.pm:356
-#, c-format
-msgid "Niue"
-msgstr ""
-
-#: lang.pm:358
-#, c-format
-msgid "Oman"
-msgstr ""
-
-#: lang.pm:359
-#, c-format
-msgid "Panama"
-msgstr ""
-
-#: lang.pm:360
-#, c-format
-msgid "Peru"
-msgstr ""
-
-#: lang.pm:361
-#, c-format
-msgid "French Polynesia"
-msgstr ""
-
-#: lang.pm:362
-#, c-format
-msgid "Papua New Guinea"
-msgstr ""
-
-#: lang.pm:363
-#, c-format
-msgid "Philippines"
-msgstr ""
-
-#: lang.pm:364
-#, c-format
-msgid "Pakistan"
-msgstr ""
-
-#: lang.pm:366
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr ""
-
-#: lang.pm:367
-#, c-format
-msgid "Pitcairn"
-msgstr ""
-
-#: lang.pm:368
-#, c-format
-msgid "Puerto Rico"
-msgstr ""
-
-#: lang.pm:369
-#, c-format
-msgid "Palestine"
-msgstr ""
-
-#: lang.pm:371
-#, c-format
-msgid "Paraguay"
-msgstr ""
-
-#: lang.pm:372
-#, c-format
-msgid "Palau"
-msgstr ""
-
-#: lang.pm:373
-#, c-format
-msgid "Qatar"
-msgstr ""
-
-#: lang.pm:374
-#, c-format
-msgid "Reunion"
-msgstr ""
-
-#: lang.pm:375
-#, c-format
-msgid "Romania"
-msgstr ""
-
-#: lang.pm:377
-#, c-format
-msgid "Rwanda"
-msgstr ""
-
-#: lang.pm:378
-#, c-format
-msgid "Saudi Arabia"
-msgstr ""
-
-#: lang.pm:379
-#, c-format
-msgid "Solomon Islands"
-msgstr ""
-
-#: lang.pm:380
-#, c-format
-msgid "Seychelles"
-msgstr ""
-
-#: lang.pm:381
-#, c-format
-msgid "Sudan"
-msgstr ""
-
-#: lang.pm:383
-#, c-format
-msgid "Singapore"
-msgstr ""
-
-#: lang.pm:384
-#, c-format
-msgid "Saint Helena"
-msgstr ""
-
-#: lang.pm:385 network/adsl_consts.pm:747
-#, c-format
-msgid "Slovenia"
-msgstr ""
-
-#: lang.pm:386
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr ""
-
-#: lang.pm:388
-#, c-format
-msgid "Sierra Leone"
-msgstr ""
-
-#: lang.pm:389
-#, c-format
-msgid "San Marino"
-msgstr ""
-
-#: lang.pm:390 network/adsl_consts.pm:737
-#, c-format
-msgid "Senegal"
-msgstr ""
-
-#: lang.pm:391
-#, c-format
-msgid "Somalia"
-msgstr ""
-
-#: lang.pm:392
-#, c-format
-msgid "Suriname"
-msgstr ""
-
-#: lang.pm:393
-#, c-format
-msgid "Sao Tome and Principe"
-msgstr ""
-
-#: lang.pm:394
-#, c-format
-msgid "El Salvador"
-msgstr ""
-
-#: lang.pm:395
-#, c-format
-msgid "Syria"
-msgstr ""
-
-#: lang.pm:396
-#, c-format
-msgid "Swaziland"
-msgstr ""
-
-#: lang.pm:397
-#, c-format
-msgid "Turks and Caicos Islands"
-msgstr ""
-
-#: lang.pm:398
-#, c-format
-msgid "Chad"
-msgstr ""
-
-#: lang.pm:399
-#, c-format
-msgid "French Southern Territories"
-msgstr ""
-
-#: lang.pm:400
-#, c-format
-msgid "Togo"
-msgstr ""
-
-#: lang.pm:402
-#, c-format
-msgid "Tajikistan"
-msgstr ""
-
-#: lang.pm:403
-#, c-format
-msgid "Tokelau"
-msgstr ""
-
-#: lang.pm:404
-#, c-format
-msgid "East Timor"
-msgstr ""
-
-#: lang.pm:405
-#, c-format
-msgid "Turkmenistan"
-msgstr ""
-
-#: lang.pm:406 network/adsl_consts.pm:931
-#, c-format
-msgid "Tunisia"
-msgstr ""
-
-#: lang.pm:407
-#, c-format
-msgid "Tonga"
-msgstr ""
-
-#: lang.pm:408
-#, c-format
-msgid "Turkey"
-msgstr ""
-
-#: lang.pm:409
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr ""
-
-#: lang.pm:410
-#, c-format
-msgid "Tuvalu"
-msgstr ""
-
-#: lang.pm:412
-#, c-format
-msgid "Tanzania"
-msgstr ""
-
-#: lang.pm:413
-#, c-format
-msgid "Ukraine"
-msgstr ""
-
-#: lang.pm:414
-#, c-format
-msgid "Uganda"
-msgstr ""
-
-#: lang.pm:415
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr ""
-
-#: lang.pm:417
-#, c-format
-msgid "Uruguay"
-msgstr ""
-
-#: lang.pm:418
-#, c-format
-msgid "Uzbekistan"
-msgstr ""
-
-#: lang.pm:419
-#, c-format
-msgid "Vatican"
-msgstr ""
-
-#: lang.pm:420
-#, c-format
-msgid "Saint Vincent and the Grenadines"
-msgstr ""
-
-#: lang.pm:421
-#, c-format
-msgid "Venezuela"
-msgstr ""
-
-#: lang.pm:422
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr ""
-
-#: lang.pm:423
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr ""
-
-#: lang.pm:424
-#, c-format
-msgid "Vietnam"
-msgstr ""
-
-#: lang.pm:425
-#, c-format
-msgid "Vanuatu"
-msgstr ""
-
-#: lang.pm:426
-#, c-format
-msgid "Wallis and Futuna"
-msgstr ""
-
-#: lang.pm:427
-#, c-format
-msgid "Samoa"
-msgstr ""
-
-#: lang.pm:428
-#, c-format
-msgid "Yemen"
-msgstr ""
-
-#: lang.pm:429
-#, c-format
-msgid "Mayotte"
-msgstr ""
-
-#: lang.pm:431
-#, c-format
-msgid "Zambia"
-msgstr ""
-
-#: lang.pm:432
-#, c-format
-msgid "Zimbabwe"
-msgstr ""
-
-#: lang.pm:1149
-#, c-format
-msgid "Welcome to %s"
-msgstr ""
-
-#: lvm.pm:83
-#, c-format
-msgid "Moving used physical extents to other physical volumes failed"
-msgstr ""
-
-#: lvm.pm:135
-#, c-format
-msgid "Physical volume %s is still in use"
-msgstr ""
-
-#: lvm.pm:145
-#, c-format
-msgid ""
-"Remove the logical volumes first\n"
-""
-msgstr ""
-
-#: lvm.pm:178
-#, c-format
-msgid "The bootloader can't handle /boot on multiple physical volumes"
-msgstr ""
-
-#: modules/interactive.pm:19
-#, c-format
-msgid "This driver has no configuration parameter!"
-msgstr ""
-
-#: modules/interactive.pm:22
-#, c-format
-msgid "Module configuration"
-msgstr ""
-
-#: modules/interactive.pm:22
-#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr ""
-
-#: modules/interactive.pm:63
-#, c-format
-msgid "Found %s interfaces"
-msgstr ""
-
-#: modules/interactive.pm:64
-#, c-format
-msgid "Do you have another one?"
-msgstr ""
-
-#: modules/interactive.pm:65
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr ""
-
-#: modules/interactive.pm:71
-#, c-format
-msgid "See hardware info"
-msgstr ""
-
-#: modules/interactive.pm:82
-#, c-format
-msgid "Installing driver for USB controller"
-msgstr ""
-
-#: modules/interactive.pm:83
-#, c-format
-msgid "Installing driver for firewire controller %s"
-msgstr ""
-
-#: modules/interactive.pm:84
-#, c-format
-msgid "Installing driver for hard drive controller %s"
-msgstr ""
-
-#: modules/interactive.pm:85
-#, c-format
-msgid "Installing driver for ethernet controller %s"
-msgstr ""
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: modules/interactive.pm:96
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr ""
-
-#: modules/interactive.pm:99
-#, c-format
-msgid "(module %s)"
-msgstr ""
-
-#: modules/interactive.pm:109
-#, c-format
-msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: modules/interactive.pm:115
-#, c-format
-msgid ""
-"You may now provide options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-
-#: modules/interactive.pm:117
-#, c-format
-msgid "Module options:"
-msgstr ""
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: modules/interactive.pm:130
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr ""
-
-#: modules/interactive.pm:139
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without them. Would you like to specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it should\n"
-"not cause any damage."
-msgstr ""
-
-#: modules/interactive.pm:143
-#, c-format
-msgid "Autoprobe"
-msgstr ""
-
-#: modules/interactive.pm:143
-#, c-format
-msgid "Specify options"
-msgstr ""
-
-#: modules/interactive.pm:155
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-
-#: modules/parameters.pm:49
-#, c-format
-msgid "a number"
-msgstr ""
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated numbers"
-msgstr ""
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated strings"
-msgstr ""
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated numbers"
-msgstr ""
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated strings"
-msgstr ""
-
-#: mouse.pm:25
-#, c-format
-msgid "Sun - Mouse"
-msgstr ""
-
-#: mouse.pm:31 security/level.pm:12
-#, c-format
-msgid "Standard"
-msgstr ""
-
-#: mouse.pm:32
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr ""
-
-#: mouse.pm:33
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr ""
-
-#: mouse.pm:34
-#, c-format
-msgid "GlidePoint"
-msgstr ""
-
-#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49 network/modem.pm:68 network/modem.pm:81 network/modem.pm:86 network/modem.pm:115 network/netconnect.pm:596 network/netconnect.pm:601 network/netconnect.pm:613 network/netconnect.pm:618 network/netconnect.pm:634 network/netconnect.pm:636
-#, c-format
-msgid "Automatic"
-msgstr ""
-
-#: mouse.pm:39 mouse.pm:73
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr ""
-
-#: mouse.pm:40 mouse.pm:68
-#, c-format
-msgid "Genius NetMouse"
-msgstr ""
-
-#: mouse.pm:41
-#, c-format
-msgid "Genius NetScroll"
-msgstr ""
-
-#: mouse.pm:42 mouse.pm:52
-#, c-format
-msgid "Microsoft Explorer"
-msgstr ""
-
-#: mouse.pm:47 mouse.pm:79
-#, c-format
-msgid "1 button"
-msgstr ""
-
-#: mouse.pm:48 mouse.pm:57
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr ""
-
-#: mouse.pm:50 mouse.pm:59
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr ""
-
-#: mouse.pm:51
-#, c-format
-msgid "Wheel"
-msgstr ""
-
-#: mouse.pm:55
-#, c-format
-msgid "serial"
-msgstr ""
-
-#: mouse.pm:58
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr ""
-
-#: mouse.pm:60
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr ""
-
-#: mouse.pm:61
-#, c-format
-msgid "Logitech MouseMan"
-msgstr ""
-
-#: mouse.pm:62
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr ""
-
-#: mouse.pm:63
-#, c-format
-msgid "Mouse Systems"
-msgstr ""
-
-#: mouse.pm:65
-#, c-format
-msgid "Logitech CC Series"
-msgstr ""
-
-#: mouse.pm:66
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr ""
-
-#: mouse.pm:67
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr ""
-
-#: mouse.pm:69
-#, c-format
-msgid "MM Series"
-msgstr ""
-
-#: mouse.pm:70
-#, c-format
-msgid "MM HitTablet"
-msgstr ""
-
-#: mouse.pm:71
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr ""
-
-#: mouse.pm:72
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr ""
-
-#: mouse.pm:74
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr ""
-
-#: mouse.pm:77
-#, c-format
-msgid "busmouse"
-msgstr ""
-
-#: mouse.pm:80
-#, c-format
-msgid "2 buttons"
-msgstr ""
-
-#: mouse.pm:81
-#, c-format
-msgid "3 buttons"
-msgstr ""
-
-#: mouse.pm:82
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr ""
-
-#: mouse.pm:86
-#, c-format
-msgid "Universal"
-msgstr ""
-
-#: mouse.pm:88
-#, c-format
-msgid "Any PS/2 & USB mice"
-msgstr ""
-
-#: mouse.pm:89
-#, c-format
-msgid "Microsoft Xbox Controller S"
-msgstr ""
-
-#: mouse.pm:93 standalone/drakconnect:351 standalone/drakvpn:1126
-#, c-format
-msgid "none"
-msgstr ""
-
-#: mouse.pm:95
-#, c-format
-msgid "No mouse"
-msgstr ""
-
-#: mouse.pm:304 mouse.pm:367 mouse.pm:376 mouse.pm:435
-#, c-format
-msgid "Synaptics Touchpad"
-msgstr ""
-
-#: mouse.pm:561
-#, c-format
-msgid "Please test the mouse"
-msgstr ""
-
-#: mouse.pm:563
-#, c-format
-msgid "To activate the mouse,"
-msgstr ""
-
-#: mouse.pm:564
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr ""
-
-#: network/drakfirewall.pm:12 share/compssUsers.pl:85
-#, c-format
-msgid "Web Server"
-msgstr ""
-
-#: network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr ""
-
-#: network/drakfirewall.pm:22
-#, c-format
-msgid "SSH server"
-msgstr ""
-
-#: network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr ""
-
-#: network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr ""
-
-#: network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr ""
-
-#: network/drakfirewall.pm:42
-#, c-format
-msgid "Telnet server"
-msgstr ""
-
-#: network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr ""
-
-#: network/drakfirewall.pm:54
-#, c-format
-msgid "CUPS server"
-msgstr ""
-
-#: network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr ""
-
-#: network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr ""
-
-#: network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr ""
-
-#: network/drakfirewall.pm:165
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-
-#: network/drakfirewall.pm:171
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-
-#: network/drakfirewall.pm:188
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
-
-#: network/drakfirewall.pm:191
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-
-#: network/drakfirewall.pm:197
-#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-
-#: network/drakfirewall.pm:207
-#, c-format
-msgid "Everything (no firewall)"
-msgstr ""
-
-#: network/drakfirewall.pm:209
-#, c-format
-msgid "Other ports"
-msgstr ""
-
-#: network/drakfirewall.pm:253 network/drakfirewall.pm:256 standalone/drakids:33 standalone/drakids:136 standalone/drakids:145 standalone/drakids:170 standalone/drakids:179 standalone/drakids:189 standalone/drakids:265 standalone/net_applet:59 standalone/net_applet:202 standalone/net_applet:385 standalone/net_applet:422
-#, c-format
-msgid "Interactive Firewall"
-msgstr ""
-
-#: network/drakfirewall.pm:254
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude into your computer.\n"
-"Please select which network activity should be watched."
-msgstr ""
-
-#: network/drakfirewall.pm:259
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr ""
-
-#: network/ifw.pm:129
-#, c-format
-msgid "Port scanning"
-msgstr ""
-
-#: network/ifw.pm:130
-#, c-format
-msgid "Service attack"
-msgstr ""
-
-#: network/ifw.pm:131
-#, c-format
-msgid "Password cracking"
-msgstr ""
-
-#: network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr ""
-
-#: network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:135
-#, c-format
-msgid "The %s service has been attacked by %s."
-msgstr ""
-
-#: network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:137
-#, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr ""
-
-#: network/isdn.pm:117 network/netconnect.pm:463 network/netconnect.pm:557 network/netconnect.pm:560 network/netconnect.pm:708 network/netconnect.pm:712
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr ""
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr ""
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr ""
-
-#: network/isdn.pm:161 network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr ""
-
-#: network/isdn.pm:162 network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr ""
-
-#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49 network/netconnect.pm:601 network/netconnect.pm:618 network/netconnect.pm:634
-#, c-format
-msgid "Manual"
-msgstr ""
-
-#: network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr ""
-
-#: network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr ""
-
-#: network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr ""
-
-#: network/ndiswrapper.pm:89
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr ""
-
-#: network/ndiswrapper.pm:95
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-
-#: network/ndiswrapper.pm:101
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr ""
-
-#: network/netconnect.pm:69 network/netconnect.pm:493 network/netconnect.pm:505
-#, c-format
-msgid "Manual choice"
-msgstr ""
-
-#: network/netconnect.pm:69
-#, c-format
-msgid "Internal ISDN card"
-msgstr ""
-
-#: network/netconnect.pm:80 printer/printerdrake.pm:1622 standalone/drakups:72
-#, c-format
-msgid "Manual configuration"
-msgstr ""
-
-#: network/netconnect.pm:81 standalone/drakroam:121
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr ""
-
-#: network/netconnect.pm:83
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
-msgstr ""
-
-#: network/netconnect.pm:86
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr ""
-
-#: network/netconnect.pm:88 standalone/drakconnect:563
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr ""
-
-#: network/netconnect.pm:89 standalone/drakconnect:564
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-
-#: network/netconnect.pm:103 standalone/harddrake2:328 standalone/net_monitor:102 standalone/net_monitor:103 standalone/net_monitor:108
-#, c-format
-msgid "unknown"
-msgstr ""
-
-#: network/netconnect.pm:120 network/thirdparty.pm:220
-#, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr ""
-
-#: network/netconnect.pm:121
-#, c-format
-msgid "Sagem USB modem"
-msgstr ""
-
-#: network/netconnect.pm:122
-#, c-format
-msgid "Bewan modem"
-msgstr ""
-
-#: network/netconnect.pm:123
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr ""
-
-#: network/netconnect.pm:127
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr ""
-
-#: network/netconnect.pm:128
-#, c-format
-msgid "Manual TCP/IP configuration"
-msgstr ""
-
-#: network/netconnect.pm:129
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr ""
-
-#: network/netconnect.pm:130
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr ""
-
-#: network/netconnect.pm:131
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr ""
-
-#: network/netconnect.pm:132
-#, c-format
-msgid "DSL over CAPI"
-msgstr ""
-
-#: network/netconnect.pm:136
-#, c-format
-msgid "Bridged Ethernet LLC"
-msgstr ""
-
-#: network/netconnect.pm:137
-#, c-format
-msgid "Bridged Ethernet VC"
-msgstr ""
-
-#: network/netconnect.pm:138
-#, c-format
-msgid "Routed IP LLC"
-msgstr ""
-
-#: network/netconnect.pm:139
-#, c-format
-msgid "Routed IP VC"
-msgstr ""
-
-#: network/netconnect.pm:140
-#, c-format
-msgid "PPPoA LLC"
-msgstr ""
-
-#: network/netconnect.pm:141
-#, c-format
-msgid "PPPoA VC"
-msgstr ""
-
-#: network/netconnect.pm:145 standalone/drakconnect:498
-#, c-format
-msgid "Script-based"
-msgstr ""
-
-#: network/netconnect.pm:146 standalone/drakconnect:498
-#, c-format
-msgid "PAP"
-msgstr ""
-
-#: network/netconnect.pm:147 standalone/drakconnect:498
-#, c-format
-msgid "Terminal-based"
-msgstr ""
-
-#: network/netconnect.pm:148 standalone/drakconnect:498
-#, c-format
-msgid "CHAP"
-msgstr ""
-
-#: network/netconnect.pm:149 standalone/drakconnect:498
-#, c-format
-msgid "PAP/CHAP"
-msgstr ""
-
-#: network/netconnect.pm:250 standalone/drakconnect:56
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr ""
-
-#: network/netconnect.pm:256
-#, c-format
-msgid "LAN connection"
-msgstr ""
-
-#: network/netconnect.pm:257 network/netconnect.pm:276 standalone/drakroam:182 standalone/drakroam:220 standalone/drakroam:223
-#, c-format
-msgid "Wireless connection"
-msgstr ""
-
-#: network/netconnect.pm:258
-#, c-format
-msgid "ADSL connection"
-msgstr ""
-
-#: network/netconnect.pm:259
-#, c-format
-msgid "Cable connection"
-msgstr ""
-
-#: network/netconnect.pm:260
-#, c-format
-msgid "ISDN connection"
-msgstr ""
-
-#: network/netconnect.pm:261
-#, c-format
-msgid "Modem connection"
-msgstr ""
-
-#: network/netconnect.pm:262
-#, c-format
-msgid "DVB connection"
-msgstr ""
-
-#: network/netconnect.pm:272
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr ""
-
-#: network/netconnect.pm:287 network/netconnect.pm:786
-#, c-format
-msgid "Connection Configuration"
-msgstr ""
-
-#: network/netconnect.pm:287 network/netconnect.pm:787
-#, c-format
-msgid "Please fill or check the field below"
-msgstr ""
-
-#: network/netconnect.pm:290
-#, c-format
-msgid "Your personal phone number"
-msgstr ""
-
-#: network/netconnect.pm:291 network/netconnect.pm:790
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr ""
-
-#: network/netconnect.pm:292 standalone/drakconnect:493
-#, c-format
-msgid "Provider phone number"
-msgstr ""
-
-#: network/netconnect.pm:293
-#, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr ""
-
-#: network/netconnect.pm:294
-#, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr ""
-
-#: network/netconnect.pm:295 standalone/drakconnect:444
-#, c-format
-msgid "Dialing mode"
-msgstr ""
-
-#: network/netconnect.pm:296 standalone/drakconnect:449 standalone/drakconnect:517
-#, c-format
-msgid "Connection speed"
-msgstr ""
-
-#: network/netconnect.pm:297 standalone/drakconnect:454
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr ""
-
-#: network/netconnect.pm:298 network/netconnect.pm:323 network/netconnect.pm:793 standalone/drakconnect:491
-#, c-format
-msgid "Account Login (user name)"
-msgstr ""
-
-#: network/netconnect.pm:299 network/netconnect.pm:324 network/netconnect.pm:794 standalone/drakconnect:492
-#, c-format
-msgid "Account Password"
-msgstr ""
-
-#: network/netconnect.pm:300 standalone/drakconnect:554
-#, c-format
-msgid "Card IRQ"
-msgstr ""
-
-#: network/netconnect.pm:301 standalone/drakconnect:555
-#, c-format
-msgid "Card mem (DMA)"
-msgstr ""
-
-#: network/netconnect.pm:302 standalone/drakconnect:556
-#, c-format
-msgid "Card IO"
-msgstr ""
-
-#: network/netconnect.pm:303 standalone/drakconnect:557
-#, c-format
-msgid "Card IO_0"
-msgstr ""
-
-#: network/netconnect.pm:304
-#, c-format
-msgid "Card IO_1"
-msgstr ""
-
-#: network/netconnect.pm:319
-#, c-format
-msgid "Cable: account options"
-msgstr ""
-
-#: network/netconnect.pm:322
-#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr ""
-
-#: network/netconnect.pm:348 network/netconnect.pm:670 network/netconnect.pm:826 network/netconnect.pm:1170
-#, c-format
-msgid "Select the network interface to configure:"
-msgstr ""
-
-#: network/netconnect.pm:350 network/netconnect.pm:385 network/netconnect.pm:671 network/netconnect.pm:828 network/shorewall.pm:70 standalone/drakconnect:714
-#, c-format
-msgid "Net Device"
-msgstr ""
-
-#: network/netconnect.pm:351 network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr ""
-
-#: network/netconnect.pm:384 standalone/harddrake2:215
-#, c-format
-msgid "Select a device!"
-msgstr ""
-
-#: network/netconnect.pm:393 network/netconnect.pm:403 network/netconnect.pm:413 network/netconnect.pm:446 network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr ""
-
-#: network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr ""
-
-#: network/netconnect.pm:404
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your card.\n"
-""
-msgstr ""
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr ""
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr ""
-
-#: network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr ""
-
-#: network/netconnect.pm:432
-#, c-format
-msgid "A CAPI driver is available for this modem. This CAPI driver can offer more capabilities than the free driver (like sending faxes). Which driver do you want to use?"
-msgstr ""
-
-#: network/netconnect.pm:434 standalone/drakconnect:109 standalone/drakups:249 standalone/harddrake2:133
-#, c-format
-msgid "Driver"
-msgstr ""
-
-#: network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr ""
-
-#: network/netconnect.pm:448 standalone/drakconnect:109 standalone/drakconnect:300 standalone/drakconnect:562 standalone/drakids:207 standalone/drakvpn:1128
-#, c-format
-msgid "Protocol"
-msgstr ""
-
-#: network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-
-#: network/netconnect.pm:462 network/netconnect.pm:556 network/netconnect.pm:707
-#, c-format
-msgid "Provider:"
-msgstr ""
-
-#: network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-
-#: network/netconnect.pm:490
-#, c-format
-msgid "Select the modem to configure:"
-msgstr ""
-
-#: network/netconnect.pm:525
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr ""
-
-#: network/netconnect.pm:554
-#, c-format
-msgid "Select your provider:"
-msgstr ""
-
-#: network/netconnect.pm:578
-#, c-format
-msgid "Dialup: account options"
-msgstr ""
-
-#: network/netconnect.pm:581
-#, c-format
-msgid "Connection name"
-msgstr ""
-
-#: network/netconnect.pm:582
-#, c-format
-msgid "Phone number"
-msgstr ""
-
-#: network/netconnect.pm:583
-#, c-format
-msgid "Login ID"
-msgstr ""
-
-#: network/netconnect.pm:598 network/netconnect.pm:631
-#, c-format
-msgid "Dialup: IP parameters"
-msgstr ""
-
-#: network/netconnect.pm:601
-#, c-format
-msgid "IP parameters"
-msgstr ""
-
-#: network/netconnect.pm:602 network/netconnect.pm:941 printer/printerdrake.pm:460 standalone/drakconnect:109 standalone/drakconnect:316 standalone/drakconnect:882 standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:284
-#, c-format
-msgid "IP address"
-msgstr ""
-
-#: network/netconnect.pm:603
-#, c-format
-msgid "Subnet mask"
-msgstr ""
-
-#: network/netconnect.pm:615
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr ""
-
-#: network/netconnect.pm:618
-#, c-format
-msgid "DNS"
-msgstr ""
-
-#: network/netconnect.pm:619
-#, c-format
-msgid "Domain name"
-msgstr ""
-
-#: network/netconnect.pm:620 network/netconnect.pm:791 standalone/drakconnect:992
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr ""
-
-#: network/netconnect.pm:621 network/netconnect.pm:792 standalone/drakconnect:993
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr ""
-
-#: network/netconnect.pm:622
-#, c-format
-msgid "Set hostname from IP"
-msgstr ""
-
-#: network/netconnect.pm:634 standalone/drakconnect:327
-#, c-format
-msgid "Gateway"
-msgstr ""
-
-#: network/netconnect.pm:635 standalone/drakroam:124
-#, c-format
-msgid "Gateway IP address"
-msgstr ""
-
-#: network/netconnect.pm:670
-#, c-format
-msgid "ADSL configuration"
-msgstr ""
-
-#: network/netconnect.pm:705
-#, c-format
-msgid "Please choose your ADSL provider"
-msgstr ""
-
-#: network/netconnect.pm:735
-#, c-format
-msgid ""
-"Please choose your DSL connection type.\n"
-"If you do not know it, keep the preselected type."
-msgstr ""
-
-#: network/netconnect.pm:738
-#, c-format
-msgid "ADSL connection type:"
-msgstr ""
-
-#: network/netconnect.pm:796
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr ""
-
-#: network/netconnect.pm:797
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr ""
-
-#: network/netconnect.pm:800
-#, c-format
-msgid "Encapsulation:"
-msgstr ""
-
-#: network/netconnect.pm:830
-#, c-format
-msgid "Manually load a driver"
-msgstr ""
-
-#: network/netconnect.pm:831
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr ""
-
-#: network/netconnect.pm:896
-#, c-format
-msgid "Zeroconf hostname resolution"
-msgstr ""
-
-#: network/netconnect.pm:897 network/netconnect.pm:928
-#, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr ""
-
-#: network/netconnect.pm:898
-#, c-format
-msgid "The following protocols can be used to configure a LAN connection. Please choose the one you want to use"
-msgstr ""
-
-#: network/netconnect.pm:929
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-
-#: network/netconnect.pm:936 standalone/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr ""
-
-#: network/netconnect.pm:937 standalone/drakconnect:375
-#, c-format
-msgid "DHCP host name"
-msgstr ""
-
-#: network/netconnect.pm:942 standalone/drakconnect:321 standalone/drakconnect:883 standalone/drakgw:181
-#, c-format
-msgid "Netmask"
-msgstr ""
-
-#: network/netconnect.pm:944 standalone/drakconnect:437
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr ""
-
-#: network/netconnect.pm:945 standalone/drakconnect:438
-#, c-format
-msgid "Network Hotplugging"
-msgstr ""
-
-#: network/netconnect.pm:947 standalone/drakconnect:432
-#, c-format
-msgid "Start at boot"
-msgstr ""
-
-#: network/netconnect.pm:949 standalone/drakconnect:460
-#, c-format
-msgid "Metric"
-msgstr ""
-
-#: network/netconnect.pm:950
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr ""
-
-#: network/netconnect.pm:952 standalone/drakconnect:369 standalone/drakconnect:886
-#, c-format
-msgid "DHCP client"
-msgstr ""
-
-#: network/netconnect.pm:954 standalone/drakconnect:379
-#, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr ""
-
-#: network/netconnect.pm:955 standalone/drakconnect:382
-#, c-format
-msgid "Get DNS servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:956 standalone/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:957 standalone/drakconnect:384
-#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:965 printer/printerdrake.pm:1876 standalone/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr ""
-
-#: network/netconnect.pm:969 standalone/drakconnect:680
-#, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr ""
-
-#: network/netconnect.pm:973
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr ""
-
-#: network/netconnect.pm:978 standalone/drakTermServ:1927 standalone/drakTermServ:1928 standalone/drakTermServ:1929
-#, c-format
-msgid ""
-"%s already in use\n"
-""
-msgstr ""
-
-#: network/netconnect.pm:1018
-#, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr ""
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr ""
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Install a new driver"
-msgstr ""
-
-#: network/netconnect.pm:1032
-#, c-format
-msgid "Select a device:"
-msgstr ""
-
-#: network/netconnect.pm:1061
-#, c-format
-msgid "Please enter the wireless parameters for this card:"
-msgstr ""
-
-#: network/netconnect.pm:1064 standalone/drakconnect:404 standalone/drakroam:52
-#, c-format
-msgid "Operating Mode"
-msgstr ""
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Ad-hoc"
-msgstr ""
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Managed"
-msgstr ""
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Master"
-msgstr ""
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Repeater"
-msgstr ""
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Secondary"
-msgstr ""
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Auto"
-msgstr ""
-
-#: network/netconnect.pm:1068 standalone/drakconnect:405 standalone/drakroam:115
-#, c-format
-msgid "Network name (ESSID)"
-msgstr ""
-
-#: network/netconnect.pm:1069 standalone/drakroam:116
-#, c-format
-msgid "Encryption mode"
-msgstr ""
-
-#: network/netconnect.pm:1074
-#, c-format
-msgid "Allow access point roaming"
-msgstr ""
-
-#: network/netconnect.pm:1076 standalone/drakconnect:406
-#, c-format
-msgid "Network ID"
-msgstr ""
-
-#: network/netconnect.pm:1077 standalone/drakconnect:407
-#, c-format
-msgid "Operating frequency"
-msgstr ""
-
-#: network/netconnect.pm:1078 standalone/drakconnect:408
-#, c-format
-msgid "Sensitivity threshold"
-msgstr ""
-
-#: network/netconnect.pm:1079 standalone/drakconnect:409
-#, c-format
-msgid "Bitrate (in b/s)"
-msgstr ""
-
-#: network/netconnect.pm:1080 standalone/drakconnect:420
-#, c-format
-msgid "RTS/CTS"
-msgstr ""
-
-#: network/netconnect.pm:1081
-#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that the\n"
-"channel is clear. This adds overhead, but increase performance in case of hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, fixed\n"
-"or off."
-msgstr ""
-
-#: network/netconnect.pm:1088 standalone/drakconnect:421
-#, c-format
-msgid "Fragmentation"
-msgstr ""
-
-#: network/netconnect.pm:1089 standalone/drakconnect:422
-#, c-format
-msgid "iwconfig command extra arguments"
-msgstr ""
-
-#: network/netconnect.pm:1090
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-
-#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1097 standalone/drakconnect:423
-#, c-format
-msgid "iwspy command extra arguments"
-msgstr ""
-
-#: network/netconnect.pm:1098
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-
-#: network/netconnect.pm:1107 standalone/drakconnect:424
-#, c-format
-msgid "iwpriv command extra arguments"
-msgstr ""
-
-#: network/netconnect.pm:1108
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-
-#: network/netconnect.pm:1123
-#, c-format
-msgid "Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz frequency), or add enough '0' (zeroes)."
-msgstr ""
-
-#: network/netconnect.pm:1127
-#, c-format
-msgid "Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add enough '0' (zeroes)."
-msgstr ""
-
-#: network/netconnect.pm:1170
-#, c-format
-msgid "DVB configuration"
-msgstr ""
-
-#: network/netconnect.pm:1171
-#, c-format
-msgid "DVB Adapter"
-msgstr ""
-
-#: network/netconnect.pm:1188
-#, c-format
-msgid "DVB adapter settings"
-msgstr ""
-
-#: network/netconnect.pm:1191
-#, c-format
-msgid "Adapter card"
-msgstr ""
-
-#: network/netconnect.pm:1192
-#, c-format
-msgid "Net demux"
-msgstr ""
-
-#: network/netconnect.pm:1193
-#, c-format
-msgid "PID"
-msgstr ""
-
-#: network/netconnect.pm:1221
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-
-#: network/netconnect.pm:1226
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr ""
-
-#: network/netconnect.pm:1228 standalone/drakconnect:991
-#, c-format
-msgid "Host name (optional)"
-msgstr ""
-
-#: network/netconnect.pm:1228 standalone/drakhosts:197
-#, c-format
-msgid "Host name"
-msgstr ""
-
-#: network/netconnect.pm:1230
-#, c-format
-msgid "DNS server 1"
-msgstr ""
-
-#: network/netconnect.pm:1231
-#, c-format
-msgid "DNS server 2"
-msgstr ""
-
-#: network/netconnect.pm:1232
-#, c-format
-msgid "DNS server 3"
-msgstr ""
-
-#: network/netconnect.pm:1233
-#, c-format
-msgid "Search domain"
-msgstr ""
-
-#: network/netconnect.pm:1234
-#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr ""
-
-#: network/netconnect.pm:1235
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: network/netconnect.pm:1237
-#, c-format
-msgid "Gateway device"
-msgstr ""
-
-#: network/netconnect.pm:1246
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr ""
-
-#: network/netconnect.pm:1251 standalone/drakconnect:685
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr ""
-
-#: network/netconnect.pm:1264
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-
-#: network/netconnect.pm:1268
-#, c-format
-msgid "Zeroconf Host name"
-msgstr ""
-
-#: network/netconnect.pm:1271
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr ""
-
-#: network/netconnect.pm:1281
-#, c-format
-msgid "Do you want to allow users to start the connection?"
-msgstr ""
-
-#: network/netconnect.pm:1294
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr ""
-
-#: network/netconnect.pm:1310
-#, c-format
-msgid "Automatically at boot"
-msgstr ""
-
-#: network/netconnect.pm:1312
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr ""
-
-#: network/netconnect.pm:1314
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr ""
-
-#: network/netconnect.pm:1323
-#, c-format
-msgid "How do you want to dial this connection?"
-msgstr ""
-
-#: network/netconnect.pm:1336
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr ""
-
-#: network/netconnect.pm:1344 standalone/drakconnect:1023
-#, c-format
-msgid "Testing your connection..."
-msgstr ""
-
-#: network/netconnect.pm:1369
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr ""
-
-#: network/netconnect.pm:1370
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr ""
-
-#: network/netconnect.pm:1371
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-
-#: network/netconnect.pm:1386
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-""
-msgstr ""
-
-#: network/netconnect.pm:1389
-#, c-format
-msgid "After this is done, we recommend that you restart your X environment to avoid any hostname-related problems."
-msgstr ""
-
-#: network/netconnect.pm:1390
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not work, you might want to relaunch the configuration."
-msgstr ""
-
-#: network/netconnect.pm:1402
-#, c-format
-msgid "(detected on port %s)"
-msgstr ""
-
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected %s)"
-msgstr ""
-
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected)"
-msgstr ""
-
-#: network/netconnect.pm:1405
-#, c-format
-msgid "Network Configuration"
-msgstr ""
-
-#: network/netconnect.pm:1406
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your Internet & Network connection.\n"
-""
-msgstr ""
-
-#: network/netconnect.pm:1409
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr ""
-
-#: network/netconnect.pm:1410
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-
-#: network/netconnect.pm:1411
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-
-#: network/netconnect.pm:1412
-#, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr ""
-
-#: network/netconnect.pm:1413
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-""
-msgstr ""
-
-#: network/netconnect.pm:1414
-#, c-format
-msgid "Internet connection"
-msgstr ""
-
-#: network/netconnect.pm:1428
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-
-#: network/network.pm:411
-#, c-format
-msgid "Proxies configuration"
-msgstr ""
-
-#: network/network.pm:412
-#, c-format
-msgid "Here you can set up your proxies configuration (eg: http://my_caching_server:8080)"
-msgstr ""
-
-#: network/network.pm:413
-#, c-format
-msgid "HTTP proxy"
-msgstr ""
-
-#: network/network.pm:414
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: network/network.pm:415
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: network/network.pm:416
-#, c-format
-msgid "FTP proxy"
-msgstr ""
-
-#: network/network.pm:420
-#, c-format
-msgid "Proxy should be http://..."
-msgstr ""
-
-#: network/network.pm:421
-#, c-format
-msgid "Proxy should be https?://..."
-msgstr ""
-
-#: network/network.pm:422
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr ""
-
-#: network/shorewall.pm:55
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-""
-msgstr ""
-
-#: network/thirdparty.pm:232
-#, c-format
-msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
-msgstr ""
-
-#: network/thirdparty.pm:241
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-
-#: network/thirdparty.pm:321
-#, c-format
-msgid "Could not install the packages (%s)!"
-msgstr ""
-
-#: network/thirdparty.pm:329
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr ""
-
-#: network/thirdparty.pm:330
-#, c-format
-msgid "These packages can be found in Mandriva Club or in Mandriva commercial releases."
-msgstr ""
-
-#: network/thirdparty.pm:332
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-
-#: network/thirdparty.pm:372
-#, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr ""
-
-#: network/thirdparty.pm:374
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr ""
-
-#: network/thirdparty.pm:384
-#, c-format
-msgid "Insert floppy"
-msgstr ""
-
-#: network/thirdparty.pm:385
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s with %s in root directory and press %s"
-msgstr ""
-
-#: network/thirdparty.pm:395
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr ""
-
-#: network/thirdparty.pm:405
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-
-#: network/thirdparty.pm:409 network/thirdparty.pm:411
-#, c-format
-msgid "Use a floppy"
-msgstr ""
-
-#: network/thirdparty.pm:409
-#, c-format
-msgid "Use my Windows partition"
-msgstr ""
-
-#: network/thirdparty.pm:419
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr ""
-
-#: network/thirdparty.pm:424 standalone/drakautoinst:250 standalone/drakvpn:888 standalone/scannerdrake:422
-#, c-format
-msgid "Congratulations!"
-msgstr ""
-
-#: network/thirdparty.pm:424
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr ""
-
-#: network/thirdparty.pm:493
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr ""
-
-#: network/thirdparty.pm:498
-#, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr ""
-
-#: network/wireless.pm:8
-#, c-format
-msgid "Open WEP"
-msgstr ""
-
-#: network/wireless.pm:9
-#, c-format
-msgid "Restricted WEP"
-msgstr ""
-
-#: network/wireless.pm:10
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr ""
-
-#: partition_table.pm:391
-#, c-format
-msgid "mount failed: "
-msgstr ""
-
-#: partition_table.pm:496
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr ""
-
-#: partition_table.pm:514
-#, c-format
-msgid ""
-"You have a hole in your partition table but I can not use it.\n"
-"The only solution is to move your primary partitions to have the hole next to the extended partitions."
-msgstr ""
-
-#: partition_table.pm:605
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr ""
-
-#: partition_table.pm:607
-#, c-format
-msgid "Bad backup file"
-msgstr ""
-
-#: partition_table.pm:627
-#, c-format
-msgid "Error writing to file %s"
-msgstr ""
-
-#: partition_table/raw.pm:253
-#, c-format
-msgid ""
-"Something bad is happening on your drive. \n"
-"A test to check the integrity of data has failed. \n"
-"It means writing anything on the disk will end up with random, corrupted data."
-msgstr ""
-
-#: pkgs.pm:21
-#, c-format
-msgid "must have"
-msgstr ""
-
-#: pkgs.pm:22
-#, c-format
-msgid "important"
-msgstr ""
-
-#: pkgs.pm:23
-#, c-format
-msgid "very nice"
-msgstr ""
-
-#: pkgs.pm:24
-#, c-format
-msgid "nice"
-msgstr ""
-
-#: pkgs.pm:25
-#, c-format
-msgid "maybe"
-msgstr ""
-
-#: pkgs.pm:474
-#, c-format
-msgid "Downloading file %s..."
-msgstr ""
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on %s)"
-msgstr ""
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on this machine)"
-msgstr ""
-
-#: printer/cups.pm:117 standalone/printerdrake:200
-#, c-format
-msgid "Configured on other machines"
-msgstr ""
-
-#: printer/cups.pm:119
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr ""
-
-#: printer/cups.pm:119 printer/printerdrake.pm:4909 printer/printerdrake.pm:4919 printer/printerdrake.pm:5078 printer/printerdrake.pm:5089 printer/printerdrake.pm:5303
-#, c-format
-msgid " (Default)"
-msgstr ""
-
-#: printer/data.pm:67
-#, c-format
-msgid "PDQ - Print, Do not Queue"
-msgstr ""
-
-#: printer/data.pm:68
-#, c-format
-msgid "PDQ"
-msgstr ""
-
-#: printer/data.pm:80
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: printer/data.pm:81
-#, c-format
-msgid "LPD"
-msgstr ""
-
-#: printer/data.pm:102
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: printer/data.pm:103
-#, c-format
-msgid "LPRng"
-msgstr ""
-
-#: printer/data.pm:128
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: printer/data.pm:158
-#, c-format
-msgid "CUPS - Common Unix Printing System (remote server)"
-msgstr ""
-
-#: printer/data.pm:159
-#, c-format
-msgid "Remote CUPS"
-msgstr ""
-
-#: printer/detect.pm:168 printer/detect.pm:263 printer/detect.pm:498 printer/detect.pm:571 printer/main.pm:330 printer/main.pm:692 printer/main.pm:1815 printer/printerdrake.pm:960 printer/printerdrake.pm:1120 printer/printerdrake.pm:2448 printer/printerdrake.pm:4004
-#, c-format
-msgid "Unknown model"
-msgstr ""
-
-#: printer/main.pm:24
-#, c-format
-msgid "Local printer"
-msgstr ""
-
-#: printer/main.pm:25
-#, c-format
-msgid "Remote printer"
-msgstr ""
-
-#: printer/main.pm:26
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr ""
-
-#: printer/main.pm:27 printer/printerdrake.pm:1360 printer/printerdrake.pm:1899
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr ""
-
-#: printer/main.pm:28
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr ""
-
-#: printer/main.pm:29
-#, c-format
-msgid "Printer on SMB/Windows server"
-msgstr ""
-
-#: printer/main.pm:30
-#, c-format
-msgid "Printer on NetWare server"
-msgstr ""
-
-#: printer/main.pm:31 printer/printerdrake.pm:1903
-#, c-format
-msgid "Enter a printer device URI"
-msgstr ""
-
-#: printer/main.pm:32
-#, c-format
-msgid "Pipe job into a command"
-msgstr ""
-
-#: printer/main.pm:43
-#, c-format
-msgid "recommended"
-msgstr ""
-
-#: printer/main.pm:355 standalone/printerdrake:199
-#, c-format
-msgid "Configured on this machine"
-msgstr ""
-
-#: printer/main.pm:361 printer/printerdrake.pm:1445
-#, c-format
-msgid " on parallel port #%s"
-msgstr ""
-
-#: printer/main.pm:364 printer/printerdrake.pm:1448
-#, c-format
-msgid ", USB printer #%s"
-msgstr ""
-
-#: printer/main.pm:366
-#, c-format
-msgid ", USB printer"
-msgstr ""
-
-#: printer/main.pm:370
-#, c-format
-msgid ", HP printer on a parallel port"
-msgstr ""
-
-#: printer/main.pm:372
-#, c-format
-msgid ", HP printer on USB"
-msgstr ""
-
-#: printer/main.pm:374
-#, c-format
-msgid ", HP printer on HP JetDirect"
-msgstr ""
-
-#: printer/main.pm:376
-#, c-format
-msgid ", HP printer"
-msgstr ""
-
-#: printer/main.pm:382
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ""
-
-#: printer/main.pm:385
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ""
-
-#: printer/main.pm:387
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: printer/main.pm:389
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: printer/main.pm:391
-#, c-format
-msgid ", multi-function device"
-msgstr ""
-
-#: printer/main.pm:395
-#, c-format
-msgid ", printing to %s"
-msgstr ""
-
-#: printer/main.pm:398
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: printer/main.pm:401
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: printer/main.pm:406
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: printer/main.pm:411
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: printer/main.pm:414
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: printer/main.pm:429
-#, c-format
-msgid "Parallel port #%s"
-msgstr ""
-
-#: printer/main.pm:432 printer/printerdrake.pm:1466 printer/printerdrake.pm:1493 printer/printerdrake.pm:1508
-#, c-format
-msgid "USB printer #%s"
-msgstr ""
-
-#: printer/main.pm:434
-#, c-format
-msgid "USB printer"
-msgstr ""
-
-#: printer/main.pm:438
-#, c-format
-msgid "HP printer on a parallel port"
-msgstr ""
-
-#: printer/main.pm:440
-#, c-format
-msgid "HP printer on USB"
-msgstr ""
-
-#: printer/main.pm:442
-#, c-format
-msgid "HP printer on HP JetDirect"
-msgstr ""
-
-#: printer/main.pm:444
-#, c-format
-msgid "HP printer"
-msgstr ""
-
-#: printer/main.pm:450
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr ""
-
-#: printer/main.pm:453
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr ""
-
-#: printer/main.pm:455
-#, c-format
-msgid "Multi-function device on USB"
-msgstr ""
-
-#: printer/main.pm:457
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr ""
-
-#: printer/main.pm:459
-#, c-format
-msgid "Multi-function device"
-msgstr ""
-
-#: printer/main.pm:463
-#, c-format
-msgid "Prints into %s"
-msgstr ""
-
-#: printer/main.pm:466
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: printer/main.pm:469
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: printer/main.pm:474
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: printer/main.pm:479
-#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: printer/main.pm:482
-#, c-format
-msgid "Uses command %s"
-msgstr ""
-
-#: printer/main.pm:484
-#, c-format
-msgid "URI: %s"
-msgstr ""
-
-#: printer/main.pm:689 printer/printerdrake.pm:1047 printer/printerdrake.pm:3142
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: printer/main.pm:1309 printer/printerdrake.pm:211 printer/printerdrake.pm:223
-#, c-format
-msgid "Local network(s)"
-msgstr ""
-
-#: printer/main.pm:1311 printer/printerdrake.pm:227
-#, c-format
-msgid "Interface \"%s\""
-msgstr ""
-
-#: printer/main.pm:1313
-#, c-format
-msgid "Network %s"
-msgstr ""
-
-#: printer/main.pm:1315
-#, c-format
-msgid "Host %s"
-msgstr ""
-
-#: printer/main.pm:1344
-#, c-format
-msgid "%s (Port %s)"
-msgstr ""
-
-#: printer/main.pm:1945 printer/main.pm:2100
-#, c-format
-msgid "user-supplied"
-msgstr ""
-
-#: printer/main.pm:1949 printer/main.pm:2104
-#, c-format
-msgid "NEW"
-msgstr ""
-
-#: printer/printerdrake.pm:24
-#, c-format
-msgid ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned on. Download the Windows driver package from the HP web site (the firmware on the printer's CD does not work) and extract the firmware file from it by decompressing the self-extracting '.exe' file with the 'unzip' utility and searching for the 'sihp1000.img' file. Copy this file into the '/etc/printer' directory. There it will be found by the automatic uploader script and uploaded whenever the printer is connected and turned on.\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:67
-#, c-format
-msgid "CUPS printer configuration"
-msgstr ""
-
-#: printer/printerdrake.pm:68
-#, c-format
-msgid "Here you can choose whether the printers connected to this machine should be accessible by remote machines and by which remote machines."
-msgstr ""
-
-#: printer/printerdrake.pm:69
-#, c-format
-msgid "You can also decide here whether printers on remote machines should be automatically made available on this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:72 printer/printerdrake.pm:506 printer/printerdrake.pm:4542
-#, c-format
-msgid "Remote CUPS server and no local CUPS daemon"
-msgstr ""
-
-#: printer/printerdrake.pm:75
-#, c-format
-msgid "On"
-msgstr ""
-
-#: printer/printerdrake.pm:77 printer/printerdrake.pm:498 printer/printerdrake.pm:525
-#, c-format
-msgid "Off"
-msgstr ""
-
-#: printer/printerdrake.pm:78 printer/printerdrake.pm:507
-#, c-format
-msgid "In this mode the local CUPS daemon will be stopped and all printing requests go directly to the server specified below. Note that it is not possible to define local print queues then and if the specified server is down it cannot be printed at all from this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:84
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr ""
-
-#: printer/printerdrake.pm:89
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr ""
-
-#: printer/printerdrake.pm:94
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr ""
-
-#: printer/printerdrake.pm:96
-#, c-format
-msgid "Custom configuration"
-msgstr ""
-
-#: printer/printerdrake.pm:101 standalone/scannerdrake:610 standalone/scannerdrake:627
-#, c-format
-msgid "No remote machines"
-msgstr ""
-
-#: printer/printerdrake.pm:112
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr ""
-
-#: printer/printerdrake.pm:119
-#, c-format
-msgid "To get access to printers on remote CUPS servers in your local network you only need to turn on the \"Automatically find available printers on remote machines\" option; the CUPS servers inform your machine automatically about their printers. All printers currently known to your machine are listed in the \"Remote printers\" section in the main window of Printerdrake. If your CUPS server(s) is/are not in your local network, you have to enter the IP address(es) and optionally the port number(s) here to get the printer information from the server(s)."
-msgstr ""
-
-#: printer/printerdrake.pm:127
-#, c-format
-msgid "Japanese text printing mode"
-msgstr ""
-
-#: printer/printerdrake.pm:128
-#, c-format
-msgid "Turning on this allows to print plain text files in Japanese language. Only use this function if you really want to print text in Japanese, if it is activated you cannot print accentuated characters in latin fonts any more and you will not be able to adjust the margins, the character size, etc. This setting only affects printers defined on this machine. If you want to print Japanese text on a printer set up on a remote machine, you have to activate this function on that remote machine."
-msgstr ""
-
-#: printer/printerdrake.pm:135
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr ""
-
-#: printer/printerdrake.pm:137
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, but then you have to take care of these points."
-msgstr ""
-
-#: printer/printerdrake.pm:161 printer/printerdrake.pm:236
-#, c-format
-msgid "Sharing of local printers"
-msgstr ""
-
-#: printer/printerdrake.pm:162
-#, c-format
-msgid "These are the machines and networks on which the locally connected printer(s) should be available:"
-msgstr ""
-
-#: printer/printerdrake.pm:173
-#, c-format
-msgid "Add host/network"
-msgstr ""
-
-#: printer/printerdrake.pm:179
-#, c-format
-msgid "Edit selected host/network"
-msgstr ""
-
-#: printer/printerdrake.pm:188
-#, c-format
-msgid "Remove selected host/network"
-msgstr ""
-
-#: printer/printerdrake.pm:219 printer/printerdrake.pm:229 printer/printerdrake.pm:241 printer/printerdrake.pm:248 printer/printerdrake.pm:279 printer/printerdrake.pm:297
-#, c-format
-msgid "IP address of host/network:"
-msgstr ""
-
-#: printer/printerdrake.pm:237
-#, c-format
-msgid "Choose the network or host on which the local printers should be made available:"
-msgstr ""
-
-#: printer/printerdrake.pm:244
-#, c-format
-msgid "Host/network IP address missing."
-msgstr ""
-
-#: printer/printerdrake.pm:252
-#, c-format
-msgid ""
-"The entered host/network IP is not correct.\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:253 printer/printerdrake.pm:429
-#, c-format
-msgid ""
-"Examples for correct IPs:\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:277
-#, c-format
-msgid ""
-"This host/network is already in the list, it cannot be added again.\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:346 printer/printerdrake.pm:416
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr ""
-
-#: printer/printerdrake.pm:347
-#, c-format
-msgid "Add here the CUPS servers whose printers you want to use. You only need to do this if the servers do not broadcast their printer information into the local network."
-msgstr ""
-
-#: printer/printerdrake.pm:358
-#, c-format
-msgid "Add server"
-msgstr ""
-
-#: printer/printerdrake.pm:364
-#, c-format
-msgid "Edit selected server"
-msgstr ""
-
-#: printer/printerdrake.pm:373
-#, c-format
-msgid "Remove selected server"
-msgstr ""
-
-#: printer/printerdrake.pm:417
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-
-#: printer/printerdrake.pm:418
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr ""
-
-#: printer/printerdrake.pm:422
-#, c-format
-msgid "Server IP missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:428
-#, c-format
-msgid ""
-"The entered IP is not correct.\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:440 printer/printerdrake.pm:2133
-#, c-format
-msgid "The port number should be an integer!"
-msgstr ""
-
-#: printer/printerdrake.pm:451
-#, c-format
-msgid ""
-"This server is already in the list, it cannot be added again.\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:462 printer/printerdrake.pm:2160 standalone/drakups:249 standalone/harddrake2:52
-#, c-format
-msgid "Port"
-msgstr ""
-
-#: printer/printerdrake.pm:495 printer/printerdrake.pm:511 printer/printerdrake.pm:526 printer/printerdrake.pm:530 printer/printerdrake.pm:536
-#, c-format
-msgid "On, Name or IP of remote server:"
-msgstr ""
-
-#: printer/printerdrake.pm:514 printer/printerdrake.pm:4551 printer/printerdrake.pm:4617
-#, c-format
-msgid "CUPS server name or IP address missing."
-msgstr ""
-
-#: printer/printerdrake.pm:566 printer/printerdrake.pm:586 printer/printerdrake.pm:811 printer/printerdrake.pm:880 printer/printerdrake.pm:901 printer/printerdrake.pm:927 printer/printerdrake.pm:1023 printer/printerdrake.pm:1065 printer/printerdrake.pm:1075 printer/printerdrake.pm:1110 printer/printerdrake.pm:2220 printer/printerdrake.pm:2490 printer/printerdrake.pm:2524 printer/printerdrake.pm:2575 printer/printerdrake.pm:2582 printer/printerdrake.pm:2621 printer/printerdrake.pm:2663 printer/printerdrake.pm:2700 printer/printerdrake.pm:2711 printer/printerdrake.pm:2984 printer/printerdrake.pm:2989 printer/printerdrake.pm:3137 printer/printerdrake.pm:3248 printer/printerdrake.pm:3862 printer/printerdrake.pm:3929 printer/printerdrake.pm:3978 printer/printerdrake.pm:3981 printer/printerdrake.pm:4091 printer/printerdrake.pm:4149 printer/printerdrake.pm:4221 printer/printerdrake.pm:4242 printer/printerdrake.pm:4252 printer/printerdrake.pm:4342 printer/printerdrake.pm:4437 printer/printerdrake.pm:4443 printer/printerdrake.pm:4471 printer/printerdrake.pm:4578 printer/printerdrake.pm:4687 printer/printerdrake.pm:4707 printer/printerdrake.pm:4716 printer/printerdrake.pm:4731 printer/printerdrake.pm:4932 printer/printerdrake.pm:5407 printer/printerdrake.pm:5490 standalone/printerdrake:75 standalone/printerdrake:590
-#, c-format
-msgid "Printerdrake"
-msgstr ""
-
-#: printer/printerdrake.pm:567 printer/printerdrake.pm:4150 printer/printerdrake.pm:4688
-#, c-format
-msgid "Reading printer data..."
-msgstr ""
-
-#: printer/printerdrake.pm:587
-#, c-format
-msgid "Restarting CUPS..."
-msgstr ""
-
-#: printer/printerdrake.pm:614
-#, c-format
-msgid "Allow pop-up windows, printer setup and package installation may be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:616
-#, c-format
-msgid "No pop-up windows, printer setup and package installation cannot be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:622
-#, c-format
-msgid "Printer auto administration"
-msgstr ""
-
-#: printer/printerdrake.pm:623
-#, c-format
-msgid "Here you can configure printer administration tasks which should be done automatically."
-msgstr ""
-
-#: printer/printerdrake.pm:626
-#, c-format
-msgid "Do automatic configuration of new printers"
-msgstr ""
-
-#: printer/printerdrake.pm:627 printer/printerdrake.pm:641
-#, c-format
-msgid "when a USB printer is connected and turned on"
-msgstr ""
-
-#: printer/printerdrake.pm:630
-#, c-format
-msgid "when Printerdrake is started"
-msgstr ""
-
-#: printer/printerdrake.pm:634
-#, c-format
-msgid "Mode for automatic printer setup:"
-msgstr ""
-
-#: printer/printerdrake.pm:640
-#, c-format
-msgid "Re-enable disabled printers"
-msgstr ""
-
-#: printer/printerdrake.pm:644
-#, c-format
-msgid "when the printing system is started"
-msgstr ""
-
-#: printer/printerdrake.pm:680
-#, c-format
-msgid "Communication error handling for the printer \"%s\""
-msgstr ""
-
-#: printer/printerdrake.pm:682
-#, c-format
-msgid "Here you can configure how errors during the communication between your computer and the printer \"%s\" should be handled (for example if the printer is not turned on)."
-msgstr ""
-
-#: printer/printerdrake.pm:686
-#, c-format
-msgid "The number of retries should be an integer number of at least 1!"
-msgstr ""
-
-#: printer/printerdrake.pm:690
-#, c-format
-msgid "The delay between retries should be a positive integer number!"
-msgstr ""
-
-#: printer/printerdrake.pm:701
-#, c-format
-msgid "Do not disable the printer"
-msgstr ""
-
-#: printer/printerdrake.pm:704
-#, c-format
-msgid "Retry infinitely often"
-msgstr ""
-
-#: printer/printerdrake.pm:707
-#, c-format
-msgid "Number of retries"
-msgstr ""
-
-#: printer/printerdrake.pm:712
-#, c-format
-msgid "Delay between retries (in sec)"
-msgstr ""
-
-#: printer/printerdrake.pm:745 printer/printerdrake.pm:765
-#, c-format
-msgid "Select Printer Connection"
-msgstr ""
-
-#: printer/printerdrake.pm:746
-#, c-format
-msgid "How is the printer connected?"
-msgstr ""
-
-#: printer/printerdrake.pm:748
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these printers will be automatically detected."
-msgstr ""
-
-#: printer/printerdrake.pm:751 printer/printerdrake.pm:4934
-#, c-format
-msgid ""
-"\n"
-"WARNING: No local network connection active, remote printers can neither be detected nor tested!"
-msgstr ""
-
-#: printer/printerdrake.pm:758
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"
-msgstr ""
-
-#: printer/printerdrake.pm:760
-#, c-format
-msgid "Modify timeout for network printer auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:766
-#, c-format
-msgid "Enter the timeout for network printer auto-detection (in msec) here. "
-msgstr ""
-
-#: printer/printerdrake.pm:768
-#, c-format
-msgid "The longer you choose the timeout, the more reliable the detections of network printers will be, but the scan can take longer then, especially if there are many machines with local firewalls in the network. "
-msgstr ""
-
-#: printer/printerdrake.pm:772
-#, c-format
-msgid "The timeout must be a positive integer number!"
-msgstr ""
-
-#: printer/printerdrake.pm:811
-#, c-format
-msgid "Checking your system..."
-msgstr ""
-
-#: printer/printerdrake.pm:829
-#, c-format
-msgid "and one unknown printer"
-msgstr ""
-
-#: printer/printerdrake.pm:831
-#, c-format
-msgid "and %d unknown printers"
-msgstr ""
-
-#: printer/printerdrake.pm:835
-#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-
-#: printer/printerdrake.pm:837
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-
-#: printer/printerdrake.pm:838
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-
-#: printer/printerdrake.pm:842
-#, c-format
-msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
-
-#: printer/printerdrake.pm:843
-#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
-
-#: printer/printerdrake.pm:846
-#, c-format
-msgid "There are no printers found which are directly connected to your machine"
-msgstr ""
-
-#: printer/printerdrake.pm:849
-#, c-format
-msgid ""
-" (Make sure that all your printers are connected and turned on).\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:862
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on printers in the local network?\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:863
-#, c-format
-msgid ""
-"Do you want to enable printing on printers in the local network?\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:865
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above?\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:866
-#, c-format
-msgid ""
-"Are you sure that you want to set up printing on this machine?\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:867
-#, c-format
-msgid "NOTE: Depending on the printer model and the printing system up to %d MB of additional software will be installed."
-msgstr ""
-
-#: printer/printerdrake.pm:884
-#, c-format
-msgid "Do not setup printer automatically now, and never do it again"
-msgstr ""
-
-#: printer/printerdrake.pm:928
-#, c-format
-msgid "Searching for new printers..."
-msgstr ""
-
-#: printer/printerdrake.pm:976
-#, c-format
-msgid "Do not setup printer automatically again"
-msgstr ""
-
-#: printer/printerdrake.pm:983
-#, c-format
-msgid "New printers found"
-msgstr ""
-
-#: printer/printerdrake.pm:984
-#, c-format
-msgid "New printer found"
-msgstr ""
-
-#: printer/printerdrake.pm:986
-#, c-format
-msgid ""
-"The following new printers were found and Printerdrake can automatically set them up for you. If you do not want to have all of them set up, unselect the ones which should be skipped, or click \"Cancel\" to set up none of them.\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:987
-#, c-format
-msgid ""
-"The following new printer was found and printerdrake can automatically set it up for you. If you do not want to have it set up, unselect it, or click \"Cancel\".\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:988
-#, c-format
-msgid ""
-"Note that for certain printer models additional packages need to be installed. So keep your installation media handy.\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:1024 printer/printerdrake.pm:1066
-#, c-format
-msgid "Configuring printer on %s..."
-msgstr ""
-
-#: printer/printerdrake.pm:1049
-#, c-format
-msgid "("
-msgstr ""
-
-#: printer/printerdrake.pm:1050
-#, c-format
-msgid " on "
-msgstr ""
-
-#: printer/printerdrake.pm:1051 standalone/scannerdrake:137
-#, c-format
-msgid ")"
-msgstr ""
-
-#: printer/printerdrake.pm:1056 printer/printerdrake.pm:3149
-#, c-format
-msgid "Printer model selection"
-msgstr ""
-
-#: printer/printerdrake.pm:1057 printer/printerdrake.pm:3150
-#, c-format
-msgid "Which printer model do you have?"
-msgstr ""
-
-#: printer/printerdrake.pm:1058
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please choose the correct model from the list."
-msgstr ""
-
-#: printer/printerdrake.pm:1061 printer/printerdrake.pm:3155
-#, c-format
-msgid "If your printer is not listed, choose a compatible (see printer manual) or a similar one."
-msgstr ""
-
-#: printer/printerdrake.pm:1076 printer/printerdrake.pm:4708
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr ""
-
-#: printer/printerdrake.pm:1111
-#, c-format
-msgid ""
-"Now you have turned off automatic printer setup.\n"
-"\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:1112
-#, c-format
-msgid "You can turn it back on again by choosing \"%s\" -> \"%s\" in Printerdrake's main menu. "
-msgstr ""
-
-#: printer/printerdrake.pm:1112 printer/printerdrake.pm:4984
-#, c-format
-msgid "Configure Auto Administration"
-msgstr ""
-
-#: printer/printerdrake.pm:1113
-#, c-format
-msgid "There you can also choose in which situation automatic printer setup is done (On Printerdrake startup, on printing system startup, when connecting a new USB printer)."
-msgstr ""
-
-#: printer/printerdrake.pm:1261 printer/printerdrake.pm:1273 printer/printerdrake.pm:1380 printer/printerdrake.pm:2401 printer/printerdrake.pm:2460 printer/printerdrake.pm:2556 printer/printerdrake.pm:4951 printer/printerdrake.pm:5138
-#, c-format
-msgid "Add a new printer"
-msgstr ""
-
-#: printer/printerdrake.pm:1262
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives you access to all available printer drivers, driver options, and printer connection types."
-msgstr ""
-
-#: printer/printerdrake.pm:1275
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this computer, connected directly to the network or to a remote Windows machine.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/they can be auto-detected. Also your network printer(s) and your Windows machines must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-detection of only the printers connected to this machine. So turn off the auto-detection of network and/or Windows-hosted printers when you do not need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1284
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this computer.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1292
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on this computer and turn it/them on so that it/they can be auto-detected. Also your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-detection of only the printers connected to this machine. So turn off the auto-detection of network printers when you do not need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1301
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1352
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr ""
-
-#: printer/printerdrake.pm:1355
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr ""
-
-#: printer/printerdrake.pm:1358
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
-
-#: printer/printerdrake.pm:1361
-#, c-format
-msgid "No auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:1381
-#, c-format
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change the default option settings (paper input tray, printout quality, ...), select \"Printer\" in the \"Hardware\" section of the %s Control Center."
-msgstr ""
-
-#: printer/printerdrake.pm:1417 printer/printerdrake.pm:1641 printer/printerdrake.pm:1704 printer/printerdrake.pm:1796 printer/printerdrake.pm:1934 printer/printerdrake.pm:2010 printer/printerdrake.pm:2177 printer/printerdrake.pm:2268 printer/printerdrake.pm:2277 printer/printerdrake.pm:2286 printer/printerdrake.pm:2297 printer/printerdrake.pm:2496 printer/printerdrake.pm:2633
-#, c-format
-msgid "Could not install the %s packages!"
-msgstr ""
-
-#: printer/printerdrake.pm:1419
-#, c-format
-msgid "Skipping Windows/SMB server auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:1425 printer/printerdrake.pm:1564 printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Printer auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:1425
-#, c-format
-msgid "Detecting devices..."
-msgstr ""
-
-#: printer/printerdrake.pm:1451
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ""
-
-#: printer/printerdrake.pm:1454
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ""
-
-#: printer/printerdrake.pm:1458
-#, c-format
-msgid "Detected %s"
-msgstr ""
-
-#: printer/printerdrake.pm:1463 printer/printerdrake.pm:1490 printer/printerdrake.pm:1505
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr ""
-
-#: printer/printerdrake.pm:1469
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr ""
-
-#: printer/printerdrake.pm:1472
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ""
-
-#: printer/printerdrake.pm:1550
-#, c-format
-msgid "Local Printer"
-msgstr ""
-
-#: printer/printerdrake.pm:1551
-#, c-format
-msgid "No local printer found! To manually install a printer enter a device name/file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: printer/printerdrake.pm:1555
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr ""
-
-#: printer/printerdrake.pm:1565
-#, c-format
-msgid "No printer found!"
-msgstr ""
-
-#: printer/printerdrake.pm:1573
-#, c-format
-msgid "Local Printers"
-msgstr ""
-
-#: printer/printerdrake.pm:1574
-#, c-format
-msgid "Available printers"
-msgstr ""
-
-#: printer/printerdrake.pm:1578 printer/printerdrake.pm:1587
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr ""
-
-#: printer/printerdrake.pm:1580
-#, c-format
-msgid "If it is not the one you want to configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1581
-#, c-format
-msgid "Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1582 printer/printerdrake.pm:1591
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr ""
-
-#: printer/printerdrake.pm:1584
-#, c-format
-msgid "Please choose the printer you want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1585
-#, c-format
-msgid "Please choose the printer to which the print jobs should go or enter a device name/file name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1589
-#, c-format
-msgid "The configuration of the printer will work fully automatically. If your printer was not correctly detected or if you prefer a customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: printer/printerdrake.pm:1590
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr ""
-
-#: printer/printerdrake.pm:1593
-#, c-format
-msgid "Please choose the printer you want to set up. The configuration of the printer will work fully automatically. If your printer was not correctly detected or if you prefer a customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: printer/printerdrake.pm:1594
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr ""
-
-#: printer/printerdrake.pm:1596
-#, c-format
-msgid "Please choose the port that your printer is connected to or enter a device name/file name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1597
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr ""
-
-#: printer/printerdrake.pm:1599
-#, c-format
-msgid " (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: printer/printerdrake.pm:1603
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr ""
-
-#: printer/printerdrake.pm:1643 printer/printerdrake.pm:1706 printer/printerdrake.pm:1798 printer/printerdrake.pm:1936 printer/printerdrake.pm:2012 printer/printerdrake.pm:2179 printer/printerdrake.pm:2270 printer/printerdrake.pm:2279 printer/printerdrake.pm:2288 printer/printerdrake.pm:2299
-#, c-format
-msgid "Aborting"
-msgstr ""
-
-#: printer/printerdrake.pm:1679
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr ""
-
-#: printer/printerdrake.pm:1680
-#, c-format
-msgid "To use a remote lpd printer, you need to supply the hostname of the printer server and the printer name on that server."
-msgstr ""
-
-#: printer/printerdrake.pm:1681
-#, c-format
-msgid "Remote host name"
-msgstr ""
-
-#: printer/printerdrake.pm:1682
-#, c-format
-msgid "Remote printer name"
-msgstr ""
-
-#: printer/printerdrake.pm:1685
-#, c-format
-msgid "Remote host name missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:1689
-#, c-format
-msgid "Remote printer name missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195 printer/printerdrake.pm:2318 standalone/drakTermServ:475 standalone/drakTermServ:807 standalone/drakTermServ:823 standalone/drakTermServ:1653 standalone/drakTermServ:1662 standalone/drakTermServ:1676 standalone/drakbackup:512 standalone/drakbackup:618 standalone/drakbackup:653 standalone/drakbackup:754 standalone/draknfs:203 standalone/draksambashare:627 standalone/draksambashare:794 standalone/harddrake2:275
-#, c-format
-msgid "Information"
-msgstr ""
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195 printer/printerdrake.pm:2318
-#, c-format
-msgid "Detected model: %s %s"
-msgstr ""
-
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Scanning network..."
-msgstr ""
-
-#: printer/printerdrake.pm:1814 printer/printerdrake.pm:1835
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ""
-
-#: printer/printerdrake.pm:1817 printer/printerdrake.pm:1838
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr ""
-
-#: printer/printerdrake.pm:1859
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr ""
-
-#: printer/printerdrake.pm:1860
-#, c-format
-msgid "To print to a SMB printer, you need to provide the SMB host name (Note! It may be different from its TCP/IP hostname!) and possibly the IP address of the print server, as well as the share name for the printer you wish to access and any applicable user name, password, and workgroup information."
-msgstr ""
-
-#: printer/printerdrake.pm:1861
-#, c-format
-msgid " If the desired printer was auto-detected, simply choose it from the list and then add user name, password, and/or workgroup if needed."
-msgstr ""
-
-#: printer/printerdrake.pm:1863
-#, c-format
-msgid "SMB server host"
-msgstr ""
-
-#: printer/printerdrake.pm:1864
-#, c-format
-msgid "SMB server IP"
-msgstr ""
-
-#: printer/printerdrake.pm:1865 standalone/draksambashare:67
-#, c-format
-msgid "Share name"
-msgstr ""
-
-#: printer/printerdrake.pm:1868
-#, c-format
-msgid "Workgroup"
-msgstr ""
-
-#: printer/printerdrake.pm:1870
-#, c-format
-msgid "Auto-detected"
-msgstr ""
-
-#: printer/printerdrake.pm:1880
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: printer/printerdrake.pm:1884
-#, c-format
-msgid "Samba share name missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:1890
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: printer/printerdrake.pm:1891
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to a fault in the architecture of the Samba client software the password is put in clear text into the command line of the Samba client used to transmit the print job to the Windows server. So it is possible for every user on this machine to display the password on the screen by issuing commands as \"ps auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases you have to make sure that only machines from your local network have access to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account or a special account dedicated for printing. Do not remove the password protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD protocol. Then set up printing from this machine with the \"%s\" connection type in Printerdrake.\n"
-"\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:1901
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP protocol and set up printing from this machine with the \"%s\" connection type in Printerdrake.\n"
-"\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:1904
-#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: printer/printerdrake.pm:1983
-#, c-format
-msgid "NetWare Printer Options"
-msgstr ""
-
-#: printer/printerdrake.pm:1984
-#, c-format
-msgid "To print on a NetWare printer, you need to provide the NetWare print server name (Note! it may be different from its TCP/IP hostname!) as well as the print queue name for the printer you wish to access and any applicable user name and password."
-msgstr ""
-
-#: printer/printerdrake.pm:1985
-#, c-format
-msgid "Printer Server"
-msgstr ""
-
-#: printer/printerdrake.pm:1986
-#, c-format
-msgid "Print Queue Name"
-msgstr ""
-
-#: printer/printerdrake.pm:1991
-#, c-format
-msgid "NCP server name missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:1995
-#, c-format
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:2076 printer/printerdrake.pm:2097
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ""
-
-#: printer/printerdrake.pm:2079 printer/printerdrake.pm:2100
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr ""
-
-#: printer/printerdrake.pm:2122
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr ""
-
-#: printer/printerdrake.pm:2124
-#, c-format
-msgid "Choose one of the auto-detected printers from the list or enter the hostname or IP and the optional port number (default is 9100) in the input fields."
-msgstr ""
-
-#: printer/printerdrake.pm:2125
-#, c-format
-msgid "To print to a TCP or socket printer, you need to provide the host name or IP of the printer and optionally the port number (default is 9100). On HP JetDirect servers the port number is usually 9100, on other servers it can vary. See the manual of your hardware."
-msgstr ""
-
-#: printer/printerdrake.pm:2129
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:2158
-#, c-format
-msgid "Printer host name or IP"
-msgstr ""
-
-#: printer/printerdrake.pm:2221
-#, c-format
-msgid "Refreshing Device URI list..."
-msgstr ""
-
-#: printer/printerdrake.pm:2224 printer/printerdrake.pm:2226
-#, c-format
-msgid "Printer Device URI"
-msgstr ""
-
-#: printer/printerdrake.pm:2225
-#, c-format
-msgid "You can specify directly the URI to access the printer. The URI must fulfill either the CUPS or the Foomatic specifications. Note that not all URI types are supported by all the spoolers."
-msgstr ""
-
-#: printer/printerdrake.pm:2249
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: printer/printerdrake.pm:2354
-#, c-format
-msgid "Pipe into command"
-msgstr ""
-
-#: printer/printerdrake.pm:2355
-#, c-format
-msgid "Here you can specify any arbitrary command line into which the job should be piped instead of being sent directly to a printer."
-msgstr ""
-
-#: printer/printerdrake.pm:2356
-#, c-format
-msgid "Command line"
-msgstr ""
-
-#: printer/printerdrake.pm:2360
-#, c-format
-msgid "A command line must be entered!"
-msgstr ""
-
-#: printer/printerdrake.pm:2402
-#, c-format
-msgid "Your printer %s is currently connected %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2404 printer/printerdrake.pm:2411
-#, c-format
-msgid "to a parallel port"
-msgstr ""
-
-#: printer/printerdrake.pm:2405 printer/printerdrake.pm:2412
-#, c-format
-msgid "to the USB"
-msgstr ""
-
-#: printer/printerdrake.pm:2406 printer/printerdrake.pm:2413
-#, c-format
-msgid "via the network"
-msgstr ""
-
-#: printer/printerdrake.pm:2407
-#, c-format
-msgid "This type of connection is currently not fully supported by HPLIP."
-msgstr ""
-
-#: printer/printerdrake.pm:2409
-#, c-format
-msgid "You get full HPLIP support for your device if you connect it "
-msgstr ""
-
-#: printer/printerdrake.pm:2415
-#, c-format
-msgid "You can now set up your device with HPLIP anyway (works in many cases), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "set it up without HPLIP (print-only), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "or"
-msgstr ""
-
-#: printer/printerdrake.pm:2417
-#, c-format
-msgid "cancel the setup (for example to reconnect your device)."
-msgstr ""
-
-#: printer/printerdrake.pm:2419
-#, c-format
-msgid "You can always revise your choice by clicking your printer's entry in the main window, "
-msgstr ""
-
-#: printer/printerdrake.pm:2420
-#, c-format
-msgid "clicking the \"%s\" button, "
-msgstr ""
-
-#. -PO: "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: printer/printerdrake.pm:2420 standalone/drakperm:124 standalone/drakups:300 standalone/drakups:360 standalone/drakups:380 standalone/drakvpn:319 standalone/drakvpn:680 standalone/printerdrake:245
-#, c-format
-msgid "Edit"
-msgstr ""
-
-#: printer/printerdrake.pm:2421
-#, c-format
-msgid "and choosing \"%s\"."
-msgstr ""
-
-#: printer/printerdrake.pm:2421 printer/printerdrake.pm:5334 printer/printerdrake.pm:5394
-#, c-format
-msgid "Printer connection type"
-msgstr ""
-
-#: printer/printerdrake.pm:2423 standalone/logdrake:408
-#, c-format
-msgid "What do you want to do?"
-msgstr ""
-
-#: printer/printerdrake.pm:2424 printer/printerdrake.pm:2428
-#, c-format
-msgid "Set up with HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2425 printer/printerdrake.pm:2427 printer/printerdrake.pm:2430
-#, c-format
-msgid "Set up without HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2461
-#, c-format
-msgid "On many HP printers there are special functions available, maintenance (ink level checking, nozzle cleaning. head alignment, ...) on all not too old inkjets, scanning on multi-function devices, and memory card access on printers with card readers. "
-msgstr ""
-
-#: printer/printerdrake.pm:2463
-#, c-format
-msgid "To access these extra functions on HP printers they must be set up with HPLIP (HP Linux Imaging and Printing). "
-msgstr ""
-
-#: printer/printerdrake.pm:2465
-#, c-format
-msgid "Do you want to use HPLIP (choose \"No\" for non-HP printers)? "
-msgstr ""
-
-#: printer/printerdrake.pm:2491
-#, c-format
-msgid "Installing %s package..."
-msgstr ""
-
-#: printer/printerdrake.pm:2491 printer/printerdrake.pm:2497 printer/printerdrake.pm:2525
-#, c-format
-msgid "HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2498
-#, c-format
-msgid "Only printing will be possible on the %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2513
-#, c-format
-msgid "Could not remove your old HPOJ configuration file %s for your %s! "
-msgstr ""
-
-#: printer/printerdrake.pm:2515
-#, c-format
-msgid "Please remove the file manually and restart HPOJ."
-msgstr ""
-
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "Checking device and configuring %s..."
-msgstr ""
-
-#: printer/printerdrake.pm:2557
-#, c-format
-msgid "Which printer do you want to set up with HPLIP?"
-msgstr ""
-
-#: printer/printerdrake.pm:2576
-#, c-format
-msgid "HPLIP was not able to communicate with the chosen printer!"
-msgstr ""
-
-#: printer/printerdrake.pm:2577 printer/printerdrake.pm:2584
-#, c-format
-msgid "Setting up the printer without HPLIP..."
-msgstr ""
-
-#: printer/printerdrake.pm:2583
-#, c-format
-msgid "HPLIP did not find any local printers (Parallel, USB) which it supports!"
-msgstr ""
-
-#: printer/printerdrake.pm:2622
-#, c-format
-msgid "Installing SANE packages..."
-msgstr ""
-
-#: printer/printerdrake.pm:2635
-#, c-format
-msgid "Scanning on the %s will not be possible."
-msgstr ""
-
-#: printer/printerdrake.pm:2650
-#, c-format
-msgid "Using and Maintaining your %s"
-msgstr ""
-
-#: printer/printerdrake.pm:2664
-#, c-format
-msgid "Configuring device..."
-msgstr ""
-
-#: printer/printerdrake.pm:2701
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr ""
-
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2985 printer/printerdrake.pm:3138
-#, c-format
-msgid "Reading printer database..."
-msgstr ""
-
-#: printer/printerdrake.pm:2943
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr ""
-
-#: printer/printerdrake.pm:2947 printer/printerdrake.pm:4206
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-
-#: printer/printerdrake.pm:2953 printer/printerdrake.pm:4211
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: printer/printerdrake.pm:2960
-#, c-format
-msgid "The printer name \"%s\" has more than 12 characters which can make the printer unaccessible from Windows clients. Do you really want to use this name?"
-msgstr ""
-
-#: printer/printerdrake.pm:2969
-#, c-format
-msgid "Every printer needs a name (for example \"printer\"). The Description and Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: printer/printerdrake.pm:2970
-#, c-format
-msgid "Name of printer"
-msgstr ""
-
-#: printer/printerdrake.pm:2971 standalone/drakconnect:592 standalone/harddrake2:39 standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Description"
-msgstr ""
-
-#: printer/printerdrake.pm:2972 standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Location"
-msgstr ""
-
-#: printer/printerdrake.pm:2990
-#, c-format
-msgid "Preparing printer database..."
-msgstr ""
-
-#: printer/printerdrake.pm:3116
-#, c-format
-msgid "Your printer model"
-msgstr ""
-
-#: printer/printerdrake.pm:3117
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-detection with the models listed in its printer database to find the best match. This choice can be wrong, especially when your printer is not listed at all in the database. So check whether the choice is correct and click \"The model is correct\" if so and if not, click \"Select model manually\" so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: printer/printerdrake.pm:3122 printer/printerdrake.pm:3125
-#, c-format
-msgid "The model is correct"
-msgstr ""
-
-#: printer/printerdrake.pm:3123 printer/printerdrake.pm:3124 printer/printerdrake.pm:3127
-#, c-format
-msgid "Select model manually"
-msgstr ""
-
-#: printer/printerdrake.pm:3151
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer model correctly. Find the correct model in the list when a wrong model or \"Raw printer\" is highlighted."
-msgstr ""
-
-#: printer/printerdrake.pm:3170
-#, c-format
-msgid "Install a manufacturer-supplied PPD file"
-msgstr ""
-
-#: printer/printerdrake.pm:3202
-#, c-format
-msgid "Every PostScript printer is delivered with a PPD file which describes the printer's options and features."
-msgstr ""
-
-#: printer/printerdrake.pm:3203
-#, c-format
-msgid "This file is usually somewhere on the CD with the Windows and Mac drivers delivered with the printer."
-msgstr ""
-
-#: printer/printerdrake.pm:3204
-#, c-format
-msgid "You can find the PPD files also on the manufacturer's web sites."
-msgstr ""
-
-#: printer/printerdrake.pm:3205
-#, c-format
-msgid "If you have Windows installed on your machine, you can find the PPD file on your Windows partition, too."
-msgstr ""
-
-#: printer/printerdrake.pm:3206
-#, c-format
-msgid "Installing the printer's PPD file and using it when setting up the printer makes all options of the printer available which are provided by the printer's hardware"
-msgstr ""
-
-#: printer/printerdrake.pm:3207
-#, c-format
-msgid "Here you can choose the PPD file to be installed on your machine, it will then be used for the setup of your printer."
-msgstr ""
-
-#: printer/printerdrake.pm:3209
-#, c-format
-msgid "Install PPD file from"
-msgstr ""
-
-#: printer/printerdrake.pm:3212 printer/printerdrake.pm:3220 standalone/scannerdrake:183 standalone/scannerdrake:192 standalone/scannerdrake:242 standalone/scannerdrake:250
-#, c-format
-msgid "Floppy Disk"
-msgstr ""
-
-#: printer/printerdrake.pm:3213 printer/printerdrake.pm:3222 standalone/scannerdrake:184 standalone/scannerdrake:194 standalone/scannerdrake:243 standalone/scannerdrake:252
-#, c-format
-msgid "Other place"
-msgstr ""
-
-#: printer/printerdrake.pm:3228
-#, c-format
-msgid "Select PPD file"
-msgstr ""
-
-#: printer/printerdrake.pm:3232
-#, c-format
-msgid "The PPD file %s does not exist or is unreadable!"
-msgstr ""
-
-#: printer/printerdrake.pm:3238
-#, c-format
-msgid "The PPD file %s does not conform with the PPD specifications!"
-msgstr ""
-
-#: printer/printerdrake.pm:3249
-#, c-format
-msgid "Installing PPD file..."
-msgstr ""
-
-#: printer/printerdrake.pm:3368
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr ""
-
-#: printer/printerdrake.pm:3369
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when connected to the first parallel port. When your printer is connected to another port or to a print server box please connect the printer to the first parallel port before you print a test page. Otherwise the printer will not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: printer/printerdrake.pm:3394 printer/printerdrake.pm:3424
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr ""
-
-#: printer/printerdrake.pm:3395
-#, c-format
-msgid "The inkjet printer drivers provided by Lexmark only support local printers, no printers on remote machines or print server boxes. Please connect your printer to a local port or configure it on the machine where it is connected to."
-msgstr ""
-
-#: printer/printerdrake.pm:3425
-#, c-format
-msgid "To be able to print with your Lexmark inkjet and this configuration, you need the inkjet printer drivers provided by Lexmark (http://www.lexmark.com/). Click on the \"Drivers\" link. Then choose your model and afterwards \"Linux\" as operating system. The drivers come as RPM packages or shell scripts with interactive graphical installation. You do not need to do this configuration by the graphical frontends. Cancel directly after the license agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and adjust the head alignment settings with this program."
-msgstr ""
-
-#: printer/printerdrake.pm:3435
-#, c-format
-msgid "Lexmark X125 configuration"
-msgstr ""
-
-#: printer/printerdrake.pm:3436
-#, c-format
-msgid "The driver for this printer only supports printers locally connected via USB, no printers on remote machines or print server boxes. Please connect your printer to a local USB port or configure it on the machine where it is connected to."
-msgstr ""
-
-#: printer/printerdrake.pm:3458
-#, c-format
-msgid "Samsung ML/QL-85G configuration"
-msgstr ""
-
-#: printer/printerdrake.pm:3459 printer/printerdrake.pm:3486
-#, c-format
-msgid "The driver for this printer only supports printers locally connected on the first parallel port, no printers on remote machines or print server boxes or on other parallel ports. Please connect your printer to the first parallel port or configure it on the machine where it is connected to."
-msgstr ""
-
-#: printer/printerdrake.pm:3485
-#, c-format
-msgid "Canon LBP-460/660 configuration"
-msgstr ""
-
-#: printer/printerdrake.pm:3512
-#, c-format
-msgid "Canon LBP-810/1120 (CAPT) configuration"
-msgstr ""
-
-#: printer/printerdrake.pm:3513
-#, c-format
-msgid "The driver for this printer only supports printers locally connected via USB, no printers on remote machines or print server boxes or on the parallel port. Please connect your printer to the USB or configure it on the machine where it is directly connected to."
-msgstr ""
-
-#: printer/printerdrake.pm:3520
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr ""
-
-#: printer/printerdrake.pm:3670
-#, c-format
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if available) and also the hardware configuration of laser printers (memory, duplex unit, extra trays) are set correctly. Note that with a very high printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: printer/printerdrake.pm:3795
-#, c-format
-msgid "Printer default settings"
-msgstr ""
-
-#: printer/printerdrake.pm:3802
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: printer/printerdrake.pm:3806
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: printer/printerdrake.pm:3810
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: printer/printerdrake.pm:3862
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-
-#: printer/printerdrake.pm:3878
-#, c-format
-msgid "Test pages"
-msgstr ""
-
-#: printer/printerdrake.pm:3879
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on laser printers with too low memory it can even not come out. In most cases it is enough to print the standard test page."
-msgstr ""
-
-#: printer/printerdrake.pm:3883
-#, c-format
-msgid "No test pages"
-msgstr ""
-
-#: printer/printerdrake.pm:3884
-#, c-format
-msgid "Print"
-msgstr ""
-
-#: printer/printerdrake.pm:3909
-#, c-format
-msgid "Standard test page"
-msgstr ""
-
-#: printer/printerdrake.pm:3912
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: printer/printerdrake.pm:3915
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr ""
-
-#: printer/printerdrake.pm:3917
-#, c-format
-msgid "Photo test page"
-msgstr ""
-
-#: printer/printerdrake.pm:3930
-#, c-format
-msgid "Printing test page(s)..."
-msgstr ""
-
-#: printer/printerdrake.pm:3950
-#, c-format
-msgid "Skipping photo test page."
-msgstr ""
-
-#: printer/printerdrake.pm:3967
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:3971
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:3981
-#, c-format
-msgid "Did it work properly?"
-msgstr ""
-
-#: printer/printerdrake.pm:4005
-#, c-format
-msgid "Raw printer"
-msgstr ""
-
-#: printer/printerdrake.pm:4027
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or \"kprinter <file>\". The graphical tools allow you to choose the printer and to modify the option settings easily.\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4029
-#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the printing dialogs of many applications, but here do not supply the file name because the file to print is provided by the application.\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4032 printer/printerdrake.pm:4049 printer/printerdrake.pm:4059
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a particular printing job. Simply add the desired settings to the command line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: printer/printerdrake.pm:4035 printer/printerdrake.pm:4075
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4039
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4044 printer/printerdrake.pm:4054
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s <file>\".\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4046 printer/printerdrake.pm:4056 printer/printerdrake.pm:4066
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the printing dialogs of many applications. But here do not supply the file name because the file to print is provided by the application.\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4051 printer/printerdrake.pm:4061
-#, c-format
-msgid "To get a list of the options available for the current printer click on the \"Print option list\" button."
-msgstr ""
-
-#: printer/printerdrake.pm:4064
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s <file>\" or \"%s <file>\".\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4068
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an icon on the desktop, labeled with \"STOP Printer!\", which stops all print jobs immediately when you click it. This is for example useful for paper jams.\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4072
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for a particular printing job. Simply add the desired settings to the command line, e. g. \"%s <file>\".\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4081
-#, c-format
-msgid "Using/Maintaining the printer \"%s\""
-msgstr ""
-
-#: printer/printerdrake.pm:4082
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr ""
-
-#: printer/printerdrake.pm:4088
-#, c-format
-msgid "Print option list"
-msgstr ""
-
-#: printer/printerdrake.pm:4092
-#, c-format
-msgid "Printing option list..."
-msgstr ""
-
-#: printer/printerdrake.pm:4110
-#, c-format
-msgid ""
-"Your %s is set up with HP's HPLIP driver software. This way many special features of your printer are supported.\n"
-"\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4113
-#, c-format
-msgid "The scanner in your printer can be used with the usual SANE software, for example Kooka or XSane (Both in the Multimedia/Graphics menu). "
-msgstr ""
-
-#: printer/printerdrake.pm:4114
-#, c-format
-msgid ""
-"Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to share your scanner on the network.\n"
-"\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4118
-#, c-format
-msgid "The memory card readers in your printer can be accessed like a usual USB mass storage device. "
-msgstr ""
-
-#: printer/printerdrake.pm:4119
-#, c-format
-msgid ""
-"After inserting a card a hard disk icon to access the card should appear on your desktop.\n"
-"\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4121
-#, c-format
-msgid "The memory card readers in your printer can be accessed using HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) clicking the \"Access Photo Cards...\" button on the \"Functions\" tab. "
-msgstr ""
-
-#: printer/printerdrake.pm:4122
-#, c-format
-msgid ""
-"Note that this is very slow, reading the pictures from the camera or a USB card reader is usually faster.\n"
-"\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4125
-#, c-format
-msgid ""
-"HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a lot of status monitoring and maintenance functions for your %s:\n"
-"\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4126
-#, c-format
-msgid ""
-" - Ink level/status info\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4127
-#, c-format
-msgid ""
-" - Ink nozzle cleaning\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4128
-#, c-format
-msgid ""
-" - Print head alignment\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4129
-#, c-format
-msgid ""
-" - Color calibration\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4170 printer/printerdrake.pm:4197 printer/printerdrake.pm:4232
-#, c-format
-msgid "Transfer printer configuration"
-msgstr ""
-
-#: printer/printerdrake.pm:4171
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %s to %s, your current spooler. All the configuration data (printer name, description, location, connection type, and default option settings) is overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4174
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the data into a free-formed command.\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4176
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP printers.\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4178
-#, c-format
-msgid ""
-"LPD and LPRng do not support IPP printers.\n"
-""
-msgstr ""
-
-#: printer/printerdrake.pm:4180
-#, c-format
-msgid "In addition, queues not created with this program or \"foomatic-configure\" cannot be transferred."
-msgstr ""
-
-#: printer/printerdrake.pm:4181
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: printer/printerdrake.pm:4182
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: printer/printerdrake.pm:4185
-#, c-format
-msgid "Do not transfer printers"
-msgstr ""
-
-#: printer/printerdrake.pm:4186 printer/printerdrake.pm:4202
-#, c-format
-msgid "Transfer"
-msgstr ""
-
-#: printer/printerdrake.pm:4198
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: printer/printerdrake.pm:4219
-#, c-format
-msgid "New printer name"
-msgstr ""
-
-#: printer/printerdrake.pm:4222
-#, c-format
-msgid "Transferring %s..."
-msgstr ""
-
-#: printer/printerdrake.pm:4233
-#, c-format
-msgid "You have transferred your former default printer (\"%s\"), Should it be also the default printer under the new printing system %s?"
-msgstr ""
-
-#: printer/printerdrake.pm:4243
-#, c-format
-msgid "Refreshing printer data..."
-msgstr ""
-
-#: printer/printerdrake.pm:4253
-#, c-format
-msgid "Starting network..."
-msgstr ""
-
-#: printer/printerdrake.pm:4296 printer/printerdrake.pm:4300 printer/printerdrake.pm:4302
-#, c-format
-msgid "Configure the network now"
-msgstr ""
-
-#: printer/printerdrake.pm:4297
-#, c-format
-msgid "Network functionality not configured"
-msgstr ""
-
-#: printer/printerdrake.pm:4298
-#, c-format
-msgid "You are going to configure a remote printer. This needs working network access, but your network is not configured yet. If you go on without network configuration, you will not be able to use the printer which you are configuring now. How do you want to proceed?"
-msgstr ""
-
-#: printer/printerdrake.pm:4301
-#, c-format
-msgid "Go on without configuring the network"
-msgstr ""
-
-#: printer/printerdrake.pm:4332
-#, c-format
-msgid "The network configuration done during the installation cannot be started now. Please check whether the network is accessible after booting your system and correct the configuration using the %s Control Center, section \"Network & Internet\"/\"Connection\", and afterwards set up the printer, also using the %s Control Center, section \"Hardware\"/\"Printer\""
-msgstr ""
-
-#: printer/printerdrake.pm:4333
-#, c-format
-msgid "The network access was not running and could not be started. Please check your configuration and your hardware. Then try to configure your remote printer again."
-msgstr ""
-
-#: printer/printerdrake.pm:4343
-#, c-format
-msgid "Restarting printing system..."
-msgstr ""
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "high"
-msgstr ""
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "paranoid"
-msgstr ""
-
-#: printer/printerdrake.pm:4376
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: printer/printerdrake.pm:4377
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for print jobs and handles them. This daemon is also accessible by remote machines through the network and so it is a possible point for attacks. Therefore only a few selected daemons are started by default in this security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: printer/printerdrake.pm:4413
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr ""
-
-#: printer/printerdrake.pm:4414
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a higher security level, because the printing system is a potential point for attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on again?"
-msgstr ""
-
-#: printer/printerdrake.pm:4437
-#, c-format
-msgid "Checking installed software..."
-msgstr ""
-
-#: printer/printerdrake.pm:4443
-#, c-format
-msgid "Removing %s..."
-msgstr ""
-
-#: printer/printerdrake.pm:4447
-#, c-format
-msgid "Could not remove the %s printing system!"
-msgstr ""
-
-#: printer/printerdrake.pm:4471
-#, c-format
-msgid "Installing %s..."
-msgstr ""
-
-#: printer/printerdrake.pm:4475
-#, c-format
-msgid "Could not install the %s printing system!"
-msgstr ""
-
-#: printer/printerdrake.pm:4543
-#, c-format
-msgid "In this mode there is no local printing system, all printing requests go directly to the server specified below. Note that it is not possible to define local print queues then and if the specified server is down it cannot be printed at all from this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:4545
-#, c-format
-msgid "Enter the host name or IP of your CUPS server and click OK if you want to use this mode, click \"Quit\" otherwise."
-msgstr ""
-
-#: printer/printerdrake.pm:4559
-#, c-format
-msgid "Name or IP of remote server:"
-msgstr ""
-
-#: printer/printerdrake.pm:4579
-#, c-format
-msgid "Setting Default Printer..."
-msgstr ""
-
-#: printer/printerdrake.pm:4599
-#, c-format
-msgid "Local CUPS printing system or remote CUPS server?"
-msgstr ""
-
-#: printer/printerdrake.pm:4600
-#, c-format
-msgid "The CUPS printing system can be used in two ways: "
-msgstr ""
-
-#: printer/printerdrake.pm:4602
-#, c-format
-msgid "1. The CUPS printing system can run locally. "
-msgstr ""
-
-#: printer/printerdrake.pm:4603
-#, c-format
-msgid "Then locally connected printers can be used and remote printers on other CUPS servers in the same network are automatically discovered. "
-msgstr ""
-
-#: printer/printerdrake.pm:4604
-#, c-format
-msgid "Disadvantage of this approach is, that more resources on the local machine are needed: Additional software packages need to be installed, the CUPS daemon has to run in the background and needs some memory, and the IPP port (port 631) is opened. "
-msgstr ""
-
-#: printer/printerdrake.pm:4606
-#, c-format
-msgid "2. All printing requests are immediately sent to a remote CUPS server. "
-msgstr ""
-
-#: printer/printerdrake.pm:4607
-#, c-format
-msgid "Here local resource occupation is reduced to a minimum. No CUPS daemon is started or port opened, no software infrastructure for setting up local print queues is installed, so less memory and disk space is used. "
-msgstr ""
-
-#: printer/printerdrake.pm:4608
-#, c-format
-msgid "Disadvantage is that it is not possible to define local printers then and if the specified server is down it cannot be printed at all from this machine. "
-msgstr ""
-
-#: printer/printerdrake.pm:4610
-#, c-format
-msgid "How should CUPS be set up on your machine?"
-msgstr ""
-
-#: printer/printerdrake.pm:4614 printer/printerdrake.pm:4629 printer/printerdrake.pm:4633 printer/printerdrake.pm:4639
-#, c-format
-msgid "Remote server, specify Name or IP here:"
-msgstr ""
-
-#: printer/printerdrake.pm:4628
-#, c-format
-msgid "Local CUPS printing system"
-msgstr ""
-
-#: printer/printerdrake.pm:4667
-#, c-format
-msgid "Select Printer Spooler"
-msgstr ""
-
-#: printer/printerdrake.pm:4668
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr ""
-
-#: printer/printerdrake.pm:4717
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr ""
-
-#: printer/printerdrake.pm:4732
-#, c-format
-msgid "Installing Foomatic..."
-msgstr ""
-
-#: printer/printerdrake.pm:4738
-#, c-format
-msgid "Could not install %s packages, %s cannot be started!"
-msgstr ""
-
-#: printer/printerdrake.pm:4933
-#, c-format
-msgid "The following printers are configured. Double-click on a printer to change its settings; to make it the default printer; or to view information about it. "
-msgstr ""
-
-#: printer/printerdrake.pm:4963
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr ""
-
-#: printer/printerdrake.pm:4964
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: printer/printerdrake.pm:4975
-#, c-format
-msgid "CUPS configuration"
-msgstr ""
-
-#: printer/printerdrake.pm:4996
-#, c-format
-msgid "Change the printing system"
-msgstr ""
-
-#: printer/printerdrake.pm:5005
-#, c-format
-msgid "Normal Mode"
-msgstr ""
-
-#: printer/printerdrake.pm:5006
-#, c-format
-msgid "Expert Mode"
-msgstr ""
-
-#: printer/printerdrake.pm:5284 printer/printerdrake.pm:5340 printer/printerdrake.pm:5426 printer/printerdrake.pm:5435
-#, c-format
-msgid "Printer options"
-msgstr ""
-
-#: printer/printerdrake.pm:5320
-#, c-format
-msgid "Modify printer configuration"
-msgstr ""
-
-#: printer/printerdrake.pm:5322
-#, c-format
-msgid ""
-"Printer %s%s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-
-#: printer/printerdrake.pm:5327
-#, c-format
-msgid "This printer is disabled"
-msgstr ""
-
-#: printer/printerdrake.pm:5329
-#, c-format
-msgid "Do it!"
-msgstr ""
-
-#: printer/printerdrake.pm:5335 printer/printerdrake.pm:5400
-#, c-format
-msgid "Printer name, description, location"
-msgstr ""
-
-#: printer/printerdrake.pm:5337 printer/printerdrake.pm:5419
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: printer/printerdrake.pm:5338 printer/printerdrake.pm:5420
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: printer/printerdrake.pm:5342 printer/printerdrake.pm:5430
-#, c-format
-msgid "Set this printer as the default"
-msgstr ""
-
-#: printer/printerdrake.pm:5347 printer/printerdrake.pm:5436 printer/printerdrake.pm:5438 printer/printerdrake.pm:5447
-#, c-format
-msgid "Enable Printer"
-msgstr ""
-
-#: printer/printerdrake.pm:5350 printer/printerdrake.pm:5441 printer/printerdrake.pm:5442 printer/printerdrake.pm:5444
-#, c-format
-msgid "Disable Printer"
-msgstr ""
-
-#: printer/printerdrake.pm:5354 printer/printerdrake.pm:5448
-#, c-format
-msgid "Printer communication error handling"
-msgstr ""
-
-#: printer/printerdrake.pm:5355 printer/printerdrake.pm:5452
-#, c-format
-msgid "Print test pages"
-msgstr ""
-
-#: printer/printerdrake.pm:5356 printer/printerdrake.pm:5454
-#, c-format
-msgid "Learn how to use this printer"
-msgstr ""
-
-#: printer/printerdrake.pm:5357 printer/printerdrake.pm:5456
-#, c-format
-msgid "Remove printer"
-msgstr ""
-
-#: printer/printerdrake.pm:5408
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr ""
-
-#: printer/printerdrake.pm:5439
-#, c-format
-msgid "Printer \"%s\" is now enabled."
-msgstr ""
-
-#: printer/printerdrake.pm:5445
-#, c-format
-msgid "Printer \"%s\" is now disabled."
-msgstr ""
-
-#: printer/printerdrake.pm:5487
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr ""
-
-#: printer/printerdrake.pm:5491
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr ""
-
-#: printer/printerdrake.pm:5515
-#, c-format
-msgid "Default printer"
-msgstr ""
-
-#: printer/printerdrake.pm:5516
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: raid.pm:42
-#, c-format
-msgid "Can not add a partition to _formatted_ RAID %s"
-msgstr ""
-
-#: raid.pm:148
-#, c-format
-msgid ""
-"Not enough partitions for RAID level %d\n"
-""
-msgstr ""
-
-#: scanner.pm:96
-#, c-format
-msgid "Could not create directory /usr/share/sane/firmware!"
-msgstr ""
-
-#: scanner.pm:107
-#, c-format
-msgid "Could not create link /usr/share/sane/%s!"
-msgstr ""
-
-#: scanner.pm:114
-#, c-format
-msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
-msgstr ""
-
-#: scanner.pm:121
-#, c-format
-msgid "Could not set permissions of firmware file %s!"
-msgstr ""
-
-#: scanner.pm:200 standalone/scannerdrake:66 standalone/scannerdrake:70 standalone/scannerdrake:78 standalone/scannerdrake:321 standalone/scannerdrake:370 standalone/scannerdrake:463 standalone/scannerdrake:507 standalone/scannerdrake:511 standalone/scannerdrake:533 standalone/scannerdrake:598
-#, c-format
-msgid "Scannerdrake"
-msgstr ""
-
-#: scanner.pm:201 standalone/scannerdrake:964
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
-msgstr ""
-
-#: scanner.pm:202
-#, c-format
-msgid "Your scanner(s) will not be available for non-root users."
-msgstr ""
-
-#: security/help.pm:11
-#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
-msgstr ""
-
-#: security/help.pm:13
-#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr ""
-
-#: security/help.pm:15
-#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr ""
-
-#: security/help.pm:17
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr ""
-
-#. -PO: here "ALL" is a value in a pull-down menu; translate it the same as "ALL" is
-#: security/help.pm:21
-#, c-format
-msgid ""
-"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
-"\n"
-"If set to NONE, no issues are allowed.\n"
-"\n"
-"Else only /etc/issue is allowed."
-msgstr ""
-
-#: security/help.pm:27
-#, c-format
-msgid "Allow/Forbid reboot by the console user."
-msgstr ""
-
-#: security/help.pm:29
-#, c-format
-msgid "Allow/Forbid remote root login."
-msgstr ""
-
-#: security/help.pm:31
-#, c-format
-msgid "Allow/Forbid direct root login."
-msgstr ""
-
-#: security/help.pm:33
-#, c-format
-msgid "Allow/Forbid the list of users on the system on display managers (kdm and gdm)."
-msgstr ""
-
-#: security/help.pm:35
-#, c-format
-msgid ""
-"Allow/forbid to export display when\n"
-"passing from the root account to the other users.\n"
-"\n"
-"See pam_xauth(8) for more details.'"
-msgstr ""
-
-#: security/help.pm:40
-#, c-format
-msgid ""
-"Allow/Forbid X connections:\n"
-"\n"
-"- ALL (all connections are allowed),\n"
-"\n"
-"- LOCAL (only connection from local machine),\n"
-"\n"
-"- NONE (no connection)."
-msgstr ""
-
-#: security/help.pm:48
-#, c-format
-msgid ""
-"The argument specifies if clients are authorized to connect\n"
-"to the X server from the network on the tcp port 6000 or not."
-msgstr ""
-
-#. -PO: here "ALL", "LOCAL" and "NONE" are values in a pull-down menu; translate them the same as they're
-#: security/help.pm:53
-#, c-format
-msgid ""
-"Authorize:\n"
-"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if set to \"ALL\",\n"
-"\n"
-"- only local ones if set to \"LOCAL\"\n"
-"\n"
-"- none if set to \"NONE\".\n"
-"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow(5))."
-msgstr ""
-
-#: security/help.pm:63
-#, c-format
-msgid ""
-"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
-"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
-"symlink /etc/security/msec/server to point to\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
-"add a service if it is present in the file during the installation of\n"
-"packages."
-msgstr ""
-
-#: security/help.pm:72
-#, c-format
-msgid ""
-"Enable/Disable crontab and at for users.\n"
-"\n"
-"Put allowed users in /etc/cron.allow and /etc/at.allow (see man at(1)\n"
-"and crontab(1))."
-msgstr ""
-
-#: security/help.pm:77
-#, c-format
-msgid "Enable/Disable syslog reports to console 12"
-msgstr ""
-
-#: security/help.pm:79
-#, c-format
-msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"%s\" is true, also reports to syslog."
-msgstr ""
-
-#: security/help.pm:80 standalone/draksec:215
-#, c-format
-msgid "Security Alerts:"
-msgstr ""
-
-#: security/help.pm:82
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr ""
-
-#: security/help.pm:84
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
-msgstr ""
-
-#: security/help.pm:86
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
-msgstr ""
-
-#: security/help.pm:88
-#, c-format
-msgid "Enable/Disable msec hourly security check."
-msgstr ""
-
-#: security/help.pm:90
-#, c-format
-msgid " Enabling su only from members of the wheel group or allow su from any user."
-msgstr ""
-
-#: security/help.pm:92
-#, c-format
-msgid "Use password to authenticate users."
-msgstr ""
-
-#: security/help.pm:94
-#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
-msgstr ""
-
-#: security/help.pm:96
-#, c-format
-msgid " Activate/Disable daily security check."
-msgstr ""
-
-#: security/help.pm:98
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr ""
-
-#: security/help.pm:100
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
-msgstr ""
-
-#: security/help.pm:102
-#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
-msgstr ""
-
-#: security/help.pm:104
-#, c-format
-msgid "Set the password history length to prevent password reuse."
-msgstr ""
-
-#: security/help.pm:106
-#, c-format
-msgid "Set the password minimum length and minimum number of digit and minimum number of capitalized letters."
-msgstr ""
-
-#: security/help.pm:108
-#, c-format
-msgid "Set the root umask."
-msgstr ""
-
-#: security/help.pm:109
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr ""
-
-#: security/help.pm:110
-#, c-format
-msgid ""
-"if set to yes, check for:\n"
-"\n"
-"- empty passwords,\n"
-"\n"
-"- no password in /etc/shadow\n"
-"\n"
-"- for users with the 0 id other than root."
-msgstr ""
-
-#: security/help.pm:117
-#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
-msgstr ""
-
-#: security/help.pm:118
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
-msgstr ""
-
-#: security/help.pm:119
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr ""
-
-#: security/help.pm:120
-#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
-msgstr ""
-
-#: security/help.pm:121
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr ""
-
-#: security/help.pm:122
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr ""
-
-#: security/help.pm:123
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr ""
-
-#: security/help.pm:124
-#, c-format
-msgid "if set to yes, report unowned files."
-msgstr ""
-
-#: security/help.pm:125
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
-msgstr ""
-
-#: security/help.pm:126
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
-msgstr ""
-
-#: security/help.pm:127
-#, c-format
-msgid "if set, send the mail report to this email address else send it to root."
-msgstr ""
-
-#: security/help.pm:128
-#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr ""
-
-#: security/help.pm:129
-#, c-format
-msgid "Do not send mails if there's nothing to warn about"
-msgstr ""
-
-#: security/help.pm:130
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
-msgstr ""
-
-#: security/help.pm:131
-#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr ""
-
-#: security/help.pm:132
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr ""
-
-#: security/help.pm:134
-#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
-msgstr ""
-
-#: security/help.pm:136
-#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
-msgstr ""
-
-#: security/help.pm:136
-#, c-format
-msgid "Timeout unit is second"
-msgstr ""
-
-#: security/help.pm:138
-#, c-format
-msgid "Set the user umask."
-msgstr ""
-
-#: security/l10n.pm:11
-#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr ""
-
-#: security/l10n.pm:12
-#, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr ""
-
-#: security/l10n.pm:13
-#, c-format
-msgid "Accept icmp echo"
-msgstr ""
-
-#: security/l10n.pm:15
-#, c-format
-msgid "/etc/issue* exist"
-msgstr ""
-
-#: security/l10n.pm:16
-#, c-format
-msgid "Reboot by the console user"
-msgstr ""
-
-#: security/l10n.pm:17
-#, c-format
-msgid "Allow remote root login"
-msgstr ""
-
-#: security/l10n.pm:18
-#, c-format
-msgid "Direct root login"
-msgstr ""
-
-#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr ""
-
-#: security/l10n.pm:20
-#, c-format
-msgid "Export display when passing from root to the other users"
-msgstr ""
-
-#: security/l10n.pm:21
-#, c-format
-msgid "Allow X Window connections"
-msgstr ""
-
-#: security/l10n.pm:22
-#, c-format
-msgid "Authorize TCP connections to X Window"
-msgstr ""
-
-#: security/l10n.pm:23
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
-msgstr ""
-
-#: security/l10n.pm:24
-#, c-format
-msgid "Chkconfig obey msec rules"
-msgstr ""
-
-#: security/l10n.pm:25
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
-msgstr ""
-
-#: security/l10n.pm:26
-#, c-format
-msgid "Syslog reports to console 12"
-msgstr ""
-
-#: security/l10n.pm:27
-#, c-format
-msgid "Name resolution spoofing protection"
-msgstr ""
-
-#: security/l10n.pm:28
-#, c-format
-msgid "Enable IP spoofing protection"
-msgstr ""
-
-#: security/l10n.pm:29
-#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
-msgstr ""
-
-#: security/l10n.pm:30
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
-msgstr ""
-
-#: security/l10n.pm:31
-#, c-format
-msgid "Enable msec hourly security check"
-msgstr ""
-
-#: security/l10n.pm:32
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr ""
-
-#: security/l10n.pm:33
-#, c-format
-msgid "Use password to authenticate users"
-msgstr ""
-
-#: security/l10n.pm:34
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr ""
-
-#: security/l10n.pm:35
-#, c-format
-msgid "Daily security check"
-msgstr ""
-
-#: security/l10n.pm:36
-#, c-format
-msgid "Sulogin(8) in single user level"
-msgstr ""
-
-#: security/l10n.pm:37
-#, c-format
-msgid "No password aging for"
-msgstr ""
-
-#: security/l10n.pm:38
-#, c-format
-msgid "Set password expiration and account inactivation delays"
-msgstr ""
-
-#: security/l10n.pm:39
-#, c-format
-msgid "Password history length"
-msgstr ""
-
-#: security/l10n.pm:40
-#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
-msgstr ""
-
-#: security/l10n.pm:41
-#, c-format
-msgid "Root umask"
-msgstr ""
-
-#: security/l10n.pm:42
-#, c-format
-msgid "Shell history size"
-msgstr ""
-
-#: security/l10n.pm:43
-#, c-format
-msgid "Shell timeout"
-msgstr ""
-
-#: security/l10n.pm:44
-#, c-format
-msgid "User umask"
-msgstr ""
-
-#: security/l10n.pm:45
-#, c-format
-msgid "Check open ports"
-msgstr ""
-
-#: security/l10n.pm:46
-#, c-format
-msgid "Check for unsecured accounts"
-msgstr ""
-
-#: security/l10n.pm:47
-#, c-format
-msgid "Check permissions of files in the users' home"
-msgstr ""
-
-#: security/l10n.pm:48
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
-msgstr ""
-
-#: security/l10n.pm:49
-#, c-format
-msgid "Run the daily security checks"
-msgstr ""
-
-#: security/l10n.pm:50
-#, c-format
-msgid "Check additions/removals of sgid files"
-msgstr ""
-
-#: security/l10n.pm:51
-#, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr ""
-
-#: security/l10n.pm:52
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
-msgstr ""
-
-#: security/l10n.pm:53
-#, c-format
-msgid "Check additions/removals of suid root files"
-msgstr ""
-
-#: security/l10n.pm:54
-#, c-format
-msgid "Report unowned files"
-msgstr ""
-
-#: security/l10n.pm:55
-#, c-format
-msgid "Check files/directories writable by everybody"
-msgstr ""
-
-#: security/l10n.pm:56
-#, c-format
-msgid "Run chkrootkit checks"
-msgstr ""
-
-#: security/l10n.pm:57
-#, c-format
-msgid "Do not send mails when unneeded"
-msgstr ""
-
-#: security/l10n.pm:58
-#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
-msgstr ""
-
-#: security/l10n.pm:59
-#, c-format
-msgid "Report check result by mail"
-msgstr ""
-
-#: security/l10n.pm:60
-#, c-format
-msgid "Run some checks against the rpm database"
-msgstr ""
-
-#: security/l10n.pm:61
-#, c-format
-msgid "Report check result to syslog"
-msgstr ""
-
-#: security/l10n.pm:62
-#, c-format
-msgid "Reports check result to tty"
-msgstr ""
-
-#: security/level.pm:10
-#, c-format
-msgid "Welcome To Crackers"
-msgstr ""
-
-#: security/level.pm:11
-#, c-format
-msgid "Poor"
-msgstr ""
-
-#: security/level.pm:13
-#, c-format
-msgid "High"
-msgstr ""
-
-#: security/level.pm:14
-#, c-format
-msgid "Higher"
-msgstr ""
-
-#: security/level.pm:15
-#, c-format
-msgid "Paranoid"
-msgstr ""
-
-#: security/level.pm:41
-#, c-format
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive. It must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-
-#: security/level.pm:44
-#, c-format
-msgid "Passwords are now enabled, but use as a networked computer is still not recommended."
-msgstr ""
-
-#: security/level.pm:45
-#, c-format
-msgid "This is the standard security recommended for a computer that will be used to connect to the Internet as a client."
-msgstr ""
-
-#: security/level.pm:46
-#, c-format
-msgid "There are already some restrictions, and more automatic checks are run every night."
-msgstr ""
-
-#: security/level.pm:47
-#, c-format
-msgid ""
-"With this security level, the use of this system as a server becomes possible.\n"
-"The security is now high enough to use the system as a server which can accept\n"
-"connections from many clients. Note: if your machine is only a client on the Internet, you should choose a lower level."
-msgstr ""
-
-#: security/level.pm:50
-#, c-format
-msgid "This is similar to the previous level, but the system is entirely closed and security features are at their maximum."
-msgstr ""
-
-#: security/level.pm:55
-#, c-format
-msgid "DrakSec Basic Options"
-msgstr ""
-
-#: security/level.pm:57
-#, c-format
-msgid "Please choose the desired security level"
-msgstr ""
-
-#: security/level.pm:61
-#, c-format
-msgid "Security level"
-msgstr ""
-
-#: security/level.pm:63
-#, c-format
-msgid "Use libsafe for servers"
-msgstr ""
-
-#: security/level.pm:64
-#, c-format
-msgid "A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-#: security/level.pm:65
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr ""
-
-#: services.pm:19
-#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
-
-#: services.pm:20
-#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr ""
-
-#: services.pm:21
-#, c-format
-msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
-msgstr ""
-
-#: services.pm:23
-#, c-format
-msgid ""
-"Runs commands scheduled by the at command at the time specified when\n"
-"at was run, and runs batch commands when the load average is low enough."
-msgstr ""
-
-#: services.pm:25
-#, c-format
-msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-
-#: services.pm:28
-#, c-format
-msgid ""
-"FAM is a file monitoring daemon. It is used to get reports when files change.\n"
-"It is used by GNOME and KDE"
-msgstr ""
-
-#: services.pm:30
-#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste operations,\n"
-"and includes support for pop-up menus on the console."
-msgstr ""
-
-#: services.pm:33
-#, c-format
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-
-#: services.pm:35
-#, c-format
-msgid "Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-
-#: services.pm:36
-#, c-format
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd disables\n"
-"all of the services it is responsible for."
-msgstr ""
-
-#: services.pm:40
-#, c-format
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-
-#: services.pm:42
-#, c-format
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-
-#: services.pm:45
-#, c-format
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-
-#: services.pm:47
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-
-#: services.pm:48
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-
-#: services.pm:50
-#, c-format
-msgid ""
-"lpd is the print daemon required for lpr to work properly. It is\n"
-"basically a server that arbitrates print jobs to printer(s)."
-msgstr ""
-
-#: services.pm:52
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-
-#: services.pm:54
-#, c-format
-msgid "named (BIND) is a Domain Name Server (DNS) that is used to resolve host names to IP addresses."
-msgstr ""
-
-#: services.pm:55
-#, c-format
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-
-#: services.pm:57
-#, c-format
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-
-#: services.pm:59
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
-"This service provides NFS server functionality, which is configured via the\n"
-"/etc/exports file."
-msgstr ""
-
-#: services.pm:62
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-
-#: services.pm:64
-#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and Xorg at boot."
-msgstr ""
-
-#: services.pm:66
-#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr ""
-
-#: services.pm:67
-#, c-format
-msgid ""
-"PCMCIA support is usually to support things like ethernet and\n"
-"modems in laptops. It will not get started unless configured so it is safe to have\n"
-"it installed on machines that do not need it."
-msgstr ""
-
-#: services.pm:70
-#, c-format
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-
-#: services.pm:73
-#, c-format
-msgid "Postfix is a Mail Transport Agent, which is the program that moves mail from one machine to another."
-msgstr ""
-
-#: services.pm:74
-#, c-format
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-
-#: services.pm:76
-#, c-format
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
-msgstr ""
-
-#: services.pm:78
-#, c-format
-msgid ""
-"The routed daemon allows for automatic IP router table updated via\n"
-"the RIP protocol. While RIP is widely used on small networks, more complex\n"
-"routing protocols are needed for complex networks."
-msgstr ""
-
-#: services.pm:81
-#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-
-#: services.pm:83
-#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-
-#: services.pm:85
-#, c-format
-msgid ""
-"The rwho protocol lets remote users get a list of all of the users\n"
-"logged into a machine running the rwho daemon (similar to finger)."
-msgstr ""
-
-#: services.pm:87
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr ""
-
-#: services.pm:88
-#, c-format
-msgid ""
-"Syslog is the facility by which many daemons use to log messages\n"
-"to various system log files. It is a good idea to always run syslog."
-msgstr ""
-
-#: services.pm:90
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr ""
-
-#: services.pm:91
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for Xorg to run)."
-msgstr ""
-
-#: services.pm:115 services.pm:157
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-
-#: services.pm:127 standalone/draksambashare:111
-#, c-format
-msgid "Printing"
-msgstr ""
-
-#: services.pm:128
-#, c-format
-msgid "Internet"
-msgstr ""
-
-#: services.pm:131
-#, c-format
-msgid "File sharing"
-msgstr ""
-
-#: services.pm:138
-#, c-format
-msgid "Remote Administration"
-msgstr ""
-
-#: services.pm:146
-#, c-format
-msgid "Database Server"
-msgstr ""
-
-#: services.pm:209
-#, c-format
-msgid "running"
-msgstr ""
-
-#: services.pm:209
-#, c-format
-msgid "stopped"
-msgstr ""
-
-#: services.pm:213
-#, c-format
-msgid "Services and daemons"
-msgstr ""
-
-#: services.pm:219
-#, c-format
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-
-#: services.pm:224 ugtk2.pm:1009
-#, c-format
-msgid "Info"
-msgstr ""
-
-#: services.pm:227
-#, c-format
-msgid "Start when requested"
-msgstr ""
-
-#: services.pm:227
-#, c-format
-msgid "On boot"
-msgstr ""
-
-#: services.pm:244
-#, c-format
-msgid "Start"
-msgstr ""
-
-#: services.pm:244
-#, c-format
-msgid "Stop"
-msgstr ""
-
-#: share/advertising/01.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Packs"
-msgstr ""
-
-#: share/advertising/02.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More features"
-msgstr ""
-
-#: share/advertising/03.pl:3
-#, c-format
-msgid "Interactive firewall"
-msgstr ""
-
-#: share/advertising/04.pl:3
-#, c-format
-msgid "Desktop search"
-msgstr ""
-
-#: share/advertising/05.pl:3
-#, c-format
-msgid "New package manager"
-msgstr ""
-
-#: share/advertising/06.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More performances"
-msgstr ""
-
-#: share/advertising/07.pl:3
-#, c-format
-msgid "Latest kernel and GCC"
-msgstr ""
-
-#: share/advertising/08.pl:3
-#, c-format
-msgid "High Availibility"
-msgstr ""
-
-#: share/advertising/09.pl:3
-#, c-format
-msgid "Delta RPM"
-msgstr ""
-
-#: share/advertising/10.pl:3
-#, c-format
-msgid "Low resources setup"
-msgstr ""
-
-#: share/advertising/11.pl:3
-#, c-format
-msgid "Boot time reduction"
-msgstr ""
-
-#: share/advertising/12.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Easier to use"
-msgstr ""
-
-#: share/advertising/13.pl:3
-#, c-format
-msgid "Latest graphical interfaces: KDE and GNOME"
-msgstr ""
-
-#: share/advertising/14.pl:3
-#, c-format
-msgid "auto-installation servers"
-msgstr ""
-
-#: share/advertising/15.pl:3
-#, c-format
-msgid "Easy and quick installation"
-msgstr ""
-
-#: share/advertising/16.pl:3
-#, c-format
-msgid "Easy configuration thanks to 60 wizards"
-msgstr ""
-
-#: share/advertising/17.pl:3
-#, c-format
-msgid "Look and feel improved"
-msgstr ""
-
-#: share/advertising/18.pl:3
-#, c-format
-msgid "New webmin theme"
-msgstr ""
-
-#: share/advertising/19.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More support"
-msgstr ""
-
-#: share/advertising/20.pl:3
-#, c-format
-msgid "Better Hardware support"
-msgstr ""
-
-#: share/advertising/21.pl:3
-#, c-format
-msgid "Xen support"
-msgstr ""
-
-#: share/advertising/22.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More information"
-msgstr ""
-
-#: share/advertising/23.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Where to buy?"
-msgstr ""
-
-#: share/advertising/24.pl:3
-#, c-format
-msgid "Where to find technical assistance?"
-msgstr ""
-
-#: share/advertising/25.pl:3
-#, c-format
-msgid "How to join the Mandriva Linux community?"
-msgstr ""
-
-#: share/advertising/26.pl:3
-#, c-format
-msgid "How to keep your system up-to-date?"
-msgstr ""
-
-#: share/advertising/intel.pl:3
-#, c-format
-msgid "Intel Software"
-msgstr ""
-
-#: share/advertising/skype.pl:3
-#, c-format
-msgid "Skype lets you make calls through the Internet for free."
-msgstr ""
-
-#: share/compssUsers.pl:26
-#, c-format
-msgid "Office Workstation"
-msgstr ""
-
-#: share/compssUsers.pl:28
-#, c-format
-msgid "Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets (OpenOffice.org Calc, Kspread), PDF viewers, etc"
-msgstr ""
-
-#: share/compssUsers.pl:29
-#, c-format
-msgid "Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, gnumeric), pdf viewers, etc"
-msgstr ""
-
-#: share/compssUsers.pl:34
-#, c-format
-msgid "Game station"
-msgstr ""
-
-#: share/compssUsers.pl:35
-#, c-format
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr ""
-
-#: share/compssUsers.pl:38
-#, c-format
-msgid "Multimedia station"
-msgstr ""
-
-#: share/compssUsers.pl:39
-#, c-format
-msgid "Sound and video playing/editing programs"
-msgstr ""
-
-#: share/compssUsers.pl:44
-#, c-format
-msgid "Internet station"
-msgstr ""
-
-#: share/compssUsers.pl:45
-#, c-format
-msgid "Set of tools to read and send mail and news (mutt, tin..) and to browse the Web"
-msgstr ""
-
-#: share/compssUsers.pl:50
-#, c-format
-msgid "Network Computer (client)"
-msgstr ""
-
-#: share/compssUsers.pl:51
-#, c-format
-msgid "Clients for different protocols including ssh"
-msgstr ""
-
-#: share/compssUsers.pl:55
-#, c-format
-msgid "Configuration"
-msgstr ""
-
-#: share/compssUsers.pl:56
-#, c-format
-msgid "Tools to ease the configuration of your computer"
-msgstr ""
-
-#: share/compssUsers.pl:60
-#, c-format
-msgid "Console Tools"
-msgstr ""
-
-#: share/compssUsers.pl:61
-#, c-format
-msgid "Editors, shells, file tools, terminals"
-msgstr ""
-
-#: share/compssUsers.pl:66 share/compssUsers.pl:170
-#, c-format
-msgid "C and C++ development libraries, programs and include files"
-msgstr ""
-
-#: share/compssUsers.pl:70 share/compssUsers.pl:174
-#, c-format
-msgid "Documentation"
-msgstr ""
-
-#: share/compssUsers.pl:71 share/compssUsers.pl:175
-#, c-format
-msgid "Books and Howto's on Linux and Free Software"
-msgstr ""
-
-#: share/compssUsers.pl:75 share/compssUsers.pl:178
-#, c-format
-msgid "LSB"
-msgstr ""
-
-#: share/compssUsers.pl:76 share/compssUsers.pl:179
-#, c-format
-msgid "Linux Standard Base. Third party applications support"
-msgstr ""
-
-#: share/compssUsers.pl:86
-#, c-format
-msgid "Apache"
-msgstr ""
-
-#: share/compssUsers.pl:89
-#, c-format
-msgid "Groupware"
-msgstr ""
-
-#: share/compssUsers.pl:90
-#, c-format
-msgid "Kolab Server"
-msgstr ""
-
-#: share/compssUsers.pl:93 share/compssUsers.pl:134
-#, c-format
-msgid "Firewall/Router"
-msgstr ""
-
-#: share/compssUsers.pl:94 share/compssUsers.pl:135
-#, c-format
-msgid "Internet gateway"
-msgstr ""
-
-#: share/compssUsers.pl:97
-#, c-format
-msgid "Mail/News"
-msgstr ""
-
-#: share/compssUsers.pl:98
-#, c-format
-msgid "Postfix mail server, Inn news server"
-msgstr ""
-
-#: share/compssUsers.pl:101
-#, c-format
-msgid "Directory Server"
-msgstr ""
-
-#: share/compssUsers.pl:105
-#, c-format
-msgid "FTP Server"
-msgstr ""
-
-#: share/compssUsers.pl:106
-#, c-format
-msgid "ProFTPd"
-msgstr ""
-
-#: share/compssUsers.pl:109
-#, c-format
-msgid "DNS/NIS"
-msgstr ""
-
-#: share/compssUsers.pl:110
-#, c-format
-msgid "Domain Name and Network Information Server"
-msgstr ""
-
-#: share/compssUsers.pl:113
-#, c-format
-msgid "File and Printer Sharing Server"
-msgstr ""
-
-#: share/compssUsers.pl:114
-#, c-format
-msgid "NFS Server, Samba server"
-msgstr ""
-
-#: share/compssUsers.pl:117 share/compssUsers.pl:130
-#, c-format
-msgid "Database"
-msgstr ""
-
-#: share/compssUsers.pl:118
-#, c-format
-msgid "PostgreSQL and MySQL Database Server"
-msgstr ""
-
-#: share/compssUsers.pl:122
-#, c-format
-msgid "Web/FTP"
-msgstr ""
-
-#: share/compssUsers.pl:123
-#, c-format
-msgid "Apache, Pro-ftpd"
-msgstr ""
-
-#: share/compssUsers.pl:126
-#, c-format
-msgid "Mail"
-msgstr ""
-
-#: share/compssUsers.pl:127
-#, c-format
-msgid "Postfix mail server"
-msgstr ""
-
-#: share/compssUsers.pl:131
-#, c-format
-msgid "PostgreSQL or MySQL database server"
-msgstr ""
-
-#: share/compssUsers.pl:138
-#, c-format
-msgid "Network Computer server"
-msgstr ""
-
-#: share/compssUsers.pl:139
-#, c-format
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr ""
-
-#: share/compssUsers.pl:147
-#, c-format
-msgid "KDE Workstation"
-msgstr ""
-
-#: share/compssUsers.pl:148
-#, c-format
-msgid "The K Desktop Environment, the basic graphical environment with a collection of accompanying tools"
-msgstr ""
-
-#: share/compssUsers.pl:152
-#, c-format
-msgid "GNOME Workstation"
-msgstr ""
-
-#: share/compssUsers.pl:153
-#, c-format
-msgid "A graphical environment with user-friendly set of applications and desktop tools"
-msgstr ""
-
-#: share/compssUsers.pl:156
-#, c-format
-msgid "IceWm Desktop"
-msgstr ""
-
-#: share/compssUsers.pl:160
-#, c-format
-msgid "Other Graphical Desktops"
-msgstr ""
-
-#: share/compssUsers.pl:161
-#, c-format
-msgid "Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
-
-#: share/compssUsers.pl:184
-#, c-format
-msgid "Utilities"
-msgstr ""
-
-#: share/compssUsers.pl:186 share/compssUsers.pl:187 standalone/logdrake:384
-#, c-format
-msgid "SSH Server"
-msgstr ""
-
-#: share/compssUsers.pl:191
-#, c-format
-msgid "Webmin"
-msgstr ""
-
-#: share/compssUsers.pl:192
-#, c-format
-msgid "Webmin Remote Configuration Server"
-msgstr ""
-
-#: share/compssUsers.pl:196
-#, c-format
-msgid "Network Utilities/Monitoring"
-msgstr ""
-
-#: share/compssUsers.pl:197
-#, c-format
-msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
-msgstr ""
-
-#: share/compssUsers.pl:201
-#, c-format
-msgid "Mandriva Wizards"
-msgstr ""
-
-#: share/compssUsers.pl:202
-#, c-format
-msgid "Wizards to configure server"
-msgstr ""
-
-#: standalone.pm:23
-#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-"it under the terms of the GNU General Public License as published by\n"
-"the Free Software Foundation; either version 2, or (at your option)\n"
-"any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful,\n"
-"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-"GNU General Public License for more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
-""
-msgstr ""
-
-#: standalone.pm:42
-#, c-format
-msgid ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Backup and Restore application\n"
-"\n"
-"--default : save default directories.\n"
-"--debug : show all debug messages.\n"
-"--show-conf : list of files or directories to backup.\n"
-"--config-info : explain configuration file options (for non-X users).\n"
-"--daemon : use daemon configuration. \n"
-"--help : show this message.\n"
-"--version : show version number.\n"
-""
-msgstr ""
-
-#: standalone.pm:54
-#, c-format
-msgid ""
-"[--boot] [--splash]\n"
-"OPTIONS:\n"
-" --boot - enable to configure boot loader\n"
-" --splash - enable to configure boot theme\n"
-"default mode: offer to configure autologin feature"
-msgstr ""
-
-#: standalone.pm:59
-#, c-format
-msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
-"\n"
-"OPTIONS:\n"
-" --help - print this help message.\n"
-" --report - program should be one of Mandriva Linux tools\n"
-" --incident - program should be one of Mandriva Linux tools"
-msgstr ""
-
-#: standalone.pm:65
-#, c-format
-msgid ""
-"[--add]\n"
-" --add - \"add a network interface\" wizard\n"
-" --del - \"delete a network interface\" wizard\n"
-" --skip-wizard - manage connections\n"
-" --internet - configure internet\n"
-" --wizard - like --add"
-msgstr ""
-
-#: standalone.pm:71
-#, c-format
-msgid ""
-"\n"
-"Font Importation and monitoring application\n"
-"\n"
-"OPTIONS:\n"
-"--windows_import : import from all available windows partitions.\n"
-"--xls_fonts : show all fonts that already exist from xls\n"
-"--install : accept any font file and any directory.\n"
-"--uninstall : uninstall any font or any directory of font.\n"
-"--replace : replace all font if already exist\n"
-"--application : 0 none application.\n"
-" : 1 all application available supported.\n"
-" : name_of_application like so for staroffice \n"
-" : and gs for ghostscript for only this one."
-msgstr ""
-
-#: standalone.pm:86
-#, c-format
-msgid ""
-"[OPTIONS]...\n"
-"Mandriva Linux Terminal Server Configurator\n"
-"--enable : enable MTS\n"
-"--disable : disable MTS\n"
-"--start : start MTS\n"
-"--stop : stop MTS\n"
-"--adduser : add an existing system user to MTS (requires username)\n"
-"--deluser : delete an existing system user from MTS (requires username)\n"
-"--addclient : add a client machine to MTS (requires MAC address, IP, nbi image name)\n"
-"--delclient : delete a client machine from MTS (requires MAC address, IP, nbi image name)"
-msgstr ""
-
-#: standalone.pm:98
-#, c-format
-msgid "[keyboard]"
-msgstr ""
-
-#: standalone.pm:99
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr ""
-
-#: standalone.pm:100
-#, c-format
-msgid ""
-"[OPTIONS]\n"
-"Network & Internet connection and monitoring application\n"
-"\n"
-"--defaultintf interface : show this interface by default\n"
-"--connect : connect to internet if not already connected\n"
-"--disconnect : disconnect to internet if already connected\n"
-"--force : used with (dis)connect : force (dis)connection.\n"
-"--status : returns 1 if connected 0 otherwise, then exit.\n"
-"--quiet : do not be interactive. To be used with (dis)connect."
-msgstr ""
-
-#: standalone.pm:109
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr ""
-
-#: standalone.pm:110
-#, c-format
-msgid ""
-"[OPTION]...\n"
-" --no-confirmation do not ask first confirmation question in Mandriva Update mode\n"
-" --no-verify-rpm do not verify packages signatures\n"
-" --changelog-first display changelog before filelist in the description window\n"
-" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
-msgstr ""
-
-#: standalone.pm:115
-#, c-format
-msgid "[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-usbtable] [--dynamic=dev]"
-msgstr ""
-
-#: standalone.pm:116
-#, c-format
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
-msgstr ""
-
-#: standalone.pm:149
-#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--testing] [-v|--version] "
-msgstr ""
-
-#: standalone/XFdrake:59
-#, c-format
-msgid "You need to reboot for changes to take effect"
-msgstr ""
-
-#: standalone/XFdrake:90
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr ""
-
-#: standalone/XFdrake:94
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr ""
-
-#: standalone/drakTermServ:112 standalone/drakTermServ:118
-#, c-format
-msgid ""
-"%s: %s requires a username...\n"
-""
-msgstr ""
-
-#: standalone/drakTermServ:129
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, 0/1 for Local Config...\n"
-""
-msgstr ""
-
-#: standalone/drakTermServ:135
-#, c-format
-msgid ""
-"%s: %s requires hostname...\n"
-""
-msgstr ""
-
-#: standalone/drakTermServ:144
-#, c-format
-msgid "Host name for client"
-msgstr ""
-
-#: standalone/drakTermServ:145
-#, c-format
-msgid "MAC address should be in the format 00:11:22:33:44:55"
-msgstr ""
-
-#: standalone/drakTermServ:146
-#, c-format
-msgid "IP address to be assigned to client"
-msgstr ""
-
-#: standalone/drakTermServ:147
-#, c-format
-msgid "Kernel/network adapter image to use to boot client"
-msgstr ""
-
-#: standalone/drakTermServ:148
-#, c-format
-msgid "Create masking files to allow configuration tools to run on client"
-msgstr ""
-
-#: standalone/drakTermServ:149
-#, c-format
-msgid "Applications will run on server machine"
-msgstr ""
-
-#: standalone/drakTermServ:234 standalone/drakTermServ:237
-#, c-format
-msgid "Terminal Server Configuration"
-msgstr ""
-
-#: standalone/drakTermServ:243
-#, c-format
-msgid "dhcpd Config"
-msgstr ""
-
-#: standalone/drakTermServ:247
-#, c-format
-msgid "Enable Server"
-msgstr ""
-
-#: standalone/drakTermServ:253
-#, c-format
-msgid "Disable Server"
-msgstr ""
-
-#: standalone/drakTermServ:259
-#, c-format
-msgid "Start Server"
-msgstr ""
-
-#: standalone/drakTermServ:265
-#, c-format
-msgid "Stop Server"
-msgstr ""
-
-#: standalone/drakTermServ:274
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr ""
-
-#: standalone/drakTermServ:278
-#, c-format
-msgid "Net Boot Images"
-msgstr ""
-
-#: standalone/drakTermServ:285
-#, c-format
-msgid "Add/Del Users"
-msgstr ""
-
-#: standalone/drakTermServ:289
-#, c-format
-msgid "Add/Del Clients"
-msgstr ""
-
-#: standalone/drakTermServ:297
-#, c-format
-msgid "Images"
-msgstr ""
-
-#: standalone/drakTermServ:298
-#, c-format
-msgid "Clients/Users"
-msgstr ""
-
-#: standalone/drakTermServ:316 standalone/drakbug:47
-#, c-format
-msgid "First Time Wizard"
-msgstr ""
-
-#: standalone/drakTermServ:354 standalone/drakTermServ:355
-#, c-format
-msgid "%s defined as dm, adding gdm user to /etc/passwd$$CLIENT$$"
-msgstr ""
-
-#: standalone/drakTermServ:361
-#, c-format
-msgid ""
-"\n"
-" This wizard routine will:\n"
-" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
-"\t2) Setup DHCP.\n"
-"\t\n"
-"After doing these steps, the wizard will:\n"
-"\t\n"
-" a) Make all nbis. \n"
-" b) Activate the server. \n"
-" c) Start the server. \n"
-" d) Synchronize the shadow files so that all users, including root, \n"
-" are added to the shadow$$CLIENT$$ file. \n"
-" e) Ask you to make a boot floppy.\n"
-" f) If it's thin clients, ask if you want to restart KDM.\n"
-""
-msgstr ""
-
-#: standalone/drakTermServ:407
-#, c-format
-msgid "Cancel Wizard"
-msgstr ""
-
-#: standalone/drakTermServ:422
-#, c-format
-msgid "Please save dhcpd config!"
-msgstr ""
-
-#: standalone/drakTermServ:450
-#, c-format
-msgid "Use thin clients."
-msgstr ""
-
-#: standalone/drakTermServ:452
-#, c-format
-msgid "Sync client X keyboard settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:454
-#, c-format
-msgid ""
-"Please select default client type (Fat is the default type if 'Use thin' is unchecked).\n"
-" 'Thin' clients run everything off the server's CPU/RAM, using the client display.\n"
-" 'Fat' clients use their own CPU/RAM but the server's filesystem."
-msgstr ""
-
-#: standalone/drakTermServ:474
-#, c-format
-msgid "Creating net boot images for all kernels"
-msgstr ""
-
-#: standalone/drakTermServ:475 standalone/drakTermServ:807 standalone/drakTermServ:823
-#, c-format
-msgid "This will take a few minutes."
-msgstr ""
-
-#: standalone/drakTermServ:481 standalone/drakTermServ:521
-#, c-format
-msgid "Done!"
-msgstr ""
-
-#: standalone/drakTermServ:492 standalone/drakTermServ:894
-#, c-format
-msgid "%s failed"
-msgstr ""
-
-#: standalone/drakTermServ:501
-#, c-format
-msgid ""
-"Not enough space to create\n"
-"NBIs in %s.\n"
-"Needed: %d MB, Free: %d MB"
-msgstr ""
-
-#: standalone/drakTermServ:507
-#, c-format
-msgid "Syncing server user list with client list, including root."
-msgstr ""
-
-#: standalone/drakTermServ:527
-#, c-format
-msgid "In order to enable changes made for thin clients, the display manager must be restarted. Restart now?"
-msgstr ""
-
-#: standalone/drakTermServ:564
-#, c-format
-msgid "Terminal Server Overview"
-msgstr ""
-
-#: standalone/drakTermServ:565
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must be created.\n"
-" \tmkinitrd-net does much of this work and %s is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least one full kernel."
-msgstr ""
-
-#: standalone/drakTermServ:571
-#, c-format
-msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, assigning an IP \n"
-" \taddress and net boot images to the machine. %s helps create/remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks like:"
-msgstr ""
-
-#: standalone/drakTermServ:589
-#, c-format
-msgid ""
-" While you can use a pool of IP addresses, rather than setup a specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be 'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, while fat clients run \n"
-" most software on the client machine. A special inittab, \n"
-" %s is written for thin clients. \n"
-" System config files xdm-config, kdmrc, and gdm.conf are modified if thin clients are \n"
-" used, to enable XDMCP. Since there are security issues in using XDMCP, hosts.deny and \n"
-" hosts.allow are modified to limit access to the local subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can either \n"
-" be 'true' or 'false'. 'true' enables root login at the client machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' tools. This is enabled \n"
-" by creating separate config files associated with the client's IP address and creating \n"
-" read/write mount points to allow the client to alter the file. Once you are satisfied \n"
-" with the configuration, you can remove root login privileges from the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing clients."
-msgstr ""
-
-#: standalone/drakTermServ:609
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-msgstr ""
-
-#: standalone/drakTermServ:621
-#, c-format
-msgid ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. \n"
-" \t%s helps in this respect by adding or removing system users from this \n"
-" \tfile."
-msgstr ""
-
-#: standalone/drakTermServ:626
-#, c-format
-msgid ""
-" - Per client %s:\n"
-" \tThrough %s, each diskless client can have its own unique configuration files\n"
-" \ton the root filesystem of the server. By allowing local client hardware configuration, \n"
-" \t%s will help create these files."
-msgstr ""
-
-#: standalone/drakTermServ:631
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique configuration files\n"
-" \ton the root filesystem of the server. By allowing local client hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root login to the terminal \n"
-" server on each client machine that has this feature enabled. Local configuration can be\n"
-" turned back off, retaining the configuration files, once the client machine is configured."
-msgstr ""
-
-#: standalone/drakTermServ:640
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s will configure this file to work in conjunction with the images created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical TFTP configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where mkinitrd-net\n"
-" \tputs its images."
-msgstr ""
-
-#: standalone/drakTermServ:661
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-msgstr ""
-
-#: standalone/drakTermServ:694
-#, c-format
-msgid "Boot Floppy"
-msgstr ""
-
-#: standalone/drakTermServ:696
-#, c-format
-msgid "Boot ISO"
-msgstr ""
-
-#: standalone/drakTermServ:698
-#, c-format
-msgid "PXE Image"
-msgstr ""
-
-#: standalone/drakTermServ:759
-#, c-format
-msgid "Default kernel version"
-msgstr ""
-
-#: standalone/drakTermServ:764
-#, c-format
-msgid "Create PXE images"
-msgstr ""
-
-#: standalone/drakTermServ:765
-#, c-format
-msgid "Use Unionfs (TS2)"
-msgstr ""
-
-#: standalone/drakTermServ:795
-#, c-format
-msgid "Install i586 kernel for older clients"
-msgstr ""
-
-#: standalone/drakTermServ:805
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr ""
-
-#: standalone/drakTermServ:812
-#, c-format
-msgid "No kernel selected!"
-msgstr ""
-
-#: standalone/drakTermServ:815
-#, c-format
-msgid "Build Single NIC -->"
-msgstr ""
-
-#: standalone/drakTermServ:819 standalone/drakTermServ:1643
-#, c-format
-msgid "No NIC selected!"
-msgstr ""
-
-#: standalone/drakTermServ:822
-#, c-format
-msgid "Build All Kernels -->"
-msgstr ""
-
-#: standalone/drakTermServ:835
-#, c-format
-msgid ""
-"Custom\n"
-"kernel args"
-msgstr ""
-
-#: standalone/drakTermServ:840
-#, c-format
-msgid "<-- Delete"
-msgstr ""
-
-#: standalone/drakTermServ:845
-#, c-format
-msgid "No image selected!"
-msgstr ""
-
-#: standalone/drakTermServ:848
-#, c-format
-msgid "Delete All NBIs"
-msgstr ""
-
-#: standalone/drakTermServ:925
-#, c-format
-msgid "Building images for kernel:"
-msgstr ""
-
-#: standalone/drakTermServ:1050
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-
-#: standalone/drakTermServ:1055
-#, c-format
-msgid "Add User -->"
-msgstr ""
-
-#: standalone/drakTermServ:1061
-#, c-format
-msgid "<-- Del User"
-msgstr ""
-
-#: standalone/drakTermServ:1097
-#, c-format
-msgid "type: %s"
-msgstr ""
-
-#: standalone/drakTermServ:1101
-#, c-format
-msgid "local config: %s"
-msgstr ""
-
-#: standalone/drakTermServ:1136
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-
-#: standalone/drakTermServ:1146
-#, c-format
-msgid "No net boot images created!"
-msgstr ""
-
-#: standalone/drakTermServ:1165
-#, c-format
-msgid "Thin Client"
-msgstr ""
-
-#: standalone/drakTermServ:1169
-#, c-format
-msgid "Allow Thin Clients"
-msgstr ""
-
-#: standalone/drakTermServ:1170
-#, c-format
-msgid ""
-"Sync client X keyboard\n"
-" settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:1171
-#, c-format
-msgid "Add Client -->"
-msgstr ""
-
-#: standalone/drakTermServ:1181
-#, c-format
-msgid "Unknown MAC address format"
-msgstr ""
-
-#: standalone/drakTermServ:1195
-#, c-format
-msgid "type: fat"
-msgstr ""
-
-#: standalone/drakTermServ:1196
-#, c-format
-msgid "type: thin"
-msgstr ""
-
-#: standalone/drakTermServ:1203
-#, c-format
-msgid "local config: false"
-msgstr ""
-
-#: standalone/drakTermServ:1204
-#, c-format
-msgid "local config: true"
-msgstr ""
-
-#: standalone/drakTermServ:1212
-#, c-format
-msgid "<-- Edit Client"
-msgstr ""
-
-#: standalone/drakTermServ:1237
-#, c-format
-msgid "Disable Local Config"
-msgstr ""
-
-#: standalone/drakTermServ:1244
-#, c-format
-msgid "Delete Client"
-msgstr ""
-
-#: standalone/drakTermServ:1267
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-
-#: standalone/drakTermServ:1313
-#, c-format
-msgid "Thin clients will not work with autologin. Disable autologin?"
-msgstr ""
-
-#: standalone/drakTermServ:1328
-#, c-format
-msgid "All clients will use %s"
-msgstr ""
-
-#: standalone/drakTermServ:1362
-#, c-format
-msgid "Subnet:"
-msgstr ""
-
-#: standalone/drakTermServ:1369
-#, c-format
-msgid "Netmask:"
-msgstr ""
-
-#: standalone/drakTermServ:1376
-#, c-format
-msgid "Routers:"
-msgstr ""
-
-#: standalone/drakTermServ:1383
-#, c-format
-msgid "Subnet Mask:"
-msgstr ""
-
-#: standalone/drakTermServ:1390
-#, c-format
-msgid "Broadcast Address:"
-msgstr ""
-
-#: standalone/drakTermServ:1397
-#, c-format
-msgid "Domain Name:"
-msgstr ""
-
-#: standalone/drakTermServ:1405
-#, c-format
-msgid "Name Servers:"
-msgstr ""
-
-#: standalone/drakTermServ:1416
-#, c-format
-msgid "IP Range Start:"
-msgstr ""
-
-#: standalone/drakTermServ:1417
-#, c-format
-msgid "IP Range End:"
-msgstr ""
-
-#: standalone/drakTermServ:1459
-#, c-format
-msgid "Append TS Includes To Existing Config"
-msgstr ""
-
-#: standalone/drakTermServ:1461
-#, c-format
-msgid "Write Config"
-msgstr ""
-
-#: standalone/drakTermServ:1477
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr ""
-
-#: standalone/drakTermServ:1478
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-
-#: standalone/drakTermServ:1481
-#, c-format
-msgid ""
-"Dynamic IP Address Pool\n"
-"(needed for PXE clients):"
-msgstr ""
-
-#: standalone/drakTermServ:1634
-#, c-format
-msgid "Write to %s failed!"
-msgstr ""
-
-#: standalone/drakTermServ:1647
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr ""
-
-#: standalone/drakTermServ:1651
-#, c-format
-msgid "Could not access the floppy!"
-msgstr ""
-
-#: standalone/drakTermServ:1653
-#, c-format
-msgid "Floppy can be removed now"
-msgstr ""
-
-#: standalone/drakTermServ:1656
-#, c-format
-msgid "No floppy drive available!"
-msgstr ""
-
-#: standalone/drakTermServ:1662
-#, c-format
-msgid "PXE image is %s/%s"
-msgstr ""
-
-#: standalone/drakTermServ:1664
-#, c-format
-msgid "Error writing %s/%s"
-msgstr ""
-
-#: standalone/drakTermServ:1676
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr ""
-
-#: standalone/drakTermServ:1680
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr ""
-
-#: standalone/drakTermServ:1700
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr ""
-
-#: standalone/drakTermServ:1867
-#, c-format
-msgid ""
-"%s passwd bad in Terminal Server - rewriting...\n"
-""
-msgstr ""
-
-#: standalone/drakTermServ:1880
-#, c-format
-msgid ""
-"%s is not a user..\n"
-""
-msgstr ""
-
-#: standalone/drakTermServ:1881
-#, c-format
-msgid ""
-"%s is already a Terminal Server user\n"
-""
-msgstr ""
-
-#: standalone/drakTermServ:1883
-#, c-format
-msgid ""
-"Addition of %s to Terminal Server failed!\n"
-""
-msgstr ""
-
-#: standalone/drakTermServ:1885
-#, c-format
-msgid ""
-"%s added to Terminal Server\n"
-""
-msgstr ""
-
-#: standalone/drakTermServ:1903
-#, c-format
-msgid ""
-"Deleted %s...\n"
-""
-msgstr ""
-
-#: standalone/drakTermServ:1905 standalone/drakTermServ:1978
-#, c-format
-msgid ""
-"%s not found...\n"
-""
-msgstr ""
-
-#: standalone/drakTermServ:2006
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
-
-#: standalone/drakTermServ:2158
-#, c-format
-msgid "Configuration changed - restart %s/dhcpd?"
-msgstr ""
-
-#: standalone/drakautoinst:38 standalone/drakhosts:123 standalone/drakhosts:129 standalone/draknfs:84 standalone/draknfs:105 standalone/draknfs:444 standalone/draknfs:447 standalone/draknfs:539 standalone/draknfs:546 standalone/draksambashare:187 standalone/draksambashare:208 standalone/draksambashare:629 standalone/draksambashare:796
-#, c-format
-msgid "Error!"
-msgstr ""
-
-#: standalone/drakautoinst:39
-#, c-format
-msgid "I can not find needed image file `%s'."
-msgstr ""
-
-#: standalone/drakautoinst:41
-#, c-format
-msgid "Auto Install Configurator"
-msgstr ""
-
-#: standalone/drakautoinst:42
-#, c-format
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've performed on this computer, being interactively prompted for some steps, in order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Press ok to continue."
-msgstr ""
-
-#: standalone/drakautoinst:60
-#, c-format
-msgid "replay"
-msgstr ""
-
-#: standalone/drakautoinst:60 standalone/drakautoinst:69
-#, c-format
-msgid "manual"
-msgstr ""
-
-#: standalone/drakautoinst:64
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr ""
-
-#: standalone/drakautoinst:65
-#, c-format
-msgid "Please choose for each step whether it will replay like your install, or it will be manual"
-msgstr ""
-
-#: standalone/drakautoinst:77 standalone/drakautoinst:78 standalone/drakautoinst:92
-#, c-format
-msgid "Creating auto install floppy"
-msgstr ""
-
-#: standalone/drakautoinst:90
-#, c-format
-msgid "Insert another blank floppy in drive %s (for drivers disk)"
-msgstr ""
-
-#: standalone/drakautoinst:91
-#, c-format
-msgid "Creating auto install floppy (drivers disk)"
-msgstr ""
-
-#: standalone/drakautoinst:156
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: standalone/drakautoinst:251
-#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: standalone/drakautoinst:287
-#, c-format
-msgid "Auto Install"
-msgstr ""
-
-#: standalone/drakautoinst:356
-#, c-format
-msgid "Add an item"
-msgstr ""
-
-#: standalone/drakautoinst:363
-#, c-format
-msgid "Remove the last item"
-msgstr ""
-
-#: standalone/drakbackup:157
-#, c-format
-msgid "Expect is an extension to the TCL scripting language that allows interactive sessions without user intervention."
-msgstr ""
-
-#: standalone/drakbackup:158
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr ""
-
-#: standalone/drakbackup:159
-#, c-format
-msgid "For a multisession CD, only the first session will erase the cdrw. Otherwise the cdrw is erased before each backup."
-msgstr ""
-
-#: standalone/drakbackup:160
-#, c-format
-msgid "This option will save files that have changed. Exact behavior depends on whether incremental or differential mode is used."
-msgstr ""
-
-#: standalone/drakbackup:161
-#, c-format
-msgid "Incremental backups only save files that have changed or are new since the last backup."
-msgstr ""
-
-#: standalone/drakbackup:162
-#, c-format
-msgid "Differential backups only save files that have changed or are new since the original 'base' backup."
-msgstr ""
-
-#: standalone/drakbackup:163
-#, c-format
-msgid "Star should be selected if you want to backup EA or ACLs, otherwise choose tar"
-msgstr ""
-
-#: standalone/drakbackup:164
-#, c-format
-msgid "This should be a local user or email address that you want the backup results sent to. You will need to define a functioning mail server. Multiple users can be in a comma seperated list"
-msgstr ""
-
-#: standalone/drakbackup:165
-#, c-format
-msgid "This should be the return address that you want the backup results sent from. Default is drakbackup."
-msgstr ""
-
-#: standalone/drakbackup:166
-#, c-format
-msgid "Files or wildcards listed in a .backupignore file at the top of a directory tree will not be backed up."
-msgstr ""
-
-#: standalone/drakbackup:167
-#, c-format
-msgid "For backups to other media, files are still created on the hard drive, then moved to the other media. Enabling this option will remove the hard drive tar files after the backup."
-msgstr ""
-
-#: standalone/drakbackup:168
-#, c-format
-msgid "Selecting this option allows you to view the raw output from the restore process, after a file restore."
-msgstr ""
-
-#: standalone/drakbackup:169
-#, c-format
-msgid "Some protocols, like rsync, may be configured at the server end. Rather than using a directory path, you would use the 'module' name for the service path."
-msgstr ""
-
-#: standalone/drakbackup:170
-#, c-format
-msgid "Custom allows you to specify your own day and time. The other options use run-parts in /etc/crontab."
-msgstr ""
-
-#: standalone/drakbackup:344
-#, c-format
-msgid "No media selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:348
-#, c-format
-msgid "No interval selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:393
-#, c-format
-msgid "Interval cron not available as non-root"
-msgstr ""
-
-#: standalone/drakbackup:477 standalone/logdrake:439
-#, c-format
-msgid "\"%s\" neither is a valid email nor is an existing local user!"
-msgstr ""
-
-#: standalone/drakbackup:481 standalone/logdrake:444
-#, 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 ""
-
-#: standalone/drakbackup:491
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr ""
-
-#: standalone/drakbackup:493
-#, c-format
-msgid ""
-"Old user list:\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:495
-#, c-format
-msgid ""
-"New user list:\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:524
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
-""
-msgstr ""
-
-#: standalone/drakbackup:525
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:531
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:556 standalone/drakbackup:627 standalone/drakbackup:683
-#, c-format
-msgid "Total progress"
-msgstr ""
-
-#: standalone/drakbackup:609
-#, c-format
-msgid ""
-"%s exists, delete?\n"
-"\n"
-"If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-
-#: standalone/drakbackup:618
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr ""
-
-#: standalone/drakbackup:625
-#, c-format
-msgid "Cannot spawn %s."
-msgstr ""
-
-#: standalone/drakbackup:642
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr ""
-
-#: standalone/drakbackup:643
-#, c-format
-msgid "Bad password on %s"
-msgstr ""
-
-#: standalone/drakbackup:644
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr ""
-
-#: standalone/drakbackup:645
-#, c-format
-msgid "Can not find %s on %s"
-msgstr ""
-
-#: standalone/drakbackup:649
-#, c-format
-msgid "%s not responding"
-msgstr ""
-
-#: standalone/drakbackup:653
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-
-#: standalone/drakbackup:703
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr ""
-
-#: standalone/drakbackup:707
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr ""
-
-#: standalone/drakbackup:712
-#, c-format
-msgid "Not erasable media!"
-msgstr ""
-
-#: standalone/drakbackup:754
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr ""
-
-#: standalone/drakbackup:812
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr ""
-
-#: standalone/drakbackup:840
-#, c-format
-msgid "No tape in %s!"
-msgstr ""
-
-#: standalone/drakbackup:953
-#, c-format
-msgid ""
-"Backup destination quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-
-#: standalone/drakbackup:973 standalone/drakbackup:1005
-#, c-format
-msgid "Backup system files..."
-msgstr ""
-
-#: standalone/drakbackup:1006 standalone/drakbackup:1045
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr ""
-
-#: standalone/drakbackup:1044
-#, c-format
-msgid "Backup User files..."
-msgstr ""
-
-#: standalone/drakbackup:1078
-#, c-format
-msgid "Backup Other files..."
-msgstr ""
-
-#: standalone/drakbackup:1079
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: standalone/drakbackup:1084
-#, c-format
-msgid "No changes to backup!"
-msgstr ""
-
-#: standalone/drakbackup:1100 standalone/drakbackup:1122
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:1109
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by FTP.\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:1110
-#, c-format
-msgid "Error during sending file via FTP. Please correct your FTP configuration."
-msgstr ""
-
-#: standalone/drakbackup:1112
-#, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:1127
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:1132
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:1141
-#, c-format
-msgid "Error sending mail. Your report mail was not sent."
-msgstr ""
-
-#: standalone/drakbackup:1142
-#, c-format
-msgid ""
-" Error while sending mail. \n"
-""
-msgstr ""
-
-#: standalone/drakbackup:1172
-#, c-format
-msgid "Can not create catalog!"
-msgstr ""
-
-#: standalone/drakbackup:1332
-#, c-format
-msgid "Problem installing %s"
-msgstr ""
-
-#: standalone/drakbackup:1420
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr ""
-
-#: standalone/drakbackup:1421 standalone/drakbackup:1484 standalone/drakbackup:1550
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr ""
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486 standalone/drakbackup:1552
-#, c-format
-msgid "Use Incremental Backups"
-msgstr ""
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486 standalone/drakbackup:1552
-#, c-format
-msgid "Use Differential Backups"
-msgstr ""
-
-#: standalone/drakbackup:1425
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: standalone/drakbackup:1456
-#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr ""
-
-#: standalone/drakbackup:1483
-#, c-format
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: standalone/drakbackup:1537
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr ""
-
-#: standalone/drakbackup:1538 standalone/drakfont:650
-#, c-format
-msgid "Remove Selected"
-msgstr ""
-
-#: standalone/drakbackup:1601
-#, c-format
-msgid "Users"
-msgstr ""
-
-#: standalone/drakbackup:1621
-#, c-format
-msgid "Use network connection to backup"
-msgstr ""
-
-#: standalone/drakbackup:1623
-#, c-format
-msgid "Net Method:"
-msgstr ""
-
-#: standalone/drakbackup:1627
-#, c-format
-msgid "Use Expect for SSH"
-msgstr ""
-
-#: standalone/drakbackup:1628
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr ""
-
-#: standalone/drakbackup:1630
-#, c-format
-msgid "Transfer Now"
-msgstr ""
-
-#: standalone/drakbackup:1632
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr ""
-
-#: standalone/drakbackup:1635
-#, c-format
-msgid "Host name or IP."
-msgstr ""
-
-#: standalone/drakbackup:1640
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
-
-#: standalone/drakbackup:1652
-#, c-format
-msgid "Remember this password"
-msgstr ""
-
-#: standalone/drakbackup:1664
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr ""
-
-#: standalone/drakbackup:1755
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr ""
-
-#: standalone/drakbackup:1758
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr ""
-
-#: standalone/drakbackup:1763
-#, c-format
-msgid "Choose your CD/DVD media size"
-msgstr ""
-
-#: standalone/drakbackup:1770
-#, c-format
-msgid "Multisession CD"
-msgstr ""
-
-#: standalone/drakbackup:1772
-#, c-format
-msgid "CDRW media"
-msgstr ""
-
-#: standalone/drakbackup:1778
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr ""
-
-#: standalone/drakbackup:1779
-#, c-format
-msgid " Erase Now "
-msgstr ""
-
-#: standalone/drakbackup:1785
-#, c-format
-msgid "DVD+RW media"
-msgstr ""
-
-#: standalone/drakbackup:1787
-#, c-format
-msgid "DVD-R media"
-msgstr ""
-
-#: standalone/drakbackup:1789
-#, c-format
-msgid "DVDRAM device"
-msgstr ""
-
-#: standalone/drakbackup:1820
-#, c-format
-msgid "No CD device defined!"
-msgstr ""
-
-#: standalone/drakbackup:1862
-#, c-format
-msgid "Use tape to backup"
-msgstr ""
-
-#: standalone/drakbackup:1865
-#, c-format
-msgid "Device name to use for backup"
-msgstr ""
-
-#: standalone/drakbackup:1871
-#, c-format
-msgid "Backup directly to tape"
-msgstr ""
-
-#: standalone/drakbackup:1877
-#, c-format
-msgid "Use tape hardware compression (EXPERIMENTAL)"
-msgstr ""
-
-#: standalone/drakbackup:1883
-#, c-format
-msgid "Do not rewind tape after backup"
-msgstr ""
-
-#: standalone/drakbackup:1889
-#, c-format
-msgid "Erase tape before backup"
-msgstr ""
-
-#: standalone/drakbackup:1895
-#, c-format
-msgid "Eject tape after the backup"
-msgstr ""
-
-#: standalone/drakbackup:1976
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr ""
-
-#: standalone/drakbackup:1980
-#, c-format
-msgid "Directory to save to"
-msgstr ""
-
-#: standalone/drakbackup:1985
-#, c-format
-msgid ""
-"Maximum disk space\n"
-" allocated for backups (MB)"
-msgstr ""
-
-#: standalone/drakbackup:1989
-#, c-format
-msgid ""
-"Delete incremental or differential\n"
-" backups older than N days\n"
-" (0 is keep all backups) to save space"
-msgstr ""
-
-#: standalone/drakbackup:2056
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr ""
-
-#: standalone/drakbackup:2061
-#, c-format
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2077 standalone/drakbackup:2082
-#, c-format
-msgid "hourly"
-msgstr ""
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2078 standalone/drakbackup:2083
-#, c-format
-msgid "daily"
-msgstr ""
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2079 standalone/drakbackup:2084
-#, c-format
-msgid "weekly"
-msgstr ""
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2080 standalone/drakbackup:2085
-#, c-format
-msgid "monthly"
-msgstr ""
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2081 standalone/drakbackup:2086
-#, c-format
-msgid "custom"
-msgstr ""
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "January"
-msgstr ""
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "February"
-msgstr ""
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "March"
-msgstr ""
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "April"
-msgstr ""
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "May"
-msgstr ""
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "June"
-msgstr ""
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "July"
-msgstr ""
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "August"
-msgstr ""
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "September"
-msgstr ""
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "October"
-msgstr ""
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "November"
-msgstr ""
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "December"
-msgstr ""
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Sunday"
-msgstr ""
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Monday"
-msgstr ""
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Tuesday"
-msgstr ""
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Wednesday"
-msgstr ""
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Thursday"
-msgstr ""
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Friday"
-msgstr ""
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Saturday"
-msgstr ""
-
-#: standalone/drakbackup:2126
-#, c-format
-msgid "Delete cron entry"
-msgstr ""
-
-#: standalone/drakbackup:2127
-#, c-format
-msgid "Add cron entry"
-msgstr ""
-
-#: standalone/drakbackup:2185
-#, c-format
-msgid "Use daemon"
-msgstr ""
-
-#: standalone/drakbackup:2189
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr ""
-
-#: standalone/drakbackup:2197
-#, c-format
-msgid "Minute"
-msgstr ""
-
-#: standalone/drakbackup:2201
-#, c-format
-msgid "Hour"
-msgstr ""
-
-#: standalone/drakbackup:2205
-#, c-format
-msgid "Day"
-msgstr ""
-
-#: standalone/drakbackup:2209
-#, c-format
-msgid "Month"
-msgstr ""
-
-#: standalone/drakbackup:2213
-#, c-format
-msgid "Weekday (start)"
-msgstr ""
-
-#: standalone/drakbackup:2217
-#, c-format
-msgid "Weekday (end)"
-msgstr ""
-
-#: standalone/drakbackup:2221
-#, c-format
-msgid "Profile"
-msgstr ""
-
-#: standalone/drakbackup:2227
-#, c-format
-msgid "Current crontab:"
-msgstr ""
-
-#: standalone/drakbackup:2235
-#, c-format
-msgid "Please choose the media for backup."
-msgstr ""
-
-#: standalone/drakbackup:2239
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: standalone/drakbackup:2240
-#, c-format
-msgid "If your machine is not on all the time, you might want to install anacron."
-msgstr ""
-
-#: standalone/drakbackup:2316
-#, c-format
-msgid "Please choose the archive program"
-msgstr ""
-
-#: standalone/drakbackup:2321
-#, c-format
-msgid "Please choose the compression type"
-msgstr ""
-
-#: standalone/drakbackup:2325
-#, c-format
-msgid "Use .backupignore files"
-msgstr ""
-
-#: standalone/drakbackup:2327
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr ""
-
-#: standalone/drakbackup:2333
-#, c-format
-msgid "Return address for sent mail:"
-msgstr ""
-
-#: standalone/drakbackup:2339
-#, c-format
-msgid "SMTP server for mail:"
-msgstr ""
-
-#: standalone/drakbackup:2343
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
-
-#: standalone/drakbackup:2344
-#, c-format
-msgid "View restore log after file restore."
-msgstr ""
-
-#: standalone/drakbackup:2389
-#, c-format
-msgid "What"
-msgstr ""
-
-#: standalone/drakbackup:2394
-#, c-format
-msgid "Where"
-msgstr ""
-
-#: standalone/drakbackup:2399
-#, c-format
-msgid "When"
-msgstr ""
-
-#: standalone/drakbackup:2404
-#, c-format
-msgid "More Options"
-msgstr ""
-
-#: standalone/drakbackup:2417
-#, c-format
-msgid "Backup destination not configured..."
-msgstr ""
-
-#: standalone/drakbackup:2437 standalone/drakbackup:4367
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr ""
-
-#: standalone/drakbackup:2453
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr ""
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Hard Drive used to prepare backups for all media"
-msgstr ""
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Across Network"
-msgstr ""
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On CD-R"
-msgstr ""
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On Tape Device"
-msgstr ""
-
-#: standalone/drakbackup:2502
-#, c-format
-msgid "Backup Users"
-msgstr ""
-
-#: standalone/drakbackup:2503
-#, c-format
-msgid " (Default is all users)"
-msgstr ""
-
-#: standalone/drakbackup:2516
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr ""
-
-#: standalone/drakbackup:2517
-#, c-format
-msgid "Backup System"
-msgstr ""
-
-#: standalone/drakbackup:2519
-#, c-format
-msgid "Select user manually"
-msgstr ""
-
-#: standalone/drakbackup:2548
-#, c-format
-msgid "Please select data to backup..."
-msgstr ""
-
-#: standalone/drakbackup:2620
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2621
-#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2623
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2625
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2627
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2628
-#, c-format
-msgid ""
-"\tLimit disk usage to %s MB\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2629
-#, c-format
-msgid ""
-"\tDelete backups older than %s day(s)\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2632
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2637
-#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr ""
-
-#: standalone/drakbackup:2638
-#, c-format
-msgid "RW"
-msgstr ""
-
-#: standalone/drakbackup:2639
-#, c-format
-msgid " on device: %s"
-msgstr ""
-
-#: standalone/drakbackup:2640
-#, c-format
-msgid " (multi-session)"
-msgstr ""
-
-#: standalone/drakbackup:2641
-#, c-format
-msgid ""
-"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-
-#: standalone/drakbackup:2642
-#, c-format
-msgid "\t\tErase=%s"
-msgstr ""
-
-#: standalone/drakbackup:2644
-#, c-format
-msgid ""
-"\tBackup directly to Tape\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2646
-#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2647
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2648
-#, c-format
-msgid ""
-"\n"
-"- Options:\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2649
-#, c-format
-msgid ""
-"\tDo not include System Files\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2651
-#, c-format
-msgid ""
-"\tBackups use %s and bzip2\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2652
-#, c-format
-msgid ""
-"\tBackups use %s and gzip\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2653
-#, c-format
-msgid ""
-"\tBackups use %s only\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2655
-#, c-format
-msgid ""
-"\tUse .backupignore files\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2656
-#, c-format
-msgid ""
-"\tSend mail to %s\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2657
-#, c-format
-msgid ""
-"\tSend mail from %s\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2658
-#, c-format
-msgid ""
-"\tUsing SMTP server %s\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2660
-#, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2661
-#, c-format
-msgid ""
-"\t-Hard drive.\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2662
-#, c-format
-msgid ""
-"\t-CD-R.\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2663
-#, c-format
-msgid ""
-"\t-Tape \n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2664
-#, c-format
-msgid ""
-"\t-Network by FTP.\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2665
-#, c-format
-msgid ""
-"\t-Network by SSH.\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2666
-#, c-format
-msgid ""
-"\t-Network by rsync.\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2668
-#, c-format
-msgid ""
-"No configuration, please click Wizard or Advanced.\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2673
-#, c-format
-msgid ""
-"List of data to restore:\n"
-"\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2675
-#, c-format
-msgid ""
-"- Restore System Files.\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2677 standalone/drakbackup:2687
-#, c-format
-msgid ""
-" - from date: %s %s\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2680
-#, c-format
-msgid ""
-"- Restore User Files: \n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2685
-#, c-format
-msgid ""
-"- Restore Other Files: \n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2864
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:2866
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr ""
-
-#: standalone/drakbackup:2876
-#, c-format
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: standalone/drakbackup:2897
-#, c-format
-msgid " All of your selected data have been "
-msgstr ""
-
-#: standalone/drakbackup:2898
-#, c-format
-msgid " Successfully Restored on %s "
-msgstr ""
-
-#: standalone/drakbackup:2999
-#, c-format
-msgid "/usr/bin/star not found, using tar..."
-msgstr ""
-
-#: standalone/drakbackup:3035
-#, c-format
-msgid " Restore Configuration "
-msgstr ""
-
-#: standalone/drakbackup:3063
-#, c-format
-msgid "OK to restore the other files."
-msgstr ""
-
-#: standalone/drakbackup:3079
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: standalone/drakbackup:3144
-#, c-format
-msgid "Please choose the date to restore:"
-msgstr ""
-
-#: standalone/drakbackup:3181
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr ""
-
-#: standalone/drakbackup:3183
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr ""
-
-#: standalone/drakbackup:3187
-#, c-format
-msgid "Directory with backups"
-msgstr ""
-
-#: standalone/drakbackup:3241
-#, c-format
-msgid "Select another media to restore from"
-msgstr ""
-
-#: standalone/drakbackup:3243
-#, c-format
-msgid "Other Media"
-msgstr ""
-
-#: standalone/drakbackup:3248
-#, c-format
-msgid "Restore system"
-msgstr ""
-
-#: standalone/drakbackup:3249
-#, c-format
-msgid "Restore Users"
-msgstr ""
-
-#: standalone/drakbackup:3250
-#, c-format
-msgid "Restore Other"
-msgstr ""
-
-#: standalone/drakbackup:3252
-#, c-format
-msgid "Select path to restore (instead of /)"
-msgstr ""
-
-#: standalone/drakbackup:3256 standalone/drakbackup:3539
-#, c-format
-msgid "Path To Restore To"
-msgstr ""
-
-#: standalone/drakbackup:3259
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: standalone/drakbackup:3261
-#, c-format
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: standalone/drakbackup:3345
-#, c-format
-msgid "Filename text substring to search for (empty string matches all):"
-msgstr ""
-
-#: standalone/drakbackup:3348
-#, c-format
-msgid "Search Backups"
-msgstr ""
-
-#: standalone/drakbackup:3367
-#, c-format
-msgid "No matches found..."
-msgstr ""
-
-#: standalone/drakbackup:3371
-#, c-format
-msgid "Restore Selected"
-msgstr ""
-
-#: standalone/drakbackup:3507
-#, c-format
-msgid ""
-"Click date/time to see backup files.\n"
-"Ctrl-Click files to select multiple files."
-msgstr ""
-
-#: standalone/drakbackup:3513
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
-
-#: standalone/drakbackup:3522
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr ""
-
-#: standalone/drakbackup:3599
-#, c-format
-msgid "Backup files not found at %s."
-msgstr ""
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid "Restore From CD"
-msgstr ""
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-
-#: standalone/drakbackup:3614
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr ""
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid "Restore From Tape"
-msgstr ""
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-
-#: standalone/drakbackup:3626
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network"
-msgstr ""
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr ""
-
-#: standalone/drakbackup:3638
-#, c-format
-msgid "Host Name"
-msgstr ""
-
-#: standalone/drakbackup:3639
-#, c-format
-msgid "Host Path or Module"
-msgstr ""
-
-#: standalone/drakbackup:3646
-#, c-format
-msgid "Password required"
-msgstr ""
-
-#: standalone/drakbackup:3652
-#, c-format
-msgid "Username required"
-msgstr ""
-
-#: standalone/drakbackup:3655
-#, c-format
-msgid "Hostname required"
-msgstr ""
-
-#: standalone/drakbackup:3660
-#, c-format
-msgid "Path or Module required"
-msgstr ""
-
-#: standalone/drakbackup:3672
-#, c-format
-msgid "Files Restored..."
-msgstr ""
-
-#: standalone/drakbackup:3675
-#, c-format
-msgid "Restore Failed..."
-msgstr ""
-
-#: standalone/drakbackup:3703
-#, c-format
-msgid "%s not retrieved..."
-msgstr ""
-
-#: standalone/drakbackup:3929 standalone/drakbackup:3998
-#, c-format
-msgid "Search for files to restore"
-msgstr ""
-
-#: standalone/drakbackup:3933
-#, c-format
-msgid "Restore all backups"
-msgstr ""
-
-#: standalone/drakbackup:3941
-#, c-format
-msgid "Custom Restore"
-msgstr ""
-
-#: standalone/drakbackup:3945 standalone/drakbackup:3994
-#, c-format
-msgid "Restore From Catalog"
-msgstr ""
-
-#: standalone/drakbackup:3966
-#, c-format
-msgid ""
-"Unable to find backups to restore...\n"
-""
-msgstr ""
-
-#: standalone/drakbackup:3967
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr ""
-
-#: standalone/drakbackup:3968
-#, c-format
-msgid " and the CD is in the drive"
-msgstr ""
-
-#: standalone/drakbackup:3970
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr ""
-
-#: standalone/drakbackup:3986
-#, c-format
-msgid "CD in place - continue."
-msgstr ""
-
-#: standalone/drakbackup:3991
-#, c-format
-msgid "Browse to new restore repository."
-msgstr ""
-
-#: standalone/drakbackup:3992
-#, c-format
-msgid "Directory To Restore From"
-msgstr ""
-
-#: standalone/drakbackup:4028
-#, c-format
-msgid "Restore Progress"
-msgstr ""
-
-#: standalone/drakbackup:4136
-#, c-format
-msgid "Build Backup"
-msgstr ""
-
-#: standalone/drakbackup:4169 standalone/drakbackup:4466
-#, c-format
-msgid "Restore"
-msgstr ""
-
-#: standalone/drakbackup:4261
-#, c-format
-msgid "Please select data to restore..."
-msgstr ""
-
-#: standalone/drakbackup:4301
-#, c-format
-msgid "Backup system files"
-msgstr ""
-
-#: standalone/drakbackup:4304
-#, c-format
-msgid "Backup user files"
-msgstr ""
-
-#: standalone/drakbackup:4307
-#, c-format
-msgid "Backup other files"
-msgstr ""
-
-#: standalone/drakbackup:4310 standalone/drakbackup:4344
-#, c-format
-msgid "Total Progress"
-msgstr ""
-
-#: standalone/drakbackup:4336
-#, c-format
-msgid "Sending files by FTP"
-msgstr ""
-
-#: standalone/drakbackup:4339
-#, c-format
-msgid "Sending files..."
-msgstr ""
-
-#: standalone/drakbackup:4409
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr ""
-
-#: standalone/drakbackup:4414
-#, c-format
-msgid "View Backup Configuration."
-msgstr ""
-
-#: standalone/drakbackup:4440
-#, c-format
-msgid "Wizard Configuration"
-msgstr ""
-
-#: standalone/drakbackup:4445
-#, c-format
-msgid "Advanced Configuration"
-msgstr ""
-
-#: standalone/drakbackup:4450
-#, c-format
-msgid "View Configuration"
-msgstr ""
-
-#: standalone/drakbackup:4454
-#, c-format
-msgid "View Last Log"
-msgstr ""
-
-#: standalone/drakbackup:4459
-#, c-format
-msgid "Backup Now"
-msgstr ""
-
-#: standalone/drakbackup:4463
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: standalone/drakbackup:4501
-#, c-format
-msgid "Load profile"
-msgstr ""
-
-#: standalone/drakbackup:4510
-#, c-format
-msgid "Save profile as..."
-msgstr ""
-
-#: standalone/drakbackup:4532 standalone/drakbackup:4535
-#, c-format
-msgid "Drakbackup"
-msgstr ""
-
-#: standalone/drakboot:49
-#, c-format
-msgid "No bootloader found, creating a new configuration"
-msgstr ""
-
-#: standalone/drakboot:84 standalone/harddrake2:190 standalone/harddrake2:191 standalone/logdrake:69 standalone/printerdrake:150 standalone/printerdrake:151 standalone/printerdrake:152
-#, c-format
-msgid "/_File"
-msgstr ""
-
-#: standalone/drakboot:85 standalone/logdrake:75
-#, c-format
-msgid "/File/_Quit"
-msgstr ""
-
-#: standalone/drakboot:85 standalone/harddrake2:191 standalone/logdrake:75 standalone/printerdrake:152
-#, c-format
-msgid "<control>Q"
-msgstr ""
-
-#: standalone/drakboot:125
-#, c-format
-msgid "Text only"
-msgstr ""
-
-#: standalone/drakboot:126
-#, c-format
-msgid "Verbose"
-msgstr ""
-
-#: standalone/drakboot:127
-#, c-format
-msgid "Silent"
-msgstr ""
-
-#: standalone/drakboot:134
-#, c-format
-msgid "Your system bootloader is not in framebuffer mode. To activate graphical boot, select a graphic video mode from the bootloader configuration tool."
-msgstr ""
-
-#: standalone/drakboot:135
-#, c-format
-msgid "Do you want to configure it now?"
-msgstr ""
-
-#: standalone/drakboot:144
-#, c-format
-msgid "Install themes"
-msgstr ""
-
-#: standalone/drakboot:146
-#, c-format
-msgid "Graphical boot theme selection"
-msgstr ""
-
-#: standalone/drakboot:149
-#, c-format
-msgid "Graphical boot mode:"
-msgstr ""
-
-#: standalone/drakboot:151
-#, c-format
-msgid "Theme"
-msgstr ""
-
-#: standalone/drakboot:154
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-
-#: standalone/drakboot:159
-#, c-format
-msgid "Create new theme"
-msgstr ""
-
-#: standalone/drakboot:191
-#, c-format
-msgid "Default user"
-msgstr ""
-
-#: standalone/drakboot:192
-#, c-format
-msgid "Default desktop"
-msgstr ""
-
-#: standalone/drakboot:195
-#, c-format
-msgid "No, I do not want autologin"
-msgstr ""
-
-#: standalone/drakboot:196
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr ""
-
-#: standalone/drakboot:203
-#, c-format
-msgid "System mode"
-msgstr ""
-
-#: standalone/drakboot:206
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr ""
-
-#: standalone/drakboot:272
-#, c-format
-msgid ""
-"Please choose a video mode, it will be applied to each of the boot entries selected below.\n"
-"Be sure your video card supports the mode you choose."
-msgstr ""
-
-#: standalone/drakbug:41
-#, c-format
-msgid "Mandriva Linux Bug Report Tool"
-msgstr ""
-
-#: standalone/drakbug:46
-#, c-format
-msgid "Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakbug:48
-#, c-format
-msgid "Synchronization tool"
-msgstr ""
-
-#: standalone/drakbug:49 standalone/drakbug:152
-#, c-format
-msgid "Standalone Tools"
-msgstr ""
-
-#: standalone/drakbug:50
-#, c-format
-msgid "HardDrake"
-msgstr ""
-
-#: standalone/drakbug:51
-#, c-format
-msgid "Mandriva Online"
-msgstr ""
-
-#: standalone/drakbug:52
-#, c-format
-msgid "Menudrake"
-msgstr ""
-
-#: standalone/drakbug:53
-#, c-format
-msgid "Msec"
-msgstr ""
-
-#: standalone/drakbug:54
-#, c-format
-msgid "Remote Control"
-msgstr ""
-
-#: standalone/drakbug:55
-#, c-format
-msgid "Software Manager"
-msgstr ""
-
-#: standalone/drakbug:56
-#, c-format
-msgid "Urpmi"
-msgstr ""
-
-#: standalone/drakbug:57
-#, c-format
-msgid "Windows Migration tool"
-msgstr ""
-
-#: standalone/drakbug:58 standalone/draksambashare:1234
-#, c-format
-msgid "Userdrake"
-msgstr ""
-
-#: standalone/drakbug:59
-#, c-format
-msgid "Configuration Wizards"
-msgstr ""
-
-#: standalone/drakbug:81
-#, c-format
-msgid "Select Mandriva Tool:"
-msgstr ""
-
-#: standalone/drakbug:82
-#, c-format
-msgid ""
-"or Application Name\n"
-"(or Full Path):"
-msgstr ""
-
-#: standalone/drakbug:85
-#, c-format
-msgid "Find Package"
-msgstr ""
-
-#: standalone/drakbug:87
-#, c-format
-msgid "Package: "
-msgstr ""
-
-#: standalone/drakbug:88
-#, c-format
-msgid "Kernel:"
-msgstr ""
-
-#: standalone/drakbug:101
-#, c-format
-msgid ""
-"To submit a bug report, click on the report button. \n"
-"This will open a web browser window on %s where you'll find a form to fill in. The information displayed above will be transferred to that server. \n"
-"Things useful to include in your report are the output of lspci, kernel version, and /proc/cpuinfo."
-msgstr ""
-
-#: standalone/drakbug:107
-#, c-format
-msgid "Report"
-msgstr ""
-
-#: standalone/drakbug:162
-#, c-format
-msgid "Not installed"
-msgstr ""
-
-#: standalone/drakbug:174
-#, c-format
-msgid "Package not installed"
-msgstr ""
-
-#: standalone/drakclock:29
-#, c-format
-msgid "DrakClock"
-msgstr ""
-
-#: standalone/drakclock:39
-#, c-format
-msgid "not defined"
-msgstr ""
-
-#: standalone/drakclock:41
-#, c-format
-msgid "Change Time Zone"
-msgstr ""
-
-#: standalone/drakclock:45
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr ""
-
-#: standalone/drakclock:47
-#, c-format
-msgid "GMT - DrakClock"
-msgstr ""
-
-#: standalone/drakclock:47 standalone/finish-install:57
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr ""
-
-#: standalone/drakclock:75
-#, c-format
-msgid "Network Time Protocol"
-msgstr ""
-
-#: standalone/drakclock:77
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-
-#: standalone/drakclock:78
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr ""
-
-#: standalone/drakclock:86
-#, c-format
-msgid "Server:"
-msgstr ""
-
-#: standalone/drakclock:124
-#, c-format
-msgid "Could not synchronize with %s."
-msgstr ""
-
-#: standalone/drakclock:146 standalone/drakclock:156
-#, c-format
-msgid "Reset"
-msgstr ""
-
-#: standalone/drakclock:224
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol\n"
-"\n"
-"Do you want to install ntp?"
-msgstr ""
-
-#: standalone/drakconnect:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr ""
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Gateway:"
-msgstr ""
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Interface:"
-msgstr ""
-
-#: standalone/drakconnect:93 standalone/net_monitor:116
-#, c-format
-msgid "Wait please"
-msgstr ""
-
-#: standalone/drakconnect:109
-#, c-format
-msgid "Interface"
-msgstr ""
-
-#: standalone/drakconnect:109 standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "State"
-msgstr ""
-
-#: standalone/drakconnect:126
-#, c-format
-msgid "Hostname: "
-msgstr ""
-
-#: standalone/drakconnect:128
-#, c-format
-msgid "Configure hostname..."
-msgstr ""
-
-#: standalone/drakconnect:142 standalone/drakconnect:845
-#, c-format
-msgid "LAN configuration"
-msgstr ""
-
-#: standalone/drakconnect:147
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr ""
-
-#: standalone/drakconnect:155 standalone/drakconnect:237 standalone/drakconnect:241
-#, c-format
-msgid "Apply"
-msgstr ""
-
-#: standalone/drakconnect:188
-#, c-format
-msgid "Manage connections"
-msgstr ""
-
-#: standalone/drakconnect:215
-#, c-format
-msgid "Device selected"
-msgstr ""
-
-#: standalone/drakconnect:296
-#, c-format
-msgid "IP configuration"
-msgstr ""
-
-#: standalone/drakconnect:335
-#, c-format
-msgid "DNS servers"
-msgstr ""
-
-#: standalone/drakconnect:343
-#, c-format
-msgid "Search Domain"
-msgstr ""
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "static"
-msgstr ""
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "DHCP"
-msgstr ""
-
-#: standalone/drakconnect:515
-#, c-format
-msgid "Flow control"
-msgstr ""
-
-#: standalone/drakconnect:516
-#, c-format
-msgid "Line termination"
-msgstr ""
-
-#: standalone/drakconnect:527
-#, c-format
-msgid "Modem timeout"
-msgstr ""
-
-#: standalone/drakconnect:531
-#, c-format
-msgid "Use lock file"
-msgstr ""
-
-#: standalone/drakconnect:533
-#, c-format
-msgid "Wait for dialup tone before dialing"
-msgstr ""
-
-#: standalone/drakconnect:536
-#, c-format
-msgid "Busy wait"
-msgstr ""
-
-#: standalone/drakconnect:541
-#, c-format
-msgid "Modem sound"
-msgstr ""
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Enable"
-msgstr ""
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Disable"
-msgstr ""
-
-#: standalone/drakconnect:593 standalone/harddrake2:50
-#, c-format
-msgid "Media class"
-msgstr ""
-
-#: standalone/drakconnect:594
-#, c-format
-msgid "Module name"
-msgstr ""
-
-#: standalone/drakconnect:595
-#, c-format
-msgid "Mac Address"
-msgstr ""
-
-#: standalone/drakconnect:596 standalone/harddrake2:28 standalone/harddrake2:120
-#, c-format
-msgid "Bus"
-msgstr ""
-
-#: standalone/drakconnect:597 standalone/harddrake2:34
-#, c-format
-msgid "Location on the bus"
-msgstr ""
-
-#: standalone/drakconnect:700 standalone/drakgw:311
-#, c-format
-msgid "No ethernet network adapter has been detected on your system. Please run the hardware configuration tool."
-msgstr ""
-
-#: standalone/drakconnect:709
-#, c-format
-msgid "Remove a network interface"
-msgstr ""
-
-#: standalone/drakconnect:713
-#, c-format
-msgid "Select the network interface to remove:"
-msgstr ""
-
-#: standalone/drakconnect:745
-#, c-format
-msgid ""
-"An error occurred while deleting the \"%s\" network interface:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: standalone/drakconnect:746
-#, c-format
-msgid "Congratulations, the \"%s\" network interface has been successfully deleted"
-msgstr ""
-
-#: standalone/drakconnect:761
-#, c-format
-msgid "No IP"
-msgstr ""
-
-#: standalone/drakconnect:762
-#, c-format
-msgid "No Mask"
-msgstr ""
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "up"
-msgstr ""
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "down"
-msgstr ""
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Connected"
-msgstr ""
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Not connected"
-msgstr ""
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Disconnect..."
-msgstr ""
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Connect..."
-msgstr ""
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Deactivate now"
-msgstr ""
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Activate now"
-msgstr ""
-
-#: standalone/drakconnect:849
-#, c-format
-msgid ""
-"You do not have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: standalone/drakconnect:863
-#, c-format
-msgid "LAN Configuration"
-msgstr ""
-
-#: standalone/drakconnect:875
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: standalone/drakconnect:884
-#, c-format
-msgid "Boot Protocol"
-msgstr ""
-
-#: standalone/drakconnect:885
-#, c-format
-msgid "Started on boot"
-msgstr ""
-
-#: standalone/drakconnect:921
-#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakconnect:975 standalone/net_applet:51
-#, c-format
-msgid ""
-"You do not have any configured Internet connection.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: standalone/drakconnect:976 standalone/drakroam:34 standalone/net_applet:52
-#, c-format
-msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
-msgstr ""
-
-#: standalone/drakconnect:981
-#, c-format
-msgid "Internet connection configuration"
-msgstr ""
-
-#: standalone/drakconnect:994
-#, c-format
-msgid "Third DNS server (optional)"
-msgstr ""
-
-#: standalone/drakconnect:1016
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr ""
-
-#: standalone/drakconnect:1017
-#, c-format
-msgid "Internet access"
-msgstr ""
-
-#: standalone/drakconnect:1019 standalone/net_monitor:95
-#, c-format
-msgid "Connection type: "
-msgstr ""
-
-#: standalone/drakconnect:1022
-#, c-format
-msgid "Status:"
-msgstr ""
-
-#: standalone/drakconnect:1027
-#, c-format
-msgid "Parameters"
-msgstr ""
-
-#: standalone/drakedm:40
-#, c-format
-msgid "GDM (GNOME Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:41
-#, c-format
-msgid "KDM (KDE Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:42
-#, c-format
-msgid "XDM (X Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:53
-#, c-format
-msgid "Choosing a display manager"
-msgstr ""
-
-#: standalone/drakedm:54
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-
-#: standalone/drakedm:72
-#, c-format
-msgid "The change is done, do you want to restart the dm service?"
-msgstr ""
-
-#: standalone/drakedm:73
-#, c-format
-msgid "You are going to close all running programs and lose your current session. Are you really sure that you want to restart the dm service?"
-msgstr ""
-
-#: standalone/drakfont:182
-#, c-format
-msgid "Search installed fonts"
-msgstr ""
-
-#: standalone/drakfont:184
-#, c-format
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: standalone/drakfont:207
-#, c-format
-msgid "parse all fonts"
-msgstr ""
-
-#: standalone/drakfont:209
-#, c-format
-msgid "No fonts found"
-msgstr ""
-
-#: standalone/drakfont:217 standalone/drakfont:259 standalone/drakfont:326 standalone/drakfont:359 standalone/drakfont:367 standalone/drakfont:393 standalone/drakfont:411 standalone/drakfont:425
-#, c-format
-msgid "done"
-msgstr ""
-
-#: standalone/drakfont:222
-#, c-format
-msgid "Could not find any font in your mounted partitions"
-msgstr ""
-
-#: standalone/drakfont:257
-#, c-format
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: standalone/drakfont:260
-#, c-format
-msgid ""
-"Could not find any font.\n"
-""
-msgstr ""
-
-#: standalone/drakfont:270
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr ""
-
-#: standalone/drakfont:295
-#, c-format
-msgid "%s fonts conversion"
-msgstr ""
-
-#: standalone/drakfont:324
-#, c-format
-msgid "Fonts copy"
-msgstr ""
-
-#: standalone/drakfont:327
-#, c-format
-msgid "True Type fonts installation"
-msgstr ""
-
-#: standalone/drakfont:334
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: standalone/drakfont:335
-#, c-format
-msgid "True Type install done"
-msgstr ""
-
-#: standalone/drakfont:341 standalone/drakfont:356
-#, c-format
-msgid "type1inst building"
-msgstr ""
-
-#: standalone/drakfont:350
-#, c-format
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: standalone/drakfont:360
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr ""
-
-#: standalone/drakfont:363
-#, c-format
-msgid "Restart XFS"
-msgstr ""
-
-#: standalone/drakfont:409 standalone/drakfont:419
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: standalone/drakfont:421
-#, c-format
-msgid "xfs restart"
-msgstr ""
-
-#: standalone/drakfont:429
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and install them on your system.\n"
-"\n"
-"You can install the fonts the normal way. In rare cases, bogus fonts may hang up your X Server."
-msgstr ""
-
-#: standalone/drakfont:473 standalone/drakfont:482
-#, c-format
-msgid "DrakFont"
-msgstr ""
-
-#: standalone/drakfont:483
-#, c-format
-msgid "Font List"
-msgstr ""
-
-#: standalone/drakfont:486
-#, c-format
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: standalone/drakfont:492
-#, c-format
-msgid "About"
-msgstr ""
-
-#: standalone/drakfont:494 standalone/drakfont:718
-#, c-format
-msgid "Uninstall"
-msgstr ""
-
-#: standalone/drakfont:495
-#, c-format
-msgid "Import"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakfont:513
-#, c-format
-msgid "Copyright (C) 2001-2006 by Mandriva"
-msgstr ""
-
-#: standalone/drakfont:515
-#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: standalone/drakfont:531
-#, c-format
-msgid ""
-"Thanks:\n"
-"\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
-""
-msgstr ""
-
-#: standalone/drakfont:550
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr ""
-
-#: standalone/drakfont:561
-#, c-format
-msgid "Ghostscript"
-msgstr ""
-
-#: standalone/drakfont:562
-#, c-format
-msgid "StarOffice"
-msgstr ""
-
-#: standalone/drakfont:563
-#, c-format
-msgid "Abiword"
-msgstr ""
-
-#: standalone/drakfont:564
-#, c-format
-msgid "Generic Printers"
-msgstr ""
-
-#: standalone/drakfont:578
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: standalone/drakfont:579
-#, c-format
-msgid "File Selection"
-msgstr ""
-
-#: standalone/drakfont:583
-#, c-format
-msgid "Fonts"
-msgstr ""
-
-#: standalone/drakfont:646
-#, c-format
-msgid "Import fonts"
-msgstr ""
-
-#: standalone/drakfont:651
-#, c-format
-msgid "Install fonts"
-msgstr ""
-
-#: standalone/drakfont:681
-#, c-format
-msgid "Are you sure you want to uninstall the following fonts?"
-msgstr ""
-
-#: standalone/drakfont:726
-#, c-format
-msgid "Unselected All"
-msgstr ""
-
-#: standalone/drakfont:729
-#, c-format
-msgid "Selected All"
-msgstr ""
-
-#: standalone/drakfont:743 standalone/drakfont:762
-#, c-format
-msgid "Importing fonts"
-msgstr ""
-
-#: standalone/drakfont:747 standalone/drakfont:767
-#, c-format
-msgid "Initial tests"
-msgstr ""
-
-#: standalone/drakfont:748
-#, c-format
-msgid "Copy fonts on your system"
-msgstr ""
-
-#: standalone/drakfont:749
-#, c-format
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: standalone/drakfont:750
-#, c-format
-msgid "Post Install"
-msgstr ""
-
-#: standalone/drakfont:768
-#, c-format
-msgid "Remove fonts on your system"
-msgstr ""
-
-#: standalone/drakfont:769
-#, c-format
-msgid "Post Uninstall"
-msgstr ""
-
-#: standalone/drakgw:50 standalone/drakvpn:51
-#, c-format
-msgid "Sorry, we support only 2.4 and above kernels."
-msgstr ""
-
-#: standalone/drakgw:75
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr ""
-
-#: standalone/drakgw:79
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network (LAN)."
-msgstr ""
-
-#: standalone/drakgw:95
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-
-#: standalone/drakgw:99
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-
-#: standalone/drakgw:105
-#, c-format
-msgid "Reconfigure"
-msgstr ""
-
-#: standalone/drakgw:145
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-
-#: standalone/drakgw:156
-#, c-format
-msgid "Please choose what network adapter will be connected to your Local Area Network."
-msgstr ""
-
-#: standalone/drakgw:177
-#, c-format
-msgid "Local Area Network settings"
-msgstr ""
-
-#: standalone/drakgw:180
-#, c-format
-msgid "Local IP address"
-msgstr ""
-
-#: standalone/drakgw:182
-#, c-format
-msgid "The internal domain name"
-msgstr ""
-
-#: standalone/drakgw:188
-#, c-format
-msgid ""
-"Potential LAN address conflict found in current config of %s!\n"
-""
-msgstr ""
-
-#: standalone/drakgw:204
-#, c-format
-msgid "Domain Name Server (DNS) configuration"
-msgstr ""
-
-#: standalone/drakgw:208
-#, c-format
-msgid "Use this gateway as domain name server"
-msgstr ""
-
-#: standalone/drakgw:209
-#, c-format
-msgid "The DNS Server IP"
-msgstr ""
-
-#: standalone/drakgw:236
-#, c-format
-msgid ""
-"DHCP Server Configuration.\n"
-"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you do not know the meaning of an option, simply leave it as it is."
-msgstr ""
-
-#: standalone/drakgw:243
-#, c-format
-msgid "Use automatic configuration (DHCP)"
-msgstr ""
-
-#: standalone/drakgw:244
-#, c-format
-msgid "The DHCP start range"
-msgstr ""
-
-#: standalone/drakgw:245
-#, c-format
-msgid "The DHCP end range"
-msgstr ""
-
-#: standalone/drakgw:246
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr ""
-
-#: standalone/drakgw:247
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr ""
-
-#: standalone/drakgw:270
-#, c-format
-msgid "Proxy caching server (SQUID)"
-msgstr ""
-
-#: standalone/drakgw:274
-#, c-format
-msgid "Use this gateway as proxy caching server"
-msgstr ""
-
-#: standalone/drakgw:275
-#, c-format
-msgid "Admin mail"
-msgstr ""
-
-#: standalone/drakgw:276
-#, c-format
-msgid "Visible hostname"
-msgstr ""
-
-#: standalone/drakgw:277
-#, c-format
-msgid "Proxy port"
-msgstr ""
-
-#: standalone/drakgw:278
-#, c-format
-msgid "Cache size (MB)"
-msgstr ""
-
-#: standalone/drakgw:300
-#, c-format
-msgid "Broadcast printer information"
-msgstr ""
-
-#: standalone/drakgw:317
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr ""
-
-#: standalone/drakgw:323
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr ""
-
-#: standalone/drakgw:329
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local Area Network, using automatic network configuration (DHCP) and\n"
-" a Transparent Proxy Cache server (SQUID)."
-msgstr ""
-
-#: standalone/drakgw:363
-#, c-format
-msgid "Disabling servers..."
-msgstr ""
-
-#: standalone/drakgw:377
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr ""
-
-#: standalone/drakgw:378
-#, c-format
-msgid "Warning! An existing firewalling configuration has been detected. You may need some manual fixes after installation."
-msgstr ""
-
-#: standalone/drakgw:383
-#, c-format
-msgid "Configuring..."
-msgstr ""
-
-#: standalone/drakgw:384
-#, c-format
-msgid "Configuring firewall..."
-msgstr ""
-
-#: standalone/drakhelp:17
-#, c-format
-msgid ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"This is free software and may be redistributed under the terms of the GNU GPL.\n"
-"\n"
-"Usage: \n"
-""
-msgstr ""
-
-#: standalone/drakhelp:22
-#, c-format
-msgid ""
-" --help - display this help \n"
-""
-msgstr ""
-
-#: standalone/drakhelp:23
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-""
-msgstr ""
-
-#: standalone/drakhelp:24
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome frontend)\n"
-""
-msgstr ""
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "Mandriva Linux Help Center"
-msgstr ""
-
-#: standalone/drakhelp:51
-#, c-format
-msgid ""
-"No Help entry for %s\n"
-""
-msgstr ""
-
-#: standalone/drakhosts:98
-#, c-format
-msgid "Please add an host to be able to modify it."
-msgstr ""
-
-#: standalone/drakhosts:108
-#, c-format
-msgid "Please modify information"
-msgstr ""
-
-#: standalone/drakhosts:109
-#, c-format
-msgid "Please delete information"
-msgstr ""
-
-#: standalone/drakhosts:110
-#, c-format
-msgid "Please add information"
-msgstr ""
-
-#: standalone/drakhosts:115
-#, c-format
-msgid "IP address:"
-msgstr ""
-
-#: standalone/drakhosts:116
-#, c-format
-msgid "Host name:"
-msgstr ""
-
-#: standalone/drakhosts:117
-#, c-format
-msgid "Host Aliases:"
-msgstr ""
-
-#: standalone/drakhosts:123
-#, c-format
-msgid "Please enter a valid IP address."
-msgstr ""
-
-#: standalone/drakhosts:129
-#, c-format
-msgid "Same IP is already in %s file."
-msgstr ""
-
-#: standalone/drakhosts:197
-#, c-format
-msgid "Host Aliases"
-msgstr ""
-
-#: standalone/drakhosts:237
-#, c-format
-msgid "DrakHOSTS manage hosts definitions"
-msgstr ""
-
-#: standalone/drakhosts:246
-#, c-format
-msgid "Failed to add host."
-msgstr ""
-
-#: standalone/drakhosts:253
-#, c-format
-msgid "Failed to Modify host."
-msgstr ""
-
-#: standalone/drakhosts:260
-#, c-format
-msgid "Failed to remove host."
-msgstr ""
-
-#: standalone/drakids:26
-#, c-format
-msgid "Allowed addresses"
-msgstr ""
-
-#: standalone/drakids:57
-#, c-format
-msgid "Log"
-msgstr ""
-
-#: standalone/drakids:61
-#, c-format
-msgid "Clear logs"
-msgstr ""
-
-#: standalone/drakids:62 standalone/drakids:67 standalone/net_applet:470
-#, c-format
-msgid "Blacklist"
-msgstr ""
-
-#: standalone/drakids:63 standalone/drakids:80 standalone/net_applet:475
-#, c-format
-msgid "Whitelist"
-msgstr ""
-
-#: standalone/drakids:71
-#, c-format
-msgid "Remove from blacklist"
-msgstr ""
-
-#: standalone/drakids:72
-#, c-format
-msgid "Move to whitelist"
-msgstr ""
-
-#: standalone/drakids:84
-#, c-format
-msgid "Remove from whitelist"
-msgstr ""
-
-#: standalone/drakids:136 standalone/drakids:145 standalone/drakids:170 standalone/drakids:179 standalone/drakids:189 standalone/drakids:265 standalone/drakroam:182 standalone/net_applet:202 standalone/net_applet:385
-#, c-format
-msgid "Unable to contact daemon"
-msgstr ""
-
-#: standalone/drakids:202
-#, c-format
-msgid "Date"
-msgstr ""
-
-#: standalone/drakids:203
-#, c-format
-msgid "Attacker"
-msgstr ""
-
-#: standalone/drakids:204
-#, c-format
-msgid "Attack type"
-msgstr ""
-
-#: standalone/drakids:205
-#, c-format
-msgid "Service"
-msgstr ""
-
-#: standalone/drakids:206 standalone/net_applet:72
-#, c-format
-msgid "Network interface"
-msgstr ""
-
-#: standalone/draknfs:41
-#, c-format
-msgid "map root user as anonymous"
-msgstr ""
-
-#: standalone/draknfs:42
-#, c-format
-msgid "map all users to anonymous user"
-msgstr ""
-
-#: standalone/draknfs:43
-#, c-format
-msgid "No user UID mapping"
-msgstr ""
-
-#: standalone/draknfs:44
-#, c-format
-msgid "allow real remote root access"
-msgstr ""
-
-#: standalone/draknfs:83
-#, c-format
-msgid "NFS server"
-msgstr ""
-
-#: standalone/draknfs:83
-#, c-format
-msgid "Restarting/Reloading NFS server..."
-msgstr ""
-
-#: standalone/draknfs:84
-#, c-format
-msgid "Error Restarting/Reloading NFS server"
-msgstr ""
-
-#: standalone/draknfs:100 standalone/draksambashare:203
-#, c-format
-msgid "Directory Selection"
-msgstr ""
-
-#: standalone/draknfs:105 standalone/draksambashare:208
-#, c-format
-msgid "Should be a directory."
-msgstr ""
-
-#: standalone/draknfs:136
-#, c-format
-msgid ""
-"<span weight=\"bold\">NFS clients</span> may be specified in a number of ways:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">single host:</span> a host either by an abbreviated name recognized be the resolver, fully qualified domain name, or an IP address\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">netgroups:</span> NIS netgroups may be given as @group.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">wildcards:</span> machine names may contain the wildcard characters * and ?. For instance: *.cs.foo.edu matches all hosts in the domain cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP networks:</span> you can also export directories to all hosts on an IP (sub-)network simultaneously. for example, either `/255.255.252.0' or `/22' appended to the network base address result.\n"
-""
-msgstr ""
-
-#: standalone/draknfs:151
-#, c-format
-msgid ""
-"<span weight=\"bold\">User ID options</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map root user as anonymous:</span> map requests from uid/gid 0 to the anonymous uid/gid (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">allow real remote root access:</span> turn off root squashing. This option is mainly useful for diskless clients (no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map all users to anonymous user:</span> map all uids and gids to the anonymous user (all_squash). Useful for NFS-exported public FTP directories, news spool directories, etc. The opposite option is no user UID mapping (no_all_squash), which is the default setting.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid and anongid:</span> explicitly set the uid and gid of the anonymous account.\n"
-""
-msgstr ""
-
-#: standalone/draknfs:167
-#, c-format
-msgid "Synchronous access:"
-msgstr ""
-
-#: standalone/draknfs:168
-#, c-format
-msgid "Secured Connection:"
-msgstr ""
-
-#: standalone/draknfs:169
-#, c-format
-msgid "Read-Only share:"
-msgstr ""
-
-#: standalone/draknfs:171
-#, c-format
-msgid "<span weight=\"bold\">Advanced Options</span>"
-msgstr ""
-
-#: standalone/draknfs:172
-#, c-format
-msgid "<span foreground=\"royalblue3\">%s:</span> this option requires that requests originate on an internet port less than IPPORT_RESERVED (1024). This option is on by default."
-msgstr ""
-
-#: standalone/draknfs:173
-#, c-format
-msgid "<span foreground=\"royalblue3\">%s:</span> allow either only read or both read and write requests on this NFS volume. The default is to disallow any request which changes the filesystem. This can also be made explicit by using this option."
-msgstr ""
-
-#: standalone/draknfs:174
-#, c-format
-msgid "<span foreground=\"royalblue3\">%s:</span> disallows the NFS server to violate the NFS protocol and to reply to requests before any changes made by these requests have been committed to stable storage (e.g. disc drive)."
-msgstr ""
-
-#: standalone/draknfs:306
-#, c-format
-msgid "Please add an NFS share to be able to modify it."
-msgstr ""
-
-#: standalone/draknfs:378
-#, c-format
-msgid "Advanced Options Help"
-msgstr ""
-
-#: standalone/draknfs:389
-#, c-format
-msgid "NFS directory"
-msgstr ""
-
-#: standalone/draknfs:391 standalone/draksambashare:592 standalone/draksambashare:771
-#, c-format
-msgid "Directory:"
-msgstr ""
-
-#: standalone/draknfs:394
-#, c-format
-msgid "Host access"
-msgstr ""
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Access:"
-msgstr ""
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Hosts Access"
-msgstr ""
-
-#: standalone/draknfs:399
-#, c-format
-msgid "User ID Mapping"
-msgstr ""
-
-#: standalone/draknfs:401
-#, c-format
-msgid "User ID:"
-msgstr ""
-
-#: standalone/draknfs:401
-#, c-format
-msgid "Help User ID"
-msgstr ""
-
-#: standalone/draknfs:402
-#, c-format
-msgid "Anonymous user ID:"
-msgstr ""
-
-#: standalone/draknfs:403
-#, c-format
-msgid "Anonymous Group ID:"
-msgstr ""
-
-#: standalone/draknfs:444
-#, c-format
-msgid "Can't create this directory."
-msgstr ""
-
-#: standalone/draknfs:447
-#, c-format
-msgid "You must specify hosts access."
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Share Directory"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Hosts Wildcard"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "General Options"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Custom Options"
-msgstr ""
-
-#: standalone/draknfs:539 standalone/draksambashare:629 standalone/draksambashare:796
-#, c-format
-msgid "Please enter a directory to share."
-msgstr ""
-
-#: standalone/draknfs:546
-#, c-format
-msgid "Please use the modify button to set right access."
-msgstr ""
-
-#: standalone/draknfs:600
-#, c-format
-msgid "DrakNFS manage NFS shares"
-msgstr ""
-
-#: standalone/draknfs:609
-#, c-format
-msgid "Failed to add NFS share."
-msgstr ""
-
-#: standalone/draknfs:616
-#, c-format
-msgid "Failed to Modify NFS share."
-msgstr ""
-
-#: standalone/draknfs:623
-#, c-format
-msgid "Failed to remove an NFS share."
-msgstr ""
-
-#: standalone/drakperm:21
-#, c-format
-msgid "System settings"
-msgstr ""
-
-#: standalone/drakperm:22
-#, c-format
-msgid "Custom settings"
-msgstr ""
-
-#: standalone/drakperm:23
-#, c-format
-msgid "Custom & system settings"
-msgstr ""
-
-#: standalone/drakperm:43
-#, c-format
-msgid "Editable"
-msgstr ""
-
-#: standalone/drakperm:48 standalone/drakperm:323 standalone/draksambashare:101
-#, c-format
-msgid "Path"
-msgstr ""
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "User"
-msgstr ""
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "Group"
-msgstr ""
-
-#: standalone/drakperm:48 standalone/drakperm:335
-#, c-format
-msgid "Permissions"
-msgstr ""
-
-#: standalone/drakperm:57
-#, c-format
-msgid "Add a new rule"
-msgstr ""
-
-#: standalone/drakperm:64 standalone/drakperm:99 standalone/drakperm:124
-#, c-format
-msgid "Edit current rule"
-msgstr ""
-
-#: standalone/drakperm:106
-#, c-format
-msgid ""
-"Here you can see files to use in order to fix permissions, owners, and groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
-msgstr ""
-
-#: standalone/drakperm:109
-#, c-format
-msgid ""
-"The current security level is %s.\n"
-"Select permissions to see/edit"
-msgstr ""
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Up"
-msgstr ""
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Move selected rule up one level"
-msgstr ""
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Down"
-msgstr ""
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Move selected rule down one level"
-msgstr ""
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a rule"
-msgstr ""
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a new rule at the end"
-msgstr ""
-
-#: standalone/drakperm:123
-#, c-format
-msgid "Delete selected rule"
-msgstr ""
-
-#: standalone/drakperm:242
-#, c-format
-msgid "browse"
-msgstr ""
-
-#: standalone/drakperm:247
-#, c-format
-msgid "user"
-msgstr ""
-
-#: standalone/drakperm:247
-#, c-format
-msgid "group"
-msgstr ""
-
-#: standalone/drakperm:247
-#, c-format
-msgid "other"
-msgstr ""
-
-#: standalone/drakperm:252
-#, c-format
-msgid "Read"
-msgstr ""
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:255
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr ""
-
-#: standalone/drakperm:259
-#, c-format
-msgid "Write"
-msgstr ""
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:262
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr ""
-
-#: standalone/drakperm:266
-#, c-format
-msgid "Execute"
-msgstr ""
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:269
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr ""
-
-#: standalone/drakperm:272
-#, c-format
-msgid "Sticky-bit"
-msgstr ""
-
-#: standalone/drakperm:272
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Set-UID"
-msgstr ""
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Use owner id for execution"
-msgstr ""
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Set-GID"
-msgstr ""
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Use group id for execution"
-msgstr ""
-
-#: standalone/drakperm:292 standalone/drakxtv:89
-#, c-format
-msgid "User:"
-msgstr ""
-
-#: standalone/drakperm:294
-#, c-format
-msgid "Group:"
-msgstr ""
-
-#: standalone/drakperm:298
-#, c-format
-msgid "Current user"
-msgstr ""
-
-#: standalone/drakperm:299
-#, c-format
-msgid "When checked, owner and group will not be changed"
-msgstr ""
-
-#: standalone/drakperm:309
-#, c-format
-msgid "Path selection"
-msgstr ""
-
-#: standalone/drakperm:329
-#, c-format
-msgid "Property"
-msgstr ""
-
-#: standalone/drakperm:380
-#, c-format
-msgid ""
-"The first character of the path must be a slash (\"/\"):\n"
-"\"%s\""
-msgstr ""
-
-#: standalone/drakperm:390
-#, c-format
-msgid "Both the username and the group must valid!"
-msgstr ""
-
-#: standalone/drakperm:391
-#, c-format
-msgid "User: %s"
-msgstr ""
-
-#: standalone/drakperm:392
-#, c-format
-msgid "Group: %s"
-msgstr ""
-
-#: standalone/drakroam:33
-#, c-format
-msgid ""
-"You do not have any wireless interface.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakroam:48
-#, c-format
-msgid "SSID"
-msgstr ""
-
-#: standalone/drakroam:49
-#, c-format
-msgid "Signal strength"
-msgstr ""
-
-#: standalone/drakroam:51
-#, c-format
-msgid "Encryption"
-msgstr ""
-
-#: standalone/drakroam:112
-#, c-format
-msgid "Please enter settings for wireless network \"%s\""
-msgstr ""
-
-#: standalone/drakroam:123
-#, c-format
-msgid "DNS server"
-msgstr ""
-
-#: standalone/drakroam:228
-#, c-format
-msgid "Connect"
-msgstr ""
-
-#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/drakroam:229 standalone/printerdrake:251
-#, c-format
-msgid "Refresh"
-msgstr ""
-
-#: standalone/draksambashare:68
-#, c-format
-msgid "Share directory"
-msgstr ""
-
-#: standalone/draksambashare:69 standalone/draksambashare:102
-#, c-format
-msgid "Comment"
-msgstr ""
-
-#: standalone/draksambashare:70 standalone/draksambashare:103
-#, c-format
-msgid "Browseable"
-msgstr ""
-
-#: standalone/draksambashare:71
-#, c-format
-msgid "Public"
-msgstr ""
-
-#: standalone/draksambashare:72 standalone/draksambashare:108
-#, c-format
-msgid "Writable"
-msgstr ""
-
-#: standalone/draksambashare:73 standalone/draksambashare:149
-#, c-format
-msgid "Create mask"
-msgstr ""
-
-#: standalone/draksambashare:74 standalone/draksambashare:150
-#, c-format
-msgid "Directory mask"
-msgstr ""
-
-#: standalone/draksambashare:75
-#, c-format
-msgid "Read list"
-msgstr ""
-
-#: standalone/draksambashare:76 standalone/draksambashare:109 standalone/draksambashare:606
-#, c-format
-msgid "Write list"
-msgstr ""
-
-#: standalone/draksambashare:77 standalone/draksambashare:141
-#, c-format
-msgid "Admin users"
-msgstr ""
-
-#: standalone/draksambashare:78 standalone/draksambashare:142
-#, c-format
-msgid "Valid users"
-msgstr ""
-
-#: standalone/draksambashare:79
-#, c-format
-msgid "Inherit Permissions"
-msgstr ""
-
-#: standalone/draksambashare:80 standalone/draksambashare:143
-#, c-format
-msgid "Hide dot files"
-msgstr ""
-
-#: standalone/draksambashare:82 standalone/draksambashare:148
-#, c-format
-msgid "Preserve case"
-msgstr ""
-
-#: standalone/draksambashare:83
-#, c-format
-msgid "Force create mode"
-msgstr ""
-
-#: standalone/draksambashare:84
-#, c-format
-msgid "Force group"
-msgstr ""
-
-#: standalone/draksambashare:85 standalone/draksambashare:147
-#, c-format
-msgid "Default case"
-msgstr ""
-
-#: standalone/draksambashare:100
-#, c-format
-msgid "Printer name"
-msgstr ""
-
-#: standalone/draksambashare:104 standalone/draksambashare:598
-#, c-format
-msgid "Printable"
-msgstr ""
-
-#: standalone/draksambashare:105
-#, c-format
-msgid "Print Command"
-msgstr ""
-
-#: standalone/draksambashare:106
-#, c-format
-msgid "LPQ command"
-msgstr ""
-
-#: standalone/draksambashare:107
-#, c-format
-msgid "Guest ok"
-msgstr ""
-
-#: standalone/draksambashare:110 standalone/draksambashare:151 standalone/draksambashare:607
-#, c-format
-msgid "Inherit permissions"
-msgstr ""
-
-#: standalone/draksambashare:112
-#, c-format
-msgid "Create mode"
-msgstr ""
-
-#: standalone/draksambashare:113
-#, c-format
-msgid "Use client driver"
-msgstr ""
-
-#: standalone/draksambashare:139
-#, c-format
-msgid "Read List"
-msgstr ""
-
-#: standalone/draksambashare:140
-#, c-format
-msgid "Write List"
-msgstr ""
-
-#: standalone/draksambashare:145
-#, c-format
-msgid "Force Group"
-msgstr ""
-
-#: standalone/draksambashare:146
-#, c-format
-msgid "Force create group"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid "About Draksambashare"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid ""
-"Mandriva Linux \n"
-"Release: %s\n"
-"Author: Antoine Ginies\n"
-"\n"
-"This is a simple tool to easily manage Samba configuration."
-msgstr ""
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Samba server"
-msgstr ""
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Restarting/Reloading Samba server..."
-msgstr ""
-
-#: standalone/draksambashare:187
-#, c-format
-msgid "Error Restarting/Reloading Samba server"
-msgstr ""
-
-#: standalone/draksambashare:372
-#, c-format
-msgid "Add a Samba share"
-msgstr ""
-
-#: standalone/draksambashare:375
-#, c-format
-msgid "Goal of this wizard is to easily create a new Samba share."
-msgstr ""
-
-#: standalone/draksambashare:377
-#, c-format
-msgid "Name of the share:"
-msgstr ""
-
-#: standalone/draksambashare:378 standalone/draksambashare:591 standalone/draksambashare:772
-#, c-format
-msgid "Comment:"
-msgstr ""
-
-#: standalone/draksambashare:379
-#, c-format
-msgid "Path:"
-msgstr ""
-
-#: standalone/draksambashare:384
-#, c-format
-msgid "Share with the same name already exist or share name empty, please choose another name."
-msgstr ""
-
-#: standalone/draksambashare:388 standalone/draksambashare:394
-#, c-format
-msgid "Can't create the directory, please enter a correct path."
-msgstr ""
-
-#: standalone/draksambashare:391 standalone/draksambashare:627 standalone/draksambashare:794
-#, c-format
-msgid "Please enter a Comment for this share."
-msgstr ""
-
-#: standalone/draksambashare:422
-#, c-format
-msgid "The wizard successfully added the Samba share. Now just double click on it in treeview to modify it"
-msgstr ""
-
-#: standalone/draksambashare:437
-#, c-format
-msgid "pdf-gen - a PDF generator"
-msgstr ""
-
-#: standalone/draksambashare:438
-#, c-format
-msgid "printers - all printers available"
-msgstr ""
-
-#: standalone/draksambashare:442
-#, c-format
-msgid "Add Special Printer share"
-msgstr ""
-
-#: standalone/draksambashare:445
-#, c-format
-msgid "Goal of this wizard is to easily create a new special printer Samba share."
-msgstr ""
-
-#: standalone/draksambashare:453
-#, c-format
-msgid "A PDF generator already exists."
-msgstr ""
-
-#: standalone/draksambashare:477
-#, c-format
-msgid "Printers and print$ already exist."
-msgstr ""
-
-#: standalone/draksambashare:528
-#, c-format
-msgid "The wizard successfully added the printer Samba share"
-msgstr ""
-
-#: standalone/draksambashare:551
-#, c-format
-msgid "Please add or select a Samba printer share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:587
-#, c-format
-msgid "Printer share"
-msgstr ""
-
-#: standalone/draksambashare:590
-#, c-format
-msgid "Printer name:"
-msgstr ""
-
-#: standalone/draksambashare:596 standalone/draksambashare:777
-#, c-format
-msgid "Writable:"
-msgstr ""
-
-#: standalone/draksambashare:597 standalone/draksambashare:778
-#, c-format
-msgid "Browseable:"
-msgstr ""
-
-#: standalone/draksambashare:602
-#, c-format
-msgid "Advanced options"
-msgstr ""
-
-#: standalone/draksambashare:604
-#, c-format
-msgid "Printer access"
-msgstr ""
-
-#: standalone/draksambashare:608
-#, c-format
-msgid "Guest ok:"
-msgstr ""
-
-#: standalone/draksambashare:609
-#, c-format
-msgid "Create mode:"
-msgstr ""
-
-#: standalone/draksambashare:613
-#, c-format
-msgid "Printer command"
-msgstr ""
-
-#: standalone/draksambashare:615
-#, c-format
-msgid "Print command:"
-msgstr ""
-
-#: standalone/draksambashare:616
-#, c-format
-msgid "LPQ command:"
-msgstr ""
-
-#: standalone/draksambashare:617
-#, c-format
-msgid "Printing:"
-msgstr ""
-
-#: standalone/draksambashare:633
-#, c-format
-msgid "create mode should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:695
-#, c-format
-msgid "DrakSamba entry"
-msgstr ""
-
-#: standalone/draksambashare:700
-#, c-format
-msgid "Please add or select a Samba share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:723
-#, c-format
-msgid "Samba user access"
-msgstr ""
-
-#: standalone/draksambashare:731
-#, c-format
-msgid "Mask options"
-msgstr ""
-
-#: standalone/draksambashare:745
-#, c-format
-msgid "Display options"
-msgstr ""
-
-#: standalone/draksambashare:767
-#, c-format
-msgid "Samba share directory"
-msgstr ""
-
-#: standalone/draksambashare:770
-#, c-format
-msgid "Share name:"
-msgstr ""
-
-#: standalone/draksambashare:776
-#, c-format
-msgid "Public:"
-msgstr ""
-
-#: standalone/draksambashare:800
-#, c-format
-msgid "Create mask, create mode and directory mask should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:807
-#, c-format
-msgid "Please create this Samba user: %s"
-msgstr ""
-
-#: standalone/draksambashare:930
-#, c-format
-msgid "User information"
-msgstr ""
-
-#: standalone/draksambashare:932
-#, c-format
-msgid "User name:"
-msgstr ""
-
-#: standalone/draksambashare:933
-#, c-format
-msgid "Password:"
-msgstr ""
-
-#: standalone/draksambashare:1133
-#, c-format
-msgid "Failed to add Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1142
-#, c-format
-msgid "Failed to Modify Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1151
-#, c-format
-msgid "Failed to remove a Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1158
-#, c-format
-msgid "File share"
-msgstr ""
-
-#: standalone/draksambashare:1166
-#, c-format
-msgid "Add printers"
-msgstr ""
-
-#: standalone/draksambashare:1172
-#, c-format
-msgid "Failed to add printers."
-msgstr ""
-
-#: standalone/draksambashare:1181
-#, c-format
-msgid "Failed to Modify."
-msgstr ""
-
-#: standalone/draksambashare:1190
-#, c-format
-msgid "Failed to remove."
-msgstr ""
-
-#: standalone/draksambashare:1197
-#, c-format
-msgid "Printers"
-msgstr ""
-
-#: standalone/draksambashare:1205
-#, c-format
-msgid "Change password"
-msgstr ""
-
-#: standalone/draksambashare:1210
-#, c-format
-msgid "Failed to change user password."
-msgstr ""
-
-#: standalone/draksambashare:1218
-#, c-format
-msgid "Failed to add user."
-msgstr ""
-
-#: standalone/draksambashare:1221
-#, c-format
-msgid "Delete user"
-msgstr ""
-
-#: standalone/draksambashare:1230
-#, c-format
-msgid "Failed to delete user."
-msgstr ""
-
-#: standalone/draksambashare:1242
-#, c-format
-msgid "Samba Users"
-msgstr ""
-
-#: standalone/draksambashare:1251
-#, c-format
-msgid "DrakSamba manage Samba shares"
-msgstr ""
-
-#: standalone/draksec:49
-#, c-format
-msgid "ALL"
-msgstr ""
-
-#: standalone/draksec:50
-#, c-format
-msgid "LOCAL"
-msgstr ""
-
-#: standalone/draksec:51
-#, c-format
-msgid "NONE"
-msgstr ""
-
-#: standalone/draksec:53 standalone/net_applet:480
-#, c-format
-msgid "Ignore"
-msgstr ""
-
-#. -PO: Do not alter the <span ..> and </span> tags.
-#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
-#: standalone/draksec:103
-#, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Administrator</span>' is the one who will receive security alerts if the\n"
-"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a username or an email.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Level</span>' menu allows you to select one of the six preconfigured security levels\n"
-"provided with msec. These levels range from '<span weight=\"bold\">poor</span>' security and ease of use, to\n"
-"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but very\n"
-"easy to use security level. It should only be used for machines not connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard security\n"
-"recommended for a computer that will be used to connect to the Internet as a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high enough\n"
-"to use the system as a server which can accept connections from many clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-
-#: standalone/draksec:156 standalone/harddrake2:207
-#, c-format
-msgid ""
-"Description of the fields:\n"
-"\n"
-""
-msgstr ""
-
-#: standalone/draksec:170
-#, c-format
-msgid "(default value: %s)"
-msgstr ""
-
-#: standalone/draksec:212
-#, c-format
-msgid "Security Level:"
-msgstr ""
-
-#: standalone/draksec:219
-#, c-format
-msgid "Security Administrator:"
-msgstr ""
-
-#: standalone/draksec:221
-#, c-format
-msgid "Basic options"
-msgstr ""
-
-#: standalone/draksec:235
-#, c-format
-msgid "Network Options"
-msgstr ""
-
-#: standalone/draksec:235
-#, c-format
-msgid "System Options"
-msgstr ""
-
-#: standalone/draksec:270
-#, c-format
-msgid "Periodic Checks"
-msgstr ""
-
-#: standalone/draksec:300
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr ""
-
-#: standalone/draksec:306
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr ""
-
-#: standalone/draksound:47
-#, c-format
-msgid "No Sound Card detected!"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/draksound:50
-#, c-format
-msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-supported Sound Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-
-#: standalone/draksound:57
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or the sndconfig program. Just type \"alsaconf\" or \"sndconfig\" in a console."
-msgstr ""
-
-#: standalone/draksplash:30
-#, c-format
-msgid "x coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:31
-#, c-format
-msgid "y coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:32
-#, c-format
-msgid "text box width"
-msgstr ""
-
-#: standalone/draksplash:33
-#, c-format
-msgid "text box height"
-msgstr ""
-
-#: standalone/draksplash:34
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-
-#: standalone/draksplash:35
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-
-#: standalone/draksplash:36
-#, c-format
-msgid "the width of the progress bar"
-msgstr ""
-
-#: standalone/draksplash:37
-#, c-format
-msgid "the height of the progress bar"
-msgstr ""
-
-#: standalone/draksplash:38
-#, c-format
-msgid "x coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:39
-#, c-format
-msgid "y coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:40
-#, c-format
-msgid "text box transparency"
-msgstr ""
-
-#: standalone/draksplash:41
-#, c-format
-msgid "progress box transparency"
-msgstr ""
-
-#: standalone/draksplash:42
-#, c-format
-msgid "text size"
-msgstr ""
-
-#: standalone/draksplash:59
-#, c-format
-msgid "Choose progress bar color 1"
-msgstr ""
-
-#: standalone/draksplash:60
-#, c-format
-msgid "Choose progress bar color 2"
-msgstr ""
-
-#: standalone/draksplash:61
-#, c-format
-msgid "Choose progress bar background"
-msgstr ""
-
-#: standalone/draksplash:62
-#, c-format
-msgid "Gradient type"
-msgstr ""
-
-#: standalone/draksplash:63
-#, c-format
-msgid "Choose text color"
-msgstr ""
-
-#: standalone/draksplash:65 standalone/draksplash:72
-#, c-format
-msgid "Choose picture"
-msgstr ""
-
-#: standalone/draksplash:66
-#, c-format
-msgid "Silent bootsplash"
-msgstr ""
-
-#: standalone/draksplash:69
-#, c-format
-msgid "Choose text zone color"
-msgstr ""
-
-#: standalone/draksplash:70
-#, c-format
-msgid "Text color"
-msgstr ""
-
-#: standalone/draksplash:71
-#, c-format
-msgid "Background color"
-msgstr ""
-
-#: standalone/draksplash:73
-#, c-format
-msgid "Verbose bootsplash"
-msgstr ""
-
-#: standalone/draksplash:75
-#, c-format
-msgid "Display logo on Console"
-msgstr ""
-
-#: standalone/draksplash:78
-#, c-format
-msgid "Console bootsplash"
-msgstr ""
-
-#: standalone/draksplash:84
-#, c-format
-msgid "Theme name"
-msgstr ""
-
-#: standalone/draksplash:87
-#, c-format
-msgid "final resolution"
-msgstr ""
-
-#: standalone/draksplash:92
-#, c-format
-msgid "Save theme"
-msgstr ""
-
-#: standalone/draksplash:153
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr ""
-
-#: standalone/draksplash:162
-#, c-format
-msgid "Unable to load image file %s"
-msgstr ""
-
-#: standalone/draksplash:173
-#, c-format
-msgid "choose image"
-msgstr ""
-
-#: standalone/draksplash:188
-#, c-format
-msgid "Color selection"
-msgstr ""
-
-#: standalone/drakups:71
-#, c-format
-msgid "Connected through a serial port or an usb cable"
-msgstr ""
-
-#: standalone/drakups:78
-#, c-format
-msgid "Add an UPS device"
-msgstr ""
-
-#: standalone/drakups:81
-#, c-format
-msgid ""
-"Welcome to the UPS configuration utility.\n"
-"\n"
-"Here, you'll add a new UPS to your system.\n"
-""
-msgstr ""
-
-#: standalone/drakups:88
-#, c-format
-msgid ""
-"We're going to add an UPS device.\n"
-"\n"
-"Do you want to autodetect UPS devices connected to this machine or to manually select them?"
-msgstr ""
-
-#: standalone/drakups:91
-#, c-format
-msgid "Autodetection"
-msgstr ""
-
-#: standalone/drakups:99 standalone/harddrake2:375
-#, c-format
-msgid "Detection in progress"
-msgstr ""
-
-#: standalone/drakups:119
-#, c-format
-msgid "The wizard successfully added the following UPS devices:"
-msgstr ""
-
-#: standalone/drakups:121
-#, c-format
-msgid "No new UPS devices was found"
-msgstr ""
-
-#: standalone/drakups:126 standalone/drakups:138
-#, c-format
-msgid "UPS driver configuration"
-msgstr ""
-
-#: standalone/drakups:126
-#, c-format
-msgid "Please select your UPS model."
-msgstr ""
-
-#: standalone/drakups:127
-#, c-format
-msgid "Manufacturer / Model:"
-msgstr ""
-
-#: standalone/drakups:138
-#, c-format
-msgid ""
-"We are configuring the \"%s\" UPS from \"%s\".\n"
-"Please fill in its name, its driver and its port."
-msgstr ""
-
-#: standalone/drakups:143
-#, c-format
-msgid "Name:"
-msgstr ""
-
-#: standalone/drakups:143
-#, c-format
-msgid "The name of your ups"
-msgstr ""
-
-#: standalone/drakups:144
-#, c-format
-msgid "The driver that manages your ups"
-msgstr ""
-
-#: standalone/drakups:145
-#, c-format
-msgid "Port:"
-msgstr ""
-
-#: standalone/drakups:147
-#, c-format
-msgid "The port on which is connected your ups"
-msgstr ""
-
-#: standalone/drakups:157
-#, c-format
-msgid "The wizard successfully configured the new \"%s\" UPS device."
-msgstr ""
-
-#: standalone/drakups:248
-#, c-format
-msgid "UPS devices"
-msgstr ""
-
-#: standalone/drakups:249 standalone/drakups:268 standalone/drakups:284 standalone/harddrake2:85 standalone/harddrake2:111 standalone/harddrake2:118
-#, c-format
-msgid "Name"
-msgstr ""
-
-#: standalone/drakups:267
-#, c-format
-msgid "UPS users"
-msgstr ""
-
-#: standalone/drakups:283
-#, c-format
-msgid "Access Control Lists"
-msgstr ""
-
-#: standalone/drakups:284
-#, c-format
-msgid "IP mask"
-msgstr ""
-
-#: standalone/drakups:296
-#, c-format
-msgid "Rules"
-msgstr ""
-
-#: standalone/drakups:297
-#, c-format
-msgid "Action"
-msgstr ""
-
-#: standalone/drakups:297 standalone/drakvpn:1132 standalone/harddrake2:82
-#, c-format
-msgid "Level"
-msgstr ""
-
-#: standalone/drakups:297
-#, c-format
-msgid "ACL name"
-msgstr ""
-
-#: standalone/drakups:327 standalone/drakups:331 standalone/drakups:340
-#, c-format
-msgid "DrakUPS"
-msgstr ""
-
-#: standalone/drakups:337
-#, c-format
-msgid "Welcome to the UPS configuration tools"
-msgstr ""
-
-#: standalone/drakvpn:73
-#, c-format
-msgid "DrakVPN"
-msgstr ""
-
-#: standalone/drakvpn:95
-#, c-format
-msgid "The VPN connection is enabled."
-msgstr ""
-
-#: standalone/drakvpn:96
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-
-#: standalone/drakvpn:101
-#, c-format
-msgid "disable"
-msgstr ""
-
-#: standalone/drakvpn:101 standalone/drakvpn:127
-#, c-format
-msgid "reconfigure"
-msgstr ""
-
-#: standalone/drakvpn:101 standalone/drakvpn:127 standalone/drakvpn:362 standalone/drakvpn:721
-#, c-format
-msgid "dismiss"
-msgstr ""
-
-#: standalone/drakvpn:105
-#, c-format
-msgid "Disabling VPN..."
-msgstr ""
-
-#: standalone/drakvpn:114
-#, c-format
-msgid "The VPN connection is now disabled."
-msgstr ""
-
-#: standalone/drakvpn:121
-#, c-format
-msgid "VPN connection currently disabled"
-msgstr ""
-
-#: standalone/drakvpn:122
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-
-#: standalone/drakvpn:127
-#, c-format
-msgid "enable"
-msgstr ""
-
-#: standalone/drakvpn:135
-#, c-format
-msgid "Enabling VPN..."
-msgstr ""
-
-#: standalone/drakvpn:141
-#, c-format
-msgid "The VPN connection is now enabled."
-msgstr ""
-
-#: standalone/drakvpn:155 standalone/drakvpn:183
-#, c-format
-msgid "Simple VPN setup."
-msgstr ""
-
-#: standalone/drakvpn:156
-#, c-format
-msgid ""
-"You are about to configure your computer to use a VPN connection.\n"
-"\n"
-"With this feature, computers on your local private network and computers\n"
-"on some other remote private networks, can share resources, through\n"
-"their respective firewalls, over the Internet, in a secure manner. \n"
-"\n"
-"The communication over the Internet is encrypted. The local and remote\n"
-"computers look as if they were on the same network.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using\n"
-"drakconnect before going any further."
-msgstr ""
-
-#: standalone/drakvpn:184
-#, c-format
-msgid ""
-"VPN connection.\n"
-"\n"
-"This program is based on the following projects:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - the docs and man pages coming with the %s package\n"
-"\n"
-"Please read AT LEAST the ipsec-howto docs\n"
-"before going any further."
-msgstr ""
-
-#: standalone/drakvpn:196
-#, c-format
-msgid "Kernel module."
-msgstr ""
-
-#: standalone/drakvpn:197
-#, c-format
-msgid ""
-"The kernel needs to have ipsec support.\n"
-"\n"
-"You're running a %s kernel version.\n"
-"\n"
-"This kernel has '%s' support."
-msgstr ""
-
-#: standalone/drakvpn:264
-#, c-format
-msgid "Problems installing package %s"
-msgstr ""
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "Security Policies"
-msgstr ""
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "IKE daemon racoon"
-msgstr ""
-
-#: standalone/drakvpn:281 standalone/drakvpn:292
-#, c-format
-msgid "Configuration file"
-msgstr ""
-
-#: standalone/drakvpn:282
-#, c-format
-msgid ""
-"Configuration step!\n"
-"\n"
-"You need to define the Security Policies and then to \n"
-"configure the automatic key exchange (IKE) daemon. \n"
-"The KAME IKE daemon we're using is called 'racoon'.\n"
-"\n"
-"What would you like to configure?\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:293
-#, c-format
-msgid ""
-"Next, we will configure the %s file.\n"
-"\n"
-"\n"
-"Simply click on Next.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:311 standalone/drakvpn:671
-#, c-format
-msgid "%s entries"
-msgstr ""
-
-#: standalone/drakvpn:312
-#, c-format
-msgid ""
-"The %s file contents\n"
-"is divided into sections.\n"
-"\n"
-"You can now:\n"
-"\n"
-" - display, add, edit, or remove sections, then\n"
-" - commit the changes\n"
-"\n"
-"What would you like to do?\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display"
-msgstr ""
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid "Commit"
-msgstr ""
-
-#: standalone/drakvpn:333 standalone/drakvpn:337 standalone/drakvpn:695 standalone/drakvpn:699
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display configuration"
-msgstr ""
-
-#: standalone/drakvpn:338
-#, c-format
-msgid ""
-"The %s file does not exist.\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose 'add'.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:354
-#, c-format
-msgid "ipsec.conf entries"
-msgstr ""
-
-#: standalone/drakvpn:355
-#, c-format
-msgid ""
-"The %s file contains different sections.\n"
-"\n"
-"Here is its skeleton:\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"You can now add one of these sections.\n"
-"\n"
-"Choose the section you would like to add.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "config setup"
-msgstr ""
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "conn %default"
-msgstr ""
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "normal conn"
-msgstr ""
-
-#: standalone/drakvpn:368 standalone/drakvpn:409 standalone/drakvpn:496
-#, c-format
-msgid "Exists!"
-msgstr ""
-
-#: standalone/drakvpn:369 standalone/drakvpn:410
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change its name.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:386
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow this config\n"
-"setup section.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:391
-#, c-format
-msgid "interfaces"
-msgstr ""
-
-#: standalone/drakvpn:392
-#, c-format
-msgid "klipsdebug"
-msgstr ""
-
-#: standalone/drakvpn:393
-#, c-format
-msgid "plutodebug"
-msgstr ""
-
-#: standalone/drakvpn:394
-#, c-format
-msgid "plutoload"
-msgstr ""
-
-#: standalone/drakvpn:395
-#, c-format
-msgid "plutostart"
-msgstr ""
-
-#: standalone/drakvpn:396
-#, c-format
-msgid "uniqueids"
-msgstr ""
-
-#: standalone/drakvpn:430
-#, c-format
-msgid ""
-"This is the first section after the config\n"
-"setup one.\n"
-"\n"
-"Here you define the default settings. \n"
-"All the other sections will follow this one.\n"
-"The left settings are optional. If do not define\n"
-"them here, globally, you can define them in each\n"
-"section.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:437
-#, c-format
-msgid "PFS"
-msgstr ""
-
-#: standalone/drakvpn:438
-#, c-format
-msgid "keyingtries"
-msgstr ""
-
-#: standalone/drakvpn:439
-#, c-format
-msgid "compress"
-msgstr ""
-
-#: standalone/drakvpn:440
-#, c-format
-msgid "disablearrivalcheck"
-msgstr ""
-
-#: standalone/drakvpn:441 standalone/drakvpn:480
-#, c-format
-msgid "left"
-msgstr ""
-
-#: standalone/drakvpn:442 standalone/drakvpn:481
-#, c-format
-msgid "leftcert"
-msgstr ""
-
-#: standalone/drakvpn:443 standalone/drakvpn:482
-#, c-format
-msgid "leftrsasigkey"
-msgstr ""
-
-#: standalone/drakvpn:444 standalone/drakvpn:483
-#, c-format
-msgid "leftsubnet"
-msgstr ""
-
-#: standalone/drakvpn:445 standalone/drakvpn:484
-#, c-format
-msgid "leftnexthop"
-msgstr ""
-
-#: standalone/drakvpn:474
-#, c-format
-msgid ""
-"Your %s file has several sections, or connections.\n"
-"\n"
-"You can now add a new section.\n"
-"Choose continue when you are done to write the data.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:477
-#, c-format
-msgid "section name"
-msgstr ""
-
-#: standalone/drakvpn:478
-#, c-format
-msgid "authby"
-msgstr ""
-
-#: standalone/drakvpn:479
-#, c-format
-msgid "auto"
-msgstr ""
-
-#: standalone/drakvpn:485
-#, c-format
-msgid "right"
-msgstr ""
-
-#: standalone/drakvpn:486
-#, c-format
-msgid "rightcert"
-msgstr ""
-
-#: standalone/drakvpn:487
-#, c-format
-msgid "rightrsasigkey"
-msgstr ""
-
-#: standalone/drakvpn:488
-#, c-format
-msgid "rightsubnet"
-msgstr ""
-
-#: standalone/drakvpn:489
-#, c-format
-msgid "rightnexthop"
-msgstr ""
-
-#: standalone/drakvpn:497
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change the name of the section.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:529
-#, c-format
-msgid ""
-"Add a Security Policy.\n"
-"\n"
-"You can now add a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:562 standalone/drakvpn:812
-#, c-format
-msgid "Edit section"
-msgstr ""
-
-#: standalone/drakvpn:563
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to edit \n"
-"and then click on next.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:566 standalone/drakvpn:646 standalone/drakvpn:817 standalone/drakvpn:863
-#, c-format
-msgid "Section names"
-msgstr ""
-
-#: standalone/drakvpn:576
-#, c-format
-msgid "Can not edit!"
-msgstr ""
-
-#: standalone/drakvpn:577
-#, c-format
-msgid ""
-"You cannot edit this section.\n"
-"\n"
-"This section is mandatory for Freeswan 2.X.\n"
-"One has to specify version 2.0 on the top\n"
-"of the %s file, and eventually, disable or\n"
-"enable the opportunistic encryption.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:586
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the config setup section entries.\n"
-"Choose continue when you are done to write the data.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:597
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the default section entries.\n"
-"Choose continue when you are done to write the data.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:610
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the normal section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:631
-#, c-format
-msgid ""
-"Edit a Security Policy.\n"
-"\n"
-"You can now edit a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:642 standalone/drakvpn:859
-#, c-format
-msgid "Remove section"
-msgstr ""
-
-#: standalone/drakvpn:643 standalone/drakvpn:860
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to remove\n"
-"and then click on next.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:672
-#, c-format
-msgid ""
-"The racoon.conf file configuration.\n"
-"\n"
-"The contents of this file is divided into sections.\n"
-"You can now:\n"
-" - display \t\t (display the file contents)\n"
-" - add\t\t\t (add one section)\n"
-" - edit \t\t\t (modify parameters of an existing section)\n"
-" - remove \t\t (remove an existing section)\n"
-" - commit \t\t (writes the changes to the real file)"
-msgstr ""
-
-#: standalone/drakvpn:700
-#, c-format
-msgid ""
-"The %s file does not exist\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose configure.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:714
-#, c-format
-msgid "racoonf.conf entries"
-msgstr ""
-
-#: standalone/drakvpn:715
-#, c-format
-msgid ""
-"The 'add' sections step.\n"
-"\n"
-"Here below is the racoon.conf file skeleton:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Choose the section you would like to add.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "path"
-msgstr ""
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "remote"
-msgstr ""
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "sainfo"
-msgstr ""
-
-#: standalone/drakvpn:729
-#, c-format
-msgid ""
-"The 'add path' section step.\n"
-"\n"
-"The path sections have to be on top of your racoon.conf file.\n"
-"\n"
-"Put your mouse over the certificate entry to obtain online help."
-msgstr ""
-
-#: standalone/drakvpn:732
-#, c-format
-msgid "path type"
-msgstr ""
-
-#: standalone/drakvpn:736
-#, c-format
-msgid ""
-"path include path: specifies a path to include\n"
-"a file. See File Inclusion.\n"
-"\tExample: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: specifies a file containing\n"
-"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
-"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) will search this directory\n"
-"if a certificate or certificate request is received.\n"
-"\tExample: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"other configuration files can be included.\n"
-"\tExample: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File: Pre-shared key file defines a pair\n"
-"of the identifier and the shared secret key which are used at\n"
-"Pre-shared key authentication method in phase 1."
-msgstr ""
-
-#: standalone/drakvpn:756 standalone/drakvpn:849
-#, c-format
-msgid "real file"
-msgstr ""
-
-#: standalone/drakvpn:779
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your racoon.conf file.\n"
-"\n"
-"You can now choose the remote settings.\n"
-"Choose continue or previous when you are done.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:796
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your %s file.\n"
-"\n"
-"You can now choose the sainfo settings.\n"
-"Choose continue or previous when you are done.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:813
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here in the list below the one you want\n"
-"to edit and then click on next.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:824
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"\n"
-"You can now edit the remote section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:833
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the sainfo section entries.\n"
-"\n"
-"Choose continue when you are done to write the data."
-msgstr ""
-
-#: standalone/drakvpn:841
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow these path\n"
-"sections.\n"
-"\n"
-"You can now edit the path entries.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:848
-#, c-format
-msgid "path_type"
-msgstr ""
-
-#: standalone/drakvpn:889
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"\n"
-"You may now share resources through the Internet,\n"
-"in a secure way, using a VPN connection.\n"
-"\n"
-"You should make sure that that the tunnels shorewall\n"
-"section is configured."
-msgstr ""
-
-#: standalone/drakvpn:909
-#, c-format
-msgid "Sainfo source address"
-msgstr ""
-
-#: standalone/drakvpn:910
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 is the source address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 is the source address"
-msgstr ""
-
-#: standalone/drakvpn:927
-#, c-format
-msgid "Sainfo source protocol"
-msgstr ""
-
-#: standalone/drakvpn:928
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe first 'any' allows any protocol for the source"
-msgstr ""
-
-#: standalone/drakvpn:942
-#, c-format
-msgid "Sainfo destination address"
-msgstr ""
-
-#: standalone/drakvpn:943
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 is the destination address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 is the destination address"
-msgstr ""
-
-#: standalone/drakvpn:960
-#, c-format
-msgid "Sainfo destination protocol"
-msgstr ""
-
-#: standalone/drakvpn:961
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe last 'any' allows any protocol for the destination"
-msgstr ""
-
-#: standalone/drakvpn:975
-#, c-format
-msgid "PFS group"
-msgstr ""
-
-#: standalone/drakvpn:977
-#, c-format
-msgid ""
-"define the group of Diffie-Hellman exponentiations.\n"
-"If you do not require PFS then you can omit this directive.\n"
-"Any proposal will be accepted if you do not specify one.\n"
-"group is one of the following: modp768, modp1024, modp1536.\n"
-"Or you can define 1, 2, or 5 as the DH group number."
-msgstr ""
-
-#: standalone/drakvpn:982
-#, c-format
-msgid "Lifetime number"
-msgstr ""
-
-#: standalone/drakvpn:983
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:999
-#, c-format
-msgid "Lifetime unit"
-msgstr ""
-
-#: standalone/drakvpn:1001
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and 'hour'.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:1019
-#, c-format
-msgid "Authentication algorithm"
-msgstr ""
-
-#: standalone/drakvpn:1021
-#, c-format
-msgid "Compression algorithm"
-msgstr ""
-
-#: standalone/drakvpn:1022
-#, c-format
-msgid "deflate"
-msgstr ""
-
-#: standalone/drakvpn:1029
-#, c-format
-msgid "Remote"
-msgstr ""
-
-#: standalone/drakvpn:1030
-#, c-format
-msgid ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specifies the parameters for IKE phase 1 for each remote node.\n"
-"The default port is 500. If anonymous is specified, the state-\n"
-"ments apply to all peers which do not match any other remote\n"
-"directive.\n"
-"\n"
-"Examples: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-msgstr ""
-
-#: standalone/drakvpn:1038
-#, c-format
-msgid "Exchange mode"
-msgstr ""
-
-#: standalone/drakvpn:1040
-#, c-format
-msgid ""
-"defines the exchange mode for phase 1 when racoon is the\n"
-"initiator. Also it means the acceptable exchange mode\n"
-"when racoon is responder. More than one mode can be\n"
-"specified by separating them with a comma. All of the\n"
-"modes are acceptable. The first exchange mode is what\n"
-"racoon uses when it is the initiator.\n"
-""
-msgstr ""
-
-#: standalone/drakvpn:1046
-#, c-format
-msgid "Generate policy"
-msgstr ""
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "off"
-msgstr ""
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "on"
-msgstr ""
-
-#: standalone/drakvpn:1048
-#, c-format
-msgid ""
-"This directive is for the responder. Therefore you\n"
-"should set passive on in order that racoon(8) only\n"
-"becomes a responder. If the responder does not have any\n"
-"policy in SPD during phase 2 negotiation, and the direc-\n"
-"tive is set on, then racoon(8) will choice the first pro-\n"
-"posal in the SA payload from the initiator, and generate\n"
-"policy entries from the proposal. It is useful to nego-\n"
-"tiate with the client which is allocated IP address\n"
-"dynamically. Note that inappropriate policy might be\n"
-"installed into the responder's SPD by the initiator. So\n"
-"that other communication might fail if such policies\n"
-"installed due to some policy mismatches between the ini-\n"
-"tiator and the responder. This directive is ignored in\n"
-"the initiator case. The default value is off."
-msgstr ""
-
-#: standalone/drakvpn:1062
-#, c-format
-msgid "Passive"
-msgstr ""
-
-#: standalone/drakvpn:1064
-#, c-format
-msgid ""
-"If you do not want to initiate the negotiation, set this\n"
-"to on. The default value is off. It is useful for a\n"
-"server."
-msgstr ""
-
-#: standalone/drakvpn:1067
-#, c-format
-msgid "Certificate type"
-msgstr ""
-
-#: standalone/drakvpn:1069
-#, c-format
-msgid "My certfile"
-msgstr ""
-
-#: standalone/drakvpn:1070
-#, c-format
-msgid "Name of the certificate"
-msgstr ""
-
-#: standalone/drakvpn:1071
-#, c-format
-msgid "My private key"
-msgstr ""
-
-#: standalone/drakvpn:1072
-#, c-format
-msgid "Name of the private key"
-msgstr ""
-
-#: standalone/drakvpn:1073
-#, c-format
-msgid "Peers certfile"
-msgstr ""
-
-#: standalone/drakvpn:1074
-#, c-format
-msgid "Name of the peers certificate"
-msgstr ""
-
-#: standalone/drakvpn:1075
-#, c-format
-msgid "Verify cert"
-msgstr ""
-
-#: standalone/drakvpn:1077
-#, c-format
-msgid ""
-"If you do not want to verify the peer's certificate for\n"
-"some reason, set this to off. The default is on."
-msgstr ""
-
-#: standalone/drakvpn:1079
-#, c-format
-msgid "My identifier"
-msgstr ""
-
-#: standalone/drakvpn:1080
-#, c-format
-msgid ""
-"specifies the identifier sent to the remote host and the\n"
-"type to use in the phase 1 negotiation. address, FQDN,\n"
-"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
-"they are used like:\n"
-"\tmy_identifier address [address];\n"
-"\t\tthe type is the IP address. This is the default\n"
-"\t\ttype if you do not specify an identifier to use.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tthe type is a USER_FQDN (user fully-qualified\n"
-"\t\tdomain name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tthe type is a FQDN (fully-qualified domain name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tthe type is a KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tthe type is an ASN.1 distinguished name. If\n"
-"\t\tstring is omitted, racoon(8) will get DN from\n"
-"\t\tSubject field in the certificate.\n"
-"\n"
-"Examples: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-msgstr ""
-
-#: standalone/drakvpn:1100
-#, c-format
-msgid "Peers identifier"
-msgstr ""
-
-#: standalone/drakvpn:1101
-#, c-format
-msgid "Proposal"
-msgstr ""
-
-#: standalone/drakvpn:1103
-#, c-format
-msgid ""
-"specify the encryption algorithm used for the\n"
-"phase 1 negotiation. This directive must be defined. \n"
-"algorithm is one of the following: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For other transforms, this statement should not be used."
-msgstr ""
-
-#: standalone/drakvpn:1110
-#, c-format
-msgid "Hash algorithm"
-msgstr ""
-
-#: standalone/drakvpn:1112
-#, c-format
-msgid "DH group"
-msgstr ""
-
-#: standalone/drakvpn:1119
-#, c-format
-msgid "Command"
-msgstr ""
-
-#: standalone/drakvpn:1120
-#, c-format
-msgid "Source IP range"
-msgstr ""
-
-#: standalone/drakvpn:1121
-#, c-format
-msgid "Destination IP range"
-msgstr ""
-
-#: standalone/drakvpn:1122
-#, c-format
-msgid "Upper-layer protocol"
-msgstr ""
-
-#: standalone/drakvpn:1122 standalone/drakvpn:1129
-#, c-format
-msgid "any"
-msgstr ""
-
-#: standalone/drakvpn:1124
-#, c-format
-msgid "Flag"
-msgstr ""
-
-#: standalone/drakvpn:1125
-#, c-format
-msgid "Direction"
-msgstr ""
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "IPsec policy"
-msgstr ""
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "ipsec"
-msgstr ""
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "discard"
-msgstr ""
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "Mode"
-msgstr ""
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "tunnel"
-msgstr ""
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "transport"
-msgstr ""
-
-#: standalone/drakvpn:1131
-#, c-format
-msgid "Source/destination"
-msgstr ""
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "require"
-msgstr ""
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "default"
-msgstr ""
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "use"
-msgstr ""
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "unique"
-msgstr ""
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (broadcast)"
-msgstr ""
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable)"
-msgstr ""
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "Canada (cable)"
-msgstr ""
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (broadcast)"
-msgstr ""
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (cable)"
-msgstr ""
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "China (broadcast)"
-msgstr ""
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "West Europe"
-msgstr ""
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "East Europe"
-msgstr ""
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "France [SECAM]"
-msgstr ""
-
-#: standalone/drakxtv:48
-#, c-format
-msgid "Newzealand"
-msgstr ""
-
-#: standalone/drakxtv:51
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr ""
-
-#: standalone/drakxtv:85
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: standalone/drakxtv:87
-#, c-format
-msgid "TV norm:"
-msgstr ""
-
-#: standalone/drakxtv:88
-#, c-format
-msgid "Area:"
-msgstr ""
-
-#: standalone/drakxtv:93
-#, c-format
-msgid "Scanning for TV channels in progress..."
-msgstr ""
-
-#: standalone/drakxtv:103
-#, c-format
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: standalone/drakxtv:107
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr ""
-
-#: standalone/drakxtv:110
-#, c-format
-msgid "Have a nice day!"
-msgstr ""
-
-#: standalone/drakxtv:111
-#, c-format
-msgid ""
-"Now, you can run xawtv (under X Window!) !\n"
-""
-msgstr ""
-
-#: standalone/drakxtv:149
-#, c-format
-msgid "No TV Card detected!"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakxtv:151
-#, c-format
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-
-#: standalone/finish-install:42 standalone/keyboarddrake:30
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr ""
-
-#: standalone/harddrake2:25
-#, c-format
-msgid "Alternative drivers"
-msgstr ""
-
-#: standalone/harddrake2:26
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr ""
-
-#: standalone/harddrake2:29
-#, c-format
-msgid "this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-
-#: standalone/harddrake2:31 standalone/harddrake2:146
-#, c-format
-msgid "Bus identification"
-msgstr ""
-
-#: standalone/harddrake2:32
-#, c-format
-msgid "- PCI and USB devices: this lists the vendor, device, subvendor and subdevice PCI/USB ids"
-msgstr ""
-
-#: standalone/harddrake2:35
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "Drive capacity"
-msgstr ""
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
-
-#: standalone/harddrake2:39
-#, c-format
-msgid "this field describes the device"
-msgstr ""
-
-#: standalone/harddrake2:40
-#, c-format
-msgid "Old device file"
-msgstr ""
-
-#: standalone/harddrake2:41
-#, c-format
-msgid "old static device name used in dev package"
-msgstr ""
-
-#: standalone/harddrake2:42
-#, c-format
-msgid "New devfs device"
-msgstr ""
-
-#: standalone/harddrake2:43
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr ""
-
-#. -PO: here "module" is the "jargon term" for a kernel driver
-#: standalone/harddrake2:46
-#, c-format
-msgid "Module"
-msgstr ""
-
-#: standalone/harddrake2:46
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr ""
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "Extended partitions"
-msgstr ""
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "the number of extended partitions"
-msgstr ""
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Geometry"
-msgstr ""
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Cylinder/head/sectors geometry of the disk"
-msgstr ""
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "Disk controller"
-msgstr ""
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "the disk controller on the host side"
-msgstr ""
-
-#: standalone/harddrake2:50
-#, c-format
-msgid "class of hardware device"
-msgstr ""
-
-#: standalone/harddrake2:51 standalone/harddrake2:83 standalone/printerdrake:224
-#, c-format
-msgid "Model"
-msgstr ""
-
-#: standalone/harddrake2:51
-#, c-format
-msgid "hard disk model"
-msgstr ""
-
-#: standalone/harddrake2:52
-#, c-format
-msgid "network printer port"
-msgstr ""
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "Primary partitions"
-msgstr ""
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "the number of the primary partitions"
-msgstr ""
-
-#: standalone/harddrake2:54
-#, c-format
-msgid "the vendor name of the device"
-msgstr ""
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "Bus PCI #"
-msgstr ""
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "the PCI bus on which the device is plugged"
-msgstr ""
-
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device #"
-msgstr ""
-
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device number"
-msgstr ""
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function #"
-msgstr ""
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function number"
-msgstr ""
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "Vendor ID"
-msgstr ""
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "this is the standard numerical identifier of the vendor"
-msgstr ""
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "Device ID"
-msgstr ""
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "this is the numerical identifier of the device"
-msgstr ""
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "Sub vendor ID"
-msgstr ""
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "this is the minor numerical identifier of the vendor"
-msgstr ""
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "Sub device ID"
-msgstr ""
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "this is the minor numerical identifier of the device"
-msgstr ""
-
-#: standalone/harddrake2:62
-#, c-format
-msgid "Device USB ID"
-msgstr ""
-
-#: standalone/harddrake2:62
-#, c-format
-msgid ".."
-msgstr ""
-
-#: standalone/harddrake2:66
-#, c-format
-msgid "Bogomips"
-msgstr ""
-
-#: standalone/harddrake2:66
-#, c-format
-msgid "the GNU/Linux kernel needs to run a calculation loop at boot time to initialize a timer counter. Its result is stored as bogomips as a way to \"benchmark\" the cpu."
-msgstr ""
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "Cache size"
-msgstr ""
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr ""
-
-#. -PO: here "comas" is the medical coma, not the lexical coma!!
-#: standalone/harddrake2:70
-#, c-format
-msgid "Coma bug"
-msgstr ""
-
-#: standalone/harddrake2:70
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr ""
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "Cpuid family"
-msgstr ""
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr ""
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "Cpuid level"
-msgstr ""
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr ""
-
-#: standalone/harddrake2:73
-#, c-format
-msgid "Frequency (MHz)"
-msgstr ""
-
-#: standalone/harddrake2:73
-#, c-format
-msgid "the CPU frequency in MHz (Megahertz which in first approximation may be coarsely assimilated to number of instructions the cpu is able to execute per second)"
-msgstr ""
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "Flags"
-msgstr ""
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr ""
-
-#: standalone/harddrake2:75
-#, c-format
-msgid "Fdiv bug"
-msgstr ""
-
-#: standalone/harddrake2:76
-#, c-format
-msgid "Early Intel Pentium chips manufactured have a bug in their floating point processor which did not achieve the required precision when performing a Floating point DIVision (FDIV)"
-msgstr ""
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "Is FPU present"
-msgstr ""
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr ""
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr ""
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "F00f bug"
-msgstr ""
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
-
-#: standalone/harddrake2:80
-#, c-format
-msgid "Halt bug"
-msgstr ""
-
-#: standalone/harddrake2:81
-#, c-format
-msgid "Some of the early i486DX-100 chips cannot reliably return to operating mode after the \"halt\" instruction is used"
-msgstr ""
-
-#: standalone/harddrake2:82
-#, c-format
-msgid "sub generation of the cpu"
-msgstr ""
-
-#: standalone/harddrake2:83
-#, c-format
-msgid "generation of the cpu (eg: 8 for Pentium III, ...)"
-msgstr ""
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "Model name"
-msgstr ""
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr ""
-
-#: standalone/harddrake2:85
-#, c-format
-msgid "the name of the CPU"
-msgstr ""
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "Processor ID"
-msgstr ""
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "the number of the processor"
-msgstr ""
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "Model stepping"
-msgstr ""
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr ""
-
-#: standalone/harddrake2:88
-#, c-format
-msgid "the vendor name of the processor"
-msgstr ""
-
-#: standalone/harddrake2:89
-#, c-format
-msgid "Write protection"
-msgstr ""
-
-#: standalone/harddrake2:89
-#, c-format
-msgid "the WP flag in the CR0 register of the cpu enforce write protection at the memory page level, thus enabling the processor to prevent unchecked kernel accesses to user memory (aka this is a bug guard)"
-msgstr ""
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "Floppy format"
-msgstr ""
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr ""
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "Channel"
-msgstr ""
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr ""
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "Disk identifier"
-msgstr ""
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "usually the disk serial number"
-msgstr ""
-
-#: standalone/harddrake2:99
-#, c-format
-msgid "Logical unit number"
-msgstr ""
-
-#: standalone/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 ""
-
-#. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...)
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size"
-msgstr ""
-
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled Size"
-msgstr ""
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled size of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:108
-#, c-format
-msgid "type of the memory device"
-msgstr ""
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed"
-msgstr ""
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:110
-#, c-format
-msgid "Bank connections"
-msgstr ""
-
-#: standalone/harddrake2:111
-#, c-format
-msgid "Socket designation of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:115
-#, c-format
-msgid "Device file"
-msgstr ""
-
-#: standalone/harddrake2:115
-#, c-format
-msgid "the device file used to communicate with the kernel driver for the mouse"
-msgstr ""
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "Emulated wheel"
-msgstr ""
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "whether the wheel is emulated or not"
-msgstr ""
-
-#: standalone/harddrake2:117
-#, c-format
-msgid "the type of the mouse"
-msgstr ""
-
-#: standalone/harddrake2:118
-#, c-format
-msgid "the name of the mouse"
-msgstr ""
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "Number of buttons"
-msgstr ""
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr ""
-
-#: standalone/harddrake2:120
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr ""
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "Mouse protocol used by X11"
-msgstr ""
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "the protocol that the graphical desktop use with the mouse"
-msgstr ""
-
-#: standalone/harddrake2:128 standalone/harddrake2:137 standalone/harddrake2:144 standalone/harddrake2:152 standalone/harddrake2:341 standalone/harddrake2:341
-#, c-format
-msgid "Identification"
-msgstr ""
-
-#: standalone/harddrake2:129 standalone/harddrake2:145
-#, c-format
-msgid "Connection"
-msgstr ""
-
-#: standalone/harddrake2:138
-#, c-format
-msgid "Performances"
-msgstr ""
-
-#: standalone/harddrake2:139
-#, c-format
-msgid "Bugs"
-msgstr ""
-
-#: standalone/harddrake2:140
-#, c-format
-msgid "FPU"
-msgstr ""
-
-#: standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr ""
-
-#: standalone/harddrake2:148
-#, c-format
-msgid "Partitions"
-msgstr ""
-
-#: standalone/harddrake2:153
-#, c-format
-msgid "Features"
-msgstr ""
-
-#. -PO: please keep all "/" characters !!!
-#: standalone/harddrake2:176 standalone/logdrake:76 standalone/printerdrake:146 standalone/printerdrake:159 standalone/printerdrake:171
-#, c-format
-msgid "/_Options"
-msgstr ""
-
-#: standalone/harddrake2:177 standalone/harddrake2:202 standalone/logdrake:78 standalone/printerdrake:172 standalone/printerdrake:174 standalone/printerdrake:174 standalone/printerdrake:177 standalone/printerdrake:179
-#, c-format
-msgid "/_Help"
-msgstr ""
-
-#: standalone/harddrake2:181
-#, c-format
-msgid "/Autodetect _printers"
-msgstr ""
-
-#: standalone/harddrake2:182
-#, c-format
-msgid "/Autodetect _modems"
-msgstr ""
-
-#: standalone/harddrake2:183
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr ""
-
-#: standalone/harddrake2:184
-#, c-format
-msgid "/Autodetect parallel _zip drives"
-msgstr ""
-
-#: standalone/harddrake2:191 standalone/printerdrake:152
-#, c-format
-msgid "/_Quit"
-msgstr ""
-
-#: standalone/harddrake2:204
-#, c-format
-msgid "/_Fields description"
-msgstr ""
-
-#: standalone/harddrake2:206
-#, c-format
-msgid "Harddrake help"
-msgstr ""
-
-#: standalone/harddrake2:215
-#, 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 ""
-
-#: standalone/harddrake2:221 standalone/printerdrake:177
-#, c-format
-msgid "/_Report Bug"
-msgstr ""
-
-#: standalone/harddrake2:223 standalone/printerdrake:179
-#, c-format
-msgid "/_About..."
-msgstr ""
-
-#: standalone/harddrake2:224
-#, c-format
-msgid "About Harddrake"
-msgstr ""
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/harddrake2:226
-#, c-format
-msgid ""
-"This is HardDrake, a %s hardware configuration tool.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;tvignaud@mandriva.com&gt;\n"
-"\n"
-""
-msgstr ""
-
-#: standalone/harddrake2:242
-#, c-format
-msgid "Harddrake2"
-msgstr ""
-
-#: standalone/harddrake2:272
-#, c-format
-msgid "Detected hardware"
-msgstr ""
-
-#: standalone/harddrake2:277
-#, c-format
-msgid "Configure module"
-msgstr ""
-
-#: standalone/harddrake2:284
-#, c-format
-msgid "Run config tool"
-msgstr ""
-
-#: standalone/harddrake2:308
-#, c-format
-msgid "Click on a device in the left tree in order to display its information here."
-msgstr ""
-
-#: standalone/harddrake2:329 standalone/printerdrake:306 standalone/printerdrake:320
-#, c-format
-msgid "Unknown"
-msgstr ""
-
-#: standalone/harddrake2:349
-#, c-format
-msgid "Misc"
-msgstr ""
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "secondary"
-msgstr ""
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "primary"
-msgstr ""
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "burner"
-msgstr ""
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "DVD"
-msgstr ""
-
-#: standalone/harddrake2:511
-#, c-format
-msgid "The following devices needs proprietary drivers or firmwares in order to operate smoothly. The appropriate packages can be retrieved from the Mandriva Club. Do you want to subscribe to the Mandriva Club?"
-msgstr ""
-
-#: standalone/keyboarddrake:45
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
-
-#: standalone/localedrake:38
-#, c-format
-msgid "LocaleDrake"
-msgstr ""
-
-#: standalone/localedrake:44
-#, c-format
-msgid "You should install the following packages: %s"
-msgstr ""
-
-#. -PO: the following is used to combine packages names. eg: "initscripts, harddrake, yudit"
-#: standalone/localedrake:47 standalone/scannerdrake:135
-#, c-format
-msgid ", "
-msgstr ""
-
-#: standalone/localedrake:55
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: standalone/logdrake:49
-#, c-format
-msgid "Mandriva Linux Tools Logs"
-msgstr ""
-
-#: standalone/logdrake:50
-#, c-format
-msgid "Logdrake"
-msgstr ""
-
-#: standalone/logdrake:63
-#, c-format
-msgid "Show only for the selected day"
-msgstr ""
-
-#: standalone/logdrake:70
-#, c-format
-msgid "/File/_New"
-msgstr ""
-
-#: standalone/logdrake:70
-#, c-format
-msgid "<control>N"
-msgstr ""
-
-#: standalone/logdrake:71
-#, c-format
-msgid "/File/_Open"
-msgstr ""
-
-#: standalone/logdrake:71
-#, c-format
-msgid "<control>O"
-msgstr ""
-
-#: standalone/logdrake:72
-#, c-format
-msgid "/File/_Save"
-msgstr ""
-
-#: standalone/logdrake:72
-#, c-format
-msgid "<control>S"
-msgstr ""
-
-#: standalone/logdrake:73
-#, c-format
-msgid "/File/Save _As"
-msgstr ""
-
-#: standalone/logdrake:74
-#, c-format
-msgid "/File/-"
-msgstr ""
-
-#: standalone/logdrake:77
-#, c-format
-msgid "/Options/Test"
-msgstr ""
-
-#: standalone/logdrake:79
-#, c-format
-msgid "/Help/_About..."
-msgstr ""
-
-#: standalone/logdrake:108
-#, c-format
-msgid ""
-"_:this is the auth.log log file\n"
-"Authentication"
-msgstr ""
-
-#: standalone/logdrake:109
-#, c-format
-msgid ""
-"_:this is the user.log log file\n"
-"User"
-msgstr ""
-
-#: standalone/logdrake:110
-#, c-format
-msgid ""
-"_:this is the /var/log/messages log file\n"
-"Messages"
-msgstr ""
-
-#: standalone/logdrake:111
-#, c-format
-msgid ""
-"_:this is the /var/log/syslog log file\n"
-"Syslog"
-msgstr ""
-
-#: standalone/logdrake:115
-#, c-format
-msgid "search"
-msgstr ""
-
-#: standalone/logdrake:127
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr ""
-
-#: standalone/logdrake:128 standalone/net_applet:347 standalone/net_monitor:93
-#, c-format
-msgid "Settings"
-msgstr ""
-
-#: standalone/logdrake:133
-#, c-format
-msgid "Matching"
-msgstr ""
-
-#: standalone/logdrake:134
-#, c-format
-msgid "but not matching"
-msgstr ""
-
-#: standalone/logdrake:138
-#, c-format
-msgid "Choose file"
-msgstr ""
-
-#: standalone/logdrake:150
-#, c-format
-msgid "Calendar"
-msgstr ""
-
-#: standalone/logdrake:160
-#, c-format
-msgid "Content of the file"
-msgstr ""
-
-#: standalone/logdrake:164 standalone/logdrake:401
-#, c-format
-msgid "Mail alert"
-msgstr ""
-
-#: standalone/logdrake:171
-#, c-format
-msgid "The alert wizard has failed unexpectedly:"
-msgstr ""
-
-#: standalone/logdrake:224
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr ""
-
-#: standalone/logdrake:379
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr ""
-
-#: standalone/logdrake:380
-#, c-format
-msgid "Domain Name Resolver"
-msgstr ""
-
-#: standalone/logdrake:381
-#, c-format
-msgid "Ftp Server"
-msgstr ""
-
-#: standalone/logdrake:382
-#, c-format
-msgid "Postfix Mail Server"
-msgstr ""
-
-#: standalone/logdrake:383
-#, c-format
-msgid "Samba Server"
-msgstr ""
-
-#: standalone/logdrake:385
-#, c-format
-msgid "Webmin Service"
-msgstr ""
-
-#: standalone/logdrake:386
-#, c-format
-msgid "Xinetd Service"
-msgstr ""
-
-#: standalone/logdrake:395
-#, c-format
-msgid "Configure the mail alert system"
-msgstr ""
-
-#: standalone/logdrake:396
-#, c-format
-msgid "Stop the mail alert system"
-msgstr ""
-
-#: standalone/logdrake:404
-#, c-format
-msgid "Mail alert configuration"
-msgstr ""
-
-#: standalone/logdrake:405
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-""
-msgstr ""
-
-#: standalone/logdrake:415
-#, c-format
-msgid "Services settings"
-msgstr ""
-
-#: standalone/logdrake:416
-#, c-format
-msgid "You will receive an alert if one of the selected services is no longer running"
-msgstr ""
-
-#: standalone/logdrake:423
-#, c-format
-msgid "Load setting"
-msgstr ""
-
-#: standalone/logdrake:424
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: standalone/logdrake:425
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr ""
-
-#: standalone/logdrake:430
-#, c-format
-msgid "Alert configuration"
-msgstr ""
-
-#: standalone/logdrake:431
-#, c-format
-msgid "Please enter your email address below "
-msgstr ""
-
-#: standalone/logdrake:432
-#, c-format
-msgid "and enter the name (or the IP) of the SMTP server you wish to use"
-msgstr ""
-
-#: standalone/logdrake:451
-#, c-format
-msgid "The wizard successfully configured the mail alert."
-msgstr ""
-
-#: standalone/logdrake:457
-#, c-format
-msgid "The wizard successfully disabled the mail alert."
-msgstr ""
-
-#: standalone/logdrake:516
-#, c-format
-msgid "Save as.."
-msgstr ""
-
-#: standalone/mousedrake:31
-#, c-format
-msgid "Please choose your mouse type."
-msgstr ""
-
-#: standalone/mousedrake:44
-#, c-format
-msgid "Emulate third button?"
-msgstr ""
-
-#: standalone/mousedrake:61
-#, c-format
-msgid "Mouse test"
-msgstr ""
-
-#: standalone/mousedrake:64
-#, c-format
-msgid "Please test your mouse:"
-msgstr ""
-
-#: standalone/net_applet:47
-#, c-format
-msgid "Network is up on interface %s"
-msgstr ""
-
-#. -PO: keep the "Configure Network" substring synced with the "Configure Network" message below
-#: standalone/net_applet:50
-#, c-format
-msgid "Network is down on interface %s. Click on \"Configure Network\""
-msgstr ""
-
-#: standalone/net_applet:56 standalone/net_applet:76 standalone/net_monitor:468
-#, c-format
-msgid "Connect %s"
-msgstr ""
-
-#: standalone/net_applet:57 standalone/net_applet:76 standalone/net_monitor:468
-#, c-format
-msgid "Disconnect %s"
-msgstr ""
-
-#: standalone/net_applet:58
-#, c-format
-msgid "Monitor Network"
-msgstr ""
-
-#: standalone/net_applet:60
-#, c-format
-msgid "Manage wireless networks"
-msgstr ""
-
-#: standalone/net_applet:61
-#, c-format
-msgid "Configure Network"
-msgstr ""
-
-#: standalone/net_applet:63
-#, c-format
-msgid "Watched interface"
-msgstr ""
-
-#: standalone/net_applet:93
-#, c-format
-msgid "Profiles"
-msgstr ""
-
-#: standalone/net_applet:102
-#, c-format
-msgid "Get Online Help"
-msgstr ""
-
-#: standalone/net_applet:335
-#, c-format
-msgid "Interactive Firewall automatic mode"
-msgstr ""
-
-#: standalone/net_applet:340
-#, c-format
-msgid "Always launch on startup"
-msgstr ""
-
-#: standalone/net_applet:344
-#, c-format
-msgid "Wireless networks"
-msgstr ""
-
-#: standalone/net_applet:429
-#, c-format
-msgid "Interactive Firewall: intrusion detected"
-msgstr ""
-
-#: standalone/net_applet:442
-#, c-format
-msgid "What do you want to do with this attacker?"
-msgstr ""
-
-#: standalone/net_applet:445
-#, c-format
-msgid "Attack details"
-msgstr ""
-
-#: standalone/net_applet:449
-#, c-format
-msgid "Attack time: %s"
-msgstr ""
-
-#: standalone/net_applet:450
-#, c-format
-msgid "Network interface: %s"
-msgstr ""
-
-#: standalone/net_applet:451
-#, c-format
-msgid "Attack type: %s"
-msgstr ""
-
-#: standalone/net_applet:452
-#, c-format
-msgid "Protocol: %s"
-msgstr ""
-
-#: standalone/net_applet:453
-#, c-format
-msgid "Attacker IP address: %s"
-msgstr ""
-
-#: standalone/net_applet:454
-#, c-format
-msgid "Attacker hostname: %s"
-msgstr ""
-
-#: standalone/net_applet:457
-#, c-format
-msgid "Service attacked: %s"
-msgstr ""
-
-#: standalone/net_applet:458
-#, c-format
-msgid "Port attacked: %s"
-msgstr ""
-
-#: standalone/net_applet:460
-#, c-format
-msgid "Type of ICMP attack: %s"
-msgstr ""
-
-#: standalone/net_applet:465
-#, c-format
-msgid "Always blacklist (do not ask again)"
-msgstr ""
-
-#: standalone/net_monitor:57 standalone/net_monitor:62
-#, c-format
-msgid "Network Monitoring"
-msgstr ""
-
-#: standalone/net_monitor:98
-#, c-format
-msgid "Global statistics"
-msgstr ""
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Instantaneous"
-msgstr ""
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Average"
-msgstr ""
-
-#: standalone/net_monitor:102
-#, c-format
-msgid ""
-"Sending\n"
-"speed:"
-msgstr ""
-
-#: standalone/net_monitor:103
-#, c-format
-msgid ""
-"Receiving\n"
-"speed:"
-msgstr ""
-
-#: standalone/net_monitor:107
-#, c-format
-msgid ""
-"Connection\n"
-"time: "
-msgstr ""
-
-#: standalone/net_monitor:114
-#, c-format
-msgid "Use same scale for received and transmitted"
-msgstr ""
-
-#: standalone/net_monitor:133
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr ""
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr ""
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Connecting to Internet "
-msgstr ""
-
-#: standalone/net_monitor:226
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr ""
-
-#: standalone/net_monitor:227
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr ""
-
-#: standalone/net_monitor:229
-#, c-format
-msgid "Connection complete."
-msgstr ""
-
-#: standalone/net_monitor:230
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandriva Linux Control Center."
-msgstr ""
-
-#: standalone/net_monitor:335
-#, c-format
-msgid "Color configuration"
-msgstr ""
-
-#: standalone/net_monitor:383 standalone/net_monitor:403
-#, c-format
-msgid "sent: "
-msgstr ""
-
-#: standalone/net_monitor:390 standalone/net_monitor:407
-#, c-format
-msgid "received: "
-msgstr ""
-
-#: standalone/net_monitor:397
-#, c-format
-msgid "average"
-msgstr ""
-
-#: standalone/net_monitor:400
-#, c-format
-msgid "Local measure"
-msgstr ""
-
-#: standalone/net_monitor:461
-#, c-format
-msgid "Warning, another internet connection has been detected, maybe using your network"
-msgstr ""
-
-#: standalone/net_monitor:472
-#, c-format
-msgid "No internet connection configured"
-msgstr ""
-
-#: standalone/printerdrake:76
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr ""
-
-#: standalone/printerdrake:128
-#, c-format
-msgid "%s Printer Management Tool"
-msgstr ""
-
-#: standalone/printerdrake:142 standalone/printerdrake:143 standalone/printerdrake:144 standalone/printerdrake:145 standalone/printerdrake:153 standalone/printerdrake:154 standalone/printerdrake:158
-#, c-format
-msgid "/_Actions"
-msgstr ""
-
-#: standalone/printerdrake:142 standalone/printerdrake:154
-#, c-format
-msgid "/_Add Printer"
-msgstr ""
-
-#: standalone/printerdrake:143
-#, c-format
-msgid "/Set as _Default"
-msgstr ""
-
-#: standalone/printerdrake:144
-#, c-format
-msgid "/_Edit"
-msgstr ""
-
-#: standalone/printerdrake:145
-#, c-format
-msgid "/_Delete"
-msgstr ""
-
-#: standalone/printerdrake:146
-#, c-format
-msgid "/_Expert mode"
-msgstr ""
-
-#: standalone/printerdrake:151
-#, c-format
-msgid "/_Refresh"
-msgstr ""
-
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Configure CUPS"
-msgstr ""
-
-#: standalone/printerdrake:171
-#, c-format
-msgid "/Configure _Auto Administration"
-msgstr ""
-
-#: standalone/printerdrake:194
-#, c-format
-msgid "Search:"
-msgstr ""
-
-#: standalone/printerdrake:197
-#, c-format
-msgid "Apply filter"
-msgstr ""
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Def."
-msgstr ""
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Printer Name"
-msgstr ""
-
-#: standalone/printerdrake:224
-#, c-format
-msgid "Connection Type"
-msgstr ""
-
-#: standalone/printerdrake:231
-#, c-format
-msgid "Server Name"
-msgstr ""
-
-#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add Printer"
-msgstr ""
-
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add a new printer to the system"
-msgstr ""
-
-#. -PO: "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set as default"
-msgstr ""
-
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr ""
-
-#: standalone/printerdrake:245
-#, c-format
-msgid "Edit selected printer"
-msgstr ""
-
-#: standalone/printerdrake:248
-#, c-format
-msgid "Delete selected printer"
-msgstr ""
-
-#: standalone/printerdrake:251
-#, c-format
-msgid "Refresh the list"
-msgstr ""
-
-#. -PO: "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS"
-msgstr ""
-
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr ""
-
-#: standalone/printerdrake:310 standalone/printerdrake:324 standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Enabled"
-msgstr ""
-
-#: standalone/printerdrake:310 standalone/printerdrake:324 standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Disabled"
-msgstr ""
-
-#: standalone/printerdrake:596
-#, c-format
-msgid "Authors: "
-msgstr ""
-
-#. -PO: here %s is the version number
-#: standalone/printerdrake:606
-#, c-format
-msgid "Printer Management %s"
-msgstr ""
-
-#: standalone/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 ""
-
-#: standalone/scannerdrake:55
-#, c-format
-msgid "Aborting Scannerdrake."
-msgstr ""
-
-#: standalone/scannerdrake:60
-#, c-format
-msgid "Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-
-#: standalone/scannerdrake:61
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr ""
-
-#: standalone/scannerdrake:67 standalone/scannerdrake:508
-#, c-format
-msgid "Searching for configured scanners..."
-msgstr ""
-
-#: standalone/scannerdrake:71 standalone/scannerdrake:512
-#, c-format
-msgid "Searching for new scanners..."
-msgstr ""
-
-#: standalone/scannerdrake:79 standalone/scannerdrake:534
-#, c-format
-msgid "Re-generating list of configured scanners..."
-msgstr ""
-
-#: standalone/scannerdrake:101
-#, c-format
-msgid "The %s is not supported by this version of %s."
-msgstr ""
-
-#: standalone/scannerdrake:104
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr ""
-
-#: standalone/scannerdrake:116
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
-
-#: standalone/scannerdrake:131
-#, c-format
-msgid "Select a scanner model"
-msgstr ""
-
-#: standalone/scannerdrake:132
-#, c-format
-msgid " ("
-msgstr ""
-
-#: standalone/scannerdrake:133
-#, c-format
-msgid "Detected model: %s"
-msgstr ""
-
-#: standalone/scannerdrake:136
-#, c-format
-msgid "Port: %s"
-msgstr ""
-
-#: standalone/scannerdrake:138 standalone/scannerdrake:141
-#, c-format
-msgid " (UNSUPPORTED)"
-msgstr ""
-
-#: standalone/scannerdrake:144
-#, c-format
-msgid "The %s is not supported under Linux."
-msgstr ""
-
-#: standalone/scannerdrake:171 standalone/scannerdrake:185
-#, c-format
-msgid "Do not install firmware file"
-msgstr ""
-
-#: standalone/scannerdrake:175 standalone/scannerdrake:227
-#, c-format
-msgid "It is possible that your %s needs its firmware to be uploaded everytime when it is turned on."
-msgstr ""
-
-#: standalone/scannerdrake:176 standalone/scannerdrake:228
-#, c-format
-msgid "If this is the case, you can make this be done automatically."
-msgstr ""
-
-#: standalone/scannerdrake:177 standalone/scannerdrake:231
-#, c-format
-msgid "To do so, you need to supply the firmware file for your scanner so that it can be installed."
-msgstr ""
-
-#: standalone/scannerdrake:178 standalone/scannerdrake:232
-#, 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 ""
-
-#: standalone/scannerdrake:180 standalone/scannerdrake:239
-#, c-format
-msgid "Install firmware file from"
-msgstr ""
-
-#: standalone/scannerdrake:200
-#, c-format
-msgid "Select firmware file"
-msgstr ""
-
-#: standalone/scannerdrake:203 standalone/scannerdrake:262
-#, c-format
-msgid "The firmware file %s does not exist or is unreadable!"
-msgstr ""
-
-#: standalone/scannerdrake:226
-#, c-format
-msgid "It is possible that your scanners need their firmware to be uploaded everytime when they are turned on."
-msgstr ""
-
-#: standalone/scannerdrake:230
-#, c-format
-msgid "To do so, you need to supply the firmware files for your scanners so that it can be installed."
-msgstr ""
-
-#: standalone/scannerdrake:233
-#, 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 ""
-
-#: standalone/scannerdrake:235
-#, c-format
-msgid "Install firmware for the"
-msgstr ""
-
-#: standalone/scannerdrake:258
-#, c-format
-msgid "Select firmware file for the %s"
-msgstr ""
-
-#: standalone/scannerdrake:276
-#, c-format
-msgid "Could not install the firmware file for the %s!"
-msgstr ""
-
-#: standalone/scannerdrake:289
-#, c-format
-msgid "The firmware file for your %s was successfully installed."
-msgstr ""
-
-#: standalone/scannerdrake:299
-#, c-format
-msgid "The %s is unsupported"
-msgstr ""
-
-#: standalone/scannerdrake:304
-#, c-format
-msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the %s Control Center in Hardware section."
-msgstr ""
-
-#: standalone/scannerdrake:322
-#, c-format
-msgid "Setting up kernel modules..."
-msgstr ""
-
-#: standalone/scannerdrake:332 standalone/scannerdrake:339 standalone/scannerdrake:369
-#, c-format
-msgid "Auto-detect available ports"
-msgstr ""
-
-#: standalone/scannerdrake:334 standalone/scannerdrake:380
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr ""
-
-#: standalone/scannerdrake:335
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr ""
-
-#: standalone/scannerdrake:337 standalone/scannerdrake:382
-#, c-format
-msgid "choose device"
-msgstr ""
-
-#: standalone/scannerdrake:371
-#, c-format
-msgid "Searching for scanners..."
-msgstr ""
-
-#: standalone/scannerdrake:407 standalone/scannerdrake:414
-#, c-format
-msgid "Attention!"
-msgstr ""
-
-#: standalone/scannerdrake:408
-#, 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 ""
-
-#: standalone/scannerdrake:409 standalone/scannerdrake:418
-#, c-format
-msgid "More info in the driver's manual page. Run the command \"man sane-%s\" to read it."
-msgstr ""
-
-#: standalone/scannerdrake:411 standalone/scannerdrake:420
-#, c-format
-msgid "After that you may scan documents using \"XSane\" or \"Kooka\" from Multimedia/Graphics in the applications menu."
-msgstr ""
-
-#: standalone/scannerdrake:415
-#, c-format
-msgid "Your %s has been configured, but it is possible that additional manual adjustments are needed to get it to work. "
-msgstr ""
-
-#: standalone/scannerdrake:416
-#, 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 ""
-
-#: standalone/scannerdrake:417
-#, c-format
-msgid "edit the configuration file /etc/sane.d/%s.conf. "
-msgstr ""
-
-#: standalone/scannerdrake:423
-#, 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 ""
-
-#: standalone/scannerdrake:448
-#, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-""
-msgstr ""
-
-#: standalone/scannerdrake:449
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-""
-msgstr ""
-
-#: standalone/scannerdrake:452 standalone/scannerdrake:455
-#, c-format
-msgid ""
-"There are no scanners found which are available on your system.\n"
-""
-msgstr ""
-
-#: standalone/scannerdrake:469
-#, c-format
-msgid "Search for new scanners"
-msgstr ""
-
-#: standalone/scannerdrake:475
-#, c-format
-msgid "Add a scanner manually"
-msgstr ""
-
-#: standalone/scannerdrake:482
-#, c-format
-msgid "Install/Update firmware files"
-msgstr ""
-
-#: standalone/scannerdrake:488
-#, c-format
-msgid "Scanner sharing"
-msgstr ""
-
-#: standalone/scannerdrake:547 standalone/scannerdrake:712
-#, c-format
-msgid "All remote machines"
-msgstr ""
-
-#: standalone/scannerdrake:559 standalone/scannerdrake:862
-#, c-format
-msgid "This machine"
-msgstr ""
-
-#: standalone/scannerdrake:599
-#, 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 ""
-
-#: standalone/scannerdrake:600
-#, c-format
-msgid "You can also decide here whether scanners on remote machines should be made available on this machine."
-msgstr ""
-
-#: standalone/scannerdrake:603
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr ""
-
-#: standalone/scannerdrake:605
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr ""
-
-#: standalone/scannerdrake:619
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr ""
-
-#: standalone/scannerdrake:622
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr ""
-
-#: standalone/scannerdrake:649 standalone/scannerdrake:721 standalone/scannerdrake:871
-#, c-format
-msgid "Sharing of local scanners"
-msgstr ""
-
-#: standalone/scannerdrake:650
-#, c-format
-msgid "These are the machines on which the locally connected scanner(s) should be available:"
-msgstr ""
-
-#: standalone/scannerdrake:661 standalone/scannerdrake:811
-#, c-format
-msgid "Add host"
-msgstr ""
-
-#: standalone/scannerdrake:667 standalone/scannerdrake:817
-#, c-format
-msgid "Edit selected host"
-msgstr ""
-
-#: standalone/scannerdrake:676 standalone/scannerdrake:826
-#, c-format
-msgid "Remove selected host"
-msgstr ""
-
-#: standalone/scannerdrake:700 standalone/scannerdrake:708 standalone/scannerdrake:713 standalone/scannerdrake:759 standalone/scannerdrake:850 standalone/scannerdrake:858 standalone/scannerdrake:863 standalone/scannerdrake:909
-#, c-format
-msgid "Name/IP address of host:"
-msgstr ""
-
-#: standalone/scannerdrake:722 standalone/scannerdrake:872
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr ""
-
-#: standalone/scannerdrake:733 standalone/scannerdrake:883
-#, c-format
-msgid ""
-"You must enter a host name or an IP address.\n"
-""
-msgstr ""
-
-#: standalone/scannerdrake:744 standalone/scannerdrake:894
-#, c-format
-msgid ""
-"This host is already in the list, it cannot be added again.\n"
-""
-msgstr ""
-
-#: standalone/scannerdrake:799
-#, c-format
-msgid "Usage of remote scanners"
-msgstr ""
-
-#: standalone/scannerdrake:800
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr ""
-
-#: standalone/scannerdrake:957
-#, 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 ""
-
-#: standalone/scannerdrake:961 standalone/scannerdrake:965
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr ""
-
-#: standalone/service_harddrake:113
-#, c-format
-msgid ""
-"Some devices in the \"%s\" hardware class were removed:\n"
-""
-msgstr ""
-
-#: standalone/service_harddrake:114
-#, c-format
-msgid ""
-"- %s was removed\n"
-""
-msgstr ""
-
-#: standalone/service_harddrake:117
-#, c-format
-msgid ""
-"Some devices were added: %s\n"
-""
-msgstr ""
-
-#: standalone/service_harddrake:118
-#, c-format
-msgid ""
-"- %s was added\n"
-""
-msgstr ""
-
-#: standalone/service_harddrake:235
-#, c-format
-msgid "Hardware probing in progress"
-msgstr ""
-
-#: standalone/service_harddrake_confirm:7
-#, c-format
-msgid "Hardware changes in \"%s\" class (%s seconds to answer)"
-msgstr ""
-
-#: standalone/service_harddrake_confirm:8
-#, c-format
-msgid "Do you want to run the appropriate config tool?"
-msgstr ""
-
-#: steps.pm:14
-#, c-format
-msgid "Language"
-msgstr ""
-
-#: steps.pm:15
-#, c-format
-msgid "License"
-msgstr ""
-
-#: steps.pm:16
-#, c-format
-msgid "Configure mouse"
-msgstr ""
-
-#: steps.pm:17
-#, c-format
-msgid "Hard drive detection"
-msgstr ""
-
-#: steps.pm:18
-#, c-format
-msgid "Select installation class"
-msgstr ""
-
-#: steps.pm:19
-#, c-format
-msgid "Choose your keyboard"
-msgstr ""
-
-#: steps.pm:22
-#, c-format
-msgid "Format partitions"
-msgstr ""
-
-#: steps.pm:23
-#, c-format
-msgid "Choose packages to install"
-msgstr ""
-
-#: steps.pm:24
-#, c-format
-msgid "Install system"
-msgstr ""
-
-#: steps.pm:25
-#, c-format
-msgid "Administrator password"
-msgstr ""
-
-#: steps.pm:26
-#, c-format
-msgid "Add a user"
-msgstr ""
-
-#: steps.pm:27
-#, c-format
-msgid "Configure networking"
-msgstr ""
-
-#: steps.pm:28
-#, c-format
-msgid "Install bootloader"
-msgstr ""
-
-#: steps.pm:29
-#, c-format
-msgid "Configure X"
-msgstr ""
-
-#: steps.pm:31
-#, c-format
-msgid "Configure services"
-msgstr ""
-
-#: steps.pm:32
-#, c-format
-msgid "Install updates"
-msgstr ""
-
-#: steps.pm:33
-#, c-format
-msgid "Exit install"
-msgstr ""
-
-#: ugtk2.pm:899
-#, c-format
-msgid "Is this correct?"
-msgstr ""
-
-#: ugtk2.pm:959
-#, c-format
-msgid "No file chosen"
-msgstr ""
-
-#: ugtk2.pm:961
-#, c-format
-msgid "You have chosen a file, not a directory"
-msgstr ""
-
-#: ugtk2.pm:963
-#, c-format
-msgid "You have chosen a directory, not a file"
-msgstr ""
-
-#: ugtk2.pm:965
-#, c-format
-msgid "No such directory"
-msgstr ""
-
-#: ugtk2.pm:965
-#, c-format
-msgid "No such file"
-msgstr ""
-
-#: ugtk2.pm:1046
-#, c-format
-msgid "Expand Tree"
-msgstr ""
-
-#: ugtk2.pm:1047
-#, c-format
-msgid "Collapse Tree"
-msgstr ""
-
-#: ugtk2.pm:1048
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr ""
-
-#: wizards.pm:95
-#, c-format
-msgid ""
-"%s is not installed\n"
-"Click \"Next\" to install or \"Cancel\" to quit"
-msgstr ""
-
-#: wizards.pm:99
-#, c-format
-msgid "Installation failed"
-msgstr ""
-
diff --git a/perl-install/share/po/Makefile b/perl-install/share/po/Makefile
index 353a86067..10944f5d6 100644
--- a/perl-install/share/po/Makefile
+++ b/perl-install/share/po/Makefile
@@ -1,6 +1,7 @@
include ../../Makefile.config
-PMSFILES = $(ALLPMS) standalone/drakvpn ../move/move.pm ../move/tree/mdk_totem
+NAME = libDrakX
+PMSFILES = $(filter-out install/% standalone/%, $(ALLPMS))
PMSFILES_HERE = $(wildcard $(PMSFILES:%=../../%))
POFILES = $(wildcard *.po)
@@ -10,45 +11,29 @@ LANGS = $(POFILES:%.po=%)
LOCALEDIR=$(DATADIR)/locale
-all: help mofiles
-
-mofiles: $(MOFILES)
-
-help:
- @if [ ! -d doc ]; then \
- echo "Checking out doc stuff now ..."; \
- cvs co doc/manualB/{entities,manuals,modules}; \
- rm -rf doc/CVS; \
- else \
- echo "Updating doc stuff now ..."; \
- cvs update doc/manualB/{entities,manuals,modules}; \
- fi
- touch doc/manualB/entities/es/{button,icon,tab,text_field}_list.ent
- ./help_xml2pm.pl
- mv help-zh_cn.pot help-zh_CN.pot
+all: $(MOFILES)
%.mo: %.po
msgfmt -o $@ $<
-merge:
- for i in $(POFILES); do msgmerge -N -C $$i $$i DrakX.pot > $${i}t; mv $${i}t $$i;done
-
-$(POFILES): DrakX.pot
- perl -ne 'print unless /^# DO NOT BOTHER TO MODIFY HERE, SEE:|^#.*\Qdrakx-help.xml/ .. /^$$/' $@ > $@t
- if [ -e help-$@t ]; then perl -pe 's|^#~ ||' -i $@t ; msgmerge -C $@t help-$@t $< > $@; else msgmerge $@t $< > $@; fi
- rm $@t
+merge: $(NAME).pot
+ for n in $(POFILES); do \
+ echo "Merging $$n"; \
+ msgmerge -C $$n $$n $(NAME).pot > "$$n"t ; \
+ mv -f "$$n"t $$n ; \
+ done
-DrakX.pot: $(PMSFILES_HERE)
+$(NAME).pot: $(PMSFILES_HERE)
cd ../.. ; perl_checker -q --generate-pot share/po/$@ $(PMSFILES)
-install:
+install: $(MOFILES)
for l in $(LANGS); do \
$(SUDO) install -d $(LOCALEDIR)/$$l/LC_MESSAGES; \
$(SUDO) install -m 644 $$l.mo $(LOCALEDIR)/$$l/LC_MESSAGES/$(NAME).mo; \
done
clean:
- @rm -rf drakx-help.xml .memdump doc empty.po tmp.* messages tmp.pot *.mo $(POFILES:%=%t)
+ @rm -rf *.mo $(POFILES:%=%t)
verif:
perl -ne '/^\s*#/ or $$i += my @l = /\b__?\(/g; END { print "$$i\n" }' $(PMSFILES_HERE)
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 5fdb6618b..a134b76d6 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-af\n"
-"POT-Creation-Date: 2006-03-05 18:57+0800\n"
+"POT-Creation-Date: 2007-03-21 12:10+0100\n"
"PO-Revision-Date: 2005-04-21 17:33+0200\n"
"Last-Translator: Dirk van der Walt <dirkvanderwalt@webmail.co.za>\n"
"Language-Team: Afrikaans\n"
@@ -19,835 +19,20 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0.2\n"
-#: ../move/move.pm:292
-#, fuzzy, c-format
-msgid "Which USB key do you want to format?"
-msgstr "Watter tipe inskrywing wil u byvoeg?"
-
-#: ../move/move.pm:296
-#, c-format
-msgid ""
-"You are about to format a USB device \"%s\". This will delete all data on "
-"it.\n"
-"Make sure that the selected device is the USB key you want to format. \n"
-"We advise you to unplug all other USB storage devices while doing this "
-"operation."
-msgstr ""
-
-#: ../move/move.pm:448 ../move/move.pm:460
-#, c-format
-msgid "Key is not writable"
-msgstr "Kan nie skryf na USB-stafie"
-
-#: ../move/move.pm:450
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-"Die USB-stafie het skryf-beskerming ge-aktiveer. Prop dit uit,\n"
-"verwyder die skryf-beskerming, prop dit weer in."
-
-#: ../move/move.pm:452
-#, c-format
-msgid "Retry"
-msgstr "Probeer weer"
-
-#: ../move/move.pm:453 ../move/move.pm:497
-#, c-format
-msgid "Continue without USB key"
-msgstr "Gaan voort sonder USB-stafie"
-
-#: ../move/move.pm:462
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled, but we can not safely\n"
-"unplug it now.\n"
-"\n"
-"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandriva Move again."
-msgstr ""
-"Dit blyk dat die USB-stafie lees alleen is, ons kan dit nie huidiglik met\n"
-"veiligheid uitprop nie.\n"
-"\n"
-"\n"
-"Klik op die herlaai knoppie om die rekenaar te herlaai, prop dit uit,\n"
-"verwyder die skryf-beskerming, prop dit weer in, en loods\n"
-"dan weer Mandriva Move."
-
-#: ../move/move.pm:468 help.pm:410 install_steps_interactive.pm:1303
-#, c-format
-msgid "Reboot"
-msgstr "Herlaai"
-
-#: ../move/move.pm:473
-#, c-format
-msgid ""
-"Your USB key does not have any valid Windows (FAT) partitions.\n"
-"We need one to continue (beside, it's more standard so that you\n"
-"will be able to move and access your files from machines\n"
-"running Windows). Please plug in an USB key containing a\n"
-"Windows partition instead.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-"U USB-stafie het nie enige geldige Windows (FAT) partisies nie.\n"
-"Ons moet voortgaan (dit is ook bruikbaar oor 'n groter hoeveelheid\n"
-"masjiene indien u FAT gebruik. Prop asseblief 'n USB-stafie met 'n\n"
-"USB partisie op in.\n"
-"\n"
-"\n"
-"U kan wel voortgaan sonder 'n USB-stafie - U sal dan Mandriva\n"
-" Move as 'n normale \"live\" bedryfstelsel kan gebruik."
-
-#: ../move/move.pm:483
-#, c-format
-msgid ""
-"We did not detect any USB key on your system. If you\n"
-"plug in an USB key now, Mandriva Move will have the ability\n"
-"to transparently save the data in your home directory and\n"
-"system wide configuration, for next boot on this computer\n"
-"or another one. Note: if you plug in a key now, wait several\n"
-"seconds before detecting again.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-"Ons kon nie enige USB-stafies opspoor nie. U het nou\n"
-"die geleentheid op een in te prop. Mandriva Move het die\n"
-"vermoë op u data in u tuisgids, asook die konfigurasie van die\n"
-"rekenaar daarop te stoor. Dis vind alles deursigtig plaas.\n"
-"Aandag: Indien u nou 'n USB-stafie inprop, wag asseblief paar\n"
-"sekondes voor die opspoor proses weer loop\n"
-"\n"
-"\n"
-"U kan wel voortgaan sonder 'n USB-stafie - U sal dan Mandriva\n"
-" Move as 'n normale \"live\" bedryfstelsel kan gebruik."
-
-#: ../move/move.pm:494
-#, c-format
-msgid "Need a key to save your data"
-msgstr "Benodig 'n USB-stafie vir die stoor van data"
-
-#: ../move/move.pm:496
-#, c-format
-msgid "Detect USB key again"
-msgstr "Spoor weer USB-Stafie op"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Setting up USB key"
-msgstr "Stel USB-stafie op"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr ""
-"Net 'n oomblik, skryf die rekenaar se konfigurasie-lêers na USB-stafie..."
-
-#: ../move/move.pm:546
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
-"Voorsien u gebruikers inligting, wagwoord sal gebruik word vir die "
-"skermbewaarder"
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Auto configuration"
-msgstr "Auto-konfigurasie"
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Net 'n oomblik, spoor en konfigureer us toestelle"
-
-#: ../move/move.pm:604 ../move/move.pm:660 ../move/move.pm:664
-#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/interactive.pm:231
-#: diskdrake/interactive.pm:244 diskdrake/interactive.pm:405
-#: diskdrake/interactive.pm:423 diskdrake/interactive.pm:560
-#: diskdrake/interactive.pm:565 diskdrake/smbnfs_gtk.pm:41 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:52 fsedit.pm:218 install_any.pm:1775
-#: install_any.pm:1827 install_steps.pm:81 install_steps_interactive.pm:37
-#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
-#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
-#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
-#: network/netconnect.pm:837 network/netconnect.pm:866
-#: network/netconnect.pm:965 network/netconnect.pm:969
-#: network/netconnect.pm:973 network/netconnect.pm:978
-#: network/netconnect.pm:1123 network/netconnect.pm:1127
-#: network/netconnect.pm:1246 network/netconnect.pm:1251
-#: network/netconnect.pm:1271 network/netconnect.pm:1428
-#: network/thirdparty.pm:321 network/thirdparty.pm:328
-#: network/thirdparty.pm:372 network/thirdparty.pm:374
-#: network/thirdparty.pm:395 network/thirdparty.pm:419
-#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
-#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
-#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
-#: printer/printerdrake.pm:450 printer/printerdrake.pm:514
-#: printer/printerdrake.pm:686 printer/printerdrake.pm:690
-#: printer/printerdrake.pm:772 printer/printerdrake.pm:1555
-#: printer/printerdrake.pm:1603 printer/printerdrake.pm:1640
-#: printer/printerdrake.pm:1685 printer/printerdrake.pm:1689
-#: printer/printerdrake.pm:1703 printer/printerdrake.pm:1795
-#: printer/printerdrake.pm:1876 printer/printerdrake.pm:1880
-#: printer/printerdrake.pm:1884 printer/printerdrake.pm:1933
-#: printer/printerdrake.pm:1991 printer/printerdrake.pm:1995
-#: printer/printerdrake.pm:2009 printer/printerdrake.pm:2129
-#: printer/printerdrake.pm:2133 printer/printerdrake.pm:2176
-#: printer/printerdrake.pm:2249 printer/printerdrake.pm:2267
-#: printer/printerdrake.pm:2276 printer/printerdrake.pm:2285
-#: printer/printerdrake.pm:2296 printer/printerdrake.pm:2360
-#: printer/printerdrake.pm:2512 printer/printerdrake.pm:2947
-#: printer/printerdrake.pm:3231 printer/printerdrake.pm:3237
-#: printer/printerdrake.pm:3802 printer/printerdrake.pm:3806
-#: printer/printerdrake.pm:3810 printer/printerdrake.pm:4206
-#: printer/printerdrake.pm:4446 printer/printerdrake.pm:4474
-#: printer/printerdrake.pm:4551 printer/printerdrake.pm:4617
-#: printer/printerdrake.pm:4737 standalone/drakTermServ:422
-#: standalone/drakTermServ:492 standalone/drakTermServ:501
-#: standalone/drakTermServ:812 standalone/drakTermServ:819
-#: standalone/drakTermServ:845 standalone/drakTermServ:894
-#: standalone/drakTermServ:1146 standalone/drakTermServ:1181
-#: standalone/drakTermServ:1634 standalone/drakTermServ:1643
-#: standalone/drakTermServ:1651 standalone/drakTermServ:1656
-#: standalone/drakTermServ:1664 standalone/drakTermServ:1680
-#: standalone/drakTermServ:1700 standalone/drakauth:36
-#: standalone/drakbackup:511 standalone/drakbackup:625
-#: standalone/drakbackup:1110 standalone/drakbackup:1141
-#: standalone/drakbackup:1332 standalone/drakbackup:1664
-#: standalone/drakbackup:1820 standalone/drakbackup:2548
-#: standalone/drakbackup:4463 standalone/drakclock:124
-#: standalone/drakconnect:676 standalone/drakconnect:680
-#: standalone/drakconnect:685 standalone/drakconnect:700
-#: standalone/drakfont:209 standalone/drakfont:222 standalone/drakfont:260
-#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakhosts:98
-#: standalone/drakhosts:246 standalone/drakhosts:253 standalone/drakhosts:260
-#: standalone/draknfs:306 standalone/draknfs:609 standalone/draknfs:616
-#: standalone/draknfs:623 standalone/drakroam:33 standalone/draksambashare:384
-#: standalone/draksambashare:388 standalone/draksambashare:391
-#: standalone/draksambashare:394 standalone/draksambashare:453
-#: standalone/draksambashare:477 standalone/draksambashare:551
-#: standalone/draksambashare:633 standalone/draksambashare:700
-#: standalone/draksambashare:800 standalone/draksambashare:807
-#: standalone/draksambashare:942 standalone/draksambashare:1133
-#: standalone/draksambashare:1142 standalone/draksambashare:1151
-#: standalone/draksambashare:1172 standalone/draksambashare:1181
-#: standalone/draksambashare:1190 standalone/draksambashare:1210
-#: standalone/draksambashare:1218 standalone/draksambashare:1230
-#: standalone/draksplash:162 standalone/drakxtv:107
-#: standalone/finish-install:79 standalone/logdrake:171
-#: standalone/logdrake:439 standalone/logdrake:444 standalone/scannerdrake:59
-#: standalone/scannerdrake:202 standalone/scannerdrake:261
-#: standalone/scannerdrake:732 standalone/scannerdrake:743
-#: standalone/scannerdrake:882 standalone/scannerdrake:893
-#: standalone/scannerdrake:963 wizards.pm:95 wizards.pm:99 wizards.pm:121
-#, c-format
-msgid "Error"
-msgstr "Fout"
-
-#: ../move/move.pm:605 install_steps.pm:82
-#, c-format
-msgid ""
-"An error occurred, but I do not know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"'n Fout het plaasgevind en ek weet nie hoe om dit veilig te hanteer\n"
-"nie. Gaan op u eie risiko voort."
-
-#: ../move/move.pm:660 install_steps_interactive.pm:37
-#, c-format
-msgid "An error occurred"
-msgstr "'n Fout het voorgekom"
-
-#: ../move/move.pm:666
-#, c-format
-msgid ""
-"An error occurred:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"This may come from corrupted system configuration files\n"
-"on the USB key, in this case removing them and then\n"
-"rebooting Mandriva Move would fix the problem. To do\n"
-"so, click on the corresponding button.\n"
-"\n"
-"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-"'n Fout het voorgekom:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"Hierdie kan die gevolg wees van 'n korupte konfigurasie-lêers\n"
-"wat op die USB-stafie is, in so geval kan u hulle verwyder\n"
-"en dan Mandriva Move herlaai. Dit behoort die probleem\n"
-"op te los. Om so te maak, klik op die aangewese knoppie.\n"
-"\n"
-"\n"
-"U kan ook herlaai en die USB-stafie verwyder, of selfs sy\n"
-"inhoud deur 'n ander bedryfstelsel bestudeer. U kan ook\n"
-"na die staafleêrs in konsole #3 en #4 loer om meer\n"
-"lig op die probleem te werp."
-
-#: ../move/move.pm:681
-#, c-format
-msgid "Remove system config files"
-msgstr "Verwyder rekenaar se konfigurasie-lêers"
-
-#: ../move/move.pm:682
-#, c-format
-msgid "Simply reboot"
-msgstr "Herlaai bloot"
-
-#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr "Gebruik sonder enige CDROM ondersteuning"
-
-#: ../move/tree/mdk_totem:71
-#, c-format
-msgid "Kill those programs"
-msgstr "Termineer hierdie programme"
-
-#: ../move/tree/mdk_totem:72
-#, c-format
-msgid "No CDROM support"
-msgstr "Geen CDROM ondersteunig"
-
-#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1062 diskdrake/interactive.pm:1072
-#: diskdrake/interactive.pm:1125
-#, c-format
-msgid "Read carefully!"
-msgstr "Lees noukeurig!"
-
-#: ../move/tree/mdk_totem:77
-#, c-format
-msgid ""
-"You can not use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-"U kan nie 'n ander CDROM saam met die volgende programme gebruik nie: \n"
-"%s"
-
-#: ../move/tree/mdk_totem:101
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr "Kopieer na die geheue om die CDROM te kan verwyder"
-
-#: Xconfig/card.pm:13
-#, c-format
-msgid "256 kB"
-msgstr "256 kB"
-
-#: Xconfig/card.pm:14
-#, c-format
-msgid "512 kB"
-msgstr "512 kB"
-
-#: Xconfig/card.pm:15
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
-
-#: Xconfig/card.pm:16
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
-
-#: Xconfig/card.pm:17
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
-
-#: Xconfig/card.pm:18
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
-
-#: Xconfig/card.pm:19
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: Xconfig/card.pm:20
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
-
-#: Xconfig/card.pm:21
-#, c-format
-msgid "64 MB or more"
-msgstr "64MB of meer"
-
-#: Xconfig/card.pm:162
-#, c-format
-msgid "X server"
-msgstr "X-bediener"
-
-#: Xconfig/card.pm:163
-#, c-format
-msgid "Choose an X server"
-msgstr "Kies 'n X-bediener"
-
-#: Xconfig/card.pm:195
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Multikop-konfigurasie"
-
-#: Xconfig/card.pm:196
-#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"U stelsel onderstuen multikop-konfigurasie.\n"
-"Wat wil u doen?"
-
-#: Xconfig/card.pm:265
-#, c-format
-msgid "Can not install Xorg package: %s"
-msgstr "Kan nie Xorg pakket installeer nie: %s"
-
-#: Xconfig/card.pm:275
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Kies die geheue grootte van u videokaart"
-
-#: Xconfig/card.pm:371
-#, c-format
-msgid "Xorg configuration"
-msgstr "Xorg-konfigurasie"
-
-#: Xconfig/card.pm:373
-#, c-format
-msgid "Which configuration of Xorg do you want to have?"
-msgstr "Watter tipe Xorg-konfigurasie verlang u?"
-
-#: Xconfig/card.pm:406
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Konfigureer skyfkoppe afsonderlik"
-
-#: Xconfig/card.pm:407
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Gebruik Xinerama-ekstensies"
-
-#: Xconfig/card.pm:412
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Konfigureer net die \"%s\"%s kaart"
-
-#: Xconfig/card.pm:424 Xconfig/various.pm:23
-#, c-format
-msgid "Xorg %s"
-msgstr "Xorg %s"
-
-#: Xconfig/card.pm:431 Xconfig/various.pm:22
-#, c-format
-msgid "Xorg %s with 3D hardware acceleration"
-msgstr "Xorg %s met 3D-hardwareversnelling"
-
-#: Xconfig/card.pm:433
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with Xorg %s."
-msgstr "U videokaart kan 3D-hardewareversnelling onderstuen in Xorg %s."
-
-#: Xconfig/card.pm:439
-#, c-format
-msgid "Xorg %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "Xorg %s met EKSPERIMENTELE 3D-hardewareversnelling"
-
-#: Xconfig/card.pm:441
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with Xorg %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling\n"
-"onder XFree86 %s bied,\n"
-"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
-
-#
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:1021
-#, c-format
-msgid "Custom"
-msgstr "Aangepaste"
-
-#: Xconfig/main.pm:127 any.pm:742 diskdrake/dav.pm:26 help.pm:15
-#: install_steps_interactive.pm:1303 printer/printerdrake.pm:882
-#: printer/printerdrake.pm:899 printer/printerdrake.pm:4546
-#: printer/printerdrake.pm:5010 standalone/drakhosts:263
-#: standalone/drakroam:230 standalone/draksplash:93 standalone/logdrake:176
-#: standalone/net_applet:103 standalone/scannerdrake:494
-#, c-format
-msgid "Quit"
-msgstr "Verlaat"
-
-#: Xconfig/main.pm:129
-#, c-format
-msgid "Graphic Card"
-msgstr "Grafiesekaart"
-
-#: Xconfig/main.pm:132 Xconfig/monitor.pm:110
-#, c-format
-msgid "Monitor"
-msgstr "Monitor"
-
-#: Xconfig/main.pm:135 Xconfig/resolution_and_depth.pm:289
-#, c-format
-msgid "Resolution"
-msgstr "Resolusie"
-
-#: Xconfig/main.pm:138
-#, c-format
-msgid "Test"
-msgstr "Toets"
-
-#: Xconfig/main.pm:143 diskdrake/dav.pm:65 diskdrake/interactive.pm:449
-#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
-#: printer/printerdrake.pm:1112 standalone/drakfont:493
-#: standalone/drakfont:548
-#, c-format
-msgid "Options"
-msgstr "Opsies"
-
-#: Xconfig/main.pm:178
-#, c-format
-msgid "Your Xorg configuration file is broken, we will ignore it."
-msgstr ""
-
-#: Xconfig/main.pm:196
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Behou die veranderinge?\n"
-"Huidige konfigurasie is:\n"
-"\n"
-"%s"
-
-#: Xconfig/monitor.pm:111
-#, fuzzy, c-format
-msgid "Choose a monitor for head #%d"
-msgstr "Kies 'n monitor"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor"
-msgstr "Kies 'n monitor"
-
-#: Xconfig/monitor.pm:117
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n Play"
-
-#: Xconfig/monitor.pm:118 mouse.pm:49
-#, c-format
-msgid "Generic"
-msgstr "Generies"
-
-#: Xconfig/monitor.pm:119 standalone/drakconnect:591 standalone/harddrake2:54
-#: standalone/harddrake2:88
-#, c-format
-msgid "Vendor"
-msgstr "Vervaardiger"
-
-#: Xconfig/monitor.pm:129
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "'Plug 'n Play'-aftas het gefaal. Kies asseblief self die monitor"
-
-#: Xconfig/monitor.pm:137
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Die kritiese twee parameters is die vertikale verfristempo (die tempo\n"
-"waarteen die hele skerm verfris) en die horisontale sinkronisasietempo (die\n"
-"tempo waarteen die horisontale skandeerlyne vertoon word). Lg. is die\n"
-"belangrikste.\n"
-"\n"
-"Dit is BAIE BELANGRIK dat u nie 'n sinkronisasie bereik buite dié van u\n"
-"monitor spesifiseer nie, dit kan die monitor beskadig. Indien u twyfel,\n"
-"kies konservatief."
-
-#: Xconfig/monitor.pm:144
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Horisontale verfristempo"
-
-#: Xconfig/monitor.pm:145
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Vertikale verfristempo"
-
-#: Xconfig/resolution_and_depth.pm:10
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 kleure (8 bis)"
-
-#: Xconfig/resolution_and_depth.pm:11
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32-duisend kleure (15 bis)"
-
-#: Xconfig/resolution_and_depth.pm:12
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65-duisend kleure (16 bis)"
-
-#: Xconfig/resolution_and_depth.pm:13
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16-miljoen kleure (24 bis)"
-
-#: Xconfig/resolution_and_depth.pm:127
-#, c-format
-msgid "Resolutions"
-msgstr "Resolusies"
-
-#: Xconfig/resolution_and_depth.pm:311 diskdrake/hd_gtk.pm:336
-#: install_steps_gtk.pm:288 mouse.pm:168 services.pm:162
-#: standalone/drakbackup:1606 standalone/drakperm:250
-#, c-format
-msgid "Other"
-msgstr "Ander"
-
-#: Xconfig/resolution_and_depth.pm:360
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Kies die resolusie en kleurdiepte"
-
-#: Xconfig/resolution_and_depth.pm:361
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Videokaart: %s"
-
-#: Xconfig/resolution_and_depth.pm:375 interactive.pm:119 interactive.pm:436
-#: interactive/http.pm:103 interactive/http.pm:156 interactive/newt.pm:321
-#: interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:143
-#: standalone/drakTermServ:222 standalone/drakTermServ:543
-#: standalone/drakbackup:1372 standalone/drakbackup:4123
-#: standalone/drakbackup:4183 standalone/drakbackup:4227
-#: standalone/drakbackup:4481 standalone/drakconnect:158
-#: standalone/drakconnect:852 standalone/drakconnect:939
-#: standalone/drakconnect:1030 standalone/drakfont:569 standalone/drakfont:579
-#: standalone/draksplash:173 standalone/drakups:210 standalone/net_monitor:339
-#: ugtk2.pm:392 ugtk2.pm:490 ugtk2.pm:899 ugtk2.pm:922
-#, c-format
-msgid "Ok"
-msgstr "OK"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/smbnfs_gtk.pm:80 help.pm:90
-#: help.pm:445 install_steps_gtk.pm:455 install_steps_interactive.pm:406
-#: install_steps_interactive.pm:811 interactive.pm:120 interactive.pm:437
-#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
-#: interactive/stdio.pm:39 interactive/stdio.pm:142
-#: printer/printerdrake.pm:3882 standalone/drakautoinst:215
-#: standalone/drakbackup:1372 standalone/drakbackup:4052
-#: standalone/drakbackup:4056 standalone/drakbackup:4111
-#: standalone/drakbackup:4481 standalone/drakconnect:157
-#: standalone/drakconnect:937 standalone/drakconnect:1029
-#: standalone/drakfont:579 standalone/drakfont:655 standalone/drakfont:733
-#: standalone/draksplash:173 standalone/drakups:217 standalone/logdrake:176
-#: standalone/net_monitor:338 ugtk2.pm:386 ugtk2.pm:488 ugtk2.pm:497
-#: ugtk2.pm:899
-#, c-format
-msgid "Cancel"
-msgstr "Kanselleer"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/hd_gtk.pm:150
-#: install_steps_gtk.pm:232 install_steps_gtk.pm:617 interactive.pm:567
-#: interactive/gtk.pm:682 interactive/gtk.pm:684 standalone/drakTermServ:311
-#: standalone/drakbackup:4048 standalone/drakbug:105
-#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:511 standalone/draknfs:206 standalone/drakperm:133
-#: standalone/draksambashare:320 standalone/draksec:344 standalone/draksec:346
-#: standalone/draksec:364 standalone/draksec:366 ugtk2.pm:1031 ugtk2.pm:1032
-#, c-format
-msgid "Help"
-msgstr "Hulp"
-
-#: Xconfig/test.pm:30
-#, c-format
-msgid "Test of the configuration"
-msgstr "Toets konfigurasie"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Wil u die konfigurasie toets?"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Waarskuwing: deur hierdie grafikakaart te toets, mag u rekenaar fries"
-
-#: Xconfig/test.pm:69
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"'n Fout het voorgekom:\n"
-"%s\n"
-"Probeer om van u parameters te verander"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Verlaat in %d sekondes"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Is dit korrek?"
-
-#: Xconfig/various.pm:29
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Sleutelbord uitleg: %s\n"
-
-#: Xconfig/various.pm:30
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Muistipe: %s\n"
-
-#: Xconfig/various.pm:31
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Muistoestel: %s\n"
-
-#: Xconfig/various.pm:33
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: Xconfig/various.pm:34
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Monitor HoriSink: %s\n"
-
-#: Xconfig/various.pm:35
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Monitor VertVerfris: %s\n"
-
-#: Xconfig/various.pm:37
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Videokaart: %s\n"
-
-#: Xconfig/various.pm:38
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Video geheue: %s kB\n"
-
-#: Xconfig/various.pm:40
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Kleurdiepte: %s\n"
-
-#: Xconfig/various.pm:41
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Resolusie: %s\n"
-
-#: Xconfig/various.pm:43
-#, c-format
-msgid "Xorg driver: %s\n"
-msgstr "Xorg-drywer: %s\n"
-
-#: Xconfig/various.pm:72
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "X met herlaai"
-
-#: Xconfig/various.pm:74
-#, c-format
-msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(Xorg) upon booting.\n"
-"Would you like Xorg to start when you reboot?"
-msgstr ""
-"Ek kan u rekenaar so opstel om X outomaties te laai.\n"
-"Wil u X begin met 'n herlaai?"
-
-#: Xconfig/various.pm:87
-#, c-format
-msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
-msgstr ""
-"Dit blyk dat u vertoonkaart 'n 'TV-OUT'-verbinding het.\n"
-"Dit kan opgestel word deur 'frame-buffer' (raam-buffer)\n"
-"te gebruik.\n"
-"\n"
-"Om dit te laat werk, moet u die vertoonkaart aan die TV gekoppel wees\n"
-"voordat u die rekenaar aanskakel.\n"
-"Kies dan die \"TV out\" inskrywing op die herlaaistelsel se kieslys\n"
-"\n"
-"Verlang u hierdie funksie?"
-
-#: Xconfig/various.pm:99
-#, c-format
-msgid "What norm is your TV using?"
-msgstr "Watter norm gebruik u TV?"
-
-#: Xconfig/xfree.pm:648
-#, c-format
-msgid ""
-"_:weird aspect ratio\n"
-"other"
-msgstr ""
-
-#: any.pm:153 harddrake/sound.pm:195 interactive.pm:474 pkgs.pm:474
-#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
-#: standalone/drakups:99 standalone/drakxtv:92 standalone/harddrake2:375
-#: standalone/service_harddrake:235
+#: any.pm:157 diskdrake/interactive.pm:422 diskdrake/interactive.pm:617
+#: diskdrake/interactive.pm:798 diskdrake/interactive.pm:842
+#: diskdrake/interactive.pm:904 diskdrake/interactive.pm:1188 do_pkgs.pm:209
+#: do_pkgs.pm:255 harddrake/sound.pm:195 interactive.pm:576
#, c-format
msgid "Please wait"
msgstr "Wag asb."
-#: any.pm:153
+#: any.pm:157
#, c-format
msgid "Bootloader installation in progress"
msgstr "Besig met installasie van herlaaistelsel"
-#: any.pm:164
+#: any.pm:168
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -858,12 +43,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:175
+#: any.pm:179
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Installasie van herlaaiprogram het gefaal a.g.v. hierdie fout: "
-#: any.pm:181
+#: any.pm:185
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -881,7 +66,7 @@ msgstr ""
"Tik daarna 'shut-down' in\n"
"U behoort die herlaaistelsel-porteks met die volgende selflaai te sien."
-#: any.pm:219
+#: any.pm:223
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -896,258 +81,269 @@ msgstr ""
"\n"
"Vanaf watter hardeyskyf geskied die selflaai?"
-#: any.pm:242 help.pm:740
+#: any.pm:246
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Eerste sektor van skyf (MBR)"
-#: any.pm:243
+#: any.pm:247
#, c-format
msgid "First sector of the root partition"
msgstr "Eerste sektor van die 'root'-partisie"
-#: any.pm:245
+#: any.pm:249
#, c-format
msgid "On Floppy"
msgstr "Op Disket"
-#: any.pm:247 help.pm:740 printer/printerdrake.pm:4203
+#: any.pm:251
#, c-format
msgid "Skip"
msgstr "Mis hierdie stap"
-#: any.pm:251
+#: any.pm:255
#, c-format
msgid "LILO/grub Installation"
msgstr "LILO/grub installasie"
-#: any.pm:252
+#: any.pm:257
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Waar wil u die herlaaistelsel installeer"
-#: any.pm:278 standalone/drakboot:269
+#: any.pm:284
#, c-format
msgid "Boot Style Configuration"
msgstr "Herlaaistylkonfigurasie"
-#: any.pm:280 any.pm:281 any.pm:314 any.pm:315
+#: any.pm:294 any.pm:326 any.pm:327
#, c-format
msgid "Bootloader main options"
msgstr "Herlaaistelsel hoofopsies"
-#: any.pm:286
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Gee die geheuegrootte in MB"
-
-#: any.pm:288
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Opsie ``Beperk instruksielynopsies'' kan nie sonder wagwoord gebruikword nie"
-
-#: any.pm:289 any.pm:628 authentication.pm:192
-#, c-format
-msgid "The passwords do not match"
-msgstr "Die wagwoorde stem nie ooreen nie."
-
-#: any.pm:289 any.pm:628 authentication.pm:192 diskdrake/interactive.pm:1336
+#: any.pm:299
#, c-format
-msgid "Please try again"
-msgstr "Probeer asb. weer"
+msgid "Bootloader"
+msgstr "Herlaaistelsel"
-#: any.pm:294 any.pm:319
+#: any.pm:300 any.pm:331
#, c-format
msgid "Bootloader to use"
msgstr "Herlaaistelsel om te gebruik"
-#: any.pm:296 any.pm:321
+#: any.pm:302 any.pm:333
#, c-format
msgid "Boot device"
msgstr "Herlaaitoestel"
-#: any.pm:298
+#: any.pm:304
+#, c-format
+msgid "Main options"
+msgstr ""
+
+#: any.pm:305
#, c-format
msgid "Delay before booting default image"
msgstr "Wagperiode voor verstekstelsel gelaai word"
-#: any.pm:299
+#: any.pm:306
#, c-format
msgid "Enable ACPI"
msgstr "Bekragtig ACPI"
-#: any.pm:301
-#, c-format
-msgid "Force no APIC"
-msgstr "Dwing Geen APIC"
+#: any.pm:307
+#, fuzzy, c-format
+msgid "Enable APIC"
+msgstr "Bekragtig ACPI"
-#: any.pm:303
+#: any.pm:308
#, fuzzy, c-format
-msgid "Force No Local APIC"
-msgstr "Dwing Geen APIC"
+msgid "Enable Local APIC"
+msgstr "Bekragtig ACPI"
-#: any.pm:305 any.pm:662 authentication.pm:197 diskdrake/smbnfs_gtk.pm:180
-#: network/netconnect.pm:584 printer/printerdrake.pm:1867
-#: printer/printerdrake.pm:1988 standalone/drakbackup:1650
-#: standalone/drakbackup:3641 standalone/drakups:297
+#: any.pm:310 any.pm:686 authentication.pm:196 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Wagwoord"
-#: any.pm:306 any.pm:663 authentication.pm:198
+#: any.pm:312 authentication.pm:207
+#, c-format
+msgid "The passwords do not match"
+msgstr "Die wagwoorde stem nie ooreen nie."
+
+#: any.pm:312 authentication.pm:207 diskdrake/interactive.pm:1348
+#, c-format
+msgid "Please try again"
+msgstr "Probeer asb. weer"
+
+#: any.pm:313
+#, fuzzy, c-format
+msgid "You can not use a password with %s"
+msgstr "U kan nie 'n lêerstelsel met enkripsie vir hegpunt %s gebruik nie."
+
+#: any.pm:316 any.pm:687 authentication.pm:197
#, c-format
msgid "Password (again)"
msgstr "Wagwoord (weer)"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "Restrict command line options"
msgstr "Beperk instruksielyn-opsies"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "restrict"
msgstr "beperk"
-#: any.pm:309
+#: any.pm:318
+#, c-format
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr ""
+"Opsie ``Beperk instruksielynopsies'' kan nie sonder wagwoord gebruikword nie"
+
+#: any.pm:320
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Maak /tmp skoon met elke herlaai"
-#: any.pm:310
+#: any.pm:321
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Presiese RAM grootte indien nodig (%d MB bespeur)"
-#: any.pm:320
+#: any.pm:322
+#, c-format
+msgid "Give the ram size in MB"
+msgstr "Gee die geheuegrootte in MB"
+
+#: any.pm:332
#, c-format
msgid "Init Message"
msgstr "Beginboodskap"
-#: any.pm:322
+#: any.pm:334
#, c-format
msgid "Open Firmware Delay"
msgstr "Open Firmware Delay"
-#: any.pm:323
+#: any.pm:335
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Tydsbeperking vir stelselkernlaai"
-#: any.pm:324
+#: any.pm:336
#, c-format
msgid "Enable CD Boot?"
msgstr "Laat CD-herlaai toe?"
-#: any.pm:325
+#: any.pm:337
#, c-format
msgid "Enable OF Boot?"
msgstr "Laat OF-herlaai toe?"
-#: any.pm:326
+#: any.pm:338
#, c-format
msgid "Default OS?"
msgstr "Verstek bedryfstelsel?"
-#: any.pm:380
+#: any.pm:404
#, c-format
msgid "Image"
msgstr "Beeld"
-#: any.pm:381 any.pm:391
+#: any.pm:405 any.pm:418
#, c-format
msgid "Root"
msgstr "'Root'"
-#: any.pm:382 any.pm:404
+#: any.pm:406 any.pm:431
#, c-format
msgid "Append"
msgstr "Aanlas"
-#: any.pm:384 standalone/drakboot:271 standalone/drakboot:275
+#: any.pm:408
+#, c-format
+msgid "Xen append"
+msgstr ""
+
+#: any.pm:411
#, c-format
msgid "Video mode"
msgstr "Videomodus"
-#: any.pm:386
+#: any.pm:413
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:387
+#: any.pm:414
#, fuzzy, c-format
msgid "Network profile"
msgstr "Netwerkkoppelvlak"
-#: any.pm:396 any.pm:401 any.pm:403 diskdrake/interactive.pm:450
+#: any.pm:423 any.pm:428 any.pm:430 diskdrake/interactive.pm:443
#, c-format
msgid "Label"
msgstr "Naam"
-#: any.pm:398 any.pm:408 harddrake/v4l.pm:438 standalone/drakbackup:2104
-#: standalone/draksec:52
+#: any.pm:425 any.pm:433 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Verstek"
-#: any.pm:405
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd-grootte"
-
-#: any.pm:407
+#: any.pm:432
#, c-format
msgid "NoVideo"
msgstr "Geen video"
-#: any.pm:418
+#: any.pm:443
#, c-format
msgid "Empty label not allowed"
msgstr "Leë etiket word nie toegelaat nie"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a kernel image"
msgstr "U moet 'n kernel-beeld spesifiseer"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a root partition"
msgstr "U moet 'n 'root-partisie spesifiseer"
-#: any.pm:420
+#: any.pm:445
#, c-format
msgid "This label is already used"
msgstr "Hierdie etiket is alreeds in gebruik"
-#: any.pm:434
+#: any.pm:459
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Ander bedryfstelsel (SunOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Ander bedryfstelsel (MacOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (Windows...)"
msgstr "Ander bedryfstelsel (Windows...)"
-#: any.pm:464
+#: any.pm:489
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -1156,94 +352,89 @@ msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: any.pm:614
+#: any.pm:640
#, c-format
msgid "access to X programs"
msgstr "toegang na X-programme"
-#: any.pm:615
+#: any.pm:641
#, c-format
msgid "access to rpm tools"
msgstr "toegang tot rpm-nutsprogramme"
-#: any.pm:616
+#: any.pm:642
#, c-format
msgid "allow \"su\""
msgstr "laat \"su\" toe"
-#: any.pm:617
+#: any.pm:643
#, c-format
msgid "access to administrative files"
msgstr "toegang tot administratiewe-lêers"
-#: any.pm:618
+#: any.pm:644
#, c-format
msgid "access to network tools"
msgstr "toegang na netwerk-nutsprogramme"
-#: any.pm:619
+#: any.pm:645
#, c-format
msgid "access to compilation tools"
msgstr "toegang na kompilasie-gereedskap"
-#: any.pm:624
+#: any.pm:650
#, c-format
msgid "(already added %s)"
msgstr "(%s alreeds bygevoeg)"
-#: any.pm:629
-#, c-format
-msgid "This password is too simple"
-msgstr "Die wagwoord is te eenvoudig"
-
-#: any.pm:630
+#: any.pm:657
#, c-format
msgid "Please give a user name"
msgstr "Gee asb. 'n gebruikerskode"
-#: any.pm:631
+#: any.pm:658
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Die gebruikernaam mag alleenlik uit kleinletter, nommers, '-' en '_' bestaan"
-#: any.pm:632
+#: any.pm:659
#, c-format
msgid "The user name is too long"
msgstr "Hierdie naam is te lank"
-#: any.pm:633
+#: any.pm:660
#, c-format
msgid "This user name has already been added"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: any.pm:634 any.pm:665
+#: any.pm:661 any.pm:689
#, c-format
msgid "User ID"
msgstr "Gebruiker ID"
-#: any.pm:635 any.pm:666
+#: any.pm:662 any.pm:690
#, c-format
msgid "Group ID"
msgstr "Groep ID"
-#: any.pm:638
+#: any.pm:665
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "Opsie %s moet 'n nommer wees!"
-#: any.pm:639
+#: any.pm:666
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:644 standalone/draksambashare:1214
+#: any.pm:671
#, c-format
msgid "Add user"
msgstr "Voeg gebruiker by"
-#: any.pm:646
+#: any.pm:673
#, c-format
msgid ""
"Enter a user\n"
@@ -1252,101 +443,94 @@ msgstr ""
"Tik 'n gebruiker in\n"
"%s"
-#: any.pm:649 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:154
-#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:81 help.pm:531
-#: interactive/http.pm:151 printer/printerdrake.pm:197
-#: printer/printerdrake.pm:382 printer/printerdrake.pm:5010
-#: standalone/drakbackup:2836 standalone/scannerdrake:685
-#: standalone/scannerdrake:835
+#: any.pm:676 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:166
+#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:82
+#: interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Klaar"
-#: any.pm:650 help.pm:52
+#: any.pm:677
#, c-format
msgid "Accept user"
msgstr "Aanvaar gebruiker"
-#: any.pm:660
+#: any.pm:682
#, c-format
msgid "Real name"
msgstr "Regte naam"
-#: any.pm:661 standalone/drakbackup:1645
+#: any.pm:685
#, c-format
msgid "Login name"
msgstr "Aanteken naam"
-#: any.pm:664
+#: any.pm:688
#, c-format
msgid "Shell"
msgstr "Dop"
-#: any.pm:668
-#, c-format
-msgid "Icon"
-msgstr "Ikoon"
-
-#: any.pm:715 security/l10n.pm:14
+#: any.pm:735 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Outo-inteken"
-#: any.pm:716
+#: any.pm:736
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Ek kan u rekenaar so opstel om een gebruiker outomaties in te teken."
-#: any.pm:717
+#: any.pm:737
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Wil u hierdie funksie gebruik?"
-#: any.pm:718
+#: any.pm:738
#, c-format
msgid "Choose the default user:"
msgstr "Kies die verstek gebruiker:"
-#
-#: any.pm:719
+#: any.pm:739
#, c-format
msgid "Choose the window manager to run:"
msgstr "Kies die vensterbestuurder om te loop:"
-#: any.pm:740
+#: any.pm:767
#, c-format
msgid "License agreement"
msgstr "Lisensieooreenkoms"
-#: any.pm:745
+#: any.pm:770 diskdrake/dav.pm:26
+#, c-format
+msgid "Quit"
+msgstr "Verlaat"
+
+#: any.pm:773
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Vrystelling: "
-#
-#: any.pm:748 help.pm:15 install_steps_gtk.pm:539
-#: install_steps_interactive.pm:715 standalone/drakautoinst:214
+#: any.pm:776
#, c-format
msgid "Accept"
msgstr "Aanvaar"
-#
-#: any.pm:748 install_steps_gtk.pm:539 install_steps_interactive.pm:715
+#: any.pm:776
#, c-format
msgid "Refuse"
msgstr "Weier"
-#: any.pm:765 any.pm:833
+#: any.pm:795 any.pm:863
#, c-format
msgid "Please choose a language to use."
msgstr "Kies asb. 'n taal om te gebruik."
-#: any.pm:766 any.pm:834
+#: any.pm:796 any.pm:864
#, fuzzy, c-format
msgid "Language choice"
msgstr "selfdoen"
-#: any.pm:794
+#: any.pm:826
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
@@ -1354,70 +538,72 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: any.pm:797
+#: any.pm:829
#, c-format
msgid "Multi languages"
msgstr ""
-#: any.pm:813 any.pm:842 help.pm:648
+#: any.pm:841 any.pm:872
#, c-format
-msgid "Use Unicode by default"
-msgstr "Gebruik Unicode by verstek"
+msgid "Old compatibility (non UTF-8) encoding"
+msgstr ""
-#: any.pm:814 help.pm:648
+#: any.pm:843
#, c-format
msgid "All languages"
msgstr "Alle tale"
-#: any.pm:888 help.pm:567 help.pm:856 install_steps_interactive.pm:932
+#: any.pm:918
#, c-format
msgid "Country / Region"
msgstr "Land / Omgewing"
-#: any.pm:890
+#: any.pm:920
#, c-format
msgid "Please choose your country."
msgstr "Kies asseblief u land."
-#: any.pm:892
+#: any.pm:922
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hier is die volle lys van beskikbare lande"
-#: any.pm:893
+#: any.pm:923
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Ander poorte"
-#: any.pm:893 help.pm:52 help.pm:410 help.pm:432 help.pm:648 help.pm:723
-#: interactive.pm:397
+#: any.pm:923 interactive.pm:477
#, c-format
msgid "Advanced"
msgstr "Gevorderd"
-#: any.pm:901
+#: any.pm:929
#, fuzzy, c-format
msgid "Input method:"
msgstr "Netwerkmetode:"
-#: any.pm:904 install_any.pm:422 network/netconnect.pm:317
-#: network/netconnect.pm:322 network/netconnect.pm:1237 network/wireless.pm:7
-#: printer/printerdrake.pm:117
+#: any.pm:932
#, c-format
msgid "None"
msgstr "Geen"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "No sharing"
msgstr "Geen deling"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "Allow all users"
msgstr "Laat alle gebruikers toe"
-#: any.pm:1025
+#: any.pm:1012
+#, c-format
+msgid "Custom"
+msgstr "Aangepaste"
+
+#: any.pm:1016
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1432,43 +618,37 @@ msgstr ""
"\n"
"\"Aangepaste\" laat toe vir per-gebruiker verstellings.\n"
-#: any.pm:1037
+#: any.pm:1028
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1040
+#: any.pm:1031
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1048
+#: any.pm:1039
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "U kan uitvoer deur NFS of SMB te gebruik. Kies watter u wil gebruik."
-#: any.pm:1073
+#: any.pm:1064
#, c-format
msgid "Launch userdrake"
msgstr "Loods userdrake"
-#: any.pm:1073 printer/printerdrake.pm:4085 printer/printerdrake.pm:4088
-#: printer/printerdrake.pm:4089 printer/printerdrake.pm:4090
-#: printer/printerdrake.pm:5328 standalone/drakTermServ:321
-#: standalone/drakbackup:4245 standalone/drakbug:126 standalone/drakfont:499
-#: standalone/drakids:64 standalone/drakids:77 standalone/drakids:85
-#: standalone/draknfs:210 standalone/net_monitor:117
-#: standalone/printerdrake:583
+#: any.pm:1064 interactive/gtk.pm:747
#, c-format
msgid "Close"
msgstr "Sluit af"
-#: any.pm:1075
+#: any.pm:1066
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -1478,6 +658,56 @@ msgstr ""
"U kan van 'userdrake' gebruik maak om gebruikers by heirdie\n"
"groep te voeg."
+#: any.pm:1158
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
+
+#: any.pm:1162
+#, c-format
+msgid "You need to log out and back in again for changes to take effect"
+msgstr "U moet afteken en weer inteken alvorens veranderinge bekragtig word"
+
+#: any.pm:1212
+#, c-format
+msgid "Timezone"
+msgstr "Tydsone"
+
+#: any.pm:1212
+#, c-format
+msgid "Which is your timezone?"
+msgstr "Wat is u tydsone?"
+
+#: any.pm:1224 any.pm:1226
+#, c-format
+msgid "Date, Clock & Time Zone Settings"
+msgstr ""
+
+#: any.pm:1227
+#, c-format
+msgid "What is the best time?"
+msgstr ""
+
+#: any.pm:1231
+#, fuzzy, c-format
+msgid "%s (hardware clock set to UTC)"
+msgstr "Hardewareklok gestel vir GMT"
+
+#: any.pm:1232
+#, fuzzy, c-format
+msgid "%s (hardware clock set to local time)"
+msgstr "Hardewareklok gestel vir GMT"
+
+#: any.pm:1234
+#, c-format
+msgid "NTP Server"
+msgstr "NTP-bediener"
+
+#: any.pm:1235
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Outo-tydsinkronisasie met NTP"
+
#: authentication.pm:23
#, c-format
msgid "Local file"
@@ -1592,7 +822,7 @@ msgstr "LDAP-magtiging"
msgid "LDAP Base dn"
msgstr "LDAP Basis-dn"
-#: authentication.pm:98 share/compssUsers.pl:102
+#: authentication.pm:98
#, c-format
msgid "LDAP Server"
msgstr "LDAP-bediener"
@@ -1622,14 +852,12 @@ msgstr ""
msgid "Authentication Active Directory"
msgstr "Magtigings-metode"
-#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:181
+#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Domein"
-#: authentication.pm:124 diskdrake/dav.pm:63 help.pm:147
-#: printer/printerdrake.pm:75 share/compssUsers.pl:82
-#: standalone/drakTermServ:296
+#: authentication.pm:124 diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Bediener"
@@ -1717,39 +945,33 @@ msgstr "Domein-administrarteur se naam"
msgid "Domain Admin Password"
msgstr "Domein-administrarteur se Wagwoord"
-#: authentication.pm:181
-#, fuzzy, c-format
-msgid "Set administrator (root) password and network authentication methods"
-msgstr "Stel 'root' se wagwoord en magtigings-metodes op"
+#: authentication.pm:181 authentication.pm:198
+#, c-format
+msgid "Authentication"
+msgstr "Magtiging"
#: authentication.pm:182
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Kies 'root' se wagwoord"
-#: authentication.pm:183 standalone/drakvpn:1111
+#: authentication.pm:184
#, c-format
msgid "Authentication method"
msgstr "Magtigings-metode"
#. -PO: keep this short or else the buttons will not fit in the window
-#: authentication.pm:188 help.pm:723
+#: authentication.pm:189
#, c-format
msgid "No password"
msgstr "Geen wagwoord"
-#: authentication.pm:194
+#: authentication.pm:210
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Hierdie wagwoord is te eenvoudig. (moet ten minste %d karakters bevat)"
-#: authentication.pm:199 network/netconnect.pm:322 network/netconnect.pm:585
-#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:481
-#, c-format
-msgid "Authentication"
-msgstr "Magtiging"
-
-#: authentication.pm:331
+#: authentication.pm:351
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "Kan nie uitsaai sonder 'n NIS-domein nie"
@@ -1759,7 +981,7 @@ msgstr "Kan nie uitsaai sonder 'n NIS-domein nie"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:767
+#: bootloader.pm:880
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1774,42 +996,42 @@ msgstr ""
"vir die verstekopsie.\n"
"\n"
-#: bootloader.pm:909
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO met grafiese kieskaart"
-
-#: bootloader.pm:910
+#: bootloader.pm:1028
#, c-format
msgid "LILO with text menu"
msgstr "LILO met tekskieskaart"
-#: bootloader.pm:911
+#: bootloader.pm:1029
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:912
+#: bootloader.pm:1030
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:913
+#: bootloader.pm:1031
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:990
+#: bootloader.pm:1032
+#, c-format
+msgid "SILO"
+msgstr "SILO"
+
+#: bootloader.pm:1112
#, c-format
msgid "not enough room in /boot"
msgstr "nie genoeg spasie in /boot nie"
-#: bootloader.pm:1483
+#: bootloader.pm:1679
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "U kan nie die herlaaistelsel op 'n %s partisie installeer nie\n"
-#: bootloader.pm:1523
+#: bootloader.pm:1732
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1818,7 +1040,7 @@ msgstr ""
"U herlaaistelsel se konfigurasie moet opgedateer word omdat 'n partisie se "
"nommer verander het"
-#: bootloader.pm:1536
+#: bootloader.pm:1745
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
@@ -1827,242 +1049,55 @@ msgstr ""
"Die herlaaistelsel kan nie korrek geïnstalleer word nie. U moet in redding-"
"modus laai, kies dan \"%s\""
-#: bootloader.pm:1537
+#: bootloader.pm:1746
#, c-format
msgid "Re-install Boot Loader"
msgstr "Her-installeer herlaaistelsel"
-#: common.pm:134
+#: common.pm:129
+#, fuzzy, c-format
+msgid "B"
+msgstr "KB"
+
+#: common.pm:129
#, c-format
msgid "KB"
msgstr "KB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "MB"
msgstr "MB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "GB"
msgstr "GB"
-#: common.pm:142
+#: common.pm:137
#, c-format
msgid "TB"
msgstr "TB"
-#: common.pm:150
+#: common.pm:145
#, c-format
msgid "%d minutes"
msgstr "%d minute"
-#: common.pm:152
+#: common.pm:147
#, c-format
msgid "1 minute"
msgstr "1 minuut"
-#: common.pm:154
+#: common.pm:149
#, c-format
msgid "%d seconds"
msgstr "%d sekondes"
-#: common.pm:260
-#, c-format
-msgid "kdesu missing"
-msgstr "kdesu is weg"
-
-#: common.pm:263
-#, c-format
-msgid "consolehelper missing"
-msgstr "konsole-helper is soek"
-
-#: crypto.pm:13 crypto.pm:48 lang.pm:207 network/adsl_consts.pm:66
-#: network/adsl_consts.pm:75 network/adsl_consts.pm:84
-#, c-format
-msgid "Austria"
-msgstr "Oostenryk"
-
-#: crypto.pm:14 crypto.pm:47 lang.pm:208 standalone/drakxtv:48
-#, c-format
-msgid "Australia"
-msgstr "Australië"
-
-#: crypto.pm:15 crypto.pm:49 lang.pm:214 network/adsl_consts.pm:93
-#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
-#: network/adsl_consts.pm:123 network/netconnect.pm:44
-#, c-format
-msgid "Belgium"
-msgstr "België"
-
-#: crypto.pm:16 crypto.pm:50 lang.pm:223 network/adsl_consts.pm:132
-#: network/adsl_consts.pm:143 network/adsl_consts.pm:152
-#: network/adsl_consts.pm:161
-#, c-format
-msgid "Brazil"
-msgstr "Brasilië"
-
-#: crypto.pm:17 crypto.pm:51 lang.pm:230
-#, c-format
-msgid "Canada"
-msgstr "Kanada"
-
-#: crypto.pm:18 crypto.pm:74 lang.pm:235 network/adsl_consts.pm:891
-#: network/adsl_consts.pm:900 network/adsl_consts.pm:911
-#, c-format
-msgid "Switzerland"
-msgstr "Switserland"
-
-#: crypto.pm:19 lang.pm:242
-#, c-format
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: crypto.pm:20 crypto.pm:52 lang.pm:248 network/adsl_consts.pm:368
-#, c-format
-msgid "Czech Republic"
-msgstr "Tsjeggiese Republiek"
-
-#: crypto.pm:21 crypto.pm:57 lang.pm:249 network/adsl_consts.pm:499
-#: network/adsl_consts.pm:508
-#, c-format
-msgid "Germany"
-msgstr "Duitsland"
-
-#: crypto.pm:22 crypto.pm:53 lang.pm:251 network/adsl_consts.pm:378
-#, c-format
-msgid "Denmark"
-msgstr "Denemarke"
-
-#: crypto.pm:23 crypto.pm:54 lang.pm:256
-#, c-format
-msgid "Estonia"
-msgstr "Estonië"
-
-#: crypto.pm:24 crypto.pm:72 lang.pm:260 network/adsl_consts.pm:759
-#: network/adsl_consts.pm:770 network/adsl_consts.pm:781
-#: network/adsl_consts.pm:792 network/adsl_consts.pm:801
-#: network/adsl_consts.pm:810 network/adsl_consts.pm:819
-#: network/adsl_consts.pm:828 network/adsl_consts.pm:837
-#: network/adsl_consts.pm:846 network/adsl_consts.pm:855
-#: network/adsl_consts.pm:864 network/adsl_consts.pm:873
-#, c-format
-msgid "Spain"
-msgstr "Spanje"
-
-#: crypto.pm:25 crypto.pm:55 lang.pm:262 network/adsl_consts.pm:387
-#, c-format
-msgid "Finland"
-msgstr "Finland"
-
-#: crypto.pm:26 crypto.pm:56 lang.pm:267 network/adsl_consts.pm:396
-#: network/adsl_consts.pm:408 network/adsl_consts.pm:420
-#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
-#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
-#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
-#: network/netconnect.pm:41
-#, c-format
-msgid "France"
-msgstr "Frankryk"
-
-#: crypto.pm:27 crypto.pm:58 lang.pm:280 network/adsl_consts.pm:519
-#, c-format
-msgid "Greece"
-msgstr "Griekeland"
-
-#: crypto.pm:28 crypto.pm:59 lang.pm:291 network/adsl_consts.pm:528
-#, c-format
-msgid "Hungary"
-msgstr "Hongarye"
-
-#: crypto.pm:29 crypto.pm:60 lang.pm:293 network/adsl_consts.pm:537
-#: standalone/drakxtv:47
-#, c-format
-msgid "Ireland"
-msgstr "Ierland"
-
-#: crypto.pm:30 crypto.pm:61 lang.pm:294 network/adsl_consts.pm:546
-#, c-format
-msgid "Israel"
-msgstr "Israel"
-
-#: crypto.pm:31 crypto.pm:62 lang.pm:300 network/adsl_consts.pm:557
-#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
-#: network/adsl_consts.pm:589 network/netconnect.pm:43 standalone/drakxtv:47
-#, c-format
-msgid "Italy"
-msgstr "Italië"
-
-#: crypto.pm:32 crypto.pm:63 lang.pm:303
-#, c-format
-msgid "Japan"
-msgstr "Japan"
-
-#: crypto.pm:33 crypto.pm:64 lang.pm:352 network/adsl_consts.pm:620
-#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
-#: network/adsl_consts.pm:647 network/netconnect.pm:42
-#, c-format
-msgid "Netherlands"
-msgstr "Nederlands"
-
-#: crypto.pm:34 crypto.pm:66 lang.pm:353 network/adsl_consts.pm:656
-#: network/adsl_consts.pm:661 network/adsl_consts.pm:666
-#: network/adsl_consts.pm:671 network/adsl_consts.pm:676
-#: network/adsl_consts.pm:681 network/adsl_consts.pm:686
-#, c-format
-msgid "Norway"
-msgstr "Noorweë"
-
-#: crypto.pm:35 crypto.pm:65 lang.pm:357
-#, c-format
-msgid "New Zealand"
-msgstr "Neu-Seeland"
-
-#: crypto.pm:36 crypto.pm:67 lang.pm:365 network/adsl_consts.pm:693
-#: network/adsl_consts.pm:704
-#, c-format
-msgid "Poland"
-msgstr "Pole"
-
-#: crypto.pm:37 crypto.pm:68 lang.pm:370 network/adsl_consts.pm:716
-#, c-format
-msgid "Portugal"
-msgstr "Portugal"
-
-#: crypto.pm:38 crypto.pm:69 lang.pm:376 network/adsl_consts.pm:725
-#, c-format
-msgid "Russia"
-msgstr "Rusland"
-
-#: crypto.pm:39 crypto.pm:73 lang.pm:382 network/adsl_consts.pm:882
-#, c-format
-msgid "Sweden"
-msgstr "Swede"
-
-#: crypto.pm:40 crypto.pm:70 lang.pm:387
-#, c-format
-msgid "Slovakia"
-msgstr "Slovakye"
-
-#: crypto.pm:41 crypto.pm:76 lang.pm:401 network/adsl_consts.pm:920
-#, c-format
-msgid "Thailand"
-msgstr "Thailand"
-
-#: crypto.pm:42 crypto.pm:75 lang.pm:411
-#, c-format
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#: crypto.pm:43 crypto.pm:71 lang.pm:430 standalone/drakxtv:49
-#, c-format
-msgid "South Africa"
-msgstr "Suid-Afrika"
-
-#: crypto.pm:77 crypto.pm:112 lang.pm:416 network/netconnect.pm:45
+#: common.pm:298
#, c-format
-msgid "United States"
-msgstr "Verenigde State"
+msgid "command %s missing"
+msgstr ""
#: diskdrake/dav.pm:17
#, c-format
@@ -2082,24 +1117,46 @@ msgstr ""
msgid "New"
msgstr "Nuwe"
-#: diskdrake/dav.pm:61 diskdrake/interactive.pm:456 diskdrake/smbnfs_gtk.pm:74
+#: diskdrake/dav.pm:61 diskdrake/interactive.pm:449 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Ontheg"
-#: diskdrake/dav.pm:62 diskdrake/interactive.pm:453 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:62 diskdrake/interactive.pm:446 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Heg"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:447
-#: diskdrake/interactive.pm:679 diskdrake/interactive.pm:698
-#: diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:78
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:440
+#: diskdrake/interactive.pm:670 diskdrake/interactive.pm:688
+#: diskdrake/interactive.pm:692 diskdrake/removable.pm:23
+#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Hegpunt"
-#
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:442
+#: diskdrake/interactive.pm:1047 diskdrake/removable.pm:24
+#: diskdrake/smbnfs_gtk.pm:80
+#, c-format
+msgid "Options"
+msgstr "Opsies"
+
+#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:229
+#: diskdrake/interactive.pm:242 diskdrake/interactive.pm:398
+#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:547
+#: diskdrake/interactive.pm:552 diskdrake/interactive.pm:660
+#: diskdrake/interactive.pm:922 diskdrake/interactive.pm:1092
+#: diskdrake/interactive.pm:1105 diskdrake/interactive.pm:1108
+#: diskdrake/interactive.pm:1348 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:19
+#: do_pkgs.pm:24 do_pkgs.pm:40 do_pkgs.pm:56 do_pkgs.pm:61 fsedit.pm:229
+#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
+#: scanner.pm:94 scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95
+#: wizards.pm:99 wizards.pm:121
+#, c-format
+msgid "Error"
+msgstr "Fout"
+
#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
@@ -2115,33 +1172,48 @@ msgstr "Die URL moet begin met http:// or https://"
msgid "Server: "
msgstr "Bediener: "
-#: diskdrake/dav.pm:110 diskdrake/interactive.pm:523
-#: diskdrake/interactive.pm:1218 diskdrake/interactive.pm:1296
+#: diskdrake/dav.pm:110 diskdrake/interactive.pm:520
+#: diskdrake/interactive.pm:1230 diskdrake/interactive.pm:1308
#, c-format
msgid "Mount point: "
msgstr "Hegpunt: "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1303
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1315
#, c-format
msgid "Options: %s"
msgstr "Opsies: %s"
-#: diskdrake/hd_gtk.pm:52 diskdrake/interactive.pm:293
-#: diskdrake/smbnfs_gtk.pm:21 install_interactive.pm:63
-#: install_interactive.pm:217 install_interactive.pm:223
-#: install_interactive.pm:276 install_interactive.pm:281
-#: install_steps_interactive.pm:253 install_steps_interactive.pm:317
-#: steps.pm:21
+#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:286
+#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
+#: fs/partitioning_wizard.pm:47 fs/partitioning_wizard.pm:201
+#: fs/partitioning_wizard.pm:207 fs/partitioning_wizard.pm:247
+#: fs/partitioning_wizard.pm:266 fs/partitioning_wizard.pm:271
#, c-format
msgid "Partitioning"
msgstr "Partisionering"
-#: diskdrake/hd_gtk.pm:92
+#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1067
+#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1130
+#, c-format
+msgid "Read carefully!"
+msgstr "Lees noukeurig!"
+
+#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr "Rugsteun u data eers asb."
-#: diskdrake/hd_gtk.pm:95
+#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:222
+#, c-format
+msgid "Exit"
+msgstr "Verlaat"
+
+#: diskdrake/hd_gtk.pm:94
+#, c-format
+msgid "Continue"
+msgstr "Gaan voort"
+
+#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
@@ -2151,17 +1223,18 @@ msgstr ""
"Indien u beplan om 'aboot' te gebruik, los spasie aan die begin\n"
"van die skyf. (2048 sektors is genoeg)."
-#: diskdrake/hd_gtk.pm:152 help.pm:531
+#: diskdrake/hd_gtk.pm:162 interactive.pm:640 interactive/gtk.pm:719
+#: interactive/gtk.pm:740 interactive/gtk.pm:760 ugtk2.pm:923 ugtk2.pm:924
#, c-format
-msgid "Wizard"
-msgstr "Assistent"
+msgid "Help"
+msgstr "Hulp"
-#: diskdrake/hd_gtk.pm:185
+#: diskdrake/hd_gtk.pm:197
#, c-format
msgid "Choose action"
msgstr "Kies aksie"
-#: diskdrake/hd_gtk.pm:189
+#: diskdrake/hd_gtk.pm:201
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -2172,148 +1245,162 @@ msgstr ""
"Ek stel voor u verstel eers die grootte van dié partisie\n"
"(kliek daarop en kliek dan op \"Verstel Grootte\")"
-#: diskdrake/hd_gtk.pm:191
+#: diskdrake/hd_gtk.pm:203
#, c-format
msgid "Please click on a partition"
msgstr "Kliek asb. op 'n partisie"
-#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:457
-#: standalone/drakbackup:3088 standalone/drakbackup:3148
+#: diskdrake/hd_gtk.pm:217 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Detail"
-#: diskdrake/hd_gtk.pm:251
+#: diskdrake/hd_gtk.pm:265
#, c-format
msgid "No hard drives found"
msgstr "Geen hardeskywe kon gevind word nie"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:292
+#, c-format
+msgid "Unknown"
+msgstr "Onbekend"
+
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Ext2"
msgstr "Ext2"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Journalised FS"
msgstr "Gejoernaliseerde FS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Swap"
msgstr "Ruilarea"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "SunOS"
msgstr "SunOS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "HFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1233
+#: diskdrake/hd_gtk.pm:352 services.pm:149
+#, c-format
+msgid "Other"
+msgstr "Ander"
+
+#: diskdrake/hd_gtk.pm:352 diskdrake/interactive.pm:1244
#, c-format
msgid "Empty"
msgstr "Leeg"
-#: diskdrake/hd_gtk.pm:340
+#: diskdrake/hd_gtk.pm:356
#, c-format
msgid "Filesystem types:"
msgstr "Lêerstelsel-tipes:"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:359 diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:291
+#: diskdrake/interactive.pm:392 diskdrake/interactive.pm:428
+#: diskdrake/interactive.pm:577 diskdrake/interactive.pm:751
+#: diskdrake/interactive.pm:809 diskdrake/interactive.pm:902
+#: diskdrake/interactive.pm:944 diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:1173 diskdrake/interactive.pm:1211
+#: diskdrake/interactive.pm:1347 do_pkgs.pm:16 do_pkgs.pm:35 do_pkgs.pm:53
+#: harddrake/sound.pm:279
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Gebruik ``%s'' instede."
+msgid "Warning"
+msgstr "Waarskuwing"
-#: diskdrake/hd_gtk.pm:357 diskdrake/interactive.pm:472
-#, c-format
-msgid "Create"
-msgstr "Skep"
+#: diskdrake/hd_gtk.pm:380
+#, fuzzy, c-format
+msgid "This partition is already empty"
+msgstr "Hierdie partisie se grootte kan nie verstel word nie"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:365
-#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:625
-#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
-#: standalone/harddrake2:108 standalone/harddrake2:117
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Type"
-msgstr "Tipe"
+msgid "Use ``Unmount'' first"
+msgstr "Gebruik ``Ontheg'' eerste"
-#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: diskdrake/hd_gtk.pm:359 diskdrake/interactive.pm:457
-#: standalone/drakperm:123 standalone/printerdrake:248
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Delete"
-msgstr "Uitwis"
+msgid "Use ``%s'' instead"
+msgstr "Gebruik ``%s'' instede."
-#: diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:389 diskdrake/interactive.pm:441
+#: diskdrake/interactive.pm:611 diskdrake/interactive.pm:1083
+#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Gebruik ``Ontheg'' eerste"
+msgid "Type"
+msgstr "Tipe"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose another partition"
msgstr "Kies 'n ander partisie"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose a partition"
msgstr "Kies 'n partisie"
-#: diskdrake/interactive.pm:224
-#, c-format
-msgid "Exit"
-msgstr "Verlaat"
-
-#: diskdrake/interactive.pm:257 help.pm:531
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Undo"
msgstr "Herroep"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to normal mode"
msgstr "Skakel oor na normale gebruiksvlak"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to expert mode"
msgstr "Skakel oor na kundige gebruiksvlak"
-#: diskdrake/interactive.pm:276
+#: diskdrake/interactive.pm:269 diskdrake/interactive.pm:279
+#: diskdrake/interactive.pm:1158
+#, fuzzy, c-format
+msgid "Confirmation"
+msgstr "Konfigurasie"
+
+#: diskdrake/interactive.pm:269
#, c-format
msgid "Continue anyway?"
msgstr "Wil u in elk geval voortgaan?"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without saving"
msgstr "Verlaat, maar moenie iets stoor nie"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
-#: diskdrake/interactive.pm:286
+#: diskdrake/interactive.pm:279
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Wil u die /etc/fstab veranderinge stoor?"
-#: diskdrake/interactive.pm:293 install_steps_interactive.pm:317
+#: diskdrake/interactive.pm:286 fs/partitioning_wizard.pm:247
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "U moet herlaai om die partisielys-veranderinge te aktiveer"
-#: diskdrake/interactive.pm:298
+#: diskdrake/interactive.pm:291
#, c-format
msgid ""
"You should format partition %s.\n"
@@ -2321,38 +1408,38 @@ msgid ""
"Quit anyway?"
msgstr ""
-#: diskdrake/interactive.pm:311 help.pm:531
+#: diskdrake/interactive.pm:304
#, c-format
msgid "Clear all"
msgstr "Verwyder almal"
-#: diskdrake/interactive.pm:312 help.pm:531
+#: diskdrake/interactive.pm:305
#, c-format
msgid "Auto allocate"
msgstr "Outo-allokeer"
-#: diskdrake/interactive.pm:313 help.pm:531 help.pm:567 help.pm:607
-#: help.pm:856 install_steps_interactive.pm:98
+#: diskdrake/interactive.pm:306 diskdrake/interactive.pm:360
+#: interactive/curses.pm:457
#, c-format
msgid "More"
msgstr "Meer Keuses"
-#: diskdrake/interactive.pm:318
+#: diskdrake/interactive.pm:311
#, c-format
msgid "Hard drive information"
msgstr "Hardeskyfinligting"
-#: diskdrake/interactive.pm:350
+#: diskdrake/interactive.pm:343
#, c-format
msgid "All primary partitions are used"
msgstr "Alle primêre partisies is gebruik"
-#: diskdrake/interactive.pm:351
+#: diskdrake/interactive.pm:344
#, c-format
msgid "I can not add any more partitions"
msgstr "Ek kan nie meer partisies byvoeg nie"
-#: diskdrake/interactive.pm:352
+#: diskdrake/interactive.pm:345
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
@@ -2361,52 +1448,52 @@ msgstr ""
"Om meer partisies te verkry, verwyder asb. een om 'n ektensiepartisiete kan "
"skep"
-#: diskdrake/interactive.pm:361
+#: diskdrake/interactive.pm:354
#, c-format
msgid "No supermount"
msgstr ""
-#: diskdrake/interactive.pm:362
+#: diskdrake/interactive.pm:355
#, c-format
msgid "Supermount"
msgstr ""
-#: diskdrake/interactive.pm:363
+#: diskdrake/interactive.pm:356
#, c-format
msgid "Supermount except for CDROM drives"
msgstr ""
-#: diskdrake/interactive.pm:369 help.pm:531
+#: diskdrake/interactive.pm:362
#, c-format
msgid "Save partition table"
msgstr "Skryf partisielys"
-#: diskdrake/interactive.pm:370 help.pm:531
+#: diskdrake/interactive.pm:363
#, c-format
msgid "Restore partition table"
msgstr "Herstel partisielys"
-#: diskdrake/interactive.pm:371 help.pm:531
+#: diskdrake/interactive.pm:364
#, c-format
msgid "Rescue partition table"
msgstr "Reddingspartisielys"
-#: diskdrake/interactive.pm:373 help.pm:531
+#: diskdrake/interactive.pm:366
#, c-format
msgid "Reload partition table"
msgstr "Herlaai partisietabel"
-#: diskdrake/interactive.pm:375
+#: diskdrake/interactive.pm:368
#, c-format
msgid "Removable media automounting"
msgstr "Outoheg van verwyderbare media"
-#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:414
+#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:407
#, c-format
msgid "Select file"
msgstr "Kies lêer"
-#: diskdrake/interactive.pm:400
+#: diskdrake/interactive.pm:393
#, c-format
msgid ""
"The backup partition table has not the same size\n"
@@ -2415,87 +1502,97 @@ msgstr ""
"Die rugsteunpartisielys se grootte verskil\n"
"Wil u voortgaan?"
-#: diskdrake/interactive.pm:429
+#: diskdrake/interactive.pm:422
#, c-format
msgid "Trying to rescue partition table"
msgstr "Probeer die partisielys red"
-#: diskdrake/interactive.pm:435
+#: diskdrake/interactive.pm:428
#, c-format
msgid "Detailed information"
msgstr "Gedetaileerde inligting"
-#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:444 diskdrake/interactive.pm:764
#, c-format
msgid "Resize"
msgstr "Verstel Grootte"
-#: diskdrake/interactive.pm:452
+#: diskdrake/interactive.pm:445
#, c-format
msgid "Format"
msgstr "Formatteer"
-#: diskdrake/interactive.pm:454
+#: diskdrake/interactive.pm:447 diskdrake/interactive.pm:850
#, c-format
msgid "Add to RAID"
msgstr "Voeg by RAID"
-#: diskdrake/interactive.pm:455
+#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:867
#, c-format
msgid "Add to LVM"
msgstr "Voeg by LVM"
-#: diskdrake/interactive.pm:458
+#: diskdrake/interactive.pm:450
+#, c-format
+msgid "Delete"
+msgstr "Uitwis"
+
+#: diskdrake/interactive.pm:451
#, c-format
msgid "Remove from RAID"
msgstr "Verwyder uit RAID"
-#: diskdrake/interactive.pm:459
+#: diskdrake/interactive.pm:452
#, c-format
msgid "Remove from LVM"
msgstr "Verwyder uit LVM"
-#: diskdrake/interactive.pm:460
+#: diskdrake/interactive.pm:453
#, c-format
msgid "Modify RAID"
msgstr "Verander RAID"
-#: diskdrake/interactive.pm:461
+#: diskdrake/interactive.pm:454
#, c-format
msgid "Use for loopback"
msgstr "Gebruik vir teruglus"
-#: diskdrake/interactive.pm:516
+#: diskdrake/interactive.pm:465
+#, c-format
+msgid "Create"
+msgstr "Skep"
+
+#: diskdrake/interactive.pm:509 diskdrake/interactive.pm:511
#, c-format
msgid "Create a new partition"
msgstr "Skep 'n nuwe partisie"
-#: diskdrake/interactive.pm:519
+#: diskdrake/interactive.pm:513
#, c-format
msgid "Start sector: "
msgstr "Begin-sektor: "
-#: diskdrake/interactive.pm:521 diskdrake/interactive.pm:938
+#: diskdrake/interactive.pm:516 diskdrake/interactive.pm:937
#, c-format
msgid "Size in MB: "
msgstr "Grootte in MB: "
-#: diskdrake/interactive.pm:522 diskdrake/interactive.pm:939
+#: diskdrake/interactive.pm:518 diskdrake/interactive.pm:938
#, c-format
msgid "Filesystem type: "
msgstr "Lêerstelsel-tipe: "
-#: diskdrake/interactive.pm:527
+#: diskdrake/interactive.pm:524
#, c-format
msgid "Preference: "
msgstr "Voorkeure: "
-#: diskdrake/interactive.pm:530
+#: diskdrake/interactive.pm:527
#, c-format
msgid "Logical volume name "
msgstr "Logiese-volumenaam "
-#: diskdrake/interactive.pm:560
+#: diskdrake/interactive.pm:547
#, c-format
msgid ""
"You can not create a new partition\n"
@@ -2506,12 +1603,12 @@ msgstr ""
"(aangsien u die maksimum aantal primêre partisies bereik het).\n"
"Verwyder eerstens 'n primêre partisie en skep dan 'n sekondêre partisie."
-#: diskdrake/interactive.pm:590
+#: diskdrake/interactive.pm:577
#, c-format
msgid "Remove the loopback file?"
msgstr "Verwyder die terugluslêer?"
-#: diskdrake/interactive.pm:609
+#: diskdrake/interactive.pm:596
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -2519,38 +1616,42 @@ msgstr ""
"Alle data om hierdie partisie %s sal uitgewis word na verandering van die \n"
"partisietipe"
-#: diskdrake/interactive.pm:621
+#: diskdrake/interactive.pm:608
#, c-format
msgid "Change partition type"
msgstr "Verander partisietipe"
-#
-#: diskdrake/interactive.pm:622 diskdrake/removable.pm:47
+#: diskdrake/interactive.pm:610 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Watter lêerstelsel verlang u?"
-#: diskdrake/interactive.pm:630
+#: diskdrake/interactive.pm:617
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "Oorskakeling van ext2 na ext3"
-#: diskdrake/interactive.pm:650
+#: diskdrake/interactive.pm:637 diskdrake/interactive.pm:640
#, c-format
msgid "Which volume label?"
msgstr ""
-#: diskdrake/interactive.pm:666
+#: diskdrake/interactive.pm:641
+#, fuzzy, c-format
+msgid "Label:"
+msgstr "Naam"
+
+#: diskdrake/interactive.pm:655
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Waar wil u terugluslêer %s heg?"
-#: diskdrake/interactive.pm:667
+#: diskdrake/interactive.pm:656
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Waar wil u toestel %s heg?"
-#: diskdrake/interactive.pm:672
+#: diskdrake/interactive.pm:661
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
@@ -2559,48 +1660,58 @@ msgstr ""
"Kan nie hegpunt ontset nie, omdat hierdie partisie vir teruglus\n"
"gebruik word. Verwyder eers die teruglus."
-#: diskdrake/interactive.pm:697
+#: diskdrake/interactive.pm:691
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Waar wil u toestel %s heg?"
-#: diskdrake/interactive.pm:721 diskdrake/interactive.pm:800
-#: install_interactive.pm:157 install_interactive.pm:189
+#: diskdrake/interactive.pm:715 diskdrake/interactive.pm:798
+#: fs/partitioning_wizard.pm:141 fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing"
msgstr "Grootteverandering"
-#: diskdrake/interactive.pm:721
+#: diskdrake/interactive.pm:715
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "FAT lêerstelselgrense word bereken"
-#: diskdrake/interactive.pm:757
+#: diskdrake/interactive.pm:751
#, c-format
msgid "This partition is not resizeable"
msgstr "Hierdie partisie se grootte kan nie verstel word nie"
-#: diskdrake/interactive.pm:762
+#: diskdrake/interactive.pm:756
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Alle data om hierdie partisie moet gerugsteun word."
-#: diskdrake/interactive.pm:764
+#: diskdrake/interactive.pm:758
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Alle data op partisie %s sal uitgewis word met die grootteverandering"
-#: diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:765
#, c-format
msgid "Choose the new size"
msgstr "Kies die nuwe grootte"
-#: diskdrake/interactive.pm:770
+#: diskdrake/interactive.pm:766
#, c-format
msgid "New size in MB: "
msgstr "Nuwe grootte in MB: "
-#: diskdrake/interactive.pm:811 install_interactive.pm:197
+#: diskdrake/interactive.pm:767
+#, c-format
+msgid "Minimum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:768
+#, c-format
+msgid "Maximum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:809 fs/partitioning_wizard.pm:181
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
@@ -2610,240 +1721,241 @@ msgstr ""
"verklien het,sal daar toetste op u lêerstelsel(s) gedoen word,\n"
"volgende keer as Windows™ selflaai"
-#: diskdrake/interactive.pm:852
+#: diskdrake/interactive.pm:850
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Kies 'n bestaande RAID om by toe te voeg"
-#: diskdrake/interactive.pm:854 diskdrake/interactive.pm:871
+#: diskdrake/interactive.pm:852 diskdrake/interactive.pm:869
#, c-format
msgid "new"
msgstr "nuut"
-#: diskdrake/interactive.pm:869
+#: diskdrake/interactive.pm:867
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Kies 'n bestaande LVM om by toe te voeg"
-#: diskdrake/interactive.pm:875
+#: diskdrake/interactive.pm:874
#, c-format
msgid "LVM name?"
msgstr "LVM naam?"
-#: diskdrake/interactive.pm:903
+#: diskdrake/interactive.pm:902
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
"Do you want to move used physical extents on this volume to other volumes?"
msgstr ""
-#: diskdrake/interactive.pm:905
+#: diskdrake/interactive.pm:904
#, c-format
msgid "Moving physical extents"
msgstr ""
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:922
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Hierdie partisie kan nie vir teruglus gebruik word nie."
-#: diskdrake/interactive.pm:936
+#: diskdrake/interactive.pm:935
#, c-format
msgid "Loopback"
msgstr "Teruglus"
-#: diskdrake/interactive.pm:937
+#: diskdrake/interactive.pm:936
#, c-format
msgid "Loopback file name: "
msgstr "Teruglus lêernaam:"
-#: diskdrake/interactive.pm:942
+#: diskdrake/interactive.pm:941
#, c-format
msgid "Give a file name"
msgstr "Voorsien 'n lêernaam"
-#: diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:944
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Lêer word alreeds deur 'n ander teruglus gebruik,kies 'n ander een"
-#: diskdrake/interactive.pm:946
+#: diskdrake/interactive.pm:945
#, c-format
msgid "File already exists. Use it?"
msgstr "Lêer bestaan alreeds. Moet dit gebruik word?"
-#: diskdrake/interactive.pm:969
+#: diskdrake/interactive.pm:974 diskdrake/interactive.pm:977
#, c-format
msgid "Mount options"
msgstr "Hegopsies:"
-#: diskdrake/interactive.pm:976
+#: diskdrake/interactive.pm:984
#, c-format
msgid "Various"
msgstr "Verskeie"
-#: diskdrake/interactive.pm:1044
+#: diskdrake/interactive.pm:1049
#, c-format
msgid "device"
msgstr "toestel"
-#: diskdrake/interactive.pm:1045
+#: diskdrake/interactive.pm:1050
#, c-format
msgid "level"
msgstr "vlak"
-#: diskdrake/interactive.pm:1046
+#: diskdrake/interactive.pm:1051
#, fuzzy, c-format
msgid "chunk size in KiB"
msgstr "blokgrootte"
-#: diskdrake/interactive.pm:1063
+#: diskdrake/interactive.pm:1068
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Wees versigtig: hierdie is 'n gevaarlike operasie"
-#: diskdrake/interactive.pm:1078
+#: diskdrake/interactive.pm:1083
#, c-format
msgid "What type of partitioning?"
msgstr "Watter soort partisie?"
-#: diskdrake/interactive.pm:1116
+#: diskdrake/interactive.pm:1121
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "U sal moet herlaai voor die veranderinge geaktiveer kan word"
-#: diskdrake/interactive.pm:1125
+#: diskdrake/interactive.pm:1130
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Die partisielys op skyf %s gaan opdateer word!"
-#: diskdrake/interactive.pm:1148
+#: diskdrake/interactive.pm:1153
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met formatering."
-#: diskdrake/interactive.pm:1164
+#: diskdrake/interactive.pm:1158 fs/partitioning.pm:49
+#, c-format
+msgid "Check bad blocks?"
+msgstr "Toets vir foutiewe areas?"
+
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Move files to the new partition"
msgstr "Verskuif lêers na nuwe partisie toe"
-#: diskdrake/interactive.pm:1164 standalone/draksambashare:81
-#: standalone/draksambashare:144
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Hide files"
msgstr "Versteek lêers"
-#: diskdrake/interactive.pm:1165
+#: diskdrake/interactive.pm:1173
#, c-format
msgid ""
"Directory %s already contains data\n"
-"(%s)"
+"(%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 ""
-"Lêergids %s bevat alreeds data\n"
-"(%s)"
-#: diskdrake/interactive.pm:1176
+#: diskdrake/interactive.pm:1188
#, c-format
msgid "Moving files to the new partition"
msgstr "Verskuif lêers na nuwe partisie toe"
-#: diskdrake/interactive.pm:1180
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "Copying %s"
msgstr "Kopieer %s"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1196
#, c-format
msgid "Removing %s"
msgstr "Verwyder %s"
-#: diskdrake/interactive.pm:1198
+#: diskdrake/interactive.pm:1210
#, c-format
msgid "partition %s is now known as %s"
msgstr "partisie %s staan bekens as %s"
-#: diskdrake/interactive.pm:1199
+#: diskdrake/interactive.pm:1211
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""
-#: diskdrake/interactive.pm:1219 diskdrake/interactive.pm:1281
+#: diskdrake/interactive.pm:1231 diskdrake/interactive.pm:1293
#, c-format
msgid "Device: "
msgstr "Toestel: "
-#: diskdrake/interactive.pm:1220
-#, fuzzy, c-format
-msgid "Devfs name: "
-msgstr "Rekenaarnaam: "
-
-#: diskdrake/interactive.pm:1221
+#: diskdrake/interactive.pm:1232
#, c-format
msgid "Volume label: "
msgstr ""
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1233
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-skyfletter: %s ('n raaiskoot)\n"
-#: diskdrake/interactive.pm:1226 diskdrake/interactive.pm:1235
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1237 diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1311
#, c-format
msgid "Type: "
msgstr "Tipe:"
-#: diskdrake/interactive.pm:1230 install_steps_gtk.pm:300
+#: diskdrake/interactive.pm:1241
#, c-format
msgid "Name: "
msgstr "Naam: "
-#: diskdrake/interactive.pm:1237
+#: diskdrake/interactive.pm:1248
#, c-format
msgid "Start: sector %s\n"
msgstr "Begin: sektor %s\n"
-#: diskdrake/interactive.pm:1238
+#: diskdrake/interactive.pm:1249
#, c-format
msgid "Size: %s"
msgstr "Grootte: %s"
-#: diskdrake/interactive.pm:1240
+#: diskdrake/interactive.pm:1251
#, c-format
msgid ", %s sectors"
msgstr ", %s sektore"
-#: diskdrake/interactive.pm:1242
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silinder %d na silinder %d\n"
-#: diskdrake/interactive.pm:1243
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Formatted\n"
msgstr "Geformateer\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "Not formatted\n"
msgstr "Nie geformatter\n"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Mounted\n"
msgstr "Geheg\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1252
+#: diskdrake/interactive.pm:1263
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2852,7 +1964,7 @@ msgstr ""
"Teruglus lêer(s):\n"
" %s\n"
-#: diskdrake/interactive.pm:1253
+#: diskdrake/interactive.pm:1264
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2861,27 +1973,27 @@ msgstr ""
"Verstekpartisie vir herlaai\n"
" (vir MS_DOS doeleinDES, nie LILO s'n nie)\n"
-#: diskdrake/interactive.pm:1255
+#: diskdrake/interactive.pm:1266
#, c-format
msgid "Level %s\n"
msgstr "Vlak %s\n"
-#: diskdrake/interactive.pm:1256
+#: diskdrake/interactive.pm:1267
#, fuzzy, c-format
msgid "Chunk size %d KiB\n"
msgstr "Blokgrootte %s\n"
-#: diskdrake/interactive.pm:1257
+#: diskdrake/interactive.pm:1268
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-skywe %s\n"
-#: diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1270
#, c-format
msgid "Loopback file name: %s"
msgstr "Teruglus lêernaam: %s"
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1273
#, c-format
msgid ""
"\n"
@@ -2894,7 +2006,7 @@ msgstr ""
"drywerpartisie is en verkieslik alleen gelos\n"
"moet word.\n"
-#: diskdrake/interactive.pm:1265
+#: diskdrake/interactive.pm:1276
#, c-format
msgid ""
"\n"
@@ -2906,76 +2018,79 @@ msgstr ""
"Hierdie spesiale herlaaipartisie\n"
"is om u stelsel te duolaai.\n"
-#: diskdrake/interactive.pm:1282
+#: diskdrake/interactive.pm:1285
+#, c-format
+msgid "Empty space on %s (%s)"
+msgstr ""
+
+#: diskdrake/interactive.pm:1294
#, c-format
msgid "Read-only"
msgstr "Lees-alleen"
-#: diskdrake/interactive.pm:1283
+#: diskdrake/interactive.pm:1295
#, c-format
msgid "Size: %s\n"
msgstr "Grootte: %s\n"
-#: diskdrake/interactive.pm:1284
+#: diskdrake/interactive.pm:1296
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s silinders, %s koppe, %s sektore\n"
-#: diskdrake/interactive.pm:1285 network/thirdparty.pm:331
+#: diskdrake/interactive.pm:1297
#, c-format
msgid "Info: "
msgstr "Info:"
-#: diskdrake/interactive.pm:1286
+#: diskdrake/interactive.pm:1298
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-skywe %s\n"
-#: diskdrake/interactive.pm:1287
+#: diskdrake/interactive.pm:1299
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipe Partisielys: %s\n"
-#: diskdrake/interactive.pm:1288
+#: diskdrake/interactive.pm:1300
#, c-format
msgid "on channel %d id %d\n"
msgstr "op bus %d id %d\n"
-#: diskdrake/interactive.pm:1331
+#: diskdrake/interactive.pm:1343
#, c-format
msgid "Filesystem encryption key"
msgstr "Enkripsie-sleutel van lêerstelsel"
-#: diskdrake/interactive.pm:1332
+#: diskdrake/interactive.pm:1344
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Kies 'n enkripsie-sleutel vir u lêerstelsel"
-#: diskdrake/interactive.pm:1335
+#: diskdrake/interactive.pm:1347
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Hierdie enkripsie-sleutel is te eenvoudig. (moet ten minste %d karakters "
"bevat.)"
-#: diskdrake/interactive.pm:1336
+#: diskdrake/interactive.pm:1348
#, c-format
msgid "The encryption keys do not match"
msgstr "Die enkripsie-sleutels stem nie ooreen nie."
-#: diskdrake/interactive.pm:1339 network/netconnect.pm:1073
-#: standalone/drakconnect:419 standalone/drakroam:120
+#: diskdrake/interactive.pm:1351
#, c-format
msgid "Encryption key"
msgstr "Enkripsie-sleutel"
-#: diskdrake/interactive.pm:1340
+#: diskdrake/interactive.pm:1352
#, c-format
msgid "Encryption key (again)"
msgstr "Enkripsie-sleutel (nogmaals)"
-#: diskdrake/interactive.pm:1342 standalone/drakvpn:1017
-#: standalone/drakvpn:1102
+#: diskdrake/interactive.pm:1354
#, c-format
msgid "Encryption algorithm"
msgstr "Enkripsie-algoritme"
@@ -2985,27 +2100,35 @@ msgstr "Enkripsie-algoritme"
msgid "Change type"
msgstr "Verander tipe"
-#: diskdrake/smbnfs_gtk.pm:163
+#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:539
+#: interactive/curses.pm:214 interactive/http.pm:104 interactive/http.pm:160
+#: interactive/stdio.pm:39 interactive/stdio.pm:142 ugtk2.pm:404 ugtk2.pm:506
+#: ugtk2.pm:515 ugtk2.pm:788
+#, c-format
+msgid "Cancel"
+msgstr "Kanselleer"
+
+#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr "Kan nie met gebruikernaam %s inteken nie (werkeerde wagwoord?)"
-#: diskdrake/smbnfs_gtk.pm:167 diskdrake/smbnfs_gtk.pm:176
+#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Benodig Domein-magtiging"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Watter gebruiker"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Nog een"
-#: diskdrake/smbnfs_gtk.pm:177
+#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
@@ -3013,86 +2136,81 @@ msgstr ""
"Voorsien asseblief u gebruikernaam, wagwoord en domeinnaam vir toegang tot\n"
" hierdie rekenaar."
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3640
+#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Gebruikernaam"
-#: diskdrake/smbnfs_gtk.pm:205
+#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Soek bedieners"
-#: diskdrake/smbnfs_gtk.pm:210
+#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr "Deursoek netnuus-bedieners"
-#: do_pkgs.pm:16 do_pkgs.pm:49
+#: do_pkgs.pm:16 do_pkgs.pm:53
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Die pakket %s moet geïnstalleer word. Wil u dit installeer?"
-#: do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:52 printer/printerdrake.pm:3948
+#: do_pkgs.pm:19 do_pkgs.pm:40 do_pkgs.pm:56
#, fuzzy, c-format
msgid "Could not install the %s package!"
msgstr "Installeer pakket %s"
-#: do_pkgs.pm:24 do_pkgs.pm:57
+#: do_pkgs.pm:24 do_pkgs.pm:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Verpligte pakket %s ontbreek"
-#: do_pkgs.pm:35 harddrake/sound.pm:278 install_steps_interactive.pm:1288
-#: keyboard.pm:381 network/ndiswrapper.pm:95 network/netconnect.pm:471
-#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2495
-#: printer/printerdrake.pm:2632 printer/printerdrake.pm:2953
-#: printer/printerdrake.pm:2960 printer/printerdrake.pm:3947
-#: printer/printerdrake.pm:4211 printer/printerdrake.pm:4330
-#: printer/printerdrake.pm:5487 standalone/drakTermServ:354
-#: standalone/drakTermServ:1267 standalone/drakTermServ:1328
-#: standalone/drakTermServ:2006 standalone/drakbackup:510
-#: standalone/drakbackup:609 standalone/drakboot:133 standalone/drakclock:224
-#: standalone/drakconnect:973 standalone/drakfont:679 standalone/drakperm:380
-#: standalone/drakperm:390 standalone/drakups:27 standalone/harddrake2:510
-#: standalone/harddrake2:526 standalone/localedrake:43
-#: standalone/scannerdrake:51 standalone/scannerdrake:957
-#, c-format
-msgid "Warning"
-msgstr "Waarskuwing"
-
-#
-#: do_pkgs.pm:35 standalone/harddrake2:526
+#: do_pkgs.pm:35
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Die volgende pakkette geïnstalleer word:\n"
-#: do_pkgs.pm:205
+#: do_pkgs.pm:209
#, c-format
msgid "Installing packages..."
msgstr "Installeer pakkette..."
-#: do_pkgs.pm:252
+#: do_pkgs.pm:255
#, c-format
msgid "Removing packages..."
msgstr "Verwyder pakkette..."
-#: fs/format.pm:58 fs/format.pm:65
+#: fs/any.pm:17
+#, c-format
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"'n Fout het voorgekom - geen geldige toestelle om die nuwe lêerstelsels op "
+"te skep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
+
+#: fs/any.pm:62 fs/partitioning_wizard.pm:55
+#, c-format
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "U moet oor 'n FAT partisie wat as /boot/efi geheg is, beskik"
+
+#: fs/format.pm:59 fs/format.pm:66
#, c-format
msgid "Formatting partition %s"
msgstr "Partisie %s word formateer"
-#: fs/format.pm:62
+#: fs/format.pm:63
#, c-format
msgid "Creating and formatting file %s"
msgstr "Lêer %s word geskep en formatteer"
-#: fs/format.pm:115
+#: fs/format.pm:116
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "Ek weet nie om %s as tipe %s te formateer nie"
-#: fs/format.pm:120 fs/format.pm:122
+#: fs/format.pm:121 fs/format.pm:123
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering ban %s het gefaal"
@@ -3102,27 +2220,27 @@ msgstr "%s formatering ban %s het gefaal"
msgid "Circular mounts %s\n"
msgstr "Sirkulêre heg %s\n"
-#: fs/mount.pm:74
+#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "Heg partisie %s"
-#: fs/mount.pm:75
+#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "heg van partisie %s in lêergids %s het gefaal"
-#: fs/mount.pm:80 fs/mount.pm:97
+#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "Toets %s"
-#: fs/mount.pm:113 partition_table.pm:385
+#: fs/mount.pm:118 partition_table.pm:384
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout met onthegting van %s: %s"
-#: fs/mount.pm:142
+#: fs/mount.pm:133
#, c-format
msgid "Enabling swap partition %s"
msgstr "Aktiveer 'swap'-partisie %s"
@@ -3198,35 +2316,305 @@ msgstr "Alle I/O na die lêerstelsel moet sinkronies wees."
#: fs/mount_options.pm:139
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow every user to mount and umount the file system."
msgstr ""
#: fs/mount_options.pm:141
#, c-format
-msgid "Enable user disk quota accounting, and optionally enforce limits"
+msgid "Allow an ordinary user to mount the file system."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Support user. extended attributes"
+msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""
#: fs/mount_options.pm:145
#, c-format
+msgid "Support \"user.\" extended attributes"
+msgstr ""
+
+#: fs/mount_options.pm:147
+#, c-format
msgid "Give write access to ordinary users"
msgstr "Verleen skryf-toegang aan gewone gebruikers"
-#: fs/mount_options.pm:147
+#: fs/mount_options.pm:149
#, c-format
msgid "Give read-only access to ordinary users"
msgstr "Verleen slegs lees-toegang aan gewone gebruikers"
-#: fs/type.pm:363
+#: fs/mount_point.pm:80
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Duplikaat hegpunt %s"
+
+#: fs/mount_point.pm:95
+#, c-format
+msgid "No partition available"
+msgstr "geen beskikbare partisies"
+
+#: fs/mount_point.pm:98
+#, c-format
+msgid "Scanning partitions to find mount points"
+msgstr "Deursoek partisies vir hegpunte"
+
+#: fs/mount_point.pm:105
+#, c-format
+msgid "Choose the mount points"
+msgstr "Kies die hegpunte"
+
+#: fs/partitioning.pm:46
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "Kies die partisies om te formatteer"
+
+#: fs/partitioning.pm:76
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+"Probleme met die ondersoek van lêerstelsel %s. Wil u die foute herstel? "
+"( neem kennis dat dit dataverlies kan meebring)"
+
+#: fs/partitioning.pm:79
+#, c-format
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Nie genoeg ruilarea om die installasie te voltooi. Voeg asb. by."
+
+#: fs/partitioning_wizard.pm:47
+#, c-format
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"U moet 'n wortelpartisie definieer.\n"
+"Skep 'n partisie of kliek op 'n bestaande een.\n"
+"Kies dan Hegpunt en stel dit dan '/'."
+
+#: fs/partitioning_wizard.pm:52
+#, c-format
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+"U het nie 'n ruilpartisie nie\n"
+"\n"
+"Wil u steeds voortgaan?"
+
+#: fs/partitioning_wizard.pm:80
+#, c-format
+msgid "Use free space"
+msgstr "Gebruik beskikbare spasie"
+
+#: fs/partitioning_wizard.pm:82
+#, c-format
+msgid "Not enough free space to allocate new partitions"
+msgstr "Tekort aan oop spasie vir die nuwe partisies"
+
+#: fs/partitioning_wizard.pm:90
+#, c-format
+msgid "Use existing partitions"
+msgstr "Gebruik bestaande partisies"
+
+#: fs/partitioning_wizard.pm:92
+#, c-format
+msgid "There is no existing partition to use"
+msgstr "Daar is geen bestaande partisies om te gebruik nie"
+
+#: fs/partitioning_wizard.pm:99
+#, c-format
+msgid "Use the Microsoft Windows® partition for loopback"
+msgstr "Gebruik vir die Microsoft Windows®-partisie vir teruglus"
+
+#: fs/partitioning_wizard.pm:102
+#, c-format
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Watter partisie wil u vir Linux4Win gebruik?"
+
+#: fs/partitioning_wizard.pm:104
+#, c-format
+msgid "Choose the sizes"
+msgstr "Kies die groottes"
+
+#: fs/partitioning_wizard.pm:105
+#, c-format
+msgid "Root partition size in MB: "
+msgstr "'root'-partisiegrootte in MB:"
+
+#: fs/partitioning_wizard.pm:106
+#, c-format
+msgid "Swap partition size in MB: "
+msgstr "Ruilpartisiegrootte in MB: "
+
+#: fs/partitioning_wizard.pm:115
+#, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+"Daar is geen FAT partisies om as teruglus (nie genoeg spasie nie) te gebruik "
+"nie"
+
+#: fs/partitioning_wizard.pm:122
+#, c-format
+msgid "Use the free space on the Microsoft Windows® partition"
+msgstr "Gebruik die beskikbare spasie op die Windows-partisie"
+
+#: fs/partitioning_wizard.pm:124
+#, c-format
+msgid "Which partition do you want to resize?"
+msgstr "Watter partisie se grootte wil u verander?"
+
+#: fs/partitioning_wizard.pm:138
+#, c-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+"Die FAT-verstellingsprogram kan nie u partisie hanteer nie.\n"
+"Fout: %s"
+
+#: fs/partitioning_wizard.pm:141
+#, c-format
+msgid "Computing the size of the Microsoft Windows® partition"
+msgstr "Bereken die grootte van die Microsoft Windows®partisie"
+
+#: fs/partitioning_wizard.pm:148
+#, c-format
+msgid ""
+"Your Microsoft Windows® partition is too fragmented. Please reboot your "
+"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
+"the Mandriva Linux installation."
+msgstr "U Windows-partisie is te gefragmenteer. Loop eers 'defrag' asb."
+
+#: fs/partitioning_wizard.pm:151
+#, 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 ""
+"WAARSKUWING\n"
+"\n"
+"\n"
+"DrakX gaan nou u Microsoft Windows®-partisie vestel.\n"
+"\n"
+"\n"
+"WEES VERSIGTIG: Hierdie aksie kan gevaarlik wees. Indien nog nie, moet u tog "
+"\"chkdsk c:\" loop vanaf die instruksielyn in Windows. (let daarop die "
+"grafiese \"scandisk\" is nie voldoende nie - GEBRUIK \"chkdsk\"!) U kan ook "
+"gerus \"defrag\" daarna loop, en u data rugsteun Begin dan weer hierdie "
+"installasie.\n"
+"\n"
+"\n"
+"Andersins, klik op %s."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: fs/partitioning_wizard.pm:160 interactive.pm:538 interactive/curses.pm:217
+#: ugtk2.pm:508
+#, c-format
+msgid "Next"
+msgstr "Volgende"
+
+#: fs/partitioning_wizard.pm:163
+#, c-format
+msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
+msgstr "Watter grootte wil u vir Microsoft Windows® behou? partisie %s?"
+
+#: fs/partitioning_wizard.pm:164
+#, c-format
+msgid "Size"
+msgstr "Grootte"
+
+#: fs/partitioning_wizard.pm:173
+#, c-format
+msgid "Resizing Microsoft Windows® partition"
+msgstr "Microsoft Windows®lêerstelselgrense word bereken"
+
+#: fs/partitioning_wizard.pm:178
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "FAT-grootteverandering het gefaal: %s"
+
+#: fs/partitioning_wizard.pm:193
+#, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr "Daar is geen FAT partisies om te verander nie(nie genoeg spasie nie)"
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Remove Microsoft Windows®"
+msgstr "Verwyder Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:198
+#, fuzzy, c-format
+msgid "Erase and use entire disk"
+msgstr "Wis hele skyf"
+
+#: fs/partitioning_wizard.pm:200
+#, c-format
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "U het meer as een hardeskyf, waar wil u Linux installeer?"
+
+#: fs/partitioning_wizard.pm:206
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Alle bestaande partisies en data sal uitgewis word op skyf %s"
+
+#: fs/partitioning_wizard.pm:217
+#, c-format
+msgid "Custom disk partitioning"
+msgstr "Gespesialiseerde skyfpartisionering"
+
+#: fs/partitioning_wizard.pm:223
+#, c-format
+msgid "Use fdisk"
+msgstr "Gebruik fdisk"
+
+#: fs/partitioning_wizard.pm:226
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+"U het nou partisie %s partisioneer.\n"
+"Wanneer u klaar is, stoor u veranderinge met 'w'."
+
+#: fs/partitioning_wizard.pm:266
+#, c-format
+msgid "I can not find any room for installing"
+msgstr "Ek kon geen plek vir installasie vind nie."
+
+#: fs/partitioning_wizard.pm:270
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Die DrakX partisioneringsassistent het die volgende oplossings:"
+
+#: fs/partitioning_wizard.pm:278
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Partisionering het misluk: %s"
+
+#: fs/type.pm:366
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "U kan nie JFS vir partisies kleiner as 16MB gebruik nie"
-#: fs/type.pm:364
+#: fs/type.pm:367
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "U kan nie ReiserFS vir partisies kleiner as 32MB gebruik nie"
@@ -3241,7 +2629,12 @@ msgstr "met '/usr'"
msgid "server"
msgstr "bediener"
-#: fsedit.pm:219
+#: fsedit.pm:116
+#, c-format
+msgid "BIOS software RAID detected on disks %s. Activate it?"
+msgstr ""
+
+#: fsedit.pm:230
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
@@ -3259,22 +2652,22 @@ msgstr ""
"\n"
"Will u al die partisies verwyder?\n"
-#: fsedit.pm:392
+#: fsedit.pm:403
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Hegpunte moet met 'n / begin"
-#: fsedit.pm:393
+#: fsedit.pm:404
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Hegpunte kan slegs alfa-numeriese karakters bevat"
-#: fsedit.pm:394
+#: fsedit.pm:405
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Daar is alreeds 'n partisie met hegpunt %s\n"
-#: fsedit.pm:398
+#: fsedit.pm:409
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -3285,14 +2678,14 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: fsedit.pm:404
+#: fsedit.pm:415
#, fuzzy, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: fsedit.pm:406
+#: fsedit.pm:417
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -3304,34 +2697,34 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: fsedit.pm:410 fsedit.pm:412
+#: fsedit.pm:421 fsedit.pm:423
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Hierdie lêergids moet altyd in die wortellêerstelsel bly"
-#: fsedit.pm:414 fsedit.pm:416
+#: fsedit.pm:425 fsedit.pm:427
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr "U benodig 'n ware lêerstelsel (ext2, reiserfs) vir hierdie hegpunt\n"
-#: fsedit.pm:418
+#: fsedit.pm:429
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr "U kan nie 'n lêerstelsel met enkripsie vir hegpunt %s gebruik nie."
-#: fsedit.pm:482
+#: fsedit.pm:493
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nie genoeg spasie vir outo-toekenning beskikbaar nie"
-#: fsedit.pm:484
+#: fsedit.pm:495
#, c-format
msgid "Nothing to do"
msgstr "Niks om te doen nie"
-#: harddrake/data.pm:62 install_any.pm:1710
+#: harddrake/data.pm:62
#, c-format
msgid "Floppy"
msgstr "Disket"
@@ -3341,12 +2734,12 @@ msgstr "Disket"
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:88 install_any.pm:1711
+#: harddrake/data.pm:88
#, c-format
msgid "Hard Disk"
msgstr "Skyf"
-#: harddrake/data.pm:97 install_any.pm:1712
+#: harddrake/data.pm:97
#, c-format
msgid "CDROM"
msgstr "CDROM"
@@ -3361,103 +2754,102 @@ msgstr "CD/DVD-skrywers"
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:127 standalone/drakbackup:2066
+#: harddrake/data.pm:127
#, c-format
msgid "Tape"
msgstr "Magnetiese band"
-#: harddrake/data.pm:136
+#: harddrake/data.pm:138
+#, fuzzy, c-format
+msgid "AGP controllers"
+msgstr "USB beheerders"
+
+#: harddrake/data.pm:147
#, c-format
msgid "Videocard"
msgstr "Videokaart"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:157
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:154
+#: harddrake/data.pm:165
#, c-format
msgid "Tvcard"
msgstr "TV-kaart"
-#: harddrake/data.pm:163
+#: harddrake/data.pm:174
#, c-format
msgid "Other MultiMedia devices"
msgstr "Ander MultiMedia-toestelle"
-#: harddrake/data.pm:172
+#: harddrake/data.pm:183
#, c-format
msgid "Soundcard"
msgstr "Klankkaart"
-#: harddrake/data.pm:185
+#: harddrake/data.pm:196
#, c-format
msgid "Webcam"
msgstr "Webkamera"
-#: harddrake/data.pm:199
+#: harddrake/data.pm:210
#, c-format
msgid "Processors"
msgstr "Verwerkers"
-#: harddrake/data.pm:209
+#: harddrake/data.pm:220
#, c-format
msgid "ISDN adapters"
msgstr "ISDN toestelle"
-#: harddrake/data.pm:220
+#: harddrake/data.pm:231
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:229
+#: harddrake/data.pm:240
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:238
+#: harddrake/data.pm:249
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:247
+#: harddrake/data.pm:258
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:256
+#: harddrake/data.pm:267
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:265
+#: harddrake/data.pm:276
#, c-format
msgid "Ethernetcard"
msgstr "Ethernetkaart"
-#: harddrake/data.pm:282 network/netconnect.pm:492
+#: harddrake/data.pm:293
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:292
+#: harddrake/data.pm:303
#, c-format
msgid "ADSL adapters"
msgstr "ADSL toestelle"
-#: harddrake/data.pm:306
+#: harddrake/data.pm:315
#, c-format
msgid "Memory"
msgstr "Geheue"
-#: harddrake/data.pm:315
-#, fuzzy, c-format
-msgid "AGP controllers"
-msgstr "USB beheerders"
-
-#: harddrake/data.pm:324 help.pm:187 help.pm:856
-#: install_steps_interactive.pm:964
+#: harddrake/data.pm:324
#, c-format
msgid "Printer"
msgstr "Drukker"
@@ -3483,85 +2875,92 @@ msgstr "SATA-beheerders"
msgid "RAID controllers"
msgstr "RAID-beheerders"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA beheerders"
-#: harddrake/data.pm:385
+#: harddrake/data.pm:386
+#, c-format
+msgid "USB Mass Storage Devices"
+msgstr ""
+
+#: harddrake/data.pm:395
+#, fuzzy, c-format
+msgid "Card readers"
+msgstr "Model kaart:"
+
+#: harddrake/data.pm:404
#, c-format
msgid "Firewire controllers"
msgstr "Firewire-beheerders"
-#: harddrake/data.pm:394
+#: harddrake/data.pm:413
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA-beheerders"
-#: harddrake/data.pm:403
+#: harddrake/data.pm:422
#, c-format
msgid "SCSI controllers"
msgstr "SCSI-beheerders"
-#: harddrake/data.pm:412
+#: harddrake/data.pm:431
#, c-format
msgid "USB controllers"
msgstr "USB beheerders"
-#: harddrake/data.pm:421
+#: harddrake/data.pm:440
#, fuzzy, c-format
msgid "USB ports"
msgstr "USB-drukker"
-#: harddrake/data.pm:430
+#: harddrake/data.pm:449
#, c-format
msgid "SMBus controllers"
msgstr "SMBus-beheerders"
-#: harddrake/data.pm:439
+#: harddrake/data.pm:458
#, c-format
msgid "Bridges and system controllers"
msgstr "Brûe en stelselbeheerders"
-#: harddrake/data.pm:450 help.pm:856 install_steps_interactive.pm:94
-#: install_steps_interactive.pm:924 standalone/finish-install:41
-#: standalone/keyboarddrake:29
+#: harddrake/data.pm:469
#, c-format
msgid "Keyboard"
msgstr "Sleutelbord"
-#: harddrake/data.pm:463
+#: harddrake/data.pm:482
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:472 help.pm:856 install_steps_interactive.pm:957
+#: harddrake/data.pm:491
#, c-format
msgid "Mouse"
msgstr "Muis"
-#: harddrake/data.pm:486
+#: harddrake/data.pm:505
#, fuzzy, c-format
msgid "UPS"
msgstr "CUPS"
-#: harddrake/data.pm:495
+#: harddrake/data.pm:514
#, c-format
msgid "Scanner"
msgstr "Skandeerder"
-#: harddrake/data.pm:505 standalone/harddrake2:475
+#: harddrake/data.pm:524
#, c-format
msgid "Unknown/Others"
msgstr "Onbekend/Ander"
-#: harddrake/data.pm:533
+#: harddrake/data.pm:552
#, c-format
msgid "cpu # "
msgstr "cpu # "
-#: harddrake/sound.pm:195 standalone/drakconnect:162
-#: standalone/drakconnect:637
+#: harddrake/sound.pm:195
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Wag asb... Konfigurasie word toegpas"
@@ -3644,17 +3043,17 @@ msgstr ""
"- die nuwe ALSA-api gebruik. Dit het heelwat gevorderde\n"
"glanspunte het, maar moet die ALSA programmateek gebruik\n"
-#: harddrake/sound.pm:262 harddrake/sound.pm:350 standalone/drakups:144
+#: harddrake/sound.pm:262 harddrake/sound.pm:351
#, c-format
msgid "Driver:"
msgstr "Drywer:"
-#: harddrake/sound.pm:270
+#: harddrake/sound.pm:271
#, c-format
msgid "Trouble shooting"
msgstr "Probleemoplossing"
-#: harddrake/sound.pm:278
+#: harddrake/sound.pm:279
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
@@ -3669,12 +3068,12 @@ msgstr ""
"\n"
"Die nuwe \"%s\" drywer sal met die volgende selflaai gebruik word."
-#: harddrake/sound.pm:286
+#: harddrake/sound.pm:287
#, c-format
msgid "No open source driver"
msgstr "Geen oopbron drywer"
-#: harddrake/sound.pm:287
+#: harddrake/sound.pm:288
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
@@ -3683,34 +3082,34 @@ msgstr ""
"Daar is geen gratis drywer vir u klankkaart (%s) nie, daar is wel 'n "
"gepatenteerde een by \"%s\"."
-#: harddrake/sound.pm:290
+#: harddrake/sound.pm:291
#, c-format
msgid "No known driver"
msgstr "Geen drywer bekend"
-#: harddrake/sound.pm:291
+#: harddrake/sound.pm:292
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
"Daar is geen drywer, sover ons weet, beskikbaar vir klankkaart (%s) nie"
-#: harddrake/sound.pm:295 network/netconnect.pm:98 network/netconnect.pm:837
+#: harddrake/sound.pm:296
#, c-format
msgid "Unknown driver"
msgstr "Onbekende drywer"
-#: harddrake/sound.pm:296
+#: harddrake/sound.pm:297
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "Fout: Die \"%s\" drywer vir u klankkaart in nie gelys nie"
-#: harddrake/sound.pm:310
+#: harddrake/sound.pm:311
#, c-format
msgid "Sound trouble shooting"
msgstr "Klank foutopsporing"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:313
+#: harddrake/sound.pm:314
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
@@ -3719,7 +3118,7 @@ msgid ""
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\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"
@@ -3740,7 +3139,7 @@ msgstr ""
"- \"lspcidrake -v | fgrep AUDIO\"sal vir u aandui watter verstek drywer u\n"
"kaart gebruik\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" sal aan u vertoon watter drywer\n"
+"- \"grep sound-slot /etc/modprobe.conf\" sal aan u vertoon watter drywer\n"
"tans gebruik word\n"
"\n"
"- \"/sbin/lsmod\" sal u toelaat om te sien of die kaart se module (drywer)\n"
@@ -3754,18 +3153,18 @@ msgstr ""
"- \"/sbin/fuser -v /dev/dsp\" sal aandui watter program die klankkaart\n"
"gebruik.\n"
-#: harddrake/sound.pm:339
+#: harddrake/sound.pm:340
#, c-format
msgid "Let me pick any driver"
msgstr "Laat ek enige drywer kies"
-#: harddrake/sound.pm:342
+#: harddrake/sound.pm:343
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Kies 'n eiemagtige drywer"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:345
+#: harddrake/sound.pm:346
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3779,8 +3178,7 @@ msgstr ""
"\n"
"Die \"%s\" klankkaart gebruik tans die \"%s\" drywer "
-#: harddrake/v4l.pm:12 standalone/net_applet:64 standalone/net_applet:65
-#: standalone/net_applet:67
+#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Gebruik outospeuring"
@@ -3823,3581 +3221,53 @@ msgstr "Model kaart:"
msgid "Tuner type:"
msgstr "Tipe instemmer"
-#: harddrake/v4l.pm:479
+#: interactive.pm:125 interactive.pm:538 interactive/curses.pm:217
+#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
+#: interactive/stdio.pm:142 interactive/stdio.pm:143 ugtk2.pm:410 ugtk2.pm:508
+#: ugtk2.pm:788 ugtk2.pm:811
#, c-format
-msgid "Number of capture buffers:"
-msgstr "Aantal ontvang-buffers:"
-
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "aantal ontvang-buffers vir nmap se vangs"
-
-#: harddrake/v4l.pm:481
-#, c-format
-msgid "PLL setting:"
-msgstr "PLL verstelling:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "Radio support:"
-msgstr "Ondersteunig vir Radio:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "enable radio support"
-msgstr "laat radio ondersteuning toe"
-
-#: help.pm:12
-#, c-format
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandriva Linux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-"Voordat u voortgaan, lees asb die lisensieterme noukeurig deur. Dit dek\n"
-"die hele Mandriva Linux distribusie. Indien u saamstem met al die\n"
-"voorwaardes daarin, merk die \"%s\" boksie. Indien nie, kan u op die\n"
-"\"%s\" knoppie druk om teherlaai."
-
-#: help.pm:18
-#, c-format
-msgid ""
-"GNU/Linux is a multi-user system which means each user can have his or her\n"
-"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point will not be "
-"authorized\n"
-"to change anything except their own files and their own configurations,\n"
-"protecting the system from unintentional or malicious changes which could\n"
-"impact on the system as a whole. You'll have to create at least one regular\n"
-"user for yourself -- this is the account which you should use for routine,\n"
-"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
-"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system will not work any more. If you make a\n"
-"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you will not affect the entire system.\n"
-"\n"
-"The first field asks you for a real name. Of course, this is not mandatory\n"
-"-- you can actually enter whatever you like. DrakX will use the first word\n"
-"you type in this field and copy it to the \"%s\" one, which is the name\n"
-"this user will enter to log onto the system. If you like, you may override\n"
-"the default and change the user name. The next step is to enter a password.\n"
-"From a security point of view, a non-privileged (regular) user password is\n"
-"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
-"by making it blank or too simple: after all, your files could be the ones\n"
-"at risk.\n"
-"\n"
-"Once you click on \"%s\", you can add other users. Add a user for each one\n"
-"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
-"finished adding users.\n"
-"\n"
-"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
-"that user (bash by default).\n"
-"\n"
-"When you're finished adding users, you'll be asked to choose a user who\n"
-"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click on\n"
-"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
-msgstr ""
-"GNU/Linux is 'n multigebruikerstelsel, dit beteken dat elke gebruiker sy\n"
-"eie voorkeure kan stel, met sy eie lêers ens. U kan meer hieroor in die\n"
-"\"Starter Guide\" lees. Andersins as 'root' (die supergebruiker) kan\n"
-"gebruikers wat u hier byvoeg niks behalwe hul eie lêers en eie\n"
-"konfigurasie verander nie. U moet ten minste een gewone gebruiker vir uself\n"
-"skep.\n"
-"Hierdie gebruker is die een waaronder u moet inteken vir normale gebruik\n"
-"van die rekenaar. Alhoewel dit baie gemaklik is om as 'root' in te teken "
-"vir\n"
-"daaglikse werk, is dit baie gevaarlik. 'n Eenvoudige fout kan moontlik u\n"
-"stelsel\n"
-"breek. 'n Fout wat as gewone gebruiker gemaak word, sal net daardie\n"
-"gebruiker\n"
-"beïnvloed en nie hele stelsel nie.\n"
-"\n"
-"Eers moet u, u eie naam intik. Dit is nie verpligtend nie, want u kan\n"
-"eintlik\n"
-"enigiets intik, as u wil. DrakX sal dan die eerste woord wat u ingetik het,\n"
-"in die\n"
-"\"%s\" veld plaas. U kan hier verander indien u wil. Dit is die\n"
-"gebruikernaam waarmee\n"
-"die gebruiker op die rekenaar sal aanteken. U moet dan ook 'n wagwoord\n"
-"voorsien.\n"
-"'n Gewone gebruiker se wagwoord is nie so krities soos dié van die\n"
-"supergebruiker\n"
-"(uit 'n sekuriteitsoogpunt) nie, maar daar is geen\n"
-"rede om agterlosig met u data te wees nie.\n"
-"\n"
-"\n"
-"Indien u op \"%s\" kliek sal die gebruiker geskep word en kan u nog\n"
-"gebruikers byvoeg.\n"
-"U kan vir al u vriende gebruikername skep, sommer een vir pa en ma ook. \n"
-"Sodra u klaar is, kliek op \"%s\".\n"
-"Kliek op die \"%s\" knoppie indien u die verstek-instruksiedop vir die\n"
-"gebruiker\n"
-"wil verander.\n"
-"Dit is bash by verstek.\n"
-"\n"
-"Sodra u klaar is met die skep van gebruikers, sal u gevra word om 'n\n"
-"gebruiker\n"
-"te kies wie outomaties sal inteken sodra Linux klaar selfgelaai het. Indien\n"
-"u hierdie funksie wil gebruik (en plaaslike sekuriteit tans nie vreeslik\n"
-"belangrik is nie), kies asseblief die verlangde gebruiker en venstermaker,\n"
-"klik dan op \"%s\".\n"
-"Indien u NIE hierdie funksie wil gebruik nie, sorg dat \"%s\" NIE gemerk is\n"
-"nie. "
-
-#: help.pm:52 printer/printerdrake.pm:1866 printer/printerdrake.pm:1987
-#: standalone/draksambashare:60
-#, c-format
-msgid "User name"
-msgstr "Gebruiker"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: help.pm:52 help.pm:432 help.pm:682 install_interactive.pm:176
-#: install_steps_gtk.pm:237 install_steps_gtk.pm:682 interactive.pm:436
-#: interactive/newt.pm:321 network/thirdparty.pm:385
-#: printer/printerdrake.pm:3884 standalone/drakTermServ:412
-#: standalone/drakbackup:4102 standalone/drakbackup:4196
-#: standalone/drakbackup:4213 standalone/drakbackup:4231 ugtk2.pm:490
-#, c-format
-msgid "Next"
-msgstr "Volgende"
-
-#: help.pm:52
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Wil u hierdie funksie gebruik?"
-
-#: help.pm:55
-#, c-format
-msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Hier is 'n lys van die bestaande Linux partisies wat opgespoor is.\n"
-"U kan die assistent se keuses behou, hulle is gewoonlik geskik vir die\n"
-"meeste installasies. Sou u wil verander, moet u ten minste 'n wortel-\n"
-"partisie (\"/\") voorsien. Dit moet nie te klein wees nie, anders kan ons \n"
-"nie genog sagteware installeer nie. Indien u die data op 'n aparte \n"
-"partisie wil stoor, moet u ook 'n \"/home\"-partisie skep.\n"
-"(waarvoor u meer as een Linux partisie nodig het).\n"
-"\n"
-"Elke partisie word as volg gelys: \"Naam\", \"Kapasiteit\".\n"
-"\n"
-"\"Naam werk as volg\" \"tipe hardeskyf\", \"nommer van hardeskyf\",\n"
-"\"nommer van partisie\" (byvoorbeeld: \"hda1\").\n"
-"\n"
-"Indien u 'n IDE tipe hardeskyf het sal die tipe \"hd\" wees, en SCSI, sal \n"
-"\"sd\" wees\n"
-"\n"
-"Die nommer van die hardeskyf is altyd 'n letter, wat volg na \"hd\" \n"
-"of \"sd\".\n"
-"Met IDE hardeskywe:\n"
-"\n"
-" * \"a\" beteken \"meester-hardeskyf op die primêre IDE-beheerder\";\n"
-"\n"
-" * \"b\" beteken \"slaaf-hardeskyf op die primêre IDE-beheerder\";\n"
-"\n"
-" * \"c\" beteken \"meester-hardeskyf op die sekondêre IDE-beheerder\";\n"
-"\n"
-" * \"e\" beteken \"slaaf-hardeskyf op die sekondêre IDE-beheerder\";\n"
-"\n"
-"Met SCSI-hardeskywe, beteken 'n \"a\" die kleinste SCSI-ID,\"b\" sal\n"
-"dan die volgende ID verteenwoordig ens."
-
-#: help.pm:86
-#, fuzzy, c-format
-msgid ""
-"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-"Die Mandriva Linux installasie is versprei oor 'n aantal CD-ROMs.DrakX\n"
-"weet wanneer 'n gekose pakket op 'n ander CD-ROM is. DrakX sal in so\n"
-"geval die huidige CD uitskop en aandui watter een benodig word."
-
-#: help.pm:93
-#, fuzzy, c-format
-msgid ""
-"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandriva Linux, and to make "
-"it\n"
-"simpler to manage, they have been placed into groups of similar\n"
-"applications.\n"
-"\n"
-"Mandriva Linux sorts package groups in four categories. You can mix and\n"
-"match applications from the various categories, so a ``Workstation''\n"
-"installation can still have applications from the ``Server'' category\n"
-"installed.\n"
-"\n"
-" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
-"more of the groups in the workstation category.\n"
-"\n"
-" * \"%s\": if you plan on using your machine for programming, select the\n"
-"appropriate groups from that category. The special \"LSB\" group will\n"
-"configure your system so that it complies as much as possible with the\n"
-"Linux Standard Base specifications.\n"
-"\n"
-" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
-"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
-"of the system. However, if you do not select the \"LSB\" group you will\n"
-"still have a system which is nearly 100%% LSB-compliant.\n"
-"\n"
-" * \"%s\": if your machine is intended to be a server, select which of the\n"
-"more common services you wish to install on your machine.\n"
-"\n"
-" * \"%s\": this is where you will choose your preferred graphical\n"
-"environment. At least one must be selected if you want to have a graphical\n"
-"interface available.\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group.\n"
-"\n"
-"You can check the \"%s\" box, which is useful if you're familiar with the\n"
-"packages being offered or if you want to have total control over what will\n"
-"be installed.\n"
-"\n"
-"If you start the installation in \"%s\" mode, you can deselect all groups\n"
-"and prevent the installation of any new packages. This is useful for\n"
-"repairing or updating an existing system.\n"
-"\n"
-"If you deselect all groups when performing a regular installation (as\n"
-"opposed to an upgrade), a dialog will pop up suggesting different options\n"
-"for a minimal installation:\n"
-"\n"
-" * \"%s\": install the minimum number of packages possible to have a\n"
-"working graphical desktop.\n"
-"\n"
-" * \"%s\": installs the base system plus basic utilities and their\n"
-"documentation. This installation is suitable for setting up a server.\n"
-"\n"
-" * \"%s\": will install the absolute minimum number of packages necessary\n"
-"to get a working Linux system. With this installation you will only have a\n"
-"command-line interface. The total size of this installation is about 65\n"
-"megabytes."
-msgstr ""
-"Nou moet u spesifiseer watter programme u op die rekenaar wil\n"
-"installeer. Daar is duisende pakkette beskikbaar vir Mandriva Linux, en\n"
-"om alles meer eenvoudig te maak, is die pakkette gegroepeer onder\n"
-"groepe van selfde tipe programme.\n"
-"\n"
-"Die groepe is so saamgestel dat dit saamval met die tipe gebruik van u\n"
-"rekenaar. Mandriva Linux het vier vooraf gespesifseerde installasies\n"
-"beskikbaar. Dink aan hierdie tipes as houers met verskillende pakkette.\n"
-"U kan wel uit die verskillende houers, verskillende pakkette kies.\n"
-"Dus kan u \"Werkstasie\" ook programme uit die \"Ontwikkeling\"\n"
-"bevat.\n"
-"( Amper soos die \"pick 'n mix\" by 'n Clicks of 'n winkel van u keuse! )\n"
-"\n"
-" * \"%s\": indien u die rekenaar as 'n werkstasie wil gebruik, kies een of\n"
-"meer hieruit.\n"
-"\n"
-" * \"%s\": indien u ontwikkelling op die masjien wil doen, kan u hier\n"
-"kies en keur.\n"
-"\n"
-" * \"%s\": mense wat 'n bediener wil opstel, hier is vir julle keuses.\n"
-"\n"
-" * \"%s\": Grafiese-omgewings. Indien u 'n grafiese omgewing wil\n"
-"gebruik, moet u ten minste een hier kies.\n"
-"\n"
-"Beweeg u muis stadig oor elke groep om meer inligting daaroor te bekom.\n"
-"Indien u NIKS kies nie gedurende 'n normale installasie, sal 'n venster\n"
-"opspring met verskillende keuses vir hierdie minimale installasie:\n"
-"\n"
-" * \"%s\": installeer die minimale programme vir 'n werkende grafiese\n"
-"werksomgewing.\n"
-"\n"
-" * \"%s\": installeer 'n basiese stelsel met basiese nutsporgramme en hul\n"
-"dokumentasie. Dit is geskik om 'n bediener op te stel.\n"
-"\n"
-" * \"%s\": sal 'n absolute minimale installasie doen, sodat u bloot 'n\n"
-"werkende Linux rekenaar het. Die grootte sal so 65 megagrepe wees.\n"
-"\n"
-"U kan die \"%s\" blokkie merk, dit is handig indien u vertroud is met al\n"
-"die beskikbare pakette, en u meer beheer verlang.\n"
-"\n"
-"Indien u die installasie in \"%s\"-modus begin het, kan u NIKS kies nie\n"
-"om te verhoed dat nuwe pakette installeer. Baie handig wanneer u 'n\n"
-"bestaande stelsel opdateeer, of herstel."
-
-#: help.pm:147 share/compssUsers.pl:24
-#, c-format
-msgid "Workstation"
-msgstr "Werkstasie"
-
-#: help.pm:147 share/compssUsers.pl:65 share/compssUsers.pl:167
-#: share/compssUsers.pl:169
-#, c-format
-msgid "Development"
-msgstr "Ontwikkeling"
-
-#: help.pm:147 share/compssUsers.pl:145
-#, c-format
-msgid "Graphical Environment"
-msgstr "Grafiese Omgewing"
-
-#: help.pm:147 install_steps_gtk.pm:235 install_steps_interactive.pm:623
-#, c-format
-msgid "Individual package selection"
-msgstr "Individuele pakket-seleksie"
-
-#: help.pm:147 help.pm:589
-#, c-format
-msgid "Upgrade"
-msgstr "Opgradeer"
-
-#: help.pm:147 install_steps_interactive.pm:581
-#, c-format
-msgid "With X"
-msgstr "Met X"
-
-#: help.pm:147
-#, c-format
-msgid "With basic documentation"
-msgstr "Met basiese dokumentasie"
-
-#: help.pm:147
-#, c-format
-msgid "Truly minimal install"
-msgstr "Werklike minimale installasie"
-
-#: help.pm:150
-#, fuzzy, c-format
-msgid ""
-"If you choose to install packages individually, the installer will present\n"
-"a tree containing all packages classified by groups and subgroups. While\n"
-"browsing the tree, you can select entire groups, subgroups, or individual\n"
-"packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description will appear on the\n"
-"right to let you know the purpose of that package.\n"
-"\n"
-"!! If a server package has been selected, either because you specifically\n"
-"chose the individual package or because it was part of a group of packages,\n"
-"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandriva Linux will automatically start any installed\n"
-"services at boot time. Even if they are safe and have no known issues at\n"
-"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandriva Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do "
-"or\n"
-"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
-"the listed services and they will be started automatically at boot time. !!\n"
-"\n"
-"The \"%s\" option is used to disable the warning dialog which appears\n"
-"whenever the installer automatically selects a package to resolve a\n"
-"dependency issue. Some packages depend on others and the installation of\n"
-"one particular package may require the installation of another package. The\n"
-"installer can determine which packages are required to satisfy a dependency\n"
-"to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-"package list created during a previous installation. This is useful if you\n"
-"have a number of machines that you wish to configure identically. Clicking\n"
-"on this icon will ask you to insert the floppy disk created at the end of\n"
-"another installation. See the second tip of the last step on how to create\n"
-"such a floppy."
-msgstr ""
-"Inidein u gespesifiseer het dat u individuele pakkette wil kies,\n"
-"sal daar 'n boom-struktuur aan u vertoon word met al die pakkette\n"
-"wat opgedeel is in groepe en sub-groepe. Soos u die deur hulle rits\n"
-"kan u hele groepe of sub-groepe kies, of self individuele pakkette.\n"
-"\n"
-"Sodra u 'n pakket kies, sal daar 'n beskrywing aan die regterkant verskyn\n"
-"wat aandui waarvoor die pakket gebruik word.\n"
-"\n"
-"Indien u 'n diensprogram kies, of dit nou deel is van 'n groepe pakkette of\n"
-"'n enkel een, sal u gevra word om die installasie daarvan te bevestig.\n"
-"Mandriva Linux sal by verstek alle bediener-programme afskop nadat u die\n"
-"rekenaar aangeskakel het. Hierdie bediener-programme is verpak sonder\n"
-"enige probleme bekend. Dit kon intussen verander het, nadat sekuriteits-"
-"gate\n"
-"gevind is. Indien u nie weet wat 'n diens veronderstel is om te doen nie, "
-"of\n"
-"waarom dit geïnstalleer word nie, klik op \"%s\". Deur op \"%s\" te klik "
-"sal\n"
-"die bediener-program geïnstalleer word en afskop sodra die Linux laai!!\n"
-"\n"
-"Die \"%s\"-opsie VERSPER die waarskuwings-dialoog wat verskyn\n"
-"sodra die installeerder ander pakkette moet kies a.g.v. afhanklikhede\n"
-"Afhanklikhede werk as volg: Sommige pakkette moet ander programme\n"
-"installeer om korrek te funksioneer, maar hierdie programme maak soms deel\n"
-"uit van 'n ander pakket, dus sal die installeer-program daardie pakkette\n"
-"ook installeer.\n"
-"\n"
-"Die klein disket-ikoon aan die lys se onderkant laat u toe om 'n lys van\n"
-"pakkette van 'n vorige installeasie te laai. Dit is handig indien u 'n\n"
-"aantal masjiene identies wil konfigureer. As u hierop klik, sal u gevra\n"
-"word om die disket te voorsien wat aan die einde van 'n vorige\n"
-"installasie geskep is. Raadpleeg die tweede wenk van die laaste stap\n"
-"oor hoe mens so disket skep."
-
-#: help.pm:181 help.pm:286 help.pm:314 help.pm:445 install_any.pm:944
-#: interactive.pm:161 modules/interactive.pm:71 standalone/drakbackup:2636
-#: standalone/drakfont:687 standalone/draksec:54 standalone/harddrake2:331
-#: ugtk2.pm:898 wizards.pm:156
-#, c-format
-msgid "No"
-msgstr "Nee"
+msgid "Ok"
+msgstr "OK"
-#: help.pm:181 help.pm:286 help.pm:445 install_any.pm:944 interactive.pm:161
-#: modules/interactive.pm:71 printer/printerdrake.pm:883
-#: printer/printerdrake.pm:898 standalone/drakbackup:2636
-#: standalone/drakfont:685 standalone/draksec:55 standalone/harddrake2:330
-#: ugtk2.pm:898 wizards.pm:156
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ja"
-#: help.pm:181
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Outomatiese-afhanklikhede"
-
-#: help.pm:184
-#, fuzzy, c-format
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to set up a new printer. The interface presented in our\n"
-"manual is similar to the one used during installation."
-msgstr ""
-"\"%s\": deur op die \"%s\" knoppie te klik, sal u toegang tot die 'printer\n"
-"configuration wizard' kry. Gaan gerus die ooreenstemde hoofstuk in die\n"
-"\"Starter Guide\" na vir meer inligting. Dit stem baie ooreen met die een."
-
-#: help.pm:187 help.pm:567 help.pm:856 install_steps_gtk.pm:595
-#: standalone/drakbackup:2460 standalone/drakbackup:2464
-#: standalone/drakbackup:2468 standalone/drakbackup:2472
-#: standalone/drakroam:227
-#, c-format
-msgid "Configure"
-msgstr "Konfigureer"
-
-#: help.pm:190
-#, fuzzy, c-format
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
-"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which are not needed at boot\n"
-"time.\n"
-"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably do not want to start any services which you do not "
-"need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-"U kan nou dienste kies wat by herlaaityd moet afskop.\n"
-"\n"
-"Wanneer u die muis oor 'n item beweeg, sal 'n klein ballon opspring\n"
-"wat die rol van die diens verduidelik.\n"
-"\n"
-"Wees versigtig met hierdie stap. Indien u beplan om dié rekenaar as 'n\n"
-"bediener te gebruik wil u nie dienste afskop wat u nie gaan gebruik nie."
-
-#: help.pm:207
-#, fuzzy, c-format
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
-"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
-msgstr ""
-"GNU/Linux gebruik die GMT (Greenwich Mean Time) as verwysing en verstel\n"
-"dan die tyd volgens u tydsone. Dit beteken dat, in Suid-Afrika,\n"
-"die tyd op die moederbord sowat twee ure \"uit\" sal wees,\n"
-"indien u Johannesburg as tydsone kies. U kan GNU/Linux forseer om\n"
-"die moederbord en plaaslike tyd dieselfde te hou deur NIE die \"%s\" te\n"
-"merk NIE. Gebruik dit so wanneer die rekenaar\n"
-"ander bedryfstelsels ook kan laai, byvoorbeeld Windows.\n"
-"\n"
-"Die \"%s\"-opsie sal outomaties die klok reguleer deur gebruik te maak van\n"
-"'n eksterne tyd-bediener op die Internet. U sal natuurlik 'n werkende\n"
-"Internetkonneksie daarvoor benodig. Kies 'n bediener naby u. Hierdie opsie\n"
-"laat u toe om hierdie rekenaar self as 'n tyd-bediener te gebruik."
-
-#: help.pm:218 install_steps_interactive.pm:859
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Hardewareklok gestel vir GMT"
-
-#: help.pm:218
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Outotydsinkronisasie"
-
-#: help.pm:221
-#, c-format
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-"Grafiesekaart\n"
-"\n"
-" Die installeer-program sal in meeste gevalle u grafiesekaart outomaties\n"
-"opspoor. Indien daar probleme is, kan u self van hierdie lys die kaart\n"
-"kies.\n"
-"\n"
-" Dit mag gebeur dat daar verskillende tipe X-bedieners beskikbaar sal\n"
-"wees vir u kaart, met of sonder 3D-versnelling, kies dan die een wat u\n"
-"behoefdes die beste sal bevredig."
-
-#: help.pm:232
-#, fuzzy, c-format
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"X (staan vir X Window Stelsel -let geen 's') is die hart van die GNU/Linux \n"
-"se grafiese-koppelvlak. Bo-op X, laai grafiese omgewings. ( dit sluit\n"
-"KDE, GNOME, AfterStep, WindowMaker ens. in)\n"
-"\n"
-"Hier is 'n lys van verstellings wat u kan verander om die beste resultate\n"
-"te verkry: Grafiesekaart\n"
-"\n"
-"Die program sal gewoonlik die regte grafiesekaart optel en opstel.\n"
-"Indien nie, kan u self die regte een vanaf hierdie lys kies.\n"
-"\n"
-" Dit mag gebeur dat daar verskillende tipe X-bedieners beskikbaar sal\n"
-"wees vir u kaart, met of sonder 3D-versnelling, kies dan die een wat u\n"
-"behoefdes die beste sal bevredig.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Die program sal gewoonlik u monitor korrek kies.\n"
-"Indien nie, kan u self die regte een vanaf hierdie lys kies.\n"
-"\n"
-"\n"
-"\n"
-"Resolusie\n"
-"\n"
-" Hier kan u die resolusie en aantal kleure kies wat vir u hardeware\n"
-"beskikbaar is. Kies die een wat u die beste sal pas.( let dat u wel\n"
-"hierdie keuse weer kan verander na die installasie). 'n voorbeeld\n"
-"van die gekose konfigurasie word vertoon op die skerm.\n"
-"\n"
-"\n"
-"\n"
-"Toets\n"
-"\n"
-" Afhangende van u hardeware, sal die inskrywing moontlik weg wees.\n"
-"\n"
-" ons gaan 'n grafiese skerm probeer opstel met die verstellings\n"
-"wat u gemaak het. Indien u die boodskap daarop kan sien en \"%s\"\n"
-"antwoord, sal DrakX na die volgende stap gaan. Indien u nie die boodskap\n"
-"kan sien nie, dui dit aan dat iets nie reg opgestel is nie. Die toets sal "
-"dan\n"
-"na 12 sekondes eindig, en terugval na die kieslys toe. Verander dan u\n"
-"keuses vir nog 'n probeerslag.\n"
-"\n"
-"\n"
-"\n"
-"Opsies\n"
-"\n"
-" Hier kan u spesifiseer indien u rekenaar die grafiese-koppelvlak moet\n"
-"begin tydens selflaai. U kan \"%s\" merk indien u 'die rekenaar as bediener\n"
-"gaan gebruik, of indien u nie X met sukses kon opstel nie"
-
-#: help.pm:289
-#, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
-msgstr ""
-"Monitor\n"
-"\n"
-" Die program sal gewoonlik u monitor korrek kies.\n"
-"Indien nie, kan u self die regte een vanaf hierdie lys kies."
-
-#: help.pm:296
-#, c-format
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
-msgstr ""
-"Resolusie\n"
-"\n"
-" Hier kan u die resolusie en aantal kleure kies wat vir u hardeware\n"
-"beskikbaar is. Kies die een wat u die beste sal pas.( let dat u wel hierdie\n"
-"keuse weer kan verander na die installasie). 'n voorbeeld van die gekose\n"
-"konfigurasie word vertoon op die skerm."
-
-#: help.pm:304
-#, fuzzy, c-format
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-"Indien daar verskillende tipe bedieners vir u kaart beskikbaar is, met of\n"
-"sonder 3D-versnelling, sal u gevra word om die een te kies wat u die beste\n"
-"sal pas."
-
-#: help.pm:309
-#, fuzzy, c-format
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"Opsies\n"
-"\n"
-" hier kan u kies of u die rekenaar wil laat eindig in 'n grafiese "
-"koppelvlak\n"
-"na dit aangeskakel is. U sal natuurlik \"%s\" kies indien die rekenaar as\n"
-"'n bediener gebruik gaan word, of u nie die skerm reg kon opstel nie."
-
-#: help.pm:317
-#, fuzzy, c-format
-msgid ""
-"You now need to decide where you want to install the Mandriva Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandriva Linux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandriva Linux system, "
-"choose\n"
-"this option. Be careful, because you will not be able to undo this "
-"operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-"Op hierdie tydstip moet u besluit waar op die hardeskyf u Mandriva Linux\n"
-"wil installeer. Indien u 'n leë hardeskyf het, of indien 'n bestaande\n"
-"bedryfstelsel al die beskikbare spasie gebruik, sal u partisies moet\n"
-"skep. Om 'n partisie te skep veroorsaak dat u die hardeskyf logies\n"
-"verdeel, om spasie te skep vir u nuwe Mandriva Linux bedryfstelsel.\n"
-"\n"
-"Indien u 'n onervare gebruiker is, kan die skep van partisies vreemd en\n"
-"intimiderend wees.\n"
-"Die skep van partisies is gewoonlik onomkeerbaar en kan dataverlies\n"
-"meebring indien daar reeds 'n bestaande bedryfstelsel op die hardeskyf is.\n"
-"Gelukkig sluit DrakX 'n assisstent in wat die proses vergemaklik.\n"
-"Voor u verder gaan, lees die volgende deel deeglik deur, en wees rustig!\n"
-"(Moet nie stres kap nie! - Chill Dude!)\n"
-"\n"
-"Afhangende van hoe u hardeskyf gekonfigureer is, is daar 'n aantal opsies\n"
-"beskikbaar:\n"
-"\n"
-" * \"%s\": hierdie opsie sal die partisies op u leë hardeskyf outomaties\n"
-"opstel.\n"
-"Indien u die een kies, is dit al inset wat u hoef te lewer.\n"
-"\n"
-" * \"%s\": die assistent het een of meer bestaande Linux-partisies op die\n"
-"hardeskyf gekry. Indien u wil gebruik maak van hulle, kies hierdie opsie.\n"
-"Daar is verstek hegpunte, wat u kan verander, indien u wil, maar ons stel\n"
-"voor u hou daarby.\n"
-"\n"
-" * \" %s\": indien u Microsoft Windows op u hardeskyf geïnstalleer het, en\n"
-"dit neem al die spasie in beslag, moet ons eers 'n plekkie vir Linux skep. U "
-"kan die Microsoft Windows partisie met al die data uitwis\n"
-"(verwys na 'Erase entie disk' oplossing)\n"
-"of u kan die Microsoft Windows FAT of NTFS partisie verklein. Dit kan "
-"geskied\n"
-"sonner verlies van data, mits u die partisie gedefragmenteer het.Ons beveel "
-"ten sterkste aan dat u 'n rugsteun maak van u data. Hierdie is\n"
-"die beste metode indien u beide Mandriva Linux en Microsoft Windows op die\n"
-"rekenaar wil gebruik.\n"
-"\n"
-"Neem tog kennis dat dit die beskikbare oop spasie in Microsoft Windows sal\n"
-"verminder, aangesien ons plek moet maak vir Linux op die hardeskyf.\n"
-"\n"
-" * \"%s\": Indien u alle data op alle partisies op u hardeskyf wil uitwis,\n"
-"en dit dan vervang met Mandriva Linux, kan u hierdie opsie kies.\n"
-"Wees versigtig die opsie is onomkeerbaar!\n"
-"\n"
-" !! Net weer waarsku: alle data op die skyf sal vernietig word. !! \n"
-" * \"%s\" hierdie opsie gaan doodeenvoudig alles uitwis en van vooraf\n"
-"die hardeskyf partisies skep. Alle data sal verlore gaan.\n"
-"\n"
-" !! Net weer waarsku: alle data up die skyf sal vernietig word. !! \n"
-" * \"%s\": kies hierdie opsie indien u self die partisies wil opstel. Wees\n"
-"uiters versigtig -- dit is 'n gevaarlike keuse en u kan maklik al u data "
-"verloor. Hierdieopsie word aanbeveel vir persone wat ondervinding\n"
-"het en vertroud is met Linux .\n"
-"U kan verder oplees oor hoe om te werk te gaan in die \"Managing Your\n"
-"Partitions deel van die \"Starter Guide\"."
-
-#: help.pm:375 install_interactive.pm:96
-#, c-format
-msgid "Use free space"
-msgstr "Gebruik beskikbare spasie"
-
-#: help.pm:375
-#, c-format
-msgid "Use existing partition"
-msgstr "Gebruik bestaande partisies"
-
-#: help.pm:375 install_interactive.pm:138
-#, c-format
-msgid "Use the free space on the Microsoft Windows® partition"
-msgstr "Gebruik die beskikbare spasie op die Windows-partisie"
-
-#: help.pm:375
-#, c-format
-msgid "Erase entire disk"
-msgstr "Wis hele skyf"
-
-#: help.pm:375
-#, c-format
-msgid "Remove Windows"
-msgstr "Verwyder Windows™"
-
-#: help.pm:375 install_interactive.pm:233
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Gespesialiseerde skyfpartisionering"
-
-#: help.pm:378
-#, fuzzy, c-format
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
-"to remove the installation media (CD-ROM or floppy). The first thing you\n"
-"should see after your computer has finished doing its hardware tests is the\n"
-"boot-loader menu, giving you the choice of which operating system to start.\n"
-"\n"
-"The \"%s\" button shows two more buttons to:\n"
-"\n"
-" * \"%s\": enables you to create an installation floppy disk which will\n"
-"automatically perform a whole installation without the help of an operator,\n"
-"similar to the installation you've just configured.\n"
-"\n"
-" Note that two different options are available after clicking on that\n"
-"button:\n"
-"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
-"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing on a number of similar\n"
-"machines. See the Auto install section on our web site for more\n"
-"information.\n"
-"\n"
-" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
-"To use this selection with another installation, insert the floppy and\n"
-"start the installation. At the prompt, press the [F1] key, type >>linux\n"
-"defcfg=\"floppy\"<< and press the [Enter] key.\n"
-"\n"
-"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
-"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
-"/dev/fd0\"."
-msgstr ""
-"Fluit-fluit my storie is uit! Die installasie het tot 'n einde gekom en u\n"
-"GNU/Linux reknaar is gereed vir gebruik. Klik bloot op \"%s\" om\n"
-"te herlaai.Onthou tog om die installasie-media (CDROM of Disket)\n"
-"te verwyder. Die eerste skerm wat u sal sien, na die rekenaar sy\n"
-"hardeware-toetse uitgevoer het, is die herlaaistelsel se kieslys.\n"
-"Daar kan u die bedryfstelsel kies wat moet laai.\n"
-"\n"
-"Die \"%s\" knoppie sal nog twee knoppies laat verskyn:\n"
-"\n"
-" * \"%s\": om 'n installasie-disket te skep wat die hele installasie\n"
-"aotomaties sal doen, sonner die hulp van 'n persoon.\n"
-"Dit sal soortgelyk aan hierdie een wees.\n"
-"\n"
-" Let daarop dat twee verskillende opsies daarna beskikbaar sal wees:\n"
-"\n"
-" * \"%s\" Gedeeltelik outomaties. Die skep van partisies benodig 'n\n"
-"persoon om te spesifiseer.\n"
-"\n"
-" * \"%s\" Volkome outomaties. Die hardeskyf word totaal gewis, alle\n"
-"data word verloor.\n"
-"\n"
-" Hierdie is handig wanneer u 'n paar van dieselfde masjiene moet\n"
-"installeer.\n"
-"Besoek gerus ons webwerf vir meer inligting hieroor.\n"
-"\n"
-" * \"%s\": stoor 'n lys van die gekose pakette in hierdie installasie.\n"
-"Om hierdie keuses met 'n volgende installasie te gebruik, plaas disket\n"
-"in aandrywer en begin die installasie. Kies [F1] en tik '>> linux\n"
-"defcfg=\"floppy\" <<' in."
-
-#: help.pm:410
-#, c-format
-msgid "Generate auto-install floppy"
-msgstr "Skep outo-installasieskyf"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Replay"
-msgstr "Herspeel"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Automated"
-msgstr "Outomaties"
-
-#: help.pm:410 install_steps_interactive.pm:1317
-#, c-format
-msgid "Save packages selection"
-msgstr "Stoor pakketseleksie"
-
-#: help.pm:413
-#, fuzzy, c-format
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
-"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
-"reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"will not be able to recover it.\n"
-"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
-"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandriva Linux operating system installation.\n"
-"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-"Enige nuwe partisies moet eers geformatteer word voor dit bruikbaar is.\n"
-"(formatteer beteken dan ons 'n lêerstelsel daarop skep).\n"
-"\n"
-"U kan ook nou kies om bestaande partisies te formatteer om so al die\n"
-"data daarop uit te vee. Kies asseblief dan nou daardie partisies ook.\n"
-"\n"
-"Let tog daarop dat die NIE nodig is om al die vooraf-bestaande partisies\n"
-"weer te formatteer NIE. U moet wel partisies wat die bedryfstelsel bevat\n"
-"formatteer. ( byvoorbeeld \"/\",\"/usr\" of \"/var\") maar partisies met\n"
-"data wat u graag wil hou ( bv \"/home\") moet nie geformatteer word\n"
-"nie.\n"
-"\n"
-"Wees daarom versigtig wanneer u die partisies kies. Na dit geformatteer\n"
-"is, sal ALLE data daarop vernietig wees.\n"
-"\n"
-"Klik op \"%s\" sodra u gereed is om te formatteer.\n"
-"\n"
-"Klik op \"%s\" indien u 'n ander partisie vir die installasie van u nuwe\n"
-"Madrake Linux bedryfstelsel wil kies\n"
-"\n"
-"Klik op \"%s\" indien u partisies wil kies wat dan ondersoek en\n"
-"getoets moet word."
-
-#: help.pm:432 install_steps_gtk.pm:392 interactive.pm:437
-#: interactive/newt.pm:318 printer/printerdrake.pm:3882
-#: standalone/drakTermServ:391 standalone/drakbackup:4065
-#: standalone/drakbackup:4101 standalone/drakbackup:4212
-#: standalone/drakbackup:4227 ugtk2.pm:488
-#, c-format
-msgid "Previous"
-msgstr "Vorige"
-
-#: help.pm:435
-#, fuzzy, c-format
-msgid ""
-"By the time you install Mandriva Linux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-"Teen die tyd wat u Mandriva Linux installeer, is dit hoogs waarskynlik\n"
-"dat van die pakkette intussen opgedateer is. Foute kom reggestel wees,\n"
-"of sekuriteits probleme is dalk opgelos. Om voordeel hieruit te put, kan\n"
-"u hulle nou van die Internet aflaai. Merk \"%s\" indien u 'n werkende\n"
-"Internetkonneksie het, of \"%s\" sou u dit eers later wil doen\n"
-"\n"
-"Deur \"%s\" te kies, kan u 'n lys plekke sien waarvanaf hierdie\n"
-" pakkette gelaai kan word. Kies 'n geskikte een. 'n Boom-struktuur\n"
-" met die nuwwe pakkette in sal verskyn. As u gelukkig is met almal,kan u\n"
-" \"%s\" klik om hulle af te laai en te installeer, of \"%s\" om te ontsnap."
-
-#: help.pm:445 help.pm:589 install_steps_gtk.pm:391
-#: install_steps_interactive.pm:132
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
-msgid "Install"
-msgstr "Installasie"
-
-#: help.pm:448
-#, fuzzy, c-format
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
-"\n"
-"If you do not know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandriva Linux\n"
-"Control Center.\n"
-"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-"Op hierdie tydstip laat DrakX u toe om die sekuriteitsvlak vir die\n"
-"rekenaar te kies. 'n Algemene reel is dat die sekuriteit hoër behoort\n"
-"te wees indien die masjien belangrike inligting bevat, of direk aan\n"
-"die Internet gekoppel is. Hierdie hoër sekuriteit kom met die koste dat\n"
-"dit algemene gebruik op die rekenaar moeiliker maak.\n"
-"\n"
-"Indien u onseker is oor wat om te kies, bly by die verstek opsie. U\n"
-"kan altyd later die vlak verander deur draksec in die Mandriva Linux "
-"Control\n"
-"Center te grbruik.\n"
-"\n"
-"Die \"%s\" veld kan boodskappe stuur na 'n gekose persoon wat\n"
-"verantwoordelik is vir die sekuriteit. Hy/sy sal dan gereelde boodskappe\n"
-"ontvang rakende die stand van die sekuriteit."
-
-#: help.pm:459
-#, c-format
-msgid "Security Administrator"
-msgstr "Sekuriteits-admin:"
-
-#: help.pm:462
-#, c-format
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandriva Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"%s\": this option deletes all partitions on the selected hard drive\n"
-"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
-"partitions in the free space of your hard drive\n"
-"\n"
-"\"%s\": gives access to additional features:\n"
-"\n"
-" * \"%s\": saves the partition table to a floppy. Useful for later\n"
-"partition-table recovery if necessary. It is strongly recommended that you\n"
-"perform this step.\n"
-"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
-"\n"
-" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it does not always\n"
-"work.\n"
-"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
-"\n"
-" * \"%s\": un-checking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
-"\n"
-" * \"%s\": use this option if you wish to use a wizard to partition your\n"
-"hard drive. This is recommended if you do not have a good understanding of\n"
-"partitioning.\n"
-"\n"
-" * \"%s\": use this option to cancel your changes.\n"
-"\n"
-" * \"%s\": allows additional actions on partitions (type, options, format)\n"
-"and gives more information about the hard drive.\n"
-"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"When defining the size of a partition, you can finely set the partition\n"
-"size by using the Arrow keys of your keyboard.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and the [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
-"\n"
-" * Ctrl-d to delete a partition\n"
-"\n"
-" * Ctrl-m to set the mount point\n"
-"\n"
-"To get information about the different file system types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Nou moet u asseblief besluit watter partisie(s) u gaan gebruik vir die\n"
-"installasie van u Mandriva Linux rekenaar.Indien die partisies reeds\n"
-"geskep is gedurende 'n vorige GNU/Linux installasie of deur 'n ander\n"
-"partisie-program, kan u hulle gebruik.Indien nie, moet u eerstens\n"
-"partisies skep.\n"
-"\n"
-"Die skep van 'n partisie behels dat u 'n hardeskyf kies.U kan klik op\n"
-"\"hda\" om die eerste IDE hardeskyf te kies, \"hdb\" is die tweede ens.\n"
-"\"sda\" is die eerste SCSI skyf.\n"
-"\n"
-"Hier is die opsies wanneer u partisies skep op die gekose hardeskyf:\n"
-"\n"
-" * \"%s\": hierdie opsie wis alle partisies op die gekose skyf uit.\n"
-"\n"
-" * \"%s\": hierdie opsie sal outomaties 'ext3' en 'swap' partisies in die\n"
-"vrye spasie op die hardeskyf skep.\n"
-"\n"
-"\"%s\": gee u toegang tot verdere keuses:\n"
-"\n"
-" * \"%s\": stoor die partisielys op 'n disket. Handig indien u later die\n"
-"partisielys wil herstel.Ons beveel hierdie stap aan.\n"
-"\n"
-" * \"%s\": stel u in staat om 'n vorige gestoorde partisielys van 'n\n"
-"disket af te herstel.\n"
-"\n"
-" * \"%s\": indien u partisielys beskadig is, kan u poog om dit te\n"
-" herstel met hierdie opsie. Wees asseblief versigtig, en onthou\n"
-"dat dit nie altyd werk nie.\n"
-"\n"
-" * \"%s\": ignoreer al die veranderinge en herlaai die partisielys wat\n"
-"oorspronklik op die hardeskyf was.\n"
-"\n"
-" * \"%s\": deur hierdie opsie NIE te merk NIE, sal u gebruikers verplig\n"
-"om verwyderbere media soos diskette en CD-ROMs self te heg en\n"
-"te ontheg.\n"
-"\n"
-" * \"%s\": gebruik die opsie indien u 'n assistent verlang wat sal help\n"
-" met die skep van partisies. Word aanbeveel indien u nie vertroud met\n"
-"die skep van partisies is nie\n"
-"\n"
-" * \"%s\": kanselleer al u veranderinge.\n"
-"\n"
-" * \"%s\": laat ekstra aksies toe op die partisies (tipe, opsies, formaat)\n"
-"en gee ook eksta inligting omtrent die hardeskyf.\n"
-"\n"
-" * \"%s\": sodra u klaar is, sal sal dit u veranderinge stoor\n"
-"\n"
-"Wanneer u die grootte spesifiseer, kan u die fyner verstellings spesifiseer\n"
-"deur u sleutelbord se Pyltjie sleutels te gebruik.\n"
-"\n"
-"Aandag: U kan enige opsie bereik deur die sleutelbort te gebruik. Gebruik\n"
-"bloot die [Tab] sleutel en die [Op/Af] pyltjies. om 'n partisie te kies\n"
-"\n"
-"Wanneer 'n partisie gekies is, kan u die volgende doen:\n"
-"\n"
-" * Ctrl-c om 'n nuwe partisie te skep (mits 'n leë partisie gekies is)\n"
-"\n"
-" * Ctrl-d om 'n partisie uit te wis\n"
-"\n"
-" * Ctrl-m om 'n hegpunt te spesifiseer\n"
-"\n"
-"Om inligting rakende die verskillende beskikbare lêerstelsels te bekom, "
-"lees\n"
-"asseblief die ext2FS hoofstuk in die \"Reference Manual\".\n"
-"\n"
-"Indien u op 'n PPC masjien installeer, sal u 'n klien HFS 'bootstrap'\n"
-"partisie van ten minste 1MB wil skep. Dit sal deur 'yaboot' herlaai-\n"
-" stelsel gebruik word. Maak dit bietjie groter vir spaar 'kernel' en\n"
-"'ramdisk' beelde vir hulp in nood situasies."
-
-#: help.pm:531
-#, c-format
-msgid "Removable media auto-mounting"
-msgstr "Outoheg van verwyderbare media"
-
-#: help.pm:531
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Skakel tussen normale/kenner modus"
-
-#: help.pm:534
-#, c-format
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandriva Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Ons het meer as een Microsoft-partisie op u hardeskyf gevind.\n"
-"Kies dan nou die een wie se grootte u wil verander, om plek te maak\n"
-"vir u nuwe Mandriva Linux bedryfstelsel.\n"
-"\n"
-"Elke partisie is as volg gelys: \"Linux-naam\", \"Windows-naam\"\n"
-"\"Kapasiteit\".\n"
-"\n"
-"\"Linux-naam werk as volg\" \"tipe hardeskyf\", \"nommer van hardeskyf\",\n"
-"\"nommer van partisie\" (byvoorbeeld: \"hda1\").\n"
-"\n"
-"Indien u 'n IDE tipe hardeskyf het sal die tipe \"hd\" wees, en SCSI, sal \n"
-"\"sd\" wees\n"
-"\n"
-"Die nommer van die hardeskyf is altyd 'n letter, wat volg na \"hd\" of\n"
-"\"sd\".\n"
-"Met IDE hardeskywe:\n"
-"\n"
-" * \"a\" beteken \"meester-hardeskyf op die primêre IDE-beheerder\";\n"
-"\n"
-" * \"b\" beteken \"slaaf-hardeskyf op die primêre IDE-beheerder\";\n"
-"\n"
-" * \"c\" beteken \"meester-hardeskyf op die sekondêre IDE-beheerder\";\n"
-"\n"
-" * \"d\" beteken \"slaaf-hardeskyf op die sekondêre IDE-beheerder\";\n"
-"\n"
-"Met SCSI-hardeskywe, beteken 'n \"a\" die kleinste SCSI-ID,\"b\" sal\n"
-"dan die volgende ID verteenwoordig ens.\n"
-"\n"
-"\"Windows-naam\" is die letter van u hardeskyf onder Windoes ( die eerste\n"
-"skyf of partisie word \"C:\" genoem.)"
-
-#: help.pm:565
-#, fuzzy, c-format
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country is not in "
-"the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-"\"%s\": ondersoek die huidige landskeuse. Indien u nie in daardie land\n"
-"is nie, klik op die \"%s\"-knoppie en kies die regte een. Indien u land\n"
-"nie in daardie lys teenwoordig is nie, kies die \"%s\"-knoppie vir 'n\n"
-"volledige lys."
-
-#: help.pm:570
-#, fuzzy, c-format
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandriva Linux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandriva Linux system. Your current "
-"partitioning\n"
-"scheme and user data will not be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandriva Linux version \"8.1\" is not recommended."
-msgstr ""
-"Hierdie stap word slegs gedoen indien ou GNU/Linux partisies op die\n"
-"rekenaar gevind is.\n"
-"\n"
-"DrakX moet nou weet of u 'n nuwe installasie of 'n opgradering van 'n\n"
-"bestaande Mandriva Linux wil doen:\n"
-"\n"
-" * \"%s\": Hierdie deel word grootliks gebruik vir 'n hele nuwe "
-"installasie.\n"
-"Indien u aan die hardeskywe se partisies of die lêerstelsel wil verander,\n"
-"moet u hierdie opsie kies. Maar u kan ook hierdie een kies indien u sekere\n"
-"van u partisies se data wil behou.\n"
-"\n"
-" * \"%s\": hierdie tipe installasie laat u toe om pakkette op te dateer\n"
-"wat deel uitmaak van u huidige Mandriva Linux installasie. Die partisies\n"
-"en gebruiker se data bly onveranderd. Ander stappe is baie dieselfde as\n"
-"'n normale installasie.\n"
-"\n"
-"Die gebruik van die 'Opdateer' opsie behoort reg te werk vir al die\n"
-"weergawes vanaf \"8.1\" en opwaarts. Ons raai u af on dit op weergawes\n"
-"ouer as \"8.1\" te probeer."
-
-#: help.pm:592
-#, fuzzy, c-format
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
-"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard do not match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
-"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
-"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-"Afhangende van die verstek taal wat u kies, sal DrakX outomaties 'n\n"
-"betrokke steutelbord-konfigurasie kies. U mag moontlik 'n sleutelbord\n"
-"besit wat nie 100-persent ooreenstem met u taal nie: byvoorbeeld as u 'n\n"
-"Ingelse Sweed is, sal u dalk 'n sweedse sleutelbord besit. Hier is nog\n"
-"een: gestel jy is 'n Afrikaner wat werk in Quebec, u sal dalk met 'n ander\n"
-"tipe sleutelbord moet klaarkom as wat u gewoond is. Wel, hier kan u die\n"
-"gepaste sleutelbord uit 'n lys kies.\n"
-"\n"
-"Klik op die \"%s\"-knoppie vir 'n lys van al die ondersteunde sleutelborde\n"
-"\n"
-"Indien u 'n nie-Latynse sleutelbord kies, sal die volgende dialoog u\n"
-"toelaat om sleutel-bindings tussen Latynse en nie-Latynse uitlegte\n"
-"te kies."
-
-#: help.pm:610
-#, fuzzy, c-format
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandriva Linux's use of UTF-8 "
-"will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-"Die taal wat u hier kies sal die dokumentasie se taal, die installeer\n"
-"program, en rekenaar oor die algemeen, beïnvloed. Kies eerstens\n"
-"die area waar u woon, en daarna die taal wat u praat.\n"
-"( Jammer, geen inskrywing vir die wat 'nonsens' wou kies nie! )\n"
-"\n"
-"Deur op die \"%s\"-knoppie te klik, kan u ander tale by kies.\n"
-"Dit sal dan dokumentasie en programme toelaat in daardie ekstra tale.\n"
-"Sou daar byvoorbeeld Spaanse gebruikers op die masjien inteken, kies\n"
-"Afrikaans(of Engels) as die verstek taal en \"%s\" in die Gevorderde\n"
-"seksie.\n"
-"\n"
-"Deur 'n sekere taal te kies, sal vertalings, lettertipes,\n"
-"spelkykers ens vir die betrokke taal geïnstalleer word.\n"
-"\n"
-"Boonop kan die \"%s\" merkblokkie u toelaat om die gebruik van 'unicode\n"
-"(UTF-8)' af te dwing. Let daarop dat dit eksperimenteel is. Indien u "
-"verskillende tale met verskillende koderings kies, sal\n"
-"'nicode'-ondersteuning geïnstalleer word.\n"
-"\n"
-"Let tog daarop dat u nie verbind is tot slegs een ekstra taal nie. U kan 'n\n"
-"paar van hulle kies, as u nou regtig wild wil raak, installeer almal deur\n"
-"die \"%s\" blokkie te merk!\n"
-"Om tussen verskillende tale te skakel, gebruik \"/usr/bin/localedrake\"\n"
-"Wanneer die supergebruiker (root) dit doen sal dit die taal vir almal\n"
-"verander, en wanneer 'n gewone gebruiker dit doen , sal dit net vir\n"
-"daardie gebruiker verander."
-
-#: help.pm:648
-#, c-format
-msgid "Espanol"
-msgstr "Espanol"
-
-#: help.pm:651
-#, fuzzy, c-format
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
-"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-"DrakX het gewoonlik geen probleme met die speur van die aantal muisknoppies\n"
-"nie. Indien wel, sal dit aanneem dat die muis twee knoppies het, en sal dan\n"
-"3-knop emulasie konfigureer. Die 3de knoppie kan \"gedruk\" word deur beide\n"
-"knoppies gelyktydig te klik. DrakX sal vanself weet watter tipe muis u het,\n"
-"of dit nou 'n PS/2, sierie of USB muis mag wees.\n"
-"\n"
-"Indien u muis 3 knoppies het, maar nie 'n wielletjie nie, kan u \"%s\" kies\n"
-"DrakX sal dan u muis so opstel dat die wielletjie gesimuleer word. Druk\n"
-"die middel knoppie en beweeg die muis op en af - maklik!\n"
-"\n"
-"Indien u moontlik 'n ander tipe muis wil spesifiseer, kies dit vanaf die\n"
-" voorsiende lys.\n"
-"\n"
-"Indien u gekose muis verskil van die verstek muis, sal 'n toetsskerm\n"
-"vertoon word. Gebruik die knoppies en wielletjie om seker te maak\n"
-"alles werk korrek.\n"
-"Indien u probleme ondervind, druk die spasiebalk of [ Enter ] sleutel om\n"
-"die toets te kansselleer en weer te kies.\n"
-"\n"
-"Wielmuise word soms verkeerdelik geïdentifiseer, dan moet u self u\n"
-"muis vanaf die lys kies.\n"
-"Maak tog seker u kies die regte poort waaraan die muis\n"
-"gekoppel is. Na u die muis gekies, en \"%s\" geklik het, sal 'n beeld van\n"
-" 'n muis verskyn.\n"
-"Rol die wielletjie om te bevestig dat dit korrek funksioneer. Sodra u\n"
-"die beeld van die muis se wielletjie sien reageer, kan u ook die knoppies\n"
-"en beweging van u muis toets."
-
-#: help.pm:682
-#, c-format
-msgid "with Wheel emulation"
-msgstr "met wielletjie-emulasie"
-
-#: help.pm:682
-#, fuzzy, c-format
-msgid "Universal | Any PS/2 & USB mice"
-msgstr "Enige PS/2 & USB muis"
-
-#: help.pm:685
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Kies asb. die korrekte poort. Onthou dat COM1 onder MS Windows \n"
-"ttyS0 onder GNU/Linux is."
-
-#: help.pm:689
-#, fuzzy, c-format
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: do not make the password too long or too complicated because "
-"you\n"
-"must be able to remember it!\n"
-"\n"
-"The password will not be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you do not know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-"Hierdie is die belangrikste oomblik vir u GNU/Linux-rekenaar se sekuriteit:\n"
-"u moet 'n wagwoord voorsien vir \"root\". \"Root\" is die supergebruiker "
-"wat\n"
-"dinge doen soos om die sagteware op te dateer, gebruikers by te voeg,\n"
-"en die konfigurasie te verander. \"Root\" kan alles doen! Hieroor moet\n"
-"u 'n deeglike wagwoord vir \"root\" kies - (DrakX sal jou tune as die wag-\n"
-"woord nie op spec is nie.) U kan wel die wagwoord uitlaat, maar dit word\n"
-"te sterkste afgeraai. GNU/Linux is net so vatbaar vir foute soos enige\n"
-"ander bedryfstelsel. Aangesien \"root\" geen perke het nie, kan hy/sy\n"
-"maklik skade aanrig as die persoon roekeloos handel. Dit moet dus\n"
-"moeilik wees vir 'n persoon om \"root\" te word.\n"
-"\n"
-"Die wagwoord behoort 'n mengsel van letters en syfers te wees en ten minste\n"
-"8 karakters lank te wees. Moet dit nie neerskryf nie, dit veroorsaak 'n\n"
-"swak skakel\n"
-"\n"
-"Moet dit ook nie te vreemd maak nie, u moet dit tog kan onthou!\n"
-"\n"
-"Indien u gebruik maak van 'n eksterne bediener wat die toegang beheer,\n"
-"klik op die \"%s\"-knoppie.\n"
-"\n"
-"Indien u netwerk gebruik maak van LDAP, NIS of 'n Windows PDC, moet\n"
-"u die gepaste diens vir \"%s\" kies. Vra u administrateur indien u nie weet\n"
-"watter een om te kies nie.\n"
-"\n"
-"Indien u probleme ondervind om wagwoorde te onthou, en die rekenaar is\n"
-"ver van die Internet af, en u vertrou almal wat die masjien gebruik, kan u\n"
-"kies om \"%s\" te gebruik. -once & heavy!-"
-
-#: help.pm:723
-#, c-format
-msgid "authentication"
-msgstr "magtiging"
-
-#: help.pm:726
-#, fuzzy, c-format
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can not determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" will not install any boot loader. Use this option only if "
-"you\n"
-"know what you're doing."
-msgstr ""
-"LILO en grup is herlaaistelsels vir GNU/Linux. Hierdie stap is normaalweg\n"
-"geheel en al outomaties. DrakX sal u hardeskyf se selflaai-sektor nagaan\n"
-"en dienooreenkomstig handel met wat dit vind:\n"
-"\n"
-" * indien 'n Windows selflaai-sektor teenwoordig is, sal dit met 'n grub/\n"
-"LILO een vervang word. Dit sal u toelaat om te kan kies watter\n"
-"bedryfstelsel om te laai sodra u die masjien aanskakel.\n"
-"\n"
-" * indien 'n grub of LILO selflaai-sektor teenwoordig is, sal dit vervang\n"
-"word.\n"
-"\n"
-"Indien DrakX nie self kan besluit nie, sal u gevra word om 'n ligging vir\n"
-"die herlaaistelsel te voorsien. Gewoonlik is die veiligste plek \"%s\". Deur "
-"\"%s\" te kies, sal DrakX geen herlaaistelsel installeer nie."
-
-#: help.pm:743
-#, fuzzy, c-format
-msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you do not like your printing\n"
-"system you may change it by running PrinterDrake from the Mandriva Linux\n"
-"Control Center and clicking on the \"%s\" button."
-msgstr ""
-"Dit is nou tyd om u drukkerstelsel te kies. Ander bedryfstelsels sal\n"
-"seker net een aan u bied, maar Mandriva Linux gee twee. Elk van hulle\n"
-"is beter as die ander in sekere gevalle.\n"
-"\n"
-" * \"%s\" -- wat vir \"print, do not queue\" staan. Kies dit indien u\n"
-"'n direkte konneksie na die drukker het, en u blitsig wil inmeng sodra\n"
-"daar probleme is, ook indien u nie netwerk-drukkers het nie. (\"%s\"\n"
-"hanteer net eenvoudige netwerk-toegang en is effe stadig deur die netwerk)\n"
-"Ons beveel aan dat u \"pdq\" gebruik indien u nog groen is met GNU/Linux.\n"
-"\n"
-" * \"%s\" - 'Common Unix Printing System', is 'n uitstekende keuse om na\n"
-"u plaaslike drukker, of na een in myle vanaf u, te druk. Eenvoudig om\n"
-"op te stel, kan kliënt of bediener rolle vertolk vir die lpd-fossiel. Dit\n"
-" beteken dat ons omsien na ons veterane! Dit is baie kragtig, maar 'n\n"
-"elementêre opstel is byna so maklik soos \"pdq\". Indien u 'n lpd-\n"
-"bediener wil nastreef, maak seker dat u die \"cups-lpd\"-daemoon\n"
-"loop. \"%s\" sluit grafiese programme in om vanaf te druk of om\n"
-"opsies te keis en drukkers te bestuur.\n"
-"\n"
-"Sou u die keuse nou, later wil verander, gaan gerus na 'PrinterDrake'\n"
-"in die 'Mandriva Linux Control Center' en klik op die \"Kenner\" knoppie."
-
-#: help.pm:766
-#, c-format
-msgid "pdq"
-msgstr "pdq"
-
-#: help.pm:766 printer/cups.pm:117 printer/data.pm:129
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
-
-#: help.pm:766
-#, c-format
-msgid "Expert"
-msgstr "Ervare"
-
-#: help.pm:769
-#, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"DrakX sal eerstens vir IDE toestelle op die rekenaar soek.\n"
-"Daarna sal dit probeer om vir PCI SCSI-kaarte te kry.\n"
-"Indien DrakX 'n SCSI-kaart bespeur en weet watter drywer\n"
-"om te gebruik sal dit outomaties installeer word.\n"
-"\n"
-"Omrede hierdie proses nie altyd alles opspoor nie, sal u dalk self u\n"
-"hardeware moet spesifiseer.\n"
-"\n"
-"Indien u self 'n drywer moes spesifiseer, sal DrakX u ook vra vir enige\n"
-"spesifieke opsies.\n"
-"U kan egter DrakX toelaat om self die hardeware te ondervra. Dit werk\n"
-"gewoonlik die beste.\n"
-"\n"
-"Lees die installasie inligting hoe om hierdie tipe inligting m.b.v. die\n"
-"Windows-bedryfstelsel te bekom.\n"
-"U kan dit ook vanaf die internet onttrek indien u sulke toegang het."
-
-#: help.pm:787
-#, fuzzy, c-format
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-"\"%s\" die bespeurde klankkaart op u rekenaar sal hier vertoon word.\n"
-"Indien die aangeduide klankkaart verskil van die werklike een op u\n"
-"rekenaar,\n"
-"kan u op die knoppie klik, om 'n ander drywer te kies."
-
-#: help.pm:789 help.pm:856 install_steps_interactive.pm:991
-#: install_steps_interactive.pm:1008
-#, c-format
-msgid "Sound card"
-msgstr "Klankkaart"
-
-#: help.pm:792
-#, fuzzy, c-format
-msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"is not in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it is not\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandriva Linux Control Center after the installation has finished to "
-"benefit\n"
-"from full in-line help.\n"
-"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandriva Linux Control Center.\n"
-"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-"DrakX sal u 'n oorsig bied van u rekenaar se inligting. Afhangende van die\n"
-"sagteware wat u geïnstalleer het, sal u sommige of al die volgende\n"
-"afdelings hê. Elke inskrywing bestaan uit die item wat gekonfigureer\n"
-"moet word, asook 'n kernopsomming oor die huidige stand.\n"
-"Klik op die ooreenkomstige \"%s\"-knoppie om dit te verander.\n"
-"\n"
-" * \"%s\": bekyk die huidige sleutelbord-uitleg en verander indien nodig.\n"
-"\n"
-" * \"%s\": bekyk die huidige keuse van u land. Indien u nie in hierdie land\n"
-"woon nie, klik op die \"%s\"-knoppie om 'n ander te kies. Sou dit nie in\n"
-"die lys wees nie, klik op die \"%s\"-knoppie vir 'n volledige lys.\n"
-"\n"
-" *\"%s\": By verstek word u tydsone aangepas, afhangende van die land\n"
-"wat u kies. Klik op die \"%s\"-knoppie indien dit verkeerd is.\n"
-"\n"
-" * \"%s\": ondersoek die huidige muiskonfigurasie en klik op die knoppie\n"
-"on dit te verander.\n"
-"\n"
-" * \"%s\": deur op die \"%s\"-knoppie te klik, sal u die drukker-assistent\n"
-"loods. Raadpleeg die ooreenkomstige hoofstuk in die \"Starter Guide\"\n"
-"vir meer inligting daaroor.\n"
-"\n"
-" * \"%s\": sou ons 'n klankkaart opspoor op die rekenaar, sal dit hier\n"
-"vertoon word. Indien u verskil van ons keuse, klik op die knoppie om\n"
-"'n ander drywer te kies.\n"
-"\n"
-" * \"%s\": DrakX stel u skerm op met 'n resolusie van \"800x600\"\n"
-" of \"1024x768\" by verstek. Indien u wil verander, kan u \"%s\"\n"
-"kies om dit te herkonfigureer.\n"
-"\n"
-" * \"%s\": indien 'n TV-kaart opgespoor is, sal dit hier vertoon. Inidien\n"
-"nie, en u het wel een, klik op \"%s\" om dit self op te stel.\n"
-"\n"
-" * \"%s\": indien 'n ISDN-kaart opgespoor is, sal dit hier vertoon. Klik\n"
-"op \"%s\" om verstellings daarop aan te bring\n"
-"\n"
-" * \"%s\": Indien u die netwerk en Internet toegang nou wil opstel\n"
-"\n"
-" * \"%s\": hier kan u die sekuriteitsvlak verander wat in 'n vorige stap \n"
-"opgestel is.\n"
-"\n"
-" * \"%s\": Indien die masjien toegang tot die Internet sal hê, kan u gerus\n"
-"u rekenaar beskem teen die hansworse daar buite, deur 'n vuurmuur op te\n"
-"stel. Lees gerus meer daaroor op in die \"Starter Guide\"\n"
-"\n"
-" * \"%s\": indien u die herlaaistelsel se konfigurasie wil verander. Word\n"
-"meer vir slimkoppe aanbeveel.\n"
-"\n"
-" * \"%s\": hier kan u fyner verstellings maak op die dienste wat sal afskop\n"
-"Ondersoek dit gerus indien u die rekenaar as bediener gaan gebruik."
-
-#: help.pm:856 install_steps_interactive.pm:855
-#: install_steps_interactive.pm:950 standalone/drakclock:100
-#: standalone/finish-install:56 standalone/finish-install:57
-#, c-format
-msgid "Timezone"
-msgstr "Tydsone"
-
-#: help.pm:856 install_steps_interactive.pm:1024
-#, c-format
-msgid "TV card"
-msgstr "TV-kaart"
-
-#: help.pm:856
-#, c-format
-msgid "ISDN card"
-msgstr "ISDN-kaart"
-
-#: help.pm:856
-#, c-format
-msgid "Graphical Interface"
-msgstr "Grafiese koppelvlak"
-
-#: help.pm:856 install_any.pm:1733 install_steps_interactive.pm:1042
-#: standalone/drakbackup:2051
-#, c-format
-msgid "Network"
-msgstr "Netwerk"
-
-#: help.pm:856 install_steps_interactive.pm:1054
-#, c-format
-msgid "Proxies"
-msgstr "Instaan bedieners"
-
-#: help.pm:856 install_steps_interactive.pm:1065
-#, c-format
-msgid "Security Level"
-msgstr "Sekuriteitsvlak"
-
-#: help.pm:856 install_steps_interactive.pm:1079 network/drakfirewall.pm:189
-#, c-format
-msgid "Firewall"
-msgstr "Vuurmuur"
-
-#: help.pm:856 install_steps_interactive.pm:1095
-#, c-format
-msgid "Bootloader"
-msgstr "Herlaaistelsel"
-
-#: help.pm:856 install_steps_interactive.pm:1108 services.pm:114
-#: services.pm:157 services.pm:193
-#, c-format
-msgid "Services"
-msgstr "Dienste"
-
-#: help.pm:859
-#, c-format
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Kies die hardeskyf wat u wil wis, om u nuwe Mandriva Linux\n"
-"te kan installeer. Wees tog versigtig, alle huidige data op daardie\n"
-"partisie sal vernietig word!"
-
-#: help.pm:864
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-"Klik op \"%s\" sou u al die data an al die partisies wat tans op hierdie\n"
-"hardeskyf is wil uitwis. Wees versigtig! Na u \"%s\" geklik het, sal u nie\n"
-"weer enige van die data of partisies kan red nie, dit sluit data op\n"
-"Windows-partisies in.\n"
-"\n"
-"Klik op \"%s\" indien u hierdie aksie wil staak, sonder om data te verloor."
-
-#: help.pm:870
-#, c-format
-msgid "Next ->"
-msgstr "Volgende ->"
-
-#: help.pm:870
-#, c-format
-msgid "<- Previous"
-msgstr "<- Vorige"
-
-#: install2.pm:115
-#, c-format
-msgid ""
-"Can not access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"Kan nie die toegang tot die 'kernel'-modules vir hierdie 'kernel' kry nie. "
-"( lêer %s is soek). Dit beteken normaalweg dat u selflaaiskyf verskil van "
-"die Installasie-media sin ( skep assebleif 'n nuwer disket)"
-
-#: install2.pm:167
-#, c-format
-msgid "You must also format %s"
-msgstr "U moet ook %s formatteer"
-
-#: install_any.pm:406
-#, fuzzy, c-format
-msgid "Do you have further supplementary media?"
-msgstr "Beskik u oor nog?"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:409
-#, c-format
-msgid ""
-"The following media have been found and will be used during install: %s.\n"
-"\n"
-"\n"
-"Do you have a supplementary installation medium to configure?"
-msgstr ""
-
-#: install_any.pm:422 printer/printerdrake.pm:3211
-#: printer/printerdrake.pm:3218 standalone/scannerdrake:182
-#: standalone/scannerdrake:190 standalone/scannerdrake:241
-#: standalone/scannerdrake:248
-#, c-format
-msgid "CD-ROM"
-msgstr "CDROM"
-
-#: install_any.pm:422
-#, fuzzy, c-format
-msgid "Network (HTTP)"
-msgstr "Netwerk %s"
-
-#: install_any.pm:422
-#, fuzzy, c-format
-msgid "Network (FTP)"
-msgstr "Netwerk %s"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (NFS)"
-msgstr ""
-
-#: install_any.pm:452
-#, c-format
-msgid "Insert the CD 1 again"
-msgstr ""
-
-#: install_any.pm:478 network/netconnect.pm:866 standalone/drakbackup:114
-#, c-format
-msgid "No device found"
-msgstr "Geen toestelle gevind nie"
-
-#: install_any.pm:483
-#, c-format
-msgid "Insert the CD"
-msgstr ""
-
-#: install_any.pm:488
-#, fuzzy, c-format
-msgid "Unable to mount CD-ROM"
-msgstr "Kon nie vurk nie: %s"
-
-#: install_any.pm:521 install_any.pm:542
-#, c-format
-msgid "URL of the mirror?"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "NFS setup"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "Please enter the hostname and directory of your NFS media"
-msgstr ""
-
-#: install_any.pm:527
-#, c-format
-msgid "Hostname of the NFS mount ?"
-msgstr ""
-
-#: install_any.pm:527 standalone/draknfs:288
-#, c-format
-msgid "Directory"
-msgstr "Gids"
-
-#: install_any.pm:580
-#, fuzzy, c-format
-msgid ""
-"Can't find a package list file on this mirror. Make sure the location is "
-"correct."
-msgstr "Kan nie %s op %s vind nie"
-
-#: install_any.pm:657
-#, c-format
-msgid "Removing packages prior to upgrade..."
-msgstr ""
-
-#: install_any.pm:699
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Ondersoek pakette wat reeds geïnstalleer is..."
-
-#: install_any.pm:703
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Soek vir pakkette om op te gradeer..."
-
-#: install_any.pm:781
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done."
-msgstr ""
-"Verander u CDROM!\n"
-"Sit asb. die CDROM getiteld \"%s\" in die aandrywer en druk OK."
-
-#: install_any.pm:793
-#, fuzzy, c-format
-msgid "Copying in progress"
-msgstr "Bespeuring aan die gebeur"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:935
-#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They do not have any known security\n"
-"issues, but some new ones could be found. In that case, you must make sure\n"
-"to upgrade as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"U het die volgende bediener(s) gekies: %s\n"
-"\n"
-"\n"
-"Hierdie bedieners is aktief by verstek. Sover bekend, het hulle nie enige\n"
-"sekuriteits-gevare nie. Daar mag wel mettertyd nuwe gevare gevind word.\n"
-"In so geval, moet u tot verseker dat u hulle so gou moontlik updateer.\n"
-"\n"
-"\n"
-"Verlang u nog steeds hierdie dienste?\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:958
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-"Die volgende pakkette moet verwyder word om u rekenaar op te gradeer: %s\n"
-"\n"
-"\n"
-"Wil u werklik dat ons hulle verwyder?\n"
-
-#: install_any.pm:1394 partition_table.pm:597
-#, c-format
-msgid "Error reading file %s"
-msgstr "Fout met die lees van lêer %s"
-
-#
-#: install_any.pm:1628
-#, fuzzy, c-format
-msgid "The following disk(s) were renamed:"
-msgstr "Die volgende pakkette geïnstalleer word:\n"
-
-#: install_any.pm:1630
-#, c-format
-msgid "%s (previously named as %s)"
-msgstr ""
-
-#: install_any.pm:1670
-#, 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 ""
-"'n Fout het voorgekom - geen geldige toestelle om die nuwe lêerstelsels op "
-"te skep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
-
-#: install_any.pm:1714
-#, c-format
-msgid "HTTP"
-msgstr ""
-
-#: install_any.pm:1714
-#, c-format
-msgid "FTP"
-msgstr "Ftp"
-
-#: install_any.pm:1714
-#, fuzzy, c-format
-msgid "NFS"
-msgstr "PFS"
-
-#: install_any.pm:1737
-#, fuzzy, c-format
-msgid "Please choose a media"
-msgstr "Kies asseblief"
-
-#: install_any.pm:1753
-#, fuzzy, c-format
-msgid "File already exists. Overwrite it?"
-msgstr "Lêer bestaan alreeds. Moet dit gebruik word?"
-
-#: install_any.pm:1757
-#, c-format
-msgid "Permission denied"
-msgstr "Toegang verbied"
-
-#: install_any.pm:1806
-#, c-format
-msgid "Bad NFS name"
-msgstr ""
-
-#: install_any.pm:1827
-#, c-format
-msgid "Bad media %s"
-msgstr ""
-
-#: install_any.pm:1877
-#, c-format
-msgid "Can not make screenshots before partitioning"
-msgstr "Kan nie skermfoto's neem voor partisie skep nie"
-
-#: install_any.pm:1884
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Skermfoto's sal na die installasie beskikbaar wees in %s"
-
-#: install_gtk.pm:136
-#, c-format
-msgid "System installation"
-msgstr "Stelsel-installasie"
-
-#: install_gtk.pm:139
-#, c-format
-msgid "System configuration"
-msgstr "Stelsel-konfigurasie"
-
-#: install_interactive.pm:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Sekere hardeware op u rekenaar benodig geslote drywers.\n"
-"U kan inligting hieroorvind by %s"
-
-#: install_interactive.pm:63
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"U moet 'n wortelpartisie definieer.\n"
-"Skep 'n partisie of kliek op 'n bestaande een.\n"
-"Kies dan Hegpunt en stel dit dan '/'."
-
-#: install_interactive.pm:68
-#, c-format
-msgid ""
-"You do not have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"U het nie 'n ruilpartisie nie\n"
-"\n"
-"Wil u steeds voortgaan?"
-
-#: install_interactive.pm:71 install_steps.pm:215
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "U moet oor 'n FAT partisie wat as /boot/efi geheg is, beskik"
-
-#: install_interactive.pm:98
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Tekort aan oop spasie vir die nuwe partisies"
-
-#: install_interactive.pm:106
-#, c-format
-msgid "Use existing partitions"
-msgstr "Gebruik bestaande partisies"
-
-#: install_interactive.pm:108
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "Daar is geen bestaande partisies om te gebruik nie"
-
-#: install_interactive.pm:115
-#, c-format
-msgid "Use the Microsoft Windows® partition for loopback"
-msgstr "Gebruik vir die Microsoft Windows®-partisie vir teruglus"
-
-#: install_interactive.pm:118
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Watter partisie wil u vir Linux4Win gebruik?"
-
-#: install_interactive.pm:120
-#, c-format
-msgid "Choose the sizes"
-msgstr "Kies die groottes"
-
-#: install_interactive.pm:121
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "'root'-partisiegrootte in MB:"
-
-#: install_interactive.pm:122
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Ruilpartisiegrootte in MB: "
-
-#: install_interactive.pm:131
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"Daar is geen FAT partisies om as teruglus (nie genoeg spasie nie) te gebruik "
-"nie"
-
-#: install_interactive.pm:140
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Watter partisie se grootte wil u verander?"
-
-#: install_interactive.pm:154
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occurred: %s"
-msgstr ""
-"Die FAT-verstellingsprogram kan nie u partisie hanteer nie.\n"
-"Fout: %s"
-
-#: install_interactive.pm:157
-#, c-format
-msgid "Computing the size of the Microsoft Windows® partition"
-msgstr "Bereken die grootte van die Microsoft Windows®partisie"
-
-#: install_interactive.pm:164
-#, c-format
-msgid ""
-"Your Microsoft Windows® partition is too fragmented. Please reboot your "
-"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
-"the Mandriva Linux installation."
-msgstr "U Windows-partisie is te gefragmenteer. Loop eers 'defrag' asb."
-
-#: install_interactive.pm:167
-#, 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 ""
-"WAARSKUWING\n"
-"\n"
-"\n"
-"DrakX gaan nou u Microsoft Windows®-partisie vestel.\n"
-"\n"
-"\n"
-"WEES VERSIGTIG: Hierdie aksie kan gevaarlik wees. Indien nog nie, moet u tog "
-"\"chkdsk c:\" loop vanaf die instruksielyn in Windows. (let daarop die "
-"grafiese \"scandisk\" is nie voldoende nie - GEBRUIK \"chkdsk\"!) U kan ook "
-"gerus \"defrag\" daarna loop, en u data rugsteun Begin dan weer hierdie "
-"installasie.\n"
-"\n"
-"\n"
-"Andersins, klik op %s."
-
-#: install_interactive.pm:179
-#, c-format
-msgid "Which size do you want to keep for Microsoft Windows® on"
-msgstr "Watter grootte wil u vir Microsoft Windows® behou?"
-
-#: install_interactive.pm:180
-#, c-format
-msgid "partition %s"
-msgstr "partisie %s"
-
-#: install_interactive.pm:189
-#, c-format
-msgid "Resizing Microsoft Windows® partition"
-msgstr "Microsoft Windows®lêerstelselgrense word bereken"
-
-#: install_interactive.pm:194
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT-grootteverandering het gefaal: %s"
-
-#: install_interactive.pm:209
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr "Daar is geen FAT partisies om te verander nie(nie genoeg spasie nie)"
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Remove Microsoft Windows®"
-msgstr "Verwyder Microsoft Windows®"
-
-#: install_interactive.pm:214
-#, fuzzy, c-format
-msgid "Erase and use entire disk"
-msgstr "Wis hele skyf"
-
-#: install_interactive.pm:216
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "U het meer as een hardeskyf, waar wil u Linux installeer?"
-
-#: install_interactive.pm:222
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "Alle bestaande partisies en data sal uitgewis word op skyf %s"
-
-#: install_interactive.pm:237
-#, c-format
-msgid "Use fdisk"
-msgstr "Gebruik fdisk"
-
-#: install_interactive.pm:240
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, do not forget to save using `w'"
-msgstr ""
-"U het nou partisie %s partisioneer.\n"
-"Wanneer u klaar is, stoor u veranderinge met 'w'."
-
-#: install_interactive.pm:276
-#, c-format
-msgid "I can not find any room for installing"
-msgstr "Ek kon geen plek vir installasie vind nie."
-
-#: install_interactive.pm:280
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Die DrakX partisioneringsassistent het die volgende oplossings:"
-
-#: install_interactive.pm:288
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Partisionering het misluk: %s"
-
-#: install_interactive.pm:295
-#, c-format
-msgid "Bringing up the network"
-msgstr "Netwerk op pad op"
-
-#: install_interactive.pm:300
-#, c-format
-msgid "Bringing down the network"
-msgstr "Netwerk op pad af"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:10
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandriva "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandriva Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. This document is a license agreement "
-"between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you "
-"explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this "
-"License. \n"
-"If you disagree with any portion of the License, you are not allowed to "
-"install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner "
-"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate "
-"your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all "
-"copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Limited Warranty\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
-"be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without "
-"limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties "
-"resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or "
-"inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or "
-"occurrence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
-"COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
-"no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever "
-"(including without \n"
-"limitation damages for loss of business, interruption of business, financial "
-"loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential "
-"loss) arising out \n"
-"of the possession and use of software components or arising out of "
-"downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some "
-"countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong "
-"cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. The GPL License and Related Licenses\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. "
-"Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the "
-"documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. Intellectual Property Rights\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
-"as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
-"Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Governing Laws \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-msgstr ""
-
-#: install_messages.pm:90
-#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-"Waarskuwing: Oopbronsagteware is nie noodwendig vry van patente nie.\n"
-"Sommige van die sagteware hier ingesluit mag dalk gedek wees deur\n"
-"patente in die land waar u woon.\n"
-"Die MP3-dekodeerders wat hier ingesluit word, benodig moonlik 'n\n"
-"lisensie om wettiglik gebruik te kan word.(http://www.mp3licensing.com)\n"
-"Indien u onseker is oor 'n patent, raadpleeg die plaaslike wette.\n"
-"( Wees daarom bly jy woon nie in die VSA nie! )"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:98
-#, c-format
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:131
-#, fuzzy, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press Enter to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandriva "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandriva Linux User's Guide."
-msgstr ""
-"Geluk, installasie is afgehandel.\n"
-"Verwyder die herlaaimedium en druk 'enter' om te herlaai.\n"
-"\n"
-"\n"
-"Vir inligting oor hierdie vrystelling van Mandriva Linux,\n"
-"bekyk die errata beskikbaar op\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
-"hoofstuk in die Offisiële Mandriva Linux Gebruikersgids."
-
-#: install_steps.pm:250
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Duplikaat hegpunt %s"
-
-#: install_steps.pm:482
-#, c-format
-msgid ""
-"Some important packages did not get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
-"\"\n"
-msgstr ""
-"Sekere belangrike pakkette het nie korrek geïnstalleer nie.\n"
-"Óf die CDROM-aandrywer óf die CD is foutief.\n"
-"Toets die CD op 'n werkende Linux installasie met \"rpm -qpl media/main/*.rpm"
-"\"\n"
-
-#: install_steps_auto_install.pm:68 install_steps_stdio.pm:27
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Gaan stap '%s' binne\n"
-
-#: install_steps_gtk.pm:181
-#, c-format
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandriva Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"U stelsel het min hulpbronne beskikbaar. U mag dalk probleme\n"
-"ondervind met die installering\n"
-"van Mandriva Linux. In so 'n geval probeer eerder die teksinstallasie.\n"
-"Daarvoor moet u\n"
-"'F1' druk wanneer u vanaf die CDROM herlaai en dan 'text' op die\n"
-"instruksielyn intik."
-
-#: install_steps_gtk.pm:211 install_steps_interactive.pm:605
-#, c-format
-msgid "Package Group Selection"
-msgstr "Kies Pakketgroepe"
-
-#: install_steps_gtk.pm:254 install_steps_interactive.pm:548
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Totale grootte: %d / %d MB"
-
-#: install_steps_gtk.pm:299
-#, c-format
-msgid "Bad package"
-msgstr "Foutiewe pakket"
-
-#: install_steps_gtk.pm:301
-#, c-format
-msgid "Version: "
-msgstr "Weergawe: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "Size: "
-msgstr "Grootte: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "%d KB\n"
-msgstr "%d KB\n"
-
-#: install_steps_gtk.pm:303
-#, c-format
-msgid "Importance: "
-msgstr "Belangrikheid: "
-
-#: install_steps_gtk.pm:336
-#, c-format
-msgid "You can not select/unselect this package"
-msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
-
-#: install_steps_gtk.pm:340 network/thirdparty.pm:331
-#, c-format
-msgid "due to missing %s"
-msgstr "deur %s wat soek is"
-
-#: install_steps_gtk.pm:341
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "deur problematiese %s"
-
-#: install_steps_gtk.pm:342
-#, c-format
-msgid "trying to promote %s"
-msgstr "probeer promosie van %s"
-
-#: install_steps_gtk.pm:343
-#, c-format
-msgid "in order to keep %s"
-msgstr "om %s te kan behou"
-
-#: install_steps_gtk.pm:348
-#, c-format
-msgid ""
-"You can not select this package as there is not enough space left to install "
-"it"
-msgstr ""
-"U kan nie hierdie pakket selekteer nie, omdat daar nie meer spasie "
-"beskikbaar is nie"
-
-#
-#: install_steps_gtk.pm:351
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Ons gaan die volgende pakette installeer"
-
-#
-#: install_steps_gtk.pm:352
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Die volgende pakkette gaan verwyder word"
-
-#: install_steps_gtk.pm:376
-#, c-format
-msgid "This is a mandatory package, it can not be unselected"
-msgstr "Hierdie is 'n verpligte pakket. Dit kan nie uitgehaal word nie."
-
-#: install_steps_gtk.pm:378
-#, c-format
-msgid "You can not unselect this package. It is already installed"
-msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geïnstalleer"
-
-#: install_steps_gtk.pm:381
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Hierdie pakket moet opgradeer word\n"
-"Is u seker u wil dit deselekteer?"
-
-#: install_steps_gtk.pm:384
-#, c-format
-msgid "You can not unselect this package. It must be upgraded"
-msgstr "U kan nie hierdie pakket deselekteer nie. Dit moet opgradeer word."
-
-#: install_steps_gtk.pm:389
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Wys outogeselekteerde pakkette."
-
-#: install_steps_gtk.pm:394
-#, fuzzy, c-format
-msgid "Load/Save selection"
-msgstr "Pakketkeuse"
-
-#: install_steps_gtk.pm:395
-#, c-format
-msgid "Updating package selection"
-msgstr "Pakketseleksie word opgedateer"
-
-#: install_steps_gtk.pm:400
-#, c-format
-msgid "Minimal install"
-msgstr "Minimale installasie"
-
-#: install_steps_gtk.pm:414 install_steps_interactive.pm:467
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Kies die pakkette wat u wil installeer"
-
-#: install_steps_gtk.pm:431 install_steps_interactive.pm:691
-#, c-format
-msgid "Installing"
-msgstr "Besig met installasie"
-
-#: install_steps_gtk.pm:457
-#, c-format
-msgid "No details"
-msgstr "Geen Detail"
-
-#: install_steps_gtk.pm:472
-#, c-format
-msgid "Time remaining "
-msgstr "Tyd oor "
-
-#: install_steps_gtk.pm:473
-#, c-format
-msgid "Estimating"
-msgstr "Skatting"
-
-#: install_steps_gtk.pm:500
-#, c-format
-msgid "%d packages"
-msgstr "%d pakkette"
-
-#: install_steps_gtk.pm:543 install_steps_interactive.pm:719
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Verander u CDROM!\n"
-"\n"
-"Sit asb. die CDROM getiteld \"%s\" in die aandrywer en druk OK. Indien u "
-"nie\n"
-"hieroor beskik nie, druk Kanselleer om installasies vanaf dié CDROM te vermy."
-
-#: install_steps_gtk.pm:556 install_steps_interactive.pm:730
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Daar was 'n fout met pakkette:"
-
-#: install_steps_gtk.pm:558 install_steps_interactive.pm:734
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Daar was 'n fout met die installasie van die pakkette:"
-
-#: install_steps_gtk.pm:560 install_steps_interactive.pm:730
-#: install_steps_interactive.pm:734
-#, c-format
-msgid "Go on anyway?"
-msgstr "Gaan steeds voort?"
-
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:910 steps.pm:30
-#, c-format
-msgid "Summary"
-msgstr "Opsomming"
-
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:906
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "not configured"
-msgstr "nie gekonfigureer nie"
-
-#: install_steps_gtk.pm:668
-#, c-format
-msgid ""
-"The following installation media have been found.\n"
-"If you want to skip some of them, you can unselect them now."
-msgstr ""
-
-#: install_steps_gtk.pm:677
-#, c-format
-msgid ""
-"You have the option to copy the contents of the CDs onto the hard drive "
-"before installation.\n"
-"It will then continue from the hard drive and the packages will remain "
-"available once the system is fully installed."
-msgstr ""
-
-#: install_steps_gtk.pm:679
-#, c-format
-msgid "Copy whole CDs"
-msgstr ""
-
-#: install_steps_interactive.pm:95
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Kies asseblief u sleutelborduitleg."
-
-#: install_steps_interactive.pm:97
-#, fuzzy, c-format
-msgid "Here is the full list of available keyboards"
-msgstr "Hier is die volle lys van beskikbare lande"
-
-#: install_steps_interactive.pm:127
-#, c-format
-msgid "Install/Upgrade"
-msgstr "Installeer/Opgradeer"
-
-#: install_steps_interactive.pm:128
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Is hierdie 'n installasie of opgradering?"
-
-#: install_steps_interactive.pm:134
-#, c-format
-msgid "Upgrade %s"
-msgstr "Opgradeer %s"
-
-#: install_steps_interactive.pm:147
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Enkripsie-sleutel vir %s"
-
-#: install_steps_interactive.pm:170
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Kies is u tipe muistoestel."
-
-#: install_steps_interactive.pm:171
-#, c-format
-msgid "Mouse choice"
-msgstr ""
-
-#: install_steps_interactive.pm:180 standalone/mousedrake:46
-#, c-format
-msgid "Mouse Port"
-msgstr "Muispoort"
-
-#: install_steps_interactive.pm:181 standalone/mousedrake:47
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Aan watter seriaalpoort is u muis gekoppel?"
-
-#: install_steps_interactive.pm:191
-#, c-format
-msgid "Buttons emulation"
-msgstr "Knoppie-emulasie"
-
-#: install_steps_interactive.pm:193
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Knop-2 Emulasie"
-
-#: install_steps_interactive.pm:194
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "3-Knop emulasie"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Stel PCMCIA op..."
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "Configuring IDE"
-msgstr "IDE word opgestel"
-
-#: install_steps_interactive.pm:242
-#, c-format
-msgid "No partition available"
-msgstr "geen beskikbare partisies"
-
-#: install_steps_interactive.pm:245
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Deursoek partisies vir hegpunte"
-
-#: install_steps_interactive.pm:252
-#, c-format
-msgid "Choose the mount points"
-msgstr "Kies die hegpunte"
-
-#: install_steps_interactive.pm:300
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Geen beskikbare 1MB herlaaipartisie nie! Installasie sal voortgaan, maar u "
-"sal herlaaipartisie met DiskDrake moet skep indien u die stelsel wil "
-"herlaai."
-
-#: install_steps_interactive.pm:305
-#, fuzzy, c-format
-msgid ""
-"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
-"to boot your system, you'll need to create the bootstrap partition in "
-"DiskDrake"
-msgstr ""
-"Geen beskikbare 1MB herlaaipartisie nie! Installasie sal voortgaan, maar u "
-"sal herlaaipartisie met DiskDrake moet skep indien u die stelsel wil "
-"herlaai."
-
-#: install_steps_interactive.pm:341
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Kies die partisies om te formatteer"
-
-#: install_steps_interactive.pm:343
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Toets vir foutiewe areas?"
-
-#: install_steps_interactive.pm:371
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
-msgstr ""
-"Probleme met die ondersoek van lêerstelsel %s. Wil u die foute herstel? "
-"( neem kennis dat dit dataverlies kan meebring)"
-
-#: install_steps_interactive.pm:374
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Nie genoeg ruilarea om die installasie te voltooi. Voeg asb. by."
-
-#: install_steps_interactive.pm:383
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Soek vir beskikbare pakkette en herbou die rpm-databasis"
-
-#: install_steps_interactive.pm:384 install_steps_interactive.pm:436
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Soek vir beskikbare pakkette"
-
-#: install_steps_interactive.pm:405 install_steps_interactive.pm:810
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Kies 'n spieël waar die pakkette verkry kan word"
-
-#: install_steps_interactive.pm:445
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"U stelsel het nie genoeg plek vir 'n installasie of opgradering nie (%d > %d)"
-
-#: install_steps_interactive.pm:479
-#, fuzzy, c-format
-msgid ""
-"Please choose load or save package selection.\n"
-"The format is the same as auto_install generated files."
-msgstr ""
-"Kies asb. die laai of stoor pakketkeuse op die floppie.\n"
-"Die formaat is dieselfde as outoinstallasie-genereerde floppies."
-
-#: install_steps_interactive.pm:481
-#, c-format
-msgid "Load"
-msgstr "Las"
-
-#: install_steps_interactive.pm:481 standalone/drakbackup:4083
-#: standalone/drakbackup:4153 standalone/logdrake:175
-#, c-format
-msgid "Save"
-msgstr "Stoor"
-
-#: install_steps_interactive.pm:489
-#, fuzzy, c-format
-msgid "Bad file"
-msgstr "Laai lêer"
-
-#: install_steps_interactive.pm:562
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Geselekteerde grootte is groter as beskikbare spasie."
-
-#: install_steps_interactive.pm:577
-#, c-format
-msgid "Type of install"
-msgstr "Tipe installasie"
-
-#: install_steps_interactive.pm:578
-#, c-format
-msgid ""
-"You have not selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"U het glad nie 'n groep pakkette gekies nie.\n"
-"Kies asseblief die tipe minimale installasie:"
-
-#: install_steps_interactive.pm:582
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Met basiese dokumentasie (word aanbeveel!)"
-
-#: install_steps_interactive.pm:583
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Absolute minimale installasie (geen urpmi!)"
-
-#: install_steps_interactive.pm:622 standalone/drakxtv:52
-#, c-format
-msgid "All"
-msgstr "Alles"
-
-#: install_steps_interactive.pm:661
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"Indien u oor al die gelyste CD's beskik, kliek OK.\n"
-"Indien u oor geen van die gelyste CD's beskik nie, kliek Kanselleer.\n"
-"Indien u net oor sekere CDs beskik, deselekteer die ander en kliek OK."
-
-#: install_steps_interactive.pm:666
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CDROM getiteld \"%s\""
-
-#: install_steps_interactive.pm:691
-#, c-format
-msgid "Preparing installation"
-msgstr "Berei installasie voor"
-
-#: install_steps_interactive.pm:699
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Installeer nou pakket %s\n"
-"%d%%"
-
-#: install_steps_interactive.pm:748
-#, c-format
-msgid "Post-install configuration"
-msgstr "Post-installasiekonfigurasie"
-
-#: install_steps_interactive.pm:755
-#, c-format
-msgid "Please ensure the Update Modules media is in drive %s"
-msgstr ""
-
-#: install_steps_interactive.pm:783
-#, c-format
-msgid "Updates"
-msgstr ""
-
-#: install_steps_interactive.pm:784
-#, c-format
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates?"
-msgstr ""
-"U het nou 'n geleentheid om opgedateerde pakkette af te laai.Hierdie "
-"pakkette is opgedateer na die distribusie vrygestel is.\n"
-"Hulle mag moontlike sekuriteits-probleme en goggas regstel.\n"
-"\n"
-"Sou u hulle wil aflaai, benodig u 'n werkende Internetkonneksie.\n"
-"\n"
-"Wil u dit nou installeer?"
-
-#: install_steps_interactive.pm:805
-#, c-format
-msgid ""
-"Contacting Mandriva Linux web site to get the list of available mirrors..."
-msgstr "Kontak Mandriva Linux se webwerf vir 'n lys van spieëlwebplekke...."
-
-#: install_steps_interactive.pm:824
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Spieël word gekontak vir die lys van pakkette..."
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Kon nie die spieëlwebplek %s kontak nie"
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Wil u weer probeer?"
-
-#: install_steps_interactive.pm:855 standalone/drakclock:45
-#: standalone/finish-install:56
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Wat is u tydsone?"
-
-#: install_steps_interactive.pm:860
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Outo-tydsinkronisasie met NTP"
-
-#: install_steps_interactive.pm:868
-#, c-format
-msgid "NTP Server"
-msgstr "NTP-bediener"
-
-#: install_steps_interactive.pm:923 install_steps_interactive.pm:931
-#: install_steps_interactive.pm:949 install_steps_interactive.pm:956
-#: install_steps_interactive.pm:1107 services.pm:133
-#: standalone/drakbackup:1596
-#, c-format
-msgid "System"
-msgstr "Stelsel"
-
-#: install_steps_interactive.pm:963 install_steps_interactive.pm:990
-#: install_steps_interactive.pm:1007 install_steps_interactive.pm:1023
-#: install_steps_interactive.pm:1034
-#, c-format
-msgid "Hardware"
-msgstr "Hardeware"
-
-#
-#: install_steps_interactive.pm:969 install_steps_interactive.pm:978
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Eksterne CUPS-bediener"
-
-#: install_steps_interactive.pm:969
-#, c-format
-msgid "No printer"
-msgstr "Geen drukker"
-
-#: install_steps_interactive.pm:1011
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Beskik u oor 'n ISA klankkaart?"
-
-#: install_steps_interactive.pm:1013
-#, fuzzy, c-format
-msgid ""
-"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
-"card"
-msgstr "Loop \"sndconfig\" na die installasie om u klankkaart te konfigureer"
-
-#: install_steps_interactive.pm:1015
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"Geen klankkaart opgespoor nie. Probeer \"harddrake\" na die installasie"
-
-#: install_steps_interactive.pm:1035
-#, c-format
-msgid "Graphical interface"
-msgstr "Grafiese-koppelvlak"
-
-#: install_steps_interactive.pm:1041 install_steps_interactive.pm:1053
-#, c-format
-msgid "Network & Internet"
-msgstr "Netwerk & Internet"
-
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "configured"
-msgstr "gekonfigureer"
-
-#: install_steps_interactive.pm:1064 install_steps_interactive.pm:1078
-#: security/level.pm:55 steps.pm:20
-#, c-format
-msgid "Security"
-msgstr "Sekuriteit"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "activated"
-msgstr "ge-aktiveer"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "disabled"
-msgstr "ge-deaktiveer"
-
-#: install_steps_interactive.pm:1094
-#, c-format
-msgid "Boot"
-msgstr "Selflaai"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1098 printer/printerdrake.pm:961
-#, c-format
-msgid "%s on %s"
-msgstr "%s op %s"
-
-#: install_steps_interactive.pm:1112 services.pm:175
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Dienste: %d ge-aktiveer vir %d geregistreer"
-
-#: install_steps_interactive.pm:1124
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "U het nog nie 'X' opgestel nie. Verlang u dit regtig?"
-
-#: install_steps_interactive.pm:1205
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Herlaaistelsel word voorberei..."
-
-#: install_steps_interactive.pm:1215
-#, fuzzy, c-format
-msgid ""
-"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
-"will not work for you. The install will continue, but you'll need to use "
-"BootX or some other means to boot your machine. The kernel argument for the "
-"root fs is: root=%s"
-msgstr ""
-"Dit wil voorkom of u 'n 'OldWorld' of Onbekende\n"
-"rekenaar het, die yaboot herlaaistelsel sal nie hier werk nie.\n"
-"Ons sal voortgaan met die installasie, maar u sal\n"
-"BootX of 'n ander manier moet gedruik om u rekenaar te selflaai"
-
-#: install_steps_interactive.pm:1221
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Wil u aboot gebruik?"
-
-#: install_steps_interactive.pm:1224
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
-"word die eerste partisie vernietig?"
-
-#: install_steps_interactive.pm:1241
-#, c-format
-msgid ""
-"In this security level, access to the files in the Windows partition is "
-"restricted to the administrator."
-msgstr ""
-"Met hierdie sekuriteitsvlak word toegang na lêers op die Windows partisie "
-"vernou na slegs die administrateur"
-
-#: install_steps_interactive.pm:1270 standalone/drakautoinst:76
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Sit 'n leë floppie in aandrywer %s"
-
-#: install_steps_interactive.pm:1275
-#, fuzzy, c-format
-msgid "Please insert another floppy for drivers disk"
-msgstr "Plaas die herlaaiskyf wat gebruik is, in aandrywer %s"
-
-#: install_steps_interactive.pm:1277
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Outoinstallasieskyf word geskep."
-
-#: install_steps_interactive.pm:1289
-#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Bepaalde stappe is nie afgehandel nie.\n"
-"\n"
-"Wil u werklik nou eindig?"
-
-#: install_steps_interactive.pm:1299 standalone/draksambashare:421
-#: standalone/draksambashare:527 standalone/drakups:118 standalone/drakups:157
-#: standalone/logdrake:451 standalone/logdrake:457
-#, c-format
-msgid "Congratulations"
-msgstr "Geluk"
-
-#: install_steps_interactive.pm:1307 install_steps_interactive.pm:1308
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Skep outoinstallasieskyf"
-
-#: install_steps_interactive.pm:1309
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Die outomatiese installasie kan ten volle geoutomatiseer\n"
-"word, in daardie geval kan dit die hardeskyf oorskryf!!!\n"
-"(dit is vir die installasie op 'n ander rekenaar).\n"
-"\n"
-"U mag verkies om hierdie installasie elders te herhaal.\n"
-
-#: install_steps_newt.pm:20
-#, c-format
-msgid "Mandriva Linux Installation %s"
-msgstr "Mandriva Linux Installasie %s"
-
-#. -PO: This string must fit in a 80-char wide text screen
-#: install_steps_newt.pm:37
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> tussen elemente | <Space> selekteer | <F12> volgende skerm "
+msgid "No"
+msgstr "Nee"
-#: interactive.pm:196
+#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "Kies 'n lêer"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakbackup:1537
-#: standalone/drakfont:649 standalone/drakhosts:242 standalone/draknfs:605
-#: standalone/draksambashare:1127 standalone/drakups:299
-#: standalone/drakups:359 standalone/drakups:379 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Add"
msgstr "Voeg by"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakhosts:249
-#: standalone/draknfs:612 standalone/draksambashare:1084
-#: standalone/draksambashare:1137 standalone/draksambashare:1176
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Modify"
msgstr "Verander"
-#
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakfont:732
-#: standalone/drakhosts:256 standalone/draknfs:619
-#: standalone/draksambashare:1085 standalone/draksambashare:1145
-#: standalone/draksambashare:1184 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Remove"
msgstr "Verwyder"
-#: interactive.pm:398
-#, c-format
-msgid "Basic"
-msgstr "Basies"
-
-#: interactive.pm:436 interactive/newt.pm:321 ugtk2.pm:490
+#: interactive.pm:538 interactive/curses.pm:217 ugtk2.pm:508
#, c-format
msgid "Finish"
msgstr "Voltooi"
-#: interactive/newt.pm:92
+#: interactive.pm:539 interactive/curses.pm:214 ugtk2.pm:506
#, c-format
-msgid "Do"
-msgstr "Doen"
+msgid "Previous"
+msgstr "Vorige"
#: interactive/stdio.pm:29 interactive/stdio.pm:148
#, c-format
@@ -7473,1956 +3343,1205 @@ msgstr ""
msgid "Re-submit"
msgstr "Dien weer in"
-#: keyboard.pm:171 keyboard.pm:202
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTZ)"
-msgstr "Tseggies (QWERTZ)"
-
-#: keyboard.pm:172 keyboard.pm:204
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German"
-msgstr "Duits"
-
-#: keyboard.pm:173
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak"
-msgstr "Dvorak"
-
-#: keyboard.pm:174 keyboard.pm:217
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Spanish"
-msgstr "Spaans"
-
-#: keyboard.pm:175 keyboard.pm:218
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Finnish"
-msgstr "Finnies"
-
-#: keyboard.pm:176 keyboard.pm:220
-#, c-format
-msgid ""
-"_: keyboard\n"
-"French"
-msgstr "Fraans"
-
-#: keyboard.pm:177 keyboard.pm:264
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Norwegian"
-msgstr "Norweegs"
-
-#: keyboard.pm:178
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish"
-msgstr "Pools"
-
-#: keyboard.pm:179 keyboard.pm:275
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian"
-msgstr "Russies"
-
-#: keyboard.pm:180 keyboard.pm:281
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swedish"
-msgstr "Sweeds"
-
-#: keyboard.pm:181 keyboard.pm:310
-#, c-format
-msgid "UK keyboard"
-msgstr "VK sleutelbord"
-
-#: keyboard.pm:182 keyboard.pm:313
-#, c-format
-msgid "US keyboard"
-msgstr "VSA sleutelbord"
-
-#: keyboard.pm:184
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Albanian"
-msgstr "Albanies"
-
-#: keyboard.pm:185
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (old)"
-msgstr "Armenies (oud)"
-
-#: keyboard.pm:186
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (typewriter)"
-msgstr "Armenies (tikmasjien)"
-
-#: keyboard.pm:187
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (phonetic)"
-msgstr "Armenies (Foneties)"
-
-#: keyboard.pm:188
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Arabic"
-msgstr "Arabies"
-
-#: keyboard.pm:189
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Azerbaidjani (latin)"
-msgstr "Azerbaidjani (latyns)"
-
-#: keyboard.pm:190
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belgian"
-msgstr "Belgies"
-
-#: keyboard.pm:191
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Inscript-layout)"
-msgstr "Bengali (Inscript-uitleg)"
-
-#: keyboard.pm:192
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Probhat)"
-msgstr "Bengali (Probhat)"
-
-#: keyboard.pm:193
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (phonetic)"
-msgstr "Bulgaars (Foneties)"
-
-#: keyboard.pm:194
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (BDS)"
-msgstr "Bulgaars (BDS)"
-
-#: keyboard.pm:195
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Brazilian (ABNT-2)"
-msgstr "Brasiliaans (ABNT-2)"
-
-#: keyboard.pm:196
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bosnian"
-msgstr "Bosnies"
-
-#: keyboard.pm:197
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belarusian"
-msgstr "Belarussies"
-
-#: keyboard.pm:198
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (German layout)"
-msgstr "Switsers (Duitse uitleg)"
-
-#: keyboard.pm:199
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (French layout)"
-msgstr "Switsers (Franse uitleg)"
-
-#: keyboard.pm:201
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Cherokee syllabics"
-msgstr "Arabies"
-
-#: keyboard.pm:203
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTY)"
-msgstr "Tseggies (QWERTY)"
-
-#: keyboard.pm:205
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German (no dead keys)"
-msgstr "Duits (geen dooie sleutels)"
-
-#: keyboard.pm:206
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Devanagari"
-msgstr "Devanagari"
-
-#: keyboard.pm:207
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Danish"
-msgstr "Deens"
-
-#: keyboard.pm:208
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (US)"
-msgstr "Dvorak (VSA)"
-
-#: keyboard.pm:209
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Esperanto)"
-msgstr "Dvorak (Norweegs)"
-
-#: keyboard.pm:210
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (French)"
-msgstr "Dvorak (Norweegs)"
-
-#: keyboard.pm:211
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (UK)"
-msgstr "Dvorak (VSA)"
-
-#: keyboard.pm:212
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Norwegian)"
-msgstr "Dvorak (Norweegs)"
-
-#: keyboard.pm:213
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Polish)"
-msgstr "Dvorak (Sweeds)"
-
-#: keyboard.pm:214
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Swedish)"
-msgstr "Dvorak (Sweeds)"
-
-#: keyboard.pm:215
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dzongkha/Tibetan"
-msgstr "Bosnies"
-
-#: keyboard.pm:216
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Estonian"
-msgstr "Estoniaans"
-
-#: keyboard.pm:219
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Faroese"
-msgstr "Grieks"
-
-#: keyboard.pm:221
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Russian\" layout)"
-msgstr "Georgies (Russiese uitleg)"
-
-#: keyboard.pm:222
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Latin\" layout)"
-msgstr "Georgies (Latynse uitleg)"
-
-#: keyboard.pm:223
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek"
-msgstr "Grieks"
-
-#: keyboard.pm:224
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek (polytonic)"
-msgstr "Grieks (polytonies)"
-
-#: keyboard.pm:225
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gujarati"
-msgstr "Gujarati"
-
-#: keyboard.pm:226
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gurmukhi"
-msgstr "Gurmukhi"
-
-#: keyboard.pm:227
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Croatian"
-msgstr "Kroaties"
-
-#: keyboard.pm:228
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Hungarian"
-msgstr "Hongaars"
-
-#: keyboard.pm:229
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Irish"
-msgstr "Iers"
-
-#: keyboard.pm:230
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli"
-msgstr "Israelies"
-
-#: keyboard.pm:231
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli (phonetic)"
-msgstr "Israelies (Foneties)"
-
-#: keyboard.pm:232
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Iranian"
-msgstr "Iranies"
-
-#: keyboard.pm:233
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Icelandic"
-msgstr "Yslandies"
-
-#: keyboard.pm:234
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Italian"
-msgstr "Italiaans"
-
-#: keyboard.pm:235
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Inuktitut"
-msgstr "Inuktitut"
-
-#: keyboard.pm:239
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Japanese 106 keys"
-msgstr "Japanees 106 sleutels"
-
-#: keyboard.pm:240
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kannada"
-msgstr "Kanada"
-
-#: keyboard.pm:243
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Korean"
-msgstr "Koreaanse sleutelbord"
-
-#: keyboard.pm:245
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Kurdish (arabic script)"
-msgstr "Arabies"
-
-#: keyboard.pm:246
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Kyrgyz"
-msgstr "VK sleutelbord"
-
-#: keyboard.pm:247
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latin American"
-msgstr "Latyns-Amerikaans"
-
-#: keyboard.pm:249
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Laotian"
-msgstr "Laoties"
-
-#: keyboard.pm:250
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (old)"
-msgstr "Lituanies AZERTY (oud)"
-
-#: keyboard.pm:252
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (new)"
-msgstr "Lituanies AZERTY (nuut)"
-
-#: keyboard.pm:253
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"number row\" QWERTY"
-msgstr "Lituanies \"nommerry\" QWERTY"
-
-#: keyboard.pm:254
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituanies \"foneties\" QWERTY"
-
-#: keyboard.pm:255
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latvian"
-msgstr "Lets"
-
-#: keyboard.pm:256
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Malayalam"
-msgstr "Malabaars"
-
-#: keyboard.pm:258
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Macedonian"
-msgstr "Masedonies"
-
-#: keyboard.pm:259
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Myanmar (Burmese)"
-msgstr "Myanmar (Burmese)"
-
-#: keyboard.pm:260
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Mongolian (cyrillic)"
-msgstr "Mongools (cyrillic)"
-
-#: keyboard.pm:261
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (UK)"
-msgstr "Maltese (UK)"
-
-#: keyboard.pm:262
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (US)"
-msgstr "Maltees (VSA)"
-
-#: keyboard.pm:263
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dutch"
-msgstr "Nederlands"
-
-#: keyboard.pm:265
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Oriya"
-msgstr "Oriya"
-
-#: keyboard.pm:266
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwerty layout)"
-msgstr "Pools (QWERTY uitleg)"
-
-#: keyboard.pm:267
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwertz layout)"
-msgstr "Pools (QWERTZ uitleg)"
-
-#: keyboard.pm:269
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Pashto"
-msgstr "Pools"
-
-#: keyboard.pm:270
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Portuguese"
-msgstr "Portugees"
-
-#: keyboard.pm:272
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Canadian (Quebec)"
-msgstr "Kanadees (Quebec)"
-
-#: keyboard.pm:273
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwertz)"
-msgstr "Romanies (QWERTZ)"
-
-#: keyboard.pm:274
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwerty)"
-msgstr "Romanies (QWERTY)"
-
-#: keyboard.pm:276
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian (phonetic)"
-msgstr "Russies (Foneties)"
-
-#: keyboard.pm:277
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (norwegian)"
-msgstr "Saami (noorweegs)"
-
-#: keyboard.pm:278
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (swedish/finnish)"
-msgstr "Saami (sweeds/fins)"
-
-#: keyboard.pm:280
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Sindhi"
-msgstr "Thai sleutelbord"
-
-#: keyboard.pm:282
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovenian"
-msgstr "Sloveens"
-
-#: keyboard.pm:284
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sinhala"
-msgstr ""
-
-#: keyboard.pm:285
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTZ)"
-msgstr "Slovaaks (QWERTZ)"
-
-#: keyboard.pm:286
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTY)"
-msgstr "Slovaaks (QWERTY)"
-
-#: keyboard.pm:288
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Serbian (cyrillic)"
-msgstr "Serwies (Kirillies)"
-
-#: keyboard.pm:289
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac"
-msgstr "Siries"
-
-#: keyboard.pm:290
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac (phonetic)"
-msgstr "Siries (Foneties)"
-
-#: keyboard.pm:291
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Telugu"
-msgstr "Telugu"
-
-#: keyboard.pm:293
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (ISCII-layout)"
-msgstr "Tamil (ISCII-uitleg)"
-
-#: keyboard.pm:294
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (Typewriter-layout)"
-msgstr "Tamil (Tikmasjien-uitleg)"
-
-#: keyboard.pm:295
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Kedmanee)"
-msgstr "Thai sleutelbord"
-
-#: keyboard.pm:296
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (TIS-820)"
-msgstr "Thai sleutelbord"
-
-#: keyboard.pm:298
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Pattachote)"
-msgstr "Thai sleutelbord"
-
-#: keyboard.pm:300
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (moroccan layout) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:301
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (phonetic) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:303
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tajik"
-msgstr "Tajik sleutelbord"
-
-#: keyboard.pm:305
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Turkmen"
-msgstr "Duits"
-
-#: keyboard.pm:306
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (traditional \"F\" model)"
-msgstr "Turks (tradisionele \"F\" model)"
-
-#: keyboard.pm:307
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (modern \"Q\" model)"
-msgstr "Turks (moderne \"Q\" model)"
-
-#: keyboard.pm:309
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Ukrainian"
-msgstr "Ukranies"
-
-#: keyboard.pm:312
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Urdu keyboard"
-msgstr "Oriya"
-
-#: keyboard.pm:314
-#, c-format
-msgid "US keyboard (international)"
-msgstr "VSA internasionale sleutelbord"
-
-#: keyboard.pm:315
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Uzbek (cyrillic)"
-msgstr "Uzbek (Kirillies)"
-
-#: keyboard.pm:317
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Vietnamese \"numeric row\" QWERTY"
-msgstr "Viëtnamees \"nommerry\" QWERTY"
-
-#: keyboard.pm:318
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Yugoslavian (latin)"
-msgstr "Jugoslaavs (latynse uitleg)"
-
-#: keyboard.pm:325
-#, c-format
-msgid "Right Alt key"
-msgstr "Regter Alt-sleutel"
-
-#: keyboard.pm:326
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Beide Shift-sleutels gelyktydig"
-
-#: keyboard.pm:327
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "'Control' en 'Shift' sleutels gelyktydig"
-
-#: keyboard.pm:328
-#, c-format
-msgid "CapsLock key"
-msgstr "'Capslock'-sleutel"
-
-#: keyboard.pm:329
-#, fuzzy, c-format
-msgid "Shift and CapsLock keys simultaneously"
-msgstr "Ctrl- en Atl-sleutels tegelyk"
-
-#: keyboard.pm:330
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl- en Atl-sleutels tegelyk"
-
-#: keyboard.pm:331
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt- en Shift-sleutels gelyktydig"
-
-#: keyboard.pm:332
-#, c-format
-msgid "\"Menu\" key"
-msgstr "\"Menu\"-sleutel"
-
-#: keyboard.pm:333
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Linker \"Windows\" sleutel"
-
-#: keyboard.pm:334
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Regter \"Windows\"-sleutel"
-
-#: keyboard.pm:335
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Beide Control-sleutels gelyktydig"
-
-#: keyboard.pm:336
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Beide Alt-sleutels gelyktydig"
-
-#: keyboard.pm:337
-#, c-format
-msgid "Left Shift key"
-msgstr "Linker 'Shift'-sleutel"
-
-#: keyboard.pm:338
-#, c-format
-msgid "Right Shift key"
-msgstr "Regter 'Shift'-sleutel"
-
-#: keyboard.pm:339
-#, c-format
-msgid "Left Alt key"
-msgstr "Linker 'Alt'-sleutel"
-
-#
-#: keyboard.pm:340
-#, c-format
-msgid "Left Control key"
-msgstr "Linker 'Control'-sleutel"
-
-#
-#: keyboard.pm:341
-#, c-format
-msgid "Right Control key"
-msgstr "Regter 'Control'-sleutel"
-
-#: keyboard.pm:377
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Hier kan u die sleutel of sleutelkombinasie kies wat\n"
-"die sal help om tussen verskillende sleutelbord-uitlegte te wissel.\n"
-"(bv: latyns en iets anders)"
-
-#: keyboard.pm:382
-#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
-msgstr ""
-"Hierdie verstelling sal aktief wees na die installasie.\n"
-"Gedurende installasie, moet u die regter 'Control'-sleutel\n"
-"gebruik om tussen die uitlegte te spring."
-
#. -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:178
+#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"
-#: lang.pm:195
+#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "Andorra"
-#: lang.pm:196 network/adsl_consts.pm:943
+#: lang.pm:211 timezone.pm:213
#, c-format
msgid "United Arab Emirates"
msgstr "Verenigde Arabiese Emirate"
-#: lang.pm:197
+#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "Afghanistan"
-#: lang.pm:198
+#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigua and Barbuda"
-#: lang.pm:199
+#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "Anguilla"
-#: lang.pm:200
+#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "Albanië"
-#: lang.pm:201
+#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "Armenië"
-#: lang.pm:202
+#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "Netherlands Antilles"
-#: lang.pm:203
+#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "Angola"
-#: lang.pm:204
+#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "Antartika"
-#: lang.pm:205 network/adsl_consts.pm:55 standalone/drakxtv:50
+#: lang.pm:220 timezone.pm:258
#, c-format
msgid "Argentina"
msgstr "Argentinië"
-#: lang.pm:206
+#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "American Samoa"
-#: lang.pm:209
+#: lang.pm:222 mirror.pm:11 timezone.pm:216
+#, c-format
+msgid "Austria"
+msgstr "Oostenryk"
+
+#: lang.pm:223 mirror.pm:10 timezone.pm:254
+#, c-format
+msgid "Australia"
+msgstr "Australië"
+
+#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "Aruba"
-#: lang.pm:210
+#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "Azerbaijan"
-#: lang.pm:211
+#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosnië en Herzegovina"
-#: lang.pm:212
+#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "Barbados"
-#: lang.pm:213
+#: lang.pm:228 timezone.pm:198
#, c-format
msgid "Bangladesh"
msgstr "Bangladesh"
-#: lang.pm:215
+#: lang.pm:229 mirror.pm:12 timezone.pm:218
+#, c-format
+msgid "Belgium"
+msgstr "België"
+
+#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "Burkina Faso"
-#: lang.pm:216 network/adsl_consts.pm:170 network/adsl_consts.pm:179
+#: lang.pm:231 timezone.pm:219
#, c-format
msgid "Bulgaria"
msgstr "Bulgaars"
-#: lang.pm:217
+#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "Bahrain"
-#: lang.pm:218
+#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "Burundi"
-#: lang.pm:219
+#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "Benin"
-#: lang.pm:220
+#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "Bermuda"
-#: lang.pm:221
+#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "Brunei Darussalam"
-#: lang.pm:222
+#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "Bolivia"
-#: lang.pm:224
+#: lang.pm:238 mirror.pm:13 timezone.pm:259
+#, c-format
+msgid "Brazil"
+msgstr "Brasilië"
+
+#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "Bahamas"
-#: lang.pm:225
+#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "Bhutan"
-#: lang.pm:226
+#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "Bouvet Eiland"
-#: lang.pm:227
+#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "Botswana"
-#: lang.pm:228
+#: lang.pm:243 timezone.pm:217
#, c-format
msgid "Belarus"
msgstr "Belarus"
-#: lang.pm:229
+#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "Belize"
-#: lang.pm:231
+#: lang.pm:245 mirror.pm:14 timezone.pm:248
+#, c-format
+msgid "Canada"
+msgstr "Kanada"
+
+#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Kokos-eilande"
-#: lang.pm:232
+#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Kongo (Kinshasa)"
-#: lang.pm:233
+#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "Sentrale-Afrika Republiek"
-#: lang.pm:234
+#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Congo (Brazzaville)"
-#: lang.pm:236
+#: lang.pm:250 mirror.pm:38 timezone.pm:242
+#, c-format
+msgid "Switzerland"
+msgstr "Switserland"
+
+#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "Cote d'Ivoire"
-#: lang.pm:237
+#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "Cook Eilande"
-#: lang.pm:238
+#: lang.pm:253 timezone.pm:260
#, c-format
msgid "Chile"
msgstr "Chili"
-#: lang.pm:239
+#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "Kameroen"
-#: lang.pm:240 network/adsl_consts.pm:188 network/adsl_consts.pm:197
-#: network/adsl_consts.pm:206 network/adsl_consts.pm:215
-#: network/adsl_consts.pm:224 network/adsl_consts.pm:233
-#: network/adsl_consts.pm:242 network/adsl_consts.pm:251
-#: network/adsl_consts.pm:260 network/adsl_consts.pm:269
-#: network/adsl_consts.pm:278 network/adsl_consts.pm:287
-#: network/adsl_consts.pm:296 network/adsl_consts.pm:305
-#: network/adsl_consts.pm:314 network/adsl_consts.pm:323
-#: network/adsl_consts.pm:332 network/adsl_consts.pm:341
-#: network/adsl_consts.pm:350 network/adsl_consts.pm:359
+#: lang.pm:255 timezone.pm:199
#, c-format
msgid "China"
msgstr "China"
-#: lang.pm:241
+#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "Colombië"
-#: lang.pm:243
+#: lang.pm:257 mirror.pm:15
+#, c-format
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "Serbia & Montenegro"
-#: lang.pm:244
+#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "Kuba"
-#: lang.pm:245
+#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "Cape Verde"
-#: lang.pm:246
+#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "Christmas Island"
-#: lang.pm:247
+#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "Ciprus"
-#: lang.pm:250
+#: lang.pm:263 mirror.pm:16 timezone.pm:220
+#, c-format
+msgid "Czech Republic"
+msgstr "Tsjeggiese Republiek"
+
+#: lang.pm:264 mirror.pm:21 timezone.pm:225
+#, c-format
+msgid "Germany"
+msgstr "Duitsland"
+
+#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "Djibouti"
-#: lang.pm:252
+#: lang.pm:266 mirror.pm:17 timezone.pm:221
+#, c-format
+msgid "Denmark"
+msgstr "Denemarke"
+
+#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "Dominica"
-#: lang.pm:253
+#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "Dominikaanse Republiek"
-#: lang.pm:254 network/adsl_consts.pm:44
+#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "Algerië"
-#: lang.pm:255
+#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "Ecuador"
-#: lang.pm:257
+#: lang.pm:271 mirror.pm:18 timezone.pm:222
+#, c-format
+msgid "Estonia"
+msgstr "Estonië"
+
+#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "Egipte"
-#: lang.pm:258
+#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "Westelike Sahara"
-#: lang.pm:259
+#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "Eritrea"
-#: lang.pm:261
+#: lang.pm:275 mirror.pm:36 timezone.pm:240
+#, c-format
+msgid "Spain"
+msgstr "Spanje"
+
+#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "Ethiopië"
-#: lang.pm:263
+#: lang.pm:277 mirror.pm:19 timezone.pm:223
+#, c-format
+msgid "Finland"
+msgstr "Finland"
+
+#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "Fidji"
-#: lang.pm:264
+#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Falkland Islands (Malvinas)"
-#: lang.pm:265
+#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "Micronesia"
-#: lang.pm:266
+#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "Faroe Eilande"
-#: lang.pm:268
+#: lang.pm:282 mirror.pm:20 timezone.pm:224
+#, c-format
+msgid "France"
+msgstr "Frankryk"
+
+#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "Gaboen"
-#: lang.pm:269 network/adsl_consts.pm:954 network/adsl_consts.pm:965
-#: network/netconnect.pm:46
+#: lang.pm:284 timezone.pm:244
#, c-format
msgid "United Kingdom"
msgstr "Verenigde Koninkryk"
-#: lang.pm:270
+#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "Grenada"
-#: lang.pm:271
+#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "Georgia"
-#: lang.pm:272
+#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "Frans-Guiana"
-#: lang.pm:273
+#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "Ghana"
-#: lang.pm:274
+#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "Gibraltar"
-#: lang.pm:275
+#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "Groenland"
-#: lang.pm:276
+#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "Gambia"
-#: lang.pm:277
+#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "Guinee"
-#: lang.pm:278
+#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "Guadeloupe"
-#: lang.pm:279
+#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "Ekwatoriale Guinea"
-#: lang.pm:281
+#: lang.pm:295 mirror.pm:22 timezone.pm:226
+#, c-format
+msgid "Greece"
+msgstr "Griekeland"
+
+#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "South Georgia and the South Sandwich Islands"
-#: lang.pm:282
+#: lang.pm:297 timezone.pm:249
#, c-format
msgid "Guatemala"
msgstr "Guatemala"
-#: lang.pm:283
+#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "Guam"
-#: lang.pm:284
+#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "Guinea-Bissau"
-#: lang.pm:285
+#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "Guyana"
-#: lang.pm:286
+#: lang.pm:301
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "Hong Kong SAR (China)"
-#: lang.pm:287
+#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Heard en McDonald Eilande"
-#: lang.pm:288
+#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "Honduras"
-#: lang.pm:289
+#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "Kroasië"
-#: lang.pm:290
+#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "Haïti"
-#: lang.pm:292
+#: lang.pm:306 mirror.pm:23 timezone.pm:227
+#, c-format
+msgid "Hungary"
+msgstr "Hongarye"
+
+#: lang.pm:307 timezone.pm:202
#, c-format
msgid "Indonesia"
msgstr "Indonesië"
-#: lang.pm:295
+#: lang.pm:308 mirror.pm:24 timezone.pm:228
+#, c-format
+msgid "Ireland"
+msgstr "Ierland"
+
+#: lang.pm:309 mirror.pm:25 timezone.pm:204
+#, c-format
+msgid "Israel"
+msgstr "Israel"
+
+#: lang.pm:310 timezone.pm:201
#, c-format
msgid "India"
msgstr "Indië"
-#: lang.pm:296
+#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "British Indian Ocean Territory"
-#: lang.pm:297
+#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "Irak"
-#: lang.pm:298
+#: lang.pm:313 timezone.pm:203
#, c-format
msgid "Iran"
msgstr "Iran"
-#: lang.pm:299
+#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "Ysland"
-#: lang.pm:301
+#: lang.pm:315 mirror.pm:26 timezone.pm:229
+#, c-format
+msgid "Italy"
+msgstr "Italië"
+
+#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "Jamaika"
-#: lang.pm:302
+#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "Jordanië"
-#: lang.pm:304
+#: lang.pm:318 mirror.pm:27 timezone.pm:205
+#, c-format
+msgid "Japan"
+msgstr "Japan"
+
+#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "Kenia"
-#: lang.pm:305
+#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "Kyrgyzstan"
-#: lang.pm:306
+#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "Kambodja"
-#: lang.pm:307
+#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "Kiribati"
-#: lang.pm:308
+#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "Comoros"
-#: lang.pm:309
+#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Saint Kitts and Nevis"
-#: lang.pm:310
+#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "Korea (Noord)"
-#: lang.pm:311
+#: lang.pm:326 timezone.pm:206
#, c-format
msgid "Korea"
msgstr "Korea"
-#: lang.pm:312
+#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "Koeweit"
-#: lang.pm:313
+#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "Cayman Eilande"
-#: lang.pm:314
+#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "Kazakhstan"
-#: lang.pm:315
+#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "Laos"
-#: lang.pm:316
+#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "Libanon"
-#: lang.pm:317
+#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "Saint Lucia"
-#: lang.pm:318
+#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "Liechtenstein"
-#: lang.pm:319
+#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "Sri Lanka"
-#: lang.pm:320
+#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "Liberië"
-#: lang.pm:321
+#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "Lesotho"
-#: lang.pm:322 network/adsl_consts.pm:600
+#: lang.pm:337 timezone.pm:230
#, c-format
msgid "Lithuania"
msgstr "Litaue"
-#: lang.pm:323
+#: lang.pm:338 timezone.pm:231
#, c-format
msgid "Luxembourg"
msgstr "Luxemburg"
-#: lang.pm:324
+#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "Letland"
-#: lang.pm:325
+#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "Libië"
-#: lang.pm:326 network/adsl_consts.pm:609
+#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "Marokko"
-#: lang.pm:327
+#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "Monaco"
-#: lang.pm:328
+#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "Moldova"
-#: lang.pm:329
+#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "Madagaskar"
-#: lang.pm:330
+#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "Marshall Eilande"
-#: lang.pm:331
+#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "Masedonië"
-#: lang.pm:332
+#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "Mali"
-#: lang.pm:333
+#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "Myanmar"
-#: lang.pm:334
+#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "Mongolië"
-#: lang.pm:335
+#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "Noordelike Mariana Eilande"
-#: lang.pm:336
+#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "Martinique"
-#: lang.pm:337
+#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "Mauritanië"
-#: lang.pm:338
+#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "Montserrat"
-#: lang.pm:339
+#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "Malta"
-#: lang.pm:340
+#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "Mauritius"
-#: lang.pm:341
+#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "Maldives"
-#: lang.pm:342
+#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "Malawië"
-#: lang.pm:343
+#: lang.pm:358 timezone.pm:250
#, c-format
msgid "Mexico"
msgstr "Mexiko"
-#: lang.pm:344
+#: lang.pm:359 timezone.pm:207
#, c-format
msgid "Malaysia"
msgstr "Maleisië"
-#: lang.pm:345
+#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "Mosambiek"
-#: lang.pm:346
+#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "Namibië"
-#: lang.pm:347
+#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "Nieu-Caledonië"
-#: lang.pm:348
+#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "Niger"
-#: lang.pm:349
+#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "Norfolk Eiland"
-#: lang.pm:350
+#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "Nigerië"
-#: lang.pm:351
+#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "Nicaragua"
-#: lang.pm:354
+#: lang.pm:367 mirror.pm:28 timezone.pm:232
+#, c-format
+msgid "Netherlands"
+msgstr "Nederlands"
+
+#: lang.pm:368 mirror.pm:30 timezone.pm:233
+#, c-format
+msgid "Norway"
+msgstr "Noorweë"
+
+#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "Nepal"
-#: lang.pm:355
+#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "Nauru"
-#: lang.pm:356
+#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "Niue"
-#: lang.pm:358
+#: lang.pm:372 mirror.pm:29 timezone.pm:255
+#, c-format
+msgid "New Zealand"
+msgstr "Neu-Seeland"
+
+#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "Oman"
-#: lang.pm:359
+#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "Panama"
-#: lang.pm:360
+#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "Peru"
-#: lang.pm:361
+#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "Fraanse Polinesië"
-#: lang.pm:362
+#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "Papua New Guinea"
-#: lang.pm:363
+#: lang.pm:378 timezone.pm:208
#, c-format
msgid "Philippines"
msgstr "Filippyne"
-#: lang.pm:364
+#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "Pakistan"
-#: lang.pm:366
+#: lang.pm:380 mirror.pm:31 timezone.pm:234
+#, c-format
+msgid "Poland"
+msgstr "Pole"
+
+#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Saint Pierre en Miquelon"
-#: lang.pm:367
+#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "Pitcairn"
-#: lang.pm:368
+#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "Puerto Rico"
-#: lang.pm:369
+#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "Palestina"
-#: lang.pm:371
+#: lang.pm:385 mirror.pm:32 timezone.pm:235
+#, c-format
+msgid "Portugal"
+msgstr "Portugal"
+
+#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "Paraguay"
-#: lang.pm:372
+#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "Palau"
-#: lang.pm:373
+#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "Qatar"
-#: lang.pm:374
+#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "Hereniging"
-#: lang.pm:375
+#: lang.pm:390 timezone.pm:236
#, c-format
msgid "Romania"
msgstr "Roemenië"
-#: lang.pm:377
+#: lang.pm:391 mirror.pm:33
+#, c-format
+msgid "Russia"
+msgstr "Rusland"
+
+#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "Rwanda"
-#: lang.pm:378
+#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "Saoedi-Arabië"
-#: lang.pm:379
+#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "Solomon Eilande"
-#: lang.pm:380
+#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "Seychelle"
-#: lang.pm:381
+#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "Sudan"
-#: lang.pm:383
+#: lang.pm:397 mirror.pm:37 timezone.pm:241
+#, c-format
+msgid "Sweden"
+msgstr "Swede"
+
+#: lang.pm:398 timezone.pm:209
#, c-format
msgid "Singapore"
msgstr "Singapoer"
-#: lang.pm:384
+#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "Saint Helena"
-#: lang.pm:385 network/adsl_consts.pm:747
+#: lang.pm:400 timezone.pm:239
#, c-format
msgid "Slovenia"
msgstr "Slovenië"
-#: lang.pm:386
+#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Svalbard en Jan Mayen Eilande"
-#: lang.pm:388
+#: lang.pm:402 mirror.pm:34 timezone.pm:238
+#, c-format
+msgid "Slovakia"
+msgstr "Slovakye"
+
+#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "Sierra Leone"
-#: lang.pm:389
+#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "San Marino"
-#: lang.pm:390 network/adsl_consts.pm:737
+#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "Senekal"
-#: lang.pm:391
+#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "Somalië"
-#: lang.pm:392
+#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "Suriname"
-#: lang.pm:393
+#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "Sao Tome and Principe"
-#: lang.pm:394
+#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "El Salvador"
-#: lang.pm:395
+#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "Sirië"
-#: lang.pm:396
+#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "Swaziland"
-#: lang.pm:397
+#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Turks en Caicos Eilande"
-#: lang.pm:398
+#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "Tsjad"
-#: lang.pm:399
+#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "French Southern Territories"
-#: lang.pm:400
+#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "Togo"
-#: lang.pm:402
+#: lang.pm:416 mirror.pm:40 timezone.pm:211
+#, c-format
+msgid "Thailand"
+msgstr "Thailand"
+
+#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "Tajikistan"
-#: lang.pm:403
+#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "Tokelau"
-#: lang.pm:404
+#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "East Timor"
-#: lang.pm:405
+#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "Turkmenistan"
-#: lang.pm:406 network/adsl_consts.pm:931
+#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "Tunisië"
-#: lang.pm:407
+#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "Tonga"
-#: lang.pm:408
+#: lang.pm:423 timezone.pm:212
#, c-format
msgid "Turkey"
msgstr "Turkye"
-#: lang.pm:409
+#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "Trinidad en Tobago"
-#: lang.pm:410
+#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "Tuvalu"
-#: lang.pm:412
+#: lang.pm:426 mirror.pm:39 timezone.pm:210
+#, c-format
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#: lang.pm:427 timezone.pm:195
#, c-format
msgid "Tanzania"
msgstr "Tanzanië"
-#: lang.pm:413
+#: lang.pm:428 timezone.pm:243
#, c-format
msgid "Ukraine"
msgstr "Oekraine"
-#: lang.pm:414
+#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "Uganda"
-#: lang.pm:415
+#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "Verenigde State se Kliener Omliggende Eilande"
-#: lang.pm:417
+#: lang.pm:431 mirror.pm:41 timezone.pm:251
+#, c-format
+msgid "United States"
+msgstr "Verenigde State"
+
+#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "Uruguay"
-#: lang.pm:418
+#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "Uzbekistan"
-#: lang.pm:419
+#: lang.pm:434
#, c-format
msgid "Vatican"
msgstr "Vatican"
-#: lang.pm:420
+#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "Saint Vincent en die Grenadines"
-#: lang.pm:421
+#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "Venezuela"
-#: lang.pm:422
+#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "Virgin Eilande (Brits)"
-#: lang.pm:423
+#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Virgin Eilande (VSA)"
-#: lang.pm:424
+#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "Viëtnam"
-#: lang.pm:425
+#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "Vanuatu"
-#: lang.pm:426
+#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "Wallis en Futuna"
-#: lang.pm:427
+#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "Samoa"
-#: lang.pm:428
+#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "Yemen"
-#: lang.pm:429
+#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "Mayotte"
-#: lang.pm:431
+#: lang.pm:445 mirror.pm:35 timezone.pm:194
+#, c-format
+msgid "South Africa"
+msgstr "Suid-Afrika"
+
+#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "Zambië"
-#: lang.pm:432
+#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1149
+#: lang.pm:1153
#, c-format
msgid "Welcome to %s"
msgstr "Welkom by %s"
@@ -9447,6 +4566,243 @@ msgstr "Verwyder eers die logiese volumes\n"
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:10
+#, c-format
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the Mandriva "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandriva Linux distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
+"Mandriva S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using the Software Products in any manner, you "
+"explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
+"Software Products.\n"
+"\n"
+"\n"
+"2. Limited Warranty\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
+"be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if Mandriva S.A. has been advised of the possibility or "
+"occurrence of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
+"\n"
+"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
+"no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Mandriva Linux sites which are prohibited or restricted in some "
+"countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
+"included in the Software Products.\n"
+"\n"
+"\n"
+"3. The GPL License and Related Licenses\n"
+"\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to Mandriva.\n"
+"The programs developed by Mandriva S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by Mandriva S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
+"\n"
+"\n"
+"4. Intellectual Property Rights\n"
+"\n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
+"as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
+"Mandriva S.A. \n"
+"\n"
+"\n"
+"5. Governing Laws \n"
+"\n"
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
+"For any question on this document, please contact Mandriva S.A. \n"
+msgstr ""
+
+#: messages.pm:90
+#, c-format
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
+"Waarskuwing: Oopbronsagteware is nie noodwendig vry van patente nie.\n"
+"Sommige van die sagteware hier ingesluit mag dalk gedek wees deur\n"
+"patente in die land waar u woon.\n"
+"Die MP3-dekodeerders wat hier ingesluit word, benodig moonlik 'n\n"
+"lisensie om wettiglik gebruik te kan word.(http://www.mp3licensing.com)\n"
+"Indien u onseker is oor 'n patent, raadpleeg die plaaslike wette.\n"
+"( Wees daarom bly jy woon nie in die VSA nie! )"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:98
+#, c-format
+msgid ""
+"\n"
+"Warning\n"
+"\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
+"\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
+msgstr ""
+"\n"
+"Warning\n"
+"\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
+"\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:131
+#, fuzzy, c-format
+msgid ""
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press Enter to reboot.\n"
+"\n"
+"\n"
+"For information on fixes which are available for this release of Mandriva "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandriva Linux User's Guide."
+msgstr ""
+"Geluk, installasie is afgehandel.\n"
+"Verwyder die herlaaimedium en druk 'enter' om te herlaai.\n"
+"\n"
+"\n"
+"Vir inligting oor hierdie vrystelling van Mandriva Linux,\n"
+"bekyk die errata beskikbaar op\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
+"hoofstuk in die Offisiële Mandriva Linux Gebruikersgids."
+
#: modules/interactive.pm:19
#, fuzzy, c-format
msgid "This driver has no configuration parameter!"
@@ -9509,12 +4865,7 @@ msgstr "Drywer vir %s kaart %s in installasieproses"
msgid "Installing driver for %s card %s"
msgstr "Drywer vir %s kaart %s in installasieproses"
-#: modules/interactive.pm:99
-#, c-format
-msgid "(module %s)"
-msgstr "(module %s)"
-
-#: modules/interactive.pm:109
+#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9523,7 +4874,7 @@ msgstr ""
"U kan nou opsies vir module %s voorsien.\n"
"Let daarop dat enige adresse voorafgegaan moet word deur 0x (bv '0x123')"
-#: modules/interactive.pm:115
+#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9534,18 +4885,18 @@ msgstr ""
"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
"Bv. ``io=0x300 irq-7''"
-#: modules/interactive.pm:117
+#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "Module opsies:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: modules/interactive.pm:130
+#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr "Watter %s drywer moet ek probeer?"
-#: modules/interactive.pm:139
+#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -9561,17 +4912,17 @@ msgstr ""
"rekenaar self daarvoor aftas. In uitsonderlike gevalle mag die rekenaar\n"
"vries, maar sal nie skade veroorsaak nie."
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "Aftas"
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "Spesifieer opsies"
-#: modules/interactive.pm:155
+#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -9580,1930 +4931,17 @@ msgstr ""
"Laai van module %s het gefaal.\n"
"Wil u ander parameters probeer?"
-#: modules/parameters.pm:49
-#, c-format
-msgid "a number"
-msgstr "'n syfer"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d komma-afgeskeie getalle"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d komma-afgeskeie teks"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated numbers"
-msgstr "komma-afgeskeie getalle"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated strings"
-msgstr "komma-afgeskeie reekse"
-
-#: mouse.pm:25
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - Muis"
-
-#: mouse.pm:31 security/level.pm:12
-#, c-format
-msgid "Standard"
-msgstr "Standaard"
-
-#: mouse.pm:32
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: mouse.pm:33
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Generiese PS2 wielmuis"
-
-#: mouse.pm:34
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/modem.pm:68 network/modem.pm:81 network/modem.pm:86
-#: network/modem.pm:115 network/netconnect.pm:596 network/netconnect.pm:601
-#: network/netconnect.pm:613 network/netconnect.pm:618
-#: network/netconnect.pm:634 network/netconnect.pm:636
-#, c-format
-msgid "Automatic"
-msgstr "Outomaties"
-
-#: mouse.pm:39 mouse.pm:73
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: mouse.pm:40 mouse.pm:68
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: mouse.pm:41
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: mouse.pm:42 mouse.pm:52
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
-
-#: mouse.pm:47 mouse.pm:79
-#, c-format
-msgid "1 button"
-msgstr "1 knop"
-
-#: mouse.pm:48 mouse.pm:57
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Generiese 2-knop muis"
-
-#: mouse.pm:50 mouse.pm:59
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Generiese 3-knop Muis met Wielletjie-emulasie"
-
-#
-#: mouse.pm:51
-#, c-format
-msgid "Wheel"
-msgstr "Wiel"
-
-#: mouse.pm:55
-#, c-format
-msgid "serial"
-msgstr "seriaal"
-
-#: mouse.pm:58
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Generiese 3-knop muis"
-
-#: mouse.pm:60
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: mouse.pm:61
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: mouse.pm:62
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan met wielletjie-emulasie"
-
-#: mouse.pm:63
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: mouse.pm:65
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Reeks (seriaal)"
-
-#: mouse.pm:66
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Reeks (seriaal) met Wielletjie-emulasie"
-
-#: mouse.pm:67
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: mouse.pm:69
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
-
-#: mouse.pm:70
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: mouse.pm:71
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Muis (seriaal, ou C7 tipe)"
-
-#: mouse.pm:72
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech Muis (seriaal, ou C7 tipe) met wielletjie-emulasie"
-
-#: mouse.pm:74
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse met Wiel-emulasie"
-
-#: mouse.pm:77
-#, c-format
-msgid "busmouse"
-msgstr "busmuis"
-
-#: mouse.pm:80
-#, c-format
-msgid "2 buttons"
-msgstr "2 knoppies"
-
-#: mouse.pm:81
-#, c-format
-msgid "3 buttons"
-msgstr "3 knoppies"
-
-#: mouse.pm:82
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3-knoppies met wielletjie-emulasie"
-
-#: mouse.pm:86
-#, c-format
-msgid "Universal"
-msgstr "Universele"
-
-#: mouse.pm:88
-#, c-format
-msgid "Any PS/2 & USB mice"
-msgstr "Enige PS/2 & USB muis"
-
-#: mouse.pm:89
-#, fuzzy, c-format
-msgid "Microsoft Xbox Controller S"
-msgstr "Microsoft Explorer"
-
-#: mouse.pm:93 standalone/drakconnect:351 standalone/drakvpn:1126
-#, c-format
-msgid "none"
-msgstr "niks"
-
-#: mouse.pm:95
-#, c-format
-msgid "No mouse"
-msgstr "Geen muis"
-
-#: mouse.pm:304 mouse.pm:367 mouse.pm:376 mouse.pm:435
-#, c-format
-msgid "Synaptics Touchpad"
-msgstr ""
-
-#
-#: mouse.pm:561
-#, c-format
-msgid "Please test the mouse"
-msgstr "Toets asb. die muis"
-
-#
-#: mouse.pm:563
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Om die muis te aktiveer,"
-
-#: mouse.pm:564
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "BEWEEG DIE WIEL!"
-
-#: network/drakfirewall.pm:12 share/compssUsers.pl:85
-#, c-format
-msgid "Web Server"
-msgstr "Web-bediener"
-
-#: network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "Domeinnaam-bediener"
-
-#: network/drakfirewall.pm:22
-#, c-format
-msgid "SSH server"
-msgstr "SSH-bediener"
-
-#: network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "FTP-bediener"
-
-#: network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "e-Pos bediener"
-
-#: network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP en IMAP bediener"
-
-#: network/drakfirewall.pm:42
-#, c-format
-msgid "Telnet server"
-msgstr "Telnet-bediener"
-
-#: network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr ""
-
-#: network/drakfirewall.pm:54
-#, c-format
-msgid "CUPS server"
-msgstr "CUPS-bediener"
-
-#: network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr "Echo request (ping)"
-
-#: network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr ""
-
-#: network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr ""
-
-#: network/drakfirewall.pm:165
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-"drakfirewall konfigurasie\n"
-"\n"
-"Hiermee stel u 'n persoonlike vuurmuur op vir die Mandriva Linux\n"
-"rekenaar. Indien u 'n kragtige en toegewyde vuurmuur verlang, kyk\n"
-"dan gerus na die 'Mandriva Security Firewall'."
-
-#: network/drakfirewall.pm:171
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-"drakefirewall assistent\n"
-"\n"
-"Maak seker dat u alreeds die Netwerk/Internet toegang opgestel het\n"
-"deur 'drakconnect' te gebruik."
-
-#: network/drakfirewall.pm:188
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "Watter dienste wil u toelaat vanaf die Internet?"
-
-#: network/drakfirewall.pm:191
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-"U kan uiteenlopende poorte voorsien. \n"
-"Voorbeelde hiervan is: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Kyk gerus na '/etc/services' vir meer inligting."
-
-#: network/drakfirewall.pm:197
-#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-"Ongeldige poort: %s.\n"
-"Die regte manier is \"poort/tcp\" of \"poort/udp\",\n"
-"waar poort tussen 1 en 65535 is.\n"
-"\n"
-"U kan ook 'n reeks poorte verskaf (bv. 24300:24350/udp)"
-
-#: network/drakfirewall.pm:207
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Alles (geen vuurmuur)"
-
-#: network/drakfirewall.pm:209
-#, c-format
-msgid "Other ports"
-msgstr "Ander poorte"
-
-#: network/drakfirewall.pm:253 network/drakfirewall.pm:256
-#: standalone/drakids:33 standalone/drakids:136 standalone/drakids:145
-#: standalone/drakids:170 standalone/drakids:179 standalone/drakids:189
-#: standalone/drakids:265 standalone/net_applet:59 standalone/net_applet:202
-#: standalone/net_applet:385 standalone/net_applet:422
-#, fuzzy, c-format
-msgid "Interactive Firewall"
-msgstr "Vuurmuur"
-
-#: network/drakfirewall.pm:254
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activity should be watched."
-msgstr ""
-
-#: network/drakfirewall.pm:259
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr ""
-
-#: network/ifw.pm:129
-#, fuzzy, c-format
-msgid "Port scanning"
-msgstr "Geen deling"
-
-#: network/ifw.pm:130
-#, fuzzy, c-format
-msgid "Service attack"
-msgstr "Diens Bestuurder"
-
-#: network/ifw.pm:131
-#, fuzzy, c-format
-msgid "Password cracking"
-msgstr "Wagwoord (weer)"
-
-#: network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr ""
-
-#: network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:135
-#, c-format
-msgid "The %s service has been attacked by %s."
-msgstr ""
-
-#: network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:137
-#, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr ""
-
-#: network/isdn.pm:117 network/netconnect.pm:463 network/netconnect.pm:557
-#: network/netconnect.pm:560 network/netconnect.pm:708
-#: network/netconnect.pm:712
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr ""
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "Ek weet nie"
-
-#: network/isdn.pm:161 network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: network/isdn.pm:162 network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/netconnect.pm:601 network/netconnect.pm:618
-#: network/netconnect.pm:634
-#, c-format
-msgid "Manual"
-msgstr "Selfdoen"
-
-#: network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr ""
-
-#: network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr ""
-
-#: network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr ""
-
-#: network/ndiswrapper.pm:89
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr ""
-
-#: network/ndiswrapper.pm:95
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-
-#: network/ndiswrapper.pm:101
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr ""
-
-#: network/netconnect.pm:69 network/netconnect.pm:493
-#: network/netconnect.pm:505
-#, fuzzy, c-format
-msgid "Manual choice"
-msgstr "selfdoen"
-
-#: network/netconnect.pm:69
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Interne ISDN-kaart"
-
-#: network/netconnect.pm:80 printer/printerdrake.pm:1622 standalone/drakups:72
-#, c-format
-msgid "Manual configuration"
-msgstr "Selfdoen konfigurasie"
-
-#: network/netconnect.pm:81 standalone/drakroam:121
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr "Outomatiese IP (BOOTP/DHCP)"
-
-#: network/netconnect.pm:83
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
-msgstr "Outomatiese IP (BOOTP/DHCP/Zeroconf)"
-
-#
-#: network/netconnect.pm:86
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protokol vir die res van die wêreld"
-
-#: network/netconnect.pm:88 standalone/drakconnect:563
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Europese protokol (EDSS1)"
-
-#: network/netconnect.pm:89 standalone/drakconnect:564
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Protokol vir die res vd wêreld \n"
-"geen D-Kanaal nie (bruikhuurlyne)"
-
-#: network/netconnect.pm:103 standalone/harddrake2:328
-#: standalone/net_monitor:102 standalone/net_monitor:103
-#: standalone/net_monitor:108
-#, c-format
-msgid "unknown"
-msgstr "Onbekend"
-
-#: network/netconnect.pm:120 network/thirdparty.pm:220
-#, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "Alcatel speedtouch USB-modem"
-
-#: network/netconnect.pm:121
-#, c-format
-msgid "Sagem USB modem"
-msgstr "Sagem USB-modem"
-
-#: network/netconnect.pm:122
-#, c-format
-msgid "Bewan modem"
-msgstr "Bewan PCI-modem"
-
-#: network/netconnect.pm:123
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr "ECI Hi-Focus modem"
-
-#: network/netconnect.pm:127
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr "Dynamic Host Configuration Protocol (DHCP)"
-
-#: network/netconnect.pm:128
-#, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "Selfdoen TCP/IP-konfigurasie"
-
-#: network/netconnect.pm:129
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr "Point to Point Tunneling Protocol (PPTP)"
-
-#: network/netconnect.pm:130
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr "PPP oor Ethernet (PPPoE)"
-
-#: network/netconnect.pm:131
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr "PPP oor ATM (PPPoA)"
-
-#: network/netconnect.pm:132
-#, c-format
-msgid "DSL over CAPI"
-msgstr ""
-
-#: network/netconnect.pm:136
-#, c-format
-msgid "Bridged Ethernet LLC"
-msgstr "Bridged Ethernet LLC"
-
-#: network/netconnect.pm:137
-#, c-format
-msgid "Bridged Ethernet VC"
-msgstr "Bridged Ethernet VC"
-
-#: network/netconnect.pm:138
-#, c-format
-msgid "Routed IP LLC"
-msgstr "Routed IP LLC"
-
-#: network/netconnect.pm:139
-#, c-format
-msgid "Routed IP VC"
-msgstr "Routed IP VC"
-
-#: network/netconnect.pm:140
-#, c-format
-msgid "PPPoA LLC"
-msgstr "PPPoA LLC"
-
-#: network/netconnect.pm:141
-#, c-format
-msgid "PPPoA VC"
-msgstr "PPPoA VC"
-
-#: network/netconnect.pm:145 standalone/drakconnect:498
-#, c-format
-msgid "Script-based"
-msgstr "Skriptipe"
-
-#: network/netconnect.pm:146 standalone/drakconnect:498
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: network/netconnect.pm:147 standalone/drakconnect:498
-#, c-format
-msgid "Terminal-based"
-msgstr "Terminaaltipe"
-
-#: network/netconnect.pm:148 standalone/drakconnect:498
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: network/netconnect.pm:149 standalone/drakconnect:498
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: network/netconnect.pm:250 standalone/drakconnect:56
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Netwerk- & Internet-konfigurasie"
-
-#: network/netconnect.pm:256
-#, c-format
-msgid "LAN connection"
-msgstr "LAN-konneksie"
-
-#: network/netconnect.pm:257 network/netconnect.pm:276 standalone/drakroam:182
-#: standalone/drakroam:220 standalone/drakroam:223
-#, c-format
-msgid "Wireless connection"
-msgstr "Draadlose konneksie"
-
-#: network/netconnect.pm:258
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL-konneksie"
-
-#: network/netconnect.pm:259
-#, c-format
-msgid "Cable connection"
-msgstr "Kabelkonneksie"
-
-#: network/netconnect.pm:260
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN konneksie"
-
-#: network/netconnect.pm:261
-#, c-format
-msgid "Modem connection"
-msgstr "Modemkonfigurasie"
-
-#: network/netconnect.pm:262
-#, c-format
-msgid "DVB connection"
-msgstr ""
-
-#: network/netconnect.pm:272
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Kies die konneksie wat u wil konfigureer"
-
-#
-#: network/netconnect.pm:287 network/netconnect.pm:786
-#, c-format
-msgid "Connection Configuration"
-msgstr "Konneksiekonfigurasie"
-
-#: network/netconnect.pm:287 network/netconnect.pm:787
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Vul asb. die velde hieronder in"
-
-#: network/netconnect.pm:290
-#, c-format
-msgid "Your personal phone number"
-msgstr "U persoonlike telefoonnommer"
-
-#: network/netconnect.pm:291 network/netconnect.pm:790
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Voorsienernaam (bv voorsiener.co.za)"
-
-#: network/netconnect.pm:292 standalone/drakconnect:493
-#, c-format
-msgid "Provider phone number"
-msgstr "Verskaffer se foonnommer"
-
-#: network/netconnect.pm:293
-#, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "Voorsiener DNS 1 (opsioneel)"
-
-#: network/netconnect.pm:294
-#, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "Voorsiener DNS 2 (opsioneel)"
-
-#: network/netconnect.pm:295 standalone/drakconnect:444
-#, c-format
-msgid "Dialing mode"
-msgstr "Belmetode"
-
-#: network/netconnect.pm:296 standalone/drakconnect:449
-#: standalone/drakconnect:517
-#, c-format
-msgid "Connection speed"
-msgstr "Konneksiespoed"
-
-#: network/netconnect.pm:297 standalone/drakconnect:454
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Konneksie tydlimiet (in sekondes)"
-
-#: network/netconnect.pm:298 network/netconnect.pm:323
-#: network/netconnect.pm:793 standalone/drakconnect:491
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Gebruikerskode"
-
-#: network/netconnect.pm:299 network/netconnect.pm:324
-#: network/netconnect.pm:794 standalone/drakconnect:492
-#, c-format
-msgid "Account Password"
-msgstr "Wagwoord"
-
-#: network/netconnect.pm:300 standalone/drakconnect:554
-#, c-format
-msgid "Card IRQ"
-msgstr "Kaart IRQ"
-
-#: network/netconnect.pm:301 standalone/drakconnect:555
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Kaartgeheue (DMA)"
-
-#: network/netconnect.pm:302 standalone/drakconnect:556
-#, c-format
-msgid "Card IO"
-msgstr "Kaart I/O"
-
-#: network/netconnect.pm:303 standalone/drakconnect:557
-#, c-format
-msgid "Card IO_0"
-msgstr "Kaart IO_0"
-
-#: network/netconnect.pm:304
-#, c-format
-msgid "Card IO_1"
-msgstr "Kaart IO_1"
-
-#: network/netconnect.pm:319
-#, fuzzy, c-format
-msgid "Cable: account options"
-msgstr "Opbelopsies"
-
-#: network/netconnect.pm:322
-#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr ""
-
-#: network/netconnect.pm:348 network/netconnect.pm:670
-#: network/netconnect.pm:826 network/netconnect.pm:1170
-#, c-format
-msgid "Select the network interface to configure:"
-msgstr "Kies die netwerkkoppelvlak om op te stel:"
-
-#: network/netconnect.pm:350 network/netconnect.pm:385
-#: network/netconnect.pm:671 network/netconnect.pm:828 network/shorewall.pm:70
-#: standalone/drakconnect:714
-#, c-format
-msgid "Net Device"
-msgstr "Netwerk Toestel"
-
-#: network/netconnect.pm:351 network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr "Eksterne ISDN modem"
-
-#: network/netconnect.pm:384 standalone/harddrake2:215
-#, c-format
-msgid "Select a device!"
-msgstr "Kies 'n toestel !"
-
-#: network/netconnect.pm:393 network/netconnect.pm:403
-#: network/netconnect.pm:413 network/netconnect.pm:446
-#: network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "ISDN Konfigurasie"
-
-#: network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Oor watter tipe kaart beskik u?"
-
-#: network/netconnect.pm:404
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"Indien u 'n ISA-kaart het, behoort die waardes op die volgende skerm\n"
-"reg te wees.\n"
-"\n"
-"Indien u 'n PCMCIA-kaart het, moet u die IRQ en I/O van u kaart weet.\n"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "Gaan voort"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "Staak"
-
-#: network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Wat is u ISDN-kaart?"
-
-#: network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-
-#: network/netconnect.pm:434 standalone/drakconnect:109 standalone/drakups:249
-#: standalone/harddrake2:133
-#, c-format
-msgid "Driver"
-msgstr "Drywer"
-
-#: network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Watter protokol verlang u?"
-
-#: network/netconnect.pm:448 standalone/drakconnect:109
-#: standalone/drakconnect:300 standalone/drakconnect:562
-#: standalone/drakids:207 standalone/drakvpn:1128
-#, c-format
-msgid "Protocol"
-msgstr "Protokol"
-
-#: network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"Kies u internetdiensvoorsiener.\n"
-"Indien nie in die lys nie kies Ongelys"
-
-#: network/netconnect.pm:462 network/netconnect.pm:556
-#: network/netconnect.pm:707
-#, c-format
-msgid "Provider:"
-msgstr "Verskaffer:"
-
-#: network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"U modem word nie ten volle deur Linux ondersteun nie.\n"
-"Probeer http://www.linmodems.org vir meer inligting."
-
-#: network/netconnect.pm:490
-#, c-format
-msgid "Select the modem to configure:"
-msgstr "Kies die modem om op te stel:"
-
-#: network/netconnect.pm:525
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Op watter seriepoort is u modem gekoppel?"
-
-#: network/netconnect.pm:554
-#, c-format
-msgid "Select your provider:"
-msgstr "Kies u verskaffer:"
-
-#: network/netconnect.pm:578
-#, c-format
-msgid "Dialup: account options"
-msgstr "Opbelopsies"
-
-#: network/netconnect.pm:581
-#, c-format
-msgid "Connection name"
-msgstr "Konneksienaam"
-
-#: network/netconnect.pm:582
-#, c-format
-msgid "Phone number"
-msgstr "Telefoonnommer"
-
-#: network/netconnect.pm:583
-#, c-format
-msgid "Login ID"
-msgstr "Aantekenkode"
-
-#: network/netconnect.pm:598 network/netconnect.pm:631
-#, c-format
-msgid "Dialup: IP parameters"
-msgstr "Opbel: IP-Parameters"
-
-#: network/netconnect.pm:601
-#, c-format
-msgid "IP parameters"
-msgstr "IP-Parameters"
-
-#
-#: network/netconnect.pm:602 network/netconnect.pm:941
-#: printer/printerdrake.pm:460 standalone/drakconnect:109
-#: standalone/drakconnect:316 standalone/drakconnect:882
-#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:284
-#, c-format
-msgid "IP address"
-msgstr "IP-adres"
-
-#: network/netconnect.pm:603
-#, c-format
-msgid "Subnet mask"
-msgstr "Subnet-masker"
-
-#: network/netconnect.pm:615
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr "Opbel: DNS-inligting"
-
-#: network/netconnect.pm:618
-#, c-format
-msgid "DNS"
-msgstr "DNS"
-
-#: network/netconnect.pm:619
-#, c-format
-msgid "Domain name"
-msgstr "Domeinnaam"
-
-#: network/netconnect.pm:620 network/netconnect.pm:791
-#: standalone/drakconnect:992
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Eerste DNS-bediener (opsioneel)"
-
-#: network/netconnect.pm:621 network/netconnect.pm:792
-#: standalone/drakconnect:993
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Tweede DNS-bediener (opsioneel)"
-
-#: network/netconnect.pm:622
-#, c-format
-msgid "Set hostname from IP"
-msgstr "Verkry rekenaarnaam vanaf IP"
-
-#: network/netconnect.pm:634 standalone/drakconnect:327
-#, c-format
-msgid "Gateway"
-msgstr "Portaal"
-
-#
-#: network/netconnect.pm:635 standalone/drakroam:124
-#, c-format
-msgid "Gateway IP address"
-msgstr "Deurgang se IP-adres"
-
-#: network/netconnect.pm:670
-#, c-format
-msgid "ADSL configuration"
-msgstr "ADSL-konfigurasie"
-
-#: network/netconnect.pm:705
-#, c-format
-msgid "Please choose your ADSL provider"
-msgstr "Kies asseblief ADSL-verskaffer"
-
-#: network/netconnect.pm:735
-#, c-format
-msgid ""
-"Please choose your DSL connection type.\n"
-"If you do not know it, keep the preselected type."
-msgstr ""
-
-#: network/netconnect.pm:738
-#, c-format
-msgid "ADSL connection type:"
-msgstr "Tipe ADSL-konneksie :"
-
-#: network/netconnect.pm:796
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr "Virtual Path ID (VPI):"
-
-#: network/netconnect.pm:797
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr "Virtual Circuit ID (VCI):"
-
-#: network/netconnect.pm:800
-#, c-format
-msgid "Encapsulation:"
-msgstr "Toevou metode :"
-
-#: network/netconnect.pm:830
-#, c-format
-msgid "Manually load a driver"
-msgstr ""
-
-#: network/netconnect.pm:831
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr ""
-
-#
-#: network/netconnect.pm:896
-#, c-format
-msgid "Zeroconf hostname resolution"
-msgstr "Zeroconf rekenaarnaam resolusie"
-
-#: network/netconnect.pm:897 network/netconnect.pm:928
-#, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "Konfigureer netwerktoestel %s (drywer %s)"
-
-#: network/netconnect.pm:898
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use"
-msgstr ""
-"Die volgende protokolle kan gebruik word vir 'n LAN konneksie. Kies "
-"asseblief die een om te gebruik"
-
-#: network/netconnect.pm:929
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Gee asb die IP-konfigurasie vir hierdie rekenaar.\n"
-"Elke item moet as 'n IP-adres in dot-desimalenotasie\n"
-"(1.2.3.4) gegee word."
-
-#
-#: network/netconnect.pm:936 standalone/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Ken rekenaarnaam vanaf DHCP-adres toe."
-
-#
-#: network/netconnect.pm:937 standalone/drakconnect:375
-#, c-format
-msgid "DHCP host name"
-msgstr "DHCP-rekenaarnaam"
-
-#
-#: network/netconnect.pm:942 standalone/drakconnect:321
-#: standalone/drakconnect:883 standalone/drakgw:181
-#, c-format
-msgid "Netmask"
-msgstr "Netmasker"
-
-#: network/netconnect.pm:944 standalone/drakconnect:437
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Volg netwerkkart ID. (nuttig vir skootrekenaars)"
-
-#: network/netconnect.pm:945 standalone/drakconnect:438
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Warm-inprop Netwerk"
-
-#: network/netconnect.pm:947 standalone/drakconnect:432
-#, c-format
-msgid "Start at boot"
-msgstr "Begin tydens herlaaityd"
-
-#: network/netconnect.pm:949 standalone/drakconnect:460
-#, fuzzy, c-format
-msgid "Metric"
-msgstr "beperk"
-
-#: network/netconnect.pm:950
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr ""
-
-#: network/netconnect.pm:952 standalone/drakconnect:369
-#: standalone/drakconnect:886
-#, c-format
-msgid "DHCP client"
-msgstr "DHCP-kliënt"
-
-#: network/netconnect.pm:954 standalone/drakconnect:379
-#, fuzzy, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "Konneksie tydlimiet (in sekondes)"
-
-#: network/netconnect.pm:955 standalone/drakconnect:382
-#, fuzzy, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "Die DNS-bediener se IP"
-
-#: network/netconnect.pm:956 standalone/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:957 standalone/drakconnect:384
-#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:965 printer/printerdrake.pm:1876
-#: standalone/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP-adres moet in 1.2.3.4. formaat wees"
-
-#: network/netconnect.pm:969 standalone/drakconnect:680
-#, fuzzy, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "Deurgang IP-adres moet in 1.2.3.4. formaat wees"
-
-#: network/netconnect.pm:973
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr "Pasop: IP-adres %s is alreeds gebruik !"
-
-#: network/netconnect.pm:978 standalone/drakTermServ:1927
-#: standalone/drakTermServ:1928 standalone/drakTermServ:1929
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s is alreeds in gebruik\n"
-
-#: network/netconnect.pm:1018
-#, fuzzy, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "Kies 'n eiemagtige drywer"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr ""
-
-#: network/netconnect.pm:1020
-#, fuzzy, c-format
-msgid "Install a new driver"
-msgstr "Installeer stelsel"
-
-#: network/netconnect.pm:1032
-#, c-format
-msgid "Select a device:"
-msgstr ""
-
-#: network/netconnect.pm:1061
-#, c-format
-msgid "Please enter the wireless parameters for this card:"
-msgstr "Voorsien asseblief die inligting vir hierdie draadlose kaart:"
-
-#: network/netconnect.pm:1064 standalone/drakconnect:404
-#: standalone/drakroam:52
-#, c-format
-msgid "Operating Mode"
-msgstr "Bedryfsvlak"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Ad-hoc"
-msgstr "Ad-hoc"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Managed"
-msgstr "Beheerde"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Master"
-msgstr "Meester"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Repeater"
-msgstr "Repeater"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Secondary"
-msgstr "Sekondêre"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Auto"
-msgstr "Outo"
-
-#: network/netconnect.pm:1068 standalone/drakconnect:405
-#: standalone/drakroam:115
-#, c-format
-msgid "Network name (ESSID)"
-msgstr "Netwerknaam (ESSID)"
-
-#: network/netconnect.pm:1069 standalone/drakroam:116
-#, c-format
-msgid "Encryption mode"
-msgstr ""
-
-#: network/netconnect.pm:1074
-#, c-format
-msgid "Allow access point roaming"
-msgstr ""
-
-#: network/netconnect.pm:1076 standalone/drakconnect:406
-#, c-format
-msgid "Network ID"
-msgstr "Netwerk-ID"
-
-#: network/netconnect.pm:1077 standalone/drakconnect:407
-#, c-format
-msgid "Operating frequency"
-msgstr "Bedryfsfrekwensie"
-
-#: network/netconnect.pm:1078 standalone/drakconnect:408
-#, c-format
-msgid "Sensitivity threshold"
-msgstr "Sensitiwiteits behoud"
-
-#: network/netconnect.pm:1079 standalone/drakconnect:409
-#, c-format
-msgid "Bitrate (in b/s)"
-msgstr "Bitrate (in b/s)"
-
-#: network/netconnect.pm:1080 standalone/drakconnect:420
-#, c-format
-msgid "RTS/CTS"
-msgstr "RTS/CTS"
-
-#: network/netconnect.pm:1081
-#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
-"RTS/CTS voeg 'n handskud by alvorens 'n pakkie gestuur word. Dit\n"
-"is om seker te maak die tonnel is skoon. Dit voeg wel oorhoofse data\n"
-"by, maar kan beter resultate tot gevolge hê.\n"
-"Hierie parameter bepaal die kleinste pakkie vwaarvoor die node 'n RTS\n"
-"sal stuur. 'n Waarde gelyk aan die maksimun pakkie grootte sal dit\n"
-"de-aktiveer. U kan dit ook stel na Outo, bepaald of af."
-
-#: network/netconnect.pm:1088 standalone/drakconnect:421
-#, c-format
-msgid "Fragmentation"
-msgstr "Fragmentasie"
-
-#: network/netconnect.pm:1089 standalone/drakconnect:422
-#, c-format
-msgid "iwconfig command extra arguments"
-msgstr "iwconfig program se ekstra argumente"
-
-#: network/netconnect.pm:1090
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-"Hier kan u ekstra verstellings bepaal soos: ap, channel, commit, enc, power, "
-"retry, sens, txpower (nick is reeds gestel as die rekenaarnaam).\n"
-"\n"
-"Raadpleeg die iwconfig(8) man vir ekstra inligting."
-
-#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1097 standalone/drakconnect:423
-#, c-format
-msgid "iwspy command extra arguments"
-msgstr "iwspy program se ekstra argumente"
-
-#: network/netconnect.pm:1098
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-"iwspy word gebruik om 'n lys op te stel van adresse in 'n draadlose\n"
-"netwerk asook om die gehalte van elke koppeling van elk te lees.\n"
-"\n"
-"Hierdie inligting kan ook bekom word in /proc/net/wireless :\n"
-"gehalte van die koppeling, seinsterkte, en geraasvlakke.\n"
-"\n"
-"Raadpleeg die iwpspy(8) vir verdere inligting."
-
-#: network/netconnect.pm:1107 standalone/drakconnect:424
-#, c-format
-msgid "iwpriv command extra arguments"
-msgstr "iwpriv program se ekstra argumente"
-
-#: network/netconnect.pm:1108
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-"iwpriv stel u in staat om privaatheidsverstellings aan\n"
-"die draadlose netwerkkoppelvlak aan te bring.\n"
-"\n"
-"iwpriv maak verstellings aan die spesifieke drywers (in teenstelling met "
-"iwconfig wat generiese verstellings doen)\n"
-"\n"
-"In teorie, behoort u al die nodige inligting vanaf die drywer\n"
-"se dokumentasie te kan bekom)\n"
-"\n"
-"Raadpleeg die iwpriv(8) vir verdere inligting."
-
-#: network/netconnect.pm:1123
-#, c-format
-msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
-msgstr ""
-"Freq moet 'n k, M of G agtervoegsel kry. (byvoorbeeld, \"2.6G\" vir 2.46Ghz "
-"frekwensie), of u moet genoeg 0'e (zero's) byvoeg."
-
-#: network/netconnect.pm:1127
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-"Tempo moet agtervoegsels van k,M, of G kry (byvoorbeeld \"11M\" vir 11M) of "
-"voeg genoeg 0'e (zero'z) by."
-
-#: network/netconnect.pm:1170
-#, c-format
-msgid "DVB configuration"
-msgstr ""
-
-#: network/netconnect.pm:1171
-#, c-format
-msgid "DVB Adapter"
-msgstr ""
-
-#: network/netconnect.pm:1188
-#, c-format
-msgid "DVB adapter settings"
-msgstr ""
-
-#: network/netconnect.pm:1191
-#, c-format
-msgid "Adapter card"
-msgstr ""
-
-#: network/netconnect.pm:1192
-#, c-format
-msgid "Net demux"
-msgstr ""
-
-#: network/netconnect.pm:1193
-#, c-format
-msgid "PID"
-msgstr "Pid"
-
-#: network/netconnect.pm:1221
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Tik asb die rekenaarnaam in.\n"
-"Dit moet 'n volle gekwalifiseerde naam wees,\n"
-"bv. ``myne.mywerk.co.za''.\n"
-"U mag ook die netwerkhek byvoeg indien daar een is"
-
-#: network/netconnect.pm:1226
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr ""
-"Laaste, maar nie die minste nie, kan u ook die DNS-bediener(s) se IP(s) "
-"voorsien."
-
-#: network/netconnect.pm:1228 standalone/drakconnect:991
-#, c-format
-msgid "Host name (optional)"
-msgstr "Rekenaarnaam (opsioneel)"
-
-#
-#: network/netconnect.pm:1228 standalone/drakhosts:197
-#, c-format
-msgid "Host name"
-msgstr "Rekenaarnaam"
-
-#: network/netconnect.pm:1230
-#, c-format
-msgid "DNS server 1"
-msgstr "DNS-bediener 1"
-
-#: network/netconnect.pm:1231
-#, c-format
-msgid "DNS server 2"
-msgstr "DNS-bediener 2"
-
-#: network/netconnect.pm:1232
-#, c-format
-msgid "DNS server 3"
-msgstr "DNS-bediener 3"
-
-#: network/netconnect.pm:1233
-#, c-format
-msgid "Search domain"
-msgstr "Deursoek domein"
-
-#: network/netconnect.pm:1234
-#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr ""
-"Die domein om te deursoek, sal by verstek vanaf die \"fully-qualified host "
-"name\" FQHN af kom"
-
-#: network/netconnect.pm:1235
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Deurgangspoort (bv. %s)"
-
-#: network/netconnect.pm:1237
-#, c-format
-msgid "Gateway device"
-msgstr "Deurgangtoestel"
-
-#: network/netconnect.pm:1246
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "DNS-adres moet in 1.2.3.4. formaat wees"
-
-#: network/netconnect.pm:1251 standalone/drakconnect:685
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Deurgang IP-adres moet in 1.2.3.4. formaat wees"
-
-#: network/netconnect.pm:1264
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-
-#
-#: network/netconnect.pm:1268
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Zeroconf Rekenaarnaam"
-
-#: network/netconnect.pm:1271
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "'Zeroconf'-naam mag nie 'n '.' bevat nie"
-
-#: network/netconnect.pm:1281
-#, fuzzy, c-format
-msgid "Do you want to allow users to start the connection?"
-msgstr "Wil u die konneksie met herlaaityd aanskakel?"
-
-#: network/netconnect.pm:1294
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Wil u die konneksie met herlaaityd aanskakel?"
-
-#: network/netconnect.pm:1310
-#, fuzzy, c-format
-msgid "Automatically at boot"
-msgstr "Begin tydens herlaaityd"
-
-#: network/netconnect.pm:1312
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr ""
-
-#: network/netconnect.pm:1314
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr ""
-
-#: network/netconnect.pm:1323
-#, fuzzy, c-format
-msgid "How do you want to dial this connection?"
-msgstr "Wil u die konneksie met herlaaityd aanskakel?"
-
-#: network/netconnect.pm:1336
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Wil u nou aan die internet konnekteer?"
-
-#: network/netconnect.pm:1344 standalone/drakconnect:1023
-#, c-format
-msgid "Testing your connection..."
-msgstr "Konneksie word getoets..."
-
-#: network/netconnect.pm:1369
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Die stelsel is nou aan die internet gekonnekteer."
-
-#: network/netconnect.pm:1370
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Vir sekuriteitsreDES, word u nou gediskonnekteer."
-
-#: network/netconnect.pm:1371
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Dit blyk dat u rekenaar geen toegang tot die Internet het nie.\n"
-"Probeer weer u konneksie konfigureer."
-
-#: network/netconnect.pm:1386
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-"Daarsy dude / duDES, die netwerk en Internetkonfigurasie is voltooi.\n"
-"\n"
-
-#: network/netconnect.pm:1389
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Nadat dit klaar is, sal dit beter wees om u X-omgewing te herlaai om die "
-"rekenaarnaamverandering-probleem te voorkom."
-
-#: network/netconnect.pm:1390
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-"Probleme is tydens die konfigurasie ondervind.\n"
-"Toets u konneksie deur 'net_monitor' of 'mcc'. Indien u steeds probleme "
-"ondervind, konfigureer weer van voor af."
-
-#: network/netconnect.pm:1402
-#, c-format
-msgid "(detected on port %s)"
-msgstr "(op poort %s bespeur)"
-
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected %s)"
-msgstr "(%s bespeur)"
-
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected)"
-msgstr "(bespeur)"
-
-#: network/netconnect.pm:1405
-#, c-format
-msgid "Network Configuration"
-msgstr "Netwerkkonfigurasie"
-
-#: network/netconnect.pm:1406
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Omdat u netwerk installasie doen, is u netwerk aslreeds opgestel.\n"
-"Kliek op OK om hierdee konfigurasie te behou, of op Kanselleer om u "
-"Internet\n"
-"& Netwerkkonneksie te herkonfigureer.\n"
-
-#: network/netconnect.pm:1409
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr "Die netwerk moet herbegin word. Wil u dit nou doen?"
-
-#: network/netconnect.pm:1410
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Daar was 'n probleem met die herlaai van die netwerk.\n"
-"\n"
-"%s"
-
-#: network/netconnect.pm:1411
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-"Ons gaan nou die %s konneksie konfigureer.\n"
-"\n"
-"\n"
-"Druk \"%s\" om voort te gaan."
-
-#: network/netconnect.pm:1412
-#, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr "Konfigurasie is voltooi, wil u hierdie verstellings toepas?"
-
-#: network/netconnect.pm:1413
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"U het meer as een internetkonneksiemetode opgstel.\n"
-"Kies die een wat u verlang.\n"
-"\n"
-
-#: network/netconnect.pm:1414
-#, c-format
-msgid "Internet connection"
-msgstr "Internetkonneksie"
-
-#: network/netconnect.pm:1428
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-"'n Onvoorsiene fout het gebeur:\n"
-"%s"
-
-#: network/network.pm:411
-#, c-format
-msgid "Proxies configuration"
-msgstr "Instaanbediener-konfigurasie"
-
-#: network/network.pm:412
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-
-#: network/network.pm:413
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP instaanbediener"
-
-#: network/network.pm:414
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: network/network.pm:415
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: network/network.pm:416
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP-instaanbediener"
-
-#: network/network.pm:420
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Instaanbediener moet begin met http://..."
-
-#: network/network.pm:421
-#, c-format
-msgid "Proxy should be https?://..."
-msgstr ""
-
-#: network/network.pm:422
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URL moet begin met 'ftp' of 'http':"
-
-#: network/shorewall.pm:55
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-"Voorsien asseblief die koppelvlak-naam wat verbind is aan die Internet.\n"
-"\n"
-"Voorbeelde:\n"
-"\t\tppp+ vir modem of DSL konneksies, \n"
-"\t\teth0, or eth1 vir kabel konneksies, \n"
-"\t\tippp+ vir 'n isdn konneksie.\n"
-
-#: network/thirdparty.pm:232
-#, fuzzy, c-format
-msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
-msgstr ""
-"U benodig die Alcatel mikrokode.\n"
-"Laai dit af by:\n"
-"%s en kopieer die mgmt.o na '/usr/share/speedtouch'"
-
-#: network/thirdparty.pm:241
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-"The ECI Hi-Focus modem kan nie uit die boks ondersteun word uit nie.\n"
-"Besoek gerus http://eciadsl.flashtux.org/ vir 'n drywer."
-
-#: network/thirdparty.pm:321
-#, fuzzy, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "Installeer pakket %s"
-
-#: network/thirdparty.pm:329
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr ""
-
-#: network/thirdparty.pm:330
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-
-#: network/thirdparty.pm:332
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-
-#: network/thirdparty.pm:372
-#, fuzzy, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "Verwyder lettertipes vanaf u rekenaar"
-
-#: network/thirdparty.pm:374
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr ""
-
-#: network/thirdparty.pm:384
-#, c-format
-msgid "Insert floppy"
-msgstr "Plaas skyf in aandrywer"
-
-#: network/thirdparty.pm:385
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"Plaas 'n FAT-geformatteerde skyf in aandrywer %s met %s in die 'root' "
-"lêergids en druk %s"
-
-#: network/thirdparty.pm:395
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Disket-toegangsfout, kan nie toestel %s heg nie"
-
-#: network/thirdparty.pm:405
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-"U benodig die 'Alcatel microcode'.\n"
-"U kan dit deur 'n disket voorsien, of deur u Windows partisie,\n"
-"of dit oorslaan en later doen."
-
-#: network/thirdparty.pm:409 network/thirdparty.pm:411
-#, c-format
-msgid "Use a floppy"
-msgstr "Gebruik 'n disket"
-
-#: network/thirdparty.pm:409
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Gebruik my Windows-partisie"
-
-#: network/thirdparty.pm:419
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "Probleme met die kopieer van Fermware (Firmware), lêer %s is soek"
-
-#: network/thirdparty.pm:424 standalone/drakautoinst:250
-#: standalone/drakvpn:888 standalone/scannerdrake:422
-#, c-format
-msgid "Congratulations!"
-msgstr "Geluk!"
-
-#: network/thirdparty.pm:424
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "Kopieer van Fermware was suksesvol"
-
-#: network/thirdparty.pm:493
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr ""
-
-#: network/thirdparty.pm:498
-#, fuzzy, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "Net 'n oomblik, spoor en konfigureer us toestelle"
-
-#: network/wireless.pm:8
-#, c-format
-msgid "Open WEP"
-msgstr ""
-
-#: network/wireless.pm:9
-#, c-format
-msgid "Restricted WEP"
-msgstr ""
-
-#: network/wireless.pm:10
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr ""
-
-#: partition_table.pm:391
+#: partition_table.pm:390
#, c-format
msgid "mount failed: "
msgstr "heg het gefaal: "
-#: partition_table.pm:496
+#: partition_table.pm:500
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Ekstensiepartisie word nie op hierdie platform ondersteun nie"
-#: partition_table.pm:514
+#: partition_table.pm:518
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
@@ -11514,22 +4952,27 @@ msgstr ""
"Die enigste oplossing is om die primêre partisie te skuif sodat die gat\n"
"langs die ekstensie partisies is"
-#: partition_table.pm:605
+#: partition_table.pm:597
+#, c-format
+msgid "Error reading file %s"
+msgstr "Fout met die lees van lêer %s"
+
+#: partition_table.pm:604
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Herstel van léer %s het gefaal: %s"
-#: partition_table.pm:607
+#: partition_table.pm:606
#, c-format
msgid "Bad backup file"
msgstr "Korrupte rugsteunlêer"
-#: partition_table.pm:627
+#: partition_table.pm:626
#, c-format
msgid "Error writing to file %s"
msgstr "Fout met die skryf van %s"
-#: partition_table/raw.pm:253
+#: partition_table/raw.pm:264
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
@@ -11542,3447 +4985,47 @@ msgstr ""
"Dit beteken dat enigiets wat na u hardeskyf geskryf word as gemors sal "
"eindig."
-#: pkgs.pm:21
-#, c-format
-msgid "must have"
-msgstr "benodig"
-
-#: pkgs.pm:22
-#, c-format
-msgid "important"
-msgstr "belangrik"
-
-#: pkgs.pm:23
-#, c-format
-msgid "very nice"
-msgstr "baie oulik"
-
-#: pkgs.pm:24
-#, c-format
-msgid "nice"
-msgstr "oulik"
-
-#: pkgs.pm:25
-#, c-format
-msgid "maybe"
-msgstr "moontlik"
-
-#: pkgs.pm:474
-#, fuzzy, c-format
-msgid "Downloading file %s..."
-msgstr "Stuur lêers..."
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on %s)"
-msgstr "(op %s)"
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on this machine)"
-msgstr "(op hierdie rekenaar)"
-
-#: printer/cups.pm:117 standalone/printerdrake:200
-#, c-format
-msgid "Configured on other machines"
-msgstr "Gekonfigureer op ander rekenaars"
-
-#: printer/cups.pm:119
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Op CUPS bediener\"%s\""
-
-#: printer/cups.pm:119 printer/printerdrake.pm:4909
-#: printer/printerdrake.pm:4919 printer/printerdrake.pm:5078
-#: printer/printerdrake.pm:5089 printer/printerdrake.pm:5303
-#, c-format
-msgid " (Default)"
-msgstr " (Verstek)"
-
-#: printer/data.pm:67
-#, c-format
-msgid "PDQ - Print, Do not Queue"
-msgstr "PDQ - Druk sonder drukkertou"
-
-#: printer/data.pm:68
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: printer/data.pm:80
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Lyndrukkerdiensprogram"
-
-#: printer/data.pm:81
-#, c-format
-msgid "LPD"
-msgstr "LPD"
-
-#: printer/data.pm:102
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - Nuwe generasie LPR"
-
-#: printer/data.pm:103
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
-
-#: printer/data.pm:128
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Generiese Unixdrukstelsel (Common Unix Printing System) "
-
-#: printer/data.pm:158
-#, fuzzy, c-format
-msgid "CUPS - Common Unix Printing System (remote server)"
-msgstr "CUPS - Generiese Unixdrukstelsel (Common Unix Printing System) "
-
-#
-#: printer/data.pm:159
-#, fuzzy, c-format
-msgid "Remote CUPS"
-msgstr "Eksterne CUPS-bediener"
-
-#: printer/detect.pm:168 printer/detect.pm:263 printer/detect.pm:498
-#: printer/detect.pm:571 printer/main.pm:330 printer/main.pm:692
-#: printer/main.pm:1815 printer/printerdrake.pm:960
-#: printer/printerdrake.pm:1120 printer/printerdrake.pm:2448
-#: printer/printerdrake.pm:4004
-#, c-format
-msgid "Unknown model"
-msgstr "Onbekende model"
-
-#: printer/main.pm:24
-#, c-format
-msgid "Local printer"
-msgstr "Plaaslike drukker"
-
-#
-#: printer/main.pm:25
-#, c-format
-msgid "Remote printer"
-msgstr "Eksterne drukker"
-
-#
-#: printer/main.pm:26
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Eksterne CUPS-drukker"
-
-#
-#: printer/main.pm:27 printer/printerdrake.pm:1360
-#: printer/printerdrake.pm:1899
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Eksterne LPD-drukker"
-
-#
-#: printer/main.pm:28
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Netwerkdrukker (TCP/sok)"
-
-#: printer/main.pm:29
-#, fuzzy, c-format
-msgid "Printer on SMB/Windows server"
-msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
-
-#: printer/main.pm:30
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Eksterne Netware-drukker"
-
-#: printer/main.pm:31 printer/printerdrake.pm:1903
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Tik drukkertoestel se URI in"
-
-#: printer/main.pm:32
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Pyp drukstuk na program"
-
-#: printer/main.pm:43
-#, c-format
-msgid "recommended"
-msgstr "word aanbeveel"
-
-#: printer/main.pm:355 standalone/printerdrake:199
-#, c-format
-msgid "Configured on this machine"
-msgstr "Gekonfigureer op hierdie rekenaar"
-
-#: printer/main.pm:361 printer/printerdrake.pm:1445
-#, c-format
-msgid " on parallel port #%s"
-msgstr " op pallelle poort #%s"
-
-#: printer/main.pm:364 printer/printerdrake.pm:1448
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", USB-drukker #%s"
-
-#: printer/main.pm:366
-#, c-format
-msgid ", USB printer"
-msgstr ", USB-drukker"
-
-#: printer/main.pm:370
-#, c-format
-msgid ", HP printer on a parallel port"
-msgstr ", HP drukker op 'n parallele poort"
-
-#: printer/main.pm:372
-#, c-format
-msgid ", HP printer on USB"
-msgstr ", HP drukker op USB"
-
-#: printer/main.pm:374
-#, c-format
-msgid ", HP printer on HP JetDirect"
-msgstr ", HP drukker op 'HP JetDirect'"
-
-#: printer/main.pm:376
-#, c-format
-msgid ", HP printer"
-msgstr ", HP drukker"
-
-#: printer/main.pm:382
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", multi-funksionele toestel op parallele poort #%s"
-
-#: printer/main.pm:385
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", multi-funksionele toestel op 'n parallelle poort"
-
-#: printer/main.pm:387
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", multi-funksionele toestel op USB"
-
-#: printer/main.pm:389
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", multi-funksionele toestel op 'HP JetDirect'"
-
-#: printer/main.pm:391
-#, c-format
-msgid ", multi-function device"
-msgstr ", multi-funksionele-toestel"
-
-#: printer/main.pm:395
-#, c-format
-msgid ", printing to %s"
-msgstr ", drukwerk gestuur na %s"
-
-#: printer/main.pm:398
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr "op LPD-bediener \"%s\", drukker \"%s\""
-
-#: printer/main.pm:401
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP rekenaar \"%s\", poort %s"
-
-#: printer/main.pm:406
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr "op SMB/Windows-bediener \"%s\", deelarea \"%s\""
-
-#: printer/main.pm:411
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " op Novell bediener \"%s\", drukker \"%s\""
-
-#: printer/main.pm:414
-#, c-format
-msgid ", using command %s"
-msgstr ", gebruik opdrag %s"
-
-#: printer/main.pm:429
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Parallelle poort #%s"
-
-#: printer/main.pm:432 printer/printerdrake.pm:1466
-#: printer/printerdrake.pm:1493 printer/printerdrake.pm:1508
-#, c-format
-msgid "USB printer #%s"
-msgstr "USB drukker #%s"
-
-#: printer/main.pm:434
-#, c-format
-msgid "USB printer"
-msgstr "USB-drukker"
-
-#: printer/main.pm:438
-#, c-format
-msgid "HP printer on a parallel port"
-msgstr "HP drukker op 'n parallele poort"
-
-#: printer/main.pm:440
-#, c-format
-msgid "HP printer on USB"
-msgstr "HP drukker op USB"
-
-#: printer/main.pm:442
-#, c-format
-msgid "HP printer on HP JetDirect"
-msgstr "HP drukker op 'HP JetDirect'"
-
-#: printer/main.pm:444
-#, c-format
-msgid "HP printer"
-msgstr "HP drukker"
-
-#: printer/main.pm:450
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Multi-funksionele toestel op parallelle poort #%s"
-
-#: printer/main.pm:453
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "multi-funksionele toestel op parallelle poort"
-
-#: printer/main.pm:455
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "Multi-funksionele toestel op USB"
-
-#: printer/main.pm:457
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Multi-funksionele toestel op 'HP JetDirect'"
-
-#: printer/main.pm:459
-#, c-format
-msgid "Multi-function device"
-msgstr "Multi-funksionele-toestel"
-
-#: printer/main.pm:463
-#, c-format
-msgid "Prints into %s"
-msgstr "Druk na %s"
-
-#: printer/main.pm:466
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "LPD bediener \"%s\"/, drukker \"%s\""
-
-#: printer/main.pm:469
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "TCP/IP rekenaarnaam \"%s\", poort %s"
-
-#: printer/main.pm:474
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "SMB/Windows-bediener \"%s\", deelarea \"%s\""
-
-#
-#: printer/main.pm:479
-#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Novell-bediener \"%s\", drukker \"%s\""
-
-#: printer/main.pm:482
-#, c-format
-msgid "Uses command %s"
-msgstr "Gebruik opdrag %s"
-
-#: printer/main.pm:484
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
-
-#: printer/main.pm:689 printer/printerdrake.pm:1047
-#: printer/printerdrake.pm:3142
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Onverwerkte (direkte) drukker"
-
-#: printer/main.pm:1309 printer/printerdrake.pm:211
-#: printer/printerdrake.pm:223
-#, c-format
-msgid "Local network(s)"
-msgstr "Plaaslike netwerk(e)"
-
-#: printer/main.pm:1311 printer/printerdrake.pm:227
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Koppelvlak \"%s\""
-
-#: printer/main.pm:1313
-#, c-format
-msgid "Network %s"
-msgstr "Netwerk %s"
-
-#
-#: printer/main.pm:1315
-#, c-format
-msgid "Host %s"
-msgstr "Rekenaar %s"
-
-#: printer/main.pm:1344
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Poort %s)"
-
-#: printer/main.pm:1945 printer/main.pm:2100
-#, c-format
-msgid "user-supplied"
-msgstr ""
-
-#: printer/main.pm:1949 printer/main.pm:2104
-#, c-format
-msgid "NEW"
-msgstr ""
-
-#: printer/printerdrake.pm:24
-#, c-format
-msgid ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"decompressing the self-extracting '.exe' file with the 'unzip' utility and "
-"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
-"printer' directory. There it will be found by the automatic uploader script "
-"and uploaded whenever the printer is connected and turned on.\n"
-msgstr ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"decompressing the self-extracting '.exe' file with the 'unzip' utility and "
-"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
-"printer' directory. There it will be found by the automatic uploader script "
-"and uploaded whenever the printer is connected and turned on.\n"
-
-#: printer/printerdrake.pm:67
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "CUPS-drukkerkonfigurasie"
-
-#: printer/printerdrake.pm:68
-#, c-format
-msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessible by remote machines and by which remote machines."
-msgstr ""
-"Hier kan u kies of die drukkers wat aan hierdie masjien beskikbaar sal wees "
-"aan eksterne rekenaars en watter rekenaars dit sal wees."
-
-#: printer/printerdrake.pm:69
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-"U kan ook hier besluit indien eksterne drukkers outomaties op hierdie "
-"rekenaar beskikbaar gestel behoort te word."
-
-#: printer/printerdrake.pm:72 printer/printerdrake.pm:506
-#: printer/printerdrake.pm:4542
-#, c-format
-msgid "Remote CUPS server and no local CUPS daemon"
-msgstr ""
-
-#: printer/printerdrake.pm:75
-#, c-format
-msgid "On"
-msgstr "Op"
-
-#: printer/printerdrake.pm:77 printer/printerdrake.pm:498
-#: printer/printerdrake.pm:525
-#, c-format
-msgid "Off"
-msgstr "Af"
-
-#: printer/printerdrake.pm:78 printer/printerdrake.pm:507
-#, c-format
-msgid ""
-"In this mode the local CUPS daemon will be stopped and all printing requests "
-"go directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:84
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Die drukkers op hierdie rekenaar is beskikbaar aan ander rekenaars"
-
-#: printer/printerdrake.pm:89
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Vind beskikbare drukkers op eksterne rekenaars outomaties"
-
-#: printer/printerdrake.pm:94
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Deel drukkers op rekenaars/netwerke:"
-
-#: printer/printerdrake.pm:96
-#, c-format
-msgid "Custom configuration"
-msgstr "Aanpas-konfigurasie"
-
-#: printer/printerdrake.pm:101 standalone/scannerdrake:610
-#: standalone/scannerdrake:627
-#, c-format
-msgid "No remote machines"
-msgstr "Geen eksterne masjiene"
-
-#: printer/printerdrake.pm:112
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Bykomende CUPS-bedieners: "
-
-#: printer/printerdrake.pm:119
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"Om toegang tot eksterne CUPS-bedieners in u plaaslike netwerk te bekom, kies "
-"die \"Vind beskikbare drukkers op eksterne rekenaars outomaties\" opsie. die "
-"CUPS-bedieners sal u rekenaar outomaties verwittig oor hulle drukkers. Al "
-"die drukkers wat tans bekend is aan u rekenaar sal in \"Eksterne drukkers\" "
-"gelys wees (in Printerdrake). Indien u CUPS-bediener(s) nie op die plaaslike "
-"netwerk is nie, sal u self die IP adres(se) en ook opsioneel hulle poort(e) "
-"moet voorsien, om die inligting oor hulle drukkers te verkry."
-
-#: printer/printerdrake.pm:127
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Japanese teks-drukmodus"
-
-#: printer/printerdrake.pm:128
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in Japanese language. Only "
-"use this function if you really want to print text in Japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print Japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Deur hierdie keuse kan u standaard tekslêers in japanees druk. Kies dit "
-"SLEGS indien u japanese tekslêers wil druk, indien dit geaktiveer is kan u "
-"nie geaksentueerde karakters in latynse lettertipes druk nie, u sal ook nie "
-"die kantlyne of karaktergrottes kan verstel nie. Die verstelling affekteer "
-"slegs plaaslike drukkers. Indien u japanese teks op 'n eksterne drukker wil "
-"druk, moet u dit op daardie drukker se rekenaar aktiveer."
-
-#: printer/printerdrake.pm:135
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Outomatiese korreksie van CUPS konfigurasie"
-
-#: printer/printerdrake.pm:137
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Indien hierdie opsie gekies is, sal dit elke keer wanneer CUPS begin, "
-"verseker dat:\n"
-"\n"
-"- indien LPD/LPRng geïnstalleer is, CUPS nie die '/etc/printcap' lêer\n"
-" sal vernietig nie.\n"
-"\n"
-"- indien '/etc/cups/cupsd.conf' ontbreek, dit geskep sal word.\n"
-"\n"
-"- indien inligting oor die drukker uitgesaai word, die bediener se naam nie\n"
-"\"localhost\" sal wees nie.\n"
-"\n"
-"Indien sommige van hierdie punte probleme vir u mag skep, moet nie die "
-"opsie\n"
-"kies nie , maar dit in gedagte hou."
-
-#: printer/printerdrake.pm:161 printer/printerdrake.pm:236
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Deel van plaaslike drukkers"
-
-#: printer/printerdrake.pm:162
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-"Hierdie is die rekenaars en netwerke waarop die plaaslik-gekoppelde drukker"
-"(s) beskikbaar behoort te wees."
-
-#: printer/printerdrake.pm:173
-#, c-format
-msgid "Add host/network"
-msgstr "Voeg rekenaar/netwerk by"
-
-#: printer/printerdrake.pm:179
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Redigeer gekose rekenaar/netwerk"
-
-#: printer/printerdrake.pm:188
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Verwyder gekose rekenaar/netwerk"
-
-#: printer/printerdrake.pm:219 printer/printerdrake.pm:229
-#: printer/printerdrake.pm:241 printer/printerdrake.pm:248
-#: printer/printerdrake.pm:279 printer/printerdrake.pm:297
-#, c-format
-msgid "IP address of host/network:"
-msgstr "IP-adres van rekenaar/netwerk"
-
-#: printer/printerdrake.pm:237
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr ""
-"Kies die netwerk of rekenaar waarop die plaaslike drukkers beskikbaar\n"
-"gestel moet word:"
-
-#: printer/printerdrake.pm:244
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Rekenaar/netwerk se IP uitstaande."
-
-#: printer/printerdrake.pm:252
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "Die voorsiende rekenaar/netwerk-IP is foutief\n"
-
-#: printer/printerdrake.pm:253 printer/printerdrake.pm:429
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Voorbeelde van korrekte IPs:\n"
-
-#: printer/printerdrake.pm:277
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr ""
-"Die rekenaarnaam/netwerk is alreeds gelys, en kan nie weer bygevoeg\n"
-"word nie.\n"
-
-#
-#: printer/printerdrake.pm:346 printer/printerdrake.pm:416
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Verkry toegang na eksterne CUPS-bedieners"
-
-#: printer/printerdrake.pm:347
-#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
-"Voeg die CUPS-bedieners, wie se drukkers u wil gebruik, hier by. U hoef dit "
-"slegs te doen indien die bedieners nie hulle drukkers se inligting uitsaai "
-"oor die plaaslike netwerk nie."
-
-#: printer/printerdrake.pm:358
-#, c-format
-msgid "Add server"
-msgstr "Voeg bediener by"
-
-#: printer/printerdrake.pm:364
-#, c-format
-msgid "Edit selected server"
-msgstr "Redigeer gekose bediener"
-
-#: printer/printerdrake.pm:373
-#, c-format
-msgid "Remove selected server"
-msgstr "Verwyder gekose bediener"
-
-#: printer/printerdrake.pm:417
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-"Voorsien die IP-adres en poort, van die rekenaar, wie se\n"
-"drukkers u wil gebruik."
-
-#: printer/printerdrake.pm:418
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "Indien geen poort verskaf word nie, sal 631 gebruik word."
-
-#: printer/printerdrake.pm:422
-#, c-format
-msgid "Server IP missing!"
-msgstr "Bediener se IPontbreek!"
-
-#: printer/printerdrake.pm:428
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Die voorsiende IP is nie reg nie.\n"
-
-#: printer/printerdrake.pm:440 printer/printerdrake.pm:2133
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Die poortnommer moet 'n heeltal wees."
-
-#: printer/printerdrake.pm:451
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "Jammer, hierdie bediener is reeds deel van die lys.\n"
-
-#: printer/printerdrake.pm:462 printer/printerdrake.pm:2160
-#: standalone/drakups:249 standalone/harddrake2:52
-#, c-format
-msgid "Port"
-msgstr "Poort"
-
-#
-#: printer/printerdrake.pm:495 printer/printerdrake.pm:511
-#: printer/printerdrake.pm:526 printer/printerdrake.pm:530
-#: printer/printerdrake.pm:536
-#, fuzzy, c-format
-msgid "On, Name or IP of remote server:"
-msgstr "Eksterne LPD-drukker"
-
-#: printer/printerdrake.pm:514 printer/printerdrake.pm:4551
-#: printer/printerdrake.pm:4617
-#, fuzzy, c-format
-msgid "CUPS server name or IP address missing."
-msgstr "Rekenaar/netwerk se IP uitstaande."
-
-#: printer/printerdrake.pm:566 printer/printerdrake.pm:586
-#: printer/printerdrake.pm:811 printer/printerdrake.pm:880
-#: printer/printerdrake.pm:901 printer/printerdrake.pm:927
-#: printer/printerdrake.pm:1023 printer/printerdrake.pm:1065
-#: printer/printerdrake.pm:1075 printer/printerdrake.pm:1110
-#: printer/printerdrake.pm:2220 printer/printerdrake.pm:2490
-#: printer/printerdrake.pm:2524 printer/printerdrake.pm:2575
-#: printer/printerdrake.pm:2582 printer/printerdrake.pm:2621
-#: printer/printerdrake.pm:2663 printer/printerdrake.pm:2700
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2984
-#: printer/printerdrake.pm:2989 printer/printerdrake.pm:3137
-#: printer/printerdrake.pm:3248 printer/printerdrake.pm:3862
-#: printer/printerdrake.pm:3929 printer/printerdrake.pm:3978
-#: printer/printerdrake.pm:3981 printer/printerdrake.pm:4091
-#: printer/printerdrake.pm:4149 printer/printerdrake.pm:4221
-#: printer/printerdrake.pm:4242 printer/printerdrake.pm:4252
-#: printer/printerdrake.pm:4342 printer/printerdrake.pm:4437
-#: printer/printerdrake.pm:4443 printer/printerdrake.pm:4471
-#: printer/printerdrake.pm:4578 printer/printerdrake.pm:4687
-#: printer/printerdrake.pm:4707 printer/printerdrake.pm:4716
-#: printer/printerdrake.pm:4731 printer/printerdrake.pm:4932
-#: printer/printerdrake.pm:5407 printer/printerdrake.pm:5490
-#: standalone/printerdrake:75 standalone/printerdrake:590
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: printer/printerdrake.pm:567 printer/printerdrake.pm:4150
-#: printer/printerdrake.pm:4688
-#, c-format
-msgid "Reading printer data..."
-msgstr "Drukkerdata word gelees..."
-
-#: printer/printerdrake.pm:587
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "Herbegin CUPS..."
-
-#: printer/printerdrake.pm:614
-#, c-format
-msgid ""
-"Allow pop-up windows, printer setup and package installation may be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:616
-#, c-format
-msgid ""
-"No pop-up windows, printer setup and package installation cannot be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:622
-#, fuzzy, c-format
-msgid "Printer auto administration"
-msgstr "Outobespeuring van drukkers"
-
-#: printer/printerdrake.pm:623
-#, c-format
-msgid ""
-"Here you can configure printer administration tasks which should be done "
-"automatically."
-msgstr ""
-
-#: printer/printerdrake.pm:626
-#, fuzzy, c-format
-msgid "Do automatic configuration of new printers"
-msgstr "Konfigurasie van eksterne drukker"
-
-#: printer/printerdrake.pm:627 printer/printerdrake.pm:641
-#, fuzzy, c-format
-msgid "when a USB printer is connected and turned on"
-msgstr " (Maak seker dat alle drukkers gekoppel en aangeskakel is).\n"
-
-#: printer/printerdrake.pm:630
-#, fuzzy, c-format
-msgid "when Printerdrake is started"
-msgstr "Hierdie partisie se grootte kan nie verstel word nie"
-
-#: printer/printerdrake.pm:634
-#, c-format
-msgid "Mode for automatic printer setup:"
-msgstr ""
-
-#: printer/printerdrake.pm:640
-#, fuzzy, c-format
-msgid "Re-enable disabled printers"
-msgstr "Beskikbare drukkers"
-
-#: printer/printerdrake.pm:644
-#, fuzzy, c-format
-msgid "when the printing system is started"
-msgstr "Verander die drukkerstelsel"
-
-#: printer/printerdrake.pm:680
-#, fuzzy, c-format
-msgid "Communication error handling for the printer \"%s\""
-msgstr "Drukwerk vir drukker \"%s\""
-
-#: printer/printerdrake.pm:682
-#, c-format
-msgid ""
-"Here you can configure how errors during the communication between your "
-"computer and the printer \"%s\" should be handled (for example if the "
-"printer is not turned on)."
-msgstr ""
-
-#: printer/printerdrake.pm:686
-#, fuzzy, c-format
-msgid "The number of retries should be an integer number of at least 1!"
-msgstr "Die poortnommer moet 'n heeltal wees."
-
-#: printer/printerdrake.pm:690
-#, fuzzy, c-format
-msgid "The delay between retries should be a positive integer number!"
-msgstr "Opsie %s moet 'n heeltal wees!"
-
-#: printer/printerdrake.pm:701
-#, fuzzy, c-format
-msgid "Do not disable the printer"
-msgstr "Versper Bediener"
-
-#: printer/printerdrake.pm:704
-#, c-format
-msgid "Retry infinitely often"
-msgstr ""
-
-#: printer/printerdrake.pm:707
-#, c-format
-msgid "Number of retries"
-msgstr "Nommer van herprobeer:"
-
-#: printer/printerdrake.pm:712
-#, c-format
-msgid "Delay between retries (in sec)"
-msgstr ""
-
-#: printer/printerdrake.pm:745 printer/printerdrake.pm:765
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Kies drukkerkonneksie"
-
-#: printer/printerdrake.pm:746
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Hoe is die drukker gekoppel?"
-
-#: printer/printerdrake.pm:748
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Met 'n eksterne CUPS-bediener, hoef u glad nie 'n drukker hier op te stel "
-"nie; drukkers word outomaties bespeur."
-
-#: printer/printerdrake.pm:751 printer/printerdrake.pm:4934
-#, c-format
-msgid ""
-"\n"
-"WARNING: No local network connection active, remote printers can neither be "
-"detected nor tested!"
-msgstr ""
-"\n"
-"PASOP: Daar is geen plaaslike netwerkkonneksie aktief nie. Netwerk drukkers "
-"kan nie opgespoor of getoets word nie!"
-
-#: printer/printerdrake.pm:758
-#, fuzzy, c-format
-msgid ""
-"Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"
-msgstr "Drukker-outospeur ( Plaaslik, TCP/Sok, en SMB-drukkers)"
-
-#: printer/printerdrake.pm:760
-#, c-format
-msgid "Modify timeout for network printer auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:766
-#, c-format
-msgid "Enter the timeout for network printer auto-detection (in msec) here. "
-msgstr ""
-
-#: printer/printerdrake.pm:768
-#, c-format
-msgid ""
-"The longer you choose the timeout, the more reliable the detections of "
-"network printers will be, but the scan can take longer then, especially if "
-"there are many machines with local firewalls in the network. "
-msgstr ""
-
-#: printer/printerdrake.pm:772
-#, fuzzy, c-format
-msgid "The timeout must be a positive integer number!"
-msgstr "Opsie %s moet 'n heeltal wees!"
-
-#
-#: printer/printerdrake.pm:811
-#, c-format
-msgid "Checking your system..."
-msgstr "Deursoek u rekenaar..."
-
-#: printer/printerdrake.pm:829
-#, c-format
-msgid "and one unknown printer"
-msgstr "en een onbekende drukker"
-
-#: printer/printerdrake.pm:831
-#, c-format
-msgid "and %d unknown printers"
-msgstr "en %d onbekende drukkers"
-
-#: printer/printerdrake.pm:835
-#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Die volgende drukkers\n"
-"\n"
-"%s%s\n"
-"is direk aan u rekenaar gekoppel"
-
-#: printer/printerdrake.pm:837
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Hierdie betrokke drukker\n"
-"\n"
-"%s%s\n"
-"is direk aan u rekenaar gekoppel."
-
-#: printer/printerdrake.pm:838
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-"Die volgende drukker\n"
-"\n"
-"%s%s\n"
-"is direk aan u rekenaar gekoppel"
-
-#: printer/printerdrake.pm:842
-#, c-format
-msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
-"\n"
-"Daar is een onbekende drukker wat direk aan u rekenaar gekoppel is"
-
-#: printer/printerdrake.pm:843
-#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
-"\n"
-"Daar is %d onbekende drukkers direk aan u rekenaar gekoppel"
-
-#: printer/printerdrake.pm:846
-#, c-format
-msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "Geen drukkers te vinde wat direk aan u rekenaar gekoppel is nie"
-
-#: printer/printerdrake.pm:849
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr " (Maak seker dat alle drukkers gekoppel en aangeskakel is).\n"
-
-#: printer/printerdrake.pm:862
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
-"Wil u drukwerk toelaat op bogenoemde drukkers, of op drukkers in u plaaslike "
-"netwerk?\n"
-
-#: printer/printerdrake.pm:863
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Wil u drukwerk op drukkers in die plaaslike netwerk toelaat?\n"
-
-#: printer/printerdrake.pm:865
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Wil u drukwerk aktiveer op bogenoemde drukkers?\n"
-
-#: printer/printerdrake.pm:866
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Is u seker dat u drukwerk op hierdie rekenaar wil opstel?\n"
-
-#: printer/printerdrake.pm:867
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
-"NEEM KENNIS: Afhangende van die model drukker en die drukkerstelsel wat u "
-"gaan gebruik, kan tot %d MB ekstra sagteware geïnstalleer word."
-
-#: printer/printerdrake.pm:884
-#, c-format
-msgid "Do not setup printer automatically now, and never do it again"
-msgstr ""
-
-#: printer/printerdrake.pm:928
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Opsoek na nuwe drukkers..."
-
-#: printer/printerdrake.pm:976
-#, c-format
-msgid "Do not setup printer automatically again"
-msgstr ""
-
-#: printer/printerdrake.pm:983
-#, fuzzy, c-format
-msgid "New printers found"
-msgstr "Geen drukker gevind nie"
-
-#: printer/printerdrake.pm:984
-#, fuzzy, c-format
-msgid "New printer found"
-msgstr "Geen drukker gevind nie"
-
-#: printer/printerdrake.pm:986
-#, c-format
-msgid ""
-"The following new printers were found and Printerdrake can automatically set "
-"them up for you. If you do not want to have all of them set up, unselect the "
-"ones which should be skipped, or click \"Cancel\" to set up none of them.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:987
-#, c-format
-msgid ""
-"The following new printer was found and printerdrake can automatically set "
-"it up for you. If you do not want to have it set up, unselect it, or click "
-"\"Cancel\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:988
-#, c-format
-msgid ""
-"Note that for certain printer models additional packages need to be "
-"installed. So keep your installation media handy.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1024 printer/printerdrake.pm:1066
-#, fuzzy, c-format
-msgid "Configuring printer on %s..."
-msgstr "Konfigureer drukker \"%s\" ..."
-
-#: printer/printerdrake.pm:1049
-#, c-format
-msgid "("
-msgstr "("
-
-#: printer/printerdrake.pm:1050
-#, c-format
-msgid " on "
-msgstr " on "
-
-#: printer/printerdrake.pm:1051 standalone/scannerdrake:137
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: printer/printerdrake.pm:1056 printer/printerdrake.pm:3149
-#, c-format
-msgid "Printer model selection"
-msgstr "Drukkermodelkeuse"
-
-#: printer/printerdrake.pm:1057 printer/printerdrake.pm:3150
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Oor watter tipe drukker beskik u?"
-
-#: printer/printerdrake.pm:1058
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-"\n"
-"\n"
-"Printerdrake kon nie u drukker (%s) se model bepaal nie. Kies asseblief die "
-"korrekte model vanaf die lys."
-
-#: printer/printerdrake.pm:1061 printer/printerdrake.pm:3155
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Indien u drukker nie gelys is nie, kies 'n versoenbare (verwys na u drukker "
-"se handleiding) of 'n soortgelyke een."
-
-#: printer/printerdrake.pm:1076 printer/printerdrake.pm:4708
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Konfigureer drukker \"%s\" ..."
-
-#: printer/printerdrake.pm:1111
-#, c-format
-msgid ""
-"Now you have turned off automatic printer setup.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1112
-#, c-format
-msgid ""
-"You can turn it back on again by choosing \"%s\" -> \"%s\" in Printerdrake's "
-"main menu. "
-msgstr ""
-
-#: printer/printerdrake.pm:1112 printer/printerdrake.pm:4984
-#, fuzzy, c-format
-msgid "Configure Auto Administration"
-msgstr "Eksterne-administrasie"
-
-#: printer/printerdrake.pm:1113
-#, c-format
-msgid ""
-"There you can also choose in which situation automatic printer setup is done "
-"(On Printerdrake startup, on printing system startup, when connecting a new "
-"USB printer)."
-msgstr ""
-
-#: printer/printerdrake.pm:1261 printer/printerdrake.pm:1273
-#: printer/printerdrake.pm:1380 printer/printerdrake.pm:2401
-#: printer/printerdrake.pm:2460 printer/printerdrake.pm:2556
-#: printer/printerdrake.pm:4951 printer/printerdrake.pm:5138
-#, c-format
-msgid "Add a new printer"
-msgstr "Voeg drukker by"
-
-#: printer/printerdrake.pm:1262
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Welkom by die 'Printer Setup Wizard'\n"
-"\n"
-"Hierdie assistent help met die installasie van plaaslike en eksterne "
-"drukkers wat vanaf hierdie en ander masjiene gebruik gaan word\n"
-"\n"
-"Dit sal vir die nodige inligting vra om die drukker op te stel, dit gee u "
-"toegang tot alle beskikbare drywers, drywer opsies en konneksie tipes."
-
-#: printer/printerdrake.pm:1275
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected. Also your network printer(s) and your Windows "
-"machines must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you do not "
-"need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Welkom by die \"Printer Setup Wizard\"\n"
-"\n"
-"Hierdie wysgeer sal u help op u drukker(s) op te stel, hetsy hulle direk aan "
-"die rekenaar, direk aan die netwerk, of aan 'n eksterne Windows rekenaar\n"
-"gekoppel is.\n"
-"\n"
-"Maak tog seker die drukker(s) is reg gekoppel en aangeskakel, sodat "
-"outospeur sy werk reg kan doen. Maak ook seker u netwerkdrukker(s) en "
-"Windows drukker bedieners aangeskakel en gekonnekteer is.\n"
-"\n"
-"Let ook tog dat autospeur van drukkers oor die netwerk langer neem as die "
-"outospeur van plaaslike drukkers. U kan gerus die outospeur van netwerk en/"
-"of Windows-drukker-bedieners versper indien u dit nie gaan gebruik nie.\n"
-"\n"
-"Klik op \"Volgende\" sodra u gereed is, of op \"Kanselleer\" indien u NIE "
-"nou enige drukkers wil opstel NIE."
-
-#: printer/printerdrake.pm:1284
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Welkom by die 'Printer Setup Wizard'\n"
-"\n"
-"\n"
-"Hierdie wysgeer sal u help op u drukker(s), wat aan u rekenaar gekoppel is, "
-"op te stel, \n"
-"Maak tog seker die drukker(s) is reg gekoppel en aangeskakel, sodat "
-"outospeur sy werk reg kan doen. \n"
-"Klik op \"Volgende\" sodra u gereed is, of op \"Kanselleer\" indien u nou "
-"enige drukkers wil opstel nie."
-
-#: printer/printerdrake.pm:1292
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you do not need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Welkom by die \"Printer Setup Wizard\"\n"
-"\n"
-"Hierdie wysgeer sal u help op u drukker(s) op te stel, hetsy hulle direk aan "
-"die rekenaar ,direk aan die netwerk, of aan 'n eksterne Windows rekenaar\n"
-"gekoppel is.\n"
-"\n"
-"Maak tog seker die drukker(s) is reg gekoppel en aangeskakel, sodat "
-"outospeur sy werk reg kan doen. Maak ook seker u netwerkdrukker(s) en "
-"Windows drukker bedieners aangeskakel en gekonnekteer is.\n"
-"\n"
-"Let ook tog dat autospeur van drukkers oor die netwerk langer neem as die "
-"outospeur van plaaslike drukkers. U kan gerus die outospeur van netwerk en/"
-"of Windows drukker bedieners versper indien u dit nie gaan gebruik nie.\n"
-"\n"
-"Klik op \"Volgende\" sodra u gereed is, of op \"Kanselleer\" indien u nou "
-"enige drukkers wil opstel nie."
-
-#: printer/printerdrake.pm:1301
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Welkom by die 'Printer Setup Wizard'\n"
-"\n"
-"\n"
-"Hierdie wysgeer sal u help op u drukker(s), wat aan u rekenaar gekoppel is, "
-"op te stel, \n"
-"Maak tog seker die drukker(s) is reg gekoppel en aangeskakel, sodat "
-"outospeur sy werk reg kan doen. \n"
-"Klik op \"Volgende\" sodra u gereed is, of op \"Kanselleer\" indien u nou "
-"enige drukkers wil opstel nie."
-
-#
-#: printer/printerdrake.pm:1352
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Outospeur vir plaaslike drukkers"
-
-#: printer/printerdrake.pm:1355
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Outospeur drukkers wat direk aan die LAN verbind is"
-
-#: printer/printerdrake.pm:1358
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr "Outospeur drukkers wat aan Microsoft Windows rekenaars gekoppel is"
-
-#: printer/printerdrake.pm:1361
-#, fuzzy, c-format
-msgid "No auto-detection"
-msgstr "Gebruik outospeuring"
-
-#: printer/printerdrake.pm:1381
-#, c-format
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the %s Control Center."
-msgstr ""
-"\n"
-"Geluk, u drukker is nou geïnstalleer en gekonfigureer!\n"
-"\n"
-"U kan druk deur die \"Print\"-opdrag van u program (gewoonlik in die \"File"
-"\"-kieslys)te gebruik.\n"
-"\n"
-"Indien u 'n drukker wil byvoeg, sy naam , of die opsies wil verander, kies "
-"\"Drukker\" in die \"Hardeware\" gedeelte van die '%s Control Center'."
-
-#: printer/printerdrake.pm:1417 printer/printerdrake.pm:1641
-#: printer/printerdrake.pm:1704 printer/printerdrake.pm:1796
-#: printer/printerdrake.pm:1934 printer/printerdrake.pm:2010
-#: printer/printerdrake.pm:2177 printer/printerdrake.pm:2268
-#: printer/printerdrake.pm:2277 printer/printerdrake.pm:2286
-#: printer/printerdrake.pm:2297 printer/printerdrake.pm:2496
-#: printer/printerdrake.pm:2633
-#, fuzzy, c-format
-msgid "Could not install the %s packages!"
-msgstr "Installeer pakket %s"
-
-#: printer/printerdrake.pm:1419
-#, c-format
-msgid "Skipping Windows/SMB server auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:1425 printer/printerdrake.pm:1564
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Outobespeuring van drukkers"
-
-#: printer/printerdrake.pm:1425
-#, c-format
-msgid "Detecting devices..."
-msgstr "Toestel word afgetas..."
-
-#: printer/printerdrake.pm:1451
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", netwerkdrukker \"%s\", poort %s"
-
-#: printer/printerdrake.pm:1454
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", drukker \"%s\" op SMB/Windows bediener \"%s\""
-
-#: printer/printerdrake.pm:1458
-#, c-format
-msgid "Detected %s"
-msgstr "%s bespeur"
-
-#: printer/printerdrake.pm:1463 printer/printerdrake.pm:1490
-#: printer/printerdrake.pm:1505
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Drukker op parallele poort #%s"
-
-#
-#: printer/printerdrake.pm:1469
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Netwerkdrukker \"%s\", poort %s"
-
-#: printer/printerdrake.pm:1472
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Drukker \"%s\" op SMB/Windows-bediener \"%s\""
-
-#: printer/printerdrake.pm:1550
-#, c-format
-msgid "Local Printer"
-msgstr "Plaaslike Drukker"
-
-#: printer/printerdrake.pm:1551
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Geen plaaslike drukkers bespeur.Om self een te spesifiseer, voorsien 'n "
-"toestelnaam/lêernaam (Parallelle poorte: /dev/lp0,/dev/lp1,..., gelyk aan "
-"LPT1:,LPT2:,...,1e USB-drukker: /dev/usb/lp0, 2de USB- drukker: /dev/usb/"
-"lp1,...)."
-
-#: printer/printerdrake.pm:1555
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "U moet 'n toestel- of lêernaam voorsien!"
-
-#: printer/printerdrake.pm:1565
-#, c-format
-msgid "No printer found!"
-msgstr "Geen drukker gevind nie"
-
-#: printer/printerdrake.pm:1573
-#, c-format
-msgid "Local Printers"
-msgstr "Plaaslike Drukkers"
-
-#: printer/printerdrake.pm:1574
-#, c-format
-msgid "Available printers"
-msgstr "Beskikbare drukkers"
-
-#
-#: printer/printerdrake.pm:1578 printer/printerdrake.pm:1587
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Die volgende drukker is outomaties opgespoor. "
-
-#: printer/printerdrake.pm:1580
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
-"Indien u nie hierde een wil konfigureer nie, voorsien dan 'n toestel-/"
-"lêernaam aan die toevoerlyn."
-
-#: printer/printerdrake.pm:1581
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-"Alternatiewelik, kan u 'n toestelnaam/lêernaam voorsien op die toevoerlyn"
-
-#: printer/printerdrake.pm:1582 printer/printerdrake.pm:1591
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Hier is 'n lys van aouto-opgespoorde drukkers. "
-
-#: printer/printerdrake.pm:1584
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
-msgstr ""
-"Kies asseblief die drukker wat u wil opstel of voorsien 'n toestel-/lêer-"
-"naam "
-
-#: printer/printerdrake.pm:1585
-#, c-format
-msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-"Kies asseblief die drukker wat drukwerk moet ontvang of voorsien 'n "
-"toestelnaam / lêernaam."
-
-#: printer/printerdrake.pm:1589
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Die opstel van u drukker is ten volle outomaties. Indien u drukker nie "
-"korrek bespeur is nie, of u moonlik 'n pasmaak konfigurasie verkies, gebruik "
-"\"Selfdoen konfigurasie\"."
-
-#: printer/printerdrake.pm:1590
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Huidiglik is daar geen alternatiwe moontlikheid beskikbaar nie"
-
-#: printer/printerdrake.pm:1593
-#, c-format
-msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
-msgstr ""
-"Kies asseblief die drukker om op te stel.Die opstel van u drukker is ten "
-"volle outomaties. Indien u drukker nie korrek bespeur is nie of u moonlik "
-"'n pasmaak konfigurasie verkies, gebruik \"Selfdoen konfigurasie\""
-
-#: printer/printerdrake.pm:1594
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Kies asseblief die drukker na wie die drukwerk gestuur moet word."
-
-#: printer/printerdrake.pm:1596
-#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Kies asseblief die poort waaraan u drukker gekoppel is of voorsien 'n "
-"toestelnaam / lêernaam."
-
-#: printer/printerdrake.pm:1597
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Kies asseblief die poort waaraan u drukker gekoppel is."
-
-#: printer/printerdrake.pm:1599
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Parallele Poorte: /dev/lp0, /dev/lp1, ..., gelykstaande aan LPT1:, "
-"LPT2:, ..., 1ste USB-drukker: /dev/usb/lp0, 2de USB-drukker: /dev/usb/"
-"lp1, ...)."
-
-#: printer/printerdrake.pm:1603
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "U moet 'n drukker / toestel spesifiseer!"
-
-#: printer/printerdrake.pm:1643 printer/printerdrake.pm:1706
-#: printer/printerdrake.pm:1798 printer/printerdrake.pm:1936
-#: printer/printerdrake.pm:2012 printer/printerdrake.pm:2179
-#: printer/printerdrake.pm:2270 printer/printerdrake.pm:2279
-#: printer/printerdrake.pm:2288 printer/printerdrake.pm:2299
-#, fuzzy, c-format
-msgid "Aborting"
-msgstr "Staak"
-
-#: printer/printerdrake.pm:1679
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Eksterne lpd drukkeropsies"
-
-#: printer/printerdrake.pm:1680
-#, c-format
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Om 'n eksterne lpd drukker te gebruik, moet die naam van die "
-"drukkkerbediener en die naam van die drukkertou voorsien word."
-
-#: printer/printerdrake.pm:1681
-#, c-format
-msgid "Remote host name"
-msgstr "Eksterne bedienernaam"
-
-#
-#: printer/printerdrake.pm:1682
-#, c-format
-msgid "Remote printer name"
-msgstr "Eksterne drukkernaam"
-
-#: printer/printerdrake.pm:1685
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Eksterne bedienernaam ontbreek!"
-
-#: printer/printerdrake.pm:1689
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Eksterne drukkernaam ontbreek!"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318 standalone/drakTermServ:475
-#: standalone/drakTermServ:807 standalone/drakTermServ:823
-#: standalone/drakTermServ:1653 standalone/drakTermServ:1662
-#: standalone/drakTermServ:1676 standalone/drakbackup:512
-#: standalone/drakbackup:618 standalone/drakbackup:653
-#: standalone/drakbackup:754 standalone/draknfs:203
-#: standalone/draksambashare:627 standalone/draksambashare:794
-#: standalone/harddrake2:275
-#, c-format
-msgid "Information"
-msgstr "Inligting"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Opgespoorde model: %s %s"
-
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Scanning network..."
-msgstr "Deursoek die netwerk..."
-
-#: printer/printerdrake.pm:1814 printer/printerdrake.pm:1835
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", drukker \"%s\" op bediener \"%s\""
-
-#: printer/printerdrake.pm:1817 printer/printerdrake.pm:1838
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Drukker \"%s\" op bediener \"%s\""
-
-#: printer/printerdrake.pm:1859
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) drukkeropsies"
-
-#: printer/printerdrake.pm:1860
-#, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Indien u drukwerk na 'n SMB drukker wil stuur, voorsien asseblief die "
-"volgende: SMB-rekenaarnaam ( Let dat dit mag verskil van die TCP/IP-"
-"rekenaarnaam) en moontlik die IP-adres van die bediener, die deelnaam van "
-"die drukker, toepaslike gebruikernaam, wagwoord, en werkgroep."
-
-#: printer/printerdrake.pm:1861
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-" Indien die verlangde drukker gespeur is, kies dit eenvoudig uit die lys en "
-"voorsien die gebruikernaam, wagwoord, en/of werkgroep indien benodig."
-
-#: printer/printerdrake.pm:1863
-#, c-format
-msgid "SMB server host"
-msgstr "SMB-bedienernaam"
-
-#: printer/printerdrake.pm:1864
-#, c-format
-msgid "SMB server IP"
-msgstr "SMB-bediener se IP:"
-
-#: printer/printerdrake.pm:1865 standalone/draksambashare:67
-#, c-format
-msgid "Share name"
-msgstr "Naam van deelarea"
-
-#: printer/printerdrake.pm:1868
-#, c-format
-msgid "Workgroup"
-msgstr "Werkgroep:"
-
-#: printer/printerdrake.pm:1870
-#, c-format
-msgid "Auto-detected"
-msgstr "Outomaties Opgespoor"
-
-#: printer/printerdrake.pm:1880
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Óf die bedienernaam óf die bediener-IP moet verskaf word!"
-
-#: printer/printerdrake.pm:1884
-#, c-format
-msgid "Samba share name missing!"
-msgstr "SAMBA-deelnaam ontbreek!"
-
-#: printer/printerdrake.pm:1890
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "SEKURITEITS WAARSKUWING!"
-
-#: printer/printerdrake.pm:1891
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"U is besig om drukwerk na 'n Windows-gebruiker met 'n wagwoord op te stel. "
-"Daar is fout in Samba se argitektuur sodat hierdie wagwoord in sigbare teks "
-"op die instruksielyn geplaas word. Dit gebeur wanneer die Samba-kliënt "
-"drukwerk na die Windows-bediener stuur. Enige gebruiker kan dan daardie "
-"wagwoord sien, deur bv \"ps auxwww\" in te tik.\n"
-"\n"
-"Ons beveel een van die volgende alternatiewe aan ( bo en behalve dat u seker "
-"maak dat slegs masjiene op u plaaslike netwerk toegang na u Windows-bediener "
-"het, deur bv 'n vuurmuur op te stel):\n"
-"\n"
-"Gebruik 'n rekening sonder wagwoord op u Windows-bediener vir drukwerk daar "
-"is die \"GUEST\" of stel 'n aparte een op net vir drukwerk. Behou dan steeds "
-"wagwoord beskerming vir die ander.\n"
-"\n"
-"Sel die Windows-bediener so op, dat dit die drukker beskikbaar stel onder "
-"die LPD-protokol. Stel dan drukwerk op hierdie masjien op deur die \"%s\"-"
-"konneksie in Printerdrake te gebruik.\n"
-"\n"
-"Wie is Bernoldus Niemand?\n"
-"\n"
-
-#: printer/printerdrake.pm:1901
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Stel u Windows bediener so op dat dit die drukker beskikbaar stel onder die "
-"IPP-protokol en stel drukwerk vanaf die masjien op met die \"%s\" konneksie-"
-"tipe in Printerdrake.\n"
-"\n"
-
-#: printer/printerdrake.pm:1904
-#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-"Konnekteer u drukker aan 'n Linux bediener, en laat u Windows-rekenaars ook "
-"daardie bediener gebruik.\n"
-"\n"
-"Sal ons voortgaan?"
-
-#: printer/printerdrake.pm:1983
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "NetWare drukkeropsies"
-
-#: printer/printerdrake.pm:1984
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Om na 'n Netware drukker te druk, moet u die volgende voorsien: Netware "
-"rekenaarnaam (dis nie noodwendig dieselfde as die TCP/IP rekenaarnaam nie), "
-"asook die drukker se 'print queue' naam,en toepaslike gebruikernaam en "
-"wagwoord."
-
-#: printer/printerdrake.pm:1985
-#, c-format
-msgid "Printer Server"
-msgstr "Drukkerbediener"
-
-#: printer/printerdrake.pm:1986
-#, c-format
-msgid "Print Queue Name"
-msgstr "Drukkertou-naam"
-
-#: printer/printerdrake.pm:1991
-#, c-format
-msgid "NCP server name missing!"
-msgstr "NCP-bedienernaam ontbreek!"
-
-#: printer/printerdrake.pm:1995
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "NCP-tounaam ontbreek!"
-
-#: printer/printerdrake.pm:2076 printer/printerdrake.pm:2097
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", rekenaarnaam \"%s\", poort %s"
-
-#: printer/printerdrake.pm:2079 printer/printerdrake.pm:2100
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Rekenaar \"%s\", poort %s"
-
-#: printer/printerdrake.pm:2122
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/Sokdrukker-opsies"
-
-#: printer/printerdrake.pm:2124
-#, c-format
-msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
-msgstr ""
-"Kien een van die drukkers uit die lys, wat ge-outospeur is, of voorsien die "
-"rekenaarnaam of IP en die opsionele poort (verstek is 9100) in die toevoer-"
-"velde."
-
-#: printer/printerdrake.pm:2125
-#, c-format
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
-msgstr ""
-"Om aan 'n sokdrukker te konnekteer, moet u die rekenaarnaam van diedrukker "
-"voorsien en dalk ook 'n poortnommer voorsien.Met HP JetDirect-bedieners is "
-"die poortnommer gewoonlik 9100,maar dit mag anders wees met ander bedieners. "
-"Raadpleeg die handleidingwat saam met die hardeware gekom het."
-
-#: printer/printerdrake.pm:2129
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Drukkerbedienernaam of IP ontbreek!"
-
-#: printer/printerdrake.pm:2158
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Drukkernaam of IP"
-
-#: printer/printerdrake.pm:2221
-#, fuzzy, c-format
-msgid "Refreshing Device URI list..."
-msgstr "Drukkerdata word verfris..."
-
-#: printer/printerdrake.pm:2224 printer/printerdrake.pm:2226
-#, c-format
-msgid "Printer Device URI"
-msgstr "Drukkertoestel se URI"
-
-#: printer/printerdrake.pm:2225
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"U kan die URI om die drukker te bereik direk spesifiseer. Die URI moet in "
-"CUPS- of Foomatic-formaat wees. Nie alle URI-tipes word deur die "
-"spoelprogramme ondersteun nie."
-
-#: printer/printerdrake.pm:2249
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "'n Geldige URI moet verskaf word!"
-
-#: printer/printerdrake.pm:2354
-#, c-format
-msgid "Pipe into command"
-msgstr "Pyp drukstuk na program"
-
-#: printer/printerdrake.pm:2355
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-"Hier kan u enige instruksie spesifiseer waarna die drukwerk gepyp moet word "
-"instede van dit direk na die drukker te stuur."
-
-#: printer/printerdrake.pm:2356
-#, c-format
-msgid "Command line"
-msgstr "Instruksielyn"
-
-#: printer/printerdrake.pm:2360
-#, c-format
-msgid "A command line must be entered!"
-msgstr "'n Opdrag moet voorsien word!"
-
-#: printer/printerdrake.pm:2402
-#, c-format
-msgid "Your printer %s is currently connected %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2404 printer/printerdrake.pm:2411
-#, fuzzy, c-format
-msgid "to a parallel port"
-msgstr " op pallelle poort #%s"
-
-#: printer/printerdrake.pm:2405 printer/printerdrake.pm:2412
-#, c-format
-msgid "to the USB"
-msgstr ""
-
-#: printer/printerdrake.pm:2406 printer/printerdrake.pm:2413
-#, fuzzy, c-format
-msgid "via the network"
-msgstr "Netwerk op pad op"
-
-#: printer/printerdrake.pm:2407
-#, c-format
-msgid "This type of connection is currently not fully supported by HPLIP."
-msgstr ""
-
-#: printer/printerdrake.pm:2409
-#, c-format
-msgid "You get full HPLIP support for your device if you connect it "
-msgstr ""
-
-#: printer/printerdrake.pm:2415
-#, c-format
-msgid ""
-"You can now set up your device with HPLIP anyway (works in many cases), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "set it up without HPLIP (print-only), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, fuzzy, c-format
-msgid "or"
-msgstr "Uur"
-
-#: printer/printerdrake.pm:2417
-#, c-format
-msgid "cancel the setup (for example to reconnect your device)."
-msgstr ""
-
-#: printer/printerdrake.pm:2419
-#, c-format
-msgid ""
-"You can always revise your choice by clicking your printer's entry in the "
-"main window, "
-msgstr ""
-
-#: printer/printerdrake.pm:2420
-#, c-format
-msgid "clicking the \"%s\" button, "
-msgstr ""
-
-#. -PO: "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: printer/printerdrake.pm:2420 standalone/drakperm:124 standalone/drakups:300
-#: standalone/drakups:360 standalone/drakups:380 standalone/drakvpn:319
-#: standalone/drakvpn:680 standalone/printerdrake:245
-#, c-format
-msgid "Edit"
-msgstr "Redigeer"
-
-#: printer/printerdrake.pm:2421
-#, c-format
-msgid "and choosing \"%s\"."
-msgstr ""
-
-#: printer/printerdrake.pm:2421 printer/printerdrake.pm:5334
-#: printer/printerdrake.pm:5394
-#, c-format
-msgid "Printer connection type"
-msgstr "Drukkerkonneksie-tipe"
-
-#: printer/printerdrake.pm:2423 standalone/logdrake:408
-#, c-format
-msgid "What do you want to do?"
-msgstr "Wat wil u doen?"
-
-#: printer/printerdrake.pm:2424 printer/printerdrake.pm:2428
-#, c-format
-msgid "Set up with HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2425 printer/printerdrake.pm:2427
-#: printer/printerdrake.pm:2430
-#, c-format
-msgid "Set up without HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2461
-#, c-format
-msgid ""
-"On many HP printers there are special functions available, maintenance (ink "
-"level checking, nozzle cleaning. head alignment, ...) on all not too old "
-"inkjets, scanning on multi-function devices, and memory card access on "
-"printers with card readers. "
-msgstr ""
-
-#: printer/printerdrake.pm:2463
-#, c-format
-msgid ""
-"To access these extra functions on HP printers they must be set up with "
-"HPLIP (HP Linux Imaging and Printing). "
-msgstr ""
-
-#: printer/printerdrake.pm:2465
-#, c-format
-msgid "Do you want to use HPLIP (choose \"No\" for non-HP printers)? "
-msgstr ""
-
-#: printer/printerdrake.pm:2491
-#, c-format
-msgid "Installing %s package..."
-msgstr "Installeer %s pakket..."
-
-#: printer/printerdrake.pm:2491 printer/printerdrake.pm:2497
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2498
-#, c-format
-msgid "Only printing will be possible on the %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2513
-#, c-format
-msgid "Could not remove your old HPOJ configuration file %s for your %s! "
-msgstr ""
-
-#: printer/printerdrake.pm:2515
-#, c-format
-msgid "Please remove the file manually and restart HPOJ."
-msgstr ""
-
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "Checking device and configuring %s..."
-msgstr "Bekyk die toestel en konfigureer %s ..."
-
-#: printer/printerdrake.pm:2557
-#, fuzzy, c-format
-msgid "Which printer do you want to set up with HPLIP?"
-msgstr "Na watter sektor wil u skuif?"
-
-#: printer/printerdrake.pm:2576
-#, c-format
-msgid "HPLIP was not able to communicate with the chosen printer!"
-msgstr ""
-
-#: printer/printerdrake.pm:2577 printer/printerdrake.pm:2584
-#, fuzzy, c-format
-msgid "Setting up the printer without HPLIP..."
-msgstr "Laai USB drukker kernel module ...\n"
-
-#: printer/printerdrake.pm:2583
-#, c-format
-msgid ""
-"HPLIP did not find any local printers (Parallel, USB) which it supports!"
-msgstr ""
-
-#: printer/printerdrake.pm:2622
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "Installeer SANE pakkette..."
-
-#: printer/printerdrake.pm:2635
-#, c-format
-msgid "Scanning on the %s will not be possible."
-msgstr ""
-
-#: printer/printerdrake.pm:2650
-#, c-format
-msgid "Using and Maintaining your %s"
-msgstr ""
-
-#: printer/printerdrake.pm:2664
-#, fuzzy, c-format
-msgid "Configuring device..."
-msgstr "Konfigurasie in aabou..."
-
-#: printer/printerdrake.pm:2701
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Stel drukkerpoort tot CUPS se beskikking..."
-
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2985
-#: printer/printerdrake.pm:3138
-#, c-format
-msgid "Reading printer database..."
-msgstr "Drukkerdata word gelees..."
-
-#: printer/printerdrake.pm:2943
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Voorsien Drukkernaam en Opmerkings"
-
-#: printer/printerdrake.pm:2947 printer/printerdrake.pm:4206
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"Die drukkernaam mag slegs letters, syfers en die onderstreep-karakter bevat."
-
-#: printer/printerdrake.pm:2953 printer/printerdrake.pm:4211
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Drukker \"%s\" bestaan alreeds,\n"
-"Wil u werklik die konfigurasie oorskryf?"
-
-#: printer/printerdrake.pm:2960
-#, c-format
-msgid ""
-"The printer name \"%s\" has more than 12 characters which can make the "
-"printer unaccessible from Windows clients. Do you really want to use this "
-"name?"
-msgstr ""
-
-#: printer/printerdrake.pm:2969
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Elke drukker benodig naam (bv. lp). Die Beskrywing- en Liggingvelde is "
-"opsioneel. Hulle dien as inligting vir gebruikers."
-
-#: printer/printerdrake.pm:2970
-#, c-format
-msgid "Name of printer"
-msgstr "Drukkernaam"
-
-#: printer/printerdrake.pm:2971 standalone/drakconnect:592
-#: standalone/harddrake2:39 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Description"
-msgstr "Beskrywing"
-
-#: printer/printerdrake.pm:2972 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Location"
-msgstr "Ligging"
-
-#: printer/printerdrake.pm:2990
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Drukkerdatabasis word voorberei..."
-
-#
-#: printer/printerdrake.pm:3116
-#, c-format
-msgid "Your printer model"
-msgstr "U model drukker"
-
-#: printer/printerdrake.pm:3117
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"Printerdrake het die model wat dit deur outospeur bekom het vergelyk met die "
-"modelle in die drukker-databasis. Daarna is die beste eweknie gesoek. Die "
-"resultaat-drukker mag verkeerd wees, veral indien u drukker nie in die "
-"drukker-databasis gelys word nie. Maak dus seker dat die model korrek is en "
-"klik op \"Die model is korrek\", andersins moet u op \"Kies model self\" "
-"klik, om self u drukker te kan kies.\n"
-"\n"
-"Die model drukker wat 'Printerdrake' gevind het:\n"
-"\n"
-"%s"
-
-#: printer/printerdrake.pm:3122 printer/printerdrake.pm:3125
-#, c-format
-msgid "The model is correct"
-msgstr "Die model is korrek"
-
-#
-#: printer/printerdrake.pm:3123 printer/printerdrake.pm:3124
-#: printer/printerdrake.pm:3127
-#, c-format
-msgid "Select model manually"
-msgstr "Kies model self"
-
-#: printer/printerdrake.pm:3151
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
-msgstr ""
-"\n"
-"\n"
-"Maak tog seker dat 'Printerdrake' u drukker korrek bespeur het. Sou dit "
-"verkeerdelik bespeur was, of \"Onverwerkte (direkte) drukker\" verlig is, "
-"kies dan die korrekte een vanuit die lys."
-
-#: printer/printerdrake.pm:3170
-#, c-format
-msgid "Install a manufacturer-supplied PPD file"
-msgstr "Installeer 'n PPD-lêer van 'n vervaardiger."
-
-#: printer/printerdrake.pm:3202
-#, c-format
-msgid ""
-"Every PostScript printer is delivered with a PPD file which describes the "
-"printer's options and features."
-msgstr ""
-"Elke PostScript-drukker word gelewer met 'n PPD-lêer wat die drukker se "
-"opsies en dinge beskryf."
-
-#: printer/printerdrake.pm:3203
-#, c-format
-msgid ""
-"This file is usually somewhere on the CD with the Windows and Mac drivers "
-"delivered with the printer."
-msgstr ""
-"Hierdie lêer is gewoonlik iewers op die CD, saam met die Windows en Mac-"
-"drywers vir die drukker."
-
-#: printer/printerdrake.pm:3204
-#, c-format
-msgid "You can find the PPD files also on the manufacturer's web sites."
-msgstr "U behoort die PPD-lêers ook op die vervaardiger se webwerf vind."
-
-#: printer/printerdrake.pm:3205
-#, c-format
-msgid ""
-"If you have Windows installed on your machine, you can find the PPD file on "
-"your Windows partition, too."
-msgstr ""
-"Sou u Windows ook op die masjie geïnstalleer het, kan u ook daar loer vir "
-"die lêer."
-
-#: printer/printerdrake.pm:3206
-#, c-format
-msgid ""
-"Installing the printer's PPD file and using it when setting up the printer "
-"makes all options of the printer available which are provided by the "
-"printer's hardware"
-msgstr ""
-"Deur die drukker se PPD-lêer te installeer wanneer u die drukker opstel, sal "
-"dit al die opsies van die drukker se hardeware beskikbaar stel."
-
-#: printer/printerdrake.pm:3207
-#, c-format
-msgid ""
-"Here you can choose the PPD file to be installed on your machine, it will "
-"then be used for the setup of your printer."
-msgstr ""
-"Hier kan u die PPD-lêer kies om te installeer op die rekenaar. Dit sal dan "
-"gebruik word tydens die opstelling van die drukker."
-
-#: printer/printerdrake.pm:3209
-#, c-format
-msgid "Install PPD file from"
-msgstr "Installeer PPD-lêer vanaf"
-
-#: printer/printerdrake.pm:3212 printer/printerdrake.pm:3220
-#: standalone/scannerdrake:183 standalone/scannerdrake:192
-#: standalone/scannerdrake:242 standalone/scannerdrake:250
-#, c-format
-msgid "Floppy Disk"
-msgstr "Disket"
-
-#: printer/printerdrake.pm:3213 printer/printerdrake.pm:3222
-#: standalone/scannerdrake:184 standalone/scannerdrake:194
-#: standalone/scannerdrake:243 standalone/scannerdrake:252
-#, c-format
-msgid "Other place"
-msgstr "Ander plek"
-
-#: printer/printerdrake.pm:3228
-#, c-format
-msgid "Select PPD file"
-msgstr "Kies PPD-lêer"
-
-#: printer/printerdrake.pm:3232
-#, c-format
-msgid "The PPD file %s does not exist or is unreadable!"
-msgstr "Die PPD-lêer %s bestaan nie, of dis onleesbaar!"
-
-#: printer/printerdrake.pm:3238
-#, c-format
-msgid "The PPD file %s does not conform with the PPD specifications!"
-msgstr "Die PPD-lêer %s is nie volgens die standaarde nie!"
-
-#: printer/printerdrake.pm:3249
-#, c-format
-msgid "Installing PPD file..."
-msgstr "Installeer PPD-lêer..."
-
-#: printer/printerdrake.pm:3368
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "OKI windrukker-konfigurasie"
-
-#: printer/printerdrake.pm:3369
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"U stel nou 'n OKI laser-windrukker op. Hierdie drukkers\n"
-"gebruik 'n baie spesiale protokol vir kommunikasie en kan slegs korrek werk "
-"indien hulle aan die eerste parallelle poort gekoppel word. Sou u drukker "
-"tans elders gekoppel wees, skuif dit na die eerste parallele poort voordat u "
-"'n toetsbladsy druk. Dit is baie belangrik, anders sal die drukker nie reg "
-"werk nie, en die drywer sal u tipe konneksie ignoreer."
-
-#: printer/printerdrake.pm:3394 printer/printerdrake.pm:3424
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Lexmark inkjet konfigurasie"
-
-#: printer/printerdrake.pm:3395
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Lexmark se inkspuitdrukkers ondersteun slegs plaaslike drukkers, geen "
-"drukkers op eksterne rekenaars of drukkerbediener-boksies. Konnekteer "
-"asseblief die drukker plaaslik en konfigureer dit op daardie (plaaslike) "
-"masjien."
-
-#: printer/printerdrake.pm:3425
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-
-#: printer/printerdrake.pm:3435
-#, c-format
-msgid "Lexmark X125 configuration"
-msgstr "Lexmark X125 konfigurasie"
-
-#: printer/printerdrake.pm:3436
-#, fuzzy, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes. Please connect "
-"your printer to a local USB port or configure it on the machine where it is "
-"connected to."
-msgstr ""
-"Lexmark se inkspuitdrukkers ondersteun slegs plaaslike drukkers, geen "
-"drukkers op eksterne rekenaars of drukkerbediener-boksies. Konnekteer "
-"asseblief die drukker plaaslik en konfigureer dit op daardie (plaaslike) "
-"masjien."
-
-#: printer/printerdrake.pm:3458
-#, fuzzy, c-format
-msgid "Samsung ML/QL-85G configuration"
-msgstr "Klankkonfigurasie"
-
-#: printer/printerdrake.pm:3459 printer/printerdrake.pm:3486
-#, fuzzy, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected on the "
-"first parallel port, no printers on remote machines or print server boxes or "
-"on other parallel ports. Please connect your printer to the first parallel "
-"port or configure it on the machine where it is connected to."
-msgstr ""
-"Lexmark se inkspuitdrukkers ondersteun slegs plaaslike drukkers, geen "
-"drukkers op eksterne rekenaars of drukkerbediener-boksies. Konnekteer "
-"asseblief die drukker plaaslik en konfigureer dit op daardie (plaaslike) "
-"masjien."
-
-#: printer/printerdrake.pm:3485
-#, fuzzy, c-format
-msgid "Canon LBP-460/660 configuration"
-msgstr "Selfdoen TCP/IP-konfigurasie"
-
-#: printer/printerdrake.pm:3512
-#, fuzzy, c-format
-msgid "Canon LBP-810/1120 (CAPT) configuration"
-msgstr "Selfdoen TCP/IP-konfigurasie"
-
-#: printer/printerdrake.pm:3513
-#, fuzzy, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes or on the parallel "
-"port. Please connect your printer to the USB or configure it on the machine "
-"where it is directly connected to."
-msgstr ""
-"Lexmark se inkspuitdrukkers ondersteun slegs plaaslike drukkers, geen "
-"drukkers op eksterne rekenaars of drukkerbediener-boksies. Konnekteer "
-"asseblief die drukker plaaslik en konfigureer dit op daardie (plaaslike) "
-"masjien."
-
-#: printer/printerdrake.pm:3520
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "Laai Fermware (Firmware) Op vir HP LaserJet 1000"
-
-#: printer/printerdrake.pm:3670
-#, c-format
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Verstek verstellings van drukker\n"
-"\n"
-"Maak seker die volgende is korrek opgestel: 1.) bladsy grootte; 2.) ink tipe/"
-"drukmodus; 3.)hardeware verstellings van laserdrukkers (geheue, dupleks of "
-"nie, ekstra laaie). Let tog dat baie hoë kwaliteit/resolusie die spoed "
-"waarteen gedruk word aansienlik verminder."
-
-#: printer/printerdrake.pm:3795
-#, c-format
-msgid "Printer default settings"
-msgstr "Verstek verstellings van drukker"
-
-#: printer/printerdrake.pm:3802
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Opsie %s moet 'n heeltal wees!"
-
-#: printer/printerdrake.pm:3806
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Opsie %s moet 'n nommer wees!"
-
-#: printer/printerdrake.pm:3810
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Opsie %s is buite bereik!"
-
-#: printer/printerdrake.pm:3862
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Wil u hierdie drukker (\"%s\")\n"
-"die verstek drukker maak?"
-
-#: printer/printerdrake.pm:3878
-#, c-format
-msgid "Test pages"
-msgstr "Toetsbladsye"
-
-#: printer/printerdrake.pm:3879
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Kies asseblief watter toetsbladsye u wil druk.\n"
-"Aandag: die foto-toetsbladsy kan 'n tydjie duur om uit te druk, op "
-"laserdrukkers met te min geheue, mag dit moontlik nie eens werk nie. Dit is "
-"gewoonlik net nodig vir 'n normale toetsbladsy."
-
-#: printer/printerdrake.pm:3883
-#, c-format
-msgid "No test pages"
-msgstr "Geen toetsbladsye"
-
-#: printer/printerdrake.pm:3884
-#, c-format
-msgid "Print"
-msgstr "Druk"
-
-#: printer/printerdrake.pm:3909
-#, c-format
-msgid "Standard test page"
-msgstr "Standaard toetsbladsy"
-
-#: printer/printerdrake.pm:3912
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Alternatiewe toetsbladsy (Lettergrootte)"
-
-#: printer/printerdrake.pm:3915
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Alternatiewe toetsbladsy (A4)"
-
-#: printer/printerdrake.pm:3917
-#, c-format
-msgid "Photo test page"
-msgstr "Fototoetsbladsy"
-
-#: printer/printerdrake.pm:3930
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Toetsbladsy(e) word gedruk..."
-
-#: printer/printerdrake.pm:3950
-#, fuzzy, c-format
-msgid "Skipping photo test page."
-msgstr "Fototoetsbladsy"
-
-#: printer/printerdrake.pm:3967
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Toetsbladsy(e) is na die drukkerstelsel gestuur.\n"
-"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-"Drukstatus:\n"
-"%s\n"
-"\n"
-
-#: printer/printerdrake.pm:3971
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Toetsbladsy(e) is na die drukker gestuur.\n"
-"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-
-#: printer/printerdrake.pm:3981
-#, c-format
-msgid "Did it work properly?"
-msgstr "Het dit reg gewerk?"
-
-#: printer/printerdrake.pm:4005
-#, c-format
-msgid "Raw printer"
-msgstr "Onverwerkte (direkte) drukker"
-
-#: printer/printerdrake.pm:4027
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Sou u 'n lêer van die instruksielyn wil druk kan u of die instruksie \"%s "
-"<lêer>\" gebruik, of die grafiese program:\"xpp <lêer>\" of \"kprinter <lêer>"
-"\". Die grafiese programme vergemaklik die kies en verstel van 'n spesifieke "
-"drukker.\n"
-
-#: printer/printerdrake.pm:4029
-#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Hierdie opdragte kan u ook in die \"Printing command\" veld in die drukker-"
-"dialoogvensters van baie programme gebruik, maar nou hoef u nie die lêernaam "
-"te voorsien nie , die program doen dit vir jou.\n"
-
-#: printer/printerdrake.pm:4032 printer/printerdrake.pm:4049
-#: printer/printerdrake.pm:4059
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"Die \"%s\"-opdrag laat u toe om opsies vir 'n sekere drukstuk te verander. "
-"Sit net doodeenvoudig die ekstra opsies by die opdragbyvoorbeeld \"%s <lêer>"
-"\". "
-
-#: printer/printerdrake.pm:4035 printer/printerdrake.pm:4075
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"Om meer uit te vind oor die beskikbare opsies vir die huidige drukker, lees "
-"die onderstaande lys of klik op die \"Drukkeropsies\" knoppie.%s%s%s\n"
-"\n"
-
-#: printer/printerdrake.pm:4039
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Hier is 'n lys beskikbare drukkeropsies vir die huidige drukker:\n"
-"\n"
-
-#: printer/printerdrake.pm:4044 printer/printerdrake.pm:4054
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Om 'n lêer uit te druk vanaf die instruksielyn, gebruik die opdrag \"%s "
-"<lêernaam>\".\n"
-
-#: printer/printerdrake.pm:4046 printer/printerdrake.pm:4056
-#: printer/printerdrake.pm:4066
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Hierdie opdragte kan u ook in die \"Printing command\" veld in die drukker-"
-"dialoogvensters van baie programme gebruik, maar nou hoef u nie die lêernaam "
-"te voorsien nie , die program doen dit vir jou.\n"
-
-#: printer/printerdrake.pm:4051 printer/printerdrake.pm:4061
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Klik op die \"Drukkeropsies\" knoppie, om 'n lys beskikbare opsies vir die "
-"huidige drukker te verkry."
-
-#: printer/printerdrake.pm:4064
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Om 'n lêer uit te druk vanaf die instruksielyn, gebruik die opdrag \"%s "
-"<lêernaam>\" of \"%s <lêernaam>\".\n"
-
-#: printer/printerdrake.pm:4068
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Om opsies te kies en druktake te bestuur, kan u ook die grafiese program "
-"\"xpdq\" gebruik \n"
-"Indien u KDE as werksomgewing gebruik, kan u 'n \"paniek knoppie\" opstel, "
-"dit is 'n ikoon op u werkskerm wat lui \"STOP Drukker\", wat dan dadelik "
-"alle druktake sal stop, sodra u op dit klik. Dit is byvoorbeeld handig as "
-"die papier vasdruk.\n"
-
-#: printer/printerdrake.pm:4072
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"\"%s\" en \"%s\" laat u ook toe om die opsies vir 'n spesifieke drukwerk te "
-"verander. Voeg net eenvoudig die verstellings wat u verlang by die opdrag "
-"bv. \"%s <lêer>\".\n"
-
-#: printer/printerdrake.pm:4081
-#, fuzzy, c-format
-msgid "Using/Maintaining the printer \"%s\""
-msgstr "Drukwerk vir drukker \"%s\""
-
-#: printer/printerdrake.pm:4082
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Drukwerk vir drukker \"%s\""
-
-#: printer/printerdrake.pm:4088
-#, c-format
-msgid "Print option list"
-msgstr "Drukkeropsies"
-
-#: printer/printerdrake.pm:4092
-#, fuzzy, c-format
-msgid "Printing option list..."
-msgstr "Drukkeropsies"
-
-#: printer/printerdrake.pm:4110
-#, c-format
-msgid ""
-"Your %s is set up with HP's HPLIP driver software. This way many special "
-"features of your printer are supported.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4113
-#, c-format
-msgid ""
-"The scanner in your printer can be used with the usual SANE software, for "
-"example Kooka or XSane (Both in the Multimedia/Graphics menu). "
-msgstr ""
-
-#: printer/printerdrake.pm:4114
-#, c-format
-msgid ""
-"Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to "
-"share your scanner on the network.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4118
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed like a usual USB "
-"mass storage device. "
-msgstr ""
-
-#: printer/printerdrake.pm:4119
-#, c-format
-msgid ""
-"After inserting a card a hard disk icon to access the card should appear on "
-"your desktop.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4121
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed using HP's Printer "
-"Toolbox (Menu: System/Monitoring/HP Printer Toolbox) clicking the \"Access "
-"Photo Cards...\" button on the \"Functions\" tab. "
-msgstr ""
-
-#: printer/printerdrake.pm:4122
-#, c-format
-msgid ""
-"Note that this is very slow, reading the pictures from the camera or a USB "
-"card reader is usually faster.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4125
-#, c-format
-msgid ""
-"HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a "
-"lot of status monitoring and maintenance functions for your %s:\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4126
-#, c-format
-msgid " - Ink level/status info\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4127
-#, c-format
-msgid " - Ink nozzle cleaning\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4128
-#, fuzzy, c-format
-msgid " - Print head alignment\n"
-msgstr "Bestuur Drukkers \n"
-
-#: printer/printerdrake.pm:4129
-#, fuzzy, c-format
-msgid " - Color calibration\n"
-msgstr "Kleurkonfigurasie"
-
-#: printer/printerdrake.pm:4170 printer/printerdrake.pm:4197
-#: printer/printerdrake.pm:4232
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Dra drukkerkonfigurasie oor"
-
-#: printer/printerdrake.pm:4171
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"U kan die drukker se konfigurasie wat u vir spoel %s gedoen het, dupliseer "
-"na %s, u huidige spoeller. Al die konfigurasie (drukkernaam, beskrywing, "
-"ligging, konneksie-tipe en verstek opsies) sal oorgeplaas word, drukwerk sal "
-"nie oorgeplaas word nie.\n"
-"Nie alle druk-rye kan so oorgeplaas word nie a.g.v. die volgende redes:\n"
-
-#: printer/printerdrake.pm:4174
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS ondersteun nie Novell-bedieners se drukkers nie, ook nie die stuur van "
-"data in 'n 'free-formed command' styl nie.\n"
-
-#: printer/printerdrake.pm:4176
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ ondersteun slegs plaaslike drukkers, eksterne drukkers, en Sok/TCP "
-"drukkers.\n"
-
-#: printer/printerdrake.pm:4178
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD en LPRng ondersteun nie IPP-drukkers nie.\n"
-
-#: printer/printerdrake.pm:4180
-#, c-format
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"En boonop, druker-rye kan nie oorgedra word nie, indien hulle nie deur "
-"hierdie program of \"foomatic-configure\" geskep is nie."
-
-#: printer/printerdrake.pm:4181
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Let tog dat drukkers wat opgestel is met hulle vervaardiger se PPD lêers of "
-"plaaslike CUPS drywers, nie oorgeplaas kan word nie."
-
-#: printer/printerdrake.pm:4182
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Kies die drukkers wat u wil oordra en klik op\n"
-"\"Oordra\""
-
-#: printer/printerdrake.pm:4185
-#, c-format
-msgid "Do not transfer printers"
-msgstr "Moet nie drukkers oordra nie"
-
-#: printer/printerdrake.pm:4186 printer/printerdrake.pm:4202
-#, c-format
-msgid "Transfer"
-msgstr "Oordra"
-
-#: printer/printerdrake.pm:4198
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"A drukker met die naam \"%s\" bestaan reeds onder %s.\n"
-"Klik op \"Oordra\" om dit te oorskryf.\n"
-"U kan ook 'n nuwe naam intik of hierdie drukker oorslaan."
-
-#: printer/printerdrake.pm:4219
-#, c-format
-msgid "New printer name"
-msgstr "Nuwe drukkernaam"
-
-#: printer/printerdrake.pm:4222
-#, c-format
-msgid "Transferring %s..."
-msgstr "%s word oorgedra..."
-
-#: printer/printerdrake.pm:4233
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"U het die vorige verstek-drukker (\"%s\") oorgeplaas, moet dit ook die "
-"verstek-drukker wees onder die nuwe drukkerstelsel %s?"
-
-#: printer/printerdrake.pm:4243
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Drukkerdata word verfris..."
-
-#: printer/printerdrake.pm:4253
-#, c-format
-msgid "Starting network..."
-msgstr "Konneksie word begin..."
-
-#: printer/printerdrake.pm:4296 printer/printerdrake.pm:4300
-#: printer/printerdrake.pm:4302
-#, c-format
-msgid "Configure the network now"
-msgstr "Stel nou die netwerk op"
-
-#: printer/printerdrake.pm:4297
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Netwerk nie gekonfigureer nie"
-
-#: printer/printerdrake.pm:4298
-#, c-format
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"U gaan 'n eksterne drukker opstel. Dit benodig netwerktoegang, maar u "
-"netwerk is nog nie opgestel nie. Indien u so voortgaan, sal u nie hierdie "
-"drukker kan gebruik nie. Hoe moet ons te werk gaan?"
-
-#: printer/printerdrake.pm:4301
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Gaan voort sonder om die netwerk te konfigureer"
-
-#: printer/printerdrake.pm:4332
-#, fuzzy, c-format
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network is accessible after booting your "
-"system and correct the configuration using the %s Control Center, section "
-"\"Network & Internet\"/\"Connection\", and afterwards set up the printer, "
-"also using the %s Control Center, section \"Hardware\"/\"Printer\""
-msgstr ""
-"Die netwerk, soos opgestel gedurende die installasie, kom nie aan die gang "
-"nie. Maak tog seker die netwerk is tot u beskikking, en gaan u konfigurasie "
-"na deur die 'Mandriva Linux Control Center' te gebruik. "
-
-#: printer/printerdrake.pm:4333
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Die netwerk was ontoeganklik. Ondersoek asseblief u konfigurasie en "
-"hardeware. Probeer daarna weer om u eksterne drukker te konfigureer."
-
-#
-#: printer/printerdrake.pm:4343
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Drukkerstelsel word herbegin..."
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "high"
-msgstr "hoog"
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "paranoid"
-msgstr "paranoïes"
-
-#: printer/printerdrake.pm:4376
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Installeer 'n drukkerstelsel in die %s sekuriteitsvlak"
-
-#: printer/printerdrake.pm:4377
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessible by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"U gaan nou die %s drukkerstelsel installeer op 'n rekenaar wat in die %s "
-"sekuriteitsvlak is.\n"
-"\n"
-"Die drukkerstelsel loop 'n daemoon (agtergrond proses) wat wag vir drukwerk "
-"en dit dan doen. Hierdie daemoon kan bereik word deur ander rekenaars op die "
-"netwerk, so dit kan 'n swakpunt in die sekuriteit van u rekenaar wees. Die "
-"reel is dat hoe minder van hierdie daemone loop, hoe meer veilig is u "
-"rekenaar , maar u moet dit ook kan gebruik!\n"
-"\n"
-"Wil u drukkers opstel op hierdie rekenaar?"
-
-#
-#: printer/printerdrake.pm:4413
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Begin die drukkerstelsel tydens selflaai"
-
-#: printer/printerdrake.pm:4414
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"Die drukkerstelsel (%s) sal nie automaties, tydens selflaai, saam met die "
-"ander dienste begin nie.\n"
-"\n"
-"Dit is moontlik versper deur die verandering na 'n hoër sekuriteitsvlak."
-"(sien \"man msec\" vanaf die instruksielyn)\n"
-"\n"
-"Wil u graag dat die drukkerstelsel WEER saam met die ander dienste tydens "
-"selflaai begin?"
-
-#: printer/printerdrake.pm:4437
-#, c-format
-msgid "Checking installed software..."
-msgstr "Geïnstalleerde sagteware word deursoek..."
-
-#: printer/printerdrake.pm:4443
-#, c-format
-msgid "Removing %s..."
-msgstr "Verwyder %s ..."
-
-#: printer/printerdrake.pm:4447
-#, fuzzy, c-format
-msgid "Could not remove the %s printing system!"
-msgstr "Verander die drukkerstelsel"
-
-#: printer/printerdrake.pm:4471
-#, c-format
-msgid "Installing %s..."
-msgstr "Installeer %s ..."
-
-#: printer/printerdrake.pm:4475
-#, fuzzy, c-format
-msgid "Could not install the %s printing system!"
-msgstr "Verander die drukkerstelsel"
-
-#: printer/printerdrake.pm:4543
-#, c-format
-msgid ""
-"In this mode there is no local printing system, all printing requests go "
-"directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:4545
-#, c-format
-msgid ""
-"Enter the host name or IP of your CUPS server and click OK if you want to "
-"use this mode, click \"Quit\" otherwise."
-msgstr ""
-
-#
-#: printer/printerdrake.pm:4559
-#, fuzzy, c-format
-msgid "Name or IP of remote server:"
-msgstr "Eksterne LPD-drukker"
-
-#: printer/printerdrake.pm:4579
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Stel Verstekdrukker op ...."
-
-#
-#: printer/printerdrake.pm:4599
-#, fuzzy, c-format
-msgid "Local CUPS printing system or remote CUPS server?"
-msgstr "Eksterne CUPS-drukker"
-
-#: printer/printerdrake.pm:4600
-#, c-format
-msgid "The CUPS printing system can be used in two ways: "
-msgstr ""
-
-#: printer/printerdrake.pm:4602
-#, c-format
-msgid "1. The CUPS printing system can run locally. "
-msgstr ""
-
-#: printer/printerdrake.pm:4603
-#, c-format
-msgid ""
-"Then locally connected printers can be used and remote printers on other "
-"CUPS servers in the same network are automatically discovered. "
-msgstr ""
-
-#: printer/printerdrake.pm:4604
-#, c-format
-msgid ""
-"Disadvantage of this approach is, that more resources on the local machine "
-"are needed: Additional software packages need to be installed, the CUPS "
-"daemon has to run in the background and needs some memory, and the IPP port "
-"(port 631) is opened. "
-msgstr ""
-
-#: printer/printerdrake.pm:4606
-#, c-format
-msgid "2. All printing requests are immediately sent to a remote CUPS server. "
-msgstr ""
-
-#: printer/printerdrake.pm:4607
-#, c-format
-msgid ""
-"Here local resource occupation is reduced to a minimum. No CUPS daemon is "
-"started or port opened, no software infrastructure for setting up local "
-"print queues is installed, so less memory and disk space is used. "
-msgstr ""
-
-#: printer/printerdrake.pm:4608
-#, c-format
-msgid ""
-"Disadvantage is that it is not possible to define local printers then and if "
-"the specified server is down it cannot be printed at all from this machine. "
-msgstr ""
-
-#: printer/printerdrake.pm:4610
-#, c-format
-msgid "How should CUPS be set up on your machine?"
-msgstr ""
-
-#: printer/printerdrake.pm:4614 printer/printerdrake.pm:4629
-#: printer/printerdrake.pm:4633 printer/printerdrake.pm:4639
-#, c-format
-msgid "Remote server, specify Name or IP here:"
-msgstr ""
-
-#: printer/printerdrake.pm:4628
-#, fuzzy, c-format
-msgid "Local CUPS printing system"
-msgstr "Konfigureer die CUPS-drukkerstelsel"
-
-#: printer/printerdrake.pm:4667
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Kies drukkerspoelprogram"
-
-#
-#: printer/printerdrake.pm:4668
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Watter drukkerstelsel (spoelprogram) verlang u?"
-
-#: printer/printerdrake.pm:4717
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Probleme met die konfigurasie van drukker \" %s\"!"
-
-#: printer/printerdrake.pm:4732
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Installeer Foomatic..."
-
-#: printer/printerdrake.pm:4738
-#, fuzzy, c-format
-msgid "Could not install %s packages, %s cannot be started!"
-msgstr "Kon nie die pakkete installeer om u skandeerder(s) te deel nie."
-
-#: printer/printerdrake.pm:4933
-#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it. "
-msgstr ""
-"Die volgende drukkers is opgestel. Klik-klik op 'n drukker om sy "
-"verstellings te verander, dit die verstek drukker te maak, of inligting "
-"omtrent dit te sien."
-
-#: printer/printerdrake.pm:4963
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Vertoon alle beskikbare eksterne CUPS-drukkers"
-
-#: printer/printerdrake.pm:4964
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Verfris die drukkerlys (vertoon alle beskikbare eksterne CUPS-drukkers)"
-
-#: printer/printerdrake.pm:4975
-#, c-format
-msgid "CUPS configuration"
-msgstr "CUPS-konfigurasie"
-
-#: printer/printerdrake.pm:4996
-#, c-format
-msgid "Change the printing system"
-msgstr "Verander die drukkerstelsel"
-
-#: printer/printerdrake.pm:5005
-#, c-format
-msgid "Normal Mode"
-msgstr "Normale modus"
-
-#: printer/printerdrake.pm:5006
-#, c-format
-msgid "Expert Mode"
-msgstr "Kundige bedryfsvlak"
-
-#: printer/printerdrake.pm:5284 printer/printerdrake.pm:5340
-#: printer/printerdrake.pm:5426 printer/printerdrake.pm:5435
-#, c-format
-msgid "Printer options"
-msgstr "Drukkeropsies"
-
-#: printer/printerdrake.pm:5320
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Verander drukkerkonfigurasie"
-
-#: printer/printerdrake.pm:5322
-#, c-format
-msgid ""
-"Printer %s%s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Drukker %s%s\n"
-"Wat wil u aan hierdie drukker verander?"
-
-#: printer/printerdrake.pm:5327
-#, fuzzy, c-format
-msgid "This printer is disabled"
-msgstr "Hierdie partisie se grootte kan nie verstel word nie"
-
-#: printer/printerdrake.pm:5329
-#, c-format
-msgid "Do it!"
-msgstr "Gaan voort!"
-
-#: printer/printerdrake.pm:5335 printer/printerdrake.pm:5400
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Drukkernaam, beskrywing, ligging"
-
-#: printer/printerdrake.pm:5337 printer/printerdrake.pm:5419
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Drukkervervaardiger, model, drywer"
-
-#: printer/printerdrake.pm:5338 printer/printerdrake.pm:5420
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Drukkervervaardiger, model"
-
-#: printer/printerdrake.pm:5342 printer/printerdrake.pm:5430
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Maak hierdie die verstekdrukker"
-
-#: printer/printerdrake.pm:5347 printer/printerdrake.pm:5436
-#: printer/printerdrake.pm:5438 printer/printerdrake.pm:5447
-#, fuzzy, c-format
-msgid "Enable Printer"
-msgstr "Ontsper Bediener"
-
-#: printer/printerdrake.pm:5350 printer/printerdrake.pm:5441
-#: printer/printerdrake.pm:5442 printer/printerdrake.pm:5444
-#, fuzzy, c-format
-msgid "Disable Printer"
-msgstr "Versper Bediener"
-
-#: printer/printerdrake.pm:5354 printer/printerdrake.pm:5448
-#, fuzzy, c-format
-msgid "Printer communication error handling"
-msgstr "Drukkerkonneksie-tipe"
-
-#: printer/printerdrake.pm:5355 printer/printerdrake.pm:5452
-#, c-format
-msgid "Print test pages"
-msgstr "Druk toetsbladsy(e)"
-
-#: printer/printerdrake.pm:5356 printer/printerdrake.pm:5454
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Leer hoe om hierdie drukker te gebruik"
-
-#
-#: printer/printerdrake.pm:5357 printer/printerdrake.pm:5456
-#, c-format
-msgid "Remove printer"
-msgstr "Verwyder drukker"
-
-#: printer/printerdrake.pm:5408
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Verwyder ou drukker \"%s\" ...."
-
-#: printer/printerdrake.pm:5439
-#, fuzzy, c-format
-msgid "Printer \"%s\" is now enabled."
-msgstr "Drukker \"%s\" op bediener \"%s\""
-
-#: printer/printerdrake.pm:5445
-#, fuzzy, c-format
-msgid "Printer \"%s\" is now disabled."
-msgstr "Die VPN-konneksie is nou gedeaktiveer."
-
-#: printer/printerdrake.pm:5487
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Wil u werklik drukker \"%s\" verwyder?"
-
-#: printer/printerdrake.pm:5491
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Verwyder drukker \"%s\"..."
-
-#: printer/printerdrake.pm:5515
-#, c-format
-msgid "Default printer"
-msgstr "Verstek drukker"
-
-#: printer/printerdrake.pm:5516
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Drukker \"%s\" is nou die verstekdrukker"
-
#: raid.pm:42
#, fuzzy, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "Kan nie 'n partisie by geformatteerde RAID md%d byvoeg nie"
-#: raid.pm:148
+#: raid.pm:150
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nie genoeg partisies vir RAID vlak %d nie\n"
-#: scanner.pm:96
+#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr "Kon nie gids /usr/share/sane/firmware skep nie!"
-#: scanner.pm:107
+#: scanner.pm:106
#, fuzzy, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr "Kon nie gids /usr/share/sane/firmware skep nie!"
-#: scanner.pm:114
+#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr "Kon nie firmware-lêer %s na /usr/share/sane/firmware kopieer nie!"
-#: scanner.pm:121
+#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr "Kon nie die permisies van die firmware-lêer %s stel nie."
-#: scanner.pm:200 standalone/scannerdrake:66 standalone/scannerdrake:70
-#: standalone/scannerdrake:78 standalone/scannerdrake:321
-#: standalone/scannerdrake:370 standalone/scannerdrake:463
-#: standalone/scannerdrake:507 standalone/scannerdrake:511
-#: standalone/scannerdrake:533 standalone/scannerdrake:598
+#: scanner.pm:199
#, c-format
msgid "Scannerdrake"
msgstr "Scannerdrake"
-#: scanner.pm:201 standalone/scannerdrake:964
+#: scanner.pm:200
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr "Kon nie die pakkete installeer om u skandeerder(s) te deel nie."
-#: scanner.pm:202
+#: scanner.pm:201
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr "U skandeerder(s) sal NIE vir normale gebruikers beskikbaar wees NIE. "
@@ -14994,12 +5037,12 @@ msgstr "Aanvaar/Weier snert IPv4-foutboodskappe."
#: security/help.pm:13
#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
+msgid "Accept/Refuse broadcasted icmp echo."
msgstr "Aanvaar/Weier uitgesaaide icmp-ego's"
#: security/help.pm:15
#, c-format
-msgid " Accept/Refuse icmp echo."
+msgid "Accept/Refuse icmp echo."
msgstr "Aanvaar/Weier icmp-ego's."
#: security/help.pm:17
@@ -15161,7 +5204,7 @@ msgstr ""
" \"%s\" gekies is, sal dit aangeteken word\n"
" in die staaflêers."
-#: security/help.pm:80 standalone/draksec:215
+#: security/help.pm:80
#, c-format
msgid "Security Alerts:"
msgstr "Sekuriteits-waarskuwings:"
@@ -15187,9 +5230,10 @@ msgid "Enable/Disable msec hourly security check."
msgstr "Versper/Ontsper msec se uurlikse toets."
#: security/help.pm:90
-#, c-format
+#, fuzzy, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"Enable su only from members of the wheel group. If set to no, allows su from "
+"any user."
msgstr ""
"'su'-funksie slegs vir lede van die \"wheel\"-groep of vir enige gebruiker."
@@ -15205,12 +5249,12 @@ msgstr "Aktiveer/Versper ethernetkaarte 'promoscuity' toets."
#: security/help.pm:96
#, c-format
-msgid " Activate/Disable daily security check."
+msgid "Activate/Disable daily security check."
msgstr "Aktiveer/Versper daaglikese sekuriteits-toets."
#: security/help.pm:98
#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
+msgid "Enable/Disable sulogin(8) in single user level."
msgstr "Versper/Ontsper sulogin(8) in enkel-gebruiker modus"
#: security/help.pm:100
@@ -15476,8 +5520,8 @@ msgid "Enable msec hourly security check"
msgstr "Aktiveer msec se uurlikse ondersoek"
#: security/l10n.pm:32
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
+#, fuzzy, c-format
+msgid "Enable su only from the wheel group members"
msgstr ""
"Aktiveer 'su' slegs vir die 'wheel'-groep se lede OF vir enige gebruiker"
@@ -15604,8 +5648,8 @@ msgstr "Loop 'chkrootkit' toetste"
#: security/l10n.pm:57
#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "Moet nie onnodige e-pos stuur nie"
+msgid "Do not send empty mail reports"
+msgstr ""
#: security/l10n.pm:58
#, c-format
@@ -15644,6 +5688,11 @@ msgstr "Krakers Welkom"
msgid "Poor"
msgstr "Lig"
+#: security/level.pm:12
+#, c-format
+msgid "Standard"
+msgstr "Standaard"
+
#: security/level.pm:13
#, c-format
msgid "High"
@@ -15723,6 +5772,11 @@ msgstr ""
#: security/level.pm:55
#, c-format
+msgid "Security"
+msgstr "Sekuriteit"
+
+#: security/level.pm:55
+#, c-format
msgid "DrakSec Basic Options"
msgstr "DrakSec Basiese Opsies"
@@ -16093,52 +6147,67 @@ msgstr "Laai die drywers vir u USB-toestelle"
msgid "Starts the X Font Server (this is mandatory for Xorg to run)."
msgstr "Laai die X-fontbediener (dis nodig vir Xorg)."
-#: services.pm:115 services.pm:157
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Kies watter dienste moet outomaties begin met herlaaityd."
-
-#: services.pm:127 standalone/draksambashare:111
+#: services.pm:114
#, c-format
msgid "Printing"
msgstr "Drukwerk"
-#: services.pm:128
+#: services.pm:115
#, c-format
msgid "Internet"
msgstr "Internet"
-#: services.pm:131
+#: services.pm:118
#, c-format
msgid "File sharing"
msgstr "Lêerdeling"
-#: services.pm:138
+#: services.pm:120
+#, c-format
+msgid "System"
+msgstr "Stelsel"
+
+#: services.pm:125
#, c-format
msgid "Remote Administration"
msgstr "Eksterne-administrasie"
-#: services.pm:146
+#: services.pm:133
#, c-format
msgid "Database Server"
msgstr "Databasis-bediener"
-#: services.pm:209
+#: services.pm:144 services.pm:180
+#, c-format
+msgid "Services"
+msgstr "Dienste"
+
+#: services.pm:144
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Kies watter dienste moet outomaties begin met herlaaityd."
+
+#: services.pm:162
+#, c-format
+msgid "Services: %d activated for %d registered"
+msgstr "Dienste: %d ge-aktiveer vir %d geregistreer"
+
+#: services.pm:196
#, c-format
msgid "running"
msgstr "aktief"
-#: services.pm:209
+#: services.pm:196
#, c-format
msgid "stopped"
msgstr "onaktief"
-#: services.pm:213
+#: services.pm:201
#, c-format
msgid "Services and daemons"
msgstr "Dienste en deamone"
-#: services.pm:219
+#: services.pm:207
#, c-format
msgid ""
"No additional information\n"
@@ -16147,485 +6216,32 @@ msgstr ""
"Jammer, geen ekstra inligting\n"
"rakende hierdie diens nie."
-#: services.pm:224 ugtk2.pm:1009
+#: services.pm:212 ugtk2.pm:898
#, c-format
msgid "Info"
msgstr "Info"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "Start when requested"
msgstr "Begin sodra gevra word"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "On boot"
msgstr "met herlaai"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Start"
msgstr "Begin"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Stop"
msgstr "Stop"
-#: share/advertising/01.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Packs"
-msgstr ""
-
-#: share/advertising/02.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More features"
-msgstr ""
-
-#: share/advertising/03.pl:3
-#, c-format
-msgid "Interactive firewall"
-msgstr ""
-
-#: share/advertising/04.pl:3
-#, c-format
-msgid "Desktop search"
-msgstr ""
-
-#: share/advertising/05.pl:3
-#, c-format
-msgid "New package manager"
-msgstr ""
-
-#: share/advertising/06.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More performances"
-msgstr ""
-
-#: share/advertising/07.pl:3
-#, c-format
-msgid "Latest kernel and GCC"
-msgstr ""
-
-#: share/advertising/08.pl:3
-#, c-format
-msgid "High Availibility"
-msgstr ""
-
-#: share/advertising/09.pl:3
-#, c-format
-msgid "Delta RPM"
-msgstr ""
-
-#: share/advertising/10.pl:3
-#, c-format
-msgid "Low resources setup"
-msgstr ""
-
-#: share/advertising/11.pl:3
-#, c-format
-msgid "Boot time reduction"
-msgstr ""
-
-#: share/advertising/12.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Easier to use"
-msgstr ""
-
-#: share/advertising/13.pl:3
-#, c-format
-msgid "Latest graphical interfaces: KDE and GNOME"
-msgstr ""
-
-#: share/advertising/14.pl:3
-#, c-format
-msgid "auto-installation servers"
-msgstr ""
-
-#: share/advertising/15.pl:3
-#, c-format
-msgid "Easy and quick installation"
-msgstr ""
-
-#: share/advertising/16.pl:3
-#, c-format
-msgid "Easy configuration thanks to 60 wizards"
-msgstr ""
-
-#: share/advertising/17.pl:3
-#, c-format
-msgid "Look and feel improved"
-msgstr ""
-
-#: share/advertising/18.pl:3
-#, c-format
-msgid "New webmin theme"
-msgstr ""
-
-#: share/advertising/19.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More support"
-msgstr ""
-
-#: share/advertising/20.pl:3
-#, c-format
-msgid "Better Hardware support"
-msgstr ""
-
-#: share/advertising/21.pl:3
-#, c-format
-msgid "Xen support"
-msgstr ""
-
-#: share/advertising/22.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More information"
-msgstr ""
-
-#: share/advertising/23.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Where to buy?"
-msgstr ""
-
-#: share/advertising/24.pl:3
-#, c-format
-msgid "Where to find technical assistance?"
-msgstr ""
-
-#: share/advertising/25.pl:3
-#, c-format
-msgid "How to join the Mandriva Linux community?"
-msgstr ""
-
-#: share/advertising/26.pl:3
-#, c-format
-msgid "How to keep your system up-to-date?"
-msgstr ""
-
-#: share/advertising/intel.pl:3
-#, c-format
-msgid "Intel Software"
-msgstr ""
-
-#: share/advertising/skype.pl:3
-#, c-format
-msgid "Skype lets you make calls through the Internet for free."
-msgstr ""
-
-#: share/compssUsers.pl:26
-#, c-format
-msgid "Office Workstation"
-msgstr "Kantoorwerkstasie"
-
-#: share/compssUsers.pl:28
-#, c-format
-msgid ""
-"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
-"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
-msgstr ""
-"Kantoorprogramme: Woordverwerkers(OpenOffice.org Writer, Kword), spreistate "
-"(OpenOffice.org Calc, Kspread), PDF-sigprogramme, ens."
-
-#: share/compssUsers.pl:29
-#, c-format
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Kantoorprogramme: Woordverwerkers( kword, abiword), spreistate (kspread, "
-"gnumeric), PDF-sigprogramme, ens."
-
-#: share/compssUsers.pl:34
-#, c-format
-msgid "Game station"
-msgstr "Speletjiesrekenaar"
-
-#: share/compssUsers.pl:35
-#, c-format
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Vermaak: Arkade, Bordspel, Strategie ens."
-
-#: share/compssUsers.pl:38
-#, c-format
-msgid "Multimedia station"
-msgstr "Multimediastasie"
-
-#: share/compssUsers.pl:39
-#, c-format
-msgid "Sound and video playing/editing programs"
-msgstr "Klank- en videospelers/redigeerders"
-
-#: share/compssUsers.pl:44
-#, c-format
-msgid "Internet station"
-msgstr "Internetstasie"
-
-#: share/compssUsers.pl:45
-#, c-format
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Stel hulpprogramme om e-pos en netnuus te lees en te stuur (mutt, tin) en om "
-"ook die web deur te blaai."
-
-#
-#: share/compssUsers.pl:50
-#, c-format
-msgid "Network Computer (client)"
-msgstr "Netwerkrekenaar (kliënt)"
-
-#: share/compssUsers.pl:51
-#, c-format
-msgid "Clients for different protocols including ssh"
-msgstr "Kliëntprogramme vir 'n verkeidenheid protokolle insluitend SSH"
-
-#: share/compssUsers.pl:55
-#, c-format
-msgid "Configuration"
-msgstr "Konfigurasie"
-
-#: share/compssUsers.pl:56
-#, c-format
-msgid "Tools to ease the configuration of your computer"
-msgstr "Nutsprogramme wat u rekenaarkonfigurasie vergemaklik"
-
-#: share/compssUsers.pl:60
-#, c-format
-msgid "Console Tools"
-msgstr "Konsole Hulpprogramme"
-
-#: share/compssUsers.pl:61
-#, c-format
-msgid "Editors, shells, file tools, terminals"
-msgstr ""
-"Redigeerders. teksverwerkers, instruksiedoppe, lêer-nutsprogramme, terminaal-"
-"programme"
-
-#: share/compssUsers.pl:66 share/compssUsers.pl:170
-#, c-format
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C en C++ ontwikkelingsprogrammateke, programme en insluitlêers"
-
-#: share/compssUsers.pl:70 share/compssUsers.pl:174
-#, c-format
-msgid "Documentation"
-msgstr "Dokumentasie"
-
-#: share/compssUsers.pl:71 share/compssUsers.pl:175
-#, c-format
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Boeke en HOWTO's oor Linux en Vrye Sagteware"
-
-#: share/compssUsers.pl:75 share/compssUsers.pl:178
-#, c-format
-msgid "LSB"
-msgstr "LSB"
-
-#: share/compssUsers.pl:76 share/compssUsers.pl:179
-#, c-format
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Linux Standard Base. Derdeparty ondersteuning van programme"
-
-#: share/compssUsers.pl:86
-#, c-format
-msgid "Apache"
-msgstr "Apache"
-
-#: share/compssUsers.pl:89
-#, fuzzy, c-format
-msgid "Groupware"
-msgstr "Groep:"
-
-#: share/compssUsers.pl:90
-#, c-format
-msgid "Kolab Server"
-msgstr "Kolab-bediener"
-
-#: share/compssUsers.pl:93 share/compssUsers.pl:134
-#, c-format
-msgid "Firewall/Router"
-msgstr "Vuurmuur/Netwerkroteerder"
-
-#: share/compssUsers.pl:94 share/compssUsers.pl:135
-#, c-format
-msgid "Internet gateway"
-msgstr "Internetpoort"
-
-#: share/compssUsers.pl:97
-#, fuzzy, c-format
-msgid "Mail/News"
-msgstr "/Lêer/_Nuut"
-
-#: share/compssUsers.pl:98
-#, fuzzy, c-format
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix e-pos-bediener"
-
-#: share/compssUsers.pl:101
-#, fuzzy, c-format
-msgid "Directory Server"
-msgstr "Herstel vanaf CD"
-
-#: share/compssUsers.pl:105
-#, c-format
-msgid "FTP Server"
-msgstr "FTP-bediener"
-
-#: share/compssUsers.pl:106
-#, c-format
-msgid "ProFTPd"
-msgstr ""
-
-#: share/compssUsers.pl:109
-#, c-format
-msgid "DNS/NIS"
-msgstr "DNS/NIS"
-
-#: share/compssUsers.pl:110
-#, c-format
-msgid "Domain Name and Network Information Server"
-msgstr "Domeinnaam en Netwerk-informasie-bediener (DNS/NIS)"
-
-#: share/compssUsers.pl:113
-#, fuzzy, c-format
-msgid "File and Printer Sharing Server"
-msgstr "Drukkerbediener"
-
-#: share/compssUsers.pl:114
-#, fuzzy, c-format
-msgid "NFS Server, Samba server"
-msgstr "Samba-bediener"
-
-#: share/compssUsers.pl:117 share/compssUsers.pl:130
-#, c-format
-msgid "Database"
-msgstr "Databasis"
-
-#: share/compssUsers.pl:118
-#, fuzzy, c-format
-msgid "PostgreSQL and MySQL Database Server"
-msgstr "PostgreSQL of MySQL databasisbediener"
-
-#: share/compssUsers.pl:122
-#, c-format
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: share/compssUsers.pl:123
-#, c-format
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: share/compssUsers.pl:126
-#, c-format
-msgid "Mail"
-msgstr "e-Pos"
-
-#: share/compssUsers.pl:127
-#, c-format
-msgid "Postfix mail server"
-msgstr "Postfix e-pos-bediener"
-
-#: share/compssUsers.pl:131
-#, c-format
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL of MySQL databasisbediener"
-
-#: share/compssUsers.pl:138
-#, c-format
-msgid "Network Computer server"
-msgstr "Netwerkrekenaar-bediener"
-
-#: share/compssUsers.pl:139
-#, c-format
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS, SMB, Instaan- , SSH (Bedieners)"
-
-#: share/compssUsers.pl:147
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE Werkstasie"
-
-#: share/compssUsers.pl:148
-#, c-format
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"Die K-werkskermomgewing (KDE), die basiese grafiese omgewing met 'n "
-"versameling bygaande hulpprogramme"
-
-#: share/compssUsers.pl:152
-#, c-format
-msgid "GNOME Workstation"
-msgstr "GNOME-werkstasie"
-
-#: share/compssUsers.pl:153
-#, c-format
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"'n Grafiese omgewing met gebruikersvriendelike stel applikasies en "
-"werkskerm-hulpprogramme"
-
-#: share/compssUsers.pl:156
-#, fuzzy, c-format
-msgid "IceWm Desktop"
-msgstr "'n Werkstasie"
-
-#: share/compssUsers.pl:160
-#, c-format
-msgid "Other Graphical Desktops"
-msgstr "Ander Grafiese Werkskerms"
-
-#: share/compssUsers.pl:161
-#, fuzzy, c-format
-msgid "Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ens."
-
-#: share/compssUsers.pl:184
-#, c-format
-msgid "Utilities"
-msgstr "Nutsprogramme"
-
-#: share/compssUsers.pl:186 share/compssUsers.pl:187 standalone/logdrake:384
-#, c-format
-msgid "SSH Server"
-msgstr "SSH-bediener"
-
-#: share/compssUsers.pl:191
-#, fuzzy, c-format
-msgid "Webmin"
-msgstr "Webkamera"
-
-#: share/compssUsers.pl:192
-#, fuzzy, c-format
-msgid "Webmin Remote Configuration Server"
-msgstr "Terminal Server Konfigurasie"
-
-#: share/compssUsers.pl:196
-#, fuzzy, c-format
-msgid "Network Utilities/Monitoring"
-msgstr "Monitor van Netwerk"
-
-#: share/compssUsers.pl:197
-#, c-format
-msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
-msgstr ""
-
-#: share/compssUsers.pl:201
-#, fuzzy, c-format
-msgid "Mandriva Wizards"
-msgstr "<b>Mandriva Store</b>"
-
-#: share/compssUsers.pl:202
-#, fuzzy, c-format
-msgid "Wizards to configure server"
-msgstr "Probleme met die konfigurasie van drukker \" %s\"!"
-
-#: standalone.pm:23
+#: standalone.pm:24
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
@@ -16640,7 +6256,8 @@ msgid ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
msgstr ""
"This program is free software; you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published by\n"
@@ -16654,9 +6271,10 @@ msgstr ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
-#: standalone.pm:42
+#: standalone.pm:43
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
@@ -16683,7 +6301,7 @@ msgstr ""
"--help : show this message.\n"
"--version : show version number.\n"
-#: standalone.pm:54
+#: standalone.pm:55
#, c-format
msgid ""
"[--boot] [--splash]\n"
@@ -16698,7 +6316,7 @@ msgstr ""
" --splash - enable to configure boot theme\n"
"default mode: offer to configure autologin feature"
-#: standalone.pm:59
+#: standalone.pm:60
#, fuzzy, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
@@ -16717,7 +6335,7 @@ msgstr ""
" --incedent - program behoort een van die Mandriva nutsprogramme te "
"wees"
-#: standalone.pm:65
+#: standalone.pm:66
#, c-format
msgid ""
"[--add]\n"
@@ -16734,7 +6352,7 @@ msgstr ""
" --internet - configure internet\n"
" --wizard - like --add"
-#: standalone.pm:71
+#: standalone.pm:72
#, c-format
msgid ""
"\n"
@@ -16765,7 +6383,7 @@ msgstr ""
" : name_of_application like so for staroffice \n"
" : and gs for ghostscript for only this one."
-#: standalone.pm:86
+#: standalone.pm:87
#, fuzzy, c-format
msgid ""
"[OPTIONS]...\n"
@@ -16796,17 +6414,17 @@ msgstr ""
"--delclient : delete a client machine from MTS (requires MAC address, "
"IP, nbi image name)"
-#: standalone.pm:98
+#: standalone.pm:99
#, c-format
msgid "[keyboard]"
msgstr "[sleutelbord]"
-#: standalone.pm:99
+#: standalone.pm:100
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-#: standalone.pm:100
+#: standalone.pm:101
#, c-format
msgid ""
"[OPTIONS]\n"
@@ -16829,12 +6447,7 @@ msgstr ""
"--status : returns 1 if connected 0 otherwise, then exit.\n"
"--quiet : do not be interactive. To be used with (dis)connect."
-#: standalone.pm:109
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: standalone.pm:110
+#: standalone.pm:111
#, c-format
msgid ""
"[OPTION]...\n"
@@ -16853,7 +6466,7 @@ msgstr ""
"description window\n"
" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
-#: standalone.pm:115
+#: standalone.pm:116
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
@@ -16862,7 +6475,7 @@ msgstr ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
-#: standalone.pm:116
+#: standalone.pm:117
#, c-format
msgid ""
" [everything]\n"
@@ -16873,7 +6486,7 @@ msgstr ""
" XFdrake [--noauto] monitor\n"
" XFdrake resolution"
-#: standalone.pm:149
+#: standalone.pm:150
#, c-format
msgid ""
"\n"
@@ -16884,9652 +6497,102 @@ msgstr ""
"Gebruik: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
-#: standalone/XFdrake:59
-#, fuzzy, c-format
-msgid "You need to reboot for changes to take effect"
-msgstr "U moet afteken en weer inteken alvorens veranderinge bekragtig word"
-
-#: standalone/XFdrake:90
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
-
-#: standalone/XFdrake:94
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr "U moet afteken en weer inteken alvorens veranderinge bekragtig word"
-
-#: standalone/drakTermServ:112 standalone/drakTermServ:118
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s benodig 'n gebruikernaam...\n"
-
-#: standalone/drakTermServ:129
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s:%s benodig die rekenaarnaam,MAC-adres, IP, 'nbi-image', 0/1 vir "
-"maerkliënt, 0/1 vir die Plaaslike Konfigurasie...\n"
-
-#: standalone/drakTermServ:135
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s:%s benodig 'n rekenaarnaam...\n"
-
-#: standalone/drakTermServ:144
-#, c-format
-msgid "Host name for client"
-msgstr ""
-
-#: standalone/drakTermServ:145
-#, c-format
-msgid "MAC address should be in the format 00:11:22:33:44:55"
-msgstr ""
-
-#: standalone/drakTermServ:146
-#, c-format
-msgid "IP address to be assigned to client"
-msgstr ""
-
-#: standalone/drakTermServ:147
-#, c-format
-msgid "Kernel/network adapter image to use to boot client"
-msgstr ""
-
-#: standalone/drakTermServ:148
-#, c-format
-msgid "Create masking files to allow configuration tools to run on client"
-msgstr ""
-
-#: standalone/drakTermServ:149
-#, c-format
-msgid "Applications will run on server machine"
-msgstr ""
-
-#: standalone/drakTermServ:234 standalone/drakTermServ:237
-#, c-format
-msgid "Terminal Server Configuration"
-msgstr "Terminal Server Konfigurasie"
-
-#: standalone/drakTermServ:243
-#, fuzzy, c-format
-msgid "dhcpd Config"
-msgstr "dhcpd Konfigurasie ..."
-
-#: standalone/drakTermServ:247
-#, c-format
-msgid "Enable Server"
-msgstr "Ontsper Bediener"
-
-#: standalone/drakTermServ:253
-#, c-format
-msgid "Disable Server"
-msgstr "Versper Bediener"
-
-#: standalone/drakTermServ:259
-#, c-format
-msgid "Start Server"
-msgstr "Skop Bediener Af"
-
-#: standalone/drakTermServ:265
-#, c-format
-msgid "Stop Server"
-msgstr "Stop Bediener"
-
-#: standalone/drakTermServ:274
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot Floppy/ISO"
-
-#: standalone/drakTermServ:278
-#, c-format
-msgid "Net Boot Images"
-msgstr "Net-selflaai-beelde"
-
-#: standalone/drakTermServ:285
-#, c-format
-msgid "Add/Del Users"
-msgstr "Gebruikers Byvoeg/Verwyder"
-
-#: standalone/drakTermServ:289
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Voeg by/Verwyder Kliënte"
-
-#: standalone/drakTermServ:297
-#, c-format
-msgid "Images"
-msgstr "Beelde"
-
-#: standalone/drakTermServ:298
-#, c-format
-msgid "Clients/Users"
-msgstr ""
-
-#: standalone/drakTermServ:316 standalone/drakbug:47
-#, c-format
-msgid "First Time Wizard"
-msgstr "First Time Wizard"
-
-#: standalone/drakTermServ:354 standalone/drakTermServ:355
-#, c-format
-msgid "%s defined as dm, adding gdm user to /etc/passwd$$CLIENT$$"
-msgstr ""
-
-#: standalone/drakTermServ:361
-#, c-format
-msgid ""
-"\n"
-" This wizard routine will:\n"
-" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
-"\t2) Setup DHCP.\n"
-"\t\n"
-"After doing these steps, the wizard will:\n"
-"\t\n"
-" a) Make all "
-"nbis. \n"
-" b) Activate the "
-"server. \n"
-" c) Start the "
-"server. \n"
-" d) Synchronize the shadow files so that all users, including root, \n"
-" are added to the shadow$$CLIENT$$ "
-"file. \n"
-" e) Ask you to make a boot floppy.\n"
-" f) If it's thin clients, ask if you want to restart KDM.\n"
-msgstr ""
-"\n"
-" This wizard routine will:\n"
-" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
-"\t2) Setup DHCP.\n"
-"\t\n"
-"After doing these steps, the wizard will:\n"
-"\t\n"
-" a) Make all "
-"nbis. \n"
-" b) Activate the "
-"server. \n"
-" c) Start the "
-"server. \n"
-" d) Synchronize the shadow files so that all users, including root, \n"
-" are added to the shadow$$CLIENT$$ "
-"file. \n"
-" e) Ask you to make a boot floppy.\n"
-" f) If it's thin clients, ask if you want to restart KDM.\n"
-
-#: standalone/drakTermServ:407
-#, c-format
-msgid "Cancel Wizard"
-msgstr "Kanseleer die Wysgeer"
-
-#: standalone/drakTermServ:422
-#, c-format
-msgid "Please save dhcpd config!"
-msgstr "Stoor asb dhcpd konfigurasie!"
-
-#: standalone/drakTermServ:450
-#, fuzzy, c-format
-msgid "Use thin clients."
-msgstr "Laat Maerkliënte toe."
-
-#: standalone/drakTermServ:452
-#, c-format
-msgid "Sync client X keyboard settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:454
-#, fuzzy, c-format
-msgid ""
-"Please select default client type (Fat is the default type if 'Use thin' is "
-"unchecked).\n"
-" 'Thin' clients run everything off the server's CPU/RAM, using the client "
-"display.\n"
-" 'Fat' clients use their own CPU/RAM but the server's filesystem."
-msgstr ""
-"Please select client type.\n"
-" 'Thin' clients run everything off the server's CPU/RAM, using the client "
-"display.\n"
-" 'Fat' clients use their own CPU/RAM but the server's filesystem."
-
-#: standalone/drakTermServ:474
-#, c-format
-msgid "Creating net boot images for all kernels"
-msgstr "Skep netwerk selflaai-beelde vir al die kernels"
-
-#: standalone/drakTermServ:475 standalone/drakTermServ:807
-#: standalone/drakTermServ:823
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Hierdie sal 'n paar minute duur."
-
-#: standalone/drakTermServ:481 standalone/drakTermServ:521
-#, c-format
-msgid "Done!"
-msgstr "Klaar!"
-
-#: standalone/drakTermServ:492 standalone/drakTermServ:894
-#, c-format
-msgid "%s failed"
-msgstr ""
-
-#: standalone/drakTermServ:501
-#, c-format
-msgid ""
-"Not enough space to create\n"
-"NBIs in %s.\n"
-"Needed: %d MB, Free: %d MB"
-msgstr ""
-
-#: standalone/drakTermServ:507
-#, c-format
-msgid "Syncing server user list with client list, including root."
-msgstr ""
-"Sinkroniseer die bediener se gebruikerslys met die kliënt se lys, \"root\" "
-"inkluis."
-
-#: standalone/drakTermServ:527
-#, c-format
-msgid ""
-"In order to enable changes made for thin clients, the display manager must "
-"be restarted. Restart now?"
-msgstr ""
-"Om die veranderinge vir die maerkliënte te aktiveer, moet die "
-"vertoonbestuurder herbegin word. Sal ons voortgaan?"
-
-#: standalone/drakTermServ:564
-#, fuzzy, c-format
-msgid "Terminal Server Overview"
-msgstr "drakTermServ Oorsig"
-
-#: standalone/drakTermServ:565
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and %s is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and %s is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-
-#: standalone/drakTermServ:571
-#, c-format
-msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. %s helps create/"
-"remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
-msgstr ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. %s helps create/"
-"remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
-
-#: standalone/drakTermServ:589
-#, fuzzy, c-format
-msgid ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be "
-"'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, \n"
-" %s is written for thin clients. \n"
-" System config files xdm-config, kdmrc, and gdm.conf are modified if "
-"thin clients are \n"
-" used, to enable XDMCP. Since there are security issues in using "
-"XDMCP, hosts.deny and \n"
-" hosts.allow are modified to limit access to the local subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-msgstr ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be "
-"'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, %s is\n"
-" written for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-" modified if thin clients are used, to enable XDMCP. Since there are "
-"security issues in \n"
-" using XDMCP, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-" subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-
-#: standalone/drakTermServ:609
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-msgstr ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-
-#: standalone/drakTermServ:621
-#, fuzzy, c-format
-msgid ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. \n"
-" \t%s helps in this respect by adding or removing system users from "
-"this \n"
-" \tfile."
-msgstr ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. %s\n"
-" \thelps in this respect by adding or removing system users from this "
-"file."
-
-#: standalone/drakTermServ:626
-#, c-format
-msgid ""
-" - Per client %s:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t%s will help create these files."
-msgstr ""
-" - Per client %s:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t%s will help create these files."
-
-#: standalone/drakTermServ:631
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-msgstr ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-
-#: standalone/drakTermServ:640
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s will configure this file to work in conjunction with the images "
-"created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical TFTP configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
-msgstr ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s will configure this file to work in conjunction with the images "
-"created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical TFTP configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
-
-#: standalone/drakTermServ:661
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-msgstr ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-
-#: standalone/drakTermServ:694
-#, c-format
-msgid "Boot Floppy"
-msgstr "Selflaai Disket"
-
-#: standalone/drakTermServ:696
-#, c-format
-msgid "Boot ISO"
-msgstr "Selflaai-ISO"
-
-#: standalone/drakTermServ:698
-#, c-format
-msgid "PXE Image"
-msgstr "PXE Beeld"
-
-#: standalone/drakTermServ:759
-#, fuzzy, c-format
-msgid "Default kernel version"
-msgstr "Dien kernel se weergawe in"
-
-#: standalone/drakTermServ:764
-#, c-format
-msgid "Create PXE images"
-msgstr ""
-
-#: standalone/drakTermServ:765
-#, c-format
-msgid "Use Unionfs (TS2)"
-msgstr ""
-
-#: standalone/drakTermServ:795
-#, c-format
-msgid "Install i586 kernel for older clients"
-msgstr ""
-
-#: standalone/drakTermServ:805
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Bou die Hele 'Kernel' -->"
-
-#: standalone/drakTermServ:812
-#, c-format
-msgid "No kernel selected!"
-msgstr "Geen kernel is gekies!"
-
-#: standalone/drakTermServ:815
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Bou Enkel NIC -->"
-
-#: standalone/drakTermServ:819 standalone/drakTermServ:1643
-#, c-format
-msgid "No NIC selected!"
-msgstr "Geen NIC gekies!"
-
-#: standalone/drakTermServ:822
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Bou Alle Kernels -->"
-
-#: standalone/drakTermServ:835
-#, c-format
-msgid ""
-"Custom\n"
-"kernel args"
-msgstr ""
-
-#: standalone/drakTermServ:840
-#, c-format
-msgid "<-- Delete"
-msgstr "<--Verwyder"
-
-#: standalone/drakTermServ:845
-#, fuzzy, c-format
-msgid "No image selected!"
-msgstr "Geen NIC gekies!"
-
-#: standalone/drakTermServ:848
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Verwyder alle NBIs"
-
-#: standalone/drakTermServ:925
-#, fuzzy, c-format
-msgid "Building images for kernel:"
-msgstr "Skep netwerk selflaai-beelde vir al die kernels"
-
-#: standalone/drakTermServ:1050
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! Dui dat die wagwoord in die stelsel se databasis verskil van\n"
-"die een in die 'Terminal Server' sin.\n"
-"Om weer die aanteken-vermoë te bekragtig, verwyder/voeg gebruiker by die\n"
-"'Terminal Server'."
-
-#: standalone/drakTermServ:1055
-#, c-format
-msgid "Add User -->"
-msgstr "Voeg gebruiker by -->"
-
-#: standalone/drakTermServ:1061
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- Verwyder gebruiker"
-
-#: standalone/drakTermServ:1097
-#, c-format
-msgid "type: %s"
-msgstr "tipe: %s"
-
-#: standalone/drakTermServ:1101
-#, c-format
-msgid "local config: %s"
-msgstr "plaaslike konfigurasie: %s"
-
-#: standalone/drakTermServ:1136
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Laat plaaslike hardeware-\n"
-"konfigurasie toe."
-
-#: standalone/drakTermServ:1146
-#, c-format
-msgid "No net boot images created!"
-msgstr "Geen netwerk-selflaai beelde is geskep"
-
-#: standalone/drakTermServ:1165
-#, c-format
-msgid "Thin Client"
-msgstr "Maerkliënt"
-
-#: standalone/drakTermServ:1169
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "Laat Maerkliënte toe"
-
-#: standalone/drakTermServ:1170
-#, c-format
-msgid ""
-"Sync client X keyboard\n"
-" settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:1171
-#, c-format
-msgid "Add Client -->"
-msgstr "Voeg Kliënt By -->"
-
-#: standalone/drakTermServ:1181
-#, c-format
-msgid "Unknown MAC address format"
-msgstr ""
-
-#: standalone/drakTermServ:1195
-#, c-format
-msgid "type: fat"
-msgstr "tipe: fat"
-
-#: standalone/drakTermServ:1196
-#, c-format
-msgid "type: thin"
-msgstr "tipe: dun"
-
-#: standalone/drakTermServ:1203
-#, c-format
-msgid "local config: false"
-msgstr "plaaslike konfigurasie: onwaar"
-
-#: standalone/drakTermServ:1204
-#, c-format
-msgid "local config: true"
-msgstr "plaalike konfigurasie: waar"
-
-#: standalone/drakTermServ:1212
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Redigeer Kliënt"
-
-#: standalone/drakTermServ:1237
-#, c-format
-msgid "Disable Local Config"
-msgstr "Versper Plaaslike Konfigurasie"
-
-#: standalone/drakTermServ:1244
-#, c-format
-msgid "Delete Client"
-msgstr "Verwyder Kliënt"
-
-#: standalone/drakTermServ:1267
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-"Umoet die Vertoonbestuurder herbegin om die veranderinge te bekragtig.\n"
-"('service dm restart' - vanaf die konsole )"
-
-#: standalone/drakTermServ:1313
-#, c-format
-msgid "Thin clients will not work with autologin. Disable autologin?"
-msgstr ""
-
-#: standalone/drakTermServ:1328
-#, c-format
-msgid "All clients will use %s"
-msgstr ""
-
-#: standalone/drakTermServ:1362
-#, c-format
-msgid "Subnet:"
-msgstr "Subnet:"
-
-#
-#: standalone/drakTermServ:1369
-#, c-format
-msgid "Netmask:"
-msgstr "Netmasker:"
-
-#: standalone/drakTermServ:1376
-#, c-format
-msgid "Routers:"
-msgstr "Roteerders:"
-
-#: standalone/drakTermServ:1383
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Subnet-masker:"
-
-#: standalone/drakTermServ:1390
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Uitsaai-adres:"
-
-#: standalone/drakTermServ:1397
-#, c-format
-msgid "Domain Name:"
-msgstr "Domeinnaam:"
-
-#: standalone/drakTermServ:1405
-#, c-format
-msgid "Name Servers:"
-msgstr "DNS-bedieners:"
-
-#: standalone/drakTermServ:1416
-#, c-format
-msgid "IP Range Start:"
-msgstr "Begin van IP-reeks:"
-
-#: standalone/drakTermServ:1417
-#, c-format
-msgid "IP Range End:"
-msgstr "IP-Reeks se Einde:"
-
-#: standalone/drakTermServ:1459
-#, c-format
-msgid "Append TS Includes To Existing Config"
-msgstr ""
-
-#: standalone/drakTermServ:1461
-#, c-format
-msgid "Write Config"
-msgstr "Skryf Konfigurasie"
-
-#: standalone/drakTermServ:1477
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "dhcpd Bediener-konfigurasie"
-
-#: standalone/drakTermServ:1478
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"Meeste van hierdie waardes kom\n"
-"uit u huidige konfigurasie.\n"
-"U kan dit verander soos benodig."
-
-#: standalone/drakTermServ:1481
-#, c-format
-msgid ""
-"Dynamic IP Address Pool\n"
-"(needed for PXE clients):"
-msgstr ""
-
-#: standalone/drakTermServ:1634
-#, c-format
-msgid "Write to %s failed!"
-msgstr ""
-
-#: standalone/drakTermServ:1647
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Plaas disket in aandrywer:"
-
-#: standalone/drakTermServ:1651
-#, c-format
-msgid "Could not access the floppy!"
-msgstr "Geen toegang tot skyf nie!"
-
-#: standalone/drakTermServ:1653
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Disket kan nou verwyder word"
-
-#: standalone/drakTermServ:1656
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Geen disketdrywer beskikbaar nie!"
-
-#: standalone/drakTermServ:1662
-#, c-format
-msgid "PXE image is %s/%s"
-msgstr "PXE beeld is %s/%s"
-
-#: standalone/drakTermServ:1664
-#, c-format
-msgid "Error writing %s/%s"
-msgstr "Fout met die skryf van %s/%s"
-
-#: standalone/drakTermServ:1676
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "Etherboot ISO-beeld is %s"
-
-#: standalone/drakTermServ:1680
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Iets is fout! - Is mkisofs geïnstalleer?"
-
-#: standalone/drakTermServ:1700
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Moet eers '/etc/dhcpd.conf skep!"
-
-#: standalone/drakTermServ:1867
-#, c-format
-msgid "%s passwd bad in Terminal Server - rewriting...\n"
-msgstr "%s se wagwoord nie korek in Terminaal-bediener - herskryf...\n"
-
-#: standalone/drakTermServ:1880
-#, c-format
-msgid "%s is not a user..\n"
-msgstr "%s is nie 'n gebruiker nie...\n"
-
-#: standalone/drakTermServ:1881
-#, c-format
-msgid "%s is already a Terminal Server user\n"
-msgstr "%s is alreeds 'n gebruiker op die Terminaal-bediener\n"
-
-#: standalone/drakTermServ:1883
-#, c-format
-msgid "Addition of %s to Terminal Server failed!\n"
-msgstr "Probleme met die byvoeg van %s op die Terminaal-bediener\n"
-
-#: standalone/drakTermServ:1885
-#, c-format
-msgid "%s added to Terminal Server\n"
-msgstr "%s is bygevoeg by die Terninaal-bediener\n"
-
-#: standalone/drakTermServ:1903
-#, c-format
-msgid "Deleted %s...\n"
-msgstr "%s bespeur...\n"
-
-#: standalone/drakTermServ:1905 standalone/drakTermServ:1978
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s is nie gevind nie...\n"
-
-#: standalone/drakTermServ:2006
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr "'/etc/hosts.allow' en 'etc'hosts.deny' is alreeds gekonfigureer"
-
-#: standalone/drakTermServ:2158
-#, c-format
-msgid "Configuration changed - restart %s/dhcpd?"
-msgstr "Konfigurasie het verander - herbegin '%s/dhcpd'?"
-
-#: standalone/drakautoinst:38 standalone/drakhosts:123
-#: standalone/drakhosts:129 standalone/draknfs:84 standalone/draknfs:105
-#: standalone/draknfs:444 standalone/draknfs:447 standalone/draknfs:539
-#: standalone/draknfs:546 standalone/draksambashare:187
-#: standalone/draksambashare:208 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Error!"
-msgstr "Fout!"
-
-#: standalone/drakautoinst:39
-#, c-format
-msgid "I can not find needed image file `%s'."
-msgstr "Ek kan nie die nodige herlaaibeeld '%s' kry nie."
-
-#: standalone/drakautoinst:41
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Outoinstallasiekonfigurasieprogram"
-
-#: standalone/drakautoinst:42
-#, c-format
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Press ok to continue."
-msgstr ""
-"U gaan nou 'n Outomatiese Installasie disket opstel. Die gebruik daarvan kan "
-"gevaarlik wees, en u moet bewus wees daarvan.\n"
-"\n"
-"Dit laat u toe om die installasie, wat u op hierdie rekenaar uitgevoer het, "
-"te kan herhaal.(op 'n ander rekenaar) U sal hier en daar gevra word om die "
-"waardes van sekere stappe te verander, sou u so verkies.\n"
-"\n"
-"Die skep van partisies en formattering daarvan sal altyd nog voor gevra word."
-"Dit is om te verhoed dat u ongewense glipse maak.\n"
-"\n"
-"Sal ons voortgaan?"
-
-#: standalone/drakautoinst:60
-#, c-format
-msgid "replay"
-msgstr "herspeel"
-
-#: standalone/drakautoinst:60 standalone/drakautoinst:69
-#, c-format
-msgid "manual"
-msgstr "selfdoen"
-
-#: standalone/drakautoinst:64
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Outomatiese Stappe Konfigurasie"
-
-#: standalone/drakautoinst:65
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Gaan asseblief deur elke stap, en kies of dit moet herspeel soos tydens die "
-"installasie, of dit vir u moet wag"
-
-#: standalone/drakautoinst:77 standalone/drakautoinst:78
-#: standalone/drakautoinst:92
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Outo-installasieskyf word geskep."
-
-#: standalone/drakautoinst:90
-#, fuzzy, c-format
-msgid "Insert another blank floppy in drive %s (for drivers disk)"
-msgstr "Sit 'n leë floppie in aandrywer %s"
-
-#: standalone/drakautoinst:91
-#, fuzzy, c-format
-msgid "Creating auto install floppy (drivers disk)"
-msgstr "Outo-installasieskyf word geskep."
-
-#: standalone/drakautoinst:156
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Welkom.\n"
-"\n"
-"Die parameters van die outo-installasie is beskikbaar in die linker afdelings"
-
-#: standalone/drakautoinst:251
-#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Die floppie is sukselvol geskep.\n"
-"U kan nou weer 'n installasie uitspeel."
-
-#: standalone/drakautoinst:287
-#, c-format
-msgid "Auto Install"
-msgstr "Outomatiese-installasie"
-
-#: standalone/drakautoinst:356
-#, c-format
-msgid "Add an item"
-msgstr "Voeg 'n item by"
-
-#: standalone/drakautoinst:363
-#, c-format
-msgid "Remove the last item"
-msgstr "Verwyder die laaste item"
-
-#: standalone/drakbackup:157
-#, c-format
-msgid ""
-"Expect is an extension to the TCL scripting language that allows interactive "
-"sessions without user intervention."
-msgstr ""
-"'Expect' is 'n uitbreiding op die Tcl-skriptaal. Dit kan interaktiewe "
-"sessies, SONDER dat die gebruiker inmeng, meebring."
-
-#: standalone/drakbackup:158
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "Stoor hierdie rekenaar se wagwoord in 'drakbackup' se konfigurasie."
-
-#: standalone/drakbackup:159
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
-"Slegs die eerste sessie sal die cdrw uitvee, INDIEN u 'n multi-sessie CD "
-"gebruik. Andersins sal die cdrw uitgevee word met elke rugsteun."
-
-#: standalone/drakbackup:160
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-"Hierdie opsie sal lêers wat verander het stoor. Presiese gedrag hang af "
-"indien Aanwas of Differensiële modus gebruik word."
-
-#: standalone/drakbackup:161
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-"'n Aanwas-rugsteun stoor slegs lêers wat nuut bygekom het of die wat "
-"verander het sedert die laaste rugsteun."
-
-#: standalone/drakbackup:162
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"'n Differensiële rugsteun stoor slegs die lêers wat nuut bygekom het, of "
-"verander is, sedert die 'base' rugsteun gedoen is."
-
-#: standalone/drakbackup:163
-#, c-format
-msgid ""
-"Star should be selected if you want to backup EA or ACLs, otherwise choose "
-"tar"
-msgstr ""
-
-#: standalone/drakbackup:164
-#, fuzzy, c-format
-msgid ""
-"This should be a local user or email address that you want the backup "
-"results sent to. You will need to define a functioning mail server. Multiple "
-"users can be in a comma seperated list"
-msgstr ""
-"Hierdie moet 'n plaaslike gebruiker of die e-posadres waarna u die resultate "
-"van die rugsteun na toe wil stuur. Spesifiseer 'n funksionele e-pos bediener"
-
-#: standalone/drakbackup:165
-#, fuzzy, c-format
-msgid ""
-"This should be the return address that you want the backup results sent "
-"from. Default is drakbackup."
-msgstr ""
-"Hierdie moet 'n plaaslike gebruiker of die e-posadres waarna u die resultate "
-"van die rugsteun na toe wil stuur. Spesifiseer 'n funksionele e-pos bediener"
-
-#: standalone/drakbackup:166
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-"Lêers of wisselkaarte wat in die '.backupignore' lêer in die top van 'n "
-"gidsboom gelys is, sal nie deel van die rugsteun wees nie."
-
-#: standalone/drakbackup:167
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-"Indien u 'n rugsteun na 'n ander media skryf, sal daar eers lêers op die "
-"hardeskyf geskep word en dan oorgeskuif word. Om daarna hierdie 'tar' lêers "
-"van u hardeskyf te verwyder, moet u hierdie opsie aktiveer."
-
-#: standalone/drakbackup:168
-#, c-format
-msgid ""
-"Selecting this option allows you to view the raw output from the restore "
-"process, after a file restore."
-msgstr ""
-
-#: standalone/drakbackup:169
-#, c-format
-msgid ""
-"Some protocols, like rsync, may be configured at the server end. Rather "
-"than using a directory path, you would use the 'module' name for the service "
-"path."
-msgstr ""
-"Party protokolle, soos 'rsync', kan aan die bediener se kan gekonfigureer "
-"word. In pleks van 'n roete na die lêergids te gebruik, sal u die 'module' "
-"naam vir die diens se roete gebruik."
-
-#: standalone/drakbackup:170
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"Aangepaste, laat u toe om u eie dag en tyd te spesifiseer. Die ander opsies "
-"gebruik crontab inskrywings in '/etc/crontab'."
-
-#: standalone/drakbackup:344
-#, c-format
-msgid "No media selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:348
-#, c-format
-msgid "No interval selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:393
-#, c-format
-msgid "Interval cron not available as non-root"
-msgstr "Interval Cron nie beskikbaar vir normale gebruikers"
-
-#: standalone/drakbackup:477 standalone/logdrake:439
-#, c-format
-msgid "\"%s\" neither is a valid email nor is an existing local user!"
-msgstr "\"%s\" is nie 'n korrekte e-posadres of 'n plaaslike gebruiker nie!"
-
-#: standalone/drakbackup:481 standalone/logdrake:444
-#, 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\" is 'n plaaslike gebruiker, maar u het nie 'n plaaslike SMTP gekies "
-"nie. Hieroor moet u 'n volledige e-posadres voorsien!"
-
-#: standalone/drakbackup:491
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr "Geldige lys van gebruikers het verander, herskryf konfigurasie-lêer."
-
-#: standalone/drakbackup:493
-#, c-format
-msgid "Old user list:\n"
-msgstr "Ou gebruiker-lys:\n"
-
-#: standalone/drakbackup:495
-#, c-format
-msgid "New user list:\n"
-msgstr "Lys van nuwe gebruikers:\n"
-
-#: standalone/drakbackup:524
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
-msgstr ""
-"\n"
-" DrakBackup Verslag \n"
-
-#: standalone/drakbackup:525
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-msgstr ""
-"\n"
-" DrakBackup Daemon Verslag\n"
-
-#: standalone/drakbackup:531
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup Raporteer Detail\n"
-"\n"
-"\n"
-
-#: standalone/drakbackup:556 standalone/drakbackup:627
-#: standalone/drakbackup:683
-#, c-format
-msgid "Total progress"
-msgstr "Totale vordering"
-
-#: standalone/drakbackup:609
-#, c-format
-msgid ""
-"%s exists, delete?\n"
-"\n"
-"If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-"%s bestaan, verwyder dit?\n"
-"\n"
-"Indien u reeds hierdie stap deurgegaan het, sal u\n"
-"moontlik die inskrywing moet verwyder uit die 'authorized_keys' \n"
-"op die bediener."
-
-#: standalone/drakbackup:618
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "Dit sal 'n rukkie neem om die sleutels te genereer."
-
-#: standalone/drakbackup:625
-#, c-format
-msgid "Cannot spawn %s."
-msgstr "Kan nie %s voortbring nie."
-
-#: standalone/drakbackup:642
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "Geen wagwoord-porteks op %s by poort %s"
-
-#: standalone/drakbackup:643
-#, c-format
-msgid "Bad password on %s"
-msgstr "Slegte wagwoord op %s"
-
-#: standalone/drakbackup:644
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "Toegang geweier met die oordrag van %s na %s"
-
-#: standalone/drakbackup:645
-#, c-format
-msgid "Can not find %s on %s"
-msgstr "Kan nie %s op %s vind nie"
-
-#: standalone/drakbackup:649
-#, c-format
-msgid "%s not responding"
-msgstr "%s reageer nie"
-
-#: standalone/drakbackup:653
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-"Suksesvolle Oordrag\n"
-"U kan net seker maak dat u by die bediener kan inteken:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"sonder om 'n wagwoord-porteks te ontvang."
-
-#: standalone/drakbackup:703
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "Geen CD-R/DVD-R in aandrywer!"
-
-#: standalone/drakbackup:707
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Wil voorkom of dit nie skryfbare media is nie!"
-
-#: standalone/drakbackup:712
-#, c-format
-msgid "Not erasable media!"
-msgstr "Nie-uitveebare media!"
-
-#: standalone/drakbackup:754
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Dit mag 'n rukkie duur om die media uit te vee."
-
-#: standalone/drakbackup:812
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Toegangsprobleme na CD"
-
-#: standalone/drakbackup:840
-#, c-format
-msgid "No tape in %s!"
-msgstr "Geen band in %s!"
-
-#: standalone/drakbackup:953
-#, c-format
-msgid ""
-"Backup destination quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-
-#: standalone/drakbackup:973 standalone/drakbackup:1005
-#, c-format
-msgid "Backup system files..."
-msgstr "Maak 'n rugsteun van die 'system'-lêers..."
-
-#: standalone/drakbackup:1006 standalone/drakbackup:1045
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Hardeskyf Rugsteun lêers..."
-
-#: standalone/drakbackup:1044
-#, c-format
-msgid "Backup User files..."
-msgstr "Rugsteun Gebruiker-lêers..."
-
-#: standalone/drakbackup:1078
-#, c-format
-msgid "Backup Other files..."
-msgstr "Skep 'n rugsteun van \"ander \" lêers..."
-
-#: standalone/drakbackup:1079
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Hardeskyf Rugsteun Vordering..."
-
-#: standalone/drakbackup:1084
-#, c-format
-msgid "No changes to backup!"
-msgstr "Geen veranderinge, geen rugsteun!"
-
-#: standalone/drakbackup:1100 standalone/drakbackup:1122
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-"\n"
-"Drakbackup aktiviteite deur %s:\n"
-"\n"
-
-#: standalone/drakbackup:1109
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"Probleem met FTP-konneksie: dit was nie moontlik om u lêers via FTP te "
-"rugsteun nie.\n"
-
-#: standalone/drakbackup:1110
-#, c-format
-msgid ""
-"Error during sending file via FTP. Please correct your FTP configuration."
-msgstr ""
-"Probleme met die stuur van die lêer via FTP. Gaan asseblief u FTP-"
-"konfigurasie na."
-
-#: standalone/drakbackup:1112
-#, c-format
-msgid "file list sent by FTP: %s\n"
-msgstr "lêerlys deur FTPgestuur: %s\n"
-
-#: standalone/drakbackup:1127
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-"\n"
-"Drakbackup aktiviteite via CD:\n"
-"\n"
-
-#: standalone/drakbackup:1132
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-"\n"
-"Drakbackup deur magnetiese band:\n"
-"\n"
-
-#: standalone/drakbackup:1141
-#, c-format
-msgid "Error sending mail. Your report mail was not sent."
-msgstr "Fout met stuur van e-pos. U verslag is nie gepos nie."
-
-#: standalone/drakbackup:1142
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr "Fout met die stuur van e-pos. \n"
-
-#: standalone/drakbackup:1172
-#, c-format
-msgid "Can not create catalog!"
-msgstr "Kan nie katalogus skep nie!"
-
-#: standalone/drakbackup:1332
-#, fuzzy, c-format
-msgid "Problem installing %s"
-msgstr "Probleme met Installasue van pakket %s"
-
-#: standalone/drakbackup:1420
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Rugsteun u stelsel-lêers: (/etc lêergids)"
-
-#: standalone/drakbackup:1421 standalone/drakbackup:1484
-#: standalone/drakbackup:1550
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr ""
-"Gebruik Aanwas-/Differensiële-rugsteune (moet nie ou regsteune vervang nie)"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Gebruik Aanwas-rugsteun"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Gebruik Differensiële Rugsteune"
-
-#: standalone/drakbackup:1425
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Moet nie kritiese lêers insluit nie (passwd, group, fstab)"
-
-#: standalone/drakbackup:1456
-#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Kies al die gebruikers wie ingesluit moet word by die rugsteun."
-
-#: standalone/drakbackup:1483
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Moet nie die blaaier se kasgeheue insluit nie"
-
-#: standalone/drakbackup:1537
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Kies die lêers en lêergidse, klik daarna op 'OK'"
-
-#: standalone/drakbackup:1538 standalone/drakfont:650
-#, c-format
-msgid "Remove Selected"
-msgstr "Verwyder Gekose"
-
-#: standalone/drakbackup:1601
-#, c-format
-msgid "Users"
-msgstr "Gebruikers"
-
-#: standalone/drakbackup:1621
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Gebruik netwerkkonneksie vir rugsteun"
-
-#: standalone/drakbackup:1623
-#, c-format
-msgid "Net Method:"
-msgstr "Netwerkmetode:"
-
-#: standalone/drakbackup:1627
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Gebruik, behalwe vir SSH"
-
-#: standalone/drakbackup:1628
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "Skep/Dra rugsteun sleutels vir SSH oor"
-
-#: standalone/drakbackup:1630
-#, c-format
-msgid "Transfer Now"
-msgstr "Dra Nou Oor"
-
-#: standalone/drakbackup:1632
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Ander (nie drakbackup) sleutels alreeds in plek"
-
-#
-#: standalone/drakbackup:1635
-#, c-format
-msgid "Host name or IP."
-msgstr "Rekenaarnaam of IP"
-
-#: standalone/drakbackup:1640
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
-"Lêergids (of module) waarop rugsteun vir hierdie rekenaar geplaas moet word."
-
-#: standalone/drakbackup:1652
-#, c-format
-msgid "Remember this password"
-msgstr "Onthou hierdie wagwoord"
-
-#: standalone/drakbackup:1664
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Benodig rekenaarnaam, gebruikernaam en wagwoord!"
-
-#: standalone/drakbackup:1755
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Gebruik CD-R/DVD-R vir maak van rugsteun"
-
-#: standalone/drakbackup:1758
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Kies u CD/DVD toestel"
-
-#: standalone/drakbackup:1763
-#, c-format
-msgid "Choose your CD/DVD media size"
-msgstr "Kies die mediagrootte van u CD/DVD"
-
-#: standalone/drakbackup:1770
-#, c-format
-msgid "Multisession CD"
-msgstr "Multisessie-CD"
-
-#: standalone/drakbackup:1772
-#, c-format
-msgid "CDRW media"
-msgstr "CDRW media"
-
-#: standalone/drakbackup:1778
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Vee u RW-media uit (1e Sessie)"
-
-#: standalone/drakbackup:1779
-#, c-format
-msgid " Erase Now "
-msgstr " Wis Nou "
-
-#: standalone/drakbackup:1785
-#, c-format
-msgid "DVD+RW media"
-msgstr "DVD+RW-media"
-
-#: standalone/drakbackup:1787
-#, c-format
-msgid "DVD-R media"
-msgstr "DVD-R-media"
-
-#: standalone/drakbackup:1789
-#, c-format
-msgid "DVDRAM device"
-msgstr "DVDRAM-toestel"
-
-#: standalone/drakbackup:1820
-#, c-format
-msgid "No CD device defined!"
-msgstr "Geen opgestelde CD!"
-
-#: standalone/drakbackup:1862
-#, c-format
-msgid "Use tape to backup"
-msgstr "Skryf rugsteun na magnetiese band"
-
-#: standalone/drakbackup:1865
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Toestel om vir rugsteun te gebruik"
-
-#: standalone/drakbackup:1871
-#, c-format
-msgid "Backup directly to tape"
-msgstr ""
-
-#: standalone/drakbackup:1877
-#, c-format
-msgid "Use tape hardware compression (EXPERIMENTAL)"
-msgstr ""
-
-#: standalone/drakbackup:1883
-#, c-format
-msgid "Do not rewind tape after backup"
-msgstr "Geen opwen na rugsteun"
-
-#: standalone/drakbackup:1889
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Vee magnetiese band uit, voor begin met rugsteun"
-
-#: standalone/drakbackup:1895
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Skop band uit na die rugsteun"
-
-#
-#: standalone/drakbackup:1976
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Voorsien die lêergids om na te stoor:"
-
-#
-#: standalone/drakbackup:1980
-#, fuzzy, c-format
-msgid "Directory to save to"
-msgstr "Voorsien die lêergids om na te stoor:"
-
-#: standalone/drakbackup:1985
-#, c-format
-msgid ""
-"Maximum disk space\n"
-" allocated for backups (MB)"
-msgstr ""
-
-#: standalone/drakbackup:1989
-#, c-format
-msgid ""
-"Delete incremental or differential\n"
-" backups older than N days\n"
-" (0 is keep all backups) to save space"
-msgstr ""
-
-#: standalone/drakbackup:2056
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CD-R / DVD-R"
-
-#: standalone/drakbackup:2061
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Hardeskyf / NFS"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2077
-#: standalone/drakbackup:2082
-#, c-format
-msgid "hourly"
-msgstr "uurliks"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2078
-#: standalone/drakbackup:2083
-#, c-format
-msgid "daily"
-msgstr "daagliks"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2079
-#: standalone/drakbackup:2084
-#, c-format
-msgid "weekly"
-msgstr "weekliks"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2080
-#: standalone/drakbackup:2085
-#, c-format
-msgid "monthly"
-msgstr "maandeliks"
-
-#
-#: standalone/drakbackup:2076 standalone/drakbackup:2081
-#: standalone/drakbackup:2086
-#, c-format
-msgid "custom"
-msgstr "aangepaste"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "January"
-msgstr "Januarie"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "February"
-msgstr "Februarie"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "March"
-msgstr "Maart"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "April"
-msgstr "April"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "May"
-msgstr "Mei"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "June"
-msgstr "Junie"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "July"
-msgstr "Julie"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "August"
-msgstr "Augustus"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "September"
-msgstr "September"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "October"
-msgstr "Oktober"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "November"
-msgstr "November"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "December"
-msgstr "Desember"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Sunday"
-msgstr "Sondag"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Monday"
-msgstr "Maandag"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Tuesday"
-msgstr "Dinsdag"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Wednesday"
-msgstr "Woensdag"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Thursday"
-msgstr "Donderdag"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Friday"
-msgstr "Vrydag"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Saturday"
-msgstr "Saterdag"
-
-#: standalone/drakbackup:2126
-#, fuzzy, c-format
-msgid "Delete cron entry"
-msgstr "Verwyder Kliënt"
-
-#: standalone/drakbackup:2127
-#, fuzzy, c-format
-msgid "Add cron entry"
-msgstr "Voeg Drukker By"
-
-#: standalone/drakbackup:2185
-#, c-format
-msgid "Use daemon"
-msgstr "Gebruik daemoon"
-
-#: standalone/drakbackup:2189
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Kies asseblief die tydsinterval tussen elke rugsteun"
-
-#: standalone/drakbackup:2197
-#, c-format
-msgid "Minute"
-msgstr "Minuut"
-
-#: standalone/drakbackup:2201
-#, c-format
-msgid "Hour"
-msgstr "Uur"
-
-#: standalone/drakbackup:2205
-#, c-format
-msgid "Day"
-msgstr "Dag"
-
-#: standalone/drakbackup:2209
-#, c-format
-msgid "Month"
-msgstr "Maand"
-
-#: standalone/drakbackup:2213
-#, fuzzy, c-format
-msgid "Weekday (start)"
-msgstr "Weeksdag"
-
-#: standalone/drakbackup:2217
-#, fuzzy, c-format
-msgid "Weekday (end)"
-msgstr "Weeksdag"
-
-#: standalone/drakbackup:2221
-#, fuzzy, c-format
-msgid "Profile"
-msgstr "Profille"
-
-#: standalone/drakbackup:2227
-#, fuzzy, c-format
-msgid "Current crontab:"
-msgstr "Huidige gebruiker"
-
-#: standalone/drakbackup:2235
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "Kies asseblief die media vir die rugsteun."
-
-#: standalone/drakbackup:2239
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Maak tog seker dat 'cron' deel is van u dienste."
-
-#: standalone/drakbackup:2240
-#, c-format
-msgid ""
-"If your machine is not on all the time, you might want to install anacron."
-msgstr ""
-
-#: standalone/drakbackup:2316
-#, fuzzy, c-format
-msgid "Please choose the archive program"
-msgstr "Kies asseblief die datum om te herstel:"
-
-#: standalone/drakbackup:2321
-#, fuzzy, c-format
-msgid "Please choose the compression type"
-msgstr "Kies asseblief die datum om te herstel:"
-
-#: standalone/drakbackup:2325
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Gebruik '.backupignore'-lêers"
-
-#: standalone/drakbackup:2327
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Stuur 'n e-posverslag na elke rugsteun na:"
-
-#: standalone/drakbackup:2333
-#, c-format
-msgid "Return address for sent mail:"
-msgstr ""
-
-#: standalone/drakbackup:2339
-#, c-format
-msgid "SMTP server for mail:"
-msgstr "SMTP-bedienernaam:"
-
-#: standalone/drakbackup:2343
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
-"Verwyder .tar-lêers vanaf hardeskyf, sodra 'n rugsteun na\n"
-"ander media voltooi."
-
-#: standalone/drakbackup:2344
-#, fuzzy, c-format
-msgid "View restore log after file restore."
-msgstr "OK om die ander lêers te herstel."
-
-#: standalone/drakbackup:2389
-#, c-format
-msgid "What"
-msgstr "Wat"
-
-#
-#: standalone/drakbackup:2394
-#, c-format
-msgid "Where"
-msgstr "Waar"
-
-#
-#: standalone/drakbackup:2399
-#, c-format
-msgid "When"
-msgstr "Wanneer"
-
-#: standalone/drakbackup:2404
-#, c-format
-msgid "More Options"
-msgstr "Meer Opsies"
-
-#: standalone/drakbackup:2417
-#, c-format
-msgid "Backup destination not configured..."
-msgstr "Rugsteun se bestemming nie opgestel nie..."
-
-#: standalone/drakbackup:2437 standalone/drakbackup:4367
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Drakbackup Konfigurasie"
-
-#: standalone/drakbackup:2453
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Kies asseblief die plek waarna u wil regsteun"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Hard Drive used to prepare backups for all media"
-msgstr "Hardeskyf word gebruik om alle rugsteune vir alle media voor te berei"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Across Network"
-msgstr "Oor Die Netwerk"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On CD-R"
-msgstr "Op CD-R"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On Tape Device"
-msgstr "Op Band-toestel"
-
-#: standalone/drakbackup:2502
-#, c-format
-msgid "Backup Users"
-msgstr "Rugsteun-gebruikers"
-
-#: standalone/drakbackup:2503
-#, c-format
-msgid " (Default is all users)"
-msgstr " (Verstek is alle gebruikers)"
-
-#: standalone/drakbackup:2516
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Kies asseblief wat u wil rugsteun"
-
-#: standalone/drakbackup:2517
-#, c-format
-msgid "Backup System"
-msgstr "Rugsteun Stelsel"
-
-#: standalone/drakbackup:2519
-#, c-format
-msgid "Select user manually"
-msgstr "Kies self gebruikers"
-
-#: standalone/drakbackup:2548
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Kies asseblief data wat gerugsteun moet word...."
-
-#: standalone/drakbackup:2620
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Rugsteun-bronne: \n"
-
-#: standalone/drakbackup:2621
-#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-" - Stelsel-lêers:\n"
-
-#: standalone/drakbackup:2623
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Gebruiker se Lêers:\n"
-
-#: standalone/drakbackup:2625
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Ander Lêers:\n"
-
-#: standalone/drakbackup:2627
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-"\n"
-"- Stoor op Hardeskyf op roete: %s\n"
-
-#: standalone/drakbackup:2628
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tBeperk gebruik van skyfspasie tot %s MB\n"
-
-#: standalone/drakbackup:2629
-#, c-format
-msgid "\tDelete backups older than %s day(s)\n"
-msgstr ""
-
-#: standalone/drakbackup:2632
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
-"\n"
-"- Verwyder .tar-lêers vanaf hardeskyf, na rugsteun.\n"
-
-#: standalone/drakbackup:2637
-#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr ""
-"\n"
-" Skryf na CD"
-
-#: standalone/drakbackup:2638
-#, c-format
-msgid "RW"
-msgstr "RW"
-
-#: standalone/drakbackup:2639
-#, c-format
-msgid " on device: %s"
-msgstr " op toestel: %s"
-
-#: standalone/drakbackup:2640
-#, c-format
-msgid " (multi-session)"
-msgstr " (multi-sessie)"
-
-#: standalone/drakbackup:2641
-#, c-format
-msgid ""
-"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-"\n"
-" Stoor na Band op toestel: %s"
-
-#: standalone/drakbackup:2642
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tVerwyder=%s"
-
-#: standalone/drakbackup:2644
-#, c-format
-msgid "\tBackup directly to Tape\n"
-msgstr ""
-
-#: standalone/drakbackup:2646
-#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
-"\n"
-"- Stoor via %s op rekenaar: %s\n"
-
-#: standalone/drakbackup:2647
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t gebruikernaam: %s\n"
-"\t\t op roete: %s \n"
-
-#: standalone/drakbackup:2648
-#, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"-Opsies:\n"
-
-#: standalone/drakbackup:2649
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tMoet nie stelsel-lêers insluit nie\n"
-
-#: standalone/drakbackup:2651
-#, fuzzy, c-format
-msgid "\tBackups use %s and bzip2\n"
-msgstr "\tRugsteun gebruik 'tar' en 'bzip2'\n"
-
-#: standalone/drakbackup:2652
-#, fuzzy, c-format
-msgid "\tBackups use %s and gzip\n"
-msgstr "\tRugsteun gebruik 'tar' en 'gzip'\n"
-
-#: standalone/drakbackup:2653
-#, fuzzy, c-format
-msgid "\tBackups use %s only\n"
-msgstr "\tRugsteun gebruik 'tar' en 'gzip'\n"
-
-#: standalone/drakbackup:2655
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\t Gebruik '.backupignore' lêers\n"
-
-#: standalone/drakbackup:2656
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tStuur e-pos na %s\n"
-
-#: standalone/drakbackup:2657
-#, c-format
-msgid "\tSend mail from %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2658
-#, c-format
-msgid "\tUsing SMTP server %s\n"
-msgstr "\tGebruik SMTP-bediener %s\n"
-
-#: standalone/drakbackup:2660
-#, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
-msgstr ""
-"\n"
-"- Daemoon %s via:\n"
-
-#: standalone/drakbackup:2661
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-Hardeskyf.\n"
-
-#: standalone/drakbackup:2662
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-R.\n"
-
-#: standalone/drakbackup:2663
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t - Band \n"
-
-#: standalone/drakbackup:2664
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Netwerk deur FTP.\n"
-
-#: standalone/drakbackup:2665
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t* Netwerk deur SSH.\n"
-
-#: standalone/drakbackup:2666
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-Netwerk deur 'rsync'.\n"
-
-#: standalone/drakbackup:2668
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Geen konfigurasie nie, gebruik Wysgeer of Gevorderd.\n"
-
-#: standalone/drakbackup:2673
-#, c-format
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Lys van data om te herstel:\n"
-"\n"
-
-#: standalone/drakbackup:2675
-#, c-format
-msgid "- Restore System Files.\n"
-msgstr "- Herstel- Stelsel-lêers.\n"
-
-#: standalone/drakbackup:2677 standalone/drakbackup:2687
-#, c-format
-msgid " - from date: %s %s\n"
-msgstr " - vanaf datum: %s %s\n"
-
-#: standalone/drakbackup:2680
-#, c-format
-msgid "- Restore User Files: \n"
-msgstr "- Herstel Gebruiker se Lêers: \n"
-
-#: standalone/drakbackup:2685
-#, c-format
-msgid "- Restore Other Files: \n"
-msgstr "-Herstel Ander Lêers: \n"
-
-#: standalone/drakbackup:2864
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Lys van korrupte data:\n"
-"\n"
-
-#: standalone/drakbackup:2866
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Moet nie kies nie, of verwyder dit die volgende keer."
-
-#: standalone/drakbackup:2876
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Rugsteun-lêers is korrup"
-
-#: standalone/drakbackup:2897
-#, c-format
-msgid " All of your selected data have been "
-msgstr " All u gekose data is "
-
-#: standalone/drakbackup:2898
-#, c-format
-msgid " Successfully Restored on %s "
-msgstr " Suksesvolle Herstel op %s "
-
-#: standalone/drakbackup:2999
-#, c-format
-msgid "/usr/bin/star not found, using tar..."
-msgstr ""
-
-#: standalone/drakbackup:3035
-#, c-format
-msgid " Restore Configuration "
-msgstr " Herstel Konfigurasie "
-
-#: standalone/drakbackup:3063
-#, c-format
-msgid "OK to restore the other files."
-msgstr "OK om die ander lêers te herstel."
-
-#: standalone/drakbackup:3079
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Gebruikers om te herstel ( slegs die mees onlangse datum / gebruiker is "
-"belangrik)"
-
-#: standalone/drakbackup:3144
-#, c-format
-msgid "Please choose the date to restore:"
-msgstr "Kies asseblief die datum om te herstel:"
-
-#: standalone/drakbackup:3181
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Herstel vanaf Hardeskyf"
-
-#
-#: standalone/drakbackup:3183
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Voorsien die lêergids waar rugsteun na geskryf gaan word"
-
-#: standalone/drakbackup:3187
-#, fuzzy, c-format
-msgid "Directory with backups"
-msgstr "Herstel alle rugsteune"
-
-#: standalone/drakbackup:3241
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Kies 'n ander media om vanaf te herstel"
-
-#: standalone/drakbackup:3243
-#, c-format
-msgid "Other Media"
-msgstr "Ander Media"
-
-#: standalone/drakbackup:3248
-#, c-format
-msgid "Restore system"
-msgstr "Herstel stelsel"
-
-#: standalone/drakbackup:3249
-#, c-format
-msgid "Restore Users"
-msgstr "Herstel Gebruikers"
-
-#: standalone/drakbackup:3250
-#, c-format
-msgid "Restore Other"
-msgstr "Herstel Ander"
-
-#: standalone/drakbackup:3252
-#, c-format
-msgid "Select path to restore (instead of /)"
-msgstr "kies roete om te herstel (instede van /)"
-
-#
-#: standalone/drakbackup:3256 standalone/drakbackup:3539
-#, fuzzy, c-format
-msgid "Path To Restore To"
-msgstr "Aangepaste-herstel"
-
-#: standalone/drakbackup:3259
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Maak 'n nuwe rugsteun voor herstel (slegs vir 'n aanwas-rugsteun.)"
-
-#: standalone/drakbackup:3261
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Verwyder gebruiker se lêergidse alvorens begin met die herstel."
-
-#: standalone/drakbackup:3345
-#, c-format
-msgid "Filename text substring to search for (empty string matches all):"
-msgstr "Lêernaam se teks om voor te soek(lëe string sal alles kies):"
-
-#: standalone/drakbackup:3348
-#, c-format
-msgid "Search Backups"
-msgstr "Deursoek Rugsteun"
-
-#: standalone/drakbackup:3367
-#, c-format
-msgid "No matches found..."
-msgstr "Geen trefslae gevind nie..."
-
-#: standalone/drakbackup:3371
-#, c-format
-msgid "Restore Selected"
-msgstr "Verwyder Gekose"
-
-#: standalone/drakbackup:3507
-#, c-format
-msgid ""
-"Click date/time to see backup files.\n"
-"Ctrl-Click files to select multiple files."
-msgstr ""
-"Klik datum/tyd om die rugsteun-lêers te sien.\n"
-"Ctrl-klik lêers om 'n verskeidenheid te kies."
-
-#: standalone/drakbackup:3513
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
-"Herstel Gekose\n"
-"Katalogus-inskrywing"
-
-#: standalone/drakbackup:3522
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr ""
-"Herstel Gekose\n"
-"Lêers"
-
-#: standalone/drakbackup:3599
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "Kon nie rugsteun-lêers by %s vind nie"
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid "Restore From CD"
-msgstr "Herstel vanaf CD"
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-"Plaas CD met die volume-naam %s\n"
-"in die CD-aandrywer onder hegpunt /mnt/cdrom"
-
-#: standalone/drakbackup:3614
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "Nie die korrekte CD nie. CD is %s genoem."
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid "Restore From Tape"
-msgstr "Herstel vanaf Magnetiese Band"
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-"Plaas band met volume-naam %s\n"
-"in die aandrywer %s"
-
-#: standalone/drakbackup:3626
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Nie die korrekte etiket nie. Band se etiket is %s."
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network"
-msgstr "Herstel Deur Netwerk"
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Herstel Via Netwerkprotokol: %s"
-
-#
-#: standalone/drakbackup:3638
-#, c-format
-msgid "Host Name"
-msgstr "Rekenaarnaam"
-
-#: standalone/drakbackup:3639
-#, c-format
-msgid "Host Path or Module"
-msgstr "Roete na Rekenaar of Module"
-
-#: standalone/drakbackup:3646
-#, c-format
-msgid "Password required"
-msgstr "Benodig wagwoord"
-
-#: standalone/drakbackup:3652
-#, c-format
-msgid "Username required"
-msgstr "Benodig gebruikerskode"
-
-#: standalone/drakbackup:3655
-#, c-format
-msgid "Hostname required"
-msgstr "Rekenaarnaam word benodig"
-
-#: standalone/drakbackup:3660
-#, c-format
-msgid "Path or Module required"
-msgstr "Benodig Roete of Module"
-
-#: standalone/drakbackup:3672
-#, c-format
-msgid "Files Restored..."
-msgstr "Lêers Wat Herstel Is...."
-
-#: standalone/drakbackup:3675
-#, c-format
-msgid "Restore Failed..."
-msgstr "Herstel Het Gefaal..."
-
-#: standalone/drakbackup:3703
-#, c-format
-msgid "%s not retrieved..."
-msgstr "%s is nie gevind nie.."
-
-#: standalone/drakbackup:3929 standalone/drakbackup:3998
-#, c-format
-msgid "Search for files to restore"
-msgstr "Opsoek na lêers om te herstel"
-
-#: standalone/drakbackup:3933
-#, c-format
-msgid "Restore all backups"
-msgstr "Herstel alle rugsteune"
-
-#
-#: standalone/drakbackup:3941
-#, c-format
-msgid "Custom Restore"
-msgstr "Aangepaste-herstel"
-
-#: standalone/drakbackup:3945 standalone/drakbackup:3994
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Herstel Vanaf Katalogus"
-
-#: standalone/drakbackup:3966
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Kon nie 'n rugsteun om te herstel vind nie...\n"
-
-#: standalone/drakbackup:3967
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Is %s die korrekte roete?"
-
-#: standalone/drakbackup:3968
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " en die CD in die aandrywer is"
-
-#: standalone/drakbackup:3970
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr "Rugsteune op nie-hegbare media - Gebruik Katologus vir herstel"
-
-#: standalone/drakbackup:3986
-#, c-format
-msgid "CD in place - continue."
-msgstr "CD in sy plek - gaan voort."
-
-#: standalone/drakbackup:3991
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Blaai tot by nuwe herstel-pakplek."
-
-#: standalone/drakbackup:3992
-#, fuzzy, c-format
-msgid "Directory To Restore From"
-msgstr "Herstel vanaf CD"
-
-#: standalone/drakbackup:4028
-#, c-format
-msgid "Restore Progress"
-msgstr "Vordering van Herstel"
-
-#: standalone/drakbackup:4136
-#, c-format
-msgid "Build Backup"
-msgstr "Rugsteun in Aanbou"
-
-#: standalone/drakbackup:4169 standalone/drakbackup:4466
-#, c-format
-msgid "Restore"
-msgstr "Herstel"
-
-#: standalone/drakbackup:4261
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Kies asseblief data om te herstel..."
-
-#: standalone/drakbackup:4301
-#, c-format
-msgid "Backup system files"
-msgstr "Rugsteun die stelsel-lêers"
-
-#: standalone/drakbackup:4304
-#, c-format
-msgid "Backup user files"
-msgstr "Rugsteun gebruiker se lêers"
-
-#: standalone/drakbackup:4307
-#, c-format
-msgid "Backup other files"
-msgstr "Rugsteun ander lêers"
-
-#: standalone/drakbackup:4310 standalone/drakbackup:4344
-#, c-format
-msgid "Total Progress"
-msgstr "Totale Vordering"
-
-#: standalone/drakbackup:4336
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Stuur lêers via FTP"
-
-#: standalone/drakbackup:4339
-#, c-format
-msgid "Sending files..."
-msgstr "Stuur lêers..."
-
-#: standalone/drakbackup:4409
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Maak nou 'n rugsteun vanaf konfigurasie-lêer"
-
-#: standalone/drakbackup:4414
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Bekyk Rugsteun-konfigurasie."
-
-#: standalone/drakbackup:4440
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Wysgeer Konfigurasie"
-
-#: standalone/drakbackup:4445
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Gevorderde-konfigurasie"
-
-#: standalone/drakbackup:4450
-#, c-format
-msgid "View Configuration"
-msgstr "Bekyk Konfigurasie"
-
-#: standalone/drakbackup:4454
-#, c-format
-msgid "View Last Log"
-msgstr "Bekyk Laaste Log"
-
-#: standalone/drakbackup:4459
-#, c-format
-msgid "Backup Now"
-msgstr "Rugsteun Nou"
-
-#: standalone/drakbackup:4463
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Geen konfigurasielêer te vinde \n"
-"klik op Wysgeer of Gevorderd."
-
-#: standalone/drakbackup:4501
-#, fuzzy, c-format
-msgid "Load profile"
-msgstr "Plaaslike lêer"
-
-#: standalone/drakbackup:4510
-#, fuzzy, c-format
-msgid "Save profile as..."
-msgstr "Stoor as.."
-
-#: standalone/drakbackup:4532 standalone/drakbackup:4535
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: standalone/drakboot:49
-#, c-format
-msgid "No bootloader found, creating a new configuration"
-msgstr ""
-
-#: standalone/drakboot:84 standalone/harddrake2:190 standalone/harddrake2:191
-#: standalone/logdrake:69 standalone/printerdrake:150
-#: standalone/printerdrake:151 standalone/printerdrake:152
-#, c-format
-msgid "/_File"
-msgstr "/_Lêer"
-
-#: standalone/drakboot:85 standalone/logdrake:75
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Lêer/_Verlaat"
-
-#: standalone/drakboot:85 standalone/harddrake2:191 standalone/logdrake:75
-#: standalone/printerdrake:152
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: standalone/drakboot:125
-#, c-format
-msgid "Text only"
-msgstr ""
-
-#: standalone/drakboot:126
-#, c-format
-msgid "Verbose"
-msgstr ""
-
-#: standalone/drakboot:127
-#, c-format
-msgid "Silent"
-msgstr "Stil"
-
-#: standalone/drakboot:134
-#, c-format
-msgid ""
-"Your system bootloader is not in framebuffer mode. To activate graphical "
-"boot, select a graphic video mode from the bootloader configuration tool."
-msgstr ""
-"U rekenaar se selflaai program is nie in \"framebuffer\"-modus nie. Om te "
-"aktiveer, kies 'n grafiese-video modus vanuit die selflaai nutsprogram."
-
-#: standalone/drakboot:135
-#, fuzzy, c-format
-msgid "Do you want to configure it now?"
-msgstr "Wil u die konfigurasie toets?"
-
-#: standalone/drakboot:144
-#, c-format
-msgid "Install themes"
-msgstr "Installeer temas"
-
-#: standalone/drakboot:146
-#, c-format
-msgid "Graphical boot theme selection"
-msgstr "Keuse van die Grafiese selflaai tema"
-
-#: standalone/drakboot:149
-#, fuzzy, c-format
-msgid "Graphical boot mode:"
-msgstr "Gebruik grafiese selflaai"
-
-#: standalone/drakboot:151
-#, c-format
-msgid "Theme"
-msgstr "Temas"
-
-#: standalone/drakboot:154
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"Vertoon tema\n"
-"onder konsole"
-
-#: standalone/drakboot:159
-#, c-format
-msgid "Create new theme"
-msgstr "Skep 'n nuwe tema"
-
-#: standalone/drakboot:191
-#, c-format
-msgid "Default user"
-msgstr "Verstekgebruiker"
-
-#: standalone/drakboot:192
-#, c-format
-msgid "Default desktop"
-msgstr "Verstek werkskerm"
-
-#: standalone/drakboot:195
-#, c-format
-msgid "No, I do not want autologin"
-msgstr "Nee, ek verlang NIE outo-aanteken NIE"
-
-#: standalone/drakboot:196
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Ja, ek verlang outo-inteken met hierdie (gebruiker,werkskerm)"
-
-#: standalone/drakboot:203
-#, c-format
-msgid "System mode"
-msgstr "Stelselmodus"
-
-#: standalone/drakboot:206
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Laai X-Windowstelsel met herlaai"
-
-#: standalone/drakboot:272
-#, c-format
-msgid ""
-"Please choose a video mode, it will be applied to each of the boot entries "
-"selected below.\n"
-"Be sure your video card supports the mode you choose."
-msgstr ""
-
-#: standalone/drakbug:41
-#, fuzzy, c-format
-msgid "Mandriva Linux Bug Report Tool"
-msgstr "Mandriva Linux Bug Report Tool"
-
-#: standalone/drakbug:46
-#, c-format
-msgid "Mandriva Linux Control Center"
-msgstr "Mandriva Linux Control Center"
-
-#: standalone/drakbug:48
-#, c-format
-msgid "Synchronization tool"
-msgstr "Sinkronisasie-nutsprogram"
-
-#: standalone/drakbug:49 standalone/drakbug:152
-#, c-format
-msgid "Standalone Tools"
-msgstr "Alleenstaande nutsprogramme"
-
-#: standalone/drakbug:50
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: standalone/drakbug:51
-#, c-format
-msgid "Mandriva Online"
-msgstr "Mandriva Online"
-
-#: standalone/drakbug:52
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
-
-#: standalone/drakbug:53
-#, c-format
-msgid "Msec"
-msgstr "Msec"
-
-#
-#: standalone/drakbug:54
-#, c-format
-msgid "Remote Control"
-msgstr "Eksterne Beheer"
-
-#: standalone/drakbug:55
-#, c-format
-msgid "Software Manager"
-msgstr "Software Manager"
-
-#: standalone/drakbug:56
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
-
-#: standalone/drakbug:57
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Nutsprogram vir Windows-migrasie "
-
-#: standalone/drakbug:58 standalone/draksambashare:1234
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: standalone/drakbug:59
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Konfigurasie-assistente"
-
-#: standalone/drakbug:81
-#, fuzzy, c-format
-msgid "Select Mandriva Tool:"
-msgstr "Mandriva Bug Report Tool"
-
-#: standalone/drakbug:82
-#, fuzzy, c-format
-msgid ""
-"or Application Name\n"
-"(or Full Path):"
-msgstr ""
-"Programnaam\n"
-"of volle roete:"
-
-#: standalone/drakbug:85
-#, c-format
-msgid "Find Package"
-msgstr "Soek Pakket"
-
-#: standalone/drakbug:87
-#, c-format
-msgid "Package: "
-msgstr "Pakket: "
-
-#: standalone/drakbug:88
-#, c-format
-msgid "Kernel:"
-msgstr "Kernel:"
-
-#: standalone/drakbug:101
-#, fuzzy, c-format
-msgid ""
-"To submit a bug report, click on the report button. \n"
-"This will open a web browser window on %s where you'll find a form to fill "
-"in. The information displayed above will be transferred to that server. \n"
-"Things useful to include in your report are the output of lspci, kernel "
-"version, and /proc/cpuinfo."
-msgstr ""
-"Klik die 'Verslag' knoppie, indien u 'n foutverslag wil instuur.\n"
-"Dit sal die blaaier oopmaak op %s\n"
-"en 'n vorm om in te vul aan u toon. Die bogenoemde inligting\n"
-"sal na daardie bediener gestuur word."
-
-#: standalone/drakbug:107
-#, c-format
-msgid "Report"
-msgstr "Verslag"
-
-#: standalone/drakbug:162
-#, c-format
-msgid "Not installed"
-msgstr "Nie geïnstalleeer"
-
-#: standalone/drakbug:174
-#, c-format
-msgid "Package not installed"
-msgstr "Pakket is nie geïnstalleer nie"
-
-#: standalone/drakclock:29
-#, c-format
-msgid "DrakClock"
-msgstr "DrakClock"
-
-#: standalone/drakclock:39
-#, fuzzy, c-format
-msgid "not defined"
-msgstr "nie gekonfigureer nie"
-
-#: standalone/drakclock:41
-#, c-format
-msgid "Change Time Zone"
-msgstr "Verander Tydsone"
-
-#: standalone/drakclock:45
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "Tydsone - DrakClock"
-
-#: standalone/drakclock:47
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "GMT - DrakClock"
-
-#: standalone/drakclock:47 standalone/finish-install:57
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Is u Hardewareklok gestel vir GMT?"
-
-#: standalone/drakclock:75
-#, c-format
-msgid "Network Time Protocol"
-msgstr "Network Time Protocol"
-
-#: standalone/drakclock:77
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-"U rekenaar kan sy tyd sinchroniseer\n"
-"met 'n eksterne tyd-bediener deur NTP"
-
-#: standalone/drakclock:78
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Aktiveer Network Time Protocol"
-
-#: standalone/drakclock:86
-#, c-format
-msgid "Server:"
-msgstr "Bediener:"
-
-#: standalone/drakclock:124
-#, c-format
-msgid "Could not synchronize with %s."
-msgstr ""
-
-#
-#: standalone/drakclock:146 standalone/drakclock:156
-#, c-format
-msgid "Reset"
-msgstr "Herstel"
-
-#: standalone/drakclock:224
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol\n"
-"\n"
-"Do you want to install ntp?"
-msgstr ""
-"Ons moet die ntp-pakket installeer\n"
-"om die NTP protokol te aktiveer\n"
-"\n"
-"Wil u ntp installeer?"
-
-#: standalone/drakconnect:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netwerkkonfigurasie (%d toestelle)"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Gateway:"
-msgstr "Portaal:"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Interface:"
-msgstr "Koppelvlak:"
-
-#: standalone/drakconnect:93 standalone/net_monitor:116
-#, c-format
-msgid "Wait please"
-msgstr "Net 'n oomblik"
-
-#: standalone/drakconnect:109
-#, c-format
-msgid "Interface"
-msgstr "Koppelvlak"
-
-#: standalone/drakconnect:109 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "State"
-msgstr "Toestand"
-
-#: standalone/drakconnect:126
-#, c-format
-msgid "Hostname: "
-msgstr "Rekenaarnaam: "
-
-#: standalone/drakconnect:128
-#, c-format
-msgid "Configure hostname..."
-msgstr "Stel rekenaarnaam op..."
-
-#: standalone/drakconnect:142 standalone/drakconnect:845
-#, c-format
-msgid "LAN configuration"
-msgstr "LAN-konfigurasie"
-
-#: standalone/drakconnect:147
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Stel plaaslike netwerk op..."
-
-#: standalone/drakconnect:155 standalone/drakconnect:237
-#: standalone/drakconnect:241
-#, c-format
-msgid "Apply"
-msgstr "Pas toe"
-
-#: standalone/drakconnect:188
-#, fuzzy, c-format
-msgid "Manage connections"
-msgstr "Kabelkonneksie"
-
-#: standalone/drakconnect:215
-#, fuzzy, c-format
-msgid "Device selected"
-msgstr "Verwyder Gekose"
-
-#: standalone/drakconnect:296
-#, fuzzy, c-format
-msgid "IP configuration"
-msgstr "CUPS-konfigurasie"
-
-#: standalone/drakconnect:335
-#, c-format
-msgid "DNS servers"
-msgstr "DNS-bedieners"
-
-#: standalone/drakconnect:343
-#, c-format
-msgid "Search Domain"
-msgstr "Deursoek Domein"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "static"
-msgstr "staties"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "DHCP"
-msgstr ""
-
-#: standalone/drakconnect:515
-#, c-format
-msgid "Flow control"
-msgstr "Beheer van Vloei"
-
-#: standalone/drakconnect:516
-#, c-format
-msgid "Line termination"
-msgstr "Lyn-terminasie"
-
-#: standalone/drakconnect:527
-#, c-format
-msgid "Modem timeout"
-msgstr "Tydsbeperking vi modem"
-
-#: standalone/drakconnect:531
-#, c-format
-msgid "Use lock file"
-msgstr "Gebruik slot-lêer"
-
-#: standalone/drakconnect:533
-#, c-format
-msgid "Wait for dialup tone before dialing"
-msgstr "Wag vir skakeltoon voor skakel"
-
-#: standalone/drakconnect:536
-#, c-format
-msgid "Busy wait"
-msgstr "Wag as besig"
-
-#: standalone/drakconnect:541
-#, c-format
-msgid "Modem sound"
-msgstr "Modem se klank"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Enable"
-msgstr "Aktiveer"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Disable"
-msgstr "Deaktiveer"
-
-#: standalone/drakconnect:593 standalone/harddrake2:50
-#, c-format
-msgid "Media class"
-msgstr "Media-klas"
-
-#: standalone/drakconnect:594
-#, c-format
-msgid "Module name"
-msgstr "Modulenaam"
-
-#: standalone/drakconnect:595
-#, c-format
-msgid "Mac Address"
-msgstr "MAC-adres:"
-
-#: standalone/drakconnect:596 standalone/harddrake2:28
-#: standalone/harddrake2:120
-#, c-format
-msgid "Bus"
-msgstr "Bus"
-
-#: standalone/drakconnect:597 standalone/harddrake2:34
-#, c-format
-msgid "Location on the bus"
-msgstr "Ligging op die bus"
-
-#: standalone/drakconnect:700 standalone/drakgw:311
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Geen ethernetkaart is op die stelsel gevind nie. Gebruik asb. die "
-"hardewarekonfigurasieprogram."
-
-#: standalone/drakconnect:709
-#, c-format
-msgid "Remove a network interface"
-msgstr "Verwyder 'n netwerkkoppelvlak"
-
-#: standalone/drakconnect:713
-#, c-format
-msgid "Select the network interface to remove:"
-msgstr "Kies die netwerkkoppelvlak om te verwyder"
-
-#: standalone/drakconnect:745
-#, c-format
-msgid ""
-"An error occurred while deleting the \"%s\" network interface:\n"
-"\n"
-"%s"
-msgstr ""
-"Daar was 'n probleem met die verwydering van die \"%s\" koppelvlak:\n"
-"\n"
-"%s"
-
-#: standalone/drakconnect:746
-#, c-format
-msgid ""
-"Congratulations, the \"%s\" network interface has been successfully deleted"
-msgstr "Geluk, die \"%s\" netwerkkoppelvlak is suksesvol verwyder"
-
-#: standalone/drakconnect:761
-#, c-format
-msgid "No IP"
-msgstr "Geen IP"
-
-#: standalone/drakconnect:762
-#, c-format
-msgid "No Mask"
-msgstr "Geen Masker"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "up"
-msgstr "op"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "down"
-msgstr "af"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Connected"
-msgstr "Gekonnekteer"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Not connected"
-msgstr "Nie gekonnekteer"
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Disconnect..."
-msgstr "Diskonnekteer..."
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Connect..."
-msgstr "Konnekteer..."
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Deactivate now"
-msgstr "Deaktiveer nou dadelik"
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Activate now"
-msgstr "Aktiveer nou dadelik"
-
-#: standalone/drakconnect:849
-#, c-format
-msgid ""
-"You do not have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"U het geen koppelvlak wat opgestel is nie.\n"
-"Stel hulle eers op deur op deur op 'Konfigureer' te klik"
-
-#: standalone/drakconnect:863
-#, c-format
-msgid "LAN Configuration"
-msgstr "LAN-konfigurasie"
-
-#: standalone/drakconnect:875
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Toestel %s: %s"
-
-#: standalone/drakconnect:884
-#, c-format
-msgid "Boot Protocol"
-msgstr "Herlaaiprotokol"
-
-#: standalone/drakconnect:885
-#, c-format
-msgid "Started on boot"
-msgstr "Gelaai tydens herlaaityd"
-
-#: standalone/drakconnect:921
-#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Hierdie koppelvlak is nog nie opgestel nie.\n"
-"Loods die \"Add an interface\"-assistent vanuit die Mandriva Linux Control "
-"Center"
-
-#: standalone/drakconnect:975 standalone/net_applet:51
-#, fuzzy, c-format
-msgid ""
-"You do not have any configured Internet connection.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Hierdie koppelvlak is nog nie opgestel nie.\n"
-"Loods die \"%s\"-assistent vanuit die Mandriva Linux Control Center"
-
-#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: standalone/drakconnect:976 standalone/drakroam:34 standalone/net_applet:52
-#, fuzzy, c-format
-msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
-msgstr "Verwyder 'n netwerkkoppelvlak"
-
-#: standalone/drakconnect:981
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Internetkonneksie-konfigurasie"
-
-#: standalone/drakconnect:994
-#, fuzzy, c-format
-msgid "Third DNS server (optional)"
-msgstr "Eerste DNS-bediener (opsioneel)"
-
-#: standalone/drakconnect:1016
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Internetkonneksiekonfigurasie"
-
-#: standalone/drakconnect:1017
-#, c-format
-msgid "Internet access"
-msgstr "Internettoegang"
-
-#: standalone/drakconnect:1019 standalone/net_monitor:95
-#, c-format
-msgid "Connection type: "
-msgstr "Konneksietipe:"
-
-#: standalone/drakconnect:1022
-#, c-format
-msgid "Status:"
-msgstr "Status:"
-
-#: standalone/drakconnect:1027
-#, c-format
-msgid "Parameters"
-msgstr "Parameters"
-
-#: standalone/drakedm:40
-#, c-format
-msgid "GDM (GNOME Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:41
-#, c-format
-msgid "KDM (KDE Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:42
-#, fuzzy, c-format
-msgid "XDM (X Display Manager)"
-msgstr "Kies 'n vertoonbestuurder"
-
-#: standalone/drakedm:53
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Kies 'n vertoonbestuurder"
-
-#: standalone/drakedm:54
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"'X11 Display Manager' laat u toe om, deur 'n grafiese- \n"
-"koppelvlak, aan te teken op u rekenaar. Die 'X Window'-stelsel kan tergelyk\n"
-"'n aantal X-sessies op dieselfde rekenaar afskop."
-
-#: standalone/drakedm:72
-#, c-format
-msgid "The change is done, do you want to restart the dm service?"
-msgstr "Die veranderinge is voltooi, wil u die 'dm' diens oorbegin?"
-
-#: standalone/drakedm:73
-#, c-format
-msgid ""
-"You are going to close all running programs and lose your current session. "
-"Are you really sure that you want to restart the dm service?"
-msgstr ""
-
-#: standalone/drakfont:182
-#, c-format
-msgid "Search installed fonts"
-msgstr "Opsoek na geïnstalleerde lettertipes"
-
-#: standalone/drakfont:184
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "Nie-gekose lettertipes geïnstalleer"
-
-#: standalone/drakfont:207
-#, c-format
-msgid "parse all fonts"
-msgstr "ontleed alle lettetipes"
-
-#: standalone/drakfont:209
-#, c-format
-msgid "No fonts found"
-msgstr "Geen lettertipes gevind"
-
-#: standalone/drakfont:217 standalone/drakfont:259 standalone/drakfont:326
-#: standalone/drakfont:359 standalone/drakfont:367 standalone/drakfont:393
-#: standalone/drakfont:411 standalone/drakfont:425
-#, c-format
-msgid "done"
-msgstr "klaar"
-
-#: standalone/drakfont:222
-#, c-format
-msgid "Could not find any font in your mounted partitions"
-msgstr "Kon nie enige lettertipes in u gehegte partisies vind nie"
-
-#: standalone/drakfont:257
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Herkies die korrekte lettertipes"
-
-#: standalone/drakfont:260
-#, c-format
-msgid "Could not find any font.\n"
-msgstr "Kon nie enige lettertipes vind nie.\n"
-
-#: standalone/drakfont:270
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Soek vir lettertipes in geïnstalleerde lys"
-
-#: standalone/drakfont:295
-#, c-format
-msgid "%s fonts conversion"
-msgstr "%s lettertipe-omsetting"
-
-#: standalone/drakfont:324
-#, c-format
-msgid "Fonts copy"
-msgstr "Kopieer Lettertipes"
-
-#: standalone/drakfont:327
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Ware lettertipe (True Type) installasie"
-
-#: standalone/drakfont:334
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "wag asseblief gedurende 'ttmkfdir'..."
-
-#: standalone/drakfont:335
-#, c-format
-msgid "True Type install done"
-msgstr "'True Type' (lettertipes) installasie"
-
-#: standalone/drakfont:341 standalone/drakfont:356
-#, c-format
-msgid "type1inst building"
-msgstr "type1inst building"
-
-#: standalone/drakfont:350
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "Gostscript verwysing"
-
-#: standalone/drakfont:360
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Onderdruk tydelike-lêers"
-
-#: standalone/drakfont:363
-#, c-format
-msgid "Restart XFS"
-msgstr "Herbegin XFS"
-
-#: standalone/drakfont:409 standalone/drakfont:419
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Onderdruk Lettertipe-lêers"
-
-#: standalone/drakfont:421
-#, c-format
-msgid "xfs restart"
-msgstr "herbegin xfs"
-
-#: standalone/drakfont:429
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
-"Maak tog seker dat u die reg tot gebruik van lettertipes het, voordat u dit "
-"installeer.\n"
-"\n"
-"U kan hierdie lettertipes op die normale manier installeer. In uitsonderlike "
-"gevalle mag dit X laat vries."
-
-#: standalone/drakfont:473 standalone/drakfont:482
-#, c-format
-msgid "DrakFont"
-msgstr "DrakFont"
-
-#: standalone/drakfont:483
-#, c-format
-msgid "Font List"
-msgstr "Lettertipe-lys"
-
-#: standalone/drakfont:486
-#, c-format
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: standalone/drakfont:492
-#, c-format
-msgid "About"
-msgstr "Omtrent"
-
-#: standalone/drakfont:494 standalone/drakfont:718
-#, c-format
-msgid "Uninstall"
-msgstr "Verwyder"
-
-#: standalone/drakfont:495
-#, c-format
-msgid "Import"
-msgstr "Trek in"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakfont:513
-#, c-format
-msgid "Copyright (C) 2001-2006 by Mandriva"
-msgstr ""
-
-#: standalone/drakfont:515
-#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-"This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-
-#: standalone/drakfont:531
-#, c-format
-msgid ""
-"Thanks:\n"
-"\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
-msgstr ""
-"Thanks:\n"
-"\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
-
-#: standalone/drakfont:550
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Kies die programme wat die lettertipes sal ondersteun"
-
-#: standalone/drakfont:561
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: standalone/drakfont:562
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: standalone/drakfont:563
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
-
-#: standalone/drakfont:564
-#, c-format
-msgid "Generic Printers"
-msgstr "Generiese Drukkers"
-
-#: standalone/drakfont:578
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Kies die fontlêer of lêergids en klik op 'Voeg by'"
-
-#: standalone/drakfont:579
-#, c-format
-msgid "File Selection"
-msgstr "Lêerkeuse"
-
-#: standalone/drakfont:583
-#, c-format
-msgid "Fonts"
-msgstr "Fonte"
-
-#: standalone/drakfont:646
-#, c-format
-msgid "Import fonts"
-msgstr "Trek Lettertipes in"
-
-#: standalone/drakfont:651
-#, c-format
-msgid "Install fonts"
-msgstr "Installasie van Lettertipes"
-
-#: standalone/drakfont:681
-#, c-format
-msgid "Are you sure you want to uninstall the following fonts?"
-msgstr ""
-
-#: standalone/drakfont:726
-#, c-format
-msgid "Unselected All"
-msgstr "Herstel Keuses"
-
-#: standalone/drakfont:729
-#, c-format
-msgid "Selected All"
-msgstr "Kies almal"
-
-#: standalone/drakfont:743 standalone/drakfont:762
-#, c-format
-msgid "Importing fonts"
-msgstr "Trek Lettertipes in"
-
-#: standalone/drakfont:747 standalone/drakfont:767
-#, c-format
-msgid "Initial tests"
-msgstr "Begin-toetse"
-
-#: standalone/drakfont:748
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Kopieer lettertipes op u stelsel"
-
-#: standalone/drakfont:749
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Installeer & omskep die Lettertipes"
-
-#: standalone/drakfont:750
-#, c-format
-msgid "Post Install"
-msgstr "Post-installasie"
-
-#: standalone/drakfont:768
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Verwyder lettertipes vanaf u rekenaar"
-
-#: standalone/drakfont:769
-#, c-format
-msgid "Post Uninstall"
-msgstr "Post-Verwyder"
-
-#: standalone/drakgw:50 standalone/drakvpn:51
-#, c-format
-msgid "Sorry, we support only 2.4 and above kernels."
-msgstr "Jammer, slegs 2.4 kernels en later word ondersteun."
-
-#: standalone/drakgw:75
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Internetkonneksiedeling"
-
-#: standalone/drakgw:79
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"U gaan nou u rekenaar so opstel dat die die Internetkonneksie deel.\n"
-"As dit opgestel is, kan ander rekenaars op die LAN gebruik maak van hierdie\n"
-"rekenaar se konneksie na die Internet.\n"
-"\n"
-"Maak tog seker dat u alreeds die Netwerk/Internet toegang opgestel het deur\n"
-"'drakconnect' te gebruik, alvorens u verder gaan.\n"
-"\n"
-"Let Wel: U benodig 'n Netwerkkaart om die LAN gedeelte te maak werk."
-
-#: standalone/drakgw:95
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Die opstelling van die Internetkonnkesiedeling is alreeds gedoen.\n"
-"Dis tans aktief.\n"
-"\n"
-"Wat wil u doen?"
-
-#: standalone/drakgw:99
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Die opstelling van die Internetkonnkesiedeling is alreeds gedoen.\n"
-"Dis tans gedeaktiveer.\n"
-"\n"
-"Wat wil u doen?"
-
-#: standalone/drakgw:105
-#, fuzzy, c-format
-msgid "Reconfigure"
-msgstr "herkonfigureer"
-
-#
-#: standalone/drakgw:145
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Daar is net een konfigureerde netwerkkaart op u stelsel.\n"
-"\n"
-"%s\n"
-"\n"
-"Ek gaan nou u LAN met daardie kaart opstel."
-
-#: standalone/drakgw:156
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "Kies asseblief die netwerkkaart wat aan u LAN gekoppel is."
-
-#: standalone/drakgw:177
-#, fuzzy, c-format
-msgid "Local Area Network settings"
-msgstr "Plaaslike Netwerkadres"
-
-#: standalone/drakgw:180
-#, c-format
-msgid "Local IP address"
-msgstr ""
-
-#: standalone/drakgw:182
-#, c-format
-msgid "The internal domain name"
-msgstr "Die interne domeinnaam"
-
-#: standalone/drakgw:188
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Moontlike LAN-adresbotsing in konfigurasie gevind%s!\n"
-
-#: standalone/drakgw:204
-#, fuzzy, c-format
-msgid "Domain Name Server (DNS) configuration"
-msgstr "Terminal Server Konfigurasie"
-
-#: standalone/drakgw:208
-#, c-format
-msgid "Use this gateway as domain name server"
-msgstr ""
-
-#: standalone/drakgw:209
-#, c-format
-msgid "The DNS Server IP"
-msgstr "Die DNS-bediener se IP"
-
-#: standalone/drakgw:236
-#, c-format
-msgid ""
-"DHCP Server Configuration.\n"
-"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you do not know the meaning of an option, simply leave it as it is."
-msgstr ""
-"Konfigureer die DHCP-bediener.\n"
-"\n"
-"Hier kan u die verskillende opsies kies vir die DHCP-bediener.\n"
-"Sou 'n opsie onbekend wees aan u, laat staan dit bloot net."
-
-#: standalone/drakgw:243
-#, fuzzy, c-format
-msgid "Use automatic configuration (DHCP)"
-msgstr "Outomatiese herkonfigurasie"
-
-#: standalone/drakgw:244
-#, c-format
-msgid "The DHCP start range"
-msgstr "Die DHCP-reeks se begin"
-
-#: standalone/drakgw:245
-#, c-format
-msgid "The DHCP end range"
-msgstr "Die DHCP-reeks se einde"
-
-#: standalone/drakgw:246
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Die verstek huur tydperk (in sekondes)"
-
-#: standalone/drakgw:247
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Die maksimun huur tydperk (in sekondes)"
-
-#: standalone/drakgw:270
-#, c-format
-msgid "Proxy caching server (SQUID)"
-msgstr ""
-
-#: standalone/drakgw:274
-#, c-format
-msgid "Use this gateway as proxy caching server"
-msgstr ""
-
-#: standalone/drakgw:275
-#, c-format
-msgid "Admin mail"
-msgstr ""
-
-#: standalone/drakgw:276
-#, fuzzy, c-format
-msgid "Visible hostname"
-msgstr "Eksterne bedienernaam"
-
-#: standalone/drakgw:277
-#, fuzzy, c-format
-msgid "Proxy port"
-msgstr "Eienskap"
-
-#: standalone/drakgw:278
-#, fuzzy, c-format
-msgid "Cache size (MB)"
-msgstr "Grootte van Kas"
-
-#: standalone/drakgw:300
-#, fuzzy, c-format
-msgid "Broadcast printer information"
-msgstr "Hardeskyfinligting"
-
-#: standalone/drakgw:317
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Internet-konneksie-deling is geaktiveer"
-
-#: standalone/drakgw:323
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Internetkonneksiedeling is gedeaktiveer"
-
-#: standalone/drakgw:329
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP) and\n"
-" a Transparent Proxy Cache server (SQUID)."
-msgstr ""
-"Alles is nou opgestel.\n"
-"U kan nou die Internet-konneksie met ander rekenaars op u LAN deel, deur "
-"outomatiese netwerk konfigurasie te gebruik (DHCP) en\n"
-"'n Deursigtige instaanbediener (SQUID)."
-
-#: standalone/drakgw:363
-#, c-format
-msgid "Disabling servers..."
-msgstr "Bedieners word gedeaktiveer..."
-
-#: standalone/drakgw:377
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Vuurmuurkonfigurasie gevind!"
-
-#: standalone/drakgw:378
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-"Waarskuwing! 'n Bestaande vuurmuurkonfigurasie is bespeur. U sal dalk na die "
-"tyd self regstellings moet aanbring."
-
-#: standalone/drakgw:383
-#, c-format
-msgid "Configuring..."
-msgstr "Konfigurasie in aabou..."
-
-#: standalone/drakgw:384
-#, c-format
-msgid "Configuring firewall..."
-msgstr ""
-
-#: standalone/drakhelp:17
-#, c-format
-msgid ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"\n"
-"Usage: \n"
-msgstr ""
-" drakhelp 0.1\n"
-"Kopiereg © 2003-2005 Mandriva.\n"
-"Hierdie is vry sagteware en mag versprei word onder die terme van die GNU "
-"GPL.\n"
-"\n"
-"Gebruik: \n"
-
-#: standalone/drakhelp:22
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - vertoon hierdie help \n"
-
-#: standalone/drakhelp:23
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-
-#: standalone/drakhelp:24
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-" --doc <skakel> - skakel na 'n ander webblabsy ( vir WM se "
-"verwelkomings gedeelte)\n"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "Mandriva Linux Help Center"
-msgstr "Mandriva Linux Hulp Sentrum"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "No Help entry for %s\n"
-msgstr ""
-
-#: standalone/drakhosts:98
-#, c-format
-msgid "Please add an host to be able to modify it."
-msgstr ""
-
-#: standalone/drakhosts:108
-#, fuzzy, c-format
-msgid "Please modify information"
-msgstr "Gedetaileerde inligting"
-
-#: standalone/drakhosts:109
-#, fuzzy, c-format
-msgid "Please delete information"
-msgstr "Gedetaileerde inligting"
-
-#: standalone/drakhosts:110
-#, fuzzy, c-format
-msgid "Please add information"
-msgstr "Gedetaileerde inligting"
-
-#: standalone/drakhosts:115
-#, c-format
-msgid "IP address:"
-msgstr " ip adres:"
-
-#: standalone/drakhosts:116
-#, c-format
-msgid "Host name:"
-msgstr "Rekenaarnaam :"
-
-#: standalone/drakhosts:117
-#, c-format
-msgid "Host Aliases:"
-msgstr ""
-
-#: standalone/drakhosts:123
-#, c-format
-msgid "Please enter a valid IP address."
-msgstr ""
-
-#: standalone/drakhosts:129
-#, c-format
-msgid "Same IP is already in %s file."
-msgstr ""
-
-#: standalone/drakhosts:197
-#, c-format
-msgid "Host Aliases"
-msgstr ""
-
-#: standalone/drakhosts:237
-#, c-format
-msgid "DrakHOSTS manage hosts definitions"
-msgstr ""
-
-#: standalone/drakhosts:246
-#, c-format
-msgid "Failed to add host."
-msgstr ""
-
-#: standalone/drakhosts:253
-#, c-format
-msgid "Failed to Modify host."
-msgstr ""
-
-#: standalone/drakhosts:260
-#, c-format
-msgid "Failed to remove host."
-msgstr ""
-
-#: standalone/drakids:26
-#, fuzzy, c-format
-msgid "Allowed addresses"
-msgstr "Laat alle gebruikers toe"
-
-#: standalone/drakids:57
-#, c-format
-msgid "Log"
-msgstr "Log"
-
-#: standalone/drakids:61
-#, fuzzy, c-format
-msgid "Clear logs"
-msgstr "Verwyder almal"
-
-#: standalone/drakids:62 standalone/drakids:67 standalone/net_applet:470
-#, c-format
-msgid "Blacklist"
-msgstr ""
-
-#: standalone/drakids:63 standalone/drakids:80 standalone/net_applet:475
-#, c-format
-msgid "Whitelist"
-msgstr ""
-
-#: standalone/drakids:71
-#, fuzzy, c-format
-msgid "Remove from blacklist"
-msgstr "Verwyder uit LVM"
-
-#: standalone/drakids:72
-#, c-format
-msgid "Move to whitelist"
-msgstr ""
-
-#: standalone/drakids:84
-#, fuzzy, c-format
-msgid "Remove from whitelist"
-msgstr "Verwyder uit LVM"
-
-#: standalone/drakids:136 standalone/drakids:145 standalone/drakids:170
-#: standalone/drakids:179 standalone/drakids:189 standalone/drakids:265
-#: standalone/drakroam:182 standalone/net_applet:202 standalone/net_applet:385
-#, fuzzy, c-format
-msgid "Unable to contact daemon"
-msgstr "Kon nie die spieëlwebplek %s kontak nie"
-
-#: standalone/drakids:202
-#, c-format
-msgid "Date"
-msgstr "Datum"
-
-#: standalone/drakids:203
-#, fuzzy, c-format
-msgid "Attacker"
-msgstr "Geen Detail"
-
-#: standalone/drakids:204
-#, fuzzy, c-format
-msgid "Attack type"
-msgstr "tipe: %s"
-
-#: standalone/drakids:205
-#, c-format
-msgid "Service"
-msgstr "Diens"
-
-#: standalone/drakids:206 standalone/net_applet:72
-#, c-format
-msgid "Network interface"
-msgstr "Netwerkkoppelvlak"
-
-#: standalone/draknfs:41
-#, c-format
-msgid "map root user as anonymous"
-msgstr ""
-
-#: standalone/draknfs:42
-#, c-format
-msgid "map all users to anonymous user"
-msgstr ""
-
-#: standalone/draknfs:43
-#, c-format
-msgid "No user UID mapping"
-msgstr ""
-
-#: standalone/draknfs:44
-#, c-format
-msgid "allow real remote root access"
-msgstr ""
-
-#: standalone/draknfs:83
-#, c-format
-msgid "NFS server"
-msgstr ""
-
-#: standalone/draknfs:83
-#, c-format
-msgid "Restarting/Reloading NFS server..."
-msgstr ""
-
-#: standalone/draknfs:84
-#, c-format
-msgid "Error Restarting/Reloading NFS server"
-msgstr ""
-
-#: standalone/draknfs:100 standalone/draksambashare:203
-#, c-format
-msgid "Directory Selection"
-msgstr ""
-
-#: standalone/draknfs:105 standalone/draksambashare:208
-#, c-format
-msgid "Should be a directory."
-msgstr ""
-
-#: standalone/draknfs:136
-#, c-format
-msgid ""
-"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
-"ways:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">single host:</span> a host either by an "
-"abbreviated name recognized be the resolver, fully qualified domain name, or "
-"an IP address\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">netgroups:</span> NIS netgroups may be given "
-"as @group.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">wildcards:</span> machine names may contain "
-"the wildcard characters * and ?. For instance: *.cs.foo.edu matches all "
-"hosts in the domain cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP networks:</span> you can also export "
-"directories to all hosts on an IP (sub-)network simultaneously. for example, "
-"either `/255.255.252.0' or `/22' appended to the network base address "
-"result.\n"
-msgstr ""
-
-#: standalone/draknfs:151
-#, c-format
-msgid ""
-"<span weight=\"bold\">User ID options</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map root user as anonymous:</span> map "
-"requests from uid/gid 0 to the anonymous uid/gid (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">allow real remote root access:</span> turn "
-"off root squashing. This option is mainly useful for diskless clients "
-"(no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map all users to anonymous user:</span> map "
-"all uids and gids to the anonymous user (all_squash). Useful for NFS-"
-"exported public FTP directories, news spool directories, etc. The opposite "
-"option is no user UID mapping (no_all_squash), which is the default "
-"setting.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid and anongid:</span> explicitly set "
-"the uid and gid of the anonymous account.\n"
-msgstr ""
-
-#: standalone/draknfs:167
-#, c-format
-msgid "Synchronous access:"
-msgstr ""
-
-#: standalone/draknfs:168
-#, c-format
-msgid "Secured Connection:"
-msgstr ""
-
-#: standalone/draknfs:169
-#, c-format
-msgid "Read-Only share:"
-msgstr ""
-
-#: standalone/draknfs:171
-#, c-format
-msgid "<span weight=\"bold\">Advanced Options</span>"
-msgstr ""
-
-#: standalone/draknfs:172
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> this option requires that "
-"requests originate on an internet port less than IPPORT_RESERVED (1024). "
-"This option is on by default."
-msgstr ""
-
-#: standalone/draknfs:173
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> allow either only read or both "
-"read and write requests on this NFS volume. The default is to disallow any "
-"request which changes the filesystem. This can also be made explicit by "
-"using this option."
-msgstr ""
-
-#: standalone/draknfs:174
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> disallows the NFS server to "
-"violate the NFS protocol and to reply to requests before any changes made by "
-"these requests have been committed to stable storage (e.g. disc drive)."
-msgstr ""
-
-#: standalone/draknfs:306
-#, c-format
-msgid "Please add an NFS share to be able to modify it."
-msgstr ""
-
-#: standalone/draknfs:378
-#, fuzzy, c-format
-msgid "Advanced Options Help"
-msgstr "Gevorderde-konfigurasie"
-
-#: standalone/draknfs:389
-#, c-format
-msgid "NFS directory"
-msgstr ""
-
-#: standalone/draknfs:391 standalone/draksambashare:592
-#: standalone/draksambashare:771
-#, c-format
-msgid "Directory:"
-msgstr "Gids:"
-
-#: standalone/draknfs:394
-#, c-format
-msgid "Host access"
-msgstr ""
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Access:"
-msgstr "Toegang verkry :"
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Hosts Access"
-msgstr ""
-
-#: standalone/draknfs:399
-#, c-format
-msgid "User ID Mapping"
-msgstr ""
-
-#: standalone/draknfs:401
-#, c-format
-msgid "User ID:"
-msgstr "Gebruikers Kode:"
-
-#: standalone/draknfs:401
-#, c-format
-msgid "Help User ID"
-msgstr ""
-
-#: standalone/draknfs:402
-#, c-format
-msgid "Anonymous user ID:"
-msgstr ""
-
-#: standalone/draknfs:403
-#, c-format
-msgid "Anonymous Group ID:"
-msgstr ""
-
-#: standalone/draknfs:444
-#, c-format
-msgid "Can't create this directory."
-msgstr ""
-
-#: standalone/draknfs:447
-#, c-format
-msgid "You must specify hosts access."
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Share Directory"
-msgstr "Deel Gids"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Hosts Wildcard"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "General Options"
-msgstr "Algemeen Opsies"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Custom Options"
-msgstr ""
-
-#: standalone/draknfs:539 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Please enter a directory to share."
-msgstr ""
-
-#: standalone/draknfs:546
-#, c-format
-msgid "Please use the modify button to set right access."
-msgstr ""
-
-#: standalone/draknfs:600
-#, c-format
-msgid "DrakNFS manage NFS shares"
-msgstr ""
-
-#: standalone/draknfs:609
-#, c-format
-msgid "Failed to add NFS share."
-msgstr ""
-
-#: standalone/draknfs:616
-#, c-format
-msgid "Failed to Modify NFS share."
-msgstr ""
-
-#: standalone/draknfs:623
-#, c-format
-msgid "Failed to remove an NFS share."
-msgstr ""
-
-#: standalone/drakperm:21
-#, c-format
-msgid "System settings"
-msgstr "Stelsel verstellings"
-
-#: standalone/drakperm:22
-#, c-format
-msgid "Custom settings"
-msgstr "Aangepaste verstellings"
-
-#: standalone/drakperm:23
-#, c-format
-msgid "Custom & system settings"
-msgstr "Pasmaak & stelsel verstellings"
-
-#: standalone/drakperm:43
-#, c-format
-msgid "Editable"
-msgstr "Redigeerbaar"
-
-#: standalone/drakperm:48 standalone/drakperm:323
-#: standalone/draksambashare:101
-#, c-format
-msgid "Path"
-msgstr "Roete"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "User"
-msgstr "Gebruiker"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "Group"
-msgstr "Groep:"
-
-#: standalone/drakperm:48 standalone/drakperm:335
-#, c-format
-msgid "Permissions"
-msgstr "Vergunnigs"
-
-#: standalone/drakperm:57
-#, c-format
-msgid "Add a new rule"
-msgstr ""
-
-#: standalone/drakperm:64 standalone/drakperm:99 standalone/drakperm:124
-#, c-format
-msgid "Edit current rule"
-msgstr "Redigeer die huidige reël"
-
-#: standalone/drakperm:106
-#, c-format
-msgid ""
-"Here you can see files to use in order to fix permissions, owners, and "
-"groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
-msgstr ""
-"Hier kan u lêers sien om te gebruik om toegang, eienaars en groepe via msec "
-"reg te setel.\n"
-"U kan selfs u eie reels bepaal wat dan die verstek reels sal vervang."
-
-#: standalone/drakperm:109
-#, c-format
-msgid ""
-"The current security level is %s.\n"
-"Select permissions to see/edit"
-msgstr ""
-"Die huidige vlak van sekuriteit is %s\n"
-"Ondersoek of verander vergunningsvlakke"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Up"
-msgstr "Op"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Skuif gekose reël een vlak op"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Down"
-msgstr "Af"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Skuif gekose reël een vlak af"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a rule"
-msgstr "Voeg 'n reel by"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Voeg 'n nuwe reël aan die einde by"
-
-#: standalone/drakperm:123
-#, c-format
-msgid "Delete selected rule"
-msgstr "Verwyder gekose reël."
-
-#: standalone/drakperm:242
-#, c-format
-msgid "browse"
-msgstr "blaai"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "user"
-msgstr "gebruiker"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "group"
-msgstr "groep"
-
-#: standalone/drakperm:247
-#, fuzzy, c-format
-msgid "other"
-msgstr "Ander"
-
-#: standalone/drakperm:252
-#, c-format
-msgid "Read"
-msgstr "Lees"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:255
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Stel \"%s\" in staat om die lêer te lees"
-
-#: standalone/drakperm:259
-#, c-format
-msgid "Write"
-msgstr "Skryf"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:262
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Laat \"%s\" toe om die lêer te skryf"
-
-#: standalone/drakperm:266
-#, c-format
-msgid "Execute"
-msgstr "Voer uit"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:269
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Ontsper \"%s\" om lêer uit te kan voer"
-
-#: standalone/drakperm:272
-#, c-format
-msgid "Sticky-bit"
-msgstr "Sticky-bit"
-
-#: standalone/drakperm:272
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Gebruik vir lêergids:\n"
-"kan slegs deur die eienaar van die lêergids (of lêer) verwyder word"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Gebruik eienaar-id vir uitvoering"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Use group id for execution"
-msgstr "Gebruik groep-id vir uitvoering"
-
-#: standalone/drakperm:292 standalone/drakxtv:89
-#, c-format
-msgid "User:"
-msgstr "Gebruik:"
-
-#: standalone/drakperm:294
-#, c-format
-msgid "Group:"
-msgstr "Groep :"
-
-#: standalone/drakperm:298
-#, c-format
-msgid "Current user"
-msgstr "Huidige gebruiker"
-
-#: standalone/drakperm:299
-#, c-format
-msgid "When checked, owner and group will not be changed"
-msgstr "Indien gemerk, sal die eienaar en groep nie verander nie"
-
-#: standalone/drakperm:309
-#, c-format
-msgid "Path selection"
-msgstr "Roete-keuse"
-
-#: standalone/drakperm:329
-#, c-format
-msgid "Property"
-msgstr "Eienskap"
-
-#: standalone/drakperm:380
-#, c-format
-msgid ""
-"The first character of the path must be a slash (\"/\"):\n"
-"\"%s\""
-msgstr ""
-
-#: standalone/drakperm:390
-#, c-format
-msgid "Both the username and the group must valid!"
-msgstr ""
-
-#: standalone/drakperm:391
-#, c-format
-msgid "User: %s"
-msgstr ""
-
-#: standalone/drakperm:392
-#, c-format
-msgid "Group: %s"
-msgstr ""
-
-#: standalone/drakroam:33
-#, c-format
-msgid ""
-"You do not have any wireless interface.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakroam:48
-#, c-format
-msgid "SSID"
-msgstr ""
-
-#: standalone/drakroam:49
-#, c-format
-msgid "Signal strength"
-msgstr ""
-
-#: standalone/drakroam:51
-#, c-format
-msgid "Encryption"
-msgstr "Inkripsie"
-
-#: standalone/drakroam:112
-#, c-format
-msgid "Please enter settings for wireless network \"%s\""
-msgstr ""
-
-#: standalone/drakroam:123
-#, c-format
-msgid "DNS server"
-msgstr ""
-
-#: standalone/drakroam:228
-#, c-format
-msgid "Connect"
-msgstr "Konnekteer"
-
-#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/drakroam:229 standalone/printerdrake:251
-#, c-format
-msgid "Refresh"
-msgstr "Herlaai"
-
-#: standalone/draksambashare:68
-#, fuzzy, c-format
-msgid "Share directory"
-msgstr "Nie 'n gids nie"
-
-#: standalone/draksambashare:69 standalone/draksambashare:102
-#, c-format
-msgid "Comment"
-msgstr "Kommentaar"
-
-#: standalone/draksambashare:70 standalone/draksambashare:103
-#, fuzzy, c-format
-msgid "Browseable"
-msgstr "Blaai"
-
-#: standalone/draksambashare:71
-#, c-format
-msgid "Public"
-msgstr "Publiek"
-
-#: standalone/draksambashare:72 standalone/draksambashare:108
-#, c-format
-msgid "Writable"
-msgstr "Skryfbaar"
-
-#: standalone/draksambashare:73 standalone/draksambashare:149
-#, fuzzy, c-format
-msgid "Create mask"
-msgstr "Skep"
-
-#: standalone/draksambashare:74 standalone/draksambashare:150
-#, fuzzy, c-format
-msgid "Directory mask"
-msgstr "Herstel alle rugsteune"
-
-#: standalone/draksambashare:75
-#, fuzzy, c-format
-msgid "Read list"
-msgstr "Lees"
-
-#: standalone/draksambashare:76 standalone/draksambashare:109
-#: standalone/draksambashare:606
-#, fuzzy, c-format
-msgid "Write list"
-msgstr "Skryf"
-
-#: standalone/draksambashare:77 standalone/draksambashare:141
-#, fuzzy, c-format
-msgid "Admin users"
-msgstr "Voeg gebruiker by"
-
-#: standalone/draksambashare:78 standalone/draksambashare:142
-#, fuzzy, c-format
-msgid "Valid users"
-msgstr "Voeg gebruiker by"
-
-#: standalone/draksambashare:79
-#, fuzzy, c-format
-msgid "Inherit Permissions"
-msgstr "Vergunnigs"
-
-#: standalone/draksambashare:80 standalone/draksambashare:143
-#, fuzzy, c-format
-msgid "Hide dot files"
-msgstr "Versteek lêers"
-
-#: standalone/draksambashare:82 standalone/draksambashare:148
-#, fuzzy, c-format
-msgid "Preserve case"
-msgstr "Voorkeure"
-
-#
-#: standalone/draksambashare:83
-#, fuzzy, c-format
-msgid "Force create mode"
-msgstr "U model drukker"
-
-#: standalone/draksambashare:84
-#, fuzzy, c-format
-msgid "Force group"
-msgstr "PFS-groep"
-
-#: standalone/draksambashare:85 standalone/draksambashare:147
-#, fuzzy, c-format
-msgid "Default case"
-msgstr "Verstekgebruiker"
-
-#: standalone/draksambashare:100
-#, c-format
-msgid "Printer name"
-msgstr "Drukker naam:"
-
-#: standalone/draksambashare:104 standalone/draksambashare:598
-#, c-format
-msgid "Printable"
-msgstr ""
-
-#: standalone/draksambashare:105
-#, c-format
-msgid "Print Command"
-msgstr ""
-
-#: standalone/draksambashare:106
-#, c-format
-msgid "LPQ command"
-msgstr ""
-
-#: standalone/draksambashare:107
-#, c-format
-msgid "Guest ok"
-msgstr ""
-
-#: standalone/draksambashare:110 standalone/draksambashare:151
-#: standalone/draksambashare:607
-#, fuzzy, c-format
-msgid "Inherit permissions"
-msgstr "Vergunnigs"
-
-#: standalone/draksambashare:112
-#, c-format
-msgid "Create mode"
-msgstr ""
-
-#: standalone/draksambashare:113
-#, c-format
-msgid "Use client driver"
-msgstr ""
-
-#
-#: standalone/draksambashare:139
-#, fuzzy, c-format
-msgid "Read List"
-msgstr "Verwyder Lys"
-
-#: standalone/draksambashare:140
-#, fuzzy, c-format
-msgid "Write List"
-msgstr "Skryf"
-
-#: standalone/draksambashare:145
-#, fuzzy, c-format
-msgid "Force Group"
-msgstr "Groep:"
-
-#: standalone/draksambashare:146
-#, c-format
-msgid "Force create group"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid "About Draksambashare"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid ""
-"Mandriva Linux \n"
-"Release: %s\n"
-"Author: Antoine Ginies\n"
-"\n"
-"This is a simple tool to easily manage Samba configuration."
-msgstr ""
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Samba server"
-msgstr "Samba-bediener"
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Restarting/Reloading Samba server..."
-msgstr ""
-
-#: standalone/draksambashare:187
-#, c-format
-msgid "Error Restarting/Reloading Samba server"
-msgstr ""
-
-#: standalone/draksambashare:372
-#, fuzzy, c-format
-msgid "Add a Samba share"
-msgstr "Samba-bediener"
-
-#: standalone/draksambashare:375
-#, c-format
-msgid "Goal of this wizard is to easily create a new Samba share."
-msgstr ""
-
-#: standalone/draksambashare:377
-#, fuzzy, c-format
-msgid "Name of the share:"
-msgstr "Naam van die sertifikaat"
-
-#: standalone/draksambashare:378 standalone/draksambashare:591
-#: standalone/draksambashare:772
-#, c-format
-msgid "Comment:"
-msgstr "Kommentaar:"
-
-#: standalone/draksambashare:379
-#, c-format
-msgid "Path:"
-msgstr "Gids soekpad:"
-
-#: standalone/draksambashare:384
-#, c-format
-msgid ""
-"Share with the same name already exist or share name empty, please choose "
-"another name."
-msgstr ""
-
-#: standalone/draksambashare:388 standalone/draksambashare:394
-#, c-format
-msgid "Can't create the directory, please enter a correct path."
-msgstr ""
-
-#: standalone/draksambashare:391 standalone/draksambashare:627
-#: standalone/draksambashare:794
-#, fuzzy, c-format
-msgid "Please enter a Comment for this share."
-msgstr "Voorsien asseblief die inligting vir hierdie draadlose kaart:"
-
-#: standalone/draksambashare:422
-#, c-format
-msgid ""
-"The wizard successfully added the Samba share. Now just double click on it "
-"in treeview to modify it"
-msgstr ""
-
-#: standalone/draksambashare:437
-#, c-format
-msgid "pdf-gen - a PDF generator"
-msgstr ""
-
-#: standalone/draksambashare:438
-#, c-format
-msgid "printers - all printers available"
-msgstr ""
-
-#: standalone/draksambashare:442
-#, c-format
-msgid "Add Special Printer share"
-msgstr ""
-
-#: standalone/draksambashare:445
-#, c-format
-msgid ""
-"Goal of this wizard is to easily create a new special printer Samba share."
-msgstr ""
-
-#: standalone/draksambashare:453
-#, c-format
-msgid "A PDF generator already exists."
-msgstr ""
-
-#: standalone/draksambashare:477
-#, c-format
-msgid "Printers and print$ already exist."
-msgstr ""
-
-#: standalone/draksambashare:528
-#, c-format
-msgid "The wizard successfully added the printer Samba share"
-msgstr ""
-
-#: standalone/draksambashare:551
-#, c-format
-msgid "Please add or select a Samba printer share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:587
-#, c-format
-msgid "Printer share"
-msgstr ""
-
-#: standalone/draksambashare:590
-#, c-format
-msgid "Printer name:"
-msgstr "Drukker naam:"
-
-#: standalone/draksambashare:596 standalone/draksambashare:777
-#, c-format
-msgid "Writable:"
-msgstr "Skryfbaar :"
-
-#: standalone/draksambashare:597 standalone/draksambashare:778
-#, fuzzy, c-format
-msgid "Browseable:"
-msgstr "Blaai"
-
-#: standalone/draksambashare:602
-#, c-format
-msgid "Advanced options"
-msgstr ""
-
-#: standalone/draksambashare:604
-#, c-format
-msgid "Printer access"
-msgstr ""
-
-#: standalone/draksambashare:608
-#, c-format
-msgid "Guest ok:"
-msgstr ""
-
-#: standalone/draksambashare:609
-#, c-format
-msgid "Create mode:"
-msgstr ""
-
-#: standalone/draksambashare:613
-#, c-format
-msgid "Printer command"
-msgstr ""
-
-#: standalone/draksambashare:615
-#, c-format
-msgid "Print command:"
-msgstr "Druk opdrag:"
-
-#: standalone/draksambashare:616
-#, c-format
-msgid "LPQ command:"
-msgstr ""
-
-#: standalone/draksambashare:617
-#, c-format
-msgid "Printing:"
-msgstr "Besig om te druk:"
-
-#: standalone/draksambashare:633
-#, c-format
-msgid "create mode should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:695
-#, c-format
-msgid "DrakSamba entry"
-msgstr ""
-
-#: standalone/draksambashare:700
-#, c-format
-msgid "Please add or select a Samba share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:723
-#, fuzzy, c-format
-msgid "Samba user access"
-msgstr "Samba-bediener"
-
-#: standalone/draksambashare:731
-#, fuzzy, c-format
-msgid "Mask options"
-msgstr "Basiese opsies"
-
-#: standalone/draksambashare:745
-#, c-format
-msgid "Display options"
-msgstr "Vertoon opsies:"
-
-#: standalone/draksambashare:767
-#, fuzzy, c-format
-msgid "Samba share directory"
-msgstr "Nie 'n gids nie"
-
-#: standalone/draksambashare:770
-#, c-format
-msgid "Share name:"
-msgstr "Naam van deelarea :"
-
-#: standalone/draksambashare:776
-#, c-format
-msgid "Public:"
-msgstr "Publiek :"
-
-#: standalone/draksambashare:800
-#, c-format
-msgid ""
-"Create mask, create mode and directory mask should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:807
-#, c-format
-msgid "Please create this Samba user: %s"
-msgstr ""
-
-#: standalone/draksambashare:930
-#, c-format
-msgid "User information"
-msgstr ""
-
-#: standalone/draksambashare:932
-#, c-format
-msgid "User name:"
-msgstr "Gebruiker naam:"
-
-#: standalone/draksambashare:933
-#, c-format
-msgid "Password:"
-msgstr "Wagwoord:"
-
-#: standalone/draksambashare:1133
-#, c-format
-msgid "Failed to add Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1142
-#, c-format
-msgid "Failed to Modify Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1151
-#, c-format
-msgid "Failed to remove a Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1158
-#, c-format
-msgid "File share"
-msgstr ""
-
-#: standalone/draksambashare:1166
-#, c-format
-msgid "Add printers"
-msgstr ""
-
-#: standalone/draksambashare:1172
-#, c-format
-msgid "Failed to add printers."
-msgstr ""
-
-#: standalone/draksambashare:1181
-#, c-format
-msgid "Failed to Modify."
-msgstr ""
-
-#: standalone/draksambashare:1190
-#, c-format
-msgid "Failed to remove."
-msgstr ""
-
-#: standalone/draksambashare:1197
-#, c-format
-msgid "Printers"
-msgstr "Drukkers"
-
-#: standalone/draksambashare:1205
-#, c-format
-msgid "Change password"
-msgstr ""
-
-#: standalone/draksambashare:1210
-#, c-format
-msgid "Failed to change user password."
-msgstr ""
-
-#: standalone/draksambashare:1218
-#, c-format
-msgid "Failed to add user."
-msgstr ""
-
-#: standalone/draksambashare:1221
-#, c-format
-msgid "Delete user"
-msgstr ""
-
-#: standalone/draksambashare:1230
-#, c-format
-msgid "Failed to delete user."
-msgstr ""
-
-#: standalone/draksambashare:1242
-#, c-format
-msgid "Samba Users"
-msgstr ""
-
-#: standalone/draksambashare:1251
-#, c-format
-msgid "DrakSamba manage Samba shares"
-msgstr ""
-
-#: standalone/draksec:49
-#, c-format
-msgid "ALL"
-msgstr "ALMAL"
-
-#: standalone/draksec:50
-#, c-format
-msgid "LOCAL"
-msgstr "PLAASLIK"
-
-#: standalone/draksec:51
-#, c-format
-msgid "NONE"
-msgstr "GEEN"
-
-#: standalone/draksec:53 standalone/net_applet:480
-#, c-format
-msgid "Ignore"
-msgstr "Ignoreer"
-
-#. -PO: Do not alter the <span ..> and </span> tags.
-#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
-#: standalone/draksec:103
-#, fuzzy, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Administrator</span>' is the one who "
-"will receive security alerts if the\n"
-"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a "
-"username or an email.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Level</span>' menu allows you to select "
-"one of the six preconfigured security levels\n"
-"provided with msec. These levels range from '<span weight=\"bold\">poor</"
-"span>' security and ease of use, to\n"
-"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive "
-"server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
-"very\n"
-"easy to use security level. It should only be used for machines not "
-"connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
-"security\n"
-"recommended for a computer that will be used to connect to the Internet as "
-"a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
-"enough\n"
-"to use the system as a server which can accept connections from many "
-"clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower "
-"level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-"Hier kan u die vlak administrasie van sekuriteit op u rekenaar opstel.\n"
-"\n"
-"\n"
-"Die Sekuriteits-administrateur sal die sekuriteits-waarskuwings ontvang\n"
-"indien\n"
-"die 'Sekuriteits-waarskuwings' opsie gekies is. Dit kan 'n gebruikernaam of\n"
-"'n e-pos adres wees.\n"
-"\n"
-"\n"
-"Die Sekuriteitsvlak-kieslys stel u in staat om een van ses vooraf-"
-"opgestelde\n"
-"vlakke te kies.\n"
-"Hierdie vlakke wissel van ligte sekuriteit en maklike gebruik tot "
-"paranoïes,\n"
-"wat geskik is vir uiters sensitiewe toepassings.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Lig</span>: Hierdie is glad nie veilig nie,\n"
-"alhoewel dit rekenaargebruik vergemaklik.\n"
-"Gebruik dit op masjiene wat nie aan 'n netwerk gekoppel is nie,\n"
-"en nie toeganklik tot almal is nie.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standaard</span>: Hierdie is die standaard\n"
-"sekuriteit\n"
-"wat ons aanbeveel vir rekenaars wat aan die Internet gebruik as 'n kliënt\n"
-"\n"
-"<span foreground=\"royalblue3\">Hoog</span>:Daar is reeds versperrings, en\n"
-"meer outomatise toetse word saans gedoen\n"
-"\n"
-"<span foreground=\"royalblue3\">Hoër</span>: Met hierdie sekuriteitsvlak "
-"kan\n"
-"u stelsel as 'n bediener gebruik.\n"
-"Die sekuriteit is goed genoeg sodat die rekenaar konneksies van kliënte\n"
-"af kan aanvaar.\n"
-"Aandag: Indien u masjien bloot 'n kliënt op die Internet is, kan u 'n laer\n"
-"vlak kies.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoïes</span>: Soortgelyk aan die vorige\n"
-"vlak, maar die rekenaar is totaal toe en sekuriteit is op sy\n"
-"maksimum"
-
-#: standalone/draksec:156 standalone/harddrake2:207
-#, c-format
-msgid ""
-"Description of the fields:\n"
-"\n"
-msgstr ""
-"Beskrywing van die velde:\n"
-"\n"
-
-#: standalone/draksec:170
-#, c-format
-msgid "(default value: %s)"
-msgstr "(verstek waarde: %s)"
-
-#: standalone/draksec:212
-#, c-format
-msgid "Security Level:"
-msgstr "Sekuriteitsvlak:"
-
-#: standalone/draksec:219
-#, c-format
-msgid "Security Administrator:"
-msgstr "Sekuriteits-admin:"
-
-#: standalone/draksec:221
-#, c-format
-msgid "Basic options"
-msgstr "Basiese opsies"
-
-#: standalone/draksec:235
-#, c-format
-msgid "Network Options"
-msgstr "Netwerk Opsies:"
-
-#: standalone/draksec:235
-#, c-format
-msgid "System Options"
-msgstr "Stelsel-opsies"
-
-#: standalone/draksec:270
-#, c-format
-msgid "Periodic Checks"
-msgstr "Periodiese Toetse"
-
-#: standalone/draksec:300
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Net 'n oomblik, sekuriteitsvlak word gestel..."
-
-#: standalone/draksec:306
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Net 'n oomblik, verstel sekuriteitsopsies..."
-
-#: standalone/draksound:47
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Geen Klankkaart opgespoor!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/draksound:50
-#, c-format
-msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"Geen klankkaart is op u rekenaar bespeur nie. Maak tog seker dat dit 'n\n"
-"Linux-ondersteunde klankkaart is. Kyk of dit reg ingeprop is.\n"
-"\n"
-"\n"
-"U kan ons hardeware-databasis besoek te:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/draksound:57
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or "
-"the sndconfig program. Just type \"alsaconf\" or \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Aandag: Indien u klankkaart 'n ISA PnP tipe kaart is, moet u gebruik maak "
-"van die 'alsaconf' of 'sndconfig' program. Tik \"alsaconf\" of\"sndconfig"
-"\"in op die instruksielyn)."
-
-#: standalone/draksplash:30
-#, c-format
-msgid "x coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:31
-#, c-format
-msgid "y coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:32
-#, c-format
-msgid "text box width"
-msgstr ""
-
-#: standalone/draksplash:33
-#, c-format
-msgid "text box height"
-msgstr "tekskassie se hoogte"
-
-#: standalone/draksplash:34
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"die vorderingsbalk se x koördinaat\n"
-"van sy linker-boonste hoek"
-
-#: standalone/draksplash:35
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-"die vorderingsbalk se y koördinaat\n"
-"van sy linker-boonste hoek"
-
-#: standalone/draksplash:36
-#, c-format
-msgid "the width of the progress bar"
-msgstr "die wydte van die vorderingbalk"
-
-#: standalone/draksplash:37
-#, c-format
-msgid "the height of the progress bar"
-msgstr "die hoogte van die vorderingbalk"
-
-#: standalone/draksplash:38
-#, c-format
-msgid "x coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:39
-#, c-format
-msgid "y coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:40
-#, c-format
-msgid "text box transparency"
-msgstr ""
-
-#: standalone/draksplash:41
-#, c-format
-msgid "progress box transparency"
-msgstr ""
-
-#: standalone/draksplash:42
-#, c-format
-msgid "text size"
-msgstr ""
-
-#: standalone/draksplash:59
-#, c-format
-msgid "Choose progress bar color 1"
-msgstr ""
-
-#: standalone/draksplash:60
-#, c-format
-msgid "Choose progress bar color 2"
-msgstr ""
-
-#: standalone/draksplash:61
-#, c-format
-msgid "Choose progress bar background"
-msgstr ""
-
-#: standalone/draksplash:62
-#, c-format
-msgid "Gradient type"
-msgstr ""
-
-#: standalone/draksplash:63
-#, c-format
-msgid "Choose text color"
-msgstr ""
-
-#: standalone/draksplash:65 standalone/draksplash:72
-#, c-format
-msgid "Choose picture"
-msgstr ""
-
-#: standalone/draksplash:66
-#, c-format
-msgid "Silent bootsplash"
-msgstr ""
-
-#: standalone/draksplash:69
-#, c-format
-msgid "Choose text zone color"
-msgstr ""
-
-#: standalone/draksplash:70
-#, c-format
-msgid "Text color"
-msgstr "Teks kleur"
-
-#: standalone/draksplash:71
-#, c-format
-msgid "Background color"
-msgstr "Agtergrond kleur"
-
-#: standalone/draksplash:73
-#, c-format
-msgid "Verbose bootsplash"
-msgstr ""
-
-#: standalone/draksplash:75
-#, c-format
-msgid "Display logo on Console"
-msgstr "Vertoon logo op Konsole"
-
-#: standalone/draksplash:78
-#, c-format
-msgid "Console bootsplash"
-msgstr ""
-
-#: standalone/draksplash:84
-#, c-format
-msgid "Theme name"
-msgstr "Naam van tema"
-
-#: standalone/draksplash:87
-#, c-format
-msgid "final resolution"
-msgstr "finale resolusie"
-
-#: standalone/draksplash:92
-#, c-format
-msgid "Save theme"
-msgstr "Stoor tema"
-
-#: standalone/draksplash:153
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "stoor selflaai-splatskerm-tema..."
-
-#: standalone/draksplash:162
-#, c-format
-msgid "Unable to load image file %s"
-msgstr ""
-
-#: standalone/draksplash:173
-#, c-format
-msgid "choose image"
-msgstr "Kies 'n beeld"
-
-#: standalone/draksplash:188
-#, c-format
-msgid "Color selection"
-msgstr ""
-
-#: standalone/drakups:71
-#, c-format
-msgid "Connected through a serial port or an usb cable"
-msgstr ""
-
-#: standalone/drakups:78
-#, fuzzy, c-format
-msgid "Add an UPS device"
-msgstr "Voeg 'n item by"
-
-#: standalone/drakups:81
-#, fuzzy, c-format
-msgid ""
-"Welcome to the UPS configuration utility.\n"
-"\n"
-"Here, you'll add a new UPS to your system.\n"
-msgstr ""
-"Welkom by die e-pos konfigurasie-program.\n"
-"\n"
-"Hier kan u die waarskuwing-stelsel opstel\n"
-
-#: standalone/drakups:88
-#, c-format
-msgid ""
-"We're going to add an UPS device.\n"
-"\n"
-"Do you want to autodetect UPS devices connected to this machine or to "
-"manually select them?"
-msgstr ""
-
-#: standalone/drakups:91
-#, fuzzy, c-format
-msgid "Autodetection"
-msgstr "Gebruik outospeuring"
-
-#: standalone/drakups:99 standalone/harddrake2:375
-#, c-format
-msgid "Detection in progress"
-msgstr "Bespeuring aan die gebeur"
-
-#: standalone/drakups:119
-#, fuzzy, c-format
-msgid "The wizard successfully added the following UPS devices:"
-msgstr "Die wysgeer het die e-pos waarskuwings gestop"
-
-#: standalone/drakups:121
-#, fuzzy, c-format
-msgid "No new UPS devices was found"
-msgstr "Geen toestelle gevind nie"
-
-#: standalone/drakups:126 standalone/drakups:138
-#, fuzzy, c-format
-msgid "UPS driver configuration"
-msgstr "CUPS-drukkerkonfigurasie"
-
-#
-#: standalone/drakups:126
-#, fuzzy, c-format
-msgid "Please select your UPS model."
-msgstr "Toets asb. die muis:"
-
-#: standalone/drakups:127
-#, fuzzy, c-format
-msgid "Manufacturer / Model:"
-msgstr "Drukkervervaardiger, model"
-
-#: standalone/drakups:138
-#, c-format
-msgid ""
-"We are configuring the \"%s\" UPS from \"%s\".\n"
-"Please fill in its name, its driver and its port."
-msgstr ""
-
-#: standalone/drakups:143
-#, c-format
-msgid "Name:"
-msgstr "Naam:"
-
-#: standalone/drakups:143
-#, fuzzy, c-format
-msgid "The name of your ups"
-msgstr "die verwerker se naam"
-
-#: standalone/drakups:144
-#, c-format
-msgid "The driver that manages your ups"
-msgstr ""
-
-#: standalone/drakups:145
-#, c-format
-msgid "Port:"
-msgstr "Poort:"
-
-#: standalone/drakups:147
-#, fuzzy, c-format
-msgid "The port on which is connected your ups"
-msgstr "die tipe bus waaraan die muis gekoppel is"
-
-#: standalone/drakups:157
-#, fuzzy, c-format
-msgid "The wizard successfully configured the new \"%s\" UPS device."
-msgstr "Die wysgeer het die e-pos waarskuwings geaktiveer."
-
-#: standalone/drakups:248
+#: timezone.pm:148 timezone.pm:149
#, fuzzy, c-format
-msgid "UPS devices"
-msgstr "Dienste"
-
-#: standalone/drakups:249 standalone/drakups:268 standalone/drakups:284
-#: standalone/harddrake2:85 standalone/harddrake2:111
-#: standalone/harddrake2:118
-#, c-format
-msgid "Name"
-msgstr "Naam"
-
-#: standalone/drakups:267
-#, fuzzy, c-format
-msgid "UPS users"
-msgstr "Gebruikers"
-
-#: standalone/drakups:283
-#, fuzzy, c-format
-msgid "Access Control Lists"
-msgstr "toegang na netwerk-nutsprogramme"
-
-#: standalone/drakups:284
-#, c-format
-msgid "IP mask"
-msgstr ""
-
-#: standalone/drakups:296
-#, fuzzy, c-format
-msgid "Rules"
-msgstr "Roteerders:"
-
-#: standalone/drakups:297
-#, c-format
-msgid "Action"
-msgstr "Aksie"
-
-#: standalone/drakups:297 standalone/drakvpn:1132 standalone/harddrake2:82
-#, c-format
-msgid "Level"
-msgstr "Vlak"
-
-#: standalone/drakups:297
-#, fuzzy, c-format
-msgid "ACL name"
-msgstr "LVM naam?"
-
-#: standalone/drakups:327 standalone/drakups:331 standalone/drakups:340
-#, fuzzy, c-format
-msgid "DrakUPS"
-msgstr "DrakVPN"
-
-#: standalone/drakups:337
-#, fuzzy, c-format
-msgid "Welcome to the UPS configuration tools"
-msgstr "Toets konfigurasie"
-
-#: standalone/drakvpn:73
-#, c-format
-msgid "DrakVPN"
-msgstr "DrakVPN"
-
-#: standalone/drakvpn:95
-#, c-format
-msgid "The VPN connection is enabled."
-msgstr "Die VPN-konneksie is geaktiveer"
-
-#: standalone/drakvpn:96
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Die opstelling van die VPN-konneksie is alreeds gedoen.\n"
-"\n"
-"Dis tans aktief.\n"
-"\n"
-"Wat wil u doen?"
-
-#: standalone/drakvpn:101
-#, c-format
-msgid "disable"
-msgstr "deaktiveer"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127
-#, c-format
-msgid "reconfigure"
-msgstr "herkonfigureer"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127 standalone/drakvpn:362
-#: standalone/drakvpn:721
-#, c-format
-msgid "dismiss"
-msgstr "ignoreer/sien oor"
-
-#: standalone/drakvpn:105
-#, c-format
-msgid "Disabling VPN..."
-msgstr "Deaktiveer VPN..."
-
-#: standalone/drakvpn:114
-#, c-format
-msgid "The VPN connection is now disabled."
-msgstr "Die VPN-konneksie is nou gedeaktiveer."
-
-#: standalone/drakvpn:121
-#, c-format
-msgid "VPN connection currently disabled"
-msgstr "VPN-konneksie is tans gesper"
-
-#: standalone/drakvpn:122
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Die opstelling van die VPN-konnkesiedeling is alreeds gedoen.\n"
-"\n"
-"Dis tans gedeaktiveer.\n"
-"\n"
-"Wat wil u doen?"
-
-#: standalone/drakvpn:127
-#, c-format
-msgid "enable"
-msgstr "aktiveer"
-
-#: standalone/drakvpn:135
-#, c-format
-msgid "Enabling VPN..."
-msgstr "VPN word geaktiveer..."
-
-#: standalone/drakvpn:141
-#, c-format
-msgid "The VPN connection is now enabled."
-msgstr "Die VPN-konneksie is nou geaktiveer."
-
-#: standalone/drakvpn:155 standalone/drakvpn:183
-#, c-format
-msgid "Simple VPN setup."
-msgstr "Eenvoudige VPN opstelling."
-
-#: standalone/drakvpn:156
-#, c-format
-msgid ""
-"You are about to configure your computer to use a VPN connection.\n"
-"\n"
-"With this feature, computers on your local private network and computers\n"
-"on some other remote private networks, can share resources, through\n"
-"their respective firewalls, over the Internet, in a secure manner. \n"
-"\n"
-"The communication over the Internet is encrypted. The local and remote\n"
-"computers look as if they were on the same network.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using\n"
-"drakconnect before going any further."
-msgstr ""
-"U is oppad om u rekenaar met 'n VPN konneksie te loop opstel.\n"
-"\n"
-"Hiermee kan rekenaars op u plaaslike netwerk en eksterne rekenaars\n"
-"bronne deel,op 'n veilige manier, deur hulle onderskei vuurmure,\n"
-"via die Internet.\n"
-"\n"
-"Die kommunikasie gebruik enkripsie. Die plaaslike en eksterne\n"
-"rkenaars blyk om op dieselde netwerk te wees.\n"
-"\n"
-"Maak tog seker dat u netwerk/Internet reeds opgestel is deur\n"
-"drakconnect te grbruik alvorens u voortgaan."
-
-#: standalone/drakvpn:184
-#, c-format
-msgid ""
-"VPN connection.\n"
-"\n"
-"This program is based on the following projects:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - the docs and man pages coming with the %s package\n"
-"\n"
-"Please read AT LEAST the ipsec-howto docs\n"
-"before going any further."
-msgstr ""
-"VPN connection.\n"
-"\n"
-"This program is based on the following projects:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - the docs and man pages coming with the %s package\n"
-"\n"
-"Please read AT LEAST the ipsec-howto docs\n"
-"before going any further."
-
-#: standalone/drakvpn:196
-#, c-format
-msgid "Kernel module."
-msgstr "Kernel-module."
-
-#: standalone/drakvpn:197
-#, c-format
-msgid ""
-"The kernel needs to have ipsec support.\n"
-"\n"
-"You're running a %s kernel version.\n"
-"\n"
-"This kernel has '%s' support."
-msgstr ""
-"Die kernel benodig ipsec-ondersteuning.\n"
-"\n"
-"U het tans 'n %skernel weergawe.\n"
-"\n"
-"Dit het '%s'-ondersteuning."
-
-#: standalone/drakvpn:264
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Probleme met Installasue van pakket %s"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "Security Policies"
-msgstr "Sekuriteits Reels"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "IKE daemon racoon"
-msgstr "IKE daemon racoon"
-
-#: standalone/drakvpn:281 standalone/drakvpn:292
-#, c-format
-msgid "Configuration file"
-msgstr "Konfigurasie-lêer"
-
-#: standalone/drakvpn:282
-#, c-format
-msgid ""
-"Configuration step!\n"
-"\n"
-"You need to define the Security Policies and then to \n"
-"configure the automatic key exchange (IKE) daemon. \n"
-"The KAME IKE daemon we're using is called 'racoon'.\n"
-"\n"
-"What would you like to configure?\n"
-msgstr ""
-"Configuration step!\n"
-"\n"
-"You need to define the Security Policies and then to \n"
-"configure the automatic key exchange (IKE) daemon. \n"
-"The KAME IKE daemon we're using is called 'racoon'.\n"
-"\n"
-"What would you like to configure?\n"
-
-#: standalone/drakvpn:293
-#, c-format
-msgid ""
-"Next, we will configure the %s file.\n"
-"\n"
-"\n"
-"Simply click on Next.\n"
-msgstr ""
-"Volgende gaan ons die %s-lêer opstel.\n"
-"\n"
-"\n"
-"Klik op Volgende.\n"
-
-#: standalone/drakvpn:311 standalone/drakvpn:671
-#, c-format
-msgid "%s entries"
-msgstr ", %s inskrywings"
-
-#: standalone/drakvpn:312
-#, c-format
-msgid ""
-"The %s file contents\n"
-"is divided into sections.\n"
-"\n"
-"You can now:\n"
-"\n"
-" - display, add, edit, or remove sections, then\n"
-" - commit the changes\n"
-"\n"
-"What would you like to do?\n"
-msgstr ""
-"Die %s lêer se inhoud\n"
-"is opgedeel in seksies.\n"
-"\n"
-"U kan nou :\n"
-"\n"
-" - seksies vertoon, redigeer, of byvoeg, daarna\n"
-" - veranderinge stoor\n"
-"\n"
-"Wat verkies u om te doen?\n"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display"
-msgstr "Vertoon"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid "Commit"
-msgstr "Stoor"
-
-#: standalone/drakvpn:333 standalone/drakvpn:337 standalone/drakvpn:695
-#: standalone/drakvpn:699
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display configuration"
-msgstr "Vertoon konfigurasie"
-
-#: standalone/drakvpn:338
-#, c-format
-msgid ""
-"The %s file does not exist.\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose 'add'.\n"
-msgstr ""
-"Die %s-lêer bestaan nie.\n"
-"\n"
-"Hierdie is 'n nuwe opstelling.\n"
-"\n"
-"Gaan terug en kies \"Voeg by\" .\n"
-
-#: standalone/drakvpn:354
-#, c-format
-msgid "ipsec.conf entries"
-msgstr "ipsec.conf inskrywings"
-
-#: standalone/drakvpn:355
-#, c-format
-msgid ""
-"The %s file contains different sections.\n"
-"\n"
-"Here is its skeleton:\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"You can now add one of these sections.\n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-"Die %s-lêer het verskillende seksies.\n"
-"\n"
-"Hier is die geraamte :\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"U kan nou een van die gedeeltes byvoeg.\n"
-"\n"
-"Kies die gedeelte wat u wil byvoeg.\n"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "config setup"
-msgstr "config setup"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "conn %default"
-msgstr "conn %default"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "normal conn"
-msgstr "normal conn"
-
-#: standalone/drakvpn:368 standalone/drakvpn:409 standalone/drakvpn:496
-#, c-format
-msgid "Exists!"
-msgstr "Bestaan!"
-
-#: standalone/drakvpn:369 standalone/drakvpn:410
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change its name.\n"
-msgstr ""
-"'n Seksie met hierdie naam bestaan reeds.\n"
-"Die seksie se naam moer uniek wees.\n"
-"\n"
-"U sal moet terug gaan en 'n ander seksie skep\n"
-"of sy naam moet verander.\n"
-
-#: standalone/drakvpn:386
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow this config\n"
-"setup section.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Hierdie seksie moet bo-aan u\n"
-"%s lêer wees.\n"
-"\n"
-"Maak seker dat ander seksies op hierdie\n"
-" konfigurasie-seksie volg.\n"
-"\n"
-"Kies \"gaan voort\" of \"vorige\" sodra u klaar is.\n"
-
-#: standalone/drakvpn:391
-#, c-format
-msgid "interfaces"
-msgstr "Koppelvlakke"
-
-#: standalone/drakvpn:392
-#, c-format
-msgid "klipsdebug"
-msgstr "klipsdebug"
-
-#: standalone/drakvpn:393
-#, c-format
-msgid "plutodebug"
-msgstr "plutodebug"
-
-#: standalone/drakvpn:394
-#, c-format
-msgid "plutoload"
-msgstr "plutoload"
-
-#: standalone/drakvpn:395
-#, c-format
-msgid "plutostart"
-msgstr "plutostart"
-
-#: standalone/drakvpn:396
-#, c-format
-msgid "uniqueids"
-msgstr "uniqueids"
-
-#: standalone/drakvpn:430
-#, c-format
-msgid ""
-"This is the first section after the config\n"
-"setup one.\n"
-"\n"
-"Here you define the default settings. \n"
-"All the other sections will follow this one.\n"
-"The left settings are optional. If do not define\n"
-"them here, globally, you can define them in each\n"
-"section.\n"
-msgstr ""
-"This is the first section after the config\n"
-"setup one.\n"
-"\n"
-"Here you define the default settings. \n"
-"All the other sections will follow this one.\n"
-"The left settings are optional. If do not define\n"
-"them here, globally, you can define them in each\n"
-"section.\n"
-
-#: standalone/drakvpn:437
-#, c-format
-msgid "PFS"
-msgstr "PFS"
-
-#: standalone/drakvpn:438
-#, c-format
-msgid "keyingtries"
-msgstr "keyingtries"
-
-#: standalone/drakvpn:439
-#, c-format
-msgid "compress"
-msgstr "compress"
-
-#: standalone/drakvpn:440
-#, c-format
-msgid "disablearrivalcheck"
-msgstr "disablearrivalcheck"
-
-#: standalone/drakvpn:441 standalone/drakvpn:480
-#, c-format
-msgid "left"
-msgstr "left"
-
-#: standalone/drakvpn:442 standalone/drakvpn:481
-#, c-format
-msgid "leftcert"
-msgstr "leftcert"
-
-#: standalone/drakvpn:443 standalone/drakvpn:482
-#, c-format
-msgid "leftrsasigkey"
-msgstr "leftrsasigkey"
-
-#: standalone/drakvpn:444 standalone/drakvpn:483
-#, c-format
-msgid "leftsubnet"
-msgstr "leftsubnet"
-
-#: standalone/drakvpn:445 standalone/drakvpn:484
-#, c-format
-msgid "leftnexthop"
-msgstr "leftnexthop"
-
-#: standalone/drakvpn:474
-#, c-format
-msgid ""
-"Your %s file has several sections, or connections.\n"
-"\n"
-"You can now add a new section.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"U %s-lêer het verskeie seksies, of konneksies.\n"
-"\n"
-"U kan nou 'n nuwe seksie byvoeg.\n"
-"Kies \"Gaan Voort\" sodra u klaar die data voorsien het.\n"
-
-#: standalone/drakvpn:477
-#, c-format
-msgid "section name"
-msgstr "seksienaam"
-
-#: standalone/drakvpn:478
-#, c-format
-msgid "authby"
-msgstr "authby"
-
-#: standalone/drakvpn:479
-#, c-format
-msgid "auto"
-msgstr "auto"
-
-#: standalone/drakvpn:485
-#, c-format
-msgid "right"
-msgstr "right"
-
-#: standalone/drakvpn:486
-#, c-format
-msgid "rightcert"
-msgstr "rightcert"
-
-#: standalone/drakvpn:487
-#, c-format
-msgid "rightrsasigkey"
-msgstr "rightrsasigkey"
-
-#: standalone/drakvpn:488
-#, c-format
-msgid "rightsubnet"
-msgstr "rightsubnet"
-
-#: standalone/drakvpn:489
-#, c-format
-msgid "rightnexthop"
-msgstr "rightnexthop"
-
-#: standalone/drakvpn:497
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change the name of the section.\n"
-msgstr ""
-"'n Seksie met hierdie naam bestaan reeds.\n"
-"Die seksie se naam moer uniek wees.\n"
-"\n"
-"U sal moet terug gaan en 'n ander seksie skep\n"
-"of sy naam moet verander.\n"
-
-#: standalone/drakvpn:529
-#, c-format
-msgid ""
-"Add a Security Policy.\n"
-"\n"
-"You can now add a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Voeg 'n Sekuriteitsreel by.\n"
-"\n"
-"U kan nou 'n Sekuriteisreel byvoeg.\n"
-"\n"
-"Kies \"gaan voort\" sodra u klaar die data voorsien het.\n"
-
-#: standalone/drakvpn:562 standalone/drakvpn:812
-#, c-format
-msgid "Edit section"
-msgstr "Redigeer die keuse"
-
-#: standalone/drakvpn:563
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to edit \n"
-"and then click on next.\n"
-msgstr ""
-"U %s-lêer het 'n aantal seksies of konneksies.\n"
-"\n"
-"U kan die een om te redigeer hier onder kies\n"
-"en dan op \"Volgende\" klik.\n"
-
-#: standalone/drakvpn:566 standalone/drakvpn:646 standalone/drakvpn:817
-#: standalone/drakvpn:863
-#, c-format
-msgid "Section names"
-msgstr "Seksienaam"
-
-#: standalone/drakvpn:576
-#, c-format
-msgid "Can not edit!"
-msgstr "Kan nie redigeer nie!"
-
-#: standalone/drakvpn:577
-#, c-format
-msgid ""
-"You cannot edit this section.\n"
-"\n"
-"This section is mandatory for Freeswan 2.X.\n"
-"One has to specify version 2.0 on the top\n"
-"of the %s file, and eventually, disable or\n"
-"enable the opportunistic encryption.\n"
-msgstr ""
-"U kan nie hierdie seksie redigeer nie.\n"
-"\n"
-"Dit is verpligtend vir Freeswan 2.x.\n"
-"U moet \"version 2.0\" bo-aan die\n"
-"%s-lêer spesifiseer, en later \"opportunistic encryption\" aktiveer of "
-"deaktiveer.\n"
-
-#: standalone/drakvpn:586
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the config setup section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"U %s-lêer het 'n aantal seksies.\n"
-"\n"
-"U kan nou die \"config setup\" seksie redigeer\n"
-"Kies \"gaan voort\" sodra u klaar is daarmee.\n"
-
-#: standalone/drakvpn:597
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the default section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"U %s-lêer het 'n aantal seksies.\n"
-"\n"
-"U kan nou die \"default section\" seksie redigeer\n"
-"Kies \"gaan voort\" sodra u klaar is daarmee.\n"
-
-#: standalone/drakvpn:610
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the normal section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"U %s-lêer het 'n aantal seksies of konneksies.\n"
-"\n"
-"U kan nou die \"normal section\" seksie redigeer\n"
-"\n"
-"Kies \"gaan voort\" sodra u klaar is daarmee.\n"
-
-#: standalone/drakvpn:631
-#, c-format
-msgid ""
-"Edit a Security Policy.\n"
-"\n"
-"You can now edit a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Redigeer 'n Sekuriteitsreel.\n"
-"\n"
-"U kan nou 'n sekuriteitsreel byvoeg.\n"
-"\n"
-"Kies \"gaan voort\" sodra u klaar is daarmee.\n"
-
-#
-#: standalone/drakvpn:642 standalone/drakvpn:859
-#, c-format
-msgid "Remove section"
-msgstr "Verwyder seksie"
-
-#: standalone/drakvpn:643 standalone/drakvpn:860
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to remove\n"
-"and then click on next.\n"
-msgstr ""
-"U %s-lêer het 'n aantal seksies of konneksies.\n"
-"\n"
-"U kan hier onder die een kies om te verwyder\n"
-"klik dan op volgende.\n"
-
-#: standalone/drakvpn:672
-#, c-format
-msgid ""
-"The racoon.conf file configuration.\n"
-"\n"
-"The contents of this file is divided into sections.\n"
-"You can now:\n"
-" - display \t\t (display the file contents)\n"
-" - add\t\t\t (add one section)\n"
-" - edit \t\t\t (modify parameters of an existing section)\n"
-" - remove \t\t (remove an existing section)\n"
-" - commit \t\t (writes the changes to the real file)"
-msgstr ""
-"The racoon.conf file configuration.\n"
-"\n"
-"The contents of this file is divided into sections.\n"
-"You can now:\n"
-" - display \t\t (display the file contents)\n"
-" - add\t\t\t (add one section)\n"
-" - edit \t\t\t (modify parameters of an existing section)\n"
-" - remove \t\t (remove an existing section)\n"
-" - commit \t\t (writes the changes to the real file)"
-
-#: standalone/drakvpn:700
-#, c-format
-msgid ""
-"The %s file does not exist\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose configure.\n"
-msgstr ""
-"Die %s-lêer bestaan nie.\n"
-"\n"
-"Hierdie is 'n nuwe opstelling.\n"
-"\n"
-"Gaan terug en kies \"Konfigureer\" .\n"
-
-#: standalone/drakvpn:714
-#, c-format
-msgid "racoonf.conf entries"
-msgstr "racoonf.conf entries"
-
-#: standalone/drakvpn:715
-#, c-format
-msgid ""
-"The 'add' sections step.\n"
-"\n"
-"Here below is the racoon.conf file skeleton:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-"The 'add' sections step.\n"
-"\n"
-"Here below is the racoon.conf file skeleton:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Choose the section you would like to add.\n"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "path"
-msgstr "path"
-
-#
-#: standalone/drakvpn:721
-#, c-format
-msgid "remote"
-msgstr "remote"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "sainfo"
-msgstr "sainfo"
-
-#: standalone/drakvpn:729
-#, c-format
-msgid ""
-"The 'add path' section step.\n"
-"\n"
-"The path sections have to be on top of your racoon.conf file.\n"
-"\n"
-"Put your mouse over the certificate entry to obtain online help."
-msgstr ""
-"The 'add path' section step.\n"
-"\n"
-"The path sections have to be on top of your racoon.conf file.\n"
-"\n"
-"Put your mouse over the certificate entry to obtain online help."
-
-#: standalone/drakvpn:732
-#, c-format
-msgid "path type"
-msgstr "path type"
-
-#: standalone/drakvpn:736
-#, c-format
-msgid ""
-"path include path: specifies a path to include\n"
-"a file. See File Inclusion.\n"
-"\tExample: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: specifies a file containing\n"
-"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
-"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) will search this directory\n"
-"if a certificate or certificate request is received.\n"
-"\tExample: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"other configuration files can be included.\n"
-"\tExample: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File: Pre-shared key file defines a pair\n"
-"of the identifier and the shared secret key which are used at\n"
-"Pre-shared key authentication method in phase 1."
-msgstr ""
-"path include path: specifies a path to include\n"
-"a file. See File Inclusion.\n"
-"\tExample: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: specifies a file containing\n"
-"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
-"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) will search this directory\n"
-"if a certificate or certificate request is received.\n"
-"\tExample: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"other configuration files can be included.\n"
-"\tExample: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File: Pre-shared key file defines a pair\n"
-"of the identifier and the shared secret key which are used at\n"
-"Pre-shared key authentication method in phase 1."
-
-#: standalone/drakvpn:756 standalone/drakvpn:849
-#, c-format
-msgid "real file"
-msgstr "real file"
-
-#: standalone/drakvpn:779
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your racoon.conf file.\n"
-"\n"
-"You can now choose the remote settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Make sure you already have the path sections\n"
-"on the top of your racoon.conf file.\n"
-"\n"
-"You can now choose the remote settings.\n"
-"Choose continue or previous when you are done.\n"
-
-#: standalone/drakvpn:796
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your %s file.\n"
-"\n"
-"You can now choose the sainfo settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Make sure you already have the path sections\n"
-"on the top of your %s file.\n"
-"\n"
-"You can now choose the sainfo settings.\n"
-"Choose continue or previous when you are done.\n"
-
-#: standalone/drakvpn:813
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here in the list below the one you want\n"
-"to edit and then click on next.\n"
-msgstr ""
-"U %s-lêer het verskeie seksies, of konneksies.\n"
-"\n"
-"U kan vanaf die onderstaande lys een kies om\n"
-"te redigeer, klik dan op volgende.\n"
-
-#: standalone/drakvpn:824
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"\n"
-"You can now edit the remote section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"U %s-lêer het verskeie seksies.\n"
-"\n"
-"\n"
-"U kan nou die eksterne seksies redigeer.\n"
-"\n"
-"Kies \"Gaan Voort\" sodra u klaar die data voorsien het.\n"
-
-#: standalone/drakvpn:833
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the sainfo section entries.\n"
-"\n"
-"Choose continue when you are done to write the data."
-msgstr ""
-"U %s-lêer het verskeie seksies.\n"
-"\n"
-"U kan nou die sainfo seksie redigeer.\n"
-"\n"
-"Kies \"Gaan Voort\" om die veranderinge te stoor."
-
-#: standalone/drakvpn:841
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow these path\n"
-"sections.\n"
-"\n"
-"You can now edit the path entries.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Hierdie seksie moet bo-aan u\n"
-"%s lêer wees.\n"
-"\n"
-"Maak seker dat ander seksies op hierdie\n"
-" konfigurasie-seksie volg.\n"
-"\n"
-"U kan nou die pad se inskrywings redigeer.\n"
-"\n"
-"Kies \"gaan voort\" of \"vorige\" sodra u klaar is.\n"
-
-#: standalone/drakvpn:848
-#, c-format
-msgid "path_type"
-msgstr "path_type"
-
-#: standalone/drakvpn:889
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"\n"
-"You may now share resources through the Internet,\n"
-"in a secure way, using a VPN connection.\n"
-"\n"
-"You should make sure that that the tunnels shorewall\n"
-"section is configured."
-msgstr ""
-"Alles is nou opgestel.\n"
-"\n"
-"U kan nou u bronne op 'n veilige manier deel,\n"
-"deur die Internet, met 'n VPN konneksie.\n"
-"\n"
-"U moet seker maak dat die shorewall se tonnels\n"
-"gedeelte opgestel is."
-
-#: standalone/drakvpn:909
-#, c-format
-msgid "Sainfo source address"
-msgstr "Sainfo source address"
-
-#: standalone/drakvpn:910
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 is the source address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 is the source address"
-msgstr ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 is the source address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 is the source address"
-
-#: standalone/drakvpn:927
-#, c-format
-msgid "Sainfo source protocol"
-msgstr "Sainfo source protocol"
-
-#: standalone/drakvpn:928
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe first 'any' allows any protocol for the source"
-msgstr ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe first 'any' allows any protocol for the source"
-
-#: standalone/drakvpn:942
-#, c-format
-msgid "Sainfo destination address"
-msgstr "Sainfo destination address"
-
-#: standalone/drakvpn:943
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 is the destination address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 is the destination address"
-msgstr ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 is the destination address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 is the destination address"
-
-#: standalone/drakvpn:960
-#, c-format
-msgid "Sainfo destination protocol"
-msgstr "Sainfo destination protocol"
-
-#: standalone/drakvpn:961
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe last 'any' allows any protocol for the destination"
-msgstr ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe last 'any' allows any protocol for the destination"
-
-#: standalone/drakvpn:975
-#, c-format
-msgid "PFS group"
-msgstr "PFS-groep"
-
-#: standalone/drakvpn:977
-#, c-format
-msgid ""
-"define the group of Diffie-Hellman exponentiations.\n"
-"If you do not require PFS then you can omit this directive.\n"
-"Any proposal will be accepted if you do not specify one.\n"
-"group is one of the following: modp768, modp1024, modp1536.\n"
-"Or you can define 1, 2, or 5 as the DH group number."
-msgstr ""
-"define the group of Diffie-Hellman exponentiations.\n"
-"If you do not require PFS then you can omit this directive.\n"
-"Any proposal will be accepted if you do not specify one.\n"
-"group is one of the following: modp768, modp1024, modp1536.\n"
-"Or you can define 1, 2, or 5 as the DH group number."
-
-#: standalone/drakvpn:982
-#, c-format
-msgid "Lifetime number"
-msgstr "Lifetime number"
-
-#: standalone/drakvpn:983
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-msgstr ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-
-#: standalone/drakvpn:999
-#, c-format
-msgid "Lifetime unit"
-msgstr "Lifetime unit"
-
-#: standalone/drakvpn:1001
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
-"'hour'.\n"
-msgstr ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
-"'hour'.\n"
-
-#: standalone/drakvpn:1019
-#, c-format
-msgid "Authentication algorithm"
-msgstr "Magtigings-algoritme"
-
-#: standalone/drakvpn:1021
-#, c-format
-msgid "Compression algorithm"
-msgstr "Kompressie-algoritme"
-
-#: standalone/drakvpn:1022
-#, fuzzy, c-format
-msgid "deflate"
-msgstr "verstek"
-
-#
-#: standalone/drakvpn:1029
-#, c-format
-msgid "Remote"
-msgstr "Remote"
-
-#: standalone/drakvpn:1030
-#, c-format
-msgid ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specifies the parameters for IKE phase 1 for each remote node.\n"
-"The default port is 500. If anonymous is specified, the state-\n"
-"ments apply to all peers which do not match any other remote\n"
-"directive.\n"
-"\n"
-"Examples: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-msgstr ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specifies the parameters for IKE phase 1 for each remote node.\n"
-"The default port is 500. If anonymous is specified, the state-\n"
-"ments apply to all peers which do not match any other remote\n"
-"directive.\n"
-"\n"
-"Examples: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-
-#: standalone/drakvpn:1038
-#, c-format
-msgid "Exchange mode"
-msgstr "Exchange mode"
-
-#: standalone/drakvpn:1040
-#, c-format
-msgid ""
-"defines the exchange mode for phase 1 when racoon is the\n"
-"initiator. Also it means the acceptable exchange mode\n"
-"when racoon is responder. More than one mode can be\n"
-"specified by separating them with a comma. All of the\n"
-"modes are acceptable. The first exchange mode is what\n"
-"racoon uses when it is the initiator.\n"
-msgstr ""
-"defines the exchange mode for phase 1 when racoon is the\n"
-"initiator. Also it means the acceptable exchange mode\n"
-"when racoon is responder. More than one mode can be\n"
-"specified by separating them with a comma. All of the\n"
-"modes are acceptable. The first exchange mode is what\n"
-"racoon uses when it is the initiator.\n"
-
-#: standalone/drakvpn:1046
-#, c-format
-msgid "Generate policy"
-msgstr "Generate policy"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "off"
-msgstr "af"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "on"
-msgstr "op"
-
-#: standalone/drakvpn:1048
-#, c-format
-msgid ""
-"This directive is for the responder. Therefore you\n"
-"should set passive on in order that racoon(8) only\n"
-"becomes a responder. If the responder does not have any\n"
-"policy in SPD during phase 2 negotiation, and the direc-\n"
-"tive is set on, then racoon(8) will choice the first pro-\n"
-"posal in the SA payload from the initiator, and generate\n"
-"policy entries from the proposal. It is useful to nego-\n"
-"tiate with the client which is allocated IP address\n"
-"dynamically. Note that inappropriate policy might be\n"
-"installed into the responder's SPD by the initiator. So\n"
-"that other communication might fail if such policies\n"
-"installed due to some policy mismatches between the ini-\n"
-"tiator and the responder. This directive is ignored in\n"
-"the initiator case. The default value is off."
-msgstr ""
-"This directive is for the responder. Therefore you\n"
-"should set passive on in order that racoon(8) only\n"
-"becomes a responder. If the responder does not have any\n"
-"policy in SPD during phase 2 negotiation, and the direc-\n"
-"tive is set on, then racoon(8) will choice the first pro-\n"
-"posal in the SA payload from the initiator, and generate\n"
-"policy entries from the proposal. It is useful to nego-\n"
-"tiate with the client which is allocated IP address\n"
-"dynamically. Note that inappropriate policy might be\n"
-"installed into the responder's SPD by the initiator. So\n"
-"that other communication might fail if such policies\n"
-"installed due to some policy mismatches between the ini-\n"
-"tiator and the responder. This directive is ignored in\n"
-"the initiator case. The default value is off."
-
-#: standalone/drakvpn:1062
-#, c-format
-msgid "Passive"
-msgstr "Pasief"
-
-#: standalone/drakvpn:1064
-#, c-format
-msgid ""
-"If you do not want to initiate the negotiation, set this\n"
-"to on. The default value is off. It is useful for a\n"
-"server."
-msgstr ""
-"Indie u nie die onderhandeling wil afskop nie, skakel die\n"
-"aan. Die verstek is af. Dit is handig vir 'n bediener."
-
-#: standalone/drakvpn:1067
-#, c-format
-msgid "Certificate type"
-msgstr "Tipe sertifikaat"
-
-#: standalone/drakvpn:1069
-#, c-format
-msgid "My certfile"
-msgstr "My sertifikaat"
-
-#: standalone/drakvpn:1070
-#, c-format
-msgid "Name of the certificate"
-msgstr "Naam van die sertifikaat"
-
-#: standalone/drakvpn:1071
-#, c-format
-msgid "My private key"
-msgstr "My privaat sleutel"
-
-#: standalone/drakvpn:1072
-#, c-format
-msgid "Name of the private key"
-msgstr "Naam van die privaat-sleutel"
-
-#: standalone/drakvpn:1073
-#, c-format
-msgid "Peers certfile"
-msgstr "Eweknie se sertifikaat"
-
-#: standalone/drakvpn:1074
-#, c-format
-msgid "Name of the peers certificate"
-msgstr "Naam van die eweknie se sertifikaat"
-
-#: standalone/drakvpn:1075
-#, c-format
-msgid "Verify cert"
-msgstr "Verivïeer Sertifikaat"
-
-#: standalone/drakvpn:1077
-#, c-format
-msgid ""
-"If you do not want to verify the peer's certificate for\n"
-"some reason, set this to off. The default is on."
-msgstr ""
-"Indien u nie die eweknie se sertifikaat wil verivïeer nie\n"
-"sit hierdie dan af. Die verstek is aan."
-
-#: standalone/drakvpn:1079
-#, c-format
-msgid "My identifier"
-msgstr "My identifiseerder"
-
-#: standalone/drakvpn:1080
-#, c-format
-msgid ""
-"specifies the identifier sent to the remote host and the\n"
-"type to use in the phase 1 negotiation. address, FQDN,\n"
-"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
-"they are used like:\n"
-"\tmy_identifier address [address];\n"
-"\t\tthe type is the IP address. This is the default\n"
-"\t\ttype if you do not specify an identifier to use.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tthe type is a USER_FQDN (user fully-qualified\n"
-"\t\tdomain name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tthe type is a FQDN (fully-qualified domain name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tthe type is a KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tthe type is an ASN.1 distinguished name. If\n"
-"\t\tstring is omitted, racoon(8) will get DN from\n"
-"\t\tSubject field in the certificate.\n"
-"\n"
-"Examples: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-msgstr ""
-"specifies the identifier sent to the remote host and the\n"
-"type to use in the phase 1 negotiation. address, FQDN,\n"
-"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
-"they are used like:\n"
-"\tmy_identifier address [address];\n"
-"\t\tthe type is the IP address. This is the default\n"
-"\t\ttype if you do not specify an identifier to use.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tthe type is a USER_FQDN (user fully-qualified\n"
-"\t\tdomain name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tthe type is a FQDN (fully-qualified domain name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tthe type is a KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tthe type is an ASN.1 distinguished name. If\n"
-"\t\tstring is omitted, racoon(8) will get DN from\n"
-"\t\tSubject field in the certificate.\n"
-"\n"
-"Examples: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-
-#: standalone/drakvpn:1100
-#, c-format
-msgid "Peers identifier"
-msgstr "Peers identifier"
-
-#: standalone/drakvpn:1101
-#, c-format
-msgid "Proposal"
-msgstr "Voorstelling"
-
-#: standalone/drakvpn:1103
-#, c-format
-msgid ""
-"specify the encryption algorithm used for the\n"
-"phase 1 negotiation. This directive must be defined. \n"
-"algorithm is one of the following: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For other transforms, this statement should not be used."
-msgstr ""
-"specify the encryption algorithm used for the\n"
-"phase 1 negotiation. This directive must be defined. \n"
-"algorithm is one of the following: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For other transforms, this statement should not be used."
-
-#: standalone/drakvpn:1110
-#, c-format
-msgid "Hash algorithm"
-msgstr "Hash-algoritme"
-
-#: standalone/drakvpn:1112
-#, c-format
-msgid "DH group"
-msgstr "DH-groep"
-
-#: standalone/drakvpn:1119
-#, c-format
-msgid "Command"
-msgstr "Instruksie"
-
-#: standalone/drakvpn:1120
-#, c-format
-msgid "Source IP range"
-msgstr "Bron se IP-reeks"
-
-#: standalone/drakvpn:1121
-#, c-format
-msgid "Destination IP range"
-msgstr "bestemming se IP-reeks"
-
-#: standalone/drakvpn:1122
-#, c-format
-msgid "Upper-layer protocol"
-msgstr "Bo-laag protokol"
-
-#: standalone/drakvpn:1122 standalone/drakvpn:1129
-#, fuzzy, c-format
-msgid "any"
-msgstr "Dag"
-
-#: standalone/drakvpn:1124
-#, c-format
-msgid "Flag"
-msgstr "Flag"
-
-#: standalone/drakvpn:1125
-#, c-format
-msgid "Direction"
-msgstr "Rigting"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "IPsec policy"
-msgstr "IPsec-reels"
-
-#: standalone/drakvpn:1126
-#, fuzzy, c-format
-msgid "ipsec"
-msgstr "Msec"
-
-#: standalone/drakvpn:1126
-#, fuzzy, c-format
-msgid "discard"
-msgstr "ge-deaktiveer"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "Mode"
-msgstr "Modus"
-
-#: standalone/drakvpn:1129
-#, fuzzy, c-format
-msgid "tunnel"
-msgstr "Kanaal"
-
-#: standalone/drakvpn:1129
-#, fuzzy, c-format
-msgid "transport"
-msgstr "reeds versend"
-
-#: standalone/drakvpn:1131
-#, c-format
-msgid "Source/destination"
-msgstr "Bron/bestemming"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "require"
-msgstr ""
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "default"
-msgstr "verstek"
-
-#: standalone/drakvpn:1132
-#, fuzzy, c-format
-msgid "use"
-msgstr "Muis"
-
-#: standalone/drakvpn:1132
-#, fuzzy, c-format
-msgid "unique"
-msgstr "uniqueids"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (broadcast)"
-msgstr "VSA (uitsaai)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable)"
-msgstr "VSK (kabel)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "VSA (cable-hrc)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "Canada (cable)"
-msgstr "Kanada (kabel)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Japan (uitsaai)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (cable)"
-msgstr "Japan (kabel)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "China (broadcast)"
-msgstr "China (uitsaai)"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "West Europe"
-msgstr "Wes-Europa"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "East Europe"
-msgstr "Oos-Europa"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "France [SECAM]"
-msgstr "Frankryk [SECAM]"
-
-#: standalone/drakxtv:48
-#, c-format
-msgid "Newzealand"
-msgstr "Neu-Seeland"
-
-#: standalone/drakxtv:51
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Australise, Optus kabel-TV"
-
-#: standalone/drakxtv:85
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr "Voorsien asseblief u TV-norm en land"
-
-#: standalone/drakxtv:87
-#, c-format
-msgid "TV norm:"
-msgstr "TV-norm:"
-
-#: standalone/drakxtv:88
-#, c-format
-msgid "Area:"
-msgstr "Area:"
-
-#: standalone/drakxtv:93
-#, c-format
-msgid "Scanning for TV channels in progress..."
-msgstr "Aftas vir TV-kanale in wording ..."
-
-#: standalone/drakxtv:103
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "Skandeer vir TV-kanale"
-
-#: standalone/drakxtv:107
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Daar was 'n fout met die skandering vir TV-kanale"
-
-#: standalone/drakxtv:110
-#, c-format
-msgid "Have a nice day!"
-msgstr "Jy moet 'n wonderlike dag hê!"
-
-#: standalone/drakxtv:111
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "U kan nou xawtv gebruik ( onder X-Window! )!\n"
-
-#: standalone/drakxtv:149
-#, c-format
-msgid "No TV Card detected!"
-msgstr "Geen TV-kaart opgespoor!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakxtv:151
-#, c-format
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"Geen TV-kaart is op u rekenaar bespeur nie. Maak tog seker dat dit 'n Linux-"
-"ondersteunde Video/TV-kaart is. Kyk of dit reg ingeprop is.\n"
-"\n"
-"\n"
-"U kan ons hardeware-databasis besoek te:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/finish-install:42 standalone/keyboarddrake:30
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Wat is u sleutelborduitleg?"
-
-#: standalone/harddrake2:25
-#, c-format
-msgid "Alternative drivers"
-msgstr "Alternatiewe drywers"
-
-#: standalone/harddrake2:26
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "lys van alternatiewe drywers vir hierdie klankkaart"
-
-#: standalone/harddrake2:29
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-"hierdie is die fisiese bus waarop die toestel ingeprop is (bv. PCI, USB, ...)"
-
-#: standalone/harddrake2:31 standalone/harddrake2:146
-#, c-format
-msgid "Bus identification"
-msgstr "Bus identifikasie"
-
-#: standalone/harddrake2:32
-#, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
-msgstr ""
-"- PCI en USB toestelle: lys die vervaardiger, toestel, sub-vervaardiger en "
-"sub-toestel PCI/USB id's"
-
-#: standalone/harddrake2:35
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "Drive capacity"
-msgstr "Kapasiteit"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr "spesiale voordele van die drywer ( skryfvermoë en DVD-ondersteuning)"
-
-#: standalone/harddrake2:39
-#, c-format
-msgid "this field describes the device"
-msgstr "Hierdie veld beskryf die toestel"
-
-#: standalone/harddrake2:40
-#, c-format
-msgid "Old device file"
-msgstr "Ou 'device file'"
-
-#: standalone/harddrake2:41
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "ou statise toestelnaam wat in die dev pakket gebruik word"
-
-#: standalone/harddrake2:42
-#, c-format
-msgid "New devfs device"
-msgstr "Nuwe 'devfs'-toestel"
-
-#: standalone/harddrake2:43
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "nuwe toestelnaam is dinamies geskep deur die kernel se 'devfs'"
-
-#. -PO: here "module" is the "jargon term" for a kernel driver
-#: standalone/harddrake2:46
-#, c-format
-msgid "Module"
-msgstr "Module"
-
-#: standalone/harddrake2:46
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "die GNU/Liunux kernel se module wat die toestel beheer"
-
-#: standalone/harddrake2:47
-#, fuzzy, c-format
-msgid "Extended partitions"
-msgstr "Skep 'n nuwe partisie"
-
-#: standalone/harddrake2:47
-#, fuzzy, c-format
-msgid "the number of extended partitions"
-msgstr "die verwerker se nommer"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Geometry"
-msgstr "Geometrie"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Cylinder/head/sectors geometry of the disk"
-msgstr ""
-
-#: standalone/harddrake2:49
-#, fuzzy, c-format
-msgid "Disk controller"
-msgstr "SMBus-beheerders"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "the disk controller on the host side"
-msgstr ""
-
-#: standalone/harddrake2:50
-#, c-format
-msgid "class of hardware device"
-msgstr "hardeware-toestel se klas"
-
-#: standalone/harddrake2:51 standalone/harddrake2:83
-#: standalone/printerdrake:224
-#, c-format
-msgid "Model"
-msgstr "Model"
-
-#: standalone/harddrake2:51
-#, c-format
-msgid "hard disk model"
-msgstr "model hardeskyf"
-
-#
-#: standalone/harddrake2:52
-#, c-format
-msgid "network printer port"
-msgstr "poort van netwerkdrukker"
-
-#: standalone/harddrake2:53
-#, fuzzy, c-format
-msgid "Primary partitions"
-msgstr "Formateer partisies"
-
-#: standalone/harddrake2:53
-#, fuzzy, c-format
-msgid "the number of the primary partitions"
-msgstr "die verwerker se nommer"
-
-#: standalone/harddrake2:54
-#, c-format
-msgid "the vendor name of the device"
-msgstr "toestel se vervaardiger"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "Bus PCI #"
-msgstr ""
-
-#: standalone/harddrake2:55
-#, fuzzy, c-format
-msgid "the PCI bus on which the device is plugged"
-msgstr ""
-"hierdie is die fisiese bus waarop die toestel ingeprop is (bv. PCI, USB, ...)"
-
-#: standalone/harddrake2:56
-#, fuzzy, c-format
-msgid "PCI device #"
-msgstr "Dienste"
-
-#: standalone/harddrake2:56
-#, fuzzy, c-format
-msgid "PCI device number"
-msgstr "Lifetime number"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function #"
-msgstr ""
-
-#: standalone/harddrake2:57
-#, fuzzy, c-format
-msgid "PCI function number"
-msgstr "Konneksienaam"
-
-#: standalone/harddrake2:58
-#, fuzzy, c-format
-msgid "Vendor ID"
-msgstr "Vervaardiger"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "this is the standard numerical identifier of the vendor"
-msgstr ""
-
-#: standalone/harddrake2:59
-#, fuzzy, c-format
-msgid "Device ID"
-msgstr "Toestel: "
-
-#: standalone/harddrake2:59
-#, fuzzy, c-format
-msgid "this is the numerical identifier of the device"
-msgstr "toestel se vervaardiger"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "Sub vendor ID"
-msgstr ""
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "this is the minor numerical identifier of the vendor"
-msgstr ""
-
-#: standalone/harddrake2:61
-#, fuzzy, c-format
-msgid "Sub device ID"
-msgstr "Dienste"
-
-#: standalone/harddrake2:61
-#, fuzzy, c-format
-msgid "this is the minor numerical identifier of the device"
-msgstr "toestel se vervaardiger"
-
-#: standalone/harddrake2:62
-#, fuzzy, c-format
-msgid "Device USB ID"
-msgstr "Toestel: "
-
-#: standalone/harddrake2:62
-#, c-format
-msgid ".."
-msgstr ".."
-
-#: standalone/harddrake2:66
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
-
-#: standalone/harddrake2:66
-#, c-format
-msgid ""
-"the GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
-msgstr ""
-"die 'GNU/Linux kernel' moet 'n berekening-lus gedurende die selflaai loop om "
-"'n tyds-teller af te skop. Die resultaat word gestoor as 'n 'bogomips', 'n "
-"manier om te toets hou kragtig die CPU is."
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "Cache size"
-msgstr "Grootte van Kas"
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "grotte van die (tweede vlak) verwerker-tussengeheue"
-
-#. -PO: here "comas" is the medical coma, not the lexical coma!!
-#: standalone/harddrake2:70
-#, c-format
-msgid "Coma bug"
-msgstr "Comba gogga"
-
-#: standalone/harddrake2:70
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "indien hierdie verwerker die 'Cyrix 6x86 Coma'-gogga het"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "Cpuid family"
-msgstr "Cpuid-familie"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "CPU se familie (bv. 6 vir i686 tipe)"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "Cpuid level"
-msgstr "Cpuid vlak"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "inligtingsvlak wat verkry kan word deur die cpuid instruksie"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Frekwensie (MHz)"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr ""
-"die verwerker se frekwensie in MHz ( dit is rofweg hoeveel instruksies "
-"dieverwerker per sekondes kan uitvoer)"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "Flags"
-msgstr "Flaggies"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "CPU flaggies deur kernel geraporteer"
-
-#: standalone/harddrake2:75
-#, c-format
-msgid "Fdiv bug"
-msgstr "Fdiv-gogga"
-
-#: standalone/harddrake2:76
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
-"Vroeë Intel Pentium ververkers het probleme gehad wanneer 'Floating point "
-"DIVision (FDIV)' gedoen moes word. (die presisie was soms nie reg nie)"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "Is FPU present"
-msgstr "Is FPU teenwoordig"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "ja, beteken dat die verwerker 'n rekenkundige-koverwerker het"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "Indien die FPU 'n 'irq-vektor' het"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
-"ja, beteken dat die rekenkundige-koverwerker 'n eksepsie-vektor aangeheg het"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "F00f bug"
-msgstr "F00f-gogga"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
-"vroeë pentiums het foute gehad en het gevries wanneer 'F00F bytecode' "
-"gedekodeer word"
-
-#: standalone/harddrake2:80
-#, c-format
-msgid "Halt bug"
-msgstr "Halt-fout"
-
-#: standalone/harddrake2:81
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
-"Van die vroeër i486DX-100 verwerkers kan nie weer betroubaar terugkeur om te "
-"funksioneer na die \"halt\" instruksie gebruik is nie."
-
-#: standalone/harddrake2:82
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "sub-generasie van cpu"
-
-#: standalone/harddrake2:83
-#, c-format
-msgid "generation of the cpu (eg: 8 for Pentium III, ...)"
-msgstr "verwerker se generasie (bv. 8 vir Pentium III,...)"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "Model name"
-msgstr "Naam van model"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "verwerker se amptelike handelsnaam"
-
-#: standalone/harddrake2:85
-#, c-format
-msgid "the name of the CPU"
-msgstr "die verwerker se naam"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "Processor ID"
-msgstr "Verwerker ID"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "the number of the processor"
-msgstr "die verwerker se nommer"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "Model stepping"
-msgstr "Stap deur modelle"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "'stepping' van die verwerker (sub-model (generasie) nommer)"
-
-#: standalone/harddrake2:88
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "die verwerker se vervaardiger"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid "Write protection"
-msgstr "Skryf-beskerming"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid ""
-"the WP flag in the CR0 register of the cpu enforce write protection at the "
-"memory page level, thus enabling the processor to prevent unchecked kernel "
-"accesses to user memory (aka this is a bug guard)"
-msgstr ""
-"die WP-flaggie in die CD0 -register van die verwerker, forseer beskerming "
-"teen die skryf na geheue-bladsye. Dit vehoed dat die kernel ongehoorde "
-"toegang na die gebruiker-geheue kry (maw. dit beskerm teen goggas (bugs))"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "Floppy format"
-msgstr "Disket se formaat"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "aandrywer ondersteun die volgende formate"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "Channel"
-msgstr "Kanaal"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "EIDE/SCSI channel"
-
-#: standalone/harddrake2:98
-#, fuzzy, c-format
-msgid "Disk identifier"
-msgstr "My identifiseerder"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "usually the disk serial number"
-msgstr ""
-
-#: standalone/harddrake2:99
-#, fuzzy, c-format
-msgid "Logical unit number"
-msgstr "Logiese-volumenaam "
-
-#: standalone/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 ""
-
-#. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...)
-#: standalone/harddrake2:106
-#, fuzzy, c-format
-msgid "Installed size"
-msgstr "Installeer stelsel"
-
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:107
-#, fuzzy, c-format
-msgid "Enabled Size"
-msgstr "Aktiveer"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled size of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:108
-#, fuzzy, c-format
-msgid "type of the memory device"
-msgstr "Naam van die eweknie se sertifikaat"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed"
-msgstr "Spoed"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:110
-#, fuzzy, c-format
-msgid "Bank connections"
-msgstr "Kabelkonneksie"
-
-#: standalone/harddrake2:111
-#, c-format
-msgid "Socket designation of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:115
-#, fuzzy, c-format
-msgid "Device file"
-msgstr "Ou 'device file'"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid ""
-"the device file used to communicate with the kernel driver for the mouse"
-msgstr ""
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "Emulated wheel"
-msgstr ""
-
-#: standalone/harddrake2:116
-#, fuzzy, c-format
-msgid "whether the wheel is emulated or not"
-msgstr "met wielletjie-emulasie"
-
-#
-#: standalone/harddrake2:117
-#, fuzzy, c-format
-msgid "the type of the mouse"
-msgstr "Toets asb. die muis"
-
-#: standalone/harddrake2:118
-#, fuzzy, c-format
-msgid "the name of the mouse"
-msgstr "die verwerker se naam"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "Number of buttons"
-msgstr "Aantal knoppies"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "die muis se aantal knoppies"
-
-#: standalone/harddrake2:120
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "die tipe bus waaraan die muis gekoppel is"
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "Mouse protocol used by X11"
-msgstr ""
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "the protocol that the graphical desktop use with the mouse"
-msgstr ""
-
-#: standalone/harddrake2:128 standalone/harddrake2:137
-#: standalone/harddrake2:144 standalone/harddrake2:152
-#: standalone/harddrake2:341
-#, c-format
-msgid "Identification"
-msgstr "Identifikasie"
-
-#: standalone/harddrake2:129 standalone/harddrake2:145
-#, c-format
-msgid "Connection"
-msgstr "Verbinding"
-
-#: standalone/harddrake2:138
-#, fuzzy, c-format
-msgid "Performances"
-msgstr "Voorkeure"
-
-#: standalone/harddrake2:139
-#, fuzzy, c-format
-msgid "Bugs"
-msgstr "Bus"
-
-#: standalone/harddrake2:140
-#, c-format
-msgid "FPU"
-msgstr ""
-
-#: standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Toestel"
-
-#: standalone/harddrake2:148
-#, c-format
-msgid "Partitions"
-msgstr "Partisies"
-
-#: standalone/harddrake2:153
-#, c-format
-msgid "Features"
-msgstr "Funksies"
-
-#. -PO: please keep all "/" characters !!!
-#: standalone/harddrake2:176 standalone/logdrake:76
-#: standalone/printerdrake:146 standalone/printerdrake:159
-#: standalone/printerdrake:171
-#, c-format
-msgid "/_Options"
-msgstr "/_Opsies"
-
-#: standalone/harddrake2:177 standalone/harddrake2:202 standalone/logdrake:78
-#: standalone/printerdrake:172 standalone/printerdrake:174
-#: standalone/printerdrake:177 standalone/printerdrake:179
-#, c-format
-msgid "/_Help"
-msgstr "/_Hulp"
-
-#: standalone/harddrake2:181
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Outospeur _drukkers"
-
-#: standalone/harddrake2:182
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Outospeur _modems"
-
-#: standalone/harddrake2:183
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Outospeur _jaz-aandrywers"
-
-#: standalone/harddrake2:184
-#, c-format
-msgid "/Autodetect parallel _zip drives"
-msgstr ""
-
-#: standalone/harddrake2:191 standalone/printerdrake:152
-#, c-format
-msgid "/_Quit"
-msgstr "/_Verlaat"
-
-#: standalone/harddrake2:204
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Velde se beskrywing"
-
-#: standalone/harddrake2:206
-#, c-format
-msgid "Harddrake help"
-msgstr "Harddrake help"
-
-#: standalone/harddrake2:215
-#, 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 ""
-"Sodra u 'n toestel gekies het, sal u meer inligting omtrent dit sien in die "
-"velde aan die regterkant (\"Inligting\")"
-
-#: standalone/harddrake2:221 standalone/printerdrake:177
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Raporteer 'n Fout"
-
-#: standalone/harddrake2:223 standalone/printerdrake:179
-#, c-format
-msgid "/_About..."
-msgstr "/_Aangaande..."
-
-#: standalone/harddrake2:224
-#, c-format
-msgid "About Harddrake"
-msgstr "Omtrent Harddrake"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/harddrake2:226
-#, c-format
-msgid ""
-"This is HardDrake, a %s hardware configuration tool.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-msgstr ""
-"Hierdie is HardDrake,'n %s program vir hardewarekonfigurasie.\n"
-"<span foreground=\"royalblue3\">Weergawe:</span> %s\n"
-"<span foreground=\"royalblue3\">Skrywer</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-
-#: standalone/harddrake2:242
-#, fuzzy, c-format
-msgid "Harddrake2"
-msgstr "HardDrake"
-
-#: standalone/harddrake2:272
-#, c-format
-msgid "Detected hardware"
-msgstr "Bespeurde hardeware"
-
-#: standalone/harddrake2:277
-#, c-format
-msgid "Configure module"
-msgstr "Konfigureer module"
-
-#: standalone/harddrake2:284
-#, c-format
-msgid "Run config tool"
-msgstr "Loop konfigurasieprogram"
-
-#: standalone/harddrake2:308
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr "Klik op 'n toestel links, om sy inligting hier te vertoon."
-
-#: standalone/harddrake2:329 standalone/printerdrake:306
-#: standalone/printerdrake:320
-#, c-format
-msgid "Unknown"
-msgstr "Onbekend"
-
-#: standalone/harddrake2:349
-#, c-format
-msgid "Misc"
-msgstr "Allerande"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "secondary"
-msgstr "sekondêre"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "primary"
-msgstr "primêre"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "burner"
-msgstr "skrywer"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "DVD"
-msgstr "DVD"
-
-#: standalone/harddrake2:511
-#, c-format
-msgid ""
-"The following devices needs proprietary drivers or firmwares in order to "
-"operate smoothly. The appropriate packages can be retrieved from the "
-"Mandriva Club. Do you want to subscribe to the Mandriva Club?"
-msgstr ""
-
-#: standalone/keyboarddrake:45
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
-"Wil u hê dat die 'BackSpace' sleutel moet uitvee in die konsole ('n 'Delete' "
-"terugstuur)?"
-
-#: standalone/localedrake:38
-#, fuzzy, c-format
-msgid "LocaleDrake"
-msgstr "Plaaslike meting"
-
-#: standalone/localedrake:44
-#, fuzzy, c-format
-msgid "You should install the following packages: %s"
-msgstr "Installeer pakket %s"
-
-#. -PO: the following is used to combine packages names. eg: "initscripts, harddrake, yudit"
-#: standalone/localedrake:47 standalone/scannerdrake:135
-#, c-format
-msgid ", "
-msgstr ", "
-
-#: standalone/localedrake:55
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "Die verandering is aangebring, maar u moet eers afteken"
-
-#: standalone/logdrake:49
-#, fuzzy, c-format
-msgid "Mandriva Linux Tools Logs"
-msgstr "Mandriva Linux Tools Logs"
-
-#: standalone/logdrake:50
-#, c-format
-msgid "Logdrake"
-msgstr "Logdrake"
-
-#: standalone/logdrake:63
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Vertoon slegs vir gekose dag"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "/File/_New"
-msgstr "/Lêer/_Nuut"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "/File/_Open"
-msgstr "/Lêer/_Oopmaak"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "/File/_Save"
-msgstr "/Lêer/_Stoor"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
-
-#: standalone/logdrake:73
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Lêer/Stoor _as"
-
-#: standalone/logdrake:74
-#, c-format
-msgid "/File/-"
-msgstr "/Lêer/-"
-
-#: standalone/logdrake:77
-#, c-format
-msgid "/Options/Test"
-msgstr "/Opsies/Toets"
-
-#: standalone/logdrake:79
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Hulp/_Aangaande..."
-
-#: standalone/logdrake:108
-#, c-format
-msgid ""
-"_:this is the auth.log log file\n"
-"Authentication"
-msgstr "Geldigverklaring"
-
-#: standalone/logdrake:109
-#, c-format
-msgid ""
-"_:this is the user.log log file\n"
-"User"
-msgstr "Gebruiker"
-
-#: standalone/logdrake:110
-#, c-format
-msgid ""
-"_:this is the /var/log/messages log file\n"
-"Messages"
-msgstr "Boodskappe"
-
-#: standalone/logdrake:111
-#, c-format
-msgid ""
-"_:this is the /var/log/syslog log file\n"
-"Syslog"
-msgstr "Syslog"
-
-#: standalone/logdrake:115
-#, c-format
-msgid "search"
-msgstr "soek"
-
-#: standalone/logdrake:127
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "'n Nutsprogram wat u help met die staaflêers"
-
-#: standalone/logdrake:128 standalone/net_applet:347 standalone/net_monitor:93
-#, c-format
-msgid "Settings"
-msgstr "Verstellings"
-
-#: standalone/logdrake:133
-#, c-format
-msgid "Matching"
-msgstr "Passend"
-
-#: standalone/logdrake:134
-#, c-format
-msgid "but not matching"
-msgstr "maar nie passend"
-
-#: standalone/logdrake:138
-#, c-format
-msgid "Choose file"
-msgstr "Kies lêer"
-
-#: standalone/logdrake:150
-#, c-format
-msgid "Calendar"
-msgstr "Kalender"
-
-#: standalone/logdrake:160
-#, c-format
-msgid "Content of the file"
-msgstr "Inhoud van die lêer"
-
-#: standalone/logdrake:164 standalone/logdrake:401
-#, c-format
-msgid "Mail alert"
-msgstr "e-pos waarskuwing"
-
-#: standalone/logdrake:171
-#, fuzzy, c-format
-msgid "The alert wizard has failed unexpectedly:"
-msgstr "Die waarsku wysgeer het onverwags gestop:"
-
-#: standalone/logdrake:224
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "net 'n oomblik, ontleed lêer: %s"
-
-#: standalone/logdrake:379
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "'Apache World Wide Web'-bediener"
-
-#: standalone/logdrake:380
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Oplosser van Domeinnaam"
-
-#: standalone/logdrake:381
-#, c-format
-msgid "Ftp Server"
-msgstr "FTP-bediener"
-
-#: standalone/logdrake:382
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Postfix e-posbediener"
-
-#: standalone/logdrake:383
-#, c-format
-msgid "Samba Server"
-msgstr "Samba-bediener"
-
-#: standalone/logdrake:385
-#, c-format
-msgid "Webmin Service"
-msgstr "Webmin-diens"
-
-#: standalone/logdrake:386
-#, c-format
-msgid "Xinetd Service"
-msgstr "Xinetd Service"
-
-#: standalone/logdrake:395
-#, c-format
-msgid "Configure the mail alert system"
-msgstr "Konfigureer die e-pos waarskuwings"
-
-#: standalone/logdrake:396
-#, c-format
-msgid "Stop the mail alert system"
-msgstr "Stop die e-pos waarskuwings"
-
-#: standalone/logdrake:404
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Konfigurasie van e-pos alarm"
-
-#: standalone/logdrake:405
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Welkom by die e-pos konfigurasie-program.\n"
-"\n"
-"Hier kan u die waarskuwing-stelsel opstel\n"
-
-#: standalone/logdrake:415
-#, c-format
-msgid "Services settings"
-msgstr "Diens verstelling"
-
-#: standalone/logdrake:416
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr ""
-"U sal 'n waarskuwing ontvang indien een van die dienste nie meer beskikbaar "
-"is nie"
-
-#: standalone/logdrake:423
-#, c-format
-msgid "Load setting"
-msgstr "Laai verstelling"
-
-#: standalone/logdrake:424
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "U sal 'n waarskuwing ontvang sodra die las hoër as die waarde styg"
-
-#: standalone/logdrake:425
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Laai"
-
-#: standalone/logdrake:430
-#, c-format
-msgid "Alert configuration"
-msgstr "Waarsku-konfigurasie"
-
-#: standalone/logdrake:431
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Voorsien asseblief u e-posadres"
-
-#: standalone/logdrake:432
-#, c-format
-msgid "and enter the name (or the IP) of the SMTP server you wish to use"
-msgstr ""
-"en voorsien die naam (of IP-adres) van die SMTP-bediener wat u wil gebruik"
-
-#: standalone/logdrake:451
-#, c-format
-msgid "The wizard successfully configured the mail alert."
-msgstr "Die wysgeer het die e-pos waarskuwings geaktiveer."
-
-#: standalone/logdrake:457
-#, c-format
-msgid "The wizard successfully disabled the mail alert."
-msgstr "Die wysgeer het die e-pos waarskuwings gestop"
-
-#: standalone/logdrake:516
-#, c-format
-msgid "Save as.."
-msgstr "Stoor as.."
-
-#: standalone/mousedrake:31
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Wat is u muistoestel?"
-
-#: standalone/mousedrake:44
-#, c-format
-msgid "Emulate third button?"
-msgstr "Emuleer derde knop?"
-
-#: standalone/mousedrake:61
-#, c-format
-msgid "Mouse test"
-msgstr "Toets van muis"
-
-#
-#: standalone/mousedrake:64
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Toets asb. die muis:"
-
-#: standalone/net_applet:47
-#, fuzzy, c-format
-msgid "Network is up on interface %s"
-msgstr "Netwerkkoppelvlak"
-
-#. -PO: keep the "Configure Network" substring synced with the "Configure Network" message below
-#: standalone/net_applet:50
-#, fuzzy, c-format
-msgid "Network is down on interface %s. Click on \"Configure Network\""
-msgstr "Netwerk nie gekonfigureer nie"
-
-#: standalone/net_applet:56 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Connect %s"
-msgstr "Konnekteer %s"
-
-#: standalone/net_applet:57 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Disconnect %s"
-msgstr "Diskonnekteer %s"
-
-#: standalone/net_applet:58
-#, fuzzy, c-format
-msgid "Monitor Network"
-msgstr "Herstel Deur Netwerk"
-
-#: standalone/net_applet:60
-#, c-format
-msgid "Manage wireless networks"
-msgstr ""
-
-#: standalone/net_applet:61
-#, c-format
-msgid "Configure Network"
-msgstr "Konfigureer die Netwerk"
-
-#: standalone/net_applet:63
-#, fuzzy, c-format
-msgid "Watched interface"
-msgstr "Koppelvlakke"
-
-#: standalone/net_applet:93
-#, c-format
-msgid "Profiles"
-msgstr "Profille"
-
-#: standalone/net_applet:102
-#, c-format
-msgid "Get Online Help"
-msgstr ""
-
-#: standalone/net_applet:335
-#, c-format
-msgid "Interactive Firewall automatic mode"
-msgstr ""
-
-#: standalone/net_applet:340
-#, c-format
-msgid "Always launch on startup"
-msgstr ""
-
-#: standalone/net_applet:344
-#, fuzzy, c-format
-msgid "Wireless networks"
-msgstr "Draadlose konneksie"
-
-#: standalone/net_applet:429
-#, fuzzy, c-format
-msgid "Interactive Firewall: intrusion detected"
-msgstr "Vuurmuurkonfigurasie gevind!"
-
-#: standalone/net_applet:442
-#, fuzzy, c-format
-msgid "What do you want to do with this attacker?"
-msgstr "Wil Taai-sleutels aktiveer?"
-
-#: standalone/net_applet:445
-#, fuzzy, c-format
-msgid "Attack details"
-msgstr "Geen Detail"
-
-#: standalone/net_applet:449
-#, fuzzy, c-format
-msgid "Attack time: %s"
-msgstr "Aktiveer %s"
-
-#: standalone/net_applet:450
-#, c-format
-msgid "Network interface: %s"
-msgstr "Netwerkkoppelvlak: %s"
-
-#: standalone/net_applet:451
-#, fuzzy, c-format
-msgid "Attack type: %s"
-msgstr "tipe: %s"
-
-#: standalone/net_applet:452
-#, c-format
-msgid "Protocol: %s"
-msgstr "Protokol: %s"
-
-#: standalone/net_applet:453
-#, fuzzy, c-format
-msgid "Attacker IP address: %s"
-msgstr "Deurgang se IP-adres"
-
-#: standalone/net_applet:454
-#, fuzzy, c-format
-msgid "Attacker hostname: %s"
-msgstr "Stel gasheer naam %s: "
-
-#: standalone/net_applet:457
-#, fuzzy, c-format
-msgid "Service attacked: %s"
-msgstr "Diens Bestuurder"
-
-#: standalone/net_applet:458
-#, fuzzy, c-format
-msgid "Port attacked: %s"
-msgstr "Poort: %s"
-
-#: standalone/net_applet:460
-#, c-format
-msgid "Type of ICMP attack: %s"
-msgstr ""
-
-#: standalone/net_applet:465
-#, c-format
-msgid "Always blacklist (do not ask again)"
-msgstr ""
-
-#: standalone/net_monitor:57 standalone/net_monitor:62
-#, c-format
-msgid "Network Monitoring"
-msgstr "Monitor van Netwerk"
-
-#: standalone/net_monitor:98
-#, c-format
-msgid "Global statistics"
-msgstr "Globale Statistieke"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Instantaneous"
-msgstr "Onmidelike"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Average"
-msgstr "Gemiddeld"
-
-#: standalone/net_monitor:102
-#, c-format
-msgid ""
-"Sending\n"
-"speed:"
-msgstr "Stuurspoed:"
-
-#: standalone/net_monitor:103
-#, c-format
-msgid ""
-"Receiving\n"
-"speed:"
-msgstr "Ontvangspoed:"
-
-#: standalone/net_monitor:107
-#, c-format
-msgid ""
-"Connection\n"
-"time: "
-msgstr "Konneksietyd: "
-
-#: standalone/net_monitor:114
-#, c-format
-msgid "Use same scale for received and transmitted"
-msgstr ""
-
-#: standalone/net_monitor:133
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Net 'n oomblik, konneksie word getoets..."
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Diskonnekteer van die Internet "
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Konnekteer aan die Internet"
-
-#: standalone/net_monitor:226
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Probleme met die opbreek van die Internerkonneksie."
-
-#: standalone/net_monitor:227
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Ontkoppeling van Internet voltooi."
-
-#: standalone/net_monitor:229
-#, c-format
-msgid "Connection complete."
-msgstr "Voltooide konneksie."
-
-#: standalone/net_monitor:230
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandriva Linux Control Center."
-msgstr ""
-"Probleme met die Konneksie\n"
-"Maak tog seker van u konfigurasie in die 'Mandriva Linux Control Center'."
-
-#: standalone/net_monitor:335
-#, c-format
-msgid "Color configuration"
-msgstr "Kleurkonfigurasie"
-
-#: standalone/net_monitor:383 standalone/net_monitor:403
-#, c-format
-msgid "sent: "
-msgstr "stuur: "
-
-#: standalone/net_monitor:390 standalone/net_monitor:407
-#, c-format
-msgid "received: "
-msgstr "ontvang: "
-
-#: standalone/net_monitor:397
-#, c-format
-msgid "average"
-msgstr "gemiddeld"
-
-#: standalone/net_monitor:400
-#, c-format
-msgid "Local measure"
-msgstr "Plaaslike meting"
-
-#: standalone/net_monitor:461
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Pasop, daar is 'n ander internet konneksie, wat moontlik u netwerk gebruik, "
-"bespeur"
-
-#: standalone/net_monitor:472
-#, c-format
-msgid "No internet connection configured"
-msgstr "Geen internetkonneksie gekonfigureer"
-
-#: standalone/printerdrake:76
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "Lees data van geïnstalleerde drukkers..."
-
-#: standalone/printerdrake:128
-#, c-format
-msgid "%s Printer Management Tool"
-msgstr "%s Drukker Bestuur Nutsprogram"
-
-#: standalone/printerdrake:142 standalone/printerdrake:143
-#: standalone/printerdrake:144 standalone/printerdrake:145
-#: standalone/printerdrake:153 standalone/printerdrake:154
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Actions"
-msgstr "/_Aksies"
-
-#: standalone/printerdrake:142 standalone/printerdrake:154
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Voeg Drukker by"
-
-#: standalone/printerdrake:143
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Maak _Verstel"
-
-#: standalone/printerdrake:144
-#, c-format
-msgid "/_Edit"
-msgstr "/_Redigeer"
-
-#: standalone/printerdrake:145
-#, c-format
-msgid "/_Delete"
-msgstr "/_Skrap"
-
-#: standalone/printerdrake:146
-#, c-format
-msgid "/_Expert mode"
-msgstr "/_Kundige modus"
-
-#: standalone/printerdrake:151
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Herlaai"
-
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_Konfigureer CUPS"
-
-#: standalone/printerdrake:171
-#, fuzzy, c-format
-msgid "/Configure _Auto Administration"
-msgstr "Eksterne-administrasie"
-
-#: standalone/printerdrake:194
-#, c-format
-msgid "Search:"
-msgstr "Soek:"
-
-#: standalone/printerdrake:197
-#, c-format
-msgid "Apply filter"
-msgstr "Pas filter toe"
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Def."
-msgstr "Def."
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Printer Name"
-msgstr "Drukkernaam"
-
-#: standalone/printerdrake:224
-#, c-format
-msgid "Connection Type"
-msgstr "Konneksietipe"
-
-#: standalone/printerdrake:231
-#, c-format
-msgid "Server Name"
-msgstr "Bedienernaam"
-
-#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add Printer"
-msgstr "Voeg Drukker By"
-
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Voeg 'n nuwe drukker by"
-
-#. -PO: "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set as default"
-msgstr "Maak verstek"
-
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Maak hierdie die verstekdrukker"
-
-#: standalone/printerdrake:245
-#, c-format
-msgid "Edit selected printer"
-msgstr "Redigeer gekose drukker"
-
-#: standalone/printerdrake:248
-#, c-format
-msgid "Delete selected printer"
-msgstr "Verwyder gekose drukker"
-
-#: standalone/printerdrake:251
-#, c-format
-msgid "Refresh the list"
-msgstr "Herlaai die lys"
-
-#. -PO: "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS"
-msgstr "Konfigureer CUPS"
-
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Konfigureer die CUPS-drukkerstelsel"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Enabled"
-msgstr "Geaktiveer"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Disabled"
-msgstr "Gestremde"
-
-#: standalone/printerdrake:596
-#, c-format
-msgid "Authors: "
-msgstr "Programeeerders: "
-
-#. -PO: here %s is the version number
-#: standalone/printerdrake:606
-#, fuzzy, c-format
-msgid "Printer Management %s"
-msgstr "Bestuur Drukkers \n"
-
-#: standalone/scannerdrake:51
-#, fuzzy, c-format
-msgid ""
-"SANE packages need to be installed to use scanners.\n"
-"\n"
-"Do you want to install the SANE packages?"
-msgstr "Die pakket %s moet geïnstalleer word. Wil u dit installeer?"
-
-#: standalone/scannerdrake:55
-#, fuzzy, c-format
-msgid "Aborting Scannerdrake."
-msgstr "Scannerdrake"
-
-#: standalone/scannerdrake:60
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr "Kon nie die pakkette wat Scannerdrake benodig installeer nie."
-
-#: standalone/scannerdrake:61
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Scannerdrake sal nie nou afgeskop word nie."
-
-#: standalone/scannerdrake:67 standalone/scannerdrake:508
-#, c-format
-msgid "Searching for configured scanners..."
-msgstr "Opsoek na skandeerders wat reeds opgestel is ..."
-
-#: standalone/scannerdrake:71 standalone/scannerdrake:512
-#, c-format
-msgid "Searching for new scanners..."
-msgstr "Opsoek na nuwe skandeerders"
-
-#: standalone/scannerdrake:79 standalone/scannerdrake:534
-#, c-format
-msgid "Re-generating list of configured scanners..."
-msgstr "Vervris die lys van gekonfigureerde skandeerders ..."
-
-#: standalone/scannerdrake:101
-#, c-format
-msgid "The %s is not supported by this version of %s."
-msgstr "Die %s word nie deur hierdie weergawe van %s ondersteun nie."
-
-#: standalone/scannerdrake:104
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s gevind op %s, stel dit outomaties op?"
-
-#: standalone/scannerdrake:116
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
-"%s is nie teenwoordig in die skandeerder-databasis nie, stel dit self op?"
-
-#: standalone/scannerdrake:131
-#, c-format
-msgid "Select a scanner model"
-msgstr "Kies 'n skandeerder model"
-
-#: standalone/scannerdrake:132
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: standalone/scannerdrake:133
-#, c-format
-msgid "Detected model: %s"
-msgstr "Bespeurde model: %s"
-
-#: standalone/scannerdrake:136
-#, c-format
-msgid "Port: %s"
-msgstr "Poort: %s"
-
-#: standalone/scannerdrake:138 standalone/scannerdrake:141
-#, c-format
-msgid " (UNSUPPORTED)"
-msgstr ""
-
-#: standalone/scannerdrake:144
-#, fuzzy, c-format
-msgid "The %s is not supported under Linux."
-msgstr "Die %s word nie deur hierdie weergawe van %s ondersteun nie."
-
-#: standalone/scannerdrake:171 standalone/scannerdrake:185
-#, c-format
-msgid "Do not install firmware file"
-msgstr "Moet nie \"firmware\"-lêer installeer nie"
-
-#: standalone/scannerdrake:175 standalone/scannerdrake:227
-#, c-format
-msgid ""
-"It is possible that your %s needs its firmware to be uploaded everytime when "
-"it is turned on."
-msgstr ""
-"Dit mag moontlik wees dat u %s hulle \"firmware\" moet laai sodra hulle "
-"aangeskakel word."
-
-#: standalone/scannerdrake:176 standalone/scannerdrake:228
-#, c-format
-msgid "If this is the case, you can make this be done automatically."
-msgstr "In die geval, kan u dit outomaties laat geskeid."
-
-#: standalone/scannerdrake:177 standalone/scannerdrake:231
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware file for your scanner so that it "
-"can be installed."
-msgstr ""
-"Om dit te kan doen, moet u die \"firmware\"-lêers voorsien vir u "
-"skandeerders sodat dit geïnstalleer kan word."
-
-#: standalone/scannerdrake:178 standalone/scannerdrake:232
-#, 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 ""
-"U kan die lêer op die CD of disket wat die skandeerder vergesel, die "
-"vervaardiger se tuisblad, of op u Windows-partisie vind."
-
-#: standalone/scannerdrake:180 standalone/scannerdrake:239
-#, c-format
-msgid "Install firmware file from"
-msgstr "Installeer \"firmware\"-lêer vanaf"
-
-#: standalone/scannerdrake:200
-#, c-format
-msgid "Select firmware file"
-msgstr "Kies \"firmware\"-lêer"
-
-#: standalone/scannerdrake:203 standalone/scannerdrake:262
-#, c-format
-msgid "The firmware file %s does not exist or is unreadable!"
-msgstr "Die \"firmaware\"-lêer %s bestaan nie of dit is onleesbaar!"
-
-#: standalone/scannerdrake:226
-#, c-format
-msgid ""
-"It is possible that your scanners need their firmware to be uploaded "
-"everytime when they are turned on."
-msgstr ""
-"Dit mag moontlik wees dat u skandeerders hulle \"firmware\" moet laai sodra "
-"hulle aangeskakel word."
-
-#: standalone/scannerdrake:230
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware files for your scanners so that it "
-"can be installed."
-msgstr ""
-"Om dit te kan doen, moet u die \"firmware\"-lêers voorsien vir u "
-"skandeerders sodat dit geïnstalleer kan word."
-
-#: standalone/scannerdrake:233
-#, 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 ""
-"Indie u reeds die \"firmware\" vir u skandeerder geïnstalleer het, kan u dit "
-"hier opdateer deur die nuwe \"firmware\"-lêer te voorsien."
-
-#: standalone/scannerdrake:235
-#, c-format
-msgid "Install firmware for the"
-msgstr "Installeer \"firmware\" vir die"
-
-#: standalone/scannerdrake:258
-#, c-format
-msgid "Select firmware file for the %s"
-msgstr "Kies \"firmware\"-lêer vir die %s"
-
-#: standalone/scannerdrake:276
-#, fuzzy, c-format
-msgid "Could not install the firmware file for the %s!"
-msgstr "Moet nie \"firmware\"-lêer installeer nie"
-
-#: standalone/scannerdrake:289
-#, c-format
-msgid "The firmware file for your %s was successfully installed."
-msgstr "Die \"firmware\"-lêer vir u %s het goed geïnstalleer."
-
-#: standalone/scannerdrake:299
-#, c-format
-msgid "The %s is unsupported"
-msgstr "Die %s word nie ondersteun nie"
-
-#: standalone/scannerdrake:304
-#, c-format
-msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the %s Control Center in Hardware section."
-msgstr ""
-"Die %s moet opgestel word deur 'printerdrake'.\n"
-"U kan printerdrake onder die %s Control Center se Hardeware gedeelte vind."
-
-#: standalone/scannerdrake:322
-#, fuzzy, c-format
-msgid "Setting up kernel modules..."
-msgstr "Laai USB drukker kernel module ...\n"
-
-#: standalone/scannerdrake:332 standalone/scannerdrake:339
-#: standalone/scannerdrake:369
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Outospeur beskikbare poorte"
-
-#: standalone/scannerdrake:334 standalone/scannerdrake:380
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Kies assblief die toestel waaraan u %s gekoppel is"
-
-#: standalone/scannerdrake:335
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Aandag: Kan nie parallelle poorte outospeur nie)"
-
-#: standalone/scannerdrake:337 standalone/scannerdrake:382
-#, c-format
-msgid "choose device"
-msgstr "kies toestel"
-
-#: standalone/scannerdrake:371
-#, c-format
-msgid "Searching for scanners..."
-msgstr "Opsoek na skandeerders ..."
-
-#: standalone/scannerdrake:407 standalone/scannerdrake:414
-#, c-format
-msgid "Attention!"
-msgstr "Aandag !"
-
-#: standalone/scannerdrake:408
-#, 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 ""
-
-#: standalone/scannerdrake:409 standalone/scannerdrake:418
-#, c-format
-msgid ""
-"More info in the driver's manual page. Run the command \"man sane-%s\" to "
-"read it."
-msgstr ""
-
-#: standalone/scannerdrake:411 standalone/scannerdrake:420
-#, fuzzy, c-format
-msgid ""
-"After that you may scan documents using \"XSane\" or \"Kooka\" from "
-"Multimedia/Graphics in the applications menu."
-msgstr ""
-"U %s is klaar gekonfigureer.\n"
-"U kan nou dokumente skandeer deur \"XSane\" te gebruik."
-
-#: standalone/scannerdrake:415
-#, c-format
-msgid ""
-"Your %s has been configured, but it is possible that additional manual "
-"adjustments are needed to get it to work. "
-msgstr ""
-
-#: standalone/scannerdrake:416
-#, 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 ""
-
-#: standalone/scannerdrake:417
-#, c-format
-msgid "edit the configuration file /etc/sane.d/%s.conf. "
-msgstr ""
-
-#: standalone/scannerdrake:423
-#, fuzzy, 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 ""
-"U %s is klaar gekonfigureer.\n"
-"U kan nou dokumente skandeer deur \"XSane\" te gebruik."
-
-#: standalone/scannerdrake:448
-#, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr ""
-"Die volgende skandeerders\n"
-"\n"
-"%s\n"
-"is tot u beskikking.\n"
-
-#: standalone/scannerdrake:449
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr ""
-"Die volgende skandeerder\n"
-"\n"
-"%s\n"
-"is beskikbaar op u rekenaar.\n"
-
-#: standalone/scannerdrake:452 standalone/scannerdrake:455
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "Daar is geen bekikbare skandeerders te vinde nie.\n"
-
-#: standalone/scannerdrake:469
-#, c-format
-msgid "Search for new scanners"
-msgstr "Soek na nuwe skandeerders"
-
-#: standalone/scannerdrake:475
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Voeg self 'n skandeerder by"
-
-#: standalone/scannerdrake:482
-#, c-format
-msgid "Install/Update firmware files"
-msgstr "Installeer / Dateer \"firmware\"-lêers op"
-
-#: standalone/scannerdrake:488
-#, c-format
-msgid "Scanner sharing"
-msgstr "Deel skandeerders"
-
-#: standalone/scannerdrake:547 standalone/scannerdrake:712
-#, c-format
-msgid "All remote machines"
-msgstr "Alle eksterne rekenaars"
-
-#: standalone/scannerdrake:559 standalone/scannerdrake:862
-#, c-format
-msgid "This machine"
-msgstr "Hierdie rekenaar"
-
-#: standalone/scannerdrake:599
-#, 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 ""
-"Hier kan u kies of skandeerders wat aan hierdie rekenaar gekoppel is "
-"toeganklik sal wees vir eksterne masjiene, asook watter masjiene."
-
-#: standalone/scannerdrake:600
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"U kan ook hier kies of skandeerders van eksterne rekenaars beskikbaar moet "
-"wees op hierdie masjien."
-
-#: standalone/scannerdrake:603
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr ""
-"Die skandeerders op hierdie rekenaar is tot ander rekenaars se beskikking"
-
-#: standalone/scannerdrake:605
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Skandeerder deel na rekenaars: "
-
-#: standalone/scannerdrake:619
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Gebruik skandeerders op eksterne rekenaars"
-
-#: standalone/scannerdrake:622
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Gebruik skandeerders op rekenaars: "
-
-#: standalone/scannerdrake:649 standalone/scannerdrake:721
-#: standalone/scannerdrake:871
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Deel van plaaslike skandeerders"
-
-#: standalone/scannerdrake:650
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr ""
-"Hierdie masjiene behoort die plaaslik-gekoppelde skandeerder(s) beskikbaar "
-"te stel:"
-
-#: standalone/scannerdrake:661 standalone/scannerdrake:811
-#, c-format
-msgid "Add host"
-msgstr "Voeg rekenaar by"
-
-#: standalone/scannerdrake:667 standalone/scannerdrake:817
-#, c-format
-msgid "Edit selected host"
-msgstr "Redigeer gekose rekenaar"
-
-#: standalone/scannerdrake:676 standalone/scannerdrake:826
-#, c-format
-msgid "Remove selected host"
-msgstr "Verwyder gekose rekenaar"
-
-#: standalone/scannerdrake:700 standalone/scannerdrake:708
-#: standalone/scannerdrake:713 standalone/scannerdrake:759
-#: standalone/scannerdrake:850 standalone/scannerdrake:858
-#: standalone/scannerdrake:863 standalone/scannerdrake:909
-#, c-format
-msgid "Name/IP address of host:"
-msgstr "Naam/IP-adres van rekenaar:"
-
-#: standalone/scannerdrake:722 standalone/scannerdrake:872
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr ""
-"Kies rekenaar waarop plaaslike skandeerders beskikbaar gestel moet word:"
-
-#
-#: standalone/scannerdrake:733 standalone/scannerdrake:883
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "U moet 'n rekenaarnaam of 'n IP-adres voorsien\n"
-
-#: standalone/scannerdrake:744 standalone/scannerdrake:894
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "Die rekenaar is alreeds gelys, en kan nie weer bygevoeg word nie.\n"
-
-#: standalone/scannerdrake:799
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Gebruik van eksterne skandeerders"
-
-#: standalone/scannerdrake:800
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "Gebruik die skandeerders vanaf hierdie rekenaars:"
-
-#: standalone/scannerdrake:957
-#, fuzzy, 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 "Die pakket %s moet geïnstalleer word. Wil u dit installeer?"
-
-#: standalone/scannerdrake:961 standalone/scannerdrake:965
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "U skandeerder(s) sal NIE op die netwerk beskikbaar wees NIE. "
-
-#: standalone/service_harddrake:113
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "Sommige toestelle in die \"%s\"-hardewareklas is verwyder:\n"
-
-#: standalone/service_harddrake:114
-#, c-format
-msgid "- %s was removed\n"
-msgstr ""
-
-#: standalone/service_harddrake:117
-#, c-format
-msgid "Some devices were added: %s\n"
-msgstr "Party toestelle is bygevoeg: %s\n"
-
-#: standalone/service_harddrake:118
-#, c-format
-msgid "- %s was added\n"
-msgstr ""
-
-#: standalone/service_harddrake:235
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "Aftas vir hardeware aan die gang"
+msgid "All servers"
+msgstr "Voeg bediener by"
-#: standalone/service_harddrake_confirm:7
+#: timezone.pm:183
#, c-format
-msgid "Hardware changes in \"%s\" class (%s seconds to answer)"
+msgid "Global"
msgstr ""
-#: standalone/service_harddrake_confirm:8
-#, fuzzy, c-format
-msgid "Do you want to run the appropriate config tool?"
-msgstr "Wil u die konfigurasie toets?"
-
-#: steps.pm:14
-#, c-format
-msgid "Language"
-msgstr "Taal"
-
-#: steps.pm:15
-#, c-format
-msgid "License"
-msgstr "Lisensie"
-
-#: steps.pm:16
-#, c-format
-msgid "Configure mouse"
-msgstr "Stel muistoestel op"
-
-#: steps.pm:17
-#, c-format
-msgid "Hard drive detection"
-msgstr "Hardeskyf-speuring."
-
-#: steps.pm:18
+#: timezone.pm:186
#, c-format
-msgid "Select installation class"
-msgstr "Kies installasieklas"
+msgid "Africa"
+msgstr "Afrika"
-#: steps.pm:19
+#: timezone.pm:187
#, c-format
-msgid "Choose your keyboard"
-msgstr "Kies u sleutelbord"
+msgid "Asia"
+msgstr "Asie"
-#: steps.pm:22
+#: timezone.pm:188
#, c-format
-msgid "Format partitions"
-msgstr "Formateer partisies"
+msgid "Europe"
+msgstr "Europa"
-#: steps.pm:23
+#: timezone.pm:189
#, c-format
-msgid "Choose packages to install"
-msgstr "Kies pakkette om te installeer"
+msgid "North America"
+msgstr "Noord-Amerika"
-#: steps.pm:24
-#, c-format
-msgid "Install system"
-msgstr "Installeer stelsel"
-
-#: steps.pm:25
+#: timezone.pm:190
#, fuzzy, c-format
-msgid "Administrator password"
-msgstr "Kies 'root' se wagwoord"
-
-#: steps.pm:26
-#, c-format
-msgid "Add a user"
-msgstr "Voeg 'n gebruiker by"
-
-#: steps.pm:27
-#, c-format
-msgid "Configure networking"
-msgstr "Stel netwerk op"
-
-#: steps.pm:28
-#, c-format
-msgid "Install bootloader"
-msgstr "Installeer herlaaistelsel"
+msgid "Oceania"
+msgstr "Masedonië"
-#: steps.pm:29
+#: timezone.pm:191
#, c-format
-msgid "Configure X"
-msgstr "Stel X op"
+msgid "South America"
+msgstr "Suid-Amerika"
-#: steps.pm:31
+#: timezone.pm:200
#, c-format
-msgid "Configure services"
-msgstr "Konfigureer dienste"
+msgid "Hong Kong"
+msgstr "Hong Kong"
-#: steps.pm:32
+#: timezone.pm:237
#, c-format
-msgid "Install updates"
-msgstr "Installeer updaterings"
+msgid "Russian Federation"
+msgstr "Russian Federation"
-#: steps.pm:33
+#: timezone.pm:245
#, c-format
-msgid "Exit install"
-msgstr "Verlaat installasie"
+msgid "Yugoslavia"
+msgstr "Yugoslavia"
-#: ugtk2.pm:899
+#: ugtk2.pm:788
#, c-format
msgid "Is this correct?"
msgstr "Is dit korrek?"
-#: ugtk2.pm:959
+#: ugtk2.pm:848
#, fuzzy, c-format
msgid "No file chosen"
msgstr "bestands-kieser"
-#: ugtk2.pm:961
+#: ugtk2.pm:850
#, c-format
msgid "You have chosen a file, not a directory"
msgstr ""
-#: ugtk2.pm:963
+#: ugtk2.pm:852
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr "Tuisgids nie beskikbaar nie."
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, fuzzy, c-format
msgid "No such directory"
msgstr "Nie 'n gids nie"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such file"
msgstr "Nee soos lêer"
-#: ugtk2.pm:1046
+#: ugtk2.pm:933
#, c-format
msgid "Expand Tree"
msgstr "Maak boom oop"
-#: ugtk2.pm:1047
+#: ugtk2.pm:934
#, c-format
msgid "Collapse Tree"
msgstr "Maak boom toe"
-#: ugtk2.pm:1048
+#: ugtk2.pm:935
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "Skakel tussen plat- en groepsortering"
@@ -26548,4824 +6611,23 @@ msgstr ""
msgid "Installation failed"
msgstr "Installasie het gefaal!"
-#~ msgid ""
-#~ "Copyright (C) 2001-2002 by Mandriva \n"
-#~ "\n"
-#~ "\n"
-#~ " DUPONT Sebastien (original version)\n"
-#~ "\n"
-#~ " CHAUMETTE Damien <dchaumette@mandriva.com>\n"
-#~ "\n"
-#~ " VIGNAUD Thierry <tvignaud@mandriva.com>"
-#~ msgstr ""
-#~ "Copyright (C) 2001-2002 by Mandriva \n"
-#~ "\n"
-#~ "\n"
-#~ " DUPONT Sebastien (original version)\n"
-#~ "\n"
-#~ " CHAUMETTE Damien <dchaumette@mandriva.com>\n"
-#~ "\n"
-#~ " VIGNAUD Thierry <tvignaud@mandriva.com>"
-
-#~ msgid "click here if you are sure."
-#~ msgstr "indien u seker is, klik hier."
-
-#~ msgid "here if no."
-#~ msgstr "hier indien nee."
-
-#
-#~ msgid "Remove List"
-#~ msgstr "Verwyder Lys"
-
-#~ msgid "Account:"
-#~ msgstr "Rekening:"
-
-#~ msgid "Hostname:"
-#~ msgstr "Masjien naam:"
-
-#, fuzzy
-#~ msgid "Cancel setup"
-#~ msgstr "Kanselleer"
-
-#~ msgid ""
-#~ " - Create Etherboot Enabled Boot Images:\n"
-#~ " \tTo boot a kernel via etherboot, a special kernel/initrd image "
-#~ "must be created.\n"
-#~ " \tmkinitrd-net does much of this work and drakTermServ is just a "
-#~ "graphical \n"
-#~ " \tinterface to help manage/customize these images. To create the "
-#~ "file \n"
-#~ " \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as "
-#~ "an include in \n"
-#~ " \tdhcpd.conf, you should create the etherboot images for at least "
-#~ "one full kernel."
-#~ msgstr ""
-#~ " - Create Etherboot Enabled Boot Images:\n"
-#~ " \tTo boot a kernel via etherboot, a special kernel/initrd image "
-#~ "must be created.\n"
-#~ " \tmkinitrd-net does much of this work and drakTermServ is just a "
-#~ "graphical \n"
-#~ " \tinterface to help manage/customize these images. To create the "
-#~ "file \n"
-#~ " \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as "
-#~ "an include in \n"
-#~ " \tdhcpd.conf, you should create the etherboot images for at least "
-#~ "one full kernel."
-
-#~ msgid ""
-#~ " - Maintain /etc/dhcpd.conf:\n"
-#~ " \tTo net boot clients, each client needs a dhcpd.conf entry, "
-#~ "assigning an IP \n"
-#~ " \taddress and net boot images to the machine. drakTermServ helps "
-#~ "create/remove \n"
-#~ " \tthese entries.\n"
-#~ "\t\t\t\n"
-#~ " \t(PCI cards may omit the image - etherboot will request the "
-#~ "correct image. \n"
-#~ "\t\t\tYou should also consider that when etherboot looks for the images, "
-#~ "it expects \n"
-#~ "\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk."
-#~ "nbi).\n"
-#~ "\t\t\t \n"
-#~ " \tA typical dhcpd.conf stanza to support a diskless client looks "
-#~ "like:"
-#~ msgstr ""
-#~ " - Maintain /etc/dhcpd.conf:\n"
-#~ " \tTo net boot clients, each client needs a dhcpd.conf entry, "
-#~ "assigning an IP \n"
-#~ " \taddress and net boot images to the machine. drakTermServ helps "
-#~ "create/remove \n"
-#~ " \tthese entries.\n"
-#~ "\t\t\t\n"
-#~ " \t(PCI cards may omit the image - etherboot will request the "
-#~ "correct image. \n"
-#~ "\t\t\tYou should also consider that when etherboot looks for the images, "
-#~ "it expects \n"
-#~ "\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk."
-#~ "nbi).\n"
-#~ "\t\t\t \n"
-#~ " \tA typical dhcpd.conf stanza to support a diskless client looks "
-#~ "like:"
-
-#~ msgid ""
-#~ " While you can use a pool of IP addresses, rather than setup a "
-#~ "specific entry for\n"
-#~ " a client machine, using a fixed address scheme facilitates using "
-#~ "the functionality\n"
-#~ " of client-specific configuration files that ClusterNFS provides.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#type' entry is only used by drakTermServ. Clients "
-#~ "can either be 'thin'\n"
-#~ " or 'fat'. Thin clients run most software on the server via "
-#~ "XDMCP, while fat clients run \n"
-#~ " most software on the client machine. A special inittab, %s is\n"
-#~ " written for thin clients. System config files xdm-config, kdmrc, "
-#~ "and gdm.conf are \n"
-#~ " modified if thin clients are used, to enable XDMCP. Since there "
-#~ "are security issues in \n"
-#~ " using XDMCP, hosts.deny and hosts.allow are modified to limit "
-#~ "access to the local\n"
-#~ " subnet.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#hdw_config' entry is also only used by drakTermServ. "
-#~ "Clients can either \n"
-#~ " be 'true' or 'false'. 'true' enables root login at the client "
-#~ "machine and allows local \n"
-#~ " hardware configuration of sound, mouse, and X, using the 'drak' "
-#~ "tools. This is enabled \n"
-#~ " by creating separate config files associated with the client's IP "
-#~ "address and creating \n"
-#~ " read/write mount points to allow the client to alter the file. "
-#~ "Once you are satisfied \n"
-#~ " with the configuration, you can remove root login privileges from "
-#~ "the client.\n"
-#~ "\t\t\t\n"
-#~ " Note: You must stop/start the server after adding or changing "
-#~ "clients."
-#~ msgstr ""
-#~ " While you can use a pool of IP addresses, rather than setup a "
-#~ "specific entry for\n"
-#~ " a client machine, using a fixed address scheme facilitates using "
-#~ "the functionality\n"
-#~ " of client-specific configuration files that ClusterNFS provides.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#type' entry is only used by drakTermServ. Clients "
-#~ "can either be 'thin'\n"
-#~ " or 'fat'. Thin clients run most software on the server via "
-#~ "XDMCP, while fat clients run \n"
-#~ " most software on the client machine. A special inittab, %s is\n"
-#~ " written for thin clients. System config files xdm-config, kdmrc, "
-#~ "and gdm.conf are \n"
-#~ " modified if thin clients are used, to enable XDMCP. Since there "
-#~ "are security issues in \n"
-#~ " using XDMCP, hosts.deny and hosts.allow are modified to limit "
-#~ "access to the local\n"
-#~ " subnet.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#hdw_config' entry is also only used by drakTermServ. "
-#~ "Clients can either \n"
-#~ " be 'true' or 'false'. 'true' enables root login at the client "
-#~ "machine and allows local \n"
-#~ " hardware configuration of sound, mouse, and X, using the 'drak' "
-#~ "tools. This is enabled \n"
-#~ " by creating separate config files associated with the client's IP "
-#~ "address and creating \n"
-#~ " read/write mount points to allow the client to alter the file. "
-#~ "Once you are satisfied \n"
-#~ " with the configuration, you can remove root login privileges from "
-#~ "the client.\n"
-#~ "\t\t\t\n"
-#~ " Note: You must stop/start the server after adding or changing "
-#~ "clients."
-
-#~ msgid ""
-#~ " - Maintain /etc/exports:\n"
-#~ " \tClusternfs allows export of the root filesystem to diskless "
-#~ "clients. drakTermServ\n"
-#~ " \tsets up the correct entry to allow anonymous access to the root "
-#~ "filesystem from\n"
-#~ " \tdiskless clients.\n"
-#~ "\n"
-#~ " \tA typical exports entry for clusternfs is:\n"
-#~ " \t\t\n"
-#~ " \t/\t\t\t\t\t(ro,all_squash)\n"
-#~ " \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-#~ "\t\t\t\n"
-#~ " \tWith SUBNET/MASK being defined for your network."
-#~ msgstr ""
-#~ " - Maintain /etc/exports:\n"
-#~ " \tClusternfs allows export of the root filesystem to diskless "
-#~ "clients. drakTermServ\n"
-#~ " \tsets up the correct entry to allow anonymous access to the root "
-#~ "filesystem from\n"
-#~ " \tdiskless clients.\n"
-#~ "\n"
-#~ " \tA typical exports entry for clusternfs is:\n"
-#~ " \t\t\n"
-#~ " \t/\t\t\t\t\t(ro,all_squash)\n"
-#~ " \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-#~ "\t\t\t\n"
-#~ " \tWith SUBNET/MASK being defined for your network."
-
-#~ msgid ""
-#~ " - Maintain %s:\n"
-#~ " \tFor users to be able to log into the system from a diskless "
-#~ "client, their entry in\n"
-#~ " \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
-#~ " \thelps in this respect by adding or removing system users from "
-#~ "this file."
-#~ msgstr ""
-#~ " - Maintain %s:\n"
-#~ " \tFor users to be able to log into the system from a diskless "
-#~ "client, their entry in\n"
-#~ " \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
-#~ " \thelps in this respect by adding or removing system users from "
-#~ "this file."
-
-#~ msgid ""
-#~ " - Per client %s:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tdrakTermServ will help create these files."
-#~ msgstr ""
-#~ " - Per client %s:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tdrakTermServ will help create these files."
-
-#~ msgid ""
-#~ " - Per client system configuration files:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tclients can customize files such as /etc/modules.conf, /etc/"
-#~ "sysconfig/mouse, \n"
-#~ " \t/etc/sysconfig/keyboard on a per-client basis.\n"
-#~ "\n"
-#~ " Note: Enabling local client hardware configuration does enable "
-#~ "root login to the terminal \n"
-#~ " server on each client machine that has this feature enabled. "
-#~ "Local configuration can be\n"
-#~ " turned back off, retaining the configuration files, once the "
-#~ "client machine is configured."
-#~ msgstr ""
-#~ " - Per client system configuration files:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tclients can customize files such as /etc/modules.conf, /etc/"
-#~ "sysconfig/mouse, \n"
-#~ " \t/etc/sysconfig/keyboard on a per-client basis.\n"
-#~ "\n"
-#~ " Note: Enabling local client hardware configuration does enable "
-#~ "root login to the terminal \n"
-#~ " server on each client machine that has this feature enabled. "
-#~ "Local configuration can be\n"
-#~ " turned back off, retaining the configuration files, once the "
-#~ "client machine is configured."
-
-#~ msgid ""
-#~ " - /etc/xinetd.d/tftp:\n"
-#~ " \tdrakTermServ will configure this file to work in conjunction "
-#~ "with the images created\n"
-#~ " \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve "
-#~ "up the boot image to \n"
-#~ " \teach diskless client.\n"
-#~ "\n"
-#~ " \tA typical TFTP configuration file looks like:\n"
-#~ " \t\t\n"
-#~ " \tservice tftp\n"
-#~ "\t\t\t{\n"
-#~ " disable = no\n"
-#~ " socket_type = dgram\n"
-#~ " protocol = udp\n"
-#~ " wait = yes\n"
-#~ " user = root\n"
-#~ " server = /usr/sbin/in.tftpd\n"
-#~ " server_args = -s /var/lib/tftpboot\n"
-#~ " \t}\n"
-#~ " \t\t\n"
-#~ " \tThe changes here from the default installation are changing the "
-#~ "disable flag to\n"
-#~ " \t'no' and changing the directory path to /var/lib/tftpboot, "
-#~ "where mkinitrd-net\n"
-#~ " \tputs its images."
-#~ msgstr ""
-#~ " - /etc/xinetd.d/tftp:\n"
-#~ " \tdrakTermServ will configure this file to work in conjunction "
-#~ "with the images created\n"
-#~ " \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve "
-#~ "up the boot image to \n"
-#~ " \teach diskless client.\n"
-#~ "\n"
-#~ " \tA typical TFTP configuration file looks like:\n"
-#~ " \t\t\n"
-#~ " \tservice tftp\n"
-#~ "\t\t\t{\n"
-#~ " disable = no\n"
-#~ " socket_type = dgram\n"
-#~ " protocol = udp\n"
-#~ " wait = yes\n"
-#~ " user = root\n"
-#~ " server = /usr/sbin/in.tftpd\n"
-#~ " server_args = -s /var/lib/tftpboot\n"
-#~ " \t}\n"
-#~ " \t\t\n"
-#~ " \tThe changes here from the default installation are changing the "
-#~ "disable flag to\n"
-#~ " \t'no' and changing the directory path to /var/lib/tftpboot, "
-#~ "where mkinitrd-net\n"
-#~ " \tputs its images."
-
-#~ msgid "Configuration changed - restart clusternfs/dhcpd?"
-#~ msgstr "Konfigurasie het verander - herbegin 'clusterfs/dhcpd'?"
-
-#, fuzzy
-#~ msgid ""
-#~ "The following media have been found and will be used during install: %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do you have a supplementary installation media to configure?"
-#~ msgstr "Het u enige %s koppelvlakke?"
-
-#~ msgid ""
-#~ "Allow an ordinary user to mount the file system. The\n"
-#~ "name of the mounting user is written to mtab so that he can unmount the "
-#~ "file\n"
-#~ "system again. This option implies the options noexec, nosuid, and nodev\n"
-#~ "(unless overridden by subsequent options, as in the option line\n"
-#~ "user,exec,dev,suid )."
-#~ msgstr ""
-#~ "Laat 'n gewone gebruiker toe om 'n lêerstelsel te kan heg.\n"
-#~ "Die naam van daardie gebruiker word na 'mtab' geskryf sodat hy/sy dit "
-#~ "NIE\n"
-#~ "kan ontheg NIE.\n"
-#~ "Hierdie opsie sluit in opsies 'noexec, nosuid, en nodev'\n"
-#~ "(behalwe dit oorskryf word deur ekstra opsies in die\n"
-#~ "opsielyn\n"
-#~ "'user,exec,dev,suid')."
-
-#~ msgid "Unknown Model"
-#~ msgstr "Onbekende Model"
-
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3000/3200/3300/4345 with scanner, DeskJet 450, "
-#~ "Sony IJP-V100), an HP PhotoSmart or an HP LaserJet 2200?"
-#~ msgstr ""
-#~ "Is u drukker 'n multi-funksionele toestel van HP or Sony (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3200/3300/3300/4345 with scanner, DeskJet 450, "
-#~ "Sony IJP-V100), 'n HP PhotoSmart of 'n HP LaserJet 2200?"
-
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Installeer 'mtools'-pakette ..."
-
-#, fuzzy
-#~ msgid "Photo memory card access on the %s will not be possible."
-#~ msgstr "Foto-geheuekaart toegang op u HP multi-funksionele toestel"
-
-#~ msgid "Scanning on your HP multi-function device"
-#~ msgstr "Deursoek u HP multi-funksionele toestel"
-
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr "Foto-geheuekaart toegang op u HP multi-funksionele toestel"
-
-#~ msgid "Printing/Scanning/Photo Cards on \"%s\""
-#~ msgstr "Drukwerk/Skandering/Foto-kaarte op \"%s\""
-
-#~ msgid "Printing/Scanning on \"%s\""
-#~ msgstr "Drukwerk/Skandeering op \"%s\""
-
-#~ msgid "Printing/Photo Card Access on \"%s\""
-#~ msgstr "Drukwerk/Fotokaart Toegang op \"%s\""
-
-#, fuzzy
-#~ msgid ""
-#~ "Your multi-function device was configured automatically to be able to "
-#~ "scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to "
-#~ "specify the scanner when you have more than one) from the command line or "
-#~ "with the graphical interfaces \"xscanimage\" or \"xsane\". If you are "
-#~ "using the GIMP, you can also scan by choosing the appropriate point in "
-#~ "the \"File\"/\"Acquire\" menu. Call also \"man scanimage\" on the command "
-#~ "line to get more information.\n"
-#~ "\n"
-#~ "You do not need to run \"scannerdrake\" for setting up scanning on this "
-#~ "device, you only need to use \"scannerdrake\" if you want to share the "
-#~ "scanner on the network."
-#~ msgstr ""
-#~ "U multi-funksionele toestel is outomaties opgestel dat dit kan skandeer. "
-#~ "Gebruik \"scanimage\" indien u wil skandeer (\"scanimage -d hp:%s\" om "
-#~ "die skandeerder te spesifiseer, sou daar meer as een wees). Grafiese "
-#~ "programme \"xscanimage\" en \"xsane\" is ook beskikbaar. Met GIMP kan u "
-#~ "onder \"File\"/\"Acquire\"-kieslys soek. Vir meer inligting tik \"man "
-#~ "scanimage\" op die instruksielyn.\n"
-#~ "\n"
-#~ "Moet NIE \"scannerdrake\" vir hierdie toestel gebruik NIE! "
-
-#~ msgid ""
-#~ "Your printer was configured automatically to give you access to the photo "
-#~ "card drives from your PC. Now you can access your photo cards using the "
-#~ "graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -"
-#~ "> \"MTools File Manager\") or the command line utilities \"mtools"
-#~ "\" (enter \"man mtools\" on the command line for more info). You find the "
-#~ "card's file system under the drive letter \"p:\", or subsequent drive "
-#~ "letters when you have more than one HP printer with photo card drives. In "
-#~ "\"MtoolsFM\" you can switch between drive letters with the field at the "
-#~ "upper-right corners of the file lists."
-#~ msgstr ""
-#~ "U drukker is so opgestel dat dit toegang aan die fotokaart-toestelle op u "
-#~ "rekenaar verleen. U kan u fotokaarte gebruik deur die grafiese \"MtoolsFM"
-#~ "\" program. (Menu: \"Applications\" -> \"File tools\" -> \"MTools File "
-#~ "Manager\"). U kan ook vanaf die instruksielyn \"mtools\" intik. (sien "
-#~ "\"man mtools\"). U sal die kaart se lêerstelsel onder die letter \"p:\" "
-#~ "vind. Indien u meer as een HP-drukker, met fotokaarte het sal hulle "
-#~ "daarop volg. In \"MtoolsFM\" kan u tussen letters skakel in die regter-"
-#~ "boonste hoek."
-
-#~ msgid "Custom setup/crontab entry:"
-#~ msgstr "Aangepaste 'setup/crontab' inskrywing:"
-
-#~ msgid "Note that currently all 'net' media also use the hard drive."
-#~ msgstr ""
-#~ "Neen kennis dat alle 'net' media tans ook van die hardeskyf gebruik maak."
-
-#~ msgid ""
-#~ "Before installing any fonts, be sure that you have the right to use and "
-#~ "install them on your system.\n"
-#~ "\n"
-#~ "-You can install the fonts the normal way. In rare cases, bogus fonts may "
-#~ "hang up your X Server."
-#~ msgstr ""
-#~ "Maak tog seker dat u die reg tot gebruik van lettertipes het, voordat u "
-#~ "dit installeer.\n"
-#~ "\n"
-#~ "- U kan hierdie lettertipes op die normale manier installeer. In "
-#~ "uitsonderlike gevalle mag dit X laat vries."
-
-#~ msgid ""
-#~ "%s cannot be displayed \n"
-#~ ". No Help entry of this type\n"
-#~ msgstr ""
-#~ "Kan nie %s vertoon nie \n"
-#~ " Geen Hulp inskrywing van hierdie tipe nie\n"
-
-#~ msgid ""
-#~ "\n"
-#~ "Please check all options that you need.\n"
-#~ msgstr ""
-#~ "\n"
-#~ " Merk asseblief al die opsies wat u benodig.\n"
-
-#~ msgid ""
-#~ "These options can backup and restore all files in your /etc directory.\n"
-#~ msgstr ""
-#~ "Hierdie opsies kan alle lêers in u '/etc' lêergids rugsteun en herstel.\n"
-
-#~ msgid ""
-#~ "With this option you will be able to restore any version\n"
-#~ " of your /etc directory."
-#~ msgstr ""
-#~ "Hierdie opsie stel u instaat om enige weergawe van u \n"
-#~ "'/etc' lêergids te herstel."
-
-#~ msgid "http://www.mandrivalinux.com/en/errata.php3"
-#~ msgstr "http://www.mandrivalinux.com/en/errata.php3"
-
-#, fuzzy
-#~ msgid "Default Idmap "
-#~ msgstr "Verstek werkskerm"
-
-#~ msgid "Please wait, preparing installation..."
-#~ msgstr "Wag asb. installasie word voorberei"
-
-#~ msgid "Installing package %s"
-#~ msgstr "Installeer pakket %s"
-
-#~ msgid "<b>What is Mandriva Linux?</b>"
-#~ msgstr "<b>Wat is Mandriva Linux?</b>"
-
-#~ msgid "Welcome to <b>Mandriva Linux</b>!"
-#~ msgstr "Welkom by <b>Mandriva Linux</b>!"
-
-#, fuzzy
-#~ msgid ""
-#~ "Mandriva Linux is the most <b>user-friendly</b> Linux distribution today. "
-#~ "It is also one of the <b>most widely used</b> Linux distributions "
-#~ "worldwide!"
-#~ msgstr ""
-#~ "Mandriva Linux is 'n Oopbron bedryfstelsel wat duisende van die keurigste "
-#~ "programme beskikbaar in die Oopbron wêreld bevat. Mandriva Linux is een "
-#~ "van die gewildste in die wereld!"
-
-#, fuzzy
-#~ msgid "<b>Open Source</b>"
-#~ msgstr "<b>Die KDE Keuse</b>"
-
-#, fuzzy
-#~ msgid "Welcome to the <b>world of open source</b>!"
-#~ msgstr "Welkom by die wêreld van Oopbron sagteware!"
-
-#, fuzzy
-#~ msgid ""
-#~ "Mandriva Linux is committed to the open source model. This means that "
-#~ "this new release is the result of <b>collaboration</b> between "
-#~ "<b>Mandriva's team of developers</b> and the <b>worldwide community</b> "
-#~ "of Mandriva Linux contributors."
-#~ msgstr ""
-#~ "Mandriva Linux is toegewyd aan die Oopbron manier van dinge doen. Hierdie "
-#~ "vrystelling is die reslutaat van samewerking tussen Mandriva se span "
-#~ "ontwikkelaars en 'n wereldwye gemeenskap wan mense wat bydraes lewer."
-
-#, fuzzy
-#~ msgid ""
-#~ "We would like to <b>thank</b> everyone who participated in the "
-#~ "development of this latest release."
-#~ msgstr ""
-#~ "Ons wil graag almal bedank (in besonder die Suid-Afrikaners) wat so hard "
-#~ "gewerk het om hierdie vrystelling moontlik te maak."
-
-#, fuzzy
-#~ msgid "<b>The GPL</b>"
-#~ msgstr "<b>Neem Kennis</b>"
-
-#, fuzzy
-#~ msgid "<b>Join the Community</b>"
-#~ msgstr "<b>Sluit aan by die Mandriva Linux gemeenskap!</b>"
-
-#, fuzzy
-#~ msgid "<b>Download Version</b>"
-#~ msgstr "Hierdie is die Mandriva Linux <b>Download weergawe</b>."
-
-#, fuzzy
-#~ msgid ""
-#~ "Discovery is the <b>easiest</b> and most <b>user-friendly</b> Linux "
-#~ "distribution. It includes a hand-picked selection of <b>premium software</"
-#~ "b> for office, multimedia and Internet activities. Its menu is task-"
-#~ "oriented, with a single application per task."
-#~ msgstr ""
-#~ "Discovery is die maklikste en mees gebruikersvriendelike Linux. Dit sluit "
-#~ "'n hand-geselekteerde keuse van top sagteware vir gebruik op kantoor, vir "
-#~ "multimedia en die Internet."
-
-#, fuzzy
-#~ msgid ""
-#~ "PowerPack is Mandriva's <b>premier Linux desktop</b> product. PowerPack "
-#~ "includes <b>thousands of applications</b> - everything from the most "
-#~ "popular to the most advanced."
-#~ msgstr ""
-#~ "PowerPack is Mandriva se uitblinker werkstasie-produk. Buiten dat dit die "
-#~ "maklikste is om te ken gebruik, sluit dit duisende programme in van die "
-#~ "mees gewildste tot die mees tegnieste."
-
-#, fuzzy
-#~ msgid ""
-#~ "PowerPack+ is a <b>full-featured Linux solution</b> for small to medium-"
-#~ "sized <b>networks</b>. PowerPack+ includes thousands of <b>desktop "
-#~ "applications</b> and a comprehensive selection of world-class <b>server "
-#~ "applications</b>."
-#~ msgstr ""
-#~ "PowerPack+ is 'n volledige oplossing vir klein tot medium grootte "
-#~ "netwerke. PowerPack+ verhoog die waarde van die standaard PowerPack deur "
-#~ "'n volledige keuse wereldklas bediener aplikasies in te sluit."
-
-#, fuzzy
-#~ msgid "<b>Mandriva Products</b>"
-#~ msgstr "<b>Mandriva Store</b>"
-
-#, fuzzy
-#~ msgid "The Mandriva Linux products are:"
-#~ msgstr "Mandriva Linux Updates Applet"
-
-#, fuzzy
-#~ msgid "<b>Mandriva Products (Professional Solutions)</b>"
-#~ msgstr "Vind meer uit rakende <b>Personal Solutions</n>:"
-
-#~ msgid "<b>The KDE Choice</b>"
-#~ msgstr "<b>Die KDE Keuse</b>"
-
-#, fuzzy
-#~ msgid "<b>Choose your Favorite Desktop Environment</b>"
-#~ msgstr "<b>Kies u grafiese werksomgewing!</b>"
-
-#, fuzzy
-#~ msgid "<b>Kontact</b>"
-#~ msgstr "<b>Neem Kennis</b>"
-
-#, fuzzy
-#~ msgid ""
-#~ "More than just a full-featured <b>e-mail client</b>, Kontact also "
-#~ "includes an <b>address book</b>, a <b>calendar</b>, plus a tool for "
-#~ "taking <b>notes</b>!"
-#~ msgstr ""
-#~ "En u het net 'n e-pos program verwag, nee, nee! <b>Kontact</b> sluit ook "
-#~ "'n adresboek, kalender en dagboek program in, o, en moet nie vergeet van "
-#~ "die notaboekkie nie!"
-
-#~ msgid "<b>Surf the Internet</b>"
-#~ msgstr "<b>Rits op die Internet</b>"
-
-#, fuzzy
-#~ msgid "\t* Browse the <b>Web</b> with Konqueror."
-#~ msgstr "\t* Rits op die Internet met <b>Mozilla en Konqueror</b>"
-
-#, fuzzy
-#~ msgid "\t* <b>Transfer</b> files with KBear."
-#~ msgstr "Dra lêers deur FTP oor"
-
-#~ msgid "\t* ..."
-#~ msgstr "\t* ..."
-
-#, fuzzy
-#~ msgid "\t* Edit and create <b>images</b> with the GIMP."
-#~ msgstr "\t* Redigeer Grafika en foto's met <b>The Gimp</b>"
-
-#, fuzzy
-#~ msgid ""
-#~ "In the Mandriva Linux menu you will find <b>easy-to-use</b> applications "
-#~ "for <b>all of your tasks</b>:"
-#~ msgstr ""
-#~ "Die kieslys in Mandriva Linux het gebruikersvriendelike programme vir "
-#~ "alle behoefdes:"
-
-#~ msgid ""
-#~ "\t* Create, edit and share office documents with <b>OpenOffice.org</b>."
-#~ msgstr ""
-#~ "\t - Skep, redigeer en deel kantoor dokumentasie met <b>OpenOffice.org</b>"
-
-#, fuzzy
-#~ msgid ""
-#~ "\t* Manage your personal data with the integrated personal information "
-#~ "suites <b>Kontact</b> and <b>Evolution</b>."
-#~ msgstr ""
-#~ "\t* Kry beheer oor u persoonlike data met die geïntegreerde e-pos "
-#~ "programme:<b>Kontak</b> en <b>Evolution</b>"
-
-#~ msgid "\t* Browse the web with <b>Mozilla</b> and <b>Konqueror</b>."
-#~ msgstr "\t* Rits op die Internet met <b>Mozilla</b> en <b>Konqueror</b>"
-
-#~ msgid "\t* Participate in online chat with <b>Kopete</b>."
-#~ msgstr "\t* Deel in die aanlyn kletzkamers met <b>Kopete</b>"
-
-#, fuzzy
-#~ msgid ""
-#~ "\t* Listen to your <b>audio CDs</b> and <b>music files</b>, watch your "
-#~ "<b>videos</b>."
-#~ msgstr ""
-#~ "\t* Luister na musiek CDs asook Musiek-lêers met <b>KsCD</b> en <b>Totem</"
-#~ "b>"
-
-#~ msgid "\t* Edit and create images with the <b>GIMP</b>."
-#~ msgstr "\t* Redigeer Grafika en foto's met <b>The Gimp</b>"
-
-#~ msgid "<b>Development Environments</b>"
-#~ msgstr "<b>Ontwikkelingomgewings</b>"
-
-#, fuzzy
-#~ msgid "<b>Development Editors</b>"
-#~ msgstr "<b>Ontwikkelings Programme</b>"
-
-#~ msgid "\t* <b>Emacs</b>: a customizable and real time display editor."
-#~ msgstr "\t* <b>Emacs</b>: 'n buigbare en intyd vertoon-redigeerder"
-
-#~ msgid ""
-#~ "\t* <b>XEmacs</b>: another open source text editor and application "
-#~ "development system."
-#~ msgstr "\t* <b>XEmacs</b>: oopbron redigeerder en ontwikkelings program."
-
-#~ msgid ""
-#~ "\t* <b>Vim</b>: an advanced text editor with more features than standard "
-#~ "Vi."
-#~ msgstr ""
-#~ "\t* <b>Vim</b>: gevorderde redigeerder met ekstras bo die standaard Vi"
-
-#, fuzzy
-#~ msgid "<b>Development Languages</b>"
-#~ msgstr "<b>Ontwikkelings Programme</b>"
-
-#~ msgid "\t\t* <b>C++</b>"
-#~ msgstr "\t\t* <b>C++</b>"
-
-#~ msgid "\t\t* <b>Java™</b>"
-#~ msgstr "\t\t* <b>Java™</b>"
-
-#, fuzzy
-#~ msgid "\t* Scripting languages:"
-#~ msgstr "besig om te druk bestuurder"
-
-#~ msgid "\t\t* <b>Perl</b>"
-#~ msgstr "\t\t* <b>Perl</b>"
-
-#~ msgid "\t\t* <b>Python</b>"
-#~ msgstr "\t\t* <b>Python</b>"
-
-#, fuzzy
-#~ msgid "\t* And many more."
-#~ msgstr "\t* En nog meer"
-
-#, fuzzy
-#~ msgid "<b>Development Tools</b>"
-#~ msgstr "<b>Ontwikkelings Programme</b>"
-
-#, fuzzy
-#~ msgid "<b>Groupware Server</b>"
-#~ msgstr "<b>Bedieners</b>"
-
-#, fuzzy
-#~ msgid "\t* Send and receive your <b>e-mails</b>."
-#~ msgstr "\t* Stuur en ontvang van e-pos"
-
-#~ msgid "<b>Servers</b>"
-#~ msgstr "<b>Bedieners</b>"
-
-#~ msgid ""
-#~ "Empower your business network with <b>premier server solutions</b> "
-#~ "including:"
-#~ msgstr ""
-#~ "Bemagtig u besigheid se netwerk deur <b>premier server solutiuons</b> "
-#~ "insluitend:"
-
-#~ msgid ""
-#~ "\t* <b>Samba</b>: File and print services for Microsoft® Windows® clients."
-#~ msgstr "\t* <b>Samba</b>: Lêer- en drukker-bediener vir MS-Windows kliënte"
-
-#~ msgid "\t* <b>Apache</b>: The most widely used web server."
-#~ msgstr "\t* <b>Apache</b>: Die wydste gebruike Web-bediener"
-
-#, fuzzy
-#~ msgid ""
-#~ "\t* <b>MySQL</b> and <b>PostgreSQL</b>: The world's most popular open "
-#~ "source databases."
-#~ msgstr "\t* <b>MySQL</b>: Die wêreld se gewildste Oopbron databasis."
-
-#~ msgid ""
-#~ "\t* <b>CVS</b>: Concurrent Versions System, the dominant open source "
-#~ "network-transparent version control system."
-#~ msgstr ""
-#~ "\t* <b>CVS</b>: Concurrent Versions System, die dominante oopbron "
-#~ "netwerk- deursigtigde weergawe-beheerstelsel."
-
-#~ msgid ""
-#~ "\t* <b>ProFTPD</b>: The highly configurable GPL-licensed FTP server "
-#~ "software."
-#~ msgstr "\t* <b>ProFTPD</b>: Die fyn verstelbare GPL FTP-bediener sagteware"
-
-#~ msgid "<b>Mandriva Linux Control Center</b>"
-#~ msgstr "<b>Mandriva Linux Control Center</b>"
-
-#, fuzzy
-#~ msgid ""
-#~ "The <b>Mandriva Linux Control Center</b> is an essential collection of "
-#~ "Mandriva Linux-specific utilities designed to simplify the configuration "
-#~ "of your computer."
-#~ msgstr ""
-#~ "Die \"Mandriva Linux Control Center\" is 'n versameling nutsprogramme wat "
-#~ "die opstel van u rekenaar vergemaklik."
-
-#, fuzzy
-#~ msgid ""
-#~ "You will immediately appreciate this collection of <b>more than 60</b> "
-#~ "handy utilities for <b>easily configuring your system</b>: hardware "
-#~ "devices, mount points, network and Internet, security level of your "
-#~ "computer, etc."
-#~ msgstr ""
-#~ "U sal voorwaar verlief raak op hierdie versameling programme wat alles "
-#~ "insluit van die opstel van hardeware, hegpunte, die Netwerk en Internet, "
-#~ "tot die verstel van die sekuriteitsvlakke en installasie van sagteware."
-
-#, fuzzy
-#~ msgid "<b>The Open Source Model</b>"
-#~ msgstr "<b>Die KDE Keuse</b>"
-
-#, fuzzy
-#~ msgid "<b>Online Store</b>"
-#~ msgstr "<b>Mandriva Store</b>"
-
-#, fuzzy
-#~ msgid ""
-#~ "To learn more about Mandriva products and services, you can visit our "
-#~ "<b>e-commerce platform</b>."
-#~ msgstr ""
-#~ "Hier kan u alle Mandriva produkte en dienste vind. <b>Mandriva Store</b> "
-#~ "--ons ten volle toegeruste e-handel platvorm."
-
-#~ msgid "Stop by today at <b>store.mandriva.com</b>!"
-#~ msgstr "Gaan draai sommer vandag by <b>store.mandriva.com</b>"
-
-#~ msgid "<b>Mandriva Club</b>"
-#~ msgstr "<b>Mandriva Club</b>"
-
-#, fuzzy
-#~ msgid ""
-#~ "Take advantage of <b>valuable benefits</b> by joining Mandriva Club, such "
-#~ "as:"
-#~ msgstr ""
-#~ "Hierdie is meer as net 'n gemeenskap, hier kry u ekstra waarde deur "
-#~ "produkte en dienste wat die volgende insluit:"
-
-#, fuzzy
-#~ msgid ""
-#~ "\t* <b>Special discounts</b> on products and services of our online store "
-#~ "<b>store.mandriva.com</b>."
-#~ msgstr "\t* Spesiale afslag vir produkte en dienste by \"Mandriva Store\""
-
-#, fuzzy
-#~ msgid "\t* Participation in Mandriva Linux <b>user forums</b>."
-#~ msgstr "\t* Deel in die aanlyn kletzkamers met <b>Kopete</b>"
-
-#~ msgid "<b>Mandriva Online</b>"
-#~ msgstr "<b>Mandriva Online</b>"
-
-#~ msgid "<b>Mandriva Expert</b>"
-#~ msgstr "<b>Mandriva Expert</b>"
-
-#~ msgid "Network:"
-#~ msgstr "Netwerk:"
-
-#~ msgid "IP:"
-#~ msgstr " ip :"
-
-#~ msgid "Mode:"
-#~ msgstr "Modus:"
-
-#~ msgid "Encryption:"
-#~ msgstr "Inkripsie:"
-
-#~ msgid "Signal:"
-#~ msgstr "Sein:"
-
-#~ msgid "Rescan"
-#~ msgstr "Herskandering"
-
-#~ msgid "Status"
-#~ msgstr "Status"
-
-#~ msgid "Disconnect"
-#~ msgstr "Ontkoppel"
-
-#~ msgid ""
-#~ "x coordinate of text box\n"
-#~ "in number of characters"
-#~ msgstr ""
-#~ "x-koördinaat van teksboks\n"
-#~ "in aantal karakters"
-
-#~ msgid ""
-#~ "y coordinate of text box\n"
-#~ "in number of characters"
-#~ msgstr ""
-#~ "die teksboksie se x koördinaat\n"
-#~ "in aantal karakters"
-
-#~ msgid "text width"
-#~ msgstr "teks-wydte"
-
-#~ msgid "ProgressBar color selection"
-#~ msgstr "Vorderingstafie se kleurkeuse"
-
-#~ msgid "Connect to the Internet"
-#~ msgstr "Konnekteer aan die internet"
-
-#~ msgid ""
-#~ "The most common way to connect with adsl is pppoe.\n"
-#~ "Some connections use PPTP, a few use DHCP.\n"
-#~ "If you do not know, choose 'use PPPoE'"
-#~ msgstr ""
-#~ "Die mees algemene metode vir ADSL is om pppoe te gebruik.\n"
-#~ "Daar is wel sekere konneksie wat pptp of DHCP gebruik.\n"
-#~ "Indien u nie weet nie, kies 'gebruik PPPoE'."
-
-#~ msgid "Do not print any test page"
-#~ msgstr "Geen toetsbladsy(e)"
-
-#~ msgid "Printer on SMB/Windows 95/98/NT server"
-#~ msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
-
-#, fuzzy
-#~ msgid "Found printer on %s..."
-#~ msgstr "Verwyder drukker \"%s\"..."
-
-#~ msgid "Useless without Terminal Server"
-#~ msgstr "Waardeloos sonder Terninaal-bediener"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please select default client type.\n"
-#~ " 'Thin' clients run everything off the server's CPU/RAM, using the "
-#~ "client display.\n"
-#~ " 'Fat' clients use their own CPU/RAM but the server's filesystem."
-#~ msgstr ""
-#~ "Please select client type.\n"
-#~ " 'Thin' clients run everything off the server's CPU/RAM, using the "
-#~ "client display.\n"
-#~ " 'Fat' clients use their own CPU/RAM but the server's filesystem."
-
-#~ msgid "dhcpd Config..."
-#~ msgstr "dhcpd Konfigurasie ..."
-
-#~ msgid ""
-#~ "package 'ImageMagick' is required to be able to complete configuration.\n"
-#~ "Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
-#~ msgstr ""
-#~ "die pakket \"ImageMagick\" word benodig om die konfigurasie te voltooi.\n"
-#~ "Klik op \"Ok\" om 'ImageMagick' te installeer of \"Kanselleer\" om te "
-#~ "staak"
-
-#, fuzzy
-#~ msgid "Unable to select wireless network: %s"
-#~ msgstr "Kon nie die spieëlwebplek %s kontak nie"
-
-#, fuzzy
-#~ msgid "Interactive intrusion detection"
-#~ msgstr "Outobespeuring van drukkers"
-
-#, fuzzy
-#~ msgid "Active Firewall: intrusion detected"
-#~ msgstr "Vuurmuurkonfigurasie gevind!"
-
-#, fuzzy
-#~ msgid "Do you want to blacklist the attacker?"
-#~ msgstr "Wil Taai-sleutels aktiveer?"
-
-#~ msgid "Grub"
-#~ msgstr "Grub"
-
-#~ msgid "Local Network adress"
-#~ msgstr "Plaaslike Netwerkadres"
+#~ msgid "Icon"
+#~ msgstr "Ikoon"
-#~ msgid "Configuring scripts, installing software, starting servers..."
-#~ msgstr ""
-#~ "Skrips word konfigureer, sagterware installeer en bedieners afgeskop..."
+#~ msgid "Number of capture buffers:"
+#~ msgstr "Aantal ontvang-buffers:"
-#~ msgid "drakfloppy"
-#~ msgstr "drakfloppy"
-
-#~ msgid "Boot disk creation"
-#~ msgstr "herlaaiskyf-skepping"
-
-#~ msgid "General"
-#~ msgstr "Algemeen"
-
-#~ msgid "Kernel version"
-#~ msgstr "Weergawe van kernel"
-
-#~ msgid "Preferences"
-#~ msgstr "Voorkeure"
-
-#~ msgid "Advanced preferences"
-#~ msgstr "Gevorderde voorkeure"
-
-#~ msgid "Size"
-#~ msgstr "Grootte"
-
-#~ msgid "Mkinitrd optional arguments"
-#~ msgstr "Mkinitrd opsionele parameters"
-
-#~ msgid "force"
-#~ msgstr "forseer"
-
-#~ msgid "omit raid modules"
-#~ msgstr "laat RAID-modules weg"
-
-#~ msgid "if needed"
-#~ msgstr "indien nodig"
-
-#~ msgid "omit scsi modules"
-#~ msgstr "laat SCSI-modules weg"
-
-#~ msgid "Add a module"
-#~ msgstr "Voeg module by"
-
-#~ msgid "Remove a module"
-#~ msgstr "Verwyder module"
-
-#~ msgid "Be sure a media is present for the device %s"
-#~ msgstr "Versker asb dat die regte mediatipe vir toestel %s beskikbaar is"
-
-#~ msgid ""
-#~ "There is no medium or it is write-protected for device %s.\n"
-#~ "Please insert one."
-#~ msgstr ""
-#~ "Daar is geen medium in toestel %s nie.\n"
-#~ "Sit asb. een in."
-
-#~ msgid "Unable to fork: %s"
-#~ msgstr "Kon nie vurk nie: %s"
-
-#~ msgid "Floppy creation completed"
-#~ msgstr "Skep van disket is voltooi"
-
-#~ msgid "The creation of the boot floppy has been successfully completed \n"
-#~ msgstr "Die selflaai-disket is suksesvol geskep.\n"
-
-#~ msgid ""
-#~ "Unable to properly close mkbootdisk:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
-#~ msgstr ""
-#~ "Kon nie mkbootdisk ordentelik afsluit nie:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
-
-#~ msgid ""
-#~ "You may not be able to install lilo (since lilo does not handle a LV on "
-#~ "multiple PVs)"
-#~ msgstr ""
-#~ "U mag moontlik nie instaat wees om lilo te installeer nie ( sedert lilo "
-#~ "nie 'n LV op menigte PV's kan hanteer nie)"
-
-#~ msgid "use PPPoE"
-#~ msgstr "gebruik PPPoE"
-
-#~ msgid "use PPTP"
-#~ msgstr "gebruik PPTP"
-
-#~ msgid "use DHCP"
-#~ msgstr "gebruik DHCP"
-
-#, fuzzy
-#~ msgid "Alcatel Speedtouch USB"
-#~ msgstr "Alcatel speedtouch USB-modem"
-
-#~ msgid " - detected"
-#~ msgstr "reeds bespeur"
-
-#~ msgid "Sagem (using PPPoA) USB"
-#~ msgstr "Sagem (gebruik PPPoA) usb"
-
-#~ msgid "Sagem (using DHCP) USB"
-#~ msgstr "Sagem (gebruik DHCP) USB"
-
-#~ msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-#~ msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ens."
-
-#~ msgid ""
-#~ "Warning, another Internet connection has been detected, maybe using your "
-#~ "network"
-#~ msgstr ""
-#~ "Pasop, daar is 'n ander internet konneksie, wat moontlik u netwerk "
-#~ "gebruik, bespeur"
-
-#~ msgid "PXE Server Configuration"
-#~ msgstr "Konfigureer PXE-bediener"
-
-#~ msgid "Installation Server Configuration"
-#~ msgstr "Konfigurasie van Installasie-bediener"
-
-#~ msgid ""
-#~ "You are about to configure your computer to install a PXE server as a "
-#~ "DHCP server\n"
-#~ "and a TFTP server to build an installation server.\n"
-#~ "With that feature, other computers on your local network will be "
-#~ "installable using this computer as source.\n"
-#~ "\n"
-#~ "Make sure you have configured your Network/Internet access using "
-#~ "drakconnect before going any further.\n"
-#~ "\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN)."
-#~ msgstr ""
-#~ "You are about to configure your computer to install a PXE server as a "
-#~ "DHCP server\n"
-#~ "and a TFTP server to build an installation server.\n"
-#~ "With that feature, other computers on your local network will be "
-#~ "installable using this computer as source.\n"
-#~ "\n"
-#~ "Make sure you have configured your Network/Internet access using "
-#~ "drakconnect before going any further.\n"
-#~ "\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN)."
-
-#~ msgid "No network adapter on your system!"
-#~ msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-
-#~ msgid "Choose the network interface"
-#~ msgstr "Kies die netwerkkoppelvlak"
-
-#~ msgid ""
-#~ "Please choose which network interface will be used for the dhcp server."
-#~ msgstr ""
-#~ "Kies asseblief die netwerkkoppelvlak wat u wil gebruik vir die dhcp-"
-#~ "bediener."
-
-#~ msgid "Interface %s (on network %s)"
-#~ msgstr "Koppelvlak %s (op netwerk %s)"
-
-#~ msgid ""
-#~ "The DHCP server will allow other computer to boot using PXE in the given "
-#~ "range of address.\n"
-#~ "\n"
-#~ "The network address is %s using a netmask of %s.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Die DHCP-bediener sal ander rekenaars wat PXE gebruik toelaat om uit 'n "
-#~ "sekere reeks adresse neem.\n"
-#~ "\n"
-#~ "Die netwerkadres is %s en masker is %s.\n"
-#~ "\n"
-
-#~ msgid "The DHCP start ip"
-#~ msgstr "Die DHCP-ip om mee te begin"
-
-#~ msgid "The DHCP end ip"
-#~ msgstr "Die DHCP ip om mee te eindig"
-
-#~ msgid ""
-#~ "Please indicate where the installation image will be available.\n"
-#~ "\n"
-#~ "If you do not have an existing directory, please copy the CD or DVD "
-#~ "contents.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Dui asseblief aan waar die installasie-beeld beksikbaar sal wees.\n"
-#~ "\n"
-#~ "Indien u nie 'n bestaande lêergids het nie, kopieer die CD of DVD se "
-#~ "inhoud.\n"
-#~ "\n"
-
-#~ msgid "Installation image directory"
-#~ msgstr "Lêergids vir installasie-beelde"
-
-#~ msgid "No image found"
-#~ msgstr "Geen beeld gevind nie"
-
-#~ msgid ""
-#~ "No CD or DVD image found, please copy the installation program and rpm "
-#~ "files."
-#~ msgstr ""
-#~ "Geen CD- of DVD-beelde gevind nie, kopieer die installasie program en rpm-"
-#~ "lêer"
-
-#~ msgid ""
-#~ "Please indicate where the auto_install.cfg file is located.\n"
-#~ "\n"
-#~ "Leave it blank if you do not want to set up automatic installation mode.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Dui asseblief aan waar 'auto_install.cfg' geleë is.\n"
-#~ "\n"
-#~ "Laat dit uit, indien u nie outomatiese installasie modus verlang nie.\n"
-#~ "\n"
-
-#~ msgid "Location of auto_install.cfg file"
-#~ msgstr "Ligging van 'auto_install.cfg'-lêer"
-
-#~ msgid "Do it later"
-#~ msgstr "Doen dit later"
-
-#~ msgid "Internet Connection Sharing currently disabled"
-#~ msgstr "Internetkonneksiedeling is gesper"
-
-#~ msgid "Enabling servers..."
-#~ msgstr "Bedieners word geaktiveer..."
-
-#~ msgid "Internet Connection Sharing currently enabled"
-#~ msgstr "Internetkonneksie-deling is ontsper"
-
-#~ msgid "Interface %s (using module %s)"
-#~ msgstr "Koppelvlak %s (met module %s)"
-
-#~ msgid "Interface %s"
-#~ msgstr "Koppelvlak %s"
-
-#~ msgid "Network interface already configured"
-#~ msgstr "Netwerk-koppelvlak alreeds gekonfigureer"
-
-#~ msgid ""
-#~ "Warning, the network adapter (%s) is already configured.\n"
-#~ "\n"
-#~ "Do you want an automatic re-configuration?\n"
-#~ "\n"
-#~ "You can do it manually but you need to know what you're doing."
-#~ msgstr ""
-#~ "Waarskuwing, die netwerk-aansluiter (%s) is reeds opgestel.\n"
-#~ "\n"
-#~ "Wil u dit outomaties herkonfigureer?\n"
-#~ "\n"
-#~ "U kan dit self doen, maar moet uitmaak, maak uit?"
-
-#~ msgid "No (experts only)"
-#~ msgstr "Nee (slegs kenners)"
-
-#~ msgid "Show current interface configuration"
-#~ msgstr "Wys die huidige koppelvlak-konfigurasie"
-
-#~ msgid "Current interface configuration"
-#~ msgstr "Huidige koppelvlak-konfigurasie"
-
-#~ msgid ""
-#~ "Current configuration of `%s':\n"
-#~ "\n"
-#~ "Network: %s\n"
-#~ "IP address: %s\n"
-#~ "IP attribution: %s\n"
-#~ "Driver: %s"
-#~ msgstr ""
-#~ "Huidige konfigurasie van '%s':\n"
-#~ "\n"
-#~ "Netwerk: %s\n"
-#~ "IP-adres: %s\n"
-#~ "IP attribution: %s\n"
-#~ "Drywer: %s"
-
-#~ msgid ""
-#~ "I can keep your current configuration and assume you already set up a "
-#~ "DHCP server; in that case please verify I correctly read the Network that "
-#~ "you use for your local network; I will not reconfigure it and I will not "
-#~ "touch your DHCP server configuration.\n"
-#~ "\n"
-#~ "The default DNS entry is the Caching Nameserver configured on the "
-#~ "firewall. You can replace that with your ISP DNS IP, for example.\n"
-#~ "\t\t \n"
-#~ "Otherwise, I can reconfigure your interface and (re)configure a DHCP "
-#~ "server for you.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Ek kan u huidige konfigurasie behou en aanneem u het alreeds 'n DHCP "
-#~ "bediener opgestel, in hierdie geval, maak tog seker dat ek die Netwerk "
-#~ "korrek lees vir u plaaslike netwerk, Ek gaan dit nie herkonfigureer nie, "
-#~ "en ook nie verander aan u DHCP bediener se konfigurasie nie.\n"
-#~ "\n"
-#~ "Die verstek DNS inskrywing is die van die 'Caching Nameserver' "
-#~ "gekonfigureer op die vuurmuur. U kan dit vervang met die van u ISP DNS "
-#~ "IP, byvoorbeeld:\n"
-#~ "\t\t \n"
-#~ "Anders kan ek u netwerk en 'n DHCP bediener vir u konfigureer of oor "
-#~ "konfigureer.\n"
-#~ "\n"
-
-#~ msgid "(This) DHCP Server IP"
-#~ msgstr "(Hierdie) DHCP-bediener se IP"
-
-#~ msgid "Re-configure interface and DHCP server"
-#~ msgstr "Herkonfigureer die koppelvlak en DHCP-bediener"
-
-#~ msgid "The Local Network did not finish with `.0', bailing out."
-#~ msgstr "Die plaaslike netwer het nie met 'n '0' voltooi nie, ontsnap hier."
-
-#~ msgid "Number of logical extents: %d"
-#~ msgstr "Aantal logiese verlengings: %d"
-
-#, fuzzy
-#~ msgid ""
-#~ "WARNING: this device has been previously configured to connect to the "
-#~ "Internet.\n"
-#~ "Modifying the fields below will override this configuration.\n"
-#~ "Do you really want to reconfigure this device?"
-#~ msgstr ""
-#~ "WAARSKUWING: Die toestel is alreeds opgestel om aan die Internet "
-#~ "konnekteer.\n"
-#~ "U kan die toestel net so aanvaar.\n"
-#~ "Veranderinge aan onderstaande velde sal hierdie\n"
-#~ "konfigurasie oorskryf."
-
-#~ msgid ""
-#~ " - Create etherboot floppies/CDs:\n"
-#~ " \tThe diskless client machines need either ROM images on the NIC, "
-#~ "or a boot floppy\n"
-#~ " \tor CD to initiate the boot sequence. drakTermServ will help "
-#~ "generate these\n"
-#~ " \timages, based on the NIC in the client machine.\n"
-#~ " \t\t\n"
-#~ " \tA basic example of creating a boot floppy for a 3Com 3c509 "
-#~ "manually:\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/lib/etherboot/floppyload.bin \\\n"
-#~ " \t\t/usr/share/etherboot/start16.bin \\\t\t\t\n"
-#~ " \t\t/usr/lib/etherboot/zimg/3c509.zimg > /dev/fd0"
-#~ msgstr ""
-#~ " - Create etherboot floppies/CDs:\n"
-#~ " \tThe diskless client machines need either ROM images on the NIC, "
-#~ "or a boot floppy\n"
-#~ " \tor CD to initiate the boot sequence. drakTermServ will help "
-#~ "generate these\n"
-#~ " \timages, based on the NIC in the client machine.\n"
-#~ " \t\t\n"
-#~ " \tA basic example of creating a boot floppy for a 3Com 3c509 "
-#~ "manually:\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/lib/etherboot/floppyload.bin \\\n"
-#~ " \t\t/usr/share/etherboot/start16.bin \\\t\t\t\n"
-#~ " \t\t/usr/lib/etherboot/zimg/3c509.zimg > /dev/fd0"
-
-#~ msgid "Dynamic IP Address Pool:"
-#~ msgstr "Dinamiese IP-adres poel:"
-
-#~ msgid "hd"
-#~ msgstr "hd"
-
-#~ msgid "tape"
-#~ msgstr "band"
-
-#~ msgid "WebDAV remote site already in sync!"
-#~ msgstr "Eksterne WebDAV werf alteeds gesinchroniseer!"
-
-#~ msgid "WebDAV transfer failed!"
-#~ msgstr "WebDAV oordrag-probleme!"
-
-#~ msgid ""
-#~ "Backup quota exceeded!\n"
-#~ "%d MB used vs %d MB allocated."
-#~ msgstr "Rugsteunkwota oorskry! %d MB gebruik vs %d MB eenkant gesit."
-
-#~ msgid ""
-#~ "Maximum size\n"
-#~ " allowed for Drakbackup (MB)"
-#~ msgstr ""
-#~ "Maksimum grootte\n"
-#~ "toegelaat vir Drakbackup (MB)"
-
-#~ msgid "\t-Network by webdav.\n"
-#~ msgstr "\t -Netwerk deur webdav.\n"
-
-#~ msgid "first step creation"
-#~ msgstr "eertste stap skepping"
-
-#~ msgid "choose image file"
-#~ msgstr "kies grafika-lêer"
-
-#~ msgid "Configure bootsplash picture"
-#~ msgstr "Konfigureer selflaai-splatskerm beeld"
-
-#~ msgid "the color of the progress bar"
-#~ msgstr "die kleur van die vorderingbalk"
-
-#~ msgid "Preview"
-#~ msgstr "Voorskou"
-
-#~ msgid "Choose color"
-#~ msgstr "Kies 'n kleur"
-
-#~ msgid "Make kernel message quiet by default"
-#~ msgstr "Hou kernel-boodskappe stil by verstek"
-
-#~ msgid "Notice"
-#~ msgstr "Aandag"
-
-#~ msgid "This theme does not yet have a bootsplash in %s!"
-#~ msgstr "Hierdie tema het nie huidiglik 'n selflaai-splatskerm in %s nie!"
-
-#~ msgid "You must choose an image file first!"
-#~ msgstr "U moet eers 'n beeldlêer kies!"
-
-#~ msgid "Generating preview..."
-#~ msgstr "Berei voorskou voor ..."
-
-#~ msgid "%s BootSplash (%s) preview"
-#~ msgstr "%s Selflaai-splatskerm (%s) voorskou"
-
-#~ msgid "No floppy drive available"
-#~ msgstr "Geen disketaandrywer beskikbaar nie"
-
-#~ msgid "Please insert the Update Modules floppy in drive %s"
-#~ msgstr "Sit asb. die module-opdateringsfloppie in aandrywer %s"
-
-#, fuzzy
-#~ msgid ""
-#~ "_: keyboard\n"
-#~ "Tifinagh (+latin/arabic)"
-#~ msgstr "Jugoslaavs (latynse uitleg)"
-
-#~ msgid "No network card"
-#~ msgstr "Geen netwerkkaart nie"
-
-#, fuzzy
-#~ msgid "Use already installed driver (%s)"
-#~ msgstr "Ssh identiteit alreeds bekom"
-
-#~ msgid "You've not selected any font"
-#~ msgstr "U het geen lettertipe gekies nie"
-
-#~ msgid "No browser available! Please install one"
-#~ msgstr "Geen blaaier beskikbaar! Installeer asseblief een"
-
-#~ msgid ""
-#~ "No browser is installed on your system, Please install one if you want to "
-#~ "browse the help system"
-#~ msgstr ""
-#~ "Geen blaaier is op u rekenaar geïnstalleer. Installeer asseblief een "
-#~ "indien u die hulp-stelsel wil deurblaai"
-
-#~ msgid "Checking device and configuring HPOJ..."
-#~ msgstr "Bekyk die toestel en konfigureer HPOJ ..."
-
-#~ msgid ""
-#~ "Insert a floppy in drive\n"
-#~ "All data on this floppy will be lost"
-#~ msgstr ""
-#~ "Plaas 'n disket in die aandrywer.\n"
-#~ "Alle data daarop sal vernietig word."
-
-#~ msgid "Insert a FAT formatted floppy in drive %s"
-#~ msgstr "Sit 'n FAT-geformatteerde skyf in aandrywer %s"
-
-#~ msgid "This floppy is not FAT formatted"
-#~ msgstr "Hierdie floppie is nie in FAT-formaat nie"
-
-#~ msgid ""
-#~ "To use this saved packages selection, boot installation with ``linux "
-#~ "defcfg=floppy''"
-#~ msgstr ""
-#~ "Om hierdie gestoorde pakketkeuse te gebruik, herlaai die installasie met "
-#~ "\"linux defcfg=floppy\""
-
-#~ msgid "Load/Save on floppy"
-#~ msgstr "Laai/Stoor op disket"
-
-#~ msgid ""
-#~ "Please choose load or save package selection on floppy.\n"
-#~ "The format is the same as auto_install generated floppies."
-#~ msgstr ""
-#~ "Kies asb. die laai of stoor pakketkeuse op die floppie.\n"
-#~ "Die formaat is dieselfde as outoinstallasie-genereerde floppies."
-
-#~ msgid "Load from floppy"
-#~ msgstr "Laai vanaf floppie"
-
-#~ msgid "Save on floppy"
-#~ msgstr "Stoor op floppie"
-
-#~ msgid "Package selection"
-#~ msgstr "Pakketkeuse"
-
-#~ msgid "Loading from floppy"
-#~ msgstr "Oplaai vanaf floppie"
-
-#~ msgid "Insert a floppy containing package selection"
-#~ msgstr "Sit 'n floppie met die pakketkeuse in aandrywer "
-
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Installeer HPOJ pakket..."
-
-#~ msgid "Installing HPLIP package..."
-#~ msgstr "Installeer HPLIP pakket..."
-
-#~ msgid "Checking device and configuring HPLIP..."
-#~ msgstr "Bekyk die toestel en konfigureer HPLIP..."
-
-#~ msgid "multi-function device on parallel port #%s"
-#~ msgstr "multi-funksionele toestel op parallele poort #%s"
-
-#~ msgid "multi-function device on a parallel port"
-#~ msgstr "multi-funksionele toestel op 'n parallelle poort"
-
-#~ msgid "multi-function device on USB"
-#~ msgstr "multi-funksionele toestel op USB"
-
-#~ msgid "multi-function device on HP JetDirect"
-#~ msgstr "multi-funksionele toestel op 'HP JetDirect'"
-
-#~ msgid "multi-function device"
-#~ msgstr "multi-funksionele-toestel"
-
-#~ msgid "printing to %s"
-#~ msgstr "drukwerk gestuur na %s"
-
-#~ msgid "using command %s"
-#~ msgstr "gebruik opdrag %s"
-
-#~ msgid "Application:"
-#~ msgstr "Applikasie:"
-
-#~ msgid "Release: "
-#~ msgstr "Vrystelling: "
-
-#~ msgid "Summary: "
-#~ msgstr "Opsomming: "
-
-#~ msgid "Bug Description/System Information"
-#~ msgstr "Gogga-beskrywing/Stelsel se inligting"
-
-#~ msgid "YOUR TEXT HERE"
-#~ msgstr "U TEKS HIER"
-
-#~ msgid "Submit kernel version"
-#~ msgstr "Dien kernel se weergawe in"
-
-#~ msgid "Submit cpuinfo"
-#~ msgstr "Dien 'cpuinfo' in"
-
-#~ msgid "Submit lspci"
-#~ msgstr "Dien 'lspci' in"
-
-#~ msgid "NOT FOUND"
-#~ msgstr "NIE GEVIND NIE"
-
-#~ msgid "connecting to %s..."
-#~ msgstr "konnekteer aan %s ..."
-
-#~ msgid "Please enter a package name."
-#~ msgstr "Voorsien asseblief 'n pakketnaam."
-
-#~ msgid "Please enter summary text."
-#~ msgstr "Voorsien asseblief 'n opsomming."
-
-#~ msgid "Loading printer configuration... Please wait"
-#~ msgstr "Laai tans die drukkerkonfigurasie.... Net 'n oomblik asb"
-
-#~ msgid "Root password"
-#~ msgstr "Kies 'root' se wagwoord"
-
-#~ msgid "Do you want to recover your system?"
-#~ msgstr "Wil u die stelsel herstel?"
-
-#~ msgid "Move"
-#~ msgstr "Skuif"
-
-#~ msgid "Which disk do you want to move it to?"
-#~ msgstr "Na watter skyf wil u skuif?"
-
-#~ msgid "Sector"
-#~ msgstr "Sektor"
-
-#~ msgid "Which sector do you want to move it to?"
-#~ msgstr "Na watter sektor wil u skuif?"
-
-#~ msgid "Moving"
-#~ msgstr "Verskuif"
-
-#~ msgid "Moving partition..."
-#~ msgstr "Partisie word verskuif..."
-
-#~ msgid "Error opening %s for writing: %s"
-#~ msgstr "Fout om %s in skryfmodus te open: %s"
-
-#~ msgid ""
-#~ "This is HardDrake, a Mandriva Linux hardware configuration tool.\n"
-#~ "<span foreground=\"royalblue3\">Version:</span> %s\n"
-#~ "<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-#~ "tvignaud@mandriva.com&gt;\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Hierdie is HardDrake,'n Mandriva Linux program vir "
-#~ "hardewarekonfigurasie.\n"
-#~ "<span foreground=\"royalblue3\">Weergawe:</span> %s\n"
-#~ "<span foreground=\"royalblue3\">Skrywer</span> Thierry Vignaud &lt;"
-#~ "tvignaud@mandriva.com&gt;\n"
-#~ "\n"
-
-#~ msgid "OK"
-#~ msgstr "OK"
-
-#~ msgid "NO"
-#~ msgstr "NEE"
-
-#~ msgid "YES"
-#~ msgstr "JA"
-
-#~ msgid ""
-#~ "The following options can be set to customize your\n"
-#~ "system security. If you need an explanation, look at the help tooltip.\n"
-#~ msgstr ""
-#~ "Die volgende opsies kan gestel word om u rekenaar-sekuriteit\n"
-#~ "te verander. Indien u 'n verduideliking soek, kyk na die gereedskap-"
-#~ "wenke.\n"
-
-#~ msgid "The %s is not known by this version of Scannerdrake."
-#~ msgstr "Die %s is onbekend aan hierdie weergawe van Scannerdrake."
-
-#~ msgid "Czech (QWERTZ)"
-#~ msgstr "Tseggies (QWERTZ)"
-
-#~ msgid "German"
-#~ msgstr "Duits"
-
-#~ msgid "Dvorak"
-#~ msgstr "Dvorak"
-
-#~ msgid "Spanish"
-#~ msgstr "Spaans"
-
-#~ msgid "Finnish"
-#~ msgstr "Finnies"
-
-#~ msgid "French"
-#~ msgstr "Fraans"
-
-#~ msgid "Norwegian"
-#~ msgstr "Norweegs"
-
-#~ msgid "Polish"
-#~ msgstr "Pools"
-
-#~ msgid "Russian"
-#~ msgstr "Russies"
-
-#~ msgid "Swedish"
-#~ msgstr "Sweeds"
-
-#~ msgid "Albanian"
-#~ msgstr "Albanies"
-
-#~ msgid "Armenian (old)"
-#~ msgstr "Armenies (oud)"
-
-#~ msgid "Armenian (typewriter)"
-#~ msgstr "Armenies (tikmasjien)"
-
-#~ msgid "Armenian (phonetic)"
-#~ msgstr "Armenies (Foneties)"
-
-#~ msgid "Arabic"
-#~ msgstr "Arabies"
-
-#~ msgid "Azerbaidjani (latin)"
-#~ msgstr "Azerbaidjani (latyns)"
-
-#~ msgid "Belgian"
-#~ msgstr "Belgies"
-
-#~ msgid "Bengali"
-#~ msgstr "Bengali"
-
-#~ msgid "Bulgarian (phonetic)"
-#~ msgstr "Bulgaars (Foneties)"
-
-#~ msgid "Bulgarian (BDS)"
-#~ msgstr "Bulgaars (BDS)"
-
-#~ msgid "Brazilian (ABNT-2)"
-#~ msgstr "Brasiliaans (ABNT-2)"
-
-#~ msgid "Bosnian"
-#~ msgstr "Bosnies"
-
-#~ msgid "Belarusian"
-#~ msgstr "Belarussies"
-
-#~ msgid "Swiss (German layout)"
-#~ msgstr "Switsers (Duitse uitleg)"
-
-#~ msgid "Swiss (French layout)"
-#~ msgstr "Switsers (Franse uitleg)"
-
-#~ msgid "Czech (QWERTY)"
-#~ msgstr "Tseggies (QWERTY)"
-
-#~ msgid "German (no dead keys)"
-#~ msgstr "Duits (geen dooie sleutels)"
-
-#~ msgid "Devanagari"
-#~ msgstr "Devanagari"
-
-#~ msgid "Danish"
-#~ msgstr "Deens"
-
-#~ msgid "Dvorak (US)"
-#~ msgstr "Dvorak (VSA)"
-
-#~ msgid "Dvorak (Norwegian)"
-#~ msgstr "Dvorak (Norweegs)"
-
-#~ msgid "Dvorak (Swedish)"
-#~ msgstr "Dvorak (Sweeds)"
-
-#~ msgid "Estonian"
-#~ msgstr "Estoniaans"
-
-#~ msgid "Georgian (\"Russian\" layout)"
-#~ msgstr "Georgies (Russiese uitleg)"
-
-#~ msgid "Georgian (\"Latin\" layout)"
-#~ msgstr "Georgies (Latynse uitleg)"
-
-#~ msgid "Greek"
-#~ msgstr "Grieks"
-
-#~ msgid "Greek (polytonic)"
-#~ msgstr "Grieks (polytonies)"
-
-#~ msgid "Gujarati"
-#~ msgstr "Gujarati"
-
-#~ msgid "Gurmukhi"
-#~ msgstr "Gurmukhi"
-
-#~ msgid "Hungarian"
-#~ msgstr "Hongaars"
-
-#~ msgid "Croatian"
-#~ msgstr "Kroaties"
-
-#~ msgid "Irish"
-#~ msgstr "Iers"
-
-#~ msgid "Israeli"
-#~ msgstr "Israelies"
-
-#~ msgid "Israeli (Phonetic)"
-#~ msgstr "Israelies (Foneties)"
-
-#~ msgid "Iranian"
-#~ msgstr "Iranies"
-
-#~ msgid "Icelandic"
-#~ msgstr "Yslandies"
-
-#~ msgid "Italian"
-#~ msgstr "Italiaans"
-
-#~ msgid "Inuktitut"
-#~ msgstr "Inuktitut"
-
-#~ msgid "Japanese 106 keys"
-#~ msgstr "Japanees 106 sleutels"
-
-#~ msgid "Kannada"
-#~ msgstr "Kanada"
-
-#~ msgid "Korean keyboard"
-#~ msgstr "Koreaanse sleutelbord"
-
-#~ msgid "Latin American"
-#~ msgstr "Latyns-Amerikaans"
-
-#~ msgid "Laotian"
-#~ msgstr "Laoties"
-
-#~ msgid "Lithuanian AZERTY (old)"
-#~ msgstr "Lituanies AZERTY (oud)"
-
-#~ msgid "Lithuanian AZERTY (new)"
-#~ msgstr "Lituanies AZERTY (nuut)"
-
-#~ msgid "Lithuanian \"number row\" QWERTY"
-#~ msgstr "Lituanies \"nommerry\" QWERTY"
-
-#~ msgid "Lithuanian \"phonetic\" QWERTY"
-#~ msgstr "Lituanies \"foneties\" QWERTY"
-
-#~ msgid "Latvian"
-#~ msgstr "Lets"
-
-#~ msgid "Malayalam"
-#~ msgstr "Malabaars"
-
-#~ msgid "Macedonian"
-#~ msgstr "Masedonies"
-
-#~ msgid "Myanmar (Burmese)"
-#~ msgstr "Myanmar (Burmese)"
-
-#~ msgid "Mongolian (cyrillic)"
-#~ msgstr "Mongools (cyrillic)"
-
-#~ msgid "Maltese (UK)"
-#~ msgstr "Maltese (UK)"
-
-#~ msgid "Maltese (US)"
-#~ msgstr "Maltees (VSA)"
-
-#~ msgid "Dutch"
-#~ msgstr "Nederlands"
-
-#~ msgid "Oriya"
-#~ msgstr "Oriya"
-
-#~ msgid "Polish (qwerty layout)"
-#~ msgstr "Pools (QWERTY uitleg)"
-
-#~ msgid "Polish (qwertz layout)"
-#~ msgstr "Pools (QWERTZ uitleg)"
-
-#~ msgid "Portuguese"
-#~ msgstr "Portugees"
-
-#~ msgid "Canadian (Quebec)"
-#~ msgstr "Kanadees (Quebec)"
-
-#~ msgid "Romanian (qwertz)"
-#~ msgstr "Romanies (QWERTZ)"
-
-#~ msgid "Romanian (qwerty)"
-#~ msgstr "Romanies (QWERTY)"
-
-#~ msgid "Russian (Phonetic)"
-#~ msgstr "Russies (Foneties)"
-
-#~ msgid "Saami (norwegian)"
-#~ msgstr "Saami (noorweegs)"
-
-#~ msgid "Saami (swedish/finnish)"
-#~ msgstr "Saami (sweeds/fins)"
-
-#~ msgid "Slovenian"
-#~ msgstr "Sloveens"
-
-#~ msgid "Slovakian (QWERTZ)"
-#~ msgstr "Slovaaks (QWERTZ)"
-
-#~ msgid "Slovakian (QWERTY)"
-#~ msgstr "Slovaaks (QWERTY)"
-
-#~ msgid "Serbian (cyrillic)"
-#~ msgstr "Serwies (Kirillies)"
-
-#~ msgid "Syriac"
-#~ msgstr "Siries"
-
-#~ msgid "Syriac (phonetic)"
-#~ msgstr "Siries (Foneties)"
-
-#~ msgid "Telugu"
-#~ msgstr "Telugu"
-
-#~ msgid "Tamil (ISCII-layout)"
-#~ msgstr "Tamil (ISCII-layout)"
-
-#~ msgid "Tamil (Typewriter-layout)"
-#~ msgstr "Tamil (Tikmasjien-uitleg)"
-
-#~ msgid "Thai keyboard"
-#~ msgstr "Thai sleutelbord"
-
-#~ msgid "Tajik keyboard"
-#~ msgstr "Tajik sleutelbord"
-
-#~ msgid "Turkish (traditional \"F\" model)"
-#~ msgstr "Turks (tradisionele \"F\" model)"
-
-#~ msgid "Turkish (modern \"Q\" model)"
-#~ msgstr "Turks (moderne \"Q\" model)"
-
-#~ msgid "Ukrainian"
-#~ msgstr "Ukranies"
-
-#~ msgid "Uzbek (cyrillic)"
-#~ msgstr "Uzbek (Kirillies)"
-
-#~ msgid "Vietnamese \"numeric row\" QWERTY"
-#~ msgstr "Viëtnamees \"nommerry\" QWERTY"
-
-#~ msgid "Yugoslavian (latin)"
-#~ msgstr "Jugoslaavs (latynse uitleg)"
-
-#~ msgid "No devices found"
-#~ msgstr "Geen toestelle gevind nie"
-
-#~ msgid ""
-#~ "You do not have any configured Internet connection.\n"
-#~ "Please run \"Internet access\" in control center."
-#~ msgstr ""
-#~ "U het nie 'n Internetkonneksie nie.\n"
-#~ "Loods asseblief \"Internet access\" in die \"control center\"."
-
-#~ msgid "Enable multiple profiles"
-#~ msgstr "Gebruik multiprofiele"
-
-#~ msgid ""
-#~ "You now have the opportunity to download updated packages. These "
-#~ "packages\n"
-#~ "have been updated after the distribution was released. They may\n"
-#~ "contain security or bug fixes.\n"
-#~ "\n"
-#~ "To download these packages, you will need to have a working Internet \n"
-#~ "connection.\n"
-#~ "\n"
-#~ "Do you want to install the updates ?"
-#~ msgstr ""
-#~ "U het nou 'n geleentheid om opgedateerde pakkette af te laai.Hierdie "
-#~ "pakkette is opgedateer na die distribusie vrygestel is.\n"
-#~ "Hulle mag moontlike sekuriteits-probleme en goggas regstel.\n"
-#~ "\n"
-#~ "Sou u hulle wil aflaai, benodig u 'n werkende Internetkonneksie.\n"
-#~ "\n"
-#~ "Wil u dit nou installeer?"
-
-#~ msgid "Installing bootloader"
-#~ msgstr "Herlaaistelsel-installasie"
-
-#~ msgid ""
-#~ "You may now provide options to module %s.\n"
-#~ "Options are in format ``name=value name2=value2...''.\n"
-#~ "For instance, ``io=0x300 irq=7''"
-#~ msgstr ""
-#~ "U kan nou die opsies voorsien vir module %s.\n"
-#~ "Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
-#~ "Bv. ``io=0x300 irq-7''"
-
-#~ msgid ""
-#~ "iwspy is used to set a list of addresses in a wireless network\n"
-#~ "interface and to read back quality of link information for each of "
-#~ "those.\n"
-#~ "\n"
-#~ "This information is the same as the one available in /proc/net/wireless:\n"
-#~ "quality of the link, signal strength and noise level.\n"
-#~ "\n"
-#~ "See iwpspy(8) man page for further information."
-#~ msgstr ""
-#~ "iwspy word gebruik om 'n lys op te stel van adresse in 'n draadlose\n"
-#~ "netwerk asook om die gehalte van elke koppeling van elk te lees.\n"
-#~ "\n"
-#~ "Hierdie inligting kan ook bekom word in /proc/net/wireless :\n"
-#~ "gehalte van die koppeling, seinsterkte, en geraasvlakke.\n"
-#~ "\n"
-#~ "Raadpleeg die iwpspy(8) vir verdere inligting."
-
-#~ msgid "Configuring printer..."
-#~ msgstr "Konfigureer drukker ..."
-
-#~ msgid "Configuring applications..."
-#~ msgstr "Konfigureer applikasies...."
-
-#~ msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-#~ msgstr "Voeg hierdie drukker by Star Office/OpenOffice.org/GIMP"
-
-#~ msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-#~ msgstr ""
-#~ "Verwyder hierdie drukker uit die Star Office/OpenOffice.org/GIMP programme"
-
-#~ msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-#~ msgstr "Voeg drukker by Star Office/OpenOffice.org/GIMP"
-
-#~ msgid ""
-#~ "The printer \"%s\" was successfully added to Star Office/OpenOffice.org/"
-#~ "GIMP."
-#~ msgstr ""
-#~ "Drukker \"%s\" is korrek bygevoeg by Star Office/OpenOffice.org/GIMP."
-
-#~ msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-#~ msgstr "Kon nie drukker \"%s\" by Star Office/OpenOffice.org/GIMP voeg nie."
-
-#~ msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-#~ msgstr "Verwyder drukker uit Star Office/OpenOffice.org/GIMP"
-
-#~ msgid ""
-#~ "The printer \"%s\" was successfully removed from Star Office/OpenOffice."
-#~ "org/GIMP."
-#~ msgstr ""
-#~ "Die drukker \"%s\" is suksesvol uit Star Office/OpenOffice.org/GIMP "
-#~ "verwyder"
-
-#~ msgid ""
-#~ "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
-#~ msgstr ""
-#~ "Probleme om drukker \"%s\" uit Star Office/OpenOffice.org/GIMP te verwyder"
-
-#~ msgid "<b>Congratulations for choosing Mandriva Linux!</b>"
-#~ msgstr "<b>Veels Geluk met u puik keuse van Mandriva Linux! ;-)</b>"
-
-#~ msgid ""
-#~ "We would like to thank everyone who participated in the development of "
-#~ "this latest release."
-#~ msgstr ""
-#~ "Ons wil graag almal bedank (in besonder die Suid-Afrikaners) wat so hard "
-#~ "gewerk het om hierdie vrystelling moontlik te maak."
-
-#~ msgid "<b>Discovery</b>"
-#~ msgstr "<b>Discovery</b>"
-
-#~ msgid ""
-#~ "The menu is task-oriented, with a single selected application per task."
-#~ msgstr "Die kiesklys is opdrag-georïenteerd met 'n enlkele program per taak"
-
-#~ msgid ""
-#~ "The powerful Open Source graphical desktop environment KDE is the desktop "
-#~ "of choice for the Discovery Pack."
-#~ msgstr ""
-#~ "Die kragtige Oopbron grafiese werksomgewing van KDE is die primere keuse "
-#~ "vir die Discovery-pak."
-
-#~ msgid "<b>OpenOffice.org</b>: The complete Linux office suite."
-#~ msgstr "<b>OpenOffice.org</b>: Alles en nog meer."
-
-#~ msgid ""
-#~ "<b>WRITER</b> is a powerful word processor for creating all types of text "
-#~ "documents. Documents may include images, diagrams and tables."
-#~ msgstr ""
-#~ "<b>WRITER</b> is 'n kragtige woordverwerker waarmee u allerlei tipes teks "
-#~ "dokumente kan skep. Dokumente kan foto's, diagramme en tabelle bevat."
-
-#~ msgid ""
-#~ "<b>CALC</b> is a feature-packed spreadsheet which enables you to compute, "
-#~ "analyze and manage all of your data."
-#~ msgstr ""
-#~ "<b>CALC</b>is 'n spreiblad wat gepak is met al die nodige krag om al u "
-#~ "data te bestuur en te analiseer."
-
-#~ msgid ""
-#~ "<b>IMPRESS</b> is the fastest, most powerful way to create effective "
-#~ "multimedia presentations."
-#~ msgstr ""
-#~ "<b>IMPRESS</b> is die vinnigste, en kragtigste manier om multimedia "
-#~ "voorleggings te skep, daardie wat u kolegas sal jaloers maak."
-
-#~ msgid ""
-#~ "<b>DRAW</b> will produce everything from simple diagrams to dynamic 3D "
-#~ "illustrations."
-#~ msgstr ""
-#~ "<b>DRAW</b> Hiermee kan u eenvoudige diagramme optrek, maar is ook geskik "
-#~ "vir 3D sketse."
-
-#~ msgid "<b>Surf The Internet</b>"
-#~ msgstr "<b>Rits op die Internet</b>"
-
-#~ msgid "Discover the new integrated personal information suite KDE Kontact."
-#~ msgstr ""
-#~ "Ontdek die nuwe geintegreerde persoonlike inligting suite - KDE Kontact"
-
-#~ msgid ""
-#~ "More than just a full-featured email client, <b>Kontact</b> also includes "
-#~ "an address book, a calendar and scheduling program, plus a tool for "
-#~ "taking notes!"
-#~ msgstr ""
-#~ "En u het net 'n e-pos program verwag, nee, nee! <b>Kontact</b> sluit ook "
-#~ "'n adresboek, kalender en dagboek program in, o, en moet nie vergeet van "
-#~ "die notaboekkie nie!"
-
-#~ msgid "You can also:"
-#~ msgstr "U kan ook:"
-
-#~ msgid "\t* browse the Web"
-#~ msgstr "\t - rits op die Internet"
-
-#~ msgid "\t* chat"
-#~ msgstr "\t* Klets"
-
-#~ msgid "\t* organize a video-conference"
-#~ msgstr "\t Video konferensies reel"
-
-#~ msgid "\t* create your own Web site"
-#~ msgstr "\t-U eie webwef skep"
-
-#~ msgid "<b>Multimedia</b>: Software for every need!"
-#~ msgstr "<b>Multimedia</b>: Sagtware vir elke behoefde!"
-
-#~ msgid "Listen to audio CDs with <b>KsCD</b>."
-#~ msgstr "Luister na musiek CDs deur <b>KsCD</b>."
-
-#~ msgid "Listen to music files and watch videos with <b>Totem</b>."
-#~ msgstr "Luister na musieklêers en kyk na videos deur<b>Totem</b>."
-
-#~ msgid ""
-#~ "View and edit images and photos with <b>GQview</b> and <b>The Gimp!</b>"
-#~ msgstr ""
-#~ "Bekyk en redigeer foto's en grafika deur <b>GQview</b>en<b>The Gimp!</b>"
-
-#~ msgid "Become a <b>Mandriva Club</b> member!"
-#~ msgstr "Sluit aan by die <b><Mandriva Club!</b>"
-
-#~ msgid "\t* Full access to commercial applications"
-#~ msgstr "\t* Volle toegang na komersiele sagteware"
-
-#~ msgid ""
-#~ "\t* Special download mirror list exclusively for Mandriva Club Members"
-#~ msgstr ""
-#~ "\t* Spesiale spieel bedieners wat uitsluitlik vir \"Mandriva Club\" se "
-#~ "lede is"
-
-#~ msgid "\t* Voting for software to put in Mandriva Linux"
-#~ msgstr ""
-#~ "\t* Stemreg om te kan se watter sagteware u in Mandriva Linux wil sien"
-
-#~ msgid "\t* Plus much more"
-#~ msgstr "\t* Plus veel meer"
-
-#~ msgid "For more information, please visit <b>www.mandrakeclub.com</b>"
-#~ msgstr "Vir meer inligting, besoek gerus <b>www.mandrakeclub.com</b>"
-
-#~ msgid "Do you require assistance?"
-#~ msgstr "Verlang u bystand?"
-
-#~ msgid "<b>Mandriva Expert</b> is the primary source for technical support."
-#~ msgstr "<b>Mandriva Expert</b> is die hoofbron van tegniese bystand."
-
-#~ msgid ""
-#~ "If you have Linux questions, subscribe to Mandriva Expert at <b>www."
-#~ "mandrivaexpert.com</b>"
-#~ msgstr ""
-#~ "Sou u enige Linux tipe vrae het, sluit aan by Mandriva Expert <b>www. "
-#~ "mandrivaexpert.com</b>"
-
-#~ msgid ""
-#~ "If you would like to get involved, please subscribe to the \"Cooker\" "
-#~ "mailing list by visiting <b>mandrake-linux.com/cooker</b>"
-#~ msgstr ""
-#~ "Sou u graag betrokke wil raak, kan u gerus inteken by die \"Cooker\" "
-#~ "eposlys deur <b>mandrake-linux.com/cooker</b> te besoek"
-
-#~ msgid ""
-#~ "To learn more about our dynamic community, please visit <b>www.mandrake-"
-#~ "linux.com</b>!"
-#~ msgstr ""
-#~ "Om meer te wete te kom oor ons dinamiese gemeenskap, besoek <b>www."
-#~ "mandrake- linux.com</b>!"
-
-#~ msgid ""
-#~ "Mandriva Linux includes the famous graphical desktops KDE and GNOME, plus "
-#~ "the latest versions of the most popular Open Source applications."
-#~ msgstr ""
-#~ "Mandriva Linux sluit die bekende KDEen GNOME grafiese werkskerms, asook "
-#~ "die nuutste weergawes van die mees gewilde Oopbron programme in."
-
-#~ msgid ""
-#~ "Mandriva Linux is widely known as the most user-friendly and the easiest "
-#~ "to install and easy to use Linux distribution."
-#~ msgstr ""
-#~ "Mandriva Linux word deur meeste mense as die gebruikervriendelikste Linux "
-#~ "beskou. Dit is maklik om te installeer en maklik om te gebruik."
-
-#~ msgid ""
-#~ "\t* Find out Mandriva Linux on a bootable CD with <b>Mandrakemove</b>"
-#~ msgstr ""
-#~ "\t* Vind uit oor Mandriva Linux op 'n selflaai CD - <b>Mandrakemove</b>"
-
-#~ msgid ""
-#~ "\t* If you use Linux mostly for Office, Internet and Multimedia tasks, "
-#~ "<b>Discovery</b> perfectly meets your needs"
-#~ msgstr ""
-#~ "\t* Indien u Linux meesal in die Kantoor, vir Internet en Multimedia "
-#~ "gebruik, kan ons <b>Discovery</b> aanbeveel"
-
-#~ msgid ""
-#~ "\t* If you appreciate the largest selection of software including "
-#~ "powerful development tools, <b>PowerPack</b> is for you"
-#~ msgstr ""
-#~ "\t* Verkies u 'n hengske keuse van sagteware wat kragtige ontwikkelings "
-#~ "sagteware insluit, probeer dan gerus <b>PowerPack!</b>"
-
-#~ msgid ""
-#~ "\t* If you require a full-featured Linux solution customized for small to "
-#~ "medium-sized networks, choose <b>PowerPack+</b>"
-#~ msgstr ""
-#~ "\t Indien u al die fluitjies en klokkies verlang, veral vir klein to "
-#~ "medium grote netweke, kies dan <b>PowerPack+</b>"
-
-#~ msgid "Find out also our <b>Business Solutions</b>!"
-#~ msgstr "Vind gerus meer uit oor ons <b>Business Solutions</b>!"
-
-#~ msgid ""
-#~ "<b>Corporate Server</b>: the ideal solution for entreprises. It is a "
-#~ "complete \"all-in-one\" solution that includes everything needed to "
-#~ "rapidly deploy world-class Linux server applications."
-#~ msgstr ""
-#~ "<b>Corporate Server</b>: Die ideale oplossing vir groot firmas. 'n "
-#~ "Kompleet \"alles in een\" oplossing wat gebruik kan word om blitsig "
-#~ "verskeidenheid bedieners op te stel."
-
-#~ msgid ""
-#~ "<b>Multi Network Firewall</b>: based on Linux 2.4 \"kernel secure\" to "
-#~ "provide multi-VPN as well as multi-DMZ functionalities. It is the perfect "
-#~ "high performance security solution."
-#~ msgstr ""
-#~ "<b>Multi Network Firewall</b>: gebaseer op die Linux 2.4 \"kernel secure"
-#~ "\" om in multi-VPN asook multi-DMZ te voorsien. 'n Perfekte rateltaai "
-#~ "sekuriteits- oplossing."
-
-#~ msgid ""
-#~ "<b>MandrakeClustering</b>: the power and speed of a Linux cluster "
-#~ "combined with the stability and easy-of-use of the world-famous Mandriva "
-#~ "Linux distribution. A unique blend for incomparable HPC performance."
-#~ msgstr ""
-#~ "<b>MandrakeClustering</b>: die krag en spoed van 'n Linux-trosrekenaar "
-#~ "gekombineer met die stabiliteit en gebruikersvriendelikheid van Mandrake "
-#~ "Linux. Voorwaar 'n uitblinker in HPC werkverrigting"
-
-#~ msgid ""
-#~ "Find out also support incidents if you have any problems, from standard "
-#~ "to professional support, from 1 to 50 incidents, take the one which meets "
-#~ "perfectly your needs!"
-#~ msgstr ""
-#~ "Ons voorsien ook ondersteuning per probleem. u kan 'n aantal gevalle "
-#~ "aankoop waar ons dan 'n probleem per geval hanteer. daar is "
-#~ "verskeidenheid hoveelhede vir elke behoefde!"
-
-#~ msgid "<b>Become a Mandriva Club member!</b>"
-#~ msgstr "<b>Word 'n lid van die Mandriva Club!</b>"
-
-#~ msgid "<b>Do you require assistance?</b>"
-#~ msgstr "<b>Benodig u bystand?</b>"
-
-#~ msgid "This is the Mandriva Linux <b>Download version</b>."
-#~ msgstr "Hierdie is die Mandriva Linux <b>Download weergawe</b>."
-
-#~ msgid ""
-#~ "The free download version does not include commercial software, and "
-#~ "therefore may not work with certain modems (such as some ADSL and RTC) "
-#~ "and video cards (such as ATI® and NVIDIA®)."
-#~ msgstr ""
-#~ "Die Weergawe wat u kan aflaai sluit nie komersiele sagteware in nie. Om "
-#~ "hierdie rede sal sekere modems (sekere ADSL en RTC) asook sekere grafika-"
-#~ "kaarte (soos ATI® en NVIDIA®)nie ten volle werk nie."
-
-#~ msgid "<b>PowerPack+</b>"
-#~ msgstr "<b>PowerPack+</b>"
-
-#~ msgid ""
-#~ "PowerPack+ is a full-featured Linux solution for small to medium-sized "
-#~ "networks. PowerPack+ increases the value of the standard PowerPack by "
-#~ "adding a comprehensive selection of world-class server applications."
-#~ msgstr ""
-#~ "PowerPack+ is 'n volledige oplossing vir klein tot medium grootte "
-#~ "netwerke. PowerPack+ verhoog die waarde van die standaard PowerPack deur "
-#~ "'n volledige keuse wereldklas bediener aplikasies in te sluit."
-
-#~ msgid ""
-#~ "It is the only Mandriva Linux product that includes the groupware "
-#~ "solution."
-#~ msgstr ""
-#~ "Dit is die enigste Mandriva Linux produk wat die \"groupware\" oplossing "
-#~ "bevat."
-
-#~ msgid ""
-#~ "When you log into your Mandriva Linux system for the first time, you can "
-#~ "choose between several popular graphical desktops environments, "
-#~ "including: KDE, GNOME, WindowMaker, IceWM, and others."
-#~ msgstr ""
-#~ "Sodra u die eerste keer inteken op u Mandriva Linux rekenaar, het u 'n "
-#~ "keuse watter grafiese werksomgewing om te gebruik. Keuses sluit KDE, "
-#~ "GNOME, WindowMaker, IceWM, en ander in."
-
-#~ msgid ""
-#~ "In the Mandriva Linux menu you will find easy-to-use applications for all "
-#~ "of your tasks:"
-#~ msgstr ""
-#~ "Die kieslys in Mandriva Linux het gebruikersvriendelike programme vir "
-#~ "alle behoefdes:"
-
-#~ msgid ""
-#~ "\t* Listen to audio CDs and music files with <b>KsCD</b> and <b>Totem</b>"
-#~ msgstr ""
-#~ "\t* Luister na musiek CDs asook Musiek-lêers met <b>KsCD</b> en <b>Totem</"
-#~ "b>"
-
-#~ msgid ""
-#~ "PowerPack+ includes everything needed for developing and creating your "
-#~ "own software, including:"
-#~ msgstr ""
-#~ "PowerPack+ sluit alles in om u eie sagteware te kan skep en te onwikkel:"
-
-#~ msgid ""
-#~ "\t* <b>Kdevelop</b>: a full featured, easy to use Integrated Development "
-#~ "Environment for C++ programming"
-#~ msgstr ""
-#~ "\t* <b>Kdevelop</b>: 'n volledige, maklik om te gebruik IDE om C++ "
-#~ "programme te skep."
-
-#~ msgid "\t* <b>GCC</b>: the GNU Compiler Collection"
-#~ msgstr "\t* <b>GCC</b>: Die \"GNU Compiler Collection\""
-
-#~ msgid "\t* <b>GDB</b>: the GNU Project debugger"
-#~ msgstr "\t* <b>GDB</b>: Die \"GNU Project debugger\""
-
-#~ msgid "<b>Discover the full-featured groupware solution!</b>"
-#~ msgstr "<b>Ontdek die volledig toegeruste \"groupware\" oplossing!</b>"
-
-#~ msgid "It includes both server and client features for:"
-#~ msgstr "Dit sluit beide kliënt en bediener vir die volgende in:"
-
-#~ msgid ""
-#~ "\t* Calendar, Task List, Memos, Contacts, Meeting Request (sending and "
-#~ "receiving), Task Requests (sending and receiving)"
-#~ msgstr ""
-#~ "\t* Kalender, Opdraglyste, Memos, Kontakte, Vergaderingsversoeke (stuur "
-#~ "en ontvang), Opdradg versoeke (stuur en ontvang)"
-
-#~ msgid "\t* Address Book (server and client)"
-#~ msgstr "\t* Adresboek (kliënt en bediener)"
-
-#~ msgid ""
-#~ "Your new Mandriva Linux distribution is the result of collaborative "
-#~ "efforts between Mandriva developers and Mandriva Linux contributors "
-#~ "throughout the world."
-#~ msgstr ""
-#~ "U nuwe Mandriva Linux bedryfstelsel met al sy programme is die resultaat "
-#~ "van 'n wereldwye gemeenskap, wat Mandriva se ontwikkelaars, asook mense "
-#~ "in Sonnige Suid-Afrika insluit!"
-
-#~ msgid ""
-#~ "We would like to thank everyone who participated in the development of "
-#~ "our latest release."
-#~ msgstr ""
-#~ "Ons wil graag almal bedank (in besonder die Suid-Afrikaners) wat so hard "
-#~ "gewerk het om hierdie vrystelling moontlik te maak."
-
-#~ msgid "<b>PowerPack</b>"
-#~ msgstr "<b>PowerPack</b>"
-
-#~ msgid ""
-#~ "PowerPack includes everything needed for developing and creating your own "
-#~ "software, including:"
-#~ msgstr ""
-#~ "PowerPack+ sluit alles in om u eie sagteware te kan skep en te onwikkel:"
-
-#~ msgid "And of course the editors!"
-#~ msgstr "En natuurlik die redigeerders!"
-
-#~ msgid "Installation of %s failed. The following error occurred:"
-#~ msgstr "%s installasie het gefaal a.g.v. hierdie fout: "
-
-#~ msgid ""
-#~ "We need to install ntp package\n"
-#~ " to enable Network Time Protocol\n"
-#~ "\n"
-#~ "Do you want to install ntp ?"
-#~ msgstr ""
-#~ "Ons moet die ntp-pakket installeer\n"
-#~ "om die NTP protokol te aktiveer\n"
-#~ "\n"
-#~ "Wil u ntp installeer?"
-
-#~ msgid ""
-#~ "The setup of a VPN connection has already been done.\n"
-#~ "\n"
-#~ "It's currently enabled.\n"
-#~ "\n"
-#~ "What would you like to do ?"
-#~ msgstr ""
-#~ "Die opstelling van die VPN-konneksie is alreeds gedoen.\n"
-#~ "\n"
-#~ "Dis tans aktief.\n"
-#~ "\n"
-#~ "Wat wil u doen?"
-
-#~ msgid ""
-#~ "The setup of a VPN connection has already been done.\n"
-#~ "\n"
-#~ "It's currently disabled.\n"
-#~ "\n"
-#~ "What would you like to do ?"
-#~ msgstr ""
-#~ "Die opstelling van die VPN-konnkesiedeling is alreeds gedoen.\n"
-#~ "\n"
-#~ "Dis tans gedeaktiveer.\n"
-#~ "\n"
-#~ "Wat wil u doen?"
-
-#~ msgid "Set of tools to read and send mail and news and to browse the Web"
-#~ msgstr ""
-#~ "Programme vir die lees en stuur van e-pos, netnuus en op die Web te rits."
-
-#~ msgid ""
-#~ "Before continuing, you should carefully read the terms of the license. "
-#~ "It\n"
-#~ "covers the entire Mandriva Linux distribution. If you do agree with all "
-#~ "the\n"
-#~ "terms in it, check the \"%s\" box. If not, clicking on the \"%s\" button\n"
-#~ "will reboot your computer."
-#~ msgstr ""
-#~ "Voordat u voortgaan, lees asb die lisensieterme noukeurig deur. Dit dek\n"
-#~ "die hele Mandriva Linux distribusie. Indien u saamstem met al die\n"
-#~ "voorwaardes daarin, merk die \"%s\" boksie. Indien nie, kan u op die\n"
-#~ "\"%s\" knoppie druk om teherlaai."
-
-#~ msgid ""
-#~ "GNU/Linux is a multi-user system, meaning each user may have their own\n"
-#~ "preferences, their own files and so on. You can read the ``Starter "
-#~ "Guide''\n"
-#~ "to learn more about multi-user systems. But unlike \"root\", who is the\n"
-#~ "system administrator, the users you add at this point will not be\n"
-#~ "authorized to change anything except their own files and their own\n"
-#~ "configurations, protecting the system from unintentional or malicious\n"
-#~ "changes that impact on the system as a whole. You will have to create at\n"
-#~ "least one regular user for yourself -- this is the account which you "
-#~ "should\n"
-#~ "use for routine, day-to-day use. Although it is very easy to log in as\n"
-#~ "\"root\" to do anything and everything, it may also be very dangerous! A\n"
-#~ "very simple mistake could mean that your system will not work any more. "
-#~ "If\n"
-#~ "you make a serious mistake as a regular user, the worst that will happen "
-#~ "is\n"
-#~ "that you will lose some information, but not affect the entire system.\n"
-#~ "\n"
-#~ "The first field asks you for a real name. Of course, this is not "
-#~ "mandatory\n"
-#~ "-- you can actually enter whatever you like. DrakX will use the first "
-#~ "word\n"
-#~ "you typed in this field and copy it to the \"%s\" field, which is the "
-#~ "name\n"
-#~ "this user will enter to log onto the system. If you like, you may "
-#~ "override\n"
-#~ "the default and change the user name. The next step is to enter a "
-#~ "password.\n"
-#~ "From a security point of view, a non-privileged (regular) user password "
-#~ "is\n"
-#~ "not as crucial as the \"root\" password, but that is no reason to "
-#~ "neglect\n"
-#~ "it by making it blank or too simple: after all, your files could be the\n"
-#~ "ones at risk.\n"
-#~ "\n"
-#~ "Once you click on \"%s\", you can add other users. Add a user for each "
-#~ "one\n"
-#~ "of your friends: your father or your sister, for example. Click \"%s\" "
-#~ "when\n"
-#~ "you have finished adding users.\n"
-#~ "\n"
-#~ "Clicking the \"%s\" button allows you to change the default \"shell\" "
-#~ "for\n"
-#~ "that user (bash by default).\n"
-#~ "\n"
-#~ "When you have finished adding users, you will be asked to choose a user "
-#~ "who\n"
-#~ "can automatically log into the system when the computer boots up. If you\n"
-#~ "are interested in that feature (and do not care much about local "
-#~ "security),\n"
-#~ "choose the desired user and window manager, then click \"%s\". If you "
-#~ "are\n"
-#~ "not interested in this feature, uncheck the \"%s\" box."
-#~ msgstr ""
-#~ "GNU/Linux is 'n multigebruikerstelsel, dit beteken dat elke gebruiker sy\n"
-#~ "eie voorkeure kan stel, met sy eie lêers ens. U kan meer hieroor in die\n"
-#~ "\"Starter Guide\" lees. Andersins as 'root' (die supergebruiker) kan\n"
-#~ "gebruikers wat u hier byvoeg niks behalwe hul eie lêers en eie\n"
-#~ "konfigurasie verander nie. U moet ten minste een gewone gebruiker vir "
-#~ "uself\n"
-#~ "skep.\n"
-#~ "Hierdie gebruker is die een waaronder u moet inteken vir normale gebruik\n"
-#~ "van die rekenaar. Alhoewel dit baie gemaklik is om as 'root' in te teken "
-#~ "vir\n"
-#~ "daaglikse werk, is dit baie gevaarlik. 'n Eenvoudige fout kan moontlik u\n"
-#~ "stelsel\n"
-#~ "breek. 'n Fout wat as gewone gebruiker gemaak word, sal net daardie\n"
-#~ "gebruiker\n"
-#~ "beïnvloed en nie hele stelsel nie.\n"
-#~ "\n"
-#~ "Eers moet u, u eie naam intik. Dit is nie verpligtend nie, want u kan\n"
-#~ "eintlik\n"
-#~ "enigiets intik, as u wil. DrakX sal dan die eerste woord wat u ingetik "
-#~ "het,\n"
-#~ "in die\n"
-#~ "\"%s\" veld plaas. U kan hier verander indien u wil. Dit is die\n"
-#~ "gebruikernaam waarmee\n"
-#~ "die gebruiker op die rekenaar sal aanteken. U moet dan ook 'n wagwoord\n"
-#~ "voorsien.\n"
-#~ "'n Gewone gebruiker se wagwoord is nie so krities soos dié van die\n"
-#~ "supergebruiker\n"
-#~ "(uit 'n sekuriteitsoogpunt) nie, maar daar is geen\n"
-#~ "rede om agterlosig met u data te wees nie.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u op \"%s\" kliek sal die gebruiker geskep word en kan u nog\n"
-#~ "gebruikers byvoeg.\n"
-#~ "U kan vir al u vriende gebruikername skep, sommer een vir pa en ma ook. \n"
-#~ "Sodra u klaar is, kliek op \"%s\".\n"
-#~ "Kliek op die \"%s\" knoppie indien u die verstek-instruksiedop vir die\n"
-#~ "gebruiker\n"
-#~ "wil verander.\n"
-#~ "Dit is bash by verstek.\n"
-#~ "\n"
-#~ "Sodra u klaar is met die skep van gebruikers, sal u gevra word om 'n\n"
-#~ "gebruiker\n"
-#~ "te kies wie outomaties sal inteken sodra Linux klaar selfgelaai het. "
-#~ "Indien\n"
-#~ "u hierdie funksie wil gebruik (en plaaslike sekuriteit tans nie vreeslik\n"
-#~ "belangrik is nie), kies asseblief die verlangde gebruiker en "
-#~ "venstermaker,\n"
-#~ "klik dan op \"%s\".\n"
-#~ "Indien u NIE hierdie funksie wil gebruik nie, sorg dat \"%s\" NIE gemerk "
-#~ "is\n"
-#~ "nie. "
-
-#~ msgid ""
-#~ "The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
-#~ "selected package is located on another CD-ROM, DrakX will eject the "
-#~ "current\n"
-#~ "CD and ask you to insert the correct CD as required."
-#~ msgstr ""
-#~ "Die Mandriva Linux installasie is versprei oor 'n aantal CD-ROMs.DrakX\n"
-#~ "weet wanneer 'n gekose pakket op 'n ander CD-ROM is. DrakX sal in so\n"
-#~ "geval die huidige CD uitskop en aandui watter een benodig word."
-
-#~ msgid ""
-#~ "It is now time to specify which programs you wish to install on your\n"
-#~ "system. There are thousands of packages available for Mandriva Linux, "
-#~ "and\n"
-#~ "to make it simpler to manage the packages have been placed into groups "
-#~ "of\n"
-#~ "similar applications.\n"
-#~ "\n"
-#~ "Packages are sorted into groups corresponding to a particular use of "
-#~ "your\n"
-#~ "machine. Mandriva Linux sorts packages groups in four categories. You "
-#~ "can\n"
-#~ "mix and match applications from the various categories, so a\n"
-#~ "``Workstation'' installation can still have applications from the\n"
-#~ "``Development'' category installed.\n"
-#~ "\n"
-#~ " * \"%s\": if you plan to use your machine as a workstation, select one "
-#~ "or\n"
-#~ "more of the groups that are in the workstation category.\n"
-#~ "\n"
-#~ " * \"%s\": if you plan on using your machine for programming, select the\n"
-#~ "appropriate groups from that category.\n"
-#~ "\n"
-#~ " * \"%s\": if your machine is intended to be a server, select which of "
-#~ "the\n"
-#~ "more common services you wish to install on your machine.\n"
-#~ "\n"
-#~ " * \"%s\": this is where you will choose your preferred graphical\n"
-#~ "environment. At least one must be selected if you want to have a "
-#~ "graphical\n"
-#~ "interface available.\n"
-#~ "\n"
-#~ "Moving the mouse cursor over a group name will display a short "
-#~ "explanatory\n"
-#~ "text about that group. If you unselect all groups when performing a "
-#~ "regular\n"
-#~ "installation (as opposed to an upgrade), a dialog will pop up proposing\n"
-#~ "different options for a minimal installation:\n"
-#~ "\n"
-#~ " * \"%s\": install the minimum number of packages possible to have a\n"
-#~ "working graphical desktop.\n"
-#~ "\n"
-#~ " * \"%s\": installs the base system plus basic utilities and their\n"
-#~ "documentation. This installation is suitable for setting up a server.\n"
-#~ "\n"
-#~ " * \"%s\": will install the absolute minimum number of packages "
-#~ "necessary\n"
-#~ "to get a working Linux system. With this installation you will only have "
-#~ "a\n"
-#~ "command line interface. The total size of this installation is about 65\n"
-#~ "megabytes.\n"
-#~ "\n"
-#~ "You can check the \"%s\" box, which is useful if you are familiar with "
-#~ "the\n"
-#~ "packages being offered or if you want to have total control over what "
-#~ "will\n"
-#~ "be installed.\n"
-#~ "\n"
-#~ "If you started the installation in \"%s\" mode, you can unselect all "
-#~ "groups\n"
-#~ "to avoid installing any new package. This is useful for repairing or\n"
-#~ "updating an existing system."
-#~ msgstr ""
-#~ "Nou moet u spesifiseer watter programme u op die rekenaar wil\n"
-#~ "installeer. Daar is duisende pakkette beskikbaar vir Mandriva Linux, en\n"
-#~ "om alles meer eenvoudig te maak, is die pakkette gegroepeer onder\n"
-#~ "groepe van selfde tipe programme.\n"
-#~ "\n"
-#~ "Die groepe is so saamgestel dat dit saamval met die tipe gebruik van u\n"
-#~ "rekenaar. Mandriva Linux het vier vooraf gespesifseerde installasies\n"
-#~ "beskikbaar. Dink aan hierdie tipes as houers met verskillende pakkette.\n"
-#~ "U kan wel uit die verskillende houers, verskillende pakkette kies.\n"
-#~ "Dus kan u \"Werkstasie\" ook programme uit die \"Ontwikkeling\"\n"
-#~ "bevat.\n"
-#~ "( Amper soos die \"pick 'n mix\" by 'n Clicks of 'n winkel van u "
-#~ "keuse! )\n"
-#~ "\n"
-#~ " * \"%s\": indien u die rekenaar as 'n werkstasie wil gebruik, kies een "
-#~ "of\n"
-#~ "meer hieruit.\n"
-#~ "\n"
-#~ " * \"%s\": indien u ontwikkelling op die masjien wil doen, kan u hier\n"
-#~ "kies en keur.\n"
-#~ "\n"
-#~ " * \"%s\": mense wat 'n bediener wil opstel, hier is vir julle keuses.\n"
-#~ "\n"
-#~ " * \"%s\": Grafiese-omgewings. Indien u 'n grafiese omgewing wil\n"
-#~ "gebruik, moet u ten minste een hier kies.\n"
-#~ "\n"
-#~ "Beweeg u muis stadig oor elke groep om meer inligting daaroor te bekom.\n"
-#~ "Indien u NIKS kies nie gedurende 'n normale installasie, sal 'n venster\n"
-#~ "opspring met verskillende keuses vir hierdie minimale installasie:\n"
-#~ "\n"
-#~ " * \"%s\": installeer die minimale programme vir 'n werkende grafiese\n"
-#~ "werksomgewing.\n"
-#~ "\n"
-#~ " * \"%s\": installeer 'n basiese stelsel met basiese nutsporgramme en "
-#~ "hul\n"
-#~ "dokumentasie. Dit is geskik om 'n bediener op te stel.\n"
-#~ "\n"
-#~ " * \"%s\": sal 'n absolute minimale installasie doen, sodat u bloot 'n\n"
-#~ "werkende Linux rekenaar het. Die grootte sal so 65 megagrepe wees.\n"
-#~ "\n"
-#~ "U kan die \"%s\" blokkie merk, dit is handig indien u vertroud is met al\n"
-#~ "die beskikbare pakette, en u meer beheer verlang.\n"
-#~ "\n"
-#~ "Indien u die installasie in \"%s\"-modus begin het, kan u NIKS kies nie\n"
-#~ "om te verhoed dat nuwe pakette installeer. Baie handig wanneer u 'n\n"
-#~ "bestaande stelsel opdateeer, of herstel."
-
-#~ msgid ""
-#~ "If you told the installer that you wanted to individually select "
-#~ "packages,\n"
-#~ "it will present a tree containing all packages classified by groups and\n"
-#~ "subgroups. While browsing the tree, you can select entire groups,\n"
-#~ "subgroups, or individual packages.\n"
-#~ "\n"
-#~ "Whenever you select a package on the tree, a description appears on the\n"
-#~ "right to let you know the purpose of the package.\n"
-#~ "\n"
-#~ "!! If a server package has been selected, either because you "
-#~ "specifically\n"
-#~ "chose the individual package or because it was part of a group of "
-#~ "packages,\n"
-#~ "you will be asked to confirm that you really want those servers to be\n"
-#~ "installed. By default Mandriva Linux will automatically start any "
-#~ "installed\n"
-#~ "services at boot time. Even if they are safe and have no known issues at\n"
-#~ "the time the distribution was shipped, it is entirely possible that that\n"
-#~ "security holes were discovered after this version of Mandriva Linux was\n"
-#~ "finalized. If you do not know what a particular service is supposed to "
-#~ "do\n"
-#~ "or why it is being installed, then click \"%s\". Clicking \"%s\" will\n"
-#~ "install the listed services and they will be started automatically by\n"
-#~ "default during boot. !!\n"
-#~ "\n"
-#~ "The \"%s\" option is used to disable the warning dialog which appears\n"
-#~ "whenever the installer automatically selects a package to resolve a\n"
-#~ "dependency issue. Some packages have relationships between each them "
-#~ "such\n"
-#~ "that installation of one package requires that some other program is "
-#~ "also\n"
-#~ "required to be installed. The installer can determine which packages are\n"
-#~ "required to satisfy a dependency to successfully complete the "
-#~ "installation.\n"
-#~ "\n"
-#~ "The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-#~ "package list created during a previous installation. This is useful if "
-#~ "you\n"
-#~ "have a number of machines that you wish to configure identically. "
-#~ "Clicking\n"
-#~ "on this icon will ask you to insert a floppy disk previously created at "
-#~ "the\n"
-#~ "end of another installation. See the second tip of last step on how to\n"
-#~ "create such a floppy."
-#~ msgstr ""
-#~ "Inidein u gespesifiseer het dat u individuele pakkette wil kies,\n"
-#~ "sal daar 'n boom-struktuur aan u vertoon word met al die pakkette\n"
-#~ "wat opgedeel is in groepe en sub-groepe. Soos u die deur hulle rits\n"
-#~ "kan u hele groepe of sub-groepe kies, of self individuele pakkette.\n"
-#~ "\n"
-#~ "Sodra u 'n pakket kies, sal daar 'n beskrywing aan die regterkant "
-#~ "verskyn\n"
-#~ "wat aandui waarvoor die pakket gebruik word.\n"
-#~ "\n"
-#~ "Indien u 'n diensprogram kies, of dit nou deel is van 'n groepe pakkette "
-#~ "of\n"
-#~ "'n enkel een, sal u gevra word om die installasie daarvan te bevestig.\n"
-#~ "Mandriva Linux sal by verstek alle bediener-programme afskop nadat u die\n"
-#~ "rekenaar aangeskakel het. Hierdie bediener-programme is verpak sonder\n"
-#~ "enige probleme bekend. Dit kon intussen verander het, nadat sekuriteits-"
-#~ "gate\n"
-#~ "gevind is. Indien u nie weet wat 'n diens veronderstel is om te doen nie, "
-#~ "of\n"
-#~ "waarom dit geïnstalleer word nie, klik op \"%s\". Deur op \"%s\" te klik "
-#~ "sal\n"
-#~ "die bediener-program geïnstalleer word en afskop sodra die Linux laai!!\n"
-#~ "\n"
-#~ "Die \"%s\"-opsie VERSPER die waarskuwings-dialoog wat verskyn\n"
-#~ "sodra die installeerder ander pakkette moet kies a.g.v. afhanklikhede\n"
-#~ "Afhanklikhede werk as volg: Sommige pakkette moet ander programme\n"
-#~ "installeer om korrek te funksioneer, maar hierdie programme maak soms "
-#~ "deel\n"
-#~ "uit van 'n ander pakket, dus sal die installeer-program daardie pakkette\n"
-#~ "ook installeer.\n"
-#~ "\n"
-#~ "Die klein disket-ikoon aan die lys se onderkant laat u toe om 'n lys van\n"
-#~ "pakkette van 'n vorige installeasie te laai. Dit is handig indien u 'n\n"
-#~ "aantal masjiene identies wil konfigureer. As u hierop klik, sal u gevra\n"
-#~ "word om die disket te voorsien wat aan die einde van 'n vorige\n"
-#~ "installasie geskep is. Raadpleeg die tweede wenk van die laaste stap\n"
-#~ "oor hoe mens so disket skep."
-
-#~ msgid ""
-#~ "You will now set up your Internet/network connection. If you wish to\n"
-#~ "connect your computer to the Internet or to a local network, click \"%s"
-#~ "\".\n"
-#~ "Mandriva Linux will attempt to auto-detect network devices and modems. "
-#~ "If\n"
-#~ "this detection fails, uncheck the \"%s\" box. You may also choose not to\n"
-#~ "configure the network, or to do it later, in which case clicking the \"%s"
-#~ "\"\n"
-#~ "button will take you to the next step.\n"
-#~ "\n"
-#~ "When configuring your network, the available connections options are:\n"
-#~ "Normal modem connection, Winmodem connection, ISDN modem, ADSL "
-#~ "connection,\n"
-#~ "cable modem, and finally a simple LAN connection (Ethernet).\n"
-#~ "\n"
-#~ "We will not detail each configuration option - just make sure that you "
-#~ "have\n"
-#~ "all the parameters, such as IP address, default gateway, DNS servers, "
-#~ "etc.\n"
-#~ "from your Internet Service Provider or system administrator.\n"
-#~ "\n"
-#~ "About Winmodem Connection. Winmodems are special integrated low-end "
-#~ "modems\n"
-#~ "that require additional software to work compared to Normal modems. Some "
-#~ "of\n"
-#~ "those modems actually work under Mandriva Linux, some others do not. You\n"
-#~ "can consult the list of supported modems at LinModems.\n"
-#~ "\n"
-#~ "You can consult the ``Starter Guide'' chapter about Internet connections\n"
-#~ "for details about the configuration, or simply wait until your system is\n"
-#~ "installed and use the program described there to configure your "
-#~ "connection."
-#~ msgstr ""
-#~ "U kan nou die Internet/netwerk konneksie opstel. Indien u graag die "
-#~ "rekenaar\n"
-#~ "aan die Internet of plaaslike netwerk wil koppel, kies \"%s\".\n"
-#~ "Mandriva Linux sal poog om u netwerk toestelle en modems te outospeur.\n"
-#~ "Indien\n"
-#~ "dit onsuksesvol was, probeer waar \"%s\" nie gemerk is nie. U kan ook "
-#~ "kies\n"
-#~ "om nie \n"
-#~ "die netwerk op te stel nie, of dit selfs eers later te doen, kies dan \"%s"
-#~ "\"\n"
-#~ ", wat u na die volgende stap sal neem.\n"
-#~ "\n"
-#~ "Waneer u die netwerk opstel, is die volgende opsies tot u beskiking:\n"
-#~ "gewone modem, ISDN-modem, ADSL konneksie, kabel-modem, en ten laaste,\n"
-#~ "'n normale LAN konneksie (Ethernet).\n"
-#~ "\n"
-#~ "Ons gaan nie al die opsies bespreek nie - maak net seker dat u die "
-#~ "nodigste\n"
-#~ "inligting soos IP-adres, 'default gateway', DNS bedieners, ens.\n"
-#~ "verkry het van u ISP of administrateur.\n"
-#~ "U kan die \"Starter Guide\" se hoofstuk omtrent die Internet raadpleeg\n"
-#~ "vir besonderhede rakende die konfigurasie, of doodgewoon wag tot alles "
-#~ "klaar\n"
-#~ "geïnstalleer is en agterna die konneksie opstel."
-
-#~ msgid "Use auto detection"
-#~ msgstr "Gebruik outobespeuring"
-
-#~ msgid ""
-#~ "\"%s\": clicking on the \"%s\" button will open the printer "
-#~ "configuration\n"
-#~ "wizard. Consult the corresponding chapter of the ``Starter Guide'' for "
-#~ "more\n"
-#~ "information on how to setup a new printer. The interface presented there "
-#~ "is\n"
-#~ "similar to the one used during installation."
-#~ msgstr ""
-#~ "\"%s\": deur op die \"%s\" knoppie te klik, sal u toegang tot die "
-#~ "'printer\n"
-#~ "configuration wizard' kry. Gaan gerus die ooreenstemde hoofstuk in die\n"
-#~ "\"Starter Guide\" na vir meer inligting. Dit stem baie ooreen met die een."
-
-#~ msgid ""
-#~ "This dialog is used to choose which services you wish to start at boot\n"
-#~ "time.\n"
-#~ "\n"
-#~ "DrakX will list all the services available on the current installation.\n"
-#~ "Review each one carefully and uncheck those which are not needed at boot\n"
-#~ "time.\n"
-#~ "\n"
-#~ "A short explanatory text will be displayed about a service when it is\n"
-#~ "selected. However, if you are not sure whether a service is useful or "
-#~ "not,\n"
-#~ "it is safer to leave the default behavior.\n"
-#~ "\n"
-#~ "!! At this stage, be very careful if you intend to use your machine as a\n"
-#~ "server: you will probably not want to start any services that you do not\n"
-#~ "need. Please remember that several services can be dangerous if they are\n"
-#~ "enabled on a server. In general, select only the services you really "
-#~ "need.\n"
-#~ "!!"
-#~ msgstr ""
-#~ "U kan nou dienste kies wat by herlaaityd moet afskop.\n"
-#~ "\n"
-#~ "Wanneer u die muis oor 'n item beweeg, sal 'n klein ballon opspring\n"
-#~ "wat die rol van die diens verduidelik.\n"
-#~ "\n"
-#~ "Wees versigtig met hierdie stap. Indien u beplan om dié rekenaar as 'n\n"
-#~ "bediener te gebruik wil u nie dienste afskop wat u nie gaan gebruik nie."
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-#~ "local time according to the time zone you selected. If the clock on your\n"
-#~ "motherboard is set to local time, you may deactivate this by unselecting\n"
-#~ "\"%s\", which will let GNU/Linux know that the system clock and the\n"
-#~ "hardware clock are in the same time zone. This is useful when the "
-#~ "machine\n"
-#~ "also hosts another operating system like Windows.\n"
-#~ "\n"
-#~ "The \"%s\" option will automatically regulate the clock by connecting to "
-#~ "a\n"
-#~ "remote time server on the Internet. For this feature to work, you must "
-#~ "have\n"
-#~ "a working Internet connection. It is best to choose a time server "
-#~ "located\n"
-#~ "near you. This option actually installs a time server that can be used "
-#~ "by\n"
-#~ "other machines on your local network as well."
-#~ msgstr ""
-#~ "GNU/Linux gebruik die GMT (Greenwich Mean Time) as verwysing en verstel\n"
-#~ "dan die tyd volgens u tydsone. Dit beteken dat, in Suid-Afrika,\n"
-#~ "die tyd op die moederbord sowat twee ure \"uit\" sal wees,\n"
-#~ "indien u Johannesburg as tydsone kies. U kan GNU/Linux forseer om\n"
-#~ "die moederbord en plaaslike tyd dieselfde te hou deur NIE die \"%s\" te\n"
-#~ "merk NIE. Gebruik dit so wanneer die rekenaar\n"
-#~ "ander bedryfstelsels ook kan laai, byvoorbeeld Windows.\n"
-#~ "\n"
-#~ "Die \"%s\"-opsie sal outomaties die klok reguleer deur gebruik te maak "
-#~ "van\n"
-#~ "'n eksterne tyd-bediener op die Internet. U sal natuurlik 'n werkende\n"
-#~ "Internetkonneksie daarvoor benodig. Kies 'n bediener naby u. Hierdie "
-#~ "opsie\n"
-#~ "laat u toe om hierdie rekenaar self as 'n tyd-bediener te gebruik."
-
-#~ msgid ""
-#~ "Graphic Card\n"
-#~ "\n"
-#~ " The installer will normally automatically detect and configure the\n"
-#~ "graphic card installed on your machine. If it is not the case, you can\n"
-#~ "choose from this list the card you actually have installed.\n"
-#~ "\n"
-#~ " In the situation where different servers are available for your card,\n"
-#~ "with or without 3D acceleration, you are asked to choose the server that\n"
-#~ "best suits your needs."
-#~ msgstr ""
-#~ "Grafiesekaart\n"
-#~ "\n"
-#~ " Die installeer-program sal in meeste gevalle u grafiesekaart "
-#~ "outomaties\n"
-#~ "opspoor. Indien daar probleme is, kan u self van hierdie lys die kaart\n"
-#~ "kies.\n"
-#~ "\n"
-#~ " Dit mag gebeur dat daar verskillende tipe X-bedieners beskikbaar sal\n"
-#~ "wees vir u kaart, met of sonder 3D-versnelling, kies dan die een wat u\n"
-#~ "behoefdes die beste sal bevredig."
-
-#~ msgid ""
-#~ "X (for X Window System) is the heart of the GNU/Linux graphical "
-#~ "interface\n"
-#~ "on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-#~ "WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
-#~ "\n"
-#~ "You will be presented with a list of different parameters to change to "
-#~ "get\n"
-#~ "an optimal graphical display: Graphic Card\n"
-#~ "\n"
-#~ " The installer will normally automatically detect and configure the\n"
-#~ "graphic card installed on your machine. If it is not the case, you can\n"
-#~ "choose from this list the card you actually have installed.\n"
-#~ "\n"
-#~ " In the situation where different servers are available for your card,\n"
-#~ "with or without 3D acceleration, you are asked to choose the server that\n"
-#~ "best suits your needs.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Monitor\n"
-#~ "\n"
-#~ " The installer will normally automatically detect and configure the\n"
-#~ "monitor connected to your machine. If it is incorrect, you can choose "
-#~ "from\n"
-#~ "this list the monitor you actually have connected to your computer.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Resolution\n"
-#~ "\n"
-#~ " Here you can choose the resolutions and color depths available for "
-#~ "your\n"
-#~ "hardware. Choose the one that best suits your needs (you will be able to\n"
-#~ "change that after installation though). A sample of the chosen\n"
-#~ "configuration is shown in the monitor picture.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Test\n"
-#~ "\n"
-#~ " Depending on your hardware, this entry might not appear.\n"
-#~ "\n"
-#~ " the system will try to open a graphical screen at the desired\n"
-#~ "resolution. If you can see the message during the test and answer \"%s"
-#~ "\",\n"
-#~ "then DrakX will proceed to the next step. If you cannot see the message, "
-#~ "it\n"
-#~ "means that some part of the auto-detected configuration was incorrect "
-#~ "and\n"
-#~ "the test will automatically end after 12 seconds, bringing you back to "
-#~ "the\n"
-#~ "menu. Change settings until you get a correct graphical display.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Options\n"
-#~ "\n"
-#~ " Here you can choose whether you want to have your machine "
-#~ "automatically\n"
-#~ "switch to a graphical interface at boot. Obviously, you want to check\n"
-#~ "\"%s\" if your machine is to act as a server, or if you were not "
-#~ "successful\n"
-#~ "in getting the display configured."
-#~ msgstr ""
-#~ "X (staan vir X Window Stelsel -let geen 's') is die hart van die GNU/"
-#~ "Linux \n"
-#~ "se grafiese-koppelvlak. Bo-op X, laai grafiese omgewings. ( dit sluit\n"
-#~ "KDE, GNOME, AfterStep, WindowMaker ens. in)\n"
-#~ "\n"
-#~ "Hier is 'n lys van verstellings wat u kan verander om die beste "
-#~ "resultate\n"
-#~ "te verkry: Grafiesekaart\n"
-#~ "\n"
-#~ "Die program sal gewoonlik die regte grafiesekaart optel en opstel.\n"
-#~ "Indien nie, kan u self die regte een vanaf hierdie lys kies.\n"
-#~ "\n"
-#~ " Dit mag gebeur dat daar verskillende tipe X-bedieners beskikbaar sal\n"
-#~ "wees vir u kaart, met of sonder 3D-versnelling, kies dan die een wat u\n"
-#~ "behoefdes die beste sal bevredig.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Monitor\n"
-#~ "\n"
-#~ " Die program sal gewoonlik u monitor korrek kies.\n"
-#~ "Indien nie, kan u self die regte een vanaf hierdie lys kies.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Resolusie\n"
-#~ "\n"
-#~ " Hier kan u die resolusie en aantal kleure kies wat vir u hardeware\n"
-#~ "beskikbaar is. Kies die een wat u die beste sal pas.( let dat u wel\n"
-#~ "hierdie keuse weer kan verander na die installasie). 'n voorbeeld\n"
-#~ "van die gekose konfigurasie word vertoon op die skerm.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Toets\n"
-#~ "\n"
-#~ " Afhangende van u hardeware, sal die inskrywing moontlik weg wees.\n"
-#~ "\n"
-#~ " ons gaan 'n grafiese skerm probeer opstel met die verstellings\n"
-#~ "wat u gemaak het. Indien u die boodskap daarop kan sien en \"%s\"\n"
-#~ "antwoord, sal DrakX na die volgende stap gaan. Indien u nie die boodskap\n"
-#~ "kan sien nie, dui dit aan dat iets nie reg opgestel is nie. Die toets sal "
-#~ "dan\n"
-#~ "na 12 sekondes eindig, en terugval na die kieslys toe. Verander dan u\n"
-#~ "keuses vir nog 'n probeerslag.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Opsies\n"
-#~ "\n"
-#~ " Hier kan u spesifiseer indien u rekenaar die grafiese-koppelvlak moet\n"
-#~ "begin tydens selflaai. U kan \"%s\" merk indien u 'die rekenaar as "
-#~ "bediener\n"
-#~ "gaan gebruik, of indien u nie X met sukses kon opstel nie"
-
-#~ msgid ""
-#~ "Monitor\n"
-#~ "\n"
-#~ " The installer will normally automatically detect and configure the\n"
-#~ "monitor connected to your machine. If it is incorrect, you can choose "
-#~ "from\n"
-#~ "this list the monitor you actually have connected to your computer."
-#~ msgstr ""
-#~ "Monitor\n"
-#~ "\n"
-#~ " Die program sal gewoonlik u monitor korrek kies.\n"
-#~ "Indien nie, kan u self die regte een vanaf hierdie lys kies."
-
-#~ msgid ""
-#~ "Resolution\n"
-#~ "\n"
-#~ " Here you can choose the resolutions and color depths available for "
-#~ "your\n"
-#~ "hardware. Choose the one that best suits your needs (you will be able to\n"
-#~ "change that after installation though). A sample of the chosen\n"
-#~ "configuration is shown in the monitor picture."
-#~ msgstr ""
-#~ "Resolusie\n"
-#~ "\n"
-#~ " Hier kan u die resolusie en aantal kleure kies wat vir u hardeware\n"
-#~ "beskikbaar is. Kies die een wat u die beste sal pas.( let dat u wel "
-#~ "hierdie\n"
-#~ "keuse weer kan verander na die installasie). 'n voorbeeld van die gekose\n"
-#~ "konfigurasie word vertoon op die skerm."
-
-#~ msgid ""
-#~ "In the situation where different servers are available for your card, "
-#~ "with\n"
-#~ "or without 3D acceleration, you are asked to choose the server that best\n"
-#~ "suits your needs."
-#~ msgstr ""
-#~ "Indien daar verskillende tipe bedieners vir u kaart beskikbaar is, met "
-#~ "of\n"
-#~ "sonder 3D-versnelling, sal u gevra word om die een te kies wat u die "
-#~ "beste\n"
-#~ "sal pas."
-
-#~ msgid ""
-#~ "Options\n"
-#~ "\n"
-#~ " Here you can choose whether you want to have your machine "
-#~ "automatically\n"
-#~ "switch to a graphical interface at boot. Obviously, you want to check\n"
-#~ "\"%s\" if your machine is to act as a server, or if you were not "
-#~ "successful\n"
-#~ "in getting the display configured."
-#~ msgstr ""
-#~ "Opsies\n"
-#~ "\n"
-#~ " hier kan u kies of u die rekenaar wil laat eindig in 'n grafiese "
-#~ "koppelvlak\n"
-#~ "na dit aangeskakel is. U sal natuurlik \"%s\" kies indien die rekenaar "
-#~ "as\n"
-#~ "'n bediener gebruik gaan word, of u nie die skerm reg kon opstel nie."
-
-#~ msgid ""
-#~ "At this point, you need to decide where you want to install the Mandrake\n"
-#~ "Linux operating system on your hard drive. If your hard drive is empty "
-#~ "or\n"
-#~ "if an existing operating system is using all the available space you "
-#~ "will\n"
-#~ "have to partition the drive. Basically, partitioning a hard drive "
-#~ "consists\n"
-#~ "of logically dividing it to create the space needed to install your new\n"
-#~ "Mandriva Linux system.\n"
-#~ "\n"
-#~ "Because the process of partitioning a hard drive is usually irreversible\n"
-#~ "and can lead to lost data if there is an existing operating system "
-#~ "already\n"
-#~ "installed on the drive, partitioning can be intimidating and stressful "
-#~ "if\n"
-#~ "you are an inexperienced user. Fortunately, DrakX includes a wizard "
-#~ "which\n"
-#~ "simplifies this process. Before continuing with this step, read through "
-#~ "the\n"
-#~ "rest of this section and above all, take your time.\n"
-#~ "\n"
-#~ "Depending on your hard drive configuration, several options are "
-#~ "available:\n"
-#~ "\n"
-#~ " * \"%s\": this option will perform an automatic partitioning of your "
-#~ "blank\n"
-#~ "drive(s). If you use this option there will be no further prompts.\n"
-#~ "\n"
-#~ " * \"%s\": the wizard has detected one or more existing Linux partitions "
-#~ "on\n"
-#~ "your hard drive. If you want to use them, choose this option. You will "
-#~ "then\n"
-#~ "be asked to choose the mount points associated with each of the "
-#~ "partitions.\n"
-#~ "The legacy mount points are selected by default, and for the most part "
-#~ "it's\n"
-#~ "a good idea to keep them.\n"
-#~ "\n"
-#~ " * \"%s\": if Microsoft Windows is installed on your hard drive and "
-#~ "takes\n"
-#~ "all the space available on it, you will have to create free space for\n"
-#~ "GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-#~ "data (see ``Erase entire disk'' solution) or resize your Microsoft "
-#~ "Windows\n"
-#~ "FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-#~ "data, provided you have previously defragmented the Windows partition.\n"
-#~ "Backing up your data is strongly recommended.. Using this option is\n"
-#~ "recommended if you want to use both Mandriva Linux and Microsoft Windows "
-#~ "on\n"
-#~ "the same computer.\n"
-#~ "\n"
-#~ " Before choosing this option, please understand that after this\n"
-#~ "procedure, the size of your Microsoft Windows partition will be smaller\n"
-#~ "then when you started. You will have less free space under Microsoft\n"
-#~ "Windows to store your data or to install new software.\n"
-#~ "\n"
-#~ " * \"%s\": if you want to delete all data and all partitions present on\n"
-#~ "your hard drive and replace them with your new Mandriva Linux system,\n"
-#~ "choose this option. Be careful, because you will not be able to undo "
-#~ "your\n"
-#~ "choice after you confirm.\n"
-#~ "\n"
-#~ " !! If you choose this option, all data on your disk will be "
-#~ "deleted. !!\n"
-#~ "\n"
-#~ " * \"%s\": this will simply erase everything on the drive and begin "
-#~ "fresh,\n"
-#~ "partitioning everything from scratch. All data on your disk will be "
-#~ "lost.\n"
-#~ "\n"
-#~ " !! If you choose this option, all data on your disk will be lost. !!\n"
-#~ "\n"
-#~ " * \"%s\": choose this option if you want to manually partition your "
-#~ "hard\n"
-#~ "drive. Be careful -- it is a powerful but dangerous choice and you can "
-#~ "very\n"
-#~ "easily lose all your data. That's why this option is really only\n"
-#~ "recommended if you have done something like this before and have some\n"
-#~ "experience. For more instructions on how to use the DiskDrake utility,\n"
-#~ "refer to the ``Managing Your Partitions'' section in the ``Starter "
-#~ "Guide''."
-#~ msgstr ""
-#~ "Op hierdie tydstip moet u besluit waar op die hardeskyf u Mandriva Linux\n"
-#~ "wil installeer. Indien u 'n leë hardeskyf het, of indien 'n bestaande\n"
-#~ "bedryfstelsel al die beskikbare spasie gebruik, sal u partisies moet\n"
-#~ "skep. Om 'n partisie te skep veroorsaak dat u die hardeskyf logies\n"
-#~ "verdeel, om spasie te skep vir u nuwe Mandriva Linux bedryfstelsel.\n"
-#~ "\n"
-#~ "Indien u 'n onervare gebruiker is, kan die skep van partisies vreemd en\n"
-#~ "intimiderend wees.\n"
-#~ "Die skep van partisies is gewoonlik onomkeerbaar en kan dataverlies\n"
-#~ "meebring indien daar reeds 'n bestaande bedryfstelsel op die hardeskyf "
-#~ "is.\n"
-#~ "Gelukkig sluit DrakX 'n assisstent in wat die proses vergemaklik.\n"
-#~ "Voor u verder gaan, lees die volgende deel deeglik deur, en wees rustig!\n"
-#~ "(Moet nie stres kap nie! - Chill Dude!)\n"
-#~ "\n"
-#~ "Afhangende van hoe u hardeskyf gekonfigureer is, is daar 'n aantal "
-#~ "opsies\n"
-#~ "beskikbaar:\n"
-#~ "\n"
-#~ " * \"%s\": hierdie opsie sal die partisies op u leë hardeskyf outomaties\n"
-#~ "opstel.\n"
-#~ "Indien u die een kies, is dit al inset wat u hoef te lewer.\n"
-#~ "\n"
-#~ " * \"%s\": die assistent het een of meer bestaande Linux-partisies op "
-#~ "die\n"
-#~ "hardeskyf gekry. Indien u wil gebruik maak van hulle, kies hierdie "
-#~ "opsie.\n"
-#~ "Daar is verstek hegpunte, wat u kan verander, indien u wil, maar ons "
-#~ "stel\n"
-#~ "voor u hou daarby.\n"
-#~ "\n"
-#~ " * \" %s\": indien u Microsoft Windows op u hardeskyf geïnstalleer het, "
-#~ "en\n"
-#~ "dit neem al die spasie in beslag, moet ons eers 'n plekkie vir Linux "
-#~ "skep. U kan die Microsoft Windows partisie met al die data uitwis\n"
-#~ "(verwys na 'Erase entie disk' oplossing)\n"
-#~ "of u kan die Microsoft Windows FAT of NTFS partisie verklein. Dit kan "
-#~ "geskied\n"
-#~ "sonner verlies van data, mits u die partisie gedefragmenteer het.Ons "
-#~ "beveel ten sterkste aan dat u 'n rugsteun maak van u data. Hierdie is\n"
-#~ "die beste metode indien u beide Mandriva Linux en Microsoft Windows op "
-#~ "die\n"
-#~ "rekenaar wil gebruik.\n"
-#~ "\n"
-#~ "Neem tog kennis dat dit die beskikbare oop spasie in Microsoft Windows "
-#~ "sal\n"
-#~ "verminder, aangesien ons plek moet maak vir Linux op die hardeskyf.\n"
-#~ "\n"
-#~ " * \"%s\": Indien u alle data op alle partisies op u hardeskyf wil "
-#~ "uitwis,\n"
-#~ "en dit dan vervang met Mandriva Linux, kan u hierdie opsie kies.\n"
-#~ "Wees versigtig die opsie is onomkeerbaar!\n"
-#~ "\n"
-#~ " !! Net weer waarsku: alle data op die skyf sal vernietig word. !! \n"
-#~ " * \"%s\" hierdie opsie gaan doodeenvoudig alles uitwis en van vooraf\n"
-#~ "die hardeskyf partisies skep. Alle data sal verlore gaan.\n"
-#~ "\n"
-#~ " !! Net weer waarsku: alle data up die skyf sal vernietig word. !! \n"
-#~ " * \"%s\": kies hierdie opsie indien u self die partisies wil opstel. "
-#~ "Wees\n"
-#~ "uiters versigtig -- dit is 'n gevaarlike keuse en u kan maklik al u data "
-#~ "verloor. Hierdieopsie word aanbeveel vir persone wat ondervinding\n"
-#~ "het en vertroud is met Linux .\n"
-#~ "U kan verder oplees oor hoe om te werk te gaan in die \"Managing Your\n"
-#~ "Partitions deel van die \"Starter Guide\"."
-
-#~ msgid ""
-#~ "There you are. Installation is now complete and your GNU/Linux system is\n"
-#~ "ready to use. Just click \"%s\" to reboot the system. Do not forget to\n"
-#~ "remove the installation media (CD-ROM or floppy). The first thing you\n"
-#~ "should see after your computer has finished doing its hardware tests is "
-#~ "the\n"
-#~ "bootloader menu, giving you the choice of which operating system to "
-#~ "start.\n"
-#~ "\n"
-#~ "The \"%s\" button shows two more buttons to:\n"
-#~ "\n"
-#~ " * \"%s\": to create an installation floppy disk that will automatically\n"
-#~ "perform a whole installation without the help of an operator, similar to\n"
-#~ "the installation you just configured.\n"
-#~ "\n"
-#~ " Note that two different options are available after clicking the "
-#~ "button:\n"
-#~ "\n"
-#~ " * \"%s\". This is a partially automated installation. The "
-#~ "partitioning\n"
-#~ "step is the only interactive procedure.\n"
-#~ "\n"
-#~ " * \"%s\". Fully automated installation: the hard disk is completely\n"
-#~ "rewritten, all data is lost.\n"
-#~ "\n"
-#~ " This feature is very handy when installing a number of similar "
-#~ "machines.\n"
-#~ "See the Auto install section on our web site for more information.\n"
-#~ "\n"
-#~ " * \"%s\": saves a list of the packages selected in this installation. "
-#~ "To\n"
-#~ "use this selection with another installation, insert the floppy and "
-#~ "start\n"
-#~ "the installation. At the prompt, press the [F1] key and type >>linux\n"
-#~ "defcfg=\"floppy\" <<."
-#~ msgstr ""
-#~ "Fluit-fluit my storie is uit! Die installasie het tot 'n einde gekom en "
-#~ "u\n"
-#~ "GNU/Linux reknaar is gereed vir gebruik. Klik bloot op \"%s\" om\n"
-#~ "te herlaai.Onthou tog om die installasie-media (CDROM of Disket)\n"
-#~ "te verwyder. Die eerste skerm wat u sal sien, na die rekenaar sy\n"
-#~ "hardeware-toetse uitgevoer het, is die herlaaistelsel se kieslys.\n"
-#~ "Daar kan u die bedryfstelsel kies wat moet laai.\n"
-#~ "\n"
-#~ "Die \"%s\" knoppie sal nog twee knoppies laat verskyn:\n"
-#~ "\n"
-#~ " * \"%s\": om 'n installasie-disket te skep wat die hele installasie\n"
-#~ "aotomaties sal doen, sonner die hulp van 'n persoon.\n"
-#~ "Dit sal soortgelyk aan hierdie een wees.\n"
-#~ "\n"
-#~ " Let daarop dat twee verskillende opsies daarna beskikbaar sal wees:\n"
-#~ "\n"
-#~ " * \"%s\" Gedeeltelik outomaties. Die skep van partisies benodig 'n\n"
-#~ "persoon om te spesifiseer.\n"
-#~ "\n"
-#~ " * \"%s\" Volkome outomaties. Die hardeskyf word totaal gewis, alle\n"
-#~ "data word verloor.\n"
-#~ "\n"
-#~ " Hierdie is handig wanneer u 'n paar van dieselfde masjiene moet\n"
-#~ "installeer.\n"
-#~ "Besoek gerus ons webwerf vir meer inligting hieroor.\n"
-#~ "\n"
-#~ " * \"%s\": stoor 'n lys van die gekose pakette in hierdie installasie.\n"
-#~ "Om hierdie keuses met 'n volgende installasie te gebruik, plaas disket\n"
-#~ "in aandrywer en begin die installasie. Kies [F1] en tik '>> linux\n"
-#~ "defcfg=\"floppy\" <<' in."
-
-#~ msgid ""
-#~ "Any partitions that have been newly defined must be formatted for use\n"
-#~ "(formatting means creating a file system).\n"
-#~ "\n"
-#~ "At this time, you may wish to reformat some already existing partitions "
-#~ "to\n"
-#~ "erase any data they contain. If you wish to do that, please select those\n"
-#~ "partitions as well.\n"
-#~ "\n"
-#~ "Please note that it is not necessary to reformat all pre-existing\n"
-#~ "partitions. You must reformat the partitions containing the operating\n"
-#~ "system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-#~ "reformat partitions containing data that you wish to keep (typically\n"
-#~ "\"/home\").\n"
-#~ "\n"
-#~ "Please be careful when selecting partitions. After formatting, all data "
-#~ "on\n"
-#~ "the selected partitions will be deleted and you will not be able to "
-#~ "recover\n"
-#~ "it.\n"
-#~ "\n"
-#~ "Click on \"%s\" when you are ready to format the partitions.\n"
-#~ "\n"
-#~ "Click on \"%s\" if you want to choose another partition for your new\n"
-#~ "Mandriva Linux operating system installation.\n"
-#~ "\n"
-#~ "Click on \"%s\" if you wish to select partitions that will be checked "
-#~ "for\n"
-#~ "bad blocks on the disk."
-#~ msgstr ""
-#~ "Enige nuwe partisies moet eers geformatteer word voor dit bruikbaar is.\n"
-#~ "(formatteer beteken dan ons 'n lêerstelsel daarop skep).\n"
-#~ "\n"
-#~ "U kan ook nou kies om bestaande partisies te formatteer om so al die\n"
-#~ "data daarop uit te vee. Kies asseblief dan nou daardie partisies ook.\n"
-#~ "\n"
-#~ "Let tog daarop dat die NIE nodig is om al die vooraf-bestaande partisies\n"
-#~ "weer te formatteer NIE. U moet wel partisies wat die bedryfstelsel bevat\n"
-#~ "formatteer. ( byvoorbeeld \"/\",\"/usr\" of \"/var\") maar partisies met\n"
-#~ "data wat u graag wil hou ( bv \"/home\") moet nie geformatteer word\n"
-#~ "nie.\n"
-#~ "\n"
-#~ "Wees daarom versigtig wanneer u die partisies kies. Na dit geformatteer\n"
-#~ "is, sal ALLE data daarop vernietig wees.\n"
-#~ "\n"
-#~ "Klik op \"%s\" sodra u gereed is om te formatteer.\n"
-#~ "\n"
-#~ "Klik op \"%s\" indien u 'n ander partisie vir die installasie van u nuwe\n"
-#~ "Madrake Linux bedryfstelsel wil kies\n"
-#~ "\n"
-#~ "Klik op \"%s\" indien u partisies wil kies wat dan ondersoek en\n"
-#~ "getoets moet word."
-
-#~ msgid ""
-#~ "At the time you are installing Mandriva Linux, it is likely that some\n"
-#~ "packages will have been updated since the initial release. Bugs may have\n"
-#~ "been fixed, security issues resolved. To allow you to benefit from these\n"
-#~ "updates, you are now able to download them from the Internet. Check \"%s"
-#~ "\"\n"
-#~ "if you have a working Internet connection, or \"%s\" if you prefer to\n"
-#~ "install updated packages later.\n"
-#~ "\n"
-#~ "Choosing \"%s\" will display a list of places from which updates can be\n"
-#~ "retrieved. You should choose one near to you. A package-selection tree "
-#~ "will\n"
-#~ "appear: review the selection, and press \"%s\" to retrieve and install "
-#~ "the\n"
-#~ "selected package(s), or \"%s\" to abort."
-#~ msgstr ""
-#~ "Teen die tyd wat u Mandriva Linux installeer, is dit hoogs waarskynlik\n"
-#~ "dat van die pakkette intussen opgedateer is. Foute kom reggestel wees,\n"
-#~ "of sekuriteits probleme is dalk opgelos. Om voordeel hieruit te put, kan\n"
-#~ "u hulle nou van die Internet aflaai. Merk \"%s\" indien u 'n werkende\n"
-#~ "Internetkonneksie het, of \"%s\" sou u dit eers later wil doen\n"
-#~ "\n"
-#~ "Deur \"%s\" te kies, kan u 'n lys plekke sien waarvanaf hierdie\n"
-#~ " pakkette gelaai kan word. Kies 'n geskikte een. 'n Boom-struktuur\n"
-#~ " met die nuwwe pakkette in sal verskyn. As u gelukkig is met almal,kan u\n"
-#~ " \"%s\" klik om hulle af te laai en te installeer, of \"%s\" om te "
-#~ "ontsnap."
-
-#~ msgid ""
-#~ "At this point, DrakX will allow you to choose the security level desired\n"
-#~ "for the machine. As a rule of thumb, the security level should be set\n"
-#~ "higher if the machine will contain crucial data, or if it will be a "
-#~ "machine\n"
-#~ "directly exposed to the Internet. The trade-off of a higher security "
-#~ "level\n"
-#~ "is generally obtained at the expense of ease of use.\n"
-#~ "\n"
-#~ "If you do not know what to choose, stay with the default option. You "
-#~ "will\n"
-#~ "be able to change that security level later with tool draksec from the\n"
-#~ "Mandrake Control Center.\n"
-#~ "\n"
-#~ "The \"%s\" field can inform the system of the user on this computer who\n"
-#~ "will be responsible for security. Security messages will be sent to that\n"
-#~ "address."
-#~ msgstr ""
-#~ "Op hierdie tydstip laat DrakX u toe om die sekuriteitsvlak vir die\n"
-#~ "rekenaar te kies. 'n Algemene reel is dat die sekuriteit hoër behoort\n"
-#~ "te wees indien die masjien belangrike inligting bevat, of direk aan\n"
-#~ "die Internet gekoppel is. Hierdie hoër sekuriteit kom met die koste dat\n"
-#~ "dit algemene gebruik op die rekenaar moeiliker maak.\n"
-#~ "\n"
-#~ "Indien u onseker is oor wat om te kies, bly by die verstek opsie. U\n"
-#~ "kan altyd later die vlak verander deur draksec in die Mandrake Control\n"
-#~ "Center te grbruik.\n"
-#~ "\n"
-#~ "Die \"%s\" veld kan boodskappe stuur na 'n gekose persoon wat\n"
-#~ "verantwoordelik is vir die sekuriteit. Hy/sy sal dan gereelde boodskappe\n"
-#~ "ontvang rakende die stand van die sekuriteit."
-
-#~ msgid ""
-#~ "\"%s\": check the current country selection. If you are not in this\n"
-#~ "country, click on the \"%s\" button and choose another one. If your "
-#~ "country\n"
-#~ "is not in the first list shown, click the \"%s\" button to get the "
-#~ "complete\n"
-#~ "country list."
-#~ msgstr ""
-#~ "\"%s\": ondersoek die huidige landskeuse. Indien u nie in daardie land\n"
-#~ "is nie, klik op die \"%s\"-knoppie en kies die regte een. Indien u land\n"
-#~ "nie in daardie lys teenwoordig is nie, kies die \"%s\"-knoppie vir 'n\n"
-#~ "volledige lys."
-
-#~ msgid ""
-#~ "This step is activated only if an existing GNU/Linux partition has been\n"
-#~ "found on your machine.\n"
-#~ "\n"
-#~ "DrakX now needs to know if you want to perform a new install or an "
-#~ "upgrade\n"
-#~ "of an existing Mandriva Linux system:\n"
-#~ "\n"
-#~ " * \"%s\": For the most part, this completely wipes out the old system. "
-#~ "If\n"
-#~ "you wish to change how your hard drives are partitioned, or change the "
-#~ "file\n"
-#~ "system, you should use this option. However, depending on your "
-#~ "partitioning\n"
-#~ "scheme, you can prevent some of your existing data from being over-"
-#~ "written.\n"
-#~ "\n"
-#~ " * \"%s\": this installation class allows you to update the packages\n"
-#~ "currently installed on your Mandriva Linux system. Your current\n"
-#~ "partitioning scheme and user data is not altered. Most of other\n"
-#~ "configuration steps remain available, similar to a standard "
-#~ "installation.\n"
-#~ "\n"
-#~ "Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
-#~ "running version \"8.1\" or later. Performing an Upgrade on versions "
-#~ "prior\n"
-#~ "to Mandriva Linux version \"8.1\" is not recommended."
-#~ msgstr ""
-#~ "Hierdie stap word slegs gedoen indien ou GNU/Linux partisies op die\n"
-#~ "rekenaar gevind is.\n"
-#~ "\n"
-#~ "DrakX moet nou weet of u 'n nuwe installasie of 'n opgradering van 'n\n"
-#~ "bestaande Mandriva Linux wil doen:\n"
-#~ "\n"
-#~ " * \"%s\": Hierdie deel word grootliks gebruik vir 'n hele nuwe "
-#~ "installasie.\n"
-#~ "Indien u aan die hardeskywe se partisies of die lêerstelsel wil "
-#~ "verander,\n"
-#~ "moet u hierdie opsie kies. Maar u kan ook hierdie een kies indien u "
-#~ "sekere\n"
-#~ "van u partisies se data wil behou.\n"
-#~ "\n"
-#~ " * \"%s\": hierdie tipe installasie laat u toe om pakkette op te dateer\n"
-#~ "wat deel uitmaak van u huidige Mandriva Linux installasie. Die partisies\n"
-#~ "en gebruiker se data bly onveranderd. Ander stappe is baie dieselfde as\n"
-#~ "'n normale installasie.\n"
-#~ "\n"
-#~ "Die gebruik van die 'Opdateer' opsie behoort reg te werk vir al die\n"
-#~ "weergawes vanaf \"8.1\" en opwaarts. Ons raai u af on dit op weergawes\n"
-#~ "ouer as \"8.1\" te probeer."
-
-#~ msgid ""
-#~ "Depending on the language you chose in section , DrakX will "
-#~ "automatically\n"
-#~ "select a particular type of keyboard configuration. Check that the\n"
-#~ "selection suits you or choose another keyboard layout.\n"
-#~ "\n"
-#~ "Also, you may not have a keyboard that corresponds exactly to your\n"
-#~ "language: for example, if you are an English-speaking Swiss native, you "
-#~ "may\n"
-#~ "have a Swiss keyboard. Or if you speak English and are located in "
-#~ "Quebec,\n"
-#~ "you may find yourself in the same situation where your native language "
-#~ "and\n"
-#~ "country-set keyboard do not match. In either case, this installation "
-#~ "step\n"
-#~ "will allow you to select an appropriate keyboard from a list.\n"
-#~ "\n"
-#~ "Click on the \"%s\" button to be presented with the complete list of\n"
-#~ "supported keyboards.\n"
-#~ "\n"
-#~ "If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-#~ "dialog will allow you to choose the key binding that will switch the\n"
-#~ "keyboard between the Latin and non-Latin layouts."
-#~ msgstr ""
-#~ "Afhangende van die verstek taal wat u kies, sal DrakX outomaties 'n\n"
-#~ "betrokke steutelbord-konfigurasie kies. U mag moontlik 'n sleutelbord\n"
-#~ "besit wat nie 100-persent ooreenstem met u taal nie: byvoorbeeld as u 'n\n"
-#~ "Ingelse Sweed is, sal u dalk 'n sweedse sleutelbord besit. Hier is nog\n"
-#~ "een: gestel jy is 'n Afrikaner wat werk in Quebec, u sal dalk met 'n "
-#~ "ander\n"
-#~ "tipe sleutelbord moet klaarkom as wat u gewoond is. Wel, hier kan u die\n"
-#~ "gepaste sleutelbord uit 'n lys kies.\n"
-#~ "\n"
-#~ "Klik op die \"%s\"-knoppie vir 'n lys van al die ondersteunde "
-#~ "sleutelborde\n"
-#~ "\n"
-#~ "Indien u 'n nie-Latynse sleutelbord kies, sal die volgende dialoog u\n"
-#~ "toelaat om sleutel-bindings tussen Latynse en nie-Latynse uitlegte\n"
-#~ "te kies."
-
-#~ msgid ""
-#~ "Your choice of preferred language will affect the language of the\n"
-#~ "documentation, the installer and the system in general. Select first the\n"
-#~ "region you are located in, and then the language you speak.\n"
-#~ "\n"
-#~ "Clicking on the \"%s\" button will allow you to select other languages "
-#~ "to\n"
-#~ "be installed on your workstation, thereby installing the language-"
-#~ "specific\n"
-#~ "files for system documentation and applications. For example, if you "
-#~ "will\n"
-#~ "host users from Spain on your machine, select English as the default\n"
-#~ "language in the tree view and \"%s\" in the Advanced section.\n"
-#~ "\n"
-#~ "About UTF-8 (unicode) support: Unicode is a new character encoding meant "
-#~ "to\n"
-#~ "cover all existing languages. Though full support for it in GNU/Linux is\n"
-#~ "still under development. For that reason, Mandriva Linux will be using "
-#~ "it\n"
-#~ "or not depending on the user choices:\n"
-#~ "\n"
-#~ " * If you choose a languages with a strong legacy encoding (latin1\n"
-#~ "languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, "
-#~ "most\n"
-#~ "iso-8859-2 languages), the legacy encoding will be used by default;\n"
-#~ "\n"
-#~ " * Other languages will use unicode by default;\n"
-#~ "\n"
-#~ " * If two or more languages are required, and those languages are not "
-#~ "using\n"
-#~ "the same encoding, then unicode will be used for the whole system;\n"
-#~ "\n"
-#~ " * Finally, unicode can also be forced for the system at user request by\n"
-#~ "selecting option \"%s\" independently of which language(s) have been\n"
-#~ "chosen.\n"
-#~ "\n"
-#~ "Note that you're not limited to choosing a single additional language. "
-#~ "You\n"
-#~ "may choose several ones, or even install them all by selecting the \"%s"
-#~ "\"\n"
-#~ "box. Selecting support for a language means translations, fonts, spell\n"
-#~ "checkers, etc. for that language will also be installed.\n"
-#~ "\n"
-#~ "To switch between the various languages installed on the system, you can\n"
-#~ "launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
-#~ "language used by the entire system. Running the command as a regular "
-#~ "user\n"
-#~ "will only change the language settings for that particular user."
-#~ msgstr ""
-#~ "Die taal wat u hier kies sal die dokumentasie se taal, die installeer\n"
-#~ "program, en rekenaar oor die algemeen, beïnvloed. Kies eerstens\n"
-#~ "die area waar u woon, en daarna die taal wat u praat.\n"
-#~ "( Jammer, geen inskrywing vir die wat 'nonsens' wou kies nie! )\n"
-#~ "\n"
-#~ "Deur op die \"%s\"-knoppie te klik, kan u ander tale by kies.\n"
-#~ "Dit sal dan dokumentasie en programme toelaat in daardie ekstra tale.\n"
-#~ "Sou daar byvoorbeeld Spaanse gebruikers op die masjien inteken, kies\n"
-#~ "Afrikaans(of Engels) as die verstek taal en \"%s\" in die Gevorderde\n"
-#~ "seksie.\n"
-#~ "\n"
-#~ "Deur 'n sekere taal te kies, sal vertalings, lettertipes,\n"
-#~ "spelkykers ens vir die betrokke taal geïnstalleer word.\n"
-#~ "\n"
-#~ "Boonop kan die \"%s\" merkblokkie u toelaat om die gebruik van 'unicode\n"
-#~ "(UTF-8)' af te dwing. Let daarop dat dit eksperimenteel is. Indien u "
-#~ "verskillende tale met verskillende koderings kies, sal\n"
-#~ "'nicode'-ondersteuning geïnstalleer word.\n"
-#~ "\n"
-#~ "Let tog daarop dat u nie verbind is tot slegs een ekstra taal nie. U kan "
-#~ "'n\n"
-#~ "paar van hulle kies, as u nou regtig wild wil raak, installeer almal "
-#~ "deur\n"
-#~ "die \"%s\" blokkie te merk!\n"
-#~ "Om tussen verskillende tale te skakel, gebruik \"/usr/bin/localedrake\"\n"
-#~ "Wanneer die supergebruiker (root) dit doen sal dit die taal vir almal\n"
-#~ "verander, en wanneer 'n gewone gebruiker dit doen , sal dit net vir\n"
-#~ "daardie gebruiker verander."
-
-#~ msgid ""
-#~ "Usually, DrakX has no problems detecting the number of buttons on your\n"
-#~ "mouse. If it does, it assumes you have a two-button mouse and will\n"
-#~ "configure it for third-button emulation. The third-button mouse button of "
-#~ "a\n"
-#~ "two-button mouse can be ``pressed'' by simultaneously clicking the left "
-#~ "and\n"
-#~ "right mouse buttons. DrakX will automatically know whether your mouse "
-#~ "uses\n"
-#~ "a PS/2, serial or USB interface.\n"
-#~ "\n"
-#~ "In case you have a 3 buttons mouse without wheel, you can choose the "
-#~ "mouse\n"
-#~ "that says \"%s\". DrakX will then configure your mouse so that you can\n"
-#~ "simulate the wheel with it: to do so, press the middle button and move "
-#~ "your\n"
-#~ "mouse up and down.\n"
-#~ "\n"
-#~ "If for some reason you wish to specify a different type of mouse, select "
-#~ "it\n"
-#~ "from the list provided.\n"
-#~ "\n"
-#~ "If you choose a mouse other than the default, a test screen will be\n"
-#~ "displayed. Use the buttons and wheel to verify that the settings are\n"
-#~ "correct and that the mouse is working correctly. If the mouse is not\n"
-#~ "working well, press the space bar or [Return] key to cancel the test and "
-#~ "to\n"
-#~ "go back to the list of choices.\n"
-#~ "\n"
-#~ "Wheel mice are occasionally not detected automatically, so you will need "
-#~ "to\n"
-#~ "select your mouse from a list. Be sure to select the one corresponding "
-#~ "to\n"
-#~ "the port that your mouse is attached to. After selecting a mouse and\n"
-#~ "pressing the \"%s\" button, a mouse image is displayed on-screen. Scroll\n"
-#~ "the mouse wheel to ensure that it is activated correctly. Once you see "
-#~ "the\n"
-#~ "on-screen scroll wheel moving as you scroll your mouse wheel, test the\n"
-#~ "buttons and check that the mouse pointer moves on-screen as you move "
-#~ "your\n"
-#~ "mouse."
-#~ msgstr ""
-#~ "DrakX het gewoonlik geen probleme met die speur van die aantal "
-#~ "muisknoppies\n"
-#~ "nie. Indien wel, sal dit aanneem dat die muis twee knoppies het, en sal "
-#~ "dan\n"
-#~ "3-knop emulasie konfigureer. Die 3de knoppie kan \"gedruk\" word deur "
-#~ "beide\n"
-#~ "knoppies gelyktydig te klik. DrakX sal vanself weet watter tipe muis u "
-#~ "het,\n"
-#~ "of dit nou 'n PS/2, sierie of USB muis mag wees.\n"
-#~ "\n"
-#~ "Indien u muis 3 knoppies het, maar nie 'n wielletjie nie, kan u \"%s\" "
-#~ "kies\n"
-#~ "DrakX sal dan u muis so opstel dat die wielletjie gesimuleer word. Druk\n"
-#~ "die middel knoppie en beweeg die muis op en af - maklik!\n"
-#~ "\n"
-#~ "Indien u moontlik 'n ander tipe muis wil spesifiseer, kies dit vanaf die\n"
-#~ " voorsiende lys.\n"
-#~ "\n"
-#~ "Indien u gekose muis verskil van die verstek muis, sal 'n toetsskerm\n"
-#~ "vertoon word. Gebruik die knoppies en wielletjie om seker te maak\n"
-#~ "alles werk korrek.\n"
-#~ "Indien u probleme ondervind, druk die spasiebalk of [ Enter ] sleutel om\n"
-#~ "die toets te kansselleer en weer te kies.\n"
-#~ "\n"
-#~ "Wielmuise word soms verkeerdelik geïdentifiseer, dan moet u self u\n"
-#~ "muis vanaf die lys kies.\n"
-#~ "Maak tog seker u kies die regte poort waaraan die muis\n"
-#~ "gekoppel is. Na u die muis gekies, en \"%s\" geklik het, sal 'n beeld "
-#~ "van\n"
-#~ " 'n muis verskyn.\n"
-#~ "Rol die wielletjie om te bevestig dat dit korrek funksioneer. Sodra u\n"
-#~ "die beeld van die muis se wielletjie sien reageer, kan u ook die "
-#~ "knoppies\n"
-#~ "en beweging van u muis toets."
-
-#~ msgid ""
-#~ "This is the most crucial decision point for the security of your GNU/"
-#~ "Linux\n"
-#~ "system: you have to enter the \"root\" password. \"Root\" is the system\n"
-#~ "administrator and is the only user authorized to make updates, add "
-#~ "users,\n"
-#~ "change the overall system configuration, and so on. In short, \"root\" "
-#~ "can\n"
-#~ "do everything! That is why you must choose a password that is difficult "
-#~ "to\n"
-#~ "guess - DrakX will tell you if the password you chose is too easy. As "
-#~ "you\n"
-#~ "can see, you are not forced to enter a password, but we strongly advise "
-#~ "you\n"
-#~ "against this. GNU/Linux is just as prone to operator error as any other\n"
-#~ "operating system. Since \"root\" can overcome all limitations and\n"
-#~ "unintentionally erase all data on partitions by carelessly accessing the\n"
-#~ "partitions themselves, it is important that it be difficult to become\n"
-#~ "\"root\".\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. Never write down the \"root\" password -- it makes it "
-#~ "far\n"
-#~ "too easy to compromise a system.\n"
-#~ "\n"
-#~ "One caveat -- do not make the password too long or complicated because "
-#~ "you\n"
-#~ "must be able to remember it!\n"
-#~ "\n"
-#~ "The password will not be displayed on screen as you type it in. To "
-#~ "reduce\n"
-#~ "the chance of a blind typing error you will need to enter the password\n"
-#~ "twice. If you do happen to make the same typing error twice, this\n"
-#~ "``incorrect'' password will be the one you will have use the first time "
-#~ "you\n"
-#~ "connect.\n"
-#~ "\n"
-#~ "If you wish access to this computer to be controlled by an "
-#~ "authentication\n"
-#~ "server, click the \"%s\" button.\n"
-#~ "\n"
-#~ "If your network uses either LDAP, NIS, or PDC Windows Domain "
-#~ "authentication\n"
-#~ "services, select the appropriate one for \"%s\". If you do not know "
-#~ "which\n"
-#~ "one to use, you should ask your network administrator.\n"
-#~ "\n"
-#~ "If you happen to have problems with remembering passwords, if your "
-#~ "computer\n"
-#~ "will never be connected to the Internet and you absolutely trust "
-#~ "everybody\n"
-#~ "who uses your computer, you can choose to have \"%s\"."
-#~ msgstr ""
-#~ "Hierdie is die belangrikste oomblik vir u GNU/Linux-rekenaar se "
-#~ "sekuriteit:\n"
-#~ "u moet 'n wagwoord voorsien vir \"root\". \"Root\" is die supergebruiker "
-#~ "wat\n"
-#~ "dinge doen soos om die sagteware op te dateer, gebruikers by te voeg,\n"
-#~ "en die konfigurasie te verander. \"Root\" kan alles doen! Hieroor moet\n"
-#~ "u 'n deeglike wagwoord vir \"root\" kies - (DrakX sal jou tune as die "
-#~ "wag-\n"
-#~ "woord nie op spec is nie.) U kan wel die wagwoord uitlaat, maar dit word\n"
-#~ "te sterkste afgeraai. GNU/Linux is net so vatbaar vir foute soos enige\n"
-#~ "ander bedryfstelsel. Aangesien \"root\" geen perke het nie, kan hy/sy\n"
-#~ "maklik skade aanrig as die persoon roekeloos handel. Dit moet dus\n"
-#~ "moeilik wees vir 'n persoon om \"root\" te word.\n"
-#~ "\n"
-#~ "Die wagwoord behoort 'n mengsel van letters en syfers te wees en ten "
-#~ "minste\n"
-#~ "8 karakters lank te wees. Moet dit nie neerskryf nie, dit veroorsaak 'n\n"
-#~ "swak skakel\n"
-#~ "\n"
-#~ "Moet dit ook nie te vreemd maak nie, u moet dit tog kan onthou!\n"
-#~ "\n"
-#~ "Indien u gebruik maak van 'n eksterne bediener wat die toegang beheer,\n"
-#~ "klik op die \"%s\"-knoppie.\n"
-#~ "\n"
-#~ "Indien u netwerk gebruik maak van LDAP, NIS of 'n Windows PDC, moet\n"
-#~ "u die gepaste diens vir \"%s\" kies. Vra u administrateur indien u nie "
-#~ "weet\n"
-#~ "watter een om te kies nie.\n"
-#~ "\n"
-#~ "Indien u probleme ondervind om wagwoorde te onthou, en die rekenaar is\n"
-#~ "ver van die Internet af, en u vertrou almal wat die masjien gebruik, kan "
-#~ "u\n"
-#~ "kies om \"%s\" te gebruik. -once & heavy!-"
-
-#~ msgid ""
-#~ "This dialog allows you to fine tune your bootloader:\n"
-#~ "\n"
-#~ " * \"%s\": there are three choices for your bootloader:\n"
-#~ "\n"
-#~ " * \"%s\": if you prefer GRUB (text menu).\n"
-#~ "\n"
-#~ " * \"%s\": if you prefer LILO with its text menu interface.\n"
-#~ "\n"
-#~ " * \"%s\": if you prefer LILO with its graphical interface.\n"
-#~ "\n"
-#~ " * \"%s\": in most cases, you will not change the default (\"%s\"), but "
-#~ "if\n"
-#~ "you prefer, the bootloader can be installed on the second hard drive\n"
-#~ "(\"%s\"), or even on a floppy disk (\"%s\");\n"
-#~ "\n"
-#~ " * \"%s\": after a boot or a reboot of the computer, this is the delay\n"
-#~ "given to the user at the console to select a boot entry other than the\n"
-#~ "default.\n"
-#~ "\n"
-#~ " * \"%s\": ACPI is a new standard (appeared during year 2002) for power\n"
-#~ "management, notably for laptops. If you know your hardware supports it "
-#~ "and\n"
-#~ "you need it, check this box.\n"
-#~ "\n"
-#~ " * \"%s\": If you noticed hardware problems on your machine (IRQ "
-#~ "conflicts,\n"
-#~ "instabilities, machine freeze, ...) you should try disabling APIC by\n"
-#~ "checking this box.\n"
-#~ "\n"
-#~ "!! Be aware that if you choose not to install a bootloader (by selecting\n"
-#~ "\"%s\"), you must ensure that you have a way to boot your Mandriva Linux\n"
-#~ "system! Be sure you know what you are doing before changing any of the\n"
-#~ "options. !!\n"
-#~ "\n"
-#~ "Clicking the \"%s\" button in this dialog will offer advanced options "
-#~ "which\n"
-#~ "are normally reserved for the expert user."
-#~ msgstr ""
-#~ "Hierdie deel help met die fyner verstelling van u\n"
-#~ "herlaaistelsel: \n"
-#~ "\n"
-#~ " * \"%s\": kies een van drie herlaaistelsels:\n"
-#~ "\n"
-#~ " * \"%s\": indien u grub (teks-kieslys) verkies.\n"
-#~ "\n"
-#~ " * \"%s\": indien u LILO met 'n teks-koppelvlak verkies.\n"
-#~ "\n"
-#~ " * \"%s\": indien u LILO met 'n grafiese-koppelvlak verkies.\n"
-#~ "\n"
-#~ " * \"%s\": in die meeste gevalle, sal die verstek (\"%s\") reg wees, "
-#~ "indien\n"
-#~ "u so verkies, kan die herlaaistelsel op die tweede hardeskyf "
-#~ "geïnstalleer\n"
-#~ "word (\"%s\"), of selfs op 'n disket (\"%s\");\n"
-#~ "\n"
-#~ " * \"%s\": met die herlaai of selflaai, sal hierdie die wagperiode wees \n"
-#~ "wat aan die gebruiker gegun sal word, waarin hy/sy 'n keuse kan\n"
-#~ "maak oor die bedryfstelsel wat dan sal selflaai\n"
-#~ "\n"
-#~ " * \"%s\": ACPI is 'n nuwe standaard (het verskyn gedurende 2002) vir\n"
-#~ "die beheer van die kragtoevoer veral by skootrekenaars. Indien u seker\n"
-#~ "is dat u hardeware dit ondersteun, en u dit benodig, kies dit.\n"
-#~ "\n"
-#~ " * \"%s\": Indien u probleme ondervind het met die hardeware op u\n"
-#~ "rekenaar (IRQ probleme, onstabiliteit ens,...) kan u APIC de-aktiveer\n"
-#~ "deur die boksie te kies.\n"
-#~ "\n"
-#~ "!! AANDAG: indien u sou verkies om nie 'n herlaaistelsel te installeer\n"
-#~ "nie(deur \"%s\" te kies) moet u 'n ander metode vind om u Mandrake\n"
-#~ "Linux te selflaai! Maak seker dat u uitmaak wat die move doen voor u\n"
-#~ " dit verander, maak uit !!\n"
-#~ "\n"
-#~ "Deur op die \"%s\" knoppie klik, sal u gevorderde opsies kan gebruik\n"
-#~ "wat normaalweg slegs vir slimkoppe nodig is."
-
-#~ msgid "GRUB"
-#~ msgstr "GRUB"
-
-#~ msgid "/dev/hda"
-#~ msgstr "/dev/hda"
-
-#~ msgid "/dev/hdb"
-#~ msgstr "/dev/hdb"
-
-#~ msgid "/dev/fd0"
-#~ msgstr "/dev/fd0"
-
-#~ msgid "Delay before booting the default image"
-#~ msgstr "Wagperiode voor verstekstelsel gelaai word"
-
-#~ msgid ""
-#~ "After you have configured the general bootloader parameters, the list of\n"
-#~ "boot options that will be available at boot time will be displayed.\n"
-#~ "\n"
-#~ "If there are other operating systems installed on your machine they will\n"
-#~ "automatically be added to the boot menu. You can fine-tune the existing\n"
-#~ "options by clicking \"%s\" to create a new entry; selecting an entry and\n"
-#~ "clicking \"%s\" or \"%s\" to modify or remove it. \"%s\" validates your\n"
-#~ "changes.\n"
-#~ "\n"
-#~ "You may also not want to give access to these other operating systems to\n"
-#~ "anyone who goes to the console and reboots the machine. You can delete "
-#~ "the\n"
-#~ "corresponding entries for the operating systems to remove them from the\n"
-#~ "bootloader menu, but you will need a boot disk in order to boot those "
-#~ "other\n"
-#~ "operating systems!"
-#~ msgstr ""
-#~ "Nadat u die algemene herlaaistelsel se parameters gekies het, sal die\n"
-#~ "lys van beskikbare herlaai-opsies om te kies, na die rekenaar\n"
-#~ "aangeskakel is, vertoon word.\n"
-#~ "\n"
-#~ "Indien daar bestaande bedryfstelsels op u rekenaar is, sal hulle\n"
-#~ "outomaties by die keuses gevoeg word. U kan fyner verstellings\n"
-#~ "maak: \"%s\" vir 'n nuwe toevoeging, kies 'n inskrywing en\n"
-#~ "klik op \"%s\" of \"%s\" om dit te verander of te verwyder.\n"
-#~ "\"%s\" bekragtig u veranderinge.\n"
-#~ "\n"
-#~ "U mag dalk toegang tot ander bedryfstelsels beperk, in welke geval u die\n"
-#~ "nodige inskrywings kan uitvee. Maar dan het u die nodige herlaaiskywe\n"
-#~ "nodig om die betrokke bedryfstelsels te laai!"
-
-#~ msgid ""
-#~ "LILO and GRUB are GNU/Linux bootloaders. Normally, this stage is totally\n"
-#~ "automated. DrakX will analyze the disk boot sector and act according to\n"
-#~ "what it finds there:\n"
-#~ "\n"
-#~ " * if a Windows boot sector is found, it will replace it with a GRUB/"
-#~ "LILO\n"
-#~ "boot sector. This way you will be able to load either GNU/Linux or any\n"
-#~ "other OS installed on your machine.\n"
-#~ "\n"
-#~ " * if a GRUB or LILO boot sector is found, it will replace it with a new\n"
-#~ "one.\n"
-#~ "\n"
-#~ "If it cannot make a determination, DrakX will ask you where to place the\n"
-#~ "bootloader. Generally, the \"%s\" is the safest place. Choosing \"%s\"\n"
-#~ "will not install any bootloader. Use it only if you know what you are "
-#~ "doing."
-#~ msgstr ""
-#~ "LILO en grup is herlaaistelsels vir GNU/Linux. Hierdie stap is "
-#~ "normaalweg\n"
-#~ "geheel en al outomaties. DrakX sal u hardeskyf se selflaai-sektor nagaan\n"
-#~ "en dienooreenkomstig handel met wat dit vind:\n"
-#~ "\n"
-#~ " * indien 'n Windows selflaai-sektor teenwoordig is, sal dit met 'n "
-#~ "grub/\n"
-#~ "LILO een vervang word. Dit sal u toelaat om te kan kies watter\n"
-#~ "bedryfstelsel om te laai sodra u die masjien aanskakel.\n"
-#~ "\n"
-#~ " * indien 'n grub of LILO selflaai-sektor teenwoordig is, sal dit "
-#~ "vervang\n"
-#~ "word.\n"
-#~ "\n"
-#~ "Indien DrakX nie self kan besluit nie, sal u gevra word om 'n ligging "
-#~ "vir\n"
-#~ "die herlaaistelsel te voorsien. Gewoonlik is die veiligste plek \"%s\". "
-#~ "Deur \"%s\" te kies, sal DrakX geen herlaaistelsel installeer nie."
-
-#~ msgid ""
-#~ "Now, it's time to select a printing system for your computer. Other OSs "
-#~ "may\n"
-#~ "offer you one, but Mandriva Linux offers two. Each of the printing "
-#~ "systems\n"
-#~ "is best suited to particular types of configuration.\n"
-#~ "\n"
-#~ " * \"%s\" -- which is an acronym for ``print, do not queue'', is the "
-#~ "choice\n"
-#~ "if you have a direct connection to your printer, you want to be able to\n"
-#~ "panic out of printer jams, and you do not have networked printers. (\"%s"
-#~ "\"\n"
-#~ "will handle only very simple network cases and is somewhat slow when "
-#~ "used\n"
-#~ "with networks.) It's recommended that you use \"pdq\" if this is your "
-#~ "first\n"
-#~ "experience with GNU/Linux.\n"
-#~ "\n"
-#~ " * \"%s\" - `` Common Unix Printing System'', is an excellent choice for\n"
-#~ "printing to your local printer or to one halfway around the planet. It "
-#~ "is\n"
-#~ "simple to configure and can act as a server or a client for the ancient\n"
-#~ "\"lpd \" printing system, so it is compatible with older operating "
-#~ "systems\n"
-#~ "which may still need print services. While quite powerful, the basic "
-#~ "setup\n"
-#~ "is almost as easy as \"pdq\". If you need to emulate a \"lpd\" server, "
-#~ "make\n"
-#~ "sure you turn on the \"cups-lpd \" daemon. \"%s\" includes graphical\n"
-#~ "front-ends for printing or choosing printer options and for managing the\n"
-#~ "printer.\n"
-#~ "\n"
-#~ "If you make a choice now, and later find that you do not like your "
-#~ "printing\n"
-#~ "system you may change it by running PrinterDrake from the Mandrake "
-#~ "Control\n"
-#~ "Center and clicking the expert button."
-#~ msgstr ""
-#~ "Dit is nou tyd om u drukkerstelsel te kies. Ander bedryfstelsels sal\n"
-#~ "seker net een aan u bied, maar Mandriva Linux gee twee. Elk van hulle\n"
-#~ "is beter as die ander in sekere gevalle.\n"
-#~ "\n"
-#~ " * \"%s\" -- wat vir \"print, do not queue\" staan. Kies dit indien u\n"
-#~ "'n direkte konneksie na die drukker het, en u blitsig wil inmeng sodra\n"
-#~ "daar probleme is, ook indien u nie netwerk-drukkers het nie. (\"%s\"\n"
-#~ "hanteer net eenvoudige netwerk-toegang en is effe stadig deur die "
-#~ "netwerk)\n"
-#~ "Ons beveel aan dat u \"pdq\" gebruik indien u nog groen is met GNU/"
-#~ "Linux.\n"
-#~ "\n"
-#~ " * \"%s\" - 'Common Unix Printing System', is 'n uitstekende keuse om na\n"
-#~ "u plaaslike drukker, of na een in myle vanaf u, te druk. Eenvoudig om\n"
-#~ "op te stel, kan kliënt of bediener rolle vertolk vir die lpd-fossiel. "
-#~ "Dit\n"
-#~ " beteken dat ons omsien na ons veterane! Dit is baie kragtig, maar 'n\n"
-#~ "elementêre opstel is byna so maklik soos \"pdq\". Indien u 'n lpd-\n"
-#~ "bediener wil nastreef, maak seker dat u die \"cups-lpd\"-daemoon\n"
-#~ "loop. \"%s\" sluit grafiese programme in om vanaf te druk of om\n"
-#~ "opsies te keis en drukkers te bestuur.\n"
-#~ "\n"
-#~ "Sou u die keuse nou, later wil verander, gaan gerus na 'PrinterDrake'\n"
-#~ "in die 'Mandrake Control Center' en klik op die \"Kenner\" knoppie."
-
-#~ msgid ""
-#~ "You can add additional entries in yaboot for other operating systems,\n"
-#~ "alternate kernels, or for an emergency boot image.\n"
-#~ "\n"
-#~ "For other OSs, the entry consists only of a label and the \"root\"\n"
-#~ "partition.\n"
-#~ "\n"
-#~ "For Linux, there are a few possible options:\n"
-#~ "\n"
-#~ " * Label: this is the name you will have to type at the yaboot prompt to\n"
-#~ "select this boot option.\n"
-#~ "\n"
-#~ " * Image: this is the name of the kernel to boot. Typically, vmlinux or "
-#~ "a\n"
-#~ "variation of vmlinux with an extension.\n"
-#~ "\n"
-#~ " * Root: the \"root\" device or ``/'' for your Linux installation.\n"
-#~ "\n"
-#~ " * Append: on Apple hardware, the kernel append option is often used to\n"
-#~ "assist in initializing video hardware, or to enable keyboard mouse "
-#~ "button\n"
-#~ "emulation for the missing 2nd and 3rd mouse buttons on a stock Apple "
-#~ "mouse.\n"
-#~ "The following are some examples:\n"
-#~ "\n"
-#~ " \t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-#~ "hda=autotune\n"
-#~ "\n"
-#~ " \t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-#~ "\n"
-#~ " * Initrd: this option can be used either to load initial modules before\n"
-#~ "the boot device is available, or to load a ramdisk image for an "
-#~ "emergency\n"
-#~ "boot situation.\n"
-#~ "\n"
-#~ " * Initrd-size: the default ramdisk size is generally 4096 Kbytes. If "
-#~ "you\n"
-#~ "need to allocate a large ramdisk, this option can be used to specify a\n"
-#~ "ramdisk larger than the default.\n"
-#~ "\n"
-#~ " * Read-write: normally the \"root\" partition is initially mounted as\n"
-#~ "read-only, to allow a file system check before the system becomes "
-#~ "``live''.\n"
-#~ "You can override the default with this option.\n"
-#~ "\n"
-#~ " * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-#~ "problematic, you can select this option to boot in ``novideo'' mode, "
-#~ "with\n"
-#~ "native frame buffer support.\n"
-#~ "\n"
-#~ " * Default: selects this entry as being the default Linux selection,\n"
-#~ "selectable by pressing ENTER at the yaboot prompt. This entry will also "
-#~ "be\n"
-#~ "highlighted with a ``*'' if you press [Tab] to see the boot selections."
-#~ msgstr ""
-#~ "U kan ekstra inskrywings in 'yaboot' maak vir ander bedryfstelsels,\n"
-#~ "alternatiewe 'kernels' of selfs 'n nood-herlaaibeeld.\n"
-#~ "\n"
-#~ "Die inskrywing vir ander bedryfstelsels bestaan uit die naam en die\n"
-#~ "\"root\"partisie van daardie bedryfstelsel.\n"
-#~ "\n"
-#~ "Linux het 'n paar opsies beskikbaar:\n"
-#~ "\n"
-#~ " * Naam: Die naam wat u sal gebruik tydens die 'yaboot' por-teks om\n"
-#~ "hierdie keuse te maak.\n"
-#~ " * Beeld: dit is die naam van die 'kernel' wat gaan selflaai. Gewoonlik "
-#~ "is\n"
-#~ "dit 'vmlinux' of 'n variasie daarvan.\n"
-#~ " * Root: die \"root\" toestel of '/' vir u Linux installasie.\n"
-#~ "\n"
-#~ " * Aanlas: spesifiseer spesifike opsies gewoonlik met hardeware te doen,\n"
-#~ "bv die muis , sie grafiesekaart ens. \n"
-#~ " video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-#~ "hda=autotune\n"
-#~ "\n"
-#~ " video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-#~ "\n"
-#~ " * Initrd: hierdie opsie kan gebruik word om modules te laai alvorens "
-#~ "die\n"
-#~ "'boot' toestel beskikbaar is, of om 'n 'ramdisk' beeld te laai in 'n "
-#~ "nood-\n"
-#~ "herlaai toestand.\n"
-#~ "\n"
-#~ " * Initrd-size: die verstek 'ramdisk' se grootte is gewoonlik 4096 Kb.\n"
-#~ "Indien u 'n groter 'ramdisk' verlang, kan u dit hier spesifiseer.\n"
-#~ "\n"
-#~ " * Read-write: \"root\" word gewoonlik eerstens gehag in lees-alleen "
-#~ "modus\n"
-#~ "dit is om te toets of alles korrek werk met die lêerstelsel. Indien u "
-#~ "dit\n"
-#~ "oorskryf kan u hierdie verstek opsie verander.\n"
-#~ "\n"
-#~ " * NoVideo: sou die Apple grafiese hardeware vir u probleme verskaf\n"
-#~ "kan u herlaai in \"novideo\" modus, met plaaslike \"frame buffer\"\n"
-#~ "ondersteuning\n"
-#~ "\n"
-#~ " * Default: kies hierdie een vir die verstek Linux keuse, waneer u\n"
-#~ "\"ENTER\" druk tydens die yaboot-porteks. Hierdie inskrywing sal verlig\n"
-#~ "wees met 'n '*' indien u [Tab] druk om die herlaai keuses te beskou"
-
-#~ msgid ""
-#~ "Yaboot is a bootloader for NewWorld Macintosh hardware and can be used "
-#~ "to\n"
-#~ "boot GNU/Linux, MacOS or MacOSX. Normally, MacOS and MacOSX are "
-#~ "correctly\n"
-#~ "detected and installed in the bootloader menu. If this is not the case, "
-#~ "you\n"
-#~ "can add an entry by hand in this screen. Take care to choose the correct\n"
-#~ "parameters.\n"
-#~ "\n"
-#~ "Yaboot's main options are:\n"
-#~ "\n"
-#~ " * Init Message: a simple text message displayed before the boot prompt.\n"
-#~ "\n"
-#~ " * Boot Device: indicates where you want to place the information "
-#~ "required\n"
-#~ "to boot to GNU/Linux. Generally, you set up a bootstrap partition "
-#~ "earlier\n"
-#~ "to hold this information.\n"
-#~ "\n"
-#~ " * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-#~ "yaboot. The first delay is measured in seconds and at this point, you "
-#~ "can\n"
-#~ "choose between CD, OF boot, MacOS or Linux;\n"
-#~ "\n"
-#~ " * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-#~ "After selecting Linux, you will have this delay in 0.1 second increments\n"
-#~ "before your default kernel description is selected;\n"
-#~ "\n"
-#~ " * Enable CD Boot?: checking this option allows you to choose ``C'' for "
-#~ "CD\n"
-#~ "at the first boot prompt.\n"
-#~ "\n"
-#~ " * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
-#~ "Open Firmware at the first boot prompt.\n"
-#~ "\n"
-#~ " * Default OS: you can select which OS will boot by default when the "
-#~ "Open\n"
-#~ "Firmware Delay expires."
-#~ msgstr ""
-#~ "Yaboot is a bootloader for NewWorld Macintosh hardware and can be used "
-#~ "to\n"
-#~ "boot GNU/Linux, MacOS or MacOSX. Normally, MacOS and MacOSX are "
-#~ "correctly\n"
-#~ "detected and installed in the bootloader menu. If this is not the case, "
-#~ "you\n"
-#~ "can add an entry by hand in this screen. Take care to choose the correct\n"
-#~ "parameters.\n"
-#~ "\n"
-#~ "Yaboot's main options are:\n"
-#~ "\n"
-#~ " * Init Message: a simple text message displayed before the boot prompt.\n"
-#~ "\n"
-#~ " * Boot Device: indicates where you want to place the information "
-#~ "required\n"
-#~ "to boot to GNU/Linux. Generally, you set up a bootstrap partition "
-#~ "earlier\n"
-#~ "to hold this information.\n"
-#~ "\n"
-#~ " * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-#~ "yaboot. The first delay is measured in seconds and at this point, you "
-#~ "can\n"
-#~ "choose between CD, OF boot, MacOS or Linux;\n"
-#~ "\n"
-#~ " * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-#~ "After selecting Linux, you will have this delay in 0.1 second increments\n"
-#~ "before your default kernel description is selected;\n"
-#~ "\n"
-#~ " * Enable CD Boot?: checking this option allows you to choose ``C'' for "
-#~ "CD\n"
-#~ "at the first boot prompt.\n"
-#~ "\n"
-#~ " * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
-#~ "Open Firmware at the first boot prompt.\n"
-#~ "\n"
-#~ " * Default OS: you can select which OS will boot by default when the "
-#~ "Open\n"
-#~ "Firmware Delay expires."
-
-#~ msgid ""
-#~ "\"%s\": if a sound card is detected on your system, it is displayed "
-#~ "here.\n"
-#~ "If you notice the sound card displayed is not the one that is actually\n"
-#~ "present on your system, you can click on the button and choose another\n"
-#~ "driver."
-#~ msgstr ""
-#~ "\"%s\" die bespeurde klankkaart op u rekenaar sal hier vertoon word.\n"
-#~ "Indien die aangeduide klankkaart verskil van die werklike een op u\n"
-#~ "rekenaar,\n"
-#~ "kan u op die knoppie klik, om 'n ander drywer te kies."
-
-#~ msgid ""
-#~ "As a review, DrakX will present a summary of information it has about "
-#~ "your\n"
-#~ "system. Depending on your installed hardware, you may have some or all "
-#~ "of\n"
-#~ "the following entries. Each entry is made up of the configuration item "
-#~ "to\n"
-#~ "be configured, followed by a quick summary of the current configuration.\n"
-#~ "Click on the corresponding \"%s\" button to change that.\n"
-#~ "\n"
-#~ " * \"%s\": check the current keyboard map configuration and change it if\n"
-#~ "necessary.\n"
-#~ "\n"
-#~ " * \"%s\": check the current country selection. If you are not in this\n"
-#~ "country, click on the \"%s\" button and choose another one. If your "
-#~ "country\n"
-#~ "is not in the first list shown, click the \"%s\" button to get the "
-#~ "complete\n"
-#~ "country list.\n"
-#~ "\n"
-#~ " * \"%s\": By default, DrakX deduces your time zone based on the country\n"
-#~ "you have chosen. You can click on the \"%s\" button here if this is not\n"
-#~ "correct.\n"
-#~ "\n"
-#~ " * \"%s\": check the current mouse configuration and click on the button "
-#~ "to\n"
-#~ "change it if necessary.\n"
-#~ "\n"
-#~ " * \"%s\": clicking on the \"%s\" button will open the printer\n"
-#~ "configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-#~ "Guide'' for more information on how to setup a new printer. The "
-#~ "interface\n"
-#~ "presented there is similar to the one used during installation.\n"
-#~ "\n"
-#~ " * \"%s\": if a sound card is detected on your system, it is displayed\n"
-#~ "here. If you notice the sound card displayed is not the one that is\n"
-#~ "actually present on your system, you can click on the button and choose\n"
-#~ "another driver.\n"
-#~ "\n"
-#~ " * \"%s\": by default, DrakX configures your graphical interface in\n"
-#~ "\"800x600\" or \"1024x768\" resolution. If that does not suit you, click "
-#~ "on\n"
-#~ "\"%s\" to reconfigure your graphical interface.\n"
-#~ "\n"
-#~ " * \"%s\": if a TV card is detected on your system, it is displayed "
-#~ "here.\n"
-#~ "If you have a TV card and it is not detected, click on \"%s\" to try to\n"
-#~ "configure it manually.\n"
-#~ "\n"
-#~ " * \"%s\": if an ISDN card is detected on your system, it will be "
-#~ "displayed\n"
-#~ "here. You can click on \"%s\" to change the parameters associated with "
-#~ "the\n"
-#~ "card.\n"
-#~ "\n"
-#~ " * \"%s\": If you wish to configure your Internet or local network "
-#~ "access\n"
-#~ "now.\n"
-#~ "\n"
-#~ " * \"%s\": this entry allows you to redefine the security level as set in "
-#~ "a\n"
-#~ "previous step ().\n"
-#~ "\n"
-#~ " * \"%s\": if you plan to connect your machine to the Internet, it's a "
-#~ "good\n"
-#~ "idea to protect yourself from intrusions by setting up a firewall. "
-#~ "Consult\n"
-#~ "the corresponding section of the ``Starter Guide'' for details about\n"
-#~ "firewall settings.\n"
-#~ "\n"
-#~ " * \"%s\": if you wish to change your bootloader configuration, click "
-#~ "that\n"
-#~ "button. This should be reserved to advanced users.\n"
-#~ "\n"
-#~ " * \"%s\": here you'll be able to fine control which services will be "
-#~ "run\n"
-#~ "on your machine. If you plan to use this machine as a server it's a good\n"
-#~ "idea to review this setup."
-#~ msgstr ""
-#~ "DrakX sal u 'n oorsig bied van u rekenaar se inligting. Afhangende van "
-#~ "die\n"
-#~ "sagteware wat u geïnstalleer het, sal u sommige of al die volgende\n"
-#~ "afdelings hê. Elke inskrywing bestaan uit die item wat gekonfigureer\n"
-#~ "moet word, asook 'n kernopsomming oor die huidige stand.\n"
-#~ "Klik op die ooreenkomstige \"%s\"-knoppie om dit te verander.\n"
-#~ "\n"
-#~ " * \"%s\": bekyk die huidige sleutelbord-uitleg en verander indien "
-#~ "nodig.\n"
-#~ "\n"
-#~ " * \"%s\": bekyk die huidige keuse van u land. Indien u nie in hierdie "
-#~ "land\n"
-#~ "woon nie, klik op die \"%s\"-knoppie om 'n ander te kies. Sou dit nie in\n"
-#~ "die lys wees nie, klik op die \"%s\"-knoppie vir 'n volledige lys.\n"
-#~ "\n"
-#~ " *\"%s\": By verstek word u tydsone aangepas, afhangende van die land\n"
-#~ "wat u kies. Klik op die \"%s\"-knoppie indien dit verkeerd is.\n"
-#~ "\n"
-#~ " * \"%s\": ondersoek die huidige muiskonfigurasie en klik op die knoppie\n"
-#~ "on dit te verander.\n"
-#~ "\n"
-#~ " * \"%s\": deur op die \"%s\"-knoppie te klik, sal u die drukker-"
-#~ "assistent\n"
-#~ "loods. Raadpleeg die ooreenkomstige hoofstuk in die \"Starter Guide\"\n"
-#~ "vir meer inligting daaroor.\n"
-#~ "\n"
-#~ " * \"%s\": sou ons 'n klankkaart opspoor op die rekenaar, sal dit hier\n"
-#~ "vertoon word. Indien u verskil van ons keuse, klik op die knoppie om\n"
-#~ "'n ander drywer te kies.\n"
-#~ "\n"
-#~ " * \"%s\": DrakX stel u skerm op met 'n resolusie van \"800x600\"\n"
-#~ " of \"1024x768\" by verstek. Indien u wil verander, kan u \"%s\"\n"
-#~ "kies om dit te herkonfigureer.\n"
-#~ "\n"
-#~ " * \"%s\": indien 'n TV-kaart opgespoor is, sal dit hier vertoon. "
-#~ "Inidien\n"
-#~ "nie, en u het wel een, klik op \"%s\" om dit self op te stel.\n"
-#~ "\n"
-#~ " * \"%s\": indien 'n ISDN-kaart opgespoor is, sal dit hier vertoon. "
-#~ "Klik\n"
-#~ "op \"%s\" om verstellings daarop aan te bring\n"
-#~ "\n"
-#~ " * \"%s\": Indien u die netwerk en Internet toegang nou wil opstel\n"
-#~ "\n"
-#~ " * \"%s\": hier kan u die sekuriteitsvlak verander wat in 'n vorige "
-#~ "stap \n"
-#~ "opgestel is.\n"
-#~ "\n"
-#~ " * \"%s\": Indien die masjien toegang tot die Internet sal hê, kan u "
-#~ "gerus\n"
-#~ "u rekenaar beskem teen die hansworse daar buite, deur 'n vuurmuur op te\n"
-#~ "stel. Lees gerus meer daaroor op in die \"Starter Guide\"\n"
-#~ "\n"
-#~ " * \"%s\": indien u die herlaaistelsel se konfigurasie wil verander. "
-#~ "Word\n"
-#~ "meer vir slimkoppe aanbeveel.\n"
-#~ "\n"
-#~ " * \"%s\": hier kan u fyner verstellings maak op die dienste wat sal "
-#~ "afskop\n"
-#~ "Ondersoek dit gerus indien u die rekenaar as bediener gaan gebruik."
-
-#~ msgid ""
-#~ "No ethernet network adapter has been detected on your system.\n"
-#~ "I cannot set up this connection type."
-#~ msgstr ""
-#~ "Geen ethernetkaart is op die stelsel gevind nie.\n"
-#~ "Ek kan nie hierdie tipe konneksie opstel nie."
-
-#~ msgid ""
-#~ "Please choose which network adapter you want to use to connect to "
-#~ "Internet."
-#~ msgstr "Kies asb. die netwerkkoppelvlak wat u wil gebruik vir die Internet."
-
-#~ msgid ""
-#~ "To submit a bug report, click on the button report.\n"
-#~ "This will open a web browser window on %s\n"
-#~ " where you'll find a form to fill in. The information displayed above "
-#~ "will be \n"
-#~ "transferred to that server."
-#~ msgstr ""
-#~ "Klik die 'Verslag' knoppie, indien u 'n foutverslag wil instuur.\n"
-#~ "Dit sal die blaaier oopmaak op %s\n"
-#~ "en 'n vorm om in te vul aan u toon. Die bogenoemde inligting\n"
-#~ "sal na daardie bediener gestuur word."
-
-#~ msgid ""
-#~ "To submit a bug report, click the report button, which will open your "
-#~ "default browser\n"
-#~ "to Anthill where you will be able to upload the above information as a "
-#~ "bug report."
-#~ msgstr ""
-#~ "Klik die 'Verslag' knoppie, indien u 'n foutverslag wil instuur.\n"
-#~ "Dit sal die blaaier oopmaak by 'Anthill' waar u bogenoemde inligting\n"
-#~ "na kan oplaai."
-
-#~ msgid ""
-#~ "Here, you can setup the security level and administrator of your "
-#~ "machine.\n"
-#~ "\n"
-#~ "\n"
-#~ "The Security Administrator is the one who will receive security alerts if "
-#~ "the\n"
-#~ "'Security Alerts' option is set. It can be a username or an email.\n"
-#~ "\n"
-#~ "\n"
-#~ "The Security Level menu allows you to select one of the six preconfigured "
-#~ "security levels\n"
-#~ "provided with msec. These levels range from poor security and ease of "
-#~ "use, to\n"
-#~ "paranoid config, suitable for very sensitive server applications:\n"
-#~ "\n"
-#~ "\n"
-#~ "<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
-#~ "very\n"
-#~ "easy to use security level. It should only be used for machines not "
-#~ "connected to\n"
-#~ "any network and that are not accessible to everybody.\n"
-#~ "\n"
-#~ "\n"
-#~ "<span foreground=\"royalblue3\">Standard</span>: This is the standard "
-#~ "security\n"
-#~ "recommended for a computer that will be used to connect to the Internet "
-#~ "as a\n"
-#~ "client.\n"
-#~ "\n"
-#~ "\n"
-#~ "<span foreground=\"royalblue3\">High</span>: There are already some\n"
-#~ "restrictions, and more automatic checks are run every night.\n"
-#~ "\n"
-#~ "\n"
-#~ "<span foreground=\"royalblue3\">Higher</span>: The security is now high "
-#~ "enough\n"
-#~ "to use the system as a server which can accept connections from many "
-#~ "clients. If\n"
-#~ "your machine is only a client on the Internet, you should choose a lower "
-#~ "level.\n"
-#~ "\n"
-#~ "\n"
-#~ "<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-#~ "previous\n"
-#~ "level, but the system is entirely closed and security features are at "
-#~ "their\n"
-#~ "maximum"
-#~ msgstr ""
-#~ "Hier kan u die vlak administrasie van sekuriteit op u rekenaar opstel.\n"
-#~ "\n"
-#~ "\n"
-#~ "Die Sekuriteits-administrateur sal die sekuriteits-waarskuwings ontvang\n"
-#~ "indien\n"
-#~ "die 'Sekuriteits-waarskuwings' opsie gekies is. Dit kan 'n gebruikernaam "
-#~ "of\n"
-#~ "'n e-pos adres wees.\n"
-#~ "\n"
-#~ "\n"
-#~ "Die Sekuriteitsvlak-kieslys stel u in staat om een van ses vooraf-"
-#~ "opgestelde\n"
-#~ "vlakke te kies.\n"
-#~ "Hierdie vlakke wissel van ligte sekuriteit en maklike gebruik tot "
-#~ "paranoïes,\n"
-#~ "wat geskik is vir uiters sensitiewe toepassings.\n"
-#~ "\n"
-#~ "\n"
-#~ "<span foreground=\"royalblue3\">Lig</span>: Hierdie is glad nie veilig "
-#~ "nie,\n"
-#~ "alhoewel dit rekenaargebruik vergemaklik.\n"
-#~ "Gebruik dit op masjiene wat nie aan 'n netwerk gekoppel is nie,\n"
-#~ "en nie toeganklik tot almal is nie.\n"
-#~ "\n"
-#~ "\n"
-#~ "<span foreground=\"royalblue3\">Standaard</span>: Hierdie is die "
-#~ "standaard\n"
-#~ "sekuriteit\n"
-#~ "wat ons aanbeveel vir rekenaars wat aan die Internet gebruik as 'n "
-#~ "kliënt\n"
-#~ "\n"
-#~ "<span foreground=\"royalblue3\">Hoog</span>:Daar is reeds versperrings, "
-#~ "en\n"
-#~ "meer outomatise toetse word saans gedoen\n"
-#~ "\n"
-#~ "<span foreground=\"royalblue3\">Hoër</span>: Met hierdie sekuriteitsvlak "
-#~ "kan\n"
-#~ "u stelsel as 'n bediener gebruik.\n"
-#~ "Die sekuriteit is goed genoeg sodat die rekenaar konneksies van kliënte\n"
-#~ "af kan aanvaar.\n"
-#~ "Aandag: Indien u masjien bloot 'n kliënt op die Internet is, kan u 'n "
-#~ "laer\n"
-#~ "vlak kies.\n"
-#~ "\n"
-#~ "\n"
-#~ "<span foreground=\"royalblue3\">Paranoïes</span>: Soortgelyk aan die "
-#~ "vorige\n"
-#~ "vlak, maar die rekenaar is totaal toe en sekuriteit is op sy\n"
-#~ "maksimum"
-
-#~ msgid "chunk size"
-#~ msgstr "blokgrootte"
-
-#~ msgid "Chunk size %s\n"
-#~ msgstr "Blokgrootte %s\n"
-
-#~ msgid "Can not add a partition to _formatted_ RAID md%d"
-#~ msgstr "Kan nie 'n partisie by geformatteerde RAID md%d byvoeg nie"
-
-#~ msgid "mkraid failed (maybe raidtools are missing?)"
-#~ msgstr "mkraid het gefaal. Dalk is 'raidtools' nie beskikbaar nie."
-
-#~ msgid "mkraid failed"
-#~ msgstr "mkraid het gefaal"
-
-#~ msgid "<b>Mandrake Control Center</b>"
-#~ msgstr "<b>Mandrake Control Center</b>"
-
-#~ msgid ""
-#~ "The Mandrake Control Center is an essential collection of Mandrake-"
-#~ "specific utilities for simplifying the configuration of your computer."
-#~ msgstr ""
-#~ "Die \"Mandrake Control Center\" is 'n versameling nutsprogramme wat die "
-#~ "opstel van u rekenaar vergemaklik."
-
-#~ msgid ""
-#~ "Find all Mandriva products and services at <b>MandrakeStore</b> -- our "
-#~ "full service e-commerce platform."
-#~ msgstr ""
-#~ "Hier kan u alle Mandriva produkte en dienste vind. <b>MandrakeStore</b> --"
-#~ "ons ten volle toegeruste e-handel platvorm."
-
-#~ msgid "Become a <b>MandrakeClub</b> member!"
-#~ msgstr "Sluit aan by die <b><MandrakeClub!</b>"
-
-#~ msgid ""
-#~ "Take advantage of valuable benefits, products and services by joining "
-#~ "MandrakeClub, such as:"
-#~ msgstr ""
-#~ "Hierdie is meer as net 'n gemeenskap, hier kry u ekstra waarde deur "
-#~ "produkte en dienste wat die volgende insluit:"
-
-#~ msgid ""
-#~ "\t* Special download mirror list exclusively for MandrakeClub Members"
-#~ msgstr ""
-#~ "\t* Spesiale spieel bedieners wat uitsluitlik vir \"MandrakeClub\" se "
-#~ "lede is"
-
-#~ msgid "\t* Special discounts for products and services at MandrakeStore"
-#~ msgstr "\t* Spesiale afslag vir produkte en dienste by \"MandrakeStore\""
-
-#~ msgid ""
-#~ "\t* Find out Mandriva Linux on a bootable CD with <b>Mandriva Move</b>"
-#~ msgstr ""
-#~ "\t* Vind uit oor Mandriva Linux op 'n selflaai CD - <b>Mandriva Move</b>"
-
-#~ msgid ""
-#~ "Find all Mandriva products at <b>MandrakeStore</b> -- our full service e-"
-#~ "commerce platform."
-#~ msgstr ""
-#~ "Mandriva se produkte is by <b>MandrakeStore</b> -- ons volledige e-handel "
-#~ "winkel."
-
-#~ msgid "<b>Become a MandrakeClub member!</b>"
-#~ msgstr "<b>Word 'n lid van die MandrakeClub!</b>"
-
-#~ msgid ""
-#~ "In the Mandriva Linux menu you will find easy-to-use applications for all "
-#~ "tasks:"
-#~ msgstr ""
-#~ "Die kieslys in Mandriva Linux het gebruikersvriendelike programme vir "
-#~ "alle behoefdes:"
-
-#~ msgid ""
-#~ "\t* Take charge of your personal data with the integrated personal "
-#~ "information suites: <b>Kontact</b> and <b>Evolution</b>"
-#~ msgstr ""
-#~ "\t* Kry beheer oor u persoonlike data met die geïntegreerde e-pos "
-#~ "programme:<b>Kontak</b> en <b>Evolution</b>"
-
-#~ msgid ""
-#~ "\t* <b>XEmacs</b>: open source text editor and application development "
-#~ "system"
-#~ msgstr "\t* <b>XEmacs</b>: oopbron redigeerder en ontwikkelings program."
-
-#~ msgid ""
-#~ "\t* <b>Vim</b>: advanced text editor with more features than standard Vi"
-#~ msgstr ""
-#~ "\t* <b>Vim</b>: gevorderde redigeerder met ekstras bo die standaard Vi"
-
-#~ msgid ""
-#~ "[OPTIONS]...\n"
-#~ "Mandriva Terminal Server Configurator\n"
-#~ "--enable : enable MTS\n"
-#~ "--disable : disable MTS\n"
-#~ "--start : start MTS\n"
-#~ "--stop : stop MTS\n"
-#~ "--adduser : add an existing system user to MTS (requires "
-#~ "username)\n"
-#~ "--deluser : delete an existing system user from MTS (requires "
-#~ "username)\n"
-#~ "--addclient : add a client machine to MTS (requires MAC address, IP, "
-#~ "nbi image name)\n"
-#~ "--delclient : delete a client machine from MTS (requires MAC "
-#~ "address, IP, nbi image name)"
-#~ msgstr ""
-#~ "[OPTIONS]...\n"
-#~ "Mandriva Terminal Server Configurator\n"
-#~ "--enable : enable MTS\n"
-#~ "--disable : disable MTS\n"
-#~ "--start : start MTS\n"
-#~ "--stop : stop MTS\n"
-#~ "--adduser : add an existing system user to MTS (requires "
-#~ "username)\n"
-#~ "--deluser : delete an existing system user from MTS (requires "
-#~ "username)\n"
-#~ "--addclient : add a client machine to MTS (requires MAC address, IP, "
-#~ "nbi image name)\n"
-#~ "--delclient : delete a client machine from MTS (requires MAC "
-#~ "address, IP, nbi image name)"
-
-#~ msgid ""
-#~ "This interface has not been configured yet.\n"
-#~ "Run the \"Add an interface\" assistant from the Mandrake Control Center"
-#~ msgstr ""
-#~ "Hierdie koppelvlak is nog nie opgestel nie.\n"
-#~ "Loods die \"Add an interface\"-assistent vanuit die Mandrake Control "
-#~ "Center"
-
-#~ msgid "Mandrake Tools Logs"
-#~ msgstr "Mandrake Tools Logs"
-
-#~ msgid "The alert wizard had unexpectly failled:"
-#~ msgstr "Die waarsku wysgeer het onverwags gestop:"
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Probleme met die Konneksie\n"
-#~ "Maak tog seker van u konfigurasie in die 'Mandrake Control Center'."
-
-#~ msgid "The package %s is needed. Install it?"
-#~ msgstr "Pakket %s word benodig. Moet ons installeer?"
-
-#~ msgid "ignore"
-#~ msgstr "ignoreer"
-
-#~ msgid "no"
-#~ msgstr "nee"
-
-#~ msgid "yes"
-#~ msgstr "ja"
-
-#~ msgid "SILO Installation"
-#~ msgstr "SILO installasie"
-
-#~ msgid "First sector of boot partition"
-#~ msgstr "Eerste sektor van herlaaipartisie"
-
-#~ msgid "Bootloader installation"
-#~ msgstr "Installasie van herlaaistelsel"
-
-#~ msgid "SILO"
-#~ msgstr "SILO"
-
-#~ msgid "Alcatel speedtouch usb"
-#~ msgstr "Alcatel speedtouch usb"
-
-#~ msgid "Sagem (using pppoa) usb"
-#~ msgstr "Sagem (gebruik pppoa) usb"
-
-#~ msgid ""
-#~ "Enter a Zeroconf host name which will be the one that your machine will "
-#~ "get back to other machines on the network:"
-#~ msgstr ""
-#~ "Voorsien 'n Zeroconf rekenaarnaam, dit sal die een wees wat u masjien aan "
-#~ "die ander rekenaars op die netwerk sal verskaf:"
-
-#~ msgid "Harddrake2 version %s"
-#~ msgstr "Harddrake2 weergawe %s"
-
-#~ msgid "transmitted"
-#~ msgstr "reeds versend"
-
-#~ msgid "received"
-#~ msgstr "reeds ontvang"
-
-#
-#~ msgid ""
-#~ "You can export using NFS or Samba. Please select which you'd like to use."
-#~ msgstr ""
-#~ "U kan uitvoer deur NFS of Samba te gebruik. Kies watter u wil gebruik."
-
-#
-#~ msgid "The package %s is going to be removed."
-#~ msgstr "Pakket %s gaan verwyder word"
+#~ msgid "number of capture buffers for mmap'ed capture"
+#~ msgstr "aantal ontvang-buffers vir nmap se vangs"
-#~ msgid "You must be root to read configuration file. \n"
-#~ msgstr "Om die konfigurasielêer te lees, moet u 'root' wees.\n"
+#~ msgid "PLL setting:"
+#~ msgstr "PLL verstelling:"
-#~ msgid "Can not open %s!"
-#~ msgstr "Kan nie %s oopmaak nie!"
+#~ msgid "Radio support:"
+#~ msgstr "Ondersteunig vir Radio:"
-#~ msgid ""
-#~ "Your card can have 3D hardware acceleration support but only with Xorg %"
-#~ "s.\n"
-#~ "Your card is supported by Xorg %s which may have a better support in 2D."
-#~ msgstr ""
-#~ "U videokaart kan slegs 3D-versnelling onder Xorg %s ondersteun.\n"
-#~ "DIt word wel onder Xorg %s ondersteun wat dalk beter\n"
-#~ "2D-ondersteuning het."
-
-#~ msgid ""
-#~ "Your card can have 3D hardware acceleration support but only with Xorg %"
-#~ "s,\n"
-#~ "NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
-#~ "Your card is supported by Xorg %s which may have a better support in 2D."
-#~ msgstr ""
-#~ "Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling onder XFree86 "
-#~ "%s\n"
-#~ "bied,\n"
-#~ "MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES.\n"
-#~ "U kaart word deur Xorg %s ondersteun, wat beter 2D-ondersteuning bied."
+#~ msgid "enable radio support"
+#~ msgstr "laat radio ondersteuning toe"
-#~ msgid "Xpmac (installation display driver)"
-#~ msgstr "Xpmac (installasievertoondrywer)"
-
-#~ msgid "4 billion colors (32 bits)"
-#~ msgstr "4 biljoen kleure (32 bis)"
-
-#~ msgid "XFree86 server: %s\n"
-#~ msgstr "XFree86 bediener: %s\n"
-
-#~ msgid "Here is the full list of keyboards available"
-#~ msgstr "Hierdie is die volledige lys van beskikbare sleutelborde"
-
-#~ msgid "Please insert the Boot floppy used in drive %s"
-#~ msgstr "Plaas die herlaaiskyf wat gebruik is, in aandrywer %s"
-
-#~ msgid ""
-#~ "Take advantage of valuable benefits, products and services by joining "
-#~ "Mandriva Club, such as:"
-#~ msgstr "Slaan munt uit die voordele wat Mandriva Club u bied, dinge soos:"
-
-#~ msgid "TCP/IP"
-#~ msgstr "TCP/IP"
-
-#~ msgid "Wireless"
-#~ msgstr "Draadloos"
-
-#~ msgid ""
-#~ "Due to incompatibilities of the 2.6 series kernel with the LSB runtime\n"
-#~ "tests, the 2.4 series kernel will be installed as the default to insure\n"
-#~ "compliance under the \"LSB\" group selection."
-#~ msgstr ""
-#~ "As gevolg van versoenbaarheidsprobleme tussen die 2.6 kernel\n"
-#~ "en die LSB toetse, sal 'n 2.4 reeks kernel by verstek installeer. Dit\n"
-#~ "verseker versoenbaarheid met die LSB-groep seksie."
-
-#~ msgid "XawTV is not installed!"
-#~ msgstr "XawTV in nie geïnstalleer nie"
-
-#~ msgid "Provider dns 1 (optional)"
-#~ msgstr "Voorsiener DNS 1 (opsioneel)"
-
-#~ msgid "Provider dns 2 (optional)"
-#~ msgstr "Voorsiener DNS 2 (opsioneel)"
-
-#~ msgid "DHCP Client"
-#~ msgstr "DHCP-Kliënt"
-
-#~ msgid "Display"
-#~ msgstr "Vertoon"
-
-#~ msgid "Display configuration"
-#~ msgstr "Vertoon konfigurasie"
-
-#~ msgid "Use tar and bzip2 (rather than tar and gzip)"
-#~ msgstr "Geberuik tar en bzip2 (instede van tar en gzip)"
-
-#~ msgid ""
-#~ "Change\n"
-#~ "Restore Path"
-#~ msgstr ""
-#~ "Verander\n"
-#~ "Herstelroete"
-
-#~ msgid "European protocol"
-#~ msgstr "Europese protokol"
-
-#~ msgid "Found \"%s\" interface do you want to use it ?"
-#~ msgstr "Het \"%s\"-koppelvlak gevind, wil u dit gebruik?"
-
-#~ msgid "Bewan USB modem"
-#~ msgstr "Bewan USB-modem"
-
-#~ msgid "What kind is your ISDN connection?"
-#~ msgstr "Watter tipe is u ISDN-konneksie?"
-
-#~ msgid "Do you want to start a new configuration ?"
-#~ msgstr "Wil u 'n nuwe konfigurasie begin ?"
-
-#~ msgid ""
-#~ "I have detected an ISDN PCI card, but I do not know its type. Please "
-#~ "select a PCI card on the next screen."
-#~ msgstr ""
-#~ "Ek het 'n ISDB PCI-kaart gevind, maar ek ken nie die tipe nie. Kies "
-#~ "asb.'n PCI-kaart op die volgende skerm."
-
-#~ msgid "No ISDN PCI card found. Please select one on the next screen."
-#~ msgstr ""
-#~ "Geen ISDN PCI-kaart gevind nie. Kies asb. een op die volgende skerm."
-
-#~ msgid "DrakTermServ"
-#~ msgstr "DrakTermServ"
-
-#~ msgid "Under Devel ... please wait."
-#~ msgstr "Onder Ontwikkeling... wag asseblief."
-
-#~ msgid "Windows (FAT32)"
-#~ msgstr "Windows (FAT32)"
-
-#~ msgid ""
-#~ "Please enter the name of the interface connected to the "
-#~ "internet. \n"
-#~ " \n"
-#~ "Examples:\n"
-#~ " ppp+ for modem or DSL connections, \n"
-#~ " eth0, or eth1 for cable connection, \n"
-#~ " ippp+ for a isdn connection.\n"
-#~ msgstr ""
-#~ "Voorsien asseblief die koppelvlak-naam wat verbind is aan die Internet.\n"
-#~ " \n"
-#~ "Voorbeelde:\n"
-#~ " ppp+ vir modem of DSL konneksies, \n"
-#~ " eth0, or eth1 vir kabel konneksies, \n"
-#~ " ippp+ vir 'n isdn konneksie.\n"
-
-#~ msgid ""
-#~ "If you plan to use aboot, be carefull to leave a free space (2048 sectors "
-#~ "is enough)\n"
-#~ "at the beginning of the disk"
-#~ msgstr ""
-#~ "Indien u beplan om 'aboot' te gebruik, los spasie aan die begin\n"
-#~ "van die skyf. (2048 sektors is genoeg)."
-
-#~ msgid "I can not add any more partition"
-#~ msgstr "Ek kan nie meer partisies byvoeg nie"
-
-#~ msgid "No wireless network adapter on your system!"
-#~ msgstr "Daar is geen draadlose netwerkkaart op hierdie rekenaar nie!"
-
-#~ msgid ""
-#~ "Here you can choose whether the printers connected to this machine should "
-#~ "be accessable by remote machines and by which remote machines."
-#~ msgstr ""
-#~ "Hier kan u kies of die drukkers wat aan hierdie masjien beskikbaar sal "
-#~ "wees aan eksterne rekenaars en watter rekenaars dit sal wees."
-
-#~ msgid ""
-#~ "The network configuration done during the installation cannot be started "
-#~ "now. Please check whether the network is accessable after booting your "
-#~ "system and correct the configuration using the %s Control Center, section "
-#~ "\"Network & Internet\"/\"Connection\", and afterwards set up the printer, "
-#~ "also using the %s Control Center, section \"Hardware\"/\"Printer\""
-#~ msgstr ""
-#~ "Die netwerk, soos opgestel gedurende die installasie, kom nie aan die "
-#~ "gang nie. Maak tog seker die netwerk is tot u beskikking, en gaan u "
-#~ "konfigurasie na deur die '%s Control Center' te gebruik. Die seksie "
-#~ "\"Network & Internet\"/ \"Connection\", daarna kan u die drukker opstel, "
-#~ "deur die %s Control Center se seksie \"Hardware\"/\"Printer\" te kies."
-
-#~ msgid ""
-#~ "You are about to install the printing system %s on a system running in "
-#~ "the %s security level.\n"
-#~ "\n"
-#~ "This printing system runs a daemon (background process) which waits for "
-#~ "print jobs and handles them. This daemon is also accessable by remote "
-#~ "machines through the network and so it is a possible point for attacks. "
-#~ "Therefore only a few selected daemons are started by default in this "
-#~ "security level.\n"
-#~ "\n"
-#~ "Do you really want to configure printing on this machine?"
-#~ msgstr ""
-#~ "U gaan nou die %s drukkerstelsel installeer op 'n rekenaar wat in die %s "
-#~ "sekuriteitsvlak is.\n"
-#~ "\n"
-#~ "Die drukkerstelsel loop 'n daemoon (agtergrond proses) wat wag vir "
-#~ "drukwerk en dit dan doen. Hierdie daemoon kan bereik word deur ander "
-#~ "rekenaars op die netwerk, so dit kan 'n swakpunt in die sekuriteit van u "
-#~ "rekenaar wees. Die reel is dat hoe minder van hierdie daemone loop, hoe "
-#~ "meer veilig is u rekenaar , maar u moet dit ook kan gebruik!\n"
-#~ "\n"
-#~ "Wil u drukkers opstel op hierdie rekenaar?"
-
-#~ msgid ""
-#~ "This uses the same syntax as the command line program 'cdrecord'. "
-#~ "'cdrecord -scanbus' would also show you the device number."
-#~ msgstr ""
-#~ "Hierdie een gebruik dieselfde sintaksis as die program 'cdrecord', "
-#~ "'cdrecord - scanbus' sal ook aan u die toestelnommer vertoon."
-
-#~ msgid "Can not create log file!"
-#~ msgstr "Kan nie staaflêer skep nie!"
-
-#~ msgid ""
-#~ "Enter your CD Writer device name\n"
-#~ " ex: 0,1,0"
-#~ msgstr ""
-#~ "Voorsien u CD-skrywer se toestelnaam\n"
-#~ " bv: 0,1,0"
-
-#~ msgid "dhcp"
-#~ msgstr "dhcp"
-
-#~ msgid "Tone dialing"
-#~ msgstr "Toon-skakel"
-
-#~ msgid "Pulse dialing"
-#~ msgstr "Puls skakel"
-
-#~ msgid ""
-#~ "Here you can choose whether the scanners connected to this machine should "
-#~ "be accessable by remote machines and by which remote machines."
-#~ msgstr ""
-#~ "Hier kan u kies of skandeerders wat aan hierdie rekenaar gekoppel is "
-#~ "toeganklik sal wees vir eksterne masjiene, asook watter masjiene."
-
-#~ msgid "Scientific Workstation"
-#~ msgstr "Wetenskaplike Werkstasie"
-
-#~ msgid "Scientific applications such as gnuplot"
-#~ msgstr "Wetenskaplike programme soos gnuplot"
-
-#~ msgid "Please select media for backup..."
-#~ msgstr "Kies asb. 'n media vir die rugsteun..."
-
-#~ msgid "Configuration of a remote printer"
-#~ msgstr "Konfigurasie van eksterne drukker"
-
-#~ msgid "Gnome Workstation"
-#~ msgstr "Gnome Werkstasie"
-
-#~ msgid "Running \"%s\" ..."
-#~ msgstr "Loop \"%s\" ..."
-
-#~ msgid "utopia 25"
-#~ msgstr "utopia 25"
-
-#~ msgid "On Hard Drive"
-#~ msgstr "Op hardeskyf"
-
-#~ msgid "Messages"
-#~ msgstr "Boodskappe"
-
-#~ msgid "Syslog"
-#~ msgstr "Syslog"
-
-#~ msgid "Compact"
-#~ msgstr "Kompak"
+#~ msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+#~ msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
diff --git a/perl-install/share/po/am.po b/perl-install/share/po/am.po
index dc413a929..c5ce5581e 100644
--- a/perl-install/share/po/am.po
+++ b/perl-install/share/po/am.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2006-03-05 18:57+0800\n"
+"POT-Creation-Date: 2007-03-21 12:10+0100\n"
"PO-Revision-Date: 2004-06-01 03:36+0100\n"
"Last-Translator: Alemayehu <alemayehu@gmx.at>\n"
"Language-Team: Amharic <am-translate@geez.org>\n"
@@ -13,754 +13,20 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../move/move.pm:292
-#, fuzzy, c-format
-msgid "Which USB key do you want to format?"
-msgstr "ምን ማድረግ ይፈልጋሉ?"
-
-#: ../move/move.pm:296
-#, c-format
-msgid ""
-"You are about to format a USB device \"%s\". This will delete all data on "
-"it.\n"
-"Make sure that the selected device is the USB key you want to format. \n"
-"We advise you to unplug all other USB storage devices while doing this "
-"operation."
-msgstr ""
-
-#: ../move/move.pm:448 ../move/move.pm:460
-#, c-format
-msgid "Key is not writable"
-msgstr "ቁልፍ ሊጻፍበት አይችልም"
-
-#: ../move/move.pm:450
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-
-#: ../move/move.pm:452
-#, c-format
-msgid "Retry"
-msgstr "እንደገና ሞክር"
-
-#: ../move/move.pm:453 ../move/move.pm:497
-#, c-format
-msgid "Continue without USB key"
-msgstr "ያለ USB ቁልፍ ቀጥል"
-
-#: ../move/move.pm:462
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled, but we can not safely\n"
-"unplug it now.\n"
-"\n"
-"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandriva Move again."
-msgstr ""
-
-#: ../move/move.pm:468 help.pm:410 install_steps_interactive.pm:1303
-#, c-format
-msgid "Reboot"
-msgstr "እንደገና ጀምር"
-
-#: ../move/move.pm:473
-#, c-format
-msgid ""
-"Your USB key does not have any valid Windows (FAT) partitions.\n"
-"We need one to continue (beside, it's more standard so that you\n"
-"will be able to move and access your files from machines\n"
-"running Windows). Please plug in an USB key containing a\n"
-"Windows partition instead.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-
-#: ../move/move.pm:483
-#, c-format
-msgid ""
-"We did not detect any USB key on your system. If you\n"
-"plug in an USB key now, Mandriva Move will have the ability\n"
-"to transparently save the data in your home directory and\n"
-"system wide configuration, for next boot on this computer\n"
-"or another one. Note: if you plug in a key now, wait several\n"
-"seconds before detecting again.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-
-#: ../move/move.pm:494
-#, c-format
-msgid "Need a key to save your data"
-msgstr "ዳታዎትን ለማስቀመጥ ቁልፍ ያስፈልጋል"
-
-#: ../move/move.pm:496
-#, c-format
-msgid "Detect USB key again"
-msgstr "የUSB ቁልፍ እንደገና ተፈልጎ ተገኝቷል"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Setting up USB key"
-msgstr "የUSB ቁልፍ ማቀናጀት"
-
-#: ../move/move.pm:517
-#, fuzzy, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "እባክዎን ይጠብቁ፣ መሳሪያዎችን ፈልጎ በማግኘት እና በማስተካከል ላይ ነው..."
-
-#: ../move/move.pm:546
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Auto configuration"
-msgstr "በራስ-ገዝ ምርጫ"
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "እባክዎ ይጠብቁ፣ መሳሪያዎችን ፈልጎ በማግኘት እና በማስተካከል ላይ ነው..."
-
-#: ../move/move.pm:604 ../move/move.pm:660 ../move/move.pm:664
-#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/interactive.pm:231
-#: diskdrake/interactive.pm:244 diskdrake/interactive.pm:405
-#: diskdrake/interactive.pm:423 diskdrake/interactive.pm:560
-#: diskdrake/interactive.pm:565 diskdrake/smbnfs_gtk.pm:41 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:52 fsedit.pm:218 install_any.pm:1775
-#: install_any.pm:1827 install_steps.pm:81 install_steps_interactive.pm:37
-#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
-#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
-#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
-#: network/netconnect.pm:837 network/netconnect.pm:866
-#: network/netconnect.pm:965 network/netconnect.pm:969
-#: network/netconnect.pm:973 network/netconnect.pm:978
-#: network/netconnect.pm:1123 network/netconnect.pm:1127
-#: network/netconnect.pm:1246 network/netconnect.pm:1251
-#: network/netconnect.pm:1271 network/netconnect.pm:1428
-#: network/thirdparty.pm:321 network/thirdparty.pm:328
-#: network/thirdparty.pm:372 network/thirdparty.pm:374
-#: network/thirdparty.pm:395 network/thirdparty.pm:419
-#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
-#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
-#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
-#: printer/printerdrake.pm:450 printer/printerdrake.pm:514
-#: printer/printerdrake.pm:686 printer/printerdrake.pm:690
-#: printer/printerdrake.pm:772 printer/printerdrake.pm:1555
-#: printer/printerdrake.pm:1603 printer/printerdrake.pm:1640
-#: printer/printerdrake.pm:1685 printer/printerdrake.pm:1689
-#: printer/printerdrake.pm:1703 printer/printerdrake.pm:1795
-#: printer/printerdrake.pm:1876 printer/printerdrake.pm:1880
-#: printer/printerdrake.pm:1884 printer/printerdrake.pm:1933
-#: printer/printerdrake.pm:1991 printer/printerdrake.pm:1995
-#: printer/printerdrake.pm:2009 printer/printerdrake.pm:2129
-#: printer/printerdrake.pm:2133 printer/printerdrake.pm:2176
-#: printer/printerdrake.pm:2249 printer/printerdrake.pm:2267
-#: printer/printerdrake.pm:2276 printer/printerdrake.pm:2285
-#: printer/printerdrake.pm:2296 printer/printerdrake.pm:2360
-#: printer/printerdrake.pm:2512 printer/printerdrake.pm:2947
-#: printer/printerdrake.pm:3231 printer/printerdrake.pm:3237
-#: printer/printerdrake.pm:3802 printer/printerdrake.pm:3806
-#: printer/printerdrake.pm:3810 printer/printerdrake.pm:4206
-#: printer/printerdrake.pm:4446 printer/printerdrake.pm:4474
-#: printer/printerdrake.pm:4551 printer/printerdrake.pm:4617
-#: printer/printerdrake.pm:4737 standalone/drakTermServ:422
-#: standalone/drakTermServ:492 standalone/drakTermServ:501
-#: standalone/drakTermServ:812 standalone/drakTermServ:819
-#: standalone/drakTermServ:845 standalone/drakTermServ:894
-#: standalone/drakTermServ:1146 standalone/drakTermServ:1181
-#: standalone/drakTermServ:1634 standalone/drakTermServ:1643
-#: standalone/drakTermServ:1651 standalone/drakTermServ:1656
-#: standalone/drakTermServ:1664 standalone/drakTermServ:1680
-#: standalone/drakTermServ:1700 standalone/drakauth:36
-#: standalone/drakbackup:511 standalone/drakbackup:625
-#: standalone/drakbackup:1110 standalone/drakbackup:1141
-#: standalone/drakbackup:1332 standalone/drakbackup:1664
-#: standalone/drakbackup:1820 standalone/drakbackup:2548
-#: standalone/drakbackup:4463 standalone/drakclock:124
-#: standalone/drakconnect:676 standalone/drakconnect:680
-#: standalone/drakconnect:685 standalone/drakconnect:700
-#: standalone/drakfont:209 standalone/drakfont:222 standalone/drakfont:260
-#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakhosts:98
-#: standalone/drakhosts:246 standalone/drakhosts:253 standalone/drakhosts:260
-#: standalone/draknfs:306 standalone/draknfs:609 standalone/draknfs:616
-#: standalone/draknfs:623 standalone/drakroam:33 standalone/draksambashare:384
-#: standalone/draksambashare:388 standalone/draksambashare:391
-#: standalone/draksambashare:394 standalone/draksambashare:453
-#: standalone/draksambashare:477 standalone/draksambashare:551
-#: standalone/draksambashare:633 standalone/draksambashare:700
-#: standalone/draksambashare:800 standalone/draksambashare:807
-#: standalone/draksambashare:942 standalone/draksambashare:1133
-#: standalone/draksambashare:1142 standalone/draksambashare:1151
-#: standalone/draksambashare:1172 standalone/draksambashare:1181
-#: standalone/draksambashare:1190 standalone/draksambashare:1210
-#: standalone/draksambashare:1218 standalone/draksambashare:1230
-#: standalone/draksplash:162 standalone/drakxtv:107
-#: standalone/finish-install:79 standalone/logdrake:171
-#: standalone/logdrake:439 standalone/logdrake:444 standalone/scannerdrake:59
-#: standalone/scannerdrake:202 standalone/scannerdrake:261
-#: standalone/scannerdrake:732 standalone/scannerdrake:743
-#: standalone/scannerdrake:882 standalone/scannerdrake:893
-#: standalone/scannerdrake:963 wizards.pm:95 wizards.pm:99 wizards.pm:121
-#, c-format
-msgid "Error"
-msgstr "ስህተት"
-
-#: ../move/move.pm:605 install_steps.pm:82
-#, c-format
-msgid ""
-"An error occurred, but I do not know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-
-#: ../move/move.pm:660 install_steps_interactive.pm:37
-#, c-format
-msgid "An error occurred"
-msgstr "ስህተት ተፈጥሯል"
-
-#: ../move/move.pm:666
-#, c-format
-msgid ""
-"An error occurred:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"This may come from corrupted system configuration files\n"
-"on the USB key, in this case removing them and then\n"
-"rebooting Mandriva Move would fix the problem. To do\n"
-"so, click on the corresponding button.\n"
-"\n"
-"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-
-#: ../move/move.pm:681
-#, c-format
-msgid "Remove system config files"
-msgstr "የሲስተም ማስተካከያ ፍይሎችን አስወግድ"
-
-#: ../move/move.pm:682
-#, c-format
-msgid "Simply reboot"
-msgstr "በቀላሉ እንደገና አስጀምር"
-
-#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr ""
-
-#: ../move/tree/mdk_totem:71
-#, c-format
-msgid "Kill those programs"
-msgstr "እነዚህን ፕሮግራሞች አቋርጥ"
-
-#: ../move/tree/mdk_totem:72
-#, c-format
-msgid "No CDROM support"
-msgstr "የሲዲ-ሮም ድጋፍ የለም"
-
-#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1062 diskdrake/interactive.pm:1072
-#: diskdrake/interactive.pm:1125
-#, c-format
-msgid "Read carefully!"
-msgstr "በጥንቃቄ ያንብቡ!"
-
-#: ../move/tree/mdk_totem:77
-#, c-format
-msgid ""
-"You can not use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-
-#: ../move/tree/mdk_totem:101
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr ""
-
-#: Xconfig/card.pm:13
-#, c-format
-msgid "256 kB"
-msgstr "256 kB"
-
-#: Xconfig/card.pm:14
-#, c-format
-msgid "512 kB"
-msgstr "512 kB"
-
-#: Xconfig/card.pm:15
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
-
-#: Xconfig/card.pm:16
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
-
-#: Xconfig/card.pm:17
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
-
-#: Xconfig/card.pm:18
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
-
-#: Xconfig/card.pm:19
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: Xconfig/card.pm:20
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
-
-#: Xconfig/card.pm:21
-#, c-format
-msgid "64 MB or more"
-msgstr "64 MB ወይም ከዚህ በላይ"
-
-#: Xconfig/card.pm:162
-#, c-format
-msgid "X server"
-msgstr "X ሰርቨር"
-
-#: Xconfig/card.pm:163
-#, c-format
-msgid "Choose an X server"
-msgstr "የX ሰርቨር ይምረጡ"
-
-#: Xconfig/card.pm:195
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Multi-head ምርጫ"
-
-#: Xconfig/card.pm:196
-#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-
-#: Xconfig/card.pm:265
-#, c-format
-msgid "Can not install Xorg package: %s"
-msgstr "%s የXorg ጥቅልን መትከል አልተቻለም"
-
-#: Xconfig/card.pm:275
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr ""
-
-#: Xconfig/card.pm:371
-#, c-format
-msgid "Xorg configuration"
-msgstr "የXFree ማስተካከያ"
-
-#: Xconfig/card.pm:373
-#, c-format
-msgid "Which configuration of Xorg do you want to have?"
-msgstr "የትኛውን የXFree ምርጫ እንዲኖሮት ይፈልጋሉ?"
-
-#: Xconfig/card.pm:406
-#, c-format
-msgid "Configure all heads independently"
-msgstr ""
-
-#: Xconfig/card.pm:407
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "የXinerama ቅጥያዎችን ተጠቀም"
-
-#: Xconfig/card.pm:412
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "ካርድ ብቻ አስተካክል \"%s\"%s"
-
-#: Xconfig/card.pm:424 Xconfig/various.pm:23
-#, c-format
-msgid "Xorg %s"
-msgstr "Xorg %s"
-
-#: Xconfig/card.pm:431 Xconfig/various.pm:22
-#, c-format
-msgid "Xorg %s with 3D hardware acceleration"
-msgstr ""
-
-#: Xconfig/card.pm:433
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with Xorg %s."
-msgstr ""
-
-#: Xconfig/card.pm:439
-#, c-format
-msgid "Xorg %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr ""
-
-#: Xconfig/card.pm:441
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with Xorg %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:1021
-#, c-format
-msgid "Custom"
-msgstr "ምርጫ"
-
-#: Xconfig/main.pm:127 any.pm:742 diskdrake/dav.pm:26 help.pm:15
-#: install_steps_interactive.pm:1303 printer/printerdrake.pm:882
-#: printer/printerdrake.pm:899 printer/printerdrake.pm:4546
-#: printer/printerdrake.pm:5010 standalone/drakhosts:263
-#: standalone/drakroam:230 standalone/draksplash:93 standalone/logdrake:176
-#: standalone/net_applet:103 standalone/scannerdrake:494
-#, c-format
-msgid "Quit"
-msgstr "ውጣ"
-
-#: Xconfig/main.pm:129
-#, c-format
-msgid "Graphic Card"
-msgstr "የንድፍ ካርድ"
-
-#: Xconfig/main.pm:132 Xconfig/monitor.pm:110
-#, c-format
-msgid "Monitor"
-msgstr ""
-
-#: Xconfig/main.pm:135 Xconfig/resolution_and_depth.pm:289
-#, c-format
-msgid "Resolution"
-msgstr "ጽናት"
-
-#: Xconfig/main.pm:138
-#, c-format
-msgid "Test"
-msgstr "ሙከራ"
-
-#: Xconfig/main.pm:143 diskdrake/dav.pm:65 diskdrake/interactive.pm:449
-#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
-#: printer/printerdrake.pm:1112 standalone/drakfont:493
-#: standalone/drakfont:548
-#, c-format
-msgid "Options"
-msgstr "ምርጫዎች"
-
-#: Xconfig/main.pm:178
-#, c-format
-msgid "Your Xorg configuration file is broken, we will ignore it."
-msgstr ""
-
-#: Xconfig/main.pm:196
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor for head #%d"
-msgstr ""
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor"
-msgstr "ሞኒተር ይምረጡ"
-
-#: Xconfig/monitor.pm:117
-#, c-format
-msgid "Plug'n Play"
-msgstr "ሰክተው ይጫወቱ"
-
-#: Xconfig/monitor.pm:118 mouse.pm:49
-#, c-format
-msgid "Generic"
-msgstr "አጠቃላይ"
-
-#: Xconfig/monitor.pm:119 standalone/drakconnect:591 standalone/harddrake2:54
-#: standalone/harddrake2:88
-#, c-format
-msgid "Vendor"
-msgstr ""
-
-#: Xconfig/monitor.pm:129
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr ""
-
-#: Xconfig/monitor.pm:137
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-
-#: Xconfig/monitor.pm:144
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr ""
-
-#: Xconfig/monitor.pm:145
-#, c-format
-msgid "Vertical refresh rate"
-msgstr ""
-
-#: Xconfig/resolution_and_depth.pm:10
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 ቀለሞች (8 bits)"
-
-#: Xconfig/resolution_and_depth.pm:11
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ሺ ቀለሞች (15 bits)"
-
-#: Xconfig/resolution_and_depth.pm:12
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ሺ ቀለሞች (16 bits)"
-
-#: Xconfig/resolution_and_depth.pm:13
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 ሚሊዮን ቀለሞች (24 bits)"
-
-#: Xconfig/resolution_and_depth.pm:127
-#, c-format
-msgid "Resolutions"
-msgstr ""
-
-#: Xconfig/resolution_and_depth.pm:311 diskdrake/hd_gtk.pm:336
-#: install_steps_gtk.pm:288 mouse.pm:168 services.pm:162
-#: standalone/drakbackup:1606 standalone/drakperm:250
-#, c-format
-msgid "Other"
-msgstr "ሌላ"
-
-#: Xconfig/resolution_and_depth.pm:360
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr ""
-
-#: Xconfig/resolution_and_depth.pm:361
-#, c-format
-msgid "Graphics card: %s"
-msgstr "የንድፎ ካርድ: %s"
-
-#: Xconfig/resolution_and_depth.pm:375 interactive.pm:119 interactive.pm:436
-#: interactive/http.pm:103 interactive/http.pm:156 interactive/newt.pm:321
-#: interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:143
-#: standalone/drakTermServ:222 standalone/drakTermServ:543
-#: standalone/drakbackup:1372 standalone/drakbackup:4123
-#: standalone/drakbackup:4183 standalone/drakbackup:4227
-#: standalone/drakbackup:4481 standalone/drakconnect:158
-#: standalone/drakconnect:852 standalone/drakconnect:939
-#: standalone/drakconnect:1030 standalone/drakfont:569 standalone/drakfont:579
-#: standalone/draksplash:173 standalone/drakups:210 standalone/net_monitor:339
-#: ugtk2.pm:392 ugtk2.pm:490 ugtk2.pm:899 ugtk2.pm:922
-#, c-format
-msgid "Ok"
-msgstr "እሺ"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/smbnfs_gtk.pm:80 help.pm:90
-#: help.pm:445 install_steps_gtk.pm:455 install_steps_interactive.pm:406
-#: install_steps_interactive.pm:811 interactive.pm:120 interactive.pm:437
-#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
-#: interactive/stdio.pm:39 interactive/stdio.pm:142
-#: printer/printerdrake.pm:3882 standalone/drakautoinst:215
-#: standalone/drakbackup:1372 standalone/drakbackup:4052
-#: standalone/drakbackup:4056 standalone/drakbackup:4111
-#: standalone/drakbackup:4481 standalone/drakconnect:157
-#: standalone/drakconnect:937 standalone/drakconnect:1029
-#: standalone/drakfont:579 standalone/drakfont:655 standalone/drakfont:733
-#: standalone/draksplash:173 standalone/drakups:217 standalone/logdrake:176
-#: standalone/net_monitor:338 ugtk2.pm:386 ugtk2.pm:488 ugtk2.pm:497
-#: ugtk2.pm:899
-#, c-format
-msgid "Cancel"
-msgstr "ተወው"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/hd_gtk.pm:150
-#: install_steps_gtk.pm:232 install_steps_gtk.pm:617 interactive.pm:567
-#: interactive/gtk.pm:682 interactive/gtk.pm:684 standalone/drakTermServ:311
-#: standalone/drakbackup:4048 standalone/drakbug:105
-#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:511 standalone/draknfs:206 standalone/drakperm:133
-#: standalone/draksambashare:320 standalone/draksec:344 standalone/draksec:346
-#: standalone/draksec:364 standalone/draksec:366 ugtk2.pm:1031 ugtk2.pm:1032
-#, c-format
-msgid "Help"
-msgstr "እርዳታ"
-
-#: Xconfig/test.pm:30
-#, c-format
-msgid "Test of the configuration"
-msgstr "የምርጫው ሙከራ"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "ምርጫውን መሞከር ይፈልጋሉ?"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "ማስጠንቀቂያ: ይህንን የንድፍ ካርድ ሲሞክሩ፤ ኮምፒውተሮ በድንገት ሊቆም ይችላል"
-
-#: Xconfig/test.pm:69
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "በ%d ሴኮንዶች ውስጥ በመውጣት ላይ"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "ይህ ትክክለኛ ምርጫ ነው?"
-
-#: Xconfig/various.pm:29
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "የመተየቢያ አቀራረብ: %s\n"
-
-#: Xconfig/various.pm:30
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "የመጠቆሚያው ዓይነት: %s\n"
-
-#: Xconfig/various.pm:31
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "የመጠቆሚያ መሳሪያ: %s\n"
-
-#: Xconfig/various.pm:33
-#, c-format
-msgid "Monitor: %s\n"
-msgstr ""
-
-#: Xconfig/various.pm:34
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr ""
-
-#: Xconfig/various.pm:35
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr ""
-
-#: Xconfig/various.pm:37
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "የንድፍ ካርድ: %s\n"
-
-#: Xconfig/various.pm:38
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "የንድፍ ማስታወሻ: %s kB\n"
-
-#: Xconfig/various.pm:40
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "የቀለም ወሰን፦ %s\n"
-
-#: Xconfig/various.pm:41
-#, c-format
-msgid "Resolution: %s\n"
-msgstr ""
-
-#: Xconfig/various.pm:43
-#, c-format
-msgid "Xorg driver: %s\n"
-msgstr ""
-
-#: Xconfig/various.pm:72
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "የመነሻ ላይ ንድፈ እይታ"
-
-#: Xconfig/various.pm:74
-#, c-format
-msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(Xorg) upon booting.\n"
-"Would you like Xorg to start when you reboot?"
-msgstr ""
-
-#: Xconfig/various.pm:87
-#, c-format
-msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
-msgstr ""
-
-#: Xconfig/various.pm:99
-#, c-format
-msgid "What norm is your TV using?"
-msgstr ""
-
-#: Xconfig/xfree.pm:648
-#, c-format
-msgid ""
-"_:weird aspect ratio\n"
-"other"
-msgstr ""
-
-#: any.pm:153 harddrake/sound.pm:195 interactive.pm:474 pkgs.pm:474
-#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
-#: standalone/drakups:99 standalone/drakxtv:92 standalone/harddrake2:375
-#: standalone/service_harddrake:235
+#: any.pm:157 diskdrake/interactive.pm:422 diskdrake/interactive.pm:617
+#: diskdrake/interactive.pm:798 diskdrake/interactive.pm:842
+#: diskdrake/interactive.pm:904 diskdrake/interactive.pm:1188 do_pkgs.pm:209
+#: do_pkgs.pm:255 harddrake/sound.pm:195 interactive.pm:576
#, c-format
msgid "Please wait"
msgstr "እባክዎ ይጠብቁ"
-#: any.pm:153
+#: any.pm:157
#, c-format
msgid "Bootloader installation in progress"
msgstr "የአስጀማሪ ተከላ በመከናወን ላይ"
-#: any.pm:164
+#: any.pm:168
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -771,12 +37,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:175
+#: any.pm:179
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
-#: any.pm:181
+#: any.pm:185
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -787,7 +53,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:219
+#: any.pm:223
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -797,350 +63,356 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:242 help.pm:740
+#: any.pm:246
#, c-format
msgid "First sector of drive (MBR)"
msgstr ""
-#: any.pm:243
+#: any.pm:247
#, c-format
msgid "First sector of the root partition"
msgstr ""
-#: any.pm:245
+#: any.pm:249
#, c-format
msgid "On Floppy"
msgstr "ፍሎፒ ላይ"
-#: any.pm:247 help.pm:740 printer/printerdrake.pm:4203
+#: any.pm:251
#, c-format
msgid "Skip"
msgstr "ዝለል"
-#: any.pm:251
+#: any.pm:255
#, c-format
msgid "LILO/grub Installation"
msgstr "የLILO/grub ተከላ"
-#: any.pm:252
+#: any.pm:257
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "አስጀማሪውን የት መትከል ይፈልጋሉ?"
-#: any.pm:278 standalone/drakboot:269
+#: any.pm:284
#, c-format
msgid "Boot Style Configuration"
msgstr "የአጀማመር ዘይቤ ምርጫ"
-#: any.pm:280 any.pm:281 any.pm:314 any.pm:315
+#: any.pm:294 any.pm:326 any.pm:327
#, c-format
msgid "Bootloader main options"
msgstr "የአስጀማሪ ዋና ምርጫዎች"
-#: any.pm:286
-#, c-format
-msgid "Give the ram size in MB"
-msgstr ""
-
-#: any.pm:288
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-
-#: any.pm:289 any.pm:628 authentication.pm:192
-#, c-format
-msgid "The passwords do not match"
-msgstr "ሚስጢራዊ ቃላቱ አይመሳሰሉም"
-
-#: any.pm:289 any.pm:628 authentication.pm:192 diskdrake/interactive.pm:1336
+#: any.pm:299
#, c-format
-msgid "Please try again"
-msgstr "እባክዎ እንደገና ይሞክሩ"
+msgid "Bootloader"
+msgstr "አስጀማሪያ"
-#: any.pm:294 any.pm:319
+#: any.pm:300 any.pm:331
#, c-format
msgid "Bootloader to use"
msgstr "ጥቅም ላይ የሚውለው አስጀማሪ"
-#: any.pm:296 any.pm:321
+#: any.pm:302 any.pm:333
#, c-format
msgid "Boot device"
msgstr "የመጀመሪያ መሳሪያ"
-#: any.pm:298
+#: any.pm:304
+#, c-format
+msgid "Main options"
+msgstr ""
+
+#: any.pm:305
#, c-format
msgid "Delay before booting default image"
msgstr ""
-#: any.pm:299
+#: any.pm:306
#, c-format
msgid "Enable ACPI"
msgstr "ACPI አስቻል"
-#: any.pm:301
-#, c-format
-msgid "Force no APIC"
-msgstr "APIC እንዳይኖር አስገድድ"
+#: any.pm:307
+#, fuzzy, c-format
+msgid "Enable APIC"
+msgstr "ACPI አስቻል"
-#: any.pm:303
-#, c-format
-msgid "Force No Local APIC"
-msgstr ""
+#: any.pm:308
+#, fuzzy, c-format
+msgid "Enable Local APIC"
+msgstr "ACPI አስቻል"
-#: any.pm:305 any.pm:662 authentication.pm:197 diskdrake/smbnfs_gtk.pm:180
-#: network/netconnect.pm:584 printer/printerdrake.pm:1867
-#: printer/printerdrake.pm:1988 standalone/drakbackup:1650
-#: standalone/drakbackup:3641 standalone/drakups:297
+#: any.pm:310 any.pm:686 authentication.pm:196 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "ሚስጢራዊ ቃል"
-#: any.pm:306 any.pm:663 authentication.pm:198
+#: any.pm:312 authentication.pm:207
+#, c-format
+msgid "The passwords do not match"
+msgstr "ሚስጢራዊ ቃላቱ አይመሳሰሉም"
+
+#: any.pm:312 authentication.pm:207 diskdrake/interactive.pm:1348
+#, c-format
+msgid "Please try again"
+msgstr "እባክዎ እንደገና ይሞክሩ"
+
+#: any.pm:313
+#, c-format
+msgid "You can not use a password with %s"
+msgstr ""
+
+#: any.pm:316 any.pm:687 authentication.pm:197
#, c-format
msgid "Password (again)"
msgstr "ሚስጢራዊ ቃል (እንደገና)"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "Restrict command line options"
msgstr "የትእዛዝ መስመር ምርጫዎችን ወስን"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "restrict"
msgstr "ወስን"
-#: any.pm:309
+#: any.pm:318
+#, c-format
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr ""
+
+#: any.pm:320
#, c-format
msgid "Clean /tmp at each boot"
msgstr "በየጅማሬው /tmpን አጽዳ"
-#: any.pm:310
+#: any.pm:321
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr ""
-#: any.pm:320
+#: any.pm:322
+#, c-format
+msgid "Give the ram size in MB"
+msgstr ""
+
+#: any.pm:332
#, c-format
msgid "Init Message"
msgstr "መልዕክት አስጀምር"
-#: any.pm:322
+#: any.pm:334
#, c-format
msgid "Open Firmware Delay"
msgstr "የFirmware አዘግይ ክፈት"
-#: any.pm:323
+#: any.pm:335
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""
-#: any.pm:324
+#: any.pm:336
#, c-format
msgid "Enable CD Boot?"
msgstr "ከዲሲ ማስጀመር አስችል?"
-#: any.pm:325
+#: any.pm:337
#, c-format
msgid "Enable OF Boot?"
msgstr ""
-#: any.pm:326
+#: any.pm:338
#, c-format
msgid "Default OS?"
msgstr "ቀዳሚ OS?"
-#: any.pm:380
+#: any.pm:404
#, c-format
msgid "Image"
msgstr "ምስል"
-#: any.pm:381 any.pm:391
+#: any.pm:405 any.pm:418
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:382 any.pm:404
+#: any.pm:406 any.pm:431
#, c-format
msgid "Append"
msgstr ""
-#: any.pm:384 standalone/drakboot:271 standalone/drakboot:275
+#: any.pm:408
+#, c-format
+msgid "Xen append"
+msgstr ""
+
+#: any.pm:411
#, c-format
msgid "Video mode"
msgstr "የቪዲዮ አሰራር ዘዴ"
-#: any.pm:386
+#: any.pm:413
#, c-format
msgid "Initrd"
msgstr ""
-#: any.pm:387
+#: any.pm:414
#, fuzzy, c-format
msgid "Network profile"
msgstr "የተጠቃሚው እይታ"
-#: any.pm:396 any.pm:401 any.pm:403 diskdrake/interactive.pm:450
+#: any.pm:423 any.pm:428 any.pm:430 diskdrake/interactive.pm:443
#, c-format
msgid "Label"
msgstr "መለያ"
-#: any.pm:398 any.pm:408 harddrake/v4l.pm:438 standalone/drakbackup:2104
-#: standalone/draksec:52
+#: any.pm:425 any.pm:433 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "ቀዳሚ"
-#: any.pm:405
-#, c-format
-msgid "Initrd-size"
-msgstr ""
-
-#: any.pm:407
+#: any.pm:432
#, c-format
msgid "NoVideo"
msgstr ""
-#: any.pm:418
+#: any.pm:443
#, c-format
msgid "Empty label not allowed"
msgstr ""
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a kernel image"
msgstr ""
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a root partition"
msgstr ""
-#: any.pm:420
+#: any.pm:445
#, c-format
msgid "This label is already used"
msgstr ""
-#: any.pm:434
+#: any.pm:459
#, c-format
msgid "Which type of entry do you want to add?"
msgstr ""
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Linux"
msgstr "ሊኑክስ"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Other OS (SunOS...)"
msgstr "ሌሎች የመጠቀሚያ ዜዴዎች (SunOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (MacOS...)"
msgstr "ሌሎች የመጠቀሚያ ዜዴዎች (MacOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (Windows...)"
msgstr "ሌሎች የመጠቀሚያ ዜዴዎች (Windows...)"
-#: any.pm:464
+#: any.pm:489
#, 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 ""
-#: any.pm:614
+#: any.pm:640
#, c-format
msgid "access to X programs"
msgstr "የX ፕሮግራሞች ማሳያ"
-#: any.pm:615
+#: any.pm:641
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:616
+#: any.pm:642
#, c-format
msgid "allow \"su\""
msgstr "ፍቀድ \"su\""
-#: any.pm:617
+#: any.pm:643
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:618
+#: any.pm:644
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:619
+#: any.pm:645
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:624
+#: any.pm:650
#, c-format
msgid "(already added %s)"
msgstr "(%s በፊት ተጨምሯል)"
-#: any.pm:629
-#, c-format
-msgid "This password is too simple"
-msgstr "ይህ ሚስጢራዊ ቃል በጣም ቀላል ነው"
-
-#: any.pm:630
+#: any.pm:657
#, c-format
msgid "Please give a user name"
msgstr "እባክዎ የተጠቃሚ ስም ይስጡ"
-#: any.pm:631
+#: any.pm:658
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:632
+#: any.pm:659
#, c-format
msgid "The user name is too long"
msgstr "የተጠቃሚ ስሙ በጣም ረጅም ነው"
-#: any.pm:633
+#: any.pm:660
#, c-format
msgid "This user name has already been added"
msgstr "ይህ የተጠቃሚ ስም በፊትም ነበር"
-#: any.pm:634 any.pm:665
+#: any.pm:661 any.pm:689
#, c-format
msgid "User ID"
msgstr "የተጠቃሚ መለያ ቁጥር"
-#: any.pm:635 any.pm:666
+#: any.pm:662 any.pm:690
#, c-format
msgid "Group ID"
msgstr "የብድን መለያ ቁጥር"
-#: any.pm:638
+#: any.pm:665
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "(%f በሰነድ-ስም ይተካል፤ %l በመስመር ቁጥር)"
-#: any.pm:639
+#: any.pm:666
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:644 standalone/draksambashare:1214
+#: any.pm:671
#, c-format
msgid "Add user"
msgstr "ተጠቃሚ ጨምር"
-#: any.pm:646
+#: any.pm:673
#, c-format
msgid ""
"Enter a user\n"
@@ -1149,98 +421,94 @@ msgstr ""
"የተጠቃሚ ስም ያስገቡ\n"
"%s"
-#: any.pm:649 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:154
-#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:81 help.pm:531
-#: interactive/http.pm:151 printer/printerdrake.pm:197
-#: printer/printerdrake.pm:382 printer/printerdrake.pm:5010
-#: standalone/drakbackup:2836 standalone/scannerdrake:685
-#: standalone/scannerdrake:835
+#: any.pm:676 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:166
+#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:82
+#: interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "ጨርሷል"
-#: any.pm:650 help.pm:52
+#: any.pm:677
#, c-format
msgid "Accept user"
msgstr "ተጠቃሚ ተቀበል"
-#: any.pm:660
+#: any.pm:682
#, c-format
msgid "Real name"
msgstr "እውነተኛ ስም"
-#: any.pm:661 standalone/drakbackup:1645
+#: any.pm:685
#, fuzzy, c-format
msgid "Login name"
msgstr "Name=ዝምብለህ ይግባ"
-#: any.pm:664
+#: any.pm:688
#, c-format
msgid "Shell"
msgstr "ሼል"
-#: any.pm:668
-#, c-format
-msgid "Icon"
-msgstr "ምልክት"
-
-#: any.pm:715 security/l10n.pm:14
+#: any.pm:735 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr ""
-#: any.pm:716
+#: any.pm:736
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:717
+#: any.pm:737
#, fuzzy, c-format
msgid "Use this feature"
msgstr "ይህንን ሁኔታ መጠቀም ይፈልጋሉ?"
-#: any.pm:718
+#: any.pm:738
#, c-format
msgid "Choose the default user:"
msgstr "ቀዳሚ ተጠቃሚ ይምረጡ:"
-#: any.pm:719
+#: any.pm:739
#, c-format
msgid "Choose the window manager to run:"
msgstr ""
-#: any.pm:740
+#: any.pm:767
#, c-format
msgid "License agreement"
msgstr ""
-#: any.pm:745
+#: any.pm:770 diskdrake/dav.pm:26
+#, c-format
+msgid "Quit"
+msgstr "ውጣ"
+
+#: any.pm:773
#, c-format
msgid "Release Notes"
msgstr ""
-#: any.pm:748 help.pm:15 install_steps_gtk.pm:539
-#: install_steps_interactive.pm:715 standalone/drakautoinst:214
+#: any.pm:776
#, c-format
msgid "Accept"
msgstr "ተቀበል"
-#: any.pm:748 install_steps_gtk.pm:539 install_steps_interactive.pm:715
+#: any.pm:776
#, c-format
msgid "Refuse"
msgstr "አትቀበል"
-#: any.pm:765 any.pm:833
+#: any.pm:795 any.pm:863
#, c-format
msgid "Please choose a language to use."
msgstr "እባክዎ መጠቀሚያ ቋንቋ ይምረጡ።"
-#: any.pm:766 any.pm:834
+#: any.pm:796 any.pm:864
#, fuzzy, c-format
msgid "Language choice"
msgstr "የመመሪያ ገጾች"
-#: any.pm:794
+#: any.pm:826
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
@@ -1248,70 +516,72 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:797
+#: any.pm:829
#, c-format
msgid "Multi languages"
msgstr ""
-#: any.pm:813 any.pm:842 help.pm:648
+#: any.pm:841 any.pm:872
#, c-format
-msgid "Use Unicode by default"
-msgstr "ዩኒኮድን በቀዳሚነት ተጠቀም"
+msgid "Old compatibility (non UTF-8) encoding"
+msgstr ""
-#: any.pm:814 help.pm:648
+#: any.pm:843
#, c-format
msgid "All languages"
msgstr "ሁሉንም ቋንቋዎች"
-#: any.pm:888 help.pm:567 help.pm:856 install_steps_interactive.pm:932
+#: any.pm:918
#, c-format
msgid "Country / Region"
msgstr "ሀገር / አካባቢ"
-#: any.pm:890
+#: any.pm:920
#, c-format
msgid "Please choose your country."
msgstr "እባክዎ ሀገሮን ይምረጡ።"
-#: any.pm:892
+#: any.pm:922
#, c-format
msgid "Here is the full list of available countries"
msgstr "እዚህ ያሉት ሀገሮች ሙሉ ዝርዝር ይገኛል"
-#: any.pm:893
+#: any.pm:923
#, fuzzy, c-format
msgid "Other Countries"
msgstr "ሌላ ምርጫዎች"
-#: any.pm:893 help.pm:52 help.pm:410 help.pm:432 help.pm:648 help.pm:723
-#: interactive.pm:397
+#: any.pm:923 interactive.pm:477
#, c-format
msgid "Advanced"
msgstr "ጠላቂ"
-#: any.pm:901
+#: any.pm:929
#, fuzzy, c-format
msgid "Input method:"
msgstr "የX ዘገባ የማስትገባት ዘዴ"
-#: any.pm:904 install_any.pm:422 network/netconnect.pm:317
-#: network/netconnect.pm:322 network/netconnect.pm:1237 network/wireless.pm:7
-#: printer/printerdrake.pm:117
+#: any.pm:932
#, c-format
msgid "None"
msgstr "ምንም"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "No sharing"
msgstr "መጋራት የለም"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "Allow all users"
msgstr "ለሁሉም ተጠቃሚዎች ፍቀድ"
-#: any.pm:1025
+#: any.pm:1012
+#, c-format
+msgid "Custom"
+msgstr "ምርጫ"
+
+#: any.pm:1016
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1321,49 +591,93 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1037
+#: any.pm:1028
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1040
+#: any.pm:1031
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1048
+#: any.pm:1039
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1073
+#: any.pm:1064
#, c-format
msgid "Launch userdrake"
msgstr "userdrake አስጀምር"
-#: any.pm:1073 printer/printerdrake.pm:4085 printer/printerdrake.pm:4088
-#: printer/printerdrake.pm:4089 printer/printerdrake.pm:4090
-#: printer/printerdrake.pm:5328 standalone/drakTermServ:321
-#: standalone/drakbackup:4245 standalone/drakbug:126 standalone/drakfont:499
-#: standalone/drakids:64 standalone/drakids:77 standalone/drakids:85
-#: standalone/draknfs:210 standalone/net_monitor:117
-#: standalone/printerdrake:583
+#: any.pm:1064 interactive/gtk.pm:747
#, c-format
msgid "Close"
msgstr "ዝጋ"
-#: any.pm:1075
+#: any.pm:1066
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
+#: any.pm:1158
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr ""
+
+#: any.pm:1162
+#, c-format
+msgid "You need to log out and back in again for changes to take effect"
+msgstr ""
+
+#: any.pm:1212
+#, c-format
+msgid "Timezone"
+msgstr "የሰአት ክልል"
+
+#: any.pm:1212
+#, c-format
+msgid "Which is your timezone?"
+msgstr "የሰአት ክልሎት የትኛው ነው?"
+
+#: any.pm:1224 any.pm:1226
+#, c-format
+msgid "Date, Clock & Time Zone Settings"
+msgstr ""
+
+#: any.pm:1227
+#, c-format
+msgid "What is the best time?"
+msgstr ""
+
+#: any.pm:1231
+#, fuzzy, c-format
+msgid "%s (hardware clock set to UTC)"
+msgstr "ለሀርድዌር ሰአት GMT ተመርጧል"
+
+#: any.pm:1232
+#, fuzzy, c-format
+msgid "%s (hardware clock set to local time)"
+msgstr "ለሀርድዌር ሰአት GMT ተመርጧል"
+
+#: any.pm:1234
+#, c-format
+msgid "NTP Server"
+msgstr "NTP ሰርቨር"
+
+#: any.pm:1235
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr ""
+
#: authentication.pm:23
#, fuzzy, c-format
msgid "Local file"
@@ -1478,7 +792,7 @@ msgstr ""
msgid "LDAP Base dn"
msgstr ""
-#: authentication.pm:98 share/compssUsers.pl:102
+#: authentication.pm:98
#, c-format
msgid "LDAP Server"
msgstr "የLDAP ሰርቨር"
@@ -1508,14 +822,12 @@ msgstr ""
msgid "Authentication Active Directory"
msgstr "የX ዘገባ የማስትገባት ዘዴ"
-#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:181
+#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "ዶሜን"
-#: authentication.pm:124 diskdrake/dav.pm:63 help.pm:147
-#: printer/printerdrake.pm:75 share/compssUsers.pl:82
-#: standalone/drakTermServ:296
+#: authentication.pm:124 diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "ሰርቨር"
@@ -1592,9 +904,9 @@ msgstr ""
msgid "Domain Admin Password"
msgstr "የዶሜን አስተዳዳሪ ሚስጢራዊ ቃል"
-#: authentication.pm:181
+#: authentication.pm:181 authentication.pm:198
#, c-format
-msgid "Set administrator (root) password and network authentication methods"
+msgid "Authentication"
msgstr ""
#: authentication.pm:182
@@ -1602,35 +914,29 @@ msgstr ""
msgid "Set administrator (root) password"
msgstr "የroot ሚስጢራዊ ቃል ይምረጡ"
-#: authentication.pm:183 standalone/drakvpn:1111
+#: authentication.pm:184
#, fuzzy, c-format
msgid "Authentication method"
msgstr "የX ዘገባ የማስትገባት ዘዴ"
#. -PO: keep this short or else the buttons will not fit in the window
-#: authentication.pm:188 help.pm:723
+#: authentication.pm:189
#, c-format
msgid "No password"
msgstr "ሚስጢራዊ ቃል የለም"
-#: authentication.pm:194
+#: authentication.pm:210
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: authentication.pm:199 network/netconnect.pm:322 network/netconnect.pm:585
-#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:481
-#, c-format
-msgid "Authentication"
-msgstr ""
-
-#: authentication.pm:331
+#: authentication.pm:351
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:767
+#: bootloader.pm:880
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1640,291 +946,104 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:909
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO ከንድፈ መዘርዝር ጋር"
-
-#: bootloader.pm:910
+#: bootloader.pm:1028
#, c-format
msgid "LILO with text menu"
msgstr "LILO ከጽሁፍ መዘርዝር ጋር"
-#: bootloader.pm:911
+#: bootloader.pm:1029
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:912
+#: bootloader.pm:1030
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:913
+#: bootloader.pm:1031
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:990
+#: bootloader.pm:1032
+#, c-format
+msgid "SILO"
+msgstr ""
+
+#: bootloader.pm:1112
#, c-format
msgid "not enough room in /boot"
msgstr "በ/boot ውስጥ በቂ ቦታ የለም"
-#: bootloader.pm:1483
+#: bootloader.pm:1679
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr ""
-#: bootloader.pm:1523
+#: bootloader.pm:1732
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:1536
+#: bootloader.pm:1745
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:1537
+#: bootloader.pm:1746
#, c-format
msgid "Re-install Boot Loader"
msgstr "አስጀማሪውን እንደገና ይትከሉ"
-#: common.pm:134
+#: common.pm:129
+#, fuzzy, c-format
+msgid "B"
+msgstr "KB"
+
+#: common.pm:129
#, c-format
msgid "KB"
msgstr "KB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "MB"
msgstr "MB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "GB"
msgstr "GB"
-#: common.pm:142
+#: common.pm:137
#, c-format
msgid "TB"
msgstr "TB"
-#: common.pm:150
+#: common.pm:145
#, c-format
msgid "%d minutes"
msgstr "%d ደቂቃዎች"
-#: common.pm:152
+#: common.pm:147
#, c-format
msgid "1 minute"
msgstr "1 ደቂቃ"
-#: common.pm:154
+#: common.pm:149
#, c-format
msgid "%d seconds"
msgstr "%d ሴኮንዶች"
-#: common.pm:260
-#, c-format
-msgid "kdesu missing"
-msgstr "kdesu ጠፍቷል"
-
-#: common.pm:263
-#, c-format
-msgid "consolehelper missing"
-msgstr "consolehelper ጠፍቷል"
-
-#: crypto.pm:13 crypto.pm:48 lang.pm:207 network/adsl_consts.pm:66
-#: network/adsl_consts.pm:75 network/adsl_consts.pm:84
-#, c-format
-msgid "Austria"
-msgstr "ኦስትሪያ"
-
-#: crypto.pm:14 crypto.pm:47 lang.pm:208 standalone/drakxtv:48
-#, c-format
-msgid "Australia"
-msgstr "አውስትሬሊያ"
-
-#: crypto.pm:15 crypto.pm:49 lang.pm:214 network/adsl_consts.pm:93
-#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
-#: network/adsl_consts.pm:123 network/netconnect.pm:44
-#, c-format
-msgid "Belgium"
-msgstr "ቤልጄም"
-
-#: crypto.pm:16 crypto.pm:50 lang.pm:223 network/adsl_consts.pm:132
-#: network/adsl_consts.pm:143 network/adsl_consts.pm:152
-#: network/adsl_consts.pm:161
-#, c-format
-msgid "Brazil"
-msgstr "ብራዚል"
-
-#: crypto.pm:17 crypto.pm:51 lang.pm:230
-#, c-format
-msgid "Canada"
-msgstr "ካናዳ"
-
-#: crypto.pm:18 crypto.pm:74 lang.pm:235 network/adsl_consts.pm:891
-#: network/adsl_consts.pm:900 network/adsl_consts.pm:911
-#, c-format
-msgid "Switzerland"
-msgstr "ስዊዘርላንድ"
-
-#: crypto.pm:19 lang.pm:242
-#, c-format
-msgid "Costa Rica"
-msgstr "ኮስታሪካ"
-
-#: crypto.pm:20 crypto.pm:52 lang.pm:248 network/adsl_consts.pm:368
-#, c-format
-msgid "Czech Republic"
-msgstr "ቼክ ሪፑብሊክ"
-
-#: crypto.pm:21 crypto.pm:57 lang.pm:249 network/adsl_consts.pm:499
-#: network/adsl_consts.pm:508
-#, c-format
-msgid "Germany"
-msgstr "ጀርመን"
-
-#: crypto.pm:22 crypto.pm:53 lang.pm:251 network/adsl_consts.pm:378
-#, c-format
-msgid "Denmark"
-msgstr "ዴንማርክ"
-
-#: crypto.pm:23 crypto.pm:54 lang.pm:256
-#, c-format
-msgid "Estonia"
-msgstr "ኤስቶኒያ"
-
-#: crypto.pm:24 crypto.pm:72 lang.pm:260 network/adsl_consts.pm:759
-#: network/adsl_consts.pm:770 network/adsl_consts.pm:781
-#: network/adsl_consts.pm:792 network/adsl_consts.pm:801
-#: network/adsl_consts.pm:810 network/adsl_consts.pm:819
-#: network/adsl_consts.pm:828 network/adsl_consts.pm:837
-#: network/adsl_consts.pm:846 network/adsl_consts.pm:855
-#: network/adsl_consts.pm:864 network/adsl_consts.pm:873
-#, c-format
-msgid "Spain"
-msgstr "ስፔን"
-
-#: crypto.pm:25 crypto.pm:55 lang.pm:262 network/adsl_consts.pm:387
+#: common.pm:298
#, c-format
-msgid "Finland"
-msgstr "ፊንላንድ"
-
-#: crypto.pm:26 crypto.pm:56 lang.pm:267 network/adsl_consts.pm:396
-#: network/adsl_consts.pm:408 network/adsl_consts.pm:420
-#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
-#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
-#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
-#: network/netconnect.pm:41
-#, c-format
-msgid "France"
-msgstr "ፈረንሳይ"
-
-#: crypto.pm:27 crypto.pm:58 lang.pm:280 network/adsl_consts.pm:519
-#, c-format
-msgid "Greece"
-msgstr "ግሪክ"
-
-#: crypto.pm:28 crypto.pm:59 lang.pm:291 network/adsl_consts.pm:528
-#, c-format
-msgid "Hungary"
-msgstr "ሀንጋሪ"
-
-#: crypto.pm:29 crypto.pm:60 lang.pm:293 network/adsl_consts.pm:537
-#: standalone/drakxtv:47
-#, c-format
-msgid "Ireland"
-msgstr "አየርላንድ"
-
-#: crypto.pm:30 crypto.pm:61 lang.pm:294 network/adsl_consts.pm:546
-#, c-format
-msgid "Israel"
-msgstr "እስራኤል"
-
-#: crypto.pm:31 crypto.pm:62 lang.pm:300 network/adsl_consts.pm:557
-#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
-#: network/adsl_consts.pm:589 network/netconnect.pm:43 standalone/drakxtv:47
-#, c-format
-msgid "Italy"
-msgstr "ጣሊያን"
-
-#: crypto.pm:32 crypto.pm:63 lang.pm:303
-#, c-format
-msgid "Japan"
-msgstr "ጃፓን"
-
-#: crypto.pm:33 crypto.pm:64 lang.pm:352 network/adsl_consts.pm:620
-#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
-#: network/adsl_consts.pm:647 network/netconnect.pm:42
-#, c-format
-msgid "Netherlands"
-msgstr "ኔዘርላንድ"
-
-#: crypto.pm:34 crypto.pm:66 lang.pm:353 network/adsl_consts.pm:656
-#: network/adsl_consts.pm:661 network/adsl_consts.pm:666
-#: network/adsl_consts.pm:671 network/adsl_consts.pm:676
-#: network/adsl_consts.pm:681 network/adsl_consts.pm:686
-#, c-format
-msgid "Norway"
-msgstr "ኖርዌይ"
-
-#: crypto.pm:35 crypto.pm:65 lang.pm:357
-#, c-format
-msgid "New Zealand"
-msgstr "ኒው ዚላንድ"
-
-#: crypto.pm:36 crypto.pm:67 lang.pm:365 network/adsl_consts.pm:693
-#: network/adsl_consts.pm:704
-#, c-format
-msgid "Poland"
-msgstr "ፖላንድ"
-
-#: crypto.pm:37 crypto.pm:68 lang.pm:370 network/adsl_consts.pm:716
-#, c-format
-msgid "Portugal"
-msgstr "ፖርቱጋል"
-
-#: crypto.pm:38 crypto.pm:69 lang.pm:376 network/adsl_consts.pm:725
-#, c-format
-msgid "Russia"
-msgstr "ራሺያ"
-
-#: crypto.pm:39 crypto.pm:73 lang.pm:382 network/adsl_consts.pm:882
-#, c-format
-msgid "Sweden"
-msgstr "ስዊድን"
-
-#: crypto.pm:40 crypto.pm:70 lang.pm:387
-#, c-format
-msgid "Slovakia"
-msgstr "ስሎቫኪያ"
-
-#: crypto.pm:41 crypto.pm:76 lang.pm:401 network/adsl_consts.pm:920
-#, c-format
-msgid "Thailand"
-msgstr "ታይላንድ"
-
-#: crypto.pm:42 crypto.pm:75 lang.pm:411
-#, c-format
-msgid "Taiwan"
-msgstr "ታይዋን"
-
-#: crypto.pm:43 crypto.pm:71 lang.pm:430 standalone/drakxtv:49
-#, c-format
-msgid "South Africa"
-msgstr "ደቡብ አፍሪካ"
-
-#: crypto.pm:77 crypto.pm:112 lang.pm:416 network/netconnect.pm:45
-#, c-format
-msgid "United States"
-msgstr "አሜሪካ"
+msgid "command %s missing"
+msgstr ""
#: diskdrake/dav.pm:17
#, c-format
@@ -1940,23 +1059,46 @@ msgstr ""
msgid "New"
msgstr "አዲስ"
-#: diskdrake/dav.pm:61 diskdrake/interactive.pm:456 diskdrake/smbnfs_gtk.pm:74
+#: diskdrake/dav.pm:61 diskdrake/interactive.pm:449 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr ""
-#: diskdrake/dav.pm:62 diskdrake/interactive.pm:453 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:62 diskdrake/interactive.pm:446 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr ""
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:447
-#: diskdrake/interactive.pm:679 diskdrake/interactive.pm:698
-#: diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:78
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:440
+#: diskdrake/interactive.pm:670 diskdrake/interactive.pm:688
+#: diskdrake/interactive.pm:692 diskdrake/removable.pm:23
+#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr ""
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:442
+#: diskdrake/interactive.pm:1047 diskdrake/removable.pm:24
+#: diskdrake/smbnfs_gtk.pm:80
+#, c-format
+msgid "Options"
+msgstr "ምርጫዎች"
+
+#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:229
+#: diskdrake/interactive.pm:242 diskdrake/interactive.pm:398
+#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:547
+#: diskdrake/interactive.pm:552 diskdrake/interactive.pm:660
+#: diskdrake/interactive.pm:922 diskdrake/interactive.pm:1092
+#: diskdrake/interactive.pm:1105 diskdrake/interactive.pm:1108
+#: diskdrake/interactive.pm:1348 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:19
+#: do_pkgs.pm:24 do_pkgs.pm:40 do_pkgs.pm:56 do_pkgs.pm:61 fsedit.pm:229
+#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
+#: scanner.pm:94 scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95
+#: wizards.pm:99 wizards.pm:121
+#, c-format
+msgid "Error"
+msgstr "ስህተት"
+
#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
@@ -1972,33 +1114,48 @@ msgstr "URLሉ በhttp:// ወይም በhttps:// መጀመር አለበት"
msgid "Server: "
msgstr "ሰርቨር:"
-#: diskdrake/dav.pm:110 diskdrake/interactive.pm:523
-#: diskdrake/interactive.pm:1218 diskdrake/interactive.pm:1296
+#: diskdrake/dav.pm:110 diskdrake/interactive.pm:520
+#: diskdrake/interactive.pm:1230 diskdrake/interactive.pm:1308
#, c-format
msgid "Mount point: "
msgstr ""
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1303
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1315
#, c-format
msgid "Options: %s"
msgstr "ምርጫዎች: %s"
-#: diskdrake/hd_gtk.pm:52 diskdrake/interactive.pm:293
-#: diskdrake/smbnfs_gtk.pm:21 install_interactive.pm:63
-#: install_interactive.pm:217 install_interactive.pm:223
-#: install_interactive.pm:276 install_interactive.pm:281
-#: install_steps_interactive.pm:253 install_steps_interactive.pm:317
-#: steps.pm:21
+#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:286
+#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
+#: fs/partitioning_wizard.pm:47 fs/partitioning_wizard.pm:201
+#: fs/partitioning_wizard.pm:207 fs/partitioning_wizard.pm:247
+#: fs/partitioning_wizard.pm:266 fs/partitioning_wizard.pm:271
#, c-format
msgid "Partitioning"
msgstr ""
-#: diskdrake/hd_gtk.pm:92
+#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1067
+#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1130
+#, c-format
+msgid "Read carefully!"
+msgstr "በጥንቃቄ ያንብቡ!"
+
+#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr ""
-#: diskdrake/hd_gtk.pm:95
+#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:222
+#, c-format
+msgid "Exit"
+msgstr "ውጣ"
+
+#: diskdrake/hd_gtk.pm:94
+#, c-format
+msgid "Continue"
+msgstr "ቀጥል"
+
+#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
@@ -2006,17 +1163,18 @@ msgid ""
"at the beginning of the disk"
msgstr ""
-#: diskdrake/hd_gtk.pm:152 help.pm:531
+#: diskdrake/hd_gtk.pm:162 interactive.pm:640 interactive/gtk.pm:719
+#: interactive/gtk.pm:740 interactive/gtk.pm:760 ugtk2.pm:923 ugtk2.pm:924
#, c-format
-msgid "Wizard"
-msgstr ""
+msgid "Help"
+msgstr "እርዳታ"
-#: diskdrake/hd_gtk.pm:185
+#: diskdrake/hd_gtk.pm:197
#, c-format
msgid "Choose action"
msgstr "ተግባር ይምረጡ"
-#: diskdrake/hd_gtk.pm:189
+#: diskdrake/hd_gtk.pm:201
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -2024,148 +1182,162 @@ msgid ""
"(click on it, then click on \"Resize\")"
msgstr ""
-#: diskdrake/hd_gtk.pm:191
+#: diskdrake/hd_gtk.pm:203
#, c-format
msgid "Please click on a partition"
msgstr "እባክዎ ክፋዩ ላይ ይጫኑ"
-#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:457
-#: standalone/drakbackup:3088 standalone/drakbackup:3148
+#: diskdrake/hd_gtk.pm:217 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "ዝርዝሮች"
-#: diskdrake/hd_gtk.pm:251
+#: diskdrake/hd_gtk.pm:265
#, c-format
msgid "No hard drives found"
msgstr "ቋሚ ዲስኮችን አልተገኙም"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:292
+#, c-format
+msgid "Unknown"
+msgstr "ያልታወቀ"
+
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Ext2"
msgstr "Ext2"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Journalised FS"
msgstr ""
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "SunOS"
msgstr "SunOS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "HFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1233
+#: diskdrake/hd_gtk.pm:352 services.pm:149
+#, c-format
+msgid "Other"
+msgstr "ሌላ"
+
+#: diskdrake/hd_gtk.pm:352 diskdrake/interactive.pm:1244
#, c-format
msgid "Empty"
msgstr "ባዶ"
-#: diskdrake/hd_gtk.pm:340
+#: diskdrake/hd_gtk.pm:356
#, c-format
msgid "Filesystem types:"
msgstr "የፋይል ሲስተም አይነቶች:"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:359 diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:291
+#: diskdrake/interactive.pm:392 diskdrake/interactive.pm:428
+#: diskdrake/interactive.pm:577 diskdrake/interactive.pm:751
+#: diskdrake/interactive.pm:809 diskdrake/interactive.pm:902
+#: diskdrake/interactive.pm:944 diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:1173 diskdrake/interactive.pm:1211
+#: diskdrake/interactive.pm:1347 do_pkgs.pm:16 do_pkgs.pm:35 do_pkgs.pm:53
+#: harddrake/sound.pm:279
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "በዚህ ፈንታ “%s”ን ይጠቀሙ"
+msgid "Warning"
+msgstr "ማስጠንቀቂያ"
-#: diskdrake/hd_gtk.pm:357 diskdrake/interactive.pm:472
-#, c-format
-msgid "Create"
-msgstr "ፍጠር"
+#: diskdrake/hd_gtk.pm:380
+#, fuzzy, c-format
+msgid "This partition is already empty"
+msgstr "ይዚህ ክፋይ መጠነ ተስተካካይ አይደለም"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:365
-#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:625
-#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
-#: standalone/harddrake2:108 standalone/harddrake2:117
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Type"
-msgstr "አይነት"
+msgid "Use ``Unmount'' first"
+msgstr "በመጀመሪያ “Unmount”ን ይጠቀሙ"
-#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: diskdrake/hd_gtk.pm:359 diskdrake/interactive.pm:457
-#: standalone/drakperm:123 standalone/printerdrake:248
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Delete"
-msgstr "አጥፋ"
+msgid "Use ``%s'' instead"
+msgstr "በዚህ ፈንታ “%s”ን ይጠቀሙ"
-#: diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:389 diskdrake/interactive.pm:441
+#: diskdrake/interactive.pm:611 diskdrake/interactive.pm:1083
+#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "በመጀመሪያ “Unmount”ን ይጠቀሙ"
+msgid "Type"
+msgstr "አይነት"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose another partition"
msgstr "ሌላ ክፋይ ይምረጡ"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose a partition"
msgstr "ክፋይ ይምረጡ"
-#: diskdrake/interactive.pm:224
-#, c-format
-msgid "Exit"
-msgstr "ውጣ"
-
-#: diskdrake/interactive.pm:257 help.pm:531
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Undo"
msgstr "ወደ ነበረበት መልስ"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to normal mode"
msgstr ""
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to expert mode"
msgstr ""
-#: diskdrake/interactive.pm:276
+#: diskdrake/interactive.pm:269 diskdrake/interactive.pm:279
+#: diskdrake/interactive.pm:1158
+#, fuzzy, c-format
+msgid "Confirmation"
+msgstr "ስየማ"
+
+#: diskdrake/interactive.pm:269
#, c-format
msgid "Continue anyway?"
msgstr "ለማንኛውም ቀጥል?"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without saving"
msgstr "ሳታስቀምጥ ውጣ"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without writing the partition table?"
msgstr ""
-#: diskdrake/interactive.pm:286
+#: diskdrake/interactive.pm:279
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr ""
-#: diskdrake/interactive.pm:293 install_steps_interactive.pm:317
+#: diskdrake/interactive.pm:286 fs/partitioning_wizard.pm:247
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-#: diskdrake/interactive.pm:298
+#: diskdrake/interactive.pm:291
#, c-format
msgid ""
"You should format partition %s.\n"
@@ -2173,177 +1345,187 @@ msgid ""
"Quit anyway?"
msgstr ""
-#: diskdrake/interactive.pm:311 help.pm:531
+#: diskdrake/interactive.pm:304
#, c-format
msgid "Clear all"
msgstr "ሁሉንም ሰርዝ"
-#: diskdrake/interactive.pm:312 help.pm:531
+#: diskdrake/interactive.pm:305
#, c-format
msgid "Auto allocate"
msgstr "በራስ-ገዝ አመልካች"
-#: diskdrake/interactive.pm:313 help.pm:531 help.pm:567 help.pm:607
-#: help.pm:856 install_steps_interactive.pm:98
+#: diskdrake/interactive.pm:306 diskdrake/interactive.pm:360
+#: interactive/curses.pm:457
#, c-format
msgid "More"
msgstr "ተጨማሪ"
-#: diskdrake/interactive.pm:318
+#: diskdrake/interactive.pm:311
#, c-format
msgid "Hard drive information"
msgstr "የቋሚ ዲስክ መረጃ"
-#: diskdrake/interactive.pm:350
+#: diskdrake/interactive.pm:343
#, c-format
msgid "All primary partitions are used"
msgstr ""
-#: diskdrake/interactive.pm:351
+#: diskdrake/interactive.pm:344
#, c-format
msgid "I can not add any more partitions"
msgstr ""
-#: diskdrake/interactive.pm:352
+#: diskdrake/interactive.pm:345
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
-#: diskdrake/interactive.pm:361
+#: diskdrake/interactive.pm:354
#, c-format
msgid "No supermount"
msgstr ""
-#: diskdrake/interactive.pm:362
+#: diskdrake/interactive.pm:355
#, c-format
msgid "Supermount"
msgstr ""
-#: diskdrake/interactive.pm:363
+#: diskdrake/interactive.pm:356
#, c-format
msgid "Supermount except for CDROM drives"
msgstr ""
-#: diskdrake/interactive.pm:369 help.pm:531
+#: diskdrake/interactive.pm:362
#, c-format
msgid "Save partition table"
msgstr "የክፋይ ሠንጠረዡን አስቀምጥ"
-#: diskdrake/interactive.pm:370 help.pm:531
+#: diskdrake/interactive.pm:363
#, c-format
msgid "Restore partition table"
msgstr "የክፋይ ሠንጠረዡ ወደ ነበረበት መልስ"
-#: diskdrake/interactive.pm:371 help.pm:531
+#: diskdrake/interactive.pm:364
#, c-format
msgid "Rescue partition table"
msgstr "የክፋይ ሠንጠረዡን አድን"
-#: diskdrake/interactive.pm:373 help.pm:531
+#: diskdrake/interactive.pm:366
#, c-format
msgid "Reload partition table"
msgstr "የክፋይ ሠንጠረዡን እንደገና ጫን"
-#: diskdrake/interactive.pm:375
+#: diskdrake/interactive.pm:368
#, c-format
msgid "Removable media automounting"
msgstr ""
-#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:414
+#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:407
#, c-format
msgid "Select file"
msgstr "ፋይል ይምረጡ"
-#: diskdrake/interactive.pm:400
+#: diskdrake/interactive.pm:393
#, c-format
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
-#: diskdrake/interactive.pm:429
+#: diskdrake/interactive.pm:422
#, c-format
msgid "Trying to rescue partition table"
msgstr ""
-#: diskdrake/interactive.pm:435
+#: diskdrake/interactive.pm:428
#, c-format
msgid "Detailed information"
msgstr "ዝርዝር መረጃ"
-#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:444 diskdrake/interactive.pm:764
#, c-format
msgid "Resize"
msgstr "መጠን አስተካክል"
-#: diskdrake/interactive.pm:452
+#: diskdrake/interactive.pm:445
#, c-format
msgid "Format"
msgstr "ፎርማት"
-#: diskdrake/interactive.pm:454
+#: diskdrake/interactive.pm:447 diskdrake/interactive.pm:850
#, c-format
msgid "Add to RAID"
msgstr "ወደ RAID ጨምር"
-#: diskdrake/interactive.pm:455
+#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:867
#, c-format
msgid "Add to LVM"
msgstr "ወደ LVM ጨምር"
-#: diskdrake/interactive.pm:458
+#: diskdrake/interactive.pm:450
+#, c-format
+msgid "Delete"
+msgstr "አጥፋ"
+
+#: diskdrake/interactive.pm:451
#, c-format
msgid "Remove from RAID"
msgstr "ከRAID አስወግድ"
-#: diskdrake/interactive.pm:459
+#: diskdrake/interactive.pm:452
#, c-format
msgid "Remove from LVM"
msgstr "ከLVM አስወግድ"
-#: diskdrake/interactive.pm:460
+#: diskdrake/interactive.pm:453
#, c-format
msgid "Modify RAID"
msgstr "RAID ለውጥ"
-#: diskdrake/interactive.pm:461
+#: diskdrake/interactive.pm:454
#, c-format
msgid "Use for loopback"
msgstr "ዞሮ ለመመለስ ተጠቃም"
-#: diskdrake/interactive.pm:516
+#: diskdrake/interactive.pm:465
+#, c-format
+msgid "Create"
+msgstr "ፍጠር"
+
+#: diskdrake/interactive.pm:509 diskdrake/interactive.pm:511
#, c-format
msgid "Create a new partition"
msgstr "አዲስ ክፋይ ፍጠር"
-#: diskdrake/interactive.pm:519
+#: diskdrake/interactive.pm:513
#, c-format
msgid "Start sector: "
msgstr "ሴክተር ጀምር፦"
-#: diskdrake/interactive.pm:521 diskdrake/interactive.pm:938
+#: diskdrake/interactive.pm:516 diskdrake/interactive.pm:937
#, c-format
msgid "Size in MB: "
msgstr "መጠን በMB:"
-#: diskdrake/interactive.pm:522 diskdrake/interactive.pm:939
+#: diskdrake/interactive.pm:518 diskdrake/interactive.pm:938
#, c-format
msgid "Filesystem type: "
msgstr "የፋይል ሲስተም አይነት: "
-#: diskdrake/interactive.pm:527
+#: diskdrake/interactive.pm:524
#, c-format
msgid "Preference: "
msgstr "ምርጫ: "
-#: diskdrake/interactive.pm:530
+#: diskdrake/interactive.pm:527
#, c-format
msgid "Logical volume name "
msgstr "የጉልሃዊ ይዞታ ስም"
-#: diskdrake/interactive.pm:560
+#: diskdrake/interactive.pm:547
#, c-format
msgid ""
"You can not create a new partition\n"
@@ -2351,334 +1533,352 @@ msgid ""
"First remove a primary partition and create an extended partition."
msgstr ""
-#: diskdrake/interactive.pm:590
+#: diskdrake/interactive.pm:577
#, c-format
msgid "Remove the loopback file?"
msgstr "የዞሮ መመለሻ ፋይሉ ይወገድ?"
-#: diskdrake/interactive.pm:609
+#: diskdrake/interactive.pm:596
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-#: diskdrake/interactive.pm:621
+#: diskdrake/interactive.pm:608
#, c-format
msgid "Change partition type"
msgstr "የክፋይ ዓይነት ለውጥ"
-#: diskdrake/interactive.pm:622 diskdrake/removable.pm:47
+#: diskdrake/interactive.pm:610 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "የትኛውን የፋይል ሲስተም ይፈልጋሉ?"
-#: diskdrake/interactive.pm:630
+#: diskdrake/interactive.pm:617
#, c-format
msgid "Switching from ext2 to ext3"
msgstr ""
-#: diskdrake/interactive.pm:650
+#: diskdrake/interactive.pm:637 diskdrake/interactive.pm:640
#, c-format
msgid "Which volume label?"
msgstr ""
-#: diskdrake/interactive.pm:666
+#: diskdrake/interactive.pm:641
+#, fuzzy, c-format
+msgid "Label:"
+msgstr "መለያ"
+
+#: diskdrake/interactive.pm:655
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr ""
-#: diskdrake/interactive.pm:667
+#: diskdrake/interactive.pm:656
#, c-format
msgid "Where do you want to mount device %s?"
msgstr ""
-#: diskdrake/interactive.pm:672
+#: diskdrake/interactive.pm:661
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-#: diskdrake/interactive.pm:697
+#: diskdrake/interactive.pm:691
#, c-format
msgid "Where do you want to mount %s?"
msgstr "%sን የት መትከል ይፈልጋሉ?"
-#: diskdrake/interactive.pm:721 diskdrake/interactive.pm:800
-#: install_interactive.pm:157 install_interactive.pm:189
+#: diskdrake/interactive.pm:715 diskdrake/interactive.pm:798
+#: fs/partitioning_wizard.pm:141 fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing"
msgstr "መጠን በማስተካከል ላይ"
-#: diskdrake/interactive.pm:721
+#: diskdrake/interactive.pm:715
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr ""
-#: diskdrake/interactive.pm:757
+#: diskdrake/interactive.pm:751
#, c-format
msgid "This partition is not resizeable"
msgstr "ይዚህ ክፋይ መጠነ ተስተካካይ አይደለም"
-#: diskdrake/interactive.pm:762
+#: diskdrake/interactive.pm:756
#, c-format
msgid "All data on this partition should be backed-up"
msgstr ""
-#: diskdrake/interactive.pm:764
+#: diskdrake/interactive.pm:758
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-#: diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:765
#, c-format
msgid "Choose the new size"
msgstr "አዲሱን መጠን ይምረጡ"
-#: diskdrake/interactive.pm:770
+#: diskdrake/interactive.pm:766
#, c-format
msgid "New size in MB: "
msgstr "አዲስ መጠን በMB: "
-#: diskdrake/interactive.pm:811 install_interactive.pm:197
+#: diskdrake/interactive.pm:767
+#, c-format
+msgid "Minimum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:768
+#, c-format
+msgid "Maximum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:809 fs/partitioning_wizard.pm:181
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
"filesystem checks will be run on your next boot into Microsoft Windows®"
msgstr ""
-#: diskdrake/interactive.pm:852
+#: diskdrake/interactive.pm:850
#, c-format
msgid "Choose an existing RAID to add to"
msgstr ""
-#: diskdrake/interactive.pm:854 diskdrake/interactive.pm:871
+#: diskdrake/interactive.pm:852 diskdrake/interactive.pm:869
#, c-format
msgid "new"
msgstr "አዲስ"
-#: diskdrake/interactive.pm:869
+#: diskdrake/interactive.pm:867
#, c-format
msgid "Choose an existing LVM to add to"
msgstr ""
-#: diskdrake/interactive.pm:875
+#: diskdrake/interactive.pm:874
#, c-format
msgid "LVM name?"
msgstr "የLVM ስም?"
-#: diskdrake/interactive.pm:903
+#: diskdrake/interactive.pm:902
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
"Do you want to move used physical extents on this volume to other volumes?"
msgstr ""
-#: diskdrake/interactive.pm:905
+#: diskdrake/interactive.pm:904
#, c-format
msgid "Moving physical extents"
msgstr ""
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:922
#, c-format
msgid "This partition can not be used for loopback"
msgstr ""
-#: diskdrake/interactive.pm:936
+#: diskdrake/interactive.pm:935
#, c-format
msgid "Loopback"
msgstr ""
-#: diskdrake/interactive.pm:937
+#: diskdrake/interactive.pm:936
#, c-format
msgid "Loopback file name: "
msgstr "የዞሮ መመለሻ ፋይል ስም: "
-#: diskdrake/interactive.pm:942
+#: diskdrake/interactive.pm:941
#, c-format
msgid "Give a file name"
msgstr "የፋይል ስም ይስጡ"
-#: diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:944
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr ""
-#: diskdrake/interactive.pm:946
+#: diskdrake/interactive.pm:945
#, c-format
msgid "File already exists. Use it?"
msgstr "ፋይሉ በፊትም ነበር። ልጠቀምበት?"
-#: diskdrake/interactive.pm:969
+#: diskdrake/interactive.pm:974 diskdrake/interactive.pm:977
#, c-format
msgid "Mount options"
msgstr "የተከላ ምርጫዎች"
-#: diskdrake/interactive.pm:976
+#: diskdrake/interactive.pm:984
#, c-format
msgid "Various"
msgstr ""
-#: diskdrake/interactive.pm:1044
+#: diskdrake/interactive.pm:1049
#, c-format
msgid "device"
msgstr "መሳሪያ"
-#: diskdrake/interactive.pm:1045
+#: diskdrake/interactive.pm:1050
#, c-format
msgid "level"
msgstr "ደረጃ"
-#: diskdrake/interactive.pm:1046
+#: diskdrake/interactive.pm:1051
#, fuzzy, c-format
msgid "chunk size in KiB"
msgstr "የፊደል ቅርጽ መጠን፦"
-#: diskdrake/interactive.pm:1063
+#: diskdrake/interactive.pm:1068
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "ይጠንቀቁ: ይህ አሰራር አደገኛ ነው።"
-#: diskdrake/interactive.pm:1078
+#: diskdrake/interactive.pm:1083
#, c-format
msgid "What type of partitioning?"
msgstr "ምን አይነት አከፋፈል?"
-#: diskdrake/interactive.pm:1116
+#: diskdrake/interactive.pm:1121
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr ""
-#: diskdrake/interactive.pm:1125
+#: diskdrake/interactive.pm:1130
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr ""
-#: diskdrake/interactive.pm:1148
+#: diskdrake/interactive.pm:1153
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
-#: diskdrake/interactive.pm:1164
+#: diskdrake/interactive.pm:1158 fs/partitioning.pm:49
+#, fuzzy, c-format
+msgid "Check bad blocks?"
+msgstr "ተመልከት ይህንን"
+
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Move files to the new partition"
msgstr "ወደ አዲሱ ክፋይ ፋይሎችን አንቀሳቅስ"
-#: diskdrake/interactive.pm:1164 standalone/draksambashare:81
-#: standalone/draksambashare:144
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Hide files"
msgstr "ፋይሎች ደብቅ"
-#: diskdrake/interactive.pm:1165
+#: diskdrake/interactive.pm:1173
#, c-format
msgid ""
"Directory %s already contains data\n"
-"(%s)"
+"(%s)\n"
+"\n"
+"You can either choose to move the files into the partition that will be "
+"mounted there or leave them where they are (which results in hiding them by "
+"the contents of the mounted partition)"
msgstr ""
-#: diskdrake/interactive.pm:1176
+#: diskdrake/interactive.pm:1188
#, c-format
msgid "Moving files to the new partition"
msgstr ""
-#: diskdrake/interactive.pm:1180
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "Copying %s"
msgstr "%sን በመገልበጥ ላይ"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1196
#, c-format
msgid "Removing %s"
msgstr "%sን በማስወገድ ላይ"
-#: diskdrake/interactive.pm:1198
+#: diskdrake/interactive.pm:1210
#, c-format
msgid "partition %s is now known as %s"
msgstr "%s ከአሁን በኋላ %s በመባል ይታወቃል"
-#: diskdrake/interactive.pm:1199
+#: diskdrake/interactive.pm:1211
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""
-#: diskdrake/interactive.pm:1219 diskdrake/interactive.pm:1281
+#: diskdrake/interactive.pm:1231 diskdrake/interactive.pm:1293
#, c-format
msgid "Device: "
msgstr "መሳሪያ: "
-#: diskdrake/interactive.pm:1220
-#, fuzzy, c-format
-msgid "Devfs name: "
-msgstr "መሳሪያ: "
-
-#: diskdrake/interactive.pm:1221
+#: diskdrake/interactive.pm:1232
#, c-format
msgid "Volume label: "
msgstr ""
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1233
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr ""
-#: diskdrake/interactive.pm:1226 diskdrake/interactive.pm:1235
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1237 diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1311
#, c-format
msgid "Type: "
msgstr "አይነት: "
-#: diskdrake/interactive.pm:1230 install_steps_gtk.pm:300
+#: diskdrake/interactive.pm:1241
#, c-format
msgid "Name: "
msgstr "ስም: "
-#: diskdrake/interactive.pm:1237
+#: diskdrake/interactive.pm:1248
#, c-format
msgid "Start: sector %s\n"
msgstr "ጀምር፦ ሴክተር %sን\n"
-#: diskdrake/interactive.pm:1238
+#: diskdrake/interactive.pm:1249
#, c-format
msgid "Size: %s"
msgstr "መጠን: %s"
-#: diskdrake/interactive.pm:1240
+#: diskdrake/interactive.pm:1251
#, c-format
msgid ", %s sectors"
msgstr ""
-#: diskdrake/interactive.pm:1242
+#: diskdrake/interactive.pm:1253
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "CD ወደ"
-#: diskdrake/interactive.pm:1243
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Formatted\n"
msgstr ""
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "Not formatted\n"
msgstr "አልተስተካከለም\n"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Mounted\n"
msgstr ""
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1258
#, fuzzy, c-format
msgid "RAID %s\n"
msgstr "URI፦"
-#: diskdrake/interactive.pm:1252
+#: diskdrake/interactive.pm:1263
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2687,34 +1887,34 @@ msgstr ""
"ዞሮ መመለሻ ፋይል(ሎች):\n"
" %s\n"
-#: diskdrake/interactive.pm:1253
+#: diskdrake/interactive.pm:1264
#, c-format
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-#: diskdrake/interactive.pm:1255
+#: diskdrake/interactive.pm:1266
#, c-format
msgid "Level %s\n"
msgstr "ደረጃ %s\n"
-#: diskdrake/interactive.pm:1256
+#: diskdrake/interactive.pm:1267
#, fuzzy, c-format
msgid "Chunk size %d KiB\n"
msgstr "የፊደል ቅርጽ መጠን፦"
-#: diskdrake/interactive.pm:1257
+#: diskdrake/interactive.pm:1268
#, c-format
msgid "RAID-disks %s\n"
msgstr ""
-#: diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1270
#, c-format
msgid "Loopback file name: %s"
msgstr "ዞሮ መመለሻ ፋይል ስም: %s"
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1273
#, c-format
msgid ""
"\n"
@@ -2723,7 +1923,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: diskdrake/interactive.pm:1265
+#: diskdrake/interactive.pm:1276
#, c-format
msgid ""
"\n"
@@ -2732,74 +1932,77 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: diskdrake/interactive.pm:1282
+#: diskdrake/interactive.pm:1285
+#, c-format
+msgid "Empty space on %s (%s)"
+msgstr ""
+
+#: diskdrake/interactive.pm:1294
#, c-format
msgid "Read-only"
msgstr "ለንባብ ብቻ"
-#: diskdrake/interactive.pm:1283
+#: diskdrake/interactive.pm:1295
#, c-format
msgid "Size: %s\n"
msgstr "መጠን፦ %s\n"
-#: diskdrake/interactive.pm:1284
+#: diskdrake/interactive.pm:1296
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr ""
-#: diskdrake/interactive.pm:1285 network/thirdparty.pm:331
+#: diskdrake/interactive.pm:1297
#, c-format
msgid "Info: "
msgstr "መረጃ: "
-#: diskdrake/interactive.pm:1286
+#: diskdrake/interactive.pm:1298
#, c-format
msgid "LVM-disks %s\n"
msgstr ""
-#: diskdrake/interactive.pm:1287
+#: diskdrake/interactive.pm:1299
#, c-format
msgid "Partition table type: %s\n"
msgstr "የክፋይ ጠረጴዛ ዓይነት: %s\n"
-#: diskdrake/interactive.pm:1288
+#: diskdrake/interactive.pm:1300
#, c-format
msgid "on channel %d id %d\n"
msgstr "በጣቢያ %d ID %d\n"
-#: diskdrake/interactive.pm:1331
+#: diskdrake/interactive.pm:1343
#, c-format
msgid "Filesystem encryption key"
msgstr "የፋይል-ሲስተም ሚስጢራዊ ግልበጣ ቁልፍ"
-#: diskdrake/interactive.pm:1332
+#: diskdrake/interactive.pm:1344
#, c-format
msgid "Choose your filesystem encryption key"
msgstr ""
-#: diskdrake/interactive.pm:1335
+#: diskdrake/interactive.pm:1347
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-#: diskdrake/interactive.pm:1336
+#: diskdrake/interactive.pm:1348
#, c-format
msgid "The encryption keys do not match"
msgstr ""
-#: diskdrake/interactive.pm:1339 network/netconnect.pm:1073
-#: standalone/drakconnect:419 standalone/drakroam:120
+#: diskdrake/interactive.pm:1351
#, c-format
msgid "Encryption key"
msgstr "የሚስጢራዊ ግልበጣ ቁልፍ"
-#: diskdrake/interactive.pm:1340
+#: diskdrake/interactive.pm:1352
#, c-format
msgid "Encryption key (again)"
msgstr "የሚስጢራዊ ግልበጣ ቁልፍ (እንደገና)"
-#: diskdrake/interactive.pm:1342 standalone/drakvpn:1017
-#: standalone/drakvpn:1102
+#: diskdrake/interactive.pm:1354
#, c-format
msgid "Encryption algorithm"
msgstr ""
@@ -2809,111 +2012,113 @@ msgstr ""
msgid "Change type"
msgstr "አይነት ለውጥ"
-#: diskdrake/smbnfs_gtk.pm:163
+#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:539
+#: interactive/curses.pm:214 interactive/http.pm:104 interactive/http.pm:160
+#: interactive/stdio.pm:39 interactive/stdio.pm:142 ugtk2.pm:404 ugtk2.pm:506
+#: ugtk2.pm:515 ugtk2.pm:788
+#, c-format
+msgid "Cancel"
+msgstr "ተወው"
+
+#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr ""
-#: diskdrake/smbnfs_gtk.pm:167 diskdrake/smbnfs_gtk.pm:176
+#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, fuzzy, c-format
msgid "Domain Authentication Required"
msgstr "የተጠቃሚው የአጠቃቀም ደረጃ ያስፈልጋል"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "የትኛው የተጠቃሚ ስም"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "ሌላ"
-#: diskdrake/smbnfs_gtk.pm:177
+#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3640
+#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "የተጠቃሚ ስም"
-#: diskdrake/smbnfs_gtk.pm:205
+#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "ሰርቨሮችን ፈልግ"
-#: diskdrake/smbnfs_gtk.pm:210
+#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr "አዲስ ሰርቨሮችን ፈልግ"
-#: do_pkgs.pm:16 do_pkgs.pm:49
+#: do_pkgs.pm:16 do_pkgs.pm:53
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "ጥቅል %s ይፈለጋል። መትከል ይፈልጋሉ?"
-#: do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:52 printer/printerdrake.pm:3948
+#: do_pkgs.pm:19 do_pkgs.pm:40 do_pkgs.pm:56
#, fuzzy, c-format
msgid "Could not install the %s package!"
msgstr "ምርጫዎችን ማስቀመጥ አልተቻለም"
-#: do_pkgs.pm:24 do_pkgs.pm:57
+#: do_pkgs.pm:24 do_pkgs.pm:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: do_pkgs.pm:35 harddrake/sound.pm:278 install_steps_interactive.pm:1288
-#: keyboard.pm:381 network/ndiswrapper.pm:95 network/netconnect.pm:471
-#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2495
-#: printer/printerdrake.pm:2632 printer/printerdrake.pm:2953
-#: printer/printerdrake.pm:2960 printer/printerdrake.pm:3947
-#: printer/printerdrake.pm:4211 printer/printerdrake.pm:4330
-#: printer/printerdrake.pm:5487 standalone/drakTermServ:354
-#: standalone/drakTermServ:1267 standalone/drakTermServ:1328
-#: standalone/drakTermServ:2006 standalone/drakbackup:510
-#: standalone/drakbackup:609 standalone/drakboot:133 standalone/drakclock:224
-#: standalone/drakconnect:973 standalone/drakfont:679 standalone/drakperm:380
-#: standalone/drakperm:390 standalone/drakups:27 standalone/harddrake2:510
-#: standalone/harddrake2:526 standalone/localedrake:43
-#: standalone/scannerdrake:51 standalone/scannerdrake:957
-#, c-format
-msgid "Warning"
-msgstr "ማስጠንቀቂያ"
-
-#: do_pkgs.pm:35 standalone/harddrake2:526
+#: do_pkgs.pm:35
#, c-format
msgid "The following packages need to be installed:\n"
msgstr ""
-#: do_pkgs.pm:205
+#: do_pkgs.pm:209
#, c-format
msgid "Installing packages..."
msgstr "ጥቅሎችን በመትከል ላይ..."
-#: do_pkgs.pm:252
+#: do_pkgs.pm:255
#, c-format
msgid "Removing packages..."
msgstr "ጥቅሎችን በማስወገድ ላይ..."
-#: fs/format.pm:58 fs/format.pm:65
+#: fs/any.pm:17
+#, c-format
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+
+#: fs/any.pm:62 fs/partitioning_wizard.pm:55
+#, c-format
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: fs/format.pm:59 fs/format.pm:66
#, c-format
msgid "Formatting partition %s"
msgstr "ክፋይ %sን በማስተካከል ላይ"
-#: fs/format.pm:62
+#: fs/format.pm:63
#, c-format
msgid "Creating and formatting file %s"
msgstr "ፋይል %sን በመፍጠር እና በማስተካከል ላይ"
-#: fs/format.pm:115
+#: fs/format.pm:116
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr ""
-#: fs/format.pm:120 fs/format.pm:122
+#: fs/format.pm:121 fs/format.pm:123
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s %sን ማስተካከል አልተሳካም"
@@ -2923,27 +2128,27 @@ msgstr "%s %sን ማስተካከል አልተሳካም"
msgid "Circular mounts %s\n"
msgstr ""
-#: fs/mount.pm:74
+#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr ""
-#: fs/mount.pm:75
+#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: fs/mount.pm:80 fs/mount.pm:97
+#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "%sን በማጣራት ላይ"
-#: fs/mount.pm:113 partition_table.pm:385
+#: fs/mount.pm:118 partition_table.pm:384
#, c-format
msgid "error unmounting %s: %s"
msgstr "%sን የመንቀል ስህተት: %s"
-#: fs/mount.pm:142
+#: fs/mount.pm:133
#, c-format
msgid "Enabling swap partition %s"
msgstr "የስዋፕ ክፋይ %sን በማስቻል ላይ"
@@ -3005,35 +2210,277 @@ msgstr ""
#: fs/mount_options.pm:139
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow every user to mount and umount the file system."
msgstr ""
#: fs/mount_options.pm:141
#, c-format
-msgid "Enable user disk quota accounting, and optionally enforce limits"
+msgid "Allow an ordinary user to mount the file system."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Support user. extended attributes"
+msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""
#: fs/mount_options.pm:145
#, c-format
+msgid "Support \"user.\" extended attributes"
+msgstr ""
+
+#: fs/mount_options.pm:147
+#, c-format
msgid "Give write access to ordinary users"
msgstr "ለተራ ተጠቃሚዎች የመጻፍ ፈቃድ ስጥ"
-#: fs/mount_options.pm:147
+#: fs/mount_options.pm:149
#, c-format
msgid "Give read-only access to ordinary users"
msgstr "ለተራ ተጠቃሚዎች የንባብ ፈቃድ ብቻ ስጥ"
-#: fs/type.pm:363
+#: fs/mount_point.pm:80
+#, fuzzy, c-format
+msgid "Duplicate mount point %s"
+msgstr "እያንዳንዱን የተመረጠውን አርዕስተ ጉዳይ አባዙ"
+
+#: fs/mount_point.pm:95
+#, c-format
+msgid "No partition available"
+msgstr "ምንም ክፋይ አልተገኘም"
+
+#: fs/mount_point.pm:98
+#, c-format
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: fs/mount_point.pm:105
+#, fuzzy, c-format
+msgid "Choose the mount points"
+msgstr "የመመልከቻውን ቀለም ይምረጡ"
+
+#: fs/partitioning.pm:46
+#, fuzzy, c-format
+msgid "Choose the partitions you want to format"
+msgstr "እባክዎ ለማሳየት የሚፈልጉትን ተጠቃሽ-መረጃ ይምረጡ:"
+
+#: fs/partitioning.pm:76
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+
+#: fs/partitioning.pm:79
+#, c-format
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: fs/partitioning_wizard.pm:47
+#, c-format
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: fs/partitioning_wizard.pm:52
+#, c-format
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: fs/partitioning_wizard.pm:80
+#, c-format
+msgid "Use free space"
+msgstr "ነጻ ቦታ ተጠቀም"
+
+#: fs/partitioning_wizard.pm:82
+#, fuzzy, c-format
+msgid "Not enough free space to allocate new partitions"
+msgstr "ወደ አዲሱ ክፋይ ፋይሎችን አንቀሳቅስ"
+
+#: fs/partitioning_wizard.pm:90
+#, c-format
+msgid "Use existing partitions"
+msgstr "የነበሩትን ክፋዮች ተጠቀም"
+
+#: fs/partitioning_wizard.pm:92
+#, c-format
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: fs/partitioning_wizard.pm:99
+#, c-format
+msgid "Use the Microsoft Windows® partition for loopback"
+msgstr ""
+
+#: fs/partitioning_wizard.pm:102
+#, fuzzy, c-format
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "%sን የት መትከል ይፈልጋሉ?"
+
+#: fs/partitioning_wizard.pm:104
+#, c-format
+msgid "Choose the sizes"
+msgstr "መጠኖቹን ይምረጡ"
+
+#: fs/partitioning_wizard.pm:105
+#, fuzzy, c-format
+msgid "Root partition size in MB: "
+msgstr "አዲስ መጠን በMB: "
+
+#: fs/partitioning_wizard.pm:106
+#, fuzzy, c-format
+msgid "Swap partition size in MB: "
+msgstr "አዲስ መጠን በMB: "
+
+#: fs/partitioning_wizard.pm:115
+#, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: fs/partitioning_wizard.pm:122
+#, c-format
+msgid "Use the free space on the Microsoft Windows® partition"
+msgstr ""
+
+#: fs/partitioning_wizard.pm:124
+#, fuzzy, c-format
+msgid "Which partition do you want to resize?"
+msgstr "ምን ማድረግ ይፈልጋሉ?"
+
+#: fs/partitioning_wizard.pm:138
+#, c-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: fs/partitioning_wizard.pm:141
+#, c-format
+msgid "Computing the size of the Microsoft Windows® partition"
+msgstr ""
+
+#: fs/partitioning_wizard.pm:148
+#, c-format
+msgid ""
+"Your Microsoft Windows® partition is too fragmented. Please reboot your "
+"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
+"the Mandriva Linux installation."
+msgstr ""
+
+#: fs/partitioning_wizard.pm:151
+#, 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 ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: fs/partitioning_wizard.pm:160 interactive.pm:538 interactive/curses.pm:217
+#: ugtk2.pm:508
+#, c-format
+msgid "Next"
+msgstr "የሚቀጥለው"
+
+#: fs/partitioning_wizard.pm:163
+#, fuzzy, c-format
+msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
+msgstr "የMicrosoft Windows® ክፋይ መጠን በማስተካከል ላይ"
+
+#: fs/partitioning_wizard.pm:164
+#, c-format
+msgid "Size"
+msgstr "መጠን"
+
+#: fs/partitioning_wizard.pm:173
+#, c-format
+msgid "Resizing Microsoft Windows® partition"
+msgstr "የMicrosoft Windows® ክፋይ መጠን በማስተካከል ላይ"
+
+#: fs/partitioning_wizard.pm:178
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "የFATን መጠን መለወጥ አልተሳካም: %s"
+
+#: fs/partitioning_wizard.pm:193
+#, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Remove Microsoft Windows®"
+msgstr "Microsoft Windows®ን አስወግድ"
+
+#: fs/partitioning_wizard.pm:198
+#, fuzzy, c-format
+msgid "Erase and use entire disk"
+msgstr "ዲስኩን እንዳለ ደምስስ"
+
+#: fs/partitioning_wizard.pm:200
+#, c-format
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: fs/partitioning_wizard.pm:206
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: fs/partitioning_wizard.pm:217
+#, c-format
+msgid "Custom disk partitioning"
+msgstr "የተለመደውን ዲስክ አከፋፈል"
+
+#: fs/partitioning_wizard.pm:223
+#, c-format
+msgid "Use fdisk"
+msgstr "fdiskን ተጠቀም"
+
+#: fs/partitioning_wizard.pm:226
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: fs/partitioning_wizard.pm:266
+#, c-format
+msgid "I can not find any room for installing"
+msgstr "የመትከያ ቦታ ማግኘት አልቻልኩም"
+
+#: fs/partitioning_wizard.pm:270
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: fs/partitioning_wizard.pm:278
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "መከፋፈል አልተሳካም: %s"
+
+#: fs/type.pm:366
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr ""
-#: fs/type.pm:364
+#: fs/type.pm:367
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr ""
@@ -3048,7 +2495,12 @@ msgstr "ከ/usr ጋር"
msgid "server"
msgstr "ሰርቨር"
-#: fsedit.pm:219
+#: fsedit.pm:116
+#, c-format
+msgid "BIOS software RAID detected on disks %s. Activate it?"
+msgstr ""
+
+#: fsedit.pm:230
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
@@ -3060,22 +2512,22 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
-#: fsedit.pm:392
+#: fsedit.pm:403
#, c-format
msgid "Mount points must begin with a leading /"
msgstr ""
-#: fsedit.pm:393
+#: fsedit.pm:404
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:394
+#: fsedit.pm:405
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: fsedit.pm:398
+#: fsedit.pm:409
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -3083,14 +2535,14 @@ msgid ""
"Please be sure to add a /boot partition"
msgstr ""
-#: fsedit.pm:404
+#: fsedit.pm:415
#, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
-#: fsedit.pm:406
+#: fsedit.pm:417
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -3099,34 +2551,34 @@ msgid ""
"You should create a /boot partition first"
msgstr ""
-#: fsedit.pm:410 fsedit.pm:412
+#: fsedit.pm:421 fsedit.pm:423
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: fsedit.pm:414 fsedit.pm:416
+#: fsedit.pm:425 fsedit.pm:427
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: fsedit.pm:418
+#: fsedit.pm:429
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr ""
-#: fsedit.pm:482
+#: fsedit.pm:493
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: fsedit.pm:484
+#: fsedit.pm:495
#, c-format
msgid "Nothing to do"
msgstr "የሚሰራ ነገር የለም"
-#: harddrake/data.pm:62 install_any.pm:1710
+#: harddrake/data.pm:62
#, c-format
msgid "Floppy"
msgstr "ፍሎፒ"
@@ -3136,12 +2588,12 @@ msgstr "ፍሎፒ"
msgid "Zip"
msgstr "ዚፕ"
-#: harddrake/data.pm:88 install_any.pm:1711
+#: harddrake/data.pm:88
#, c-format
msgid "Hard Disk"
msgstr "ዲስክ"
-#: harddrake/data.pm:97 install_any.pm:1712
+#: harddrake/data.pm:97
#, c-format
msgid "CDROM"
msgstr "ሲዲ-ሮም"
@@ -3156,103 +2608,102 @@ msgstr "ዲሲ/ዲቪዲ አቃጣይ ፕሮግራሞች"
msgid "DVD-ROM"
msgstr "ዲቪዲ-ሮም"
-#: harddrake/data.pm:127 standalone/drakbackup:2066
+#: harddrake/data.pm:127
#, c-format
msgid "Tape"
msgstr "ቴፕ"
-#: harddrake/data.pm:136
+#: harddrake/data.pm:138
+#, c-format
+msgid "AGP controllers"
+msgstr "የAGP ተቆጣጣሪዎች"
+
+#: harddrake/data.pm:147
#, c-format
msgid "Videocard"
msgstr "የቪዲዮ ካርድ"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:157
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:154
+#: harddrake/data.pm:165
#, c-format
msgid "Tvcard"
msgstr "የቲቪ ካርድ"
-#: harddrake/data.pm:163
+#: harddrake/data.pm:174
#, c-format
msgid "Other MultiMedia devices"
msgstr "ሌሎች የመገናኛ ብዙሃን መሳሪያዎች"
-#: harddrake/data.pm:172
+#: harddrake/data.pm:183
#, c-format
msgid "Soundcard"
msgstr "የድምጽ ካርድ"
-#: harddrake/data.pm:185
+#: harddrake/data.pm:196
#, c-format
msgid "Webcam"
msgstr "ዌብ-ካም"
-#: harddrake/data.pm:199
+#: harddrake/data.pm:210
#, c-format
msgid "Processors"
msgstr ""
-#: harddrake/data.pm:209
+#: harddrake/data.pm:220
#, c-format
msgid "ISDN adapters"
msgstr "የISDN ማመጣጠኛዎች"
-#: harddrake/data.pm:220
+#: harddrake/data.pm:231
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:229
+#: harddrake/data.pm:240
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:238
+#: harddrake/data.pm:249
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:247
+#: harddrake/data.pm:258
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:256
+#: harddrake/data.pm:267
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:265
+#: harddrake/data.pm:276
#, c-format
msgid "Ethernetcard"
msgstr "የኢተርኔት ካርድ"
-#: harddrake/data.pm:282 network/netconnect.pm:492
+#: harddrake/data.pm:293
#, c-format
msgid "Modem"
msgstr "ሞደም"
-#: harddrake/data.pm:292
+#: harddrake/data.pm:303
#, c-format
msgid "ADSL adapters"
msgstr "የADSL ማመጣጠኛዎች"
-#: harddrake/data.pm:306
+#: harddrake/data.pm:315
#, c-format
msgid "Memory"
msgstr "ማስታወሻ"
-#: harddrake/data.pm:315
-#, c-format
-msgid "AGP controllers"
-msgstr "የAGP ተቆጣጣሪዎች"
-
-#: harddrake/data.pm:324 help.pm:187 help.pm:856
-#: install_steps_interactive.pm:964
+#: harddrake/data.pm:324
#, c-format
msgid "Printer"
msgstr "ማተሚያ"
@@ -3278,85 +2729,92 @@ msgstr "የSATA ተቆጣጣሪዎች"
msgid "RAID controllers"
msgstr "የRAID ተቆጣጣሪዎች"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA ተቆጣጣሪዎች"
-#: harddrake/data.pm:385
+#: harddrake/data.pm:386
+#, c-format
+msgid "USB Mass Storage Devices"
+msgstr ""
+
+#: harddrake/data.pm:395
+#, fuzzy, c-format
+msgid "Card readers"
+msgstr "የካርድ ሞዴል፦"
+
+#: harddrake/data.pm:404
#, c-format
msgid "Firewire controllers"
msgstr "የFirewire ተቆጣጣሪዎች"
-#: harddrake/data.pm:394
+#: harddrake/data.pm:413
#, c-format
msgid "PCMCIA controllers"
msgstr "የPCMCIA ተቆጣጣዊዎች"
-#: harddrake/data.pm:403
+#: harddrake/data.pm:422
#, c-format
msgid "SCSI controllers"
msgstr "የSCSI ተቆጣጣዊዎች"
-#: harddrake/data.pm:412
+#: harddrake/data.pm:431
#, c-format
msgid "USB controllers"
msgstr "የUSB ተቆጣጣቂዎች"
-#: harddrake/data.pm:421
+#: harddrake/data.pm:440
#, c-format
msgid "USB ports"
msgstr "የUSB ፖርቶች"
-#: harddrake/data.pm:430
+#: harddrake/data.pm:449
#, c-format
msgid "SMBus controllers"
msgstr "የSMBus ተቆጣጣሪዎች"
-#: harddrake/data.pm:439
+#: harddrake/data.pm:458
#, c-format
msgid "Bridges and system controllers"
msgstr "ድልድዮች እና ሲስተም ተቆጣጣሪዎች"
-#: harddrake/data.pm:450 help.pm:856 install_steps_interactive.pm:94
-#: install_steps_interactive.pm:924 standalone/finish-install:41
-#: standalone/keyboarddrake:29
+#: harddrake/data.pm:469
#, c-format
msgid "Keyboard"
msgstr "መተየቢያ"
-#: harddrake/data.pm:463
+#: harddrake/data.pm:482
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:472 help.pm:856 install_steps_interactive.pm:957
+#: harddrake/data.pm:491
#, c-format
msgid "Mouse"
msgstr "መጠቆሚያ"
-#: harddrake/data.pm:486
+#: harddrake/data.pm:505
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:495
+#: harddrake/data.pm:514
#, c-format
msgid "Scanner"
msgstr ""
-#: harddrake/data.pm:505 standalone/harddrake2:475
+#: harddrake/data.pm:524
#, c-format
msgid "Unknown/Others"
msgstr "ያልታወቀ/ሌሎች"
-#: harddrake/data.pm:533
+#: harddrake/data.pm:552
#, c-format
msgid "cpu # "
msgstr "ሲፒዩ #"
-#: harddrake/sound.pm:195 standalone/drakconnect:162
-#: standalone/drakconnect:637
+#: harddrake/sound.pm:195
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "እባክዎ ይጠብቁ... ምርጫውን በስራ ላይ አያዋለ ነው"
@@ -3417,17 +2875,17 @@ msgid ""
"the ALSA library.\n"
msgstr ""
-#: harddrake/sound.pm:262 harddrake/sound.pm:350 standalone/drakups:144
+#: harddrake/sound.pm:262 harddrake/sound.pm:351
#, c-format
msgid "Driver:"
msgstr ""
-#: harddrake/sound.pm:270
+#: harddrake/sound.pm:271
#, c-format
msgid "Trouble shooting"
msgstr ""
-#: harddrake/sound.pm:278
+#: harddrake/sound.pm:279
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
@@ -3437,45 +2895,45 @@ msgid ""
"The new \"%s\" driver will only be used on next bootstrap."
msgstr ""
-#: harddrake/sound.pm:286
+#: harddrake/sound.pm:287
#, fuzzy, c-format
msgid "No open source driver"
msgstr "ስለ የነፃው ሶፍትዌር መረጃ አሳይ"
-#: harddrake/sound.pm:287
+#: harddrake/sound.pm:288
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
-#: harddrake/sound.pm:290
+#: harddrake/sound.pm:291
#, fuzzy, c-format
msgid "No known driver"
msgstr "(ስለ ቃላት አጻጻፍ አስተያየት የለም)"
-#: harddrake/sound.pm:291
+#: harddrake/sound.pm:292
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: harddrake/sound.pm:295 network/netconnect.pm:98 network/netconnect.pm:837
+#: harddrake/sound.pm:296
#, fuzzy, c-format
msgid "Unknown driver"
msgstr "ያልታወቀ የሆሄያት ኮድ፦ "
-#: harddrake/sound.pm:296
+#: harddrake/sound.pm:297
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr ""
-#: harddrake/sound.pm:310
+#: harddrake/sound.pm:311
#, c-format
msgid "Sound trouble shooting"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:313
+#: harddrake/sound.pm:314
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
@@ -3484,7 +2942,7 @@ msgid ""
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\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"
@@ -3499,18 +2957,18 @@ msgid ""
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
-#: harddrake/sound.pm:339
+#: harddrake/sound.pm:340
#, c-format
msgid "Let me pick any driver"
msgstr ""
-#: harddrake/sound.pm:342
+#: harddrake/sound.pm:343
#, fuzzy, c-format
msgid "Choosing an arbitrary driver"
msgstr "የነሲብ URLን አታስችል"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:345
+#: harddrake/sound.pm:346
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3520,8 +2978,7 @@ msgid ""
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
-#: harddrake/v4l.pm:12 standalone/net_applet:64 standalone/net_applet:65
-#: standalone/net_applet:67
+#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "በራስ-ገዝ ፈልጎ አግኝ"
@@ -3560,2695 +3017,53 @@ msgstr "የካርድ ሞዴል፦"
msgid "Tuner type:"
msgstr "የፋይሉ ዓይነት"
-#: harddrake/v4l.pm:479
-#, fuzzy, c-format
-msgid "Number of capture buffers:"
-msgstr "የአምዶቹን ቍጥር ለውጥ"
-
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: harddrake/v4l.pm:481
-#, c-format
-msgid "PLL setting:"
-msgstr "የPLL ምርጫ"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "Radio support:"
-msgstr "የሬዲዮ ድጋፍ"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "enable radio support"
-msgstr "የሬዲዮ ድጋፍ አስቻል"
-
-#: help.pm:12
-#, c-format
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandriva Linux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-
-#: help.pm:18
-#, c-format
-msgid ""
-"GNU/Linux is a multi-user system which means each user can have his or her\n"
-"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point will not be "
-"authorized\n"
-"to change anything except their own files and their own configurations,\n"
-"protecting the system from unintentional or malicious changes which could\n"
-"impact on the system as a whole. You'll have to create at least one regular\n"
-"user for yourself -- this is the account which you should use for routine,\n"
-"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
-"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system will not work any more. If you make a\n"
-"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you will not affect the entire system.\n"
-"\n"
-"The first field asks you for a real name. Of course, this is not mandatory\n"
-"-- you can actually enter whatever you like. DrakX will use the first word\n"
-"you type in this field and copy it to the \"%s\" one, which is the name\n"
-"this user will enter to log onto the system. If you like, you may override\n"
-"the default and change the user name. The next step is to enter a password.\n"
-"From a security point of view, a non-privileged (regular) user password is\n"
-"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
-"by making it blank or too simple: after all, your files could be the ones\n"
-"at risk.\n"
-"\n"
-"Once you click on \"%s\", you can add other users. Add a user for each one\n"
-"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
-"finished adding users.\n"
-"\n"
-"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
-"that user (bash by default).\n"
-"\n"
-"When you're finished adding users, you'll be asked to choose a user who\n"
-"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click on\n"
-"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
-msgstr ""
-
-#: help.pm:52 printer/printerdrake.pm:1866 printer/printerdrake.pm:1987
-#: standalone/draksambashare:60
+#: interactive.pm:125 interactive.pm:538 interactive/curses.pm:217
+#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
+#: interactive/stdio.pm:142 interactive/stdio.pm:143 ugtk2.pm:410 ugtk2.pm:508
+#: ugtk2.pm:788 ugtk2.pm:811
#, c-format
-msgid "User name"
-msgstr "የተጠቃሚ ስም"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: help.pm:52 help.pm:432 help.pm:682 install_interactive.pm:176
-#: install_steps_gtk.pm:237 install_steps_gtk.pm:682 interactive.pm:436
-#: interactive/newt.pm:321 network/thirdparty.pm:385
-#: printer/printerdrake.pm:3884 standalone/drakTermServ:412
-#: standalone/drakbackup:4102 standalone/drakbackup:4196
-#: standalone/drakbackup:4213 standalone/drakbackup:4231 ugtk2.pm:490
-#, c-format
-msgid "Next"
-msgstr "የሚቀጥለው"
-
-#: help.pm:52
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "ይህንን ሁኔታ መጠቀም ይፈልጋሉ?"
-
-#: help.pm:55
-#, c-format
-msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-
-#: help.pm:86
-#, c-format
-msgid ""
-"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-
-#: help.pm:93
-#, c-format
-msgid ""
-"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandriva Linux, and to make "
-"it\n"
-"simpler to manage, they have been placed into groups of similar\n"
-"applications.\n"
-"\n"
-"Mandriva Linux sorts package groups in four categories. You can mix and\n"
-"match applications from the various categories, so a ``Workstation''\n"
-"installation can still have applications from the ``Server'' category\n"
-"installed.\n"
-"\n"
-" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
-"more of the groups in the workstation category.\n"
-"\n"
-" * \"%s\": if you plan on using your machine for programming, select the\n"
-"appropriate groups from that category. The special \"LSB\" group will\n"
-"configure your system so that it complies as much as possible with the\n"
-"Linux Standard Base specifications.\n"
-"\n"
-" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
-"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
-"of the system. However, if you do not select the \"LSB\" group you will\n"
-"still have a system which is nearly 100%% LSB-compliant.\n"
-"\n"
-" * \"%s\": if your machine is intended to be a server, select which of the\n"
-"more common services you wish to install on your machine.\n"
-"\n"
-" * \"%s\": this is where you will choose your preferred graphical\n"
-"environment. At least one must be selected if you want to have a graphical\n"
-"interface available.\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group.\n"
-"\n"
-"You can check the \"%s\" box, which is useful if you're familiar with the\n"
-"packages being offered or if you want to have total control over what will\n"
-"be installed.\n"
-"\n"
-"If you start the installation in \"%s\" mode, you can deselect all groups\n"
-"and prevent the installation of any new packages. This is useful for\n"
-"repairing or updating an existing system.\n"
-"\n"
-"If you deselect all groups when performing a regular installation (as\n"
-"opposed to an upgrade), a dialog will pop up suggesting different options\n"
-"for a minimal installation:\n"
-"\n"
-" * \"%s\": install the minimum number of packages possible to have a\n"
-"working graphical desktop.\n"
-"\n"
-" * \"%s\": installs the base system plus basic utilities and their\n"
-"documentation. This installation is suitable for setting up a server.\n"
-"\n"
-" * \"%s\": will install the absolute minimum number of packages necessary\n"
-"to get a working Linux system. With this installation you will only have a\n"
-"command-line interface. The total size of this installation is about 65\n"
-"megabytes."
-msgstr ""
-
-#: help.pm:147 share/compssUsers.pl:24
-#, c-format
-msgid "Workstation"
-msgstr ""
-
-#: help.pm:147 share/compssUsers.pl:65 share/compssUsers.pl:167
-#: share/compssUsers.pl:169
-#, c-format
-msgid "Development"
-msgstr "እድገት"
-
-#: help.pm:147 share/compssUsers.pl:145
-#, c-format
-msgid "Graphical Environment"
-msgstr ""
-
-#: help.pm:147 install_steps_gtk.pm:235 install_steps_interactive.pm:623
-#, c-format
-msgid "Individual package selection"
-msgstr "የነጠላ ጥቅል ምርጫ"
-
-#: help.pm:147 help.pm:589
-#, c-format
-msgid "Upgrade"
-msgstr ""
-
-#: help.pm:147 install_steps_interactive.pm:581
-#, c-format
-msgid "With X"
-msgstr "በX"
-
-#: help.pm:147
-#, c-format
-msgid "With basic documentation"
-msgstr "ከመሰረታዊ ማስረጃ ጋር"
-
-#: help.pm:147
-#, c-format
-msgid "Truly minimal install"
-msgstr "በእውነት አነስተኛ ተከላ"
-
-#: help.pm:150
-#, c-format
-msgid ""
-"If you choose to install packages individually, the installer will present\n"
-"a tree containing all packages classified by groups and subgroups. While\n"
-"browsing the tree, you can select entire groups, subgroups, or individual\n"
-"packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description will appear on the\n"
-"right to let you know the purpose of that package.\n"
-"\n"
-"!! If a server package has been selected, either because you specifically\n"
-"chose the individual package or because it was part of a group of packages,\n"
-"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandriva Linux will automatically start any installed\n"
-"services at boot time. Even if they are safe and have no known issues at\n"
-"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandriva Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do "
-"or\n"
-"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
-"the listed services and they will be started automatically at boot time. !!\n"
-"\n"
-"The \"%s\" option is used to disable the warning dialog which appears\n"
-"whenever the installer automatically selects a package to resolve a\n"
-"dependency issue. Some packages depend on others and the installation of\n"
-"one particular package may require the installation of another package. The\n"
-"installer can determine which packages are required to satisfy a dependency\n"
-"to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-"package list created during a previous installation. This is useful if you\n"
-"have a number of machines that you wish to configure identically. Clicking\n"
-"on this icon will ask you to insert the floppy disk created at the end of\n"
-"another installation. See the second tip of the last step on how to create\n"
-"such a floppy."
-msgstr ""
-
-#: help.pm:181 help.pm:286 help.pm:314 help.pm:445 install_any.pm:944
-#: interactive.pm:161 modules/interactive.pm:71 standalone/drakbackup:2636
-#: standalone/drakfont:687 standalone/draksec:54 standalone/harddrake2:331
-#: ugtk2.pm:898 wizards.pm:156
-#, c-format
-msgid "No"
-msgstr "አይ"
+msgid "Ok"
+msgstr "እሺ"
-#: help.pm:181 help.pm:286 help.pm:445 install_any.pm:944 interactive.pm:161
-#: modules/interactive.pm:71 printer/printerdrake.pm:883
-#: printer/printerdrake.pm:898 standalone/drakbackup:2636
-#: standalone/drakfont:685 standalone/draksec:55 standalone/harddrake2:330
-#: ugtk2.pm:898 wizards.pm:156
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "አዎ"
-#: help.pm:181
-#, c-format
-msgid "Automatic dependencies"
-msgstr "ራስ-ገዛዊ ራስን መቻል"
-
-#: help.pm:184
-#, c-format
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to set up a new printer. The interface presented in our\n"
-"manual is similar to the one used during installation."
-msgstr ""
-
-#: help.pm:187 help.pm:567 help.pm:856 install_steps_gtk.pm:595
-#: standalone/drakbackup:2460 standalone/drakbackup:2464
-#: standalone/drakbackup:2468 standalone/drakbackup:2472
-#: standalone/drakroam:227
-#, c-format
-msgid "Configure"
-msgstr "ለውጥ"
-
-#: help.pm:190
-#, c-format
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
-"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which are not needed at boot\n"
-"time.\n"
-"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably do not want to start any services which you do not "
-"need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-
-#: help.pm:207
-#, c-format
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
-"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
-msgstr ""
-
-#: help.pm:218 install_steps_interactive.pm:859
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "ለሀርድዌር ሰአት GMT ተመርጧል"
-
-#: help.pm:218
-#, fuzzy, c-format
-msgid "Automatic time synchronization"
-msgstr "ቀን እና ሰዓት"
-
-#: help.pm:221
-#, c-format
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-
-#: help.pm:232
-#, c-format
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-
-#: help.pm:289
-#, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
-msgstr ""
-
-#: help.pm:296
-#, c-format
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
-msgstr ""
-
-#: help.pm:304
-#, c-format
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-
-#: help.pm:309
-#, c-format
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-
-#: help.pm:317
-#, c-format
-msgid ""
-"You now need to decide where you want to install the Mandriva Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandriva Linux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandriva Linux system, "
-"choose\n"
-"this option. Be careful, because you will not be able to undo this "
-"operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-
-#: help.pm:375 install_interactive.pm:96
-#, c-format
-msgid "Use free space"
-msgstr "ነጻ ቦታ ተጠቀም"
-
-#: help.pm:375
-#, c-format
-msgid "Use existing partition"
-msgstr "የነበረውን ክፋይ ተጠቀም"
-
-#: help.pm:375 install_interactive.pm:138
-#, c-format
-msgid "Use the free space on the Microsoft Windows® partition"
-msgstr ""
-
-#: help.pm:375
-#, c-format
-msgid "Erase entire disk"
-msgstr "ዲስኩን እንዳለ ደምስስ"
-
-#: help.pm:375
-#, c-format
-msgid "Remove Windows"
-msgstr "Windowsን አስወግድ "
-
-#: help.pm:375 install_interactive.pm:233
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "የተለመደውን ዲስክ አከፋፈል"
-
-#: help.pm:378
-#, c-format
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
-"to remove the installation media (CD-ROM or floppy). The first thing you\n"
-"should see after your computer has finished doing its hardware tests is the\n"
-"boot-loader menu, giving you the choice of which operating system to start.\n"
-"\n"
-"The \"%s\" button shows two more buttons to:\n"
-"\n"
-" * \"%s\": enables you to create an installation floppy disk which will\n"
-"automatically perform a whole installation without the help of an operator,\n"
-"similar to the installation you've just configured.\n"
-"\n"
-" Note that two different options are available after clicking on that\n"
-"button:\n"
-"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
-"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing on a number of similar\n"
-"machines. See the Auto install section on our web site for more\n"
-"information.\n"
-"\n"
-" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
-"To use this selection with another installation, insert the floppy and\n"
-"start the installation. At the prompt, press the [F1] key, type >>linux\n"
-"defcfg=\"floppy\"<< and press the [Enter] key.\n"
-"\n"
-"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
-"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
-"/dev/fd0\"."
-msgstr ""
-
-#: help.pm:410
-#, c-format
-msgid "Generate auto-install floppy"
-msgstr ""
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Replay"
-msgstr ""
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Automated"
-msgstr ""
-
-#: help.pm:410 install_steps_interactive.pm:1317
-#, c-format
-msgid "Save packages selection"
-msgstr "የጥቅሎችን ምርጫ አስቀምጥ"
-
-#: help.pm:413
-#, c-format
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
-"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
-"reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"will not be able to recover it.\n"
-"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
-"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandriva Linux operating system installation.\n"
-"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-
-#: help.pm:432 install_steps_gtk.pm:392 interactive.pm:437
-#: interactive/newt.pm:318 printer/printerdrake.pm:3882
-#: standalone/drakTermServ:391 standalone/drakbackup:4065
-#: standalone/drakbackup:4101 standalone/drakbackup:4212
-#: standalone/drakbackup:4227 ugtk2.pm:488
-#, c-format
-msgid "Previous"
-msgstr "የቀድሞው"
-
-#: help.pm:435
-#, c-format
-msgid ""
-"By the time you install Mandriva Linux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-
-#: help.pm:445 help.pm:589 install_steps_gtk.pm:391
-#: install_steps_interactive.pm:132
-#, c-format
-msgid "Install"
-msgstr "ትከል"
-
-#: help.pm:448
-#, c-format
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
-"\n"
-"If you do not know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandriva Linux\n"
-"Control Center.\n"
-"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-
-#: help.pm:459
-#, c-format
-msgid "Security Administrator"
-msgstr "የደህንነት ተቆጣጣሪ"
-
-#: help.pm:462
-#, c-format
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandriva Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"%s\": this option deletes all partitions on the selected hard drive\n"
-"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
-"partitions in the free space of your hard drive\n"
-"\n"
-"\"%s\": gives access to additional features:\n"
-"\n"
-" * \"%s\": saves the partition table to a floppy. Useful for later\n"
-"partition-table recovery if necessary. It is strongly recommended that you\n"
-"perform this step.\n"
-"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
-"\n"
-" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it does not always\n"
-"work.\n"
-"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
-"\n"
-" * \"%s\": un-checking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
-"\n"
-" * \"%s\": use this option if you wish to use a wizard to partition your\n"
-"hard drive. This is recommended if you do not have a good understanding of\n"
-"partitioning.\n"
-"\n"
-" * \"%s\": use this option to cancel your changes.\n"
-"\n"
-" * \"%s\": allows additional actions on partitions (type, options, format)\n"
-"and gives more information about the hard drive.\n"
-"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"When defining the size of a partition, you can finely set the partition\n"
-"size by using the Arrow keys of your keyboard.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and the [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
-"\n"
-" * Ctrl-d to delete a partition\n"
-"\n"
-" * Ctrl-m to set the mount point\n"
-"\n"
-"To get information about the different file system types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-
-#: help.pm:531
-#, c-format
-msgid "Removable media auto-mounting"
-msgstr ""
-
-#: help.pm:531
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr ""
-
-#: help.pm:534
-#, c-format
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandriva Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-
-#: help.pm:565
-#, c-format
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country is not in "
-"the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-
-#: help.pm:570
-#, c-format
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandriva Linux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandriva Linux system. Your current "
-"partitioning\n"
-"scheme and user data will not be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandriva Linux version \"8.1\" is not recommended."
-msgstr ""
-
-#: help.pm:592
-#, c-format
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
-"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard do not match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
-"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
-"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-
-#: help.pm:610
-#, c-format
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandriva Linux's use of UTF-8 "
-"will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-
-#: help.pm:648
-#, c-format
-msgid "Espanol"
-msgstr "ስፓኒሽ"
-
-#: help.pm:651
-#, c-format
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
-"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-
-#: help.pm:682
-#, fuzzy, c-format
-msgid "with Wheel emulation"
-msgstr "አኃዞች (ከክፍተት ጋር)"
-
-#: help.pm:682
-#, c-format
-msgid "Universal | Any PS/2 & USB mice"
-msgstr ""
-
-#: help.pm:685
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-
-#: help.pm:689
-#, c-format
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: do not make the password too long or too complicated because "
-"you\n"
-"must be able to remember it!\n"
-"\n"
-"The password will not be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you do not know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-
-#: help.pm:723
-#, c-format
-msgid "authentication"
-msgstr ""
-
-#: help.pm:726
-#, c-format
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can not determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" will not install any boot loader. Use this option only if "
-"you\n"
-"know what you're doing."
-msgstr ""
-
-#: help.pm:743
-#, c-format
-msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you do not like your printing\n"
-"system you may change it by running PrinterDrake from the Mandriva Linux\n"
-"Control Center and clicking on the \"%s\" button."
-msgstr ""
-
-#: help.pm:766
-#, c-format
-msgid "pdq"
-msgstr "pdq"
-
-#: help.pm:766 printer/cups.pm:117 printer/data.pm:129
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
-
-#: help.pm:766
-#, fuzzy, c-format
-msgid "Expert"
-msgstr "የመሸፈኛ ዘዴ"
-
-#: help.pm:769
-#, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-
-#: help.pm:787
-#, c-format
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-
-#: help.pm:789 help.pm:856 install_steps_interactive.pm:991
-#: install_steps_interactive.pm:1008
-#, c-format
-msgid "Sound card"
-msgstr "የድምፅ ካርድ"
-
-#: help.pm:792
-#, c-format
-msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"is not in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it is not\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandriva Linux Control Center after the installation has finished to "
-"benefit\n"
-"from full in-line help.\n"
-"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandriva Linux Control Center.\n"
-"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-
-#: help.pm:856 install_steps_interactive.pm:855
-#: install_steps_interactive.pm:950 standalone/drakclock:100
-#: standalone/finish-install:56 standalone/finish-install:57
-#, c-format
-msgid "Timezone"
-msgstr "የሰአት ክልል"
-
-#: help.pm:856 install_steps_interactive.pm:1024
-#, c-format
-msgid "TV card"
-msgstr "የቲቪ ካርድ"
-
-#: help.pm:856
-#, c-format
-msgid "ISDN card"
-msgstr "የISDN ካርድ"
-
-#: help.pm:856
-#, c-format
-msgid "Graphical Interface"
-msgstr "ንድፋዊ እይታ"
-
-#: help.pm:856 install_any.pm:1733 install_steps_interactive.pm:1042
-#: standalone/drakbackup:2051
-#, c-format
-msgid "Network"
-msgstr "መረብ"
-
-#: help.pm:856 install_steps_interactive.pm:1054
-#, c-format
-msgid "Proxies"
-msgstr "ወኪሎች"
-
-#: help.pm:856 install_steps_interactive.pm:1065
-#, c-format
-msgid "Security Level"
-msgstr "የደህንነት ደረጃ"
-
-#: help.pm:856 install_steps_interactive.pm:1079 network/drakfirewall.pm:189
-#, c-format
-msgid "Firewall"
-msgstr "የእሳት ግድግዳ"
-
-#: help.pm:856 install_steps_interactive.pm:1095
-#, c-format
-msgid "Bootloader"
-msgstr "አስጀማሪያ"
-
-#: help.pm:856 install_steps_interactive.pm:1108 services.pm:114
-#: services.pm:157 services.pm:193
-#, c-format
-msgid "Services"
-msgstr "አገልግሎት"
-
-#: help.pm:859
-#, c-format
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-
-#: help.pm:864
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-
-#: help.pm:870
-#, c-format
-msgid "Next ->"
-msgstr "የሚቀጥለው ->"
-
-#: help.pm:870
-#, c-format
-msgid "<- Previous"
-msgstr "<- የቀድሞው"
-
-#: install2.pm:115
-#, c-format
-msgid ""
-"Can not access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: install2.pm:167
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: install_any.pm:406
-#, fuzzy, c-format
-msgid "Do you have further supplementary media?"
-msgstr "ሌላ አለ?"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:409
-#, c-format
-msgid ""
-"The following media have been found and will be used during install: %s.\n"
-"\n"
-"\n"
-"Do you have a supplementary installation medium to configure?"
-msgstr ""
-
-#: install_any.pm:422 printer/printerdrake.pm:3211
-#: printer/printerdrake.pm:3218 standalone/scannerdrake:182
-#: standalone/scannerdrake:190 standalone/scannerdrake:241
-#: standalone/scannerdrake:248
-#, c-format
-msgid "CD-ROM"
-msgstr "ሲዲ-ሮም"
-
-#: install_any.pm:422
-#, fuzzy, c-format
-msgid "Network (HTTP)"
-msgstr "መረብ"
-
-#: install_any.pm:422
-#, fuzzy, c-format
-msgid "Network (FTP)"
-msgstr "መረብ"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (NFS)"
-msgstr ""
-
-#: install_any.pm:452
-#, c-format
-msgid "Insert the CD 1 again"
-msgstr ""
-
-#: install_any.pm:478 network/netconnect.pm:866 standalone/drakbackup:114
-#, fuzzy, c-format
-msgid "No device found"
-msgstr "ምንም ጽሑፍ አልተገኘም"
-
-#: install_any.pm:483
-#, c-format
-msgid "Insert the CD"
-msgstr ""
-
-#: install_any.pm:488
-#, fuzzy, c-format
-msgid "Unable to mount CD-ROM"
-msgstr "እንደገና የሚሰራ ምንም የለም።"
-
-#: install_any.pm:521 install_any.pm:542
-#, c-format
-msgid "URL of the mirror?"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "NFS setup"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "Please enter the hostname and directory of your NFS media"
-msgstr ""
-
-#: install_any.pm:527
-#, c-format
-msgid "Hostname of the NFS mount ?"
-msgstr ""
-
-#: install_any.pm:527 standalone/draknfs:288
-#, c-format
-msgid "Directory"
-msgstr "ዶሴ"
-
-#: install_any.pm:580
-#, fuzzy, c-format
-msgid ""
-"Can't find a package list file on this mirror. Make sure the location is "
-"correct."
-msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
-
-#: install_any.pm:657
-#, c-format
-msgid "Removing packages prior to upgrade..."
-msgstr ""
-
-#: install_any.pm:699
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr ""
-
-#: install_any.pm:703
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr ""
-
-#: install_any.pm:781
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done."
-msgstr ""
-
-#: install_any.pm:793
-#, fuzzy, c-format
-msgid "Copying in progress"
-msgstr "የተሻሻለ ዊድጌት ፍጠር"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:935
-#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They do not have any known security\n"
-"issues, but some new ones could be found. In that case, you must make sure\n"
-"to upgrade as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:958
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-
-#: install_any.pm:1394 partition_table.pm:597
-#, c-format
-msgid "Error reading file %s"
-msgstr "%sን በማንበብ ላይ ስህተት ተፈጥሯል"
-
-#: install_any.pm:1628
-#, fuzzy, c-format
-msgid "The following disk(s) were renamed:"
-msgstr "የሚከተሉት ጥቅሎች ሊወገዱ ነው"
-
-#: install_any.pm:1630
-#, c-format
-msgid "%s (previously named as %s)"
-msgstr ""
-
-#: install_any.pm:1670
-#, 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 ""
-
-#: install_any.pm:1714
-#, c-format
-msgid "HTTP"
-msgstr "HTTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "FTP"
-msgstr "FTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "NFS"
-msgstr "NFS"
-
-#: install_any.pm:1737
-#, fuzzy, c-format
-msgid "Please choose a media"
-msgstr "እባክዎ ያለ ሰነድን ይምረጡ"
-
-#: install_any.pm:1753
-#, fuzzy, c-format
-msgid "File already exists. Overwrite it?"
-msgstr "ፋይሉ በፊትም ነበር። ልጠቀምበት?"
-
-#: install_any.pm:1757
-#, c-format
-msgid "Permission denied"
-msgstr "ፈቃድ አልተሰጠም"
-
-#: install_any.pm:1806
-#, c-format
-msgid "Bad NFS name"
-msgstr ""
-
-#: install_any.pm:1827
-#, fuzzy, c-format
-msgid "Bad media %s"
-msgstr "ፋይል ተጭኗል %s"
-
-#: install_any.pm:1877
-#, c-format
-msgid "Can not make screenshots before partitioning"
-msgstr ""
-
-#: install_any.pm:1884
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr ""
-
-#: install_gtk.pm:136
-#, c-format
-msgid "System installation"
-msgstr "የሲስተም ተከላ"
-
-#: install_gtk.pm:139
-#, c-format
-msgid "System configuration"
-msgstr "የሲስተም ምርጫ"
-
-#: install_interactive.pm:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-
-#: install_interactive.pm:63
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-
-#: install_interactive.pm:68
-#, c-format
-msgid ""
-"You do not have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-
-#: install_interactive.pm:71 install_steps.pm:215
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr ""
-
-#: install_interactive.pm:98
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr ""
-
-#: install_interactive.pm:106
-#, c-format
-msgid "Use existing partitions"
-msgstr "የነበሩትን ክፋዮች ተጠቀም"
-
-#: install_interactive.pm:108
-#, c-format
-msgid "There is no existing partition to use"
-msgstr ""
-
-#: install_interactive.pm:115
-#, c-format
-msgid "Use the Microsoft Windows® partition for loopback"
-msgstr ""
-
-#: install_interactive.pm:118
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr ""
-
-#: install_interactive.pm:120
-#, c-format
-msgid "Choose the sizes"
-msgstr "መጠኖቹን ይምረጡ"
-
-#: install_interactive.pm:121
-#, c-format
-msgid "Root partition size in MB: "
-msgstr ""
-
-#: install_interactive.pm:122
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr ""
-
-#: install_interactive.pm:131
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-
-#: install_interactive.pm:140
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr ""
-
-#: install_interactive.pm:154
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occurred: %s"
-msgstr ""
-
-#: install_interactive.pm:157
-#, c-format
-msgid "Computing the size of the Microsoft Windows® partition"
-msgstr ""
-
-#: install_interactive.pm:164
-#, c-format
-msgid ""
-"Your Microsoft Windows® partition is too fragmented. Please reboot your "
-"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
-"the Mandriva Linux installation."
-msgstr ""
-
-#: install_interactive.pm:167
-#, 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 ""
-
-#: install_interactive.pm:179
-#, c-format
-msgid "Which size do you want to keep for Microsoft Windows® on"
-msgstr ""
-
-#: install_interactive.pm:180
-#, c-format
-msgid "partition %s"
-msgstr ""
-
-#: install_interactive.pm:189
-#, c-format
-msgid "Resizing Microsoft Windows® partition"
-msgstr "የMicrosoft Windows® ክፋይ መጠን በማስተካከል ላይ"
-
-#: install_interactive.pm:194
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "የFATን መጠን መለወጥ አልተሳካም: %s"
-
-#: install_interactive.pm:209
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr ""
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Remove Microsoft Windows®"
-msgstr "Microsoft Windows®ን አስወግድ"
-
-#: install_interactive.pm:214
-#, fuzzy, c-format
-msgid "Erase and use entire disk"
-msgstr "ዲስኩን እንዳለ ደምስስ"
-
-#: install_interactive.pm:216
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-
-#: install_interactive.pm:222
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-
-#: install_interactive.pm:237
-#, c-format
-msgid "Use fdisk"
-msgstr "fdiskን ተጠቀም"
-
-#: install_interactive.pm:240
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, do not forget to save using `w'"
-msgstr ""
-
-#: install_interactive.pm:276
-#, c-format
-msgid "I can not find any room for installing"
-msgstr "የመትከያ ቦታ ማግኘት አልቻልኩም"
-
-#: install_interactive.pm:280
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr ""
-
-#: install_interactive.pm:288
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "መከፋፈል አልተሳካም: %s"
-
-#: install_interactive.pm:295
-#, c-format
-msgid "Bringing up the network"
-msgstr "መረቡን በማቀራረብ ላይ"
-
-#: install_interactive.pm:300
-#, c-format
-msgid "Bringing down the network"
-msgstr "መረቡን በማለያየት ላይ"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:10
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandriva "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandriva Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. This document is a license agreement "
-"between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you "
-"explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this "
-"License. \n"
-"If you disagree with any portion of the License, you are not allowed to "
-"install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner "
-"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate "
-"your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all "
-"copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Limited Warranty\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
-"be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without "
-"limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties "
-"resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or "
-"inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or "
-"occurrence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
-"COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
-"no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever "
-"(including without \n"
-"limitation damages for loss of business, interruption of business, financial "
-"loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential "
-"loss) arising out \n"
-"of the possession and use of software components or arising out of "
-"downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some "
-"countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong "
-"cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. The GPL License and Related Licenses\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. "
-"Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the "
-"documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. Intellectual Property Rights\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
-"as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
-"Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Governing Laws \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-msgstr ""
-
-#: install_messages.pm:90
-#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:98
-#, c-format
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:131
-#, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press Enter to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandriva "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandriva Linux User's Guide."
-msgstr ""
-
-#: install_steps.pm:250
-#, fuzzy, c-format
-msgid "Duplicate mount point %s"
-msgstr "እያንዳንዱን የተመረጠውን አርዕስተ ጉዳይ አባዙ"
-
-#: install_steps.pm:482
-#, c-format
-msgid ""
-"Some important packages did not get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
-"\"\n"
-msgstr ""
-
-#: install_steps_auto_install.pm:68 install_steps_stdio.pm:27
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr ""
-
-#: install_steps_gtk.pm:181
-#, c-format
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandriva Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-
-#: install_steps_gtk.pm:211 install_steps_interactive.pm:605
-#, c-format
-msgid "Package Group Selection"
-msgstr "የጥቅል ቡድን ምርጫ"
-
-#: install_steps_gtk.pm:254 install_steps_interactive.pm:548
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "አጠቃላይ መጠን: %d / %d MB"
-
-#: install_steps_gtk.pm:299
-#, c-format
-msgid "Bad package"
-msgstr "ትክክል ያልሆነ ጥቅል"
-
-#: install_steps_gtk.pm:301
-#, c-format
-msgid "Version: "
-msgstr "ዝርያ: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "Size: "
-msgstr "መጠን: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "%d KB\n"
-msgstr "%d KB\n"
-
-#: install_steps_gtk.pm:303
-#, c-format
-msgid "Importance: "
-msgstr "አስፈላጊነት: "
-
-#: install_steps_gtk.pm:336
-#, c-format
-msgid "You can not select/unselect this package"
-msgstr "ይህን ጥቅል መምረጥ/አለመምረጥ አይችሉም"
-
-#: install_steps_gtk.pm:340 network/thirdparty.pm:331
-#, c-format
-msgid "due to missing %s"
-msgstr "%s ባለመገኘቱ ምክንያት"
-
-#: install_steps_gtk.pm:341
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "%s አጥጋቢ ባለመሆኑ ምክንያት"
-
-#: install_steps_gtk.pm:342
-#, c-format
-msgid "trying to promote %s"
-msgstr "%sን ለማስተዋወቅ በመሞከር ላይ"
-
-#: install_steps_gtk.pm:343
-#, c-format
-msgid "in order to keep %s"
-msgstr "%sን ለማቆየት"
-
-#: install_steps_gtk.pm:348
-#, c-format
-msgid ""
-"You can not select this package as there is not enough space left to install "
-"it"
-msgstr ""
-
-#: install_steps_gtk.pm:351
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "የሚከተሉት ጥቅሎች ሊተከሉ ነው"
-
-#: install_steps_gtk.pm:352
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "የሚከተሉት ጥቅሎች ሊወገዱ ነው"
-
-#: install_steps_gtk.pm:376
-#, c-format
-msgid "This is a mandatory package, it can not be unselected"
-msgstr ""
-
-#: install_steps_gtk.pm:378
-#, c-format
-msgid "You can not unselect this package. It is already installed"
-msgstr "ይህንን ጥቅል መምረጥ አይችሉም። ቀደም ብሎ ተተክሏል።"
-
-#: install_steps_gtk.pm:381
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-
-#: install_steps_gtk.pm:384
-#, c-format
-msgid "You can not unselect this package. It must be upgraded"
-msgstr ""
-
-#: install_steps_gtk.pm:389
-#, c-format
-msgid "Show automatically selected packages"
-msgstr ""
-
-#: install_steps_gtk.pm:394
-#, fuzzy, c-format
-msgid "Load/Save selection"
-msgstr "የጥቅል ምርጫ"
-
-#: install_steps_gtk.pm:395
-#, c-format
-msgid "Updating package selection"
-msgstr "የጥቅል ምርጫ በማሻሻል ላይ"
-
-#: install_steps_gtk.pm:400
-#, c-format
-msgid "Minimal install"
-msgstr "አነስተኛ ተከላ"
-
-#: install_steps_gtk.pm:414 install_steps_interactive.pm:467
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "ለመትከል የሚፈልጉትን ጥቅል ይምረጡ"
-
-#: install_steps_gtk.pm:431 install_steps_interactive.pm:691
-#, c-format
-msgid "Installing"
-msgstr "በመትከል ላይ"
-
-#: install_steps_gtk.pm:457
-#, c-format
-msgid "No details"
-msgstr "ያለ ዝርዝሮች"
-
-#: install_steps_gtk.pm:472
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
-msgid "Time remaining "
-msgstr " ይቀራል"
-
-#: install_steps_gtk.pm:473
-#, c-format
-msgid "Estimating"
-msgstr "በግምት"
-
-#: install_steps_gtk.pm:500
-#, c-format
-msgid "%d packages"
-msgstr "%d ጥቅሎች"
-
-#: install_steps_gtk.pm:543 install_steps_interactive.pm:719
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-
-#: install_steps_gtk.pm:556 install_steps_interactive.pm:730
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr ""
-
-#: install_steps_gtk.pm:558 install_steps_interactive.pm:734
-#, c-format
-msgid "There was an error installing packages:"
-msgstr ""
-
-#: install_steps_gtk.pm:560 install_steps_interactive.pm:730
-#: install_steps_interactive.pm:734
-#, c-format
-msgid "Go on anyway?"
-msgstr "ለማንኛውም ቀጥል?"
-
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:910 steps.pm:30
-#, c-format
-msgid "Summary"
-msgstr "ማጠቃለያ"
-
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:906
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "not configured"
-msgstr "አልተስተካከለም"
-
-#: install_steps_gtk.pm:668
-#, c-format
-msgid ""
-"The following installation media have been found.\n"
-"If you want to skip some of them, you can unselect them now."
-msgstr ""
-
-#: install_steps_gtk.pm:677
-#, c-format
-msgid ""
-"You have the option to copy the contents of the CDs onto the hard drive "
-"before installation.\n"
-"It will then continue from the hard drive and the packages will remain "
-"available once the system is fully installed."
-msgstr ""
-
-#: install_steps_gtk.pm:679
-#, c-format
-msgid "Copy whole CDs"
-msgstr ""
-
-#: install_steps_interactive.pm:95
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr ""
-
-#: install_steps_interactive.pm:97
-#, c-format
-msgid "Here is the full list of available keyboards"
-msgstr ""
-
-#: install_steps_interactive.pm:127
-#, c-format
-msgid "Install/Upgrade"
-msgstr "ትከል/አሳድግ"
-
-#: install_steps_interactive.pm:128
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr ""
-
-#: install_steps_interactive.pm:134
-#, c-format
-msgid "Upgrade %s"
-msgstr ""
-
-#: install_steps_interactive.pm:147
-#, c-format
-msgid "Encryption key for %s"
-msgstr "የ%s ሚስጢራዊ መገልበጫ ቁልፍ"
-
-#: install_steps_interactive.pm:170
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "እባክዎ የመጠቆሚያዎን አይነት ይምረጡ።"
-
-#: install_steps_interactive.pm:171
-#, c-format
-msgid "Mouse choice"
-msgstr ""
-
-#: install_steps_interactive.pm:180 standalone/mousedrake:46
-#, c-format
-msgid "Mouse Port"
-msgstr "የመጠቆሚያ ፖርት"
-
-#: install_steps_interactive.pm:181 standalone/mousedrake:47
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr ""
-
-#: install_steps_interactive.pm:191
-#, c-format
-msgid "Buttons emulation"
-msgstr "የቁልፎች ቅጂ"
-
-#: install_steps_interactive.pm:193
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "የቁልፉ 2 ቅጂ"
-
-#: install_steps_interactive.pm:194
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "የቁልፉ 3 ቅጂ"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr ""
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "Configuring IDE"
-msgstr "IDEን በማስተካከል ላይ"
-
-#: install_steps_interactive.pm:242
-#, c-format
-msgid "No partition available"
-msgstr "ምንም ክፋይ አልተገኘም"
-
-#: install_steps_interactive.pm:245
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr ""
-
-#: install_steps_interactive.pm:252
-#, fuzzy, c-format
-msgid "Choose the mount points"
-msgstr "የመመልከቻውን ቀለም ይምረጡ"
-
-#: install_steps_interactive.pm:300
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: install_steps_interactive.pm:305
-#, c-format
-msgid ""
-"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
-"to boot your system, you'll need to create the bootstrap partition in "
-"DiskDrake"
-msgstr ""
-
-#: install_steps_interactive.pm:341
-#, fuzzy, c-format
-msgid "Choose the partitions you want to format"
-msgstr "እባክዎ ለማሳየት የሚፈልጉትን ተጠቃሽ-መረጃ ይምረጡ:"
-
-#: install_steps_interactive.pm:343
-#, fuzzy, c-format
-msgid "Check bad blocks?"
-msgstr "ተመልከት ይህንን"
-
-#: install_steps_interactive.pm:371
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
-msgstr ""
-
-#: install_steps_interactive.pm:374
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr ""
-
-#: install_steps_interactive.pm:383
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr ""
-
-#: install_steps_interactive.pm:384 install_steps_interactive.pm:436
-#, c-format
-msgid "Looking for available packages..."
-msgstr ""
-
-#: install_steps_interactive.pm:405 install_steps_interactive.pm:810
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr ""
-
-#: install_steps_interactive.pm:445
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-
-#: install_steps_interactive.pm:479
-#, c-format
-msgid ""
-"Please choose load or save package selection.\n"
-"The format is the same as auto_install generated files."
-msgstr ""
-
-#: install_steps_interactive.pm:481
-#, c-format
-msgid "Load"
-msgstr "ጫን"
-
-#: install_steps_interactive.pm:481 standalone/drakbackup:4083
-#: standalone/drakbackup:4153 standalone/logdrake:175
-#, c-format
-msgid "Save"
-msgstr "አስቀምጥ"
-
-#: install_steps_interactive.pm:489
-#, fuzzy, c-format
-msgid "Bad file"
-msgstr "1 ፋይል"
-
-#: install_steps_interactive.pm:562
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr ""
-
-#: install_steps_interactive.pm:577
-#, c-format
-msgid "Type of install"
-msgstr "የተከላው አይነት"
-
-#: install_steps_interactive.pm:578
-#, c-format
-msgid ""
-"You have not selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: install_steps_interactive.pm:582
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: install_steps_interactive.pm:583
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: install_steps_interactive.pm:622 standalone/drakxtv:52
-#, c-format
-msgid "All"
-msgstr "ሁሉንም"
-
-#: install_steps_interactive.pm:661
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-
-#: install_steps_interactive.pm:666
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "\"%s\" የተባለው ሲዲ-ሮም"
-
-#: install_steps_interactive.pm:691
-#, c-format
-msgid "Preparing installation"
-msgstr "ተከላ በማዘጋጀት ላይ"
-
-#: install_steps_interactive.pm:699
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-
-#: install_steps_interactive.pm:748
-#, c-format
-msgid "Post-install configuration"
-msgstr "Post-install configuration"
-
-#: install_steps_interactive.pm:755
-#, c-format
-msgid "Please ensure the Update Modules media is in drive %s"
-msgstr ""
-
-#: install_steps_interactive.pm:783
-#, c-format
-msgid "Updates"
-msgstr "አሻሻዎች"
-
-#: install_steps_interactive.pm:784
-#, c-format
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates?"
-msgstr ""
-
-#: install_steps_interactive.pm:805
-#, c-format
-msgid ""
-"Contacting Mandriva Linux web site to get the list of available mirrors..."
-msgstr ""
-
-#: install_steps_interactive.pm:824
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr ""
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "ከአንጸባራቂ %s ጋር መገናኘት አልተቻለም"
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Would you like to try again?"
-msgstr "እንደገና መሞከር ይፈልጋል?"
-
-#: install_steps_interactive.pm:855 standalone/drakclock:45
-#: standalone/finish-install:56
-#, c-format
-msgid "Which is your timezone?"
-msgstr "የሰአት ክልሎት የትኛው ነው?"
-
-#: install_steps_interactive.pm:860
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: install_steps_interactive.pm:868
-#, c-format
-msgid "NTP Server"
-msgstr "NTP ሰርቨር"
-
-#: install_steps_interactive.pm:923 install_steps_interactive.pm:931
-#: install_steps_interactive.pm:949 install_steps_interactive.pm:956
-#: install_steps_interactive.pm:1107 services.pm:133
-#: standalone/drakbackup:1596
-#, c-format
-msgid "System"
-msgstr "ሲስተም"
-
-#: install_steps_interactive.pm:963 install_steps_interactive.pm:990
-#: install_steps_interactive.pm:1007 install_steps_interactive.pm:1023
-#: install_steps_interactive.pm:1034
-#, c-format
-msgid "Hardware"
-msgstr "ሀርድዌር"
-
-#: install_steps_interactive.pm:969 install_steps_interactive.pm:978
-#, c-format
-msgid "Remote CUPS server"
-msgstr "በርቀት ያለ የCUPS ሰርቨር"
-
-#: install_steps_interactive.pm:969
-#, c-format
-msgid "No printer"
-msgstr "ማተሚያ የለም"
-
-#: install_steps_interactive.pm:1011
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "የISA ድምጽ ካርድ አለዎት?"
-
-#: install_steps_interactive.pm:1013
-#, c-format
-msgid ""
-"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
-"card"
-msgstr ""
-
-#: install_steps_interactive.pm:1015
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: install_steps_interactive.pm:1035
-#, c-format
-msgid "Graphical interface"
-msgstr "ንድፋዊ እይታ"
-
-#: install_steps_interactive.pm:1041 install_steps_interactive.pm:1053
-#, c-format
-msgid "Network & Internet"
-msgstr "መረብ እና ኢንተርኔት"
-
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "configured"
-msgstr "ተስተካክሏል"
-
-#: install_steps_interactive.pm:1064 install_steps_interactive.pm:1078
-#: security/level.pm:55 steps.pm:20
-#, c-format
-msgid "Security"
-msgstr "ደህንነት"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "activated"
-msgstr "መስራት ጀምሯል"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "disabled"
-msgstr "መስራት አቁሟል"
-
-#: install_steps_interactive.pm:1094
-#, c-format
-msgid "Boot"
-msgstr "ጀምር"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1098 printer/printerdrake.pm:961
-#, c-format
-msgid "%s on %s"
-msgstr "%s %s ላይ ነው"
-
-#: install_steps_interactive.pm:1112 services.pm:175
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: install_steps_interactive.pm:1124
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr ""
-
-#: install_steps_interactive.pm:1205
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "አስጀማሪ በማዘጋጀት ላይ..."
-
-#: install_steps_interactive.pm:1215
-#, c-format
-msgid ""
-"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
-"will not work for you. The install will continue, but you'll need to use "
-"BootX or some other means to boot your machine. The kernel argument for the "
-"root fs is: root=%s"
-msgstr ""
-
-#: install_steps_interactive.pm:1221
-#, fuzzy, c-format
-msgid "Do you want to use aboot?"
-msgstr "ስራ-እቅዱን መሠረዝ ይፈልጋሉ?"
-
-#: install_steps_interactive.pm:1224
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-
-#: install_steps_interactive.pm:1241
-#, c-format
-msgid ""
-"In this security level, access to the files in the Windows partition is "
-"restricted to the administrator."
-msgstr ""
-
-#: install_steps_interactive.pm:1270 standalone/drakautoinst:76
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr ""
-
-#: install_steps_interactive.pm:1275
-#, c-format
-msgid "Please insert another floppy for drivers disk"
-msgstr ""
-
-#: install_steps_interactive.pm:1277
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr ""
-
-#: install_steps_interactive.pm:1289
-#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-
-#: install_steps_interactive.pm:1299 standalone/draksambashare:421
-#: standalone/draksambashare:527 standalone/drakups:118 standalone/drakups:157
-#: standalone/logdrake:451 standalone/logdrake:457
-#, c-format
-msgid "Congratulations"
-msgstr "እንኳን ደስ ያለዎ!"
-
-#: install_steps_interactive.pm:1307 install_steps_interactive.pm:1308
-#, c-format
-msgid "Generate auto install floppy"
-msgstr ""
-
-#: install_steps_interactive.pm:1309
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-
-#: install_steps_newt.pm:20
-#, c-format
-msgid "Mandriva Linux Installation %s"
-msgstr "የMandriva Linux ተከላ %s"
-
-#. -PO: This string must fit in a 80-char wide text screen
-#: install_steps_newt.pm:37
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
+msgid "No"
+msgstr "አይ"
-#: interactive.pm:196
+#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "ፋይል ይምረጡ"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakbackup:1537
-#: standalone/drakfont:649 standalone/drakhosts:242 standalone/draknfs:605
-#: standalone/draksambashare:1127 standalone/drakups:299
-#: standalone/drakups:359 standalone/drakups:379 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Add"
msgstr "ጨምር"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakhosts:249
-#: standalone/draknfs:612 standalone/draksambashare:1084
-#: standalone/draksambashare:1137 standalone/draksambashare:1176
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Modify"
msgstr "ለውጥ"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakfont:732
-#: standalone/drakhosts:256 standalone/draknfs:619
-#: standalone/draksambashare:1085 standalone/draksambashare:1145
-#: standalone/draksambashare:1184 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Remove"
msgstr "አስወግድ"
-#: interactive.pm:398
-#, c-format
-msgid "Basic"
-msgstr "መሰረታዊ"
-
-#: interactive.pm:436 interactive/newt.pm:321 ugtk2.pm:490
+#: interactive.pm:538 interactive/curses.pm:217 ugtk2.pm:508
#, c-format
msgid "Finish"
msgstr "ጨርስ"
-#: interactive/newt.pm:92
+#: interactive.pm:539 interactive/curses.pm:214 ugtk2.pm:506
#, c-format
-msgid "Do"
-msgstr "አድርግ"
+msgid "Previous"
+msgstr "የቀድሞው"
#: interactive/stdio.pm:29 interactive/stdio.pm:148
#, c-format
@@ -6319,1948 +3134,1205 @@ msgstr ""
msgid "Re-submit"
msgstr "እንደገና ውሰድ"
-#: keyboard.pm:171 keyboard.pm:202
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTZ)"
-msgstr "ቼክኛ (QWERTZ)"
-
-#: keyboard.pm:172 keyboard.pm:204
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German"
-msgstr "ጀርመን"
-
-#: keyboard.pm:173
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak"
-msgstr "ድቮሬክ"
-
-#: keyboard.pm:174 keyboard.pm:217
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Spanish"
-msgstr "ስፓኒሽ"
-
-#: keyboard.pm:175 keyboard.pm:218
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Finnish"
-msgstr "ፊኒሽ"
-
-#: keyboard.pm:176 keyboard.pm:220
-#, c-format
-msgid ""
-"_: keyboard\n"
-"French"
-msgstr "ፈረንሳይኛ"
-
-#: keyboard.pm:177 keyboard.pm:264
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Norwegian"
-msgstr "ኖርዌጂያን"
-
-#: keyboard.pm:178
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish"
-msgstr "ፖሊሽ"
-
-#: keyboard.pm:179 keyboard.pm:275
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian"
-msgstr "ራሽኛ"
-
-#: keyboard.pm:180 keyboard.pm:281
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swedish"
-msgstr "ስዊድንኛ"
-
-#: keyboard.pm:181 keyboard.pm:310
-#, c-format
-msgid "UK keyboard"
-msgstr "የUK መተየቢያ"
-
-#: keyboard.pm:182 keyboard.pm:313
-#, c-format
-msgid "US keyboard"
-msgstr "የUS መተየቢያ"
-
-#: keyboard.pm:184
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Albanian"
-msgstr "አልቤኒኛ"
-
-#: keyboard.pm:185
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (old)"
-msgstr "አርሜንኛ (አሮጌ)"
-
-#: keyboard.pm:186
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (typewriter)"
-msgstr "አርመናዊ (መተየቢያ መኪና)"
-
-#: keyboard.pm:187
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (phonetic)"
-msgstr "አርመናዊ (የድምጽ)"
-
-#: keyboard.pm:188
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Arabic"
-msgstr "ዐርቢኛ"
-
-#: keyboard.pm:189
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Azerbaidjani (latin)"
-msgstr "አዘርባጃንኛ (ላቲንኛ)"
-
-#: keyboard.pm:190
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belgian"
-msgstr "ቤልጂየምኛ"
-
-#: keyboard.pm:191
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Inscript-layout)"
-msgstr "ቤንጋሊ (Inscript ዕቅድ)"
-
-#: keyboard.pm:192
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Probhat)"
-msgstr "ቤንጋሊ (Probhat ዕቅድ)"
-
-#: keyboard.pm:193
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (phonetic)"
-msgstr "ቡልጋሪኛ (የድምጽ)"
-
-#: keyboard.pm:194
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (BDS)"
-msgstr "ቡልጋሪኛ (BDS)"
-
-#: keyboard.pm:195
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Brazilian (ABNT-2)"
-msgstr "ብራዚላዊ (ABNT-2)"
-
-#: keyboard.pm:196
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bosnian"
-msgstr "ቦስኒያን"
-
-#: keyboard.pm:197
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belarusian"
-msgstr "ቤላራሻኛ"
-
-#: keyboard.pm:198
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (German layout)"
-msgstr "ስዊዝ (የጀርመን ዕቅድ)"
-
-#: keyboard.pm:199
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (French layout)"
-msgstr "ስዊዝ (የፈረንሳይ ዕቅድ)"
-
-#: keyboard.pm:201
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Cherokee syllabics"
-msgstr "ዐርቢኛ"
-
-#: keyboard.pm:203
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTY)"
-msgstr "ቼክኛ (QWERTY)"
-
-#: keyboard.pm:205
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German (no dead keys)"
-msgstr "ጀርመን (የሞቱ ቁልፎች የሉም)"
-
-#: keyboard.pm:206
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Devanagari"
-msgstr "ዴቫናጋሪ"
-
-#: keyboard.pm:207
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Danish"
-msgstr "ዴኒሽ"
-
-#: keyboard.pm:208
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (US)"
-msgstr "ድቮሬክ (የአሜሪካ)"
-
-#: keyboard.pm:209
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Esperanto)"
-msgstr "ድቮሬክ (ስዊድንኛ)"
-
-#: keyboard.pm:210
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (French)"
-msgstr "ድቮሬክ (ስዊድንኛ)"
-
-#: keyboard.pm:211
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (UK)"
-msgstr "ድቮሬክ (የአሜሪካ)"
-
-#: keyboard.pm:212
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Norwegian)"
-msgstr "ድቮሬክ (ስዊድንኛ)"
-
-#: keyboard.pm:213
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Polish)"
-msgstr "ድቮሬክ (ስዊድንኛ)"
-
-#: keyboard.pm:214
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Swedish)"
-msgstr "ድቮሬክ (ስዊድንኛ)"
-
-#: keyboard.pm:215
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dzongkha/Tibetan"
-msgstr "ቦስኒያን"
-
-#: keyboard.pm:216
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Estonian"
-msgstr "ኤስቶኒአን"
-
-#: keyboard.pm:219
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Faroese"
-msgstr "ግሪክኛ"
-
-#: keyboard.pm:221
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Russian\" layout)"
-msgstr "ጊዮርጊያን (\"ራሽኛ\" እቅድ)"
-
-#: keyboard.pm:222
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Latin\" layout)"
-msgstr "ጊዮርጊያን (\"ላቲንኛ\" እቅድ)"
-
-#: keyboard.pm:223
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek"
-msgstr "ግሪክኛ"
-
-#: keyboard.pm:224
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek (polytonic)"
-msgstr "ግሪክኛ (ፖሊቶኒክ)"
-
-#: keyboard.pm:225
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gujarati"
-msgstr "ጉጃራቲ"
-
-#: keyboard.pm:226
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gurmukhi"
-msgstr "ጉርሙክሂ"
-
-#: keyboard.pm:227
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Croatian"
-msgstr "ክሮሽያዊ"
-
-#: keyboard.pm:228
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Hungarian"
-msgstr "ሀንጋሪኛ"
-
-#: keyboard.pm:229
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Irish"
-msgstr "አይሪሽ"
-
-#: keyboard.pm:230
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli"
-msgstr "እስራኤላዊ"
-
-#: keyboard.pm:231
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli (phonetic)"
-msgstr "እስራኤላዊ (Phonetic)"
-
-#: keyboard.pm:232
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Iranian"
-msgstr "ኢራኒያን"
-
-#: keyboard.pm:233
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Icelandic"
-msgstr "አይስላንድኛ"
-
-#: keyboard.pm:234
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Italian"
-msgstr "ጣሊያናዊ"
-
-#: keyboard.pm:235
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Inuktitut"
-msgstr "ኢኑክቲቱት"
-
-#: keyboard.pm:239
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Japanese 106 keys"
-msgstr "ጃፓንኛ 106 ቁልፎች"
-
-#: keyboard.pm:240
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kannada"
-msgstr "ካናዳ"
-
-#: keyboard.pm:243
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Korean"
-msgstr "ኮሪያኛ መተየቢያ"
-
-#: keyboard.pm:245
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Kurdish (arabic script)"
-msgstr "ዐርቢኛ"
-
-#: keyboard.pm:246
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Kyrgyz"
-msgstr "ኦሪያ"
-
-#: keyboard.pm:247
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latin American"
-msgstr "ላቲን አሜሪካ"
-
-#: keyboard.pm:249
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Laotian"
-msgstr "ሎቲን"
-
-#: keyboard.pm:250
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (old)"
-msgstr "ሊቱአኒያን AZERTY (አሮጌ)"
-
-#: keyboard.pm:252
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (new)"
-msgstr "ሊቱአኒያን AZERTY (አዲስ)"
-
-#: keyboard.pm:253
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"number row\" QWERTY"
-msgstr ""
-
-#: keyboard.pm:254
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"phonetic\" QWERTY"
-msgstr "ቡልጋሪኛ (የድምጽ)"
-
-#: keyboard.pm:255
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latvian"
-msgstr "ላትቪያን"
-
-#: keyboard.pm:256
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Malayalam"
-msgstr "ማላያላም"
-
-#: keyboard.pm:258
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Macedonian"
-msgstr "ማከዶኒኛ"
-
-#: keyboard.pm:259
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Myanmar (Burmese)"
-msgstr "ምያንማር (ቡርመሰ)"
-
-#: keyboard.pm:260
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Mongolian (cyrillic)"
-msgstr "ሞንጎሊያን (ቄርሎሳዊ ጽሑፍ)"
-
-#: keyboard.pm:261
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (UK)"
-msgstr "ማልቴስ (የእንግሊዝ)"
-
-#: keyboard.pm:262
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (US)"
-msgstr "ማልቴስ (የአሜሪካ)"
-
-#: keyboard.pm:263
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dutch"
-msgstr "ደች"
-
-#: keyboard.pm:265
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Oriya"
-msgstr "ኦሪያ"
-
-#: keyboard.pm:266
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwerty layout)"
-msgstr "ፖሊሽ (qwerty ዕቅድ)"
-
-#: keyboard.pm:267
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwertz layout)"
-msgstr "ፖሊሽ (qwertz ዕቅድ)"
-
-#: keyboard.pm:269
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Pashto"
-msgstr "ፖሊሽ"
-
-#: keyboard.pm:270
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Portuguese"
-msgstr "ፖርቱጋሊኛ"
-
-#: keyboard.pm:272
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Canadian (Quebec)"
-msgstr "ካናዲያን (Quebec)"
-
-#: keyboard.pm:273
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwertz)"
-msgstr "ሮማኒያን (qwertz)"
-
-#: keyboard.pm:274
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwerty)"
-msgstr "ሮማኒያን (qwerty)"
-
-#: keyboard.pm:276
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian (phonetic)"
-msgstr "ራሽኛ (የድምጽ)"
-
-#: keyboard.pm:277
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (norwegian)"
-msgstr "ሳሚ (ኖርዌይኛ)"
-
-#: keyboard.pm:278
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (swedish/finnish)"
-msgstr "ሳሚ (ስዊድንኛ/ፊኒሽ"
-
-#: keyboard.pm:280
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Sindhi"
-msgstr "ታይ መተየቢያ"
-
-#: keyboard.pm:282
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovenian"
-msgstr "ስሎቪኛ"
-
-#: keyboard.pm:284
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sinhala"
-msgstr ""
-
-#: keyboard.pm:285
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTZ)"
-msgstr "ስሎቫኪያን (QWERTZ)"
-
-#: keyboard.pm:286
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTY)"
-msgstr "ስሎቫኪያን (QWERTY)"
-
-#: keyboard.pm:288
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Serbian (cyrillic)"
-msgstr "ሰርቢያን (ቄርሎሳዊ ጽሑፍ)"
-
-#: keyboard.pm:289
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac"
-msgstr "ስይሪያክ"
-
-#: keyboard.pm:290
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac (phonetic)"
-msgstr "ስይሪያክ (phonetic)"
-
-#: keyboard.pm:291
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Telugu"
-msgstr "ቴሉጉ"
-
-#: keyboard.pm:293
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (ISCII-layout)"
-msgstr "ታሚል (ISCII-ዕቅድ)"
-
-#: keyboard.pm:294
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (Typewriter-layout)"
-msgstr "ታሚል (መተየቢያ-ዕቅድ)"
-
-#: keyboard.pm:295
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Kedmanee)"
-msgstr "ታይ መተየቢያ"
-
-#: keyboard.pm:296
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (TIS-820)"
-msgstr "ታይ መተየቢያ"
-
-#: keyboard.pm:298
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Pattachote)"
-msgstr "ታይ መተየቢያ"
-
-#: keyboard.pm:300
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (moroccan layout) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:301
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (phonetic) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:303
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tajik"
-msgstr "ታጂክ መተየቢያ"
-
-#: keyboard.pm:305
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Turkmen"
-msgstr "ጀርመን"
-
-#: keyboard.pm:306
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (traditional \"F\" model)"
-msgstr "ቱርክሽ (ባህላዊ \"F\" ሞዴል"
-
-#: keyboard.pm:307
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (modern \"Q\" model)"
-msgstr "ቱርክሽ (ዘመናዊ \"Q\" ሞዴል"
-
-#: keyboard.pm:309
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Ukrainian"
-msgstr "ዩክረኒኛ"
-
-#: keyboard.pm:312
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Urdu keyboard"
-msgstr "ኦሪያ"
-
-#: keyboard.pm:314
-#, c-format
-msgid "US keyboard (international)"
-msgstr "የአሜሪካ መተየቢያ (አለም አቀፍ)"
-
-#: keyboard.pm:315
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Uzbek (cyrillic)"
-msgstr "ኡዝቤክ (ቄርሎሳዊ ጽሑፍ)"
-
-#: keyboard.pm:317
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Vietnamese \"numeric row\" QWERTY"
-msgstr ""
-
-#: keyboard.pm:318
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Yugoslavian (latin)"
-msgstr "ዩጎዝላቪያን (ላቲንኛ)"
-
-#: keyboard.pm:325
-#, c-format
-msgid "Right Alt key"
-msgstr "የቀኝ Alt ቁልፉ"
-
-#: keyboard.pm:326
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "ሁለቱንም የShift ቁልፎች በአንድ ጊዜ"
-
-#: keyboard.pm:327
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Ctrl እና Shift ቁልፎችን በአንድ ጊዜ"
-
-#: keyboard.pm:328
-#, c-format
-msgid "CapsLock key"
-msgstr "CapsLock ቁልፍ"
-
-#: keyboard.pm:329
-#, c-format
-msgid "Shift and CapsLock keys simultaneously"
-msgstr "Shift እና CapsLock ቁልፎችን በአንድ ጊዜ"
-
-#: keyboard.pm:330
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl እና Alt ቁልፎችን በአንድ ጊዜ"
-
-#: keyboard.pm:331
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt እና Shift ቁልፎችን በአንድ ጊዜ"
-
-#: keyboard.pm:332
-#, c-format
-msgid "\"Menu\" key"
-msgstr "\"መዘርዝር\" ቁልፍ"
-
-#: keyboard.pm:333
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "የግራ \"መስኮት\" ቁልፉ"
-
-#: keyboard.pm:334
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "የቀኝ \"መስኮት\" ቁልፉ"
-
-#: keyboard.pm:335
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "ሁለቱንም የControl ቁልፎች በአንድ ጊዜ"
-
-#: keyboard.pm:336
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "ሁለቱንም የAlt ቁልፎች በአንድ ጊዜ"
-
-#: keyboard.pm:337
-#, c-format
-msgid "Left Shift key"
-msgstr "የግራ Shift ቁልፉ"
-
-#: keyboard.pm:338
-#, c-format
-msgid "Right Shift key"
-msgstr "የቀኝ Shift ቁልፉ"
-
-#: keyboard.pm:339
-#, c-format
-msgid "Left Alt key"
-msgstr "የግራ Alt ቁልፍ"
-
-#: keyboard.pm:340
-#, c-format
-msgid "Left Control key"
-msgstr "የግራ Control ቁልፍ"
-
-#: keyboard.pm:341
-#, c-format
-msgid "Right Control key"
-msgstr "የቀኝ Control ቁልፍ"
-
-#: keyboard.pm:377
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-
-#: keyboard.pm:382
-#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
-msgstr ""
-
#. -PO: the string "default:LTR" can be translated *ONLY* as "default:LTR"
#. -PO: or as "default:RTL", depending if your language is written from
#. -PO: left to right, or from right to left; any other string is wrong.
-#: lang.pm:178
+#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"
-#: lang.pm:195
+#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "አንዶራ"
-#: lang.pm:196 network/adsl_consts.pm:943
+#: lang.pm:211 timezone.pm:213
#, c-format
msgid "United Arab Emirates"
msgstr "የተባበሩት አረብ ኤምሬትስ"
-#: lang.pm:197
+#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "አፍጋኒስታን"
-#: lang.pm:198
+#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "አንቲጉዋ እና ባርቡዳ"
-#: lang.pm:199
+#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "አንጉኢላ"
-#: lang.pm:200
+#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "አልባኒያ"
-#: lang.pm:201
+#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "አርሜኒያ"
-#: lang.pm:202
+#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "ኔዘርላንድስ አንቲልስ"
-#: lang.pm:203
+#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "አንጐላ"
-#: lang.pm:204
+#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "አንታርክቲካ"
-#: lang.pm:205 network/adsl_consts.pm:55 standalone/drakxtv:50
+#: lang.pm:220 timezone.pm:258
#, c-format
msgid "Argentina"
msgstr "አርጀንቲና"
-#: lang.pm:206
+#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "የአሜሪካ ሳሞአ"
-#: lang.pm:209
+#: lang.pm:222 mirror.pm:11 timezone.pm:216
+#, c-format
+msgid "Austria"
+msgstr "ኦስትሪያ"
+
+#: lang.pm:223 mirror.pm:10 timezone.pm:254
+#, c-format
+msgid "Australia"
+msgstr "አውስትሬሊያ"
+
+#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "አሩባ"
-#: lang.pm:210
+#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "አዘርባጃን"
-#: lang.pm:211
+#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "ቦስኒያ እና ሄርዞጎቪኒያ"
-#: lang.pm:212
+#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "ባርቤዶስ"
-#: lang.pm:213
+#: lang.pm:228 timezone.pm:198
#, c-format
msgid "Bangladesh"
msgstr "ባንግላዲሽ"
-#: lang.pm:215
+#: lang.pm:229 mirror.pm:12 timezone.pm:218
+#, c-format
+msgid "Belgium"
+msgstr "ቤልጄም"
+
+#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "ቡርኪና ፋሶ"
-#: lang.pm:216 network/adsl_consts.pm:170 network/adsl_consts.pm:179
+#: lang.pm:231 timezone.pm:219
#, c-format
msgid "Bulgaria"
msgstr "ቡልጌሪያ"
-#: lang.pm:217
+#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "ባህሬን"
-#: lang.pm:218
+#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "ብሩንዲ"
-#: lang.pm:219
+#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "ቤኒን"
-#: lang.pm:220
+#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "ቤርሙዳ"
-#: lang.pm:221
+#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "ብሩኒ ዳሩሳላም"
-#: lang.pm:222
+#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "ቦሊቪያ"
-#: lang.pm:224
+#: lang.pm:238 mirror.pm:13 timezone.pm:259
+#, c-format
+msgid "Brazil"
+msgstr "ብራዚል"
+
+#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "ባሃማስ"
-#: lang.pm:225
+#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "ቡህታን"
-#: lang.pm:226
+#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "የቦውቬት ደሴት"
-#: lang.pm:227
+#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "ቦትስዋና"
-#: lang.pm:228
+#: lang.pm:243 timezone.pm:217
#, c-format
msgid "Belarus"
msgstr "ቤላሩስ"
-#: lang.pm:229
+#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "ቤሊዘ"
-#: lang.pm:231
+#: lang.pm:245 mirror.pm:14 timezone.pm:248
+#, c-format
+msgid "Canada"
+msgstr "ካናዳ"
+
+#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "ኮኮስ (ኬሊንግ) ደሴቶች"
-#: lang.pm:232
+#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr "የኮንጐ ዲሞክራሲያዊ ሪፑብሊክ"
-#: lang.pm:233
+#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "የመካከለኛው አፍሪካ ሪፐብሊክ"
-#: lang.pm:234
+#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr "የኮንጐ ዲሞክራሲያዊ ሪፑብሊክ"
-#: lang.pm:236
+#: lang.pm:250 mirror.pm:38 timezone.pm:242
+#, c-format
+msgid "Switzerland"
+msgstr "ስዊዘርላንድ"
+
+#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "ኮት ዲቯር"
-#: lang.pm:237
+#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "ኩክ ደሴቶች"
-#: lang.pm:238
+#: lang.pm:253 timezone.pm:260
#, c-format
msgid "Chile"
msgstr "ቺሊ"
-#: lang.pm:239
+#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "ካሜሩን"
-#: lang.pm:240 network/adsl_consts.pm:188 network/adsl_consts.pm:197
-#: network/adsl_consts.pm:206 network/adsl_consts.pm:215
-#: network/adsl_consts.pm:224 network/adsl_consts.pm:233
-#: network/adsl_consts.pm:242 network/adsl_consts.pm:251
-#: network/adsl_consts.pm:260 network/adsl_consts.pm:269
-#: network/adsl_consts.pm:278 network/adsl_consts.pm:287
-#: network/adsl_consts.pm:296 network/adsl_consts.pm:305
-#: network/adsl_consts.pm:314 network/adsl_consts.pm:323
-#: network/adsl_consts.pm:332 network/adsl_consts.pm:341
-#: network/adsl_consts.pm:350 network/adsl_consts.pm:359
+#: lang.pm:255 timezone.pm:199
#, c-format
msgid "China"
msgstr "ቻይና"
-#: lang.pm:241
+#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "ኮሎምቢያ"
-#: lang.pm:243
+#: lang.pm:257 mirror.pm:15
+#, c-format
+msgid "Costa Rica"
+msgstr "ኮስታሪካ"
+
+#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "ሰርቢያ እና ሞንትኔግሮ"
-#: lang.pm:244
+#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "ኩባ"
-#: lang.pm:245
+#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "ኬፕ ቬርዴ"
-#: lang.pm:246
+#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "የገና ደሴቶች"
-#: lang.pm:247
+#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "ሳይፕረስ"
-#: lang.pm:250
+#: lang.pm:263 mirror.pm:16 timezone.pm:220
+#, c-format
+msgid "Czech Republic"
+msgstr "ቼክ ሪፑብሊክ"
+
+#: lang.pm:264 mirror.pm:21 timezone.pm:225
+#, c-format
+msgid "Germany"
+msgstr "ጀርመን"
+
+#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "ጂቡቲ"
-#: lang.pm:252
+#: lang.pm:266 mirror.pm:17 timezone.pm:221
+#, c-format
+msgid "Denmark"
+msgstr "ዴንማርክ"
+
+#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "ዶሚኒካ"
-#: lang.pm:253
+#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "ዶሚኒክ ሪፑብሊክ"
-#: lang.pm:254 network/adsl_consts.pm:44
+#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "አልጄሪያ"
-#: lang.pm:255
+#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "ኢኳዶር"
-#: lang.pm:257
+#: lang.pm:271 mirror.pm:18 timezone.pm:222
+#, c-format
+msgid "Estonia"
+msgstr "ኤስቶኒያ"
+
+#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "ግብጽ"
-#: lang.pm:258
+#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "ምዕራባዊ ሳህራ"
-#: lang.pm:259
+#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "ኤርትራ"
-#: lang.pm:261
+#: lang.pm:275 mirror.pm:36 timezone.pm:240
+#, c-format
+msgid "Spain"
+msgstr "ስፔን"
+
+#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "ኢትዮጵያ"
-#: lang.pm:263
+#: lang.pm:277 mirror.pm:19 timezone.pm:223
+#, c-format
+msgid "Finland"
+msgstr "ፊንላንድ"
+
+#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "ፊጂ አይላንድ"
-#: lang.pm:264
+#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "ማርሻላዊ (የማርሻል አይላንድ)"
-#: lang.pm:265
+#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "ሚክሮኔዢያ"
-#: lang.pm:266
+#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "ካይማን ደሴቶች"
-#: lang.pm:268
+#: lang.pm:282 mirror.pm:20 timezone.pm:224
+#, c-format
+msgid "France"
+msgstr "ፈረንሳይ"
+
+#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "ጋቦን"
-#: lang.pm:269 network/adsl_consts.pm:954 network/adsl_consts.pm:965
-#: network/netconnect.pm:46
+#: lang.pm:284 timezone.pm:244
#, c-format
msgid "United Kingdom"
msgstr "እንግሊዝ"
-#: lang.pm:270
+#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "ግሬናዳ"
-#: lang.pm:271
+#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "ጆርጂያ"
-#: lang.pm:272
+#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "የፈረንሳይ ጉዊአና"
-#: lang.pm:273
+#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "ጋና"
-#: lang.pm:274
+#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "ጊብራልታር"
-#: lang.pm:275
+#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "ግሪንላንድ"
-#: lang.pm:276
+#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "ጋምቢያ"
-#: lang.pm:277
+#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "ጊኒ"
-#: lang.pm:278
+#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "ጉዋደሉፕ"
-#: lang.pm:279
+#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "ኢኳቶሪያል ጊኒ"
-#: lang.pm:281
+#: lang.pm:295 mirror.pm:22 timezone.pm:226
+#, c-format
+msgid "Greece"
+msgstr "ግሪክ"
+
+#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "ደቡብ ጆርጂያ እና የደቡብ ሳንድዊች ደሴቶች"
-#: lang.pm:282
+#: lang.pm:297 timezone.pm:249
#, c-format
msgid "Guatemala"
msgstr "ጉዋቲማላ"
-#: lang.pm:283
+#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "ጉዋም"
-#: lang.pm:284
+#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "ጊኒ-ቢሳዎ"
-#: lang.pm:285
+#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "ጉያና"
-#: lang.pm:286
+#: lang.pm:301
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "ቻይንኛ (የሆንግ ኮንግ)"
-#: lang.pm:287
+#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "የቱርኮችና የካኢኮስ ደሴቶች"
-#: lang.pm:288
+#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "ሆንዱራስ"
-#: lang.pm:289
+#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "ክሮኤሽያ"
-#: lang.pm:290
+#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "ሀይቲ*"
-#: lang.pm:292
+#: lang.pm:306 mirror.pm:23 timezone.pm:227
+#, c-format
+msgid "Hungary"
+msgstr "ሀንጋሪ"
+
+#: lang.pm:307 timezone.pm:202
#, c-format
msgid "Indonesia"
msgstr "ኢንዶኔዢያ"
-#: lang.pm:295
+#: lang.pm:308 mirror.pm:24 timezone.pm:228
+#, c-format
+msgid "Ireland"
+msgstr "አየርላንድ"
+
+#: lang.pm:309 mirror.pm:25 timezone.pm:204
+#, c-format
+msgid "Israel"
+msgstr "እስራኤል"
+
+#: lang.pm:310 timezone.pm:201
#, c-format
msgid "India"
msgstr "ህንድ"
-#: lang.pm:296
+#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "የብሪታኒያ ህንድ ውቂያኖስ ግዛት"
-#: lang.pm:297
+#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "ኢራቅ"
-#: lang.pm:298
+#: lang.pm:313 timezone.pm:203
#, c-format
msgid "Iran"
msgstr "ኢራን"
-#: lang.pm:299
+#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "አይስላንድ"
-#: lang.pm:301
+#: lang.pm:315 mirror.pm:26 timezone.pm:229
+#, c-format
+msgid "Italy"
+msgstr "ጣሊያን"
+
+#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "ጃማይካ"
-#: lang.pm:302
+#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "ጆርዳን"
-#: lang.pm:304
+#: lang.pm:318 mirror.pm:27 timezone.pm:205
+#, c-format
+msgid "Japan"
+msgstr "ጃፓን"
+
+#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "ኬንያ"
-#: lang.pm:305
+#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "ኪርጂክስታን"
-#: lang.pm:306
+#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "ካምቦዲያ"
-#: lang.pm:307
+#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "ኪሪባቲ"
-#: lang.pm:308
+#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "ኮሞሮስ"
-#: lang.pm:309
+#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "ቅዱስ ኪትስ እና ኔቪስ"
-#: lang.pm:310
+#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "ኮሪያ (ሰሜን)"
-#: lang.pm:311
+#: lang.pm:326 timezone.pm:206
#, c-format
msgid "Korea"
msgstr "ኮሪያ ሪፐብሊክ"
-#: lang.pm:312
+#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "ክዌት"
-#: lang.pm:313
+#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "ካይማን ደሴቶች"
-#: lang.pm:314
+#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "ካዛኪስታን"
-#: lang.pm:315
+#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "ላኦስ"
-#: lang.pm:316
+#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "ሊባኖስ"
-#: lang.pm:317
+#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "ሴንት ሉቺያ"
-#: lang.pm:318
+#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "ሊችተንስታይን"
-#: lang.pm:319
+#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "ሲሪላንካ"
-#: lang.pm:320
+#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "ላይቤሪያ"
-#: lang.pm:321
+#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "ሌሶቶ"
-#: lang.pm:322 network/adsl_consts.pm:600
+#: lang.pm:337 timezone.pm:230
#, c-format
msgid "Lithuania"
msgstr "ሊቱዌኒያ"
-#: lang.pm:323
+#: lang.pm:338 timezone.pm:231
#, c-format
msgid "Luxembourg"
msgstr "ሉክሰምበርግ"
-#: lang.pm:324
+#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "ላትቪያ"
-#: lang.pm:325
+#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "ሊቢያ"
-#: lang.pm:326 network/adsl_consts.pm:609
+#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "ሞሮኮ"
-#: lang.pm:327
+#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "ሞናኮ"
-#: lang.pm:328
+#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "ሞልዶቫ"
-#: lang.pm:329
+#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "ማዳጋስካር"
-#: lang.pm:330
+#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "ማርሻል አይላንድ"
-#: lang.pm:331
+#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "ማከዶኒያ"
-#: lang.pm:332
+#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "ማሊ"
-#: lang.pm:333
+#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "ማያንማር"
-#: lang.pm:334
+#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "ሞንጎሊያ"
-#: lang.pm:335
+#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "የሰሜናዊ ማሪያና ደሴቶች"
-#: lang.pm:336
+#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "ማርቲኒክ"
-#: lang.pm:337
+#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "ሞሪቴኒያ"
-#: lang.pm:338
+#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "ሞንትሴራት"
-#: lang.pm:339
+#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "ማልታ"
-#: lang.pm:340
+#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "ማሩሸስ"
-#: lang.pm:341
+#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "ማልዲቭስ"
-#: lang.pm:342
+#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "ማላዊ"
-#: lang.pm:343
+#: lang.pm:358 timezone.pm:250
#, c-format
msgid "Mexico"
msgstr "ሜክሲኮ"
-#: lang.pm:344
+#: lang.pm:359 timezone.pm:207
#, c-format
msgid "Malaysia"
msgstr "ማሌዢያ"
-#: lang.pm:345
+#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "ሞዛምቢክ"
-#: lang.pm:346
+#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "ናሚቢያ"
-#: lang.pm:347
+#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "ኒው ካሌዶኒያ"
-#: lang.pm:348
+#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "ኒጀር"
-#: lang.pm:349
+#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "ኖርፎልክ ደሴት"
-#: lang.pm:350
+#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "ናይጄሪያ"
-#: lang.pm:351
+#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "ኒካራጓ"
-#: lang.pm:354
+#: lang.pm:367 mirror.pm:28 timezone.pm:232
+#, c-format
+msgid "Netherlands"
+msgstr "ኔዘርላንድ"
+
+#: lang.pm:368 mirror.pm:30 timezone.pm:233
+#, c-format
+msgid "Norway"
+msgstr "ኖርዌይ"
+
+#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "ኔፓል"
-#: lang.pm:355
+#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "ናኡሩ"
-#: lang.pm:356
+#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "ኒኡይ"
-#: lang.pm:358
+#: lang.pm:372 mirror.pm:29 timezone.pm:255
+#, c-format
+msgid "New Zealand"
+msgstr "ኒው ዚላንድ"
+
+#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "ኦማን"
-#: lang.pm:359
+#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "ፓናማ"
-#: lang.pm:360
+#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "ፔሩ"
-#: lang.pm:361
+#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "የፈረንሳይ ፖሊኔዢያ"
-#: lang.pm:362
+#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "ፓፑዋ ኒው ጊኒ"
-#: lang.pm:363
+#: lang.pm:378 timezone.pm:208
#, c-format
msgid "Philippines"
msgstr "ፊሊፒንስ"
-#: lang.pm:364
+#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "ፓኪስታን"
-#: lang.pm:366
+#: lang.pm:380 mirror.pm:31 timezone.pm:234
+#, c-format
+msgid "Poland"
+msgstr "ፖላንድ"
+
+#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "ቅዱስ ፒዬር እና ሚኩኤሎን"
-#: lang.pm:367
+#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "ፒትካኢርን"
-#: lang.pm:368
+#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "ፖርታ ሪኮ"
-#: lang.pm:369
+#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "ፓለስታይን"
-#: lang.pm:371
+#: lang.pm:385 mirror.pm:32 timezone.pm:235
+#, c-format
+msgid "Portugal"
+msgstr "ፖርቱጋል"
+
+#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "ፓራጓይ"
-#: lang.pm:372
+#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "ፓላው"
-#: lang.pm:373
+#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "ኳታር"
-#: lang.pm:374
+#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "ሪዩኒየን ደሴት"
-#: lang.pm:375
+#: lang.pm:390 timezone.pm:236
#, c-format
msgid "Romania"
msgstr "ሮሜኒያ"
-#: lang.pm:377
+#: lang.pm:391 mirror.pm:33
+#, c-format
+msgid "Russia"
+msgstr "ራሺያ"
+
+#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "ሩዋንዳ"
-#: lang.pm:378
+#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "ሳውድአረቢያ"
-#: lang.pm:379
+#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "ሰሎሞን ደሴት"
-#: lang.pm:380
+#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "ሲሼልስ"
-#: lang.pm:381
+#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "ሱዳን"
-#: lang.pm:383
+#: lang.pm:397 mirror.pm:37 timezone.pm:241
+#, c-format
+msgid "Sweden"
+msgstr "ስዊድን"
+
+#: lang.pm:398 timezone.pm:209
#, c-format
msgid "Singapore"
msgstr "ሲንጋፖር"
-#: lang.pm:384
+#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "ሴንት ሄለና"
-#: lang.pm:385 network/adsl_consts.pm:747
+#: lang.pm:400 timezone.pm:239
#, c-format
msgid "Slovenia"
msgstr "ስሎቬኒያ"
-#: lang.pm:386
+#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "ስቫልባርድ እና ጃን ሜይን ደሴቶች"
-#: lang.pm:388
+#: lang.pm:402 mirror.pm:34 timezone.pm:238
+#, c-format
+msgid "Slovakia"
+msgstr "ስሎቫኪያ"
+
+#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "ሴራሊዮን"
-#: lang.pm:389
+#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "ሳን ማሪኖ"
-#: lang.pm:390 network/adsl_consts.pm:737
+#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "ሴኔጋል"
-#: lang.pm:391
+#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "ሱማሌ"
-#: lang.pm:392
+#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "ሱሪናም"
-#: lang.pm:393
+#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "ሳኦ ቶሜ እና ፕሪንሲፔ"
-#: lang.pm:394
+#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "ኤል ሳልቫዶር"
-#: lang.pm:395
+#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "ሲሪያ"
-#: lang.pm:396
+#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "ሱዋዚላንድ"
-#: lang.pm:397
+#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "የቱርኮችና የካኢኮስ ደሴቶች"
-#: lang.pm:398
+#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "ቻድ"
-#: lang.pm:399
+#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "የፈረንሳይ ደቡባዊ ግዛቶች"
-#: lang.pm:400
+#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "ቶጐ"
-#: lang.pm:402
+#: lang.pm:416 mirror.pm:40 timezone.pm:211
+#, c-format
+msgid "Thailand"
+msgstr "ታይላንድ"
+
+#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "ታጃኪስታን"
-#: lang.pm:403
+#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "ቶክላው"
-#: lang.pm:404
+#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "ምስራቅ ቲሞር"
-#: lang.pm:405
+#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "ቱርክሜኒስታን"
-#: lang.pm:406 network/adsl_consts.pm:931
+#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "ቱኒዚያ"
-#: lang.pm:407
+#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "ቶንጋ"
-#: lang.pm:408
+#: lang.pm:423 timezone.pm:212
#, c-format
msgid "Turkey"
msgstr "ቱርክ"
-#: lang.pm:409
+#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "ትሪኒዳድ እና ቶባጎ"
-#: lang.pm:410
+#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "ቱቫሉ"
-#: lang.pm:412
+#: lang.pm:426 mirror.pm:39 timezone.pm:210
+#, c-format
+msgid "Taiwan"
+msgstr "ታይዋን"
+
+#: lang.pm:427 timezone.pm:195
#, c-format
msgid "Tanzania"
msgstr "ታንዛኒያ"
-#: lang.pm:413
+#: lang.pm:428 timezone.pm:243
#, c-format
msgid "Ukraine"
msgstr "ዩክሬን"
-#: lang.pm:414
+#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "ዩጋንዳ"
-#: lang.pm:415
+#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "የአሜሪካ ጥቃቅን ውጫዊ ደሴቶች"
-#: lang.pm:417
+#: lang.pm:431 mirror.pm:41 timezone.pm:251
+#, c-format
+msgid "United States"
+msgstr "አሜሪካ"
+
+#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "ኡራጓይ"
-#: lang.pm:418
+#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "ዩዝበኪስታን"
-#: lang.pm:419
+#: lang.pm:434
#, c-format
msgid "Vatican"
msgstr "ቫቲካን ከተማ"
-#: lang.pm:420
+#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "ቅዱስ ቪንሴንት እና ግሬናዲንስ"
-#: lang.pm:421
+#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "ቬንዙዌላ"
-#: lang.pm:422
+#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "የእንግሊዝ ድንግል ደሴቶች"
-#: lang.pm:423
+#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "የእንግሊዝ ድንግል ደሴቶች"
-#: lang.pm:424
+#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "ቬትናም"
-#: lang.pm:425
+#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "ቫኑአቱ"
-#: lang.pm:426
+#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "ዋሊስ እና ፉቱና ደሴቶች"
-#: lang.pm:427
+#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "የአሜሪካ ሳሞአ"
-#: lang.pm:428
+#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "የመን"
-#: lang.pm:429
+#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "ሜይኦቴ"
-#: lang.pm:431
+#: lang.pm:445 mirror.pm:35 timezone.pm:194
+#, c-format
+msgid "South Africa"
+msgstr "ደቡብ አፍሪካ"
+
+#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "ዛምቢያ"
-#: lang.pm:432
+#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "ዚምቧቤ"
-#: lang.pm:1149
+#: lang.pm:1153
#, c-format
msgid "Welcome to %s"
msgstr "ወደ %s እንኳን ደህና መጡ"
@@ -8285,6 +4357,195 @@ msgstr ""
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:10
+#, c-format
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the Mandriva "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandriva Linux distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
+"Mandriva S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using the Software Products in any manner, you "
+"explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
+"Software Products.\n"
+"\n"
+"\n"
+"2. Limited Warranty\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
+"be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if Mandriva S.A. has been advised of the possibility or "
+"occurrence of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
+"\n"
+"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
+"no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Mandriva Linux sites which are prohibited or restricted in some "
+"countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
+"included in the Software Products.\n"
+"\n"
+"\n"
+"3. The GPL License and Related Licenses\n"
+"\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to Mandriva.\n"
+"The programs developed by Mandriva S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by Mandriva S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
+"\n"
+"\n"
+"4. Intellectual Property Rights\n"
+"\n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
+"as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
+"Mandriva S.A. \n"
+"\n"
+"\n"
+"5. Governing Laws \n"
+"\n"
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
+"For any question on this document, please contact Mandriva S.A. \n"
+msgstr ""
+
+#: messages.pm:90
+#, c-format
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:98
+#, c-format
+msgid ""
+"\n"
+"Warning\n"
+"\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
+"\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:131
+#, c-format
+msgid ""
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press Enter to reboot.\n"
+"\n"
+"\n"
+"For information on fixes which are available for this release of Mandriva "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandriva Linux User's Guide."
+msgstr ""
+
#: modules/interactive.pm:19
#, fuzzy, c-format
msgid "This driver has no configuration parameter!"
@@ -8347,19 +4608,14 @@ msgstr ""
msgid "Installing driver for %s card %s"
msgstr ""
-#: modules/interactive.pm:99
-#, c-format
-msgid "(module %s)"
-msgstr "(%s አቅድ)"
-
-#: modules/interactive.pm:109
+#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: modules/interactive.pm:115
+#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -8367,18 +4623,18 @@ msgid ""
"For instance, ``io=0x300 irq=7''"
msgstr ""
-#: modules/interactive.pm:117
+#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "የአቃጅ ምርጫዎች:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: modules/interactive.pm:130
+#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr ""
-#: modules/interactive.pm:139
+#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -8390,1822 +4646,34 @@ msgid ""
"not cause any damage."
msgstr ""
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "ራስ-ገዥ ሞካሪ"
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "ምርጫዎችን ይግለጹ"
-#: modules/interactive.pm:155
+#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
-#: modules/parameters.pm:49
-#, c-format
-msgid "a number"
-msgstr "ቍጥር"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d በነጠላ ሰረዝ የተለዩ ቁጥሮች"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d በነጠላ ሰረዝ የተለዩ ሐረጎች"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated numbers"
-msgstr "በነጠላ ሰረዝ የተለዩ ቁጥሮች"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated strings"
-msgstr "በነጠላ ሰረዝ የተለዩ ሐረጎች"
-
-#: mouse.pm:25
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - መጠቆሚያ"
-
-#: mouse.pm:31 security/level.pm:12
-#, c-format
-msgid "Standard"
-msgstr "መደበኛ"
-
-#: mouse.pm:32
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr ""
-
-#: mouse.pm:33
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr ""
-
-#: mouse.pm:34
-#, c-format
-msgid "GlidePoint"
-msgstr ""
-
-#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/modem.pm:68 network/modem.pm:81 network/modem.pm:86
-#: network/modem.pm:115 network/netconnect.pm:596 network/netconnect.pm:601
-#: network/netconnect.pm:613 network/netconnect.pm:618
-#: network/netconnect.pm:634 network/netconnect.pm:636
-#, c-format
-msgid "Automatic"
-msgstr "ራስ-ገዝ"
-
-#: mouse.pm:39 mouse.pm:73
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking መጠቆሚያ"
-
-#: mouse.pm:40 mouse.pm:68
-#, c-format
-msgid "Genius NetMouse"
-msgstr ""
-
-#: mouse.pm:41
-#, c-format
-msgid "Genius NetScroll"
-msgstr ""
-
-#: mouse.pm:42 mouse.pm:52
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "የማይክሮሶፍት ቃኚ"
-
-#: mouse.pm:47 mouse.pm:79
-#, c-format
-msgid "1 button"
-msgstr "1 ቁልፍ"
-
-#: mouse.pm:48 mouse.pm:57
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "አጠቃላይ ባለ 2 ቁልፍ መጠቆሚያ"
-
-#: mouse.pm:50 mouse.pm:59
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr ""
-
-#: mouse.pm:51
-#, c-format
-msgid "Wheel"
-msgstr ""
-
-#: mouse.pm:55
-#, c-format
-msgid "serial"
-msgstr ""
-
-#: mouse.pm:58
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "አጠቃላይ ባለ 3 ቁልፍ መጠቆሚያ"
-
-#: mouse.pm:60
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: mouse.pm:61
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: mouse.pm:62
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr ""
-
-#: mouse.pm:63
-#, c-format
-msgid "Mouse Systems"
-msgstr "የመጠቆሚያ ሲስተሞች"
-
-#: mouse.pm:65
-#, c-format
-msgid "Logitech CC Series"
-msgstr "የLogitech CC ተከታታይ"
-
-#: mouse.pm:66
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr ""
-
-#: mouse.pm:67
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr ""
-
-#: mouse.pm:69
-#, c-format
-msgid "MM Series"
-msgstr "የMM ተከታታይ"
-
-#: mouse.pm:70
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: mouse.pm:71
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr ""
-
-#: mouse.pm:72
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr ""
-
-#: mouse.pm:74
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr ""
-
-#: mouse.pm:77
-#, c-format
-msgid "busmouse"
-msgstr ""
-
-#: mouse.pm:80
-#, c-format
-msgid "2 buttons"
-msgstr "2 ቁልፎች"
-
-#: mouse.pm:81
-#, c-format
-msgid "3 buttons"
-msgstr "3 ቁልፎች"
-
-#: mouse.pm:82
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr ""
-
-#: mouse.pm:86
-#, c-format
-msgid "Universal"
-msgstr "አጠቃላይ"
-
-#: mouse.pm:88
-#, c-format
-msgid "Any PS/2 & USB mice"
-msgstr ""
-
-#: mouse.pm:89
-#, fuzzy, c-format
-msgid "Microsoft Xbox Controller S"
-msgstr "የማይክሮሶፍት ቃኚ"
-
-#: mouse.pm:93 standalone/drakconnect:351 standalone/drakvpn:1126
-#, c-format
-msgid "none"
-msgstr "ምንም"
-
-#: mouse.pm:95
-#, c-format
-msgid "No mouse"
-msgstr "መጠቆሚያ የለም"
-
-#: mouse.pm:304 mouse.pm:367 mouse.pm:376 mouse.pm:435
-#, c-format
-msgid "Synaptics Touchpad"
-msgstr ""
-
-#: mouse.pm:561
-#, c-format
-msgid "Please test the mouse"
-msgstr "እባክዎ መጠቆሚያውን ይሞክሩ"
-
-#: mouse.pm:563
-#, c-format
-msgid "To activate the mouse,"
-msgstr "መጠቆሚያውን ለማስጀመር፣"
-
-#: mouse.pm:564
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "ተሽከርካሪውን ያንቀሳቅሱ!"
-
-#: network/drakfirewall.pm:12 share/compssUsers.pl:85
-#, c-format
-msgid "Web Server"
-msgstr "የመረብ ሰርቨር"
-
-#: network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "የዘርፍ ስም ሰርቨር"
-
-#: network/drakfirewall.pm:22
-#, c-format
-msgid "SSH server"
-msgstr "SSH ሰርቨር"
-
-#: network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "የFTP ተጠሪ"
-
-#: network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "የመልዕክት ተጠሪ"
-
-#: network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr ""
-
-#: network/drakfirewall.pm:42
-#, c-format
-msgid "Telnet server"
-msgstr "የቴልኔት ሰርቨር"
-
-#: network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr ""
-
-#: network/drakfirewall.pm:54
-#, c-format
-msgid "CUPS server"
-msgstr "የCUPS ሰርቨር"
-
-#: network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr ""
-
-#: network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr ""
-
-#: network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr ""
-
-#: network/drakfirewall.pm:165
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-
-#: network/drakfirewall.pm:171
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-
-#: network/drakfirewall.pm:188
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
-
-#: network/drakfirewall.pm:191
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-
-#: network/drakfirewall.pm:197
-#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-
-#: network/drakfirewall.pm:207
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "ማንኛውም (የእሳት ግድግዳ የለም)"
-
-#: network/drakfirewall.pm:209
-#, c-format
-msgid "Other ports"
-msgstr "ሌላ ወደቦች"
-
-#: network/drakfirewall.pm:253 network/drakfirewall.pm:256
-#: standalone/drakids:33 standalone/drakids:136 standalone/drakids:145
-#: standalone/drakids:170 standalone/drakids:179 standalone/drakids:189
-#: standalone/drakids:265 standalone/net_applet:59 standalone/net_applet:202
-#: standalone/net_applet:385 standalone/net_applet:422
-#, fuzzy, c-format
-msgid "Interactive Firewall"
-msgstr "የእሳት ግድግዳ"
-
-#: network/drakfirewall.pm:254
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activity should be watched."
-msgstr ""
-
-#: network/drakfirewall.pm:259
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr ""
-
-#: network/ifw.pm:129
-#, fuzzy, c-format
-msgid "Port scanning"
-msgstr "መጋራት የለም"
-
-#: network/ifw.pm:130
-#, fuzzy, c-format
-msgid "Service attack"
-msgstr "የአገልግሎቶች መቆጣጠሪያ"
-
-#: network/ifw.pm:131
-#, fuzzy, c-format
-msgid "Password cracking"
-msgstr "ሚስጢራዊ ቃል (እንደገና)"
-
-#: network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr ""
-
-#: network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:135
-#, c-format
-msgid "The %s service has been attacked by %s."
-msgstr ""
-
-#: network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:137
-#, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr ""
-
-#: network/isdn.pm:117 network/netconnect.pm:463 network/netconnect.pm:557
-#: network/netconnect.pm:560 network/netconnect.pm:708
-#: network/netconnect.pm:712
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr "ያልተዘረዘሩ - በእጅ ያስተካክሉ"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "አላውቅም"
-
-#: network/isdn.pm:161 network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: network/isdn.pm:162 network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/netconnect.pm:601 network/netconnect.pm:618
-#: network/netconnect.pm:634
-#, c-format
-msgid "Manual"
-msgstr "መመሪያ"
-
-#: network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr ""
-
-#: network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr ""
-
-#: network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr ""
-
-#: network/ndiswrapper.pm:89
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr ""
-
-#: network/ndiswrapper.pm:95
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-
-#: network/ndiswrapper.pm:101
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr ""
-
-#: network/netconnect.pm:69 network/netconnect.pm:493
-#: network/netconnect.pm:505
-#, c-format
-msgid "Manual choice"
-msgstr "የመመሪያ ምርጫ"
-
-#: network/netconnect.pm:69
-#, c-format
-msgid "Internal ISDN card"
-msgstr "ውስጣዊ ISDN ካርድ"
-
-#: network/netconnect.pm:80 printer/printerdrake.pm:1622 standalone/drakups:72
-#, c-format
-msgid "Manual configuration"
-msgstr "በእጅ ምርጫ"
-
-#: network/netconnect.pm:81 standalone/drakroam:121
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr ""
-
-#: network/netconnect.pm:83
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
-msgstr ""
-
-#: network/netconnect.pm:86
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr ""
-
-#: network/netconnect.pm:88 standalone/drakconnect:563
-#, fuzzy, c-format
-msgid "European protocol (EDSS1)"
-msgstr "መካከለኛ አውሮፓውያን፣ Macintosh"
-
-#: network/netconnect.pm:89 standalone/drakconnect:564
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-
-#: network/netconnect.pm:103 standalone/harddrake2:328
-#: standalone/net_monitor:102 standalone/net_monitor:103
-#: standalone/net_monitor:108
-#, c-format
-msgid "unknown"
-msgstr "ያልታወቀ"
-
-#: network/netconnect.pm:120 network/thirdparty.pm:220
-#, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "Alcatel speedtouch USB ሞዴም"
-
-#: network/netconnect.pm:121
-#, c-format
-msgid "Sagem USB modem"
-msgstr "Sagem USB ሞዴም"
-
-#: network/netconnect.pm:122
-#, c-format
-msgid "Bewan modem"
-msgstr "Bewan ሞዴም"
-
-#: network/netconnect.pm:123
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr "ECI Hi-Focus ሞዴም"
-
-#: network/netconnect.pm:127
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr ""
-
-#: network/netconnect.pm:128
-#, c-format
-msgid "Manual TCP/IP configuration"
-msgstr ""
-
-#: network/netconnect.pm:129
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr ""
-
-#: network/netconnect.pm:130
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr ""
-
-#: network/netconnect.pm:131
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr ""
-
-#: network/netconnect.pm:132
-#, c-format
-msgid "DSL over CAPI"
-msgstr ""
-
-#: network/netconnect.pm:136
-#, c-format
-msgid "Bridged Ethernet LLC"
-msgstr ""
-
-#: network/netconnect.pm:137
-#, c-format
-msgid "Bridged Ethernet VC"
-msgstr ""
-
-#: network/netconnect.pm:138
-#, c-format
-msgid "Routed IP LLC"
-msgstr ""
-
-#: network/netconnect.pm:139
-#, c-format
-msgid "Routed IP VC"
-msgstr ""
-
-#: network/netconnect.pm:140
-#, c-format
-msgid "PPPoA LLC"
-msgstr ""
-
-#: network/netconnect.pm:141
-#, c-format
-msgid "PPPoA VC"
-msgstr ""
-
-#: network/netconnect.pm:145 standalone/drakconnect:498
-#, fuzzy, c-format
-msgid "Script-based"
-msgstr "የተመሠረተው፦"
-
-#: network/netconnect.pm:146 standalone/drakconnect:498
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: network/netconnect.pm:147 standalone/drakconnect:498
-#, fuzzy, c-format
-msgid "Terminal-based"
-msgstr "የተመሠረተው፦"
-
-#: network/netconnect.pm:148 standalone/drakconnect:498
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: network/netconnect.pm:149 standalone/drakconnect:498
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: network/netconnect.pm:250 standalone/drakconnect:56
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "የመረብ እና ኢንተርኔት ምርጫ"
-
-#: network/netconnect.pm:256
-#, c-format
-msgid "LAN connection"
-msgstr "የቅርብ መረብ ግንኙነት"
-
-#: network/netconnect.pm:257 network/netconnect.pm:276 standalone/drakroam:182
-#: standalone/drakroam:220 standalone/drakroam:223
-#, c-format
-msgid "Wireless connection"
-msgstr "ሽቦ አልባ ግንኙነት"
-
-#: network/netconnect.pm:258
-#, c-format
-msgid "ADSL connection"
-msgstr "የADSL ግንኙነት"
-
-#: network/netconnect.pm:259
-#, c-format
-msgid "Cable connection"
-msgstr "የኬብል ግንኙነት"
-
-#: network/netconnect.pm:260
-#, c-format
-msgid "ISDN connection"
-msgstr "የISDN ግንኙነት"
-
-#: network/netconnect.pm:261
-#, c-format
-msgid "Modem connection"
-msgstr "የሞዴም ግንኙነት"
-
-#: network/netconnect.pm:262
-#, c-format
-msgid "DVB connection"
-msgstr ""
-
-#: network/netconnect.pm:272
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "ለማስተካከል የሚፈልጉትን ግንኙነት ይምረጡ"
-
-#: network/netconnect.pm:287 network/netconnect.pm:786
-#, c-format
-msgid "Connection Configuration"
-msgstr "የግንኙነት ምርጫ"
-
-#: network/netconnect.pm:287 network/netconnect.pm:787
-#, c-format
-msgid "Please fill or check the field below"
-msgstr ""
-
-#: network/netconnect.pm:290
-#, c-format
-msgid "Your personal phone number"
-msgstr "የራስዎ ስልክ ቁጥር"
-
-#: network/netconnect.pm:291 network/netconnect.pm:790
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "የአገልግሎት ሰጪው ስም (ለምሳሌ: provider.net)"
-
-#: network/netconnect.pm:292 standalone/drakconnect:493
-#, c-format
-msgid "Provider phone number"
-msgstr "የአገልግሎት ሰጪው ስልክ ቁጥር"
-
-#: network/netconnect.pm:293
-#, fuzzy, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "የአገልግሎት ሰጪ ስልክ ቁጥር"
-
-#: network/netconnect.pm:294
-#, fuzzy, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "የአገልግሎት ሰጪ ስልክ ቁጥር"
-
-#: network/netconnect.pm:295 standalone/drakconnect:444
-#, fuzzy, c-format
-msgid "Dialing mode"
-msgstr "የመሸፈኛ ዘዴ"
-
-#: network/netconnect.pm:296 standalone/drakconnect:449
-#: standalone/drakconnect:517
-#, c-format
-msgid "Connection speed"
-msgstr "የግንኙነት ፍጥነት"
-
-#: network/netconnect.pm:297 standalone/drakconnect:454
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr ""
-
-#: network/netconnect.pm:298 network/netconnect.pm:323
-#: network/netconnect.pm:793 standalone/drakconnect:491
-#, c-format
-msgid "Account Login (user name)"
-msgstr ""
-
-#: network/netconnect.pm:299 network/netconnect.pm:324
-#: network/netconnect.pm:794 standalone/drakconnect:492
-#, c-format
-msgid "Account Password"
-msgstr "የመዝገብ ሚስጢራዊ ቃል"
-
-#: network/netconnect.pm:300 standalone/drakconnect:554
-#, c-format
-msgid "Card IRQ"
-msgstr "ካርድ IRQ"
-
-#: network/netconnect.pm:301 standalone/drakconnect:555
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "ካርድ mem (DMA)"
-
-#: network/netconnect.pm:302 standalone/drakconnect:556
-#, c-format
-msgid "Card IO"
-msgstr "ካርድ IO"
-
-#: network/netconnect.pm:303 standalone/drakconnect:557
-#, c-format
-msgid "Card IO_0"
-msgstr "ካርድ IO_0"
-
-#: network/netconnect.pm:304
-#, c-format
-msgid "Card IO_1"
-msgstr "ካርድ IO_1"
-
-#: network/netconnect.pm:319
-#, fuzzy, c-format
-msgid "Cable: account options"
-msgstr "ባለሁለት አቅጣጫ ምርጫዎች"
-
-#: network/netconnect.pm:322
-#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr ""
-
-#: network/netconnect.pm:348 network/netconnect.pm:670
-#: network/netconnect.pm:826 network/netconnect.pm:1170
-#, c-format
-msgid "Select the network interface to configure:"
-msgstr "ለማስተካከል የመረብ እይታ ይምረጡ:"
-
-#: network/netconnect.pm:350 network/netconnect.pm:385
-#: network/netconnect.pm:671 network/netconnect.pm:828 network/shorewall.pm:70
-#: standalone/drakconnect:714
-#, c-format
-msgid "Net Device"
-msgstr "የመረብ መሳሪያ"
-
-#: network/netconnect.pm:351 network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr "ውጫዊ የISDN ሞዴም"
-
-#: network/netconnect.pm:384 standalone/harddrake2:215
-#, fuzzy, c-format
-msgid "Select a device!"
-msgstr "የመረብ ዕቃ"
-
-#: network/netconnect.pm:393 network/netconnect.pm:403
-#: network/netconnect.pm:413 network/netconnect.pm:446
-#: network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "የISDN ምርጫ"
-
-#: network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "ምን አይነት ካርድ ነው ያልዎት?"
-
-#: network/netconnect.pm:404
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "ቀጥል"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "ይቁም"
-
-#: network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "ከሚከተሉት የISDN ካርዶች ውስጥ የትኛው ነው የእርሶ?"
-
-#: network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-
-#: network/netconnect.pm:434 standalone/drakconnect:109 standalone/drakups:249
-#: standalone/harddrake2:133
-#, c-format
-msgid "Driver"
-msgstr ""
-
-#: network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr ""
-
-#: network/netconnect.pm:448 standalone/drakconnect:109
-#: standalone/drakconnect:300 standalone/drakconnect:562
-#: standalone/drakids:207 standalone/drakvpn:1128
-#, c-format
-msgid "Protocol"
-msgstr ""
-
-#: network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-
-#: network/netconnect.pm:462 network/netconnect.pm:556
-#: network/netconnect.pm:707
-#, c-format
-msgid "Provider:"
-msgstr "አገልግሎት ሰጪ:"
-
-#: network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-
-#: network/netconnect.pm:490
-#, fuzzy, c-format
-msgid "Select the modem to configure:"
-msgstr "ለማስተካከል ሞዴም ይምረጡ:"
-
-#: network/netconnect.pm:525
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr ""
-
-#: network/netconnect.pm:554
-#, c-format
-msgid "Select your provider:"
-msgstr "አግልግሎት ሰጪዎን ይምረጡ"
-
-#: network/netconnect.pm:578
-#, fuzzy, c-format
-msgid "Dialup: account options"
-msgstr "ባለሁለት አቅጣጫ ምርጫዎች"
-
-#: network/netconnect.pm:581
-#, c-format
-msgid "Connection name"
-msgstr "የግንኙነት ስም"
-
-#: network/netconnect.pm:582
-#, c-format
-msgid "Phone number"
-msgstr "የስልክ ቁጥር"
-
-#: network/netconnect.pm:583
-#, fuzzy, c-format
-msgid "Login ID"
-msgstr "መለያ አስገባ"
-
-#: network/netconnect.pm:598 network/netconnect.pm:631
-#, c-format
-msgid "Dialup: IP parameters"
-msgstr ""
-
-#: network/netconnect.pm:601
-#, c-format
-msgid "IP parameters"
-msgstr "IP መለኪያዎች"
-
-#: network/netconnect.pm:602 network/netconnect.pm:941
-#: printer/printerdrake.pm:460 standalone/drakconnect:109
-#: standalone/drakconnect:316 standalone/drakconnect:882
-#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:284
-#, c-format
-msgid "IP address"
-msgstr "IP አድራሻ"
-
-#: network/netconnect.pm:603
-#, c-format
-msgid "Subnet mask"
-msgstr "Subnet mask"
-
-#: network/netconnect.pm:615
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr ""
-
-#: network/netconnect.pm:618
-#, c-format
-msgid "DNS"
-msgstr "DNS"
-
-#: network/netconnect.pm:619
-#, c-format
-msgid "Domain name"
-msgstr "የዶሜን ስም"
-
-#: network/netconnect.pm:620 network/netconnect.pm:791
-#: standalone/drakconnect:992
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr ""
-
-#: network/netconnect.pm:621 network/netconnect.pm:792
-#: standalone/drakconnect:993
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr ""
-
-#: network/netconnect.pm:622
-#, c-format
-msgid "Set hostname from IP"
-msgstr ""
-
-#: network/netconnect.pm:634 standalone/drakconnect:327
-#, c-format
-msgid "Gateway"
-msgstr "Gateway"
-
-#: network/netconnect.pm:635 standalone/drakroam:124
-#, c-format
-msgid "Gateway IP address"
-msgstr "የGateway IP አድራሻ"
-
-#: network/netconnect.pm:670
-#, c-format
-msgid "ADSL configuration"
-msgstr "የADSL ምርጫ"
-
-#: network/netconnect.pm:705
-#, c-format
-msgid "Please choose your ADSL provider"
-msgstr "እባክዎ የADSL አገልግሎት ሰጪዎን ይምረጡ"
-
-#: network/netconnect.pm:735
-#, c-format
-msgid ""
-"Please choose your DSL connection type.\n"
-"If you do not know it, keep the preselected type."
-msgstr ""
-
-#: network/netconnect.pm:738
-#, fuzzy, c-format
-msgid "ADSL connection type:"
-msgstr "ጥሩው የፋይል ዓይነት"
-
-#: network/netconnect.pm:796
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr ""
-
-#: network/netconnect.pm:797
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr ""
-
-#: network/netconnect.pm:800
-#, c-format
-msgid "Encapsulation:"
-msgstr ""
-
-#: network/netconnect.pm:830
-#, c-format
-msgid "Manually load a driver"
-msgstr ""
-
-#: network/netconnect.pm:831
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr ""
-
-#: network/netconnect.pm:896
-#, c-format
-msgid "Zeroconf hostname resolution"
-msgstr ""
-
-#: network/netconnect.pm:897 network/netconnect.pm:928
-#, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr ""
-
-#: network/netconnect.pm:898
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use"
-msgstr ""
-
-#: network/netconnect.pm:929
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-
-#: network/netconnect.pm:936 standalone/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr ""
-
-#: network/netconnect.pm:937 standalone/drakconnect:375
-#, fuzzy, c-format
-msgid "DHCP host name"
-msgstr "ህገ ወጥ የዶሴ ስም"
-
-#: network/netconnect.pm:942 standalone/drakconnect:321
-#: standalone/drakconnect:883 standalone/drakgw:181
-#, c-format
-msgid "Netmask"
-msgstr "Netmask"
-
-#: network/netconnect.pm:944 standalone/drakconnect:437
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr ""
-
-#: network/netconnect.pm:945 standalone/drakconnect:438
-#, fuzzy, c-format
-msgid "Network Hotplugging"
-msgstr "Name=መረብ"
-
-#: network/netconnect.pm:947 standalone/drakconnect:432
-#, fuzzy, c-format
-msgid "Start at boot"
-msgstr "ቍጥር አሰጣጡን እንደገና በ...ላይ ጀምር፦"
-
-#: network/netconnect.pm:949 standalone/drakconnect:460
-#, fuzzy, c-format
-msgid "Metric"
-msgstr "ሜክሲኮ"
-
-#: network/netconnect.pm:950
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr ""
-
-#: network/netconnect.pm:952 standalone/drakconnect:369
-#: standalone/drakconnect:886
-#, c-format
-msgid "DHCP client"
-msgstr ""
-
-#: network/netconnect.pm:954 standalone/drakconnect:379
-#, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr ""
-
-#: network/netconnect.pm:955 standalone/drakconnect:382
-#, fuzzy, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-
-#: network/netconnect.pm:956 standalone/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:957 standalone/drakconnect:384
-#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:965 printer/printerdrake.pm:1876
-#: standalone/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr ""
-
-#: network/netconnect.pm:969 standalone/drakconnect:680
-#, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr ""
-
-#: network/netconnect.pm:973
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr ""
-
-#: network/netconnect.pm:978 standalone/drakTermServ:1927
-#: standalone/drakTermServ:1928 standalone/drakTermServ:1929
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s አስቀድሞ ጥቅም ላይ ነው\n"
-
-#: network/netconnect.pm:1018
-#, fuzzy, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "የነሲብ URLን አታስችል"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr ""
-
-#: network/netconnect.pm:1020
-#, fuzzy, c-format
-msgid "Install a new driver"
-msgstr "ሲስተም ትከል"
-
-#: network/netconnect.pm:1032
-#, c-format
-msgid "Select a device:"
-msgstr ""
-
-#: network/netconnect.pm:1061
-#, c-format
-msgid "Please enter the wireless parameters for this card:"
-msgstr ""
-
-#: network/netconnect.pm:1064 standalone/drakconnect:404
-#: standalone/drakroam:52
-#, fuzzy, c-format
-msgid "Operating Mode"
-msgstr "የመሸፈኛ ዘዴ"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Ad-hoc"
-msgstr "Ad-hoc"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Managed"
-msgstr ""
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Master"
-msgstr "ገዢ"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Repeater"
-msgstr "ደጋሚ"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Secondary"
-msgstr "ሁለተኛ"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Auto"
-msgstr "ራስ-ገዝ"
-
-#: network/netconnect.pm:1068 standalone/drakconnect:405
-#: standalone/drakroam:115
-#, c-format
-msgid "Network name (ESSID)"
-msgstr "የመረብ ስም (ESSID)"
-
-#: network/netconnect.pm:1069 standalone/drakroam:116
-#, c-format
-msgid "Encryption mode"
-msgstr ""
-
-#: network/netconnect.pm:1074
-#, c-format
-msgid "Allow access point roaming"
-msgstr ""
-
-#: network/netconnect.pm:1076 standalone/drakconnect:406
-#, c-format
-msgid "Network ID"
-msgstr "የመረብ መለያ"
-
-#: network/netconnect.pm:1077 standalone/drakconnect:407
-#, c-format
-msgid "Operating frequency"
-msgstr ""
-
-#: network/netconnect.pm:1078 standalone/drakconnect:408
-#, c-format
-msgid "Sensitivity threshold"
-msgstr ""
-
-#: network/netconnect.pm:1079 standalone/drakconnect:409
-#, fuzzy, c-format
-msgid "Bitrate (in b/s)"
-msgstr "በጥቅም ላይ ያለ"
-
-#: network/netconnect.pm:1080 standalone/drakconnect:420
-#, c-format
-msgid "RTS/CTS"
-msgstr "RTS/CTS"
-
-#: network/netconnect.pm:1081
-#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
-
-#: network/netconnect.pm:1088 standalone/drakconnect:421
-#, c-format
-msgid "Fragmentation"
-msgstr ""
-
-#: network/netconnect.pm:1089 standalone/drakconnect:422
-#, c-format
-msgid "iwconfig command extra arguments"
-msgstr ""
-
-#: network/netconnect.pm:1090
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-
-#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1097 standalone/drakconnect:423
-#, c-format
-msgid "iwspy command extra arguments"
-msgstr ""
-
-#: network/netconnect.pm:1098
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-
-#: network/netconnect.pm:1107 standalone/drakconnect:424
-#, c-format
-msgid "iwpriv command extra arguments"
-msgstr ""
-
-#: network/netconnect.pm:1108
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-
-#: network/netconnect.pm:1123
-#, c-format
-msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
-msgstr ""
-
-#: network/netconnect.pm:1127
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-
-#: network/netconnect.pm:1170
-#, c-format
-msgid "DVB configuration"
-msgstr ""
-
-#: network/netconnect.pm:1171
-#, c-format
-msgid "DVB Adapter"
-msgstr ""
-
-#: network/netconnect.pm:1188
-#, c-format
-msgid "DVB adapter settings"
-msgstr ""
-
-#: network/netconnect.pm:1191
-#, c-format
-msgid "Adapter card"
-msgstr ""
-
-#: network/netconnect.pm:1192
-#, c-format
-msgid "Net demux"
-msgstr ""
-
-#: network/netconnect.pm:1193
-#, c-format
-msgid "PID"
-msgstr ""
-
-#: network/netconnect.pm:1221
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-
-#: network/netconnect.pm:1226
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr ""
-
-#: network/netconnect.pm:1228 standalone/drakconnect:991
-#, fuzzy, c-format
-msgid "Host name (optional)"
-msgstr "ህገ ወጥ የዶሴ ስም"
-
-#: network/netconnect.pm:1228 standalone/drakhosts:197
-#, c-format
-msgid "Host name"
-msgstr "የእንግዳ ተቀባይ ስም"
-
-#: network/netconnect.pm:1230
-#, c-format
-msgid "DNS server 1"
-msgstr "DNS ሰርቨር 1"
-
-#: network/netconnect.pm:1231
-#, c-format
-msgid "DNS server 2"
-msgstr "DNS ሰርቨር 2"
-
-#: network/netconnect.pm:1232
-#, c-format
-msgid "DNS server 3"
-msgstr "DNS ሰርቨር 3"
-
-#: network/netconnect.pm:1233
-#, fuzzy, c-format
-msgid "Search domain"
-msgstr "የObjectDirectory ዶሜን"
-
-#: network/netconnect.pm:1234
-#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr ""
-
-#: network/netconnect.pm:1235
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Gateway (ለምሳሌ: %s)"
-
-#: network/netconnect.pm:1237
-#, c-format
-msgid "Gateway device"
-msgstr "የGateway መሳሪያ"
-
-#: network/netconnect.pm:1246
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr ""
-
-#: network/netconnect.pm:1251 standalone/drakconnect:685
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr ""
-
-#: network/netconnect.pm:1264
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-
-#: network/netconnect.pm:1268
-#, fuzzy, c-format
-msgid "Zeroconf Host name"
-msgstr "ህገ ወጥ የዶሴ ስም"
-
-#: network/netconnect.pm:1271
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr ""
-
-#: network/netconnect.pm:1281
-#, fuzzy, c-format
-msgid "Do you want to allow users to start the connection?"
-msgstr "ምርጫውን መሞከር ይፈልጋሉ?"
-
-#: network/netconnect.pm:1294
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr ""
-
-#: network/netconnect.pm:1310
-#, fuzzy, c-format
-msgid "Automatically at boot"
-msgstr "ቍጥር አሰጣጡን እንደገና በ...ላይ ጀምር፦"
-
-#: network/netconnect.pm:1312
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr ""
-
-#: network/netconnect.pm:1314
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr ""
-
-#: network/netconnect.pm:1323
-#, fuzzy, c-format
-msgid "How do you want to dial this connection?"
-msgstr "ምርጫውን መሞከር ይፈልጋሉ?"
-
-#: network/netconnect.pm:1336
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr ""
-
-#: network/netconnect.pm:1344 standalone/drakconnect:1023
-#, c-format
-msgid "Testing your connection..."
-msgstr "ግንኙነትዎን በመሞከር ላይ..."
-
-#: network/netconnect.pm:1369
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "ሲስተሙ አሁን ከኢንተርኔት ጋር ተገናኝቷል።"
-
-#: network/netconnect.pm:1370
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "ለድህንነት ሲባል፣ ግንኙነቱ አሁን ይቋረጣል።"
-
-#: network/netconnect.pm:1371
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-
-#: network/netconnect.pm:1386
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-
-#: network/netconnect.pm:1389
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-
-#: network/netconnect.pm:1390
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-
-#: network/netconnect.pm:1402
-#, fuzzy, c-format
-msgid "(detected on port %s)"
-msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
-
-# -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1404
-#, fuzzy, c-format
-msgid "(detected %s)"
-msgstr "አውቶማቲካሊ ተፈልጎ የተገኘ"
-
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected)"
-msgstr "(ተገኝቷል)"
-
-#: network/netconnect.pm:1405
-#, c-format
-msgid "Network Configuration"
-msgstr "የመረብ ምርጫ"
-
-#: network/netconnect.pm:1406
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-
-#: network/netconnect.pm:1409
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr ""
-
-#: network/netconnect.pm:1410
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-
-#: network/netconnect.pm:1411
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-
-#: network/netconnect.pm:1412
-#, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr ""
-
-#: network/netconnect.pm:1413
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: network/netconnect.pm:1414
-#, c-format
-msgid "Internet connection"
-msgstr "የኢንተርኔት ግንኙነት"
-
-#: network/netconnect.pm:1428
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-
-#: network/network.pm:411
-#, c-format
-msgid "Proxies configuration"
-msgstr "የወኪሎች ምርጫ"
-
-#: network/network.pm:412
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-
-#: network/network.pm:413
-#, c-format
-msgid "HTTP proxy"
-msgstr "የHTTP ወኪል"
-
-#: network/network.pm:414
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: network/network.pm:415
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: network/network.pm:416
-#, c-format
-msgid "FTP proxy"
-msgstr "የFTP ወኪል"
-
-#: network/network.pm:420
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "ወኪል http://... መሆን አለበት"
-
-#: network/network.pm:421
-#, c-format
-msgid "Proxy should be https?://..."
-msgstr ""
-
-#: network/network.pm:422
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URL በ'ftp:' ወይም በ'http:' መጀመር አለበት"
-
-#: network/shorewall.pm:55
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-
-#: network/thirdparty.pm:232
-#, c-format
-msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
-msgstr ""
-
-#: network/thirdparty.pm:241
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-
-#: network/thirdparty.pm:321
-#, fuzzy, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "የ%s ጥቅሎችን መትከል አልተቻለም!"
-
-#: network/thirdparty.pm:329
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr ""
-
-#: network/thirdparty.pm:330
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-
-#: network/thirdparty.pm:332
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-
-#: network/thirdparty.pm:372
-#, fuzzy, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "ከሲስተሜ ውስጥ ፊደላትን አስወግድ"
-
-#: network/thirdparty.pm:374
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr ""
-
-#: network/thirdparty.pm:384
-#, c-format
-msgid "Insert floppy"
-msgstr "ፍሎፒ ያስገቡ"
-
-#: network/thirdparty.pm:385
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-
-#: network/thirdparty.pm:395
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr ""
-
-#: network/thirdparty.pm:405
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-
-#: network/thirdparty.pm:409 network/thirdparty.pm:411
-#, c-format
-msgid "Use a floppy"
-msgstr "ፍሎፒ ተጠቀም"
-
-#: network/thirdparty.pm:409
-#, c-format
-msgid "Use my Windows partition"
-msgstr "የWindows ክፋዬን ተጠቀም"
-
-#: network/thirdparty.pm:419
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr ""
-
-#: network/thirdparty.pm:424 standalone/drakautoinst:250
-#: standalone/drakvpn:888 standalone/scannerdrake:422
-#, fuzzy, c-format
-msgid "Congratulations!"
-msgstr "እንኳን ደስ ያለዎ!"
-
-#: network/thirdparty.pm:424
-#, fuzzy, c-format
-msgid "Firmware copy succeeded"
-msgstr "መቅጃውን ክፈት"
-
-#: network/thirdparty.pm:493
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr ""
-
-#: network/thirdparty.pm:498
-#, fuzzy, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "እባክዎ ይጠብቁ፣ መሳሪያዎችን ፈልጎ በማግኘት እና በማስተካከል ላይ ነው..."
-
-#: network/wireless.pm:8
-#, c-format
-msgid "Open WEP"
-msgstr ""
-
-#: network/wireless.pm:9
-#, c-format
-msgid "Restricted WEP"
-msgstr ""
-
-#: network/wireless.pm:10
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr ""
-
-#: partition_table.pm:391
+#: partition_table.pm:390
#, fuzzy, c-format
msgid "mount failed: "
msgstr "%s አልተገኘም"
-#: partition_table.pm:496
+#: partition_table.pm:500
#, c-format
msgid "Extended partition not supported on this platform"
msgstr ""
-#: partition_table.pm:514
+#: partition_table.pm:518
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
@@ -10213,22 +4681,27 @@ msgid ""
"to the extended partitions."
msgstr ""
-#: partition_table.pm:605
+#: partition_table.pm:597
+#, c-format
+msgid "Error reading file %s"
+msgstr "%sን በማንበብ ላይ ስህተት ተፈጥሯል"
+
+#: partition_table.pm:604
#, fuzzy, c-format
msgid "Restoring from file %s failed: %s"
msgstr "ከ &pot ሰነድ አሻሽል"
-#: partition_table.pm:607
+#: partition_table.pm:606
#, fuzzy, c-format
msgid "Bad backup file"
msgstr "ጥሩው የፋይል ዓይነት"
-#: partition_table.pm:627
+#: partition_table.pm:626
#, fuzzy, c-format
msgid "Error writing to file %s"
msgstr "ስህተት፦ የታቀደው ፋይል '%s'ን መክፈት አልተቻለም\n"
-#: partition_table/raw.pm:253
+#: partition_table/raw.pm:264
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
@@ -10237,3032 +4710,47 @@ msgid ""
"data."
msgstr ""
-#: pkgs.pm:21
-#, c-format
-msgid "must have"
-msgstr ""
-
-#: pkgs.pm:22
-#, c-format
-msgid "important"
-msgstr "አስፈላጊ"
-
-#: pkgs.pm:23
-#, c-format
-msgid "very nice"
-msgstr "በጣም ጥሩ"
-
-#: pkgs.pm:24
-#, c-format
-msgid "nice"
-msgstr "ጥሩ"
-
-#: pkgs.pm:25
-#, c-format
-msgid "maybe"
-msgstr "ምናልባት"
-
-#: pkgs.pm:474
-#, fuzzy, c-format
-msgid "Downloading file %s..."
-msgstr "የቅርብ ጊዜ ፋይሎች"
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on %s)"
-msgstr "(በ %s)"
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on this machine)"
-msgstr "(በዚህ ማሽን ላይ)"
-
-#: printer/cups.pm:117 standalone/printerdrake:200
-#, c-format
-msgid "Configured on other machines"
-msgstr ""
-
-#: printer/cups.pm:119
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "በCUPS ሰርቨር \"%s\" ላይ"
-
-#: printer/cups.pm:119 printer/printerdrake.pm:4909
-#: printer/printerdrake.pm:4919 printer/printerdrake.pm:5078
-#: printer/printerdrake.pm:5089 printer/printerdrake.pm:5303
-#, c-format
-msgid " (Default)"
-msgstr "(ቀዳሚ)"
-
-#: printer/data.pm:67
-#, c-format
-msgid "PDQ - Print, Do not Queue"
-msgstr ""
-
-#: printer/data.pm:68
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: printer/data.pm:80
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: printer/data.pm:81
-#, c-format
-msgid "LPD"
-msgstr "LPD"
-
-#: printer/data.pm:102
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: printer/data.pm:103
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
-
-#: printer/data.pm:128
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: printer/data.pm:158
-#, c-format
-msgid "CUPS - Common Unix Printing System (remote server)"
-msgstr ""
-
-#: printer/data.pm:159
-#, fuzzy, c-format
-msgid "Remote CUPS"
-msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-
-#: printer/detect.pm:168 printer/detect.pm:263 printer/detect.pm:498
-#: printer/detect.pm:571 printer/main.pm:330 printer/main.pm:692
-#: printer/main.pm:1815 printer/printerdrake.pm:960
-#: printer/printerdrake.pm:1120 printer/printerdrake.pm:2448
-#: printer/printerdrake.pm:4004
-#, c-format
-msgid "Unknown model"
-msgstr "ያልታወቀ ሞዴል"
-
-#: printer/main.pm:24
-#, c-format
-msgid "Local printer"
-msgstr "የቅርብ ማተሚያ"
-
-#: printer/main.pm:25
-#, c-format
-msgid "Remote printer"
-msgstr "የሩቅ ማተሚያ"
-
-#: printer/main.pm:26
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr ""
-
-#: printer/main.pm:27 printer/printerdrake.pm:1360
-#: printer/printerdrake.pm:1899
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr ""
-
-#: printer/main.pm:28
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr ""
-
-#: printer/main.pm:29
-#, fuzzy, c-format
-msgid "Printer on SMB/Windows server"
-msgstr "የማተሚያ ሰርቨር"
-
-#: printer/main.pm:30
-#, c-format
-msgid "Printer on NetWare server"
-msgstr ""
-
-#: printer/main.pm:31 printer/printerdrake.pm:1903
-#, c-format
-msgid "Enter a printer device URI"
-msgstr ""
-
-#: printer/main.pm:32
-#, c-format
-msgid "Pipe job into a command"
-msgstr ""
-
-#: printer/main.pm:43
-#, c-format
-msgid "recommended"
-msgstr "የተጠቆመ ሀሳብ"
-
-#: printer/main.pm:355 standalone/printerdrake:199
-#, fuzzy, c-format
-msgid "Configured on this machine"
-msgstr "መረጃ በዚህ መጠቀሚያ ፕሮግራም ላይ"
-
-#: printer/main.pm:361 printer/printerdrake.pm:1445
-#, fuzzy, c-format
-msgid " on parallel port #%s"
-msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
-
-#: printer/main.pm:364 printer/printerdrake.pm:1448
-#, c-format
-msgid ", USB printer #%s"
-msgstr "፣ USB ማተሚያ #%s"
-
-#: printer/main.pm:366
-#, c-format
-msgid ", USB printer"
-msgstr "፣ የUSB ማተሚያ"
-
-#: printer/main.pm:370
-#, fuzzy, c-format
-msgid ", HP printer on a parallel port"
-msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
-
-#: printer/main.pm:372
-#, fuzzy, c-format
-msgid ", HP printer on USB"
-msgstr "፣ የUSB ማተሚያ"
-
-#: printer/main.pm:374
-#, c-format
-msgid ", HP printer on HP JetDirect"
-msgstr ""
-
-#: printer/main.pm:376
-#, fuzzy, c-format
-msgid ", HP printer"
-msgstr "፣ የUSB ማተሚያ"
-
-#: printer/main.pm:382
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ""
-
-#: printer/main.pm:385
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ""
-
-#: printer/main.pm:387
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: printer/main.pm:389
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: printer/main.pm:391
-#, c-format
-msgid ", multi-function device"
-msgstr ""
-
-#: printer/main.pm:395
-#, c-format
-msgid ", printing to %s"
-msgstr "፣ ወደ %s በማተም ላይ"
-
-#: printer/main.pm:398
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: printer/main.pm:401
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: printer/main.pm:406
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: printer/main.pm:411
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: printer/main.pm:414
-#, c-format
-msgid ", using command %s"
-msgstr "፣ የ%s ትዕዛዝን በመጠቀም"
-
-#: printer/main.pm:429
-#, c-format
-msgid "Parallel port #%s"
-msgstr ""
-
-#: printer/main.pm:432 printer/printerdrake.pm:1466
-#: printer/printerdrake.pm:1493 printer/printerdrake.pm:1508
-#, fuzzy, c-format
-msgid "USB printer #%s"
-msgstr "የማተሚያው ትዕዛዝ፦ "
-
-#: printer/main.pm:434
-#, fuzzy, c-format
-msgid "USB printer"
-msgstr "የማተሚያው ትዕዛዝ፦ "
-
-#: printer/main.pm:438
-#, fuzzy, c-format
-msgid "HP printer on a parallel port"
-msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
-
-#: printer/main.pm:440
-#, fuzzy, c-format
-msgid "HP printer on USB"
-msgstr "ማተሚያ አልተገኘም!"
-
-#: printer/main.pm:442
-#, c-format
-msgid "HP printer on HP JetDirect"
-msgstr ""
-
-#: printer/main.pm:444
-#, fuzzy, c-format
-msgid "HP printer"
-msgstr "ማተሚያ"
-
-#: printer/main.pm:450
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr ""
-
-#: printer/main.pm:453
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr ""
-
-#: printer/main.pm:455
-#, c-format
-msgid "Multi-function device on USB"
-msgstr ""
-
-#: printer/main.pm:457
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr ""
-
-#: printer/main.pm:459
-#, c-format
-msgid "Multi-function device"
-msgstr ""
-
-#: printer/main.pm:463
-#, fuzzy, c-format
-msgid "Prints into %s"
-msgstr "አሁን ያለውን ፋይል ያትማል"
-
-#: printer/main.pm:466
-#, fuzzy, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "ማተሚያውን አልተገኘም።"
-
-#: printer/main.pm:469
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: printer/main.pm:474
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: printer/main.pm:479
-#, fuzzy, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "ማተሚያውን አልተገኘም።"
-
-#: printer/main.pm:482
-#, fuzzy, c-format
-msgid "Uses command %s"
-msgstr "የማተሚያው ትዕዛዝ፦ "
-
-#: printer/main.pm:484
-#, fuzzy, c-format
-msgid "URI: %s"
-msgstr "URI፦"
-
-#: printer/main.pm:689 printer/printerdrake.pm:1047
-#: printer/printerdrake.pm:3142
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: printer/main.pm:1309 printer/printerdrake.pm:211
-#: printer/printerdrake.pm:223
-#, fuzzy, c-format
-msgid "Local network(s)"
-msgstr "Name=መረብ"
-
-#: printer/main.pm:1311 printer/printerdrake.pm:227
-#, fuzzy, c-format
-msgid "Interface \"%s\""
-msgstr "የተጠቃሚው እይታ"
-
-#: printer/main.pm:1313
-#, fuzzy, c-format
-msgid "Network %s"
-msgstr "መረብ"
-
-#: printer/main.pm:1315
-#, fuzzy, c-format
-msgid "Host %s"
-msgstr "እንግዳ ተቀባይ፦"
-
-#: printer/main.pm:1344
-#, fuzzy, c-format
-msgid "%s (Port %s)"
-msgstr "&ፖርት፦"
-
-#: printer/main.pm:1945 printer/main.pm:2100
-#, c-format
-msgid "user-supplied"
-msgstr ""
-
-#: printer/main.pm:1949 printer/main.pm:2104
-#, c-format
-msgid "NEW"
-msgstr ""
-
-#: printer/printerdrake.pm:24
-#, c-format
-msgid ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"decompressing the self-extracting '.exe' file with the 'unzip' utility and "
-"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
-"printer' directory. There it will be found by the automatic uploader script "
-"and uploaded whenever the printer is connected and turned on.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:67
-#, fuzzy, c-format
-msgid "CUPS printer configuration"
-msgstr "የማተሚያውን ማስተካከያ በሚጭንበት ጊዜ ስህተት ተፈጥሯል"
-
-#: printer/printerdrake.pm:68
-#, c-format
-msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessible by remote machines and by which remote machines."
-msgstr ""
-
-#: printer/printerdrake.pm:69
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:72 printer/printerdrake.pm:506
-#: printer/printerdrake.pm:4542
-#, c-format
-msgid "Remote CUPS server and no local CUPS daemon"
-msgstr ""
-
-#: printer/printerdrake.pm:75
-#, fuzzy, c-format
-msgid "On"
-msgstr "ኦማን"
-
-#: printer/printerdrake.pm:77 printer/printerdrake.pm:498
-#: printer/printerdrake.pm:525
-#, c-format
-msgid "Off"
-msgstr "አጥፋ"
-
-#: printer/printerdrake.pm:78 printer/printerdrake.pm:507
-#, c-format
-msgid ""
-"In this mode the local CUPS daemon will be stopped and all printing requests "
-"go directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:84
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr ""
-
-#: printer/printerdrake.pm:89
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr ""
-
-#: printer/printerdrake.pm:94
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr ""
-
-#: printer/printerdrake.pm:96
-#, fuzzy, c-format
-msgid "Custom configuration"
-msgstr "የማስተካከያው አራሚ"
-
-#: printer/printerdrake.pm:101 standalone/scannerdrake:610
-#: standalone/scannerdrake:627
-#, fuzzy, c-format
-msgid "No remote machines"
-msgstr "(ስለ ቃላት አጻጻፍ አስተያየት የለም)"
-
-#: printer/printerdrake.pm:112
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr ""
-
-#: printer/printerdrake.pm:119
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-
-#: printer/printerdrake.pm:127
-#, c-format
-msgid "Japanese text printing mode"
-msgstr ""
-
-#: printer/printerdrake.pm:128
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in Japanese language. Only "
-"use this function if you really want to print text in Japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print Japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-
-#: printer/printerdrake.pm:135
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr ""
-
-#: printer/printerdrake.pm:137
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-
-#: printer/printerdrake.pm:161 printer/printerdrake.pm:236
-#, c-format
-msgid "Sharing of local printers"
-msgstr ""
-
-#: printer/printerdrake.pm:162
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-
-#: printer/printerdrake.pm:173
-#, fuzzy, c-format
-msgid "Add host/network"
-msgstr "የቀይ ባርኔታ መረብ"
-
-#: printer/printerdrake.pm:179
-#, c-format
-msgid "Edit selected host/network"
-msgstr ""
-
-#: printer/printerdrake.pm:188
-#, c-format
-msgid "Remove selected host/network"
-msgstr ""
-
-#: printer/printerdrake.pm:219 printer/printerdrake.pm:229
-#: printer/printerdrake.pm:241 printer/printerdrake.pm:248
-#: printer/printerdrake.pm:279 printer/printerdrake.pm:297
-#, c-format
-msgid "IP address of host/network:"
-msgstr ""
-
-#: printer/printerdrake.pm:237
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr ""
-
-#: printer/printerdrake.pm:244
-#, c-format
-msgid "Host/network IP address missing."
-msgstr ""
-
-#: printer/printerdrake.pm:252
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:253 printer/printerdrake.pm:429
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr ""
-
-#: printer/printerdrake.pm:277
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:346 printer/printerdrake.pm:416
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr ""
-
-#: printer/printerdrake.pm:347
-#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
-
-#: printer/printerdrake.pm:358
-#, c-format
-msgid "Add server"
-msgstr "ተጠሪ ጨምር"
-
-#: printer/printerdrake.pm:364
-#, c-format
-msgid "Edit selected server"
-msgstr "የተመረጠውን ተጠሪ ይጠቀም"
-
-#: printer/printerdrake.pm:373
-#, fuzzy, c-format
-msgid "Remove selected server"
-msgstr "የተመረጠውን ተጠሪ ይጠቀም"
-
-#: printer/printerdrake.pm:417
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-
-#: printer/printerdrake.pm:418
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr ""
-
-#: printer/printerdrake.pm:422
-#, fuzzy, c-format
-msgid "Server IP missing!"
-msgstr "ከፍተኛ የጠፉ ቃላት ቁጥር"
-
-#: printer/printerdrake.pm:428
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:440 printer/printerdrake.pm:2133
-#, c-format
-msgid "The port number should be an integer!"
-msgstr ""
-
-#: printer/printerdrake.pm:451
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:462 printer/printerdrake.pm:2160
-#: standalone/drakups:249 standalone/harddrake2:52
-#, c-format
-msgid "Port"
-msgstr "ፖርት"
-
-#: printer/printerdrake.pm:495 printer/printerdrake.pm:511
-#: printer/printerdrake.pm:526 printer/printerdrake.pm:530
-#: printer/printerdrake.pm:536
-#, c-format
-msgid "On, Name or IP of remote server:"
-msgstr ""
-
-#: printer/printerdrake.pm:514 printer/printerdrake.pm:4551
-#: printer/printerdrake.pm:4617
-#, c-format
-msgid "CUPS server name or IP address missing."
-msgstr ""
-
-#: printer/printerdrake.pm:566 printer/printerdrake.pm:586
-#: printer/printerdrake.pm:811 printer/printerdrake.pm:880
-#: printer/printerdrake.pm:901 printer/printerdrake.pm:927
-#: printer/printerdrake.pm:1023 printer/printerdrake.pm:1065
-#: printer/printerdrake.pm:1075 printer/printerdrake.pm:1110
-#: printer/printerdrake.pm:2220 printer/printerdrake.pm:2490
-#: printer/printerdrake.pm:2524 printer/printerdrake.pm:2575
-#: printer/printerdrake.pm:2582 printer/printerdrake.pm:2621
-#: printer/printerdrake.pm:2663 printer/printerdrake.pm:2700
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2984
-#: printer/printerdrake.pm:2989 printer/printerdrake.pm:3137
-#: printer/printerdrake.pm:3248 printer/printerdrake.pm:3862
-#: printer/printerdrake.pm:3929 printer/printerdrake.pm:3978
-#: printer/printerdrake.pm:3981 printer/printerdrake.pm:4091
-#: printer/printerdrake.pm:4149 printer/printerdrake.pm:4221
-#: printer/printerdrake.pm:4242 printer/printerdrake.pm:4252
-#: printer/printerdrake.pm:4342 printer/printerdrake.pm:4437
-#: printer/printerdrake.pm:4443 printer/printerdrake.pm:4471
-#: printer/printerdrake.pm:4578 printer/printerdrake.pm:4687
-#: printer/printerdrake.pm:4707 printer/printerdrake.pm:4716
-#: printer/printerdrake.pm:4731 printer/printerdrake.pm:4932
-#: printer/printerdrake.pm:5407 printer/printerdrake.pm:5490
-#: standalone/printerdrake:75 standalone/printerdrake:590
-#, c-format
-msgid "Printerdrake"
-msgstr ""
-
-#: printer/printerdrake.pm:567 printer/printerdrake.pm:4150
-#: printer/printerdrake.pm:4688
-#, fuzzy, c-format
-msgid "Reading printer data..."
-msgstr "GHex (%s)፦ ዳታ ፈልግ"
-
-#: printer/printerdrake.pm:587
-#, fuzzy, c-format
-msgid "Restarting CUPS..."
-msgstr "የCUPS ተጠሪ"
-
-#: printer/printerdrake.pm:614
-#, c-format
-msgid ""
-"Allow pop-up windows, printer setup and package installation may be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:616
-#, c-format
-msgid ""
-"No pop-up windows, printer setup and package installation cannot be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:622
-#, fuzzy, c-format
-msgid "Printer auto administration"
-msgstr "ማተሚያውን አልተገኘም።"
-
-#: printer/printerdrake.pm:623
-#, c-format
-msgid ""
-"Here you can configure printer administration tasks which should be done "
-"automatically."
-msgstr ""
-
-#: printer/printerdrake.pm:626
-#, fuzzy, c-format
-msgid "Do automatic configuration of new printers"
-msgstr "ራስ-ገዝ ትርጉሞች"
-
-#: printer/printerdrake.pm:627 printer/printerdrake.pm:641
-#, c-format
-msgid "when a USB printer is connected and turned on"
-msgstr ""
-
-#: printer/printerdrake.pm:630
-#, fuzzy, c-format
-msgid "when Printerdrake is started"
-msgstr "ይህ ክፋይ መጠነ ተስተካካይ አይደለም"
-
-#: printer/printerdrake.pm:634
-#, c-format
-msgid "Mode for automatic printer setup:"
-msgstr ""
-
-#: printer/printerdrake.pm:640
-#, fuzzy, c-format
-msgid "Re-enable disabled printers"
-msgstr "የተገኙት ማተሚያዎች"
-
-#: printer/printerdrake.pm:644
-#, fuzzy, c-format
-msgid "when the printing system is started"
-msgstr "የሕትመቱን ምርጫዎች ለውጥ"
-
-#: printer/printerdrake.pm:680
-#, fuzzy, c-format
-msgid "Communication error handling for the printer \"%s\""
-msgstr "ማተሚያውን አልተገኘም።"
-
-#: printer/printerdrake.pm:682
-#, c-format
-msgid ""
-"Here you can configure how errors during the communication between your "
-"computer and the printer \"%s\" should be handled (for example if the "
-"printer is not turned on)."
-msgstr ""
-
-#: printer/printerdrake.pm:686
-#, c-format
-msgid "The number of retries should be an integer number of at least 1!"
-msgstr ""
-
-#: printer/printerdrake.pm:690
-#, c-format
-msgid "The delay between retries should be a positive integer number!"
-msgstr ""
-
-#: printer/printerdrake.pm:701
-#, fuzzy, c-format
-msgid "Do not disable the printer"
-msgstr "ስለተጠሪ መረጃ"
-
-#: printer/printerdrake.pm:704
-#, c-format
-msgid "Retry infinitely often"
-msgstr ""
-
-#: printer/printerdrake.pm:707
-#, fuzzy, c-format
-msgid "Number of retries"
-msgstr "የዐምድ ብዛት"
-
-#: printer/printerdrake.pm:712
-#, c-format
-msgid "Delay between retries (in sec)"
-msgstr ""
-
-#: printer/printerdrake.pm:745 printer/printerdrake.pm:765
-#, fuzzy, c-format
-msgid "Select Printer Connection"
-msgstr "የማተሚያውን ሞዴል ምረጡ"
-
-#: printer/printerdrake.pm:746
-#, c-format
-msgid "How is the printer connected?"
-msgstr ""
-
-#: printer/printerdrake.pm:748
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-
-#: printer/printerdrake.pm:751 printer/printerdrake.pm:4934
-#, c-format
-msgid ""
-"\n"
-"WARNING: No local network connection active, remote printers can neither be "
-"detected nor tested!"
-msgstr ""
-
-#: printer/printerdrake.pm:758
-#, c-format
-msgid ""
-"Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"
-msgstr ""
-
-#: printer/printerdrake.pm:760
-#, c-format
-msgid "Modify timeout for network printer auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:766
-#, c-format
-msgid "Enter the timeout for network printer auto-detection (in msec) here. "
-msgstr ""
-
-#: printer/printerdrake.pm:768
-#, c-format
-msgid ""
-"The longer you choose the timeout, the more reliable the detections of "
-"network printers will be, but the scan can take longer then, especially if "
-"there are many machines with local firewalls in the network. "
-msgstr ""
-
-#: printer/printerdrake.pm:772
-#, c-format
-msgid "The timeout must be a positive integer number!"
-msgstr ""
-
-#: printer/printerdrake.pm:811
-#, fuzzy, c-format
-msgid "Checking your system..."
-msgstr "የሲስተም ሜኑ አሳይ (_S)"
-
-#: printer/printerdrake.pm:829
-#, c-format
-msgid "and one unknown printer"
-msgstr ""
-
-#: printer/printerdrake.pm:831
-#, fuzzy, c-format
-msgid "and %d unknown printers"
-msgstr "ያልታወቀ መስመር መስቆሚያ"
-
-#: printer/printerdrake.pm:835
-#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-
-#: printer/printerdrake.pm:837
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-
-#: printer/printerdrake.pm:838
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-
-#: printer/printerdrake.pm:842
-#, c-format
-msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
-
-#: printer/printerdrake.pm:843
-#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
-
-#: printer/printerdrake.pm:846
-#, c-format
-msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr ""
-
-#: printer/printerdrake.pm:849
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr ""
-
-#: printer/printerdrake.pm:862
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
-
-#: printer/printerdrake.pm:863
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr ""
-
-#: printer/printerdrake.pm:865
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr ""
-
-#: printer/printerdrake.pm:866
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr ""
-
-#: printer/printerdrake.pm:867
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
-
-#: printer/printerdrake.pm:884
-#, c-format
-msgid "Do not setup printer automatically now, and never do it again"
-msgstr ""
-
-#: printer/printerdrake.pm:928
-#, c-format
-msgid "Searching for new printers..."
-msgstr ""
-
-#: printer/printerdrake.pm:976
-#, c-format
-msgid "Do not setup printer automatically again"
-msgstr ""
-
-#: printer/printerdrake.pm:983
-#, fuzzy, c-format
-msgid "New printers found"
-msgstr "ማተሚያ አልተገኘም!"
-
-#: printer/printerdrake.pm:984
-#, fuzzy, c-format
-msgid "New printer found"
-msgstr "ማተሚያ አልተገኘም!"
-
-#: printer/printerdrake.pm:986
-#, c-format
-msgid ""
-"The following new printers were found and Printerdrake can automatically set "
-"them up for you. If you do not want to have all of them set up, unselect the "
-"ones which should be skipped, or click \"Cancel\" to set up none of them.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:987
-#, c-format
-msgid ""
-"The following new printer was found and printerdrake can automatically set "
-"it up for you. If you do not want to have it set up, unselect it, or click "
-"\"Cancel\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:988
-#, c-format
-msgid ""
-"Note that for certain printer models additional packages need to be "
-"installed. So keep your installation media handy.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1024 printer/printerdrake.pm:1066
-#, fuzzy, c-format
-msgid "Configuring printer on %s..."
-msgstr "የማተሚያው ትዕዛዝ፦ "
-
-#: printer/printerdrake.pm:1049
-#, c-format
-msgid "("
-msgstr "("
-
-#: printer/printerdrake.pm:1050
-#, c-format
-msgid " on "
-msgstr "አብራ"
-
-#: printer/printerdrake.pm:1051 standalone/scannerdrake:137
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: printer/printerdrake.pm:1056 printer/printerdrake.pm:3149
-#, fuzzy, c-format
-msgid "Printer model selection"
-msgstr "የማተሚያውን ሞዴል ምረጡ"
-
-#: printer/printerdrake.pm:1057 printer/printerdrake.pm:3150
-#, c-format
-msgid "Which printer model do you have?"
-msgstr ""
-
-#: printer/printerdrake.pm:1058
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-
-#: printer/printerdrake.pm:1061 printer/printerdrake.pm:3155
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: printer/printerdrake.pm:1076 printer/printerdrake.pm:4708
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "የማተሚያው ትዕዛዝ፦ "
-
-#: printer/printerdrake.pm:1111
-#, c-format
-msgid ""
-"Now you have turned off automatic printer setup.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1112
-#, c-format
-msgid ""
-"You can turn it back on again by choosing \"%s\" -> \"%s\" in Printerdrake's "
-"main menu. "
-msgstr ""
-
-#: printer/printerdrake.pm:1112 printer/printerdrake.pm:4984
-#, fuzzy, c-format
-msgid "Configure Auto Administration"
-msgstr "የደህንነት ተቆጣጣሪ"
-
-#: printer/printerdrake.pm:1113
-#, c-format
-msgid ""
-"There you can also choose in which situation automatic printer setup is done "
-"(On Printerdrake startup, on printing system startup, when connecting a new "
-"USB printer)."
-msgstr ""
-
-#: printer/printerdrake.pm:1261 printer/printerdrake.pm:1273
-#: printer/printerdrake.pm:1380 printer/printerdrake.pm:2401
-#: printer/printerdrake.pm:2460 printer/printerdrake.pm:2556
-#: printer/printerdrake.pm:4951 printer/printerdrake.pm:5138
-#, c-format
-msgid "Add a new printer"
-msgstr "አዲስ ማተሚያ ጨምር"
-
-#: printer/printerdrake.pm:1262
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: printer/printerdrake.pm:1275
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected. Also your network printer(s) and your Windows "
-"machines must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you do not "
-"need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1284
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1292
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you do not need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1301
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1352
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr ""
-
-#: printer/printerdrake.pm:1355
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr ""
-
-#: printer/printerdrake.pm:1358
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
-
-#: printer/printerdrake.pm:1361
-#, fuzzy, c-format
-msgid "No auto-detection"
-msgstr "ማተሚያውን አልተገኘም።"
-
-#: printer/printerdrake.pm:1381
-#, c-format
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the %s Control Center."
-msgstr ""
-
-#: printer/printerdrake.pm:1417 printer/printerdrake.pm:1641
-#: printer/printerdrake.pm:1704 printer/printerdrake.pm:1796
-#: printer/printerdrake.pm:1934 printer/printerdrake.pm:2010
-#: printer/printerdrake.pm:2177 printer/printerdrake.pm:2268
-#: printer/printerdrake.pm:2277 printer/printerdrake.pm:2286
-#: printer/printerdrake.pm:2297 printer/printerdrake.pm:2496
-#: printer/printerdrake.pm:2633
-#, c-format
-msgid "Could not install the %s packages!"
-msgstr "የ%s ጥቅሎችን መትከል አልተቻለም!"
-
-#: printer/printerdrake.pm:1419
-#, c-format
-msgid "Skipping Windows/SMB server auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:1425 printer/printerdrake.pm:1564
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, fuzzy, c-format
-msgid "Printer auto-detection"
-msgstr "ማተሚያውን አልተገኘም።"
-
-#: printer/printerdrake.pm:1425
-#, c-format
-msgid "Detecting devices..."
-msgstr ""
-
-#: printer/printerdrake.pm:1451
-#, fuzzy, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr "ማተሚያውን አልተገኘም።"
-
-#: printer/printerdrake.pm:1454
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ""
-
-#: printer/printerdrake.pm:1458
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "አውቶማቲካሊ ተፈልጎ የተገኘ"
-
-#: printer/printerdrake.pm:1463 printer/printerdrake.pm:1490
-#: printer/printerdrake.pm:1505
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr ""
-
-#: printer/printerdrake.pm:1469
-#, fuzzy, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "ማተሚያውን አልተገኘም።"
-
-#: printer/printerdrake.pm:1472
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ""
-
-#: printer/printerdrake.pm:1550
-#, fuzzy, c-format
-msgid "Local Printer"
-msgstr "የማተሚያው ትዕዛዝ፦ "
-
-#: printer/printerdrake.pm:1551
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: printer/printerdrake.pm:1555
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr ""
-
-#: printer/printerdrake.pm:1565
-#, c-format
-msgid "No printer found!"
-msgstr "ማተሚያ አልተገኘም!"
-
-#: printer/printerdrake.pm:1573
-#, c-format
-msgid "Local Printers"
-msgstr "የቅርብ ማተሚያዎች"
-
-#: printer/printerdrake.pm:1574
-#, c-format
-msgid "Available printers"
-msgstr "የተገኙት ማተሚያዎች"
-
-#: printer/printerdrake.pm:1578 printer/printerdrake.pm:1587
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr ""
-
-#: printer/printerdrake.pm:1580
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1581
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1582 printer/printerdrake.pm:1591
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr ""
-
-#: printer/printerdrake.pm:1584
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1585
-#, c-format
-msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1589
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: printer/printerdrake.pm:1590
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr ""
-
-#: printer/printerdrake.pm:1593
-#, c-format
-msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
-msgstr ""
-
-#: printer/printerdrake.pm:1594
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr ""
-
-#: printer/printerdrake.pm:1596
-#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1597
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr ""
-
-#: printer/printerdrake.pm:1599
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: printer/printerdrake.pm:1603
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr ""
-
-#: printer/printerdrake.pm:1643 printer/printerdrake.pm:1706
-#: printer/printerdrake.pm:1798 printer/printerdrake.pm:1936
-#: printer/printerdrake.pm:2012 printer/printerdrake.pm:2179
-#: printer/printerdrake.pm:2270 printer/printerdrake.pm:2279
-#: printer/printerdrake.pm:2288 printer/printerdrake.pm:2299
-#, c-format
-msgid "Aborting"
-msgstr "በማቋረጥ ላይ"
-
-#: printer/printerdrake.pm:1679
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr ""
-
-#: printer/printerdrake.pm:1680
-#, c-format
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-
-#: printer/printerdrake.pm:1681
-#, fuzzy, c-format
-msgid "Remote host name"
-msgstr "ህገ ወጥ የዶሴ ስም"
-
-#: printer/printerdrake.pm:1682
-#, fuzzy, c-format
-msgid "Remote printer name"
-msgstr "አዲስ የማተሚያ ስም"
-
-#: printer/printerdrake.pm:1685
-#, c-format
-msgid "Remote host name missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:1689
-#, c-format
-msgid "Remote printer name missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318 standalone/drakTermServ:475
-#: standalone/drakTermServ:807 standalone/drakTermServ:823
-#: standalone/drakTermServ:1653 standalone/drakTermServ:1662
-#: standalone/drakTermServ:1676 standalone/drakbackup:512
-#: standalone/drakbackup:618 standalone/drakbackup:653
-#: standalone/drakbackup:754 standalone/draknfs:203
-#: standalone/draksambashare:627 standalone/draksambashare:794
-#: standalone/harddrake2:275
-#, c-format
-msgid "Information"
-msgstr "መረጃ"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318
-#, fuzzy, c-format
-msgid "Detected model: %s %s"
-msgstr "<b>ሞዴል</b>፦ %s<br>"
-
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, fuzzy, c-format
-msgid "Scanning network..."
-msgstr "Name=መረብ"
-
-#: printer/printerdrake.pm:1814 printer/printerdrake.pm:1835
-#, fuzzy, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-
-#: printer/printerdrake.pm:1817 printer/printerdrake.pm:1838
-#, fuzzy, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-
-#: printer/printerdrake.pm:1859
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr ""
-
-#: printer/printerdrake.pm:1860
-#, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-
-#: printer/printerdrake.pm:1861
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-
-#: printer/printerdrake.pm:1863
-#, fuzzy, c-format
-msgid "SMB server host"
-msgstr "የተመረጠው ተጠሪ ይታረም"
-
-#: printer/printerdrake.pm:1864
-#, fuzzy, c-format
-msgid "SMB server IP"
-msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-
-#: printer/printerdrake.pm:1865 standalone/draksambashare:67
-#, c-format
-msgid "Share name"
-msgstr "የጋራ ስም"
-
-#: printer/printerdrake.pm:1868
-#, c-format
-msgid "Workgroup"
-msgstr "የስራ ቡድን"
-
-#: printer/printerdrake.pm:1870
-#, fuzzy, c-format
-msgid "Auto-detected"
-msgstr "አውቶማቲካሊ ተፈልጎ የተገኘ"
-
-#: printer/printerdrake.pm:1880
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: printer/printerdrake.pm:1884
-#, c-format
-msgid "Samba share name missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:1890
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "የደህንነት ማስጠንቀቂያ!"
-
-#: printer/printerdrake.pm:1891
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1901
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1904
-#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: printer/printerdrake.pm:1983
-#, fuzzy, c-format
-msgid "NetWare Printer Options"
-msgstr "ባለሁለት አቅጣጫ ምርጫዎች"
-
-#: printer/printerdrake.pm:1984
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-
-#: printer/printerdrake.pm:1985
-#, c-format
-msgid "Printer Server"
-msgstr "የማተሚያ ሰርቨር"
-
-#: printer/printerdrake.pm:1986
-#, fuzzy, c-format
-msgid "Print Queue Name"
-msgstr "ህገ ወጥ የዶሴ ስም"
-
-#: printer/printerdrake.pm:1991
-#, c-format
-msgid "NCP server name missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:1995
-#, c-format
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:2076 printer/printerdrake.pm:2097
-#, fuzzy, c-format
-msgid ", host \"%s\", port %s"
-msgstr "የእንግዳ ተቀባይ ስም"
-
-#: printer/printerdrake.pm:2079 printer/printerdrake.pm:2100
-#, fuzzy, c-format
-msgid "Host \"%s\", port %s"
-msgstr "የእንግዳ ተቀባይ ስም"
-
-#: printer/printerdrake.pm:2122
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr ""
-
-#: printer/printerdrake.pm:2124
-#, c-format
-msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
-msgstr ""
-
-#: printer/printerdrake.pm:2125
-#, c-format
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
-msgstr ""
-
-#: printer/printerdrake.pm:2129
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:2158
-#, c-format
-msgid "Printer host name or IP"
-msgstr ""
-
-#: printer/printerdrake.pm:2221
-#, c-format
-msgid "Refreshing Device URI list..."
-msgstr ""
-
-#: printer/printerdrake.pm:2224 printer/printerdrake.pm:2226
-#, fuzzy, c-format
-msgid "Printer Device URI"
-msgstr "ያልተደገፈ ጽሁፉ/uri፦ "
-
-#: printer/printerdrake.pm:2225
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: printer/printerdrake.pm:2249
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: printer/printerdrake.pm:2354
-#, fuzzy, c-format
-msgid "Pipe into command"
-msgstr "ማዘዣው አልተገኘም፦ "
-
-#: printer/printerdrake.pm:2355
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-
-#: printer/printerdrake.pm:2356
-#, c-format
-msgid "Command line"
-msgstr "ትእዛዝ መስጫ"
-
-#: printer/printerdrake.pm:2360
-#, c-format
-msgid "A command line must be entered!"
-msgstr ""
-
-#: printer/printerdrake.pm:2402
-#, c-format
-msgid "Your printer %s is currently connected %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2404 printer/printerdrake.pm:2411
-#, fuzzy, c-format
-msgid "to a parallel port"
-msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
-
-#: printer/printerdrake.pm:2405 printer/printerdrake.pm:2412
-#, c-format
-msgid "to the USB"
-msgstr ""
-
-#: printer/printerdrake.pm:2406 printer/printerdrake.pm:2413
-#, fuzzy, c-format
-msgid "via the network"
-msgstr "መረቡን በማቀራረብ ላይ"
-
-#: printer/printerdrake.pm:2407
-#, c-format
-msgid "This type of connection is currently not fully supported by HPLIP."
-msgstr ""
-
-#: printer/printerdrake.pm:2409
-#, c-format
-msgid "You get full HPLIP support for your device if you connect it "
-msgstr ""
-
-#: printer/printerdrake.pm:2415
-#, c-format
-msgid ""
-"You can now set up your device with HPLIP anyway (works in many cases), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "set it up without HPLIP (print-only), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, fuzzy, c-format
-msgid "or"
-msgstr "ሰዓት(ኦች)"
-
-#: printer/printerdrake.pm:2417
-#, c-format
-msgid "cancel the setup (for example to reconnect your device)."
-msgstr ""
-
-#: printer/printerdrake.pm:2419
-#, c-format
-msgid ""
-"You can always revise your choice by clicking your printer's entry in the "
-"main window, "
-msgstr ""
-
-#: printer/printerdrake.pm:2420
-#, c-format
-msgid "clicking the \"%s\" button, "
-msgstr ""
-
-#. -PO: "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: printer/printerdrake.pm:2420 standalone/drakperm:124 standalone/drakups:300
-#: standalone/drakups:360 standalone/drakups:380 standalone/drakvpn:319
-#: standalone/drakvpn:680 standalone/printerdrake:245
-#, c-format
-msgid "Edit"
-msgstr "አስተካክል"
-
-#: printer/printerdrake.pm:2421
-#, c-format
-msgid "and choosing \"%s\"."
-msgstr ""
-
-#: printer/printerdrake.pm:2421 printer/printerdrake.pm:5334
-#: printer/printerdrake.pm:5394
-#, fuzzy, c-format
-msgid "Printer connection type"
-msgstr "ጥሩው የፋይል ዓይነት"
-
-#: printer/printerdrake.pm:2423 standalone/logdrake:408
-#, c-format
-msgid "What do you want to do?"
-msgstr "ምን ማድረግ ይፈልጋሉ?"
-
-#: printer/printerdrake.pm:2424 printer/printerdrake.pm:2428
-#, c-format
-msgid "Set up with HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2425 printer/printerdrake.pm:2427
-#: printer/printerdrake.pm:2430
-#, c-format
-msgid "Set up without HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2461
-#, c-format
-msgid ""
-"On many HP printers there are special functions available, maintenance (ink "
-"level checking, nozzle cleaning. head alignment, ...) on all not too old "
-"inkjets, scanning on multi-function devices, and memory card access on "
-"printers with card readers. "
-msgstr ""
-
-#: printer/printerdrake.pm:2463
-#, c-format
-msgid ""
-"To access these extra functions on HP printers they must be set up with "
-"HPLIP (HP Linux Imaging and Printing). "
-msgstr ""
-
-#: printer/printerdrake.pm:2465
-#, c-format
-msgid "Do you want to use HPLIP (choose \"No\" for non-HP printers)? "
-msgstr ""
-
-#: printer/printerdrake.pm:2491
-#, fuzzy, c-format
-msgid "Installing %s package..."
-msgstr "ጥቅሎችን በመትከል ላይ..."
-
-#: printer/printerdrake.pm:2491 printer/printerdrake.pm:2497
-#: printer/printerdrake.pm:2525
-#, fuzzy, c-format
-msgid "HPLIP"
-msgstr "PL_IP"
-
-#: printer/printerdrake.pm:2498
-#, c-format
-msgid "Only printing will be possible on the %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2513
-#, c-format
-msgid "Could not remove your old HPOJ configuration file %s for your %s! "
-msgstr ""
-
-#: printer/printerdrake.pm:2515
-#, c-format
-msgid "Please remove the file manually and restart HPOJ."
-msgstr ""
-
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "Checking device and configuring %s..."
-msgstr ""
-
-#: printer/printerdrake.pm:2557
-#, fuzzy, c-format
-msgid "Which printer do you want to set up with HPLIP?"
-msgstr "%sን የት መትከል ይፈልጋሉ?"
-
-#: printer/printerdrake.pm:2576
-#, c-format
-msgid "HPLIP was not able to communicate with the chosen printer!"
-msgstr ""
-
-#: printer/printerdrake.pm:2577 printer/printerdrake.pm:2584
-#, fuzzy, c-format
-msgid "Setting up the printer without HPLIP..."
-msgstr "የፋይል ስም አቅድ"
-
-#: printer/printerdrake.pm:2583
-#, c-format
-msgid ""
-"HPLIP did not find any local printers (Parallel, USB) which it supports!"
-msgstr ""
-
-#: printer/printerdrake.pm:2622
-#, c-format
-msgid "Installing SANE packages..."
-msgstr ""
-
-#: printer/printerdrake.pm:2635
-#, c-format
-msgid "Scanning on the %s will not be possible."
-msgstr ""
-
-#: printer/printerdrake.pm:2650
-#, c-format
-msgid "Using and Maintaining your %s"
-msgstr ""
-
-#: printer/printerdrake.pm:2664
-#, fuzzy, c-format
-msgid "Configuring device..."
-msgstr "አገልግሎቶችን ሰይም"
-
-#: printer/printerdrake.pm:2701
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr ""
-
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2985
-#: printer/printerdrake.pm:3138
-#, fuzzy, c-format
-msgid "Reading printer database..."
-msgstr "የትርጉም-ማስታወሻ መረጃ-ባንክን አመንጭ።"
-
-#: printer/printerdrake.pm:2943
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr ""
-
-#: printer/printerdrake.pm:2947 printer/printerdrake.pm:4206
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-
-#: printer/printerdrake.pm:2953 printer/printerdrake.pm:4211
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: printer/printerdrake.pm:2960
-#, c-format
-msgid ""
-"The printer name \"%s\" has more than 12 characters which can make the "
-"printer unaccessible from Windows clients. Do you really want to use this "
-"name?"
-msgstr ""
-
-#: printer/printerdrake.pm:2969
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: printer/printerdrake.pm:2970
-#, c-format
-msgid "Name of printer"
-msgstr "የማተሚያ ስም፦"
-
-#: printer/printerdrake.pm:2971 standalone/drakconnect:592
-#: standalone/harddrake2:39 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Description"
-msgstr "መግለጫ"
-
-#: printer/printerdrake.pm:2972 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Location"
-msgstr "ቦታ"
-
-#: printer/printerdrake.pm:2990
-#, fuzzy, c-format
-msgid "Preparing printer database..."
-msgstr "የትርጉም-ማስታወሻ መረጃ-ባንክን አመንጭ።"
-
-#: printer/printerdrake.pm:3116
-#, c-format
-msgid "Your printer model"
-msgstr "ማተሚያው ሞዴል"
-
-#: printer/printerdrake.pm:3117
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: printer/printerdrake.pm:3122 printer/printerdrake.pm:3125
-#, fuzzy, c-format
-msgid "The model is correct"
-msgstr "ይህ ትክክል ነው?"
-
-#: printer/printerdrake.pm:3123 printer/printerdrake.pm:3124
-#: printer/printerdrake.pm:3127
-#, fuzzy, c-format
-msgid "Select model manually"
-msgstr "የማተሚያውን ሞዴል ምረጡ"
-
-#: printer/printerdrake.pm:3151
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
-msgstr ""
-
-#: printer/printerdrake.pm:3170
-#, c-format
-msgid "Install a manufacturer-supplied PPD file"
-msgstr ""
-
-#: printer/printerdrake.pm:3202
-#, c-format
-msgid ""
-"Every PostScript printer is delivered with a PPD file which describes the "
-"printer's options and features."
-msgstr ""
-
-#: printer/printerdrake.pm:3203
-#, c-format
-msgid ""
-"This file is usually somewhere on the CD with the Windows and Mac drivers "
-"delivered with the printer."
-msgstr ""
-
-#: printer/printerdrake.pm:3204
-#, c-format
-msgid "You can find the PPD files also on the manufacturer's web sites."
-msgstr ""
-
-#: printer/printerdrake.pm:3205
-#, c-format
-msgid ""
-"If you have Windows installed on your machine, you can find the PPD file on "
-"your Windows partition, too."
-msgstr ""
-
-#: printer/printerdrake.pm:3206
-#, c-format
-msgid ""
-"Installing the printer's PPD file and using it when setting up the printer "
-"makes all options of the printer available which are provided by the "
-"printer's hardware"
-msgstr ""
-
-#: printer/printerdrake.pm:3207
-#, c-format
-msgid ""
-"Here you can choose the PPD file to be installed on your machine, it will "
-"then be used for the setup of your printer."
-msgstr ""
-
-#: printer/printerdrake.pm:3209
-#, fuzzy, c-format
-msgid "Install PPD file from"
-msgstr "ከ &pot ሰነድ አሻሽል"
-
-#: printer/printerdrake.pm:3212 printer/printerdrake.pm:3220
-#: standalone/scannerdrake:183 standalone/scannerdrake:192
-#: standalone/scannerdrake:242 standalone/scannerdrake:250
-#, fuzzy, c-format
-msgid "Floppy Disk"
-msgstr "Name=መረጃ መያዣ"
-
-#: printer/printerdrake.pm:3213 printer/printerdrake.pm:3222
-#: standalone/scannerdrake:184 standalone/scannerdrake:194
-#: standalone/scannerdrake:243 standalone/scannerdrake:252
-#, fuzzy, c-format
-msgid "Other place"
-msgstr "ሌላ ምርጫዎች"
-
-#: printer/printerdrake.pm:3228
-#, fuzzy, c-format
-msgid "Select PPD file"
-msgstr "ጥሩው የፋይል ዓይነት"
-
-#: printer/printerdrake.pm:3232
-#, c-format
-msgid "The PPD file %s does not exist or is unreadable!"
-msgstr ""
-
-#: printer/printerdrake.pm:3238
-#, c-format
-msgid "The PPD file %s does not conform with the PPD specifications!"
-msgstr ""
-
-#: printer/printerdrake.pm:3249
-#, fuzzy, c-format
-msgid "Installing PPD file..."
-msgstr "ጥሩው የፋይል ዓይነት"
-
-#: printer/printerdrake.pm:3368
-#, fuzzy, c-format
-msgid "OKI winprinter configuration"
-msgstr "ተስተካክሎ የተቀመጠውን ባዕድ መነሻ ጥቀስ"
-
-#: printer/printerdrake.pm:3369
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: printer/printerdrake.pm:3394 printer/printerdrake.pm:3424
-#, fuzzy, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "ተስተካክሎ የተቀመጠውን ባዕድ መነሻ ጥቀስ"
-
-#: printer/printerdrake.pm:3395
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: printer/printerdrake.pm:3425
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-
-#: printer/printerdrake.pm:3435
-#, fuzzy, c-format
-msgid "Lexmark X125 configuration"
-msgstr "ተስተካክሎ የተቀመጠውን ባዕድ መነሻ ጥቀስ"
-
-#: printer/printerdrake.pm:3436
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes. Please connect "
-"your printer to a local USB port or configure it on the machine where it is "
-"connected to."
-msgstr ""
-
-#: printer/printerdrake.pm:3458
-#, fuzzy, c-format
-msgid "Samsung ML/QL-85G configuration"
-msgstr "የድምጽ ማስተካከያ"
-
-#: printer/printerdrake.pm:3459 printer/printerdrake.pm:3486
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected on the "
-"first parallel port, no printers on remote machines or print server boxes or "
-"on other parallel ports. Please connect your printer to the first parallel "
-"port or configure it on the machine where it is connected to."
-msgstr ""
-
-#: printer/printerdrake.pm:3485
-#, fuzzy, c-format
-msgid "Canon LBP-460/660 configuration"
-msgstr "የማስተካከያው አራሚ"
-
-#: printer/printerdrake.pm:3512
-#, fuzzy, c-format
-msgid "Canon LBP-810/1120 (CAPT) configuration"
-msgstr "የማስተካከያው አራሚ"
-
-#: printer/printerdrake.pm:3513
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes or on the parallel "
-"port. Please connect your printer to the USB or configure it on the machine "
-"where it is directly connected to."
-msgstr ""
-
-#: printer/printerdrake.pm:3520
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr ""
-
-#: printer/printerdrake.pm:3670
-#, c-format
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: printer/printerdrake.pm:3795
-#, fuzzy, c-format
-msgid "Printer default settings"
-msgstr "የተመረጠውን የማተሚያ ይዞታዎች አስተካክል"
-
-#: printer/printerdrake.pm:3802
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: printer/printerdrake.pm:3806
-#, fuzzy, c-format
-msgid "Option %s must be a number!"
-msgstr "(%f በሰነድ-ስም ይተካል፤ %l በመስመር ቁጥር)"
-
-#: printer/printerdrake.pm:3810
-#, fuzzy, c-format
-msgid "Option %s out of range!"
-msgstr "/ተመልከት/ከርቀት እይታ"
-
-#: printer/printerdrake.pm:3862
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-
-#: printer/printerdrake.pm:3878
-#, fuzzy, c-format
-msgid "Test pages"
-msgstr "የገጾች ብዛት"
-
-#: printer/printerdrake.pm:3879
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: printer/printerdrake.pm:3883
-#, fuzzy, c-format
-msgid "No test pages"
-msgstr "(ስለ ቃላት አጻጻፍ አስተያየት የለም)"
-
-#: printer/printerdrake.pm:3884
-#, c-format
-msgid "Print"
-msgstr "አትም"
-
-#: printer/printerdrake.pm:3909
-#, fuzzy, c-format
-msgid "Standard test page"
-msgstr "እንደ ድረ ገጽ"
-
-#: printer/printerdrake.pm:3912
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: printer/printerdrake.pm:3915
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr ""
-
-#: printer/printerdrake.pm:3917
-#, fuzzy, c-format
-msgid "Photo test page"
-msgstr "እንደ ድረ ገጽ"
-
-#: printer/printerdrake.pm:3930
-#, fuzzy, c-format
-msgid "Printing test page(s)..."
-msgstr "የገጽ አቀማመጡን ለማተም ሰይም"
-
-#: printer/printerdrake.pm:3950
-#, c-format
-msgid "Skipping photo test page."
-msgstr ""
-
-#: printer/printerdrake.pm:3967
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:3971
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:3981
-#, c-format
-msgid "Did it work properly?"
-msgstr ""
-
-#: printer/printerdrake.pm:4005
-#, fuzzy, c-format
-msgid "Raw printer"
-msgstr "የማተሚያው ትዕዛዝ፦ "
-
-#: printer/printerdrake.pm:4027
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4029
-#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4032 printer/printerdrake.pm:4049
-#: printer/printerdrake.pm:4059
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: printer/printerdrake.pm:4035 printer/printerdrake.pm:4075
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4039
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4044 printer/printerdrake.pm:4054
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4046 printer/printerdrake.pm:4056
-#: printer/printerdrake.pm:4066
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4051 printer/printerdrake.pm:4061
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: printer/printerdrake.pm:4064
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4068
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4072
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4081
-#, fuzzy, c-format
-msgid "Using/Maintaining the printer \"%s\""
-msgstr "ማተሚያውን አልተገኘም።"
-
-#: printer/printerdrake.pm:4082
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "ማተሚያውን አልተገኘም።"
-
-#: printer/printerdrake.pm:4088
-#, fuzzy, c-format
-msgid "Print option list"
-msgstr "የአሁኑ ዝርዝር መለያ"
-
-#: printer/printerdrake.pm:4092
-#, fuzzy, c-format
-msgid "Printing option list..."
-msgstr "የአሁኑ ዝርዝር መለያ"
-
-#: printer/printerdrake.pm:4110
-#, c-format
-msgid ""
-"Your %s is set up with HP's HPLIP driver software. This way many special "
-"features of your printer are supported.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4113
-#, c-format
-msgid ""
-"The scanner in your printer can be used with the usual SANE software, for "
-"example Kooka or XSane (Both in the Multimedia/Graphics menu). "
-msgstr ""
-
-#: printer/printerdrake.pm:4114
-#, c-format
-msgid ""
-"Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to "
-"share your scanner on the network.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4118
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed like a usual USB "
-"mass storage device. "
-msgstr ""
-
-#: printer/printerdrake.pm:4119
-#, c-format
-msgid ""
-"After inserting a card a hard disk icon to access the card should appear on "
-"your desktop.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4121
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed using HP's Printer "
-"Toolbox (Menu: System/Monitoring/HP Printer Toolbox) clicking the \"Access "
-"Photo Cards...\" button on the \"Functions\" tab. "
-msgstr ""
-
-#: printer/printerdrake.pm:4122
-#, c-format
-msgid ""
-"Note that this is very slow, reading the pictures from the camera or a USB "
-"card reader is usually faster.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4125
-#, c-format
-msgid ""
-"HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a "
-"lot of status monitoring and maintenance functions for your %s:\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4126
-#, c-format
-msgid " - Ink level/status info\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4127
-#, c-format
-msgid " - Ink nozzle cleaning\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4128
-#, fuzzy, c-format
-msgid " - Print head alignment\n"
-msgstr "የአግድም ኩልኩል፦"
-
-#: printer/printerdrake.pm:4129
-#, fuzzy, c-format
-msgid " - Color calibration\n"
-msgstr "የቀለም ምርጫ"
-
-#: printer/printerdrake.pm:4170 printer/printerdrake.pm:4197
-#: printer/printerdrake.pm:4232
-#, fuzzy, c-format
-msgid "Transfer printer configuration"
-msgstr "የማተሚያውን ማስተካከያ በሚጭንበት ጊዜ ስህተት ተፈጥሯል"
-
-#: printer/printerdrake.pm:4171
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4174
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4176
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4178
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4180
-#, c-format
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: printer/printerdrake.pm:4181
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: printer/printerdrake.pm:4182
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: printer/printerdrake.pm:4185
-#, fuzzy, c-format
-msgid "Do not transfer printers"
-msgstr "ዶሴዎቹ የሉም"
-
-#: printer/printerdrake.pm:4186 printer/printerdrake.pm:4202
-#, c-format
-msgid "Transfer"
-msgstr "ይተላለፍ"
-
-#: printer/printerdrake.pm:4198
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: printer/printerdrake.pm:4219
-#, c-format
-msgid "New printer name"
-msgstr "አዲስ የማተሚያ ስም"
-
-#: printer/printerdrake.pm:4222
-#, c-format
-msgid "Transferring %s..."
-msgstr ""
-
-#: printer/printerdrake.pm:4233
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: printer/printerdrake.pm:4243
-#, fuzzy, c-format
-msgid "Refreshing printer data..."
-msgstr "GHex (%s)፦ ዳታ ፈልግ"
-
-#: printer/printerdrake.pm:4253
-#, fuzzy, c-format
-msgid "Starting network..."
-msgstr "Name=መረብ"
-
-#: printer/printerdrake.pm:4296 printer/printerdrake.pm:4300
-#: printer/printerdrake.pm:4302
-#, fuzzy, c-format
-msgid "Configure the network now"
-msgstr "መልዕክቶችን አሁን አምጣ"
-
-#: printer/printerdrake.pm:4297
-#, c-format
-msgid "Network functionality not configured"
-msgstr ""
-
-#: printer/printerdrake.pm:4298
-#, c-format
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: printer/printerdrake.pm:4301
-#, c-format
-msgid "Go on without configuring the network"
-msgstr ""
-
-#: printer/printerdrake.pm:4332
-#, c-format
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network is accessible after booting your "
-"system and correct the configuration using the %s Control Center, section "
-"\"Network & Internet\"/\"Connection\", and afterwards set up the printer, "
-"also using the %s Control Center, section \"Hardware\"/\"Printer\""
-msgstr ""
-
-#: printer/printerdrake.pm:4333
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: printer/printerdrake.pm:4343
-#, fuzzy, c-format
-msgid "Restarting printing system..."
-msgstr "የሲስተም ሜኑ አሳይ (_S)"
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "high"
-msgstr "ከፍ ያለ"
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "paranoid"
-msgstr ""
-
-#: printer/printerdrake.pm:4376
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: printer/printerdrake.pm:4377
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessible by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: printer/printerdrake.pm:4413
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr ""
-
-#: printer/printerdrake.pm:4414
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: printer/printerdrake.pm:4437
-#, fuzzy, c-format
-msgid "Checking installed software..."
-msgstr "ስለ የ&GNU ነጻ ሶፍትዌር"
-
-#: printer/printerdrake.pm:4443
-#, c-format
-msgid "Removing %s..."
-msgstr ""
-
-#: printer/printerdrake.pm:4447
-#, c-format
-msgid "Could not remove the %s printing system!"
-msgstr ""
-
-#: printer/printerdrake.pm:4471
-#, c-format
-msgid "Installing %s..."
-msgstr ""
-
-#: printer/printerdrake.pm:4475
-#, c-format
-msgid "Could not install the %s printing system!"
-msgstr ""
-
-#: printer/printerdrake.pm:4543
-#, c-format
-msgid ""
-"In this mode there is no local printing system, all printing requests go "
-"directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:4545
-#, c-format
-msgid ""
-"Enter the host name or IP of your CUPS server and click OK if you want to "
-"use this mode, click \"Quit\" otherwise."
-msgstr ""
-
-#: printer/printerdrake.pm:4559
-#, c-format
-msgid "Name or IP of remote server:"
-msgstr ""
-
-#: printer/printerdrake.pm:4579
-#, fuzzy, c-format
-msgid "Setting Default Printer..."
-msgstr "ማተሚያውን አልተገኘም።"
-
-#: printer/printerdrake.pm:4599
-#, c-format
-msgid "Local CUPS printing system or remote CUPS server?"
-msgstr ""
-
-#: printer/printerdrake.pm:4600
-#, c-format
-msgid "The CUPS printing system can be used in two ways: "
-msgstr ""
-
-#: printer/printerdrake.pm:4602
-#, c-format
-msgid "1. The CUPS printing system can run locally. "
-msgstr ""
-
-#: printer/printerdrake.pm:4603
-#, c-format
-msgid ""
-"Then locally connected printers can be used and remote printers on other "
-"CUPS servers in the same network are automatically discovered. "
-msgstr ""
-
-#: printer/printerdrake.pm:4604
-#, c-format
-msgid ""
-"Disadvantage of this approach is, that more resources on the local machine "
-"are needed: Additional software packages need to be installed, the CUPS "
-"daemon has to run in the background and needs some memory, and the IPP port "
-"(port 631) is opened. "
-msgstr ""
-
-#: printer/printerdrake.pm:4606
-#, c-format
-msgid "2. All printing requests are immediately sent to a remote CUPS server. "
-msgstr ""
-
-#: printer/printerdrake.pm:4607
-#, c-format
-msgid ""
-"Here local resource occupation is reduced to a minimum. No CUPS daemon is "
-"started or port opened, no software infrastructure for setting up local "
-"print queues is installed, so less memory and disk space is used. "
-msgstr ""
-
-#: printer/printerdrake.pm:4608
-#, c-format
-msgid ""
-"Disadvantage is that it is not possible to define local printers then and if "
-"the specified server is down it cannot be printed at all from this machine. "
-msgstr ""
-
-#: printer/printerdrake.pm:4610
-#, c-format
-msgid "How should CUPS be set up on your machine?"
-msgstr ""
-
-#: printer/printerdrake.pm:4614 printer/printerdrake.pm:4629
-#: printer/printerdrake.pm:4633 printer/printerdrake.pm:4639
-#, c-format
-msgid "Remote server, specify Name or IP here:"
-msgstr ""
-
-#: printer/printerdrake.pm:4628
-#, fuzzy, c-format
-msgid "Local CUPS printing system"
-msgstr "የሕትመቱን ምርጫዎች ለውጥ"
-
-#: printer/printerdrake.pm:4667
-#, fuzzy, c-format
-msgid "Select Printer Spooler"
-msgstr "የማተሚያውን ሞዴል ምረጡ"
-
-#: printer/printerdrake.pm:4668
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr ""
-
-#: printer/printerdrake.pm:4717
-#, fuzzy, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "የባሕር-መዝገብ እሴት '%s' ወደ '%s' እንደገና መሰየም አልተቻለም።"
-
-#: printer/printerdrake.pm:4732
-#, c-format
-msgid "Installing Foomatic..."
-msgstr ""
-
-#: printer/printerdrake.pm:4738
-#, c-format
-msgid "Could not install %s packages, %s cannot be started!"
-msgstr ""
-
-#: printer/printerdrake.pm:4933
-#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it. "
-msgstr ""
-
-#: printer/printerdrake.pm:4963
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr ""
-
-#: printer/printerdrake.pm:4964
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: printer/printerdrake.pm:4975
-#, fuzzy, c-format
-msgid "CUPS configuration"
-msgstr "የማስተካከያው አራሚ"
-
-#: printer/printerdrake.pm:4996
-#, fuzzy, c-format
-msgid "Change the printing system"
-msgstr "የሕትመቱን ምርጫዎች ለውጥ"
-
-#: printer/printerdrake.pm:5005
-#, fuzzy, c-format
-msgid "Normal Mode"
-msgstr "የመሸፈኛ ዘዴ"
-
-#: printer/printerdrake.pm:5006
-#, fuzzy, c-format
-msgid "Expert Mode"
-msgstr "የመሸፈኛ ዘዴ"
-
-#: printer/printerdrake.pm:5284 printer/printerdrake.pm:5340
-#: printer/printerdrake.pm:5426 printer/printerdrake.pm:5435
-#, c-format
-msgid "Printer options"
-msgstr "የአታሚ ምርጫዎች"
-
-#: printer/printerdrake.pm:5320
-#, fuzzy, c-format
-msgid "Modify printer configuration"
-msgstr "የማተሚያውን ማስተካከያ በሚጭንበት ጊዜ ስህተት ተፈጥሯል"
-
-#: printer/printerdrake.pm:5322
-#, c-format
-msgid ""
-"Printer %s%s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-
-#: printer/printerdrake.pm:5327
-#, fuzzy, c-format
-msgid "This printer is disabled"
-msgstr "ይህ ክፋይ መጠነ ተስተካካይ አይደለም"
-
-#: printer/printerdrake.pm:5329
-#, c-format
-msgid "Do it!"
-msgstr "ይደረግ!"
-
-#: printer/printerdrake.pm:5335 printer/printerdrake.pm:5400
-#, c-format
-msgid "Printer name, description, location"
-msgstr ""
-
-#: printer/printerdrake.pm:5337 printer/printerdrake.pm:5419
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: printer/printerdrake.pm:5338 printer/printerdrake.pm:5420
-#, fuzzy, c-format
-msgid "Printer manufacturer, model"
-msgstr "የማተሚያውን ሞዴል ምረጡ"
-
-#: printer/printerdrake.pm:5342 printer/printerdrake.pm:5430
-#, c-format
-msgid "Set this printer as the default"
-msgstr ""
-
-#: printer/printerdrake.pm:5347 printer/printerdrake.pm:5436
-#: printer/printerdrake.pm:5438 printer/printerdrake.pm:5447
-#, fuzzy, c-format
-msgid "Enable Printer"
-msgstr "ስለተጠሪ መረጃ"
-
-#: printer/printerdrake.pm:5350 printer/printerdrake.pm:5441
-#: printer/printerdrake.pm:5442 printer/printerdrake.pm:5444
-#, fuzzy, c-format
-msgid "Disable Printer"
-msgstr "ስለተጠሪ መረጃ"
-
-#: printer/printerdrake.pm:5354 printer/printerdrake.pm:5448
-#, fuzzy, c-format
-msgid "Printer communication error handling"
-msgstr "ጥሩው የፋይል ዓይነት"
-
-#: printer/printerdrake.pm:5355 printer/printerdrake.pm:5452
-#, fuzzy, c-format
-msgid "Print test pages"
-msgstr "አቢወርድ፦ የህትመት ቅድመ ዕይታ"
-
-#: printer/printerdrake.pm:5356 printer/printerdrake.pm:5454
-#, c-format
-msgid "Learn how to use this printer"
-msgstr ""
-
-#: printer/printerdrake.pm:5357 printer/printerdrake.pm:5456
-#, fuzzy, c-format
-msgid "Remove printer"
-msgstr "የማተሚያው ትዕዛዝ፦ "
-
-#: printer/printerdrake.pm:5408
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "ማተሚያውን አልተገኘም።"
-
-#: printer/printerdrake.pm:5439
-#, fuzzy, c-format
-msgid "Printer \"%s\" is now enabled."
-msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-
-#: printer/printerdrake.pm:5445
-#, fuzzy, c-format
-msgid "Printer \"%s\" is now disabled."
-msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-
-#: printer/printerdrake.pm:5487
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "ከቱልባሩ ላይ ይህንን ቁልፍ ማውጣት ይፈልጋሉ?"
-
-#: printer/printerdrake.pm:5491
-#, fuzzy, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "የማተሚያው ትዕዛዝ፦ "
-
-#: printer/printerdrake.pm:5515
-#, c-format
-msgid "Default printer"
-msgstr "ቀዳሚ ማተሚያ"
-
-#: printer/printerdrake.pm:5516
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
#: raid.pm:42
#, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr ""
-#: raid.pm:148
+#: raid.pm:150
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
-#: scanner.pm:96
+#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr ""
-#: scanner.pm:107
+#: scanner.pm:106
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr ""
-#: scanner.pm:114
+#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr ""
-#: scanner.pm:121
+#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr ""
-#: scanner.pm:200 standalone/scannerdrake:66 standalone/scannerdrake:70
-#: standalone/scannerdrake:78 standalone/scannerdrake:321
-#: standalone/scannerdrake:370 standalone/scannerdrake:463
-#: standalone/scannerdrake:507 standalone/scannerdrake:511
-#: standalone/scannerdrake:533 standalone/scannerdrake:598
+#: scanner.pm:199
#, c-format
msgid "Scannerdrake"
msgstr ""
-#: scanner.pm:201 standalone/scannerdrake:964
+#: scanner.pm:200
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""
-#: scanner.pm:202
+#: scanner.pm:201
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr ""
@@ -13274,12 +4762,12 @@ msgstr ""
#: security/help.pm:13
#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
+msgid "Accept/Refuse broadcasted icmp echo."
msgstr ""
#: security/help.pm:15
#, c-format
-msgid " Accept/Refuse icmp echo."
+msgid "Accept/Refuse icmp echo."
msgstr ""
#: security/help.pm:17
@@ -13399,7 +4887,7 @@ msgid ""
"\"%s\" is true, also reports to syslog."
msgstr ""
-#: security/help.pm:80 standalone/draksec:215
+#: security/help.pm:80
#, fuzzy, c-format
msgid "Security Alerts:"
msgstr "የደህንነት ደረጃ፦"
@@ -13427,7 +4915,8 @@ msgstr ""
#: security/help.pm:90
#, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"Enable su only from members of the wheel group. If set to no, allows su from "
+"any user."
msgstr ""
#: security/help.pm:92
@@ -13442,12 +4931,12 @@ msgstr ""
#: security/help.pm:96
#, c-format
-msgid " Activate/Disable daily security check."
+msgid "Activate/Disable daily security check."
msgstr ""
#: security/help.pm:98
#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
+msgid "Enable/Disable sulogin(8) in single user level."
msgstr ""
#: security/help.pm:100
@@ -13697,7 +5186,7 @@ msgstr ""
#: security/l10n.pm:32
#, c-format
-msgid "Enable su only from the wheel group members or for any user"
+msgid "Enable su only from the wheel group members"
msgstr ""
#: security/l10n.pm:33
@@ -13822,7 +5311,7 @@ msgstr "በተርሚናሉ ውስጥ &አስኪድ"
#: security/l10n.pm:57
#, c-format
-msgid "Do not send mails when unneeded"
+msgid "Do not send empty mail reports"
msgstr ""
#: security/l10n.pm:58
@@ -13860,6 +5349,11 @@ msgstr "እንደገና የሚሰራ ምንም የለም።"
msgid "Poor"
msgstr ""
+#: security/level.pm:12
+#, c-format
+msgid "Standard"
+msgstr "መደበኛ"
+
#: security/level.pm:13
#, c-format
msgid "High"
@@ -13923,6 +5417,11 @@ msgid ""
msgstr ""
#: security/level.pm:55
+#, c-format
+msgid "Security"
+msgstr "ደህንነት"
+
+#: security/level.pm:55
#, fuzzy, c-format
msgid "DrakSec Basic Options"
msgstr "ባለሁለት አቅጣጫ ምርጫዎች"
@@ -14213,524 +5712,99 @@ msgstr ""
msgid "Starts the X Font Server (this is mandatory for Xorg to run)."
msgstr ""
-#: services.pm:115 services.pm:157
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-
-#: services.pm:127 standalone/draksambashare:111
+#: services.pm:114
#, c-format
msgid "Printing"
msgstr "በማተም ላይ"
-#: services.pm:128
+#: services.pm:115
#, c-format
msgid "Internet"
msgstr "ኢንተርኔት"
-#: services.pm:131
+#: services.pm:118
#, c-format
msgid "File sharing"
msgstr "ሰነድ መጋራት"
-#: services.pm:138
+#: services.pm:120
+#, c-format
+msgid "System"
+msgstr "ሲስተም"
+
+#: services.pm:125
#, c-format
msgid "Remote Administration"
msgstr ""
-#: services.pm:146
+#: services.pm:133
#, fuzzy, c-format
msgid "Database Server"
msgstr "ስለተጠሪ መረጃ"
-#: services.pm:209
+#: services.pm:144 services.pm:180
+#, c-format
+msgid "Services"
+msgstr "አገልግሎት"
+
+#: services.pm:144
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr ""
+
+#: services.pm:162
+#, c-format
+msgid "Services: %d activated for %d registered"
+msgstr ""
+
+#: services.pm:196
#, c-format
msgid "running"
msgstr "በሥራ ላይ"
-#: services.pm:209
+#: services.pm:196
#, c-format
msgid "stopped"
msgstr ""
-#: services.pm:213
+#: services.pm:201
#, fuzzy, c-format
msgid "Services and daemons"
msgstr "የገጽ አናት እና የገጽ ግርጌ"
-#: services.pm:219
+#: services.pm:207
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr ""
-#: services.pm:224 ugtk2.pm:1009
+#: services.pm:212 ugtk2.pm:898
#, c-format
msgid "Info"
msgstr "መረጃ"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "Start when requested"
msgstr "በተጠየቀ ጊዜ ጀምር"
-#: services.pm:227
+#: services.pm:215
#, fuzzy, c-format
msgid "On boot"
msgstr "የተመሠረተው፦"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Start"
msgstr "ጀምር"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Stop"
msgstr "አቁም"
-#: share/advertising/01.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Packs"
-msgstr ""
-
-#: share/advertising/02.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More features"
-msgstr ""
-
-#: share/advertising/03.pl:3
-#, c-format
-msgid "Interactive firewall"
-msgstr ""
-
-#: share/advertising/04.pl:3
-#, c-format
-msgid "Desktop search"
-msgstr ""
-
-#: share/advertising/05.pl:3
-#, c-format
-msgid "New package manager"
-msgstr ""
-
-#: share/advertising/06.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More performances"
-msgstr ""
-
-#: share/advertising/07.pl:3
-#, c-format
-msgid "Latest kernel and GCC"
-msgstr ""
-
-#: share/advertising/08.pl:3
-#, c-format
-msgid "High Availibility"
-msgstr ""
-
-#: share/advertising/09.pl:3
-#, c-format
-msgid "Delta RPM"
-msgstr ""
-
-#: share/advertising/10.pl:3
-#, c-format
-msgid "Low resources setup"
-msgstr ""
-
-#: share/advertising/11.pl:3
-#, c-format
-msgid "Boot time reduction"
-msgstr ""
-
-#: share/advertising/12.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Easier to use"
-msgstr ""
-
-#: share/advertising/13.pl:3
-#, c-format
-msgid "Latest graphical interfaces: KDE and GNOME"
-msgstr ""
-
-#: share/advertising/14.pl:3
-#, c-format
-msgid "auto-installation servers"
-msgstr ""
-
-#: share/advertising/15.pl:3
-#, c-format
-msgid "Easy and quick installation"
-msgstr ""
-
-#: share/advertising/16.pl:3
-#, c-format
-msgid "Easy configuration thanks to 60 wizards"
-msgstr ""
-
-#: share/advertising/17.pl:3
-#, c-format
-msgid "Look and feel improved"
-msgstr ""
-
-#: share/advertising/18.pl:3
-#, c-format
-msgid "New webmin theme"
-msgstr ""
-
-#: share/advertising/19.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More support"
-msgstr ""
-
-#: share/advertising/20.pl:3
-#, c-format
-msgid "Better Hardware support"
-msgstr ""
-
-#: share/advertising/21.pl:3
-#, c-format
-msgid "Xen support"
-msgstr ""
-
-#: share/advertising/22.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More information"
-msgstr ""
-
-#: share/advertising/23.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Where to buy?"
-msgstr ""
-
-#: share/advertising/24.pl:3
-#, c-format
-msgid "Where to find technical assistance?"
-msgstr ""
-
-#: share/advertising/25.pl:3
-#, c-format
-msgid "How to join the Mandriva Linux community?"
-msgstr ""
-
-#: share/advertising/26.pl:3
-#, c-format
-msgid "How to keep your system up-to-date?"
-msgstr ""
-
-#: share/advertising/intel.pl:3
-#, c-format
-msgid "Intel Software"
-msgstr ""
-
-#: share/advertising/skype.pl:3
-#, c-format
-msgid "Skype lets you make calls through the Internet for free."
-msgstr ""
-
-#: share/compssUsers.pl:26
-#, c-format
-msgid "Office Workstation"
-msgstr ""
-
-#: share/compssUsers.pl:28
-#, c-format
-msgid ""
-"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
-"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
-msgstr ""
-
-#: share/compssUsers.pl:29
-#, c-format
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-
-#: share/compssUsers.pl:34
-#, c-format
-msgid "Game station"
-msgstr ""
-
-#: share/compssUsers.pl:35
-#, c-format
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr ""
-
-#: share/compssUsers.pl:38
-#, c-format
-msgid "Multimedia station"
-msgstr ""
-
-#: share/compssUsers.pl:39
-#, c-format
-msgid "Sound and video playing/editing programs"
-msgstr ""
-
-#: share/compssUsers.pl:44
-#, c-format
-msgid "Internet station"
-msgstr ""
-
-#: share/compssUsers.pl:45
-#, c-format
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-
-#: share/compssUsers.pl:50
-#, c-format
-msgid "Network Computer (client)"
-msgstr ""
-
-#: share/compssUsers.pl:51
-#, c-format
-msgid "Clients for different protocols including ssh"
-msgstr ""
-
-#: share/compssUsers.pl:55
-#, c-format
-msgid "Configuration"
-msgstr "ስየማ"
-
-#: share/compssUsers.pl:56
-#, c-format
-msgid "Tools to ease the configuration of your computer"
-msgstr ""
-
-#: share/compssUsers.pl:60
-#, c-format
-msgid "Console Tools"
-msgstr ""
-
-#: share/compssUsers.pl:61
-#, c-format
-msgid "Editors, shells, file tools, terminals"
-msgstr ""
-
-#: share/compssUsers.pl:66 share/compssUsers.pl:170
-#, c-format
-msgid "C and C++ development libraries, programs and include files"
-msgstr ""
-
-#: share/compssUsers.pl:70 share/compssUsers.pl:174
-#, c-format
-msgid "Documentation"
-msgstr "ማስረጃ"
-
-#: share/compssUsers.pl:71 share/compssUsers.pl:175
-#, c-format
-msgid "Books and Howto's on Linux and Free Software"
-msgstr ""
-
-#: share/compssUsers.pl:75 share/compssUsers.pl:178
-#, c-format
-msgid "LSB"
-msgstr ""
-
-#: share/compssUsers.pl:76 share/compssUsers.pl:179
-#, c-format
-msgid "Linux Standard Base. Third party applications support"
-msgstr ""
-
-#: share/compssUsers.pl:86
-#, fuzzy, c-format
-msgid "Apache"
-msgstr "መተላለፊያ"
-
-#: share/compssUsers.pl:89
-#, fuzzy, c-format
-msgid "Groupware"
-msgstr "የውይይት መድረክ"
-
-#: share/compssUsers.pl:90
-#, fuzzy, c-format
-msgid "Kolab Server"
-msgstr "የሳምባ ተጠሪ"
-
-#: share/compssUsers.pl:93 share/compssUsers.pl:134
-#, c-format
-msgid "Firewall/Router"
-msgstr ""
-
-#: share/compssUsers.pl:94 share/compssUsers.pl:135
-#, c-format
-msgid "Internet gateway"
-msgstr ""
-
-#: share/compssUsers.pl:97
-#, fuzzy, c-format
-msgid "Mail/News"
-msgstr "አዲስ ፋይል።"
-
-#: share/compssUsers.pl:98
-#, fuzzy, c-format
-msgid "Postfix mail server, Inn news server"
-msgstr "የመልዕክት ተጠሪ ሚስጢራዊ ቃል ያስፈልጋል"
-
-#: share/compssUsers.pl:101
-#, fuzzy, c-format
-msgid "Directory Server"
-msgstr "በዝርዝር ውስጥ ዶሴ ጨምር"
-
-#: share/compssUsers.pl:105
-#, c-format
-msgid "FTP Server"
-msgstr "የFTP ተጠሪ"
-
-#: share/compssUsers.pl:106
-#, c-format
-msgid "ProFTPd"
-msgstr ""
-
-#: share/compssUsers.pl:109
-#, c-format
-msgid "DNS/NIS"
-msgstr "DNS/NIS"
-
-#: share/compssUsers.pl:110
-#, fuzzy, c-format
-msgid "Domain Name and Network Information Server"
-msgstr "የዘርፍ ስም ሰርቨር"
-
-#: share/compssUsers.pl:113
-#, fuzzy, c-format
-msgid "File and Printer Sharing Server"
-msgstr "የማተሚያ ሰርቨር"
-
-#: share/compssUsers.pl:114
-#, fuzzy, c-format
-msgid "NFS Server, Samba server"
-msgstr "የሳምባ ሰርቨር"
-
-#: share/compssUsers.pl:117 share/compssUsers.pl:130
-#, c-format
-msgid "Database"
-msgstr "ዳታቤዝ"
-
-#: share/compssUsers.pl:118
-#, c-format
-msgid "PostgreSQL and MySQL Database Server"
-msgstr ""
-
-#: share/compssUsers.pl:122
-#, c-format
-msgid "Web/FTP"
-msgstr ""
-
-#: share/compssUsers.pl:123
-#, c-format
-msgid "Apache, Pro-ftpd"
-msgstr ""
-
-#: share/compssUsers.pl:126
-#, c-format
-msgid "Mail"
-msgstr "ፖስታ"
-
-#: share/compssUsers.pl:127
-#, c-format
-msgid "Postfix mail server"
-msgstr ""
-
-#: share/compssUsers.pl:131
-#, c-format
-msgid "PostgreSQL or MySQL database server"
-msgstr ""
-
-#: share/compssUsers.pl:138
-#, c-format
-msgid "Network Computer server"
-msgstr ""
-
-#: share/compssUsers.pl:139
-#, c-format
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr ""
-
-#: share/compssUsers.pl:147
-#, c-format
-msgid "KDE Workstation"
-msgstr ""
-
-#: share/compssUsers.pl:148
-#, c-format
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-
-#: share/compssUsers.pl:152
-#, c-format
-msgid "GNOME Workstation"
-msgstr ""
-
-#: share/compssUsers.pl:153
-#, c-format
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-
-#: share/compssUsers.pl:156
-#, fuzzy, c-format
-msgid "IceWm Desktop"
-msgstr "ሰሌዳ"
-
-#: share/compssUsers.pl:160
-#, c-format
-msgid "Other Graphical Desktops"
-msgstr ""
-
-#: share/compssUsers.pl:161
-#, c-format
-msgid "Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
-
-#: share/compssUsers.pl:184
-#, fuzzy, c-format
-msgid "Utilities"
-msgstr "ፊሊፒንስ"
-
-#: share/compssUsers.pl:186 share/compssUsers.pl:187 standalone/logdrake:384
-#, fuzzy, c-format
-msgid "SSH Server"
-msgstr "ስለተጠሪ መረጃ"
-
-#: share/compssUsers.pl:191
-#, fuzzy, c-format
-msgid "Webmin"
-msgstr "ዌብ-ካም"
-
-#: share/compssUsers.pl:192
-#, fuzzy, c-format
-msgid "Webmin Remote Configuration Server"
-msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-
-#: share/compssUsers.pl:196
-#, fuzzy, c-format
-msgid "Network Utilities/Monitoring"
-msgstr "Name=መረብ"
-
-#: share/compssUsers.pl:197
-#, c-format
-msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
-msgstr ""
-
-#: share/compssUsers.pl:201
-#, fuzzy, c-format
-msgid "Mandriva Wizards"
-msgstr "<b>የMandriva Linux ባለሞያ</b>"
-
-#: share/compssUsers.pl:202
-#, fuzzy, c-format
-msgid "Wizards to configure server"
-msgstr "የባሕር-መዝገብ እሴት '%s' ወደ '%s' እንደገና መሰየም አልተቻለም።"
-
-#: standalone.pm:23
+#: standalone.pm:24
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
@@ -14745,10 +5819,11 @@ msgid ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
msgstr ""
-#: standalone.pm:42
+#: standalone.pm:43
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
@@ -14764,7 +5839,7 @@ msgid ""
"--version : show version number.\n"
msgstr ""
-#: standalone.pm:54
+#: standalone.pm:55
#, c-format
msgid ""
"[--boot] [--splash]\n"
@@ -14774,7 +5849,7 @@ msgid ""
"default mode: offer to configure autologin feature"
msgstr ""
-#: standalone.pm:59
+#: standalone.pm:60
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
@@ -14785,7 +5860,7 @@ msgid ""
" --incident - program should be one of Mandriva Linux tools"
msgstr ""
-#: standalone.pm:65
+#: standalone.pm:66
#, c-format
msgid ""
"[--add]\n"
@@ -14796,7 +5871,7 @@ msgid ""
" --wizard - like --add"
msgstr ""
-#: standalone.pm:71
+#: standalone.pm:72
#, c-format
msgid ""
"\n"
@@ -14814,7 +5889,7 @@ msgid ""
" : and gs for ghostscript for only this one."
msgstr ""
-#: standalone.pm:86
+#: standalone.pm:87
#, c-format
msgid ""
"[OPTIONS]...\n"
@@ -14832,17 +5907,17 @@ msgid ""
"IP, nbi image name)"
msgstr ""
-#: standalone.pm:98
+#: standalone.pm:99
#, c-format
msgid "[keyboard]"
msgstr "[መተየቢያ]"
-#: standalone.pm:99
+#: standalone.pm:100
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr ""
-#: standalone.pm:100
+#: standalone.pm:101
#, c-format
msgid ""
"[OPTIONS]\n"
@@ -14856,12 +5931,7 @@ msgid ""
"--quiet : do not be interactive. To be used with (dis)connect."
msgstr ""
-#: standalone.pm:109
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr ""
-
-#: standalone.pm:110
+#: standalone.pm:111
#, c-format
msgid ""
"[OPTION]...\n"
@@ -14873,14 +5943,14 @@ msgid ""
" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
msgstr ""
-#: standalone.pm:115
+#: standalone.pm:116
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
msgstr ""
-#: standalone.pm:116
+#: standalone.pm:117
#, c-format
msgid ""
" [everything]\n"
@@ -14888,7 +5958,7 @@ msgid ""
" XFdrake resolution"
msgstr ""
-#: standalone.pm:149
+#: standalone.pm:150
#, c-format
msgid ""
"\n"
@@ -14896,8683 +5966,102 @@ msgid ""
"testing] [-v|--version] "
msgstr ""
-#: standalone/XFdrake:59
-#, c-format
-msgid "You need to reboot for changes to take effect"
-msgstr ""
-
-#: standalone/XFdrake:90
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr ""
-
-#: standalone/XFdrake:94
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr ""
-
-#: standalone/drakTermServ:112 standalone/drakTermServ:118
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s የተጠቃሚ ስም ይፈልጋል...\n"
-
-#: standalone/drakTermServ:129
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-
-#: standalone/drakTermServ:135
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr ""
-
-#: standalone/drakTermServ:144
-#, c-format
-msgid "Host name for client"
-msgstr ""
-
-#: standalone/drakTermServ:145
-#, c-format
-msgid "MAC address should be in the format 00:11:22:33:44:55"
-msgstr ""
-
-#: standalone/drakTermServ:146
-#, c-format
-msgid "IP address to be assigned to client"
-msgstr ""
-
-#: standalone/drakTermServ:147
-#, c-format
-msgid "Kernel/network adapter image to use to boot client"
-msgstr ""
-
-#: standalone/drakTermServ:148
-#, c-format
-msgid "Create masking files to allow configuration tools to run on client"
-msgstr ""
-
-#: standalone/drakTermServ:149
-#, c-format
-msgid "Applications will run on server machine"
-msgstr ""
-
-#: standalone/drakTermServ:234 standalone/drakTermServ:237
-#, fuzzy, c-format
-msgid "Terminal Server Configuration"
-msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-
-#: standalone/drakTermServ:243
-#, fuzzy, c-format
-msgid "dhcpd Config"
-msgstr "&ለውጡ"
-
-#: standalone/drakTermServ:247
-#, fuzzy, c-format
-msgid "Enable Server"
-msgstr "ስለተጠሪ መረጃ"
-
-#: standalone/drakTermServ:253
-#, fuzzy, c-format
-msgid "Disable Server"
-msgstr "ስለተጠሪ መረጃ"
-
-#: standalone/drakTermServ:259
-#, fuzzy, c-format
-msgid "Start Server"
-msgstr "ስለተጠሪ መረጃ"
-
-#: standalone/drakTermServ:265
-#, fuzzy, c-format
-msgid "Stop Server"
-msgstr "ስለተጠሪ መረጃ"
-
-#: standalone/drakTermServ:274
-#, fuzzy, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "ዐርቢኛ፣ ISO-8859-6"
-
-#: standalone/drakTermServ:278
-#, fuzzy, c-format
-msgid "Net Boot Images"
-msgstr "ምስሎችን አስስ"
-
-#: standalone/drakTermServ:285
-#, fuzzy, c-format
-msgid "Add/Del Users"
-msgstr "አምድ በኋላ ጨምር"
-
-#: standalone/drakTermServ:289
-#, fuzzy, c-format
-msgid "Add/Del Clients"
-msgstr "አምድ በኋላ ጨምር"
-
-#: standalone/drakTermServ:297
-#, c-format
-msgid "Images"
-msgstr "ምስሎች"
-
-#: standalone/drakTermServ:298
-#, c-format
-msgid "Clients/Users"
-msgstr ""
-
-#: standalone/drakTermServ:316 standalone/drakbug:47
-#, fuzzy, c-format
-msgid "First Time Wizard"
-msgstr "ቀን እና ሰዓት"
-
-#: standalone/drakTermServ:354 standalone/drakTermServ:355
-#, c-format
-msgid "%s defined as dm, adding gdm user to /etc/passwd$$CLIENT$$"
-msgstr ""
-
-#: standalone/drakTermServ:361
-#, c-format
-msgid ""
-"\n"
-" This wizard routine will:\n"
-" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
-"\t2) Setup DHCP.\n"
-"\t\n"
-"After doing these steps, the wizard will:\n"
-"\t\n"
-" a) Make all "
-"nbis. \n"
-" b) Activate the "
-"server. \n"
-" c) Start the "
-"server. \n"
-" d) Synchronize the shadow files so that all users, including root, \n"
-" are added to the shadow$$CLIENT$$ "
-"file. \n"
-" e) Ask you to make a boot floppy.\n"
-" f) If it's thin clients, ask if you want to restart KDM.\n"
-msgstr ""
-
-#: standalone/drakTermServ:407
-#, fuzzy, c-format
-msgid "Cancel Wizard"
-msgstr "የመዝገብ አገልጋይ"
-
-#: standalone/drakTermServ:422
-#, c-format
-msgid "Please save dhcpd config!"
-msgstr ""
-
-#: standalone/drakTermServ:450
-#, fuzzy, c-format
-msgid "Use thin clients."
-msgstr "ከቀኝ ወደ ግራ ተራ ተጠቀም"
-
-#: standalone/drakTermServ:452
-#, c-format
-msgid "Sync client X keyboard settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:454
-#, c-format
-msgid ""
-"Please select default client type (Fat is the default type if 'Use thin' is "
-"unchecked).\n"
-" 'Thin' clients run everything off the server's CPU/RAM, using the client "
-"display.\n"
-" 'Fat' clients use their own CPU/RAM but the server's filesystem."
-msgstr ""
-
-#: standalone/drakTermServ:474
-#, c-format
-msgid "Creating net boot images for all kernels"
-msgstr ""
-
-#: standalone/drakTermServ:475 standalone/drakTermServ:807
-#: standalone/drakTermServ:823
-#, c-format
-msgid "This will take a few minutes."
-msgstr ""
-
-#: standalone/drakTermServ:481 standalone/drakTermServ:521
-#, fuzzy, c-format
-msgid "Done!"
-msgstr "አልቋል"
-
-#: standalone/drakTermServ:492 standalone/drakTermServ:894
-#, c-format
-msgid "%s failed"
-msgstr ""
-
-#: standalone/drakTermServ:501
-#, c-format
-msgid ""
-"Not enough space to create\n"
-"NBIs in %s.\n"
-"Needed: %d MB, Free: %d MB"
-msgstr ""
-
-#: standalone/drakTermServ:507
-#, c-format
-msgid "Syncing server user list with client list, including root."
-msgstr ""
-
-#: standalone/drakTermServ:527
-#, c-format
-msgid ""
-"In order to enable changes made for thin clients, the display manager must "
-"be restarted. Restart now?"
-msgstr ""
-
-#: standalone/drakTermServ:564
-#, fuzzy, c-format
-msgid "Terminal Server Overview"
-msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-
-#: standalone/drakTermServ:565
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and %s is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-
-#: standalone/drakTermServ:571
-#, c-format
-msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. %s helps create/"
-"remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
-msgstr ""
-
-#: standalone/drakTermServ:589
-#, c-format
-msgid ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be "
-"'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, \n"
-" %s is written for thin clients. \n"
-" System config files xdm-config, kdmrc, and gdm.conf are modified if "
-"thin clients are \n"
-" used, to enable XDMCP. Since there are security issues in using "
-"XDMCP, hosts.deny and \n"
-" hosts.allow are modified to limit access to the local subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-msgstr ""
-
-#: standalone/drakTermServ:609
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-msgstr ""
-
-#: standalone/drakTermServ:621
-#, c-format
-msgid ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. \n"
-" \t%s helps in this respect by adding or removing system users from "
-"this \n"
-" \tfile."
-msgstr ""
-
-#: standalone/drakTermServ:626
-#, c-format
-msgid ""
-" - Per client %s:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t%s will help create these files."
-msgstr ""
-
-#: standalone/drakTermServ:631
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-msgstr ""
-
-#: standalone/drakTermServ:640
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s will configure this file to work in conjunction with the images "
-"created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical TFTP configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
-msgstr ""
-
-#: standalone/drakTermServ:661
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-msgstr ""
-
-#: standalone/drakTermServ:694
-#, fuzzy, c-format
-msgid "Boot Floppy"
-msgstr "ፍሎፒ ላይ"
-
-#: standalone/drakTermServ:696
-#, fuzzy, c-format
-msgid "Boot ISO"
-msgstr "ISO A4"
-
-#: standalone/drakTermServ:698
-#, fuzzy, c-format
-msgid "PXE Image"
-msgstr "ምስል አስገባ"
-
-#: standalone/drakTermServ:759
-#, fuzzy, c-format
-msgid "Default kernel version"
-msgstr "የነበረው ቀን (ያለ ሰዓት)"
-
-#: standalone/drakTermServ:764
-#, c-format
-msgid "Create PXE images"
-msgstr ""
-
-#: standalone/drakTermServ:765
-#, c-format
-msgid "Use Unionfs (TS2)"
-msgstr ""
-
-#: standalone/drakTermServ:795
-#, c-format
-msgid "Install i586 kernel for older clients"
-msgstr ""
-
-#: standalone/drakTermServ:805
-#, fuzzy, c-format
-msgid "Build Whole Kernel -->"
-msgstr "ሙሉ ቃላት ብቻ"
-
-#: standalone/drakTermServ:812
-#, fuzzy, c-format
-msgid "No kernel selected!"
-msgstr "ምንም ተጨማሪ ፕሮግራም አልተመረጠም"
-
-#: standalone/drakTermServ:815
-#, fuzzy, c-format
-msgid "Build Single NIC -->"
-msgstr "የአንድ ደራሲ መግቢያ"
-
-#: standalone/drakTermServ:819 standalone/drakTermServ:1643
-#, fuzzy, c-format
-msgid "No NIC selected!"
-msgstr "ምንም ተጨማሪ ፕሮግራም አልተመረጠም"
-
-#: standalone/drakTermServ:822
-#, fuzzy, c-format
-msgid "Build All Kernels -->"
-msgstr "ሁሉንም የምስል ፋይሎች"
-
-#: standalone/drakTermServ:835
-#, c-format
-msgid ""
-"Custom\n"
-"kernel args"
-msgstr ""
-
-#: standalone/drakTermServ:840
-#, fuzzy, c-format
-msgid "<-- Delete"
-msgstr "&አጥፉ"
-
-#: standalone/drakTermServ:845
-#, fuzzy, c-format
-msgid "No image selected!"
-msgstr "ምንም ተጨማሪ ፕሮግራም አልተመረጠም"
-
-#: standalone/drakTermServ:848
-#, fuzzy, c-format
-msgid "Delete All NBIs"
-msgstr "የተመረጡትን ሁሉንም አርዕስተ ጉዳዮች እስከመጨረሻው አጥፋቸው"
-
-#: standalone/drakTermServ:925
-#, c-format
-msgid "Building images for kernel:"
-msgstr ""
-
-#: standalone/drakTermServ:1050
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-
-#: standalone/drakTermServ:1055
-#, fuzzy, c-format
-msgid "Add User -->"
-msgstr "ተጠቃሚን ጨምር"
-
-#: standalone/drakTermServ:1061
-#, fuzzy, c-format
-msgid "<-- Del User"
-msgstr "የተጠቃሚ ስም"
-
-#: standalone/drakTermServ:1097
-#, fuzzy, c-format
-msgid "type: %s"
-msgstr "ዓይነት፦"
-
-#: standalone/drakTermServ:1101
-#, fuzzy, c-format
-msgid "local config: %s"
-msgstr "&ለውጡ"
-
-#: standalone/drakTermServ:1136
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-
-#: standalone/drakTermServ:1146
-#, c-format
-msgid "No net boot images created!"
-msgstr ""
-
-#: standalone/drakTermServ:1165
-#, c-format
-msgid "Thin Client"
-msgstr ""
-
-#: standalone/drakTermServ:1169
-#, fuzzy, c-format
-msgid "Allow Thin Clients"
-msgstr "የተለመደውን ቱልባሮች ፍቀድ"
-
-#: standalone/drakTermServ:1170
-#, c-format
-msgid ""
-"Sync client X keyboard\n"
-" settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:1171
-#, fuzzy, c-format
-msgid "Add Client -->"
-msgstr "ሰነዶችን ጨምር"
-
-#: standalone/drakTermServ:1181
-#, c-format
-msgid "Unknown MAC address format"
-msgstr ""
-
-#: standalone/drakTermServ:1195
-#, fuzzy, c-format
-msgid "type: fat"
-msgstr "DOS (fat)"
-
-#: standalone/drakTermServ:1196
-#, fuzzy, c-format
-msgid "type: thin"
-msgstr "የፋይሉ ዓይነት"
-
-#: standalone/drakTermServ:1203
-#, c-format
-msgid "local config: false"
-msgstr ""
-
-#: standalone/drakTermServ:1204
-#, c-format
-msgid "local config: true"
-msgstr ""
-
-#: standalone/drakTermServ:1212
-#, fuzzy, c-format
-msgid "<-- Edit Client"
-msgstr "የገጽ ግርጌውን ያስተካክሉ"
-
-#: standalone/drakTermServ:1237
-#, fuzzy, c-format
-msgid "Disable Local Config"
-msgstr "የነሲብ URLን አታስችል"
-
-#: standalone/drakTermServ:1244
-#, fuzzy, c-format
-msgid "Delete Client"
-msgstr "ማያያዣ ቁልፎች &አጥፉ"
-
-#: standalone/drakTermServ:1267
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-
-#: standalone/drakTermServ:1313
-#, c-format
-msgid "Thin clients will not work with autologin. Disable autologin?"
-msgstr ""
-
-#: standalone/drakTermServ:1328
-#, fuzzy, c-format
-msgid "All clients will use %s"
-msgstr "ከቀኝ ወደ ግራ ተራ ተጠቀም"
-
-#: standalone/drakTermServ:1362
-#, c-format
-msgid "Subnet:"
-msgstr ""
-
-#: standalone/drakTermServ:1369
-#, c-format
-msgid "Netmask:"
-msgstr ""
-
-#: standalone/drakTermServ:1376
-#, c-format
-msgid "Routers:"
-msgstr ""
-
-#: standalone/drakTermServ:1383
-#, fuzzy, c-format
-msgid "Subnet Mask:"
-msgstr "/ደረጃ/Mask/Add Layer Mask..."
-
-#: standalone/drakTermServ:1390
-#, fuzzy, c-format
-msgid "Broadcast Address:"
-msgstr "ኢሜያል አድራሻ"
-
-#: standalone/drakTermServ:1397
-#, fuzzy, c-format
-msgid "Domain Name:"
-msgstr "የፋይል ስም"
-
-#: standalone/drakTermServ:1405
-#, fuzzy, c-format
-msgid "Name Servers:"
-msgstr "የፋይል ስም"
-
-#: standalone/drakTermServ:1416
-#, fuzzy, c-format
-msgid "IP Range Start:"
-msgstr "አዲስ ዝርዝር ጀምር"
-
-#: standalone/drakTermServ:1417
-#, fuzzy, c-format
-msgid "IP Range End:"
-msgstr "አሁን ያለውን ጨዋታ ጨርስ"
-
-#: standalone/drakTermServ:1459
-#, c-format
-msgid "Append TS Includes To Existing Config"
-msgstr ""
-
-#: standalone/drakTermServ:1461
-#, fuzzy, c-format
-msgid "Write Config"
-msgstr "&ለውጡ"
-
-#: standalone/drakTermServ:1477
-#, fuzzy, c-format
-msgid "dhcpd Server Configuration"
-msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-
-#: standalone/drakTermServ:1478
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-
-#: standalone/drakTermServ:1481
-#, c-format
-msgid ""
-"Dynamic IP Address Pool\n"
-"(needed for PXE clients):"
-msgstr ""
-
-#: standalone/drakTermServ:1634
-#, c-format
-msgid "Write to %s failed!"
-msgstr ""
-
-#: standalone/drakTermServ:1647
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr ""
-
-#: standalone/drakTermServ:1651
-#, fuzzy, c-format
-msgid "Could not access the floppy!"
-msgstr "ጽሑፉን መክፈት አልተቻለም"
-
-#: standalone/drakTermServ:1653
-#, c-format
-msgid "Floppy can be removed now"
-msgstr ""
-
-#: standalone/drakTermServ:1656
-#, c-format
-msgid "No floppy drive available!"
-msgstr ""
-
-#: standalone/drakTermServ:1662
-#, fuzzy, c-format
-msgid "PXE image is %s/%s"
-msgstr "ትርጉሙ &ጅምር ነው"
-
-#: standalone/drakTermServ:1664
-#, fuzzy, c-format
-msgid "Error writing %s/%s"
-msgstr "በሚጻፍበት ወቅት ስህተት ተከስቷል፦ "
-
-#: standalone/drakTermServ:1676
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr ""
-
-#: standalone/drakTermServ:1680
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr ""
-
-#: standalone/drakTermServ:1700
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr ""
-
-#: standalone/drakTermServ:1867
-#, c-format
-msgid "%s passwd bad in Terminal Server - rewriting...\n"
-msgstr ""
-
-#: standalone/drakTermServ:1880
-#, fuzzy, c-format
-msgid "%s is not a user..\n"
-msgstr "ፋይሉ '%s' አይነበብም"
-
-#: standalone/drakTermServ:1881
-#, c-format
-msgid "%s is already a Terminal Server user\n"
-msgstr ""
-
-#: standalone/drakTermServ:1883
-#, c-format
-msgid "Addition of %s to Terminal Server failed!\n"
-msgstr ""
-
-#: standalone/drakTermServ:1885
-#, c-format
-msgid "%s added to Terminal Server\n"
-msgstr ""
-
-#: standalone/drakTermServ:1903
-#, fuzzy, c-format
-msgid "Deleted %s...\n"
-msgstr "የጠፋ"
-
-#: standalone/drakTermServ:1905 standalone/drakTermServ:1978
-#, fuzzy, c-format
-msgid "%s not found...\n"
-msgstr "አልተገኘም"
-
-#: standalone/drakTermServ:2006
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
-
-#: standalone/drakTermServ:2158
-#, c-format
-msgid "Configuration changed - restart %s/dhcpd?"
-msgstr ""
-
-#: standalone/drakautoinst:38 standalone/drakhosts:123
-#: standalone/drakhosts:129 standalone/draknfs:84 standalone/draknfs:105
-#: standalone/draknfs:444 standalone/draknfs:447 standalone/draknfs:539
-#: standalone/draknfs:546 standalone/draksambashare:187
-#: standalone/draksambashare:208 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Error!"
-msgstr "ስህተት!"
-
-#: standalone/drakautoinst:39
-#, fuzzy, c-format
-msgid "I can not find needed image file `%s'."
-msgstr "መደበኛ የሆነውን የፋይል አመራረጥ በመጠቀም ሸሯቅብን ማግኘት አይቻልም"
-
-#: standalone/drakautoinst:41
-#, fuzzy, c-format
-msgid "Auto Install Configurator"
-msgstr "አዲስ ተጨማሪ ፕሮግራም አስገባ"
-
-#: standalone/drakautoinst:42
-#, c-format
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Press ok to continue."
-msgstr ""
-
-#: standalone/drakautoinst:60
-#, c-format
-msgid "replay"
-msgstr ""
-
-#: standalone/drakautoinst:60 standalone/drakautoinst:69
-#, fuzzy, c-format
-msgid "manual"
-msgstr "መመሪያ"
-
-#: standalone/drakautoinst:64
-#, fuzzy, c-format
-msgid "Automatic Steps Configuration"
-msgstr "አውቶማቲክ የአምድ መጠን"
-
-#: standalone/drakautoinst:65
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: standalone/drakautoinst:77 standalone/drakautoinst:78
-#: standalone/drakautoinst:92
-#, c-format
-msgid "Creating auto install floppy"
-msgstr ""
-
-#: standalone/drakautoinst:90
-#, c-format
-msgid "Insert another blank floppy in drive %s (for drivers disk)"
-msgstr ""
-
-#: standalone/drakautoinst:91
-#, c-format
-msgid "Creating auto install floppy (drivers disk)"
-msgstr ""
-
-#: standalone/drakautoinst:156
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: standalone/drakautoinst:251
-#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: standalone/drakautoinst:287
-#, fuzzy, c-format
-msgid "Auto Install"
-msgstr "ሲስተም ትከል"
-
-#: standalone/drakautoinst:356
-#, fuzzy, c-format
-msgid "Add an item"
-msgstr "ዕቃ አጥፋ"
-
-#: standalone/drakautoinst:363
-#, fuzzy, c-format
-msgid "Remove the last item"
-msgstr "የተመረጠው ዕቃ አስወግድ"
-
-#: standalone/drakbackup:157
-#, c-format
-msgid ""
-"Expect is an extension to the TCL scripting language that allows interactive "
-"sessions without user intervention."
-msgstr ""
-
-#: standalone/drakbackup:158
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr ""
-
-#: standalone/drakbackup:159
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
-
-#: standalone/drakbackup:160
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-
-#: standalone/drakbackup:161
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-
-#: standalone/drakbackup:162
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-
-#: standalone/drakbackup:163
-#, c-format
-msgid ""
-"Star should be selected if you want to backup EA or ACLs, otherwise choose "
-"tar"
-msgstr ""
-
-#: standalone/drakbackup:164
-#, c-format
-msgid ""
-"This should be a local user or email address that you want the backup "
-"results sent to. You will need to define a functioning mail server. Multiple "
-"users can be in a comma seperated list"
-msgstr ""
-
-#: standalone/drakbackup:165
-#, c-format
-msgid ""
-"This should be the return address that you want the backup results sent "
-"from. Default is drakbackup."
-msgstr ""
-
-#: standalone/drakbackup:166
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-
-#: standalone/drakbackup:167
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-
-#: standalone/drakbackup:168
-#, c-format
-msgid ""
-"Selecting this option allows you to view the raw output from the restore "
-"process, after a file restore."
-msgstr ""
-
-#: standalone/drakbackup:169
-#, c-format
-msgid ""
-"Some protocols, like rsync, may be configured at the server end. Rather "
-"than using a directory path, you would use the 'module' name for the service "
-"path."
-msgstr ""
-
-#: standalone/drakbackup:170
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-
-#: standalone/drakbackup:344
-#, c-format
-msgid "No media selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:348
-#, c-format
-msgid "No interval selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:393
-#, c-format
-msgid "Interval cron not available as non-root"
-msgstr ""
-
-#: standalone/drakbackup:477 standalone/logdrake:439
-#, c-format
-msgid "\"%s\" neither is a valid email nor is an existing local user!"
-msgstr ""
-
-#: standalone/drakbackup:481 standalone/logdrake:444
-#, 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 ""
-
-#: standalone/drakbackup:491
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr ""
-
-#: standalone/drakbackup:493
-#, c-format
-msgid "Old user list:\n"
-msgstr "አሮጌ የተጠቃሚ ዝርዝር:\n"
-
-#: standalone/drakbackup:495
-#, c-format
-msgid "New user list:\n"
-msgstr "አዲስ የተጠቃሚ ዝርዝር:\n"
-
-#: standalone/drakbackup:524
-#, fuzzy, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
-msgstr "የሶፍትዌሩን ችግር ዘግብ"
-
-#: standalone/drakbackup:525
-#, fuzzy, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-msgstr "የስሕተቱን ጉዳይ አቅርብ"
-
-#: standalone/drakbackup:531
-#, fuzzy, c-format
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr "የስሕተቱን ጉዳይ አቅርብ"
-
-#: standalone/drakbackup:556 standalone/drakbackup:627
-#: standalone/drakbackup:683
-#, fuzzy, c-format
-msgid "Total progress"
-msgstr "ተሻሽሏል"
-
-#: standalone/drakbackup:609
-#, c-format
-msgid ""
-"%s exists, delete?\n"
-"\n"
-"If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-
-#: standalone/drakbackup:618
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr ""
-
-#: standalone/drakbackup:625
-#, fuzzy, c-format
-msgid "Cannot spawn %s."
-msgstr "ፕሮግራሙን ማስኬድ አልተቻለም።"
-
-#: standalone/drakbackup:642
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr ""
-
-#: standalone/drakbackup:643
-#, fuzzy, c-format
-msgid "Bad password on %s"
-msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
-
-#: standalone/drakbackup:644
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr ""
-
-#: standalone/drakbackup:645
-#, fuzzy, c-format
-msgid "Can not find %s on %s"
-msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
-
-#: standalone/drakbackup:649
-#, fuzzy, c-format
-msgid "%s not responding"
-msgstr "አልተገኘም"
-
-#: standalone/drakbackup:653
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-
-#: standalone/drakbackup:703
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr ""
-
-#: standalone/drakbackup:707
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr ""
-
-#: standalone/drakbackup:712
-#, fuzzy, c-format
-msgid "Not erasable media!"
-msgstr "ማንበብ አልቻለም፦ "
-
-#: standalone/drakbackup:754
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr ""
-
-#: standalone/drakbackup:812
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr ""
-
-#: standalone/drakbackup:840
-#, fuzzy, c-format
-msgid "No tape in %s!"
-msgstr "ምንም ሰነድ አልተገኘም በ:"
-
-#: standalone/drakbackup:953
-#, c-format
-msgid ""
-"Backup destination quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-
-#: standalone/drakbackup:973 standalone/drakbackup:1005
-#, fuzzy, c-format
-msgid "Backup system files..."
-msgstr "ሁሉንም የምስል ፋይሎች"
-
-#: standalone/drakbackup:1006 standalone/drakbackup:1045
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr ""
-
-#: standalone/drakbackup:1044
-#, fuzzy, c-format
-msgid "Backup User files..."
-msgstr "ሁሉንም የምስል ፋይሎች"
-
-#: standalone/drakbackup:1078
-#, fuzzy, c-format
-msgid "Backup Other files..."
-msgstr "ሁሉንም የምስል ፋይሎች"
-
-#: standalone/drakbackup:1079
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: standalone/drakbackup:1084
-#, fuzzy, c-format
-msgid "No changes to backup!"
-msgstr "ለማስቀመጥ ምንም የፋይል ስም የለም"
-
-#: standalone/drakbackup:1100 standalone/drakbackup:1122
-#, fuzzy, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr "ፈጣን ደብዳቤ"
-
-#: standalone/drakbackup:1109
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: standalone/drakbackup:1110
-#, c-format
-msgid ""
-"Error during sending file via FTP. Please correct your FTP configuration."
-msgstr ""
-
-#: standalone/drakbackup:1112
-#, c-format
-msgid "file list sent by FTP: %s\n"
-msgstr ""
-
-#: standalone/drakbackup:1127
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:1132
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:1141
-#, c-format
-msgid "Error sending mail. Your report mail was not sent."
-msgstr ""
-
-#: standalone/drakbackup:1142
-#, fuzzy, c-format
-msgid " Error while sending mail. \n"
-msgstr ""
-"በሚያትምበት ጊዜ ስህተት ተከስቷል።\n"
-"\n"
-"%s"
-
-#: standalone/drakbackup:1172
-#, fuzzy, c-format
-msgid "Can not create catalog!"
-msgstr "'%s' ሰነድ መፍጠር አልተቻለም"
-
-#: standalone/drakbackup:1332
-#, fuzzy, c-format
-msgid "Problem installing %s"
-msgstr "ተከላ በማዘጋጀት ላይ"
-
-#: standalone/drakbackup:1420
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr ""
-
-#: standalone/drakbackup:1421 standalone/drakbackup:1484
-#: standalone/drakbackup:1550
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr ""
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, fuzzy, c-format
-msgid "Use Incremental Backups"
-msgstr "ከቀኝ ወደ ግራ ተራ ተጠቀም"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, fuzzy, c-format
-msgid "Use Differential Backups"
-msgstr "ከቀኝ ወደ ግራ ተራ ተጠቀም"
-
-#: standalone/drakbackup:1425
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: standalone/drakbackup:1456
-#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr ""
-
-#: standalone/drakbackup:1483
-#, c-format
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: standalone/drakbackup:1537
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr ""
-
-#: standalone/drakbackup:1538 standalone/drakfont:650
-#, c-format
-msgid "Remove Selected"
-msgstr "ተመረጠው ይወገድ"
-
-#: standalone/drakbackup:1601
-#, c-format
-msgid "Users"
-msgstr "ተጠቃሚዎች"
-
-#: standalone/drakbackup:1621
-#, c-format
-msgid "Use network connection to backup"
-msgstr ""
-
-#: standalone/drakbackup:1623
-#, fuzzy, c-format
-msgid "Net Method:"
-msgstr "የX ዘገባ የማስትገባት ዘዴ"
-
-#: standalone/drakbackup:1627
-#, fuzzy, c-format
-msgid "Use Expect for SSH"
-msgstr "ለህብሩ የglyph ቅርጽ አወጣት ተጠቀም"
-
-#: standalone/drakbackup:1628
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr ""
-
-#: standalone/drakbackup:1630
-#, c-format
-msgid "Transfer Now"
-msgstr "አሁኑኑ ይተላለፍ"
-
-#: standalone/drakbackup:1632
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr ""
-
-#: standalone/drakbackup:1635
-#, fuzzy, c-format
-msgid "Host name or IP."
-msgstr "የስም/አስተያየት ትርጉሞችን ጨምር ወይም አስቀምጥ"
-
-#: standalone/drakbackup:1640
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
-
-#: standalone/drakbackup:1652
-#, c-format
-msgid "Remember this password"
-msgstr "ይህን ሚስጢራዊ ቃል አስታውስ"
-
-#: standalone/drakbackup:1664
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr ""
-
-#: standalone/drakbackup:1755
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr ""
-
-#: standalone/drakbackup:1758
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr ""
-
-#: standalone/drakbackup:1763
-#, c-format
-msgid "Choose your CD/DVD media size"
-msgstr ""
-
-#: standalone/drakbackup:1770
-#, fuzzy, c-format
-msgid "Multisession CD"
-msgstr "CD ወደ"
-
-#: standalone/drakbackup:1772
-#, c-format
-msgid "CDRW media"
-msgstr ""
-
-#: standalone/drakbackup:1778
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr ""
-
-#: standalone/drakbackup:1779
-#, fuzzy, c-format
-msgid " Erase Now "
-msgstr "አሁኑኑ ይተላለፍ"
-
-#: standalone/drakbackup:1785
-#, c-format
-msgid "DVD+RW media"
-msgstr ""
-
-#: standalone/drakbackup:1787
-#, c-format
-msgid "DVD-R media"
-msgstr ""
-
-#: standalone/drakbackup:1789
-#, fuzzy, c-format
-msgid "DVDRAM device"
-msgstr "የመረብ ዕቃ"
-
-#: standalone/drakbackup:1820
-#, c-format
-msgid "No CD device defined!"
-msgstr ""
-
-#: standalone/drakbackup:1862
-#, c-format
-msgid "Use tape to backup"
-msgstr ""
-
-#: standalone/drakbackup:1865
-#, c-format
-msgid "Device name to use for backup"
-msgstr ""
-
-#: standalone/drakbackup:1871
-#, c-format
-msgid "Backup directly to tape"
-msgstr ""
-
-#: standalone/drakbackup:1877
-#, c-format
-msgid "Use tape hardware compression (EXPERIMENTAL)"
-msgstr ""
-
-#: standalone/drakbackup:1883
-#, c-format
-msgid "Do not rewind tape after backup"
-msgstr ""
-
-#: standalone/drakbackup:1889
-#, c-format
-msgid "Erase tape before backup"
-msgstr ""
-
-#: standalone/drakbackup:1895
-#, c-format
-msgid "Eject tape after the backup"
-msgstr ""
-
-#: standalone/drakbackup:1976
-#, fuzzy, c-format
-msgid "Enter the directory to save to:"
-msgstr "ለማስቀመጥ የፋይል ስም ምረጡ"
-
-#: standalone/drakbackup:1980
-#, fuzzy, c-format
-msgid "Directory to save to"
-msgstr "የ%sን ለውጦች አስቀምጣቸው"
-
-#: standalone/drakbackup:1985
-#, c-format
-msgid ""
-"Maximum disk space\n"
-" allocated for backups (MB)"
-msgstr ""
-
-#: standalone/drakbackup:1989
-#, c-format
-msgid ""
-"Delete incremental or differential\n"
-" backups older than N days\n"
-" (0 is keep all backups) to save space"
-msgstr ""
-
-#: standalone/drakbackup:2056
-#, fuzzy, c-format
-msgid "CD-R / DVD-R"
-msgstr "CD ወደ"
-
-#: standalone/drakbackup:2061
-#, c-format
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2077
-#: standalone/drakbackup:2082
-#, c-format
-msgid "hourly"
-msgstr ""
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2078
-#: standalone/drakbackup:2083
-#, c-format
-msgid "daily"
-msgstr ""
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2079
-#: standalone/drakbackup:2084
-#, c-format
-msgid "weekly"
-msgstr "ሳምንታዊ"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2080
-#: standalone/drakbackup:2085
-#, c-format
-msgid "monthly"
-msgstr ""
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2081
-#: standalone/drakbackup:2086
-#, c-format
-msgid "custom"
-msgstr "የተለየ"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "January"
-msgstr "ጃንዩወሪ"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "February"
-msgstr "ፌብሩወሪ"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "March"
-msgstr "ማርች"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "April"
-msgstr "ኤፕረል"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "May"
-msgstr "ሜይ"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "June"
-msgstr "ጁን"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "July"
-msgstr "ጁላይ"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "August"
-msgstr "ኦገስት"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "September"
-msgstr "ሴፕቴምበር"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "October"
-msgstr "ኦክተውበር"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "November"
-msgstr "ኖቬምበር"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "December"
-msgstr "ዲሴምበር"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Sunday"
-msgstr "እሑድ"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Monday"
-msgstr "ሰኞ"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Tuesday"
-msgstr "ማክሰኞ"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Wednesday"
-msgstr "ረቡዕ"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Thursday"
-msgstr "ሐሙስ"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Friday"
-msgstr "ዓርብ"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Saturday"
-msgstr "ቅዳሜ"
-
-#: standalone/drakbackup:2126
-#, fuzzy, c-format
-msgid "Delete cron entry"
-msgstr "ማያያዣ ቁልፎች &አጥፉ"
-
-#: standalone/drakbackup:2127
-#, fuzzy, c-format
-msgid "Add cron entry"
-msgstr "ማተሚያ ይጨመር"
-
-#: standalone/drakbackup:2185
-#, fuzzy, c-format
-msgid "Use daemon"
-msgstr "በጥቅም ላይ ያለ"
-
-#: standalone/drakbackup:2189
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr ""
-
-#: standalone/drakbackup:2197
-#, c-format
-msgid "Minute"
-msgstr "ደቂቃ(ዎች)"
-
-#: standalone/drakbackup:2201
-#, c-format
-msgid "Hour"
-msgstr "ሰዓት(ኦች)"
-
-#: standalone/drakbackup:2205
-#, c-format
-msgid "Day"
-msgstr "ቀን"
-
-#: standalone/drakbackup:2209
-#, c-format
-msgid "Month"
-msgstr "ወር"
-
-#: standalone/drakbackup:2213
-#, fuzzy, c-format
-msgid "Weekday (start)"
-msgstr "አዘቦት ቀን"
-
-#: standalone/drakbackup:2217
-#, fuzzy, c-format
-msgid "Weekday (end)"
-msgstr "አዘቦት ቀን"
-
-#: standalone/drakbackup:2221
-#, fuzzy, c-format
-msgid "Profile"
-msgstr "ወኪሎች"
-
-#: standalone/drakbackup:2227
-#, fuzzy, c-format
-msgid "Current crontab:"
-msgstr "የአሁኑ ተጠቃሚ"
-
-#: standalone/drakbackup:2235
-#, c-format
-msgid "Please choose the media for backup."
-msgstr ""
-
-#: standalone/drakbackup:2239
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: standalone/drakbackup:2240
-#, c-format
-msgid ""
-"If your machine is not on all the time, you might want to install anacron."
-msgstr ""
-
-#: standalone/drakbackup:2316
-#, fuzzy, c-format
-msgid "Please choose the archive program"
-msgstr "እባክዎ ለማሳየት የሚፈልጉትን ተጠቃሽ-መረጃ ይምረጡ:"
-
-#: standalone/drakbackup:2321
-#, fuzzy, c-format
-msgid "Please choose the compression type"
-msgstr "እባክዎ ያለ ሰነድን ይምረጡ"
-
-#: standalone/drakbackup:2325
-#, fuzzy, c-format
-msgid "Use .backupignore files"
-msgstr "ሁሉንም የምስል ፋይሎች"
-
-#: standalone/drakbackup:2327
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr ""
-
-#: standalone/drakbackup:2333
-#, c-format
-msgid "Return address for sent mail:"
-msgstr ""
-
-#: standalone/drakbackup:2339
-#, fuzzy, c-format
-msgid "SMTP server for mail:"
-msgstr "የመልዕክት ተጠሪ ሚስጢራዊ ቃል ያስፈልጋል"
-
-#: standalone/drakbackup:2343
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
-
-#: standalone/drakbackup:2344
-#, c-format
-msgid "View restore log after file restore."
-msgstr ""
-
-#: standalone/drakbackup:2389
-#, c-format
-msgid "What"
-msgstr "ምንድን ነው"
-
-#: standalone/drakbackup:2394
-#, c-format
-msgid "Where"
-msgstr ""
-
-#: standalone/drakbackup:2399
-#, c-format
-msgid "When"
-msgstr ""
-
-#: standalone/drakbackup:2404
-#, c-format
-msgid "More Options"
-msgstr "ተጨማሪ ምርጫዎች"
-
-#: standalone/drakbackup:2417
-#, c-format
-msgid "Backup destination not configured..."
-msgstr ""
-
-#: standalone/drakbackup:2437 standalone/drakbackup:4367
-#, fuzzy, c-format
-msgid "Drakbackup Configuration"
-msgstr "የማስተካከያው አራሚ"
-
-#: standalone/drakbackup:2453
-#, fuzzy, c-format
-msgid "Please choose where you want to backup"
-msgstr "እባክዎ ለማሳየት የሚፈልጉትን ተጠቃሽ-መረጃ ይምረጡ:"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Hard Drive used to prepare backups for all media"
-msgstr ""
-
-#: standalone/drakbackup:2456
-#, fuzzy, c-format
-msgid "Across Network"
-msgstr "Name=መረብ"
-
-#: standalone/drakbackup:2456
-#, fuzzy, c-format
-msgid "On CD-R"
-msgstr "CD ወደ"
-
-#: standalone/drakbackup:2456
-#, fuzzy, c-format
-msgid "On Tape Device"
-msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
-
-#: standalone/drakbackup:2502
-#, c-format
-msgid "Backup Users"
-msgstr ""
-
-#: standalone/drakbackup:2503
-#, c-format
-msgid " (Default is all users)"
-msgstr ""
-
-#: standalone/drakbackup:2516
-#, fuzzy, c-format
-msgid "Please choose what you want to backup"
-msgstr "እባክዎ ለማሳየት የሚፈልጉትን ተጠቃሽ-መረጃ ይምረጡ:"
-
-#: standalone/drakbackup:2517
-#, fuzzy, c-format
-msgid "Backup System"
-msgstr "Name=ሲስተም"
-
-#: standalone/drakbackup:2519
-#, fuzzy, c-format
-msgid "Select user manually"
-msgstr "የአቢወርድ ቋንቋ፦"
-
-#: standalone/drakbackup:2548
-#, c-format
-msgid "Please select data to backup..."
-msgstr ""
-
-#: standalone/drakbackup:2620
-#, fuzzy, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr "ከምንጩ &አሻሽል"
-
-#: standalone/drakbackup:2621
-#, fuzzy, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr "የቅርብ ጊዜ ፋይሎች"
-
-#: standalone/drakbackup:2623
-#, fuzzy, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr "የቅርብ ጊዜ ፋይሎች"
-
-#: standalone/drakbackup:2625
-#, fuzzy, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr "የቅርብ ጊዜ ፋይሎች"
-
-#: standalone/drakbackup:2627
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2628
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr ""
-
-#: standalone/drakbackup:2629
-#, c-format
-msgid "\tDelete backups older than %s day(s)\n"
-msgstr ""
-
-#: standalone/drakbackup:2632
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
-
-#: standalone/drakbackup:2637
-#, fuzzy, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr "የPhoto CD ፋይል"
-
-#: standalone/drakbackup:2638
-#, c-format
-msgid "RW"
-msgstr ""
-
-#: standalone/drakbackup:2639
-#, fuzzy, c-format
-msgid " on device: %s"
-msgstr "የመረብ ዕቃ"
-
-#: standalone/drakbackup:2640
-#, fuzzy, c-format
-msgid " (multi-session)"
-msgstr "ክፍለ ጊዜው ክፈት..."
-
-#: standalone/drakbackup:2641
-#, c-format
-msgid ""
-"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-
-#: standalone/drakbackup:2642
-#, c-format
-msgid "\t\tErase=%s"
-msgstr ""
-
-#: standalone/drakbackup:2644
-#, c-format
-msgid "\tBackup directly to Tape\n"
-msgstr ""
-
-#: standalone/drakbackup:2646
-#, fuzzy, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-msgstr "ስታስቀምጥ በራስ-ገዝ .mo ሰነዶችን ገንባ"
-
-#: standalone/drakbackup:2647
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: standalone/drakbackup:2648
-#, fuzzy, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "ምርጫዎች"
-
-#: standalone/drakbackup:2649
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: standalone/drakbackup:2651
-#, c-format
-msgid "\tBackups use %s and bzip2\n"
-msgstr ""
-
-#: standalone/drakbackup:2652
-#, c-format
-msgid "\tBackups use %s and gzip\n"
-msgstr ""
-
-#: standalone/drakbackup:2653
-#, fuzzy, c-format
-msgid "\tBackups use %s only\n"
-msgstr "ሁሉንም የምስል ፋይሎች"
-
-#: standalone/drakbackup:2655
-#, fuzzy, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "ሁሉንም የምስል ፋይሎች"
-
-#: standalone/drakbackup:2656
-#, fuzzy, c-format
-msgid "\tSend mail to %s\n"
-msgstr "እንደገና የሚሰራ ምንም የለም።"
-
-#: standalone/drakbackup:2657
-#, c-format
-msgid "\tSend mail from %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2658
-#, fuzzy, c-format
-msgid "\tUsing SMTP server %s\n"
-msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-
-#: standalone/drakbackup:2660
-#, fuzzy, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
-msgstr "በአየር"
-
-#: standalone/drakbackup:2661
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: standalone/drakbackup:2662
-#, fuzzy, c-format
-msgid "\t-CD-R.\n"
-msgstr "ሲዲ"
-
-#: standalone/drakbackup:2663
-#, c-format
-msgid "\t-Tape \n"
-msgstr ""
-
-#: standalone/drakbackup:2664
-#, fuzzy, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "በተለወጠበት ቀን"
-
-#: standalone/drakbackup:2665
-#, fuzzy, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "በተለወጠበት ቀን"
-
-#: standalone/drakbackup:2666
-#, fuzzy, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "በተለወጠበት ቀን"
-
-#: standalone/drakbackup:2668
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: standalone/drakbackup:2673
-#, fuzzy, c-format
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr "አሁን ያለውን ዝርዝር ተጠቀም"
-
-#: standalone/drakbackup:2675
-#, fuzzy, c-format
-msgid "- Restore System Files.\n"
-msgstr "ሁሉንም የምስል ፋይሎች"
-
-#: standalone/drakbackup:2677 standalone/drakbackup:2687
-#, fuzzy, c-format
-msgid " - from date: %s %s\n"
-msgstr "ከቀን መቁጠሩያው ላይ ቀኑን ይምረጡ"
-
-#: standalone/drakbackup:2680
-#, fuzzy, c-format
-msgid "- Restore User Files: \n"
-msgstr "ሁሉንም የምስል ፋይሎች"
-
-#: standalone/drakbackup:2685
-#, fuzzy, c-format
-msgid "- Restore Other Files: \n"
-msgstr "ሁሉንም የምስል ፋይሎች"
-
-#: standalone/drakbackup:2864
-#, fuzzy, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr "GHex (%s)፦ ዳታ ፈልግ"
-
-#: standalone/drakbackup:2866
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr ""
-
-#: standalone/drakbackup:2876
-#, c-format
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: standalone/drakbackup:2897
-#, c-format
-msgid " All of your selected data have been "
-msgstr ""
-
-#: standalone/drakbackup:2898
-#, fuzzy, c-format
-msgid " Successfully Restored on %s "
-msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
-
-#: standalone/drakbackup:2999
-#, c-format
-msgid "/usr/bin/star not found, using tar..."
-msgstr ""
-
-#: standalone/drakbackup:3035
-#, fuzzy, c-format
-msgid " Restore Configuration "
-msgstr "የማስተካከያው አራሚ"
-
-#: standalone/drakbackup:3063
-#, c-format
-msgid "OK to restore the other files."
-msgstr ""
-
-#: standalone/drakbackup:3079
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: standalone/drakbackup:3144
-#, fuzzy, c-format
-msgid "Please choose the date to restore:"
-msgstr "እባክዎ ለማሳየት የሚፈልጉትን ተጠቃሽ-መረጃ ይምረጡ:"
-
-#: standalone/drakbackup:3181
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr ""
-
-#: standalone/drakbackup:3183
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr ""
-
-#: standalone/drakbackup:3187
-#, fuzzy, c-format
-msgid "Directory with backups"
-msgstr "አኃዞች (ከክፍተት ጋር)"
-
-#: standalone/drakbackup:3241
-#, c-format
-msgid "Select another media to restore from"
-msgstr ""
-
-#: standalone/drakbackup:3243
-#, fuzzy, c-format
-msgid "Other Media"
-msgstr "ሌላ ምርጫዎች"
-
-#: standalone/drakbackup:3248
-#, fuzzy, c-format
-msgid "Restore system"
-msgstr "Name=ሲስተም"
-
-#: standalone/drakbackup:3249
-#, fuzzy, c-format
-msgid "Restore Users"
-msgstr "ምርጫዎችን ይመልሱ"
-
-#: standalone/drakbackup:3250
-#, fuzzy, c-format
-msgid "Restore Other"
-msgstr "ሌላ ምርጫዎች"
-
-#: standalone/drakbackup:3252
-#, c-format
-msgid "Select path to restore (instead of /)"
-msgstr ""
-
-#: standalone/drakbackup:3256 standalone/drakbackup:3539
-#, fuzzy, c-format
-msgid "Path To Restore To"
-msgstr "የ መረጃ-ባንክ ዱካ"
-
-#: standalone/drakbackup:3259
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: standalone/drakbackup:3261
-#, c-format
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: standalone/drakbackup:3345
-#, c-format
-msgid "Filename text substring to search for (empty string matches all):"
-msgstr ""
-
-#: standalone/drakbackup:3348
-#, fuzzy, c-format
-msgid "Search Backups"
-msgstr "መፈለጊያ ዱካ"
-
-#: standalone/drakbackup:3367
-#, fuzzy, c-format
-msgid "No matches found..."
-msgstr "ምንም ጽሑፍ አልተገኘም"
-
-#: standalone/drakbackup:3371
-#, fuzzy, c-format
-msgid "Restore Selected"
-msgstr "የተመረጠው ፋይሎች (_S)"
-
-#: standalone/drakbackup:3507
-#, c-format
-msgid ""
-"Click date/time to see backup files.\n"
-"Ctrl-Click files to select multiple files."
-msgstr ""
-
-#: standalone/drakbackup:3513
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
-
-#: standalone/drakbackup:3522
-#, fuzzy, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr "ምንም ተጨማሪ ፕሮግራም አልተመረጠም"
-
-#: standalone/drakbackup:3599
-#, c-format
-msgid "Backup files not found at %s."
-msgstr ""
-
-#: standalone/drakbackup:3612
-#, fuzzy, c-format
-msgid "Restore From CD"
-msgstr "የPhoto CD ፋይል"
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-
-#: standalone/drakbackup:3614
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr ""
-
-#: standalone/drakbackup:3624
-#, fuzzy, c-format
-msgid "Restore From Tape"
-msgstr "ከምንጩ &አሻሽል"
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-
-#: standalone/drakbackup:3626
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
-
-#: standalone/drakbackup:3637
-#, fuzzy, c-format
-msgid "Restore Via Network"
-msgstr "የቀይ ባርኔታ መረብ"
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr ""
-
-#: standalone/drakbackup:3638
-#, c-format
-msgid "Host Name"
-msgstr "የእንግዳ ተቀባይ ስም"
-
-#: standalone/drakbackup:3639
-#, c-format
-msgid "Host Path or Module"
-msgstr ""
-
-#: standalone/drakbackup:3646
-#, fuzzy, c-format
-msgid "Password required"
-msgstr "ሚስጥር-ቃል ያስፈልጋል"
-
-#: standalone/drakbackup:3652
-#, fuzzy, c-format
-msgid "Username required"
-msgstr "ሚስጥር-ቃል ያስፈልጋል"
-
-#: standalone/drakbackup:3655
-#, fuzzy, c-format
-msgid "Hostname required"
-msgstr "ሚስጥር-ቃል ያስፈልጋል"
-
-#: standalone/drakbackup:3660
-#, c-format
-msgid "Path or Module required"
-msgstr ""
-
-#: standalone/drakbackup:3672
-#, fuzzy, c-format
-msgid "Files Restored..."
-msgstr "የቅርብ ጊዜ ፋይሎች"
-
-#: standalone/drakbackup:3675
-#, fuzzy, c-format
-msgid "Restore Failed..."
-msgstr "ምርጫዎችን ይመልሱ"
-
-#: standalone/drakbackup:3703
-#, fuzzy, c-format
-msgid "%s not retrieved..."
-msgstr "አልተገኘም"
-
-#: standalone/drakbackup:3929 standalone/drakbackup:3998
-#, fuzzy, c-format
-msgid "Search for files to restore"
-msgstr "ፋይሎች ለማግኘት ይህንን ኮምፒውተር አስስ"
-
-#: standalone/drakbackup:3933
-#, fuzzy, c-format
-msgid "Restore all backups"
-msgstr "ሁሉንም የምስል ፋይሎች"
-
-#: standalone/drakbackup:3941
-#, fuzzy, c-format
-msgid "Custom Restore"
-msgstr "ምርጫዎችን ይመልሱ"
-
-#: standalone/drakbackup:3945 standalone/drakbackup:3994
-#, fuzzy, c-format
-msgid "Restore From Catalog"
-msgstr "ከማውጫን አስወግድ (_V)"
-
-#: standalone/drakbackup:3966
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr ""
-
-#: standalone/drakbackup:3967
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr ""
-
-#: standalone/drakbackup:3968
-#, c-format
-msgid " and the CD is in the drive"
-msgstr ""
-
-#: standalone/drakbackup:3970
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr ""
-
-#: standalone/drakbackup:3986
-#, c-format
-msgid "CD in place - continue."
-msgstr ""
-
-#: standalone/drakbackup:3991
-#, c-format
-msgid "Browse to new restore repository."
-msgstr ""
-
-#: standalone/drakbackup:3992
-#, fuzzy, c-format
-msgid "Directory To Restore From"
-msgstr "በዝርዝር ውስጥ ዶሴ ጨምር"
-
-#: standalone/drakbackup:4028
-#, fuzzy, c-format
-msgid "Restore Progress"
-msgstr "ተሻሽሏል"
-
-#: standalone/drakbackup:4136
-#, fuzzy, c-format
-msgid "Build Backup"
-msgstr "መለያ አስገባ"
-
-#: standalone/drakbackup:4169 standalone/drakbackup:4466
-#, c-format
-msgid "Restore"
-msgstr "ወደ መጀመሪያው መልስ"
-
-#: standalone/drakbackup:4261
-#, c-format
-msgid "Please select data to restore..."
-msgstr ""
-
-#: standalone/drakbackup:4301
-#, fuzzy, c-format
-msgid "Backup system files"
-msgstr "ሁሉንም የምስል ፋይሎች"
-
-#: standalone/drakbackup:4304
-#, fuzzy, c-format
-msgid "Backup user files"
-msgstr "ሁሉንም የምስል ፋይሎች"
-
-#: standalone/drakbackup:4307
-#, fuzzy, c-format
-msgid "Backup other files"
-msgstr "ሁሉንም የምስል ፋይሎች"
-
-#: standalone/drakbackup:4310 standalone/drakbackup:4344
-#, fuzzy, c-format
-msgid "Total Progress"
-msgstr "ተሻሽሏል"
-
-#: standalone/drakbackup:4336
-#, c-format
-msgid "Sending files by FTP"
-msgstr ""
-
-#: standalone/drakbackup:4339
-#, fuzzy, c-format
-msgid "Sending files..."
-msgstr "የቅርብ ጊዜ ፋይሎች"
-
-#: standalone/drakbackup:4409
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr ""
-
-#: standalone/drakbackup:4414
-#, fuzzy, c-format
-msgid "View Backup Configuration."
-msgstr "ይህንን ሰነድ ተመልከት"
-
-#: standalone/drakbackup:4440
-#, fuzzy, c-format
-msgid "Wizard Configuration"
-msgstr "የማስተካከያው አራሚ"
-
-#: standalone/drakbackup:4445
-#, fuzzy, c-format
-msgid "Advanced Configuration"
-msgstr "የማስተካከያው አራሚ"
-
-#: standalone/drakbackup:4450
-#, fuzzy, c-format
-msgid "View Configuration"
-msgstr "የማስተካከያው አራሚ"
-
-#: standalone/drakbackup:4454
-#, fuzzy, c-format
-msgid "View Last Log"
-msgstr "የመጨረሻ ገጽ አሳይ"
-
-#: standalone/drakbackup:4459
-#, fuzzy, c-format
-msgid "Backup Now"
-msgstr "አሁኑኑ ይተላለፍ"
-
-#: standalone/drakbackup:4463
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: standalone/drakbackup:4501
-#, fuzzy, c-format
-msgid "Load profile"
-msgstr "የቅርብ ፋይሎች"
-
-#: standalone/drakbackup:4510
-#, fuzzy, c-format
-msgid "Save profile as..."
-msgstr "እንደ...ያስቀምጡ"
-
-#: standalone/drakbackup:4532 standalone/drakbackup:4535
-#, c-format
-msgid "Drakbackup"
-msgstr ""
-
-#: standalone/drakboot:49
-#, c-format
-msgid "No bootloader found, creating a new configuration"
-msgstr ""
-
-#: standalone/drakboot:84 standalone/harddrake2:190 standalone/harddrake2:191
-#: standalone/logdrake:69 standalone/printerdrake:150
-#: standalone/printerdrake:151 standalone/printerdrake:152
-#, c-format
-msgid "/_File"
-msgstr "/ፋይል (_F)"
-
-#: standalone/drakboot:85 standalone/logdrake:75
-#, c-format
-msgid "/File/_Quit"
-msgstr "/ፋይል (F)/ውጣ (_Q)"
-
-#: standalone/drakboot:85 standalone/harddrake2:191 standalone/logdrake:75
-#: standalone/printerdrake:152
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: standalone/drakboot:125
-#, c-format
-msgid "Text only"
-msgstr ""
-
-#: standalone/drakboot:126
-#, c-format
-msgid "Verbose"
-msgstr ""
-
-#: standalone/drakboot:127
-#, c-format
-msgid "Silent"
-msgstr ""
-
-#: standalone/drakboot:134
-#, c-format
-msgid ""
-"Your system bootloader is not in framebuffer mode. To activate graphical "
-"boot, select a graphic video mode from the bootloader configuration tool."
-msgstr ""
-
-#: standalone/drakboot:135
-#, fuzzy, c-format
-msgid "Do you want to configure it now?"
-msgstr "ምርጫውን መሞከር ይፈልጋሉ?"
-
-#: standalone/drakboot:144
-#, fuzzy, c-format
-msgid "Install themes"
-msgstr "ሲስተም ትከል"
-
-#: standalone/drakboot:146
-#, c-format
-msgid "Graphical boot theme selection"
-msgstr ""
-
-#: standalone/drakboot:149
-#, fuzzy, c-format
-msgid "Graphical boot mode:"
-msgstr "ከቀኝ ወደ ግራ ተራ ተጠቀም"
-
-#: standalone/drakboot:151
-#, c-format
-msgid "Theme"
-msgstr "ጭብጥ"
-
-#: standalone/drakboot:154
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-
-#: standalone/drakboot:159
-#, fuzzy, c-format
-msgid "Create new theme"
-msgstr "አዲስ ሰነድ ፍጠር"
-
-#: standalone/drakboot:191
-#, fuzzy, c-format
-msgid "Default user"
-msgstr "የተጠቃሚ ስም"
-
-#: standalone/drakboot:192
-#, fuzzy, c-format
-msgid "Default desktop"
-msgstr "የነበረው _ሠሌዳ"
-
-#: standalone/drakboot:195
-#, c-format
-msgid "No, I do not want autologin"
-msgstr ""
-
-#: standalone/drakboot:196
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr ""
-
-#: standalone/drakboot:203
-#, fuzzy, c-format
-msgid "System mode"
-msgstr "የመሸፈኛ ዘዴ"
-
-#: standalone/drakboot:206
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr ""
-
-#: standalone/drakboot:272
-#, c-format
-msgid ""
-"Please choose a video mode, it will be applied to each of the boot entries "
-"selected below.\n"
-"Be sure your video card supports the mode you choose."
-msgstr ""
-
-#: standalone/drakbug:41
-#, fuzzy, c-format
-msgid "Mandriva Linux Bug Report Tool"
-msgstr "አንቀጹን መሀል ኩልኩል አድርግ"
-
-#: standalone/drakbug:46
-#, c-format
-msgid "Mandriva Linux Control Center"
-msgstr "የMandriva Linux ቁጥጥር ማእከል"
-
-#: standalone/drakbug:48
-#, fuzzy, c-format
-msgid "Synchronization tool"
-msgstr "የመስሪያውን ምልክት"
-
-#: standalone/drakbug:49 standalone/drakbug:152
-#, fuzzy, c-format
-msgid "Standalone Tools"
-msgstr "/መሣሪያዎች/Toolbox"
-
-#: standalone/drakbug:50
-#, c-format
-msgid "HardDrake"
-msgstr ""
-
-#: standalone/drakbug:51
-#, c-format
-msgid "Mandriva Online"
-msgstr "Mandriva Online"
-
-#: standalone/drakbug:52
-#, c-format
-msgid "Menudrake"
-msgstr ""
-
-#: standalone/drakbug:53
-#, c-format
-msgid "Msec"
-msgstr ""
-
-#: standalone/drakbug:54
-#, fuzzy, c-format
-msgid "Remote Control"
-msgstr "ምስል መቆጣጠሪያ"
-
-#: standalone/drakbug:55
-#, fuzzy, c-format
-msgid "Software Manager"
-msgstr "ማውጫዎች &አስተዳዳሪ"
-
-#: standalone/drakbug:56
-#, c-format
-msgid "Urpmi"
-msgstr ""
-
-#: standalone/drakbug:57
-#, fuzzy, c-format
-msgid "Windows Migration tool"
-msgstr "የመስሪያውን ፍንጭ አሳይ"
-
-#: standalone/drakbug:58 standalone/draksambashare:1234
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: standalone/drakbug:59
-#, fuzzy, c-format
-msgid "Configuration Wizards"
-msgstr "የማስተካከያው አራሚ"
-
-#: standalone/drakbug:81
-#, c-format
-msgid "Select Mandriva Tool:"
-msgstr ""
-
-#: standalone/drakbug:82
-#, c-format
-msgid ""
-"or Application Name\n"
-"(or Full Path):"
-msgstr ""
-
-#: standalone/drakbug:85
-#, fuzzy, c-format
-msgid "Find Package"
-msgstr "ሐረጉን ፈልግ"
-
-#: standalone/drakbug:87
-#, fuzzy, c-format
-msgid "Package: "
-msgstr "ጥቅል"
-
-#: standalone/drakbug:88
-#, c-format
-msgid "Kernel:"
-msgstr ""
-
-#: standalone/drakbug:101
-#, c-format
-msgid ""
-"To submit a bug report, click on the report button. \n"
-"This will open a web browser window on %s where you'll find a form to fill "
-"in. The information displayed above will be transferred to that server. \n"
-"Things useful to include in your report are the output of lspci, kernel "
-"version, and /proc/cpuinfo."
-msgstr ""
-
-#: standalone/drakbug:107
-#, c-format
-msgid "Report"
-msgstr "ሪፖርት"
-
-#: standalone/drakbug:162
-#, fuzzy, c-format
-msgid "Not installed"
-msgstr "አልተገኘም"
-
-#: standalone/drakbug:174
-#, fuzzy, c-format
-msgid "Package not installed"
-msgstr "ማንበብ አልቻለም፦ "
-
-#: standalone/drakclock:29
-#, c-format
-msgid "DrakClock"
-msgstr ""
-
-#: standalone/drakclock:39
-#, fuzzy, c-format
-msgid "not defined"
-msgstr "አልተገኘም"
-
-#: standalone/drakclock:41
-#, fuzzy, c-format
-msgid "Change Time Zone"
-msgstr "ቀን እና ሰዓት"
-
-#: standalone/drakclock:45
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr ""
-
-#: standalone/drakclock:47
-#, c-format
-msgid "GMT - DrakClock"
-msgstr ""
-
-#: standalone/drakclock:47 standalone/finish-install:57
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr ""
-
-#: standalone/drakclock:75
-#, fuzzy, c-format
-msgid "Network Time Protocol"
-msgstr "ቀን እና ሰዓት"
-
-#: standalone/drakclock:77
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-
-#: standalone/drakclock:78
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr ""
-
-#: standalone/drakclock:86
-#, c-format
-msgid "Server:"
-msgstr "ተጠሪ፦"
-
-#: standalone/drakclock:124
-#, c-format
-msgid "Could not synchronize with %s."
-msgstr ""
-
-#: standalone/drakclock:146 standalone/drakclock:156
-#, c-format
-msgid "Reset"
-msgstr "እንደነበረ አድረግ"
-
-#: standalone/drakclock:224
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol\n"
-"\n"
-"Do you want to install ntp?"
-msgstr ""
-
-#: standalone/drakconnect:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "የቀይ ባርኔታ መረብ"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Gateway:"
-msgstr ""
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, fuzzy, c-format
-msgid "Interface:"
-msgstr "የተጠቃሚው እይታ"
-
-#: standalone/drakconnect:93 standalone/net_monitor:116
-#, c-format
-msgid "Wait please"
-msgstr "ይጠብቁ እባክዎ"
-
-#: standalone/drakconnect:109
-#, fuzzy, c-format
-msgid "Interface"
-msgstr "የተጠቃሚው እይታ"
-
-#: standalone/drakconnect:109 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "State"
-msgstr "ሁኔታ"
-
-#: standalone/drakconnect:126
-#, c-format
-msgid "Hostname: "
-msgstr "የእንግዳ ተቀባይ ስም፦ "
-
-#: standalone/drakconnect:128
-#, fuzzy, c-format
-msgid "Configure hostname..."
-msgstr "ፕሮግራሙን አስተካክል"
-
-#: standalone/drakconnect:142 standalone/drakconnect:845
-#, c-format
-msgid "LAN configuration"
-msgstr "የቅርብ መረብ ምርጫ"
-
-#: standalone/drakconnect:147
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr ""
-
-#: standalone/drakconnect:155 standalone/drakconnect:237
-#: standalone/drakconnect:241
-#, c-format
-msgid "Apply"
-msgstr "ተጠቀም"
-
-#: standalone/drakconnect:188
-#, c-format
-msgid "Manage connections"
-msgstr "ግንኙነቶችን ይቆጣጠሩ"
-
-#: standalone/drakconnect:215
-#, fuzzy, c-format
-msgid "Device selected"
-msgstr "የተመረጠው ፋይሎች (_S)"
-
-#: standalone/drakconnect:296
-#, fuzzy, c-format
-msgid "IP configuration"
-msgstr "የማስተካከያው አራሚ"
-
-#: standalone/drakconnect:335
-#, c-format
-msgid "DNS servers"
-msgstr ""
-
-#: standalone/drakconnect:343
-#, fuzzy, c-format
-msgid "Search Domain"
-msgstr "የObjectDirectory ዶሜን"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "static"
-msgstr ""
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "DHCP"
-msgstr "DHCP"
-
-#: standalone/drakconnect:515
-#, c-format
-msgid "Flow control"
-msgstr "የፍሰት ቁጥጥር"
-
-#: standalone/drakconnect:516
-#, fuzzy, c-format
-msgid "Line termination"
-msgstr " መለያ መስመር፦"
-
-#: standalone/drakconnect:527
-#, c-format
-msgid "Modem timeout"
-msgstr ""
-
-#: standalone/drakconnect:531
-#, fuzzy, c-format
-msgid "Use lock file"
-msgstr "ፋይሉ በፊትም ነበር። የ-yes ምርጫን ተጠቀሙ።"
-
-#: standalone/drakconnect:533
-#, c-format
-msgid "Wait for dialup tone before dialing"
-msgstr ""
-
-#: standalone/drakconnect:536
-#, c-format
-msgid "Busy wait"
-msgstr "እባክዎ ይጠብቁ.."
-
-#: standalone/drakconnect:541
-#, fuzzy, c-format
-msgid "Modem sound"
-msgstr "ድምፅ የለም"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Enable"
-msgstr "ይቻል"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Disable"
-msgstr "አይቻል"
-
-#: standalone/drakconnect:593 standalone/harddrake2:50
-#, c-format
-msgid "Media class"
-msgstr ""
-
-#: standalone/drakconnect:594
-#, fuzzy, c-format
-msgid "Module name"
-msgstr "የፋይል ስም አቅድ"
-
-#: standalone/drakconnect:595
-#, fuzzy, c-format
-msgid "Mac Address"
-msgstr "ኢሜያል አድራሻ"
-
-#: standalone/drakconnect:596 standalone/harddrake2:28
-#: standalone/harddrake2:120
-#, c-format
-msgid "Bus"
-msgstr ""
-
-#: standalone/drakconnect:597 standalone/harddrake2:34
-#, fuzzy, c-format
-msgid "Location on the bus"
-msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
-
-#: standalone/drakconnect:700 standalone/drakgw:311
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-
-#: standalone/drakconnect:709
-#, fuzzy, c-format
-msgid "Remove a network interface"
-msgstr "የአቢወርድ ቋንቋ፦"
-
-#: standalone/drakconnect:713
-#, c-format
-msgid "Select the network interface to remove:"
-msgstr ""
-
-#: standalone/drakconnect:745
-#, c-format
-msgid ""
-"An error occurred while deleting the \"%s\" network interface:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: standalone/drakconnect:746
-#, c-format
-msgid ""
-"Congratulations, the \"%s\" network interface has been successfully deleted"
-msgstr ""
-
-#: standalone/drakconnect:761
-#, fuzzy, c-format
-msgid "No IP"
-msgstr "የማተሚያ IP"
-
-#: standalone/drakconnect:762
-#, fuzzy, c-format
-msgid "No Mask"
-msgstr "ፋይል የለም"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "up"
-msgstr "ወደላይ"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "down"
-msgstr "ወደታች"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Connected"
-msgstr "ተገናኝቷል"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Not connected"
-msgstr "አልተገናኘም"
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Disconnect..."
-msgstr "ግንኙነት አቋርጥ..."
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Connect..."
-msgstr ""
-
-#: standalone/drakconnect:841
-#, fuzzy, c-format
-msgid "Deactivate now"
-msgstr "አሁኑኑ ይተላለፍ"
-
-#: standalone/drakconnect:841
-#, fuzzy, c-format
-msgid "Activate now"
-msgstr "አሁኑኑ ይተላለፍ"
-
-#: standalone/drakconnect:849
-#, c-format
-msgid ""
-"You do not have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: standalone/drakconnect:863
-#, c-format
-msgid "LAN Configuration"
-msgstr "የቅርብ መረብ ምርጫ"
-
-#: standalone/drakconnect:875
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: standalone/drakconnect:884
-#, c-format
-msgid "Boot Protocol"
-msgstr ""
-
-#: standalone/drakconnect:885
-#, fuzzy, c-format
-msgid "Started on boot"
-msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
-
-#: standalone/drakconnect:921
-#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakconnect:975 standalone/net_applet:51
-#, c-format
-msgid ""
-"You do not have any configured Internet connection.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: standalone/drakconnect:976 standalone/drakroam:34 standalone/net_applet:52
-#, fuzzy, c-format
-msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
-msgstr "የአቢወርድ ቋንቋ፦"
-
-#: standalone/drakconnect:981
-#, fuzzy, c-format
-msgid "Internet connection configuration"
-msgstr "የኢንተርኔት ሰዓትን ተጠቀም"
-
-#: standalone/drakconnect:994
-#, c-format
-msgid "Third DNS server (optional)"
-msgstr ""
-
-#: standalone/drakconnect:1016
-#, fuzzy, c-format
-msgid "Internet Connection Configuration"
-msgstr "የኢንተርኔት ሰዓትን ተጠቀም"
-
-#: standalone/drakconnect:1017
-#, fuzzy, c-format
-msgid "Internet access"
-msgstr "Name=ኢንተርኔት"
-
-#: standalone/drakconnect:1019 standalone/net_monitor:95
-#, fuzzy, c-format
-msgid "Connection type: "
-msgstr "የፋይሉ ዓይነት"
-
-#: standalone/drakconnect:1022
-#, c-format
-msgid "Status:"
-msgstr "ሁኔታ፦"
-
-#: standalone/drakconnect:1027
-#, c-format
-msgid "Parameters"
-msgstr "መለኪያዎች"
-
-#: standalone/drakedm:40
-#, c-format
-msgid "GDM (GNOME Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:41
-#, c-format
-msgid "KDM (KDE Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:42
-#, fuzzy, c-format
-msgid "XDM (X Display Manager)"
-msgstr "የአቢወርድ የተጨማሪ ፕሮግራም አስተዳደር"
-
-#: standalone/drakedm:53
-#, fuzzy, c-format
-msgid "Choosing a display manager"
-msgstr "የአቢወርድ የተጨማሪ ፕሮግራም አስተዳደር"
-
-#: standalone/drakedm:54
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-
-#: standalone/drakedm:72
-#, c-format
-msgid "The change is done, do you want to restart the dm service?"
-msgstr ""
-
-#: standalone/drakedm:73
-#, c-format
-msgid ""
-"You are going to close all running programs and lose your current session. "
-"Are you really sure that you want to restart the dm service?"
-msgstr ""
-
-#: standalone/drakfont:182
-#, fuzzy, c-format
-msgid "Search installed fonts"
-msgstr "&መረጃውን አስስ"
-
-#: standalone/drakfont:184
-#, c-format
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: standalone/drakfont:207
-#, fuzzy, c-format
-msgid "parse all fonts"
-msgstr "ሁሉንም የምስል ፋይሎች"
-
-#: standalone/drakfont:209
-#, fuzzy, c-format
-msgid "No fonts found"
-msgstr "ምንም ጽሑፍ አልተገኘም"
-
-#: standalone/drakfont:217 standalone/drakfont:259 standalone/drakfont:326
-#: standalone/drakfont:359 standalone/drakfont:367 standalone/drakfont:393
-#: standalone/drakfont:411 standalone/drakfont:425
-#, c-format
-msgid "done"
-msgstr "አልቋል"
-
-#: standalone/drakfont:222
-#, c-format
-msgid "Could not find any font in your mounted partitions"
-msgstr ""
-
-#: standalone/drakfont:257
-#, fuzzy, c-format
-msgid "Reselect correct fonts"
-msgstr "ይህ ትክክል ነው?"
-
-#: standalone/drakfont:260
-#, c-format
-msgid "Could not find any font.\n"
-msgstr ""
-
-#: standalone/drakfont:270
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr ""
-
-#: standalone/drakfont:295
-#, c-format
-msgid "%s fonts conversion"
-msgstr "%s የፊደላት ለውጥ"
-
-#: standalone/drakfont:324
-#, c-format
-msgid "Fonts copy"
-msgstr "የፊደላት ቅጂ"
-
-#: standalone/drakfont:327
-#, c-format
-msgid "True Type fonts installation"
-msgstr ""
-
-#: standalone/drakfont:334
-#, fuzzy, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "ሲያትም እባክዎ ይጠብቁ\n"
-
-#: standalone/drakfont:335
-#, c-format
-msgid "True Type install done"
-msgstr ""
-
-#: standalone/drakfont:341 standalone/drakfont:356
-#, fuzzy, c-format
-msgid "type1inst building"
-msgstr "የሰነድ ግንባታ..."
-
-#: standalone/drakfont:350
-#, c-format
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: standalone/drakfont:360
-#, fuzzy, c-format
-msgid "Suppress Temporary Files"
-msgstr "ሁሉንም የምስል ፋይሎች"
-
-#: standalone/drakfont:363
-#, fuzzy, c-format
-msgid "Restart XFS"
-msgstr "እንደገና አታስነሳ"
-
-#: standalone/drakfont:409 standalone/drakfont:419
-#, fuzzy, c-format
-msgid "Suppress Fonts Files"
-msgstr "ሁሉንም የምስል ፋይሎች"
-
-#: standalone/drakfont:421
-#, c-format
-msgid "xfs restart"
-msgstr "xfsን እንደገና ጀምር"
-
-#: standalone/drakfont:429
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
-
-#: standalone/drakfont:473 standalone/drakfont:482
-#, c-format
-msgid "DrakFont"
-msgstr ""
-
-#: standalone/drakfont:483
-#, c-format
-msgid "Font List"
-msgstr "የፊደል ዝርዝር"
-
-#: standalone/drakfont:486
-#, c-format
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: standalone/drakfont:492
-#, c-format
-msgid "About"
-msgstr "ስለ"
-
-#: standalone/drakfont:494 standalone/drakfont:718
-#, c-format
-msgid "Uninstall"
-msgstr "አፍርስ"
-
-#: standalone/drakfont:495
-#, c-format
-msgid "Import"
-msgstr "ከውጭ አስገባ"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakfont:513
-#, c-format
-msgid "Copyright (C) 2001-2006 by Mandriva"
-msgstr ""
-
-#: standalone/drakfont:515
-#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: standalone/drakfont:531
-#, c-format
-msgid ""
-"Thanks:\n"
-"\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
-msgstr ""
-
-#: standalone/drakfont:550
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr ""
-
-#: standalone/drakfont:561
-#, c-format
-msgid "Ghostscript"
-msgstr "ጎስትስክሪፕት"
-
-#: standalone/drakfont:562
-#, c-format
-msgid "StarOffice"
-msgstr ""
-
-#: standalone/drakfont:563
-#, c-format
-msgid "Abiword"
-msgstr "አቢወርድ"
-
-#: standalone/drakfont:564
-#, fuzzy, c-format
-msgid "Generic Printers"
-msgstr "ሁሉም ማተሚያዎች"
-
-#: standalone/drakfont:578
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: standalone/drakfont:579
-#, fuzzy, c-format
-msgid "File Selection"
-msgstr "የተመረጠውን አጥፉ"
-
-#: standalone/drakfont:583
-#, c-format
-msgid "Fonts"
-msgstr "የፊደል ቅርጾች"
-
-#: standalone/drakfont:646
-#, fuzzy, c-format
-msgid "Import fonts"
-msgstr "የፊደል ቅርጽ ክተቱ"
-
-#: standalone/drakfont:651
-#, c-format
-msgid "Install fonts"
-msgstr "ፊደላት ትከል"
-
-#: standalone/drakfont:681
-#, c-format
-msgid "Are you sure you want to uninstall the following fonts?"
-msgstr ""
-
-#: standalone/drakfont:726
-#, fuzzy, c-format
-msgid "Unselected All"
-msgstr "ሁሉንም &ተዉት"
-
-#: standalone/drakfont:729
-#, fuzzy, c-format
-msgid "Selected All"
-msgstr "ሁሉንም &ተዉት"
-
-#: standalone/drakfont:743 standalone/drakfont:762
-#, fuzzy, c-format
-msgid "Importing fonts"
-msgstr "የፊደል ቅርጽ ክተቱ"
-
-#: standalone/drakfont:747 standalone/drakfont:767
-#, c-format
-msgid "Initial tests"
-msgstr "የመጀመሪያ ሙከራዎች"
-
-#: standalone/drakfont:748
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "ፊደላትን ወደ ሲስተሜ ቅዳ"
-
-#: standalone/drakfont:749
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "ፊደላትን ትከል እና ለውጥ"
-
-#: standalone/drakfont:750
-#, fuzzy, c-format
-msgid "Post Install"
-msgstr "ሲስተም ትከል"
-
-#: standalone/drakfont:768
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "ከሲስተሜ ውስጥ ፊደላትን አስወግድ"
-
-#: standalone/drakfont:769
-#, fuzzy, c-format
-msgid "Post Uninstall"
-msgstr "ፖስታ ቤት"
-
-#: standalone/drakgw:50 standalone/drakvpn:51
-#, c-format
-msgid "Sorry, we support only 2.4 and above kernels."
-msgstr ""
-
-#: standalone/drakgw:75
-#, fuzzy, c-format
-msgid "Internet Connection Sharing"
-msgstr "የኢንተርኔት ሰዓትን ተጠቀም"
-
-#: standalone/drakgw:79
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-
-#: standalone/drakgw:95
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-
-#: standalone/drakgw:99
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-
-#: standalone/drakgw:105
-#, fuzzy, c-format
-msgid "Reconfigure"
-msgstr "ተስተካክሏል"
-
-#: standalone/drakgw:145
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-
-#: standalone/drakgw:156
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-
-#: standalone/drakgw:177
-#, fuzzy, c-format
-msgid "Local Area Network settings"
-msgstr "የቀይ ባርኔታ መረብ"
-
-#: standalone/drakgw:180
-#, c-format
-msgid "Local IP address"
-msgstr ""
-
-#: standalone/drakgw:182
-#, fuzzy, c-format
-msgid "The internal domain name"
-msgstr "ህገ ወጥ የዶሴ ስም"
-
-#: standalone/drakgw:188
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-
-#: standalone/drakgw:204
-#, fuzzy, c-format
-msgid "Domain Name Server (DNS) configuration"
-msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-
-#: standalone/drakgw:208
-#, c-format
-msgid "Use this gateway as domain name server"
-msgstr ""
-
-#: standalone/drakgw:209
-#, fuzzy, c-format
-msgid "The DNS Server IP"
-msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-
-#: standalone/drakgw:236
-#, c-format
-msgid ""
-"DHCP Server Configuration.\n"
-"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you do not know the meaning of an option, simply leave it as it is."
-msgstr ""
-
-#: standalone/drakgw:243
-#, fuzzy, c-format
-msgid "Use automatic configuration (DHCP)"
-msgstr "ራስ-ገዝ ትርጉሞች"
-
-#: standalone/drakgw:244
-#, fuzzy, c-format
-msgid "The DHCP start range"
-msgstr "አዲስ ዝርዝር ጀምር"
-
-#: standalone/drakgw:245
-#, fuzzy, c-format
-msgid "The DHCP end range"
-msgstr "አሁን ያለውን ጨዋታ ጨርስ"
-
-#: standalone/drakgw:246
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr ""
-
-#: standalone/drakgw:247
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr ""
-
-#: standalone/drakgw:270
-#, c-format
-msgid "Proxy caching server (SQUID)"
-msgstr ""
-
-#: standalone/drakgw:274
-#, c-format
-msgid "Use this gateway as proxy caching server"
-msgstr ""
-
-#: standalone/drakgw:275
-#, c-format
-msgid "Admin mail"
-msgstr ""
-
-#: standalone/drakgw:276
-#, fuzzy, c-format
-msgid "Visible hostname"
-msgstr "ህገ ወጥ የዶሴ ስም"
-
-#: standalone/drakgw:277
-#, fuzzy, c-format
-msgid "Proxy port"
-msgstr "ፀባይ"
-
-#: standalone/drakgw:278
-#, fuzzy, c-format
-msgid "Cache size (MB)"
-msgstr "የፊደል ቅርጽ መጠን፦"
-
-#: standalone/drakgw:300
-#, fuzzy, c-format
-msgid "Broadcast printer information"
-msgstr "የቋሚ ዲስክ መረጃ"
-
-#: standalone/drakgw:317
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr ""
-
-#: standalone/drakgw:323
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr ""
-
-#: standalone/drakgw:329
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP) and\n"
-" a Transparent Proxy Cache server (SQUID)."
-msgstr ""
-
-#: standalone/drakgw:363
-#, c-format
-msgid "Disabling servers..."
-msgstr ""
-
-#: standalone/drakgw:377
-#, fuzzy, c-format
-msgid "Firewalling configuration detected!"
-msgstr "ተስተካክሎ የተቀመጠውን ባዕድ መነሻ ጥቀስ"
-
-#: standalone/drakgw:378
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-
-#: standalone/drakgw:383
-#, c-format
-msgid "Configuring..."
-msgstr ""
-
-#: standalone/drakgw:384
-#, c-format
-msgid "Configuring firewall..."
-msgstr ""
-
-#: standalone/drakhelp:17
-#, c-format
-msgid ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"\n"
-"Usage: \n"
-msgstr ""
-
-#: standalone/drakhelp:22
-#, fuzzy, c-format
-msgid " --help - display this help \n"
-msgstr "የመረጃ ማውጫ አሳይ"
-
-#: standalone/drakhelp:23
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr ""
-
-#: standalone/drakhelp:24
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-
-#: standalone/drakhelp:51
-#, fuzzy, c-format
-msgid "Mandriva Linux Help Center"
-msgstr "አንቀጹን መሀል ኩልኩል አድርግ"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "No Help entry for %s\n"
-msgstr ""
-
-#: standalone/drakhosts:98
-#, c-format
-msgid "Please add an host to be able to modify it."
-msgstr ""
-
-#: standalone/drakhosts:108
-#, fuzzy, c-format
-msgid "Please modify information"
-msgstr "ዝርዝር መረጃ"
-
-#: standalone/drakhosts:109
-#, fuzzy, c-format
-msgid "Please delete information"
-msgstr "ዝርዝር መረጃ"
-
-#: standalone/drakhosts:110
-#, fuzzy, c-format
-msgid "Please add information"
-msgstr "ዝርዝር መረጃ"
-
-#: standalone/drakhosts:115
-#, c-format
-msgid "IP address:"
-msgstr ""
-
-#: standalone/drakhosts:116
-#, c-format
-msgid "Host name:"
-msgstr ""
-
-#: standalone/drakhosts:117
-#, c-format
-msgid "Host Aliases:"
-msgstr ""
-
-#: standalone/drakhosts:123
-#, c-format
-msgid "Please enter a valid IP address."
-msgstr ""
-
-#: standalone/drakhosts:129
-#, c-format
-msgid "Same IP is already in %s file."
-msgstr ""
-
-#: standalone/drakhosts:197
-#, c-format
-msgid "Host Aliases"
-msgstr ""
-
-#: standalone/drakhosts:237
-#, c-format
-msgid "DrakHOSTS manage hosts definitions"
-msgstr ""
-
-#: standalone/drakhosts:246
-#, c-format
-msgid "Failed to add host."
-msgstr ""
-
-#: standalone/drakhosts:253
-#, c-format
-msgid "Failed to Modify host."
-msgstr ""
-
-#: standalone/drakhosts:260
-#, c-format
-msgid "Failed to remove host."
-msgstr ""
-
-#: standalone/drakids:26
-#, fuzzy, c-format
-msgid "Allowed addresses"
-msgstr "ለሁሉም ተጠቃሚዎች ፍቀድ"
-
-#: standalone/drakids:57
-#, c-format
-msgid "Log"
-msgstr ""
-
-#: standalone/drakids:61
-#, fuzzy, c-format
-msgid "Clear logs"
-msgstr "ሁሉንም ሰርዝ"
-
-#: standalone/drakids:62 standalone/drakids:67 standalone/net_applet:470
-#, c-format
-msgid "Blacklist"
-msgstr ""
-
-#: standalone/drakids:63 standalone/drakids:80 standalone/net_applet:475
-#, c-format
-msgid "Whitelist"
-msgstr ""
-
-#: standalone/drakids:71
-#, fuzzy, c-format
-msgid "Remove from blacklist"
-msgstr "ከLVM አስወግድ"
-
-#: standalone/drakids:72
-#, c-format
-msgid "Move to whitelist"
-msgstr ""
-
-#: standalone/drakids:84
-#, fuzzy, c-format
-msgid "Remove from whitelist"
-msgstr "ከLVM አስወግድ"
-
-#: standalone/drakids:136 standalone/drakids:145 standalone/drakids:170
-#: standalone/drakids:179 standalone/drakids:189 standalone/drakids:265
-#: standalone/drakroam:182 standalone/net_applet:202 standalone/net_applet:385
-#, fuzzy, c-format
-msgid "Unable to contact daemon"
-msgstr "ከአንጸባራቂ %s ጋር መገናኘት አልተቻለም"
-
-#: standalone/drakids:202
-#, fuzzy, c-format
-msgid "Date"
-msgstr "ሁኔታ"
-
-#: standalone/drakids:203
-#, fuzzy, c-format
-msgid "Attacker"
-msgstr "ያለ ዝርዝሮች"
-
-#: standalone/drakids:204
-#, fuzzy, c-format
-msgid "Attack type"
-msgstr "ዓይነት፦"
-
-#: standalone/drakids:205
-#, fuzzy, c-format
-msgid "Service"
-msgstr "አገልግሎት"
-
-#: standalone/drakids:206 standalone/net_applet:72
-#, fuzzy, c-format
-msgid "Network interface"
-msgstr "የተጠቃሚው እይታ"
-
-#: standalone/draknfs:41
-#, c-format
-msgid "map root user as anonymous"
-msgstr ""
-
-#: standalone/draknfs:42
-#, c-format
-msgid "map all users to anonymous user"
-msgstr ""
-
-#: standalone/draknfs:43
-#, c-format
-msgid "No user UID mapping"
-msgstr ""
-
-#: standalone/draknfs:44
-#, c-format
-msgid "allow real remote root access"
-msgstr ""
-
-#: standalone/draknfs:83
-#, c-format
-msgid "NFS server"
-msgstr ""
-
-#: standalone/draknfs:83
-#, c-format
-msgid "Restarting/Reloading NFS server..."
-msgstr ""
-
-#: standalone/draknfs:84
-#, c-format
-msgid "Error Restarting/Reloading NFS server"
-msgstr ""
-
-#: standalone/draknfs:100 standalone/draksambashare:203
-#, c-format
-msgid "Directory Selection"
-msgstr ""
-
-#: standalone/draknfs:105 standalone/draksambashare:208
-#, c-format
-msgid "Should be a directory."
-msgstr ""
-
-#: standalone/draknfs:136
-#, c-format
-msgid ""
-"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
-"ways:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">single host:</span> a host either by an "
-"abbreviated name recognized be the resolver, fully qualified domain name, or "
-"an IP address\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">netgroups:</span> NIS netgroups may be given "
-"as @group.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">wildcards:</span> machine names may contain "
-"the wildcard characters * and ?. For instance: *.cs.foo.edu matches all "
-"hosts in the domain cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP networks:</span> you can also export "
-"directories to all hosts on an IP (sub-)network simultaneously. for example, "
-"either `/255.255.252.0' or `/22' appended to the network base address "
-"result.\n"
-msgstr ""
-
-#: standalone/draknfs:151
-#, c-format
-msgid ""
-"<span weight=\"bold\">User ID options</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map root user as anonymous:</span> map "
-"requests from uid/gid 0 to the anonymous uid/gid (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">allow real remote root access:</span> turn "
-"off root squashing. This option is mainly useful for diskless clients "
-"(no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map all users to anonymous user:</span> map "
-"all uids and gids to the anonymous user (all_squash). Useful for NFS-"
-"exported public FTP directories, news spool directories, etc. The opposite "
-"option is no user UID mapping (no_all_squash), which is the default "
-"setting.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid and anongid:</span> explicitly set "
-"the uid and gid of the anonymous account.\n"
-msgstr ""
-
-#: standalone/draknfs:167
-#, c-format
-msgid "Synchronous access:"
-msgstr ""
-
-#: standalone/draknfs:168
-#, c-format
-msgid "Secured Connection:"
-msgstr ""
-
-#: standalone/draknfs:169
-#, c-format
-msgid "Read-Only share:"
-msgstr ""
-
-#: standalone/draknfs:171
-#, c-format
-msgid "<span weight=\"bold\">Advanced Options</span>"
-msgstr ""
-
-#: standalone/draknfs:172
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> this option requires that "
-"requests originate on an internet port less than IPPORT_RESERVED (1024). "
-"This option is on by default."
-msgstr ""
-
-#: standalone/draknfs:173
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> allow either only read or both "
-"read and write requests on this NFS volume. The default is to disallow any "
-"request which changes the filesystem. This can also be made explicit by "
-"using this option."
-msgstr ""
-
-#: standalone/draknfs:174
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> disallows the NFS server to "
-"violate the NFS protocol and to reply to requests before any changes made by "
-"these requests have been committed to stable storage (e.g. disc drive)."
-msgstr ""
-
-#: standalone/draknfs:306
-#, c-format
-msgid "Please add an NFS share to be able to modify it."
-msgstr ""
-
-#: standalone/draknfs:378
-#, fuzzy, c-format
-msgid "Advanced Options Help"
-msgstr "የማስተካከያው አራሚ"
-
-#: standalone/draknfs:389
-#, c-format
-msgid "NFS directory"
-msgstr ""
-
-#: standalone/draknfs:391 standalone/draksambashare:592
-#: standalone/draksambashare:771
-#, c-format
-msgid "Directory:"
-msgstr "ዶሴ:"
-
-#: standalone/draknfs:394
-#, c-format
-msgid "Host access"
-msgstr ""
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Access:"
-msgstr ""
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Hosts Access"
-msgstr ""
-
-#: standalone/draknfs:399
-#, c-format
-msgid "User ID Mapping"
-msgstr ""
-
-#: standalone/draknfs:401
-#, c-format
-msgid "User ID:"
-msgstr ""
-
-#: standalone/draknfs:401
-#, c-format
-msgid "Help User ID"
-msgstr ""
-
-#: standalone/draknfs:402
-#, c-format
-msgid "Anonymous user ID:"
-msgstr ""
-
-#: standalone/draknfs:403
-#, c-format
-msgid "Anonymous Group ID:"
-msgstr ""
-
-#: standalone/draknfs:444
-#, c-format
-msgid "Can't create this directory."
-msgstr ""
-
-#: standalone/draknfs:447
-#, c-format
-msgid "You must specify hosts access."
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Share Directory"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Hosts Wildcard"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "General Options"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Custom Options"
-msgstr ""
-
-#: standalone/draknfs:539 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Please enter a directory to share."
-msgstr ""
-
-#: standalone/draknfs:546
-#, c-format
-msgid "Please use the modify button to set right access."
-msgstr ""
-
-#: standalone/draknfs:600
-#, c-format
-msgid "DrakNFS manage NFS shares"
-msgstr ""
-
-#: standalone/draknfs:609
-#, c-format
-msgid "Failed to add NFS share."
-msgstr ""
-
-#: standalone/draknfs:616
-#, c-format
-msgid "Failed to Modify NFS share."
-msgstr ""
-
-#: standalone/draknfs:623
-#, c-format
-msgid "Failed to remove an NFS share."
-msgstr ""
-
-#: standalone/drakperm:21
-#, c-format
-msgid "System settings"
-msgstr "የስይስተም ምርጫዎች"
-
-#: standalone/drakperm:22
-#, fuzzy, c-format
-msgid "Custom settings"
-msgstr "የአሁኑን ምርጫዎች"
-
-#: standalone/drakperm:23
-#, fuzzy, c-format
-msgid "Custom & system settings"
-msgstr "Comment=የመደቡ ይዞታዎች"
-
-#: standalone/drakperm:43
-#, c-format
-msgid "Editable"
-msgstr ""
-
-#: standalone/drakperm:48 standalone/drakperm:323
-#: standalone/draksambashare:101
-#, c-format
-msgid "Path"
-msgstr "መተላለፊያ"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "User"
-msgstr "ተጠቃሚ"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "Group"
-msgstr "የውይይት መድረክ"
-
-#: standalone/drakperm:48 standalone/drakperm:335
-#, c-format
-msgid "Permissions"
-msgstr "ፈቃዶች"
-
-#: standalone/drakperm:57
-#, c-format
-msgid "Add a new rule"
-msgstr ""
-
-#: standalone/drakperm:64 standalone/drakperm:99 standalone/drakperm:124
-#, fuzzy, c-format
-msgid "Edit current rule"
-msgstr "የአሁኑን ግለ መግለጫ _ያስተካክሉ..."
-
-#: standalone/drakperm:106
-#, c-format
-msgid ""
-"Here you can see files to use in order to fix permissions, owners, and "
-"groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
-msgstr ""
-
-#: standalone/drakperm:109
-#, c-format
-msgid ""
-"The current security level is %s.\n"
-"Select permissions to see/edit"
-msgstr ""
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Up"
-msgstr "ወደላይ"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Move selected rule up one level"
-msgstr ""
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Down"
-msgstr "ወደታች"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Move selected rule down one level"
-msgstr ""
-
-#: standalone/drakperm:122
-#, fuzzy, c-format
-msgid "Add a rule"
-msgstr "ሰነዶችን ጨምር"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a new rule at the end"
-msgstr ""
-
-#: standalone/drakperm:123
-#, fuzzy, c-format
-msgid "Delete selected rule"
-msgstr "የተመረጠው መለያ ምልክቶች አጥፉ"
-
-#: standalone/drakperm:242
-#, c-format
-msgid "browse"
-msgstr "ቃኝ"
-
-#: standalone/drakperm:247
-#, fuzzy, c-format
-msgid "user"
-msgstr "ጥቅም"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "group"
-msgstr "መድረክ"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "other"
-msgstr "ሌላ"
-
-#: standalone/drakperm:252
-#, c-format
-msgid "Read"
-msgstr "አንብብ"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:255
-#, fuzzy, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "ለፋይል %s መጻፍ አልተቻለም"
-
-#: standalone/drakperm:259
-#, c-format
-msgid "Write"
-msgstr "ይጻፍ"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:262
-#, fuzzy, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "ለፋይል %s መጻፍ አልተቻለም"
-
-#: standalone/drakperm:266
-#, c-format
-msgid "Execute"
-msgstr "አስኪድ"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:269
-#, fuzzy, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "ለፋይል %s መጻፍ አልተቻለም"
-
-#: standalone/drakperm:272
-#, fuzzy, c-format
-msgid "Sticky-bit"
-msgstr "8 _bit PCM"
-
-#: standalone/drakperm:272
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-
-#: standalone/drakperm:273
-#, fuzzy, c-format
-msgid "Set-UID"
-msgstr "ቋንቋን &ይምረጡ"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Use owner id for execution"
-msgstr ""
-
-#: standalone/drakperm:274
-#, fuzzy, c-format
-msgid "Set-GID"
-msgstr "ቋንቋን &ይምረጡ"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Use group id for execution"
-msgstr ""
-
-#: standalone/drakperm:292 standalone/drakxtv:89
-#, c-format
-msgid "User:"
-msgstr "ተጠቃሚ፦"
-
-#: standalone/drakperm:294
-#, c-format
-msgid "Group:"
-msgstr "የውይይት መድረክ፦"
-
-#: standalone/drakperm:298
-#, c-format
-msgid "Current user"
-msgstr "የአሁኑ ተጠቃሚ"
-
-#: standalone/drakperm:299
-#, c-format
-msgid "When checked, owner and group will not be changed"
-msgstr ""
-
-#: standalone/drakperm:309
-#, c-format
-msgid "Path selection"
-msgstr "የመንገድ ምርጫ"
-
-#: standalone/drakperm:329
-#, c-format
-msgid "Property"
-msgstr "ፀባይ"
-
-#: standalone/drakperm:380
-#, c-format
-msgid ""
-"The first character of the path must be a slash (\"/\"):\n"
-"\"%s\""
-msgstr ""
-
-#: standalone/drakperm:390
-#, c-format
-msgid "Both the username and the group must valid!"
-msgstr ""
-
-#: standalone/drakperm:391
-#, c-format
-msgid "User: %s"
-msgstr ""
-
-#: standalone/drakperm:392
-#, c-format
-msgid "Group: %s"
-msgstr ""
-
-#: standalone/drakroam:33
-#, c-format
-msgid ""
-"You do not have any wireless interface.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakroam:48
-#, c-format
-msgid "SSID"
-msgstr ""
-
-#: standalone/drakroam:49
-#, c-format
-msgid "Signal strength"
-msgstr ""
-
-#: standalone/drakroam:51
-#, c-format
-msgid "Encryption"
-msgstr "አገለባበጥ"
-
-#: standalone/drakroam:112
-#, c-format
-msgid "Please enter settings for wireless network \"%s\""
-msgstr ""
-
-#: standalone/drakroam:123
-#, c-format
-msgid "DNS server"
-msgstr ""
-
-#: standalone/drakroam:228
-#, c-format
-msgid "Connect"
-msgstr "አገናኝ"
-
-#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/drakroam:229 standalone/printerdrake:251
-#, c-format
-msgid "Refresh"
-msgstr "አድስ"
-
-#: standalone/draksambashare:68
-#, fuzzy, c-format
-msgid "Share directory"
-msgstr "ዶሴ አይደለም"
-
-#: standalone/draksambashare:69 standalone/draksambashare:102
-#, fuzzy, c-format
-msgid "Comment"
-msgstr "ትእዛዝ"
-
-#: standalone/draksambashare:70 standalone/draksambashare:103
-#, fuzzy, c-format
-msgid "Browseable"
-msgstr "ቃኝ"
-
-#: standalone/draksambashare:71
-#, c-format
-msgid "Public"
-msgstr ""
-
-#: standalone/draksambashare:72 standalone/draksambashare:108
-#, fuzzy, c-format
-msgid "Writable"
-msgstr "ይጻፍ"
-
-#: standalone/draksambashare:73 standalone/draksambashare:149
-#, fuzzy, c-format
-msgid "Create mask"
-msgstr "ፍጠር"
-
-#: standalone/draksambashare:74 standalone/draksambashare:150
-#, fuzzy, c-format
-msgid "Directory mask"
-msgstr "አኃዞች (ከክፍተት ጋር)"
-
-#: standalone/draksambashare:75
-#, fuzzy, c-format
-msgid "Read list"
-msgstr "አንብብ"
-
-#: standalone/draksambashare:76 standalone/draksambashare:109
-#: standalone/draksambashare:606
-#, fuzzy, c-format
-msgid "Write list"
-msgstr "ይጻፍ"
-
-#: standalone/draksambashare:77 standalone/draksambashare:141
-#, fuzzy, c-format
-msgid "Admin users"
-msgstr "ተጠቃሚ ጨምር"
-
-#: standalone/draksambashare:78 standalone/draksambashare:142
-#, fuzzy, c-format
-msgid "Valid users"
-msgstr "ተጠቃሚ ጨምር"
-
-#: standalone/draksambashare:79
-#, fuzzy, c-format
-msgid "Inherit Permissions"
-msgstr "ፈቃዶች"
-
-#: standalone/draksambashare:80 standalone/draksambashare:143
-#, fuzzy, c-format
-msgid "Hide dot files"
-msgstr "ፋይሎች ደብቅ"
-
-#: standalone/draksambashare:82 standalone/draksambashare:148
-#, fuzzy, c-format
-msgid "Preserve case"
-msgstr "ምርጫዎች"
-
-#: standalone/draksambashare:83
-#, fuzzy, c-format
-msgid "Force create mode"
-msgstr "ማተሚያው ሞዴል"
-
-#: standalone/draksambashare:84
-#, fuzzy, c-format
-msgid "Force group"
-msgstr "አዲስ መድረክ"
-
-#: standalone/draksambashare:85 standalone/draksambashare:147
-#, fuzzy, c-format
-msgid "Default case"
-msgstr "የተጠቃሚ ስም"
-
-#: standalone/draksambashare:100
-#, c-format
-msgid "Printer name"
-msgstr ""
-
-#: standalone/draksambashare:104 standalone/draksambashare:598
-#, c-format
-msgid "Printable"
-msgstr ""
-
-#: standalone/draksambashare:105
-#, c-format
-msgid "Print Command"
-msgstr ""
-
-#: standalone/draksambashare:106
-#, c-format
-msgid "LPQ command"
-msgstr ""
-
-#: standalone/draksambashare:107
-#, c-format
-msgid "Guest ok"
-msgstr ""
-
-#: standalone/draksambashare:110 standalone/draksambashare:151
-#: standalone/draksambashare:607
-#, fuzzy, c-format
-msgid "Inherit permissions"
-msgstr "ፈቃዶች"
-
-#: standalone/draksambashare:112
-#, c-format
-msgid "Create mode"
-msgstr ""
-
-#: standalone/draksambashare:113
-#, c-format
-msgid "Use client driver"
-msgstr ""
-
-#: standalone/draksambashare:139
-#, fuzzy, c-format
-msgid "Read List"
-msgstr "ከዝርዝር አጥፋ (_R)"
-
-#: standalone/draksambashare:140
-#, fuzzy, c-format
-msgid "Write List"
-msgstr "ይጻፍ"
-
-#: standalone/draksambashare:145
-#, fuzzy, c-format
-msgid "Force Group"
-msgstr "የውይይት መድረክ"
-
-#: standalone/draksambashare:146
-#, c-format
-msgid "Force create group"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid "About Draksambashare"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid ""
-"Mandriva Linux \n"
-"Release: %s\n"
-"Author: Antoine Ginies\n"
-"\n"
-"This is a simple tool to easily manage Samba configuration."
-msgstr ""
-
-#: standalone/draksambashare:186
-#, fuzzy, c-format
-msgid "Samba server"
-msgstr "የሳምባ ተጠሪ"
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Restarting/Reloading Samba server..."
-msgstr ""
-
-#: standalone/draksambashare:187
-#, c-format
-msgid "Error Restarting/Reloading Samba server"
-msgstr ""
-
-#: standalone/draksambashare:372
-#, c-format
-msgid "Add a Samba share"
-msgstr ""
-
-#: standalone/draksambashare:375
-#, c-format
-msgid "Goal of this wizard is to easily create a new Samba share."
-msgstr ""
-
-#: standalone/draksambashare:377
-#, fuzzy, c-format
-msgid "Name of the share:"
-msgstr "የምስክር ፀባይ"
-
-#: standalone/draksambashare:378 standalone/draksambashare:591
-#: standalone/draksambashare:772
-#, fuzzy, c-format
-msgid "Comment:"
-msgstr "ትእዛዝ"
-
-#: standalone/draksambashare:379
-#, fuzzy, c-format
-msgid "Path:"
-msgstr "መተላለፊያ"
-
-#: standalone/draksambashare:384
-#, c-format
-msgid ""
-"Share with the same name already exist or share name empty, please choose "
-"another name."
-msgstr ""
-
-#: standalone/draksambashare:388 standalone/draksambashare:394
-#, c-format
-msgid "Can't create the directory, please enter a correct path."
-msgstr ""
-
-#: standalone/draksambashare:391 standalone/draksambashare:627
-#: standalone/draksambashare:794
-#, c-format
-msgid "Please enter a Comment for this share."
-msgstr ""
-
-#: standalone/draksambashare:422
-#, c-format
-msgid ""
-"The wizard successfully added the Samba share. Now just double click on it "
-"in treeview to modify it"
-msgstr ""
-
-#: standalone/draksambashare:437
-#, c-format
-msgid "pdf-gen - a PDF generator"
-msgstr ""
-
-#: standalone/draksambashare:438
-#, c-format
-msgid "printers - all printers available"
-msgstr ""
-
-#: standalone/draksambashare:442
-#, c-format
-msgid "Add Special Printer share"
-msgstr ""
-
-#: standalone/draksambashare:445
-#, c-format
-msgid ""
-"Goal of this wizard is to easily create a new special printer Samba share."
-msgstr ""
-
-#: standalone/draksambashare:453
-#, c-format
-msgid "A PDF generator already exists."
-msgstr ""
-
-#: standalone/draksambashare:477
-#, c-format
-msgid "Printers and print$ already exist."
-msgstr ""
-
-#: standalone/draksambashare:528
-#, c-format
-msgid "The wizard successfully added the printer Samba share"
-msgstr ""
-
-#: standalone/draksambashare:551
-#, c-format
-msgid "Please add or select a Samba printer share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:587
-#, c-format
-msgid "Printer share"
-msgstr ""
-
-#: standalone/draksambashare:590
-#, c-format
-msgid "Printer name:"
-msgstr ""
-
-#: standalone/draksambashare:596 standalone/draksambashare:777
-#, fuzzy, c-format
-msgid "Writable:"
-msgstr "ይጻፍ"
-
-#: standalone/draksambashare:597 standalone/draksambashare:778
-#, fuzzy, c-format
-msgid "Browseable:"
-msgstr "ቃኝ"
-
-#: standalone/draksambashare:602
-#, c-format
-msgid "Advanced options"
-msgstr ""
-
-#: standalone/draksambashare:604
-#, c-format
-msgid "Printer access"
-msgstr ""
-
-#: standalone/draksambashare:608
-#, c-format
-msgid "Guest ok:"
-msgstr ""
-
-#: standalone/draksambashare:609
-#, c-format
-msgid "Create mode:"
-msgstr ""
-
-#: standalone/draksambashare:613
-#, c-format
-msgid "Printer command"
-msgstr ""
-
-#: standalone/draksambashare:615
-#, c-format
-msgid "Print command:"
-msgstr ""
-
-#: standalone/draksambashare:616
-#, c-format
-msgid "LPQ command:"
-msgstr ""
-
-#: standalone/draksambashare:617
-#, c-format
-msgid "Printing:"
-msgstr ""
-
-#: standalone/draksambashare:633
-#, c-format
-msgid "create mode should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:695
-#, c-format
-msgid "DrakSamba entry"
-msgstr ""
-
-#: standalone/draksambashare:700
-#, c-format
-msgid "Please add or select a Samba share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:723
-#, fuzzy, c-format
-msgid "Samba user access"
-msgstr "የሳምባ ተጠሪ"
-
-#: standalone/draksambashare:731
-#, fuzzy, c-format
-msgid "Mask options"
-msgstr "መሠረታዊ ምርጫዎች"
-
-#: standalone/draksambashare:745
-#, fuzzy, c-format
-msgid "Display options"
-msgstr "ምርጫዎችን ይግለጹ"
-
-#: standalone/draksambashare:767
-#, fuzzy, c-format
-msgid "Samba share directory"
-msgstr "ዶሴ አይደለም"
-
-#: standalone/draksambashare:770
-#, fuzzy, c-format
-msgid "Share name:"
-msgstr "የጋራ ስም"
-
-#: standalone/draksambashare:776
-#, c-format
-msgid "Public:"
-msgstr ""
-
-#: standalone/draksambashare:800
-#, c-format
-msgid ""
-"Create mask, create mode and directory mask should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:807
-#, c-format
-msgid "Please create this Samba user: %s"
-msgstr ""
-
-#: standalone/draksambashare:930
-#, c-format
-msgid "User information"
-msgstr ""
-
-#: standalone/draksambashare:932
-#, c-format
-msgid "User name:"
-msgstr ""
-
-#: standalone/draksambashare:933
-#, c-format
-msgid "Password:"
-msgstr "ሚስጢራዊ ቃል"
-
-#: standalone/draksambashare:1133
-#, c-format
-msgid "Failed to add Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1142
-#, c-format
-msgid "Failed to Modify Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1151
-#, c-format
-msgid "Failed to remove a Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1158
-#, c-format
-msgid "File share"
-msgstr ""
-
-#: standalone/draksambashare:1166
-#, c-format
-msgid "Add printers"
-msgstr ""
-
-#: standalone/draksambashare:1172
-#, c-format
-msgid "Failed to add printers."
-msgstr ""
-
-#: standalone/draksambashare:1181
-#, c-format
-msgid "Failed to Modify."
-msgstr ""
-
-#: standalone/draksambashare:1190
-#, c-format
-msgid "Failed to remove."
-msgstr ""
-
-#: standalone/draksambashare:1197
-#, c-format
-msgid "Printers"
-msgstr "አታሚዎች"
-
-#: standalone/draksambashare:1205
-#, c-format
-msgid "Change password"
-msgstr ""
-
-#: standalone/draksambashare:1210
-#, c-format
-msgid "Failed to change user password."
-msgstr ""
-
-#: standalone/draksambashare:1218
-#, c-format
-msgid "Failed to add user."
-msgstr ""
-
-#: standalone/draksambashare:1221
-#, c-format
-msgid "Delete user"
-msgstr ""
-
-#: standalone/draksambashare:1230
-#, c-format
-msgid "Failed to delete user."
-msgstr ""
-
-#: standalone/draksambashare:1242
-#, c-format
-msgid "Samba Users"
-msgstr ""
-
-#: standalone/draksambashare:1251
-#, c-format
-msgid "DrakSamba manage Samba shares"
-msgstr ""
-
-#: standalone/draksec:49
-#, c-format
-msgid "ALL"
-msgstr "ሁሉም"
-
-#: standalone/draksec:50
-#, c-format
-msgid "LOCAL"
-msgstr "የቅርብ"
-
-#: standalone/draksec:51
-#, c-format
-msgid "NONE"
-msgstr "ምንም"
-
-#: standalone/draksec:53 standalone/net_applet:480
-#, c-format
-msgid "Ignore"
-msgstr "ይተዉ"
-
-#. -PO: Do not alter the <span ..> and </span> tags.
-#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
-#: standalone/draksec:103
-#, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Administrator</span>' is the one who "
-"will receive security alerts if the\n"
-"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a "
-"username or an email.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Level</span>' menu allows you to select "
-"one of the six preconfigured security levels\n"
-"provided with msec. These levels range from '<span weight=\"bold\">poor</"
-"span>' security and ease of use, to\n"
-"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive "
-"server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
-"very\n"
-"easy to use security level. It should only be used for machines not "
-"connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
-"security\n"
-"recommended for a computer that will be used to connect to the Internet as "
-"a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
-"enough\n"
-"to use the system as a server which can accept connections from many "
-"clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower "
-"level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-
-#: standalone/draksec:156 standalone/harddrake2:207
-#, fuzzy, c-format
-msgid ""
-"Description of the fields:\n"
-"\n"
-msgstr "መግለጫ የለም"
-
-#: standalone/draksec:170
-#, fuzzy, c-format
-msgid "(default value: %s)"
-msgstr "ዕሴት የለም"
-
-#: standalone/draksec:212
-#, c-format
-msgid "Security Level:"
-msgstr "የደህንነት ደረጃ፦"
-
-#: standalone/draksec:219
-#, fuzzy, c-format
-msgid "Security Administrator:"
-msgstr "የደህንነት ደረጃ፦"
-
-#: standalone/draksec:221
-#, c-format
-msgid "Basic options"
-msgstr "መሠረታዊ ምርጫዎች"
-
-#: standalone/draksec:235
-#, fuzzy, c-format
-msgid "Network Options"
-msgstr "ምርጫዎችን አስገባ"
-
-#: standalone/draksec:235
-#, fuzzy, c-format
-msgid "System Options"
-msgstr "ምርጫዎችን አስገባ"
-
-#: standalone/draksec:270
-#, c-format
-msgid "Periodic Checks"
-msgstr ""
-
-#: standalone/draksec:300
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr ""
-
-#: standalone/draksec:306
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr ""
-
-#: standalone/draksound:47
-#, c-format
-msgid "No Sound Card detected!"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/draksound:50
-#, c-format
-msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-
-#: standalone/draksound:57
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or "
-"the sndconfig program. Just type \"alsaconf\" or \"sndconfig\" in a console."
-msgstr ""
-
-#: standalone/draksplash:30
-#, c-format
-msgid "x coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:31
-#, c-format
-msgid "y coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:32
-#, c-format
-msgid "text box width"
-msgstr ""
-
-#: standalone/draksplash:33
-#, fuzzy, c-format
-msgid "text box height"
-msgstr "በእርዝማኔው ልክ"
-
-#: standalone/draksplash:34
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-
-#: standalone/draksplash:35
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-
-#: standalone/draksplash:36
-#, fuzzy, c-format
-msgid "the width of the progress bar"
-msgstr "&ስታቱስ ባር አሳይ"
-
-#: standalone/draksplash:37
-#, fuzzy, c-format
-msgid "the height of the progress bar"
-msgstr "&ስታቱስ ባር አሳይ"
-
-#: standalone/draksplash:38
-#, c-format
-msgid "x coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:39
-#, c-format
-msgid "y coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:40
-#, c-format
-msgid "text box transparency"
-msgstr ""
-
-#: standalone/draksplash:41
-#, c-format
-msgid "progress box transparency"
-msgstr ""
-
-#: standalone/draksplash:42
-#, c-format
-msgid "text size"
-msgstr ""
-
-#: standalone/draksplash:59
-#, c-format
-msgid "Choose progress bar color 1"
-msgstr ""
-
-#: standalone/draksplash:60
-#, c-format
-msgid "Choose progress bar color 2"
-msgstr ""
-
-#: standalone/draksplash:61
-#, c-format
-msgid "Choose progress bar background"
-msgstr ""
-
-#: standalone/draksplash:62
-#, c-format
-msgid "Gradient type"
-msgstr ""
-
-#: standalone/draksplash:63
-#, c-format
-msgid "Choose text color"
-msgstr ""
-
-#: standalone/draksplash:65 standalone/draksplash:72
-#, c-format
-msgid "Choose picture"
-msgstr ""
-
-#: standalone/draksplash:66
-#, c-format
-msgid "Silent bootsplash"
-msgstr ""
-
-#: standalone/draksplash:69
-#, c-format
-msgid "Choose text zone color"
-msgstr ""
-
-#: standalone/draksplash:70
-#, c-format
-msgid "Text color"
-msgstr ""
-
-#: standalone/draksplash:71
-#, c-format
-msgid "Background color"
-msgstr ""
-
-#: standalone/draksplash:73
-#, c-format
-msgid "Verbose bootsplash"
-msgstr ""
-
-#: standalone/draksplash:75
-#, c-format
-msgid "Display logo on Console"
-msgstr ""
-
-#: standalone/draksplash:78
-#, c-format
-msgid "Console bootsplash"
-msgstr ""
-
-#: standalone/draksplash:84
-#, fuzzy, c-format
-msgid "Theme name"
-msgstr "የጭብጥ ስም"
-
-#: standalone/draksplash:87
-#, c-format
-msgid "final resolution"
-msgstr ""
-
-#: standalone/draksplash:92
-#, fuzzy, c-format
-msgid "Save theme"
-msgstr "ጭብጥን አስቀምጥ (_S)"
-
-#: standalone/draksplash:153
-#, fuzzy, c-format
-msgid "saving Bootsplash theme..."
-msgstr "ጭብጥን በሌላ ስም _አስቀምጥ..."
-
-#: standalone/draksplash:162
-#, c-format
-msgid "Unable to load image file %s"
-msgstr ""
-
-#: standalone/draksplash:173
-#, c-format
-msgid "choose image"
-msgstr "ምስል ይመረጥ"
-
-#: standalone/draksplash:188
-#, c-format
-msgid "Color selection"
-msgstr ""
-
-#: standalone/drakups:71
-#, c-format
-msgid "Connected through a serial port or an usb cable"
-msgstr ""
-
-#: standalone/drakups:78
-#, fuzzy, c-format
-msgid "Add an UPS device"
-msgstr "አምድ በኋላ ጨምር"
-
-#: standalone/drakups:81
-#, c-format
-msgid ""
-"Welcome to the UPS configuration utility.\n"
-"\n"
-"Here, you'll add a new UPS to your system.\n"
-msgstr ""
-
-#: standalone/drakups:88
-#, c-format
-msgid ""
-"We're going to add an UPS device.\n"
-"\n"
-"Do you want to autodetect UPS devices connected to this machine or to "
-"manually select them?"
-msgstr ""
-
-#: standalone/drakups:91
-#, c-format
-msgid "Autodetection"
-msgstr ""
-
-#: standalone/drakups:99 standalone/harddrake2:375
-#, fuzzy, c-format
-msgid "Detection in progress"
-msgstr "የተሻሻለ ዊድጌት ፍጠር"
-
-#: standalone/drakups:119
-#, c-format
-msgid "The wizard successfully added the following UPS devices:"
-msgstr ""
-
-#: standalone/drakups:121
-#, c-format
-msgid "No new UPS devices was found"
-msgstr ""
-
-#: standalone/drakups:126 standalone/drakups:138
-#, fuzzy, c-format
-msgid "UPS driver configuration"
-msgstr "ተስተካክሎ የተቀመጠውን ባዕድ መነሻ ጥቀስ"
-
-#: standalone/drakups:126
-#, c-format
-msgid "Please select your UPS model."
-msgstr ""
-
-#: standalone/drakups:127
-#, fuzzy, c-format
-msgid "Manufacturer / Model:"
-msgstr "<b>ሞዴል</b>፦ %s<br>"
-
-#: standalone/drakups:138
-#, c-format
-msgid ""
-"We are configuring the \"%s\" UPS from \"%s\".\n"
-"Please fill in its name, its driver and its port."
-msgstr ""
-
-#: standalone/drakups:143
-#, c-format
-msgid "Name:"
-msgstr "ስም፦"
-
-#: standalone/drakups:143
-#, fuzzy, c-format
-msgid "The name of your ups"
-msgstr "ኤ-መልዕክት አድራሻዎ"
-
-#: standalone/drakups:144
-#, c-format
-msgid "The driver that manages your ups"
-msgstr ""
-
-#: standalone/drakups:145
-#, c-format
-msgid "Port:"
-msgstr "ፖርት፦"
-
-#: standalone/drakups:147
-#, c-format
-msgid "The port on which is connected your ups"
-msgstr ""
-
-#: standalone/drakups:157
-#, c-format
-msgid "The wizard successfully configured the new \"%s\" UPS device."
-msgstr ""
-
-#: standalone/drakups:248
-#, c-format
-msgid "UPS devices"
-msgstr ""
-
-#: standalone/drakups:249 standalone/drakups:268 standalone/drakups:284
-#: standalone/harddrake2:85 standalone/harddrake2:111
-#: standalone/harddrake2:118
-#, c-format
-msgid "Name"
-msgstr "ስም"
-
-#: standalone/drakups:267
-#, c-format
-msgid "UPS users"
-msgstr ""
-
-#: standalone/drakups:283
-#, fuzzy, c-format
-msgid "Access Control Lists"
-msgstr "አፈንጋጭ እንግዳ መቆጣጠሪያ"
-
-#: standalone/drakups:284
-#, fuzzy, c-format
-msgid "IP mask"
-msgstr "የማተሚያ IP"
-
-#: standalone/drakups:296
-#, c-format
-msgid "Rules"
-msgstr ""
-
-#: standalone/drakups:297
-#, c-format
-msgid "Action"
-msgstr "ተግባር"
-
-#: standalone/drakups:297 standalone/drakvpn:1132 standalone/harddrake2:82
-#, c-format
-msgid "Level"
-msgstr "ደረጃ"
-
-#: standalone/drakups:297
-#, fuzzy, c-format
-msgid "ACL name"
-msgstr "የፋይል ስም"
-
-#: standalone/drakups:327 standalone/drakups:331 standalone/drakups:340
-#, c-format
-msgid "DrakUPS"
-msgstr ""
-
-#: standalone/drakups:337
-#, c-format
-msgid "Welcome to the UPS configuration tools"
-msgstr ""
-
-#: standalone/drakvpn:73
-#, c-format
-msgid "DrakVPN"
-msgstr ""
-
-#: standalone/drakvpn:95
-#, c-format
-msgid "The VPN connection is enabled."
-msgstr ""
-
-#: standalone/drakvpn:96
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-
-#: standalone/drakvpn:101
-#, c-format
-msgid "disable"
-msgstr "አይቻል"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127
-#, c-format
-msgid "reconfigure"
-msgstr ""
-
-#: standalone/drakvpn:101 standalone/drakvpn:127 standalone/drakvpn:362
-#: standalone/drakvpn:721
-#, c-format
-msgid "dismiss"
-msgstr ""
-
-#: standalone/drakvpn:105
-#, c-format
-msgid "Disabling VPN..."
-msgstr ""
-
-#: standalone/drakvpn:114
-#, c-format
-msgid "The VPN connection is now disabled."
-msgstr ""
-
-#: standalone/drakvpn:121
-#, c-format
-msgid "VPN connection currently disabled"
-msgstr ""
-
-#: standalone/drakvpn:122
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-
-#: standalone/drakvpn:127
-#, c-format
-msgid "enable"
-msgstr "ይቻል"
-
-#: standalone/drakvpn:135
-#, c-format
-msgid "Enabling VPN..."
-msgstr ""
-
-#: standalone/drakvpn:141
-#, c-format
-msgid "The VPN connection is now enabled."
-msgstr ""
-
-#: standalone/drakvpn:155 standalone/drakvpn:183
-#, fuzzy, c-format
-msgid "Simple VPN setup."
-msgstr "አሁኑ የተቋቋመውን _አስቀምጡ"
-
-#: standalone/drakvpn:156
-#, c-format
-msgid ""
-"You are about to configure your computer to use a VPN connection.\n"
-"\n"
-"With this feature, computers on your local private network and computers\n"
-"on some other remote private networks, can share resources, through\n"
-"their respective firewalls, over the Internet, in a secure manner. \n"
-"\n"
-"The communication over the Internet is encrypted. The local and remote\n"
-"computers look as if they were on the same network.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using\n"
-"drakconnect before going any further."
-msgstr ""
-
-#: standalone/drakvpn:184
-#, c-format
-msgid ""
-"VPN connection.\n"
-"\n"
-"This program is based on the following projects:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - the docs and man pages coming with the %s package\n"
-"\n"
-"Please read AT LEAST the ipsec-howto docs\n"
-"before going any further."
-msgstr ""
-
-#: standalone/drakvpn:196
-#, fuzzy, c-format
-msgid "Kernel module."
-msgstr "የፋይል ስም አቅድ"
-
-#: standalone/drakvpn:197
-#, c-format
-msgid ""
-"The kernel needs to have ipsec support.\n"
-"\n"
-"You're running a %s kernel version.\n"
-"\n"
-"This kernel has '%s' support."
-msgstr ""
-
-#: standalone/drakvpn:264
-#, c-format
-msgid "Problems installing package %s"
-msgstr ""
-
-#: standalone/drakvpn:278
-#, fuzzy, c-format
-msgid "Security Policies"
-msgstr "የደህንነት ደረጃ፦"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "IKE daemon racoon"
-msgstr ""
-
-#: standalone/drakvpn:281 standalone/drakvpn:292
-#, fuzzy, c-format
-msgid "Configuration file"
-msgstr "የፋይሉ ዓይነት"
-
-#: standalone/drakvpn:282
-#, c-format
-msgid ""
-"Configuration step!\n"
-"\n"
-"You need to define the Security Policies and then to \n"
-"configure the automatic key exchange (IKE) daemon. \n"
-"The KAME IKE daemon we're using is called 'racoon'.\n"
-"\n"
-"What would you like to configure?\n"
-msgstr ""
-
-#: standalone/drakvpn:293
-#, c-format
-msgid ""
-"Next, we will configure the %s file.\n"
-"\n"
-"\n"
-"Simply click on Next.\n"
-msgstr ""
-
-#: standalone/drakvpn:311 standalone/drakvpn:671
-#, fuzzy, c-format
-msgid "%s entries"
-msgstr "የተመረጡት ይጥፉ?"
-
-#: standalone/drakvpn:312
-#, c-format
-msgid ""
-"The %s file contents\n"
-"is divided into sections.\n"
-"\n"
-"You can now:\n"
-"\n"
-" - display, add, edit, or remove sections, then\n"
-" - commit the changes\n"
-"\n"
-"What would you like to do?\n"
-msgstr ""
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display"
-msgstr ""
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid "Commit"
-msgstr ""
-
-#: standalone/drakvpn:333 standalone/drakvpn:337 standalone/drakvpn:695
-#: standalone/drakvpn:699
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display configuration"
-msgstr ""
-
-#: standalone/drakvpn:338
-#, c-format
-msgid ""
-"The %s file does not exist.\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose 'add'.\n"
-msgstr ""
-
-#: standalone/drakvpn:354
-#, fuzzy, c-format
-msgid "ipsec.conf entries"
-msgstr "የተመረጡት ይጥፉ?"
-
-#: standalone/drakvpn:355
-#, c-format
-msgid ""
-"The %s file contains different sections.\n"
-"\n"
-"Here is its skeleton:\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"You can now add one of these sections.\n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-
-#: standalone/drakvpn:362
-#, fuzzy, c-format
-msgid "config setup"
-msgstr "የገጽ ቅንጅት"
-
-#: standalone/drakvpn:362
-#, fuzzy, c-format
-msgid "conn %default"
-msgstr "የነበረው ፊደል ቅርጽ"
-
-#: standalone/drakvpn:362
-#, fuzzy, c-format
-msgid "normal conn"
-msgstr "%% የተለመደ መጠን"
-
-#: standalone/drakvpn:368 standalone/drakvpn:409 standalone/drakvpn:496
-#, fuzzy, c-format
-msgid "Exists!"
-msgstr "ፋይሉ በፊትም ነበር!"
-
-#: standalone/drakvpn:369 standalone/drakvpn:410
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change its name.\n"
-msgstr ""
-
-#: standalone/drakvpn:386
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow this config\n"
-"setup section.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:391
-#, c-format
-msgid "interfaces"
-msgstr ""
-
-#: standalone/drakvpn:392
-#, c-format
-msgid "klipsdebug"
-msgstr ""
-
-#: standalone/drakvpn:393
-#, c-format
-msgid "plutodebug"
-msgstr ""
-
-#: standalone/drakvpn:394
-#, c-format
-msgid "plutoload"
-msgstr ""
-
-#: standalone/drakvpn:395
-#, c-format
-msgid "plutostart"
-msgstr ""
-
-#: standalone/drakvpn:396
-#, c-format
-msgid "uniqueids"
-msgstr ""
-
-#: standalone/drakvpn:430
-#, c-format
-msgid ""
-"This is the first section after the config\n"
-"setup one.\n"
-"\n"
-"Here you define the default settings. \n"
-"All the other sections will follow this one.\n"
-"The left settings are optional. If do not define\n"
-"them here, globally, you can define them in each\n"
-"section.\n"
-msgstr ""
-
-#: standalone/drakvpn:437
-#, c-format
-msgid "PFS"
-msgstr ""
-
-#: standalone/drakvpn:438
-#, c-format
-msgid "keyingtries"
-msgstr ""
-
-#: standalone/drakvpn:439
-#, c-format
-msgid "compress"
-msgstr ""
-
-#: standalone/drakvpn:440
-#, c-format
-msgid "disablearrivalcheck"
-msgstr ""
-
-#: standalone/drakvpn:441 standalone/drakvpn:480
-#, c-format
-msgid "left"
-msgstr "ግራ"
-
-#: standalone/drakvpn:442 standalone/drakvpn:481
-#, c-format
-msgid "leftcert"
-msgstr ""
-
-#: standalone/drakvpn:443 standalone/drakvpn:482
-#, c-format
-msgid "leftrsasigkey"
-msgstr ""
-
-#: standalone/drakvpn:444 standalone/drakvpn:483
-#, c-format
-msgid "leftsubnet"
-msgstr ""
-
-#: standalone/drakvpn:445 standalone/drakvpn:484
-#, c-format
-msgid "leftnexthop"
-msgstr ""
-
-#: standalone/drakvpn:474
-#, c-format
-msgid ""
-"Your %s file has several sections, or connections.\n"
-"\n"
-"You can now add a new section.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:477
-#, fuzzy, c-format
-msgid "section name"
-msgstr "የፋይል ስም"
-
-#: standalone/drakvpn:478
-#, c-format
-msgid "authby"
-msgstr ""
-
-#: standalone/drakvpn:479
-#, c-format
-msgid "auto"
-msgstr "በራሱ አሻሻይ"
-
-#: standalone/drakvpn:485
-#, c-format
-msgid "right"
-msgstr "ቀኝ"
-
-#: standalone/drakvpn:486
-#, c-format
-msgid "rightcert"
-msgstr ""
-
-#: standalone/drakvpn:487
-#, c-format
-msgid "rightrsasigkey"
-msgstr ""
-
-#: standalone/drakvpn:488
-#, c-format
-msgid "rightsubnet"
-msgstr ""
-
-#: standalone/drakvpn:489
-#, c-format
-msgid "rightnexthop"
-msgstr ""
-
-#: standalone/drakvpn:497
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change the name of the section.\n"
-msgstr ""
-
-#: standalone/drakvpn:529
-#, c-format
-msgid ""
-"Add a Security Policy.\n"
-"\n"
-"You can now add a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:562 standalone/drakvpn:812
-#, fuzzy, c-format
-msgid "Edit section"
-msgstr "የክፍል መክፈያዎች"
-
-#: standalone/drakvpn:563
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to edit \n"
-"and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:566 standalone/drakvpn:646 standalone/drakvpn:817
-#: standalone/drakvpn:863
-#, fuzzy, c-format
-msgid "Section names"
-msgstr "የተባባሪዎች ስሞች"
-
-#: standalone/drakvpn:576
-#, fuzzy, c-format
-msgid "Can not edit!"
-msgstr "የገጽ ግርጌውን ያስተካክሉ"
-
-#: standalone/drakvpn:577
-#, c-format
-msgid ""
-"You cannot edit this section.\n"
-"\n"
-"This section is mandatory for Freeswan 2.X.\n"
-"One has to specify version 2.0 on the top\n"
-"of the %s file, and eventually, disable or\n"
-"enable the opportunistic encryption.\n"
-msgstr ""
-
-#: standalone/drakvpn:586
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the config setup section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:597
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the default section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:610
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the normal section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:631
-#, c-format
-msgid ""
-"Edit a Security Policy.\n"
-"\n"
-"You can now edit a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:642 standalone/drakvpn:859
-#, fuzzy, c-format
-msgid "Remove section"
-msgstr "የክፍል መክፈያዎች"
-
-#: standalone/drakvpn:643 standalone/drakvpn:860
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to remove\n"
-"and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:672
-#, c-format
-msgid ""
-"The racoon.conf file configuration.\n"
-"\n"
-"The contents of this file is divided into sections.\n"
-"You can now:\n"
-" - display \t\t (display the file contents)\n"
-" - add\t\t\t (add one section)\n"
-" - edit \t\t\t (modify parameters of an existing section)\n"
-" - remove \t\t (remove an existing section)\n"
-" - commit \t\t (writes the changes to the real file)"
-msgstr ""
-
-#: standalone/drakvpn:700
-#, c-format
-msgid ""
-"The %s file does not exist\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose configure.\n"
-msgstr ""
-
-#: standalone/drakvpn:714
-#, fuzzy, c-format
-msgid "racoonf.conf entries"
-msgstr "የተመረጡት ይጥፉ?"
-
-#: standalone/drakvpn:715
-#, c-format
-msgid ""
-"The 'add' sections step.\n"
-"\n"
-"Here below is the racoon.conf file skeleton:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "path"
-msgstr "መተላለፊያ"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "remote"
-msgstr "የርቀት"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "sainfo"
-msgstr "sainfo"
-
-#: standalone/drakvpn:729
-#, c-format
-msgid ""
-"The 'add path' section step.\n"
-"\n"
-"The path sections have to be on top of your racoon.conf file.\n"
-"\n"
-"Put your mouse over the certificate entry to obtain online help."
-msgstr ""
-
-#: standalone/drakvpn:732
-#, fuzzy, c-format
-msgid "path type"
-msgstr "የፋይሉ ዓይነት"
-
-#: standalone/drakvpn:736
-#, c-format
-msgid ""
-"path include path: specifies a path to include\n"
-"a file. See File Inclusion.\n"
-"\tExample: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: specifies a file containing\n"
-"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
-"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) will search this directory\n"
-"if a certificate or certificate request is received.\n"
-"\tExample: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"other configuration files can be included.\n"
-"\tExample: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File: Pre-shared key file defines a pair\n"
-"of the identifier and the shared secret key which are used at\n"
-"Pre-shared key authentication method in phase 1."
-msgstr ""
-
-#: standalone/drakvpn:756 standalone/drakvpn:849
-#, fuzzy, c-format
-msgid "real file"
-msgstr "የፋይሉ ዓይነት"
-
-#: standalone/drakvpn:779
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your racoon.conf file.\n"
-"\n"
-"You can now choose the remote settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:796
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your %s file.\n"
-"\n"
-"You can now choose the sainfo settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:813
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here in the list below the one you want\n"
-"to edit and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:824
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"\n"
-"You can now edit the remote section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:833
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the sainfo section entries.\n"
-"\n"
-"Choose continue when you are done to write the data."
-msgstr ""
-
-#: standalone/drakvpn:841
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow these path\n"
-"sections.\n"
-"\n"
-"You can now edit the path entries.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:848
-#, fuzzy, c-format
-msgid "path_type"
-msgstr "የፋይሉ ዓይነት"
-
-#: standalone/drakvpn:889
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"\n"
-"You may now share resources through the Internet,\n"
-"in a secure way, using a VPN connection.\n"
-"\n"
-"You should make sure that that the tunnels shorewall\n"
-"section is configured."
-msgstr ""
-
-#: standalone/drakvpn:909
-#, fuzzy, c-format
-msgid "Sainfo source address"
-msgstr "የቡድኑ ኤ-መልዕክት አድራሻ"
-
-#: standalone/drakvpn:910
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 is the source address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 is the source address"
-msgstr ""
-
-#: standalone/drakvpn:927
-#, fuzzy, c-format
-msgid "Sainfo source protocol"
-msgstr "ስለ &Open Source"
-
-#: standalone/drakvpn:928
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe first 'any' allows any protocol for the source"
-msgstr ""
-
-#: standalone/drakvpn:942
-#, fuzzy, c-format
-msgid "Sainfo destination address"
-msgstr "የቡድኑ ኤ-መልዕክት አድራሻ"
-
-#: standalone/drakvpn:943
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 is the destination address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 is the destination address"
-msgstr ""
-
-#: standalone/drakvpn:960
-#, c-format
-msgid "Sainfo destination protocol"
-msgstr ""
-
-#: standalone/drakvpn:961
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe last 'any' allows any protocol for the destination"
-msgstr ""
-
-#: standalone/drakvpn:975
-#, fuzzy, c-format
-msgid "PFS group"
-msgstr "አዲስ መድረክ"
-
-#: standalone/drakvpn:977
-#, c-format
-msgid ""
-"define the group of Diffie-Hellman exponentiations.\n"
-"If you do not require PFS then you can omit this directive.\n"
-"Any proposal will be accepted if you do not specify one.\n"
-"group is one of the following: modp768, modp1024, modp1536.\n"
-"Or you can define 1, 2, or 5 as the DH group number."
-msgstr ""
-
-#: standalone/drakvpn:982
-#, fuzzy, c-format
-msgid "Lifetime number"
-msgstr "የዐምድ ብዛት"
-
-#: standalone/drakvpn:983
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-msgstr ""
-
-#: standalone/drakvpn:999
-#, c-format
-msgid "Lifetime unit"
-msgstr ""
-
-#: standalone/drakvpn:1001
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
-"'hour'.\n"
-msgstr ""
-
-#: standalone/drakvpn:1019
-#, c-format
-msgid "Authentication algorithm"
-msgstr ""
-
-#: standalone/drakvpn:1021
-#, c-format
-msgid "Compression algorithm"
-msgstr ""
-
-#: standalone/drakvpn:1022
-#, c-format
-msgid "deflate"
-msgstr ""
-
-#: standalone/drakvpn:1029
-#, c-format
-msgid "Remote"
-msgstr "የሩቅ"
-
-#: standalone/drakvpn:1030
-#, c-format
-msgid ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specifies the parameters for IKE phase 1 for each remote node.\n"
-"The default port is 500. If anonymous is specified, the state-\n"
-"ments apply to all peers which do not match any other remote\n"
-"directive.\n"
-"\n"
-"Examples: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-msgstr ""
-
-#: standalone/drakvpn:1038
-#, fuzzy, c-format
-msgid "Exchange mode"
-msgstr "የመሸፈኛ ዘዴ"
-
-#: standalone/drakvpn:1040
-#, c-format
-msgid ""
-"defines the exchange mode for phase 1 when racoon is the\n"
-"initiator. Also it means the acceptable exchange mode\n"
-"when racoon is responder. More than one mode can be\n"
-"specified by separating them with a comma. All of the\n"
-"modes are acceptable. The first exchange mode is what\n"
-"racoon uses when it is the initiator.\n"
-msgstr ""
-
-#: standalone/drakvpn:1046
-#, fuzzy, c-format
-msgid "Generate policy"
-msgstr "ዳታቤዝ አምንጭ"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "off"
-msgstr "አጥፋ"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "on"
-msgstr "አብራ"
-
-#: standalone/drakvpn:1048
-#, c-format
-msgid ""
-"This directive is for the responder. Therefore you\n"
-"should set passive on in order that racoon(8) only\n"
-"becomes a responder. If the responder does not have any\n"
-"policy in SPD during phase 2 negotiation, and the direc-\n"
-"tive is set on, then racoon(8) will choice the first pro-\n"
-"posal in the SA payload from the initiator, and generate\n"
-"policy entries from the proposal. It is useful to nego-\n"
-"tiate with the client which is allocated IP address\n"
-"dynamically. Note that inappropriate policy might be\n"
-"installed into the responder's SPD by the initiator. So\n"
-"that other communication might fail if such policies\n"
-"installed due to some policy mismatches between the ini-\n"
-"tiator and the responder. This directive is ignored in\n"
-"the initiator case. The default value is off."
-msgstr ""
-
-#: standalone/drakvpn:1062
-#, c-format
-msgid "Passive"
-msgstr ""
-
-#: standalone/drakvpn:1064
-#, c-format
-msgid ""
-"If you do not want to initiate the negotiation, set this\n"
-"to on. The default value is off. It is useful for a\n"
-"server."
-msgstr ""
-
-#: standalone/drakvpn:1067
-#, fuzzy, c-format
-msgid "Certificate type"
-msgstr "የፋይሉ ዓይነት"
-
-#: standalone/drakvpn:1069
-#, fuzzy, c-format
-msgid "My certfile"
-msgstr "የኔ ቇቋንቋዎች"
-
-#: standalone/drakvpn:1070
-#, fuzzy, c-format
-msgid "Name of the certificate"
-msgstr "የምስክር ፀባይ"
-
-#: standalone/drakvpn:1071
-#, fuzzy, c-format
-msgid "My private key"
-msgstr "ቁልፉን \"%s\" NULL ነው"
-
-#: standalone/drakvpn:1072
-#, fuzzy, c-format
-msgid "Name of the private key"
-msgstr "ቁልፉን \"%s\" NULL ነው"
-
-#: standalone/drakvpn:1073
-#, c-format
-msgid "Peers certfile"
-msgstr ""
-
-#: standalone/drakvpn:1074
-#, fuzzy, c-format
-msgid "Name of the peers certificate"
-msgstr "የምስክር አካል አይደለም"
-
-#: standalone/drakvpn:1075
-#, c-format
-msgid "Verify cert"
-msgstr ""
-
-#: standalone/drakvpn:1077
-#, c-format
-msgid ""
-"If you do not want to verify the peer's certificate for\n"
-"some reason, set this to off. The default is on."
-msgstr ""
-
-#: standalone/drakvpn:1079
-#, fuzzy, c-format
-msgid "My identifier"
-msgstr "የኔ ቇቋንቋዎች"
-
-#: standalone/drakvpn:1080
-#, c-format
-msgid ""
-"specifies the identifier sent to the remote host and the\n"
-"type to use in the phase 1 negotiation. address, FQDN,\n"
-"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
-"they are used like:\n"
-"\tmy_identifier address [address];\n"
-"\t\tthe type is the IP address. This is the default\n"
-"\t\ttype if you do not specify an identifier to use.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tthe type is a USER_FQDN (user fully-qualified\n"
-"\t\tdomain name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tthe type is a FQDN (fully-qualified domain name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tthe type is a KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tthe type is an ASN.1 distinguished name. If\n"
-"\t\tstring is omitted, racoon(8) will get DN from\n"
-"\t\tSubject field in the certificate.\n"
-"\n"
-"Examples: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-msgstr ""
-
-#: standalone/drakvpn:1100
-#, c-format
-msgid "Peers identifier"
-msgstr ""
-
-#: standalone/drakvpn:1101
-#, c-format
-msgid "Proposal"
-msgstr ""
-
-#: standalone/drakvpn:1103
-#, c-format
-msgid ""
-"specify the encryption algorithm used for the\n"
-"phase 1 negotiation. This directive must be defined. \n"
-"algorithm is one of the following: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For other transforms, this statement should not be used."
-msgstr ""
-
-#: standalone/drakvpn:1110
-#, c-format
-msgid "Hash algorithm"
-msgstr ""
-
-#: standalone/drakvpn:1112
-#, fuzzy, c-format
-msgid "DH group"
-msgstr "አዲስ መድረክ"
-
-#: standalone/drakvpn:1119
-#, c-format
-msgid "Command"
-msgstr "ትእዛዝ"
-
-#: standalone/drakvpn:1120
-#, fuzzy, c-format
-msgid "Source IP range"
-msgstr "ስለ &Open Source"
-
-#: standalone/drakvpn:1121
-#, c-format
-msgid "Destination IP range"
-msgstr ""
-
-#: standalone/drakvpn:1122
-#, fuzzy, c-format
-msgid "Upper-layer protocol"
-msgstr "/ደረጃ/Merge Down"
-
-#: standalone/drakvpn:1122 standalone/drakvpn:1129
-#, c-format
-msgid "any"
-msgstr "ማነኛውም"
-
-#: standalone/drakvpn:1124
-#, c-format
-msgid "Flag"
-msgstr "ባንዲራ"
-
-#: standalone/drakvpn:1125
-#, c-format
-msgid "Direction"
-msgstr "አቅጣጫ"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "IPsec policy"
-msgstr ""
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "ipsec"
-msgstr ""
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "discard"
-msgstr ""
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "Mode"
-msgstr "የአሠራሩ ዘዴ"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "tunnel"
-msgstr ""
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "transport"
-msgstr ""
-
-#: standalone/drakvpn:1131
-#, fuzzy, c-format
-msgid "Source/destination"
-msgstr "የፕሮግራም ረቂቅ"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "require"
-msgstr ""
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "default"
-msgstr "ቀዳሚ"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "use"
-msgstr "ጥቅም"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "unique"
-msgstr "የተለየ"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (broadcast)"
-msgstr "አሜሪካ (ስርጭት)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable)"
-msgstr "አሜሪካ (cable)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "ኣሜሪካ (cable-hrc)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "Canada (cable)"
-msgstr "ካናዳ (ኬብል)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "ጃፓን (ስርጭት)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (cable)"
-msgstr "ጃፓን (ኬብል)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "China (broadcast)"
-msgstr "ቻይና (ስርጭት)"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "West Europe"
-msgstr "ምዕራብ አውሮፓ"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "East Europe"
-msgstr "ምስራቅ አውሮፓ"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "France [SECAM]"
-msgstr "ፈረንሳይ [SECAM]"
-
-#: standalone/drakxtv:48
-#, c-format
-msgid "Newzealand"
-msgstr "ኒውዚላንድ"
-
-#: standalone/drakxtv:51
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr ""
-
-#: standalone/drakxtv:85
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: standalone/drakxtv:87
-#, c-format
-msgid "TV norm:"
-msgstr ""
-
-#: standalone/drakxtv:88
-#, c-format
-msgid "Area:"
-msgstr "አካባቢ፦"
-
-#: standalone/drakxtv:93
-#, c-format
-msgid "Scanning for TV channels in progress..."
-msgstr ""
-
-#: standalone/drakxtv:103
-#, c-format
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: standalone/drakxtv:107
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr ""
-
-#: standalone/drakxtv:110
-#, c-format
-msgid "Have a nice day!"
-msgstr "መልካም ቀን ይሁንልዎ!"
-
-#: standalone/drakxtv:111
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr ""
-
-#: standalone/drakxtv:149
-#, c-format
-msgid "No TV Card detected!"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakxtv:151
-#, c-format
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-
-#: standalone/finish-install:42 standalone/keyboarddrake:30
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr ""
-
-#: standalone/harddrake2:25
-#, c-format
-msgid "Alternative drivers"
-msgstr ""
-
-#: standalone/harddrake2:26
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr ""
-
-#: standalone/harddrake2:29
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-
-#: standalone/harddrake2:31 standalone/harddrake2:146
-#, c-format
-msgid "Bus identification"
-msgstr ""
-
-#: standalone/harddrake2:32
-#, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
-msgstr ""
-
-#: standalone/harddrake2:35
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "Drive capacity"
-msgstr ""
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
-
-#: standalone/harddrake2:39
-#, c-format
-msgid "this field describes the device"
-msgstr ""
-
-#: standalone/harddrake2:40
-#, fuzzy, c-format
-msgid "Old device file"
-msgstr "ጥሩው የፋይል ዓይነት"
-
-#: standalone/harddrake2:41
-#, c-format
-msgid "old static device name used in dev package"
-msgstr ""
-
-#: standalone/harddrake2:42
-#, fuzzy, c-format
-msgid "New devfs device"
-msgstr "አዲስ ሰነድ ፍጠር"
-
-#: standalone/harddrake2:43
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr ""
-
-#. -PO: here "module" is the "jargon term" for a kernel driver
-#: standalone/harddrake2:46
-#, c-format
-msgid "Module"
-msgstr "አቅድ"
-
-#: standalone/harddrake2:46
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr ""
-
-#: standalone/harddrake2:47
-#, fuzzy, c-format
-msgid "Extended partitions"
-msgstr "አዲስ ሰነድ ፍጠር"
-
-#: standalone/harddrake2:47
-#, fuzzy, c-format
-msgid "the number of extended partitions"
-msgstr "የዐምድ ብዛት"
-
-#: standalone/harddrake2:48
-#, fuzzy, c-format
-msgid "Geometry"
-msgstr "እንደገና ይሞከር"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Cylinder/head/sectors geometry of the disk"
-msgstr ""
-
-#: standalone/harddrake2:49
-#, fuzzy, c-format
-msgid "Disk controller"
-msgstr "የSMBus ተቆጣጣሪዎች"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "the disk controller on the host side"
-msgstr ""
-
-#: standalone/harddrake2:50
-#, fuzzy, c-format
-msgid "class of hardware device"
-msgstr "እንደ ሀርድዌር አሳይ"
-
-#: standalone/harddrake2:51 standalone/harddrake2:83
-#: standalone/printerdrake:224
-#, c-format
-msgid "Model"
-msgstr "ሞዴል"
-
-#: standalone/harddrake2:51
-#, fuzzy, c-format
-msgid "hard disk model"
-msgstr "የማተሚያውን ሞዴል ምረጡ"
-
-#: standalone/harddrake2:52
-#, fuzzy, c-format
-msgid "network printer port"
-msgstr "ማተሚያውን አልተገኘም።"
-
-#: standalone/harddrake2:53
-#, fuzzy, c-format
-msgid "Primary partitions"
-msgstr "የጽሑፍ ማስተካከያ"
-
-#: standalone/harddrake2:53
-#, fuzzy, c-format
-msgid "the number of the primary partitions"
-msgstr "የዐምድ ብዛት"
-
-#: standalone/harddrake2:54
-#, fuzzy, c-format
-msgid "the vendor name of the device"
-msgstr "ህገ ወጥ የዶሴ ስም"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "Bus PCI #"
-msgstr ""
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "the PCI bus on which the device is plugged"
-msgstr ""
-
-#: standalone/harddrake2:56
-#, fuzzy, c-format
-msgid "PCI device #"
-msgstr "መሳሪያ"
-
-#: standalone/harddrake2:56
-#, fuzzy, c-format
-msgid "PCI device number"
-msgstr "የዐምድ ብዛት"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function #"
-msgstr ""
-
-#: standalone/harddrake2:57
-#, fuzzy, c-format
-msgid "PCI function number"
-msgstr "የፋይል ስም"
-
-#: standalone/harddrake2:58
-#, fuzzy, c-format
-msgid "Vendor ID"
-msgstr "መለያ አስገባ"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "this is the standard numerical identifier of the vendor"
-msgstr ""
-
-#: standalone/harddrake2:59
-#, fuzzy, c-format
-msgid "Device ID"
-msgstr "መሳሪያ: "
-
-#: standalone/harddrake2:59
-#, fuzzy, c-format
-msgid "this is the numerical identifier of the device"
-msgstr "ህገ ወጥ የዶሴ ስም"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "Sub vendor ID"
-msgstr ""
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "this is the minor numerical identifier of the vendor"
-msgstr ""
-
-#: standalone/harddrake2:61
-#, fuzzy, c-format
-msgid "Sub device ID"
-msgstr "መሳሪያ"
-
-#: standalone/harddrake2:61
-#, fuzzy, c-format
-msgid "this is the minor numerical identifier of the device"
-msgstr "ህገ ወጥ የዶሴ ስም"
-
-#: standalone/harddrake2:62
-#, fuzzy, c-format
-msgid "Device USB ID"
-msgstr "መሳሪያ: "
-
-#: standalone/harddrake2:62
-#, c-format
-msgid ".."
-msgstr ""
-
-#: standalone/harddrake2:66
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
-
-#: standalone/harddrake2:66
-#, c-format
-msgid ""
-"the GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
-msgstr ""
-
-#: standalone/harddrake2:67
-#, fuzzy, c-format
-msgid "Cache size"
-msgstr "የፊደል ቅርጽ መጠን፦"
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr ""
-
-#. -PO: here "comas" is the medical coma, not the lexical coma!!
-#: standalone/harddrake2:70
-#, fuzzy, c-format
-msgid "Coma bug"
-msgstr "የሶፍትዌሩን ችግር ዘግብ"
-
-#: standalone/harddrake2:70
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr ""
-
-#: standalone/harddrake2:71
-#, fuzzy, c-format
-msgid "Cpuid family"
-msgstr "የፊደል ቅርጽ ቤተሰብ"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr ""
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "Cpuid level"
-msgstr "Cpuid ደረጃ"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr ""
-
-#: standalone/harddrake2:73
-#, c-format
-msgid "Frequency (MHz)"
-msgstr ""
-
-#: standalone/harddrake2:73
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr ""
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "Flags"
-msgstr "ባንዲራዎች፦"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr ""
-
-#: standalone/harddrake2:75
-#, fuzzy, c-format
-msgid "Fdiv bug"
-msgstr "የሶፍትዌሩን ችግር ዘግብ"
-
-#: standalone/harddrake2:76
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
-
-#: standalone/harddrake2:77
-#, fuzzy, c-format
-msgid "Is FPU present"
-msgstr "ባትሪ፦ የለም"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr ""
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr ""
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
-
-#: standalone/harddrake2:79
-#, fuzzy, c-format
-msgid "F00f bug"
-msgstr "የሶፍትዌሩን ችግር ዘግብ"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
-
-#: standalone/harddrake2:80
-#, fuzzy, c-format
-msgid "Halt bug"
-msgstr "የሶፍትዌሩን ችግር ዘግብ"
-
-#: standalone/harddrake2:81
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
-
-#: standalone/harddrake2:82
-#, c-format
-msgid "sub generation of the cpu"
-msgstr ""
-
-#: standalone/harddrake2:83
-#, c-format
-msgid "generation of the cpu (eg: 8 for Pentium III, ...)"
-msgstr ""
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "Model name"
-msgstr "የሞዴል ስም"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr ""
-
-#: standalone/harddrake2:85
-#, fuzzy, c-format
-msgid "the name of the CPU"
-msgstr "Name=ሲፒዩ"
-
-#: standalone/harddrake2:86
-#, fuzzy, c-format
-msgid "Processor ID"
-msgstr "መለያ አስገባ"
-
-#: standalone/harddrake2:86
-#, fuzzy, c-format
-msgid "the number of the processor"
-msgstr "የዐምድ ብዛት"
-
-#: standalone/harddrake2:87
-#, fuzzy, c-format
-msgid "Model stepping"
-msgstr "<b>ሞዴል</b>፦ %s<br>"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr ""
-
-#: standalone/harddrake2:88
-#, fuzzy, c-format
-msgid "the vendor name of the processor"
-msgstr "ሰነዶች/Word Processor"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid "Write protection"
-msgstr "መጻፍ ከልካይ"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid ""
-"the WP flag in the CR0 register of the cpu enforce write protection at the "
-"memory page level, thus enabling the processor to prevent unchecked kernel "
-"accesses to user memory (aka this is a bug guard)"
-msgstr ""
-
-#: standalone/harddrake2:93
-#, fuzzy, c-format
-msgid "Floppy format"
-msgstr "ሠንጠረዥ ፎርማቱ"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr ""
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "Channel"
-msgstr "ጣቢያ"
-
-#: standalone/harddrake2:97
-#, fuzzy, c-format
-msgid "EIDE/SCSI channel"
-msgstr "/ደረጃ/አልፋ/Add Alpha Channel"
-
-#: standalone/harddrake2:98
-#, fuzzy, c-format
-msgid "Disk identifier"
-msgstr "የኔ ቇቋንቋዎች"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "usually the disk serial number"
-msgstr ""
-
-#: standalone/harddrake2:99
-#, fuzzy, c-format
-msgid "Logical unit number"
-msgstr "ህገ ወጥ የዶሴ ስም"
-
-#: standalone/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 ""
-
-#. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...)
-#: standalone/harddrake2:106
-#, fuzzy, c-format
-msgid "Installed size"
-msgstr "ሲስተም ትከል"
-
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:107
-#, fuzzy, c-format
-msgid "Enabled Size"
-msgstr "ይቻል"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled size of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:108
-#, fuzzy, c-format
-msgid "type of the memory device"
-msgstr "የምስክር አካል አይደለም"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed"
-msgstr "ፍጥነት"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:110
-#, fuzzy, c-format
-msgid "Bank connections"
-msgstr "ተጨማሪ ፕሮግራሞችን ተቆጣጠሩ"
-
-#: standalone/harddrake2:111
-#, c-format
-msgid "Socket designation of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:115
-#, fuzzy, c-format
-msgid "Device file"
-msgstr "ጥሩው የፋይል ዓይነት"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid ""
-"the device file used to communicate with the kernel driver for the mouse"
-msgstr ""
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "Emulated wheel"
-msgstr ""
-
-#: standalone/harddrake2:116
-#, fuzzy, c-format
-msgid "whether the wheel is emulated or not"
-msgstr "አኃዞች (ከክፍተት ጋር)"
-
-#: standalone/harddrake2:117
-#, fuzzy, c-format
-msgid "the type of the mouse"
-msgstr "Comment=የመክፈቻና የመፈለጊያው ምርጫዎች"
-
-#: standalone/harddrake2:118
-#, fuzzy, c-format
-msgid "the name of the mouse"
-msgstr "Name=ሲፒዩ"
-
-#: standalone/harddrake2:119
-#, fuzzy, c-format
-msgid "Number of buttons"
-msgstr "የዐምድ ብዛት"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr ""
-
-#: standalone/harddrake2:120
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr ""
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "Mouse protocol used by X11"
-msgstr ""
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "the protocol that the graphical desktop use with the mouse"
-msgstr ""
-
-#: standalone/harddrake2:128 standalone/harddrake2:137
-#: standalone/harddrake2:144 standalone/harddrake2:152
-#: standalone/harddrake2:341
-#, fuzzy, c-format
-msgid "Identification"
-msgstr "ማስታወቂያ"
-
-#: standalone/harddrake2:129 standalone/harddrake2:145
-#, c-format
-msgid "Connection"
-msgstr "ግንኙነት"
-
-#: standalone/harddrake2:138
-#, fuzzy, c-format
-msgid "Performances"
-msgstr "ምርጫዎች"
-
-#: standalone/harddrake2:139
-#, fuzzy, c-format
-msgid "Bugs"
-msgstr "ኦገስት"
-
-#: standalone/harddrake2:140
-#, c-format
-msgid "FPU"
-msgstr ""
-
-#: standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "መሳሪያ"
-
-#: standalone/harddrake2:148
-#, fuzzy, c-format
-msgid "Partitions"
-msgstr "የጽሑፍ ማስተካከያ"
-
-#: standalone/harddrake2:153
-#, c-format
-msgid "Features"
-msgstr ""
-
-#. -PO: please keep all "/" characters !!!
-#: standalone/harddrake2:176 standalone/logdrake:76
-#: standalone/printerdrake:146 standalone/printerdrake:159
-#: standalone/printerdrake:171
-#, c-format
-msgid "/_Options"
-msgstr "/ምርጫዎች (_O)"
-
-#: standalone/harddrake2:177 standalone/harddrake2:202 standalone/logdrake:78
-#: standalone/printerdrake:172 standalone/printerdrake:174
-#: standalone/printerdrake:177 standalone/printerdrake:179
-#, c-format
-msgid "/_Help"
-msgstr "/መረጃ (_H)"
-
-#: standalone/harddrake2:181
-#, fuzzy, c-format
-msgid "/Autodetect _printers"
-msgstr "ሁሉም ማተሚያዎች"
-
-#: standalone/harddrake2:182
-#, c-format
-msgid "/Autodetect _modems"
-msgstr ""
-
-#: standalone/harddrake2:183
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr ""
-
-#: standalone/harddrake2:184
-#, c-format
-msgid "/Autodetect parallel _zip drives"
-msgstr ""
-
-#: standalone/harddrake2:191 standalone/printerdrake:152
-#, c-format
-msgid "/_Quit"
-msgstr "/ውጣ (_Q)"
-
-#: standalone/harddrake2:204
-#, fuzzy, c-format
-msgid "/_Fields description"
-msgstr "መግለጫ የለም"
-
-#: standalone/harddrake2:206
-#, fuzzy, c-format
-msgid "Harddrake help"
-msgstr "የመረጃ &ማውጫ"
-
-#: standalone/harddrake2:215
-#, 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 ""
-
-#: standalone/harddrake2:221 standalone/printerdrake:177
-#, c-format
-msgid "/_Report Bug"
-msgstr "/የሶፍትዌርን ችግር ዘግብ (_R)"
-
-#: standalone/harddrake2:223 standalone/printerdrake:179
-#, c-format
-msgid "/_About..."
-msgstr "/ስለ... (_A)"
-
-#: standalone/harddrake2:224
-#, fuzzy, c-format
-msgid "About Harddrake"
-msgstr "ስለ ፒኦኤዲት"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/harddrake2:226
-#, c-format
-msgid ""
-"This is HardDrake, a %s hardware configuration tool.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-msgstr ""
-
-#: standalone/harddrake2:242
-#, fuzzy, c-format
-msgid "Harddrake2"
-msgstr "የመረጃ &ማውጫ"
-
-#: standalone/harddrake2:272
-#, fuzzy, c-format
-msgid "Detected hardware"
-msgstr "የሀርድዌር ተመልካች"
-
-#: standalone/harddrake2:277
-#, fuzzy, c-format
-msgid "Configure module"
-msgstr "ፕሮግራሙን አስተካክል"
-
-#: standalone/harddrake2:284
-#, fuzzy, c-format
-msgid "Run config tool"
-msgstr "የመስሪያውን ፍንጭ አሳይ"
-
-#: standalone/harddrake2:308
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
-
-#: standalone/harddrake2:329 standalone/printerdrake:306
-#: standalone/printerdrake:320
-#, c-format
-msgid "Unknown"
-msgstr "ያልታወቀ"
-
-#: standalone/harddrake2:349
-#, c-format
-msgid "Misc"
-msgstr "የተለያየ"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "secondary"
-msgstr ""
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "primary"
-msgstr ""
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "burner"
-msgstr ""
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "DVD"
-msgstr "ዲቪዲ"
-
-#: standalone/harddrake2:511
-#, c-format
-msgid ""
-"The following devices needs proprietary drivers or firmwares in order to "
-"operate smoothly. The appropriate packages can be retrieved from the "
-"Mandriva Club. Do you want to subscribe to the Mandriva Club?"
-msgstr ""
-
-#: standalone/keyboarddrake:45
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
-
-#: standalone/localedrake:38
-#, c-format
-msgid "LocaleDrake"
-msgstr ""
-
-#: standalone/localedrake:44
-#, fuzzy, c-format
-msgid "You should install the following packages: %s"
-msgstr "ምርጫዎችን ማስቀመጥ አልተቻለም"
-
-#. -PO: the following is used to combine packages names. eg: "initscripts, harddrake, yudit"
-#: standalone/localedrake:47 standalone/scannerdrake:135
-#, c-format
-msgid ", "
-msgstr ""
-
-#: standalone/localedrake:55
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: standalone/logdrake:49
-#, fuzzy, c-format
-msgid "Mandriva Linux Tools Logs"
-msgstr "/መሣሪያዎች/የነበረው ቀለሞች"
-
-#: standalone/logdrake:50
-#, c-format
-msgid "Logdrake"
-msgstr ""
-
-#: standalone/logdrake:63
-#, c-format
-msgid "Show only for the selected day"
-msgstr ""
-
-#: standalone/logdrake:70
-#, c-format
-msgid "/File/_New"
-msgstr "/ፋይል (F)/አዲስ (_N)"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "/File/_Open"
-msgstr "/ፋይል (F)/ክፈት (_O)"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "/File/_Save"
-msgstr "/ፋይል (F)/አስቀምጥ (_S)"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
-
-#: standalone/logdrake:73
-#, c-format
-msgid "/File/Save _As"
-msgstr "/ፋይል (F)/በሌላ ስም አስቀምጥ... (_A)"
-
-#: standalone/logdrake:74
-#, c-format
-msgid "/File/-"
-msgstr "/ፋይል (F)/-"
-
-#: standalone/logdrake:77
-#, c-format
-msgid "/Options/Test"
-msgstr "/ምርጫዎች (O)/ፈተና"
-
-#: standalone/logdrake:79
-#, c-format
-msgid "/Help/_About..."
-msgstr "/መረጃ (H)/ስለ... (_A)"
-
-#: standalone/logdrake:108
-#, c-format
-msgid ""
-"_:this is the auth.log log file\n"
-"Authentication"
-msgstr ""
-
-#: standalone/logdrake:109
-#, c-format
-msgid ""
-"_:this is the user.log log file\n"
-"User"
-msgstr ""
-
-#: standalone/logdrake:110
-#, c-format
-msgid ""
-"_:this is the /var/log/messages log file\n"
-"Messages"
-msgstr ""
-
-#: standalone/logdrake:111
-#, c-format
-msgid ""
-"_:this is the /var/log/syslog log file\n"
-"Syslog"
-msgstr ""
-
-#: standalone/logdrake:115
-#, c-format
-msgid "search"
-msgstr "ፈለግ"
-
-#: standalone/logdrake:127
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr ""
-
-#: standalone/logdrake:128 standalone/net_applet:347 standalone/net_monitor:93
-#, c-format
-msgid "Settings"
-msgstr "ስየማዎች"
-
-#: standalone/logdrake:133
-#, c-format
-msgid "Matching"
-msgstr ""
-
-#: standalone/logdrake:134
-#, fuzzy, c-format
-msgid "but not matching"
-msgstr "ማንበብ አልቻለም፦ "
-
-#: standalone/logdrake:138
-#, c-format
-msgid "Choose file"
-msgstr "ፋይል ይምረጡ"
-
-#: standalone/logdrake:150
-#, c-format
-msgid "Calendar"
-msgstr "ቀን መቁጠሪያ"
-
-#: standalone/logdrake:160
-#, c-format
-msgid "Content of the file"
-msgstr "የፋይሉ ይዘት"
-
-#: standalone/logdrake:164 standalone/logdrake:401
-#, c-format
-msgid "Mail alert"
-msgstr "የመልዕክት ማንቂያ"
-
-#: standalone/logdrake:171
-#, c-format
-msgid "The alert wizard has failed unexpectedly:"
-msgstr ""
-
-#: standalone/logdrake:224
-#, fuzzy, c-format
-msgid "please wait, parsing file: %s"
-msgstr "እባክዎ ያለ ሰነድን ይምረጡ"
-
-#: standalone/logdrake:379
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr ""
-
-#: standalone/logdrake:380
-#, fuzzy, c-format
-msgid "Domain Name Resolver"
-msgstr "ህገ ወጥ የዶሴ ስም"
-
-#: standalone/logdrake:381
-#, c-format
-msgid "Ftp Server"
-msgstr "የFTP ተጠሪ"
-
-#: standalone/logdrake:382
-#, fuzzy, c-format
-msgid "Postfix Mail Server"
-msgstr "የመልዕክት ተጠሪ ሚስጢራዊ ቃል ያስፈልጋል"
-
-#: standalone/logdrake:383
-#, fuzzy, c-format
-msgid "Samba Server"
-msgstr "የሳምባ ተጠሪ"
-
-#: standalone/logdrake:385
-#, c-format
-msgid "Webmin Service"
-msgstr ""
-
-#: standalone/logdrake:386
-#, c-format
-msgid "Xinetd Service"
-msgstr ""
-
-#: standalone/logdrake:395
-#, c-format
-msgid "Configure the mail alert system"
-msgstr ""
-
-#: standalone/logdrake:396
-#, c-format
-msgid "Stop the mail alert system"
-msgstr ""
-
-#: standalone/logdrake:404
-#, fuzzy, c-format
-msgid "Mail alert configuration"
-msgstr "ፈጣን ደብዳቤ"
-
-#: standalone/logdrake:405
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-
-#: standalone/logdrake:415
-#, fuzzy, c-format
-msgid "Services settings"
-msgstr "የአሁኑን ምርጫዎች"
-
-#: standalone/logdrake:416
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr ""
-
-#: standalone/logdrake:423
-#, fuzzy, c-format
-msgid "Load setting"
-msgstr "ምርጫዎች ጫን (_L)"
-
-#: standalone/logdrake:424
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: standalone/logdrake:425
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr ""
-
-#: standalone/logdrake:430
-#, fuzzy, c-format
-msgid "Alert configuration"
-msgstr "የማስተካከያው አራሚ"
-
-#: standalone/logdrake:431
-#, c-format
-msgid "Please enter your email address below "
-msgstr ""
-
-#: standalone/logdrake:432
-#, c-format
-msgid "and enter the name (or the IP) of the SMTP server you wish to use"
-msgstr ""
-
-#: standalone/logdrake:451
-#, c-format
-msgid "The wizard successfully configured the mail alert."
-msgstr ""
-
-#: standalone/logdrake:457
-#, c-format
-msgid "The wizard successfully disabled the mail alert."
-msgstr ""
-
-#: standalone/logdrake:516
-#, c-format
-msgid "Save as.."
-msgstr "እንደ...ያስቀምጡ"
-
-#: standalone/mousedrake:31
-#, c-format
-msgid "Please choose your mouse type."
-msgstr ""
-
-#: standalone/mousedrake:44
-#, fuzzy, c-format
-msgid "Emulate third button?"
-msgstr "'መረጃ' የሚለውን ቁልፍ አሳይ"
-
-#: standalone/mousedrake:61
-#, c-format
-msgid "Mouse test"
-msgstr "የጠቋሚ ሙከራ"
-
-#: standalone/mousedrake:64
-#, c-format
-msgid "Please test your mouse:"
-msgstr ""
-
-#: standalone/net_applet:47
-#, fuzzy, c-format
-msgid "Network is up on interface %s"
-msgstr "የተጠቃሚው እይታ"
-
-#. -PO: keep the "Configure Network" substring synced with the "Configure Network" message below
-#: standalone/net_applet:50
-#, c-format
-msgid "Network is down on interface %s. Click on \"Configure Network\""
-msgstr ""
-
-#: standalone/net_applet:56 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Connect %s"
-msgstr ""
-
-#: standalone/net_applet:57 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, fuzzy, c-format
-msgid "Disconnect %s"
-msgstr "ግንኙነት አቋርጥ"
-
-#: standalone/net_applet:58
-#, fuzzy, c-format
-msgid "Monitor Network"
-msgstr "የቀይ ባርኔታ መረብ"
-
-#: standalone/net_applet:60
-#, c-format
-msgid "Manage wireless networks"
-msgstr ""
-
-#: standalone/net_applet:61
-#, fuzzy, c-format
-msgid "Configure Network"
-msgstr "መልዕክቶችን አሁን አምጣ"
-
-#: standalone/net_applet:63
-#, fuzzy, c-format
-msgid "Watched interface"
-msgstr "ንድፋዊ እይታ"
-
-#: standalone/net_applet:93
-#, fuzzy, c-format
-msgid "Profiles"
-msgstr "ወኪሎች"
-
-#: standalone/net_applet:102
-#, c-format
-msgid "Get Online Help"
-msgstr ""
-
-#: standalone/net_applet:335
-#, c-format
-msgid "Interactive Firewall automatic mode"
-msgstr ""
-
-#: standalone/net_applet:340
-#, c-format
-msgid "Always launch on startup"
-msgstr ""
-
-#: standalone/net_applet:344
-#, fuzzy, c-format
-msgid "Wireless networks"
-msgstr "ሽቦ አልባ ግንኙነት"
-
-#: standalone/net_applet:429
-#, fuzzy, c-format
-msgid "Interactive Firewall: intrusion detected"
-msgstr "ተስተካክሎ የተቀመጠውን ባዕድ መነሻ ጥቀስ"
-
-#: standalone/net_applet:442
-#, fuzzy, c-format
-msgid "What do you want to do with this attacker?"
-msgstr "ይህንን ሁኔታ መጠቀም ይፈልጋሉ?"
-
-#: standalone/net_applet:445
-#, fuzzy, c-format
-msgid "Attack details"
-msgstr "ያለ ዝርዝሮች"
-
-#: standalone/net_applet:449
-#, fuzzy, c-format
-msgid "Attack time: %s"
-msgstr "%s አስጀምርs"
-
-#: standalone/net_applet:450
-#, fuzzy, c-format
-msgid "Network interface: %s"
-msgstr "የተጠቃሚው እይታ"
-
-#: standalone/net_applet:451
-#, fuzzy, c-format
-msgid "Attack type: %s"
-msgstr "ዓይነት፦"
-
-#: standalone/net_applet:452
-#, fuzzy, c-format
-msgid "Protocol: %s"
-msgstr "&ፖርት፦"
-
-#: standalone/net_applet:453
-#, fuzzy, c-format
-msgid "Attacker IP address: %s"
-msgstr "የIP አድራሻ፦"
-
-#: standalone/net_applet:454
-#, fuzzy, c-format
-msgid "Attacker hostname: %s"
-msgstr "ዞሮ መመለሻ ፋይል ስም: %s"
-
-#: standalone/net_applet:457
-#, fuzzy, c-format
-msgid "Service attacked: %s"
-msgstr "የአገልግሎቶች መቆጣጠሪያ"
-
-#: standalone/net_applet:458
-#, fuzzy, c-format
-msgid "Port attacked: %s"
-msgstr "&ፖርት፦"
-
-#: standalone/net_applet:460
-#, c-format
-msgid "Type of ICMP attack: %s"
-msgstr ""
-
-#: standalone/net_applet:465
-#, c-format
-msgid "Always blacklist (do not ask again)"
-msgstr ""
-
-#: standalone/net_monitor:57 standalone/net_monitor:62
-#, fuzzy, c-format
-msgid "Network Monitoring"
-msgstr "Name=መረብ"
-
-#: standalone/net_monitor:98
-#, c-format
-msgid "Global statistics"
-msgstr ""
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Instantaneous"
-msgstr ""
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Average"
-msgstr ""
-
-#: standalone/net_monitor:102
+#: timezone.pm:148 timezone.pm:149
#, fuzzy, c-format
-msgid ""
-"Sending\n"
-"speed:"
-msgstr "ያልተላኩ መልዕክቶችን በመላክ ላይ"
-
-#: standalone/net_monitor:103
-#, c-format
-msgid ""
-"Receiving\n"
-"speed:"
-msgstr ""
-
-#: standalone/net_monitor:107
-#, fuzzy, c-format
-msgid ""
-"Connection\n"
-"time: "
-msgstr "የቅርብ መረብ ማገናኛ"
-
-#: standalone/net_monitor:114
-#, c-format
-msgid "Use same scale for received and transmitted"
-msgstr ""
-
-#: standalone/net_monitor:133
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr ""
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, fuzzy, c-format
-msgid "Disconnecting from Internet "
-msgstr "የኢንተርኔት ሰዓትን ተጠቀም"
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, fuzzy, c-format
-msgid "Connecting to Internet "
-msgstr "የኢንተርኔት ሰዓትን ተጠቀም"
-
-#: standalone/net_monitor:226
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr ""
-
-#: standalone/net_monitor:227
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr ""
-
-#: standalone/net_monitor:229
-#, fuzzy, c-format
-msgid "Connection complete."
-msgstr "የቅርብ መረብ ማገናኛ"
-
-#: standalone/net_monitor:230
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandriva Linux Control Center."
-msgstr ""
-
-#: standalone/net_monitor:335
-#, c-format
-msgid "Color configuration"
-msgstr "የቀለም ምርጫ"
-
-#: standalone/net_monitor:383 standalone/net_monitor:403
-#, c-format
-msgid "sent: "
-msgstr "የተላከ፦"
-
-#: standalone/net_monitor:390 standalone/net_monitor:407
-#, c-format
-msgid "received: "
-msgstr ""
-
-#: standalone/net_monitor:397
-#, c-format
-msgid "average"
-msgstr ""
-
-#: standalone/net_monitor:400
-#, c-format
-msgid "Local measure"
-msgstr ""
-
-#: standalone/net_monitor:461
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: standalone/net_monitor:472
-#, c-format
-msgid "No internet connection configured"
-msgstr ""
-
-#: standalone/printerdrake:76
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr ""
-
-#: standalone/printerdrake:128
-#, fuzzy, c-format
-msgid "%s Printer Management Tool"
-msgstr "የመስሪያውን ፍንጭ አሳይ"
-
-#: standalone/printerdrake:142 standalone/printerdrake:143
-#: standalone/printerdrake:144 standalone/printerdrake:145
-#: standalone/printerdrake:153 standalone/printerdrake:154
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Actions"
-msgstr "/_ተግባራት"
-
-#: standalone/printerdrake:142 standalone/printerdrake:154
-#, c-format
-msgid "/_Add Printer"
-msgstr "/ማተሚያ ጨምር (_A)"
-
-#: standalone/printerdrake:143
-#, fuzzy, c-format
-msgid "/Set as _Default"
-msgstr "ቀዳሚ ሆኖ ይሰየም"
-
-#: standalone/printerdrake:144
-#, c-format
-msgid "/_Edit"
-msgstr "/አስተካክል (_E)"
-
-#: standalone/printerdrake:145
-#, c-format
-msgid "/_Delete"
-msgstr "/_ይጥፋ"
-
-#: standalone/printerdrake:146
-#, fuzzy, c-format
-msgid "/_Expert mode"
-msgstr "የመሸፈኛ ዘዴ"
-
-#: standalone/printerdrake:151
-#, c-format
-msgid "/_Refresh"
-msgstr "/_በድጋሚ ጀምር"
-
-#: standalone/printerdrake:158
-#, fuzzy, c-format
-msgid "/_Configure CUPS"
-msgstr "የCUPS ተጠሪ"
-
-#: standalone/printerdrake:171
-#, fuzzy, c-format
-msgid "/Configure _Auto Administration"
-msgstr "የደህንነት ተቆጣጣሪ"
-
-#: standalone/printerdrake:194
-#, c-format
-msgid "Search:"
-msgstr "ፈለግ፦"
-
-#: standalone/printerdrake:197
-#, c-format
-msgid "Apply filter"
-msgstr "ማጣሪያ ተጠቀም"
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, fuzzy, c-format
-msgid "Def."
-msgstr "የነበረው (_A)"
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Printer Name"
-msgstr "የማተሚያ ስም"
-
-#: standalone/printerdrake:224
-#, fuzzy, c-format
-msgid "Connection Type"
-msgstr "የፋይሉ ዓይነት"
-
-#: standalone/printerdrake:231
-#, c-format
-msgid "Server Name"
-msgstr "የተጠሪ ስም"
-
-#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add Printer"
-msgstr "ማተሚያ ይጨመር"
-
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add a new printer to the system"
-msgstr ""
-
-#. -PO: "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set as default"
-msgstr "ቀዳሚ ሆኖ ይሰየም"
-
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr ""
-
-#: standalone/printerdrake:245
-#, fuzzy, c-format
-msgid "Edit selected printer"
-msgstr "ምንም ዓይነት ማተሚያ አልተመረጠም"
-
-#: standalone/printerdrake:248
-#, fuzzy, c-format
-msgid "Delete selected printer"
-msgstr "ምንም ዓይነት ማተሚያ አልተመረጠም"
-
-#: standalone/printerdrake:251
-#, c-format
-msgid "Refresh the list"
-msgstr "ዝርዝሩን በድጋሚ አስጀምር"
-
-#. -PO: "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:254
-#, fuzzy, c-format
-msgid "Configure CUPS"
-msgstr "የCUPS ተጠሪ"
-
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr ""
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Enabled"
-msgstr "ያስችላል"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Disabled"
-msgstr "የተበላሸ"
-
-#: standalone/printerdrake:596
-#, c-format
-msgid "Authors: "
-msgstr "ደራሲዎች፦"
-
-#. -PO: here %s is the version number
-#: standalone/printerdrake:606
-#, fuzzy, c-format
-msgid "Printer Management %s"
-msgstr "የመምሪያው ጉባኤ"
-
-#: standalone/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 ""
-
-#: standalone/scannerdrake:55
-#, c-format
-msgid "Aborting Scannerdrake."
-msgstr ""
-
-#: standalone/scannerdrake:60
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-
-#: standalone/scannerdrake:61
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr ""
-
-#: standalone/scannerdrake:67 standalone/scannerdrake:508
-#, c-format
-msgid "Searching for configured scanners..."
-msgstr ""
-
-#: standalone/scannerdrake:71 standalone/scannerdrake:512
-#, c-format
-msgid "Searching for new scanners..."
-msgstr ""
-
-#: standalone/scannerdrake:79 standalone/scannerdrake:534
-#, c-format
-msgid "Re-generating list of configured scanners..."
-msgstr ""
-
-#: standalone/scannerdrake:101
-#, c-format
-msgid "The %s is not supported by this version of %s."
-msgstr ""
-
-#: standalone/scannerdrake:104
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr ""
-
-#: standalone/scannerdrake:116
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
-
-#: standalone/scannerdrake:131
-#, fuzzy, c-format
-msgid "Select a scanner model"
-msgstr "የማተሚያውን ሞዴል ምረጡ"
-
-#: standalone/scannerdrake:132
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: standalone/scannerdrake:133
-#, fuzzy, c-format
-msgid "Detected model: %s"
-msgstr "<b>ሞዴል</b>፦ %s<br>"
-
-#: standalone/scannerdrake:136
-#, fuzzy, c-format
-msgid "Port: %s"
-msgstr "&ፖርት፦"
-
-#: standalone/scannerdrake:138 standalone/scannerdrake:141
-#, c-format
-msgid " (UNSUPPORTED)"
-msgstr ""
-
-#: standalone/scannerdrake:144
-#, fuzzy, c-format
-msgid "The %s is not supported under Linux."
-msgstr "አይደለም"
-
-#: standalone/scannerdrake:171 standalone/scannerdrake:185
-#, c-format
-msgid "Do not install firmware file"
-msgstr ""
-
-#: standalone/scannerdrake:175 standalone/scannerdrake:227
-#, c-format
-msgid ""
-"It is possible that your %s needs its firmware to be uploaded everytime when "
-"it is turned on."
-msgstr ""
-
-#: standalone/scannerdrake:176 standalone/scannerdrake:228
-#, c-format
-msgid "If this is the case, you can make this be done automatically."
-msgstr ""
-
-#: standalone/scannerdrake:177 standalone/scannerdrake:231
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware file for your scanner so that it "
-"can be installed."
-msgstr ""
-
-#: standalone/scannerdrake:178 standalone/scannerdrake:232
-#, 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 ""
-
-#: standalone/scannerdrake:180 standalone/scannerdrake:239
-#, fuzzy, c-format
-msgid "Install firmware file from"
-msgstr "ከ &pot ሰነድ አሻሽል"
-
-#: standalone/scannerdrake:200
-#, fuzzy, c-format
-msgid "Select firmware file"
-msgstr "ጥሩው የፋይል ዓይነት"
-
-#: standalone/scannerdrake:203 standalone/scannerdrake:262
-#, c-format
-msgid "The firmware file %s does not exist or is unreadable!"
-msgstr ""
-
-#: standalone/scannerdrake:226
-#, c-format
-msgid ""
-"It is possible that your scanners need their firmware to be uploaded "
-"everytime when they are turned on."
-msgstr ""
-
-#: standalone/scannerdrake:230
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware files for your scanners so that it "
-"can be installed."
-msgstr ""
-
-#: standalone/scannerdrake:233
-#, 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 ""
-
-#: standalone/scannerdrake:235
-#, fuzzy, c-format
-msgid "Install firmware for the"
-msgstr "&መረጃውን አስስ"
-
-#: standalone/scannerdrake:258
-#, fuzzy, c-format
-msgid "Select firmware file for the %s"
-msgstr "ለአማራጩ የፋይል መመልከቻ አርእስት"
-
-#: standalone/scannerdrake:276
-#, fuzzy, c-format
-msgid "Could not install the firmware file for the %s!"
-msgstr "ለመጻፍ ፋይል %sን መክፈት አልቻለም"
-
-#: standalone/scannerdrake:289
-#, c-format
-msgid "The firmware file for your %s was successfully installed."
-msgstr ""
-
-#: standalone/scannerdrake:299
-#, fuzzy, c-format
-msgid "The %s is unsupported"
-msgstr "አይደለም"
-
-#: standalone/scannerdrake:304
-#, c-format
-msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the %s Control Center in Hardware section."
-msgstr ""
-
-#: standalone/scannerdrake:322
-#, fuzzy, c-format
-msgid "Setting up kernel modules..."
-msgstr "የፋይል ስም አቅድ"
-
-#: standalone/scannerdrake:332 standalone/scannerdrake:339
-#: standalone/scannerdrake:369
-#, c-format
-msgid "Auto-detect available ports"
-msgstr ""
-
-#: standalone/scannerdrake:334 standalone/scannerdrake:380
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr ""
+msgid "All servers"
+msgstr "ተጠሪ ጨምር"
-#: standalone/scannerdrake:335
+#: timezone.pm:183
#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
+msgid "Global"
msgstr ""
-#: standalone/scannerdrake:337 standalone/scannerdrake:382
-#, fuzzy, c-format
-msgid "choose device"
-msgstr "የመረብ ዕቃ"
-
-#: standalone/scannerdrake:371
+#: timezone.pm:186
#, fuzzy, c-format
-msgid "Searching for scanners..."
-msgstr "&መረጃውን አስስ"
+msgid "Africa"
+msgstr "ደቡብ አፍሪካ"
-#: standalone/scannerdrake:407 standalone/scannerdrake:414
+#: timezone.pm:187
#, fuzzy, c-format
-msgid "Attention!"
-msgstr "አርጀንቲና"
-
-#: standalone/scannerdrake:408
-#, 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 ""
-
-#: standalone/scannerdrake:409 standalone/scannerdrake:418
-#, c-format
-msgid ""
-"More info in the driver's manual page. Run the command \"man sane-%s\" to "
-"read it."
-msgstr ""
-
-#: standalone/scannerdrake:411 standalone/scannerdrake:420
-#, c-format
-msgid ""
-"After that you may scan documents using \"XSane\" or \"Kooka\" from "
-"Multimedia/Graphics in the applications menu."
-msgstr ""
-
-#: standalone/scannerdrake:415
-#, c-format
-msgid ""
-"Your %s has been configured, but it is possible that additional manual "
-"adjustments are needed to get it to work. "
-msgstr ""
-
-#: standalone/scannerdrake:416
-#, 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 ""
-
-#: standalone/scannerdrake:417
-#, c-format
-msgid "edit the configuration file /etc/sane.d/%s.conf. "
-msgstr ""
-
-#: standalone/scannerdrake:423
-#, 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 ""
-
-#: standalone/scannerdrake:448
-#, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr ""
-
-#: standalone/scannerdrake:449
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr ""
+msgid "Asia"
+msgstr "ኦስትሪያ"
-#: standalone/scannerdrake:452 standalone/scannerdrake:455
+#: timezone.pm:188
#, c-format
-msgid "There are no scanners found which are available on your system.\n"
+msgid "Europe"
msgstr ""
-#: standalone/scannerdrake:469
+#: timezone.pm:189
#, fuzzy, c-format
-msgid "Search for new scanners"
-msgstr "ስለ...መረጃ አስስ"
+msgid "North America"
+msgstr "ደቡብ አፍሪካ"
-#: standalone/scannerdrake:475
+#: timezone.pm:190
#, fuzzy, c-format
-msgid "Add a scanner manually"
-msgstr "አምድ በኋላ ጨምር"
-
-#: standalone/scannerdrake:482
-#, c-format
-msgid "Install/Update firmware files"
-msgstr ""
-
-#: standalone/scannerdrake:488
-#, c-format
-msgid "Scanner sharing"
-msgstr ""
-
-#: standalone/scannerdrake:547 standalone/scannerdrake:712
-#, c-format
-msgid "All remote machines"
-msgstr ""
-
-#: standalone/scannerdrake:559 standalone/scannerdrake:862
-#, c-format
-msgid "This machine"
-msgstr "ይህ አስሊ"
-
-#: standalone/scannerdrake:599
-#, 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 ""
-
-#: standalone/scannerdrake:600
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-
-#: standalone/scannerdrake:603
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr ""
-
-#: standalone/scannerdrake:605
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr ""
-
-#: standalone/scannerdrake:619
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr ""
-
-#: standalone/scannerdrake:622
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr ""
-
-#: standalone/scannerdrake:649 standalone/scannerdrake:721
-#: standalone/scannerdrake:871
-#, c-format
-msgid "Sharing of local scanners"
-msgstr ""
-
-#: standalone/scannerdrake:650
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr ""
-
-#: standalone/scannerdrake:661 standalone/scannerdrake:811
-#, c-format
-msgid "Add host"
-msgstr "ተጠሪን ጨምር"
-
-#: standalone/scannerdrake:667 standalone/scannerdrake:817
-#, c-format
-msgid "Edit selected host"
-msgstr "የተመረጠው ተጠሪ ይታረም"
-
-#: standalone/scannerdrake:676 standalone/scannerdrake:826
-#, c-format
-msgid "Remove selected host"
-msgstr "የተመረጠው ተጠሪ ይወገድ"
-
-#: standalone/scannerdrake:700 standalone/scannerdrake:708
-#: standalone/scannerdrake:713 standalone/scannerdrake:759
-#: standalone/scannerdrake:850 standalone/scannerdrake:858
-#: standalone/scannerdrake:863 standalone/scannerdrake:909
-#, c-format
-msgid "Name/IP address of host:"
-msgstr ""
-
-#: standalone/scannerdrake:722 standalone/scannerdrake:872
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr ""
-
-#: standalone/scannerdrake:733 standalone/scannerdrake:883
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr ""
-
-#: standalone/scannerdrake:744 standalone/scannerdrake:894
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr ""
-
-#: standalone/scannerdrake:799
-#, c-format
-msgid "Usage of remote scanners"
-msgstr ""
-
-#: standalone/scannerdrake:800
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr ""
-
-#: standalone/scannerdrake:957
-#, 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 ""
-
-#: standalone/scannerdrake:961 standalone/scannerdrake:965
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr ""
-
-#: standalone/service_harddrake:113
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr ""
-
-#: standalone/service_harddrake:114
-#, c-format
-msgid "- %s was removed\n"
-msgstr ""
-
-#: standalone/service_harddrake:117
-#, c-format
-msgid "Some devices were added: %s\n"
-msgstr ""
-
-#: standalone/service_harddrake:118
-#, c-format
-msgid "- %s was added\n"
-msgstr ""
-
-#: standalone/service_harddrake:235
-#, c-format
-msgid "Hardware probing in progress"
-msgstr ""
-
-#: standalone/service_harddrake_confirm:7
-#, c-format
-msgid "Hardware changes in \"%s\" class (%s seconds to answer)"
-msgstr ""
-
-#: standalone/service_harddrake_confirm:8
-#, c-format
-msgid "Do you want to run the appropriate config tool?"
-msgstr ""
-
-#: steps.pm:14
-#, c-format
-msgid "Language"
-msgstr "ቋንቋ"
-
-#: steps.pm:15
-#, c-format
-msgid "License"
-msgstr ""
-
-#: steps.pm:16
-#, c-format
-msgid "Configure mouse"
-msgstr "መጠቆሚያ ሰይም"
-
-#: steps.pm:17
-#, c-format
-msgid "Hard drive detection"
-msgstr ""
-
-#: steps.pm:18
-#, c-format
-msgid "Select installation class"
-msgstr ""
-
-#: steps.pm:19
-#, c-format
-msgid "Choose your keyboard"
-msgstr ""
-
-#: steps.pm:22
-#, c-format
-msgid "Format partitions"
-msgstr ""
-
-#: steps.pm:23
-#, c-format
-msgid "Choose packages to install"
-msgstr ""
-
-#: steps.pm:24
-#, c-format
-msgid "Install system"
-msgstr "ሲስተም ትከል"
+msgid "Oceania"
+msgstr "ማከዶኒያ"
-#: steps.pm:25
+#: timezone.pm:191
#, fuzzy, c-format
-msgid "Administrator password"
-msgstr "የroot ሚስጢራዊ ቃል ይምረጡ"
-
-#: steps.pm:26
-#, c-format
-msgid "Add a user"
-msgstr "ተጠቃሚን ጨምር"
-
-#: steps.pm:27
-#, c-format
-msgid "Configure networking"
-msgstr ""
-
-#: steps.pm:28
-#, c-format
-msgid "Install bootloader"
-msgstr ""
-
-#: steps.pm:29
-#, c-format
-msgid "Configure X"
-msgstr "Xን ሰይም"
+msgid "South America"
+msgstr "ደቡብ አፍሪካ"
-#: steps.pm:31
+#: timezone.pm:200
#, c-format
-msgid "Configure services"
-msgstr "አገልግሎቶችን ሰይም"
+msgid "Hong Kong"
+msgstr "ሆንግ ኮንግ"
-#: steps.pm:32
+#: timezone.pm:237
#, c-format
-msgid "Install updates"
-msgstr ""
+msgid "Russian Federation"
+msgstr "ራሺያ"
-#: steps.pm:33
+#: timezone.pm:245
#, c-format
-msgid "Exit install"
-msgstr ""
+msgid "Yugoslavia"
+msgstr "ዩጎዝላቪያ"
-#: ugtk2.pm:899
+#: ugtk2.pm:788
#, c-format
msgid "Is this correct?"
msgstr "ይህ ትክክል ነው?"
-#: ugtk2.pm:959
+#: ugtk2.pm:848
#, fuzzy, c-format
msgid "No file chosen"
msgstr "የፋይል ምልክት"
-#: ugtk2.pm:961
+#: ugtk2.pm:850
#, c-format
msgid "You have chosen a file, not a directory"
msgstr ""
-#: ugtk2.pm:963
+#: ugtk2.pm:852
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr "የቤት ዶሴ አልተገኘም።"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, fuzzy, c-format
msgid "No such directory"
msgstr "ዶሴ አይደለም"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, fuzzy, c-format
msgid "No such file"
msgstr "ፋይሉ `%s'ን የለም\n"
-#: ugtk2.pm:1046
+#: ugtk2.pm:933
#, c-format
msgid "Expand Tree"
msgstr ""
-#: ugtk2.pm:1047
+#: ugtk2.pm:934
#, c-format
msgid "Collapse Tree"
msgstr ""
-#: ugtk2.pm:1048
+#: ugtk2.pm:935
#, c-format
msgid "Toggle between flat and group sorted"
msgstr ""
@@ -23589,371 +6078,18 @@ msgstr ""
msgid "Installation failed"
msgstr "%s አልተገኘም"
-#~ msgid "click here if you are sure."
-#~ msgstr "እርግጠኛ ከሆኑ፤ እዚህ ላይ ይጫኑ።"
-
-#, fuzzy
-#~ msgid "here if no."
-#~ msgstr "(ስለ ቃላት አጻጻፍ አስተያየት የለም)"
-
-#, fuzzy
-#~ msgid "Remove List"
-#~ msgstr "ከዝርዝር አጥፋ (_R)"
-
-#, fuzzy
-#~ msgid "Account:"
-#~ msgstr "ስለ"
-
-#~ msgid "Hostname:"
-#~ msgstr "የእንግዳ ተቀባይ ስም፦"
-
-#, fuzzy
-#~ msgid "Cancel setup"
-#~ msgstr "ተወው"
-
-#, fuzzy
-#~ msgid ""
-#~ "The following media have been found and will be used during install: %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do you have a supplementary installation media to configure?"
-#~ msgstr "ሌላ አለ?"
-
-#~ msgid "Unknown Model"
-#~ msgstr "ያልታወቀ ሞዴል"
-
-#, fuzzy
-#~ msgid "Printing/Scanning on \"%s\""
-#~ msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
-
-#~ msgid "http://www.mandrivalinux.com/en/errata.php3"
-#~ msgstr "http://www.mandrivalinux.com/en/errata.php3"
-
-#, fuzzy
-#~ msgid "Default Idmap "
-#~ msgstr "የነበረው _ሠሌዳ"
-
-#~ msgid "Please wait, preparing installation..."
-#~ msgstr "እባክዎ ይጠብቁ፣ ተከላ በማዘጋጀት ላይ..."
-
-#~ msgid "Installing package %s"
-#~ msgstr "የ%s ጥቅል በመትከል ላይ"
-
-#, fuzzy
-#~ msgid "<b>What is Mandriva Linux?</b>"
-#~ msgstr "ትርጉሙ &ጅምር ነው"
-
-#~ msgid "Welcome to <b>Mandriva Linux</b>!"
-#~ msgstr "ወደ <b>Mandriva Linux</b>! እንኳን ደህና መጡ"
-
-#, fuzzy
-#~ msgid "<b>Open Source</b>"
-#~ msgstr "ማስታወሻ"
-
-#, fuzzy
-#~ msgid "<b>The GPL</b>"
-#~ msgstr "ማስታወሻ"
-
-#, fuzzy
-#~ msgid "<b>Mandriva Products</b>"
-#~ msgstr "<b>የMandriva Linux ባለሞያ</b>"
-
-#, fuzzy
-#~ msgid "<b>The KDE Choice</b>"
-#~ msgstr "Name=ኬዲኢ 1"
-
-#, fuzzy
-#~ msgid "<b>Choose your Favorite Desktop Environment</b>"
-#~ msgstr "<b>የእድገት አካባቢዎች</b>"
-
-#, fuzzy
-#~ msgid "<b>Kontact</b>"
-#~ msgstr "ማስታወሻ"
-
-#~ msgid "<b>Surf the Internet</b>"
-#~ msgstr "<b>ኢንተርኔትን ያካሉ</b>"
-
-#, fuzzy
-#~ msgid "\t* <b>Transfer</b> files with KBear."
-#~ msgstr "ፋይሎችን በFTP ያዛውሩ"
-
-#~ msgid "<b>Development Environments</b>"
-#~ msgstr "<b>የእድገት አካባቢዎች</b>"
-
-#, fuzzy
-#~ msgid "<b>Development Editors</b>"
-#~ msgstr "መሣሪያዎች ለሶፍትዌር መሻሻል"
-
-#, fuzzy
-#~ msgid "<b>Development Languages</b>"
-#~ msgstr "መሣሪያዎች ለሶፍትዌር መሻሻል"
-
-#, fuzzy
-#~ msgid "\t\t* <b>Perl</b>"
-#~ msgstr "ማስታወሻ"
-
-#, fuzzy
-#~ msgid "\t* And many more."
-#~ msgstr "እና ብዙ ተጨማሪዎች ..."
-
-#, fuzzy
-#~ msgid "<b>Development Tools</b>"
-#~ msgstr "መሣሪያዎች ለሶፍትዌር መሻሻል"
-
-#, fuzzy
-#~ msgid "<b>Servers</b>"
-#~ msgstr "ማስታወሻ"
-
-#, fuzzy
-#~ msgid "<b>Mandriva Linux Control Center</b>"
-#~ msgstr "አንቀጹን መሀል ኩልኩል አድርግ"
-
-#, fuzzy
-#~ msgid "<b>The Open Source Model</b>"
-#~ msgstr "Name=ኬዲኢ 1"
-
-#, fuzzy
-#~ msgid "<b>Online Store</b>"
-#~ msgstr "<b>Mandriva Online</b>"
-
-#~ msgid "<b>Mandriva Club</b>"
-#~ msgstr "<b>የMandriva Linux ክለብ</b>"
-
-#~ msgid "<b>Mandriva Online</b>"
-#~ msgstr "<b>Mandriva Online</b>"
-
-#~ msgid "<b>Mandriva Expert</b>"
-#~ msgstr "<b>የMandriva Linux ባለሞያ</b>"
-
-#~ msgid "Status"
-#~ msgstr "ሁኔታ"
-
-#~ msgid "text width"
-#~ msgstr "የጽሑፍ ስፋት"
-
-#, fuzzy
-#~ msgid "ProgressBar color selection"
-#~ msgstr "የተመረጠውን ከላይ አስምሩ (ቀያይሩ)"
-
-#~ msgid "Connect to the Internet"
-#~ msgstr "ከኢንተርኔት ጋር አገናኝ"
-
-#, fuzzy
-#~ msgid "Found printer on %s..."
-#~ msgstr "የማተሚያው ትዕዛዝ፦ "
-
-#, fuzzy
-#~ msgid "dhcpd Config..."
-#~ msgstr "&ለውጡ"
-
-#, fuzzy
-#~ msgid "Unable to select wireless network: %s"
-#~ msgstr "ከአንጸባራቂ %s ጋር መገናኘት አልተቻለም"
-
-#, fuzzy
-#~ msgid "Interactive intrusion detection"
-#~ msgstr "ማተሚያውን አልተገኘም።"
-
-#, fuzzy
-#~ msgid "Active Firewall: intrusion detected"
-#~ msgstr "ተስተካክሎ የተቀመጠውን ባዕድ መነሻ ጥቀስ"
-
-#, fuzzy
-#~ msgid "Do you want to blacklist the attacker?"
-#~ msgstr "ይህንን ሁኔታ መጠቀም ይፈልጋሉ?"
-
-#~ msgid "Grub"
-#~ msgstr "Grub"
+#~ msgid "Icon"
+#~ msgstr "ምልክት"
#, fuzzy
-#~ msgid "Local Network adress"
-#~ msgstr "የቀይ ባርኔታ መረብ"
-
-#~ msgid "General"
-#~ msgstr "አጠቃላይ"
-
-#, fuzzy
-#~ msgid "Kernel version"
-#~ msgstr "ቅጂውን አጣራ"
-
-#~ msgid "Preferences"
-#~ msgstr "ምርጫዎች"
-
-#, fuzzy
-#~ msgid "Advanced preferences"
-#~ msgstr "ምርጫዎችን ይምረጡ"
-
-#~ msgid "Size"
-#~ msgstr "መጠን"
-
-#, fuzzy
-#~ msgid "force"
-#~ msgstr "ጽሁፉን ከቀኝ ወደግራ አስገድድ"
-
-#, fuzzy
-#~ msgid "if needed"
-#~ msgstr "አስቀምጥ (__S__) (አስፈላጊ)"
-
-#, fuzzy
-#~ msgid "Add a module"
-#~ msgstr "ሰነዶችን ጨምር"
-
-#, fuzzy
-#~ msgid "Remove a module"
-#~ msgstr "የገጹን እራስጌ አጥፋ"
-
-#, fuzzy
-#~ msgid "Unable to fork: %s"
-#~ msgstr "እንደገና የሚሰራ ምንም የለም።"
-
-#, fuzzy
-#~ msgid "Floppy creation completed"
-#~ msgstr " የመጨረሻው መስመር ተጠናቋል።"
-
-#, fuzzy
-#~ msgid "use PPPoE"
-#~ msgstr "በጥቅም ላይ ያለ"
-
-#, fuzzy
-#~ msgid "use PPTP"
-#~ msgstr "በጥቅም ላይ ያለ"
-
-#, fuzzy
-#~ msgid "use DHCP"
-#~ msgstr "በጥቅም ላይ ያለ"
-
-#~ msgid " - detected"
-#~ msgstr " - ተገኘቷል"
-
-#, fuzzy
-#~ msgid "PXE Server Configuration"
-#~ msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-
-#, fuzzy
-#~ msgid "Installation Server Configuration"
-#~ msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-
-#~ msgid "Choose the network interface"
-#~ msgstr "የመረቡን እይታ ይምረጡ"
-
-#, fuzzy
-#~ msgid "Interface %s (on network %s)"
-#~ msgstr "የቀይ ባርኔታ መረብ"
-
-#, fuzzy
-#~ msgid "The DHCP start ip"
-#~ msgstr "አዲስ ዝርዝር ጀምር"
-
-#, fuzzy
-#~ msgid "The DHCP end ip"
-#~ msgstr "አሁን ያለውን ጨዋታ ጨርስ"
-
-#, fuzzy
-#~ msgid "Installation image directory"
-#~ msgstr "አዲስ ዶሴ ሰይም"
-
-#, fuzzy
-#~ msgid "No image found"
-#~ msgstr "ምንም ጽሑፍ አልተገኘም"
-
-#~ msgid "Do it later"
-#~ msgstr "በኋላ ይደረግ"
-
-#, fuzzy
-#~ msgid "Interface %s (using module %s)"
-#~ msgstr "የፋይል ስም አቅድ"
-
-#, fuzzy
-#~ msgid "Interface %s"
-#~ msgstr "የተጠቃሚው እይታ"
-
-#, fuzzy
-#~ msgid "No (experts only)"
-#~ msgstr "ሙሉ ቃላት ብቻ"
-
-#, fuzzy
-#~ msgid "Current interface configuration"
-#~ msgstr "የአቢወርድ ቋንቋ፦"
-
-#~ msgid "(This) DHCP Server IP"
-#~ msgstr "(ይህ) የDHCP ሰርቨር IP "
-
-#, fuzzy
-#~ msgid "Number of logical extents: %d"
+#~ msgid "Number of capture buffers:"
#~ msgstr "የአምዶቹን ቍጥር ለውጥ"
-#, fuzzy
-#~ msgid "WebDAV transfer failed!"
-#~ msgstr "%s አልተገኘም"
-
-#, fuzzy
-#~ msgid "\t-Network by webdav.\n"
-#~ msgstr "በተለወጠበት ቀን"
-
-#, fuzzy
-#~ msgid "first step creation"
-#~ msgstr "የመጀመሪያ መስመር አንቀጽ [%s]"
-
-#~ msgid "choose image file"
-#~ msgstr "የምስል ፋይል ይምረጡ"
-
-#, fuzzy
-#~ msgid "Configure bootsplash picture"
-#~ msgstr "ክፍለ ጊዜዎትን ያስተካክሉ"
-
-#, fuzzy
-#~ msgid "the color of the progress bar"
-#~ msgstr "&ስታቱስ ባር አሳይ"
-
-#~ msgid "Preview"
-#~ msgstr "ቀድሞ ማያ"
-
-#~ msgid "Choose color"
-#~ msgstr "ቀለም ይመረጥ"
-
-#~ msgid "Notice"
-#~ msgstr "ማስታወሻ"
-
-#, fuzzy
-#~ msgid "Generating preview..."
-#~ msgstr "የአኃዝ ቅድመ እይታ"
-
-#, fuzzy
-#~ msgid "%s BootSplash (%s) preview"
-#~ msgstr "የአኃዝ ቅድመ እይታ"
-
-#, fuzzy
-#~ msgid ""
-#~ "_: keyboard\n"
-#~ "Tifinagh (+latin/arabic)"
-#~ msgstr "ዩጎዝላቪያን (ላቲንኛ)"
-
-#~ msgid "No network card"
-#~ msgstr "የመረብ ካርድ የለም"
-
-#, fuzzy
-#~ msgid "Use already installed driver (%s)"
-#~ msgstr "(%s በፊት ተጨምሯል)"
-
-#~ msgid "Load/Save on floppy"
-#~ msgstr "በፍሎፒ ላይ ጫን/አስቀምጥ"
-
-#~ msgid "Load from floppy"
-#~ msgstr "ከፍሎፒ ጫን"
-
-#~ msgid "Save on floppy"
-#~ msgstr "ፍሎፒ ላይ አስቀምጥ"
-
-#~ msgid "Package selection"
-#~ msgstr "የጥቅል ምርጫ"
-
-#~ msgid "Loading from floppy"
-#~ msgstr "ከፍሎፒ በመጫን ላይ ነው"
+#~ msgid "PLL setting:"
+#~ msgstr "የPLL ምርጫ"
-#~ msgid ""
-#~ "_: keyboard\n"
-#~ "Bengali"
-#~ msgstr "ቤንጋሊ"
+#~ msgid "Radio support:"
+#~ msgstr "የሬዲዮ ድጋፍ"
-#~ msgid "Summary: "
-#~ msgstr "ማጠቃለያ፦"
+#~ msgid "enable radio support"
+#~ msgstr "የሬዲዮ ድጋፍ አስቻል"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index aee74bf8c..1ca0f49df 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2006-03-05 18:57+0800\n"
+"POT-Creation-Date: 2007-03-21 12:10+0100\n"
"PO-Revision-Date: 2005-03-03 01:06+0300\n"
"Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n"
"Language-Team: Arabic <support@arabeyes.org>\n"
@@ -20,831 +20,20 @@ msgstr ""
"Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : n>=3 && n<=10 ? 2 : "
"3\n"
-#: ../move/move.pm:292
-#, c-format
-msgid "Which USB key do you want to format?"
-msgstr "ما هو مفتاح USB الذي تريد تنسيقه؟"
-
-#: ../move/move.pm:296
-#, c-format
-msgid ""
-"You are about to format a USB device \"%s\". This will delete all data on "
-"it.\n"
-"Make sure that the selected device is the USB key you want to format. \n"
-"We advise you to unplug all other USB storage devices while doing this "
-"operation."
-msgstr ""
-"أنت بصدد تنسيق جهاز USB \"%s\". ستحذف هذه العملية كلّ البيانات المتواجدة "
-"عليه.\n"
-"تأكّد من أنّ الجهاز المختار هو مفتاح الـUSB الّذي تريد شوكلته.\n"
-"ننصحك بفصل كلّ أجهزة USB للخزن الأخرى عند تأدية هذه العملية."
-
-#: ../move/move.pm:448 ../move/move.pm:460
-#, c-format
-msgid "Key is not writable"
-msgstr "المفتاح غير قابل للكتابة"
-
-#: ../move/move.pm:450
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-"يبدو أن مفتاح USB محميّ من الكتابة عليه. رجاءً\n"
-"قم بفَصْله، أزل حماية الكتابة، وأعد وَصْله مجدّداً."
-
-#: ../move/move.pm:452
-#, c-format
-msgid "Retry"
-msgstr "حاول مجدّدا"
-
-#: ../move/move.pm:453 ../move/move.pm:497
-#, c-format
-msgid "Continue without USB key"
-msgstr "الاستمرار بدون مفتاح USB"
-
-#: ../move/move.pm:462
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled, but we can not safely\n"
-"unplug it now.\n"
-"\n"
-"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandriva Move again."
-msgstr ""
-"يبدو أن مفتاح USB محميّ من الكتابة عليه، إلّا أنّنا لانستطيع فكّ توصيله الآن.\n"
-"\n"
-"\n"
-"اضغط الزّر لإعادة تشغيل الجهاز، فُكّ توصيله، أزل حماية الكتابة،\n"
-"صِلْ المفتاح مرّة أخرى، وشغّل Mandriva Move مرّة أخرى."
-
-#: ../move/move.pm:468 help.pm:410 install_steps_interactive.pm:1303
-#, c-format
-msgid "Reboot"
-msgstr "إعادة التشغيل"
-
-#: ../move/move.pm:473
-#, c-format
-msgid ""
-"Your USB key does not have any valid Windows (FAT) partitions.\n"
-"We need one to continue (beside, it's more standard so that you\n"
-"will be able to move and access your files from machines\n"
-"running Windows). Please plug in an USB key containing a\n"
-"Windows partition instead.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-"مفتاح USB لا يحتوي على أي تجزيئات ويندوز (FAT).\n"
-"يجب أن يكون هناك واحد للاستمرار (بالإضافة لذلك، فهو قياسيّ أكثر حتى تكون\n"
-"قادراً على نقل والوصول إلى الملفّات من الأجهزة\n"
-"التي تعمل على ويندوز). رجاء ضَعْ مفتاح USB يحتوى على\n"
-" تجزيء ويندوز بدلاً من ذلك.\n"
-"\n"
-"\n"
-"يمكنك أيضاً التقدّم دون مفتاح USB - سوف لا تزال تكون\n"
-"قادراً على استخدام Mandriva Move كنظام تشغيل ماندريبا حيّ."
-
-#: ../move/move.pm:483
-#, c-format
-msgid ""
-"We did not detect any USB key on your system. If you\n"
-"plug in an USB key now, Mandriva Move will have the ability\n"
-"to transparently save the data in your home directory and\n"
-"system wide configuration, for next boot on this computer\n"
-"or another one. Note: if you plug in a key now, wait several\n"
-"seconds before detecting again.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-"لم نتمكّن من العثور على أي مفتاح USB على نظامك. إن قمت\n"
-"بوصْل مفتاح USB الآن، سوف يقدر Mandriva Move\n"
-"أن يحفظ البيانات بدليلك المنزل بشفافية\n"
-"وإعدادات النّظام العامّة، وذلك عند الإقلاع التّالي على هذا الجهاز\n"
-"أو إقلاع آخر. ملاحظة: إن قمت بتوصيل مفتاح الآن، انتظر عدّة\n"
-"ثوانٍ قبل إعادة الاستكشاف.\n"
-"\n"
-"\n"
-"يمكنك أيضاً التّقدّم بلا مفتاح USB - سوف تكون لا تزال\n"
-"قادراً على استخدام Mandriva Move كنظام تشغيل\n"
-"ماندريبا حيّ."
-
-#: ../move/move.pm:494
-#, c-format
-msgid "Need a key to save your data"
-msgstr "تحتاج مفتاحا لحفظ بياناتك"
-
-#: ../move/move.pm:496
-#, c-format
-msgid "Detect USB key again"
-msgstr "إكتشاف مفتاح USB مرّة أخرى"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Setting up USB key"
-msgstr "إعداد مفتاح USB"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "الرجاء الانتظار، جاري إعداد ملفّات تهيئة النّظام على مفتاح USB..."
-
-#: ../move/move.pm:546
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr "أدخل معلومات المستخدم الخاصّة بك، سوف تستعمل كلمة المرور لحافظ الشّاشة"
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Auto configuration"
-msgstr "تهيئة آلية"
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "الرجاء الانتظار، جاري اكتشاف وتهيئة الأجهزة..."
-
-#: ../move/move.pm:604 ../move/move.pm:660 ../move/move.pm:664
-#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/interactive.pm:231
-#: diskdrake/interactive.pm:244 diskdrake/interactive.pm:405
-#: diskdrake/interactive.pm:423 diskdrake/interactive.pm:560
-#: diskdrake/interactive.pm:565 diskdrake/smbnfs_gtk.pm:41 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:52 fsedit.pm:218 install_any.pm:1775
-#: install_any.pm:1827 install_steps.pm:81 install_steps_interactive.pm:37
-#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
-#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
-#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
-#: network/netconnect.pm:837 network/netconnect.pm:866
-#: network/netconnect.pm:965 network/netconnect.pm:969
-#: network/netconnect.pm:973 network/netconnect.pm:978
-#: network/netconnect.pm:1123 network/netconnect.pm:1127
-#: network/netconnect.pm:1246 network/netconnect.pm:1251
-#: network/netconnect.pm:1271 network/netconnect.pm:1428
-#: network/thirdparty.pm:321 network/thirdparty.pm:328
-#: network/thirdparty.pm:372 network/thirdparty.pm:374
-#: network/thirdparty.pm:395 network/thirdparty.pm:419
-#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
-#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
-#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
-#: printer/printerdrake.pm:450 printer/printerdrake.pm:514
-#: printer/printerdrake.pm:686 printer/printerdrake.pm:690
-#: printer/printerdrake.pm:772 printer/printerdrake.pm:1555
-#: printer/printerdrake.pm:1603 printer/printerdrake.pm:1640
-#: printer/printerdrake.pm:1685 printer/printerdrake.pm:1689
-#: printer/printerdrake.pm:1703 printer/printerdrake.pm:1795
-#: printer/printerdrake.pm:1876 printer/printerdrake.pm:1880
-#: printer/printerdrake.pm:1884 printer/printerdrake.pm:1933
-#: printer/printerdrake.pm:1991 printer/printerdrake.pm:1995
-#: printer/printerdrake.pm:2009 printer/printerdrake.pm:2129
-#: printer/printerdrake.pm:2133 printer/printerdrake.pm:2176
-#: printer/printerdrake.pm:2249 printer/printerdrake.pm:2267
-#: printer/printerdrake.pm:2276 printer/printerdrake.pm:2285
-#: printer/printerdrake.pm:2296 printer/printerdrake.pm:2360
-#: printer/printerdrake.pm:2512 printer/printerdrake.pm:2947
-#: printer/printerdrake.pm:3231 printer/printerdrake.pm:3237
-#: printer/printerdrake.pm:3802 printer/printerdrake.pm:3806
-#: printer/printerdrake.pm:3810 printer/printerdrake.pm:4206
-#: printer/printerdrake.pm:4446 printer/printerdrake.pm:4474
-#: printer/printerdrake.pm:4551 printer/printerdrake.pm:4617
-#: printer/printerdrake.pm:4737 standalone/drakTermServ:422
-#: standalone/drakTermServ:492 standalone/drakTermServ:501
-#: standalone/drakTermServ:812 standalone/drakTermServ:819
-#: standalone/drakTermServ:845 standalone/drakTermServ:894
-#: standalone/drakTermServ:1146 standalone/drakTermServ:1181
-#: standalone/drakTermServ:1634 standalone/drakTermServ:1643
-#: standalone/drakTermServ:1651 standalone/drakTermServ:1656
-#: standalone/drakTermServ:1664 standalone/drakTermServ:1680
-#: standalone/drakTermServ:1700 standalone/drakauth:36
-#: standalone/drakbackup:511 standalone/drakbackup:625
-#: standalone/drakbackup:1110 standalone/drakbackup:1141
-#: standalone/drakbackup:1332 standalone/drakbackup:1664
-#: standalone/drakbackup:1820 standalone/drakbackup:2548
-#: standalone/drakbackup:4463 standalone/drakclock:124
-#: standalone/drakconnect:676 standalone/drakconnect:680
-#: standalone/drakconnect:685 standalone/drakconnect:700
-#: standalone/drakfont:209 standalone/drakfont:222 standalone/drakfont:260
-#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakhosts:98
-#: standalone/drakhosts:246 standalone/drakhosts:253 standalone/drakhosts:260
-#: standalone/draknfs:306 standalone/draknfs:609 standalone/draknfs:616
-#: standalone/draknfs:623 standalone/drakroam:33 standalone/draksambashare:384
-#: standalone/draksambashare:388 standalone/draksambashare:391
-#: standalone/draksambashare:394 standalone/draksambashare:453
-#: standalone/draksambashare:477 standalone/draksambashare:551
-#: standalone/draksambashare:633 standalone/draksambashare:700
-#: standalone/draksambashare:800 standalone/draksambashare:807
-#: standalone/draksambashare:942 standalone/draksambashare:1133
-#: standalone/draksambashare:1142 standalone/draksambashare:1151
-#: standalone/draksambashare:1172 standalone/draksambashare:1181
-#: standalone/draksambashare:1190 standalone/draksambashare:1210
-#: standalone/draksambashare:1218 standalone/draksambashare:1230
-#: standalone/draksplash:162 standalone/drakxtv:107
-#: standalone/finish-install:79 standalone/logdrake:171
-#: standalone/logdrake:439 standalone/logdrake:444 standalone/scannerdrake:59
-#: standalone/scannerdrake:202 standalone/scannerdrake:261
-#: standalone/scannerdrake:732 standalone/scannerdrake:743
-#: standalone/scannerdrake:882 standalone/scannerdrake:893
-#: standalone/scannerdrake:963 wizards.pm:95 wizards.pm:99 wizards.pm:121
-#, c-format
-msgid "Error"
-msgstr "خطأ"
-
-#: ../move/move.pm:605 install_steps.pm:82
-#, c-format
-msgid ""
-"An error occurred, but I do not know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"ظهر خطأ و لا أعرف كيف أتعامل معه بأسلوب جيد.\n"
-"تابع على مسؤوليتك."
-
-#: ../move/move.pm:660 install_steps_interactive.pm:37
-#, c-format
-msgid "An error occurred"
-msgstr "حدث خطأ"
-
-#: ../move/move.pm:666
-#, c-format
-msgid ""
-"An error occurred:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"This may come from corrupted system configuration files\n"
-"on the USB key, in this case removing them and then\n"
-"rebooting Mandriva Move would fix the problem. To do\n"
-"so, click on the corresponding button.\n"
-"\n"
-"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-"حدث خطأ:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"قد يحدث هذا بسبب ملفّات تهيئة النّظام الفاسدة\n"
-"على مفتاح USB، في هذه الحالة فإن إزالتها ومن ثمّ\n"
-"إعادة تشغيل Mandriva Move قد يُصلح هذه المشكلة. كي تقوم\n"
-"بذلك، اضغط على الزرّ المعنيّ.\n"
-"\n"
-"\n"
-"قد ترغب أيضاً بإعادة التّشغيل وإزالة مفتاح USB، أو\n"
-"تفحّص محتوياته ضمن نظام تشغيل آخر، أو حتى أن تلقي\n"
-"نظرة على ملفّات السجلّ في الشّاشة الطرفيّة #3 و#4 كي تحاول أن\n"
-"تخمّن ما يحدث."
-
-#: ../move/move.pm:681
-#, c-format
-msgid "Remove system config files"
-msgstr "إزالة ملفّات تهيئة النّظام"
-
-#: ../move/move.pm:682
-#, c-format
-msgid "Simply reboot"
-msgstr "إعادة التّشغيل فقط"
-
-#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr "يمكنك فقط التشغيل بدون دعم الأقراص المدمجة"
-
-#: ../move/tree/mdk_totem:71
-#, c-format
-msgid "Kill those programs"
-msgstr "قتل تلك البرامج"
-
-#: ../move/tree/mdk_totem:72
-#, c-format
-msgid "No CDROM support"
-msgstr "ليس هناك دعم لقارئ الأقراص المدمجة"
-
-#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1062 diskdrake/interactive.pm:1072
-#: diskdrake/interactive.pm:1125
-#, c-format
-msgid "Read carefully!"
-msgstr "اقرأ جيدا!"
-
-#: ../move/tree/mdk_totem:77
-#, c-format
-msgid ""
-"You can not use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-"لا يمكن استعمال قرص مدمج آخر أثناء عمل البرامج التّالية:\n"
-"%s"
-
-#: ../move/tree/mdk_totem:101
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr "يجري النّسخ إلى الذّاكرة للسّماح بنزع القرص المدمج"
-
-#: Xconfig/card.pm:13
-#, c-format
-msgid "256 kB"
-msgstr "256 ك.ب."
-
-#: Xconfig/card.pm:14
-#, c-format
-msgid "512 kB"
-msgstr "512 ك.ب."
-
-#: Xconfig/card.pm:15
-#, c-format
-msgid "1 MB"
-msgstr "1 م.ب."
-
-#: Xconfig/card.pm:16
-#, c-format
-msgid "2 MB"
-msgstr "2 م.ب."
-
-#: Xconfig/card.pm:17
-#, c-format
-msgid "4 MB"
-msgstr "4 م.ب."
-
-#: Xconfig/card.pm:18
-#, c-format
-msgid "8 MB"
-msgstr "8 م.ب."
-
-#: Xconfig/card.pm:19
-#, c-format
-msgid "16 MB"
-msgstr "16 م.ب."
-
-#: Xconfig/card.pm:20
-#, c-format
-msgid "32 MB"
-msgstr "32 م.ب."
-
-#: Xconfig/card.pm:21
-#, c-format
-msgid "64 MB or more"
-msgstr "64 م.ب. أو أكثر"
-
-#: Xconfig/card.pm:162
-#, c-format
-msgid "X server"
-msgstr "خادم X"
-
-#: Xconfig/card.pm:163
-#, c-format
-msgid "Choose an X server"
-msgstr "اختيار خادم X"
-
-#: Xconfig/card.pm:195
-#, c-format
-msgid "Multi-head configuration"
-msgstr "تهيئة متعدد الرؤوس"
-
-#: Xconfig/card.pm:196
-#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"نظامك يدعم التهيئة متعدد الرؤوس.\n"
-"ماذا تريد أن تفعل؟"
-
-#: Xconfig/card.pm:265
-#, c-format
-msgid "Can not install Xorg package: %s"
-msgstr "لا أستطع تثبيت حزمة Xorg: %s"
-
-#: Xconfig/card.pm:275
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "اختيار حجم ذاكرة بطاقة الشاشة"
-
-#: Xconfig/card.pm:371
-#, c-format
-msgid "Xorg configuration"
-msgstr "تهيئة Xorg"
-
-#: Xconfig/card.pm:373
-#, c-format
-msgid "Which configuration of Xorg do you want to have?"
-msgstr "أي تهيئة Xorg تريد؟"
-
-#: Xconfig/card.pm:406
-#, c-format
-msgid "Configure all heads independently"
-msgstr "تهيئة كل الرؤوس بشكل مستقل"
-
-#: Xconfig/card.pm:407
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "استخدام امتداد Xinerama"
-
-#: Xconfig/card.pm:412
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "تهيئة البطاقة \"%s\"%s فقط"
-
-#: Xconfig/card.pm:424 Xconfig/various.pm:23
-#, c-format
-msgid "Xorg %s"
-msgstr "Xorg %s"
-
-#: Xconfig/card.pm:431 Xconfig/various.pm:22
-#, c-format
-msgid "Xorg %s with 3D hardware acceleration"
-msgstr "Xorg %s مع تعزيز عتادي ثلاثي الأبعاد"
-
-#: Xconfig/card.pm:433
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with Xorg %s."
-msgstr "يمكن لبطاقتك الحصول على دعم تعزيز ثلاثي الأبعاد مع Xorg %s."
-
-#: Xconfig/card.pm:439
-#, c-format
-msgid "Xorg %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "Xorg %s مع تعزيز تجريبي للرسوم ثلاثية الأبعاد"
-
-#: Xconfig/card.pm:441
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with Xorg %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"يمكن لبطاقتك التمتع بدعم لتعزيز الرسوم ثلاثية الأبعاد مع Xorg %s، \n"
-"لاحظ أن هذا الدعم تجريبي و قد يتسبب في ايقاف جهازك."
-
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:1021
-#, c-format
-msgid "Custom"
-msgstr "مخصّص"
-
-#: Xconfig/main.pm:127 any.pm:742 diskdrake/dav.pm:26 help.pm:15
-#: install_steps_interactive.pm:1303 printer/printerdrake.pm:882
-#: printer/printerdrake.pm:899 printer/printerdrake.pm:4546
-#: printer/printerdrake.pm:5010 standalone/drakhosts:263
-#: standalone/drakroam:230 standalone/draksplash:93 standalone/logdrake:176
-#: standalone/net_applet:103 standalone/scannerdrake:494
-#, c-format
-msgid "Quit"
-msgstr "خروج"
-
-#: Xconfig/main.pm:129
-#, c-format
-msgid "Graphic Card"
-msgstr "بطاقة الشاشة"
-
-#: Xconfig/main.pm:132 Xconfig/monitor.pm:110
-#, c-format
-msgid "Monitor"
-msgstr "الشاشة"
-
-#: Xconfig/main.pm:135 Xconfig/resolution_and_depth.pm:289
-#, c-format
-msgid "Resolution"
-msgstr "الاستبانة"
-
-#: Xconfig/main.pm:138
-#, c-format
-msgid "Test"
-msgstr "اختبار"
-
-#: Xconfig/main.pm:143 diskdrake/dav.pm:65 diskdrake/interactive.pm:449
-#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
-#: printer/printerdrake.pm:1112 standalone/drakfont:493
-#: standalone/drakfont:548
-#, c-format
-msgid "Options"
-msgstr "خيارات"
-
-#: Xconfig/main.pm:178
-#, c-format
-msgid "Your Xorg configuration file is broken, we will ignore it."
-msgstr "ملف تهيئة Xorg معطوب. سنتجاهله."
-
-#: Xconfig/main.pm:196
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"هل تريد حفظ التغييرات؟\n"
-"التهيئة الحالية هي:\n"
-"\n"
-"%s"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor for head #%d"
-msgstr "اختيار شاشة للرّأس رقم %d"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor"
-msgstr "اختيار شاشة"
-
-#: Xconfig/monitor.pm:117
-#, c-format
-msgid "Plug'n Play"
-msgstr "توصيل وتشغيل"
-
-#: Xconfig/monitor.pm:118 mouse.pm:49
-#, c-format
-msgid "Generic"
-msgstr "شامل"
-
-#: Xconfig/monitor.pm:119 standalone/drakconnect:591 standalone/harddrake2:54
-#: standalone/harddrake2:88
-#, c-format
-msgid "Vendor"
-msgstr "المصنع"
-
-#: Xconfig/monitor.pm:129
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "تعذر التأكد من وجود Plug 'n Play. الرجاء اختيار الشاشة الصحيحة"
-
-#: Xconfig/monitor.pm:137
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"المعاملان المهمان جدا هما نسبة الإنعاش الأفقي، وهي النسبة التي\n"
-"يتم فيها انعاش الشاشة كاملة، و الأهم هو نسبة التزامن الأفقي\n"
-"و التي في خلالها يتم عرض خطوط المسح.\n"
-"\n"
-"من *المهم جدا* أن لا تحدد نوع شاشة مع متوسط تزامن\n"
-"أكبر من مقدرة شاشتك لأنك بهذا قد تدمر شاشتك.\n"
-" إذا لم تكن متأكدا يمكنك اختيار إعدادات عادية."
-
-#: Xconfig/monitor.pm:144
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "نسبة الإنعاش الأفقي"
-
-#: Xconfig/monitor.pm:145
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "نسبة الإنعاش الرأسي"
-
-#: Xconfig/resolution_and_depth.pm:10
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 لون (8 بت)"
-
-#: Xconfig/resolution_and_depth.pm:11
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ألف لون (15 بت)"
-
-#: Xconfig/resolution_and_depth.pm:12
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ألف لون (16 بت)"
-
-#: Xconfig/resolution_and_depth.pm:13
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 مليون لون (24 بت)"
-
-#: Xconfig/resolution_and_depth.pm:127
-#, c-format
-msgid "Resolutions"
-msgstr "الاستبانات"
-
-#: Xconfig/resolution_and_depth.pm:311 diskdrake/hd_gtk.pm:336
-#: install_steps_gtk.pm:288 mouse.pm:168 services.pm:162
-#: standalone/drakbackup:1606 standalone/drakperm:250
-#, c-format
-msgid "Other"
-msgstr "أخرى"
-
-#: Xconfig/resolution_and_depth.pm:360
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "اختيار الاستبانة وعمق الألوان"
-
-#: Xconfig/resolution_and_depth.pm:361
-#, c-format
-msgid "Graphics card: %s"
-msgstr "بطاقة الشاشة: %s"
-
-#: Xconfig/resolution_and_depth.pm:375 interactive.pm:119 interactive.pm:436
-#: interactive/http.pm:103 interactive/http.pm:156 interactive/newt.pm:321
-#: interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:143
-#: standalone/drakTermServ:222 standalone/drakTermServ:543
-#: standalone/drakbackup:1372 standalone/drakbackup:4123
-#: standalone/drakbackup:4183 standalone/drakbackup:4227
-#: standalone/drakbackup:4481 standalone/drakconnect:158
-#: standalone/drakconnect:852 standalone/drakconnect:939
-#: standalone/drakconnect:1030 standalone/drakfont:569 standalone/drakfont:579
-#: standalone/draksplash:173 standalone/drakups:210 standalone/net_monitor:339
-#: ugtk2.pm:392 ugtk2.pm:490 ugtk2.pm:899 ugtk2.pm:922
-#, c-format
-msgid "Ok"
-msgstr "موافق"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/smbnfs_gtk.pm:80 help.pm:90
-#: help.pm:445 install_steps_gtk.pm:455 install_steps_interactive.pm:406
-#: install_steps_interactive.pm:811 interactive.pm:120 interactive.pm:437
-#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
-#: interactive/stdio.pm:39 interactive/stdio.pm:142
-#: printer/printerdrake.pm:3882 standalone/drakautoinst:215
-#: standalone/drakbackup:1372 standalone/drakbackup:4052
-#: standalone/drakbackup:4056 standalone/drakbackup:4111
-#: standalone/drakbackup:4481 standalone/drakconnect:157
-#: standalone/drakconnect:937 standalone/drakconnect:1029
-#: standalone/drakfont:579 standalone/drakfont:655 standalone/drakfont:733
-#: standalone/draksplash:173 standalone/drakups:217 standalone/logdrake:176
-#: standalone/net_monitor:338 ugtk2.pm:386 ugtk2.pm:488 ugtk2.pm:497
-#: ugtk2.pm:899
-#, c-format
-msgid "Cancel"
-msgstr "إلغاء"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/hd_gtk.pm:150
-#: install_steps_gtk.pm:232 install_steps_gtk.pm:617 interactive.pm:567
-#: interactive/gtk.pm:682 interactive/gtk.pm:684 standalone/drakTermServ:311
-#: standalone/drakbackup:4048 standalone/drakbug:105
-#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:511 standalone/draknfs:206 standalone/drakperm:133
-#: standalone/draksambashare:320 standalone/draksec:344 standalone/draksec:346
-#: standalone/draksec:364 standalone/draksec:366 ugtk2.pm:1031 ugtk2.pm:1032
-#, c-format
-msgid "Help"
-msgstr "مساعدة"
-
-#: Xconfig/test.pm:30
-#, c-format
-msgid "Test of the configuration"
-msgstr "اختبار التهيئة"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "هل تريد تجربة التهيئة؟"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "تحذير: اختبار بطاقة العرض هذه قد يتسبب في إيقاف جهازك"
-
-#: Xconfig/test.pm:69
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"ظهر خطأ:\n"
-"%s\n"
-"حاول تغيير بعض المُعطيات "
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "ستتم المغادرة في %d ثوان"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "هل هذا هو الإعداد الصحيح؟"
-
-#: Xconfig/various.pm:29
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "لوحة المفاتيح: %s\n"
-
-#: Xconfig/various.pm:30
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "نوع الماوس: %s\n"
-
-#: Xconfig/various.pm:31
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "جهاز الماوس: %s\n"
-
-#: Xconfig/various.pm:33
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "الشاشة: %s\n"
-
-#: Xconfig/various.pm:34
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "تزامن الشاشة الأفقي: %s\n"
-
-#: Xconfig/various.pm:35
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "إنعاش الشاشة الرأسي: %s\n"
-
-#: Xconfig/various.pm:37
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "بطاقة الشاشة: %s\n"
-
-#: Xconfig/various.pm:38
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "ذاكرة بطاقة الشاشة: %s كيلوبايت\n"
-
-#: Xconfig/various.pm:40
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "عمق الألوان: %s\n"
-
-#: Xconfig/various.pm:41
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "الاستبانة: %s\n"
-
-#: Xconfig/various.pm:43
-#, c-format
-msgid "Xorg driver: %s\n"
-msgstr "برنامج تشغيل Xorg: %s\n"
-
-#: Xconfig/various.pm:72
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "واجهة رسومية عند بدء التشغيل"
-
-#: Xconfig/various.pm:74
-#, c-format
-msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(Xorg) upon booting.\n"
-"Would you like Xorg to start when you reboot?"
-msgstr ""
-"يمكنني إعداد حاسبك ليبدأ الواجهة الرّسومية (Xorg) آليا بعد الإقلاع.\n"
-"هل تريد Xorg أن يبدأ بعد إعادة إقلاع جهازك ؟"
-
-#: Xconfig/various.pm:87
-#, c-format
-msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
-msgstr ""
-"يبدو أن بطاقة الرسوم الخاصة بك تحتوي على موصل للتلفاز.\n"
-"يمكن تهيئة البطاقة للعمل باستخدام الـ frame-buffer.\n"
-"\n"
-"لهذا الغرض يجب عليك توصيل بطاقة الرسوم بالتلفاز قبل بدء تشغيل الحاسب.\n"
-"ثم اختيار \"TVout\" من محمّل الإقلاع\n"
-"\n"
-"هل لديك هذه الميزة؟"
-
-#: Xconfig/various.pm:99
-#, c-format
-msgid "What norm is your TV using?"
-msgstr "أي نظام يستخدمه جهاز التلفاز لديك؟"
-
-#: Xconfig/xfree.pm:648
-#, c-format
-msgid ""
-"_:weird aspect ratio\n"
-"other"
-msgstr ""
-
-#: any.pm:153 harddrake/sound.pm:195 interactive.pm:474 pkgs.pm:474
-#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
-#: standalone/drakups:99 standalone/drakxtv:92 standalone/harddrake2:375
-#: standalone/service_harddrake:235
+#: any.pm:157 diskdrake/interactive.pm:422 diskdrake/interactive.pm:617
+#: diskdrake/interactive.pm:798 diskdrake/interactive.pm:842
+#: diskdrake/interactive.pm:904 diskdrake/interactive.pm:1188 do_pkgs.pm:209
+#: do_pkgs.pm:255 harddrake/sound.pm:195 interactive.pm:576
#, c-format
msgid "Please wait"
msgstr "الرجاء الانتظار"
-#: any.pm:153
+#: any.pm:157
#, c-format
msgid "Bootloader installation in progress"
msgstr "محمل الإقلاع قيد التثبيت"
-#: any.pm:164
+#: any.pm:168
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -860,12 +49,12 @@ msgstr ""
"\n"
"أتريد تعيين رقم هويّة كتلة جديد؟"
-#: any.pm:175
+#: any.pm:179
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "فشل تثبيت محمّل الإقلاع. حدث الخطأ التالي:"
-#: any.pm:181
+#: any.pm:185
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -883,7 +72,7 @@ msgstr ""
" ثم اكتب: shut-down\n"
"بعد إقلاع النظام التالي يجب أن ترى مُلقّن محمّل الإقلاع."
-#: any.pm:219
+#: any.pm:223
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -898,257 +87,268 @@ msgstr ""
"\n"
"على أي قرص تقوم بالإقلاع؟"
-#: any.pm:242 help.pm:740
+#: any.pm:246
#, c-format
msgid "First sector of drive (MBR)"
msgstr "القطاع الأول من القرص (MBR)"
-#: any.pm:243
+#: any.pm:247
#, c-format
msgid "First sector of the root partition"
msgstr "القطاع الأول من التجزيء الجذري"
-#: any.pm:245
+#: any.pm:249
#, c-format
msgid "On Floppy"
msgstr "على قرص مرن"
-#: any.pm:247 help.pm:740 printer/printerdrake.pm:4203
+#: any.pm:251
#, c-format
msgid "Skip"
msgstr "تخطّي"
-#: any.pm:251
+#: any.pm:255
#, c-format
msgid "LILO/grub Installation"
msgstr "تثبيت LILO/grub"
-#: any.pm:252
+#: any.pm:257
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "أين تريد تثبيت محمّل الإقلاع؟"
-#: any.pm:278 standalone/drakboot:269
+#: any.pm:284
#, c-format
msgid "Boot Style Configuration"
msgstr "تهيئة أسلوب الإقلاع"
-#: any.pm:280 any.pm:281 any.pm:314 any.pm:315
+#: any.pm:294 any.pm:326 any.pm:327
#, c-format
msgid "Bootloader main options"
msgstr "خيارات محمّل الإقلاع الرئيسية"
-#: any.pm:286
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "اكتب حجم الذاكرة بالميغابايت"
-
-#: any.pm:288
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "خيار ``تشديد خيارات سطر الأوامر`` لا ينفع دون كلمة مرور"
-
-#: any.pm:289 any.pm:628 authentication.pm:192
-#, c-format
-msgid "The passwords do not match"
-msgstr "كلمات المرور غير متطابقة"
-
-#: any.pm:289 any.pm:628 authentication.pm:192 diskdrake/interactive.pm:1336
+#: any.pm:299
#, c-format
-msgid "Please try again"
-msgstr "الرجاء المحاولة مجدداً"
+msgid "Bootloader"
+msgstr "محمّل الإقلاع"
-#: any.pm:294 any.pm:319
+#: any.pm:300 any.pm:331
#, c-format
msgid "Bootloader to use"
msgstr "محمّل الإقلاع المُستخدم"
-#: any.pm:296 any.pm:321
+#: any.pm:302 any.pm:333
#, c-format
msgid "Boot device"
msgstr "جهاز الإقلاع"
-#: any.pm:298
+#: any.pm:304
+#, c-format
+msgid "Main options"
+msgstr ""
+
+#: any.pm:305
#, c-format
msgid "Delay before booting default image"
msgstr "توقيت ما قبل إقلاع الصورة الافتراضية"
-#: any.pm:299
+#: any.pm:306
#, c-format
msgid "Enable ACPI"
msgstr "تمكين ACPI"
-#: any.pm:301
-#, c-format
-msgid "Force no APIC"
-msgstr "إجبار عدم استخدام APIC"
+#: any.pm:307
+#, fuzzy, c-format
+msgid "Enable APIC"
+msgstr "تمكين ACPI"
-#: any.pm:303
-#, c-format
-msgid "Force No Local APIC"
-msgstr "إجبار عدم استخدام Local APIC"
+#: any.pm:308
+#, fuzzy, c-format
+msgid "Enable Local APIC"
+msgstr "تمكين ACPI"
-#: any.pm:305 any.pm:662 authentication.pm:197 diskdrake/smbnfs_gtk.pm:180
-#: network/netconnect.pm:584 printer/printerdrake.pm:1867
-#: printer/printerdrake.pm:1988 standalone/drakbackup:1650
-#: standalone/drakbackup:3641 standalone/drakups:297
+#: any.pm:310 any.pm:686 authentication.pm:196 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "كلمة المرور"
-#: any.pm:306 any.pm:663 authentication.pm:198
+#: any.pm:312 authentication.pm:207
+#, c-format
+msgid "The passwords do not match"
+msgstr "كلمات المرور غير متطابقة"
+
+#: any.pm:312 authentication.pm:207 diskdrake/interactive.pm:1348
+#, c-format
+msgid "Please try again"
+msgstr "الرجاء المحاولة مجدداً"
+
+#: any.pm:313
+#, fuzzy, c-format
+msgid "You can not use a password with %s"
+msgstr "لا يمكنك استخدام نظام ملفات مرمّز لمكان التركيب %s"
+
+#: any.pm:316 any.pm:687 authentication.pm:197
#, c-format
msgid "Password (again)"
msgstr "كلمة المرور (مجدداً)"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "Restrict command line options"
msgstr "تشديد خيارات سطر الأوامر"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "restrict"
msgstr "تشديد"
-#: any.pm:309
+#: any.pm:318
+#, c-format
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr "خيار ``تشديد خيارات سطر الأوامر`` لا ينفع دون كلمة مرور"
+
+#: any.pm:320
#, c-format
msgid "Clean /tmp at each boot"
msgstr "تنظيف /tmp عند كل إقلاع"
-#: any.pm:310
+#: any.pm:321
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "حجم الذاكرة الدقيق عند الحاجة (عثر على %d م.ب.)"
-#: any.pm:320
+#: any.pm:322
+#, c-format
+msgid "Give the ram size in MB"
+msgstr "اكتب حجم الذاكرة بالميغابايت"
+
+#: any.pm:332
#, c-format
msgid "Init Message"
msgstr "رسالة Init"
-#: any.pm:322
+#: any.pm:334
#, c-format
msgid "Open Firmware Delay"
msgstr "تأخير Open Firmware"
-#: any.pm:323
+#: any.pm:335
#, c-format
msgid "Kernel Boot Timeout"
msgstr "الوقت الأقصى لإقلاع النواة"
-#: any.pm:324
+#: any.pm:336
#, c-format
msgid "Enable CD Boot?"
msgstr "تمكين الإقلاع من القرص المدمج؟"
-#: any.pm:325
+#: any.pm:337
#, c-format
msgid "Enable OF Boot?"
msgstr "تمكين إقلاع OF؟"
-#: any.pm:326
+#: any.pm:338
#, c-format
msgid "Default OS?"
msgstr "نظام التشغيل الافتراضي؟"
-#: any.pm:380
+#: any.pm:404
#, c-format
msgid "Image"
msgstr "صورة"
-#: any.pm:381 any.pm:391
+#: any.pm:405 any.pm:418
#, c-format
msgid "Root"
msgstr "الجذر"
-#: any.pm:382 any.pm:404
+#: any.pm:406 any.pm:431
#, c-format
msgid "Append"
msgstr "إلحاق"
-#: any.pm:384 standalone/drakboot:271 standalone/drakboot:275
+#: any.pm:408
+#, c-format
+msgid "Xen append"
+msgstr ""
+
+#: any.pm:411
#, c-format
msgid "Video mode"
msgstr "وضعية الفيديو"
-#: any.pm:386
+#: any.pm:413
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:387
+#: any.pm:414
#, c-format
msgid "Network profile"
msgstr "سجلّ إعداد الشبكة "
-#: any.pm:396 any.pm:401 any.pm:403 diskdrake/interactive.pm:450
+#: any.pm:423 any.pm:428 any.pm:430 diskdrake/interactive.pm:443
#, c-format
msgid "Label"
msgstr "تسمية"
-#: any.pm:398 any.pm:408 harddrake/v4l.pm:438 standalone/drakbackup:2104
-#: standalone/draksec:52
+#: any.pm:425 any.pm:433 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "افتراضي"
-#: any.pm:405
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd-size"
-
-#: any.pm:407
+#: any.pm:432
#, c-format
msgid "NoVideo"
msgstr "لا فيديو"
-#: any.pm:418
+#: any.pm:443
#, c-format
msgid "Empty label not allowed"
msgstr "لا يُسمح بالتسميات الفارغة"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a kernel image"
msgstr "يجب تحديد صورة النواة"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a root partition"
msgstr "يجب تحديد تجزيء جذر"
-#: any.pm:420
+#: any.pm:445
#, c-format
msgid "This label is already used"
msgstr "هذه التسمية مستخدمة مسبقا"
-#: any.pm:434
+#: any.pm:459
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "ما نوع المدخل المُراد إضافته؟"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Linux"
msgstr "لينكس"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Other OS (SunOS...)"
msgstr "نظام تشغيل آخر (SunOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (MacOS...)"
msgstr "نظام تشغيل آخر (MacOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (Windows...)"
msgstr "نظام تشغيل آخر (ويندوز...)"
-#: any.pm:464
+#: any.pm:489
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -1157,93 +357,88 @@ msgstr ""
"هذه هي المدخلات المختلفة في قائمة الإقلاع حتى الآن.\n"
"يمكنك إضافة مدخلات أخرى أو تغيير الموجودة."
-#: any.pm:614
+#: any.pm:640
#, c-format
msgid "access to X programs"
msgstr "الوصول إلى برامج X"
-#: any.pm:615
+#: any.pm:641
#, c-format
msgid "access to rpm tools"
msgstr "الوصول إلى أدوات rpm"
-#: any.pm:616
+#: any.pm:642
#, c-format
msgid "allow \"su\""
msgstr "السماح بـ\"su\""
-#: any.pm:617
+#: any.pm:643
#, c-format
msgid "access to administrative files"
msgstr "الوصول إلى ملفات الإدارة"
-#: any.pm:618
+#: any.pm:644
#, c-format
msgid "access to network tools"
msgstr "الوصول إلى أدوات الشبكة"
-#: any.pm:619
+#: any.pm:645
#, c-format
msgid "access to compilation tools"
msgstr "الوصول إلى أدوات التجميع"
-#: any.pm:624
+#: any.pm:650
#, c-format
msgid "(already added %s)"
msgstr "(تمت إضافة %s مسبقا)"
-#: any.pm:629
-#, c-format
-msgid "This password is too simple"
-msgstr "كلمة المرور هذه بسيطة جداً"
-
-#: any.pm:630
+#: any.pm:657
#, c-format
msgid "Please give a user name"
msgstr "الرجاء إعطاء اسم مستخدم"
-#: any.pm:631
+#: any.pm:658
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "اسم المستخدم يجب أن يحتوي فقط على الحروف الصغيرة، والأرقام، و`-' و `_'"
-#: any.pm:632
+#: any.pm:659
#, c-format
msgid "The user name is too long"
msgstr "اسم المستخدم طويل جداً"
-#: any.pm:633
+#: any.pm:660
#, c-format
msgid "This user name has already been added"
msgstr "اسم المستخدم مُضاف مسبقا"
-#: any.pm:634 any.pm:665
+#: any.pm:661 any.pm:689
#, c-format
msgid "User ID"
msgstr "هوية المستخدم"
-#: any.pm:635 any.pm:666
+#: any.pm:662 any.pm:690
#, c-format
msgid "Group ID"
msgstr "هوية المجموعة"
-#: any.pm:638
+#: any.pm:665
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "الخيار %s يجب أن يكون رقماً!"
-#: any.pm:639
+#: any.pm:666
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:644 standalone/draksambashare:1214
+#: any.pm:671
#, c-format
msgid "Add user"
msgstr "إضافة مستخدم"
-#: any.pm:646
+#: any.pm:673
#, c-format
msgid ""
"Enter a user\n"
@@ -1252,98 +447,94 @@ msgstr ""
"إدخال مستخدم\n"
"%s"
-#: any.pm:649 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:154
-#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:81 help.pm:531
-#: interactive/http.pm:151 printer/printerdrake.pm:197
-#: printer/printerdrake.pm:382 printer/printerdrake.pm:5010
-#: standalone/drakbackup:2836 standalone/scannerdrake:685
-#: standalone/scannerdrake:835
+#: any.pm:676 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:166
+#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:82
+#: interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "تم"
-#: any.pm:650 help.pm:52
+#: any.pm:677
#, c-format
msgid "Accept user"
msgstr "قبول المستخدم"
-#: any.pm:660
+#: any.pm:682
#, c-format
msgid "Real name"
msgstr "الاسم الحقيقي"
-#: any.pm:661 standalone/drakbackup:1645
+#: any.pm:685
#, c-format
msgid "Login name"
msgstr "اسم الدخول"
-#: any.pm:664
+#: any.pm:688
#, c-format
msgid "Shell"
msgstr "الصدفة"
-#: any.pm:668
-#, c-format
-msgid "Icon"
-msgstr "أيقونة"
-
-#: any.pm:715 security/l10n.pm:14
+#: any.pm:735 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "تسجيل دخول آلي"
-#: any.pm:716
+#: any.pm:736
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "يمكن إعداد جهازك لتسجيل الدخول آلياً لمستخدم معين."
-#: any.pm:717
+#: any.pm:737
#, fuzzy, c-format
msgid "Use this feature"
msgstr "هل تريد استخدام هذه الميزة؟"
-#: any.pm:718
+#: any.pm:738
#, c-format
msgid "Choose the default user:"
msgstr "اختيار المستخدم الافتراضي:"
-#: any.pm:719
+#: any.pm:739
#, c-format
msgid "Choose the window manager to run:"
msgstr "اختيار مدير النوافذ الذي سيتم تشغيله:"
-#: any.pm:740
+#: any.pm:767
#, c-format
msgid "License agreement"
msgstr "اتفاقية الترخيص"
-#: any.pm:745
+#: any.pm:770 diskdrake/dav.pm:26
+#, c-format
+msgid "Quit"
+msgstr "خروج"
+
+#: any.pm:773
#, c-format
msgid "Release Notes"
msgstr "ملاحظات الإصدار"
-#: any.pm:748 help.pm:15 install_steps_gtk.pm:539
-#: install_steps_interactive.pm:715 standalone/drakautoinst:214
+#: any.pm:776
#, c-format
msgid "Accept"
msgstr "قبول"
-#: any.pm:748 install_steps_gtk.pm:539 install_steps_interactive.pm:715
+#: any.pm:776
#, c-format
msgid "Refuse"
msgstr "رفض"
-#: any.pm:765 any.pm:833
+#: any.pm:795 any.pm:863
#, c-format
msgid "Please choose a language to use."
msgstr "الرجاء اختيار لغة لاستخدامها."
-#: any.pm:766 any.pm:834
+#: any.pm:796 any.pm:864
#, c-format
msgid "Language choice"
msgstr "خيار اللغة"
-#: any.pm:794
+#: any.pm:826
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
@@ -1354,70 +545,72 @@ msgstr ""
"اللّغات التي تريد تثبيتها. ستكون هذه متوفرةً عند\n"
"اكتمال التثبيت و إعادة تشغيل نظامك."
-#: any.pm:797
+#: any.pm:829
#, c-format
msgid "Multi languages"
msgstr ""
-#: any.pm:813 any.pm:842 help.pm:648
+#: any.pm:841 any.pm:872
#, c-format
-msgid "Use Unicode by default"
-msgstr "استخدام يونيكود افتراضياً"
+msgid "Old compatibility (non UTF-8) encoding"
+msgstr ""
-#: any.pm:814 help.pm:648
+#: any.pm:843
#, c-format
msgid "All languages"
msgstr "كل اللغات"
-#: any.pm:888 help.pm:567 help.pm:856 install_steps_interactive.pm:932
+#: any.pm:918
#, c-format
msgid "Country / Region"
msgstr "الدولة / الإقليم"
-#: any.pm:890
+#: any.pm:920
#, c-format
msgid "Please choose your country."
msgstr "الرجاء اختيار الدولة."
-#: any.pm:892
+#: any.pm:922
#, c-format
msgid "Here is the full list of available countries"
msgstr "هذه قائمة كاملة بكل الدول المتوفرة"
-#: any.pm:893
+#: any.pm:923
#, c-format
msgid "Other Countries"
msgstr "دول أخرى"
-#: any.pm:893 help.pm:52 help.pm:410 help.pm:432 help.pm:648 help.pm:723
-#: interactive.pm:397
+#: any.pm:923 interactive.pm:477
#, c-format
msgid "Advanced"
msgstr "متقدم"
-#: any.pm:901
+#: any.pm:929
#, c-format
msgid "Input method:"
msgstr "طريقة الإدخال:"
-#: any.pm:904 install_any.pm:422 network/netconnect.pm:317
-#: network/netconnect.pm:322 network/netconnect.pm:1237 network/wireless.pm:7
-#: printer/printerdrake.pm:117
+#: any.pm:932
#, c-format
msgid "None"
msgstr "لاشيء"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "No sharing"
msgstr "لا مشاركة"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "Allow all users"
msgstr "السماح لكل المستخدمين"
-#: any.pm:1025
+#: any.pm:1012
+#, c-format
+msgid "Custom"
+msgstr "مخصّص"
+
+#: any.pm:1016
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1432,14 +625,14 @@ msgstr ""
"\n"
"\"مخصص\" يسمح لك بعمل إعدادات خاص لكل مستخدم.\n"
-#: any.pm:1037
+#: any.pm:1028
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr "NFS: نظام تقسيم ملفّات يونكس التّقليدي، بدعم أقلّ على ماك و ويندوز."
-#: any.pm:1040
+#: any.pm:1031
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -1448,29 +641,23 @@ msgstr ""
"SMB: نظام تقسيم ملفّات مستعمل من قبل ويندوز، ماك OS X و العديد من أنظمة لينكس "
"الحديثة."
-#: any.pm:1048
+#: any.pm:1039
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "يمكنك التّصدير باستعمال NFS أو SMB. الرجاء اختيار أيّهما تريد استعماله."
-#: any.pm:1073
+#: any.pm:1064
#, c-format
msgid "Launch userdrake"
msgstr "تشغيل userdrake"
-#: any.pm:1073 printer/printerdrake.pm:4085 printer/printerdrake.pm:4088
-#: printer/printerdrake.pm:4089 printer/printerdrake.pm:4090
-#: printer/printerdrake.pm:5328 standalone/drakTermServ:321
-#: standalone/drakbackup:4245 standalone/drakbug:126 standalone/drakfont:499
-#: standalone/drakids:64 standalone/drakids:77 standalone/drakids:85
-#: standalone/draknfs:210 standalone/net_monitor:117
-#: standalone/printerdrake:583
+#: any.pm:1064 interactive/gtk.pm:747
#, c-format
msgid "Close"
msgstr "إغلاق"
-#: any.pm:1075
+#: any.pm:1066
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -1479,6 +666,56 @@ msgstr ""
"المشاركة لكل مستخدم تستخدم المجموعة \"fileshare\".\n"
"يمكنك أن تستخدم userdrake لإضافة مستخدم في هذه المجموعة."
+#: any.pm:1158
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "يرجى تسجيل الخروج ثم استخدام Ctrl-Alt-BackSpace"
+
+#: any.pm:1162
+#, c-format
+msgid "You need to log out and back in again for changes to take effect"
+msgstr "تحتاج أن تقوم بالخروج والعودة مجدّداً حتى يسري مفعول التّغييرات"
+
+#: any.pm:1212
+#, c-format
+msgid "Timezone"
+msgstr "المنطقة الزمنية"
+
+#: any.pm:1212
+#, c-format
+msgid "Which is your timezone?"
+msgstr "ما هي منطقتك الزمنية؟"
+
+#: any.pm:1224 any.pm:1226
+#, c-format
+msgid "Date, Clock & Time Zone Settings"
+msgstr ""
+
+#: any.pm:1227
+#, c-format
+msgid "What is the best time?"
+msgstr ""
+
+#: any.pm:1231
+#, fuzzy, c-format
+msgid "%s (hardware clock set to UTC)"
+msgstr "ساعة الجهاز مضبوطة على توقيت غرينتش"
+
+#: any.pm:1232
+#, fuzzy, c-format
+msgid "%s (hardware clock set to local time)"
+msgstr "ساعة الجهاز مضبوطة على توقيت غرينتش"
+
+#: any.pm:1234
+#, c-format
+msgid "NTP Server"
+msgstr "خادم NTP"
+
+#: any.pm:1235
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr "تزامن وقت آلي (باستخدام NTP)"
+
#: authentication.pm:23
#, c-format
msgid "Local file"
@@ -1599,7 +836,7 @@ msgstr "تحقق LDAP"
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: authentication.pm:98 share/compssUsers.pl:102
+#: authentication.pm:98
#, c-format
msgid "LDAP Server"
msgstr "خادم LDAP"
@@ -1629,14 +866,12 @@ msgstr "النّسق الأمني (SASL/Kerberos("
msgid "Authentication Active Directory"
msgstr "مواثقة Active Directory"
-#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:181
+#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "النطاق"
-#: authentication.pm:124 diskdrake/dav.pm:63 help.pm:147
-#: printer/printerdrake.pm:75 share/compssUsers.pl:82
-#: standalone/drakTermServ:296
+#: authentication.pm:124 diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "خادم"
@@ -1724,45 +959,39 @@ msgstr "اسم المستخدم لمدير النطاق"
msgid "Domain Admin Password"
msgstr "كلمة المرور لمدير النطاق"
-#: authentication.pm:181
+#: authentication.pm:181 authentication.pm:198
#, c-format
-msgid "Set administrator (root) password and network authentication methods"
-msgstr "ضع كلمة مرور المستخدم الجذر (root) وطرق المواثقة الشّبكية"
+msgid "Authentication"
+msgstr "المواثقة"
#: authentication.pm:182
#, c-format
msgid "Set administrator (root) password"
msgstr "ضع كلمة مرور المستخدم الجذر"
-#: authentication.pm:183 standalone/drakvpn:1111
+#: authentication.pm:184
#, c-format
msgid "Authentication method"
msgstr "طريقة المواثقة"
#. -PO: keep this short or else the buttons will not fit in the window
-#: authentication.pm:188 help.pm:723
+#: authentication.pm:189
#, c-format
msgid "No password"
msgstr "بدون كلمة مرور"
-#: authentication.pm:194
+#: authentication.pm:210
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "كلمة المرو هذه قصيرة جداً (يجب أن تكون %d رموز على الأقل)"
-#: authentication.pm:199 network/netconnect.pm:322 network/netconnect.pm:585
-#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:481
-#, c-format
-msgid "Authentication"
-msgstr "المواثقة"
-
-#: authentication.pm:331
+#: authentication.pm:351
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "لم يمكن استخدام البثّ دون اسم نظام NIS"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:767
+#: bootloader.pm:880
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1771,55 +1000,55 @@ msgid ""
"wait for default boot.\n"
"\n"
msgstr ""
-"أهلاً بك في محدّد نظام التّشغيل!\n"
+"Welcome to the operating system chooser!\n"
"\n"
-"اختر نظام تشغيل من اللائحة أعلاه أو\n"
-"انتظر الإقلاع الافتراضي.\n"
+"Choose an operating system from the list above or\n"
+"wait for default boot.\n"
"\n"
-#: bootloader.pm:909
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO مع قائمة رسومية"
-
-#: bootloader.pm:910
+#: bootloader.pm:1028
#, c-format
msgid "LILO with text menu"
msgstr "LILO مع قائمة نصية"
-#: bootloader.pm:911
+#: bootloader.pm:1029
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:912
+#: bootloader.pm:1030
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:913
+#: bootloader.pm:1031
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:990
+#: bootloader.pm:1032
+#, c-format
+msgid "SILO"
+msgstr ""
+
+#: bootloader.pm:1112
#, c-format
msgid "not enough room in /boot"
msgstr "لا توجد مساحة كافية في /boot"
-#: bootloader.pm:1483
+#: bootloader.pm:1679
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "يمكنك تثبيت محمّل الإقلاع على التجزيء %s\n"
-#: bootloader.pm:1523
+#: bootloader.pm:1732
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr "تهيئة محمّل الإقلاع يجب أن يحدّث لأنّ التجزيء تمّ إعادة ترقيمه"
-#: bootloader.pm:1536
+#: bootloader.pm:1745
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
@@ -1828,242 +1057,55 @@ msgstr ""
"لا يمكن تثبيت محمّل الإقلاع بشكل صحيح. يجب أن تقوم بإقلاع الإنقاذ وتختار \"%s"
"\""
-#: bootloader.pm:1537
+#: bootloader.pm:1746
#, c-format
msgid "Re-install Boot Loader"
msgstr "إعادة تثبيت مُحمِّل الإقلاع"
-#: common.pm:134
+#: common.pm:129
+#, fuzzy, c-format
+msgid "B"
+msgstr "ك.ب."
+
+#: common.pm:129
#, c-format
msgid "KB"
msgstr "ك.ب."
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "MB"
msgstr "م.ب."
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "GB"
msgstr "غ.ب."
-#: common.pm:142
+#: common.pm:137
#, c-format
msgid "TB"
msgstr "ت.ب."
-#: common.pm:150
+#: common.pm:145
#, c-format
msgid "%d minutes"
msgstr "%d دقائق"
-#: common.pm:152
+#: common.pm:147
#, c-format
msgid "1 minute"
msgstr "دقيقة واحدة"
-#: common.pm:154
+#: common.pm:149
#, c-format
msgid "%d seconds"
msgstr "%d ثوان"
-#: common.pm:260
-#, c-format
-msgid "kdesu missing"
-msgstr "kdesu مفقود"
-
-#: common.pm:263
-#, c-format
-msgid "consolehelper missing"
-msgstr "consolehelper مفقود"
-
-#: crypto.pm:13 crypto.pm:48 lang.pm:207 network/adsl_consts.pm:66
-#: network/adsl_consts.pm:75 network/adsl_consts.pm:84
-#, c-format
-msgid "Austria"
-msgstr "النمسا"
-
-#: crypto.pm:14 crypto.pm:47 lang.pm:208 standalone/drakxtv:48
-#, c-format
-msgid "Australia"
-msgstr "أوستراليا"
-
-#: crypto.pm:15 crypto.pm:49 lang.pm:214 network/adsl_consts.pm:93
-#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
-#: network/adsl_consts.pm:123 network/netconnect.pm:44
-#, c-format
-msgid "Belgium"
-msgstr "بلجيكا"
-
-#: crypto.pm:16 crypto.pm:50 lang.pm:223 network/adsl_consts.pm:132
-#: network/adsl_consts.pm:143 network/adsl_consts.pm:152
-#: network/adsl_consts.pm:161
-#, c-format
-msgid "Brazil"
-msgstr "البرازيل"
-
-#: crypto.pm:17 crypto.pm:51 lang.pm:230
-#, c-format
-msgid "Canada"
-msgstr "كندا"
-
-#: crypto.pm:18 crypto.pm:74 lang.pm:235 network/adsl_consts.pm:891
-#: network/adsl_consts.pm:900 network/adsl_consts.pm:911
-#, c-format
-msgid "Switzerland"
-msgstr "السويسرية"
-
-#: crypto.pm:19 lang.pm:242
-#, c-format
-msgid "Costa Rica"
-msgstr "كوستاريكا"
-
-#: crypto.pm:20 crypto.pm:52 lang.pm:248 network/adsl_consts.pm:368
-#, c-format
-msgid "Czech Republic"
-msgstr "جمهورية التشيك"
-
-#: crypto.pm:21 crypto.pm:57 lang.pm:249 network/adsl_consts.pm:499
-#: network/adsl_consts.pm:508
-#, c-format
-msgid "Germany"
-msgstr "ألمانيا"
-
-#: crypto.pm:22 crypto.pm:53 lang.pm:251 network/adsl_consts.pm:378
-#, c-format
-msgid "Denmark"
-msgstr "الدنمارك"
-
-#: crypto.pm:23 crypto.pm:54 lang.pm:256
-#, c-format
-msgid "Estonia"
-msgstr "استونيا"
-
-#: crypto.pm:24 crypto.pm:72 lang.pm:260 network/adsl_consts.pm:759
-#: network/adsl_consts.pm:770 network/adsl_consts.pm:781
-#: network/adsl_consts.pm:792 network/adsl_consts.pm:801
-#: network/adsl_consts.pm:810 network/adsl_consts.pm:819
-#: network/adsl_consts.pm:828 network/adsl_consts.pm:837
-#: network/adsl_consts.pm:846 network/adsl_consts.pm:855
-#: network/adsl_consts.pm:864 network/adsl_consts.pm:873
-#, c-format
-msgid "Spain"
-msgstr "أسبانيا"
-
-#: crypto.pm:25 crypto.pm:55 lang.pm:262 network/adsl_consts.pm:387
-#, c-format
-msgid "Finland"
-msgstr "فنلندا"
-
-#: crypto.pm:26 crypto.pm:56 lang.pm:267 network/adsl_consts.pm:396
-#: network/adsl_consts.pm:408 network/adsl_consts.pm:420
-#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
-#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
-#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
-#: network/netconnect.pm:41
-#, c-format
-msgid "France"
-msgstr "فرنسا"
-
-#: crypto.pm:27 crypto.pm:58 lang.pm:280 network/adsl_consts.pm:519
-#, c-format
-msgid "Greece"
-msgstr "اليونان"
-
-#: crypto.pm:28 crypto.pm:59 lang.pm:291 network/adsl_consts.pm:528
-#, c-format
-msgid "Hungary"
-msgstr "المجر"
-
-#: crypto.pm:29 crypto.pm:60 lang.pm:293 network/adsl_consts.pm:537
-#: standalone/drakxtv:47
-#, c-format
-msgid "Ireland"
-msgstr "أيرلندا"
-
-#: crypto.pm:30 crypto.pm:61 lang.pm:294 network/adsl_consts.pm:546
-#, c-format
-msgid "Israel"
-msgstr "اسرائيل"
-
-#: crypto.pm:31 crypto.pm:62 lang.pm:300 network/adsl_consts.pm:557
-#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
-#: network/adsl_consts.pm:589 network/netconnect.pm:43 standalone/drakxtv:47
-#, c-format
-msgid "Italy"
-msgstr "إيطاليا"
-
-#: crypto.pm:32 crypto.pm:63 lang.pm:303
-#, c-format
-msgid "Japan"
-msgstr "اليابان"
-
-#: crypto.pm:33 crypto.pm:64 lang.pm:352 network/adsl_consts.pm:620
-#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
-#: network/adsl_consts.pm:647 network/netconnect.pm:42
-#, c-format
-msgid "Netherlands"
-msgstr "هولندا"
-
-#: crypto.pm:34 crypto.pm:66 lang.pm:353 network/adsl_consts.pm:656
-#: network/adsl_consts.pm:661 network/adsl_consts.pm:666
-#: network/adsl_consts.pm:671 network/adsl_consts.pm:676
-#: network/adsl_consts.pm:681 network/adsl_consts.pm:686
-#, c-format
-msgid "Norway"
-msgstr "النرويج"
-
-#: crypto.pm:35 crypto.pm:65 lang.pm:357
-#, c-format
-msgid "New Zealand"
-msgstr "نيوزيلندا"
-
-#: crypto.pm:36 crypto.pm:67 lang.pm:365 network/adsl_consts.pm:693
-#: network/adsl_consts.pm:704
-#, c-format
-msgid "Poland"
-msgstr "بولندا"
-
-#: crypto.pm:37 crypto.pm:68 lang.pm:370 network/adsl_consts.pm:716
-#, c-format
-msgid "Portugal"
-msgstr "البرتغال"
-
-#: crypto.pm:38 crypto.pm:69 lang.pm:376 network/adsl_consts.pm:725
-#, c-format
-msgid "Russia"
-msgstr "روسيا"
-
-#: crypto.pm:39 crypto.pm:73 lang.pm:382 network/adsl_consts.pm:882
-#, c-format
-msgid "Sweden"
-msgstr "السويد"
-
-#: crypto.pm:40 crypto.pm:70 lang.pm:387
-#, c-format
-msgid "Slovakia"
-msgstr "سلوفاكيا"
-
-#: crypto.pm:41 crypto.pm:76 lang.pm:401 network/adsl_consts.pm:920
-#, c-format
-msgid "Thailand"
-msgstr "تايلاند"
-
-#: crypto.pm:42 crypto.pm:75 lang.pm:411
-#, c-format
-msgid "Taiwan"
-msgstr "تايوان"
-
-#: crypto.pm:43 crypto.pm:71 lang.pm:430 standalone/drakxtv:49
-#, c-format
-msgid "South Africa"
-msgstr "جنوب أفريقيا "
-
-#: crypto.pm:77 crypto.pm:112 lang.pm:416 network/netconnect.pm:45
+#: common.pm:298
#, c-format
-msgid "United States"
-msgstr "الولايات المتحدة"
+msgid "command %s missing"
+msgstr ""
#: diskdrake/dav.pm:17
#, c-format
@@ -2083,23 +1125,46 @@ msgstr ""
msgid "New"
msgstr "جديد"
-#: diskdrake/dav.pm:61 diskdrake/interactive.pm:456 diskdrake/smbnfs_gtk.pm:74
+#: diskdrake/dav.pm:61 diskdrake/interactive.pm:449 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "فكّ"
-#: diskdrake/dav.pm:62 diskdrake/interactive.pm:453 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:62 diskdrake/interactive.pm:446 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "تركيب"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:447
-#: diskdrake/interactive.pm:679 diskdrake/interactive.pm:698
-#: diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:78
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:440
+#: diskdrake/interactive.pm:670 diskdrake/interactive.pm:688
+#: diskdrake/interactive.pm:692 diskdrake/removable.pm:23
+#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "مكان التركيب"
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:442
+#: diskdrake/interactive.pm:1047 diskdrake/removable.pm:24
+#: diskdrake/smbnfs_gtk.pm:80
+#, c-format
+msgid "Options"
+msgstr "خيارات"
+
+#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:229
+#: diskdrake/interactive.pm:242 diskdrake/interactive.pm:398
+#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:547
+#: diskdrake/interactive.pm:552 diskdrake/interactive.pm:660
+#: diskdrake/interactive.pm:922 diskdrake/interactive.pm:1092
+#: diskdrake/interactive.pm:1105 diskdrake/interactive.pm:1108
+#: diskdrake/interactive.pm:1348 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:19
+#: do_pkgs.pm:24 do_pkgs.pm:40 do_pkgs.pm:56 do_pkgs.pm:61 fsedit.pm:229
+#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
+#: scanner.pm:94 scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95
+#: wizards.pm:99 wizards.pm:121
+#, c-format
+msgid "Error"
+msgstr "خطأ"
+
#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
@@ -2115,33 +1180,48 @@ msgstr "العنوان يجب أن يبدأ بـ http:// أو https://"
msgid "Server: "
msgstr "الخادم: "
-#: diskdrake/dav.pm:110 diskdrake/interactive.pm:523
-#: diskdrake/interactive.pm:1218 diskdrake/interactive.pm:1296
+#: diskdrake/dav.pm:110 diskdrake/interactive.pm:520
+#: diskdrake/interactive.pm:1230 diskdrake/interactive.pm:1308
#, c-format
msgid "Mount point: "
msgstr "مكان التركيب:"
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1303
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1315
#, c-format
msgid "Options: %s"
msgstr "الخيارات: %s"
-#: diskdrake/hd_gtk.pm:52 diskdrake/interactive.pm:293
-#: diskdrake/smbnfs_gtk.pm:21 install_interactive.pm:63
-#: install_interactive.pm:217 install_interactive.pm:223
-#: install_interactive.pm:276 install_interactive.pm:281
-#: install_steps_interactive.pm:253 install_steps_interactive.pm:317
-#: steps.pm:21
+#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:286
+#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
+#: fs/partitioning_wizard.pm:47 fs/partitioning_wizard.pm:201
+#: fs/partitioning_wizard.pm:207 fs/partitioning_wizard.pm:247
+#: fs/partitioning_wizard.pm:266 fs/partitioning_wizard.pm:271
#, c-format
msgid "Partitioning"
msgstr "التجزئة"
-#: diskdrake/hd_gtk.pm:92
+#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1067
+#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1130
+#, c-format
+msgid "Read carefully!"
+msgstr "اقرأ جيدا!"
+
+#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr "رجاء نسخ بياناتك احتياطيّاً أولاً"
-#: diskdrake/hd_gtk.pm:95
+#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:222
+#, c-format
+msgid "Exit"
+msgstr "خروج"
+
+#: diskdrake/hd_gtk.pm:94
+#, c-format
+msgid "Continue"
+msgstr "استمرار"
+
+#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
@@ -2151,17 +1231,18 @@ msgstr ""
"إن كنت تريد استخدام aboot، فلا تنْسَ أن تترك مساحة فارغة (يكفي 2048 قِطاع)\n"
"في بداية القُرص"
-#: diskdrake/hd_gtk.pm:152 help.pm:531
+#: diskdrake/hd_gtk.pm:162 interactive.pm:640 interactive/gtk.pm:719
+#: interactive/gtk.pm:740 interactive/gtk.pm:760 ugtk2.pm:923 ugtk2.pm:924
#, c-format
-msgid "Wizard"
-msgstr "المرشد"
+msgid "Help"
+msgstr "مساعدة"
-#: diskdrake/hd_gtk.pm:185
+#: diskdrake/hd_gtk.pm:197
#, c-format
msgid "Choose action"
msgstr "اختيار عمل"
-#: diskdrake/hd_gtk.pm:189
+#: diskdrake/hd_gtk.pm:201
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -2172,149 +1253,162 @@ msgstr ""
"أقترح أن تغيّر حجم هذا التجزيء\n"
"(اضغط عليه ثم اختر \"تغيير الحجم\")"
-#: diskdrake/hd_gtk.pm:191
+#: diskdrake/hd_gtk.pm:203
#, c-format
msgid "Please click on a partition"
msgstr "الرجاء الضغط على تجزيء"
-#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:457
-#: standalone/drakbackup:3088 standalone/drakbackup:3148
+#: diskdrake/hd_gtk.pm:217 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "تفاصيل"
-#
-#: diskdrake/hd_gtk.pm:251
+#: diskdrake/hd_gtk.pm:265
#, c-format
msgid "No hard drives found"
msgstr "تعذّر العثور على أقراص صلبة"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:292
+#, c-format
+msgid "Unknown"
+msgstr "مجهول"
+
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Ext2"
msgstr "Ext2"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Journalised FS"
msgstr "Journalised FS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "SunOS"
msgstr "SunOS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "HFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Windows"
msgstr "ويندوز"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1233
+#: diskdrake/hd_gtk.pm:352 services.pm:149
+#, c-format
+msgid "Other"
+msgstr "أخرى"
+
+#: diskdrake/hd_gtk.pm:352 diskdrake/interactive.pm:1244
#, c-format
msgid "Empty"
msgstr "فارغ"
-#: diskdrake/hd_gtk.pm:340
+#: diskdrake/hd_gtk.pm:356
#, c-format
msgid "Filesystem types:"
msgstr "أنواع أنظمة الملفات:"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:359 diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:291
+#: diskdrake/interactive.pm:392 diskdrake/interactive.pm:428
+#: diskdrake/interactive.pm:577 diskdrake/interactive.pm:751
+#: diskdrake/interactive.pm:809 diskdrake/interactive.pm:902
+#: diskdrake/interactive.pm:944 diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:1173 diskdrake/interactive.pm:1211
+#: diskdrake/interactive.pm:1347 do_pkgs.pm:16 do_pkgs.pm:35 do_pkgs.pm:53
+#: harddrake/sound.pm:279
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "استخدام ``%s'' بدلا من ذلك"
+msgid "Warning"
+msgstr "تحذير"
-#: diskdrake/hd_gtk.pm:357 diskdrake/interactive.pm:472
-#, c-format
-msgid "Create"
-msgstr "إنشاء"
+#: diskdrake/hd_gtk.pm:380
+#, fuzzy, c-format
+msgid "This partition is already empty"
+msgstr "هذا التجزيء غير قابل لتغيير الحجم"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:365
-#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:625
-#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
-#: standalone/harddrake2:108 standalone/harddrake2:117
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Type"
-msgstr "النوع"
+msgid "Use ``Unmount'' first"
+msgstr "استخدام ``الفكّ'' أولا"
-#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: diskdrake/hd_gtk.pm:359 diskdrake/interactive.pm:457
-#: standalone/drakperm:123 standalone/printerdrake:248
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Delete"
-msgstr "حذف"
+msgid "Use ``%s'' instead"
+msgstr "استخدام ``%s'' بدلا من ذلك"
-#: diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:389 diskdrake/interactive.pm:441
+#: diskdrake/interactive.pm:611 diskdrake/interactive.pm:1083
+#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "استخدام ``الفكّ'' أولا"
+msgid "Type"
+msgstr "النوع"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose another partition"
msgstr "اختيار تجزيء آخر"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose a partition"
msgstr "اختيار تجزيء"
-#: diskdrake/interactive.pm:224
-#, c-format
-msgid "Exit"
-msgstr "خروج"
-
-#: diskdrake/interactive.pm:257 help.pm:531
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Undo"
msgstr "تراجع"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to normal mode"
msgstr "الانتقال إلى الوضع العادي"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to expert mode"
msgstr "الانتقال إلى وضعية الخبير"
-#: diskdrake/interactive.pm:276
+#: diskdrake/interactive.pm:269 diskdrake/interactive.pm:279
+#: diskdrake/interactive.pm:1158
+#, fuzzy, c-format
+msgid "Confirmation"
+msgstr "التهيئة"
+
+#: diskdrake/interactive.pm:269
#, c-format
msgid "Continue anyway?"
msgstr "استمرار على أي حال؟"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without saving"
msgstr "الخروج بدون حفظ"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without writing the partition table?"
msgstr "هل تريد الخروج بدون كتابة جدول التجزئة؟"
-#: diskdrake/interactive.pm:286
+#: diskdrake/interactive.pm:279
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "هل تريد حفظ تعديلات /etc/fstab"
-#: diskdrake/interactive.pm:293 install_steps_interactive.pm:317
+#: diskdrake/interactive.pm:286 fs/partitioning_wizard.pm:247
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "تحتاج إلى إعادة التثبيت لتفعيل التعديلات على جدول التجزئة"
-#: diskdrake/interactive.pm:298
+#: diskdrake/interactive.pm:291
#, c-format
msgid ""
"You should format partition %s.\n"
@@ -2325,90 +1419,90 @@ msgstr ""
"إن لم تفعل فلن يسجّل أي مُدخل لنقطة التّركيب %s في fstab.\n"
"هل تريد الخروج على أي حال؟"
-#: diskdrake/interactive.pm:311 help.pm:531
+#: diskdrake/interactive.pm:304
#, c-format
msgid "Clear all"
msgstr "مسح الكل"
-#: diskdrake/interactive.pm:312 help.pm:531
+#: diskdrake/interactive.pm:305
#, c-format
msgid "Auto allocate"
msgstr "تحديد آلي"
-#: diskdrake/interactive.pm:313 help.pm:531 help.pm:567 help.pm:607
-#: help.pm:856 install_steps_interactive.pm:98
+#: diskdrake/interactive.pm:306 diskdrake/interactive.pm:360
+#: interactive/curses.pm:457
#, c-format
msgid "More"
msgstr "المزيد"
-#: diskdrake/interactive.pm:318
+#: diskdrake/interactive.pm:311
#, c-format
msgid "Hard drive information"
msgstr "معلومات القرص الصلب"
-#: diskdrake/interactive.pm:350
+#: diskdrake/interactive.pm:343
#, c-format
msgid "All primary partitions are used"
msgstr "كل التجزيئات الرئيسية مستخدمة"
-#: diskdrake/interactive.pm:351
+#: diskdrake/interactive.pm:344
#, c-format
msgid "I can not add any more partitions"
msgstr "لا يمكن إضافة أي تجزيئات أخرى"
-#: diskdrake/interactive.pm:352
+#: diskdrake/interactive.pm:345
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "للحصول على تجزيئات أكثر، يرجى إلغاء تجزيء كي تتمكن من عمل تجزيء ممتد"
-#: diskdrake/interactive.pm:361
+#: diskdrake/interactive.pm:354
#, c-format
msgid "No supermount"
msgstr ""
-#: diskdrake/interactive.pm:362
+#: diskdrake/interactive.pm:355
#, c-format
msgid "Supermount"
msgstr ""
-#: diskdrake/interactive.pm:363
+#: diskdrake/interactive.pm:356
#, c-format
msgid "Supermount except for CDROM drives"
msgstr ""
-#: diskdrake/interactive.pm:369 help.pm:531
+#: diskdrake/interactive.pm:362
#, c-format
msgid "Save partition table"
msgstr "حفظ جدول التجزئة"
-#: diskdrake/interactive.pm:370 help.pm:531
+#: diskdrake/interactive.pm:363
#, c-format
msgid "Restore partition table"
msgstr "استعادة جدول التجزئة"
-#: diskdrake/interactive.pm:371 help.pm:531
+#: diskdrake/interactive.pm:364
#, c-format
msgid "Rescue partition table"
msgstr "إنقاذ جدول التجزئة"
-#: diskdrake/interactive.pm:373 help.pm:531
+#: diskdrake/interactive.pm:366
#, c-format
msgid "Reload partition table"
msgstr "إعادة تحميل جدول التجزئة"
-#: diskdrake/interactive.pm:375
+#: diskdrake/interactive.pm:368
#, c-format
msgid "Removable media automounting"
msgstr "التركيب الآلي للوسائط القابلة للإزالة"
-#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:414
+#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:407
#, c-format
msgid "Select file"
msgstr "اختيار ملف"
-#: diskdrake/interactive.pm:400
+#: diskdrake/interactive.pm:393
#, c-format
msgid ""
"The backup partition table has not the same size\n"
@@ -2417,87 +1511,97 @@ msgstr ""
"جدول التجزئة المحفوظ ليس بنفس الحجم\n"
"لا زلت تريد الاستمرار؟"
-#: diskdrake/interactive.pm:429
+#: diskdrake/interactive.pm:422
#, c-format
msgid "Trying to rescue partition table"
msgstr "جاري محاولة إنقاذ جدول التجزئة"
-#: diskdrake/interactive.pm:435
+#: diskdrake/interactive.pm:428
#, c-format
msgid "Detailed information"
msgstr "معلومات مفصّلة"
-#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:444 diskdrake/interactive.pm:764
#, c-format
msgid "Resize"
msgstr "تغيير الحجم"
-#: diskdrake/interactive.pm:452
+#: diskdrake/interactive.pm:445
#, c-format
msgid "Format"
msgstr "تنسيق"
-#: diskdrake/interactive.pm:454
+#: diskdrake/interactive.pm:447 diskdrake/interactive.pm:850
#, c-format
msgid "Add to RAID"
msgstr "إضافة إلى RAID"
-#: diskdrake/interactive.pm:455
+#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:867
#, c-format
msgid "Add to LVM"
msgstr "إضافة إلى LVM"
-#: diskdrake/interactive.pm:458
+#: diskdrake/interactive.pm:450
+#, c-format
+msgid "Delete"
+msgstr "حذف"
+
+#: diskdrake/interactive.pm:451
#, c-format
msgid "Remove from RAID"
msgstr "ازالة من RAID"
-#: diskdrake/interactive.pm:459
+#: diskdrake/interactive.pm:452
#, c-format
msgid "Remove from LVM"
msgstr "ازالة من LVM"
-#: diskdrake/interactive.pm:460
+#: diskdrake/interactive.pm:453
#, c-format
msgid "Modify RAID"
msgstr "تعديل RAID"
-#: diskdrake/interactive.pm:461
+#: diskdrake/interactive.pm:454
#, c-format
msgid "Use for loopback"
msgstr "استخدام لـloopback"
-#: diskdrake/interactive.pm:516
+#: diskdrake/interactive.pm:465
+#, c-format
+msgid "Create"
+msgstr "إنشاء"
+
+#: diskdrake/interactive.pm:509 diskdrake/interactive.pm:511
#, c-format
msgid "Create a new partition"
msgstr "إنشاء تجزيء جديد"
-#: diskdrake/interactive.pm:519
+#: diskdrake/interactive.pm:513
#, c-format
msgid "Start sector: "
msgstr "قطاع البداية: "
-#: diskdrake/interactive.pm:521 diskdrake/interactive.pm:938
+#: diskdrake/interactive.pm:516 diskdrake/interactive.pm:937
#, c-format
msgid "Size in MB: "
msgstr "الحجم بالميغابايت: "
-#: diskdrake/interactive.pm:522 diskdrake/interactive.pm:939
+#: diskdrake/interactive.pm:518 diskdrake/interactive.pm:938
#, c-format
msgid "Filesystem type: "
msgstr "نوع نظام المفات: "
-#: diskdrake/interactive.pm:527
+#: diskdrake/interactive.pm:524
#, c-format
msgid "Preference: "
msgstr "التفضيل: "
-#: diskdrake/interactive.pm:530
+#: diskdrake/interactive.pm:527
#, c-format
msgid "Logical volume name "
msgstr "اسم الكتلة المنطقيّة"
-#: diskdrake/interactive.pm:560
+#: diskdrake/interactive.pm:547
#, c-format
msgid ""
"You can not create a new partition\n"
@@ -2508,48 +1612,53 @@ msgstr ""
"(لأنك وصلت إلى العدد الأقصى من التجزيئات الأساسية).\n"
"أولاً احذف تجزيء أساسياً و قم بإنشاء تجزيء ممتد."
-#: diskdrake/interactive.pm:590
+#: diskdrake/interactive.pm:577
#, c-format
msgid "Remove the loopback file?"
msgstr "هل تريد إزالة ملف loopback؟"
-#: diskdrake/interactive.pm:609
+#: diskdrake/interactive.pm:596
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "بعد تغيير نوع التجزيء %s، فإنك ستسخر كل البيانات على هذا التجزيء"
-#: diskdrake/interactive.pm:621
+#: diskdrake/interactive.pm:608
#, c-format
msgid "Change partition type"
msgstr "تغيير نوع التجزيء"
-#: diskdrake/interactive.pm:622 diskdrake/removable.pm:47
+#: diskdrake/interactive.pm:610 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "أي نظام ملفات تريد؟"
-#: diskdrake/interactive.pm:630
+#: diskdrake/interactive.pm:617
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "جاري التغيير من ext2 إلى ext3"
-#: diskdrake/interactive.pm:650
+#: diskdrake/interactive.pm:637 diskdrake/interactive.pm:640
#, c-format
msgid "Which volume label?"
msgstr ""
-#: diskdrake/interactive.pm:666
+#: diskdrake/interactive.pm:641
+#, fuzzy, c-format
+msgid "Label:"
+msgstr "تسمية"
+
+#: diskdrake/interactive.pm:655
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "أين تريد تركيب ملف loopback %s؟"
-#: diskdrake/interactive.pm:667
+#: diskdrake/interactive.pm:656
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "أين تريد تركيب الجهاز %s؟"
-#: diskdrake/interactive.pm:672
+#: diskdrake/interactive.pm:661
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
@@ -2558,48 +1667,58 @@ msgstr ""
"تعذّر فكّ مكان التركيب نظرا لأن هذه التجزيء مستخدم لـloop back.\n"
"قم بإزالة الـloopback أولا"
-#: diskdrake/interactive.pm:697
+#: diskdrake/interactive.pm:691
#, c-format
msgid "Where do you want to mount %s?"
msgstr "أين تريد تركيب الجهاز %s؟"
-#: diskdrake/interactive.pm:721 diskdrake/interactive.pm:800
-#: install_interactive.pm:157 install_interactive.pm:189
+#: diskdrake/interactive.pm:715 diskdrake/interactive.pm:798
+#: fs/partitioning_wizard.pm:141 fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing"
msgstr "تغيير الحجم"
-#: diskdrake/interactive.pm:721
+#: diskdrake/interactive.pm:715
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "حساب روابط نظام ملفات FAT"
-#: diskdrake/interactive.pm:757
+#: diskdrake/interactive.pm:751
#, c-format
msgid "This partition is not resizeable"
msgstr "هذا التجزيء غير قابل لتغيير الحجم"
-#: diskdrake/interactive.pm:762
+#: diskdrake/interactive.pm:756
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "كل البيانات على هذ التجزيء يجب حفظها احتياطيا"
-#: diskdrake/interactive.pm:764
+#: diskdrake/interactive.pm:758
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "بعد تغيير حجم التجزيء %s، فإن كل البيانات على هذه التجزيء ستفقد"
-#: diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:765
#, c-format
msgid "Choose the new size"
msgstr "اختيار الحجم الجديد"
-#: diskdrake/interactive.pm:770
+#: diskdrake/interactive.pm:766
#, c-format
msgid "New size in MB: "
msgstr "الحجم الجديد بالميغابايت: "
-#: diskdrake/interactive.pm:811 install_interactive.pm:197
+#: diskdrake/interactive.pm:767
+#, c-format
+msgid "Minimum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:768
+#, c-format
+msgid "Maximum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:809 fs/partitioning_wizard.pm:181
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
@@ -2608,240 +1727,241 @@ msgstr ""
"للتأكد من صحة البيانات بعد إعادة تحجيم التجزيئات، \n"
"سيتم الدقيق على نظام الملفات عند التشغيل القادم لويندوز(TM)"
-#: diskdrake/interactive.pm:852
+#: diskdrake/interactive.pm:850
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "اختيار RAID موجود للإضافة إليه"
-#: diskdrake/interactive.pm:854 diskdrake/interactive.pm:871
+#: diskdrake/interactive.pm:852 diskdrake/interactive.pm:869
#, c-format
msgid "new"
msgstr "جديد"
-#: diskdrake/interactive.pm:869
+#: diskdrake/interactive.pm:867
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "اختيار LVM، موجود للإضافة إليه"
-#: diskdrake/interactive.pm:875
+#: diskdrake/interactive.pm:874
#, c-format
msgid "LVM name?"
msgstr "اسم LVM؟"
-#: diskdrake/interactive.pm:903
+#: diskdrake/interactive.pm:902
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
"Do you want to move used physical extents on this volume to other volumes?"
msgstr ""
-#: diskdrake/interactive.pm:905
+#: diskdrake/interactive.pm:904
#, c-format
msgid "Moving physical extents"
msgstr ""
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:922
#, c-format
msgid "This partition can not be used for loopback"
msgstr "هذه التجزيء لا يمكن استخدامه لـloopback"
-#: diskdrake/interactive.pm:936
+#: diskdrake/interactive.pm:935
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: diskdrake/interactive.pm:937
+#: diskdrake/interactive.pm:936
#, c-format
msgid "Loopback file name: "
msgstr "اسم ملف Loopback: "
-#: diskdrake/interactive.pm:942
+#: diskdrake/interactive.pm:941
#, c-format
msgid "Give a file name"
msgstr "إعطاء اسم ملف"
-#: diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:944
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "هذا الملف مستخدم من loopback أخرى، اختر ملفا آخر"
-#: diskdrake/interactive.pm:946
+#: diskdrake/interactive.pm:945
#, c-format
msgid "File already exists. Use it?"
msgstr "الملف موجود مسبقا، هل تريد استخدامه؟"
-#: diskdrake/interactive.pm:969
+#: diskdrake/interactive.pm:974 diskdrake/interactive.pm:977
#, c-format
msgid "Mount options"
msgstr "خيارات التركيب"
-#: diskdrake/interactive.pm:976
+#: diskdrake/interactive.pm:984
#, c-format
msgid "Various"
msgstr "متنوعة"
-#: diskdrake/interactive.pm:1044
+#: diskdrake/interactive.pm:1049
#, c-format
msgid "device"
msgstr "جهاز"
-#: diskdrake/interactive.pm:1045
+#: diskdrake/interactive.pm:1050
#, c-format
msgid "level"
msgstr "المستوى"
-#: diskdrake/interactive.pm:1046
+#: diskdrake/interactive.pm:1051
#, c-format
msgid "chunk size in KiB"
msgstr "حجم القطعة الكبيرة بالكيلوبايت (KiB)"
-#: diskdrake/interactive.pm:1063
+#: diskdrake/interactive.pm:1068
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "كن حذرا: هذه العملية خطيرة"
-#: diskdrake/interactive.pm:1078
+#: diskdrake/interactive.pm:1083
#, c-format
msgid "What type of partitioning?"
msgstr "أي نوع من التجزئة؟"
-#: diskdrake/interactive.pm:1116
+#: diskdrake/interactive.pm:1121
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "ستحتاج إلى إعادة التشغيل قبل أن يتم تفعيل التعديلات"
-#: diskdrake/interactive.pm:1125
+#: diskdrake/interactive.pm:1130
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "جدول التجزئة للقرص %s سيتم كتابته إلى القرص!"
-#: diskdrake/interactive.pm:1148
+#: diskdrake/interactive.pm:1153
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "بعد تنسيق التجزيء %s، فإن كل البيانات الموجودة على هذا التجزيء ستفقد"
-#: diskdrake/interactive.pm:1164
+#: diskdrake/interactive.pm:1158 fs/partitioning.pm:49
+#, c-format
+msgid "Check bad blocks?"
+msgstr "تحقق من الكتل السيئة؟"
+
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Move files to the new partition"
msgstr "نقل الملفات إلى تجزيء جديد"
-#: diskdrake/interactive.pm:1164 standalone/draksambashare:81
-#: standalone/draksambashare:144
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Hide files"
msgstr "تخبئة الملفات"
-#: diskdrake/interactive.pm:1165
+#: diskdrake/interactive.pm:1173
#, c-format
msgid ""
"Directory %s already contains data\n"
-"(%s)"
+"(%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 ""
-"الدليل %s يحتوي مسبقا على بعض البيانات\n"
-"(%s)"
-#: diskdrake/interactive.pm:1176
+#: diskdrake/interactive.pm:1188
#, c-format
msgid "Moving files to the new partition"
msgstr "جاري نقل الملفات إلى التجزيء الجديد"
-#: diskdrake/interactive.pm:1180
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "Copying %s"
msgstr "جاري نسخ %s"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1196
#, c-format
msgid "Removing %s"
msgstr "جاري ازالة %s"
-#: diskdrake/interactive.pm:1198
+#: diskdrake/interactive.pm:1210
#, c-format
msgid "partition %s is now known as %s"
msgstr "التجزبء %s معروف الآن بالإسم %s"
-#: diskdrake/interactive.pm:1199
+#: diskdrake/interactive.pm:1211
#, c-format
msgid "Partitions have been renumbered: "
msgstr "تجزيئات تم إعادة ترقيمها:"
-#: diskdrake/interactive.pm:1219 diskdrake/interactive.pm:1281
+#: diskdrake/interactive.pm:1231 diskdrake/interactive.pm:1293
#, c-format
msgid "Device: "
msgstr "الجهاز: "
-#: diskdrake/interactive.pm:1220
-#, c-format
-msgid "Devfs name: "
-msgstr "اسم Devfs: "
-
-#: diskdrake/interactive.pm:1221
+#: diskdrake/interactive.pm:1232
#, c-format
msgid "Volume label: "
msgstr "علامة المجلّد: "
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1233
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "حرف سواقة دوس: %s (مجرد تخمين)\n"
-#: diskdrake/interactive.pm:1226 diskdrake/interactive.pm:1235
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1237 diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1311
#, c-format
msgid "Type: "
msgstr "النوع: "
-#: diskdrake/interactive.pm:1230 install_steps_gtk.pm:300
+#: diskdrake/interactive.pm:1241
#, c-format
msgid "Name: "
msgstr "الاسم: "
-#: diskdrake/interactive.pm:1237
+#: diskdrake/interactive.pm:1248
#, c-format
msgid "Start: sector %s\n"
msgstr "البداية: قطاع %s\n"
-#: diskdrake/interactive.pm:1238
+#: diskdrake/interactive.pm:1249
#, c-format
msgid "Size: %s"
msgstr "الحجم: %s"
-#: diskdrake/interactive.pm:1240
+#: diskdrake/interactive.pm:1251
#, c-format
msgid ", %s sectors"
msgstr "، %s قطاع"
-#: diskdrake/interactive.pm:1242
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "الاسطوانة %d إلى %d\n"
-#: diskdrake/interactive.pm:1243
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Formatted\n"
msgstr "مُنسّق\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "Not formatted\n"
msgstr "غير مُنسّق\n"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Mounted\n"
msgstr "محمل\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1252
+#: diskdrake/interactive.pm:1263
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2850,7 +1970,7 @@ msgstr ""
"ملفـ(ات) Loopback\n"
" %s\n"
-#: diskdrake/interactive.pm:1253
+#: diskdrake/interactive.pm:1264
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2859,27 +1979,27 @@ msgstr ""
"التجزيء الذي يتم إقلاعه افتراضيا\n"
" (لـ MS-DOS و ليس لـ lilo)\n"
-#: diskdrake/interactive.pm:1255
+#: diskdrake/interactive.pm:1266
#, c-format
msgid "Level %s\n"
msgstr "المستوى %s\n"
-#: diskdrake/interactive.pm:1256
+#: diskdrake/interactive.pm:1267
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "حجم القطعة الكبيرة %d كيلوبايت (KiB)\n"
-#: diskdrake/interactive.pm:1257
+#: diskdrake/interactive.pm:1268
#, c-format
msgid "RAID-disks %s\n"
msgstr "أقراص RAID %s\n"
-#: diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1270
#, c-format
msgid "Loopback file name: %s"
msgstr "اسم ملف Loopback: %s"
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1273
#, c-format
msgid ""
"\n"
@@ -2892,7 +2012,7 @@ msgstr ""
"تجزيء Driver. عليك\n"
"تركه لوحده.\n"
-#: diskdrake/interactive.pm:1265
+#: diskdrake/interactive.pm:1276
#, c-format
msgid ""
"\n"
@@ -2905,74 +2025,77 @@ msgstr ""
"هذا هو\n"
"للإقلاع المزدوج في نظامك.\n"
-#: diskdrake/interactive.pm:1282
+#: diskdrake/interactive.pm:1285
+#, c-format
+msgid "Empty space on %s (%s)"
+msgstr ""
+
+#: diskdrake/interactive.pm:1294
#, c-format
msgid "Read-only"
msgstr "للقراءة فقط"
-#: diskdrake/interactive.pm:1283
+#: diskdrake/interactive.pm:1295
#, c-format
msgid "Size: %s\n"
msgstr "الحجم: %s\n"
-#: diskdrake/interactive.pm:1284
+#: diskdrake/interactive.pm:1296
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "الهندسة: %s اسطوانة، %s رأس، %s قطاع\n"
-#: diskdrake/interactive.pm:1285 network/thirdparty.pm:331
+#: diskdrake/interactive.pm:1297
#, c-format
msgid "Info: "
msgstr "معلومات: "
-#: diskdrake/interactive.pm:1286
+#: diskdrake/interactive.pm:1298
#, c-format
msgid "LVM-disks %s\n"
msgstr "أقراص LVM %s\n"
-#: diskdrake/interactive.pm:1287
+#: diskdrake/interactive.pm:1299
#, c-format
msgid "Partition table type: %s\n"
msgstr "نوع جدول التجزئة: %s\n"
-#: diskdrake/interactive.pm:1288
+#: diskdrake/interactive.pm:1300
#, c-format
msgid "on channel %d id %d\n"
msgstr "على القناة %d id %d\n"
-#: diskdrake/interactive.pm:1331
+#: diskdrake/interactive.pm:1343
#, c-format
msgid "Filesystem encryption key"
msgstr "مفتاح تشفير نظام الملفات"
-#: diskdrake/interactive.pm:1332
+#: diskdrake/interactive.pm:1344
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "اختيار مفتاح تشفير نظام الملفات"
-#: diskdrake/interactive.pm:1335
+#: diskdrake/interactive.pm:1347
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "مفتاح التشفير هذا بسيط جدا (يجب أن يكون %d حرفا على الأقل)"
-#: diskdrake/interactive.pm:1336
+#: diskdrake/interactive.pm:1348
#, c-format
msgid "The encryption keys do not match"
msgstr "مفاتيح التشفير غير متطابقة"
-#: diskdrake/interactive.pm:1339 network/netconnect.pm:1073
-#: standalone/drakconnect:419 standalone/drakroam:120
+#: diskdrake/interactive.pm:1351
#, c-format
msgid "Encryption key"
msgstr "مفتاح التشفير"
-#: diskdrake/interactive.pm:1340
+#: diskdrake/interactive.pm:1352
#, c-format
msgid "Encryption key (again)"
msgstr "مفتاح التشفير (مرة أخرى)"
-#: diskdrake/interactive.pm:1342 standalone/drakvpn:1017
-#: standalone/drakvpn:1102
+#: diskdrake/interactive.pm:1354
#, c-format
msgid "Encryption algorithm"
msgstr "خوارزمية التّشفير"
@@ -2982,27 +2105,35 @@ msgstr "خوارزمية التّشفير"
msgid "Change type"
msgstr "تغيير النوع"
-#: diskdrake/smbnfs_gtk.pm:163
+#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:539
+#: interactive/curses.pm:214 interactive/http.pm:104 interactive/http.pm:160
+#: interactive/stdio.pm:39 interactive/stdio.pm:142 ugtk2.pm:404 ugtk2.pm:506
+#: ugtk2.pm:515 ugtk2.pm:788
+#, c-format
+msgid "Cancel"
+msgstr "إلغاء"
+
+#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr "تعذر الدخول باستخدام اسم المستخدم %s (كلمة مرور سيئة؟)"
-#: diskdrake/smbnfs_gtk.pm:167 diskdrake/smbnfs_gtk.pm:176
+#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "مواثقة النطاق مطلوبة"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "أي اسم مستخدم"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "آخَر"
-#: diskdrake/smbnfs_gtk.pm:177
+#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
@@ -3010,85 +2141,81 @@ msgstr ""
"الرجاء إدخال اسم المستخدم، كلمة المرور و النطاق الخاص بك للدخول إلى هذا "
"المضيف."
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3640
+#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "اسم المستخدم"
-#: diskdrake/smbnfs_gtk.pm:205
+#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "بحث في أجهزة الخادم"
-#: diskdrake/smbnfs_gtk.pm:210
+#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr "البحث عن خادمات جديدة"
-#: do_pkgs.pm:16 do_pkgs.pm:49
+#: do_pkgs.pm:16 do_pkgs.pm:53
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "الحزمة %s يجب أن تُثبت. هل تريد تثبيتها؟"
-#: do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:52 printer/printerdrake.pm:3948
+#: do_pkgs.pm:19 do_pkgs.pm:40 do_pkgs.pm:56
#, c-format
msgid "Could not install the %s package!"
msgstr "تعذر تثبيت حزمة %s!"
-#: do_pkgs.pm:24 do_pkgs.pm:57
+#: do_pkgs.pm:24 do_pkgs.pm:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "الحزمة الضرورية %s مفقودة"
-#: do_pkgs.pm:35 harddrake/sound.pm:278 install_steps_interactive.pm:1288
-#: keyboard.pm:381 network/ndiswrapper.pm:95 network/netconnect.pm:471
-#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2495
-#: printer/printerdrake.pm:2632 printer/printerdrake.pm:2953
-#: printer/printerdrake.pm:2960 printer/printerdrake.pm:3947
-#: printer/printerdrake.pm:4211 printer/printerdrake.pm:4330
-#: printer/printerdrake.pm:5487 standalone/drakTermServ:354
-#: standalone/drakTermServ:1267 standalone/drakTermServ:1328
-#: standalone/drakTermServ:2006 standalone/drakbackup:510
-#: standalone/drakbackup:609 standalone/drakboot:133 standalone/drakclock:224
-#: standalone/drakconnect:973 standalone/drakfont:679 standalone/drakperm:380
-#: standalone/drakperm:390 standalone/drakups:27 standalone/harddrake2:510
-#: standalone/harddrake2:526 standalone/localedrake:43
-#: standalone/scannerdrake:51 standalone/scannerdrake:957
-#, c-format
-msgid "Warning"
-msgstr "تحذير"
-
-#: do_pkgs.pm:35 standalone/harddrake2:526
+#: do_pkgs.pm:35
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "يجب تثبيت الحزم التالية:\n"
-#: do_pkgs.pm:205
+#: do_pkgs.pm:209
#, c-format
msgid "Installing packages..."
msgstr "جاري تركيب الحزم..."
-#: do_pkgs.pm:252
+#: do_pkgs.pm:255
#, c-format
msgid "Removing packages..."
msgstr "حذف الحزم..."
-#: fs/format.pm:58 fs/format.pm:65
+#: fs/any.pm:17
+#, c-format
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"لقد ظهر خطأ - لم يعثر على أجهزة صالحة يمكن إنشاء أنظمة ملفات جديدة عليها. "
+"تأكد من العتاد الخاص بك لمعرفة سبب هذه المشكلة"
+
+#: fs/any.pm:62 fs/partitioning_wizard.pm:55
+#, c-format
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "لديك تجزيء FAT تم تحميلها على /boot/efi"
+
+#: fs/format.pm:59 fs/format.pm:66
#, c-format
msgid "Formatting partition %s"
msgstr "جاري تنسيق التجزيء %s"
-#: fs/format.pm:62
+#: fs/format.pm:63
#, c-format
msgid "Creating and formatting file %s"
msgstr "جاري إنشاء وتنسيق الملف %s"
-#: fs/format.pm:115
+#: fs/format.pm:116
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "لا أعرف كيف أنسّق %s في النوع %s"
-#: fs/format.pm:120 fs/format.pm:122
+#: fs/format.pm:121 fs/format.pm:123
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s تنسيق %s قد فشل"
@@ -3098,28 +2225,27 @@ msgstr "%s تنسيق %s قد فشل"
msgid "Circular mounts %s\n"
msgstr "تركيبات حلقيّة %s\n"
-# y, c-format
-#: fs/mount.pm:74
+#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "تركيب التجزيء %s"
-#: fs/mount.pm:75
+#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "فشل تركيب التجزيء %s في الدليل %s"
-#: fs/mount.pm:80 fs/mount.pm:97
+#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "جاري التأكد من %s"
-#: fs/mount.pm:113 partition_table.pm:385
+#: fs/mount.pm:118 partition_table.pm:384
#, c-format
msgid "error unmounting %s: %s"
msgstr "خطأ في فكّ %s: %s"
-#: fs/mount.pm:142
+#: fs/mount.pm:133
#, c-format
msgid "Enabling swap partition %s"
msgstr "جاري تمكين تجزيء التبديل %s"
@@ -3191,35 +2317,304 @@ msgstr "كل الدّخل/الخرج إلى نظام الملفّات يجب أ
#: fs/mount_options.pm:139
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow every user to mount and umount the file system."
msgstr ""
#: fs/mount_options.pm:141
#, c-format
-msgid "Enable user disk quota accounting, and optionally enforce limits"
+msgid "Allow an ordinary user to mount the file system."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Support user. extended attributes"
+msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""
#: fs/mount_options.pm:145
#, c-format
+msgid "Support \"user.\" extended attributes"
+msgstr ""
+
+#: fs/mount_options.pm:147
+#, c-format
msgid "Give write access to ordinary users"
msgstr "إعطاء إمكانية الكتابة لعامة المستخدمين"
-#: fs/mount_options.pm:147
+#: fs/mount_options.pm:149
#, c-format
msgid "Give read-only access to ordinary users"
msgstr "أعط صلاحية الكتابة لعامة المستخدمين"
-#: fs/type.pm:363
+#: fs/mount_point.pm:80
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "نقطة تركيب مكررّة %s"
+
+#: fs/mount_point.pm:95
+#, c-format
+msgid "No partition available"
+msgstr "لا يوجد تجزيء"
+
+#: fs/mount_point.pm:98
+#, c-format
+msgid "Scanning partitions to find mount points"
+msgstr "جاري عمل مسح للتجزئات لإيجاد أماكن التركيب"
+
+#: fs/mount_point.pm:105
+#, c-format
+msgid "Choose the mount points"
+msgstr "اختيار أماكن التركيب"
+
+#: fs/partitioning.pm:46
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "اختيار التجزيئات التي تريد تنسيقها"
+
+#: fs/partitioning.pm:76
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+"تعذر التأكد من صحة نظام المفات %s. هل تريد تصحيح الأخطاء (كن حذراً، يمكن أن "
+"تخسر بيانات)"
+
+#: fs/partitioning.pm:79
+#, c-format
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "لا توجد مساحة تبديل كافية للقيام بالتثبيت، الرجاء زيادة مساحة التبديل"
+
+#: fs/partitioning_wizard.pm:47
+#, c-format
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"يجب أن تكون لديك تجزيء جذرية.\n"
+"لهذا الغرض انشئ تجزيء (أو اضغط على تجزيء موجودة).\n"
+"ثم اختر ``مكان التركيب'' و اجعله `/'"
+
+#: fs/partitioning_wizard.pm:52
+#, c-format
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+"ليست لديك تجزيء تبديل.\n"
+"\n"
+"هل تريد المتابعة على أي حال؟"
+
+#: fs/partitioning_wizard.pm:80
+#, c-format
+msgid "Use free space"
+msgstr "استخدام المساحة الفارغة"
+
+#: fs/partitioning_wizard.pm:82
+#, c-format
+msgid "Not enough free space to allocate new partitions"
+msgstr "لا توجد مساحة فارغة لعمل التجزيئات الجديدة"
+
+#: fs/partitioning_wizard.pm:90
+#, c-format
+msgid "Use existing partitions"
+msgstr "استخدم التجزيئات الموجودة"
+
+#: fs/partitioning_wizard.pm:92
+#, c-format
+msgid "There is no existing partition to use"
+msgstr "لا يوجد تجزيء لاستخدامه"
+
+#: fs/partitioning_wizard.pm:99
+#, c-format
+msgid "Use the Microsoft Windows® partition for loopback"
+msgstr "استخدم تجزيء ويندوز كـloopback"
+
+#: fs/partitioning_wizard.pm:102
+#, c-format
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "أي تجزيء تريد استخدامه من أجل Linux4Win"
+
+#: fs/partitioning_wizard.pm:104
+#, c-format
+msgid "Choose the sizes"
+msgstr "اختيار الأحجام"
+
+#: fs/partitioning_wizard.pm:105
+#, c-format
+msgid "Root partition size in MB: "
+msgstr "حجم التجزيء الجذري بالميغابايت:"
+
+#: fs/partitioning_wizard.pm:106
+#, c-format
+msgid "Swap partition size in MB: "
+msgstr "حجم تجزيء التبديل بالميغابايت:"
+
+#: fs/partitioning_wizard.pm:115
+#, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr "لا يوجد تجزيء FAT لاستخدامه كـloopback )أو لا توجد مساحة كافية متبقية)"
+
+#: fs/partitioning_wizard.pm:122
+#, c-format
+msgid "Use the free space on the Microsoft Windows® partition"
+msgstr "استخدام المساحة الفارغة على تجزيء ويندوز"
+
+#: fs/partitioning_wizard.pm:124
+#, c-format
+msgid "Which partition do you want to resize?"
+msgstr "أي تجزيء تريد تغيير حجمه؟"
+
+#: fs/partitioning_wizard.pm:138
+#, c-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+"لم تتمكن أداة تغيير حجم FAT من التعامل مع تجزيئك، \n"
+"ظهر الخطأ التالي: %s"
+
+#: fs/partitioning_wizard.pm:141
+#, c-format
+msgid "Computing the size of the Microsoft Windows® partition"
+msgstr "جاري حساب مساحة تجزيء ويندوز"
+
+#: fs/partitioning_wizard.pm:148
+#, c-format
+msgid ""
+"Your Microsoft Windows® partition is too fragmented. Please reboot your "
+"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
+"the Mandriva Linux installation."
+msgstr ""
+"تجزيء ويندوز الخاصّ بك كثير التجزّئات. رجاء أعد تشغيل جهازك إلى ويندوز، شغّل "
+"أداة ``defrag''، ثمّ أعد بدْء تثبيت ماندريبا لينكس."
+
+#: fs/partitioning_wizard.pm:151
+#, c-format
+msgid ""
+"WARNING!\n"
+"\n"
+"\n"
+"Your Microsoft Windows® partition will be now resized.\n"
+"\n"
+"\n"
+"Be careful: this operation is dangerous. If you have not already done so, "
+"you first need to exit the installation, run \"chkdsk c:\" from a Command "
+"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
+"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
+"optionally run defrag, then restart the installation. You should also backup "
+"your data.\n"
+"\n"
+"\n"
+"When sure, press %s."
+msgstr ""
+"تحذير!\n"
+"\n"
+"DrakX سيقوم الآن بتغيير حجم تجزيء ويندوز.\n"
+"\n"
+"\n"
+"كن حذراً: هذه العملية خطرة. فإذا لم تكن فعلت ذلك، يجب عليك أولاً الخروج من "
+"التثبيت، ثم تشغيل \"scandisk c:\" من سطر الأوامر في ويندوز (احذر، تشغيل "
+"البرنامج الرّسومي \"scandisk\" غير كافي، تأكّد من استخدام \"chkdsk\" في سطر "
+"الأوامر!)، اختياريّاً شغّل defrag، ثمّ أعد بدء التثبيت. يجب عليك كذلك عمل نسخة "
+"احتياطية من بياناتك. \n"
+"\n"
+"\n"
+"عندما تكون متأكداً، اضغط %s."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: fs/partitioning_wizard.pm:160 interactive.pm:538 interactive/curses.pm:217
+#: ugtk2.pm:508
+#, c-format
+msgid "Next"
+msgstr "التالي"
+
+#: fs/partitioning_wizard.pm:163
+#, c-format
+msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
+msgstr "ما حجم المساحة التي تريد إبقائها لويندوز على التجزيء %s؟"
+
+#: fs/partitioning_wizard.pm:164
+#, c-format
+msgid "Size"
+msgstr "الحجم"
+
+#: fs/partitioning_wizard.pm:173
+#, c-format
+msgid "Resizing Microsoft Windows® partition"
+msgstr "تغيير حجم تجزيء ويندوز"
+
+#: fs/partitioning_wizard.pm:178
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "فشل تغيير حجم FAT: %s"
+
+#: fs/partitioning_wizard.pm:193
+#, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr "لا توجد تجزيء FAT قابل لتغيير حجمها (أو لا توجد مساحة كافية متبقية)"
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Remove Microsoft Windows®"
+msgstr "حذف ويندوز(TM)"
+
+#: fs/partitioning_wizard.pm:198
+#, fuzzy, c-format
+msgid "Erase and use entire disk"
+msgstr "مسح كل القرص"
+
+#: fs/partitioning_wizard.pm:200
+#, c-format
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "لديك أكثر من قرص صلب، في أيهم تريد تثبيت لينكس؟"
+
+#: fs/partitioning_wizard.pm:206
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "كل التجزيئات و بياناتها ستضيع من على السواقة %s"
+
+#: fs/partitioning_wizard.pm:217
+#, c-format
+msgid "Custom disk partitioning"
+msgstr "تجزئة قرص مخصصة"
+
+#: fs/partitioning_wizard.pm:223
+#, c-format
+msgid "Use fdisk"
+msgstr "استخدام fdisk"
+
+#: fs/partitioning_wizard.pm:226
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+"يمكنك الآن تجزئة %s.\n"
+"عندما تنتهي لا تنس الحفظ باستخدام `w'"
+
+#: fs/partitioning_wizard.pm:266
+#, c-format
+msgid "I can not find any room for installing"
+msgstr "لا يمكنني العثور على مساحة فارغة للتثبيت"
+
+#: fs/partitioning_wizard.pm:270
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "عثر معالج التجزئة في DrakX على الحلول التالية:"
+
+#: fs/partitioning_wizard.pm:278
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "فشلت التجزئة: %s"
+
+#: fs/type.pm:366
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "لا يمكنك استخدام JFS للتجزئات أصغر من 16 ميغابايت"
-#: fs/type.pm:364
+#: fs/type.pm:367
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "لا يمكنك استخدام ReiserFS للتجزئات أصغر من 32 ميغابايت"
@@ -3234,7 +2629,12 @@ msgstr "مع /usr"
msgid "server"
msgstr "خادم"
-#: fsedit.pm:219
+#: fsedit.pm:116
+#, c-format
+msgid "BIOS software RAID detected on disks %s. Activate it?"
+msgstr ""
+
+#: fsedit.pm:230
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
@@ -3252,22 +2652,22 @@ msgstr ""
"\n"
"هل أنت موافق على خسارة كل التجزيئات؟\n"
-#: fsedit.pm:392
+#: fsedit.pm:403
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "يجب أن تبدأ أماكن التركيب بالعلامة /"
-#: fsedit.pm:393
+#: fsedit.pm:404
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "أماكن التركيب يجب أن تحتوي فقط على الحروف و/أو الآرقام"
-#: fsedit.pm:394
+#: fsedit.pm:405
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "هناك تجزيء مع مكان التركيب %s مسبقاً\n"
-#: fsedit.pm:398
+#: fsedit.pm:409
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -3278,14 +2678,14 @@ msgstr ""
"لا يستطيع أي محمّل إقلاع التعامل مع ذلك بدون تجزيء /boot.\n"
"الرجاء التأكد من إضافة تجزيء /boot"
-#: fsedit.pm:404
+#: fsedit.pm:415
#, fuzzy, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr "لا يمكنك استخدام كتلة LVM المنطقيّة لمكان التركيب %s"
-#: fsedit.pm:406
+#: fsedit.pm:417
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -3297,12 +2697,12 @@ msgstr ""
"لا يستطيع محمّل الإقلاع التعامل مع ذلك بدون تجزيء /boot.\n"
"الرجاء التأكّد من أن تضيف تجزيء /boot"
-#: fsedit.pm:410 fsedit.pm:412
+#: fsedit.pm:421 fsedit.pm:423
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "هذا الدليل يجب أن يكون في نظام الملفات الجذري"
-#: fsedit.pm:414 fsedit.pm:416
+#: fsedit.pm:425 fsedit.pm:427
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -3311,22 +2711,22 @@ msgstr ""
"تحتاج إلى نظام ملفات حقيقي (ext2/ext3، resierfs، xfs، أو jfs) لمكان التركيب "
"هذه\n"
-#: fsedit.pm:418
+#: fsedit.pm:429
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr "لا يمكنك استخدام نظام ملفات مرمّز لمكان التركيب %s"
-#: fsedit.pm:482
+#: fsedit.pm:493
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "لا توجد مساحة كافية للتحديد الآلي"
-#: fsedit.pm:484
+#: fsedit.pm:495
#, c-format
msgid "Nothing to do"
msgstr "لا شيء لعمله"
-#: harddrake/data.pm:62 install_any.pm:1710
+#: harddrake/data.pm:62
#, c-format
msgid "Floppy"
msgstr "القرص المرن"
@@ -3336,12 +2736,12 @@ msgstr "القرص المرن"
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:88 install_any.pm:1711
+#: harddrake/data.pm:88
#, c-format
msgid "Hard Disk"
msgstr "القرص الصّلب"
-#: harddrake/data.pm:97 install_any.pm:1712
+#: harddrake/data.pm:97
#, c-format
msgid "CDROM"
msgstr "القرص المدمج"
@@ -3356,103 +2756,102 @@ msgstr "أجهزة نسخ CD/DVD"
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:127 standalone/drakbackup:2066
+#: harddrake/data.pm:127
#, c-format
msgid "Tape"
msgstr "شريط"
-#: harddrake/data.pm:136
+#: harddrake/data.pm:138
+#, c-format
+msgid "AGP controllers"
+msgstr "متحكمات AGP"
+
+#: harddrake/data.pm:147
#, c-format
msgid "Videocard"
msgstr "بطاقة الفيديو"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:157
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:154
+#: harddrake/data.pm:165
#, c-format
msgid "Tvcard"
msgstr "بطاقة التلفاز"
-#: harddrake/data.pm:163
+#: harddrake/data.pm:174
#, c-format
msgid "Other MultiMedia devices"
msgstr "أجهزة وسائط متعددة أخرى"
-#: harddrake/data.pm:172
+#: harddrake/data.pm:183
#, c-format
msgid "Soundcard"
msgstr "بطاقة الصوت"
-#: harddrake/data.pm:185
+#: harddrake/data.pm:196
#, c-format
msgid "Webcam"
msgstr "كاميرات الوب"
-#: harddrake/data.pm:199
+#: harddrake/data.pm:210
#, c-format
msgid "Processors"
msgstr "المُعالجات"
-#: harddrake/data.pm:209
+#: harddrake/data.pm:220
#, c-format
msgid "ISDN adapters"
msgstr "مكيّفات ISDN"
-#: harddrake/data.pm:220
+#: harddrake/data.pm:231
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:229
+#: harddrake/data.pm:240
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:238
+#: harddrake/data.pm:249
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:247
+#: harddrake/data.pm:258
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:256
+#: harddrake/data.pm:267
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:265
+#: harddrake/data.pm:276
#, c-format
msgid "Ethernetcard"
msgstr "بطاقة Ethernet"
-#: harddrake/data.pm:282 network/netconnect.pm:492
+#: harddrake/data.pm:293
#, c-format
msgid "Modem"
msgstr "المودم"
-#: harddrake/data.pm:292
+#: harddrake/data.pm:303
#, c-format
msgid "ADSL adapters"
msgstr "مكيّفات ADSL"
-#: harddrake/data.pm:306
+#: harddrake/data.pm:315
#, c-format
msgid "Memory"
msgstr "الذاكرة"
-#: harddrake/data.pm:315
-#, c-format
-msgid "AGP controllers"
-msgstr "متحكمات AGP"
-
-#: harddrake/data.pm:324 help.pm:187 help.pm:856
-#: install_steps_interactive.pm:964
+#: harddrake/data.pm:324
#, c-format
msgid "Printer"
msgstr "طابعة"
@@ -3478,85 +2877,92 @@ msgstr "متحكّمات SATA"
msgid "RAID controllers"
msgstr "متحكّمات RAID"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "متحكمات (E)IDE/ATA"
-#: harddrake/data.pm:385
+#: harddrake/data.pm:386
+#, c-format
+msgid "USB Mass Storage Devices"
+msgstr ""
+
+#: harddrake/data.pm:395
+#, fuzzy, c-format
+msgid "Card readers"
+msgstr "نوع البطاقة"
+
+#: harddrake/data.pm:404
#, c-format
msgid "Firewire controllers"
msgstr "متحكمات Firewire"
-#: harddrake/data.pm:394
+#: harddrake/data.pm:413
#, c-format
msgid "PCMCIA controllers"
msgstr "متحكمات PCMCIA"
-#: harddrake/data.pm:403
+#: harddrake/data.pm:422
#, c-format
msgid "SCSI controllers"
msgstr "متحكمات SCSI"
-#: harddrake/data.pm:412
+#: harddrake/data.pm:431
#, c-format
msgid "USB controllers"
msgstr "متحكمات USB"
-#: harddrake/data.pm:421
+#: harddrake/data.pm:440
#, c-format
msgid "USB ports"
msgstr "منافذ USB"
-#: harddrake/data.pm:430
+#: harddrake/data.pm:449
#, c-format
msgid "SMBus controllers"
msgstr "متحكّمات SMBus"
-#: harddrake/data.pm:439
+#: harddrake/data.pm:458
#, c-format
msgid "Bridges and system controllers"
msgstr "الجسور ومتحكمات النظام"
-#: harddrake/data.pm:450 help.pm:856 install_steps_interactive.pm:94
-#: install_steps_interactive.pm:924 standalone/finish-install:41
-#: standalone/keyboarddrake:29
+#: harddrake/data.pm:469
#, c-format
msgid "Keyboard"
msgstr "لوحة المفاتيح"
-#: harddrake/data.pm:463
+#: harddrake/data.pm:482
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:472 help.pm:856 install_steps_interactive.pm:957
+#: harddrake/data.pm:491
#, c-format
msgid "Mouse"
msgstr "الماوس"
-#: harddrake/data.pm:486
+#: harddrake/data.pm:505
#, c-format
msgid "UPS"
msgstr "مُزوّد الطاقة الغير منقطعة (UPS)"
-#: harddrake/data.pm:495
+#: harddrake/data.pm:514
#, c-format
msgid "Scanner"
msgstr "الماسح الضوئي"
-#: harddrake/data.pm:505 standalone/harddrake2:475
+#: harddrake/data.pm:524
#, c-format
msgid "Unknown/Others"
msgstr "غير معروف/أخرى"
-#: harddrake/data.pm:533
+#: harddrake/data.pm:552
#, c-format
msgid "cpu # "
msgstr "cpu # "
-#: harddrake/sound.pm:195 standalone/drakconnect:162
-#: standalone/drakconnect:637
+#: harddrake/sound.pm:195
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "يرجى الإنتظار... جاري تطبيق التهيئة"
@@ -3634,17 +3040,17 @@ msgstr ""
"- واجهة تطبيق ALSA الجديدة والتي توفّر العديد من الميزات المحسّنة إلّا أنّها "
"تتطلّب مكتبة ALSA.\n"
-#: harddrake/sound.pm:262 harddrake/sound.pm:350 standalone/drakups:144
+#: harddrake/sound.pm:262 harddrake/sound.pm:351
#, c-format
msgid "Driver:"
msgstr "المُشغّل:"
-#: harddrake/sound.pm:270
+#: harddrake/sound.pm:271
#, c-format
msgid "Trouble shooting"
msgstr "حل المشاكل"
-#: harddrake/sound.pm:278
+#: harddrake/sound.pm:279
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
@@ -3659,12 +3065,12 @@ msgstr ""
"\n"
"مشغل \"%s\" الجديد سيتم استخدامه عند تشغيل الجهاز في المرة القادمة."
-#: harddrake/sound.pm:286
+#: harddrake/sound.pm:287
#, c-format
msgid "No open source driver"
msgstr "لا يوجد مشغل مفتوح المصدر"
-#: harddrake/sound.pm:287
+#: harddrake/sound.pm:288
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
@@ -3672,33 +3078,33 @@ msgid ""
msgstr ""
"لا يوجد مشغل مفتوح المصدر لبطاقة الصوت (%s)، لكن هناك مشغل تجاري في \"%s\"."
-#: harddrake/sound.pm:290
+#: harddrake/sound.pm:291
#, c-format
msgid "No known driver"
msgstr "لا يوجد مشغل معروف"
-#: harddrake/sound.pm:291
+#: harddrake/sound.pm:292
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "لا يوجد مشغل معروف لبطاقة الصوت (%s)"
-#: harddrake/sound.pm:295 network/netconnect.pm:98 network/netconnect.pm:837
+#: harddrake/sound.pm:296
#, c-format
msgid "Unknown driver"
msgstr "مشغل غير معروف"
-#: harddrake/sound.pm:296
+#: harddrake/sound.pm:297
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "خطأ: مشغل \"%s\" لبطاقة الصوت الخاصة بك غير موجود في القائمة"
-#: harddrake/sound.pm:310
+#: harddrake/sound.pm:311
#, c-format
msgid "Sound trouble shooting"
msgstr "حل مشاكل الصوت"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:313
+#: harddrake/sound.pm:314
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
@@ -3707,7 +3113,7 @@ msgid ""
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\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"
@@ -3727,7 +3133,7 @@ msgstr ""
"- \"lspcidrake -v | fgrep AUDIO\" سيخبرك باسم مشغّل الذي تستخدمه بطاقتك "
"الصّوتيّة بشكل افتراضي\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" سيخبرك باسم مشغّل\n"
+"- \"grep sound-slot /etc/modprobe.conf\" سيخبرك باسم مشغّل\n"
"المستخدم حاليّاً\n"
"\n"
"- \"/sbin/lsmod\" سيمكّنك من التحقّق من أن وحدته (مشغّل) هي\n"
@@ -3741,18 +3147,18 @@ msgstr ""
"\n"
"- \"/sbin/fuser -v /dev/dsp\" سيخبرك عن أيّ برنامج يستخدم بطاقة الصّوت.\n"
-#: harddrake/sound.pm:339
+#: harddrake/sound.pm:340
#, c-format
msgid "Let me pick any driver"
msgstr "اسمح لي أن أختار مشغل"
-#: harddrake/sound.pm:342
+#: harddrake/sound.pm:343
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "جاري اختيار مشغل عام"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:345
+#: harddrake/sound.pm:346
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3766,8 +3172,7 @@ msgstr ""
"\n"
"المُشغّل الحالي لبطاقة الصوت \"%s\" الخاصة بك هو \"%s\" "
-#: harddrake/v4l.pm:12 standalone/net_applet:64 standalone/net_applet:65
-#: standalone/net_applet:67
+#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "تحقق آلي"
@@ -3810,3746 +3215,53 @@ msgstr "نوع البطاقة"
msgid "Tuner type:"
msgstr "نوع الموالف:"
-#: harddrake/v4l.pm:479
+#: interactive.pm:125 interactive.pm:538 interactive/curses.pm:217
+#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
+#: interactive/stdio.pm:142 interactive/stdio.pm:143 ugtk2.pm:410 ugtk2.pm:508
+#: ugtk2.pm:788 ugtk2.pm:811
#, c-format
-msgid "Number of capture buffers:"
-msgstr "عدد مخازن اللّقطات:"
-
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "عدد مخازن اللّقطات للقطات mmap'ed"
-
-#: harddrake/v4l.pm:481
-#, c-format
-msgid "PLL setting:"
-msgstr "إعداد PLL:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "Radio support:"
-msgstr "دعم الراديو:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "enable radio support"
-msgstr "تمكين دعم الراديو"
-
-#: help.pm:12
-#, c-format
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandriva Linux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-"قبل المتابعة، عليك قراءة بنود الترخيص جيداً.. إنها\n"
-"تغطي كل توزيعة ماندريبا لينكس. إذا كنت توافق على كل البنود\n"
-"الموجودة فيها، قم بالتأشير على مربّع \"%s\". إن لم يكن كذلك، فبالضّغط على زرّ "
-"\"%s\"\n"
-"سيتم إعادة تشغيل جهازك."
-
-#: help.pm:18
-#, c-format
-msgid ""
-"GNU/Linux is a multi-user system which means each user can have his or her\n"
-"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point will not be "
-"authorized\n"
-"to change anything except their own files and their own configurations,\n"
-"protecting the system from unintentional or malicious changes which could\n"
-"impact on the system as a whole. You'll have to create at least one regular\n"
-"user for yourself -- this is the account which you should use for routine,\n"
-"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
-"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system will not work any more. If you make a\n"
-"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you will not affect the entire system.\n"
-"\n"
-"The first field asks you for a real name. Of course, this is not mandatory\n"
-"-- you can actually enter whatever you like. DrakX will use the first word\n"
-"you type in this field and copy it to the \"%s\" one, which is the name\n"
-"this user will enter to log onto the system. If you like, you may override\n"
-"the default and change the user name. The next step is to enter a password.\n"
-"From a security point of view, a non-privileged (regular) user password is\n"
-"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
-"by making it blank or too simple: after all, your files could be the ones\n"
-"at risk.\n"
-"\n"
-"Once you click on \"%s\", you can add other users. Add a user for each one\n"
-"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
-"finished adding users.\n"
-"\n"
-"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
-"that user (bash by default).\n"
-"\n"
-"When you're finished adding users, you'll be asked to choose a user who\n"
-"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click on\n"
-"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
-msgstr ""
-"نظام جنو/لينكس هو نظام متعدد المستخدمين، مما يعني أن كل مستخدم\n"
-"له تفضيلاته الخاصة و ملفاته الخاصة و ما إلى ذلك. لكن على غرار المستخدم \"root"
-"\"، والذي هو مدير النظام، فإن المستخدمين الذين تُضيفهم حتى هذه النقطة لن "
-"يكونوا مُخوّلين\n"
-"بتغيير أي شيء عدا ملفّاتهم الخاصّة وإعداداتهم،\n"
-"لحماية النظام من أيّ تغييرات مشبوهة أو غير مقصودة والتي\n"
-"قد تكون ذات تأثير على النّظام بشكل كامل. سيتعيّن عليك إنشاء مستخدم واحد على "
-"الأقل لنفسك -- والذي هو حساب عليك استخدامه للعمل الروتيني اليومي.\n"
-"مع أنّه من السهل تسجيل الدخول كـ\"root\" لعمل\n"
-"أي شيء وكل شيء، إلا أنّه قد يكون أيضاً خطراً جداً. الخطأ البسيط جداً\n"
-"قد يعني أنّ نظامك لن يعمل بعد ذلك. إن قمت بخطأ جسيم\n"
-"كمستخدم عادي، فإنّ أسوأ ما قد يحدث أنّك ستفقد\n"
-"بعض المعلومات، ولكن لن تُؤثّر على النظام ككلّ.\n"
-"\n"
-"\n"
-"الحقل الأول سيسألك عن اسمك الحقيقي. بالطبع هذا الحقل\n"
-"ليس اجبارياً -- يمكنك إدخال أي شئ تريد. DrakX سيستخدم الكلمة\n"
-"الأولى التي قمت بإدخالها في هذا الحقل وينقلها إلى حقل \"%s\"، الذي\n"
-"هو الاسم الذي سيدخله المستخدم للدخول على النظام. إن أحببت، يمكنك تخطّي\n"
-"المُدخل الافتراضي وتغيّر اسم المستخدم. الخطوة التالية هي إدخال كلمة المرور.\n"
-"من وجهة نظر أمنية، فإن كلمة مرور المستخدم العادي بدون صلاحيات\n"
-"ليست بأهمّيّة كلمة مرور المستخدم \"الجذر\"، لكن ليس هذا سبب للتغاضي\n"
-"عنها أو جعلها فارغة أو جعلها سهلة جداً: على كلّ حال، ملفاتك قد تكون هي\n"
-"التي في خطر.\n"
-"\n"
-"بمجرد ضغطك على زر \"%s\"، يمكنك إضافة مستخدمين أخر. أضف اسم مستخدم\n"
-"لكل صديق من أصدقائك أو لأبيك أو لأختك،مثلاً. اضغط \"%s\" عندما\n"
-"تنتهي من إضافة المستخدمين.\n"
-"\n"
-"ضغط زرّ \"%s\" يسمح لك بتغيير \"الصَّدفة\"\n"
-"لذلك المستخدم (bash هو الافتراضي).\n"
-"\n"
-"عندما تنتهي من إضافة المستخدمين، سيتم سؤالك عما إذا كنت تريد اختيار مستخدم\n"
-"يتم الدخول بواسطته إلى النظام تلقائياً عند بدء التشغيل.\n"
-"إذا كنت مهتماً بهذه الميزة (و لم تكن مهتماً كثيراً بالأمن المحلّي)،\n"
-"اختر المستخدم المطلوب و مدير النوافذ ثم اضغط \"%s\".\n"
-"إن لم تكن مهتماً بهذه الميزة، قم بإزالة التأشير من مربّع الاختيار \"%s\"."
-
-#: help.pm:52 printer/printerdrake.pm:1866 printer/printerdrake.pm:1987
-#: standalone/draksambashare:60
-#, c-format
-msgid "User name"
-msgstr "اسم المستخدم"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: help.pm:52 help.pm:432 help.pm:682 install_interactive.pm:176
-#: install_steps_gtk.pm:237 install_steps_gtk.pm:682 interactive.pm:436
-#: interactive/newt.pm:321 network/thirdparty.pm:385
-#: printer/printerdrake.pm:3884 standalone/drakTermServ:412
-#: standalone/drakbackup:4102 standalone/drakbackup:4196
-#: standalone/drakbackup:4213 standalone/drakbackup:4231 ugtk2.pm:490
-#, c-format
-msgid "Next"
-msgstr "التالي"
-
-#: help.pm:52
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "هل تريد استخدام هذه الميزة؟"
-
-#: help.pm:55
-#, c-format
-msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"في الأعلى ستجد تجزيئات لينكس الموجودة والتي عثر عليها على القرص الصلب الخاص "
-"بك.\n"
-"يمكنك أن تُبقي اختيارات المرشد، وهي جيدة لأغلب أنواع التثبيت.\n"
-"إذا قمت بعمل أي تغييرات فيجب عليك أن تعرف التجزيء الجذر (\"/\"). لا تختر\n"
-"تجزيئات صغيرة جدا و إلا لن تستطيع تثبيت برامج كافية. إذا كنت تريد تخزين "
-"البيانات\n"
-"على تجزيء مستقل فستحتاج إلى عمل تجزيء لـ\"/home\"\n"
-"(ممكن فقط إذا كان لديك أكثر من تجزيء للينكس).\n"
-"\n"
-"كل تجزيء مُعطى بالشكل التالي: \"الإسم\"، \"السعة\".\n"
-"\n"
-"\"الإسم\" مركب بالسكل التالي: \"نوع القرص الصلب\"، \"رقم القرص الصلب\"،\n"
-"\"رقم التجزيء\" (مثلا، \"hda1\").\n"
-"\n"
-"\"رقم القرص الصلب\" دائما هو حرف بعد \"hd\" أو \"sd\". بالنسبة للأقراص "
-"الصلبة\n"
-"من نوع IDE فإن:\n"
-" * \"a\" تعني \"القرص الصلب الأساسي على متحكم IDE الأساسي\"،\n"
-"\n"
-" * \"b\" تعني \"القرص الصلب الثانوي على متحكم IDE الأساسي\"،\n"
-"\n"
-" * \"c\" تعني \"القرص الصلب الأساسي على متحكم IDE الثانوي\"،\n"
-"\n"
-" * \"d\" تعني \"القرص الصلب الثانوي على متحكم IDE الثانوي\"،\n"
-"\n"
-"أما بالنسبة لأقراص سكزي SCSI فالحرف \"a\" يعني \"أقل معرف SCSI\"، و الحرف \"b"
-"\"\n"
-"يعني \"ثاني أقل معرف SCSI\"، الخ."
-
-#: help.pm:86
-#, c-format
-msgid ""
-"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-"تثبيت ماندريبا لينكس موزّع على العديد من الأقراص.\n"
-"إن كانت حزمة ما في قرص آخر، سيقوم DrakX بإخراج القرص\n"
-"الحالي و سيطلب منك أن تدخل القرص المطلوب. إن لم يكن القرص المطلوب لديك،\n"
-"فقط اضغط على \"%s\"، ولن يتمّ تثبيت تلك الحزم.."
-
-#: help.pm:93
-#, c-format
-msgid ""
-"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandriva Linux, and to make "
-"it\n"
-"simpler to manage, they have been placed into groups of similar\n"
-"applications.\n"
-"\n"
-"Mandriva Linux sorts package groups in four categories. You can mix and\n"
-"match applications from the various categories, so a ``Workstation''\n"
-"installation can still have applications from the ``Server'' category\n"
-"installed.\n"
-"\n"
-" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
-"more of the groups in the workstation category.\n"
-"\n"
-" * \"%s\": if you plan on using your machine for programming, select the\n"
-"appropriate groups from that category. The special \"LSB\" group will\n"
-"configure your system so that it complies as much as possible with the\n"
-"Linux Standard Base specifications.\n"
-"\n"
-" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
-"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
-"of the system. However, if you do not select the \"LSB\" group you will\n"
-"still have a system which is nearly 100%% LSB-compliant.\n"
-"\n"
-" * \"%s\": if your machine is intended to be a server, select which of the\n"
-"more common services you wish to install on your machine.\n"
-"\n"
-" * \"%s\": this is where you will choose your preferred graphical\n"
-"environment. At least one must be selected if you want to have a graphical\n"
-"interface available.\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group.\n"
-"\n"
-"You can check the \"%s\" box, which is useful if you're familiar with the\n"
-"packages being offered or if you want to have total control over what will\n"
-"be installed.\n"
-"\n"
-"If you start the installation in \"%s\" mode, you can deselect all groups\n"
-"and prevent the installation of any new packages. This is useful for\n"
-"repairing or updating an existing system.\n"
-"\n"
-"If you deselect all groups when performing a regular installation (as\n"
-"opposed to an upgrade), a dialog will pop up suggesting different options\n"
-"for a minimal installation:\n"
-"\n"
-" * \"%s\": install the minimum number of packages possible to have a\n"
-"working graphical desktop.\n"
-"\n"
-" * \"%s\": installs the base system plus basic utilities and their\n"
-"documentation. This installation is suitable for setting up a server.\n"
-"\n"
-" * \"%s\": will install the absolute minimum number of packages necessary\n"
-"to get a working Linux system. With this installation you will only have a\n"
-"command-line interface. The total size of this installation is about 65\n"
-"megabytes."
-msgstr ""
-"حان الوقت الآن لتحديد أيّ البرامج تريد تثبيتها على نظامك.\n"
-"هناك الآلاف من الحزم المتوفّرة لماندريبا لينكس، و\n"
-"لكي نجعلها أسهل إدارة فقد وضعت الحزم في مجموعات من\n"
-"التّطبيقات المتشابهة.\n"
-"\n"
-"يصنف ماندريبا لينكس الحزم في أصناف أربعة. يمكنك \n"
-"خلط ومطابقة التّطبيقات من الأصناف المتعدّدة، بحيث\n"
-"يحتوي تثبيت \"محطّة عمل\" على تطبيقات من فئة خادم.\"\n"
-"\n"
-" * \"%s\": إن كنت تنوي استخدام جهازك كمحطّة عمل، اختر واحد أو\n"
-"أكثر من المجموعات التي في فئة محطّة العمل.\n"
-"\n"
-" * \"%s\": إن كنت تنوي استخدام جهازك للبرمجة، اختر\n"
-"المجموعات المناسبة من تلك الفئة. مجموعة \"LSB\" المميزة سوف\n"
-"تهيئ نظامك بحيث يتوافق قدر الإمكان مع توصيات قاعدة لينكس القياسية.\n"
-"\n"
-" اختيار مجموعة \"LSB\" سوف يثبت أيضاً تسلسل النواة \"2.4\"،\n"
-"بدلاً من \"2.6\" الافتراضيّة. هذا للتأكيد على التوافق الكامل للنظام مع LSB.\n"
-"على كل حال، إن لم تختر مجموعة \"LSB\" فسوف\n"
-"لا يزال يكون لديك نظام متوافق 100%% تقريباً مع LSB.\n"
-"\n"
-" * \"%s\": إن كان جهازك سيستخدم كخادم، اختر أيّاً من\n"
-"الخدمات الأكثر شيوعاً ترغب في تثبيتها على جهازك.\n"
-"\n"
-" * \"%s\": هذا هو المكان الذّي تحدّد فيه بيئتك الرّسوميّة المفضّلة.\n"
-"يجب على الأقلّ اختيار واحدة إن كنت تريد أن يكون لديك\n"
-"واجهة رسوميّة متوفّرة.\n"
-"\n"
-"تحريك مؤشّر الماوس عبر اسم مجموعة سيظهر نصّ شرحٍ مختصرٍ\n"
-"عن تلك المجموعة.\n"
-"\n"
-"يمكنك اختيار مربّع \"%s\"، والذي هو مفيد إن كنت معتاداً على\n"
-"الحزم المُوفّرة أو إن كنت متحكماً تماماً\n"
-"بما سيتم تثبيته.\n"
-"\n"
-"إن بدأت التثبيت بالوضع \"%s\"، يمكنك إزالة اختيار كل المجموعات ومنع تثبيت أي "
-"حزم جديدة. هذا مفيد\n"
-"لإصلاح أو تحديث نظام موجود.\n"
-"\n"
-"إن قمت بإلغاء تحديد كلّ المجموعات عند القيام بتثبيت عاديّ\n"
-"(كما هو الحال في التّحديث)، سينبثق حوار يقترح\n"
-"خيارات متعدّدة للتثبيت الأدنى:\n"
-"\n"
-" * \"%s\": تثبيت أقلّ عدد من الحزم الممكنة لتحصل\n"
-"على سطح مكتب رسوميّ عامل.\n"
-"\n"
-" * \"%s\": بتثبيت النّظام الأساسي بالإضافة إلى الأدوات البسيطة وتوابعها\n"
-"من المواثقة. هذا التثبيت مناسب لإعداد خادم.\n"
-"\n"
-" * \"%s\": سوف يثبت أقلّ عدد ممكن من الحزم الضّروريّة\n"
-"للحصول على نظام لينكس عامل. بهذا التّثبيت ستحصل فقط على\n"
-"واجهة سطر الأوامر. الحجم الكلّي لهذا التّثبيت هو حوالي 65\n"
-"ميجابايت."
-
-#: help.pm:147 share/compssUsers.pl:24
-#, c-format
-msgid "Workstation"
-msgstr "محطة عمل"
-
-#: help.pm:147 share/compssUsers.pl:65 share/compssUsers.pl:167
-#: share/compssUsers.pl:169
-#, c-format
-msgid "Development"
-msgstr "تطوير"
-
-#: help.pm:147 share/compssUsers.pl:145
-#, c-format
-msgid "Graphical Environment"
-msgstr "بيئات رسومية"
-
-#: help.pm:147 install_steps_gtk.pm:235 install_steps_interactive.pm:623
-#, c-format
-msgid "Individual package selection"
-msgstr "اختيار مفرد للحزم"
-
-#: help.pm:147 help.pm:589
-#, c-format
-msgid "Upgrade"
-msgstr "ترقية"
-
-#: help.pm:147 install_steps_interactive.pm:581
-#, c-format
-msgid "With X"
-msgstr "مع X"
-
-#: help.pm:147
-#, c-format
-msgid "With basic documentation"
-msgstr "مع وثائق المساعدة الأساسية"
-
-#: help.pm:147
-#, c-format
-msgid "Truly minimal install"
-msgstr "تثبيت مصغّر جداً"
-
-#: help.pm:150
-#, c-format
-msgid ""
-"If you choose to install packages individually, the installer will present\n"
-"a tree containing all packages classified by groups and subgroups. While\n"
-"browsing the tree, you can select entire groups, subgroups, or individual\n"
-"packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description will appear on the\n"
-"right to let you know the purpose of that package.\n"
-"\n"
-"!! If a server package has been selected, either because you specifically\n"
-"chose the individual package or because it was part of a group of packages,\n"
-"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandriva Linux will automatically start any installed\n"
-"services at boot time. Even if they are safe and have no known issues at\n"
-"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandriva Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do "
-"or\n"
-"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
-"the listed services and they will be started automatically at boot time. !!\n"
-"\n"
-"The \"%s\" option is used to disable the warning dialog which appears\n"
-"whenever the installer automatically selects a package to resolve a\n"
-"dependency issue. Some packages depend on others and the installation of\n"
-"one particular package may require the installation of another package. The\n"
-"installer can determine which packages are required to satisfy a dependency\n"
-"to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-"package list created during a previous installation. This is useful if you\n"
-"have a number of machines that you wish to configure identically. Clicking\n"
-"on this icon will ask you to insert the floppy disk created at the end of\n"
-"another installation. See the second tip of the last step on how to create\n"
-"such a floppy."
-msgstr ""
-"إن أخبرت برنامج التثبيت أنك تريد اخيار الحزم فرديّاً،\n"
-"فسوف يقدّم لك شجرة تحتوي كلّ الحزم مصنّفةً بحسب المجموعات و\n"
-"المجموعات الفرعيّة. خلال استعراض الشّجرة، يمكنك تحديد مجموعات بالكامل،\n"
-"مجموعات فرعيّة، أو حزم مفردة.\n"
-"\n"
-"حينما تحدّد حزمة من الشّجرة، يظهر وصفٌ على\n"
-"اليمين يعلمك بالغرض من الحزمة.\n"
-"\n"
-"!! إن تمّ اختيار حزمة خادم، إمّا بسبب أنّك حدّدتها\n"
-"قصداً أو بسبب أنّها كانت جزءً من مجموعة حزم،\n"
-"سوف تسأل التّأكيد على أنّك حقّاً تريد تلك الخادمات أن تكون\n"
-"مثبتة. بشكل افتراضي سيقوم ماندريبا لينكس بتشغيل أي خدمات مثبّتة تلقائيّاً\n"
-"عند بدء التّشغيل. حتى إن كانت آمنة وليس لها أيّ مسائل معروفة حين\n"
-"وقت شحن التّوزيعة، فإنّه من الممكن جدّاً أن\n"
-"تكون الثّغرات الأمنيّة اكتشفت بعد أن تمّ الانتهاء من هذه النّسخة من ماندريبا "
-"لينكس.\n"
-"إن لم تكن تعرف ما يفترض من خدمة معيّنة\n"
-"عمله أو لم سيتمّ تثبيتها، فاضغط على\"%s\". الضّغط على \"%s\"سوف\n"
-"يثبت الخدمات المُسردة وسوف يتمّ تشغيلها تلقائيّاً\n"
-"بشكل افتراضي خلال الإقلاع.!!\n"
-"\n"
-"يستخدم الخيار \"%s\" لتعطيل حوار التّحذير الذي يظهر\n"
-"حينما يحدّد برنامج التثبيت حزمة ليحلّ\n"
-"مسألة اعتماد. بعض الحزم بينها علاقات بحيث\n"
-"يكون تثبيت أحدها يتطلّب تثبيت برامج أخرى أيضاً.\n"
-"يستطيع برنامج التثبيت تحديد الحاجة إلى أي من هذه الحزم\n"
-"لإرضاء الاعتماد لإكمال التّثبيت ينجاح.\n"
-"\n"
-"تسمح لك الأيقونة الصّغيرة للقرص المرن في أسفل اللائحة بتحميل\n"
-"لائحة الحزم المُنشأة خلال تثبيت سابق. يكون هذا نافعاً إن كان\n"
-"لديك عدد من الأجهزة التي تودّ تهيئتها بشكل مشابه. الضّغط\n"
-"على هذه الأيقونة سيسألك إدخال قرص مرن أنشئ في\n"
-"نهاية تثبيت آخر. انظر التّلميح الثّاني من الخطوة الأخيرة عن كيفيّة\n"
-"إنشاء قرص مرن كهذا."
-
-#: help.pm:181 help.pm:286 help.pm:314 help.pm:445 install_any.pm:944
-#: interactive.pm:161 modules/interactive.pm:71 standalone/drakbackup:2636
-#: standalone/drakfont:687 standalone/draksec:54 standalone/harddrake2:331
-#: ugtk2.pm:898 wizards.pm:156
-#, c-format
-msgid "No"
-msgstr "لا"
+msgid "Ok"
+msgstr "موافق"
-#: help.pm:181 help.pm:286 help.pm:445 install_any.pm:944 interactive.pm:161
-#: modules/interactive.pm:71 printer/printerdrake.pm:883
-#: printer/printerdrake.pm:898 standalone/drakbackup:2636
-#: standalone/drakfont:685 standalone/draksec:55 standalone/harddrake2:330
-#: ugtk2.pm:898 wizards.pm:156
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "نعم"
-#: help.pm:181
-#, c-format
-msgid "Automatic dependencies"
-msgstr "مُعتمدات آلية"
-
-#: help.pm:184
-#, c-format
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to set up a new printer. The interface presented in our\n"
-"manual is similar to the one used during installation."
-msgstr ""
-"\"%s\": الضغط على \"%s\" سيفتح معالج تهيئة\n"
-"الطابعة. اقرأ الفصل المختص في ``دليل المبتدئ''\n"
-"لمزيد من المعلومات عن كيفية تهيئة طابعة جديدة. الواجهة\n"
-"المقدمة في دليلنا\n"
-"هي مماثلة لتلك المستخدمة أثناء التثبيت."
-
-#: help.pm:187 help.pm:567 help.pm:856 install_steps_gtk.pm:595
-#: standalone/drakbackup:2460 standalone/drakbackup:2464
-#: standalone/drakbackup:2468 standalone/drakbackup:2472
-#: standalone/drakroam:227
-#, c-format
-msgid "Configure"
-msgstr "تهيئة"
-
-#: help.pm:190
-#, c-format
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
-"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which are not needed at boot\n"
-"time.\n"
-"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably do not want to start any services which you do not "
-"need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-"يستخدم هذا الحوار لاختيار الخدمات التي تودّ تشغيلها عند بدء التشغيل.\n"
-"\n"
-"سيقوم DrakX بعرض قائمة بكل الخدمات المتوفرة في هذا التثبيت.\n"
-"راجع كل خدمة بتمعن و قم بإزالة التأشير من تلك الخدمات التي لا تحتاجها\n"
-"بشكل دائم عند الإقلاع.\n"
-"\n"
-"سيتم عرض شرح قصير حول الخدمة عند\n"
-"اختيارها. عموماً، إن لم تكن متأكد ما إذا كانت الخدمة مفيدة أم لا،\n"
-"فمن الأفضل ترك الخيار الإفتراضي.\n"
-"\n"
-"!! في هذه المرحلة كن حذراُ إذا كنت تريد استخدام ماكينتك\n"
-"كخادم: ربما لن تريد بدء أي خدمات لا تحتاجها.\n"
-"فضلاً تذكر أن العديد من الخدمات قد تكون خطرة إذا كانت\n"
-"متاحة على الخادم. بشكل عام اختر فقط الخدمات التي تحتاجها بالفعل !!"
-
-#: help.pm:207
-#, c-format
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
-"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
-msgstr ""
-"يقوم جنو/لينكس بإدارة الوقت بحسب توقيت غرينتش ثم يترجمه إلى\n"
-"التوقيت المحلي بحسب المنطقة الزّمنية التي اخترتها. إذا كانت الساعة\n"
-"التي في اللّوحة الرئيسية مضبوطة على التوقيت المحلي، يمكنك تعطيل ذلك\n"
-"عن طريق إزالة اختيار \"%s\" و التي ستجعل\n"
-"جنو/لينكس يعلم أن ساعة النظام وساعة الجهاز في نفس المنطقة الزّمنيّة. هذا مفيد "
-"عندما يستضيف الجهاز\n"
-"أيضاً نظام تشغيل آخر.\n"
-"\n"
-"الخيار \"%s\" سيقوم آلياً بضبط الساعة عن طريق الإتصال\n"
-"بخادم وقت بعيد على الإنترنت. كي تعمل هذه الميزة، يجب أن تكون لديك\n"
-"وصلة انترنت عاملة. من الأفضل اختيار خادم الوقت\n"
-"الأقرب إليك. في الحقيقة يُثبت هذا الخيار خادم وقت يمكن استخدامه\n"
-"من قبل الأجهزة الأخرى على الشبكة المحلية أيضاً."
-
-#: help.pm:218 install_steps_interactive.pm:859
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "ساعة الجهاز مضبوطة على توقيت غرينتش"
-
-#: help.pm:218
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "تزامن وقت آلي"
-
-#: help.pm:221
-#, c-format
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-"بطاقة الرسوم\n"
-"\n"
-" برنامج التثبيت يقوم باكتشاف وتهيئة\n"
-"البطاقة الموجودة على نظامك بشكل آلي. إن لم يحدث ذلك، يمكنك\n"
-"اختيار البطاقة المُتثبيتة لديك بالفعل من القائمة.\n"
-"\n"
-" في حال كانت هناك خادمات رسومية مختلفة لبطاقتك،\n"
-"مع أو بدون تعزيز للرسوم ثلاثية الأبعاد، ستُسأل اختيار الخادم الذي\n"
-"يناسب احتياجاتك أكثر."
-
-#: help.pm:232
-#, c-format
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"؛X (إشارةً إلى نظام نوافذ X) هو قلب الواجهة الرّسوميّة لجنو/لينكس\n"
-"الذي تعتمد عليه كل البيئات الرّسوميّة (كيدي، جينوم، AfterStep،\n"
-"WindowMaker، وغيرها) المضمّنة مع ماندريبا لينكس.\n"
-"\n"
-"سوف تقدّم لك لائحة من معامِلاتٍ مختلفة يمكنك تغييرها للحصول\n"
-"على العرض الرّسوميّ الأمثل.\n"
-"\n"
-"بطاقة الرسوم\n"
-"\n"
-" عادةً سيقوم المثبت بالاستكشاف والتّهيئة الآليّة\n"
-"للبطاقة الرّسوميّة المثبّثة على جهازك. إن لم يكن ذلك الحال، فيمكنك\n"
-"اختيار البطاقة الموجودة لديك بالفعل من هذه القائمة.\n"
-"\n"
-" في حال توفّرت عدّة خادماتٍ لبطاقتك،\n"
-"مع أو بدون التعزيز الثّلاثي الأبعاد، سوف يطلب منك أن تحدّد الخادم\n"
-"الأكثر ملائمة لحاجاتك.\n"
-"\n"
-"\n"
-"\n"
-"الشّاشة\n"
-"\n"
-" عادةً سيقوم المُتثبيت بالاستكشاف والتهيئة الآليّة\n"
-"للشّاشة المُتّصلة بجهازك. إن لم تكن صحيحة، فيمكنك\n"
-"اختيار الشّاشة المتّصلة بجهازك بالفعل من هذه القائمة.\n"
-"\n"
-"\n"
-"\n"
-"الاستبانة\n"
-"\n"
-" يمكنك هنا اختيار الاستبانة وعمق الألوان المتوفّرين\n"
-"لعتادك الرّسومي. اختر الأكثر مناسبةً لحاجاتك (سوف تكون قادراً على\n"
-"تغيير ذلك بعد التّثبيت على كل حال). تظهر عيّنة من التهيئة\n"
-"المحدّدة في صورة الشّاشة.\n"
-"\n"
-"\n"
-"\n"
-"اختبار\n"
-"\n"
-" قد لا يظهر هذا المُدخل بحسب عتادك.\n"
-"\n"
-" سوف يحاول النّظام فتح شاشة رسوميّة بالاستبانة المرغوبة.\n"
-"إذا رأيت رسالة الاختبار خلال الاختبار وأجبت بـ\"%s\"،\n"
-"فسوف يتقدّم DrakX إلى الخطوة التّالية. إن لم تستطع رؤية الرّسالة، فهذا\n"
-"يعني أن جزءً ما من التّهيئة المكتشفة آلياً كان غير صحيح\n"
-"وسينتهي الاختبار تلقائيّاً بعد 12 ثانية، معيداً إيّاك إلى\n"
-"القائمة. غيّر الإعدادات حتّى تحصل على عرض رسوميّ صحيح.\n"
-"\n"
-"\n"
-"\n"
-"خيارات\n"
-"\n"
-" يمكنك هنا اختيار ما إذا كنت تريد جهازك أن يبدّل تلقائيّاً\n"
-"إلى الواجهة الرّسوميّة عند الإقلاع. طبعاً ستفضّل\n"
-"أن تختار \"%s\" إن كان جهازك سيعمل كخادم، أو إن كنت لم تنجح في\n"
-"تهيئة العرض."
-
-#: help.pm:289
-#, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
-msgstr ""
-"الشاشة\n"
-"\n"
-" يمكن لبرنامج التثبيت اكتشاف و تهيئة الشاشة المتصلة بماكينتك\n"
-"آلياً. ان لم يحدث ذلك، يمكنك اختيار الشاشة التي لديك\n"
-"من القائمة."
-
-#: help.pm:296
-#, c-format
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
-msgstr ""
-"الاستبانة\n"
-"\n"
-" يمكنك اختيار الاستبانة وعمق الألوان في الحدود المتوفرة للعتاد.\n"
-"اختر تلك التي تناسب احتياجاتك (لا تزال\n"
-"تستطيع تغيير تلك الخيارات بعد التثبيت). يتم عرض عينة\n"
-"من التهيئة المختارة في صورة الشاشة."
-
-#: help.pm:304
-#, c-format
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-"في حال كانت هناك خادمات مختلفة للبطاقة الخاصة بك، مع أو\n"
-"دون تعزيز للرسوم ثلاثية الأبعاد، ستُسأل اختيار الخادم الذي\n"
-"يناسب احتياجاتك."
-
-#: help.pm:309
-#, c-format
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"الخيارات\n"
-"\n"
-" تخولك هذه الخطوة اختيار ما إذا كنت تريد بدء الواجهة الرسومية\n"
-"عند بدء النظام تلقائيّاً. بوضوح،\n"
-"ستختار \"%s\" إذا كانت ماكينتك ستستخدم كجهاز\n"
-"خادم، أو إذا لم تنجح في تهيئة العرض\n"
-"بشكل صحيح."
-
-#: help.pm:317
-#, c-format
-msgid ""
-"You now need to decide where you want to install the Mandriva Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandriva Linux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandriva Linux system, "
-"choose\n"
-"this option. Be careful, because you will not be able to undo this "
-"operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-"عند هذه النقطة، عليك أن تقرر أين تريد تثبيت نظام\n"
-"التشغيل ماندريبا لينكس على القرص الصلب الخاص بك. إذا كان القرص الصلب\n"
-"فارغاً أو أن نظام تشغيل آخر يستخدم كل المساحة المتوفرة فسوف\n"
-"تحتاج إلى تجزئة القرص الصلب. بشكل عام، تجزئة القرص الصلب\n"
-"تعني تقسيم القرص الصلب منطقياً لإنشاء المساحة المطلوبة لتثبيت\n"
-"نظام ماندريبا لينكس الجديد الخاص بك.\n"
-"\n"
-"عملية تقسيم القرص الصلب لا يمكن التّراجع عنها عادةًَ\n"
-"كما أنها قد تتسبب في خسارة للبيانات إن وجد هناك نظام تشغيل\n"
-"آخر مثبت على هذا القرص الصلب، لذا فإنّ تجزئة القرص قد تكون عمليّةً صعبةً ومرهقة\n"
-"إن لم تكن مستخدماً محترفاً. من حسن الحظ، يوفّر DrakX معالجاً يسهل العملية.\n"
-"قبل متابعة هذه الخطوة، اقرأ بقية هذا القسم و قبل كل شئ، خذ وقتك.\n"
-"\n"
-"اعتماداً على إعدادات القرص الصلب، تتوفر العديد من الخيارات:\n"
-"\n"
-" * \"%s\": هذا الخيار سيقوم بعملية تجزئة آلية\n"
-"للأقراص الصلبة الفارغة. إذا استخدمت هذا الخيار، لن تكون هناك إشعارات أخرى.\n"
-"\n"
-" * \"%s\": يكون المرشد قد اكتشف تجزيء أو أكثر من\n"
-"تجزيئات لينكس على القرص الصلب. إذا كنت تريد استخدامها، اختر هذا\n"
-"الخيار. سيتم بعد ذلك سؤالك عن أماكن التركيب المرتبطة بكل\n"
-"تجزيء. يتم اختيار أماكن التركيب المعتادة افتراضياً،\n"
-"ولأغلب المستخدمين فإنها فكرة جيدة تركها كما هي.\n"
-"\n"
-" * \"%s\" : إذا كان ميكروسوفت ويندوز مثبتاً على القرص الصلب و يحتل كل "
-"المساحة \n"
-"التي عليه، ستحتاج إلى إنشاء مساحة فارغة لبيانات جنو/لينكس. لعمل ذلك يمكنك "
-"حذف\n"
-"تجزيء و بيانات ميكروسوفت ويندوز (انظر حلّ ``إزالة القرص بأكمله'')\n"
-"أو قم بتغيير حجم تجزيء ميكروسوفت ويندوز FAT. يمكن تصغير الحجم\n"
-"دون أي خسارة للبيانات، إن كنت قمت بإزالة تجزّئات التجزيء الخاص بويندوز.\n"
-"يفضّل بشدّة نسخ بياناتك احتياطياً.. استخدام هذا الخيار\n"
-"منصوح به إذا كنت تريد استخدام كل من ماندريبا لينكس و ميكروسوفت ويندوز\n"
-"على نفس الحاسب.\n"
-"\n"
-" قبل اختيارك لهذا الخيار، عليك أن تعلم أنه بعد هذا\n"
-"الإجراء، ستتقلص مساحة تجزيء ميكروسوفت ويندوز عن ما قبل\n"
-"ستكون لديك مساحة فارغة أقل على ميكروسوفت ويندوز\n"
-"لتخزين بياناتك أو تثبيت برامج جديدة.\n"
-"\n"
-" * \"%s\": إذا كنت تريد حذف كل البيانات و كل التجزيئات\n"
-"الموجودة على القرص الصلب و استبدالها بنظام ماندريبا لينكس الجديد\n"
-"الخاص بك، اختر هذا الخيار. كن حذراً، لأنك لن تتمكن من التراجع\n"
-"بعد أن تقوم بالتأكيد.\n"
-"\n"
-" !! إن اخترت هذا الخيار، سيتم حذف كل البيانات الموجودة على القرص. !!\n"
-"\n"
-"؛ * \"%s\". هذا الخيار يظهر في حال كان القرص محتلاً بأكمله\n"
-"من قبل ميكروسوفت ويندوز. سيقوم هذا الخيار ببساطة بمحو كل شيء على القرص و\n"
-"بدء التثبيت من الصفر، مجزّأً كلّ شيء من لاشيء.\n"
-"\n"
-" !! إن اخترت هذا الخيار، ستخسر كلّ البيانات على القرص الخاص بك. !!\n"
-"\n"
-" * \"%s\": اختر هذا الخيار إذا كنت تريد\n"
-"تقسيم القرص الصلب بشكل يدوي. كن حذراً -- هذا الخيار قوي\n"
-"لكنه خطير و من الممكن أن تفقد بياناتك بسهولة. لهذا فإن\n"
-"هذا الخيار مفضّل فقط إذا كنت قد قمت بشئ مماثل من قبل \n"
-"و لديك بعض الخبرة. لمزيد من التعليمات حول استخدام أداة DiskDrake\n"
-"راجع قسم ``إدارة التجزيئات'' في\n"
-"``دليل المبتدئ''."
-
-#: help.pm:375 install_interactive.pm:96
-#, c-format
-msgid "Use free space"
-msgstr "استخدام المساحة الفارغة"
-
-#: help.pm:375
-#, c-format
-msgid "Use existing partition"
-msgstr "استخدام التجزيء الموجود"
-
-#: help.pm:375 install_interactive.pm:138
-#, c-format
-msgid "Use the free space on the Microsoft Windows® partition"
-msgstr "استخدام المساحة الفارغة على تجزيء ويندوز"
-
-#: help.pm:375
-#, c-format
-msgid "Erase entire disk"
-msgstr "مسح كل القرص"
-
-#: help.pm:375
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
-msgid "Remove Windows"
-msgstr "حذف ويندوز"
-
-#: help.pm:375 install_interactive.pm:233
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "تجزئة قرص مخصصة"
-
-#: help.pm:378
-#, c-format
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
-"to remove the installation media (CD-ROM or floppy). The first thing you\n"
-"should see after your computer has finished doing its hardware tests is the\n"
-"boot-loader menu, giving you the choice of which operating system to start.\n"
-"\n"
-"The \"%s\" button shows two more buttons to:\n"
-"\n"
-" * \"%s\": enables you to create an installation floppy disk which will\n"
-"automatically perform a whole installation without the help of an operator,\n"
-"similar to the installation you've just configured.\n"
-"\n"
-" Note that two different options are available after clicking on that\n"
-"button:\n"
-"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
-"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing on a number of similar\n"
-"machines. See the Auto install section on our web site for more\n"
-"information.\n"
-"\n"
-" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
-"To use this selection with another installation, insert the floppy and\n"
-"start the installation. At the prompt, press the [F1] key, type >>linux\n"
-"defcfg=\"floppy\"<< and press the [Enter] key.\n"
-"\n"
-"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
-"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
-"/dev/fd0\"."
-msgstr ""
-"ها أنت ذا. التثبيت قد اكتمل الآن ونظام جنو/لينكس الخاصّ بك\n"
-"جاهز للاستخدام. فقط اضغط \"%s\" لإعادة تشغيل نظامك. لا تنْسَ أن\n"
-"تزيل وسط التّثبيت (قرص مدمج أو مرن). أوّل شيء يجب أن\n"
-"تراه بعد أن ينتهي حاسبك من فحص عتاده هو\n"
-"قائمة محمّل الإقلاع، والتي تعطيك الخيار لأيّ نظام تشغيل تريد بدءه.\n"
-"\n"
-"زرّ \"%s\" يظهر زرّين إضافيّين كي:\n"
-"\n"
-" * \"%s\": تنشئ قرص تثبيت مرن يساعدك آليّاً\n"
-"بالقيام بالتّثبيت بأكمله دون مساعدة المُشغّل، كما هو\n"
-"التّثبيت الذي قمت بتهيئته للتّوّ.\n"
-"\n"
-" لاحظ أن خيارين مختلفين متوفّرين بعد الضّغط على الزّر:\n"
-"\n"
-" * \"%s\". هذا تثبيت آليّ جزئيّاً. خطوة التّجزئة\n"
-"هي الإجراء الوحيد التّفاعليّ.\n"
-"\n"
-" \"%s\". التّثبيت الآليّ بالكامل: يُعاد كتابة القرص الصّلب\n"
-"بالكامل، وتفقد كلّ البيانات.\n"
-"\n"
-" هذه الميزة مفيدة جدّاً عند تثبيت عدد من الماكينات المتشابهة.\n"
-"راجع قسم التّثبيت الآلي على موقعنا لمزيد من المعلومات.\n"
-"\n"
-" * \"%s\": يحفظ لائحة بالحزم المُختارة في هذا التّثبيت. كي\n"
-"تستخدم هذا الاختيار مع تثبيت آخر، أدخل القرص المرن وابدأ\n"
-"التّثبيت. على الملقن، اضغط مفتاح [F1] واكتب\n"
-">> linux defcfg=\"floppy\" << ثمّ اضغط مفتاح الإدخال.\n"
-"\n"
-"(*) ستحتاج إلى قرص مرن منسّق بنسق FAT. لإنشاءه على GNU/Linux، أدخل\n"
-"\"mformat a:\"، أو \"fdformat /dev/fd0\" تتبعها \"mkfs.vfat\n"
-"/dev/fd0\"."
-
-#: help.pm:410
-#, c-format
-msgid "Generate auto-install floppy"
-msgstr "إنشاء قرص تثبيت آلي"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Replay"
-msgstr "إعادة"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Automated"
-msgstr "آلي"
-
-#: help.pm:410 install_steps_interactive.pm:1317
-#, c-format
-msgid "Save packages selection"
-msgstr "حفظ اختيار الحزم"
-
-#: help.pm:413
-#, c-format
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
-"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
-"reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"will not be able to recover it.\n"
-"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
-"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandriva Linux operating system installation.\n"
-"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-"إن اخترت إعادة استخدام بعض تجزيئات جنو/لينكس القديمة، قد ترغب\n"
-"بإعادة تنسيق بعضها ومسح أية بيانات تحتويها. لعمل ذلك، الرجاء،\n"
-"اختيار تلك التجزيئات أيضاً.\n"
-"\n"
-"الرجاء ملاحظة أنّه ليس من الضّروري إعادة تنسيق كل التّجزيئات الموجودة مسبقاً.\n"
-"يجب عليك إعادة تنسيق التجزيئات التي تحتوي نظام\n"
-"التشغيل (مثل \"/\", \"/usr\" or \"/var\"( ولكن ليس عليك\n"
-"إعادة تنسيق التجزيئات التي تحتوي بيانات تودّ الاحتفاظ بها (عادة\n"
-"\"/home\").\n"
-"\n"
-"رجاء كن على حذر عند اختيار التّجزيئات. بعد إعادة التّنسيق، كلّ البيانات التي\n"
-"على التّجزيئات المحدّدة سوف تُحذف ولن تكون قادراً على\n"
-"استعادتها.\n"
-"\n"
-"اضغط على \"%s\" عندما تكون جاهزاً لتنسيق التّجزيئات.\n"
-"\n"
-"اضغط على \"%s\" إن كنت تريد اختيار تجزيء آخر من أجل\n"
-"تثبيت نظام التّشغيل ماندريبا لينكس الخاصّ بك.\n"
-"\n"
-"اضغط على \"%s\" إن كنت ترغب باختيار تجزيئات سيتمّ تفحّصها من أجل\n"
-"الكتل السّيئة على القرص."
-
-#: help.pm:432 install_steps_gtk.pm:392 interactive.pm:437
-#: interactive/newt.pm:318 printer/printerdrake.pm:3882
-#: standalone/drakTermServ:391 standalone/drakbackup:4065
-#: standalone/drakbackup:4101 standalone/drakbackup:4212
-#: standalone/drakbackup:4227 ugtk2.pm:488
-#, c-format
-msgid "Previous"
-msgstr "السابق "
-
-#: help.pm:435
-#, c-format
-msgid ""
-"By the time you install Mandriva Linux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-"في الوقت الذي تقوم فيه بتثبيت ماندريبا لينكس، قد يكون تم تحديث\n"
-"بعض الحزم منذ الإصدار الأول. قد يكون تم إصلاح بعض العيوب\n"
-"أو حل المشاكل الأمنية. لكي تستفيد من هذه التحديثات، يمكنك\n"
-"الآن تنزيل هذه التحديثات عبر الإنترنت. اختر\n"
-"\"%s\" إذا كانت لديك وصلة انترنت عاملة، أو \"%s\" إذا كنت تفضل\n"
-"تثبيت هذه التحديثات لاحقاً.\n"
-"\n"
-"اختيار \"%s\" يعرض قائمة بالأماكن التي يمكن منها الحصول\n"
-"على التحديثات. اختر المكان الأقرب إليك. سيتم عرض قائمة شجريّة بالحزم:\n"
-"راجع اختياراتك، ثم اضغط \"%s\" لجلْب و تثبيت\n"
-"الحزم المختارة، أو \"%s\" لإلغاء التّحديث."
-
-#: help.pm:445 help.pm:589 install_steps_gtk.pm:391
-#: install_steps_interactive.pm:132
-#, c-format
-msgid "Install"
-msgstr "تثبيت"
-
-#: help.pm:448
-#, c-format
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
-"\n"
-"If you do not know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandriva Linux\n"
-"Control Center.\n"
-"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-"عند هذه النقطة، سيسمح لك DrakX باختيار المستوى الأمني الذي ترغب به\n"
-"لهذا الجهاز. بديهياً، يجب تعيين مستوى أمني\n"
-"عالٍ إذا كان الجهاز يحتوي على معلومات هامة، أو إذا كان الجهاز\n"
-"سيُستخدم للإتصال بالإنترنت. إنّ استخدام مستوى أمن عالٍ يأتي\n"
-"عادة على حساب سهولة الإستخدام.\n"
-"\n"
-"إن لم تكن تعرف ماذا تختار، أبق الاختيار الافتراضي. سوف تكون\n"
-"قادراً على تغيير مستوى الأمن لاحقاً باستخدام الأداة draksec من\n"
-"لوحة تحكّم ماندريبا .\n"
-"\n"
-"يُعْلم الحقل \"%s\" نظام المُستخدم على هذا الجهاز الذي\n"
-"سيكون مسؤولاً عن الأمن. رسائل الأمن ستُرسل إلى ذلك\n"
-"العنوان."
-
-#: help.pm:459
-#, c-format
-msgid "Security Administrator"
-msgstr "مدير الأمن"
-
-#: help.pm:462
-#, c-format
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandriva Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"%s\": this option deletes all partitions on the selected hard drive\n"
-"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
-"partitions in the free space of your hard drive\n"
-"\n"
-"\"%s\": gives access to additional features:\n"
-"\n"
-" * \"%s\": saves the partition table to a floppy. Useful for later\n"
-"partition-table recovery if necessary. It is strongly recommended that you\n"
-"perform this step.\n"
-"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
-"\n"
-" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it does not always\n"
-"work.\n"
-"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
-"\n"
-" * \"%s\": un-checking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
-"\n"
-" * \"%s\": use this option if you wish to use a wizard to partition your\n"
-"hard drive. This is recommended if you do not have a good understanding of\n"
-"partitioning.\n"
-"\n"
-" * \"%s\": use this option to cancel your changes.\n"
-"\n"
-" * \"%s\": allows additional actions on partitions (type, options, format)\n"
-"and gives more information about the hard drive.\n"
-"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"When defining the size of a partition, you can finely set the partition\n"
-"size by using the Arrow keys of your keyboard.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and the [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
-"\n"
-" * Ctrl-d to delete a partition\n"
-"\n"
-" * Ctrl-m to set the mount point\n"
-"\n"
-"To get information about the different file system types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"عند هذه النقطة، تحتاج لاختيار أي التجزيئات ستستخدم\n"
-"لتثبيت نظام ماندريبا لينكس. إن كانت التجزيئات بالفعل\n"
-"مُعرّفة، إمّا من تثبيت سابق لجنو/لينكس أو بواسطة\n"
-"أداة أخرى، يمكن أن تستخدم التجزيئات الحاليّة . وإلا، يجب أن تُعَرَّف\n"
-"تجزيئات القرص الصّلب.\n"
-"\n"
-"لإنشاء التجزيئات، يجب أوّلاً يجب أن تختار قرص صلب. يمكن أن تختار\n"
-"قرص للتّجزئة بالضّغط على ''hda'' لقرص IDE الأوّل،\n"
-"\"hdb\" للثّاني، \"sda\" لقرص SCSI الأوّل وهكذا.\n"
-"\n"
-"لتقوم بتجزئة القرص الصّلب المحدّد، يمكنك استخدام هذه الخيارات:\n"
-"\n"
-" * \"%s\": هذا الخيار يحذف كل التجزيئات على القرص الصّلب المحدّد\n"
-"\n"
-" * \"%s\": هذا الخيار يمكّنك من إنشاء تجزيئات ext3 والذّاكرة البديلة آليّاً\n"
-"في المساحة الشّاغرة لقرصك الصّلب\n"
-"\n"
-" * %s: يعطي حقّ الوصول إلى مزايا إضافيّة:\n"
-"\n"
-" * \"%s\": يحفظ جدول التجزئة إلى قرص مرن. مفيد لاسترجاع لاحق\n"
-"لجدول التجزئة إن كان ضروريّاً. من المُستحسن جداً\n"
-"أن تقوم بهذه الخطوة.\n"
-"\n"
-" * %s: يسمح لك باستعادة جدول تجزئة محفوظ مسبقاً من\n"
-"قرص مرن.\n"
-"\n"
-" * \" %s\": إن كان جدول التّجزئة معطوباً، يمكنك محاولة استعادته\n"
-"باستخدام هذا الخيار. رجاءً كن على حذر وتذكّر أنّه لا\n"
-"يعمل دائماً.\n"
-"\n"
-" * \"%s\": يتجاهل كلّ التّغييرات ويعيد تحميل جدول التّجزئة الذي كان\n"
-"أصلاً على القرص الصّلب.\n"
-"\n"
-" * \"%s\": إزالة اختيار هذا الخيار سيجبر المستخدمين على القيام يدويّاً بتجهيز "
-"و\n"
-"فكّ الوسائط القابلة للإزالة كالأقراص المرنة والمدمجة.\n"
-"\n"
-" * \"%s\": استخدم هذا الخيار إن رغبت في استخدام المرشد لتجزئة\n"
-"قرصك الصّلب. هذا مستحسن إن لم يكن لديك فهم جيّد\n"
-"للتّجزئة.\n"
-"\n"
-" * \"%s\": استخدم هذا الخيار لإلغاء تغييراتك.\n"
-"\n"
-" * \"%s\": يوفّر أعمالاً إضافيّة على التجزيئات )النّوع، الخيارات، التّنسيق(\n"
-"ويعطيك المزيد من المعلومات حول القرص الصّلب.\n"
-"\n"
-" * \"%s\": عندما تنتهي من تجزئة قرصك الصّلب، سوف يقوم هذا\n"
-"بحفظ تغييرات إلى القرص.\n"
-"\n"
-"عند تحديد الحجم لتجزيء ما، يمكنك تحديد حجم التّجزيء بدقّة\n"
-"باستخدام مفاتيح الأسهم للوحة مفاتيحك.\n"
-"\n"
-"ملاحظة: يمكنك الوصول إلى أيّ خيار باستخدام لوحة المفاتيح. تنقّل بين\n"
-"التجزيئات باستخدام [TAB] وأسهم أعلى/أسفل.\n"
-"\n"
-"عندما تُحدّد تجزيءً، يمكنك استخدام:\n"
-"\n"
-" * Ctrl-c لإنشاء تجزيء جديد )عندما يكون تجزيء فارغ مُحدّد(.\n"
-"\n"
-" * Ctrl-d لحذف تجزيء\n"
-"\n"
-" * Ctrl-m لتحدّد مكان التركيب.\n"
-"\n"
-"لتحصل على معلومات حول أنواع أنظمة الملفّات المختلفة المتوفّرة، رجاءً\n"
-"اقرا فَصْل ext2FS من ``الدّليل المرجعي``.\n"
-"\n"
-"إن كنت تقوم بالتّثبيت على ماكينة PPC، ستحتاج أن تنشئ تجزيء HFS\n"
-"``bootstrap`` صغير بحجم 1 ميجابايت على الأقلّ والذي سيستخدم بواسطة مُحمّل "
-"الإقلاع yaboot.\n"
-"إن اخترت أن تجعل التجزيء أكبر قليلاً، لنقل 50 ميجابايت، قد تجده\n"
-"مفيد لتخزين نواة احتياطية وصور ramdisk من أجل\n"
-"أوضاع الإقلاع الطّارئة."
-
-#: help.pm:531
-#, c-format
-msgid "Removable media auto-mounting"
-msgstr "التركيب الآلي للوسائط القابلة للإزالة"
-
-#: help.pm:531
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "التغيير إلى الوضع العادي/وضع الخبير"
-
-#: help.pm:534
-#, c-format
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandriva Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"تمّ اكتشاف أكثر من تجزيء ميكروسوفت على قرصك الصّلب.\n"
-"رجاء اختيار القرص الذي تريد تغيير حجمه كي تتثبيت\n"
-"نظام تشغيل ماندريبا لينكس الجديد.\n"
-"\n"
-"كل تجزيء مُسرد كما يلي: \"اسم لينكس\"، \"اسم ويندوز\"\n"
-"\"الكثافة\".\n"
-"\n"
-"\"اسم لينكس\" مركّب: \"نوع القرص الصلب\"، \"رقم القرص الصلب\"،\n"
-"\"رقم التّجزيء\" (مثلاً، \"hda1\").\n"
-"\n"
-"\"نوع القرص الصلب\" هو \"hd\" إن كان القرص من نوع IDE و\n"
-"\"sd\" إن كان من نوع SCSI.\n"
-"\n"
-"\"رقم القرص الصّلب\" هو دائماً حرف بعد \"hd\" أو \"sd\". لأقراص IDE الصّلبة:\n"
-"\n"
-" * \"a\" يعني \"القرص الصّلب الرّئيسي على مُتحكّم IDE الأوّلي\"؛\n"
-"\n"
-" * \"b\" يعني \"القرص الصّلب الثّانوي على مُتحكّم IDE الأوّلي\"؛\n"
-"\n"
-" * \"c\" يعني \"القرص الصّلب الرّئيسي على مُتحكّم IDE الثّانوي\"؛\n"
-"\n"
-" * \"d\" يعني \"القرص الصّلب الثّانوي على مُتحكّم IDE الثّانوي\"؛\n"
-"\n"
-"بالنّسبة لأقراص SCSI الصّلبة، \"a\" يعني \"أقلّ رقم تعريف SCSI\"، و\"b\" يعني\n"
-"\"ثاني أقلّ رقم تعريف SCSI\"، إلخ.\n"
-"\n"
-"\"اسم ويندوز\" هو الحرف الخاص بقرصك الصّلب ضمن ويندوز (القرص الأوّل\n"
-"أو التجزيء المسمّى \"C:\")."
-
-#: help.pm:565
-#, c-format
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country is not in "
-"the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-"\"%s\": تأكد من اختيار البلد الحالي. إذا لم تكن في هذا\n"
-"البلد، اضغط على زر \"%s\" و اختر بلداً آخر. إذا لم تكن\n"
-"بلدك في القائمة اضغط زر \"%s\" لإظهار قائمة كاملة\n"
-"بالبلدان."
-
-#: help.pm:570
-#, c-format
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandriva Linux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandriva Linux system. Your current "
-"partitioning\n"
-"scheme and user data will not be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandriva Linux version \"8.1\" is not recommended."
-msgstr ""
-"يتم تنشيط هذه الخطوة فقط إذا عُثر على تجزيء جنو/لينكس موجود\n"
-"على ماكينتك.\n"
-"\n"
-"يحتاج DrakX الآن إلى معرفة ما إذا كنت تريد القيام بتثبيت جديد أو ترقية\n"
-"نظام ماندريبا لينكس الموجود لديك مسبقاً:\n"
-"\n"
-" * \"%s\": في الأغلب، يقوم هذا بإزالة النظام القديم.\n"
-"على أيّ، بناءً على طريقة تجزئتك، يمكنك منع الكتابة على بعض\n"
-"من بياناتك الموجودة مسبقاً (بالطبع الأدلة \"المنزلية\").\n"
-"إن كنت تريد تغيير طريقة تجزئة القرص الصلب، أو تريد تغيير نظام\n"
-"الملفّات، عليك باستخدام هذا الخيار.\n"
-"\n"
-" * \"%s\": صنف التثبيت هذا يسمح لك بتحديث الحزم\n"
-"المثبّتة حاليّاً على نظام ماندريبا لينكس الخاص بك. لن يتم تغيير\n"
-"بياناتك أو تقسيمات القرص الصلب. أغلب\n"
-"خطوات التهيئة الأخرى لا تزال متوفّرة، مثل التثبيت الاعتيادي.\n"
-"\n"
-"استخدام خيار ``الترقية'' يجب أن يعمل بشكل جيد على أنظمة ماندريبا لينكس\n"
-"التي تعمل على إصدار \"8.1\" أو ما بعده. لا ينصح بالترقية\n"
-"من إصدرات ماندريبا لينكس قبل \"8.1\"."
-
-#: help.pm:592
-#, c-format
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
-"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard do not match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
-"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
-"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-"اعتماداً على اللغة التي اخترتها ()، سيقوم DrakX آليّاً\n"
-"باختيار تهيئة لوحة المفاتيح. تحقّق من أنّ\n"
-"الاختيار يناسبك أو اختر توزيعة لوحة مفاتيح أخرى.\n"
-"\n"
-"أيضاً، قد لا تكون لديك لوحة مفاتيح توافق لغتك تماماً:\n"
-"مثلاً ربما تكون سويسريّاً متكلماً للغة الإنجليزية، قد تكون لديك\n"
-"لوحة مفاتيح سويسرية. أو إذا كنت تتكلم الإنجليزية لكنك موجود في كيبك،\n"
-"ربما تجد نفسك في نفس الموقف حيث لا تتطابق لغتك الأم\n"
-"مع لوحة المفاتيح. في الحالتين، ستسمح لك خطوة التثبيت\n"
-"باختيار لوحة مفاتيح مناسبة من القائمة.\n"
-"\n"
-"اضغط زر \"%s\" لعرض قائمة بكل\n"
-"لوحات المفاتيح المدعومة.\n"
-"\n"
-"إذا اخترت لوحة مفاتيح لحروف غير لاتينية، فسيسمح لك\n"
-"الحوار التالي باختيار اختصارات لوحة المفاتيح التي\n"
-"ستبدل وضع لوحة المفاتيح بين الحروف اللاتينية والغير لاتينية."
-
-#: help.pm:610
-#, c-format
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandriva Linux's use of UTF-8 "
-"will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-"الخطوة الأولى هي اختيار اللغة المفضلة.\n"
-"\n"
-"اختيارك للغة المفضلة سيؤثر على برنامج التثبيت،\n"
-"والنظام بشكل عام. أولاً، اختر المنطقة التي\n"
-"تقع فيها، ثم اللغة التي تتحدثها.\n"
-"\n"
-"ضغط زر \"%s\" سيسمح لك باختيار لغات\n"
-"أخرى ليتم تثبيتها على محطة عملك، ومن ثم\n"
-"تثبيت الملفات الخاصة باللغات لوثائق المساعدة والتطبيقات. مثلاً\n"
-"إذا كنت ستستضيف مستخدمين من أسبانيا على ماكينتك، اختر الإنجليزية\n"
-"كلغة افتراضية في العرض الشجري و\"%s\" في القسم المتقدم.\n"
-"\n"
-"حول دعم UTF-8 (يونيكود): يونيكود هي طريقة تشفير محارف جديدة غرضها\n"
-"تغطية كلّ اللّغات الموجودة. مع ذلك فإن دعمها الكامل في جنو/لينكس ما\n"
-"زال قيد التّطوير. لذلك السّبب، سيستخدمها ماندريبا لينكس أو لا يستخدمها\n"
-"بناءً على خيارات المستخدم:\n"
-"\n"
-" * إن اخترت لغة ذات تراث قويّ (اللّغات\n"
-"لاتيني1، والروسيّة، واليابانيّة، والصينيّة، والكوريّة، والتايلنديّة، واليونانيّة، "
-"والتّركيّة،\n"
-"ومعظم لغات iso-8859-2(، فسيستخدم التّشفير التّراثيّ بشكل افتراضي؛\n"
-"\n"
-" * اللّغات الأخرى ستستخدم يونيكود بشكل افتراضيّ؛\n"
-"\n"
-"إن كان هناك حاجة للغتين أو أكثر، وتلك اللّغات لا تستخدم\n"
-"نفس التّشفير، فسيستخدم يونيكود للنّظام بأكمله؛\n"
-"\n"
-" * أخيراً، يُمكن إجبار استخدام يونيكود للنظام بطلب المستخدم بواسطة\n"
-"اختيار الخيار \"%s\" بشكل منفصل والذي\n"
-"اختيرت لغته.\n"
-"\n"
-"لاحظ أنّك غير محدود باختيار لغة إضافيّة واحدة.\n"
-"يمكنك اختيار عدّة لغات، أو حتّى تثبيتها كلّها باختيار مربّع \"%s\".\n"
-"اختيار دعم لغة يعني أن التّرجمات، والخطوط، ومدقّقات\n"
-"الإملاء، إلخ. لتلك اللّغة سوف تكون مثبتة أيضاً.\n"
-"\n"
-"للتبديل بين اللغات المختلفة المثبتة على نظامك، يمكن\n"
-"تشغيل الأمر \"/usr/sbin/localedrake\" كمستخدم \"root\" لتغيير\n"
-"اللّغة المستخدمة من قبل النّظام بأكمله. تشغيل الأمر كمستخدم عاديّ\n"
-"سوف يغيّر فقط إعدادت اللّغة الخاصّة بذلك المستخدم بذاته."
-
-#: help.pm:648
-#, c-format
-msgid "Espanol"
-msgstr "الأسبانية"
-
-#: help.pm:651
-#, c-format
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
-"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-"عادة، لا يواجه DrakX مشاكل في استكشاف عدد الأزرار في\n"
-"الماوس الخاصّة بك. إذا حدث ذلك، يفترض أن لديك ماوس ذات زرّين وسوف\n"
-"يقوم بتهيأتها لمحاكاة الزرّ الثالث. الزرّ الثالث للماوس ذات\n"
-"الزرّين يمكن الحصول على تأثيره بالضّغط على الزرّين الأيسر\n"
-"والأيمن بنفس الوقت. سوف يعرف DrakX تلقائيّاً ما إذا كانت الماوس الخاصّة بك "
-"تستخدم\n"
-"واجهة PS/2، أو متوالية أو USB.\n"
-"\n"
-"في حال كان لديك ماوس ذات ثلاثة أزرار دون عجل، يمكنك اختيار الماوس\n"
-"التي تظهر بإسم \"%s\". سيقوم DrakX بعدها بتهيأت الماوس الخاصّة بك حتّى تستطيع\n"
-"مُحاكاة العجل بها: لتقوم بذلك، اضغط الزرّ الأوسط وحرّك\n"
-"الماوس للأعلى وللأسفل.\n"
-"\n"
-"إن رغبت لسبب ما اختيار نوع ماوس آخر، اخترها\n"
-"من اللائحة المُقدَّمة.\n"
-"\n"
-"يمكنك تحديد المُدخل \"%s\" لاختيار نوع ماوس ``شامل'' والذي\n"
-"سوف يعمل تقريباً مع كل الأنواع.\n"
-"\n"
-"إن اخترت ماوس غير الافتراضيّة، سوف تظهر شاشة\n"
-"اختباريّة. استخدم الأزرار والعجل للتأكّد من أن الإعدادات\n"
-"صحيحة وأنّ الماوس تعمل بشكل صحيح. إن لم تكن الماوس\n"
-"تعمل بشكل جيّد، اضغط مفتاح المسافة أو [الإرجاع] لإلغاء الاختبار و\n"
-"العودة إلى لائحة الخيارات.\n"
-"\n"
-"كثيراً ما يتعذر استكشاف أجهزة الماوس ذات العجلات تلقائيّاً، لذا ستحتاج\n"
-"لاختيار الماوس من القائمة. تأكّد من اختيار التي تطابق\n"
-"المنفذ الذي تتّصل به الماوس الخاصّة بك. بعد اختيار الماوس و\n"
-"الضّغط على الزّرّ \"%s\"، تظهر صورة الماوس على الشّاشة. أدرْ\n"
-"عجل الماوس للتّأكّد من أنّه مُنشّط بشكل صحيح. أثناء تحريك\n"
-"عجل الماوس، ستراه كذلك يتحرك على الشاشة.\n"
-"قم باختبار الأزرار وتحقق من أن المؤشر يتحرك على الشاشة\n"
-"بينما تقوم بتحريكه حولها."
-
-#: help.pm:682
-#, c-format
-msgid "with Wheel emulation"
-msgstr "بمحاكاة العجلة"
-
-#: help.pm:682
-#, c-format
-msgid "Universal | Any PS/2 & USB mice"
-msgstr "عالمي | أيّ ماوس PS/2 و USB"
-
-#: help.pm:685
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"الرجاء اختيار المنفذ الصحيح. مثلاً لمنفذ \"COM1\" في\n"
-"ويندوز اسمه \"ttys0\" في لينكس."
-
-#: help.pm:689
-#, c-format
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: do not make the password too long or too complicated because "
-"you\n"
-"must be able to remember it!\n"
-"\n"
-"The password will not be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you do not know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-"هذه هي أهم خطوة تتخذها لأمن نظام جنو/لينكس الخاصّ بك:\n"
-"عليك إدخال كلمة مرور المستخدم \"root\". \"Root\" هو\n"
-"مدير النظام والمستخدم الوحيد المخوّل بتحديث النظام، وإضافة المستخدمين،\n"
-"وتغيير تهيئة النظام بشكل عام، الخ. باختصار يمكن للمستخدم \"root\" أن يفعل\n"
-"كل شئ! لذا عليك اختيار كلمة مرور صعبة\n"
-"التّخمين: سيخبرك DrakX إذا كانت كلمة المرور التي تستخدمها سهلة. كما\n"
-"ترى، لست مجبراً على إدخال كلمة مرور، لكننا ننصح بشدة ألا تفعل هذا. جنو/لينكس "
-"مُعرّص لأخطاء المُشغّل كأيّ\n"
-"نظام تشغيل آخر. وحيث أن \"الجذر\" يمكنه تعدي كل الحدود\n"
-"و قد يحذف كل البيانات عن غير قصد بالوصول إلى التجزيئات بلا مبالاة\n"
-"فإنّه من المهمّ أن يكون من الصّعب أن تصبح المستخدم\n"
-"\"root\".\n"
-"\n"
-"يجب أن تكون كلمة المرور خليطاً من الحروف والأرقام كما يجب أن تحتوي\n"
-"على 8 حروف على الأقل. لا تكتب كلمة مرور \"الجذر\" على ورق -- هذا يسهّل\n"
-"اختراق النظام إذا رأى أحد كلمة المرور.\n"
-"\n"
-"نصيحة أخرى -- لا تجعل كلمة المرور طويلة جداً أو معقّدة لأنك يجب أن تكون\n"
-"قادراً على تذكرها!\n"
-"\n"
-"لن يتم عرض كلمة المرور على الشاشة عند كتابتها. لتقليل فرصة حدوث\n"
-"خطأ أثناء الكتابة، ستحتاج إلى إدخال كلمة المرور مرتين.\n"
-"إذا أخطأت في الكتابة في المرتين، فسيجب استخدام كلمة\n"
-"المرور \"الخاطئة\" في المرة الأولى التي ستحاول فيها الاتصال كمستخدم \"جذر"
-"\".\n"
-"\n"
-"إذا أردت أن يكون الوصول إلى هذا الحاسب يتحكّم به\n"
-"خادم مواثقة، اضغط \"%s\".\n"
-"\n"
-"إذا كانت شبكتك تستخدم LDAP، أوNIS، أو خدمات PDC مواثقة نطاق ويندوز، اختر "
-"الخيار المناسب لـ\"%s\". إن لم تعرف أيّها تريد\n"
-"استخدامه، اسأل مدير الشبكة لديك.\n"
-"\n"
-"إذا كانت لديك مشكلة في تذكر كلمات المرور، يمكنك اختيار\n"
-"\"%s\" إذا لم يكن الحاسب الخاص بك متصلاً بالإنترنت،\n"
-"أو أنك تثق في جميع من يستخدمون حاسبك."
-
-#: help.pm:723
-#, c-format
-msgid "authentication"
-msgstr "المواثقة"
-
-#: help.pm:726
-#, c-format
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can not determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" will not install any boot loader. Use this option only if "
-"you\n"
-"know what you're doing."
-msgstr ""
-"محمّل الإقلاع هو برنامج بسيط يشغلّه حاسبك وقت الإقلاع.\n"
-"وهو المسؤول عن بدء تشغيل النظام بأكمله. عادة، يكون\n"
-"تثبيت محمّل الإقلاع آلياً بالكامل. سيقوم DrakX بتحليل قطاع التركيب الخاص "
-"بالقرص\n"
-"ويتصرف بحسب ما يجد هناك:\n"
-"\n"
-" * إن عثر على قطاع تحميل ويندوز، فسيقوم باستبداله بقطاع تحميل LILO/GRUB.\n"
-"بهذه الطريقة ستستطيع تحميل جنو/لينكس أو أيّ\n"
-"نظام تشغيل آخر على ماكينتك.\n"
-"\n"
-" * إذا تم العثور على قطاع تحميل LILO أو GRUB، سيتم استبداله بقطاع جديد.\n"
-"\n"
-"إن لم يستطع DrakX أن يقرر مكان وضع قطاع الإقلاع، فسيسألك\n"
-"عن المكان الأكثر أماناً لوضعه فيه. عامة، \"%s\" هو الأكثر أماناً.\n"
-"اختيار \"%s\" لن يقوم بتثبيت أيّ محمّل إقلاع. اسخدم هذا الخيار فقط\n"
-"إن كنت تعرف ماذا تفعل."
-
-#: help.pm:743
-#, c-format
-msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you do not like your printing\n"
-"system you may change it by running PrinterDrake from the Mandriva Linux\n"
-"Control Center and clicking on the \"%s\" button."
-msgstr ""
-"الآن، حان وقت اختيار نظام الطباعة لحاسبك. قد توفّر أنظمة التشغيل الأخرى\n"
-"نظام طباعة واحد، لكن ماندريبا لينكس يوفر لك نظامين. كل نظام مناسب\n"
-"لنوع معين من التهيئة.\n"
-"\n"
-" * \"%s\" -- وهو اختصار لـ``اطبع و لا تصفّ''، هو الخيار الأمثل\n"
-"إذا كانت لديك وصلة مباشرة بالطابعة، و تريد أن تكون قادراً على\n"
-"تفادي أي ارتباك في الطابعة، وليس لديك طابعات شبكيّة.(يقوم \"%s\"\n"
-"بالتعامل مع حالات الشبكة البسيطة ويعيبه البطء عند الاستخدام\n"
-"مع الشبكات). من الأفضل أن تستخدم \"pdq\" إذا.\n"
-"كانت هذه تجربتك الأولى مع جنو/لينكس.\n"
-"\n"
-" * \"%s\" - ``نظام طباعة يونكس الشّائع CUPS''، هو الخيار الأمثل\n"
-"للطباعة على طابعتك المحلية أو حتى على طابعة في النصف الآخر من الكوكب. إنه\n"
-"سهل الإعداد و يمكن أن يتصرف كخادم أو كعميل لأنظمة طباعة \"lpd\"\n"
-"القديمة، لذا فإنه متوافق مع أنظمة التشغيل القديمة\n"
-"التي لا تزال تحتاج إلى خدمات الطباعة. بينما التهيئة سهلة\n"
-"و قوية مثل \"pdq\". إذا كنت تحتاج إلى محاكاة خادم \"lpd\"، تأكّد\n"
-"من تشغيل عفريت \"cups-lpd\".\n"
-"يحتوي \"%s\" على واجهات\n"
-"رسوميّة للطّباعة أو لتحديد خيارات الطّابعة\n"
-"ولإدارة الطابعة.\n"
-"\n"
-"إذا قررت اختيارك الآن، ثم لم يعجبك نظام الطباعة\n"
-"فيما بعد، يمكنك تغييره عن طريق تشغيل PrinterDrake من مركز تحكم ماندريبا "
-"لينكس\n"
-"و الضغط على زرّ \"%s\"."
-
-#: help.pm:766
-#, c-format
-msgid "pdq"
-msgstr "pdq"
-
-#: help.pm:766 printer/cups.pm:117 printer/data.pm:129
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
-
-#: help.pm:766
-#, c-format
-msgid "Expert"
-msgstr "وضعية الخبير"
-
-#: help.pm:769
-#, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"سيقوم DrakX أولاً بالتحقق من أي أجهزة IDE مرتبطة بالحاسب. سيقوم\n"
-"أيضا بالتحقق من وجود بطاقات PCI SCSI على نظامك. إذا تم ايجاد\n"
-"بطاقة SCSI، سيقوم DrakX تلقائياً بتثبيت المُشغّل المناسب.\n"
-"\n"
-"لأن التحقق الآلي من العتاد غير خالي من الأخطاء، قد يتعذر\n"
-"على DrakX التحقق من أقراصك الصلبة. لذا سيكون عليك تحديد عتادك يدوياً.\n"
-"\n"
-"إذا اضطررت إلى تحديد موائم PCI SCSI يدوياً، سيسألك DrakX عمّا إذا\n"
-"كنت تريد تهيئة الخيارات الخاصة به. يجب أن تسمح لـ DrakX بأن\n"
-"يقوم بالتحقق الآلي من العتاد لكي يحدد الخيارات الخاصة بالبطاقة\n"
-"و التي يحتاج اليها لتشغيل الموائم. في أغلب الأحيان، سيتخطى DrakX\n"
-"هذه الخطوة بدون أي مشاكل.\n"
-"\n"
-"إذا تعذر على DrakX التحقق من الخيارات آلياً ستحتاج\n"
-"إلى تهيئة المُشغّل يدوياً."
-
-#: help.pm:787
-#, c-format
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-"\"%s\": إذا تم اكتشاف بطاقة صوت على نظامك، سيتم عرضها\n"
-"هنا. إذا لاحظت أن بطاقة الصوت المعروضة هنا ليست تلك الموجودة\n"
-"فعلاً على نظامك، يمكنك الضغط على الزر و اختيار مشغل\n"
-"آخر."
-
-#: help.pm:789 help.pm:856 install_steps_interactive.pm:991
-#: install_steps_interactive.pm:1008
-#, c-format
-msgid "Sound card"
-msgstr "بطاقة الصوت"
-
-#: help.pm:792
-#, c-format
-msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"is not in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it is not\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandriva Linux Control Center after the installation has finished to "
-"benefit\n"
-"from full in-line help.\n"
-"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandriva Linux Control Center.\n"
-"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-"كمُراجعة، سيقدّم DrakX تلخيص المعلومات التي استجمعها حول\n"
-"نظامك. بناءً على عتادك المثبت، قد يكون لديك بعض أو كلّ\n"
-"المُدخلات التّالية. كل مُدخل مكوّن من عنصر التهيئة المطلوب\n"
-"تهيئته، متبوعاً بملخّص سريع من التّهيئة الحاليّة.\n"
-"اضغط على الزّر المرافق \"%s\" لتغييّر ذلك.\n"
-"\n"
-"* \"%s\": تحقّق من تهيئة خريطة لوحة المفاتيح الحاليّة وغيّرها إن كان\n"
-"ضروريّاً.\n"
-"\n"
-" * \"%s\": تحقّق من اختيار الدّولة الحالي. إن لم تكن في هذه\n"
-"الدّولة، اضغط على زرّ \"%s\" واختر دولة أخرى. إن لم تكن دولتك\n"
-"في القائمة المعروضة الأولى، اضغط على الزّر \"%s\" لتحصل على لائحة\n"
-"الدّول الكاملة.\n"
-"\n"
-" * \"%s\": بشكل افتراضي، يخفّض DrakX توقيتك الزّمني بناءً على الدّولة\n"
-"التي اخترتها. يمكنك الضّغط على الزّر \"%s\" هنا إن لم يكن ذلك\n"
-"صحيحاً.\n"
-"\n"
-" * \"%s\": تحقّق من تهيئة الماوس الحاليّة واضغط على الزّر كي\n"
-"تغيّرها إن كان ضروريّاً.\n"
-"\n"
-" * \"%s\": الضّغط على الزّر \"%s\" سيفتح\n"
-"معالج تهيئة الطّابعة. راجع الفصل المتعلّق من ``دليل\n"
-"المبتدئ'' للمزيد من المعلومات حول كيفيّة تهيئة طابعة جديدة. الواجهة\n"
-"المعروضة هناك مشابهة للتي هي مستخدمة خلال التّثبيت.\n"
-"\n"
-" * \"%s\": إن اكتشف بطاقة صوت في نظامك، سوف تُعرض\n"
-"هنا. إن لاحظت أنّ بطاقة الصّوت المعروضة ليست هي التّي\n"
-"فعليّاً موجودة في نظامك، يمكنك الضّغط على الزّر واختيار\n"
-"مشغّل آخر.\n"
-"\n"
-" * \"%s\": إن كانت لديك بطاقة تلفزيون على نظامك، يتمّ عرضها\n"
-"هنا وإن كانت لديك ولم تُكتشف،\n"
-"اضغط على \"%s\" تحاول تهيئتها يدوياً.\n"
-"\n"
-" * \"%s\": يمكنك الضغط على \"%s\" كي تُغيّر المُعطيات المرتبطة\n"
-"مع البطاقة إن شعرت بخطأ ما في التهيئة.\n"
-"\n"
-" * \"%s\": بشكل افتراضي، يهيّء DrakX واجهتك الرّسوميّة\n"
-"بدقّة \"800×600\" أو \"1024×768\". إن لم يناسبك ذلك، اضغط على\n"
-"\"%s\" كي تهيّء واجهتك الرّسوميّة.\n"
-"\n"
-"\n"
-" * \"%s\": إن رغبت بتهيئة الوصول إلى الإنترنت والشّبكة المحل، فيمكنك عمل ذلك "
-"الآن. راجع الكتيّبات المطبوعة أو\n"
-"استخدم مركز تحكّم ماندريبا لينكس بعض الانتهاء من التثبيت كي تستفيد\n"
-"من المساعدة المُدرجة بالكامل.\n"
-"\n"
-" * \"%s\": يمكنك من تهيئة عناوين بروكسي HTTP و FTP إن كانت الماكينة التي\n"
-"تقوم بالتثبيت عليها واقعة خلف خادم بروكسي.\n"
-"\n"
-" * \"%s\": هذا المُدخل يمكنّك من إعادة تعريف مستوى الأمن كما هو محدّد في\n"
-"الخطوة السّابقة ().\n"
-"\n"
-" * \"%s\": إن كنت تنوي وصل ماكينتك إلى الإنترنت، فإنّها لفكرة جيّدة\n"
-"أن تحمي نفسك من التّدخّلات الخارجيّة بإعداد جدار ناريّ. راجع\n"
-"الفصل المتعلّق من ``دليل المبتدئ'' لتفاصل\n"
-"إعدادات الجدار النّاري.\n"
-"\n"
-" * \"%s\": إن رغبت بتغيير تهيئة محمّل الإقلاع، اضغط ذلك\n"
-"الزّر. يجب أن يُحتفظ بهذا للمستخدمين المُتقدّم راجع الكتيبات المطبوعة أو "
-"المساعدة المضمنة حول تهيئة محمل الإقلاع من خلال\n"
-"مركز تحكم ماندريبا لينكس.\n"
-"\n"
-" * \"%s\": سيمكنك هذا من ضبط التّحكّم بالخدمات التي سوف تشغّل\n"
-"على ماكينتك. إن نويت استخدام هذه الماكنية كخادم فإنّها لفكرة جيّدة\n"
-"أن تُراجع هذه الخطوة."
-
-#: help.pm:856 install_steps_interactive.pm:855
-#: install_steps_interactive.pm:950 standalone/drakclock:100
-#: standalone/finish-install:56 standalone/finish-install:57
-#, c-format
-msgid "Timezone"
-msgstr "المنطقة الزمنية"
-
-#: help.pm:856 install_steps_interactive.pm:1024
-#, c-format
-msgid "TV card"
-msgstr "بطاقة التلفاز"
-
-#: help.pm:856
-#, c-format
-msgid "ISDN card"
-msgstr "بطاقة ISDN"
-
-#: help.pm:856
-#, c-format
-msgid "Graphical Interface"
-msgstr "الواجهة الرسومية"
-
-#: help.pm:856 install_any.pm:1733 install_steps_interactive.pm:1042
-#: standalone/drakbackup:2051
-#, c-format
-msgid "Network"
-msgstr "الشبكة"
-
-#: help.pm:856 install_steps_interactive.pm:1054
-#, c-format
-msgid "Proxies"
-msgstr "البروكسيات"
-
-#: help.pm:856 install_steps_interactive.pm:1065
-#, c-format
-msgid "Security Level"
-msgstr "مستوى الأمن"
-
-#: help.pm:856 install_steps_interactive.pm:1079 network/drakfirewall.pm:189
-#, c-format
-msgid "Firewall"
-msgstr "جدار ناري"
-
-#: help.pm:856 install_steps_interactive.pm:1095
-#, c-format
-msgid "Bootloader"
-msgstr "محمّل الإقلاع"
-
-#: help.pm:856 install_steps_interactive.pm:1108 services.pm:114
-#: services.pm:157 services.pm:193
-#, c-format
-msgid "Services"
-msgstr "الخدمات"
-
-#: help.pm:859
-#, c-format
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"اختر القرص الصلب الذي تريد محوه لتثبيت تجزيء\n"
-"ماندريبا لينكس الجديدة. خذ حذرك، كل البيانات الموجود عليه ستضيع\n"
-"و لن يمكن استعادتها!"
-
-#: help.pm:864
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-"اضغط \"%s\" إن كنت تريد حذف كل التجزيئات الموجودة على القرص\n"
-"الصلب. خذ حذرك، بعد ضغطك لزر \"%s\" لن تتمكن من استعادة\n"
-"أي بيانات أو تجزئات كانت موجودة على هذا القرص الصلب، بما في ذلك\n"
-"أي بيانات ويندوز.\n"
-"\n"
-"اضغط \"%s\" لإيقاف هذه العملية دون خسارة أي بيانات أو تجزيئات\n"
-"موجودة على القرص الصلب."
-
-#: help.pm:870
-#, c-format
-msgid "Next ->"
-msgstr "التالي ->"
-
-#: help.pm:870
-#, c-format
-msgid "<- Previous"
-msgstr "<- السابق "
-
-#: install2.pm:115
-#, c-format
-msgid ""
-"Can not access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"تعذر الوصول إلى وحدات النواة الخاصة بنواة النظام (الملف %s مفقود)، بشكل عام "
-"يعني هذا أن قرص الإقلاع المرن ليس محدّثاً مع وسيط التثبيت (فضلاً قم بإنشاء قرص "
-"اقلاع جديد)"
-
-#: install2.pm:167
-#, c-format
-msgid "You must also format %s"
-msgstr "عليك أيضا تنسيق %s"
-
-#: install_any.pm:406
-#, c-format
-msgid "Do you have further supplementary media?"
-msgstr "هل لديك أوساط إضافيّة أخرى؟"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:409
-#, c-format
-msgid ""
-"The following media have been found and will be used during install: %s.\n"
-"\n"
-"\n"
-"Do you have a supplementary installation medium to configure?"
-msgstr ""
-
-#: install_any.pm:422 printer/printerdrake.pm:3211
-#: printer/printerdrake.pm:3218 standalone/scannerdrake:182
-#: standalone/scannerdrake:190 standalone/scannerdrake:241
-#: standalone/scannerdrake:248
-#, c-format
-msgid "CD-ROM"
-msgstr "القرص المدمج"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (HTTP)"
-msgstr "الشبكة (HTTP)"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (FTP)"
-msgstr "الشبكة (FTP)"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (NFS)"
-msgstr ""
-
-#: install_any.pm:452
-#, c-format
-msgid "Insert the CD 1 again"
-msgstr "أدخل القرص المدمج 1 مجدّدا"
-
-#
-#: install_any.pm:478 network/netconnect.pm:866 standalone/drakbackup:114
-#, c-format
-msgid "No device found"
-msgstr "لم يُعثر على أي جهاز"
-
-#: install_any.pm:483
-#, c-format
-msgid "Insert the CD"
-msgstr "أدخل القرص المدمج"
-
-#: install_any.pm:488
-#, c-format
-msgid "Unable to mount CD-ROM"
-msgstr "تعذّر تجهيز القرص المدمج"
-
-#: install_any.pm:521 install_any.pm:542
-#, c-format
-msgid "URL of the mirror?"
-msgstr "عنوان URL للمرآة؟"
-
-#: install_any.pm:526
-#, c-format
-msgid "NFS setup"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "Please enter the hostname and directory of your NFS media"
-msgstr ""
-
-#: install_any.pm:527
-#, c-format
-msgid "Hostname of the NFS mount ?"
-msgstr ""
-
-#: install_any.pm:527 standalone/draknfs:288
-#, c-format
-msgid "Directory"
-msgstr "الدليل"
-
-#: install_any.pm:580
-#, c-format
-msgid ""
-"Can't find a package list file on this mirror. Make sure the location is "
-"correct."
-msgstr "لم يمكن العثور على ملف hdlist على هذه المرآة. تأكد من صحة الموقع."
-
-#: install_any.pm:657
-#, c-format
-msgid "Removing packages prior to upgrade..."
-msgstr ""
-
-#: install_any.pm:699
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "التعرف على الحزم المثبتة مسبقاً..."
-
-#: install_any.pm:703
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "البحث عن الحزم التي ستتم ترقيتها..."
-
-#: install_any.pm:781
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done."
-msgstr ""
-"تغيير القرص المدمج !\n"
-"من فضلك أدخل القرص المدمج المسّمى \"%s\" في السواقة واضغط على موافق عندما "
-"تنتهي."
-
-#: install_any.pm:793
-#, c-format
-msgid "Copying in progress"
-msgstr "جاري النسخ"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:935
-#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They do not have any known security\n"
-"issues, but some new ones could be found. In that case, you must make sure\n"
-"to upgrade as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"لقد اخترت الخادمات التالية: %s\n"
-"\n"
-"\n"
-"هذه الخادمات مُنشّطة افتراضياً، و لا يوجد لهم مشاكل أمنية\n"
-"معروفة، و لكن قد تكتشف بعض المشاكل الجديدة. في هذه الحالة، تأكد من أن\n"
-"تقوم بالترقية في أقرب وقت ممكن.\n"
-"\n"
-"\n"
-"هل أنت متأكد أنك تريد تثبيت هذه الخادمات الآن؟\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:958
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-"سيتم حذف هذه الحزم لكي تتم ترقية النظام: %s\n"
-"\n"
-"\n"
-"هل تريد حذف هذه الحزم فعلاً؟\n"
-
-#: install_any.pm:1394 partition_table.pm:597
-#, c-format
-msgid "Error reading file %s"
-msgstr "خطأ في قراءة الملف %s"
-
-#: install_any.pm:1628
-#, c-format
-msgid "The following disk(s) were renamed:"
-msgstr "تمّ تغيير أسماء القرص التّالي أو الأقراص التّالية:"
-
-#: install_any.pm:1630
-#, c-format
-msgid "%s (previously named as %s)"
-msgstr "%s (المسمّى %s سابقاً)"
-
-#: install_any.pm:1670
-#, 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 ""
-"لقد ظهر خطأ - لم يعثر على أجهزة صالحة يمكن إنشاء أنظمة ملفات جديدة عليها. "
-"تأكد من العتاد الخاص بك لمعرفة سبب هذه المشكلة"
-
-#: install_any.pm:1714
-#, c-format
-msgid "HTTP"
-msgstr "HTTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "FTP"
-msgstr "FTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "NFS"
-msgstr "NFS"
-
-#: install_any.pm:1737
-#, c-format
-msgid "Please choose a media"
-msgstr "الرجاء اختيار وسط"
-
-#: install_any.pm:1753
-#, c-format
-msgid "File already exists. Overwrite it?"
-msgstr "الملف موجود مسبقاً. هل تريد الكتابة عليه؟"
-
-#: install_any.pm:1757
-#, c-format
-msgid "Permission denied"
-msgstr "غير مسموح لك بذلك"
-
-#: install_any.pm:1806
-#, c-format
-msgid "Bad NFS name"
-msgstr ""
-
-#: install_any.pm:1827
-#, c-format
-msgid "Bad media %s"
-msgstr "الوسط %s سيء"
-
-#: install_any.pm:1877
-#, c-format
-msgid "Can not make screenshots before partitioning"
-msgstr "لا يمكنني عمل لقطات للشاشة قبل التجزئة"
-
-#: install_any.pm:1884
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "ستكون لقطات الشاشة موجودة بعد التثبيت في %s"
-
-#: install_gtk.pm:136
-#, c-format
-msgid "System installation"
-msgstr "تثبيت النظام"
-
-#: install_gtk.pm:139
-#, c-format
-msgid "System configuration"
-msgstr "تهيئة النظام"
-
-#: install_interactive.pm:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"بعض العتاد الموجود على جهازك يحتاج إلى مشغلات ``تجارية'' كي تعمل.\n"
-"يمكنك ايجاد مزيد من المعلومات عنها في: %s"
-
-#: install_interactive.pm:63
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"يجب أن تكون لديك تجزيء جذرية.\n"
-"لهذا الغرض انشئ تجزيء (أو اضغط على تجزيء موجودة).\n"
-"ثم اختر ``مكان التركيب'' و اجعله `/'"
-
-#: install_interactive.pm:68
-#, c-format
-msgid ""
-"You do not have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"ليست لديك تجزيء تبديل.\n"
-"\n"
-"هل تريد المتابعة على أي حال؟"
-
-#: install_interactive.pm:71 install_steps.pm:215
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "لديك تجزيء FAT تم تحميلها على /boot/efi"
-
-#: install_interactive.pm:98
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "لا توجد مساحة فارغة لعمل التجزيئات الجديدة"
-
-#: install_interactive.pm:106
-#, c-format
-msgid "Use existing partitions"
-msgstr "استخدم التجزيئات الموجودة"
-
-#: install_interactive.pm:108
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "لا يوجد تجزيء لاستخدامه"
-
-#: install_interactive.pm:115
-#, c-format
-msgid "Use the Microsoft Windows® partition for loopback"
-msgstr "استخدم تجزيء ويندوز كـloopback"
-
-#: install_interactive.pm:118
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "أي تجزيء تريد استخدامه من أجل Linux4Win"
-
-#: install_interactive.pm:120
-#, c-format
-msgid "Choose the sizes"
-msgstr "اختيار الأحجام"
-
-#: install_interactive.pm:121
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "حجم التجزيء الجذري بالميغابايت:"
-
-#: install_interactive.pm:122
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "حجم تجزيء التبديل بالميغابايت:"
-
-#: install_interactive.pm:131
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr "لا يوجد تجزيء FAT لاستخدامه كـloopback )أو لا توجد مساحة كافية متبقية)"
-
-#: install_interactive.pm:140
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "أي تجزيء تريد تغيير حجمه؟"
-
-#: install_interactive.pm:154
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occurred: %s"
-msgstr ""
-"لم تتمكن أداة تغيير حجم FAT من التعامل مع تجزيئك، \n"
-"ظهر الخطأ التالي: %s"
-
-#: install_interactive.pm:157
-#, c-format
-msgid "Computing the size of the Microsoft Windows® partition"
-msgstr "جاري حساب مساحة تجزيء ويندوز"
-
-#: install_interactive.pm:164
-#, c-format
-msgid ""
-"Your Microsoft Windows® partition is too fragmented. Please reboot your "
-"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
-"the Mandriva Linux installation."
-msgstr ""
-"تجزيء ويندوز الخاصّ بك كثير التجزّئات. رجاء أعد تشغيل جهازك إلى ويندوز، شغّل "
-"أداة ``defrag''، ثمّ أعد بدْء تثبيت ماندريبا لينكس."
-
-#: install_interactive.pm:167
-#, c-format
-msgid ""
-"WARNING!\n"
-"\n"
-"\n"
-"Your Microsoft Windows® partition will be now resized.\n"
-"\n"
-"\n"
-"Be careful: this operation is dangerous. If you have not already done so, "
-"you first need to exit the installation, run \"chkdsk c:\" from a Command "
-"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
-"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
-"optionally run defrag, then restart the installation. You should also backup "
-"your data.\n"
-"\n"
-"\n"
-"When sure, press %s."
-msgstr ""
-"تحذير!\n"
-"\n"
-"DrakX سيقوم الآن بتغيير حجم تجزيء ويندوز.\n"
-"\n"
-"\n"
-"كن حذراً: هذه العملية خطرة. فإذا لم تكن فعلت ذلك، يجب عليك أولاً الخروج من "
-"التثبيت، ثم تشغيل \"scandisk c:\" من سطر الأوامر في ويندوز (احذر، تشغيل "
-"البرنامج الرّسومي \"scandisk\" غير كافي، تأكّد من استخدام \"chkdsk\" في سطر "
-"الأوامر!)، اختياريّاً شغّل defrag، ثمّ أعد بدء التثبيت. يجب عليك كذلك عمل نسخة "
-"احتياطية من بياناتك. \n"
-"\n"
-"\n"
-"عندما تكون متأكداً، اضغط %s."
-
-#: install_interactive.pm:179
-#, c-format
-msgid "Which size do you want to keep for Microsoft Windows® on"
-msgstr "ما حجم المساحة التي تريد إبقائها لويندوز على"
-
-#: install_interactive.pm:180
-#, c-format
-msgid "partition %s"
-msgstr "التجزيء %s"
-
-#: install_interactive.pm:189
-#, c-format
-msgid "Resizing Microsoft Windows® partition"
-msgstr "تغيير حجم تجزيء ويندوز"
-
-#: install_interactive.pm:194
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "فشل تغيير حجم FAT: %s"
-
-#: install_interactive.pm:209
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr "لا توجد تجزيء FAT قابل لتغيير حجمها (أو لا توجد مساحة كافية متبقية)"
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Remove Microsoft Windows®"
-msgstr "حذف ويندوز(TM)"
-
-#: install_interactive.pm:214
-#, fuzzy, c-format
-msgid "Erase and use entire disk"
-msgstr "مسح كل القرص"
-
-#: install_interactive.pm:216
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "لديك أكثر من قرص صلب، في أيهم تريد تثبيت لينكس؟"
-
-#: install_interactive.pm:222
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "كل التجزيئات و بياناتها ستضيع من على السواقة %s"
-
-#: install_interactive.pm:237
-#, c-format
-msgid "Use fdisk"
-msgstr "استخدام fdisk"
-
-#: install_interactive.pm:240
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, do not forget to save using `w'"
-msgstr ""
-"يمكنك الآن تجزئة %s.\n"
-"عندما تنتهي لا تنس الحفظ باستخدام `w'"
-
-#: install_interactive.pm:276
-#, c-format
-msgid "I can not find any room for installing"
-msgstr "لا يمكنني العثور على مساحة فارغة للتثبيت"
-
-#: install_interactive.pm:280
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "عثر معالج التجزئة في DrakX على الحلول التالية:"
-
-#: install_interactive.pm:288
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "فشلت التجزئة: %s"
-
-#: install_interactive.pm:295
-#, c-format
-msgid "Bringing up the network"
-msgstr "جاري تشغيل الشبكة"
-
-#: install_interactive.pm:300
-#, c-format
-msgid "Bringing down the network"
-msgstr "جاري اغلاق الشبكة"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:10
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandriva "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandriva Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. This document is a license agreement "
-"between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you "
-"explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this "
-"License. \n"
-"If you disagree with any portion of the License, you are not allowed to "
-"install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner "
-"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate "
-"your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all "
-"copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Limited Warranty\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
-"be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without "
-"limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties "
-"resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or "
-"inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or "
-"occurrence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
-"COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
-"no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever "
-"(including without \n"
-"limitation damages for loss of business, interruption of business, financial "
-"loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential "
-"loss) arising out \n"
-"of the possession and use of software components or arising out of "
-"downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some "
-"countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong "
-"cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. The GPL License and Related Licenses\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. "
-"Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the "
-"documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. Intellectual Property Rights\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
-"as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
-"Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Governing Laws \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-msgstr ""
-"مقدّمة\n"
-"\n"
-"سيشار إلى نظام التّشغيل ومختلف المكوّنات المتوفّرة في توزيعة ماندريبا لينكس \n"
-" بـ \"المنتجات البرمجيّة\" من هنا وفيما يلي. المنتجات البرمجيّة تحتوي ولكنّها "
-"لا تنحصر في مجموعة البرامج والمناهج والقواعد والوثائق المتعلّقة بنظام "
-"التّشغيل \n"
-"والمكوّنات المختلفة لتوزيعة ماندريبا لينكس.\n"
-"\n"
-"\n"
-"1. اتّفاقيّة التّرخيص\n"
-"\n"
-"يرجى قراءة هذه الوثيقة بتمعّن. هذه الوثيقة هي اتّفاقيّة ترخيص بينك أنت "
-"وماندريبا ش.م. وتطبّق على المنتجات البرمجيّة.\n"
-"تثبيتك أو نسخك أواستعمالك لهذه البرامج بأي شكلٍ من الأشكال يعدّ \n"
-"قبولاً صريحاً وموافقةً كاملةً على الالتزام ببنود وشروط هذه الرّخصة. \n"
-"إن كنت لا توافق على أي جزءٍ من الرّخصة فلا يسمح لك بتثبيت أو نسخ أو استعمال "
-"المنتجات البرمجيّة. أي محاولةٍ لتثبيت أو نسخ أو استعمال المنتجات البرمجيّة بشكلٍ "
-"لا يمتثل \n"
-"لبنود وشروط هذه الرّخصة هي لاغيةٌ وستنهي حقوقك بموجب هذه الرّخصة. \n"
-"بمجرّد انتهاء هذه الرّخصة يتوجّب عليك وعلى الفور محق كافّة النّسخ \n"
-"من المنتجات البرمجيّة.\n"
-"\n"
-"\n"
-"2. محدوديّة الضّمان\n"
-"\n"
-"توفّر المنتجات البرمجيّة والوثائق المرفقة \"كما هي\"، دون أيّ ضمان، ضمن أقصى \n"
-"حدٍّ يسمح به القانون.\n"
-"ماندريبا ش.م. لن تكون مسؤولةً قانونيّاً مهما كانت الظّروف عن أيّة \n"
-"أضرارٍ خاصّةٍ أو عرضيّة أو مباشرةٍ أو غير مباشرة (شاملةً ولكن غير محصورةٍ بأيّة "
-"أضرارٍ ناجمةٍ عن خسارةٍ \n"
-"في الأعمال أو عن انقطاعٍ للأعمال أو عن خسارةٍ ماليّة أو عن رسومٍ قانونيّة أو عن "
-"أيّة عقوباتٍ نتيجة \n"
-"أحكامٍ قضائيّة، أو عن أيّة خسارةٍ أخرى تنجم) نتيجة استعمال أو عدم القدرة على "
-"استعمال المنتجات البرمجيّة حتّى وإن كانت ماندريبا ش.م. على درايةٍ باحتمال وقوع "
-"أضرارٍ \n"
-"كتلك المذكورة.\n"
-"\n"
-"محدوديّة المسؤوليّة المتعلّقة بامتلاك أو استعمال البرمجيّات المحظورة في بعض "
-"الدّول\n"
-"\n"
-"ضمن أقصى حدّ يسمح به القانون لن تكون ماندريبا ش.م. مسؤولةً أو أيٍّ من موزّعيها "
-"مسؤولين قانونيّاً \n"
-"عن أيّة أضرارٍ خاصّةٍ أو عرضيّة أو مباشرةٍ أو غير مباشرة (شاملةً ولكن غير محصورةٍ "
-"بأيّة أضرارٍ ناجمةٍ عن خسارةٍ \n"
-"في الأعمال أو عن انقطاعٍ للأعمال أو عن خسارةٍ ماليّة أو عن رسومٍ قانونيّة أو عن "
-"أيّة عقوباتٍ نتيجة \n"
-"أحكامٍ قضائيّة، أو عن أيّة خسارةٍ أخرى تنجم) ناتجةٍ عن \n"
-"امتلاك أو استعمال مكوّناتٍ برمجيّة أو ناتجةٍ عن تنزيل مكوّناتٍ \n"
-"برمجيّة من أحد مواقع ماندريبا لينكس و كانت تلك المكوّنات البرمجيّة محظورة أو "
-"محدودةً في بعض الدّول بقوانين محلّيّة.\n"
-"محدوديّة المسؤوليّة هذه تنطبق على مكوّنات التّشفير المنيع \n"
-"المرفقة مع المنتجات البرمجيّة ولكن لا تنحصر بها.\n"
-"\n"
-"\n"
-"3. رخصة GPL والرّخص ذات الصّلة\n"
-"\n"
-"المكوّنات البرمجيّة تتألّف من مكوّناتٍ منشأةٍ من قبل عدّة أشخاصٍ أو جهات. في "
-"معظمها \n"
-"هذه المكوّنات خاضعةٌ لبنود وشروط \n"
-"رخصة جنو العامّة، المشار إليها بـ\"GPL\" من هنا وفيما يلي، أو لبنود وشروط رخصٍ "
-"شبيهة. معظم هذه الرّخص تخوّلك أن تستعمل \n"
-"أو تنسخ أو تكيّف أو تعيد توزيع المكوّنات الخاضعة لها. يرجى قراءة بنود وشروط \n"
-"اتّفاقيّة ترخيص كل مكوّن قبل استعمال أي مكوّن. أيّة أسئلة \n"
-"عن رخصة أي مكوّن يجب أن تطرح على مؤلّف المكوّن وليس على ماندريبا.\n"
-"البرامج المطوّرة من قبل ماندريبا ش.م. خاضعة لرخصة GPL. الوثائق المكتوبة من "
-"قبل \n"
-"ماندريبا ش.م. تخضع لرخصةٍ محدّدة. يرجى الرّجوع للوثائق لمزيدٍ \n"
-"من التّفاصيل.\n"
-"\n"
-"\n"
-"4. حقوق الملكيّة الفكريّة\n"
-"\n"
-"كل الحقوق في مكوّنات المنتجات البرمجيّة هي لمؤلّفيها المعنيّين وتحميها \n"
-"قوانين الملكيّة الفكريّة وحقوق النّشر المنطبقة على البرمجيّات.\n"
-"تحتفظ ماندريبا ش.م. بحقّها في تعديل أو تكييف المنتجات البرمجيّة، بحذافيرها \n"
-"أو أجزاء معيّنة منها، بشتّى الطّرق ولسائر الأغراض.\n"
-"\"Mandriva\" و \"Mandriva Linux\" والشّعارات المتعلّقة هي علاماتٌ تجاريّة "
-"لماندريبا ش.م. \n"
-"\n"
-"\n"
-"5. القوانين الحاكمة \n"
-"\n"
-"في حال تجميد أي جزءٍ من هذه الاتّفاقيّة أو اعتباره غير قانونيٍّ أو غير منطبق بحكمٍ "
-"قضائي فإن ذلا الجز يعدء \n"
-"مستثناً من هذا العقد.س تبقى أنت مقيّداً بالأجزاء الأخرى المنطبقة \n"
-"من هذه الاتّفاقيّة.\n"
-"إن بنود وشروط هذه الرّخصة هي خاضعة لقوانين فرنسا.\n"
-"سيفضّل أن تسوّى كافّة الاختصامات المتعلّقة ببنود هذه الرّخصة خارج حكم القضاء. كحلٍّ "
-"أخير \n"
-"سيحوّل الاختصام إلى محاكم القضاء ذات العلاقة في باريس - فرنسا.\n"
-"في حال وجود أي أسئلةٍ عن هذه الوثيقة، يرجى الاتّصال بماندريبا ش.م. \n"
-
-#: install_messages.pm:90
-#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-"تحذير: البرامج الحرّة ليس من الضّروري أن تكون خالية من براءة الاختراع، وبعد "
-"البرامج الحرّة\n"
-"المشمولة قد تكون محميّة ببراءة اختراع مسجّلة في بلدك. مثلاً، MP3 decoders "
-"المشمولة قد تتطلّب رخصة لاستخدامها )انظر\n"
-"http://www.mp3licensing.com للمزيد من التّفاصيل(. إن لم تكن متأكّداً إن كانت \n"
-"براءة الاختراع\n"
-"قد تنطبق عليك، تحقّق من القوانين المحليّة لبلدك."
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:98
-#, c-format
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"تحذير\n"
-"\n"
-"فضلاً اقرأ الشروط أدناه. إذا كنت لا توافق على أي\n"
-"جزء، لن يسمح لك بتثبيت وسيط القرص المدمج التالي. اضغط 'رفض' \n"
-"لمتابعة التثبيت بدون هذه الوسائط.\n"
-"\n"
-"\n"
-"بعض المكونات الموجودة في وسيط القرص المدمج التالي غير محكومة\n"
-"بموجب ترخبص GPL أو الاتفاقيات المماثلة. كل مكون من تلك محكوم\n"
-"بموجب بنود و شروط الترخيص الخاص به تحديداً. \n"
-"فضلاً اقرأ باهتمام و أن تستجيب لهذه التراخيص قبل أن \n"
-"تستخدم أو تعيد توزيع هذه المكونات. \n"
-"مثل هذه التراخيص بشكل عام قد تمنع نقل أو نسخ (باستثناء النسخ الاحتياطي)\n"
-"أو إعادة توزيع أو ممارسة الهندسة العكسية أو فك تركيب أو فك تجميع أو تعديل\n"
-"المكون.\n"
-"أي انتهاك للاتفاقية سيتسبب في انهاء حقوقك تحت الترخيص\n"
-"المحدد بشكل فوري. الا إذا كان الترخيص يعطيك مثل هذه الحقوق.\n"
-"عادة لا يسمح لك بتثبيت هذه البرامج على أكثر من نظام واحد\n"
-"أو تعديله لكي يتم استخدامه على شبكة. في حال شكك فضلاً \n"
-"اتصل بشكل مباشر مع موزع أو مؤلف هذا المكون.\n"
-"النقل إلى طرف ثالث أو نسخ هذه المكونات بما فيه \n"
-"وثائق المساعدة ممنوع عادةً.\n"
-"\n"
-"\n"
-"جميع الحقوق الخاصة بالمكونات الموجودة في وسيط القرص \n"
-"المدمج التالي مملوكة لأصحابها و محمية بموجب قوانين الملكية \n"
-"الفكرية المنطبقة على البرمجيات.\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:131
-#, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press Enter to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandriva "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandriva Linux User's Guide."
-msgstr ""
-"تهانينا، التثبيت قد انتهى.\n"
-"أزل وسيط الإقلاع و اضغط زر الإدخال لإعادة التشغيل.\n"
-"\n"
-"\n"
-"لمعلومات حول الإصلاحات المتوفرة لهذا الإصدار من ماندريبا لينكس،\n"
-"استشر صفحة تصحيح الأخطاء المتوفرة من:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"المعلومات حول تهيئة النظام متوفرة في فصل\n"
-"ما بعد التثبيت في دليل مستخدم ماندريبا الرسمي."
-
-#: install_steps.pm:250
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "نقطة تركيب مكررّة %s"
-
-#: install_steps.pm:482
-#, c-format
-msgid ""
-"Some important packages did not get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
-"\"\n"
-msgstr ""
-"لم يتمّ تثبيت بعض الحزم المهمّة بشكل صحيح.\n"
-"إمّا أن يكون قارئ الأقراص معطوبا أو القرص.\n"
-"إفحص القرص المدمج على حاسب مثبت باستعمال \"rpm -qpl media/main/*.rpm\"\n"
-
-#: install_steps_auto_install.pm:68 install_steps_stdio.pm:27
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "الانتقال للخطوة `%s'\n"
-
-#: install_steps_gtk.pm:181
-#, c-format
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandriva Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"نظامك قليل الموارد. قد تقابل بعض المشاكل قي تثبيت\n"
-"ماندريبا لينكس. إذا حدث ذلك، يمكنك التثبيت في وضع نصي بدلاً من ذلك. لهذا "
-"الغرض،\n"
-"اضغط `F1' عند الإقلاع من القرص المدمج، و اكتب `text'."
-
-#: install_steps_gtk.pm:211 install_steps_interactive.pm:605
-#, c-format
-msgid "Package Group Selection"
-msgstr "اختيار مجموعات الحزم"
-
-#: install_steps_gtk.pm:254 install_steps_interactive.pm:548
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "الحجم الإجمالي: %d / %d م.ب."
-
-#: install_steps_gtk.pm:299
-#, c-format
-msgid "Bad package"
-msgstr "حزمة سيئة"
-
-#: install_steps_gtk.pm:301
-#, c-format
-msgid "Version: "
-msgstr "النسخة:"
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "Size: "
-msgstr "الحجم: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "%d KB\n"
-msgstr "%d ك.ب.\n"
-
-#: install_steps_gtk.pm:303
-#, c-format
-msgid "Importance: "
-msgstr "الأهمية:"
-
-#: install_steps_gtk.pm:336
-#, c-format
-msgid "You can not select/unselect this package"
-msgstr "لا يمكنك اختيار/ازالة اختيار هذه الحزمة"
-
-#: install_steps_gtk.pm:340 network/thirdparty.pm:331
-#, c-format
-msgid "due to missing %s"
-msgstr "بسبب غياب %s"
-
-#: install_steps_gtk.pm:341
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "بسبب عدم إرضاء %s"
-
-#: install_steps_gtk.pm:342
-#, c-format
-msgid "trying to promote %s"
-msgstr "السعي إلى ترويج %s"
-
-#: install_steps_gtk.pm:343
-#, c-format
-msgid "in order to keep %s"
-msgstr "من أجل حفظ %s"
-
-#: install_steps_gtk.pm:348
-#, c-format
-msgid ""
-"You can not select this package as there is not enough space left to install "
-"it"
-msgstr "لا يمكنك اختيار هذه الحزمة لأنه لا يوجد مساحة كافية متبقية لتثبيتها"
-
-#: install_steps_gtk.pm:351
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "سيتم تثبيت الحزم التالية"
-
-#: install_steps_gtk.pm:352
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "سيتم حذف الحزم التالية"
-
-#: install_steps_gtk.pm:376
-#, c-format
-msgid "This is a mandatory package, it can not be unselected"
-msgstr "هذه الحزمة الزامية، لا يمكن عدم اختيارها"
-
-#: install_steps_gtk.pm:378
-#, c-format
-msgid "You can not unselect this package. It is already installed"
-msgstr "لا يمكن إزالة اختيار هذه الحزم. انها مثبتة مسبقاً"
-
-#: install_steps_gtk.pm:381
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"يجب ترقية هذه الحزمة.\n"
-"هل أنت متأكد أنك لا تريد اختيارها؟"
-
-#: install_steps_gtk.pm:384
-#, c-format
-msgid "You can not unselect this package. It must be upgraded"
-msgstr "لا يمكنك إزالة اختيار هذه الحزمة. يجب ترقيتها"
-
-#: install_steps_gtk.pm:389
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "إظهار الحزم المختارة ألياً"
-
-#: install_steps_gtk.pm:394
-#, c-format
-msgid "Load/Save selection"
-msgstr "تحميل/حفظ الاختيار"
-
-#: install_steps_gtk.pm:395
-#, c-format
-msgid "Updating package selection"
-msgstr "تحديث اختيار الحزم"
-
-#: install_steps_gtk.pm:400
-#, c-format
-msgid "Minimal install"
-msgstr "تثبيت مصغّر"
-
-#: install_steps_gtk.pm:414 install_steps_interactive.pm:467
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "اختر الحزم التي تريد تثبيتها"
-
-#: install_steps_gtk.pm:431 install_steps_interactive.pm:691
-#, c-format
-msgid "Installing"
-msgstr "التثبيت"
-
-#: install_steps_gtk.pm:457
-#, c-format
-msgid "No details"
-msgstr "لا تفاصيل"
-
-#: install_steps_gtk.pm:472
-#, c-format
-msgid "Time remaining "
-msgstr "الوقت المتبقي"
-
-#: install_steps_gtk.pm:473
-#, c-format
-msgid "Estimating"
-msgstr "الحساب التقريبي"
-
-#: install_steps_gtk.pm:500
-#, c-format
-msgid "%d packages"
-msgstr "%d حزم"
-
-#: install_steps_gtk.pm:543 install_steps_interactive.pm:719
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"غيّر القرص المدمج !\n"
-"من فضلك أدخل القرص المدمج المسّمى \"%s\" في الّسواقة واضغط على موافق عندما "
-"تنتهي.\n"
-"إن لم يكن القرص لديك، اضغط على إلغاء لتجّنب التثبيت من هذا القرص المدمج."
-
-#: install_steps_gtk.pm:556 install_steps_interactive.pm:730
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "كان هناك خطأ في ترتيب الحزم:"
-
-#: install_steps_gtk.pm:558 install_steps_interactive.pm:734
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "كان هناك خطأ في تثبيت الحزم:"
-
-#: install_steps_gtk.pm:560 install_steps_interactive.pm:730
-#: install_steps_interactive.pm:734
-#, c-format
-msgid "Go on anyway?"
-msgstr "هل تريد المتابعة على أي حال؟"
-
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:910 steps.pm:30
-#, c-format
-msgid "Summary"
-msgstr "ملخص"
-
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:906
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "not configured"
-msgstr "غير مهيّأ"
-
-#: install_steps_gtk.pm:668
-#, c-format
-msgid ""
-"The following installation media have been found.\n"
-"If you want to skip some of them, you can unselect them now."
-msgstr ""
-"تم العثور على وسط التثبيت التالي.\n"
-"إن كنت تريد تخطي بعضها، يمكنك إزالة اختيارها الآن."
-
-#: install_steps_gtk.pm:677
-#, c-format
-msgid ""
-"You have the option to copy the contents of the CDs onto the hard drive "
-"before installation.\n"
-"It will then continue from the hard drive and the packages will remain "
-"available once the system is fully installed."
-msgstr ""
-"لديك الخيار بنسخ محتويات الأقراص المدمجة إلى قرصك الصلب قبل التثبيت.\n"
-"سيكمل التثبيت بعد ذلك من القرص الصلب وستبقى الحزم متوفرة حالما يتم تثبيت "
-"النظام بالكامل."
-
-#: install_steps_gtk.pm:679
-#, c-format
-msgid "Copy whole CDs"
-msgstr "نسخ الأقراص بالكامل"
-
-#: install_steps_interactive.pm:95
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "الرجاء اختيار لوحة المفاتيح."
-
-#: install_steps_interactive.pm:97
-#, c-format
-msgid "Here is the full list of available keyboards"
-msgstr "هذه هي القائمة الكاملة لكلّ لوحات المفاتيح المتوفّرة"
-
-#: install_steps_interactive.pm:127
-#, c-format
-msgid "Install/Upgrade"
-msgstr "تثبيت/ترقية"
-
-#: install_steps_interactive.pm:128
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "هل هذا تثبيت أم ترقية؟"
-
-#: install_steps_interactive.pm:134
-#, c-format
-msgid "Upgrade %s"
-msgstr "ترقية %s"
-
-#: install_steps_interactive.pm:147
-#, c-format
-msgid "Encryption key for %s"
-msgstr "مفتاح التشفير لـ %s"
-
-#: install_steps_interactive.pm:170
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "الرجاء اختيار نوع الماوس."
-
-#: install_steps_interactive.pm:171
-#, c-format
-msgid "Mouse choice"
-msgstr ""
-
-#: install_steps_interactive.pm:180 standalone/mousedrake:46
-#, c-format
-msgid "Mouse Port"
-msgstr "منفذ الماوس"
-
-#: install_steps_interactive.pm:181 standalone/mousedrake:47
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "الرجاء اختيار المنفذ التسلسلي الموصلة به الماوس"
-
-#: install_steps_interactive.pm:191
-#, c-format
-msgid "Buttons emulation"
-msgstr "محاكاة الأزرار"
-
-#: install_steps_interactive.pm:193
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "محاكاة الزر 2"
-
-#: install_steps_interactive.pm:194
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "محاكاة الزر 3"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "جاري تهيئة بطاقات PCMCIA..."
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "Configuring IDE"
-msgstr "جاري تهيئة IDE"
-
-#: install_steps_interactive.pm:242
-#, c-format
-msgid "No partition available"
-msgstr "لا يوجد تجزيء"
-
-#: install_steps_interactive.pm:245
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "جاري عمل مسح للتجزئات لإيجاد أماكن التركيب"
-
-#: install_steps_interactive.pm:252
-#, c-format
-msgid "Choose the mount points"
-msgstr "اختيار أماكن التركيب"
-
-#: install_steps_interactive.pm:300
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"ليس هناك مساحة حرّة لواحد ميجابات من bootstrap! سوف يستمرّ التّثبيت، لكن لإقلاع "
-"نظامك، سوف تحتاج لإنشاء تجزيء bootstrap في DiskDrake"
-
-#: install_steps_interactive.pm:305
-#, c-format
-msgid ""
-"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
-"to boot your system, you'll need to create the bootstrap partition in "
-"DiskDrake"
-msgstr ""
-"تحتاج إلى إنشاء PPC PReP Boot bootstrap! ستكمل عملية التثبيت، ولكن لإقلاع "
-"نظامك، أنت بحاجة إلى إنشاء تجزيء bootstrap من خلال DiskDrake"
-
-#: install_steps_interactive.pm:341
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "اختيار التجزيئات التي تريد تنسيقها"
-
-#: install_steps_interactive.pm:343
-#, c-format
-msgid "Check bad blocks?"
-msgstr "تحقق من الكتل السيئة؟"
-
-#: install_steps_interactive.pm:371
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
-msgstr ""
-"تعذر التأكد من صحة نظام المفات %s. هل تريد تصحيح الأخطاء (كن حذراً، يمكن أن "
-"تخسر بيانات)"
-
-#: install_steps_interactive.pm:374
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "لا توجد مساحة تبديل كافية للقيام بالتثبيت، الرجاء زيادة مساحة التبديل"
-
-#: install_steps_interactive.pm:383
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "البحث عن الحزم المتوفرة وإعادة بناء قاعدة بيانات rpm..."
-
-#: install_steps_interactive.pm:384 install_steps_interactive.pm:436
-#, c-format
-msgid "Looking for available packages..."
-msgstr "العثور على الحزم المتوفرة..."
-
-#: install_steps_interactive.pm:405 install_steps_interactive.pm:810
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "اختيار مرآة سيتم من خلالها تنزيل الحزم"
-
-#: install_steps_interactive.pm:445
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr "لا يوجد في نظامك مساحة متبقة تكفي للتثبيت أو الترقية (%d > %d)"
-
-#: install_steps_interactive.pm:479
-#, c-format
-msgid ""
-"Please choose load or save package selection.\n"
-"The format is the same as auto_install generated files."
-msgstr ""
-"الرجاء اختيار حفظ أو تحميل اختياراتك للحزم.\n"
-"النسق مشابه لملفات التثبيت الآلي المولّدة."
-
-#: install_steps_interactive.pm:481
-#, c-format
-msgid "Load"
-msgstr "تحميل"
-
-#: install_steps_interactive.pm:481 standalone/drakbackup:4083
-#: standalone/drakbackup:4153 standalone/logdrake:175
-#, c-format
-msgid "Save"
-msgstr "حفظ"
-
-#: install_steps_interactive.pm:489
-#, c-format
-msgid "Bad file"
-msgstr "ملف سيء"
-
-#: install_steps_interactive.pm:562
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "الحجم المختار أكبر من المساحة المتوفرة"
-
-#: install_steps_interactive.pm:577
-#, c-format
-msgid "Type of install"
-msgstr "نوع التثبيت"
-
-#: install_steps_interactive.pm:578
-#, c-format
-msgid ""
-"You have not selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"لم تختر أي مجموعة من الحزم.\n"
-"الرجاء اختيار التثبيت المصغر الذي تريده:"
-
-#: install_steps_interactive.pm:582
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "مع وثائق المساعدة الأساسية (مفضّل)"
-
-#: install_steps_interactive.pm:583
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "تثبيت مصغّر فعلاً (خصوصاً بدون urpmi)"
-
-#: install_steps_interactive.pm:622 standalone/drakxtv:52
-#, c-format
-msgid "All"
-msgstr "الكل"
-
-#: install_steps_interactive.pm:661
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"إذا كانت لديك قل الأقراص في القائمة أدناه، اضغط موافق.\n"
-"إذا لم تمكن لديك أي من هذه الأقراص، اضغط إلغاء.\n"
-"إذا كانت بعض هذه الأقراص مفقودة، قم بإزالة اختيارها ثم اضغط موافق."
-
-#: install_steps_interactive.pm:666
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "القرص المدمج المسمى \"%s\""
-
-#: install_steps_interactive.pm:691
-#, c-format
-msgid "Preparing installation"
-msgstr "التحضير للتثبيت"
-
-#: install_steps_interactive.pm:699
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"تثبيت الحزمة %s\n"
-"%d%%"
-
-#: install_steps_interactive.pm:748
-#, c-format
-msgid "Post-install configuration"
-msgstr "تهيئة ما بعد التثبيت"
-
-#: install_steps_interactive.pm:755
-#, c-format
-msgid "Please ensure the Update Modules media is in drive %s"
-msgstr ""
-
-#: install_steps_interactive.pm:783
-#, c-format
-msgid "Updates"
-msgstr "التحديثات"
-
-#: install_steps_interactive.pm:784
-#, c-format
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates?"
-msgstr ""
-"تستطيع الآن تنزيل الحزم المحدّثة. هذه الحزم\n"
-"تم تحديثها بعد اصدار التوزيعة. قد\n"
-"تحتوي على اصلاحات أمنية أو اصلاحات لعيوب برمجية.\n"
-"\n"
-"لتنزيل هذه الحزم، تحتاج إلى أن تكون لديك اتصال \n"
-"بالإنترنت.\n"
-"\n"
-"هل تريد تنزيل هذه التحديثات ؟"
-
-#: install_steps_interactive.pm:805
-#, c-format
-msgid ""
-"Contacting Mandriva Linux web site to get the list of available mirrors..."
-msgstr ""
-"جاري الإتصال بموقع ماندريبا لينكس للحصول على قائمة بالمرايا المتوفرة..."
-
-#: install_steps_interactive.pm:824
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "جاري الإتصال بالمرآة للحصول على قائمة بالحزم المتوفرة..."
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "تعذر الإتصال بالمرآة %s"
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Would you like to try again?"
-msgstr "هل تريد المحاولة مرةً أخرى؟"
-
-#: install_steps_interactive.pm:855 standalone/drakclock:45
-#: standalone/finish-install:56
-#, c-format
-msgid "Which is your timezone?"
-msgstr "ما هي منطقتك الزمنية؟"
-
-#: install_steps_interactive.pm:860
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "تزامن وقت آلي (باستخدام NTP)"
-
-#: install_steps_interactive.pm:868
-#, c-format
-msgid "NTP Server"
-msgstr "خادم NTP"
-
-#: install_steps_interactive.pm:923 install_steps_interactive.pm:931
-#: install_steps_interactive.pm:949 install_steps_interactive.pm:956
-#: install_steps_interactive.pm:1107 services.pm:133
-#: standalone/drakbackup:1596
-#, c-format
-msgid "System"
-msgstr "النظام"
-
-#: install_steps_interactive.pm:963 install_steps_interactive.pm:990
-#: install_steps_interactive.pm:1007 install_steps_interactive.pm:1023
-#: install_steps_interactive.pm:1034
-#, c-format
-msgid "Hardware"
-msgstr "العتاد"
-
-#: install_steps_interactive.pm:969 install_steps_interactive.pm:978
-#, c-format
-msgid "Remote CUPS server"
-msgstr "خادم CUPS بعيد"
-
-#: install_steps_interactive.pm:969
-#, c-format
-msgid "No printer"
-msgstr "لا طابعة"
-
-#: install_steps_interactive.pm:1011
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "هل لديك بطاقة صوت ISA؟"
-
-#: install_steps_interactive.pm:1013
-#, c-format
-msgid ""
-"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
-"card"
-msgstr ""
-"شغّل \"alsaconf\" أو \"sndconfig\" بعد التّثبيت لتهيئة بطاقة الصّوت الخاصّة بك"
-
-#: install_steps_interactive.pm:1015
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr "لم يعثر على بطاقة الصوت. حاول تشغيل \"harddrake\" بعد التثبيت"
-
-#: install_steps_interactive.pm:1035
-#, c-format
-msgid "Graphical interface"
-msgstr "الواجهة الرسومية"
-
-#: install_steps_interactive.pm:1041 install_steps_interactive.pm:1053
-#, c-format
-msgid "Network & Internet"
-msgstr "الشبكة والإنترنت"
-
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "configured"
-msgstr "مُهيّء"
-
-#: install_steps_interactive.pm:1064 install_steps_interactive.pm:1078
-#: security/level.pm:55 steps.pm:20
-#, c-format
-msgid "Security"
-msgstr "الأمن"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "activated"
-msgstr "مُنشّط"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "disabled"
-msgstr "مُعطّل"
-
-#: install_steps_interactive.pm:1094
-#, c-format
-msgid "Boot"
-msgstr "الإقلاع"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1098 printer/printerdrake.pm:961
-#, c-format
-msgid "%s on %s"
-msgstr "%s على %s"
-
-#: install_steps_interactive.pm:1112 services.pm:175
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "الخدمات: %d منشّطة لـ %d مسجلة"
-
-#: install_steps_interactive.pm:1124
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "لم تقم بتهيئة خادم X. هل أنت متأكد أنك تريد ذلك؟"
-
-#: install_steps_interactive.pm:1205
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "جاري تحضير محمّل الإقلاع..."
-
-#: install_steps_interactive.pm:1215
-#, c-format
-msgid ""
-"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
-"will not work for you. The install will continue, but you'll need to use "
-"BootX or some other means to boot your machine. The kernel argument for the "
-"root fs is: root=%s"
-msgstr ""
-"يبدو أن لديك ماكينة مجهولة أو من العالم القديم، ولن يعمل محمل الإقلاع yaboot "
-"مع نظامك. ستكمل عملية التثبيت، ولكنك بحاجة إلى استخدام BootX أو طريقة ما "
-"أخرى لإقلاع نظامك. مُعطى النواة لنظام الملفات الجذر هو: root=%s"
-
-#: install_steps_interactive.pm:1221
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "هل تريد استخدام aboot؟"
-
-#: install_steps_interactive.pm:1224
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"خطأ أثناء تثبيت aboot، \n"
-"حاول الإجبار على التثبيت حتى و لو أدي ذلك لتدمير التجزيء الأول؟"
-
-#: install_steps_interactive.pm:1241
-#, c-format
-msgid ""
-"In this security level, access to the files in the Windows partition is "
-"restricted to the administrator."
-msgstr ""
-"في هذا المستوى الأمني، الوصول إلى الملفّات بتجزيء ويندوز سيكون مقصوراً على "
-"المدير."
-
-#: install_steps_interactive.pm:1270 standalone/drakautoinst:76
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "أدخل قرص مرن فارغ في السواقة %s"
-
-#: install_steps_interactive.pm:1275
-#, c-format
-msgid "Please insert another floppy for drivers disk"
-msgstr "الرجاء إدخال قرص مرن آخر لقرص المشغّلات"
-
-#: install_steps_interactive.pm:1277
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "جاري إنشاء قرص التثبيت الآلي..."
-
-#: install_steps_interactive.pm:1289
-#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"بعض الخطوات لم يتم تكملتها.\n"
-"\n"
-"هل تريد الخروج الآن فعلاً؟"
-
-#: install_steps_interactive.pm:1299 standalone/draksambashare:421
-#: standalone/draksambashare:527 standalone/drakups:118 standalone/drakups:157
-#: standalone/logdrake:451 standalone/logdrake:457
-#, c-format
-msgid "Congratulations"
-msgstr "تهانينا"
-
-#: install_steps_interactive.pm:1307 install_steps_interactive.pm:1308
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "إنشاء قرص تثبيت آلي"
-
-#: install_steps_interactive.pm:1309
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"التثبيت الآلي قد يتم بشكل تلقائي إذا أردت ذلك،\n"
-"في هذه الحالة سيستولي على كل القرص الصلب لديك!!\n"
-"(هذا بالنسبة للتثبيت على جهاز آخر).\n"
-"\n"
-"ربما تفضل إعادة عملية التثبيت.\n"
-
-#: install_steps_newt.pm:20
-#, c-format
-msgid "Mandriva Linux Installation %s"
-msgstr "تثبيت ماندريبا لينكس %s"
-
-#. -PO: This string must fit in a 80-char wide text screen
-#: install_steps_newt.pm:37
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> بين العناصر | <Space> للاختيار | <F12> الشاشة التالية"
+msgid "No"
+msgstr "لا"
-#: interactive.pm:196
+#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "اختيار ملف"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakbackup:1537
-#: standalone/drakfont:649 standalone/drakhosts:242 standalone/draknfs:605
-#: standalone/draksambashare:1127 standalone/drakups:299
-#: standalone/drakups:359 standalone/drakups:379 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Add"
msgstr "إضافة"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakhosts:249
-#: standalone/draknfs:612 standalone/draksambashare:1084
-#: standalone/draksambashare:1137 standalone/draksambashare:1176
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Modify"
msgstr "تعديل"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakfont:732
-#: standalone/drakhosts:256 standalone/draknfs:619
-#: standalone/draksambashare:1085 standalone/draksambashare:1145
-#: standalone/draksambashare:1184 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Remove"
msgstr "حذف"
-#: interactive.pm:398
-#, c-format
-msgid "Basic"
-msgstr "أساسي"
-
-#: interactive.pm:436 interactive/newt.pm:321 ugtk2.pm:490
+#: interactive.pm:538 interactive/curses.pm:217 ugtk2.pm:508
#, c-format
msgid "Finish"
msgstr "انتهاء"
-#: interactive/newt.pm:92
+#: interactive.pm:539 interactive/curses.pm:214 ugtk2.pm:506
#, c-format
-msgid "Do"
-msgstr "تنفيذ"
+msgid "Previous"
+msgstr "السابق "
#: interactive/stdio.pm:29 interactive/stdio.pm:148
#, c-format
@@ -7625,1962 +3337,1205 @@ msgstr ""
msgid "Re-submit"
msgstr "إعادة تسليم"
-#: keyboard.pm:171 keyboard.pm:202
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTZ)"
-msgstr "التشيكية (QWERTZ("
-
-#: keyboard.pm:172 keyboard.pm:204
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German"
-msgstr "الألمانية"
-
-#: keyboard.pm:173
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak"
-msgstr "Dvorak"
-
-#: keyboard.pm:174 keyboard.pm:217
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Spanish"
-msgstr "الأسبانية"
-
-#: keyboard.pm:175 keyboard.pm:218
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Finnish"
-msgstr "الفنلنديّة"
-
-#: keyboard.pm:176 keyboard.pm:220
-#, c-format
-msgid ""
-"_: keyboard\n"
-"French"
-msgstr "الفرنسيّة"
-
-#: keyboard.pm:177 keyboard.pm:264
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Norwegian"
-msgstr "النرويجية"
-
-#: keyboard.pm:178
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish"
-msgstr "البولونيّة"
-
-#: keyboard.pm:179 keyboard.pm:275
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian"
-msgstr "الروسيّة"
-
-#: keyboard.pm:180 keyboard.pm:281
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swedish"
-msgstr "السويديّة"
-
-#: keyboard.pm:181 keyboard.pm:310
-#, c-format
-msgid "UK keyboard"
-msgstr "لوحة المفاتيح البريطانية"
-
-#: keyboard.pm:182 keyboard.pm:313
-#, c-format
-msgid "US keyboard"
-msgstr "لوحة المفاتيح الأمريكية"
-
-#: keyboard.pm:184
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Albanian"
-msgstr "الألبانيّة"
-
-#: keyboard.pm:185
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (old)"
-msgstr "الأرمنية (قديم)"
-
-#: keyboard.pm:186
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (typewriter)"
-msgstr "الأرمنية (آلة كاتبة)"
-
-#: keyboard.pm:187
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (phonetic)"
-msgstr "الأرمنية (صوتي)"
-
-#: keyboard.pm:188
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Arabic"
-msgstr "العربية"
-
-#: keyboard.pm:189
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Azerbaidjani (latin)"
-msgstr "الأذربيجانية (لاتيني)"
-
-#: keyboard.pm:190
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belgian"
-msgstr "البلجيكية"
-
-#: keyboard.pm:191
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Inscript-layout)"
-msgstr "البنغالية (توزيعة Inscript("
-
-#: keyboard.pm:192
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Probhat)"
-msgstr "البنغالية (Probhat("
-
-#: keyboard.pm:193
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (phonetic)"
-msgstr "البلغارية (صوتية)"
-
-#: keyboard.pm:194
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (BDS)"
-msgstr "البلغارية (BDS)"
-
-#: keyboard.pm:195
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Brazilian (ABNT-2)"
-msgstr "البرازيلية (ABNT-2("
-
-#: keyboard.pm:196
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bosnian"
-msgstr "البوسنيّة"
-
-#: keyboard.pm:197
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belarusian"
-msgstr "البيلاروسية"
-
-#: keyboard.pm:198
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (German layout)"
-msgstr "السويسرية (توزيع ألماني)"
-
-#: keyboard.pm:199
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (French layout)"
-msgstr "السويسرية (توزيع فرنسي)"
-
-#: keyboard.pm:201
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Cherokee syllabics"
-msgstr "شيروكي مقطعي"
-
-#: keyboard.pm:203
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTY)"
-msgstr "تشيكيّة (QWERTY("
-
-#: keyboard.pm:205
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German (no dead keys)"
-msgstr "الألمانية (لا مفاتيح ميتة)"
-
-#: keyboard.pm:206
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Devanagari"
-msgstr "ديفانغاري"
-
-#: keyboard.pm:207
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Danish"
-msgstr "الدانمركية"
-
-# U+200F (RTL mark) has been inserted between "Dvorak" and "(US)", so
-# it displays on screen as "(US) Dvorak", following the same schema
-# as others "Dvorak (xxxx)" with xxx in Arabic that display as "(xxxx) Dvorak"
-# that way the entry is also listed together with the other "Dvorak" entries.
-#: keyboard.pm:208
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (US)"
-msgstr "Dvorak (أمريكا("
-
-#: keyboard.pm:209
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Esperanto)"
-msgstr "Dvorak (إسبرانتو("
-
-#: keyboard.pm:210
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (French)"
-msgstr "Dvorak (فرنسيّة("
-
-# U+200F (RTL mark) has been inserted between "Dvorak" and "(US)", so
-# it displays on screen as "(US) Dvorak", following the same schema
-# as others "Dvorak (xxxx)" with xxx in Arabic that display as "(xxxx) Dvorak"
-# that way the entry is also listed together with the other "Dvorak" entries.
-#: keyboard.pm:211
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (UK)"
-msgstr "Dvorak (المملكة المتّحدة("
-
-#: keyboard.pm:212
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Norwegian)"
-msgstr "Dvorak (نرويجيةّ("
-
-#: keyboard.pm:213
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Polish)"
-msgstr "Dvorak (بولنديّة("
-
-#: keyboard.pm:214
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Swedish)"
-msgstr "Dvorak (سويدية("
-
-#: keyboard.pm:215
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dzongkha/Tibetan"
-msgstr "زونخا/تيبتيّة"
-
-#: keyboard.pm:216
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Estonian"
-msgstr "الإستونية"
-
-#: keyboard.pm:219
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Faroese"
-msgstr "فارويّة"
-
-#: keyboard.pm:221
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Russian\" layout)"
-msgstr "الجورجية (التوزيع \"الروسي\")"
-
-#: keyboard.pm:222
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Latin\" layout)"
-msgstr "الجورجيةّ (التوزيع \"اللاتيني\")"
-
-#: keyboard.pm:223
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek"
-msgstr "اليونانيّة"
-
-#: keyboard.pm:224
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek (polytonic)"
-msgstr "يونانية (polytonic("
-
-#: keyboard.pm:225
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gujarati"
-msgstr "غوجاراتي"
-
-#: keyboard.pm:226
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gurmukhi"
-msgstr "غورموكهي"
-
-#: keyboard.pm:227
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Croatian"
-msgstr "الكرواتيّة"
-
-#: keyboard.pm:228
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Hungarian"
-msgstr "الهنغاريّة"
-
-#: keyboard.pm:229
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Irish"
-msgstr "الايرلندية"
-
-#: keyboard.pm:230
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli"
-msgstr "العبريّة"
-
-#: keyboard.pm:231
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli (phonetic)"
-msgstr "العبرية (صوتية)"
-
-#: keyboard.pm:232
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Iranian"
-msgstr "الفارسيّة"
-
-#: keyboard.pm:233
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Icelandic"
-msgstr "الآيسلاندية"
-
-#: keyboard.pm:234
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Italian"
-msgstr "الإيطاليّة"
-
-#: keyboard.pm:235
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Inuktitut"
-msgstr "اينوكتيتوت"
-
-#: keyboard.pm:239
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Japanese 106 keys"
-msgstr "اليابانية 106 مفاتيح"
-
-#: keyboard.pm:240
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kannada"
-msgstr "كنّادا"
-
-#: keyboard.pm:243
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Korean"
-msgstr "الكوريّة"
-
-#: keyboard.pm:245
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kurdish (arabic script)"
-msgstr "كرديّة (بخطٍّ عربي)"
-
-#: keyboard.pm:246
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kyrgyz"
-msgstr "قيرغزيّة"
-
-#: keyboard.pm:247
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latin American"
-msgstr "الأمريكية اللاتينية"
-
-#: keyboard.pm:249
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Laotian"
-msgstr "الليتوانيّة"
-
-#: keyboard.pm:250
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (old)"
-msgstr "الليتوانية AZERTY (قديم)"
-
-#: keyboard.pm:252
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (new)"
-msgstr "الليتوانية AZERTY (جديد)"
-
-#: keyboard.pm:253
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"number row\" QWERTY"
-msgstr "الليتوانية \"صف رقمي\" QWERTY"
-
-#: keyboard.pm:254
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"phonetic\" QWERTY"
-msgstr "الليتوانية \"صوتي\" QWERTY"
-
-#: keyboard.pm:255
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latvian"
-msgstr "لاتفيّة"
-
-#: keyboard.pm:256
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Malayalam"
-msgstr "المالايالام"
-
-#: keyboard.pm:258
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Macedonian"
-msgstr "المقدونية"
-
-#: keyboard.pm:259
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Myanmar (Burmese)"
-msgstr "ميانمار (البورمية)"
-
-#: keyboard.pm:260
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Mongolian (cyrillic)"
-msgstr "المنغولية (سيريلية)"
-
-#: keyboard.pm:261
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (UK)"
-msgstr "المالطية (بريطانيا)"
-
-#: keyboard.pm:262
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (US)"
-msgstr "المالطية (أمريكا)"
-
-#: keyboard.pm:263
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dutch"
-msgstr "الهولندية"
-
-#: keyboard.pm:265
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Oriya"
-msgstr "أوريا"
-
-#: keyboard.pm:266
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwerty layout)"
-msgstr "البولندية (توزيعة qwerty)"
-
-#: keyboard.pm:267
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwertz layout)"
-msgstr "البولندية (توزيعة qwertz)"
-
-#: keyboard.pm:269
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Pashto"
-msgstr "باشتويّة"
-
-#: keyboard.pm:270
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Portuguese"
-msgstr "البرتغالية"
-
-#: keyboard.pm:272
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Canadian (Quebec)"
-msgstr "الكنديّة (كيبيك)"
-
-#: keyboard.pm:273
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwertz)"
-msgstr "الرومانية (qwertz("
-
-#: keyboard.pm:274
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwerty)"
-msgstr "الرومانية (qwertz("
-
-#: keyboard.pm:276
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian (phonetic)"
-msgstr "الرّوسية (صوتية)"
-
-#: keyboard.pm:277
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (norwegian)"
-msgstr "سآمي (نرويجي)"
-
-#: keyboard.pm:278
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (swedish/finnish)"
-msgstr "سآمي (سويدية/فنلندية)"
-
-#: keyboard.pm:280
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sindhi"
-msgstr "سنديّة"
-
-#: keyboard.pm:282
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovenian"
-msgstr "السلوفينية"
-
-#: keyboard.pm:284
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sinhala"
-msgstr ""
-
-#: keyboard.pm:285
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTZ)"
-msgstr "السلوفاكية (QWERTZ("
-
-#: keyboard.pm:286
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTY)"
-msgstr "السلوفاكية (QWERTY("
-
-#: keyboard.pm:288
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Serbian (cyrillic)"
-msgstr "الصربية (سيريلي)"
-
-#: keyboard.pm:289
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac"
-msgstr "السريانية"
-
-#: keyboard.pm:290
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac (phonetic)"
-msgstr "السريانية (صوتي)"
-
-#: keyboard.pm:291
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Telugu"
-msgstr "التيلوغو"
-
-#: keyboard.pm:293
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (ISCII-layout)"
-msgstr "التاميل (توزيع ISCII)"
-
-#: keyboard.pm:294
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (Typewriter-layout)"
-msgstr "التاميل (توزيع الآلة كاتبة)"
-
-#: keyboard.pm:295
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Kedmanee)"
-msgstr "تايلنديّة (كدماني)"
-
-#: keyboard.pm:296
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (TIS-820)"
-msgstr "تايلنديّة (TIS-820("
-
-#: keyboard.pm:298
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Pattachote)"
-msgstr "تايلنديّة (باتشوتي)"
-
-#: keyboard.pm:300
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (moroccan layout) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:301
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (phonetic) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:303
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tajik"
-msgstr "الطاجيك"
-
-#: keyboard.pm:305
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkmen"
-msgstr "تركمانيّة"
-
-#: keyboard.pm:306
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (traditional \"F\" model)"
-msgstr "التّركية (طراز \"F\" التقليدي)"
-
-#: keyboard.pm:307
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (modern \"Q\" model)"
-msgstr "التركية (طراز \"Q\" الحديث)"
-
-#: keyboard.pm:309
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Ukrainian"
-msgstr "الأكرانية"
-
-#: keyboard.pm:312
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Urdu keyboard"
-msgstr "لوحة المفاتيح الأردو"
-
-#: keyboard.pm:314
-#, c-format
-msgid "US keyboard (international)"
-msgstr "لوحة مفاتيح أمريكية (دولي)"
-
-#: keyboard.pm:315
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Uzbek (cyrillic)"
-msgstr "الأوزبكية (سيريلي)"
-
-#: keyboard.pm:317
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Vietnamese \"numeric row\" QWERTY"
-msgstr "الفيتنامية \"صف رقمي\" QWERTY"
-
-#: keyboard.pm:318
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Yugoslavian (latin)"
-msgstr "اليوغوسلافية (لاتيني)"
-
-#: keyboard.pm:325
-#, c-format
-msgid "Right Alt key"
-msgstr "مفتاح Alt الأيمن"
-
-#: keyboard.pm:326
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "مفتاحيّ Shift معاً"
-
-#: keyboard.pm:327
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "مفاتيح Control و Shift معاً"
-
-#: keyboard.pm:328
-#, c-format
-msgid "CapsLock key"
-msgstr "مفتاح CapsLock"
-
-#: keyboard.pm:329
-#, c-format
-msgid "Shift and CapsLock keys simultaneously"
-msgstr "مفاتيح Shift و CapsLock معاً"
-
-#: keyboard.pm:330
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "مفاتيح Ctrl و Alt معاً"
-
-#: keyboard.pm:331
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "مفاتيح Alt و Shift معاً"
-
-#: keyboard.pm:332
-#, c-format
-msgid "\"Menu\" key"
-msgstr "مفتاح \"Menu\""
-
-#: keyboard.pm:333
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "مفتاح \"ويندوز\" الأيسر"
-
-#: keyboard.pm:334
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "مفتاح \"ويندوز\" الأيمن"
-
-#: keyboard.pm:335
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "مفتاحيّ Control معاً"
-
-#: keyboard.pm:336
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "مفتاحيّ Alt معاً"
-
-#: keyboard.pm:337
-#, c-format
-msgid "Left Shift key"
-msgstr "مفتاح Shift الأيسر"
-
-#: keyboard.pm:338
-#, c-format
-msgid "Right Shift key"
-msgstr "مفتاح Shift الأيمن"
-
-#: keyboard.pm:339
-#, c-format
-msgid "Left Alt key"
-msgstr "مفتاح Alt الأيسر"
-
-#: keyboard.pm:340
-#, c-format
-msgid "Left Control key"
-msgstr "مفتاح Control الأيسر"
-
-#: keyboard.pm:341
-#, c-format
-msgid "Right Control key"
-msgstr "مفتاح Control الأيمن"
-
-#: keyboard.pm:377
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"هنا يمكنك اختيار اختصارات لوحة المفاتيح التي \n"
-"ستسمح لك بالتبديل بين لغات لوحة المفاتيح المختلفة\n"
-"(مثلاً: لاتيني و غير لاتيني)"
-
-#: keyboard.pm:382
-#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
-msgstr ""
-"هذا التّحديد سوف يُفعّل بعد التّثبيت.\n"
-"خلال التّثبيت، ستحتاج إلى استخدام زرّ التحكّم الأيمن\n"
-"للتبديل بين أنماط لوحة المفاتيح المتعدّدة."
-
#. -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:178
+#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:RTL"
-#: lang.pm:195
+#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "أندورا"
-#: lang.pm:196 network/adsl_consts.pm:943
+#: lang.pm:211 timezone.pm:213
#, c-format
msgid "United Arab Emirates"
msgstr "الإمارات العربية المتحدة"
-#: lang.pm:197
+#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "أفغانستان"
-#: lang.pm:198
+#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "أنتيغوا و باربودا"
-#: lang.pm:199
+#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "أنغويلا"
-#: lang.pm:200
+#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "ألبانيا"
-#: lang.pm:201
+#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "أرمينيا"
-#: lang.pm:202
+#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "أنتيل هولندا"
-#: lang.pm:203
+#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "أنغولا"
-#: lang.pm:204
+#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "القطب الجنوبي"
-#: lang.pm:205 network/adsl_consts.pm:55 standalone/drakxtv:50
+#: lang.pm:220 timezone.pm:258
#, c-format
msgid "Argentina"
msgstr "الأرجنتين "
-#: lang.pm:206
+#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "ساموا الأمريكية"
-#: lang.pm:209
+#: lang.pm:222 mirror.pm:11 timezone.pm:216
+#, c-format
+msgid "Austria"
+msgstr "النمسا"
+
+#: lang.pm:223 mirror.pm:10 timezone.pm:254
+#, c-format
+msgid "Australia"
+msgstr "أوستراليا"
+
+#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "أروبا"
-#: lang.pm:210
+#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "أذربيجان"
-#: lang.pm:211
+#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "البوسنة و الهرسك"
-#: lang.pm:212
+#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "باربادوس"
-#: lang.pm:213
+#: lang.pm:228 timezone.pm:198
#, c-format
msgid "Bangladesh"
msgstr "بنغلاديش"
-#: lang.pm:215
+#: lang.pm:229 mirror.pm:12 timezone.pm:218
+#, c-format
+msgid "Belgium"
+msgstr "بلجيكا"
+
+#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "بوركينافاسو"
-#: lang.pm:216 network/adsl_consts.pm:170 network/adsl_consts.pm:179
+#: lang.pm:231 timezone.pm:219
#, c-format
msgid "Bulgaria"
msgstr "بلغاريا"
-#: lang.pm:217
+#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "البحرين"
-#: lang.pm:218
+#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "بوروندي"
-#: lang.pm:219
+#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "بنين"
-#: lang.pm:220
+#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "برمودا"
-#: lang.pm:221
+#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "سلطنة بروناي"
-#: lang.pm:222
+#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "بوليفيا"
-#: lang.pm:224
+#: lang.pm:238 mirror.pm:13 timezone.pm:259
+#, c-format
+msgid "Brazil"
+msgstr "البرازيل"
+
+#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "جزر الباهاما"
-#: lang.pm:225
+#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "بوتان"
-#: lang.pm:226
+#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "جزيرة بوفيه"
-#: lang.pm:227
+#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "بوتسوانا"
-#: lang.pm:228
+#: lang.pm:243 timezone.pm:217
#, c-format
msgid "Belarus"
msgstr "روسيا البيضاء"
-#: lang.pm:229
+#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "بيليز"
-#: lang.pm:231
+#: lang.pm:245 mirror.pm:14 timezone.pm:248
+#, c-format
+msgid "Canada"
+msgstr "كندا"
+
+#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "جزر الكوكوس"
-#: lang.pm:232
+#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr "الكونغو كينشاسا"
-#: lang.pm:233
+#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "جمهورية وسط أفريقية"
-#: lang.pm:234
+#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr "الكونغو برازافيل"
-#: lang.pm:236
+#: lang.pm:250 mirror.pm:38 timezone.pm:242
+#, c-format
+msgid "Switzerland"
+msgstr "السويسرية"
+
+#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "كوت ديفوار"
-#: lang.pm:237
+#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "جزر الكوك"
-#: lang.pm:238
+#: lang.pm:253 timezone.pm:260
#, c-format
msgid "Chile"
msgstr "تشيلي"
-#: lang.pm:239
+#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "الكاميرون"
-#: lang.pm:240 network/adsl_consts.pm:188 network/adsl_consts.pm:197
-#: network/adsl_consts.pm:206 network/adsl_consts.pm:215
-#: network/adsl_consts.pm:224 network/adsl_consts.pm:233
-#: network/adsl_consts.pm:242 network/adsl_consts.pm:251
-#: network/adsl_consts.pm:260 network/adsl_consts.pm:269
-#: network/adsl_consts.pm:278 network/adsl_consts.pm:287
-#: network/adsl_consts.pm:296 network/adsl_consts.pm:305
-#: network/adsl_consts.pm:314 network/adsl_consts.pm:323
-#: network/adsl_consts.pm:332 network/adsl_consts.pm:341
-#: network/adsl_consts.pm:350 network/adsl_consts.pm:359
+#: lang.pm:255 timezone.pm:199
#, c-format
msgid "China"
msgstr "الصين"
-#: lang.pm:241
+#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "كولومبيا"
-#: lang.pm:243
+#: lang.pm:257 mirror.pm:15
+#, c-format
+msgid "Costa Rica"
+msgstr "كوستاريكا"
+
+#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "صربيا و الجبل الأسود"
-#: lang.pm:244
+#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "كوبا"
-#: lang.pm:245
+#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "كيب فيردي"
-#: lang.pm:246
+#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "جزر الكريسماس"
-#: lang.pm:247
+#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "قبرص"
-#: lang.pm:250
+#: lang.pm:263 mirror.pm:16 timezone.pm:220
+#, c-format
+msgid "Czech Republic"
+msgstr "جمهورية التشيك"
+
+#: lang.pm:264 mirror.pm:21 timezone.pm:225
+#, c-format
+msgid "Germany"
+msgstr "ألمانيا"
+
+#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "جيبوتي"
-#: lang.pm:252
+#: lang.pm:266 mirror.pm:17 timezone.pm:221
+#, c-format
+msgid "Denmark"
+msgstr "الدنمارك"
+
+#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "دومينيكا"
-#: lang.pm:253
+#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "جمهورية الدومينيكان"
-#: lang.pm:254 network/adsl_consts.pm:44
+#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "الجزائر"
-#: lang.pm:255
+#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "الإكوادور"
-#: lang.pm:257
+#: lang.pm:271 mirror.pm:18 timezone.pm:222
+#, c-format
+msgid "Estonia"
+msgstr "استونيا"
+
+#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "مصر"
-#: lang.pm:258
+#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "الصحراء الغربية"
-#: lang.pm:259
+#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "اريتريا"
-#: lang.pm:261
+#: lang.pm:275 mirror.pm:36 timezone.pm:240
+#, c-format
+msgid "Spain"
+msgstr "أسبانيا"
+
+#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "اثيوبيا"
-#: lang.pm:263
+#: lang.pm:277 mirror.pm:19 timezone.pm:223
+#, c-format
+msgid "Finland"
+msgstr "فنلندا"
+
+#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "فيجي"
-#: lang.pm:264
+#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "جزر فوكلاند"
-#: lang.pm:265
+#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "ميكرونيزيا"
-#: lang.pm:266
+#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "جزر الفيرو"
-#: lang.pm:268
+#: lang.pm:282 mirror.pm:20 timezone.pm:224
+#, c-format
+msgid "France"
+msgstr "فرنسا"
+
+#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "الغابون"
-#: lang.pm:269 network/adsl_consts.pm:954 network/adsl_consts.pm:965
-#: network/netconnect.pm:46
+#: lang.pm:284 timezone.pm:244
#, c-format
msgid "United Kingdom"
msgstr "المملكة المتحدة"
-#: lang.pm:270
+#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "عرينادا"
-#: lang.pm:271
+#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "جورجيا"
-#: lang.pm:272
+#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "غويانا الفرنسية"
-#: lang.pm:273
+#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "غانا"
-#: lang.pm:274
+#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "جبل طارق"
-#: lang.pm:275
+#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "غرينلاند"
-#: lang.pm:276
+#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "غامبيا"
-#: lang.pm:277
+#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "غينيا"
-#: lang.pm:278
+#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "غواديلوب"
-#: lang.pm:279
+#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "غينيا الإستوائية"
-#: lang.pm:281
+#: lang.pm:295 mirror.pm:22 timezone.pm:226
+#, c-format
+msgid "Greece"
+msgstr "اليونان"
+
+#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "جوجيا الجنوبية و جزر ساندويتش الجنوبية"
-#: lang.pm:282
+#: lang.pm:297 timezone.pm:249
#, c-format
msgid "Guatemala"
msgstr "غواتيمالا"
-#: lang.pm:283
+#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "غوام"
-#: lang.pm:284
+#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "غينيا-بيساو"
-#: lang.pm:285
+#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "غويانا"
-#: lang.pm:286
+#: lang.pm:301
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "هونغ كونغ سار (الصين)"
-#: lang.pm:287
+#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "جزر هيرد و ماكدونالد"
-#: lang.pm:288
+#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "هندوراس"
-#: lang.pm:289
+#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "كرواتيا"
-#: lang.pm:290
+#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "هايتي"
-#: lang.pm:292
+#: lang.pm:306 mirror.pm:23 timezone.pm:227
+#, c-format
+msgid "Hungary"
+msgstr "المجر"
+
+#: lang.pm:307 timezone.pm:202
#, c-format
msgid "Indonesia"
msgstr "اندونيسيا"
-#: lang.pm:295
+#: lang.pm:308 mirror.pm:24 timezone.pm:228
+#, c-format
+msgid "Ireland"
+msgstr "أيرلندا"
+
+#: lang.pm:309 mirror.pm:25 timezone.pm:204
+#, c-format
+msgid "Israel"
+msgstr "اسرائيل"
+
+#: lang.pm:310 timezone.pm:201
#, c-format
msgid "India"
msgstr "الهند"
-#: lang.pm:296
+#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "منطقة جزر المحيط الهادي البريطانية"
-#: lang.pm:297
+#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "العراق"
-#: lang.pm:298
+#: lang.pm:313 timezone.pm:203
#, c-format
msgid "Iran"
msgstr "ايران"
-#: lang.pm:299
+#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "آيسلندا"
-#: lang.pm:301
+#: lang.pm:315 mirror.pm:26 timezone.pm:229
+#, c-format
+msgid "Italy"
+msgstr "إيطاليا"
+
+#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "جامايكا"
-#: lang.pm:302
+#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "الأردن"
-#: lang.pm:304
+#: lang.pm:318 mirror.pm:27 timezone.pm:205
+#, c-format
+msgid "Japan"
+msgstr "اليابان"
+
+#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "كينيا"
-#: lang.pm:305
+#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "قيرغيزستان"
-#: lang.pm:306
+#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "كمبوديا"
-#: lang.pm:307
+#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "كيريباتي"
-#: lang.pm:308
+#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "جزر القمر"
-#: lang.pm:309
+#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "سانت كيتس و نيفيس"
-#: lang.pm:310
+#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "كوريا الشمالية"
-#: lang.pm:311
+#: lang.pm:326 timezone.pm:206
#, c-format
msgid "Korea"
msgstr "كوريا"
-#: lang.pm:312
+#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "الكويت"
-#: lang.pm:313
+#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "جزر كايمان"
-#: lang.pm:314
+#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "كازاخستان"
-#: lang.pm:315
+#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "لاوس"
-#: lang.pm:316
+#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "لبنان"
-#: lang.pm:317
+#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "سانت لوسيا"
-#: lang.pm:318
+#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "ليشتنشتاين"
-#: lang.pm:319
+#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "سريلانكا"
-#: lang.pm:320
+#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "ليبريا"
-#: lang.pm:321
+#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "ليسوتو"
-#: lang.pm:322 network/adsl_consts.pm:600
+#: lang.pm:337 timezone.pm:230
#, c-format
msgid "Lithuania"
msgstr "ليتوانيا"
-#: lang.pm:323
+#: lang.pm:338 timezone.pm:231
#, c-format
msgid "Luxembourg"
msgstr "لوكسمبورغ"
-#: lang.pm:324
+#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "لاتفيا"
-#: lang.pm:325
+#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "ليبيا"
-#: lang.pm:326 network/adsl_consts.pm:609
+#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "المغرب"
-#: lang.pm:327
+#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "موناكو"
-#: lang.pm:328
+#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "مولدوفا"
-#: lang.pm:329
+#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "مدغشقر"
-#: lang.pm:330
+#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "جزر مارشال"
-#: lang.pm:331
+#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "مقدونيا"
-#: lang.pm:332
+#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "مالي"
-#: lang.pm:333
+#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "ميانمار"
-#: lang.pm:334
+#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "منغوليا"
-#: lang.pm:335
+#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "جزر ماريانا الشمالية"
-#: lang.pm:336
+#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "مارتينيك"
-#: lang.pm:337
+#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "موريتانيا"
-#: lang.pm:338
+#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "مونتسيرات"
-#: lang.pm:339
+#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "مالطة"
-#: lang.pm:340
+#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "موريشيوس"
-#: lang.pm:341
+#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "جزر المالديف"
-#: lang.pm:342
+#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "مالاوي"
-#: lang.pm:343
+#: lang.pm:358 timezone.pm:250
#, c-format
msgid "Mexico"
msgstr "المكسيك"
-#: lang.pm:344
+#: lang.pm:359 timezone.pm:207
#, c-format
msgid "Malaysia"
msgstr "ماليزيا"
-#: lang.pm:345
+#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "موزمبيق"
-#: lang.pm:346
+#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "ناميبيا"
-#: lang.pm:347
+#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "نيوكاليدونيا"
-#: lang.pm:348
+#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "النيجر"
-#: lang.pm:349
+#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "جزيرة نورفولك"
-#: lang.pm:350
+#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "نيجيريا"
-#: lang.pm:351
+#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "نيكاراغوا"
-#: lang.pm:354
+#: lang.pm:367 mirror.pm:28 timezone.pm:232
+#, c-format
+msgid "Netherlands"
+msgstr "هولندا"
+
+#: lang.pm:368 mirror.pm:30 timezone.pm:233
+#, c-format
+msgid "Norway"
+msgstr "النرويج"
+
+#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "نيبال"
-#: lang.pm:355
+#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "ناورو"
-#: lang.pm:356
+#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "نيوي"
-#: lang.pm:358
+#: lang.pm:372 mirror.pm:29 timezone.pm:255
+#, c-format
+msgid "New Zealand"
+msgstr "نيوزيلندا"
+
+#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "عمان"
-#: lang.pm:359
+#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "بنما"
-#: lang.pm:360
+#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "بيرو"
-#: lang.pm:361
+#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "بولينيسيا الفرنسية"
-#: lang.pm:362
+#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "بابوا غينيا الجديدة"
-#: lang.pm:363
+#: lang.pm:378 timezone.pm:208
#, c-format
msgid "Philippines"
msgstr "الفيليبين"
-#: lang.pm:364
+#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "باكستان"
-#: lang.pm:366
+#: lang.pm:380 mirror.pm:31 timezone.pm:234
+#, c-format
+msgid "Poland"
+msgstr "بولندا"
+
+#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "سانت بيير و ميكيلون"
-#: lang.pm:367
+#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "بيتكايرن"
-#: lang.pm:368
+#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "بورتوريكو"
-#: lang.pm:369
+#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "فلسطين"
-#: lang.pm:371
+#: lang.pm:385 mirror.pm:32 timezone.pm:235
+#, c-format
+msgid "Portugal"
+msgstr "البرتغال"
+
+#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "البارجواي"
-#: lang.pm:372
+#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "بالاو"
-#: lang.pm:373
+#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "قطر"
-#: lang.pm:374
+#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "ريونيون"
-#: lang.pm:375
+#: lang.pm:390 timezone.pm:236
#, c-format
msgid "Romania"
msgstr "رومانيا"
-#: lang.pm:377
+#: lang.pm:391 mirror.pm:33
+#, c-format
+msgid "Russia"
+msgstr "روسيا"
+
+#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "رواندا"
-#: lang.pm:378
+#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "السعودية"
-#: lang.pm:379
+#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "جزر سليمان"
-#: lang.pm:380
+#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "جزر سيشل"
-#: lang.pm:381
+#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "السودان"
-#: lang.pm:383
+#: lang.pm:397 mirror.pm:37 timezone.pm:241
+#, c-format
+msgid "Sweden"
+msgstr "السويد"
+
+#: lang.pm:398 timezone.pm:209
#, c-format
msgid "Singapore"
msgstr "سنغافورة"
-#: lang.pm:384
+#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "سانت هيلانة"
-#: lang.pm:385 network/adsl_consts.pm:747
+#: lang.pm:400 timezone.pm:239
#, c-format
msgid "Slovenia"
msgstr "سلوفينيا"
-#: lang.pm:386
+#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "جزر سفالبارد و جان ماين"
-#: lang.pm:388
+#: lang.pm:402 mirror.pm:34 timezone.pm:238
+#, c-format
+msgid "Slovakia"
+msgstr "سلوفاكيا"
+
+#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "سيراليون"
-#: lang.pm:389
+#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "سان مارينو"
-#: lang.pm:390 network/adsl_consts.pm:737
+#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "السنغال"
-#: lang.pm:391
+#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "الصومال"
-#: lang.pm:392
+#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "سورينام"
-#: lang.pm:393
+#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "ساو تومي و البرينسيب"
-#: lang.pm:394
+#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "السلفادور"
-#: lang.pm:395
+#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "سورية"
-#: lang.pm:396
+#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "سوازيلاند"
-#: lang.pm:397
+#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "جزر الترك و الكايكوس"
-#: lang.pm:398
+#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "تشاد"
-#: lang.pm:399
+#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "مناطق جنوب فرنسا"
-#: lang.pm:400
+#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "توجو"
-#: lang.pm:402
+#: lang.pm:416 mirror.pm:40 timezone.pm:211
+#, c-format
+msgid "Thailand"
+msgstr "تايلاند"
+
+#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "طاجكستان"
-#: lang.pm:403
+#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "توكلاو"
-#: lang.pm:404
+#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "تيمور الشرقية"
-#: lang.pm:405
+#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "تركمانستان"
-#: lang.pm:406 network/adsl_consts.pm:931
+#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "تونس"
-#: lang.pm:407
+#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "تونجو"
-#: lang.pm:408
+#: lang.pm:423 timezone.pm:212
#, c-format
msgid "Turkey"
msgstr "تركيا"
-#: lang.pm:409
+#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "ترينياد و توباجو"
-#: lang.pm:410
+#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "توفالو"
-#: lang.pm:412
+#: lang.pm:426 mirror.pm:39 timezone.pm:210
+#, c-format
+msgid "Taiwan"
+msgstr "تايوان"
+
+#: lang.pm:427 timezone.pm:195
#, c-format
msgid "Tanzania"
msgstr "تنزانيا"
-#: lang.pm:413
+#: lang.pm:428 timezone.pm:243
#, c-format
msgid "Ukraine"
msgstr "أوكرانيا"
-#: lang.pm:414
+#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "أوغندا"
-#: lang.pm:415
+#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "جزر الولايات المتحدة"
-#: lang.pm:417
+#: lang.pm:431 mirror.pm:41 timezone.pm:251
+#, c-format
+msgid "United States"
+msgstr "الولايات المتحدة"
+
+#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "أوروغواي"
-#: lang.pm:418
+#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "أوزبكستان"
-#: lang.pm:419
+#: lang.pm:434
#, c-format
msgid "Vatican"
msgstr "الفاتيكان"
-#: lang.pm:420
+#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "سانت فينسنت و الغرينادين"
-#: lang.pm:421
+#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "فينزويلا"
-#: lang.pm:422
+#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "الجزر العذراء (بريطانيا)"
-#: lang.pm:423
+#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "الجزر العذراء (الولايات المتحدة)"
-#: lang.pm:424
+#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "فييتنام"
-#: lang.pm:425
+#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "فاناتو"
-#: lang.pm:426
+#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "واليس و فوتونا"
-#: lang.pm:427
+#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "ساموا"
-#: lang.pm:428
+#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "اليمن"
-#: lang.pm:429
+#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "مايوت"
-#: lang.pm:431
+#: lang.pm:445 mirror.pm:35 timezone.pm:194
+#, c-format
+msgid "South Africa"
+msgstr "جنوب أفريقيا "
+
+#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "زامبيا"
-#: lang.pm:432
+#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "زيمبابوي"
-#: lang.pm:1149
+#: lang.pm:1153
#, c-format
msgid "Welcome to %s"
msgstr "أهلا في %s"
@@ -9605,6 +4560,334 @@ msgstr "حذف الكتل المنطقية أولاً\n"
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:10
+#, c-format
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the Mandriva "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandriva Linux distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
+"Mandriva S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using the Software Products in any manner, you "
+"explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
+"Software Products.\n"
+"\n"
+"\n"
+"2. Limited Warranty\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
+"be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if Mandriva S.A. has been advised of the possibility or "
+"occurrence of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
+"\n"
+"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
+"no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Mandriva Linux sites which are prohibited or restricted in some "
+"countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
+"included in the Software Products.\n"
+"\n"
+"\n"
+"3. The GPL License and Related Licenses\n"
+"\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to Mandriva.\n"
+"The programs developed by Mandriva S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by Mandriva S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
+"\n"
+"\n"
+"4. Intellectual Property Rights\n"
+"\n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
+"as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
+"Mandriva S.A. \n"
+"\n"
+"\n"
+"5. Governing Laws \n"
+"\n"
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
+"For any question on this document, please contact Mandriva S.A. \n"
+msgstr ""
+"مقدّمة\n"
+"\n"
+"سيشار إلى نظام التّشغيل ومختلف المكوّنات المتوفّرة في توزيعة ماندريبا لينكس \n"
+" بـ \"المنتجات البرمجيّة\" من هنا وفيما يلي. المنتجات البرمجيّة تحتوي ولكنّها "
+"لا تنحصر في مجموعة البرامج والمناهج والقواعد والوثائق المتعلّقة بنظام "
+"التّشغيل \n"
+"والمكوّنات المختلفة لتوزيعة ماندريبا لينكس.\n"
+"\n"
+"\n"
+"1. اتّفاقيّة التّرخيص\n"
+"\n"
+"يرجى قراءة هذه الوثيقة بتمعّن. هذه الوثيقة هي اتّفاقيّة ترخيص بينك أنت "
+"وماندريبا ش.م. وتطبّق على المنتجات البرمجيّة.\n"
+"تثبيتك أو نسخك أواستعمالك لهذه البرامج بأي شكلٍ من الأشكال يعدّ \n"
+"قبولاً صريحاً وموافقةً كاملةً على الالتزام ببنود وشروط هذه الرّخصة. \n"
+"إن كنت لا توافق على أي جزءٍ من الرّخصة فلا يسمح لك بتثبيت أو نسخ أو استعمال "
+"المنتجات البرمجيّة. أي محاولةٍ لتثبيت أو نسخ أو استعمال المنتجات البرمجيّة بشكلٍ "
+"لا يمتثل \n"
+"لبنود وشروط هذه الرّخصة هي لاغيةٌ وستنهي حقوقك بموجب هذه الرّخصة. \n"
+"بمجرّد انتهاء هذه الرّخصة يتوجّب عليك وعلى الفور محق كافّة النّسخ \n"
+"من المنتجات البرمجيّة.\n"
+"\n"
+"\n"
+"2. محدوديّة الضّمان\n"
+"\n"
+"توفّر المنتجات البرمجيّة والوثائق المرفقة \"كما هي\"، دون أيّ ضمان، ضمن أقصى \n"
+"حدٍّ يسمح به القانون.\n"
+"ماندريبا ش.م. لن تكون مسؤولةً قانونيّاً مهما كانت الظّروف عن أيّة \n"
+"أضرارٍ خاصّةٍ أو عرضيّة أو مباشرةٍ أو غير مباشرة (شاملةً ولكن غير محصورةٍ بأيّة "
+"أضرارٍ ناجمةٍ عن خسارةٍ \n"
+"في الأعمال أو عن انقطاعٍ للأعمال أو عن خسارةٍ ماليّة أو عن رسومٍ قانونيّة أو عن "
+"أيّة عقوباتٍ نتيجة \n"
+"أحكامٍ قضائيّة، أو عن أيّة خسارةٍ أخرى تنجم) نتيجة استعمال أو عدم القدرة على "
+"استعمال المنتجات البرمجيّة حتّى وإن كانت ماندريبا ش.م. على درايةٍ باحتمال وقوع "
+"أضرارٍ \n"
+"كتلك المذكورة.\n"
+"\n"
+"محدوديّة المسؤوليّة المتعلّقة بامتلاك أو استعمال البرمجيّات المحظورة في بعض "
+"الدّول\n"
+"\n"
+"ضمن أقصى حدّ يسمح به القانون لن تكون ماندريبا ش.م. مسؤولةً أو أيٍّ من موزّعيها "
+"مسؤولين قانونيّاً \n"
+"عن أيّة أضرارٍ خاصّةٍ أو عرضيّة أو مباشرةٍ أو غير مباشرة (شاملةً ولكن غير محصورةٍ "
+"بأيّة أضرارٍ ناجمةٍ عن خسارةٍ \n"
+"في الأعمال أو عن انقطاعٍ للأعمال أو عن خسارةٍ ماليّة أو عن رسومٍ قانونيّة أو عن "
+"أيّة عقوباتٍ نتيجة \n"
+"أحكامٍ قضائيّة، أو عن أيّة خسارةٍ أخرى تنجم) ناتجةٍ عن \n"
+"امتلاك أو استعمال مكوّناتٍ برمجيّة أو ناتجةٍ عن تنزيل مكوّناتٍ \n"
+"برمجيّة من أحد مواقع ماندريبا لينكس و كانت تلك المكوّنات البرمجيّة محظورة أو "
+"محدودةً في بعض الدّول بقوانين محلّيّة.\n"
+"محدوديّة المسؤوليّة هذه تنطبق على مكوّنات التّشفير المنيع \n"
+"المرفقة مع المنتجات البرمجيّة ولكن لا تنحصر بها.\n"
+"\n"
+"\n"
+"3. رخصة GPL والرّخص ذات الصّلة\n"
+"\n"
+"المكوّنات البرمجيّة تتألّف من مكوّناتٍ منشأةٍ من قبل عدّة أشخاصٍ أو جهات. في "
+"معظمها \n"
+"هذه المكوّنات خاضعةٌ لبنود وشروط \n"
+"رخصة جنو العامّة، المشار إليها بـ\"GPL\" من هنا وفيما يلي، أو لبنود وشروط رخصٍ "
+"شبيهة. معظم هذه الرّخص تخوّلك أن تستعمل \n"
+"أو تنسخ أو تكيّف أو تعيد توزيع المكوّنات الخاضعة لها. يرجى قراءة بنود وشروط \n"
+"اتّفاقيّة ترخيص كل مكوّن قبل استعمال أي مكوّن. أيّة أسئلة \n"
+"عن رخصة أي مكوّن يجب أن تطرح على مؤلّف المكوّن وليس على ماندريبا.\n"
+"البرامج المطوّرة من قبل ماندريبا ش.م. خاضعة لرخصة GPL. الوثائق المكتوبة من "
+"قبل \n"
+"ماندريبا ش.م. تخضع لرخصةٍ محدّدة. يرجى الرّجوع للوثائق لمزيدٍ \n"
+"من التّفاصيل.\n"
+"\n"
+"\n"
+"4. حقوق الملكيّة الفكريّة\n"
+"\n"
+"كل الحقوق في مكوّنات المنتجات البرمجيّة هي لمؤلّفيها المعنيّين وتحميها \n"
+"قوانين الملكيّة الفكريّة وحقوق النّشر المنطبقة على البرمجيّات.\n"
+"تحتفظ ماندريبا ش.م. بحقّها في تعديل أو تكييف المنتجات البرمجيّة، بحذافيرها \n"
+"أو أجزاء معيّنة منها، بشتّى الطّرق ولسائر الأغراض.\n"
+"\"Mandriva\" و \"Mandriva Linux\" والشّعارات المتعلّقة هي علاماتٌ تجاريّة "
+"لماندريبا ش.م. \n"
+"\n"
+"\n"
+"5. القوانين الحاكمة \n"
+"\n"
+"في حال تجميد أي جزءٍ من هذه الاتّفاقيّة أو اعتباره غير قانونيٍّ أو غير منطبق بحكمٍ "
+"قضائي فإن ذلا الجز يعدء \n"
+"مستثناً من هذا العقد.س تبقى أنت مقيّداً بالأجزاء الأخرى المنطبقة \n"
+"من هذه الاتّفاقيّة.\n"
+"إن بنود وشروط هذه الرّخصة هي خاضعة لقوانين فرنسا.\n"
+"سيفضّل أن تسوّى كافّة الاختصامات المتعلّقة ببنود هذه الرّخصة خارج حكم القضاء. كحلٍّ "
+"أخير \n"
+"سيحوّل الاختصام إلى محاكم القضاء ذات العلاقة في باريس - فرنسا.\n"
+"في حال وجود أي أسئلةٍ عن هذه الوثيقة، يرجى الاتّصال بماندريبا ش.م. \n"
+
+#: messages.pm:90
+#, c-format
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
+"تحذير: البرامج الحرّة ليس من الضّروري أن تكون خالية من براءة الاختراع، وبعد "
+"البرامج الحرّة\n"
+"المشمولة قد تكون محميّة ببراءة اختراع مسجّلة في بلدك. مثلاً، MP3 decoders "
+"المشمولة قد تتطلّب رخصة لاستخدامها )انظر\n"
+"http://www.mp3licensing.com للمزيد من التّفاصيل(. إن لم تكن متأكّداً إن كانت \n"
+"براءة الاختراع\n"
+"قد تنطبق عليك، تحقّق من القوانين المحليّة لبلدك."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:98
+#, c-format
+msgid ""
+"\n"
+"Warning\n"
+"\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
+"\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
+msgstr ""
+"\n"
+"تحذير\n"
+"\n"
+"فضلاً اقرأ الشروط أدناه. إذا كنت لا توافق على أي\n"
+"جزء، لن يسمح لك بتثبيت وسيط القرص المدمج التالي. اضغط 'رفض' \n"
+"لمتابعة التثبيت بدون هذه الوسائط.\n"
+"\n"
+"\n"
+"بعض المكونات الموجودة في وسيط القرص المدمج التالي غير محكومة\n"
+"بموجب ترخبص GPL أو الاتفاقيات المماثلة. كل مكون من تلك محكوم\n"
+"بموجب بنود و شروط الترخيص الخاص به تحديداً. \n"
+"فضلاً اقرأ باهتمام و أن تستجيب لهذه التراخيص قبل أن \n"
+"تستخدم أو تعيد توزيع هذه المكونات. \n"
+"مثل هذه التراخيص بشكل عام قد تمنع نقل أو نسخ (باستثناء النسخ الاحتياطي)\n"
+"أو إعادة توزيع أو ممارسة الهندسة العكسية أو فك تركيب أو فك تجميع أو تعديل\n"
+"المكون.\n"
+"أي انتهاك للاتفاقية سيتسبب في انهاء حقوقك تحت الترخيص\n"
+"المحدد بشكل فوري. الا إذا كان الترخيص يعطيك مثل هذه الحقوق.\n"
+"عادة لا يسمح لك بتثبيت هذه البرامج على أكثر من نظام واحد\n"
+"أو تعديله لكي يتم استخدامه على شبكة. في حال شكك فضلاً \n"
+"اتصل بشكل مباشر مع موزع أو مؤلف هذا المكون.\n"
+"النقل إلى طرف ثالث أو نسخ هذه المكونات بما فيه \n"
+"وثائق المساعدة ممنوع عادةً.\n"
+"\n"
+"\n"
+"جميع الحقوق الخاصة بالمكونات الموجودة في وسيط القرص \n"
+"المدمج التالي مملوكة لأصحابها و محمية بموجب قوانين الملكية \n"
+"الفكرية المنطبقة على البرمجيات.\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:131
+#, c-format
+msgid ""
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press Enter to reboot.\n"
+"\n"
+"\n"
+"For information on fixes which are available for this release of Mandriva "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandriva Linux User's Guide."
+msgstr ""
+"تهانينا، التثبيت قد انتهى.\n"
+"أزل وسيط الإقلاع و اضغط زر الإدخال لإعادة التشغيل.\n"
+"\n"
+"\n"
+"لمعلومات حول الإصلاحات المتوفرة لهذا الإصدار من ماندريبا لينكس،\n"
+"استشر صفحة تصحيح الأخطاء المتوفرة من:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"المعلومات حول تهيئة النظام متوفرة في فصل\n"
+"ما بعد التثبيت في دليل مستخدم ماندريبا الرسمي."
+
#: modules/interactive.pm:19
#, fuzzy, c-format
msgid "This driver has no configuration parameter!"
@@ -9667,12 +4950,7 @@ msgstr "جاري تثبيت مشغل لمتحكّم إيثرنت %s"
msgid "Installing driver for %s card %s"
msgstr "جاري تثبيت مشغل %s للبطاقة %s"
-#: modules/interactive.pm:99
-#, c-format
-msgid "(module %s)"
-msgstr "(الوحدة %s)"
-
-#: modules/interactive.pm:109
+#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9681,7 +4959,7 @@ msgstr ""
"يمكنك الآن إعطاء الخيارات للوحدة %s.\n"
"لاحظ أن أي عنوان يجب إدخاله مسبوقاً بـ 0x مثل '0x123'"
-#: modules/interactive.pm:115
+#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9692,18 +4970,18 @@ msgstr ""
"الخيارات في هيئة ``name=value name2=value2 ...'' \n"
"مثلا، ``io=0x300 irq=7''"
-#: modules/interactive.pm:117
+#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "خيارات الوحدة:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: modules/interactive.pm:130
+#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr "أي مشغل %s يجب أن استخدمه؟"
-#: modules/interactive.pm:139
+#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -9721,17 +4999,17 @@ msgstr ""
"لكن\n"
"لا يجب أن يتسبب ذلك في أي مشاكل."
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "جسّ آلي"
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "حدد الخيارات"
-#: modules/interactive.pm:155
+#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -9740,1922 +5018,17 @@ msgstr ""
"فشل تحميل الوحدة %s.\n"
"هل تريد المحاولة ثانية بمعاملات أخرى؟"
-#: modules/parameters.pm:49
-#, c-format
-msgid "a number"
-msgstr "رقم"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d أرقام مفصولة بالفاصلة"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d حرفيات مفصولة بالفاصلة"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated numbers"
-msgstr "أرقام مفصولة بالفاصلة"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated strings"
-msgstr "حرفيات مفصولة بالفاصلة"
-
-#: mouse.pm:25
-#, c-format
-msgid "Sun - Mouse"
-msgstr "صن - ماوس"
-
-#: mouse.pm:31 security/level.pm:12
-#, c-format
-msgid "Standard"
-msgstr "قياسي"
-
-#: mouse.pm:32
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: mouse.pm:33
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "ماوس PS2 شاملة ذات عجل"
-
-#: mouse.pm:34
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/modem.pm:68 network/modem.pm:81 network/modem.pm:86
-#: network/modem.pm:115 network/netconnect.pm:596 network/netconnect.pm:601
-#: network/netconnect.pm:613 network/netconnect.pm:618
-#: network/netconnect.pm:634 network/netconnect.pm:636
-#, c-format
-msgid "Automatic"
-msgstr "آلي"
-
-#: mouse.pm:39 mouse.pm:73
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "ماوس Kensington Thinking"
-
-#: mouse.pm:40 mouse.pm:68
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: mouse.pm:41
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: mouse.pm:42 mouse.pm:52
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "ميكروسوفت Explorer"
-
-#: mouse.pm:47 mouse.pm:79
-#, c-format
-msgid "1 button"
-msgstr "زر واحد"
-
-#: mouse.pm:48 mouse.pm:57
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "ماوس شاملة ذات زرّين"
-
-#: mouse.pm:50 mouse.pm:59
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "ماوس شاملة ذاث 3 أزرار مع مُحاكات العجل"
-
-#: mouse.pm:51
-#, c-format
-msgid "Wheel"
-msgstr "عجل"
-
-#: mouse.pm:55
-#, c-format
-msgid "serial"
-msgstr "توالي"
-
-#: mouse.pm:58
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "ماوس شاملة ذات 3 أزرار"
-
-#: mouse.pm:60
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "ميكروسوفت IntelliMouse"
-
-#: mouse.pm:61
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: mouse.pm:62
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan مع محاكاة العجلة"
-
-#: mouse.pm:63
-#, c-format
-msgid "Mouse Systems"
-msgstr "أنظمة الماوس"
-
-#: mouse.pm:65
-#, c-format
-msgid "Logitech CC Series"
-msgstr "سلسلات Logitech CC"
-
-#: mouse.pm:66
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "سلسلات Logitech CC مع محاكاة العجلة"
-
-#: mouse.pm:67
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: mouse.pm:69
-#, c-format
-msgid "MM Series"
-msgstr "سلسلة MM"
-
-#: mouse.pm:70
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: mouse.pm:71
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (serial، old C7 type)"
-
-#: mouse.pm:72
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech Mouse (توالي، نوع C7 القديم)"
-
-#: mouse.pm:74
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "ماوس Kensington Thinking مع محاكاة العجلة"
-
-#: mouse.pm:77
-#, c-format
-msgid "busmouse"
-msgstr "busmouse"
-
-#: mouse.pm:80
-#, c-format
-msgid "2 buttons"
-msgstr "زرّين"
-
-#: mouse.pm:81
-#, c-format
-msgid "3 buttons"
-msgstr "3 أزرار"
-
-#: mouse.pm:82
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3 أزرار مع محاكاة العجلة"
-
-#: mouse.pm:86
-#, c-format
-msgid "Universal"
-msgstr "عالمي"
-
-#: mouse.pm:88
-#, c-format
-msgid "Any PS/2 & USB mice"
-msgstr "أيّ ماوس PS/2 و USB"
-
-#: mouse.pm:89
-#, fuzzy, c-format
-msgid "Microsoft Xbox Controller S"
-msgstr "ميكروسوفت Explorer"
-
-#: mouse.pm:93 standalone/drakconnect:351 standalone/drakvpn:1126
-#, c-format
-msgid "none"
-msgstr "لاشئ"
-
-#: mouse.pm:95
-#, c-format
-msgid "No mouse"
-msgstr "لا ماوس"
-
-#: mouse.pm:304 mouse.pm:367 mouse.pm:376 mouse.pm:435
-#, c-format
-msgid "Synaptics Touchpad"
-msgstr "Synaptics Touchpad"
-
-#: mouse.pm:561
-#, c-format
-msgid "Please test the mouse"
-msgstr "من فضلك اختبر الماوس"
-
-#: mouse.pm:563
-#, c-format
-msgid "To activate the mouse,"
-msgstr "لتنشيط الماوس،"
-
-#: mouse.pm:564
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "حرك عجلة الماوس!"
-
-#: network/drakfirewall.pm:12 share/compssUsers.pl:85
-#, c-format
-msgid "Web Server"
-msgstr "خادم الوب"
-
-#: network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "خادم اسم النطاق"
-
-#: network/drakfirewall.pm:22
-#, c-format
-msgid "SSH server"
-msgstr "خادم SSH"
-
-#: network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "خادم FTP"
-
-#: network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "خادم بريد"
-
-#: network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "خادم POP و IMAP"
-
-#: network/drakfirewall.pm:42
-#, c-format
-msgid "Telnet server"
-msgstr "خادم Telnet"
-
-#: network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr "مشاركة ملفّات ويندوز (SMB)"
-
-#: network/drakfirewall.pm:54
-#, c-format
-msgid "CUPS server"
-msgstr "خادم CUPS"
-
-#: network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr "طلب الصّدى (ping)"
-
-#: network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr "BitTorrent"
-
-#: network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr ""
-
-#: network/drakfirewall.pm:165
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-"أداة تهيئة drakfirewall\n"
-"\n"
-"هذه الأداة تسمح لك بتهيئة جدار ناري شخصي لنظام ماندريبا لينكس هذا.\n"
-"إذا كنت تريد جدارا ناريا متخصّصاً وفعّالاً، ألق نظرة على\n"
-"توزيعة Mandriva Security Firewall المُتخصّصة."
-
-#: network/drakfirewall.pm:171
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-"أداة تهيئة DrakFirewall\n"
-"\n"
-"تأكد من أنك قمت بتهيئة اتصالك بالشبكة/الإنترنت باستخدام\n"
-"drakconnect قبل المتابعة."
-
-#: network/drakfirewall.pm:188
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "أي خدمة تريد السماح للإنترنت أن تتصل بها؟"
-
-#: network/drakfirewall.pm:191
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-"يمكنك إدخال منافذ متنوعة. \n"
-"أمثلة صالحة هي:139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"ألق نظرة على /etc/services لمزيد من المعلومات."
-
-#: network/drakfirewall.pm:197
-#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-"تم إعطاء منفذ غير صالح: %s.\n"
-"النسق الصحيح هو \"port/tcp\" أو \"port/udp\"، \n"
-"حيث يكون المنفذ بين 1 و65535.\n"
-"\n"
-"يمكنك أيضاَ إعطاء مدى من المنافذ (مثلاً: 2400:24350/udp)"
-
-#: network/drakfirewall.pm:207
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "كل شئ (لا جدار ناري)"
-
-#: network/drakfirewall.pm:209
-#, c-format
-msgid "Other ports"
-msgstr "منافذ أخرى"
-
-#: network/drakfirewall.pm:253 network/drakfirewall.pm:256
-#: standalone/drakids:33 standalone/drakids:136 standalone/drakids:145
-#: standalone/drakids:170 standalone/drakids:179 standalone/drakids:189
-#: standalone/drakids:265 standalone/net_applet:59 standalone/net_applet:202
-#: standalone/net_applet:385 standalone/net_applet:422
-#, fuzzy, c-format
-msgid "Interactive Firewall"
-msgstr "جدار ناري"
-
-#: network/drakfirewall.pm:254
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activity should be watched."
-msgstr ""
-
-#: network/drakfirewall.pm:259
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr ""
-
-#: network/ifw.pm:129
-#, fuzzy, c-format
-msgid "Port scanning"
-msgstr "لا مشاركة"
-
-#: network/ifw.pm:130
-#, fuzzy, c-format
-msgid "Service attack"
-msgstr "الخدمة المُهاجمة: %s"
-
-#: network/ifw.pm:131
-#, fuzzy, c-format
-msgid "Password cracking"
-msgstr "كلمة المرور (مجدداً)"
-
-#: network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr ""
-
-#: network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr "حدث هجوم مسح للمنافذ من قبل %s."
-
-#: network/ifw.pm:135
-#, c-format
-msgid "The %s service has been attacked by %s."
-msgstr "تم الهجوم على الخدمة %s من قبل %s."
-
-#: network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr "حدث هجوم لاختراق كلمة المرور من قبل %s."
-
-#: network/ifw.pm:137
-#, fuzzy, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr "حدث هجوم مسح للمنافذ من قبل %s."
-
-#: network/isdn.pm:117 network/netconnect.pm:463 network/netconnect.pm:557
-#: network/netconnect.pm:560 network/netconnect.pm:708
-#: network/netconnect.pm:712
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr "غير مُسرد - عدّل يدويّاً"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "لا أعرف "
-
-#: network/isdn.pm:161 network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: network/isdn.pm:162 network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/netconnect.pm:601 network/netconnect.pm:618
-#: network/netconnect.pm:634
-#, c-format
-msgid "Manual"
-msgstr "يدوي"
-
-#: network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr ""
-
-#: network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr "الرجاء اختيار مشغّل ويندوز (ملف .inf)"
-
-#: network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr ""
-
-#: network/ndiswrapper.pm:89
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr ""
-
-#: network/ndiswrapper.pm:95
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-
-#: network/ndiswrapper.pm:101
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr ""
-
-#: network/netconnect.pm:69 network/netconnect.pm:493
-#: network/netconnect.pm:505
-#, c-format
-msgid "Manual choice"
-msgstr "اختيار يدوي"
-
-#: network/netconnect.pm:69
-#, c-format
-msgid "Internal ISDN card"
-msgstr "بطاقة ISDN داخلية"
-
-#: network/netconnect.pm:80 printer/printerdrake.pm:1622 standalone/drakups:72
-#, c-format
-msgid "Manual configuration"
-msgstr "تهيئة يدوية"
-
-#: network/netconnect.pm:81 standalone/drakroam:121
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr "IP آلي (BOOTP/DHCP)"
-
-#: network/netconnect.pm:83
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
-msgstr "IP آلي (BOOTP/DHCP/Zeroconf)"
-
-#: network/netconnect.pm:86
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "بروتوكول لبقية العالم"
-
-#: network/netconnect.pm:88 standalone/drakconnect:563
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "البروتوكول الأوروبي (EDSS1)"
-
-#: network/netconnect.pm:89 standalone/drakconnect:564
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"بروتوكول لبقية العالم\n"
-"لا D-Channel (خطوط مؤجرة)"
-
-# ../../standalone/harddrake2:1, c-format
-#: network/netconnect.pm:103 standalone/harddrake2:328
-#: standalone/net_monitor:102 standalone/net_monitor:103
-#: standalone/net_monitor:108
-#, c-format
-msgid "unknown"
-msgstr "مجهول"
-
-#: network/netconnect.pm:120 network/thirdparty.pm:220
-#, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "مودم Alcatel speedtouch USB"
-
-#: network/netconnect.pm:121
-#, c-format
-msgid "Sagem USB modem"
-msgstr "مودم Sagem USB"
-
-#: network/netconnect.pm:122
-#, c-format
-msgid "Bewan modem"
-msgstr "مودم Bewan"
-
-#: network/netconnect.pm:123
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr "مودم ECI Hi-Focus"
-
-#: network/netconnect.pm:127
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr "بروتوكول تهيئة المضيف الديناميكيّة (DHCP)"
-
-#: network/netconnect.pm:128
-#, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "تهيئة TCP/IP يدويّة"
-
-#: network/netconnect.pm:129
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr "بروتوكول النفق من نقطة إلى نقطة (PPTP)"
-
-#: network/netconnect.pm:130
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr "PPP عبر Ethernet (PPPoE)"
-
-#: network/netconnect.pm:131
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr "PPP عبر ATM (PPPoA)"
-
-#: network/netconnect.pm:132
-#, c-format
-msgid "DSL over CAPI"
-msgstr "DSL عبر CAPI"
-
-#: network/netconnect.pm:136
-#, c-format
-msgid "Bridged Ethernet LLC"
-msgstr "Bridged Ethernet LLC"
-
-#: network/netconnect.pm:137
-#, c-format
-msgid "Bridged Ethernet VC"
-msgstr "Bridged Ethernet VC"
-
-#: network/netconnect.pm:138
-#, c-format
-msgid "Routed IP LLC"
-msgstr "Routed IP LLC"
-
-#: network/netconnect.pm:139
-#, c-format
-msgid "Routed IP VC"
-msgstr "Routed IP VC"
-
-#: network/netconnect.pm:140
-#, c-format
-msgid "PPPoA LLC"
-msgstr "PPPoA LLC"
-
-#: network/netconnect.pm:141
-#, c-format
-msgid "PPPoA VC"
-msgstr "PPPoA VC"
-
-#: network/netconnect.pm:145 standalone/drakconnect:498
-#, c-format
-msgid "Script-based"
-msgstr "مبني على نص برمجي"
-
-#: network/netconnect.pm:146 standalone/drakconnect:498
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: network/netconnect.pm:147 standalone/drakconnect:498
-#, c-format
-msgid "Terminal-based"
-msgstr "مبني على محطة طرفيّة"
-
-#: network/netconnect.pm:148 standalone/drakconnect:498
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: network/netconnect.pm:149 standalone/drakconnect:498
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: network/netconnect.pm:250 standalone/drakconnect:56
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "تهيئة الشّبكة والإنترنت"
-
-#: network/netconnect.pm:256
-#, c-format
-msgid "LAN connection"
-msgstr "وصلة LAN"
-
-#: network/netconnect.pm:257 network/netconnect.pm:276 standalone/drakroam:182
-#: standalone/drakroam:220 standalone/drakroam:223
-#, c-format
-msgid "Wireless connection"
-msgstr "اتّصال لاسلكي"
-
-#: network/netconnect.pm:258
-#, c-format
-msgid "ADSL connection"
-msgstr "وصلة ADSL"
-
-#: network/netconnect.pm:259
-#, c-format
-msgid "Cable connection"
-msgstr "وصلة كيبل"
-
-#: network/netconnect.pm:260
-#, c-format
-msgid "ISDN connection"
-msgstr "وصلة ISDN"
-
-#: network/netconnect.pm:261
-#, c-format
-msgid "Modem connection"
-msgstr "وصلة المودم"
-
-#: network/netconnect.pm:262
-#, c-format
-msgid "DVB connection"
-msgstr ""
-
-#: network/netconnect.pm:272
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "اختر الوصلة التي تريد تهيئتها"
-
-#: network/netconnect.pm:287 network/netconnect.pm:786
-#, c-format
-msgid "Connection Configuration"
-msgstr "تهيئة الاتصال"
-
-#: network/netconnect.pm:287 network/netconnect.pm:787
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "فضلاً املأ أو أشّر على الحقل أدناه"
-
-#: network/netconnect.pm:290
-#, c-format
-msgid "Your personal phone number"
-msgstr "رقم هاتفك الشخصي"
-
-#: network/netconnect.pm:291 network/netconnect.pm:790
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "اسم المزوّد (مثلاً provider.net("
-
-#: network/netconnect.pm:292 standalone/drakconnect:493
-#, c-format
-msgid "Provider phone number"
-msgstr "رقم هاتف المزوّد"
-
-#: network/netconnect.pm:293
-#, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "مُزوّد DNS 1 (اختياري)"
-
-#: network/netconnect.pm:294
-#, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "مُزوّد Provider DNS 2 (اختياري)"
-
-#: network/netconnect.pm:295 standalone/drakconnect:444
-#, c-format
-msgid "Dialing mode"
-msgstr "وضعية الإتصال"
-
-#: network/netconnect.pm:296 standalone/drakconnect:449
-#: standalone/drakconnect:517
-#, c-format
-msgid "Connection speed"
-msgstr "سرعة الإتصال"
-
-#: network/netconnect.pm:297 standalone/drakconnect:454
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "الوقت الأقصى للاتصال (بالثواني)"
-
-#: network/netconnect.pm:298 network/netconnect.pm:323
-#: network/netconnect.pm:793 standalone/drakconnect:491
-#, c-format
-msgid "Account Login (user name)"
-msgstr "اسم الدخول للحساب (اسم المستخدم)"
-
-#: network/netconnect.pm:299 network/netconnect.pm:324
-#: network/netconnect.pm:794 standalone/drakconnect:492
-#, c-format
-msgid "Account Password"
-msgstr "كلمة المرور للحساب"
-
-#: network/netconnect.pm:300 standalone/drakconnect:554
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ للبطاقة"
-
-#: network/netconnect.pm:301 standalone/drakconnect:555
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "ذاكرة البطاقة (DMA)"
-
-#: network/netconnect.pm:302 standalone/drakconnect:556
-#, c-format
-msgid "Card IO"
-msgstr "IO للبطاقة"
-
-#: network/netconnect.pm:303 standalone/drakconnect:557
-#, c-format
-msgid "Card IO_0"
-msgstr "IO_0 للبطاقة"
-
-#: network/netconnect.pm:304
-#, c-format
-msgid "Card IO_1"
-msgstr "IO_1 للبطاقة"
-
-#: network/netconnect.pm:319
-#, c-format
-msgid "Cable: account options"
-msgstr "كابل: خيارات الحساب"
-
-#: network/netconnect.pm:322
-#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr "استخدام BPALogin )مطلوبة لـTelstra)"
-
-#: network/netconnect.pm:348 network/netconnect.pm:670
-#: network/netconnect.pm:826 network/netconnect.pm:1170
-#, c-format
-msgid "Select the network interface to configure:"
-msgstr "اختيار واجهة الشبكة لتهيئتها:"
-
-#: network/netconnect.pm:350 network/netconnect.pm:385
-#: network/netconnect.pm:671 network/netconnect.pm:828 network/shorewall.pm:70
-#: standalone/drakconnect:714
-#, c-format
-msgid "Net Device"
-msgstr "جهاز الشبكة"
-
-#: network/netconnect.pm:351 network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr "مودم ISDN خارجي"
-
-#: network/netconnect.pm:384 standalone/harddrake2:215
-#, c-format
-msgid "Select a device!"
-msgstr "اختيار جهاز!"
-
-#: network/netconnect.pm:393 network/netconnect.pm:403
-#: network/netconnect.pm:413 network/netconnect.pm:446
-#: network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "تهيئة ISDN"
-
-#: network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "ما هو نوع البطاقة لديك؟"
-
-#: network/netconnect.pm:404
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"إذا كانت لديك بطاقة ISA، فإن القيم التي ستعرض على الشاشة التالية يجب أن تكون "
-"صحيحة.\n"
-"\n"
-"إذا كانت لديك بطاقة PCMCIA، يجب عليك أن تعرف قيم \"irq\" و \"io\" الخاصة "
-"ببطاقتك.\n"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "استمرار"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "إجهاض"
-
-#: network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "أي من الآتي هي بطاقة ISDN الخاصة بك؟"
-
-#: network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-"يتوفّر مشغّل CAPI لهذا المودم. قد يكون لدافعة CAPI هذه قدراتٍ أكثر من مشغل حرّ "
-"(كالقدرة على إرسال الفاكسات). أي المشغّلين تودّ استعماله؟"
-
-#: network/netconnect.pm:434 standalone/drakconnect:109 standalone/drakups:249
-#: standalone/harddrake2:133
-#, c-format
-msgid "Driver"
-msgstr "المشغّل"
-
-#: network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "ما هو البروتوكول الذي تريد استخدامه؟"
-
-#: network/netconnect.pm:448 standalone/drakconnect:109
-#: standalone/drakconnect:300 standalone/drakconnect:562
-#: standalone/drakids:207 standalone/drakvpn:1128
-#, c-format
-msgid "Protocol"
-msgstr "البروتوكول"
-
-#: network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"اختر موفر الخدمة الخاص بك.\n"
-"ان لم يكن موجوداً في القائمة، اختر غير موجود."
-
-#: network/netconnect.pm:462 network/netconnect.pm:556
-#: network/netconnect.pm:707
-#, c-format
-msgid "Provider:"
-msgstr "المُزوّد:"
-
-#: network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"المودم لديك غير مدعوم من النظام.\n"
-"الق نظرة على http://www.linmodems.org"
-
-#: network/netconnect.pm:490
-#, c-format
-msgid "Select the modem to configure:"
-msgstr "اختر المودم لتهيئته:"
-
-#: network/netconnect.pm:525
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "الرجاء اختيار المنفذ التسلسلي المرتبط به المودم لديك."
-
-#: network/netconnect.pm:554
-#, c-format
-msgid "Select your provider:"
-msgstr "اختر مُزوّدك:"
-
-#: network/netconnect.pm:578
-#, c-format
-msgid "Dialup: account options"
-msgstr "الاتصال الهاتفي: خيارات الحساب"
-
-#: network/netconnect.pm:581
-#, c-format
-msgid "Connection name"
-msgstr "اسم الإتصال"
-
-#: network/netconnect.pm:582
-#, c-format
-msgid "Phone number"
-msgstr "رقم الهاتف"
-
-#: network/netconnect.pm:583
-#, c-format
-msgid "Login ID"
-msgstr "معرّف الدخول"
-
-#: network/netconnect.pm:598 network/netconnect.pm:631
-#, c-format
-msgid "Dialup: IP parameters"
-msgstr "الاتصال الهاتفي: مُعطيات IP"
-
-#: network/netconnect.pm:601
-#, c-format
-msgid "IP parameters"
-msgstr "مُعطيات IP"
-
-#: network/netconnect.pm:602 network/netconnect.pm:941
-#: printer/printerdrake.pm:460 standalone/drakconnect:109
-#: standalone/drakconnect:316 standalone/drakconnect:882
-#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:284
-#, c-format
-msgid "IP address"
-msgstr "عنوان IP"
-
-#: network/netconnect.pm:603
-#, c-format
-msgid "Subnet mask"
-msgstr "قناع الشّبكة الفرعيّة"
-
-#: network/netconnect.pm:615
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr "الاتصال الهاتفي: مُعطيات DNS"
-
-#: network/netconnect.pm:618
-#, c-format
-msgid "DNS"
-msgstr "DNS"
-
-#: network/netconnect.pm:619
-#, c-format
-msgid "Domain name"
-msgstr "اسم النطاق"
-
-#: network/netconnect.pm:620 network/netconnect.pm:791
-#: standalone/drakconnect:992
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "خادم DNS الأول (اختياري)"
-
-#: network/netconnect.pm:621 network/netconnect.pm:792
-#: standalone/drakconnect:993
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "خادم DNS الثاني (اختياري)"
-
-#: network/netconnect.pm:622
-#, c-format
-msgid "Set hostname from IP"
-msgstr "تحديد اسم المضيف من عنوان IP"
-
-#: network/netconnect.pm:634 standalone/drakconnect:327
-#, c-format
-msgid "Gateway"
-msgstr "البوّابة"
-
-#: network/netconnect.pm:635 standalone/drakroam:124
-#, c-format
-msgid "Gateway IP address"
-msgstr "عنوان IP للبوّابة"
-
-#: network/netconnect.pm:670
-#, c-format
-msgid "ADSL configuration"
-msgstr "إعداد ADSL"
-
-#: network/netconnect.pm:705
-#, c-format
-msgid "Please choose your ADSL provider"
-msgstr "الرجاء اختيار مُزوّدك بـADSL"
-
-#: network/netconnect.pm:735
-#, c-format
-msgid ""
-"Please choose your DSL connection type.\n"
-"If you do not know it, keep the preselected type."
-msgstr ""
-
-#: network/netconnect.pm:738
-#, c-format
-msgid "ADSL connection type:"
-msgstr "نوع وصلة ADSL:"
-
-#: network/netconnect.pm:796
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr "رقم تعريف المسار الوهمي (VPI):"
-
-#: network/netconnect.pm:797
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr "رقم تعريف الدّارة الوهميّة (VCI):"
-
-#: network/netconnect.pm:800
-#, c-format
-msgid "Encapsulation:"
-msgstr "التّضمين:"
-
-#: network/netconnect.pm:830
-#, c-format
-msgid "Manually load a driver"
-msgstr "تحميل المُشغّل يدوياً"
-
-#: network/netconnect.pm:831
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr "استخدام مشغّل ويندوز (مع ndiswrapper("
-
-#: network/netconnect.pm:896
-#, c-format
-msgid "Zeroconf hostname resolution"
-msgstr "ترجمة اسم مضيف Zeroconf"
-
-#: network/netconnect.pm:897 network/netconnect.pm:928
-#, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "جاري تهيئة جهاز الشبكة %s (مشغّل %s)"
-
-#: network/netconnect.pm:898
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use"
-msgstr ""
-"البروتوكولات التّالية يمكن استخدامها لتهيئة اتصال LAN. الرجاء اختيار "
-"البروتوكول الذي تريد استخدامه"
-
-#: network/netconnect.pm:929
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"الرجاء إدخال تهيئة IP الخاصة بهذه الماكينة.\n"
-"كل مادة يجب إدخالها كعنوان IP بشكل منقوط\n"
-"(مثلاً، 1.2.3.4(."
-
-#: network/netconnect.pm:936 standalone/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "تعيين اسم المضيف من عنوان DHCP"
-
-#: network/netconnect.pm:937 standalone/drakconnect:375
-#, c-format
-msgid "DHCP host name"
-msgstr "اسم مضيف DHCP"
-
-#: network/netconnect.pm:942 standalone/drakconnect:321
-#: standalone/drakconnect:883 standalone/drakgw:181
-#, c-format
-msgid "Netmask"
-msgstr "قناع الشبكة"
-
-#: network/netconnect.pm:944 standalone/drakconnect:437
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "تتبع هوية بطاقة الشبكة (مفيد للحاسبات الدفترية)"
-
-#: network/netconnect.pm:945 standalone/drakconnect:438
-#, c-format
-msgid "Network Hotplugging"
-msgstr "القبْس السريع للشبكة"
-
-#: network/netconnect.pm:947 standalone/drakconnect:432
-#, c-format
-msgid "Start at boot"
-msgstr "البدء عند الإقلاع"
-
-#: network/netconnect.pm:949 standalone/drakconnect:460
-#, c-format
-msgid "Metric"
-msgstr "متري"
-
-#: network/netconnect.pm:950
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr ""
-
-#: network/netconnect.pm:952 standalone/drakconnect:369
-#: standalone/drakconnect:886
-#, c-format
-msgid "DHCP client"
-msgstr "عميل DHCP"
-
-#: network/netconnect.pm:954 standalone/drakconnect:379
-#, fuzzy, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "الوقت الأقصى للاتصال (بالثواني)"
-
-#: network/netconnect.pm:955 standalone/drakconnect:382
-#, fuzzy, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "عنوان IP لخادم DNS"
-
-#: network/netconnect.pm:956 standalone/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:957 standalone/drakconnect:384
-#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:965 printer/printerdrake.pm:1876
-#: standalone/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "عنوان IP يجب أن يكون بنسق 1.2.3.4"
-
-#: network/netconnect.pm:969 standalone/drakconnect:680
-#, fuzzy, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "عنوان البوابات يجب أن تكون على النسق 1.2.3.4"
-
-#: network/netconnect.pm:973
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr "تحذير: عنوان الـ IP %s عادة ما يكون محفوظاً!"
-
-#: network/netconnect.pm:978 standalone/drakTermServ:1927
-#: standalone/drakTermServ:1928 standalone/drakTermServ:1929
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s قيد الاستخدام مسبقاً\n"
-
-#: network/netconnect.pm:1018
-#, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "اختيار مشغّل ndiswrapper"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr ""
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Install a new driver"
-msgstr "تثبيت مشغّل جديد"
-
-#: network/netconnect.pm:1032
-#, c-format
-msgid "Select a device:"
-msgstr ""
-
-#: network/netconnect.pm:1061
-#, c-format
-msgid "Please enter the wireless parameters for this card:"
-msgstr "الرجاء إدخال مُعطيات اللاسلكيّة لهذه البطاقة:"
-
-#: network/netconnect.pm:1064 standalone/drakconnect:404
-#: standalone/drakroam:52
-#, c-format
-msgid "Operating Mode"
-msgstr "وضعية التّشغيل"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Ad-hoc"
-msgstr "مُصطنع"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Managed"
-msgstr "مُدار"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Master"
-msgstr "رئيسي"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Repeater"
-msgstr "مُكرّر"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Secondary"
-msgstr "ثانوي"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Auto"
-msgstr "آلي"
-
-#: network/netconnect.pm:1068 standalone/drakconnect:405
-#: standalone/drakroam:115
-#, c-format
-msgid "Network name (ESSID)"
-msgstr "إسم الشّبكة (ESSID)"
-
-#: network/netconnect.pm:1069 standalone/drakroam:116
-#, c-format
-msgid "Encryption mode"
-msgstr ""
-
-#: network/netconnect.pm:1074
-#, c-format
-msgid "Allow access point roaming"
-msgstr ""
-
-#: network/netconnect.pm:1076 standalone/drakconnect:406
-#, c-format
-msgid "Network ID"
-msgstr "رقم مُعرّف الشّبكة"
-
-#: network/netconnect.pm:1077 standalone/drakconnect:407
-#, c-format
-msgid "Operating frequency"
-msgstr "تردّد التّشغيل"
-
-#: network/netconnect.pm:1078 standalone/drakconnect:408
-#, c-format
-msgid "Sensitivity threshold"
-msgstr "عتبة الحساسية"
-
-#: network/netconnect.pm:1079 standalone/drakconnect:409
-#, c-format
-msgid "Bitrate (in b/s)"
-msgstr "معدّل البث (بِتْ/ث)"
-
-#: network/netconnect.pm:1080 standalone/drakconnect:420
-#, c-format
-msgid "RTS/CTS"
-msgstr "RTS/CTS"
-
-#: network/netconnect.pm:1081
-#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
-"يضيف RTS/CTS المُصافحة قبل كل بثّ رزم للتّأكّد من أنّ\n"
-"القناة آمنة للإرسال. يضيف هذا ضغطاً، ولكن يزيد الأداء في حالة وجود\n"
-"نقاط اتّصال مخفيّة أو عدد كبير من نقاط الاتصال النّشطة. يحدّد هذا المُعطى\n"
-"الرزمة الأصغر التّي ترسل لها نقطة الاتصال RTS، والتي هي قيمة مساوية لأكبر\n"
-"حجم رزمة تُعطّل المخطّط. يمكنك أيضاً تحديد هذا المُعطى بتلقائي،\n"
-"ثابت أو معطّل."
-
-#: network/netconnect.pm:1088 standalone/drakconnect:421
-#, c-format
-msgid "Fragmentation"
-msgstr "مستوى التّجزّء"
-
-#: network/netconnect.pm:1089 standalone/drakconnect:422
-#, c-format
-msgid "iwconfig command extra arguments"
-msgstr "المُعطيات الإضافية لأمر iwconfig"
-
-#: network/netconnect.pm:1090
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-"هنا، يمكن تهيئة مُعاملات إضافيّة للتشبيك اللاسلكي مثل:\n"
-"ap، channel، commit، enc، power، retry، sens، txpower )nick محدّد مسبّقا كإسم "
-"المضيف).\n"
-"\n"
-"راجع صفحة الدّليل iwconfig(8) للمزيد من المعلومات."
-
-#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1097 standalone/drakconnect:423
-#, c-format
-msgid "iwspy command extra arguments"
-msgstr "المُعطيات الإضافيّة لأمر iwspy"
-
-#: network/netconnect.pm:1098
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-"يستخدم iwspy لتحديد قائمة من العناوين لواجهة الشبكة اللاسلكيّة\n"
-"ولقراءة معرومات جودة الاتصال لكل من هذه.\n"
-"\n"
-"هذه المعلومات هي نفسها كالتي متوفّرة في /proc/net/wireless :\n"
-"جودة الاتصال، قوّة الإشارة ومستوى الضّوضاء.\n"
-"\n"
-"رجاع صفحة دليل iwpspy)8( للمزيد من المعلومات."
-
-#: network/netconnect.pm:1107 standalone/drakconnect:424
-#, c-format
-msgid "iwpriv command extra arguments"
-msgstr "المُعطيات الإضافيّة لأمر iwpriv"
-
-#: network/netconnect.pm:1108
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-"يمكنك iwpriv من إعداد المُعطيات الاختياريّة (الخاصّة) لواجهة الشّبكة\n"
-"اللّاسلكيّة.\n"
-"\n"
-"يتعامل iwpriv مع المُعطيات وتحديد الخواصّ لكل مشغّل (بعكس\n"
-"iwconfig والذي يتعامل مع الأشياء العامّة).\n"
-"\n"
-"نظريّاً، يجب أن يُبيّن مواثقة كلّ مشغّل جهاز كيفيّة استخدام\n"
-"الأوامر الخاصّة بكل واجهة وتأثيرها.\n"
-"\n"
-"راجع صفحة دليل iwpriv(8) للمزيد من المعلومات."
-
-#: network/netconnect.pm:1123
-#, c-format
-msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
-msgstr ""
-"يجب أن يكون للتردّد اللاحقة k، أو M أو G (مثلاً، \"2.46G\" للتردّد 2.46 GHz(، "
-"أو إضافة أصفار كافية."
-
-#: network/netconnect.pm:1127
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-"يجب أن يكون للمعدّل اللاحقة k، أو M أو G (مثلاً، \"11M\" للمعدّل 11M)، أو إضافة "
-"أصفار كافية."
-
-#: network/netconnect.pm:1170
-#, c-format
-msgid "DVB configuration"
-msgstr ""
-
-#: network/netconnect.pm:1171
-#, c-format
-msgid "DVB Adapter"
-msgstr ""
-
-#: network/netconnect.pm:1188
-#, c-format
-msgid "DVB adapter settings"
-msgstr ""
-
-#: network/netconnect.pm:1191
-#, c-format
-msgid "Adapter card"
-msgstr ""
-
-#: network/netconnect.pm:1192
-#, c-format
-msgid "Net demux"
-msgstr ""
-
-#: network/netconnect.pm:1193
-#, c-format
-msgid "PID"
-msgstr "رمز المهمة"
-
-#: network/netconnect.pm:1221
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"الرجاء إدخال اسم المضيف.\n"
-"يجب أن يكون اسم المضيف صالحاً و كاملاً،\n"
-"مثل ``mybox.mylab.myco.com''.\n"
-"يمكنك أيضاً إدخال عنوان IP الخاص بالبوابة ان وُجدت."
-
-#: network/netconnect.pm:1226
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr "أخيراً وليس آخراً يمكنك أيضاً أن تدخل عناوين IP لخادمات DNS."
-
-#: network/netconnect.pm:1228 standalone/drakconnect:991
-#, c-format
-msgid "Host name (optional)"
-msgstr "اسم المضيف (اختياري)"
-
-#: network/netconnect.pm:1228 standalone/drakhosts:197
-#, c-format
-msgid "Host name"
-msgstr "اسم المضيف"
-
-#: network/netconnect.pm:1230
-#, c-format
-msgid "DNS server 1"
-msgstr "خادم DNS 1"
-
-#: network/netconnect.pm:1231
-#, c-format
-msgid "DNS server 2"
-msgstr "خادم DNS 2"
-
-#: network/netconnect.pm:1232
-#, c-format
-msgid "DNS server 3"
-msgstr "خادم DNS 3"
-
-#: network/netconnect.pm:1233
-#, c-format
-msgid "Search domain"
-msgstr "نطاق البحث"
-
-#: network/netconnect.pm:1234
-#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr "بشكل افتراضي سيتمّ تحديد نطاق البحث من اسم المضيف المهيّء بالكامل"
-
-#: network/netconnect.pm:1235
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "البوابة (مثلاً %s)"
-
-#: network/netconnect.pm:1237
-#, c-format
-msgid "Gateway device"
-msgstr "جهاز البوابة"
-
-#: network/netconnect.pm:1246
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "عنوان خادم DNS يجب أن يكون على النسق 1.2.3.4"
-
-#: network/netconnect.pm:1251 standalone/drakconnect:685
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "عنوان البوابات يجب أن تكون على النسق 1.2.3.4"
-
-#: network/netconnect.pm:1264
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-"إن أردت، أدخل إسم مضيف Zeroconf.\n"
-"هذا هو الإسم الّذي سيستعمله حاسبك للتّشهير\n"
-"بأيّة من خدماته المشتركة و الّتي لا تديرها الشّبكة.\n"
-"غير ضروري على معظم الشّبكات."
-
-#: network/netconnect.pm:1268
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "اسم مضيف Zeroconf"
-
-#: network/netconnect.pm:1271
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "يجب أن يحتوي اسم مضيف Zeroconf على . (نقطة("
-
-#: network/netconnect.pm:1281
-#, fuzzy, c-format
-msgid "Do you want to allow users to start the connection?"
-msgstr "هل تريد بدء الاتصال عند الإقلاع؟"
-
-#: network/netconnect.pm:1294
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "هل تريد بدء الاتصال عند الإقلاع؟"
-
-#: network/netconnect.pm:1310
-#, c-format
-msgid "Automatically at boot"
-msgstr "آليا عند الإقلاع"
-
-#: network/netconnect.pm:1312
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr "باستعمال بريمج الشّبكة (Net Applet( في درج النّظام"
-
-#: network/netconnect.pm:1314
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr "يدويا (ستمكّن الواجهة عند الإقلاع رغم هذا)"
-
-#: network/netconnect.pm:1323
-#, c-format
-msgid "How do you want to dial this connection?"
-msgstr "كيف تريد طلب هذا الاتصال؟"
-
-#: network/netconnect.pm:1336
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "هل تريد أن تحاول أن تتصل بالإنترنت الآن؟"
-
-#: network/netconnect.pm:1344 standalone/drakconnect:1023
-#, c-format
-msgid "Testing your connection..."
-msgstr "اختبار الوصلة..."
-
-#: network/netconnect.pm:1369
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "النظام الآن متصل بالإنترنت"
-
-#: network/netconnect.pm:1370
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "لأسباب أمنية، سيتم قطع الإتصال الآن."
-
-#: network/netconnect.pm:1371
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"لا يبدو أن النظام متصل بالإنترنت.\n"
-"حاول إعادة تهيئة الوصلة."
-
-#: network/netconnect.pm:1386
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-"تهانينا، انتهت تهيئة الشبكة و الإنترنت.\n"
-"\n"
-
-#: network/netconnect.pm:1389
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"بعد عمل ذلك، ننصح بإعادة تشغيل بيئة X لديك لتفادي أي مشاكل تتعلق بإسم المضيف."
-
-#: network/netconnect.pm:1390
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-"ظهرت مشاكل أثناء التهيئة.\n"
-"اختبر الوصلة باستخدام net_monitor أو mcc. إذا لم تعمل الوصلة، فقد تريد إعادة "
-"التهيئة."
-
-#: network/netconnect.pm:1402
-#, c-format
-msgid "(detected on port %s)"
-msgstr "(اكتشاف على المنفذ %s)"
-
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected %s)"
-msgstr "(اكتشف %s)"
-
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected)"
-msgstr "(تم اكتشافه)"
-
-#: network/netconnect.pm:1405
-#, c-format
-msgid "Network Configuration"
-msgstr "تهيئة الشبكة"
-
-#: network/netconnect.pm:1406
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"لأنك تقوم بالتثبيت عبر الشبكة، فقد تمت تهيئة الشبكة مسبقاً.\n"
-"اضغط موافق لحفظ التهيئة الخاصة بك، أو اضغط إلغاء لإعادة تهيئة وصلات الإنترنت "
-"و الشبكة.\n"
-
-#: network/netconnect.pm:1409
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr "يجب إعادة تشغيل الشبكة. هل تريد إعادة تشغيلها؟"
-
-#: network/netconnect.pm:1410
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"ظهرت مشكلة أثناء إعادة تشغيل الشبكة: \n"
-"\n"
-"%s"
-
-#: network/netconnect.pm:1411
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-"سوف نقوم الآن بتهيئة الاتّصال %s\n"
-"\n"
-"\n"
-"اضغط \"%s\" لتستمرّ."
-
-#: network/netconnect.pm:1412
-#, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr "تم الانتهاء من التهيئة، هل تريد تطبيق الإعدادات ؟"
-
-#: network/netconnect.pm:1413
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"لقد قمت بتهيئة طرق متعددة للإتصال بالإنترنت.\n"
-"اختر الطريقة التي تريد استخدامها.\n"
-"\n"
-
-#: network/netconnect.pm:1414
-#, c-format
-msgid "Internet connection"
-msgstr "وصلة انترنت"
-
-#: network/netconnect.pm:1428
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-"حدث خطأ غير متوقّع:\n"
-"%s"
-
-#: network/network.pm:411
-#, c-format
-msgid "Proxies configuration"
-msgstr "تهيئة البروكسي"
-
-#: network/network.pm:412
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-
-#: network/network.pm:413
-#, c-format
-msgid "HTTP proxy"
-msgstr "بروكسي HTTP"
-
-#: network/network.pm:414
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: network/network.pm:415
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: network/network.pm:416
-#, c-format
-msgid "FTP proxy"
-msgstr "بروكسي FTP"
-
-#: network/network.pm:420
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "البروكسي يجب أن يكون http://..."
-
-#: network/network.pm:421
-#, c-format
-msgid "Proxy should be https?://..."
-msgstr ""
-
-#: network/network.pm:422
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "يجب أن يبدأ العنوان بـ 'ftp:' أو 'http:'"
-
-#: network/shorewall.pm:55
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-"الرجاء إدخال اسم الواجهة المتصلة بالإنترنت.\n"
-"\n"
-"أمثلة:\n"
-"\t\tppp+ لوصلات المودم و DSL، \n"
-"\t\teth0، أو eth1 لوصلات الكيبل، \n"
-"\t\tippp+ لوصلات ISDN.\n"
-
-#: network/thirdparty.pm:232
-#, fuzzy, c-format
-msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
-msgstr ""
-"تحتاج إلى alcatel microcode.\n"
-"قم بتنزيلها على\n"
-"%s\n"
-"و انسخ الملف mgmt.o إلى /usr/share/speedtouch"
-
-#: network/thirdparty.pm:241
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-"مودم ECI Hi-Focus لا يمكن دعمه بسبب مشكلة توزيع المُشغّل المُجمّع.\n"
-"\n"
-"يمكنك العثور على المُشغّلات على الموقع http://eciadsl.flashtux.org/"
-
-#: network/thirdparty.pm:321
-#, fuzzy, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "تعذر تثبيت حزم %s!"
-
-#: network/thirdparty.pm:329
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr ""
-
-#: network/thirdparty.pm:330
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-
-#: network/thirdparty.pm:332
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-
-#: network/thirdparty.pm:372
-#, fuzzy, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "حذف الخطوط من النظام"
-
-#: network/thirdparty.pm:374
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr ""
-
-#: network/thirdparty.pm:384
-#, c-format
-msgid "Insert floppy"
-msgstr "أدخل قرص مرن"
-
-#: network/thirdparty.pm:385
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"أدخل قرص مرن منسّق على نظام ملفات FAT في السواقة %s مع %s في الدّليل الجذري "
-"واضغط %s"
-
-#: network/thirdparty.pm:395
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "خطأ في الوصول إلى القرص المرن، لم يمكن تجهيز الجهاز %s"
-
-#: network/thirdparty.pm:405
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-"تحتاج إلى Alcatel microcode.\n"
-"يمكنك تزويدها الآن عبر قرص مرن أو تجزيء ويندوز،\n"
-"أو تخطّى هذا وافعله لاحقاً."
-
-#: network/thirdparty.pm:409 network/thirdparty.pm:411
-#, c-format
-msgid "Use a floppy"
-msgstr "استخدام قرص مرن"
-
-#: network/thirdparty.pm:409
-#, c-format
-msgid "Use my Windows partition"
-msgstr "جاري تغيير حجم تجزيء ويندوز"
-
-#: network/thirdparty.pm:419
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "فشل نسخ Firmware، لم يُعثر على الملفّ %s"
-
-#: network/thirdparty.pm:424 standalone/drakautoinst:250
-#: standalone/drakvpn:888 standalone/scannerdrake:422
-#, c-format
-msgid "Congratulations!"
-msgstr "تهانينا!"
-
-#: network/thirdparty.pm:424
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "نجح نسخ Firmware"
-
-#: network/thirdparty.pm:493
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr ""
-
-#: network/thirdparty.pm:498
-#, fuzzy, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "الرجاء الانتظار، جاري اكتشاف وتهيئة الأجهزة..."
-
-#: network/wireless.pm:8
-#, c-format
-msgid "Open WEP"
-msgstr ""
-
-#: network/wireless.pm:9
-#, c-format
-msgid "Restricted WEP"
-msgstr ""
-
-#: network/wireless.pm:10
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr ""
-
-#: partition_table.pm:391
+#: partition_table.pm:390
#, c-format
msgid "mount failed: "
msgstr "فشل التركيب: "
-#: partition_table.pm:496
+#: partition_table.pm:500
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "التجزيئات الممتدة غير مدعومة على هذه البيئة"
-#: partition_table.pm:514
+#: partition_table.pm:518
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
@@ -11666,22 +5039,27 @@ msgstr ""
"الحل الوحيد هو أن تنقل التجزيئات الأساسية لتحصل على المساحة بين التجزيئات "
"الممتدة."
-#: partition_table.pm:605
+#: partition_table.pm:597
+#, c-format
+msgid "Error reading file %s"
+msgstr "خطأ في قراءة الملف %s"
+
+#: partition_table.pm:604
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "فشلت الإستعادة من الملف %s: %s"
-#: partition_table.pm:607
+#: partition_table.pm:606
#, c-format
msgid "Bad backup file"
msgstr "ملف نسخ احتياطي سيئ"
-#: partition_table.pm:627
+#: partition_table.pm:626
#, c-format
msgid "Error writing to file %s"
msgstr "خطأ أثناء الكتابة إلى الملف %s"
-#: partition_table/raw.pm:253
+#: partition_table/raw.pm:264
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
@@ -11693,3425 +5071,47 @@ msgstr ""
"لقد فشل اختبار للتأكد من صحة البيانات. \n"
"هذا يعني أن كتابة أي شئ على هذا القرص سينتهي ببيانات عشوائية و فاسدة."
-#: pkgs.pm:21
-#, c-format
-msgid "must have"
-msgstr "يجب أن يكون لديك"
-
-#: pkgs.pm:22
-#, c-format
-msgid "important"
-msgstr "مهم"
-
-#: pkgs.pm:23
-#, c-format
-msgid "very nice"
-msgstr "ظريف جداً"
-
-#: pkgs.pm:24
-#, c-format
-msgid "nice"
-msgstr "ظريف"
-
-#: pkgs.pm:25
-#, c-format
-msgid "maybe"
-msgstr "ربما"
-
-#: pkgs.pm:474
-#, fuzzy, c-format
-msgid "Downloading file %s..."
-msgstr "جاري ارسال الملفات..."
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on %s)"
-msgstr "(على %s)"
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on this machine)"
-msgstr "(على هذا الجهاز)"
-
-#: printer/cups.pm:117 standalone/printerdrake:200
-#, c-format
-msgid "Configured on other machines"
-msgstr "مُهيّء على أجهزة أخرى"
-
-#: printer/cups.pm:119
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "على خادم CUPS \"%s\""
-
-#: printer/cups.pm:119 printer/printerdrake.pm:4909
-#: printer/printerdrake.pm:4919 printer/printerdrake.pm:5078
-#: printer/printerdrake.pm:5089 printer/printerdrake.pm:5303
-#, c-format
-msgid " (Default)"
-msgstr " (افتراضي)"
-
-#: printer/data.pm:67
-#, c-format
-msgid "PDQ - Print, Do not Queue"
-msgstr "PDQ - Print, Do not Queue"
-
-#: printer/data.pm:68
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: printer/data.pm:80
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: printer/data.pm:81
-#, c-format
-msgid "LPD"
-msgstr "LPD"
-
-#: printer/data.pm:102
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: printer/data.pm:103
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
-
-#: printer/data.pm:128
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: printer/data.pm:158
-#, c-format
-msgid "CUPS - Common Unix Printing System (remote server)"
-msgstr "CUPS - Common Unix Printing System (الخادم البعيد)"
-
-#: printer/data.pm:159
-#, c-format
-msgid "Remote CUPS"
-msgstr "خادم CUPS بعيد"
-
-#: printer/detect.pm:168 printer/detect.pm:263 printer/detect.pm:498
-#: printer/detect.pm:571 printer/main.pm:330 printer/main.pm:692
-#: printer/main.pm:1815 printer/printerdrake.pm:960
-#: printer/printerdrake.pm:1120 printer/printerdrake.pm:2448
-#: printer/printerdrake.pm:4004
-#, c-format
-msgid "Unknown model"
-msgstr "طراز غير معروف"
-
-#: printer/main.pm:24
-#, c-format
-msgid "Local printer"
-msgstr "طابعة محلية"
-
-#: printer/main.pm:25
-#, c-format
-msgid "Remote printer"
-msgstr "طابعة بعيدة"
-
-#: printer/main.pm:26
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "طابعة على خادم CUPS بعيد"
-
-#: printer/main.pm:27 printer/printerdrake.pm:1360
-#: printer/printerdrake.pm:1899
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "طابعة على خادم lpd بعيد"
-
-#: printer/main.pm:28
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "طابعة شبكة (TCP/Socket("
-
-#: printer/main.pm:29
-#, fuzzy, c-format
-msgid "Printer on SMB/Windows server"
-msgstr "طابعة على خادم SMB/Windows 95/98/NT"
-
-#: printer/main.pm:30
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "طابعة على خادم NetWare"
-
-#: printer/main.pm:31 printer/printerdrake.pm:1903
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "أدخل URI الخاص بالطابعة"
-
-#: printer/main.pm:32
-#, c-format
-msgid "Pipe job into a command"
-msgstr "حوّل الوظيفة إلى الأمر"
-
-#: printer/main.pm:43
-#, c-format
-msgid "recommended"
-msgstr "مفضّل"
-
-#: printer/main.pm:355 standalone/printerdrake:199
-#, c-format
-msgid "Configured on this machine"
-msgstr "مُهيّء على هذا الجهاز"
-
-#: printer/main.pm:361 printer/printerdrake.pm:1445
-#, c-format
-msgid " on parallel port #%s"
-msgstr " على المنفذ المتوازي #%s"
-
-#: printer/main.pm:364 printer/printerdrake.pm:1448
-#, c-format
-msgid ", USB printer #%s"
-msgstr "، طابعة USB #%s"
-
-#: printer/main.pm:366
-#, c-format
-msgid ", USB printer"
-msgstr "، طابعة USB"
-
-#: printer/main.pm:370
-#, c-format
-msgid ", HP printer on a parallel port"
-msgstr "، طابعة HP على المنفذ المتوازي"
-
-#: printer/main.pm:372
-#, c-format
-msgid ", HP printer on USB"
-msgstr "، طابعة HP على منفذ USB"
-
-#: printer/main.pm:374
-#, c-format
-msgid ", HP printer on HP JetDirect"
-msgstr "، طابعة HP على HP JetDirect"
-
-#: printer/main.pm:376
-#, c-format
-msgid ", HP printer"
-msgstr "، طابعة HP"
-
-#: printer/main.pm:382
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr "، جهاز متعدد الوظائف على المنفذ المتوازي #%s"
-
-#: printer/main.pm:385
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr "، جهاز متعدد الوظائف على المنفذ المتوازي"
-
-#: printer/main.pm:387
-#, c-format
-msgid ", multi-function device on USB"
-msgstr "، جهاز متعدد الوظائف على منفذ USB"
-
-#: printer/main.pm:389
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr "، جهاز متعدد الوظائف على HP JetDirect"
-
-#: printer/main.pm:391
-#, c-format
-msgid ", multi-function device"
-msgstr "، جهاز متعدد الوظائف"
-
-#: printer/main.pm:395
-#, c-format
-msgid ", printing to %s"
-msgstr "، جاري الطباعة إلى %s"
-
-#: printer/main.pm:398
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr "على خادم LPD \"%s\"، الطابعة \"%s\""
-
-#: printer/main.pm:401
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr "، مضيف TCP/IP \"%s\"، المنفذ \"%s\""
-
-#: printer/main.pm:406
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr "على خادم SMB/Windows \"%s\"، المشاركة \"%s\""
-
-#: printer/main.pm:411
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " على خادم Novell \"%s\"، الطابعة \"%s\""
-
-#: printer/main.pm:414
-#, c-format
-msgid ", using command %s"
-msgstr "، باستخدام الأمر %s"
-
-#: printer/main.pm:429
-#, c-format
-msgid "Parallel port #%s"
-msgstr "المنفذ المتوازي #%s"
-
-#: printer/main.pm:432 printer/printerdrake.pm:1466
-#: printer/printerdrake.pm:1493 printer/printerdrake.pm:1508
-#, c-format
-msgid "USB printer #%s"
-msgstr "طابعة USB #%s"
-
-#: printer/main.pm:434
-#, c-format
-msgid "USB printer"
-msgstr "طابعة USB"
-
-#: printer/main.pm:438
-#, c-format
-msgid "HP printer on a parallel port"
-msgstr "طابعة HP على المنفذ المتوازي"
-
-#: printer/main.pm:440
-#, c-format
-msgid "HP printer on USB"
-msgstr "طابعة HP على منفذ USB"
-
-#: printer/main.pm:442
-#, c-format
-msgid "HP printer on HP JetDirect"
-msgstr "طابعة HP على HP JetDirect"
-
-#: printer/main.pm:444
-#, c-format
-msgid "HP printer"
-msgstr "طابعة HP"
-
-#: printer/main.pm:450
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "جهاز متعدد الوظائف على المنفذ المتوازي #%s"
-
-#: printer/main.pm:453
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "جهاز متعدد الوظائف على المنفذ المتوازي"
-
-#: printer/main.pm:455
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "جهاز متعدد الوظائف على منفذ USB"
-
-#: printer/main.pm:457
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "جهاز متعدد الوظائف على HP JetDirect"
-
-#: printer/main.pm:459
-#, c-format
-msgid "Multi-function device"
-msgstr "جهاز متعدد الوظائف"
-
-#: printer/main.pm:463
-#, c-format
-msgid "Prints into %s"
-msgstr "يطبع إلى %s"
-
-#: printer/main.pm:466
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "خادم LPD \"%s\"، الطابعة \"%s\""
-
-#: printer/main.pm:469
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "مضيف TCP/IP \"%s\"، المنفذ \"%s\""
-
-#: printer/main.pm:474
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "خادم SMB/ويندوز \"%s\"، المشاركة \"%s\""
-
-#: printer/main.pm:479
-#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "خادم Novell \"%s\"، الطابعة \"%s\""
-
-#: printer/main.pm:482
-#, c-format
-msgid "Uses command %s"
-msgstr "يستخدم الأمر %s"
-
-#: printer/main.pm:484
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
-
-#: printer/main.pm:689 printer/printerdrake.pm:1047
-#: printer/printerdrake.pm:3142
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "طابعة خام (لا مشغل)"
-
-#: printer/main.pm:1309 printer/printerdrake.pm:211
-#: printer/printerdrake.pm:223
-#, c-format
-msgid "Local network(s)"
-msgstr "الشبكة/الشبكات المحلية"
-
-#: printer/main.pm:1311 printer/printerdrake.pm:227
-#, c-format
-msgid "Interface \"%s\""
-msgstr "الواجهة \"%s\""
-
-#: printer/main.pm:1313
-#, c-format
-msgid "Network %s"
-msgstr "الشبكة %s"
-
-#: printer/main.pm:1315
-#, c-format
-msgid "Host %s"
-msgstr "المضيف %s"
-
-#: printer/main.pm:1344
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (المنفذ %s)"
-
-#: printer/main.pm:1945 printer/main.pm:2100
-#, c-format
-msgid "user-supplied"
-msgstr ""
-
-#: printer/main.pm:1949 printer/main.pm:2104
-#, c-format
-msgid "NEW"
-msgstr ""
-
-#: printer/printerdrake.pm:24
-#, c-format
-msgid ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"decompressing the self-extracting '.exe' file with the 'unzip' utility and "
-"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
-"printer' directory. There it will be found by the automatic uploader script "
-"and uploaded whenever the printer is connected and turned on.\n"
-msgstr ""
-"الطّابعة HP LaserJet 1000 تحتاج إلى تحميل firmware بعد تشغيلها. قم بتنزيل "
-"حزمة مشغّل ويندوز من موقع HP (حيث أن الـfirmware الموجود على القرص المدمج لا "
-"يعمل) وقم باستخراج ملف firmware منه بإزالة الضّغط عن ملف الاستخراج الذّاتي '."
-"exe' باستخدام أداة 'unzip' والبحث عن الملفّ 'sihp1000.img'. انسخ الملفّ إلى "
-"الدّليل '/etc/printer'. هناك ستجده شيفرة المُحمّل التّلقائيّة وسيحمّل حينما تكون "
-"الطّابعة متّصلة ومشغّلة.\n"
-
-#: printer/printerdrake.pm:67
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "إعدادات طابعات CUPS"
-
-#: printer/printerdrake.pm:68
-#, c-format
-msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessible by remote machines and by which remote machines."
-msgstr ""
-"هنا يمكنك أن تختار إن كان يجب للطابعات المتصلة بهذا الجهاز أن يكون ممكن "
-"الوصول إليهامن قبل الأجهزة الأخرى البعيدة ومن قبل أيّ منها."
-
-#: printer/printerdrake.pm:69
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-"يمكنك كذلك أن تقرر هنا إذا كانت الطابعات الموجودة على الأجهزة البعيدة أن "
-"تكون متوفرة آلياً لهذه الماكينة."
-
-#: printer/printerdrake.pm:72 printer/printerdrake.pm:506
-#: printer/printerdrake.pm:4542
-#, c-format
-msgid "Remote CUPS server and no local CUPS daemon"
-msgstr "خادم CUPS بعد بدون عفريت CUPS محلي"
-
-#: printer/printerdrake.pm:75
-#, c-format
-msgid "On"
-msgstr "يعمل"
-
-#: printer/printerdrake.pm:77 printer/printerdrake.pm:498
-#: printer/printerdrake.pm:525
-#, c-format
-msgid "Off"
-msgstr "متوقف"
-
-#: printer/printerdrake.pm:78 printer/printerdrake.pm:507
-#, c-format
-msgid ""
-"In this mode the local CUPS daemon will be stopped and all printing requests "
-"go directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-"في هذا الوضع سيتم إيقاف عفريت CUPS وستذهب كل طلبات الطباعة إلى الخادم المحدد "
-"أدناه. لاحظ أنّه ليس ممكناً تعريف صافّات طباعة محلّيّة وفي حال كان الخادم مُعطّلاً "
-"فلن يمكن الطباعة مطلقاً من هذه الماكينة."
-
-#: printer/printerdrake.pm:84
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "الطابعات على هذه الماكينة متوفرة للأجهزة الأخرى"
-
-#: printer/printerdrake.pm:89
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "اعثر على الطابعات الموجودة على الماكينات البعيدة آلياً"
-
-#: printer/printerdrake.pm:94
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "مشاركة الطابعات على المضيفات/الشبكات: "
-
-#: printer/printerdrake.pm:96
-#, c-format
-msgid "Custom configuration"
-msgstr "تهيئة مخصصة"
-
-#: printer/printerdrake.pm:101 standalone/scannerdrake:610
-#: standalone/scannerdrake:627
-#, c-format
-msgid "No remote machines"
-msgstr "لا أجهزة بعيدة"
-
-#: printer/printerdrake.pm:112
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "خادمات CUPS الإضافية: "
-
-#: printer/printerdrake.pm:119
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"للوصول إلى الطابعات على خادمات CUPS البعيدة في شبكتك المحلية تحتاج فقط إلى "
-"تشغيل خيار \"اعثر على الطابعات المتوفرة على الماكينات البعيدة\"؛ ستقوم "
-"خادمات CUPS بإعلام ماكينتك عن الطابعات الموجودة لديها. كافة الطابعات التي تم "
-"التعرف عليها من قِبل ماكينتك موجودة في قسم \"الطابعات البعيدة\" على نافذة "
-"Printerdrake الرئيسية. إذا لم تكن خادمات CUPS في شبكتك المحلية، فعليك أن "
-"تقوم بإدخال عناوين IP و أرقام المنافذ (اختياري) للحصول على معلومات الطابعات "
-"من الخادمات."
-
-#: printer/printerdrake.pm:127
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "وضعية طبع النصوص اليابانية"
-
-#: printer/printerdrake.pm:128
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in Japanese language. Only "
-"use this function if you really want to print text in Japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print Japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"تشغيل هذا الخيار يسمح بطباعة ملفات النصوص العادية باللغة اليابانية. استخدم "
-"هذه الميزة فقط إذا كنت تريد طباعة النصوص باليابانية، إذا تم تنشيط هذا الخيار "
-"لن يمكنك طباعة الحروف اللاتينية ذات العلامات و لن يمكنك تعديل الهوامش و حجم "
-"الخطوط الخ. هذا الإعداد يؤثر فقط على الطابعات المعرفة على هذه الماكينة. إذا "
-"كنت تريد طباعة النصوص اليابانية على طابعة بعيدة، يجب عليك تنشيط هذه الوظيفة "
-"على الطابعة البعيدة."
-
-#: printer/printerdrake.pm:135
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "تصحيح آلي لتهيئة CUPS"
-
-#: printer/printerdrake.pm:137
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"عند تشغيل هذا الخيار، فعند كل بداية تشغيل لـCUPS سيتم التأكد آلياً من ما\n"
-"\n"
-"- إذا كان LPD/LPRng مثبتاً، لن تتم الكتابة فوق /etc/printcap عن طريق CUPS\n"
-"\n"
-"- إذا كان /etc/cups/cupsd.conf مفقود، سيتم انشاؤه في هذه الحال\n"
-"\n"
-"- إذا كانت معلومات الطباعة منشورة، أي أنها لا تحتوي \"localhost\" كإسم "
-"للخادم.\n"
-"\n"
-"إذا كانت بعض هذه الإجراءات قد تسببت بمشاكل لك، عطّل هذا الخيار، لكن في هذه "
-"الحال عليك الإنتباه لهذه النقاط."
-
-#: printer/printerdrake.pm:161 printer/printerdrake.pm:236
-#, c-format
-msgid "Sharing of local printers"
-msgstr "مشاركة الطابعات المحلية"
-
-#: printer/printerdrake.pm:162
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-"هذه هي الماكينات و الشبكات التي يجب أن تكون الطابعات المحلية متوفرة لها:"
-
-#: printer/printerdrake.pm:173
-#, c-format
-msgid "Add host/network"
-msgstr "أضف مضيف/شبكة"
-
-#: printer/printerdrake.pm:179
-#, c-format
-msgid "Edit selected host/network"
-msgstr "تعديل المضيف/الشبكة المختارة"
-
-#: printer/printerdrake.pm:188
-#, c-format
-msgid "Remove selected host/network"
-msgstr "حذف المضيف/الشبكة المختارة"
-
-#: printer/printerdrake.pm:219 printer/printerdrake.pm:229
-#: printer/printerdrake.pm:241 printer/printerdrake.pm:248
-#: printer/printerdrake.pm:279 printer/printerdrake.pm:297
-#, c-format
-msgid "IP address of host/network:"
-msgstr "عنوان IP للمضيف/الشبكة:"
-
-#: printer/printerdrake.pm:237
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr "اختيار الشبكة أو المضيف الذي يجب أن تكون الطابعات المحلية متوفرة له:"
-
-#: printer/printerdrake.pm:244
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "عنوان IP للمضيف/الشبكة مفقود."
-
-#: printer/printerdrake.pm:252
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "عنوان IP المدُخل للمضيف/الشبكة غير صحيح.\n"
-
-#: printer/printerdrake.pm:253 printer/printerdrake.pm:429
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "أمثلة لعناوين IP صحيحة:\n"
-
-#: printer/printerdrake.pm:277
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr "هذا المضيف/الشبكة موجود في القائمة مسبقاً، لا يمكن إضافته مرة أخرى.\n"
-
-#: printer/printerdrake.pm:346 printer/printerdrake.pm:416
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "الوصول إلى الطابعات على خادمات CUPS البعيدة"
-
-#: printer/printerdrake.pm:347
-#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
-"أدخل هنا خادمات CUPS التي تريد استخدام طابعاتها. تحتاج إلى عمل ذلك فقط ان لم "
-"تقم الخادمات بنشر معلومات الطابعات على الشبك المحلية."
-
-#: printer/printerdrake.pm:358
-#, c-format
-msgid "Add server"
-msgstr "إضافة خادم"
-
-#: printer/printerdrake.pm:364
-#, c-format
-msgid "Edit selected server"
-msgstr "حرر الخادم المختار"
-
-#: printer/printerdrake.pm:373
-#, c-format
-msgid "Remove selected server"
-msgstr "إزالة الخادم المختار"
-
-#: printer/printerdrake.pm:417
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr "أدخل عنوان IP و منفذ المضيف الذي تريد استخدام طابعاته."
-
-#: printer/printerdrake.pm:418
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "إذا لم يتم إعطاء منفذ، سيتم اتخاذ 631 كمنفذ افتراضي."
-
-#: printer/printerdrake.pm:422
-#, c-format
-msgid "Server IP missing!"
-msgstr "IP الخادم مفقود!"
-
-#: printer/printerdrake.pm:428
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "عنوان IP المدُخل غير صحيح.\n"
-
-#: printer/printerdrake.pm:440 printer/printerdrake.pm:2133
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "يجب أن يكون رقم المنفذ رقماً صحيحاً!"
-
-#: printer/printerdrake.pm:451
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "هذا الخادم موجود في القائمة مسبقاً، لا يمكن اضافته مرة أخرى.\n"
-
-#: printer/printerdrake.pm:462 printer/printerdrake.pm:2160
-#: standalone/drakups:249 standalone/harddrake2:52
-#, c-format
-msgid "Port"
-msgstr "المنفذ"
-
-#: printer/printerdrake.pm:495 printer/printerdrake.pm:511
-#: printer/printerdrake.pm:526 printer/printerdrake.pm:530
-#: printer/printerdrake.pm:536
-#, c-format
-msgid "On, Name or IP of remote server:"
-msgstr "عليه، اسم أو IP الخادم البعيد:"
-
-#: printer/printerdrake.pm:514 printer/printerdrake.pm:4551
-#: printer/printerdrake.pm:4617
-#, c-format
-msgid "CUPS server name or IP address missing."
-msgstr "اسم خادم CUPS أو عنوان IP مفقود."
-
-#: printer/printerdrake.pm:566 printer/printerdrake.pm:586
-#: printer/printerdrake.pm:811 printer/printerdrake.pm:880
-#: printer/printerdrake.pm:901 printer/printerdrake.pm:927
-#: printer/printerdrake.pm:1023 printer/printerdrake.pm:1065
-#: printer/printerdrake.pm:1075 printer/printerdrake.pm:1110
-#: printer/printerdrake.pm:2220 printer/printerdrake.pm:2490
-#: printer/printerdrake.pm:2524 printer/printerdrake.pm:2575
-#: printer/printerdrake.pm:2582 printer/printerdrake.pm:2621
-#: printer/printerdrake.pm:2663 printer/printerdrake.pm:2700
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2984
-#: printer/printerdrake.pm:2989 printer/printerdrake.pm:3137
-#: printer/printerdrake.pm:3248 printer/printerdrake.pm:3862
-#: printer/printerdrake.pm:3929 printer/printerdrake.pm:3978
-#: printer/printerdrake.pm:3981 printer/printerdrake.pm:4091
-#: printer/printerdrake.pm:4149 printer/printerdrake.pm:4221
-#: printer/printerdrake.pm:4242 printer/printerdrake.pm:4252
-#: printer/printerdrake.pm:4342 printer/printerdrake.pm:4437
-#: printer/printerdrake.pm:4443 printer/printerdrake.pm:4471
-#: printer/printerdrake.pm:4578 printer/printerdrake.pm:4687
-#: printer/printerdrake.pm:4707 printer/printerdrake.pm:4716
-#: printer/printerdrake.pm:4731 printer/printerdrake.pm:4932
-#: printer/printerdrake.pm:5407 printer/printerdrake.pm:5490
-#: standalone/printerdrake:75 standalone/printerdrake:590
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: printer/printerdrake.pm:567 printer/printerdrake.pm:4150
-#: printer/printerdrake.pm:4688
-#, c-format
-msgid "Reading printer data..."
-msgstr "قراءة بيانات الطابعة..."
-
-#: printer/printerdrake.pm:587
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "إعادة تشغيل CUPS..."
-
-#: printer/printerdrake.pm:614
-#, c-format
-msgid ""
-"Allow pop-up windows, printer setup and package installation may be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:616
-#, c-format
-msgid ""
-"No pop-up windows, printer setup and package installation cannot be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:622
-#, fuzzy, c-format
-msgid "Printer auto administration"
-msgstr "تحقق آلي من الطابعات"
-
-#: printer/printerdrake.pm:623
-#, c-format
-msgid ""
-"Here you can configure printer administration tasks which should be done "
-"automatically."
-msgstr ""
-
-#: printer/printerdrake.pm:626
-#, fuzzy, c-format
-msgid "Do automatic configuration of new printers"
-msgstr "إعادة تهيئة آلية"
-
-#: printer/printerdrake.pm:627 printer/printerdrake.pm:641
-#, fuzzy, c-format
-msgid "when a USB printer is connected and turned on"
-msgstr " (تأكد من أن كل الطابعات موصولة و تعمل).\n"
-
-#: printer/printerdrake.pm:630
-#, fuzzy, c-format
-msgid "when Printerdrake is started"
-msgstr "هذه الطابعة مُعطّلة عن العمل"
-
-#: printer/printerdrake.pm:634
-#, c-format
-msgid "Mode for automatic printer setup:"
-msgstr ""
-
-#: printer/printerdrake.pm:640
-#, fuzzy, c-format
-msgid "Re-enable disabled printers"
-msgstr "الطابعات المتوفرة"
-
-#: printer/printerdrake.pm:644
-#, fuzzy, c-format
-msgid "when the printing system is started"
-msgstr "تغيير نظام الطباعة"
-
-#: printer/printerdrake.pm:680
-#, fuzzy, c-format
-msgid "Communication error handling for the printer \"%s\""
-msgstr "استخدام/صيانة الطابعة \"%s\""
-
-#: printer/printerdrake.pm:682
-#, c-format
-msgid ""
-"Here you can configure how errors during the communication between your "
-"computer and the printer \"%s\" should be handled (for example if the "
-"printer is not turned on)."
-msgstr ""
-
-#: printer/printerdrake.pm:686
-#, fuzzy, c-format
-msgid "The number of retries should be an integer number of at least 1!"
-msgstr "يجب أن يكون رقم المنفذ رقماً صحيحاً!"
-
-#: printer/printerdrake.pm:690
-#, fuzzy, c-format
-msgid "The delay between retries should be a positive integer number!"
-msgstr "وقت الانتهاء يجب أن يكون رقماً صحيحاً موجباً!"
-
-#: printer/printerdrake.pm:701
-#, fuzzy, c-format
-msgid "Do not disable the printer"
-msgstr "تعطيل الطابعة"
-
-#: printer/printerdrake.pm:704
-#, c-format
-msgid "Retry infinitely often"
-msgstr ""
-
-#: printer/printerdrake.pm:707
-#, fuzzy, c-format
-msgid "Number of retries"
-msgstr "عدد الأزرار"
-
-#: printer/printerdrake.pm:712
-#, c-format
-msgid "Delay between retries (in sec)"
-msgstr ""
-
-#: printer/printerdrake.pm:745 printer/printerdrake.pm:765
-#, c-format
-msgid "Select Printer Connection"
-msgstr "اختيار وصلة الطابعة"
-
-#: printer/printerdrake.pm:746
-#, c-format
-msgid "How is the printer connected?"
-msgstr "ما هي طريقة توصيل الطابعة؟"
-
-#: printer/printerdrake.pm:748
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"لا تحتاج إلى تهيئة الطابعات على خادمات CUPS البعيدة؛ هذه الطابعات يمكن "
-"اكتشلفها آلياً."
-
-#: printer/printerdrake.pm:751 printer/printerdrake.pm:4934
-#, c-format
-msgid ""
-"\n"
-"WARNING: No local network connection active, remote printers can neither be "
-"detected nor tested!"
-msgstr ""
-"\n"
-"تحذير: ليس هناك اتّصال شبكة نشط، فلا يمكن فحص أو استكشاف الطّابعات البعيدة!"
-
-#: printer/printerdrake.pm:758
-#, c-format
-msgid ""
-"Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"
-msgstr "التحقق الآلي من الطابعات (محلية، TCP/Socket، و SMB وعنوان URI للجهاز)"
-
-#: printer/printerdrake.pm:760
-#, c-format
-msgid "Modify timeout for network printer auto-detection"
-msgstr "انتهى وقت التعديل للاكتشاف الآلي للطابعة الشبكية"
-
-#: printer/printerdrake.pm:766
-#, c-format
-msgid "Enter the timeout for network printer auto-detection (in msec) here. "
-msgstr "أدخل وقت الانتهاء للاكتشاف الآلي للطابعة الشبكية (بالملي ثانية) هنا."
-
-#: printer/printerdrake.pm:768
-#, c-format
-msgid ""
-"The longer you choose the timeout, the more reliable the detections of "
-"network printers will be, but the scan can take longer then, especially if "
-"there are many machines with local firewalls in the network. "
-msgstr ""
-"كلما كانت وقت الانتهاء أطول، زادت فعالية اكتشافات الطابعات الشبكية، ولكن قد "
-"يستغرق هذا وقت أطول بسبب ذلك، خصوصاً إن كنت هناك العديد من الماكينات ذوات جدر "
-"نارية في الشبكة."
-
-#: printer/printerdrake.pm:772
-#, c-format
-msgid "The timeout must be a positive integer number!"
-msgstr "وقت الانتهاء يجب أن يكون رقماً صحيحاً موجباً!"
-
-#: printer/printerdrake.pm:811
-#, c-format
-msgid "Checking your system..."
-msgstr "التأكد من نظامك..."
-
-#: printer/printerdrake.pm:829
-#, c-format
-msgid "and one unknown printer"
-msgstr "وطابعة غير معروفة"
-
-#: printer/printerdrake.pm:831
-#, c-format
-msgid "and %d unknown printers"
-msgstr "و %d طابعات غير معروفة"
-
-#: printer/printerdrake.pm:835
-#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"الطابعات التالية\n"
-"\n"
-"%s%s\n"
-"متصلة مباشرةً بنظامك"
-
-#: printer/printerdrake.pm:837
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"الطابعات التالية\n"
-"\n"
-"%s%s\n"
-"متصلة مباشرةً بنظامك"
-
-#: printer/printerdrake.pm:838
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-"الطابعة التالية\n"
-"\n"
-"%s%s\n"
-"متصلة مباشرةً بنظامك"
-
-#: printer/printerdrake.pm:842
-#, c-format
-msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
-"\n"
-"توجد طابعة غير معروفة متصلة مباشرةً بنظامك"
-
-#: printer/printerdrake.pm:843
-#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
-"\n"
-"توجد %d طابعات غير معروفة متصلة مباشرةً بنظامك"
-
-#: printer/printerdrake.pm:846
-#, c-format
-msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "لم يتم العثور على طابعات متصلة مباشرةً بهذه الماكينة"
-
-#: printer/printerdrake.pm:849
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr " (تأكد من أن كل الطابعات موصولة و تعمل).\n"
-
-#: printer/printerdrake.pm:862
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
-"هل تريد تمكين الطباعة على الطابعات المذكورة أعلاه أم على الطابعات في الشبكة "
-"المحلية؟\n"
-
-#: printer/printerdrake.pm:863
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "هل تريد تمكين الطباعة على الطابعات في الشبكة المحلية؟\n"
-
-#: printer/printerdrake.pm:865
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "هل تريد تمكين الطباعة على الطابعات المذكورة أعلاه؟\n"
-
-#: printer/printerdrake.pm:866
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "هل أنت متأكد أنك تريد تنصيب الطباعة على هذه الماكينة؟\n"
-
-#: printer/printerdrake.pm:867
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
-"ملحوظة: اعتماداً على طراز الطابعة و نظام الطباعة فسيتم تثبيت حوالي %d "
-"ميغابايت من البرمجيات الإضافية."
-
-#: printer/printerdrake.pm:884
-#, c-format
-msgid "Do not setup printer automatically now, and never do it again"
-msgstr ""
-
-#: printer/printerdrake.pm:928
-#, c-format
-msgid "Searching for new printers..."
-msgstr "جاري البحث عن طابعات جديدة..."
-
-#: printer/printerdrake.pm:976
-#, c-format
-msgid "Do not setup printer automatically again"
-msgstr ""
-
-#
-#: printer/printerdrake.pm:983
-#, fuzzy, c-format
-msgid "New printers found"
-msgstr "لا توجد طابعة!"
-
-#
-#: printer/printerdrake.pm:984
-#, fuzzy, c-format
-msgid "New printer found"
-msgstr "لا توجد طابعة!"
-
-#: printer/printerdrake.pm:986
-#, c-format
-msgid ""
-"The following new printers were found and Printerdrake can automatically set "
-"them up for you. If you do not want to have all of them set up, unselect the "
-"ones which should be skipped, or click \"Cancel\" to set up none of them.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:987
-#, c-format
-msgid ""
-"The following new printer was found and printerdrake can automatically set "
-"it up for you. If you do not want to have it set up, unselect it, or click "
-"\"Cancel\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:988
-#, c-format
-msgid ""
-"Note that for certain printer models additional packages need to be "
-"installed. So keep your installation media handy.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1024 printer/printerdrake.pm:1066
-#, c-format
-msgid "Configuring printer on %s..."
-msgstr "جاري تهيئة الطابعة على \"%s\" ..."
-
-#: printer/printerdrake.pm:1049
-#, c-format
-msgid "("
-msgstr ")"
-
-#: printer/printerdrake.pm:1050
-#, c-format
-msgid " on "
-msgstr " على "
-
-#: printer/printerdrake.pm:1051 standalone/scannerdrake:137
-#, c-format
-msgid ")"
-msgstr "("
-
-#: printer/printerdrake.pm:1056 printer/printerdrake.pm:3149
-#, c-format
-msgid "Printer model selection"
-msgstr "إختيار وحدات الطابعة"
-
-#: printer/printerdrake.pm:1057 printer/printerdrake.pm:3150
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "ما هو نوع الطابعة لديك؟"
-
-#: printer/printerdrake.pm:1058
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-"\n"
-"\n"
-"لم يتمكن Printerdrake من التعرف على طراز طابعتك %s. الرجاء اختيار الطراز "
-"الصحيح من القائمة."
-
-#: printer/printerdrake.pm:1061 printer/printerdrake.pm:3155
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"إذا لم تكن طابعت موجودة في القائمة، الرجاء اختيار طابعة متوافقة (انظر دليل "
-"الطابعة) أو اختر طابعة مماثلة."
-
-#: printer/printerdrake.pm:1076 printer/printerdrake.pm:4708
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "جاري تهيئة الطابعة \"%s\" ..."
-
-#: printer/printerdrake.pm:1111
-#, c-format
-msgid ""
-"Now you have turned off automatic printer setup.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1112
-#, c-format
-msgid ""
-"You can turn it back on again by choosing \"%s\" -> \"%s\" in Printerdrake's "
-"main menu. "
-msgstr ""
-
-#: printer/printerdrake.pm:1112 printer/printerdrake.pm:4984
-#, fuzzy, c-format
-msgid "Configure Auto Administration"
-msgstr "الإدارة عن بعد"
-
-#: printer/printerdrake.pm:1113
-#, c-format
-msgid ""
-"There you can also choose in which situation automatic printer setup is done "
-"(On Printerdrake startup, on printing system startup, when connecting a new "
-"USB printer)."
-msgstr ""
-
-#: printer/printerdrake.pm:1261 printer/printerdrake.pm:1273
-#: printer/printerdrake.pm:1380 printer/printerdrake.pm:2401
-#: printer/printerdrake.pm:2460 printer/printerdrake.pm:2556
-#: printer/printerdrake.pm:4951 printer/printerdrake.pm:5138
-#, c-format
-msgid "Add a new printer"
-msgstr "إضافة طابعة جديدة"
-
-#: printer/printerdrake.pm:1262
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"أهلاً بكم في معالج تهيئة الطابعات\n"
-"\n"
-"هذا المرشد يسمح لك بتثبيت الطابعات المحلية أو البعيدة ليتم استخدامها من هذه "
-"الماكينة و من الماكينات الأخرى على الشبكة.\n"
-"\n"
-"يسألك المرشد عن كل المعلومات الأساسية لإعداد الطابعة و تعطيك القدرة على "
-"الوصول لكل مشغلات الطابعات و خيارات المُشغّلات و أنواع وصلات الطابعة."
-
-#: printer/printerdrake.pm:1275
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected. Also your network printer(s) and your Windows "
-"machines must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you do not "
-"need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"أهلاً بكم في معالج إعداد الطابعات\n"
-"هذا المرشد سيساعدك على تثبيت الطابعة/الطابعات الموصولة بهذا الحاسب أو "
-"الموصولة مباشرةً بالشبكة أو بماكينة ويندوز بعيدة.\n"
-"\n"
-"إذا كانت لديك طابعة/طابعات موصولة بهذه الماكينة، فضلاً قم بتوصيلها إلى هذا "
-"الحاسب و قم بتشغيلها كي يتم التحقق منها/منهم آلياً. أيضاً يجب أن تكون طابعة/"
-"طابعات الشبكة و أجهزة ويندوز موصولة و مشغّلة.\n"
-"\n"
-"لاحظ أن التحقق الآلي من الطابعات على الشبكة قد يستغرق وقتاً أطول من التحقق "
-"الآلي من الطابعات الموصولة بهذه الماكينة فقط. لذا قم بتعطيل التحقق الآلي من "
-"طابعات الشبكة و/أو الطابعات المستضافة من ويندوز إذا لم تكن تحتاج إلى هذه "
-"الميزة.\n"
-"\n"
-" اضغط \"التالي\" عندما تكون مستعداً، و على \"إلغاء\" إذا لم تكن تريد إعداد "
-"الطابعة/الطابعات الآن."
-
-#: printer/printerdrake.pm:1284
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"أهلاً بكم في معالج إعداد الطابعات\n"
-"\n"
-"هذا المرشد سيساعدك على تثبيت الطابعة/الطابعات الموصولة بهذا الحاسب.\n"
-"\n"
-"إذا كانت لديك طابعة/طابعات موصولة بهذه الماكينة، فضلاً قم بتوصيلها إلى هذا "
-"الحاسب و قم بتشغيلها كي يتم التحقق منها/منهم آلياً.\n"
-"\n"
-" اضغط \"التالي\" عندما تكون مستعداً، و على \"إلغاء\" إذا لم تكن تريد إعداد "
-"الطابعة/الطابعات الآن."
-
-#: printer/printerdrake.pm:1292
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you do not need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"أهلاً بكم في معالج إعداد الطابعات\n"
-"هذا المرشد سيساعدك على تثبيت الطابعة/الطابعات الموصولة بهذا الحاسب أو "
-"الموصولة مباشرةً بالشبكة.\n"
-"\n"
-"إذا كانت لديك طابعة/طابعات موصولة بهذه الماكينة، فضلاً قم بتوصيلها إلى هذا "
-"الحاسب و قم بتشغيلها كي يتم التحقق منها/منهم آلياً. أيضاً يجب أن تكون طابعة/"
-"طابعات الشبكة موصولة و مشغّلة.\n"
-"\n"
-"لاحظ أن التحقق الآلي من الطابعات على الشبكة قد يستغرق وقتاً أطول من التحقق "
-"الآلي من الطابعات الموصولة بهذه الماكينة فقط. لذا قم بتعطيل التحقق الآلي من "
-"طابعات الشبكة إذا لم تكن تحتاج إلى هذه الميزة.\n"
-"\n"
-" اضغط \"التالي\" عندما تكون مستعداً، و على \"إلغاء\" إذا لم تكن تريد إعداد "
-"الطابعة/الطابعات الآن."
-
-#: printer/printerdrake.pm:1301
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"أهلاً بكم في معالج إعداد الطابعات\n"
-"\n"
-"هذا المرشد سيساعدك على تثبيت الطابعة/الطابعات الموصولة بهذا الحاسب.\n"
-"\n"
-"إذا كانت لديك طابعة/طابعات موصولة بهذه الماكينة، فضلاً قم بتوصيلها إلى هذا "
-"الحاسب و قم بتشغيلها كي يتم التحقق منها/منهم آلياً.\n"
-"\n"
-" اضغط \"التالي\" عندما تكون مستعداً، و على \"إلغاء\" إذا لم تكن تريد إعداد "
-"الطابعة/الطابعات الآن."
-
-#: printer/printerdrake.pm:1352
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "تحقق أليا من الطابعات المتصلة بهذا الجهاز"
-
-#: printer/printerdrake.pm:1355
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "تحقّق آلياً من الطابعات الموصولة مباشرةً بالشبكة المحلية"
-
-#: printer/printerdrake.pm:1358
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr "تحقّق آلياً من الطابعات الموصولة بماكينات تعمل على ميكروسوفت ويندوز"
-
-#: printer/printerdrake.pm:1361
-#, fuzzy, c-format
-msgid "No auto-detection"
-msgstr "كشف آلي"
-
-#: printer/printerdrake.pm:1381
-#, c-format
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the %s Control Center."
-msgstr ""
-"\n"
-"تهانينا، تم تثبيت و تهيئة طابعتك!\n"
-"\n"
-"يمكنك الطباعة باستخدام أمر \"اطبع\" في تطبيقك (عادة في قائمة \"ملف\").\n"
-"\n"
-"إذا أردت إضافة أو إزالة، أو إعادة تسمية طابعة، أو إذا أردت تغيير خيارات "
-"الطابعة الإفتراضية (صينيّة إدخال الورق، جودة الطباعة،...)، اختر \"الطابعة\" "
-"في قسم \"العتاد\" في مركز تحكم %s."
-
-#: printer/printerdrake.pm:1417 printer/printerdrake.pm:1641
-#: printer/printerdrake.pm:1704 printer/printerdrake.pm:1796
-#: printer/printerdrake.pm:1934 printer/printerdrake.pm:2010
-#: printer/printerdrake.pm:2177 printer/printerdrake.pm:2268
-#: printer/printerdrake.pm:2277 printer/printerdrake.pm:2286
-#: printer/printerdrake.pm:2297 printer/printerdrake.pm:2496
-#: printer/printerdrake.pm:2633
-#, c-format
-msgid "Could not install the %s packages!"
-msgstr "تعذر تثبيت حزم %s!"
-
-#: printer/printerdrake.pm:1419
-#, c-format
-msgid "Skipping Windows/SMB server auto-detection"
-msgstr "جاري تخطّي استكشاف خادم ويندوز/SMB"
-
-#: printer/printerdrake.pm:1425 printer/printerdrake.pm:1564
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Printer auto-detection"
-msgstr "تحقق آلي من الطابعات"
-
-#: printer/printerdrake.pm:1425
-#, c-format
-msgid "Detecting devices..."
-msgstr "جاري التحقق من الأجهزة..."
-
-#: printer/printerdrake.pm:1451
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr "، طابعة شبكة \"%s\"، المنفذ %s"
-
-#: printer/printerdrake.pm:1454
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "، الطابعة \"%s\" على خادم SMB/Windows \"%s\""
-
-#: printer/printerdrake.pm:1458
-#, c-format
-msgid "Detected %s"
-msgstr "تم التحقق من %s"
-
-#: printer/printerdrake.pm:1463 printer/printerdrake.pm:1490
-#: printer/printerdrake.pm:1505
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "الطابعة على المنفذ المتوازي #%s"
-
-#: printer/printerdrake.pm:1469
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "طابعة شبكة \"%s\"، المنفذ %s"
-
-#: printer/printerdrake.pm:1472
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "الطابعة \"%s\" على خادم SMB/Windows \"%s\""
-
-#: printer/printerdrake.pm:1550
-#, c-format
-msgid "Local Printer"
-msgstr "طابعة محلية"
-
-#: printer/printerdrake.pm:1551
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"لم يعثر على طابعة محلية! لتثبيت طابعة يدوياً ادخل اسم جهاز/اسم ملف في حقل "
-"الإدخال (الطابعات المتوازية: /dev/lp0، /dev/lp1، ...، مماثلة لـLPT1:، LPT2:"
-"، ...، طابعة USB الأولى: /dev/usb/lp0، طابعة USB الثانية: /dev/usb/lp1، ...)."
-
-#: printer/printerdrake.pm:1555
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "يجب عليك إدخال جهاز أو اسم ملف!"
-
-#
-#: printer/printerdrake.pm:1565
-#, c-format
-msgid "No printer found!"
-msgstr "لا توجد طابعة!"
-
-#: printer/printerdrake.pm:1573
-#, c-format
-msgid "Local Printers"
-msgstr "الطابعات المحلية"
-
-#: printer/printerdrake.pm:1574
-#, c-format
-msgid "Available printers"
-msgstr "الطابعات المتوفرة"
-
-#: printer/printerdrake.pm:1578 printer/printerdrake.pm:1587
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "تم اكتشاف الطابعة الآتية آلياً. "
-
-#: printer/printerdrake.pm:1580
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
-"إذا لم تكن هذه هي التي تريد تهيئتها، أدخل اسم جهاز/اسم ملف في حقل الإدخال"
-
-#: printer/printerdrake.pm:1581
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr "بدلاً من ذلك، يمكنك تحديد اسم جهاز/اسم ملف في حقا الإدخال"
-
-#: printer/printerdrake.pm:1582 printer/printerdrake.pm:1591
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "ها هي قائمة بكل الطابعات المتحقَّق منها آلياً. "
-
-#: printer/printerdrake.pm:1584
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
-msgstr ""
-"الرجاء اختيار الطابعة التي تريد إعدادها أو أدخل اسم جهاز/اسم ملف في حقل "
-"الإدخال"
-
-#: printer/printerdrake.pm:1585
-#, c-format
-msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-"الرجاء إدخال الطابعة التي يجب أن تذهب اليها وظائف الطباعة أو أدخل اسم جهاز/"
-"اسم ملف في حقل الإدخال"
-
-#: printer/printerdrake.pm:1589
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"إعداد الطابعة سيعمل بشكل آلي. إذا لم يتم اكتشاف طابعتك بالشكل الصحيح أو إذا "
-"كنت تفضل إعداد مخصص شغّل \"تهيئة يدوية\"."
-
-#: printer/printerdrake.pm:1590
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "حالياً لا يوجد احتمال بديل"
-
-#: printer/printerdrake.pm:1593
-#, c-format
-msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
-msgstr ""
-"الرجاء إدخال الطابعة التي تريد إعدادها. إعداد هذه الطابعة سيعمل آلياً. ان لم "
-"يتم اكتشاف الطابعة بالشكل الصحيح أو إذا كنت تفضل تهيئة يدوية تشغيل \"تهيئة "
-"يدوية\"."
-
-#: printer/printerdrake.pm:1594
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "رجاء اختيار الطابعة التي ستذهب اليها وظائف الطباعة."
-
-#: printer/printerdrake.pm:1596
-#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"الرجاء إدخال المنفذ المتصلة به الطابعة أو أدخل اسم جهاز/اسم ملف في حقل "
-"الإدخال"
-
-#: printer/printerdrake.pm:1597
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "رجاء اختيار المنفذ الموصلة إليه طابعتك."
-
-#: printer/printerdrake.pm:1599
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (المنافذ المتوازية: /dev/lp0، /dev/lp1، ...، مماشل لـ LPT1:، LPT2:، ...، "
-"طابعة USB الأولي: /dev/usb/lp0، طابعة USB الثانية: /dev/usb/lp1، ...)"
-
-#: printer/printerdrake.pm:1603
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "يجب عليك إدخال/اختيار طابعة/جهاز"
-
-#: printer/printerdrake.pm:1643 printer/printerdrake.pm:1706
-#: printer/printerdrake.pm:1798 printer/printerdrake.pm:1936
-#: printer/printerdrake.pm:2012 printer/printerdrake.pm:2179
-#: printer/printerdrake.pm:2270 printer/printerdrake.pm:2279
-#: printer/printerdrake.pm:2288 printer/printerdrake.pm:2299
-#, c-format
-msgid "Aborting"
-msgstr "جاري الإجهاض"
-
-#: printer/printerdrake.pm:1679
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "خيارات طابعة lpd البعيدة"
-
-#: printer/printerdrake.pm:1680
-#, c-format
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"لاستخدام طابعة lpd بعيدة، عليك إعطاء اسم مضيف خادم الطابعة و اسم الطابعة على "
-"ذلك الخادم."
-
-#: printer/printerdrake.pm:1681
-#, c-format
-msgid "Remote host name"
-msgstr "اسم المضيف البعيد"
-
-#: printer/printerdrake.pm:1682
-#, c-format
-msgid "Remote printer name"
-msgstr "اسم الطابعة البعيدة"
-
-#: printer/printerdrake.pm:1685
-#, c-format
-msgid "Remote host name missing!"
-msgstr "اسم المضيف البعيد مفقود!"
-
-#: printer/printerdrake.pm:1689
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "اسم الطابعة البعيدة مفقود!"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318 standalone/drakTermServ:475
-#: standalone/drakTermServ:807 standalone/drakTermServ:823
-#: standalone/drakTermServ:1653 standalone/drakTermServ:1662
-#: standalone/drakTermServ:1676 standalone/drakbackup:512
-#: standalone/drakbackup:618 standalone/drakbackup:653
-#: standalone/drakbackup:754 standalone/draknfs:203
-#: standalone/draksambashare:627 standalone/draksambashare:794
-#: standalone/harddrake2:275
-#, c-format
-msgid "Information"
-msgstr "معلومات"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "تم اكتشاف الطراز: %s %s"
-
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Scanning network..."
-msgstr "جاري مسح الشبكة..."
-
-#: printer/printerdrake.pm:1814 printer/printerdrake.pm:1835
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr "، الطابعة \"%s\" على الخادم \"%s\""
-
-#: printer/printerdrake.pm:1817 printer/printerdrake.pm:1838
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "الطابعة \"%s\" على الخادم \"%s\""
-
-#: printer/printerdrake.pm:1859
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "خيارات طابعة SMB (ويندوز ×9/إنتي)"
-
-#: printer/printerdrake.pm:1860
-#, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"للطباعة إلى طابعة SMB، ستحتاج إلى إعطاء اسم مضيف SMB (ملحوظة! قد يكون مختلفاً "
-"عن اسم مضيف TCP/IP!) و ربما عنوان IP الخاص بخادم الطابعة، إضافة إلى اسم "
-"المشاركة لطابعة التي تود الوصول اليها بالإضافة إلى اسم مستخدم، كلمة مرور، و "
-"مجموعة عمل مناسبة."
-
-#: printer/printerdrake.pm:1861
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-" إذا تم اكتشاف الطابعة المطلوبة آلياً، كل ما عليك هو اختيارها من القائمة ثم "
-"أضف اسم المستخدم، كلمة المرور، و/أو مجموعة العمل ان احتجت لذلك."
-
-#: printer/printerdrake.pm:1863
-#, c-format
-msgid "SMB server host"
-msgstr "مضيف خادم SMB"
-
-#: printer/printerdrake.pm:1864
-#, c-format
-msgid "SMB server IP"
-msgstr "IP خادم SMB"
-
-#: printer/printerdrake.pm:1865 standalone/draksambashare:67
-#, c-format
-msgid "Share name"
-msgstr "اسم المشاركة"
-
-#: printer/printerdrake.pm:1868
-#, c-format
-msgid "Workgroup"
-msgstr "مجموعة العمل"
-
-#: printer/printerdrake.pm:1870
-#, c-format
-msgid "Auto-detected"
-msgstr "تحقق آلي"
-
-#: printer/printerdrake.pm:1880
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "يجب إعطاء اسم الخادم أو رقم IP الخاص بالخادم!"
-
-#: printer/printerdrake.pm:1884
-#, c-format
-msgid "Samba share name missing!"
-msgstr "اسم مشاركة سامبا مفقود!"
-
-#: printer/printerdrake.pm:1890
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "تحذير أمني!"
-
-#: printer/printerdrake.pm:1891
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"أنت على وشك تهيئة الطباعة على حساب في ويندوز مع كلمة مرور. بسبب خطأ في "
-"هيكلية عميل Samba، يتم وضع كلمة المرور بنص واضح في سطر أوامر عميل Samba "
-"المستخدم لنقل وظيفة الطباعة إلى خادم ويندوز. لذا فإنه يمكن لكل مستخدم على "
-"هذه الماكينة أن يعرض كلمة المرور على الشاشة باستخدام كلمات مرور مثل \"ps "
-"auxwww\".\n"
-"\n"
-"نحن ننصح باستعمال واحد من البدائل التالية (في كل الحالات عليك التأكد أن "
-"الماكينات الموجودة فقط على الشبكة المحلية تستطيع الوصول إلى خادم ويندوز، عن "
-"طريق استخدام جدار ناري مثلاً):\n"
-"\n"
-"استخدم حساب دون كلمة مرور على خادم ويندوز، مثل حساب \"GUEST\" أو حساب خاص "
-"لاستخدامه للطباعة. لا تقم بإزالة الحماية عن طريق كلمات المرور من حسابك "
-"الشخصي أو من حساب مدير النظام.\n"
-"\n"
-"قم بإعداد خادم ويندوز لجعل الطابعة متوفرة تحت بروتوكول LPD. ثم قم بإعداد "
-"الطباعة من هذه الماكينة مع نوع الوصلة \"%s\" في PrinterDrake.\n"
-"\n"
-
-#: printer/printerdrake.pm:1901
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"قم بإعداد خادم ويندوز لجعل الطابعات متوفرة تحت بروتوكول IPP و قم بإعداد "
-"الطباعة من هذه الماكينة باستخدام نوع الوصلة \"%s\" في Printerdrake.\n"
-"\n"
-
-#: printer/printerdrake.pm:1904
-#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-"وصّل الطابعة إلى خادم لينكس و اجعل ماكينات ويندوز تتصل به كعملاء.\n"
-"\n"
-"هل تريد فعلاً متابعة إعداد هذه الطابعة كما تفعل الآن؟"
-
-#: printer/printerdrake.pm:1983
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "خيارات طابعة NetWare"
-
-#: printer/printerdrake.pm:1984
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"للطباعة على طابعة NetWare، تحتاج إلى إعطاء اسم خادم طباعة NetWare (لاحط أنه "
-"قد يختلف عن اسم مضيف TCP/IP!) بالإضافة إلى اسم الصف للطابعة التي رغب في "
-"الوصول اليها بالإضافة إلى اسم مستخدم و كلمة مرور مناسبتين."
-
-#: printer/printerdrake.pm:1985
-#, c-format
-msgid "Printer Server"
-msgstr "خادم الطابعة"
-
-#: printer/printerdrake.pm:1986
-#, c-format
-msgid "Print Queue Name"
-msgstr "اسم صفّ الطابعة"
-
-#: printer/printerdrake.pm:1991
-#, c-format
-msgid "NCP server name missing!"
-msgstr "اسم خادم NCP مفقود!"
-
-#: printer/printerdrake.pm:1995
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "اسم صفّ NCP مفقود!"
-
-#: printer/printerdrake.pm:2076 printer/printerdrake.pm:2097
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr "، المضيف \"%s\"، المنفذ %s"
-
-#: printer/printerdrake.pm:2079 printer/printerdrake.pm:2100
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "المضيف \"%s\"، المنفذ %s"
-
-#: printer/printerdrake.pm:2122
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "خيارات طابعة TCP/Socket"
-
-#: printer/printerdrake.pm:2124
-#, c-format
-msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
-msgstr ""
-"اختر واحدة من الطابعات التي تم التحقق منها آلياً من القائمة أو أدخل اسم "
-"المضيف أو رقم IP و رقم المنفذ الإختياري (الإفتراضي هو 9100) في حقول الإدخال."
-
-#: printer/printerdrake.pm:2125
-#, c-format
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
-msgstr ""
-"للطباعة إلى طابعة TCP أو socket، يجب عليك إعطاء اسم المضيف أو عنوان IP الخاص "
-"بالطابعة و اختيارياً يمكنك إضافة رقم منفذ الطابعة (الإفتراضي هو 9100). على "
-"خادمات HP JetDirect يكون رقم المنفذ عادةً هو 9100، على الخادمات الأخرى يمكن "
-"أن يكون الرقم غير ذلك. الق نظرة على دليل المستخدم للعتاد الخاص بك."
-
-#: printer/printerdrake.pm:2129
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "اسم مضيف الطابعة أو الـ IP مفقود!"
-
-#: printer/printerdrake.pm:2158
-#, c-format
-msgid "Printer host name or IP"
-msgstr "اسم مضيف الطابعة أو الـ IP"
-
-#: printer/printerdrake.pm:2221
-#, c-format
-msgid "Refreshing Device URI list..."
-msgstr "جاري إنعاش لائحة عناوين URI للجهاز..."
-
-#: printer/printerdrake.pm:2224 printer/printerdrake.pm:2226
-#, c-format
-msgid "Printer Device URI"
-msgstr "URI جهاز الطابعة"
-
-#: printer/printerdrake.pm:2225
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"يمكنك تحديد الـURI مباشرة للوصول إلى الطابعة. الـURI يجب أن يتوافق مع "
-"متطلبات CUPS أو Foomatic. لاحط أنه ليست كل أنواع الـURI مدعومة من "
-"الـspoolers."
-
-#: printer/printerdrake.pm:2249
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "يجب إدخال URI صالح!"
-
-#: printer/printerdrake.pm:2354
-#, c-format
-msgid "Pipe into command"
-msgstr "حول إلى الأمر"
-
-#: printer/printerdrake.pm:2355
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-"هنا يمكنك تحديد أي أمر هلامي يمكن تحويل وظيفة الطباعة اليه بدلاً من ارسالها "
-"مباشرةً إلى الطابعة."
-
-#: printer/printerdrake.pm:2356
-#, c-format
-msgid "Command line"
-msgstr "سطر الأوامر"
-
-#: printer/printerdrake.pm:2360
-#, c-format
-msgid "A command line must be entered!"
-msgstr "يجب إدخال سطر أوامر"
-
-#: printer/printerdrake.pm:2402
-#, c-format
-msgid "Your printer %s is currently connected %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2404 printer/printerdrake.pm:2411
-#, fuzzy, c-format
-msgid "to a parallel port"
-msgstr " على المنفذ المتوازي #%s"
-
-#: printer/printerdrake.pm:2405 printer/printerdrake.pm:2412
-#, c-format
-msgid "to the USB"
-msgstr ""
-
-#: printer/printerdrake.pm:2406 printer/printerdrake.pm:2413
-#, fuzzy, c-format
-msgid "via the network"
-msgstr "جاري تشغيل الشبكة"
-
-#: printer/printerdrake.pm:2407
-#, c-format
-msgid "This type of connection is currently not fully supported by HPLIP."
-msgstr ""
-
-#: printer/printerdrake.pm:2409
-#, c-format
-msgid "You get full HPLIP support for your device if you connect it "
-msgstr ""
-
-#: printer/printerdrake.pm:2415
-#, c-format
-msgid ""
-"You can now set up your device with HPLIP anyway (works in many cases), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "set it up without HPLIP (print-only), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, fuzzy, c-format
-msgid "or"
-msgstr "السّاعة"
-
-#: printer/printerdrake.pm:2417
-#, c-format
-msgid "cancel the setup (for example to reconnect your device)."
-msgstr ""
-
-#: printer/printerdrake.pm:2419
-#, c-format
-msgid ""
-"You can always revise your choice by clicking your printer's entry in the "
-"main window, "
-msgstr ""
-
-#: printer/printerdrake.pm:2420
-#, c-format
-msgid "clicking the \"%s\" button, "
-msgstr ""
-
-#. -PO: "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: printer/printerdrake.pm:2420 standalone/drakperm:124 standalone/drakups:300
-#: standalone/drakups:360 standalone/drakups:380 standalone/drakvpn:319
-#: standalone/drakvpn:680 standalone/printerdrake:245
-#, c-format
-msgid "Edit"
-msgstr "تحرير"
-
-#: printer/printerdrake.pm:2421
-#, c-format
-msgid "and choosing \"%s\"."
-msgstr ""
-
-#: printer/printerdrake.pm:2421 printer/printerdrake.pm:5334
-#: printer/printerdrake.pm:5394
-#, c-format
-msgid "Printer connection type"
-msgstr "نوع وصلة الطابعة"
-
-#: printer/printerdrake.pm:2423 standalone/logdrake:408
-#, c-format
-msgid "What do you want to do?"
-msgstr "ماذا تريد أن تفعل؟"
-
-#: printer/printerdrake.pm:2424 printer/printerdrake.pm:2428
-#, c-format
-msgid "Set up with HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2425 printer/printerdrake.pm:2427
-#: printer/printerdrake.pm:2430
-#, c-format
-msgid "Set up without HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2461
-#, c-format
-msgid ""
-"On many HP printers there are special functions available, maintenance (ink "
-"level checking, nozzle cleaning. head alignment, ...) on all not too old "
-"inkjets, scanning on multi-function devices, and memory card access on "
-"printers with card readers. "
-msgstr ""
-"في العديد من طابعات HP هناك وظائف مميّزة متوفّرة، مثل الصيانة (التحقق من مستوى "
-"الحبر، ونتظيف الفوهة، ومحاذاة الرأس، ...) على كلّ طابعات inkjet الغير قديمة "
-"جداً، والمسح الضوئي على الأجهزة متعددة الوظائف، والوصول إلى بطاقة الذاكرة على "
-"الطابعات ذات قارئات البطاقات."
-
-#: printer/printerdrake.pm:2463
-#, fuzzy, c-format
-msgid ""
-"To access these extra functions on HP printers they must be set up with "
-"HPLIP (HP Linux Imaging and Printing). "
-msgstr ""
-"للوصول إلى هذه الوظائف الإضافية على طابعة HP الخاصة بك، يجب إعدادها باستخدام "
-"البرنامج المناسب:"
-
-#: printer/printerdrake.pm:2465
-#, fuzzy, c-format
-msgid "Do you want to use HPLIP (choose \"No\" for non-HP printers)? "
-msgstr "ما هو اختيارك (اختيار \"لاشيء\" لغير طابعات HP)? "
-
-#: printer/printerdrake.pm:2491
-#, c-format
-msgid "Installing %s package..."
-msgstr "جاري تهيئة حزمة %s..."
-
-#: printer/printerdrake.pm:2491 printer/printerdrake.pm:2497
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "HPLIP"
-msgstr "HPLIP"
-
-#: printer/printerdrake.pm:2498
-#, c-format
-msgid "Only printing will be possible on the %s."
-msgstr "على الـ %s، ستكون الطّباعة ممكنة فقط."
-
-#: printer/printerdrake.pm:2513
-#, c-format
-msgid "Could not remove your old HPOJ configuration file %s for your %s! "
-msgstr "تعذرت إزالة ملف التهيئة %s للطابعة HPOJ لـ%s!"
-
-#: printer/printerdrake.pm:2515
-#, c-format
-msgid "Please remove the file manually and restart HPOJ."
-msgstr "الرجاء إزالة أي ملف يدوياً وإعادة تشغيل HPOJ."
-
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "Checking device and configuring %s..."
-msgstr "جاري التأكد من الجهاز و تهيئة %s..."
-
-#: printer/printerdrake.pm:2557
-#, c-format
-msgid "Which printer do you want to set up with HPLIP?"
-msgstr "أي طابعة تريد إعدادها باستخدام HPLIP؟"
-
-#: printer/printerdrake.pm:2576
-#, c-format
-msgid "HPLIP was not able to communicate with the chosen printer!"
-msgstr ""
-
-#: printer/printerdrake.pm:2577 printer/printerdrake.pm:2584
-#, fuzzy, c-format
-msgid "Setting up the printer without HPLIP..."
-msgstr "إعداد وحدات النواة..."
-
-#: printer/printerdrake.pm:2583
-#, c-format
-msgid ""
-"HPLIP did not find any local printers (Parallel, USB) which it supports!"
-msgstr ""
-
-#: printer/printerdrake.pm:2622
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "تثبيت حزم SANE..."
-
-#: printer/printerdrake.pm:2635
-#, c-format
-msgid "Scanning on the %s will not be possible."
-msgstr "لن يكون المسح ممكنا على الـ %s."
-
-#: printer/printerdrake.pm:2650
-#, c-format
-msgid "Using and Maintaining your %s"
-msgstr "استخدام وصيانة %s الخاص بك"
-
-#: printer/printerdrake.pm:2664
-#, c-format
-msgid "Configuring device..."
-msgstr "تهيئة الجهاز..."
-
-#: printer/printerdrake.pm:2701
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "جاري جعل منفذ الطابعة متوفراً لـCUPS..."
-
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2985
-#: printer/printerdrake.pm:3138
-#, c-format
-msgid "Reading printer database..."
-msgstr "جاري قراءة قاعدة بيانات الطابعات..."
-
-#: printer/printerdrake.pm:2943
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "أدخل اسم الطابعة و التعليقات"
-
-#: printer/printerdrake.pm:2947 printer/printerdrake.pm:4206
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "اسم الطابعة يجب أن يحتوي فقط على حروف و أرقام و شارطات تحتية"
-
-#: printer/printerdrake.pm:2953 printer/printerdrake.pm:4211
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"الطابعة \"%s\" موجودة مسبقاً،\n"
-"هل تريد فعلاً الكتابة فوق التهيئة الخاصة بها؟"
-
-#: printer/printerdrake.pm:2960
-#, c-format
-msgid ""
-"The printer name \"%s\" has more than 12 characters which can make the "
-"printer unaccessible from Windows clients. Do you really want to use this "
-"name?"
-msgstr ""
-"اسم الطابعة \"%s\" يحتوي أكثر من 12 حرفاً والذي قد يجعل الطابعة غير قابلة "
-"للوصول من عملاء ويندوز. هل تريد فعلاً استخدام هذا الاسم؟"
-
-#: printer/printerdrake.pm:2969
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"كل طابعة تحتاج إلى اسم (مثال \"printer\"). حقول الوصف و المكان ليس من "
-"الضروري ملؤها. انها مجرد ملاحظات للمستخدمين."
-
-#: printer/printerdrake.pm:2970
-#, c-format
-msgid "Name of printer"
-msgstr "اسم الطابعة"
-
-#: printer/printerdrake.pm:2971 standalone/drakconnect:592
-#: standalone/harddrake2:39 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Description"
-msgstr "الوصف"
-
-#: printer/printerdrake.pm:2972 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Location"
-msgstr "المكان"
-
-#: printer/printerdrake.pm:2990
-#, c-format
-msgid "Preparing printer database..."
-msgstr "جاري تحضير قاعدة بيانات الطابعات..."
-
-#: printer/printerdrake.pm:3116
-#, c-format
-msgid "Your printer model"
-msgstr "طراز الطابعة الخاصة بك"
-
-#: printer/printerdrake.pm:3117
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"قام Printerdrake بمقارنة اسم الطراز الناتج عن التحقق الآلي من الطابعات مع "
-"الطرازات الموجودة في قاعدة بيانات الطابعات للحصول على أفضل توافق. هذا "
-"الإختيار قد يكون خاطئاً، خصوصاً إذا كانت الطابعة غير موجودة اطلاقاً في قاعدة "
-"بيانات الطابعات. لذا تأكد اذ كان اختيارك صحيحاً و اضغط \"الطراز صحيح\"، أما "
-"ان لم يكن الطاز صحيحاً، اضغط \"اختر الطراز يدوياً\" كي يتسنى لك اختيار طراز "
-"طابعتك يدوياً على الشاشة التالية.\n"
-"\n"
-"لطابعتك وجد Printerdrake:\n"
-"\n"
-"%s"
-
-#: printer/printerdrake.pm:3122 printer/printerdrake.pm:3125
-#, c-format
-msgid "The model is correct"
-msgstr "الطراز صحيح"
-
-#: printer/printerdrake.pm:3123 printer/printerdrake.pm:3124
-#: printer/printerdrake.pm:3127
-#, c-format
-msgid "Select model manually"
-msgstr "تم اختيار النّموذج يدويًّا"
-
-#: printer/printerdrake.pm:3151
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
-msgstr ""
-"\n"
-"\n"
-"الرجاء التأكّد من قيام Printerdrake باكتشاف طراز طابعتك بشكل صحيح. اعثر على "
-"الطراز الصحيح إذا تم اختيار طراز خطأ أو \"طابعة خام\"."
-
-#: printer/printerdrake.pm:3170
-#, c-format
-msgid "Install a manufacturer-supplied PPD file"
-msgstr "تثبيت ملفّ PPD موفّرا من عند الصّانع."
-
-#: printer/printerdrake.pm:3202
-#, c-format
-msgid ""
-"Every PostScript printer is delivered with a PPD file which describes the "
-"printer's options and features."
-msgstr "تُقدّم كلّ طابعة PostScript مع ملفّ PPD والذي يصف مزايا وخيارات الطّابعة."
-
-#: printer/printerdrake.pm:3203
-#, c-format
-msgid ""
-"This file is usually somewhere on the CD with the Windows and Mac drivers "
-"delivered with the printer."
-msgstr ""
-"يكون هذا الملفّ في مكان ما على القرص المدمج مع مُشغّلات ويندوز وماك المُزوّدة مع "
-"طابعتك."
-
-#: printer/printerdrake.pm:3204
-#, c-format
-msgid "You can find the PPD files also on the manufacturer's web sites."
-msgstr "يمكنك العثور على ملفّات PPD أيضاً على مواقع وب للمُصنّع."
-
-#: printer/printerdrake.pm:3205
-#, c-format
-msgid ""
-"If you have Windows installed on your machine, you can find the PPD file on "
-"your Windows partition, too."
-msgstr ""
-"إن كان ويندوز مثبتاً لديك، يمكنك أن تعثر على ملف PPD على تجزيء ويندوز أيضاً."
-
-#: printer/printerdrake.pm:3206
-#, c-format
-msgid ""
-"Installing the printer's PPD file and using it when setting up the printer "
-"makes all options of the printer available which are provided by the "
-"printer's hardware"
-msgstr ""
-"تثبيت ملف PPD للطّابعة واستخدامه عند إعداد الطابعة يجعل كلّ خيارات الطّابعة "
-"متوفّرة والتي هي مُزوّدة من قبل عتاد الطّابعة"
-
-#: printer/printerdrake.pm:3207
-#, c-format
-msgid ""
-"Here you can choose the PPD file to be installed on your machine, it will "
-"then be used for the setup of your printer."
-msgstr ""
-"يمكنك هنا اختيار ملفّ PPD لتثبيته على ماكينتك، سوف يستخدم بعد ذلك لإعداد "
-"طابعتك."
-
-#: printer/printerdrake.pm:3209
-#, c-format
-msgid "Install PPD file from"
-msgstr "تثبيت ملف PPD من"
-
-#: printer/printerdrake.pm:3212 printer/printerdrake.pm:3220
-#: standalone/scannerdrake:183 standalone/scannerdrake:192
-#: standalone/scannerdrake:242 standalone/scannerdrake:250
-#, c-format
-msgid "Floppy Disk"
-msgstr "القرص المرن"
-
-#: printer/printerdrake.pm:3213 printer/printerdrake.pm:3222
-#: standalone/scannerdrake:184 standalone/scannerdrake:194
-#: standalone/scannerdrake:243 standalone/scannerdrake:252
-#, c-format
-msgid "Other place"
-msgstr "مكان آخر"
-
-#: printer/printerdrake.pm:3228
-#, c-format
-msgid "Select PPD file"
-msgstr "اختيار ملف PPD"
-
-#: printer/printerdrake.pm:3232
-#, c-format
-msgid "The PPD file %s does not exist or is unreadable!"
-msgstr "ملفّ PPD %s غير موجود أو غير قابل للقراءة!"
-
-#: printer/printerdrake.pm:3238
-#, c-format
-msgid "The PPD file %s does not conform with the PPD specifications!"
-msgstr "ملف PPD %s لا يطابق مواصفات PPD!"
-
-#: printer/printerdrake.pm:3249
-#, c-format
-msgid "Installing PPD file..."
-msgstr "جاري تثبيت ملف PPD..."
-
-#: printer/printerdrake.pm:3368
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "إعداد OKI WinPrinter"
-
-#: printer/printerdrake.pm:3369
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"أنت تقوم بتهيئة طابعة OKI laser winprinter. هذه الطابعات\n"
-"تستخدم بروتوكول اتصالات خاص و لذا فهي تعمل فقط عندما تكون متصلة بالمنفذ "
-"المتوازي الأول. عندما تكون الطابعة متصلة بمنفذ آخر أو بخادم طباعة فمن فضلك "
-"قم بتوصيل الطابعة إلى المنفذ المتوازي الأول قبل أن تطبع صفحة اختبارية. ان لم "
-"تفعل ذلك فلن تعمل الطابعة. إعداد نوع الوصلة سيتم تجاهله من المشغّل."
-
-#: printer/printerdrake.pm:3394 printer/printerdrake.pm:3424
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "إعداد Lexmark Inkjet"
-
-#: printer/printerdrake.pm:3395
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"مشغلات طابعتك inkjet التي تم توفيرها من Lexmark تدعم الطابعات المحلية فقط، "
-"لا يدعم المُشغّل الطابعات على الماكينات البعيدة أو خادمات الطباعة. فضلاً وصل "
-"طابعتك إلى منفذ محلي أو قم بتهيئتها على الماكينة المرتبطة بها."
-
-#: printer/printerdrake.pm:3425
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-"كي تكون قادراً على الطّباعة باستخدام Lexmark inkjet وهذه التّهيئة، تحتاج إلى "
-"مُشغّلات طابعة inkjet التي تزوّدها Lexmark (http://www.lexmark.com/). اضغط على "
-"رابط \"Drivers\". ثمّ اختر الطّراز وأختر\"لينكس\" كنظام تشغيل. تكون برامج "
-"التّعريف على شكل حزم RPM أو شيفرة صدفة مع تثبيت رسوميّ تفاعليّ. لا تحتاج للقيام "
-"بهذه التّهيئة باستخدام الواجهات الرّسوميّة. قم بالإلغاء مباشرة بعد اتّفاقيّة "
-"التّرخيص. ثم اطبع صفحات محاذاة رأس الطّباعة باستخدام \"lexmarkmaintain\" و "
-"اضبط وضع محاذاة الرّأس باستخدام هذا البرنامج."
-
-#: printer/printerdrake.pm:3435
-#, c-format
-msgid "Lexmark X125 configuration"
-msgstr "إعداد Lexmark X125"
-
-#: printer/printerdrake.pm:3436
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes. Please connect "
-"your printer to a local USB port or configure it on the machine where it is "
-"connected to."
-msgstr ""
-"مشغّل هذه الطّابعة يدعم فقط الطّابعات المحلّية المتّصلة عبر USB، لا الطّابعات على "
-"الأجهزة البعيدة أو خادمات الطباعة. رجاء توصيل طابعتك إلى منفذ USB المحلّي أو "
-"هيّئها على الجهاز الذي هي متّصلة به."
-
-#: printer/printerdrake.pm:3458
-#, c-format
-msgid "Samsung ML/QL-85G configuration"
-msgstr "تهيئة سامسونج ML/QL-85G"
-
-#: printer/printerdrake.pm:3459 printer/printerdrake.pm:3486
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected on the "
-"first parallel port, no printers on remote machines or print server boxes or "
-"on other parallel ports. Please connect your printer to the first parallel "
-"port or configure it on the machine where it is connected to."
-msgstr ""
-"مشغّل هذه الطّابعة يدعم فقط الطّابعات المحلّية المتّصلة عبر المنفذ المتوازي "
-"الأول، لا الطّابعات على الماكينات البعيدة أو خادمات الطباعة أو المنافذ "
-"المتوازية الأخرى. رجاء وصل طابعتك إلى المنفذ المتوازي الأول أو تهيئتهاعلى "
-"الجهاز الذي هي متّصلة به."
-
-#: printer/printerdrake.pm:3485
-#, c-format
-msgid "Canon LBP-460/660 configuration"
-msgstr "تهيئة Canon LBP-460/660"
-
-#: printer/printerdrake.pm:3512
-#, fuzzy, c-format
-msgid "Canon LBP-810/1120 (CAPT) configuration"
-msgstr "تهيئة Canon LBP-460/660"
-
-#: printer/printerdrake.pm:3513
-#, fuzzy, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes or on the parallel "
-"port. Please connect your printer to the USB or configure it on the machine "
-"where it is directly connected to."
-msgstr ""
-"مشغّل هذه الطّابعة يدعم فقط الطّابعات المحلّية المتّصلة عبر USB، لا الطّابعات على "
-"الأجهزة البعيدة أو خادمات الطباعة. رجاء توصيل طابعتك إلى منفذ USB المحلّي أو "
-"هيّئها على الجهاز الذي هي متّصلة به."
-
-#: printer/printerdrake.pm:3520
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "تحميل Firmware لطابعة LaserJet 1000"
-
-#: printer/printerdrake.pm:3670
-#, c-format
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"إعدادات الطابعة الإفتراضية\n"
-"\n"
-"يجب عليك التأكد إذا كان حجم الصفحة و نوع الحبر/وضع الطباعة (ان وجد) بالإضافة "
-"إلى إعدادات العتاد لطابعات الليزر (الذاكرة، وحدات الدوبلكس، المنصات "
-"الإضافية) معدّة بشكل صحيح. لاحظ أن جودة طباعة عالية جداً قد تجهل الطباعة بطيئة."
-
-#: printer/printerdrake.pm:3795
-#, c-format
-msgid "Printer default settings"
-msgstr "إعدادات الطابعة الإفتراضية"
-
-#: printer/printerdrake.pm:3802
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "الخيار %s يجب أن يكون رقما صحيحاً!"
-
-#: printer/printerdrake.pm:3806
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "الخيار %s يجب أن يكون رقماً!"
-
-#: printer/printerdrake.pm:3810
-#, c-format
-msgid "Option %s out of range!"
-msgstr "الخيار %s خارج المتوسط!"
-
-#: printer/printerdrake.pm:3862
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"هل تريد تعيين هذه الطابعة (\"%s\")\n"
-"كطابعة افتراضية؟"
-
-#: printer/printerdrake.pm:3878
-#, c-format
-msgid "Test pages"
-msgstr "صفحات اختبارية"
-
-#: printer/printerdrake.pm:3879
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"الرجاء اختيار الصفحات الإختبارية التي تود طباعتها.\n"
-"ملحوظة: الصفحة الإختبارية لصورة ستستغرق وقتاً طويلاً لطباعتها و على طابعات "
-"الليزر بكمية ذاكرة قليلة قد لا يتم طباعتها مطلقاً. في أغلب الأحيان يكفي أن "
-"تطبع الصفحة الإختبارية القياسية."
-
-#: printer/printerdrake.pm:3883
-#, c-format
-msgid "No test pages"
-msgstr "لا صفحات اختبارية"
-
-#: printer/printerdrake.pm:3884
-#, c-format
-msgid "Print"
-msgstr "طباعة"
-
-#: printer/printerdrake.pm:3909
-#, c-format
-msgid "Standard test page"
-msgstr "صفحة اختبارية قياسية"
-
-#: printer/printerdrake.pm:3912
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "صفحة اختبارية بديلة (Letter("
-
-#: printer/printerdrake.pm:3915
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "صفحة اختبارية بديلة (A4)"
-
-#: printer/printerdrake.pm:3917
-#, c-format
-msgid "Photo test page"
-msgstr "صفحة اختبارية لصورة"
-
-#: printer/printerdrake.pm:3930
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "طباعة الصفحات الإختبارية..."
-
-#: printer/printerdrake.pm:3950
-#, c-format
-msgid "Skipping photo test page."
-msgstr "جاري تخطّي صفحة الصّورة الاختبارية"
-
-#: printer/printerdrake.pm:3967
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"تم ارسال الصفحات الإختبارية إلى الطابعة.\n"
-"قد يستغرق هذا بعض الوقت حتى تبدأ الطابعة.\n"
-"حالة الطباعة:\n"
-"%s\n"
-"\n"
-
-#: printer/printerdrake.pm:3971
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"تم ارسال الصفحات الإختبارية إلى الطابعة.\n"
-"قد يستغرق هذا بعض الوقت حتى تبدأ الطابعة.\n"
-
-#: printer/printerdrake.pm:3981
-#, c-format
-msgid "Did it work properly?"
-msgstr "هل عملت بالشكل الصحيح؟"
-
-#: printer/printerdrake.pm:4005
-#, c-format
-msgid "Raw printer"
-msgstr "طابعة خام"
-
-#: printer/printerdrake.pm:4027
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"لطباعة ملف من سطر الأوامر يمكنك أن تستخدم الأمر \"%s <file>\" أو أن تستخدم "
-"أداة طباعة رسومية: \"xpp <file>\" أو \"kprinter <file>\". الأدوات الرسومية "
-"تسمح لك باختيار الطابعات و تعديل خياراتها بسهولة.\n"
-
-#: printer/printerdrake.pm:4029
-#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"يمكنك استخدام هذه الأوامر أيضاً في حقل \"أمر الطباعة\" في مربعات حوار الطباعة "
-"في العديد من التطبيقات، لكن لا تقم هنا بإعطاء اسم الملف لأن الملف المطلوب "
-"طباعته يتم اعطاؤه من قبل التطبيق.\n"
-
-#: printer/printerdrake.pm:4032 printer/printerdrake.pm:4049
-#: printer/printerdrake.pm:4059
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"الأمر \"%s\" يسمح لك كذلك يتعديل إعدادات الخيارات لوظيفة طباعة محددة. بكل "
-"بساطة أضف الإعداد المطلوب إلى سطر الآوامر، مثال \"%s <file>\". "
-
-#: printer/printerdrake.pm:4035 printer/printerdrake.pm:4075
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"للمعرفة حول الخيارات المتوفرة للطابعة الحالية، إما أن تقرأ القائمة أدناه و "
-"اضغط \"قائمة خيارات الطابعة\".%s%s%s\n"
-"\n"
-
-#: printer/printerdrake.pm:4039
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"هذه قائمة بالخيارات المتوفرة للطباعة على الطابعة الحالية:\n"
-"\n"
-
-#: printer/printerdrake.pm:4044 printer/printerdrake.pm:4054
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr "لطباعة ملف من سطر الأوامر استخدم الأمر \"%s <file>\".\n"
-
-#: printer/printerdrake.pm:4046 printer/printerdrake.pm:4056
-#: printer/printerdrake.pm:4066
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"يمكنك استخدام هذا الأمر أيضاً في حقل \"أمر الطباعة\" في مربعات حوار الطابعة "
-"في العديد من التطبيقات. لكن هنا لا تقم بإعطاء اسم الملف لأن ملف الطباعة يتم "
-"توفيره عن طريق التطبيق.\n"
-
-#: printer/printerdrake.pm:4051 printer/printerdrake.pm:4061
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"للحصول على قائمة بالخيارات المتوفرة للطابعة المختارة اضغط على زر \"قائمة "
-"خيارات الطابعة\"."
-
-#: printer/printerdrake.pm:4064
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr "لطباعة ملف من سطر الأوامر استخدم الأمر \"%s <file> أو \"%s <file>\".\n"
-
-#: printer/printerdrake.pm:4068
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"يمكنك كذلك استخدام البرنامج الرسومي \"xpdq\" لتعيين الخيارات و التعامل مع "
-"وظائف الطباعة.\n"
-"إذا كنت تستعمل كيدي كبيئة سطح مكتب فلديك أيقونة \"للطوارئ\"، اسمها \"STOP "
-"Printer!\"، تقوم بإيقاف كل وظائف الطباعة فوراً عند النقر عليها. هذا المثال "
-"مفيد للحالات التي يحصل فيها تعثر في استخدام الورق.\n"
-
-#: printer/printerdrake.pm:4072
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"الأوامر \"%s\" و \"%s\" تسمح لك بتعديل إعدادات الخيارات لوظيفة طباعة محددة. "
-"ببساطة قم بإضافة الإعداد المطلوب إلى سطر الآوامر، مثال \"%s <file>\".\n"
-
-#: printer/printerdrake.pm:4081
-#, c-format
-msgid "Using/Maintaining the printer \"%s\""
-msgstr "استخدام/صيانة الطابعة \"%s\""
-
-#: printer/printerdrake.pm:4082
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "جاري الطباعة على الطابعة \"%s\""
-
-#: printer/printerdrake.pm:4088
-#, c-format
-msgid "Print option list"
-msgstr "قائمة خيارات الطابعة"
-
-#: printer/printerdrake.pm:4092
-#, fuzzy, c-format
-msgid "Printing option list..."
-msgstr "قائمة خيارات الطابعة"
-
-#: printer/printerdrake.pm:4110
-#, c-format
-msgid ""
-"Your %s is set up with HP's HPLIP driver software. This way many special "
-"features of your printer are supported.\n"
-"\n"
-msgstr ""
-"%s الخاصة بك مُعدّة باستخدام برنامج مُشغّل HP HPLIP. بهذه الطريقة تكون العديد من "
-"مزايا طابعتك الخاصة مدعومة.\n"
-"\n"
-
-#: printer/printerdrake.pm:4113
-#, c-format
-msgid ""
-"The scanner in your printer can be used with the usual SANE software, for "
-"example Kooka or XSane (Both in the Multimedia/Graphics menu). "
-msgstr ""
-"يمكن استخدام الماسح الضوئي في طابعتك بواسطة برنامج SANE الاعتيادي، على سبيل "
-"المثال Kooka أو XSane (كلاهما في قائمة الوسائط المتعددة/الرسوم)."
-
-#: printer/printerdrake.pm:4114
-#, c-format
-msgid ""
-"Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to "
-"share your scanner on the network.\n"
-"\n"
-msgstr ""
-"تشغيل Scannerdrake )العتاد/الماسح الضوئي في مركز تحكم ماندريبا لينكس) "
-"لمشاركة الماسح الضوئي على الشبكة.\n"
-"\n"
-
-#: printer/printerdrake.pm:4118
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed like a usual USB "
-"mass storage device. "
-msgstr ""
-"يمكن الوصول إلى قارئات بطاقة الذاكرة في طابعتك كجهاز تخزين USB الكمّي "
-"الاعتيادي."
-
-#: printer/printerdrake.pm:4119
-#, c-format
-msgid ""
-"After inserting a card a hard disk icon to access the card should appear on "
-"your desktop.\n"
-"\n"
-msgstr ""
-"بعد إضافة بطاقة يجب أن تظهر أيقونة قرص صلب على سطح المكتب للوصول إلى "
-"البطاقة.\n"
-"\n"
-
-#: printer/printerdrake.pm:4121
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed using HP's Printer "
-"Toolbox (Menu: System/Monitoring/HP Printer Toolbox) clicking the \"Access "
-"Photo Cards...\" button on the \"Functions\" tab. "
-msgstr ""
-"يمكن الوصول إلى قارئات بطاقات الذاكرة في طابعتك باستخدام صندوق أدوات طابعة "
-"HP (القائمة: النظام/المراقبة/صندوق أدوات طابعة HP) بالضغط على زر \"الوصول "
-"إلى بطاقات الصور...\" في تبويب \"الوظائف\"."
-
-#: printer/printerdrake.pm:4122
-#, c-format
-msgid ""
-"Note that this is very slow, reading the pictures from the camera or a USB "
-"card reader is usually faster.\n"
-"\n"
-msgstr ""
-"لاحظ أن هذا بطيء جداً، أما قراءة الصور من الكاميرا أو قارئ بطاقات USB فتكون "
-"عادة أسرع.\n"
-"\n"
-
-#: printer/printerdrake.pm:4125
-#, c-format
-msgid ""
-"HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a "
-"lot of status monitoring and maintenance functions for your %s:\n"
-"\n"
-msgstr ""
-"يوفّر صندوق أدوات طابعة HP (القائمة: النظام/المراقبة/صندوق أدوات طابعة HP) "
-"الكثير من وظائف مراقبة حالة وصيانة %s الخاصة بك:\n"
-"\n"
-
-#: printer/printerdrake.pm:4126
-#, c-format
-msgid " - Ink level/status info\n"
-msgstr " - معلومات مستوى/وضع الحبر\n"
-
-#: printer/printerdrake.pm:4127
-#, c-format
-msgid " - Ink nozzle cleaning\n"
-msgstr " - تنظيف فوهة الحبر\n"
-
-#: printer/printerdrake.pm:4128
-#, c-format
-msgid " - Print head alignment\n"
-msgstr " - محاذاة رأس الطباعة\n"
-
-#: printer/printerdrake.pm:4129
-#, c-format
-msgid " - Color calibration\n"
-msgstr " - مُعايرة الألون\n"
-
-#: printer/printerdrake.pm:4170 printer/printerdrake.pm:4197
-#: printer/printerdrake.pm:4232
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "نقل تهيئة الطابعة"
-
-#: printer/printerdrake.pm:4171
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"يمكنك نقل تهيئة الطابعة التي تم عملها للـSpooler %s إلى %s، الـspooler "
-"الحالي. كل بيانات التهيئة (اسم الطابعة، الوصف، المكان، نوع الوصلة، و خيارات "
-"الإعداد الإفتراضي) يتم أخذها، لكن لن يتم نقل الوظائف.\n"
-"لا يمكن نقل كل الصفوف للأسباب التالية:\n"
-
-#: printer/printerdrake.pm:4174
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS لا يدعم الطابعات على أجهزة Novell الخادمة أو الطابعات التي ترسل "
-"البيانات إلى أمر ذي نسق حر.\n"
-
-#: printer/printerdrake.pm:4176
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ يدعم فقط الطابعات المحلية و طابعات LPD البعيدة و طابعات Socket/TCP.\n"
-
-#: printer/printerdrake.pm:4178
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD و LPRng لا تدعم طابعات IPP.\n"
-
-#: printer/printerdrake.pm:4180
-#, c-format
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"بالإضافة إلى ذلك، فإن الصفوف التي لم يتم عملها بهذا البرنامج أو \"foomatic-"
-"configure\" لا يمكن نقلها."
-
-#: printer/printerdrake.pm:4181
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"أيضاً الطابعات المهيئة بملفات PPD من مصنّعيها أو بمشغلات CUPS الخاصة بها لا "
-"يمكن نقلها."
-
-#: printer/printerdrake.pm:4182
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"علّم على الطابعات التي تريد نقلها ثم اضغط \n"
-"\"انقل\"."
-
-#: printer/printerdrake.pm:4185
-#, c-format
-msgid "Do not transfer printers"
-msgstr "لا تنقل الطابعات"
-
-#: printer/printerdrake.pm:4186 printer/printerdrake.pm:4202
-#, c-format
-msgid "Transfer"
-msgstr "نقل"
-
-#: printer/printerdrake.pm:4198
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"الطابعة المسماة \"%s\" موجودة مسبقا تحت %s. \n"
-"اضغط \"انقل\" للكتابة فوقه.\n"
-"يمكنك كذلك كتابة اسم جديد أو تحطي هذه الطابعة."
-
-#: printer/printerdrake.pm:4219
-#, c-format
-msgid "New printer name"
-msgstr "اسم الطابعة الجديدة"
-
-#: printer/printerdrake.pm:4222
-#, c-format
-msgid "Transferring %s..."
-msgstr "نقل %s..."
-
-#: printer/printerdrake.pm:4233
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"لقد قمت بنقل الطابعة الإفتراضية السابقة (\"%s\")، هل يجب أيضاً أن تكون "
-"الطابعة الإفتراضية تحت نظام الطباعة الجديد %s؟"
-
-#: printer/printerdrake.pm:4243
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "إعادة تحميل بيانات الطابة..."
-
-#: printer/printerdrake.pm:4253
-#, c-format
-msgid "Starting network..."
-msgstr "بدء الشبكة..."
-
-#: printer/printerdrake.pm:4296 printer/printerdrake.pm:4300
-#: printer/printerdrake.pm:4302
-#, c-format
-msgid "Configure the network now"
-msgstr "تهيئة الشبكة الآن"
-
-#: printer/printerdrake.pm:4297
-#, c-format
-msgid "Network functionality not configured"
-msgstr "لم يتم تحديد وظيفية الشبكة"
-
-#: printer/printerdrake.pm:4298
-#, c-format
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"أنت على وشك تهيئة طابعة بعيدة. هذا يحتاج إلى أن تكون وصلة الشبكة تعمل و لكن "
-"الشبكة لم يتم إعدادها حتى الآن. إذا كنت تريد المتابعة دون تهيئة الشبكة، "
-"ستكون قادراً على استخدام الطابعة التي تقةم بتهيئتها الآن. كيف تريد المتابعة؟"
-
-#: printer/printerdrake.pm:4301
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "تابع دون تهيئة الشبكة"
-
-#: printer/printerdrake.pm:4332
-#, c-format
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network is accessible after booting your "
-"system and correct the configuration using the %s Control Center, section "
-"\"Network & Internet\"/\"Connection\", and afterwards set up the printer, "
-"also using the %s Control Center, section \"Hardware\"/\"Printer\""
-msgstr ""
-"لا يمكن بدء تهيئة الشبكة التي تم عملها أثناء التثبيت الآن. الرجاء التأكّد إذا "
-"كان يمكن الوصول إلى الشبكة بعد إقلاع نظامك وصحّح التهيئة باستخدام مركز تحكم %"
-"s، في قسم \"الشبكة و الإنترنت\"/\"الوصلات\"، و بعد ذلك قم بتهيئة الطّابعة، "
-"كذلك باستخدام مركز تحكم %s، في قسم \"العتاد\"/\"الطابعة\""
-
-#: printer/printerdrake.pm:4333
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"الوصول إلى الشبكة لا يعمل و لم يمكن بدؤه. الرجاء التأكّد من التهيئة لديك و "
-"العتاد الخاص بك. ثم حاول تهيئة الطابعة البعيدة مرة أخرى."
-
-#: printer/printerdrake.pm:4343
-#, c-format
-msgid "Restarting printing system..."
-msgstr "جاري إعادة تشغيل نظام الطباعة..."
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "high"
-msgstr "مرتفع"
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "paranoid"
-msgstr "مذعور"
-
-#: printer/printerdrake.pm:4376
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "جاري تثبيت نظام طباعة في مستوى الأمن %s"
-
-#: printer/printerdrake.pm:4377
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessible by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"أنت على وشك تثبيت نظام الطباعة %s على نظام يعمل على المستوى الأمني %s.\n"
-"\n"
-"نظام الطباعة يشغّل مراقب (عملية خلفية) والذي يقوم بانتظار وظائف الطباعة و "
-"يتعامل معها. هذا المراقب يمكن الوصول إليه من قِبل الأجهزة البعيدة عبر الشبكة "
-"ولذا فقد يمكن أن يكون نقطة محتملة للهجمات. لهذا يتم اختيار القليل من "
-"الخادمات لتشغيلها افتراضياً على هذا المستوى الأمني.\n"
-"\n"
-"هل تريد فعلاً تهيئة الطباعة على هذ الجهاز؟"
-
-#: printer/printerdrake.pm:4413
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "بدء نظام الطباعة عند الإقلاع"
-
-#: printer/printerdrake.pm:4414
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"نظام الطباعة (%s) لن يتم بدؤه بشكل آلي عند بدء تشغيل الماكينة.\n"
-"\n"
-"من الممكن أن يكون قد تم تعطيل البدء الآلي بسبب التغيير إلى مستوى أعلى لأن "
-"نظام الطباعة قد يكون نقطة مبدئية لهجمات المخترقين.\n"
-"\n"
-"هل تريد تمكين البدء الآلي لنظام الطباعة عند بدء التشغيل مرة أخرى؟"
-
-#: printer/printerdrake.pm:4437
-#, c-format
-msgid "Checking installed software..."
-msgstr "جاري التأكد من البرامج المثبتة..."
-
-#: printer/printerdrake.pm:4443
-#, c-format
-msgid "Removing %s..."
-msgstr "جاري إزالة %s ..."
-
-#: printer/printerdrake.pm:4447
-#, c-format
-msgid "Could not remove the %s printing system!"
-msgstr "لم يمكن إزالة نظام طباعة %s!"
-
-#: printer/printerdrake.pm:4471
-#, c-format
-msgid "Installing %s..."
-msgstr "تثبيت %s ..."
-
-#: printer/printerdrake.pm:4475
-#, c-format
-msgid "Could not install the %s printing system!"
-msgstr "لم يمكن تثبيت نظام طباعة %s!"
-
-#: printer/printerdrake.pm:4543
-#, c-format
-msgid ""
-"In this mode there is no local printing system, all printing requests go "
-"directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-"في هذا الوضع لن يكون هناك نظام طباعة محلي، وستذهب كل طلبات الطباعة إلى "
-"الخادم المحدد أدناه. لاحظ أنّه ليس ممكناً تعريف صافّات طباعة محلّيّة وفي حال كان "
-"الخادم مُعطّلاً فلن يمكن الطباعة مطلقاً من هذه الماكينة."
-
-#: printer/printerdrake.pm:4545
-#, c-format
-msgid ""
-"Enter the host name or IP of your CUPS server and click OK if you want to "
-"use this mode, click \"Quit\" otherwise."
-msgstr ""
-"أدخل اسم المضيف أو IP خادم CUPS وثم اضغط موافق إن كنت تريد استخدام هذا "
-"الوضع، وإلا فاضغط \"خروج\"."
-
-#: printer/printerdrake.pm:4559
-#, c-format
-msgid "Name or IP of remote server:"
-msgstr "اسم أو IP الخادم البعيد:"
-
-#: printer/printerdrake.pm:4579
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "تعيين الطابعة الإفتراضية..."
-
-#: printer/printerdrake.pm:4599
-#, c-format
-msgid "Local CUPS printing system or remote CUPS server?"
-msgstr "نظام طباعة CUPS أو خادم CUPS بعيد؟"
-
-#: printer/printerdrake.pm:4600
-#, c-format
-msgid "The CUPS printing system can be used in two ways: "
-msgstr "يمكن استخدام نظام طباعة CUPS بطريقتين:"
-
-#: printer/printerdrake.pm:4602
-#, c-format
-msgid "1. The CUPS printing system can run locally. "
-msgstr "1. يمكن تشغيل نظام طباعة CUPS محلياً."
-
-#: printer/printerdrake.pm:4603
-#, c-format
-msgid ""
-"Then locally connected printers can be used and remote printers on other "
-"CUPS servers in the same network are automatically discovered. "
-msgstr ""
-"ثم استخدام الطابعات المتصلة محلياً والخادمات CUPS الأخرى في نفس الشبكة يتم "
-"اكتشافها تلقائياً."
-
-#: printer/printerdrake.pm:4604
-#, c-format
-msgid ""
-"Disadvantage of this approach is, that more resources on the local machine "
-"are needed: Additional software packages need to be installed, the CUPS "
-"daemon has to run in the background and needs some memory, and the IPP port "
-"(port 631) is opened. "
-msgstr ""
-"عيب هذه الطريقة هو الحاجة إلى المزيد من المصادر على الماكينة نفسها. يجب "
-"تثبيت حزم برامج إضافية، وأن يعمل عفريت CUPS في الخلفية ويحتاج إلى بعض "
-"الذاكرة، ويتم فتح منفذ IPP (المنفذ 631)."
-
-#: printer/printerdrake.pm:4606
-#, c-format
-msgid "2. All printing requests are immediately sent to a remote CUPS server. "
-msgstr "2. طلبات الطباعة كلها يتم إرسالها مباشرة إلى خادم CUPS البعيد."
-
-#: printer/printerdrake.pm:4607
-#, c-format
-msgid ""
-"Here local resource occupation is reduced to a minimum. No CUPS daemon is "
-"started or port opened, no software infrastructure for setting up local "
-"print queues is installed, so less memory and disk space is used. "
-msgstr ""
-"استخدام المصادر المحلية هنا مُقلّص إلى أدناه. لا عفريت CUPS يعمل أو منفذ "
-"مفتوح، ولا تثبيت لبنية برنامج تحتيّة لإعداد صافّات الطباعة المحليّة، لذا يستخدم "
-"حجم تخزين وذاكرة أقل."
-
-#: printer/printerdrake.pm:4608
-#, c-format
-msgid ""
-"Disadvantage is that it is not possible to define local printers then and if "
-"the specified server is down it cannot be printed at all from this machine. "
-msgstr ""
-"العيب هو عدم القدرة على تعريف طابعات محليّة ثم إن كان الخادم المحدّد مُعطلاً فلن "
-"يمكن الطباعة مطلقاً من هذه الماكينة."
-
-#: printer/printerdrake.pm:4610
-#, c-format
-msgid "How should CUPS be set up on your machine?"
-msgstr "كيف يجب إعداد CUPS على ماكينتك؟"
-
-#: printer/printerdrake.pm:4614 printer/printerdrake.pm:4629
-#: printer/printerdrake.pm:4633 printer/printerdrake.pm:4639
-#, c-format
-msgid "Remote server, specify Name or IP here:"
-msgstr "خادم بعيد، تحديد الاسم أو IP هنا:"
-
-#: printer/printerdrake.pm:4628
-#, c-format
-msgid "Local CUPS printing system"
-msgstr " نظام الطّباعة CUPS المحلي"
-
-#: printer/printerdrake.pm:4667
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "اختيار Spooler للطابعة"
-
-#: printer/printerdrake.pm:4668
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "أي نظام طباعة (spooler( تريد أن تستخدم؟"
-
-#: printer/printerdrake.pm:4717
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "تعذرت تهيئة الطابعة \"%s\"!"
-
-#: printer/printerdrake.pm:4732
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "تثبيت Foomatic..."
-
-#: printer/printerdrake.pm:4738
-#, c-format
-msgid "Could not install %s packages, %s cannot be started!"
-msgstr "تعذر تثبيت حزم %s، لا يمكن إطلاق %s !"
-
-#: printer/printerdrake.pm:4933
-#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it. "
-msgstr ""
-"تمت تهيئة الطابعات الآتية. اضغط مرّتين على الطابعة لتغيير إعداداتها؛ لجعلها "
-"طابعة افتراضية؛ أو لرؤية معلومات حولها."
-
-#: printer/printerdrake.pm:4963
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "عرض كل طابعات CUPS البعيدة المتوفرة"
-
-#: printer/printerdrake.pm:4964
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr "إنعاش قائمة الطابعات (لعرض كل طابعات CUPS البعيدة المتوفرة)"
-
-#: printer/printerdrake.pm:4975
-#, c-format
-msgid "CUPS configuration"
-msgstr "تهيئة CUPS"
-
-#: printer/printerdrake.pm:4996
-#, c-format
-msgid "Change the printing system"
-msgstr "تغيير نظام الطباعة"
-
-#: printer/printerdrake.pm:5005
-#, c-format
-msgid "Normal Mode"
-msgstr "وضع عادي"
-
-#: printer/printerdrake.pm:5006
-#, c-format
-msgid "Expert Mode"
-msgstr "وضعية الخبير"
-
-#: printer/printerdrake.pm:5284 printer/printerdrake.pm:5340
-#: printer/printerdrake.pm:5426 printer/printerdrake.pm:5435
-#, c-format
-msgid "Printer options"
-msgstr "خيارات الطابعة"
-
-#: printer/printerdrake.pm:5320
-#, c-format
-msgid "Modify printer configuration"
-msgstr "تعديل إعدادات الطابعة"
-
-#: printer/printerdrake.pm:5322
-#, c-format
-msgid ""
-"Printer %s%s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"الطابعة %s %s\n"
-"هل تريد تعديل هذه الطابعة؟"
-
-#: printer/printerdrake.pm:5327
-#, c-format
-msgid "This printer is disabled"
-msgstr "هذه الطابعة مُعطّلة عن العمل"
-
-#: printer/printerdrake.pm:5329
-#, c-format
-msgid "Do it!"
-msgstr "تنفيذ!"
-
-#: printer/printerdrake.pm:5335 printer/printerdrake.pm:5400
-#, c-format
-msgid "Printer name, description, location"
-msgstr "اسم الطابعة، وصف، المكان"
-
-#: printer/printerdrake.pm:5337 printer/printerdrake.pm:5419
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "مصنّع الطابعة، الطراز، المشغّل"
-
-#: printer/printerdrake.pm:5338 printer/printerdrake.pm:5420
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "مصنّع الطابعة، الطراز"
-
-#: printer/printerdrake.pm:5342 printer/printerdrake.pm:5430
-#, c-format
-msgid "Set this printer as the default"
-msgstr "تعيين هذه الطابعة كطابعة افتراضية"
-
-#: printer/printerdrake.pm:5347 printer/printerdrake.pm:5436
-#: printer/printerdrake.pm:5438 printer/printerdrake.pm:5447
-#, c-format
-msgid "Enable Printer"
-msgstr "تمكين الطابعة"
-
-#: printer/printerdrake.pm:5350 printer/printerdrake.pm:5441
-#: printer/printerdrake.pm:5442 printer/printerdrake.pm:5444
-#, c-format
-msgid "Disable Printer"
-msgstr "تعطيل الطابعة"
-
-#: printer/printerdrake.pm:5354 printer/printerdrake.pm:5448
-#, fuzzy, c-format
-msgid "Printer communication error handling"
-msgstr "نوع وصلة الطابعة"
-
-#: printer/printerdrake.pm:5355 printer/printerdrake.pm:5452
-#, c-format
-msgid "Print test pages"
-msgstr "طباعة صفحات اختبارية"
-
-#: printer/printerdrake.pm:5356 printer/printerdrake.pm:5454
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "تعلم كيف تستخدم هذه الطابعة"
-
-#: printer/printerdrake.pm:5357 printer/printerdrake.pm:5456
-#, c-format
-msgid "Remove printer"
-msgstr "إزالة الطابعة"
-
-#: printer/printerdrake.pm:5408
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "إزالة الطابعة القديمة \"%s\" ..."
-
-#: printer/printerdrake.pm:5439
-#, c-format
-msgid "Printer \"%s\" is now enabled."
-msgstr "تم الآن تمكين الطابعة \"%s\"."
-
-#: printer/printerdrake.pm:5445
-#, c-format
-msgid "Printer \"%s\" is now disabled."
-msgstr "تمّ الآن تعطيل الطابعة \"%s\"."
-
-#: printer/printerdrake.pm:5487
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "هل تريد فعلاً إزالة الطابعة \"%s\"؟"
-
-#: printer/printerdrake.pm:5491
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "جاري ازالة الطابعة \"%s\" ..."
-
-#: printer/printerdrake.pm:5515
-#, c-format
-msgid "Default printer"
-msgstr "الطابعة الإفتراضية"
-
-#: printer/printerdrake.pm:5516
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "تم تعيين الطابعة \"%s\" كطابعة افتراضية الآن."
-
#: raid.pm:42
#, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "لا أستطيع إضافة تجزيء للـRAID _المنسّق_ %s"
-#: raid.pm:148
+#: raid.pm:150
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "التجزيئات ليست كافية لمستوى RAID %d\n"
-#: scanner.pm:96
+#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr "تعذر إنشاء الدّليل /usr/share/sane/firmware !"
-#: scanner.pm:107
+#: scanner.pm:106
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr "تعذر إنشاء الوصلة /usr/share/sane/%s !"
-#: scanner.pm:114
+#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr "لم يمكن نسخ ملف firmware %s إلى /usr/share/sane/firmware!"
-#: scanner.pm:121
+#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr "لم يمكن تحديد صلاحيات ملف firmware %s!"
-#: scanner.pm:200 standalone/scannerdrake:66 standalone/scannerdrake:70
-#: standalone/scannerdrake:78 standalone/scannerdrake:321
-#: standalone/scannerdrake:370 standalone/scannerdrake:463
-#: standalone/scannerdrake:507 standalone/scannerdrake:511
-#: standalone/scannerdrake:533 standalone/scannerdrake:598
+#: scanner.pm:199
#, c-format
msgid "Scannerdrake"
msgstr "Scannerdrake"
-#: scanner.pm:201 standalone/scannerdrake:964
+#: scanner.pm:200
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr "لم يمكن تثبيت الحزم المطلوبة لمشاركة الماسحات الضّوئيّة."
-#: scanner.pm:202
+#: scanner.pm:201
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr "لن تكون ماسحاتك الضّوئيّة متوفّرة للمستخدمين غير الجذر."
@@ -15123,13 +5123,13 @@ msgstr "قبول/رفض رسائل أخطاء IPv4 الزّائفة."
#: security/help.pm:13
#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr " قبول/رفض صدى بثّ icmp"
+msgid "Accept/Refuse broadcasted icmp echo."
+msgstr "قبول/رفض صدى بثّ icmp"
#: security/help.pm:15
#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr " قبول/رفض صدى icmp"
+msgid "Accept/Refuse icmp echo."
+msgstr "قبول/رفض صدى icmp"
#: security/help.pm:17
#, c-format
@@ -15291,7 +5291,7 @@ msgstr ""
"تمكين/تعطيل الحماية من خداع ترجمة الاسم. إن\n"
"كان \"%s\" مُحدّداً، يرسل تقريراً إلى syslog أيضاً."
-#: security/help.pm:80 standalone/draksec:215
+#: security/help.pm:80
#, c-format
msgid "Security Alerts:"
msgstr "تنبيهات أمنية:"
@@ -15317,11 +5317,12 @@ msgid "Enable/Disable msec hourly security check."
msgstr "تمكين/تعطيل اختبارات msec الأمنية كل ساعة"
#: security/help.pm:90
-#, c-format
+#, fuzzy, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"Enable su only from members of the wheel group. If set to no, allows su from "
+"any user."
msgstr ""
-" تمكين استخدام su من قبل أعضاء مجموعة العجل أو السّماح باستخدام su من قبل أي "
+"تمكين استخدام su من قبل أعضاء مجموعة العجل أو السّماح باستخدام su من قبل أي "
"مستخدم."
#: security/help.pm:92
@@ -15336,13 +5337,13 @@ msgstr "تنشيط/تعطيل التحقّق من وضع عدم شرعيّة ب
#: security/help.pm:96
#, c-format
-msgid " Activate/Disable daily security check."
+msgid "Activate/Disable daily security check."
msgstr "تمكين/تعطيل التحقّق اليومي من الأمن."
#: security/help.pm:98
#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr " تمكين/تعطيل sulogin(8) في مستوى المستخدم الفردي."
+msgid "Enable/Disable sulogin(8) in single user level."
+msgstr "تمكين/تعطيل sulogin(8) في مستوى المستخدم الفردي."
#: security/help.pm:100
#, c-format
@@ -15600,8 +5601,8 @@ msgid "Enable msec hourly security check"
msgstr "تمكين اختبارات msec الأمنية كل ساعة"
#: security/l10n.pm:32
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
+#, fuzzy, c-format
+msgid "Enable su only from the wheel group members"
msgstr "تمكين استخدام su من قبل أعضاء مجموعة العجل أو لأيّ مستخدم"
#: security/l10n.pm:33
@@ -15726,8 +5727,8 @@ msgstr "تشغيل اختبارات chkrootkit"
#: security/l10n.pm:57
#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "لا تبعث رسائل بدون حاجة"
+msgid "Do not send empty mail reports"
+msgstr ""
#: security/l10n.pm:58
#, c-format
@@ -15766,6 +5767,11 @@ msgstr "مرحبا بالمخترقين"
msgid "Poor"
msgstr "فقير"
+#: security/level.pm:12
+#, c-format
+msgid "Standard"
+msgstr "قياسي"
+
#: security/level.pm:13
#, c-format
msgid "High"
@@ -15841,6 +5847,11 @@ msgstr ""
#: security/level.pm:55
#, c-format
+msgid "Security"
+msgstr "الأمن"
+
+#: security/level.pm:55
+#, c-format
msgid "DrakSec Basic Options"
msgstr "خيارات DrakSec الأساسية"
@@ -16199,52 +6210,67 @@ msgstr "تحميل مشغلات أجهزة USB."
msgid "Starts the X Font Server (this is mandatory for Xorg to run)."
msgstr "يبدأ خادم خطوط X (هذا واجب لكي يعمل Xorg)."
-#: services.pm:115 services.pm:157
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "اختر أي خدمات تريدها أن تبدأ آلياً عند التثبيت"
-
-#: services.pm:127 standalone/draksambashare:111
+#: services.pm:114
#, c-format
msgid "Printing"
msgstr "الطباعة"
-#: services.pm:128
+#: services.pm:115
#, c-format
msgid "Internet"
msgstr "الإنترنت"
-#: services.pm:131
+#: services.pm:118
#, c-format
msgid "File sharing"
msgstr "مشاركة الملفات"
-#: services.pm:138
+#: services.pm:120
+#, c-format
+msgid "System"
+msgstr "النظام"
+
+#: services.pm:125
#, c-format
msgid "Remote Administration"
msgstr "الإدارة عن بعد"
-#: services.pm:146
+#: services.pm:133
#, c-format
msgid "Database Server"
msgstr "خادم قواعد بيانات"
-#: services.pm:209
+#: services.pm:144 services.pm:180
+#, c-format
+msgid "Services"
+msgstr "الخدمات"
+
+#: services.pm:144
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr "اختر أي خدمات تريدها أن تبدأ آلياً عند التثبيت"
+
+#: services.pm:162
+#, c-format
+msgid "Services: %d activated for %d registered"
+msgstr "الخدمات: %d منشّطة لـ %d مسجلة"
+
+#: services.pm:196
#, c-format
msgid "running"
msgstr "تعمل"
-#: services.pm:209
+#: services.pm:196
#, c-format
msgid "stopped"
msgstr "متوقفة"
-#: services.pm:213
+#: services.pm:201
#, c-format
msgid "Services and daemons"
msgstr "الخدمات والعفاريت"
-#: services.pm:219
+#: services.pm:207
#, c-format
msgid ""
"No additional information\n"
@@ -16253,481 +6279,32 @@ msgstr ""
"عفواً، لا توجد معلومات\n"
"اضافية حول هذه الحزمة."
-#: services.pm:224 ugtk2.pm:1009
+#: services.pm:212 ugtk2.pm:898
#, c-format
msgid "Info"
msgstr "المعلومات"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "Start when requested"
msgstr "تشغيل عند الطّلب"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "On boot"
msgstr "عند الإقلاع"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Start"
msgstr "تشغيل"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Stop"
msgstr "إيقاف"
-#: share/advertising/01.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Packs"
-msgstr ""
-
-#: share/advertising/02.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More features"
-msgstr ""
-
-#: share/advertising/03.pl:3
-#, c-format
-msgid "Interactive firewall"
-msgstr ""
-
-#: share/advertising/04.pl:3
-#, c-format
-msgid "Desktop search"
-msgstr ""
-
-#: share/advertising/05.pl:3
-#, c-format
-msgid "New package manager"
-msgstr ""
-
-#: share/advertising/06.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More performances"
-msgstr ""
-
-#: share/advertising/07.pl:3
-#, c-format
-msgid "Latest kernel and GCC"
-msgstr ""
-
-#: share/advertising/08.pl:3
-#, c-format
-msgid "High Availibility"
-msgstr ""
-
-#: share/advertising/09.pl:3
-#, c-format
-msgid "Delta RPM"
-msgstr ""
-
-#: share/advertising/10.pl:3
-#, c-format
-msgid "Low resources setup"
-msgstr ""
-
-#: share/advertising/11.pl:3
-#, c-format
-msgid "Boot time reduction"
-msgstr ""
-
-#: share/advertising/12.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Easier to use"
-msgstr ""
-
-#: share/advertising/13.pl:3
-#, c-format
-msgid "Latest graphical interfaces: KDE and GNOME"
-msgstr ""
-
-#: share/advertising/14.pl:3
-#, c-format
-msgid "auto-installation servers"
-msgstr ""
-
-#: share/advertising/15.pl:3
-#, c-format
-msgid "Easy and quick installation"
-msgstr ""
-
-#: share/advertising/16.pl:3
-#, c-format
-msgid "Easy configuration thanks to 60 wizards"
-msgstr ""
-
-#: share/advertising/17.pl:3
-#, c-format
-msgid "Look and feel improved"
-msgstr ""
-
-#: share/advertising/18.pl:3
-#, c-format
-msgid "New webmin theme"
-msgstr ""
-
-#: share/advertising/19.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More support"
-msgstr ""
-
-#: share/advertising/20.pl:3
-#, c-format
-msgid "Better Hardware support"
-msgstr ""
-
-#: share/advertising/21.pl:3
-#, c-format
-msgid "Xen support"
-msgstr ""
-
-#: share/advertising/22.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More information"
-msgstr ""
-
-#: share/advertising/23.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Where to buy?"
-msgstr ""
-
-#: share/advertising/24.pl:3
-#, c-format
-msgid "Where to find technical assistance?"
-msgstr ""
-
-#: share/advertising/25.pl:3
-#, c-format
-msgid "How to join the Mandriva Linux community?"
-msgstr ""
-
-#: share/advertising/26.pl:3
-#, c-format
-msgid "How to keep your system up-to-date?"
-msgstr ""
-
-#: share/advertising/intel.pl:3
-#, c-format
-msgid "Intel Software"
-msgstr ""
-
-#: share/advertising/skype.pl:3
-#, c-format
-msgid "Skype lets you make calls through the Internet for free."
-msgstr ""
-
-#: share/compssUsers.pl:26
-#, c-format
-msgid "Office Workstation"
-msgstr "محطّة عمل مكتبية"
-
-#: share/compssUsers.pl:28
-#, c-format
-msgid ""
-"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
-"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
-msgstr ""
-"برامج مكتبية: معالجة الكلمات (OpenOffice.org Writer، Kword(، الجداول "
-"الحسابية (OpenOffice.org Calc، Kspread( ، برامج عرض pdf، الخ"
-
-#: share/compssUsers.pl:29
-#, c-format
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"برامج مكتبية: معالجة الكلمات (kword، abiword(، الجداول الحسابية (kspread، "
-"gnumeric) ، برامج عرض pdf، الخ"
-
-#: share/compssUsers.pl:34
-#, c-format
-msgid "Game station"
-msgstr "محطّة ألعاب"
-
-#: share/compssUsers.pl:35
-#, c-format
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "برامج التسلية: ألعاب فيديو، ألعاب لوحات، ألعاب استراتيجية، الخ"
-
-#: share/compssUsers.pl:38
-#, c-format
-msgid "Multimedia station"
-msgstr "محطة وسائط متعدّدة"
-
-#: share/compssUsers.pl:39
-#, c-format
-msgid "Sound and video playing/editing programs"
-msgstr "برامج تحرير/تشغيل الفيديو و الصوت"
-
-#: share/compssUsers.pl:44
-#, c-format
-msgid "Internet station"
-msgstr "محطّة إنترنت"
-
-#: share/compssUsers.pl:45
-#, c-format
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"مجموعة من الأدوات لقراءة و إرسال البريد و الأخبار (mutt، tin..( و لتصفح "
-"الإنترنت"
-
-#: share/compssUsers.pl:50
-#, c-format
-msgid "Network Computer (client)"
-msgstr "جهاز شبكة (عميل)"
-
-#: share/compssUsers.pl:51
-#, c-format
-msgid "Clients for different protocols including ssh"
-msgstr "عملاء لبروتوكولات مختلفة مثل ssh"
-
-#: share/compssUsers.pl:55
-#, c-format
-msgid "Configuration"
-msgstr "التهيئة"
-
-#: share/compssUsers.pl:56
-#, c-format
-msgid "Tools to ease the configuration of your computer"
-msgstr "أدوات لتسهيل إعداد جهازك"
-
-#: share/compssUsers.pl:60
-#, c-format
-msgid "Console Tools"
-msgstr "أدوات الطرفيّات"
-
-#: share/compssUsers.pl:61
-#, c-format
-msgid "Editors, shells, file tools, terminals"
-msgstr "محررات نصوص، صَدَفات، أدوات ملفات، طرفيات"
-
-#: share/compssUsers.pl:66 share/compssUsers.pl:170
-#, c-format
-msgid "C and C++ development libraries, programs and include files"
-msgstr "برامج و مكتبات تطوير C و C++"
-
-#: share/compssUsers.pl:70 share/compssUsers.pl:174
-#, c-format
-msgid "Documentation"
-msgstr "التّوثيق"
-
-#: share/compssUsers.pl:71 share/compssUsers.pl:175
-#, c-format
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "كتب ومذكرات Howto حول لينكس و البرامج الحرة"
-
-#: share/compssUsers.pl:75 share/compssUsers.pl:178
-#, c-format
-msgid "LSB"
-msgstr "LSB"
-
-#: share/compssUsers.pl:76 share/compssUsers.pl:179
-#, c-format
-msgid "Linux Standard Base. Third party applications support"
-msgstr "القاعدة القياسيّة للينكس (LSB). دعم تطبيقات الأطراف الثالثة"
-
-#: share/compssUsers.pl:86
-#, c-format
-msgid "Apache"
-msgstr "Apache"
-
-#: share/compssUsers.pl:89
-#, c-format
-msgid "Groupware"
-msgstr "برامج المجموعات"
-
-#: share/compssUsers.pl:90
-#, c-format
-msgid "Kolab Server"
-msgstr "خادم Kolab"
-
-#: share/compssUsers.pl:93 share/compssUsers.pl:134
-#, c-format
-msgid "Firewall/Router"
-msgstr "جدار ناري/موجِّه"
-
-#: share/compssUsers.pl:94 share/compssUsers.pl:135
-#, c-format
-msgid "Internet gateway"
-msgstr "بوابة الإنترنت"
-
-#: share/compssUsers.pl:97
-#, c-format
-msgid "Mail/News"
-msgstr "بريد/أخبار"
-
-#: share/compssUsers.pl:98
-#, c-format
-msgid "Postfix mail server, Inn news server"
-msgstr "خادم بريد Postfix، خادم أخبار Inn"
-
-#: share/compssUsers.pl:101
-#, c-format
-msgid "Directory Server"
-msgstr "خادم مجلّدات"
-
-#: share/compssUsers.pl:105
-#, c-format
-msgid "FTP Server"
-msgstr "الخادم FTP"
-
-#: share/compssUsers.pl:106
-#, c-format
-msgid "ProFTPd"
-msgstr "ProFTPd"
-
-#: share/compssUsers.pl:109
-#, c-format
-msgid "DNS/NIS"
-msgstr "DNS/NIS"
-
-#: share/compssUsers.pl:110
-#, c-format
-msgid "Domain Name and Network Information Server"
-msgstr "خادم أسماء النّطاقات ومعلومات الشّبكة"
-
-#: share/compssUsers.pl:113
-#, c-format
-msgid "File and Printer Sharing Server"
-msgstr "خادم مشاركة الملفّات والطّابعات"
-
-#: share/compssUsers.pl:114
-#, c-format
-msgid "NFS Server, Samba server"
-msgstr "خادم NFS، خادم Samba"
-
-#: share/compssUsers.pl:117 share/compssUsers.pl:130
-#, c-format
-msgid "Database"
-msgstr "قواعد البيانات"
-
-#: share/compssUsers.pl:118
-#, c-format
-msgid "PostgreSQL and MySQL Database Server"
-msgstr "خادم قواعد بيانات PostgreSQL و MySQL"
-
-#: share/compssUsers.pl:122
-#, c-format
-msgid "Web/FTP"
-msgstr "وب/FTP"
-
-#: share/compssUsers.pl:123
-#, c-format
-msgid "Apache, Pro-ftpd"
-msgstr "Apache، Pro-ftpd"
-
-#: share/compssUsers.pl:126
-#, c-format
-msgid "Mail"
-msgstr "البريد"
-
-#: share/compssUsers.pl:127
-#, c-format
-msgid "Postfix mail server"
-msgstr "خادم البريد Postfix"
-
-#: share/compssUsers.pl:131
-#, c-format
-msgid "PostgreSQL or MySQL database server"
-msgstr "خادم قواعد البيانات PostgreSQL أو MySQL"
-
-#: share/compssUsers.pl:138
-#, c-format
-msgid "Network Computer server"
-msgstr "خادم شبكات"
-
-#: share/compssUsers.pl:139
-#, c-format
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "خادم NFS، خادم SMB، خادم بروكسي، خادم ssh"
-
-#: share/compssUsers.pl:147
-#, c-format
-msgid "KDE Workstation"
-msgstr "محطّة عمل كيدي"
-
-#: share/compssUsers.pl:148
-#, c-format
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"بيئة سطح مكتب كيدي، البيئة الرسومية الأساسية مع مجموعة من الأدوات المصاحبة"
-
-#: share/compssUsers.pl:152
-#, c-format
-msgid "GNOME Workstation"
-msgstr "محطّة عمل جينوم"
-
-#: share/compssUsers.pl:153
-#, c-format
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"بيئة رسومية مع مجموعة من التطبيقات و أدوات سطح المكتب المناسبة للمستخدمين "
-"العاديين"
-
-#: share/compssUsers.pl:156
-#, fuzzy, c-format
-msgid "IceWm Desktop"
-msgstr "Plucker Desktop"
-
-#: share/compssUsers.pl:160
-#, c-format
-msgid "Other Graphical Desktops"
-msgstr "أسطح مكتب رسومية أخرى"
-
-#: share/compssUsers.pl:161
-#, fuzzy, c-format
-msgid "Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm، Window Maker، Enlightenment، Fvwm، الخ"
-
-#: share/compssUsers.pl:184
-#, c-format
-msgid "Utilities"
-msgstr "منافع"
-
-#: share/compssUsers.pl:186 share/compssUsers.pl:187 standalone/logdrake:384
-#, c-format
-msgid "SSH Server"
-msgstr "خادم SSH"
-
-#: share/compssUsers.pl:191
-#, c-format
-msgid "Webmin"
-msgstr "Webmin"
-
-#: share/compssUsers.pl:192
-#, c-format
-msgid "Webmin Remote Configuration Server"
-msgstr "خادم التّهيئة البعيدة Webmin"
-
-#: share/compssUsers.pl:196
-#, c-format
-msgid "Network Utilities/Monitoring"
-msgstr "منافع شبكة/مراقبة"
-
-#: share/compssUsers.pl:197
-#, c-format
-msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
-msgstr "أدوات مراقبة، محاسبة عمليّات، tcpdump، nmap، ..."
-
-#: share/compssUsers.pl:201
-#, c-format
-msgid "Mandriva Wizards"
-msgstr "مرشدو ماندريبا"
-
-#: share/compssUsers.pl:202
-#, c-format
-msgid "Wizards to configure server"
-msgstr "مرشدو تهيئة الخادم"
-
-#: standalone.pm:23
+#: standalone.pm:24
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
@@ -16742,7 +6319,8 @@ msgid ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
msgstr ""
" هذا البرنامج هو برنامج حر؛ يمكنك إعادة توزيعة و/أو تعديله\n"
" تحت بنود رخصة GNU العمومية الشاملة (GPL) كما نُشِرت عن طريق\n"
@@ -16757,11 +6335,11 @@ msgstr ""
" يجب أن تكون قد تسلمت نسخة من ترخيص GNU العمومية الشاملة\n"
" مع البرنامج؛ في حالة عدم تسلم الرخصة راسل جمعية البرمجيات الحرة على العنوان "
"التالي\n"
-" Free Software Foundation، Inc.، 59 Temple Place - Suite 330، Boston، MA "
-"02111-1307،\n"
+" Free Software Foundation, Inc.، 51 Franklin Street, Fifth Floor، Boston، MA "
+"02110-1301،\n"
" USA.\n"
-#: standalone.pm:42
+#: standalone.pm:43
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
@@ -16787,7 +6365,7 @@ msgstr ""
"--help : إظهار هذه الرسالة.\n"
"--version : إظهار رقم النسخة.\n"
-#: standalone.pm:54
+#: standalone.pm:55
#, c-format
msgid ""
"[--boot] [--splash]\n"
@@ -16802,7 +6380,7 @@ msgstr ""
" --splash - تمكين تهيئة سمة الإقلاع\n"
"الوضع الافتراضي: عرض تهيئة ميزة الدّخول التّلقائي"
-#: standalone.pm:59
+#: standalone.pm:60
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
@@ -16819,7 +6397,7 @@ msgstr ""
" --report - يجب أن يكون البرنامج واحداً من أدوات ماندريبا لينكس\n"
" --incident - يجب أن يكون البرنامج واحداً من أدوات ماندريبا لينكس"
-#: standalone.pm:65
+#: standalone.pm:66
#, c-format
msgid ""
"[--add]\n"
@@ -16836,7 +6414,7 @@ msgstr ""
" --internet - هيّئ الإنترنت\n"
" --wizard - مشابهة للخيار --add"
-#: standalone.pm:71
+#: standalone.pm:72
#, c-format
msgid ""
"\n"
@@ -16867,7 +6445,7 @@ msgstr ""
" : name_of_application مثال staroffice \n"
" : و gs لبرنامج ghostscript لهذا فقط."
-#: standalone.pm:86
+#: standalone.pm:87
#, c-format
msgid ""
"[OPTIONS]...\n"
@@ -16897,17 +6475,17 @@ msgstr ""
"--delclient : احذف ماكينة عميل من MTS (يتطلّب عنوان MAC، IP، واسم صورة "
"nbi)"
-#: standalone.pm:98
+#: standalone.pm:99
#, c-format
msgid "[keyboard]"
msgstr "[keyboard]"
-#: standalone.pm:99
+#: standalone.pm:100
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-#: standalone.pm:100
+#: standalone.pm:101
#, c-format
msgid ""
"[OPTIONS]\n"
@@ -16930,12 +6508,7 @@ msgstr ""
"--status : يُرجع 1 إن كنت متّصلاً أو صفر في خلاف ذلك، ثمّ يخرج.\n"
"--quiet : لا تكن تفاعليّاً. لاستخدامها مع وصل/قطع الاتّصال."
-#: standalone.pm:109
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: standalone.pm:110
+#: standalone.pm:111
#, c-format
msgid ""
"[OPTION]...\n"
@@ -16952,7 +6525,7 @@ msgstr ""
" --changelog-first عرض سجلّ التّغييرات قبل سرد الملفّات في نافذة الوصف\n"
" --merge-all-rpmnew اقترح دمج كلّ ملفّات .rpmnew/.rpmsave المعثور عليها"
-#: standalone.pm:115
+#: standalone.pm:116
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
@@ -16961,7 +6534,7 @@ msgstr ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
-#: standalone.pm:116
+#: standalone.pm:117
#, c-format
msgid ""
" [everything]\n"
@@ -16972,7 +6545,7 @@ msgstr ""
" XFdrake [--noauto] monitor\n"
" XFdrake resolution"
-#: standalone.pm:149
+#: standalone.pm:150
#, c-format
msgid ""
"\n"
@@ -16983,9627 +6556,102 @@ msgstr ""
"الاستخدام: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
-#: standalone/XFdrake:59
-#, c-format
-msgid "You need to reboot for changes to take effect"
-msgstr "عليك إعادة التّشغيل لتحدث التّغييرات تأثيراً"
-
-#: standalone/XFdrake:90
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "يرجى تسجيل الخروج ثم استخدام Ctrl-Alt-BackSpace"
-
-#: standalone/XFdrake:94
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr "تحتاج أن تقوم بالخروج والعودة مجدّداً حتى يسري مفعول التّغييرات"
-
-#: standalone/drakTermServ:112 standalone/drakTermServ:118
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s يتطلّب اسم مستخدم...\n"
-
-#: standalone/drakTermServ:129
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s يتطلّب اسم مضيف، عنوان MAC، عنوان IP، nbi-image، 0/1 من أجل "
-"THIN_CLIENT، 0/1 من أجل التّهيئة المحلّيّة...\n"
-
-#: standalone/drakTermServ:135
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s يتطلّب اسم مضيف...\n"
-
-#: standalone/drakTermServ:144
-#, c-format
-msgid "Host name for client"
-msgstr ""
-
-#: standalone/drakTermServ:145
-#, c-format
-msgid "MAC address should be in the format 00:11:22:33:44:55"
-msgstr ""
-
-#: standalone/drakTermServ:146
-#, c-format
-msgid "IP address to be assigned to client"
-msgstr ""
-
-#: standalone/drakTermServ:147
-#, c-format
-msgid "Kernel/network adapter image to use to boot client"
-msgstr ""
-
-#: standalone/drakTermServ:148
-#, c-format
-msgid "Create masking files to allow configuration tools to run on client"
-msgstr ""
-
-#: standalone/drakTermServ:149
-#, c-format
-msgid "Applications will run on server machine"
-msgstr ""
-
-#: standalone/drakTermServ:234 standalone/drakTermServ:237
-#, c-format
-msgid "Terminal Server Configuration"
-msgstr "تهيئة خادم الطّرفيات"
-
-#: standalone/drakTermServ:243
-#, fuzzy, c-format
-msgid "dhcpd Config"
-msgstr "تهيئة dhcpd..."
-
-#: standalone/drakTermServ:247
-#, c-format
-msgid "Enable Server"
-msgstr "تمكين الخادم"
-
-#: standalone/drakTermServ:253
-#, c-format
-msgid "Disable Server"
-msgstr "تعطيل الخادم"
-
-#: standalone/drakTermServ:259
-#, c-format
-msgid "Start Server"
-msgstr "تشغيل الخادم"
-
-#: standalone/drakTermServ:265
-#, c-format
-msgid "Stop Server"
-msgstr "إيقاف الخادم"
-
-#: standalone/drakTermServ:274
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "القرص المرن/ISO للإقلاع الشّبكي"
-
-#: standalone/drakTermServ:278
-#, c-format
-msgid "Net Boot Images"
-msgstr "صور إقلاع الشبكة"
-
-#: standalone/drakTermServ:285
-#, c-format
-msgid "Add/Del Users"
-msgstr "إضافة/حذف المستخدمين"
-
-#: standalone/drakTermServ:289
-#, c-format
-msgid "Add/Del Clients"
-msgstr "إضافة/حذف العملاء"
-
-#: standalone/drakTermServ:297
-#, c-format
-msgid "Images"
-msgstr "صُوَر"
-
-#: standalone/drakTermServ:298
-#, c-format
-msgid "Clients/Users"
-msgstr "عملاء/مستخدمين"
-
-#: standalone/drakTermServ:316 standalone/drakbug:47
-#, c-format
-msgid "First Time Wizard"
-msgstr "معالج المرّة الأولى"
-
-#: standalone/drakTermServ:354 standalone/drakTermServ:355
-#, c-format
-msgid "%s defined as dm, adding gdm user to /etc/passwd$$CLIENT$$"
-msgstr "%s معرّف على أنّه dm، جاري إضافة المستخدم gdm إلى /etc/passwd$$CLIENT$$"
-
-#: standalone/drakTermServ:361
-#, c-format
-msgid ""
-"\n"
-" This wizard routine will:\n"
-" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
-"\t2) Setup DHCP.\n"
-"\t\n"
-"After doing these steps, the wizard will:\n"
-"\t\n"
-" a) Make all "
-"nbis. \n"
-" b) Activate the "
-"server. \n"
-" c) Start the "
-"server. \n"
-" d) Synchronize the shadow files so that all users, including root, \n"
-" are added to the shadow$$CLIENT$$ "
-"file. \n"
-" e) Ask you to make a boot floppy.\n"
-" f) If it's thin clients, ask if you want to restart KDM.\n"
-msgstr ""
-"\n"
-" إجراء المُرشد هذا سوف:\n"
-" \t1) يسألك اختيار إمّا عميل `نحيف` أو `ثخين`.\n"
-"\t2) يُعدّ DHCP.\n"
-"\t\n"
-"بعد القيام بهذه الخطوات، سيقوم المُرشد بـ:\n"
-"\t\n"
-" أ) عمل كلّ "
-"nbis. \n"
-" ب) تشغيل "
-"الخادم. \n"
-" ج) تشغيل الخادم. \n"
-" د) مُزامنة ملفّات الظلّ بحيث يُضاف كلّ المستخدمين، بما فيهم root, \n"
-" إلى ملف shadow$$CLIENT$"
-"$. \n"
-" هـ) سؤالك أن تنشئ قرص إقلاع مرن.\n"
-" و) سؤالك إن كنت تريد إعادة تشغيل KDM، إن كان لعملاء نحيفين.\n"
-
-#: standalone/drakTermServ:407
-#, c-format
-msgid "Cancel Wizard"
-msgstr "إلغاء المرشد"
-
-#: standalone/drakTermServ:422
-#, c-format
-msgid "Please save dhcpd config!"
-msgstr "الرجاء حفظ تهيئة dhcpd!"
-
-#: standalone/drakTermServ:450
-#, c-format
-msgid "Use thin clients."
-msgstr "استخدام العملاء النّحاف."
-
-#: standalone/drakTermServ:452
-#, c-format
-msgid "Sync client X keyboard settings with server."
-msgstr "مزامنة إعدادات لوحة مفاتيح عميل X مع الخادم."
-
-#: standalone/drakTermServ:454
-#, fuzzy, c-format
-msgid ""
-"Please select default client type (Fat is the default type if 'Use thin' is "
-"unchecked).\n"
-" 'Thin' clients run everything off the server's CPU/RAM, using the client "
-"display.\n"
-" 'Fat' clients use their own CPU/RAM but the server's filesystem."
-msgstr ""
-"رجاء اختيار نوع العميل الافتراضي.\n"
-" العملاء `النّحاف` يشغّلون كلّ شيء من ذاكرة/مُعالج الخادم، باستخدام جهاز عَرْض "
-"العميل.\n"
-" العملاء `الثّخان` يستخدمون الذّاكرة/وحدة المعالجة المركزية (cpu) الخاصّة "
-"بهم ولكن نظام ملفّات الخادم."
-
-#: standalone/drakTermServ:474
-#, c-format
-msgid "Creating net boot images for all kernels"
-msgstr "جاري إنشاء صور الإقلاع الشّبكي لكلّ الأنْوية"
-
-#: standalone/drakTermServ:475 standalone/drakTermServ:807
-#: standalone/drakTermServ:823
-#, c-format
-msgid "This will take a few minutes."
-msgstr "سيستغرق هذا بضع دقائق."
-
-#: standalone/drakTermServ:481 standalone/drakTermServ:521
-#, c-format
-msgid "Done!"
-msgstr "تمّ!"
-
-#: standalone/drakTermServ:492 standalone/drakTermServ:894
-#, c-format
-msgid "%s failed"
-msgstr ""
-
-#: standalone/drakTermServ:501
-#, c-format
-msgid ""
-"Not enough space to create\n"
-"NBIs in %s.\n"
-"Needed: %d MB, Free: %d MB"
-msgstr ""
-
-#: standalone/drakTermServ:507
-#, c-format
-msgid "Syncing server user list with client list, including root."
-msgstr ""
-"جاري مزامنة لائحة مستخدمي الخادم مع لائحة العميل، بما يشمل المستخدم الجذر."
-
-#: standalone/drakTermServ:527
-#, c-format
-msgid ""
-"In order to enable changes made for thin clients, the display manager must "
-"be restarted. Restart now?"
-msgstr ""
-"لتمكين التغييرات المنفّذة على العملاء النّحاف، يجب إعادة تشغيل مدير العرض. "
-"إعادة التشغيل الآن؟"
-
-#: standalone/drakTermServ:564
-#, c-format
-msgid "Terminal Server Overview"
-msgstr "نبذة عن خادم الطّرفيّات"
-
-#: standalone/drakTermServ:565
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and %s is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-" - أنشئ صور إقلاع ممكّنة لـEtherboot:\n"
-" \tلإقلاع نواة عبر etherboot، يجب إنشاء صورة نواة/initrd\n"
-". \tيقوم mkinitrd-net بمعظم هذا العمل و %s هو مجرّد واجهة رسوميّة\n"
-" \tلتساعدك بإدارة/تخصيص هذه الصّور. كي تُنشئ الملفّ \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include والذي يسحب على شكل مُضاف "
-"في \n"
-" \tdhcpd.conf، يجب عليك إنشاء صور etherboot لنواة كاملة واحدة على "
-"الأقل."
-
-#: standalone/drakTermServ:571
-#, c-format
-msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. %s helps create/"
-"remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
-msgstr ""
-" - صيانة /etc/dhcpd.conf:\n"
-" \tلتقوم بإقلاع العملاء عبر الشّبكة، يحتاج كلّ عميل إلى مُدخل dhcpd."
-"conf، يعيّن عنون IP \n"
-" \tوصور الإقلاع الشّبكي للماكينة. يساعد %sبإنشاء/إزالة \n"
-" \tهذه المُدخلات.\n"
-"\t\t\t\n"
-" \t(قد تحذف بطاقات PCI الصّورة - يقوم etherboot بطلب الصّورة الصّحيحة.\n"
-"\t\t\tعليك أيضاً اعتبار أنّه عندما يبحث etherboot عن الصّور، فإنّه يتوقّع. \n"
-"\t\t\tسماء شبية بـboot-3c59x.nbi، بدلاً من boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t\n"
-" \tتنسيق ملف dhcpd.conf المفترض لدعم العملاء غير ذي الأقراص يظهر على "
-"شكل:"
-
-#: standalone/drakTermServ:589
-#, fuzzy, c-format
-msgid ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be "
-"'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, \n"
-" %s is written for thin clients. \n"
-" System config files xdm-config, kdmrc, and gdm.conf are modified if "
-"thin clients are \n"
-" used, to enable XDMCP. Since there are security issues in using "
-"XDMCP, hosts.deny and \n"
-" hosts.allow are modified to limit access to the local subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-msgstr ""
-" في حين أنّه يمكنك استخدام مجموعة من عناوين IP، بدلاً من إعداد مُدخل "
-"محدّد\n"
-" لماكينة العميل، فإن استخدام مخطَّط عناوين ثابتة يسهّل استخدام وظيفة\n"
-" ملفّات التّهيئة الخاصّة لكل عميل والتي يزوّدها %s.\n"
-"\t\t\t\n"
-" ملاحظة: المُدخل '#type' يستخدمه %s فقط. يمكن أن يكون العملاء إمّا "
-"'نحاف'\n"
-" أو 'ثخان'. العملاء النّحاف تشغّل معظم البرنامج على الخادم عبر XDMCP، "
-"بينما يقوم العملاء الثّخان بتشغيل \n"
-" معظم البرامج على ماكينة العميل. يتمّ كتابة inittab، %s\n"
-"للعملاء النّحاف. ملفّات تهيئة النّظام xdm-config، وkdmrc، و gdm.conf يتمّ\n"
-" تعديلها عند استخدام العملاء النّحاف، لتمكين XDMCP. حيث أنّ هناك مسائل "
-"أمنيّة في\n"
-" استخدام XDMCP، يتمّ تعديل hosts.deny و hosts.allow للحدّ من الوصول إلى "
-"الشبكة الفرعيّة\n"
-" المحليّة.\n"
-"\t\t\t\n"
-" ملاحظة: المُدخل '#hdw_config' يستخدمه أيضاً فقط عملاء %s. يمكن أن "
-"يكون العملاء\n"
-"إمّا 'true' أو false'. تمكّن 'true' دخول المستخدم الجذر عندماكينة العميل وتسمح "
-"بتهيئة العتاد\n"
-" المحلّي من صوت، وماوس، و X، باستخدام أدوات 'drak'. يُمكن هذا\n"
-" بإنشاء ملفّات تهيئة منفصلة مرتبطة بعنوان IP الخاص بالعميل وإنشاء \n"
-" أماكن تركيب كتابة/قراءة لتسمح للمستخدمين بتبديل الملفّات. حالما كنت "
-"راضياً بالتّهيئة، يمكنك إزالة صلاحيات دخول المستخدم الجذر من العميل.\n"
-"\t\t\t\n"
-" ملاحظة: يجب عليك إيقاف/تشغيل الخادم بعد القيام بإضافة أو تغيير العملاء."
-
-#: standalone/drakTermServ:609
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-msgstr ""
-" - قُم بصيانة /etc/exports:\n"
-" \tيسمح %s بتصدير نظام الملفّات root إلى العملاء اللّاقرصيّة.%s\n"
-" \tيقوم بإعداد المُدخل الصّحيح للسّماح بوصول المستخدم anonymous إلى نظام "
-"الملفّات root من\n"
-" \tالعملاء اللّاقرصيّون.\n"
-"\n"
-" \tالمُدخل الاعتيادي للتّصدير لـ%s هو:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tمع تعريف SUBNET/MASK لشبكتك."
-
-#: standalone/drakTermServ:621
-#, fuzzy, c-format
-msgid ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. \n"
-" \t%s helps in this respect by adding or removing system users from "
-"this \n"
-" \tfile."
-msgstr ""
-" - قُم بصيانة %s:\n"
-" \tكي يستطيع المستخدمون الدّخول إلى النّظام من عميل غير ذي قرص، يجب أن "
-"يُكرّر المُدخل\n"
-" \tفي /etc/shadow في %s. %s\n"
-" \tيساعد بهذا الأمر بإضافة أو إزالة مستخدمي النّظام من هذا الملفّ."
-
-#: standalone/drakTermServ:626
-#, c-format
-msgid ""
-" - Per client %s:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t%s will help create these files."
-msgstr ""
-" - %s لكلّ عميل:\n"
-" \tخلال %s، كل عميل غير ذي قرص يمكن أن يكون له ملفّات تهيئته الخاصّة "
-"له.\n"
-" \tعلى نظام الملفّات root للخادم. بالسّماح بتهيئة عتاد العميل المحلّي، \n"
-" \tسيساعد %s بإنشاء هذه الملفّات."
-
-#: standalone/drakTermServ:631
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-msgstr ""
-" - ملفّات تهيئة النّظام لكلّ عميل:\n"
-" \tخلال %s، كل عميل غير ذي قرص يمكن أن يكون له ملفّات تهيئته الخاصّة "
-"له.\n"
-" \tعلى نظام الملفّات root للخادم. بالسّماح بتهيئة عتاد العميل المحلّي، \n"
-" \tيمكن للعملاء تخصيص الملفّات مثل /etc/modules.conf، /etc/sysconfig/"
-"mouse، \n"
-" \t/etc/sysconfig/keyboard بناء على كلّ عميل.\n"
-"\n"
-" ملاحظة: تمكين تهيئة عتاد العميل المحلّي لا يمكّن المستخدم الجذر من "
-"الدّخول إلى الخادم الطّرفي \n"
-" على ماكينة كلّ عميل مُكّنت فيها هذه الميزة. التّهيئة المحليّة يمكن أن\n"
-" تُعطّل مجدّداً، للحفاظ على ملفّات التّهيئة، حالما تتمّ تهيئة ماكينة العميل."
-"machine is configured."
-
-#: standalone/drakTermServ:640
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s will configure this file to work in conjunction with the images "
-"created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical TFTP configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
-msgstr ""
-" - /etc/xinetd.d/tftp:\n"
-" \tسيقوم %s بتهيئة هذا الملف للعمل مع الصور المنشأة.\n"
-" \tمن قبل mkinitrd-net، والمُدخلات في /etc/dhcpd.conf، لتقديمصورة "
-"الإقلاع لكل \n"
-" \tعميل غير ذي قرص.\n"
-"\n"
-" \tيبدو ملف تهيئة TFTP الاعتيادي مثل:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tالتغييرات هنا عن التثبيت الافتراضي هي تغيير علم disable إلى\n"
-" \t'no' وتغيير مسار الدليل إلى /var/lib/tftpboot، حيث يضع mkinitrd-"
-"net\n"
-" \tصوره."
-
-#: standalone/drakTermServ:661
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-msgstr ""
-" - إنشاء أقراص etherboot مرنة/مدمجة:\n"
-" \tماكينات العملاء غير ذوي الأقراص تحتاج إما إلى صور ROM على واجهة "
-"الشبكة NIC، أوقرص إقلاع مرن\n"
-" \tأو قرصاً مدمجاً لابتداء سلسلة الإقلاع. سيساعد %s بتوليد هذه\n"
-" \tالصور، بناء على واجهة الشبكة NIC في ماكينة العميل.\n"
-" \t\t\n"
-" \tمثال بسيط على إنشاء قرص إقلاع مرن لبطاقة 3Com 3c509 يدوياً:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-
-#: standalone/drakTermServ:694
-#, c-format
-msgid "Boot Floppy"
-msgstr "قرص الإقلاع"
-
-#: standalone/drakTermServ:696
-#, c-format
-msgid "Boot ISO"
-msgstr "ملف ISO الإقلاع"
-
-#: standalone/drakTermServ:698
-#, c-format
-msgid "PXE Image"
-msgstr "صورة PXE"
-
-#: standalone/drakTermServ:759
-#, c-format
-msgid "Default kernel version"
-msgstr "نسخة النواة الافتراضية"
-
-#: standalone/drakTermServ:764
-#, c-format
-msgid "Create PXE images"
-msgstr ""
-
-#: standalone/drakTermServ:765
-#, c-format
-msgid "Use Unionfs (TS2)"
-msgstr ""
-
-#: standalone/drakTermServ:795
-#, c-format
-msgid "Install i586 kernel for older clients"
-msgstr ""
-
-#: standalone/drakTermServ:805
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "بناء النواة بأكملها -->"
-
-#: standalone/drakTermServ:812
-#, c-format
-msgid "No kernel selected!"
-msgstr "لم تُحدّد نواة!"
-
-#: standalone/drakTermServ:815
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "بناء NIC واحدة -->"
-
-#: standalone/drakTermServ:819 standalone/drakTermServ:1643
-#, c-format
-msgid "No NIC selected!"
-msgstr "لم يتم اختيار NIC!"
-
-#: standalone/drakTermServ:822
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "بناء كل الأنْوية -->"
-
-#: standalone/drakTermServ:835
-#, c-format
-msgid ""
-"Custom\n"
-"kernel args"
-msgstr ""
-
-#: standalone/drakTermServ:840
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- حذف"
-
-#: standalone/drakTermServ:845
-#, c-format
-msgid "No image selected!"
-msgstr "لم تختر أيّة صورة!"
-
-#: standalone/drakTermServ:848
-#, c-format
-msgid "Delete All NBIs"
-msgstr "حذف كل NBI"
-
-#: standalone/drakTermServ:925
+#: timezone.pm:148 timezone.pm:149
#, fuzzy, c-format
-msgid "Building images for kernel:"
-msgstr "جاري إنشاء صور الإقلاع الشّبكي لكلّ الأنْوية"
-
-#: standalone/drakTermServ:1050
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! تظهر إذا كانت كلمة المرور في قاعدة بيانات النظام مختلفة\n"
-"عن تلك التي لقاعدة بيانات خادم الطرفيات.\n"
-"حذف/إعادة إضافة المستخدم إلى خادم الطرفيات لتمكين تسجيل الدخول."
-
-#: standalone/drakTermServ:1055
-#, c-format
-msgid "Add User -->"
-msgstr "إضافة مستخدم -->"
-
-#: standalone/drakTermServ:1061
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- حذف المستخدم"
-
-#: standalone/drakTermServ:1097
-#, c-format
-msgid "type: %s"
-msgstr "النوع: %s"
-
-#: standalone/drakTermServ:1101
-#, c-format
-msgid "local config: %s"
-msgstr "التهيئة المحلّيّة: %s"
-
-#: standalone/drakTermServ:1136
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"السماح بالتهيئة المحلية\n"
-"للعتاد."
-
-#: standalone/drakTermServ:1146
-#, c-format
-msgid "No net boot images created!"
-msgstr "لم يتم إنشاء صور اقلاع عبر الشبكة!"
-
-#: standalone/drakTermServ:1165
-#, c-format
-msgid "Thin Client"
-msgstr "عميل نحيف"
-
-#: standalone/drakTermServ:1169
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "السماح للعملاء النحاف"
-
-#: standalone/drakTermServ:1170
-#, c-format
-msgid ""
-"Sync client X keyboard\n"
-" settings with server."
-msgstr ""
-"مزامنة تعيينات لوحة مفاتيح X العميل\n"
-" مع الخادم."
-
-#: standalone/drakTermServ:1171
-#, c-format
-msgid "Add Client -->"
-msgstr "إضافة عميل -->"
-
-#: standalone/drakTermServ:1181
-#, c-format
-msgid "Unknown MAC address format"
-msgstr ""
-
-#: standalone/drakTermServ:1195
-#, c-format
-msgid "type: fat"
-msgstr "type: fat"
-
-#: standalone/drakTermServ:1196
-#, c-format
-msgid "type: thin"
-msgstr "type: thin"
-
-#: standalone/drakTermServ:1203
-#, c-format
-msgid "local config: false"
-msgstr "local config: false"
-
-#: standalone/drakTermServ:1204
-#, c-format
-msgid "local config: true"
-msgstr "local config: true"
-
-#: standalone/drakTermServ:1212
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- تحرير العميل"
-
-#: standalone/drakTermServ:1237
-#, c-format
-msgid "Disable Local Config"
-msgstr "تعطيل التّهيئة المحلّيّة"
-
-#: standalone/drakTermServ:1244
-#, c-format
-msgid "Delete Client"
-msgstr "حذف العميل"
-
-#: standalone/drakTermServ:1267
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-"يجب إعادة تشغيل مدير العرض لكي يتم تفعيل التغييرات. \n"
-"(service dm restart - في سطر الأوامر)"
-
-#: standalone/drakTermServ:1313
-#, c-format
-msgid "Thin clients will not work with autologin. Disable autologin?"
-msgstr ""
-"لن يستطيع العملاء النّحاف العمل باستخدام الدّخول التّلقائي. هل أعطّل الدّخول "
-"التّلقائي؟"
-
-#: standalone/drakTermServ:1328
-#, c-format
-msgid "All clients will use %s"
-msgstr "سوف يستخدم كلّ العملاء %s"
-
-#: standalone/drakTermServ:1362
-#, c-format
-msgid "Subnet:"
-msgstr "الشّبكة الفرعيّة:"
-
-#: standalone/drakTermServ:1369
-#, c-format
-msgid "Netmask:"
-msgstr "قناع الشّبكة:"
-
-#: standalone/drakTermServ:1376
-#, c-format
-msgid "Routers:"
-msgstr "الموجّهات:"
-
-#: standalone/drakTermServ:1383
-#, c-format
-msgid "Subnet Mask:"
-msgstr "قناع الشّبكة:"
-
-#: standalone/drakTermServ:1390
-#, c-format
-msgid "Broadcast Address:"
-msgstr "عنوان البثّ:"
-
-#: standalone/drakTermServ:1397
-#, c-format
-msgid "Domain Name:"
-msgstr "اسم النطاق:"
-
-#: standalone/drakTermServ:1405
-#, c-format
-msgid "Name Servers:"
-msgstr "خادمات الإسم:"
-
-#: standalone/drakTermServ:1416
-#, c-format
-msgid "IP Range Start:"
-msgstr "بداية مجال عناوين IP:"
-
-#: standalone/drakTermServ:1417
-#, c-format
-msgid "IP Range End:"
-msgstr "نهاية مجال عناوين IP:"
-
-#: standalone/drakTermServ:1459
-#, c-format
-msgid "Append TS Includes To Existing Config"
-msgstr "إضافة محتويات TS للتّهيئة الموجودة"
-
-#: standalone/drakTermServ:1461
-#, c-format
-msgid "Write Config"
-msgstr "كتابة الإعدادات"
-
-#: standalone/drakTermServ:1477
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "تهيئة خادم dhcpd"
-
-#: standalone/drakTermServ:1478
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"تم استخراج أغلب هذه القيم\n"
-"من النظام.\n"
-"يمكنك التعديل إذا احتجت لذلك."
-
-#: standalone/drakTermServ:1481
-#, c-format
-msgid ""
-"Dynamic IP Address Pool\n"
-"(needed for PXE clients):"
-msgstr ""
-
-#: standalone/drakTermServ:1634
-#, c-format
-msgid "Write to %s failed!"
-msgstr ""
-
-#: standalone/drakTermServ:1647
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "الرجاء إدخال قرص مرن:"
-
-#: standalone/drakTermServ:1651
-#, c-format
-msgid "Could not access the floppy!"
-msgstr "تعذر الوصول إلى القرص المرن!"
-
-#: standalone/drakTermServ:1653
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "يمكن إزالة القرص المرن الآن"
-
-#: standalone/drakTermServ:1656
-#, c-format
-msgid "No floppy drive available!"
-msgstr "لا توجد سواقة قرص مرن!"
-
-#: standalone/drakTermServ:1662
-#, c-format
-msgid "PXE image is %s/%s"
-msgstr "صورة PXE هي %s\\%s"
-
-#: standalone/drakTermServ:1664
-#, c-format
-msgid "Error writing %s/%s"
-msgstr "خطأ في كتابة %s/%s"
-
-#: standalone/drakTermServ:1676
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "صورة Etherboot ISO هي %s"
-
-#: standalone/drakTermServ:1680
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "حصل شئ خطأ! - هل تم تثبيت mkisofs؟"
-
-#: standalone/drakTermServ:1700
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "لا حاجة إلى إنشاء /etc/dhcpd.conf أولاً!"
-
-#: standalone/drakTermServ:1867
-#, c-format
-msgid "%s passwd bad in Terminal Server - rewriting...\n"
-msgstr "كلمة المرور %s سيّئة في الخادم الطّرفي - إعادة الكتابة...\n"
-
-#: standalone/drakTermServ:1880
-#, c-format
-msgid "%s is not a user..\n"
-msgstr "%s ليس مستخدما...\n"
-
-#: standalone/drakTermServ:1881
-#, c-format
-msgid "%s is already a Terminal Server user\n"
-msgstr "%s هو مستخدم للخادم الطّرفيّ مسبقاً\n"
-
-#: standalone/drakTermServ:1883
-#, c-format
-msgid "Addition of %s to Terminal Server failed!\n"
-msgstr "فشلت إضافة %s إلى الخادم الطّرفيّ!\n"
-
-#: standalone/drakTermServ:1885
-#, c-format
-msgid "%s added to Terminal Server\n"
-msgstr "تمّت إضافة %s إلى الخادم الطّرفيّ\n"
-
-#: standalone/drakTermServ:1903
-#, c-format
-msgid "Deleted %s...\n"
-msgstr "تم حذف %s...\n"
-
-#: standalone/drakTermServ:1905 standalone/drakTermServ:1978
-#, c-format
-msgid "%s not found...\n"
-msgstr "تعذر العثور على %s...\n"
-
-#: standalone/drakTermServ:2006
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr "/etc/hosts.allow و /etc/hosts.deny معدّان مسبقاً - لم يتم التغيير"
-
-#: standalone/drakTermServ:2158
-#, c-format
-msgid "Configuration changed - restart %s/dhcpd?"
-msgstr "تغيّرت التّهيئة - هل أعيد تشغيل %s/dhcpd؟"
-
-#: standalone/drakautoinst:38 standalone/drakhosts:123
-#: standalone/drakhosts:129 standalone/draknfs:84 standalone/draknfs:105
-#: standalone/draknfs:444 standalone/draknfs:447 standalone/draknfs:539
-#: standalone/draknfs:546 standalone/draksambashare:187
-#: standalone/draksambashare:208 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Error!"
-msgstr "خطأ!"
-
-#: standalone/drakautoinst:39
-#, c-format
-msgid "I can not find needed image file `%s'."
-msgstr "لا يمكنني العثور على ملف الصورة `%s'."
-
-#: standalone/drakautoinst:41
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "أداة إعداد التثبيت الآلي"
-
-#: standalone/drakautoinst:42
-#, c-format
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Press ok to continue."
-msgstr ""
-"أنت على وشك تهيئة قرص للتثبيت الآلي. هذه الميزة خطرة بعض الشيء و يجب "
-"استخدامها بحذر.\n"
-"\n"
-"بهذه الميزة يمكنك إعادة عمل التثبيت الذي قمت به على هذا الحاسب، مع تنبيهك "
-"لبعض الخطوات، حتّى تقوم بتغيير قيمها.\n"
-"\n"
-"لأقصى حدّ من الأمان، لن تتم أبداً تجزئة و تجهيز الأقراص الصلبة بشكل آلي، مثلما "
-"اخترت أثناء التثبيت على هذا الحاسب.\n"
-"\n"
-"اضغط موافق للاستمرار."
-
-#: standalone/drakautoinst:60
-#, c-format
-msgid "replay"
-msgstr "إعادة"
-
-#: standalone/drakautoinst:60 standalone/drakautoinst:69
-#, c-format
-msgid "manual"
-msgstr "يدوي"
-
-#: standalone/drakautoinst:64
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "تهيئة آلية للخطوات"
-
-#: standalone/drakautoinst:65
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"رجاء الاختيار لكل خطوة إذا كنت ستقوم بإعادتها آلياً أم أنك تريد أن يكون "
-"التثبيت بشكل يدوي."
-
-#: standalone/drakautoinst:77 standalone/drakautoinst:78
-#: standalone/drakautoinst:92
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "جاري إنشاء قرص التثبيت الآلي"
-
-#: standalone/drakautoinst:90
-#, c-format
-msgid "Insert another blank floppy in drive %s (for drivers disk)"
-msgstr "أدخل قرص مرن فارغ آخر في السواقة %s (من أجل المشغّلات)"
-
-#: standalone/drakautoinst:91
-#, c-format
-msgid "Creating auto install floppy (drivers disk)"
-msgstr "جاري إنشاء قرص التثبيت الآلي (قرص المشغّلات)"
-
-#: standalone/drakautoinst:156
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"أهلاً بكم.\n"
-"\n"
-"مُعطيات التثبيت الآلي موجودة على اليمين"
-
-#: standalone/drakautoinst:251
-#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"تم توليد القرص المرن بنجاح.\n"
-"يمكنك الآن إعادة التثبيت."
-
-#: standalone/drakautoinst:287
-#, c-format
-msgid "Auto Install"
-msgstr "تثبيت آلي"
-
-#: standalone/drakautoinst:356
-#, c-format
-msgid "Add an item"
-msgstr "إضافة عنصر"
-
-#: standalone/drakautoinst:363
-#, c-format
-msgid "Remove the last item"
-msgstr "إزالة العنصر الأخير"
-
-#: standalone/drakbackup:157
-#, c-format
-msgid ""
-"Expect is an extension to the TCL scripting language that allows interactive "
-"sessions without user intervention."
-msgstr ""
-"Expect هي امتداد للغة البرمجة النّصّيّة TCL تمكّن استخدام الجلسات التّفاعليّة دون "
-"تدخّل المستخدم."
-
-#: standalone/drakbackup:158
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "خزّن كلمة المرور لهذا النّظام في تهيئة drakbackup."
-
-#: standalone/drakbackup:159
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
-"لقرص مدمج متعدّد الجلسات، الجلسة الأولى فقط ستمحي قرص cdrw. وإلا فإنّ قرص cdrw "
-"سيُمحى قبل كلّ نسخ احتياطيّ."
-
-#: standalone/drakbackup:160
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-"الخيار سيحفظ الملفّات التي تغيّرت. التصرّف بالضبط يعتمد على ما إذا كان الوضع "
-"التّفاضليّ أو التّزايديّ مُستخدماً."
-
-#: standalone/drakbackup:161
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-"النّسخ الاحتياطي التّزايدي سوف يحفظ فقط الملفّات التي تمّ تغييرها أو التي هي "
-"جديدة منذ آخر نسخ احتياطيّ."
-
-#: standalone/drakbackup:162
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"النّسخ الاحتياطيّ التّفاضليّ يحفظ فقط الملفّات التي تمّ تغييرها أو التي هي جديدة "
-"منذ النّسخ الاحتياطي الأصليّ `الأساسي`."
-
-#: standalone/drakbackup:163
-#, c-format
-msgid ""
-"Star should be selected if you want to backup EA or ACLs, otherwise choose "
-"tar"
-msgstr ""
-
-#: standalone/drakbackup:164
-#, fuzzy, c-format
-msgid ""
-"This should be a local user or email address that you want the backup "
-"results sent to. You will need to define a functioning mail server. Multiple "
-"users can be in a comma seperated list"
-msgstr ""
-"يجب أن يكون هذا مستخدماً محليّاً أو عنوان بريد الكتروني تريد أن ترسل إليه نتائج "
-"النّسخ الاحتياطي. سوف تحتاج لأن تعرّف خادم بريد عامل."
-
-#: standalone/drakbackup:165
-#, fuzzy, c-format
-msgid ""
-"This should be the return address that you want the backup results sent "
-"from. Default is drakbackup."
-msgstr ""
-"يجب أن يكون هذا مستخدماً محليّاً أو عنوان بريد الكتروني تريد أن ترسل إليه نتائج "
-"النّسخ الاحتياطي. سوف تحتاج لأن تعرّف خادم بريد عامل."
-
-#: standalone/drakbackup:166
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-"الملفّات أو شوامل القيم المسردة في ملف .backupignore في أعلى شجرة الدّليل سوف "
-"لن يتمّ نسخها احتياطيّاً."
-
-#: standalone/drakbackup:167
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-"للنسخ الاحتياطي إلى أوساط أخرى، لا تزال الملفّات تُنشأ على القرص الصّلب، ثمّ "
-"تنقل إلى الوسط الآخر. تمكين هذا الخيار سيزيل ملفات tar من القرص الصّلب بعد "
-"النّسخ الاحتياطي."
-
-#: standalone/drakbackup:168
-#, c-format
-msgid ""
-"Selecting this option allows you to view the raw output from the restore "
-"process, after a file restore."
-msgstr ""
-
-#: standalone/drakbackup:169
-#, c-format
-msgid ""
-"Some protocols, like rsync, may be configured at the server end. Rather "
-"than using a directory path, you would use the 'module' name for the service "
-"path."
-msgstr ""
-"بعض البروتوكولات، مثل rsync، يمكنك تهيئتها من جهة الخادم. بدلاً من استخدام "
-"مسار الدّليل، يمكنك استخدام اسم `الوحدة` لمسار الخدمة."
-
-#: standalone/drakbackup:170
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"يمكّنك التّخصيص من تحديد التّاريخ والوقت الخاصّ بك. تستخدم الخيارات الأخرى\n"
-"أجزاء تشغيل في /etc/crontab."
-
-#: standalone/drakbackup:344
-#, c-format
-msgid "No media selected for cron operation."
-msgstr "لم يتمّ تحديد وسط لعمل cron."
-
-#: standalone/drakbackup:348
-#, c-format
-msgid "No interval selected for cron operation."
-msgstr "لم يتم اختيار فاصل زمني لعمل cron."
-
-#: standalone/drakbackup:393
-#, c-format
-msgid "Interval cron not available as non-root"
-msgstr "Interval cron غير متوفر للمستخدمين غير الجذر"
-
-#: standalone/drakbackup:477 standalone/logdrake:439
-#, c-format
-msgid "\"%s\" neither is a valid email nor is an existing local user!"
-msgstr "\"%s\" ليس عنوان بريد إلكترونيّ صالح ولا مستخدم محلّي موجود!"
-
-#: standalone/drakbackup:481 standalone/logdrake:444
-#, 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 محلّي، لذلك على استخدام عنوان "
-"بريد الكترونيّ كامل!"
-
-#: standalone/drakbackup:491
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr "تغيّرت قائمة المستخدمين الصّالحين، جاري إعادة كتابة ملف التّهيئة."
-
-#: standalone/drakbackup:493
-#, c-format
-msgid "Old user list:\n"
-msgstr "قائمة بالمستخدمين الأقدمين:\n"
-
-#: standalone/drakbackup:495
-#, c-format
-msgid "New user list:\n"
-msgstr "لائحة المستخدم الجدد:\n"
-
-#: standalone/drakbackup:524
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
-msgstr ""
-"\n"
-" تقرير DrakBackup \n"
-
-#: standalone/drakbackup:525
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-msgstr ""
-"\n"
-" تقرير خدمة DrakBackup\n"
-
-#: standalone/drakbackup:531
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" تفاصيل تقرير DrakBackup\n"
-"\n"
-"\n"
-
-#: standalone/drakbackup:556 standalone/drakbackup:627
-#: standalone/drakbackup:683
-#, c-format
-msgid "Total progress"
-msgstr "التقدم الكلي"
-
-#: standalone/drakbackup:609
-#, c-format
-msgid ""
-"%s exists, delete?\n"
-"\n"
-"If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-"%s موجود، هل تريد حذفه؟\n"
-"\n"
-"إن كنت قد قمت بهذه العملية مسبقاً\n"
-" ستحتاج غالباً إلى حذف المُدخل من authorized_keys على الخادم."
-
-#: standalone/drakbackup:618
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "قد يستغرق هذا بعض الوقت لتوليد المفاتيح."
-
-#: standalone/drakbackup:625
-#, c-format
-msgid "Cannot spawn %s."
-msgstr "لا يمكن تشغيل %s."
-
-#: standalone/drakbackup:642
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "لا يوجد طلب كلمة سر في %s على المنفذ %s"
-
-#: standalone/drakbackup:643
-#, c-format
-msgid "Bad password on %s"
-msgstr "كلمة مرور سيئة على %s"
-
-#: standalone/drakbackup:644
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "تم رفض التصريح بنقل %s إلى %s"
-
-#: standalone/drakbackup:645
-#, c-format
-msgid "Can not find %s on %s"
-msgstr "تعذر العثور على %s على %s"
-
-#: standalone/drakbackup:649
-#, c-format
-msgid "%s not responding"
-msgstr "%s لا يستجيب"
-
-#: standalone/drakbackup:653
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-"تم النقل بنجاح\n"
-"ربما تريد التحقق إذا كان يمكنك الدخول إلى خادم بالأمر:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"دون تنبيهك إلى إدخال كلمة مرور."
-
-#: standalone/drakbackup:703
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "لا يوجد قرص CD-R/DVD-R في السواقة!"
-
-#: standalone/drakbackup:707
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "لا يبدو وسيط قابل للكتابة!"
-
-#: standalone/drakbackup:712
-#, c-format
-msgid "Not erasable media!"
-msgstr "وسيط غير قابل للمسح!"
-
-#: standalone/drakbackup:754
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "قد يستغرق مسح الوسيط بعض الوقت."
-
-#: standalone/drakbackup:812
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "توجد مشكلة في التصريح للوصول إلى القرص المدمج."
-
-#: standalone/drakbackup:840
-#, c-format
-msgid "No tape in %s!"
-msgstr "لا يوجد شريط في %s!"
-
-#: standalone/drakbackup:953
-#, c-format
-msgid ""
-"Backup destination quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-
-#: standalone/drakbackup:973 standalone/drakbackup:1005
-#, c-format
-msgid "Backup system files..."
-msgstr "انسخ ملفات النظام..."
-
-#: standalone/drakbackup:1006 standalone/drakbackup:1045
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "ملفات النسخ الإحتياطي للقرص الصلب..."
-
-#: standalone/drakbackup:1044
-#, c-format
-msgid "Backup User files..."
-msgstr "انسخ ملفات المستخدمين..."
-
-#: standalone/drakbackup:1078
-#, c-format
-msgid "Backup Other files..."
-msgstr "انسخ ملفات أخرى..."
-
-#: standalone/drakbackup:1079
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "التقدم في نسخ القرص الصلب..."
-
-#: standalone/drakbackup:1084
-#, c-format
-msgid "No changes to backup!"
-msgstr "لا تغييرات للنسخة الإحتياطية!"
-
-#: standalone/drakbackup:1100 standalone/drakbackup:1122
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-"\n"
-"نشاطات Drakbackup عن طريق %s:\n"
-"\n"
-
-#: standalone/drakbackup:1109
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-" مشكلة في وصلة FTP: لم يكن بالإمكان ارسال ملفات النسخ الإحتياطي الخاصة بك "
-"باستخدام FTP.\n"
-
-#: standalone/drakbackup:1110
-#, c-format
-msgid ""
-"Error during sending file via FTP. Please correct your FTP configuration."
-msgstr "خطأ أثناء إرسال الملف عبر FTP. فضلاً قم بتصحيح إعدادات FTP."
-
-#: standalone/drakbackup:1112
-#, c-format
-msgid "file list sent by FTP: %s\n"
-msgstr "قائمة الملفات المرسلة بواسطة FTP: %s\n"
-
-#: standalone/drakbackup:1127
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-"\n"
-"نشاطات Drakbackup عن طريق القرص المدمج:\n"
-"\n"
-
-#: standalone/drakbackup:1132
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-"\n"
-"نشاطات Drakbackup عن طريق شريط التخزين:\n"
-"\n"
-
-#: standalone/drakbackup:1141
-#, c-format
-msgid "Error sending mail. Your report mail was not sent."
-msgstr "خطأ أثناء إرسال البريد. لم يتم ارسال بريد التقرير."
-
-#: standalone/drakbackup:1142
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr " خطأ أثناء ارسال البريد. \n"
-
-#: standalone/drakbackup:1172
-#, c-format
-msgid "Can not create catalog!"
-msgstr "تعذر إنشاء الكتالوج!"
-
-#: standalone/drakbackup:1332
-#, fuzzy, c-format
-msgid "Problem installing %s"
-msgstr "كانت هناك مشاكل في تثبيت الحزمة %s"
-
-#: standalone/drakbackup:1420
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "انسخ ملفات النظام: (دليل /etc)"
-
-#: standalone/drakbackup:1421 standalone/drakbackup:1484
-#: standalone/drakbackup:1550
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr "استخدم النسخ التراكمي/الاختلافي (لا تستبدل النسخ الإحتياطية القديمة)"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "استخدم النسخ التراكمي"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Differential Backups"
-msgstr "استخدم النسخ الاختلافي"
-
-#: standalone/drakbackup:1425
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "لا تُضمّن الملفات المهمة (passws، group، fstab("
-
-#: standalone/drakbackup:1456
-#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "رجاء اختيار كل المستخدمين الذين تريد تضمينهم في النسخ الإحتياطي."
-
-#: standalone/drakbackup:1483
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "لا تستخدم ذاكرة المتصفح المخبئية"
-
-#: standalone/drakbackup:1537
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "اختر الملفات أو الأدلة ثم اضغط 'موافق'"
-
-#: standalone/drakbackup:1538 standalone/drakfont:650
-#, c-format
-msgid "Remove Selected"
-msgstr "حذف المُحدد"
-
-#: standalone/drakbackup:1601
-#, c-format
-msgid "Users"
-msgstr "المستخدمون"
-
-#: standalone/drakbackup:1621
-#, c-format
-msgid "Use network connection to backup"
-msgstr "استخدام الإتصال بالشبكة للنسخ الإحتياطي"
-
-#: standalone/drakbackup:1623
-#, c-format
-msgid "Net Method:"
-msgstr "طريقة الشّبكة:"
-
-#: standalone/drakbackup:1627
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "استخدم Expect لـSSH"
-
-#: standalone/drakbackup:1628
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "إنشاء/نقل مفاتيح النسخ الإحتياطي لـSSH"
-
-#: standalone/drakbackup:1630
-#, c-format
-msgid "Transfer Now"
-msgstr "التحويل الآن"
-
-#: standalone/drakbackup:1632
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "مفاتيح أخرى (غير drakbackup( موجودة مسبقاً"
-
-#: standalone/drakbackup:1635
-#, c-format
-msgid "Host name or IP."
-msgstr "اسم المضيف أو عنوان IP."
-
-#: standalone/drakbackup:1640
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
-"الرجاء إدخال الدليل (أو الوحدة) التي سيتم فيها وضع النسخة الإحتياطية على هذا "
-"المضيف."
-
-#: standalone/drakbackup:1652
-#, c-format
-msgid "Remember this password"
-msgstr "تذكّر كلمة السر هذه"
-
-#: standalone/drakbackup:1664
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "يُحتاج إلى اسم المضيف و اسم المستخدم و كلمة المرور!"
-
-#: standalone/drakbackup:1755
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "استخدم CD/DVDROM للنسخ الإحتياطي"
-
-#: standalone/drakbackup:1758
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "الرجاء اختيار جهاز CD/DVD"
-
-#: standalone/drakbackup:1763
-#, c-format
-msgid "Choose your CD/DVD media size"
-msgstr "الرجاء اختيار مساحة وسط CD/DVD"
-
-#: standalone/drakbackup:1770
-#, c-format
-msgid "Multisession CD"
-msgstr "قرص مدمج متعدد الجلسات"
-
-#: standalone/drakbackup:1772
-#, c-format
-msgid "CDRW media"
-msgstr "وسط CDRW"
-
-#: standalone/drakbackup:1778
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "مسح الوسيط القابل لإعادة الكتابة (الجلسة الأولى)"
-
-#: standalone/drakbackup:1779
-#, c-format
-msgid " Erase Now "
-msgstr " مسح الآن "
-
-#: standalone/drakbackup:1785
-#, c-format
-msgid "DVD+RW media"
-msgstr "وسط DVD+RW"
-
-#: standalone/drakbackup:1787
-#, c-format
-msgid "DVD-R media"
-msgstr "وسط DVD-R"
-
-#: standalone/drakbackup:1789
-#, c-format
-msgid "DVDRAM device"
-msgstr "جهاز DVDRAM"
-
-#: standalone/drakbackup:1820
-#, c-format
-msgid "No CD device defined!"
-msgstr "لم يتم تعريف جهاز قرص مدمج!"
-
-#: standalone/drakbackup:1862
-#, c-format
-msgid "Use tape to backup"
-msgstr "استخدام الشريط للنسخ الإحتياطي"
-
-#: standalone/drakbackup:1865
-#, c-format
-msgid "Device name to use for backup"
-msgstr "إسم الجهاز المستعمل للاحتياط"
-
-#: standalone/drakbackup:1871
-#, c-format
-msgid "Backup directly to tape"
-msgstr "إحفظ إحتياطيا مباشرة في شريط"
-
-#: standalone/drakbackup:1877
-#, c-format
-msgid "Use tape hardware compression (EXPERIMENTAL)"
-msgstr ""
-
-#: standalone/drakbackup:1883
-#, c-format
-msgid "Do not rewind tape after backup"
-msgstr "لا تقم بإرجاع الشريط بعد النسخ الاحتياطي"
-
-#: standalone/drakbackup:1889
-#, c-format
-msgid "Erase tape before backup"
-msgstr "مسح الشريط قبل النسخ الاحتياطي"
-
-#: standalone/drakbackup:1895
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "إخراج الشريط بعد النسخ الاحتياطي"
-
-#: standalone/drakbackup:1976
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "أدخل الدّليل الّذي سيتمّ الحفظ فيه:"
-
-#: standalone/drakbackup:1980
-#, c-format
-msgid "Directory to save to"
-msgstr "الدّليل الذي سيتمّ الحفظ فيه"
-
-#: standalone/drakbackup:1985
-#, c-format
-msgid ""
-"Maximum disk space\n"
-" allocated for backups (MB)"
-msgstr ""
-
-#: standalone/drakbackup:1989
-#, c-format
-msgid ""
-"Delete incremental or differential\n"
-" backups older than N days\n"
-" (0 is keep all backups) to save space"
-msgstr ""
-
-#: standalone/drakbackup:2056
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CD-R / DVD-R"
-
-#: standalone/drakbackup:2061
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "HardDrive / NFS"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2077
-#: standalone/drakbackup:2082
-#, c-format
-msgid "hourly"
-msgstr "كلّ ساعة "
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2078
-#: standalone/drakbackup:2083
-#, c-format
-msgid "daily"
-msgstr "يوميّاً"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2079
-#: standalone/drakbackup:2084
-#, c-format
-msgid "weekly"
-msgstr "أسبوعيّا"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2080
-#: standalone/drakbackup:2085
-#, c-format
-msgid "monthly"
-msgstr "شهرياً"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2081
-#: standalone/drakbackup:2086
-#, c-format
-msgid "custom"
-msgstr "مخصّص"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "January"
-msgstr "يناير"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "February"
-msgstr "فبراير"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "March"
-msgstr "مارس"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "April"
-msgstr "أبريل"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "May"
-msgstr "مايو"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "June"
-msgstr "يونيو"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "July"
-msgstr "يوليو"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "August"
-msgstr "أغسطس"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "September"
-msgstr "سبتمبر"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "October"
-msgstr "أكتوبر"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "November"
-msgstr "نوفمبر"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "December"
-msgstr "ديسمبر"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Sunday"
-msgstr "الأحد"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Monday"
-msgstr "الاثنين"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Tuesday"
-msgstr "الثلاثاء"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Wednesday"
-msgstr "الأربعاء"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Thursday"
-msgstr "الخميس"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Friday"
-msgstr "الجمعة"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Saturday"
-msgstr "السبت"
-
-#: standalone/drakbackup:2126
-#, fuzzy, c-format
-msgid "Delete cron entry"
-msgstr "حذف العميل"
-
-#: standalone/drakbackup:2127
-#, fuzzy, c-format
-msgid "Add cron entry"
-msgstr "إضافة طابعة"
-
-#: standalone/drakbackup:2185
-#, c-format
-msgid "Use daemon"
-msgstr "استخدم المراقب"
-
-#: standalone/drakbackup:2189
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "الرجاء اختيار الفترة ما بين كل عملية نسخ احتياطي"
-
-#: standalone/drakbackup:2197
-#, c-format
-msgid "Minute"
-msgstr "الدّقيقة"
-
-#: standalone/drakbackup:2201
-#, c-format
-msgid "Hour"
-msgstr "السّاعة"
-
-#: standalone/drakbackup:2205
-#, c-format
-msgid "Day"
-msgstr "اليوم"
-
-#: standalone/drakbackup:2209
-#, c-format
-msgid "Month"
-msgstr "الشّهر"
-
-#: standalone/drakbackup:2213
-#, fuzzy, c-format
-msgid "Weekday (start)"
-msgstr "يوم الأسبوع"
-
-#: standalone/drakbackup:2217
-#, fuzzy, c-format
-msgid "Weekday (end)"
-msgstr "يوم الأسبوع"
-
-#: standalone/drakbackup:2221
-#, fuzzy, c-format
-msgid "Profile"
-msgstr "لمحات مختصرة"
-
-#: standalone/drakbackup:2227
-#, fuzzy, c-format
-msgid "Current crontab:"
-msgstr "المستخدم الحالي"
-
-#: standalone/drakbackup:2235
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "الرجاء اختيار وسيط النسخ الاحتياطي."
-
-#: standalone/drakbackup:2239
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "تأكد من أن مراقب cron موجود ضمن خدمات النظام."
-
-#: standalone/drakbackup:2240
-#, c-format
-msgid ""
-"If your machine is not on all the time, you might want to install anacron."
-msgstr "إن لم يكن جهازك مُداراً طوال الوقت فقد تودّ تثبيت anacron."
-
-#: standalone/drakbackup:2316
-#, fuzzy, c-format
-msgid "Please choose the archive program"
-msgstr "رجاءً اختر تاريخ الاسترجاع:"
-
-#: standalone/drakbackup:2321
-#, c-format
-msgid "Please choose the compression type"
-msgstr "رجاء اختيار نوع الضّغط"
-
-#: standalone/drakbackup:2325
-#, c-format
-msgid "Use .backupignore files"
-msgstr "استعمل ملفّات .backupignore"
-
-#: standalone/drakbackup:2327
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "أرسل تقريراً بريدياً بعد كل عملية نسخ إلى:"
-
-#: standalone/drakbackup:2333
-#, c-format
-msgid "Return address for sent mail:"
-msgstr ""
-
-#: standalone/drakbackup:2339
-#, c-format
-msgid "SMTP server for mail:"
-msgstr "خادم SMTP للبريد:"
-
-#: standalone/drakbackup:2343
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr "إلغاء ملفات tar الخلصة بالقرص تاصلب بعد النسخ إلى وسيط آخر."
-
-#: standalone/drakbackup:2344
-#, fuzzy, c-format
-msgid "View restore log after file restore."
-msgstr "اضغط موافق لاستعادة ملفات اخرى"
-
-#: standalone/drakbackup:2389
-#, c-format
-msgid "What"
-msgstr "ماذا "
-
-#: standalone/drakbackup:2394
-#, c-format
-msgid "Where"
-msgstr "أين"
-
-#: standalone/drakbackup:2399
-#, c-format
-msgid "When"
-msgstr "متى "
-
-#: standalone/drakbackup:2404
-#, c-format
-msgid "More Options"
-msgstr "خيارات أكثر"
-
-#: standalone/drakbackup:2417
-#, c-format
-msgid "Backup destination not configured..."
-msgstr "وجهة النّسخ الاحتياطي غير مُهيّئة..."
-
-#: standalone/drakbackup:2437 standalone/drakbackup:4367
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "تهيئة Drakbackup"
-
-#: standalone/drakbackup:2453
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "رجاء اختيار أين تريد النسخ الاحتياطي."
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Hard Drive used to prepare backups for all media"
-msgstr "القرص الصّلب المستخدم لتحضير النّسخ الاحتياطيّة لكل الوسائط"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Across Network"
-msgstr "عبر الشّبكة"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On CD-R"
-msgstr "على القرص المدمج"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On Tape Device"
-msgstr "على جهاز الأشرطة"
-
-#: standalone/drakbackup:2502
-#, c-format
-msgid "Backup Users"
-msgstr "مستخدمو النسخ الاحتياطي"
-
-#: standalone/drakbackup:2503
-#, c-format
-msgid " (Default is all users)"
-msgstr " (الافتراض هو جميع المستخدمين)"
-
-#: standalone/drakbackup:2516
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "رجاء اختيار ما تريد نسخه احتياطياً"
-
-#: standalone/drakbackup:2517
-#, c-format
-msgid "Backup System"
-msgstr "نظام النسخ الاحتياطي"
-
-#: standalone/drakbackup:2519
-#, c-format
-msgid "Select user manually"
-msgstr "اختر المستخدم يدويًّا"
-
-#: standalone/drakbackup:2548
-#, c-format
-msgid "Please select data to backup..."
-msgstr "رجاء اختيار البيانات المطلوب نسخها احتياطيا..."
-
-#: standalone/drakbackup:2620
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"مصادر النسخ الاحتياطي :\n"
-
-#: standalone/drakbackup:2621
-#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- ملفّات النّظام :\n"
-
-#: standalone/drakbackup:2623
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- ملفّات المستخدم:\n"
-
-#: standalone/drakbackup:2625
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- الملفّات الأخرى:\n"
-
-#: standalone/drakbackup:2627
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-"\n"
-"- احفظ على القرص الصلب على المسار:%s\n"
-
-#: standalone/drakbackup:2628
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tقَصْر استخدام القرص على %s م.ب.\n"
-
-#: standalone/drakbackup:2629
-#, c-format
-msgid "\tDelete backups older than %s day(s)\n"
-msgstr ""
-
-#: standalone/drakbackup:2632
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
-"\n"
-"- حذف كل ملفات tar الخاصة بالقرص الصلب بعد كل عملية نسخ احتياطي.\n"
-
-#: standalone/drakbackup:2637
-#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr ""
-"\n"
-"- النسخ إلى قرص مدمج"
-
-#: standalone/drakbackup:2638
-#, c-format
-msgid "RW"
-msgstr "RW"
-
-#: standalone/drakbackup:2639
-#, c-format
-msgid " on device: %s"
-msgstr " على الجهاز: %s"
-
-#: standalone/drakbackup:2640
-#, c-format
-msgid " (multi-session)"
-msgstr " (متعدد الجلسات)"
-
-#: standalone/drakbackup:2641
-#, c-format
-msgid ""
-"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-"\n"
-"- حفظ إلى الشريط على الجهاز: %s"
-
-#: standalone/drakbackup:2642
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tErase=%s"
-
-#: standalone/drakbackup:2644
-#, c-format
-msgid "\tBackup directly to Tape\n"
-msgstr "\tإحفظ إحتياطيا مباشرة في شريط\n"
-
-#: standalone/drakbackup:2646
-#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
-"\n"
-"- احفظ عبر %s على المضيف: %s\n"
-
-#: standalone/drakbackup:2647
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t اسم المستخدم: %s\n"
-"\t\t على المسار: %s\n"
-
-#: standalone/drakbackup:2648
-#, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- خيارات:\n"
-
-#: standalone/drakbackup:2649
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tلا تُضمن ملفات النظام\n"
-
-#: standalone/drakbackup:2651
-#, fuzzy, c-format
-msgid "\tBackups use %s and bzip2\n"
-msgstr "\tالنسخ الإحتياطية تستخدم tar و bzip2\n"
-
-#: standalone/drakbackup:2652
-#, fuzzy, c-format
-msgid "\tBackups use %s and gzip\n"
-msgstr "\tالنسخ الإحتياطية تستخدم tar و gzip\n"
-
-#: standalone/drakbackup:2653
-#, fuzzy, c-format
-msgid "\tBackups use %s only\n"
-msgstr "\tالنسخ الإحتياطية تستخدم tar فقط\n"
-
-#: standalone/drakbackup:2655
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tاستخدم ملفات .backupignore\n"
-
-#: standalone/drakbackup:2656
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tإرسال بريد إلى %s\n"
-
-#: standalone/drakbackup:2657
-#, c-format
-msgid "\tSend mail from %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2658
-#, c-format
-msgid "\tUsing SMTP server %s\n"
-msgstr "\tباستعمال خادم SMTP %s\n"
-
-#: standalone/drakbackup:2660
-#, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
-msgstr ""
-"\n"
-"- خدمة، %s عبر:\n"
-
-#: standalone/drakbackup:2661
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-القرص الصلب.\n"
-
-#: standalone/drakbackup:2662
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-R.\n"
-
-#: standalone/drakbackup:2663
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-الشريط \n"
-
-#: standalone/drakbackup:2664
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-الشبكة عن طريق FTP.\n"
-
-#: standalone/drakbackup:2665
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-الشبكة عن طريق SSH.\n"
-
-#: standalone/drakbackup:2666
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-الشبكة عن طريق rsync.\n"
-
-#: standalone/drakbackup:2668
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "لا تهيئة، اضغط معالج أو متقدّم.\n"
-
-#: standalone/drakbackup:2673
-#, c-format
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"قائمة البيانات التي سيتم استرجاعها:\n"
-"\n"
-
-#: standalone/drakbackup:2675
-#, c-format
-msgid "- Restore System Files.\n"
-msgstr "- استرجع ملفّات النّظام.\n"
-
-#: standalone/drakbackup:2677 standalone/drakbackup:2687
-#, c-format
-msgid " - from date: %s %s\n"
-msgstr " - من التّاريخ: %s %s\n"
-
-#: standalone/drakbackup:2680
-#, c-format
-msgid "- Restore User Files: \n"
-msgstr "- استرجاع ملفّات المستخدمين: \n"
-
-#: standalone/drakbackup:2685
-#, c-format
-msgid "- Restore Other Files: \n"
-msgstr "- استرجاع الملفّات الأخرى: \n"
-
-#: standalone/drakbackup:2864
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"قائمة بالبيانات الفاسدة:\n"
-"\n"
-
-#: standalone/drakbackup:2866
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "الرجاء إزالة الاختيار أو إزالتها في المرة القادمة."
-
-#: standalone/drakbackup:2876
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "ملفات النسخ الإحتياطي فاسدة"
-
-#: standalone/drakbackup:2897
-#, c-format
-msgid " All of your selected data have been "
-msgstr " كل البيانات المختارة تم "
-
-#: standalone/drakbackup:2898
-#, c-format
-msgid " Successfully Restored on %s "
-msgstr " تمت الإستعادة بنجاح على %s "
-
-#: standalone/drakbackup:2999
-#, c-format
-msgid "/usr/bin/star not found, using tar..."
-msgstr ""
-
-#: standalone/drakbackup:3035
-#, c-format
-msgid " Restore Configuration "
-msgstr " تهيئة الإستعادة "
-
-#: standalone/drakbackup:3063
-#, c-format
-msgid "OK to restore the other files."
-msgstr "اضغط موافق لاستعادة ملفات اخرى"
-
-#: standalone/drakbackup:3079
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr "قائمة المستخدمين الذين سيتم استعادتهم"
-
-#: standalone/drakbackup:3144
-#, c-format
-msgid "Please choose the date to restore:"
-msgstr "رجاءً اختر تاريخ الاسترجاع:"
-
-#: standalone/drakbackup:3181
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "استعادة من القرص الصلب"
-
-#: standalone/drakbackup:3183
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "أدخل الدليل الذي تخزّن فيه النسخ الإحتياطية"
-
-#: standalone/drakbackup:3187
-#, c-format
-msgid "Directory with backups"
-msgstr "الدّليل المحتوي على النّسخ الاحتياطيّة"
-
-#: standalone/drakbackup:3241
-#, c-format
-msgid "Select another media to restore from"
-msgstr "اختر وسيط آخر للاستعادة منه"
-
-#: standalone/drakbackup:3243
-#, c-format
-msgid "Other Media"
-msgstr "وسيط آخر"
-
-#: standalone/drakbackup:3248
-#, c-format
-msgid "Restore system"
-msgstr "استعادة النّظام"
-
-#: standalone/drakbackup:3249
-#, c-format
-msgid "Restore Users"
-msgstr "أستعادة المستخدمين "
-
-#: standalone/drakbackup:3250
-#, c-format
-msgid "Restore Other"
-msgstr "استعادة آخر"
-
-#: standalone/drakbackup:3252
-#, c-format
-msgid "Select path to restore (instead of /)"
-msgstr "اختر مسار الإستعادة (بدلاً من /)"
-
-#: standalone/drakbackup:3256 standalone/drakbackup:3539
-#, c-format
-msgid "Path To Restore To"
-msgstr "المسار المطلوب الاستعادة إليه"
-
-#: standalone/drakbackup:3259
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "القيام بنسخ احتياطي جديد فبل الإستعادة (فقط للنسخ الإحتياطية المتدرجة)"
-
-#: standalone/drakbackup:3261
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "حذف أدلة المستخدمين قبل الإستعادة"
-
-#: standalone/drakbackup:3345
-#, c-format
-msgid "Filename text substring to search for (empty string matches all):"
-msgstr "النصّ الفرعيّ من اسم الملف للبحث عنه (ترك فراغ يطابق الكلّ):"
-
-#: standalone/drakbackup:3348
-#, c-format
-msgid "Search Backups"
-msgstr "إبحث في النّسخ الاحتياطية"
-
-#
-#: standalone/drakbackup:3367
-#, c-format
-msgid "No matches found..."
-msgstr "لم يعثر على مطابقات..."
-
-#: standalone/drakbackup:3371
-#, c-format
-msgid "Restore Selected"
-msgstr "استعادة الملفات المحدّدة"
-
-#: standalone/drakbackup:3507
-#, c-format
-msgid ""
-"Click date/time to see backup files.\n"
-"Ctrl-Click files to select multiple files."
-msgstr ""
-"اضغط على التّاريخ/الوقت لترى ملفّات النّسخ الاحتياطية.\n"
-"اضغط على الملفّات مع استخدام زر Ctrl لتحدّد عدّة ملفّات."
-
-#: standalone/drakbackup:3513
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
-"استعادة مدخل\n"
-"الكتالوج المختار"
-
-#: standalone/drakbackup:3522
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr ""
-"استعادة الملفات\n"
-"المختارة"
-
-#: standalone/drakbackup:3599
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "ملفات النسخ الإحتياطي غير موجودة على %s"
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid "Restore From CD"
-msgstr "استعادة من القرص المدمج"
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-"أدخل القرص المدمج بالعلامة %s\n"
-" في سواقة القرص المدمج تحت مكان التركيب /mnt/cdrom"
-
-#: standalone/drakbackup:3614
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "علامة القرص ليست العلامة الصحيحة. علامة القرص هي %s."
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid "Restore From Tape"
-msgstr "استعادة من الشريط"
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-"أدخل الشريط بالعلامة %s\n"
-" في جهاز الشريط %s"
-
-#: standalone/drakbackup:3626
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "علامة الشريط ليست العلامة الصحيحة. علامة الشريط هي %s."
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network"
-msgstr "استعادة عن طريق الشبكة"
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "استعادة عن طريق بروتوكول الشبكة: %s"
-
-#: standalone/drakbackup:3638
-#, c-format
-msgid "Host Name"
-msgstr "اسم المضيف"
-
-#: standalone/drakbackup:3639
-#, c-format
-msgid "Host Path or Module"
-msgstr "وحدة أو مسار المضيف"
-
-#: standalone/drakbackup:3646
-#, c-format
-msgid "Password required"
-msgstr "كلمة المرور مطلوبة"
-
-#: standalone/drakbackup:3652
-#, c-format
-msgid "Username required"
-msgstr "اسم المستخدم مطلوب"
-
-#: standalone/drakbackup:3655
-#, c-format
-msgid "Hostname required"
-msgstr "اسم المضيف مطلوب"
-
-#: standalone/drakbackup:3660
-#, c-format
-msgid "Path or Module required"
-msgstr "مسار أو وحدة مطلوب"
-
-#: standalone/drakbackup:3672
-#, c-format
-msgid "Files Restored..."
-msgstr "الملفات المستعادة..."
-
-#: standalone/drakbackup:3675
-#, c-format
-msgid "Restore Failed..."
-msgstr "فشلت الاستعادة..."
-
-#: standalone/drakbackup:3703
-#, c-format
-msgid "%s not retrieved..."
-msgstr "لم يتمّ جَلْب %s..."
-
-#: standalone/drakbackup:3929 standalone/drakbackup:3998
-#, c-format
-msgid "Search for files to restore"
-msgstr "بحث عن الملفات المطلوب استعادتها"
-
-#: standalone/drakbackup:3933
-#, c-format
-msgid "Restore all backups"
-msgstr "استعادة كل النسخ الإحتياطية"
-
-#: standalone/drakbackup:3941
-#, c-format
-msgid "Custom Restore"
-msgstr "استعادة مخصصة"
-
-#: standalone/drakbackup:3945 standalone/drakbackup:3994
-#, c-format
-msgid "Restore From Catalog"
-msgstr "استعادة من الكتالوج"
-
-#: standalone/drakbackup:3966
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "لم يمكن العثور على نسخ احتياطيّة لاستعادتها...\n"
-
-#: standalone/drakbackup:3967
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "تأكّد أن %s هو المسار الصّحيح"
-
-#: standalone/drakbackup:3968
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " وأن القرص المدمج في السّوّاقة"
-
-#: standalone/drakbackup:3970
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr "نسخ احتياطيّة على وسَطْ غير قابل للتّجهيز - استخدام كاتالوج لاسترجاعها"
-
-#: standalone/drakbackup:3986
-#, c-format
-msgid "CD in place - continue."
-msgstr "القرص في المكان الصحيح - تابع"
-
-#: standalone/drakbackup:3991
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "استعرض إلى مستودع استعادة جديد."
-
-#: standalone/drakbackup:3992
-#, c-format
-msgid "Directory To Restore From"
-msgstr "الدّليل المطلوب الاستعادة منه"
-
-#: standalone/drakbackup:4028
-#, c-format
-msgid "Restore Progress"
-msgstr "تقدم الإستعادة"
-
-#: standalone/drakbackup:4136
-#, c-format
-msgid "Build Backup"
-msgstr "بناء النسخة الإحتياطية"
-
-#: standalone/drakbackup:4169 standalone/drakbackup:4466
-#, c-format
-msgid "Restore"
-msgstr "استعادة"
-
-#: standalone/drakbackup:4261
-#, c-format
-msgid "Please select data to restore..."
-msgstr "رجاء اختيار تاريخ الإستعادة..."
-
-#: standalone/drakbackup:4301
-#, c-format
-msgid "Backup system files"
-msgstr "نسخ ملفات النظام"
-
-#: standalone/drakbackup:4304
-#, c-format
-msgid "Backup user files"
-msgstr "نسخ ملفات المستخدم"
-
-#: standalone/drakbackup:4307
-#, c-format
-msgid "Backup other files"
-msgstr "نسخ ملفات أخرى"
-
-#: standalone/drakbackup:4310 standalone/drakbackup:4344
-#, c-format
-msgid "Total Progress"
-msgstr "التقدم الكلّي"
-
-#: standalone/drakbackup:4336
-#, c-format
-msgid "Sending files by FTP"
-msgstr "جاري ارسال الملفات عن طريق FTP"
-
-#: standalone/drakbackup:4339
-#, c-format
-msgid "Sending files..."
-msgstr "جاري ارسال الملفات..."
-
-#: standalone/drakbackup:4409
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "النسخ الآن من ملف التهيئة"
-
-#: standalone/drakbackup:4414
-#, c-format
-msgid "View Backup Configuration."
-msgstr "عرض تهيئة النسخ الإحتياطي"
-
-#: standalone/drakbackup:4440
-#, c-format
-msgid "Wizard Configuration"
-msgstr "تهيئة المرشد"
-
-#: standalone/drakbackup:4445
-#, c-format
-msgid "Advanced Configuration"
-msgstr "تهيئة متقدمة"
-
-#: standalone/drakbackup:4450
-#, c-format
-msgid "View Configuration"
-msgstr "عرض التهيئة"
-
-#: standalone/drakbackup:4454
-#, c-format
-msgid "View Last Log"
-msgstr "عرض السّجل الأخير"
-
-#: standalone/drakbackup:4459
-#, c-format
-msgid "Backup Now"
-msgstr "النسخ الإحتياطي الآن"
-
-#: standalone/drakbackup:4463
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"لم يتم العثور على ملف تهيئة \n"
-"الرجاء الضغط على معالج أو متقدم."
-
-#: standalone/drakbackup:4501
-#, fuzzy, c-format
-msgid "Load profile"
-msgstr "ملفّ محلي"
-
-#: standalone/drakbackup:4510
-#, fuzzy, c-format
-msgid "Save profile as..."
-msgstr "حفظ باسم.."
-
-#: standalone/drakbackup:4532 standalone/drakbackup:4535
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: standalone/drakboot:49
-#, c-format
-msgid "No bootloader found, creating a new configuration"
-msgstr ""
-
-#: standalone/drakboot:84 standalone/harddrake2:190 standalone/harddrake2:191
-#: standalone/logdrake:69 standalone/printerdrake:150
-#: standalone/printerdrake:151 standalone/printerdrake:152
-#, c-format
-msgid "/_File"
-msgstr "/_ملف"
-
-#: standalone/drakboot:85 standalone/logdrake:75
-#, c-format
-msgid "/File/_Quit"
-msgstr "/ملف/_خروج"
-
-#: standalone/drakboot:85 standalone/harddrake2:191 standalone/logdrake:75
-#: standalone/printerdrake:152
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: standalone/drakboot:125
-#, c-format
-msgid "Text only"
-msgstr ""
-
-#: standalone/drakboot:126
-#, c-format
-msgid "Verbose"
-msgstr "مُطنب"
-
-#: standalone/drakboot:127
-#, c-format
-msgid "Silent"
-msgstr ""
-
-#: standalone/drakboot:134
-#, c-format
-msgid ""
-"Your system bootloader is not in framebuffer mode. To activate graphical "
-"boot, select a graphic video mode from the bootloader configuration tool."
-msgstr ""
-"محمّل الإقلاع لنظامك ليس في وضع framebuffer. لتُنشّط\n"
-"الإقلاع الرّسوميّ، اختر وضع فيديو رسومي من أداة تهيئة محمّل الإقلاع."
-
-#: standalone/drakboot:135
-#, c-format
-msgid "Do you want to configure it now?"
-msgstr "هل تريد تهيئته الآن؟"
-
-#: standalone/drakboot:144
-#, c-format
-msgid "Install themes"
-msgstr "تثبيت السمات"
-
-#: standalone/drakboot:146
-#, c-format
-msgid "Graphical boot theme selection"
-msgstr "تحديد سمة الإقلاع الرّسومي"
-
-#: standalone/drakboot:149
-#, fuzzy, c-format
-msgid "Graphical boot mode:"
-msgstr "استعمال إقلاع رسومي"
-
-#: standalone/drakboot:151
-#, c-format
-msgid "Theme"
-msgstr "سمة"
-
-#: standalone/drakboot:154
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"عرض السمات\n"
-"في سطر الأوامر"
-
-#: standalone/drakboot:159
-#, c-format
-msgid "Create new theme"
-msgstr "إنشاء سمة جديدة"
-
-#: standalone/drakboot:191
-#, c-format
-msgid "Default user"
-msgstr "المستخدم الإفتراضي"
-
-#: standalone/drakboot:192
-#, c-format
-msgid "Default desktop"
-msgstr "سطح المكتب الإفتراضي"
-
-#: standalone/drakboot:195
-#, c-format
-msgid "No, I do not want autologin"
-msgstr "لا، لا أريد دخولا أليا"
-
-#: standalone/drakboot:196
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "نعم، أريد دخولا آليا مع هذا (المستخدم، سطح المكتب)"
-
-#: standalone/drakboot:203
-#, c-format
-msgid "System mode"
-msgstr "وضع النظام"
-
-#: standalone/drakboot:206
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "تشغيل X-Window عند بدء التشغيل"
-
-#: standalone/drakboot:272
-#, c-format
-msgid ""
-"Please choose a video mode, it will be applied to each of the boot entries "
-"selected below.\n"
-"Be sure your video card supports the mode you choose."
-msgstr ""
-"رجاء اختيار وضع فيديو، والذي سيتم تطبيقه على كل مُدخلات الإقلاع المُحدّدة "
-"أدناه.\n"
-"تأكّد من أن بطاقة الفيديو تدعم الوضع الذي تختاره."
-
-#: standalone/drakbug:41
-#, c-format
-msgid "Mandriva Linux Bug Report Tool"
-msgstr "أداة تقرير العيوب في ماندريبا لينكس"
-
-#: standalone/drakbug:46
-#, c-format
-msgid "Mandriva Linux Control Center"
-msgstr "مركز تحكّم ماندريبا لينكس"
-
-#: standalone/drakbug:48
-#, c-format
-msgid "Synchronization tool"
-msgstr "أداة المزامنة"
-
-#: standalone/drakbug:49 standalone/drakbug:152
-#, c-format
-msgid "Standalone Tools"
-msgstr "الأدوات المنفصلة"
-
-#: standalone/drakbug:50
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: standalone/drakbug:51
-#, c-format
-msgid "Mandriva Online"
-msgstr "Mandriva Online"
-
-#: standalone/drakbug:52
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
-
-#: standalone/drakbug:53
-#, c-format
-msgid "Msec"
-msgstr "Msec"
-
-#: standalone/drakbug:54
-#, c-format
-msgid "Remote Control"
-msgstr "التحكم عن بعد"
-
-#: standalone/drakbug:55
-#, c-format
-msgid "Software Manager"
-msgstr "مدير البرامج"
-
-#: standalone/drakbug:56
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
-
-#: standalone/drakbug:57
-#, c-format
-msgid "Windows Migration tool"
-msgstr "أداة الإنتقال من ويندوز"
-
-#: standalone/drakbug:58 standalone/draksambashare:1234
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: standalone/drakbug:59
-#, c-format
-msgid "Configuration Wizards"
-msgstr "مرشدو التهيئة"
-
-#: standalone/drakbug:81
-#, c-format
-msgid "Select Mandriva Tool:"
-msgstr "اختيار أداة ماندريبا:"
-
-#: standalone/drakbug:82
-#, c-format
-msgid ""
-"or Application Name\n"
-"(or Full Path):"
-msgstr ""
-"أو اسم التّطبيق\n"
-"(أو المسار الكامل):"
-
-#: standalone/drakbug:85
-#, c-format
-msgid "Find Package"
-msgstr "بحث عن حزمة"
-
-#: standalone/drakbug:87
-#, c-format
-msgid "Package: "
-msgstr "الحزمة: "
-
-#: standalone/drakbug:88
-#, c-format
-msgid "Kernel:"
-msgstr "النواة:"
-
-#: standalone/drakbug:101
-#, c-format
-msgid ""
-"To submit a bug report, click on the report button. \n"
-"This will open a web browser window on %s where you'll find a form to fill "
-"in. The information displayed above will be transferred to that server. \n"
-"Things useful to include in your report are the output of lspci, kernel "
-"version, and /proc/cpuinfo."
-msgstr ""
-"لتسليم تقرير العيوب، اضغط على زر تقرير.\n"
-"سيقوم هذا بفتح نافذة متصفح وب على الصفحة %s\n"
-" حيث ستجد استمارة عليك ملؤها. المعلومات الظاهرة أعلاه سيتم نقلها\n"
-"إلى ذلك الخادم. \n"
-"بعض الأشياء المفيد شملها في تقريرك هي مخرجات lspci، ونسخة النواة، و/proc/"
-"cpuinfo."
-
-#: standalone/drakbug:107
-#, c-format
-msgid "Report"
-msgstr "تقرير"
-
-#: standalone/drakbug:162
-#, c-format
-msgid "Not installed"
-msgstr "غير مثبت"
-
-#: standalone/drakbug:174
-#, c-format
-msgid "Package not installed"
-msgstr "لم يتم تثبيت الحزمة"
-
-#: standalone/drakclock:29
-#, c-format
-msgid "DrakClock"
-msgstr "DrakClock"
-
-#: standalone/drakclock:39
-#, c-format
-msgid "not defined"
-msgstr "غير معرّف"
-
-#: standalone/drakclock:41
-#, c-format
-msgid "Change Time Zone"
-msgstr "تغيير المنطقة الزمنية"
-
-#: standalone/drakclock:45
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "المنطقة الزمنيّة - DrakClock"
-
-#: standalone/drakclock:47
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "GMT - DrakClock"
-
-#: standalone/drakclock:47 standalone/finish-install:57
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "هل ساعة الجهاز مضبوطة على توقيت غرينتش؟"
-
-#: standalone/drakclock:75
-#, c-format
-msgid "Network Time Protocol"
-msgstr "بروتوكول وقت الشّبكة"
-
-#: standalone/drakclock:77
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-"يمكن لحاسبك أن يُزامن ساعته\n"
-" مع خادم وقت بعيد باستخدام NTP"
-
-#: standalone/drakclock:78
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr "تمكين بروتوكول وقت الشّبكة"
-
-#: standalone/drakclock:86
-#, c-format
-msgid "Server:"
-msgstr "الخادم:"
-
-#: standalone/drakclock:124
-#, c-format
-msgid "Could not synchronize with %s."
-msgstr "لم يمكن المزامنة مع %s."
-
-#: standalone/drakclock:146 standalone/drakclock:156
-#, c-format
-msgid "Reset"
-msgstr "إعادة للأصل"
-
-#: standalone/drakclock:224
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol\n"
-"\n"
-"Do you want to install ntp?"
-msgstr ""
-"نحتاج إلى تثبيت حزمة ntp\n"
-" لتمكين بروتوكول وقت الشّبكة\n"
-"\n"
-"هل تريد تثبيت ntp؟"
-
-#: standalone/drakconnect:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "إعدادات الشبكة (%d موائمات)"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Gateway:"
-msgstr "البوابة:"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Interface:"
-msgstr "الواجهة:"
-
-#: standalone/drakconnect:93 standalone/net_monitor:116
-#, c-format
-msgid "Wait please"
-msgstr "الرجاء الانتظار"
-
-#: standalone/drakconnect:109
-#, c-format
-msgid "Interface"
-msgstr "الواجهة"
-
-#: standalone/drakconnect:109 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "State"
-msgstr "الحالة"
-
-#: standalone/drakconnect:126
-#, c-format
-msgid "Hostname: "
-msgstr "اسم المضيف:"
-
-#: standalone/drakconnect:128
-#, c-format
-msgid "Configure hostname..."
-msgstr "تهيئة اسم المضيف..."
-
-#: standalone/drakconnect:142 standalone/drakconnect:845
-#, c-format
-msgid "LAN configuration"
-msgstr "تهيئة LAN"
-
-#: standalone/drakconnect:147
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "تهيئة الشبكة المحلية..."
-
-#: standalone/drakconnect:155 standalone/drakconnect:237
-#: standalone/drakconnect:241
-#, c-format
-msgid "Apply"
-msgstr "تطبيق"
-
-#: standalone/drakconnect:188
-#, c-format
-msgid "Manage connections"
-msgstr "إدارة الاتّصالات"
-
-#: standalone/drakconnect:215
-#, c-format
-msgid "Device selected"
-msgstr "الجهاز المُختار"
-
-#: standalone/drakconnect:296
-#, c-format
-msgid "IP configuration"
-msgstr "تهيئة IP"
-
-#: standalone/drakconnect:335
-#, c-format
-msgid "DNS servers"
-msgstr "خادمات DNS"
-
-#: standalone/drakconnect:343
-#, c-format
-msgid "Search Domain"
-msgstr "نطاق البحث"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "static"
-msgstr "ثابت"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "DHCP"
-msgstr "DHCP"
-
-#: standalone/drakconnect:515
-#, c-format
-msgid "Flow control"
-msgstr "التحكّم بالدّفق"
-
-#: standalone/drakconnect:516
-#, c-format
-msgid "Line termination"
-msgstr "إنهاء الخط"
-
-#: standalone/drakconnect:527
-#, c-format
-msgid "Modem timeout"
-msgstr "انتهاء وقت المستخدم"
-
-#: standalone/drakconnect:531
-#, c-format
-msgid "Use lock file"
-msgstr "ملف قِفل المستخدم"
-
-#: standalone/drakconnect:533
-#, c-format
-msgid "Wait for dialup tone before dialing"
-msgstr "انتظر نغمة الاتصال قبل القيام بالاتّصال"
-
-#: standalone/drakconnect:536
-#, c-format
-msgid "Busy wait"
-msgstr "انتظار المشغول"
-
-#: standalone/drakconnect:541
-#, c-format
-msgid "Modem sound"
-msgstr "صوت المودم"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Enable"
-msgstr "تمكين"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Disable"
-msgstr "تعطيل"
-
-#: standalone/drakconnect:593 standalone/harddrake2:50
-#, c-format
-msgid "Media class"
-msgstr "فئة الوسيط"
-
-#: standalone/drakconnect:594
-#, c-format
-msgid "Module name"
-msgstr "اسم الوحدة"
-
-#: standalone/drakconnect:595
-#, c-format
-msgid "Mac Address"
-msgstr "عنوان MAC"
-
-# U+200F (RTL mark) has been inserted after "Bus" so the display
-# on screen is correctly "datadatadata :Bus", and not "Bus: datadatadata"
-#: standalone/drakconnect:596 standalone/harddrake2:28
-#: standalone/harddrake2:120
-#, c-format
-msgid "Bus"
-msgstr "ناقل"
-
-#: standalone/drakconnect:597 standalone/harddrake2:34
-#, c-format
-msgid "Location on the bus"
-msgstr "الموقع على الناقل"
-
-#: standalone/drakconnect:700 standalone/drakgw:311
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr "لم يتم اكتشاف موائم شبكي على نظامك. فضلاً قم بتشغيل أداة تهيئة العتاد."
-
-#: standalone/drakconnect:709
-#, c-format
-msgid "Remove a network interface"
-msgstr "إزالة واجهة شبكة"
-
-#: standalone/drakconnect:713
-#, c-format
-msgid "Select the network interface to remove:"
-msgstr "اختيار واجهة الشبكة لإزالتها:"
-
-#: standalone/drakconnect:745
-#, c-format
-msgid ""
-"An error occurred while deleting the \"%s\" network interface:\n"
-"\n"
-"%s"
-msgstr ""
-"حدث خطأ خلال حذف واجهة الشّبكة \"%s\":\n"
-"\n"
-"%s"
-
-#: standalone/drakconnect:746
-#, c-format
-msgid ""
-"Congratulations, the \"%s\" network interface has been successfully deleted"
-msgstr "تهانينا، تمّ حذف واجهة الشّبكة \"%s\" بنجاح"
-
-#: standalone/drakconnect:761
-#, c-format
-msgid "No IP"
-msgstr "بدون IP"
-
-#: standalone/drakconnect:762
-#, c-format
-msgid "No Mask"
-msgstr "لا قناع"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "up"
-msgstr "يعمل"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "down"
-msgstr "مُعطّل"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Connected"
-msgstr "متّصل"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Not connected"
-msgstr "غير متصل"
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Disconnect..."
-msgstr "قطع الإتصال..."
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Connect..."
-msgstr "اتصال..."
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Deactivate now"
-msgstr "التعطيل الآن"
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Activate now"
-msgstr "التنشيط الآن"
-
-#: standalone/drakconnect:849
-#, c-format
-msgid ""
-"You do not have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"لم تقم بتهيئة أي واجهات.\n"
-"قم بتهيئتهم أولا عن طريق الضغط على 'تهيئة'"
-
-#: standalone/drakconnect:863
-#, c-format
-msgid "LAN Configuration"
-msgstr "تهيئة الشّبكة المحليّة"
-
-#: standalone/drakconnect:875
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "المحوّل %s: %s"
-
-#: standalone/drakconnect:884
-#, c-format
-msgid "Boot Protocol"
-msgstr "بروتوكول الإقلاع"
-
-#: standalone/drakconnect:885
-#, c-format
-msgid "Started on boot"
-msgstr "يتم تشغيله عند الإقلاع"
-
-#: standalone/drakconnect:921
-#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"لم تتمّ تهيئة الواجهة بعد.\n"
-"قم بتشغيل مساعد \"أضف واجهة\" من مركز تحكّم ماندريبا لينكس"
-
-#: standalone/drakconnect:975 standalone/net_applet:51
-#, c-format
-msgid ""
-"You do not have any configured Internet connection.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"ليست لديك أية وصلة إنترنت مهيئة.\n"
-"شغّل مساعد \"%s\" من مركز تحكم ماندريبا لينكس"
-
-#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: standalone/drakconnect:976 standalone/drakroam:34 standalone/net_applet:52
-#, c-format
-msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
-msgstr "إعداد واجهة شبكة جديدة (LAN، ISDN، ADSL، ...)"
-
-#: standalone/drakconnect:981
-#, c-format
-msgid "Internet connection configuration"
-msgstr "تهيئة الإتصال بالإنترنت"
-
-#: standalone/drakconnect:994
-#, c-format
-msgid "Third DNS server (optional)"
-msgstr "خادم DNS الثّالث (اختياري)"
-
-#: standalone/drakconnect:1016
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "تهيئة الإتصال بالإنترنت"
-
-#: standalone/drakconnect:1017
-#, c-format
-msgid "Internet access"
-msgstr "الدخول إلى الإنترنت"
-
-#: standalone/drakconnect:1019 standalone/net_monitor:95
-#, c-format
-msgid "Connection type: "
-msgstr "نوع الوصلة:"
-
-#: standalone/drakconnect:1022
-#, c-format
-msgid "Status:"
-msgstr "الحالة:"
-
-#: standalone/drakconnect:1027
-#, c-format
-msgid "Parameters"
-msgstr "مُعطيات"
-
-#: standalone/drakedm:40
-#, c-format
-msgid "GDM (GNOME Display Manager)"
-msgstr "GDM (مدير عرض جينوم("
-
-#: standalone/drakedm:41
-#, c-format
-msgid "KDM (KDE Display Manager)"
-msgstr "KDM (مدير عرض كيدي("
-
-#: standalone/drakedm:42
-#, c-format
-msgid "XDM (X Display Manager)"
-msgstr "XDM (مدير عرض X("
-
-#: standalone/drakedm:53
-#, c-format
-msgid "Choosing a display manager"
-msgstr "جاري اختيار مدير العرض"
-
-#: standalone/drakedm:54
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"مدير عرض X11 يسمح لك بتسجيل الدخول إلى\n"
-"نظامك مع تشغيل خادم النوافذ X و يدعم تشغيل\n"
-"عدة جلسات X مختلفة على ماكينتك المحلية في نفس الوقت."
-
-#: standalone/drakedm:72
-#, c-format
-msgid "The change is done, do you want to restart the dm service?"
-msgstr "تم عمل التغيير، هل تريد إعادة تشغيل خدمة dm؟"
-
-#: standalone/drakedm:73
-#, c-format
-msgid ""
-"You are going to close all running programs and lose your current session. "
-"Are you really sure that you want to restart the dm service?"
-msgstr ""
-"أنت بصدد إغلاق كلّ البرامج المشتغلة وخسران جلستك الحالية. هل تنوي فعلا إعادة "
-"بدأ خدمة dm؟"
-
-#: standalone/drakfont:182
-#, c-format
-msgid "Search installed fonts"
-msgstr "البحث في الخطوط المثبتة"
-
-#: standalone/drakfont:184
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "إزالة اختيار الخطوط المثبتة"
-
-#: standalone/drakfont:207
-#, c-format
-msgid "parse all fonts"
-msgstr "تحليل كل الخطوط"
-
-#: standalone/drakfont:209
-#, c-format
-msgid "No fonts found"
-msgstr "لا توجد خطوط"
-
-#: standalone/drakfont:217 standalone/drakfont:259 standalone/drakfont:326
-#: standalone/drakfont:359 standalone/drakfont:367 standalone/drakfont:393
-#: standalone/drakfont:411 standalone/drakfont:425
-#, c-format
-msgid "done"
-msgstr "انتهى"
-
-#: standalone/drakfont:222
-#, c-format
-msgid "Could not find any font in your mounted partitions"
-msgstr "تعذر العثور على أي خطوط في تجزيئاتك المُركّبة"
-
-#: standalone/drakfont:257
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "إعادة اختيار الخطوط الصحيحة"
-
-#: standalone/drakfont:260
-#, c-format
-msgid "Could not find any font.\n"
-msgstr "تعذر العثور على أي خط.\n"
-
-#: standalone/drakfont:270
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "بحث عن الخطوط في القائمة المثبتة"
-
-#: standalone/drakfont:295
-#, c-format
-msgid "%s fonts conversion"
-msgstr "تحويل خطوط %s"
-
-#: standalone/drakfont:324
-#, c-format
-msgid "Fonts copy"
-msgstr "نسخ الخطوط"
-
-#: standalone/drakfont:327
-#, c-format
-msgid "True Type fonts installation"
-msgstr "تثبيت خطوط True Type"
-
-#: standalone/drakfont:334
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "الرجاء الانتظار أثناء عملية ttmkfdir..."
-
-#: standalone/drakfont:335
-#, c-format
-msgid "True Type install done"
-msgstr "تم تثبيت خطوط True Type"
-
-#: standalone/drakfont:341 standalone/drakfont:356
-#, c-format
-msgid "type1inst building"
-msgstr "بناء type1inst"
-
-#: standalone/drakfont:350
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "الإشارة إلى Ghostscript"
-
-#: standalone/drakfont:360
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "إبطال الملفات المؤقتة"
-
-#: standalone/drakfont:363
-#, c-format
-msgid "Restart XFS"
-msgstr "إعادة تشغيل XFS"
-
-#: standalone/drakfont:409 standalone/drakfont:419
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "إبطال ملفات الخطوط"
-
-#: standalone/drakfont:421
-#, c-format
-msgid "xfs restart"
-msgstr "xfs restart"
-
-#: standalone/drakfont:429
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
-"قبل تثبيت أي خطوط تأكد أنه لديك الحق باستخدامها وتثبيتها على نظامك.\n"
-"\n"
-"يمكنك تثبيت الخطوط بالطريقة العادية. في حالات نادرة، قد تتسبب الخطوط المزيفة "
-"في تعليق خادم X."
-
-#: standalone/drakfont:473 standalone/drakfont:482
-#, c-format
-msgid "DrakFont"
-msgstr "DrakFont"
-
-#: standalone/drakfont:483
-#, c-format
-msgid "Font List"
-msgstr "قائمة الخطوط"
-
-#: standalone/drakfont:486
-#, c-format
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: standalone/drakfont:492
-#, c-format
-msgid "About"
-msgstr "حَوْل"
-
-#: standalone/drakfont:494 standalone/drakfont:718
-#, c-format
-msgid "Uninstall"
-msgstr "إزالة التّثبيت"
-
-#: standalone/drakfont:495
-#, c-format
-msgid "Import"
-msgstr "استيراد"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakfont:513
-#, c-format
-msgid "Copyright (C) 2001-2006 by Mandriva"
-msgstr ""
-
-#: standalone/drakfont:515
-#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-" هذا البرنامج هو برنامج حر، يمكنك إعادة توزيعة و/أو تعديله\n"
-" تحت بنود رخصة GNU العمومية الشاملة (GPL) كما نُشِرت عن طريق\n"
-" جمعية البرمجيات الحرة؛ إما الإصدار الثاني من الترخيص أو\n"
-" أي نسخة تالية (حسب اختيارك).\n"
-"\n"
-" هذا البرنامج يُوزَّع على أمل أن يكون مفيدا،\n"
-" لكن دون أي ضمان؛ حتى بدون الضمانة المفهومة\n"
-" للإتجار أو المناسبة لغرض معين. انظر\n"
-" رخصة GNU العمومية الشاملة للتفاصيل.\n"
-"\n"
-"\n"
-" يجب أن تكون قد تسلمت نسخة من ترخيص GNU العمومية الشاملة\n"
-" مع البرنامج؛ إن لم يكن كذلك، راسل جمعية البرمجيات الحرة\n"
-"على العنوان التالي Free Software\n"
-"Foundation، Inc.، 59 Temple Place - Suite 330، Boston، MA 02111-1307، USA."
-
-#: standalone/drakfont:531
-#, c-format
-msgid ""
-"Thanks:\n"
-"\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
-msgstr ""
-"شكراً:\n"
-"\n"
-" - pfm2afm: \n"
-"\t بوساطة Ken Borgendale:\n"
-"\t حوّل ملف .pfm لويندوز إلى ملف .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t بواسطة James Macnicol: \n"
-"\t type1inst يولّد الملفّات fonts.dir fonts.scale و Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t بواسطة Andrew Weeks، Frank Siegert، Thomas Henlich، Sergey Babkin \n"
-" حوّل خطوط ملفّات ttf إلى خطوط afm و pfb\n"
-
-#: standalone/drakfont:550
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "اختر التطبيقات التي ستدعم الخطوط:"
-
-#: standalone/drakfont:561
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: standalone/drakfont:562
-#, c-format
-msgid "StarOffice"
-msgstr "ستارأوفيس"
-
-#: standalone/drakfont:563
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
-
-#: standalone/drakfont:564
-#, c-format
-msgid "Generic Printers"
-msgstr "طابعات شاملة"
-
-#: standalone/drakfont:578
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "اختر ملف أو دليل الخطوط و اضغط 'إضافة'"
-
-#: standalone/drakfont:579
-#, c-format
-msgid "File Selection"
-msgstr "اختيار الملفات"
-
-#: standalone/drakfont:583
-#, c-format
-msgid "Fonts"
-msgstr "خطوط"
-
-#: standalone/drakfont:646
-#, c-format
-msgid "Import fonts"
-msgstr "استيراد الخطوط"
-
-#: standalone/drakfont:651
-#, c-format
-msgid "Install fonts"
-msgstr "تثبيت الخطوط"
-
-#: standalone/drakfont:681
-#, c-format
-msgid "Are you sure you want to uninstall the following fonts?"
-msgstr ""
-
-#: standalone/drakfont:726
-#, c-format
-msgid "Unselected All"
-msgstr "تم إزالة اختيار الكل"
-
-#: standalone/drakfont:729
-#, c-format
-msgid "Selected All"
-msgstr "تم اختيار الكل"
-
-#: standalone/drakfont:743 standalone/drakfont:762
-#, c-format
-msgid "Importing fonts"
-msgstr "استيراد الخطوط"
-
-#: standalone/drakfont:747 standalone/drakfont:767
-#, c-format
-msgid "Initial tests"
-msgstr "الاختبارات الأولية"
-
-#: standalone/drakfont:748
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "نسخ الخطوط إلى نظامك"
-
-#: standalone/drakfont:749
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "تثبيت و تحويل الخطوط"
-
-#: standalone/drakfont:750
-#, c-format
-msgid "Post Install"
-msgstr "ما بعد التثبيت"
-
-#: standalone/drakfont:768
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "حذف الخطوط من النظام"
-
-#: standalone/drakfont:769
-#, c-format
-msgid "Post Uninstall"
-msgstr "ما بعد إزالة التثبيت"
-
-#: standalone/drakgw:50 standalone/drakvpn:51
-#, c-format
-msgid "Sorry, we support only 2.4 and above kernels."
-msgstr "نعتذر، نحن ندعم إصدارات النواة 2.4 وما بعدها فقط"
-
-#: standalone/drakgw:75
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "مشاركة الاتصال بالإنترنت"
-
-#: standalone/drakgw:79
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"أنت على وشك تهيئة جهازك لمشاركة الإتصال بالإنترنت.\n"
-"باستخدام هذه الميزة سيمكن للحواسيب الأخرى في الشبكة المحلية أن تستخدم وصلة "
-"الحاسب لهذا الحاسب.\n"
-"\n"
-"تأكد من أنك قمت بتهيئة وصلة الشبكة/الإنترنت باستخدام drakconnect قبل "
-"المتابعة.\n"
-"\n"
-"ملحوظة: تحتاج إلى موائم للشبكة كي تقوم بإعداد الشبكة المحلية (LAN)."
-
-#: standalone/drakgw:95
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"تم عمل مشاركة الإتصال بالإنترنت مسبقاً.\n"
-"و هي ممكّنة حالياً.\n"
-"\n"
-"ماذا تريد أن تفعل؟"
-
-#: standalone/drakgw:99
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"تم تنصيب مشاركة الإتصال بالإنترنت مسبقاً.\n"
-"و هي معطلة حالياً.\n"
-"\n"
-"ماذا تريد أن تفعل؟"
-
-#: standalone/drakgw:105
-#, fuzzy, c-format
-msgid "Reconfigure"
-msgstr "إعادة التهيئة"
-
-#: standalone/drakgw:145
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"يوجد موائم شبكة واحد فقط معدّ على نظامك:\n"
-"\n"
-"%s\n"
-"\n"
-"نحن على وشك إعداد الشبكة المحلية باستخدام هذا الموائم."
-
-#: standalone/drakgw:156
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "الرجاء اختيار موائم الشبكة الذي سيتم به الإتصال بالشبكة المحلية."
-
-#: standalone/drakgw:177
-#, fuzzy, c-format
-msgid "Local Area Network settings"
-msgstr "عنوان الشبكة المحلية"
-
-#: standalone/drakgw:180
-#, c-format
-msgid "Local IP address"
-msgstr ""
-
-#: standalone/drakgw:182
-#, c-format
-msgid "The internal domain name"
-msgstr "اسم النطاق الداخلي"
-
-#: standalone/drakgw:188
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"عثر على تعارض في عنوان الشبكة المحلية المبدئي في التهيئة الحالي لـ%s!\n"
-
-#: standalone/drakgw:204
-#, fuzzy, c-format
-msgid "Domain Name Server (DNS) configuration"
-msgstr "تهيئة خادم الطّرفيات"
-
-#: standalone/drakgw:208
-#, c-format
-msgid "Use this gateway as domain name server"
-msgstr ""
-
-#: standalone/drakgw:209
-#, c-format
-msgid "The DNS Server IP"
-msgstr "عنوان IP لخادم DNS"
-
-#: standalone/drakgw:236
-#, c-format
-msgid ""
-"DHCP Server Configuration.\n"
-"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you do not know the meaning of an option, simply leave it as it is."
-msgstr ""
-"تهيئة خادم DHCP.\n"
-"\n"
-"هنا يمكنك اختيار خيارات مختلفة لتهيئة خادم DHCP.\n"
-"إذا لم تكن تعلم معنى خيار ما، فاتركه كما هو."
-
-#: standalone/drakgw:243
-#, fuzzy, c-format
-msgid "Use automatic configuration (DHCP)"
-msgstr "إعادة تهيئة آلية"
-
-#: standalone/drakgw:244
-#, c-format
-msgid "The DHCP start range"
-msgstr "مدى بداية DHCP"
-
-#: standalone/drakgw:245
-#, c-format
-msgid "The DHCP end range"
-msgstr "مدى نهاية DHCP"
-
-#: standalone/drakgw:246
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "الإيجار الإفتراضي (بالثواني)"
-
-#: standalone/drakgw:247
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "الإيجار الأقصى (بالثواني)"
-
-#: standalone/drakgw:270
-#, c-format
-msgid "Proxy caching server (SQUID)"
-msgstr ""
-
-#: standalone/drakgw:274
-#, c-format
-msgid "Use this gateway as proxy caching server"
-msgstr ""
-
-#: standalone/drakgw:275
-#, c-format
-msgid "Admin mail"
-msgstr ""
-
-#: standalone/drakgw:276
-#, fuzzy, c-format
-msgid "Visible hostname"
-msgstr "اسم المضيف البعيد"
-
-#: standalone/drakgw:277
-#, fuzzy, c-format
-msgid "Proxy port"
-msgstr "الخاصية"
-
-#: standalone/drakgw:278
-#, fuzzy, c-format
-msgid "Cache size (MB)"
-msgstr "حجم الذاكرة المخبئية"
-
-#: standalone/drakgw:300
-#, fuzzy, c-format
-msgid "Broadcast printer information"
-msgstr "معلومات القرص الصلب"
-
-#: standalone/drakgw:317
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "مشاركة إتصال الإنترنت ممكَّنة الآن."
-
-#: standalone/drakgw:323
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "مشاركة اتصال الإنترنت غير ممكَّنة الآن."
-
-#: standalone/drakgw:329
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP) and\n"
-" a Transparent Proxy Cache server (SQUID)."
-msgstr ""
-"تم تهيئة كل شئ.\n"
-"يمكنك الآن مشاركة اتصال الإنترنت مع الحاسبات الأخرى في شبكتك المحلية "
-"باستخدام تهيئة الشبكة الأوتوماتيكية (DHCP) و\n"
-" خادم الذاكرة المخبئة والبروكسي الشّفافي (SQUID)."
-
-#: standalone/drakgw:363
-#, c-format
-msgid "Disabling servers..."
-msgstr "تعطيل الخادمات..."
-
-#: standalone/drakgw:377
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "تم اكتشاف إعداد للجدار الناري!"
-
-#: standalone/drakgw:378
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-"تحذير! تم إيجاد إعداد جدار ناري موجود مسبقا. ربما تحتاج إلى اصلاح يدوي بعد "
-"التثبيت."
-
-#: standalone/drakgw:383
-#, c-format
-msgid "Configuring..."
-msgstr "التهيئة..."
-
-#: standalone/drakgw:384
-#, c-format
-msgid "Configuring firewall..."
-msgstr ""
-
-#: standalone/drakhelp:17
-#, c-format
-msgid ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"\n"
-"Usage: \n"
-msgstr ""
-" drakhelp 0.1\n"
-"حقوق النّسخ 2003-2005 ماندريبا.\n"
-"هذا برنامج حرّ ويمكن إعادة توزيعه تحت بنود رخصة GNU GPL.\n"
-"\n"
-"الاستعمال: \n"
-
-#: standalone/drakhelp:22
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - إظهار هذه المساعدة \n"
-
-#: standalone/drakhelp:23
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr ""
-" --id <id_label> - تحميل ملفّات html المساعدة التي تشير إلى id_label\n"
-
-#: standalone/drakhelp:24
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr " --doc <link> - رابط بصفحة وب أخرى ( لـWM welcome frontend)\n"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "Mandriva Linux Help Center"
-msgstr "مركز مساعدة ماندريبا لينكس"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "No Help entry for %s\n"
-msgstr ""
-
-#: standalone/drakhosts:98
-#, c-format
-msgid "Please add an host to be able to modify it."
-msgstr ""
-
-#: standalone/drakhosts:108
-#, fuzzy, c-format
-msgid "Please modify information"
-msgstr "معلومات مفصّلة"
-
-#: standalone/drakhosts:109
-#, fuzzy, c-format
-msgid "Please delete information"
-msgstr "معلومات مفصّلة"
-
-#: standalone/drakhosts:110
-#, fuzzy, c-format
-msgid "Please add information"
-msgstr "معلومات مفصّلة"
-
-#: standalone/drakhosts:115
-#, c-format
-msgid "IP address:"
-msgstr "عنوان IP:"
-
-#: standalone/drakhosts:116
-#, c-format
-msgid "Host name:"
-msgstr ""
-
-#: standalone/drakhosts:117
-#, c-format
-msgid "Host Aliases:"
-msgstr ""
-
-#: standalone/drakhosts:123
-#, c-format
-msgid "Please enter a valid IP address."
-msgstr "الرجاء إدخال عنوان IP صالح."
-
-#: standalone/drakhosts:129
-#, c-format
-msgid "Same IP is already in %s file."
-msgstr ""
-
-#: standalone/drakhosts:197
-#, c-format
-msgid "Host Aliases"
-msgstr ""
-
-#: standalone/drakhosts:237
-#, c-format
-msgid "DrakHOSTS manage hosts definitions"
-msgstr ""
-
-#: standalone/drakhosts:246
-#, c-format
-msgid "Failed to add host."
-msgstr ""
-
-#: standalone/drakhosts:253
-#, c-format
-msgid "Failed to Modify host."
-msgstr ""
-
-#: standalone/drakhosts:260
-#, c-format
-msgid "Failed to remove host."
-msgstr ""
-
-#: standalone/drakids:26
-#, fuzzy, c-format
-msgid "Allowed addresses"
-msgstr "السماح لكل المستخدمين"
-
-#: standalone/drakids:57
-#, c-format
-msgid "Log"
-msgstr "السّجل"
-
-#: standalone/drakids:61
-#, fuzzy, c-format
-msgid "Clear logs"
-msgstr "مسح الكل"
-
-#: standalone/drakids:62 standalone/drakids:67 standalone/net_applet:470
-#, c-format
-msgid "Blacklist"
-msgstr ""
-
-#: standalone/drakids:63 standalone/drakids:80 standalone/net_applet:475
-#, c-format
-msgid "Whitelist"
-msgstr ""
-
-#: standalone/drakids:71
-#, fuzzy, c-format
-msgid "Remove from blacklist"
-msgstr "ازالة من LVM"
-
-#: standalone/drakids:72
-#, c-format
-msgid "Move to whitelist"
-msgstr ""
-
-#: standalone/drakids:84
-#, fuzzy, c-format
-msgid "Remove from whitelist"
-msgstr "ازالة من LVM"
-
-#: standalone/drakids:136 standalone/drakids:145 standalone/drakids:170
-#: standalone/drakids:179 standalone/drakids:189 standalone/drakids:265
-#: standalone/drakroam:182 standalone/net_applet:202 standalone/net_applet:385
-#, fuzzy, c-format
-msgid "Unable to contact daemon"
-msgstr "تعذر الإتصال بالمرآة %s"
-
-#: standalone/drakids:202
-#, c-format
-msgid "Date"
-msgstr "التاريخ"
-
-#: standalone/drakids:203
-#, fuzzy, c-format
-msgid "Attacker"
-msgstr "تفاصيل الهجوم"
-
-#: standalone/drakids:204
-#, fuzzy, c-format
-msgid "Attack type"
-msgstr "نوع الهجوم: %s"
-
-#: standalone/drakids:205
-#, c-format
-msgid "Service"
-msgstr "خدمة"
-
-#: standalone/drakids:206 standalone/net_applet:72
-#, c-format
-msgid "Network interface"
-msgstr "واجهة الشبكة "
-
-#: standalone/draknfs:41
-#, c-format
-msgid "map root user as anonymous"
-msgstr ""
-
-#: standalone/draknfs:42
-#, c-format
-msgid "map all users to anonymous user"
-msgstr ""
-
-#: standalone/draknfs:43
-#, c-format
-msgid "No user UID mapping"
-msgstr ""
-
-#: standalone/draknfs:44
-#, c-format
-msgid "allow real remote root access"
-msgstr ""
-
-#: standalone/draknfs:83
-#, c-format
-msgid "NFS server"
-msgstr "خادم NFS"
-
-#: standalone/draknfs:83
-#, c-format
-msgid "Restarting/Reloading NFS server..."
-msgstr ""
-
-#: standalone/draknfs:84
-#, c-format
-msgid "Error Restarting/Reloading NFS server"
-msgstr ""
-
-#: standalone/draknfs:100 standalone/draksambashare:203
-#, c-format
-msgid "Directory Selection"
-msgstr ""
-
-#: standalone/draknfs:105 standalone/draksambashare:208
-#, c-format
-msgid "Should be a directory."
-msgstr "يجب أن يكون دليلا."
-
-#: standalone/draknfs:136
-#, c-format
-msgid ""
-"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
-"ways:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">single host:</span> a host either by an "
-"abbreviated name recognized be the resolver, fully qualified domain name, or "
-"an IP address\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">netgroups:</span> NIS netgroups may be given "
-"as @group.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">wildcards:</span> machine names may contain "
-"the wildcard characters * and ?. For instance: *.cs.foo.edu matches all "
-"hosts in the domain cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP networks:</span> you can also export "
-"directories to all hosts on an IP (sub-)network simultaneously. for example, "
-"either `/255.255.252.0' or `/22' appended to the network base address "
-"result.\n"
-msgstr ""
-
-#: standalone/draknfs:151
-#, c-format
-msgid ""
-"<span weight=\"bold\">User ID options</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map root user as anonymous:</span> map "
-"requests from uid/gid 0 to the anonymous uid/gid (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">allow real remote root access:</span> turn "
-"off root squashing. This option is mainly useful for diskless clients "
-"(no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map all users to anonymous user:</span> map "
-"all uids and gids to the anonymous user (all_squash). Useful for NFS-"
-"exported public FTP directories, news spool directories, etc. The opposite "
-"option is no user UID mapping (no_all_squash), which is the default "
-"setting.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid and anongid:</span> explicitly set "
-"the uid and gid of the anonymous account.\n"
-msgstr ""
-
-#: standalone/draknfs:167
-#, c-format
-msgid "Synchronous access:"
-msgstr ""
-
-#: standalone/draknfs:168
-#, c-format
-msgid "Secured Connection:"
-msgstr ""
-
-#: standalone/draknfs:169
-#, c-format
-msgid "Read-Only share:"
-msgstr ""
-
-#: standalone/draknfs:171
-#, c-format
-msgid "<span weight=\"bold\">Advanced Options</span>"
-msgstr ""
-
-#: standalone/draknfs:172
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> this option requires that "
-"requests originate on an internet port less than IPPORT_RESERVED (1024). "
-"This option is on by default."
-msgstr ""
-
-#: standalone/draknfs:173
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> allow either only read or both "
-"read and write requests on this NFS volume. The default is to disallow any "
-"request which changes the filesystem. This can also be made explicit by "
-"using this option."
-msgstr ""
-
-#: standalone/draknfs:174
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> disallows the NFS server to "
-"violate the NFS protocol and to reply to requests before any changes made by "
-"these requests have been committed to stable storage (e.g. disc drive)."
-msgstr ""
-
-#: standalone/draknfs:306
-#, c-format
-msgid "Please add an NFS share to be able to modify it."
-msgstr ""
-
-#: standalone/draknfs:378
-#, fuzzy, c-format
-msgid "Advanced Options Help"
-msgstr "تهيئة متقدمة"
-
-#: standalone/draknfs:389
-#, c-format
-msgid "NFS directory"
-msgstr ""
-
-#: standalone/draknfs:391 standalone/draksambashare:592
-#: standalone/draksambashare:771
-#, c-format
-msgid "Directory:"
-msgstr "الدليل:"
-
-#: standalone/draknfs:394
-#, c-format
-msgid "Host access"
-msgstr ""
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Access:"
-msgstr "التّوصّل:"
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Hosts Access"
-msgstr ""
-
-#: standalone/draknfs:399
-#, c-format
-msgid "User ID Mapping"
-msgstr ""
-
-#: standalone/draknfs:401
-#, c-format
-msgid "User ID:"
-msgstr ""
-
-#: standalone/draknfs:401
-#, c-format
-msgid "Help User ID"
-msgstr ""
-
-#: standalone/draknfs:402
-#, c-format
-msgid "Anonymous user ID:"
-msgstr ""
-
-#: standalone/draknfs:403
-#, c-format
-msgid "Anonymous Group ID:"
-msgstr ""
-
-#: standalone/draknfs:444
-#, c-format
-msgid "Can't create this directory."
-msgstr ""
-
-#: standalone/draknfs:447
-#, c-format
-msgid "You must specify hosts access."
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Share Directory"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Hosts Wildcard"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "General Options"
-msgstr "خيارات عامة"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Custom Options"
-msgstr ""
-
-#: standalone/draknfs:539 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Please enter a directory to share."
-msgstr ""
-
-#: standalone/draknfs:546
-#, c-format
-msgid "Please use the modify button to set right access."
-msgstr ""
-
-#: standalone/draknfs:600
-#, c-format
-msgid "DrakNFS manage NFS shares"
-msgstr ""
-
-#: standalone/draknfs:609
-#, c-format
-msgid "Failed to add NFS share."
-msgstr ""
-
-#: standalone/draknfs:616
-#, c-format
-msgid "Failed to Modify NFS share."
-msgstr ""
-
-#: standalone/draknfs:623
-#, c-format
-msgid "Failed to remove an NFS share."
-msgstr ""
-
-#: standalone/drakperm:21
-#, c-format
-msgid "System settings"
-msgstr "إعدادات النّظام"
-
-#: standalone/drakperm:22
-#, c-format
-msgid "Custom settings"
-msgstr "إعدادات مخصصة"
-
-#: standalone/drakperm:23
-#, c-format
-msgid "Custom & system settings"
-msgstr "إعدادات مُخصّصة وإعدادت النّظام"
-
-#: standalone/drakperm:43
-#, c-format
-msgid "Editable"
-msgstr "قابل للتّعديل"
-
-#: standalone/drakperm:48 standalone/drakperm:323
-#: standalone/draksambashare:101
-#, c-format
-msgid "Path"
-msgstr "المسار"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "User"
-msgstr "المستخدم"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "Group"
-msgstr "المجموعة"
-
-#: standalone/drakperm:48 standalone/drakperm:335
-#, c-format
-msgid "Permissions"
-msgstr "التصاريح"
-
-#: standalone/drakperm:57
-#, c-format
-msgid "Add a new rule"
-msgstr ""
-
-#: standalone/drakperm:64 standalone/drakperm:99 standalone/drakperm:124
-#, c-format
-msgid "Edit current rule"
-msgstr "تحرير القاعدة الحالية"
-
-#: standalone/drakperm:106
-#, c-format
-msgid ""
-"Here you can see files to use in order to fix permissions, owners, and "
-"groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
-msgstr ""
-"يمكنك هنا رؤية الملفات التي يتم استخدامها لتعديل الصلاحيات، والمالكين "
-"والمجموعات عبر msec.\n"
-"يمكنك كذلك تحرير قواعدك الخاصة التي ستُكتَب فوق القواعد الإفتراضية."
-
-#: standalone/drakperm:109
-#, c-format
-msgid ""
-"The current security level is %s.\n"
-"Select permissions to see/edit"
-msgstr ""
-"مستوى الأمن الحالي هو %s.\n"
-"اختر الصّلاحيات لترؤيتها/تحريرها"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Up"
-msgstr "للأعلى"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "نقل القاعدة المختارة للأعلى بمستوى واحد"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Down"
-msgstr "للأسفل"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "نقل القاعدة المختارة للأسفل بمستوى واحد"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a rule"
-msgstr "إضافة قاعدة"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "إضافة قاعدة جديدة في النهاية"
-
-#: standalone/drakperm:123
-#, c-format
-msgid "Delete selected rule"
-msgstr "حذف القاعدة المختارة"
-
-#: standalone/drakperm:242
-#, c-format
-msgid "browse"
-msgstr "استعراض"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "user"
-msgstr "المستخدم"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "group"
-msgstr "المجموعة"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "other"
-msgstr "الآخرون"
-
-#: standalone/drakperm:252
-#, c-format
-msgid "Read"
-msgstr "قراءة"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:255
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "السماح لـ\"%s\" بقراءة الملفّ"
-
-#: standalone/drakperm:259
-#, c-format
-msgid "Write"
-msgstr "كتابة"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:262
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "السماح لـ\"%s\" بكتابة الملفّ"
-
-#: standalone/drakperm:266
-#, c-format
-msgid "Execute"
-msgstr "تنفيذ"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:269
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "السماح لـ\"%s\" بتنفيذ الملفّ"
-
-#: standalone/drakperm:272
-#, c-format
-msgid "Sticky-bit"
-msgstr "Sticky-bit"
-
-#: standalone/drakperm:272
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"يُستخدم للدليل:\n"
-" يمكن فقط لمالك هذا الدليل أو الملف إلغاؤه"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Use owner id for execution"
-msgstr "استخدام رقم مُعرّف المالك للتنفيذ"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Use group id for execution"
-msgstr "استخدام رقم معرّف المجموعة للتنفيذ"
-
-#: standalone/drakperm:292 standalone/drakxtv:89
-#, c-format
-msgid "User:"
-msgstr "المستخدم:"
-
-#: standalone/drakperm:294
-#, c-format
-msgid "Group:"
-msgstr "المجموعة:"
-
-#: standalone/drakperm:298
-#, c-format
-msgid "Current user"
-msgstr "المستخدم الحالي"
-
-#: standalone/drakperm:299
-#, c-format
-msgid "When checked, owner and group will not be changed"
-msgstr "عند التأشير لن يتم تغيير المالك والمجموعة"
-
-#: standalone/drakperm:309
-#, c-format
-msgid "Path selection"
-msgstr "اختيار المسار"
-
-#: standalone/drakperm:329
-#, c-format
-msgid "Property"
-msgstr "الخاصية"
-
-#: standalone/drakperm:380
-#, c-format
-msgid ""
-"The first character of the path must be a slash (\"/\"):\n"
-"\"%s\""
-msgstr ""
-
-#: standalone/drakperm:390
-#, c-format
-msgid "Both the username and the group must valid!"
-msgstr ""
-
-#: standalone/drakperm:391
-#, c-format
-msgid "User: %s"
-msgstr ""
-
-#: standalone/drakperm:392
-#, c-format
-msgid "Group: %s"
-msgstr ""
-
-#: standalone/drakroam:33
-#, c-format
-msgid ""
-"You do not have any wireless interface.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakroam:48
-#, c-format
-msgid "SSID"
-msgstr ""
-
-#: standalone/drakroam:49
-#, c-format
-msgid "Signal strength"
-msgstr ""
-
-#: standalone/drakroam:51
-#, c-format
-msgid "Encryption"
-msgstr "التشفير"
-
-#: standalone/drakroam:112
-#, c-format
-msgid "Please enter settings for wireless network \"%s\""
-msgstr ""
-
-#: standalone/drakroam:123
-#, c-format
-msgid "DNS server"
-msgstr "خادم DNS"
-
-#: standalone/drakroam:228
-#, c-format
-msgid "Connect"
-msgstr "اتصل"
-
-#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/drakroam:229 standalone/printerdrake:251
-#, c-format
-msgid "Refresh"
-msgstr "إنعاش"
-
-#: standalone/draksambashare:68
-#, fuzzy, c-format
-msgid "Share directory"
-msgstr "لا دليل كذلك"
-
-#: standalone/draksambashare:69 standalone/draksambashare:102
-#, c-format
-msgid "Comment"
-msgstr "التعليق"
-
-#: standalone/draksambashare:70 standalone/draksambashare:103
-#, fuzzy, c-format
-msgid "Browseable"
-msgstr "استعراض"
-
-#: standalone/draksambashare:71
-#, c-format
-msgid "Public"
-msgstr "عام"
-
-#: standalone/draksambashare:72 standalone/draksambashare:108
-#, c-format
-msgid "Writable"
-msgstr "قابل للكتابة"
-
-#: standalone/draksambashare:73 standalone/draksambashare:149
-#, fuzzy, c-format
-msgid "Create mask"
-msgstr "إنشاء"
-
-#: standalone/draksambashare:74 standalone/draksambashare:150
-#, fuzzy, c-format
-msgid "Directory mask"
-msgstr "الدّليل المحتوي على النّسخ الاحتياطيّة"
-
-#: standalone/draksambashare:75
-#, fuzzy, c-format
-msgid "Read list"
-msgstr "قراءة"
-
-#: standalone/draksambashare:76 standalone/draksambashare:109
-#: standalone/draksambashare:606
-#, fuzzy, c-format
-msgid "Write list"
-msgstr "كتابة"
-
-#: standalone/draksambashare:77 standalone/draksambashare:141
-#, fuzzy, c-format
-msgid "Admin users"
-msgstr "إضافة مستخدم"
-
-#: standalone/draksambashare:78 standalone/draksambashare:142
-#, fuzzy, c-format
-msgid "Valid users"
-msgstr "إضافة مستخدم"
-
-#: standalone/draksambashare:79
-#, fuzzy, c-format
-msgid "Inherit Permissions"
-msgstr "التصاريح"
-
-#: standalone/draksambashare:80 standalone/draksambashare:143
-#, fuzzy, c-format
-msgid "Hide dot files"
-msgstr "تخبئة الملفات"
-
-#: standalone/draksambashare:82 standalone/draksambashare:148
-#, fuzzy, c-format
-msgid "Preserve case"
-msgstr "تفضيلات"
-
-#: standalone/draksambashare:83
-#, fuzzy, c-format
-msgid "Force create mode"
-msgstr "طراز الطابعة الخاصة بك"
-
-#: standalone/draksambashare:84
-#, fuzzy, c-format
-msgid "Force group"
-msgstr "مجموعة PFS"
-
-#: standalone/draksambashare:85 standalone/draksambashare:147
-#, fuzzy, c-format
-msgid "Default case"
-msgstr "المستخدم الإفتراضي"
-
-#: standalone/draksambashare:100
-#, c-format
-msgid "Printer name"
-msgstr ""
-
-#: standalone/draksambashare:104 standalone/draksambashare:598
-#, c-format
-msgid "Printable"
-msgstr ""
-
-#: standalone/draksambashare:105
-#, c-format
-msgid "Print Command"
-msgstr ""
-
-#: standalone/draksambashare:106
-#, c-format
-msgid "LPQ command"
-msgstr ""
-
-#: standalone/draksambashare:107
-#, c-format
-msgid "Guest ok"
-msgstr ""
-
-#: standalone/draksambashare:110 standalone/draksambashare:151
-#: standalone/draksambashare:607
-#, fuzzy, c-format
-msgid "Inherit permissions"
-msgstr "التصاريح"
-
-#: standalone/draksambashare:112
-#, c-format
-msgid "Create mode"
-msgstr ""
-
-#: standalone/draksambashare:113
-#, c-format
-msgid "Use client driver"
-msgstr ""
-
-#: standalone/draksambashare:139
-#, fuzzy, c-format
-msgid "Read List"
-msgstr "حذف القائمة"
-
-#: standalone/draksambashare:140
-#, fuzzy, c-format
-msgid "Write List"
-msgstr "كتابة"
-
-#: standalone/draksambashare:145
-#, fuzzy, c-format
-msgid "Force Group"
-msgstr "المجموعة"
-
-#: standalone/draksambashare:146
-#, c-format
-msgid "Force create group"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid "About Draksambashare"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid ""
-"Mandriva Linux \n"
-"Release: %s\n"
-"Author: Antoine Ginies\n"
-"\n"
-"This is a simple tool to easily manage Samba configuration."
-msgstr ""
-
-#: standalone/draksambashare:186
-#, fuzzy, c-format
-msgid "Samba server"
-msgstr "خادم سامبا"
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Restarting/Reloading Samba server..."
-msgstr ""
-
-#: standalone/draksambashare:187
-#, c-format
-msgid "Error Restarting/Reloading Samba server"
-msgstr ""
-
-#: standalone/draksambashare:372
-#, c-format
-msgid "Add a Samba share"
-msgstr ""
-
-#: standalone/draksambashare:375
-#, c-format
-msgid "Goal of this wizard is to easily create a new Samba share."
-msgstr ""
-
-#: standalone/draksambashare:377
-#, fuzzy, c-format
-msgid "Name of the share:"
-msgstr "اسم الشّهادة"
-
-#: standalone/draksambashare:378 standalone/draksambashare:591
-#: standalone/draksambashare:772
-#, c-format
-msgid "Comment:"
-msgstr "التعليق:"
-
-#: standalone/draksambashare:379
-#, c-format
-msgid "Path:"
-msgstr "المسار:"
-
-#: standalone/draksambashare:384
-#, c-format
-msgid ""
-"Share with the same name already exist or share name empty, please choose "
-"another name."
-msgstr ""
-
-#: standalone/draksambashare:388 standalone/draksambashare:394
-#, c-format
-msgid "Can't create the directory, please enter a correct path."
-msgstr ""
-
-#: standalone/draksambashare:391 standalone/draksambashare:627
-#: standalone/draksambashare:794
-#, fuzzy, c-format
-msgid "Please enter a Comment for this share."
-msgstr "الرجاء إدخال مُعطيات اللاسلكيّة لهذه البطاقة:"
-
-#: standalone/draksambashare:422
-#, c-format
-msgid ""
-"The wizard successfully added the Samba share. Now just double click on it "
-"in treeview to modify it"
-msgstr ""
-
-#: standalone/draksambashare:437
-#, c-format
-msgid "pdf-gen - a PDF generator"
-msgstr ""
-
-#: standalone/draksambashare:438
-#, c-format
-msgid "printers - all printers available"
-msgstr ""
-
-#: standalone/draksambashare:442
-#, c-format
-msgid "Add Special Printer share"
-msgstr ""
-
-#: standalone/draksambashare:445
-#, c-format
-msgid ""
-"Goal of this wizard is to easily create a new special printer Samba share."
-msgstr ""
-
-#: standalone/draksambashare:453
-#, c-format
-msgid "A PDF generator already exists."
-msgstr ""
-
-#: standalone/draksambashare:477
-#, c-format
-msgid "Printers and print$ already exist."
-msgstr ""
-
-#: standalone/draksambashare:528
-#, c-format
-msgid "The wizard successfully added the printer Samba share"
-msgstr ""
-
-#: standalone/draksambashare:551
-#, c-format
-msgid "Please add or select a Samba printer share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:587
-#, c-format
-msgid "Printer share"
-msgstr ""
-
-#: standalone/draksambashare:590
-#, c-format
-msgid "Printer name:"
-msgstr "اسم الطابعة:"
-
-#: standalone/draksambashare:596 standalone/draksambashare:777
-#, fuzzy, c-format
-msgid "Writable:"
-msgstr "كتابة"
-
-#: standalone/draksambashare:597 standalone/draksambashare:778
-#, fuzzy, c-format
-msgid "Browseable:"
-msgstr "استعراض"
-
-#: standalone/draksambashare:602
-#, c-format
-msgid "Advanced options"
-msgstr "خيارات متقدمة"
-
-#: standalone/draksambashare:604
-#, c-format
-msgid "Printer access"
-msgstr ""
-
-#: standalone/draksambashare:608
-#, c-format
-msgid "Guest ok:"
-msgstr ""
-
-#: standalone/draksambashare:609
-#, c-format
-msgid "Create mode:"
-msgstr ""
-
-#: standalone/draksambashare:613
-#, c-format
-msgid "Printer command"
-msgstr ""
-
-#: standalone/draksambashare:615
-#, c-format
-msgid "Print command:"
-msgstr ""
-
-#: standalone/draksambashare:616
-#, c-format
-msgid "LPQ command:"
-msgstr ""
-
-#: standalone/draksambashare:617
-#, c-format
-msgid "Printing:"
-msgstr ""
-
-#: standalone/draksambashare:633
-#, c-format
-msgid "create mode should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:695
-#, c-format
-msgid "DrakSamba entry"
-msgstr ""
+msgid "All servers"
+msgstr "إضافة خادم"
-#: standalone/draksambashare:700
+#: timezone.pm:183
#, c-format
-msgid "Please add or select a Samba share to be able to modify it."
+msgid "Global"
msgstr ""
-#: standalone/draksambashare:723
-#, fuzzy, c-format
-msgid "Samba user access"
-msgstr "خادم سامبا"
-
-#: standalone/draksambashare:731
-#, fuzzy, c-format
-msgid "Mask options"
-msgstr "الخيارات الأساسية"
-
-#: standalone/draksambashare:745
-#, fuzzy, c-format
-msgid "Display options"
-msgstr "حدد الخيارات"
-
-#: standalone/draksambashare:767
+#: timezone.pm:186
#, fuzzy, c-format
-msgid "Samba share directory"
-msgstr "لا دليل كذلك"
-
-#: standalone/draksambashare:770
-#, fuzzy, c-format
-msgid "Share name:"
-msgstr "اسم المشاركة"
-
-#: standalone/draksambashare:776
-#, c-format
-msgid "Public:"
-msgstr ""
-
-#: standalone/draksambashare:800
-#, c-format
-msgid ""
-"Create mask, create mode and directory mask should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:807
-#, c-format
-msgid "Please create this Samba user: %s"
-msgstr ""
-
-#: standalone/draksambashare:930
-#, c-format
-msgid "User information"
-msgstr ""
-
-#: standalone/draksambashare:932
-#, c-format
-msgid "User name:"
-msgstr ""
-
-#: standalone/draksambashare:933
-#, c-format
-msgid "Password:"
-msgstr "كلمة المرور:"
-
-#: standalone/draksambashare:1133
-#, c-format
-msgid "Failed to add Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1142
-#, c-format
-msgid "Failed to Modify Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1151
-#, c-format
-msgid "Failed to remove a Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1158
-#, c-format
-msgid "File share"
-msgstr ""
-
-#: standalone/draksambashare:1166
-#, c-format
-msgid "Add printers"
-msgstr ""
-
-#: standalone/draksambashare:1172
-#, c-format
-msgid "Failed to add printers."
-msgstr ""
-
-#: standalone/draksambashare:1181
-#, c-format
-msgid "Failed to Modify."
-msgstr ""
-
-#: standalone/draksambashare:1190
-#, c-format
-msgid "Failed to remove."
-msgstr ""
-
-#: standalone/draksambashare:1197
-#, c-format
-msgid "Printers"
-msgstr "طابعات"
-
-#: standalone/draksambashare:1205
-#, c-format
-msgid "Change password"
-msgstr ""
-
-#: standalone/draksambashare:1210
-#, c-format
-msgid "Failed to change user password."
-msgstr ""
-
-#: standalone/draksambashare:1218
-#, c-format
-msgid "Failed to add user."
-msgstr ""
-
-#: standalone/draksambashare:1221
-#, c-format
-msgid "Delete user"
-msgstr ""
-
-#: standalone/draksambashare:1230
-#, c-format
-msgid "Failed to delete user."
-msgstr ""
-
-#: standalone/draksambashare:1242
-#, c-format
-msgid "Samba Users"
-msgstr ""
-
-#: standalone/draksambashare:1251
-#, c-format
-msgid "DrakSamba manage Samba shares"
-msgstr ""
-
-#: standalone/draksec:49
-#, c-format
-msgid "ALL"
-msgstr "الكلّ"
-
-#: standalone/draksec:50
-#, c-format
-msgid "LOCAL"
-msgstr "LOCAL"
-
-#: standalone/draksec:51
-#, c-format
-msgid "NONE"
-msgstr "لاشيء"
-
-#: standalone/draksec:53 standalone/net_applet:480
-#, c-format
-msgid "Ignore"
-msgstr "تجاهل"
-
-#. -PO: Do not alter the <span ..> and </span> tags.
-#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
-#: standalone/draksec:103
-#, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Administrator</span>' is the one who "
-"will receive security alerts if the\n"
-"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a "
-"username or an email.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Level</span>' menu allows you to select "
-"one of the six preconfigured security levels\n"
-"provided with msec. These levels range from '<span weight=\"bold\">poor</"
-"span>' security and ease of use, to\n"
-"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive "
-"server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
-"very\n"
-"easy to use security level. It should only be used for machines not "
-"connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
-"security\n"
-"recommended for a computer that will be used to connect to the Internet as "
-"a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
-"enough\n"
-"to use the system as a server which can accept connections from many "
-"clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower "
-"level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-"هنا، يمكن إعداد مستوى ومدير الأمن لنظامك.\n"
-"\n"
-"\n"
-"'<span weight=\"bold\">مدير الأمن</span>' هو الذي سوف يستقبل إنذارات الأمن "
-"إن كان خيار\n"
-"'<span weight=\"bold\">إنذارات الأمن</span>'محدّداً. يمكن أن يكون ذلك اسم "
-"مستخدم أو بريد إلكترونيّ.\n"
-"\n"
-"\n"
-"قائمة '<span weight=\"bold\">مستوى الأمن</span>'تمكّنك من تحديد واحد من الستّة "
-"مستويات المعدّة مسبقاً للأمن\n"
-"والمُوفَّرة من msec. مدى المستويات هذه يبدأ من الأمن '<span weight=\"bold"
-"\">ضعيف</span>' وسهولة الاستخدام، وصولاً\n"
-"للتهيئة '<span weight=\"bold\">مذعور</span>'المناسبة لتطبيقات الخادم الحسّاسة "
-"جدّاً:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">بسيط</span>: هذا المستوى غير آمن إطلاقاً\n"
-"ولكنّه مستوى أمن سهل الاستخدام جداً. يجب استخدامه فقط للماكينات الغير متّصلة "
-"بأي\n"
-"شبكة وغير ممكنة الوصول للجميع.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">قياسي</span>:هذا هو الأمن القياسي\n"
-"الموصى به لحاسب سوف يستخدم للاتّصال بالإنترنت كعميل.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">مرتفع</span>: الأمن الآن مرتفع بشكل كافٍ\n"
-"لاستخدام النظام كخادم يمكنه قبول الاتصالات من العملاء. إن\n"
-"كانت ماكينتك مجرد عميل للإنترنت، عليك باختيار مستوى أقل.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">مذعور</span>: هذا المستوى شبيه بالمستوى "
-"السّابق،\n"
-"إلا أنّ النّظام مقفل بالكامل ومزايا الأمن محدّدة على\n"
-"أقصاها "
-
-#: standalone/draksec:156 standalone/harddrake2:207
-#, c-format
-msgid ""
-"Description of the fields:\n"
-"\n"
-msgstr ""
-"وصف الحقول:\n"
-"\n"
-
-#: standalone/draksec:170
-#, c-format
-msgid "(default value: %s)"
-msgstr "(القيمة الإفتراضية: %s)"
-
-#: standalone/draksec:212
-#, c-format
-msgid "Security Level:"
-msgstr "مستوى الأمن:"
-
-#: standalone/draksec:219
-#, c-format
-msgid "Security Administrator:"
-msgstr "مدير الأمن:"
-
-#: standalone/draksec:221
-#, c-format
-msgid "Basic options"
-msgstr "الخيارات الأساسية"
-
-#: standalone/draksec:235
-#, c-format
-msgid "Network Options"
-msgstr "خيارات الشبكة"
-
-#: standalone/draksec:235
-#, c-format
-msgid "System Options"
-msgstr "خيارات النظام"
-
-#: standalone/draksec:270
-#, c-format
-msgid "Periodic Checks"
-msgstr "تحقّق دَوْري"
-
-#: standalone/draksec:300
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "الرجاء الانتظار، تعيين مستوى الأمن.."
-
-#: standalone/draksec:306
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "الرجاء الانتظار، تعيين خيارات الأمن..."
-
-#: standalone/draksound:47
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "لم يتم اختيار بطاقة صوت"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/draksound:50
-#, c-format
-msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"تعذر العثور على بطاقة صوت على جهازك. الرجاء التأكّد من أن بطاقة الصوت "
-"المدعومة من لينكس موصولة بشكل صحيح.\n"
-"\n"
-"\n"
-"يمكنك زيارة قاعدة بيانات العتاد المدعوم الخاصة بنا على:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/draksound:57
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or "
-"the sndconfig program. Just type \"alsaconf\" or \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"ملحوظة: إذا كانت لديك بطاقة صوت ISA PnP، ستحتاج إلى استخدام برنامج alsaconf "
-"أو برنامج sndconfig. فقط اكتب \"alsaconf\" أو \"sndconfig\" في سطر الأوامر."
-
-#: standalone/draksplash:30
-#, c-format
-msgid "x coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:31
-#, c-format
-msgid "y coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:32
-#, c-format
-msgid "text box width"
-msgstr ""
-
-#: standalone/draksplash:33
-#, c-format
-msgid "text box height"
-msgstr "ارتفاع مربّع النص"
-
-#: standalone/draksplash:34
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"الإحداثي السيني للركن الأيسر الأعلى\n"
-"لشريط التقدم"
-
-#: standalone/draksplash:35
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-"الإحداثي الصادي للركن الأيسر الأعلى\n"
-"لشريط التقدم"
-
-#: standalone/draksplash:36
-#, c-format
-msgid "the width of the progress bar"
-msgstr "عرض شريط التقدم"
-
-#: standalone/draksplash:37
-#, c-format
-msgid "the height of the progress bar"
-msgstr "ارتفاع شريط التقدم"
-
-#: standalone/draksplash:38
-#, c-format
-msgid "x coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:39
-#, c-format
-msgid "y coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:40
-#, c-format
-msgid "text box transparency"
-msgstr ""
-
-#: standalone/draksplash:41
-#, c-format
-msgid "progress box transparency"
-msgstr ""
-
-#: standalone/draksplash:42
-#, c-format
-msgid "text size"
-msgstr ""
-
-#: standalone/draksplash:59
-#, c-format
-msgid "Choose progress bar color 1"
-msgstr ""
-
-#: standalone/draksplash:60
-#, c-format
-msgid "Choose progress bar color 2"
-msgstr ""
-
-#: standalone/draksplash:61
-#, c-format
-msgid "Choose progress bar background"
-msgstr ""
-
-#: standalone/draksplash:62
-#, c-format
-msgid "Gradient type"
-msgstr ""
-
-#: standalone/draksplash:63
-#, c-format
-msgid "Choose text color"
-msgstr ""
-
-#: standalone/draksplash:65 standalone/draksplash:72
-#, c-format
-msgid "Choose picture"
-msgstr ""
-
-#: standalone/draksplash:66
-#, c-format
-msgid "Silent bootsplash"
-msgstr ""
-
-#: standalone/draksplash:69
-#, c-format
-msgid "Choose text zone color"
-msgstr ""
-
-#: standalone/draksplash:70
-#, c-format
-msgid "Text color"
-msgstr "لون النص"
-
-#: standalone/draksplash:71
-#, c-format
-msgid "Background color"
-msgstr "لون الخلفية:"
-
-#: standalone/draksplash:73
-#, c-format
-msgid "Verbose bootsplash"
-msgstr ""
-
-#: standalone/draksplash:75
-#, c-format
-msgid "Display logo on Console"
-msgstr "إظهار الشعار في سطر الأوامر"
-
-#: standalone/draksplash:78
-#, c-format
-msgid "Console bootsplash"
-msgstr ""
-
-#: standalone/draksplash:84
-#, c-format
-msgid "Theme name"
-msgstr "اسم السمة"
-
-#: standalone/draksplash:87
-#, c-format
-msgid "final resolution"
-msgstr "الاستبانة النهائية"
-
-#: standalone/draksplash:92
-#, c-format
-msgid "Save theme"
-msgstr "حفظ السمة"
-
-#: standalone/draksplash:153
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "جاري حفظ سمة Bootsplash..."
-
-#: standalone/draksplash:162
-#, c-format
-msgid "Unable to load image file %s"
-msgstr ""
-
-#: standalone/draksplash:173
-#, c-format
-msgid "choose image"
-msgstr "اختيار صورة"
-
-#: standalone/draksplash:188
-#, c-format
-msgid "Color selection"
-msgstr ""
-
-#: standalone/drakups:71
-#, c-format
-msgid "Connected through a serial port or an usb cable"
-msgstr "متّصل عبر المنفذ التسلسلي أو شريط usb"
-
-#: standalone/drakups:78
-#, c-format
-msgid "Add an UPS device"
-msgstr "إضافة جهاز UPS"
-
-#: standalone/drakups:81
-#, c-format
-msgid ""
-"Welcome to the UPS configuration utility.\n"
-"\n"
-"Here, you'll add a new UPS to your system.\n"
-msgstr ""
-"أهلا بك في أداة تهيئة مزوّد الطّاقة الغير منقطعة (UPS).\n"
-"\n"
-"هنا، سوف تقوم بإضافة مزوّد طاقة غير منقطة جديد إلى نظامك.\n"
-
-#: standalone/drakups:88
-#, c-format
-msgid ""
-"We're going to add an UPS device.\n"
-"\n"
-"Do you want to autodetect UPS devices connected to this machine or to "
-"manually select them?"
-msgstr ""
-"سوف نقوم بإضافة جهاز UPS.\n"
-"\n"
-"هل تفضّل استكشاف أجهزة UPS المتّصلة بهذا الجهاز آلياً أم تريد اختيارها يدويا؟"
-
-#: standalone/drakups:91
-#, c-format
-msgid "Autodetection"
-msgstr "كشف آلي"
-
-#: standalone/drakups:99 standalone/harddrake2:375
-#, c-format
-msgid "Detection in progress"
-msgstr "جاري التحقّق"
-
-#: standalone/drakups:119
-#, c-format
-msgid "The wizard successfully added the following UPS devices:"
-msgstr "قام المرشد بإضافة أجهزة UPS التّالية بنجاح:"
-
-#
-#: standalone/drakups:121
-#, c-format
-msgid "No new UPS devices was found"
-msgstr "لم يتمّ العثور على أجهزة UPS جديدة"
-
-#: standalone/drakups:126 standalone/drakups:138
-#, c-format
-msgid "UPS driver configuration"
-msgstr "تهيئة مُشغّل الـUPS"
-
-#: standalone/drakups:126
-#, c-format
-msgid "Please select your UPS model."
-msgstr "الرجاء اختيار طراز الـ UPS الخاصّ بك."
-
-#: standalone/drakups:127
-#, c-format
-msgid "Manufacturer / Model:"
-msgstr "الصانع / الطراز:"
-
-#: standalone/drakups:138
-#, c-format
-msgid ""
-"We are configuring the \"%s\" UPS from \"%s\".\n"
-"Please fill in its name, its driver and its port."
-msgstr ""
-"نقوم بتهيئة مزوّد الطاقة الغير منقطعة \"%s\" من \"%s\".\n"
-"الرجاء إدخال اسمه، ومشغّله ومنفذه."
-
-#: standalone/drakups:143
-#, c-format
-msgid "Name:"
-msgstr "الإسم:"
-
-#: standalone/drakups:143
-#, c-format
-msgid "The name of your ups"
-msgstr "إسم الـ ups الخاصّ بك"
-
-#: standalone/drakups:144
-#, c-format
-msgid "The driver that manages your ups"
-msgstr "إسم المشغّل المدير لجهاز ups الخاصّ بك"
-
-#: standalone/drakups:145
-#, c-format
-msgid "Port:"
-msgstr "المنفذ:"
-
-#: standalone/drakups:147
-#, c-format
-msgid "The port on which is connected your ups"
-msgstr "المنفذ الّذي يتّصل عليه ups الخاصّ بك"
-
-#: standalone/drakups:157
-#, c-format
-msgid "The wizard successfully configured the new \"%s\" UPS device."
-msgstr "قام المرشد بتهيئة جهاز UPS \"%s\" الجديد بنجاح."
-
-#: standalone/drakups:248
-#, c-format
-msgid "UPS devices"
-msgstr "أجهزة UPS"
-
-#: standalone/drakups:249 standalone/drakups:268 standalone/drakups:284
-#: standalone/harddrake2:85 standalone/harddrake2:111
-#: standalone/harddrake2:118
-#, c-format
-msgid "Name"
-msgstr "الاسم"
-
-#: standalone/drakups:267
-#, c-format
-msgid "UPS users"
-msgstr "مستخدمو UPS"
-
-#: standalone/drakups:283
-#, c-format
-msgid "Access Control Lists"
-msgstr "قوائم التحكّم بالوصول"
-
-#: standalone/drakups:284
-#, c-format
-msgid "IP mask"
-msgstr "قناع IP"
-
-#: standalone/drakups:296
-#, c-format
-msgid "Rules"
-msgstr "القواعد"
-
-#: standalone/drakups:297
-#, c-format
-msgid "Action"
-msgstr "فعل"
-
-#: standalone/drakups:297 standalone/drakvpn:1132 standalone/harddrake2:82
-#, c-format
-msgid "Level"
-msgstr "المستوى"
-
-#: standalone/drakups:297
-#, c-format
-msgid "ACL name"
-msgstr "إسم ACL"
-
-# U+200F (RTL mark) has been inserted between "Dvorak" and "(US)", so
-# it displays on screen as "(US) Dvorak", following the same schema
-# as others "Dvorak (xxxx)" with xxx in Arabic that display as "(xxxx) Dvorak"
-# that way the entry is also listed together with the other "Dvorak" entries.
-#: standalone/drakups:327 standalone/drakups:331 standalone/drakups:340
-#, c-format
-msgid "DrakUPS"
-msgstr "DrakUPS"
-
-#: standalone/drakups:337
-#, c-format
-msgid "Welcome to the UPS configuration tools"
-msgstr "مرحبا في أدوات تهيئة UPS"
-
-# U+200F (RTL mark) has been inserted between "Dvorak" and "(US)", so
-# it displays on screen as "(US) Dvorak", following the same schema
-# as others "Dvorak (xxxx)" with xxx in Arabic that display as "(xxxx) Dvorak"
-# that way the entry is also listed together with the other "Dvorak" entries.
-#: standalone/drakvpn:73
-#, c-format
-msgid "DrakVPN"
-msgstr "DrakVPN"
-
-#: standalone/drakvpn:95
-#, c-format
-msgid "The VPN connection is enabled."
-msgstr "اتّصال VPN مُمكّن."
-
-#: standalone/drakvpn:96
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"لقد تمّ إعداد اتّصال VPN مسبقاً.\n"
-"\n"
-"إنّه ممكّن حاليّاً.\n"
-"\n"
-"ما الذي ترغب بعمله؟"
-
-#: standalone/drakvpn:101
-#, c-format
-msgid "disable"
-msgstr "تعطيل"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127
-#, c-format
-msgid "reconfigure"
-msgstr "إعادة التهيئة"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127 standalone/drakvpn:362
-#: standalone/drakvpn:721
-#, c-format
-msgid "dismiss"
-msgstr "صَرْف"
-
-#: standalone/drakvpn:105
-#, c-format
-msgid "Disabling VPN..."
-msgstr "جاري تعطيل VPN..."
-
-#: standalone/drakvpn:114
-#, c-format
-msgid "The VPN connection is now disabled."
-msgstr "تمّ الآن تعطيل اتّصال VPN."
-
-#: standalone/drakvpn:121
-#, c-format
-msgid "VPN connection currently disabled"
-msgstr "اتصال VPN مُعطّل حاليّاً"
-
-#: standalone/drakvpn:122
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"لقد تمّ إعداد اتّصال VPN مسبقاً.\n"
-"\n"
-"إنّه معطّل حاليّاً.\n"
-"\n"
-"ما الذي ترغب بعمله؟"
-
-#: standalone/drakvpn:127
-#, c-format
-msgid "enable"
-msgstr "تمكين"
-
-#: standalone/drakvpn:135
-#, c-format
-msgid "Enabling VPN..."
-msgstr "جاري تمكين VPN..."
-
-#: standalone/drakvpn:141
-#, c-format
-msgid "The VPN connection is now enabled."
-msgstr "تمّ الآن تمكين اتّصال VPN."
-
-#: standalone/drakvpn:155 standalone/drakvpn:183
-#, c-format
-msgid "Simple VPN setup."
-msgstr "إعداد VPN بسيط."
-
-#: standalone/drakvpn:156
-#, c-format
-msgid ""
-"You are about to configure your computer to use a VPN connection.\n"
-"\n"
-"With this feature, computers on your local private network and computers\n"
-"on some other remote private networks, can share resources, through\n"
-"their respective firewalls, over the Internet, in a secure manner. \n"
-"\n"
-"The communication over the Internet is encrypted. The local and remote\n"
-"computers look as if they were on the same network.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using\n"
-"drakconnect before going any further."
-msgstr ""
-"أنت على وشك تهيئة حاسبك لاستخدام اتّصال VPN.\n"
-"\n"
-"بهذه الميزة، يمكن للحواسيب على الشّبكة المحليّة الخاصّة والحاسبات\n"
-"على شبكة بعيدة خاصّة ما، يمكنها مشاطرة الموارد، خلال\n"
-"الجدر الناريّة الخاصّة بهم، عبر الإنترنت، بطريقة آمنة. \n"
-"\n"
-"الاتصال عبر الإنترنت مشفّر. الحاسبات المحليّة والبعيدة\n"
-"تبدو كأنّها على نفس الشّبكة.\n"
-"\n"
-"تأكّد من أنّك قمت بتهيئة شبكتك/واتصال الانترنت باستخدام\n"
-"drakconnect قبل الاستمرار."
-
-#: standalone/drakvpn:184
-#, c-format
-msgid ""
-"VPN connection.\n"
-"\n"
-"This program is based on the following projects:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - the docs and man pages coming with the %s package\n"
-"\n"
-"Please read AT LEAST the ipsec-howto docs\n"
-"before going any further."
-msgstr ""
-"اتّصال VPN.\n"
-"\n"
-"هذا البرنامج مبنيّ على المشاريع التّالية:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - المستندات وصفحات الدّليل الآتية مع الحزمة %s\n"
-"\n"
-"رجاء اقرأ على الأقل مستندات ipsec-howto\n"
-"قبل الشّروع بالعمل."
-
-#: standalone/drakvpn:196
-#, c-format
-msgid "Kernel module."
-msgstr "وحدة النّواة."
-
-#: standalone/drakvpn:197
-#, c-format
-msgid ""
-"The kernel needs to have ipsec support.\n"
-"\n"
-"You're running a %s kernel version.\n"
-"\n"
-"This kernel has '%s' support."
-msgstr ""
-"يجب أن تحتوي النّواة دعم ipsec.\n"
-"\n"
-"أنت تستخدم نسخة نواة %s.\n"
-"\n"
-"تحتوي هذه النّواة على دعم '%s'."
-
-#: standalone/drakvpn:264
-#, c-format
-msgid "Problems installing package %s"
-msgstr "كانت هناك مشاكل في تثبيت الحزمة %s"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "Security Policies"
-msgstr "سياسات الأمن"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "IKE daemon racoon"
-msgstr "racoon عفريت IKE"
-
-#: standalone/drakvpn:281 standalone/drakvpn:292
-#, c-format
-msgid "Configuration file"
-msgstr "ملف التهيئة"
-
-#: standalone/drakvpn:282
-#, c-format
-msgid ""
-"Configuration step!\n"
-"\n"
-"You need to define the Security Policies and then to \n"
-"configure the automatic key exchange (IKE) daemon. \n"
-"The KAME IKE daemon we're using is called 'racoon'.\n"
-"\n"
-"What would you like to configure?\n"
-msgstr ""
-"خطوة التّهيئة!\n"
-"\n"
-"تحتاج إلى تعريف سياسات الأمن ومن ثمّ\n"
-"تهيئة خدمة تبادل المفتاح الآلى (IKE). \n"
-"خدمة KAME IKE التي نستخدمها تسمّى 'racoon'.\n"
-"\n"
-"ما الذي تودّ تهيئته؟\n"
-
-#: standalone/drakvpn:293
-#, c-format
-msgid ""
-"Next, we will configure the %s file.\n"
-"\n"
-"\n"
-"Simply click on Next.\n"
-msgstr ""
-"بعد ذلك، سوف نهيئ الملفّ %s.\n"
-"\n"
-"\n"
-"ببساطة اضغط على تالي.\n"
-
-#: standalone/drakvpn:311 standalone/drakvpn:671
-#, c-format
-msgid "%s entries"
-msgstr "مُدخلات %s"
-
-#: standalone/drakvpn:312
-#, c-format
-msgid ""
-"The %s file contents\n"
-"is divided into sections.\n"
-"\n"
-"You can now:\n"
-"\n"
-" - display, add, edit, or remove sections, then\n"
-" - commit the changes\n"
-"\n"
-"What would you like to do?\n"
-msgstr ""
-"محتويات الملفّ %s\n"
-"مقسّمة إلى أقسام.\n"
-"\n"
-"يمكنك الآن :\n"
-"\n"
-" - display عرض، add إضافة، edit تحرير ، أو remove إزالة الأقسام، ثم\n"
-" - commit تسجيل التغييرات\n"
-"ماذا تودّ أن تفعل؟\n"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display"
-msgstr "عرض"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid "Commit"
-msgstr "تنفيذ"
-
-#: standalone/drakvpn:333 standalone/drakvpn:337 standalone/drakvpn:695
-#: standalone/drakvpn:699
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display configuration"
-msgstr "عرض التهيئة"
-
-#: standalone/drakvpn:338
-#, c-format
-msgid ""
-"The %s file does not exist.\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose 'add'.\n"
-msgstr ""
-"الملفّ %s غير موجود.\n"
-"\n"
-"لا بدّ أنّ هذه تهيئة جديدة.\n"
-"\n"
-"عليك أن تعود وتختار `إضافة`.\n"
-
-#: standalone/drakvpn:354
-#, c-format
-msgid "ipsec.conf entries"
-msgstr "مدخلات ipsec.conf"
-
-#: standalone/drakvpn:355
-#, c-format
-msgid ""
-"The %s file contains different sections.\n"
-"\n"
-"Here is its skeleton:\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"You can now add one of these sections.\n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-"يحتوي ملفّ %s أقساماً متعدّدة.\n"
-"\n"
-"ها هو هيكله:\t`إعداد التّهيئة` \n"
-"\t\t\t\t\t`الاتصال الافتراضي` \n"
-"\t\t\t\t\t'عادي1'\n"
-"\t\t\t\t\t'عادي2' \n"
-"\n"
-"يمكنك الآن إضافة واحد من هذه الأقسام.\n"
-"\n"
-"اختر القسم الذي تودّ إضافته.\n"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "config setup"
-msgstr "config setup"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "conn %default"
-msgstr "conn %default"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "normal conn"
-msgstr "normal conn"
-
-#: standalone/drakvpn:368 standalone/drakvpn:409 standalone/drakvpn:496
-#, c-format
-msgid "Exists!"
-msgstr "موجود!"
-
-#: standalone/drakvpn:369 standalone/drakvpn:410
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change its name.\n"
-msgstr ""
-"هناك قسم له نفس هذا الاسم موجود مسبقاً.\n"
-"يجب أن تكون أسماء الأقسام مميّزة.\n"
-"\n"
-"عليك العودة وإضافة قسم آخر\n"
-"أو تغيير اسم القسم.\n"
-
-#: standalone/drakvpn:386
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow this config\n"
-"setup section.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"يجب أن يكون هذا القسم في أعلى\n"
-"ملفّ %s الخاصّ بك.\n"
-"\n"
-"تأكّد من أنّ كلّ الأقسام تتّبع\n"
-"قسم إعداد التّهيئة هذا.\n"
-"\n"
-"اختر الاستمرار أو السّابق عندما تنتهي.\n"
-
-#: standalone/drakvpn:391
-#, c-format
-msgid "interfaces"
-msgstr "interfaces"
-
-#: standalone/drakvpn:392
-#, c-format
-msgid "klipsdebug"
-msgstr "klipsdebug"
-
-#: standalone/drakvpn:393
-#, c-format
-msgid "plutodebug"
-msgstr "plutodebug"
-
-#: standalone/drakvpn:394
-#, c-format
-msgid "plutoload"
-msgstr "plutoload"
-
-#: standalone/drakvpn:395
-#, c-format
-msgid "plutostart"
-msgstr "plutostart"
-
-#: standalone/drakvpn:396
-#, c-format
-msgid "uniqueids"
-msgstr "uniqueids"
-
-#: standalone/drakvpn:430
-#, c-format
-msgid ""
-"This is the first section after the config\n"
-"setup one.\n"
-"\n"
-"Here you define the default settings. \n"
-"All the other sections will follow this one.\n"
-"The left settings are optional. If do not define\n"
-"them here, globally, you can define them in each\n"
-"section.\n"
-msgstr ""
-"هذا هو القسم الأول بعد\n"
-"قسم إعداد التّهيئة.\n"
-"\n"
-"هنا تحدّد الإعدادت الافتراضيّة. \n"
-"ستتّبع كلّ الأقسام الأخرى هذا القسم.\n"
-"الإعدادات إلى اليسار اختياريّة. إن لم تعرّفها\n"
-"هنا، بشكل عامّ، يمكنك تعريفها في كلّ\n"
-"قسم.\n"
-
-#: standalone/drakvpn:437
-#, c-format
-msgid "PFS"
-msgstr "PFS"
-
-#: standalone/drakvpn:438
-#, c-format
-msgid "keyingtries"
-msgstr "keyingtries"
-
-#: standalone/drakvpn:439
-#, c-format
-msgid "compress"
-msgstr "compress"
-
-#: standalone/drakvpn:440
-#, c-format
-msgid "disablearrivalcheck"
-msgstr "disablearrivalcheck"
-
-#: standalone/drakvpn:441 standalone/drakvpn:480
-#, c-format
-msgid "left"
-msgstr "left"
-
-#: standalone/drakvpn:442 standalone/drakvpn:481
-#, c-format
-msgid "leftcert"
-msgstr "leftcert"
-
-#: standalone/drakvpn:443 standalone/drakvpn:482
-#, c-format
-msgid "leftrsasigkey"
-msgstr "leftrsasigkey"
-
-#: standalone/drakvpn:444 standalone/drakvpn:483
-#, c-format
-msgid "leftsubnet"
-msgstr "leftsubnet"
-
-#: standalone/drakvpn:445 standalone/drakvpn:484
-#, c-format
-msgid "leftnexthop"
-msgstr "leftnexthop"
-
-#: standalone/drakvpn:474
-#, c-format
-msgid ""
-"Your %s file has several sections, or connections.\n"
-"\n"
-"You can now add a new section.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"يحتوي ملف %s الخاصّ بك عدّة أقسام، أو اتّصالات.\n"
-"\n"
-"يمكنك الآن إضافة قسم جديد.\n"
-"\n"
-"اختر الاستمرار عندما تنتهي لكتابة البيانات.\n"
-
-#: standalone/drakvpn:477
-#, c-format
-msgid "section name"
-msgstr "section name"
-
-#: standalone/drakvpn:478
-#, c-format
-msgid "authby"
-msgstr "authby"
-
-#: standalone/drakvpn:479
-#, c-format
-msgid "auto"
-msgstr "auto"
-
-#: standalone/drakvpn:485
-#, c-format
-msgid "right"
-msgstr "right"
-
-#: standalone/drakvpn:486
-#, c-format
-msgid "rightcert"
-msgstr "rightcert"
-
-#: standalone/drakvpn:487
-#, c-format
-msgid "rightrsasigkey"
-msgstr "rightrsasigkey"
-
-#: standalone/drakvpn:488
-#, c-format
-msgid "rightsubnet"
-msgstr "rightsubnet"
-
-#: standalone/drakvpn:489
-#, c-format
-msgid "rightnexthop"
-msgstr "rightnexthop"
-
-#: standalone/drakvpn:497
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change the name of the section.\n"
-msgstr ""
-"هناك قسم له نفس هذا الاسم موجود مسبقاً.\n"
-"يجب أن تكون أسماء الأقسام مميّزة.\n"
-"\n"
-"عليك العودة وإضافة قسم آخر\n"
-"أو تغيير اسم القسم.\n"
-
-#: standalone/drakvpn:529
-#, c-format
-msgid ""
-"Add a Security Policy.\n"
-"\n"
-"You can now add a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"أضف سياسة أمن.\n"
-"\n"
-"يمكنك الآن إضافة سياسة أمن.\n"
-"\n"
-"اختر الاستمرار عندما تنتهي لكتابة البيانات.\n"
-
-#: standalone/drakvpn:562 standalone/drakvpn:812
-#, c-format
-msgid "Edit section"
-msgstr "حرّر القسم"
-
-#: standalone/drakvpn:563
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to edit \n"
-"and then click on next.\n"
-msgstr ""
-"يحتوي ملف %s الخاصّ بك عدّة أقسام أو اتّصالات.\n"
-"\n"
-"يمكنك اختيار التي تريد تعديلها هنا أدناه \n"
-"\n"
-"ثم اضغط التالي.\n"
-
-#: standalone/drakvpn:566 standalone/drakvpn:646 standalone/drakvpn:817
-#: standalone/drakvpn:863
-#, c-format
-msgid "Section names"
-msgstr "أسماء الأقسام"
-
-#: standalone/drakvpn:576
-#, c-format
-msgid "Can not edit!"
-msgstr "لا يمكن التّحرير!"
-
-#: standalone/drakvpn:577
-#, c-format
-msgid ""
-"You cannot edit this section.\n"
-"\n"
-"This section is mandatory for Freeswan 2.X.\n"
-"One has to specify version 2.0 on the top\n"
-"of the %s file, and eventually, disable or\n"
-"enable the opportunistic encryption.\n"
-msgstr ""
-"لا يمكنك تحرير هذا القسم.\n"
-"\n"
-"هذا القسم إلزاميّ لـFreswan 2.X.\n"
-"على أحدهم تحديد الإصدارة 2.0 في أعلى\n"
-"الملف %s، وبالتّالي، يعطّل أو\n"
-"يمكّن التّشفير النّفعيّ.\n"
-
-#: standalone/drakvpn:586
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the config setup section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"يحتوي ملف %s الخاصّ بك عدّة أقسام.\n"
-"\n"
-"يمكنك الآن تعديل مُدخلات إعداد التّهيئة.\n"
-"\n"
-"اختر الاستمرار عندما تنتهي لكتابة البيانات.\n"
-
-#: standalone/drakvpn:597
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the default section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"يحتوي ملف %s الخاصّ بك عدّة أقسام أو اتّصالات.\n"
-"\n"
-"يمكنك الآن تعديل مُدخلات الأقسام الافتراضيّة.\n"
-"\n"
-"اختر الاستمرار عندما تنتهي لكتابة البيانات.\n"
-
-#: standalone/drakvpn:610
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the normal section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"يحتوي ملف %s الخاصّ بك عدّة أقسام أو اتّصالات.\n"
-"\n"
-"يمكنك الآن تعديل مُدخلات الأقسام العاديّة.\n"
-"\n"
-"اختر الاستمرار عندما تنتهي لكتابة البيانات.\n"
-
-#: standalone/drakvpn:631
-#, c-format
-msgid ""
-"Edit a Security Policy.\n"
-"\n"
-"You can now edit a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"تحرير سياسة الأمن.\n"
-"\n"
-"يمكنك الآن تعديل سياسة أمن.\n"
-"\n"
-"اختر الاستمرار عندما تنتهي من كتابة البيانات.\n"
-
-#: standalone/drakvpn:642 standalone/drakvpn:859
-#, c-format
-msgid "Remove section"
-msgstr "حذف القسم"
-
-#: standalone/drakvpn:643 standalone/drakvpn:860
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to remove\n"
-"and then click on next.\n"
-msgstr ""
-"يحتوي ملف %s الخاصّ بك عدّة أقسام أو اتّصالات.\n"
-"\n"
-"يمكنك الاختيار أدناه الأقسام التي تريد أن تزيلها\n"
-"ثم الضغط على التالي.\n"
-
-#: standalone/drakvpn:672
-#, c-format
-msgid ""
-"The racoon.conf file configuration.\n"
-"\n"
-"The contents of this file is divided into sections.\n"
-"You can now:\n"
-" - display \t\t (display the file contents)\n"
-" - add\t\t\t (add one section)\n"
-" - edit \t\t\t (modify parameters of an existing section)\n"
-" - remove \t\t (remove an existing section)\n"
-" - commit \t\t (writes the changes to the real file)"
-msgstr ""
-"تهية الملف racoon.conf.\n"
-"\n"
-"تنقسم محتويات هذا الملف إلى أقسام.\n"
-"يمكنك الآن:\n"
-" - display \t\t (عرض محتويات الملف)\n"
-" - add\t\t\t (إضافة قسم واحد)\n"
-" - edit \t\t\t (تعديل معطيّات قسم موجود)\n"
-" - remove \t\t (إزالة قسم موجود)\n"
-" - commit \t\t (كتابة التغييرات إلى الملفّ الحقيق)"
-
-#: standalone/drakvpn:700
-#, c-format
-msgid ""
-"The %s file does not exist\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose configure.\n"
-msgstr ""
-"الملفّ %s غير موجود\n"
-"\n"
-"لا بدّ أن تكون هذه تهيئة جديدة.\n"
-"\n"
-"عليك أن تعود وتختار تهيئة.\n"
-
-#: standalone/drakvpn:714
-#, c-format
-msgid "racoonf.conf entries"
-msgstr "مُدخلات racoonf.conf"
-
-#: standalone/drakvpn:715
-#, c-format
-msgid ""
-"The 'add' sections step.\n"
-"\n"
-"Here below is the racoon.conf file skeleton:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-"خطوة الأقسام `add`.\n"
-"\n"
-"أدناه هيكل ملف racoon.conf :\n"
-"\t`path`\n"
-"\t`remote`\n"
-"\t`sainfo`\n"
-"\n"
-"اختر القسم الذي تريد إضافته.\n"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "path"
-msgstr "path"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "remote"
-msgstr "remote"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "sainfo"
-msgstr "sainfo"
-
-#: standalone/drakvpn:729
-#, c-format
-msgid ""
-"The 'add path' section step.\n"
-"\n"
-"The path sections have to be on top of your racoon.conf file.\n"
-"\n"
-"Put your mouse over the certificate entry to obtain online help."
-msgstr ""
-"خطوة القسم `add path`.\n"
-"\n"
-"أقسام المسار يجب أن تكون في أعلى ملف racoon.conf.\n"
-"\n"
-"ضع مؤشّر الماوس على مُدخل الشّهادة للحصول على المساعدة الفوريّة."
-
-#: standalone/drakvpn:732
-#, c-format
-msgid "path type"
-msgstr "path type"
-
-#: standalone/drakvpn:736
-#, c-format
-msgid ""
-"path include path: specifies a path to include\n"
-"a file. See File Inclusion.\n"
-"\tExample: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: specifies a file containing\n"
-"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
-"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) will search this directory\n"
-"if a certificate or certificate request is received.\n"
-"\tExample: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"other configuration files can be included.\n"
-"\tExample: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File: Pre-shared key file defines a pair\n"
-"of the identifier and the shared secret key which are used at\n"
-"Pre-shared key authentication method in phase 1."
-msgstr ""
-"path include path: يحدد مساراً لتضمين\n"
-"ملف. راجع تضمين الملفات.\n"
-"\tمثال: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: يحدد ملفاً يحتوي\n"
-"مفاتيح متشاركة مسبقاً لمعرفات متعددة. راجع ملف مفتاح متشارك مسبقاً.\n"
-"\tمثال: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: سوف يبحث racoon(8) في هذا الدليل\n"
-"عن استلام شهادة أو طلب شهادة.\n"
-"\tمثال: path certificate '/etc/cert' ;\n"
-"\n"
-"تضمين الملفات: include file \n"
-"يمكن تضمين بعض ملفات التهيئة الأخرى.\n"
-"\tمثال: include \"remote.conf\" ;\n"
-"\n"
-"ملف المفاتيح المتشاركة: يحدد ملف المفاتيح المتشاركة زوجاً\n"
-"مكوناً من المعرّف والمفتاح السري المتشارك والذان يستخدمان في\n"
-"المرحلة الأولى لوسيلة مواثقة المفتاح المتشارك مسبقاً."
-
-#: standalone/drakvpn:756 standalone/drakvpn:849
-#, c-format
-msgid "real file"
-msgstr "real file"
-
-#: standalone/drakvpn:779
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your racoon.conf file.\n"
-"\n"
-"You can now choose the remote settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"تأكّد من أن أقسام المسار لديك\n"
-"في أعلى الملفّ racoon.conf.\n"
-"\n"
-"يمكنك الآن اختيار الإعدادات البعيدة.\n"
-"اختر الاستمرار أو السابق عندما تنتهي.\n"
-
-#: standalone/drakvpn:796
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your %s file.\n"
-"\n"
-"You can now choose the sainfo settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"تأكّد من أن أقسام المسار لديك\n"
-"في أعلى الملفّ %s.\n"
-"\n"
-"يمكنك الآن اختيار إعدادات sainfo.\n"
-"اختر الاستمرار أو السابق عندما تنتهي.\n"
-
-#: standalone/drakvpn:813
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here in the list below the one you want\n"
-"to edit and then click on next.\n"
-msgstr ""
-"يحتوي ملف %s الخاصّ بك عدّة أقسام أو اتّصالات.\n"
-"\n"
-"يمكن الاختيار من هنا من اللّائحة أدناه المُدخل الذي تريد\n"
-"تحريره ثمّ اضغط على التالي.\n"
-
-#: standalone/drakvpn:824
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"\n"
-"You can now edit the remote section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"ملف %s الخاصّ بك يحتوي عدّة أقسام.\n"
-"\n"
-"\n"
-"يمكن الآن تحرير مُدخلات القسم البعيدة.\n"
-"\n"
-"اختر الاستمرار عندما تنتهي من كتابة البيانات.\n"
-
-#: standalone/drakvpn:833
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the sainfo section entries.\n"
-"\n"
-"Choose continue when you are done to write the data."
-msgstr ""
-"ملف %s الخاصّ بك يحتوي عدّة أقسام.\n"
-"\n"
-"يمكنك الآن تحرير مُدخلات قسم sainfo.\n"
-"\n"
-"اختر الاستمرار عندما تنتهي من كتابة البيانات."
-
-#: standalone/drakvpn:841
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow these path\n"
-"sections.\n"
-"\n"
-"You can now edit the path entries.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"هذا القسم يجب أن يكون في أعلى\n"
-"ملف %s.\n"
-"\n"
-"تأكّد من أن كلّ الأقسام الأخرى تتبع مسار\n"
-"هذه الأقسام.\n"
-"\n"
-"يمكنك الآن تحرير مُدخلات المسار.\n"
-"\n"
-"اختر الاستمرار أو السّابق عندما تنتهي.\n"
-
-#: standalone/drakvpn:848
-#, c-format
-msgid "path_type"
-msgstr "path_type"
-
-#: standalone/drakvpn:889
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"\n"
-"You may now share resources through the Internet,\n"
-"in a secure way, using a VPN connection.\n"
-"\n"
-"You should make sure that that the tunnels shorewall\n"
-"section is configured."
-msgstr ""
-"تمّت تهيئة كلّ شيء.\n"
-"\n"
-"يمكنك مشاركة الموارد عبر الإنترنت،\n"
-"بطريقة آمنية، باستخدام اتّصال VPN.\n"
-"\n"
-"عليك التّأكّد من أنّ قسم shorewall الخاصّ بالأنفاق\n"
-"مهيّأ."
-
-#: standalone/drakvpn:909
-#, c-format
-msgid "Sainfo source address"
-msgstr "العنوان المصدر لـSainfo"
-
-#: standalone/drakvpn:910
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 is the source address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 is the source address"
-msgstr ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"تعرّف المعطيات للمرحلة الثّانية من IKE\n"
-"(تأسيس IPsec-SA).\n"
-"\n"
-"تُبنى source_id و destination_id كما يلي:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"أمثلة : \n"
-"\n"
-"sainfo anonymous (تقبل الاتّصال من أي مكان)\n"
-"\tاترك هذا المُدخل فارغاً إن كنت تريد المستخدم anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 هو عنوان المصدر\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 هو عنوان المصدر"
-
-#: standalone/drakvpn:927
-#, c-format
-msgid "Sainfo source protocol"
-msgstr "البروتوكول المصدر لـSainfo"
-
-#: standalone/drakvpn:928
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe first 'any' allows any protocol for the source"
-msgstr ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"يعرّف المُعطيات للمرحلة الثّانية من IKE\n"
-"(تأسيس IPsec-SA).\n"
-"\n"
-"source_id و destination_id مبنيّة بالشّكل:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"أمثلة : \n"
-"\n"
-"sainfo anonymous (يقبل الاتصال من أي مكان)\n"
-"\tاترك هذا المُدخل فارغاً إن كنت تريد المستخدم anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t'any' الأولى تسمح باستخدام أي بروتوكول للمصدر"
-
-#: standalone/drakvpn:942
-#, c-format
-msgid "Sainfo destination address"
-msgstr "العنوان الوجهة لـSainfo"
-
-#: standalone/drakvpn:943
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 is the destination address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 is the destination address"
-msgstr ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"يعرّف المُعطيات للمرحلة الثّانية من IKE\n"
-"(تأسيس IPsec-SA).\n"
-"\n"
-"source_id و destination_id تُبنى على شكل:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"أمثلة : \n"
-"\n"
-"sainfo anonymous (يقبل الاتصالات من أي مكان)\n"
-"\tاترك هذا المُدخل فارغاً إن أردت السّماح للمستخدم anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 هو العنوان الهدف\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 هو العنوان الهدف"
-
-#: standalone/drakvpn:960
-#, c-format
-msgid "Sainfo destination protocol"
-msgstr "البروتوكول الوجهة لـSainfo"
-
-#: standalone/drakvpn:961
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe last 'any' allows any protocol for the destination"
-msgstr ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"تعرّف المعطيات للمرحلة الثّانية من IKE\n"
-"(تأسيس IPsec-SA).\n"
-"\n"
-"تُبنى source_id و destination_id كما يلي:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"أمثلة: \n"
-"\n"
-"sainfo anonymous (تقبل الاتّصال من أي مكان)\n"
-"\tاترك هذا المُدخل فارغاً إن كنت تريد المستخدم anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t'any' الأخيرة تسمح باستخدام أي بروتوكول للهدف"
-
-#: standalone/drakvpn:975
-#, c-format
-msgid "PFS group"
-msgstr "مجموعة PFS"
-
-#: standalone/drakvpn:977
-#, c-format
-msgid ""
-"define the group of Diffie-Hellman exponentiations.\n"
-"If you do not require PFS then you can omit this directive.\n"
-"Any proposal will be accepted if you do not specify one.\n"
-"group is one of the following: modp768, modp1024, modp1536.\n"
-"Or you can define 1, 2, or 5 as the DH group number."
-msgstr ""
-"عرّف مجموعة ترقيات Diffie-Hellman.\n"
-"إن لم تكن تتطلّب PFS فيمكنك تجاهل هذا الموجّه.\n"
-"أي اقتراح سيُقبل إن لم تحدّد واحداً.\n"
-"المجموعة هي أحد التّالي: modp768، modp1024، mod1536.\n"
-"أو يمكنك تعريف 1، 2، أو 5 كرقم مجموعة DH."
-
-#: standalone/drakvpn:982
-#, c-format
-msgid "Lifetime number"
-msgstr "رقم Lifetime"
-
-#: standalone/drakvpn:983
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-msgstr ""
-"تحديد العمر لوقت ما والذي سيُقترح\n"
-"في المرحلة الأولى للمفاوضات. أيّ اقتراح سوف\n"
-"يُقبل، ولن تُقترح الصّفات\n"
-"لنطقة الاتّصال إن لم تحدّدها. يمكن أن\n"
-"تُحدّد بشكل مُنفصل في كلّ اقتراح.\n"
-"\n"
-"أمثلة : \n"
-"\n"
-" lifetime time 1 min; # ثانية، دقيقة، ساعة\n"
-" lifetime time 1 min; # ثانية، دقيقة، ساعة\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour ;\n"
-"\n"
-"إذاً، هنا، أرقام العُمر هي 1، 1، 30، 30، 60 و 12.\n"
-
-#: standalone/drakvpn:999
-#, c-format
-msgid "Lifetime unit"
-msgstr "وحْدة Lifetime"
-
-#: standalone/drakvpn:1001
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
-"'hour'.\n"
-msgstr ""
-"تحديد العمر لوقت ما والذي سيُقترح\n"
-"في المرحلة الأولى للمفاوضات. أيّ اقتراح سوف\n"
-"يُقبل، ولن تُقترح الصّفات\n"
-"لنطقة الاتّصال إن لم تحدّدها. يمكن أن\n"
-"تُحدّد بشكل مُنفصل في كلّ اقتراح.\n"
-"\n"
-"أمثلة : \n"
-"\n"
-" lifetime time 1 min; # ثانية، دقيقة، ساعة\n"
-" lifetime time 1 min; # ثانية، دقيقة، ساعة\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour ;\n"
-"\n"
-"إذا، هنا، وحدات العُمر هي 'min'، 'min'، 'sec'، 'sec'، 'sec' و 'hour'.\n"
-
-#: standalone/drakvpn:1019
-#, c-format
-msgid "Authentication algorithm"
-msgstr "خوارزمية المواثقة"
-
-#: standalone/drakvpn:1021
-#, c-format
-msgid "Compression algorithm"
-msgstr "خوارزميّة الضّغط"
-
-#: standalone/drakvpn:1022
-#, c-format
-msgid "deflate"
-msgstr "تفريغ"
-
-#: standalone/drakvpn:1029
-#, c-format
-msgid "Remote"
-msgstr "بعيد"
-
-#: standalone/drakvpn:1030
-#, c-format
-msgid ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specifies the parameters for IKE phase 1 for each remote node.\n"
-"The default port is 500. If anonymous is specified, the state-\n"
-"ments apply to all peers which do not match any other remote\n"
-"directive.\n"
-"\n"
-"Examples: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-msgstr ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"يحدّد المعطيات لمرحلة IKE الأولى لكلّ نقطة بعيدة.\n"
-"المنفذ الافتراضي هو 500. إن كان المستخدم anonymous محدّداً، فإنّ statements "
-"تنطبق على كلّ نقاط الاتّصال التي لا تطابق أيّ \n"
-"موجّه بعيد.\n"
-"\n"
-"أمثلة : \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-
-#: standalone/drakvpn:1038
-#, c-format
-msgid "Exchange mode"
-msgstr "نمط المقايضة"
-
-#: standalone/drakvpn:1040
-#, c-format
-msgid ""
-"defines the exchange mode for phase 1 when racoon is the\n"
-"initiator. Also it means the acceptable exchange mode\n"
-"when racoon is responder. More than one mode can be\n"
-"specified by separating them with a comma. All of the\n"
-"modes are acceptable. The first exchange mode is what\n"
-"racoon uses when it is the initiator.\n"
-msgstr ""
-"يعرّف وضع المقايضة للمرحلة الأولى عندما يكون racoon\n"
-"هو البادئ. هذا يعني أيضاً وضع المقايضة المقبولة\n"
-"عندما يكون racoon هو المجيب. يمكن تحديد أاكثر من وضع\n"
-"بفصلها بفاصلة. كل الأوضاع\n"
-"مقبولة. وضع المقايضة الأول هو الذي\n"
-"يستخدمه racoon عندما يكون هو البادئ.\n"
-
-#: standalone/drakvpn:1046
-#, c-format
-msgid "Generate policy"
-msgstr "توليد السياسة"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "off"
-msgstr "متوقف"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "on"
-msgstr "يعمل"
-
-#: standalone/drakvpn:1048
-#, c-format
-msgid ""
-"This directive is for the responder. Therefore you\n"
-"should set passive on in order that racoon(8) only\n"
-"becomes a responder. If the responder does not have any\n"
-"policy in SPD during phase 2 negotiation, and the direc-\n"
-"tive is set on, then racoon(8) will choice the first pro-\n"
-"posal in the SA payload from the initiator, and generate\n"
-"policy entries from the proposal. It is useful to nego-\n"
-"tiate with the client which is allocated IP address\n"
-"dynamically. Note that inappropriate policy might be\n"
-"installed into the responder's SPD by the initiator. So\n"
-"that other communication might fail if such policies\n"
-"installed due to some policy mismatches between the ini-\n"
-"tiator and the responder. This directive is ignored in\n"
-"the initiator case. The default value is off."
-msgstr ""
-"هذا الموجّه خاصّ بالمُجيب. لذا عليك\n"
-"تحديد استخدام سلبي حتّى يصبح racoon(8) فقط\n"
-"مُجيباً. إن لم يكُن للمُجيب أيّ\n"
-"سياسة في SPD خلال المرحلة الثّاثنية من التّفاوض، وكان المُوجّه محدّدٌ \n"
-"استخدامه، فسيقوم racoon(8) باختيار الاقتراح\n"
-"الأوّل في SA payload من المُبتدِئ، ويُولّد مُدخلات\n"
-"السّياسة من الاقتراح. من المفيد التّفاوض\n"
-"مع العميل ذي عنوان IP المُعيّن له\n"
-"ديناميكيّاً. لاحظ أنّ السّياسة الغير مناسبة قد تكون\n"
-"مُتثبيتة في SPD الخاصّ بالمُجيب من قبل المُبتدِئ. لذا\n"
-"قد يفشل بعض الاتّصال إن كانت هذه السّياسات\n"
-"مُتثبيتة بسبب عدم تطابق السّياسة بين المُبتدِئ\n"
-"والمُجيب. يتمّ تجاهل هذا المُوجِّه في\n"
-"حالة المُبتدِئ. القيمة الافتراضيّة هي غير مستخدَم."
-
-#: standalone/drakvpn:1062
-#, c-format
-msgid "Passive"
-msgstr "سلبي"
-
-#: standalone/drakvpn:1064
-#, c-format
-msgid ""
-"If you do not want to initiate the negotiation, set this\n"
-"to on. The default value is off. It is useful for a\n"
-"server."
-msgstr ""
-"إن كنت لا ترغب ببدء التّفاوض، حدّد هذا\n"
-"باختياره. القيمة الافتراضيّة هي غير محدّد. وهي مفيدة\n"
-"للخادم."
-
-#: standalone/drakvpn:1067
-#, c-format
-msgid "Certificate type"
-msgstr "نوع الشّهادة"
-
-#: standalone/drakvpn:1069
-#, c-format
-msgid "My certfile"
-msgstr "ملفّ certfile الخاص بي"
-
-#: standalone/drakvpn:1070
-#, c-format
-msgid "Name of the certificate"
-msgstr "اسم الشّهادة"
-
-#: standalone/drakvpn:1071
-#, c-format
-msgid "My private key"
-msgstr "مفتاحي الخاصّ"
-
-#: standalone/drakvpn:1072
-#, c-format
-msgid "Name of the private key"
-msgstr "اسم المفتاح الخاصّ"
-
-#: standalone/drakvpn:1073
-#, c-format
-msgid "Peers certfile"
-msgstr "ملف شهادة النّظراء"
-
-#: standalone/drakvpn:1074
-#, c-format
-msgid "Name of the peers certificate"
-msgstr "اسم شهادة النظراء"
-
-#: standalone/drakvpn:1075
-#, c-format
-msgid "Verify cert"
-msgstr "تحقّق من الشّهادة"
-
-#: standalone/drakvpn:1077
-#, c-format
-msgid ""
-"If you do not want to verify the peer's certificate for\n"
-"some reason, set this to off. The default is on."
-msgstr ""
-"إن كنت لا تريد التحقّق من شهادة النّظير\n"
-"لسبب ما، لا تستخدم هذا الخيار. الوضع الافتراضي هو استخدامه."
-
-#: standalone/drakvpn:1079
-#, c-format
-msgid "My identifier"
-msgstr "مُعرّفي"
-
-#: standalone/drakvpn:1080
-#, c-format
-msgid ""
-"specifies the identifier sent to the remote host and the\n"
-"type to use in the phase 1 negotiation. address, FQDN,\n"
-"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
-"they are used like:\n"
-"\tmy_identifier address [address];\n"
-"\t\tthe type is the IP address. This is the default\n"
-"\t\ttype if you do not specify an identifier to use.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tthe type is a USER_FQDN (user fully-qualified\n"
-"\t\tdomain name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tthe type is a FQDN (fully-qualified domain name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tthe type is a KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tthe type is an ASN.1 distinguished name. If\n"
-"\t\tstring is omitted, racoon(8) will get DN from\n"
-"\t\tSubject field in the certificate.\n"
-"\n"
-"Examples: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-msgstr ""
-"يحدّد المعرّف الذي يرسل إلى المضيف البعيد و\n"
-"النّوع الذي يجب استخدامه في المرحلة الأولى من المُفاوضة. العنوان، وFQDN، \n"
-"user_fqdn، keyid و asn1dn يمكن استخدامها كـidtype.\n"
-"إنّها تستخدم بالشّكل:\n"
-"\tmy_identifier address [address];\n"
-"\t\tالنّوع هو عنوان IP. هذا هو النّوع المُفترض\n"
-"\t\tإن لم تحدّد مُعرّفاً لاستخدامه.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tالنّوع هو USER_FQDN (اسم النّطاق المهيّء\n"
-"\t\tبالكامل للمستخدم).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tالنّوع هو FQDN (اسم النّطاق المُهيّء بالكامل).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tالنّوع هو KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tالنّوع هو الاسم المُميَّز ASN.1. إن\n"
-"\t\tأسقطت string، سيحضر racoon(8) الاسم المُميَّز من\n"
-"\t\tحقل العنوان من الشّهادة.\n"
-"\n"
-"أمثلة : \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-
-#: standalone/drakvpn:1100
-#, c-format
-msgid "Peers identifier"
-msgstr "معرّف النّظراء"
-
-#: standalone/drakvpn:1101
-#, c-format
-msgid "Proposal"
-msgstr "إقتراح"
-
-#: standalone/drakvpn:1103
-#, c-format
-msgid ""
-"specify the encryption algorithm used for the\n"
-"phase 1 negotiation. This directive must be defined. \n"
-"algorithm is one of the following: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For other transforms, this statement should not be used."
-msgstr ""
-"تحديد خوارزميّة التّشفير المستخدمة لمفاوضة\n"
-"المرحلة الأولى. هذا الموجّه يجب أن يعرّف. \n"
-"الخوارزميّة هي أحد ما يلي: \n"
-"\n"
-"DES، 3DES، blowfish، أو cast128 for oakley.\n"
-"\n"
-"للتّحويلات الأخرى، لا يجب أن تستخدم هذه العبارة."
-
-#: standalone/drakvpn:1110
-#, c-format
-msgid "Hash algorithm"
-msgstr "خوارزمية Hash"
-
-#: standalone/drakvpn:1112
-#, c-format
-msgid "DH group"
-msgstr "مجموعة DH"
-
-#: standalone/drakvpn:1119
-#, c-format
-msgid "Command"
-msgstr "الأمر"
-
-#: standalone/drakvpn:1120
-#, c-format
-msgid "Source IP range"
-msgstr "مدى عناوين IP للمصدر"
-
-#: standalone/drakvpn:1121
-#, c-format
-msgid "Destination IP range"
-msgstr "مدى عناوين IP للهدف"
-
-#: standalone/drakvpn:1122
-#, c-format
-msgid "Upper-layer protocol"
-msgstr "بروتوكول الطّبقة العليا"
-
-#: standalone/drakvpn:1122 standalone/drakvpn:1129
-#, c-format
-msgid "any"
-msgstr "أيّها"
-
-#: standalone/drakvpn:1124
-#, c-format
-msgid "Flag"
-msgstr "العلامة"
-
-#: standalone/drakvpn:1125
-#, c-format
-msgid "Direction"
-msgstr "الاتجاه"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "IPsec policy"
-msgstr "سياسة IPsec"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "ipsec"
-msgstr "ipsec"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "discard"
-msgstr "تجاهل"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "Mode"
-msgstr "الوضع"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "tunnel"
-msgstr "نفق"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "transport"
-msgstr "نقل"
-
-#: standalone/drakvpn:1131
-#, c-format
-msgid "Source/destination"
-msgstr "المصدر/الوجهة"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "require"
-msgstr "طلب"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "default"
-msgstr "الافتراضي"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "use"
-msgstr "استخدام"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "unique"
-msgstr "فريد"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (broadcast)"
-msgstr "الولايات المتّحدة الأمريكيّة (بث)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable)"
-msgstr "الولايات المتّحدة الأمريكيّة (كابل)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "الولايات المتّحدة الأمريكيّة (كابل-hrc)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "Canada (cable)"
-msgstr "كندا (كابل)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "اليابان (بثّ)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (cable)"
-msgstr "اليابان (كابل)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "China (broadcast)"
-msgstr "الصّين (بثّ)"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "West Europe"
-msgstr "أوروبا الغربية"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "East Europe"
-msgstr "أوروبا الشّرقية"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "France [SECAM]"
-msgstr "فرنسا [سيكام]"
-
-#: standalone/drakxtv:48
-#, c-format
-msgid "Newzealand"
-msgstr "نيوزيلندا"
-
-#: standalone/drakxtv:51
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "تلفزيون الكابل الأسترالي Optus"
-
-#: standalone/drakxtv:85
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"فضلاً،\n"
-"اطبع tv norm الخاص بك و بلدك"
-
-#: standalone/drakxtv:87
-#, c-format
-msgid "TV norm:"
-msgstr "TV norm :"
-
-#: standalone/drakxtv:88
-#, c-format
-msgid "Area:"
-msgstr "المنطقة:"
-
-#: standalone/drakxtv:93
-#, c-format
-msgid "Scanning for TV channels in progress..."
-msgstr "جاري ضبط قنوات التلفاز..."
-
-#: standalone/drakxtv:103
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "جاري ضبط قنوات التلفاز"
-
-#: standalone/drakxtv:107
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "كان هناك خطأ أثناء ضبط قنوات التلفاز"
-
-#: standalone/drakxtv:110
-#, c-format
-msgid "Have a nice day!"
-msgstr "نتمنى لك يوماً سعيداً!"
-
-#: standalone/drakxtv:111
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "الآن يمكنك تشغيل XawTV (في الواجهة الرسومية!) !\n"
-
-#: standalone/drakxtv:149
-#, c-format
-msgid "No TV Card detected!"
-msgstr "لم يعثر على بطاقة تلفاز!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakxtv:151
-#, c-format
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"لم يعثر على بطاقة تلفاز على جهازك. الرجاء التأكّد من أن بطاقة الفيديو/التلفاز "
-"المدعومة في لينكس موصولة بشكل صحيح.\n"
-"\n"
-"\n"
-"يمكنك زيارة قاعدة بيانات العتاد المدعوم الخاصة بنا على:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/finish-install:42 standalone/keyboarddrake:30
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "من فضلك اختر توزيعة لوحة مفاتيحك"
-
-#: standalone/harddrake2:25
-#, c-format
-msgid "Alternative drivers"
-msgstr "مشغلات بديلة"
-
-#: standalone/harddrake2:26
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "قائمة المُشغّلات البديلة لبطاقة الصوت"
-
-#: standalone/harddrake2:29
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr "هذا هو النّاقل المادّي الذّي يتّصل به الجهاز (مثلاً، PCI، USB، ...("
-
-# U+200F (RTL mark) has been inserted after "Bus" so the display
-# on screen is correctly "datadatadata :Bus xxxxxxxx" (with xxxx arabic),
-# and not "Bus: datadatadata xxxxxxxx"
-#: standalone/harddrake2:31 standalone/harddrake2:146
-#, c-format
-msgid "Bus identification"
-msgstr "معرف Bus"
-
-#: standalone/harddrake2:32
-#, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
-msgstr ""
-"- أجهزة PCI و USB: هذا يعرض قائمة المصنعين و الأجهزة و المصنعين الثانويين و "
-"الأجهزة الثانوية لمُعرّفات PCI/USB"
-
-#: standalone/harddrake2:35
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- أجهزة pci: تعطي منفذ PCI، الجهاز و وظيفة هذه البطاقة\n"
-"- أجهزة eide: الجهاز إما أن يكون جهاز slave أو master\n"
-"- أجهزة scsi: scsi bus و مُعرّف جهاز scsi"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "Drive capacity"
-msgstr "حجم السواقة"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr "إمكانيات مميزة لهذا المُشغّل (امكانية النسخ أو دعم DVD)"
-
-#: standalone/harddrake2:39
-#, c-format
-msgid "this field describes the device"
-msgstr "هذا الحقل يصف الجهاز"
-
-#: standalone/harddrake2:40
-#, c-format
-msgid "Old device file"
-msgstr "ملف الجهاز القديم"
-
-#: standalone/harddrake2:41
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "اسم الجهاز القديم الساكن المستخدم في حزمة dev"
-
-#: standalone/harddrake2:42
-#, c-format
-msgid "New devfs device"
-msgstr "جهاز devfs جديد"
-
-#: standalone/harddrake2:43
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "اسم الجهاز الديناميكي الجديد الذي يتم توليده من devfs"
-
-#. -PO: here "module" is the "jargon term" for a kernel driver
-#: standalone/harddrake2:46
-#, c-format
-msgid "Module"
-msgstr "وحدة"
-
-#: standalone/harddrake2:46
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "وحدة نواة جنو/لينكس التي تتعامل مع هذا الجهاز"
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "Extended partitions"
-msgstr "تجزيئات ممتدّة"
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "the number of extended partitions"
-msgstr "عدد التّجزيئات الممتدّة"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Geometry"
-msgstr "الهندسة"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Cylinder/head/sectors geometry of the disk"
-msgstr "هندسة القرص (الأسطوانة، الرّأس، القطاعات)"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "Disk controller"
-msgstr "مُتحكّم القرص"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "the disk controller on the host side"
-msgstr "مُتحمّم القرص من جهة المضيف"
-
-#: standalone/harddrake2:50
-#, c-format
-msgid "class of hardware device"
-msgstr "فئة جهاز العتاد"
-
-#: standalone/harddrake2:51 standalone/harddrake2:83
-#: standalone/printerdrake:224
-#, c-format
-msgid "Model"
-msgstr "الطراز"
-
-#: standalone/harddrake2:51
-#, c-format
-msgid "hard disk model"
-msgstr "طراز القرص الصلب"
-
-#: standalone/harddrake2:52
-#, c-format
-msgid "network printer port"
-msgstr "منفذ طابعة الشبكة"
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "Primary partitions"
-msgstr "التّجزيئات الأوّلية"
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "the number of the primary partitions"
-msgstr "عدد التّجزيئات الأوّلية"
-
-#: standalone/harddrake2:54
-#, c-format
-msgid "the vendor name of the device"
-msgstr "اسم مصنّع الجهاز"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "Bus PCI #"
-msgstr "ناقل PCI #"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "the PCI bus on which the device is plugged"
-msgstr "ناقل PCI الذي يتّصل عليه الجهاز"
-
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device #"
-msgstr "جهاز PCI #"
-
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device number"
-msgstr "رقم جهاز PCI"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function #"
-msgstr "وظيفة PCI #"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function number"
-msgstr "رقم وظيفة PCI"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "Vendor ID"
-msgstr "معرّف الصّانع"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "this is the standard numerical identifier of the vendor"
-msgstr "هذا هو المعرّف العددي المقياسي للصّانع"
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "Device ID"
-msgstr "معرّف الجهاز"
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "this is the numerical identifier of the device"
-msgstr "هذا هو المعرّف العددي للجهاز"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "Sub vendor ID"
-msgstr "المعرّف الثّانوي للصّانع"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "this is the minor numerical identifier of the vendor"
-msgstr "هذا هو المعرّف العددي الأصغر للصّانع"
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "Sub device ID"
-msgstr "المعرّف الثّانوي للجهاز"
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "this is the minor numerical identifier of the device"
-msgstr "هذا هو المعرّف العددي الأصغر للجهاز"
-
-#: standalone/harddrake2:62
-#, c-format
-msgid "Device USB ID"
-msgstr "معرّف جهاز USB"
-
-#: standalone/harddrake2:62
-#, c-format
-msgid ".."
-msgstr ".."
-
-#: standalone/harddrake2:66
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
-
-#: standalone/harddrake2:66
-#, c-format
-msgid ""
-"the GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
-msgstr ""
-"نواة جنو/لينكس تحتاج إلى تشغيل حلقة حسابية عند الإقلاع لتنشيط أداة عدّدا "
-"الوقت. يتم حفظ النتيجة كـbogomips كطريقة \"للتأكد من صحة\" وحدة المعالجة "
-"المركزية (cpu)."
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "Cache size"
-msgstr "حجم الذاكرة المخبئية"
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "حجم ذاكرة وحدة المعالجة المركزية (cpu) المخبئية (المستوى الثاني)"
-
-#. -PO: here "comas" is the medical coma, not the lexical coma!!
-#: standalone/harddrake2:70
-#, c-format
-msgid "Coma bug"
-msgstr "علّة الغيبوبة"
-
-#: standalone/harddrake2:70
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "إذا كان المرشد لديه علّة الغيبوبة Cyrix 6x86"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "Cpuid family"
-msgstr "عائلة Cpuid"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "عائلة وحدة المعالجة المركزية (cpu) (مثلا: 6 لفئة i686)"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "Cpuid level"
-msgstr "مستوى Cpuid"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "مستوى المعلومات التي يمكن الحصول عليها من تعليمات cpuid"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "التردد (ميغاهيرتز)"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr ""
-"تردد وحدة المعالجة المركزية (cpu) بالميغاهيرتز (الميغاهيرتز تشير إلى العدد "
-"التقريبي من التعليمات التي تستطيع وحدة المعالجة المركزية (cpu) تنفيذها في "
-"الثانية الواحدة)"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "Flags"
-msgstr "الأعلام"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "علامات وحدة المعالجة المركزية (cpu) التي قرّرتها النّواة"
-
-#: standalone/harddrake2:75
-#, c-format
-msgid "Fdiv bug"
-msgstr "علّة Fdiv"
-
-#: standalone/harddrake2:76
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
-"بعض رقاقات إنتل بنتيوم المصنّعة قديما تحتوي على علّة في مُعالج النّقاط العائمة "
-"والتي لا تحقّق الدقّة المطلوبة عند أداء قسمة النّقاط العائمة (FDIV)"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "Is FPU present"
-msgstr "هل FPU موجود"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "نعم تعني أن المعالج لديه معالج مساعد للعمليات الحسابية"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "إذا كان الـFPU لديه متجه irq"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr "نعم تعني أن المرشد المساعد للعمليات الحسابية لديه متجه للإستثناءات"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "F00f bug"
-msgstr "علّة F00f"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr "معالجات pentium القديمة كانت تتوقف عن العمل عند استخدام F00F bytecode"
-
-#: standalone/harddrake2:80
-#, c-format
-msgid "Halt bug"
-msgstr "علّة Halt"
-
-#: standalone/harddrake2:81
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
-"بعض رقاقات i486DX-100 القديمة لا يمكنها الرّجوع إلى وضع التّشغيل بعد أن تستخدم "
-"تعليمة \"halt\" "
-
-#: standalone/harddrake2:82
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "الجيل الثانوي لوحدة المعالجة المركزيّة (cpu)"
-
-#: standalone/harddrake2:83
-#, c-format
-msgid "generation of the cpu (eg: 8 for Pentium III, ...)"
-msgstr "جيل وحدة المعالجة المركزية (cpu) (مثال: 8 لبنتيوم III، ...)"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "Model name"
-msgstr "اسم الطراز"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "الإسم الرسمي لمصنّع وحدة المعالجة المركزية (cpu)"
-
-#: standalone/harddrake2:85
-#, c-format
-msgid "the name of the CPU"
-msgstr "اسم وحدة المعالجة المركزية (cpu)"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "Processor ID"
-msgstr "هوية المُعالج"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "the number of the processor"
-msgstr "رقم المُعالج"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "Model stepping"
-msgstr "طَوْر الطراز"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "طَوْر وحدة المعالجة المركزيّة (cpu) (رقم الطّراز الفرعي (الجيل))"
-
-#: standalone/harddrake2:88
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "اسم مصنّع المعالج"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid "Write protection"
-msgstr "الحماية من الكتابة"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid ""
-"the WP flag in the CR0 register of the cpu enforce write protection at the "
-"memory page level, thus enabling the processor to prevent unchecked kernel "
-"accesses to user memory (aka this is a bug guard)"
-msgstr ""
-"العلامة WP في سجلّ CR0 لوحدة المعالجة المركزيّة تُجبر حماية الكتابة على مستوى "
-"صفحة الذّاكرة، وبالتّالي تمكّن وحدة المعالجة المركزية (cpu) من منع طُرق وصول "
-"النّواة الغير مفحوصة إلى ذاكرة المستخدم (والمعروفة بالحماية من العلل)"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "Floppy format"
-msgstr "نَسَق القرص المرن"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "نَسَق الأقراص المرنة التي تدعمها السواقة"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "Channel"
-msgstr "القناة"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "قناة EIDE/SCSI"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "Disk identifier"
-msgstr "معرّف القرص"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "usually the disk serial number"
-msgstr "عامّة العدد التّسلسلي للقرص"
-
-#: standalone/harddrake2:99
-#, c-format
-msgid "Logical unit number"
-msgstr "رقم الوحدة المنطقيّة"
-
-#: standalone/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"
-"عن طريق رقم قناة، معرّف للهدف و رقم وحدة منطقية"
-
-#. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...)
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size"
-msgstr "الحجم المثبت"
-
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size of the memory bank"
-msgstr "حجم بنك الذّاكرة المثبت"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled Size"
-msgstr "الحجم المُمكّن"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled size of the memory bank"
-msgstr "حجم بنك الذّاكرة الممكّن"
-
-#: standalone/harddrake2:108
-#, c-format
-msgid "type of the memory device"
-msgstr "فئة جهاز الذّاكرة"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed"
-msgstr "السّرعة"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed of the memory bank"
-msgstr "سرعة بنك الذّاكرة"
-
-#: standalone/harddrake2:110
-#, c-format
-msgid "Bank connections"
-msgstr "اتّصالات البنك"
-
-#: standalone/harddrake2:111
-#, c-format
-msgid "Socket designation of the memory bank"
-msgstr "تعيين المحاجر في بنك الذّاكرة"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid "Device file"
-msgstr "ملفّ الجهاز"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid ""
-"the device file used to communicate with the kernel driver for the mouse"
-msgstr "ملفّ الجهاز المستعمل للإتّصال مع مشغّل النّواة للماوس"
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "Emulated wheel"
-msgstr "عجلة محاكاة"
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "whether the wheel is emulated or not"
-msgstr "محاكاة العجل أم لا"
-
-#: standalone/harddrake2:117
-#, c-format
-msgid "the type of the mouse"
-msgstr "نوع الماوس"
-
-#: standalone/harddrake2:118
-#, c-format
-msgid "the name of the mouse"
-msgstr "إسم الماوس"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "Number of buttons"
-msgstr "عدد الأزرار"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "عدد أزرار الماوس"
-
-#: standalone/harddrake2:120
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "نوع الناقل الذي ترتبط به الماوس"
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "Mouse protocol used by X11"
-msgstr "برتوكول الماوس المستعمل من طرف X11"
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "the protocol that the graphical desktop use with the mouse"
-msgstr "البروتوكول المستعمل من طرف سطح المكتب الرّسومي مع الماوس"
-
-# U+200F (RTL mark) has been inserted after "Bus" so the display
-# on screen is correctly "datadatadata :Bus xxxxxxxx" (with xxxx arabic),
-# and not "Bus: datadatadata xxxxxxxx"
-#: standalone/harddrake2:128 standalone/harddrake2:137
-#: standalone/harddrake2:144 standalone/harddrake2:152
-#: standalone/harddrake2:341
-#, c-format
-msgid "Identification"
-msgstr "التّعريف"
-
-#: standalone/harddrake2:129 standalone/harddrake2:145
-#, c-format
-msgid "Connection"
-msgstr "الوصلة"
-
-#: standalone/harddrake2:138
-#, c-format
-msgid "Performances"
-msgstr "الأداء"
-
-# U+200F (RTL mark) has been inserted after "Bus" so the display
-# on screen is correctly "datadatadata :Bus", and not "Bus: datadatadata"
-#: standalone/harddrake2:139
-#, c-format
-msgid "Bugs"
-msgstr "العلل"
-
-#: standalone/harddrake2:140
-#, c-format
-msgid "FPU"
-msgstr "FPU"
-
-#: standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "الجهاز"
-
-#: standalone/harddrake2:148
-#, c-format
-msgid "Partitions"
-msgstr "التّجزيئات"
-
-#: standalone/harddrake2:153
-#, c-format
-msgid "Features"
-msgstr "الميزات"
-
-#. -PO: please keep all "/" characters !!!
-#: standalone/harddrake2:176 standalone/logdrake:76
-#: standalone/printerdrake:146 standalone/printerdrake:159
-#: standalone/printerdrake:171
-#, c-format
-msgid "/_Options"
-msgstr "/_خيارات"
-
-#: standalone/harddrake2:177 standalone/harddrake2:202 standalone/logdrake:78
-#: standalone/printerdrake:172 standalone/printerdrake:174
-#: standalone/printerdrake:177 standalone/printerdrake:179
-#, c-format
-msgid "/_Help"
-msgstr "/_مساعدة"
-
-#: standalone/harddrake2:181
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/تحقق آلي من ال_طابعات"
-
-#: standalone/harddrake2:182
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/تحقق آلي من أ_جهزة المودم"
-
-#: standalone/harddrake2:183
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/تحقق آلي من _سواقات Jaz"
-
-#: standalone/harddrake2:184
-#, c-format
-msgid "/Autodetect parallel _zip drives"
-msgstr ""
-
-#: standalone/harddrake2:191 standalone/printerdrake:152
-#, c-format
-msgid "/_Quit"
-msgstr "/_خروج"
-
-#: standalone/harddrake2:204
-#, c-format
-msgid "/_Fields description"
-msgstr "/_وصف الحقول"
-
-#: standalone/harddrake2:206
-#, c-format
-msgid "Harddrake help"
-msgstr "مساعدة Harddrake"
-
-#: standalone/harddrake2:215
-#, 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 ""
-"عند اختيارك لجهاز، ستستطيع رؤية معلومات هذا الجهاز في الحقول المعروضة في "
-"الإطار الأيمن (\"معلومات\")"
-
-#: standalone/harddrake2:221 standalone/printerdrake:177
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_تقرير خطأ"
-
-#: standalone/harddrake2:223 standalone/printerdrake:179
-#, c-format
-msgid "/_About..."
-msgstr "/_حول..."
-
-#: standalone/harddrake2:224
-#, c-format
-msgid "About Harddrake"
-msgstr "حول HardDrake"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/harddrake2:226
-#, c-format
-msgid ""
-"This is HardDrake, a %s hardware configuration tool.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-msgstr ""
-"هذا هو HardDrake، أداة %s لتهيئة العتاد.\n"
-"<span foreground=\"royalblue3\">النّسخة:</span> %s\n"
-"<span foreground=\"royalblue3\">المؤلّف:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-
-#: standalone/harddrake2:242
-#, c-format
-msgid "Harddrake2"
-msgstr "Harddrake2"
-
-#: standalone/harddrake2:272
-#, c-format
-msgid "Detected hardware"
-msgstr "العتاد المُكتشف"
-
-#: standalone/harddrake2:277
-#, c-format
-msgid "Configure module"
-msgstr "تهيئة الوحدة"
-
-#: standalone/harddrake2:284
-#, c-format
-msgid "Run config tool"
-msgstr "تشغيل أداة التهيئة"
-
-#: standalone/harddrake2:308
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr "اضغط على جهاز في السلسلة اليسرى لعرض معلوماته هنا."
-
-#: standalone/harddrake2:329 standalone/printerdrake:306
-#: standalone/printerdrake:320
-#, c-format
-msgid "Unknown"
-msgstr "مجهول"
-
-#: standalone/harddrake2:349
-#, c-format
-msgid "Misc"
-msgstr "متفرّقات"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "secondary"
-msgstr "ثانوي"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "primary"
-msgstr "أوّلي"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "burner"
-msgstr "ناسخ أقراص"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "DVD"
-msgstr "DVD"
-
-#: standalone/harddrake2:511
-#, c-format
-msgid ""
-"The following devices needs proprietary drivers or firmwares in order to "
-"operate smoothly. The appropriate packages can be retrieved from the "
-"Mandriva Club. Do you want to subscribe to the Mandriva Club?"
-msgstr ""
-
-#: standalone/keyboarddrake:45
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "هل تريد أن يقوم زر BackSpace بعمل وظيفة زر Delete في سطر الأوامر؟"
-
-#: standalone/localedrake:38
-#, c-format
-msgid "LocaleDrake"
-msgstr "LocaleDrake"
-
-#: standalone/localedrake:44
-#, 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"
-#: standalone/localedrake:47 standalone/scannerdrake:135
-#, c-format
-msgid ", "
-msgstr "، "
-
-#: standalone/localedrake:55
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "تم عمل التغيير، و لكن ليتم تفعيله يجب عليك الخروج"
-
-#: standalone/logdrake:49
-#, c-format
-msgid "Mandriva Linux Tools Logs"
-msgstr "سجلات أدوات ماندريبا لينكس"
-
-#: standalone/logdrake:50
-#, c-format
-msgid "Logdrake"
-msgstr "Logdrake"
-
-#: standalone/logdrake:63
-#, c-format
-msgid "Show only for the selected day"
-msgstr "عرض سجلات اليوم المختار فقط"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "/File/_New"
-msgstr "/ملف/_جديد"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "/File/_Open"
-msgstr "/ملف/_فتح"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "/File/_Save"
-msgstr "/ملف/_حفظ"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
-
-#: standalone/logdrake:73
-#, c-format
-msgid "/File/Save _As"
-msgstr "/ملف/حفظ _باسم"
-
-#: standalone/logdrake:74
-#, c-format
-msgid "/File/-"
-msgstr "/ملف/-"
-
-#: standalone/logdrake:77
-#, c-format
-msgid "/Options/Test"
-msgstr "/خيارات/اختبار"
-
-#: standalone/logdrake:79
-#, c-format
-msgid "/Help/_About..."
-msgstr "/مساعدة/_حول..."
-
-#: standalone/logdrake:108
-#, c-format
-msgid ""
-"_:this is the auth.log log file\n"
-"Authentication"
-msgstr "المواثقة"
-
-#: standalone/logdrake:109
-#, c-format
-msgid ""
-"_:this is the user.log log file\n"
-"User"
-msgstr "المستخدم"
-
-#: standalone/logdrake:110
-#, c-format
-msgid ""
-"_:this is the /var/log/messages log file\n"
-"Messages"
-msgstr "الرّسائل"
-
-#: standalone/logdrake:111
-#, c-format
-msgid ""
-"_:this is the /var/log/syslog log file\n"
-"Syslog"
-msgstr "سجلّ النّظام"
-
-#: standalone/logdrake:115
-#, c-format
-msgid "search"
-msgstr "بحث"
-
-#: standalone/logdrake:127
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "أداة لمراقبة سجلات نظامك"
-
-#: standalone/logdrake:128 standalone/net_applet:347 standalone/net_monitor:93
-#, c-format
-msgid "Settings"
-msgstr "الإعدادات"
-
-#: standalone/logdrake:133
-#, c-format
-msgid "Matching"
-msgstr "المطابقة"
-
-#: standalone/logdrake:134
-#, c-format
-msgid "but not matching"
-msgstr "لكن غير مطابقة"
-
-#: standalone/logdrake:138
-#, c-format
-msgid "Choose file"
-msgstr "اختيار ملف"
-
-#: standalone/logdrake:150
-#, c-format
-msgid "Calendar"
-msgstr "التقويم"
-
-#: standalone/logdrake:160
-#, c-format
-msgid "Content of the file"
-msgstr "محتويات الملف"
-
-#: standalone/logdrake:164 standalone/logdrake:401
-#, c-format
-msgid "Mail alert"
-msgstr "تنبية بريدي"
-
-#: standalone/logdrake:171
-#, c-format
-msgid "The alert wizard has failed unexpectedly:"
-msgstr "فشل معالج التّنبيه بشكل غير متوقّع:"
-
-#: standalone/logdrake:224
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "يرجى الإنتظار، جاري تحليل الملف: %s"
-
-#: standalone/logdrake:379
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "خادم الوب Apache"
-
-#: standalone/logdrake:380
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "مُترجم أسماء النطاقات"
-
-#: standalone/logdrake:381
-#, c-format
-msgid "Ftp Server"
-msgstr "الخادم FTP"
-
-#: standalone/logdrake:382
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "خادم البريد Postfix"
-
-#: standalone/logdrake:383
-#, c-format
-msgid "Samba Server"
-msgstr "خادم سامبا"
-
-#: standalone/logdrake:385
-#, c-format
-msgid "Webmin Service"
-msgstr "خدمة Webmin"
-
-#: standalone/logdrake:386
-#, c-format
-msgid "Xinetd Service"
-msgstr "خدمات Xinetd"
-
-#: standalone/logdrake:395
-#, c-format
-msgid "Configure the mail alert system"
-msgstr "تهيئة نظام التّنبيه بالبريد"
-
-#: standalone/logdrake:396
-#, c-format
-msgid "Stop the mail alert system"
-msgstr "إيقاف نظام التّنبيه للبريد"
-
-#: standalone/logdrake:404
-#, c-format
-msgid "Mail alert configuration"
-msgstr "تهيئة تنبيه البريد"
-
-#: standalone/logdrake:405
-#, 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"
-
-#: standalone/logdrake:415
-#, c-format
-msgid "Services settings"
-msgstr "إعدادات الخدمات"
-
-#: standalone/logdrake:416
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr "سوف تستلم تنبيهاً إذا كانت أحد الخدمات المختارة لا تعمل."
-
-#: standalone/logdrake:423
-#, c-format
-msgid "Load setting"
-msgstr "تحميل الإعداد"
-
-#: standalone/logdrake:424
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "سوف تستلم تنبيها إذا كان الحِمْل أعلى من هذه القيمة"
-
-#: standalone/logdrake:425
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "تحميل"
-
-#: standalone/logdrake:430
-#, c-format
-msgid "Alert configuration"
-msgstr "تهيئة التّنبيه"
-
-#: standalone/logdrake:431
-#, c-format
-msgid "Please enter your email address below "
-msgstr "الرجاء إدخال عنوان بريدك الألكتروني أدناه "
-
-#: standalone/logdrake:432
-#, c-format
-msgid "and enter the name (or the IP) of the SMTP server you wish to use"
-msgstr "وأدخل الاسم (أو عنوان IP) وخادم SMTP الذي تودّ استخدامه"
-
-#: standalone/logdrake:451
-#, c-format
-msgid "The wizard successfully configured the mail alert."
-msgstr "قام المرشد بتهيئة تنبيه البريد بنجاح."
-
-#: standalone/logdrake:457
-#, c-format
-msgid "The wizard successfully disabled the mail alert."
-msgstr "قام المرشد بتعطيل تنبيه البريد بنجاح."
-
-#: standalone/logdrake:516
-#, c-format
-msgid "Save as.."
-msgstr "حفظ باسم.."
-
-#: standalone/mousedrake:31
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "الرجاء اختيار نوع الماوس."
-
-#: standalone/mousedrake:44
-#, c-format
-msgid "Emulate third button?"
-msgstr "محاكاة الزر الثالث؟"
-
-#: standalone/mousedrake:61
-#, c-format
-msgid "Mouse test"
-msgstr "اختبار الماوس"
-
-#: standalone/mousedrake:64
-#, c-format
-msgid "Please test your mouse:"
-msgstr "الرجاء اختبار الماوس:"
-
-#: standalone/net_applet:47
-#, c-format
-msgid "Network is up on interface %s"
-msgstr "الشّبكة متصلة على الواجهة %s"
-
-#. -PO: keep the "Configure Network" substring synced with the "Configure Network" message below
-#: standalone/net_applet:50
-#, c-format
-msgid "Network is down on interface %s. Click on \"Configure Network\""
-msgstr "الشّبكة معطّلة على الواجهة %s. اضغط على \"تهيئة الشّبكة\""
-
-#: standalone/net_applet:56 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Connect %s"
-msgstr "اتصال بـ%s"
-
-#: standalone/net_applet:57 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Disconnect %s"
-msgstr "قطع الإتصال بـ %s"
-
-#: standalone/net_applet:58
-#, c-format
-msgid "Monitor Network"
-msgstr "مراقبة الشّبكة"
-
-#: standalone/net_applet:60
-#, c-format
-msgid "Manage wireless networks"
-msgstr ""
-
-#: standalone/net_applet:61
-#, c-format
-msgid "Configure Network"
-msgstr "تهيئة الشبكة"
+msgid "Africa"
+msgstr "جنوب أفريقيا "
-#: standalone/net_applet:63
+#: timezone.pm:187
#, fuzzy, c-format
-msgid "Watched interface"
-msgstr "interfaces"
-
-#: standalone/net_applet:93
-#, c-format
-msgid "Profiles"
-msgstr "لمحات مختصرة"
-
-#: standalone/net_applet:102
-#, c-format
-msgid "Get Online Help"
-msgstr "الحصول على مساعدة على الخطّ"
+msgid "Asia"
+msgstr "النمسا"
-#: standalone/net_applet:335
+#: timezone.pm:188
#, c-format
-msgid "Interactive Firewall automatic mode"
+msgid "Europe"
msgstr ""
-#: standalone/net_applet:340
-#, c-format
-msgid "Always launch on startup"
-msgstr "إطلاق دائما عند البدء"
-
-#: standalone/net_applet:344
+#: timezone.pm:189
#, fuzzy, c-format
-msgid "Wireless networks"
-msgstr "اتّصال لاسلكي"
-
-#: standalone/net_applet:429
-#, fuzzy, c-format
-msgid "Interactive Firewall: intrusion detected"
-msgstr "الجدار الناري النشط: تم اكتشاف تدخّل اقتحام"
-
-#: standalone/net_applet:442
-#, fuzzy, c-format
-msgid "What do you want to do with this attacker?"
-msgstr "هل تريد إضافة المهاجم إلى القائمة السوداء؟"
-
-#: standalone/net_applet:445
-#, c-format
-msgid "Attack details"
-msgstr "تفاصيل الهجوم"
-
-#: standalone/net_applet:449
-#, c-format
-msgid "Attack time: %s"
-msgstr "وقت الهجوم: %s"
-
-#: standalone/net_applet:450
-#, c-format
-msgid "Network interface: %s"
-msgstr "واجهة الشبكة: %s"
-
-#: standalone/net_applet:451
-#, c-format
-msgid "Attack type: %s"
-msgstr "نوع الهجوم: %s"
-
-#: standalone/net_applet:452
-#, c-format
-msgid "Protocol: %s"
-msgstr "البروتوكول: %s"
-
-#: standalone/net_applet:453
-#, c-format
-msgid "Attacker IP address: %s"
-msgstr "عنوان IP للمهاجم: %s"
-
-#: standalone/net_applet:454
-#, c-format
-msgid "Attacker hostname: %s"
-msgstr "اسم المضيف للمهاجم: %s"
-
-#: standalone/net_applet:457
-#, c-format
-msgid "Service attacked: %s"
-msgstr "الخدمة المُهاجمة: %s"
-
-#: standalone/net_applet:458
-#, c-format
-msgid "Port attacked: %s"
-msgstr "المنفذ المُهاجم: %s"
-
-#: standalone/net_applet:460
-#, c-format
-msgid "Type of ICMP attack: %s"
-msgstr "نوع هجوم ICMP: %s"
-
-#: standalone/net_applet:465
-#, c-format
-msgid "Always blacklist (do not ask again)"
-msgstr "إضافة إلى القائمة السوداء دائماً (دون السؤال مجدداً)"
-
-#: standalone/net_monitor:57 standalone/net_monitor:62
-#, c-format
-msgid "Network Monitoring"
-msgstr "مراقبة الشبكة"
-
-#: standalone/net_monitor:98
-#, c-format
-msgid "Global statistics"
-msgstr "الإحصائيات الشّاملة"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Instantaneous"
-msgstr "آنيّ"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Average"
-msgstr "المتوسّط"
-
-#: standalone/net_monitor:102
-#, c-format
-msgid ""
-"Sending\n"
-"speed:"
-msgstr ""
-"سرعة\n"
-"الإرسال:"
-
-#: standalone/net_monitor:103
-#, c-format
-msgid ""
-"Receiving\n"
-"speed:"
-msgstr ""
-"سرعة\n"
-"الاستقبال:"
-
-#: standalone/net_monitor:107
-#, c-format
-msgid ""
-"Connection\n"
-"time: "
-msgstr ""
-"زمن\n"
-"الاتصال:"
-
-#: standalone/net_monitor:114
-#, c-format
-msgid "Use same scale for received and transmitted"
-msgstr "استخدام نفس المقياس للمستقبَل وللمرسَل"
-
-#: standalone/net_monitor:133
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "الرجاء الانتظار، اختبار الإتصال..."
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "قطع الاتصال بالإنترنت"
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Connecting to Internet "
-msgstr "جاري الاتصال بالإنترنت"
-
-#: standalone/net_monitor:226
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "فشل قطع اتصال الإنترنت."
-
-#: standalone/net_monitor:227
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "تمّ قطع اتصال الإنترنت."
-
-#: standalone/net_monitor:229
-#, c-format
-msgid "Connection complete."
-msgstr "تم الإتصال."
-
-#: standalone/net_monitor:230
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandriva Linux Control Center."
-msgstr ""
-"فشل الاتّصال.\n"
-"تحقق من تهيئتك في مركز تحكّم ماندريبا لينكس."
-
-#: standalone/net_monitor:335
-#, c-format
-msgid "Color configuration"
-msgstr "تهيئة الألوان"
-
-#: standalone/net_monitor:383 standalone/net_monitor:403
-#, c-format
-msgid "sent: "
-msgstr "مُرسل: "
-
-#: standalone/net_monitor:390 standalone/net_monitor:407
-#, c-format
-msgid "received: "
-msgstr "مُستقبل: "
-
-#: standalone/net_monitor:397
-#, c-format
-msgid "average"
-msgstr "متوسط"
-
-#: standalone/net_monitor:400
-#, c-format
-msgid "Local measure"
-msgstr "إجراء محلي"
-
-#: standalone/net_monitor:461
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr "تحذير، تم اكتشاف اتصال إنترنت آخر، ربما يستخدم شبكتك"
-
-#: standalone/net_monitor:472
-#, c-format
-msgid "No internet connection configured"
-msgstr "ليس هناك أي اتصال إنترنت مهيأ"
-
-#: standalone/printerdrake:76
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "قراءة بيانات الطابعات المثبتة..."
-
-#: standalone/printerdrake:128
-#, c-format
-msgid "%s Printer Management Tool"
-msgstr "أداة إدارة الطّابعة لـ%s"
-
-#: standalone/printerdrake:142 standalone/printerdrake:143
-#: standalone/printerdrake:144 standalone/printerdrake:145
-#: standalone/printerdrake:153 standalone/printerdrake:154
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Actions"
-msgstr "/أ_عمال"
-
-#: standalone/printerdrake:142 standalone/printerdrake:154
-#, c-format
-msgid "/_Add Printer"
-msgstr "/إ_ضافة طابعة"
-
-#: standalone/printerdrake:143
-#, c-format
-msgid "/Set as _Default"
-msgstr "/تعيين كا_فتراضي"
-
-#: standalone/printerdrake:144
-#, c-format
-msgid "/_Edit"
-msgstr "/تح_رير"
-
-#: standalone/printerdrake:145
-#, c-format
-msgid "/_Delete"
-msgstr "/ح_ذف"
-
-#: standalone/printerdrake:146
-#, c-format
-msgid "/_Expert mode"
-msgstr "/وضع ال_خبير"
-
-#: standalone/printerdrake:151
-#, c-format
-msgid "/_Refresh"
-msgstr "/ت_حديث"
+msgid "North America"
+msgstr "جنوب أفريقيا "
-#: standalone/printerdrake:158
+#: timezone.pm:190
#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_تهيئة CUPS"
+msgid "Oceania"
+msgstr "أوقيانيا"
-#: standalone/printerdrake:171
+#: timezone.pm:191
#, fuzzy, c-format
-msgid "/Configure _Auto Administration"
-msgstr "الإدارة عن بعد"
-
-#: standalone/printerdrake:194
-#, c-format
-msgid "Search:"
-msgstr "بحث:"
-
-#: standalone/printerdrake:197
-#, c-format
-msgid "Apply filter"
-msgstr "تطبيق المرشّح"
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Def."
-msgstr "Def."
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Printer Name"
-msgstr "إسم الطّابعة"
-
-#: standalone/printerdrake:224
-#, c-format
-msgid "Connection Type"
-msgstr "نوع الوصلة"
-
-#: standalone/printerdrake:231
-#, c-format
-msgid "Server Name"
-msgstr "إسم الخادم"
-
-#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add Printer"
-msgstr "إضافة طابعة"
-
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "إضافة طابعة جديدة إلى النّظام"
-
-#. -PO: "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set as default"
-msgstr "تعيين كافتراضي"
-
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "تعيين الطّابعة المختارة كطابعة افتراضية"
-
-#: standalone/printerdrake:245
-#, c-format
-msgid "Edit selected printer"
-msgstr "تعديل الطّابعة المختارة"
-
-#: standalone/printerdrake:248
-#, c-format
-msgid "Delete selected printer"
-msgstr "حذف الطّابعة المختارة"
-
-#: standalone/printerdrake:251
-#, c-format
-msgid "Refresh the list"
-msgstr "تحديث القائمة"
-
-#. -PO: "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS"
-msgstr "تهيئة CUPS"
-
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "تهيئة نظام الطّباعة CUPS"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Enabled"
-msgstr "مُمكّن"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Disabled"
-msgstr "معطّل"
-
-#: standalone/printerdrake:596
-#, c-format
-msgid "Authors: "
-msgstr "المؤلفون: "
-
-#. -PO: here %s is the version number
-#: standalone/printerdrake:606
-#, c-format
-msgid "Printer Management %s"
-msgstr "إدارة الطّابعة %s"
-
-#: standalone/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؟"
-
-#: standalone/scannerdrake:55
-#, c-format
-msgid "Aborting Scannerdrake."
-msgstr "إجهاض Scannerdrake."
-
-#: standalone/scannerdrake:60
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr "تعذر تثبيت الحزم المطلوبة لإعداد الماسح الضّوئي باستخدام Scannerdrake."
-
-#: standalone/scannerdrake:61
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "لن يتمّ تشغيل Scannerdrake الآن."
-
-#: standalone/scannerdrake:67 standalone/scannerdrake:508
-#, c-format
-msgid "Searching for configured scanners..."
-msgstr "البحث عن ماسحات ضوئية معدّة..."
-
-#: standalone/scannerdrake:71 standalone/scannerdrake:512
-#, c-format
-msgid "Searching for new scanners..."
-msgstr "البحث عن ماسحات ضوئية جديدة..."
-
-#: standalone/scannerdrake:79 standalone/scannerdrake:534
-#, c-format
-msgid "Re-generating list of configured scanners..."
-msgstr "جاري إعادة توليد قائمة الماسحات الضوئية المعدّة..."
-
-#: standalone/scannerdrake:101
-#, c-format
-msgid "The %s is not supported by this version of %s."
-msgstr "الـ%s غير مدعوم من قبل هذا الإصدار من %s."
-
-#: standalone/scannerdrake:104
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s تم ايجادها على %s، هل تريد تهيئتها آلياً؟"
-
-#: standalone/scannerdrake:116
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr "%s غير موجودة في قاعدة بيانات الماسحات الضوئية، هل تريد تهيئتها يدوياً؟"
-
-#: standalone/scannerdrake:131
-#, c-format
-msgid "Select a scanner model"
-msgstr "اختيار طراز الماسح الضوئي"
-
-#: standalone/scannerdrake:132
-#, c-format
-msgid " ("
-msgstr " )"
-
-#: standalone/scannerdrake:133
-#, c-format
-msgid "Detected model: %s"
-msgstr "تم اكتشاف الطراز: %s"
-
-#: standalone/scannerdrake:136
-#, c-format
-msgid "Port: %s"
-msgstr "المنفذ: %s"
-
-#: standalone/scannerdrake:138 standalone/scannerdrake:141
-#, c-format
-msgid " (UNSUPPORTED)"
-msgstr " (غير مدعوم)"
-
-#: standalone/scannerdrake:144
-#, c-format
-msgid "The %s is not supported under Linux."
-msgstr "ال%s غير مدعوم ضمن لينكس."
-
-#: standalone/scannerdrake:171 standalone/scannerdrake:185
-#, c-format
-msgid "Do not install firmware file"
-msgstr "عدم تثبيت ملفّ firmware"
-
-#: standalone/scannerdrake:175 standalone/scannerdrake:227
-#, c-format
-msgid ""
-"It is possible that your %s needs its firmware to be uploaded everytime when "
-"it is turned on."
-msgstr "من الممكن أنّ %s يحتاج إلى تحميل firmware الخاصّ به في كلّ مرّة يعمل بها."
-
-#: standalone/scannerdrake:176 standalone/scannerdrake:228
-#, c-format
-msgid "If this is the case, you can make this be done automatically."
-msgstr "إن كانت هذه هي المشكلة، يمكنك جعل هذا يحدث تلقائيّاً."
-
-#: standalone/scannerdrake:177 standalone/scannerdrake:231
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware file for your scanner so that it "
-"can be installed."
-msgstr ""
-"كي تقوم بذلك، عليك بتزويد ملف firmware لماسحتك الضّوئيّة حتّى يمكن تثبيتها."
-
-#: standalone/scannerdrake:178 standalone/scannerdrake:232
-#, 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 ""
-"ستجد الملف على القرص المدمج أو المرن الموجود مع ماسحتك الضّوئيّة، على موقع "
-"الشّركة المصنّعة، أو على تجزيء ويندوز."
-
-#: standalone/scannerdrake:180 standalone/scannerdrake:239
-#, c-format
-msgid "Install firmware file from"
-msgstr "تثبيت ملفّ البرمجيات المضمنة من"
-
-#: standalone/scannerdrake:200
-#, c-format
-msgid "Select firmware file"
-msgstr "اختيار ملفّ البرمجيات المضمنة"
-
-#: standalone/scannerdrake:203 standalone/scannerdrake:262
-#, c-format
-msgid "The firmware file %s does not exist or is unreadable!"
-msgstr "ملفّ البرمجيات المضمنة %s غير موجود أو غير قابل للقراءة!"
-
-#: standalone/scannerdrake:226
-#, c-format
-msgid ""
-"It is possible that your scanners need their firmware to be uploaded "
-"everytime when they are turned on."
-msgstr "قد تحتاج ماسحاتك إلى تحميل برمجياتها المضمنة عند كلّ تشغيل."
-
-#: standalone/scannerdrake:230
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware files for your scanners so that it "
-"can be installed."
-msgstr "كيف تقوم بهذا، عليك بتزويد ملفّات البرمجيات المضمنة لماسحاتك للتّثبيت."
-
-#: standalone/scannerdrake:233
-#, 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 ""
-"إن كنت ثبتّ البرمجيات المضمنة لماسحك، يمكنك تحديثها هنا بتزويد ملفّ البرمجيات "
-"المضمنة الجديد."
-
-#: standalone/scannerdrake:235
-#, c-format
-msgid "Install firmware for the"
-msgstr "تثبيت البرمجيات المضمنة لـ"
-
-#: standalone/scannerdrake:258
-#, c-format
-msgid "Select firmware file for the %s"
-msgstr "اختيار ملفّ البرمجيات المضمنة لـ%s"
-
-#: standalone/scannerdrake:276
-#, c-format
-msgid "Could not install the firmware file for the %s!"
-msgstr "تعذر تثبيت ملفّ البرمجيات المضمنة لـ%s!"
-
-#: standalone/scannerdrake:289
-#, c-format
-msgid "The firmware file for your %s was successfully installed."
-msgstr "تمّ تثبيت ملفّ البرمجيات المضمنة لـ%s بنجاح"
-
-#: standalone/scannerdrake:299
-#, c-format
-msgid "The %s is unsupported"
-msgstr "الـ%s غير مدعوم"
-
-#: standalone/scannerdrake:304
-#, 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 في قسم العتاد."
-
-#: standalone/scannerdrake:322
-#, c-format
-msgid "Setting up kernel modules..."
-msgstr "إعداد وحدات النواة..."
-
-#: standalone/scannerdrake:332 standalone/scannerdrake:339
-#: standalone/scannerdrake:369
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "اكتشاف المنافذ المتوفرة آلياً"
-
-#: standalone/scannerdrake:334 standalone/scannerdrake:380
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "الرجاء اختيار الجهاز المتصل به %s"
-
-#: standalone/scannerdrake:335
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(ملحوظة: المنافذ المتوازية لا يمكن اكتشافها منها آلياً)"
-
-#: standalone/scannerdrake:337 standalone/scannerdrake:382
-#, c-format
-msgid "choose device"
-msgstr "اختيار الجهاز "
-
-#: standalone/scannerdrake:371
-#, c-format
-msgid "Searching for scanners..."
-msgstr "البحث عن الماسحات الضوئية..."
-
-#: standalone/scannerdrake:407 standalone/scannerdrake:414
-#, c-format
-msgid "Attention!"
-msgstr "انتباه!"
-
-#: standalone/scannerdrake:408
-#, 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 ""
-"لا يمكن تهيئة %s الخاص بك بشكل آلي بالكامل.\n"
-"\n"
-"بحاجة إلى تعديلات يدويّة. الرجاء تحرير ملف التهيئة /etc/sane.d/%s.conf. "
-
-#: standalone/scannerdrake:409 standalone/scannerdrake:418
-#, c-format
-msgid ""
-"More info in the driver's manual page. Run the command \"man sane-%s\" to "
-"read it."
-msgstr ""
-"المزيد من المعلومات في صفحة كتيّب المُشغّل. لقراءة الكتيّب يجب تنفيذ الأمر \"man "
-"sane-%s\"."
-
-#: standalone/scannerdrake:411 standalone/scannerdrake:420
-#, c-format
-msgid ""
-"After that you may scan documents using \"XSane\" or \"Kooka\" from "
-"Multimedia/Graphics in the applications menu."
-msgstr ""
-"يمكنك الآن مسح المستندات باستخدام \"XSane\" أو \"Kooka\" من الوسائط المتعدّدة/"
-"برامج رسومية في قائمة التطبيقات."
-
-#: standalone/scannerdrake:415
-#, c-format
-msgid ""
-"Your %s has been configured, but it is possible that additional manual "
-"adjustments are needed to get it to work. "
-msgstr ""
-"تمت تهيئة %s، ولكن من المحتمل أن تكون هناك حاجة إلى تعديلات يدوية لجعله "
-"يعمل. "
-
-#: standalone/scannerdrake:416
-#, 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 الرئيسية أو إن لم "
-"يعمل بشكل صحيح،"
-
-#: standalone/scannerdrake:417
-#, c-format
-msgid "edit the configuration file /etc/sane.d/%s.conf. "
-msgstr "فيجب تحرير ملف التهيئة /etc/sane.d/%s.conf. "
-
-#: standalone/scannerdrake:423
-#, 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\" من الوسائط المتعدّدة/"
-"برامج رسومية في قائمة التطبيقات."
-
-#: standalone/scannerdrake:448
-#, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr ""
-"الماسحات الضوئية التالية\n"
-"\n"
-"%s\n"
-"متوفرة على لنظامك.\n"
-
-#: standalone/scannerdrake:449
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr ""
-"الماسح الضوئي التالي\n"
-"\n"
-"%s\n"
-"متوفر على نظامك.\n"
-
-#: standalone/scannerdrake:452 standalone/scannerdrake:455
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "لا توجد ماسحات ضوئية متوفرة على نظامك.\n"
-
-#: standalone/scannerdrake:469
-#, c-format
-msgid "Search for new scanners"
-msgstr "البحث عن ماسحات ضوئية جديدة"
-
-#: standalone/scannerdrake:475
-#, c-format
-msgid "Add a scanner manually"
-msgstr "إضافة ماسح ضوئي يدوياً"
-
-#: standalone/scannerdrake:482
-#, c-format
-msgid "Install/Update firmware files"
-msgstr "تثبيت/تحديث ملفّات firmware"
-
-#: standalone/scannerdrake:488
-#, c-format
-msgid "Scanner sharing"
-msgstr "مشاركة الماسحات الضوئية"
-
-#: standalone/scannerdrake:547 standalone/scannerdrake:712
-#, c-format
-msgid "All remote machines"
-msgstr "كل الماكينات البعيدة"
-
-#: standalone/scannerdrake:559 standalone/scannerdrake:862
-#, c-format
-msgid "This machine"
-msgstr "هذه الماكينة"
-
-#: standalone/scannerdrake:599
-#, 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 ""
-"يمكنك هنا اختيار إذا ما كانت الماسحات الضوئيّة المتّصلة بهذا الجهاز يمكن "
-"الوصول إليها من الأجهزة البعيدة وعن طريق أي أجهزة بعيدة."
-
-#: standalone/scannerdrake:600
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"يمكنك أيضاً أن تقرر هنا إذا كانت الماسحات الضوئية على الماكينات البعيدة يجب "
-"أن تكون متوفرة لهذه الماكينة."
-
-#: standalone/scannerdrake:603
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr "الماسحات الضوئية على هذه الماكينة متوفرة للحاسبات الأخرى"
-
-#: standalone/scannerdrake:605
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "مشاركة الطابعات على المضيفين:"
-
-#: standalone/scannerdrake:619
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "استخدام الماسحات الضوئية على الحاسبات البعيدة"
-
-#: standalone/scannerdrake:622
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "استخدام الماسحات الضوئية على المضيفات: "
-
-#: standalone/scannerdrake:649 standalone/scannerdrake:721
-#: standalone/scannerdrake:871
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "مشاركة الماسحات الضوئية المحلية"
-
-#: standalone/scannerdrake:650
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr "توجد ماكينات يجب أن تكون الماسحات الضوئية الموصولة محلياً متوفرة لها:"
-
-#: standalone/scannerdrake:661 standalone/scannerdrake:811
-#, c-format
-msgid "Add host"
-msgstr "إضافة مضيف"
-
-#: standalone/scannerdrake:667 standalone/scannerdrake:817
-#, c-format
-msgid "Edit selected host"
-msgstr "تحرير المضيف المختار"
-
-#: standalone/scannerdrake:676 standalone/scannerdrake:826
-#, c-format
-msgid "Remove selected host"
-msgstr "حذف المضيف المختار"
-
-#: standalone/scannerdrake:700 standalone/scannerdrake:708
-#: standalone/scannerdrake:713 standalone/scannerdrake:759
-#: standalone/scannerdrake:850 standalone/scannerdrake:858
-#: standalone/scannerdrake:863 standalone/scannerdrake:909
-#, c-format
-msgid "Name/IP address of host:"
-msgstr "عنوان IP/اسم المضيف:"
-
-#: standalone/scannerdrake:722 standalone/scannerdrake:872
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr "اختيار المضيف الذي يجب أن تتوفر له الماسحات الضوئية المحلية:"
-
-#: standalone/scannerdrake:733 standalone/scannerdrake:883
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "الرجاء إدخال اسم المضيف أو عنوان IP.\n"
-
-#: standalone/scannerdrake:744 standalone/scannerdrake:894
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "هذا المضيف موجود في القائمة مسبقاً، لا يمكن إضافته مرة أخرى.\n"
-
-#: standalone/scannerdrake:799
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "استخدام الماسحات الضوئية البعيدة"
-
-#: standalone/scannerdrake:800
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "توجد ماكينات يمكن استخدام الماسحات الضوئية منها:"
-
-#: standalone/scannerdrake:957
-#, 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؟"
-
-#: standalone/scannerdrake:961 standalone/scannerdrake:965
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "ماسحاتك لن تكون متوفّرة على الشّبكة."
-
-#: standalone/service_harddrake:113
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "تمت إزالة بعض الأجهزة في فئة العتاد \"%s\":\n"
-
-#: standalone/service_harddrake:114
-#, c-format
-msgid "- %s was removed\n"
-msgstr "- تمّت إزالة %s\n"
-
-#: standalone/service_harddrake:117
-#, c-format
-msgid "Some devices were added: %s\n"
-msgstr "تمّت إضافة بعض الأجهزة: %s\n"
-
-#: standalone/service_harddrake:118
-#, c-format
-msgid "- %s was added\n"
-msgstr "- تمّت إضافة %s\n"
-
-#: standalone/service_harddrake:235
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "جاري جس العتاد"
-
-#: standalone/service_harddrake_confirm:7
-#, c-format
-msgid "Hardware changes in \"%s\" class (%s seconds to answer)"
-msgstr "تغييرات العتاد في الصّنف \"%s\" (%s ثانية للإجابة("
-
-#: standalone/service_harddrake_confirm:8
-#, c-format
-msgid "Do you want to run the appropriate config tool?"
-msgstr "هل تريد تشغيل أداة التّهيئة الملائمة؟"
-
-#: steps.pm:14
-#, c-format
-msgid "Language"
-msgstr "اللّغة"
-
-#: steps.pm:15
-#, c-format
-msgid "License"
-msgstr "الرخصة"
-
-#: steps.pm:16
-#, c-format
-msgid "Configure mouse"
-msgstr "تهيئة الماوس"
-
-#: steps.pm:17
-#, c-format
-msgid "Hard drive detection"
-msgstr "اكتشاف القرص الصّلب"
-
-#: steps.pm:18
-#, c-format
-msgid "Select installation class"
-msgstr "اختيار صنف التّثبيت"
-
-#: steps.pm:19
-#, c-format
-msgid "Choose your keyboard"
-msgstr "اختيار لوحة المفاتيح"
-
-#: steps.pm:22
-#, c-format
-msgid "Format partitions"
-msgstr "تنسيق التجزيئات"
-
-#: steps.pm:23
-#, c-format
-msgid "Choose packages to install"
-msgstr "اختيار الحزم المطلوب تثبيتها"
-
-#: steps.pm:24
-#, c-format
-msgid "Install system"
-msgstr "تثبيت النّظام"
-
-#: steps.pm:25
-#, c-format
-msgid "Administrator password"
-msgstr "كلمة مرور المدير"
-
-#: steps.pm:26
-#, c-format
-msgid "Add a user"
-msgstr "إضافة مستخدم"
-
-#: steps.pm:27
-#, c-format
-msgid "Configure networking"
-msgstr "تهيئة الشّبكة"
-
-#: steps.pm:28
-#, c-format
-msgid "Install bootloader"
-msgstr "تثبيت محمِّل الإقلاع"
-
-#: steps.pm:29
-#, c-format
-msgid "Configure X"
-msgstr "تهيئة X"
+msgid "South America"
+msgstr "جنوب أفريقيا "
-#: steps.pm:31
+#: timezone.pm:200
#, c-format
-msgid "Configure services"
-msgstr "تهيئة الخدمات"
+msgid "Hong Kong"
+msgstr "هونج كونج"
-#: steps.pm:32
+#: timezone.pm:237
#, c-format
-msgid "Install updates"
-msgstr "تثبيت التحديثات"
+msgid "Russian Federation"
+msgstr "روسيا الإتحادية"
-#: steps.pm:33
+#: timezone.pm:245
#, c-format
-msgid "Exit install"
-msgstr "الخروج من التّثبيت"
+msgid "Yugoslavia"
+msgstr "يوغوسلافيا"
-#: ugtk2.pm:899
+#: ugtk2.pm:788
#, c-format
msgid "Is this correct?"
msgstr "هل هذا صحيح؟"
-#: ugtk2.pm:959
+#: ugtk2.pm:848
#, c-format
msgid "No file chosen"
msgstr "لم يتم اختيار أي ملف"
-#: ugtk2.pm:961
+#: ugtk2.pm:850
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "لقد اخترت ملفاً، وليس دليلاً"
-#: ugtk2.pm:963
+#: ugtk2.pm:852
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "لقد اخترت دليلاً، وليس ملفاً"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such directory"
msgstr "لا دليل كذلك"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such file"
msgstr "لا ملف كذلك"
-#: ugtk2.pm:1046
+#: ugtk2.pm:933
#, c-format
msgid "Expand Tree"
msgstr "توسيع الشّجرة"
-#: ugtk2.pm:1047
+#: ugtk2.pm:934
#, c-format
msgid "Collapse Tree"
msgstr "ضمّ الفروع"
-#: ugtk2.pm:1048
+#: ugtk2.pm:935
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "تبديل بين فرز السّرد أو المجموعة"
@@ -26622,1784 +6670,23 @@ msgstr ""
msgid "Installation failed"
msgstr "فشل التّثبيت"
-#~ msgid ""
-#~ "Copyright (C) 2001-2002 by Mandriva \n"
-#~ "\n"
-#~ "\n"
-#~ " DUPONT Sebastien (original version)\n"
-#~ "\n"
-#~ " CHAUMETTE Damien <dchaumette@mandriva.com>\n"
-#~ "\n"
-#~ " VIGNAUD Thierry <tvignaud@mandriva.com>"
-#~ msgstr ""
-#~ "حقوق النّسخ 2001-2002 لماندريبا \n"
-#~ "\n"
-#~ "\n"
-#~ " DUPONT Sebastien (النّسخة الأصليّة)\n"
-#~ "\n"
-#~ " CHAUMETTE Damien <dchaumette@mandriva.com>\n"
-#~ "\n"
-#~ " VIGNAUD Thierry <tvignaud@mandriva.com>"
-
-#~ msgid "click here if you are sure."
-#~ msgstr "اضغط هنا إذا كنت متأكدا."
-
-#~ msgid "here if no."
-#~ msgstr "هنا إن لم تكن متأكدا."
-
-#~ msgid "Remove List"
-#~ msgstr "حذف القائمة"
-
-#~ msgid "Account:"
-#~ msgstr "حساب :"
-
-#~ msgid "Hostname:"
-#~ msgstr "أسم المضيف:"
-
-#, fuzzy
-#~ msgid "Cancel setup"
-#~ msgstr "إلغاء"
-
-#~ msgid ""
-#~ " - Create Etherboot Enabled Boot Images:\n"
-#~ " \tTo boot a kernel via etherboot, a special kernel/initrd image "
-#~ "must be created.\n"
-#~ " \tmkinitrd-net does much of this work and drakTermServ is just a "
-#~ "graphical \n"
-#~ " \tinterface to help manage/customize these images. To create the "
-#~ "file \n"
-#~ " \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as "
-#~ "an include in \n"
-#~ " \tdhcpd.conf, you should create the etherboot images for at least "
-#~ "one full kernel."
-#~ msgstr ""
-#~ " - أنشئ صور إقلاع ممكّنة لـEtherboot:\n"
-#~ " \tلإقلاع نواة عبر etherboot، يجب إنشاء صورة نواة/initrd\n"
-#~ ". \tيقوم mkinitrd-net بمعظم هذا العمل و drakTermServ هو مجرّد واجهة "
-#~ "رسوميّة\n"
-#~ " \tلتساعدك بإدارة/تخصيص هذه الصّور. كي تُنشئ الملفّ \n"
-#~ " \t/etc/dhcpd.conf.etherboot-pcimap.include والذي يسحب على شكل "
-#~ "مُضاف في \n"
-#~ " \tdhcpd.conf، يجب عليك إنشاء صور etherboot لنواة كاملة واحدة على "
-#~ "الأقل."
-
-#~ msgid ""
-#~ " - Maintain /etc/dhcpd.conf:\n"
-#~ " \tTo net boot clients, each client needs a dhcpd.conf entry, "
-#~ "assigning an IP \n"
-#~ " \taddress and net boot images to the machine. drakTermServ helps "
-#~ "create/remove \n"
-#~ " \tthese entries.\n"
-#~ "\t\t\t\n"
-#~ " \t(PCI cards may omit the image - etherboot will request the "
-#~ "correct image. \n"
-#~ "\t\t\tYou should also consider that when etherboot looks for the images, "
-#~ "it expects \n"
-#~ "\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk."
-#~ "nbi).\n"
-#~ "\t\t\t \n"
-#~ " \tA typical dhcpd.conf stanza to support a diskless client looks "
-#~ "like:"
-#~ msgstr ""
-#~ " - صيانة /etc/dhcpd.conf:\n"
-#~ " \tلتقوم بإقلاع العملاء عبر الشّبكة، يحتاج كلّ عميل إلى مُدخل dhcpd."
-#~ "conf، يعيّن عنون IP \n"
-#~ " \tوصور الإقلاع الشّبكي للماكينة. يساعد drakTermServبإنشاء/إزالة \n"
-#~ " \tهذه المُدخلات.\n"
-#~ "\t\t\t\n"
-#~ " \t(قد تحذف بطاقات PCI الصّورة - يقوم etherboot بطلب الصّورة "
-#~ "الصّحيحة.\n"
-#~ "\t\t\tعليك أيضاً اعتبار أنّه عندما يبحث etherboot عن الصّور، فإنّه يتوقّع. \n"
-#~ "\t\t\tسماء شبية بـboot-3c59x.nbi، بدلاً من boot-3c59x.2.4.19-16mdk.nbi).\n"
-#~ "\t\t\t\n"
-#~ " \tتنسيق ملف dhcpd.conf المفترض لدعم العملاء غير ذي الأقراص يظهر "
-#~ "على شكل:"
-
-#~ msgid ""
-#~ " While you can use a pool of IP addresses, rather than setup a "
-#~ "specific entry for\n"
-#~ " a client machine, using a fixed address scheme facilitates using "
-#~ "the functionality\n"
-#~ " of client-specific configuration files that ClusterNFS provides.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#type' entry is only used by drakTermServ. Clients "
-#~ "can either be 'thin'\n"
-#~ " or 'fat'. Thin clients run most software on the server via "
-#~ "XDMCP, while fat clients run \n"
-#~ " most software on the client machine. A special inittab, %s is\n"
-#~ " written for thin clients. System config files xdm-config, kdmrc, "
-#~ "and gdm.conf are \n"
-#~ " modified if thin clients are used, to enable XDMCP. Since there "
-#~ "are security issues in \n"
-#~ " using XDMCP, hosts.deny and hosts.allow are modified to limit "
-#~ "access to the local\n"
-#~ " subnet.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#hdw_config' entry is also only used by drakTermServ. "
-#~ "Clients can either \n"
-#~ " be 'true' or 'false'. 'true' enables root login at the client "
-#~ "machine and allows local \n"
-#~ " hardware configuration of sound, mouse, and X, using the 'drak' "
-#~ "tools. This is enabled \n"
-#~ " by creating separate config files associated with the client's IP "
-#~ "address and creating \n"
-#~ " read/write mount points to allow the client to alter the file. "
-#~ "Once you are satisfied \n"
-#~ " with the configuration, you can remove root login privileges from "
-#~ "the client.\n"
-#~ "\t\t\t\n"
-#~ " Note: You must stop/start the server after adding or changing "
-#~ "clients."
-#~ msgstr ""
-#~ " في حين أنّه يمكنك استخدام مجموعة من عناوين IP، بدلاً من إعداد مُدخل "
-#~ "محدّد\n"
-#~ " لماكينة العميل، فإن استخدام مخطَّط عناوين ثابتة يسهّل استخدام وظيفة\n"
-#~ " ملفّات التّهيئة الخاصّة لكل عميل والتي يزوّدها ClusterNFS.\n"
-#~ "\t\t\t\n"
-#~ " ملاحظة: المُدخل '#type' يستخدمه drakTermServ فقط. يمكن أن يكون "
-#~ "العملاء إمّا 'نحاف'\n"
-#~ " أو 'ثخان'. العملاء النّحاف تشغّل معظم البرنامج على الخادم عبر "
-#~ "XDMCP، بينما يقوم العملاء الثّخان بتشغيل \n"
-#~ " معظم البرامج على ماكينة العميل. يتمّ كتابة inittab، %s\n"
-#~ "للعملاء النّحاف. ملفّات تهيئة النّظام xdm-config، وkdmrc، و gdm.conf يتمّ\n"
-#~ " تعديلها عند استخدام العملاء النّحاف، لتمكين XDMCP. حيث أنّ هناك "
-#~ "مسائل أمنيّة في\n"
-#~ " استخدام XDMCP، يتمّ تعديل hosts.deny و hosts.allow للحدّ من الوصول "
-#~ "إلى الشبكة الفرعيّة\n"
-#~ " المحليّة.\n"
-#~ "\t\t\t\n"
-#~ " ملاحظة: المُدخل '#hdw_config' يستخدمه أيضاً فقط عملاء "
-#~ "drakTermServ. يمكن أن يكون العملاء\n"
-#~ "إمّا 'true' أو false'. تمكّن 'true' دخول المستخدم الجذر عندماكينة العميل "
-#~ "وتسمح بتهيئة العتاد\n"
-#~ " المحلّي من صوت، وماوس، و X، باستخدام أدوات 'drak'. يُمكن هذا\n"
-#~ " بإنشاء ملفّات تهيئة منفصلة مرتبطة بعنوان IP الخاص بالعميل وإنشاء \n"
-#~ " أماكن تركيب كتابة/قراءة لتسمح للمستخدمين بتبديل الملفّات. حالما "
-#~ "كنت راضياً بالتّهيئة، يمكنك إزالة صلاحيات دخول المستخدم الجذر من العميل.\n"
-#~ "\t\t\t\n"
-#~ " ملاحظة: يجب عليك إيقاف/تشغيل الخادم بعد القيام بإضافة أو تغيير "
-#~ "العملاء."
-
-#~ msgid ""
-#~ " - Maintain /etc/exports:\n"
-#~ " \tClusternfs allows export of the root filesystem to diskless "
-#~ "clients. drakTermServ\n"
-#~ " \tsets up the correct entry to allow anonymous access to the root "
-#~ "filesystem from\n"
-#~ " \tdiskless clients.\n"
-#~ "\n"
-#~ " \tA typical exports entry for clusternfs is:\n"
-#~ " \t\t\n"
-#~ " \t/\t\t\t\t\t(ro,all_squash)\n"
-#~ " \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-#~ "\t\t\t\n"
-#~ " \tWith SUBNET/MASK being defined for your network."
-#~ msgstr ""
-#~ " - قُم بصيانة /etc/exports:\n"
-#~ " \tيسمح Clusternfs بتصدير نظام الملفّات root إلى العملاء اللّاقرصيّة."
-#~ "drakTermServ\n"
-#~ " \tيقوم بإعداد المُدخل الصّحيح للسّماح بوصول المستخدم anonymous إلى "
-#~ "نظام الملفّات root من\n"
-#~ " \tالعملاء اللّاقرصيّون.\n"
-#~ "\n"
-#~ " \tالمُدخل الاعتيادي للتّصدير لـclusternfs هو:\n"
-#~ " \t\t\n"
-#~ " \t/\t\t\t\t\t(ro,all_squash)\n"
-#~ " \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-#~ "\t\t\t\n"
-#~ " \tمع تعريف SUBNET/MASK لشبكتك."
-
-#~ msgid ""
-#~ " - Maintain %s:\n"
-#~ " \tFor users to be able to log into the system from a diskless "
-#~ "client, their entry in\n"
-#~ " \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
-#~ " \thelps in this respect by adding or removing system users from "
-#~ "this file."
-#~ msgstr ""
-#~ " - قُم بصيانة %s:\n"
-#~ " \tكي يستطيع المستخدمون الدّخول إلى النّظام من عميل غير ذي قرص، يجب "
-#~ "أن يُكرّر المُدخل\n"
-#~ " \tفي /etc/shadow في %s. drakTermServ\n"
-#~ " \tيساعد بهذا الأمر بإضافة أو إزالة مستخدمي النّظام من هذا الملفّ."
-
-#~ msgid ""
-#~ " - Per client %s:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tdrakTermServ will help create these files."
-#~ msgstr ""
-#~ " - %s لكلّ عميل:\n"
-#~ " \tخلال clusternfs، كل عميل غير ذي قرص يمكن أن يكون له ملفّات "
-#~ "تهيئته الخاصّة له.\n"
-#~ " \tعلى نظام الملفّات root للخادم. بالسّماح بتهيئة عتاد العميل "
-#~ "المحلّي، \n"
-#~ " \tسيساعد drakTermServ بإنشاء هذه الملفّات."
-
-#~ msgid ""
-#~ " - Per client system configuration files:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tclients can customize files such as /etc/modules.conf, /etc/"
-#~ "sysconfig/mouse, \n"
-#~ " \t/etc/sysconfig/keyboard on a per-client basis.\n"
-#~ "\n"
-#~ " Note: Enabling local client hardware configuration does enable "
-#~ "root login to the terminal \n"
-#~ " server on each client machine that has this feature enabled. "
-#~ "Local configuration can be\n"
-#~ " turned back off, retaining the configuration files, once the "
-#~ "client machine is configured."
-#~ msgstr ""
-#~ " - ملفّات تهيئة النّظام لكلّ عميل:\n"
-#~ " \tخلال clusternfs، كل عميل غير ذي قرص يمكن أن يكون له ملفّات "
-#~ "تهيئته الخاصّة له.\n"
-#~ " \tعلى نظام الملفّات root للخادم. بالسّماح بتهيئة عتاد العميل "
-#~ "المحلّي، \n"
-#~ " \tيمكن للعملاء تخصيص الملفّات مثل /etc/modules.conf، /etc/"
-#~ "sysconfig/mouse، \n"
-#~ " \t/etc/sysconfig/keyboard بناء على كلّ عميل.\n"
-#~ "\n"
-#~ " ملاحظة: تمكين تهيئة عتاد العميل المحلّي لا يمكّن المستخدم الجذر من "
-#~ "الدّخول إلى الخادم الطّرفي \n"
-#~ " على ماكينة كلّ عميل مُكّنت فيها هذه الميزة. التّهيئة المحليّة يمكن "
-#~ "أن\n"
-#~ " تُعطّل مجدّداً، للحفاظ على ملفّات التّهيئة، حالما تتمّ تهيئة ماكينة "
-#~ "العميل.machine is configured."
-
-#~ msgid ""
-#~ " - /etc/xinetd.d/tftp:\n"
-#~ " \tdrakTermServ will configure this file to work in conjunction "
-#~ "with the images created\n"
-#~ " \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve "
-#~ "up the boot image to \n"
-#~ " \teach diskless client.\n"
-#~ "\n"
-#~ " \tA typical TFTP configuration file looks like:\n"
-#~ " \t\t\n"
-#~ " \tservice tftp\n"
-#~ "\t\t\t{\n"
-#~ " disable = no\n"
-#~ " socket_type = dgram\n"
-#~ " protocol = udp\n"
-#~ " wait = yes\n"
-#~ " user = root\n"
-#~ " server = /usr/sbin/in.tftpd\n"
-#~ " server_args = -s /var/lib/tftpboot\n"
-#~ " \t}\n"
-#~ " \t\t\n"
-#~ " \tThe changes here from the default installation are changing the "
-#~ "disable flag to\n"
-#~ " \t'no' and changing the directory path to /var/lib/tftpboot, "
-#~ "where mkinitrd-net\n"
-#~ " \tputs its images."
-#~ msgstr ""
-#~ " - /etc/xinetd.d/tftp:\n"
-#~ " \tسيقوم drakTermServ بتهيئة هذا الملف للعمل مع الصور المنشأة.\n"
-#~ " \tمن قبل mkinitrd-net، والمُدخلات في /etc/dhcpd.conf، لتقديمصورة "
-#~ "الإقلاع لكل \n"
-#~ " \tعميل غير ذي قرص.\n"
-#~ "\n"
-#~ " \tيبدو ملف تهيئة TFTP الاعتيادي مثل:\n"
-#~ " \t\t\n"
-#~ " \tservice tftp\n"
-#~ "\t\t\t{\n"
-#~ " disable = no\n"
-#~ " socket_type = dgram\n"
-#~ " protocol = udp\n"
-#~ " wait = yes\n"
-#~ " user = root\n"
-#~ " server = /usr/sbin/in.tftpd\n"
-#~ " server_args = -s /var/lib/tftpboot\n"
-#~ " \t}\n"
-#~ " \t\t\n"
-#~ " \tالتغييرات هنا عن التثبيت الافتراضي هي تغيير علم disable إلى\n"
-#~ " \t'no' وتغيير مسار الدليل إلى /var/lib/tftpboot، حيث يضع mkinitrd-"
-#~ "net\n"
-#~ " \tصوره."
-
-#~ msgid "Configuration changed - restart clusternfs/dhcpd?"
-#~ msgstr "تغيّرت التّهيئة - هل أعيد تشغيل clusternfs/dhcpd؟"
-
-#~ msgid ""
-#~ "The following media have been found and will be used during install: %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do you have a supplementary installation media to configure?"
-#~ msgstr ""
-#~ "تم العثور على أوساط التثبيت التالية وسيتم استخدامها خلال التثبيت: %s\n"
-#~ "\n"
-#~ "\n"
-#~ "هل لديك أوساط تثبيت إضافية لتهيئها؟"
-
-#~ msgid "Create PXE images."
-#~ msgstr "إنشاء صور PXE."
-
-#~ msgid ""
-#~ "Allow an ordinary user to mount the file system. The\n"
-#~ "name of the mounting user is written to mtab so that he can unmount the "
-#~ "file\n"
-#~ "system again. This option implies the options noexec, nosuid, and nodev\n"
-#~ "(unless overridden by subsequent options, as in the option line\n"
-#~ "user,exec,dev,suid )."
-#~ msgstr ""
-#~ "السماح للمستخدم العادي تجهيز نظام الملفّات.\n"
-#~ "اسم المستخدم المجهّز يكتب في mtab حتى يستطيع إزالة تجهيز نظام\n"
-#~ "الملفات مجدّداً. هذا الخيار تدلّ عليه الخيارات noexec، nosuid، وnodev\n"
-#~ "(إلا إذا تخطّته خيارات إضافيّة، كسطر الخيار\n"
-#~ "user، exec، dev، suid(. "
-
-#~ msgid "Unknown Model"
-#~ msgstr "طراز غير معروف"
-
-# These two seem like 'fore-edge' and 'full-blood'
-#~ msgid ""
-#~ "Either with the newer HPLIP which allows printer maintenance through the "
-#~ "easy-to-use graphical application \"Toolbox\" and four-edge full-bleed on "
-#~ "newer PhotoSmart models "
-#~ msgstr ""
-#~ "إما باستخدام HPLIP الأجدد الذي يسمح بصيانة الطابعة من خلال التطبيق "
-#~ "الرسومي السهل الاستخدام \"صندوق الأدوات\" والمتقدم القويّ الصلة على طرز "
-#~ "PhotoSmart الأجدد."
-
-#~ msgid ""
-#~ "or with the older HPOJ which allows only scanner and memory card access, "
-#~ "but could help you in case of failure of HPLIP. "
-#~ msgstr ""
-#~ "أو باستخدام HPOJ الأقدم الذي يسمح بالوصول فقط إلى الماسح الضوئي وبطاقة "
-#~ "الذاكرة، ولكن قد يساعدك في حالة فشل HPLIP."
-
-#~ msgid "HPOJ"
-#~ msgstr "HPOJ"
-
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3000/3200/3300/4345 with scanner, DeskJet 450, "
-#~ "Sony IJP-V100), an HP PhotoSmart or an HP LaserJet 2200?"
-#~ msgstr ""
-#~ "إذا كانت طابعتك جهازاً متعدد الوظائف من HP أو Sony (OfficeJet، PSC، "
-#~ "LaserJet 1100/1200/1220/3000/3200/3300/4345 مع ماسح ضوئي، Sony IPJ-V100) "
-#~ "أو جهاز HP PhotoSmart أو HP LaserJet 2200؟"
-
-#~ msgid "Installing mtools packages..."
-#~ msgstr "جاري تثبيت حزم mtools"
-
-#~ msgid "Photo memory card access on the %s will not be possible."
-#~ msgstr "الوصول إلى بطاقة الذاكرة الصّوريّة على %s لن يكون ممكناً."
-
-#~ msgid "Scanning on your HP multi-function device"
-#~ msgstr "جاري المسح على جهاز HP متعدد الوظائف"
-
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr "الوصول إلى بطاقة الذاكرة على جهاز HP متعدد الوظائف"
-
-#~ msgid "Printing/Scanning/Photo Cards on \"%s\""
-#~ msgstr "بطاقات الطباعة/المسح الضوئي/الصور على \"%s\""
-
-#~ msgid "Printing/Scanning on \"%s\""
-#~ msgstr "جاري الطباعة/المسح على \"%s\""
-
-#~ msgid "Printing/Photo Card Access on \"%s\""
-#~ msgstr "الوصول لبطاقة الطباعة/الصور على \"%s\""
-
-#~ msgid ""
-#~ "Your multi-function device was configured automatically to be able to "
-#~ "scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to "
-#~ "specify the scanner when you have more than one) from the command line or "
-#~ "with the graphical interfaces \"xscanimage\" or \"xsane\". If you are "
-#~ "using the GIMP, you can also scan by choosing the appropriate point in "
-#~ "the \"File\"/\"Acquire\" menu. Call also \"man scanimage\" on the command "
-#~ "line to get more information.\n"
-#~ "\n"
-#~ "You do not need to run \"scannerdrake\" for setting up scanning on this "
-#~ "device, you only need to use \"scannerdrake\" if you want to share the "
-#~ "scanner on the network."
-#~ msgstr ""
-#~ "الجهاز المتعدد الوظائف الخاص بك تمت تهيئته آلياً ليتمكن من المسح الضوئي. "
-#~ "يمكنك الآن استخدام المسح الضوئي باستخدام \"scanimage\" (\"scanimage -d hp:"
-#~ "%s\" لتحديد الماسح الضوئي إذا كان لديك أكثر من واحد) من سطر الأوامر أو "
-#~ "بالبرامج الرسومية \"xscanimage\" أو \"xsane\". إذا كنت تستخدم GIMP، يمكنك "
-#~ "أيضاً المسح الضوئي باستخدام القوائم \"File\"/\"Acquire\". تشغيل الأمر "
-#~ "\"man scanimage\" في سطر الأوامر للحصول على مزيد من المعلومات.\n"
-#~ "\n"
-#~ "لا تحتاج لتشغيل \"scannerdrake\" لإعداد المسح الضوئي على هذا الجهاز، "
-#~ "وتحتاجه فقط لاستخدام \"scannerdrake\" إن كنت تريد مشاركة الماسح الضوئي "
-#~ "على الشبكة.."
-
-#~ msgid ""
-#~ "Your printer was configured automatically to give you access to the photo "
-#~ "card drives from your PC. Now you can access your photo cards using the "
-#~ "graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -"
-#~ "> \"MTools File Manager\") or the command line utilities \"mtools"
-#~ "\" (enter \"man mtools\" on the command line for more info). You find the "
-#~ "card's file system under the drive letter \"p:\", or subsequent drive "
-#~ "letters when you have more than one HP printer with photo card drives. In "
-#~ "\"MtoolsFM\" you can switch between drive letters with the field at the "
-#~ "upper-right corners of the file lists."
-#~ msgstr ""
-#~ "تم تهيئة الطابعة آلياً لكي تعطيك القدرة على الوصول إلى سواقات بطاقات الصور "
-#~ "على جهازك الشخصي. يمكنك الآن الوصول إلى بطاقات الصور باستخدام البرنامج "
-#~ "الرسومي \"MToolsFM\" (القائمة: \"تطبيقات\" -> \"أدوات الملفات\" -> \"مدير "
-#~ "ملفات MTools\") أو باستخدام أدوات \"mtools\" في سطر الأوامر (أدخل \"man "
-#~ "mtools\" في سطر الأوامر لمزيد من المعلومات). يمكنك ايجاد نظام ملفات "
-#~ "البطاقة تحت حرف السواقة \"p:\"، أو حروف السواقات الأخرى إذا كانت لديك "
-#~ "أكثر من طابعة HP مع سواقات بطاقات صور. في \"MToolsFM\" يمكنك التحويل بين "
-#~ "حروف السواقات على الحقل الموجود في الركن الأيسر إلى الأعلى في قوائم "
-#~ "الملفات."
-
-#~ msgid "Custom setup/crontab entry:"
-#~ msgstr "مُدخل الإعداد/crontab المُخصّص:"
-
-#~ msgid "Note that currently all 'net' media also use the hard drive."
-#~ msgstr "لاحظ أن كل وسائط `الشبكة` تستخدم القرص الصلب حاليّاً."
-
-#~ msgid ""
-#~ "Before installing any fonts, be sure that you have the right to use and "
-#~ "install them on your system.\n"
-#~ "\n"
-#~ "-You can install the fonts the normal way. In rare cases, bogus fonts may "
-#~ "hang up your X Server."
-#~ msgstr ""
-#~ "قبل تثبيت أي خطوط تأكد أنه لديك الحق باستخدامها و تثبيتها على النظام.\n"
-#~ "\n"
-#~ "-يمكنك تثبيت الخطوط بالطريقة العادية. في حالات نادرة، قد تتسبب الخطوط "
-#~ "المزيفة في تعليق خادم X."
-
-#~ msgid ""
-#~ "%s cannot be displayed \n"
-#~ ". No Help entry of this type\n"
-#~ msgstr ""
-#~ "لا يمكن عرض %s \n"
-#~ ". ليس هناك مُدخل مساعدة لهذا النّوع\n"
-
-#~ msgid ""
-#~ "\n"
-#~ "Please check all options that you need.\n"
-#~ msgstr ""
-#~ "\n"
-#~ "فضلاً قم بالتأشير على الخيارات التي تحتاجها.\n"
-
-#~ msgid ""
-#~ "These options can backup and restore all files in your /etc directory.\n"
-#~ msgstr "هذه الخيارات يمكنها نسخ واسترجاع كل الملفات في دليل /etc.\n"
-
-#~ msgid ""
-#~ "With this option you will be able to restore any version\n"
-#~ " of your /etc directory."
-#~ msgstr ""
-#~ "بهذا الخيار يمكنك استرجاع أي نسخة من\n"
-#~ " دليل /etc الخاص بك."
-
-#~ msgid "http://www.mandrivalinux.com/en/errata.php3"
-#~ msgstr "http://www.mandrivalinux.com/en/errata.php3"
-
-#~ msgid ""
-#~ "Kerberos is a secure system for providing network authentication services."
-#~ msgstr "نظام Kerberos هو نظام آمن لتوفير خدمات مواثقة الشّبكة."
-
-#~ msgid "Use Idmap for store UID/SID "
-#~ msgstr "استخدام Idmap لخزن UID/SID "
-
-#~ msgid "Default Idmap "
-#~ msgstr "Idmap الافتراضي "
-
-#~ msgid "Please wait, preparing installation..."
-#~ msgstr "الرجاء الانتظار، التحضير للتثبيت..."
-
-#~ msgid "Installing package %s"
-#~ msgstr "جاري تثبيت الحزمة %s"
-
-#~ msgid "<b>What is Mandriva Linux?</b>"
-#~ msgstr "<b>ما هو ماندريبا لينكس؟</b>"
-
-#~ msgid "Welcome to <b>Mandriva Linux</b>!"
-#~ msgstr "أهلا بك في <b>ماندريبا لينكس</b>!"
-
-#~ msgid ""
-#~ "Mandriva Linux is a <b>Linux distribution</b> that comprises the core of "
-#~ "the system, called the <b>operating system</b> (based on the Linux "
-#~ "kernel) together with <b>a lot of applications</b> meeting every need you "
-#~ "could even think of."
-#~ msgstr ""
-#~ "ماندريبا لينكس هي <b>توزيعة لينكس</b> تشتمل على نواة النظام، المسمى "
-#~ "<b>نظام التشغيل</b> (مبني على نواة لينكس) معاً بالإضافة إلى <b>الكثير من "
-#~ "التطبيقات</b> بما يطابق كل الحاجات التي قد تخطر ببالك."
-
-#~ msgid ""
-#~ "Mandriva Linux is the most <b>user-friendly</b> Linux distribution today. "
-#~ "It is also one of the <b>most widely used</b> Linux distributions "
-#~ "worldwide!"
-#~ msgstr ""
-#~ "ماندريبا لينكس هي توزيعة لينكس <b>الأسهل استخداماً</b> حالياً. إنها أيضاً "
-#~ "واحدة من <b>أكثر توزيعات لينكس استخداماً</b> حول العالم!"
-
-#~ msgid "<b>Open Source</b>"
-#~ msgstr "<b>المصدر المفتوح</b>"
-
-#~ msgid "Welcome to the <b>world of open source</b>!"
-#~ msgstr "أهلاً بك في <b>عالم المصدر المفتوح</b>!"
-
-#~ msgid ""
-#~ "Mandriva Linux is committed to the open source model. This means that "
-#~ "this new release is the result of <b>collaboration</b> between "
-#~ "<b>Mandriva's team of developers</b> and the <b>worldwide community</b> "
-#~ "of Mandriva Linux contributors."
-#~ msgstr ""
-#~ "ماندريبا لينكس هو نظام مخلص لنموذج المصدر المفتوح. هذا يعني أن هذا "
-#~ "الإصدار الجديد هو نتاج <b>للتّعاون</b> بين <b>فريق مطوّري ماندريبا</b> "
-#~ "و<b>المجتمع العالمي</b> لمتطوّعي ماندريبا لينكس."
-
-#~ msgid ""
-#~ "We would like to <b>thank</b> everyone who participated in the "
-#~ "development of this latest release."
-#~ msgstr "نودّ أن <b>نشكر</b> جميع من شارك في تطوير هذا الإصدار الأخير."
-
-#~ msgid "<b>The GPL</b>"
-#~ msgstr "<b>رخصة GPL</b>"
-
-#~ msgid ""
-#~ "Most of the software included in the distribution and all of the Mandriva "
-#~ "Linux tools are licensed under the <b>General Public License</b>."
-#~ msgstr ""
-#~ "معظم البرامج المرفقة مع هذه التوزيعة وكل أدوات ماندريبا لينكس مرخّصة ضمن "
-#~ "<b>الرخصة العموميّة الشاملة</b>."
-
-#~ msgid ""
-#~ "The GPL is at the heart of the open source model; it grants everyone the "
-#~ "<b>freedom</b> to use, study, distribute and improve the software any way "
-#~ "they want, provided they make the results available."
-#~ msgstr ""
-#~ "رخصة GPL هي قلب نموذج المصدر المفتوح، حيث تمنح الكُلّ <b>حريّة</b> استخدام "
-#~ "ودراسة وتوزيع وتحسين البرنامج بأي شكل يريدونه، ماداموا يوفرون النتاج بنفس "
-#~ "الطريقة."
-
-#~ msgid ""
-#~ "The main benefit of this is that the number of developers is virtually "
-#~ "<b>unlimited</b>, resulting in <b>very high quality</b> software."
-#~ msgstr ""
-#~ "الفائدة الرئيسية من هذا هي أن عدد المُطوّرين هو افتراضيا <b>غير محدود</b>، "
-#~ "بما ينتج عنه برامج <b>عالية الجودة</b>."
-
-#~ msgid "<b>Join the Community</b>"
-#~ msgstr "<b>انضمّ إلى المجتمع</b>"
-
-#~ msgid ""
-#~ "Mandriva Linux has one of the <b>biggest communities</b> of users and "
-#~ "developers. The role of such a community is very wide, ranging from bug "
-#~ "reporting to the development of new applications. The community plays a "
-#~ "<b>key role</b> in the Mandriva Linux world."
-#~ msgstr ""
-#~ "لدى ماندريبا لينكس أحد <b>أكبر المجتمعات</b> من المستخدمين والمطورين. دور "
-#~ "مجتمع كهذا هو واسع جداً، بدءً من تقرير العيوب البرمجية ووصولاً إلى تطوير "
-#~ "التطبيقات الجديدة. يلعب المجتمع <b>دوراً أساسياً</b> في عالم ماندريبا لينكس."
-
-#~ msgid ""
-#~ "To <b>learn more</b> about our dynamic community, please visit <b>www."
-#~ "mandrivalinux.com</b> or directly <b>www.mandrivalinux.com/en/cookerdevel."
-#~ "php3</b> if you would like to get <b>involved</b> in the development."
-#~ msgstr ""
-#~ "كي <b>تقرأ المزيد</b> حول مجتمعنا الديناميكي، رجاء زُر <b>www."
-#~ "mandrakelinux.com</b> أو مباشرة <b>www.mandrivalinux.com/en/cookerdevel."
-#~ "php3</b> إن وددت <b>المشاركة</b> في التطوير."
-
-#~ msgid "<b>Download Version</b>"
-#~ msgstr "<b>نسخة التّنزيل</b>"
-
-#~ msgid ""
-#~ "You are now installing <b>Mandriva Linux Download</b>. This is the free "
-#~ "version that Mandriva wants to keep <b>available to everyone</b>."
-#~ msgstr ""
-#~ "تقوم الآن بتثبيت <b>Mandriva Linux Download</b>. هذه هي النسخة المجانية "
-#~ "التي تريد ماندريبا إبقائها <b>متوفّرة للجميع</b>."
-
-#~ msgid ""
-#~ "The Download version <b>cannot include</b> all the software that is not "
-#~ "open source. Therefore, you will not find in the Download version:"
-#~ msgstr ""
-#~ "نسخة Download <b>لا يمكن أن تحتوي</b> كل التطبيقات التي ليست مفتوحة "
-#~ "المصدر. لذا، لن تجد ما يلي في هذه النسخة:"
-
-#~ msgid ""
-#~ "\t* <b>Proprietary drivers</b> (such as drivers for NVIDIA®, ATI™, etc.)."
-#~ msgstr "\t* <b>المُشغّلات المملوكة</b> (مثل مُشغّلات NVIDIA®، ATI™، إلخ)."
-
-#~ msgid ""
-#~ "\t* <b>Proprietary software</b> (such as Acrobat® Reader®, RealPlayer®, "
-#~ "Flash™, etc.)."
-#~ msgstr ""
-#~ "\t* <b>البرامج المملوكة</b> (مثل Acrobat® Reader®، RealPlayer®، Flash™، "
-#~ "إلخ)."
-
-#~ msgid ""
-#~ "You will not have access to the <b>services included</b> in the other "
-#~ "Mandriva products either."
-#~ msgstr ""
-#~ "لن تستطيع الوصول إلى <b>الخدمات المرفقة</b> في منتجات ماندريبا الأخرى "
-#~ "أيضاً."
-
-#~ msgid "<b>Discovery, Your First Linux Desktop</b>"
-#~ msgstr "<b>Discovery، سطح مكتب لينكس الأول</b>"
-
-#~ msgid "You are now installing <b>Mandriva Linux Discovery</b>."
-#~ msgstr "تقوم الآن بتثبيت <b>Mandriva Linux Discovery</b>."
-
-#~ msgid ""
-#~ "Discovery is the <b>easiest</b> and most <b>user-friendly</b> Linux "
-#~ "distribution. It includes a hand-picked selection of <b>premium software</"
-#~ "b> for office, multimedia and Internet activities. Its menu is task-"
-#~ "oriented, with a single application per task."
-#~ msgstr ""
-#~ "Discovery هي توزيعة لينكس <b>الأكثر سهولة</b> و<b>الأكثر ألفة للمستخدم</"
-#~ "b>. تحتوي خيارات منتقاة من <b>البرامج الأوليّة</b> للمكتب، والوسائط "
-#~ "المتعددة ونشاطات الإنترنت. قوائمها مبنية على المهام، مع تطبيق محدد لكل "
-#~ "مهمة."
-
-#~ msgid "<b>PowerPack, The Ultimate Linux Desktop</b>"
-#~ msgstr "<b>PowerPack، سطح المكتب المُطلق للينكس</b>"
-
-#~ msgid "You are now installing <b>Mandriva Linux PowerPack</b>."
-#~ msgstr "تقوم الآن بتثبيت <b>Mandriva Linux PowerPack</b>."
-
-#~ msgid ""
-#~ "PowerPack is Mandriva's <b>premier Linux desktop</b> product. PowerPack "
-#~ "includes <b>thousands of applications</b> - everything from the most "
-#~ "popular to the most advanced."
-#~ msgstr ""
-#~ "منتج PowerPack من ماندريبا هو <b>سطح المكتب المُطلق للينكس</b>. يشتمل "
-#~ "PowerPack على <b>الآلاف من التطبيقات</b> - كلّ شيء بدءً من الأكثر شعبية "
-#~ "وحتى الأكثر تقدّماً."
-
-#~ msgid "<b>PowerPack+, The Linux Solution for Desktops and Servers</b>"
-#~ msgstr "<b>PowerPack+، الحلّ لأسطح المكتب والخادمات</b>"
-
-#~ msgid "You are now installing <b>Mandriva Linux PowerPack+</b>."
-#~ msgstr "تقوم الآن بتثبيت <b>Mandriva Linux PowerPack+</b>."
-
-#~ msgid ""
-#~ "PowerPack+ is a <b>full-featured Linux solution</b> for small to medium-"
-#~ "sized <b>networks</b>. PowerPack+ includes thousands of <b>desktop "
-#~ "applications</b> and a comprehensive selection of world-class <b>server "
-#~ "applications</b>."
-#~ msgstr ""
-#~ "PowerPack+ هي <b>حلّ لينكس متكامل المزايا</b> لأجل <b>الشّبكات</b> الصّغيرة "
-#~ "والمتوسّطة الحجم. تحتوي PowerPack+ على الآلاف من <b>تطبيقات سطح المكتب</b> "
-#~ "واختياراً واسعاً من <b>تطبيقات الخادمات</b> من طرازٍ عالمي."
-
-#~ msgid "<b>Mandriva Products</b>"
-#~ msgstr "<b>منتجات ماندريبا</b>"
-
-#~ msgid ""
-#~ "<b>Mandriva</b> has developed a wide range of <b>Mandriva Linux</b> "
-#~ "products."
-#~ msgstr ""
-#~ "قامت <b>ماندريبا</b> بتطوير تشكيلة واسعة من منتجات <b>ماندريبا لينكس</b>."
-
-#~ msgid "The Mandriva Linux products are:"
-#~ msgstr "منتجات ماندريبا لينكس هي:"
-
-#~ msgid "\t* <b>Discovery</b>, Your First Linux Desktop."
-#~ msgstr "\t* <b>Discovery</b>، سطح المكتب الأول."
-
-#~ msgid "\t* <b>PowerPack</b>, The Ultimate Linux Desktop."
-#~ msgstr "\t* <b>PowerPack</b>، سطح المكتب المُطلق للينكس."
-
-#~ msgid "\t* <b>PowerPack+</b>, The Linux Solution for Desktops and Servers."
-#~ msgstr "\t* <b>PowerPack+</b>، حلّ لينكس لأسطح المكتب والخادمات."
-
-#~ msgid ""
-#~ "\t* <b>Mandriva Linux for x86-64</b>, The Mandriva Linux solution for "
-#~ "making the most of your 64-bit processor."
-#~ msgstr ""
-#~ "\t* <b>ماندريبا لينكس لأنظمة x86-64</b>، حلّ ماندريبا لينكس للحصول على "
-#~ "أفضل نتيجة من معالجات 64بت."
-
-#~ msgid "<b>Mandriva Products (Nomad Products)</b>"
-#~ msgstr "<b>منتجات ماندريبا (منتجات نوماد)</b>"
-
-#~ msgid ""
-#~ "Mandriva has developed two products that allow you to use Mandriva Linux "
-#~ "<b>on any computer</b> and without any need to actually install it:"
-#~ msgstr ""
-#~ "قامت ماندريبا لينكس بتطوير منتجين يسمحان لك باستخدام ماندريبا لينكس "
-#~ "<b>على أي حاسب</b> ودون الحاجة إلى تثبيته بالفعل:"
-
-#~ msgid ""
-#~ "\t* <b>Move</b>, a Mandriva Linux distribution that runs entirely from a "
-#~ "bootable CD-ROM."
-#~ msgstr ""
-#~ "\t* <b>Move</b>، توزيعة ماندريبا لينكس تشتغل بالكامل من قرص إقلاع مدمج."
-
-#~ msgid ""
-#~ "\t* <b>GlobeTrotter</b>, a Mandriva Linux distribution pre-installed on "
-#~ "the ultra-compact “LaCie Mobile Hard Drive”."
-#~ msgstr ""
-#~ "\t* <b>جلوب تروتر</b>، وهي توزيعة ماندريبا لينكس مُتثبيتة مسبقاً على “قرص "
-#~ "لاسي الصلب المُتنقّل” فائق الاندماجيّة."
-
-#~ msgid "<b>Mandriva Products (Professional Solutions)</b>"
-#~ msgstr "<b>منتجات ماندريبا (الحلول الاحترافيّة)</b>"
-
-#~ msgid ""
-#~ "Below are the Mandriva products designed to meet the <b>professional "
-#~ "needs</b>:"
-#~ msgstr ""
-#~ "أدناه هي منتجات ماندريبا المُصمّمة لملائمة <b>احتياجاتك الاحترافيّة</b>:"
-
-#~ msgid ""
-#~ "\t* <b>Corporate Desktop</b>, The Mandriva Linux Desktop for Businesses."
-#~ msgstr ""
-#~ "\t* <b>سطح المكتب المؤسّساتي</b>، وهو سطح مكتب ماندريبا لينكس للأعمال."
-
-#~ msgid "\t* <b>Corporate Server</b>, The Mandriva Linux Server Solution."
-#~ msgstr "\t* <b>الخادم المؤسّساتي</b>، وهو حلّ خادم ماندريبا لينكس."
-
-#~ msgid ""
-#~ "\t* <b>Multi-Network Firewall</b>, The Mandriva Linux Security Solution."
-#~ msgstr ""
-#~ "\t* <b>الجدار الناري للشبكات المتعدّدة</b>، حلّ الأمن من ماندريبا لينكس."
-
-#~ msgid "<b>The KDE Choice</b>"
-#~ msgstr "<b>إختيار كيدي</b>"
-
-#~ msgid ""
-#~ "With your Discovery, you will be introduced to <b>KDE</b>, the most "
-#~ "advanced and user-friendly <b>graphical desktop environment</b> available."
-#~ msgstr ""
-#~ "مع Discovery، سوف تتعرّف على <b>كيدي</b>، وهي أكثر <b>بيئة سطح مكتب "
-#~ "رسومية</b> متوفّرة أُلْفَةً للمستخدم."
-
-#~ msgid ""
-#~ "KDE will make your <b>first steps</b> with Linux so <b>easy</b> that you "
-#~ "will not ever think of running another operating system!"
-#~ msgstr ""
-#~ "سيجعل كيدي <b>خطواتك الأولى</b> مع لينكس <b>سهلة للغاية</b> بحيث لا تفكّر "
-#~ "أبداً بتشغيل أيّ نظام تشغيل آخر!"
-
-#~ msgid ""
-#~ "KDE also includes a lot of <b>well integrated applications</b> such as "
-#~ "Konqueror, the web browser and Kontact, the personal information manager."
-#~ msgstr ""
-#~ "يشتمل كيدي أيضاً على الكثير من <b>التطبيقات المتكاملة جيّداً</b> مثل "
-#~ "Konqueror، مُتصفّح الإنترنت، وKontact، مدير المعلومات الشخصيّة."
-
-#~ msgid "<b>Choose your Favorite Desktop Environment</b>"
-#~ msgstr "<b>اختر بيئة سطح مكتبك المفضّلة</b>"
-
-#~ msgid ""
-#~ "With PowerPack, you will have the choice of the <b>graphical desktop "
-#~ "environment</b>. Mandriva has chosen <b>KDE</b> as the default one."
-#~ msgstr ""
-#~ "مع PowerPack، سوف يكون لديك خيار <b>بيئة سطح المكتب الرسوميّة</b>. اختارت "
-#~ "ماندريبا <b>كيدي</b> كبيئة افتراضيّة."
-
-#~ msgid ""
-#~ "KDE is one of the <b>most advanced</b> and <b>user-friendly</b> graphical "
-#~ "desktop environment available. It includes a lot of integrated "
-#~ "applications."
-#~ msgstr ""
-#~ "كيدي هي واحدة من أكثر بيئات أسطح المكتب المتوفّرة <b>تقدّماً</b> و<b>ألفة "
-#~ "للمستخدم</b>. تحتوي كذلك على الكثير من التطبيقات المتكاملة."
-
-#~ msgid ""
-#~ "But we advise you to try all available ones (including <b>GNOME</b>, "
-#~ "<b>IceWM</b>, etc.) and pick your favorite."
-#~ msgstr ""
-#~ "إلا أنّنا ننصحك بتحربة كل البيئات المتوفّرة (بما في ذلك <b>جينوم</b>، "
-#~ "<b>IceWM</b>، إلخ) واختيار المفضّل لديك."
-
-#~ msgid ""
-#~ "With PowerPack+, you will have the choice of the <b>graphical desktop "
-#~ "environment</b>. Mandriva has chosen <b>KDE</b> as the default one."
-#~ msgstr ""
-#~ "باستخدام PowerPack+، سيتوفر لك خيار <b>سطح المكتب الرسومي</b>. اختارت "
-#~ "ماندريبا <b>كيدي</b> كإفتراضي."
-
-#~ msgid "<b>OpenOffice.org</b>"
-#~ msgstr "<b>OpenOffice.org</b>"
-
-#~ msgid "With Discovery, you will discover <b>OpenOffice.org</b>."
-#~ msgstr "مع Discovery، ستكتشف <b>OpenOffice.org</b>."
-
-#~ msgid ""
-#~ "It is a <b>full-featured office suite</b> that includes word processor, "
-#~ "spreadsheet, presentation and drawing applications."
-#~ msgstr ""
-#~ "إنّه <b>طقم مكتبي مفعم بالمزايا</b> يحتوي على تطبيق مُعالج نصوص، وجداول "
-#~ "بيانيّة، وعروض تقديميّة، وتطبيقات الرسوم."
-
-#~ msgid ""
-#~ "OpenOffice.org can read and write most types of <b>Microsoft® Office</b> "
-#~ "documents such as Word, Excel and PowerPoint® files."
-#~ msgstr ""
-#~ "يستطيع OpenOffice.org قراءة وكتابة مُعظم أنواع مستندات <b>مايكروسوفت "
-#~ "أوفيس</b> مثل ملفات وورد، وإكسل وباوربوينت."
-
-#~ msgid "<b>Kontact</b>"
-#~ msgstr "<b>Kontact</b>"
-
-#~ msgid ""
-#~ "Discovery includes <b>Kontact</b>, the new KDE <b>groupware solution</b>."
-#~ msgstr ""
-#~ "يتضمّن Discovery <b>Kontact</b>، الذي هو حلّ كيدي الجديد <b>لبرامج "
-#~ "المجموعات</b>."
-
-#~ msgid ""
-#~ "More than just a full-featured <b>e-mail client</b>, Kontact also "
-#~ "includes an <b>address book</b>, a <b>calendar</b>, plus a tool for "
-#~ "taking <b>notes</b>!"
-#~ msgstr ""
-#~ "أكثر من مجرّد <b>مستفيد بريد</b> مفعم بالمزايا، Kontact يتضمّن أيضاً <b>دفتر "
-#~ "عناوين</b>، و<b>تقويم</b>، بالإضافة إلى أداة لتدوين <b>الملاحظات</b>!"
-
-#~ msgid ""
-#~ "It is the easiest way to communicate with your contacts and to organize "
-#~ "your time."
-#~ msgstr "إنها الطريقة الأسهل للتواصل مع مُراسَليك ولتنظيم وقتك."
-
-#~ msgid "<b>Surf the Internet</b>"
-#~ msgstr "<b>تصفَّح الإنترنت</b>"
-
-#~ msgid "Discovery will give you access to <b>every Internet resource</b>:"
-#~ msgstr "سيمنحك Discovery الوصول إلى <b>كلّ مصادر الإنترنت</b>:"
-
-#~ msgid "\t* Browse the <b>Web</b> with Konqueror."
-#~ msgstr "\t* تصفح <b>الإنترنت</b> مع كنكيورر."
-
-#~ msgid "\t* <b>Chat</b> online with your friends using Kopete."
-#~ msgstr "\t* <b>دردش</b> على الخط مع أصدقائك باستخدام Kopete."
-
-#~ msgid "\t* <b>Transfer</b> files with KBear."
-#~ msgstr "\t* <b>انقل</b> الملفات باسخدام KBear."
-
-#~ msgid "\t* ..."
-#~ msgstr "\t* ..."
-
-#~ msgid "<b>Enjoy our Multimedia Features</b>"
-#~ msgstr "<b>تمتّع بمزايا الوسائط المتعدّدة</b>"
-
-#~ msgid "Discovery will also make <b>multimedia</b> very easy for you:"
-#~ msgstr "سيجعل Discovery أيضاً <b>الوسائط المتعدد</b> أسهل بالنسبة إليك:"
-
-#~ msgid "\t* Watch your favorite <b>videos</b> with Kaffeine."
-#~ msgstr "\t* شاهد <b>فيديوهاتك</b> المفضّلة باستخدام Kaffeine."
-
-#~ msgid "\t* Listen to your <b>music files</b> with amaroK."
-#~ msgstr "\t* استمع إلى <b>ملفّاتك الموسيقيّة</b> باستخدام amaroK."
-
-#~ msgid "\t* Edit and create <b>images</b> with the GIMP."
-#~ msgstr "\t* تحرير وإنشاء <b>الصور</b> باستخدام GIMP."
-
-#~ msgid "<b>Enjoy the Wide Range of Applications</b>"
-#~ msgstr "<b>استمتع بالتشكيلة الواسعة من التطبيقات</b>"
-
-#~ msgid ""
-#~ "In the Mandriva Linux menu you will find <b>easy-to-use</b> applications "
-#~ "for <b>all of your tasks</b>:"
-#~ msgstr ""
-#~ "في قائمة ماندريبا لينكس ستجد تطبيقات <b>سهلة الاستخدام</b> ل<b>كل مهامّك</"
-#~ "b>:"
-
-#~ msgid ""
-#~ "\t* Create, edit and share office documents with <b>OpenOffice.org</b>."
-#~ msgstr "\t* أنشئ، حرّر وشاطر مستندات المكتب مع <b>OpenOffice.org</b>."
-
-#~ msgid ""
-#~ "\t* Manage your personal data with the integrated personal information "
-#~ "suites <b>Kontact</b> and <b>Evolution</b>."
-#~ msgstr ""
-#~ "\t* تولّ مسؤوليّة بياناتك الشّخصيّة باستخدام مجموعات المعلومات الشّخصيّة "
-#~ "المُدمجة <b>Kontact</b> و <b>Evolution</b>."
-
-#~ msgid "\t* Browse the web with <b>Mozilla</b> and <b>Konqueror</b>."
-#~ msgstr "\t* تصفّح الإنترنت مع <b>موزيلا</b> و <b>Konqueror</b>"
-
-#~ msgid "\t* Participate in online chat with <b>Kopete</b>."
-#~ msgstr "\t* شارك في الدّردشة على الإنترنت باستخدام <b>Kopete</b>"
-
-#~ msgid ""
-#~ "\t* Listen to your <b>audio CDs</b> and <b>music files</b>, watch your "
-#~ "<b>videos</b>."
-#~ msgstr ""
-#~ "\t* استمع إلى <b>الأقراص المدمجة</b> و <b>ملفّات الموسيقى</b>، وشاهد "
-#~ "<b>الفيديوهات</b>."
-
-#~ msgid "\t* Edit and create images with the <b>GIMP</b>."
-#~ msgstr "\t* تحرير وإنشاء الصور باستخدام <b>GIMP</b>."
-
-#~ msgid "<b>Development Environments</b>"
-#~ msgstr "<b>بيئات التطوير</b>"
-
-#~ msgid ""
-#~ "PowerPack gives you the best tools to <b>develop</b> your own "
-#~ "applications."
-#~ msgstr "يعطيك PowerPack أفضل الأدوات <b>لتطوير</b> تطبيقاتك الخاصّة."
-
-#~ msgid ""
-#~ "You will enjoy the powerful, integrated development environment from KDE, "
-#~ "<b>KDevelop</b>, which will let you program in a lot of languages."
-#~ msgstr ""
-#~ "سوف تستمتع بيئة التطوير الجبّارة، والمتكاملة، <b>KDevelop</b>، من كيدي، "
-#~ "والتي ستمكنك من البرمجة باستخدام الكثير من اللغات."
-
-#~ msgid ""
-#~ "PowerPack also ships with <b>GCC</b>, the leading Linux compiler and "
-#~ "<b>GDB</b>, the associated debugger."
-#~ msgstr ""
-#~ "يُشحن PowerPack أيضاً مع <b>GCC</b>، مُجمّع لينكس الرائد و<b>GDB</b>، مزيل "
-#~ "العلل المرتبط به."
-
-#~ msgid "<b>Development Editors</b>"
-#~ msgstr "<b>مُحرّرات التطوير</b>"
-
-#~ msgid "PowerPack will let you choose between those <b>popular editors</b>:"
-#~ msgstr "سيمكنك PowerPack من الاختيار من بين هذه <b>المُحرّرات الشائعة</b>:"
-
-#~ msgid "\t* <b>Emacs</b>: a customizable and real time display editor."
-#~ msgstr "\t* <b>Emacs</b>: محرّر عرض قابل للتّخصيص وفوريّ."
-
-#~ msgid ""
-#~ "\t* <b>XEmacs</b>: another open source text editor and application "
-#~ "development system."
-#~ msgstr "\t* <b>Xemacs</b>: محرّر نصوص آخر مفتوح المصدر ونظام تطوير تطبيقات."
-
-#~ msgid ""
-#~ "\t* <b>Vim</b>: an advanced text editor with more features than standard "
-#~ "Vi."
-#~ msgstr "\t* <b>Vim</b>: محرّر نصوص متقدّم ذي ميزات أكثر من Vi القياسي."
-
-#~ msgid "<b>Development Languages</b>"
-#~ msgstr "<b>لغات التطوير</b>"
-
-#~ msgid ""
-#~ "With all these <b>powerful tools</b>, you will be able to write "
-#~ "applications in <b>dozens of programming languages</b>:"
-#~ msgstr ""
-#~ "مع كل هذه <b>الأدوات الجبّارة</b>، ستكون قادراً على كتابة تطبيقات باستخدام "
-#~ "<b>العديد من لغات البرمجة</b>:"
-
-#~ msgid "\t* The famous <b>C language</b>."
-#~ msgstr "\t* <b>لغة C</b> الشهيرة."
-
-#~ msgid "\t* Object oriented languages:"
-#~ msgstr "\t* لغات البرمجة الكائنيّة المنحى:"
-
-#~ msgid "\t\t* <b>C++</b>"
-#~ msgstr "\t\t* <b>C++</b>"
-
-#~ msgid "\t\t* <b>Java™</b>"
-#~ msgstr "\t\t* <b>Java™</b>"
-
-#~ msgid "\t* Scripting languages:"
-#~ msgstr "\t* لغات البرمجة النصية:"
-
-#~ msgid "\t\t* <b>Perl</b>"
-#~ msgstr "\t\t* <b>Perl</b>"
-
-#~ msgid "\t\t* <b>Python</b>"
-#~ msgstr "\t\t* <b>Python</b>"
-
-#~ msgid "\t* And many more."
-#~ msgstr "\t* وأكثر من ذلك."
-
-#~ msgid "<b>Development Tools</b>"
-#~ msgstr "<b>أدوات التطوير</b>"
-
-#~ msgid ""
-#~ "With the powerful integrated development environment <b>KDevelop</b> and "
-#~ "the leading Linux compiler <b>GCC</b>, you will be able to create "
-#~ "applications in <b>many different languages</b> (C, C++, Java™, Perl, "
-#~ "Python, etc.)."
-#~ msgstr ""
-#~ "بفضل بيئة التطوير المتكاملة القويّة <b>KDevelop</b> ومُجمّع لينكس الرائد "
-#~ "<b>GCC</b>، سوف تكون قادراً على إنشاء تطبيقات باستخدام <b>العديد من اللغات "
-#~ "المختلفة</b> (C، C++، Java™، Perl، Python، إلخ)."
-
-#~ msgid "<b>Groupware Server</b>"
-#~ msgstr "<b>خادم برامج المجموعات</b>"
-
-#~ msgid ""
-#~ "PowerPack+ will give you access to <b>Kolab</b>, a full-featured "
-#~ "<b>groupware server</b> which will, thanks to the client <b>Kontact</b>, "
-#~ "allow you to:"
-#~ msgstr ""
-#~ "سيعطيك PowerPack+ الوصول إلى <b>Kolab</b>، وهو <b>خادم برامج المجموعات</"
-#~ "b> المليء بالمزايا، والذي، بفضل المستفيد <b>Kontact</b>، يسمح لك أن:"
-
-#~ msgid "\t* Send and receive your <b>e-mails</b>."
-#~ msgstr "\t* إرسال واستقال <b>البريد الالكتروني</b>."
-
-#~ msgid "\t* Share your <b>agendas</b> and your <b>address books</b>."
-#~ msgstr "\t* شاطر <b>مفكّراتك</b> و <b>دفاتر عناوينك</b>."
-
-#~ msgid "\t* Manage your <b>memos</b> and <b>task lists</b>."
-#~ msgstr "\t* إدارة <b>المذكّرات</b> و <b>قوائم المهام</b>."
-
-#~ msgid "<b>Servers</b>"
-#~ msgstr "<b>الخادمات</b>"
-
-#~ msgid ""
-#~ "Empower your business network with <b>premier server solutions</b> "
-#~ "including:"
-#~ msgstr "تقوية شبكة عملك مع <b>حلول الخادم الرّئيسيّة</b> والتي تشمل:"
-
-#~ msgid ""
-#~ "\t* <b>Samba</b>: File and print services for Microsoft® Windows® clients."
-#~ msgstr ""
-#~ "\t* <b>Samba</b>: خدمات الملفّات والطباعة لمستفيدي ميكروسوفت® ويندوز®."
-
-#~ msgid "\t* <b>Apache</b>: The most widely used web server."
-#~ msgstr "\t* <b>Apache</b>: خادم الإنترنت الأكثر استخداماً."
-
-#~ msgid ""
-#~ "\t* <b>MySQL</b> and <b>PostgreSQL</b>: The world's most popular open "
-#~ "source databases."
-#~ msgstr ""
-#~ "\t* <b>MySQL</b>: قاعدة البيانات المفت وحة المصدر الأكثر شعبيّةً عالميّاً"
-
-#~ msgid ""
-#~ "\t* <b>CVS</b>: Concurrent Versions System, the dominant open source "
-#~ "network-transparent version control system."
-#~ msgstr ""
-#~ "\t* <b>CVS</b>: نظام الإصدارات الم تزامنة، النّظام السّائد المفتوح المصدر "
-#~ "للتحكّم بالإصدارات الشّفافيّ الشّبكة."
-
-#~ msgid ""
-#~ "\t* <b>ProFTPD</b>: The highly configurable GPL-licensed FTP server "
-#~ "software."
-#~ msgstr ""
-#~ "\t* <b>ProFTPD</b>: برنامج خادم FTP المرخّص تحت GPL والأعلى قابليّة "
-#~ "للتّهيئة."
-
-#~ msgid ""
-#~ "\t* <b>Postfix</b> and <b>Sendmail</b>: The popular and powerful mail "
-#~ "servers."
-#~ msgstr ""
-#~ "\t* <b>Postfix</b> و <b>Sendmail</b>: خوادم البريد الأكثر شيوعاً وقوّة."
-
-#~ msgid "<b>Mandriva Linux Control Center</b>"
-#~ msgstr "<b>مركز تحكّم ماندريبا لينكس</b>"
-
-#~ msgid ""
-#~ "The <b>Mandriva Linux Control Center</b> is an essential collection of "
-#~ "Mandriva Linux-specific utilities designed to simplify the configuration "
-#~ "of your computer."
-#~ msgstr ""
-#~ "<b>مركز تحكم ماندريبا لينكس</b> هي مجموعة أساسيّة من أدوات ماندريبا لينكس "
-#~ "الخاصّة المصمّمة لتبسيط تهيئة حاسبك."
-
-#~ msgid ""
-#~ "You will immediately appreciate this collection of <b>more than 60</b> "
-#~ "handy utilities for <b>easily configuring your system</b>: hardware "
-#~ "devices, mount points, network and Internet, security level of your "
-#~ "computer, etc."
-#~ msgstr ""
-#~ "سوف تُعجب فوراً بهذه المجموعة <b>التي تفوق الستّين</b> من الأدوات المفيدة من "
-#~ "أجل <b>تهيئة نظامك بسهولة</b>: عتادك، والأجهزة، وأماكن التركيب، والشّبكة "
-#~ "والإنترنت، وضبط مستوى أمن حاسبك، إلخ."
-
-#~ msgid "<b>The Open Source Model</b>"
-#~ msgstr "<b>نموذج المصدر المفتوح</b>"
-
-#~ msgid ""
-#~ "Like all computer programming, open source software <b>requires time and "
-#~ "people</b> for development. In order to respect the open source "
-#~ "philosophy, Mandriva sells added value products and services to <b>keep "
-#~ "improving Mandriva Linux</b>. If you want to <b>support the open source "
-#~ "philosophy</b> and the development of Mandriva Linux, <b>please</b> "
-#~ "consider buying one of our products or services!"
-#~ msgstr ""
-#~ "كسائر ما يتعلّق ببرمجة الحاسبات، البرمجّيات المفتوحة المصدر <b>تتطلّب وقتاً "
-#~ "وأناساً</b> لتطويرها. اختراماً لفلسفة المصادر المفتوحة تقوم ماندريبا ببيع "
-#~ "المنتجات والخدمات ذات القيمة الإضافيّة وذلك بغية <b>الاستمرار في تحسين "
-#~ "ماندريبا لينكس</b>. إذا كنت تود <b>دعم فلسفة المصادر المفتوحة</b> وتطوير "
-#~ "ماندريبا لينكس <b>فرجاؤنا منك</b> التّفكير بشراء أحد منتجاتنا أو خدماتنا!"
-
-#~ msgid "<b>Online Store</b>"
-#~ msgstr "<b>المتجر الآلي</b>"
-
-#~ msgid ""
-#~ "To learn more about Mandriva products and services, you can visit our "
-#~ "<b>e-commerce platform</b>."
-#~ msgstr ""
-#~ "للمزيد من المعلومات حول منتجات وخدمات ماندريبا، يمكنك زيارة <b>منصّة "
-#~ "التجارة الالكترونيّة</b> الخاصّة بنا."
-
-#~ msgid ""
-#~ "There you can find all our products, services and third-party products."
-#~ msgstr ""
-#~ "هناك يمكنك العثور على كل منتجاتنا، وخدماتنا ومنتجات الأطراف الثالثة."
-
-#~ msgid ""
-#~ "This platform has just been <b>redesigned</b> to improve its efficiency "
-#~ "and usability."
-#~ msgstr "تمّت <b>إعادة تصميم</b> هذه المنصة لتحسين الكفاءة وسهولة الاستخدام."
-
-#~ msgid "Stop by today at <b>store.mandriva.com</b>!"
-#~ msgstr "زُرْنا اليوم على <b>store.mandriva.com</b>!"
-
-#~ msgid "<b>Mandriva Club</b>"
-#~ msgstr "<b>Mandriva Club</b>"
-
-#~ msgid ""
-#~ "<b>Mandriva Club</b> is the <b>perfect companion</b> to your Mandriva "
-#~ "Linux product.."
-#~ msgstr ""
-#~ "<b>نادي ماندريبا </b> هو <b>المرافق الأمثل</b> لمنتجك ماندريبا لينكس."
-
-#~ msgid ""
-#~ "Take advantage of <b>valuable benefits</b> by joining Mandriva Club, such "
-#~ "as:"
-#~ msgstr "اغتنم فرصة <b>الفوائد القيّمة</b> بالانضمام إلى نادي ماندريبا ، مثل:"
-
-#~ msgid ""
-#~ "\t* <b>Special discounts</b> on products and services of our online store "
-#~ "<b>store.mandriva.com</b>."
-#~ msgstr ""
-#~ "\t* <b>حسومات خاصة</b> على المنتجات والخدمات من متجرنا على الخط <b>store."
-#~ "mandrakesoft.com</b>."
-
-#~ msgid ""
-#~ "\t* Access to <b>commercial applications</b> (for example to NVIDIA® or "
-#~ "ATI™ drivers)."
-#~ msgstr ""
-#~ "\t* الوصول إلى <b>التطبيقات التجارية</b> )مثلا مُشغّلات NVIDIA® أو ATI™)."
-
-#~ msgid "\t* Participation in Mandriva Linux <b>user forums</b>."
-#~ msgstr "\t* الاشتراك في <b>منتديات المستخدمين</b> لماندريبا لينكس."
-
-#~ msgid ""
-#~ "\t* <b>Early and privileged access</b>, before public release, to "
-#~ "Mandriva Linux <b>ISO images</b>."
-#~ msgstr ""
-#~ "\t* <b>وصول مبكّر وممتاز</b>، قبل الإصدار العام، <b>لصور ISO</b> لماندريبا "
-#~ "لينكس."
-
-#~ msgid "<b>Mandriva Online</b>"
-#~ msgstr "<b>Mandriva Online</b>"
-
-#~ msgid ""
-#~ "<b>Mandriva Online</b> is a new premium service that Mandriva is proud to "
-#~ "offer its customers!"
-#~ msgstr ""
-#~ "<b>Mandriva Online</b> هي خدمة جديدة أولية تفخر ماندريبا بتقديمها "
-#~ "لزبائنها!"
-
-#~ msgid ""
-#~ "Mandriva Online provides a wide range of valuable services for <b>easily "
-#~ "updating</b> your Mandriva Linux systems:"
-#~ msgstr ""
-#~ "يوفر Mandriva Online تشكيلة واسعة من الخدمات القيّمة <b>للتحديث الميسّر</b> "
-#~ "لأنظمة ماندريبا لينكس الخاصة بك:"
-
-#~ msgid "\t* <b>Perfect</b> system security (automated software updates)."
-#~ msgstr "\t* أمن نظام <b>تام</b> )تحديثات البرامج التلقائي(."
-
-#~ msgid ""
-#~ "\t* <b>Notification</b> of updates (by e-mail or by an applet on the "
-#~ "desktop)."
-#~ msgstr ""
-#~ "\t* <b>إخطار</b> بالتحديث (بواسطة البريد الالكتروني أو البُريمج على سطح "
-#~ "المكتب(."
-
-#~ msgid "\t* Flexible <b>scheduled</b> updates."
-#~ msgstr "\t* تحديثات <b>مُجدولة</b> مرنة."
-
-#~ msgid ""
-#~ "\t* Management of <b>all your Mandriva Linux systems</b> with one account."
-#~ msgstr "\t* إدارة <b>كل أنظمة ماندريبا لينكس خاصتك</b> باستخدام حساب واحد."
-
-#~ msgid "<b>Mandriva Expert</b>"
-#~ msgstr "<b>Mandriva Expert</b>"
-
-#~ msgid ""
-#~ "Do you require <b>assistance?</b> Meet Mandriva's technical experts on "
-#~ "<b>our technical support platform</b> www.mandrivaexpert.com."
-#~ msgstr ""
-#~ "هل تتطلّب <b>مساعدة؟</b> قابل خبراء ماندريبا التقنيين على <b>موقع الدعم "
-#~ "الفني الخاص بنا</b> www.mandrivaexpert.com."
-
-#~ msgid ""
-#~ "Thanks to the help of <b>qualified Mandriva Linux experts</b>, you will "
-#~ "save a lot of time."
-#~ msgstr ""
-#~ "بفضل مساعدة <b>خبراء ماندريبا لينكس الأكفاء</b>، سوف توفّر الكثير من الوقت."
-
-#~ msgid ""
-#~ "For any question related to Mandriva Linux, you have the possibility to "
-#~ "purchase support incidents at <b>store.mandriva.com</b>."
-#~ msgstr ""
-#~ "لأي سؤال متعلق بماندريبا لينكس، يمكن شراء الدعم من خلال <b>store."
-#~ "mandrakesoft.com</b>."
-
-#~ msgid "Network:"
-#~ msgstr "شبكة:"
-
-#~ msgid "IP:"
-#~ msgstr "IP:"
-
-#~ msgid "Mode:"
-#~ msgstr "النمط:"
-
-#~ msgid "Encryption:"
-#~ msgstr "التشفير:"
-
-#~ msgid "Signal:"
-#~ msgstr "إشارة:"
-
-#~ msgid "Rescan"
-#~ msgstr "Rescan"
-
-#~ msgid "Status"
-#~ msgstr "الحالة"
-
-#~ msgid "Disconnect"
-#~ msgstr "اقطع الاتصال"
-
-#~ msgid ""
-#~ "x coordinate of text box\n"
-#~ "in number of characters"
-#~ msgstr ""
-#~ "الإحداثي السيني لمربّع النصّ\n"
-#~ "بعدد الحروف"
-
-#~ msgid ""
-#~ "y coordinate of text box\n"
-#~ "in number of characters"
-#~ msgstr ""
-#~ "الإحداثي الصادي لمربّع النصّ\n"
-#~ "بعدد الحروف"
-
-#~ msgid "text width"
-#~ msgstr "عرض النص"
-
-#~ msgid "ProgressBar color selection"
-#~ msgstr "إختيار لون شريط التقدّم"
-
-#~ msgid "Connect to the Internet"
-#~ msgstr "وصّل إلى الإنترنت "
-
-#~ msgid ""
-#~ "The most common way to connect with adsl is pppoe.\n"
-#~ "Some connections use PPTP, a few use DHCP.\n"
-#~ "If you do not know, choose 'use PPPoE'"
-#~ msgstr ""
-#~ "الطريقة الأكثر شيوعاً للإتصال بـ adsl هي pppoe.\n"
-#~ "بعض الإتصالات تستخدم PPTP، و القليل تستخدم DHCP.\n"
-#~ "إذا لم تكن تعلم، اختر 'استخدم PPPoE'"
-
-#~ msgid "Do not print any test page"
-#~ msgstr "لا تطبع أي صفحات اختبارية"
-
-#~ msgid "Printer on SMB/Windows 95/98/NT server"
-#~ msgstr "طابعة على خادم SMB/Windows 95/98/NT"
-
-#~ msgid "Found printer on %s..."
-#~ msgstr "عُثر على طابعة على %s..."
-
-#~ msgid "Useless without Terminal Server"
-#~ msgstr "غير نافع بدون خادم طرفيّ"
-
-#~ msgid ""
-#~ "Please select default client type.\n"
-#~ " 'Thin' clients run everything off the server's CPU/RAM, using the "
-#~ "client display.\n"
-#~ " 'Fat' clients use their own CPU/RAM but the server's filesystem."
-#~ msgstr ""
-#~ "رجاء اختيار نوع العميل الافتراضي.\n"
-#~ " العملاء `النّحاف` يشغّلون كلّ شيء من ذاكرة/مُعالج الخادم، باستخدام جهاز "
-#~ "عَرْض العميل.\n"
-#~ " العملاء `الثّخان` يستخدمون الذّاكرة/وحدة المعالجة المركزية (cpu) الخاصّة "
-#~ "بهم ولكن نظام ملفّات الخادم."
-
-#~ msgid "dhcpd Config..."
-#~ msgstr "تهيئة dhcpd..."
-
-#~ msgid ""
-#~ "package 'ImageMagick' is required to be able to complete configuration.\n"
-#~ "Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
-#~ msgstr ""
-#~ "حزمة 'ImageMagick' ضرورية لكي يتم اكمال التهيئة.\n"
-#~ "اضغط \"موافق\" لتثبيت 'ImageMagick' أو \"إلغاء\" للخروج"
-
-#, fuzzy
-#~ msgid "Unable to select wireless network: %s"
-#~ msgstr "تعذر الإتصال بالمرآة %s"
-
-#~ msgid "Interactive intrusion detection"
-#~ msgstr "تفحص الاقتحام التفاعلي"
-
-#~ msgid "Active Firewall: intrusion detected"
-#~ msgstr "الجدار الناري النشط: تم اكتشاف تدخّل اقتحام"
-
-#~ msgid "Do you want to blacklist the attacker?"
-#~ msgstr "هل تريد إضافة المهاجم إلى القائمة السوداء؟"
-
-#~ msgid "Grub"
-#~ msgstr "Grub"
-
-#~ msgid "Local Network adress"
-#~ msgstr "عنوان الشبكة المحلية"
-
-#~ msgid "Configuring scripts, installing software, starting servers..."
-#~ msgstr "جاري تهيئة النصوص البرمجية و تثبيت البرمجيات و بدء الخدمات..."
-
-#~ msgid "drakfloppy"
-#~ msgstr "drakfloppy"
-
-#~ msgid "Boot disk creation"
-#~ msgstr "إنشاء قرص الإقلاع"
-
-#~ msgid "General"
-#~ msgstr "عام"
-
-#~ msgid "Kernel version"
-#~ msgstr "نسخة النواة"
-
-#~ msgid "Preferences"
-#~ msgstr "تفضيلات"
-
-#~ msgid "Advanced preferences"
-#~ msgstr "تفضيلات متقدمة"
-
-#~ msgid "Size"
-#~ msgstr "حجم"
-
-#~ msgid "Mkinitrd optional arguments"
-#~ msgstr "مُعامِلات mkinitrd الاختياريّة"
-
-#~ msgid "force"
-#~ msgstr "اجبار"
-
-#~ msgid "omit raid modules"
-#~ msgstr "إهمال وحدات raid"
-
-#~ msgid "if needed"
-#~ msgstr "إذا احتجته"
-
-#~ msgid "omit scsi modules"
-#~ msgstr "إهمال وحدات SCSI"
-
-#~ msgid "Add a module"
-#~ msgstr "إضافة وحدة"
-
-#~ msgid "Remove a module"
-#~ msgstr "إزالة وحدة"
-
-#~ msgid "Be sure a media is present for the device %s"
-#~ msgstr "تأكد من وجود الوسيط للوحدة %s"
-
-#~ msgid ""
-#~ "There is no medium or it is write-protected for device %s.\n"
-#~ "Please insert one."
-#~ msgstr ""
-#~ "لا يوجد وسط أو ربما يكون الوسط محمي من القراءة للجهاز %s.\n"
-#~ "فضلاً ادخل وسط فى الوحدة."
-
-#~ msgid "Unable to fork: %s"
-#~ msgstr "تعذر تنفيذ: %s"
-
-#~ msgid "Floppy creation completed"
-#~ msgstr "اكتمل إنشاء القرص المرن"
-
-#~ msgid "The creation of the boot floppy has been successfully completed \n"
-#~ msgstr "تمّ إنشاء قرص الإقلاع المرن بنجاح \n"
-
-#~ msgid ""
-#~ "Unable to properly close mkbootdisk:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
-#~ msgstr ""
-#~ "لا يمكن إغلاق mkbootdisk بشكل ملائم:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
-
-#~ msgid ""
-#~ "You may not be able to install lilo (since lilo does not handle a LV on "
-#~ "multiple PVs)"
-#~ msgstr "قد لا تتمكّن من تثبيت lilo (حيث أن lilo لا يمكنه تولّي LV على عدّة PV)"
-
-#~ msgid "use PPPoE"
-#~ msgstr "استخدام PPPoE"
-
-#~ msgid "use PPTP"
-#~ msgstr "استخدام PPTP"
-
-#~ msgid "use DHCP"
-#~ msgstr "استخدام DHCP"
-
-#~ msgid "Alcatel Speedtouch USB"
-#~ msgstr "Alcatel Speedtouch USB"
-
-#~ msgid " - detected"
-#~ msgstr " - تم اكتشافه"
-
-#~ msgid "Sagem (using PPPoA) USB"
-#~ msgstr "Sagem (باستخدام PPPOA) USB"
-
-#~ msgid "Sagem (using DHCP) USB"
-#~ msgstr "Sagem (مستعمل DHCP) USB"
-
-#~ msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-#~ msgstr "Icewm، Window Maker، Enlightenment، Fvwm، الخ"
-
-#~ msgid ""
-#~ "Warning, another Internet connection has been detected, maybe using your "
-#~ "network"
-#~ msgstr "تحذير، تم ايجاد اتصال إنترنت آخر، ربما يكون يستخدم شبكتك"
-
-#~ msgid "PXE Server Configuration"
-#~ msgstr "تهيئة خادم PXE"
-
-#~ msgid "Installation Server Configuration"
-#~ msgstr "تهيئة خادم الثبيت"
-
-#~ msgid ""
-#~ "You are about to configure your computer to install a PXE server as a "
-#~ "DHCP server\n"
-#~ "and a TFTP server to build an installation server.\n"
-#~ "With that feature, other computers on your local network will be "
-#~ "installable using this computer as source.\n"
-#~ "\n"
-#~ "Make sure you have configured your Network/Internet access using "
-#~ "drakconnect before going any further.\n"
-#~ "\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN)."
-#~ msgstr ""
-#~ "أنت على وشك تهيئة جهازك لتثبيت خادم PXE كخادم DHCP\n"
-#~ "و خادم TFTP لبناء خادم تثبيت.\n"
-#~ "باستخدام هذه الميزة تكون الحاسبات الأخرى على الشبكة المحلية قابلة للتثبيت "
-#~ "من هذا الجهاز.\n"
-#~ "\n"
-#~ "تأكد من أنك قمت بتهيئة الشبكة/الإنترنت باستخدام drakconnect قبل "
-#~ "المتابعة.\n"
-#~ "\n"
-#~ "ملحوظة: تحتاج إلى موائم شبكة مخصص لتهيئة الشبكة المحلية (LAN)."
-
-#~ msgid "No network adapter on your system!"
-#~ msgstr "لا موائم شبكة على نظامك"
-
-#~ msgid "Choose the network interface"
-#~ msgstr "اختر واجهة الشبكة"
-
-#~ msgid ""
-#~ "Please choose which network interface will be used for the dhcp server."
-#~ msgstr "الرجاء اختيار واجهة الشبكة التي سيتم استخدامها لخادم DHCP."
-
-#~ msgid "Interface %s (on network %s)"
-#~ msgstr "الواجهة %s (على الشبكة %s)"
-
-#~ msgid ""
-#~ "The DHCP server will allow other computer to boot using PXE in the given "
-#~ "range of address.\n"
-#~ "\n"
-#~ "The network address is %s using a netmask of %s.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "سيسمح خادم DHCP للحاسبات الأخرى بالإقلاع باستخدام PXE في حدود العناوين "
-#~ "المعطاة.\n"
-#~ "\n"
-#~ "عنوان الشبكة %s يستخدم netmask %s.\n"
-#~ "\n"
-
-#~ msgid "The DHCP start ip"
-#~ msgstr "عنوان IP الابتدائي لـDHCP"
-
-#~ msgid "The DHCP end ip"
-#~ msgstr "عنوان IP النهائي لـDHCP"
-
-#~ msgid ""
-#~ "Please indicate where the installation image will be available.\n"
-#~ "\n"
-#~ "If you do not have an existing directory, please copy the CD or DVD "
-#~ "contents.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "الرجاء تحديد مكان صورة التثبيت.\n"
-#~ "\n"
-#~ "إذا لم يكن هناك دليل موجود، الرجاء نسخ محتويات القرص المدمج أو قرص DVD.\n"
-#~ "\n"
-
-#~ msgid "Installation image directory"
-#~ msgstr "دليل صورة التثبيت"
-
-#
-#~ msgid "No image found"
-#~ msgstr "تعذر العثور على صورة"
-
-#~ msgid ""
-#~ "No CD or DVD image found, please copy the installation program and rpm "
-#~ "files."
-#~ msgstr ""
-#~ "تعذر العثور على صورة CD أو DVD، الرجاء نسخ برنامج التثبيت وملفات rpm"
-
-#~ msgid ""
-#~ "Please indicate where the auto_install.cfg file is located.\n"
-#~ "\n"
-#~ "Leave it blank if you do not want to set up automatic installation mode.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "فضلاً حدد مكان ملف auto_install.cfg.\n"
-#~ "\n"
-#~ "اترك الحقل فارغاً إذا لم تكن تريد إعادة وضع التثبيت الالي.\n"
-
-#~ msgid "Location of auto_install.cfg file"
-#~ msgstr "مكان ملف install.cfg"
-
-#~ msgid "Do it later"
-#~ msgstr "قم به لاحقاً"
-
-#~ msgid "MdkKDM (Mandriva Linux Display Manager)"
-#~ msgstr "MdkKDM (مدير عرض ماندريبا لينكس("
-
-#~ msgid "Internet Connection Sharing currently disabled"
-#~ msgstr "مشاركة الإتصال بالإنترنت مُعطّلة حالياً"
-
-#~ msgid "Enabling servers..."
-#~ msgstr "تمكين الخادمات..."
-
-#~ msgid "Internet Connection Sharing currently enabled"
-#~ msgstr "مشاركة الإتصال بالإنترنت ممكنة حاليا"
-
-#~ msgid "Interface %s (using module %s)"
-#~ msgstr "الواجهة %s (باستخدام الوحدة %s)"
-
-#~ msgid "Interface %s"
-#~ msgstr "الواجهة %s"
-
-#~ msgid "Network interface already configured"
-#~ msgstr "واجهة الشبكة معدّة مسبقا!"
-
-#~ msgid ""
-#~ "Warning, the network adapter (%s) is already configured.\n"
-#~ "\n"
-#~ "Do you want an automatic re-configuration?\n"
-#~ "\n"
-#~ "You can do it manually but you need to know what you're doing."
-#~ msgstr ""
-#~ "تحذير، موائم الشبكة (%s) معدّ مسبقاً.\n"
-#~ "\n"
-#~ "هل تريد إعادة التهيئة آلياً؟\n"
-#~ "\n"
-#~ "يمكنك القيام بذلك يدوياً لكن يجب أن تكون على علم بما تفعل."
-
-#~ msgid "No (experts only)"
-#~ msgstr "لا (للخبراء فقط)"
-
-#~ msgid "Show current interface configuration"
-#~ msgstr "إظهار تهيئة الواجهة الحالية"
-
-#~ msgid "Current interface configuration"
-#~ msgstr "تهيئة الواجهة الحالية"
-
-#~ msgid ""
-#~ "Current configuration of `%s':\n"
-#~ "\n"
-#~ "Network: %s\n"
-#~ "IP address: %s\n"
-#~ "IP attribution: %s\n"
-#~ "Driver: %s"
-#~ msgstr ""
-#~ "التهيئة الحالية لـ`%s':\n"
-#~ "\n"
-#~ "الشبكة: %s\n"
-#~ "عنوان الـIP: %s\n"
-#~ "صفة الـIP: %s\n"
-#~ "المُشغّل: %s"
-
-#~ msgid ""
-#~ "I can keep your current configuration and assume you already set up a "
-#~ "DHCP server; in that case please verify I correctly read the Network that "
-#~ "you use for your local network; I will not reconfigure it and I will not "
-#~ "touch your DHCP server configuration.\n"
-#~ "\n"
-#~ "The default DNS entry is the Caching Nameserver configured on the "
-#~ "firewall. You can replace that with your ISP DNS IP, for example.\n"
-#~ "\t\t \n"
-#~ "Otherwise, I can reconfigure your interface and (re)configure a DHCP "
-#~ "server for you.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "يمكنني حفظ التهيئة وافتراض أنك قمت بتهيئة خادم DHCP مسبقاً؛ في هذه الحال "
-#~ "تأكد من أنني أستطيع قراءة الشبكة التي تستخدمها للشبكة المحلية بشكل صحيح؛ "
-#~ "سأقوم بإعادة تهيئتها و لن أقوم بأي شئ تجاه تهيئة خادم DHCP.\n"
-#~ "\n"
-#~ "مدخل DNS الإفتراضي هو اسم الخادم المخبئي على الجدار الناري. يمكنك ابدال "
-#~ "ذلك بعنوان IP للـDNS الخاص بموفر خدمة الإنترنت، مثل.\n"
-#~ "\t\t \n"
-#~ "ان لم يكن ذلك، يمكنني إعادة تهيئة الواجهة و إعادة تهيئة خادم DHCP لك.\n"
-#~ "\n"
-
-#~ msgid "(This) DHCP Server IP"
-#~ msgstr "عنوان IP لخادم DHCP (هذا)"
-
-#~ msgid "Re-configure interface and DHCP server"
-#~ msgstr "إعادة تهيئة الواجهة و خادم DHCP"
-
-#~ msgid "The Local Network did not finish with `.0', bailing out."
-#~ msgstr "الشبكة المحلية لم تنته بـ`0'، جاري الخروج."
-
-#~ msgid "Number of logical extents: %d"
-#~ msgstr "عدد الامتدادات المنطقيّة: %d"
-
-#~ msgid ""
-#~ "WARNING: this device has been previously configured to connect to the "
-#~ "Internet.\n"
-#~ "Modifying the fields below will override this configuration.\n"
-#~ "Do you really want to reconfigure this device?"
-#~ msgstr ""
-#~ "تحذير: تمت تهيئة هذا الجهاز سابقاً للإتصال بالإنترنت.\n"
-#~ "تعديل الحقول أدناه سيغيّر هذه التهيئة.\n"
-#~ "هل تريد حقاً إعادة تهيئة هذا الجهاز؟"
-
-#~ msgid ""
-#~ " - Create etherboot floppies/CDs:\n"
-#~ " \tThe diskless client machines need either ROM images on the NIC, "
-#~ "or a boot floppy\n"
-#~ " \tor CD to initiate the boot sequence. drakTermServ will help "
-#~ "generate these\n"
-#~ " \timages, based on the NIC in the client machine.\n"
-#~ " \t\t\n"
-#~ " \tA basic example of creating a boot floppy for a 3Com 3c509 "
-#~ "manually:\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/lib/etherboot/floppyload.bin \\\n"
-#~ " \t\t/usr/share/etherboot/start16.bin \\\t\t\t\n"
-#~ " \t\t/usr/lib/etherboot/zimg/3c509.zimg > /dev/fd0"
-#~ msgstr ""
-#~ " - إنشاء أقراص etherboot مرنة/مدمجة:\n"
-#~ " \tماكينات العملاء غير ذوي الأقراص تحتاج إما إلى صور ROM على واجهة "
-#~ "الشبكة NIC، أوقرص إقلاع مرن\n"
-#~ " \tأو قرصاً مدمجاً لابتداء سلسلة الإقلاع. سيساعد drakTermServ بتوليد "
-#~ "هذه\n"
-#~ " \tالصور، بناء على واجهة الشبكة NIC في ماكينة العميل.\n"
-#~ " \t\t\n"
-#~ " \tمثال بسيط على إنشاء قرص إقلاع مرن لبطاقة 3Com 3c509 يدوياً:\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/lib/etherboot/floppyload.bin \\\n"
-#~ " \t\t/usr/share/etherboot/start16.bin \\\t\t\t\n"
-#~ " \t\t/usr/lib/etherboot/zimg/3c509.zimg > /dev/fd0"
-
-#~ msgid "Dynamic IP Address Pool:"
-#~ msgstr "مجموعة عناوين IP الديناميكيّة:"
-
-#~ msgid "hd"
-#~ msgstr "hd"
-
-#~ msgid "tape"
-#~ msgstr "شريط"
-
-#~ msgid "WebDAV remote site already in sync!"
-#~ msgstr "موقع WebDAV البعيد متزامن مسبقاً!"
-
-#~ msgid "WebDAV transfer failed!"
-#~ msgstr "فشلت عملية نقل WebDAV!"
-
-#~ msgid ""
-#~ "Backup quota exceeded!\n"
-#~ "%d MB used vs %d MB allocated."
-#~ msgstr ""
-#~ "تمّ تخطّي حدّ تخزين النّسخ الاحتياطي!\n"
-#~ "%d ميجابايت استخدمت مقابل %d ميجابايت مُعيّنة."
-
-#~ msgid ""
-#~ "Maximum size\n"
-#~ " allowed for Drakbackup (MB)"
-#~ msgstr ""
-#~ "الرجاء إدخال الحجم الأقصى\n"
-#~ " المسموح به لـDrakbackup )م.ب.)"
-
-#~ msgid "\t-Network by webdav.\n"
-#~ msgstr "\t-الشبكة عن طريق webdav.\n"
-
-#~ msgid "first step creation"
-#~ msgstr "إنشاء الخطوة الأولى"
-
-#~ msgid "choose image file"
-#~ msgstr "اختيار ملف صورة"
-
-#~ msgid "Configure bootsplash picture"
-#~ msgstr "تهيئة صورة bootsplash"
-
-#~ msgid "the color of the progress bar"
-#~ msgstr "لون شريط التقدم"
-
-#~ msgid "Preview"
-#~ msgstr "معاينة"
-
-#~ msgid "Choose color"
-#~ msgstr "اختيار اللون"
-
-#~ msgid "Make kernel message quiet by default"
-#~ msgstr "جعل رسائل النواة صامتة افتراضياً"
-
-#~ msgid "Notice"
-#~ msgstr "ملاحظة"
-
-#~ msgid "This theme does not yet have a bootsplash in %s!"
-#~ msgstr "هذه السمة ليس لها خلفية إقلاع في %s!"
-
-#~ msgid "You must choose an image file first!"
-#~ msgstr "يجب اختيار ملف صورة أولاً!"
-
-#~ msgid "Generating preview..."
-#~ msgstr "توليد المعاينة..."
-
-#~ msgid "%s BootSplash (%s) preview"
-#~ msgstr "معاينة %s BootSplash (%s("
-
-#~ msgid ""
-#~ "The image \"%s\" cannot be load due to the following issue:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\">%s</span>"
-#~ msgstr ""
-#~ "لا يمكن تحميل الصّورة \"%s\" بسبب المشكل التّالي:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\">%s</span>"
-
-#~ msgid "No floppy drive available"
-#~ msgstr "لا توجد سواقة أقراص مرنة"
-
-#~ msgid "Please insert the Update Modules floppy in drive %s"
-#~ msgstr "الرجاء إدخال قرص وحدات التحديث في السواقة %s"
-
-#~ msgid ""
-#~ "_: keyboard\n"
-#~ "Tifinagh (+latin/arabic)"
-#~ msgstr "تفيناغ (+لاتينيّة/عربيّة)"
-
-#~ msgid "No network card"
-#~ msgstr "لا توجد بطاقة شبكة"
-
-#~ msgid "Use already installed driver (%s)"
-#~ msgstr "استخدام مشغّل مثبّت مسبقاً (%s)"
+#~ msgid "Icon"
+#~ msgstr "أيقونة"
-#~ msgid "You've not selected any font"
-#~ msgstr "لم تقم باختيار أي خط"
+#~ msgid "Number of capture buffers:"
+#~ msgstr "عدد مخازن اللّقطات:"
-#~ msgid "http://www.mandrivalinux.com/en/101errata.php3"
-#~ msgstr "http://www.mandrivalinux.com/en/101errata.php3"
+#~ msgid "number of capture buffers for mmap'ed capture"
+#~ msgstr "عدد مخازن اللّقطات للقطات mmap'ed"
-#~ msgid "The Mandriva Linux 10.1 products are:"
-#~ msgstr "منتجات ماندريبا لينكس 10.1 هي:"
+#~ msgid "PLL setting:"
+#~ msgstr "إعداد PLL:"
-#~ msgid ""
-#~ "\t* <b>Mandriva Linux 10.1 for x86-64</b>, The Mandriva Linux solution "
-#~ "for making the most of your 64-bit processor."
-#~ msgstr ""
-#~ "\t* <b>ماندريبا لينكس 10.1 لأنظمة x86-64</b>، حلّ ماندريبا لينكس للحصول "
-#~ "على أفضل نتيجة من معالجات 64بت."
+#~ msgid "Radio support:"
+#~ msgstr "دعم الراديو:"
-#~ msgid "No browser available! Please install one"
-#~ msgstr "لا يوجد متصفح متوفر! الرجاء تثبيت متصفح"
+#~ msgid "enable radio support"
+#~ msgstr "تمكين دعم الراديو"
-#~ msgid ""
-#~ "No browser is installed on your system, Please install one if you want to "
-#~ "browse the help system"
-#~ msgstr ""
-#~ "لا يوجد متصفح مثبت على نظامك، فضلاً قم بتثبيت متصفح إذا كنت ترغب في تصفح "
-#~ "نظام المساعدة"
+#~ msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+#~ msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index a43874dc9..7baad6e99 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-az\n"
-"POT-Creation-Date: 2006-03-05 18:57+0800\n"
+"POT-Creation-Date: 2007-03-21 12:10+0100\n"
"PO-Revision-Date: 2005-03-31 14:21+0200\n"
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
@@ -18,785 +18,20 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3.1\n"
-#: ../move/move.pm:292
-#, c-format
-msgid "Which USB key do you want to format?"
-msgstr "Hansı USB yaddaş modulunu şəkilləndirmək istəyirsiniz?"
-
-#: ../move/move.pm:296
-#, c-format
-msgid ""
-"You are about to format a USB device \"%s\". This will delete all data on "
-"it.\n"
-"Make sure that the selected device is the USB key you want to format. \n"
-"We advise you to unplug all other USB storage devices while doing this "
-"operation."
-msgstr ""
-
-#: ../move/move.pm:448 ../move/move.pm:460
-#, c-format
-msgid "Key is not writable"
-msgstr "Yaddaş modulu yazıla bilən deyil"
-
-#: ../move/move.pm:450
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-
-#: ../move/move.pm:452
-#, c-format
-msgid "Retry"
-msgstr "Yenidən Sına"
-
-#: ../move/move.pm:453 ../move/move.pm:497
-#, c-format
-msgid "Continue without USB key"
-msgstr "USB yaddaş modulu olmadan davam et"
-
-#: ../move/move.pm:462
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled, but we can not safely\n"
-"unplug it now.\n"
-"\n"
-"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandriva Move again."
-msgstr ""
-
-#: ../move/move.pm:468 help.pm:410 install_steps_interactive.pm:1303
-#, c-format
-msgid "Reboot"
-msgstr "Yenidən başlat"
-
-#: ../move/move.pm:473
-#, c-format
-msgid ""
-"Your USB key does not have any valid Windows (FAT) partitions.\n"
-"We need one to continue (beside, it's more standard so that you\n"
-"will be able to move and access your files from machines\n"
-"running Windows). Please plug in an USB key containing a\n"
-"Windows partition instead.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-
-#: ../move/move.pm:483
-#, c-format
-msgid ""
-"We did not detect any USB key on your system. If you\n"
-"plug in an USB key now, Mandriva Move will have the ability\n"
-"to transparently save the data in your home directory and\n"
-"system wide configuration, for next boot on this computer\n"
-"or another one. Note: if you plug in a key now, wait several\n"
-"seconds before detecting again.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-
-#: ../move/move.pm:494
-#, c-format
-msgid "Need a key to save your data"
-msgstr "Məlumatlarınızı qeyd etmək üçün yaddaş çubuğu lazımdır"
-
-#: ../move/move.pm:496
-#, c-format
-msgid "Detect USB key again"
-msgstr "USB yaddaş modulunu yenidən təsbit et"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Setting up USB key"
-msgstr "USB yaddaş modulu quraşdırılır"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr ""
-"Xahiş edirik gözləyin, USB yaddaş modulu üstünə sistem quraşdırma faylları "
-"yazılır..."
-
-#: ../move/move.pm:546
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Auto configuration"
-msgstr "Avtomatik quraşdırma"
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Xahiş edirik gözləyin, avadanlıqlar tapılır və quraşdırılır..."
-
-#: ../move/move.pm:604 ../move/move.pm:660 ../move/move.pm:664
-#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/interactive.pm:231
-#: diskdrake/interactive.pm:244 diskdrake/interactive.pm:405
-#: diskdrake/interactive.pm:423 diskdrake/interactive.pm:560
-#: diskdrake/interactive.pm:565 diskdrake/smbnfs_gtk.pm:41 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:52 fsedit.pm:218 install_any.pm:1775
-#: install_any.pm:1827 install_steps.pm:81 install_steps_interactive.pm:37
-#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
-#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
-#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
-#: network/netconnect.pm:837 network/netconnect.pm:866
-#: network/netconnect.pm:965 network/netconnect.pm:969
-#: network/netconnect.pm:973 network/netconnect.pm:978
-#: network/netconnect.pm:1123 network/netconnect.pm:1127
-#: network/netconnect.pm:1246 network/netconnect.pm:1251
-#: network/netconnect.pm:1271 network/netconnect.pm:1428
-#: network/thirdparty.pm:321 network/thirdparty.pm:328
-#: network/thirdparty.pm:372 network/thirdparty.pm:374
-#: network/thirdparty.pm:395 network/thirdparty.pm:419
-#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
-#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
-#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
-#: printer/printerdrake.pm:450 printer/printerdrake.pm:514
-#: printer/printerdrake.pm:686 printer/printerdrake.pm:690
-#: printer/printerdrake.pm:772 printer/printerdrake.pm:1555
-#: printer/printerdrake.pm:1603 printer/printerdrake.pm:1640
-#: printer/printerdrake.pm:1685 printer/printerdrake.pm:1689
-#: printer/printerdrake.pm:1703 printer/printerdrake.pm:1795
-#: printer/printerdrake.pm:1876 printer/printerdrake.pm:1880
-#: printer/printerdrake.pm:1884 printer/printerdrake.pm:1933
-#: printer/printerdrake.pm:1991 printer/printerdrake.pm:1995
-#: printer/printerdrake.pm:2009 printer/printerdrake.pm:2129
-#: printer/printerdrake.pm:2133 printer/printerdrake.pm:2176
-#: printer/printerdrake.pm:2249 printer/printerdrake.pm:2267
-#: printer/printerdrake.pm:2276 printer/printerdrake.pm:2285
-#: printer/printerdrake.pm:2296 printer/printerdrake.pm:2360
-#: printer/printerdrake.pm:2512 printer/printerdrake.pm:2947
-#: printer/printerdrake.pm:3231 printer/printerdrake.pm:3237
-#: printer/printerdrake.pm:3802 printer/printerdrake.pm:3806
-#: printer/printerdrake.pm:3810 printer/printerdrake.pm:4206
-#: printer/printerdrake.pm:4446 printer/printerdrake.pm:4474
-#: printer/printerdrake.pm:4551 printer/printerdrake.pm:4617
-#: printer/printerdrake.pm:4737 standalone/drakTermServ:422
-#: standalone/drakTermServ:492 standalone/drakTermServ:501
-#: standalone/drakTermServ:812 standalone/drakTermServ:819
-#: standalone/drakTermServ:845 standalone/drakTermServ:894
-#: standalone/drakTermServ:1146 standalone/drakTermServ:1181
-#: standalone/drakTermServ:1634 standalone/drakTermServ:1643
-#: standalone/drakTermServ:1651 standalone/drakTermServ:1656
-#: standalone/drakTermServ:1664 standalone/drakTermServ:1680
-#: standalone/drakTermServ:1700 standalone/drakauth:36
-#: standalone/drakbackup:511 standalone/drakbackup:625
-#: standalone/drakbackup:1110 standalone/drakbackup:1141
-#: standalone/drakbackup:1332 standalone/drakbackup:1664
-#: standalone/drakbackup:1820 standalone/drakbackup:2548
-#: standalone/drakbackup:4463 standalone/drakclock:124
-#: standalone/drakconnect:676 standalone/drakconnect:680
-#: standalone/drakconnect:685 standalone/drakconnect:700
-#: standalone/drakfont:209 standalone/drakfont:222 standalone/drakfont:260
-#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakhosts:98
-#: standalone/drakhosts:246 standalone/drakhosts:253 standalone/drakhosts:260
-#: standalone/draknfs:306 standalone/draknfs:609 standalone/draknfs:616
-#: standalone/draknfs:623 standalone/drakroam:33 standalone/draksambashare:384
-#: standalone/draksambashare:388 standalone/draksambashare:391
-#: standalone/draksambashare:394 standalone/draksambashare:453
-#: standalone/draksambashare:477 standalone/draksambashare:551
-#: standalone/draksambashare:633 standalone/draksambashare:700
-#: standalone/draksambashare:800 standalone/draksambashare:807
-#: standalone/draksambashare:942 standalone/draksambashare:1133
-#: standalone/draksambashare:1142 standalone/draksambashare:1151
-#: standalone/draksambashare:1172 standalone/draksambashare:1181
-#: standalone/draksambashare:1190 standalone/draksambashare:1210
-#: standalone/draksambashare:1218 standalone/draksambashare:1230
-#: standalone/draksplash:162 standalone/drakxtv:107
-#: standalone/finish-install:79 standalone/logdrake:171
-#: standalone/logdrake:439 standalone/logdrake:444 standalone/scannerdrake:59
-#: standalone/scannerdrake:202 standalone/scannerdrake:261
-#: standalone/scannerdrake:732 standalone/scannerdrake:743
-#: standalone/scannerdrake:882 standalone/scannerdrake:893
-#: standalone/scannerdrake:963 wizards.pm:95 wizards.pm:99 wizards.pm:121
-#, c-format
-msgid "Error"
-msgstr "Xəta"
-
-#: ../move/move.pm:605 install_steps.pm:82
-#, c-format
-msgid ""
-"An error occurred, but I do not know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Bir xəta oldu, yalnız necə düzəldiləcəyi bilinmir.\n"
-"Davam edin, riski sizə aitdir!"
-
-#: ../move/move.pm:660 install_steps_interactive.pm:37
-#, c-format
-msgid "An error occurred"
-msgstr "Bir xəta oldu"
-
-#: ../move/move.pm:666
-#, c-format
-msgid ""
-"An error occurred:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"This may come from corrupted system configuration files\n"
-"on the USB key, in this case removing them and then\n"
-"rebooting Mandriva Move would fix the problem. To do\n"
-"so, click on the corresponding button.\n"
-"\n"
-"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-
-#: ../move/move.pm:681
-#, c-format
-msgid "Remove system config files"
-msgstr "Sistem qurğu fayllarını sil"
-
-#: ../move/move.pm:682
-#, c-format
-msgid "Simply reboot"
-msgstr "Sadəcə olaraq yenidən başlat"
-
-#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr "Sadəcə olaraq CDROM dəstəyi olmadan işə sala bilərsiniz"
-
-#: ../move/tree/mdk_totem:71
-#, c-format
-msgid "Kill those programs"
-msgstr "Bu proqramları öldür"
-
-#: ../move/tree/mdk_totem:72
-#, c-format
-msgid "No CDROM support"
-msgstr "CDROM dəstəyi yoxdur"
-
-#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1062 diskdrake/interactive.pm:1072
-#: diskdrake/interactive.pm:1125
-#, c-format
-msgid "Read carefully!"
-msgstr "Diqqətlə oxuyun!"
-
-#: ../move/tree/mdk_totem:77
-#, c-format
-msgid ""
-"You can not use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-
-#: ../move/tree/mdk_totem:101
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr ""
-
-#: Xconfig/card.pm:13
-#, c-format
-msgid "256 kB"
-msgstr "256 kB"
-
-#: Xconfig/card.pm:14
-#, c-format
-msgid "512 kB"
-msgstr "512 kB"
-
-#: Xconfig/card.pm:15
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
-
-#: Xconfig/card.pm:16
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
-
-#: Xconfig/card.pm:17
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
-
-#: Xconfig/card.pm:18
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
-
-#: Xconfig/card.pm:19
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: Xconfig/card.pm:20
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
-
-#: Xconfig/card.pm:21
-#, c-format
-msgid "64 MB or more"
-msgstr "64 MB və ya daha çox"
-
-#: Xconfig/card.pm:162
-#, c-format
-msgid "X server"
-msgstr "X verici"
-
-#: Xconfig/card.pm:163
-#, c-format
-msgid "Choose an X server"
-msgstr "X vericisini seçin"
-
-#: Xconfig/card.pm:195
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Çoxlu Başlıq quraşdırılması"
-
-#: Xconfig/card.pm:196
-#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Sisteminiz çoxlu başlıq quraşdırmasını dəstəkləyir.\n"
-"Nə etmək istəyirsiniz?"
-
-#: Xconfig/card.pm:265
-#, c-format
-msgid "Can not install Xorg package: %s"
-msgstr "Xorg paketi qurula bilmir: %s"
-
-#: Xconfig/card.pm:275
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Ekran kartınızın yaddaş böyüklüyünü seçin"
-
-#: Xconfig/card.pm:371
-#, c-format
-msgid "Xorg configuration"
-msgstr "Xorg quraşdırılması"
-
-#: Xconfig/card.pm:373
-#, c-format
-msgid "Which configuration of Xorg do you want to have?"
-msgstr "Necə bir Xorg qurğusunu istəyirsiniz?"
-
-#: Xconfig/card.pm:406
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Bütün başlıqları ayrı ayrı quraşdır"
-
-#: Xconfig/card.pm:407
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Xinerama uzantısını işlət"
-
-#: Xconfig/card.pm:412
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Yalniz \"%s\"%s kartını quraşdır"
-
-#: Xconfig/card.pm:424 Xconfig/various.pm:23
-#, c-format
-msgid "Xorg %s"
-msgstr "Xorg %s"
-
-#: Xconfig/card.pm:431 Xconfig/various.pm:22
-#, c-format
-msgid "Xorg %s with 3D hardware acceleration"
-msgstr "3D avadanlıq sür'ətləndirməsi ilə Xorg %s"
-
-#: Xconfig/card.pm:433
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with Xorg %s."
-msgstr "Sizin kartınızın Xorg %s ilə 3D dəstəyi ola bilər."
-
-#: Xconfig/card.pm:439
-#, c-format
-msgid "Xorg %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "SINAQ MƏRHƏLƏSİNDƏKİ 3D sür'ətləndirmə dəstəkli Xorg %s"
-
-#: Xconfig/card.pm:441
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with Xorg %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Sizin kartınızın Xorg %s ilə 3D dəstəyi ola bilər.\n"
-"DİQQƏT! BU SINAQ MƏRHƏLƏSINDƏDIR VƏ KOMPÜTERİNİZ DONDURA BILƏR."
-
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:1021
-#, c-format
-msgid "Custom"
-msgstr "Xüsusi"
-
-#: Xconfig/main.pm:127 any.pm:742 diskdrake/dav.pm:26 help.pm:15
-#: install_steps_interactive.pm:1303 printer/printerdrake.pm:882
-#: printer/printerdrake.pm:899 printer/printerdrake.pm:4546
-#: printer/printerdrake.pm:5010 standalone/drakhosts:263
-#: standalone/drakroam:230 standalone/draksplash:93 standalone/logdrake:176
-#: standalone/net_applet:103 standalone/scannerdrake:494
-#, c-format
-msgid "Quit"
-msgstr "Çıx"
-
-#: Xconfig/main.pm:129
-#, c-format
-msgid "Graphic Card"
-msgstr "Qrafika Kartı"
-
-#: Xconfig/main.pm:132 Xconfig/monitor.pm:110
-#, c-format
-msgid "Monitor"
-msgstr "Monitor"
-
-#: Xconfig/main.pm:135 Xconfig/resolution_and_depth.pm:289
-#, c-format
-msgid "Resolution"
-msgstr "Həlledilirlik"
-
-#: Xconfig/main.pm:138
-#, c-format
-msgid "Test"
-msgstr "Sına"
-
-#: Xconfig/main.pm:143 diskdrake/dav.pm:65 diskdrake/interactive.pm:449
-#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
-#: printer/printerdrake.pm:1112 standalone/drakfont:493
-#: standalone/drakfont:548
-#, c-format
-msgid "Options"
-msgstr "Seçimlər"
-
-#: Xconfig/main.pm:178
-#, c-format
-msgid "Your Xorg configuration file is broken, we will ignore it."
-msgstr ""
-
-#: Xconfig/main.pm:196
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Dəyişikliklər saxlansın?\n"
-"Hazırkı qurğular belədir:\n"
-"\n"
-"%s"
-
-#: Xconfig/monitor.pm:111
-#, fuzzy, c-format
-msgid "Choose a monitor for head #%d"
-msgstr "Monitorunuzu seçin"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor"
-msgstr "Monitorunuzu seçin"
-
-#: Xconfig/monitor.pm:117
-#, c-format
-msgid "Plug'n Play"
-msgstr "Tax və İşlət"
-
-#: Xconfig/monitor.pm:118 mouse.pm:49
-#, c-format
-msgid "Generic"
-msgstr "Ümumi"
-
-#: Xconfig/monitor.pm:119 standalone/drakconnect:591 standalone/harddrake2:54
-#: standalone/harddrake2:88
-#, c-format
-msgid "Vendor"
-msgstr "E'malatçı"
-
-#: Xconfig/monitor.pm:129
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr ""
-"Tax və İşlət sınaması bacarılmadı. Xahiş edirik, hazırkı monitoru seçin"
-
-#: Xconfig/monitor.pm:137
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Buradaki iki vacib parametr üfüqi ve şaquli yeniləmə sür'ətləridir.\n"
-"Seçərkən monitorunuzun qabiliyyətinin üstündə bir parametr\n"
-"seçməməyiniz çox vacibdir, əks halda monitor zərər görər.\n"
-"Seçərkən bir qərarsızlığa düşərsəniz, alçaq rezolyusiya seçin."
-
-#: Xconfig/monitor.pm:144
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Üfüqi yeniləmə sür'əti"
-
-#: Xconfig/monitor.pm:145
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Şaquli yeniləmə sür'əti"
-
-#: Xconfig/resolution_and_depth.pm:10
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 rəng (8 bits)"
-
-#: Xconfig/resolution_and_depth.pm:11
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 min rəng (15 bits)"
-
-#: Xconfig/resolution_and_depth.pm:12
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 min rəng (16 bits)"
-
-#: Xconfig/resolution_and_depth.pm:13
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 million rəng (24 bit)"
-
-#: Xconfig/resolution_and_depth.pm:127
-#, c-format
-msgid "Resolutions"
-msgstr "Həlledilirliklər"
-
-#: Xconfig/resolution_and_depth.pm:311 diskdrake/hd_gtk.pm:336
-#: install_steps_gtk.pm:288 mouse.pm:168 services.pm:162
-#: standalone/drakbackup:1606 standalone/drakperm:250
-#, c-format
-msgid "Other"
-msgstr "Digər"
-
-#: Xconfig/resolution_and_depth.pm:360
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Həlledilirlik və rəng dərinliyini seçin"
-
-#: Xconfig/resolution_and_depth.pm:361
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Qrafika kartı: %s"
-
-#: Xconfig/resolution_and_depth.pm:375 interactive.pm:119 interactive.pm:436
-#: interactive/http.pm:103 interactive/http.pm:156 interactive/newt.pm:321
-#: interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:143
-#: standalone/drakTermServ:222 standalone/drakTermServ:543
-#: standalone/drakbackup:1372 standalone/drakbackup:4123
-#: standalone/drakbackup:4183 standalone/drakbackup:4227
-#: standalone/drakbackup:4481 standalone/drakconnect:158
-#: standalone/drakconnect:852 standalone/drakconnect:939
-#: standalone/drakconnect:1030 standalone/drakfont:569 standalone/drakfont:579
-#: standalone/draksplash:173 standalone/drakups:210 standalone/net_monitor:339
-#: ugtk2.pm:392 ugtk2.pm:490 ugtk2.pm:899 ugtk2.pm:922
-#, c-format
-msgid "Ok"
-msgstr "Oldu"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/smbnfs_gtk.pm:80 help.pm:90
-#: help.pm:445 install_steps_gtk.pm:455 install_steps_interactive.pm:406
-#: install_steps_interactive.pm:811 interactive.pm:120 interactive.pm:437
-#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
-#: interactive/stdio.pm:39 interactive/stdio.pm:142
-#: printer/printerdrake.pm:3882 standalone/drakautoinst:215
-#: standalone/drakbackup:1372 standalone/drakbackup:4052
-#: standalone/drakbackup:4056 standalone/drakbackup:4111
-#: standalone/drakbackup:4481 standalone/drakconnect:157
-#: standalone/drakconnect:937 standalone/drakconnect:1029
-#: standalone/drakfont:579 standalone/drakfont:655 standalone/drakfont:733
-#: standalone/draksplash:173 standalone/drakups:217 standalone/logdrake:176
-#: standalone/net_monitor:338 ugtk2.pm:386 ugtk2.pm:488 ugtk2.pm:497
-#: ugtk2.pm:899
-#, c-format
-msgid "Cancel"
-msgstr "Ləğv Et"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/hd_gtk.pm:150
-#: install_steps_gtk.pm:232 install_steps_gtk.pm:617 interactive.pm:567
-#: interactive/gtk.pm:682 interactive/gtk.pm:684 standalone/drakTermServ:311
-#: standalone/drakbackup:4048 standalone/drakbug:105
-#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:511 standalone/draknfs:206 standalone/drakperm:133
-#: standalone/draksambashare:320 standalone/draksec:344 standalone/draksec:346
-#: standalone/draksec:364 standalone/draksec:366 ugtk2.pm:1031 ugtk2.pm:1032
-#, c-format
-msgid "Help"
-msgstr "Yardım"
-
-#: Xconfig/test.pm:30
-#, c-format
-msgid "Test of the configuration"
-msgstr "Qurğuların sınağı"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Qurğuları sınamaq istəyirsiniz?"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Diqqət: Bu qrafika kartı ilə ediləcək sınaq kompüterinizi dondura bilər"
-
-#: Xconfig/test.pm:69
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"Xəta meydana gəldi:\n"
-"%s\n"
-"Bə'zi parametrləri dəyişdirməyi sınayın"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "%d saniyə sonra çıxılacaq"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Bu qurğu doğrudur?"
-
-#: Xconfig/various.pm:29
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Klavatura düzülüşü: %s\n"
-
-#: Xconfig/various.pm:30
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Siçan növü: %s\n"
-
-#: Xconfig/various.pm:31
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Siçan avadanlığı: %s\n"
-
-#: Xconfig/various.pm:33
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: Xconfig/various.pm:34
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Monitorun Şaquli Daraması: %s\n"
-
-#: Xconfig/various.pm:35
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Monitorun Üfüqi Yeniləməsi: %s\n"
-
-#: Xconfig/various.pm:37
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Ekran kartı: %s\n"
-
-#: Xconfig/various.pm:38
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Ekran kartı yaddaşı: %s KB\n"
-
-#: Xconfig/various.pm:40
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Rəng dərinliyi: %s\n"
-
-#: Xconfig/various.pm:41
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Həlledilirlik: %s\n"
-
-#: Xconfig/various.pm:43
-#, c-format
-msgid "Xorg driver: %s\n"
-msgstr "Xorg sürücü: %s\n"
-
-#: Xconfig/various.pm:72
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "X ilə Açılış"
-
-#: Xconfig/various.pm:74
-#, c-format
-msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(Xorg) upon booting.\n"
-"Would you like Xorg to start when you reboot?"
-msgstr ""
-"Kompüterinizi avtomatik olaraq X ilə açılması üçün qura bilərəm.\n"
-"Açılışda X Window ilə başlamaq istəyirsiniz?"
-
-#: Xconfig/various.pm:87
-#, c-format
-msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
-msgstr ""
-"Görünən odur ki qrafika kartınızın TV-OUT konnektoru var.\n"
-"O, frame-buffer işlədilərək işləməsi üçün quraşdırıla bilər.\n"
-"\n"
-"Bunun üçün qrafika kartınızı kompüterinizi başlatmadan əvvəl Televizorunuz "
-"ilə bağlamalısınız.\n"
-"Daha sonra açılış yükləyicisində \"TVout\" girişini seçin\n"
-"\n"
-"Bu xüsusiyyətə maliksiniz?"
-
-#: Xconfig/various.pm:99
-#, c-format
-msgid "What norm is your TV using?"
-msgstr "Televiziyanız hansı normu işlədir?"
-
-#: Xconfig/xfree.pm:648
-#, c-format
-msgid ""
-"_:weird aspect ratio\n"
-"other"
-msgstr ""
-
-#: any.pm:153 harddrake/sound.pm:195 interactive.pm:474 pkgs.pm:474
-#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
-#: standalone/drakups:99 standalone/drakxtv:92 standalone/harddrake2:375
-#: standalone/service_harddrake:235
+#: any.pm:157 diskdrake/interactive.pm:422 diskdrake/interactive.pm:617
+#: diskdrake/interactive.pm:798 diskdrake/interactive.pm:842
+#: diskdrake/interactive.pm:904 diskdrake/interactive.pm:1188 do_pkgs.pm:209
+#: do_pkgs.pm:255 harddrake/sound.pm:195 interactive.pm:576
#, c-format
msgid "Please wait"
msgstr "Xahiş edirik, gözləyin"
-#: any.pm:153
+#: any.pm:157
#, c-format
msgid "Bootloader installation in progress"
msgstr "Açılış yükləyicisi qurulumu fəaliyyətdədir"
-#: any.pm:164
+#: any.pm:168
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -807,12 +42,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:175
+#: any.pm:179
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Açılış yükləyicisi qurulumu iflas etdi. Xəta:"
-#: any.pm:181
+#: any.pm:185
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -830,7 +65,7 @@ msgstr ""
" Sonra da bunları yazın: shut-down\n"
"Bir sonrakı başlanğıcda açılış yükləyicisi sətirini görməlisiniz."
-#: any.pm:219
+#: any.pm:223
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -845,258 +80,270 @@ msgstr ""
"\n"
"Hansı sürücü üstündən açılış edirsiniz?"
-#: any.pm:242 help.pm:740
+#: any.pm:246
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Diskin ilk sektoru (MBR)"
-#: any.pm:243
+#: any.pm:247
#, c-format
msgid "First sector of the root partition"
msgstr "Kök bolməsinin ilk sektoru"
-#: any.pm:245
+#: any.pm:249
#, c-format
msgid "On Floppy"
msgstr "Disketə"
-#: any.pm:247 help.pm:740 printer/printerdrake.pm:4203
+#: any.pm:251
#, c-format
msgid "Skip"
msgstr "Keç"
-#: any.pm:251
+#: any.pm:255
#, c-format
msgid "LILO/grub Installation"
msgstr "LILO/grub Qurulumu"
-#: any.pm:252
+#: any.pm:257
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Sistem yükləyicisini hara qurmaq istəyirsiniz?"
-#: any.pm:278 standalone/drakboot:269
+#: any.pm:284
#, c-format
msgid "Boot Style Configuration"
msgstr "Açılış Tərzi Quraşdırılması"
-#: any.pm:280 any.pm:281 any.pm:314 any.pm:315
+#: any.pm:294 any.pm:326 any.pm:327
#, c-format
msgid "Bootloader main options"
msgstr "Sistem yükləyicisinin ana seçimləri"
-#: any.pm:286
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Yaddaş miqdarını MB cinsindən verin"
-
-#: any.pm:288
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"``Əmr sətiri seçimlərini məhdudlaşdır`` seçimi şifrəsiz bir işə yaramaz"
-
-#: any.pm:289 any.pm:628 authentication.pm:192
-#, c-format
-msgid "The passwords do not match"
-msgstr "Şifrələr uyğun gəlmir"
-
-#: any.pm:289 any.pm:628 authentication.pm:192 diskdrake/interactive.pm:1336
+#: any.pm:299
#, c-format
-msgid "Please try again"
-msgstr "Xahiş edirik, təkrar sınayın"
+msgid "Bootloader"
+msgstr "Açılış yükləyicisi"
-#: any.pm:294 any.pm:319
+#: any.pm:300 any.pm:331
#, c-format
msgid "Bootloader to use"
msgstr "İstifadə ediləcək Açılış idarəcisi"
-#: any.pm:296 any.pm:321
+#: any.pm:302 any.pm:333
#, c-format
msgid "Boot device"
msgstr "Açılış avadanlığı"
-#: any.pm:298
+#: any.pm:304
+#, c-format
+msgid "Main options"
+msgstr ""
+
+#: any.pm:305
#, c-format
msgid "Delay before booting default image"
msgstr "Açılışda gecikmə müddəti"
-#: any.pm:299
+#: any.pm:306
#, c-format
msgid "Enable ACPI"
msgstr "ACPI-ni Fəallaşdır"
-#: any.pm:301
-#, c-format
-msgid "Force no APIC"
-msgstr "APIC olmamasına məcbur et"
+#: any.pm:307
+#, fuzzy, c-format
+msgid "Enable APIC"
+msgstr "ACPI-ni Fəallaşdır"
-#: any.pm:303
+#: any.pm:308
#, fuzzy, c-format
-msgid "Force No Local APIC"
-msgstr "APIC olmamasına məcbur et"
+msgid "Enable Local APIC"
+msgstr "ACPI-ni Fəallaşdır"
-#: any.pm:305 any.pm:662 authentication.pm:197 diskdrake/smbnfs_gtk.pm:180
-#: network/netconnect.pm:584 printer/printerdrake.pm:1867
-#: printer/printerdrake.pm:1988 standalone/drakbackup:1650
-#: standalone/drakbackup:3641 standalone/drakups:297
+#: any.pm:310 any.pm:686 authentication.pm:196 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Şifrə"
-#: any.pm:306 any.pm:663 authentication.pm:198
+#: any.pm:312 authentication.pm:207
+#, c-format
+msgid "The passwords do not match"
+msgstr "Şifrələr uyğun gəlmir"
+
+#: any.pm:312 authentication.pm:207 diskdrake/interactive.pm:1348
+#, c-format
+msgid "Please try again"
+msgstr "Xahiş edirik, təkrar sınayın"
+
+#: any.pm:313
+#, fuzzy, c-format
+msgid "You can not use a password with %s"
+msgstr ""
+"%s bağlama nöqtəsi üçün şifrələnmiş fayl sistemi istifadə edə bilməzsiniz"
+
+#: any.pm:316 any.pm:687 authentication.pm:197
#, c-format
msgid "Password (again)"
msgstr "Şifrə (təkrar)"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "Restrict command line options"
msgstr "Əmr sətiri seçimlərini məhdudlaşdır"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "restrict"
msgstr "məhdudlaşdır"
-#: any.pm:309
+#: any.pm:318
+#, c-format
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr ""
+"``Əmr sətiri seçimlərini məhdudlaşdır`` seçimi şifrəsiz bir işə yaramaz"
+
+#: any.pm:320
#, c-format
msgid "Clean /tmp at each boot"
msgstr "/tmp-i hər açılışda təmizlə"
-#: any.pm:310
+#: any.pm:321
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ümumi yaddaş miqdarı (%d MB tapıldı)"
-#: any.pm:320
+#: any.pm:322
+#, c-format
+msgid "Give the ram size in MB"
+msgstr "Yaddaş miqdarını MB cinsindən verin"
+
+#: any.pm:332
#, c-format
msgid "Init Message"
msgstr "Init İsmarışı"
-#: any.pm:322
+#: any.pm:334
#, c-format
msgid "Open Firmware Delay"
msgstr "Açıq Firmware Gecikməsi"
-#: any.pm:323
+#: any.pm:335
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Çəyirdək Açılış Vaxt Dolması"
-#: any.pm:324
+#: any.pm:336
#, c-format
msgid "Enable CD Boot?"
msgstr "CD Açılışı Fəallaşdırılsın?"
-#: any.pm:325
+#: any.pm:337
#, c-format
msgid "Enable OF Boot?"
msgstr "OF Açılışı Fəallaşdırılsın?"
-#: any.pm:326
+#: any.pm:338
#, c-format
msgid "Default OS?"
msgstr "Əsas ƏS?"
-#: any.pm:380
+#: any.pm:404
#, c-format
msgid "Image"
msgstr "Əks"
-#: any.pm:381 any.pm:391
+#: any.pm:405 any.pm:418
#, c-format
msgid "Root"
msgstr "Kök"
-#: any.pm:382 any.pm:404
+#: any.pm:406 any.pm:431
#, c-format
msgid "Append"
msgstr "Sonuna əlavə et"
-#: any.pm:384 standalone/drakboot:271 standalone/drakboot:275
+#: any.pm:408
+#, c-format
+msgid "Xen append"
+msgstr ""
+
+#: any.pm:411
#, c-format
msgid "Video mode"
msgstr "Video modu"
-#: any.pm:386
+#: any.pm:413
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:387
+#: any.pm:414
#, c-format
msgid "Network profile"
msgstr "Şəbəkə profili"
-#: any.pm:396 any.pm:401 any.pm:403 diskdrake/interactive.pm:450
+#: any.pm:423 any.pm:428 any.pm:430 diskdrake/interactive.pm:443
#, c-format
msgid "Label"
msgstr "Etiket"
-#: any.pm:398 any.pm:408 harddrake/v4l.pm:438 standalone/drakbackup:2104
-#: standalone/draksec:52
+#: any.pm:425 any.pm:433 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Ön Qurğulu"
-#: any.pm:405
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd böyüklüyü"
-
-#: any.pm:407
+#: any.pm:432
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:418
+#: any.pm:443
#, c-format
msgid "Empty label not allowed"
msgstr "Boş etiket qəbul edilmir"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a kernel image"
msgstr "Çəyirdək əksini bildirməlisiniz"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a root partition"
msgstr "Kök bölməsini bildirməlisiniz"
-#: any.pm:420
+#: any.pm:445
#, c-format
msgid "This label is already used"
msgstr "Bu etiket onsuzda istifadə edilib"
-#: any.pm:434
+#: any.pm:459
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Nə cür bir giriş əlavə etmək istəyirsiniz?"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Linux"
msgstr "Linuks"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Digər sistemlər (SunOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Digər ƏS (MacOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (Windows...)"
msgstr "Digər ƏS (Windows...)"
-#: any.pm:464
+#: any.pm:489
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -1105,52 +352,47 @@ msgstr ""
"Buradakı bir birindən fərqli seçimlərə yenilərini əlavə edə bilər,\n"
"ya da mövcud olanları dəyişdirə bilərsiniz."
-#: any.pm:614
+#: any.pm:640
#, c-format
msgid "access to X programs"
msgstr "X proqramlarına yetişmə icazəsi"
-#: any.pm:615
+#: any.pm:641
#, c-format
msgid "access to rpm tools"
msgstr "rpm vasitələrinə yetişmə"
-#: any.pm:616
+#: any.pm:642
#, c-format
msgid "allow \"su\""
msgstr "\"su\" icazəsi ver"
-#: any.pm:617
+#: any.pm:643
#, c-format
msgid "access to administrative files"
msgstr "idarəvi fayllara yetişmə"
-#: any.pm:618
+#: any.pm:644
#, c-format
msgid "access to network tools"
msgstr "şəbəkə vasitələrinə yetişmə"
-#: any.pm:619
+#: any.pm:645
#, c-format
msgid "access to compilation tools"
msgstr "dərləmə vasitələrinə yetişmə"
-#: any.pm:624
+#: any.pm:650
#, c-format
msgid "(already added %s)"
msgstr "(%s artıq əlavə edilmişdir)"
-#: any.pm:629
-#, c-format
-msgid "This password is too simple"
-msgstr "Zəif şifrə seçdiniz"
-
-#: any.pm:630
+#: any.pm:657
#, c-format
msgid "Please give a user name"
msgstr "Xahiş edirik, bir istifadəçi adı alın"
-#: any.pm:631
+#: any.pm:658
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
@@ -1158,42 +400,42 @@ msgstr ""
"İstifadəçi adında sadacə kiçik hərflər, rəqəmlər, `-' və `_' xarakterləri "
"ola bilər"
-#: any.pm:632
+#: any.pm:659
#, c-format
msgid "The user name is too long"
msgstr "İstifadəçi adı çox uzundur"
-#: any.pm:633
+#: any.pm:660
#, c-format
msgid "This user name has already been added"
msgstr "Bu istifadəçi adı onsuzda əlavə edilib"
-#: any.pm:634 any.pm:665
+#: any.pm:661 any.pm:689
#, c-format
msgid "User ID"
msgstr "İstifadəçi ID'si"
-#: any.pm:635 any.pm:666
+#: any.pm:662 any.pm:690
#, c-format
msgid "Group ID"
msgstr "Qrup ID'si"
-#: any.pm:638
+#: any.pm:665
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "%s seçimi rəqəm olmalıdır!"
-#: any.pm:639
+#: any.pm:666
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:644 standalone/draksambashare:1214
+#: any.pm:671
#, c-format
msgid "Add user"
msgstr "İstifadəçini əlavə et"
-#: any.pm:646
+#: any.pm:673
#, c-format
msgid ""
"Enter a user\n"
@@ -1202,99 +444,95 @@ msgstr ""
"Bir istifadəçi daxil edin\n"
"%s"
-#: any.pm:649 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:154
-#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:81 help.pm:531
-#: interactive/http.pm:151 printer/printerdrake.pm:197
-#: printer/printerdrake.pm:382 printer/printerdrake.pm:5010
-#: standalone/drakbackup:2836 standalone/scannerdrake:685
-#: standalone/scannerdrake:835
+#: any.pm:676 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:166
+#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:82
+#: interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Qurtardı"
-#: any.pm:650 help.pm:52
+#: any.pm:677
#, c-format
msgid "Accept user"
msgstr "İstifadəçini qəbul et"
-#: any.pm:660
+#: any.pm:682
#, c-format
msgid "Real name"
msgstr "Həqiqi ad"
-#: any.pm:661 standalone/drakbackup:1645
+#: any.pm:685
#, c-format
msgid "Login name"
msgstr "Giriş adı"
-#: any.pm:664
+#: any.pm:688
#, c-format
msgid "Shell"
msgstr "Qabıq"
-#: any.pm:668
-#, c-format
-msgid "Icon"
-msgstr "Timsal"
-
-#: any.pm:715 security/l10n.pm:14
+#: any.pm:735 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Avtomatik Giriş"
-#: any.pm:716
+#: any.pm:736
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Kompüteriniz istifadəçinin avtomatik giriş etməsi üçün qurğulana bilər."
-#: any.pm:717
+#: any.pm:737
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Bu xüsusiyyəti istifadə etmək istəyirsiniz?"
-#: any.pm:718
+#: any.pm:738
#, c-format
msgid "Choose the default user:"
msgstr "Əsas istifadəçini seçin:"
-#: any.pm:719
+#: any.pm:739
#, c-format
msgid "Choose the window manager to run:"
msgstr "İşlətmək istədiyiniz pəncərə idarəçisini seçin:"
-#: any.pm:740
+#: any.pm:767
#, c-format
msgid "License agreement"
msgstr "Lisenziya razılığı"
-#: any.pm:745
+#: any.pm:770 diskdrake/dav.pm:26
+#, c-format
+msgid "Quit"
+msgstr "Çıx"
+
+#: any.pm:773
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Buraxılış:"
-#: any.pm:748 help.pm:15 install_steps_gtk.pm:539
-#: install_steps_interactive.pm:715 standalone/drakautoinst:214
+#: any.pm:776
#, c-format
msgid "Accept"
msgstr "Qəbul Et"
-#: any.pm:748 install_steps_gtk.pm:539 install_steps_interactive.pm:715
+#: any.pm:776
#, c-format
msgid "Refuse"
msgstr "Rədd Et"
-#: any.pm:765 any.pm:833
+#: any.pm:795 any.pm:863
#, c-format
msgid "Please choose a language to use."
msgstr "Xahiş edirik, istifadə ediləcək dili seçin."
-#: any.pm:766 any.pm:834
+#: any.pm:796 any.pm:864
#, c-format
msgid "Language choice"
msgstr "Dil seçkisi"
-#: any.pm:794
+#: any.pm:826
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
@@ -1305,70 +543,72 @@ msgstr ""
"dilləri seçin. Onlar qurulum tamamlanandan və sistem yenidən\n"
"başlayandan sonra istifadəyə hazır olacaqlar."
-#: any.pm:797
+#: any.pm:829
#, c-format
msgid "Multi languages"
msgstr ""
-#: any.pm:813 any.pm:842 help.pm:648
+#: any.pm:841 any.pm:872
#, c-format
-msgid "Use Unicode by default"
-msgstr "Ön qurğulu olaraq Yunikod işlət"
+msgid "Old compatibility (non UTF-8) encoding"
+msgstr ""
-#: any.pm:814 help.pm:648
+#: any.pm:843
#, c-format
msgid "All languages"
msgstr "Bütün dillər"
-#: any.pm:888 help.pm:567 help.pm:856 install_steps_interactive.pm:932
+#: any.pm:918
#, c-format
msgid "Country / Region"
msgstr "Ölkə / Bölgə"
-#: any.pm:890
+#: any.pm:920
#, c-format
msgid "Please choose your country."
msgstr "Xahiş edirik, ölkənizi seçin."
-#: any.pm:892
+#: any.pm:922
#, c-format
msgid "Here is the full list of available countries"
msgstr "Bütün mövcud ölkələrinn siyahısı"
-#: any.pm:893
+#: any.pm:923
#, c-format
msgid "Other Countries"
msgstr "Diqər Ölkələr"
-#: any.pm:893 help.pm:52 help.pm:410 help.pm:432 help.pm:648 help.pm:723
-#: interactive.pm:397
+#: any.pm:923 interactive.pm:477
#, c-format
msgid "Advanced"
msgstr "Ətraflı"
-#: any.pm:901
+#: any.pm:929
#, c-format
msgid "Input method:"
msgstr "Giriş yöntəmi:"
-#: any.pm:904 install_any.pm:422 network/netconnect.pm:317
-#: network/netconnect.pm:322 network/netconnect.pm:1237 network/wireless.pm:7
-#: printer/printerdrake.pm:117
+#: any.pm:932
#, c-format
msgid "None"
msgstr "Heç biri"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "No sharing"
msgstr "Bölüşmə yoxdur"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "Allow all users"
msgstr "Bütün istifadəçilərə icazə ver"
-#: any.pm:1025
+#: any.pm:1012
+#, c-format
+msgid "Custom"
+msgstr "Xüsusi"
+
+#: any.pm:1016
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1385,21 +625,21 @@ msgstr ""
"\"Xüsusi\" seçənəyi, hər istifadəçiyə fərqli icazə vermək üçün istifadə "
"edilir.\n"
-#: any.pm:1037
+#: any.pm:1028
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1040
+#: any.pm:1031
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1048
+#: any.pm:1039
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -1407,23 +647,17 @@ msgstr ""
"NFS ya da SMB işlədərək ixrac edə bilərsiniz. Xahiş edirik, işlətmək "
"istədiyinizi seçin."
-#: any.pm:1073
+#: any.pm:1064
#, c-format
msgid "Launch userdrake"
msgstr "Userdrake-ni başlat"
-#: any.pm:1073 printer/printerdrake.pm:4085 printer/printerdrake.pm:4088
-#: printer/printerdrake.pm:4089 printer/printerdrake.pm:4090
-#: printer/printerdrake.pm:5328 standalone/drakTermServ:321
-#: standalone/drakbackup:4245 standalone/drakbug:126 standalone/drakfont:499
-#: standalone/drakids:64 standalone/drakids:77 standalone/drakids:85
-#: standalone/draknfs:210 standalone/net_monitor:117
-#: standalone/printerdrake:583
+#: any.pm:1064 interactive/gtk.pm:747
#, c-format
msgid "Close"
msgstr "Bağla"
-#: any.pm:1075
+#: any.pm:1066
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -1433,6 +667,57 @@ msgstr ""
"Bu qrupa istifadəçiləri əlavə etmək üçün userdrake'dən istifadə edə "
"bilərsiniz. "
+#: any.pm:1158
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Lütfen çıxın və Ctrl-Alt-BackSpace düymələrinə basın"
+
+#: any.pm:1162
+#, c-format
+msgid "You need to log out and back in again for changes to take effect"
+msgstr ""
+"Dəyişikliklərin fəal olması üçün hesabdan çıxış edib, yenidən girməlisiniz."
+
+#: any.pm:1212
+#, c-format
+msgid "Timezone"
+msgstr "Vaxt Zolağı"
+
+#: any.pm:1212
+#, c-format
+msgid "Which is your timezone?"
+msgstr "Vaxt zolağınız hansıdır?"
+
+#: any.pm:1224 any.pm:1226
+#, c-format
+msgid "Date, Clock & Time Zone Settings"
+msgstr ""
+
+#: any.pm:1227
+#, c-format
+msgid "What is the best time?"
+msgstr ""
+
+#: any.pm:1231
+#, fuzzy, c-format
+msgid "%s (hardware clock set to UTC)"
+msgstr "Avadanlıq saatı GMT'yə görə quruludur"
+
+#: any.pm:1232
+#, fuzzy, c-format
+msgid "%s (hardware clock set to local time)"
+msgstr "Avadanlıq saatı GMT'yə görə quruludur"
+
+#: any.pm:1234
+#, c-format
+msgid "NTP Server"
+msgstr "NTP Verici"
+
+#: any.pm:1235
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Avtomatik vaxt sinxronizasiyası (NTP vasitəsiylə)"
+
#: authentication.pm:23
#, c-format
msgid "Local file"
@@ -1547,7 +832,7 @@ msgstr "Tanıtma LDAP"
msgid "LDAP Base dn"
msgstr "LDAP Əsas dn"
-#: authentication.pm:98 share/compssUsers.pl:102
+#: authentication.pm:98
#, c-format
msgid "LDAP Server"
msgstr "LDAP Vericisi"
@@ -1577,14 +862,12 @@ msgstr ""
msgid "Authentication Active Directory"
msgstr "Tanıtma yöntəmi"
-#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:181
+#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Domen"
-#: authentication.pm:124 diskdrake/dav.pm:63 help.pm:147
-#: printer/printerdrake.pm:75 share/compssUsers.pl:82
-#: standalone/drakTermServ:296
+#: authentication.pm:124 diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Verici"
@@ -1673,39 +956,33 @@ msgstr "Domen İdarəçisinin İstifadəçi Adı"
msgid "Domain Admin Password"
msgstr "Domen İdarəçi Şifrəsi"
-#: authentication.pm:181
-#, fuzzy, c-format
-msgid "Set administrator (root) password and network authentication methods"
-msgstr "Ali istifadəçi şifrəsi və şəbəkə icazə yöntəmlərini tə'yin et"
+#: authentication.pm:181 authentication.pm:198
+#, c-format
+msgid "Authentication"
+msgstr "Tanıtma"
#: authentication.pm:182
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Ali istifadəçi şifrəsini tə'yin et"
-#: authentication.pm:183 standalone/drakvpn:1111
+#: authentication.pm:184
#, c-format
msgid "Authentication method"
msgstr "Tanıtma yöntəmi"
#. -PO: keep this short or else the buttons will not fit in the window
-#: authentication.pm:188 help.pm:723
+#: authentication.pm:189
#, c-format
msgid "No password"
msgstr "Şifrə olmasın"
-#: authentication.pm:194
+#: authentication.pm:210
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Bu şifrə çox qısadır (ən az %d hərf böyüklüyündə olmalıdır)"
-#: authentication.pm:199 network/netconnect.pm:322 network/netconnect.pm:585
-#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:481
-#, c-format
-msgid "Authentication"
-msgstr "Tanıtma"
-
-#: authentication.pm:331
+#: authentication.pm:351
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "NIS domeni olmayan translasiya işlədilə bilməz"
@@ -1716,7 +993,7 @@ msgstr "NIS domeni olmayan translasiya işlədilə bilməz"
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:767
+#: bootloader.pm:880
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1726,291 +1003,104 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:909
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "Qrafiki menyulu LILO"
-
-#: bootloader.pm:910
+#: bootloader.pm:1028
#, c-format
msgid "LILO with text menu"
msgstr "Mətn menyulu LILO"
-#: bootloader.pm:911
+#: bootloader.pm:1029
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:912
+#: bootloader.pm:1030
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:913
+#: bootloader.pm:1031
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:990
+#: bootloader.pm:1032
+#, c-format
+msgid "SILO"
+msgstr ""
+
+#: bootloader.pm:1112
#, c-format
msgid "not enough room in /boot"
msgstr "/boot içində lazımi yer yoxdur"
-#: bootloader.pm:1483
+#: bootloader.pm:1679
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "Sistem yükləyicisini %s bölməsinə qura bilməzsiniz\n"
-#: bootloader.pm:1523
+#: bootloader.pm:1732
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:1536
+#: bootloader.pm:1745
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:1537
+#: bootloader.pm:1746
#, c-format
msgid "Re-install Boot Loader"
msgstr "Sistem Yükləyicisini Yenidən Qur"
-#: common.pm:134
+#: common.pm:129
+#, fuzzy, c-format
+msgid "B"
+msgstr "KB"
+
+#: common.pm:129
#, c-format
msgid "KB"
msgstr "KB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "MB"
msgstr "MB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "GB"
msgstr "GB"
-#: common.pm:142
+#: common.pm:137
#, c-format
msgid "TB"
msgstr "TB"
-#: common.pm:150
+#: common.pm:145
#, c-format
msgid "%d minutes"
msgstr "%d dəqiqə"
-#: common.pm:152
+#: common.pm:147
#, c-format
msgid "1 minute"
msgstr "1 dəqiqə"
-#: common.pm:154
+#: common.pm:149
#, c-format
msgid "%d seconds"
msgstr "%d saniyə"
-#: common.pm:260
-#, c-format
-msgid "kdesu missing"
-msgstr "kdesu əksikdir"
-
-#: common.pm:263
-#, c-format
-msgid "consolehelper missing"
-msgstr "konsol yardımçısı əksikdir"
-
-#: crypto.pm:13 crypto.pm:48 lang.pm:207 network/adsl_consts.pm:66
-#: network/adsl_consts.pm:75 network/adsl_consts.pm:84
-#, c-format
-msgid "Austria"
-msgstr "Avstriya"
-
-#: crypto.pm:14 crypto.pm:47 lang.pm:208 standalone/drakxtv:48
-#, c-format
-msgid "Australia"
-msgstr "Avstraliya"
-
-#: crypto.pm:15 crypto.pm:49 lang.pm:214 network/adsl_consts.pm:93
-#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
-#: network/adsl_consts.pm:123 network/netconnect.pm:44
-#, c-format
-msgid "Belgium"
-msgstr "Belçika"
-
-#: crypto.pm:16 crypto.pm:50 lang.pm:223 network/adsl_consts.pm:132
-#: network/adsl_consts.pm:143 network/adsl_consts.pm:152
-#: network/adsl_consts.pm:161
-#, c-format
-msgid "Brazil"
-msgstr "Braziliya"
-
-#: crypto.pm:17 crypto.pm:51 lang.pm:230
-#, c-format
-msgid "Canada"
-msgstr "Kanada"
-
-#: crypto.pm:18 crypto.pm:74 lang.pm:235 network/adsl_consts.pm:891
-#: network/adsl_consts.pm:900 network/adsl_consts.pm:911
-#, c-format
-msgid "Switzerland"
-msgstr "İsveçrə"
-
-#: crypto.pm:19 lang.pm:242
-#, c-format
-msgid "Costa Rica"
-msgstr "Kosta Rika"
-
-#: crypto.pm:20 crypto.pm:52 lang.pm:248 network/adsl_consts.pm:368
-#, c-format
-msgid "Czech Republic"
-msgstr "Çex Respublikası"
-
-#: crypto.pm:21 crypto.pm:57 lang.pm:249 network/adsl_consts.pm:499
-#: network/adsl_consts.pm:508
-#, c-format
-msgid "Germany"
-msgstr "Almanya"
-
-#: crypto.pm:22 crypto.pm:53 lang.pm:251 network/adsl_consts.pm:378
-#, c-format
-msgid "Denmark"
-msgstr "Danimarka"
-
-#: crypto.pm:23 crypto.pm:54 lang.pm:256
-#, c-format
-msgid "Estonia"
-msgstr "Estoniya"
-
-#: crypto.pm:24 crypto.pm:72 lang.pm:260 network/adsl_consts.pm:759
-#: network/adsl_consts.pm:770 network/adsl_consts.pm:781
-#: network/adsl_consts.pm:792 network/adsl_consts.pm:801
-#: network/adsl_consts.pm:810 network/adsl_consts.pm:819
-#: network/adsl_consts.pm:828 network/adsl_consts.pm:837
-#: network/adsl_consts.pm:846 network/adsl_consts.pm:855
-#: network/adsl_consts.pm:864 network/adsl_consts.pm:873
-#, c-format
-msgid "Spain"
-msgstr "İspaniya"
-
-#: crypto.pm:25 crypto.pm:55 lang.pm:262 network/adsl_consts.pm:387
-#, c-format
-msgid "Finland"
-msgstr "Finlandiya"
-
-#: crypto.pm:26 crypto.pm:56 lang.pm:267 network/adsl_consts.pm:396
-#: network/adsl_consts.pm:408 network/adsl_consts.pm:420
-#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
-#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
-#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
-#: network/netconnect.pm:41
-#, c-format
-msgid "France"
-msgstr "Fransa"
-
-#: crypto.pm:27 crypto.pm:58 lang.pm:280 network/adsl_consts.pm:519
-#, c-format
-msgid "Greece"
-msgstr "Yunanıstan"
-
-#: crypto.pm:28 crypto.pm:59 lang.pm:291 network/adsl_consts.pm:528
-#, c-format
-msgid "Hungary"
-msgstr "Macarıstan"
-
-#: crypto.pm:29 crypto.pm:60 lang.pm:293 network/adsl_consts.pm:537
-#: standalone/drakxtv:47
-#, c-format
-msgid "Ireland"
-msgstr "İrlandiya"
-
-#: crypto.pm:30 crypto.pm:61 lang.pm:294 network/adsl_consts.pm:546
-#, c-format
-msgid "Israel"
-msgstr "İsrail"
-
-#: crypto.pm:31 crypto.pm:62 lang.pm:300 network/adsl_consts.pm:557
-#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
-#: network/adsl_consts.pm:589 network/netconnect.pm:43 standalone/drakxtv:47
-#, c-format
-msgid "Italy"
-msgstr "İtaliya"
-
-#: crypto.pm:32 crypto.pm:63 lang.pm:303
-#, c-format
-msgid "Japan"
-msgstr "Yaponiya"
-
-#: crypto.pm:33 crypto.pm:64 lang.pm:352 network/adsl_consts.pm:620
-#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
-#: network/adsl_consts.pm:647 network/netconnect.pm:42
-#, c-format
-msgid "Netherlands"
-msgstr "Hollandiya"
-
-#: crypto.pm:34 crypto.pm:66 lang.pm:353 network/adsl_consts.pm:656
-#: network/adsl_consts.pm:661 network/adsl_consts.pm:666
-#: network/adsl_consts.pm:671 network/adsl_consts.pm:676
-#: network/adsl_consts.pm:681 network/adsl_consts.pm:686
-#, c-format
-msgid "Norway"
-msgstr "Norvegiya"
-
-#: crypto.pm:35 crypto.pm:65 lang.pm:357
-#, c-format
-msgid "New Zealand"
-msgstr "Yeni Zellandiya"
-
-#: crypto.pm:36 crypto.pm:67 lang.pm:365 network/adsl_consts.pm:693
-#: network/adsl_consts.pm:704
-#, c-format
-msgid "Poland"
-msgstr "Polşa"
-
-#: crypto.pm:37 crypto.pm:68 lang.pm:370 network/adsl_consts.pm:716
-#, c-format
-msgid "Portugal"
-msgstr "Portuqaliya"
-
-#: crypto.pm:38 crypto.pm:69 lang.pm:376 network/adsl_consts.pm:725
+#: common.pm:298
#, c-format
-msgid "Russia"
-msgstr "Rusiya"
-
-#: crypto.pm:39 crypto.pm:73 lang.pm:382 network/adsl_consts.pm:882
-#, c-format
-msgid "Sweden"
-msgstr "İsveç"
-
-#: crypto.pm:40 crypto.pm:70 lang.pm:387
-#, c-format
-msgid "Slovakia"
-msgstr "Slovakiya"
-
-#: crypto.pm:41 crypto.pm:76 lang.pm:401 network/adsl_consts.pm:920
-#, c-format
-msgid "Thailand"
-msgstr "Tayland"
-
-#: crypto.pm:42 crypto.pm:75 lang.pm:411
-#, c-format
-msgid "Taiwan"
-msgstr "Tayvan"
-
-#: crypto.pm:43 crypto.pm:71 lang.pm:430 standalone/drakxtv:49
-#, c-format
-msgid "South Africa"
-msgstr "Cənubi Afrika"
-
-#: crypto.pm:77 crypto.pm:112 lang.pm:416 network/netconnect.pm:45
-#, c-format
-msgid "United States"
-msgstr "Birləşmiş Ştatlar"
+msgid "command %s missing"
+msgstr ""
#: diskdrake/dav.pm:17
#, c-format
@@ -2030,23 +1120,46 @@ msgstr ""
msgid "New"
msgstr "Yeni"
-#: diskdrake/dav.pm:61 diskdrake/interactive.pm:456 diskdrake/smbnfs_gtk.pm:74
+#: diskdrake/dav.pm:61 diskdrake/interactive.pm:449 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Ayır"
-#: diskdrake/dav.pm:62 diskdrake/interactive.pm:453 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:62 diskdrake/interactive.pm:446 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Bağla"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:447
-#: diskdrake/interactive.pm:679 diskdrake/interactive.pm:698
-#: diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:78
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:440
+#: diskdrake/interactive.pm:670 diskdrake/interactive.pm:688
+#: diskdrake/interactive.pm:692 diskdrake/removable.pm:23
+#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Bağlama nöqtəsi"
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:442
+#: diskdrake/interactive.pm:1047 diskdrake/removable.pm:24
+#: diskdrake/smbnfs_gtk.pm:80
+#, c-format
+msgid "Options"
+msgstr "Seçimlər"
+
+#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:229
+#: diskdrake/interactive.pm:242 diskdrake/interactive.pm:398
+#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:547
+#: diskdrake/interactive.pm:552 diskdrake/interactive.pm:660
+#: diskdrake/interactive.pm:922 diskdrake/interactive.pm:1092
+#: diskdrake/interactive.pm:1105 diskdrake/interactive.pm:1108
+#: diskdrake/interactive.pm:1348 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:19
+#: do_pkgs.pm:24 do_pkgs.pm:40 do_pkgs.pm:56 do_pkgs.pm:61 fsedit.pm:229
+#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
+#: scanner.pm:94 scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95
+#: wizards.pm:99 wizards.pm:121
+#, c-format
+msgid "Error"
+msgstr "Xəta"
+
#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
@@ -2062,33 +1175,48 @@ msgstr "URL http:// ya da https:// ilə başlamalıdır"
msgid "Server: "
msgstr "Verici:"
-#: diskdrake/dav.pm:110 diskdrake/interactive.pm:523
-#: diskdrake/interactive.pm:1218 diskdrake/interactive.pm:1296
+#: diskdrake/dav.pm:110 diskdrake/interactive.pm:520
+#: diskdrake/interactive.pm:1230 diskdrake/interactive.pm:1308
#, c-format
msgid "Mount point: "
msgstr "Bağlama nöqtəsi: "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1303
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1315
#, c-format
msgid "Options: %s"
msgstr "Seçimlər: %s"
-#: diskdrake/hd_gtk.pm:52 diskdrake/interactive.pm:293
-#: diskdrake/smbnfs_gtk.pm:21 install_interactive.pm:63
-#: install_interactive.pm:217 install_interactive.pm:223
-#: install_interactive.pm:276 install_interactive.pm:281
-#: install_steps_interactive.pm:253 install_steps_interactive.pm:317
-#: steps.pm:21
+#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:286
+#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
+#: fs/partitioning_wizard.pm:47 fs/partitioning_wizard.pm:201
+#: fs/partitioning_wizard.pm:207 fs/partitioning_wizard.pm:247
+#: fs/partitioning_wizard.pm:266 fs/partitioning_wizard.pm:271
#, c-format
msgid "Partitioning"
msgstr "Bölmələndirmə"
-#: diskdrake/hd_gtk.pm:92
+#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1067
+#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1130
+#, c-format
+msgid "Read carefully!"
+msgstr "Diqqətlə oxuyun!"
+
+#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr "Əvvəlcə datanızın yedəyini alın"
-#: diskdrake/hd_gtk.pm:95
+#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:222
+#, c-format
+msgid "Exit"
+msgstr "Çıxış"
+
+#: diskdrake/hd_gtk.pm:94
+#, c-format
+msgid "Continue"
+msgstr "Davam et"
+
+#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
@@ -2099,17 +1227,18 @@ msgstr ""
"kifayətdir.)\n"
"buraxmağı unutmayın."
-#: diskdrake/hd_gtk.pm:152 help.pm:531
+#: diskdrake/hd_gtk.pm:162 interactive.pm:640 interactive/gtk.pm:719
+#: interactive/gtk.pm:740 interactive/gtk.pm:760 ugtk2.pm:923 ugtk2.pm:924
#, c-format
-msgid "Wizard"
-msgstr "Sehirbaz"
+msgid "Help"
+msgstr "Yardım"
-#: diskdrake/hd_gtk.pm:185
+#: diskdrake/hd_gtk.pm:197
#, c-format
msgid "Choose action"
msgstr "Gedişatı seçin"
-#: diskdrake/hd_gtk.pm:189
+#: diskdrake/hd_gtk.pm:201
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -2121,150 +1250,164 @@ msgstr ""
"məsləhət edirik. (Bölməni seçib, \"Böyüklüyü\n"
"Dəyişdir\" düyməsinə tıqlayın)"
-#: diskdrake/hd_gtk.pm:191
+#: diskdrake/hd_gtk.pm:203
#, c-format
msgid "Please click on a partition"
msgstr "Xahiş edirik, bir bölmə üstünə tıqlayın"
-#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:457
-#: standalone/drakbackup:3088 standalone/drakbackup:3148
+#: diskdrake/hd_gtk.pm:217 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Ətraflı"
-#: diskdrake/hd_gtk.pm:251
+#: diskdrake/hd_gtk.pm:265
#, c-format
msgid "No hard drives found"
msgstr "Sabit disk(lər) tapıla bilmədi"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:292
+#, c-format
+msgid "Unknown"
+msgstr "Namə'lum"
+
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Ext2"
msgstr "Ext2"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Journalised FS"
msgstr "Journalised FS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Swap"
msgstr "Dəyiş-toqquş"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "SunOS"
msgstr "SunOS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "HFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1233
+#: diskdrake/hd_gtk.pm:352 services.pm:149
+#, c-format
+msgid "Other"
+msgstr "Digər"
+
+#: diskdrake/hd_gtk.pm:352 diskdrake/interactive.pm:1244
#, c-format
msgid "Empty"
msgstr "Boş"
-#: diskdrake/hd_gtk.pm:340
+#: diskdrake/hd_gtk.pm:356
#, c-format
msgid "Filesystem types:"
msgstr "Fayl sistemi növü:"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:359 diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:291
+#: diskdrake/interactive.pm:392 diskdrake/interactive.pm:428
+#: diskdrake/interactive.pm:577 diskdrake/interactive.pm:751
+#: diskdrake/interactive.pm:809 diskdrake/interactive.pm:902
+#: diskdrake/interactive.pm:944 diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:1173 diskdrake/interactive.pm:1211
+#: diskdrake/interactive.pm:1347 do_pkgs.pm:16 do_pkgs.pm:35 do_pkgs.pm:53
+#: harddrake/sound.pm:279
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Yerinə ``%s'' işlət"
+msgid "Warning"
+msgstr "Xəbərdarlıq"
-#: diskdrake/hd_gtk.pm:357 diskdrake/interactive.pm:472
-#, c-format
-msgid "Create"
-msgstr "Yarat"
+#: diskdrake/hd_gtk.pm:380
+#, fuzzy, c-format
+msgid "This partition is already empty"
+msgstr "Bu bölmə ölçüləndirilə bilməz"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:365
-#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:625
-#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
-#: standalone/harddrake2:108 standalone/harddrake2:117
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Type"
-msgstr "Növ"
+msgid "Use ``Unmount'' first"
+msgstr "Əvvəlcə ``Ayır'-ı işlət"
-#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: diskdrake/hd_gtk.pm:359 diskdrake/interactive.pm:457
-#: standalone/drakperm:123 standalone/printerdrake:248
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Delete"
-msgstr "Sil"
+msgid "Use ``%s'' instead"
+msgstr "Yerinə ``%s'' işlət"
-#: diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:389 diskdrake/interactive.pm:441
+#: diskdrake/interactive.pm:611 diskdrake/interactive.pm:1083
+#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Əvvəlcə ``Ayır'-ı işlət"
+msgid "Type"
+msgstr "Növ"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose another partition"
msgstr "Başqa bölmə seçin"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose a partition"
msgstr "Bölmə seçin"
-#: diskdrake/interactive.pm:224
-#, c-format
-msgid "Exit"
-msgstr "Çıxış"
-
-#: diskdrake/interactive.pm:257 help.pm:531
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Undo"
msgstr "Geri al"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to normal mode"
msgstr "Normal moda keç"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to expert mode"
msgstr "Mütəxəssis moduna keç"
-#: diskdrake/interactive.pm:276
+#: diskdrake/interactive.pm:269 diskdrake/interactive.pm:279
+#: diskdrake/interactive.pm:1158
+#, fuzzy, c-format
+msgid "Confirmation"
+msgstr "Quraşdırma"
+
+#: diskdrake/interactive.pm:269
#, c-format
msgid "Continue anyway?"
msgstr "Davam edilsin?"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without saving"
msgstr "Qeyd etmədən Çıx"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Bölmə cədvəli qeyd edilmədən çıxılsın?"
-#: diskdrake/interactive.pm:286
+#: diskdrake/interactive.pm:279
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Dəyişikliklər /etc/fstab faylına qeyd edilsin?"
-#: diskdrake/interactive.pm:293 install_steps_interactive.pm:317
+#: diskdrake/interactive.pm:286 fs/partitioning_wizard.pm:247
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bölmə cəvəlindəki dəyişikliklərin tətbiq edilməsi üçün kompüterinizi yenidən "
"başlatmalısınız."
-#: diskdrake/interactive.pm:298
+#: diskdrake/interactive.pm:291
#, c-format
msgid ""
"You should format partition %s.\n"
@@ -2272,90 +1415,90 @@ msgid ""
"Quit anyway?"
msgstr ""
-#: diskdrake/interactive.pm:311 help.pm:531
+#: diskdrake/interactive.pm:304
#, c-format
msgid "Clear all"
msgstr "Hamısını təmizlə"
-#: diskdrake/interactive.pm:312 help.pm:531
+#: diskdrake/interactive.pm:305
#, c-format
msgid "Auto allocate"
msgstr "Avtomatik ayır"
-#: diskdrake/interactive.pm:313 help.pm:531 help.pm:567 help.pm:607
-#: help.pm:856 install_steps_interactive.pm:98
+#: diskdrake/interactive.pm:306 diskdrake/interactive.pm:360
+#: interactive/curses.pm:457
#, c-format
msgid "More"
msgstr "Daha Çox Seçim"
-#: diskdrake/interactive.pm:318
+#: diskdrake/interactive.pm:311
#, c-format
msgid "Hard drive information"
msgstr "Sabit disk mə'lumatı"
-#: diskdrake/interactive.pm:350
+#: diskdrake/interactive.pm:343
#, c-format
msgid "All primary partitions are used"
msgstr "Bütün birinci bölmələr istifadədədir"
-#: diskdrake/interactive.pm:351
+#: diskdrake/interactive.pm:344
#, c-format
msgid "I can not add any more partitions"
msgstr "Artıq bölmə əlavə edilə bilməz"
-#: diskdrake/interactive.pm:352
+#: diskdrake/interactive.pm:345
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "Artıq bölmə yaratmaq üçün, bir bölməni silib uzadılmış bölmə yaradın"
-#: diskdrake/interactive.pm:361
+#: diskdrake/interactive.pm:354
#, c-format
msgid "No supermount"
msgstr ""
-#: diskdrake/interactive.pm:362
+#: diskdrake/interactive.pm:355
#, c-format
msgid "Supermount"
msgstr ""
-#: diskdrake/interactive.pm:363
+#: diskdrake/interactive.pm:356
#, c-format
msgid "Supermount except for CDROM drives"
msgstr ""
-#: diskdrake/interactive.pm:369 help.pm:531
+#: diskdrake/interactive.pm:362
#, c-format
msgid "Save partition table"
msgstr "Bölmə cədvəlini qeyd et"
-#: diskdrake/interactive.pm:370 help.pm:531
+#: diskdrake/interactive.pm:363
#, c-format
msgid "Restore partition table"
msgstr "Bölmə cədvəlini geri al"
-#: diskdrake/interactive.pm:371 help.pm:531
+#: diskdrake/interactive.pm:364
#, c-format
msgid "Rescue partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: diskdrake/interactive.pm:373 help.pm:531
+#: diskdrake/interactive.pm:366
#, c-format
msgid "Reload partition table"
msgstr "Bölmə cədvəlini yenidən yüklə"
-#: diskdrake/interactive.pm:375
+#: diskdrake/interactive.pm:368
#, c-format
msgid "Removable media automounting"
msgstr "Sökülə bilən avadanlıqların avtomatik bağlanması"
-#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:414
+#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:407
#, c-format
msgid "Select file"
msgstr "Fayl seç"
-#: diskdrake/interactive.pm:400
+#: diskdrake/interactive.pm:393
#, c-format
msgid ""
"The backup partition table has not the same size\n"
@@ -2364,87 +1507,97 @@ msgstr ""
"Ehtiyat bölmə cədvəli eyni böyüklüyə sahib deyil\n"
"Davam etmək istəyirsiniz?"
-#: diskdrake/interactive.pm:429
+#: diskdrake/interactive.pm:422
#, c-format
msgid "Trying to rescue partition table"
msgstr "Bölmə cədvəli qurtarılmaya cəhd edilir"
-#: diskdrake/interactive.pm:435
+#: diskdrake/interactive.pm:428
#, c-format
msgid "Detailed information"
msgstr "Ətraflı mə'lumatı"
-#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:444 diskdrake/interactive.pm:764
#, c-format
msgid "Resize"
msgstr "Böyüklüyünü Dəyişdir"
-#: diskdrake/interactive.pm:452
+#: diskdrake/interactive.pm:445
#, c-format
msgid "Format"
msgstr "Şəkilləndir"
-#: diskdrake/interactive.pm:454
+#: diskdrake/interactive.pm:447 diskdrake/interactive.pm:850
#, c-format
msgid "Add to RAID"
msgstr "RAIDə əlavə et"
-#: diskdrake/interactive.pm:455
+#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:867
#, c-format
msgid "Add to LVM"
msgstr "LVMə əlavə et"
-#: diskdrake/interactive.pm:458
+#: diskdrake/interactive.pm:450
+#, c-format
+msgid "Delete"
+msgstr "Sil"
+
+#: diskdrake/interactive.pm:451
#, c-format
msgid "Remove from RAID"
msgstr "RAİD'dən ayır"
-#: diskdrake/interactive.pm:459
+#: diskdrake/interactive.pm:452
#, c-format
msgid "Remove from LVM"
msgstr "LVMdən ayır"
-#: diskdrake/interactive.pm:460
+#: diskdrake/interactive.pm:453
#, c-format
msgid "Modify RAID"
msgstr "RAIDi dəyişdir"
-#: diskdrake/interactive.pm:461
+#: diskdrake/interactive.pm:454
#, c-format
msgid "Use for loopback"
msgstr "Loopback üçün istifadə et"
-#: diskdrake/interactive.pm:516
+#: diskdrake/interactive.pm:465
+#, c-format
+msgid "Create"
+msgstr "Yarat"
+
+#: diskdrake/interactive.pm:509 diskdrake/interactive.pm:511
#, c-format
msgid "Create a new partition"
msgstr "Yeni bölmə yarat"
-#: diskdrake/interactive.pm:519
+#: diskdrake/interactive.pm:513
#, c-format
msgid "Start sector: "
msgstr "Başlanğıç sektoru: "
-#: diskdrake/interactive.pm:521 diskdrake/interactive.pm:938
+#: diskdrake/interactive.pm:516 diskdrake/interactive.pm:937
#, c-format
msgid "Size in MB: "
msgstr "MB cinsindən böyüklük: "
-#: diskdrake/interactive.pm:522 diskdrake/interactive.pm:939
+#: diskdrake/interactive.pm:518 diskdrake/interactive.pm:938
#, c-format
msgid "Filesystem type: "
msgstr "Fayl sistemi növü: "
-#: diskdrake/interactive.pm:527
+#: diskdrake/interactive.pm:524
#, c-format
msgid "Preference: "
msgstr "Seçim: "
-#: diskdrake/interactive.pm:530
+#: diskdrake/interactive.pm:527
#, c-format
msgid "Logical volume name "
msgstr "Məntiqi həcm adı"
-#: diskdrake/interactive.pm:560
+#: diskdrake/interactive.pm:547
#, c-format
msgid ""
"You can not create a new partition\n"
@@ -2455,12 +1608,12 @@ msgstr ""
"(ona görə ki siz maksimal birinci bölmə ədədinə yetişdiniz).\n"
"Əvvəlcə birinci bölməni silib, ondan sonra genişləndirilmiş bölmə yaradın."
-#: diskdrake/interactive.pm:590
+#: diskdrake/interactive.pm:577
#, c-format
msgid "Remove the loopback file?"
msgstr "Loopback faylı silinsin?"
-#: diskdrake/interactive.pm:609
+#: diskdrake/interactive.pm:596
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -2468,37 +1621,42 @@ msgstr ""
"%s bölməsinin növünü dəyişdirdikdən sonra, bu bölmədəki bütün mə'lumatlar "
"itiriləcək"
-#: diskdrake/interactive.pm:621
+#: diskdrake/interactive.pm:608
#, c-format
msgid "Change partition type"
msgstr "Bölmə növünü Dəyişdir"
-#: diskdrake/interactive.pm:622 diskdrake/removable.pm:47
+#: diskdrake/interactive.pm:610 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Hansı dili istəyirsiniz?"
-#: diskdrake/interactive.pm:630
+#: diskdrake/interactive.pm:617
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "ext2'dən ext3'ə keçilir"
-#: diskdrake/interactive.pm:650
+#: diskdrake/interactive.pm:637 diskdrake/interactive.pm:640
#, c-format
msgid "Which volume label?"
msgstr ""
-#: diskdrake/interactive.pm:666
+#: diskdrake/interactive.pm:641
+#, fuzzy, c-format
+msgid "Label:"
+msgstr "Etiket"
+
+#: diskdrake/interactive.pm:655
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "%s loopback faylını haraya bağlamaq istəyirsiniz?"
-#: diskdrake/interactive.pm:667
+#: diskdrake/interactive.pm:656
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "%s avadanlığını haraya bağlamaq istəyirsiniz?"
-#: diskdrake/interactive.pm:672
+#: diskdrake/interactive.pm:661
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
@@ -2508,49 +1666,59 @@ msgstr ""
"ayrıla bilinmir.\n"
"Əvvəlcə loopback-i silin."
-#: diskdrake/interactive.pm:697
+#: diskdrake/interactive.pm:691
#, c-format
msgid "Where do you want to mount %s?"
msgstr "%s avadanlığını hara bağlamaq istəyirsiniz?"
-#: diskdrake/interactive.pm:721 diskdrake/interactive.pm:800
-#: install_interactive.pm:157 install_interactive.pm:189
+#: diskdrake/interactive.pm:715 diskdrake/interactive.pm:798
+#: fs/partitioning_wizard.pm:141 fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing"
msgstr "Ölçüləndirilir"
-#: diskdrake/interactive.pm:721
+#: diskdrake/interactive.pm:715
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Fat fayl sistemi ucları hesaplanır"
-#: diskdrake/interactive.pm:757
+#: diskdrake/interactive.pm:751
#, c-format
msgid "This partition is not resizeable"
msgstr "Bu bölmə ölçüləndirilə bilməz"
-#: diskdrake/interactive.pm:762
+#: diskdrake/interactive.pm:756
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Bu bölmədəki bütün mə'lumatların ehtiyat nüsxələri alınmalıdır"
-#: diskdrake/interactive.pm:764
+#: diskdrake/interactive.pm:758
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"%s bölməsinin ölçüləndirildikdən sonra bu bölmədəki bütün mə'lumatlar itəcək"
-#: diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:765
#, c-format
msgid "Choose the new size"
msgstr "Yeni böyüklüyü seçin"
-#: diskdrake/interactive.pm:770
+#: diskdrake/interactive.pm:766
#, c-format
msgid "New size in MB: "
msgstr "MB cinsindən yeni böyüklük: "
-#: diskdrake/interactive.pm:811 install_interactive.pm:197
+#: diskdrake/interactive.pm:767
+#, c-format
+msgid "Minimum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:768
+#, c-format
+msgid "Maximum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:809 fs/partitioning_wizard.pm:181
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
@@ -2560,241 +1728,242 @@ msgstr ""
"bütövlüyünü qorumaq üçün fayl sistemi yoxlamaları bir sonrakı\n"
"Windows(TM) açılışınızda işə salınacaq."
-#: diskdrake/interactive.pm:852
+#: diskdrake/interactive.pm:850
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Əlavə etmək üçün mövcud bir RAİD seçin"
-#: diskdrake/interactive.pm:854 diskdrake/interactive.pm:871
+#: diskdrake/interactive.pm:852 diskdrake/interactive.pm:869
#, c-format
msgid "new"
msgstr "yeni"
-#: diskdrake/interactive.pm:869
+#: diskdrake/interactive.pm:867
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Əlavə etmək üçün mövcud bir LVM seçin"
-#: diskdrake/interactive.pm:875
+#: diskdrake/interactive.pm:874
#, c-format
msgid "LVM name?"
msgstr "LVM adı?"
-#: diskdrake/interactive.pm:903
+#: diskdrake/interactive.pm:902
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
"Do you want to move used physical extents on this volume to other volumes?"
msgstr ""
-#: diskdrake/interactive.pm:905
+#: diskdrake/interactive.pm:904
#, c-format
msgid "Moving physical extents"
msgstr ""
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:922
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Bu disk bölməsi loopback üçün işlədilə bilməz"
-#: diskdrake/interactive.pm:936
+#: diskdrake/interactive.pm:935
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: diskdrake/interactive.pm:937
+#: diskdrake/interactive.pm:936
#, c-format
msgid "Loopback file name: "
msgstr "Loopback fayl adı: "
-#: diskdrake/interactive.pm:942
+#: diskdrake/interactive.pm:941
#, c-format
msgid "Give a file name"
msgstr "Fayl adı verin"
-#: diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:944
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Fayl başqa bir loopback tərəfindən istifadədədir, başqasını seçin"
-#: diskdrake/interactive.pm:946
+#: diskdrake/interactive.pm:945
#, c-format
msgid "File already exists. Use it?"
msgstr "Fayl onsuz da mövcuddur. İşlədilsin?"
-#: diskdrake/interactive.pm:969
+#: diskdrake/interactive.pm:974 diskdrake/interactive.pm:977
#, c-format
msgid "Mount options"
msgstr "Bağlama seçimləri"
-#: diskdrake/interactive.pm:976
+#: diskdrake/interactive.pm:984
#, c-format
msgid "Various"
msgstr "Müxtəlif"
-#: diskdrake/interactive.pm:1044
+#: diskdrake/interactive.pm:1049
#, c-format
msgid "device"
msgstr "avadanlıq"
-#: diskdrake/interactive.pm:1045
+#: diskdrake/interactive.pm:1050
#, c-format
msgid "level"
msgstr "səviyyə"
-#: diskdrake/interactive.pm:1046
+#: diskdrake/interactive.pm:1051
#, fuzzy, c-format
msgid "chunk size in KiB"
msgstr "parça böyüklüyü"
-#: diskdrake/interactive.pm:1063
+#: diskdrake/interactive.pm:1068
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Diqqətlı olun: bu əməliyyat təhlükəlidir."
-#: diskdrake/interactive.pm:1078
+#: diskdrake/interactive.pm:1083
#, c-format
msgid "What type of partitioning?"
msgstr "Hansı növ bölmələndirmə?"
-#: diskdrake/interactive.pm:1116
+#: diskdrake/interactive.pm:1121
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Yeni qurğuların fəallaşmağı üçün sistemi yenidən başlatmalısınız"
-#: diskdrake/interactive.pm:1125
+#: diskdrake/interactive.pm:1130
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s sürücüsünün bölmə cədvəli diskə yazılacaq!"
-#: diskdrake/interactive.pm:1148
+#: diskdrake/interactive.pm:1153
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"%s bölməsi şəkilləndirildikdən sonra bu bölmədəki bütün mə'lumatlar itəcək."
-#: diskdrake/interactive.pm:1164
+#: diskdrake/interactive.pm:1158 fs/partitioning.pm:49
+#, c-format
+msgid "Check bad blocks?"
+msgstr "Xətalı bloklar sınansınmı?"
+
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Move files to the new partition"
msgstr "Faylları yeni bölməyə daşı"
-#: diskdrake/interactive.pm:1164 standalone/draksambashare:81
-#: standalone/draksambashare:144
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Hide files"
msgstr "Faylları gizlət"
-#: diskdrake/interactive.pm:1165
+#: diskdrake/interactive.pm:1173
#, c-format
msgid ""
"Directory %s already contains data\n"
-"(%s)"
+"(%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 ""
-"%s cərgəsi onsuzda mə'lumat daxil edir\n"
-"(%s)"
-#: diskdrake/interactive.pm:1176
+#: diskdrake/interactive.pm:1188
#, c-format
msgid "Moving files to the new partition"
msgstr "Fayllar yeni bölməyə daşınır"
-#: diskdrake/interactive.pm:1180
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "Copying %s"
msgstr "%s köçürülür"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1196
#, c-format
msgid "Removing %s"
msgstr "%s silinir"
-#: diskdrake/interactive.pm:1198
+#: diskdrake/interactive.pm:1210
#, c-format
msgid "partition %s is now known as %s"
msgstr "%s bölməsi indi %s olaraq bilinir"
-#: diskdrake/interactive.pm:1199
+#: diskdrake/interactive.pm:1211
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""
-#: diskdrake/interactive.pm:1219 diskdrake/interactive.pm:1281
+#: diskdrake/interactive.pm:1231 diskdrake/interactive.pm:1293
#, c-format
msgid "Device: "
msgstr "Avadanlıq: "
-#: diskdrake/interactive.pm:1220
-#, fuzzy, c-format
-msgid "Devfs name: "
-msgstr "Ev sahibi adı:"
-
-#: diskdrake/interactive.pm:1221
+#: diskdrake/interactive.pm:1232
#, c-format
msgid "Volume label: "
msgstr ""
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1233
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS sürücü hərfi: %s (bir təxmindir)\n"
-#: diskdrake/interactive.pm:1226 diskdrake/interactive.pm:1235
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1237 diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1311
#, c-format
msgid "Type: "
msgstr "Növ: "
-#: diskdrake/interactive.pm:1230 install_steps_gtk.pm:300
+#: diskdrake/interactive.pm:1241
#, c-format
msgid "Name: "
msgstr "Ad: "
-#: diskdrake/interactive.pm:1237
+#: diskdrake/interactive.pm:1248
#, c-format
msgid "Start: sector %s\n"
msgstr "Başlanğıc: sektor %s\n"
-#: diskdrake/interactive.pm:1238
+#: diskdrake/interactive.pm:1249
#, c-format
msgid "Size: %s"
msgstr "Böyüklüyü: %s"
-#: diskdrake/interactive.pm:1240
+#: diskdrake/interactive.pm:1251
#, c-format
msgid ", %s sectors"
msgstr ", %s sektor"
-#: diskdrake/interactive.pm:1242
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d'dən silindr %d'yə\n"
-#: diskdrake/interactive.pm:1243
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Formatted\n"
msgstr "Şəkilləndirilmiş\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "Not formatted\n"
msgstr "Şəkilləndirilməmiş\n"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Mounted\n"
msgstr "Bağlı\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "RAID %s\n"
msgstr "RAİD %s\n"
-#: diskdrake/interactive.pm:1252
+#: diskdrake/interactive.pm:1263
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2803,7 +1972,7 @@ msgstr ""
"Loopback fayl(lar)ı:\n"
" %s\n"
-#: diskdrake/interactive.pm:1253
+#: diskdrake/interactive.pm:1264
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2812,27 +1981,27 @@ msgstr ""
"Əsas olaraq açılan bölmə\n"
" (MS-DOS açılışı üçün, lilo üçün deyil)\n"
-#: diskdrake/interactive.pm:1255
+#: diskdrake/interactive.pm:1266
#, c-format
msgid "Level %s\n"
msgstr "Səviyyə %s\n"
-#: diskdrake/interactive.pm:1256
+#: diskdrake/interactive.pm:1267
#, fuzzy, c-format
msgid "Chunk size %d KiB\n"
msgstr "Parça böyüklüyü %s\n"
-#: diskdrake/interactive.pm:1257
+#: diskdrake/interactive.pm:1268
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAİD-diskləri %s\n"
-#: diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1270
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback faylı adı: %s"
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1273
#, c-format
msgid ""
"\n"
@@ -2844,7 +2013,7 @@ msgstr ""
"Bu bölmə Sürücü bölməsidir.\n"
"Bunu elə beləcə buraxın.\n"
-#: diskdrake/interactive.pm:1265
+#: diskdrake/interactive.pm:1276
#, c-format
msgid ""
"\n"
@@ -2856,74 +2025,77 @@ msgstr ""
"Bu, sisteminizin ikili açılışı üçün\n"
"xüsusi Bootstrap bölməsidir.\n"
-#: diskdrake/interactive.pm:1282
+#: diskdrake/interactive.pm:1285
+#, c-format
+msgid "Empty space on %s (%s)"
+msgstr ""
+
+#: diskdrake/interactive.pm:1294
#, c-format
msgid "Read-only"
msgstr "Sırf oxuna bilən"
-#: diskdrake/interactive.pm:1283
+#: diskdrake/interactive.pm:1295
#, c-format
msgid "Size: %s\n"
msgstr "Böyüklük: %s\n"
-#: diskdrake/interactive.pm:1284
+#: diskdrake/interactive.pm:1296
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometriyası: %s silindr, %s baş, %s sektor\n"
-#: diskdrake/interactive.pm:1285 network/thirdparty.pm:331
+#: diskdrake/interactive.pm:1297
#, c-format
msgid "Info: "
msgstr "Mə'lumat: "
-#: diskdrake/interactive.pm:1286
+#: diskdrake/interactive.pm:1298
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskləri %s\n"
-#: diskdrake/interactive.pm:1287
+#: diskdrake/interactive.pm:1299
#, c-format
msgid "Partition table type: %s\n"
msgstr "Bölmə cədvəli növü: %s\n"
-#: diskdrake/interactive.pm:1288
+#: diskdrake/interactive.pm:1300
#, c-format
msgid "on channel %d id %d\n"
msgstr "%d kanalında, %d id'li\n"
-#: diskdrake/interactive.pm:1331
+#: diskdrake/interactive.pm:1343
#, c-format
msgid "Filesystem encryption key"
msgstr "Fayl sistemi şifrələmə açarı"
-#: diskdrake/interactive.pm:1332
+#: diskdrake/interactive.pm:1344
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Fayl sistemi şifrələmə açarınızı seçin"
-#: diskdrake/interactive.pm:1335
+#: diskdrake/interactive.pm:1347
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Bu şifrələmə açarı çox sadədir (ən az %d hərf böyüklüyündə olmalıdır)"
-#: diskdrake/interactive.pm:1336
+#: diskdrake/interactive.pm:1348
#, c-format
msgid "The encryption keys do not match"
msgstr "Şifrələmə açarları uyğun gəlmir"
-#: diskdrake/interactive.pm:1339 network/netconnect.pm:1073
-#: standalone/drakconnect:419 standalone/drakroam:120
+#: diskdrake/interactive.pm:1351
#, c-format
msgid "Encryption key"
msgstr "Şifrələmə açarı"
-#: diskdrake/interactive.pm:1340
+#: diskdrake/interactive.pm:1352
#, c-format
msgid "Encryption key (again)"
msgstr "Şifrələrmə açarı (təkrar)"
-#: diskdrake/interactive.pm:1342 standalone/drakvpn:1017
-#: standalone/drakvpn:1102
+#: diskdrake/interactive.pm:1354
#, c-format
msgid "Encryption algorithm"
msgstr "Şifrələmə alqorifması"
@@ -2933,27 +2105,35 @@ msgstr "Şifrələmə alqorifması"
msgid "Change type"
msgstr "Növünü dəyişdir"
-#: diskdrake/smbnfs_gtk.pm:163
+#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:539
+#: interactive/curses.pm:214 interactive/http.pm:104 interactive/http.pm:160
+#: interactive/stdio.pm:39 interactive/stdio.pm:142 ugtk2.pm:404 ugtk2.pm:506
+#: ugtk2.pm:515 ugtk2.pm:788
+#, c-format
+msgid "Cancel"
+msgstr "Ləğv Et"
+
+#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr "%s istifadəçi adı ilə giriş edilə bilmir (şifrəniz səhvdir?)"
-#: diskdrake/smbnfs_gtk.pm:167 diskdrake/smbnfs_gtk.pm:176
+#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Domen Səlahiyyətləndirməsi Məcburidir"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Hansı istifadəçi adı"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Başqa birisi"
-#: diskdrake/smbnfs_gtk.pm:177
+#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
@@ -2961,85 +2141,81 @@ msgstr ""
"Xahiş edirik, bu qovşağa yetişə bilmək üçün istifadəçi adını, şifrəni və "
"domen adını girin."
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3640
+#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "İstifadəçi adı"
-#: diskdrake/smbnfs_gtk.pm:205
+#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Vericiləri axtar"
-#: diskdrake/smbnfs_gtk.pm:210
+#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr "Yeni vericiləri axtar"
-#: do_pkgs.pm:16 do_pkgs.pm:49
+#: do_pkgs.pm:16 do_pkgs.pm:53
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "%s paketi qurulmalıdır. Qurmaq istəyirsiniz?"
-#: do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:52 printer/printerdrake.pm:3948
+#: do_pkgs.pm:19 do_pkgs.pm:40 do_pkgs.pm:56
#, fuzzy, c-format
msgid "Could not install the %s package!"
msgstr "Xorg paketi qurula bilmir: %s"
-#: do_pkgs.pm:24 do_pkgs.pm:57
+#: do_pkgs.pm:24 do_pkgs.pm:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Vacib olan %s paketi əksikdir"
-#: do_pkgs.pm:35 harddrake/sound.pm:278 install_steps_interactive.pm:1288
-#: keyboard.pm:381 network/ndiswrapper.pm:95 network/netconnect.pm:471
-#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2495
-#: printer/printerdrake.pm:2632 printer/printerdrake.pm:2953
-#: printer/printerdrake.pm:2960 printer/printerdrake.pm:3947
-#: printer/printerdrake.pm:4211 printer/printerdrake.pm:4330
-#: printer/printerdrake.pm:5487 standalone/drakTermServ:354
-#: standalone/drakTermServ:1267 standalone/drakTermServ:1328
-#: standalone/drakTermServ:2006 standalone/drakbackup:510
-#: standalone/drakbackup:609 standalone/drakboot:133 standalone/drakclock:224
-#: standalone/drakconnect:973 standalone/drakfont:679 standalone/drakperm:380
-#: standalone/drakperm:390 standalone/drakups:27 standalone/harddrake2:510
-#: standalone/harddrake2:526 standalone/localedrake:43
-#: standalone/scannerdrake:51 standalone/scannerdrake:957
-#, c-format
-msgid "Warning"
-msgstr "Xəbərdarlıq"
-
-#: do_pkgs.pm:35 standalone/harddrake2:526
+#: do_pkgs.pm:35
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Aşağıdakı paketlər qurulmalıdır:\n"
-#: do_pkgs.pm:205
+#: do_pkgs.pm:209
#, c-format
msgid "Installing packages..."
msgstr "Paketlər qurulur..."
-#: do_pkgs.pm:252
+#: do_pkgs.pm:255
#, c-format
msgid "Removing packages..."
msgstr "Paketlər silinir..."
-#: fs/format.pm:58 fs/format.pm:65
+#: fs/any.pm:17
+#, c-format
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Bir xəta oldu. Yeni fayl sisteminin yaradılacağı hökmlü bir sürücü "
+"tapılmadı. Bu problemin qaynağı üçün avadanlığınızı yoxlayın"
+
+#: fs/any.pm:62 fs/partitioning_wizard.pm:55
+#, c-format
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "/boot/efi ünvanına bağlanmış FAT bölməniz olmalıdır"
+
+#: fs/format.pm:59 fs/format.pm:66
#, c-format
msgid "Formatting partition %s"
msgstr "%s bölməsi şəkilləndirilir"
-#: fs/format.pm:62
+#: fs/format.pm:63
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s faylı yaradılır və şəkilləndirilir"
-#: fs/format.pm:115
+#: fs/format.pm:116
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "%s-i necə şəkilləndirəcəyimi bilmirəm (Növ: %s)"
-#: fs/format.pm:120 fs/format.pm:122
+#: fs/format.pm:121 fs/format.pm:123
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s şəkilləndirilməsində %s bölmə xətası"
@@ -3049,27 +2225,27 @@ msgstr "%s şəkilləndirilməsində %s bölmə xətası"
msgid "Circular mounts %s\n"
msgstr "Dairəvi bağlama %s\n"
-#: fs/mount.pm:74
+#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "%s bölməsi bağlanır"
-#: fs/mount.pm:75
+#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "%s bolməsini %s cərgəsinə bağlama bacarılmadı"
-#: fs/mount.pm:80 fs/mount.pm:97
+#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "%s yoxlanır"
-#: fs/mount.pm:113 partition_table.pm:385
+#: fs/mount.pm:118 partition_table.pm:384
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s ayrılırkən xəta oldu: %s"
-#: fs/mount.pm:142
+#: fs/mount.pm:133
#, c-format
msgid "Enabling swap partition %s"
msgstr "%s dəyiş-toqquş sahəsi fəallaşdırılır"
@@ -3144,35 +2320,307 @@ msgstr "Fayl sisteminə bütün G/Ç'lar sinxron olaraq yerinə gətirilməlidir
#: fs/mount_options.pm:139
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow every user to mount and umount the file system."
msgstr ""
#: fs/mount_options.pm:141
#, c-format
-msgid "Enable user disk quota accounting, and optionally enforce limits"
+msgid "Allow an ordinary user to mount the file system."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Support user. extended attributes"
+msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""
#: fs/mount_options.pm:145
#, c-format
+msgid "Support \"user.\" extended attributes"
+msgstr ""
+
+#: fs/mount_options.pm:147
+#, c-format
msgid "Give write access to ordinary users"
msgstr "Sıravi istifadəçilərə yazma səlahiyyəti ver"
-#: fs/mount_options.pm:147
+#: fs/mount_options.pm:149
#, fuzzy, c-format
msgid "Give read-only access to ordinary users"
msgstr "Sıravi istifadəçilərə yazma səlahiyyəti ver"
-#: fs/type.pm:363
+#: fs/mount_point.pm:80
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "%s bağlama nöqtəsini ikiləşdir"
+
+#: fs/mount_point.pm:95
+#, c-format
+msgid "No partition available"
+msgstr "Uyğun bölmə mövcud deyil"
+
+#: fs/mount_point.pm:98
+#, c-format
+msgid "Scanning partitions to find mount points"
+msgstr "Bölmələr bağlama nöqtələri üçün yoxlanır"
+
+#: fs/mount_point.pm:105
+#, c-format
+msgid "Choose the mount points"
+msgstr "Bağlama nöqtələrini seçin"
+
+#: fs/partitioning.pm:46
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "Şəkilləndirmək istədiyiniz bölmələrini seçin"
+
+#: fs/partitioning.pm:76
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+"%s fayl sisteminin yoxlanması bacarılmadı. Xətaları düzəltmək istəyirsiniz? "
+"(diqqətli olun, mə'lumatları itirə bilərsiniz)"
+
+#: fs/partitioning.pm:79
+#, c-format
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Qurulumu bitirmək üçün lazımi sahə yoxdur, xahiş edirik, əlavə edin"
+
+#: fs/partitioning_wizard.pm:47
+#, c-format
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"Bir kök bölməsi yaratmalısınız.\n"
+"Bunun üçün istər mövcud bir disk bölümü üzərinə tıqlayın, \n"
+"ya da yeni birini başdan yaradın. Sonra \"Bağlama \n"
+"Nöqtəsi\"gedişatını seçin va buranı '/' olaraq dəyişdirin."
+
+#: fs/partitioning_wizard.pm:52
+#, c-format
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+"Dəyiş-toqquş sahəniz yoxdur\n"
+"Davam edilsin?"
+
+#: fs/partitioning_wizard.pm:80
+#, c-format
+msgid "Use free space"
+msgstr "Boş sahəni istifadə et"
+
+#: fs/partitioning_wizard.pm:82
+#, c-format
+msgid "Not enough free space to allocate new partitions"
+msgstr "Yeni bölmələr ayırmaq üçün kifayət qədər boş yer yoxdur"
+
+#: fs/partitioning_wizard.pm:90
+#, c-format
+msgid "Use existing partitions"
+msgstr "Mövcud bölmələri işlət"
+
+#: fs/partitioning_wizard.pm:92
+#, c-format
+msgid "There is no existing partition to use"
+msgstr "İstifadə ediləcək mövcud bölmə yoxdur"
+
+#: fs/partitioning_wizard.pm:99
+#, c-format
+msgid "Use the Microsoft Windows® partition for loopback"
+msgstr "Loopback üçün Microsoft Windows® bölməsini işlət"
+
+#: fs/partitioning_wizard.pm:102
+#, c-format
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Linux4Win-i qurmaq üçün hansı disk bölməsini istifadə edəcəksiniz?"
+
+#: fs/partitioning_wizard.pm:104
+#, c-format
+msgid "Choose the sizes"
+msgstr "Böyüklükləri seçin"
+
+#: fs/partitioning_wizard.pm:105
+#, c-format
+msgid "Root partition size in MB: "
+msgstr "Kök bölməsi böyüklüyü (Mb): "
+
+#: fs/partitioning_wizard.pm:106
+#, c-format
+msgid "Swap partition size in MB: "
+msgstr "Dəyiş-toqquş sahəsi böyüklüyü (Mb): "
+
+#: fs/partitioning_wizard.pm:115
+#, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr "Loopback üçün FAT bölməsi yoxdur (ya da lazımi yer yoxdur)"
+
+#: fs/partitioning_wizard.pm:122
+#, c-format
+msgid "Use the free space on the Microsoft Windows® partition"
+msgstr "Windows bölməsindəki boş sahəni işlət"
+
+#: fs/partitioning_wizard.pm:124
+#, c-format
+msgid "Which partition do you want to resize?"
+msgstr "Hansı bölmə ölçüləndirilsin?"
+
+#: fs/partitioning_wizard.pm:138
+#, c-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+"FAT ölçüləndiricimiz sizin bölməniziri işlədə bilmir,\n"
+"bu xəta oldu: %s"
+
+#: fs/partitioning_wizard.pm:141
+#, c-format
+msgid "Computing the size of the Microsoft Windows® partition"
+msgstr "Microsoft Windows® bölməsin böyüklüyü hesablanır"
+
+#: fs/partitioning_wizard.pm:148
+#, c-format
+msgid ""
+"Your Microsoft Windows® partition is too fragmented. Please reboot your "
+"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
+"the Mandriva Linux installation."
+msgstr ""
+"Microsoft Windows® bölümünüz çox dağınıqdır. Daxiş edirik, əvvəlcə "
+"kompüterinizi Microsoft Windows® ilə açın, ''defrag'' vasitəsini işlədin, "
+"sonra Mandriva Linux qurulumunu yenidən başladın."
+
+#: fs/partitioning_wizard.pm:151
+#, 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 ""
+"XƏBƏRDARLIQ!\n"
+"\n"
+" DrakX indi Windows disk bölmənizin böyüklüyünü dəyişdirəcək.\n"
+"\n"
+"\n"
+"Diqqətli olun, bu təhlükəli ola bilər. Hələ də etmədinizsə qurulumdan çıxın "
+"və Windows altında scandisk (lazım gələrsə defrag da) proqramını icra edin. "
+"Eyni zamanda mə'lumatlarınızın da ehtiyat nüsxəsini alın. Ardından quruluma "
+"davam edin.\n"
+"\n"
+"\n"
+"Hazır olanda, %s düyməsinə basın."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: fs/partitioning_wizard.pm:160 interactive.pm:538 interactive/curses.pm:217
+#: ugtk2.pm:508
+#, c-format
+msgid "Next"
+msgstr "Sonrakı"
+
+#: fs/partitioning_wizard.pm:163
+#, c-format
+msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
+msgstr ""
+"Microsoft Windows® üçün hansı böyüklüyü saxlamaq istəyirsiniz %s bölməsi?"
+
+#: fs/partitioning_wizard.pm:164
+#, c-format
+msgid "Size"
+msgstr "Böyüklük"
+
+#: fs/partitioning_wizard.pm:173
+#, c-format
+msgid "Resizing Microsoft Windows® partition"
+msgstr "Microsoft Windows® bölməsi ölçüləndirilir"
+
+#: fs/partitioning_wizard.pm:178
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "FAT ölçüləndirilməsi bacarılmadı: %s"
+
+#: fs/partitioning_wizard.pm:193
+#, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr "Ölçüləndiriləcək FAT bölməsi mövcud deyil (ya da lazımi yer yoxdur)"
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Remove Microsoft Windows®"
+msgstr "Microsoft Windows®'u Sil"
+
+#: fs/partitioning_wizard.pm:198
+#, fuzzy, c-format
+msgid "Erase and use entire disk"
+msgstr "Bütün diski sil"
+
+#: fs/partitioning_wizard.pm:200
+#, c-format
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+"Sizin birdən çox diskiniz var, linux qurmaq üçün hansını istifadə "
+"edəcəksiniz?"
+
+#: fs/partitioning_wizard.pm:206
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "%s sürüsündəki mövcud bütün bölmələr və onlardakı mə'lumatitiriləcək"
+
+#: fs/partitioning_wizard.pm:217
+#, c-format
+msgid "Custom disk partitioning"
+msgstr "Xüsusi disk bölmələndirməsi"
+
+#: fs/partitioning_wizard.pm:223
+#, c-format
+msgid "Use fdisk"
+msgstr "Fdisk istifadə et"
+
+#: fs/partitioning_wizard.pm:226
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+"İndi %s sabit diskinizi bölmələndirə bilərsiniz\n"
+"İşinizi bitirdiyinizdə `w' ilə qeyd etməyi unutmayın"
+
+#: fs/partitioning_wizard.pm:266
+#, c-format
+msgid "I can not find any room for installing"
+msgstr "Artıq bölmə əlavə edilə bilməz"
+
+#: fs/partitioning_wizard.pm:270
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "DrakX bölmələndirmə sehirbazı bu çıxış yollarını tapdı:"
+
+#: fs/partitioning_wizard.pm:278
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Bölmələndirmə bacarılmadı: %s"
+
+#: fs/type.pm:366
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "16MB'dan kiçik disk bölmələrində JFS istifadə edə bilməzsiniz"
-#: fs/type.pm:364
+#: fs/type.pm:367
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "32MB'dən kiçik disk bölmələrində ReiserFS istifadə edə bilməzsiniz"
@@ -3187,7 +2635,12 @@ msgstr "/usr ilə"
msgid "server"
msgstr "verici"
-#: fsedit.pm:219
+#: fsedit.pm:116
+#, c-format
+msgid "BIOS software RAID detected on disks %s. Activate it?"
+msgstr ""
+
+#: fsedit.pm:230
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
@@ -3206,22 +2659,22 @@ msgstr ""
"\n"
"Bütün bölmələri itirmək işinizə gəlir?\n"
-#: fsedit.pm:392
+#: fsedit.pm:403
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Bağlama nöqtələri / ilə başlamalıdır"
-#: fsedit.pm:393
+#: fsedit.pm:404
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Bağlama nöqtələri ancaq alfanumerik hərf daxil edə bilər"
-#: fsedit.pm:394
+#: fsedit.pm:405
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Onsuz da bağlama nöqtəsi %s olan bölmə mövcuddur\n"
-#: fsedit.pm:398
+#: fsedit.pm:409
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -3232,14 +2685,14 @@ msgstr ""
"etdiniz. /boot bölməsi olmadan heç bir açılış yükləyicisi bunu aça bilməz.\n"
"Xahiş edirik, /boot bölməsini əlavə etməyi unutmayın"
-#: fsedit.pm:404
+#: fsedit.pm:415
#, fuzzy, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr "%s bağlama nöqtəsi üçün LVM Məntiqi Həcmini istifadə edə bilməzsiniz"
-#: fsedit.pm:406
+#: fsedit.pm:417
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -3251,12 +2704,12 @@ msgstr ""
"etdiniz. /boot bölməsi olmadan heç bir açılış yükləyicisi bunu aça bilməz.\n"
"Xahiş edirik, /boot bölməsini əlavə etməyi unutmayın"
-#: fsedit.pm:410 fsedit.pm:412
+#: fsedit.pm:421 fsedit.pm:423
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Bu qovluq kök fayl sistemi içərisində olmalıdır"
-#: fsedit.pm:414 fsedit.pm:416
+#: fsedit.pm:425 fsedit.pm:427
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -3265,23 +2718,23 @@ msgstr ""
"Bu bağlama nöqtəsi üçün həqiqi bir fayl sisteminə (ext2/ext3, reiserfs, xfs, "
"ya da jfs)ehtiyacınız var\n"
-#: fsedit.pm:418
+#: fsedit.pm:429
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr ""
"%s bağlama nöqtəsi üçün şifrələnmiş fayl sistemi istifadə edə bilməzsiniz"
-#: fsedit.pm:482
+#: fsedit.pm:493
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Avtomatik yerləşdirmə üçün kifayət qədər boş sahə yoxdur"
-#: fsedit.pm:484
+#: fsedit.pm:495
#, c-format
msgid "Nothing to do"
msgstr "Ediləcək heçnə yoxdur"
-#: harddrake/data.pm:62 install_any.pm:1710
+#: harddrake/data.pm:62
#, c-format
msgid "Floppy"
msgstr "Disket"
@@ -3291,12 +2744,12 @@ msgstr "Disket"
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:88 install_any.pm:1711
+#: harddrake/data.pm:88
#, c-format
msgid "Hard Disk"
msgstr "Hard Disk"
-#: harddrake/data.pm:97 install_any.pm:1712
+#: harddrake/data.pm:97
#, c-format
msgid "CDROM"
msgstr "CDROM"
@@ -3311,103 +2764,102 @@ msgstr "CD/DVD yazıcılar"
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:127 standalone/drakbackup:2066
+#: harddrake/data.pm:127
#, c-format
msgid "Tape"
msgstr "Kaset"
-#: harddrake/data.pm:136
+#: harddrake/data.pm:138
+#, c-format
+msgid "AGP controllers"
+msgstr "AGP idarəçiləri"
+
+#: harddrake/data.pm:147
#, c-format
msgid "Videocard"
msgstr "Video kartı"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:157
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:154
+#: harddrake/data.pm:165
#, c-format
msgid "Tvcard"
msgstr "Televiziya kartı"
-#: harddrake/data.pm:163
+#: harddrake/data.pm:174
#, c-format
msgid "Other MultiMedia devices"
msgstr "Digər Multimediya avadanlıqları"
-#: harddrake/data.pm:172
+#: harddrake/data.pm:183
#, c-format
msgid "Soundcard"
msgstr "Səs kartı"
-#: harddrake/data.pm:185
+#: harddrake/data.pm:196
#, c-format
msgid "Webcam"
msgstr "Veb kamerası"
-#: harddrake/data.pm:199
+#: harddrake/data.pm:210
#, c-format
msgid "Processors"
msgstr "İşlədicilər"
-#: harddrake/data.pm:209
+#: harddrake/data.pm:220
#, c-format
msgid "ISDN adapters"
msgstr "ISDN adapterləri"
-#: harddrake/data.pm:220
+#: harddrake/data.pm:231
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:229
+#: harddrake/data.pm:240
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:238
+#: harddrake/data.pm:249
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:247
+#: harddrake/data.pm:258
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:256
+#: harddrake/data.pm:267
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:265
+#: harddrake/data.pm:276
#, c-format
msgid "Ethernetcard"
msgstr "Eternet Kartı"
-#: harddrake/data.pm:282 network/netconnect.pm:492
+#: harddrake/data.pm:293
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:292
+#: harddrake/data.pm:303
#, c-format
msgid "ADSL adapters"
msgstr "ADSL adapterləri"
-#: harddrake/data.pm:306
+#: harddrake/data.pm:315
#, c-format
msgid "Memory"
msgstr "Yaddaş"
-#: harddrake/data.pm:315
-#, c-format
-msgid "AGP controllers"
-msgstr "AGP idarəçiləri"
-
-#: harddrake/data.pm:324 help.pm:187 help.pm:856
-#: install_steps_interactive.pm:964
+#: harddrake/data.pm:324
#, c-format
msgid "Printer"
msgstr "Çapçı"
@@ -3433,85 +2885,92 @@ msgstr "SATA idarəçiləri"
msgid "RAID controllers"
msgstr "RAİD idarəçiləri"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)İDE/ATA idarəçiləri"
-#: harddrake/data.pm:385
+#: harddrake/data.pm:386
+#, c-format
+msgid "USB Mass Storage Devices"
+msgstr ""
+
+#: harddrake/data.pm:395
+#, fuzzy, c-format
+msgid "Card readers"
+msgstr "Kart modeli:"
+
+#: harddrake/data.pm:404
#, c-format
msgid "Firewire controllers"
msgstr "Firewire idarəçiləri"
-#: harddrake/data.pm:394
+#: harddrake/data.pm:413
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCİA idarəçiləri"
-#: harddrake/data.pm:403
+#: harddrake/data.pm:422
#, c-format
msgid "SCSI controllers"
msgstr "SCSİ idarəçiləri"
-#: harddrake/data.pm:412
+#: harddrake/data.pm:431
#, c-format
msgid "USB controllers"
msgstr "USB idarəçiləri"
-#: harddrake/data.pm:421
+#: harddrake/data.pm:440
#, fuzzy, c-format
msgid "USB ports"
msgstr "USB çapçı"
-#: harddrake/data.pm:430
+#: harddrake/data.pm:449
#, c-format
msgid "SMBus controllers"
msgstr "SMBus idarəçiləri"
-#: harddrake/data.pm:439
+#: harddrake/data.pm:458
#, c-format
msgid "Bridges and system controllers"
msgstr "Körpülər və sistem idarəçiləri"
-#: harddrake/data.pm:450 help.pm:856 install_steps_interactive.pm:94
-#: install_steps_interactive.pm:924 standalone/finish-install:41
-#: standalone/keyboarddrake:29
+#: harddrake/data.pm:469
#, c-format
msgid "Keyboard"
msgstr "Klaviatura"
-#: harddrake/data.pm:463
+#: harddrake/data.pm:482
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:472 help.pm:856 install_steps_interactive.pm:957
+#: harddrake/data.pm:491
#, c-format
msgid "Mouse"
msgstr "Siçan"
-#: harddrake/data.pm:486
+#: harddrake/data.pm:505
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:495
+#: harddrake/data.pm:514
#, c-format
msgid "Scanner"
msgstr "Darayıcı"
-#: harddrake/data.pm:505 standalone/harddrake2:475
+#: harddrake/data.pm:524
#, c-format
msgid "Unknown/Others"
msgstr "Na'məlum/Digərləri"
-#: harddrake/data.pm:533
+#: harddrake/data.pm:552
#, c-format
msgid "cpu # "
msgstr "cpu # "
-#: harddrake/sound.pm:195 standalone/drakconnect:162
-#: standalone/drakconnect:637
+#: harddrake/sound.pm:195
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Xahiş edirik, gözləyin... Qurğular tətbiq edilir"
@@ -3593,17 +3052,17 @@ msgstr ""
"- köhnə OSS API'si\n"
"- yeni ALSA API'si.\n"
-#: harddrake/sound.pm:262 harddrake/sound.pm:350 standalone/drakups:144
+#: harddrake/sound.pm:262 harddrake/sound.pm:351
#, c-format
msgid "Driver:"
msgstr "Sürücü:"
-#: harddrake/sound.pm:270
+#: harddrake/sound.pm:271
#, c-format
msgid "Trouble shooting"
msgstr "Problem həlli"
-#: harddrake/sound.pm:278
+#: harddrake/sound.pm:279
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
@@ -3618,12 +3077,12 @@ msgstr ""
"\n"
"Növbəti açılışda ancaq \"%s\" sürücüsü istifadə ediləcək."
-#: harddrake/sound.pm:286
+#: harddrake/sound.pm:287
#, c-format
msgid "No open source driver"
msgstr "Açıq mənbəli sürücü yoxdur"
-#: harddrake/sound.pm:287
+#: harddrake/sound.pm:288
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
@@ -3632,33 +3091,33 @@ msgstr ""
"(%s) səs kartınız üçün pulsuz sürücü mövcud deyil, ancaq \"%s\" ünvanında "
"lazım olan sürücünü tapa bilərsiniz."
-#: harddrake/sound.pm:290
+#: harddrake/sound.pm:291
#, c-format
msgid "No known driver"
msgstr "Bilinən sürücü yoxdur"
-#: harddrake/sound.pm:291
+#: harddrake/sound.pm:292
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Sizin (%s) səs kartınız üçün sürücü mövcud deyil"
-#: harddrake/sound.pm:295 network/netconnect.pm:98 network/netconnect.pm:837
+#: harddrake/sound.pm:296
#, c-format
msgid "Unknown driver"
msgstr "Namə'lum sürücü"
-#: harddrake/sound.pm:296
+#: harddrake/sound.pm:297
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "Xəta: Səs kartınız üçün \"%s\" sürücüsü siyahıda yoxdur"
-#: harddrake/sound.pm:310
+#: harddrake/sound.pm:311
#, c-format
msgid "Sound trouble shooting"
msgstr "Səs problemini həll et"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:313
+#: harddrake/sound.pm:314
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
@@ -3667,7 +3126,7 @@ msgid ""
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\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"
@@ -3687,7 +3146,7 @@ msgstr ""
"- \"lspcidrake -v | fgrep AUDIO\" səs kartınızın əsas olaraq hansı\n"
"sürücünü işlətdiyini bildirir\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" hazırda işlədilən sürücünü\n"
+"- \"grep sound-slot /etc/modprobe.conf\" hazırda işlədilən sürücünü\n"
"bildirir\n"
"\n"
"- \"/sbin/lsmod\" modulun (sürücünün) yüklü olub olmadığını yoxlamaq\n"
@@ -3702,18 +3161,18 @@ msgstr ""
"- \"/sbin/fuser -v /dev/dsp\" hansı proqramın səs kartını işlətdiyini "
"bildirir.\n"
-#: harddrake/sound.pm:339
+#: harddrake/sound.pm:340
#, c-format
msgid "Let me pick any driver"
msgstr "İstədiyim sürücünü seçməyə icazə ver"
-#: harddrake/sound.pm:342
+#: harddrake/sound.pm:343
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Səbəbsiz bir sürücü seçilir"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:345
+#: harddrake/sound.pm:346
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3727,8 +3186,7 @@ msgstr ""
"\n"
"\"%s\" səs kartınız üçün hazırkı sürücü \"%s\"dir"
-#: harddrake/v4l.pm:12 standalone/net_applet:64 standalone/net_applet:65
-#: standalone/net_applet:67
+#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Avtomatik təsbit et"
@@ -3771,3785 +3229,53 @@ msgstr "Kart modeli:"
msgid "Tuner type:"
msgstr "Tuner növü:"
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "Number of capture buffers:"
-msgstr "Yaxalama bufferlərinin ədədi:"
-
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "mmap'lanmış yaxalama üçün yaxalama buferlərinin miqdarı"
-
-#: harddrake/v4l.pm:481
-#, c-format
-msgid "PLL setting:"
-msgstr "PLL qurğusu:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "Radio support:"
-msgstr "Radio dəstəyi:"
-
-#: harddrake/v4l.pm:482
+#: interactive.pm:125 interactive.pm:538 interactive/curses.pm:217
+#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
+#: interactive/stdio.pm:142 interactive/stdio.pm:143 ugtk2.pm:410 ugtk2.pm:508
+#: ugtk2.pm:788 ugtk2.pm:811
#, c-format
-msgid "enable radio support"
-msgstr "radio dəstəyini fəallaşdır"
-
-#: help.pm:12
-#, fuzzy, c-format
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandriva Linux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-"Davam etmədən əvvəl, diqqətlə lisenziyanın qaydalarını oxumalısınız. O,\n"
-"bütün Mandriva Linux distribusiyasını əhatə edir. Əgər lisenziyadakı bütün\n"
-"qaydalarla razısınızsa, qutusunu \"%s\" işarələyin. Əgər razı deyilsəniz, "
-"sadəcə olaraq kompüterinizi bağlayın."
-
-#: help.pm:18
-#, fuzzy, c-format
-msgid ""
-"GNU/Linux is a multi-user system which means each user can have his or her\n"
-"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point will not be "
-"authorized\n"
-"to change anything except their own files and their own configurations,\n"
-"protecting the system from unintentional or malicious changes which could\n"
-"impact on the system as a whole. You'll have to create at least one regular\n"
-"user for yourself -- this is the account which you should use for routine,\n"
-"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
-"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system will not work any more. If you make a\n"
-"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you will not affect the entire system.\n"
-"\n"
-"The first field asks you for a real name. Of course, this is not mandatory\n"
-"-- you can actually enter whatever you like. DrakX will use the first word\n"
-"you type in this field and copy it to the \"%s\" one, which is the name\n"
-"this user will enter to log onto the system. If you like, you may override\n"
-"the default and change the user name. The next step is to enter a password.\n"
-"From a security point of view, a non-privileged (regular) user password is\n"
-"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
-"by making it blank or too simple: after all, your files could be the ones\n"
-"at risk.\n"
-"\n"
-"Once you click on \"%s\", you can add other users. Add a user for each one\n"
-"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
-"finished adding users.\n"
-"\n"
-"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
-"that user (bash by default).\n"
-"\n"
-"When you're finished adding users, you'll be asked to choose a user who\n"
-"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click on\n"
-"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
-msgstr ""
-"GNU/Linuks çox istifadəçili əməliyyat sistemidir, bu da o deməkdir ki\n"
-"hər istifadəçinin öz xüsusi seçimləri, faylları və s. ola bilər. Ancaq \n"
-"sistem idarəçisi olan \"ali istifadəçi\" xaricindəki indi əlavə edəcəyiniz\n"
-"istifadəçilər öz faylları və qurğuları xaricində sistemin heç bir təhlükəli\n"
-"yeri ilə iş görə bilməz və beləcə də sistem istənməyən pozulmalara qarşı\n"
-"qorunmuş olacaq. Ən az bir dənə sıravi istifadəçi yaradmalısınız və bu "
-"hesabı\n"
-"gündəlik işləriniz üçün istifadə etməlisiniz. Ali İstifadəçi olaraq giriş "
-"etmək də\n"
-"olduqca asanddır ancaq bu eyni zamanda çox təhlükəlidir. Çox kiçik bir xəta "
-"ilə\n"
-"sistemi qeyri-fəal vəziyyətə gətirə bilərsiniz. Ancaq sıravi istifadəçi "
-"olaraq xəta\n"
-"ediləndə ancaq bəzi mə'lumatları itirəcək, sisteminiz yenə də sağlam \n"
-"qalacaqdır.\n"
-"\n"
-"Birinci sahə sizdən adı soruşacaq. Əlbəttə ki bunu yazmaq məcburi deyil. \n"
-"Oraya istədiyiniz kəlmələri yaza bilərsiniz. DrakX buraya yazdığınız "
-"kəlmələrin\n"
-"ilk kəlməsini alıb \"%s\" sahəsinə köçürəcək, bu istifadəçinin sistemə "
-"girmək\n"
-"üçün işlədəcəyi istifadəçi adı olacaq. İstəsəniz bunu da dəyişdirə "
-"bilərsiniz.\n"
-"Sonrakı addım şifrə girməkdir. Təhlükəsizlik nəzər nöqtəsindən şifrəsi "
-"olmayan\n"
-"sıravi istifadəçi ali istifadəçi qədər səlahiyyətli ola bilməz ancaq yenə də "
-"sizə\n"
-"hər bir istifadəçiyə tapılması asand olmayan bir şifrə tə'yin etmənizi \n"
-"məsləhət görürük\n"
-"\n"
-"\"%s\" basdıqdan sonra başqa istifadəçiləri də əlavə edə bilərsiniz. Hər "
-"dostunuz\n"
-"üçün bir istifadəçi əlavə edin, misal üçün atanız, qardaşınız kimi. "
-"İstifadəçiləri əlavə \n"
-"etməyi bitirəndə \"%s\" düyməsinə basın.\n"
-"\n"
-"\"%s\" düyməsi istifadəçinin işlədəcəyi qabığı dəyişdirmək üçündür. \n"
-"(əsas olan bash qabığıdır).\n"
-"\n"
-"İstifadəçiləri əlavə edib bitirəndə sizə kompüteriniz açılanda hansı "
-"istifadəçinin\n"
-"avtomatik olaraq sistemə daxil etmək istədiyiniz sualı veriləcəkdir. Əgər "
-"bu\n"
-"xüsusiyyət xoşunuza gəlirsə və təhlükəsizlik haqqında elə də "
-"maraqlanmırsınızsal\n"
-"istədiyiniz istifadəçini və pəncərə idarəçisini seçib \"%s\" düyməsinə "
-"basın.\n"
-"Əgər bu xassə sizi maraqlandırmırsa \"%s\" qutusunun seçimini silin."
-
-#: help.pm:52 printer/printerdrake.pm:1866 printer/printerdrake.pm:1987
-#: standalone/draksambashare:60
-#, c-format
-msgid "User name"
-msgstr "İstifadəçi adı"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: help.pm:52 help.pm:432 help.pm:682 install_interactive.pm:176
-#: install_steps_gtk.pm:237 install_steps_gtk.pm:682 interactive.pm:436
-#: interactive/newt.pm:321 network/thirdparty.pm:385
-#: printer/printerdrake.pm:3884 standalone/drakTermServ:412
-#: standalone/drakbackup:4102 standalone/drakbackup:4196
-#: standalone/drakbackup:4213 standalone/drakbackup:4231 ugtk2.pm:490
-#, c-format
-msgid "Next"
-msgstr "Sonrakı"
-
-#: help.pm:52
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Bu xüsusiyyəti istifadə etmək istəyirsiniz?"
-
-#: help.pm:55
-#, c-format
-msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Burada sürücünüzdə tapılan Linuks bölmələri sıralanıb.\n"
-"Sehirbazın məsləhətlərinə qulaq asın, onlar çox vaxt işə yarayır.\n"
-"Əgər hər hansı bir dəyişiklik etsəniz ən azından kök bölməsini (\"/\") "
-"müəyyən\n"
-"etməlisiniz. Çox kiçik bölmə seçməyin, yoxsa kifayət qədər proqram "
-"tə'minatı\n"
-"qura bilməyəcəksiniz. Əgər mə'lumatlarınızı başqa bölmədə tutmaq "
-"istəyirsinizsə,\n"
-"o zaman bir də \"/home\" bölməsi yaratmalısınız (yalnız birdən çox Linuks\n"
-"bölməniz var isə mümkündür).\n"
-"\n"
-"Hər bölmə bu cür sıralanıb; \"Ad\",\"Həcm\".\n"
-"\n"
-"\"Ad\" bu cür qurulub: \"sabit disk növü\", \"sabit disk nömrəsi\",\n"
-"\"bölmə nömrəsi\" (məsələn, \"hda1\").\n"
-"\n"
-"\"Sabit disk növü\" diskiniz İDE sürücüsü isə \"hd\"dir, SCSİ sürücüsü isə\n"
-"\"sd\"dir.\n"
-"\n"
-"\"Sabit disk nömrəsi\" həmişə \"hd\" və ya \"sd\"dən sonrakı rəqəmdir. İDE \n"
-"sürücülər üçün:\n"
-"\n"
-"* \"a\" mə'nası \"birinci İDE idarəçisində ali (master) sürücü\",\n"
-"\n"
-"* \"b\" mə'nası \"birinci İDE idarəçisində qul (slave) sürücü\",\n"
-"\n"
-"* \"c\" mə'nası \"ikinci İDE idarəçisində ali (master) sürücü\",\n"
-"\n"
-"* \"d\" mə'nası \"ikinci İDE idarəçisində qul (slave) sürücü\".\n"
-"\n"
-"\n"
-"SCSİ sürücülərində, \"a\"nın mə'nası \"ən düşük SCSİ ID\",\n"
-"\"b\"nin mə'nası \"ikinci ən düşük SCSİ ID\"dir, vs..."
-
-#: help.pm:86
-#, c-format
-msgid ""
-"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-"Mandriva Linux qurulumu müxtəlif CD-lər üstündə gəlir. DrakX\n"
-"seçili paketlərin hansı CD'də olduğunu bilir ona görə də lazım olanda\n"
-"hazırkı CD-ni çıxardıb sizdən lazım olan CD-ni daxil etməyi istəyəcək.\n"
-"Əgər əlinizin altında istənən CD yoxdursa \"%s\" düyməsinə basın və istənən\n"
-"paketlər qurulmayacaqdır."
-
-#: help.pm:93
-#, fuzzy, c-format
-msgid ""
-"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandriva Linux, and to make "
-"it\n"
-"simpler to manage, they have been placed into groups of similar\n"
-"applications.\n"
-"\n"
-"Mandriva Linux sorts package groups in four categories. You can mix and\n"
-"match applications from the various categories, so a ``Workstation''\n"
-"installation can still have applications from the ``Server'' category\n"
-"installed.\n"
-"\n"
-" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
-"more of the groups in the workstation category.\n"
-"\n"
-" * \"%s\": if you plan on using your machine for programming, select the\n"
-"appropriate groups from that category. The special \"LSB\" group will\n"
-"configure your system so that it complies as much as possible with the\n"
-"Linux Standard Base specifications.\n"
-"\n"
-" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
-"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
-"of the system. However, if you do not select the \"LSB\" group you will\n"
-"still have a system which is nearly 100%% LSB-compliant.\n"
-"\n"
-" * \"%s\": if your machine is intended to be a server, select which of the\n"
-"more common services you wish to install on your machine.\n"
-"\n"
-" * \"%s\": this is where you will choose your preferred graphical\n"
-"environment. At least one must be selected if you want to have a graphical\n"
-"interface available.\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group.\n"
-"\n"
-"You can check the \"%s\" box, which is useful if you're familiar with the\n"
-"packages being offered or if you want to have total control over what will\n"
-"be installed.\n"
-"\n"
-"If you start the installation in \"%s\" mode, you can deselect all groups\n"
-"and prevent the installation of any new packages. This is useful for\n"
-"repairing or updating an existing system.\n"
-"\n"
-"If you deselect all groups when performing a regular installation (as\n"
-"opposed to an upgrade), a dialog will pop up suggesting different options\n"
-"for a minimal installation:\n"
-"\n"
-" * \"%s\": install the minimum number of packages possible to have a\n"
-"working graphical desktop.\n"
-"\n"
-" * \"%s\": installs the base system plus basic utilities and their\n"
-"documentation. This installation is suitable for setting up a server.\n"
-"\n"
-" * \"%s\": will install the absolute minimum number of packages necessary\n"
-"to get a working Linux system. With this installation you will only have a\n"
-"command-line interface. The total size of this installation is about 65\n"
-"megabytes."
-msgstr ""
-"İndi sisteminizə qurmaq istədiyiniz proqramları müəyyən etmə vaxtıdır.\n"
-"Mandriva Linux daxilində minlərcə proqram mövcuddur və idarələrinin\n"
-"asan olması üçün onlar bənzər paketlər qruplarına ayrılıblar.\n"
-"\n"
-"Paketlər sisteminizin xüsusui istifadə sahəsinə görə qruplanıb.\n"
-"Mandriva Linuxda dörd əvvəldən müəyyən edilmiş qurulum növü mövcuddur.\n"
-"Yalnız siz bu qrupları yenə də qarışdıra bilərsiniz və istədiyiniz əlavə.\n"
-"proqramları seçə bilərsiniz. Misal üçün ''İş Stansiyası'' qurulumu\n"
-"``İnkişaf'' qurulumundakı proqramları daxil edə bilər.\n"
-"\n"
-" * \"%s\": əgər sisteminiz iş stansiyası olaraq istifadə ediləcəksə, bu\n"
-"qrupda yer alan bir ya da daha çox proqramı seçin.\n"
-"\n"
-" * \"%s\": əgər sisteminizi proqramlaşdırma və inkişaf üçün işlədəcəksəniz,\n"
-"bu qrupdakı proqramları seçə bilərsiniz.\n"
-"\n"
-" * \"%s\": əgər sisteminiz verici olacaqsa, sisteminizə hansı xidmətləri\n"
-"qurmaq istədiyinizi buradan seçin.\n"
-"\n"
-" * \"%s\": qrafiki istifadəçi mühidini burada seçəcəksiniz. Əgər "
-"sisteminizdə\n"
-"qrafiki mühit işlətmək istəyirsinizsə ən az birisi seçilməlidir.\n"
-"\n"
-"Siçanın oxu qrup adının üstünə gələndə o qrup haqqında qısa izahat\n"
-"göstəriləcək. Əgər sistemi qurarkən bu qruplardan heç birini seçməsəniz\n"
-"minimal qurulum üçün fərqli seçimləri təqdim edən bir pəncərə\n"
-"göstəriləcək:\n"
-"\n"
-" * \"%s\": minimal ədəddə paket qur, işləyən qrafiki ara üzə malik\n"
-"olma mümkündür.\n"
-"\n"
-" * \"%s\": sistem bazası və əsas tə'minatlar və sənədləri qurulacaq.\n"
-"Bu qurulum növü verici quraşdırmaq üçün uyğundur.\n"
-"\n"
-" * \"%s\": işləyən Linuks sistemi üçün lazım olan ən minimal paketlər\n"
-"qurulacaq. Bu qurulum ilə yalnız əmr sətirinə malik olacaqsınız.\n"
-"Qurulumun ümumi böyüklüyü təqribən 65 meqabayt olacaq.\n"
-"\n"
-"Təklif edilən paketləri tanıyırsınızsa ya da qurulan hər paket üstündə\n"
-"tam idarə sahibi olmaq istəyirsinizsə\"%s\" qutusunu işarələyə bilərsiniz\n"
-"\n"
-"Əgər qurulumu \"%s\" modunda başlatmışsınızsa, yeni paketlərin\n"
-"qurulmasının qabağını almaq üçün bütün qrupların seçimini silə\n"
-"bilərsiniz. Bu əsasən sistem tə'mir edilirkən ya da yenilənirkən\n"
-"sərfəlidir."
-
-#: help.pm:147 share/compssUsers.pl:24
-#, c-format
-msgid "Workstation"
-msgstr "İş Stansiyası"
-
-#: help.pm:147 share/compssUsers.pl:65 share/compssUsers.pl:167
-#: share/compssUsers.pl:169
-#, c-format
-msgid "Development"
-msgstr "İnkişaf"
-
-#: help.pm:147 share/compssUsers.pl:145
-#, c-format
-msgid "Graphical Environment"
-msgstr "Qrafiki Mühit"
-
-#: help.pm:147 install_steps_gtk.pm:235 install_steps_interactive.pm:623
-#, c-format
-msgid "Individual package selection"
-msgstr "Fərdi paket seçimi"
-
-#: help.pm:147 help.pm:589
-#, c-format
-msgid "Upgrade"
-msgstr "Yeniləmə"
-
-#: help.pm:147 install_steps_interactive.pm:581
-#, c-format
-msgid "With X"
-msgstr "X ilə"
-
-#: help.pm:147
-#, c-format
-msgid "With basic documentation"
-msgstr "Əsas sənədlərlə birlikdə"
-
-#: help.pm:147
-#, c-format
-msgid "Truly minimal install"
-msgstr "Həqiqətən minimal qurulum"
-
-#: help.pm:150
-#, fuzzy, c-format
-msgid ""
-"If you choose to install packages individually, the installer will present\n"
-"a tree containing all packages classified by groups and subgroups. While\n"
-"browsing the tree, you can select entire groups, subgroups, or individual\n"
-"packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description will appear on the\n"
-"right to let you know the purpose of that package.\n"
-"\n"
-"!! If a server package has been selected, either because you specifically\n"
-"chose the individual package or because it was part of a group of packages,\n"
-"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandriva Linux will automatically start any installed\n"
-"services at boot time. Even if they are safe and have no known issues at\n"
-"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandriva Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do "
-"or\n"
-"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
-"the listed services and they will be started automatically at boot time. !!\n"
-"\n"
-"The \"%s\" option is used to disable the warning dialog which appears\n"
-"whenever the installer automatically selects a package to resolve a\n"
-"dependency issue. Some packages depend on others and the installation of\n"
-"one particular package may require the installation of another package. The\n"
-"installer can determine which packages are required to satisfy a dependency\n"
-"to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-"package list created during a previous installation. This is useful if you\n"
-"have a number of machines that you wish to configure identically. Clicking\n"
-"on this icon will ask you to insert the floppy disk created at the end of\n"
-"another installation. See the second tip of the last step on how to create\n"
-"such a floppy."
-msgstr ""
-"Əgər qurulum proqramına paketləri ayrı ayrı seçmək istədiyinizi dedinizsə,\n"
-"o, qrup və alt qruplara ayrılmış paketləri ağac şəklində sizə göstərəcək.\n"
-"Bu ağacda gəzərkən, bütün qrupu, alt qrupu ya da paketləri ayrı ayrı seçə "
-"biləcəksiniz\n"
-"\n"
-"Hər paket seçişinizdə sağ tərəfdə bu paket ilə əlaqəli və onun nə işə\n"
-"yaradığını göstərən mə'lumat yer alacaq.\n"
-"\n"
-"!! Əgər paketin ya da paketin daxil oduğu alt qrupun seçilməsi ilə bir "
-"verici\n"
-"seçilsə, sizə bu vericini həqiqətən də qurmaq istədiyinizi soruşan və "
-"sizdən\n"
-"təsdiq istəyən pəncərə göstəriləcək. Əsas olaraq Mandriva Linux bütün "
-"qurulu\n"
-"olan xidmətləri açılışda fəal edir. Distribusiyanın çıxdığı vaxt onların "
-"bilinən heç bir\n"
-"xətası ya da təhlükəli yanı olmasa da, mümkündür ki, müəyyən vaxt sonra\n"
-"təhlükəsizlik nöqtələri aşkar edilə bilər. Əgər seçilən xidmətin nə etdiyini "
-"və nəyə\n"
-"yaradığını bilmirsinizsə, \"%s\" düyməsinə basın. \"%s\" düyməsini seçsəniz "
-"isə\n"
-"xidmət sisteminizə qurulacaq və sisteminizin açılışında fəal hala "
-"gətiriləcək.\n"
-"Qeyd: Xidmətlərin açılışda fəal olub olmamasını qurulum bitdikdən sonra da\n"
-"Mandriva Linux İdarə Mərkəzindən quraşdıra bilərsiniz!!\n"
-"\n"
-"\"%s\" seçimi, bir proqramı seçdiyiniz zaman qurulum proqramının o proqram "
-"ilə\n"
-"əlaqəli diqər paket ya da asıllılıqların avtomatik seçməsi üçündür.\n"
-"Bə'zi paketlər bir birindən aslıdır və birinin qurulması digərinin də "
-"qurulmasını\n"
-"məcbur qılır. Bu paketləri qurulum proqramı müvəffəqiyyətlə taparaq "
-"sisteminizə\n"
-"quracaq.\n"
-"\n"
-"Siyahının altındakı kiçik disket rəsmi isə daha əvvəlki qurulumda (əgər "
-"yaratmışsınızsa)\n"
-"yaradılan paket siyahısı faylını yükləmək üçündür. Bu, birdən çox kompüterə "
-"eyni\n"
-"paket ya da proqramları qurmaq istədiyiniz zaman çox əlverişlidir. Düyməyə\n"
-"basdıqdan sonra sizdən disketi daxil etməniz xahiş ediləcək.\n"
-"Belə bir disketi necə yaradılacağını bilmək istəyirsinizsə son qurulum "
-"addımının \n"
-"ikinci yardım abzasına baxa bilərsiniz."
-
-#: help.pm:181 help.pm:286 help.pm:314 help.pm:445 install_any.pm:944
-#: interactive.pm:161 modules/interactive.pm:71 standalone/drakbackup:2636
-#: standalone/drakfont:687 standalone/draksec:54 standalone/harddrake2:331
-#: ugtk2.pm:898 wizards.pm:156
-#, c-format
-msgid "No"
-msgstr "Xeyir"
+msgid "Ok"
+msgstr "Oldu"
-#: help.pm:181 help.pm:286 help.pm:445 install_any.pm:944 interactive.pm:161
-#: modules/interactive.pm:71 printer/printerdrake.pm:883
-#: printer/printerdrake.pm:898 standalone/drakbackup:2636
-#: standalone/drakfont:685 standalone/draksec:55 standalone/harddrake2:330
-#: ugtk2.pm:898 wizards.pm:156
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Bəli"
-#: help.pm:181
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Avtomatik asıllılıqlar"
-
-#: help.pm:184
-#, fuzzy, c-format
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to set up a new printer. The interface presented in our\n"
-"manual is similar to the one used during installation."
-msgstr ""
-"\"%s\": \"%s\" düyməsinə basmaq çapçı quraşdırma sehirbazını başladacaq."
-
-#: help.pm:187 help.pm:567 help.pm:856 install_steps_gtk.pm:595
-#: standalone/drakbackup:2460 standalone/drakbackup:2464
-#: standalone/drakbackup:2468 standalone/drakbackup:2472
-#: standalone/drakroam:227
-#, c-format
-msgid "Configure"
-msgstr "Qur"
-
-#: help.pm:190
-#, fuzzy, c-format
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
-"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which are not needed at boot\n"
-"time.\n"
-"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably do not want to start any services which you do not "
-"need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-"Bu dialoq, açılışda avtomatik olaraq başlamasını istədiyiniz xidmətləri \n"
-"seçmək üçündür.\n"
-"\n"
-"DrakX hazırkı qurulumda mövcud olan bütün xidmətləri siyahıda göstərəcək.\n"
-"Hər birini diqqətlə nəzərdən keçirin və açılış vaxtı ehtiyac hiss "
-"etmədiyiniz\n"
-"xidmətlərin qabağındakı seçimi silin.\n"
-"\n"
-" Siçan xidmətin üzərinə gələndə o xidmətin vəzifəsini başa salan mətn\n"
-"göstəriləcək. Yalnız, əgər xidmətin faydalı olub olmamasından əmin "
-"deyilsəniz\n"
-"ən yaxşısı onu olduğu kimi saxlamaq olacaq.\n"
-"\n"
-"!! Əgər kompüteriniz verici olaraq istifadə ediləcəksə, bu addıma diqqət\n"
-"ayırmalısınız: istəmədiyiniz xidmətləri başlanğıcda başlatmaq "
-"istəməyəcəksiniz.\n"
-"Diqqətinizdə saxlayın ki, bə'zi xidmətlər fəal isə, bu verici üstündə "
-"təhlükəli ola bilər.\n"
-"!!"
-
-#: help.pm:207
-#, fuzzy, c-format
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
-"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
-msgstr ""
-"GNU/Linuks vaxtı GMT (Greenwich Mean Time) ilə idarə edir və onu yerli\n"
-"vaxtı seçdiyiniz vaxt zolağına bağlı olaraq seçir. Əgər ana kartınızın "
-"saatı\n"
-"yerli saata quraşdırılıbsa, bunu, \"%s\"i seçərək qeyri-fəallaşdıra "
-"bilərsiniz,\n"
-"Bu, Linuksa sistem vaxtı ilə avadanlıq vaxtının eyni vaxt zolağında "
-"olduğunu\n"
-"bildirəcək. Bu, sistemdə Windows kimi digər əməliyyat sistemi mövcuddursa\n"
-"faydalıdır.\n"
-"\n"
-"\"%s\" seçimi isə, saatınızı internetdəki uzaq zaman vericisinə bağlanaraq\n"
-"düzəldəcək. Bu xüsusiyyətin işləməsi üçün, internet bağlantınız olmalıdır.\n"
-"Sizə ən yaxın olan vericini seçmək məsləhət edilir.\n"
-"Bu seçim əslində yerli şəbəkənizdəki başqa kompüterlərin də istifadə edə\n"
-"biləcəyi zaman vericisini qurur."
-
-#: help.pm:218 install_steps_interactive.pm:859
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Avadanlıq saatı GMT'yə görə quruludur"
-
-#: help.pm:218
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Avtomatik zaman sinxronlaşdırılması"
-
-#: help.pm:221
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-"Səs Kartı\n"
-"\n"
-" Qurulum proqramı sisteminizə bağlı olan səs kartını əsasən avtomatik "
-"olaraq\n"
-"aşkar edəcəkvə quraşdıracaq. Əgər səhv tapılsa həqiqətən sisteminizə bağlı "
-"olan\n"
-"səs kartını siyahıdan seçə bilərsiniz. \n"
-" Əgər kartınız üçün həm 3D dəstəyi olan həm də olmayan vericilər "
-"mövcudsa,\n"
-"sizdən ehtiyaclarınıza ən gözəl cavab verən vericini seçməniz xahiş ediləcək."
-
-#: help.pm:232
-#, fuzzy, c-format
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"X (X Pəncərə Sistemi) GNU/Linuks qrafiki ara üzünün qəlbidir.\n"
-"Mandriva Linuxla bərabər gələn qrafiki mühitlərin hamısı (KDE, \n"
-"GNOME, AfterStep, WindowMaker, vs.) buna bağlıdır.\n"
-"\n"
-"Optimal görünüşü almaq üçün sizə dəyişdiriləcək fərqli parametrlər\n"
-"təqdim ediləcək.\n"
-"\n"
-" Qurulum proqramı sisteminizə bağlı olan qrafika kartını əsasən avtomatik "
-"olaraq\n"
-"aşkar edəcək və quraşdıracaq. Əgər səhv tapılsa həqiqətən sisteminizə bağlı "
-"olan\n"
-"səs kartını siyahıdan seçə bilərsiniz.\n"
-" Əgər kartınız üçün həm 3D dəstəyi olan həm də olmayan vericilər "
-"mövcudsa,\n"
-"sizdən ehtiyaclarınıza ən gözəl cavab verən vericini seçməniz xahiş "
-"ediləcək.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Qurulum proqramı sisteminizə bağlı olan monitoru əsasən avtomatik olaraq\n"
-"aşkar edəcək və quraşdıracaq. Əgər səhv tapılsa həqiqətən sisteminizə bağlı "
-"olan\n"
-"monitoru siyahıdan seçə bilərsiniz.\n"
-"\n"
-"\n"
-"Həlledilirlik\n"
-"\n"
-" Burada avadanlığınız üçün mümkün olan həlledilirlik və rəng "
-"dərinliklərini\n"
-"seçə bilərsiniz. Ehtiyaclarınıza ən gözəl cavab verəni seçin. (Bunları "
-"qurulum\n"
-"tamamlandıqdan sonra da dəyişdirə biləcəksiniz). Seçilən qurğuların bir\n"
-"nümunəsi monitorda göstərilir.\n"
-"\n"
-"\n"
-"\n"
-"Sınaq\n"
-"\n"
-" Sistem, seçilən həlledilirlikdə qrafiki ekranı açmağa cəhd edəcək.\n"
-"Əgər sınaq sırasında ismarışı görüb \"%s\" düyməsinə bassanız, DrakX\n"
-"növbəti mərhələyə keçəcək. Əgər ismarışı görə bilmirsinizsə, bu avtomatik\n"
-"aşkar edilən quraşdırmanın bir hissəsi səhvdir və sınaq 12 saniyə sonra\n"
-"sonlanaraq sizi menyuya geri götürəcək.\n"
-"Düzgün qrafiki görünüş alana qədər qurğuları dəyişdirin.\n"
-"\n"
-"\n"
-"\n"
-"Seçimlər\n"
-"\n"
-" Burada, sisteminiz başlarkən avtomatik olaraq qrafiki ekrana keçməsini\n"
-"seçə bilərsiniz. Yalnız, əgər sisteminiz bir verici olacaqsa ya da ekran "
-"qurğularını\n"
-"müvəffəqiyyətlə sazlaya bilmədinizsə hər halda \"%s\" seçimini seçmək "
-"istəyəcəksiniz."
-
-#: help.pm:289
-#, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
-msgstr ""
-"Monitor\n"
-"\n"
-" Qurulum proqramı sisteminizə bağlı olan monitoru əsasən avtomatik olaraq\n"
-"aşkar edəcək. Əgər səhv tapılsa həqiqətən sisteminizə bağlı olan monitoru\n"
-"siyahıdan seçə bilərsiniz."
-
-#: help.pm:296
-#, fuzzy, c-format
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
-msgstr ""
-"Həlledilirlik\n"
-"\n"
-" Burada, avadanlığınız üçün mövcud olan həlledilirlik və rəng "
-"dərinliklərini\n"
-"seçə bilərsiniz. Ehtiyacınıza ən yaxşı cavab verəni seçin (qurulumdan sonra\n"
-"bunu dəyişdirə biləcəksiniz). Seçilən qurğunun bir nümunəsi\n"
-"monitorda göstərilir."
-
-#: help.pm:304
-#, fuzzy, c-format
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-"Əgər kartınız üçün həm 3D dəstəyi olan həm də olmayan vericilər mövcudsa,\n"
-"sizdən ehtiyaclarınıza ən gözəl cavab verən vericini seçməniz xahiş ediləcək."
-
-#: help.pm:309
-#, fuzzy, c-format
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"Seçimlər\n"
-"\n"
-" Burada, sisteminiz başlarkən avtomatik olaraq qrafiki ekrana keçməsini\n"
-"seçə bilərsiniz. Yalnız, əgər sisteminiz bir verici olacaqsa ya da ekran "
-"qurğularını\n"
-"müvəffəqiyyətlə sazlaya bilmədinizsə hər halda \"%s\" seçimini seçmək "
-"istəyəcəksiniz."
-
-#: help.pm:317
-#, fuzzy, c-format
-msgid ""
-"You now need to decide where you want to install the Mandriva Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandriva Linux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandriva Linux system, "
-"choose\n"
-"this option. Be careful, because you will not be able to undo this "
-"operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-"Bu nöqtədə Mandriva Linuxi sabit diskinizdə haraya quracağınıza\n"
-"qərar verəcəksiniz. Əgər diskiniz boş isə və ya bir başqa sistem\n"
-"bütün yeri doldurmuş isə, o zaman diskinizdə Mandriva Linux üçün\n"
-"yer açmalısınız. Bölmələndirmə əsasən diskinizdə Mandriva Linuxu\n"
-"qurmaqməntiqi sürücülər yaratmaqdan ibarətdir.\n"
-"\n"
-"Ümumiyyətlə bölmələndirmənin təsiri geri dönülməzdir və mə'lumat\n"
-"itirilməsinə səbəb ola bilər. Ona görə də əgər sisteminizdə başqa bir\n"
-"əməliyyat sistemi quruludursa və siz Linuksla yeni tanışırsınızsa bu iş\n"
-"çox gərgin və yorucudur. Ancaq DrakX sabit diski çox rahat bölmələndirməniz\n"
-"üçün çox sadə bir sehirbaz daxil edir. Başlamadan əvvəl xahiş edirik, "
-"buradakı\n"
-"mə'lumatları oxuyun, və bu iş üçün bir az vaxt ayırın.\n"
-"\n"
-"Sabit diskinizin qurğularına nəzarən birdən çox seçim mövcud ola bilər:\n"
-"\n"
-" * \"%s\": bu seçim boş sürücülərinizi avtomatik olaraq bölmələndirəcək\n"
-"Bu seçənəyi seçsəniz sizə heç bir sual verilməyəcək.\n"
-"\n"
-" * \"%s\": sehirbaz sabit diskinizdə bir ya da daha çox mövcud Linuks \n"
-"bölməsi aşkar edib. Onları istifadə etmək istəyirsinizsə bu seçənəyi "
-"işlədin.\n"
-"Daha sonra hər bölmə ilə əlaqələndirilmiş bağlama nöqtəsi seçəcəksiniz.\n"
-"Əvvəldən qalan bağlama nöqtələri əsas olaraq seçilidir və onları eləcə də\n"
-"saxlamaq gözəl fikirdir.\n"
-"\n"
-" * \"%s\": sabit diskinizdə Microsoft Windows quruludur və üstündəki bütün\n"
-" sahəni əhatə edir, bu vəziyyətdə siz Linuks üçün boş yer ayırmalısınız.\n"
-"Bunu etmək üçün Microsoft Windows bölməsini və mə'lumatlarını silə "
-"bilərsiniz.\n"
-"(baxın ``Bütün diski sil'' həlli) ya da Microsoft Windows FAT ya da NTFS "
-"bölmənizin\n"
-" böyüklüyünü dəyişdirə bilərsiniz. Ölçüləndirmə qaydalara riayət edilərsə "
-"heç bir mə'lumat\n"
-"itirilməsinə yol açmaz. Qaydalar isə əvvəlcədən Windows bölməniz üstündə "
-"'Scandisk' və\n"
-"'Defraq' əmrlərinin icra edilməsinir. Eyni zamanda mə'lumatlarınızın ehtiyat "
-"nüsxəsini almayı\n"
-"da qətiyyən unutmayın. Kompüteriniz üstündə həm Mandriva Linux həm də "
-"Microsoft\n"
-"Windows ƏS'lərini işlətmək istəyirsinizsə bu seçənəyi seçin. Unutmayın ki "
-"Microsoft\n"
-"Windows bölmənizin böyüklüyünü Windows altında da bəzi (PartitionMagic) "
-"proqramlar\n"
-"vasitəsi ilə dəyişdirə bilərsiniz.\n"
-"\n"
-" Bu seçənəyi seçmədən əvvəl nəzərə alın ki bu əməliyyatdan sonra Microsoft "
-"Windows\n"
-"bölməniz əvvəlkindən daha kiçik olacaq.\n"
-"\n"
-" * \"%s\": əgər sisteminizdəki bütün mövcud bölmələri silmək və yerinə\n"
-"Mandriva Linux sistemini qurmaq istəyirsinizsə bu seçənəyi seçin.\n"
-"Diqqətli olun, ona görə ki seçiminizi təsdiqlədikdən sonra geri ala "
-"bilməyəcəksiniz.\n"
-"\n"
-" !! Əgər bu seçənəyi seçsəniz, diskinizdəki bütün mə'lumat "
-"silinəcəkdir. !!\n"
-"\n"
-" * \"%s\": bu sabit disk üstündəki hər şeyi siləcək və sıfırdan təzə bir "
-"bölmələmə,\n"
-"həyata keçirəcəkdir. Diskinizdəki bütün mə'lumat silinəcəkdir.\n"
-"\n"
-" !! Əgər bu seçənəyi seçsəniz, diskinizdəki bütün mə'lumat "
-"silinəcəkdir. !!\n"
-"\n"
-" * \"%s\": diskinizi əllə bölmələmək istəyirsinizsə bu seçənəyi seçin. \n"
-"Diqqətli olun -- bu çox qüvvətli ancaq təhlükəli seçimdir. Ona görə də bu \n"
-"seçimi ancaq daha əvvəl buna oxşar bir şey etmişsinizsə və bu sahədə\n"
-"bilikləriniz mövcuddursa seçin. Yaxşısı budur ki bu əməliyyat sırasında\n"
-"yanınızda daha əvvəl bunu etmiş dostunuz da olsun. DiskDrake vasitəsinin\n"
-"istifadəsi haqqında mə'lumatı ``Starter Guide'' kitabçasının ``Managing \n"
-"Your Partitions '' qismində tapa bilərsiniz."
-
-#: help.pm:375 install_interactive.pm:96
-#, c-format
-msgid "Use free space"
-msgstr "Boş sahəni istifadə et"
-
-#: help.pm:375
-#, c-format
-msgid "Use existing partition"
-msgstr "Mövcud bölməni işlət"
-
-#: help.pm:375 install_interactive.pm:138
-#, c-format
-msgid "Use the free space on the Microsoft Windows® partition"
-msgstr "Windows bölməsindəki boş sahəni işlət"
-
-#: help.pm:375
-#, c-format
-msgid "Erase entire disk"
-msgstr "Bütün diski sil"
-
-#: help.pm:375
-#, c-format
-msgid "Remove Windows"
-msgstr "Windows'u Sil"
-
-#: help.pm:375 install_interactive.pm:233
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Xüsusi disk bölmələndirməsi"
-
-#: help.pm:378
-#, fuzzy, c-format
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
-"to remove the installation media (CD-ROM or floppy). The first thing you\n"
-"should see after your computer has finished doing its hardware tests is the\n"
-"boot-loader menu, giving you the choice of which operating system to start.\n"
-"\n"
-"The \"%s\" button shows two more buttons to:\n"
-"\n"
-" * \"%s\": enables you to create an installation floppy disk which will\n"
-"automatically perform a whole installation without the help of an operator,\n"
-"similar to the installation you've just configured.\n"
-"\n"
-" Note that two different options are available after clicking on that\n"
-"button:\n"
-"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
-"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing on a number of similar\n"
-"machines. See the Auto install section on our web site for more\n"
-"information.\n"
-"\n"
-" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
-"To use this selection with another installation, insert the floppy and\n"
-"start the installation. At the prompt, press the [F1] key, type >>linux\n"
-"defcfg=\"floppy\"<< and press the [Enter] key.\n"
-"\n"
-"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
-"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
-"/dev/fd0\"."
-msgstr ""
-"Təbrik edirik! Qurulum başa çattı və GNU/Linuks sisteminiz indi\n"
-"istifadəyə hazırdır. Sadəcə olaraq sisteminizi yenidən başlatmaq üçün\n"
-"\"%s\" düyməsinə basın. Kompüteriniz başlarkən avadanlıq yoxlamasından\n"
-"sonra görəcəyiniz açılış yükləyici menyusunda sizə başlatmaq\n"
-"istədiyiniz əməliyyat sistemlərinin siyahısı göstəriləcək.\n"
-"\n"
-"\"%s\" düyməsi seçimə bağlı olaraq aşağıdakı iki seçimi göstərir:\n"
-"\n"
-" * \"%s\": indi etdiyiniz quruluma bənzər və operatora (kompüterin\n"
-"yanında oturana) ehtiyaca qalmadan qurulumu etmək üçün avtomatik\n"
-"qurulum disketi yaratma imkanı verir.\n"
-"\n"
-" Düyməni basdıqdan sonra iki fərqli seçim görəcəksiniz:\n"
-"\n"
-" * \"%s\". Qismən avtomatikləşdirilmiş qurulum. Yalnız disk bölmələmə\n"
-"addımı interaktiv olacaq və sizin istəklərinizə qulaq asacaq.\n"
-"\n"
-" * \"%s\". Tamamilə avtomatikləşdirilmiş qurulum: sabit disk tamamilə\n"
-"yenidən yazılacaq, bütün mə'lumat yox olacaq.\n"
-"\n"
-" Bu xassə, əsasən birdən çox eyni sistemin qurulmasında çox əlverişlidir.\n"
-"Daha çox mə'lumat üçün saytımızın Auto install qisminə baxın.\n"
-"\n"
-" * \"%s\"(*): bu, qurulum sırasında seçilən paketlərin siyahısını disketə\n"
-"qeyd edər. Bu disketi başqa qurulum ilə işlətmək üçün, disketi daxil edin "
-"və\n"
-"quruluma başlayın. Promptda, [F1] düyməsinə basın və >>linux\n"
-"defcfg=\"floppy\" << yazın.\n"
-"\n"
-"(*) Bunun üçün FAT ilə şəkilləndirilmiş disketə ehtiyacınız olacaq. (GNU/"
-"Linuks\n"
-"altında bunu yaratmaq üçün \"mformat a:\" əmrini verin)"
-
-#: help.pm:410
-#, c-format
-msgid "Generate auto-install floppy"
-msgstr "Avtomatik qurulum disketi hazırla"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Replay"
-msgstr "Təkrarla"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Automated"
-msgstr "Avtomatlaşdırılmış"
-
-#: help.pm:410 install_steps_interactive.pm:1317
-#, c-format
-msgid "Save packages selection"
-msgstr "Paket seçkilərini qeyd et"
-
-#: help.pm:413
-#, fuzzy, c-format
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
-"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
-"reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"will not be able to recover it.\n"
-"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
-"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandriva Linux operating system installation.\n"
-"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-"Yeni yaradılan bütün bölmələr şəkilləndirilməlidir\n"
-"(şəkilləndirmək, fayl sistemini yaratmaq deməkdir - format).\n"
-"\n"
-"Bu arada var olan hazır bölmələri də üstündəkiləri silmək üçün yenidən\n"
-"şəkilləndirmək istəyə bilərsiniz.\n"
-"Bunu istəyirsinizsə xahiş edirik, bu bölmələri də seçin.\n"
-"\n"
-"Ağlınızda tutun ki var olan bütün bölmələri şəkilləndirmək\n"
-"məcburi deyil. Əməliyyat sistəmini əmələ gətirən bölmələri\n"
-"(yəni \"/\", \"usr\" və ya \"var\"ı yenidən şəkilləndirmək üçün\n"
-"seçə bilərsiniz. Mə'lumatlar olan \"home\"u isə toxunmadan\n"
-"saxlaya bilərsiniz).\n"
-"\n"
-"Bölmələri seçərkən diqqətli olun. Şəkilləndirdiyiniz bölmələrdəki\n"
-"mə'lumatlar itiriləcək və geri gəlməyəcək.\n"
-"\n"
-"Bölmələri şəkilləndirməyə hazır olanda \"%s\" düyməsini basın.\n"
-"\n"
-"Yeni Mandriva Linux sisteminizi qurmaq üçün başqa bölmə seçmək\n"
-"istəyirsinizsə \"%s\" düyməsinə basın.\n"
-"\n"
-"Üstündəki xəsərli blokların yoxlanmasını istədiyiniz bölmələri seçmək\n"
-"üçün \"%s\" düyməsinə basın."
-
-#: help.pm:432 install_steps_gtk.pm:392 interactive.pm:437
-#: interactive/newt.pm:318 printer/printerdrake.pm:3882
-#: standalone/drakTermServ:391 standalone/drakbackup:4065
-#: standalone/drakbackup:4101 standalone/drakbackup:4212
-#: standalone/drakbackup:4227 ugtk2.pm:488
-#, c-format
-msgid "Previous"
-msgstr "Əvvəlki"
-
-#: help.pm:435
-#, fuzzy, c-format
-msgid ""
-"By the time you install Mandriva Linux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-"Mandriva Linuxu qurduğunuz vaxtda çox güman ki bə'zi paketlər \n"
-"ilk çıxışlarından sonra yenilənmiş ola bilər. Bunlarla bir çox xəta "
-"düzəldilmiş\n"
-"ya da təhlükəsizlik qüvvətləndirilmiş ola bilər. Bu yeniləmələrdən istifadə\n"
-"etmək üçün indi siz İnternetdən endirmə əməliyyatına başlaya bilərsiniz.\n"
-"Əgər fəal internet bağlantınız varsa \"%s\", yoxsa, yenilənmiş paketləri\n"
-"daha sonra qurmaq üçün \"%s\" düyməsinə basın.\n"
-"\n"
-"\"%s\" seçilərsə, yeniləmələrin endirilə biləcəyi yerlərin siyahı "
-"göstəriləcək.\n"
-"Sizə ən yaxın olanı seçməlisiniz. Paket seçim ağacı göstəriləcək, bu bölümü\n"
-"gözdən keçirin və paketləri endirib qurmaq üçün \"%s\" düyməsinə basın.\n"
-"Ləğv etmək üçün isə \"%s\" düyməsindən istifadə edə bilərsiniz."
-
-#: help.pm:445 help.pm:589 install_steps_gtk.pm:391
-#: install_steps_interactive.pm:132
-#, c-format
-msgid "Install"
-msgstr "Qur"
-
-#: help.pm:448
-#, fuzzy, c-format
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
-"\n"
-"If you do not know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandriva Linux\n"
-"Control Center.\n"
-"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-"Bu nöqtədə, DrakX sizə sisteminiz üçün təhlükəsizlik səvissəyini seçmə\n"
-"imkanını təqdim edəcək. Qayda olaraq, əgər kompüter vacib mə'lumat daxil\n"
-"edir ya da internetə birbaşa açıq sistem olacaqsa təhlükəsizlik səviyyəsi\n"
-"yüksək seçilməlidir. Bunun gətirdiyi əlverişsiz şərait isə sistemin "
-"istifadəsinin\n"
-"daha çətin olmasıdır.\n"
-"\n"
-"Əgər nə seçəcəyinizi bilmirsinizsə, seçili qurğuları olduğu kimi saxlayın."
-
-#: help.pm:459
-#, c-format
-msgid "Security Administrator"
-msgstr "Təhlükəsizlik İdarəçisi"
-
-#: help.pm:462
-#, fuzzy, c-format
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandriva Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"%s\": this option deletes all partitions on the selected hard drive\n"
-"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
-"partitions in the free space of your hard drive\n"
-"\n"
-"\"%s\": gives access to additional features:\n"
-"\n"
-" * \"%s\": saves the partition table to a floppy. Useful for later\n"
-"partition-table recovery if necessary. It is strongly recommended that you\n"
-"perform this step.\n"
-"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
-"\n"
-" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it does not always\n"
-"work.\n"
-"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
-"\n"
-" * \"%s\": un-checking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
-"\n"
-" * \"%s\": use this option if you wish to use a wizard to partition your\n"
-"hard drive. This is recommended if you do not have a good understanding of\n"
-"partitioning.\n"
-"\n"
-" * \"%s\": use this option to cancel your changes.\n"
-"\n"
-" * \"%s\": allows additional actions on partitions (type, options, format)\n"
-"and gives more information about the hard drive.\n"
-"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"When defining the size of a partition, you can finely set the partition\n"
-"size by using the Arrow keys of your keyboard.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and the [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
-"\n"
-" * Ctrl-d to delete a partition\n"
-"\n"
-" * Ctrl-m to set the mount point\n"
-"\n"
-"To get information about the different file system types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Bu nöqtədə siz Mandriva Linux yüklənəcək bölmə(lər)i seçməlisiniz. Əgər\n"
-"bölmələr əvvəldən mövcuddursa (sistemdə əvvəllər qurulu olan GNU/Linuks \n"
-"bölmələri və ya başqa bölmələndirmə vasitələri ilə hazırladığınız "
-"bölmələr),\n"
-"onları istifadə edə bilərsiniz, əks halda onları müəyyən etməlisiniz.\n"
-"\n"
-"Bölmələri yaratmaq üçün əvvəlcə diski seçməlisiniz. Diski seçmək üçün \n"
-"birinci İDE sürücüsü üçün ``hda''nı, ikincisi üçün ``hdb''ni, birinci SCSİ \n"
-"sürücüsü üçün isə ``sda'' v.s. üstünə tıqlamalısınız.\n"
-"\n"
-"Seçdiyiniz sürücünü bölmələndirmək üçün aşağıdakı seçimləri etməyə "
-"qadirsiniz:\n"
-"\n"
-" * \"%s\": Bu seçim seçili sabit disk üstündəki bütün bölmələri silər\n"
-"\n"
-" * \"%s\": Bu seçim sizə avtomatik olaraq sabit diskinizin boş sahəsində\n"
-"ext3 və dəyiş-toqquş sahəsi yaratma imkanı verəcək\n"
-"\n"
-"\"%s\": Əlavə xüsusiyyətlərə yetişmə imkanı verir\n"
-"\n"
-" * \"%s\": Bölmə cədvəlini disketə qeyd edər. Bu disket daha sonra əmələ "
-"gələ\n"
-"biləcək disk bölmə cədvəli xətalarını bərpa etmək üçün işlədilir. Bu addımı "
-"həyata keçirməyi\n"
-"sizə şiddətlə məsləhət edirik.\n"
-"\n"
-" * \"%s\": Daha əvvəl disketə qeyd edilən bölmə cədvəlini bərpa etmək "
-"(yenidən\n"
-"yükləmək) üçün bu seçimi işlədin.\n"
-"\n"
-" * \"%s\": Əgər bölmə cədvəliniz pozulubsa, onu bu seçimlə düzəldə\n"
-"bilərsiniz. Diqqətli olun və unutmayın ki bu həmişə işləməyə bilər.\n"
-"\n"
-" * \"%s\": Bütün dəyişiklikləri silərək sabit diskin əvvəlki bölmə "
-"cədvəlini\n"
-"geri yükləyəcək.\n"
-"\n"
-" * \"%s\": Bu seçimin işarəsini silərsəniz, istifadəçilər CD-ROM'lar və "
-"disketlər\n"
-"kimi çıxardıla bilən mediyaları əl ilə bağlamaq (mount) məcburiyyətində "
-"qalacaq.\n"
-"\n"
-" * \"%s\": Əgər diskinizi bölmələmək üçün bir sehirbaza ehtiyac hiss "
-"edirsinizsə,\n"
-"bu seçimi seçin. Bu yol, bölmələmədən yaxşı başı çıxmayanlar üçündür.\n"
-"\n"
-" * \"%s\": Dəyişikliklərinizi rədd etmək üçün bu seçimi işlədin.\n"
-"\n"
-" * \"%s\": Sabit disk haqqında ətraflı mə'lumat verir və onun üstündə əlavə\n"
-"əməliyyatlar (növ, seçimlər, şəkilləndirmə) icra etmə icazəsi verir.\n"
-"\n"
-" * \"%s\": Sabit diskinizi bölmələyib bitirdiyiniz vaxt bu seçim "
-"dəyişiklikləri\n"
-"sabit diskinizə qeyd edəcək.\n"
-"\n"
-"Bölmənin böyüklüyünü müəyyən edərkən klaviaturadakı istiqamət düymələri\n"
-"ilə seçiminizi sazlaya bilərsiniz.\n"
-"\n"
-"Qeyd: bütün seçimlərə klaviatura ilə yetişə bilərsiniz. Bölmələr arasında "
-"[Tab]\n"
-"və [Yuxarı/Aşağı] düymələri ilə hərəkət edə bilərsiniz.\n"
-"\n"
-"Bir bölmə seçili ikən bu qısa yolları istifadə edə bilərsiniz:\n"
-"\n"
-" * Ctrl-c -> yeni bölmə yaratmaq üçün (əgər boş bölmə seçilidirsə)\n"
-"\n"
-" * Ctrl-d -> bölməni silmək üçün\n"
-"\n"
-" * Ctrl-m -> bağlama nöqtəsi seçmək üçün\n"
-"\n"
-"Fərqli fayl sistem növləri haqqında daha ətraflı mə'lumat üçün, xahiş "
-"edirik,\n"
-"``Reference Manual'' kitabının ext2FS bölümünü oxuyun.\n"
-"\n"
-"Əgər PPC kompüterdə qurulum aparırsınızsa, ən az 1 MBlıq balaca bir HFS \n"
-"``bootstrap'' bölməsini yaboot açılış yükləyicisi üçün seçmək "
-"istəyəcəksiniz.\n"
-"Əgər daha çox yeriniz varsa, məsələn 50 MB, onda bütün kernel və ramdisk \n"
-"açılış əkslərinizi təcili hallar üçün burada saxlaya bilərsiniz."
-
-#: help.pm:531
-#, c-format
-msgid "Removable media auto-mounting"
-msgstr "Sökülə bilən avadanlıqların avtomatik bağlanması"
-
-#: help.pm:531
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Normal modla mütəxəssis modu arasında keç"
-
-#: help.pm:534
-#, fuzzy, c-format
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandriva Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Sürücünüzdə bir və ya daha çox Microsoft bölməsi tapıldı.\n"
-"Xahiş edirik, Mandriva Linuxi qurmaq üçün onlardan hansını\n"
-"yenidən ölçüləndirmək istədiyinizi seçin.\n"
-"\n"
-"Hər bölmə bu cür sıralanıb; \"Linuks adı\",\"Windows adı\"\n"
-"\"Həcm\".\n"
-"\n"
-"\"Linuks adı\" bu cür qurulub: \"sabit disk növü\", \"sabit disk nömrəsi\",\n"
-"\"bölmə nömrəsi\" (məsələn, \"hda1\").\n"
-"\n"
-"\"Sabit disk növü\" diskiniz İDE sürücüsü isə \"hd\"dir, SCSİ sürücüsü isə\n"
-"\"sd\"dir.\n"
-"\n"
-"\"Sabit disk nömrəsi\" həmişə \"hd\" və ya \"sd\"dən sonrakı rəqəmdir. İDE \n"
-"sürücülər üçün:\n"
-"\n"
-"* \"a\" mə'nası \"birinci İDE idarəçisində ali (master) sürücü\",\n"
-"\n"
-"* \"b\" mə'nası \"birinci İDE idarəçisində qul (slave) sürücü\",\n"
-"\n"
-"* \"c\" mə'nası \"ikinci İDE idarəçisində ali (master) sürücü\",\n"
-"\n"
-"* \"d\" mə'nası \"ikinci İDE idarəçisində qul (slave) sürücü\".\n"
-"\n"
-"\n"
-"SCSİ sürücülərində, \"a\"nın mə'nası \"ən düşük SCSİ ID\",\n"
-"\"b\"nin mə'nası \"ikinci ən düşük SCSİ ID\"dir, vs...\n"
-"\n"
-"\"Windows adı\" sabit diskinizin Windows altındakı adıdır (birinci\n"
-"disk ya da bölmənin adı \"C:\"dir, vs...)."
-
-#: help.pm:565
-#, fuzzy, c-format
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country is not in "
-"the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-"\"%s\": hazırkı ölkə seçimini yoxlayın. Əgər bu ölkədə deyilsəniz \"%s\"\n"
-"düyməsinə basaraq başqasını seçin. Əgər ölkəniz göstərilən ilk siyahıda\n"
-"deyilsə, tam ölkə siyahısını görmək üçün \"%s\" düyməsinə basın."
-
-#: help.pm:570
-#, fuzzy, c-format
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandriva Linux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandriva Linux system. Your current "
-"partitioning\n"
-"scheme and user data will not be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandriva Linux version \"8.1\" is not recommended."
-msgstr ""
-"Bu addım, yalnız sisteminizdə daha əvvəldən qurulu olan GNU/Linuks bölməsi\n"
-"tapılanda fəal olur.\n"
-"\n"
-"DrakX indi mövcud Mandriva Linux sisteminizi yeniləmək mi, yoxsa yenidən\n"
-"qurmaq mı istədiyinizi bilməlidir.\n"
-"\n"
-" * \"%s\": Bu seçim köhnə sistemi tamamilə siləcək. Əgər sabit "
-"disklərinizin\n"
-"bölmələndirilməsini dəyişdirmək ya da fayl sistemini dəyişdirmək "
-"istəyirsinizsə\n"
-"bu seçimi seçin. Yalnız, bölmələndirmə sxeminizdən aslı olaraq bə'zi mövcud\n"
-"mə'lumatlarınızın üstündən yazılmasının qabağını ala bilərsiniz.\n"
-"\n"
-" * \"%s\": Hazırkı Mandriva Linux sisteminizdə qurulu olan paketləri "
-"yeniləmə\n"
-"imkanı verir. Qurulum hazırkı bölmələmə sxemi və istifadəçi mə'lumat və "
-"sənədlərinə\n"
-"dəyməyəcək və dəyişdirməyəcək. Digər qurulum addımlarının çoxu isə standart\n"
-"qurulumdakının eynisi olacaq. Bu seçimi \"8.1\" versiyasından əvvəlki "
-"Mandriva Linuxlarda\n"
-"tədbiq etmək uyğun görülmür."
-
-#: help.pm:592
-#, fuzzy, c-format
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
-"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard do not match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
-"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
-"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-"Bölümdə seçdiyiniz dilə bağlı olaraq, DrakX uyğun gələn klaviatura növü\n"
-"quraşdırmasını seçəcək. Yalnız, dilinizə tam uyğun olmayan klaviatura "
-"yiyəsi\n"
-"də ola bilərsiniz: misal üçün Azərbaycanda yaşayan Rus dilli şəxs isəniz\n"
-"klaviaturanızı Rus dilində istifadə etmək istəyəcəksiniz, ya da Rusiyada "
-"yaşayan\n"
-"Azərbaycanlı isəniz klaviaturanızı Rus dilində yox Azərbaycan dilində "
-"istifadə\n"
-"etmək istəyə bilərsiniz. İki vəziyyətdə də istədiyiniz klaviaturlarını "
-"siyahıdan seçə\n"
-"bilərsiniz.\n"
-"\n"
-"Dəstəklənən klaviaturaların tam siyahısını görmək üçün \"%s\" \n"
-"düyməsinə basın\n"
-"\n"
-"Əgər Latın əlifbası əsasında olmayan klaviatura düzülüşü seçsəniz, növbəti\n"
-"dialoq sizə Latın və Latın olmayan düzülüşlər arasında keçiş üçün\n"
-"qısa yol seçmə imkanı verəcək."
-
-#: help.pm:610
-#, fuzzy, c-format
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandriva Linux's use of UTF-8 "
-"will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-"Seçdiyiniz dil, sənədlər , qurulum və ümumi sistemə tə'sir edəcəkdir.\n"
-"İlk olaraq qaldığınız yerin coğrafi bölgəsini seçin, daha sonra\n"
-"istifadə etdiyiniz dili seçin.\n"
-"\"%s\" düyməsi əlavə dilləri seçmə imkanı verəcəkdir. Bu imkan\n"
-"fərqli bir dili də eyni zamanda istifadə etmə imkanı verəcək. Bu qurğunu\n"
-"\"%s\" ətraflı menyusundan həyata keçirə bilərsiniz.\n"
-"Qeyd: Əlavə dil seçməkdə bir dil ilə məhdud deyilsiniz. \"%s\" "
-"qutusundanistədiyiniz qədər dil seçə bilərsiniz. \n"
-"Bir dil seçimi bərabərində tərcümələr, yazı növləri və\n"
-"imla yoxlayıcıları kimi bə'zi üstünlükləri gətirəcəkdir.\n"
-"Ayrıca \"%s\" qutusundan sistemi UTF-8 (yunikod) kodlamasını işlətmək\n"
-"üçün zorlaya bilərsiniz.\n"
-"Qurduğunuz dillər arasında keçiş etmək üçün ali istifadəçi səlahiyyətləri\n"
-"ilə konsolda \"/usr/sbin/localedrake\" əmrini verə bilər ya da menyunuzdan\n"
-" \"localedrake\"'i seçərək dəyişdirə bilərsiniz. Bu, bütün sisteminya da\n"
-"yalnız bir istifadəçinin bütün dil qurğularını dəyişdirmə imkanı verir.\n"
-"Əgər bunları sıravi istifadəçi olaraq həyata keçirsəniz yalnız öz xüsusi\n"
-"dil qurğularınızı dəyişdirəcəksiniz."
-
-#: help.pm:648
-#, c-format
-msgid "Espanol"
-msgstr "İspanca"
-
-#: help.pm:651
-#, fuzzy, c-format
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
-"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-"Adətən DrakX siçanınızdakı düymə ədədini tapmaqda əziyyət çəkməyəcək. Əgər\n"
-"müvəffəqiyyətsiz olsa, siçanınızı iki düyməli qəbul edəcək və üçüncü düymə \n"
-"emulyasiyasını fəallaşdıracaq. İki düyməli siçanda üçüncü düyməyə "
-"``basmaq''\n"
-"üçün sağ və sol düyməyə bərabər basmalısınız. DrakX, siçanınızın PS/2 ya da "
-"USB bağlantısından hansını işlətdiyini özü tapacaq.\n"
-"\n"
-"Əgər fərqli bir siçan növü seçmək istəsəniz verilən siyahıdan seçməniz\n"
-"kifayətdir.\n"
-"\n"
-"Əgər əsas siçan xaricində başqa bir siçan seçmək istəsəniz bir sınaq ekranı\n"
-"göstəriləcək. Sİçanın qurğularının düz olduğundn əmin olmaq üçün\n"
-"düymələri və çarxı sınayın. Əgər siçan düzgün işləmirsə boşluq ya da\n"
-"[Return] düyməsinə basıb seçim siyahısına geri dönə bilərsiniz.\n"
-"\n"
-"Çərxli siçanlar adətən avtomatik aşkar edilə bilmir, bu səbəblə\n"
-"siçanınızı siyahıdan seçməniz lazım ola bilər. Siçanızın taxılı olduğu "
-"qapını\n"
-"və siçanınızı seçəndən sonra \"%s\" düyməsinə basın, ekranda bir siçan\n"
-"rəsmi göstəriləcək. Çərxin düzgün işlədiyini yoxlamaq üçün onu döndərin.\n"
-"Ekrandakı siçan çərxinin döndüyünü görəndən sonra siçanın düymələrini \n"
-"oxun ekrandakı hərəkətini yoxlayın."
-
-#: help.pm:682
-#, c-format
-msgid "with Wheel emulation"
-msgstr "Çərx emulyasiyalı"
-
-#: help.pm:682
-#, c-format
-msgid "Universal | Any PS/2 & USB mice"
-msgstr "Universal | Hər hansı bir PS/2 və USB siçan"
-
-#: help.pm:685
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Xahiş edirik, doğru qapını seçin. Məsələn, Windows'dakı COM1\n"
-"GNU/Linuks'da ttyS0'dır."
-
-#: help.pm:689
-#, fuzzy, c-format
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: do not make the password too long or too complicated because "
-"you\n"
-"must be able to remember it!\n"
-"\n"
-"The password will not be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you do not know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-"Bu, GNU/Linuks sisteminizin təhlükəsizliyi üçün ən əsas mərhələdir.\n"
-"\"Ali istifadəçi (root)\" şifərsini daxil edəcəksiniz. \"Ali istifadəçi\" "
-"sistemin\n"
-"idarəçisidir və yalnız o yeniləmələri, istifadəçiləri əlavə edib/silməyi\n"
-"sistemin bütün qurğularını dəyişdirə bilər. Qısaca, \"ali istifadəçi\" hər\n"
-"şeyi edə bilər! Buna görə də tapılması çətin olan bir şifrə seçməlisiniz.\n"
-"DrakX seçdiyiniz şifrənin asan olub olmadığını sizə bildirəcək. Görüdüyünüz\n"
-"kimi, şifrə müəyyən etməkdə məcbur deyilsiniz, yalnız bunu sizə şiddətlə\n"
-"məsləhət etmirik. GNU/Linuks da diqər əməliyyat sistemləri kimi "
-"istifadəçinin\n"
-"xətasından çox tə'sir ala bilər. \"Ali istifadəçi\" bütün həddləri keçərək\n"
-"bütün bölmələrdəki bütün mə'lumatları silə bilər. Ona görə də ali "
-"istifadəçi\n"
-"olma imkanını olduqca çətinləşdirməlisiniz.\n"
-"\n"
-"Şifrəniz ədəd və hərflərin qarışığı olmalıdır və 8 hərfdən qısa "
-"olmamalıdır.\n"
-"Şifrəni heçvaxt başqa bir yerə qeyd etməyin.\n"
-"\n"
-"Yalnız şifrəni çox uzun ya da çətin də seçməyin ona görə ki onu əzbərləmək\n"
-"məcburiyyətindəsiniz!\n"
-"\n"
-"Şifrənizi yazarkən ekranda göstərilməyəcək. Xəta riskini azaltmaq üçün\n"
-"şifrəni iki dəfə daxil edəcəksiniz. Burada diqqətli olun və eyni xətanı\n"
-"iki dəfə etməyin.\n"
-"\n"
-"Əgər bu kompüterə yetişmənin səlahiyyət vericisi tərəfindən idarə "
-"edilməsini\n"
-"istəyirsinizsə, \"%s\" düyməsinə basın.\n"
-"\n"
-"Əgər şəbəkəniz LDAP, NIS, ya da PDC Windows Domain authentication\n"
-"xidmətlərindən birisini işlədirsə, \"%s\" üçün uyğun gələnini seçin. Əgər\n"
-"hansını işlədəcəyinizi bilmirsinizsə, şəbəkə idarəçinizdən soruşun.\n"
-"\n"
-"Əgər şifrələri yadda saxlamaqda çətinlik çəkirsinizsə, internetə heç\n"
-"vaxt bağlanmayacaqsanızsa ya da kompüterini işlədən hamıya e'tibar\n"
-"edirsinizsə \"%s\" seçimini seçə bilərsiniz."
-
-#: help.pm:723
-#, c-format
-msgid "authentication"
-msgstr "səlahiyyətləndirmə"
-
-#: help.pm:726
-#, fuzzy, c-format
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can not determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" will not install any boot loader. Use this option only if "
-"you\n"
-"know what you're doing."
-msgstr ""
-"LILO və grub ikisi də GNU/Linuks açılış yükləyiciləridir. Normalda bu "
-"mərhələ\n"
-"tamamilə avtomatikdir. DrakX diskin kök sektorunu yoxlayacaq və orada "
-"tapacağı\n"
-"mə'lumatlara görə açağıdakı addımları tətbiq edəcək:\n"
-"\n"
-" * əgər Windows açılış sektoru aşkar edilərsə, DrakX onu grub/LILO açılış "
-"sektoru\n"
-"ilə dəyişdirəcək. Beləliklə, siz həm GNU/Linuksu həm də digər əməliyyat "
-"sisteminizi\n"
-"(Windows ya da MacOS) aça biləcəksiniz.\n"
-"\n"
-" * əgər grub ya da LILO açılış sektoru aşkar edilərsə, o, yenisiylə əvəz "
-"ediləcək.\n"
-"\n"
-"Əgər müəyyən edib qərara gələ bilməzsə, DrakX açılış yükləyicisini hara "
-"yazmaq\n"
-"istədiyinizi sizə soruşacaq."
-
-#: help.pm:743
-#, fuzzy, c-format
-msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you do not like your printing\n"
-"system you may change it by running PrinterDrake from the Mandriva Linux\n"
-"Control Center and clicking on the \"%s\" button."
-msgstr ""
-"İndi kompüteriniz üçün çap sistemini seçmə vaxtı gəldi. Digər ƏS'ləri sizə "
-"bir\n"
-"dənəsini təqdim edə bilərlər, yalnız Mandriva Linux ikisini təqdim edir.\n"
-"Hər çap sistemi xüsusi quraşdırma növləri üçün uyğundur.\n"
-"\n"
-" * \"%s\" -- bu seçim``çap et, növbəyə alma'' mə'nasına gəlir.\n"
-"Əgər kompüterinizə bağlı olan çapçı varsa, çap yığılmalarından qurtulmaq\n"
-"istəyirsinizsə və şəbəkə çapçılarınız yoxdursa, bunu seçin. (\"%s\"\n"
-"yalnız çox sadə şəbəkə hallarını idarə edə bilər və şəbəkələrlə işlədiləndə\n"
-"biraz yavaş qalır. Əgər bu GNU/Linuks ilə ilk tanışmanızdırsa, sizə \"pdq\"\n"
-"işlətməyi məsləhət edirik.\n"
-"\n"
-" * \"%s\" - `` Ümumi Unix Çap Sistemi'', isə həm öz kompüterinizə\n"
-"bağlı olan həm də bu dünyadakı istənən yerə qurulan çapçıdan istifadə\n"
-"etmək üçün ideal vasitədir və quraşdırılması çox asandır.\n"
-"Əsas quraşdırma \"pdq\" qədər asandır. Əgər bir \"lpd\" vericisini\n"
-"emulyasiya etmək istəyirsinizsə, \"cups-lpd \" demonunu başlatdığınıza\n"
-"əmin oun. .\"%s\" eyni zamanda çapçının quraşdırılması və idarəsi və çap\n"
-"üçün qrafiki ara üzlərə də sahibdir. \n"
-"Əgər indi birisini seçib sonra çap sistemini bəyənməzsəniz, onu Mandriva "
-"Linux\n"
-"İdarə Mərkəzindəki PrinterDrake bölməsindəki mütəxəssis düyməsi vasitəsiylə\n"
-"dəyişdirə bilərsiniz."
-
-#: help.pm:766
-#, c-format
-msgid "pdq"
-msgstr "pdq"
-
-#: help.pm:766 printer/cups.pm:117 printer/data.pm:129
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
-
-#: help.pm:766
-#, c-format
-msgid "Expert"
-msgstr "Usta"
-
-#: help.pm:769
-#, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"DrakX əvvəlcə kompüterinizdə mövcud olan bütün İDE adapterleri \n"
-"axtarmağa cəhd edəcək. Eyni zamanda sisteminizdəki PCİ SCSİ kartları\n"
-"da axtarılacaq. Əgər SCSİ kart tapılsa sürücüsü avtomatik qurulacaq\n"
-"\n"
-"Bəzən DrakX sabit disklərinizi müvəffəqiyyətlə aşkar etməyə bilər.\n"
-"Bu vəziyyətdə avadanlığınızı əllə müəyyən etməli olacaqsınız.\n"
-"\n"
-"Əgər PCİ SCSİ adapterini əllə müəyyən etsəniz DrakX sizdən onun qurğularını\n"
-"sazlamak istədiyinizi soruşacaq, sizə sisteminizdə SCSİ\n"
-"adapteri olub olmadığı soruşulacaq. İmkan verin ki, DrakX sərbəstcə özü\n"
-"xüsusiyyətləri tapsın. Çox vaxt DrakX bu addımdan müvəffəqiyyətlə\n"
-"və xətasız çıxacaq.\n"
-"Əgər DrakX avadanlığa avtomatik olaraq hansı parametrlərin yollanacağını\n"
-"tapmaq üçün seçimləri qurğulaya bilməzsə sürücünü əllə siz quraşdırmaq\n"
-"məcburiyyətində qalacaqsınız."
-
-#: help.pm:787
-#, fuzzy, c-format
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-"\"%s\": əgər sisteminizdə səs kartı tapılıbsa burada göstəriləcək.\n"
-"Əgər burada göstərilən səs kartının sisteminizdəkindən fərqli olduğu\n"
-"nəzərinizə çatsa, düyməyə basıb başqa bir sürücü seçə bilərsiniz."
-
-#: help.pm:789 help.pm:856 install_steps_interactive.pm:991
-#: install_steps_interactive.pm:1008
-#, c-format
-msgid "Sound card"
-msgstr "Səs kartı"
-
-#: help.pm:792
-#, fuzzy, c-format
-msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"is not in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it is not\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandriva Linux Control Center after the installation has finished to "
-"benefit\n"
-"from full in-line help.\n"
-"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandriva Linux Control Center.\n"
-"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-"İcmal olaraq, DrakX sisteminiz haqqında malik olduğu mə'lumatı göstərəcək.\n"
-"Qurulu avadanlığınıza bağlı olaraq, aşağıdakı girişlərin hamısını ya da bir "
-"neçəsi\n"
-"icmalda yer ala bilər. Hər giriş, quraşdırılan üzvdən və hazırkı qurğusunun "
-"qısa\n"
-"izahatından ibarətdir.\n"
-"Qurğunu dəyişdirmək üçün uyğun olan \"%s\" düyməsinə basın.\n"
-"\n"
-" * \"%s\": hazırkı klaviatura düzülüşünü göstərir. Lazımdırsa, bunu "
-"dəyişdirin.\n"
-"\n"
-" * \"%s\": hazırkı ölkə seçimini göstərir. Əgər bu ölkədə deyilsəniz,\"%s\"\n"
-"düyməsinə basaraq başqasını seçin. Ölkəniz siyahıda yer almırsa ölkələrin\n"
-"tam siyahısını görmək üçün \"%s\" düyməsinə basın.\n"
-"\n"
-" * \"%s\": əsasən, DrakX vaxt zolağınızı yaşadığınız ölkəyə görə müəyyən\n"
-"edir. Yalnız seçim düzgün deyilsə, \"%s\" düyməsinə basaraq onu dəyişdirə\n"
-"bilərsiniz.\n"
-"\n"
-" * \"%s\": hazırkı siçan qurğularını yoxlayın və lazımdırsa düyməyə basın.\n"
-"\n"
-" * \"%s\": \"%s\" düyməsinə basaraq çapçı quraşdırma sehirbazını işə sala\n"
-"bilərsiniz. Ətraflı mə'lumat üçün ''Başlanğıc Bələdçisi'' kitabçasının "
-"uyğun\n"
-"bölümünə baxın.\n"
-"\n"
-" * \"%s\": əgər sisteminizdə səs kartı tapılıbsa, burada göstəriləcək.\n"
-"Əgər buradakı səs kartının sisteminizdə olandan fərqli olduğu nəzərinizə\n"
-"çatarsa, düyməyə basaraq başqa sürücü seçə bilərsiniz.\n"
-"\n"
-" * \"%s\": əsasən, DrakX qrafiki ara üzünüzü \"800x600\" ya da \"1024x768\"\n"
-"həlledirliyində quraşdırır. Bu sizə uyğun deyilsə, \"%s\" düyməsinin köməyi "
-"ilə\n"
-"qrafiki ara üzünüzü yenidən quraşdıra bilərsiniz.\n"
-"\n"
-" * \"%s\": əgər sisteminizdə televiziya kartı tapılıbsa, burada "
-"göstəriləcək.\n"
-"Əgər televiziya kartınız var olub aşkar edilməyibsə, \"%s\" düyməsinə\n"
-"basaraq onu əllə quraşdırmağı sınayın.\n"
-"\n"
-" * \"%s\": əgər sisteminizdə ISDN kartı aşkar edilibsə, burada "
-"göstəriləcək.\n"
-"Kart ilə əlaqəli parametrləri dəyişdirmək üçün \"%s\" düyməsinə basa "
-"bilərsiniz.\n"
-"\n"
-" * \"%s\": əgər İnternet ya da şəbəkənizi indi quraşdırmaq istəyirsinizsə.\n"
-"\n"
-" * \"%s\": bu, əvvəlki addımda seçilən təhlükəsizlik səviyyəsini dəyişdirmə "
-"imkanı\n"
-"verir.\n"
-"\n"
-" * \"%s\": əgər İnternetə bağlanmağı fikirləşirsinizsə, sisteminizi qorumaq "
-"üçün\n"
-"atəş divarı quraşdırmaq yaxşı fikirdir. Ətraflı mə'lumat üçün ''Başlanğıc "
-"Bələdçisi''\n"
-"kitabçasının uyğun bölümünə baxın.\n"
-"\n"
-" * \"%s\": əgər açılış yükləyicisi qurğularınızı dəyişdirmək istəyirsinizsə, "
-"bu düyməyə\n"
-"basın. Bu, əsasən mütəxəssis istifadəçilər üçündür.\n"
-"\n"
-" * \"%s\": burada, sistemdə hansı xidmətlərin işləyəcəyini sazlaya "
-"bilərsiniz.\n"
-"Əgər sisteminizi verici olaraq işlətəcəksəniz, bu qurğuları gözdən keçirin."
-
-#: help.pm:856 install_steps_interactive.pm:855
-#: install_steps_interactive.pm:950 standalone/drakclock:100
-#: standalone/finish-install:56 standalone/finish-install:57
-#, c-format
-msgid "Timezone"
-msgstr "Vaxt Zolağı"
-
-#: help.pm:856 install_steps_interactive.pm:1024
-#, c-format
-msgid "TV card"
-msgstr "TV kartı"
-
-#: help.pm:856
-#, c-format
-msgid "ISDN card"
-msgstr "ISDN kartı"
-
-#: help.pm:856
-#, c-format
-msgid "Graphical Interface"
-msgstr "Qrafiki Ara Üz"
-
-#: help.pm:856 install_any.pm:1733 install_steps_interactive.pm:1042
-#: standalone/drakbackup:2051
-#, c-format
-msgid "Network"
-msgstr "Şəbəkə"
-
-#: help.pm:856 install_steps_interactive.pm:1054
-#, c-format
-msgid "Proxies"
-msgstr "Vəkil vericiləri"
-
-#: help.pm:856 install_steps_interactive.pm:1065
-#, c-format
-msgid "Security Level"
-msgstr "Təhlükəsizlik Səviyyəsi"
-
-#: help.pm:856 install_steps_interactive.pm:1079 network/drakfirewall.pm:189
-#, c-format
-msgid "Firewall"
-msgstr "Atəş Divarı"
-
-#: help.pm:856 install_steps_interactive.pm:1095
-#, c-format
-msgid "Bootloader"
-msgstr "Açılış yükləyicisi"
-
-#: help.pm:856 install_steps_interactive.pm:1108 services.pm:114
-#: services.pm:157 services.pm:193
-#, c-format
-msgid "Services"
-msgstr "Xidmətlər"
-
-#: help.pm:859
-#, fuzzy, c-format
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Yeni Mandriva Linux'izi qurmaq üçün silmək istədiyiniz sürücünü seçin.\n"
-"Diqqətli olun, sürücüdəki bütün mə'lumatlar silinəcək\n"
-"və geri gəlməyəcək!"
-
-#: help.pm:864
-#, fuzzy, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-"Sürücüdəki bütün mə'lumatları və bölmələri silmək üçün\n"
-"\"%s\" düyməsinə basın. Diqqətli olun,\"%s\" düyməsinə basdıqdan sonra\n"
-"Windows mə'lumatları də daxil olmaq üzərə bütün bölmə mə'lumatı geri\n"
-"dönməyəcək şəkildə silinəcək.\n"
-"\n"
-"Bölmədəki mə'lumatları qorumaq üçün və əməliyyatı ləğv etmək üçün \"%s\" "
-"düyməsinə basın."
-
-#: help.pm:870
-#, c-format
-msgid "Next ->"
-msgstr "Sonrakı ->"
-
-#: help.pm:870
-#, c-format
-msgid "<- Previous"
-msgstr "<- Əvvəlki"
-
-#: install2.pm:115
-#, c-format
-msgid ""
-"Can not access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"Çəyirdəyinizə uyğun gələn çəyirdək modullarına yetişilə bilmədi (%s faylı "
-"əksikdir), bu çox vaxt açılış disketinizin Qurulum mediyası ilə sinxronluq "
-"içində olmadığı mə'nasına gəlir (xahiş edirik, yeni disket yaradın)."
-
-#: install2.pm:167
-#, c-format
-msgid "You must also format %s"
-msgstr "Eyni zamanda %s da şəkilləndirilməlidir"
-
-#: install_any.pm:406
-#, fuzzy, c-format
-msgid "Do you have further supplementary media?"
-msgstr "Başqası var?"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:409
-#, c-format
-msgid ""
-"The following media have been found and will be used during install: %s.\n"
-"\n"
-"\n"
-"Do you have a supplementary installation medium to configure?"
-msgstr ""
-
-#: install_any.pm:422 printer/printerdrake.pm:3211
-#: printer/printerdrake.pm:3218 standalone/scannerdrake:182
-#: standalone/scannerdrake:190 standalone/scannerdrake:241
-#: standalone/scannerdrake:248
-#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: install_any.pm:422
-#, fuzzy, c-format
-msgid "Network (HTTP)"
-msgstr "Şəbəkə %s"
-
-#: install_any.pm:422
-#, fuzzy, c-format
-msgid "Network (FTP)"
-msgstr "Şəbəkə %s"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (NFS)"
-msgstr ""
-
-#: install_any.pm:452
-#, c-format
-msgid "Insert the CD 1 again"
-msgstr ""
-
-#: install_any.pm:478 network/netconnect.pm:866 standalone/drakbackup:114
-#, c-format
-msgid "No device found"
-msgstr "Heç bir avadanlıq tapıla bilmədi"
-
-#: install_any.pm:483
-#, c-format
-msgid "Insert the CD"
-msgstr ""
-
-#: install_any.pm:488
-#, fuzzy, c-format
-msgid "Unable to mount CD-ROM"
-msgstr "Fork edilə bilmir: %s"
-
-#: install_any.pm:521 install_any.pm:542
-#, c-format
-msgid "URL of the mirror?"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "NFS setup"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "Please enter the hostname and directory of your NFS media"
-msgstr ""
-
-#: install_any.pm:527
-#, c-format
-msgid "Hostname of the NFS mount ?"
-msgstr ""
-
-#: install_any.pm:527 standalone/draknfs:288
-#, c-format
-msgid "Directory"
-msgstr "Qovluq"
-
-#: install_any.pm:580
-#, fuzzy, c-format
-msgid ""
-"Can't find a package list file on this mirror. Make sure the location is "
-"correct."
-msgstr "%s, %s üstündə tapıla bilmir"
-
-#: install_any.pm:657
-#, c-format
-msgid "Removing packages prior to upgrade..."
-msgstr ""
-
-#: install_any.pm:699
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Qurulu olan paketlər yoxlanır..."
-
-#: install_any.pm:703
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Güncəllənəcək paketlar tapılır"
-
-#: install_any.pm:781
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done."
-msgstr ""
-"CD-ROM'u dəyişdirin!\n"
-"Xahiş edirik, \"%s\" adlı CD-ROM'u sürücünüzə yerləşdirin və Oldu düyməsinə "
-"basın."
-
-#: install_any.pm:793
-#, fuzzy, c-format
-msgid "Copying in progress"
-msgstr "Təsbit etmə fəaliyyətdədir"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:935
-#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They do not have any known security\n"
-"issues, but some new ones could be found. In that case, you must make sure\n"
-"to upgrade as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"Siz aşağıdakı vericiləri seçdiniz: %s\n"
-"\n"
-"\n"
-"Bu vericilər əsas olaraq fəal olur. Onların bilinən heç bir təhlükəsizlik\n"
-"problemləri yoxdur, ancaq bə'zi yeni xətalar tapıla bilər. Belə olsa, "
-"mümükün olan ən yaxın zamanda onları yeniləməlisiniz.\n"
-"\n"
-"\n"
-"Bu vericiləri həqiqətən də qurmaq istəyirsiniz?\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:958
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-"Sisteminizin yenilənməsi üçün bu paketlər silinəcək: %s\n"
-"\n"
-"\n"
-"Bu paketləri həqiqətən də silmək istəyirsiniz?\n"
-
-#: install_any.pm:1394 partition_table.pm:597
-#, c-format
-msgid "Error reading file %s"
-msgstr "%s faylı oxunurkan xəta oldu"
-
-#: install_any.pm:1628
-#, fuzzy, c-format
-msgid "The following disk(s) were renamed:"
-msgstr "Aşağıdakı paketlər qurulmalıdır:\n"
-
-#: install_any.pm:1630
-#, c-format
-msgid "%s (previously named as %s)"
-msgstr ""
-
-#: install_any.pm:1670
-#, 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 ""
-"Bir xəta oldu. Yeni fayl sisteminin yaradılacağı hökmlü bir sürücü "
-"tapılmadı. Bu problemin qaynağı üçün avadanlığınızı yoxlayın"
-
-#: install_any.pm:1714
-#, c-format
-msgid "HTTP"
-msgstr ""
-
-#: install_any.pm:1714
-#, c-format
-msgid "FTP"
-msgstr "FTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "NFS"
-msgstr "NFS"
-
-#: install_any.pm:1737
-#, fuzzy, c-format
-msgid "Please choose a media"
-msgstr "Xahiş edirik seçin"
-
-#: install_any.pm:1753
-#, fuzzy, c-format
-msgid "File already exists. Overwrite it?"
-msgstr "Fayl onsuz da mövcuddur. Üstünə yazım?"
-
-#: install_any.pm:1757
-#, c-format
-msgid "Permission denied"
-msgstr "Səlahiyyət yoxdur"
-
-#: install_any.pm:1806
-#, c-format
-msgid "Bad NFS name"
-msgstr ""
-
-#: install_any.pm:1827
-#, fuzzy, c-format
-msgid "Bad media %s"
-msgstr "%s medyası əlavə edildi"
-
-#: install_any.pm:1877
-#, c-format
-msgid "Can not make screenshots before partitioning"
-msgstr "Bölmələmədən əvvəl görüntü alına bilməz"
-
-#: install_any.pm:1884
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Ekran görüntüləri qurulumdan sonra %s mövqeyində olacaqdır"
-
-#: install_gtk.pm:136
-#, c-format
-msgid "System installation"
-msgstr "Sistem qurulumu"
-
-#: install_gtk.pm:139
-#, c-format
-msgid "System configuration"
-msgstr "Sistem quraşdırılması"
-
-#: install_interactive.pm:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Sisteminizdaki bə'zi avadanlıqlar işləməsi üçün düzgün sürücülərə ehtiyac "
-"duyar.\n"
-"Bunun haqqında %s də/a lazımi malumatları tapa bilərsiniz"
-
-#: install_interactive.pm:63
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Bir kök bölməsi yaratmalısınız.\n"
-"Bunun üçün istər mövcud bir disk bölümü üzərinə tıqlayın, \n"
-"ya da yeni birini başdan yaradın. Sonra \"Bağlama \n"
-"Nöqtəsi\"gedişatını seçin va buranı '/' olaraq dəyişdirin."
-
-#: install_interactive.pm:68
-#, c-format
-msgid ""
-"You do not have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Dəyiş-toqquş sahəniz yoxdur\n"
-"Davam edilsin?"
-
-#: install_interactive.pm:71 install_steps.pm:215
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "/boot/efi ünvanına bağlanmış FAT bölməniz olmalıdır"
-
-#: install_interactive.pm:98
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Yeni bölmələr ayırmaq üçün kifayət qədər boş yer yoxdur"
-
-#: install_interactive.pm:106
-#, c-format
-msgid "Use existing partitions"
-msgstr "Mövcud bölmələri işlət"
-
-#: install_interactive.pm:108
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "İstifadə ediləcək mövcud bölmə yoxdur"
-
-#: install_interactive.pm:115
-#, c-format
-msgid "Use the Microsoft Windows® partition for loopback"
-msgstr "Loopback üçün Microsoft Windows® bölməsini işlət"
-
-#: install_interactive.pm:118
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Linux4Win-i qurmaq üçün hansı disk bölməsini istifadə edəcəksiniz?"
-
-#: install_interactive.pm:120
-#, c-format
-msgid "Choose the sizes"
-msgstr "Böyüklükləri seçin"
-
-#: install_interactive.pm:121
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Kök bölməsi böyüklüyü (Mb): "
-
-#: install_interactive.pm:122
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Dəyiş-toqquş sahəsi böyüklüyü (Mb): "
-
-#: install_interactive.pm:131
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr "Loopback üçün FAT bölməsi yoxdur (ya da lazımi yer yoxdur)"
-
-#: install_interactive.pm:140
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Hansı bölmə ölçüləndirilsin?"
-
-#: install_interactive.pm:154
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occurred: %s"
-msgstr ""
-"FAT ölçüləndiricimiz sizin bölməniziri işlədə bilmir,\n"
-"bu xəta oldu: %s"
-
-#: install_interactive.pm:157
-#, c-format
-msgid "Computing the size of the Microsoft Windows® partition"
-msgstr "Microsoft Windows® bölməsin böyüklüyü hesablanır"
-
-#: install_interactive.pm:164
-#, c-format
-msgid ""
-"Your Microsoft Windows® partition is too fragmented. Please reboot your "
-"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
-"the Mandriva Linux installation."
-msgstr ""
-"Microsoft Windows® bölümünüz çox dağınıqdır. Daxiş edirik, əvvəlcə "
-"kompüterinizi Microsoft Windows® ilə açın, ''defrag'' vasitəsini işlədin, "
-"sonra Mandriva Linux qurulumunu yenidən başladın."
-
-#: install_interactive.pm:167
-#, 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 ""
-"XƏBƏRDARLIQ!\n"
-"\n"
-" DrakX indi Windows disk bölmənizin böyüklüyünü dəyişdirəcək.\n"
-"\n"
-"\n"
-"Diqqətli olun, bu təhlükəli ola bilər. Hələ də etmədinizsə qurulumdan çıxın "
-"və Windows altında scandisk (lazım gələrsə defrag da) proqramını icra edin. "
-"Eyni zamanda mə'lumatlarınızın da ehtiyat nüsxəsini alın. Ardından quruluma "
-"davam edin.\n"
-"\n"
-"\n"
-"Hazır olanda, %s düyməsinə basın."
-
-#: install_interactive.pm:179
-#, c-format
-msgid "Which size do you want to keep for Microsoft Windows® on"
-msgstr "Microsoft Windows® üçün hansı böyüklüyü saxlamaq istəyirsiniz"
-
-#: install_interactive.pm:180
-#, c-format
-msgid "partition %s"
-msgstr "%s bölməsi"
-
-#: install_interactive.pm:189
-#, c-format
-msgid "Resizing Microsoft Windows® partition"
-msgstr "Microsoft Windows® bölməsi ölçüləndirilir"
-
-#: install_interactive.pm:194
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT ölçüləndirilməsi bacarılmadı: %s"
-
-#: install_interactive.pm:209
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr "Ölçüləndiriləcək FAT bölməsi mövcud deyil (ya da lazımi yer yoxdur)"
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Remove Microsoft Windows®"
-msgstr "Microsoft Windows®'u Sil"
-
-#: install_interactive.pm:214
-#, fuzzy, c-format
-msgid "Erase and use entire disk"
-msgstr "Bütün diski sil"
-
-#: install_interactive.pm:216
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-"Sizin birdən çox diskiniz var, linux qurmaq üçün hansını istifadə "
-"edəcəksiniz?"
-
-#: install_interactive.pm:222
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "%s sürüsündəki mövcud bütün bölmələr və onlardakı mə'lumatitiriləcək"
-
-#: install_interactive.pm:237
-#, c-format
-msgid "Use fdisk"
-msgstr "Fdisk istifadə et"
-
-#: install_interactive.pm:240
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, do not forget to save using `w'"
-msgstr ""
-"İndi %s sabit diskinizi bölmələndirə bilərsiniz\n"
-"İşinizi bitirdiyinizdə `w' ilə qeyd etməyi unutmayın"
-
-#: install_interactive.pm:276
-#, c-format
-msgid "I can not find any room for installing"
-msgstr "Artıq bölmə əlavə edilə bilməz"
-
-#: install_interactive.pm:280
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX bölmələndirmə sehirbazı bu çıxış yollarını tapdı:"
-
-#: install_interactive.pm:288
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Bölmələndirmə bacarılmadı: %s"
-
-#: install_interactive.pm:295
-#, c-format
-msgid "Bringing up the network"
-msgstr "Şəbəkə fəallaşdırılır"
-
-#: install_interactive.pm:300
-#, c-format
-msgid "Bringing down the network"
-msgstr "Şəbəkə dayandırılır"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:10
-#, fuzzy, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandriva "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandriva Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. This document is a license agreement "
-"between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you "
-"explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this "
-"License. \n"
-"If you disagree with any portion of the License, you are not allowed to "
-"install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner "
-"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate "
-"your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all "
-"copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Limited Warranty\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
-"be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without "
-"limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties "
-"resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or "
-"inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or "
-"occurrence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
-"COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
-"no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever "
-"(including without \n"
-"limitation damages for loss of business, interruption of business, financial "
-"loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential "
-"loss) arising out \n"
-"of the possession and use of software components or arising out of "
-"downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some "
-"countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong "
-"cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. The GPL License and Related Licenses\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. "
-"Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the "
-"documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. Intellectual Property Rights\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
-"as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
-"Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Governing Laws \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-msgstr ""
-"Giriş\n"
-"\n"
-"The operating system and the different components available in the Mandriva "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandriva Linux distribution.\n"
-"\n"
-"\n"
-"1. Lisenziya Müqaviləsi\n"
-"\n"
-"Please read this document carefully. This document is a license agreement "
-"between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you "
-"explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this "
-"License. \n"
-"If you disagree with any portion of the License, you are not allowed to "
-"install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner "
-"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate "
-"your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all "
-"copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Hüdudlu Zəmanət\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
-"be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without "
-"limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties "
-"resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or "
-"inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or "
-"occurence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
-"COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
-"no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever "
-"(including without \n"
-"limitation damages for loss of business, interruption of business, financial "
-"loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential "
-"loss) arising out \n"
-"of the possession and use of software components or arising out of "
-"downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some "
-"countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong "
-"cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. GPL və Əlaqədar Lisenziyalar\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. "
-"Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the "
-"documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. İntelektual Sahiblik Hüquqları\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
-"as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
-"Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Hökümət Qanunları \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-
-#: install_messages.pm:90
-#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-"Diqqət: Sərbəst Tə'minat daima patentsiz ola bilməz və daxil edilən bə'zi\n"
-"sərbəst tə'minat ölkənizdə patentlər tərəfindən qoruna bilər. Misal üçün,\n"
-"daxil edilən MP3 dekoderinin irəli istifadəsi üçün lisenziya lazım ola "
-"bilər.\n"
-"Əgər patentlərin sizə ait olub olmadığını bilmirsinizsə yerli qanunlarınızı\n"
-"gözdən keçirin."
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:98
-#, c-format
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a şəbəkə. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:131
-#, fuzzy, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press Enter to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandriva "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandriva Linux User's Guide."
-msgstr ""
-"Təbrik edirik, qurulum başa çatdı.\n"
-"Cdrom və disketi çıxartdıqtan sonra Enter'ə basaraq kompüterinizi\n"
-"yenidən başladın.\n"
-"\n"
-"\n"
-"Mandriva Linux'in bu buraxılışındakı yamaqlar haqqında \n"
-"mə'lumat almaq üçün bu ünvana baxın: \n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Sisteminizin qurğuları haqqında daha geniş mə'lumatı Rəsmi\n"
-"Mandriva Linux İstifadəçi Kitabcığının qurulum sonrası bölməsində\n"
-"tapa bilərsiniz."
-
-#: install_steps.pm:250
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "%s bağlama nöqtəsini ikiləşdir"
-
-#: install_steps.pm:482
-#, c-format
-msgid ""
-"Some important packages did not get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
-"\"\n"
-msgstr ""
-"Bə'zi paketlər doğru olaraq qurulumu bitirmədi.\n"
-"Cdrom sürücünüz ya da cdromunuz düzgün işləmir.\n"
-"Əvvəldən Linuks qurulu bir sistemdə \"rpm -qpl media/main/*.rpm\"\n"
-"əmrini istifadə edərək Cd-Rom'u yoxlayın.\n"
-
-#: install_steps_auto_install.pm:68 install_steps_stdio.pm:27
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Başlanğıc addımı `%s'\n"
-
-#: install_steps_gtk.pm:181
-#, c-format
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandriva Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Sizin sisteminizin qaynaqları çatışmır. Qurulum ərzində problem yaşaya "
-"bilərsiniz\n"
-"Bu baş verərsə mətn aracılığı ilə qurulumu sınamalısınız. Bunun üçün "
-"dəCDROMdan başlatdığınız zaman,\n"
-" 'F1'ə basın və 'text' yazaraq enter'ə basın."
-
-#: install_steps_gtk.pm:211 install_steps_interactive.pm:605
-#, c-format
-msgid "Package Group Selection"
-msgstr "Paket Qruplarının Seçimi"
-
-#: install_steps_gtk.pm:254 install_steps_interactive.pm:548
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Ümumi böyüklük: %d / %d Mb"
-
-#: install_steps_gtk.pm:299
-#, c-format
-msgid "Bad package"
-msgstr "Xətalı paket"
-
-#: install_steps_gtk.pm:301
-#, c-format
-msgid "Version: "
-msgstr "Buraxılış: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "Size: "
-msgstr "Böyüklük: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "%d KB\n"
-msgstr "%d KB\n"
-
-#: install_steps_gtk.pm:303
-#, c-format
-msgid "Importance: "
-msgstr "Əhəmiyyət:"
-
-#: install_steps_gtk.pm:336
-#, c-format
-msgid "You can not select/unselect this package"
-msgstr "Bu paketi seçə bilməzsiniz/sistemdən çıxarda bilməzsınız"
-
-#: install_steps_gtk.pm:340 network/thirdparty.pm:331
-#, c-format
-msgid "due to missing %s"
-msgstr "%s əksik olduğuna görə"
-
-#: install_steps_gtk.pm:341
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "%s razı qalmadığına görə"
-
-#: install_steps_gtk.pm:342
-#, c-format
-msgid "trying to promote %s"
-msgstr "%s irəliləndirməyə çalışılır"
-
-#: install_steps_gtk.pm:343
-#, c-format
-msgid "in order to keep %s"
-msgstr "%s-i saxlamaq üçün"
-
-#: install_steps_gtk.pm:348
-#, c-format
-msgid ""
-"You can not select this package as there is not enough space left to install "
-"it"
-msgstr "Bu paketi seçə bilməzsiniz, çünki qurmaq üçün yer çatmır."
-
-#: install_steps_gtk.pm:351
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Aşağıdakı paketlər qurulacaq"
-
-#: install_steps_gtk.pm:352
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Aşağıdakı paketlər sistemdən silinəcəklər"
-
-#: install_steps_gtk.pm:376
-#, c-format
-msgid "This is a mandatory package, it can not be unselected"
-msgstr "Bu lazımlı bir paketdir, sistemdən çıxardıla bilməz"
-
-#: install_steps_gtk.pm:378
-#, c-format
-msgid "You can not unselect this package. It is already installed"
-msgstr "Bu paketi sistemdən çıxarda bilməzsınız. Artıq qurulmuşdur."
-
-#: install_steps_gtk.pm:381
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Bu paket yenilənməlidir\n"
-"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-
-#: install_steps_gtk.pm:384
-#, c-format
-msgid "You can not unselect this package. It must be upgraded"
-msgstr "Bu paketi sistemdən çıxarda bilməzsiniz. Yenilənməlidir"
-
-#: install_steps_gtk.pm:389
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Avtomatik seçili paketləri göstər"
-
-#: install_steps_gtk.pm:394
-#, fuzzy, c-format
-msgid "Load/Save selection"
-msgstr "Seçili olanı qeyd et"
-
-#: install_steps_gtk.pm:395
-#, c-format
-msgid "Updating package selection"
-msgstr "Paket seçkiləri yenilənir"
-
-#: install_steps_gtk.pm:400
-#, c-format
-msgid "Minimal install"
-msgstr "Minimal qurulum"
-
-#: install_steps_gtk.pm:414 install_steps_interactive.pm:467
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Qurmaq istədiyiniz paketləri seçin"
-
-#: install_steps_gtk.pm:431 install_steps_interactive.pm:691
-#, c-format
-msgid "Installing"
-msgstr "Qurulur"
-
-#: install_steps_gtk.pm:457
-#, c-format
-msgid "No details"
-msgstr "Təfsilatsız"
-
-#: install_steps_gtk.pm:472
-#, c-format
-msgid "Time remaining "
-msgstr "Qalan müddət"
-
-#: install_steps_gtk.pm:473
-#, c-format
-msgid "Estimating"
-msgstr "Təxmini olaraq hesaplanır"
-
-#: install_steps_gtk.pm:500
-#, c-format
-msgid "%d packages"
-msgstr "%d paket"
-
-#: install_steps_gtk.pm:543 install_steps_interactive.pm:719
-#, fuzzy, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"CD-ROM'u dəyişdirin!\n"
-"\n"
-"Xahiş edirik, \"%s\" adlı CD-ROM'u sürücünüzə yerləşdirin və Oldu düyməsinə "
-"basın.\n"
-"Əgər CD-ROM əlinizdə deyilsə, bu CD-Rom'dan qurmamaq üçün Ləğv Et düyməsinə "
-"basın."
-
-#: install_steps_gtk.pm:556 install_steps_interactive.pm:730
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Paketləri istərkən xəta yarandı:"
-
-#: install_steps_gtk.pm:558 install_steps_interactive.pm:734
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Paketlər qurulurkən bir xəta oldu:"
-
-#: install_steps_gtk.pm:560 install_steps_interactive.pm:730
-#: install_steps_interactive.pm:734
-#, c-format
-msgid "Go on anyway?"
-msgstr "Yenə də davam edək?"
-
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:910 steps.pm:30
-#, c-format
-msgid "Summary"
-msgstr "İcmal"
-
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:906
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "not configured"
-msgstr "quraşdırılmayıb"
-
-#: install_steps_gtk.pm:668
-#, c-format
-msgid ""
-"The following installation media have been found.\n"
-"If you want to skip some of them, you can unselect them now."
-msgstr ""
-
-#: install_steps_gtk.pm:677
-#, c-format
-msgid ""
-"You have the option to copy the contents of the CDs onto the hard drive "
-"before installation.\n"
-"It will then continue from the hard drive and the packages will remain "
-"available once the system is fully installed."
-msgstr ""
-
-#: install_steps_gtk.pm:679
-#, c-format
-msgid "Copy whole CDs"
-msgstr ""
-
-#: install_steps_interactive.pm:95
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Xahiş edirik, klaviatura düzülüşünüzü seçin."
-
-#: install_steps_interactive.pm:97
-#, fuzzy, c-format
-msgid "Here is the full list of available keyboards"
-msgstr "Bütün mövcud ölkələrinn siyahısı"
-
-#: install_steps_interactive.pm:127
-#, c-format
-msgid "Install/Upgrade"
-msgstr "Qurulum/Yeniləmə"
-
-#: install_steps_interactive.pm:128
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Bu bir qurulum, yoxsa yeniləmədir?"
-
-#: install_steps_interactive.pm:134
-#, c-format
-msgid "Upgrade %s"
-msgstr "%s-i yenilə"
-
-#: install_steps_interactive.pm:147
-#, c-format
-msgid "Encryption key for %s"
-msgstr "%s üçün şifrələmə açarı"
-
-#: install_steps_interactive.pm:170
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Xahiş edirik, siçanınızın növünü seçin."
-
-#: install_steps_interactive.pm:171
-#, c-format
-msgid "Mouse choice"
-msgstr ""
-
-#: install_steps_interactive.pm:180 standalone/mousedrake:46
-#, c-format
-msgid "Mouse Port"
-msgstr "Siçan Qapısı"
-
-#: install_steps_interactive.pm:181 standalone/mousedrake:47
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Siçanınızın bağlı olduğu serial qapını seçin."
-
-#: install_steps_interactive.pm:191
-#, c-format
-msgid "Buttons emulation"
-msgstr "Düymə emulyasiyası"
-
-#: install_steps_interactive.pm:193
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Düymə 2 emulyasiyası"
-
-#: install_steps_interactive.pm:194
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "3 Düymə Emulyasiyası"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCİA"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "PCMCİA kartlar qurulur..."
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "IDE"
-msgstr "İDE"
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "Configuring IDE"
-msgstr "İDE qapıları qurulur"
-
-#: install_steps_interactive.pm:242
-#, c-format
-msgid "No partition available"
-msgstr "Uyğun bölmə mövcud deyil"
-
-#: install_steps_interactive.pm:245
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Bölmələr bağlama nöqtələri üçün yoxlanır"
-
-#: install_steps_interactive.pm:252
-#, c-format
-msgid "Choose the mount points"
-msgstr "Bağlama nöqtələrini seçin"
-
-#: install_steps_interactive.pm:300
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"1 MB bootstrap üçün yer yoxdur! Qurulum davam edəcək, ancaq sisteminizi aça "
-"bilmək üçün DiskDrake'də bootstrap bölməsi yaratmalısınız."
-
-#: install_steps_interactive.pm:305
-#, fuzzy, c-format
-msgid ""
-"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
-"to boot your system, you'll need to create the bootstrap partition in "
-"DiskDrake"
-msgstr ""
-"1 MB bootstrap üçün yer yoxdur! Qurulum davam edəcək, ancaq sisteminizi aça "
-"bilmək üçün DiskDrake'də bootstrap bölməsi yaratmalısınız."
-
-#: install_steps_interactive.pm:341
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Şəkilləndirmək istədiyiniz bölmələrini seçin"
-
-#: install_steps_interactive.pm:343
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Xətalı bloklar sınansınmı?"
-
-#: install_steps_interactive.pm:371
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
-msgstr ""
-"%s fayl sisteminin yoxlanması bacarılmadı. Xətaları düzəltmək istəyirsiniz? "
-"(diqqətli olun, mə'lumatları itirə bilərsiniz)"
-
-#: install_steps_interactive.pm:374
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Qurulumu bitirmək üçün lazımi sahə yoxdur, xahiş edirik, əlavə edin"
-
-#: install_steps_interactive.pm:383
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr ""
-"Mövcud paketlər axtarılır və rpm mə'lumat bazası yenidən inşa edilir..."
-
-#: install_steps_interactive.pm:384 install_steps_interactive.pm:436
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Mövcud olan paketlər axtarılır."
-
-#: install_steps_interactive.pm:405 install_steps_interactive.pm:810
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Paketleri almaq üçün bir əks ünvanı seçin"
-
-#: install_steps_interactive.pm:445
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Sisteminizdə qurulum ya da yeniləmə üçün lazımi boş yer yoxdur(%d > %d)"
-
-#: install_steps_interactive.pm:479
-#, fuzzy, c-format
-msgid ""
-"Please choose load or save package selection.\n"
-"The format is the same as auto_install generated files."
-msgstr ""
-"Xahiş edirik, paket seçkilərini disketə qeyd et/disketdən yüklə\n"
-"seçənəyini seçin."
-
-#: install_steps_interactive.pm:481
-#, c-format
-msgid "Load"
-msgstr "Yüklə"
-
-#: install_steps_interactive.pm:481 standalone/drakbackup:4083
-#: standalone/drakbackup:4153 standalone/logdrake:175
-#, c-format
-msgid "Save"
-msgstr "Qeyd Et"
-
-#: install_steps_interactive.pm:489
-#, c-format
-msgid "Bad file"
-msgstr "Səhv fayl"
-
-#: install_steps_interactive.pm:562
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Seçili böyüklük var olandan daha böyükdür"
-
-#: install_steps_interactive.pm:577
-#, c-format
-msgid "Type of install"
-msgstr "Qurulum növü"
-
-#: install_steps_interactive.pm:578
-#, c-format
-msgid ""
-"You have not selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Heç bir paket qrupunu seçmədiniz.\n"
-"Xahiş edirik, istədiyiniz ən kiçik qurulumu seçin:"
-
-#: install_steps_interactive.pm:582
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Əsas sənədlərlə birlikdə (məsləhət edilən!)"
-
-#: install_steps_interactive.pm:583
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Həqiqətən minimal qurulum (xüsusilə urpmi olmasın)"
-
-#: install_steps_interactive.pm:622 standalone/drakxtv:52
-#, c-format
-msgid "All"
-msgstr "Hamısı"
-
-#: install_steps_interactive.pm:661
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"Aşağıdakı siyahıdakı bütün CD'lərə sahib isəniz, OLDU'ya basın.\n"
-"CD'lərin heç birinə sahib deyilsəniz, İMTİNA ET'ə basın.\n"
-"CD'lərdən bə'ziləi əksik isə, onları seçili vəziyyətdən çıxardıb OLDU'ya "
-"basın."
-
-#: install_steps_interactive.pm:666
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "\"%s\" adlı Cd-Rom"
-
-#: install_steps_interactive.pm:691
-#, c-format
-msgid "Preparing installation"
-msgstr "Qurulum hazırlanır"
-
-#: install_steps_interactive.pm:699
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"%s paketi qurulur\n"
-"%d%%"
-
-#: install_steps_interactive.pm:748
-#, c-format
-msgid "Post-install configuration"
-msgstr "Qurulum sonrası qurğular"
-
-#: install_steps_interactive.pm:755
-#, c-format
-msgid "Please ensure the Update Modules media is in drive %s"
-msgstr ""
-
-#: install_steps_interactive.pm:783
-#, c-format
-msgid "Updates"
-msgstr "Yeniləmələr"
-
-#: install_steps_interactive.pm:784
-#, c-format
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates?"
-msgstr ""
-"İndi siz yenilənmiş paketləri endirib qurma imkanına maliksiniz. Bu "
-"paketlər\n"
-"distribusiya buraxıldıqdan sonra yeniləniblər və təhlükəsizlik ya da xəya "
-"həllərini\n"
-"daxil edə bilərlər.\n"
-"\n"
-"Bu paketləri endirmək üçün fəal İnternet bağlantınız olmalıdır \n"
-"\n"
-"Yeniləmələri qurmaq istəyirsiniz ?"
-
-#: install_steps_interactive.pm:805
-#, c-format
-msgid ""
-"Contacting Mandriva Linux web site to get the list of available mirrors..."
-msgstr ""
-"Mövcud əkslərin siyahısını almaq üçün Mandriva Linux səhifəsi ilə təmas "
-"qurulur..."
-
-#: install_steps_interactive.pm:824
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Əks ünvanına bağlantı qurulur"
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "%s əksi ilə rabitə qurula bilmir"
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Yenidən sınamaq istəyirsiniz?"
-
-#: install_steps_interactive.pm:855 standalone/drakclock:45
-#: standalone/finish-install:56
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Vaxt zolağınız hansıdır?"
-
-#: install_steps_interactive.pm:860
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Avtomatik vaxt sinxronizasiyası (NTP vasitəsiylə)"
-
-#: install_steps_interactive.pm:868
-#, c-format
-msgid "NTP Server"
-msgstr "NTP Verici"
-
-#: install_steps_interactive.pm:923 install_steps_interactive.pm:931
-#: install_steps_interactive.pm:949 install_steps_interactive.pm:956
-#: install_steps_interactive.pm:1107 services.pm:133
-#: standalone/drakbackup:1596
-#, c-format
-msgid "System"
-msgstr "Sistem"
-
-#: install_steps_interactive.pm:963 install_steps_interactive.pm:990
-#: install_steps_interactive.pm:1007 install_steps_interactive.pm:1023
-#: install_steps_interactive.pm:1034
-#, c-format
-msgid "Hardware"
-msgstr "Avadanlıq"
-
-#: install_steps_interactive.pm:969 install_steps_interactive.pm:978
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Uzaq CUPS vericisi"
-
-#: install_steps_interactive.pm:969
-#, c-format
-msgid "No printer"
-msgstr "Çapçı yoxdur"
-
-#: install_steps_interactive.pm:1011
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Heç İSA səs kartınız var?"
-
-#: install_steps_interactive.pm:1013
-#, fuzzy, c-format
-msgid ""
-"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
-"card"
-msgstr ""
-"Qurulumdan sonra səs kartınızı qurğulamaq üçün \"sndconfig\" əmrini icra edin"
-
-#: install_steps_interactive.pm:1015
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr "Səs kartı tapılmadı. Qurulumdan sonra \"harddrake\"ni işə salın"
-
-#: install_steps_interactive.pm:1035
-#, c-format
-msgid "Graphical interface"
-msgstr "Qrafiki ara üz"
-
-#: install_steps_interactive.pm:1041 install_steps_interactive.pm:1053
-#, c-format
-msgid "Network & Internet"
-msgstr "Şəbəkə və İnternet"
-
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "configured"
-msgstr "quraşdırılıb"
-
-#: install_steps_interactive.pm:1064 install_steps_interactive.pm:1078
-#: security/level.pm:55 steps.pm:20
-#, c-format
-msgid "Security"
-msgstr "Təhlükəsizlik"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "activated"
-msgstr "fəal"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "disabled"
-msgstr "qeyri-fəal"
-
-#: install_steps_interactive.pm:1094
-#, c-format
-msgid "Boot"
-msgstr "Açılış"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1098 printer/printerdrake.pm:961
-#, c-format
-msgid "%s on %s"
-msgstr "%2$s üstündə %1$s"
-
-#: install_steps_interactive.pm:1112 services.pm:175
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Xidmətlər: %d fəal, %d qeydli"
-
-#: install_steps_interactive.pm:1124
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "Siz X-i quraşdırmadınız. Bundan əminsinizmi?"
-
-#: install_steps_interactive.pm:1205
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Açılış yükləyici hazırlanır"
-
-#: install_steps_interactive.pm:1215
-#, fuzzy, c-format
-msgid ""
-"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
-"will not work for you. The install will continue, but you'll need to use "
-"BootX or some other means to boot your machine. The kernel argument for the "
-"root fs is: root=%s"
-msgstr ""
-"Dünyadan kənar yerdən gələn ya da namə'lum\n"
-" sisteminiz var, yaboot açılış yükləyicisi sizin üçün işləməyəcək.\n"
-"Qurulum davam edəcək ancaq kompüterinizi aça bilmək üçün\n"
-" BootX ya da başqa vasitədən istifadə etməlisiniz"
-
-#: install_steps_interactive.pm:1221
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "aboot istifadə etmək istəyirsiniz?"
-
-#: install_steps_interactive.pm:1224
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"aboot qurulumunda xata, \n"
-"ilk disk bölməsini yox etsə belə yenə də qurulmasını istəyirsiniz?"
-
-#: install_steps_interactive.pm:1241
-#, c-format
-msgid ""
-"In this security level, access to the files in the Windows partition is "
-"restricted to the administrator."
-msgstr ""
-
-#: install_steps_interactive.pm:1270 standalone/drakautoinst:76
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "%s sürücüsünə boş bir disket yerləşdirin"
-
-#: install_steps_interactive.pm:1275
-#, fuzzy, c-format
-msgid "Please insert another floppy for drivers disk"
-msgstr "Xahiş edirik, işlədilən açılış disketini %s sürücüsünə yerləşdirin"
-
-#: install_steps_interactive.pm:1277
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Avtomatik qurulum disketi hazırlanır"
-
-#: install_steps_interactive.pm:1289
-#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Bə'zi bölmələr bitdi.\n"
-"\n"
-"Həqiqətən də çıxmaq istəyirsiniz?"
-
-#: install_steps_interactive.pm:1299 standalone/draksambashare:421
-#: standalone/draksambashare:527 standalone/drakups:118 standalone/drakups:157
-#: standalone/logdrake:451 standalone/logdrake:457
-#, c-format
-msgid "Congratulations"
-msgstr "Təbriklər"
-
-#: install_steps_interactive.pm:1307 install_steps_interactive.pm:1308
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Avtomatik qurulum disketi hazırla"
-
-#: install_steps_interactive.pm:1309
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Avtomatik qurulum tamamilə avtomatikləşdirilə bilər,\n"
-"ancaq bu zaman o bütün sabit diskə əl qoyacaq!!!\n"
-"(bu başqa kompüterdə də sistemi qura bilmək üçündür).\n"
-"\n"
-"Gələcəkdə bu qurulumu təkrarlamaq istəyə bilərsiniz.\n"
-
-#: install_steps_newt.pm:20
-#, c-format
-msgid "Mandriva Linux Installation %s"
-msgstr "Mandriva Linux Qurulumu %s"
-
-#. -PO: This string must fit in a 80-char wide text screen
-#: install_steps_newt.pm:37
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> irəli/geri | <Boşluq> işarətlə | <F12> sonrakı ekran"
+msgid "No"
+msgstr "Xeyir"
-#: interactive.pm:196
+#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "Fayl seç"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakbackup:1537
-#: standalone/drakfont:649 standalone/drakhosts:242 standalone/draknfs:605
-#: standalone/draksambashare:1127 standalone/drakups:299
-#: standalone/drakups:359 standalone/drakups:379 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Add"
msgstr "Əlavə et"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakhosts:249
-#: standalone/draknfs:612 standalone/draksambashare:1084
-#: standalone/draksambashare:1137 standalone/draksambashare:1176
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Modify"
msgstr "Təkmilləşdir"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakfont:732
-#: standalone/drakhosts:256 standalone/draknfs:619
-#: standalone/draksambashare:1085 standalone/draksambashare:1145
-#: standalone/draksambashare:1184 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Remove"
msgstr "Sil"
-#: interactive.pm:398
-#, c-format
-msgid "Basic"
-msgstr "Əsas"
-
-#: interactive.pm:436 interactive/newt.pm:321 ugtk2.pm:490
+#: interactive.pm:538 interactive/curses.pm:217 ugtk2.pm:508
#, c-format
msgid "Finish"
msgstr "Qurtar"
-#: interactive/newt.pm:92
+#: interactive.pm:539 interactive/curses.pm:214 ugtk2.pm:506
#, c-format
-msgid "Do"
-msgstr "Et"
+msgid "Previous"
+msgstr "Əvvəlki"
#: interactive/stdio.pm:29 interactive/stdio.pm:148
#, c-format
@@ -7625,1954 +3351,1205 @@ msgstr ""
msgid "Re-submit"
msgstr "Yenidən göndər"
-#: keyboard.pm:171 keyboard.pm:202
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTZ)"
-msgstr "Çex dili (QWERTZ)"
-
-#: keyboard.pm:172 keyboard.pm:204
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German"
-msgstr "Almanca"
-
-#: keyboard.pm:173
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak"
-msgstr "Dvorak"
-
-#: keyboard.pm:174 keyboard.pm:217
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Spanish"
-msgstr "İspanca"
-
-#: keyboard.pm:175 keyboard.pm:218
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Finnish"
-msgstr "Fin dili"
-
-#: keyboard.pm:176 keyboard.pm:220
-#, c-format
-msgid ""
-"_: keyboard\n"
-"French"
-msgstr "Fransızca"
-
-#: keyboard.pm:177 keyboard.pm:264
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Norwegian"
-msgstr "Norveç dili"
-
-#: keyboard.pm:178
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish"
-msgstr "Polyak dili"
-
-#: keyboard.pm:179 keyboard.pm:275
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian"
-msgstr "Rusca"
-
-#: keyboard.pm:180 keyboard.pm:281
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swedish"
-msgstr "İsveçcə"
-
-#: keyboard.pm:181 keyboard.pm:310
-#, c-format
-msgid "UK keyboard"
-msgstr "İngiliz (UK) klaviaturası"
-
-#: keyboard.pm:182 keyboard.pm:313
-#, c-format
-msgid "US keyboard"
-msgstr "US klaviaturası"
-
-#: keyboard.pm:184
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Albanian"
-msgstr "Albanca"
-
-#: keyboard.pm:185
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (old)"
-msgstr "Ermenicə (köhnə)"
-
-#: keyboard.pm:186
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (typewriter)"
-msgstr "Ermenicə (yazı makinası)"
-
-#: keyboard.pm:187
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (phonetic)"
-msgstr "Ermenicə (fonetik)"
-
-#: keyboard.pm:188
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Arabic"
-msgstr "Ərəb dili"
-
-#: keyboard.pm:189
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Azerbaidjani (latin)"
-msgstr "Azərbaycanca (latın)"
-
-#: keyboard.pm:190
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belgian"
-msgstr "Belçika dili"
-
-#: keyboard.pm:191
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Inscript-layout)"
-msgstr "Benqal dili (İnscript sırası)"
-
-#: keyboard.pm:192
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Probhat)"
-msgstr "Benqal dili (Probhat sırası)"
-
-#: keyboard.pm:193
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (phonetic)"
-msgstr "Bolqar (fonetik)"
-
-#: keyboard.pm:194
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (BDS)"
-msgstr "Bolqar (BDS)"
-
-#: keyboard.pm:195
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Brazilian (ABNT-2)"
-msgstr "Brazilya dili (ABNT-2)"
-
-#: keyboard.pm:196
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bosnian"
-msgstr "Bosniya"
-
-#: keyboard.pm:197
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belarusian"
-msgstr "Belarus dili"
-
-#: keyboard.pm:198
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (German layout)"
-msgstr "İsveçcə (Alman sırası)"
-
-#: keyboard.pm:199
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (French layout)"
-msgstr "İsveçrə dili (Fransız düzülüşü)"
-
-#: keyboard.pm:201
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Cherokee syllabics"
-msgstr "Ərəb dili"
-
-#: keyboard.pm:203
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTY)"
-msgstr "Çex dili (QWERTY)"
-
-#: keyboard.pm:205
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German (no dead keys)"
-msgstr "Almanca (ölü düymələr olmasın)"
-
-#: keyboard.pm:206
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Devanagari"
-msgstr "Devanaqari"
-
-#: keyboard.pm:207
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Danish"
-msgstr "Danimarka dili"
-
-#: keyboard.pm:208
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: keyboard.pm:209
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Esperanto)"
-msgstr "Dvorak (Esperanto)"
-
-#: keyboard.pm:210
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (French)"
-msgstr "Dvorak (Norveç dili)"
-
-#: keyboard.pm:211
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (UK)"
-msgstr "Dvorak (US)"
-
-#: keyboard.pm:212
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Norwegian)"
-msgstr "Dvorak (Norveç dili)"
-
-#: keyboard.pm:213
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Polish)"
-msgstr "Dvorak (İsveç)"
-
-#: keyboard.pm:214
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Swedish)"
-msgstr "Dvorak (İsveç)"
-
-#: keyboard.pm:215
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dzongkha/Tibetan"
-msgstr "Bosniya"
-
-#: keyboard.pm:216
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Estonian"
-msgstr "Estoniya dili"
-
-#: keyboard.pm:219
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Faroese"
-msgstr "Yunanca"
-
-#: keyboard.pm:221
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Russian\" layout)"
-msgstr "Gürcü dili (\"Rus\" sırası)"
-
-#: keyboard.pm:222
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Latin\" layout)"
-msgstr "Gürcü dili (\"Latın\" sırası)"
-
-#: keyboard.pm:223
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek"
-msgstr "Yunanca"
-
-#: keyboard.pm:224
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek (polytonic)"
-msgstr "Yunanca (politonik)"
-
-#: keyboard.pm:225
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gujarati"
-msgstr "Gujarati dili"
-
-#: keyboard.pm:226
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gurmukhi"
-msgstr "Qurmuxi"
-
-#: keyboard.pm:227
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Croatian"
-msgstr "Xorvat dili"
-
-#: keyboard.pm:228
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Hungarian"
-msgstr "Macar dili"
-
-#: keyboard.pm:229
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Irish"
-msgstr "İrlandiya Dili"
-
-#: keyboard.pm:230
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli"
-msgstr "Yəhudi dili"
-
-#: keyboard.pm:231
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli (phonetic)"
-msgstr "Yəhudi dili (Fonetik)"
-
-#: keyboard.pm:232
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Iranian"
-msgstr "Farsca"
-
-#: keyboard.pm:233
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Icelandic"
-msgstr "İslandiya dili"
-
-#: keyboard.pm:234
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Italian"
-msgstr "İtalyan dili"
-
-#: keyboard.pm:235
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Inuktitut"
-msgstr "Inuktitut"
-
-#: keyboard.pm:239
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Japanese 106 keys"
-msgstr "Yapon dili 106 düyməli"
-
-#: keyboard.pm:240
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kannada"
-msgstr "Kanada"
-
-#: keyboard.pm:243
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Korean"
-msgstr "Koreya klaviaturası"
-
-#: keyboard.pm:245
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Kurdish (arabic script)"
-msgstr "Ərəb dili"
-
-#: keyboard.pm:246
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Kyrgyz"
-msgstr "İngiliz (UK) klaviaturası"
-
-#: keyboard.pm:247
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latin American"
-msgstr "Latın Amerika dili"
-
-#: keyboard.pm:249
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Laotian"
-msgstr "Laotian"
-
-#: keyboard.pm:250
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (old)"
-msgstr "Litvaniya dili AZERTY (köhnə)"
-
-#: keyboard.pm:252
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (new)"
-msgstr "Litva dili AZERTY (yeni)"
-
-#: keyboard.pm:253
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"number row\" QWERTY"
-msgstr "Litvanya dili \"number row\" QWERTY"
-
-#: keyboard.pm:254
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"phonetic\" QWERTY"
-msgstr "Litvanya dili \"Fonetik\" QWERTY"
-
-#: keyboard.pm:255
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latvian"
-msgstr "Latış dili"
-
-#: keyboard.pm:256
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Malayalam"
-msgstr "Malayalam dili"
-
-#: keyboard.pm:258
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Macedonian"
-msgstr "Makedoniya dili"
-
-#: keyboard.pm:259
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Myanmar (Burmese)"
-msgstr "Myanmar dili (Burmese)"
-
-#: keyboard.pm:260
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Mongolian (cyrillic)"
-msgstr "Mongolca (kiril)"
-
-#: keyboard.pm:261
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (UK)"
-msgstr "Malta (UK)"
-
-#: keyboard.pm:262
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (US)"
-msgstr "Malta (US)"
-
-#: keyboard.pm:263
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dutch"
-msgstr "Hollandiya dili"
-
-#: keyboard.pm:265
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Oriya"
-msgstr "Oriya"
-
-#: keyboard.pm:266
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwerty layout)"
-msgstr "Polyakca (QWERTY sırası)"
-
-#: keyboard.pm:267
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwertz layout)"
-msgstr "Polyakca (QWERTZ sırası)"
-
-#: keyboard.pm:269
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Pashto"
-msgstr "Polyak dili"
-
-#: keyboard.pm:270
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Portuguese"
-msgstr "Portuqalca"
-
-#: keyboard.pm:272
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Canadian (Quebec)"
-msgstr "Fransız dili (Kanada/Quebec)"
-
-#: keyboard.pm:273
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwertz)"
-msgstr "Rumın (qwertz)"
-
-#: keyboard.pm:274
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwerty)"
-msgstr "Rumın (qwerty)"
-
-#: keyboard.pm:276
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian (phonetic)"
-msgstr "Rus dili (Fonetik)"
-
-#: keyboard.pm:277
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (norwegian)"
-msgstr "Saami (Norveç dili)"
-
-#: keyboard.pm:278
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (swedish/finnish)"
-msgstr "Saami (isveç/fin)"
-
-#: keyboard.pm:280
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Sindhi"
-msgstr "Tay klaviaturası"
-
-#: keyboard.pm:282
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovenian"
-msgstr "Slovencə"
-
-#: keyboard.pm:284
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sinhala"
-msgstr ""
-
-#: keyboard.pm:285
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTZ)"
-msgstr "Slovakca (QWERTZ)"
-
-#: keyboard.pm:286
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTY)"
-msgstr "Slovakca (QWERTY)"
-
-#: keyboard.pm:288
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Serbian (cyrillic)"
-msgstr "Serbcə (kiril)"
-
-#: keyboard.pm:289
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac"
-msgstr "Siriak"
-
-#: keyboard.pm:290
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac (phonetic)"
-msgstr "Siriak (fonetik)"
-
-#: keyboard.pm:291
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Telugu"
-msgstr "Telugu"
-
-#: keyboard.pm:293
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (ISCII-layout)"
-msgstr "Tamil (ISCII-ldüzülüşü)"
-
-#: keyboard.pm:294
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (Typewriter-layout)"
-msgstr "Tamil dili (Yazı makinası düzülüşü)"
-
-#: keyboard.pm:295
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Kedmanee)"
-msgstr "Tay klaviaturası"
-
-#: keyboard.pm:296
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (TIS-820)"
-msgstr "Tay klaviaturası"
-
-#: keyboard.pm:298
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Pattachote)"
-msgstr "Tay klaviaturası"
-
-#: keyboard.pm:300
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (moroccan layout) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:301
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (phonetic) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:303
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tajik"
-msgstr "Tacik klaviaturası"
-
-#: keyboard.pm:305
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Turkmen"
-msgstr "Almanca"
-
-#: keyboard.pm:306
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (traditional \"F\" model)"
-msgstr "Türkcə (ənənəvi \"F\" klaviatura)"
-
-#: keyboard.pm:307
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (modern \"Q\" model)"
-msgstr "Türk dili (müasir \"Q\" klaviatura)"
-
-#: keyboard.pm:309
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Ukrainian"
-msgstr "Ukrayna"
-
-#: keyboard.pm:312
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Urdu keyboard"
-msgstr "Oriya"
-
-#: keyboard.pm:314
-#, c-format
-msgid "US keyboard (international)"
-msgstr "Amerikan (US) klaviaturası (beynəlmiləl)"
-
-#: keyboard.pm:315
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Uzbek (cyrillic)"
-msgstr "Özbək dili (kiril)"
-
-#: keyboard.pm:317
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Vietnamese \"numeric row\" QWERTY"
-msgstr "Vyetnam dili \"numeric row\" QWERTY"
-
-#: keyboard.pm:318
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Yugoslavian (latin)"
-msgstr "Yugoslav (latın)"
-
-#: keyboard.pm:325
-#, c-format
-msgid "Right Alt key"
-msgstr "Sağ Alt düyməsi"
-
-#: keyboard.pm:326
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Eyni zamanda iki Shift düyməsi "
-
-#: keyboard.pm:327
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Eyni zamanda Control və Shift düymələri"
-
-#: keyboard.pm:328
-#, c-format
-msgid "CapsLock key"
-msgstr "CapsLock düyməsi"
-
-#: keyboard.pm:329
-#, fuzzy, c-format
-msgid "Shift and CapsLock keys simultaneously"
-msgstr "Eyni zamanda Ctrl və Alt düymələri"
-
-#: keyboard.pm:330
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Eyni zamanda Ctrl və Alt düymələri"
-
-#: keyboard.pm:331
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Eyni zamanda Alt və Shift düymələri"
-
-#: keyboard.pm:332
-#, c-format
-msgid "\"Menu\" key"
-msgstr "\"Menyu\" düyməsi"
-
-#: keyboard.pm:333
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Sol \"Windows\" düyməsi"
-
-#: keyboard.pm:334
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Sağ \"Windows\" düyməsi"
-
-#: keyboard.pm:335
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Eyni zamanda iki Control düyməsi "
-
-#: keyboard.pm:336
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Eyni zamanda iki Alt düyməsi"
-
-#: keyboard.pm:337
-#, c-format
-msgid "Left Shift key"
-msgstr "Sol Shift düyməsi"
-
-#: keyboard.pm:338
-#, c-format
-msgid "Right Shift key"
-msgstr "Sağ Shift düyməsi"
-
-#: keyboard.pm:339
-#, c-format
-msgid "Left Alt key"
-msgstr "Sol Alt düyməsi"
-
-#: keyboard.pm:340
-#, c-format
-msgid "Left Control key"
-msgstr "Sol Control düyməsi"
-
-#: keyboard.pm:341
-#, c-format
-msgid "Right Control key"
-msgstr "Sağ Control düyməsi"
-
-#: keyboard.pm:377
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Fərqli klaviatura düzülüşləri arasında keçişə icazə verən\n"
-"düymə ya da düymələr kombinasiyasını seçə bilərsiniz.\n"
-"(mis: latın və latın olmayan)"
-
-#: keyboard.pm:382
-#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
-msgstr ""
-"Bu qurğu qurulumdan sonra fəal olacaq.\n"
-"Qurulum sırasında, fərqli klaviatura düzülüşləri arasında\n"
-"keçmək üçün Sağ Control düyməsini istifadə etməlisiniz."
-
#. -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:178
+#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"
-#: lang.pm:195
+#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "Andorra"
-#: lang.pm:196 network/adsl_consts.pm:943
+#: lang.pm:211 timezone.pm:213
#, c-format
msgid "United Arab Emirates"
msgstr "Birləşmiş Ərəb Əmirlikləri"
-#: lang.pm:197
+#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "Əfqanıstan"
-#: lang.pm:198
+#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antiq və Barbuda"
-#: lang.pm:199
+#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "Anquilla"
-#: lang.pm:200
+#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "Albaniya"
-#: lang.pm:201
+#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "Ermənistan"
-#: lang.pm:202
+#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "Holland Antilləri"
-#: lang.pm:203
+#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "Anqola"
-#: lang.pm:204
+#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "Antarktika"
-#: lang.pm:205 network/adsl_consts.pm:55 standalone/drakxtv:50
+#: lang.pm:220 timezone.pm:258
#, c-format
msgid "Argentina"
msgstr "Argentina"
-#: lang.pm:206
+#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "Amerikan Samoa"
-#: lang.pm:209
+#: lang.pm:222 mirror.pm:11 timezone.pm:216
+#, c-format
+msgid "Austria"
+msgstr "Avstriya"
+
+#: lang.pm:223 mirror.pm:10 timezone.pm:254
+#, c-format
+msgid "Australia"
+msgstr "Avstraliya"
+
+#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "Aruba"
-#: lang.pm:210
+#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "Azərbaycan"
-#: lang.pm:211
+#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosniya və Herzoqovina"
-#: lang.pm:212
+#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "Barbados"
-#: lang.pm:213
+#: lang.pm:228 timezone.pm:198
#, c-format
msgid "Bangladesh"
msgstr "Banqladeş"
-#: lang.pm:215
+#: lang.pm:229 mirror.pm:12 timezone.pm:218
+#, c-format
+msgid "Belgium"
+msgstr "Belçika"
+
+#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "Burkina Faso"
-#: lang.pm:216 network/adsl_consts.pm:170 network/adsl_consts.pm:179
+#: lang.pm:231 timezone.pm:219
#, c-format
msgid "Bulgaria"
msgstr "Bolqarıstan"
-#: lang.pm:217
+#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "Bahreyn"
-#: lang.pm:218
+#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "Burundi"
-#: lang.pm:219
+#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "Benin"
-#: lang.pm:220
+#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "Bermuda"
-#: lang.pm:221
+#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "Bruney Darüssəlam"
-#: lang.pm:222
+#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "Boliviya"
-#: lang.pm:224
+#: lang.pm:238 mirror.pm:13 timezone.pm:259
+#, c-format
+msgid "Brazil"
+msgstr "Braziliya"
+
+#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "Bahamalar"
-#: lang.pm:225
+#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "Butan"
-#: lang.pm:226
+#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "Buvet Adası"
-#: lang.pm:227
+#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "Botsvana"
-#: lang.pm:228
+#: lang.pm:243 timezone.pm:217
#, c-format
msgid "Belarus"
msgstr "Belarusiya"
-#: lang.pm:229
+#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "Beliz"
-#: lang.pm:231
+#: lang.pm:245 mirror.pm:14 timezone.pm:248
+#, c-format
+msgid "Canada"
+msgstr "Kanada"
+
+#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Kokos Adası"
-#: lang.pm:232
+#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Konqo (Kinşasa)"
-#: lang.pm:233
+#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "Mərkəzi Afrika Respublikası"
-#: lang.pm:234
+#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Congo (Brazzaville)"
-#: lang.pm:236
+#: lang.pm:250 mirror.pm:38 timezone.pm:242
+#, c-format
+msgid "Switzerland"
+msgstr "İsveçrə"
+
+#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "Kot Divuar"
-#: lang.pm:237
+#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "Kuku Adaları"
-#: lang.pm:238
+#: lang.pm:253 timezone.pm:260
#, c-format
msgid "Chile"
msgstr "Çili"
-#: lang.pm:239
+#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "Kamerun"
-#: lang.pm:240 network/adsl_consts.pm:188 network/adsl_consts.pm:197
-#: network/adsl_consts.pm:206 network/adsl_consts.pm:215
-#: network/adsl_consts.pm:224 network/adsl_consts.pm:233
-#: network/adsl_consts.pm:242 network/adsl_consts.pm:251
-#: network/adsl_consts.pm:260 network/adsl_consts.pm:269
-#: network/adsl_consts.pm:278 network/adsl_consts.pm:287
-#: network/adsl_consts.pm:296 network/adsl_consts.pm:305
-#: network/adsl_consts.pm:314 network/adsl_consts.pm:323
-#: network/adsl_consts.pm:332 network/adsl_consts.pm:341
-#: network/adsl_consts.pm:350 network/adsl_consts.pm:359
+#: lang.pm:255 timezone.pm:199
#, c-format
msgid "China"
msgstr "Çin"
-#: lang.pm:241
+#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "Kolumbiya"
-#: lang.pm:243
+#: lang.pm:257 mirror.pm:15
+#, c-format
+msgid "Costa Rica"
+msgstr "Kosta Rika"
+
+#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "Serbiya və Qaradağ"
-#: lang.pm:244
+#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "Kuba"
-#: lang.pm:245
+#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "Keyp Verde"
-#: lang.pm:246
+#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "Kristmas Adası"
-#: lang.pm:247
+#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "Kipr"
-#: lang.pm:250
+#: lang.pm:263 mirror.pm:16 timezone.pm:220
+#, c-format
+msgid "Czech Republic"
+msgstr "Çex Respublikası"
+
+#: lang.pm:264 mirror.pm:21 timezone.pm:225
+#, c-format
+msgid "Germany"
+msgstr "Almanya"
+
+#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "Cibuti"
-#: lang.pm:252
+#: lang.pm:266 mirror.pm:17 timezone.pm:221
+#, c-format
+msgid "Denmark"
+msgstr "Danimarka"
+
+#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "Dominik"
-#: lang.pm:253
+#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "Dominikan Respublikası"
-#: lang.pm:254 network/adsl_consts.pm:44
+#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "Əlcəzair"
-#: lang.pm:255
+#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "Ekvador"
-#: lang.pm:257
+#: lang.pm:271 mirror.pm:18 timezone.pm:222
+#, c-format
+msgid "Estonia"
+msgstr "Estoniya"
+
+#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "Misir"
-#: lang.pm:258
+#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "Qərbi Saxara"
-#: lang.pm:259
+#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "Eritre"
-#: lang.pm:261
+#: lang.pm:275 mirror.pm:36 timezone.pm:240
+#, c-format
+msgid "Spain"
+msgstr "İspaniya"
+
+#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "Efiopiya"
-#: lang.pm:263
+#: lang.pm:277 mirror.pm:19 timezone.pm:223
+#, c-format
+msgid "Finland"
+msgstr "Finlandiya"
+
+#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "Fici"
-#: lang.pm:264
+#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Fokland Adaları (Malvin)"
-#: lang.pm:265
+#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "Mikroneziya"
-#: lang.pm:266
+#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "Faro Adaları"
-#: lang.pm:268
+#: lang.pm:282 mirror.pm:20 timezone.pm:224
+#, c-format
+msgid "France"
+msgstr "Fransa"
+
+#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "Qabon"
-#: lang.pm:269 network/adsl_consts.pm:954 network/adsl_consts.pm:965
-#: network/netconnect.pm:46
+#: lang.pm:284 timezone.pm:244
#, c-format
msgid "United Kingdom"
msgstr "Birləşmiş Krallıq"
-#: lang.pm:270
+#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "Qrenada"
-#: lang.pm:271
+#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "Gürcüstan"
-#: lang.pm:272
+#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "Fransız Gvineyası"
-#: lang.pm:273
+#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "Qana"
-#: lang.pm:274
+#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "Gibraltar"
-#: lang.pm:275
+#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "Qrinland"
-#: lang.pm:276
+#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "Qambiya"
-#: lang.pm:277
+#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "Qvineya"
-#: lang.pm:278
+#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "Quadelup"
-#: lang.pm:279
+#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "Ekvatorial Qvineya"
-#: lang.pm:281
+#: lang.pm:295 mirror.pm:22 timezone.pm:226
+#, c-format
+msgid "Greece"
+msgstr "Yunanıstan"
+
+#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "Cənubi Georgiya və Cənubi Sandviç Adası"
-#: lang.pm:282
+#: lang.pm:297 timezone.pm:249
#, c-format
msgid "Guatemala"
msgstr "Qvatemala"
-#: lang.pm:283
+#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "Quam"
-#: lang.pm:284
+#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "Qvineya Bissau"
-#: lang.pm:285
+#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "Quyana"
-#: lang.pm:286
+#: lang.pm:301
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "Çin (Honq Konq)"
-#: lang.pm:287
+#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Hird Adası və Mkdonald Adaları"
-#: lang.pm:288
+#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "Honduras"
-#: lang.pm:289
+#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "Xırvatıstan"
-#: lang.pm:290
+#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "Haiti"
-#: lang.pm:292
+#: lang.pm:306 mirror.pm:23 timezone.pm:227
+#, c-format
+msgid "Hungary"
+msgstr "Macarıstan"
+
+#: lang.pm:307 timezone.pm:202
#, c-format
msgid "Indonesia"
msgstr "İndoneziya"
-#: lang.pm:295
+#: lang.pm:308 mirror.pm:24 timezone.pm:228
+#, c-format
+msgid "Ireland"
+msgstr "İrlandiya"
+
+#: lang.pm:309 mirror.pm:25 timezone.pm:204
+#, c-format
+msgid "Israel"
+msgstr "İsrail"
+
+#: lang.pm:310 timezone.pm:201
#, c-format
msgid "India"
msgstr "Hindistan"
-#: lang.pm:296
+#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Britaniya Hind Okeanı Sahəsi"
-#: lang.pm:297
+#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "İrak"
-#: lang.pm:298
+#: lang.pm:313 timezone.pm:203
#, c-format
msgid "Iran"
msgstr "İran"
-#: lang.pm:299
+#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "İslandiya"
-#: lang.pm:301
+#: lang.pm:315 mirror.pm:26 timezone.pm:229
+#, c-format
+msgid "Italy"
+msgstr "İtaliya"
+
+#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "Yamayka"
-#: lang.pm:302
+#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "İordaniya"
-#: lang.pm:304
+#: lang.pm:318 mirror.pm:27 timezone.pm:205
+#, c-format
+msgid "Japan"
+msgstr "Yaponiya"
+
+#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "Kenya"
-#: lang.pm:305
+#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "Qırğızıstan"
-#: lang.pm:306
+#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "Kambodiya"
-#: lang.pm:307
+#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "Kiribati"
-#: lang.pm:308
+#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "Komor"
-#: lang.pm:309
+#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Müqəddəs Kit və Nevis"
-#: lang.pm:310
+#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "Koreya (Şimal)"
-#: lang.pm:311
+#: lang.pm:326 timezone.pm:206
#, c-format
msgid "Korea"
msgstr "Koreya"
-#: lang.pm:312
+#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "Kuveyt"
-#: lang.pm:313
+#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "Kayman Adaları"
-#: lang.pm:314
+#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "Qazaxstan"
-#: lang.pm:315
+#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "Laos"
-#: lang.pm:316
+#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "Livan"
-#: lang.pm:317
+#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "Saint Lucia"
-#: lang.pm:318
+#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "Lixtenşteyn"
-#: lang.pm:319
+#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "Şri Lanka"
-#: lang.pm:320
+#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "Liberiya"
-#: lang.pm:321
+#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "Lesoto"
-#: lang.pm:322 network/adsl_consts.pm:600
+#: lang.pm:337 timezone.pm:230
#, c-format
msgid "Lithuania"
msgstr "Litva"
-#: lang.pm:323
+#: lang.pm:338 timezone.pm:231
#, c-format
msgid "Luxembourg"
msgstr "Lyuksemburq"
-#: lang.pm:324
+#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "Latviya"
-#: lang.pm:325
+#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "Liviya"
-#: lang.pm:326 network/adsl_consts.pm:609
+#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "Mərakeş"
-#: lang.pm:327
+#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "Monako"
-#: lang.pm:328
+#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "Moldova"
-#: lang.pm:329
+#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "Madaqaskar"
-#: lang.pm:330
+#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "Marşal Adaları"
-#: lang.pm:331
+#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "Makedoniya"
-#: lang.pm:332
+#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "Mali"
-#: lang.pm:333
+#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "Myanmar"
-#: lang.pm:334
+#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "Monqolustan"
-#: lang.pm:335
+#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "Şimali Marian Adaları"
-#: lang.pm:336
+#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "Martiniq"
-#: lang.pm:337
+#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "Mavritaniya"
-#: lang.pm:338
+#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "Montserrat"
-#: lang.pm:339
+#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "Malta"
-#: lang.pm:340
+#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "Maurit"
-#: lang.pm:341
+#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "Maldiv"
-#: lang.pm:342
+#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "Malavi"
-#: lang.pm:343
+#: lang.pm:358 timezone.pm:250
#, c-format
msgid "Mexico"
msgstr "Mexiko"
-#: lang.pm:344
+#: lang.pm:359 timezone.pm:207
#, c-format
msgid "Malaysia"
msgstr "Malayziya"
-#: lang.pm:345
+#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "Mozambiq"
-#: lang.pm:346
+#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "Namibiya"
-#: lang.pm:347
+#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "Yeni Kaledoniya"
-#: lang.pm:348
+#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "Niger"
-#: lang.pm:349
+#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "Norfolk Adaları"
-#: lang.pm:350
+#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "Nigeriya"
-#: lang.pm:351
+#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "Nikaraqua"
-#: lang.pm:354
+#: lang.pm:367 mirror.pm:28 timezone.pm:232
+#, c-format
+msgid "Netherlands"
+msgstr "Hollandiya"
+
+#: lang.pm:368 mirror.pm:30 timezone.pm:233
+#, c-format
+msgid "Norway"
+msgstr "Norvegiya"
+
+#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "Nepal"
-#: lang.pm:355
+#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "Nauru"
-#: lang.pm:356
+#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "Niu"
-#: lang.pm:358
+#: lang.pm:372 mirror.pm:29 timezone.pm:255
+#, c-format
+msgid "New Zealand"
+msgstr "Yeni Zellandiya"
+
+#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "Oman"
-#: lang.pm:359
+#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "Panama"
-#: lang.pm:360
+#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "Peru"
-#: lang.pm:361
+#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "Fransız Poloneziyası"
-#: lang.pm:362
+#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "Papua Yeni Qvineya"
-#: lang.pm:363
+#: lang.pm:378 timezone.pm:208
#, c-format
msgid "Philippines"
msgstr "Filippin"
-#: lang.pm:364
+#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "Pakistan"
-#: lang.pm:366
+#: lang.pm:380 mirror.pm:31 timezone.pm:234
+#, c-format
+msgid "Poland"
+msgstr "Polşa"
+
+#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Müqəddəs Pyer və Migelion"
-#: lang.pm:367
+#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "Pitkairn"
-#: lang.pm:368
+#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "Porto Riko"
-#: lang.pm:369
+#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "Filistin"
-#: lang.pm:371
+#: lang.pm:385 mirror.pm:32 timezone.pm:235
+#, c-format
+msgid "Portugal"
+msgstr "Portuqaliya"
+
+#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "Paraqvay"
-#: lang.pm:372
+#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "Palau"
-#: lang.pm:373
+#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "Katar"
-#: lang.pm:374
+#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "Reyunion"
-#: lang.pm:375
+#: lang.pm:390 timezone.pm:236
#, c-format
msgid "Romania"
msgstr "Ruminıya"
-#: lang.pm:377
+#: lang.pm:391 mirror.pm:33
+#, c-format
+msgid "Russia"
+msgstr "Rusiya"
+
+#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "Ruanda"
-#: lang.pm:378
+#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "Səudiyyə Ərəbistan"
-#: lang.pm:379
+#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "Solomon Adaları"
-#: lang.pm:380
+#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "Seyşel"
-#: lang.pm:381
+#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "Sudan"
-#: lang.pm:383
+#: lang.pm:397 mirror.pm:37 timezone.pm:241
+#, c-format
+msgid "Sweden"
+msgstr "İsveç"
+
+#: lang.pm:398 timezone.pm:209
#, c-format
msgid "Singapore"
msgstr "Sinqapur"
-#: lang.pm:384
+#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "Müqəddəs Helena"
-#: lang.pm:385 network/adsl_consts.pm:747
+#: lang.pm:400 timezone.pm:239
#, c-format
msgid "Slovenia"
msgstr "Sloveniya"
-#: lang.pm:386
+#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Svalbard və Jan Mayen Adaları"
-#: lang.pm:388
+#: lang.pm:402 mirror.pm:34 timezone.pm:238
+#, c-format
+msgid "Slovakia"
+msgstr "Slovakiya"
+
+#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "Siera Lione"
-#: lang.pm:389
+#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "San Marino"
-#: lang.pm:390 network/adsl_consts.pm:737
+#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "Seneqal"
-#: lang.pm:391
+#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "Somali"
-#: lang.pm:392
+#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "Surinam"
-#: lang.pm:393
+#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "Sao Tome və Prinsip"
-#: lang.pm:394
+#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "El Salvador"
-#: lang.pm:395
+#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "Siriya"
-#: lang.pm:396
+#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "Svaziland"
-#: lang.pm:397
+#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Türk və Kaykos Adaları"
-#: lang.pm:398
+#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "Çad"
-#: lang.pm:399
+#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "Cənubi Fransız Sahələri"
-#: lang.pm:400
+#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "Toqo"
-#: lang.pm:402
+#: lang.pm:416 mirror.pm:40 timezone.pm:211
+#, c-format
+msgid "Thailand"
+msgstr "Tayland"
+
+#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "Tacikistan"
-#: lang.pm:403
+#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "Tokelo"
-#: lang.pm:404
+#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "Şərqi Timor"
-#: lang.pm:405
+#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "Türkmənistan"
-#: lang.pm:406 network/adsl_consts.pm:931
+#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "Tunis"
-#: lang.pm:407
+#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "Tonqa"
-#: lang.pm:408
+#: lang.pm:423 timezone.pm:212
#, c-format
msgid "Turkey"
msgstr "Türkiyə"
-#: lang.pm:409
+#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "Trinidad və Tobaqo"
-#: lang.pm:410
+#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "Tuvalu"
-#: lang.pm:412
+#: lang.pm:426 mirror.pm:39 timezone.pm:210
+#, c-format
+msgid "Taiwan"
+msgstr "Tayvan"
+
+#: lang.pm:427 timezone.pm:195
#, c-format
msgid "Tanzania"
msgstr "Tanzaniya"
-#: lang.pm:413
+#: lang.pm:428 timezone.pm:243
#, c-format
msgid "Ukraine"
msgstr "Ukrayna"
-#: lang.pm:414
+#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "Uqanda"
-#: lang.pm:415
+#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "Birləşmiş Ştatlar yanı Kiçik Adalar"
-#: lang.pm:417
+#: lang.pm:431 mirror.pm:41 timezone.pm:251
+#, c-format
+msgid "United States"
+msgstr "Birləşmiş Ştatlar"
+
+#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "Uruqvay"
-#: lang.pm:418
+#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "Özbəkistan"
-#: lang.pm:419
+#: lang.pm:434
#, c-format
msgid "Vatican"
msgstr "Vatikan"
-#: lang.pm:420
+#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "Müqəddəs Vinsent və Qrenadin"
-#: lang.pm:421
+#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "Venesuela"
-#: lang.pm:422
+#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "Virgin Adaları (Britaniya)"
-#: lang.pm:423
+#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Virgin Adaları (ABŞ)"
-#: lang.pm:424
+#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "Vyetnam"
-#: lang.pm:425
+#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "Vanuatu"
-#: lang.pm:426
+#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "Vallis və Futuna"
-#: lang.pm:427
+#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "Samoa"
-#: lang.pm:428
+#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "Yəmən"
-#: lang.pm:429
+#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "Mayot"
-#: lang.pm:431
+#: lang.pm:445 mirror.pm:35 timezone.pm:194
+#, c-format
+msgid "South Africa"
+msgstr "Cənubi Afrika"
+
+#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "Zambiya"
-#: lang.pm:432
+#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "Zimbabve"
-#: lang.pm:1149
+#: lang.pm:1153
#, c-format
msgid "Welcome to %s"
msgstr "%s Sisteminə Xoş Gəldiniz"
@@ -9597,6 +4574,360 @@ msgstr "Əvvəlcə məntiqi həcmləri sil\n"
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:10
+#, fuzzy, c-format
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the Mandriva "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandriva Linux distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
+"Mandriva S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using the Software Products in any manner, you "
+"explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
+"Software Products.\n"
+"\n"
+"\n"
+"2. Limited Warranty\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
+"be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if Mandriva S.A. has been advised of the possibility or "
+"occurrence of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
+"\n"
+"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
+"no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Mandriva Linux sites which are prohibited or restricted in some "
+"countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
+"included in the Software Products.\n"
+"\n"
+"\n"
+"3. The GPL License and Related Licenses\n"
+"\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to Mandriva.\n"
+"The programs developed by Mandriva S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by Mandriva S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
+"\n"
+"\n"
+"4. Intellectual Property Rights\n"
+"\n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
+"as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
+"Mandriva S.A. \n"
+"\n"
+"\n"
+"5. Governing Laws \n"
+"\n"
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
+"For any question on this document, please contact Mandriva S.A. \n"
+msgstr ""
+"Giriş\n"
+"\n"
+"The operating system and the different components available in the Mandriva "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandriva Linux distribution.\n"
+"\n"
+"\n"
+"1. Lisenziya Müqaviləsi\n"
+"\n"
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
+"Mandriva S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using the Software Products in any manner, you "
+"explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
+"Software Products.\n"
+"\n"
+"\n"
+"2. Hüdudlu Zəmanət\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
+"be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if Mandriva S.A. has been advised of the possibility or "
+"occurence of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
+"\n"
+"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
+"no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Mandriva Linux sites which are prohibited or restricted in some "
+"countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
+"included in the Software Products.\n"
+"\n"
+"\n"
+"3. GPL və Əlaqədar Lisenziyalar\n"
+"\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to Mandriva.\n"
+"The programs developed by Mandriva S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by Mandriva S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
+"\n"
+"\n"
+"4. İntelektual Sahiblik Hüquqları\n"
+"\n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
+"as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
+"Mandriva S.A. \n"
+"\n"
+"\n"
+"5. Hökümət Qanunları \n"
+"\n"
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
+"For any question on this document, please contact Mandriva S.A. \n"
+
+#: messages.pm:90
+#, c-format
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
+"Diqqət: Sərbəst Tə'minat daima patentsiz ola bilməz və daxil edilən bə'zi\n"
+"sərbəst tə'minat ölkənizdə patentlər tərəfindən qoruna bilər. Misal üçün,\n"
+"daxil edilən MP3 dekoderinin irəli istifadəsi üçün lisenziya lazım ola "
+"bilər.\n"
+"Əgər patentlərin sizə ait olub olmadığını bilmirsinizsə yerli qanunlarınızı\n"
+"gözdən keçirin."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:98
+#, c-format
+msgid ""
+"\n"
+"Warning\n"
+"\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
+"\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
+msgstr ""
+"\n"
+"Warning\n"
+"\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
+"\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a şəbəkə. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:131
+#, fuzzy, c-format
+msgid ""
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press Enter to reboot.\n"
+"\n"
+"\n"
+"For information on fixes which are available for this release of Mandriva "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandriva Linux User's Guide."
+msgstr ""
+"Təbrik edirik, qurulum başa çatdı.\n"
+"Cdrom və disketi çıxartdıqtan sonra Enter'ə basaraq kompüterinizi\n"
+"yenidən başladın.\n"
+"\n"
+"\n"
+"Mandriva Linux'in bu buraxılışındakı yamaqlar haqqında \n"
+"mə'lumat almaq üçün bu ünvana baxın: \n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Sisteminizin qurğuları haqqında daha geniş mə'lumatı Rəsmi\n"
+"Mandriva Linux İstifadəçi Kitabcığının qurulum sonrası bölməsində\n"
+"tapa bilərsiniz."
+
#: modules/interactive.pm:19
#, fuzzy, c-format
msgid "This driver has no configuration parameter!"
@@ -9659,12 +4990,7 @@ msgstr "%s kartı üçün sürücü %s qurulur"
msgid "Installing driver for %s card %s"
msgstr "%s kartı üçün sürücü %s qurulur"
-#: modules/interactive.pm:99
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
-
-#: modules/interactive.pm:109
+#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9673,7 +4999,7 @@ msgstr ""
"Siz indi %s moduluna seçimlə ötürə bilərsiniz.\n"
"Qeyd edin ki bütün ünvanlar 0x şəkilçisi ilə daxil edilməlidir, mis: '0x123'"
-#: modules/interactive.pm:115
+#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9684,18 +5010,18 @@ msgstr ""
"Parametrlər``ad=qiymət ad2=qiymət2...'' şəklində olmalıdır.\n"
"Məsələn ``io=0x300 irq=7''"
-#: modules/interactive.pm:117
+#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "Modul seçimləri:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: modules/interactive.pm:130
+#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hansı %s sürücüsü sınansın?"
-#: modules/interactive.pm:139
+#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -9712,17 +5038,17 @@ msgstr ""
"Bə'zən tanımlama kompüterinizi dondura bilər amma donduğu üçün\n"
"kompüterinizə heç bir şey olmaz."
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "Avtomatik yoxla"
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "Seçimləri müəyyən et"
-#: modules/interactive.pm:155
+#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -9731,1878 +5057,17 @@ msgstr ""
"%s modulunun yüklənməsi iflas etdi.\n"
"Yenidən başqa bir parametr ilə sınamaq istəyirsiniz?"
-#: modules/parameters.pm:49
-#, c-format
-msgid "a number"
-msgstr "ədəd"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d vergüllə ayrılmış ədəd"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d vergüllə ayrılmış qatar"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated numbers"
-msgstr "verqüllə ayrılmış ədədlər"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated strings"
-msgstr "verqüllə ayrılmış qatarlar"
-
-#: mouse.pm:25
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - Siçan"
-
-#: mouse.pm:31 security/level.pm:12
-#, c-format
-msgid "Standard"
-msgstr "Standart"
-
-#: mouse.pm:32
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: mouse.pm:33
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Sıravi PS2 Çərxli Siçan"
-
-#: mouse.pm:34
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/modem.pm:68 network/modem.pm:81 network/modem.pm:86
-#: network/modem.pm:115 network/netconnect.pm:596 network/netconnect.pm:601
-#: network/netconnect.pm:613 network/netconnect.pm:618
-#: network/netconnect.pm:634 network/netconnect.pm:636
-#, c-format
-msgid "Automatic"
-msgstr "Avtomatik"
-
-#: mouse.pm:39 mouse.pm:73
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Siçanı"
-
-#: mouse.pm:40 mouse.pm:68
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: mouse.pm:41
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: mouse.pm:42 mouse.pm:52
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
-
-#: mouse.pm:47 mouse.pm:79
-#, c-format
-msgid "1 button"
-msgstr "1 düymə"
-
-#: mouse.pm:48 mouse.pm:57
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Sıravi 2 Düyməli Siçan"
-
-#: mouse.pm:50 mouse.pm:59
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Çərx emulyasiyalı sıravi 3 düyməli siçan"
-
-#: mouse.pm:51
-#, c-format
-msgid "Wheel"
-msgstr "Çərx"
-
-#: mouse.pm:55
-#, c-format
-msgid "serial"
-msgstr "serial"
-
-#: mouse.pm:58
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Sıravi 3 Düyməli Siçan"
-
-#: mouse.pm:60
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: mouse.pm:61
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: mouse.pm:62
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Çərx emulyasiyalı Logitech MouseMan"
-
-#: mouse.pm:63
-#, c-format
-msgid "Mouse Systems"
-msgstr "Siçan Sistemləri"
-
-#: mouse.pm:65
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: mouse.pm:66
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Çərx emulyasiyalı Logitech CC Seriyaları"
-
-#: mouse.pm:67
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: mouse.pm:69
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
-
-#: mouse.pm:70
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: mouse.pm:71
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech mouse (serial ya da köhnə C7 növü)"
-
-#: mouse.pm:72
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Çərx emulyasiyalı Logitech siçan (serial, köhnə C7 növü)"
-
-#: mouse.pm:74
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Çərx emulyasiyalı Kensington Thinking siçanı"
-
-#: mouse.pm:77
-#, c-format
-msgid "busmouse"
-msgstr "busmouse"
-
-#: mouse.pm:80
-#, c-format
-msgid "2 buttons"
-msgstr "2 düyməli"
-
-#: mouse.pm:81
-#, c-format
-msgid "3 buttons"
-msgstr "3 düyməli"
-
-#: mouse.pm:82
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "Çərx emulyasiyalı 3 düymə"
-
-#: mouse.pm:86
-#, c-format
-msgid "Universal"
-msgstr "Universal"
-
-#: mouse.pm:88
-#, c-format
-msgid "Any PS/2 & USB mice"
-msgstr "Hər hansı bir PS/2 və USB siçan"
-
-#: mouse.pm:89
-#, fuzzy, c-format
-msgid "Microsoft Xbox Controller S"
-msgstr "Microsoft Explorer"
-
-#: mouse.pm:93 standalone/drakconnect:351 standalone/drakvpn:1126
-#, c-format
-msgid "none"
-msgstr "heç biri"
-
-#: mouse.pm:95
-#, c-format
-msgid "No mouse"
-msgstr "Siçansız"
-
-#: mouse.pm:304 mouse.pm:367 mouse.pm:376 mouse.pm:435
-#, c-format
-msgid "Synaptics Touchpad"
-msgstr ""
-
-#: mouse.pm:561
-#, c-format
-msgid "Please test the mouse"
-msgstr "Xahiş edirik, siçanınızı seçin"
-
-#: mouse.pm:563
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Siçanınızı işə salmaq üçün,"
-
-#: mouse.pm:564
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "SİÇANIN ÇƏRXİNİ OYNADIN!"
-
-#: network/drakfirewall.pm:12 share/compssUsers.pl:85
-#, c-format
-msgid "Web Server"
-msgstr "Veb Vericisi"
-
-#: network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "Domen Adı Vericisi"
-
-#: network/drakfirewall.pm:22
-#, c-format
-msgid "SSH server"
-msgstr "SSH vericisisi"
-
-#: network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "FTP vericisi"
-
-#: network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "Poçt Vericisi"
-
-#: network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP və IMAP Vericisi"
-
-#: network/drakfirewall.pm:42
-#, c-format
-msgid "Telnet server"
-msgstr "Telnet vericisi"
-
-#: network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr ""
-
-#: network/drakfirewall.pm:54
-#, c-format
-msgid "CUPS server"
-msgstr "CUPS vericisi"
-
-#: network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr "Echo istəyi (ping)"
-
-#: network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr ""
-
-#: network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr ""
-
-#: network/drakfirewall.pm:165
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-"drakfirewall quraşdırıcısı\n"
-"\n"
-"Bu, Mandriva Linux sisteminiz üçün şəxsi bir atəş divarını quraşdıracaq.\n"
-"Daha güclü və e'tibarlı sistem üçün xahiş edirik, xüsusi Mandriva Security\n"
-"Firewall buraxılışı ilə maraqlanın."
-
-#: network/drakfirewall.pm:171
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-"drakfirewall quraşdırıcısı\n"
-"\n"
-"Daha irəli getmədən Şəbəkə/İnternet bağlantınızı drakconnect\n"
-"vasitəsi ilə quraşdırdığınızdan əmin olun."
-
-#: network/drakfirewall.pm:188
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "İnternetin hansı xidmətlərə bağlana bilməsini istəyirsiniz?"
-
-#: network/drakfirewall.pm:191
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-"Müxtəlif qapılar daxil edə bilərsiniz. \n"
-"Hökmlü nümunələr: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Mə'lumat üçün /etc/services'a baxın."
-
-#: network/drakfirewall.pm:197
-#, fuzzy, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-"Hökmsüz qapı daxil edildi: %s.\n"
-"Düzgün şəkil \"port/tcp\" ya da \"port/udp\"dır, \n"
-"burada qapı 1 və 65535 arası ədəddir."
-
-#: network/drakfirewall.pm:207
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Hamısına (atəş divarı olmasın)"
-
-#: network/drakfirewall.pm:209
-#, c-format
-msgid "Other ports"
-msgstr "Diqər qapılar"
-
-#: network/drakfirewall.pm:253 network/drakfirewall.pm:256
-#: standalone/drakids:33 standalone/drakids:136 standalone/drakids:145
-#: standalone/drakids:170 standalone/drakids:179 standalone/drakids:189
-#: standalone/drakids:265 standalone/net_applet:59 standalone/net_applet:202
-#: standalone/net_applet:385 standalone/net_applet:422
-#, fuzzy, c-format
-msgid "Interactive Firewall"
-msgstr "Atəş Divarı"
-
-#: network/drakfirewall.pm:254
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activity should be watched."
-msgstr ""
-
-#: network/drakfirewall.pm:259
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr ""
-
-#: network/ifw.pm:129
-#, fuzzy, c-format
-msgid "Port scanning"
-msgstr "Bölüşmə yoxdur"
-
-#: network/ifw.pm:130
-#, fuzzy, c-format
-msgid "Service attack"
-msgstr "Xidmət _növü:"
-
-#: network/ifw.pm:131
-#, fuzzy, c-format
-msgid "Password cracking"
-msgstr "Şifrə (təkrar)"
-
-#: network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr ""
-
-#: network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:135
-#, fuzzy, c-format
-msgid "The %s service has been attacked by %s."
-msgstr "Bu hadisə dəyişdirilib."
-
-#: network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:137
-#, fuzzy, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr "Bu hadisə dəyişdirilib."
-
-#: network/isdn.pm:117 network/netconnect.pm:463 network/netconnect.pm:557
-#: network/netconnect.pm:560 network/netconnect.pm:708
-#: network/netconnect.pm:712
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr ""
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "İSA / PCMCİA"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "Bilmirəm"
-
-#: network/isdn.pm:161 network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCİ"
-
-#: network/isdn.pm:162 network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/netconnect.pm:601 network/netconnect.pm:618
-#: network/netconnect.pm:634
-#, c-format
-msgid "Manual"
-msgstr "Bələdçi"
-
-#: network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr ""
-
-#: network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr ""
-
-#: network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr ""
-
-#: network/ndiswrapper.pm:89
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr ""
-
-#: network/ndiswrapper.pm:95
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-
-#: network/ndiswrapper.pm:101
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr ""
-
-#: network/netconnect.pm:69 network/netconnect.pm:493
-#: network/netconnect.pm:505
-#, fuzzy, c-format
-msgid "Manual choice"
-msgstr "əllə"
-
-#: network/netconnect.pm:69
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Daxili ISDN kart"
-
-#: network/netconnect.pm:80 printer/printerdrake.pm:1622 standalone/drakups:72
-#, c-format
-msgid "Manual configuration"
-msgstr "Əllə quraşdırma"
-
-#: network/netconnect.pm:81 standalone/drakroam:121
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr "Avtomatik IP (BOOTP/DHCP)"
-
-#: network/netconnect.pm:83
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
-msgstr "Avtomatik IP (BOOTP/DHCP/Zeroconf)"
-
-#: network/netconnect.pm:86
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Dünyanın geri qalanı üçün protokol"
-
-#: network/netconnect.pm:88 standalone/drakconnect:563
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Avropa protokolu (EDSS1)"
-
-#: network/netconnect.pm:89 standalone/drakconnect:564
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Dünyanın geri qalanı üçün protokol \n"
-" D-Channel yoxdur (kiralıq xətlər)"
-
-#: network/netconnect.pm:103 standalone/harddrake2:328
-#: standalone/net_monitor:102 standalone/net_monitor:103
-#: standalone/net_monitor:108
-#, c-format
-msgid "unknown"
-msgstr "na'məlum"
-
-#: network/netconnect.pm:120 network/thirdparty.pm:220
-#, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "Alcatel speedtouch USB modem"
-
-#: network/netconnect.pm:121
-#, c-format
-msgid "Sagem USB modem"
-msgstr "Sagem USB modem"
-
-#: network/netconnect.pm:122
-#, c-format
-msgid "Bewan modem"
-msgstr "Bewan modem"
-
-#: network/netconnect.pm:123
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr "ECI Hi-Focus modem"
-
-#: network/netconnect.pm:127
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr "Dinamik Qovşaq Quraşdırma Protokolu (DHCP)"
-
-#: network/netconnect.pm:128
-#, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "Əllə TCP/IP quraşdırması"
-
-#: network/netconnect.pm:129
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr "Nöqtədən Nöqtəyə Tunelləmə Protokolu (PPTP)"
-
-#: network/netconnect.pm:130
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr "Eternet üstündən PPP (PPPoE)"
-
-#: network/netconnect.pm:131
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr "ATM üstündən PPP (PPPoA)"
-
-#: network/netconnect.pm:132
-#, c-format
-msgid "DSL over CAPI"
-msgstr ""
-
-#: network/netconnect.pm:136
-#, c-format
-msgid "Bridged Ethernet LLC"
-msgstr "Bridged Ethernet LLC"
-
-#: network/netconnect.pm:137
-#, c-format
-msgid "Bridged Ethernet VC"
-msgstr "Bridged Ethernet VC"
-
-#: network/netconnect.pm:138
-#, c-format
-msgid "Routed IP LLC"
-msgstr "Routed IP LLC"
-
-#: network/netconnect.pm:139
-#, c-format
-msgid "Routed IP VC"
-msgstr "Routed IP VC"
-
-#: network/netconnect.pm:140
-#, c-format
-msgid "PPPoA LLC"
-msgstr "PPPoA LLC"
-
-#: network/netconnect.pm:141
-#, c-format
-msgid "PPPoA VC"
-msgstr "PPPoA VC"
-
-#: network/netconnect.pm:145 standalone/drakconnect:498
-#, c-format
-msgid "Script-based"
-msgstr "Skript əsaslı"
-
-#: network/netconnect.pm:146 standalone/drakconnect:498
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: network/netconnect.pm:147 standalone/drakconnect:498
-#, c-format
-msgid "Terminal-based"
-msgstr "Terminal-əsaslı"
-
-#: network/netconnect.pm:148 standalone/drakconnect:498
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: network/netconnect.pm:149 standalone/drakconnect:498
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: network/netconnect.pm:250 standalone/drakconnect:56
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Şəbəkə və İnternet Qurğuları"
-
-#: network/netconnect.pm:256
-#, c-format
-msgid "LAN connection"
-msgstr "LAN bağlantısı"
-
-#: network/netconnect.pm:257 network/netconnect.pm:276 standalone/drakroam:182
-#: standalone/drakroam:220 standalone/drakroam:223
-#, c-format
-msgid "Wireless connection"
-msgstr "Kabelsiz bağlantı"
-
-#: network/netconnect.pm:258
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL bağlantısı"
-
-#: network/netconnect.pm:259
-#, c-format
-msgid "Cable connection"
-msgstr "Kabel bağlantısı"
-
-#: network/netconnect.pm:260
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN Bağlantısı"
-
-#: network/netconnect.pm:261
-#, c-format
-msgid "Modem connection"
-msgstr "Modem bağlantısı"
-
-#: network/netconnect.pm:262
-#, c-format
-msgid "DVB connection"
-msgstr ""
-
-#: network/netconnect.pm:272
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Qurğulamaq istədiyiniz bağlantını seçin"
-
-#: network/netconnect.pm:287 network/netconnect.pm:786
-#, c-format
-msgid "Connection Configuration"
-msgstr "Bağlantı quraşdırılması"
-
-#: network/netconnect.pm:287 network/netconnect.pm:787
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Xahiş edirik, aşağıdakıları doldurun ya da seçin"
-
-#: network/netconnect.pm:290
-#, c-format
-msgid "Your personal phone number"
-msgstr "Şəxsi telefon nömrəniz"
-
-#: network/netconnect.pm:291 network/netconnect.pm:790
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "İnternet xidmət vericinizin adı (məsələn azeronline.com)"
-
-#: network/netconnect.pm:292 standalone/drakconnect:493
-#, c-format
-msgid "Provider phone number"
-msgstr "İXM telefon nömrəsi"
-
-#: network/netconnect.pm:293
-#, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "Provayder DNS-i 1 (arzuya görə)"
-
-#: network/netconnect.pm:294
-#, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "Provayder DNS-i 2 (arzuya görə)"
-
-#: network/netconnect.pm:295 standalone/drakconnect:444
-#, c-format
-msgid "Dialing mode"
-msgstr "Yığma modu"
-
-#: network/netconnect.pm:296 standalone/drakconnect:449
-#: standalone/drakconnect:517
-#, c-format
-msgid "Connection speed"
-msgstr "Bağlantı sürəti"
-
-#: network/netconnect.pm:297 standalone/drakconnect:454
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Bağlantı vaxt dolması (saniyə sonra)"
-
-#: network/netconnect.pm:298 network/netconnect.pm:323
-#: network/netconnect.pm:793 standalone/drakconnect:491
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Hesab Girişi (istifadəçi adı)"
-
-#: network/netconnect.pm:299 network/netconnect.pm:324
-#: network/netconnect.pm:794 standalone/drakconnect:492
-#, c-format
-msgid "Account Password"
-msgstr "Hesap Şifrəsi"
-
-#: network/netconnect.pm:300 standalone/drakconnect:554
-#, c-format
-msgid "Card IRQ"
-msgstr "Kart IRQ"
-
-#: network/netconnect.pm:301 standalone/drakconnect:555
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Kart mem (DMA)"
-
-#: network/netconnect.pm:302 standalone/drakconnect:556
-#, c-format
-msgid "Card IO"
-msgstr "Kart GÇ"
-
-#: network/netconnect.pm:303 standalone/drakconnect:557
-#, c-format
-msgid "Card IO_0"
-msgstr "Kart IO_0"
-
-#: network/netconnect.pm:304
-#, c-format
-msgid "Card IO_1"
-msgstr "Kart IO_1"
-
-#: network/netconnect.pm:319
-#, fuzzy, c-format
-msgid "Cable: account options"
-msgstr "Dialup: hesab seçimləri"
-
-#: network/netconnect.pm:322
-#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr ""
-
-#: network/netconnect.pm:348 network/netconnect.pm:670
-#: network/netconnect.pm:826 network/netconnect.pm:1170
-#, c-format
-msgid "Select the network interface to configure:"
-msgstr "Quraşdırılacaq şəbəkə ara üzünü seç:"
-
-#: network/netconnect.pm:350 network/netconnect.pm:385
-#: network/netconnect.pm:671 network/netconnect.pm:828 network/shorewall.pm:70
-#: standalone/drakconnect:714
-#, c-format
-msgid "Net Device"
-msgstr "Şəbəkə Avadanlığı"
-
-#: network/netconnect.pm:351 network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr "Xarici ISDN modem"
-
-#: network/netconnect.pm:384 standalone/harddrake2:215
-#, c-format
-msgid "Select a device!"
-msgstr "Avadanlıq seçin !"
-
-#: network/netconnect.pm:393 network/netconnect.pm:403
-#: network/netconnect.pm:413 network/netconnect.pm:446
-#: network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "ISDN quraşdırılması"
-
-#: network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Hansı növ kartınız var?"
-
-#: network/netconnect.pm:404
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"İSA kartınız var isə sonrakı ekrandakı qiymətlər doğru olmalıdır.\n"
-"\n"
-"PCMCİA kartınız var isə kartınızın \"irq\" və ya \"io\"sunu bilməlisiniz.\n"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "Davam et"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "Dayandır"
-
-#: network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Hansı sizin ISDN kartınızdır?"
-
-#: network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-
-#: network/netconnect.pm:434 standalone/drakconnect:109 standalone/drakups:249
-#: standalone/harddrake2:133
-#, c-format
-msgid "Driver"
-msgstr "Sürücü"
-
-#: network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Hansı protokolu istifadə etmək istəyirsiniz?"
-
-#: network/netconnect.pm:448 standalone/drakconnect:109
-#: standalone/drakconnect:300 standalone/drakconnect:562
-#: standalone/drakids:207 standalone/drakvpn:1128
-#, c-format
-msgid "Protocol"
-msgstr "Protokol"
-
-#: network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"İnternet xidmət vericinizi seçin.\n"
-"Siyahıda deyilsə Siyahıda deyil'-i seçin."
-
-#: network/netconnect.pm:462 network/netconnect.pm:556
-#: network/netconnect.pm:707
-#, c-format
-msgid "Provider:"
-msgstr "Provayder: "
-
-#: network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"Modeminiz sistem tərəfindən dəstəklənmir.\n"
-"http://www.linmodems.org ünvanına baxın"
-
-#: network/netconnect.pm:490
-#, c-format
-msgid "Select the modem to configure:"
-msgstr "Quraşdırılacaq modemi seçin:"
-
-#: network/netconnect.pm:525
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-
-#: network/netconnect.pm:554
-#, c-format
-msgid "Select your provider:"
-msgstr "Provayderinizi seçin:"
-
-#: network/netconnect.pm:578
-#, c-format
-msgid "Dialup: account options"
-msgstr "Dialup: hesab seçimləri"
-
-#: network/netconnect.pm:581
-#, c-format
-msgid "Connection name"
-msgstr "Bağlantı adı"
-
-#: network/netconnect.pm:582
-#, c-format
-msgid "Phone number"
-msgstr "Telefon nömrəsi"
-
-#: network/netconnect.pm:583
-#, c-format
-msgid "Login ID"
-msgstr "Giriş adı"
-
-#: network/netconnect.pm:598 network/netconnect.pm:631
-#, c-format
-msgid "Dialup: IP parameters"
-msgstr "Dialup: IP parametrləri"
-
-#: network/netconnect.pm:601
-#, c-format
-msgid "IP parameters"
-msgstr "IP parametrləri"
-
-#: network/netconnect.pm:602 network/netconnect.pm:941
-#: printer/printerdrake.pm:460 standalone/drakconnect:109
-#: standalone/drakconnect:316 standalone/drakconnect:882
-#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:284
-#, c-format
-msgid "IP address"
-msgstr "IP ünvanı"
-
-#: network/netconnect.pm:603
-#, c-format
-msgid "Subnet mask"
-msgstr "Subnet maskası"
-
-#: network/netconnect.pm:615
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr "Dialup: DNS parametrləri"
-
-#: network/netconnect.pm:618
-#, c-format
-msgid "DNS"
-msgstr "DNS"
-
-#: network/netconnect.pm:619
-#, c-format
-msgid "Domain name"
-msgstr "Domen adı"
-
-#: network/netconnect.pm:620 network/netconnect.pm:791
-#: standalone/drakconnect:992
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Birinci DNS Vericisi (arzuya görə)"
-
-#: network/netconnect.pm:621 network/netconnect.pm:792
-#: standalone/drakconnect:993
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "İkinci DNS Vericisi (arzuya görə)"
-
-#: network/netconnect.pm:622
-#, c-format
-msgid "Set hostname from IP"
-msgstr "IP-dən qovşaq adını seç"
-
-#: network/netconnect.pm:634 standalone/drakconnect:327
-#, c-format
-msgid "Gateway"
-msgstr "Şəbəkə Keçidi"
-
-#: network/netconnect.pm:635 standalone/drakroam:124
-#, c-format
-msgid "Gateway IP address"
-msgstr "Şəbəkə keçişi IP ünvanı"
-
-#: network/netconnect.pm:670
-#, c-format
-msgid "ADSL configuration"
-msgstr "ADSL quraşdırılması"
-
-#: network/netconnect.pm:705
-#, c-format
-msgid "Please choose your ADSL provider"
-msgstr "Xahiş edirik, ADSL provayderinizi seçin"
-
-#: network/netconnect.pm:735
-#, c-format
-msgid ""
-"Please choose your DSL connection type.\n"
-"If you do not know it, keep the preselected type."
-msgstr ""
-
-#: network/netconnect.pm:738
-#, c-format
-msgid "ADSL connection type:"
-msgstr "ADSL bağlantısı növü: "
-
-#: network/netconnect.pm:796
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr "Virtual Path ID (VPI):"
-
-#: network/netconnect.pm:797
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr "Virtual Circuit ID (VCI):"
-
-#: network/netconnect.pm:800
-#, c-format
-msgid "Encapsulation:"
-msgstr "Enkapsulyasiya :"
-
-#: network/netconnect.pm:830
-#, c-format
-msgid "Manually load a driver"
-msgstr ""
-
-#: network/netconnect.pm:831
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr ""
-
-#: network/netconnect.pm:896
-#, c-format
-msgid "Zeroconf hostname resolution"
-msgstr "Zeroconf qovşaq adı həlli"
-
-#: network/netconnect.pm:897 network/netconnect.pm:928
-#, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "%s şəbəkə avadanlığı qurulur (sürücü %s) "
-
-#: network/netconnect.pm:898
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use"
-msgstr ""
-
-#: network/netconnect.pm:929
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Xahiş edirik, bu kompüter üçün IP qurğularını girin.\n"
-"Hər üzv nöqtəli onluq IP şəklində girilməlidir,\n"
-"(misal üçün 1.2.3.4)."
-
-#: network/netconnect.pm:936 standalone/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "DHCP ünvanı üçün qovşaq adı tə'yin edin"
-
-#: network/netconnect.pm:937 standalone/drakconnect:375
-#, c-format
-msgid "DHCP host name"
-msgstr "DHCP qovşaq adı"
-
-#: network/netconnect.pm:942 standalone/drakconnect:321
-#: standalone/drakconnect:883 standalone/drakgw:181
-#, c-format
-msgid "Netmask"
-msgstr "Netmask"
-
-#: network/netconnect.pm:944 standalone/drakconnect:437
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Şəbəkə kartının id'sini izlə (laptoplar üçün faydalıdır)"
-
-#: network/netconnect.pm:945 standalone/drakconnect:438
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Ani Şəbəkə Fəallaşdırılması (Network Hotplugging)"
-
-#: network/netconnect.pm:947 standalone/drakconnect:432
-#, c-format
-msgid "Start at boot"
-msgstr "Açılışda başlat"
-
-#: network/netconnect.pm:949 standalone/drakconnect:460
-#, fuzzy, c-format
-msgid "Metric"
-msgstr "məhdudlaşdır"
-
-#: network/netconnect.pm:950
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr ""
-
-#: network/netconnect.pm:952 standalone/drakconnect:369
-#: standalone/drakconnect:886
-#, c-format
-msgid "DHCP client"
-msgstr "DHCP alıcısı"
-
-#: network/netconnect.pm:954 standalone/drakconnect:379
-#, fuzzy, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "Bağlantı vaxt dolması (saniyə sonra)"
-
-#: network/netconnect.pm:955 standalone/drakconnect:382
-#, fuzzy, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "DNS Verici IP'si"
-
-#: network/netconnect.pm:956 standalone/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:957 standalone/drakconnect:384
-#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:965 printer/printerdrake.pm:1876
-#: standalone/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
-
-#: network/netconnect.pm:969 standalone/drakconnect:680
-#, fuzzy, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "Şəbəkə keçişi ünvanı 1.2.3.4 şəklində olmalıdır"
-
-#: network/netconnect.pm:973
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr "Xəbərdarlıq : %s IP ünvanı çox vaxt tutulmuş olur !"
-
-#: network/netconnect.pm:978 standalone/drakTermServ:1927
-#: standalone/drakTermServ:1928 standalone/drakTermServ:1929
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s onsuzda istifadədədir\n"
-
-#: network/netconnect.pm:1018
-#, fuzzy, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "Səbəbsiz bir sürücü seçilir"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr ""
-
-#: network/netconnect.pm:1020
-#, fuzzy, c-format
-msgid "Install a new driver"
-msgstr "Sistemin qurulumu"
-
-#: network/netconnect.pm:1032
-#, c-format
-msgid "Select a device:"
-msgstr ""
-
-#: network/netconnect.pm:1061
-#, c-format
-msgid "Please enter the wireless parameters for this card:"
-msgstr ""
-
-#: network/netconnect.pm:1064 standalone/drakconnect:404
-#: standalone/drakroam:52
-#, c-format
-msgid "Operating Mode"
-msgstr "İdrə Modu"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Ad-hoc"
-msgstr "Ad-hoc"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Managed"
-msgstr "İdarə edilən"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Master"
-msgstr "Əsas"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Repeater"
-msgstr "Təkrarlayıcı"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Secondary"
-msgstr "İkinci"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Auto"
-msgstr "Avtomatik"
-
-#: network/netconnect.pm:1068 standalone/drakconnect:405
-#: standalone/drakroam:115
-#, c-format
-msgid "Network name (ESSID)"
-msgstr "Şəbəkə adı (ESSID)"
-
-#: network/netconnect.pm:1069 standalone/drakroam:116
-#, c-format
-msgid "Encryption mode"
-msgstr ""
-
-#: network/netconnect.pm:1074
-#, c-format
-msgid "Allow access point roaming"
-msgstr ""
-
-#: network/netconnect.pm:1076 standalone/drakconnect:406
-#, c-format
-msgid "Network ID"
-msgstr "Şəbəkə ID-si"
-
-#: network/netconnect.pm:1077 standalone/drakconnect:407
-#, c-format
-msgid "Operating frequency"
-msgstr "İşləmə tezliyi"
-
-#: network/netconnect.pm:1078 standalone/drakconnect:408
-#, c-format
-msgid "Sensitivity threshold"
-msgstr "Həssaslıq aralığı"
-
-#: network/netconnect.pm:1079 standalone/drakconnect:409
-#, c-format
-msgid "Bitrate (in b/s)"
-msgstr "Vuruş sıxlığı (v/s olaraq)"
-
-#: network/netconnect.pm:1080 standalone/drakconnect:420
-#, c-format
-msgid "RTS/CTS"
-msgstr "RTS/CTS"
-
-#: network/netconnect.pm:1081
-#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
-
-#: network/netconnect.pm:1088 standalone/drakconnect:421
-#, c-format
-msgid "Fragmentation"
-msgstr "Fraqmentasiya"
-
-#: network/netconnect.pm:1089 standalone/drakconnect:422
-#, c-format
-msgid "iwconfig command extra arguments"
-msgstr "iwconfig əmri əlavə arqumentləri"
-
-#: network/netconnect.pm:1090
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-
-#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1097 standalone/drakconnect:423
-#, c-format
-msgid "iwspy command extra arguments"
-msgstr "iwspy əmri əlavə arqumentləri"
-
-#: network/netconnect.pm:1098
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-
-#: network/netconnect.pm:1107 standalone/drakconnect:424
-#, c-format
-msgid "iwpriv command extra arguments"
-msgstr "iwpriv əmri əlavə arqumentləri"
-
-#: network/netconnect.pm:1108
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-
-#: network/netconnect.pm:1123
-#, c-format
-msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
-msgstr ""
-"Tezliyin yanına k, M ya da G şəkilçisi qoyulmalıdır (misal üçün, 2.46 GHz "
-"tezlik üçün \"2.46G\" ), ya da lazım olan qədər '0' (sıfır) əlavə edin."
-
-#: network/netconnect.pm:1127
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-"Sıxlığın yanına k, M ya da G şəkilçisi qoyulmalıdır (misal üçün, 11M üçün "
-"\"11M\" ), ya da lazım olan qədər '0' (sıfır) əlavə edin."
-
-#: network/netconnect.pm:1170
-#, c-format
-msgid "DVB configuration"
-msgstr ""
-
-#: network/netconnect.pm:1171
-#, c-format
-msgid "DVB Adapter"
-msgstr ""
-
-#: network/netconnect.pm:1188
-#, c-format
-msgid "DVB adapter settings"
-msgstr ""
-
-#: network/netconnect.pm:1191
-#, c-format
-msgid "Adapter card"
-msgstr ""
-
-#: network/netconnect.pm:1192
-#, c-format
-msgid "Net demux"
-msgstr ""
-
-#: network/netconnect.pm:1193
-#, c-format
-msgid "PID"
-msgstr "PID"
-
-#: network/netconnect.pm:1221
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Xahiş edirik, kompüterinizn adını girin.\n"
-"Məsələn``kompüteradı.sahəadı.com''.\n"
-"Əgər şəbəkə keçidi istifadə edirsinizsə bunun da IP nömrəsini girməlisiniz."
-
-#: network/netconnect.pm:1226
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr ""
-
-#: network/netconnect.pm:1228 standalone/drakconnect:991
-#, c-format
-msgid "Host name (optional)"
-msgstr "Qovşaq adı (arzuya görə)"
-
-#: network/netconnect.pm:1228 standalone/drakhosts:197
-#, c-format
-msgid "Host name"
-msgstr "Ev sahibi adı"
-
-#: network/netconnect.pm:1230
-#, c-format
-msgid "DNS server 1"
-msgstr "DNS vericisi 1"
-
-#: network/netconnect.pm:1231
-#, c-format
-msgid "DNS server 2"
-msgstr "DNS vericisi 2"
-
-#: network/netconnect.pm:1232
-#, c-format
-msgid "DNS server 3"
-msgstr "DNS vericisi 3"
-
-#: network/netconnect.pm:1233
-#, c-format
-msgid "Search domain"
-msgstr "Axtarış domeni"
-
-#: network/netconnect.pm:1234
-#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr ""
-
-#: network/netconnect.pm:1235
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Şəbəkə Keçidi (mis. %s)"
-
-#: network/netconnect.pm:1237
-#, c-format
-msgid "Gateway device"
-msgstr "Şəbəkə keçidi avadanlığı"
-
-#: network/netconnect.pm:1246
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "DNS vericisi ünvanı 1.2.3.4 şəklində olmalıdır"
-
-#: network/netconnect.pm:1251 standalone/drakconnect:685
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Şəbəkə keçişi ünvanı 1.2.3.4 şəklində olmalıdır"
-
-#: network/netconnect.pm:1264
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-
-#: network/netconnect.pm:1268
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Zeroconf Qovşaq adı"
-
-#: network/netconnect.pm:1271
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "Zeroconf qovşaq adı . (nöqtə) daxil edə bilməz"
-
-#: network/netconnect.pm:1281
-#, fuzzy, c-format
-msgid "Do you want to allow users to start the connection?"
-msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
-
-#: network/netconnect.pm:1294
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
-
-#: network/netconnect.pm:1310
-#, fuzzy, c-format
-msgid "Automatically at boot"
-msgstr "Açılışda başlat"
-
-#: network/netconnect.pm:1312
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr ""
-
-#: network/netconnect.pm:1314
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr ""
-
-#: network/netconnect.pm:1323
-#, fuzzy, c-format
-msgid "How do you want to dial this connection?"
-msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
-
-#: network/netconnect.pm:1336
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "İndi internetə bağlanmağı sınamaq istəyirsiniz?"
-
-#: network/netconnect.pm:1344 standalone/drakconnect:1023
-#, c-format
-msgid "Testing your connection..."
-msgstr "Bağlantınız sınanır..."
-
-#: network/netconnect.pm:1369
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Sistem indi İnternetə bağlıdır."
-
-#: network/netconnect.pm:1370
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Təhlükəsizlik səbəbi ilə, indi bağlantı qopacaqdır."
-
-#: network/netconnect.pm:1371
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Sisteminiz İnternetə bağlı görünmür.\n"
-"Bağlantınızı yenidən quraşdırın."
-
-#: network/netconnect.pm:1386
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-"Təbrik edirik, internet və şəbəkə quraşdırılması bitdi.\n"
-"\n"
-
-#: network/netconnect.pm:1389
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Bu edildikdən sonra Xdən çıxmağınızı tövsiyyə edirik, yoxsa\n"
-"verici adı xəsarətləri meydana gələ bilər."
-
-#: network/netconnect.pm:1390
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-"Quraşdırma sırasında xətalar yarandı.\n"
-"net_monitor ya da mcc vasitəsiylə bağlantınızı sınayın. Əgər "
-"bağlantınızyoxdursa, quraşdırmanı yenidən başladın."
-
-#: network/netconnect.pm:1402
-#, c-format
-msgid "(detected on port %s)"
-msgstr "(%s qapısında tapıldı)"
-
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected %s)"
-msgstr "(%s tapıldı)"
-
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected)"
-msgstr "(tapıldı)"
-
-#: network/netconnect.pm:1405
-#, c-format
-msgid "Network Configuration"
-msgstr "Şəbəkə Quraşdırılması"
-
-#: network/netconnect.pm:1406
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Şəbəkədən quraşdırması apardığınız üçün şəbəkəniz onsuzda quruludur.\n"
-"Qurğuları saxlamaq üçün Oldu'ya, İnternet və Şəbəkə qurğularınızı yenidən "
-"quraşdırmaq üçün isə Ləğv et'ə basın.\n"
-
-#: network/netconnect.pm:1409
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr "Şəbəkə yenidən başladılmalıdır. Yenidən başlatmaq istəyirsiniz?"
-
-#: network/netconnect.pm:1410
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Şəbəkənin yenidən başladılması sırasında xəta oldu: \n"
-"\n"
-"%s"
-
-#: network/netconnect.pm:1411
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-"İndi %s bağlantısı qurğulanacaq.\n"
-"\n"
-"\n"
-"Davam etmək üçün \"%s\" düyməsinə basın."
-
-#: network/netconnect.pm:1412
-#, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr "Quraşdırma qurtardı, dəyişiklikləri tətbiq etmək istəyirsiniz ?"
-
-#: network/netconnect.pm:1413
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Siz İnternetə bağlanmanın bir neçə yöntəmini quraşdırmışsınız.\n"
-"İstifadə etmək istədiyinizi seçin.\n"
-"\n"
-
-#: network/netconnect.pm:1414
-#, c-format
-msgid "Internet connection"
-msgstr "İnternet bağlantısı"
-
-#: network/netconnect.pm:1428
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-"Gözlənilməyən xəta baş verdi:\n"
-"%s"
-
-#: network/network.pm:411
-#, c-format
-msgid "Proxies configuration"
-msgstr "Vəkil vericilər quraşdırılması"
-
-#: network/network.pm:412
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-
-#: network/network.pm:413
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP vəkil verici"
-
-#: network/network.pm:414
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: network/network.pm:415
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: network/network.pm:416
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP vəkili"
-
-#: network/network.pm:420
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Vəkil http://... şəklində olmalıdır."
-
-#: network/network.pm:421
-#, c-format
-msgid "Proxy should be https?://..."
-msgstr ""
-
-#: network/network.pm:422
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URL 'ftp:' ya da 'http:' ilə başlamalıdır"
-
-#: network/shorewall.pm:55
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-"Xahiş edirik, internetə bağlı olan ara üzün adını dirin.\n"
-"\n"
-"Nömunələr:\n"
-"\t\tppp+ modem ya da DSL bağlantıları üçün, \n"
-"\t\teth0, ya da eth1 kabel bağlantıları üçün, \n"
-"\t\tippp+ isdn bağlantısı üçün.\n"
-
-#: network/thirdparty.pm:232
-#, fuzzy, c-format
-msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
-msgstr ""
-"Alcatel mikrokoduna ehtiyacınız var.\n"
-"Onu buradan endirib:\n"
-"%s\n"
-"/usr/share/speedtouch içinə mgmt.o adı ilə köçürün"
-
-#: network/thirdparty.pm:241
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-
-#: network/thirdparty.pm:321
-#, fuzzy, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "Xorg paketi qurula bilmir: %s"
-
-#: network/thirdparty.pm:329
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr ""
-
-#: network/thirdparty.pm:330
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-
-#: network/thirdparty.pm:332
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-
-#: network/thirdparty.pm:372
-#, fuzzy, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "Siseminizdəki yazı növlərini silin"
-
-#: network/thirdparty.pm:374
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr ""
-
-#: network/thirdparty.pm:384
-#, c-format
-msgid "Insert floppy"
-msgstr "Disket daxil edin"
-
-#: network/thirdparty.pm:385
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"Kök cərgəsində %2$s olan FAT ilə şəkilləndirilmiş %1$s disketini taxın və %3"
-"$s düyməsinə basın"
-
-#: network/thirdparty.pm:395
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Disketə icazə xətası, %s avadanlığı bağlana bilmədi"
-
-#: network/thirdparty.pm:405
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-"Alcatel mikrokoduna ehtiyacınız var.\n"
-"Onu indi bir disket ya da windows bölməsi vasitəsiylə verə\n"
-"bilərsiniz, ya da keçib daha sonra edə bilərsiniz."
-
-#: network/thirdparty.pm:409 network/thirdparty.pm:411
-#, c-format
-msgid "Use a floppy"
-msgstr "Disket işlət"
-
-#: network/thirdparty.pm:409
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Windows bölməmi işlət"
-
-#: network/thirdparty.pm:419
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "Firmware köçürülməsi bacarılmadı, %s faylı tapılmadı"
-
-#: network/thirdparty.pm:424 standalone/drakautoinst:250
-#: standalone/drakvpn:888 standalone/scannerdrake:422
-#, c-format
-msgid "Congratulations!"
-msgstr "Təbriklər!"
-
-#: network/thirdparty.pm:424
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "Firmware köçürülməsində müvəffəqiyyət"
-
-#: network/thirdparty.pm:493
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr ""
-
-#: network/thirdparty.pm:498
-#, fuzzy, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "Xahiş edirik gözləyin, avadanlıqlar tapılır və quraşdırılır..."
-
-#: network/wireless.pm:8
-#, c-format
-msgid "Open WEP"
-msgstr ""
-
-#: network/wireless.pm:9
-#, c-format
-msgid "Restricted WEP"
-msgstr ""
-
-#: network/wireless.pm:10
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr ""
-
-#: partition_table.pm:391
+#: partition_table.pm:390
#, c-format
msgid "mount failed: "
msgstr "bağlama bacarılmadı: "
-#: partition_table.pm:496
+#: partition_table.pm:500
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Bu platformda genişlədilmiş bölmələr dəstəklənmir"
-#: partition_table.pm:514
+#: partition_table.pm:518
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
@@ -11613,22 +5078,27 @@ msgstr ""
"Bu boşluğu, genişlədilmiş bölmənin yanına daşımaq üçünbirinci bölmənizi "
"daşımalısınız."
-#: partition_table.pm:605
+#: partition_table.pm:597
+#, c-format
+msgid "Error reading file %s"
+msgstr "%s faylı oxunurkan xəta oldu"
+
+#: partition_table.pm:604
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "%s faylından geri yükləmə xətası: %s"
-#: partition_table.pm:607
+#: partition_table.pm:606
#, c-format
msgid "Bad backup file"
msgstr "Xətalı ehtiyat faylı"
-#: partition_table.pm:627
+#: partition_table.pm:626
#, c-format
msgid "Error writing to file %s"
msgstr "%s faylına yazma xətası"
-#: partition_table/raw.pm:253
+#: partition_table/raw.pm:264
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
@@ -11640,3409 +5110,48 @@ msgstr ""
"Mə'lumatın bütövlüyünün yoxlanması bacarılmadı. \n"
"Bu o demekdir ki diskə yazılan hər şey təsadüfi və pozulmuş olacaq."
-#: pkgs.pm:21
-#, c-format
-msgid "must have"
-msgstr "sınamağa dəyər"
-
-#: pkgs.pm:22
-#, c-format
-msgid "important"
-msgstr "vacib"
-
-#: pkgs.pm:23
-#, c-format
-msgid "very nice"
-msgstr "çox ə'la"
-
-#: pkgs.pm:24
-#, c-format
-msgid "nice"
-msgstr "ə'la"
-
-#: pkgs.pm:25
-#, c-format
-msgid "maybe"
-msgstr "bəlkə"
-
-#: pkgs.pm:474
-#, fuzzy, c-format
-msgid "Downloading file %s..."
-msgstr "Fayllar göndərilir..."
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on %s)"
-msgstr "(%s üstündə)"
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on this machine)"
-msgstr "(bu sistem üstündə)"
-
-#: printer/cups.pm:117 standalone/printerdrake:200
-#, c-format
-msgid "Configured on other machines"
-msgstr "Digər kompüterlər üstündə quraşdırılmış olan"
-
-#: printer/cups.pm:119
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "\"%s\" CUPS vericisi üstündə"
-
-#: printer/cups.pm:119 printer/printerdrake.pm:4909
-#: printer/printerdrake.pm:4919 printer/printerdrake.pm:5078
-#: printer/printerdrake.pm:5089 printer/printerdrake.pm:5303
-#, c-format
-msgid " (Default)"
-msgstr " (Əsas)"
-
-#: printer/data.pm:67
-#, c-format
-msgid "PDQ - Print, Do not Queue"
-msgstr "PDQ - Çap et, Növbəyə alma"
-
-#: printer/data.pm:68
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: printer/data.pm:80
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Sətir Çapçı Demonu"
-
-#: printer/data.pm:81
-#, c-format
-msgid "LPD"
-msgstr "LPD"
-
-#: printer/data.pm:102
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR Yeni Nəsil"
-
-#: printer/data.pm:103
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
-
-#: printer/data.pm:128
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Ümumi Unix Çap Sistemi"
-
-#: printer/data.pm:158
-#, fuzzy, c-format
-msgid "CUPS - Common Unix Printing System (remote server)"
-msgstr "CUPS - Ümumi Unix Çap Sistemi"
-
-#: printer/data.pm:159
-#, fuzzy, c-format
-msgid "Remote CUPS"
-msgstr "Uzaq CUPS vericisi"
-
-#: printer/detect.pm:168 printer/detect.pm:263 printer/detect.pm:498
-#: printer/detect.pm:571 printer/main.pm:330 printer/main.pm:692
-#: printer/main.pm:1815 printer/printerdrake.pm:960
-#: printer/printerdrake.pm:1120 printer/printerdrake.pm:2448
-#: printer/printerdrake.pm:4004
-#, c-format
-msgid "Unknown model"
-msgstr "Namə'lum model"
-
-#: printer/main.pm:24
-#, c-format
-msgid "Local printer"
-msgstr "Yerli Çapçı"
-
-#: printer/main.pm:25
-#, c-format
-msgid "Remote printer"
-msgstr "Uzaq Çapçı"
-
-#: printer/main.pm:26
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Uzaq CUPS vericisi üstündəki çapçı"
-
-#: printer/main.pm:27 printer/printerdrake.pm:1360
-#: printer/printerdrake.pm:1899
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Uzaq lpd vericisi üstündəki çapçı"
-
-#: printer/main.pm:28
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Şəbəkə çapçısı (TCP/Soket) "
-
-#: printer/main.pm:29
-#, fuzzy, c-format
-msgid "Printer on SMB/Windows server"
-msgstr "SMB/Windows 95/98/NT üstündə çapçı"
-
-#: printer/main.pm:30
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "NetWare Vericisi üstündəki çapçı"
-
-#: printer/main.pm:31 printer/printerdrake.pm:1903
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Çapçı avadanlığı URI'sini girin"
-
-#: printer/main.pm:32
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Vəzifəni əmrin içinə borula"
-
-#: printer/main.pm:43
-#, c-format
-msgid "recommended"
-msgstr "məsləhət edilən"
-
-#: printer/main.pm:355 standalone/printerdrake:199
-#, c-format
-msgid "Configured on this machine"
-msgstr "Bu kompüter üstündə quraşdırılmış olan"
-
-#: printer/main.pm:361 printer/printerdrake.pm:1445
-#, c-format
-msgid " on parallel port #%s"
-msgstr " %s paralel qapısında"
-
-#: printer/main.pm:364 printer/printerdrake.pm:1448
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", USB çapçı #%s"
-
-#: printer/main.pm:366
-#, c-format
-msgid ", USB printer"
-msgstr ", USB çapçı"
-
-#: printer/main.pm:370
-#, c-format
-msgid ", HP printer on a parallel port"
-msgstr ", paralel qapıdakı HP çapçı"
-
-#: printer/main.pm:372
-#, c-format
-msgid ", HP printer on USB"
-msgstr ", USB üstündəkı HP çapçı"
-
-#: printer/main.pm:374
-#, c-format
-msgid ", HP printer on HP JetDirect"
-msgstr ", HP JetDirect üstündəkı HP çapçı"
-
-#: printer/main.pm:376
-#, c-format
-msgid ", HP printer"
-msgstr ", HP çapçı"
-
-#: printer/main.pm:382
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", %s nömrəli paralel qapıdakı çox funksiyalı avadanlıq"
-
-#: printer/main.pm:385
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", paralel qapıdakı çox funksiyalı avadanlıq"
-
-#: printer/main.pm:387
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", USB üstündə çox funksiyalı avadanlıq"
-
-#: printer/main.pm:389
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", HP JetDirect üstündə çox funksiyalı avadanlıq"
-
-#: printer/main.pm:391
-#, c-format
-msgid ", multi-function device"
-msgstr ", çox funksiyalı avadanlıq"
-
-#: printer/main.pm:395
-#, c-format
-msgid ", printing to %s"
-msgstr ", %s'a çap edilir"
-
-#: printer/main.pm:398
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr " \"%s\" LPD vericisi üstündə, \"%s\" çapçısı"
-
-#: printer/main.pm:401
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP qovşaq \"%s\", qapı %s"
-
-#: printer/main.pm:406
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr " SMB/Windows vericisi üstündə \"%s\", bölüşülmüş sahə \"%s\""
-
-#: printer/main.pm:411
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " Novell vericisi üstündə \"%s\", çapçı \"%s\""
-
-#: printer/main.pm:414
-#, c-format
-msgid ", using command %s"
-msgstr ", %s əmri ilə"
-
-#: printer/main.pm:429
-#, c-format
-msgid "Parallel port #%s"
-msgstr "%s nömrəli paralel qapı"
-
-#: printer/main.pm:432 printer/printerdrake.pm:1466
-#: printer/printerdrake.pm:1493 printer/printerdrake.pm:1508
-#, c-format
-msgid "USB printer #%s"
-msgstr "USB çapçı #%s"
-
-#: printer/main.pm:434
-#, c-format
-msgid "USB printer"
-msgstr "USB çapçı"
-
-#: printer/main.pm:438
-#, c-format
-msgid "HP printer on a parallel port"
-msgstr "paralel qapıdakı HP çapçı"
-
-#: printer/main.pm:440
-#, c-format
-msgid "HP printer on USB"
-msgstr "USB üstündəkı HP çapçı"
-
-#: printer/main.pm:442
-#, c-format
-msgid "HP printer on HP JetDirect"
-msgstr "HP JetDirect üstündəkı çapçı"
-
-#: printer/main.pm:444
-#, c-format
-msgid "HP printer"
-msgstr "HP çapçı"
-
-#: printer/main.pm:450
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "%s nömrəli paralel qapıdakı çox funksiyalı avadanlıq"
-
-#: printer/main.pm:453
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Paralel qapıdakı çox funksiyalı avadanlıq"
-
-#: printer/main.pm:455
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "USB üstündə çox funksiyalı avadanlıq"
-
-#: printer/main.pm:457
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "HP JetDirect üstündə çox funksiyalı avadanlıq"
-
-#: printer/main.pm:459
-#, c-format
-msgid "Multi-function device"
-msgstr "Çox funksiyalı avadanlıq"
-
-#: printer/main.pm:463
-#, c-format
-msgid "Prints into %s"
-msgstr "%s'a çap edir"
-
-#: printer/main.pm:466
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr " \"%s\" LPD vericisi, \"%s\" çapçısı"
-
-#: printer/main.pm:469
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "TCP/IP qovşağı \"%s\", qapı %s"
-
-#: printer/main.pm:474
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "SMB/Windows vericisi \"%s\", bölüşülmüş sahə \"%s\""
-
-#: printer/main.pm:479
-#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Novell vericisi \"%s\", çapçı \"%s\""
-
-#: printer/main.pm:482
-#, c-format
-msgid "Uses command %s"
-msgstr "%s əmrini işlət"
-
-#: printer/main.pm:484
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
-
-#: printer/main.pm:689 printer/printerdrake.pm:1047
-#: printer/printerdrake.pm:3142
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Adi çapçı (Sürücüsüz)"
-
-#: printer/main.pm:1309 printer/printerdrake.pm:211
-#: printer/printerdrake.pm:223
-#, c-format
-msgid "Local network(s)"
-msgstr "Yerli şəbəkə(lər)"
-
-#: printer/main.pm:1311 printer/printerdrake.pm:227
-#, c-format
-msgid "Interface \"%s\""
-msgstr "\"%s\" ara üzü"
-
-#: printer/main.pm:1313
-#, c-format
-msgid "Network %s"
-msgstr "Şəbəkə %s"
-
-#: printer/main.pm:1315
-#, c-format
-msgid "Host %s"
-msgstr "Qovşaq %s"
-
-#: printer/main.pm:1344
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Qapı %s)"
-
-#: printer/main.pm:1945 printer/main.pm:2100
-#, c-format
-msgid "user-supplied"
-msgstr ""
-
-#: printer/main.pm:1949 printer/main.pm:2104
-#, c-format
-msgid "NEW"
-msgstr ""
-
-#: printer/printerdrake.pm:24
-#, c-format
-msgid ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"decompressing the self-extracting '.exe' file with the 'unzip' utility and "
-"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
-"printer' directory. There it will be found by the automatic uploader script "
-"and uploaded whenever the printer is connected and turned on.\n"
-msgstr ""
-"HP LaserJet 1000 çapçısı başladılmadan əvvəl firmware-inin yüklü "
-"olmasılazımdır. HP veb saytından Windows sürü paketini endirin "
-"(çapçınınCD'sindəki firmware işləmir) və bu açıla bilən '.exe' faylını "
-"'unzip' vasitəsi ilə açıb 'sihp1000.img' faylını tapın. Daha sonra onu '/etc/"
-"printer' cərgəsinə köçürün. Bundan sonra o artıq çapçının hər "
-"başladılmasında avtomatik olaraq yüklənəcək.\n"
-
-#: printer/printerdrake.pm:67
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "CUPS çapçı qurğuları"
-
-#: printer/printerdrake.pm:68
-#, c-format
-msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessible by remote machines and by which remote machines."
-msgstr ""
-"Burada, sisteminizə bağlı çapçıların uzaqdakı sistemlər və hansıları "
-"tərəfindən istifadə edilə biləcəyini tə'yin edə bilərsiniz."
-
-#: printer/printerdrake.pm:69
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-"Eyni zamanda uzaq sistemlərdəki çapçıların bu kompüterdə avtomatik olaraq "
-"mövcud olmasına qərar verə bilərsiniz."
-
-#: printer/printerdrake.pm:72 printer/printerdrake.pm:506
-#: printer/printerdrake.pm:4542
-#, c-format
-msgid "Remote CUPS server and no local CUPS daemon"
-msgstr ""
-
-#: printer/printerdrake.pm:75
-#, c-format
-msgid "On"
-msgstr "Açıq"
-
-#: printer/printerdrake.pm:77 printer/printerdrake.pm:498
-#: printer/printerdrake.pm:525
-#, c-format
-msgid "Off"
-msgstr "Bağlı"
-
-#: printer/printerdrake.pm:78 printer/printerdrake.pm:507
-#, c-format
-msgid ""
-"In this mode the local CUPS daemon will be stopped and all printing requests "
-"go directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:84
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Bu sistemdəki çapçılar diqər sistemlər üçün də açıqdır"
-
-#: printer/printerdrake.pm:89
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Uzaq kompüterlərdəki mövcud çapçıları avtomatik tap"
-
-#: printer/printerdrake.pm:94
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Qovşaqlar/şəbəkələr üstündə çapçı bölüşülməsi: "
-
-#: printer/printerdrake.pm:96
-#, c-format
-msgid "Custom configuration"
-msgstr "Xüsusi quraşdırma"
-
-#: printer/printerdrake.pm:101 standalone/scannerdrake:610
-#: standalone/scannerdrake:627
-#, c-format
-msgid "No remote machines"
-msgstr "Uzaq sistem yoxdur"
-
-#: printer/printerdrake.pm:112
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Əlavə CUPS vericiləri:"
-
-#: printer/printerdrake.pm:119
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"Yerli şəbəkənizdəki uzaq CUPS vericilərindəki çapçıya yetişmə səlahiyyəti "
-"almaq üçün sadəcə olaraq \"Uzaq sistemlərdəki mövcud çapçıları avtomatik tap"
-"\" seçimini işarələməlisiniz; CUPS vericiləri, sisteminizi öz çapçıları "
-"haqqında avtomatik mə'lumatlandırırlar. Hazıda sisteminizdəki bütün bilinən "
-"çapçılar Printerdrake-nin əsas pəncərəsindəki \"Uzaq çapçılar\" "
-"bölməsindəyer alır. Əgər CUPS vericiləriniz yerli şəbəkənizdə deyilsə, çapçı "
-"mə'lumatını vericidən almaq üçün buraya IP adres(lər)i və istəyə bağlı "
-"olaraq qapı nömrə(lər)sini daxil etmək məcburiyyətindəsiniz."
-
-#: printer/printerdrake.pm:127
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Yaponca mətn çap etmə modu"
-
-#: printer/printerdrake.pm:128
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in Japanese language. Only "
-"use this function if you really want to print text in Japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print Japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Bunu fəallaşdırma yapon dilindəki xam mətnlərin çap edilə bilməsinə imkan "
-"verəcək. Bunu yalnız yapon dilində mətn çap etmək istəyirsinizsə seçin, ona "
-"görə ki bu seçili ikən bə'zi latın hərfləri, səhifə kənarları və hərf "
-"böyüklükləri düzgün çap ediləyəcək. Bu qurğu yalnız bu sistem üstündəki "
-"çapçılar tə'sir edir. Əgər uzaq bir kompüterdə yaponca mətn çap etmək "
-"arzunuz varsa bu qurğunu o uzaq kompüterdə fəal etməlisiniz."
-
-#: printer/printerdrake.pm:135
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "CUPS quraşdırılmasının avtomatik düzəldilməsi"
-
-#: printer/printerdrake.pm:137
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Bu seçim fəal olanda CUPS'un hər başlanğıcında bunlar yoxlanır:\n"
-"\n"
-"- əgər LPD/LPRng quruludursa, /etc/printcap CUPS tərəfindən üstündən qeyd "
-"edilməyəcək\n"
-"\n"
-"- əgər /etc/cups/cupsd.conf əksikdirsə, yaradılacaq\n"
-"\n"
-"- çapçı mə'lumatı yayımlananda, verici adı olaraq \"localhost\" daxil "
-"etməməsini.\n"
-"\n"
-"Əgər bu ölçülərdən biri sizi problemə soxursa bu seçimi fəallaşdırmayın."
-
-#: printer/printerdrake.pm:161 printer/printerdrake.pm:236
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Yerli çapçıların bölüşülməsi"
-
-#: printer/printerdrake.pm:162
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-"Yerli olaraq bağlı olan çapçı bu sistem və şəbəkələr üçün də mövcud "
-"olmalıdır:"
-
-#: printer/printerdrake.pm:173
-#, c-format
-msgid "Add host/network"
-msgstr "Qovşaq/şəbəkə əlavə et"
-
-#: printer/printerdrake.pm:179
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Seçili qovşaq/şəbəkəni dəyişdir"
-
-#: printer/printerdrake.pm:188
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Seçili qovşaq/şəbəkəni sil"
-
-#: printer/printerdrake.pm:219 printer/printerdrake.pm:229
-#: printer/printerdrake.pm:241 printer/printerdrake.pm:248
-#: printer/printerdrake.pm:279 printer/printerdrake.pm:297
-#, c-format
-msgid "IP address of host/network:"
-msgstr "Qovşağın/şəbəkənin IP ünvanı:"
-
-#: printer/printerdrake.pm:237
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr "Yerli çapçıların mövcud ediləcəyi şəbəkə ya da qovşağı seçin:"
-
-#: printer/printerdrake.pm:244
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Qovşaq/şəbəkə IP ünvanı əksikdir."
-
-#: printer/printerdrake.pm:252
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "Daxil edilən qovşaq/şəbəkə IP ünvanı düzgün deyil.\n"
-
-#: printer/printerdrake.pm:253 printer/printerdrake.pm:429
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Düzgün IP nümunələri:\n"
-
-#: printer/printerdrake.pm:277
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr "Bu qovşaq/şəbəkə onsuzda siyahıdadır, yenidən əlavə edilə bilməz.\n"
-
-#: printer/printerdrake.pm:346 printer/printerdrake.pm:416
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Uzaq CUPS vericilərindəki çapçılara yetişin"
-
-#: printer/printerdrake.pm:347
-#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
-"Çapçılarını itifadə etmək istədiyiniz CUPS vericilərini buraya əlavə edin. "
-"Bunu sadəcə olaraq vericilərin çapçı mə'lumatlarını yerli şəbəkəyə yaymaması "
-"vəziyyətində etməlisiniz."
-
-#: printer/printerdrake.pm:358
-#, c-format
-msgid "Add server"
-msgstr "Verici əlavə et"
-
-#: printer/printerdrake.pm:364
-#, c-format
-msgid "Edit selected server"
-msgstr "Seçili vericini düzəlt"
-
-#: printer/printerdrake.pm:373
-#, c-format
-msgid "Remove selected server"
-msgstr "Seçili vericini çıxart"
-
-#: printer/printerdrake.pm:417
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-"Çapçılarını işlətmək istədiyiniz qovşağın IP ünvanı və qapısını daxil edin."
-
-#: printer/printerdrake.pm:418
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "Əgər qapı nömrəsi verilməszə, əsas olaraq 631 alınacaq."
-
-#: printer/printerdrake.pm:422
-#, c-format
-msgid "Server IP missing!"
-msgstr "Verici IP'si əksikdir!"
-
-#: printer/printerdrake.pm:428
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Daxil edilən IP səhvdir.\n"
-
-#: printer/printerdrake.pm:440 printer/printerdrake.pm:2133
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Qapı nömrəsi ədəd olmalıdır!"
-
-#: printer/printerdrake.pm:451
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "Bu verici onsuzda siyahıdadır, yenidən əlavə edilə bilməz.\n"
-
-#: printer/printerdrake.pm:462 printer/printerdrake.pm:2160
-#: standalone/drakups:249 standalone/harddrake2:52
-#, c-format
-msgid "Port"
-msgstr "Qapı"
-
-#: printer/printerdrake.pm:495 printer/printerdrake.pm:511
-#: printer/printerdrake.pm:526 printer/printerdrake.pm:530
-#: printer/printerdrake.pm:536
-#, fuzzy, c-format
-msgid "On, Name or IP of remote server:"
-msgstr "Uzaq lpd vericisi üstündəki çapçı"
-
-#: printer/printerdrake.pm:514 printer/printerdrake.pm:4551
-#: printer/printerdrake.pm:4617
-#, fuzzy, c-format
-msgid "CUPS server name or IP address missing."
-msgstr "Qovşaq/şəbəkə IP ünvanı əksikdir."
-
-#: printer/printerdrake.pm:566 printer/printerdrake.pm:586
-#: printer/printerdrake.pm:811 printer/printerdrake.pm:880
-#: printer/printerdrake.pm:901 printer/printerdrake.pm:927
-#: printer/printerdrake.pm:1023 printer/printerdrake.pm:1065
-#: printer/printerdrake.pm:1075 printer/printerdrake.pm:1110
-#: printer/printerdrake.pm:2220 printer/printerdrake.pm:2490
-#: printer/printerdrake.pm:2524 printer/printerdrake.pm:2575
-#: printer/printerdrake.pm:2582 printer/printerdrake.pm:2621
-#: printer/printerdrake.pm:2663 printer/printerdrake.pm:2700
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2984
-#: printer/printerdrake.pm:2989 printer/printerdrake.pm:3137
-#: printer/printerdrake.pm:3248 printer/printerdrake.pm:3862
-#: printer/printerdrake.pm:3929 printer/printerdrake.pm:3978
-#: printer/printerdrake.pm:3981 printer/printerdrake.pm:4091
-#: printer/printerdrake.pm:4149 printer/printerdrake.pm:4221
-#: printer/printerdrake.pm:4242 printer/printerdrake.pm:4252
-#: printer/printerdrake.pm:4342 printer/printerdrake.pm:4437
-#: printer/printerdrake.pm:4443 printer/printerdrake.pm:4471
-#: printer/printerdrake.pm:4578 printer/printerdrake.pm:4687
-#: printer/printerdrake.pm:4707 printer/printerdrake.pm:4716
-#: printer/printerdrake.pm:4731 printer/printerdrake.pm:4932
-#: printer/printerdrake.pm:5407 printer/printerdrake.pm:5490
-#: standalone/printerdrake:75 standalone/printerdrake:590
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: printer/printerdrake.pm:567 printer/printerdrake.pm:4150
-#: printer/printerdrake.pm:4688
-#, c-format
-msgid "Reading printer data..."
-msgstr "Çapçı datası oxunur..."
-
-#: printer/printerdrake.pm:587
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "CUPS yenidən başladılır..."
-
-#: printer/printerdrake.pm:614
-#, c-format
-msgid ""
-"Allow pop-up windows, printer setup and package installation may be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:616
-#, c-format
-msgid ""
-"No pop-up windows, printer setup and package installation cannot be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:622
-#, fuzzy, c-format
-msgid "Printer auto administration"
-msgstr "Çapçının avtomatik aşkar edilməsi"
-
-#: printer/printerdrake.pm:623
-#, c-format
-msgid ""
-"Here you can configure printer administration tasks which should be done "
-"automatically."
-msgstr ""
-
-#: printer/printerdrake.pm:626
-#, fuzzy, c-format
-msgid "Do automatic configuration of new printers"
-msgstr "Avtomatik yenidən quraşdırma"
-
-#: printer/printerdrake.pm:627 printer/printerdrake.pm:641
-#, fuzzy, c-format
-msgid "when a USB printer is connected and turned on"
-msgstr " (Bütün çapçılarınızın açıq və fəal olduğundan əmin olun).\n"
-
-#: printer/printerdrake.pm:630
-#, fuzzy, c-format
-msgid "when Printerdrake is started"
-msgstr "Bu bölmə ölçüləndirilə bilməz"
-
-#: printer/printerdrake.pm:634
-#, c-format
-msgid "Mode for automatic printer setup:"
-msgstr ""
-
-#: printer/printerdrake.pm:640
-#, fuzzy, c-format
-msgid "Re-enable disabled printers"
-msgstr "Mövcud çapçılar"
-
-#: printer/printerdrake.pm:644
-#, fuzzy, c-format
-msgid "when the printing system is started"
-msgstr "Çap sistemini dəyişdir"
-
-#: printer/printerdrake.pm:680
-#, fuzzy, c-format
-msgid "Communication error handling for the printer \"%s\""
-msgstr "%s çapçısında çap edilir"
-
-#: printer/printerdrake.pm:682
-#, c-format
-msgid ""
-"Here you can configure how errors during the communication between your "
-"computer and the printer \"%s\" should be handled (for example if the "
-"printer is not turned on)."
-msgstr ""
-
-#: printer/printerdrake.pm:686
-#, fuzzy, c-format
-msgid "The number of retries should be an integer number of at least 1!"
-msgstr "Qapı nömrəsi ədəd olmalıdır!"
-
-#: printer/printerdrake.pm:690
-#, fuzzy, c-format
-msgid "The delay between retries should be a positive integer number!"
-msgstr "Offset müsbət rəgəm olmalıdır!"
-
-#: printer/printerdrake.pm:701
-#, fuzzy, c-format
-msgid "Do not disable the printer"
-msgstr "Vericini Qeyri-fəallaşdır"
-
-#: printer/printerdrake.pm:704
-#, c-format
-msgid "Retry infinitely often"
-msgstr ""
-
-#: printer/printerdrake.pm:707
-#, fuzzy, c-format
-msgid "Number of retries"
-msgstr "Düymə ədədi"
-
-#: printer/printerdrake.pm:712
-#, c-format
-msgid "Delay between retries (in sec)"
-msgstr ""
-
-#: printer/printerdrake.pm:745 printer/printerdrake.pm:765
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Çapçı Bağlantısı Seçin"
-
-#: printer/printerdrake.pm:746
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Çapçınız hansı şəkildə bağlıdır?"
-
-#: printer/printerdrake.pm:748
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Uzaq CUPS vericiləri üçün burada heç bir qurğuyaa lüzüm yoxdur;Bu çapçılar "
-"avtomatik təsbit ediləcəkdir."
-
-#: printer/printerdrake.pm:751 printer/printerdrake.pm:4934
-#, c-format
-msgid ""
-"\n"
-"WARNING: No local network connection active, remote printers can neither be "
-"detected nor tested!"
-msgstr ""
-
-#: printer/printerdrake.pm:758
-#, fuzzy, c-format
-msgid ""
-"Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"
-msgstr "Çapçının avtomatik aşkar edilməsi (Yerli, TCP/Soket, və SMB çapçıları)"
-
-#: printer/printerdrake.pm:760
-#, c-format
-msgid "Modify timeout for network printer auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:766
-#, c-format
-msgid "Enter the timeout for network printer auto-detection (in msec) here. "
-msgstr ""
-
-#: printer/printerdrake.pm:768
-#, c-format
-msgid ""
-"The longer you choose the timeout, the more reliable the detections of "
-"network printers will be, but the scan can take longer then, especially if "
-"there are many machines with local firewalls in the network. "
-msgstr ""
-
-#: printer/printerdrake.pm:772
-#, fuzzy, c-format
-msgid "The timeout must be a positive integer number!"
-msgstr "Offset müsbət rəgəm olmalıdır!"
-
-#: printer/printerdrake.pm:811
-#, c-format
-msgid "Checking your system..."
-msgstr "Sisteminiz yoxlanır..."
-
-#: printer/printerdrake.pm:829
-#, c-format
-msgid "and one unknown printer"
-msgstr "və bir namə'lum çapçı"
-
-#: printer/printerdrake.pm:831
-#, c-format
-msgid "and %d unknown printers"
-msgstr "və %d namə'lum çapçı"
-
-#: printer/printerdrake.pm:835
-#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Aşağıdakı çapçılar\n"
-"\n"
-"%s%s\n"
-"sisteminizə birbaşa bağlıdır"
-
-#: printer/printerdrake.pm:837
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Aşağıdakı çapçı\n"
-"\n"
-"%s%s\n"
-"sisteminizə birbaşa bağlıdır"
-
-#: printer/printerdrake.pm:838
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-"Aşağıdakı çapçı\n"
-"\n"
-"%s%s\n"
-"sisteminizə birbaşa bağlıdır"
-
-#: printer/printerdrake.pm:842
-#, c-format
-msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
-"\n"
-"Sisteminizə birbaşa bağlı olan bir namə'lum çapçı var"
-
-#: printer/printerdrake.pm:843
-#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
-"\n"
-"Sisteminizə birbaşa bağlı ilan %d namə'lum çapçı mövcuddur"
-
-#: printer/printerdrake.pm:846
-#, c-format
-msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "Sisteminizə birbaşa bağlı olan heç bir çapçı aşkar ediləmyib"
-
-#: printer/printerdrake.pm:849
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr " (Bütün çapçılarınızın açıq və fəal olduğundan əmin olun).\n"
-
-#: printer/printerdrake.pm:862
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
-"Çap etməni yuxarıdakı çapçılarda yoxsa yerli şəbəkə üstündəki çapçılarda "
-"fəal etmək istəyirsiniz?\n"
-
-#: printer/printerdrake.pm:863
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Yerli şəbəkədəki çapçılarda çap etmə icazəsi vermək istəyirsiniz?\n"
-
-#: printer/printerdrake.pm:865
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Yuxarıdakı çapçılar ilə çap etməyi fəallaşdırmaq istəyirsiniz?\n"
-
-#: printer/printerdrake.pm:866
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Həqiqətən də bu sistemdə çap sistemini quraşdırmaq istəyirsiniz?\n"
-
-#: printer/printerdrake.pm:867
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
-"QEYD: Çapçı modeli və çap sisteminə bağlı olaraq %d MB'a qədər əlavə "
-"tə'minatqurulacaq."
-
-#: printer/printerdrake.pm:884
-#, c-format
-msgid "Do not setup printer automatically now, and never do it again"
-msgstr ""
-
-#: printer/printerdrake.pm:928
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Yeni çapçılar axtarılır..."
-
-#: printer/printerdrake.pm:976
-#, c-format
-msgid "Do not setup printer automatically again"
-msgstr ""
-
-#: printer/printerdrake.pm:983
-#, fuzzy, c-format
-msgid "New printers found"
-msgstr "Çapçı aşkar edilmədi!"
-
-#: printer/printerdrake.pm:984
-#, fuzzy, c-format
-msgid "New printer found"
-msgstr "Çapçı aşkar edilmədi!"
-
-#: printer/printerdrake.pm:986
-#, c-format
-msgid ""
-"The following new printers were found and Printerdrake can automatically set "
-"them up for you. If you do not want to have all of them set up, unselect the "
-"ones which should be skipped, or click \"Cancel\" to set up none of them.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:987
-#, c-format
-msgid ""
-"The following new printer was found and printerdrake can automatically set "
-"it up for you. If you do not want to have it set up, unselect it, or click "
-"\"Cancel\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:988
-#, c-format
-msgid ""
-"Note that for certain printer models additional packages need to be "
-"installed. So keep your installation media handy.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1024 printer/printerdrake.pm:1066
-#, fuzzy, c-format
-msgid "Configuring printer on %s..."
-msgstr "\"%s\" çapçısı quraşdırılır..."
-
-#: printer/printerdrake.pm:1049
-#, c-format
-msgid "("
-msgstr "("
-
-#: printer/printerdrake.pm:1050
-#, c-format
-msgid " on "
-msgstr "üstündə"
-
-#: printer/printerdrake.pm:1051 standalone/scannerdrake:137
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: printer/printerdrake.pm:1056 printer/printerdrake.pm:3149
-#, c-format
-msgid "Printer model selection"
-msgstr "Çapçı modeli seçkisi"
-
-#: printer/printerdrake.pm:1057 printer/printerdrake.pm:3150
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Hansı model çapçınız var?"
-
-#: printer/printerdrake.pm:1058
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-"\n"
-"\n"
-"Printerdrake %s çapçınızın modelini aşkar edə bilmədi. Xahiş edirik, "
-"siyahıdan düzgün modeli seçin."
-
-#: printer/printerdrake.pm:1061 printer/printerdrake.pm:3155
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Əgər çapçınız siyahıda yer almırsa, uyğun olanı (baxın çapçı istifadə "
-"kitabı) seçin."
-
-#: printer/printerdrake.pm:1076 printer/printerdrake.pm:4708
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "\"%s\" çapçısı quraşdırılır..."
-
-#: printer/printerdrake.pm:1111
-#, c-format
-msgid ""
-"Now you have turned off automatic printer setup.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1112
-#, c-format
-msgid ""
-"You can turn it back on again by choosing \"%s\" -> \"%s\" in Printerdrake's "
-"main menu. "
-msgstr ""
-
-#: printer/printerdrake.pm:1112 printer/printerdrake.pm:4984
-#, fuzzy, c-format
-msgid "Configure Auto Administration"
-msgstr "Uzaqdan İdarə"
-
-#: printer/printerdrake.pm:1113
-#, c-format
-msgid ""
-"There you can also choose in which situation automatic printer setup is done "
-"(On Printerdrake startup, on printing system startup, when connecting a new "
-"USB printer)."
-msgstr ""
-
-#: printer/printerdrake.pm:1261 printer/printerdrake.pm:1273
-#: printer/printerdrake.pm:1380 printer/printerdrake.pm:2401
-#: printer/printerdrake.pm:2460 printer/printerdrake.pm:2556
-#: printer/printerdrake.pm:4951 printer/printerdrake.pm:5138
-#, c-format
-msgid "Add a new printer"
-msgstr "Yeni çapçı əlavə et"
-
-#: printer/printerdrake.pm:1262
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Çapçı Quraşdırma Sehirbazına Xoş Gəldiniz\n"
-"\n"
-"Bu sehirbaz kompüterinizə, şəbəkədəki sistemlərin və bu sistemin işlədə "
-"biləcəyi yerli ya da uzaq çapçıları quraşdırmaqda sizə yardım edəcək. \n"
-"O, çap sistemini quraşdırmaq üçün lazım olan bütün mə'lumatları sizdən "
-"soruşacaq və mövcud olan bütün çapçılara, sürücü seçimlərinə və çap bağlantı "
-"növlərinə yetişmə imkanı verəcək."
-
-#: printer/printerdrake.pm:1275
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected. Also your network printer(s) and your Windows "
-"machines must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you do not "
-"need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Çapçı Quraşdırma Sehirbazına Xoş Gəldiniz\n"
-"\n"
-"Bu sehirbaz kompüterinizə, birbaşa şəbəkəyə ya da uzaq Windows sistemə\n"
-"bağlı olan çapçı ya da çapçıları quraşdırmaqda sizə yardım edəcək.\n"
-"\n"
-"Xahiş edirik, bu kompüterə bağlı olan bütün çapçıları açın ki avtomatik "
-"aşkar edilə bilsinlər. Eyni zamanda şəbəkə kompüterləriniz və Windows\n"
-"sistemləri də açıq olmalıdır.\n"
-"\n"
-"Qeyd edin ki, şəbəkə və Windows sistemləri üstündəki çapçıların avtomatik\n"
-"aşkar edilməsi sisteminizə bağlı olan çapçıların açkar edilməsindən daha "
-"uzun\n"
-"müddət alır, ona görə də əgər onlara ehtiyacınız yoxdursa bunların "
-"avtomatik\n"
-"aşkar edilməsini bağlayın.\n"
-"\n"
-" Hazır olanda \"Sonrakı\" düyməsinə, çapçılarınızı indi quraşdırmaq "
-"istəmirsinizsə\"Ləğv Et\" düyməsinə basın."
-
-#: printer/printerdrake.pm:1284
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Çapçı Quraşdırma Sehirbazına Xoş Gəldiniz\n"
-"\n"
-"Bu sehirbaz kompüterinizə bağlı olan çapçı ya da çapçıları quraşdırmaqda "
-"sizə yardım edəcək.\n"
-"\n"
-"Xahiş edirik, bu kompüterə bağlı olan bütün çapçıları açın ki avtomatik "
-"aşkar edilə bilsinlər.\n"
-"\n"
-" Hazır olanda \"Sonrakı\" düyməsinə, çapçılarınızı indi quraşdırmaq "
-"istəmirsinizsə\"Ləğv Et\" düyməsinə basın."
-
-#: printer/printerdrake.pm:1292
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you do not need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Çapçı Quraşdırma Sehirbazına Xoş Gəldiniz\n"
-"\n"
-"Bu sehirbaz kompüterinizə ya da birbaşa şəbəkəyə bağlı olan çapçı ya\n"
-"da çapçıları quraşdırmaqda sizə yardım edəcək.\n"
-"\n"
-"Xahiş edirik, bu kompüterə bağlı olan bütün çapçıları açın ki avtomatik "
-"aşkar edilə bilsinlər. Eyni zamanda şəbəkə kompüterləriniz də açıq "
-"olmalıdır.\n"
-"\n"
-"Qeyd edin ki, şəbəkə üstündəki çapçıların avtomatik aşkar edilməsi "
-"sisteminizə\n"
-"bağlı olan çapçıların açkar edilməsindən daha uzun müddət alır, ona görə "
-"də \n"
-"əgər onlara ehtiyacınız yoxdursa bunların avtomatik aşkar edilməsini "
-"bağlayın.\n"
-"\n"
-" Hazır olanda \"Sonrakı\" düyməsinə, çapçılarınızı indi quraşdırmaq "
-"istəmirsinizsə\"Ləğv Et\" düyməsinə basın."
-
-#: printer/printerdrake.pm:1301
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Çapçı Quraşdırma Sehirbazına Xoş Gəldiniz\n"
-"\n"
-"Bu sehirbaz kompüterinizə bağlı olan çapçı ya da çapçıları quraşdırmaqda "
-"sizə yardım edəcək.\n"
-"\n"
-"Xahiş edirik, bu kompüterə bağlı olan bütün çapçıları açın ki avtomatik "
-"aşkar edilə bilsinlər.\n"
-"\n"
-" Hazır olanda \"Sonrakı\" düyməsinə, çapçılarınızı indi quraşdırmaq "
-"istəmirsinizsə\"Ləğv Et\" düyməsinə basın."
-
-#: printer/printerdrake.pm:1352
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Bu kompüterə bağlı olan çapçıları avtomatik aşkar et"
-
-#: printer/printerdrake.pm:1355
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Yerli şəbəkəyə birbaşa bağlı olan çapçıları avtomatik aşkar et"
-
-#: printer/printerdrake.pm:1358
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
-"Microsoft Windows işlədən kompüterlərə bağlı olan çapçıları avtomati aşkar et"
-
-#: printer/printerdrake.pm:1361
-#, fuzzy, c-format
-msgid "No auto-detection"
-msgstr "Avtomatik təsbit et"
-
-#: printer/printerdrake.pm:1381
-#, fuzzy, c-format
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the %s Control Center."
-msgstr ""
-"\n"
-"Təbrik edirik, çapçınız indi quraşdırıldı və işlədilməyə hazırdır!\n"
-"\n"
-"Proqramların \"Çap Et\" əmrini istifadə edərək çap edə bilərsiniz.(Bu əmr "
-"ümumiyyətlə \"Fayl\" menyusunda yer alır).\n"
-"\n"
-"Əgər çapçı ilə əlaqəli hər hansı bir qurğu yerinə gətirmək, ya da yeni çapçı "
-"əlavə etmək / çapçı silmək istəyirsinizsə, Mandriva Linux İdarə Mərkəzindəki "
-"\"Avadanlıq\" bölməsində yer alan in the \"Çapçı\" düyməsini istifadə edin."
-
-#: printer/printerdrake.pm:1417 printer/printerdrake.pm:1641
-#: printer/printerdrake.pm:1704 printer/printerdrake.pm:1796
-#: printer/printerdrake.pm:1934 printer/printerdrake.pm:2010
-#: printer/printerdrake.pm:2177 printer/printerdrake.pm:2268
-#: printer/printerdrake.pm:2277 printer/printerdrake.pm:2286
-#: printer/printerdrake.pm:2297 printer/printerdrake.pm:2496
-#: printer/printerdrake.pm:2633
-#, fuzzy, c-format
-msgid "Could not install the %s packages!"
-msgstr "Xorg paketi qurula bilmir: %s"
-
-#: printer/printerdrake.pm:1419
-#, c-format
-msgid "Skipping Windows/SMB server auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:1425 printer/printerdrake.pm:1564
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Çapçının avtomatik aşkar edilməsi"
-
-#: printer/printerdrake.pm:1425
-#, c-format
-msgid "Detecting devices..."
-msgstr "Avadanlıqlar tapılır..."
-
-#: printer/printerdrake.pm:1451
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", şəbəkə çapçısı \"%s\", qapı %s"
-
-#: printer/printerdrake.pm:1454
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", çapçı \"%s\" SMB/Windows vericisi \"%s\" üstündə"
-
-#: printer/printerdrake.pm:1458
-#, c-format
-msgid "Detected %s"
-msgstr "%s tapıldı"
-
-#: printer/printerdrake.pm:1463 printer/printerdrake.pm:1490
-#: printer/printerdrake.pm:1505
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "%s nömrəli paralel qapıdakı çapçı"
-
-#: printer/printerdrake.pm:1469
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Şəbəkə çapçısı \"%s\", qapı %s"
-
-#: printer/printerdrake.pm:1472
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "\"%2$s\" SMB/Windows vericisi üstündəki \"%1$s\" çapçısı"
-
-#: printer/printerdrake.pm:1550
-#, c-format
-msgid "Local Printer"
-msgstr "Yerli Çapçı"
-
-#: printer/printerdrake.pm:1551
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Heç bir yerli çapçı tapılmadı! Çapçını əllə qurmaq üçün giriş sahəsinə "
-"avadanlıq/fayl adını daxil edin (Paralel Qapılar: /dev/lp0, /dev/lp1, ..., "
-"bunlara bərabərdir: LPT1:, LPT2:, ..., 1ci USB çapçı: /dev/usb/lp0, 2ci USB "
-"çapçı: /dev/usb/lp1, ...vs)."
-
-#: printer/printerdrake.pm:1555
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Avadanlıq ya da fayl adı daxil etməlisiniz!"
-
-#: printer/printerdrake.pm:1565
-#, c-format
-msgid "No printer found!"
-msgstr "Çapçı aşkar edilmədi!"
-
-#: printer/printerdrake.pm:1573
-#, c-format
-msgid "Local Printers"
-msgstr "Yerli Çapçılar"
-
-#: printer/printerdrake.pm:1574
-#, c-format
-msgid "Available printers"
-msgstr "Mövcud çapçılar"
-
-#: printer/printerdrake.pm:1578 printer/printerdrake.pm:1587
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Aşağıdakı çapçı avtomatik olaraq aşkar edildi."
-
-#: printer/printerdrake.pm:1580
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
-"Əgər o quraşdırmaq istədiyiniz deyilsə, giriş sətirinə avadanlıq/fayl adını "
-"daxil edin"
-
-#: printer/printerdrake.pm:1581
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr "Alternativ olaraq, avadanlıq/fayl adını giriş sətirinə yaza bilərsiniz"
-
-#: printer/printerdrake.pm:1582 printer/printerdrake.pm:1591
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Avtomatik aşkar edilən çapçıların siyahısı. "
-
-#: printer/printerdrake.pm:1584
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
-msgstr ""
-"Xahiş edirik, quraşdırmaq istədiyiniz çapçını seçin ya da giriş "
-"sətirinəavadanlıq/fayl adı daxil edin"
-
-#: printer/printerdrake.pm:1585
-#, c-format
-msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-"Çap vəzifələrinin hansı çapçıya gedəcəyini seçin ya da giriş sətirində "
-"avadanlıq/fayl adı daxil edin"
-
-#: printer/printerdrake.pm:1589
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Xahiş edirik, quraşdırmaq istədiyiniz çapçını seçin. Çapçının quraşdırılması "
-"tamamilə avtomatik olacaq. Əgər çapçınız düzgün açkar edilməyibsə ya "
-"daxüsusiləşdirilmiş çap quraşdırması istəyirsinizsə, \"Əllə quraşdırma\"nı "
-"seçin."
-
-#: printer/printerdrake.pm:1590
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Hazırda, başqa heç bir alternativ mövcud deyil"
-
-#: printer/printerdrake.pm:1593
-#, c-format
-msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
-msgstr ""
-"Xahiş edirik, quraşdırmaq istədiyiniz çapçını seçin. Çapçının quraşdırılması "
-"tamamilə avtomatik olacaq. Əgər çapçınız düzgün açkar edilməyibsə ya "
-"daxüsusiləşdirilmiş çap quraşdırması istəyirsinizsə, \"Əllə quraşdırma\"nı "
-"seçin."
-
-#: printer/printerdrake.pm:1594
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Çap vəzifələrinin hansı çapçıya gedəcəyini seçin."
-
-#: printer/printerdrake.pm:1596
-#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Çapçınızın bağlı olduğu qapını seçin ya da giriş sətirində avadanlıq/fayl "
-"adı daxil edin"
-
-#: printer/printerdrake.pm:1597
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Çapçınızın hansı qapıya bağlı olduğunu seçin."
-
-#: printer/printerdrake.pm:1599
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Paralel Qapılar: /dev/lp0, /dev/lp1, ..., bunlara bərabərdir LPT1:, "
-"LPT2:, ..., 1ci USB çapçı: /dev/usb/lp0, 2ci USB çapçı: /dev/usb/lp1, ...)."
-
-#: printer/printerdrake.pm:1603
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Çapçı avadanlığını seçməli/girməlisiniz!"
-
-#: printer/printerdrake.pm:1643 printer/printerdrake.pm:1706
-#: printer/printerdrake.pm:1798 printer/printerdrake.pm:1936
-#: printer/printerdrake.pm:2012 printer/printerdrake.pm:2179
-#: printer/printerdrake.pm:2270 printer/printerdrake.pm:2279
-#: printer/printerdrake.pm:2288 printer/printerdrake.pm:2299
-#, fuzzy, c-format
-msgid "Aborting"
-msgstr "Dayandır"
-
-#: printer/printerdrake.pm:1679
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Uzaq lpd Çapçı Seçimləri"
-
-#: printer/printerdrake.pm:1680
-#, c-format
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Uzaqdakı bir lpd çapçısını istifadə etmək üçün, çapçının bağlı olduğu çapçı "
-"vericisinin qovşaq adını və o vericidəki çapçının adınını verməlisiniz."
-
-#: printer/printerdrake.pm:1681
-#, c-format
-msgid "Remote host name"
-msgstr "Uzaq qovşaq adı"
-
-#: printer/printerdrake.pm:1682
-#, c-format
-msgid "Remote printer name"
-msgstr "Uzaq çapçı adı"
-
-#: printer/printerdrake.pm:1685
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Uzaqdakı qovşağın adı əksikdir!"
-
-#: printer/printerdrake.pm:1689
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Uzaq çapçı adı əksikdir!"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318 standalone/drakTermServ:475
-#: standalone/drakTermServ:807 standalone/drakTermServ:823
-#: standalone/drakTermServ:1653 standalone/drakTermServ:1662
-#: standalone/drakTermServ:1676 standalone/drakbackup:512
-#: standalone/drakbackup:618 standalone/drakbackup:653
-#: standalone/drakbackup:754 standalone/draknfs:203
-#: standalone/draksambashare:627 standalone/draksambashare:794
-#: standalone/harddrake2:275
-#, c-format
-msgid "Information"
-msgstr "Mə'lumat"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Aşkar edilən model: %s %s"
-
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Scanning network..."
-msgstr "Şəbəkə yoxlanır..."
-
-#: printer/printerdrake.pm:1814 printer/printerdrake.pm:1835
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", \"%2$s\" vericisi üstündəki \"%1$s\" çapçı"
-
-#: printer/printerdrake.pm:1817 printer/printerdrake.pm:1838
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "\"%2$s\" vericisi üstündəki \"%1$s\" çapçı"
-
-#: printer/printerdrake.pm:1859
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) Çapçı Seçimləri"
-
-#: printer/printerdrake.pm:1860
-#, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"SMB çapçısına çap etmək üçün, SMB qovşaq adını (Qeyd! Bu onun TCP/IP "
-"qovşaqadından fərqli ola bilər!) və mümkünsə çap vericisiniz IP ünvanını, "
-"yetişmək istədiyiniz çapçının bölüşmə adını, qəbul edilə bilən istifadəçi "
-"adı, şifrə və iş qrupu mə'lumatını bildirməlisiniz."
-
-#: printer/printerdrake.pm:1861
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-" Əgər çapçı avtomatik aşkar edilibsə, onu siyahıdan seçin və sonralazımdırsa "
-"istifadəçi adı, şifrə və/ya da iş qrupu adını əlavə edin."
-
-#: printer/printerdrake.pm:1863
-#, c-format
-msgid "SMB server host"
-msgstr "SMB verici adı"
-
-#: printer/printerdrake.pm:1864
-#, c-format
-msgid "SMB server IP"
-msgstr "SMB verici IP'si"
-
-#: printer/printerdrake.pm:1865 standalone/draksambashare:67
-#, c-format
-msgid "Share name"
-msgstr "Paylaşdırma adı"
-
-#: printer/printerdrake.pm:1868
-#, c-format
-msgid "Workgroup"
-msgstr "İş qrupu"
-
-#: printer/printerdrake.pm:1870
-#, c-format
-msgid "Auto-detected"
-msgstr "Avtomatik təsbit edilən"
-
-#: printer/printerdrake.pm:1880
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Ya verici adı ya da IP'si verilməlidir!"
-
-#: printer/printerdrake.pm:1884
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Samba bölüşülən sahə adı əksikdir!"
-
-#: printer/printerdrake.pm:1890
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "TƏHLÜKƏSİZLİK XƏBƏRDARLIĞI!"
-
-#: printer/printerdrake.pm:1891
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Şifrəli Windows hesabı üçün çap sistemini quraşdırmaq üzrəsiniz. Samba "
-"alıcısındakı bir xətaya görə Samba çap vəzifəsini Windows vericisinə "
-"daşırkən şifrəni xam mətn formatında ötürür. Ona görə də bu sistemdəkihər "
-"istifadəçi \"ps auxwww\" kimi əmrlə şifrənin ekranda göstərilməsini zorlaya "
-"bilər.\n"
-"\n"
-"Sizə bu alternativləri işlətməyi məsləhət edirik: (bütün hallarda "
-"Windowsvericinizə yalnız yerli şəbəkənizdəki sistemlərin yetişmə səlahiyyəti "
-"olmasındanəmin olun, misal üçün atəş divarı mə'nasında):\n"
-"\n"
-"Windows vericinizdə şifrəsi olmayan hesabı işlədin, misal üçün \"GUEST\" ya "
-"daçap üçün xüsusuiylə yaradılmış başqa bir hesab. Şəxsi və administrator "
-"hesablarının şifrəsini qətiyyən silməyin.\n"
-"\n"
-"Windows vericinizi, çapçını LPD protokolu altında mövcud etməsi üçün "
-"quraşdırın.Daha sonra bu sistemdə, Printerdrake'də bağlantı növü \"%s\" olan "
-"çap sisteminiquraşdırın.\n"
-"\n"
-
-#: printer/printerdrake.pm:1901
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Windows vericinizi çapçını IPP protokolu altında mövcud qılması üçün "
-"quraşdırın və bu sistemdən Printerdrake vasitəsi ilə \"%s\" bağlantınövlü "
-"çap sistemini quraşdırın.\n"
-"\n"
-
-#: printer/printerdrake.pm:1904
-#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-"Çapçınızı bir Linuks vericisinə bağlayıb Windows sistem(lər)ə ona alıcı "
-"olaraq bağlanmaya icazə ver.\n"
-"\n"
-"Həqiqətən də davam etmək istəyirsiniz?"
-
-#: printer/printerdrake.pm:1983
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "NetWare Çapçı Qurğuları"
-
-#: printer/printerdrake.pm:1984
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"NetWare çapçısında çap etmək üçün, NetWare çap vericisinin adı (Qeyd! Bu TCP/"
-"IP qovşaq adından fərqli ola bilər) və yetişmək istədiyiniz çapçının çap "
-"növbəsi adı ilə bərabər istifadəçi adı va şifrəsi verilməlidir."
-
-#: printer/printerdrake.pm:1985
-#, c-format
-msgid "Printer Server"
-msgstr "Çapçı Vericisi"
-
-#: printer/printerdrake.pm:1986
-#, c-format
-msgid "Print Queue Name"
-msgstr "Çapçı Növbə Adı"
-
-#: printer/printerdrake.pm:1991
-#, c-format
-msgid "NCP server name missing!"
-msgstr "NCP verici adı əksikdir!"
-
-#: printer/printerdrake.pm:1995
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "NCP növbə adı əksikdir!"
-
-#: printer/printerdrake.pm:2076 printer/printerdrake.pm:2097
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", qovşaq \"%s\", qapı %s"
-
-#: printer/printerdrake.pm:2079 printer/printerdrake.pm:2100
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Qovşaq \"%s\", qapı %s"
-
-#: printer/printerdrake.pm:2122
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/Socket Çapçı Qurğuları"
-
-#: printer/printerdrake.pm:2124
-#, c-format
-msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
-msgstr ""
-"Siyahıdan avtomatik aşkar edilən çapçılardan birini seçin ya da giriş "
-"sahələrinə qovşaq adı ya da IP ünvanı və istəyə bağlı qapı nömrəsini (əsası "
-"9100) daxil edin."
-
-#: printer/printerdrake.pm:2125
-#, c-format
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
-msgstr ""
-"TCP ya da soket çapçısına çap etmək üçün, çapçının IP ünvanı ya da qovşaq "
-"adınıvə istəyə bağlı olaraq qapı nömrəsini bildirməlisiniz (əsası 9100). HP "
-"JetDirect vericiləri üstündə qapı nömrəsi adətən 9100'dür, başqa vericilərdə "
-"bu fərqli ola bilər. Avadanlığınızın kitabına baxın."
-
-#: printer/printerdrake.pm:2129
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Çapçı qovşaq adı ya da IP'si əksikdir!"
-
-#: printer/printerdrake.pm:2158
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Çapçı qovşaq adı ya da IP"
-
-#: printer/printerdrake.pm:2221
-#, fuzzy, c-format
-msgid "Refreshing Device URI list..."
-msgstr "Çapçı mə'lumatları yenilənir..."
-
-#: printer/printerdrake.pm:2224 printer/printerdrake.pm:2226
-#, c-format
-msgid "Printer Device URI"
-msgstr "Çapçı Avadanlığı URI'si"
-
-#: printer/printerdrake.pm:2225
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Çapçıya yetişə bilmək üçün birbaşa URI verə bilərsiniz. URI, ya CUPS ya "
-"daFoomatic xassələrini daxil etməlidir.Qeyd: Her URI növünü her çap hovuzu "
-"dəstəkləməz."
-
-#: printer/printerdrake.pm:2249
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Düzgün URI girilməlidir!"
-
-#: printer/printerdrake.pm:2354
-#, c-format
-msgid "Pipe into command"
-msgstr "Əmri borula"
-
-#: printer/printerdrake.pm:2355
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-"Burada siz, birbaşa çapçıya göndərmək yerinə vəzifənin borulanacağı hər "
-"hansı bir əmr sətirini müəyyən edə bilərsiniz."
-
-#: printer/printerdrake.pm:2356
-#, c-format
-msgid "Command line"
-msgstr "Əmr sətiri"
-
-#: printer/printerdrake.pm:2360
-#, c-format
-msgid "A command line must be entered!"
-msgstr "Əmr sətiri daxil edilməlidir!"
-
-#: printer/printerdrake.pm:2402
-#, c-format
-msgid "Your printer %s is currently connected %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2404 printer/printerdrake.pm:2411
-#, fuzzy, c-format
-msgid "to a parallel port"
-msgstr " %s paralel qapısında"
-
-#: printer/printerdrake.pm:2405 printer/printerdrake.pm:2412
-#, c-format
-msgid "to the USB"
-msgstr ""
-
-#: printer/printerdrake.pm:2406 printer/printerdrake.pm:2413
-#, fuzzy, c-format
-msgid "via the network"
-msgstr "Şəbəkə fəallaşdırılır"
-
-#: printer/printerdrake.pm:2407
-#, c-format
-msgid "This type of connection is currently not fully supported by HPLIP."
-msgstr ""
-
-#: printer/printerdrake.pm:2409
-#, c-format
-msgid "You get full HPLIP support for your device if you connect it "
-msgstr ""
-
-#: printer/printerdrake.pm:2415
-#, c-format
-msgid ""
-"You can now set up your device with HPLIP anyway (works in many cases), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "set it up without HPLIP (print-only), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, fuzzy, c-format
-msgid "or"
-msgstr "Saat"
-
-#: printer/printerdrake.pm:2417
-#, c-format
-msgid "cancel the setup (for example to reconnect your device)."
-msgstr ""
-
-#: printer/printerdrake.pm:2419
-#, c-format
-msgid ""
-"You can always revise your choice by clicking your printer's entry in the "
-"main window, "
-msgstr ""
-
-#: printer/printerdrake.pm:2420
-#, c-format
-msgid "clicking the \"%s\" button, "
-msgstr ""
-
-#. -PO: "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: printer/printerdrake.pm:2420 standalone/drakperm:124 standalone/drakups:300
-#: standalone/drakups:360 standalone/drakups:380 standalone/drakvpn:319
-#: standalone/drakvpn:680 standalone/printerdrake:245
-#, c-format
-msgid "Edit"
-msgstr "Düzəlt"
-
-#: printer/printerdrake.pm:2421
-#, c-format
-msgid "and choosing \"%s\"."
-msgstr ""
-
-#: printer/printerdrake.pm:2421 printer/printerdrake.pm:5334
-#: printer/printerdrake.pm:5394
-#, c-format
-msgid "Printer connection type"
-msgstr "Çapçı bağlantı növü"
-
-#: printer/printerdrake.pm:2423 standalone/logdrake:408
-#, c-format
-msgid "What do you want to do?"
-msgstr "Nə etmək istəyirsiniz?"
-
-#: printer/printerdrake.pm:2424 printer/printerdrake.pm:2428
-#, c-format
-msgid "Set up with HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2425 printer/printerdrake.pm:2427
-#: printer/printerdrake.pm:2430
-#, c-format
-msgid "Set up without HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2461
-#, c-format
-msgid ""
-"On many HP printers there are special functions available, maintenance (ink "
-"level checking, nozzle cleaning. head alignment, ...) on all not too old "
-"inkjets, scanning on multi-function devices, and memory card access on "
-"printers with card readers. "
-msgstr ""
-
-#: printer/printerdrake.pm:2463
-#, c-format
-msgid ""
-"To access these extra functions on HP printers they must be set up with "
-"HPLIP (HP Linux Imaging and Printing). "
-msgstr ""
-
-#: printer/printerdrake.pm:2465
-#, c-format
-msgid "Do you want to use HPLIP (choose \"No\" for non-HP printers)? "
-msgstr ""
-
-#: printer/printerdrake.pm:2491
-#, c-format
-msgid "Installing %s package..."
-msgstr "%s paketi qurulur..."
-
-#: printer/printerdrake.pm:2491 printer/printerdrake.pm:2497
-#: printer/printerdrake.pm:2525
-#, fuzzy, c-format
-msgid "HPLIP"
-msgstr "PL_IP"
-
-#: printer/printerdrake.pm:2498
-#, c-format
-msgid "Only printing will be possible on the %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2513
-#, fuzzy, c-format
-msgid "Could not remove your old HPOJ configuration file %s for your %s! "
-msgstr ""
-"İsitafadəçilər üçün xas quraşdırma qovluqları yaradıla bilmədi `%s':%s\n"
-
-#: printer/printerdrake.pm:2515
-#, c-format
-msgid "Please remove the file manually and restart HPOJ."
-msgstr ""
-
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "Checking device and configuring %s..."
-msgstr "Avadanlıq yoxlanır və %s quraşdırılır..."
-
-#: printer/printerdrake.pm:2557
-#, fuzzy, c-format
-msgid "Which printer do you want to set up with HPLIP?"
-msgstr "Onu hansı sektora daşımaq istəyirsiniz?"
-
-#: printer/printerdrake.pm:2576
-#, c-format
-msgid "HPLIP was not able to communicate with the chosen printer!"
-msgstr ""
-
-#: printer/printerdrake.pm:2577 printer/printerdrake.pm:2584
-#, fuzzy, c-format
-msgid "Setting up the printer without HPLIP..."
-msgstr "İstifadəçi mə'lumatlarını qururam..."
-
-#: printer/printerdrake.pm:2583
-#, c-format
-msgid ""
-"HPLIP did not find any local printers (Parallel, USB) which it supports!"
-msgstr ""
-
-#: printer/printerdrake.pm:2622
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "SANE paketləri qurulur..."
-
-#: printer/printerdrake.pm:2635
-#, c-format
-msgid "Scanning on the %s will not be possible."
-msgstr ""
-
-#: printer/printerdrake.pm:2650
-#, c-format
-msgid "Using and Maintaining your %s"
-msgstr ""
-
-#: printer/printerdrake.pm:2664
-#, fuzzy, c-format
-msgid "Configuring device..."
-msgstr "Quraşdırılır..."
-
-#: printer/printerdrake.pm:2701
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Çapçı qapısı CUPS üçün açılır..."
-
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2985
-#: printer/printerdrake.pm:3138
-#, c-format
-msgid "Reading printer database..."
-msgstr "Çapçı mə'lumat bazası oxunur..."
-
-#: printer/printerdrake.pm:2943
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Çapçı Adı və Şərhləri Daxil Edin"
-
-#: printer/printerdrake.pm:2947 printer/printerdrake.pm:4206
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Çapçı adı ancaq hərf, rəqəm və alt xətt daxil edə bilər"
-
-#: printer/printerdrake.pm:2953 printer/printerdrake.pm:4211
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Çapçı \"%s\" onsuzda mövcuddur,\n"
-"həqiqətən də onun quraşdırmasının üstündən yazmaq istəyirsiniz?"
-
-#: printer/printerdrake.pm:2960
-#, c-format
-msgid ""
-"The printer name \"%s\" has more than 12 characters which can make the "
-"printer unaccessible from Windows clients. Do you really want to use this "
-"name?"
-msgstr ""
-
-#: printer/printerdrake.pm:2969
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Hər çapçının bir adı olmalıdır (misal üçün: \"çapçı\"). İzahat və "
-"Mövqesahələrini doldurmaq məcbur deyil. Onlar istifadəçilərə mə'lumat vermək "
-"üçündür."
-
-#: printer/printerdrake.pm:2970
-#, c-format
-msgid "Name of printer"
-msgstr "Çapçı adı"
-
-#: printer/printerdrake.pm:2971 standalone/drakconnect:592
-#: standalone/harddrake2:39 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Description"
-msgstr "İzahat"
-
-#: printer/printerdrake.pm:2972 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Location"
-msgstr "Mövqe"
-
-#: printer/printerdrake.pm:2990
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Çapçı mə'lumat bazası hazırlanır..."
-
-#: printer/printerdrake.pm:3116
-#, c-format
-msgid "Your printer model"
-msgstr "Çapçınızın modeli"
-
-#: printer/printerdrake.pm:3117
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"Printerdrake, çapçı avtomatik aşkarından əldə edilən çapçı adını onun "
-"mə'lumat bazasında yer alan çapçıların siyahısı ilə ən uyğununu tapmaq üçün "
-"müqayisə etdi. Bu seçim bə'zən səhv ola bilər, misal üçün, çapçınızın adı "
-"mə'lumat bazasında heç yer almırsa. Ona görədə seçimin düz olub olmadığına "
-"baxın və əgər düzgündürsə \"Model düzgündür\" düyməsini, deyilsə \"Modeli "
-"əllə seç\" düyməsinə basaraq növbəti ekranda çapçınızı seçin.\n"
-"\n"
-"Çapçınız üçün Printerdrake bunu tapdı:\n"
-"\n"
-"%s"
-
-#: printer/printerdrake.pm:3122 printer/printerdrake.pm:3125
-#, c-format
-msgid "The model is correct"
-msgstr "Model düzgündür"
-
-#: printer/printerdrake.pm:3123 printer/printerdrake.pm:3124
-#: printer/printerdrake.pm:3127
-#, c-format
-msgid "Select model manually"
-msgstr "Modeli əllə seç"
-
-#: printer/printerdrake.pm:3151
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
-msgstr ""
-"\n"
-"\n"
-"Xahiş edirik, çapçınızın modelinin avtomatik açkar edilib edilmədiyini seçin "
-"\"Xam çapçı\" ya da səhv model seçilidirsə, siyahıdan düzgün modeli tapın."
-
-#: printer/printerdrake.pm:3170
-#, c-format
-msgid "Install a manufacturer-supplied PPD file"
-msgstr ""
-
-#: printer/printerdrake.pm:3202
-#, c-format
-msgid ""
-"Every PostScript printer is delivered with a PPD file which describes the "
-"printer's options and features."
-msgstr ""
-
-#: printer/printerdrake.pm:3203
-#, c-format
-msgid ""
-"This file is usually somewhere on the CD with the Windows and Mac drivers "
-"delivered with the printer."
-msgstr ""
-
-#: printer/printerdrake.pm:3204
-#, c-format
-msgid "You can find the PPD files also on the manufacturer's web sites."
-msgstr ""
-
-#: printer/printerdrake.pm:3205
-#, c-format
-msgid ""
-"If you have Windows installed on your machine, you can find the PPD file on "
-"your Windows partition, too."
-msgstr ""
-
-#: printer/printerdrake.pm:3206
-#, c-format
-msgid ""
-"Installing the printer's PPD file and using it when setting up the printer "
-"makes all options of the printer available which are provided by the "
-"printer's hardware"
-msgstr ""
-
-#: printer/printerdrake.pm:3207
-#, c-format
-msgid ""
-"Here you can choose the PPD file to be installed on your machine, it will "
-"then be used for the setup of your printer."
-msgstr ""
-
-#: printer/printerdrake.pm:3209
-#, c-format
-msgid "Install PPD file from"
-msgstr "PPD faylını buradan qur"
-
-#: printer/printerdrake.pm:3212 printer/printerdrake.pm:3220
-#: standalone/scannerdrake:183 standalone/scannerdrake:192
-#: standalone/scannerdrake:242 standalone/scannerdrake:250
-#, c-format
-msgid "Floppy Disk"
-msgstr "Floppi Disk"
-
-#: printer/printerdrake.pm:3213 printer/printerdrake.pm:3222
-#: standalone/scannerdrake:184 standalone/scannerdrake:194
-#: standalone/scannerdrake:243 standalone/scannerdrake:252
-#, c-format
-msgid "Other place"
-msgstr "Başqa yer"
-
-#: printer/printerdrake.pm:3228
-#, c-format
-msgid "Select PPD file"
-msgstr "PPD faylını seç"
-
-#: printer/printerdrake.pm:3232
-#, c-format
-msgid "The PPD file %s does not exist or is unreadable!"
-msgstr "%s PPD faylı mövcud deyil ya da oxuna bilmir!"
-
-#: printer/printerdrake.pm:3238
-#, c-format
-msgid "The PPD file %s does not conform with the PPD specifications!"
-msgstr "%s PPD faylı PPD spesifikasiyalarına uyğun gəlmir!"
-
-#: printer/printerdrake.pm:3249
-#, c-format
-msgid "Installing PPD file..."
-msgstr "PPD faylı qurulur..."
-
-#: printer/printerdrake.pm:3368
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "OKI winprinter qurğuları"
-
-#: printer/printerdrake.pm:3369
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"OKI lazer winprinter quraşdırırsınız. Bu çapçılar çox xüsusi rabitə "
-"protokolu\n"
-"işlədir və yalnız BİRİNCİ paralel qapıya bağlananda işləyir. Xahiş edirik, "
-"bunu bir daha yoxlayın, əgər çapçınız başqa qapıya bağlıdırsa, sürücü onu "
-"rədd edəcəkdir."
-
-#: printer/printerdrake.pm:3394 printer/printerdrake.pm:3424
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Lexmark inkjet qurğuları"
-
-#: printer/printerdrake.pm:3395
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Lexmark tərəfindən verilən inkjet çapçı sürücüləri ilə çapçı yalnız yerli, "
-"sistemdə quraşdırıla bilər, yəni şəbəkədəki başqa bir çapçıya bu sürücülərlə "
-"yetişə bilməzsiniz. Xahiş edirik, çapçınızı sisteminizə bağlayın ya da bu "
-"sürücüləri çapçının bağlı olduğu kompüterdə qurun."
-
-#: printer/printerdrake.pm:3425
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-"Lexmark mürəkkəb fıskırtmalı çapçını və qurğuları istifadə edərək çap "
-"etməküçün Lexmark (http://www.lexmark.com/) tərəfindən tə'yin edilən "
-"sürücülərəehtiyacınız var. \"Sürücülər\" bağlantısına tıqlayın. Modelinizi "
-"və sonra əməliyyat sistemi olaraq \"Linuks\"u seçin. Sürücülər RPM paketi "
-"vəya interaktiv qrafiki qurulumu olan qabıq skriptləridir. Bu quraşdırmanı "
-"qrafiki ara üzlə etməniz məcburi deyil. Lisenziya razılaşmasından sonra. "
-"birbaşa çıxın. Daha sonra \"lexmarkmain\" ilə çapçı başı hizalama "
-"səhifəsiniçap edin və baş hizalamasını bu proqram vasitəsiylə quraşdırın."
-
-#: printer/printerdrake.pm:3435
-#, fuzzy, c-format
-msgid "Lexmark X125 configuration"
-msgstr "Lexmark inkjet qurğuları"
-
-#: printer/printerdrake.pm:3436
-#, fuzzy, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes. Please connect "
-"your printer to a local USB port or configure it on the machine where it is "
-"connected to."
-msgstr ""
-"Lexmark tərəfindən verilən inkjet çapçı sürücüləri ilə çapçı yalnız yerli, "
-"sistemdə quraşdırıla bilər, yəni şəbəkədəki başqa bir çapçıya bu sürücülərlə "
-"yetişə bilməzsiniz. Xahiş edirik, çapçınızı sisteminizə bağlayın ya da bu "
-"sürücüləri çapçının bağlı olduğu kompüterdə qurun."
-
-#: printer/printerdrake.pm:3458
-#, fuzzy, c-format
-msgid "Samsung ML/QL-85G configuration"
-msgstr "Səs quraşdırılması"
-
-#: printer/printerdrake.pm:3459 printer/printerdrake.pm:3486
-#, fuzzy, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected on the "
-"first parallel port, no printers on remote machines or print server boxes or "
-"on other parallel ports. Please connect your printer to the first parallel "
-"port or configure it on the machine where it is connected to."
-msgstr ""
-"Lexmark tərəfindən verilən inkjet çapçı sürücüləri ilə çapçı yalnız yerli, "
-"sistemdə quraşdırıla bilər, yəni şəbəkədəki başqa bir çapçıya bu sürücülərlə "
-"yetişə bilməzsiniz. Xahiş edirik, çapçınızı sisteminizə bağlayın ya da bu "
-"sürücüləri çapçının bağlı olduğu kompüterdə qurun."
-
-#: printer/printerdrake.pm:3485
-#, fuzzy, c-format
-msgid "Canon LBP-460/660 configuration"
-msgstr "Əllə TCP/IP quraşdırması"
-
-#: printer/printerdrake.pm:3512
-#, fuzzy, c-format
-msgid "Canon LBP-810/1120 (CAPT) configuration"
-msgstr "Əllə TCP/IP quraşdırması"
-
-#: printer/printerdrake.pm:3513
-#, fuzzy, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes or on the parallel "
-"port. Please connect your printer to the USB or configure it on the machine "
-"where it is directly connected to."
-msgstr ""
-"Lexmark tərəfindən verilən inkjet çapçı sürücüləri ilə çapçı yalnız yerli, "
-"sistemdə quraşdırıla bilər, yəni şəbəkədəki başqa bir çapçıya bu sürücülərlə "
-"yetişə bilməzsiniz. Xahiş edirik, çapçınızı sisteminizə bağlayın ya da bu "
-"sürücüləri çapçının bağlı olduğu kompüterdə qurun."
-
-#: printer/printerdrake.pm:3520
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "HP LaserJet 1000 üçün Firmware-Upload"
-
-#: printer/printerdrake.pm:3670
-#, c-format
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Çapçı əsas qurğuları\n"
-"\n"
-"Səhifə böyüklüyü, mürəkkəb növü/pçap modu (mövcuddursa) və eyni zamanda da "
-"lazer çapçılar üçün avadanlıq qurğularının düzgün seçildiyini "
-"yoxlamalısınız. Diqqət edin ki çox yüksək çap keyfiyyəti və həlledilirliyi "
-"ilə çap əməliyyatı yavaşlaya bilər."
-
-#: printer/printerdrake.pm:3795
-#, c-format
-msgid "Printer default settings"
-msgstr "Əsas çapçı qurğuları"
-
-#: printer/printerdrake.pm:3802
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "%s seçimi integer rəqəmi olmalıdır!"
-
-#: printer/printerdrake.pm:3806
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "%s seçimi rəqəm olmalıdır!"
-
-#: printer/printerdrake.pm:3810
-#, c-format
-msgid "Option %s out of range!"
-msgstr "%s qurğusu əhatə xaricindədir!"
-
-#: printer/printerdrake.pm:3862
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"(\"%s\") çapçısını əsas çapçı olaraq\n"
-"tə'yin etmək istəyirsiniz?"
-
-#: printer/printerdrake.pm:3878
-#, c-format
-msgid "Test pages"
-msgstr "Sınaq səhifələri"
-
-#: printer/printerdrake.pm:3879
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Xahiş edirik, çap etmək istədiyiniz sınaq səhifələrini seçin.\n"
-"Qeyd: foto sınaq səhifəsinin çapı uzun müddət ala bilər və alçaq yaddaşı "
-"olan lazer çapçılarda heç çıxmaya da bilər. Çox vaxt standart sınaq "
-"səhifəsini çap etmək kifayətdir."
-
-#: printer/printerdrake.pm:3883
-#, c-format
-msgid "No test pages"
-msgstr "Sınaq səhifələri yoxdur"
-
-#: printer/printerdrake.pm:3884
-#, c-format
-msgid "Print"
-msgstr "Çap Et"
-
-#: printer/printerdrake.pm:3909
-#, c-format
-msgid "Standard test page"
-msgstr "Sıravi sınaq səhifəsi"
-
-#: printer/printerdrake.pm:3912
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Alternativ çap səhifəsi (Məktub)"
-
-#: printer/printerdrake.pm:3915
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Alternativ sınaq səhifəsi (A4)"
-
-#: printer/printerdrake.pm:3917
-#, c-format
-msgid "Photo test page"
-msgstr "Foto sınaq səhifəsi"
-
-#: printer/printerdrake.pm:3930
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Sınaq səhifə(ləri)si çap edilir..."
-
-#: printer/printerdrake.pm:3950
-#, fuzzy, c-format
-msgid "Skipping photo test page."
-msgstr "Foto sınaq səhifəsi"
-
-#: printer/printerdrake.pm:3967
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Sınaq səhifə(ləri)si çapçıya göndərildi.\n"
-"Çapçının işə başlaması üçün bir az vaxt keçə bilər.\n"
-"Çap vəziyyəti:\n"
-"%s\n"
-"\n"
-
-#: printer/printerdrake.pm:3971
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Sınaq səhifə(lər)si çapçıya göndərildi.\n"
-"Çapçının işləməyə başlaması üçün bir az vaxt lazım ola bilər.\n"
-
-#: printer/printerdrake.pm:3981
-#, c-format
-msgid "Did it work properly?"
-msgstr "Düzgün işlədi?"
-
-#: printer/printerdrake.pm:4005
-#, c-format
-msgid "Raw printer"
-msgstr "Xam çapçı"
-
-#: printer/printerdrake.pm:4027
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Əmr sətirindən faylı çap etmək üçün (terminal pəncərəsi) bu əmri işlədin: \"%"
-"s <fayl>\" Qrafiki çap vasitəsi ilə isə əmr belə verilməlidir: \"xpp <fayl>"
-"\" ya da \"kprinter <fayl>\". Qrafiki fasitələr sizə çapçını və qurğuları "
-"asanlıqla seçməyə icazə verir.\n"
-
-#: printer/printerdrake.pm:4029
-#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Eləcə də bir çox proqramın \"Çap əmri\" sahəsində bu əmrlərdənbirini işlədə "
-"bilərsiniz. Yalnız bu cür istifadədə çap ediləcək faylın adını proqram "
-"verəcəyi üçün fayl adı verilməz.\n"
-
-#: printer/printerdrake.pm:4032 printer/printerdrake.pm:4049
-#: printer/printerdrake.pm:4059
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"\"%s\" əmri eyni zamanda səciyyəvi çap vəzifəsinin seçim qurğularını "
-"dəyişdirməyə icazə verir. Sadəcə olaraq uyğun gələn qatarı əmr sətirinə "
-"əlavə edin, mis. \"%s <fayl>\". "
-
-#: printer/printerdrake.pm:4035 printer/printerdrake.pm:4075
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"Hazırkı çapçı üçün mövcud olan seçimlər siyahısını almaq üçün \"Seçimlər "
-"siyahısını göstər\" düyməsinə basın ya da aşağıdakı siyahını oxuyun.%s%s%s\n"
-"\n"
-
-#: printer/printerdrake.pm:4039
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Hazırkı çapçı üçün mövcud olan çap seçimləri siyahısı:\n"
-"\n"
-
-#: printer/printerdrake.pm:4044 printer/printerdrake.pm:4054
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Əmr sətirindən (terminal pəncərəsi) bir faylı çap etmək üçün bu əmri işlədin "
-"\"%s <fayl>\".\n"
-
-#: printer/printerdrake.pm:4046 printer/printerdrake.pm:4056
-#: printer/printerdrake.pm:4066
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Eləcə də bir çox proqramın \"Çap əmri\" sahəsində bu əmrlərdənbirini işlədə "
-"bilərsiniz. Yalnız bu cür istifadədə çap ediləcək faylın adını proqram "
-"verəcəyi üçün fayl adı verilməz.\n"
-
-#: printer/printerdrake.pm:4051 printer/printerdrake.pm:4061
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Hazırkı çapçı üçün mövcud olan seçimlər siyahısını almaq üçün \"Seçimlər "
-"siyahısını göstər\" düyməsinə basın."
-
-#: printer/printerdrake.pm:4064
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Əmr sətirindən (terminal pəncərəsi) bir faylı çap etmək üçün bu əmrləri "
-"işlədin: \"%s <fayl>\" ya da \"%s <fayl>\".\n"
-
-#: printer/printerdrake.pm:4068
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Qurğuları sazlamaq və çap vəzifələrini yerinə gətirmək üçün eyni zamanda "
-"\"xpdq\"dən də istifadə edə bilərsiniz.\n"
-"Əgər masa üstü mühidi olaraq KDE işlədirinizsə, masa üstünüzdə adı \"Çapçını "
-"DAYANDIR!\" olan \"panika düyməsi\", mövuddur, bu düyməyəbasılanda bütün çap "
-"vəzifələri birbaşa dayandırılır. Bu xususilə çapçı tıxanmalarında "
-"faydalıdır.\n"
-
-#: printer/printerdrake.pm:4072
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"\"%s\" və \"%s\" əmrləri eyni zamanda səciyyəvi çap vəzifəsinin seçim "
-"qurğularını dəyişdirməyə icazə verir. Sadəcə olaraq uyğun gələn qatarı əmr "
-"sətirinə əlavə edin, mis. \"%s <fayl>\".\n"
-
-#: printer/printerdrake.pm:4081
-#, fuzzy, c-format
-msgid "Using/Maintaining the printer \"%s\""
-msgstr "%s çapçısında çap edilir"
-
-#: printer/printerdrake.pm:4082
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "%s çapçısında çap edilir"
-
-#: printer/printerdrake.pm:4088
-#, c-format
-msgid "Print option list"
-msgstr "Seçimlər siyahısını göstər"
-
-#: printer/printerdrake.pm:4092
-#, fuzzy, c-format
-msgid "Printing option list..."
-msgstr "Seçimlər siyahısını göstər"
-
-#: printer/printerdrake.pm:4110
-#, c-format
-msgid ""
-"Your %s is set up with HP's HPLIP driver software. This way many special "
-"features of your printer are supported.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4113
-#, c-format
-msgid ""
-"The scanner in your printer can be used with the usual SANE software, for "
-"example Kooka or XSane (Both in the Multimedia/Graphics menu). "
-msgstr ""
-
-#: printer/printerdrake.pm:4114
-#, c-format
-msgid ""
-"Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to "
-"share your scanner on the network.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4118
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed like a usual USB "
-"mass storage device. "
-msgstr ""
-
-#: printer/printerdrake.pm:4119
-#, c-format
-msgid ""
-"After inserting a card a hard disk icon to access the card should appear on "
-"your desktop.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4121
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed using HP's Printer "
-"Toolbox (Menu: System/Monitoring/HP Printer Toolbox) clicking the \"Access "
-"Photo Cards...\" button on the \"Functions\" tab. "
-msgstr ""
-
-#: printer/printerdrake.pm:4122
-#, c-format
-msgid ""
-"Note that this is very slow, reading the pictures from the camera or a USB "
-"card reader is usually faster.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4125
-#, c-format
-msgid ""
-"HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a "
-"lot of status monitoring and maintenance functions for your %s:\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4126
-#, c-format
-msgid " - Ink level/status info\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4127
-#, c-format
-msgid " - Ink nozzle cleaning\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4128
-#, fuzzy, c-format
-msgid " - Print head alignment\n"
-msgstr "Üfüqi tərəfləmə"
-
-#: printer/printerdrake.pm:4129
-#, fuzzy, c-format
-msgid " - Color calibration\n"
-msgstr "Rəng quraşdırması"
-
-#: printer/printerdrake.pm:4170 printer/printerdrake.pm:4197
-#: printer/printerdrake.pm:4232
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Çapçı qurğularını transfer et"
-
-#: printer/printerdrake.pm:4171
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"Çap hovuzunu %s yerinə %s etmək üçün çapçı qurğularınızı köçürəbilərsiniz. "
-"Bütün qurğu mə'lumatı (çapçı adı, izahatı, yeri, bağlantı növüvə əsas "
-"seçimlər) köçürüldüyü vaxt, sırada olan vəzifələr transfer edilməyəcək.\n"
-"Qeyd: Aşağıdakı səbəplərdən ötrü bütün sıralar transfer edilə bilməz:\n"
-
-#: printer/printerdrake.pm:4174
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS Novell vericilərindəki ya da mə'lumatı sərbəst-şəkilli formda "
-"göndərənçapçıları dəstəkləmir.\n"
-
-#: printer/printerdrake.pm:4176
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ yalnız yerli çapçıları, uzaq LPD çapçıları, və Socket/TCP çapçılarını "
-"dəstəkləyir.\n"
-
-#: printer/printerdrake.pm:4178
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD və LPRng IPP çapçılarını dəstəkləmir.\n"
-
-#: printer/printerdrake.pm:4180
-#, c-format
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"Əlavə olaraq, bur proqram ya da \"foomatic-configure\" vasitəsilə "
-"yaradılmayan növbələr transfer edilə bilməz."
-
-#: printer/printerdrake.pm:4181
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Eyni zamanda, firmaları tərəfindən verilən PPD faylları ilə ya da doğma CUPS "
-"sürücüləri ilə qurğulanan çapçılar transfer edilə bilməz."
-
-#: printer/printerdrake.pm:4182
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Transfer etmək istədiyiniz çapçıları işarələyin və \n"
-"\"Transfer Et\" düyməsinə basın."
-
-#: printer/printerdrake.pm:4185
-#, c-format
-msgid "Do not transfer printers"
-msgstr "Çapçıları qətiyyən daşıma"
-
-#: printer/printerdrake.pm:4186 printer/printerdrake.pm:4202
-#, c-format
-msgid "Transfer"
-msgstr "Transfer Et"
-
-#: printer/printerdrake.pm:4198
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"\"%s\" adında bir çapçı onsuzda %s altında mövcuddur . \n"
-"Üstündən yazmaq üçün \"Transfer\"ə basın.\n"
-"Həmçinin, yeni bir ad daxil edə bilər ya da çapçını keçə bilərsiniz."
-
-#: printer/printerdrake.pm:4219
-#, c-format
-msgid "New printer name"
-msgstr "Yeni çapçı adı"
-
-#: printer/printerdrake.pm:4222
-#, c-format
-msgid "Transferring %s..."
-msgstr "%s daşınır..."
-
-#: printer/printerdrake.pm:4233
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Siz köhnə əsas çapçınızı (\"%s\") transer etdiniz, onun eyni zamanda hazırkı "
-"%s çap etmə sistemində də əsas olmasını istəyirsiniz?"
-
-#: printer/printerdrake.pm:4243
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Çapçı mə'lumatları yenilənir..."
-
-#: printer/printerdrake.pm:4253
-#, c-format
-msgid "Starting network..."
-msgstr "Şəbəkə başladılır..."
-
-#: printer/printerdrake.pm:4296 printer/printerdrake.pm:4300
-#: printer/printerdrake.pm:4302
-#, c-format
-msgid "Configure the network now"
-msgstr "Şəbəkəni indi quraşdır"
-
-#: printer/printerdrake.pm:4297
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Şəbəkə fəalliyyəti quraşdırılmayıb"
-
-#: printer/printerdrake.pm:4298
-#, c-format
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"Bir çəbəkə çapçısını quraşdırma üçün şəbəkəyə yetişmə səlahiyyətiniz var, "
-"yalnız hələ quraşdırılmayıb. Şəbəkə quraşdırması olmadan indi quraşdırmaq "
-"istədiyiniz çapçını işədə bilməyəcəksiniz. Necə davam etmək istəyirsiniz?"
-
-#: printer/printerdrake.pm:4301
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Şəbəkəni quraşdırmadan davam et"
-
-#: printer/printerdrake.pm:4332
-#, fuzzy, c-format
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network is accessible after booting your "
-"system and correct the configuration using the %s Control Center, section "
-"\"Network & Internet\"/\"Connection\", and afterwards set up the printer, "
-"also using the %s Control Center, section \"Hardware\"/\"Printer\""
-msgstr ""
-"Qurulum sırasında edilən şəbəkə quraşdırılması indi başladıla bilməz. Xahiş "
-"dirik, sistem açılandan sonra şəbəkənin işlədiyini yoxlayın və Mandriva "
-"Linux İdarə Mərkəzindəki Şəbəkə və İnternet bölməsindən qurğuları düzəldin, "
-"və ondan sonra yenə də Mandriva Linux İdarə Mərkəzindəki \"Avadanlıq\"/"
-"\"Çapçı\" bölməsindən çapçınızı qurun."
-
-#: printer/printerdrake.pm:4333
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Şəbəkəyə yetişmə işləmirdi fə başladıla bilmədi. Xahiş edirik, "
-"avadanlığınızıvə qurğularınızı yoxlayın. Sonra uzaqdakı çapçınızı yenidən "
-"qurğulamaya çalışın."
-
-#: printer/printerdrake.pm:4343
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Çap etmə sistemi yenidən başladılır..."
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "high"
-msgstr "yüksək"
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "paranoid"
-msgstr "paranoid"
-
-#: printer/printerdrake.pm:4376
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "%s təhlükəsizlik səviyyəsində çap etmə sistemini qur"
-
-#: printer/printerdrake.pm:4377
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessible by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"%s çap sistemini %s təhlükəsizlik səviyyəsində icra edəcək bir quruluma "
-"başlamaq üzrəsiniz.\n"
-"\n"
-"Bu çap sistemi, çap vəzifələrini gözlərkən və yazdırarkən bir arxa plan "
-"gedişatı olaraq işləyir. Bu gedişata şəbəkə üstündəki digər sistemlər yetişə "
-"bilər və buna görə də hücumlar da arta bilər. Digər yandan, yalnız bir neçə "
-"proqram bu təhlükəsizlik səviyyəsində əsasolaraq başladıla bilər.\n"
-"\n"
-"Bu sistemdə həqiqətən də çap sisteminin quraşdırılmasını istəyirsiniz?"
-
-#: printer/printerdrake.pm:4413
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Başlarkən çap etmə sistemi işə salınır"
-
-#: printer/printerdrake.pm:4414
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"Çap sistemi (%s) sistemin açılışında avtomatik olaraq başladılmayacaq.\n"
-"\n"
-"Çap sistemi mümkünatı olan bir hücüm nöqtəsi olduğuna görə daha yüksək\n"
-"təhlükəsizlik səviyyəsinə ehtiyacı var və buna görə də avtomatik "
-"başladmanın.\n"
-"qeyri-fəallaşdırılılması daha uyğun yol olacaq.\n"
-"Çap sisteminin avtomatik başladılmasını yenə də istiyirsiniz?"
-
-#: printer/printerdrake.pm:4437
-#, c-format
-msgid "Checking installed software..."
-msgstr "Qurulu proqramlar yoxlanır..."
-
-#: printer/printerdrake.pm:4443
-#, c-format
-msgid "Removing %s..."
-msgstr "%s silinir ..."
-
-#: printer/printerdrake.pm:4447
-#, fuzzy, c-format
-msgid "Could not remove the %s printing system!"
-msgstr "Çap sistemini dəyişdir"
-
-#: printer/printerdrake.pm:4471
-#, c-format
-msgid "Installing %s..."
-msgstr "%s qurulur ..."
-
-#: printer/printerdrake.pm:4475
-#, fuzzy, c-format
-msgid "Could not install the %s printing system!"
-msgstr "Çap sistemini dəyişdir"
-
-#: printer/printerdrake.pm:4543
-#, c-format
-msgid ""
-"In this mode there is no local printing system, all printing requests go "
-"directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:4545
-#, c-format
-msgid ""
-"Enter the host name or IP of your CUPS server and click OK if you want to "
-"use this mode, click \"Quit\" otherwise."
-msgstr ""
-
-#: printer/printerdrake.pm:4559
-#, fuzzy, c-format
-msgid "Name or IP of remote server:"
-msgstr "Uzaq lpd vericisi üstündəki çapçı"
-
-#: printer/printerdrake.pm:4579
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Əsas Çapçı Seçilir..."
-
-#: printer/printerdrake.pm:4599
-#, fuzzy, c-format
-msgid "Local CUPS printing system or remote CUPS server?"
-msgstr "Uzaq CUPS vericisi üstündəki çapçı"
-
-#: printer/printerdrake.pm:4600
-#, c-format
-msgid "The CUPS printing system can be used in two ways: "
-msgstr ""
-
-#: printer/printerdrake.pm:4602
-#, c-format
-msgid "1. The CUPS printing system can run locally. "
-msgstr ""
-
-#: printer/printerdrake.pm:4603
-#, c-format
-msgid ""
-"Then locally connected printers can be used and remote printers on other "
-"CUPS servers in the same network are automatically discovered. "
-msgstr ""
-
-#: printer/printerdrake.pm:4604
-#, c-format
-msgid ""
-"Disadvantage of this approach is, that more resources on the local machine "
-"are needed: Additional software packages need to be installed, the CUPS "
-"daemon has to run in the background and needs some memory, and the IPP port "
-"(port 631) is opened. "
-msgstr ""
-
-#: printer/printerdrake.pm:4606
-#, c-format
-msgid "2. All printing requests are immediately sent to a remote CUPS server. "
-msgstr ""
-
-#: printer/printerdrake.pm:4607
-#, c-format
-msgid ""
-"Here local resource occupation is reduced to a minimum. No CUPS daemon is "
-"started or port opened, no software infrastructure for setting up local "
-"print queues is installed, so less memory and disk space is used. "
-msgstr ""
-
-#: printer/printerdrake.pm:4608
-#, c-format
-msgid ""
-"Disadvantage is that it is not possible to define local printers then and if "
-"the specified server is down it cannot be printed at all from this machine. "
-msgstr ""
-
-#: printer/printerdrake.pm:4610
-#, c-format
-msgid "How should CUPS be set up on your machine?"
-msgstr ""
-
-#: printer/printerdrake.pm:4614 printer/printerdrake.pm:4629
-#: printer/printerdrake.pm:4633 printer/printerdrake.pm:4639
-#, c-format
-msgid "Remote server, specify Name or IP here:"
-msgstr ""
-
-#: printer/printerdrake.pm:4628
-#, fuzzy, c-format
-msgid "Local CUPS printing system"
-msgstr "CUPS çap sistemini quraşdır"
-
-#: printer/printerdrake.pm:4667
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Çap Sistemini Seçin"
-
-#: printer/printerdrake.pm:4668
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Hansı çapçı sistemi (spooler) istifadə etmək istəyirsiniz?"
-
-#: printer/printerdrake.pm:4717
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "\"%s\" çapçısı quraşdırıla bilmədi!"
-
-#: printer/printerdrake.pm:4732
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Foomatic Qurulur..."
-
-#: printer/printerdrake.pm:4738
-#, fuzzy, c-format
-msgid "Could not install %s packages, %s cannot be started!"
-msgstr ""
-"Darayıcı(ları)nızı bölüşdürmək üçün lazım olan paket(lər) qurula bilmədi."
-
-#: printer/printerdrake.pm:4933
-#, fuzzy, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it. "
-msgstr ""
-"Aşağıdakı çapçılar quraşdırılıb. Qurğularını dəyişdirmək üçün, mə'lumatı "
-"görmək üçün ya da onu əsas çapçı seçmək üçün çapçıya cüt tıqlayın."
-
-#: printer/printerdrake.pm:4963
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Mövcud olan bütün uzaq CUPS çapçılarını göstər"
-
-#: printer/printerdrake.pm:4964
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Çapçı siyahısını yenilə (Mövcud bütün uzaq CUPS çapçılarını göstərmək üçün)"
-
-#: printer/printerdrake.pm:4975
-#, c-format
-msgid "CUPS configuration"
-msgstr "CUPS quraşdırılması"
-
-#: printer/printerdrake.pm:4996
-#, c-format
-msgid "Change the printing system"
-msgstr "Çap sistemini dəyişdir"
-
-#: printer/printerdrake.pm:5005
-#, c-format
-msgid "Normal Mode"
-msgstr "Normal Mod"
-
-#: printer/printerdrake.pm:5006
-#, c-format
-msgid "Expert Mode"
-msgstr "Mütəxəssis Modu"
-
-#: printer/printerdrake.pm:5284 printer/printerdrake.pm:5340
-#: printer/printerdrake.pm:5426 printer/printerdrake.pm:5435
-#, c-format
-msgid "Printer options"
-msgstr "Çapçı seçimləri"
-
-#: printer/printerdrake.pm:5320
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Çapçı qurğularını dəyişdir"
-
-#: printer/printerdrake.pm:5322
-#, c-format
-msgid ""
-"Printer %s%s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"%s%s çap edicisi\n"
-"Bu çapçı üstündə nəyi dəyişdirmək istəyirsiniz?"
-
-#: printer/printerdrake.pm:5327
-#, fuzzy, c-format
-msgid "This printer is disabled"
-msgstr "Bu bölmə ölçüləndirilə bilməz"
-
-#: printer/printerdrake.pm:5329
-#, c-format
-msgid "Do it!"
-msgstr "Bunu et!"
-
-#: printer/printerdrake.pm:5335 printer/printerdrake.pm:5400
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Çapçı adı, izahatı, yeri"
-
-#: printer/printerdrake.pm:5337 printer/printerdrake.pm:5419
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Çapçı e'malatçısı, modeli, sürücüsü"
-
-#: printer/printerdrake.pm:5338 printer/printerdrake.pm:5420
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Çapçı e'malatçısı, model"
-
-#: printer/printerdrake.pm:5342 printer/printerdrake.pm:5430
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Bu çapçını əsas tə'yin et"
-
-#: printer/printerdrake.pm:5347 printer/printerdrake.pm:5436
-#: printer/printerdrake.pm:5438 printer/printerdrake.pm:5447
-#, fuzzy, c-format
-msgid "Enable Printer"
-msgstr "Vericini Fəallaşdır"
-
-#: printer/printerdrake.pm:5350 printer/printerdrake.pm:5441
-#: printer/printerdrake.pm:5442 printer/printerdrake.pm:5444
-#, fuzzy, c-format
-msgid "Disable Printer"
-msgstr "Vericini Qeyri-fəallaşdır"
-
-#: printer/printerdrake.pm:5354 printer/printerdrake.pm:5448
-#, fuzzy, c-format
-msgid "Printer communication error handling"
-msgstr "Çapçı bağlantı növü"
-
-#: printer/printerdrake.pm:5355 printer/printerdrake.pm:5452
-#, c-format
-msgid "Print test pages"
-msgstr "Sınaq səhifələri çap et"
-
-#: printer/printerdrake.pm:5356 printer/printerdrake.pm:5454
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Bu çapçını necə istifadə edəcəyinizi öyrənin"
-
-#: printer/printerdrake.pm:5357 printer/printerdrake.pm:5456
-#, c-format
-msgid "Remove printer"
-msgstr "Çapçını çıxart"
-
-#: printer/printerdrake.pm:5408
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Köhnə \"%s\" çapçısı çıxardılır..."
-
-#: printer/printerdrake.pm:5439
-#, fuzzy, c-format
-msgid "Printer \"%s\" is now enabled."
-msgstr "\"%2$s\" vericisi üstündəki \"%1$s\" çapçı"
-
-#: printer/printerdrake.pm:5445
-#, fuzzy, c-format
-msgid "Printer \"%s\" is now disabled."
-msgstr "VPN bağlantısı indi qeyri-fəallaşdırıldı."
-
-#: printer/printerdrake.pm:5487
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Həqiqətən də \"%s\" çapçısını silmək istəyirsiniz?"
-
-#: printer/printerdrake.pm:5491
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "\"%s\" çapçısı çıxardılır..."
-
-#: printer/printerdrake.pm:5515
-#, c-format
-msgid "Default printer"
-msgstr "Əsas çapçıi"
-
-#: printer/printerdrake.pm:5516
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "\"%s\" çapçısı indi əsas çapçı oldu."
-
#: raid.pm:42
#, fuzzy, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "Disk bölməsi, _formatted_ RAİD md%d'ə əlavə edilə bilmədi"
-#: raid.pm:148
+#: raid.pm:150
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "%d səviyyə RAİD üçün çatmayan sayda disk bölməsi\n"
-#: scanner.pm:96
+#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr "/usr/share/sane/firmware cərgəsi yaradıla bilmədi!"
-#: scanner.pm:107
+#: scanner.pm:106
#, fuzzy, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr "/usr/share/sane/firmware cərgəsi yaradıla bilmədi!"
-#: scanner.pm:114
+#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr "%s firmware faylı /usr/share/sane/firmware mövqeyinə köçürülə bilmədi!"
-#: scanner.pm:121
+#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr "%s firmware faylı üçün lazımi səlahiyyətlər müəyyən edilə bilmədi!"
-#: scanner.pm:200 standalone/scannerdrake:66 standalone/scannerdrake:70
-#: standalone/scannerdrake:78 standalone/scannerdrake:321
-#: standalone/scannerdrake:370 standalone/scannerdrake:463
-#: standalone/scannerdrake:507 standalone/scannerdrake:511
-#: standalone/scannerdrake:533 standalone/scannerdrake:598
+#: scanner.pm:199
#, c-format
msgid "Scannerdrake"
msgstr "Scannerdrake"
-#: scanner.pm:201 standalone/scannerdrake:964
+#: scanner.pm:200
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""
"Darayıcı(ları)nızı bölüşdürmək üçün lazım olan paket(lər) qurula bilmədi."
-#: scanner.pm:202
+#: scanner.pm:201
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr "Darayıcı(ları)nız ali istifadəçi olmayanlar üçün mövcud olmayacaqdır."
@@ -15054,12 +5163,12 @@ msgstr "Səhv IPv4 xəta ismarışlarını qəbul et/etmə"
#: security/help.pm:13
#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr " Translasiya edilən icmp echo'sunu Qəbul Et/Rədd Et"
+msgid "Accept/Refuse broadcasted icmp echo."
+msgstr "Translasiya edilən icmp echo'sunu Qəbul Et/Rədd Et"
#: security/help.pm:15
#, c-format
-msgid " Accept/Refuse icmp echo."
+msgid "Accept/Refuse icmp echo."
msgstr "icmp əks sədasını qəbul/rədd et."
#: security/help.pm:17
@@ -15223,7 +5332,7 @@ msgstr ""
"Ad həlledilirliyi gizləmə qorumasını fəallaşdırr/qeyri-fəallaşdır.\n"
"Əgər \"%s\" seçilidirsə, eyni zamanda syslog'a da raport ediləcək."
-#: security/help.pm:80 standalone/draksec:215
+#: security/help.pm:80
#, c-format
msgid "Security Alerts:"
msgstr "Təhlükəsizlik Xəbərdarlıqları:"
@@ -15249,11 +5358,11 @@ msgid "Enable/Disable msec hourly security check."
msgstr "Saat başı msec təhlükəsizlik yoxlamasını Fəallaşdır/Qeyri-fəallaşdır"
#: security/help.pm:90
-#, c-format
+#, fuzzy, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
-msgstr ""
-" su xassəsini yalnız wheel qrupu üzvlərinə ya da hərkəsə açıq edilməsi."
+"Enable su only from members of the wheel group. If set to no, allows su from "
+"any user."
+msgstr "su xassəsini yalnız wheel qrupu üzvlərinə ya da hərkəsə açıq edilməsi."
#: security/help.pm:92
#, c-format
@@ -15268,12 +5377,12 @@ msgstr ""
#: security/help.pm:96
#, c-format
-msgid " Activate/Disable daily security check."
+msgid "Activate/Disable daily security check."
msgstr "Günlük təhlükəsizlik yoxlamasını Fəallaşdır/Qeyri-fəallaşdır"
#: security/help.pm:98
#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
+msgid "Enable/Disable sulogin(8) in single user level."
msgstr "Tək istifadəçi səviyyəsində sulogin(8)-i fəallaşdır/qeyri-fəallaşdır."
#: security/help.pm:100
@@ -15546,8 +5655,8 @@ msgid "Enable msec hourly security check"
msgstr "msec saat başı təhlükəsizlik yoxlamasını fəallaşdır"
#: security/l10n.pm:32
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
+#, fuzzy, c-format
+msgid "Enable su only from the wheel group members"
msgstr "su xassəsini yalnız wheel qrupu üzvlərinə ya da hərkəsə açıq et"
#: security/l10n.pm:33
@@ -15673,8 +5782,8 @@ msgstr "chkrootkit yoxlamalarını icra et"
#: security/l10n.pm:57
#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "Lazım olmayanda poçt göndərmə"
+msgid "Do not send empty mail reports"
+msgstr ""
#: security/l10n.pm:58
#, c-format
@@ -15711,6 +5820,11 @@ msgstr "Krakerlərə xoşgəlmişsiniz"
msgid "Poor"
msgstr "Zəif"
+#: security/level.pm:12
+#, c-format
+msgid "Standard"
+msgstr "Standart"
+
#: security/level.pm:13
#, c-format
msgid "High"
@@ -15793,6 +5907,11 @@ msgstr ""
#: security/level.pm:55
#, c-format
+msgid "Security"
+msgstr "Təhlükəsizlik"
+
+#: security/level.pm:55
+#, c-format
msgid "DrakSec Basic Options"
msgstr "DrakSec Əsas Seçimləri"
@@ -16156,52 +6275,67 @@ msgstr "USB avadanlığınız üçün sürücüləri yükləyin."
msgid "Starts the X Font Server (this is mandatory for Xorg to run)."
msgstr "X Font Vericisini başlat (Bu, Xorg icrası üçün məcburidir)."
-#: services.pm:115 services.pm:157
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Açılışda avtomatik olaraq başlayacaq xidmətləri seçin"
-
-#: services.pm:127 standalone/draksambashare:111
+#: services.pm:114
#, c-format
msgid "Printing"
msgstr "Çap"
-#: services.pm:128
+#: services.pm:115
#, c-format
msgid "Internet"
msgstr "İnternet"
-#: services.pm:131
+#: services.pm:118
#, c-format
msgid "File sharing"
msgstr "Fayl bölüşməsi"
-#: services.pm:138
+#: services.pm:120
+#, c-format
+msgid "System"
+msgstr "Sistem"
+
+#: services.pm:125
#, c-format
msgid "Remote Administration"
msgstr "Uzaqdan İdarə"
-#: services.pm:146
+#: services.pm:133
#, c-format
msgid "Database Server"
msgstr "Mə'lumat Bazası Vericisi"
-#: services.pm:209
+#: services.pm:144 services.pm:180
+#, c-format
+msgid "Services"
+msgstr "Xidmətlər"
+
+#: services.pm:144
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Açılışda avtomatik olaraq başlayacaq xidmətləri seçin"
+
+#: services.pm:162
+#, c-format
+msgid "Services: %d activated for %d registered"
+msgstr "Xidmətlər: %d fəal, %d qeydli"
+
+#: services.pm:196
#, c-format
msgid "running"
msgstr "fəaliyyətdədir"
-#: services.pm:209
+#: services.pm:196
#, c-format
msgid "stopped"
msgstr "dayandırılıb"
-#: services.pm:213
+#: services.pm:201
#, c-format
msgid "Services and daemons"
msgstr "Xidmətlər və vasitələr"
-#: services.pm:219
+#: services.pm:207
#, c-format
msgid ""
"No additional information\n"
@@ -16210,479 +6344,32 @@ msgstr ""
"Bu xidmət haqqında təəsüf ki\n"
"əlavə mə'lumat yoxdur."
-#: services.pm:224 ugtk2.pm:1009
+#: services.pm:212 ugtk2.pm:898
#, c-format
msgid "Info"
msgstr "Mə'lumat"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "Start when requested"
msgstr "İstəniləndə başlat"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "On boot"
msgstr "Açılışda"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Start"
msgstr "Başlat"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Stop"
msgstr "Dayandır"
-#: share/advertising/01.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Packs"
-msgstr ""
-
-#: share/advertising/02.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More features"
-msgstr ""
-
-#: share/advertising/03.pl:3
-#, c-format
-msgid "Interactive firewall"
-msgstr ""
-
-#: share/advertising/04.pl:3
-#, c-format
-msgid "Desktop search"
-msgstr ""
-
-#: share/advertising/05.pl:3
-#, c-format
-msgid "New package manager"
-msgstr ""
-
-#: share/advertising/06.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More performances"
-msgstr ""
-
-#: share/advertising/07.pl:3
-#, c-format
-msgid "Latest kernel and GCC"
-msgstr ""
-
-#: share/advertising/08.pl:3
-#, c-format
-msgid "High Availibility"
-msgstr ""
-
-#: share/advertising/09.pl:3
-#, c-format
-msgid "Delta RPM"
-msgstr ""
-
-#: share/advertising/10.pl:3
-#, c-format
-msgid "Low resources setup"
-msgstr ""
-
-#: share/advertising/11.pl:3
-#, c-format
-msgid "Boot time reduction"
-msgstr ""
-
-#: share/advertising/12.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Easier to use"
-msgstr ""
-
-#: share/advertising/13.pl:3
-#, c-format
-msgid "Latest graphical interfaces: KDE and GNOME"
-msgstr ""
-
-#: share/advertising/14.pl:3
-#, c-format
-msgid "auto-installation servers"
-msgstr ""
-
-#: share/advertising/15.pl:3
-#, c-format
-msgid "Easy and quick installation"
-msgstr ""
-
-#: share/advertising/16.pl:3
-#, c-format
-msgid "Easy configuration thanks to 60 wizards"
-msgstr ""
-
-#: share/advertising/17.pl:3
-#, c-format
-msgid "Look and feel improved"
-msgstr ""
-
-#: share/advertising/18.pl:3
-#, c-format
-msgid "New webmin theme"
-msgstr ""
-
-#: share/advertising/19.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More support"
-msgstr ""
-
-#: share/advertising/20.pl:3
-#, c-format
-msgid "Better Hardware support"
-msgstr ""
-
-#: share/advertising/21.pl:3
-#, c-format
-msgid "Xen support"
-msgstr ""
-
-#: share/advertising/22.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More information"
-msgstr ""
-
-#: share/advertising/23.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Where to buy?"
-msgstr ""
-
-#: share/advertising/24.pl:3
-#, c-format
-msgid "Where to find technical assistance?"
-msgstr ""
-
-#: share/advertising/25.pl:3
-#, c-format
-msgid "How to join the Mandriva Linux community?"
-msgstr ""
-
-#: share/advertising/26.pl:3
-#, c-format
-msgid "How to keep your system up-to-date?"
-msgstr ""
-
-#: share/advertising/intel.pl:3
-#, c-format
-msgid "Intel Software"
-msgstr ""
-
-#: share/advertising/skype.pl:3
-#, c-format
-msgid "Skype lets you make calls through the Internet for free."
-msgstr ""
-
-#: share/compssUsers.pl:26
-#, c-format
-msgid "Office Workstation"
-msgstr "Ofis İş Stansiyası"
-
-#: share/compssUsers.pl:28
-#, c-format
-msgid ""
-"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
-"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
-msgstr ""
-"İdarə proqramları: kəlmə işləyənlər (OpenOffice.org Writer, Kword), "
-"hesablayıcılar və pdf göstəriciləri, vs."
-
-#: share/compssUsers.pl:29
-#, c-format
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"İdarə proqramları: kəlmə işləyənlər (kword, abiword), hesablayıcılar və pdf "
-"göstəriciləri, vs."
-
-#: share/compssUsers.pl:34
-#, c-format
-msgid "Game station"
-msgstr "Oyun stansiyası"
-
-#: share/compssUsers.pl:35
-#, c-format
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Məzəli proqramlar: arkad, lövhə oyunları, strategiya, vs"
-
-#: share/compssUsers.pl:38
-#, c-format
-msgid "Multimedia station"
-msgstr "Multimedya stansiyası"
-
-#: share/compssUsers.pl:39
-#, c-format
-msgid "Sound and video playing/editing programs"
-msgstr "Səs və video çalınması/düzəliş proqramları"
-
-#: share/compssUsers.pl:44
-#, c-format
-msgid "Internet station"
-msgstr "İnternet stansiyası"
-
-#: share/compssUsers.pl:45
-#, c-format
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Elektronik məktub və xəbər oxuyucu vasitələr dəstəsi (pine, mutt, tin..) və "
-"Veb səyyahları"
-
-#: share/compssUsers.pl:50
-#, c-format
-msgid "Network Computer (client)"
-msgstr "Şəbəkə Kompüteri (alıcı)"
-
-#: share/compssUsers.pl:51
-#, c-format
-msgid "Clients for different protocols including ssh"
-msgstr "SSH daxil bir çox protokolların alıcıları"
-
-#: share/compssUsers.pl:55
-#, c-format
-msgid "Configuration"
-msgstr "Quraşdırma"
-
-#: share/compssUsers.pl:56
-#, c-format
-msgid "Tools to ease the configuration of your computer"
-msgstr "Kompüter qurğularını asandlaşdıran vasitələr"
-
-#: share/compssUsers.pl:60
-#, c-format
-msgid "Console Tools"
-msgstr "Konsol Vasitələri"
-
-#: share/compssUsers.pl:61
-#, c-format
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editorlar, rəflər, fayl vasitələri, terminallar"
-
-#: share/compssUsers.pl:66 share/compssUsers.pl:170
-#, c-format
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C və C++ inkişaf kitabxanaları, proqramları və daxil ediləcək fayllar"
-
-#: share/compssUsers.pl:70 share/compssUsers.pl:174
-#, c-format
-msgid "Documentation"
-msgstr "Sənədlər"
-
-#: share/compssUsers.pl:71 share/compssUsers.pl:175
-#, c-format
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Linuks və sərbəst proqram tə'minatı haqqında Kitablar və Howtolar"
-
-#: share/compssUsers.pl:75 share/compssUsers.pl:178
-#, c-format
-msgid "LSB"
-msgstr "LSB"
-
-#: share/compssUsers.pl:76 share/compssUsers.pl:179
-#, c-format
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Linux Standartları Bazası. Üçüncü partiya tə'minat dəstəyi"
-
-#: share/compssUsers.pl:86
-#, c-format
-msgid "Apache"
-msgstr "Apache"
-
-#: share/compssUsers.pl:89
-#, fuzzy, c-format
-msgid "Groupware"
-msgstr "Qrup"
-
-#: share/compssUsers.pl:90
-#, c-format
-msgid "Kolab Server"
-msgstr "Kolab Vericisi"
-
-#: share/compssUsers.pl:93 share/compssUsers.pl:134
-#, c-format
-msgid "Firewall/Router"
-msgstr "Atəş Divarı/İstiqamətləndirici"
-
-#: share/compssUsers.pl:94 share/compssUsers.pl:135
-#, c-format
-msgid "Internet gateway"
-msgstr "İnternet keçidi"
-
-#: share/compssUsers.pl:97
-#, fuzzy, c-format
-msgid "Mail/News"
-msgstr "/Fayl/_Təze"
-
-#: share/compssUsers.pl:98
-#, fuzzy, c-format
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix poçt vericisi"
-
-#: share/compssUsers.pl:101
-#, fuzzy, c-format
-msgid "Directory Server"
-msgstr "CD'dən Geri Yüklə"
-
-#: share/compssUsers.pl:105
-#, fuzzy, c-format
-msgid "FTP Server"
-msgstr "NTP Verici"
-
-#: share/compssUsers.pl:106
-#, c-format
-msgid "ProFTPd"
-msgstr ""
-
-#: share/compssUsers.pl:109
-#, fuzzy, c-format
-msgid "DNS/NIS"
-msgstr "DNS"
-
-#: share/compssUsers.pl:110
-#, fuzzy, c-format
-msgid "Domain Name and Network Information Server"
-msgstr "Domen Adı Vericisi"
-
-#: share/compssUsers.pl:113
-#, fuzzy, c-format
-msgid "File and Printer Sharing Server"
-msgstr "Çapçı Vericisi"
-
-#: share/compssUsers.pl:114
-#, fuzzy, c-format
-msgid "NFS Server, Samba server"
-msgstr "Samba vericisi"
-
-#: share/compssUsers.pl:117 share/compssUsers.pl:130
-#, c-format
-msgid "Database"
-msgstr "Mə'lumat Bazası"
-
-#: share/compssUsers.pl:118
-#, fuzzy, c-format
-msgid "PostgreSQL and MySQL Database Server"
-msgstr "PostgreSQL ya da MySQL mə'lumat bazası vericisi"
-
-#: share/compssUsers.pl:122
-#, c-format
-msgid "Web/FTP"
-msgstr "Veb/FTP"
-
-#: share/compssUsers.pl:123
-#, c-format
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: share/compssUsers.pl:126
-#, c-format
-msgid "Mail"
-msgstr "Poçt"
-
-#: share/compssUsers.pl:127
-#, c-format
-msgid "Postfix mail server"
-msgstr "Postfix poçt vericisi"
-
-#: share/compssUsers.pl:131
-#, c-format
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL ya da MySQL mə'lumat bazası vericisi"
-
-#: share/compssUsers.pl:138
-#, c-format
-msgid "Network Computer server"
-msgstr "Şəbəkə Kompüter vericisi"
-
-#: share/compssUsers.pl:139
-#, c-format
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS vericisi, SMB vericisi, Vəkil vericisi, SSH verici"
-
-#: share/compssUsers.pl:147
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE iş stansiyası"
-
-#: share/compssUsers.pl:148
-#, c-format
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr "KDE, əsas qrafiki ara üz və yardımçi proqramlar kolleksiyası"
-
-#: share/compssUsers.pl:152
-#, c-format
-msgid "GNOME Workstation"
-msgstr "GNOME iş stansiyası"
-
-#: share/compssUsers.pl:153
-#, c-format
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"İstifadəçi dostu proqram və masa üstü ilə bərabər qrafiki ara üz vasitələri"
-
-#: share/compssUsers.pl:156
-#, fuzzy, c-format
-msgid "IceWm Desktop"
-msgstr "Masa üstü"
-
-#: share/compssUsers.pl:160
-#, c-format
-msgid "Other Graphical Desktops"
-msgstr "Başqa qrafiki ara üzlər"
-
-#: share/compssUsers.pl:161
-#, fuzzy, c-format
-msgid "Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, vs."
-
-#: share/compssUsers.pl:184
-#, c-format
-msgid "Utilities"
-msgstr "Vasitələr"
-
-#: share/compssUsers.pl:186 share/compssUsers.pl:187 standalone/logdrake:384
-#, c-format
-msgid "SSH Server"
-msgstr "SSH Vericisi"
-
-#: share/compssUsers.pl:191
-#, fuzzy, c-format
-msgid "Webmin"
-msgstr "Veb kamerası"
-
-#: share/compssUsers.pl:192
-#, fuzzy, c-format
-msgid "Webmin Remote Configuration Server"
-msgstr "Terminal Server Quraşdırılması"
-
-#: share/compssUsers.pl:196
-#, fuzzy, c-format
-msgid "Network Utilities/Monitoring"
-msgstr "Şəbəkə İzlənməsi"
-
-#: share/compssUsers.pl:197
-#, c-format
-msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
-msgstr ""
-
-#: share/compssUsers.pl:201
-#, fuzzy, c-format
-msgid "Mandriva Wizards"
-msgstr "<b>Mandriva Store</b>"
-
-#: share/compssUsers.pl:202
-#, fuzzy, c-format
-msgid "Wizards to configure server"
-msgstr "\"%s\" çapçısı quraşdırıla bilmədi!"
-
-#: standalone.pm:23
+#: standalone.pm:24
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
@@ -16697,7 +6384,8 @@ msgid ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
msgstr ""
"This program is free software; you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published by\n"
@@ -16711,9 +6399,10 @@ msgstr ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
-#: standalone.pm:42
+#: standalone.pm:43
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
@@ -16740,7 +6429,7 @@ msgstr ""
"--help : bu ismarışı göstər.\n"
"--version : buraxılış nömrəsini göstər.\n"
-#: standalone.pm:54
+#: standalone.pm:55
#, c-format
msgid ""
"[--boot] [--splash]\n"
@@ -16750,7 +6439,7 @@ msgid ""
"default mode: offer to configure autologin feature"
msgstr ""
-#: standalone.pm:59
+#: standalone.pm:60
#, fuzzy, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
@@ -16767,7 +6456,7 @@ msgstr ""
" --report - proqram Mandriva Linux vasitələrindən biri olmalıdır\n"
" --incident - proqram Mandriva Linux vasitələrindən biri olmalıdır"
-#: standalone.pm:65
+#: standalone.pm:66
#, c-format
msgid ""
"[--add]\n"
@@ -16778,7 +6467,7 @@ msgid ""
" --wizard - like --add"
msgstr ""
-#: standalone.pm:71
+#: standalone.pm:72
#, fuzzy, c-format
msgid ""
"\n"
@@ -16807,7 +6496,7 @@ msgstr ""
" : tə'minatın_adı staroffice üçün so kimi \n"
" : və ghostscript üçün gs kimi."
-#: standalone.pm:86
+#: standalone.pm:87
#, fuzzy, c-format
msgid ""
"[OPTIONS]...\n"
@@ -16839,18 +6528,18 @@ msgstr ""
"--delclient : MTS'dən alıcı sistemi sil (MAC ünvanı, IP, nbi əks adı "
"istənəcək)"
-#: standalone.pm:98
+#: standalone.pm:99
#, c-format
msgid "[keyboard]"
msgstr "[klaviatura]"
-#: standalone.pm:99
+#: standalone.pm:100
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr ""
"[--file=faylım] [--word=kəlməm] [--explain=ifadəliqayda] [--xəbərdarlıq]"
-#: standalone.pm:100
+#: standalone.pm:101
#, c-format
msgid ""
"[OPTIONS]\n"
@@ -16873,12 +6562,7 @@ msgstr ""
"--status : bağlananda 1, əks halda 0 cavabı verir, sonra çıxır.\n"
"--quiet : interaktiv olma. (dis)connect ilə işlədilmək üçün."
-#: standalone.pm:109
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: standalone.pm:110
+#: standalone.pm:111
#, c-format
msgid ""
"[OPTION]...\n"
@@ -16898,7 +6582,7 @@ msgstr ""
" --merge-all-rpmnew tapılan bütün .rpmnew/.rpmsave fayllarını "
"birləşdirməyi təklif et"
-#: standalone.pm:115
+#: standalone.pm:116
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
@@ -16907,7 +6591,7 @@ msgstr ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
-#: standalone.pm:116
+#: standalone.pm:117
#, c-format
msgid ""
" [everything]\n"
@@ -16918,7 +6602,7 @@ msgstr ""
" XFdrake [--noauto] monitor\n"
" XFdrake həllerilirlik"
-#: standalone.pm:149
+#: standalone.pm:150
#, c-format
msgid ""
"\n"
@@ -16929,9177 +6613,103 @@ msgstr ""
"İstifadə qaydası: %s [--auto] [--beginner] [--expert] [-h|--help] [--"
"noauto] [--testing] [-v|--version] "
-#: standalone/XFdrake:59
-#, fuzzy, c-format
-msgid "You need to reboot for changes to take effect"
-msgstr ""
-"Dəyişikliklərin fəal olması üçün hesabdan çıxış edib, yenidən girməlisiniz."
-
-#: standalone/XFdrake:90
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Lütfen çıxın və Ctrl-Alt-BackSpace düymələrinə basın"
-
-#: standalone/XFdrake:94
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr ""
-"Dəyişikliklərin fəal olması üçün hesabdan çıxış edib, yenidən girməlisiniz."
-
-#: standalone/drakTermServ:112 standalone/drakTermServ:118
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s'n istifadəçi adına ehtiyacı var...\n"
-
-#: standalone/drakTermServ:129
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s bunları məcbur qılır: qovşaq adı, MAC ünvanı, IP, nbi-görünüşü, "
-"THIN_CLIENT üçün 0/1, Yerli Qurğu üçün 0/1...\n"
-
-#: standalone/drakTermServ:135
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s'ın qovşaq adına ehtiyacı var...\n"
-
-#: standalone/drakTermServ:144
-#, c-format
-msgid "Host name for client"
-msgstr ""
-
-#: standalone/drakTermServ:145
-#, c-format
-msgid "MAC address should be in the format 00:11:22:33:44:55"
-msgstr ""
-
-#: standalone/drakTermServ:146
-#, c-format
-msgid "IP address to be assigned to client"
-msgstr ""
-
-#: standalone/drakTermServ:147
-#, c-format
-msgid "Kernel/network adapter image to use to boot client"
-msgstr ""
-
-#: standalone/drakTermServ:148
-#, c-format
-msgid "Create masking files to allow configuration tools to run on client"
-msgstr ""
-
-#: standalone/drakTermServ:149
-#, c-format
-msgid "Applications will run on server machine"
-msgstr ""
-
-#: standalone/drakTermServ:234 standalone/drakTermServ:237
-#, c-format
-msgid "Terminal Server Configuration"
-msgstr "Terminal Server Quraşdırılması"
-
-#: standalone/drakTermServ:243
-#, fuzzy, c-format
-msgid "dhcpd Config"
-msgstr "dhcpd Qurğuları..."
-
-#: standalone/drakTermServ:247
-#, c-format
-msgid "Enable Server"
-msgstr "Vericini Fəallaşdır"
-
-#: standalone/drakTermServ:253
-#, c-format
-msgid "Disable Server"
-msgstr "Vericini Qeyri-fəallaşdır"
-
-#: standalone/drakTermServ:259
-#, c-format
-msgid "Start Server"
-msgstr "Vericini Başlat"
-
-#: standalone/drakTermServ:265
-#, c-format
-msgid "Stop Server"
-msgstr "Vericini Dayandır"
-
-#: standalone/drakTermServ:274
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot Disketi/ISO"
-
-#: standalone/drakTermServ:278
-#, c-format
-msgid "Net Boot Images"
-msgstr "Şəbəkədən Açılış Görüntüləri"
-
-#: standalone/drakTermServ:285
-#, c-format
-msgid "Add/Del Users"
-msgstr "İstifadəçi əlavə et/sil"
-
-#: standalone/drakTermServ:289
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Alıcı Əlavə Et/Sil"
-
-#: standalone/drakTermServ:297
-#, c-format
-msgid "Images"
-msgstr "Rəsmlər"
-
-#: standalone/drakTermServ:298
-#, c-format
-msgid "Clients/Users"
-msgstr ""
-
-#: standalone/drakTermServ:316 standalone/drakbug:47
-#, c-format
-msgid "First Time Wizard"
-msgstr "İlk Dəfə Sehirbazı"
-
-#: standalone/drakTermServ:354 standalone/drakTermServ:355
-#, c-format
-msgid "%s defined as dm, adding gdm user to /etc/passwd$$CLIENT$$"
-msgstr ""
-
-#: standalone/drakTermServ:361
-#, c-format
-msgid ""
-"\n"
-" This wizard routine will:\n"
-" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
-"\t2) Setup DHCP.\n"
-"\t\n"
-"After doing these steps, the wizard will:\n"
-"\t\n"
-" a) Make all "
-"nbis. \n"
-" b) Activate the "
-"server. \n"
-" c) Start the "
-"server. \n"
-" d) Synchronize the shadow files so that all users, including root, \n"
-" are added to the shadow$$CLIENT$$ "
-"file. \n"
-" e) Ask you to make a boot floppy.\n"
-" f) If it's thin clients, ask if you want to restart KDM.\n"
-msgstr ""
-
-#: standalone/drakTermServ:407
-#, c-format
-msgid "Cancel Wizard"
-msgstr "Sehirbazı Ləğv Et"
-
-#: standalone/drakTermServ:422
-#, c-format
-msgid "Please save dhcpd config!"
-msgstr ""
-
-#: standalone/drakTermServ:450
-#, fuzzy, c-format
-msgid "Use thin clients."
-msgstr "Zəyif alıcılara icazə ver."
-
-#: standalone/drakTermServ:452
-#, c-format
-msgid "Sync client X keyboard settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:454
-#, c-format
-msgid ""
-"Please select default client type (Fat is the default type if 'Use thin' is "
-"unchecked).\n"
-" 'Thin' clients run everything off the server's CPU/RAM, using the client "
-"display.\n"
-" 'Fat' clients use their own CPU/RAM but the server's filesystem."
-msgstr ""
-
-#: standalone/drakTermServ:474
-#, c-format
-msgid "Creating net boot images for all kernels"
-msgstr ""
-
-#: standalone/drakTermServ:475 standalone/drakTermServ:807
-#: standalone/drakTermServ:823
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Bu bir neçə dəqiqə sürəcək."
-
-#: standalone/drakTermServ:481 standalone/drakTermServ:521
-#, c-format
-msgid "Done!"
-msgstr "Qurtardı!"
-
-#: standalone/drakTermServ:492 standalone/drakTermServ:894
-#, c-format
-msgid "%s failed"
-msgstr ""
-
-#: standalone/drakTermServ:501
-#, c-format
-msgid ""
-"Not enough space to create\n"
-"NBIs in %s.\n"
-"Needed: %d MB, Free: %d MB"
-msgstr ""
-
-#: standalone/drakTermServ:507
-#, c-format
-msgid "Syncing server user list with client list, including root."
-msgstr ""
-
-#: standalone/drakTermServ:527
-#, c-format
-msgid ""
-"In order to enable changes made for thin clients, the display manager must "
-"be restarted. Restart now?"
-msgstr ""
-
-#: standalone/drakTermServ:564
-#, fuzzy, c-format
-msgid "Terminal Server Overview"
-msgstr "drakTermServ İcmalı"
-
-#: standalone/drakTermServ:565
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and %s is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-" - Etherboot Dəstəkli Açılış Əksləri Yaradın:\n"
-" \tÇəyirdəyi etherboot vasitəsi ilə açmaq üçün, xüsusi kernel/initrd "
-"əksi yaradılmalıdır.\n"
-" \tmkinitrd-net bu işin əsas hissəsini həll edir və %s yalnız bu "
-"əksləri idarə\n"
-" \tetmək/xüsusiləşdirmək üçün bir qrafiki ara üzdür. \n"
-" \tdhcpd.conf faylı içində inlcude olaraq çağırılan \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include faylını yaratmaq üçün,\n"
-" \tən az bir tam çəyirdək üçün etherboot əksləri yaratmalısınız."
-
-#: standalone/drakTermServ:571
-#, c-format
-msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. %s helps create/"
-"remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
-msgstr ""
-" - /etc/dhcpd.conf'u Saxla:\n"
-" \t\tŞəbəkə açılış alıcılarına,hər alıcının IP ünvanı tə'yin edən "
-"dhcpd.conf giriçi mövcud olmalıdır\n"
-" \t\tvə sistemə şəbəkə açılış əksləri üçün. %s bu girişləri yaratmaq/"
-"silmək üçün sizə yardım edir.\n"
-"\t\t\t\n"
-" \t\t(PCİ kartları əksi işlətməyə bilər - etherboot düzgün əksi "
-"istəyəcəkdir. Siz, eyni zamanda\n"
-" \t\tetherboot'un əksləri axtarırkən, bu cür ad gözləyir:\n"
-" \t\tboot-3c59x.nbi yalnız boot-3c59x.2.4.19-16mdk.nbi kimi YOX).\n"
-"\t\t\t \n"
-" \t\tTipik dhcpd.conf stanza disksiz alıcıları dəstəkləyir və buna "
-"bənzəyir: "
-
-# needs editing (Metin)
-#: standalone/drakTermServ:589
+#: timezone.pm:148 timezone.pm:149
#, fuzzy, c-format
-msgid ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be "
-"'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, \n"
-" %s is written for thin clients. \n"
-" System config files xdm-config, kdmrc, and gdm.conf are modified if "
-"thin clients are \n"
-" used, to enable XDMCP. Since there are security issues in using "
-"XDMCP, hosts.deny and \n"
-" hosts.allow are modified to limit access to the local subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-msgstr ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be "
-"'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, %s is\n"
-" written for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-" modified if thin clients are used, to enable XDMCP. Since there are "
-"security issues in \n"
-" using XDMCP, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-" subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-
-# needs editing (Metin)
-#: standalone/drakTermServ:609
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-msgstr ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-
-# needs editing (Metin)
-#: standalone/drakTermServ:621
-#, fuzzy, c-format
-msgid ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. \n"
-" \t%s helps in this respect by adding or removing system users from "
-"this \n"
-" \tfile."
-msgstr ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. %s\n"
-" \thelps in this respect by adding or removing system users from this "
-"file."
-
-#: standalone/drakTermServ:626
-#, c-format
-msgid ""
-" - Per client %s:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t%s will help create these files."
-msgstr ""
-" - Alıcı başına %s:\n"
-" \t\t%s ilə, hər disksiz alıcının vericinin kök fayl sistemində özünə "
-"məxsus\n"
-" \t\tquraşdırma faylları ola bilər. Yerli alıcı "
-"avadanlığıquraşdırmasına icazə verərək, \n"
-" \t\t%s bu faylları yaratmaqda yardımçı olacaq."
-
-# needs editing (Metin)
-#: standalone/drakTermServ:631
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-msgstr ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-
-#: standalone/drakTermServ:640
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s will configure this file to work in conjunction with the images "
-"created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical TFTP configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
-msgstr ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\t%s bu faylı mkinitrd-net-in yaratdığı əkslərləvə /etc/dhcpd."
-"conf\n"
-" \t\t ilə bərabər işləməsi üçün hər disksiz alıcı üçün quraşdıracaq \n"
-" \t\tTipik quraşdırma faylı buna bənzəyir:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t\t}"
-
-# needs editing (Metin)
-#: standalone/drakTermServ:661
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-msgstr ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-
-#: standalone/drakTermServ:694
-#, c-format
-msgid "Boot Floppy"
-msgstr "Açılış Disketi"
-
-#: standalone/drakTermServ:696
-#, c-format
-msgid "Boot ISO"
-msgstr "Açılış ISO'su"
-
-#: standalone/drakTermServ:698
-#, c-format
-msgid "PXE Image"
-msgstr "PXE Əksi"
-
-#: standalone/drakTermServ:759
-#, fuzzy, c-format
-msgid "Default kernel version"
-msgstr "Çəyirdək buraxılışını göndər"
-
-#: standalone/drakTermServ:764
-#, c-format
-msgid "Create PXE images"
-msgstr ""
-
-#: standalone/drakTermServ:765
-#, c-format
-msgid "Use Unionfs (TS2)"
-msgstr ""
-
-#: standalone/drakTermServ:795
-#, c-format
-msgid "Install i586 kernel for older clients"
-msgstr ""
-
-#: standalone/drakTermServ:805
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Bütöv Çəyirdəyi İnşa Et -->"
-
-#: standalone/drakTermServ:812
-#, c-format
-msgid "No kernel selected!"
-msgstr "Heç bir çəyirdək seçilməyib!"
-
-#: standalone/drakTermServ:815
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Yeganə NIC İnşa Et -->"
-
-#: standalone/drakTermServ:819 standalone/drakTermServ:1643
-#, c-format
-msgid "No NIC selected!"
-msgstr "NIC seçili deyil!"
-
-#: standalone/drakTermServ:822
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Bütün Çəyirdəkləri İnşa Et -->"
-
-#: standalone/drakTermServ:835
-#, c-format
-msgid ""
-"Custom\n"
-"kernel args"
-msgstr ""
-
-#: standalone/drakTermServ:840
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Sil"
-
-#: standalone/drakTermServ:845
-#, fuzzy, c-format
-msgid "No image selected!"
-msgstr "NIC seçili deyil!"
-
-#: standalone/drakTermServ:848
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Bütün NBI'ləri Sil"
-
-#: standalone/drakTermServ:925
-#, c-format
-msgid "Building images for kernel:"
-msgstr ""
-
-#: standalone/drakTermServ:1050
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! Sistemdəki mə'lumat bazasındakı şifrənin Terminal Verici\n"
-" mə'lumat bazasındakından fərqli olduğunu göstərir.\n"
-"Girişi fəallaşdırmaq üçün istifadəçini Terminal Vericiyə\n"
-"Silin/Yenidən əlavə edin."
-
-#: standalone/drakTermServ:1055
-#, c-format
-msgid "Add User -->"
-msgstr "İstifadəçi əlavə et -->"
-
-#: standalone/drakTermServ:1061
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- İstifadəçini Sil"
-
-#: standalone/drakTermServ:1097
-#, c-format
-msgid "type: %s"
-msgstr "növ: %s"
-
-#: standalone/drakTermServ:1101
-#, c-format
-msgid "local config: %s"
-msgstr "yerli qurğu: %s"
-
-#: standalone/drakTermServ:1136
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Yerli avadanlıq quraşdırılmasına\n"
-"icazə ver."
-
-#: standalone/drakTermServ:1146
-#, c-format
-msgid "No net boot images created!"
-msgstr "Heç bir şəbəkə açılış görüntüləri yaradılmadı!"
-
-#: standalone/drakTermServ:1165
-#, c-format
-msgid "Thin Client"
-msgstr "Zəyif Alıcı"
-
-#: standalone/drakTermServ:1169
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "Zəyif Alıcılara İcazə Ver"
-
-#: standalone/drakTermServ:1170
-#, c-format
-msgid ""
-"Sync client X keyboard\n"
-" settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:1171
-#, c-format
-msgid "Add Client -->"
-msgstr "Alıcı Əlavə Et -->"
-
-#: standalone/drakTermServ:1181
-#, c-format
-msgid "Unknown MAC address format"
-msgstr ""
-
-#: standalone/drakTermServ:1195
-#, c-format
-msgid "type: fat"
-msgstr "növ: fat"
-
-#: standalone/drakTermServ:1196
-#, c-format
-msgid "type: thin"
-msgstr "növ: incə"
-
-#: standalone/drakTermServ:1203
-#, c-format
-msgid "local config: false"
-msgstr "yerli qurğu: səhv"
-
-#: standalone/drakTermServ:1204
-#, c-format
-msgid "local config: true"
-msgstr "yerli qurğu: düz"
-
-#: standalone/drakTermServ:1212
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Alıcını Düzəlt"
-
-#: standalone/drakTermServ:1237
-#, c-format
-msgid "Disable Local Config"
-msgstr "Yerli Qurğuları Qeyri-fəallaşdır"
-
-#: standalone/drakTermServ:1244
-#, c-format
-msgid "Delete Client"
-msgstr "Alıcını Sil"
-
-#: standalone/drakTermServ:1267
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-"Dəyişikliklərin fəal olması üçün Displey İdarəçisi yenidən "
-"başladılmalıdır. \n"
-"(konsolda - service dm restart)"
-
-#: standalone/drakTermServ:1313
-#, c-format
-msgid "Thin clients will not work with autologin. Disable autologin?"
-msgstr ""
-
-#: standalone/drakTermServ:1328
-#, c-format
-msgid "All clients will use %s"
-msgstr ""
-
-#: standalone/drakTermServ:1362
-#, c-format
-msgid "Subnet:"
-msgstr "Subnet:"
-
-#: standalone/drakTermServ:1369
-#, c-format
-msgid "Netmask:"
-msgstr "Şəbəkə Maskası:"
-
-#: standalone/drakTermServ:1376
-#, c-format
-msgid "Routers:"
-msgstr "Routerlər:"
-
-#: standalone/drakTermServ:1383
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Subnet Maskası:"
-
-#: standalone/drakTermServ:1390
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Translyasiya Ünvanı:"
-
-#: standalone/drakTermServ:1397
-#, c-format
-msgid "Domain Name:"
-msgstr "Domen Adı:"
-
-#: standalone/drakTermServ:1405
-#, c-format
-msgid "Name Servers:"
-msgstr "Ad Vericiləri:"
-
-#: standalone/drakTermServ:1416
-#, c-format
-msgid "IP Range Start:"
-msgstr "IP Silsiləsi Başlanğıcı:"
-
-#: standalone/drakTermServ:1417
-#, c-format
-msgid "IP Range End:"
-msgstr "IP Silsiləsi Sonu:"
-
-#: standalone/drakTermServ:1459
-#, c-format
-msgid "Append TS Includes To Existing Config"
-msgstr ""
-
-#: standalone/drakTermServ:1461
-#, c-format
-msgid "Write Config"
-msgstr "Qurğunu Yaz"
-
-#: standalone/drakTermServ:1477
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "dhcpd Vericisi Qurğuları"
-
-#: standalone/drakTermServ:1478
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"Bu qiymətlərin çoxu hazırkı sisteminizdə\n"
-"alınmışdır. Lazım gələrsə\n"
-"dəyişdirə biləcəksiniz."
-
-#: standalone/drakTermServ:1481
-#, c-format
-msgid ""
-"Dynamic IP Address Pool\n"
-"(needed for PXE clients):"
-msgstr ""
-
-#: standalone/drakTermServ:1634
-#, c-format
-msgid "Write to %s failed!"
-msgstr ""
-
-#: standalone/drakTermServ:1647
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Xahiş edirik, disketi taxın:"
-
-#: standalone/drakTermServ:1651
-#, c-format
-msgid "Could not access the floppy!"
-msgstr "Disketə yetişə bilmədim!"
-
-#: standalone/drakTermServ:1653
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "İndi disket çıxardıla bilər"
-
-#: standalone/drakTermServ:1656
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Disket sürücüsü mövcud deyil!"
-
-#: standalone/drakTermServ:1662
-#, c-format
-msgid "PXE image is %s/%s"
-msgstr "PXE əksi %s/%s-dir"
-
-#: standalone/drakTermServ:1664
-#, c-format
-msgid "Error writing %s/%s"
-msgstr "%s/%s yazma xətası"
-
-#: standalone/drakTermServ:1676
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "Etherboot ISO görüntüsü budur: %s"
-
-#: standalone/drakTermServ:1680
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Nəsə səhv işlədi! - mkisofs quruludur?"
-
-#: standalone/drakTermServ:1700
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Əvvəlcə /etc/dhcpd.conf yaradılmalıdır!"
-
-#: standalone/drakTermServ:1867
-#, c-format
-msgid "%s passwd bad in Terminal Server - rewriting...\n"
-msgstr ""
-
-#: standalone/drakTermServ:1880
-#, c-format
-msgid "%s is not a user..\n"
-msgstr "%s istifadəçi deyil..\n"
-
-#: standalone/drakTermServ:1881
-#, c-format
-msgid "%s is already a Terminal Server user\n"
-msgstr "%s onsuz da Terminal Server istifadəçisidir\n"
-
-#: standalone/drakTermServ:1883
-#, c-format
-msgid "Addition of %s to Terminal Server failed!\n"
-msgstr ""
-
-#: standalone/drakTermServ:1885
-#, c-format
-msgid "%s added to Terminal Server\n"
-msgstr "%s Terminal Server-ə əlavə edildi\n"
-
-#: standalone/drakTermServ:1903
-#, c-format
-msgid "Deleted %s...\n"
-msgstr "%s silindi...\n"
-
-#: standalone/drakTermServ:1905 standalone/drakTermServ:1978
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s tapılaa bilmədi...\n"
-
-#: standalone/drakTermServ:2006
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
-"/etc/hosts.allow və /etc/hosts.deny onsuzda quraşdırılıb - dəyişdirilmədi"
-
-#: standalone/drakTermServ:2158
-#, c-format
-msgid "Configuration changed - restart %s/dhcpd?"
-msgstr "Qurğu dəyişdirildi - %s/dhcpd yenidən başladılsın?"
-
-#: standalone/drakautoinst:38 standalone/drakhosts:123
-#: standalone/drakhosts:129 standalone/draknfs:84 standalone/draknfs:105
-#: standalone/draknfs:444 standalone/draknfs:447 standalone/draknfs:539
-#: standalone/draknfs:546 standalone/draksambashare:187
-#: standalone/draksambashare:208 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Error!"
-msgstr "Xəta!"
-
-#: standalone/drakautoinst:39
-#, c-format
-msgid "I can not find needed image file `%s'."
-msgstr "Lazım olan `%s' görüntüsü tapıla bilmir."
-
-#: standalone/drakautoinst:41
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Avtomatik Qurulum Quraşdırıcısı"
-
-#: standalone/drakautoinst:42
-#, fuzzy, c-format
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Press ok to continue."
-msgstr ""
-"Avtomatik qurulum disketi yaradmaq üzrəsiniz. Bu xüsusiyyət biraz "
-"təhlükəlidir və diqqətlə istifadə edilməlidir.\n"
-"\n"
-"Bu xüsusiyyətlə, siz, daha əvvəl həyata keçirmiş olduğunuz qurulumun "
-"eynisini təkrarlaya bilərsiniz.\n"
-"\n"
-"Maksimal təhlükəsizlik səbəbi ilə, bolmələmə və şəkilləndirmə sistemi "
-"qurarkən necə qurğuladığınıza baxmayaraq qətiyyən təkrarlanmayacaq.\n"
-"\n"
-"Davam etmək istəyirsiniz?"
-
-#: standalone/drakautoinst:60
-#, c-format
-msgid "replay"
-msgstr "təkrarla"
-
-#: standalone/drakautoinst:60 standalone/drakautoinst:69
-#, c-format
-msgid "manual"
-msgstr "əllə"
-
-#: standalone/drakautoinst:64
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Avtomatik Addımların Quraşdırılması"
-
-#: standalone/drakautoinst:65
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Xahiş edirik, addımın təkrarlanmasını ya da əllə yenidən seçilməsini hər "
-"addım üçün ayrı ayrı seçin"
-
-#: standalone/drakautoinst:77 standalone/drakautoinst:78
-#: standalone/drakautoinst:92
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Avtomatik qurulum disketi yaradılır"
-
-#: standalone/drakautoinst:90
-#, fuzzy, c-format
-msgid "Insert another blank floppy in drive %s (for drivers disk)"
-msgstr "%s sürücüsünə boş bir disket yerləşdirin"
-
-#: standalone/drakautoinst:91
-#, fuzzy, c-format
-msgid "Creating auto install floppy (drivers disk)"
-msgstr "Avtomatik qurulum disketi yaradılır"
-
-#: standalone/drakautoinst:156
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Xoş Gəldiniz.\n"
-"\n"
-"Avtomatik qurulumun parametrləri soldakı qisimlərdə mövcuddur"
-
-#: standalone/drakautoinst:251
-#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Disket müvəffəqiyyətlə yaradıldı.\n"
-"İndi qurulumunuzu təkrarlaya bilərsiniz."
-
-#: standalone/drakautoinst:287
-#, c-format
-msgid "Auto Install"
-msgstr "Avtomatik Qurulum"
-
-#: standalone/drakautoinst:356
-#, c-format
-msgid "Add an item"
-msgstr "Üzv əlavə et"
-
-#: standalone/drakautoinst:363
-#, c-format
-msgid "Remove the last item"
-msgstr "Son üzvü sil"
-
-#: standalone/drakbackup:157
-#, c-format
-msgid ""
-"Expect is an extension to the TCL scripting language that allows interactive "
-"sessions without user intervention."
-msgstr ""
-"Expect, TCL skript dili üçün bir uzantıdır və istifadəçi müdaxiləsi olmadan "
-"interaktiv iclasları mümkün qılır."
-
-#: standalone/drakbackup:158
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "Bu sistem üçün şifrəni drakbackup qurğularında qeyd et."
-
-#: standalone/drakbackup:159
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
-"Çox iclaslı CD üçün yalnız birinci iclas cdrw'ı siləcək. Əks halda cdrw hər "
-"ehtiyatlamadan əvvəl silinir."
-
-#: standalone/drakbackup:160
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-"Bu qurğu dəyişdirilən faylları qeyd edəcək. Dəqiq davranış ehtiyatların "
-"artan yoxsa diferensial modda olmasında bağlıdır."
-
-#: standalone/drakbackup:161
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-"Artan ehtiyatlar yalnız son ehtiyatlamadan sonra dəyişdirilən və yaranan "
-"faylları qeyd edər."
-
-#: standalone/drakbackup:162
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Diferensial ehtiyatlamar yalnız oricinal 'əsas' ehtiyatlamadan sonra "
-"dəyişdirilən və yaranan faylları qeyd edər."
-
-#: standalone/drakbackup:163
-#, c-format
-msgid ""
-"Star should be selected if you want to backup EA or ACLs, otherwise choose "
-"tar"
-msgstr ""
-
-#: standalone/drakbackup:164
-#, fuzzy, c-format
-msgid ""
-"This should be a local user or email address that you want the backup "
-"results sent to. You will need to define a functioning mail server. Multiple "
-"users can be in a comma seperated list"
-msgstr ""
-"Bu, yerli istifadəçilərin ya da ehtiyatlama nəticələrinin yollanacağı epoçt "
-"ünvanlarının vergüllə ayrılmış siyahısıdır. Sisteminizdə fəal olan poçt "
-"yollama proqramı qurulu olmalıdır."
-
-#: standalone/drakbackup:165
-#, fuzzy, c-format
-msgid ""
-"This should be the return address that you want the backup results sent "
-"from. Default is drakbackup."
-msgstr ""
-"Bu, yerli istifadəçilərin ya da ehtiyatlama nəticələrinin yollanacağı epoçt "
-"ünvanlarının vergüllə ayrılmış siyahısıdır. Sisteminizdə fəal olan poçt "
-"yollama proqramı qurulu olmalıdır."
-
-#: standalone/drakbackup:166
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-"Cərgə ağacının ən üstündəki .backupignore faylında yer alan fayllar "
-"wildcard'ların ya da faylların ehtiyat nüsxəsi alınmayacaq."
-
-#: standalone/drakbackup:167
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-"Başqa mediyalara ehtiyatlamada, fayllar sabit diskdə yaradılıb, daha sonra "
-"başqa mediyalara daşınır. Bu seçimi fəallaşdıraraq, ehtiyatlama sonrası "
-"sabit diskdəki faylların silinməsinə imkan verir."
-
-#: standalone/drakbackup:168
-#, c-format
-msgid ""
-"Selecting this option allows you to view the raw output from the restore "
-"process, after a file restore."
-msgstr ""
-
-#: standalone/drakbackup:169
-#, c-format
-msgid ""
-"Some protocols, like rsync, may be configured at the server end. Rather "
-"than using a directory path, you would use the 'module' name for the service "
-"path."
-msgstr ""
-"rsync kimi bə'zi protokollar verici tərəfində quraşdırılmalıdır. Cərgə "
-"cığırını işlətmək yerinə, xidmət cığırı üçün 'modul' adını işlətməlisiniz."
-
-#: standalone/drakbackup:170
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"Xüsusi, sizə öz gün və vaxtınızı seçmə imkanı verir. Diqər seçimlər /etc/"
-"crontab faylındakı icra hissələrini işlədir."
-
-#: standalone/drakbackup:344
-#, c-format
-msgid "No media selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:348
-#, c-format
-msgid "No interval selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:393
-#, c-format
-msgid "Interval cron not available as non-root"
-msgstr "Cron normal istifadəçi modu üçün mövcud deyil"
-
-#: standalone/drakbackup:477 standalone/logdrake:439
-#, c-format
-msgid "\"%s\" neither is a valid email nor is an existing local user!"
-msgstr ""
-
-#: standalone/drakbackup:481 standalone/logdrake:444
-#, 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 ""
-
-#: standalone/drakbackup:491
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr "Hökmlü istifadəçi siyahısı dəyişdirilib, qurğu faylı yenidən yazılır."
-
-#: standalone/drakbackup:493
-#, c-format
-msgid "Old user list:\n"
-msgstr "Köhnə istifadəçi siyahısı:\n"
-
-#: standalone/drakbackup:495
-#, c-format
-msgid "New user list:\n"
-msgstr "Yeni istifadəçi siyahısı:\n"
-
-#: standalone/drakbackup:524
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
-msgstr ""
-"\n"
-" DrakBackup Raportu \n"
-
-#: standalone/drakbackup:525
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-msgstr ""
-"\n"
-" DrakBackup Demon Raportu\n"
-
-#: standalone/drakbackup:531
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup Raportu Təfərruatları\n"
-"\n"
-"\n"
-
-#: standalone/drakbackup:556 standalone/drakbackup:627
-#: standalone/drakbackup:683
-#, c-format
-msgid "Total progress"
-msgstr "Ümumi irəliləmə"
-
-#: standalone/drakbackup:609
-#, c-format
-msgid ""
-"%s exists, delete?\n"
-"\n"
-"If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-"%s mövcuddur, silinsin?\n"
-"\n"
-"Bu gedişatı əvvəlcə də etmişsinizdə güman ki\n"
-" vericidəki authorized_keys-dən girişi təmizləməlisiniz."
-
-#: standalone/drakbackup:618
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "Açarların yaradılması biraz vaxt ala bilər."
-
-#: standalone/drakbackup:625
-#, c-format
-msgid "Cannot spawn %s."
-msgstr "%s törədilə bilmir."
-
-#: standalone/drakbackup:642
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "%s üstündəki %s qapısında şifrə soruşulmasın"
-
-#: standalone/drakbackup:643
-#, c-format
-msgid "Bad password on %s"
-msgstr "%s üstündə xətalı şifrə"
-
-#: standalone/drakbackup:644
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "%s %s'ə daşınırkən icazə verilmədi"
-
-#: standalone/drakbackup:645
-#, c-format
-msgid "Can not find %s on %s"
-msgstr "%s, %s üstündə tapıla bilmir"
-
-#: standalone/drakbackup:649
-#, c-format
-msgid "%s not responding"
-msgstr "%s cavab vermir"
-
-#: standalone/drakbackup:653
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-"Daşıma müvəffəqiyyətlə başa çatdı\n"
-"İndi aşağıdakı əmrlə vericiyə daxil olmayı yoxlaya bilərsiniz:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"Sizdən şifrə istənilməyəcək."
-
-#: standalone/drakbackup:703
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "Sürücüdə CDR/DVDR yoxdur!"
-
-#: standalone/drakbackup:707
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Bu yazıla bilən mediyaya oxşamır!"
-
-#: standalone/drakbackup:712
-#, c-format
-msgid "Not erasable media!"
-msgstr "Silinə bilən mediya yoxdur!"
-
-#: standalone/drakbackup:754
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Mediyanı silmək bir az vaxt ala bilər."
-
-#: standalone/drakbackup:812
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "CD'yə yetişmədə səlahiyyət problemi."
-
-#: standalone/drakbackup:840
-#, c-format
-msgid "No tape in %s!"
-msgstr "%s içində kaset yoxdur!"
-
-#: standalone/drakbackup:953
-#, c-format
-msgid ""
-"Backup destination quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-
-#: standalone/drakbackup:973 standalone/drakbackup:1005
-#, c-format
-msgid "Backup system files..."
-msgstr "Sistem fayllarının ehtiyat nüsxəsini çıxart..."
-
-#: standalone/drakbackup:1006 standalone/drakbackup:1045
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Sabit Disk Ehtiyat Nüsxəsi faylları..."
-
-#: standalone/drakbackup:1044
-#, c-format
-msgid "Backup User files..."
-msgstr "İstifadəçi fayllarının ehtiyat nüsxəsini çıxart..."
-
-#: standalone/drakbackup:1078
-#, c-format
-msgid "Backup Other files..."
-msgstr "Diqər Faylların Ehtiyat Nüsxəsini Al..."
-
-#: standalone/drakbackup:1079
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Sabit Disk Ehtiyatlaması Fəaliyyətdədir..."
-
-#: standalone/drakbackup:1084
-#, c-format
-msgid "No changes to backup!"
-msgstr "Ehtiyat nüsxəsini dəyişdirmə!"
-
-#: standalone/drakbackup:1100 standalone/drakbackup:1122
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-"\n"
-"%s vasitəsi ilə Drakbackup fəaliyyətləri:\n"
-"\n"
-
-#: standalone/drakbackup:1109
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"FTP bağlantı problemi. Ehtiyat nüsxəsi fayllarınız FTP ilə göndərilə "
-"bilmədi.\n"
-
-#: standalone/drakbackup:1110
-#, c-format
-msgid ""
-"Error during sending file via FTP. Please correct your FTP configuration."
-msgstr ""
-"Fayl FTP ilə göndərilirkən xəta yarandı. Xahiş edirik, FTP qurğularınızı "
-"düzəldin."
-
-#: standalone/drakbackup:1112
-#, c-format
-msgid "file list sent by FTP: %s\n"
-msgstr "FTP tərəfindən göndərilən fayl siyahısı: %s\n"
-
-#: standalone/drakbackup:1127
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-"\n"
-"CD üstündə Drakbackup fəaliyyətləri :\n"
-"\n"
-
-#: standalone/drakbackup:1132
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-"\n"
-"Kaset vasitəsi ilə Drakbackup fəaliyyətləri:\n"
-"\n"
-
-#: standalone/drakbackup:1141
-#, fuzzy, c-format
-msgid "Error sending mail. Your report mail was not sent."
-msgstr ""
-"sendmail bacarılmadı.\n"
-" Raport məktubunuz göndərilmədi.\n"
-" Xahiş edirik, sendmail'i quraşdırın"
-
-#: standalone/drakbackup:1142
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr "Poçt göndərilərkən xəta oldu.\n"
-
-#: standalone/drakbackup:1172
-#, c-format
-msgid "Can not create catalog!"
-msgstr "Kataloq yaradıla bilmir!"
-
-#: standalone/drakbackup:1332
-#, fuzzy, c-format
-msgid "Problem installing %s"
-msgstr "%s paketi qurulurkən xəta oldu"
-
-#: standalone/drakbackup:1420
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Sistem fayllarınızın ehtiyat nüsxəsini çıxardın. (/etc cərgəsi)"
-
-#: standalone/drakbackup:1421 standalone/drakbackup:1484
-#: standalone/drakbackup:1550
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr ""
-"Artan/Diferensial Ehtiyatları İşlət (köhnə ehtiyatları qətiyyən əvəz etmə)"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Artan Ehtiyatları İşlət"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Diferensial Ehtiyatları İşlət"
-
-#: standalone/drakbackup:1425
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Kritik faylları daxil etmə (passwd, group, fstab)"
-
-#: standalone/drakbackup:1456
-#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr ""
-"Xahiş edirik, ehtiyat nüsxəsinə daxil etmək istədiyiniz bütün istifadəçiləri "
-"seçin."
-
-#: standalone/drakbackup:1483
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Səyyahın ara yaddaşını daxil etmə"
-
-#: standalone/drakbackup:1537
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Fayl ya da cərgələri seçib, 'Oldu' düyməsinə basın"
-
-#: standalone/drakbackup:1538 standalone/drakfont:650
-#, c-format
-msgid "Remove Selected"
-msgstr "Seçiləni Sil"
-
-#: standalone/drakbackup:1601
-#, c-format
-msgid "Users"
-msgstr "İstifadəçilər"
-
-#: standalone/drakbackup:1621
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Ehtiyat nüsxəsi almaq üçün şəbəkə bağlantısını işlət"
-
-#: standalone/drakbackup:1623
-#, c-format
-msgid "Net Method:"
-msgstr "Şəbəkə Yöntəmi:"
-
-#: standalone/drakbackup:1627
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "SSH üçün Expect işlət"
-
-#: standalone/drakbackup:1628
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "SSH üçün ehtiyat açarları yarat/transfer et"
-
-#: standalone/drakbackup:1630
-#, c-format
-msgid "Transfer Now"
-msgstr "İndi Transfer Et"
-
-#: standalone/drakbackup:1632
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Diqər (drackbackup xarici) açarlar onsuzda yerindədir"
-
-#: standalone/drakbackup:1635
-#, c-format
-msgid "Host name or IP."
-msgstr "Qovşaq adı ya da IP."
-
-#: standalone/drakbackup:1640
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr "Ehtiyatları bu qovşağa qoylmaq üçün cərgə (ya da modul)"
-
-#: standalone/drakbackup:1652
-#, c-format
-msgid "Remember this password"
-msgstr "Bu şifrəni yadında saxla"
-
-#: standalone/drakbackup:1664
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Qovşaq adı, istifadəçi adı və şifrəyə ehtiyac var!"
-
-#: standalone/drakbackup:1755
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Ehtiyatlama üçün CD/DVDROM işlət"
-
-#: standalone/drakbackup:1758
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "CD/DVD avadanlığınızı seçin"
-
-#: standalone/drakbackup:1763
-#, c-format
-msgid "Choose your CD/DVD media size"
-msgstr "CD/DVD mediyanızın böyüklüyünü seçin"
-
-#: standalone/drakbackup:1770
-#, c-format
-msgid "Multisession CD"
-msgstr "Çox iclaslı CD"
-
-#: standalone/drakbackup:1772
-#, c-format
-msgid "CDRW media"
-msgstr "CDRW mediyası"
-
-#: standalone/drakbackup:1778
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "RW mediyanızı silin (1ci İclas)"
-
-#: standalone/drakbackup:1779
-#, c-format
-msgid " Erase Now "
-msgstr " İndi Sil"
-
-#: standalone/drakbackup:1785
-#, c-format
-msgid "DVD+RW media"
-msgstr "DVD+RW mediyası"
-
-#: standalone/drakbackup:1787
-#, c-format
-msgid "DVD-R media"
-msgstr "DVD-R mediyası"
-
-#: standalone/drakbackup:1789
-#, c-format
-msgid "DVDRAM device"
-msgstr "DVDRAM avadanlığı"
-
-#: standalone/drakbackup:1820
-#, c-format
-msgid "No CD device defined!"
-msgstr "CD avadanlığı tə'yin edilməyib!"
-
-#: standalone/drakbackup:1862
-#, c-format
-msgid "Use tape to backup"
-msgstr "Ehtiyat nüsxəsi üçün kaset işlət"
-
-#: standalone/drakbackup:1865
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Ehtiyatlama üçün istifadə ediləcək avadanlıq adı"
-
-#: standalone/drakbackup:1871
-#, c-format
-msgid "Backup directly to tape"
-msgstr ""
-
-#: standalone/drakbackup:1877
-#, c-format
-msgid "Use tape hardware compression (EXPERIMENTAL)"
-msgstr ""
-
-#: standalone/drakbackup:1883
-#, c-format
-msgid "Do not rewind tape after backup"
-msgstr "Ehtiyat nüsxəsini aldıqdan sonra kasedi geri sarma"
-
-#: standalone/drakbackup:1889
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Ehtiyat nüsxəsini almadan əvvəl kasedi sil"
-
-#: standalone/drakbackup:1895
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Ehtiyatlama sonrasında kasedi çıxart"
-
-#: standalone/drakbackup:1976
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Qeyd cərgəsini daxil edin:"
-
-#: standalone/drakbackup:1980
-#, fuzzy, c-format
-msgid "Directory to save to"
-msgstr "Qeyd cərgəsini daxil edin:"
-
-#: standalone/drakbackup:1985
-#, c-format
-msgid ""
-"Maximum disk space\n"
-" allocated for backups (MB)"
-msgstr ""
-
-#: standalone/drakbackup:1989
-#, c-format
-msgid ""
-"Delete incremental or differential\n"
-" backups older than N days\n"
-" (0 is keep all backups) to save space"
-msgstr ""
-
-#: standalone/drakbackup:2056
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CD-R / DVD-R"
-
-#: standalone/drakbackup:2061
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Sabit Disk / NFS"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2077
-#: standalone/drakbackup:2082
-#, c-format
-msgid "hourly"
-msgstr "hər saat"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2078
-#: standalone/drakbackup:2083
-#, c-format
-msgid "daily"
-msgstr "günlük"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2079
-#: standalone/drakbackup:2084
-#, c-format
-msgid "weekly"
-msgstr "hər həftə"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2080
-#: standalone/drakbackup:2085
-#, c-format
-msgid "monthly"
-msgstr "hər ay"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2081
-#: standalone/drakbackup:2086
-#, c-format
-msgid "custom"
-msgstr "xüsusi"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "January"
-msgstr "Yanvars"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "February"
-msgstr "Fevral"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "March"
-msgstr "Mart"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "April"
-msgstr "Aprel"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "May"
-msgstr "May"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "June"
-msgstr "İyun"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "July"
-msgstr "İyul"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "August"
-msgstr "Avqust"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "September"
-msgstr "Sentyabr"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "October"
-msgstr "Oktyabr"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "November"
-msgstr "Noyabr"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "December"
-msgstr "Dekabr"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Sunday"
-msgstr "Bazar"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Monday"
-msgstr "Bazar ertəsi"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Tuesday"
-msgstr "Çərşənbə axşamı"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Wednesday"
-msgstr "Çərşənbə"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Thursday"
-msgstr "Cümə Axşamı"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Friday"
-msgstr "Cümə"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Saturday"
-msgstr "Şənbə"
-
-#: standalone/drakbackup:2126
-#, fuzzy, c-format
-msgid "Delete cron entry"
-msgstr "Alıcını Sil"
-
-#: standalone/drakbackup:2127
-#, fuzzy, c-format
-msgid "Add cron entry"
-msgstr "Çapçı Əlavə Et"
-
-#: standalone/drakbackup:2185
-#, c-format
-msgid "Use daemon"
-msgstr "Demonu işlət"
-
-#: standalone/drakbackup:2189
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Xahiş edirik, hər ehtiyatlama gedişatı arasındakı vaxt aralığını seçin"
-
-#: standalone/drakbackup:2197
-#, c-format
-msgid "Minute"
-msgstr "Dəqiqə"
-
-#: standalone/drakbackup:2201
-#, c-format
-msgid "Hour"
-msgstr "Saat"
-
-#: standalone/drakbackup:2205
-#, c-format
-msgid "Day"
-msgstr "Gün"
-
-#: standalone/drakbackup:2209
-#, c-format
-msgid "Month"
-msgstr "Ay"
-
-#: standalone/drakbackup:2213
-#, fuzzy, c-format
-msgid "Weekday (start)"
-msgstr "Həftənin Günü"
-
-#: standalone/drakbackup:2217
-#, fuzzy, c-format
-msgid "Weekday (end)"
-msgstr "Həftənin Günü"
-
-#: standalone/drakbackup:2221
-#, fuzzy, c-format
-msgid "Profile"
-msgstr "Profiller"
-
-#: standalone/drakbackup:2227
-#, fuzzy, c-format
-msgid "Current crontab:"
-msgstr "Hazırkı istifadəçi"
-
-#: standalone/drakbackup:2235
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "Xahiş edirik, ehtiyat nüsxəsi çıxardılacaq mediyanı seçin."
-
-#: standalone/drakbackup:2239
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Xahiş edirik, cron demonunun xidmətlərinizdə yer aldığından əmin olun."
-
-#: standalone/drakbackup:2240
-#, c-format
-msgid ""
-"If your machine is not on all the time, you might want to install anacron."
-msgstr ""
-
-#: standalone/drakbackup:2316
-#, fuzzy, c-format
-msgid "Please choose the archive program"
-msgstr "Xahiş edirik, bərpa ediləcək tarixi seçin:"
-
-#: standalone/drakbackup:2321
-#, fuzzy, c-format
-msgid "Please choose the compression type"
-msgstr "Xahiş edirik, bərpa ediləcək tarixi seçin:"
-
-#: standalone/drakbackup:2325
-#, c-format
-msgid "Use .backupignore files"
-msgstr ".backupignore fayllarını işlət"
-
-#: standalone/drakbackup:2327
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Hər ehtiyatlamadan sonra bu ünvana məktub göndər:"
-
-#: standalone/drakbackup:2333
-#, c-format
-msgid "Return address for sent mail:"
-msgstr ""
-
-#: standalone/drakbackup:2339
-#, c-format
-msgid "SMTP server for mail:"
-msgstr "Poçt üçün SMB vericisi:"
-
-#: standalone/drakbackup:2343
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr "Diqər mediyaya ehtiyatlamadan sonra Sabit Diskdəki tar fayllrını sil."
-
-#: standalone/drakbackup:2344
-#, fuzzy, c-format
-msgid "View restore log after file restore."
-msgstr "Diqər fayllar da qeri qaytarılması üçün Oldu."
-
-#: standalone/drakbackup:2389
-#, c-format
-msgid "What"
-msgstr "Nəyi"
-
-#: standalone/drakbackup:2394
-#, c-format
-msgid "Where"
-msgstr "Hara"
-
-#: standalone/drakbackup:2399
-#, c-format
-msgid "When"
-msgstr "Bu zaman"
-
-#: standalone/drakbackup:2404
-#, c-format
-msgid "More Options"
-msgstr "Əlavə Seçimlər"
-
-#: standalone/drakbackup:2417
-#, fuzzy, c-format
-msgid "Backup destination not configured..."
-msgstr "Şəbəkə fəalliyyəti quraşdırılmayıb"
-
-#: standalone/drakbackup:2437 standalone/drakbackup:4367
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Drakbackup Quraşdırılması"
-
-#: standalone/drakbackup:2453
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Xahiş edirik, ehtiyatları saxlamaq istədiyiniz yeri seçin"
-
-#: standalone/drakbackup:2456
-#, fuzzy, c-format
-msgid "Hard Drive used to prepare backups for all media"
-msgstr "Diqər mediyaya ehtiyatlamadan sonra Sabit Diskdəki tar fayllrını sil."
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Across Network"
-msgstr "Şəbəkə üstündə"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On CD-R"
-msgstr "CD-R'da"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On Tape Device"
-msgstr "Kaset avadanlığı üstündə"
-
-#: standalone/drakbackup:2502
-#, c-format
-msgid "Backup Users"
-msgstr "İstifadəçilərin Ehtiyat Nüsxəsi Al"
-
-#: standalone/drakbackup:2503
-#, c-format
-msgid " (Default is all users)"
-msgstr " (Əsası bütün istifadəçilərdir)"
-
-#: standalone/drakbackup:2516
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Xahiş edirik, nəyin ehtiyat nüsxəsini çıxartmaq istədiyinizi seçin"
-
-#: standalone/drakbackup:2517
-#, c-format
-msgid "Backup System"
-msgstr "Sistemin ehtiyat nüsxəsini çıxart"
-
-#: standalone/drakbackup:2519
-#, c-format
-msgid "Select user manually"
-msgstr "İstifadəçiləri əllə seç"
-
-#: standalone/drakbackup:2548
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Xahiş edirik, ehtiyat nüsxəsi çıxardılacaq mə'lumatı seçin..."
-
-#: standalone/drakbackup:2620
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Ehtiyat Mənbələri: \n"
-
-#: standalone/drakbackup:2621
-#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Sistem Faylları:\n"
-
-#: standalone/drakbackup:2623
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- İstifadəçi Faylları:\n"
-
-#: standalone/drakbackup:2625
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Başqa Fayllar:\n"
-
-#: standalone/drakbackup:2627
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-"\n"
-"- Sabit diskdəki cığıra qeyd et: %s\n"
-
-#: standalone/drakbackup:2628
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tDisk istifadəsinə %s Mb'lıq hədd qoy\n"
-
-#: standalone/drakbackup:2629
-#, c-format
-msgid "\tDelete backups older than %s day(s)\n"
-msgstr ""
-
-#: standalone/drakbackup:2632
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
-"\n"
-"- Ehtiyatlamadan sonra sabit diskdəki tar fayllarını sil.\n"
-
-#: standalone/drakbackup:2637
-#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr ""
-"\n"
-"- CD'yə yaz"
-
-#: standalone/drakbackup:2638
-#, c-format
-msgid "RW"
-msgstr "RW"
-
-#: standalone/drakbackup:2639
-#, c-format
-msgid " on device: %s"
-msgstr " bu avadanlıq üstündə: %s"
-
-#: standalone/drakbackup:2640
-#, c-format
-msgid " (multi-session)"
-msgstr " (çox-iclaslı)"
-
-#: standalone/drakbackup:2641
-#, c-format
-msgid ""
-"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-"\n"
-"- %s avadanlığı üstündə kasetə qeyd et"
-
-#: standalone/drakbackup:2642
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tSil=%s"
-
-#: standalone/drakbackup:2644
-#, c-format
-msgid "\tBackup directly to Tape\n"
-msgstr ""
-
-#: standalone/drakbackup:2646
-#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
-"\n"
-"- %s üstündən %s qovşağına qeyd et\n"
-
-#: standalone/drakbackup:2647
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t istifadəçi adı: %s\n"
-"\t\t bu cığırda: %s \n"
-
-#: standalone/drakbackup:2648
-#, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Seçimlər:\n"
-
-#: standalone/drakbackup:2649
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tSistem Fayllarını daxil etmə\n"
-
-#: standalone/drakbackup:2651
-#, fuzzy, c-format
-msgid "\tBackups use %s and bzip2\n"
-msgstr "\tEhtiyatlar tar və bzip2 işlədir\n"
-
-#: standalone/drakbackup:2652
-#, fuzzy, c-format
-msgid "\tBackups use %s and gzip\n"
-msgstr "\tEhtiyat nüsxələri tar və gzip işlədir\n"
-
-#: standalone/drakbackup:2653
-#, fuzzy, c-format
-msgid "\tBackups use %s only\n"
-msgstr "\tEhtiyat nüsxələri tar və gzip işlədir\n"
-
-#: standalone/drakbackup:2655
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\t.backupignore fayllarını işlət\n"
-
-#: standalone/drakbackup:2656
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\t%s ünvanına poçt göndər\n"
-
-#: standalone/drakbackup:2657
-#, c-format
-msgid "\tSend mail from %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2658
-#, c-format
-msgid "\tUsing SMTP server %s\n"
-msgstr "\t%s SMTP vericisi işlədilir\n"
-
-#: standalone/drakbackup:2660
-#, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
-msgstr ""
-"\n"
-"- Demon, %s bunun vasitəsi ilə:\n"
-
-#: standalone/drakbackup:2661
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-Sabit disk.\n"
-
-#: standalone/drakbackup:2662
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-R.\n"
-
-#: standalone/drakbackup:2663
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Kaset \n"
-
-#: standalone/drakbackup:2664
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-FTP Şəbəkəsi.\n"
-
-#: standalone/drakbackup:2665
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Şəbəkə SSH tərəfindən.\n"
-
-#: standalone/drakbackup:2666
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-sync şəbəkəsi.\n"
-
-#: standalone/drakbackup:2668
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-"Quraşdırma yoxdur, xahiş edirik, Sehirbaz ya da Mütəxəssis düymələrinən "
-"birinə basın.\n"
-
-#: standalone/drakbackup:2673
-#, c-format
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Geri yüklənəcək mə'lumatların siyahısı:\n"
-"\n"
-
-#: standalone/drakbackup:2675
-#, c-format
-msgid "- Restore System Files.\n"
-msgstr "- Sistem Fayllarını Bərpa Et.\n"
-
-#: standalone/drakbackup:2677 standalone/drakbackup:2687
-#, c-format
-msgid " - from date: %s %s\n"
-msgstr " - bu tarixdən etibarən: %s %s\n"
-
-#: standalone/drakbackup:2680
-#, c-format
-msgid "- Restore User Files: \n"
-msgstr "- İstifadəçi Fayllarını Bərpa Et: \n"
-
-#: standalone/drakbackup:2685
-#, c-format
-msgid "- Restore Other Files: \n"
-msgstr "- Digər Faylları Bərpa Et: \n"
-
-#: standalone/drakbackup:2864
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Pozulmuş data siyahısı:\n"
-"\n"
-
-#: standalone/drakbackup:2866
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Xahiş edirik, bir sonrakı dəfə onun işarəsini silin."
-
-#: standalone/drakbackup:2876
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Ehtiyat faylları pozulub"
-
-#: standalone/drakbackup:2897
-#, c-format
-msgid " All of your selected data have been "
-msgstr " Bütün seçili mə'lumatlarınız "
-
-#: standalone/drakbackup:2898
-#, c-format
-msgid " Successfully Restored on %s "
-msgstr " %s üstündə müvəffəqiyyətlə qeri qaytarıldı "
-
-#: standalone/drakbackup:2999
-#, c-format
-msgid "/usr/bin/star not found, using tar..."
-msgstr ""
-
-#: standalone/drakbackup:3035
-#, c-format
-msgid " Restore Configuration "
-msgstr " Qurğuları Geri AL "
-
-#: standalone/drakbackup:3063
-#, c-format
-msgid "OK to restore the other files."
-msgstr "Diqər fayllar da qeri qaytarılması üçün Oldu."
-
-#: standalone/drakbackup:3079
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr "Geri yüklənəcək istifadəçi siyahısı (ən yeni tarix vacibdir)"
-
-#: standalone/drakbackup:3144
-#, c-format
-msgid "Please choose the date to restore:"
-msgstr "Xahiş edirik, bərpa ediləcək tarixi seçin:"
-
-#: standalone/drakbackup:3181
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Sabit Diskdən Geri Yüklə"
-
-#: standalone/drakbackup:3183
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Ehtiyatların saxlandığı cərgəni daxil edin"
-
-#: standalone/drakbackup:3187
-#, fuzzy, c-format
-msgid "Directory with backups"
-msgstr "Bütün ehtiyat nüsxələri geri yüklə"
-
-#: standalone/drakbackup:3241
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Geri qaytarmaq üçün başqa mediya seç"
-
-#: standalone/drakbackup:3243
-#, c-format
-msgid "Other Media"
-msgstr "Başqa Mediya"
-
-#: standalone/drakbackup:3248
-#, c-format
-msgid "Restore system"
-msgstr "Sistemi qeri yüklə"
-
-#: standalone/drakbackup:3249
-#, c-format
-msgid "Restore Users"
-msgstr "İstifadəçiləri Geri Yüklə"
-
-#: standalone/drakbackup:3250
-#, c-format
-msgid "Restore Other"
-msgstr "Diqərlərini Geri Yüklə"
-
-#: standalone/drakbackup:3252
-#, c-format
-msgid "Select path to restore (instead of /)"
-msgstr "geri yüklənəcək cığırı seçin (/ yerinə)"
-
-#: standalone/drakbackup:3256 standalone/drakbackup:3539
-#, fuzzy, c-format
-msgid "Path To Restore To"
-msgstr "Xüsusi Geri Qaytarma"
-
-#: standalone/drakbackup:3259
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-"Geri yükləmədən əvvəl yeni ehtiyatları al (ancaq artan ehtiyatlar üçün.)"
-
-#: standalone/drakbackup:3261
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "İstifadəçi cərgələrini ehtiyat nüsxələrini qeri yükləmədən əvvəl sil"
-
-#: standalone/drakbackup:3345
-#, fuzzy, c-format
-msgid "Filename text substring to search for (empty string matches all):"
-msgstr "Axtarılacaq fayl adı mətni:"
-
-#: standalone/drakbackup:3348
-#, c-format
-msgid "Search Backups"
-msgstr "Ehtiyatları Axtar"
-
-#: standalone/drakbackup:3367
-#, c-format
-msgid "No matches found..."
-msgstr "Heç bir nəticə tapıla bilmədi..."
-
-#: standalone/drakbackup:3371
-#, c-format
-msgid "Restore Selected"
-msgstr "Seçiləni Qeri Yüklə"
-
-#: standalone/drakbackup:3507
-#, c-format
-msgid ""
-"Click date/time to see backup files.\n"
-"Ctrl-Click files to select multiple files."
-msgstr ""
-
-#: standalone/drakbackup:3513
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
-"Seçili Kataloq\n"
-"Girişini Geri Yüklə"
-
-#: standalone/drakbackup:3522
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr ""
-"Seçili Faylları Qeri\n"
-"Yüklə"
-
-#: standalone/drakbackup:3599
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "%s mövqeyində ehtiyat faylları tapıla bilmədi."
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid "Restore From CD"
-msgstr "CD'dən Geri Yüklə"
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-"Etiketi %s olan CD-ni /mnt/cdrom\n"
-" bağlama nöqtəsi altına sürücüyə yerləşdirin"
-
-#: standalone/drakbackup:3614
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "Düzgün CD adı deyil. CD-nin adı %s qoyulub."
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid "Restore From Tape"
-msgstr "Kasetdən Geri Yüklə"
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-"%2$s kaset avadanlığının içinə etiketi \n"
-"%1$s olan kasedi daxil edin"
-
-#: standalone/drakbackup:3626
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Düzgün kaset adı deyil. Kasedin adı %s qoyulub."
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network"
-msgstr "Şəbəkə Üstündən Geri Yüklə"
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Şəbəkə Protokolu Üstündən Geri Yüklə: %s"
-
-#: standalone/drakbackup:3638
-#, c-format
-msgid "Host Name"
-msgstr "Qovşaq Adı"
-
-#: standalone/drakbackup:3639
-#, c-format
-msgid "Host Path or Module"
-msgstr "Qovşaq Cığırı ya da Modul"
-
-#: standalone/drakbackup:3646
-#, c-format
-msgid "Password required"
-msgstr "Şifrə lazımdır"
-
-#: standalone/drakbackup:3652
-#, c-format
-msgid "Username required"
-msgstr "İstifadəçi adı məcburidir"
-
-#: standalone/drakbackup:3655
-#, c-format
-msgid "Hostname required"
-msgstr "Qovşaq adı məcburidir"
-
-#: standalone/drakbackup:3660
-#, c-format
-msgid "Path or Module required"
-msgstr "Cığır ya da Modul məcburidir"
-
-#: standalone/drakbackup:3672
-#, c-format
-msgid "Files Restored..."
-msgstr "Fayllar Geri Yükləndi..."
-
-#: standalone/drakbackup:3675
-#, c-format
-msgid "Restore Failed..."
-msgstr "Geri Yükləmə Bacarılmadı..."
-
-#: standalone/drakbackup:3703
-#, c-format
-msgid "%s not retrieved..."
-msgstr "%s alınmadı..."
-
-#: standalone/drakbackup:3929 standalone/drakbackup:3998
-#, c-format
-msgid "Search for files to restore"
-msgstr "Geri qaytarılacaq faylları axtar"
-
-#: standalone/drakbackup:3933
-#, c-format
-msgid "Restore all backups"
-msgstr "Bütün ehtiyat nüsxələri geri yüklə"
-
-#: standalone/drakbackup:3941
-#, c-format
-msgid "Custom Restore"
-msgstr "Xüsusi Geri Qaytarma"
-
-#: standalone/drakbackup:3945 standalone/drakbackup:3994
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Kataloqdan Geri Yüklə"
-
-#: standalone/drakbackup:3966
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Geri yüklənəcək ehtiyat nüsxələri tapıla bilmədi...\n"
-
-#: standalone/drakbackup:3967
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "%s çığırının düz olduğunu yoxlayın"
-
-#: standalone/drakbackup:3968
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " və CD-nin sürücüdə olduğunu yoxlayın"
-
-#: standalone/drakbackup:3970
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr ""
-"Ehtiyatlar bağlana bilməyən mediya üstündədir - geri yükləmək üçün Kataloqu "
-"işlət"
-
-#: standalone/drakbackup:3986
-#, c-format
-msgid "CD in place - continue."
-msgstr "CD yerində - davam et."
-
-#: standalone/drakbackup:3991
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Yeni geri yükləmə yerinə get."
-
-#: standalone/drakbackup:3992
-#, fuzzy, c-format
-msgid "Directory To Restore From"
-msgstr "CD'dən Geri Yüklə"
-
-#: standalone/drakbackup:4028
-#, c-format
-msgid "Restore Progress"
-msgstr "İrəliləməni Geri Yüklə"
-
-#: standalone/drakbackup:4136
-#, c-format
-msgid "Build Backup"
-msgstr "Ehtiyatı İnşa Et"
-
-#: standalone/drakbackup:4169 standalone/drakbackup:4466
-#, c-format
-msgid "Restore"
-msgstr "Geri yüklə"
-
-#: standalone/drakbackup:4261
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Xahiş edirik, geri yüklənəcək mə'lumatı seçin..."
-
-#: standalone/drakbackup:4301
-#, c-format
-msgid "Backup system files"
-msgstr "Sistem fayllarının ehtiyat nüsxəsini çıxart"
-
-#: standalone/drakbackup:4304
-#, c-format
-msgid "Backup user files"
-msgstr "İstifadəçi fayllarının ehtiyat nüsxəsini çıxart"
-
-#: standalone/drakbackup:4307
-#, c-format
-msgid "Backup other files"
-msgstr "Diqər faylların ehtiyat nüsxəsini çıxart"
-
-#: standalone/drakbackup:4310 standalone/drakbackup:4344
-#, c-format
-msgid "Total Progress"
-msgstr "Ümumi İrəliləmə"
-
-#: standalone/drakbackup:4336
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Fayllar FTP ilə göndərilir"
-
-#: standalone/drakbackup:4339
-#, c-format
-msgid "Sending files..."
-msgstr "Fayllar göndərilir..."
-
-#: standalone/drakbackup:4409
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Quraşdırma faylından indi ehtiyat nüsxəsini çıxart"
-
-#: standalone/drakbackup:4414
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Ehtiyat Quraşdırılmasını Göstər."
-
-#: standalone/drakbackup:4440
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Sehirbaz Qurğuları"
-
-#: standalone/drakbackup:4445
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Ətraflı Quraşdırma"
-
-#: standalone/drakbackup:4450
-#, c-format
-msgid "View Configuration"
-msgstr "Qurğuları Göstər"
-
-#: standalone/drakbackup:4454
-#, c-format
-msgid "View Last Log"
-msgstr "Son Qeydi Göstər"
-
-#: standalone/drakbackup:4459
-#, c-format
-msgid "Backup Now"
-msgstr "Ehtiyat Nüsxəsini İndi Çıxart"
-
-#: standalone/drakbackup:4463
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Quraşdırma faylı tapıla bilmədi \n"
-"Xahiş edirik, Sehirbaz ya da Mütəxəssis düymələrindən birinə basın."
-
-#: standalone/drakbackup:4501
-#, fuzzy, c-format
-msgid "Load profile"
-msgstr "Yerli fayl"
-
-#: standalone/drakbackup:4510
-#, fuzzy, c-format
-msgid "Save profile as..."
-msgstr "Fərqli qeyd et..."
-
-#: standalone/drakbackup:4532 standalone/drakbackup:4535
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: standalone/drakboot:49
-#, c-format
-msgid "No bootloader found, creating a new configuration"
-msgstr ""
-
-#: standalone/drakboot:84 standalone/harddrake2:190 standalone/harddrake2:191
-#: standalone/logdrake:69 standalone/printerdrake:150
-#: standalone/printerdrake:151 standalone/printerdrake:152
-#, c-format
-msgid "/_File"
-msgstr "/_Fayl"
-
-#: standalone/drakboot:85 standalone/logdrake:75
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Fayl/_Çıx"
-
-#: standalone/drakboot:85 standalone/harddrake2:191 standalone/logdrake:75
-#: standalone/printerdrake:152
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: standalone/drakboot:125
-#, c-format
-msgid "Text only"
-msgstr ""
-
-#: standalone/drakboot:126
-#, c-format
-msgid "Verbose"
-msgstr ""
-
-#: standalone/drakboot:127
-#, c-format
-msgid "Silent"
-msgstr ""
-
-#: standalone/drakboot:134
-#, c-format
-msgid ""
-"Your system bootloader is not in framebuffer mode. To activate graphical "
-"boot, select a graphic video mode from the bootloader configuration tool."
-msgstr ""
-
-#: standalone/drakboot:135
-#, fuzzy, c-format
-msgid "Do you want to configure it now?"
-msgstr "Qurğuları sınamaq istəyirsiniz?"
-
-#: standalone/drakboot:144
-#, c-format
-msgid "Install themes"
-msgstr "Örtükləri qur"
-
-#: standalone/drakboot:146
-#, c-format
-msgid "Graphical boot theme selection"
-msgstr "Qrafiki açılış örtüyü seçimi"
-
-#: standalone/drakboot:149
-#, fuzzy, c-format
-msgid "Graphical boot mode:"
-msgstr "Qrafiki açılış işlət"
-
-#: standalone/drakboot:151
-#, c-format
-msgid "Theme"
-msgstr "Örtük"
-
-#: standalone/drakboot:154
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"Konsol altında\n"
-"örtüyü göstər"
-
-#: standalone/drakboot:159
-#, c-format
-msgid "Create new theme"
-msgstr "Yeni örtük yarat"
-
-#: standalone/drakboot:191
-#, c-format
-msgid "Default user"
-msgstr "Əsas istifadəçi"
-
-#: standalone/drakboot:192
-#, c-format
-msgid "Default desktop"
-msgstr "Əsas masa üstü"
-
-#: standalone/drakboot:195
-#, c-format
-msgid "No, I do not want autologin"
-msgstr "Xeyir, Avtomatik giriş istəmirəm"
-
-#: standalone/drakboot:196
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr ""
-"Bəli, bu istifadəçi üçün avtomatik giriş istəyirəm (istifadəçi, masa üstü)"
-
-#: standalone/drakboot:203
-#, c-format
-msgid "System mode"
-msgstr "Sistem modu"
-
-#: standalone/drakboot:206
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Sistem açılanda qrafiki ara üzü başlat"
-
-#: standalone/drakboot:272
-#, c-format
-msgid ""
-"Please choose a video mode, it will be applied to each of the boot entries "
-"selected below.\n"
-"Be sure your video card supports the mode you choose."
-msgstr ""
-
-#: standalone/drakbug:41
-#, fuzzy, c-format
-msgid "Mandriva Linux Bug Report Tool"
-msgstr "Mandriva Linux Xəta Raportlama Vasitəsi"
-
-#: standalone/drakbug:46
-#, c-format
-msgid "Mandriva Linux Control Center"
-msgstr "Mandriva Linux İdarə Mərkəzi"
-
-#: standalone/drakbug:48
-#, c-format
-msgid "Synchronization tool"
-msgstr "Sinxronlaşdırma vasitəsi"
-
-#: standalone/drakbug:49 standalone/drakbug:152
-#, c-format
-msgid "Standalone Tools"
-msgstr "Tək Vasitələr"
-
-#: standalone/drakbug:50
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: standalone/drakbug:51
-#, c-format
-msgid "Mandriva Online"
-msgstr "Mandriva Onlayn"
-
-#: standalone/drakbug:52
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
-
-#: standalone/drakbug:53
-#, c-format
-msgid "Msec"
-msgstr "Msec"
-
-#: standalone/drakbug:54
-#, c-format
-msgid "Remote Control"
-msgstr "Uzaqdan İdarə"
-
-#: standalone/drakbug:55
-#, c-format
-msgid "Software Manager"
-msgstr "Proqram Təminatı İdarəçisi"
-
-#: standalone/drakbug:56
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
-
-#: standalone/drakbug:57
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Windows'dan Keçiş vasitəsi"
-
-#: standalone/drakbug:58 standalone/draksambashare:1234
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: standalone/drakbug:59
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Quraşdırma Sehirbazları"
-
-#: standalone/drakbug:81
-#, c-format
-msgid "Select Mandriva Tool:"
-msgstr ""
-
-#: standalone/drakbug:82
-#, fuzzy, c-format
-msgid ""
-"or Application Name\n"
-"(or Full Path):"
-msgstr ""
-"Tə'minat Adı\n"
-"ya da Tam Cığır:"
-
-#: standalone/drakbug:85
-#, c-format
-msgid "Find Package"
-msgstr "Paketi Tap"
-
-#: standalone/drakbug:87
-#, c-format
-msgid "Package: "
-msgstr "Paket:"
-
-#: standalone/drakbug:88
-#, c-format
-msgid "Kernel:"
-msgstr "Çəyirdək:"
-
-#: standalone/drakbug:101
-#, fuzzy, c-format
-msgid ""
-"To submit a bug report, click on the report button. \n"
-"This will open a web browser window on %s where you'll find a form to fill "
-"in. The information displayed above will be transferred to that server. \n"
-"Things useful to include in your report are the output of lspci, kernel "
-"version, and /proc/cpuinfo."
-msgstr ""
-"Xəta raportu göndərmək üçün, raport düyməsinə basın.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
-
-#: standalone/drakbug:107
-#, c-format
-msgid "Report"
-msgstr "Raport Göndər"
-
-#: standalone/drakbug:162
-#, c-format
-msgid "Not installed"
-msgstr "Qurulmayıb"
-
-#: standalone/drakbug:174
-#, c-format
-msgid "Package not installed"
-msgstr "Paket qurulmayıb"
-
-#: standalone/drakclock:29
-#, c-format
-msgid "DrakClock"
-msgstr "DrakClock"
-
-#: standalone/drakclock:39
-#, fuzzy, c-format
-msgid "not defined"
-msgstr "quraşdırılmayıb"
-
-#: standalone/drakclock:41
-#, c-format
-msgid "Change Time Zone"
-msgstr "Vaxt Zolağını Dəyişdir"
-
-#: standalone/drakclock:45
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "Vaxt Zolağı - DrakClock"
-
-#: standalone/drakclock:47
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "GMT - DrakClock"
-
-#: standalone/drakclock:47 standalone/finish-install:57
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Avadanlıq saatınız GMT-yə görə quruludur?"
-
-#: standalone/drakclock:75
-#, c-format
-msgid "Network Time Protocol"
-msgstr "Şəbəkə Vaxt Protokolu"
-
-#: standalone/drakclock:77
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-
-#: standalone/drakclock:78
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Şəbəkə Vaxt Protokolunu Fəallaşdır"
-
-#: standalone/drakclock:86
-#, c-format
-msgid "Server:"
-msgstr "Verici:"
-
-#: standalone/drakclock:124
-#, c-format
-msgid "Could not synchronize with %s."
-msgstr ""
-
-#: standalone/drakclock:146 standalone/drakclock:156
-#, c-format
-msgid "Reset"
-msgstr "Sıfırla"
-
-#: standalone/drakclock:224
-#, fuzzy, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol\n"
-"\n"
-"Do you want to install ntp?"
-msgstr "%s paketi qurulmalıdır. Qurmaq istəyirsiniz?"
-
-#: standalone/drakconnect:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Şəbəkə quraşdırılması (%d adapter)"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Gateway:"
-msgstr "Şəbəkə Keçidi:"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Interface:"
-msgstr "Ara üz:"
-
-#: standalone/drakconnect:93 standalone/net_monitor:116
-#, c-format
-msgid "Wait please"
-msgstr "Xahiş edirik, gözləyin"
-
-#: standalone/drakconnect:109
-#, c-format
-msgid "Interface"
-msgstr "Ara üz"
-
-#: standalone/drakconnect:109 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "State"
-msgstr "Vəziyyət"
-
-#: standalone/drakconnect:126
-#, c-format
-msgid "Hostname: "
-msgstr "Ev sahibi adı: "
-
-#: standalone/drakconnect:128
-#, c-format
-msgid "Configure hostname..."
-msgstr "Qovşaq adını quraşdır..."
-
-#: standalone/drakconnect:142 standalone/drakconnect:845
-#, c-format
-msgid "LAN configuration"
-msgstr "Yerli Şəbəkə (lAN) quraşdırılması"
-
-#: standalone/drakconnect:147
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Yerli Şəbəkəni Quraşdır..."
-
-#: standalone/drakconnect:155 standalone/drakconnect:237
-#: standalone/drakconnect:241
-#, c-format
-msgid "Apply"
-msgstr "Tədbiq Et"
-
-#: standalone/drakconnect:188
-#, c-format
-msgid "Manage connections"
-msgstr "Bağlantıları idarə et"
-
-#: standalone/drakconnect:215
-#, fuzzy, c-format
-msgid "Device selected"
-msgstr "Seçiləni Sil"
-
-#: standalone/drakconnect:296
-#, fuzzy, c-format
-msgid "IP configuration"
-msgstr "CUPS quraşdırılması"
-
-#: standalone/drakconnect:335
-#, c-format
-msgid "DNS servers"
-msgstr "DNS vericiləri"
-
-#: standalone/drakconnect:343
-#, c-format
-msgid "Search Domain"
-msgstr "Axtarış Sahəsi"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "static"
-msgstr "statik"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "DHCP"
-msgstr "DHCP"
-
-#: standalone/drakconnect:515
-#, c-format
-msgid "Flow control"
-msgstr "Flow idarəsi"
-
-#: standalone/drakconnect:516
-#, c-format
-msgid "Line termination"
-msgstr "Sətir sonlandırılması"
-
-#: standalone/drakconnect:527
-#, c-format
-msgid "Modem timeout"
-msgstr "Modem vaxt dolması"
-
-#: standalone/drakconnect:531
-#, c-format
-msgid "Use lock file"
-msgstr "Qıfıl faylını işlət"
-
-#: standalone/drakconnect:533
-#, c-format
-msgid "Wait for dialup tone before dialing"
-msgstr "Zəng vurmadan əvvəl ton səsini gözləyin"
-
-#: standalone/drakconnect:536
-#, c-format
-msgid "Busy wait"
-msgstr "Məşğul gözləməsi"
-
-#: standalone/drakconnect:541
-#, c-format
-msgid "Modem sound"
-msgstr "Modem səsi"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Enable"
-msgstr "Fəallaşdır"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Disable"
-msgstr "Qeyri-fəallaşdır"
-
-#: standalone/drakconnect:593 standalone/harddrake2:50
-#, c-format
-msgid "Media class"
-msgstr "Mediya sinifi"
-
-#: standalone/drakconnect:594
-#, c-format
-msgid "Module name"
-msgstr "Modul adı"
-
-#: standalone/drakconnect:595
-#, c-format
-msgid "Mac Address"
-msgstr "Mac Ünvanı"
-
-#: standalone/drakconnect:596 standalone/harddrake2:28
-#: standalone/harddrake2:120
-#, c-format
-msgid "Bus"
-msgstr "Yol"
-
-#: standalone/drakconnect:597 standalone/harddrake2:34
-#, c-format
-msgid "Location on the bus"
-msgstr "Yol üstündə mövqe"
-
-#: standalone/drakconnect:700 standalone/drakgw:311
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Sisteminizdə şəbəkə kartı tapıla bilməyib.Avadanlığı quran vasitəni işə "
-"salın."
-
-#: standalone/drakconnect:709
-#, c-format
-msgid "Remove a network interface"
-msgstr "Şəbəkə ara üzünü sil"
-
-#: standalone/drakconnect:713
-#, c-format
-msgid "Select the network interface to remove:"
-msgstr "Silinəcək şəbəkə ara üzünü seç:"
-
-#: standalone/drakconnect:745
-#, fuzzy, c-format
-msgid ""
-"An error occurred while deleting the \"%s\" network interface:\n"
-"\n"
-"%s"
-msgstr ""
-"Şəbəkənin yenidən başladılması sırasında xəta oldu: \n"
-"\n"
-"%s"
-
-#: standalone/drakconnect:746
-#, c-format
-msgid ""
-"Congratulations, the \"%s\" network interface has been successfully deleted"
-msgstr "Təbriklər, \"%s\" şəbəkə ara üzü müvəffəqiyyətlə silindi"
-
-#: standalone/drakconnect:761
-#, c-format
-msgid "No IP"
-msgstr "IP yoxdur"
-
-#: standalone/drakconnect:762
-#, c-format
-msgid "No Mask"
-msgstr "Maskasız"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "up"
-msgstr "yuxarı"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "down"
-msgstr "aşağı"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Connected"
-msgstr "Bağlandı"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Not connected"
-msgstr "Bağlı deyil"
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Disconnect..."
-msgstr "Bağlantını Kəs..."
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Connect..."
-msgstr "Bağlan..."
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Deactivate now"
-msgstr "İndi qeyri-fəallaşdır"
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Activate now"
-msgstr "İndi fəallaşdır"
-
-#: standalone/drakconnect:849
-#, c-format
-msgid ""
-"You do not have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Qurulu ara üzünüz yoxdur.\n"
-"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
-
-#: standalone/drakconnect:863
-#, c-format
-msgid "LAN Configuration"
-msgstr "Yerli Şəbəkə Quraşdırılması"
-
-#: standalone/drakconnect:875
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "%s Adapteri: %s"
-
-#: standalone/drakconnect:884
-#, c-format
-msgid "Boot Protocol"
-msgstr "Açılış Protokolu"
-
-#: standalone/drakconnect:885
-#, c-format
-msgid "Started on boot"
-msgstr "Açılışda başladılır"
-
-#: standalone/drakconnect:921
-#, fuzzy, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"BU ara üz hələlik quraşdırılmayıb.\n"
-"Ana pəncərədə quraşdırma sehirbazını işə salın"
-
-#: standalone/drakconnect:975 standalone/net_applet:51
-#, fuzzy, c-format
-msgid ""
-"You do not have any configured Internet connection.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"BU ara üz hələlik quraşdırılmayıb.\n"
-"Ana pəncərədə quraşdırma sehirbazını işə salın"
-
-#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: standalone/drakconnect:976 standalone/drakroam:34 standalone/net_applet:52
-#, fuzzy, c-format
-msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
-msgstr "Şəbəkə ara üzünü sil"
-
-#: standalone/drakconnect:981
-#, c-format
-msgid "Internet connection configuration"
-msgstr "İnternet bağlantısının quraşdırılması"
-
-#: standalone/drakconnect:994
-#, fuzzy, c-format
-msgid "Third DNS server (optional)"
-msgstr "Birinci DNS Vericisi (arzuya görə)"
-
-#: standalone/drakconnect:1016
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "İnternet Bağlantısı Quraşdırılması"
-
-#: standalone/drakconnect:1017
-#, c-format
-msgid "Internet access"
-msgstr "İnternet yetişməsi"
-
-#: standalone/drakconnect:1019 standalone/net_monitor:95
-#, c-format
-msgid "Connection type: "
-msgstr "Bağlantı növü:"
-
-#: standalone/drakconnect:1022
-#, c-format
-msgid "Status:"
-msgstr "Vəziyyət:"
-
-#: standalone/drakconnect:1027
-#, c-format
-msgid "Parameters"
-msgstr "Parametrlər"
-
-#: standalone/drakedm:40
-#, c-format
-msgid "GDM (GNOME Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:41
-#, c-format
-msgid "KDM (KDE Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:42
-#, fuzzy, c-format
-msgid "XDM (X Display Manager)"
-msgstr "Displey idarəçisi seçilir"
-
-#: standalone/drakedm:53
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Displey idarəçisi seçilir"
-
-#: standalone/drakedm:54
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"X11 Displey İdarəçisi sizə, X Pəncərə sistemi fəal olan bir sistemə\n"
-"qrafiki olaraq giriş etmə və birdən çox X iclasını eyni anda işlətmə\n"
-"imkanı verir."
-
-#: standalone/drakedm:72
-#, c-format
-msgid "The change is done, do you want to restart the dm service?"
-msgstr "Dəyişikliklər həyata keçirildi, dm xidməti yenidən başladılsın ?"
-
-#: standalone/drakedm:73
-#, c-format
-msgid ""
-"You are going to close all running programs and lose your current session. "
-"Are you really sure that you want to restart the dm service?"
-msgstr ""
-
-#: standalone/drakfont:182
-#, c-format
-msgid "Search installed fonts"
-msgstr "Qurulu yazı növlərini axtar"
-
-#: standalone/drakfont:184
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "Qurulu olan yazı növlərini seçmə"
-
-#: standalone/drakfont:207
-#, c-format
-msgid "parse all fonts"
-msgstr "bütün yazı növlərini oxu"
-
-#: standalone/drakfont:209
-#, c-format
-msgid "No fonts found"
-msgstr "Heç bir yazı növü tapılmadı"
-
-#: standalone/drakfont:217 standalone/drakfont:259 standalone/drakfont:326
-#: standalone/drakfont:359 standalone/drakfont:367 standalone/drakfont:393
-#: standalone/drakfont:411 standalone/drakfont:425
-#, c-format
-msgid "done"
-msgstr "qurtardı"
-
-#: standalone/drakfont:222
-#, c-format
-msgid "Could not find any font in your mounted partitions"
-msgstr "Bağlanmış bölmələrinizdə heç bir yazı növü tapıla bilmədi"
-
-#: standalone/drakfont:257
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Düzgün yazı növlərini yenidən seç"
-
-#: standalone/drakfont:260
-#, c-format
-msgid "Could not find any font.\n"
-msgstr "Heç bir yazı növü tapılmadı.\n"
-
-#: standalone/drakfont:270
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Qurulanlar siyahısında yazı növlərini axtar"
-
-#: standalone/drakfont:295
-#, c-format
-msgid "%s fonts conversion"
-msgstr "%s yazı növləri dönüşdürülməsi"
-
-#: standalone/drakfont:324
-#, c-format
-msgid "Fonts copy"
-msgstr "Yazı növləri köçürülməsi"
-
-#: standalone/drakfont:327
-#, c-format
-msgid "True Type fonts installation"
-msgstr "True Type yazı növlərinin qurulumu"
-
-#: standalone/drakfont:334
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "ttmkfdir fəaliyyətdədir, xahiş edirik, gözləyin..."
-
-#: standalone/drakfont:335
-#, c-format
-msgid "True Type install done"
-msgstr "True Type qurulumu bitdi"
-
-#: standalone/drakfont:341 standalone/drakfont:356
-#, c-format
-msgid "type1inst building"
-msgstr "type1inst inşa edilir"
-
-#: standalone/drakfont:350
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "Ghostscript əsaslanması"
-
-#: standalone/drakfont:360
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Müvəqqəti Faylları Gizlət"
-
-#: standalone/drakfont:363
-#, c-format
-msgid "Restart XFS"
-msgstr "XFS-ni yenidən başlat"
-
-#: standalone/drakfont:409 standalone/drakfont:419
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Yazı Növlərinin Fayllarını Gizlət"
-
-#: standalone/drakfont:421
-#, c-format
-msgid "xfs restart"
-msgstr "xfs restart"
-
-#: standalone/drakfont:429
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
-"Yazı növlərini normal yolla qura bilərsiniz. Çox nadir də olsa, saxta və "
-"qondarma yazı növləri\n"
-"X Vericinizi dondura bilər. Bu vəziyyətdə, Ctrl+Alt+Backspace düymələrinə "
-"eyni anda basın."
-
-#: standalone/drakfont:473 standalone/drakfont:482
-#, c-format
-msgid "DrakFont"
-msgstr "DrakFont"
-
-#: standalone/drakfont:483
-#, c-format
-msgid "Font List"
-msgstr "Yazı Növü Siyahısı"
-
-#: standalone/drakfont:486
-#, c-format
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: standalone/drakfont:492
-#, c-format
-msgid "About"
-msgstr "Haqqında"
-
-#: standalone/drakfont:494 standalone/drakfont:718
-#, c-format
-msgid "Uninstall"
-msgstr "Sil"
-
-#: standalone/drakfont:495
-#, c-format
-msgid "Import"
-msgstr "İdxal Et"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakfont:513
-#, c-format
-msgid "Copyright (C) 2001-2006 by Mandriva"
-msgstr ""
-
-#: standalone/drakfont:515
-#, fuzzy, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-"This program is free software; you can redistribute it and/or modify\n"
-"it under the terms of the GNU General Public License as published by\n"
-"the Free Software Foundation; either version 2, or (at your option)\n"
-"any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful,\n"
-"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-"GNU General Public License for more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
-
-#: standalone/drakfont:531
-#, c-format
-msgid ""
-"Thanks:\n"
-"\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
-msgstr ""
-
-#: standalone/drakfont:550
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Yazı növlərini dəstəkləyəcək proqramları seçin:"
-
-#: standalone/drakfont:561
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: standalone/drakfont:562
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: standalone/drakfont:563
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
-
-#: standalone/drakfont:564
-#, c-format
-msgid "Generic Printers"
-msgstr "Ümumi Çapçılar"
-
-#: standalone/drakfont:578
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Yazı növü faylını ya da cərgəsini seçin və 'Əlavə Et' düyməsinə basın"
-
-#: standalone/drakfont:579
-#, c-format
-msgid "File Selection"
-msgstr "Fayl Seçkisi"
-
-#: standalone/drakfont:583
-#, c-format
-msgid "Fonts"
-msgstr "Yazı Növləri"
-
-#: standalone/drakfont:646
-#, c-format
-msgid "Import fonts"
-msgstr "Yazı növlərini idxal et"
-
-#: standalone/drakfont:651
-#, c-format
-msgid "Install fonts"
-msgstr "Yazı növlərini qur"
-
-#: standalone/drakfont:681
-#, c-format
-msgid "Are you sure you want to uninstall the following fonts?"
-msgstr ""
-
-#: standalone/drakfont:726
-#, c-format
-msgid "Unselected All"
-msgstr "Seçili olmayan hamısını"
-
-#: standalone/drakfont:729
-#, c-format
-msgid "Selected All"
-msgstr "Hamısı Seçildi"
-
-#: standalone/drakfont:743 standalone/drakfont:762
-#, c-format
-msgid "Importing fonts"
-msgstr "Yazı növləri idxal edilir"
-
-#: standalone/drakfont:747 standalone/drakfont:767
-#, c-format
-msgid "Initial tests"
-msgstr "Başlanğıc sınamaları"
-
-#: standalone/drakfont:748
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Siseminizdəki yazı növlərini köçürdün"
-
-#: standalone/drakfont:749
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Yazı növlərini qur və çevir"
-
-#: standalone/drakfont:750
-#, c-format
-msgid "Post Install"
-msgstr "Qurulum Sonrası"
-
-#: standalone/drakfont:768
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Siseminizdəki yazı növlərini silin"
-
-#: standalone/drakfont:769
-#, c-format
-msgid "Post Uninstall"
-msgstr "Silmə Sonrası"
-
-#: standalone/drakgw:50 standalone/drakvpn:51
-#, c-format
-msgid "Sorry, we support only 2.4 and above kernels."
-msgstr "Bağışlayın, biz ancaq 2.4 və üstü çəyirdəklərini dəstəkləyirik."
-
-#: standalone/drakgw:75
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-
-#: standalone/drakgw:79
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Kompüterınızi İnternet bağlantısını bölüşdürmək üçün quraşdırırsınız.\n"
-"Bu seçimlələ yerli şəbəkənizdəki başqa kompüterlər sizin İnternet "
-"bağlantınızdan faydalana biləcək.\n"
-"\n"
-"İrəli getmədən əvvəl drakconnect işlədərək Şəbəkə/İnternet bağlantınızı "
-"quraşdırdığınızdan əmin olun.\n"
-"\n"
-"Qeyd: Yerli Şəbəkə (LAN) qurmaq üçün uyğun Şəbəkə Adapterinə ehtiyacınız var."
-
-#: standalone/drakgw:95
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"İnternet Bağlantısı Bölüşdürülməsi qurulması artıq bitdi.\n"
-"Və artıq fəallaşdırılmışdır.\n"
-"\n"
-"Nə etmək istəyirsiniz?"
-
-#: standalone/drakgw:99
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"İnternet Bağlantısı Bölüşdürülməsi quraşdırılması onsuzda edilib.\n"
-"Hazırda qeyri-fəaldır.\n"
-"\n"
-"Nə etmək istəyirsiniz?"
-
-#: standalone/drakgw:105
-#, fuzzy, c-format
-msgid "Reconfigure"
-msgstr "yenidən quraşdır"
-
-#: standalone/drakgw:145
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Sistemnizdə bir dənə qurulmuş şəbəkə adapteri var:\n"
-"\n"
-"%s\n"
-"\n"
-"Yerli Şəbəkə adapterinizi qurmaq üzərəyəm?"
-
-#: standalone/drakgw:156
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Xahiş edirik, Yerli Sahə Şəbəkənizə (LAN) bağlanacaq şəbəkə avadanlığını "
-"seçin."
-
-#: standalone/drakgw:177
-#, fuzzy, c-format
-msgid "Local Area Network settings"
-msgstr "Yerli Şəbəkə ünvanı"
-
-#: standalone/drakgw:180
-#, c-format
-msgid "Local IP address"
-msgstr ""
-
-#: standalone/drakgw:182
-#, c-format
-msgid "The internal domain name"
-msgstr "Daxili domen adı"
-
-#: standalone/drakgw:188
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Hazırkı %s quğusunda bir LAN ünvan toqquşması tapıldı!\n"
-
-#: standalone/drakgw:204
-#, fuzzy, c-format
-msgid "Domain Name Server (DNS) configuration"
-msgstr "Terminal Server Quraşdırılması"
-
-#: standalone/drakgw:208
-#, c-format
-msgid "Use this gateway as domain name server"
-msgstr ""
-
-#: standalone/drakgw:209
-#, c-format
-msgid "The DNS Server IP"
-msgstr "DNS Verici IP'si"
-
-#: standalone/drakgw:236
-#, fuzzy, c-format
-msgid ""
-"DHCP Server Configuration.\n"
-"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you do not know the meaning of an option, simply leave it as it is."
-msgstr ""
-"DHCP Verici Quraşdırılması.\n"
-"\n"
-"Burada, DHCP verici quraşdırılması üçün fərqli seçimləri seçə bilərsiniz.\n"
-"Əgər bir seçimin mə'nasını bilmirsinizsə, onu olduğu kimi saxlayın.\n"
-"\n"
-
-#: standalone/drakgw:243
-#, fuzzy, c-format
-msgid "Use automatic configuration (DHCP)"
-msgstr "Avtomatik yenidən quraşdırma"
-
-#: standalone/drakgw:244
-#, c-format
-msgid "The DHCP start range"
-msgstr "The DHCP başlama aralığı"
-
-#: standalone/drakgw:245
-#, c-format
-msgid "The DHCP end range"
-msgstr "DHCP son silsiləsi"
-
-#: standalone/drakgw:246
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Əsas icarə (saniyə olaraq)"
-
-#: standalone/drakgw:247
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Maksimal icarə (saniyə olaraq)"
-
-#: standalone/drakgw:270
-#, c-format
-msgid "Proxy caching server (SQUID)"
-msgstr ""
-
-#: standalone/drakgw:274
-#, c-format
-msgid "Use this gateway as proxy caching server"
-msgstr ""
-
-#: standalone/drakgw:275
-#, c-format
-msgid "Admin mail"
-msgstr ""
-
-#: standalone/drakgw:276
-#, fuzzy, c-format
-msgid "Visible hostname"
-msgstr "Uzaq qovşaq adı"
-
-#: standalone/drakgw:277
-#, fuzzy, c-format
-msgid "Proxy port"
-msgstr "Xassə"
-
-#: standalone/drakgw:278
-#, fuzzy, c-format
-msgid "Cache size (MB)"
-msgstr "Ön yaddaş böyüklüyü"
-
-#: standalone/drakgw:300
-#, fuzzy, c-format
-msgid "Broadcast printer information"
-msgstr "Sabit disk mə'lumatı"
-
-#: standalone/drakgw:317
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "İnternet Bağlantısı Bölüşdürülməsi indi açıldı"
-
-#: standalone/drakgw:323
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "İnternet Bağlantısı Bölüşdürülməsi indi bağlandı"
-
-#: standalone/drakgw:329
-#, fuzzy, c-format
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP) and\n"
-" a Transparent Proxy Cache server (SQUID)."
-msgstr ""
-"Hər şey quruldu.\n"
-"İndi isə İnternet bağlantınızı yerli şəbəkədəkı başqa kompüterlər ilə "
-"bölüşdürə bilərsiniz, bunun üçün isə avtomatik şəbəkə quraşdırılması (DHCP) "
-"işlədilir."
-
-#: standalone/drakgw:363
-#, c-format
-msgid "Disabling servers..."
-msgstr "Vericilər bağlanır..."
-
-#: standalone/drakgw:377
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Atəş divarı quruluşu tapıldı!"
-
-#: standalone/drakgw:378
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-"Diqqət! Var olan Firewall qurğusu tapıldı. Yükləmədən sonra bir az əl "
-"gəzdirə bilərsiniz."
-
-#: standalone/drakgw:383
-#, c-format
-msgid "Configuring..."
-msgstr "Quraşdırılır..."
-
-#: standalone/drakgw:384
-#, c-format
-msgid "Configuring firewall..."
-msgstr ""
-
-#: standalone/drakhelp:17
-#, c-format
-msgid ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"\n"
-"Usage: \n"
-msgstr ""
-" drakhelp 0.1\n"
-"Müəllif Hüququ (C) 2003-2005 Mandriva.\n"
-"Bu sərbəst tə'minatdır və yalnız GNU GPL qaydaları altında paylana bilər.\n"
-"\n"
-"İstifadə qaydası: \n"
-
-#: standalone/drakhelp:22
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - bu yardımı göstər \n"
-
-#: standalone/drakhelp:23
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr ""
-" --id <id_etiketi> - id_label'a istiqamətləndirən html yardım "
-"səhifəsini yüklə\n"
-
-#: standalone/drakhelp:24
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-" --doc <körpü> - başqa bir veb səhifəsinə körpü (WM xoş gəldin ara üzü "
-"üçün)\n"
-
-#: standalone/drakhelp:51
-#, fuzzy, c-format
-msgid "Mandriva Linux Help Center"
-msgstr "Mandriva Linux İdarə Mərkəzi"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "No Help entry for %s\n"
-msgstr ""
-
-#: standalone/drakhosts:98
-#, c-format
-msgid "Please add an host to be able to modify it."
-msgstr ""
-
-#: standalone/drakhosts:108
-#, fuzzy, c-format
-msgid "Please modify information"
-msgstr "Ətraflı mə'lumatı"
-
-#: standalone/drakhosts:109
-#, fuzzy, c-format
-msgid "Please delete information"
-msgstr "Ətraflı mə'lumatı"
-
-#: standalone/drakhosts:110
-#, fuzzy, c-format
-msgid "Please add information"
-msgstr "Ətraflı mə'lumatı"
-
-#: standalone/drakhosts:115
-#, c-format
-msgid "IP address:"
-msgstr ""
-
-#: standalone/drakhosts:116
-#, c-format
-msgid "Host name:"
-msgstr ""
-
-#: standalone/drakhosts:117
-#, c-format
-msgid "Host Aliases:"
-msgstr ""
-
-#: standalone/drakhosts:123
-#, c-format
-msgid "Please enter a valid IP address."
-msgstr ""
-
-#: standalone/drakhosts:129
-#, c-format
-msgid "Same IP is already in %s file."
-msgstr ""
-
-#: standalone/drakhosts:197
-#, c-format
-msgid "Host Aliases"
-msgstr ""
-
-#: standalone/drakhosts:237
-#, c-format
-msgid "DrakHOSTS manage hosts definitions"
-msgstr ""
-
-#: standalone/drakhosts:246
-#, c-format
-msgid "Failed to add host."
-msgstr ""
-
-#: standalone/drakhosts:253
-#, c-format
-msgid "Failed to Modify host."
-msgstr ""
-
-#: standalone/drakhosts:260
-#, c-format
-msgid "Failed to remove host."
-msgstr ""
-
-#: standalone/drakids:26
-#, fuzzy, c-format
-msgid "Allowed addresses"
-msgstr "Bütün istifadəçilərə icazə ver"
-
-#: standalone/drakids:57
-#, c-format
-msgid "Log"
-msgstr "Qeyd"
-
-#: standalone/drakids:61
-#, fuzzy, c-format
-msgid "Clear logs"
-msgstr "Hamısını təmizlə"
-
-#: standalone/drakids:62 standalone/drakids:67 standalone/net_applet:470
-#, c-format
-msgid "Blacklist"
-msgstr ""
-
-#: standalone/drakids:63 standalone/drakids:80 standalone/net_applet:475
-#, c-format
-msgid "Whitelist"
-msgstr ""
-
-#: standalone/drakids:71
-#, fuzzy, c-format
-msgid "Remove from blacklist"
-msgstr "LVMdən ayır"
-
-#: standalone/drakids:72
-#, c-format
-msgid "Move to whitelist"
-msgstr ""
-
-#: standalone/drakids:84
-#, fuzzy, c-format
-msgid "Remove from whitelist"
-msgstr "LVMdən ayır"
-
-#: standalone/drakids:136 standalone/drakids:145 standalone/drakids:170
-#: standalone/drakids:179 standalone/drakids:189 standalone/drakids:265
-#: standalone/drakroam:182 standalone/net_applet:202 standalone/net_applet:385
-#, fuzzy, c-format
-msgid "Unable to contact daemon"
-msgstr "%s əksi ilə rabitə qurula bilmir"
-
-#: standalone/drakids:202
-#, c-format
-msgid "Date"
-msgstr "Tarix"
-
-#: standalone/drakids:203
-#, fuzzy, c-format
-msgid "Attacker"
-msgstr "Təfsilatsız"
-
-#: standalone/drakids:204
-#, fuzzy, c-format
-msgid "Attack type"
-msgstr "Çatma şəkli: %s\n"
-
-#: standalone/drakids:205
-#, c-format
-msgid "Service"
-msgstr "Xidmət"
-
-#: standalone/drakids:206 standalone/net_applet:72
-#, c-format
-msgid "Network interface"
-msgstr "Şəbəkə ara üzü"
-
-#: standalone/draknfs:41
-#, c-format
-msgid "map root user as anonymous"
-msgstr ""
-
-#: standalone/draknfs:42
-#, c-format
-msgid "map all users to anonymous user"
-msgstr ""
-
-#: standalone/draknfs:43
-#, c-format
-msgid "No user UID mapping"
-msgstr ""
-
-#: standalone/draknfs:44
-#, c-format
-msgid "allow real remote root access"
-msgstr ""
-
-#: standalone/draknfs:83
-#, c-format
-msgid "NFS server"
-msgstr "NFS vericisi"
-
-#: standalone/draknfs:83
-#, c-format
-msgid "Restarting/Reloading NFS server..."
-msgstr ""
-
-#: standalone/draknfs:84
-#, c-format
-msgid "Error Restarting/Reloading NFS server"
-msgstr ""
-
-#: standalone/draknfs:100 standalone/draksambashare:203
-#, c-format
-msgid "Directory Selection"
-msgstr ""
-
-#: standalone/draknfs:105 standalone/draksambashare:208
-#, c-format
-msgid "Should be a directory."
-msgstr ""
-
-#: standalone/draknfs:136
-#, c-format
-msgid ""
-"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
-"ways:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">single host:</span> a host either by an "
-"abbreviated name recognized be the resolver, fully qualified domain name, or "
-"an IP address\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">netgroups:</span> NIS netgroups may be given "
-"as @group.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">wildcards:</span> machine names may contain "
-"the wildcard characters * and ?. For instance: *.cs.foo.edu matches all "
-"hosts in the domain cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP networks:</span> you can also export "
-"directories to all hosts on an IP (sub-)network simultaneously. for example, "
-"either `/255.255.252.0' or `/22' appended to the network base address "
-"result.\n"
-msgstr ""
-
-#: standalone/draknfs:151
-#, c-format
-msgid ""
-"<span weight=\"bold\">User ID options</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map root user as anonymous:</span> map "
-"requests from uid/gid 0 to the anonymous uid/gid (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">allow real remote root access:</span> turn "
-"off root squashing. This option is mainly useful for diskless clients "
-"(no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map all users to anonymous user:</span> map "
-"all uids and gids to the anonymous user (all_squash). Useful for NFS-"
-"exported public FTP directories, news spool directories, etc. The opposite "
-"option is no user UID mapping (no_all_squash), which is the default "
-"setting.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid and anongid:</span> explicitly set "
-"the uid and gid of the anonymous account.\n"
-msgstr ""
-
-#: standalone/draknfs:167
-#, c-format
-msgid "Synchronous access:"
-msgstr ""
-
-#: standalone/draknfs:168
-#, c-format
-msgid "Secured Connection:"
-msgstr ""
-
-#: standalone/draknfs:169
-#, c-format
-msgid "Read-Only share:"
-msgstr ""
-
-#: standalone/draknfs:171
-#, c-format
-msgid "<span weight=\"bold\">Advanced Options</span>"
-msgstr ""
-
-#: standalone/draknfs:172
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> this option requires that "
-"requests originate on an internet port less than IPPORT_RESERVED (1024). "
-"This option is on by default."
-msgstr ""
-
-#: standalone/draknfs:173
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> allow either only read or both "
-"read and write requests on this NFS volume. The default is to disallow any "
-"request which changes the filesystem. This can also be made explicit by "
-"using this option."
-msgstr ""
-
-#: standalone/draknfs:174
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> disallows the NFS server to "
-"violate the NFS protocol and to reply to requests before any changes made by "
-"these requests have been committed to stable storage (e.g. disc drive)."
-msgstr ""
-
-#: standalone/draknfs:306
-#, c-format
-msgid "Please add an NFS share to be able to modify it."
-msgstr ""
-
-#: standalone/draknfs:378
-#, fuzzy, c-format
-msgid "Advanced Options Help"
-msgstr "Ətraflı Quraşdırma"
-
-#: standalone/draknfs:389
-#, c-format
-msgid "NFS directory"
-msgstr ""
-
-#: standalone/draknfs:391 standalone/draksambashare:592
-#: standalone/draksambashare:771
-#, c-format
-msgid "Directory:"
-msgstr "Qovluq:"
-
-#: standalone/draknfs:394
-#, c-format
-msgid "Host access"
-msgstr ""
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Access:"
-msgstr "İcazə:"
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Hosts Access"
-msgstr ""
-
-#: standalone/draknfs:399
-#, c-format
-msgid "User ID Mapping"
-msgstr ""
-
-#: standalone/draknfs:401
-#, c-format
-msgid "User ID:"
-msgstr ""
-
-#: standalone/draknfs:401
-#, c-format
-msgid "Help User ID"
-msgstr ""
-
-#: standalone/draknfs:402
-#, c-format
-msgid "Anonymous user ID:"
-msgstr ""
-
-#: standalone/draknfs:403
-#, c-format
-msgid "Anonymous Group ID:"
-msgstr ""
-
-#: standalone/draknfs:444
-#, c-format
-msgid "Can't create this directory."
-msgstr ""
-
-#: standalone/draknfs:447
-#, c-format
-msgid "You must specify hosts access."
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Share Directory"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Hosts Wildcard"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "General Options"
-msgstr "Ümumi Qurğular"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Custom Options"
-msgstr ""
-
-#: standalone/draknfs:539 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Please enter a directory to share."
-msgstr ""
-
-#: standalone/draknfs:546
-#, c-format
-msgid "Please use the modify button to set right access."
-msgstr ""
-
-#: standalone/draknfs:600
-#, c-format
-msgid "DrakNFS manage NFS shares"
-msgstr ""
-
-#: standalone/draknfs:609
-#, c-format
-msgid "Failed to add NFS share."
-msgstr ""
-
-#: standalone/draknfs:616
-#, c-format
-msgid "Failed to Modify NFS share."
-msgstr ""
-
-#: standalone/draknfs:623
-#, c-format
-msgid "Failed to remove an NFS share."
-msgstr ""
-
-#: standalone/drakperm:21
-#, c-format
-msgid "System settings"
-msgstr "Sistem qurğuları"
-
-#: standalone/drakperm:22
-#, c-format
-msgid "Custom settings"
-msgstr "Xüsusi qurğular"
-
-#: standalone/drakperm:23
-#, c-format
-msgid "Custom & system settings"
-msgstr "Xüsusi və sistem qurğuları"
-
-#: standalone/drakperm:43
-#, c-format
-msgid "Editable"
-msgstr "Dəyişdirilə bilən"
-
-#: standalone/drakperm:48 standalone/drakperm:323
-#: standalone/draksambashare:101
-#, c-format
-msgid "Path"
-msgstr "Cığır"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "User"
-msgstr "İstifadəçi"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "Group"
-msgstr "Qrup"
-
-#: standalone/drakperm:48 standalone/drakperm:335
-#, c-format
-msgid "Permissions"
-msgstr "Səlahiyyətlər"
-
-#: standalone/drakperm:57
-#, c-format
-msgid "Add a new rule"
-msgstr ""
-
-#: standalone/drakperm:64 standalone/drakperm:99 standalone/drakperm:124
-#, c-format
-msgid "Edit current rule"
-msgstr "Hazırkı qaydanı düzəlt"
-
-#: standalone/drakperm:106
-#, fuzzy, c-format
-msgid ""
-"Here you can see files to use in order to fix permissions, owners, and "
-"groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
-msgstr ""
-"Drakperm, msec ilə səlahiyyətləri, qrupları və yiyələri düzəltmək üçün, "
-"lazım olan faylları görmək üçün işlədilir.\n"
-"Əsas qaydaların üstündən qeyd edərək öz qaydalarınızı yarada bilərsiniz."
-
-#: standalone/drakperm:109
-#, fuzzy, c-format
-msgid ""
-"The current security level is %s.\n"
-"Select permissions to see/edit"
-msgstr ""
-"Hazırkı təhlükəsizlik səviyyəsi: %s\n"
-"Görmək/dəyişdirmək istədiyiniz səlahiyyətləri seçin"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Up"
-msgstr "Yuxarı"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Seçili qaydanı bir səviyyə üstə daşı"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Down"
-msgstr "Aşağı"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Seçili qaydanı bir səviyyə aşağı daşı"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a rule"
-msgstr "Qayda əlavə et"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Sonuna yeni qayda əlavə et"
-
-#: standalone/drakperm:123
-#, c-format
-msgid "Delete selected rule"
-msgstr "Seçili qaydanı sil"
-
-#: standalone/drakperm:242
-#, c-format
-msgid "browse"
-msgstr "gəz"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "user"
-msgstr "klanc"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "group"
-msgstr "qrup"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "other"
-msgstr "digər"
-
-#: standalone/drakperm:252
-#, c-format
-msgid "Read"
-msgstr "Oxu"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:255
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Faylı oxumaq üçün \"%s\"i fəallaşdır"
-
-#: standalone/drakperm:259
-#, c-format
-msgid "Write"
-msgstr "Yaz"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:262
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Faylı yazmaq üçün \"%s\"ı fəallaşdır"
-
-#: standalone/drakperm:266
-#, c-format
-msgid "Execute"
-msgstr "İcra Et"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:269
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Faylı icra etmək üçün \"%s\"ı fəallaşdır"
-
-#: standalone/drakperm:272
-#, c-format
-msgid "Sticky-bit"
-msgstr "Sticky-bit"
-
-#: standalone/drakperm:272
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Cərgə üçün istifadə edilən:\n"
-" yalnız cərgə yiyəsi ya da cərgə içindəki fayl onu silə bilər"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Use owner id for execution"
-msgstr "İcra üçün yiyə id'sini işlət"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Use group id for execution"
-msgstr "İcra üçün qrup id'sini işlət"
-
-#: standalone/drakperm:292 standalone/drakxtv:89
-#, c-format
-msgid "User:"
-msgstr "İstifadəçi :"
-
-#: standalone/drakperm:294
-#, c-format
-msgid "Group:"
-msgstr "Qrup :"
-
-#: standalone/drakperm:298
-#, c-format
-msgid "Current user"
-msgstr "Hazırkı istifadəçi"
-
-#: standalone/drakperm:299
-#, c-format
-msgid "When checked, owner and group will not be changed"
-msgstr "Seçilidirsə, yiyə və qrup dayişdirilməyəcək"
-
-#: standalone/drakperm:309
-#, c-format
-msgid "Path selection"
-msgstr "Cığır seçkisi"
-
-#: standalone/drakperm:329
-#, c-format
-msgid "Property"
-msgstr "Xassə"
-
-#: standalone/drakperm:380
-#, c-format
-msgid ""
-"The first character of the path must be a slash (\"/\"):\n"
-"\"%s\""
-msgstr ""
-
-#: standalone/drakperm:390
-#, c-format
-msgid "Both the username and the group must valid!"
-msgstr ""
-
-#: standalone/drakperm:391
-#, c-format
-msgid "User: %s"
-msgstr ""
-
-#: standalone/drakperm:392
-#, c-format
-msgid "Group: %s"
-msgstr ""
-
-#: standalone/drakroam:33
-#, c-format
-msgid ""
-"You do not have any wireless interface.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakroam:48
-#, c-format
-msgid "SSID"
-msgstr ""
-
-#: standalone/drakroam:49
-#, c-format
-msgid "Signal strength"
-msgstr ""
-
-#: standalone/drakroam:51
-#, c-format
-msgid "Encryption"
-msgstr "Enkripsiya"
-
-#: standalone/drakroam:112
-#, c-format
-msgid "Please enter settings for wireless network \"%s\""
-msgstr ""
-
-#: standalone/drakroam:123
-#, c-format
-msgid "DNS server"
-msgstr "DNS vericisi"
-
-#: standalone/drakroam:228
-#, c-format
-msgid "Connect"
-msgstr "Bağlan"
-
-#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/drakroam:229 standalone/printerdrake:251
-#, c-format
-msgid "Refresh"
-msgstr "Yenilə"
-
-#: standalone/draksambashare:68
-#, fuzzy, c-format
-msgid "Share directory"
-msgstr "Belə cərgə yoxdur!"
-
-#: standalone/draksambashare:69 standalone/draksambashare:102
-#, c-format
-msgid "Comment"
-msgstr "Şərh"
-
-#: standalone/draksambashare:70 standalone/draksambashare:103
-#, fuzzy, c-format
-msgid "Browseable"
-msgstr "Gəz"
-
-#: standalone/draksambashare:71
-#, c-format
-msgid "Public"
-msgstr "İctimai"
-
-#: standalone/draksambashare:72 standalone/draksambashare:108
-#, fuzzy, c-format
-msgid "Writable"
-msgstr "Yaz"
-
-#: standalone/draksambashare:73 standalone/draksambashare:149
-#, fuzzy, c-format
-msgid "Create mask"
-msgstr "Yarat"
-
-#: standalone/draksambashare:74 standalone/draksambashare:150
-#, fuzzy, c-format
-msgid "Directory mask"
-msgstr "Bütün ehtiyat nüsxələri geri yüklə"
-
-#: standalone/draksambashare:75
-#, fuzzy, c-format
-msgid "Read list"
-msgstr "Oxu"
-
-#: standalone/draksambashare:76 standalone/draksambashare:109
-#: standalone/draksambashare:606
-#, fuzzy, c-format
-msgid "Write list"
-msgstr "Yaz"
-
-#: standalone/draksambashare:77 standalone/draksambashare:141
-#, fuzzy, c-format
-msgid "Admin users"
-msgstr "İstifadəçini əlavə et"
-
-#: standalone/draksambashare:78 standalone/draksambashare:142
-#, fuzzy, c-format
-msgid "Valid users"
-msgstr "İstifadəçini əlavə et"
-
-#: standalone/draksambashare:79
-#, fuzzy, c-format
-msgid "Inherit Permissions"
-msgstr "Səlahiyyətlər"
-
-#: standalone/draksambashare:80 standalone/draksambashare:143
-#, fuzzy, c-format
-msgid "Hide dot files"
-msgstr "Faylları gizlət"
-
-#: standalone/draksambashare:82 standalone/draksambashare:148
-#, fuzzy, c-format
-msgid "Preserve case"
-msgstr "Qurğular"
-
-#: standalone/draksambashare:83
-#, fuzzy, c-format
-msgid "Force create mode"
-msgstr "Çapçınızın modeli"
-
-#: standalone/draksambashare:84
-#, fuzzy, c-format
-msgid "Force group"
-msgstr "PFS qrupu"
-
-#: standalone/draksambashare:85 standalone/draksambashare:147
-#, fuzzy, c-format
-msgid "Default case"
-msgstr "Əsas istifadəçi"
-
-#: standalone/draksambashare:100
-#, c-format
-msgid "Printer name"
-msgstr ""
-
-#: standalone/draksambashare:104 standalone/draksambashare:598
-#, c-format
-msgid "Printable"
-msgstr ""
-
-#: standalone/draksambashare:105
-#, c-format
-msgid "Print Command"
-msgstr ""
-
-#: standalone/draksambashare:106
-#, c-format
-msgid "LPQ command"
-msgstr ""
-
-#: standalone/draksambashare:107
-#, c-format
-msgid "Guest ok"
-msgstr ""
-
-#: standalone/draksambashare:110 standalone/draksambashare:151
-#: standalone/draksambashare:607
-#, fuzzy, c-format
-msgid "Inherit permissions"
-msgstr "Səlahiyyətlər"
-
-#: standalone/draksambashare:112
-#, c-format
-msgid "Create mode"
-msgstr ""
-
-#: standalone/draksambashare:113
-#, c-format
-msgid "Use client driver"
-msgstr ""
-
-#: standalone/draksambashare:139
-#, fuzzy, c-format
-msgid "Read List"
-msgstr "Siyahını Sil"
-
-#: standalone/draksambashare:140
-#, fuzzy, c-format
-msgid "Write List"
-msgstr "Yaz"
-
-#: standalone/draksambashare:145
-#, fuzzy, c-format
-msgid "Force Group"
-msgstr "Qrup"
-
-#: standalone/draksambashare:146
-#, c-format
-msgid "Force create group"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid "About Draksambashare"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid ""
-"Mandriva Linux \n"
-"Release: %s\n"
-"Author: Antoine Ginies\n"
-"\n"
-"This is a simple tool to easily manage Samba configuration."
-msgstr ""
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Samba server"
-msgstr "Samba vericisi"
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Restarting/Reloading Samba server..."
-msgstr ""
-
-#: standalone/draksambashare:187
-#, c-format
-msgid "Error Restarting/Reloading Samba server"
-msgstr ""
-
-#: standalone/draksambashare:372
-#, fuzzy, c-format
-msgid "Add a Samba share"
-msgstr "Samba vericisi"
-
-#: standalone/draksambashare:375
-#, c-format
-msgid "Goal of this wizard is to easily create a new Samba share."
-msgstr ""
-
-#: standalone/draksambashare:377
-#, fuzzy, c-format
-msgid "Name of the share:"
-msgstr "Çapçı adı"
-
-#: standalone/draksambashare:378 standalone/draksambashare:591
-#: standalone/draksambashare:772
-#, c-format
-msgid "Comment:"
-msgstr "Şərh:"
-
-#: standalone/draksambashare:379
-#, c-format
-msgid "Path:"
-msgstr "Cığır:"
-
-#: standalone/draksambashare:384
-#, c-format
-msgid ""
-"Share with the same name already exist or share name empty, please choose "
-"another name."
-msgstr ""
-
-#: standalone/draksambashare:388 standalone/draksambashare:394
-#, c-format
-msgid "Can't create the directory, please enter a correct path."
-msgstr ""
-
-#: standalone/draksambashare:391 standalone/draksambashare:627
-#: standalone/draksambashare:794
-#, fuzzy, c-format
-msgid "Please enter a Comment for this share."
-msgstr "Xahiş edirik, icmal mətnini daxil edin."
-
-#: standalone/draksambashare:422
-#, c-format
-msgid ""
-"The wizard successfully added the Samba share. Now just double click on it "
-"in treeview to modify it"
-msgstr ""
-
-#: standalone/draksambashare:437
-#, c-format
-msgid "pdf-gen - a PDF generator"
-msgstr ""
-
-#: standalone/draksambashare:438
-#, c-format
-msgid "printers - all printers available"
-msgstr ""
-
-#: standalone/draksambashare:442
-#, c-format
-msgid "Add Special Printer share"
-msgstr ""
-
-#: standalone/draksambashare:445
-#, c-format
-msgid ""
-"Goal of this wizard is to easily create a new special printer Samba share."
-msgstr ""
-
-#: standalone/draksambashare:453
-#, c-format
-msgid "A PDF generator already exists."
-msgstr ""
-
-#: standalone/draksambashare:477
-#, c-format
-msgid "Printers and print$ already exist."
-msgstr ""
-
-#: standalone/draksambashare:528
-#, c-format
-msgid "The wizard successfully added the printer Samba share"
-msgstr ""
-
-#: standalone/draksambashare:551
-#, c-format
-msgid "Please add or select a Samba printer share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:587
-#, c-format
-msgid "Printer share"
-msgstr ""
-
-#: standalone/draksambashare:590
-#, c-format
-msgid "Printer name:"
-msgstr "Çap Edici Adı:"
-
-#: standalone/draksambashare:596 standalone/draksambashare:777
-#, fuzzy, c-format
-msgid "Writable:"
-msgstr "Yaz"
-
-#: standalone/draksambashare:597 standalone/draksambashare:778
-#, fuzzy, c-format
-msgid "Browseable:"
-msgstr "Gəz"
-
-#: standalone/draksambashare:602
-#, c-format
-msgid "Advanced options"
-msgstr "Ətraflı seçimlər"
-
-#: standalone/draksambashare:604
-#, c-format
-msgid "Printer access"
-msgstr ""
-
-#: standalone/draksambashare:608
-#, c-format
-msgid "Guest ok:"
-msgstr ""
-
-#: standalone/draksambashare:609
-#, c-format
-msgid "Create mode:"
-msgstr ""
-
-#: standalone/draksambashare:613
-#, c-format
-msgid "Printer command"
-msgstr ""
-
-#: standalone/draksambashare:615
-#, c-format
-msgid "Print command:"
-msgstr ""
-
-#: standalone/draksambashare:616
-#, c-format
-msgid "LPQ command:"
-msgstr ""
-
-#: standalone/draksambashare:617
-#, c-format
-msgid "Printing:"
-msgstr ""
-
-#: standalone/draksambashare:633
-#, c-format
-msgid "create mode should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:695
-#, c-format
-msgid "DrakSamba entry"
-msgstr ""
-
-#: standalone/draksambashare:700
-#, c-format
-msgid "Please add or select a Samba share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:723
-#, fuzzy, c-format
-msgid "Samba user access"
-msgstr "Samba vericisi"
-
-#: standalone/draksambashare:731
-#, fuzzy, c-format
-msgid "Mask options"
-msgstr "Bəsit seçimlər:"
-
-#: standalone/draksambashare:745
-#, fuzzy, c-format
-msgid "Display options"
-msgstr "Seçimləri müəyyən et"
-
-#: standalone/draksambashare:767
-#, fuzzy, c-format
-msgid "Samba share directory"
-msgstr "Belə cərgə yoxdur!"
-
-#: standalone/draksambashare:770
-#, fuzzy, c-format
-msgid "Share name:"
-msgstr "Paylaşdırma adı"
-
-#: standalone/draksambashare:776
-#, c-format
-msgid "Public:"
-msgstr ""
-
-#: standalone/draksambashare:800
-#, c-format
-msgid ""
-"Create mask, create mode and directory mask should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:807
-#, c-format
-msgid "Please create this Samba user: %s"
-msgstr ""
-
-#: standalone/draksambashare:930
-#, c-format
-msgid "User information"
-msgstr ""
-
-#: standalone/draksambashare:932
-#, c-format
-msgid "User name:"
-msgstr "İstifadəçi adı:"
-
-#: standalone/draksambashare:933
-#, c-format
-msgid "Password:"
-msgstr "Şifrə:"
-
-#: standalone/draksambashare:1133
-#, c-format
-msgid "Failed to add Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1142
-#, c-format
-msgid "Failed to Modify Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1151
-#, c-format
-msgid "Failed to remove a Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1158
-#, c-format
-msgid "File share"
-msgstr ""
-
-#: standalone/draksambashare:1166
-#, c-format
-msgid "Add printers"
-msgstr ""
-
-#: standalone/draksambashare:1172
-#, c-format
-msgid "Failed to add printers."
-msgstr ""
-
-#: standalone/draksambashare:1181
-#, c-format
-msgid "Failed to Modify."
-msgstr ""
-
-#: standalone/draksambashare:1190
-#, c-format
-msgid "Failed to remove."
-msgstr ""
-
-#: standalone/draksambashare:1197
-#, c-format
-msgid "Printers"
-msgstr "Çapçılar"
-
-#: standalone/draksambashare:1205
-#, c-format
-msgid "Change password"
-msgstr ""
-
-#: standalone/draksambashare:1210
-#, c-format
-msgid "Failed to change user password."
-msgstr ""
-
-#: standalone/draksambashare:1218
-#, c-format
-msgid "Failed to add user."
-msgstr ""
-
-#: standalone/draksambashare:1221
-#, c-format
-msgid "Delete user"
-msgstr ""
-
-#: standalone/draksambashare:1230
-#, c-format
-msgid "Failed to delete user."
-msgstr ""
-
-#: standalone/draksambashare:1242
-#, c-format
-msgid "Samba Users"
-msgstr ""
-
-#: standalone/draksambashare:1251
-#, c-format
-msgid "DrakSamba manage Samba shares"
-msgstr ""
-
-#: standalone/draksec:49
-#, c-format
-msgid "ALL"
-msgstr "HAMISI"
-
-#: standalone/draksec:50
-#, c-format
-msgid "LOCAL"
-msgstr "YERLİ"
-
-#: standalone/draksec:51
-#, c-format
-msgid "NONE"
-msgstr "YOXDUR"
-
-#: standalone/draksec:53 standalone/net_applet:480
-#, c-format
-msgid "Ignore"
-msgstr "Nəzərə alma"
-
-#. -PO: Do not alter the <span ..> and </span> tags.
-#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
-#: standalone/draksec:103
-#, fuzzy, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Administrator</span>' is the one who "
-"will receive security alerts if the\n"
-"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a "
-"username or an email.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Level</span>' menu allows you to select "
-"one of the six preconfigured security levels\n"
-"provided with msec. These levels range from '<span weight=\"bold\">poor</"
-"span>' security and ease of use, to\n"
-"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive "
-"server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
-"very\n"
-"easy to use security level. It should only be used for machines not "
-"connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
-"security\n"
-"recommended for a computer that will be used to connect to the Internet as "
-"a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
-"enough\n"
-"to use the system as a server which can accept connections from many "
-"clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower "
-"level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-"Burada siz, sisteminizin təhlükəsizlik səviyyəsini və idarəsini quraşdıra "
-"bilərsiniz.\n"
-"\n"
-"\n"
-"'Təhlükəsizlik Xəbərdarlıqları' seçimi seçilidirsə Təhlükəsizlik İdarəçisi "
-"təhlükəsizlik\n"
-"xəbərdarlıqlarını alacaq. Təhlükəsizlik İdarəçisi bir istifadəçi adı ya da "
-"ePoçt ola bilər.\n"
-"\n"
-"\n"
-"Təhlükəsizlik Səviyyəsi menyusu əvvəlcədən quraşdırılmış 6 təhlükəsizlik "
-"səviyyəsi \n"
-"arasından birisini seçmə imkanı verir. \n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Zəif</span>: Tamamilə e'tibarsız yalnız\n"
-"işlədilməsi çox asan təhlükəsizlik səviyyəsidir. Bu səviyyə yalnız heç bir\n"
-"şəbəkəyə ya da internetə bağlı olmayan və hərkəs tərəfində yetişilə "
-"bilməyən\n"
-"kompüterlər üçün seçilə bilər.\n"
-"\n"
-"<span foreground=\"royalblue3\">Standart</span>: Bu internetə alıcı \n"
-"olaraq bağlanacaq bir kompüter üçün standart təhlükəsizlik səviyyəsidir.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Yüksək</span>: Bə'zi məhdudiyyətlər\n"
-"olacaq və hər gecə daha çox avtomatik yoxlama işə salınacaq.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Daha Yüksək</span>: Birdən çox\n"
-"alıcıdan bağlantıları qəbul edən bir verici üçün bu təhlükəsizlik səviyyəsi\n"
-"qəbul edilə bilər. Əgər sisteminiz internet üstündə yalnız bir alıcıdırsa\n"
-" daha alçaq səviyyə seçin.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: Bu, bir əvvəlki \n"
-"səviyyəyə oxşayır yalnız sistem tamamilə bağlıdır və təhlükəsizlik\n"
-"xassələri maksimal vəziyyətdədir."
-
-#: standalone/draksec:156 standalone/harddrake2:207
-#, c-format
-msgid ""
-"Description of the fields:\n"
-"\n"
-msgstr ""
-"Sahələrin izahatı:\n"
-"\n"
-
-#: standalone/draksec:170
-#, c-format
-msgid "(default value: %s)"
-msgstr "(əsas qiymət: %s)"
-
-#: standalone/draksec:212
-#, c-format
-msgid "Security Level:"
-msgstr "Təhlükəsizlik Səviyyəsi:"
-
-#: standalone/draksec:219
-#, c-format
-msgid "Security Administrator:"
-msgstr "Təhlükəsizlik İdarəçisi:"
-
-#: standalone/draksec:221
-#, c-format
-msgid "Basic options"
-msgstr "Bəsit seçimlər:"
-
-#: standalone/draksec:235
-#, c-format
-msgid "Network Options"
-msgstr "Şəbəkə Seçimləri"
-
-#: standalone/draksec:235
-#, c-format
-msgid "System Options"
-msgstr "Sistem Seçimləri"
-
-#: standalone/draksec:270
-#, c-format
-msgid "Periodic Checks"
-msgstr "Peryodik Yoxlamalar"
-
-#: standalone/draksec:300
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Xahiş edirik, gözləyin, təhlükəsizlik səviyyəsi seçilir..."
-
-#: standalone/draksec:306
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Xahiş edirik, gözləyin təhlükəsizlik seçimləri tə'yin edilir..."
-
-#: standalone/draksound:47
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Səs Kartı Təsbit Edilmədi!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/draksound:50
-#, c-format
-msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"Sisteminizdə səs kartı aşkar edilməyib. Xahiş edirik, Linuks dəstəkli səs "
-"kartının düzgün taxıldığını yoxlayın.\n"
-"\n"
-"\n"
-"Avadanlıq mə'lumat bazamızı bu ünvanda ziyarət edə bilərisiniz:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/draksound:57
-#, fuzzy, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or "
-"the sndconfig program. Just type \"alsaconf\" or \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Qeyd: əgər İSA PnP səs kartınız varsa, sndconfig proqramınıişlətməlisiniz. "
-"Sadəcə olaraq konsolda \"sndconfig\" əmrini icra edin."
-
-#: standalone/draksplash:30
-#, c-format
-msgid "x coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:31
-#, c-format
-msgid "y coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:32
-#, c-format
-msgid "text box width"
-msgstr ""
-
-#: standalone/draksplash:33
-#, c-format
-msgid "text box height"
-msgstr "mətn qutusunun hündürlüyü"
-
-#: standalone/draksplash:34
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"irəliləmə çubuğunun onun sol üst\n"
-"küncünə görə x mövqeyi"
-
-#: standalone/draksplash:35
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-"irəliləmə çubuğunun onun sol üst\n"
-"küncünə görə y mövqeyi"
-
-#: standalone/draksplash:36
-#, c-format
-msgid "the width of the progress bar"
-msgstr "İrəliləmə çubuğunun eni"
-
-#: standalone/draksplash:37
-#, c-format
-msgid "the height of the progress bar"
-msgstr "İrəliləmə çubuğunun hündürlüyü"
-
-#: standalone/draksplash:38
-#, c-format
-msgid "x coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:39
-#, c-format
-msgid "y coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:40
-#, c-format
-msgid "text box transparency"
-msgstr ""
-
-#: standalone/draksplash:41
-#, c-format
-msgid "progress box transparency"
-msgstr ""
-
-#: standalone/draksplash:42
-#, c-format
-msgid "text size"
-msgstr ""
-
-#: standalone/draksplash:59
-#, c-format
-msgid "Choose progress bar color 1"
-msgstr ""
-
-#: standalone/draksplash:60
-#, c-format
-msgid "Choose progress bar color 2"
-msgstr ""
-
-#: standalone/draksplash:61
-#, c-format
-msgid "Choose progress bar background"
-msgstr ""
-
-#: standalone/draksplash:62
-#, c-format
-msgid "Gradient type"
-msgstr ""
-
-#: standalone/draksplash:63
-#, c-format
-msgid "Choose text color"
-msgstr ""
-
-#: standalone/draksplash:65 standalone/draksplash:72
-#, c-format
-msgid "Choose picture"
-msgstr ""
-
-#: standalone/draksplash:66
-#, c-format
-msgid "Silent bootsplash"
-msgstr ""
-
-#: standalone/draksplash:69
-#, c-format
-msgid "Choose text zone color"
-msgstr ""
-
-#: standalone/draksplash:70
-#, c-format
-msgid "Text color"
-msgstr "Mətn rəngi"
-
-#: standalone/draksplash:71
-#, c-format
-msgid "Background color"
-msgstr "Arxa plan rəngi"
-
-#: standalone/draksplash:73
-#, c-format
-msgid "Verbose bootsplash"
-msgstr ""
-
-#: standalone/draksplash:75
-#, c-format
-msgid "Display logo on Console"
-msgstr "Konsolda loqonu göstər"
-
-#: standalone/draksplash:78
-#, c-format
-msgid "Console bootsplash"
-msgstr ""
-
-#: standalone/draksplash:84
-#, c-format
-msgid "Theme name"
-msgstr "Örtük adı"
-
-#: standalone/draksplash:87
-#, c-format
-msgid "final resolution"
-msgstr "son həlledilirlik"
-
-#: standalone/draksplash:92
-#, c-format
-msgid "Save theme"
-msgstr "Örtüyü qeyd et"
-
-#: standalone/draksplash:153
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "Açılış örtüyü qeyd edilir..."
-
-#: standalone/draksplash:162
-#, c-format
-msgid "Unable to load image file %s"
-msgstr ""
-
-#: standalone/draksplash:173
-#, c-format
-msgid "choose image"
-msgstr "rəsmi seçin"
-
-#: standalone/draksplash:188
-#, c-format
-msgid "Color selection"
-msgstr ""
-
-#: standalone/drakups:71
-#, c-format
-msgid "Connected through a serial port or an usb cable"
-msgstr ""
-
-#: standalone/drakups:78
-#, fuzzy, c-format
-msgid "Add an UPS device"
-msgstr "Üzv əlavə et"
-
-#: standalone/drakups:81
-#, fuzzy, c-format
-msgid ""
-"Welcome to the UPS configuration utility.\n"
-"\n"
-"Here, you'll add a new UPS to your system.\n"
-msgstr ""
-"Poçt quraşdırma vasitəsinə xoş gəldiniz.\n"
-"\n"
-"Burada, siz xəbər vermə sistemini quraşdıra bilərsiniz.\n"
-
-#: standalone/drakups:88
-#, c-format
-msgid ""
-"We're going to add an UPS device.\n"
-"\n"
-"Do you want to autodetect UPS devices connected to this machine or to "
-"manually select them?"
-msgstr ""
-
-#: standalone/drakups:91
-#, fuzzy, c-format
-msgid "Autodetection"
-msgstr "Avtomatik təsbit et"
-
-#: standalone/drakups:99 standalone/harddrake2:375
-#, c-format
-msgid "Detection in progress"
-msgstr "Təsbit etmə fəaliyyətdədir"
-
-#: standalone/drakups:119
-#, fuzzy, c-format
-msgid "The wizard successfully added the following UPS devices:"
-msgstr "Sehirbaz müvəffəqiyyətlə poçt bildirişini qeyri-fəallaşdırdı."
-
-#: standalone/drakups:121
-#, fuzzy, c-format
-msgid "No new UPS devices was found"
-msgstr "Heç bir avadanlıq tapıla bilmədi"
-
-#: standalone/drakups:126 standalone/drakups:138
-#, fuzzy, c-format
-msgid "UPS driver configuration"
-msgstr "CUPS çapçı qurğuları"
-
-#: standalone/drakups:126
-#, fuzzy, c-format
-msgid "Please select your UPS model."
-msgstr "Xahiş edirik, siçanınızı sınayın:"
-
-#: standalone/drakups:127
-#, fuzzy, c-format
-msgid "Manufacturer / Model:"
-msgstr "Çapçı e'malatçısı, model"
-
-#: standalone/drakups:138
-#, c-format
-msgid ""
-"We are configuring the \"%s\" UPS from \"%s\".\n"
-"Please fill in its name, its driver and its port."
-msgstr ""
-
-#: standalone/drakups:143
-#, c-format
-msgid "Name:"
-msgstr "Ad:"
-
-#: standalone/drakups:143
-#, fuzzy, c-format
-msgid "The name of your ups"
-msgstr "CPU adı"
-
-#: standalone/drakups:144
-#, c-format
-msgid "The driver that manages your ups"
-msgstr ""
-
-#: standalone/drakups:145
-#, c-format
-msgid "Port:"
-msgstr "Qapı:"
-
-#: standalone/drakups:147
-#, fuzzy, c-format
-msgid "The port on which is connected your ups"
-msgstr "siçanınızın bağlı olduğu yol növü"
-
-#: standalone/drakups:157
-#, fuzzy, c-format
-msgid "The wizard successfully configured the new \"%s\" UPS device."
-msgstr "Sehirbaz poçt xəbərdarlıq sistemini müvəffəqiyyətlə quraşdırdı."
-
-#: standalone/drakups:248
-#, fuzzy, c-format
-msgid "UPS devices"
-msgstr "Xidmətlər"
-
-#: standalone/drakups:249 standalone/drakups:268 standalone/drakups:284
-#: standalone/harddrake2:85 standalone/harddrake2:111
-#: standalone/harddrake2:118
-#, c-format
-msgid "Name"
-msgstr "Ad"
-
-#: standalone/drakups:267
-#, fuzzy, c-format
-msgid "UPS users"
-msgstr "İstifadəçilər"
-
-#: standalone/drakups:283
-#, fuzzy, c-format
-msgid "Access Control Lists"
-msgstr "şəbəkə vasitələrinə yetişmə"
-
-#: standalone/drakups:284
-#, c-format
-msgid "IP mask"
-msgstr ""
-
-#: standalone/drakups:296
-#, c-format
-msgid "Rules"
-msgstr "Qaydalar"
-
-#: standalone/drakups:297
-#, c-format
-msgid "Action"
-msgstr "Gedişat"
-
-#: standalone/drakups:297 standalone/drakvpn:1132 standalone/harddrake2:82
-#, c-format
-msgid "Level"
-msgstr "Səviyyə"
-
-#: standalone/drakups:297
-#, fuzzy, c-format
-msgid "ACL name"
-msgstr "LVM adı?"
-
-#: standalone/drakups:327 standalone/drakups:331 standalone/drakups:340
-#, fuzzy, c-format
-msgid "DrakUPS"
-msgstr "DrakVPN"
-
-#: standalone/drakups:337
-#, fuzzy, c-format
-msgid "Welcome to the UPS configuration tools"
-msgstr "Qurğuların sınağı"
-
-#: standalone/drakvpn:73
-#, c-format
-msgid "DrakVPN"
-msgstr "DrakVPN"
-
-#: standalone/drakvpn:95
-#, c-format
-msgid "The VPN connection is enabled."
-msgstr "VPN bağlantısı fəaldır."
-
-#: standalone/drakvpn:96
-#, fuzzy, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"İnternet Bağlantısı Bölüşdürülməsi qurulması artıq bitdi.\n"
-"Və artıq fəallaşdırılmışdır.\n"
-"\n"
-"Nə etmək istəyirsiniz?"
-
-#: standalone/drakvpn:101
-#, c-format
-msgid "disable"
-msgstr "passivləşdir"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127
-#, c-format
-msgid "reconfigure"
-msgstr "yenidən quraşdır"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127 standalone/drakvpn:362
-#: standalone/drakvpn:721
-#, c-format
-msgid "dismiss"
-msgstr "keç"
-
-#: standalone/drakvpn:105
-#, c-format
-msgid "Disabling VPN..."
-msgstr "VPN bağlanır..."
-
-#: standalone/drakvpn:114
-#, c-format
-msgid "The VPN connection is now disabled."
-msgstr "VPN bağlantısı indi qeyri-fəallaşdırıldı."
-
-#: standalone/drakvpn:121
-#, c-format
-msgid "VPN connection currently disabled"
-msgstr "VPN bağlantısı hazırda qeyri-fəaldır."
-
-#: standalone/drakvpn:122
-#, fuzzy, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"İnternet Bağlantısı Bölüşdürülməsi quraşdırılması onsuzda edilib.\n"
-"Hazırda qeyri-fəaldır.\n"
-"\n"
-"Nə etmək istəyirsiniz?"
-
-#: standalone/drakvpn:127
-#, c-format
-msgid "enable"
-msgstr "fəallaşdır"
-
-#: standalone/drakvpn:135
-#, c-format
-msgid "Enabling VPN..."
-msgstr "VPN fəallaşdırılır..."
-
-#: standalone/drakvpn:141
-#, c-format
-msgid "The VPN connection is now enabled."
-msgstr "VPN bağlantısı indi fəallaşdırıldı."
-
-#: standalone/drakvpn:155 standalone/drakvpn:183
-#, c-format
-msgid "Simple VPN setup."
-msgstr "Sadə VPN qurğusu."
-
-#: standalone/drakvpn:156
-#, c-format
-msgid ""
-"You are about to configure your computer to use a VPN connection.\n"
-"\n"
-"With this feature, computers on your local private network and computers\n"
-"on some other remote private networks, can share resources, through\n"
-"their respective firewalls, over the Internet, in a secure manner. \n"
-"\n"
-"The communication over the Internet is encrypted. The local and remote\n"
-"computers look as if they were on the same network.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using\n"
-"drakconnect before going any further."
-msgstr ""
-
-#: standalone/drakvpn:184
-#, c-format
-msgid ""
-"VPN connection.\n"
-"\n"
-"This program is based on the following projects:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - the docs and man pages coming with the %s package\n"
-"\n"
-"Please read AT LEAST the ipsec-howto docs\n"
-"before going any further."
-msgstr ""
-
-#: standalone/drakvpn:196
-#, c-format
-msgid "Kernel module."
-msgstr "Çəyirdək modulu."
-
-#: standalone/drakvpn:197
-#, c-format
-msgid ""
-"The kernel needs to have ipsec support.\n"
-"\n"
-"You're running a %s kernel version.\n"
-"\n"
-"This kernel has '%s' support."
-msgstr ""
-
-#: standalone/drakvpn:264
-#, c-format
-msgid "Problems installing package %s"
-msgstr "%s paketi qurulurkən xəta oldu"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "Security Policies"
-msgstr "Təhlükəsizlik Siyasətləri"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "IKE daemon racoon"
-msgstr "IKE daemon racoon"
-
-#: standalone/drakvpn:281 standalone/drakvpn:292
-#, c-format
-msgid "Configuration file"
-msgstr "Quraşdırma faylı"
-
-#: standalone/drakvpn:282
-#, c-format
-msgid ""
-"Configuration step!\n"
-"\n"
-"You need to define the Security Policies and then to \n"
-"configure the automatic key exchange (IKE) daemon. \n"
-"The KAME IKE daemon we're using is called 'racoon'.\n"
-"\n"
-"What would you like to configure?\n"
-msgstr ""
-
-#: standalone/drakvpn:293
-#, c-format
-msgid ""
-"Next, we will configure the %s file.\n"
-"\n"
-"\n"
-"Simply click on Next.\n"
-msgstr ""
-
-#: standalone/drakvpn:311 standalone/drakvpn:671
-#, c-format
-msgid "%s entries"
-msgstr "%s giriş"
-
-#: standalone/drakvpn:312
-#, c-format
-msgid ""
-"The %s file contents\n"
-"is divided into sections.\n"
-"\n"
-"You can now:\n"
-"\n"
-" - display, add, edit, or remove sections, then\n"
-" - commit the changes\n"
-"\n"
-"What would you like to do?\n"
-msgstr ""
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display"
-msgstr "Göstər"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid "Commit"
-msgstr "Göndər"
-
-#: standalone/drakvpn:333 standalone/drakvpn:337 standalone/drakvpn:695
-#: standalone/drakvpn:699
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display configuration"
-msgstr "Quraşdırılması göstər"
-
-#: standalone/drakvpn:338
-#, c-format
-msgid ""
-"The %s file does not exist.\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose 'add'.\n"
-msgstr ""
-
-#: standalone/drakvpn:354
-#, c-format
-msgid "ipsec.conf entries"
-msgstr "ipsec.conf girişləri"
-
-#: standalone/drakvpn:355
-#, c-format
-msgid ""
-"The %s file contains different sections.\n"
-"\n"
-"Here is its skeleton:\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"You can now add one of these sections.\n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "config setup"
-msgstr "qurğu"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "conn %default"
-msgstr "conn %default"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "normal conn"
-msgstr "normal conn"
-
-#: standalone/drakvpn:368 standalone/drakvpn:409 standalone/drakvpn:496
-#, c-format
-msgid "Exists!"
-msgstr "Mövcuddur !"
-
-#: standalone/drakvpn:369 standalone/drakvpn:410
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change its name.\n"
-msgstr ""
-
-#: standalone/drakvpn:386
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow this config\n"
-"setup section.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:391
-#, c-format
-msgid "interfaces"
-msgstr "ara üzlər"
-
-#: standalone/drakvpn:392
-#, c-format
-msgid "klipsdebug"
-msgstr "klipsdebug"
-
-#: standalone/drakvpn:393
-#, c-format
-msgid "plutodebug"
-msgstr "plutodebug"
-
-#: standalone/drakvpn:394
-#, c-format
-msgid "plutoload"
-msgstr "plutoload"
-
-#: standalone/drakvpn:395
-#, c-format
-msgid "plutostart"
-msgstr "plutostart"
-
-#: standalone/drakvpn:396
-#, c-format
-msgid "uniqueids"
-msgstr "uniqueids"
-
-#: standalone/drakvpn:430
-#, c-format
-msgid ""
-"This is the first section after the config\n"
-"setup one.\n"
-"\n"
-"Here you define the default settings. \n"
-"All the other sections will follow this one.\n"
-"The left settings are optional. If do not define\n"
-"them here, globally, you can define them in each\n"
-"section.\n"
-msgstr ""
-
-#: standalone/drakvpn:437
-#, fuzzy, c-format
-msgid "PFS"
-msgstr "HFS"
-
-#: standalone/drakvpn:438
-#, c-format
-msgid "keyingtries"
-msgstr "keyingtries"
-
-#: standalone/drakvpn:439
-#, c-format
-msgid "compress"
-msgstr "compress"
-
-#: standalone/drakvpn:440
-#, c-format
-msgid "disablearrivalcheck"
-msgstr "disablearrivalcheck"
-
-#: standalone/drakvpn:441 standalone/drakvpn:480
-#, c-format
-msgid "left"
-msgstr "sol"
-
-#: standalone/drakvpn:442 standalone/drakvpn:481
-#, c-format
-msgid "leftcert"
-msgstr "leftcert"
-
-#: standalone/drakvpn:443 standalone/drakvpn:482
-#, c-format
-msgid "leftrsasigkey"
-msgstr "leftrsasigkey"
-
-#: standalone/drakvpn:444 standalone/drakvpn:483
-#, c-format
-msgid "leftsubnet"
-msgstr "leftsubnet"
-
-#: standalone/drakvpn:445 standalone/drakvpn:484
-#, c-format
-msgid "leftnexthop"
-msgstr "leftnexthop"
-
-#: standalone/drakvpn:474
-#, c-format
-msgid ""
-"Your %s file has several sections, or connections.\n"
-"\n"
-"You can now add a new section.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:477
-#, c-format
-msgid "section name"
-msgstr "seçkinin adı"
-
-#: standalone/drakvpn:478
-#, c-format
-msgid "authby"
-msgstr "authby"
-
-#: standalone/drakvpn:479
-#, c-format
-msgid "auto"
-msgstr "avtomatik"
-
-#: standalone/drakvpn:485
-#, c-format
-msgid "right"
-msgstr "sağ"
-
-#: standalone/drakvpn:486
-#, c-format
-msgid "rightcert"
-msgstr "sağmərkəz"
-
-#: standalone/drakvpn:487
-#, c-format
-msgid "rightrsasigkey"
-msgstr "rightrsasigkey"
-
-#: standalone/drakvpn:488
-#, c-format
-msgid "rightsubnet"
-msgstr "rightsubnet"
-
-#: standalone/drakvpn:489
-#, c-format
-msgid "rightnexthop"
-msgstr "rightnexthop"
-
-#: standalone/drakvpn:497
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change the name of the section.\n"
-msgstr ""
-
-#: standalone/drakvpn:529
-#, c-format
-msgid ""
-"Add a Security Policy.\n"
-"\n"
-"You can now add a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:562 standalone/drakvpn:812
-#, c-format
-msgid "Edit section"
-msgstr "Qismi dəyişdir"
-
-#: standalone/drakvpn:563
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to edit \n"
-"and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:566 standalone/drakvpn:646 standalone/drakvpn:817
-#: standalone/drakvpn:863
-#, c-format
-msgid "Section names"
-msgstr "Qisim adları"
-
-#: standalone/drakvpn:576
-#, c-format
-msgid "Can not edit!"
-msgstr "Dəyişdirilə bilmir!"
-
-#: standalone/drakvpn:577
-#, c-format
-msgid ""
-"You cannot edit this section.\n"
-"\n"
-"This section is mandatory for Freeswan 2.X.\n"
-"One has to specify version 2.0 on the top\n"
-"of the %s file, and eventually, disable or\n"
-"enable the opportunistic encryption.\n"
-msgstr ""
-
-#: standalone/drakvpn:586
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the config setup section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:597
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the default section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:610
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the normal section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:631
-#, c-format
-msgid ""
-"Edit a Security Policy.\n"
-"\n"
-"You can now edit a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:642 standalone/drakvpn:859
-#, c-format
-msgid "Remove section"
-msgstr "Qismi sil"
-
-#: standalone/drakvpn:643 standalone/drakvpn:860
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to remove\n"
-"and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:672
-#, c-format
-msgid ""
-"The racoon.conf file configuration.\n"
-"\n"
-"The contents of this file is divided into sections.\n"
-"You can now:\n"
-" - display \t\t (display the file contents)\n"
-" - add\t\t\t (add one section)\n"
-" - edit \t\t\t (modify parameters of an existing section)\n"
-" - remove \t\t (remove an existing section)\n"
-" - commit \t\t (writes the changes to the real file)"
-msgstr ""
-
-#: standalone/drakvpn:700
-#, c-format
-msgid ""
-"The %s file does not exist\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose configure.\n"
-msgstr ""
-
-#: standalone/drakvpn:714
-#, c-format
-msgid "racoonf.conf entries"
-msgstr "racoonf.conf girişləri"
-
-#: standalone/drakvpn:715
-#, c-format
-msgid ""
-"The 'add' sections step.\n"
-"\n"
-"Here below is the racoon.conf file skeleton:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "path"
-msgstr "cığır"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "remote"
-msgstr "uzaq"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "sainfo"
-msgstr "sainfo"
-
-#: standalone/drakvpn:729
-#, c-format
-msgid ""
-"The 'add path' section step.\n"
-"\n"
-"The path sections have to be on top of your racoon.conf file.\n"
-"\n"
-"Put your mouse over the certificate entry to obtain online help."
-msgstr ""
-
-#: standalone/drakvpn:732
-#, c-format
-msgid "path type"
-msgstr "cığır növü"
-
-#: standalone/drakvpn:736
-#, c-format
-msgid ""
-"path include path: specifies a path to include\n"
-"a file. See File Inclusion.\n"
-"\tExample: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: specifies a file containing\n"
-"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
-"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) will search this directory\n"
-"if a certificate or certificate request is received.\n"
-"\tExample: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"other configuration files can be included.\n"
-"\tExample: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File: Pre-shared key file defines a pair\n"
-"of the identifier and the shared secret key which are used at\n"
-"Pre-shared key authentication method in phase 1."
-msgstr ""
-
-#: standalone/drakvpn:756 standalone/drakvpn:849
-#, c-format
-msgid "real file"
-msgstr "əsl fayl"
-
-#: standalone/drakvpn:779
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your racoon.conf file.\n"
-"\n"
-"You can now choose the remote settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:796
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your %s file.\n"
-"\n"
-"You can now choose the sainfo settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:813
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here in the list below the one you want\n"
-"to edit and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:824
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"\n"
-"You can now edit the remote section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:833
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the sainfo section entries.\n"
-"\n"
-"Choose continue when you are done to write the data."
-msgstr ""
-
-#: standalone/drakvpn:841
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow these path\n"
-"sections.\n"
-"\n"
-"You can now edit the path entries.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:848
-#, c-format
-msgid "path_type"
-msgstr "path_type"
-
-#: standalone/drakvpn:889
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"\n"
-"You may now share resources through the Internet,\n"
-"in a secure way, using a VPN connection.\n"
-"\n"
-"You should make sure that that the tunnels shorewall\n"
-"section is configured."
-msgstr ""
-
-#: standalone/drakvpn:909
-#, c-format
-msgid "Sainfo source address"
-msgstr ""
-
-#: standalone/drakvpn:910
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 is the source address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 is the source address"
-msgstr ""
-
-#: standalone/drakvpn:927
-#, fuzzy, c-format
-msgid "Sainfo source protocol"
-msgstr "Avrupa protokolu"
-
-#: standalone/drakvpn:928
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe first 'any' allows any protocol for the source"
-msgstr ""
-
-#: standalone/drakvpn:942
-#, c-format
-msgid "Sainfo destination address"
-msgstr ""
-
-#: standalone/drakvpn:943
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 is the destination address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 is the destination address"
-msgstr ""
-
-#: standalone/drakvpn:960
-#, fuzzy, c-format
-msgid "Sainfo destination protocol"
-msgstr "Windows'dan Keçiş vasitəsi"
-
-#: standalone/drakvpn:961
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe last 'any' allows any protocol for the destination"
-msgstr ""
-
-#: standalone/drakvpn:975
-#, c-format
-msgid "PFS group"
-msgstr "PFS qrupu"
-
-#: standalone/drakvpn:977
-#, c-format
-msgid ""
-"define the group of Diffie-Hellman exponentiations.\n"
-"If you do not require PFS then you can omit this directive.\n"
-"Any proposal will be accepted if you do not specify one.\n"
-"group is one of the following: modp768, modp1024, modp1536.\n"
-"Or you can define 1, 2, or 5 as the DH group number."
-msgstr ""
-
-#: standalone/drakvpn:982
-#, c-format
-msgid "Lifetime number"
-msgstr "Lifetime nömrəsi"
-
-#: standalone/drakvpn:983
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-msgstr ""
-
-#: standalone/drakvpn:999
-#, c-format
-msgid "Lifetime unit"
-msgstr "Lifetime bölməsi"
-
-#: standalone/drakvpn:1001
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
-"'hour'.\n"
-msgstr ""
-
-#: standalone/drakvpn:1019
-#, c-format
-msgid "Authentication algorithm"
-msgstr "Tanıtma alqorifması"
-
-#: standalone/drakvpn:1021
-#, c-format
-msgid "Compression algorithm"
-msgstr "Sıxışdırma alqorifması"
-
-#: standalone/drakvpn:1022
-#, fuzzy, c-format
-msgid "deflate"
-msgstr "əsas"
-
-#: standalone/drakvpn:1029
-#, c-format
-msgid "Remote"
-msgstr "Uzaq"
-
-#: standalone/drakvpn:1030
-#, c-format
-msgid ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specifies the parameters for IKE phase 1 for each remote node.\n"
-"The default port is 500. If anonymous is specified, the state-\n"
-"ments apply to all peers which do not match any other remote\n"
-"directive.\n"
-"\n"
-"Examples: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-msgstr ""
-
-#: standalone/drakvpn:1038
-#, fuzzy, c-format
-msgid "Exchange mode"
-msgstr "Yığma modu"
-
-#: standalone/drakvpn:1040
-#, c-format
-msgid ""
-"defines the exchange mode for phase 1 when racoon is the\n"
-"initiator. Also it means the acceptable exchange mode\n"
-"when racoon is responder. More than one mode can be\n"
-"specified by separating them with a comma. All of the\n"
-"modes are acceptable. The first exchange mode is what\n"
-"racoon uses when it is the initiator.\n"
-msgstr ""
-
-#: standalone/drakvpn:1046
-#, fuzzy, c-format
-msgid "Generate policy"
-msgstr "Təhlükəsizlik"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "off"
-msgstr "bağlı"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "on"
-msgstr "açıq"
-
-#: standalone/drakvpn:1048
-#, c-format
-msgid ""
-"This directive is for the responder. Therefore you\n"
-"should set passive on in order that racoon(8) only\n"
-"becomes a responder. If the responder does not have any\n"
-"policy in SPD during phase 2 negotiation, and the direc-\n"
-"tive is set on, then racoon(8) will choice the first pro-\n"
-"posal in the SA payload from the initiator, and generate\n"
-"policy entries from the proposal. It is useful to nego-\n"
-"tiate with the client which is allocated IP address\n"
-"dynamically. Note that inappropriate policy might be\n"
-"installed into the responder's SPD by the initiator. So\n"
-"that other communication might fail if such policies\n"
-"installed due to some policy mismatches between the ini-\n"
-"tiator and the responder. This directive is ignored in\n"
-"the initiator case. The default value is off."
-msgstr ""
-
-#: standalone/drakvpn:1062
-#, fuzzy, c-format
-msgid "Passive"
-msgstr "Filistin"
-
-#: standalone/drakvpn:1064
-#, c-format
-msgid ""
-"If you do not want to initiate the negotiation, set this\n"
-"to on. The default value is off. It is useful for a\n"
-"server."
-msgstr ""
-
-#: standalone/drakvpn:1067
-#, c-format
-msgid "Certificate type"
-msgstr ""
-
-#: standalone/drakvpn:1069
-#, fuzzy, c-format
-msgid "My certfile"
-msgstr "Fayl seç"
-
-#: standalone/drakvpn:1070
-#, fuzzy, c-format
-msgid "Name of the certificate"
-msgstr "Çapçı adı"
-
-#: standalone/drakvpn:1071
-#, c-format
-msgid "My private key"
-msgstr ""
-
-#: standalone/drakvpn:1072
-#, fuzzy, c-format
-msgid "Name of the private key"
-msgstr "Çapçı adı"
-
-#: standalone/drakvpn:1073
-#, fuzzy, c-format
-msgid "Peers certfile"
-msgstr "Fayl seç"
-
-#: standalone/drakvpn:1074
-#, c-format
-msgid "Name of the peers certificate"
-msgstr ""
-
-#: standalone/drakvpn:1075
-#, fuzzy, c-format
-msgid "Verify cert"
-msgstr "çox ə'la"
-
-#: standalone/drakvpn:1077
-#, c-format
-msgid ""
-"If you do not want to verify the peer's certificate for\n"
-"some reason, set this to off. The default is on."
-msgstr ""
-
-#: standalone/drakvpn:1079
-#, c-format
-msgid "My identifier"
-msgstr ""
-
-#: standalone/drakvpn:1080
-#, c-format
-msgid ""
-"specifies the identifier sent to the remote host and the\n"
-"type to use in the phase 1 negotiation. address, FQDN,\n"
-"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
-"they are used like:\n"
-"\tmy_identifier address [address];\n"
-"\t\tthe type is the IP address. This is the default\n"
-"\t\ttype if you do not specify an identifier to use.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tthe type is a USER_FQDN (user fully-qualified\n"
-"\t\tdomain name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tthe type is a FQDN (fully-qualified domain name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tthe type is a KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tthe type is an ASN.1 distinguished name. If\n"
-"\t\tstring is omitted, racoon(8) will get DN from\n"
-"\t\tSubject field in the certificate.\n"
-"\n"
-"Examples: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-msgstr ""
-
-#: standalone/drakvpn:1100
-#, fuzzy, c-format
-msgid "Peers identifier"
-msgstr "Çapçı"
-
-#: standalone/drakvpn:1101
-#, fuzzy, c-format
-msgid "Proposal"
-msgstr "Protokol"
-
-#: standalone/drakvpn:1103
-#, c-format
-msgid ""
-"specify the encryption algorithm used for the\n"
-"phase 1 negotiation. This directive must be defined. \n"
-"algorithm is one of the following: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For other transforms, this statement should not be used."
-msgstr ""
-
-#: standalone/drakvpn:1110
-#, c-format
-msgid "Hash algorithm"
-msgstr "Hash alqorifması"
-
-#: standalone/drakvpn:1112
-#, c-format
-msgid "DH group"
-msgstr "DH qrupu"
-
-#: standalone/drakvpn:1119
-#, c-format
-msgid "Command"
-msgstr "Əmr"
-
-#: standalone/drakvpn:1120
-#, c-format
-msgid "Source IP range"
-msgstr "Mənbə IP aralığı"
-
-#: standalone/drakvpn:1121
-#, c-format
-msgid "Destination IP range"
-msgstr "Hədəf IP aralığı"
-
-#: standalone/drakvpn:1122
-#, c-format
-msgid "Upper-layer protocol"
-msgstr "Üst-lay protokolu"
-
-#: standalone/drakvpn:1122 standalone/drakvpn:1129
-#, fuzzy, c-format
-msgid "any"
-msgstr "Gün"
-
-#: standalone/drakvpn:1124
-#, c-format
-msgid "Flag"
-msgstr "Bayraq"
-
-#: standalone/drakvpn:1125
-#, c-format
-msgid "Direction"
-msgstr "İstiqamət"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "IPsec policy"
-msgstr "IPsec siyasəti"
-
-#: standalone/drakvpn:1126
-#, fuzzy, c-format
-msgid "ipsec"
-msgstr "Msec"
-
-#: standalone/drakvpn:1126
-#, fuzzy, c-format
-msgid "discard"
-msgstr "qeyri-fəal"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "Mode"
-msgstr "Mod"
-
-#: standalone/drakvpn:1129
-#, fuzzy, c-format
-msgid "tunnel"
-msgstr "Kanal"
-
-#: standalone/drakvpn:1129
-#, fuzzy, c-format
-msgid "transport"
-msgstr "ötürülüb"
-
-#: standalone/drakvpn:1131
-#, c-format
-msgid "Source/destination"
-msgstr "Mənbə/Hədəf"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "require"
-msgstr ""
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "default"
-msgstr "əsas"
-
-#: standalone/drakvpn:1132
-#, fuzzy, c-format
-msgid "use"
-msgstr "Siçan"
-
-#: standalone/drakvpn:1132
-#, fuzzy, c-format
-msgid "unique"
-msgstr "uniqueids"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (broadcast)"
-msgstr "ABŞ (translasiya)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable)"
-msgstr "ABŞ (kabel)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "USA (kabel-hrc)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "Canada (cable)"
-msgstr "Kanada (kabel)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Yaponiya (translyasiya)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (cable)"
-msgstr "Yaponiya (kabel)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "China (broadcast)"
-msgstr "Çin (translasiya)"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "West Europe"
-msgstr "Qərvi Avropa"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "East Europe"
-msgstr "Şərqi Avropa"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "France [SECAM]"
-msgstr "Fransızca [SECAM]"
-
-#: standalone/drakxtv:48
-#, c-format
-msgid "Newzealand"
-msgstr "Yeni Zellanda"
-
-#: standalone/drakxtv:51
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Avstraliya Optus kabel Televiziyası"
-
-#: standalone/drakxtv:85
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Xahiş edirik,\n"
-"televiziya normunuzu və ölkənizi girin"
-
-#: standalone/drakxtv:87
-#, c-format
-msgid "TV norm:"
-msgstr "TV normu:"
-
-#: standalone/drakxtv:88
-#, c-format
-msgid "Area:"
-msgstr "Sahə:"
-
-#: standalone/drakxtv:93
-#, c-format
-msgid "Scanning for TV channels in progress..."
-msgstr "TV kanallarının axtarışı fəaliyyətdədir..."
-
-#: standalone/drakxtv:103
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "Televiziya kanalları axtarılır"
-
-#: standalone/drakxtv:107
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Televiziya kanalları axtarılarkən xəta yarandı"
-
-#: standalone/drakxtv:110
-#, c-format
-msgid "Have a nice day!"
-msgstr "Sağolun, sağlıqla qalın!"
-
-#: standalone/drakxtv:111
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "İndi, siz xawtv-ni işə sala bilərsiniz (X Window altında!) !\n"
-
-#: standalone/drakxtv:149
-#, c-format
-msgid "No TV Card detected!"
-msgstr "Televiziya Kartı Təsbit Edilmədi!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakxtv:151
-#, c-format
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"Sisteminizdə heç bit Televiziya Kartı aşkar edilmədi. Xahiş edirik, Linuks "
-"dəstəkli Televiziya Kartının düzgün taxıldığını yoxlayın.\n"
-"\n"
-"\n"
-"Avadanlıq mə'lumat bazamızı bu ünvandan ziyarət edə bilərsiniz:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/finish-install:42 standalone/keyboarddrake:30
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Klaviatura quruluşunu seçiniz."
-
-#: standalone/harddrake2:25
-#, c-format
-msgid "Alternative drivers"
-msgstr "Alternativ sürücülər"
-
-#: standalone/harddrake2:26
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "bu səs kartı üçün alternativ sürücülərin siyahısı"
-
-#: standalone/harddrake2:29
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr "bu, avadanlığın taxılı olduğu fiziki yoldur (mis: PCİ, USB, ...)"
-
-#: standalone/harddrake2:31 standalone/harddrake2:146
-#, c-format
-msgid "Bus identification"
-msgstr "Yol tanıtması"
-
-#: standalone/harddrake2:32
-#, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
-msgstr ""
-"- PCİ və USB davadanlıqları: bu e'malatçı, avadanlıq, alt e'malatçı və alt "
-"avadanlıq PCİ/USB id'lərini göstərir"
-
-#: standalone/harddrake2:35
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- pci avadanlıqları: bu kartın PCİ yuvasını, avadanlığını və funksiyasını "
-"verir\n"
-"- eide avadanlıqları: avadanlıq ya master ya da slave vəziyyətindədir\n"
-"- scsi avadanlıqları: scsi bus və scsi avadanlıq id'ləri"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "Drive capacity"
-msgstr "Sürücü həcmi"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr "sürücünün xüsusi bacarıqları (yazma bacarığı və/ya da DVD dəstəyi)"
-
-#: standalone/harddrake2:39
-#, c-format
-msgid "this field describes the device"
-msgstr "burada avadanlığın izahatı yer alır"
-
-#: standalone/harddrake2:40
-#, c-format
-msgid "Old device file"
-msgstr "Köhnə avadanlıq faylı"
-
-#: standalone/harddrake2:41
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "dev paketində işlədilən köhnə sabit avadanlıq adı"
-
-#: standalone/harddrake2:42
-#, c-format
-msgid "New devfs device"
-msgstr "Yeni devfs avadanlığı"
-
-#: standalone/harddrake2:43
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "əsas çəyirdək devfs tərəfindən yaradılan yeni dinamik avadanlıq adı"
-
-#. -PO: here "module" is the "jargon term" for a kernel driver
-#: standalone/harddrake2:46
-#, c-format
-msgid "Module"
-msgstr "Modul"
-
-#: standalone/harddrake2:46
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "bu avadanlığı işlədən GNU/Linuks çəyirdək modulu"
-
-#: standalone/harddrake2:47
-#, fuzzy, c-format
-msgid "Extended partitions"
-msgstr "Yeni bölmə yarat"
-
-#: standalone/harddrake2:47
-#, fuzzy, c-format
-msgid "the number of extended partitions"
-msgstr "işlədicinin nömrəsi"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Geometry"
-msgstr "Həndəsə"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Cylinder/head/sectors geometry of the disk"
-msgstr ""
-
-#: standalone/harddrake2:49
-#, fuzzy, c-format
-msgid "Disk controller"
-msgstr "SMBus idarəçiləri"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "the disk controller on the host side"
-msgstr ""
-
-#: standalone/harddrake2:50
-#, c-format
-msgid "class of hardware device"
-msgstr "avadanlığın sinifi"
-
-#: standalone/harddrake2:51 standalone/harddrake2:83
-#: standalone/printerdrake:224
-#, c-format
-msgid "Model"
-msgstr "Model"
-
-#: standalone/harddrake2:51
-#, c-format
-msgid "hard disk model"
-msgstr "sabit disk modeli"
-
-#: standalone/harddrake2:52
-#, c-format
-msgid "network printer port"
-msgstr "şəbəkə çapçısı qapısı"
-
-#: standalone/harddrake2:53
-#, fuzzy, c-format
-msgid "Primary partitions"
-msgstr "Bölmələrin şəkilləndirilməsi"
-
-#: standalone/harddrake2:53
-#, fuzzy, c-format
-msgid "the number of the primary partitions"
-msgstr "işlədicinin nömrəsi"
-
-#: standalone/harddrake2:54
-#, c-format
-msgid "the vendor name of the device"
-msgstr "avadanlığın e'malatçısı"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "Bus PCI #"
-msgstr ""
-
-#: standalone/harddrake2:55
-#, fuzzy, c-format
-msgid "the PCI bus on which the device is plugged"
-msgstr "bu, avadanlığın taxılı olduğu fiziki yoldur (mis: PCİ, USB, ...)"
-
-#: standalone/harddrake2:56
-#, fuzzy, c-format
-msgid "PCI device #"
-msgstr "Xidmətlər"
-
-#: standalone/harddrake2:56
-#, fuzzy, c-format
-msgid "PCI device number"
-msgstr "Lifetime nömrəsi"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function #"
-msgstr ""
-
-#: standalone/harddrake2:57
-#, fuzzy, c-format
-msgid "PCI function number"
-msgstr "Bağlantı adı"
-
-#: standalone/harddrake2:58
-#, fuzzy, c-format
-msgid "Vendor ID"
-msgstr "E'malatçı"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "this is the standard numerical identifier of the vendor"
-msgstr ""
-
-#: standalone/harddrake2:59
-#, fuzzy, c-format
-msgid "Device ID"
-msgstr "Avadanlıq: "
-
-#: standalone/harddrake2:59
-#, fuzzy, c-format
-msgid "this is the numerical identifier of the device"
-msgstr "avadanlığın e'malatçısı"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "Sub vendor ID"
-msgstr ""
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "this is the minor numerical identifier of the vendor"
-msgstr ""
-
-#: standalone/harddrake2:61
-#, fuzzy, c-format
-msgid "Sub device ID"
-msgstr "Xidmətlər"
-
-#: standalone/harddrake2:61
-#, fuzzy, c-format
-msgid "this is the minor numerical identifier of the device"
-msgstr "avadanlığın e'malatçısı"
-
-#: standalone/harddrake2:62
-#, fuzzy, c-format
-msgid "Device USB ID"
-msgstr "Avadanlıq: "
-
-#: standalone/harddrake2:62
-#, c-format
-msgid ".."
-msgstr ""
-
-#: standalone/harddrake2:66
-#, c-format
-msgid "Bogomips"
-msgstr "Boqomiplər"
-
-#: standalone/harddrake2:66
-#, c-format
-msgid ""
-"the GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
-msgstr ""
-"GNU/Linuks çəyirdəyi açılışda dönmə hesablaması yerinə gətirir və onun "
-"nəticələri cpu \"sür'ət yoxlaması\" edə bilmək üçün boqomips olaraq saxlanır."
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "Cache size"
-msgstr "Ön yaddaş böyüklüyü"
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "(ikinci səviyyə) cpu ön yaddaşının (cache) böyüklüyü"
-
-#. -PO: here "comas" is the medical coma, not the lexical coma!!
-#: standalone/harddrake2:70
-#, c-format
-msgid "Coma bug"
-msgstr "Coma xətası"
-
-#: standalone/harddrake2:70
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "bu cpu'da Cyrix 6x86 Coma xətasının olması"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "Cpuid family"
-msgstr "Cpuid ailəsi"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "cpu ailəsi (nüm: i686 sinifi üçün 6)"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "Cpuid level"
-msgstr "Cpuid səviyyəsi"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "cpuid tə'limatları ilə alına bilən mə'lumat səviyyəsi"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Sıxlıq (MHz)"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr "MHz olaraq CPU tezliyi"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "Flags"
-msgstr "Bayraqlar"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "Çəyirdək tərəfindən raport edilən CPU bayraqları"
-
-#: standalone/harddrake2:75
-#, c-format
-msgid "Fdiv bug"
-msgstr "Fdiv xətası"
-
-#: standalone/harddrake2:76
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
-"İlk çıxan Pentium sinifi mikrosxemlərdə Floating point DIVision (FDIV) "
-"xətası vardı"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "Is FPU present"
-msgstr "FPU mövcud isə"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "bəli, işlədicinin arifmetik ko-işlədicisi olduğu mə'nasına gəlir"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "FPU'nun irq vektoruna sahibliyi"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr "bəli, arifmetik ko-işlədici estisna vektoruna bağlıdır deməkdir"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "F00f bug"
-msgstr "F00f xətası"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr "əvvəlki pentiumlar xətalı idi və F00F bayt kodu açılarkən donurdu"
-
-#: standalone/harddrake2:80
-#, c-format
-msgid "Halt bug"
-msgstr "Xətanı dayandır"
-
-#: standalone/harddrake2:81
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
-"Bə'zi köhnə i486DX-100 mikrosxemlər \"halt\" əmrindən sonra idarə etmə "
-"moduna düzgün geri dönə bilmirdi"
-
-#: standalone/harddrake2:82
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "cpu'nun alt nəsli"
-
-#: standalone/harddrake2:83
-#, c-format
-msgid "generation of the cpu (eg: 8 for Pentium III, ...)"
-msgstr "cpu nəsli (mis: Pentium III üçün 8, ...)"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "Model name"
-msgstr "Model adı"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "cpu'nun rəsmi e'maltçısı"
-
-#: standalone/harddrake2:85
-#, c-format
-msgid "the name of the CPU"
-msgstr "CPU adı"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "Processor ID"
-msgstr "İşlədici ID'si"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "the number of the processor"
-msgstr "işlədicinin nömrəsi"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "Model stepping"
-msgstr "Model addımlaması"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "cpu addımlaması"
-
-#: standalone/harddrake2:88
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "işlədicinin e'malatçısı"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid "Write protection"
-msgstr "Yazma qoruması"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid ""
-"the WP flag in the CR0 register of the cpu enforce write protection at the "
-"memory page level, thus enabling the processor to prevent unchecked kernel "
-"accesses to user memory (aka this is a bug guard)"
-msgstr ""
-"Cpu'nun CR0 qeydindəki WP bayrağı yaddaş səhifəsi səviyyəsində yazma "
-"qorumasını məcbur edir, buna görə də işlədiciyə istifadəçi yaddaşına nəzərdə "
-"olmayan yetişməni ləğv etmə imkanı verir. (bu bir xəta qoruyucusudur)"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "Floppy format"
-msgstr "Disket şəkilləndirməsi"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "sürücü tərəfindən dəstəklənən disket şəkli"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "Channel"
-msgstr "Kanal"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "EİDE/SCSİ kanalı"
-
-#: standalone/harddrake2:98
-#, fuzzy, c-format
-msgid "Disk identifier"
-msgstr "Çapçı"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "usually the disk serial number"
-msgstr ""
-
-#: standalone/harddrake2:99
-#, fuzzy, c-format
-msgid "Logical unit number"
-msgstr "Məntiqi həcm adı"
-
-#: standalone/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 ""
-
-#. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...)
-#: standalone/harddrake2:106
-#, fuzzy, c-format
-msgid "Installed size"
-msgstr "Sistemin qurulumu"
-
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:107
-#, fuzzy, c-format
-msgid "Enabled Size"
-msgstr "Fəal"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled size of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:108
-#, fuzzy, c-format
-msgid "type of the memory device"
-msgstr "avadanlığın e'malatçısı"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed"
-msgstr "Sür'ət"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:110
-#, fuzzy, c-format
-msgid "Bank connections"
-msgstr "Kabel bağlantısı"
-
-#: standalone/harddrake2:111
-#, c-format
-msgid "Socket designation of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:115
-#, fuzzy, c-format
-msgid "Device file"
-msgstr "Köhnə avadanlıq faylı"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid ""
-"the device file used to communicate with the kernel driver for the mouse"
-msgstr ""
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "Emulated wheel"
-msgstr ""
-
-#: standalone/harddrake2:116
-#, fuzzy, c-format
-msgid "whether the wheel is emulated or not"
-msgstr "Çərx emulyasiyalı"
-
-#: standalone/harddrake2:117
-#, fuzzy, c-format
-msgid "the type of the mouse"
-msgstr "Xahiş edirik, siçanınızı seçin"
-
-#: standalone/harddrake2:118
-#, fuzzy, c-format
-msgid "the name of the mouse"
-msgstr "CPU adı"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "Number of buttons"
-msgstr "Düymə ədədi"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "siçanın sahib olduğu düymə ədədi"
-
-#: standalone/harddrake2:120
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "siçanınızın bağlı olduğu yol növü"
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "Mouse protocol used by X11"
-msgstr ""
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "the protocol that the graphical desktop use with the mouse"
-msgstr ""
-
-#: standalone/harddrake2:128 standalone/harddrake2:137
-#: standalone/harddrake2:144 standalone/harddrake2:152
-#: standalone/harddrake2:341
-#, c-format
-msgid "Identification"
-msgstr "Kimlik:"
-
-#: standalone/harddrake2:129 standalone/harddrake2:145
-#, c-format
-msgid "Connection"
-msgstr "Bağlantı"
-
-#: standalone/harddrake2:138
-#, fuzzy, c-format
-msgid "Performances"
-msgstr "Qurğular"
-
-#: standalone/harddrake2:139
-#, fuzzy, c-format
-msgid "Bugs"
-msgstr "Yol"
-
-#: standalone/harddrake2:140
-#, c-format
-msgid "FPU"
-msgstr ""
-
-#: standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Avadanlıq"
-
-#: standalone/harddrake2:148
-#, c-format
-msgid "Partitions"
-msgstr "Disk bölmələri"
-
-#: standalone/harddrake2:153
-#, c-format
-msgid "Features"
-msgstr "Qabiliyyətlər"
-
-#. -PO: please keep all "/" characters !!!
-#: standalone/harddrake2:176 standalone/logdrake:76
-#: standalone/printerdrake:146 standalone/printerdrake:159
-#: standalone/printerdrake:171
-#, c-format
-msgid "/_Options"
-msgstr "/_Seçimlər"
-
-#: standalone/harddrake2:177 standalone/harddrake2:202 standalone/logdrake:78
-#: standalone/printerdrake:172 standalone/printerdrake:174
-#: standalone/printerdrake:177 standalone/printerdrake:179
-#, c-format
-msgid "/_Help"
-msgstr "/_Yardım"
-
-#: standalone/harddrake2:181
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Ça_pçıları avtomatik təsbit et"
-
-#: standalone/harddrake2:182
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/_Modemləri avtomatik təsbit et"
-
-#: standalone/harddrake2:183
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/_jaz sürücülərini avtomatik təsbit et"
-
-#: standalone/harddrake2:184
-#, c-format
-msgid "/Autodetect parallel _zip drives"
-msgstr "/paralel _zip drayverlərini avtomatik aşkar et"
-
-#: standalone/harddrake2:191 standalone/printerdrake:152
-#, c-format
-msgid "/_Quit"
-msgstr "/Çı_x"
-
-#: standalone/harddrake2:204
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Sahənin izahatı"
-
-#: standalone/harddrake2:206
-#, c-format
-msgid "Harddrake help"
-msgstr "Harddrake yardımı"
-
-#: standalone/harddrake2:215
-#, 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 ""
-"Avadanlığı seçdiyiniz vaxt, onun mə'lumatını sağ çərçivədəki sahədə "
-"görəcəksiniz."
-
-#: standalone/harddrake2:221 standalone/printerdrake:177
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Xəta Raportu Göndər"
-
-#: standalone/harddrake2:223 standalone/printerdrake:179
-#, c-format
-msgid "/_About..."
-msgstr "/_Haqqında..."
-
-#: standalone/harddrake2:224
-#, c-format
-msgid "About Harddrake"
-msgstr "Harddrake Haqqında"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/harddrake2:226
-#, fuzzy, c-format
-msgid ""
-"This is HardDrake, a %s hardware configuration tool.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-msgstr ""
-"Bu HardDrake'dir, Mandriva Linux avadanlıq quraşdırma vasitəsi.\n"
-"<span foreground=\"royalblue3\">Buraxılış:</span> %s\n"
-"<span foreground=\"royalblue3\">Müəllif:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-
-#: standalone/harddrake2:242
-#, fuzzy, c-format
-msgid "Harddrake2"
-msgstr "HardDrake"
-
-#: standalone/harddrake2:272
-#, c-format
-msgid "Detected hardware"
-msgstr "Təsbit edilən avadanlıq"
-
-#: standalone/harddrake2:277
-#, c-format
-msgid "Configure module"
-msgstr "Modulu quraşdır"
-
-#: standalone/harddrake2:284
-#, c-format
-msgid "Run config tool"
-msgstr "Quraşdırma vasitəsini işə sal"
-
-#: standalone/harddrake2:308
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr "Burada mə'lumatlarını görmək istədiyiniz avadanlığı sol tərəfdə seçin."
-
-#: standalone/harddrake2:329 standalone/printerdrake:306
-#: standalone/printerdrake:320
-#, c-format
-msgid "Unknown"
-msgstr "Namə'lum"
-
-#: standalone/harddrake2:349
-#, c-format
-msgid "Misc"
-msgstr "Müxtəlif"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "secondary"
-msgstr "ikinci"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "primary"
-msgstr "əsas"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "burner"
-msgstr "yazıcı"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "DVD"
-msgstr "DVD"
-
-#: standalone/harddrake2:511
-#, c-format
-msgid ""
-"The following devices needs proprietary drivers or firmwares in order to "
-"operate smoothly. The appropriate packages can be retrieved from the "
-"Mandriva Club. Do you want to subscribe to the Mandriva Club?"
-msgstr ""
-
-#: standalone/keyboarddrake:45
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Konsolda BackSpace-in Silmə funksyasını görməyini istəyirmisiniz?"
-
-#: standalone/localedrake:38
-#, c-format
-msgid "LocaleDrake"
-msgstr "LocaleDrake"
-
-#: standalone/localedrake:44
-#, fuzzy, c-format
-msgid "You should install the following packages: %s"
-msgstr "Xorg paketi qurula bilmir: %s"
-
-#. -PO: the following is used to combine packages names. eg: "initscripts, harddrake, yudit"
-#: standalone/localedrake:47 standalone/scannerdrake:135
-#, c-format
-msgid ", "
-msgstr ", "
-
-#: standalone/localedrake:55
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "Dəyişikliklər edildi, ancaq effektiv olmaq üçün yenidən giriş edin"
-
-#: standalone/logdrake:49
-#, fuzzy, c-format
-msgid "Mandriva Linux Tools Logs"
-msgstr "Mandriva Linux Vasitələrinin İzahatı"
-
-#: standalone/logdrake:50
-#, c-format
-msgid "Logdrake"
-msgstr "Logdrake"
-
-#: standalone/logdrake:63
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Yalnız seçili gününkünü göstər"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "/File/_New"
-msgstr "/Fayl/_Təze"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "/File/_Open"
-msgstr "/Fayl/_Aç"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "/File/_Save"
-msgstr "/Fayl/_Qeyd Et"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
-
-#: standalone/logdrake:73
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Fayl/_Fərqli Qeyd Et"
-
-#: standalone/logdrake:74
-#, c-format
-msgid "/File/-"
-msgstr "/Fayl/-"
-
-#: standalone/logdrake:77
-#, c-format
-msgid "/Options/Test"
-msgstr "/Seçimlər/Sınaq"
-
-#: standalone/logdrake:79
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Yardım/_Haqqında..."
-
-#: standalone/logdrake:108
-#, c-format
-msgid ""
-"_:this is the auth.log log file\n"
-"Authentication"
-msgstr "Tanıtma"
-
-#: standalone/logdrake:109
-#, c-format
-msgid ""
-"_:this is the user.log log file\n"
-"User"
-msgstr "İstifadəçi"
-
-#: standalone/logdrake:110
-#, c-format
-msgid ""
-"_:this is the /var/log/messages log file\n"
-"Messages"
-msgstr "İsmarışlar"
-
-#: standalone/logdrake:111
-#, c-format
-msgid ""
-"_:this is the /var/log/syslog log file\n"
-"Syslog"
-msgstr "Sistem qeydi"
-
-#: standalone/logdrake:115
-#, c-format
-msgid "search"
-msgstr "axtar"
-
-#: standalone/logdrake:127
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Qeydlərinizə baxan vasitə"
-
-#: standalone/logdrake:128 standalone/net_applet:347 standalone/net_monitor:93
-#, c-format
-msgid "Settings"
-msgstr "Qurğular"
-
-#: standalone/logdrake:133
-#, c-format
-msgid "Matching"
-msgstr "Uyğun gələn"
-
-#: standalone/logdrake:134
-#, c-format
-msgid "but not matching"
-msgstr "amma oxşamır"
-
-#: standalone/logdrake:138
-#, c-format
-msgid "Choose file"
-msgstr "Fayl seç"
-
-#: standalone/logdrake:150
-#, c-format
-msgid "Calendar"
-msgstr "Təqvim"
-
-#: standalone/logdrake:160
-#, c-format
-msgid "Content of the file"
-msgstr "Fayl məzmunu"
-
-#: standalone/logdrake:164 standalone/logdrake:401
-#, c-format
-msgid "Mail alert"
-msgstr "Poçtla xəbər vermə"
-
-#: standalone/logdrake:171
-#, c-format
-msgid "The alert wizard has failed unexpectedly:"
-msgstr ""
-
-#: standalone/logdrake:224
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "xahiş edirik gözləyin, fayl oxunur: %s"
-
-#: standalone/logdrake:379
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Apache World Wide Web Vericisi"
-
-#: standalone/logdrake:380
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Domen Adı Həlledicisi"
-
-#: standalone/logdrake:381
-#, c-format
-msgid "Ftp Server"
-msgstr "Ftp Vericisi"
-
-#: standalone/logdrake:382
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Postfix Poçt Vericisi"
-
-#: standalone/logdrake:383
-#, c-format
-msgid "Samba Server"
-msgstr "Samba Vericisi"
-
-#: standalone/logdrake:385
-#, c-format
-msgid "Webmin Service"
-msgstr "Webmin Xidməti"
-
-#: standalone/logdrake:386
-#, c-format
-msgid "Xinetd Service"
-msgstr "Xinetd Xidməti"
-
-#: standalone/logdrake:395
-#, c-format
-msgid "Configure the mail alert system"
-msgstr "Poçt xəbər sistemini quraşdır"
-
-#: standalone/logdrake:396
-#, c-format
-msgid "Stop the mail alert system"
-msgstr "Poçt xəbərdarlıq sistemini dayandır"
-
-#: standalone/logdrake:404
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Poçtla xəbər vermə qurğuları"
-
-#: standalone/logdrake:405
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Poçt quraşdırma vasitəsinə xoş gəldiniz.\n"
-"\n"
-"Burada, siz xəbər vermə sistemini quraşdıra bilərsiniz.\n"
-
-#: standalone/logdrake:415
-#, c-format
-msgid "Services settings"
-msgstr "Xidmətlər qurğuları"
-
-#: standalone/logdrake:416
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr "Seçili xidmətlərdən biri işləməsə sizə xəbər göndəriləcək"
-
-#: standalone/logdrake:423
-#, c-format
-msgid "Load setting"
-msgstr "Qurğunu yüklə"
-
-#: standalone/logdrake:424
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Yük bu qiymətdən yüksək olarsa sizə xəbərdarlıq göndəriləcək"
-
-#: standalone/logdrake:425
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Yüklə"
-
-#: standalone/logdrake:430
-#, c-format
-msgid "Alert configuration"
-msgstr "Xəbərdarlıq qurğuları"
-
-#: standalone/logdrake:431
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Xahiş edirik, aşağıya epoçt ünvanınızı daxil edin"
-
-#: standalone/logdrake:432
-#, fuzzy, c-format
-msgid "and enter the name (or the IP) of the SMTP server you wish to use"
-msgstr ""
-"Çapçılarını işlətmək istədiyiniz qovşağın IP ünvanı və qapısını daxil edin."
-
-#: standalone/logdrake:451
-#, c-format
-msgid "The wizard successfully configured the mail alert."
-msgstr "Sehirbaz poçt xəbərdarlıq sistemini müvəffəqiyyətlə quraşdırdı."
-
-#: standalone/logdrake:457
-#, c-format
-msgid "The wizard successfully disabled the mail alert."
-msgstr "Sehirbaz müvəffəqiyyətlə poçt bildirişini qeyri-fəallaşdırdı."
-
-#: standalone/logdrake:516
-#, c-format
-msgid "Save as.."
-msgstr "Fərqli qeyd et..."
-
-#: standalone/mousedrake:31
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Xahiş edirik, siçanınızın növünü seçin."
-
-#: standalone/mousedrake:44
-#, c-format
-msgid "Emulate third button?"
-msgstr "3 düymə emulasiyası"
-
-#: standalone/mousedrake:61
-#, c-format
-msgid "Mouse test"
-msgstr "Siçan sınağı"
-
-#: standalone/mousedrake:64
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Xahiş edirik, siçanınızı sınayın:"
-
-#: standalone/net_applet:47
-#, fuzzy, c-format
-msgid "Network is up on interface %s"
-msgstr "Şəbəkə ara üzü"
-
-#. -PO: keep the "Configure Network" substring synced with the "Configure Network" message below
-#: standalone/net_applet:50
-#, fuzzy, c-format
-msgid "Network is down on interface %s. Click on \"Configure Network\""
-msgstr "Şəbəkə fəalliyyəti quraşdırılmayıb"
-
-#: standalone/net_applet:56 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Connect %s"
-msgstr "Bağlan %s"
-
-#: standalone/net_applet:57 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Disconnect %s"
-msgstr "%s bağlantısını kəs"
-
-#: standalone/net_applet:58
-#, fuzzy, c-format
-msgid "Monitor Network"
-msgstr "Şəbəkə Üstündən Geri Yüklə"
-
-#: standalone/net_applet:60
-#, c-format
-msgid "Manage wireless networks"
-msgstr ""
-
-#: standalone/net_applet:61
-#, c-format
-msgid "Configure Network"
-msgstr "Şəbəkəni Quraşdır"
-
-#: standalone/net_applet:63
-#, fuzzy, c-format
-msgid "Watched interface"
-msgstr "ara üzlər"
-
-#: standalone/net_applet:93
-#, c-format
-msgid "Profiles"
-msgstr "Profiller"
-
-#: standalone/net_applet:102
-#, c-format
-msgid "Get Online Help"
-msgstr ""
-
-#: standalone/net_applet:335
-#, c-format
-msgid "Interactive Firewall automatic mode"
-msgstr ""
-
-#: standalone/net_applet:340
-#, c-format
-msgid "Always launch on startup"
-msgstr "Həmişə başlanğıcda işə sal"
-
-#: standalone/net_applet:344
-#, fuzzy, c-format
-msgid "Wireless networks"
-msgstr "Kabelsiz bağlantı"
-
-#: standalone/net_applet:429
-#, fuzzy, c-format
-msgid "Interactive Firewall: intrusion detected"
-msgstr "Atəş divarı quruluşu tapıldı!"
-
-#: standalone/net_applet:442
-#, fuzzy, c-format
-msgid "What do you want to do with this attacker?"
-msgstr "Həqiqətən də bu oyundan çıxmaq istəyirsiniz?"
-
-#: standalone/net_applet:445
-#, fuzzy, c-format
-msgid "Attack details"
-msgstr "Təfsilatsız"
-
-#: standalone/net_applet:449
-#, fuzzy, c-format
-msgid "Attack time: %s"
-msgstr "Gedişat: %s"
-
-#: standalone/net_applet:450
-#, c-format
-msgid "Network interface: %s"
-msgstr "Şəbəkə ara üzü: %s"
-
-#: standalone/net_applet:451
-#, fuzzy, c-format
-msgid "Attack type: %s"
-msgstr "Çatma şəkli: %s\n"
-
-#: standalone/net_applet:452
-#, c-format
-msgid "Protocol: %s"
-msgstr "Protokol: %s"
-
-#: standalone/net_applet:453
-#, fuzzy, c-format
-msgid "Attacker IP address: %s"
-msgstr "Kompüterin IP ünvanı:"
-
-#: standalone/net_applet:454
-#, fuzzy, c-format
-msgid "Attacker hostname: %s"
-msgstr "%s qovşaq adı verilir: "
-
-#: standalone/net_applet:457
-#, fuzzy, c-format
-msgid "Service attacked: %s"
-msgstr "Xidmət _növü:"
-
-#: standalone/net_applet:458
-#, fuzzy, c-format
-msgid "Port attacked: %s"
-msgstr "Qapı: %s"
-
-#: standalone/net_applet:460
-#, c-format
-msgid "Type of ICMP attack: %s"
-msgstr ""
-
-#: standalone/net_applet:465
-#, c-format
-msgid "Always blacklist (do not ask again)"
-msgstr ""
-
-#: standalone/net_monitor:57 standalone/net_monitor:62
-#, c-format
-msgid "Network Monitoring"
-msgstr "Şəbəkə İzlənməsi"
-
-#: standalone/net_monitor:98
-#, c-format
-msgid "Global statistics"
-msgstr "Qlobal statistikalar"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Instantaneous"
-msgstr "Ani"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Average"
-msgstr "Orta hesabla"
-
-#: standalone/net_monitor:102
-#, c-format
-msgid ""
-"Sending\n"
-"speed:"
-msgstr ""
-"Göndərmə\n"
-"sür'əti:"
-
-#: standalone/net_monitor:103
-#, c-format
-msgid ""
-"Receiving\n"
-"speed:"
-msgstr ""
-"Alış\n"
-"sür'əti:"
-
-#: standalone/net_monitor:107
-#, c-format
-msgid ""
-"Connection\n"
-"time: "
-msgstr ""
-"Bağlantı\n"
-"vaxtı:"
-
-#: standalone/net_monitor:114
-#, c-format
-msgid "Use same scale for received and transmitted"
-msgstr ""
-
-#: standalone/net_monitor:133
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Xahiş edirik, gözləyin, bağlantınız sınanır..."
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "İnternet bağlantısı kəsilir"
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Connecting to Internet "
-msgstr "İnternetə Bağlanır"
-
-#: standalone/net_monitor:226
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "İnternet bağlantısının kəsilməsi bacarılmadı."
-
-#: standalone/net_monitor:227
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "İnternet bağlantısını tamamilə kəs."
-
-#: standalone/net_monitor:229
-#, c-format
-msgid "Connection complete."
-msgstr "Bağlantı tamamlandı."
-
-#: standalone/net_monitor:230
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandriva Linux Control Center."
-msgstr ""
-"Bağlantı iflas etdi.\n"
-"Mandriva Linux İdarə Mərkəzindən qurğularınızı yoxlayın."
-
-#: standalone/net_monitor:335
-#, c-format
-msgid "Color configuration"
-msgstr "Rəng quraşdırması"
-
-#: standalone/net_monitor:383 standalone/net_monitor:403
-#, c-format
-msgid "sent: "
-msgstr "göndərilən:"
-
-#: standalone/net_monitor:390 standalone/net_monitor:407
-#, c-format
-msgid "received: "
-msgstr "alındı: "
-
-#: standalone/net_monitor:397
-#, c-format
-msgid "average"
-msgstr "orta hesabla"
-
-#: standalone/net_monitor:400
-#, c-format
-msgid "Local measure"
-msgstr "Yerli ölçü vahidi"
-
-#: standalone/net_monitor:461
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Diqqət, başqa internet bağlantısı aşkar edildi, güman ki şəbəkənizi istifadə "
-"edir"
-
-#: standalone/net_monitor:472
-#, c-format
-msgid "No internet connection configured"
-msgstr "İnternet bağlantısı quraşdırılmayıb"
-
-#: standalone/printerdrake:76
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "Qurulu çapçılar haqqında mə'lumat alınır..."
-
-#: standalone/printerdrake:128
-#, c-format
-msgid "%s Printer Management Tool"
-msgstr "%s Çapçı İdarə Vasitəsi"
-
-#: standalone/printerdrake:142 standalone/printerdrake:143
-#: standalone/printerdrake:144 standalone/printerdrake:145
-#: standalone/printerdrake:153 standalone/printerdrake:154
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Actions"
-msgstr "/_Gedişatlar"
-
-#: standalone/printerdrake:142 standalone/printerdrake:154
-#, c-format
-msgid "/_Add Printer"
-msgstr "/Çapçı Ə_lavə Et"
-
-#: standalone/printerdrake:143
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Əsas olaraq _müəyyən et"
-
-#: standalone/printerdrake:144
-#, c-format
-msgid "/_Edit"
-msgstr "/_Düzəlt"
-
-#: standalone/printerdrake:145
-#, c-format
-msgid "/_Delete"
-msgstr "/_Sil"
-
-#: standalone/printerdrake:146
-#, c-format
-msgid "/_Expert mode"
-msgstr "/_Mütəxəssis modu"
-
-#: standalone/printerdrake:151
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Yenilə"
-
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_CUPS'u quraşdır"
-
-#: standalone/printerdrake:171
-#, fuzzy, c-format
-msgid "/Configure _Auto Administration"
-msgstr "Uzaqdan İdarə"
-
-#: standalone/printerdrake:194
-#, c-format
-msgid "Search:"
-msgstr "Axtar:"
-
-#: standalone/printerdrake:197
-#, c-format
-msgid "Apply filter"
-msgstr "Filtri tətbiq et"
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Def."
-msgstr "Tan."
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Printer Name"
-msgstr "Çapçı Adı"
-
-#: standalone/printerdrake:224
-#, c-format
-msgid "Connection Type"
-msgstr "Bağlantı Növü:"
-
-#: standalone/printerdrake:231
-#, c-format
-msgid "Server Name"
-msgstr "Verici Adı"
-
-#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add Printer"
-msgstr "Çapçı Əlavə Et"
-
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Sistemə yeni çapçı əlavə et"
-
-#. -PO: "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set as default"
-msgstr "Əsas olaraq seç"
-
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Seçili olan çapçını əsas olaraq tə'yin et"
-
-#: standalone/printerdrake:245
-#, c-format
-msgid "Edit selected printer"
-msgstr "Seçili vericini düzəlt"
-
-#: standalone/printerdrake:248
-#, c-format
-msgid "Delete selected printer"
-msgstr "Seçili çapçını sil"
-
-#: standalone/printerdrake:251
-#, c-format
-msgid "Refresh the list"
-msgstr "Siyahını təzələ"
-
-#. -PO: "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS"
-msgstr "CUPS'u quraşdır"
-
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "CUPS çap sistemini quraşdır"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Enabled"
-msgstr "Fəal"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Disabled"
-msgstr "İşlədilə Bilməz"
-
-#: standalone/printerdrake:596
-#, c-format
-msgid "Authors: "
-msgstr "Müəlliflər:"
-
-#. -PO: here %s is the version number
-#: standalone/printerdrake:606
-#, fuzzy, c-format
-msgid "Printer Management %s"
-msgstr "Çapçı İdarəsi \n"
-
-#: standalone/scannerdrake:51
-#, fuzzy, c-format
-msgid ""
-"SANE packages need to be installed to use scanners.\n"
-"\n"
-"Do you want to install the SANE packages?"
-msgstr "%s paketi qurulmalıdır. Qurmaq istəyirsiniz?"
-
-#: standalone/scannerdrake:55
-#, fuzzy, c-format
-msgid "Aborting Scannerdrake."
-msgstr "Scannerdrake"
-
-#: standalone/scannerdrake:60
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-"Scannderdrake ilə darayıcını quraşdırmaq üçün lazım olan paketlər qurula "
-"bilmədi."
-
-#: standalone/scannerdrake:61
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Scannerdrake indi başladılmayacaq."
-
-#: standalone/scannerdrake:67 standalone/scannerdrake:508
-#, c-format
-msgid "Searching for configured scanners..."
-msgstr "Quraşdırılmış darayıvılar axtarılır ..."
-
-#: standalone/scannerdrake:71 standalone/scannerdrake:512
-#, c-format
-msgid "Searching for new scanners..."
-msgstr "Yeni darayıcılar axtarılır..."
-
-#: standalone/scannerdrake:79 standalone/scannerdrake:534
-#, c-format
-msgid "Re-generating list of configured scanners..."
-msgstr "Quraşdırılmış darayıcıların siyahısı yenidən yaradılır ..."
-
-#: standalone/scannerdrake:101
-#, fuzzy, c-format
-msgid "The %s is not supported by this version of %s."
-msgstr "%s Mandriva Linuxun bu buraxılışı tərəfindən dəstəklənmir."
-
-#: standalone/scannerdrake:104
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%2$s üstündə %1$s tapıldı, avtomatik quraşdırılsın?"
-
-#: standalone/scannerdrake:116
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
-"%s darayıcı mə'lumat bazasında deyil, onu əllə quraşdırmaq istəyirsiniz?"
-
-#: standalone/scannerdrake:131
-#, c-format
-msgid "Select a scanner model"
-msgstr "Darayıcı modelini seçin"
-
-#: standalone/scannerdrake:132
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: standalone/scannerdrake:133
-#, c-format
-msgid "Detected model: %s"
-msgstr "Aşkar edilən model: %s"
-
-#: standalone/scannerdrake:136
-#, c-format
-msgid "Port: %s"
-msgstr "Qapı: %s"
-
-#: standalone/scannerdrake:138 standalone/scannerdrake:141
-#, c-format
-msgid " (UNSUPPORTED)"
-msgstr ""
-
-#: standalone/scannerdrake:144
-#, fuzzy, c-format
-msgid "The %s is not supported under Linux."
-msgstr "%s Mandriva Linuxun bu buraxılışı tərəfindən dəstəklənmir."
-
-#: standalone/scannerdrake:171 standalone/scannerdrake:185
-#, c-format
-msgid "Do not install firmware file"
-msgstr "Firmware faylını qurma"
-
-#: standalone/scannerdrake:175 standalone/scannerdrake:227
-#, c-format
-msgid ""
-"It is possible that your %s needs its firmware to be uploaded everytime when "
-"it is turned on."
-msgstr ""
-
-#: standalone/scannerdrake:176 standalone/scannerdrake:228
-#, c-format
-msgid "If this is the case, you can make this be done automatically."
-msgstr ""
-
-#: standalone/scannerdrake:177 standalone/scannerdrake:231
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware file for your scanner so that it "
-"can be installed."
-msgstr ""
-
-#: standalone/scannerdrake:178 standalone/scannerdrake:232
-#, 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 ""
-
-#: standalone/scannerdrake:180 standalone/scannerdrake:239
-#, c-format
-msgid "Install firmware file from"
-msgstr "Firmware-in qurulacağı mövqe"
-
-#: standalone/scannerdrake:200
-#, c-format
-msgid "Select firmware file"
-msgstr "Firmware faylını seç"
-
-#: standalone/scannerdrake:203 standalone/scannerdrake:262
-#, c-format
-msgid "The firmware file %s does not exist or is unreadable!"
-msgstr ""
-
-#: standalone/scannerdrake:226
-#, c-format
-msgid ""
-"It is possible that your scanners need their firmware to be uploaded "
-"everytime when they are turned on."
-msgstr ""
-
-#: standalone/scannerdrake:230
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware files for your scanners so that it "
-"can be installed."
-msgstr ""
-
-#: standalone/scannerdrake:233
-#, 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 ""
-
-#: standalone/scannerdrake:235
-#, c-format
-msgid "Install firmware for the"
-msgstr ""
-
-#: standalone/scannerdrake:258
-#, c-format
-msgid "Select firmware file for the %s"
-msgstr "%s üçün firmware faylını seçin"
-
-#: standalone/scannerdrake:276
-#, fuzzy, c-format
-msgid "Could not install the firmware file for the %s!"
-msgstr "Firmware faylını qurma"
-
-#: standalone/scannerdrake:289
-#, c-format
-msgid "The firmware file for your %s was successfully installed."
-msgstr ""
-
-#: standalone/scannerdrake:299
-#, c-format
-msgid "The %s is unsupported"
-msgstr "%s dəstəklənmir"
-
-#: standalone/scannerdrake:304
-#, fuzzy, 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 tərəfindən quraşdırılmalıdır.\n"
-"Printerdrake'ni Mandriva Linux İdarə Mərkəzindəki Avadanlıq bölməsindən işə "
-"sala bilərsiniz."
-
-#: standalone/scannerdrake:322
-#, fuzzy, c-format
-msgid "Setting up kernel modules..."
-msgstr "İstifadəçi mə'lumatlarını qururam..."
-
-#: standalone/scannerdrake:332 standalone/scannerdrake:339
-#: standalone/scannerdrake:369
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Mövcud qapıları avtomatik təsbit et"
-
-#: standalone/scannerdrake:334 standalone/scannerdrake:380
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Xahiş edirik, %s'ın bağlı olduğu avadanlığı seçin"
-
-#: standalone/scannerdrake:335
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Qeyd: Parallel qapılar avtomatik aşkar edilə bilməz)"
-
-#: standalone/scannerdrake:337 standalone/scannerdrake:382
-#, c-format
-msgid "choose device"
-msgstr "avadanlığı seçin"
-
-#: standalone/scannerdrake:371
-#, c-format
-msgid "Searching for scanners..."
-msgstr "Darayıcılar axtarılır..."
-
-#: standalone/scannerdrake:407 standalone/scannerdrake:414
-#, fuzzy, c-format
-msgid "Attention!"
-msgstr "Cazibə"
-
-#: standalone/scannerdrake:408
-#, 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 ""
+msgid "All servers"
+msgstr "Verici əlavə et"
-#: standalone/scannerdrake:409 standalone/scannerdrake:418
+#: timezone.pm:183
#, c-format
-msgid ""
-"More info in the driver's manual page. Run the command \"man sane-%s\" to "
-"read it."
+msgid "Global"
msgstr ""
-#: standalone/scannerdrake:411 standalone/scannerdrake:420
+#: timezone.pm:186
#, fuzzy, c-format
-msgid ""
-"After that you may scan documents using \"XSane\" or \"Kooka\" from "
-"Multimedia/Graphics in the applications menu."
-msgstr ""
-"Sizin %s darayıcınız quraşdırıldı.\n"
-"İndi siz Multimediya/Qrafika menyusundakı \"XSane\"i istifadə edərək "
-"sənədləri daraya bilərsiniz."
-
-#: standalone/scannerdrake:415
-#, c-format
-msgid ""
-"Your %s has been configured, but it is possible that additional manual "
-"adjustments are needed to get it to work. "
-msgstr ""
-
-#: standalone/scannerdrake:416
-#, 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 ""
-
-#: standalone/scannerdrake:417
-#, c-format
-msgid "edit the configuration file /etc/sane.d/%s.conf. "
-msgstr ""
+msgid "Africa"
+msgstr "Cənubi Afrika"
-#: standalone/scannerdrake:423
+#: timezone.pm:187
#, fuzzy, 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 ""
-"Sizin %s darayıcınız quraşdırıldı.\n"
-"İndi siz Multimediya/Qrafika menyusundakı \"XSane\"i istifadə edərək "
-"sənədləri daraya bilərsiniz."
-
-#: standalone/scannerdrake:448
-#, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr ""
-"Sisteminizdə aşağıdakı darayıcılar\n"
-"\n"
-"%s\n"
-"mövcuddur.\n"
-
-#: standalone/scannerdrake:449
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr ""
-"Açağıdakı darayıcı\n"
-"\n"
-"%s\n"
-"sisteminizdə mövcuddur.\n"
-
-#: standalone/scannerdrake:452 standalone/scannerdrake:455
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "Sisteminizdə darayı tapıla bilmədi.\n"
-
-#: standalone/scannerdrake:469
-#, c-format
-msgid "Search for new scanners"
-msgstr "Yeni darayıcıları axtar"
-
-#: standalone/scannerdrake:475
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Darayıcını əllə əlavə et"
-
-#: standalone/scannerdrake:482
-#, c-format
-msgid "Install/Update firmware files"
-msgstr "Fimware fayllarını Qur/Yenilə"
-
-#: standalone/scannerdrake:488
-#, c-format
-msgid "Scanner sharing"
-msgstr "Darayıcı bölüşməsi"
-
-#: standalone/scannerdrake:547 standalone/scannerdrake:712
-#, c-format
-msgid "All remote machines"
-msgstr "Bütün uzaq sistemlər"
-
-#: standalone/scannerdrake:559 standalone/scannerdrake:862
-#, c-format
-msgid "This machine"
-msgstr "Bu sistem"
-
-#: standalone/scannerdrake:599
-#, 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 ""
-"Burada siz, sisteminizə bağlı darayıcıların uzaqdakı sistemlər və hansıları "
-"tərəfindən istifadə edilə biləcəyini tə'yin edə bilərsiniz."
+msgid "Asia"
+msgstr "Avstriya"
-#: standalone/scannerdrake:600
+#: timezone.pm:188
#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
+msgid "Europe"
msgstr ""
-"Eyni zamanda, uzaqdakı darayıcıların bu sistemdə istifadəyə açıq olmasını da "
-"burada seçə bilərsiniz."
-#: standalone/scannerdrake:603
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr "Bu sistemdəki darayıcılar diqər sistemlər üçün də açıqdır"
-
-#: standalone/scannerdrake:605
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Qovşaqlar üçün darayıcı bölüşməsi:"
-
-#: standalone/scannerdrake:619
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Uzaq kompüterlərdəki darayıcıları işlət"
-
-#: standalone/scannerdrake:622
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Qovşaqlardakı darayıcıları işlət:"
-
-#: standalone/scannerdrake:649 standalone/scannerdrake:721
-#: standalone/scannerdrake:871
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Yerli çapçıların bölüşülməsi"
-
-#: standalone/scannerdrake:650
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr "Yerli dayarıcılara yetişilə biləcək sistemlər bunlardır:"
-
-#: standalone/scannerdrake:661 standalone/scannerdrake:811
-#, c-format
-msgid "Add host"
-msgstr "Qovşaq əlavə et"
-
-#: standalone/scannerdrake:667 standalone/scannerdrake:817
-#, c-format
-msgid "Edit selected host"
-msgstr "Seçili qovşağı düzəlt"
-
-#: standalone/scannerdrake:676 standalone/scannerdrake:826
-#, c-format
-msgid "Remove selected host"
-msgstr "Seçili qovşağı sil"
-
-#: standalone/scannerdrake:700 standalone/scannerdrake:708
-#: standalone/scannerdrake:713 standalone/scannerdrake:759
-#: standalone/scannerdrake:850 standalone/scannerdrake:858
-#: standalone/scannerdrake:863 standalone/scannerdrake:909
-#, c-format
-msgid "Name/IP address of host:"
-msgstr "Qovşağın Adı/IP ünvanı:"
-
-#: standalone/scannerdrake:722 standalone/scannerdrake:872
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr "Yerli darayıcıların istifadəyə hansı qovşaqlarda açıq olacağını seçin:"
-
-#: standalone/scannerdrake:733 standalone/scannerdrake:883
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Bir qovşaq adı ya da IP ünvanı daxil etməlisiniz.\n"
-
-#: standalone/scannerdrake:744 standalone/scannerdrake:894
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "Bu qovşaq onsuzda siyahıdadır, yenidən əlavə edilə bilməz.\n"
-
-#: standalone/scannerdrake:799
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Uzaq darayıcıların istifadəsi"
-
-#: standalone/scannerdrake:800
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "Bunlar, darayıcılarının istifadə ediləcəyi sistemlərdir:"
-
-#: standalone/scannerdrake:957
+#: timezone.pm:189
#, fuzzy, 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 "%s paketi qurulmalıdır. Qurmaq istəyirsiniz?"
-
-#: standalone/scannerdrake:961 standalone/scannerdrake:965
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "Darayıcı(ları)nız şəbəkə üstündə istifadə edilə bilməyəcək."
-
-#: standalone/service_harddrake:113
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "\"%s\" sinifindəki bəzi avadanlıqlar çıxarıldı:\n"
-
-#: standalone/service_harddrake:114
-#, c-format
-msgid "- %s was removed\n"
-msgstr ""
-
-#: standalone/service_harddrake:117
-#, c-format
-msgid "Some devices were added: %s\n"
-msgstr "Bə'zi avadanlıqlar əlavə edildi: %s\n"
-
-#: standalone/service_harddrake:118
-#, c-format
-msgid "- %s was added\n"
-msgstr ""
-
-#: standalone/service_harddrake:235
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "Avadanlıq sınaması fəaliyyətdədir"
-
-#: standalone/service_harddrake_confirm:7
-#, c-format
-msgid "Hardware changes in \"%s\" class (%s seconds to answer)"
-msgstr ""
+msgid "North America"
+msgstr "Cənubi Afrika"
-#: standalone/service_harddrake_confirm:8
+#: timezone.pm:190
#, fuzzy, c-format
-msgid "Do you want to run the appropriate config tool?"
-msgstr "Qurğuları sınamaq istəyirsiniz?"
-
-#: steps.pm:14
-#, c-format
-msgid "Language"
-msgstr "Dil"
-
-#: steps.pm:15
-#, c-format
-msgid "License"
-msgstr "Lisenziya"
-
-#: steps.pm:16
-#, c-format
-msgid "Configure mouse"
-msgstr "Siçan qurğuları"
-
-#: steps.pm:17
-#, c-format
-msgid "Hard drive detection"
-msgstr "Sabit disklərin aşkar edilməsi"
-
-#: steps.pm:18
-#, c-format
-msgid "Select installation class"
-msgstr "Qurulum sinifinin seçimi"
-
-#: steps.pm:19
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Klaviatura seçimi"
-
-#: steps.pm:22
-#, c-format
-msgid "Format partitions"
-msgstr "Bölmələrin şəkilləndirilməsi"
-
-#: steps.pm:23
-#, c-format
-msgid "Choose packages to install"
-msgstr "Qurulacaq paketlərin seçimi"
-
-#: steps.pm:24
-#, c-format
-msgid "Install system"
-msgstr "Sistemin qurulumu"
+msgid "Oceania"
+msgstr "Makedoniya"
-#: steps.pm:25
+#: timezone.pm:191
#, fuzzy, c-format
-msgid "Administrator password"
-msgstr "Ali istifadəçi şifrəsini tə'yin et"
-
-#: steps.pm:26
-#, c-format
-msgid "Add a user"
-msgstr "İstifadəçi əlavə edilməsi"
-
-#: steps.pm:27
-#, c-format
-msgid "Configure networking"
-msgstr "Şəbəkənin quraşdırılması"
-
-#: steps.pm:28
-#, c-format
-msgid "Install bootloader"
-msgstr "Sistem yükləyicisinin qurulumu"
-
-#: steps.pm:29
-#, c-format
-msgid "Configure X"
-msgstr "X quraşdırılması"
+msgid "South America"
+msgstr "Cənubi Afrika"
-#: steps.pm:31
+#: timezone.pm:200
#, c-format
-msgid "Configure services"
-msgstr "Xidmətləri quraşdır"
+msgid "Hong Kong"
+msgstr "Honq Konq"
-#: steps.pm:32
+#: timezone.pm:237
#, c-format
-msgid "Install updates"
-msgstr "Yeniləmələrin qurulması"
+msgid "Russian Federation"
+msgstr "Rusiya Federasiyası"
-#: steps.pm:33
+#: timezone.pm:245
#, c-format
-msgid "Exit install"
-msgstr "Qurulumun sonu"
+msgid "Yugoslavia"
+msgstr "Yugoslaviya"
-#: ugtk2.pm:899
+#: ugtk2.pm:788
#, c-format
msgid "Is this correct?"
msgstr "Bu düzdür?"
-#: ugtk2.pm:959
+#: ugtk2.pm:848
#, fuzzy, c-format
msgid "No file chosen"
msgstr "fayl seçicisi"
-#: ugtk2.pm:961
+#: ugtk2.pm:850
#, fuzzy, c-format
msgid "You have chosen a file, not a directory"
msgstr "Bir qovluq deyil, bir faylı bildirmək məcburiyyətindəsən .\n"
-#: ugtk2.pm:963
+#: ugtk2.pm:852
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr ""
"'/' adları sadəcə bir qovluq ola bilər, qətiyyan'iyyen bir açar ola bilməz"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, fuzzy, c-format
msgid "No such directory"
msgstr "Belə cərgə yoxdur!"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, fuzzy, c-format
msgid "No such file"
msgstr "Belə bir fayl yoxdur : `%s'\n"
-#: ugtk2.pm:1046
+#: ugtk2.pm:933
#, c-format
msgid "Expand Tree"
msgstr "Ağacı Aç"
-#: ugtk2.pm:1047
+#: ugtk2.pm:934
#, c-format
msgid "Collapse Tree"
msgstr "Ağacı Bağla"
-#: ugtk2.pm:1048
+#: ugtk2.pm:935
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "Otaq və grup sıralaması arasında gəz"
@@ -26118,1636 +6728,23 @@ msgstr ""
msgid "Installation failed"
msgstr "Qurulum bacarılmadı"
-#~ msgid ""
-#~ "Copyright (C) 2001-2002 by Mandriva \n"
-#~ "\n"
-#~ "\n"
-#~ " DUPONT Sebastien (original version)\n"
-#~ "\n"
-#~ " CHAUMETTE Damien <dchaumette@mandriva.com>\n"
-#~ "\n"
-#~ " VIGNAUD Thierry <tvignaud@mandriva.com>"
-#~ msgstr ""
-#~ "Müəllif Hüququ (C) 2001-2002 Mandriva \n"
-#~ "\n"
-#~ "\n"
-#~ " DUPONT Sebastien (orijinal buraxılış)\n"
-#~ "\n"
-#~ " CHAUMETTE Damien <dchaumette@mandriva.com>\n"
-#~ "\n"
-#~ " VIGNAUD Thierry <tvignaud@mandriva.com>"
-
-#~ msgid "click here if you are sure."
-#~ msgstr "əminsəniz buraya basın."
-
-#~ msgid "here if no."
-#~ msgstr "yoxdursa, burada."
-
-#~ msgid "Remove List"
-#~ msgstr "Siyahını Sil"
-
-#, fuzzy
-#~ msgid "Account:"
-#~ msgstr "Bağla"
-
-#~ msgid "Hostname:"
-#~ msgstr "Qovşaq adı:"
-
-#, fuzzy
-#~ msgid "Cancel setup"
-#~ msgstr "Ləğv Et"
-
-#~ msgid ""
-#~ " - Create Etherboot Enabled Boot Images:\n"
-#~ " \tTo boot a kernel via etherboot, a special kernel/initrd image "
-#~ "must be created.\n"
-#~ " \tmkinitrd-net does much of this work and drakTermServ is just a "
-#~ "graphical \n"
-#~ " \tinterface to help manage/customize these images. To create the "
-#~ "file \n"
-#~ " \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as "
-#~ "an include in \n"
-#~ " \tdhcpd.conf, you should create the etherboot images for at least "
-#~ "one full kernel."
-#~ msgstr ""
-#~ " - Etherboot Dəstəkli Açılış Əksləri Yaradın:\n"
-#~ " \tÇəyirdəyi etherboot vasitəsi ilə açmaq üçün, xüsusi kernel/"
-#~ "initrd əksi yaradılmalıdır.\n"
-#~ " \tmkinitrd-net bu işin əsas hissəsini həll edir və drakTermServ "
-#~ "yalnız bu əksləri idarə\n"
-#~ " \tetmək/xüsusiləşdirmək üçün bir qrafiki ara üzdür. \n"
-#~ " \tdhcpd.conf faylı içində inlcude olaraq çağırılan \n"
-#~ " \t/etc/dhcpd.conf.etherboot-pcimap.include faylını yaratmaq "
-#~ "üçün,\n"
-#~ " \tən az bir tam çəyirdək üçün etherboot əksləri yaratmalısınız."
-
-#~ msgid ""
-#~ " - Maintain /etc/dhcpd.conf:\n"
-#~ " \tTo net boot clients, each client needs a dhcpd.conf entry, "
-#~ "assigning an IP \n"
-#~ " \taddress and net boot images to the machine. drakTermServ helps "
-#~ "create/remove \n"
-#~ " \tthese entries.\n"
-#~ "\t\t\t\n"
-#~ " \t(PCI cards may omit the image - etherboot will request the "
-#~ "correct image. \n"
-#~ "\t\t\tYou should also consider that when etherboot looks for the images, "
-#~ "it expects \n"
-#~ "\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk."
-#~ "nbi).\n"
-#~ "\t\t\t \n"
-#~ " \tA typical dhcpd.conf stanza to support a diskless client looks "
-#~ "like:"
-#~ msgstr ""
-#~ " - /etc/dhcpd.conf'u Saxla:\n"
-#~ " \t\tŞəbəkə açılış alıcılarına,hər alıcının IP ünvanı tə'yin edən "
-#~ "dhcpd.conf giriçi mövcud olmalıdır\n"
-#~ " \t\tvə sistemə şəbəkə açılış əksləri üçün. drakTermServ bu "
-#~ "girişləri yaratmaq/silmək üçün sizə yardım edir.\n"
-#~ "\t\t\t\n"
-#~ " \t\t(PCİ kartları əksi işlətməyə bilər - etherboot düzgün əksi "
-#~ "istəyəcəkdir. Siz, eyni zamanda\n"
-#~ " \t\tetherboot'un əksləri axtarırkən, bu cür ad gözləyir:\n"
-#~ " \t\tboot-3c59x.nbi yalnız boot-3c59x.2.4.19-16mdk.nbi kimi YOX).\n"
-#~ "\t\t\t \n"
-#~ " \t\tTipik dhcpd.conf stanza disksiz alıcıları dəstəkləyir və buna "
-#~ "bənzəyir: "
-
-# needs editing (Metin)
-#~ msgid ""
-#~ " While you can use a pool of IP addresses, rather than setup a "
-#~ "specific entry for\n"
-#~ " a client machine, using a fixed address scheme facilitates using "
-#~ "the functionality\n"
-#~ " of client-specific configuration files that ClusterNFS provides.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#type' entry is only used by drakTermServ. Clients "
-#~ "can either be 'thin'\n"
-#~ " or 'fat'. Thin clients run most software on the server via "
-#~ "XDMCP, while fat clients run \n"
-#~ " most software on the client machine. A special inittab, %s is\n"
-#~ " written for thin clients. System config files xdm-config, kdmrc, "
-#~ "and gdm.conf are \n"
-#~ " modified if thin clients are used, to enable XDMCP. Since there "
-#~ "are security issues in \n"
-#~ " using XDMCP, hosts.deny and hosts.allow are modified to limit "
-#~ "access to the local\n"
-#~ " subnet.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#hdw_config' entry is also only used by drakTermServ. "
-#~ "Clients can either \n"
-#~ " be 'true' or 'false'. 'true' enables root login at the client "
-#~ "machine and allows local \n"
-#~ " hardware configuration of sound, mouse, and X, using the 'drak' "
-#~ "tools. This is enabled \n"
-#~ " by creating separate config files associated with the client's IP "
-#~ "address and creating \n"
-#~ " read/write mount points to allow the client to alter the file. "
-#~ "Once you are satisfied \n"
-#~ " with the configuration, you can remove root login privileges from "
-#~ "the client.\n"
-#~ "\t\t\t\n"
-#~ " Note: You must stop/start the server after adding or changing "
-#~ "clients."
-#~ msgstr ""
-#~ " While you can use a pool of IP addresses, rather than setup a "
-#~ "specific entry for\n"
-#~ " a client machine, using a fixed address scheme facilitates using "
-#~ "the functionality\n"
-#~ " of client-specific configuration files that ClusterNFS provides.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#type' entry is only used by drakTermServ. Clients "
-#~ "can either be 'thin'\n"
-#~ " or 'fat'. Thin clients run most software on the server via "
-#~ "XDMCP, while fat clients run \n"
-#~ " most software on the client machine. A special inittab, %s is\n"
-#~ " written for thin clients. System config files xdm-config, kdmrc, "
-#~ "and gdm.conf are \n"
-#~ " modified if thin clients are used, to enable XDMCP. Since there "
-#~ "are security issues in \n"
-#~ " using XDMCP, hosts.deny and hosts.allow are modified to limit "
-#~ "access to the local\n"
-#~ " subnet.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#hdw_config' entry is also only used by drakTermServ. "
-#~ "Clients can either \n"
-#~ " be 'true' or 'false'. 'true' enables root login at the client "
-#~ "machine and allows local \n"
-#~ " hardware configuration of sound, mouse, and X, using the 'drak' "
-#~ "tools. This is enabled \n"
-#~ " by creating separate config files associated with the client's IP "
-#~ "address and creating \n"
-#~ " read/write mount points to allow the client to alter the file. "
-#~ "Once you are satisfied \n"
-#~ " with the configuration, you can remove root login privileges from "
-#~ "the client.\n"
-#~ "\t\t\t\n"
-#~ " Note: You must stop/start the server after adding or changing "
-#~ "clients."
-
-# needs editing (Metin)
-#~ msgid ""
-#~ " - Maintain /etc/exports:\n"
-#~ " \tClusternfs allows export of the root filesystem to diskless "
-#~ "clients. drakTermServ\n"
-#~ " \tsets up the correct entry to allow anonymous access to the root "
-#~ "filesystem from\n"
-#~ " \tdiskless clients.\n"
-#~ "\n"
-#~ " \tA typical exports entry for clusternfs is:\n"
-#~ " \t\t\n"
-#~ " \t/\t\t\t\t\t(ro,all_squash)\n"
-#~ " \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-#~ "\t\t\t\n"
-#~ " \tWith SUBNET/MASK being defined for your network."
-#~ msgstr ""
-#~ " - Maintain /etc/exports:\n"
-#~ " \tClusternfs allows export of the root filesystem to diskless "
-#~ "clients. drakTermServ\n"
-#~ " \tsets up the correct entry to allow anonymous access to the root "
-#~ "filesystem from\n"
-#~ " \tdiskless clients.\n"
-#~ "\n"
-#~ " \tA typical exports entry for clusternfs is:\n"
-#~ " \t\t\n"
-#~ " \t/\t\t\t\t\t(ro,all_squash)\n"
-#~ " \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-#~ "\t\t\t\n"
-#~ " \tWith SUBNET/MASK being defined for your network."
-
-# needs editing (Metin)
-#~ msgid ""
-#~ " - Maintain %s:\n"
-#~ " \tFor users to be able to log into the system from a diskless "
-#~ "client, their entry in\n"
-#~ " \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
-#~ " \thelps in this respect by adding or removing system users from "
-#~ "this file."
-#~ msgstr ""
-#~ " - Maintain %s:\n"
-#~ " \tFor users to be able to log into the system from a diskless "
-#~ "client, their entry in\n"
-#~ " \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
-#~ " \thelps in this respect by adding or removing system users from "
-#~ "this file."
-
-#~ msgid ""
-#~ " - Per client %s:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tdrakTermServ will help create these files."
-#~ msgstr ""
-#~ " - Alıcı başına %s:\n"
-#~ " \t\tclusternfs ilə, hər disksiz alıcının vericinin kök fayl "
-#~ "sistemində özünə məxsus\n"
-#~ " \t\tquraşdırma faylları ola bilər. Yerli alıcı "
-#~ "avadanlığıquraşdırmasına icazə verərək, \n"
-#~ " \t\tdrakTermServ bu faylları yaratmaqda yardımçı olacaq."
-
-# needs editing (Metin)
-#~ msgid ""
-#~ " - Per client system configuration files:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tclients can customize files such as /etc/modules.conf, /etc/"
-#~ "sysconfig/mouse, \n"
-#~ " \t/etc/sysconfig/keyboard on a per-client basis.\n"
-#~ "\n"
-#~ " Note: Enabling local client hardware configuration does enable "
-#~ "root login to the terminal \n"
-#~ " server on each client machine that has this feature enabled. "
-#~ "Local configuration can be\n"
-#~ " turned back off, retaining the configuration files, once the "
-#~ "client machine is configured."
-#~ msgstr ""
-#~ " - Per client system configuration files:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tclients can customize files such as /etc/modules.conf, /etc/"
-#~ "sysconfig/mouse, \n"
-#~ " \t/etc/sysconfig/keyboard on a per-client basis.\n"
-#~ "\n"
-#~ " Note: Enabling local client hardware configuration does enable "
-#~ "root login to the terminal \n"
-#~ " server on each client machine that has this feature enabled. "
-#~ "Local configuration can be\n"
-#~ " turned back off, retaining the configuration files, once the "
-#~ "client machine is configured."
-
-#~ msgid ""
-#~ " - /etc/xinetd.d/tftp:\n"
-#~ " \tdrakTermServ will configure this file to work in conjunction "
-#~ "with the images created\n"
-#~ " \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve "
-#~ "up the boot image to \n"
-#~ " \teach diskless client.\n"
-#~ "\n"
-#~ " \tA typical TFTP configuration file looks like:\n"
-#~ " \t\t\n"
-#~ " \tservice tftp\n"
-#~ "\t\t\t{\n"
-#~ " disable = no\n"
-#~ " socket_type = dgram\n"
-#~ " protocol = udp\n"
-#~ " wait = yes\n"
-#~ " user = root\n"
-#~ " server = /usr/sbin/in.tftpd\n"
-#~ " server_args = -s /var/lib/tftpboot\n"
-#~ " \t}\n"
-#~ " \t\t\n"
-#~ " \tThe changes here from the default installation are changing the "
-#~ "disable flag to\n"
-#~ " \t'no' and changing the directory path to /var/lib/tftpboot, "
-#~ "where mkinitrd-net\n"
-#~ " \tputs its images."
-#~ msgstr ""
-#~ " - /etc/xinetd.d/tftp:\n"
-#~ " \t\tdrakTermServ bu faylı mkinitrd-net-in yaratdığı əkslərləvə /"
-#~ "etc/dhcpd.conf\n"
-#~ " \t\t ilə bərabər işləməsi üçün hər disksiz alıcı üçün "
-#~ "quraşdıracaq \n"
-#~ " \t\tTipik quraşdırma faylı buna bənzəyir:\n"
-#~ " \t\t\n"
-#~ " \tservice tftp\n"
-#~ "\t\t\t{\n"
-#~ " disable = no\n"
-#~ " socket_type = dgram\n"
-#~ " protocol = udp\n"
-#~ " wait = yes\n"
-#~ " user = root\n"
-#~ " server = /usr/sbin/in.tftpd\n"
-#~ " server_args = -s /var/lib/tftpboot\n"
-#~ " \t\t}"
-
-#~ msgid "Configuration changed - restart clusternfs/dhcpd?"
-#~ msgstr "Qurğu dəyişdirildi - clusternfs/dhcpd yenidən başladılsın?"
-
-#, fuzzy
-#~ msgid ""
-#~ "The following media have been found and will be used during install: %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do you have a supplementary installation media to configure?"
-#~ msgstr "%s ara üzünüz var?"
-
-#~ msgid ""
-#~ "Allow an ordinary user to mount the file system. The\n"
-#~ "name of the mounting user is written to mtab so that he can unmount the "
-#~ "file\n"
-#~ "system again. This option implies the options noexec, nosuid, and nodev\n"
-#~ "(unless overridden by subsequent options, as in the option line\n"
-#~ "user,exec,dev,suid )."
-#~ msgstr ""
-#~ "Sıravi istifadəçiyə fayl sistemini bağlama (mount) etmə icazəsi ver.\n"
-#~ "Bağlama hüququ olan istifadəçinin adı daha sonra fayl sistemi ayıra "
-#~ "bilməsi üşün mtab faylına qeyd edilir.\n"
-#~ "Bu seçim noexec, nosuid, və nodev seçimlərini nəzərə alır."
-
-#~ msgid "Unknown Model"
-#~ msgstr "Namə'lum Model"
-
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3000/3200/3300/4345 with scanner, DeskJet 450, "
-#~ "Sony IJP-V100), an HP PhotoSmart or an HP LaserJet 2200?"
-#~ msgstr ""
-#~ "Çapçınız HP ya da Sony'dən çox-funksiyalı avadanlıqdır (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3000/3200/3300/4345 darayıcı ilə, DeskJet 450, "
-#~ "Sony IJP-V100), HP PhotoSmart ya da HP LaserJet 2200?"
-
-#~ msgid "Installing mtools packages..."
-#~ msgstr "mtools paketləri qurulur..."
-
-#, fuzzy
-#~ msgid "Photo memory card access on the %s will not be possible."
-#~ msgstr ""
-#~ "HP çox-funksiyalı avadanlığınız üstündə foto yaddaş kartına səlahiyyət"
-
-#~ msgid "Scanning on your HP multi-function device"
-#~ msgstr "HP çox-funksiyalı avadanlığınız üstündə axtarılır"
-
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr ""
-#~ "HP çox-funksiyalı avadanlığınız üstündə foto yaddaş kartına səlahiyyət"
-
-#~ msgid "Printing/Scanning/Photo Cards on \"%s\""
-#~ msgstr "\"%s\" üstündə Çap/Darama/Foto Kartları"
-
-#~ msgid "Printing/Scanning on \"%s\""
-#~ msgstr "\"%s\" üstündə çap etmə/darama"
-
-#~ msgid "Printing/Photo Card Access on \"%s\""
-#~ msgstr "\"%s\" üstündə Printing/Photo Card Access"
-
-#, fuzzy
-#~ msgid ""
-#~ "Your multi-function device was configured automatically to be able to "
-#~ "scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to "
-#~ "specify the scanner when you have more than one) from the command line or "
-#~ "with the graphical interfaces \"xscanimage\" or \"xsane\". If you are "
-#~ "using the GIMP, you can also scan by choosing the appropriate point in "
-#~ "the \"File\"/\"Acquire\" menu. Call also \"man scanimage\" on the command "
-#~ "line to get more information.\n"
-#~ "\n"
-#~ "You do not need to run \"scannerdrake\" for setting up scanning on this "
-#~ "device, you only need to use \"scannerdrake\" if you want to share the "
-#~ "scanner on the network."
-#~ msgstr ""
-#~ "Çox-funksiyalı avadanlığınız avtomatik daraya bilmək üçün quraşdırılıb. "
-#~ "İndi siz əmr sətirindən \"scanimage\" ilə (birdən çox darayıcınız varsa,"
-#~ "\"scanimage -d hp:%s\" ilə darayıcınızı bildirin) ya da qrafiki ara üzdə "
-#~ "işləyən\"xscanimage\" ya da \"xsane\" proqramlarıyla darama edə "
-#~ "bilərsiniz. Əgər GIMP işlədirsinizsə, eyni zamanda \"Fayl\"/\"Al\" "
-#~ "menyusundan bunu həyata keçirə bilərsiniz. Ətraflı mə'lumat üçün əmr "
-#~ "sətirindəya da fayl idarəçinizdə \"man scanimage\" əmrini verin.\n"
-#~ "Bu avadanlıq üçün \"scannerdrake\"ni işlətməyin!"
-
-#~ msgid ""
-#~ "Your printer was configured automatically to give you access to the photo "
-#~ "card drives from your PC. Now you can access your photo cards using the "
-#~ "graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -"
-#~ "> \"MTools File Manager\") or the command line utilities \"mtools"
-#~ "\" (enter \"man mtools\" on the command line for more info). You find the "
-#~ "card's file system under the drive letter \"p:\", or subsequent drive "
-#~ "letters when you have more than one HP printer with photo card drives. In "
-#~ "\"MtoolsFM\" you can switch between drive letters with the field at the "
-#~ "upper-right corners of the file lists."
-#~ msgstr ""
-#~ "Çapçınız avtomatik olaraq sisteminizdəki foto kart sürücülərinə yetişmək "
-#~ "üzrə quraşdırılıb. Artıq foto kartlarınıza \"MtoolsFM\" adlı qrafiki "
-#~ "tə'minat ilə (Menyuda \"Tə'minatlar\" -> \"Fayl vasitələri\" -> \"MTools "
-#~ "Fayl İdarəçisi\") ya da \"mtools\" əmr sətiri ilə (əmr sətirində \"man "
-#~ "mtools\" yazıb mə'lumat ala bilərsiniz) yetişə bilərsiniz. Kartın fayl "
-#~ "sisteminə \"p:\" sürücü hərfindən, dahaçox foto kartlı HP çapçınız varsa, "
-#~ "ondan sonra gələn hərflərdən yetişə bilərsiniz. \"MtoolsFM\"da sürücü "
-#~ "hərfləri arasında keçişi fayl siyahılarının sağ üst güncündəki sahədən "
-#~ "həyata keçirə bilərsiniz."
-
-#~ msgid "Custom setup/crontab entry:"
-#~ msgstr "Xüsusi setup/crontab girişi:"
-
-#~ msgid "Note that currently all 'net' media also use the hard drive."
-#~ msgstr ""
-#~ "Qeyd edin ki hazırda bütün 'net' mediyaları da eyni zamanda sabit disk "
-#~ "işlədir."
-
-#~ msgid ""
-#~ "Before installing any fonts, be sure that you have the right to use and "
-#~ "install them on your system.\n"
-#~ "\n"
-#~ "-You can install the fonts the normal way. In rare cases, bogus fonts may "
-#~ "hang up your X Server."
-#~ msgstr ""
-#~ "Yazı növlərini normal yolla qura bilərsiniz. Çox nadir də olsa, saxta və "
-#~ "qondarma yazı növləri\n"
-#~ "X Vericinizi dondura bilər. Bu vəziyyətdə, Ctrl+Alt+Backspace düymələrinə "
-#~ "eyni anda basın."
-
-#~ msgid ""
-#~ "%s cannot be displayed \n"
-#~ ". No Help entry of this type\n"
-#~ msgstr ""
-#~ "%s göstərilə bilmir \n"
-#~ ". Bu növ üçün Yardım girişi yoxdur\n"
-
-#~ msgid ""
-#~ "\n"
-#~ "Please check all options that you need.\n"
-#~ msgstr ""
-#~ "\n"
-#~ "Xahiş edirik, istədiyiniz bütün seçimləri seçin.\n"
-
-#~ msgid ""
-#~ "These options can backup and restore all files in your /etc directory.\n"
-#~ msgstr ""
-#~ "Bu seçim, /etc cərgənizdəki bütün faylların ehtiyat nüsxəsini alıb, geri "
-#~ "yükləyə bilər.\n"
-
-#~ msgid ""
-#~ "With this option you will be able to restore any version\n"
-#~ " of your /etc directory."
-#~ msgstr ""
-#~ "Bu seçim ilə siz /etc cərgənizin hər hansı bir buraxılışını\n"
-#~ " geri ala bilərsiniz."
-
-#~ msgid "http://www.mandrivalinux.com/en/errata.php3"
-#~ msgstr "http://www.mandrivalinux.com/en/errata.php3"
-
-#, fuzzy
-#~ msgid "Default Idmap "
-#~ msgstr "Əsas masa üstü"
-
-#~ msgid "Please wait, preparing installation..."
-#~ msgstr "Xahiş edirik, gözləyin, qurulum hazırlanır"
-
-#~ msgid "Installing package %s"
-#~ msgstr "%s paketi qurulur"
-
-#~ msgid "<b>What is Mandriva Linux?</b>"
-#~ msgstr "<b>Mandriva Linux Nədir?</b>"
-
-#~ msgid "Welcome to <b>Mandriva Linux</b>!"
-#~ msgstr "<b>Mandriva Linux</b> Xoş Gəldiniz!"
-
-#, fuzzy
-#~ msgid "<b>Open Source</b>"
-#~ msgstr "<b>Mandriva Store</b>"
-
-#, fuzzy
-#~ msgid "Welcome to the <b>world of open source</b>!"
-#~ msgstr "Açıq Mənbə Dünyasına Xoş Gəldiniz!"
-
-#, fuzzy
-#~ msgid "<b>The GPL</b>"
-#~ msgstr "<b>Qeyd</b>"
-
-#, fuzzy
-#~ msgid "<b>Join the Community</b>"
-#~ msgstr "<b>Mandriva Linux cəmiyyətinə qoşulun!</b>"
-
-#, fuzzy
-#~ msgid "<b>Download Version</b>"
-#~ msgstr "Bu Mandriva Linux <b>Endirmə buraxılışıdır</b>."
-
-#, fuzzy
-#~ msgid "<b>Mandriva Products</b>"
-#~ msgstr "<b>Mandriva Store</b>"
-
-#, fuzzy
-#~ msgid "The Mandriva Linux products are:"
-#~ msgstr "Mandriva Linux Yeniləmələri Appleti"
-
-#~ msgid "<b>The KDE Choice</b>"
-#~ msgstr "<b>KDE Seçimi</b>"
-
-#, fuzzy
-#~ msgid "<b>Choose your Favorite Desktop Environment</b>"
-#~ msgstr "<b>Qrafiki Masa Üstü Mühitinizi Seçin!</b>"
-
-#, fuzzy
-#~ msgid "<b>OpenOffice.org</b>"
-#~ msgstr "OpenOffice.org Riyaziyyat"
-
-#, fuzzy
-#~ msgid "<b>Kontact</b>"
-#~ msgstr "<b>Qeyd</b>"
-
-#~ msgid "<b>Surf the Internet</b>"
-#~ msgstr "<b>İnternet gəz</b>"
-
-#, fuzzy
-#~ msgid "\t* Browse the <b>Web</b> with Konqueror."
-#~ msgstr "\t* Vebi <b>Mozilla və Konqueror</b> ilə qəzin"
-
-#, fuzzy
-#~ msgid "\t* <b>Transfer</b> files with KBear."
-#~ msgstr "FTP ilə faylları transfer et"
-
-#~ msgid "\t* ..."
-#~ msgstr "\t* ..."
-
-#, fuzzy
-#~ msgid "\t* Edit and create <b>images</b> with the GIMP."
-#~ msgstr "\t* Rəsmlərinizi <b>The Gimp</b> ilə tərtib edin"
-
-#~ msgid ""
-#~ "\t* Create, edit and share office documents with <b>OpenOffice.org</b>."
-#~ msgstr ""
-#~ "\t* <b>OpenOffice.org</b> ilə offis sənədlərinizi yaradın, tərtib edin və "
-#~ "bölüşün"
-
-#, fuzzy
-#~ msgid ""
-#~ "\t* Manage your personal data with the integrated personal information "
-#~ "suites <b>Kontact</b> and <b>Evolution</b>."
-#~ msgstr ""
-#~ "\t* Şəxsi mə'lumatlarınızı <b>Kontact</b> və <b>Evolution</b> ilə idarə "
-#~ "edin və izləyin"
-
-#~ msgid "\t* Participate in online chat with <b>Kopete</b>."
-#~ msgstr "\t* <b>Kopete</b> ilə onlayn söhbətdə yer alın"
-
-#, fuzzy
-#~ msgid ""
-#~ "\t* Listen to your <b>audio CDs</b> and <b>music files</b>, watch your "
-#~ "<b>videos</b>."
-#~ msgstr ""
-#~ "\t* <b>KsCD</b> və <b>Totem</b> ilə audio CD-lərə və musiqi fayllarını "
-#~ "dinləyin"
-
-#~ msgid "\t* Edit and create images with the <b>GIMP</b>."
-#~ msgstr "\t* Rəsmlərinizi <b>The Gimp</b> ilə tərtib edin"
-
-#~ msgid "<b>Development Environments</b>"
-#~ msgstr "<b>İnkişaf vasitələri</b>"
-
-#, fuzzy
-#~ msgid "<b>Development Editors</b>"
-#~ msgstr "<b>İnkişaf vasitələri</b>"
-
-#~ msgid "\t* <b>Emacs</b>: a customizable and real time display editor."
-#~ msgstr "\t* <b>Emacs</b>: xüsusiləşdirilə bilən və həqiqi zamanlı editor"
-
-#, fuzzy
-#~ msgid "<b>Development Languages</b>"
-#~ msgstr "<b>İnkişaf vasitələri</b>"
-
-#~ msgid "\t\t* <b>C++</b>"
-#~ msgstr "\t\t* <b>C++</b>"
-
-#~ msgid "\t\t* <b>Java™</b>"
-#~ msgstr "\t\t* <b>Java™</b>"
-
-#, fuzzy
-#~ msgid "\t* Scripting languages:"
-#~ msgstr "Çap Etmə idarəçisi"
-
-#~ msgid "\t\t* <b>Perl</b>"
-#~ msgstr "\t\t* <b>Perl</b>"
-
-#~ msgid "\t\t* <b>Python</b>"
-#~ msgstr "\t\t* <b>Python</b>"
-
-#, fuzzy
-#~ msgid "<b>Development Tools</b>"
-#~ msgstr "<b>İnkişaf vasitələri</b>"
-
-#, fuzzy
-#~ msgid "<b>Groupware Server</b>"
-#~ msgstr "<b>Vericilər</b>"
-
-#, fuzzy
-#~ msgid "\t* Send and receive your <b>e-mails</b>."
-#~ msgstr "WinPopup ismarışlarını göndərin və alın"
-
-#~ msgid "<b>Servers</b>"
-#~ msgstr "<b>Vericilər</b>"
-
-#~ msgid "\t* <b>Apache</b>: The most widely used web server."
-#~ msgstr "\t* <b>Apache</b>: Ən çox işlədilən Veb vericisi"
-
-#~ msgid "<b>Mandriva Linux Control Center</b>"
-#~ msgstr "<b>Mandriva Linux İdarə Mərkəzi</b>"
-
-#, fuzzy
-#~ msgid "<b>The Open Source Model</b>"
-#~ msgstr "<b>KDE Seçimi</b>"
-
-#, fuzzy
-#~ msgid "<b>Online Store</b>"
-#~ msgstr "<b>Mandriva Store</b>"
-
-#~ msgid "Stop by today at <b>store.mandriva.com</b>!"
-#~ msgstr "Bugün <b>store.mandriva.com</b> ünvanını ziyarət edin"
-
-#~ msgid "<b>Mandriva Club</b>"
-#~ msgstr "<b>Mandriva Club</b>"
-
-#, fuzzy
-#~ msgid "\t* Participation in Mandriva Linux <b>user forums</b>."
-#~ msgstr "\t* <b>Kopete</b> ilə onlayn söhbətdə yer alın"
-
-#~ msgid "<b>Mandriva Online</b>"
-#~ msgstr "<b>Mandriva Onlayn</b>"
-
-#~ msgid "<b>Mandriva Expert</b>"
-#~ msgstr "<b>Mandriva Expert</b>"
-
-#~ msgid "Key"
-#~ msgstr "Açarla"
-
-#~ msgid "Network:"
-#~ msgstr "Şəbəkə:"
-
-#~ msgid "IP:"
-#~ msgstr "IP:"
-
-#~ msgid "Mode:"
-#~ msgstr "Mod:"
-
-#~ msgid "Encryption:"
-#~ msgstr "Enkripsiya:"
-
-#~ msgid "Signal:"
-#~ msgstr "Siqnal:"
-
-#~ msgid "Rescan"
-#~ msgstr "Yenidən dara"
-
-#~ msgid "Status"
-#~ msgstr "Vəziyyət"
-
-#~ msgid "Disconnect"
-#~ msgstr "Bağlantını kəs"
-
-#~ msgid ""
-#~ "x coordinate of text box\n"
-#~ "in number of characters"
-#~ msgstr ""
-#~ "mətn qutusunun hərf\n"
-#~ "ədədində x mövqeyi"
-
-#~ msgid ""
-#~ "y coordinate of text box\n"
-#~ "in number of characters"
-#~ msgstr ""
-#~ "hərf ədədi olaraq mətn\n"
-#~ "qutusunun y istiqaməti"
-
-#~ msgid "text width"
-#~ msgstr "mətn eni"
-
-#~ msgid "ProgressBar color selection"
-#~ msgstr "İrəliləmə çubuğu rəng seçkisi"
-
-#~ msgid "Connect to the Internet"
-#~ msgstr "İnternetə bağlan"
-
-#~ msgid ""
-#~ "The most common way to connect with adsl is pppoe.\n"
-#~ "Some connections use PPTP, a few use DHCP.\n"
-#~ "If you do not know, choose 'use PPPoE'"
-#~ msgstr ""
-#~ "ADSL ilə internetə bağlanmanın ən yaxşı yolu PPPoE'dur.\n"
-#~ "Bəzi bağlantılar pptp istifadə edir, çox azı isə dhcp işlədir.\n"
-#~ "Bilmirsiniz isə 'pppop istifadə et'-i seçin"
-
-#~ msgid "Do not print any test page"
-#~ msgstr "Sınaq səhifəsini çap etmə"
-
-#~ msgid "Printer on SMB/Windows 95/98/NT server"
-#~ msgstr "SMB/Windows 95/98/NT üstündə çapçı"
-
-#, fuzzy
-#~ msgid "Found printer on %s..."
-#~ msgstr "\"%s\" çapçısı çıxardılır..."
-
-#~ msgid "Useless without Terminal Server"
-#~ msgstr "Terminal Server olmadan faydasızdır"
-
-#~ msgid "dhcpd Config..."
-#~ msgstr "dhcpd Qurğuları..."
-
-#~ msgid ""
-#~ "package 'ImageMagick' is required to be able to complete configuration.\n"
-#~ "Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
-#~ msgstr ""
-#~ "Quraşdırmanı tamamlamaq üçün 'ImageMagick' paketi məcburidir.\n"
-#~ "'ImageMagick' paketini qurmaq üçün \"Oldu\", ləğv etmək üçün \"Ləğv Et\" "
-#~ "düyməsinə basın"
-
-#, fuzzy
-#~ msgid "Unable to select wireless network: %s"
-#~ msgstr "%s əksi ilə rabitə qurula bilmir"
-
-#, fuzzy
-#~ msgid "Interactive intrusion detection"
-#~ msgstr "İnteraktiv funksiya yaradıcısı"
-
-#, fuzzy
-#~ msgid "Active Firewall: intrusion detected"
-#~ msgstr "Atəş divarı quruluşu tapıldı!"
-
-#, fuzzy
-#~ msgid "Do you want to blacklist the attacker?"
-#~ msgstr "Həqiqətən də bu oyundan çıxmaq istəyirsiniz?"
-
-#~ msgid "Grub"
-#~ msgstr "Grub"
-
-#~ msgid "Local Network adress"
-#~ msgstr "Yerli Şəbəkə ünvanı"
-
-#~ msgid "Configuring scripts, installing software, starting servers..."
-#~ msgstr ""
-#~ "Skriptlə qurulur, proqram tə'minatı qurulur, xidmətlər başladılır..."
-
-#~ msgid "drakfloppy"
-#~ msgstr "drakfloppy"
-
-#~ msgid "Boot disk creation"
-#~ msgstr "Açılış disketi yaradılması"
-
-#~ msgid "General"
-#~ msgstr "Ümumi"
-
-#~ msgid "Kernel version"
-#~ msgstr "Çəyirdək buraxılışı"
-
-#~ msgid "Preferences"
-#~ msgstr "Qurğular"
-
-#~ msgid "Advanced preferences"
-#~ msgstr "Ətraflı qurğularr"
-
-#~ msgid "Size"
-#~ msgstr "Böyüklük"
-
-#~ msgid "Mkinitrd optional arguments"
-#~ msgstr "Mkinitrd arzuya bağlı olan arqumentləri"
-
-#~ msgid "force"
-#~ msgstr "zorla"
-
-#~ msgid "omit raid modules"
-#~ msgstr "raid modulları keç"
-
-#~ msgid "if needed"
-#~ msgstr "lazım olarsa"
-
-#~ msgid "omit scsi modules"
-#~ msgstr "scsi modulları keç"
-
-#~ msgid "Add a module"
-#~ msgstr "Modul əlavə et"
-
-#~ msgid "Remove a module"
-#~ msgstr "Modulu sil"
-
-#~ msgid "Be sure a media is present for the device %s"
-#~ msgstr "%s avadanlığında medya olduğundan əmin olun"
-
-#~ msgid ""
-#~ "There is no medium or it is write-protected for device %s.\n"
-#~ "Please insert one."
-#~ msgstr ""
-#~ "Mediya yoxdur, ya da %s avadanlığına yazmaya qarşı qorumalıdır.\n"
-#~ "Xahiş edirik, birini taxın."
-
-#~ msgid "Unable to fork: %s"
-#~ msgstr "Fork edilə bilmir: %s"
-
-#~ msgid "Floppy creation completed"
-#~ msgstr "Disket yaradılması tamamlandı"
-
-#~ msgid "The creation of the boot floppy has been successfully completed \n"
-#~ msgstr "Açılış disketi yaradılması müvəffəqiyyətlə başa çatdı \n"
-
-#~ msgid ""
-#~ "Unable to properly close mkbootdisk:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
-#~ msgstr ""
-#~ "mkbootdisk düzgün bağlana bilmədi:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
-
-#~ msgid ""
-#~ "You may not be able to install lilo (since lilo does not handle a LV on "
-#~ "multiple PVs)"
-#~ msgstr ""
-#~ "Lilo'nu qura bilməyəcəksiniz (ona görə ki, lilo, birdən çox PV üstündə "
-#~ "LV'yə malik deyil)"
-
-#~ msgid "use PPPoE"
-#~ msgstr "pppoe istifadə et"
-
-#~ msgid "use PPTP"
-#~ msgstr "PPTPe istifadə et"
-
-#~ msgid "use DHCP"
-#~ msgstr "dhcp istifadə et"
-
-#, fuzzy
-#~ msgid "Alcatel Speedtouch USB"
-#~ msgstr "Alcatel speedtouch USB modem"
-
-#~ msgid " - detected"
-#~ msgstr " - tapıldı"
-
-#~ msgid "Sagem (using PPPoA) USB"
-#~ msgstr "Sagem (PPPoA işlədən) USB"
-
-#~ msgid "Sagem (using DHCP) USB"
-#~ msgstr "Sagem (DHCP işlədən) USB"
-
-#~ msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-#~ msgstr "Icewm, Window Maker, Enlightenment, Fvwm, vs."
-
-#~ msgid ""
-#~ "Warning, another Internet connection has been detected, maybe using your "
-#~ "network"
-#~ msgstr ""
-#~ "Diqqət, başqa internet bağlantısı aşkar edildi, güman ki şəbəkənizi "
-#~ "istifadə edir"
-
-#~ msgid "PXE Server Configuration"
-#~ msgstr "PXE Vericisi Quraşdırılması"
-
-#~ msgid "Installation Server Configuration"
-#~ msgstr "Qurulum Şəbəkəsi Quraşdırılması"
-
-#~ msgid ""
-#~ "You are about to configure your computer to install a PXE server as a "
-#~ "DHCP server\n"
-#~ "and a TFTP server to build an installation server.\n"
-#~ "With that feature, other computers on your local network will be "
-#~ "installable using this computer as source.\n"
-#~ "\n"
-#~ "Make sure you have configured your Network/Internet access using "
-#~ "drakconnect before going any further.\n"
-#~ "\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN)."
-#~ msgstr ""
-#~ "Kompüterınızə DHCP vericisi olaraq PXE vericisini və onu qurulim "
-#~ "vericisi \n"
-#~ "etmək üçün ona TFTP qurmaq üzərə quraşdıracaqsınız. Bu xassə ilə, \n"
-#~ "Bu xassə ilə yerli şəbəkənizdəki digər kompüterlər bu kompüteri mənbə.\n"
-#~ "olaraq istifadə edərək qurula biləcəklər.\n"
-#~ "\n"
-#~ "Daha irəli getmədən əvvəl Şəbəkə/İnternet yetişmənizin drakconnect ilə "
-#~ "quraşdırıldığına əmin olun.\n"
-#~ "\n"
-#~ "Xəbədarlıq: Yerli Şəbəkə (LAN) qurmaq üçün uyğun Şəbəkə Adapterinə "
-#~ "ehtiyacınız var."
-
-#~ msgid "No network adapter on your system!"
-#~ msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-
-#~ msgid "Choose the network interface"
-#~ msgstr "Şəbəkə ara üzünü seçin"
-
-#~ msgid ""
-#~ "Please choose which network interface will be used for the dhcp server."
-#~ msgstr ""
-#~ "dhcp vericisi üçün hansı şəbəkə ara üzünün istifadə ediləcəyini seçin."
-
-#~ msgid "Interface %s (on network %s)"
-#~ msgstr "Ara Üz %s (%s şəbəkəsində)"
-
-#~ msgid ""
-#~ "The DHCP server will allow other computer to boot using PXE in the given "
-#~ "range of address.\n"
-#~ "\n"
-#~ "The network address is %s using a netmask of %s.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "DHCP vericisi, başqa kompüterə, verilən ünvan aralıqlarında PXE "
-#~ "işlədərəkaçılış etmə imkanı verəcək.\n"
-#~ "\n"
-#~ "Şəbəkə ünvanı %s , işlədilən netmask isə %s.\n"
-#~ "\n"
-
-#~ msgid "The DHCP start ip"
-#~ msgstr "DHCP başlama ip'si"
-
-#~ msgid "The DHCP end ip"
-#~ msgstr "DHCP sonlanma ip'si"
-
-#~ msgid ""
-#~ "Please indicate where the installation image will be available.\n"
-#~ "\n"
-#~ "If you do not have an existing directory, please copy the CD or DVD "
-#~ "contents.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Xahiş edirik, qurulum görüntüsünün harda mövcud olacağını göstərin.\n"
-#~ "\n"
-#~ "Əgər mövcud cərgəniz yoxdursa, xahiş edirik, CD ya da DVD "
-#~ "məzmununuköçürün.\n"
-#~ "\n"
-
-#~ msgid "Installation image directory"
-#~ msgstr "Qurulum əksinin cərgəsi"
-
-#~ msgid "No image found"
-#~ msgstr "Rəsm tapıla bilmədi"
-
-#~ msgid ""
-#~ "No CD or DVD image found, please copy the installation program and rpm "
-#~ "files."
-#~ msgstr ""
-#~ "Heç bir CD ya da DVD görünüşü tapıla bilmədi, xahiş edirik, qurulum "
-#~ "proqramını və rpm fayllarını köçürün."
-
-#~ msgid ""
-#~ "Please indicate where the auto_install.cfg file is located.\n"
-#~ "\n"
-#~ "Leave it blank if you do not want to set up automatic installation mode.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Xahiş edirik, auto_install.cfg faylının yerini bildirin.\n"
-#~ "\n"
-#~ "Avtomatik qurma modunu quğulamaq istəmirsinizsə buranı boş buraxın.\n"
-#~ "\n"
-
-#~ msgid "Location of auto_install.cfg file"
-#~ msgstr "auto_install.cfg faylının yeri"
-
-#~ msgid "Do it later"
-#~ msgstr "Bunu sonra et"
-
-#~ msgid "Internet Connection Sharing currently disabled"
-#~ msgstr "İnternet Bağlantısı Bölüşdürülməsi hazirda qeyri-fəaldır"
-
-#~ msgid "Enabling servers..."
-#~ msgstr "Vericilər fəallaşdırılır..."
-
-#~ msgid "Internet Connection Sharing currently enabled"
-#~ msgstr "İnternet Bağlantısı Bölüşdürülməsi fəallaşdırıldı"
-
-#~ msgid "Interface %s (using module %s)"
-#~ msgstr "Ara Üz %s (%s modulu işlədilir)"
-
-#~ msgid "Interface %s"
-#~ msgstr "Ara üz %s"
-
-#~ msgid "Network interface already configured"
-#~ msgstr "Şəbəkə ara üzü onsuzda quraşdırılıb"
-
-#~ msgid ""
-#~ "Warning, the network adapter (%s) is already configured.\n"
-#~ "\n"
-#~ "Do you want an automatic re-configuration?\n"
-#~ "\n"
-#~ "You can do it manually but you need to know what you're doing."
-#~ msgstr ""
-#~ "Diqqət, (%s) şəbəkə avadanlığı onsuzda quraşdırılıb.\n"
-#~ "\n"
-#~ "Onun avtomatik yenidən quraşdırılmasını istəyirsiniz?\n"
-#~ "\n"
-#~ "Bunu əllə də edə bilərsiniz, yalnız nə etdiyinizi bilməlisiniz."
-
-#~ msgid "No (experts only)"
-#~ msgstr "Xeyir (ancaq mütəxəssislər)"
-
-#~ msgid "Show current interface configuration"
-#~ msgstr "Hazırkı ara üz qurğusunu göstər"
-
-#~ msgid "Current interface configuration"
-#~ msgstr "Hazırkı ara üz qurğusu"
-
-#~ msgid ""
-#~ "Current configuration of `%s':\n"
-#~ "\n"
-#~ "Network: %s\n"
-#~ "IP address: %s\n"
-#~ "IP attribution: %s\n"
-#~ "Driver: %s"
-#~ msgstr ""
-#~ "`%s' hazırkı qurğuları:\n"
-#~ "\n"
-#~ "Şəbəkə: %s\n"
-#~ "IP ünvanı: %s\n"
-#~ "IP atrubutlaması: %s\n"
-#~ "Sürücü: %s"
-
-#~ msgid ""
-#~ "I can keep your current configuration and assume you already set up a "
-#~ "DHCP server; in that case please verify I correctly read the Network that "
-#~ "you use for your local network; I will not reconfigure it and I will not "
-#~ "touch your DHCP server configuration.\n"
-#~ "\n"
-#~ "The default DNS entry is the Caching Nameserver configured on the "
-#~ "firewall. You can replace that with your ISP DNS IP, for example.\n"
-#~ "\t\t \n"
-#~ "Otherwise, I can reconfigure your interface and (re)configure a DHCP "
-#~ "server for you.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Hazırkı qurğularınızı saxlayıb DHCP vericisini qurduğunuzu qəbul edə "
-#~ "bilərəm; bu halda yerli şəbəkəniz üçün işlətdiyiniz Şəbəkəni düz "
-#~ "oxumağıma yardım edin; Onu yenidən quraşdırmayacam və DHCP vericinizə əl "
-#~ "dəyməyəcəm.\n"
-#~ "\n"
-#~ "Əsas DNS girişi atəş divarı üstündə quraşdırılmış Ön Yaddaşlayıcı Ad "
-#~ "Vericisidir. Onu, misal üçün ISP DNS IP-nizlə əvəz edə bilərsiniz.\n"
-#~ "\t\t \n"
-#~ "Əks halda, ara üzünüzü və DHCP vericinizi sizin üçün (yenidən) quraşdıra "
-#~ "bilərəm. \n"
-
-#~ msgid "(This) DHCP Server IP"
-#~ msgstr "(Bu) DHCP Verici IP'si"
-
-#~ msgid "Re-configure interface and DHCP server"
-#~ msgstr "Ara üz və DHCP vericisini yenidən quğula"
-
-#~ msgid "The Local Network did not finish with `.0', bailing out."
-#~ msgstr "Yerli Şəbəkə `.0' ilə bitmədi, zəminə buraxılır."
-
-#~ msgid "Number of logical extents: %d"
-#~ msgstr "Məntiqi uzatmalar ədədi: %d"
-
-#, fuzzy
-#~ msgid ""
-#~ "WARNING: this device has been previously configured to connect to the "
-#~ "Internet.\n"
-#~ "Modifying the fields below will override this configuration.\n"
-#~ "Do you really want to reconfigure this device?"
-#~ msgstr ""
-#~ "DİQQƏT: Bu avadanlıq daha əvvəl İntenetə bağlanmaq üçün qurulmuşdur.\n"
-#~ "Avadanlığın qurğularını dəyişdirmaək istəmirsiniz isə,\n"
-#~ "OLDU ya basın.\n"
-#~ "Aşağıdakı girişləri düzəltməniz özünü əvvəlki qurğuların üstünə "
-#~ "yazacaqdır."
-
-# needs editing (Metin)
-#, fuzzy
-#~ msgid ""
-#~ " - Create etherboot floppies/CDs:\n"
-#~ " \tThe diskless client machines need either ROM images on the NIC, "
-#~ "or a boot floppy\n"
-#~ " \tor CD to initiate the boot sequence. drakTermServ will help "
-#~ "generate these\n"
-#~ " \timages, based on the NIC in the client machine.\n"
-#~ " \t\t\n"
-#~ " \tA basic example of creating a boot floppy for a 3Com 3c509 "
-#~ "manually:\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/lib/etherboot/floppyload.bin \\\n"
-#~ " \t\t/usr/share/etherboot/start16.bin \\\t\t\t\n"
-#~ " \t\t/usr/lib/etherboot/zimg/3c509.zimg > /dev/fd0"
-#~ msgstr ""
-#~ " - Create etherboot floppies/CDs:\n"
-#~ " \tThe diskless client machines need either ROM images on the NIC, "
-#~ "or a boot floppy\n"
-#~ " \tor CD to initiate the boot sequence. drakTermServ will help "
-#~ "generate these\n"
-#~ " \timages, based on the NIC in the client machine.\n"
-#~ " \t\t\n"
-#~ " \tA basic example of creating a boot floppy for a 3Com 3c509 "
-#~ "manually:\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/lib/etherboot/boot1a.bin \\\n"
-#~ " \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-
-#~ msgid "Dynamic IP Address Pool:"
-#~ msgstr "Dinamik IP Ünvan Hovusu:"
-
-#~ msgid "hd"
-#~ msgstr "hd"
-
-#~ msgid "tape"
-#~ msgstr "kaset"
-
-#~ msgid "WebDAV remote site already in sync!"
-#~ msgstr "Uzaq WebDAV saytı onsuzda sync-dədir!"
-
-#~ msgid "WebDAV transfer failed!"
-#~ msgstr "WebDAV transferi bacarılmadı!"
-
-#~ msgid ""
-#~ "Backup quota exceeded!\n"
-#~ "%d MB used vs %d MB allocated."
-#~ msgstr ""
-#~ "Ehtiyat sərhədi keçildi!\n"
-#~ "%d Mb işlədilib ancaq %d Mb verilmişdi."
-
-#~ msgid ""
-#~ "Maximum size\n"
-#~ " allowed for Drakbackup (MB)"
-#~ msgstr ""
-#~ "Drakbackup üçün\n"
-#~ "icazə verilən maksimal böyüklük (MB)"
-
-#~ msgid "\t-Network by webdav.\n"
-#~ msgstr "\t-webdav şəbəkəsi.\n"
-
-#~ msgid "first step creation"
-#~ msgstr "ilk addım yaradılışı"
-
-#~ msgid "choose image file"
-#~ msgstr "rəsm faylını seçin"
-
-#~ msgid "Configure bootsplash picture"
-#~ msgstr "Açılış rəsmini quraşdır"
-
-#~ msgid "the color of the progress bar"
-#~ msgstr "irəliləmə çubuğunun rəngi"
-
-#~ msgid "Preview"
-#~ msgstr "Nümayiş"
-
-#~ msgid "Choose color"
-#~ msgstr "Rəngi seç"
-
-#~ msgid "Make kernel message quiet by default"
-#~ msgstr "Çəyirdək ismarışlarını əsas olaraq göstərmə"
-
-#~ msgid "Notice"
-#~ msgstr "Qeyd"
-
-#~ msgid "This theme does not yet have a bootsplash in %s!"
-#~ msgstr "Bu örtük hələlik %s içində sıçrayan ekrana malik deyil !"
-
-#~ msgid "You must choose an image file first!"
-#~ msgstr "Əvvəlcə rəsm faylını seçməlisiniz!"
-
-#~ msgid "Generating preview..."
-#~ msgstr "Ümumi nümayiş ..."
-
-#~ msgid "%s BootSplash (%s) preview"
-#~ msgstr "%s Açılış Ekranı (%s) nümayişi"
-
-#~ msgid "No floppy drive available"
-#~ msgstr "Disket sürücüsü mövcud deyil"
-
-#~ msgid "Please insert the Update Modules floppy in drive %s"
-#~ msgstr "%s sürücüsünə Yeniləmə Modulları disketini yerləşdirin"
-
-#, fuzzy
-#~ msgid ""
-#~ "_: keyboard\n"
-#~ "Tifinagh (+latin/arabic)"
-#~ msgstr "Yugoslav (latın)"
-
-#~ msgid "No network card"
-#~ msgstr "Çəbəkə kartı yoxdur"
-
-#, fuzzy
-#~ msgid "Use already installed driver (%s)"
-#~ msgstr "Ssh təsdiqi onsuzda quruludur"
-
-#~ msgid "You've not selected any font"
-#~ msgstr "Heç yazı növü seçmədiniz"
-
-#~ msgid "No browser available! Please install one"
-#~ msgstr "Heç qurulu səyyar yoxdur! Xahiş edirik, birini qurun"
-
-#~ msgid ""
-#~ "No browser is installed on your system, Please install one if you want to "
-#~ "browse the help system"
-#~ msgstr ""
-#~ "Sisteminizdə heç bir səyyah qurulu deyil. Yardım sistemini gəzmək "
-#~ "istəyirsinizsə, xahiş edirik, birini qurun. Gnome işlədirsinizsə "
-#~ "Epiphany, KDE işlədirsinizsə Konqueror proqramını qura bilərsiniz."
-
-#~ msgid "Checking device and configuring HPOJ..."
-#~ msgstr "Avadanlıq yoxlanır və HPOJ quraşdırılır..."
-
-#~ msgid ""
-#~ "Insert a floppy in drive\n"
-#~ "All data on this floppy will be lost"
-#~ msgstr ""
-#~ "Disket sürücüyə bir disket yerləşdirin\n"
-#~ "Bu disketdəki bütün mə'lumatlar yox olacaqdır"
-
-#~ msgid "Insert a FAT formatted floppy in drive %s"
-#~ msgstr "%s sürücüsünə FAT şəkilləndirilmiş bir disket taxın"
-
-#~ msgid "This floppy is not FAT formatted"
-#~ msgstr "Bu floppi FAT şəklində deyildir"
-
-#~ msgid ""
-#~ "To use this saved packages selection, boot installation with ``linux "
-#~ "defcfg=floppy''"
-#~ msgstr ""
-#~ "Bu saxlanmış paketlər seçkisini işlətmək üçün qurulumu ``linux "
-#~ "defcfg=floppy' ilə başladın."
-
-#~ msgid "Load/Save on floppy"
-#~ msgstr "Disketə qeyd et/disketdən yüklə"
-
-#~ msgid ""
-#~ "Please choose load or save package selection on floppy.\n"
-#~ "The format is the same as auto_install generated floppies."
-#~ msgstr ""
-#~ "Xahiş edirik, paket seçkilərini disketə qeyd et/disketdən yüklə\n"
-#~ "seçənəyini seçin."
-
-#~ msgid "Load from floppy"
-#~ msgstr "Disketdən yüklə"
-
-#~ msgid "Save on floppy"
-#~ msgstr "Disketə qeyd et"
-
-#~ msgid "Package selection"
-#~ msgstr "Paket seçkisi"
-
-#~ msgid "Loading from floppy"
-#~ msgstr "Disketdən yüklənir"
-
-#~ msgid "Insert a floppy containing package selection"
-#~ msgstr "Paket seçkilərini daxil edən disketi taxın"
-
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "HPOJ paketi qurulur..."
-
-#~ msgid "multi-function device on parallel port #%s"
-#~ msgstr "%s nömrəli paralel qapıdakı çox funksiyalı avadanlıq"
-
-#~ msgid "multi-function device on a parallel port"
-#~ msgstr "paralel qapıdakı çox funksiyalı avadanlıq"
-
-#~ msgid "multi-function device on USB"
-#~ msgstr "USB üstündə çox funksiyalı avadanlıq"
-
-#~ msgid "multi-function device on HP JetDirect"
-#~ msgstr "HP JetDirect üstündə çox funksiyalı avadanlıq"
-
-#~ msgid "multi-function device"
-#~ msgstr "çox funksiyalı avadanlıq"
-
-#~ msgid "printing to %s"
-#~ msgstr "%s'a çap edilir"
-
-#~ msgid "using command %s"
-#~ msgstr "%s əmri ilə"
-
-#~ msgid "Installing HPLIP package..."
-#~ msgstr "HPLIP paketi qurulur..."
-
-#~ msgid "Application:"
-#~ msgstr "Tə'minat:"
-
-#~ msgid "Release: "
-#~ msgstr "Buraxılış:"
-
-#~ msgid "Summary: "
-#~ msgstr "İcmal:"
-
-#~ msgid "Bug Description/System Information"
-#~ msgstr "Xəta İzahatı/Sistem Mə'lumatı"
-
-#~ msgid "YOUR TEXT HERE"
-#~ msgstr "BURADA MƏTNİNİZ YER ALACAQ"
-
-#~ msgid "Submit kernel version"
-#~ msgstr "Çəyirdək buraxılışını göndər"
-
-#~ msgid "Submit cpuinfo"
-#~ msgstr "cpuinfo'nu göndər"
-
-#~ msgid "Submit lspci"
-#~ msgstr "lspci-ni göndər"
-
-#~ msgid "NOT FOUND"
-#~ msgstr "TAPILMADI"
-
-#~ msgid "connecting to %s..."
-#~ msgstr "%s ünvanına bağlanır ..."
-
-#~ msgid "Please enter a package name."
-#~ msgstr "Xahiş edirik, paket adını daxil edin."
-
-#~ msgid "Loading printer configuration... Please wait"
-#~ msgstr "Çapçı qurğuları yüklənir... Xahiş edirik, gözləyin"
-
-#~ msgid "Root password"
-#~ msgstr "Ali istifadəçi şifrəsi"
-
-#~ msgid "Do you want to recover your system?"
-#~ msgstr "Sisteminizi düzəltmək istəyirsiniz?"
-
-#~ msgid "Move"
-#~ msgstr "Daşı"
-
-#~ msgid "Which disk do you want to move it to?"
-#~ msgstr "Hansı diskə daşımaq istəyirsiniz?"
-
-#~ msgid "Sector"
-#~ msgstr "Sektor"
-
-#~ msgid "Which sector do you want to move it to?"
-#~ msgstr "Onu hansı sektora daşımaq istəyirsiniz?"
-
-#~ msgid "Moving"
-#~ msgstr "Daşınır"
-
-#~ msgid "Moving partition..."
-#~ msgstr "Bölmə daşınır..."
-
-#~ msgid "Error opening %s for writing: %s"
-#~ msgstr "Yazmaq üçün açılan %s'də xəta: %s"
-
-#~ msgid "OK"
-#~ msgstr "Oldu"
-
-#~ msgid "NO"
-#~ msgstr " XEYİR"
-
-#~ msgid "YES"
-#~ msgstr "BƏLİ"
-
-#~ msgid ""
-#~ "The following options can be set to customize your\n"
-#~ "system security. If you need an explanation, look at the help tooltip.\n"
-#~ msgstr ""
-#~ "Sisteminizin təhükəsizliyini müəyyən etmək üçün aşağıdakı seçimlər\n"
-#~ "mövcuddur. İzahata ehtiyacınız varsa, yardım bölməsinə baxın.\n"
-
-#~ msgid "The %s is not known by this version of Scannerdrake."
-#~ msgstr "%s, Scannerdrake'nın bu buraxılışı tərəfindən tanınmır. "
-
-#~ msgid "Czech (QWERTZ)"
-#~ msgstr "Çex dili (QWERTZ)"
-
-#~ msgid "German"
-#~ msgstr "Almanca"
-
-#~ msgid "Dvorak"
-#~ msgstr "Dvorak"
-
-#~ msgid "Spanish"
-#~ msgstr "İspanca"
-
-#~ msgid "Finnish"
-#~ msgstr "Fin dili"
-
-#~ msgid "French"
-#~ msgstr "Fransızca"
-
-#~ msgid "Norwegian"
-#~ msgstr "Norveç dili"
-
-#~ msgid "Polish"
-#~ msgstr "Polyak dili"
-
-#~ msgid "Russian"
-#~ msgstr "Rusca"
-
-#~ msgid "Swedish"
-#~ msgstr "İsveçcə"
-
-#~ msgid "Albanian"
-#~ msgstr "Albanca"
-
-#~ msgid "Armenian (old)"
-#~ msgstr "Ermeni dili (köhnə) "
-
-#~ msgid "Armenian (typewriter)"
-#~ msgstr "Ermenicə (yazı makinası)"
-
-#~ msgid "Armenian (phonetic)"
-#~ msgstr "Ermenicə (fonetik)"
-
-#~ msgid "Arabic"
-#~ msgstr "Ərəb dili"
-
-#~ msgid "Azerbaidjani (latin)"
-#~ msgstr "Azərbaycanca (latın)"
-
-#~ msgid "Belgian"
-#~ msgstr "Belçika dili"
-
-#~ msgid "Bengali"
-#~ msgstr "Benqal dili"
-
-#~ msgid "Bulgarian (phonetic)"
-#~ msgstr "Bolqar (fonetik)"
-
-#~ msgid "Bulgarian (BDS)"
-#~ msgstr "Bulqar dili (BDS)"
-
-#~ msgid "Brazilian (ABNT-2)"
-#~ msgstr "Brazilya dili (ABNT-2)"
-
-#~ msgid "Bosnian"
-#~ msgstr "Bosniya"
-
-#~ msgid "Belarusian"
-#~ msgstr "Belarus dili"
-
-#~ msgid "Swiss (German layout)"
-#~ msgstr "İsveçcə (Alman sırası)"
-
-#~ msgid "Swiss (French layout)"
-#~ msgstr "İsveçrə dili (Fransız düzülüşü)"
-
-#~ msgid "Czech (QWERTY)"
-#~ msgstr "Çex dili (QWERTY)"
-
-#~ msgid "German (no dead keys)"
-#~ msgstr "Almanca (ölü düymələr olmasın)"
-
-#~ msgid "Devanagari"
-#~ msgstr "Devanaqari"
-
-#~ msgid "Danish"
-#~ msgstr "Danimarka dili"
-
-#~ msgid "Dvorak (US)"
-#~ msgstr "Dvorak (US)"
-
-#~ msgid "Dvorak (Norwegian)"
-#~ msgstr "Dvorak (Norveç dili)"
-
-#~ msgid "Dvorak (Swedish)"
-#~ msgstr "Dvorak (İsveç)"
-
-#~ msgid "Estonian"
-#~ msgstr "Estoniya dili"
-
-#~ msgid "Georgian (\"Russian\" layout)"
-#~ msgstr "Gürcü dili (\"Rus\" sırası)"
-
-#~ msgid "Georgian (\"Latin\" layout)"
-#~ msgstr "Gürcü dili (\"Latın\" sırası)"
-
-#~ msgid "Greek"
-#~ msgstr "Yunanca"
-
-#~ msgid "Greek (polytonic)"
-#~ msgstr "Yunanca (politonik)"
-
-#~ msgid "Gujarati"
-#~ msgstr "Gujarati dili"
-
-#~ msgid "Gurmukhi"
-#~ msgstr "Qurmuxi"
-
-#~ msgid "Hungarian"
-#~ msgstr "Macar dili"
-
-#~ msgid "Croatian"
-#~ msgstr "Xorvat dili"
-
-#~ msgid "Irish"
-#~ msgstr "İrlandiya Dili"
-
-#~ msgid "Israeli"
-#~ msgstr "Yəhudi dili"
-
-#~ msgid "Israeli (Phonetic)"
-#~ msgstr "Yəhudi dili (Fonetik)"
-
-#~ msgid "Iranian"
-#~ msgstr "Farsca"
-
-#~ msgid "Icelandic"
-#~ msgstr "İslandiya dili"
-
-#~ msgid "Italian"
-#~ msgstr "İtalyan dili"
-
-#~ msgid "Inuktitut"
-#~ msgstr "Inuktitut"
-
-#~ msgid "Japanese 106 keys"
-#~ msgstr "Yapon dili 106 düyməli"
-
-#~ msgid "Kannada"
-#~ msgstr "Kanada"
-
-#~ msgid "Korean keyboard"
-#~ msgstr "Koreya klaviaturası"
-
-#~ msgid "Latin American"
-#~ msgstr "Latın Amerika dili"
-
-#~ msgid "Laotian"
-#~ msgstr "Laotian"
-
-#~ msgid "Lithuanian AZERTY (old)"
-#~ msgstr "Litvaniya dili AZERTY (köhnə)"
-
-#~ msgid "Lithuanian AZERTY (new)"
-#~ msgstr "Litva dili AZERTY (yeni)"
-
-#~ msgid "Lithuanian \"number row\" QWERTY"
-#~ msgstr "Litvanya dili \"number row\" QWERTY"
-
-#~ msgid "Lithuanian \"phonetic\" QWERTY"
-#~ msgstr "Litvanya dili \"Fonetik\" QWERTY"
-
-#~ msgid "Latvian"
-#~ msgstr "Latış dili"
-
-#~ msgid "Malayalam"
-#~ msgstr "Malayalam dili"
-
-#~ msgid "Macedonian"
-#~ msgstr "Makedoniya dili"
-
-#~ msgid "Myanmar (Burmese)"
-#~ msgstr "Myanmar dili (Burmese)"
-
-#~ msgid "Mongolian (cyrillic)"
-#~ msgstr "Mongolca (kiril)"
-
-#~ msgid "Maltese (UK)"
-#~ msgstr "Malta (UK)"
-
-#~ msgid "Maltese (US)"
-#~ msgstr "Malta (US)"
-
-#~ msgid "Dutch"
-#~ msgstr "Hollandiya dili"
-
-#~ msgid "Oriya"
-#~ msgstr "Oriya"
-
-#~ msgid "Polish (qwerty layout)"
-#~ msgstr "Polyakca (QWERTY sırası)"
-
-#~ msgid "Polish (qwertz layout)"
-#~ msgstr "Polyakca (QWERTZ sırası)"
-
-#~ msgid "Portuguese"
-#~ msgstr "Portuqalca"
-
-#~ msgid "Canadian (Quebec)"
-#~ msgstr "Fransız dili (Kanada/Quebec)"
-
-#~ msgid "Romanian (qwertz)"
-#~ msgstr "Rumın (qwertz)"
-
-#~ msgid "Romanian (qwerty)"
-#~ msgstr "Rumın (qwerty)"
-
-#~ msgid "Russian (Phonetic)"
-#~ msgstr "Rus dili (Fonetik)"
-
-#~ msgid "Saami (norwegian)"
-#~ msgstr "Saami (Norveç dili)"
-
-#~ msgid "Saami (swedish/finnish)"
-#~ msgstr "Saami (isveç/fin)"
-
-#~ msgid "Slovenian"
-#~ msgstr "Slovencə"
-
-#~ msgid "Slovakian (QWERTZ)"
-#~ msgstr "Slovakca (QWERTZ)"
-
-#~ msgid "Slovakian (QWERTY)"
-#~ msgstr "Slovakca (QWERTY)"
-
-#~ msgid "Serbian (cyrillic)"
-#~ msgstr "Serbcə (kiril)"
-
-#~ msgid "Syriac"
-#~ msgstr "Siriak"
-
-#~ msgid "Syriac (phonetic)"
-#~ msgstr "Siriak (fonetik)"
-
-#~ msgid "Telugu"
-#~ msgstr "Telugu"
-
-#~ msgid "Tamil (ISCII-layout)"
-#~ msgstr "Tamil (ISCII-ldüzülüşü)"
-
-#~ msgid "Tamil (Typewriter-layout)"
-#~ msgstr "Tamil dili (Yazı makinası düzülüşü)"
-
-#~ msgid "Thai keyboard"
-#~ msgstr "Tay klaviaturası"
-
-#~ msgid "Tajik keyboard"
-#~ msgstr "Tacik klaviaturası"
+#~ msgid "Icon"
+#~ msgstr "Timsal"
-#~ msgid "Turkish (traditional \"F\" model)"
-#~ msgstr "Türkcə (ənənəvi \"F\" klaviatura)"
+#~ msgid "Number of capture buffers:"
+#~ msgstr "Yaxalama bufferlərinin ədədi:"
-#~ msgid "Turkish (modern \"Q\" model)"
-#~ msgstr "Türk dili (müasir \"Q\" klaviatura)"
+#~ msgid "number of capture buffers for mmap'ed capture"
+#~ msgstr "mmap'lanmış yaxalama üçün yaxalama buferlərinin miqdarı"
-#~ msgid "Ukrainian"
-#~ msgstr "Ukrayna"
+#~ msgid "PLL setting:"
+#~ msgstr "PLL qurğusu:"
-#~ msgid "Uzbek (cyrillic)"
-#~ msgstr "Özbək dili (kiril)"
+#~ msgid "Radio support:"
+#~ msgstr "Radio dəstəyi:"
-#~ msgid "Vietnamese \"numeric row\" QWERTY"
-#~ msgstr "Vyetnam dili \"numeric row\" QWERTY"
+#~ msgid "enable radio support"
+#~ msgstr "radio dəstəyini fəallaşdır"
-#~ msgid "Yugoslavian (latin)"
-#~ msgstr "Yugoslav (latın)"
+#~ msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+#~ msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
diff --git a/perl-install/share/po/b_dump_strings.pm b/perl-install/share/po/b_dump_strings.pm
deleted file mode 100644
index 791eb97aa..000000000
--- a/perl-install/share/po/b_dump_strings.pm
+++ /dev/null
@@ -1,113 +0,0 @@
-package b_dump_strings;
-
-use B qw(minus_c save_BEGINs peekop class walkoptree walkoptree_exec
- main_start main_root cstring sv_undef);
-
-BEGIN { open OUT, ">$ENV{OUTFILE}" }
-
-sub B::CV::debug {
- my ($sv) = @_;
- B::walkoptree_exec($sv->START, "debug");
-}
-
-sub B::OP::debug {
- my ($op) = @_;
-# print "OP ", class($op), " ", $op->name, "\n";
- eval {
- if ($op->name eq 'entersub') {
- $op2 = $op->first->first or return;
-
- if ($op2->name eq 'pushmark') {
- my $s = $op2->sibling->sv->PV;
- my $l;
- for ($l = $op2->sibling; ${$l->sibling}; $l = $l->sibling) {}
-
- $s =~ s/"/\\"/g;
- if ($l->first->sv->NAME eq '_') {
- print OUT qq($::pkg N("$s")\n);
- }
- }
- }
- };
-}
-sub B::RV::debug {
- my ($op) = @_;
- $op->RV->debug;
-}
-sub B::SVOP::debug {
- my ($op) = @_;
- $op->sv->debug;
-}
-sub B::PV::debug {
- my ($sv) = @_;
-# print "STRING ", $sv->PV, "\n";
-}
-sub B::IV::debug {
- my ($sv) = @_;
-# printf "IV\t%d\n", $sv->IV;
-}
-sub B::NV::debug {
- my ($sv) = @_;
-# printf "NV\t%s\n", $sv->NV;
-}
-sub B::PVIV::debug {
- my ($sv) = @_;
-# printf "IV\t%d\n", $sv->IV;
-}
-sub B::PVNV::debug {
- my ($sv) = @_;
-# printf "NV\t%s\n", $sv->NV;
-}
-sub B::AV::debug {
- my ($av) = @_;
-# print "ARRAY\n";
-}
-sub B::GV::debug {
- my ($gv) = @_;
-# printf "GV %s::%s\n", $gv->STASH->NAME, $gv->SAFENAME;
-}
-sub B::NULL::debug {
-# print "NUL\n";
-}
-sub B::SPECIAL::debug {}
-
-sub B::SV::debug { die "SV"; }
-sub B::BM::debug {
- die "BM";
-}
-sub B::PVLV::debug { die "PVLV"; }
-
-sub B::GV::pgv {
- my ($gv) = @_;
-# print $gv->NAME, "\n";
- $gv->SV->debug;
- $gv->HV->debug;
- $gv->AV->debug;
- $gv->CV->debug;
-}
-
-
-
-
-sub search {
-
-foreach my $pkg (grep { /^[a-z]/ && !/^(diagnostics|strict|attributes|main)/ } grep { /\w+::$/ } keys %main::) {
- $::pkg = $pkg;
- foreach (keys %{$main::{$pkg}}) {
- print STDERR "$pkg $_ XXXXX\n";
- local *f = *{$main::{$pkg}{$_}};
- B::svref_2object(\*f)->pgv;
- }
-}
-print STDERR "DONE\n";
-}
-
-CHECK { search() }
-INIT { exit 0 }
-
-#use lib qw(. /home/pixel/gi/perl-install);
-##use commands;
-#require '/tmp/t.pl';
-#search();
-
-1;
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 57b31c549..e273a550d 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2006-03-05 18:57+0800\n"
+"POT-Creation-Date: 2007-03-21 12:10+0100\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -13,776 +13,20 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../move/move.pm:292
-#, fuzzy, c-format
-msgid "Which USB key do you want to format?"
-msgstr "Які тып пункта жадаеце дадаць?"
-
-#: ../move/move.pm:296
-#, c-format
-msgid ""
-"You are about to format a USB device \"%s\". This will delete all data on "
-"it.\n"
-"Make sure that the selected device is the USB key you want to format. \n"
-"We advise you to unplug all other USB storage devices while doing this "
-"operation."
-msgstr ""
-
-#: ../move/move.pm:448 ../move/move.pm:460
-#, c-format
-msgid "Key is not writable"
-msgstr ""
-
-#: ../move/move.pm:450
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-
-#: ../move/move.pm:452
-#, c-format
-msgid "Retry"
-msgstr "Паўтарыць"
-
-#: ../move/move.pm:453 ../move/move.pm:497
-#, c-format
-msgid "Continue without USB key"
-msgstr ""
-
-#: ../move/move.pm:462
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled, but we can not safely\n"
-"unplug it now.\n"
-"\n"
-"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandriva Move again."
-msgstr ""
-
-#: ../move/move.pm:468 help.pm:410 install_steps_interactive.pm:1303
-#, c-format
-msgid "Reboot"
-msgstr "Перазагрузка"
-
-#: ../move/move.pm:473
-#, c-format
-msgid ""
-"Your USB key does not have any valid Windows (FAT) partitions.\n"
-"We need one to continue (beside, it's more standard so that you\n"
-"will be able to move and access your files from machines\n"
-"running Windows). Please plug in an USB key containing a\n"
-"Windows partition instead.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-
-#: ../move/move.pm:483
-#, c-format
-msgid ""
-"We did not detect any USB key on your system. If you\n"
-"plug in an USB key now, Mandriva Move will have the ability\n"
-"to transparently save the data in your home directory and\n"
-"system wide configuration, for next boot on this computer\n"
-"or another one. Note: if you plug in a key now, wait several\n"
-"seconds before detecting again.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-
-#: ../move/move.pm:494
-#, c-format
-msgid "Need a key to save your data"
-msgstr ""
-
-#: ../move/move.pm:496
-#, c-format
-msgid "Detect USB key again"
-msgstr ""
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Setting up USB key"
-msgstr ""
-
-#: ../move/move.pm:517
-#, fuzzy, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Канфігурацыя сыстэмы друку (прынтэры, заданьні, клясы, ...)"
-
-#: ../move/move.pm:546
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
-
-#: ../move/move.pm:556
-#, fuzzy, c-format
-msgid "Auto configuration"
-msgstr "Настройка IDE"
-
-#: ../move/move.pm:556
-#, fuzzy, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Канфігурацыя сыстэмы друку (прынтэры, заданьні, клясы, ...)"
-
-#: ../move/move.pm:604 ../move/move.pm:660 ../move/move.pm:664
-#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/interactive.pm:231
-#: diskdrake/interactive.pm:244 diskdrake/interactive.pm:405
-#: diskdrake/interactive.pm:423 diskdrake/interactive.pm:560
-#: diskdrake/interactive.pm:565 diskdrake/smbnfs_gtk.pm:41 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:52 fsedit.pm:218 install_any.pm:1775
-#: install_any.pm:1827 install_steps.pm:81 install_steps_interactive.pm:37
-#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
-#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
-#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
-#: network/netconnect.pm:837 network/netconnect.pm:866
-#: network/netconnect.pm:965 network/netconnect.pm:969
-#: network/netconnect.pm:973 network/netconnect.pm:978
-#: network/netconnect.pm:1123 network/netconnect.pm:1127
-#: network/netconnect.pm:1246 network/netconnect.pm:1251
-#: network/netconnect.pm:1271 network/netconnect.pm:1428
-#: network/thirdparty.pm:321 network/thirdparty.pm:328
-#: network/thirdparty.pm:372 network/thirdparty.pm:374
-#: network/thirdparty.pm:395 network/thirdparty.pm:419
-#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
-#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
-#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
-#: printer/printerdrake.pm:450 printer/printerdrake.pm:514
-#: printer/printerdrake.pm:686 printer/printerdrake.pm:690
-#: printer/printerdrake.pm:772 printer/printerdrake.pm:1555
-#: printer/printerdrake.pm:1603 printer/printerdrake.pm:1640
-#: printer/printerdrake.pm:1685 printer/printerdrake.pm:1689
-#: printer/printerdrake.pm:1703 printer/printerdrake.pm:1795
-#: printer/printerdrake.pm:1876 printer/printerdrake.pm:1880
-#: printer/printerdrake.pm:1884 printer/printerdrake.pm:1933
-#: printer/printerdrake.pm:1991 printer/printerdrake.pm:1995
-#: printer/printerdrake.pm:2009 printer/printerdrake.pm:2129
-#: printer/printerdrake.pm:2133 printer/printerdrake.pm:2176
-#: printer/printerdrake.pm:2249 printer/printerdrake.pm:2267
-#: printer/printerdrake.pm:2276 printer/printerdrake.pm:2285
-#: printer/printerdrake.pm:2296 printer/printerdrake.pm:2360
-#: printer/printerdrake.pm:2512 printer/printerdrake.pm:2947
-#: printer/printerdrake.pm:3231 printer/printerdrake.pm:3237
-#: printer/printerdrake.pm:3802 printer/printerdrake.pm:3806
-#: printer/printerdrake.pm:3810 printer/printerdrake.pm:4206
-#: printer/printerdrake.pm:4446 printer/printerdrake.pm:4474
-#: printer/printerdrake.pm:4551 printer/printerdrake.pm:4617
-#: printer/printerdrake.pm:4737 standalone/drakTermServ:422
-#: standalone/drakTermServ:492 standalone/drakTermServ:501
-#: standalone/drakTermServ:812 standalone/drakTermServ:819
-#: standalone/drakTermServ:845 standalone/drakTermServ:894
-#: standalone/drakTermServ:1146 standalone/drakTermServ:1181
-#: standalone/drakTermServ:1634 standalone/drakTermServ:1643
-#: standalone/drakTermServ:1651 standalone/drakTermServ:1656
-#: standalone/drakTermServ:1664 standalone/drakTermServ:1680
-#: standalone/drakTermServ:1700 standalone/drakauth:36
-#: standalone/drakbackup:511 standalone/drakbackup:625
-#: standalone/drakbackup:1110 standalone/drakbackup:1141
-#: standalone/drakbackup:1332 standalone/drakbackup:1664
-#: standalone/drakbackup:1820 standalone/drakbackup:2548
-#: standalone/drakbackup:4463 standalone/drakclock:124
-#: standalone/drakconnect:676 standalone/drakconnect:680
-#: standalone/drakconnect:685 standalone/drakconnect:700
-#: standalone/drakfont:209 standalone/drakfont:222 standalone/drakfont:260
-#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakhosts:98
-#: standalone/drakhosts:246 standalone/drakhosts:253 standalone/drakhosts:260
-#: standalone/draknfs:306 standalone/draknfs:609 standalone/draknfs:616
-#: standalone/draknfs:623 standalone/drakroam:33 standalone/draksambashare:384
-#: standalone/draksambashare:388 standalone/draksambashare:391
-#: standalone/draksambashare:394 standalone/draksambashare:453
-#: standalone/draksambashare:477 standalone/draksambashare:551
-#: standalone/draksambashare:633 standalone/draksambashare:700
-#: standalone/draksambashare:800 standalone/draksambashare:807
-#: standalone/draksambashare:942 standalone/draksambashare:1133
-#: standalone/draksambashare:1142 standalone/draksambashare:1151
-#: standalone/draksambashare:1172 standalone/draksambashare:1181
-#: standalone/draksambashare:1190 standalone/draksambashare:1210
-#: standalone/draksambashare:1218 standalone/draksambashare:1230
-#: standalone/draksplash:162 standalone/drakxtv:107
-#: standalone/finish-install:79 standalone/logdrake:171
-#: standalone/logdrake:439 standalone/logdrake:444 standalone/scannerdrake:59
-#: standalone/scannerdrake:202 standalone/scannerdrake:261
-#: standalone/scannerdrake:732 standalone/scannerdrake:743
-#: standalone/scannerdrake:882 standalone/scannerdrake:893
-#: standalone/scannerdrake:963 wizards.pm:95 wizards.pm:99 wizards.pm:121
-#, c-format
-msgid "Error"
-msgstr "Памылка"
-
-#: ../move/move.pm:605 install_steps.pm:82
-#, c-format
-msgid ""
-"An error occurred, but I do not know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Узнікла памылка, якую не атрымліваецца карэктна апрацаваць,\n"
-"таму працягвайце на сваю рызыку."
-
-#: ../move/move.pm:660 install_steps_interactive.pm:37
-#, c-format
-msgid "An error occurred"
-msgstr "Адбылася памылка"
-
-#: ../move/move.pm:666
-#, c-format
-msgid ""
-"An error occurred:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"This may come from corrupted system configuration files\n"
-"on the USB key, in this case removing them and then\n"
-"rebooting Mandriva Move would fix the problem. To do\n"
-"so, click on the corresponding button.\n"
-"\n"
-"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-
-#: ../move/move.pm:681
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "Прагледзіць файлы сыстэмных часопісаў"
-
-#: ../move/move.pm:682
-#, c-format
-msgid "Simply reboot"
-msgstr ""
-
-#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr ""
-
-#: ../move/tree/mdk_totem:71
-#, fuzzy, c-format
-msgid "Kill those programs"
-msgstr "Выберыце праграму для выкананьня"
-
-#: ../move/tree/mdk_totem:72
-#, c-format
-msgid "No CDROM support"
-msgstr ""
-
-#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1062 diskdrake/interactive.pm:1072
-#: diskdrake/interactive.pm:1125
-#, c-format
-msgid "Read carefully!"
-msgstr "Чытайце ўважліва!"
-
-#: ../move/tree/mdk_totem:77
-#, c-format
-msgid ""
-"You can not use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-
-#: ../move/tree/mdk_totem:101
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr ""
-
-#: Xconfig/card.pm:13
-#, c-format
-msgid "256 kB"
-msgstr "256 Кб"
-
-#: Xconfig/card.pm:14
-#, c-format
-msgid "512 kB"
-msgstr "512 Кб"
-
-#: Xconfig/card.pm:15
-#, c-format
-msgid "1 MB"
-msgstr "1 Мб"
-
-#: Xconfig/card.pm:16
-#, c-format
-msgid "2 MB"
-msgstr "2 Мб"
-
-#: Xconfig/card.pm:17
-#, c-format
-msgid "4 MB"
-msgstr "4 Мб"
-
-#: Xconfig/card.pm:18
-#, c-format
-msgid "8 MB"
-msgstr "8 Мб"
-
-#: Xconfig/card.pm:19
-#, c-format
-msgid "16 MB"
-msgstr "16 Мб"
-
-#: Xconfig/card.pm:20
-#, c-format
-msgid "32 MB"
-msgstr "32 Мб"
-
-#: Xconfig/card.pm:21
-#, c-format
-msgid "64 MB or more"
-msgstr "64 Мб ці болей"
-
-#: Xconfig/card.pm:162
-#, c-format
-msgid "X server"
-msgstr "X сэервер"
-
-#: Xconfig/card.pm:163
-#, fuzzy, c-format
-msgid "Choose an X server"
-msgstr "X сэервер"
-
-#: Xconfig/card.pm:195
-#, fuzzy, c-format
-msgid "Multi-head configuration"
-msgstr "Канфігурацыя"
-
-#: Xconfig/card.pm:196
-#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-
-#: Xconfig/card.pm:265
-#, fuzzy, c-format
-msgid "Can not install Xorg package: %s"
-msgstr "Усталяванне пакету %s"
-
-#: Xconfig/card.pm:275
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Пазначце памер відэапамяці"
-
-#: Xconfig/card.pm:371
-#, c-format
-msgid "Xorg configuration"
-msgstr "Настройка Xorg"
-
-#: Xconfig/card.pm:373
-#, c-format
-msgid "Which configuration of Xorg do you want to have?"
-msgstr "Якую канфігурацыю Xorg вы жадаеце атрымаць?"
-
-#: Xconfig/card.pm:406
-#, fuzzy, c-format
-msgid "Configure all heads independently"
-msgstr "Настроіць панэль"
-
-#: Xconfig/card.pm:407
-#, fuzzy, c-format
-msgid "Use Xinerama extension"
-msgstr "Пашырэнне файла"
-
-#: Xconfig/card.pm:412
-#, fuzzy, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Наладка вашага сэансу"
-
-#: Xconfig/card.pm:424 Xconfig/various.pm:23
-#, c-format
-msgid "Xorg %s"
-msgstr "Сервер XFree86 %s"
-
-#: Xconfig/card.pm:431 Xconfig/various.pm:22
-#, c-format
-msgid "Xorg %s with 3D hardware acceleration"
-msgstr "Xorg %s з падтрымкай 3D-паскарэння"
-
-#: Xconfig/card.pm:433
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with Xorg %s."
-msgstr ""
-"Ваша відэакарта можа мець 3D-паскарэнне, якое падтрымліваецца толькі Xorg %s."
-
-#: Xconfig/card.pm:439
-#, c-format
-msgid "Xorg %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "Xorg %s з эксперыментальнай падтрымкай 3D-паскарэння"
-
-#: Xconfig/card.pm:441
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with Xorg %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Ваша відэакарта можа мець 3D-паскарэнне, якое падтрымліваецца толькі Xorg %"
-"s.\n"
-"МАЙЦЕ НА ЎВАЗЕ, ШТО ГЭТА ЭКСПЕРЫМЕНТАЛЬНАЯ ПАДТРЫМКА І МОЖА ПРЫВЕСЦІ ДА\n"
-"ЗАВІСАННЯ ВАШАГА КАМП'ЮТЭРУ."
-
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:1021
-#, c-format
-msgid "Custom"
-msgstr "Па выбару"
-
-#: Xconfig/main.pm:127 any.pm:742 diskdrake/dav.pm:26 help.pm:15
-#: install_steps_interactive.pm:1303 printer/printerdrake.pm:882
-#: printer/printerdrake.pm:899 printer/printerdrake.pm:4546
-#: printer/printerdrake.pm:5010 standalone/drakhosts:263
-#: standalone/drakroam:230 standalone/draksplash:93 standalone/logdrake:176
-#: standalone/net_applet:103 standalone/scannerdrake:494
-#, c-format
-msgid "Quit"
-msgstr "Выхад"
-
-#: Xconfig/main.pm:129
-#, fuzzy, c-format
-msgid "Graphic Card"
-msgstr "Відэакарта: %s"
-
-#: Xconfig/main.pm:132 Xconfig/monitor.pm:110
-#, c-format
-msgid "Monitor"
-msgstr "Манітор"
-
-#: Xconfig/main.pm:135 Xconfig/resolution_and_depth.pm:289
-#, c-format
-msgid "Resolution"
-msgstr "Памеры экрану"
-
-#: Xconfig/main.pm:138
-#, c-format
-msgid "Test"
-msgstr "Тэст"
-
-#: Xconfig/main.pm:143 diskdrake/dav.pm:65 diskdrake/interactive.pm:449
-#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
-#: printer/printerdrake.pm:1112 standalone/drakfont:493
-#: standalone/drakfont:548
-#, c-format
-msgid "Options"
-msgstr "Опцыі"
-
-#: Xconfig/main.pm:178
-#, c-format
-msgid "Your Xorg configuration file is broken, we will ignore it."
-msgstr ""
-
-#: Xconfig/main.pm:196
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Ці жадаеце Вы захаваць змяненні?\n"
-"Бягучая канфігурацыя:\n"
-"\n"
-"%s"
-
-#: Xconfig/monitor.pm:111
-#, fuzzy, c-format
-msgid "Choose a monitor for head #%d"
-msgstr "Абярыце манітор"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor"
-msgstr "Абярыце манітор"
-
-#: Xconfig/monitor.pm:117
-#, c-format
-msgid "Plug'n Play"
-msgstr ""
-
-#: Xconfig/monitor.pm:118 mouse.pm:49
-#, c-format
-msgid "Generic"
-msgstr "Агульны"
-
-#: Xconfig/monitor.pm:119 standalone/drakconnect:591 standalone/harddrake2:54
-#: standalone/harddrake2:88
-#, fuzzy, c-format
-msgid "Vendor"
-msgstr "Рэдактары"
-
-#: Xconfig/monitor.pm:129
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr ""
-
-#: Xconfig/monitor.pm:137
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Два крытычных параметры - гэта часціня вертыкальнай разгорткі, ці\n"
-"часціня аднаўлення ўсяго экрану, а таксама болей важны параметр -\n"
-"часціня гарызантальнай сінхранізацыі разгорткі, ці часціня вываду\n"
-"радкоў экрану.\n"
-"\n"
-"ВЕЛЬМІ ВАЖНА, каб абраны вамі манітор меў часціню сінхранізацыі, якая\n"
-"не перавышае фактычныя магчымасці вашага манітору: у процілеглым выпадку\n"
-"вы можаце сапсаваць манітор.\n"
-"Калі вы сумняваецеся, абярыце кансерватыўныя настройкі."
-
-#: Xconfig/monitor.pm:144
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Часціня гарызантальный разгорткі"
-
-#: Xconfig/monitor.pm:145
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Часціня вертыкальнай разгорткі"
-
-#: Xconfig/resolution_and_depth.pm:10
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 колераў (8 бітаў)"
-
-#: Xconfig/resolution_and_depth.pm:11
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 тысячы колераў (15 бітаў)"
-
-#: Xconfig/resolution_and_depth.pm:12
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 тысяч колераў (16 бітаў)"
-
-#: Xconfig/resolution_and_depth.pm:13
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 мільёнаў колераў (24 біты)"
-
-#: Xconfig/resolution_and_depth.pm:127
-#, c-format
-msgid "Resolutions"
-msgstr "Памеры экрану"
-
-#: Xconfig/resolution_and_depth.pm:311 diskdrake/hd_gtk.pm:336
-#: install_steps_gtk.pm:288 mouse.pm:168 services.pm:162
-#: standalone/drakbackup:1606 standalone/drakperm:250
-#, c-format
-msgid "Other"
-msgstr "Іншыя"
-
-#: Xconfig/resolution_and_depth.pm:360
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Выбар памераў экрану і глыбіні колеру"
-
-#: Xconfig/resolution_and_depth.pm:361
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Відэакарта: %s"
-
-#: Xconfig/resolution_and_depth.pm:375 interactive.pm:119 interactive.pm:436
-#: interactive/http.pm:103 interactive/http.pm:156 interactive/newt.pm:321
-#: interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:143
-#: standalone/drakTermServ:222 standalone/drakTermServ:543
-#: standalone/drakbackup:1372 standalone/drakbackup:4123
-#: standalone/drakbackup:4183 standalone/drakbackup:4227
-#: standalone/drakbackup:4481 standalone/drakconnect:158
-#: standalone/drakconnect:852 standalone/drakconnect:939
-#: standalone/drakconnect:1030 standalone/drakfont:569 standalone/drakfont:579
-#: standalone/draksplash:173 standalone/drakups:210 standalone/net_monitor:339
-#: ugtk2.pm:392 ugtk2.pm:490 ugtk2.pm:899 ugtk2.pm:922
-#, c-format
-msgid "Ok"
-msgstr "Ок"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/smbnfs_gtk.pm:80 help.pm:90
-#: help.pm:445 install_steps_gtk.pm:455 install_steps_interactive.pm:406
-#: install_steps_interactive.pm:811 interactive.pm:120 interactive.pm:437
-#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
-#: interactive/stdio.pm:39 interactive/stdio.pm:142
-#: printer/printerdrake.pm:3882 standalone/drakautoinst:215
-#: standalone/drakbackup:1372 standalone/drakbackup:4052
-#: standalone/drakbackup:4056 standalone/drakbackup:4111
-#: standalone/drakbackup:4481 standalone/drakconnect:157
-#: standalone/drakconnect:937 standalone/drakconnect:1029
-#: standalone/drakfont:579 standalone/drakfont:655 standalone/drakfont:733
-#: standalone/draksplash:173 standalone/drakups:217 standalone/logdrake:176
-#: standalone/net_monitor:338 ugtk2.pm:386 ugtk2.pm:488 ugtk2.pm:497
-#: ugtk2.pm:899
-#, c-format
-msgid "Cancel"
-msgstr "Адмена"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/hd_gtk.pm:150
-#: install_steps_gtk.pm:232 install_steps_gtk.pm:617 interactive.pm:567
-#: interactive/gtk.pm:682 interactive/gtk.pm:684 standalone/drakTermServ:311
-#: standalone/drakbackup:4048 standalone/drakbug:105
-#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:511 standalone/draknfs:206 standalone/drakperm:133
-#: standalone/draksambashare:320 standalone/draksec:344 standalone/draksec:346
-#: standalone/draksec:364 standalone/draksec:366 ugtk2.pm:1031 ugtk2.pm:1032
-#, c-format
-msgid "Help"
-msgstr "Дапамога"
-
-#: Xconfig/test.pm:30
-#, c-format
-msgid "Test of the configuration"
-msgstr "Праверка параметраў настройкі"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Ці жадаеце пратэсціраваць настройкі?"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-
-#: Xconfig/test.pm:69
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-
-#: Xconfig/test.pm:129
-#, fuzzy, c-format
-msgid "Leaving in %d seconds"
-msgstr "%d секундаў"
-
-#: Xconfig/test.pm:129
-#, fuzzy, c-format
-msgid "Is this the correct setting?"
-msgstr "Гэта дакладна?"
-
-#: Xconfig/various.pm:29
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Тып клавіятуры: %s\n"
-
-#: Xconfig/various.pm:30
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Тып мышы: %s\n"
-
-#: Xconfig/various.pm:31
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Мыш: %s\n"
-
-#: Xconfig/various.pm:33
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Манітор: %s\n"
-
-#: Xconfig/various.pm:34
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Часціня гар.разг. манітору: %s\n"
-
-#: Xconfig/various.pm:35
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Часціня верт.разг. манітору: %s\n"
-
-#: Xconfig/various.pm:37
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Відэакарта: %s\n"
-
-#: Xconfig/various.pm:38
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Відэапамяць: %s Кб\n"
-
-#: Xconfig/various.pm:40
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Параметры глыбіні колеру: %s\n"
-
-#: Xconfig/various.pm:41
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Памеры экрану: %s\n"
-
-#: Xconfig/various.pm:43
-#, c-format
-msgid "Xorg driver: %s\n"
-msgstr "Сервер Xorg: %s\n"
-
-#: Xconfig/various.pm:72
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "Запуск X пры старце сістэмы"
-
-#: Xconfig/various.pm:74
-#, c-format
-msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(Xorg) upon booting.\n"
-"Would you like Xorg to start when you reboot?"
-msgstr ""
-"Можна настроіць сістэму для аўтаматычнага запуску X пасля старту сістэмы.\n"
-"Жадаеце, каб X стартаваў пры рэстарце?"
-
-#: Xconfig/various.pm:87
-#, c-format
-msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
-msgstr ""
-
-#: Xconfig/various.pm:99
-#, c-format
-msgid "What norm is your TV using?"
-msgstr ""
-
-#: Xconfig/xfree.pm:648
-#, c-format
-msgid ""
-"_:weird aspect ratio\n"
-"other"
-msgstr ""
-
-#: any.pm:153 harddrake/sound.pm:195 interactive.pm:474 pkgs.pm:474
-#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
-#: standalone/drakups:99 standalone/drakxtv:92 standalone/harddrake2:375
-#: standalone/service_harddrake:235
+#: any.pm:157 diskdrake/interactive.pm:422 diskdrake/interactive.pm:617
+#: diskdrake/interactive.pm:798 diskdrake/interactive.pm:842
+#: diskdrake/interactive.pm:904 diskdrake/interactive.pm:1188 do_pkgs.pm:209
+#: do_pkgs.pm:255 harddrake/sound.pm:195 interactive.pm:576
#, c-format
msgid "Please wait"
msgstr "Калі ласка, пачакайце"
-#: any.pm:153
+#: any.pm:157
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "Усталяванне загрузчыку"
-#: any.pm:164
+#: any.pm:168
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -793,12 +37,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:175
+#: any.pm:179
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Працэс усталявання загрузчыка не атрымаўся. Узнікла наступная памылка:"
-#: any.pm:181
+#: any.pm:185
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -809,7 +53,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:219
+#: any.pm:223
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -819,258 +63,269 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:242 help.pm:740
+#: any.pm:246
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Першы сектар прылады (MBR)"
-#: any.pm:243
+#: any.pm:247
#, fuzzy, c-format
msgid "First sector of the root partition"
msgstr "Першы сектар загрузачнага раздзелу"
-#: any.pm:245
+#: any.pm:249
#, fuzzy, c-format
msgid "On Floppy"
msgstr "Захаванне на дыскету"
-#: any.pm:247 help.pm:740 printer/printerdrake.pm:4203
+#: any.pm:251
#, c-format
msgid "Skip"
msgstr "Прапусціць"
-#: any.pm:251
+#: any.pm:255
#, c-format
msgid "LILO/grub Installation"
msgstr "Усталяванне LILO/GRUB"
-#: any.pm:252
+#: any.pm:257
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
-#: any.pm:278 standalone/drakboot:269
+#: any.pm:284
#, fuzzy, c-format
msgid "Boot Style Configuration"
msgstr "Настройка IDE"
-#: any.pm:280 any.pm:281 any.pm:314 any.pm:315
+#: any.pm:294 any.pm:326 any.pm:327
#, c-format
msgid "Bootloader main options"
msgstr "Галоўныя опцыі пачатковага загрузчыку"
-#: any.pm:286
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Пазначце памер RAM у Мб"
-
-#: any.pm:288
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Опцыя ‟Абмежаванне опцыяў каманднага радку“ не выкарыстоўваецца без пароля"
-
-#: any.pm:289 any.pm:628 authentication.pm:192
-#, c-format
-msgid "The passwords do not match"
-msgstr "Паролі не супадаюць"
-
-#: any.pm:289 any.pm:628 authentication.pm:192 diskdrake/interactive.pm:1336
-#, c-format
-msgid "Please try again"
-msgstr "Паспрабуйце яшчэ раз"
+#: any.pm:299
+#, fuzzy, c-format
+msgid "Bootloader"
+msgstr "Усталяванне загрузчыку"
-#: any.pm:294 any.pm:319
+#: any.pm:300 any.pm:331
#, fuzzy, c-format
msgid "Bootloader to use"
msgstr "Галоўныя опцыі пачатковага загрузчыку"
-#: any.pm:296 any.pm:321
+#: any.pm:302 any.pm:333
#, c-format
msgid "Boot device"
msgstr "Загрузачная прылада"
-#: any.pm:298
+#: any.pm:304
+#, c-format
+msgid "Main options"
+msgstr ""
+
+#: any.pm:305
#, c-format
msgid "Delay before booting default image"
msgstr "Затрымка перад загрузкай вобразу па дамаўленню"
-#: any.pm:299
+#: any.pm:306
#, c-format
msgid "Enable ACPI"
msgstr ""
-#: any.pm:301
-#, c-format
-msgid "Force no APIC"
-msgstr ""
+#: any.pm:307
+#, fuzzy, c-format
+msgid "Enable APIC"
+msgstr "Сервер друку"
-#: any.pm:303
+#: any.pm:308
#, c-format
-msgid "Force No Local APIC"
+msgid "Enable Local APIC"
msgstr ""
-#: any.pm:305 any.pm:662 authentication.pm:197 diskdrake/smbnfs_gtk.pm:180
-#: network/netconnect.pm:584 printer/printerdrake.pm:1867
-#: printer/printerdrake.pm:1988 standalone/drakbackup:1650
-#: standalone/drakbackup:3641 standalone/drakups:297
+#: any.pm:310 any.pm:686 authentication.pm:196 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Пароль"
-#: any.pm:306 any.pm:663 authentication.pm:198
+#: any.pm:312 authentication.pm:207
+#, c-format
+msgid "The passwords do not match"
+msgstr "Паролі не супадаюць"
+
+#: any.pm:312 authentication.pm:207 diskdrake/interactive.pm:1348
+#, c-format
+msgid "Please try again"
+msgstr "Паспрабуйце яшчэ раз"
+
+#: any.pm:313
+#, fuzzy, c-format
+msgid "You can not use a password with %s"
+msgstr "Вы не можаце разбіваць на разделы, памер якіх меней за 32 Мб"
+
+#: any.pm:316 any.pm:687 authentication.pm:197
#, c-format
msgid "Password (again)"
msgstr "Паўтарыце пароль"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "Restrict command line options"
msgstr "Абмежаванне опцыяў каманднага радка"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "restrict"
msgstr "абмежаванне"
-#: any.pm:309
+#: any.pm:318
+#, c-format
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr ""
+"Опцыя ‟Абмежаванне опцыяў каманднага радку“ не выкарыстоўваецца без пароля"
+
+#: any.pm:320
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Ачышчаць /tmp пры кожнай загрузцы"
-#: any.pm:310
+#: any.pm:321
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Пазначце дакладны памер RAM (знойдзена %d Мб)"
-#: any.pm:320
+#: any.pm:322
+#, c-format
+msgid "Give the ram size in MB"
+msgstr "Пазначце памер RAM у Мб"
+
+#: any.pm:332
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:322
+#: any.pm:334
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:323
+#: any.pm:335
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""
-#: any.pm:324
+#: any.pm:336
#, fuzzy, c-format
msgid "Enable CD Boot?"
msgstr "Дазволіць 6dB павышэнне + цяжкае лімітаванне"
-#: any.pm:325
+#: any.pm:337
#, fuzzy, c-format
msgid "Enable OF Boot?"
msgstr "Дазволіць 6dB павышэнне + цяжкае лімітаванне"
-#: any.pm:326
+#: any.pm:338
#, fuzzy, c-format
msgid "Default OS?"
msgstr "Па дамаўленню"
-#: any.pm:380
+#: any.pm:404
#, c-format
msgid "Image"
msgstr "Вобраз"
-#: any.pm:381 any.pm:391
+#: any.pm:405 any.pm:418
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:382 any.pm:404
+#: any.pm:406 any.pm:431
#, c-format
msgid "Append"
msgstr "Далучыць"
-#: any.pm:384 standalone/drakboot:271 standalone/drakboot:275
+#: any.pm:408
+#, c-format
+msgid "Xen append"
+msgstr ""
+
+#: any.pm:411
#, c-format
msgid "Video mode"
msgstr "Відэа-рэжым"
-#: any.pm:386
+#: any.pm:413
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:387
+#: any.pm:414
#, fuzzy, c-format
msgid "Network profile"
msgstr "Сеткавы інтэрфейс"
-#: any.pm:396 any.pm:401 any.pm:403 diskdrake/interactive.pm:450
+#: any.pm:423 any.pm:428 any.pm:430 diskdrake/interactive.pm:443
#, c-format
msgid "Label"
msgstr "Метка"
-#: any.pm:398 any.pm:408 harddrake/v4l.pm:438 standalone/drakbackup:2104
-#: standalone/draksec:52
+#: any.pm:425 any.pm:433 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Па дамаўленню"
-#: any.pm:405
-#, fuzzy, c-format
-msgid "Initrd-size"
-msgstr "Initrd"
-
-#: any.pm:407
+#: any.pm:432
#, fuzzy, c-format
msgid "NoVideo"
msgstr "Відэа"
-#: any.pm:418
+#: any.pm:443
#, c-format
msgid "Empty label not allowed"
msgstr "Пустая метка не дазваляецца"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a kernel image"
msgstr ""
-#: any.pm:419
+#: any.pm:444
#, fuzzy, c-format
msgid "You must specify a root partition"
msgstr "Першы сектар загрузачнага раздзелу"
-#: any.pm:420
+#: any.pm:445
#, c-format
msgid "This label is already used"
msgstr "Гэтая метка ўжо выкарыстоўваецца"
-#: any.pm:434
+#: any.pm:459
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Які тып пункта жадаеце дадаць?"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Іншая АС (SunOS,...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Іншая АС (MacOS,...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (Windows...)"
msgstr "Іншая АС (Windows...)"
-#: any.pm:464
+#: any.pm:489
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -1079,52 +334,47 @@ msgstr ""
"У меню маюцца наступныя пункты.\n"
"Вы можаце дадаць яшчэ, альбо змяніць існуючыя."
-#: any.pm:614
+#: any.pm:640
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:615
+#: any.pm:641
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:616
+#: any.pm:642
#, c-format
msgid "allow \"su\""
msgstr ""
-#: any.pm:617
+#: any.pm:643
#, fuzzy, c-format
msgid "access to administrative files"
msgstr "Выкарыстоўваць настройкі сыстэмнага адміністратара"
-#: any.pm:618
+#: any.pm:644
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:619
+#: any.pm:645
#, fuzzy, c-format
msgid "access to compilation tools"
msgstr "Канфігурацыя сістэмных сэрвісаў"
-#: any.pm:624
+#: any.pm:650
#, c-format
msgid "(already added %s)"
msgstr "(ужо дададзена %s)"
-#: any.pm:629
-#, c-format
-msgid "This password is too simple"
-msgstr "Гэты пароль занадта просты"
-
-#: any.pm:630
+#: any.pm:657
#, c-format
msgid "Please give a user name"
msgstr "Калі ласка, увядзіце імя карыстальніку"
-#: any.pm:631
+#: any.pm:658
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
@@ -1132,42 +382,42 @@ msgstr ""
"Імя карыстальніку павінна змяшчаць літары толькі на ніжнім рэгістры, \n"
"лічбы, ‛-’ і ‛_’"
-#: any.pm:632
+#: any.pm:659
#, fuzzy, c-format
msgid "The user name is too long"
msgstr "Імя занадта доўгае"
-#: any.pm:633
+#: any.pm:660
#, c-format
msgid "This user name has already been added"
msgstr "Гэта імя карыстальніку ўжо дададзена"
-#: any.pm:634 any.pm:665
+#: any.pm:661 any.pm:689
#, c-format
msgid "User ID"
msgstr "ID карыстальніка"
-#: any.pm:635 any.pm:666
+#: any.pm:662 any.pm:690
#, c-format
msgid "Group ID"
msgstr "ID групы"
-#: any.pm:638
+#: any.pm:665
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "UIN павінен утрымліваць толькі лічбы.\n"
-#: any.pm:639
+#: any.pm:666
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:644 standalone/draksambashare:1214
+#: any.pm:671
#, c-format
msgid "Add user"
msgstr "Дадаць карыстальніка"
-#: any.pm:646
+#: any.pm:673
#, c-format
msgid ""
"Enter a user\n"
@@ -1176,98 +426,94 @@ msgstr ""
"Увядзіце імя карыстальніку\n"
"%s"
-#: any.pm:649 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:154
-#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:81 help.pm:531
-#: interactive/http.pm:151 printer/printerdrake.pm:197
-#: printer/printerdrake.pm:382 printer/printerdrake.pm:5010
-#: standalone/drakbackup:2836 standalone/scannerdrake:685
-#: standalone/scannerdrake:835
+#: any.pm:676 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:166
+#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:82
+#: interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Зроблена"
-#: any.pm:650 help.pm:52
+#: any.pm:677
#, c-format
msgid "Accept user"
msgstr "Прыняць карыстальніка"
-#: any.pm:660
+#: any.pm:682
#, c-format
msgid "Real name"
msgstr "Уласнае імя"
-#: any.pm:661 standalone/drakbackup:1645
+#: any.pm:685
#, fuzzy, c-format
msgid "Login name"
msgstr "Гульня ў косьці"
-#: any.pm:664
+#: any.pm:688
#, c-format
msgid "Shell"
msgstr "Абалонка:"
-#: any.pm:668
-#, c-format
-msgid "Icon"
-msgstr "Піктаграма"
-
-#: any.pm:715 security/l10n.pm:14
+#: any.pm:735 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Аўтаматычны ўваход у сістэму"
-#: any.pm:716
+#: any.pm:736
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:717
+#: any.pm:737
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Зачыніць гэтую тэчку"
-#: any.pm:718
+#: any.pm:738
#, c-format
msgid "Choose the default user:"
msgstr "Абярыце асноўнага карыстальніка:"
-#: any.pm:719
+#: any.pm:739
#, c-format
msgid "Choose the window manager to run:"
msgstr "Абярыце мэнэджар вокнаў:"
-#: any.pm:740
+#: any.pm:767
#, c-format
msgid "License agreement"
msgstr "Ліцэнзійная дамова"
-#: any.pm:745
+#: any.pm:770 diskdrake/dav.pm:26
+#, c-format
+msgid "Quit"
+msgstr "Выхад"
+
+#: any.pm:773
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Калі ласка, пачакайце"
-#: any.pm:748 help.pm:15 install_steps_gtk.pm:539
-#: install_steps_interactive.pm:715 standalone/drakautoinst:214
+#: any.pm:776
#, c-format
msgid "Accept"
msgstr "Прыняць"
-#: any.pm:748 install_steps_gtk.pm:539 install_steps_interactive.pm:715
+#: any.pm:776
#, c-format
msgid "Refuse"
msgstr "Адказаць"
-#: any.pm:765 any.pm:833
+#: any.pm:795 any.pm:863
#, fuzzy, c-format
msgid "Please choose a language to use."
msgstr "калі ласка, пазначце тып вашай мышы."
-#: any.pm:766 any.pm:834
+#: any.pm:796 any.pm:864
#, fuzzy, c-format
msgid "Language choice"
msgstr "Выбар мовы"
-#: any.pm:794
+#: any.pm:826
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
@@ -1275,70 +521,72 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "Вы можаце абраць іншыя мовы, якія будуць даступны пасля ўсталявання"
-#: any.pm:797
+#: any.pm:829
#, c-format
msgid "Multi languages"
msgstr ""
-#: any.pm:813 any.pm:842 help.pm:648
+#: any.pm:841 any.pm:872
#, c-format
-msgid "Use Unicode by default"
+msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:814 help.pm:648
+#: any.pm:843
#, fuzzy, c-format
msgid "All languages"
msgstr "Выбар мовы"
-#: any.pm:888 help.pm:567 help.pm:856 install_steps_interactive.pm:932
+#: any.pm:918
#, fuzzy, c-format
msgid "Country / Region"
msgstr "Краіна - рэгіён і мова"
-#: any.pm:890
+#: any.pm:920
#, fuzzy, c-format
msgid "Please choose your country."
msgstr "калі ласка, пазначце тып вашай мышы."
-#: any.pm:892
+#: any.pm:922
#, c-format
msgid "Here is the full list of available countries"
msgstr ""
-#: any.pm:893
+#: any.pm:923
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Парты вываду:"
-#: any.pm:893 help.pm:52 help.pm:410 help.pm:432 help.pm:648 help.pm:723
-#: interactive.pm:397
+#: any.pm:923 interactive.pm:477
#, c-format
msgid "Advanced"
msgstr "Адмысловае"
-#: any.pm:901
+#: any.pm:929
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:904 install_any.pm:422 network/netconnect.pm:317
-#: network/netconnect.pm:322 network/netconnect.pm:1237 network/wireless.pm:7
-#: printer/printerdrake.pm:117
+#: any.pm:932
#, c-format
msgid "None"
msgstr "Нічога"
-#: any.pm:1021
+#: any.pm:1012
#, fuzzy, c-format
msgid "No sharing"
msgstr "Нічога"
-#: any.pm:1021
+#: any.pm:1012
#, fuzzy, c-format
msgid "Allow all users"
msgstr "Дадаць карыстальніка"
-#: any.pm:1025
+#: any.pm:1012
+#, c-format
+msgid "Custom"
+msgstr "Па выбару"
+
+#: any.pm:1016
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1348,49 +596,93 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1037
+#: any.pm:1028
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1040
+#: any.pm:1031
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1048
+#: any.pm:1039
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1073
+#: any.pm:1064
#, c-format
msgid "Launch userdrake"
msgstr ""
-#: any.pm:1073 printer/printerdrake.pm:4085 printer/printerdrake.pm:4088
-#: printer/printerdrake.pm:4089 printer/printerdrake.pm:4090
-#: printer/printerdrake.pm:5328 standalone/drakTermServ:321
-#: standalone/drakbackup:4245 standalone/drakbug:126 standalone/drakfont:499
-#: standalone/drakids:64 standalone/drakids:77 standalone/drakids:85
-#: standalone/draknfs:210 standalone/net_monitor:117
-#: standalone/printerdrake:583
+#: any.pm:1064 interactive/gtk.pm:747
#, c-format
msgid "Close"
msgstr "Зачыніць"
-#: any.pm:1075
+#: any.pm:1066
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
+#: any.pm:1158
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Калі ласка, выйдзіце, а потым скарыстайце Ctrl-Alt-BackSpace"
+
+#: any.pm:1162
+#, c-format
+msgid "You need to log out and back in again for changes to take effect"
+msgstr ""
+
+#: any.pm:1212
+#, fuzzy, c-format
+msgid "Timezone"
+msgstr "Тэма"
+
+#: any.pm:1212
+#, c-format
+msgid "Which is your timezone?"
+msgstr "Які ваш часавы пояс?"
+
+#: any.pm:1224 any.pm:1226
+#, c-format
+msgid "Date, Clock & Time Zone Settings"
+msgstr ""
+
+#: any.pm:1227
+#, c-format
+msgid "What is the best time?"
+msgstr ""
+
+#: any.pm:1231
+#, fuzzy, c-format
+msgid "%s (hardware clock set to UTC)"
+msgstr "Ваш сістэмны гадзіннік усталяваны на GMT?"
+
+#: any.pm:1232
+#, fuzzy, c-format
+msgid "%s (hardware clock set to local time)"
+msgstr "Ваш сістэмны гадзіннік усталяваны на GMT?"
+
+#: any.pm:1234
+#, fuzzy, c-format
+msgid "NTP Server"
+msgstr "NIS сэервер:"
+
+#: any.pm:1235
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr ""
+
#: authentication.pm:23
#, c-format
msgid "Local file"
@@ -1505,7 +797,7 @@ msgstr "Аўтэнтыфікацыя"
msgid "LDAP Base dn"
msgstr ""
-#: authentication.pm:98 share/compssUsers.pl:102
+#: authentication.pm:98
#, fuzzy, c-format
msgid "LDAP Server"
msgstr "Сервак"
@@ -1535,14 +827,12 @@ msgstr ""
msgid "Authentication Active Directory"
msgstr "Аўтэнтыфікацыя"
-#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:181
+#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Маёнтак"
-#: authentication.pm:124 diskdrake/dav.pm:63 help.pm:147
-#: printer/printerdrake.pm:75 share/compssUsers.pl:82
-#: standalone/drakTermServ:296
+#: authentication.pm:124 diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Сервак"
@@ -1619,46 +909,40 @@ msgstr "Імя дамену"
msgid "Domain Admin Password"
msgstr "Яшчэ раз пароль:"
-#: authentication.pm:181
+#: authentication.pm:181 authentication.pm:198
#, c-format
-msgid "Set administrator (root) password and network authentication methods"
-msgstr ""
+msgid "Authentication"
+msgstr "Аўтэнтыфікацыя"
#: authentication.pm:182
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Пароль для root"
-#: authentication.pm:183 standalone/drakvpn:1111
+#: authentication.pm:184
#, fuzzy, c-format
msgid "Authentication method"
msgstr "Аўтэнтыфікацыя"
#. -PO: keep this short or else the buttons will not fit in the window
-#: authentication.pm:188 help.pm:723
+#: authentication.pm:189
#, c-format
msgid "No password"
msgstr "Няма паролю"
-#: authentication.pm:194
+#: authentication.pm:210
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Гэты пароль занадта просты (яго даўжыня павінна быць не меней за %d літараў)"
-#: authentication.pm:199 network/netconnect.pm:322 network/netconnect.pm:585
-#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:481
-#, c-format
-msgid "Authentication"
-msgstr "Аўтэнтыфікацыя"
-
-#: authentication.pm:331
+#: authentication.pm:351
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "Немагчыма выкарыстоўваць broadcast без дамена NIS"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:767
+#: bootloader.pm:880
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1668,292 +952,105 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:909
-#, c-format
-msgid "LILO with graphical menu"
-msgstr ""
-
-#: bootloader.pm:910
+#: bootloader.pm:1028
#, c-format
msgid "LILO with text menu"
msgstr ""
-#: bootloader.pm:911
+#: bootloader.pm:1029
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:912
+#: bootloader.pm:1030
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:913
+#: bootloader.pm:1031
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:990
+#: bootloader.pm:1032
+#, c-format
+msgid "SILO"
+msgstr "SILO"
+
+#: bootloader.pm:1112
#, c-format
msgid "not enough room in /boot"
msgstr "Не хапае дыскавай прасторы ў /boot"
-#: bootloader.pm:1483
+#: bootloader.pm:1679
#, fuzzy, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
-#: bootloader.pm:1523
+#: bootloader.pm:1732
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:1536
+#: bootloader.pm:1745
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:1537
+#: bootloader.pm:1746
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Усталяванне загрузчыку"
-#: common.pm:134
+#: common.pm:129
+#, fuzzy, c-format
+msgid "B"
+msgstr "кб"
+
+#: common.pm:129
#, c-format
msgid "KB"
msgstr "кб"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "MB"
msgstr "Мб"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "GB"
msgstr "Гб"
-#: common.pm:142
+#: common.pm:137
#, c-format
msgid "TB"
msgstr ""
-#: common.pm:150
+#: common.pm:145
#, c-format
msgid "%d minutes"
msgstr "%d хвілін"
-#: common.pm:152
+#: common.pm:147
#, c-format
msgid "1 minute"
msgstr "1 хвіліна"
-#: common.pm:154
+#: common.pm:149
#, c-format
msgid "%d seconds"
msgstr "%d секундаў"
-#: common.pm:260
-#, c-format
-msgid "kdesu missing"
-msgstr ""
-
-#: common.pm:263
+#: common.pm:298
#, c-format
-msgid "consolehelper missing"
+msgid "command %s missing"
msgstr ""
-#: crypto.pm:13 crypto.pm:48 lang.pm:207 network/adsl_consts.pm:66
-#: network/adsl_consts.pm:75 network/adsl_consts.pm:84
-#, c-format
-msgid "Austria"
-msgstr "Аўстрыя"
-
-#: crypto.pm:14 crypto.pm:47 lang.pm:208 standalone/drakxtv:48
-#, c-format
-msgid "Australia"
-msgstr "Аўстралія"
-
-#: crypto.pm:15 crypto.pm:49 lang.pm:214 network/adsl_consts.pm:93
-#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
-#: network/adsl_consts.pm:123 network/netconnect.pm:44
-#, c-format
-msgid "Belgium"
-msgstr "Бельгія"
-
-#: crypto.pm:16 crypto.pm:50 lang.pm:223 network/adsl_consts.pm:132
-#: network/adsl_consts.pm:143 network/adsl_consts.pm:152
-#: network/adsl_consts.pm:161
-#, c-format
-msgid "Brazil"
-msgstr "Бразылія"
-
-#: crypto.pm:17 crypto.pm:51 lang.pm:230
-#, c-format
-msgid "Canada"
-msgstr "Канада"
-
-#: crypto.pm:18 crypto.pm:74 lang.pm:235 network/adsl_consts.pm:891
-#: network/adsl_consts.pm:900 network/adsl_consts.pm:911
-#, c-format
-msgid "Switzerland"
-msgstr "Щвэйцарыя"
-
-#: crypto.pm:19 lang.pm:242
-#, c-format
-msgid "Costa Rica"
-msgstr "Коста-Рыка"
-
-#: crypto.pm:20 crypto.pm:52 lang.pm:248 network/adsl_consts.pm:368
-#, c-format
-msgid "Czech Republic"
-msgstr "Чэская Рэспубліка"
-
-#: crypto.pm:21 crypto.pm:57 lang.pm:249 network/adsl_consts.pm:499
-#: network/adsl_consts.pm:508
-#, c-format
-msgid "Germany"
-msgstr "Нямецкі"
-
-#: crypto.pm:22 crypto.pm:53 lang.pm:251 network/adsl_consts.pm:378
-#, c-format
-msgid "Denmark"
-msgstr "Данія"
-
-#: crypto.pm:23 crypto.pm:54 lang.pm:256
-#, c-format
-msgid "Estonia"
-msgstr "Курляндыя"
-
-#: crypto.pm:24 crypto.pm:72 lang.pm:260 network/adsl_consts.pm:759
-#: network/adsl_consts.pm:770 network/adsl_consts.pm:781
-#: network/adsl_consts.pm:792 network/adsl_consts.pm:801
-#: network/adsl_consts.pm:810 network/adsl_consts.pm:819
-#: network/adsl_consts.pm:828 network/adsl_consts.pm:837
-#: network/adsl_consts.pm:846 network/adsl_consts.pm:855
-#: network/adsl_consts.pm:864 network/adsl_consts.pm:873
-#, c-format
-msgid "Spain"
-msgstr "Гішпанія"
-
-#: crypto.pm:25 crypto.pm:55 lang.pm:262 network/adsl_consts.pm:387
-#, c-format
-msgid "Finland"
-msgstr "Фінляндыя"
-
-#: crypto.pm:26 crypto.pm:56 lang.pm:267 network/adsl_consts.pm:396
-#: network/adsl_consts.pm:408 network/adsl_consts.pm:420
-#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
-#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
-#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
-#: network/netconnect.pm:41
-#, c-format
-msgid "France"
-msgstr "Францыя"
-
-#: crypto.pm:27 crypto.pm:58 lang.pm:280 network/adsl_consts.pm:519
-#, c-format
-msgid "Greece"
-msgstr "Грэцыя"
-
-#: crypto.pm:28 crypto.pm:59 lang.pm:291 network/adsl_consts.pm:528
-#, c-format
-msgid "Hungary"
-msgstr "Вугоршчына"
-
-#: crypto.pm:29 crypto.pm:60 lang.pm:293 network/adsl_consts.pm:537
-#: standalone/drakxtv:47
-#, c-format
-msgid "Ireland"
-msgstr "Ірляндыя"
-
-#: crypto.pm:30 crypto.pm:61 lang.pm:294 network/adsl_consts.pm:546
-#, c-format
-msgid "Israel"
-msgstr "Габрэйшчына"
-
-#: crypto.pm:31 crypto.pm:62 lang.pm:300 network/adsl_consts.pm:557
-#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
-#: network/adsl_consts.pm:589 network/netconnect.pm:43 standalone/drakxtv:47
-#, c-format
-msgid "Italy"
-msgstr "Італія"
-
-#: crypto.pm:32 crypto.pm:63 lang.pm:303
-#, c-format
-msgid "Japan"
-msgstr "Японія"
-
-#: crypto.pm:33 crypto.pm:64 lang.pm:352 network/adsl_consts.pm:620
-#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
-#: network/adsl_consts.pm:647 network/netconnect.pm:42
-#, c-format
-msgid "Netherlands"
-msgstr "Нідэрлянды"
-
-#: crypto.pm:34 crypto.pm:66 lang.pm:353 network/adsl_consts.pm:656
-#: network/adsl_consts.pm:661 network/adsl_consts.pm:666
-#: network/adsl_consts.pm:671 network/adsl_consts.pm:676
-#: network/adsl_consts.pm:681 network/adsl_consts.pm:686
-#, c-format
-msgid "Norway"
-msgstr "Нарвэгія"
-
-#: crypto.pm:35 crypto.pm:65 lang.pm:357
-#, c-format
-msgid "New Zealand"
-msgstr "Новая Зэляндыя"
-
-#: crypto.pm:36 crypto.pm:67 lang.pm:365 network/adsl_consts.pm:693
-#: network/adsl_consts.pm:704
-#, c-format
-msgid "Poland"
-msgstr "Польшча"
-
-#: crypto.pm:37 crypto.pm:68 lang.pm:370 network/adsl_consts.pm:716
-#, c-format
-msgid "Portugal"
-msgstr "Партугалія"
-
-#: crypto.pm:38 crypto.pm:69 lang.pm:376 network/adsl_consts.pm:725
-#, c-format
-msgid "Russia"
-msgstr "Расея"
-
-#: crypto.pm:39 crypto.pm:73 lang.pm:382 network/adsl_consts.pm:882
-#, c-format
-msgid "Sweden"
-msgstr "Швэцыя"
-
-#: crypto.pm:40 crypto.pm:70 lang.pm:387
-#, c-format
-msgid "Slovakia"
-msgstr "Словакія"
-
-#: crypto.pm:41 crypto.pm:76 lang.pm:401 network/adsl_consts.pm:920
-#, c-format
-msgid "Thailand"
-msgstr "Тайланд"
-
-#: crypto.pm:42 crypto.pm:75 lang.pm:411
-#, c-format
-msgid "Taiwan"
-msgstr "Тайвань"
-
-#: crypto.pm:43 crypto.pm:71 lang.pm:430 standalone/drakxtv:49
-#, c-format
-msgid "South Africa"
-msgstr "Паўднёвая Афрыка"
-
-#: crypto.pm:77 crypto.pm:112 lang.pm:416 network/netconnect.pm:45
-#, c-format
-msgid "United States"
-msgstr "Злучаныя Штаты"
-
#: diskdrake/dav.pm:17
#, c-format
msgid ""
@@ -1968,23 +1065,46 @@ msgstr ""
msgid "New"
msgstr "Новы"
-#: diskdrake/dav.pm:61 diskdrake/interactive.pm:456 diskdrake/smbnfs_gtk.pm:74
+#: diskdrake/dav.pm:61 diskdrake/interactive.pm:449 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Разманціраваць"
-#: diskdrake/dav.pm:62 diskdrake/interactive.pm:453 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:62 diskdrake/interactive.pm:446 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Манціраванне"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:447
-#: diskdrake/interactive.pm:679 diskdrake/interactive.pm:698
-#: diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:78
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:440
+#: diskdrake/interactive.pm:670 diskdrake/interactive.pm:688
+#: diskdrake/interactive.pm:692 diskdrake/removable.pm:23
+#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Кропка манціравання"
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:442
+#: diskdrake/interactive.pm:1047 diskdrake/removable.pm:24
+#: diskdrake/smbnfs_gtk.pm:80
+#, c-format
+msgid "Options"
+msgstr "Опцыі"
+
+#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:229
+#: diskdrake/interactive.pm:242 diskdrake/interactive.pm:398
+#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:547
+#: diskdrake/interactive.pm:552 diskdrake/interactive.pm:660
+#: diskdrake/interactive.pm:922 diskdrake/interactive.pm:1092
+#: diskdrake/interactive.pm:1105 diskdrake/interactive.pm:1108
+#: diskdrake/interactive.pm:1348 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:19
+#: do_pkgs.pm:24 do_pkgs.pm:40 do_pkgs.pm:56 do_pkgs.pm:61 fsedit.pm:229
+#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
+#: scanner.pm:94 scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95
+#: wizards.pm:99 wizards.pm:121
+#, c-format
+msgid "Error"
+msgstr "Памылка"
+
#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
@@ -2000,33 +1120,48 @@ msgstr ""
msgid "Server: "
msgstr "Паслужнік: "
-#: diskdrake/dav.pm:110 diskdrake/interactive.pm:523
-#: diskdrake/interactive.pm:1218 diskdrake/interactive.pm:1296
+#: diskdrake/dav.pm:110 diskdrake/interactive.pm:520
+#: diskdrake/interactive.pm:1230 diskdrake/interactive.pm:1308
#, c-format
msgid "Mount point: "
msgstr "Пункт манціравання:"
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1303
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1315
#, c-format
msgid "Options: %s"
msgstr "Опцыі: %s"
-#: diskdrake/hd_gtk.pm:52 diskdrake/interactive.pm:293
-#: diskdrake/smbnfs_gtk.pm:21 install_interactive.pm:63
-#: install_interactive.pm:217 install_interactive.pm:223
-#: install_interactive.pm:276 install_interactive.pm:281
-#: install_steps_interactive.pm:253 install_steps_interactive.pm:317
-#: steps.pm:21
+#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:286
+#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
+#: fs/partitioning_wizard.pm:47 fs/partitioning_wizard.pm:201
+#: fs/partitioning_wizard.pm:207 fs/partitioning_wizard.pm:247
+#: fs/partitioning_wizard.pm:266 fs/partitioning_wizard.pm:271
#, fuzzy, c-format
msgid "Partitioning"
msgstr "Прынтэр"
-#: diskdrake/hd_gtk.pm:92
+#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1067
+#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1130
+#, c-format
+msgid "Read carefully!"
+msgstr "Чытайце ўважліва!"
+
+#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr "Па-першае, зрабіце рэзервовую копію вашых дадзеных"
-#: diskdrake/hd_gtk.pm:95
+#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:222
+#, c-format
+msgid "Exit"
+msgstr "Выход"
+
+#: diskdrake/hd_gtk.pm:94
+#, c-format
+msgid "Continue"
+msgstr "Працягнуць"
+
+#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
@@ -2036,17 +1171,18 @@ msgstr ""
"Калі вы плануеце выкарыстоўваць boot вобласць, тады размясціце яе\n"
" не далей за 2048 сектароў ад пачатку дыска"
-#: diskdrake/hd_gtk.pm:152 help.pm:531
+#: diskdrake/hd_gtk.pm:162 interactive.pm:640 interactive/gtk.pm:719
+#: interactive/gtk.pm:740 interactive/gtk.pm:760 ugtk2.pm:923 ugtk2.pm:924
#, c-format
-msgid "Wizard"
-msgstr "Майстар стварэння"
+msgid "Help"
+msgstr "Дапамога"
-#: diskdrake/hd_gtk.pm:185
+#: diskdrake/hd_gtk.pm:197
#, c-format
msgid "Choose action"
msgstr "Абярыце дзеянне"
-#: diskdrake/hd_gtk.pm:189
+#: diskdrake/hd_gtk.pm:201
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -2054,148 +1190,162 @@ msgid ""
"(click on it, then click on \"Resize\")"
msgstr ""
-#: diskdrake/hd_gtk.pm:191
+#: diskdrake/hd_gtk.pm:203
#, c-format
msgid "Please click on a partition"
msgstr "Націсніце на раздзел"
-#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:457
-#: standalone/drakbackup:3088 standalone/drakbackup:3148
+#: diskdrake/hd_gtk.pm:217 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Падрабязнасці"
-#: diskdrake/hd_gtk.pm:251
+#: diskdrake/hd_gtk.pm:265
#, fuzzy, c-format
msgid "No hard drives found"
msgstr "Вызначэнне жорсткага дыску"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:292
+#, c-format
+msgid "Unknown"
+msgstr "Невядома"
+
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Ext2"
msgstr "Ext2"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Journalised FS"
msgstr ""
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "SunOS"
msgstr "SunOS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "HFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Windows"
msgstr "Вокны"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1233
+#: diskdrake/hd_gtk.pm:352 services.pm:149
+#, c-format
+msgid "Other"
+msgstr "Іншыя"
+
+#: diskdrake/hd_gtk.pm:352 diskdrake/interactive.pm:1244
#, c-format
msgid "Empty"
msgstr "Пуста"
-#: diskdrake/hd_gtk.pm:340
+#: diskdrake/hd_gtk.pm:356
#, c-format
msgid "Filesystem types:"
msgstr "Тыпы файлавых сістэмаў:"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:359 diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:291
+#: diskdrake/interactive.pm:392 diskdrake/interactive.pm:428
+#: diskdrake/interactive.pm:577 diskdrake/interactive.pm:751
+#: diskdrake/interactive.pm:809 diskdrake/interactive.pm:902
+#: diskdrake/interactive.pm:944 diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:1173 diskdrake/interactive.pm:1211
+#: diskdrake/interactive.pm:1347 do_pkgs.pm:16 do_pkgs.pm:35 do_pkgs.pm:53
+#: harddrake/sound.pm:279
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Выкарыстоўвайце ‟%s” замест"
+msgid "Warning"
+msgstr "Увага!"
-#: diskdrake/hd_gtk.pm:357 diskdrake/interactive.pm:472
-#, c-format
-msgid "Create"
-msgstr "Стварыць"
+#: diskdrake/hd_gtk.pm:380
+#, fuzzy, c-format
+msgid "This partition is already empty"
+msgstr "Памеры якога раздзела вы жадаеце змяніць?"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:365
-#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:625
-#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
-#: standalone/harddrake2:108 standalone/harddrake2:117
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Type"
-msgstr "Тып"
+msgid "Use ``Unmount'' first"
+msgstr "Спачатку зрабіце ‟Unmount”"
-#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: diskdrake/hd_gtk.pm:359 diskdrake/interactive.pm:457
-#: standalone/drakperm:123 standalone/printerdrake:248
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Delete"
-msgstr "Знішчыць"
+msgid "Use ``%s'' instead"
+msgstr "Выкарыстоўвайце ‟%s” замест"
-#: diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:389 diskdrake/interactive.pm:441
+#: diskdrake/interactive.pm:611 diskdrake/interactive.pm:1083
+#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Спачатку зрабіце ‟Unmount”"
+msgid "Type"
+msgstr "Тып"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, fuzzy, c-format
msgid "Choose another partition"
msgstr "Стварэнне новага раздзелу"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, fuzzy, c-format
msgid "Choose a partition"
msgstr "Абярыце дзеянне"
-#: diskdrake/interactive.pm:224
-#, c-format
-msgid "Exit"
-msgstr "Выход"
-
-#: diskdrake/interactive.pm:257 help.pm:531
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Undo"
msgstr "Адкат"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to normal mode"
msgstr "Звычайны рэжым"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to expert mode"
msgstr "Рэжым эксперту"
-#: diskdrake/interactive.pm:276
+#: diskdrake/interactive.pm:269 diskdrake/interactive.pm:279
+#: diskdrake/interactive.pm:1158
+#, c-format
+msgid "Confirmation"
+msgstr "Падцьверджаньне"
+
+#: diskdrake/interactive.pm:269
#, c-format
msgid "Continue anyway?"
msgstr "Сапраўды працягваць?"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without saving"
msgstr "Выйсці без захавання"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Выйсці без запісу табліцы раздзелаў"
-#: diskdrake/interactive.pm:286
+#: diskdrake/interactive.pm:279
#, fuzzy, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ці жадаеце пратэсціраваць настройкі?"
-#: diskdrake/interactive.pm:293 install_steps_interactive.pm:317
+#: diskdrake/interactive.pm:286 fs/partitioning_wizard.pm:247
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Каб мадыфікацыя табліцы раздзелаў здейснілася, патрэбна перазагрузка."
-#: diskdrake/interactive.pm:298
+#: diskdrake/interactive.pm:291
#, c-format
msgid ""
"You should format partition %s.\n"
@@ -2203,38 +1353,38 @@ msgid ""
"Quit anyway?"
msgstr ""
-#: diskdrake/interactive.pm:311 help.pm:531
+#: diskdrake/interactive.pm:304
#, c-format
msgid "Clear all"
msgstr "Ачысціць усё"
-#: diskdrake/interactive.pm:312 help.pm:531
+#: diskdrake/interactive.pm:305
#, c-format
msgid "Auto allocate"
msgstr "Размеркаваць аўтаматычна"
-#: diskdrake/interactive.pm:313 help.pm:531 help.pm:567 help.pm:607
-#: help.pm:856 install_steps_interactive.pm:98
+#: diskdrake/interactive.pm:306 diskdrake/interactive.pm:360
+#: interactive/curses.pm:457
#, fuzzy, c-format
msgid "More"
msgstr "Перанос"
-#: diskdrake/interactive.pm:318
+#: diskdrake/interactive.pm:311
#, fuzzy, c-format
msgid "Hard drive information"
msgstr "Канфігурацыя сістэмных сэрвісаў"
-#: diskdrake/interactive.pm:350
+#: diskdrake/interactive.pm:343
#, c-format
msgid "All primary partitions are used"
msgstr "Усе першасныя раздзелы выкарыстаны"
-#: diskdrake/interactive.pm:351
+#: diskdrake/interactive.pm:344
#, c-format
msgid "I can not add any more partitions"
msgstr "Дадаць раздзел немагчыма"
-#: diskdrake/interactive.pm:352
+#: diskdrake/interactive.pm:345
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
@@ -2243,52 +1393,52 @@ msgstr ""
"Каб зрабіць больш разделаў, выдаліце адзін і стварыце пашыраны раздзел "
"(extended)"
-#: diskdrake/interactive.pm:361
+#: diskdrake/interactive.pm:354
#, c-format
msgid "No supermount"
msgstr ""
-#: diskdrake/interactive.pm:362
+#: diskdrake/interactive.pm:355
#, c-format
msgid "Supermount"
msgstr ""
-#: diskdrake/interactive.pm:363
+#: diskdrake/interactive.pm:356
#, c-format
msgid "Supermount except for CDROM drives"
msgstr ""
-#: diskdrake/interactive.pm:369 help.pm:531
+#: diskdrake/interactive.pm:362
#, fuzzy, c-format
msgid "Save partition table"
msgstr "Дадатковая табліца раздзелаў"
-#: diskdrake/interactive.pm:370 help.pm:531
+#: diskdrake/interactive.pm:363
#, fuzzy, c-format
msgid "Restore partition table"
msgstr "Дадатковая табліца раздзелаў"
-#: diskdrake/interactive.pm:371 help.pm:531
+#: diskdrake/interactive.pm:364
#, c-format
msgid "Rescue partition table"
msgstr "Дадатковая табліца раздзелаў"
-#: diskdrake/interactive.pm:373 help.pm:531
+#: diskdrake/interactive.pm:366
#, fuzzy, c-format
msgid "Reload partition table"
msgstr "Дадатковая табліца раздзелаў"
-#: diskdrake/interactive.pm:375
+#: diskdrake/interactive.pm:368
#, c-format
msgid "Removable media automounting"
msgstr ""
-#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:414
+#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:407
#, c-format
msgid "Select file"
msgstr "Абярыце файл"
-#: diskdrake/interactive.pm:400
+#: diskdrake/interactive.pm:393
#, c-format
msgid ""
"The backup partition table has not the same size\n"
@@ -2297,87 +1447,97 @@ msgstr ""
"Табліца размяшчэння рэзервовага дыску мае іншы памер\n"
"Працягваць далей?"
-#: diskdrake/interactive.pm:429
+#: diskdrake/interactive.pm:422
#, c-format
msgid "Trying to rescue partition table"
msgstr "Паспрабуем выратаваць табліцу раздзелаў"
-#: diskdrake/interactive.pm:435
+#: diskdrake/interactive.pm:428
#, fuzzy, c-format
msgid "Detailed information"
msgstr "Інфармацыя аб DMA"
-#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:444 diskdrake/interactive.pm:764
#, c-format
msgid "Resize"
msgstr "Змяненне памераў"
-#: diskdrake/interactive.pm:452
+#: diskdrake/interactive.pm:445
#, c-format
msgid "Format"
msgstr "Фарматаванне"
-#: diskdrake/interactive.pm:454
+#: diskdrake/interactive.pm:447 diskdrake/interactive.pm:850
#, c-format
msgid "Add to RAID"
msgstr "Дадаць да RAID"
-#: diskdrake/interactive.pm:455
+#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:867
#, c-format
msgid "Add to LVM"
msgstr "Дадаць да LVM"
-#: diskdrake/interactive.pm:458
+#: diskdrake/interactive.pm:450
+#, c-format
+msgid "Delete"
+msgstr "Знішчыць"
+
+#: diskdrake/interactive.pm:451
#, c-format
msgid "Remove from RAID"
msgstr "Выдаліць з RAID"
-#: diskdrake/interactive.pm:459
+#: diskdrake/interactive.pm:452
#, c-format
msgid "Remove from LVM"
msgstr "Выдаліць з LVM"
-#: diskdrake/interactive.pm:460
+#: diskdrake/interactive.pm:453
#, c-format
msgid "Modify RAID"
msgstr "Змяніць RAID"
-#: diskdrake/interactive.pm:461
+#: diskdrake/interactive.pm:454
#, c-format
msgid "Use for loopback"
msgstr "Выкарыстоўваць для віртуальнай файлавай сістэмы"
-#: diskdrake/interactive.pm:516
+#: diskdrake/interactive.pm:465
+#, c-format
+msgid "Create"
+msgstr "Стварыць"
+
+#: diskdrake/interactive.pm:509 diskdrake/interactive.pm:511
#, c-format
msgid "Create a new partition"
msgstr "Стварэнне новага раздзелу"
-#: diskdrake/interactive.pm:519
+#: diskdrake/interactive.pm:513
#, c-format
msgid "Start sector: "
msgstr "Пачатковы сектар:"
-#: diskdrake/interactive.pm:521 diskdrake/interactive.pm:938
+#: diskdrake/interactive.pm:516 diskdrake/interactive.pm:937
#, c-format
msgid "Size in MB: "
msgstr "Памер у Мб:"
-#: diskdrake/interactive.pm:522 diskdrake/interactive.pm:939
+#: diskdrake/interactive.pm:518 diskdrake/interactive.pm:938
#, c-format
msgid "Filesystem type: "
msgstr "Тып файлавай сістэмы:"
-#: diskdrake/interactive.pm:527
+#: diskdrake/interactive.pm:524
#, c-format
msgid "Preference: "
msgstr "Параметры: "
-#: diskdrake/interactive.pm:530
+#: diskdrake/interactive.pm:527
#, fuzzy, c-format
msgid "Logical volume name "
msgstr "Гульня ў косьці"
-#: diskdrake/interactive.pm:560
+#: diskdrake/interactive.pm:547
#, c-format
msgid ""
"You can not create a new partition\n"
@@ -2385,48 +1545,53 @@ msgid ""
"First remove a primary partition and create an extended partition."
msgstr ""
-#: diskdrake/interactive.pm:590
+#: diskdrake/interactive.pm:577
#, fuzzy, c-format
msgid "Remove the loopback file?"
msgstr "/Выдаліць дохлыя файлы"
-#: diskdrake/interactive.pm:609
+#: diskdrake/interactive.pm:596
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Усе дадзеныя ў раздзеле %s будуць страчаны пасля змены яго тыпу"
-#: diskdrake/interactive.pm:621
+#: diskdrake/interactive.pm:608
#, c-format
msgid "Change partition type"
msgstr "Змяніць тып раздзелу"
-#: diskdrake/interactive.pm:622 diskdrake/removable.pm:47
+#: diskdrake/interactive.pm:610 diskdrake/removable.pm:47
#, fuzzy, c-format
msgid "Which filesystem do you want?"
msgstr "Які тып пункта жадаеце дадаць?"
-#: diskdrake/interactive.pm:630
+#: diskdrake/interactive.pm:617
#, c-format
msgid "Switching from ext2 to ext3"
msgstr ""
-#: diskdrake/interactive.pm:650
+#: diskdrake/interactive.pm:637 diskdrake/interactive.pm:640
#, c-format
msgid "Which volume label?"
msgstr ""
-#: diskdrake/interactive.pm:666
+#: diskdrake/interactive.pm:641
+#, fuzzy, c-format
+msgid "Label:"
+msgstr "Метка"
+
+#: diskdrake/interactive.pm:655
#, fuzzy, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Куды вы жадаеце манціраваць прыладу %s?"
-#: diskdrake/interactive.pm:667
+#: diskdrake/interactive.pm:656
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Куды вы жадаеце манціраваць прыладу %s?"
-#: diskdrake/interactive.pm:672
+#: diskdrake/interactive.pm:661
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
@@ -2436,293 +1601,306 @@ msgstr ""
"віртуальнай файлавай сістэмы.\n"
"Спачатку выдаліце віртуальную сістэму"
-#: diskdrake/interactive.pm:697
+#: diskdrake/interactive.pm:691
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Куды вы жадаеце манціраваць прыладу %s?"
-#: diskdrake/interactive.pm:721 diskdrake/interactive.pm:800
-#: install_interactive.pm:157 install_interactive.pm:189
+#: diskdrake/interactive.pm:715 diskdrake/interactive.pm:798
+#: fs/partitioning_wizard.pm:141 fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing"
msgstr "Змяненне памераў"
-#: diskdrake/interactive.pm:721
+#: diskdrake/interactive.pm:715
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Падлік межаў файлавай сістэмы FAT"
-#: diskdrake/interactive.pm:757
+#: diskdrake/interactive.pm:751
#, fuzzy, c-format
msgid "This partition is not resizeable"
msgstr "Памеры якога раздзела вы жадаеце змяніць?"
-#: diskdrake/interactive.pm:762
+#: diskdrake/interactive.pm:756
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Усе дадзеныя ў гэтым раздзеле павінны быць зархіваваныя"
-#: diskdrake/interactive.pm:764
+#: diskdrake/interactive.pm:758
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Усе дадзеныя ў раздзеле %s будуць страчаны"
-#: diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:765
#, c-format
msgid "Choose the new size"
msgstr "Выбар новых памераў"
-#: diskdrake/interactive.pm:770
+#: diskdrake/interactive.pm:766
#, fuzzy, c-format
msgid "New size in MB: "
msgstr "Памер у Мб:"
-#: diskdrake/interactive.pm:811 install_interactive.pm:197
+#: diskdrake/interactive.pm:767
+#, c-format
+msgid "Minimum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:768
+#, c-format
+msgid "Maximum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:809 fs/partitioning_wizard.pm:181
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
"filesystem checks will be run on your next boot into Microsoft Windows®"
msgstr ""
-#: diskdrake/interactive.pm:852
+#: diskdrake/interactive.pm:850
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Абярыце існуючы RAID для дадання"
-#: diskdrake/interactive.pm:854 diskdrake/interactive.pm:871
+#: diskdrake/interactive.pm:852 diskdrake/interactive.pm:869
#, c-format
msgid "new"
msgstr "новы"
-#: diskdrake/interactive.pm:869
+#: diskdrake/interactive.pm:867
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Выбярыце існуючы LVM для дабаўлення"
-#: diskdrake/interactive.pm:875
+#: diskdrake/interactive.pm:874
#, c-format
msgid "LVM name?"
msgstr ""
-#: diskdrake/interactive.pm:903
+#: diskdrake/interactive.pm:902
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
"Do you want to move used physical extents on this volume to other volumes?"
msgstr ""
-#: diskdrake/interactive.pm:905
+#: diskdrake/interactive.pm:904
#, c-format
msgid "Moving physical extents"
msgstr ""
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:922
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Гэты раздзел не можа быць выкарыстаны пад віртуальную файлавую сістэму"
-#: diskdrake/interactive.pm:936
+#: diskdrake/interactive.pm:935
#, c-format
msgid "Loopback"
msgstr "Віртуальная файлавая сістэма (loopback)"
-#: diskdrake/interactive.pm:937
+#: diskdrake/interactive.pm:936
#, c-format
msgid "Loopback file name: "
msgstr "Імя віртуальнага раздзелу"
-#: diskdrake/interactive.pm:942
+#: diskdrake/interactive.pm:941
#, fuzzy, c-format
msgid "Give a file name"
msgstr "Уласнае імя"
-#: diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:944
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr ""
-#: diskdrake/interactive.pm:946
+#: diskdrake/interactive.pm:945
#, c-format
msgid "File already exists. Use it?"
msgstr "Файл ужо існуе. Выкарыстаць яго?"
-#: diskdrake/interactive.pm:969
+#: diskdrake/interactive.pm:974 diskdrake/interactive.pm:977
#, fuzzy, c-format
msgid "Mount options"
msgstr "Опцыі модулю:"
-#: diskdrake/interactive.pm:976
+#: diskdrake/interactive.pm:984
#, fuzzy, c-format
msgid "Various"
msgstr "прылада"
-#: diskdrake/interactive.pm:1044
+#: diskdrake/interactive.pm:1049
#, c-format
msgid "device"
msgstr "прылада"
-#: diskdrake/interactive.pm:1045
+#: diskdrake/interactive.pm:1050
#, c-format
msgid "level"
msgstr "узровень"
-#: diskdrake/interactive.pm:1046
+#: diskdrake/interactive.pm:1051
#, fuzzy, c-format
msgid "chunk size in KiB"
msgstr "памер блоку"
-#: diskdrake/interactive.pm:1063
+#: diskdrake/interactive.pm:1068
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Будзьце уважлівы. Гэтую аперацыю нельга адмяніць"
-#: diskdrake/interactive.pm:1078
+#: diskdrake/interactive.pm:1083
#, c-format
msgid "What type of partitioning?"
msgstr ""
-#: diskdrake/interactive.pm:1116
+#: diskdrake/interactive.pm:1121
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Каб змяненні ўступілі ў дзеянне, необходна перазагрузіцца"
-#: diskdrake/interactive.pm:1125
+#: diskdrake/interactive.pm:1130
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Табліца размяшчэння прылады %s будзе запісана на дыск!"
-#: diskdrake/interactive.pm:1148
+#: diskdrake/interactive.pm:1153
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Усе дадзеные ў раздзеле %s будуць страчаны пасля фарматавання"
-#: diskdrake/interactive.pm:1164
+#: diskdrake/interactive.pm:1158 fs/partitioning.pm:49
+#, c-format
+msgid "Check bad blocks?"
+msgstr "Праверыць на наяўнасць дрэнных блокаў?"
+
+#: diskdrake/interactive.pm:1172
#, fuzzy, c-format
msgid "Move files to the new partition"
msgstr "Не хапае прасторы для стварэння новых раздзелаў"
-#: diskdrake/interactive.pm:1164 standalone/draksambashare:81
-#: standalone/draksambashare:144
+#: diskdrake/interactive.pm:1172
#, fuzzy, c-format
msgid "Hide files"
msgstr "Загрузіць файл(ы)"
-#: diskdrake/interactive.pm:1165
+#: diskdrake/interactive.pm:1173
#, c-format
msgid ""
"Directory %s already contains data\n"
-"(%s)"
+"(%s)\n"
+"\n"
+"You can either choose to move the files into the partition that will be "
+"mounted there or leave them where they are (which results in hiding them by "
+"the contents of the mounted partition)"
msgstr ""
-#: diskdrake/interactive.pm:1176
+#: diskdrake/interactive.pm:1188
#, fuzzy, c-format
msgid "Moving files to the new partition"
msgstr "Не хапае прасторы для стварэння новых раздзелаў"
-#: diskdrake/interactive.pm:1180
+#: diskdrake/interactive.pm:1192
#, fuzzy, c-format
msgid "Copying %s"
msgstr "Копія:"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1196
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Памеры экрану: %s\n"
-#: diskdrake/interactive.pm:1198
+#: diskdrake/interactive.pm:1210
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: diskdrake/interactive.pm:1199
+#: diskdrake/interactive.pm:1211
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""
-#: diskdrake/interactive.pm:1219 diskdrake/interactive.pm:1281
+#: diskdrake/interactive.pm:1231 diskdrake/interactive.pm:1293
#, c-format
msgid "Device: "
msgstr "Прылада:"
-#: diskdrake/interactive.pm:1220
-#, fuzzy, c-format
-msgid "Devfs name: "
-msgstr "Імя машыны"
-
-#: diskdrake/interactive.pm:1221
+#: diskdrake/interactive.pm:1232
#, c-format
msgid "Volume label: "
msgstr ""
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1233
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Літара для DOS-дыску: %s (наўгад)\n"
-#: diskdrake/interactive.pm:1226 diskdrake/interactive.pm:1235
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1237 diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1311
#, c-format
msgid "Type: "
msgstr "Тып: "
-#: diskdrake/interactive.pm:1230 install_steps_gtk.pm:300
+#: diskdrake/interactive.pm:1241
#, c-format
msgid "Name: "
msgstr "Імя: "
-#: diskdrake/interactive.pm:1237
+#: diskdrake/interactive.pm:1248
#, c-format
msgid "Start: sector %s\n"
msgstr "Пачатак: сектар %s\n"
-#: diskdrake/interactive.pm:1238
+#: diskdrake/interactive.pm:1249
#, c-format
msgid "Size: %s"
msgstr "Памер: %s"
-#: diskdrake/interactive.pm:1240
+#: diskdrake/interactive.pm:1251
#, c-format
msgid ", %s sectors"
msgstr ", %s сектараў"
-#: diskdrake/interactive.pm:1242
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Cylinder %d to %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1243
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Formatted\n"
msgstr "Фарматаванне\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "Not formatted\n"
msgstr "Не адфарматавана\n"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Mounted\n"
msgstr "Заманціравана\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1252
+#: diskdrake/interactive.pm:1263
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Імя файлу віртуальнай файлавай сістэмы: %s"
-#: diskdrake/interactive.pm:1253
+#: diskdrake/interactive.pm:1264
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2731,27 +1909,27 @@ msgstr ""
"Загрузачны раздзел па дамаўленню\n"
" (для загрузкі MS-DOS, а не для lilo)\n"
-#: diskdrake/interactive.pm:1255
+#: diskdrake/interactive.pm:1266
#, c-format
msgid "Level %s\n"
msgstr "Узровень %s\n"
-#: diskdrake/interactive.pm:1256
+#: diskdrake/interactive.pm:1267
#, fuzzy, c-format
msgid "Chunk size %d KiB\n"
msgstr "Памер фрагменту %s\n"
-#: diskdrake/interactive.pm:1257
+#: diskdrake/interactive.pm:1268
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-дыскі %s\n"
-#: diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1270
#, c-format
msgid "Loopback file name: %s"
msgstr "Імя файлу віртуальнай файлавай сістэмы: %s"
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1273
#, c-format
msgid ""
"\n"
@@ -2760,7 +1938,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: diskdrake/interactive.pm:1265
+#: diskdrake/interactive.pm:1276
#, c-format
msgid ""
"\n"
@@ -2769,75 +1947,78 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: diskdrake/interactive.pm:1282
+#: diskdrake/interactive.pm:1285
+#, c-format
+msgid "Empty space on %s (%s)"
+msgstr ""
+
+#: diskdrake/interactive.pm:1294
#, c-format
msgid "Read-only"
msgstr "Толькі для чытаньня"
-#: diskdrake/interactive.pm:1283
+#: diskdrake/interactive.pm:1295
#, c-format
msgid "Size: %s\n"
msgstr "Памер: %s\n"
-#: diskdrake/interactive.pm:1284
+#: diskdrake/interactive.pm:1296
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Геаметрыя: %s цыліндраў, %s галовак, %s сектараў\n"
-#: diskdrake/interactive.pm:1285 network/thirdparty.pm:331
+#: diskdrake/interactive.pm:1297
#, c-format
msgid "Info: "
msgstr "Інфармацыя: "
-#: diskdrake/interactive.pm:1286
+#: diskdrake/interactive.pm:1298
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-дыскі %s\n"
-#: diskdrake/interactive.pm:1287
+#: diskdrake/interactive.pm:1299
#, c-format
msgid "Partition table type: %s\n"
msgstr "Тып табліцы раздзелаў: %s\n"
-#: diskdrake/interactive.pm:1288
+#: diskdrake/interactive.pm:1300
#, c-format
msgid "on channel %d id %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1331
+#: diskdrake/interactive.pm:1343
#, fuzzy, c-format
msgid "Filesystem encryption key"
msgstr "Тыпы файлавых сістэмаў:"
-#: diskdrake/interactive.pm:1332
+#: diskdrake/interactive.pm:1344
#, c-format
msgid "Choose your filesystem encryption key"
msgstr ""
-#: diskdrake/interactive.pm:1335
+#: diskdrake/interactive.pm:1347
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Гэты пароль занадта просты (яго даўжыня павінна быць не меней за %d літараў)"
-#: diskdrake/interactive.pm:1336
+#: diskdrake/interactive.pm:1348
#, fuzzy, c-format
msgid "The encryption keys do not match"
msgstr "Паролі не супадаюць"
-#: diskdrake/interactive.pm:1339 network/netconnect.pm:1073
-#: standalone/drakconnect:419 standalone/drakroam:120
+#: diskdrake/interactive.pm:1351
#, c-format
msgid "Encryption key"
msgstr ""
-#: diskdrake/interactive.pm:1340
+#: diskdrake/interactive.pm:1352
#, c-format
msgid "Encryption key (again)"
msgstr ""
-#: diskdrake/interactive.pm:1342 standalone/drakvpn:1017
-#: standalone/drakvpn:1102
+#: diskdrake/interactive.pm:1354
#, c-format
msgid "Encryption algorithm"
msgstr ""
@@ -2847,111 +2028,115 @@ msgstr ""
msgid "Change type"
msgstr "Змяніць тып раздзелу"
-#: diskdrake/smbnfs_gtk.pm:163
+#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:539
+#: interactive/curses.pm:214 interactive/http.pm:104 interactive/http.pm:160
+#: interactive/stdio.pm:39 interactive/stdio.pm:142 ugtk2.pm:404 ugtk2.pm:506
+#: ugtk2.pm:515 ugtk2.pm:788
+#, c-format
+msgid "Cancel"
+msgstr "Адмена"
+
+#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr ""
-#: diskdrake/smbnfs_gtk.pm:167 diskdrake/smbnfs_gtk.pm:176
+#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, fuzzy, c-format
msgid "Domain Authentication Required"
msgstr "Аўтэнтыфікацыя"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, fuzzy, c-format
msgid "Which username"
msgstr "Імя карыстальніку:"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, fuzzy, c-format
msgid "Another one"
msgstr "Мэнэджэр файлаў"
-#: diskdrake/smbnfs_gtk.pm:177
+#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3640
+#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Карыстальнік"
-#: diskdrake/smbnfs_gtk.pm:205
+#: diskdrake/smbnfs_gtk.pm:206
#, fuzzy, c-format
msgid "Search servers"
msgstr "Адшукаць файлы на дыску"
-#: diskdrake/smbnfs_gtk.pm:210
+#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr ""
-#: do_pkgs.pm:16 do_pkgs.pm:49
+#: do_pkgs.pm:16 do_pkgs.pm:53
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Зьмяненьні не былі захаваныя. Ці жадаеце працягнуць?"
-#: do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:52 printer/printerdrake.pm:3948
+#: do_pkgs.pm:19 do_pkgs.pm:40 do_pkgs.pm:56
#, c-format
msgid "Could not install the %s package!"
msgstr ""
-#: do_pkgs.pm:24 do_pkgs.pm:57
+#: do_pkgs.pm:24 do_pkgs.pm:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: do_pkgs.pm:35 harddrake/sound.pm:278 install_steps_interactive.pm:1288
-#: keyboard.pm:381 network/ndiswrapper.pm:95 network/netconnect.pm:471
-#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2495
-#: printer/printerdrake.pm:2632 printer/printerdrake.pm:2953
-#: printer/printerdrake.pm:2960 printer/printerdrake.pm:3947
-#: printer/printerdrake.pm:4211 printer/printerdrake.pm:4330
-#: printer/printerdrake.pm:5487 standalone/drakTermServ:354
-#: standalone/drakTermServ:1267 standalone/drakTermServ:1328
-#: standalone/drakTermServ:2006 standalone/drakbackup:510
-#: standalone/drakbackup:609 standalone/drakboot:133 standalone/drakclock:224
-#: standalone/drakconnect:973 standalone/drakfont:679 standalone/drakperm:380
-#: standalone/drakperm:390 standalone/drakups:27 standalone/harddrake2:510
-#: standalone/harddrake2:526 standalone/localedrake:43
-#: standalone/scannerdrake:51 standalone/scannerdrake:957
-#, c-format
-msgid "Warning"
-msgstr "Увага!"
-
-#: do_pkgs.pm:35 standalone/harddrake2:526
+#: do_pkgs.pm:35
#, fuzzy, c-format
msgid "The following packages need to be installed:\n"
msgstr "Наступныя пакеты будуць даданы да сістэмы"
-#: do_pkgs.pm:205
+#: do_pkgs.pm:209
#, fuzzy, c-format
msgid "Installing packages..."
msgstr "Усталяванне пакету %s"
-#: do_pkgs.pm:252
+#: do_pkgs.pm:255
#, fuzzy, c-format
msgid "Removing packages..."
msgstr "Прагляд даступных пакетаў"
-#: fs/format.pm:58 fs/format.pm:65
+#: fs/any.pm:17
+#, c-format
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Памылка: для стварэння новых файлавых сістэмаў не знайдзены адпаведныя \n"
+"прылады. Праверце абсталяванне для пошуку імавернай прычыны."
+
+#: fs/any.pm:62 fs/partitioning_wizard.pm:55
+#, c-format
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: fs/format.pm:59 fs/format.pm:66
#, c-format
msgid "Formatting partition %s"
msgstr "Фарматаванне раздзелу %s"
-#: fs/format.pm:62
+#: fs/format.pm:63
#, c-format
msgid "Creating and formatting file %s"
msgstr "Стварэнне і фарматаванне файла %s"
-#: fs/format.pm:115
+#: fs/format.pm:116
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "Не ведаю як адфарматаваць %s з тыпам %s"
-#: fs/format.pm:120 fs/format.pm:122
+#: fs/format.pm:121 fs/format.pm:123
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s памылка фарматавання %s"
@@ -2961,27 +2146,27 @@ msgstr "%s памылка фарматавання %s"
msgid "Circular mounts %s\n"
msgstr "Манціраванне дыску %s\n"
-#: fs/mount.pm:74
+#: fs/mount.pm:79
#, fuzzy, c-format
msgid "Mounting partition %s"
msgstr "Фарматаванне раздзелу %s"
-#: fs/mount.pm:75
+#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: fs/mount.pm:80 fs/mount.pm:97
+#: fs/mount.pm:85 fs/mount.pm:102
#, fuzzy, c-format
msgid "Checking %s"
msgstr "Праверка правапісу"
-#: fs/mount.pm:113 partition_table.pm:385
+#: fs/mount.pm:118 partition_table.pm:384
#, c-format
msgid "error unmounting %s: %s"
msgstr "памылка разманціравання %s: %s"
-#: fs/mount.pm:142
+#: fs/mount.pm:133
#, fuzzy, c-format
msgid "Enabling swap partition %s"
msgstr "Фарматаванне раздзелу %s"
@@ -3043,35 +2228,291 @@ msgstr ""
#: fs/mount_options.pm:139
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow every user to mount and umount the file system."
msgstr ""
#: fs/mount_options.pm:141
#, c-format
-msgid "Enable user disk quota accounting, and optionally enforce limits"
+msgid "Allow an ordinary user to mount the file system."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Support user. extended attributes"
+msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""
#: fs/mount_options.pm:145
#, c-format
-msgid "Give write access to ordinary users"
+msgid "Support \"user.\" extended attributes"
msgstr ""
#: fs/mount_options.pm:147
#, c-format
+msgid "Give write access to ordinary users"
+msgstr ""
+
+#: fs/mount_options.pm:149
+#, c-format
msgid "Give read-only access to ordinary users"
msgstr ""
-#: fs/type.pm:363
+#: fs/mount_point.pm:80
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Дубляванне пункту манціравання %s"
+
+#: fs/mount_point.pm:95
+#, c-format
+msgid "No partition available"
+msgstr "няма даступных раздзелаў"
+
+#: fs/mount_point.pm:98
+#, c-format
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: fs/mount_point.pm:105
+#, c-format
+msgid "Choose the mount points"
+msgstr "Абярыце пункты манціравання"
+
+#: fs/partitioning.pm:46
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "Выбар раздзелаў для фарматавання"
+
+#: fs/partitioning.pm:76
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+
+#: fs/partitioning.pm:79
+#, c-format
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+"Не хапае месца ў буферы падкачкі (swap) для ўсталявання, павялічце яго."
+
+#: fs/partitioning_wizard.pm:47
+#, c-format
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"Вы павінны мець каранёвы раздзел.\n"
+"Для гэтага стварыце раздзел (альбо адзначце ўжо існуючы).\n"
+"Потым абярыце ‟Кропка манціравання” і ўстанавіце яе ў ‛/’"
+
+#: fs/partitioning_wizard.pm:52
+#, c-format
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+"Няма раздзела swap.\n"
+"\n"
+"Усё адно працягваць?"
+
+#: fs/partitioning_wizard.pm:80
+#, c-format
+msgid "Use free space"
+msgstr "Выкарыстоўваць незанятую прастору"
+
+#: fs/partitioning_wizard.pm:82
+#, c-format
+msgid "Not enough free space to allocate new partitions"
+msgstr "Не хапае прасторы для стварэння новых раздзелаў"
+
+#: fs/partitioning_wizard.pm:90
+#, c-format
+msgid "Use existing partitions"
+msgstr "Выкарыстоўваць існуючы раздзел"
+
+#: fs/partitioning_wizard.pm:92
+#, c-format
+msgid "There is no existing partition to use"
+msgstr "Няма існуючых раздзелаў, якія можна выкарыстаць"
+
+#: fs/partitioning_wizard.pm:99
+#, c-format
+msgid "Use the Microsoft Windows® partition for loopback"
+msgstr ""
+"Выкарыстоўваць раздзел Microsoft Windows® для віртуальнай файлавай сістэмы"
+
+#: fs/partitioning_wizard.pm:102
+#, fuzzy, c-format
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Памеры якога раздзела вы жадаеце змяніць?"
+
+#: fs/partitioning_wizard.pm:104
+#, c-format
+msgid "Choose the sizes"
+msgstr "Выбар памераў"
+
+#: fs/partitioning_wizard.pm:105
+#, c-format
+msgid "Root partition size in MB: "
+msgstr "Каранёвы раздзел ў Мб: "
+
+#: fs/partitioning_wizard.pm:106
+#, c-format
+msgid "Swap partition size in MB: "
+msgstr "Памер swap раздзелу ў Мб:"
+
+#: fs/partitioning_wizard.pm:115
+#, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: fs/partitioning_wizard.pm:122
+#, c-format
+msgid "Use the free space on the Microsoft Windows® partition"
+msgstr "Выкарыстоўваць незанятую прастору на раздзеле Windows"
+
+#: fs/partitioning_wizard.pm:124
+#, c-format
+msgid "Which partition do you want to resize?"
+msgstr "Памеры якога раздзела вы жадаеце змяніць?"
+
+#: fs/partitioning_wizard.pm:138
+#, c-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+"У праграмы змены памераў раздзела FAT не атрымалася\n"
+"апрацаваць Ваш раздзел, памылка: %s"
+
+#: fs/partitioning_wizard.pm:141
+#, fuzzy, c-format
+msgid "Computing the size of the Microsoft Windows® partition"
+msgstr "Выкарыстоўваць незанятую прастору на раздзеле Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:148
+#, c-format
+msgid ""
+"Your Microsoft Windows® partition is too fragmented. Please reboot your "
+"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
+"the Mandriva Linux installation."
+msgstr ""
+"Ваш раздзел з Microsoft Windows® занадта фрагментаваны. \n"
+"Рэкамендуем спачатку запусціць праграму ‟defrag”"
+
+#: fs/partitioning_wizard.pm:151
+#, 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 ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: fs/partitioning_wizard.pm:160 interactive.pm:538 interactive/curses.pm:217
+#: ugtk2.pm:508
+#, c-format
+msgid "Next"
+msgstr "Далей"
+
+#: fs/partitioning_wizard.pm:163
+#, c-format
+msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
+msgstr "Якую прастору захаваць для Microsoft Windows®? раздзел %s?"
+
+#: fs/partitioning_wizard.pm:164
+#, c-format
+msgid "Size"
+msgstr "Памер"
+
+#: fs/partitioning_wizard.pm:173
+#, c-format
+msgid "Resizing Microsoft Windows® partition"
+msgstr "Вылічэнне межаў файлавай сістэмы Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:178
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "Аўтазмяненне памераў не атрымалася для раздзелу FAT %s"
+
+#: fs/partitioning_wizard.pm:193
+#, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Remove Microsoft Windows®"
+msgstr "Выдаліць Windows™"
+
+#: fs/partitioning_wizard.pm:198
+#, fuzzy, c-format
+msgid "Erase and use entire disk"
+msgstr "Сцёрці дадзеныя на ўсім дыску"
+
+#: fs/partitioning_wizard.pm:200
+#, c-format
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "На які з маючыхся жорсткіх дыскаў Вы жадаеце ўсталяваць Linux?"
+
+#: fs/partitioning_wizard.pm:206
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Усе існуючыя раздзелы на дыску %s і дадзеныя на іх будуць страчаны"
+
+#: fs/partitioning_wizard.pm:217
+#, fuzzy, c-format
+msgid "Custom disk partitioning"
+msgstr "Вылічэнне межаў файлавай сістэмы Windows"
+
+#: fs/partitioning_wizard.pm:223
+#, c-format
+msgid "Use fdisk"
+msgstr "Выкарыстоўваць fdisk"
+
+#: fs/partitioning_wizard.pm:226
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+"Вы можаце цяпер разбіць ваш дыск %s\n"
+"Па заканчэнні не забудзьцеся захаваць змяненні, скарыстаўшы ‛w’"
+
+#: fs/partitioning_wizard.pm:266
+#, fuzzy, c-format
+msgid "I can not find any room for installing"
+msgstr "Дадаць раздзел немагчыма"
+
+#: fs/partitioning_wizard.pm:270
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Майстар падрыхтоўкі раздзелаў DrakX знайшоў наступныя варыянты:"
+
+#: fs/partitioning_wizard.pm:278
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Падрыхтоўка разделаў не ўдалася: %s"
+
+#: fs/type.pm:366
#, fuzzy, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "Вы не можаце разбіваць на разделы, памер якіх меней за 32 Мб"
-#: fs/type.pm:364
+#: fs/type.pm:367
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "Вы не можаце разбіваць на разделы, памер якіх меней за 32 Мб"
@@ -3086,7 +2527,12 @@ msgstr ""
msgid "server"
msgstr "сэервер"
-#: fsedit.pm:219
+#: fsedit.pm:116
+#, c-format
+msgid "BIOS software RAID detected on disks %s. Activate it?"
+msgstr ""
+
+#: fsedit.pm:230
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
@@ -3098,22 +2544,22 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
-#: fsedit.pm:392
+#: fsedit.pm:403
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Пункт манціравання павінен пачынацца з /"
-#: fsedit.pm:393
+#: fsedit.pm:404
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:394
+#: fsedit.pm:405
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ужо ёсць раздзел з пунктам манціравання %s\n"
-#: fsedit.pm:398
+#: fsedit.pm:409
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -3121,14 +2567,14 @@ msgid ""
"Please be sure to add a /boot partition"
msgstr ""
-#: fsedit.pm:404
+#: fsedit.pm:415
#, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
-#: fsedit.pm:406
+#: fsedit.pm:417
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -3137,34 +2583,34 @@ msgid ""
"You should create a /boot partition first"
msgstr ""
-#: fsedit.pm:410 fsedit.pm:412
+#: fsedit.pm:421 fsedit.pm:423
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Гэты каталог павінен знаходзіцца ўнутры каранёвай файлавай сістэмы"
-#: fsedit.pm:414 fsedit.pm:416
+#: fsedit.pm:425 fsedit.pm:427
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: fsedit.pm:418
+#: fsedit.pm:429
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr ""
-#: fsedit.pm:482
+#: fsedit.pm:493
#, fuzzy, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Не хапае прасторы для стварэння новых раздзелаў"
-#: fsedit.pm:484
+#: fsedit.pm:495
#, fuzzy, c-format
msgid "Nothing to do"
msgstr "Нічога"
-#: harddrake/data.pm:62 install_any.pm:1710
+#: harddrake/data.pm:62
#, c-format
msgid "Floppy"
msgstr "Гнуткі дыск"
@@ -3174,12 +2620,12 @@ msgstr "Гнуткі дыск"
msgid "Zip"
msgstr ""
-#: harddrake/data.pm:88 install_any.pm:1711
+#: harddrake/data.pm:88
#, c-format
msgid "Hard Disk"
msgstr "Жорскі дыск"
-#: harddrake/data.pm:97 install_any.pm:1712
+#: harddrake/data.pm:97
#, c-format
msgid "CDROM"
msgstr ""
@@ -3194,103 +2640,102 @@ msgstr "CDDB сервакі"
msgid "DVD-ROM"
msgstr ""
-#: harddrake/data.pm:127 standalone/drakbackup:2066
+#: harddrake/data.pm:127
#, fuzzy, c-format
msgid "Tape"
msgstr "Тып"
-#: harddrake/data.pm:136
+#: harddrake/data.pm:138
+#, c-format
+msgid "AGP controllers"
+msgstr ""
+
+#: harddrake/data.pm:147
#, fuzzy, c-format
msgid "Videocard"
msgstr "Відэа"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:157
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:154
+#: harddrake/data.pm:165
#, c-format
msgid "Tvcard"
msgstr ""
-#: harddrake/data.pm:163
+#: harddrake/data.pm:174
#, fuzzy, c-format
msgid "Other MultiMedia devices"
msgstr "Мульцімедыя"
-#: harddrake/data.pm:172
+#: harddrake/data.pm:183
#, fuzzy, c-format
msgid "Soundcard"
msgstr "Гук"
-#: harddrake/data.pm:185
+#: harddrake/data.pm:196
#, c-format
msgid "Webcam"
msgstr ""
-#: harddrake/data.pm:199
+#: harddrake/data.pm:210
#, fuzzy, c-format
msgid "Processors"
msgstr "Працэсар"
-#: harddrake/data.pm:209
+#: harddrake/data.pm:220
#, c-format
msgid "ISDN adapters"
msgstr ""
-#: harddrake/data.pm:220
+#: harddrake/data.pm:231
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:229
+#: harddrake/data.pm:240
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:238
+#: harddrake/data.pm:249
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:247
+#: harddrake/data.pm:258
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:256
+#: harddrake/data.pm:267
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:265
+#: harddrake/data.pm:276
#, fuzzy, c-format
msgid "Ethernetcard"
msgstr "Іншае"
-#: harddrake/data.pm:282 network/netconnect.pm:492
+#: harddrake/data.pm:293
#, c-format
msgid "Modem"
msgstr "Мадэм"
-#: harddrake/data.pm:292
+#: harddrake/data.pm:303
#, c-format
msgid "ADSL adapters"
msgstr ""
-#: harddrake/data.pm:306
+#: harddrake/data.pm:315
#, c-format
msgid "Memory"
msgstr "Памяць"
-#: harddrake/data.pm:315
-#, c-format
-msgid "AGP controllers"
-msgstr ""
-
-#: harddrake/data.pm:324 help.pm:187 help.pm:856
-#: install_steps_interactive.pm:964
+#: harddrake/data.pm:324
#, c-format
msgid "Printer"
msgstr "Прынтэр"
@@ -3316,85 +2761,92 @@ msgstr "Кіраванне"
msgid "RAID controllers"
msgstr "Кіраванне"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr ""
-#: harddrake/data.pm:385
+#: harddrake/data.pm:386
+#, c-format
+msgid "USB Mass Storage Devices"
+msgstr ""
+
+#: harddrake/data.pm:395
+#, fuzzy, c-format
+msgid "Card readers"
+msgstr "Рэжым прайгравання"
+
+#: harddrake/data.pm:404
#, c-format
msgid "Firewire controllers"
msgstr ""
-#: harddrake/data.pm:394
+#: harddrake/data.pm:413
#, fuzzy, c-format
msgid "PCMCIA controllers"
msgstr "Кіраванне"
-#: harddrake/data.pm:403
+#: harddrake/data.pm:422
#, fuzzy, c-format
msgid "SCSI controllers"
msgstr "Кіраванне"
-#: harddrake/data.pm:412
+#: harddrake/data.pm:431
#, c-format
msgid "USB controllers"
msgstr ""
-#: harddrake/data.pm:421
+#: harddrake/data.pm:440
#, fuzzy, c-format
msgid "USB ports"
msgstr "USB прылады"
-#: harddrake/data.pm:430
+#: harddrake/data.pm:449
#, c-format
msgid "SMBus controllers"
msgstr ""
-#: harddrake/data.pm:439
+#: harddrake/data.pm:458
#, c-format
msgid "Bridges and system controllers"
msgstr ""
-#: harddrake/data.pm:450 help.pm:856 install_steps_interactive.pm:94
-#: install_steps_interactive.pm:924 standalone/finish-install:41
-#: standalone/keyboarddrake:29
+#: harddrake/data.pm:469
#, c-format
msgid "Keyboard"
msgstr "Клавіятура"
-#: harddrake/data.pm:463
+#: harddrake/data.pm:482
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:472 help.pm:856 install_steps_interactive.pm:957
+#: harddrake/data.pm:491
#, c-format
msgid "Mouse"
msgstr "Мыш"
-#: harddrake/data.pm:486
+#: harddrake/data.pm:505
#, fuzzy, c-format
msgid "UPS"
msgstr "HFS"
-#: harddrake/data.pm:495
+#: harddrake/data.pm:514
#, fuzzy, c-format
msgid "Scanner"
msgstr "Прайгравальнік дыскаў"
-#: harddrake/data.pm:505 standalone/harddrake2:475
+#: harddrake/data.pm:524
#, c-format
msgid "Unknown/Others"
msgstr ""
-#: harddrake/data.pm:533
+#: harddrake/data.pm:552
#, c-format
msgid "cpu # "
msgstr ""
-#: harddrake/sound.pm:195 standalone/drakconnect:162
-#: standalone/drakconnect:637
+#: harddrake/sound.pm:195
#, fuzzy, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Праверка параметраў настройкі"
@@ -3455,17 +2907,17 @@ msgid ""
"the ALSA library.\n"
msgstr ""
-#: harddrake/sound.pm:262 harddrake/sound.pm:350 standalone/drakups:144
+#: harddrake/sound.pm:262 harddrake/sound.pm:351
#, fuzzy, c-format
msgid "Driver:"
msgstr "Прылада %d"
-#: harddrake/sound.pm:270
+#: harddrake/sound.pm:271
#, fuzzy, c-format
msgid "Trouble shooting"
msgstr "Настройкі мышы"
-#: harddrake/sound.pm:278
+#: harddrake/sound.pm:279
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
@@ -3475,45 +2927,45 @@ msgid ""
"The new \"%s\" driver will only be used on next bootstrap."
msgstr ""
-#: harddrake/sound.pm:286
+#: harddrake/sound.pm:287
#, c-format
msgid "No open source driver"
msgstr ""
-#: harddrake/sound.pm:287
+#: harddrake/sound.pm:288
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
-#: harddrake/sound.pm:290
+#: harddrake/sound.pm:291
#, c-format
msgid "No known driver"
msgstr ""
-#: harddrake/sound.pm:291
+#: harddrake/sound.pm:292
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: harddrake/sound.pm:295 network/netconnect.pm:98 network/netconnect.pm:837
+#: harddrake/sound.pm:296
#, fuzzy, c-format
msgid "Unknown driver"
msgstr "Невядомая гукавая карта"
-#: harddrake/sound.pm:296
+#: harddrake/sound.pm:297
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr ""
-#: harddrake/sound.pm:310
+#: harddrake/sound.pm:311
#, c-format
msgid "Sound trouble shooting"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:313
+#: harddrake/sound.pm:314
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
@@ -3522,7 +2974,7 @@ msgid ""
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\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"
@@ -3537,18 +2989,18 @@ msgid ""
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
-#: harddrake/sound.pm:339
+#: harddrake/sound.pm:340
#, c-format
msgid "Let me pick any driver"
msgstr ""
-#: harddrake/sound.pm:342
+#: harddrake/sound.pm:343
#, c-format
msgid "Choosing an arbitrary driver"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:345
+#: harddrake/sound.pm:346
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3558,8 +3010,7 @@ msgid ""
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
-#: harddrake/v4l.pm:12 standalone/net_applet:64 standalone/net_applet:65
-#: standalone/net_applet:67
+#: harddrake/v4l.pm:12
#, fuzzy, c-format
msgid "Auto-detect"
msgstr "Аўтаматычнае вызначэнне"
@@ -3598,2744 +3049,53 @@ msgstr "Рэжым прайгравання"
msgid "Tuner type:"
msgstr "Тып мышы: %s\n"
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "Number of capture buffers:"
-msgstr ""
-
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: harddrake/v4l.pm:481
-#, fuzzy, c-format
-msgid "PLL setting:"
-msgstr "Настройкі шрыфтоў"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "Radio support:"
-msgstr ""
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "enable radio support"
-msgstr ""
-
-#: help.pm:12
-#, c-format
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandriva Linux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-
-#: help.pm:18
-#, c-format
-msgid ""
-"GNU/Linux is a multi-user system which means each user can have his or her\n"
-"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point will not be "
-"authorized\n"
-"to change anything except their own files and their own configurations,\n"
-"protecting the system from unintentional or malicious changes which could\n"
-"impact on the system as a whole. You'll have to create at least one regular\n"
-"user for yourself -- this is the account which you should use for routine,\n"
-"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
-"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system will not work any more. If you make a\n"
-"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you will not affect the entire system.\n"
-"\n"
-"The first field asks you for a real name. Of course, this is not mandatory\n"
-"-- you can actually enter whatever you like. DrakX will use the first word\n"
-"you type in this field and copy it to the \"%s\" one, which is the name\n"
-"this user will enter to log onto the system. If you like, you may override\n"
-"the default and change the user name. The next step is to enter a password.\n"
-"From a security point of view, a non-privileged (regular) user password is\n"
-"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
-"by making it blank or too simple: after all, your files could be the ones\n"
-"at risk.\n"
-"\n"
-"Once you click on \"%s\", you can add other users. Add a user for each one\n"
-"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
-"finished adding users.\n"
-"\n"
-"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
-"that user (bash by default).\n"
-"\n"
-"When you're finished adding users, you'll be asked to choose a user who\n"
-"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click on\n"
-"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
-msgstr ""
-
-#: help.pm:52 printer/printerdrake.pm:1866 printer/printerdrake.pm:1987
-#: standalone/draksambashare:60
-#, c-format
-msgid "User name"
-msgstr "Імя карыстальніку:"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: help.pm:52 help.pm:432 help.pm:682 install_interactive.pm:176
-#: install_steps_gtk.pm:237 install_steps_gtk.pm:682 interactive.pm:436
-#: interactive/newt.pm:321 network/thirdparty.pm:385
-#: printer/printerdrake.pm:3884 standalone/drakTermServ:412
-#: standalone/drakbackup:4102 standalone/drakbackup:4196
-#: standalone/drakbackup:4213 standalone/drakbackup:4231 ugtk2.pm:490
-#, c-format
-msgid "Next"
-msgstr "Далей"
-
-#: help.pm:52
-#, fuzzy, c-format
-msgid "Do you want to use this feature?"
-msgstr "Вы жадаеце выкарыстоўваць aboot?"
-
-#: help.pm:55
-#, c-format
-msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-
-#: help.pm:86
+#: interactive.pm:125 interactive.pm:538 interactive/curses.pm:217
+#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
+#: interactive/stdio.pm:142 interactive/stdio.pm:143 ugtk2.pm:410 ugtk2.pm:508
+#: ugtk2.pm:788 ugtk2.pm:811
#, c-format
-msgid ""
-"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-
-#: help.pm:93
-#, c-format
-msgid ""
-"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandriva Linux, and to make "
-"it\n"
-"simpler to manage, they have been placed into groups of similar\n"
-"applications.\n"
-"\n"
-"Mandriva Linux sorts package groups in four categories. You can mix and\n"
-"match applications from the various categories, so a ``Workstation''\n"
-"installation can still have applications from the ``Server'' category\n"
-"installed.\n"
-"\n"
-" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
-"more of the groups in the workstation category.\n"
-"\n"
-" * \"%s\": if you plan on using your machine for programming, select the\n"
-"appropriate groups from that category. The special \"LSB\" group will\n"
-"configure your system so that it complies as much as possible with the\n"
-"Linux Standard Base specifications.\n"
-"\n"
-" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
-"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
-"of the system. However, if you do not select the \"LSB\" group you will\n"
-"still have a system which is nearly 100%% LSB-compliant.\n"
-"\n"
-" * \"%s\": if your machine is intended to be a server, select which of the\n"
-"more common services you wish to install on your machine.\n"
-"\n"
-" * \"%s\": this is where you will choose your preferred graphical\n"
-"environment. At least one must be selected if you want to have a graphical\n"
-"interface available.\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group.\n"
-"\n"
-"You can check the \"%s\" box, which is useful if you're familiar with the\n"
-"packages being offered or if you want to have total control over what will\n"
-"be installed.\n"
-"\n"
-"If you start the installation in \"%s\" mode, you can deselect all groups\n"
-"and prevent the installation of any new packages. This is useful for\n"
-"repairing or updating an existing system.\n"
-"\n"
-"If you deselect all groups when performing a regular installation (as\n"
-"opposed to an upgrade), a dialog will pop up suggesting different options\n"
-"for a minimal installation:\n"
-"\n"
-" * \"%s\": install the minimum number of packages possible to have a\n"
-"working graphical desktop.\n"
-"\n"
-" * \"%s\": installs the base system plus basic utilities and their\n"
-"documentation. This installation is suitable for setting up a server.\n"
-"\n"
-" * \"%s\": will install the absolute minimum number of packages necessary\n"
-"to get a working Linux system. With this installation you will only have a\n"
-"command-line interface. The total size of this installation is about 65\n"
-"megabytes."
-msgstr ""
-
-#: help.pm:147 share/compssUsers.pl:24
-#, fuzzy, c-format
-msgid "Workstation"
-msgstr "Канфігурацыя"
-
-#: help.pm:147 share/compssUsers.pl:65 share/compssUsers.pl:167
-#: share/compssUsers.pl:169
-#, c-format
-msgid "Development"
-msgstr "Распрацоўка"
-
-#: help.pm:147 share/compssUsers.pl:145
-#, fuzzy, c-format
-msgid "Graphical Environment"
-msgstr "Абалонка"
-
-#: help.pm:147 install_steps_gtk.pm:235 install_steps_interactive.pm:623
-#, c-format
-msgid "Individual package selection"
-msgstr "Асабісты выбар пакетаў"
-
-#: help.pm:147 help.pm:589
-#, fuzzy, c-format
-msgid "Upgrade"
-msgstr "Аркады"
-
-#: help.pm:147 install_steps_interactive.pm:581
-#, c-format
-msgid "With X"
-msgstr ""
-
-#: help.pm:147
-#, fuzzy, c-format
-msgid "With basic documentation"
-msgstr "Аўтэнтыфікацыя"
-
-#: help.pm:147
-#, c-format
-msgid "Truly minimal install"
-msgstr ""
-
-#: help.pm:150
-#, c-format
-msgid ""
-"If you choose to install packages individually, the installer will present\n"
-"a tree containing all packages classified by groups and subgroups. While\n"
-"browsing the tree, you can select entire groups, subgroups, or individual\n"
-"packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description will appear on the\n"
-"right to let you know the purpose of that package.\n"
-"\n"
-"!! If a server package has been selected, either because you specifically\n"
-"chose the individual package or because it was part of a group of packages,\n"
-"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandriva Linux will automatically start any installed\n"
-"services at boot time. Even if they are safe and have no known issues at\n"
-"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandriva Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do "
-"or\n"
-"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
-"the listed services and they will be started automatically at boot time. !!\n"
-"\n"
-"The \"%s\" option is used to disable the warning dialog which appears\n"
-"whenever the installer automatically selects a package to resolve a\n"
-"dependency issue. Some packages depend on others and the installation of\n"
-"one particular package may require the installation of another package. The\n"
-"installer can determine which packages are required to satisfy a dependency\n"
-"to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-"package list created during a previous installation. This is useful if you\n"
-"have a number of machines that you wish to configure identically. Clicking\n"
-"on this icon will ask you to insert the floppy disk created at the end of\n"
-"another installation. See the second tip of the last step on how to create\n"
-"such a floppy."
-msgstr ""
-
-#: help.pm:181 help.pm:286 help.pm:314 help.pm:445 install_any.pm:944
-#: interactive.pm:161 modules/interactive.pm:71 standalone/drakbackup:2636
-#: standalone/drakfont:687 standalone/draksec:54 standalone/harddrake2:331
-#: ugtk2.pm:898 wizards.pm:156
-#, c-format
-msgid "No"
-msgstr "Не"
+msgid "Ok"
+msgstr "Ок"
-#: help.pm:181 help.pm:286 help.pm:445 install_any.pm:944 interactive.pm:161
-#: modules/interactive.pm:71 printer/printerdrake.pm:883
-#: printer/printerdrake.pm:898 standalone/drakbackup:2636
-#: standalone/drakfont:685 standalone/draksec:55 standalone/harddrake2:330
-#: ugtk2.pm:898 wizards.pm:156
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Так"
-#: help.pm:181
-#, fuzzy, c-format
-msgid "Automatic dependencies"
-msgstr "Аўтаматычнае вызначэнне"
-
-#: help.pm:184
-#, c-format
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to set up a new printer. The interface presented in our\n"
-"manual is similar to the one used during installation."
-msgstr ""
-
-#: help.pm:187 help.pm:567 help.pm:856 install_steps_gtk.pm:595
-#: standalone/drakbackup:2460 standalone/drakbackup:2464
-#: standalone/drakbackup:2468 standalone/drakbackup:2472
-#: standalone/drakroam:227
-#, c-format
-msgid "Configure"
-msgstr "Настройка"
-
-#: help.pm:190
-#, c-format
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
-"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which are not needed at boot\n"
-"time.\n"
-"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably do not want to start any services which you do not "
-"need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-
-#: help.pm:207
-#, c-format
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
-"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
-msgstr ""
-
-#: help.pm:218 install_steps_interactive.pm:859
-#, fuzzy, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Ваш сістэмны гадзіннік усталяваны на GMT?"
-
-#: help.pm:218
-#, fuzzy, c-format
-msgid "Automatic time synchronization"
-msgstr "Аўтаматычнае вызначэнне"
-
-#: help.pm:221
-#, c-format
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-
-#: help.pm:232
-#, c-format
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-
-#: help.pm:289
-#, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
-msgstr ""
-
-#: help.pm:296
-#, c-format
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
-msgstr ""
-
-#: help.pm:304
-#, c-format
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-
-#: help.pm:309
-#, c-format
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-
-#: help.pm:317
-#, c-format
-msgid ""
-"You now need to decide where you want to install the Mandriva Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandriva Linux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandriva Linux system, "
-"choose\n"
-"this option. Be careful, because you will not be able to undo this "
-"operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-
-#: help.pm:375 install_interactive.pm:96
-#, c-format
-msgid "Use free space"
-msgstr "Выкарыстоўваць незанятую прастору"
-
-#: help.pm:375
-#, fuzzy, c-format
-msgid "Use existing partition"
-msgstr "Выкарыстоўваць існуючы раздзел"
-
-#: help.pm:375 install_interactive.pm:138
-#, c-format
-msgid "Use the free space on the Microsoft Windows® partition"
-msgstr "Выкарыстоўваць незанятую прастору на раздзеле Windows"
-
-#: help.pm:375
-#, c-format
-msgid "Erase entire disk"
-msgstr "Сцёрці дадзеныя на ўсім дыску"
-
-#: help.pm:375
-#, fuzzy, c-format
-msgid "Remove Windows"
-msgstr "Выдаліць Windows™"
-
-#: help.pm:375 install_interactive.pm:233
-#, c-format
-msgid "Custom disk partitioning"
-msgstr ""
-
-#: help.pm:378
-#, c-format
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
-"to remove the installation media (CD-ROM or floppy). The first thing you\n"
-"should see after your computer has finished doing its hardware tests is the\n"
-"boot-loader menu, giving you the choice of which operating system to start.\n"
-"\n"
-"The \"%s\" button shows two more buttons to:\n"
-"\n"
-" * \"%s\": enables you to create an installation floppy disk which will\n"
-"automatically perform a whole installation without the help of an operator,\n"
-"similar to the installation you've just configured.\n"
-"\n"
-" Note that two different options are available after clicking on that\n"
-"button:\n"
-"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
-"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing on a number of similar\n"
-"machines. See the Auto install section on our web site for more\n"
-"information.\n"
-"\n"
-" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
-"To use this selection with another installation, insert the floppy and\n"
-"start the installation. At the prompt, press the [F1] key, type >>linux\n"
-"defcfg=\"floppy\"<< and press the [Enter] key.\n"
-"\n"
-"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
-"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
-"/dev/fd0\"."
-msgstr ""
-
-#: help.pm:410
-#, fuzzy, c-format
-msgid "Generate auto-install floppy"
-msgstr "Стварэнне дыскеты для ўсталявання"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, fuzzy, c-format
-msgid "Replay"
-msgstr "Граць"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Automated"
-msgstr "Аўтаматычны"
-
-#: help.pm:410 install_steps_interactive.pm:1317
-#, fuzzy, c-format
-msgid "Save packages selection"
-msgstr "Асабісты выбар пакетаў"
-
-#: help.pm:413
-#, c-format
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
-"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
-"reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"will not be able to recover it.\n"
-"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
-"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandriva Linux operating system installation.\n"
-"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-
-#: help.pm:432 install_steps_gtk.pm:392 interactive.pm:437
-#: interactive/newt.pm:318 printer/printerdrake.pm:3882
-#: standalone/drakTermServ:391 standalone/drakbackup:4065
-#: standalone/drakbackup:4101 standalone/drakbackup:4212
-#: standalone/drakbackup:4227 ugtk2.pm:488
-#, c-format
-msgid "Previous"
-msgstr "прылада"
-
-#: help.pm:435
-#, c-format
-msgid ""
-"By the time you install Mandriva Linux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-
-#: help.pm:445 help.pm:589 install_steps_gtk.pm:391
-#: install_steps_interactive.pm:132
-#, c-format
-msgid "Install"
-msgstr "Усталёўка"
-
-#: help.pm:448
-#, c-format
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
-"\n"
-"If you do not know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandriva Linux\n"
-"Control Center.\n"
-"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-
-#: help.pm:459
-#, fuzzy, c-format
-msgid "Security Administrator"
-msgstr "Сістэмнае адміністраваньне"
-
-#: help.pm:462
-#, c-format
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandriva Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"%s\": this option deletes all partitions on the selected hard drive\n"
-"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
-"partitions in the free space of your hard drive\n"
-"\n"
-"\"%s\": gives access to additional features:\n"
-"\n"
-" * \"%s\": saves the partition table to a floppy. Useful for later\n"
-"partition-table recovery if necessary. It is strongly recommended that you\n"
-"perform this step.\n"
-"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
-"\n"
-" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it does not always\n"
-"work.\n"
-"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
-"\n"
-" * \"%s\": un-checking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
-"\n"
-" * \"%s\": use this option if you wish to use a wizard to partition your\n"
-"hard drive. This is recommended if you do not have a good understanding of\n"
-"partitioning.\n"
-"\n"
-" * \"%s\": use this option to cancel your changes.\n"
-"\n"
-" * \"%s\": allows additional actions on partitions (type, options, format)\n"
-"and gives more information about the hard drive.\n"
-"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"When defining the size of a partition, you can finely set the partition\n"
-"size by using the Arrow keys of your keyboard.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and the [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
-"\n"
-" * Ctrl-d to delete a partition\n"
-"\n"
-" * Ctrl-m to set the mount point\n"
-"\n"
-"To get information about the different file system types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-
-#: help.pm:531
-#, c-format
-msgid "Removable media auto-mounting"
-msgstr ""
-
-#: help.pm:531
-#, fuzzy, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Звычайны рэжым"
-
-#: help.pm:534
-#, c-format
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandriva Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-
-#: help.pm:565
-#, c-format
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country is not in "
-"the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-
-#: help.pm:570
-#, c-format
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandriva Linux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandriva Linux system. Your current "
-"partitioning\n"
-"scheme and user data will not be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandriva Linux version \"8.1\" is not recommended."
-msgstr ""
-
-#: help.pm:592
-#, c-format
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
-"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard do not match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
-"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
-"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-
-#: help.pm:610
-#, c-format
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandriva Linux's use of UTF-8 "
-"will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-
-#: help.pm:648
-#, fuzzy, c-format
-msgid "Espanol"
-msgstr "Эсперанто:"
-
-#: help.pm:651
-#, c-format
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
-"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-
-#: help.pm:682
-#, c-format
-msgid "with Wheel emulation"
-msgstr ""
-
-#: help.pm:682
-#, c-format
-msgid "Universal | Any PS/2 & USB mice"
-msgstr ""
-
-#: help.pm:685
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-
-#: help.pm:689
-#, c-format
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: do not make the password too long or too complicated because "
-"you\n"
-"must be able to remember it!\n"
-"\n"
-"The password will not be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you do not know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-
-#: help.pm:723
-#, fuzzy, c-format
-msgid "authentication"
-msgstr "Аўтэнтыфікацыя"
-
-#: help.pm:726
-#, c-format
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can not determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" will not install any boot loader. Use this option only if "
-"you\n"
-"know what you're doing."
-msgstr ""
-
-#: help.pm:743
-#, c-format
-msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you do not like your printing\n"
-"system you may change it by running PrinterDrake from the Mandriva Linux\n"
-"Control Center and clicking on the \"%s\" button."
-msgstr ""
-
-#: help.pm:766
-#, c-format
-msgid "pdq"
-msgstr ""
-
-#: help.pm:766 printer/cups.pm:117 printer/data.pm:129
-#, c-format
-msgid "CUPS"
-msgstr ""
-
-#: help.pm:766
-#, fuzzy, c-format
-msgid "Expert"
-msgstr "/Графік"
-
-#: help.pm:769
-#, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-
-#: help.pm:787
-#, c-format
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-
-#: help.pm:789 help.pm:856 install_steps_interactive.pm:991
-#: install_steps_interactive.pm:1008
-#, fuzzy, c-format
-msgid "Sound card"
-msgstr "Праграма гуказапісу"
-
-#: help.pm:792
-#, c-format
-msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"is not in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it is not\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandriva Linux Control Center after the installation has finished to "
-"benefit\n"
-"from full in-line help.\n"
-"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandriva Linux Control Center.\n"
-"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-
-#: help.pm:856 install_steps_interactive.pm:855
-#: install_steps_interactive.pm:950 standalone/drakclock:100
-#: standalone/finish-install:56 standalone/finish-install:57
-#, fuzzy, c-format
-msgid "Timezone"
-msgstr "Тэма"
-
-#: help.pm:856 install_steps_interactive.pm:1024
-#, c-format
-msgid "TV card"
-msgstr ""
-
-#: help.pm:856
-#, fuzzy, c-format
-msgid "ISDN card"
-msgstr "Унутраная ISDN карта"
-
-#: help.pm:856
-#, fuzzy, c-format
-msgid "Graphical Interface"
-msgstr "Запуск X пры старце сістэмы"
-
-#: help.pm:856 install_any.pm:1733 install_steps_interactive.pm:1042
-#: standalone/drakbackup:2051
-#, c-format
-msgid "Network"
-msgstr "Сетка"
-
-#: help.pm:856 install_steps_interactive.pm:1054
-#, fuzzy, c-format
-msgid "Proxies"
-msgstr "Проксі"
-
-#: help.pm:856 install_steps_interactive.pm:1065
-#, c-format
-msgid "Security Level"
-msgstr "Узровень бясьпекі"
-
-#: help.pm:856 install_steps_interactive.pm:1079 network/drakfirewall.pm:189
-#, c-format
-msgid "Firewall"
-msgstr ""
-
-#: help.pm:856 install_steps_interactive.pm:1095
-#, fuzzy, c-format
-msgid "Bootloader"
-msgstr "Усталяванне загрузчыку"
-
-#: help.pm:856 install_steps_interactive.pm:1108 services.pm:114
-#: services.pm:157 services.pm:193
-#, c-format
-msgid "Services"
-msgstr "Сэрвісы"
-
-#: help.pm:859
-#, c-format
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-
-#: help.pm:864
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-
-#: help.pm:870
-#, c-format
-msgid "Next ->"
-msgstr "Далей ->"
-
-#: help.pm:870
-#, c-format
-msgid "<- Previous"
-msgstr "<- прылада"
-
-#: install2.pm:115
-#, c-format
-msgid ""
-"Can not access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: install2.pm:167
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: install_any.pm:406
-#, fuzzy, c-format
-msgid "Do you have further supplementary media?"
-msgstr "Ці ёсць у вас іншы?"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:409
-#, c-format
-msgid ""
-"The following media have been found and will be used during install: %s.\n"
-"\n"
-"\n"
-"Do you have a supplementary installation medium to configure?"
-msgstr ""
-
-#: install_any.pm:422 printer/printerdrake.pm:3211
-#: printer/printerdrake.pm:3218 standalone/scannerdrake:182
-#: standalone/scannerdrake:190 standalone/scannerdrake:241
-#: standalone/scannerdrake:248
-#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: install_any.pm:422
-#, fuzzy, c-format
-msgid "Network (HTTP)"
-msgstr "Сетка"
-
-#: install_any.pm:422
-#, fuzzy, c-format
-msgid "Network (FTP)"
-msgstr "Сетка"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (NFS)"
-msgstr ""
-
-#: install_any.pm:452
-#, c-format
-msgid "Insert the CD 1 again"
-msgstr ""
-
-#: install_any.pm:478 network/netconnect.pm:866 standalone/drakbackup:114
-#, fuzzy, c-format
-msgid "No device found"
-msgstr "Няма значкі"
-
-#: install_any.pm:483
-#, c-format
-msgid "Insert the CD"
-msgstr ""
-
-#: install_any.pm:488
-#, fuzzy, c-format
-msgid "Unable to mount CD-ROM"
-msgstr "Немагчыма адчыніць файл %s\n"
-
-#: install_any.pm:521 install_any.pm:542
-#, c-format
-msgid "URL of the mirror?"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "NFS setup"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "Please enter the hostname and directory of your NFS media"
-msgstr ""
-
-#: install_any.pm:527
-#, c-format
-msgid "Hostname of the NFS mount ?"
-msgstr ""
-
-#: install_any.pm:527 standalone/draknfs:288
-#, c-format
-msgid "Directory"
-msgstr "Каталёг"
-
-#: install_any.pm:580
-#, fuzzy, c-format
-msgid ""
-"Can't find a package list file on this mirror. Make sure the location is "
-"correct."
-msgstr "Не знойздены праграмы\n"
-
-#: install_any.pm:657
-#, c-format
-msgid "Removing packages prior to upgrade..."
-msgstr ""
-
-#: install_any.pm:699
-#, fuzzy, c-format
-msgid "Looking at packages already installed..."
-msgstr "Вы не можаце адмяніць вылучэнне гэтага пакету. Ён ужо ўсталяваны"
-
-#: install_any.pm:703
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Пошук пакетаў для абнаўлення"
-
-#: install_any.pm:781
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done."
-msgstr ""
-"Змяніце ваш Cd-Rom!\n"
-"Калі ласка, устаўце Cd-Rom, пазначаны \"%s\", у ваш дыскавод і націсніце Ок "
-"пасля."
-
-#: install_any.pm:793
-#, fuzzy, c-format
-msgid "Copying in progress"
-msgstr "Стварэньне меню ўжо запушчана"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:935
-#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They do not have any known security\n"
-"issues, but some new ones could be found. In that case, you must make sure\n"
-"to upgrade as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:958
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-
-#: install_any.pm:1394 partition_table.pm:597
-#, c-format
-msgid "Error reading file %s"
-msgstr "Памылка чытання файлу %s"
-
-#: install_any.pm:1628
-#, fuzzy, c-format
-msgid "The following disk(s) were renamed:"
-msgstr "Наступныя пакеты будуць даданы да сістэмы"
-
-#: install_any.pm:1630
-#, c-format
-msgid "%s (previously named as %s)"
-msgstr ""
-
-#: install_any.pm:1670
-#, 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 ""
-"Памылка: для стварэння новых файлавых сістэмаў не знайдзены адпаведныя \n"
-"прылады. Праверце абсталяванне для пошуку імавернай прычыны."
-
-#: install_any.pm:1714
-#, c-format
-msgid "HTTP"
-msgstr ""
-
-#: install_any.pm:1714
-#, c-format
-msgid "FTP"
-msgstr "FTP"
-
-#: install_any.pm:1714
-#, fuzzy, c-format
-msgid "NFS"
-msgstr "ФС"
-
-#: install_any.pm:1737
-#, fuzzy, c-format
-msgid "Please choose a media"
-msgstr "Калі ласка выбярыце відарыс відэа"
-
-#: install_any.pm:1753
-#, fuzzy, c-format
-msgid "File already exists. Overwrite it?"
-msgstr "Файл ужо йснуе. Перапісаць?"
-
-#: install_any.pm:1757
-#, c-format
-msgid "Permission denied"
-msgstr "Адмоўлена ў доступе"
-
-#: install_any.pm:1806
-#, fuzzy, c-format
-msgid "Bad NFS name"
-msgstr "Бяз назвы"
-
-#: install_any.pm:1827
-#, fuzzy, c-format
-msgid "Bad media %s"
-msgstr "Загружаецца файл %s"
-
-#: install_any.pm:1877
-#, fuzzy, c-format
-msgid "Can not make screenshots before partitioning"
-msgstr "Дадаць раздзел немагчыма"
-
-#: install_any.pm:1884
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr ""
-
-#: install_gtk.pm:136
-#, fuzzy, c-format
-msgid "System installation"
-msgstr "Інфармацыя аб памяці"
-
-#: install_gtk.pm:139
-#, fuzzy, c-format
-msgid "System configuration"
-msgstr "Канфігурацыя сістэмных сэрвісаў"
-
-#: install_interactive.pm:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Пэўнае абсталяванне патрабуе камерцыйных драйвераў для працы.\n"
-"Часткова інфармацыю пра іх можна атрымаць тут: %s"
-
-#: install_interactive.pm:63
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Вы павінны мець каранёвы раздзел.\n"
-"Для гэтага стварыце раздзел (альбо адзначце ўжо існуючы).\n"
-"Потым абярыце ‟Кропка манціравання” і ўстанавіце яе ў ‛/’"
-
-#: install_interactive.pm:68
-#, c-format
-msgid ""
-"You do not have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Няма раздзела swap.\n"
-"\n"
-"Усё адно працягваць?"
-
-#: install_interactive.pm:71 install_steps.pm:215
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr ""
-
-#: install_interactive.pm:98
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Не хапае прасторы для стварэння новых раздзелаў"
-
-#: install_interactive.pm:106
-#, c-format
-msgid "Use existing partitions"
-msgstr "Выкарыстоўваць існуючы раздзел"
-
-#: install_interactive.pm:108
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "Няма існуючых раздзелаў, якія можна выкарыстаць"
-
-#: install_interactive.pm:115
-#, c-format
-msgid "Use the Microsoft Windows® partition for loopback"
-msgstr ""
-"Выкарыстоўваць раздзел Microsoft Windows® для віртуальнай файлавай сістэмы"
-
-#: install_interactive.pm:118
-#, fuzzy, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Памеры якога раздзела вы жадаеце змяніць?"
-
-#: install_interactive.pm:120
-#, c-format
-msgid "Choose the sizes"
-msgstr "Выбар памераў"
-
-#: install_interactive.pm:121
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Каранёвы раздзел ў Мб: "
-
-#: install_interactive.pm:122
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Памер swap раздзелу ў Мб:"
-
-#: install_interactive.pm:131
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-
-#: install_interactive.pm:140
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Памеры якога раздзела вы жадаеце змяніць?"
-
-#: install_interactive.pm:154
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occurred: %s"
-msgstr ""
-"У праграмы змены памераў раздзела FAT не атрымалася\n"
-"апрацаваць Ваш раздзел, памылка: %s"
-
-#: install_interactive.pm:157
-#, fuzzy, c-format
-msgid "Computing the size of the Microsoft Windows® partition"
-msgstr "Выкарыстоўваць незанятую прастору на раздзеле Microsoft Windows®"
-
-#: install_interactive.pm:164
-#, c-format
-msgid ""
-"Your Microsoft Windows® partition is too fragmented. Please reboot your "
-"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
-"the Mandriva Linux installation."
-msgstr ""
-"Ваш раздзел з Microsoft Windows® занадта фрагментаваны. \n"
-"Рэкамендуем спачатку запусціць праграму ‟defrag”"
-
-#: install_interactive.pm:167
-#, 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 ""
-
-#: install_interactive.pm:179
-#, c-format
-msgid "Which size do you want to keep for Microsoft Windows® on"
-msgstr "Якую прастору захаваць для Microsoft Windows®?"
-
-#: install_interactive.pm:180
-#, c-format
-msgid "partition %s"
-msgstr "Раздзел %s"
-
-#: install_interactive.pm:189
-#, c-format
-msgid "Resizing Microsoft Windows® partition"
-msgstr "Вылічэнне межаў файлавай сістэмы Microsoft Windows®"
-
-#: install_interactive.pm:194
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Аўтазмяненне памераў не атрымалася для раздзелу FAT %s"
-
-#: install_interactive.pm:209
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr ""
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Remove Microsoft Windows®"
-msgstr "Выдаліць Windows™"
-
-#: install_interactive.pm:214
-#, fuzzy, c-format
-msgid "Erase and use entire disk"
-msgstr "Сцёрці дадзеныя на ўсім дыску"
-
-#: install_interactive.pm:216
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "На які з маючыхся жорсткіх дыскаў Вы жадаеце ўсталяваць Linux?"
-
-#: install_interactive.pm:222
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "Усе існуючыя раздзелы на дыску %s і дадзеныя на іх будуць страчаны"
-
-#: install_interactive.pm:237
-#, c-format
-msgid "Use fdisk"
-msgstr "Выкарыстоўваць fdisk"
-
-#: install_interactive.pm:240
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, do not forget to save using `w'"
-msgstr ""
-"Вы можаце цяпер разбіць ваш дыск %s\n"
-"Па заканчэнні не забудзьцеся захаваць змяненні, скарыстаўшы ‛w’"
-
-#: install_interactive.pm:276
-#, fuzzy, c-format
-msgid "I can not find any room for installing"
-msgstr "Дадаць раздзел немагчыма"
-
-#: install_interactive.pm:280
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Майстар падрыхтоўкі раздзелаў DrakX знайшоў наступныя варыянты:"
-
-#: install_interactive.pm:288
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Падрыхтоўка разделаў не ўдалася: %s"
-
-#: install_interactive.pm:295
-#, c-format
-msgid "Bringing up the network"
-msgstr "Далучэнне да сеткі"
-
-#: install_interactive.pm:300
-#, c-format
-msgid "Bringing down the network"
-msgstr "Адлучэнне ад сеткі"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:10
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandriva "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandriva Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. This document is a license agreement "
-"between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you "
-"explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this "
-"License. \n"
-"If you disagree with any portion of the License, you are not allowed to "
-"install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner "
-"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate "
-"your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all "
-"copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Limited Warranty\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
-"be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without "
-"limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties "
-"resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or "
-"inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or "
-"occurrence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
-"COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
-"no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever "
-"(including without \n"
-"limitation damages for loss of business, interruption of business, financial "
-"loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential "
-"loss) arising out \n"
-"of the possession and use of software components or arising out of "
-"downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some "
-"countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong "
-"cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. The GPL License and Related Licenses\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. "
-"Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the "
-"documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. Intellectual Property Rights\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
-"as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
-"Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Governing Laws \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-msgstr ""
-
-#: install_messages.pm:90
-#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:98
-#, c-format
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:131
-#, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press Enter to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandriva "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandriva Linux User's Guide."
-msgstr ""
-
-#: install_steps.pm:250
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Дубляванне пункту манціравання %s"
-
-#: install_steps.pm:482
-#, c-format
-msgid ""
-"Some important packages did not get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
-"\"\n"
-msgstr ""
-"Некаторыя важныя пакеты не былі ўсталяваны карэктна.\n"
-"Другі ваш cdrom дыск ці ваш cdrom маюць дэфекты.\n"
-"Праверце cdrom на вашым кампутары, выкарыстоўваючы\"rpm -qpl media/main/*.rpm"
-"\"\n"
-
-#: install_steps_auto_install.pm:68 install_steps_stdio.pm:27
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Пераход на крок ‛%s’\n"
-
-#: install_steps_gtk.pm:181
-#, c-format
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandriva Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"У Вашай сістэме маецца недахоп рэсурсаў, таму магчымы праблемы\n"
-"пры ўсталяванні Mandriva Linux. У гэтым выпадку паспрабуйце тэкставую\n"
-"праграму ўсталявання. Для гэтага націсніце ‛F1’ у час загрузкі, а потым\n"
-"набярыце ‛text’ і націсніце <ENTER>."
-
-#: install_steps_gtk.pm:211 install_steps_interactive.pm:605
-#, c-format
-msgid "Package Group Selection"
-msgstr "Выбар групы пакетаў"
-
-#: install_steps_gtk.pm:254 install_steps_interactive.pm:548
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Агульны памер: %d / %d Мб"
-
-#: install_steps_gtk.pm:299
-#, c-format
-msgid "Bad package"
-msgstr "Дрэнны пакет"
-
-#: install_steps_gtk.pm:301
-#, c-format
-msgid "Version: "
-msgstr "Вэрсія: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "Size: "
-msgstr "Памер: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "%d KB\n"
-msgstr ""
-
-#: install_steps_gtk.pm:303
-#, fuzzy, c-format
-msgid "Importance: "
-msgstr "важна"
-
-#: install_steps_gtk.pm:336
-#, c-format
-msgid "You can not select/unselect this package"
-msgstr "Вы не можаце вылучаць і адмяняць вылучэнне гэтага пакету"
-
-#: install_steps_gtk.pm:340 network/thirdparty.pm:331
-#, c-format
-msgid "due to missing %s"
-msgstr ""
-
-#: install_steps_gtk.pm:341
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr ""
-
-#: install_steps_gtk.pm:342
-#, c-format
-msgid "trying to promote %s"
-msgstr ""
-
-#: install_steps_gtk.pm:343
-#, fuzzy, c-format
-msgid "in order to keep %s"
-msgstr "Уласьцівасьці акна"
-
-#: install_steps_gtk.pm:348
-#, c-format
-msgid ""
-"You can not select this package as there is not enough space left to install "
-"it"
-msgstr ""
-"Вы не можаце выбраць гэты пакет, таму як не хапае месца для яго ўсталявання"
-
-#: install_steps_gtk.pm:351
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Наступныя пакеты будуць даданы да сістэмы"
-
-#: install_steps_gtk.pm:352
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Наступныя пакеты будуць выдалены"
-
-#: install_steps_gtk.pm:376
-#, c-format
-msgid "This is a mandatory package, it can not be unselected"
-msgstr "Гэта абавязковы пакет, яго вылучэнне нельга адмяніць"
-
-#: install_steps_gtk.pm:378
-#, c-format
-msgid "You can not unselect this package. It is already installed"
-msgstr "Вы не можаце адмяніць вылучэнне гэтага пакету. Ён ужо ўсталяваны"
-
-#: install_steps_gtk.pm:381
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Гэты пакет павінен быць абноўлены\n"
-"Вы ўпэўнены, што хочаце адмяніць вылучэнне?"
-
-#: install_steps_gtk.pm:384
-#, c-format
-msgid "You can not unselect this package. It must be upgraded"
-msgstr "Вы не можаце адмяніць вылучэнне гэтага пакету. Яго патрэбна абнавіць"
-
-#: install_steps_gtk.pm:389
-#, c-format
-msgid "Show automatically selected packages"
-msgstr ""
-
-#: install_steps_gtk.pm:394
-#, fuzzy, c-format
-msgid "Load/Save selection"
-msgstr "Перанесьці вылучэньне"
-
-#: install_steps_gtk.pm:395
-#, fuzzy, c-format
-msgid "Updating package selection"
-msgstr "Асабісты выбар пакетаў"
-
-#: install_steps_gtk.pm:400
-#, fuzzy, c-format
-msgid "Minimal install"
-msgstr "Ахоўнік экрану"
-
-#: install_steps_gtk.pm:414 install_steps_interactive.pm:467
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Выбар пакетаў для ўсталявання"
-
-#: install_steps_gtk.pm:431 install_steps_interactive.pm:691
-#, c-format
-msgid "Installing"
-msgstr "Усталёўваем"
-
-#: install_steps_gtk.pm:457
-#, fuzzy, c-format
-msgid "No details"
-msgstr "Падрабязнасці"
-
-#: install_steps_gtk.pm:472
-#, c-format
-msgid "Time remaining "
-msgstr "Засталося часу "
-
-#: install_steps_gtk.pm:473
-#, c-format
-msgid "Estimating"
-msgstr "Чакаецца"
-
-#: install_steps_gtk.pm:500
-#, c-format
-msgid "%d packages"
-msgstr "%d пакетаў"
-
-#: install_steps_gtk.pm:543 install_steps_interactive.pm:719
-#, fuzzy, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Змяніце ваш Cd-Rom!\n"
-"\n"
-"Калі ласка, устаўце Cd-Rom, пазначаны \"%s\", у ваш дыскавод і націсніце Ок "
-"пасля.\n"
-"Калі вы не маеце яго, націсніце Адмяніць, каб адмяніць усталяванне з гэтага "
-"Cd."
-
-#: install_steps_gtk.pm:556 install_steps_interactive.pm:730
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
-
-#: install_steps_gtk.pm:558 install_steps_interactive.pm:734
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
-
-#: install_steps_gtk.pm:560 install_steps_interactive.pm:730
-#: install_steps_interactive.pm:734
-#, c-format
-msgid "Go on anyway?"
-msgstr "Усё роўна працягваць?"
-
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:910 steps.pm:30
-#, c-format
-msgid "Summary"
-msgstr "Агульныя зьвесткі"
-
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:906
-#: install_steps_interactive.pm:1055
-#, fuzzy, c-format
-msgid "not configured"
-msgstr "Настроіць панэль"
-
-#: install_steps_gtk.pm:668
-#, c-format
-msgid ""
-"The following installation media have been found.\n"
-"If you want to skip some of them, you can unselect them now."
-msgstr ""
-
-#: install_steps_gtk.pm:677
-#, c-format
-msgid ""
-"You have the option to copy the contents of the CDs onto the hard drive "
-"before installation.\n"
-"It will then continue from the hard drive and the packages will remain "
-"available once the system is fully installed."
-msgstr ""
-
-#: install_steps_gtk.pm:679
-#, c-format
-msgid "Copy whole CDs"
-msgstr ""
-
-#: install_steps_interactive.pm:95
-#, fuzzy, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Калі ласка, абярыце тып клавіятуры."
-
-#: install_steps_interactive.pm:97
-#, c-format
-msgid "Here is the full list of available keyboards"
-msgstr ""
-
-#: install_steps_interactive.pm:127
-#, fuzzy, c-format
-msgid "Install/Upgrade"
-msgstr "Усталёўваем"
-
-#: install_steps_interactive.pm:128
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr ""
-
-#: install_steps_interactive.pm:134
-#, c-format
-msgid "Upgrade %s"
-msgstr ""
-
-#: install_steps_interactive.pm:147
-#, c-format
-msgid "Encryption key for %s"
-msgstr ""
-
-#: install_steps_interactive.pm:170
-#, fuzzy, c-format
-msgid "Please choose your type of mouse."
-msgstr "калі ласка, пазначце тып вашай мышы."
-
-#: install_steps_interactive.pm:171
-#, c-format
-msgid "Mouse choice"
-msgstr ""
-
-#: install_steps_interactive.pm:180 standalone/mousedrake:46
-#, c-format
-msgid "Mouse Port"
-msgstr "Порт мышы"
-
-#: install_steps_interactive.pm:181 standalone/mousedrake:47
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Калі ласка, пазначце послядоўны порт, да якога падключана вашая мыш."
-
-#: install_steps_interactive.pm:191
-#, c-format
-msgid "Buttons emulation"
-msgstr ""
-
-#: install_steps_interactive.pm:193
-#, fuzzy, c-format
-msgid "Button 2 Emulation"
-msgstr "Калькулятар"
-
-#: install_steps_interactive.pm:194
-#, c-format
-msgid "Button 3 Emulation"
-msgstr ""
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Настройка карт PCMCIA ..."
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "Configuring IDE"
-msgstr "Настройка IDE"
-
-#: install_steps_interactive.pm:242
-#, c-format
-msgid "No partition available"
-msgstr "няма даступных раздзелаў"
-
-#: install_steps_interactive.pm:245
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr ""
-
-#: install_steps_interactive.pm:252
-#, c-format
-msgid "Choose the mount points"
-msgstr "Абярыце пункты манціравання"
-
-#: install_steps_interactive.pm:300
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: install_steps_interactive.pm:305
-#, c-format
-msgid ""
-"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
-"to boot your system, you'll need to create the bootstrap partition in "
-"DiskDrake"
-msgstr ""
-
-#: install_steps_interactive.pm:341
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Выбар раздзелаў для фарматавання"
-
-#: install_steps_interactive.pm:343
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Праверыць на наяўнасць дрэнных блокаў?"
-
-#: install_steps_interactive.pm:371
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
-msgstr ""
-
-#: install_steps_interactive.pm:374
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr ""
-"Не хапае месца ў буферы падкачкі (swap) для ўсталявання, павялічце яго."
-
-#: install_steps_interactive.pm:383
-#, fuzzy, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Прагляд даступных пакетаў"
-
-#: install_steps_interactive.pm:384 install_steps_interactive.pm:436
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Прагляд даступных пакетаў"
-
-#: install_steps_interactive.pm:405 install_steps_interactive.pm:810
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Выбар люстра для атрымання пакетаў"
-
-#: install_steps_interactive.pm:445
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Ваша сістэма не мае дастакова месца для ўсталявання ці абнаўлення (%d > %d)"
-
-#: install_steps_interactive.pm:479
-#, c-format
-msgid ""
-"Please choose load or save package selection.\n"
-"The format is the same as auto_install generated files."
-msgstr ""
-
-#: install_steps_interactive.pm:481
-#, c-format
-msgid "Load"
-msgstr "Загрузка"
-
-#: install_steps_interactive.pm:481 standalone/drakbackup:4083
-#: standalone/drakbackup:4153 standalone/logdrake:175
-#, c-format
-msgid "Save"
-msgstr "Захаваць"
-
-#: install_steps_interactive.pm:489
-#, fuzzy, c-format
-msgid "Bad file"
-msgstr "Загрузка файла"
-
-#: install_steps_interactive.pm:562
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr ""
-
-#: install_steps_interactive.pm:577
-#, c-format
-msgid "Type of install"
-msgstr ""
-
-#: install_steps_interactive.pm:578
-#, c-format
-msgid ""
-"You have not selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: install_steps_interactive.pm:582
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: install_steps_interactive.pm:583
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: install_steps_interactive.pm:622 standalone/drakxtv:52
-#, c-format
-msgid "All"
-msgstr "Усё"
-
-#: install_steps_interactive.pm:661
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"Калі вы маеце ўсе CD дыскі са спіса ніжэй, націсніце Ок.\n"
-"Калі вы не маеце ані воднага з гэтых CD дыскаў, націсніце Адмяніць.\n"
-"Калі некаторых з CD дыскаў не маеце, адмяніце іх выдзяленне і націсніце Ок."
-
-#: install_steps_interactive.pm:666
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom пазначаны \"%s\""
-
-#: install_steps_interactive.pm:691
-#, c-format
-msgid "Preparing installation"
-msgstr "Падрыхтоўка ўсталяваньня"
-
-#: install_steps_interactive.pm:699
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Усталяванне пакету %s\n"
-"%d%%"
-
-#: install_steps_interactive.pm:748
-#, c-format
-msgid "Post-install configuration"
-msgstr "Настройка пасля ўсталявання"
-
-#: install_steps_interactive.pm:755
-#, c-format
-msgid "Please ensure the Update Modules media is in drive %s"
-msgstr ""
-
-#: install_steps_interactive.pm:783
-#, c-format
-msgid "Updates"
-msgstr ""
-
-#: install_steps_interactive.pm:784
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates?"
-msgstr ""
-
-#: install_steps_interactive.pm:805
-#, fuzzy, c-format
-msgid ""
-"Contacting Mandriva Linux web site to get the list of available mirrors..."
-msgstr "Сувязь з люрам для атрымання спісу даступных пакетаў"
-
-#: install_steps_interactive.pm:824
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Сувязь з люрам для атрымання спісу даступных пакетаў"
-
-#: install_steps_interactive.pm:828
-#, fuzzy, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Немагчыма адчыніць файл %s\n"
-
-#: install_steps_interactive.pm:828
-#, fuzzy, c-format
-msgid "Would you like to try again?"
-msgstr "Дрэнны выбар, паспрабуйце яшче\n"
-
-#: install_steps_interactive.pm:855 standalone/drakclock:45
-#: standalone/finish-install:56
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Які ваш часавы пояс?"
-
-#: install_steps_interactive.pm:860
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: install_steps_interactive.pm:868
-#, fuzzy, c-format
-msgid "NTP Server"
-msgstr "NIS сэервер:"
-
-#: install_steps_interactive.pm:923 install_steps_interactive.pm:931
-#: install_steps_interactive.pm:949 install_steps_interactive.pm:956
-#: install_steps_interactive.pm:1107 services.pm:133
-#: standalone/drakbackup:1596
-#, c-format
-msgid "System"
-msgstr "Сістэма"
-
-#: install_steps_interactive.pm:963 install_steps_interactive.pm:990
-#: install_steps_interactive.pm:1007 install_steps_interactive.pm:1023
-#: install_steps_interactive.pm:1034
-#, c-format
-msgid "Hardware"
-msgstr "Абсталяваньне"
-
-#: install_steps_interactive.pm:969 install_steps_interactive.pm:978
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Аддалены сэервер CUPS"
-
-#: install_steps_interactive.pm:969
-#, fuzzy, c-format
-msgid "No printer"
-msgstr "Імя друкаркі"
-
-#: install_steps_interactive.pm:1011
-#, fuzzy, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Ці ёсць у вас іншы?"
-
-#: install_steps_interactive.pm:1013
-#, c-format
-msgid ""
-"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
-"card"
-msgstr ""
-
-#: install_steps_interactive.pm:1015
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: install_steps_interactive.pm:1035
-#, fuzzy, c-format
-msgid "Graphical interface"
-msgstr "Запуск X пры старце сістэмы"
-
-#: install_steps_interactive.pm:1041 install_steps_interactive.pm:1053
-#, fuzzy, c-format
-msgid "Network & Internet"
-msgstr "Сеткавы інтэрфейс"
-
-#: install_steps_interactive.pm:1055
-#, fuzzy, c-format
-msgid "configured"
-msgstr "Настроіць панэль"
-
-#: install_steps_interactive.pm:1064 install_steps_interactive.pm:1078
-#: security/level.pm:55 steps.pm:20
-#, c-format
-msgid "Security"
-msgstr "Бясьпека"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "activated"
-msgstr ""
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "disabled"
-msgstr "выключаны"
-
-#: install_steps_interactive.pm:1094
-#, fuzzy, c-format
-msgid "Boot"
-msgstr "Манітор"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1098 printer/printerdrake.pm:961
-#, c-format
-msgid "%s on %s"
-msgstr "%s на %s"
-
-#: install_steps_interactive.pm:1112 services.pm:175
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: install_steps_interactive.pm:1124
-#, fuzzy, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "Меню не было захавана. Ці сапраўды вы жадаеце выйсці?"
-
-#: install_steps_interactive.pm:1205
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Падрыхтоўка загрузчыка"
-
-#: install_steps_interactive.pm:1215
-#, c-format
-msgid ""
-"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
-"will not work for you. The install will continue, but you'll need to use "
-"BootX or some other means to boot your machine. The kernel argument for the "
-"root fs is: root=%s"
-msgstr ""
-
-#: install_steps_interactive.pm:1221
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Вы жадаеце выкарыстоўваць aboot?"
-
-#: install_steps_interactive.pm:1224
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Памылка ўсталявання aboot, \n"
-"спрабаваць усталёўваць, негледзячы на магчымасць парушэння першага разделу?"
-
-#: install_steps_interactive.pm:1241
-#, c-format
-msgid ""
-"In this security level, access to the files in the Windows partition is "
-"restricted to the administrator."
-msgstr ""
-
-#: install_steps_interactive.pm:1270 standalone/drakautoinst:76
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Устаўце дыскету ў дыскавод %s"
-
-#: install_steps_interactive.pm:1275
-#, fuzzy, c-format
-msgid "Please insert another floppy for drivers disk"
-msgstr "Устаўце дыскету ў дыскавод %s"
-
-#: install_steps_interactive.pm:1277
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Стварэнне дыскеты для ўсталявання"
-
-#: install_steps_interactive.pm:1289
-#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Некаторыя крокі не завершаны.\n"
-"Вы сапраўды жадаеце выйсці зараз?"
-
-#: install_steps_interactive.pm:1299 standalone/draksambashare:421
-#: standalone/draksambashare:527 standalone/drakups:118 standalone/drakups:157
-#: standalone/logdrake:451 standalone/logdrake:457
-#, fuzzy, c-format
-msgid "Congratulations"
-msgstr "Прыміце віншаванні!"
-
-#: install_steps_interactive.pm:1307 install_steps_interactive.pm:1308
-#, fuzzy, c-format
-msgid "Generate auto install floppy"
-msgstr "Стварэнне дыскеты для ўсталявання"
-
-#: install_steps_interactive.pm:1309
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-
-#: install_steps_newt.pm:20
-#, c-format
-msgid "Mandriva Linux Installation %s"
-msgstr "Усталяванне Mandriva Linux %s"
-
-#. -PO: This string must fit in a 80-char wide text screen
-#: install_steps_newt.pm:37
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> паміж элементамі | <Space> выбар | <F12> наступны экран "
+msgid "No"
+msgstr "Не"
-#: interactive.pm:196
+#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "Выбар файла"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakbackup:1537
-#: standalone/drakfont:649 standalone/drakhosts:242 standalone/draknfs:605
-#: standalone/draksambashare:1127 standalone/drakups:299
-#: standalone/drakups:359 standalone/drakups:379 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Add"
msgstr "Дадаць"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakhosts:249
-#: standalone/draknfs:612 standalone/draksambashare:1084
-#: standalone/draksambashare:1137 standalone/draksambashare:1176
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Modify"
msgstr "Зьмяненьне"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakfont:732
-#: standalone/drakhosts:256 standalone/draknfs:619
-#: standalone/draksambashare:1085 standalone/draksambashare:1145
-#: standalone/draksambashare:1184 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Remove"
msgstr "Выдаліць"
-#: interactive.pm:398
-#, c-format
-msgid "Basic"
-msgstr "Простые"
-
-#: interactive.pm:436 interactive/newt.pm:321 ugtk2.pm:490
+#: interactive.pm:538 interactive/curses.pm:217 ugtk2.pm:508
#, c-format
msgid "Finish"
msgstr "Скончыць"
-#: interactive/newt.pm:92
-#, fuzzy, c-format
-msgid "Do"
-msgstr "Зроблена"
+#: interactive.pm:539 interactive/curses.pm:214 ugtk2.pm:506
+#, c-format
+msgid "Previous"
+msgstr "прылада"
#: interactive/stdio.pm:29 interactive/stdio.pm:148
#, c-format
@@ -6404,1948 +3164,1205 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: keyboard.pm:171 keyboard.pm:202
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTZ)"
-msgstr "Чешскі (QWERTZ)"
-
-#: keyboard.pm:172 keyboard.pm:204
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German"
-msgstr "Нямецкі"
-
-#: keyboard.pm:173
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak"
-msgstr "Dvorak"
-
-#: keyboard.pm:174 keyboard.pm:217
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Spanish"
-msgstr "Іспанскі"
-
-#: keyboard.pm:175 keyboard.pm:218
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Finnish"
-msgstr "Фінскі"
-
-#: keyboard.pm:176 keyboard.pm:220
-#, c-format
-msgid ""
-"_: keyboard\n"
-"French"
-msgstr "Французскі"
-
-#: keyboard.pm:177 keyboard.pm:264
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Norwegian"
-msgstr "Нарвежскі"
-
-#: keyboard.pm:178
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish"
-msgstr "Польскі"
-
-#: keyboard.pm:179 keyboard.pm:275
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian"
-msgstr "Рускі"
-
-#: keyboard.pm:180 keyboard.pm:281
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swedish"
-msgstr "Швецкі"
-
-#: keyboard.pm:181 keyboard.pm:310
-#, c-format
-msgid "UK keyboard"
-msgstr "UK клавіятура"
-
-#: keyboard.pm:182 keyboard.pm:313
-#, c-format
-msgid "US keyboard"
-msgstr "US клавіятура"
-
-#: keyboard.pm:184
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Albanian"
-msgstr "Албанская:"
-
-#: keyboard.pm:185
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (old)"
-msgstr "Армянскі (стары)"
-
-#: keyboard.pm:186
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (typewriter)"
-msgstr "Армянскі (typewriter)"
-
-#: keyboard.pm:187
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (phonetic)"
-msgstr "Армянскі (фанетычны)"
-
-#: keyboard.pm:188
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Arabic"
-msgstr ""
-
-#: keyboard.pm:189
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Azerbaidjani (latin)"
-msgstr "Азербайджанскі (latin)"
-
-#: keyboard.pm:190
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belgian"
-msgstr "Бельгійскі"
-
-#: keyboard.pm:191
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Inscript-layout)"
-msgstr "Армянскі (typewriter)"
-
-#: keyboard.pm:192
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Probhat)"
-msgstr "Бельгійскі"
-
-#: keyboard.pm:193
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (phonetic)"
-msgstr "Балгарскі (фанетычны)"
-
-#: keyboard.pm:194
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (BDS)"
-msgstr "Балгарскі (БДС)"
-
-#: keyboard.pm:195
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Brazilian (ABNT-2)"
-msgstr "Бразільскі (ABNT-2)"
-
-#: keyboard.pm:196
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Bosnian"
-msgstr "Румынская:"
-
-#: keyboard.pm:197
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belarusian"
-msgstr "Беларускі"
-
-#: keyboard.pm:198
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (German layout)"
-msgstr "Швейцарскі (Нямецкая раскладка)"
-
-#: keyboard.pm:199
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (French layout)"
-msgstr "Швейцарскі (Французская раскладка)"
-
-#: keyboard.pm:201
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Cherokee syllabics"
-msgstr "Харвацкі"
-
-#: keyboard.pm:203
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTY)"
-msgstr "Чешскі (QWERTY)"
-
-#: keyboard.pm:205
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German (no dead keys)"
-msgstr "Нямецкі (няма заблакіраваных клавіш)"
-
-#: keyboard.pm:206
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Devanagari"
-msgstr "Авангард"
-
-#: keyboard.pm:207
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Danish"
-msgstr "Дацкі"
-
-#: keyboard.pm:208
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: keyboard.pm:209
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Esperanto)"
-msgstr "Dvorak (Нарвежскі)"
-
-#: keyboard.pm:210
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (French)"
-msgstr "Dvorak (Нарвежскі)"
-
-#: keyboard.pm:211
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (UK)"
-msgstr "Dvorak (US)"
-
-#: keyboard.pm:212
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Norwegian)"
-msgstr "Dvorak (Нарвежскі)"
-
-#: keyboard.pm:213
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Polish)"
-msgstr "Dvorak (US)"
-
-#: keyboard.pm:214
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Swedish)"
-msgstr "Dvorak (US)"
-
-#: keyboard.pm:215
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dzongkha/Tibetan"
-msgstr "Румынская:"
-
-#: keyboard.pm:216
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Estonian"
-msgstr "Эстонскі"
-
-#: keyboard.pm:219
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Faroese"
-msgstr "Грэчаскі"
-
-#: keyboard.pm:221
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Russian\" layout)"
-msgstr "Грузінскі (\"Руская\" раскладка)"
-
-#: keyboard.pm:222
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Latin\" layout)"
-msgstr "Грузінскі (\"Лацінская\" раскладка)"
-
-#: keyboard.pm:223
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek"
-msgstr "Грэчаскі"
-
-#: keyboard.pm:224
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek (polytonic)"
-msgstr ""
-
-#: keyboard.pm:225
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gujarati"
-msgstr ""
-
-#: keyboard.pm:226
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gurmukhi"
-msgstr ""
-
-#: keyboard.pm:227
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Croatian"
-msgstr "Харвацкі"
-
-#: keyboard.pm:228
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Hungarian"
-msgstr "Мадьярскі"
-
-#: keyboard.pm:229
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Irish"
-msgstr "Ірландская:"
-
-#: keyboard.pm:230
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli"
-msgstr "Іўрыт"
-
-#: keyboard.pm:231
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli (phonetic)"
-msgstr "Іўрыт (фанетычны)"
-
-#: keyboard.pm:232
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Iranian"
-msgstr "Іранскі"
-
-#: keyboard.pm:233
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Icelandic"
-msgstr "Ісландскі"
-
-#: keyboard.pm:234
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Italian"
-msgstr "Італьянскі"
-
-#: keyboard.pm:235
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Inuktitut"
-msgstr ""
-
-#: keyboard.pm:239
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Japanese 106 keys"
-msgstr "Японскі 106 клавіш"
-
-#: keyboard.pm:240
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Kannada"
-msgstr "Панама"
-
-#: keyboard.pm:243
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Korean"
-msgstr "UK клавіятура"
-
-#: keyboard.pm:245
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Kurdish (arabic script)"
-msgstr "Армянскі (фанетычны)"
-
-#: keyboard.pm:246
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Kyrgyz"
-msgstr "UK клавіятура"
-
-#: keyboard.pm:247
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latin American"
-msgstr "Лаціна-Амерыканскі"
-
-#: keyboard.pm:249
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Laotian"
-msgstr "Лаціна"
-
-#: keyboard.pm:250
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (old)"
-msgstr "Літоўскі AZERTY (стары)"
-
-#: keyboard.pm:252
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (new)"
-msgstr "Літоўскі AZERTY (новы)"
-
-#: keyboard.pm:253
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"number row\" QWERTY"
-msgstr "Літоўскі \"нумар радка\" QWERTY"
-
-#: keyboard.pm:254
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"phonetic\" QWERTY"
-msgstr "Літоўскі \"фанетычны\" QWERTY"
-
-#: keyboard.pm:255
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Latvian"
-msgstr "Латвійская:"
-
-#: keyboard.pm:256
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Malayalam"
-msgstr "Малазыя"
-
-#: keyboard.pm:258
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Macedonian"
-msgstr "Македонія"
-
-#: keyboard.pm:259
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Myanmar (Burmese)"
-msgstr ""
-
-#: keyboard.pm:260
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Mongolian (cyrillic)"
-msgstr ""
-
-#: keyboard.pm:261
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (UK)"
-msgstr ""
-
-#: keyboard.pm:262
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (US)"
-msgstr ""
-
-#: keyboard.pm:263
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dutch"
-msgstr "Галандскі"
-
-#: keyboard.pm:265
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Oriya"
-msgstr "Опера"
-
-#: keyboard.pm:266
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwerty layout)"
-msgstr "Польскі (стандартная раскладка)"
-
-#: keyboard.pm:267
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwertz layout)"
-msgstr "Польскі (qwertz раскладка)"
-
-#: keyboard.pm:269
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Pashto"
-msgstr "Польскі"
-
-#: keyboard.pm:270
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Portuguese"
-msgstr "Партугальскі"
-
-#: keyboard.pm:272
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Canadian (Quebec)"
-msgstr "Канадскі (Квебэк)"
-
-#: keyboard.pm:273
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwertz)"
-msgstr "Румынская:"
-
-#: keyboard.pm:274
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwerty)"
-msgstr "Румынская:"
-
-#: keyboard.pm:276
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian (phonetic)"
-msgstr "Рускі (фанетычны)"
-
-#: keyboard.pm:277
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (norwegian)"
-msgstr "Dvorak (Нарвежскі)"
-
-#: keyboard.pm:278
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (swedish/finnish)"
-msgstr ""
-
-#: keyboard.pm:280
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Sindhi"
-msgstr "Тайская клавіятура"
-
-#: keyboard.pm:282
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovenian"
-msgstr "Славенскі"
-
-#: keyboard.pm:284
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sinhala"
-msgstr ""
-
-#: keyboard.pm:285
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTZ)"
-msgstr "Славацкі (QWERTZ)"
-
-#: keyboard.pm:286
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTY)"
-msgstr "Славацкі (QWERTY)"
-
-#: keyboard.pm:288
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Serbian (cyrillic)"
-msgstr ""
-
-#: keyboard.pm:289
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac"
-msgstr ""
-
-#: keyboard.pm:290
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac (phonetic)"
-msgstr "Армянскі (фанетычны)"
-
-#: keyboard.pm:291
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Telugu"
-msgstr "Такелаў"
-
-#: keyboard.pm:293
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (ISCII-layout)"
-msgstr ""
-
-#: keyboard.pm:294
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (Typewriter-layout)"
-msgstr "Армянскі (typewriter)"
-
-#: keyboard.pm:295
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Kedmanee)"
-msgstr "Тайская клавіятура"
-
-#: keyboard.pm:296
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (TIS-820)"
-msgstr "Тайская клавіятура"
-
-#: keyboard.pm:298
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Pattachote)"
-msgstr "Тайская клавіятура"
-
-#: keyboard.pm:300
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (moroccan layout) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:301
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (phonetic) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:303
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Tajik"
-msgstr "Тайская клавіятура"
-
-#: keyboard.pm:305
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Turkmen"
-msgstr "Нямецкі"
-
-#: keyboard.pm:306
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (traditional \"F\" model)"
-msgstr "Турэцкі (традыцыёная \"F\" мадэль)"
-
-#: keyboard.pm:307
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (modern \"Q\" model)"
-msgstr "Турэцкі (сучасная \"Q\" мадэль)"
-
-#: keyboard.pm:309
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Ukrainian"
-msgstr "Украінскі"
-
-#: keyboard.pm:312
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Urdu keyboard"
-msgstr "Опера"
-
-#: keyboard.pm:314
-#, c-format
-msgid "US keyboard (international)"
-msgstr "US клавіятура (міжнародная)"
-
-#: keyboard.pm:315
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Uzbek (cyrillic)"
-msgstr ""
-
-#: keyboard.pm:317
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Vietnamese \"numeric row\" QWERTY"
-msgstr "Вьетнамскі \"нумар радка\" QWERTY"
-
-#: keyboard.pm:318
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Yugoslavian (latin)"
-msgstr "Азербайджанскі (latin)"
-
-#: keyboard.pm:325
-#, c-format
-msgid "Right Alt key"
-msgstr ""
-
-#: keyboard.pm:326
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:327
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:328
-#, c-format
-msgid "CapsLock key"
-msgstr ""
-
-#: keyboard.pm:329
-#, c-format
-msgid "Shift and CapsLock keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:330
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:331
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:332
-#, fuzzy, c-format
-msgid "\"Menu\" key"
-msgstr "Рэдактар мэню"
-
-#: keyboard.pm:333
-#, fuzzy, c-format
-msgid "Left \"Windows\" key"
-msgstr "Паводзіны вокнаў"
-
-#: keyboard.pm:334
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: keyboard.pm:335
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:336
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:337
-#, c-format
-msgid "Left Shift key"
-msgstr ""
-
-#: keyboard.pm:338
-#, c-format
-msgid "Right Shift key"
-msgstr ""
-
-#: keyboard.pm:339
-#, c-format
-msgid "Left Alt key"
-msgstr ""
-
-#: keyboard.pm:340
-#, fuzzy, c-format
-msgid "Left Control key"
-msgstr "Кантролер гучнасьці"
-
-#: keyboard.pm:341
-#, fuzzy, c-format
-msgid "Right Control key"
-msgstr "Кантролер гучнасьці"
-
-#: keyboard.pm:377
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-
-#: keyboard.pm:382
-#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
-msgstr ""
-
#. -PO: the string "default:LTR" can be translated *ONLY* as "default:LTR"
#. -PO: or as "default:RTL", depending if your language is written from
#. -PO: left to right, or from right to left; any other string is wrong.
-#: lang.pm:178
+#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"
-#: lang.pm:195
+#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "Андора"
-#: lang.pm:196 network/adsl_consts.pm:943
+#: lang.pm:211 timezone.pm:213
#, c-format
msgid "United Arab Emirates"
msgstr "Злучаныя Арабскія Эміраты"
-#: lang.pm:197
+#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "Афганістан"
-#: lang.pm:198
+#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "Анцігуа і Барбуда"
-#: lang.pm:199
+#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "Ангулла"
-#: lang.pm:200
+#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "Альбанія"
-#: lang.pm:201
+#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "Арменія"
-#: lang.pm:202
+#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "Нідэрлянская Анцілія"
-#: lang.pm:203
+#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "Ангола"
-#: lang.pm:204
+#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "Антарктыка"
-#: lang.pm:205 network/adsl_consts.pm:55 standalone/drakxtv:50
+#: lang.pm:220 timezone.pm:258
#, c-format
msgid "Argentina"
msgstr "Аргенціна"
-#: lang.pm:206
+#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "Амэрыканскае Самоа"
-#: lang.pm:209
+#: lang.pm:222 mirror.pm:11 timezone.pm:216
+#, c-format
+msgid "Austria"
+msgstr "Аўстрыя"
+
+#: lang.pm:223 mirror.pm:10 timezone.pm:254
+#, c-format
+msgid "Australia"
+msgstr "Аўстралія"
+
+#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "Аруба"
-#: lang.pm:210
+#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "Азарбаджан"
-#: lang.pm:211
+#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Босьнія й Герцэгавіна"
-#: lang.pm:212
+#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "Барбадос"
-#: lang.pm:213
+#: lang.pm:228 timezone.pm:198
#, c-format
msgid "Bangladesh"
msgstr "Бангладэш"
-#: lang.pm:215
+#: lang.pm:229 mirror.pm:12 timezone.pm:218
+#, c-format
+msgid "Belgium"
+msgstr "Бельгія"
+
+#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "Буркіна Хвасо"
-#: lang.pm:216 network/adsl_consts.pm:170 network/adsl_consts.pm:179
+#: lang.pm:231 timezone.pm:219
#, c-format
msgid "Bulgaria"
msgstr "Баўгарыя"
-#: lang.pm:217
+#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "Бахрэйн"
-#: lang.pm:218
+#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "Бурундзі"
-#: lang.pm:219
+#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "Бенін"
-#: lang.pm:220
+#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "Бермуды"
-#: lang.pm:221
+#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "Брунэі Дурасалям"
-#: lang.pm:222
+#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "Балівія"
-#: lang.pm:224
+#: lang.pm:238 mirror.pm:13 timezone.pm:259
+#, c-format
+msgid "Brazil"
+msgstr "Бразылія"
+
+#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "Багамы"
-#: lang.pm:225
+#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "Бутан"
-#: lang.pm:226
+#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "Выспа Боўвіт"
-#: lang.pm:227
+#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "Батсвана"
-#: lang.pm:228
+#: lang.pm:243 timezone.pm:217
#, c-format
msgid "Belarus"
msgstr "Беларусь"
-#: lang.pm:229
+#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "Беліз"
-#: lang.pm:231
+#: lang.pm:245 mirror.pm:14 timezone.pm:248
+#, c-format
+msgid "Canada"
+msgstr "Канада"
+
+#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Какосавыя выспы"
-#: lang.pm:232
+#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr ""
-#: lang.pm:233
+#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "Цэнтральная Афрыканская Рэспубліка"
-#: lang.pm:234
+#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr ""
-#: lang.pm:236
+#: lang.pm:250 mirror.pm:38 timezone.pm:242
+#, c-format
+msgid "Switzerland"
+msgstr "Щвэйцарыя"
+
+#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "Котэ дэ Інворэ"
-#: lang.pm:237
+#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "Выспы Кука"
-#: lang.pm:238
+#: lang.pm:253 timezone.pm:260
#, c-format
msgid "Chile"
msgstr "Чылі"
-#: lang.pm:239
+#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "Камэрун"
-#: lang.pm:240 network/adsl_consts.pm:188 network/adsl_consts.pm:197
-#: network/adsl_consts.pm:206 network/adsl_consts.pm:215
-#: network/adsl_consts.pm:224 network/adsl_consts.pm:233
-#: network/adsl_consts.pm:242 network/adsl_consts.pm:251
-#: network/adsl_consts.pm:260 network/adsl_consts.pm:269
-#: network/adsl_consts.pm:278 network/adsl_consts.pm:287
-#: network/adsl_consts.pm:296 network/adsl_consts.pm:305
-#: network/adsl_consts.pm:314 network/adsl_consts.pm:323
-#: network/adsl_consts.pm:332 network/adsl_consts.pm:341
-#: network/adsl_consts.pm:350 network/adsl_consts.pm:359
+#: lang.pm:255 timezone.pm:199
#, c-format
msgid "China"
msgstr "Кітай"
-#: lang.pm:241
+#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "Калюмбія"
-#: lang.pm:243
+#: lang.pm:257 mirror.pm:15
+#, c-format
+msgid "Costa Rica"
+msgstr "Коста-Рыка"
+
+#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "Сэрбія і Чарнагорыя"
-#: lang.pm:244
+#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "Куба"
-#: lang.pm:245
+#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "Капа Вэрдэ"
-#: lang.pm:246
+#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "Выспа Расства"
-#: lang.pm:247
+#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "Кіпар"
-#: lang.pm:250
+#: lang.pm:263 mirror.pm:16 timezone.pm:220
+#, c-format
+msgid "Czech Republic"
+msgstr "Чэская Рэспубліка"
+
+#: lang.pm:264 mirror.pm:21 timezone.pm:225
+#, c-format
+msgid "Germany"
+msgstr "Нямецкі"
+
+#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "Джыботу"
-#: lang.pm:252
+#: lang.pm:266 mirror.pm:17 timezone.pm:221
+#, c-format
+msgid "Denmark"
+msgstr "Данія"
+
+#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "Дамініка"
-#: lang.pm:253
+#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "Дамініканская Рэспубліка"
-#: lang.pm:254 network/adsl_consts.pm:44
+#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "Альджыр"
-#: lang.pm:255
+#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "Эквадор"
-#: lang.pm:257
+#: lang.pm:271 mirror.pm:18 timezone.pm:222
+#, c-format
+msgid "Estonia"
+msgstr "Курляндыя"
+
+#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "Эгіпэт"
-#: lang.pm:258
+#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "Заходняя Сахара"
-#: lang.pm:259
+#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "Эрытрыя"
-#: lang.pm:261
+#: lang.pm:275 mirror.pm:36 timezone.pm:240
+#, c-format
+msgid "Spain"
+msgstr "Гішпанія"
+
+#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "Эпіопія"
-#: lang.pm:263
+#: lang.pm:277 mirror.pm:19 timezone.pm:223
+#, c-format
+msgid "Finland"
+msgstr "Фінляндыя"
+
+#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "Хвіджі"
-#: lang.pm:264
+#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
-msgstr ""
+msgstr "Фалклендскія астравы (Мальвіны)"
-#: lang.pm:265
+#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "Мікранэзыян"
-#: lang.pm:266
+#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "Выспы Фаро"
-#: lang.pm:268
+#: lang.pm:282 mirror.pm:20 timezone.pm:224
+#, c-format
+msgid "France"
+msgstr "Францыя"
+
+#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "Габон"
-#: lang.pm:269 network/adsl_consts.pm:954 network/adsl_consts.pm:965
-#: network/netconnect.pm:46
+#: lang.pm:284 timezone.pm:244
#, c-format
msgid "United Kingdom"
msgstr "Злучанае Каралеўства"
-#: lang.pm:270
+#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "Грэнада"
-#: lang.pm:271
+#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "Грузыя"
-#: lang.pm:272
+#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "Француская Гвіяна"
-#: lang.pm:273
+#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "Гана"
-#: lang.pm:274
+#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "Гібралтар"
-#: lang.pm:275
+#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "Грынляндыя"
-#: lang.pm:276
+#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "Гамбія"
-#: lang.pm:277
+#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "Гвінея"
-#: lang.pm:278
+#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "Гвадэлупа"
-#: lang.pm:279
+#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "Экватарыяльная Гвінэя"
-#: lang.pm:281
+#: lang.pm:295 mirror.pm:22 timezone.pm:226
+#, c-format
+msgid "Greece"
+msgstr "Грэцыя"
+
+#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr ""
-#: lang.pm:282
+#: lang.pm:297 timezone.pm:249
#, c-format
msgid "Guatemala"
msgstr "Гватэмала"
-#: lang.pm:283
+#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "Гуам"
-#: lang.pm:284
+#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "Гвінэя-Бісаў"
-#: lang.pm:285
+#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "Гайяна"
-#: lang.pm:286
+#: lang.pm:301
#, c-format
msgid "Hong Kong SAR (China)"
msgstr ""
-#: lang.pm:287
+#: lang.pm:302
#, fuzzy, c-format
msgid "Heard and McDonald Islands"
msgstr "Выспы Паўночнае Мар'яны"
-#: lang.pm:288
+#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "Гандурас"
-#: lang.pm:289
+#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "Харватыя"
-#: lang.pm:290
+#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "Гаіці"
-#: lang.pm:292
+#: lang.pm:306 mirror.pm:23 timezone.pm:227
+#, c-format
+msgid "Hungary"
+msgstr "Вугоршчына"
+
+#: lang.pm:307 timezone.pm:202
#, c-format
msgid "Indonesia"
msgstr "Інданэзыя"
-#: lang.pm:295
+#: lang.pm:308 mirror.pm:24 timezone.pm:228
+#, c-format
+msgid "Ireland"
+msgstr "Ірляндыя"
+
+#: lang.pm:309 mirror.pm:25 timezone.pm:204
+#, c-format
+msgid "Israel"
+msgstr "Габрэйшчына"
+
+#: lang.pm:310 timezone.pm:201
#, c-format
msgid "India"
msgstr "Індыя"
-#: lang.pm:296
+#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Брытанская тэрыторыя Індыйскага акіяна"
-#: lang.pm:297
+#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "Ірак"
-#: lang.pm:298
+#: lang.pm:313 timezone.pm:203
#, c-format
msgid "Iran"
msgstr "Іран"
-#: lang.pm:299
+#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "Ісьляндыя"
-#: lang.pm:301
+#: lang.pm:315 mirror.pm:26 timezone.pm:229
+#, c-format
+msgid "Italy"
+msgstr "Італія"
+
+#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "Ямайка"
-#: lang.pm:302
+#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "Іярданія"
-#: lang.pm:304
+#: lang.pm:318 mirror.pm:27 timezone.pm:205
+#, c-format
+msgid "Japan"
+msgstr "Японія"
+
+#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "Кенія"
-#: lang.pm:305
+#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "Кыргізтан"
-#: lang.pm:306
+#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "Камбоджа"
-#: lang.pm:307
+#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "Кірыбаці"
-#: lang.pm:308
+#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "Камарас"
-#: lang.pm:309
+#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr ""
-#: lang.pm:310
+#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "Паўночная Карэя"
-#: lang.pm:311
+#: lang.pm:326 timezone.pm:206
#, c-format
msgid "Korea"
msgstr "Карэя"
-#: lang.pm:312
+#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "Кувэйт"
-#: lang.pm:313
+#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "Кайманавыя выспы"
-#: lang.pm:314
+#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "Казахстан"
-#: lang.pm:315
+#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "Лаос"
-#: lang.pm:316
+#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "Лібанон"
-#: lang.pm:317
+#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "Санта Лючыя"
-#: lang.pm:318
+#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "Ліхтэнштайн"
-#: lang.pm:319
+#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "Шры Ланка"
-#: lang.pm:320
+#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "Лібэрыя"
-#: lang.pm:321
+#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "Лісота"
-#: lang.pm:322 network/adsl_consts.pm:600
+#: lang.pm:337 timezone.pm:230
#, c-format
msgid "Lithuania"
msgstr "Жамойція"
-#: lang.pm:323
+#: lang.pm:338 timezone.pm:231
#, c-format
msgid "Luxembourg"
msgstr "Люксембург"
-#: lang.pm:324
+#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "Лівонія"
-#: lang.pm:325
+#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "Лібія"
-#: lang.pm:326 network/adsl_consts.pm:609
+#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "Марока"
-#: lang.pm:327
+#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "Манака"
-#: lang.pm:328
+#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "Малдова"
-#: lang.pm:329
+#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "Мадагаскар"
-#: lang.pm:330
+#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "Маршалавы выспы"
-#: lang.pm:331
+#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "Македонія"
-#: lang.pm:332
+#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "Малі"
-#: lang.pm:333
+#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "Маянмар"
-#: lang.pm:334
+#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "Манголія"
-#: lang.pm:335
+#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "Выспы Паўночнае Мар'яны"
-#: lang.pm:336
+#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "Марцінік"
-#: lang.pm:337
+#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "Маўрытанія"
-#: lang.pm:338
+#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "Мансэрат"
-#: lang.pm:339
+#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "Мальта"
-#: lang.pm:340
+#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "Марыціўс"
-#: lang.pm:341
+#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "Мальды"
-#: lang.pm:342
+#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "Маляві"
-#: lang.pm:343
+#: lang.pm:358 timezone.pm:250
#, c-format
msgid "Mexico"
msgstr "Мэксыка"
-#: lang.pm:344
+#: lang.pm:359 timezone.pm:207
#, c-format
msgid "Malaysia"
msgstr "Малазыя"
-#: lang.pm:345
+#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "Мазамбік"
-#: lang.pm:346
+#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "Намібія"
-#: lang.pm:347
+#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "Новая Калядонія"
-#: lang.pm:348
+#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "Нігер"
-#: lang.pm:349
+#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "Норфалскія выспы"
-#: lang.pm:350
+#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "Нігерыя"
-#: lang.pm:351
+#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "Нікарагуа"
-#: lang.pm:354
+#: lang.pm:367 mirror.pm:28 timezone.pm:232
+#, c-format
+msgid "Netherlands"
+msgstr "Нідэрлянды"
+
+#: lang.pm:368 mirror.pm:30 timezone.pm:233
+#, c-format
+msgid "Norway"
+msgstr "Нарвэгія"
+
+#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "Нэпал"
-#: lang.pm:355
+#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "Наўру"
-#: lang.pm:356
+#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "Ню"
-#: lang.pm:358
+#: lang.pm:372 mirror.pm:29 timezone.pm:255
+#, c-format
+msgid "New Zealand"
+msgstr "Новая Зэляндыя"
+
+#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "Аман"
-#: lang.pm:359
+#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "Панама"
-#: lang.pm:360
+#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "Перу"
-#: lang.pm:361
+#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "Француская Палінэзыя"
-#: lang.pm:362
+#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "Папуа Новая Гвінэя"
-#: lang.pm:363
+#: lang.pm:378 timezone.pm:208
#, c-format
msgid "Philippines"
msgstr "Хвіліпіны"
-#: lang.pm:364
+#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "Пакістан"
-#: lang.pm:366
+#: lang.pm:380 mirror.pm:31 timezone.pm:234
+#, c-format
+msgid "Poland"
+msgstr "Польшча"
+
+#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
-msgstr ""
+msgstr "Сэн-П'ер і Мікелон"
-#: lang.pm:367
+#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "Паткаірн"
-#: lang.pm:368
+#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "Пуэрта Рыка"
-#: lang.pm:369
+#: lang.pm:384
#, fuzzy, c-format
msgid "Palestine"
msgstr "Панэль"
-#: lang.pm:371
+#: lang.pm:385 mirror.pm:32 timezone.pm:235
+#, c-format
+msgid "Portugal"
+msgstr "Партугалія"
+
+#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "Парагвай"
-#: lang.pm:372
+#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "Палаў"
-#: lang.pm:373
+#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "Катар"
-#: lang.pm:374
+#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "Перааб'яднаньне"
-#: lang.pm:375
+#: lang.pm:390 timezone.pm:236
#, c-format
msgid "Romania"
msgstr "Румынія"
-#: lang.pm:377
+#: lang.pm:391 mirror.pm:33
+#, c-format
+msgid "Russia"
+msgstr "Расея"
+
+#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "Руанда"
-#: lang.pm:378
+#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "Савудаўская Арабія"
-#: lang.pm:379
+#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "Саламонавы выспы"
-#: lang.pm:380
+#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "Сейшэлы"
-#: lang.pm:381
+#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "Судан"
-#: lang.pm:383
+#: lang.pm:397 mirror.pm:37 timezone.pm:241
+#, c-format
+msgid "Sweden"
+msgstr "Швэцыя"
+
+#: lang.pm:398 timezone.pm:209
#, c-format
msgid "Singapore"
msgstr "Сынгапур"
-#: lang.pm:384
-#, fuzzy, c-format
+#: lang.pm:399
+#, c-format
msgid "Saint Helena"
-msgstr "Санта Лючыя"
+msgstr "Востраў Сьвятой Алены"
-#: lang.pm:385 network/adsl_consts.pm:747
+#: lang.pm:400 timezone.pm:239
#, c-format
msgid "Slovenia"
msgstr "Славенія"
-#: lang.pm:386
+#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr ""
-#: lang.pm:388
+#: lang.pm:402 mirror.pm:34 timezone.pm:238
+#, c-format
+msgid "Slovakia"
+msgstr "Словакія"
+
+#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "С'ера Ліонэ"
-#: lang.pm:389
+#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "Сан Марына"
-#: lang.pm:390 network/adsl_consts.pm:737
+#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "Сенегал"
-#: lang.pm:391
+#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "Самалі"
-#: lang.pm:392
+#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "Сарынам"
-#: lang.pm:393
+#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "Саа Тамэ й Прынсыпэ"
-#: lang.pm:394
+#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "Эль Сальвадор"
-#: lang.pm:395
+#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "Сырыя"
-#: lang.pm:396
+#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "Швазіланд"
-#: lang.pm:397
+#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Выспы Таркс і Кайкас"
-#: lang.pm:398
+#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "Чад"
-#: lang.pm:399
+#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "Паўднёвыя Францускія Тэрыторыі"
-#: lang.pm:400
+#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "Тога"
-#: lang.pm:402
+#: lang.pm:416 mirror.pm:40 timezone.pm:211
+#, c-format
+msgid "Thailand"
+msgstr "Тайланд"
+
+#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "Такжыкістан"
-#: lang.pm:403
+#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "Такелаў"
-#: lang.pm:404
+#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "Усходні Тымор"
-#: lang.pm:405
+#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "Туркменістан"
-#: lang.pm:406 network/adsl_consts.pm:931
+#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "Тунісія"
-#: lang.pm:407
+#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "Тонга"
-#: lang.pm:408
+#: lang.pm:423 timezone.pm:212
#, c-format
msgid "Turkey"
msgstr "Турцыя"
-#: lang.pm:409
+#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "Трынідад і Табага"
-#: lang.pm:410
+#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "Тувалю"
-#: lang.pm:412
+#: lang.pm:426 mirror.pm:39 timezone.pm:210
+#, c-format
+msgid "Taiwan"
+msgstr "Тайвань"
+
+#: lang.pm:427 timezone.pm:195
#, c-format
msgid "Tanzania"
msgstr "Танзаныя"
-#: lang.pm:413
+#: lang.pm:428 timezone.pm:243
#, c-format
msgid "Ukraine"
msgstr "Украіна"
-#: lang.pm:414
+#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "Уганда"
-#: lang.pm:415
+#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "Няістотна блізкія да Злучаных штатаў выспы"
-#: lang.pm:417
+#: lang.pm:431 mirror.pm:41 timezone.pm:251
+#, c-format
+msgid "United States"
+msgstr "Злучаныя Штаты"
+
+#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "Уругвай"
-#: lang.pm:418
+#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "Узбэкістан"
-#: lang.pm:419
+#: lang.pm:434
#, fuzzy, c-format
msgid "Vatican"
msgstr "Латвійская:"
-#: lang.pm:420
+#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr ""
-#: lang.pm:421
+#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "Венэсуэла"
-#: lang.pm:422
+#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr ""
-#: lang.pm:423
+#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr ""
-#: lang.pm:424
+#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "Уэтнам"
-#: lang.pm:425
+#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "Ванааці"
-#: lang.pm:426
+#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
-msgstr ""
+msgstr "Ўоліс і Футуна"
-#: lang.pm:427
+#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "Самоа"
-#: lang.pm:428
+#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "Йемен"
-#: lang.pm:429
+#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "Майотэ"
-#: lang.pm:431
+#: lang.pm:445 mirror.pm:35 timezone.pm:194
+#, c-format
+msgid "South Africa"
+msgstr "Паўднёвая Афрыка"
+
+#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "Замбія"
-#: lang.pm:432
+#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "Зімбабве"
-#: lang.pm:1149
+#: lang.pm:1153
#, c-format
msgid "Welcome to %s"
msgstr "Сардэчна запрашаем у %s"
@@ -8370,6 +4387,195 @@ msgstr ""
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:10
+#, c-format
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the Mandriva "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandriva Linux distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
+"Mandriva S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using the Software Products in any manner, you "
+"explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
+"Software Products.\n"
+"\n"
+"\n"
+"2. Limited Warranty\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
+"be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if Mandriva S.A. has been advised of the possibility or "
+"occurrence of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
+"\n"
+"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
+"no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Mandriva Linux sites which are prohibited or restricted in some "
+"countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
+"included in the Software Products.\n"
+"\n"
+"\n"
+"3. The GPL License and Related Licenses\n"
+"\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to Mandriva.\n"
+"The programs developed by Mandriva S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by Mandriva S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
+"\n"
+"\n"
+"4. Intellectual Property Rights\n"
+"\n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
+"as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
+"Mandriva S.A. \n"
+"\n"
+"\n"
+"5. Governing Laws \n"
+"\n"
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
+"For any question on this document, please contact Mandriva S.A. \n"
+msgstr ""
+
+#: messages.pm:90
+#, c-format
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:98
+#, c-format
+msgid ""
+"\n"
+"Warning\n"
+"\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
+"\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:131
+#, c-format
+msgid ""
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press Enter to reboot.\n"
+"\n"
+"\n"
+"For information on fixes which are available for this release of Mandriva "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandriva Linux User's Guide."
+msgstr ""
+
#: modules/interactive.pm:19
#, fuzzy, c-format
msgid "This driver has no configuration parameter!"
@@ -8432,19 +4638,14 @@ msgstr "Усталяванне драйверу для %s карты %s"
msgid "Installing driver for %s card %s"
msgstr "Усталяванне драйверу для %s карты %s"
-#: modules/interactive.pm:99
-#, c-format
-msgid "(module %s)"
-msgstr "(модуль %s)"
-
-#: modules/interactive.pm:109
+#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: modules/interactive.pm:115
+#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -8455,18 +4656,18 @@ msgstr ""
"Опцыі - у фармаце ‟імя=значэнне імя2=значэнне2 ...”.\n"
"Напрыклад, ‟io=0x300 irq=7”"
-#: modules/interactive.pm:117
+#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "Опцыі модулю:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: modules/interactive.pm:130
+#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr "Які драйвер %s паспрабаваць?"
-#: modules/interactive.pm:139
+#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -8483,17 +4684,17 @@ msgstr ""
"ў пошуках неабходнай інфармацыі? Магчыма, тэсціраванне прывядзе\n"
"да спынення камп'ютэру, але яно нічога не сапсуе."
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "Аўтапошук"
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "Пазначце параметры"
-#: modules/interactive.pm:155
+#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -8502,1818 +4703,17 @@ msgstr ""
"Загрузка модулю %s не прайшла.\n"
"Жадаеце паспрабаваць з іншымі параметрамі?"
-#: modules/parameters.pm:49
-#, fuzzy, c-format
-msgid "a number"
-msgstr "Нумар запісу"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated numbers"
-msgstr ""
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated strings"
-msgstr ""
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated numbers"
-msgstr ""
-
-#: modules/parameters.pm:53
-#, fuzzy, c-format
-msgid "comma separated strings"
-msgstr "Фарматаванне раздзелаў"
-
-#: mouse.pm:25
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - Мыш"
-
-#: mouse.pm:31 security/level.pm:12
-#, c-format
-msgid "Standard"
-msgstr "Стандартны"
-
-#: mouse.pm:32
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: mouse.pm:33
-#, fuzzy, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Звычайная мыш з 2 кнопкамі"
-
-#: mouse.pm:34
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/modem.pm:68 network/modem.pm:81 network/modem.pm:86
-#: network/modem.pm:115 network/netconnect.pm:596 network/netconnect.pm:601
-#: network/netconnect.pm:613 network/netconnect.pm:618
-#: network/netconnect.pm:634 network/netconnect.pm:636
-#, c-format
-msgid "Automatic"
-msgstr "Аўтаматычна"
-
-#: mouse.pm:39 mouse.pm:73
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: mouse.pm:40 mouse.pm:68
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: mouse.pm:41
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: mouse.pm:42 mouse.pm:52
-#, fuzzy, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft IntelliMouse"
-
-#: mouse.pm:47 mouse.pm:79
-#, fuzzy, c-format
-msgid "1 button"
-msgstr "3 кнопкі"
-
-#: mouse.pm:48 mouse.pm:57
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Звычайная мыш з 2 кнопкамі"
-
-#: mouse.pm:50 mouse.pm:59
-#, fuzzy, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Звычайная мыш з 3 кнопкамі"
-
-#: mouse.pm:51
-#, c-format
-msgid "Wheel"
-msgstr "З колам"
-
-#: mouse.pm:55
-#, c-format
-msgid "serial"
-msgstr "паслядоўная"
-
-#: mouse.pm:58
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Звычайная мыш з 3 кнопкамі"
-
-#: mouse.pm:60
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: mouse.pm:61
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: mouse.pm:62
-#, fuzzy, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan"
-
-#: mouse.pm:63
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: mouse.pm:65
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: mouse.pm:66
-#, fuzzy, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Series"
-
-#: mouse.pm:67
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: mouse.pm:69
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
-
-#: mouse.pm:70
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: mouse.pm:71
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (паслядоўная, стары тып C7)"
-
-#: mouse.pm:72
-#, fuzzy, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech Mouse (паслядоўная, стары тып C7)"
-
-#: mouse.pm:74
-#, fuzzy, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse"
-
-#: mouse.pm:77
-#, fuzzy, c-format
-msgid "busmouse"
-msgstr "Няма мышы"
-
-#: mouse.pm:80
-#, c-format
-msgid "2 buttons"
-msgstr "2 кнопкі"
-
-#: mouse.pm:81
-#, c-format
-msgid "3 buttons"
-msgstr "3 кнопкі"
-
-#: mouse.pm:82
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr ""
-
-#: mouse.pm:86
-#, c-format
-msgid "Universal"
-msgstr "Агульнае"
-
-#: mouse.pm:88
-#, c-format
-msgid "Any PS/2 & USB mice"
-msgstr ""
-
-#: mouse.pm:89
-#, fuzzy, c-format
-msgid "Microsoft Xbox Controller S"
-msgstr "Microsoft IntelliMouse"
-
-#: mouse.pm:93 standalone/drakconnect:351 standalone/drakvpn:1126
-#, c-format
-msgid "none"
-msgstr "няма"
-
-#: mouse.pm:95
-#, c-format
-msgid "No mouse"
-msgstr "Няма мышы"
-
-#: mouse.pm:304 mouse.pm:367 mouse.pm:376 mouse.pm:435
-#, c-format
-msgid "Synaptics Touchpad"
-msgstr ""
-
-#: mouse.pm:561
-#, c-format
-msgid "Please test the mouse"
-msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-
-#: mouse.pm:563
-#, fuzzy, c-format
-msgid "To activate the mouse,"
-msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-
-#: mouse.pm:564
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "Рушце колам мышы!"
-
-#: network/drakfirewall.pm:12 share/compssUsers.pl:85
-#, fuzzy, c-format
-msgid "Web Server"
-msgstr "Сервак"
-
-#: network/drakfirewall.pm:17
-#, fuzzy, c-format
-msgid "Domain Name Server"
-msgstr "Імя дамену"
-
-#: network/drakfirewall.pm:22
-#, fuzzy, c-format
-msgid "SSH server"
-msgstr "X сэервер"
-
-#: network/drakfirewall.pm:27
-#, fuzzy, c-format
-msgid "FTP server"
-msgstr "X сэервер"
-
-#: network/drakfirewall.pm:32
-#, fuzzy, c-format
-msgid "Mail Server"
-msgstr "Сервак"
-
-#: network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr ""
-
-#: network/drakfirewall.pm:42
-#, fuzzy, c-format
-msgid "Telnet server"
-msgstr "X сэервер"
-
-#: network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr ""
-
-#: network/drakfirewall.pm:54
-#, fuzzy, c-format
-msgid "CUPS server"
-msgstr "Аддалены сэервер CUPS"
-
-#: network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr ""
-
-#: network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr ""
-
-#: network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr ""
-
-#: network/drakfirewall.pm:165
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-
-#: network/drakfirewall.pm:171
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-
-#: network/drakfirewall.pm:188
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
-
-#: network/drakfirewall.pm:191
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-
-#: network/drakfirewall.pm:197
-#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-
-#: network/drakfirewall.pm:207
-#, c-format
-msgid "Everything (no firewall)"
-msgstr ""
-
-#: network/drakfirewall.pm:209
-#, fuzzy, c-format
-msgid "Other ports"
-msgstr "Парты вываду:"
-
-#: network/drakfirewall.pm:253 network/drakfirewall.pm:256
-#: standalone/drakids:33 standalone/drakids:136 standalone/drakids:145
-#: standalone/drakids:170 standalone/drakids:179 standalone/drakids:189
-#: standalone/drakids:265 standalone/net_applet:59 standalone/net_applet:202
-#: standalone/net_applet:385 standalone/net_applet:422
-#, fuzzy, c-format
-msgid "Interactive Firewall"
-msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
-
-#: network/drakfirewall.pm:254
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activity should be watched."
-msgstr ""
-
-#: network/drakfirewall.pm:259
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr ""
-
-#: network/ifw.pm:129
-#, fuzzy, c-format
-msgid "Port scanning"
-msgstr "Нічога"
-
-#: network/ifw.pm:130
-#, fuzzy, c-format
-msgid "Service attack"
-msgstr "Кіраваньне сэрвісамі"
-
-#: network/ifw.pm:131
-#, fuzzy, c-format
-msgid "Password cracking"
-msgstr "Паўтарыце пароль"
-
-#: network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr ""
-
-#: network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:135
-#, fuzzy, c-format
-msgid "The %s service has been attacked by %s."
-msgstr "Гэтая падзея была зьменена."
-
-#: network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:137
-#, fuzzy, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr "Гэтая падзея была зьменена."
-
-#: network/isdn.pm:117 network/netconnect.pm:463 network/netconnect.pm:557
-#: network/netconnect.pm:560 network/netconnect.pm:708
-#: network/netconnect.pm:712
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr ""
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "Не вядома"
-
-#: network/isdn.pm:161 network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: network/isdn.pm:162 network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/netconnect.pm:601 network/netconnect.pm:618
-#: network/netconnect.pm:634
-#, fuzzy, c-format
-msgid "Manual"
-msgstr "Студзень"
-
-#: network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr ""
-
-#: network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr ""
-
-#: network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr ""
-
-#: network/ndiswrapper.pm:89
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr ""
-
-#: network/ndiswrapper.pm:95
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-
-#: network/ndiswrapper.pm:101
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr ""
-
-#: network/netconnect.pm:69 network/netconnect.pm:493
-#: network/netconnect.pm:505
-#, c-format
-msgid "Manual choice"
-msgstr ""
-
-#: network/netconnect.pm:69
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Унутраная ISDN карта"
-
-#: network/netconnect.pm:80 printer/printerdrake.pm:1622 standalone/drakups:72
-#, fuzzy, c-format
-msgid "Manual configuration"
-msgstr "Захаваць канфігурацыю меню"
-
-#: network/netconnect.pm:81 standalone/drakroam:121
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr ""
-
-#: network/netconnect.pm:83
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
-msgstr ""
-
-#: network/netconnect.pm:86
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr ""
-
-#: network/netconnect.pm:88 standalone/drakconnect:563
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr ""
-
-#: network/netconnect.pm:89 standalone/drakconnect:564
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-
-#: network/netconnect.pm:103 standalone/harddrake2:328
-#: standalone/net_monitor:102 standalone/net_monitor:103
-#: standalone/net_monitor:108
-#, c-format
-msgid "unknown"
-msgstr "невядома"
-
-#: network/netconnect.pm:120 network/thirdparty.pm:220
-#, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr ""
-
-#: network/netconnect.pm:121
-#, c-format
-msgid "Sagem USB modem"
-msgstr ""
-
-#: network/netconnect.pm:122
-#, fuzzy, c-format
-msgid "Bewan modem"
-msgstr "Рэжым злучэння"
-
-#: network/netconnect.pm:123
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr ""
-
-#: network/netconnect.pm:127
-#, fuzzy, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr "Канфігурацыя сістэмных сэрвісаў"
-
-#: network/netconnect.pm:128
-#, fuzzy, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "Канфігурацыя"
-
-#: network/netconnect.pm:129
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr ""
-
-#: network/netconnect.pm:130
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr ""
-
-#: network/netconnect.pm:131
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr ""
-
-#: network/netconnect.pm:132
-#, c-format
-msgid "DSL over CAPI"
-msgstr ""
-
-#: network/netconnect.pm:136
-#, c-format
-msgid "Bridged Ethernet LLC"
-msgstr ""
-
-#: network/netconnect.pm:137
-#, c-format
-msgid "Bridged Ethernet VC"
-msgstr ""
-
-#: network/netconnect.pm:138
-#, c-format
-msgid "Routed IP LLC"
-msgstr ""
-
-#: network/netconnect.pm:139
-#, c-format
-msgid "Routed IP VC"
-msgstr ""
-
-#: network/netconnect.pm:140
-#, c-format
-msgid "PPPoA LLC"
-msgstr ""
-
-#: network/netconnect.pm:141
-#, c-format
-msgid "PPPoA VC"
-msgstr ""
-
-#: network/netconnect.pm:145 standalone/drakconnect:498
-#, c-format
-msgid "Script-based"
-msgstr "на аснове скрыпту"
-
-#: network/netconnect.pm:146 standalone/drakconnect:498
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: network/netconnect.pm:147 standalone/drakconnect:498
-#, c-format
-msgid "Terminal-based"
-msgstr "на аснове тэрміналу"
-
-#: network/netconnect.pm:148 standalone/drakconnect:498
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: network/netconnect.pm:149 standalone/drakconnect:498
-#, fuzzy, c-format
-msgid "PAP/CHAP"
-msgstr "CHAP"
-
-#: network/netconnect.pm:250 standalone/drakconnect:56
-#, fuzzy, c-format
-msgid "Network & Internet Configuration"
-msgstr "Канфігурацыя сеткі"
-
-#: network/netconnect.pm:256
-#, fuzzy, c-format
-msgid "LAN connection"
-msgstr "Дзеяньні"
-
-#: network/netconnect.pm:257 network/netconnect.pm:276 standalone/drakroam:182
-#: standalone/drakroam:220 standalone/drakroam:223
-#, fuzzy, c-format
-msgid "Wireless connection"
-msgstr "Канфігурацыя"
-
-#: network/netconnect.pm:258
-#, fuzzy, c-format
-msgid "ADSL connection"
-msgstr "Дзеяньні"
-
-#: network/netconnect.pm:259
-#, fuzzy, c-format
-msgid "Cable connection"
-msgstr "Размеркаванне"
-
-#: network/netconnect.pm:260
-#, fuzzy, c-format
-msgid "ISDN connection"
-msgstr "Дзеяньні"
-
-#: network/netconnect.pm:261
-#, fuzzy, c-format
-msgid "Modem connection"
-msgstr "Размеркаванне"
-
-#: network/netconnect.pm:262
-#, c-format
-msgid "DVB connection"
-msgstr ""
-
-#: network/netconnect.pm:272
-#, fuzzy, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Выбар раздзелаў для фарматавання"
-
-#: network/netconnect.pm:287 network/netconnect.pm:786
-#, c-format
-msgid "Connection Configuration"
-msgstr "Настройка далучэння да Інтэрнэту"
-
-#: network/netconnect.pm:287 network/netconnect.pm:787
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Калі ласка, запоўніце ці пазначце поле ніжэй"
-
-#: network/netconnect.pm:290
-#, c-format
-msgid "Your personal phone number"
-msgstr "Ваш асабісты тэлефонны нумар"
-
-#: network/netconnect.pm:291 network/netconnect.pm:790
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Імя правайдару, напрыклад правайдар.net"
-
-#: network/netconnect.pm:292 standalone/drakconnect:493
-#, c-format
-msgid "Provider phone number"
-msgstr "Нумар тэлефону правайдара"
-
-#: network/netconnect.pm:293
-#, fuzzy, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "Опцыі прынтэру"
-
-#: network/netconnect.pm:294
-#, fuzzy, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "Опцыі прынтэру"
-
-#: network/netconnect.pm:295 standalone/drakconnect:444
-#, c-format
-msgid "Dialing mode"
-msgstr "Рэжым злучэння"
-
-#: network/netconnect.pm:296 standalone/drakconnect:449
-#: standalone/drakconnect:517
-#, fuzzy, c-format
-msgid "Connection speed"
-msgstr "Імя злучэння"
-
-#: network/netconnect.pm:297 standalone/drakconnect:454
-#, fuzzy, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Настройка далучэння да Інтэрнэту"
-
-#: network/netconnect.pm:298 network/netconnect.pm:323
-#: network/netconnect.pm:793 standalone/drakconnect:491
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Імя для ўваходу (імя карыстальніку)"
-
-#: network/netconnect.pm:299 network/netconnect.pm:324
-#: network/netconnect.pm:794 standalone/drakconnect:492
-#, c-format
-msgid "Account Password"
-msgstr "Пароль для ўваходу"
-
-#: network/netconnect.pm:300 standalone/drakconnect:554
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ карты"
-
-#: network/netconnect.pm:301 standalone/drakconnect:555
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Адрасы памяці карты (DMA)"
-
-#: network/netconnect.pm:302 standalone/drakconnect:556
-#, c-format
-msgid "Card IO"
-msgstr "IO карты"
-
-#: network/netconnect.pm:303 standalone/drakconnect:557
-#, c-format
-msgid "Card IO_0"
-msgstr "IO_0 карты"
-
-#: network/netconnect.pm:304
-#, c-format
-msgid "Card IO_1"
-msgstr "IO_1 карты"
-
-#: network/netconnect.pm:319
-#, fuzzy, c-format
-msgid "Cable: account options"
-msgstr "Дазволіць тэрмін дзеяньня запісу"
-
-#: network/netconnect.pm:322
-#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr ""
-
-#: network/netconnect.pm:348 network/netconnect.pm:670
-#: network/netconnect.pm:826 network/netconnect.pm:1170
-#, fuzzy, c-format
-msgid "Select the network interface to configure:"
-msgstr "Пазначце сеткавы інтэрфейс"
-
-#: network/netconnect.pm:350 network/netconnect.pm:385
-#: network/netconnect.pm:671 network/netconnect.pm:828 network/shorewall.pm:70
-#: standalone/drakconnect:714
-#, fuzzy, c-format
-msgid "Net Device"
-msgstr "Прылада"
-
-#: network/netconnect.pm:351 network/netconnect.pm:356
-#, fuzzy, c-format
-msgid "External ISDN modem"
-msgstr "Унутраная ISDN карта"
-
-#: network/netconnect.pm:384 standalone/harddrake2:215
-#, fuzzy, c-format
-msgid "Select a device!"
-msgstr "Абярыце файл"
-
-#: network/netconnect.pm:393 network/netconnect.pm:403
-#: network/netconnect.pm:413 network/netconnect.pm:446
-#: network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Настройка ISDN"
-
-#: network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Які тып карты вы маеце?"
-
-#: network/netconnect.pm:404
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"Калі вы маеце ISA карту, велічыні на наступным экране павінны быць "
-"сапраўднымі.\n"
-"\n"
-"Калі вы маеце PCMCIA карту, вы павінны ведаць irq і io вашай карты.\n"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "Працягнуць"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "Адмяніць"
-
-#: network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr ""
-
-#: network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-
-#: network/netconnect.pm:434 standalone/drakconnect:109 standalone/drakups:249
-#: standalone/harddrake2:133
-#, c-format
-msgid "Driver"
-msgstr "Драйвэр"
-
-#: network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Які пратакол вы жадаеце выкарыстоўваць?"
-
-#: network/netconnect.pm:448 standalone/drakconnect:109
-#: standalone/drakconnect:300 standalone/drakconnect:562
-#: standalone/drakids:207 standalone/drakvpn:1128
-#, c-format
-msgid "Protocol"
-msgstr "Пратакол"
-
-#: network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"Абярыце вашага правайдара.\n"
-"калі яго няма ў гэтым спісе, абярыце тып ‟Іншы”"
-
-#: network/netconnect.pm:462 network/netconnect.pm:556
-#: network/netconnect.pm:707
-#, fuzzy, c-format
-msgid "Provider:"
-msgstr "Прынтэр"
-
-#: network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-
-#: network/netconnect.pm:490
-#, fuzzy, c-format
-msgid "Select the modem to configure:"
-msgstr "Пазначце карыстальнікаў каб аб'яднаць у гэтыю групу"
-
-#: network/netconnect.pm:525
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Да якога паслядоўнага порту далучаны мадэм?"
-
-#: network/netconnect.pm:554
-#, c-format
-msgid "Select your provider:"
-msgstr ""
-
-#: network/netconnect.pm:578
-#, fuzzy, c-format
-msgid "Dialup: account options"
-msgstr "Дазволіць тэрмін дзеяньня запісу"
-
-#: network/netconnect.pm:581
-#, c-format
-msgid "Connection name"
-msgstr "Імя злучэння"
-
-#: network/netconnect.pm:582
-#, c-format
-msgid "Phone number"
-msgstr "Нумар тэлефону"
-
-#: network/netconnect.pm:583
-#, c-format
-msgid "Login ID"
-msgstr "Імя (login ID)"
-
-#: network/netconnect.pm:598 network/netconnect.pm:631
-#, fuzzy, c-format
-msgid "Dialup: IP parameters"
-msgstr "Настроіць проксі сэрвэры"
-
-#: network/netconnect.pm:601
-#, fuzzy, c-format
-msgid "IP parameters"
-msgstr "Інтэрнэт"
-
-#: network/netconnect.pm:602 network/netconnect.pm:941
-#: printer/printerdrake.pm:460 standalone/drakconnect:109
-#: standalone/drakconnect:316 standalone/drakconnect:882
-#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:284
-#, c-format
-msgid "IP address"
-msgstr "IP адрас"
-
-#: network/netconnect.pm:603
-#, fuzzy, c-format
-msgid "Subnet mask"
-msgstr "Маска сеткі"
-
-#: network/netconnect.pm:615
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr ""
-
-#: network/netconnect.pm:618
-#, c-format
-msgid "DNS"
-msgstr ""
-
-#: network/netconnect.pm:619
-#, c-format
-msgid "Domain name"
-msgstr "Імя дамену"
-
-#: network/netconnect.pm:620 network/netconnect.pm:791
-#: standalone/drakconnect:992
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr ""
-
-#: network/netconnect.pm:621 network/netconnect.pm:792
-#: standalone/drakconnect:993
-#, fuzzy, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Канфігурацыя сістэмных сэрвісаў"
-
-#: network/netconnect.pm:622
-#, c-format
-msgid "Set hostname from IP"
-msgstr ""
-
-#: network/netconnect.pm:634 standalone/drakconnect:327
-#, c-format
-msgid "Gateway"
-msgstr "Шлюз"
-
-#: network/netconnect.pm:635 standalone/drakroam:124
-#, fuzzy, c-format
-msgid "Gateway IP address"
-msgstr "IP адрас"
-
-#: network/netconnect.pm:670
-#, fuzzy, c-format
-msgid "ADSL configuration"
-msgstr "Настройка ISDN"
-
-#: network/netconnect.pm:705
-#, fuzzy, c-format
-msgid "Please choose your ADSL provider"
-msgstr "калі ласка, пазначце тып вашай мышы."
-
-#: network/netconnect.pm:735
-#, c-format
-msgid ""
-"Please choose your DSL connection type.\n"
-"If you do not know it, keep the preselected type."
-msgstr ""
-
-#: network/netconnect.pm:738
-#, fuzzy, c-format
-msgid "ADSL connection type:"
-msgstr "Дзеяньні"
-
-#: network/netconnect.pm:796
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr ""
-
-#: network/netconnect.pm:797
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr ""
-
-#: network/netconnect.pm:800
-#, c-format
-msgid "Encapsulation:"
-msgstr ""
-
-#: network/netconnect.pm:830
-#, c-format
-msgid "Manually load a driver"
-msgstr ""
-
-#: network/netconnect.pm:831
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr ""
-
-#: network/netconnect.pm:896
-#, c-format
-msgid "Zeroconf hostname resolution"
-msgstr ""
-
-#: network/netconnect.pm:897 network/netconnect.pm:928
-#, fuzzy, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "Настрйка драйверу Solaris"
-
-#: network/netconnect.pm:898
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use"
-msgstr ""
-
-#: network/netconnect.pm:929
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Калі ласка, увядзіце IP канфігурацыю для вашай машыны.\n"
-"Кожны пункт павінен быць запоўнены як IP адрас ў дзесяткова-кропкавай \n"
-"натацыі (напрыклад, 1.2.3.4)."
-
-#: network/netconnect.pm:936 standalone/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr ""
-
-#: network/netconnect.pm:937 standalone/drakconnect:375
-#, fuzzy, c-format
-msgid "DHCP host name"
-msgstr "Імя машыны"
-
-#: network/netconnect.pm:942 standalone/drakconnect:321
-#: standalone/drakconnect:883 standalone/drakgw:181
-#, c-format
-msgid "Netmask"
-msgstr "Маска сеткі"
-
-#: network/netconnect.pm:944 standalone/drakconnect:437
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr ""
-
-#: network/netconnect.pm:945 standalone/drakconnect:438
-#, fuzzy, c-format
-msgid "Network Hotplugging"
-msgstr "Сетка"
-
-#: network/netconnect.pm:947 standalone/drakconnect:432
-#, c-format
-msgid "Start at boot"
-msgstr ""
-
-#: network/netconnect.pm:949 standalone/drakconnect:460
-#, fuzzy, c-format
-msgid "Metric"
-msgstr "абмежаванне"
-
-#: network/netconnect.pm:950
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr ""
-
-#: network/netconnect.pm:952 standalone/drakconnect:369
-#: standalone/drakconnect:886
-#, c-format
-msgid "DHCP client"
-msgstr ""
-
-#: network/netconnect.pm:954 standalone/drakconnect:379
-#, fuzzy, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "Настройка далучэння да Інтэрнэту"
-
-#: network/netconnect.pm:955 standalone/drakconnect:382
-#, fuzzy, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "IP сэервера SMB"
-
-#: network/netconnect.pm:956 standalone/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:957 standalone/drakconnect:384
-#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:965 printer/printerdrake.pm:1876
-#: standalone/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP адрас павінен быць у фармаце 1.2.3.4"
-
-#: network/netconnect.pm:969 standalone/drakconnect:680
-#, fuzzy, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "IP адрас павінен быць у фармаце 1.2.3.4"
-
-#: network/netconnect.pm:973
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr ""
-
-#: network/netconnect.pm:978 standalone/drakTermServ:1927
-#: standalone/drakTermServ:1928 standalone/drakTermServ:1929
-#, fuzzy, c-format
-msgid "%s already in use\n"
-msgstr "%s ужо знойдзены "
-
-#: network/netconnect.pm:1018
-#, fuzzy, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "X сэервер"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr ""
-
-#: network/netconnect.pm:1020
-#, fuzzy, c-format
-msgid "Install a new driver"
-msgstr "Усталяванне сістэмы"
-
-#: network/netconnect.pm:1032
-#, c-format
-msgid "Select a device:"
-msgstr ""
-
-#: network/netconnect.pm:1061
-#, c-format
-msgid "Please enter the wireless parameters for this card:"
-msgstr ""
-
-#: network/netconnect.pm:1064 standalone/drakconnect:404
-#: standalone/drakroam:52
-#, fuzzy, c-format
-msgid "Operating Mode"
-msgstr "Рэжым злучэння"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Ad-hoc"
-msgstr ""
-
-#: network/netconnect.pm:1065
-#, fuzzy, c-format
-msgid "Managed"
-msgstr "Мэнэджэр файлаў"
-
-#: network/netconnect.pm:1065
-#, fuzzy, c-format
-msgid "Master"
-msgstr "Прайгравальнік дыскаў"
-
-#: network/netconnect.pm:1065
-#, fuzzy, c-format
-msgid "Repeater"
-msgstr "Цыклічна"
-
-#: network/netconnect.pm:1065
-#, fuzzy, c-format
-msgid "Secondary"
-msgstr "Нядзеля"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Auto"
-msgstr "Аўтаматычна"
-
-#: network/netconnect.pm:1068 standalone/drakconnect:405
-#: standalone/drakroam:115
-#, c-format
-msgid "Network name (ESSID)"
-msgstr ""
-
-#: network/netconnect.pm:1069 standalone/drakroam:116
-#, c-format
-msgid "Encryption mode"
-msgstr ""
-
-#: network/netconnect.pm:1074
-#, c-format
-msgid "Allow access point roaming"
-msgstr ""
-
-#: network/netconnect.pm:1076 standalone/drakconnect:406
-#, fuzzy, c-format
-msgid "Network ID"
-msgstr "Сетка"
-
-#: network/netconnect.pm:1077 standalone/drakconnect:407
-#, c-format
-msgid "Operating frequency"
-msgstr ""
-
-#: network/netconnect.pm:1078 standalone/drakconnect:408
-#, c-format
-msgid "Sensitivity threshold"
-msgstr ""
-
-#: network/netconnect.pm:1079 standalone/drakconnect:409
-#, fuzzy, c-format
-msgid "Bitrate (in b/s)"
-msgstr "Бітрэйт: %d kb/s"
-
-#: network/netconnect.pm:1080 standalone/drakconnect:420
-#, c-format
-msgid "RTS/CTS"
-msgstr ""
-
-#: network/netconnect.pm:1081
-#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
-
-#: network/netconnect.pm:1088 standalone/drakconnect:421
-#, fuzzy, c-format
-msgid "Fragmentation"
-msgstr "Аўтэнтыфікацыя"
-
-#: network/netconnect.pm:1089 standalone/drakconnect:422
-#, c-format
-msgid "iwconfig command extra arguments"
-msgstr ""
-
-#: network/netconnect.pm:1090
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-
-#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1097 standalone/drakconnect:423
-#, c-format
-msgid "iwspy command extra arguments"
-msgstr ""
-
-#: network/netconnect.pm:1098
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-
-#: network/netconnect.pm:1107 standalone/drakconnect:424
-#, c-format
-msgid "iwpriv command extra arguments"
-msgstr ""
-
-#: network/netconnect.pm:1108
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-
-#: network/netconnect.pm:1123
-#, c-format
-msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
-msgstr ""
-
-#: network/netconnect.pm:1127
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-
-#: network/netconnect.pm:1170
-#, c-format
-msgid "DVB configuration"
-msgstr ""
-
-#: network/netconnect.pm:1171
-#, c-format
-msgid "DVB Adapter"
-msgstr ""
-
-#: network/netconnect.pm:1188
-#, c-format
-msgid "DVB adapter settings"
-msgstr ""
-
-#: network/netconnect.pm:1191
-#, c-format
-msgid "Adapter card"
-msgstr ""
-
-#: network/netconnect.pm:1192
-#, c-format
-msgid "Net demux"
-msgstr ""
-
-#: network/netconnect.pm:1193
-#, c-format
-msgid "PID"
-msgstr "PID"
-
-#: network/netconnect.pm:1221
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Увядзіце імя сваёй машыны (host).\n"
-"Імя вашай машыны павінна быць зададзена поўнасцю,\n"
-"напрыклад ‟mybox.mylab.myco.com”.\n"
-"Вы можаце таксама ўвесці IP адрас шлюзу, калі ён у вас ёсць."
-
-#: network/netconnect.pm:1226
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr ""
-
-#: network/netconnect.pm:1228 standalone/drakconnect:991
-#, fuzzy, c-format
-msgid "Host name (optional)"
-msgstr "Імя машыны"
-
-#: network/netconnect.pm:1228 standalone/drakhosts:197
-#, c-format
-msgid "Host name"
-msgstr "Імя машыны"
-
-#: network/netconnect.pm:1230
-#, fuzzy, c-format
-msgid "DNS server 1"
-msgstr "NIS сэервер:"
-
-#: network/netconnect.pm:1231
-#, fuzzy, c-format
-msgid "DNS server 2"
-msgstr "NIS сэервер:"
-
-#: network/netconnect.pm:1232
-#, fuzzy, c-format
-msgid "DNS server 3"
-msgstr "NIS сэервер:"
-
-#: network/netconnect.pm:1233
-#, fuzzy, c-format
-msgid "Search domain"
-msgstr "Шукаць: "
-
-#: network/netconnect.pm:1234
-#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr ""
-
-#: network/netconnect.pm:1235
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: network/netconnect.pm:1237
-#, c-format
-msgid "Gateway device"
-msgstr "Прылада-шлюз"
-
-#: network/netconnect.pm:1246
-#, fuzzy, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "IP адрас павінен быць у фармаце 1.2.3.4"
-
-#: network/netconnect.pm:1251 standalone/drakconnect:685
-#, fuzzy, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "IP адрас павінен быць у фармаце 1.2.3.4"
-
-#: network/netconnect.pm:1264
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-
-#: network/netconnect.pm:1268
-#, fuzzy, c-format
-msgid "Zeroconf Host name"
-msgstr "Імя машыны"
-
-#: network/netconnect.pm:1271
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr ""
-
-#: network/netconnect.pm:1281
-#, fuzzy, c-format
-msgid "Do you want to allow users to start the connection?"
-msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
-
-#: network/netconnect.pm:1294
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
-
-#: network/netconnect.pm:1310
-#, fuzzy, c-format
-msgid "Automatically at boot"
-msgstr "Аўтаматычны"
-
-#: network/netconnect.pm:1312
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr ""
-
-#: network/netconnect.pm:1314
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr ""
-
-#: network/netconnect.pm:1323
-#, fuzzy, c-format
-msgid "How do you want to dial this connection?"
-msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
-
-#: network/netconnect.pm:1336
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Ці жадаеце зараз паспрабаваць далучыцца да Інтэрнэту?"
-
-#: network/netconnect.pm:1344 standalone/drakconnect:1023
-#, c-format
-msgid "Testing your connection..."
-msgstr ""
-
-#: network/netconnect.pm:1369
-#, fuzzy, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Далучэнне да Інтэрнэту"
-
-#: network/netconnect.pm:1370
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr ""
-
-#: network/netconnect.pm:1371
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-
-#: network/netconnect.pm:1386
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-
-#: network/netconnect.pm:1389
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-
-#: network/netconnect.pm:1390
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-
-#: network/netconnect.pm:1402
-#, c-format
-msgid "(detected on port %s)"
-msgstr ""
-
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected %s)"
-msgstr ""
-
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected)"
-msgstr ""
-
-#: network/netconnect.pm:1405
-#, c-format
-msgid "Network Configuration"
-msgstr "Канфігурацыя сеткі"
-
-#: network/netconnect.pm:1406
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-
-#: network/netconnect.pm:1409
-#, fuzzy, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr "Зьмяненьні не былі захаваныя. Ці жадаеце працягнуць?"
-
-#: network/netconnect.pm:1410
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-
-#: network/netconnect.pm:1411
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-
-#: network/netconnect.pm:1412
-#, fuzzy, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr "Якую канфігурацыю Xorg вы жадаеце атрымаць?"
-
-#: network/netconnect.pm:1413
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: network/netconnect.pm:1414
-#, fuzzy, c-format
-msgid "Internet connection"
-msgstr "Сумеснае Інтэрнэт-злучэнне"
-
-#: network/netconnect.pm:1428
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-
-#: network/network.pm:411
-#, c-format
-msgid "Proxies configuration"
-msgstr "Настройка proxy кэшуючых сэервераў"
-
-#: network/network.pm:412
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-
-#: network/network.pm:413
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: network/network.pm:414
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: network/network.pm:415
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: network/network.pm:416
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: network/network.pm:420
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Proxy павінен быць http://..."
-
-#: network/network.pm:421
-#, c-format
-msgid "Proxy should be https?://..."
-msgstr ""
-
-#: network/network.pm:422
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr ""
-
-#: network/shorewall.pm:55
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-
-#: network/thirdparty.pm:232
-#, c-format
-msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
-msgstr ""
-
-#: network/thirdparty.pm:241
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-
-#: network/thirdparty.pm:321
-#, fuzzy, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "Усталяванне пакету %s"
-
-#: network/thirdparty.pm:329
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr ""
-
-#: network/thirdparty.pm:330
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-
-#: network/thirdparty.pm:332
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-
-#: network/thirdparty.pm:372
-#, fuzzy, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "У вашай сістэме няма ніводнага сеткавага адаптара!"
-
-#: network/thirdparty.pm:374
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr ""
-
-#: network/thirdparty.pm:384
-#, fuzzy, c-format
-msgid "Insert floppy"
-msgstr "Усталёўка"
-
-#: network/thirdparty.pm:385
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-
-#: network/thirdparty.pm:395
-#, fuzzy, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Куды вы жадаеце манціраваць прыладу %s?"
-
-#: network/thirdparty.pm:405
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-
-#: network/thirdparty.pm:409 network/thirdparty.pm:411
-#, fuzzy, c-format
-msgid "Use a floppy"
-msgstr "Захаванне на дыскету"
-
-#: network/thirdparty.pm:409
-#, fuzzy, c-format
-msgid "Use my Windows partition"
-msgstr "Вылічэнне межаў файлавай сістэмы Windows"
-
-#: network/thirdparty.pm:419
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr ""
-
-#: network/thirdparty.pm:424 standalone/drakautoinst:250
-#: standalone/drakvpn:888 standalone/scannerdrake:422
-#, c-format
-msgid "Congratulations!"
-msgstr "Прыміце віншаванні!"
-
-#: network/thirdparty.pm:424
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr ""
-
-#: network/thirdparty.pm:493
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr ""
-
-#: network/thirdparty.pm:498
-#, fuzzy, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "Канфігурацыя сыстэмы друку (прынтэры, заданьні, клясы, ...)"
-
-#: network/wireless.pm:8
-#, c-format
-msgid "Open WEP"
-msgstr ""
-
-#: network/wireless.pm:9
-#, c-format
-msgid "Restricted WEP"
-msgstr ""
-
-#: network/wireless.pm:10
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr ""
-
-#: partition_table.pm:391
+#: partition_table.pm:390
#, c-format
msgid "mount failed: "
msgstr "памылка манціравання: "
-#: partition_table.pm:496
+#: partition_table.pm:500
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Пашыраны раздзел не падтрымліваецца гэтай платформай"
-#: partition_table.pm:514
+#: partition_table.pm:518
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
@@ -10324,22 +4724,27 @@ msgstr ""
"Адзіны выхад у тым, каб перамясціць першасныя раздзелы так, каб дзірка ішла\n"
"адразу за пашыраным (extended) раздзелам"
-#: partition_table.pm:605
+#: partition_table.pm:597
+#, c-format
+msgid "Error reading file %s"
+msgstr "Памылка чытання файлу %s"
+
+#: partition_table.pm:604
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Аднаўленне з файла %s не атрымалася: %s"
-#: partition_table.pm:607
+#: partition_table.pm:606
#, c-format
msgid "Bad backup file"
msgstr "Дрэнны файл рэзервовай копіі"
-#: partition_table.pm:627
+#: partition_table.pm:626
#, c-format
msgid "Error writing to file %s"
msgstr "Памылка запісу ў файл %s"
-#: partition_table/raw.pm:253
+#: partition_table/raw.pm:264
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
@@ -10348,3032 +4753,47 @@ msgid ""
"data."
msgstr ""
-#: pkgs.pm:21
-#, c-format
-msgid "must have"
-msgstr "павінны мець"
-
-#: pkgs.pm:22
-#, c-format
-msgid "important"
-msgstr "важна"
-
-#: pkgs.pm:23
-#, c-format
-msgid "very nice"
-msgstr "вельмі добра"
-
-#: pkgs.pm:24
-#, c-format
-msgid "nice"
-msgstr "добра"
-
-#: pkgs.pm:25
-#, c-format
-msgid "maybe"
-msgstr "можа быць"
-
-#: pkgs.pm:474
-#, fuzzy, c-format
-msgid "Downloading file %s..."
-msgstr "Вызначэнне прыладаў..."
-
-#: printer/cups.pm:105
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(модуль %s)"
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on this machine)"
-msgstr ""
-
-#: printer/cups.pm:117 standalone/printerdrake:200
-#, fuzzy, c-format
-msgid "Configured on other machines"
-msgstr "Настроіць панэль"
-
-#: printer/cups.pm:119
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Аддалены сэервер CUPS"
-
-#: printer/cups.pm:119 printer/printerdrake.pm:4909
-#: printer/printerdrake.pm:4919 printer/printerdrake.pm:5078
-#: printer/printerdrake.pm:5089 printer/printerdrake.pm:5303
-#, c-format
-msgid " (Default)"
-msgstr " (Па дамаўленню)"
-
-#: printer/data.pm:67
-#, c-format
-msgid "PDQ - Print, Do not Queue"
-msgstr ""
-
-#: printer/data.pm:68
-#, c-format
-msgid "PDQ"
-msgstr ""
-
-#: printer/data.pm:80
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: printer/data.pm:81
-#, c-format
-msgid "LPD"
-msgstr ""
-
-#: printer/data.pm:102
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: printer/data.pm:103
-#, c-format
-msgid "LPRng"
-msgstr ""
-
-#: printer/data.pm:128
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: printer/data.pm:158
-#, c-format
-msgid "CUPS - Common Unix Printing System (remote server)"
-msgstr ""
-
-#: printer/data.pm:159
-#, fuzzy, c-format
-msgid "Remote CUPS"
-msgstr "Аддалены сэервер CUPS"
-
-#: printer/detect.pm:168 printer/detect.pm:263 printer/detect.pm:498
-#: printer/detect.pm:571 printer/main.pm:330 printer/main.pm:692
-#: printer/main.pm:1815 printer/printerdrake.pm:960
-#: printer/printerdrake.pm:1120 printer/printerdrake.pm:2448
-#: printer/printerdrake.pm:4004
-#, fuzzy, c-format
-msgid "Unknown model"
-msgstr "Невядомая гукавая карта"
-
-#: printer/main.pm:24
-#, c-format
-msgid "Local printer"
-msgstr "Лакальны прынтэр"
-
-#: printer/main.pm:25
-#, c-format
-msgid "Remote printer"
-msgstr "Аддалены прынтэр"
-
-#: printer/main.pm:26
-#, fuzzy, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Аддалены сэервер CUPS"
-
-#: printer/main.pm:27 printer/printerdrake.pm:1360
-#: printer/printerdrake.pm:1899
-#, fuzzy, c-format
-msgid "Printer on remote lpd server"
-msgstr "Сервер друку"
-
-#: printer/main.pm:28
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Сеткавы прынтэр (TCP/Socket)"
-
-#: printer/main.pm:29
-#, fuzzy, c-format
-msgid "Printer on SMB/Windows server"
-msgstr "Сервер друку"
-
-#: printer/main.pm:30
-#, fuzzy, c-format
-msgid "Printer on NetWare server"
-msgstr "Сервер друку"
-
-#: printer/main.pm:31 printer/printerdrake.pm:1903
-#, fuzzy, c-format
-msgid "Enter a printer device URI"
-msgstr "URI прынтэру"
-
-#: printer/main.pm:32
-#, c-format
-msgid "Pipe job into a command"
-msgstr ""
-
-#: printer/main.pm:43
-#, c-format
-msgid "recommended"
-msgstr "пажадана"
-
-#: printer/main.pm:355 standalone/printerdrake:199
-#, fuzzy, c-format
-msgid "Configured on this machine"
-msgstr "Настроіць панэль"
-
-#: printer/main.pm:361 printer/printerdrake.pm:1445
-#, c-format
-msgid " on parallel port #%s"
-msgstr ""
-
-#: printer/main.pm:364 printer/printerdrake.pm:1448
-#, fuzzy, c-format
-msgid ", USB printer #%s"
-msgstr "пашырэнне OSS %s"
-
-#: printer/main.pm:366
-#, fuzzy, c-format
-msgid ", USB printer"
-msgstr "Імя друкаркі"
-
-#: printer/main.pm:370
-#, fuzzy, c-format
-msgid ", HP printer on a parallel port"
-msgstr "Друкаркі ў выглядзе значак"
-
-#: printer/main.pm:372
-#, fuzzy, c-format
-msgid ", HP printer on USB"
-msgstr "Друкаркі ў выглядзе значак"
-
-#: printer/main.pm:374
-#, fuzzy, c-format
-msgid ", HP printer on HP JetDirect"
-msgstr "Друкаркі ў выглядзе значак"
-
-#: printer/main.pm:376
-#, fuzzy, c-format
-msgid ", HP printer"
-msgstr "Прынтэр"
-
-#: printer/main.pm:382
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ""
-
-#: printer/main.pm:385
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ""
-
-#: printer/main.pm:387
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: printer/main.pm:389
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: printer/main.pm:391
-#, c-format
-msgid ", multi-function device"
-msgstr ""
-
-#: printer/main.pm:395
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Памылка запісу ў файл %s"
-
-#: printer/main.pm:398
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: printer/main.pm:401
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: printer/main.pm:406
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: printer/main.pm:411
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: printer/main.pm:414
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: printer/main.pm:429
-#, c-format
-msgid "Parallel port #%s"
-msgstr ""
-
-#: printer/main.pm:432 printer/printerdrake.pm:1466
-#: printer/printerdrake.pm:1493 printer/printerdrake.pm:1508
-#, fuzzy, c-format
-msgid "USB printer #%s"
-msgstr "пашырэнне OSS %s"
-
-#: printer/main.pm:434
-#, fuzzy, c-format
-msgid "USB printer"
-msgstr "USB прылады"
-
-#: printer/main.pm:438
-#, c-format
-msgid "HP printer on a parallel port"
-msgstr ""
-
-#: printer/main.pm:440
-#, fuzzy, c-format
-msgid "HP printer on USB"
-msgstr "Друкаркі ў выглядзе значак"
-
-#: printer/main.pm:442
-#, fuzzy, c-format
-msgid "HP printer on HP JetDirect"
-msgstr "Друкаркі ў выглядзе значак"
-
-#: printer/main.pm:444
-#, fuzzy, c-format
-msgid "HP printer"
-msgstr "Прынтэр"
-
-#: printer/main.pm:450
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr ""
-
-#: printer/main.pm:453
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr ""
-
-#: printer/main.pm:455
-#, c-format
-msgid "Multi-function device on USB"
-msgstr ""
-
-#: printer/main.pm:457
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr ""
-
-#: printer/main.pm:459
-#, c-format
-msgid "Multi-function device"
-msgstr ""
-
-#: printer/main.pm:463
-#, fuzzy, c-format
-msgid "Prints into %s"
-msgstr "Заданьні друку"
-
-#: printer/main.pm:466
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: printer/main.pm:469
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: printer/main.pm:474
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: printer/main.pm:479
-#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: printer/main.pm:482
-#, fuzzy, c-format
-msgid "Uses command %s"
-msgstr "Порт"
-
-#: printer/main.pm:484
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
-
-#: printer/main.pm:689 printer/printerdrake.pm:1047
-#: printer/printerdrake.pm:3142
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: printer/main.pm:1309 printer/printerdrake.pm:211
-#: printer/printerdrake.pm:223
-#, fuzzy, c-format
-msgid "Local network(s)"
-msgstr "Прагляд лякальнай сеткі"
-
-#: printer/main.pm:1311 printer/printerdrake.pm:227
-#, fuzzy, c-format
-msgid "Interface \"%s\""
-msgstr "Сеткавыя інтэрфэйсы"
-
-#: printer/main.pm:1313
-#, fuzzy, c-format
-msgid "Network %s"
-msgstr "Сетка"
-
-#: printer/main.pm:1315
-#, fuzzy, c-format
-msgid "Host %s"
-msgstr "Хост:"
-
-#: printer/main.pm:1344
-#, c-format
-msgid "%s (Port %s)"
-msgstr ""
-
-#: printer/main.pm:1945 printer/main.pm:2100
-#, c-format
-msgid "user-supplied"
-msgstr ""
-
-#: printer/main.pm:1949 printer/main.pm:2104
-#, c-format
-msgid "NEW"
-msgstr ""
-
-#: printer/printerdrake.pm:24
-#, c-format
-msgid ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"decompressing the self-extracting '.exe' file with the 'unzip' utility and "
-"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
-"printer' directory. There it will be found by the automatic uploader script "
-"and uploaded whenever the printer is connected and turned on.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:67
-#, fuzzy, c-format
-msgid "CUPS printer configuration"
-msgstr "Настройка прылд OSS"
-
-#: printer/printerdrake.pm:68
-#, c-format
-msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessible by remote machines and by which remote machines."
-msgstr ""
-
-#: printer/printerdrake.pm:69
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:72 printer/printerdrake.pm:506
-#: printer/printerdrake.pm:4542
-#, c-format
-msgid "Remote CUPS server and no local CUPS daemon"
-msgstr ""
-
-#: printer/printerdrake.pm:75
-#, c-format
-msgid "On"
-msgstr "Укл."
-
-#: printer/printerdrake.pm:77 printer/printerdrake.pm:498
-#: printer/printerdrake.pm:525
-#, c-format
-msgid "Off"
-msgstr "Выкл"
-
-#: printer/printerdrake.pm:78 printer/printerdrake.pm:507
-#, c-format
-msgid ""
-"In this mode the local CUPS daemon will be stopped and all printing requests "
-"go directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:84
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr ""
-
-#: printer/printerdrake.pm:89
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr ""
-
-#: printer/printerdrake.pm:94
-#, fuzzy, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Адлучэнне ад сеткі"
-
-#: printer/printerdrake.pm:96
-#, fuzzy, c-format
-msgid "Custom configuration"
-msgstr "Канфігурацыя"
-
-#: printer/printerdrake.pm:101 standalone/scannerdrake:610
-#: standalone/scannerdrake:627
-#, fuzzy, c-format
-msgid "No remote machines"
-msgstr "Выкарыстаць выдалены хост"
-
-#: printer/printerdrake.pm:112
-#, fuzzy, c-format
-msgid "Additional CUPS servers: "
-msgstr "Дадатковае праграмаванне:"
-
-#: printer/printerdrake.pm:119
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-
-#: printer/printerdrake.pm:127
-#, c-format
-msgid "Japanese text printing mode"
-msgstr ""
-
-#: printer/printerdrake.pm:128
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in Japanese language. Only "
-"use this function if you really want to print text in Japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print Japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-
-#: printer/printerdrake.pm:135
-#, fuzzy, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Настройка далучэння да Інтэрнэту"
-
-#: printer/printerdrake.pm:137
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-
-#: printer/printerdrake.pm:161 printer/printerdrake.pm:236
-#, fuzzy, c-format
-msgid "Sharing of local printers"
-msgstr "Лакальны прынтэр"
-
-#: printer/printerdrake.pm:162
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-
-#: printer/printerdrake.pm:173
-#, c-format
-msgid "Add host/network"
-msgstr ""
-
-#: printer/printerdrake.pm:179
-#, fuzzy, c-format
-msgid "Edit selected host/network"
-msgstr "Рэдагаваць вылучаны радок"
-
-#: printer/printerdrake.pm:188
-#, c-format
-msgid "Remove selected host/network"
-msgstr ""
-
-#: printer/printerdrake.pm:219 printer/printerdrake.pm:229
-#: printer/printerdrake.pm:241 printer/printerdrake.pm:248
-#: printer/printerdrake.pm:279 printer/printerdrake.pm:297
-#, c-format
-msgid "IP address of host/network:"
-msgstr ""
-
-#: printer/printerdrake.pm:237
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr ""
-
-#: printer/printerdrake.pm:244
-#, c-format
-msgid "Host/network IP address missing."
-msgstr ""
-
-#: printer/printerdrake.pm:252
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:253 printer/printerdrake.pm:429
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr ""
-
-#: printer/printerdrake.pm:277
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:346 printer/printerdrake.pm:416
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr ""
-
-#: printer/printerdrake.pm:347
-#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
-
-#: printer/printerdrake.pm:358
-#, fuzzy, c-format
-msgid "Add server"
-msgstr "Дадаць карыстальніка"
-
-#: printer/printerdrake.pm:364
-#, fuzzy, c-format
-msgid "Edit selected server"
-msgstr "Рэдагаваць вылучаны радок"
-
-#: printer/printerdrake.pm:373
-#, fuzzy, c-format
-msgid "Remove selected server"
-msgstr "/Выдаліць/Выбранае"
-
-#: printer/printerdrake.pm:417
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-
-#: printer/printerdrake.pm:418
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr ""
-
-#: printer/printerdrake.pm:422
-#, c-format
-msgid "Server IP missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:428
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:440 printer/printerdrake.pm:2133
-#, c-format
-msgid "The port number should be an integer!"
-msgstr ""
-
-#: printer/printerdrake.pm:451
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:462 printer/printerdrake.pm:2160
-#: standalone/drakups:249 standalone/harddrake2:52
-#, c-format
-msgid "Port"
-msgstr "Порт"
-
-#: printer/printerdrake.pm:495 printer/printerdrake.pm:511
-#: printer/printerdrake.pm:526 printer/printerdrake.pm:530
-#: printer/printerdrake.pm:536
-#, fuzzy, c-format
-msgid "On, Name or IP of remote server:"
-msgstr "Сервер друку"
-
-#: printer/printerdrake.pm:514 printer/printerdrake.pm:4551
-#: printer/printerdrake.pm:4617
-#, c-format
-msgid "CUPS server name or IP address missing."
-msgstr ""
-
-#: printer/printerdrake.pm:566 printer/printerdrake.pm:586
-#: printer/printerdrake.pm:811 printer/printerdrake.pm:880
-#: printer/printerdrake.pm:901 printer/printerdrake.pm:927
-#: printer/printerdrake.pm:1023 printer/printerdrake.pm:1065
-#: printer/printerdrake.pm:1075 printer/printerdrake.pm:1110
-#: printer/printerdrake.pm:2220 printer/printerdrake.pm:2490
-#: printer/printerdrake.pm:2524 printer/printerdrake.pm:2575
-#: printer/printerdrake.pm:2582 printer/printerdrake.pm:2621
-#: printer/printerdrake.pm:2663 printer/printerdrake.pm:2700
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2984
-#: printer/printerdrake.pm:2989 printer/printerdrake.pm:3137
-#: printer/printerdrake.pm:3248 printer/printerdrake.pm:3862
-#: printer/printerdrake.pm:3929 printer/printerdrake.pm:3978
-#: printer/printerdrake.pm:3981 printer/printerdrake.pm:4091
-#: printer/printerdrake.pm:4149 printer/printerdrake.pm:4221
-#: printer/printerdrake.pm:4242 printer/printerdrake.pm:4252
-#: printer/printerdrake.pm:4342 printer/printerdrake.pm:4437
-#: printer/printerdrake.pm:4443 printer/printerdrake.pm:4471
-#: printer/printerdrake.pm:4578 printer/printerdrake.pm:4687
-#: printer/printerdrake.pm:4707 printer/printerdrake.pm:4716
-#: printer/printerdrake.pm:4731 printer/printerdrake.pm:4932
-#: printer/printerdrake.pm:5407 printer/printerdrake.pm:5490
-#: standalone/printerdrake:75 standalone/printerdrake:590
-#, fuzzy, c-format
-msgid "Printerdrake"
-msgstr "Прынтэр"
-
-#: printer/printerdrake.pm:567 printer/printerdrake.pm:4150
-#: printer/printerdrake.pm:4688
-#, c-format
-msgid "Reading printer data..."
-msgstr ""
-
-#: printer/printerdrake.pm:587
-#, c-format
-msgid "Restarting CUPS..."
-msgstr ""
-
-#: printer/printerdrake.pm:614
-#, c-format
-msgid ""
-"Allow pop-up windows, printer setup and package installation may be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:616
-#, c-format
-msgid ""
-"No pop-up windows, printer setup and package installation cannot be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:622
-#, fuzzy, c-format
-msgid "Printer auto administration"
-msgstr "Опцыі прынтэру"
-
-#: printer/printerdrake.pm:623
-#, c-format
-msgid ""
-"Here you can configure printer administration tasks which should be done "
-"automatically."
-msgstr ""
-
-#: printer/printerdrake.pm:626
-#, fuzzy, c-format
-msgid "Do automatic configuration of new printers"
-msgstr "Аўтаматычнае вызначэнне"
-
-#: printer/printerdrake.pm:627 printer/printerdrake.pm:641
-#, c-format
-msgid "when a USB printer is connected and turned on"
-msgstr ""
-
-#: printer/printerdrake.pm:630
-#, fuzzy, c-format
-msgid "when Printerdrake is started"
-msgstr "Памеры якога раздзела вы жадаеце змяніць?"
-
-#: printer/printerdrake.pm:634
-#, c-format
-msgid "Mode for automatic printer setup:"
-msgstr ""
-
-#: printer/printerdrake.pm:640
-#, fuzzy, c-format
-msgid "Re-enable disabled printers"
-msgstr "Даступныя праграмы"
-
-#: printer/printerdrake.pm:644
-#, fuzzy, c-format
-msgid "when the printing system is started"
-msgstr "Змяніць тып раздзелу"
-
-#: printer/printerdrake.pm:680
-#, fuzzy, c-format
-msgid "Communication error handling for the printer \"%s\""
-msgstr "Адлучэнне ад сеткі"
-
-#: printer/printerdrake.pm:682
-#, c-format
-msgid ""
-"Here you can configure how errors during the communication between your "
-"computer and the printer \"%s\" should be handled (for example if the "
-"printer is not turned on)."
-msgstr ""
-
-#: printer/printerdrake.pm:686
-#, c-format
-msgid "The number of retries should be an integer number of at least 1!"
-msgstr ""
-
-#: printer/printerdrake.pm:690
-#, fuzzy, c-format
-msgid "The delay between retries should be a positive integer number!"
-msgstr "Зрух мусіць быць станоўчым цэлым лікам!"
-
-#: printer/printerdrake.pm:701
-#, fuzzy, c-format
-msgid "Do not disable the printer"
-msgstr "Сервер друку"
-
-#: printer/printerdrake.pm:704
-#, c-format
-msgid "Retry infinitely often"
-msgstr ""
-
-#: printer/printerdrake.pm:707
-#, fuzzy, c-format
-msgid "Number of retries"
-msgstr "2 кнопкі"
-
-#: printer/printerdrake.pm:712
-#, c-format
-msgid "Delay between retries (in sec)"
-msgstr ""
-
-#: printer/printerdrake.pm:745 printer/printerdrake.pm:765
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Выбар тыпу злучэння прынтэру"
-
-#: printer/printerdrake.pm:746
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Як прынтар далучаны?"
-
-#: printer/printerdrake.pm:748
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-
-#: printer/printerdrake.pm:751 printer/printerdrake.pm:4934
-#, c-format
-msgid ""
-"\n"
-"WARNING: No local network connection active, remote printers can neither be "
-"detected nor tested!"
-msgstr ""
-
-#: printer/printerdrake.pm:758
-#, c-format
-msgid ""
-"Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"
-msgstr ""
-
-#: printer/printerdrake.pm:760
-#, c-format
-msgid "Modify timeout for network printer auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:766
-#, c-format
-msgid "Enter the timeout for network printer auto-detection (in msec) here. "
-msgstr ""
-
-#: printer/printerdrake.pm:768
-#, c-format
-msgid ""
-"The longer you choose the timeout, the more reliable the detections of "
-"network printers will be, but the scan can take longer then, especially if "
-"there are many machines with local firewalls in the network. "
-msgstr ""
-
-#: printer/printerdrake.pm:772
-#, fuzzy, c-format
-msgid "The timeout must be a positive integer number!"
-msgstr "Зрух мусіць быць станоўчым цэлым лікам!"
-
-#: printer/printerdrake.pm:811
-#, c-format
-msgid "Checking your system..."
-msgstr ""
-
-#: printer/printerdrake.pm:829
-#, fuzzy, c-format
-msgid "and one unknown printer"
-msgstr "Імя друкаркі"
-
-#: printer/printerdrake.pm:831
-#, c-format
-msgid "and %d unknown printers"
-msgstr ""
-
-#: printer/printerdrake.pm:835
-#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-
-#: printer/printerdrake.pm:837
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-
-#: printer/printerdrake.pm:838
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-
-#: printer/printerdrake.pm:842
-#, c-format
-msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
-
-#: printer/printerdrake.pm:843
-#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
-
-#: printer/printerdrake.pm:846
-#, c-format
-msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr ""
-
-#: printer/printerdrake.pm:849
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr ""
-
-#: printer/printerdrake.pm:862
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
-
-#: printer/printerdrake.pm:863
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr ""
-
-#: printer/printerdrake.pm:865
-#, fuzzy, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
-
-#: printer/printerdrake.pm:866
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr ""
-
-#: printer/printerdrake.pm:867
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
-
-#: printer/printerdrake.pm:884
-#, c-format
-msgid "Do not setup printer automatically now, and never do it again"
-msgstr ""
-
-#: printer/printerdrake.pm:928
-#, fuzzy, c-format
-msgid "Searching for new printers..."
-msgstr "Адшукаць файлы на дыску"
-
-#: printer/printerdrake.pm:976
-#, c-format
-msgid "Do not setup printer automatically again"
-msgstr ""
-
-#: printer/printerdrake.pm:983
-#, fuzzy, c-format
-msgid "New printers found"
-msgstr "Імя друкаркі"
-
-#: printer/printerdrake.pm:984
-#, fuzzy, c-format
-msgid "New printer found"
-msgstr "Імя друкаркі"
-
-#: printer/printerdrake.pm:986
-#, c-format
-msgid ""
-"The following new printers were found and Printerdrake can automatically set "
-"them up for you. If you do not want to have all of them set up, unselect the "
-"ones which should be skipped, or click \"Cancel\" to set up none of them.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:987
-#, c-format
-msgid ""
-"The following new printer was found and printerdrake can automatically set "
-"it up for you. If you do not want to have it set up, unselect it, or click "
-"\"Cancel\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:988
-#, c-format
-msgid ""
-"Note that for certain printer models additional packages need to be "
-"installed. So keep your installation media handy.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1024 printer/printerdrake.pm:1066
-#, fuzzy, c-format
-msgid "Configuring printer on %s..."
-msgstr "Настройка карт PCMCIA ..."
-
-#: printer/printerdrake.pm:1049
-#, c-format
-msgid "("
-msgstr "("
-
-#: printer/printerdrake.pm:1050
-#, c-format
-msgid " on "
-msgstr ""
-
-#: printer/printerdrake.pm:1051 standalone/scannerdrake:137
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: printer/printerdrake.pm:1056 printer/printerdrake.pm:3149
-#, fuzzy, c-format
-msgid "Printer model selection"
-msgstr "Опцыі прынтэру"
-
-#: printer/printerdrake.pm:1057 printer/printerdrake.pm:3150
-#, fuzzy, c-format
-msgid "Which printer model do you have?"
-msgstr "Які тып карты вы маеце?"
-
-#: printer/printerdrake.pm:1058
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-
-#: printer/printerdrake.pm:1061 printer/printerdrake.pm:3155
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: printer/printerdrake.pm:1076 printer/printerdrake.pm:4708
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Настройка карт PCMCIA ..."
-
-#: printer/printerdrake.pm:1111
-#, c-format
-msgid ""
-"Now you have turned off automatic printer setup.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1112
-#, c-format
-msgid ""
-"You can turn it back on again by choosing \"%s\" -> \"%s\" in Printerdrake's "
-"main menu. "
-msgstr ""
-
-#: printer/printerdrake.pm:1112 printer/printerdrake.pm:4984
-#, fuzzy, c-format
-msgid "Configure Auto Administration"
-msgstr "Сістэмнае адміністраваньне"
-
-#: printer/printerdrake.pm:1113
-#, c-format
-msgid ""
-"There you can also choose in which situation automatic printer setup is done "
-"(On Printerdrake startup, on printing system startup, when connecting a new "
-"USB printer)."
-msgstr ""
-
-#: printer/printerdrake.pm:1261 printer/printerdrake.pm:1273
-#: printer/printerdrake.pm:1380 printer/printerdrake.pm:2401
-#: printer/printerdrake.pm:2460 printer/printerdrake.pm:2556
-#: printer/printerdrake.pm:4951 printer/printerdrake.pm:5138
-#, fuzzy, c-format
-msgid "Add a new printer"
-msgstr "Дадаць новы пункт"
-
-#: printer/printerdrake.pm:1262
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: printer/printerdrake.pm:1275
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected. Also your network printer(s) and your Windows "
-"machines must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you do not "
-"need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1284
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1292
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you do not need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1301
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1352
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr ""
-
-#: printer/printerdrake.pm:1355
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr ""
-
-#: printer/printerdrake.pm:1358
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
-
-#: printer/printerdrake.pm:1361
-#, fuzzy, c-format
-msgid "No auto-detection"
-msgstr "Аўтаматычнае вызначэнне"
-
-#: printer/printerdrake.pm:1381
-#, c-format
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the %s Control Center."
-msgstr ""
-
-#: printer/printerdrake.pm:1417 printer/printerdrake.pm:1641
-#: printer/printerdrake.pm:1704 printer/printerdrake.pm:1796
-#: printer/printerdrake.pm:1934 printer/printerdrake.pm:2010
-#: printer/printerdrake.pm:2177 printer/printerdrake.pm:2268
-#: printer/printerdrake.pm:2277 printer/printerdrake.pm:2286
-#: printer/printerdrake.pm:2297 printer/printerdrake.pm:2496
-#: printer/printerdrake.pm:2633
-#, c-format
-msgid "Could not install the %s packages!"
-msgstr ""
-
-#: printer/printerdrake.pm:1419
-#, c-format
-msgid "Skipping Windows/SMB server auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:1425 printer/printerdrake.pm:1564
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, fuzzy, c-format
-msgid "Printer auto-detection"
-msgstr "Опцыі прынтэру"
-
-#: printer/printerdrake.pm:1425
-#, c-format
-msgid "Detecting devices..."
-msgstr "Вызначэнне прыладаў..."
-
-#: printer/printerdrake.pm:1451
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ""
-
-#: printer/printerdrake.pm:1454
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ""
-
-#: printer/printerdrake.pm:1458
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "Выдаліць вылучаны радок"
-
-#: printer/printerdrake.pm:1463 printer/printerdrake.pm:1490
-#: printer/printerdrake.pm:1505
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr ""
-
-#: printer/printerdrake.pm:1469
-#, fuzzy, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Сеткавы прынтэр (TCP/Socket)"
-
-#: printer/printerdrake.pm:1472
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ""
-
-#: printer/printerdrake.pm:1550
-#, fuzzy, c-format
-msgid "Local Printer"
-msgstr "Лакальны прынтэр"
-
-#: printer/printerdrake.pm:1551
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: printer/printerdrake.pm:1555
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr ""
-
-#: printer/printerdrake.pm:1565
-#, fuzzy, c-format
-msgid "No printer found!"
-msgstr "Імя друкаркі"
-
-#: printer/printerdrake.pm:1573
-#, fuzzy, c-format
-msgid "Local Printers"
-msgstr "Лакальны прынтэр"
-
-#: printer/printerdrake.pm:1574
-#, fuzzy, c-format
-msgid "Available printers"
-msgstr "Даступныя праграмы"
-
-#: printer/printerdrake.pm:1578 printer/printerdrake.pm:1587
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr ""
-
-#: printer/printerdrake.pm:1580
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1581
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1582 printer/printerdrake.pm:1591
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr ""
-
-#: printer/printerdrake.pm:1584
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1585
-#, c-format
-msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1589
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: printer/printerdrake.pm:1590
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr ""
-
-#: printer/printerdrake.pm:1593
-#, c-format
-msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
-msgstr ""
-
-#: printer/printerdrake.pm:1594
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr ""
-
-#: printer/printerdrake.pm:1596
-#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1597
-#, fuzzy, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Калі ласка, пазначце послядоўны порт, да якога падключана вашая мыш."
-
-#: printer/printerdrake.pm:1599
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: printer/printerdrake.pm:1603
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr ""
-
-#: printer/printerdrake.pm:1643 printer/printerdrake.pm:1706
-#: printer/printerdrake.pm:1798 printer/printerdrake.pm:1936
-#: printer/printerdrake.pm:2012 printer/printerdrake.pm:2179
-#: printer/printerdrake.pm:2270 printer/printerdrake.pm:2279
-#: printer/printerdrake.pm:2288 printer/printerdrake.pm:2299
-#, fuzzy, c-format
-msgid "Aborting"
-msgstr "Адмяніць"
-
-#: printer/printerdrake.pm:1679
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Опцыі аддаленага прынтэру lpd"
-
-#: printer/printerdrake.pm:1680
-#, c-format
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-
-#: printer/printerdrake.pm:1681
-#, fuzzy, c-format
-msgid "Remote host name"
-msgstr "Выкарыстаць выдалены хост"
-
-#: printer/printerdrake.pm:1682
-#, fuzzy, c-format
-msgid "Remote printer name"
-msgstr "Аддалены прынтэр"
-
-#: printer/printerdrake.pm:1685
-#, c-format
-msgid "Remote host name missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:1689
-#, fuzzy, c-format
-msgid "Remote printer name missing!"
-msgstr "Аддалены прынтэр"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318 standalone/drakTermServ:475
-#: standalone/drakTermServ:807 standalone/drakTermServ:823
-#: standalone/drakTermServ:1653 standalone/drakTermServ:1662
-#: standalone/drakTermServ:1676 standalone/drakbackup:512
-#: standalone/drakbackup:618 standalone/drakbackup:653
-#: standalone/drakbackup:754 standalone/draknfs:203
-#: standalone/draksambashare:627 standalone/draksambashare:794
-#: standalone/harddrake2:275
-#, c-format
-msgid "Information"
-msgstr "Інфармацыя"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318
-#, c-format
-msgid "Detected model: %s %s"
-msgstr ""
-
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Scanning network..."
-msgstr ""
-
-#: printer/printerdrake.pm:1814 printer/printerdrake.pm:1835
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ""
-
-#: printer/printerdrake.pm:1817 printer/printerdrake.pm:1838
-#, fuzzy, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Сервер друку"
-
-#: printer/printerdrake.pm:1859
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Опцыі прынтэру SMB (Windows 9x/NT)"
-
-#: printer/printerdrake.pm:1860
-#, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-
-#: printer/printerdrake.pm:1861
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-
-#: printer/printerdrake.pm:1863
-#, c-format
-msgid "SMB server host"
-msgstr "Імя сэерверу SMB"
-
-#: printer/printerdrake.pm:1864
-#, c-format
-msgid "SMB server IP"
-msgstr "IP сэервера SMB"
-
-#: printer/printerdrake.pm:1865 standalone/draksambashare:67
-#, c-format
-msgid "Share name"
-msgstr "Імя для размеркаванага рэсурсу"
-
-#: printer/printerdrake.pm:1868
-#, c-format
-msgid "Workgroup"
-msgstr "Працоўная група"
-
-#: printer/printerdrake.pm:1870
-#, fuzzy, c-format
-msgid "Auto-detected"
-msgstr "Аўтаматычны"
-
-#: printer/printerdrake.pm:1880
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: printer/printerdrake.pm:1884
-#, c-format
-msgid "Samba share name missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:1890
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: printer/printerdrake.pm:1891
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1901
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1904
-#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: printer/printerdrake.pm:1983
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "Опцыі прынтэру NetWare"
-
-#: printer/printerdrake.pm:1984
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-
-#: printer/printerdrake.pm:1985
-#, c-format
-msgid "Printer Server"
-msgstr "Сервер друку"
-
-#: printer/printerdrake.pm:1986
-#, c-format
-msgid "Print Queue Name"
-msgstr "Імя чаргі друку"
-
-#: printer/printerdrake.pm:1991
-#, c-format
-msgid "NCP server name missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:1995
-#, c-format
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:2076 printer/printerdrake.pm:2097
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ""
-
-#: printer/printerdrake.pm:2079 printer/printerdrake.pm:2100
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr ""
-
-#: printer/printerdrake.pm:2122
-#, fuzzy, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "Опцыі прынтэру NetWare"
-
-#: printer/printerdrake.pm:2124
-#, c-format
-msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
-msgstr ""
-
-#: printer/printerdrake.pm:2125
-#, c-format
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
-msgstr ""
-
-#: printer/printerdrake.pm:2129
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:2158
-#, c-format
-msgid "Printer host name or IP"
-msgstr ""
-
-#: printer/printerdrake.pm:2221
-#, fuzzy, c-format
-msgid "Refreshing Device URI list..."
-msgstr "Аднавіць сьпіс"
-
-#: printer/printerdrake.pm:2224 printer/printerdrake.pm:2226
-#, c-format
-msgid "Printer Device URI"
-msgstr "URI прынтэру"
-
-#: printer/printerdrake.pm:2225
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: printer/printerdrake.pm:2249
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: printer/printerdrake.pm:2354
-#, c-format
-msgid "Pipe into command"
-msgstr ""
-
-#: printer/printerdrake.pm:2355
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-
-#: printer/printerdrake.pm:2356
-#, c-format
-msgid "Command line"
-msgstr "Загадны радок"
-
-#: printer/printerdrake.pm:2360
-#, c-format
-msgid "A command line must be entered!"
-msgstr ""
-
-#: printer/printerdrake.pm:2402
-#, c-format
-msgid "Your printer %s is currently connected %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2404 printer/printerdrake.pm:2411
-#, fuzzy, c-format
-msgid "to a parallel port"
-msgstr "Друкаркі ў выглядзе значак"
-
-#: printer/printerdrake.pm:2405 printer/printerdrake.pm:2412
-#, c-format
-msgid "to the USB"
-msgstr ""
-
-#: printer/printerdrake.pm:2406 printer/printerdrake.pm:2413
-#, fuzzy, c-format
-msgid "via the network"
-msgstr "Далучэнне да сеткі"
-
-#: printer/printerdrake.pm:2407
-#, c-format
-msgid "This type of connection is currently not fully supported by HPLIP."
-msgstr ""
-
-#: printer/printerdrake.pm:2409
-#, c-format
-msgid "You get full HPLIP support for your device if you connect it "
-msgstr ""
-
-#: printer/printerdrake.pm:2415
-#, c-format
-msgid ""
-"You can now set up your device with HPLIP anyway (works in many cases), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "set it up without HPLIP (print-only), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, fuzzy, c-format
-msgid "or"
-msgstr "Гадзіна"
-
-#: printer/printerdrake.pm:2417
-#, c-format
-msgid "cancel the setup (for example to reconnect your device)."
-msgstr ""
-
-#: printer/printerdrake.pm:2419
-#, c-format
-msgid ""
-"You can always revise your choice by clicking your printer's entry in the "
-"main window, "
-msgstr ""
-
-#: printer/printerdrake.pm:2420
-#, c-format
-msgid "clicking the \"%s\" button, "
-msgstr ""
-
-#. -PO: "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: printer/printerdrake.pm:2420 standalone/drakperm:124 standalone/drakups:300
-#: standalone/drakups:360 standalone/drakups:380 standalone/drakvpn:319
-#: standalone/drakvpn:680 standalone/printerdrake:245
-#, c-format
-msgid "Edit"
-msgstr "Рэдагаваць"
-
-#: printer/printerdrake.pm:2421
-#, c-format
-msgid "and choosing \"%s\"."
-msgstr ""
-
-#: printer/printerdrake.pm:2421 printer/printerdrake.pm:5334
-#: printer/printerdrake.pm:5394
-#, fuzzy, c-format
-msgid "Printer connection type"
-msgstr "Выбар тыпу злучэння прынтэру"
-
-#: printer/printerdrake.pm:2423 standalone/logdrake:408
-#, fuzzy, c-format
-msgid "What do you want to do?"
-msgstr "Які пратакол вы жадаеце выкарыстоўваць?"
-
-#: printer/printerdrake.pm:2424 printer/printerdrake.pm:2428
-#, c-format
-msgid "Set up with HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2425 printer/printerdrake.pm:2427
-#: printer/printerdrake.pm:2430
-#, c-format
-msgid "Set up without HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2461
-#, c-format
-msgid ""
-"On many HP printers there are special functions available, maintenance (ink "
-"level checking, nozzle cleaning. head alignment, ...) on all not too old "
-"inkjets, scanning on multi-function devices, and memory card access on "
-"printers with card readers. "
-msgstr ""
-
-#: printer/printerdrake.pm:2463
-#, c-format
-msgid ""
-"To access these extra functions on HP printers they must be set up with "
-"HPLIP (HP Linux Imaging and Printing). "
-msgstr ""
-
-#: printer/printerdrake.pm:2465
-#, c-format
-msgid "Do you want to use HPLIP (choose \"No\" for non-HP printers)? "
-msgstr ""
-
-#: printer/printerdrake.pm:2491
-#, c-format
-msgid "Installing %s package..."
-msgstr "Усталяванне пакету %s..."
-
-#: printer/printerdrake.pm:2491 printer/printerdrake.pm:2497
-#: printer/printerdrake.pm:2525
-#, fuzzy, c-format
-msgid "HPLIP"
-msgstr "PL_IP"
-
-#: printer/printerdrake.pm:2498
-#, c-format
-msgid "Only printing will be possible on the %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2513
-#, fuzzy, c-format
-msgid "Could not remove your old HPOJ configuration file %s for your %s! "
-msgstr "Немагчыма стварыць тэчку наладак gnome для карыстальніка \"%s\": %s\n"
-
-#: printer/printerdrake.pm:2515
-#, c-format
-msgid "Please remove the file manually and restart HPOJ."
-msgstr ""
-
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "Checking device and configuring %s..."
-msgstr ""
-
-#: printer/printerdrake.pm:2557
-#, fuzzy, c-format
-msgid "Which printer do you want to set up with HPLIP?"
-msgstr "На які сектар перанесці?"
-
-#: printer/printerdrake.pm:2576
-#, c-format
-msgid "HPLIP was not able to communicate with the chosen printer!"
-msgstr ""
-
-#: printer/printerdrake.pm:2577 printer/printerdrake.pm:2584
-#, fuzzy, c-format
-msgid "Setting up the printer without HPLIP..."
-msgstr "Індыкатар гучнасьці"
-
-#: printer/printerdrake.pm:2583
-#, c-format
-msgid ""
-"HPLIP did not find any local printers (Parallel, USB) which it supports!"
-msgstr ""
-
-#: printer/printerdrake.pm:2622
-#, fuzzy, c-format
-msgid "Installing SANE packages..."
-msgstr "Усталяванне пакету %s"
-
-#: printer/printerdrake.pm:2635
-#, c-format
-msgid "Scanning on the %s will not be possible."
-msgstr ""
-
-#: printer/printerdrake.pm:2650
-#, c-format
-msgid "Using and Maintaining your %s"
-msgstr ""
-
-#: printer/printerdrake.pm:2664
-#, fuzzy, c-format
-msgid "Configuring device..."
-msgstr "Настройка IDE"
-
-#: printer/printerdrake.pm:2701
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr ""
-
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2985
-#: printer/printerdrake.pm:3138
-#, c-format
-msgid "Reading printer database..."
-msgstr ""
-
-#: printer/printerdrake.pm:2943
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr ""
-
-#: printer/printerdrake.pm:2947 printer/printerdrake.pm:4206
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-
-#: printer/printerdrake.pm:2953 printer/printerdrake.pm:4211
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: printer/printerdrake.pm:2960
-#, c-format
-msgid ""
-"The printer name \"%s\" has more than 12 characters which can make the "
-"printer unaccessible from Windows clients. Do you really want to use this "
-"name?"
-msgstr ""
-
-#: printer/printerdrake.pm:2969
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: printer/printerdrake.pm:2970
-#, c-format
-msgid "Name of printer"
-msgstr "Імя друкаркі"
-
-#: printer/printerdrake.pm:2971 standalone/drakconnect:592
-#: standalone/harddrake2:39 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Description"
-msgstr "Апісанне"
-
-#: printer/printerdrake.pm:2972 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Location"
-msgstr "Размеркаванне"
-
-#: printer/printerdrake.pm:2990
-#, fuzzy, c-format
-msgid "Preparing printer database..."
-msgstr "Падрыхтоўка загрузчыка"
-
-#: printer/printerdrake.pm:3116
-#, c-format
-msgid "Your printer model"
-msgstr ""
-
-#: printer/printerdrake.pm:3117
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: printer/printerdrake.pm:3122 printer/printerdrake.pm:3125
-#, fuzzy, c-format
-msgid "The model is correct"
-msgstr "Гэта дакладна?"
-
-#: printer/printerdrake.pm:3123 printer/printerdrake.pm:3124
-#: printer/printerdrake.pm:3127
-#, fuzzy, c-format
-msgid "Select model manually"
-msgstr "Пазначыць карыстальніцкі ID"
-
-#: printer/printerdrake.pm:3151
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
-msgstr ""
-
-#: printer/printerdrake.pm:3170
-#, c-format
-msgid "Install a manufacturer-supplied PPD file"
-msgstr ""
-
-#: printer/printerdrake.pm:3202
-#, c-format
-msgid ""
-"Every PostScript printer is delivered with a PPD file which describes the "
-"printer's options and features."
-msgstr ""
-
-#: printer/printerdrake.pm:3203
-#, c-format
-msgid ""
-"This file is usually somewhere on the CD with the Windows and Mac drivers "
-"delivered with the printer."
-msgstr ""
-
-#: printer/printerdrake.pm:3204
-#, c-format
-msgid "You can find the PPD files also on the manufacturer's web sites."
-msgstr ""
-
-#: printer/printerdrake.pm:3205
-#, c-format
-msgid ""
-"If you have Windows installed on your machine, you can find the PPD file on "
-"your Windows partition, too."
-msgstr ""
-
-#: printer/printerdrake.pm:3206
-#, c-format
-msgid ""
-"Installing the printer's PPD file and using it when setting up the printer "
-"makes all options of the printer available which are provided by the "
-"printer's hardware"
-msgstr ""
-
-#: printer/printerdrake.pm:3207
-#, c-format
-msgid ""
-"Here you can choose the PPD file to be installed on your machine, it will "
-"then be used for the setup of your printer."
-msgstr ""
-
-#: printer/printerdrake.pm:3209
-#, c-format
-msgid "Install PPD file from"
-msgstr ""
-
-#: printer/printerdrake.pm:3212 printer/printerdrake.pm:3220
-#: standalone/scannerdrake:183 standalone/scannerdrake:192
-#: standalone/scannerdrake:242 standalone/scannerdrake:250
-#, fuzzy, c-format
-msgid "Floppy Disk"
-msgstr "Фарматаваць гнуткія дыскі"
-
-#: printer/printerdrake.pm:3213 printer/printerdrake.pm:3222
-#: standalone/scannerdrake:184 standalone/scannerdrake:194
-#: standalone/scannerdrake:243 standalone/scannerdrake:252
-#, fuzzy, c-format
-msgid "Other place"
-msgstr "Іншае"
-
-#: printer/printerdrake.pm:3228
-#, fuzzy, c-format
-msgid "Select PPD file"
-msgstr "Абярыце файл"
-
-#: printer/printerdrake.pm:3232
-#, c-format
-msgid "The PPD file %s does not exist or is unreadable!"
-msgstr ""
-
-#: printer/printerdrake.pm:3238
-#, c-format
-msgid "The PPD file %s does not conform with the PPD specifications!"
-msgstr ""
-
-#: printer/printerdrake.pm:3249
-#, fuzzy, c-format
-msgid "Installing PPD file..."
-msgstr "Усталёўваем"
-
-#: printer/printerdrake.pm:3368
-#, fuzzy, c-format
-msgid "OKI winprinter configuration"
-msgstr "Настройка прылд OSS"
-
-#: printer/printerdrake.pm:3369
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: printer/printerdrake.pm:3394 printer/printerdrake.pm:3424
-#, fuzzy, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Настройка proxy кэшуючых сэервераў"
-
-#: printer/printerdrake.pm:3395
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: printer/printerdrake.pm:3425
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-
-#: printer/printerdrake.pm:3435
-#, fuzzy, c-format
-msgid "Lexmark X125 configuration"
-msgstr "Канфігурацыя сеткі"
-
-#: printer/printerdrake.pm:3436
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes. Please connect "
-"your printer to a local USB port or configure it on the machine where it is "
-"connected to."
-msgstr ""
-
-#: printer/printerdrake.pm:3458
-#, fuzzy, c-format
-msgid "Samsung ML/QL-85G configuration"
-msgstr "Настройка драйверу Sun"
-
-#: printer/printerdrake.pm:3459 printer/printerdrake.pm:3486
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected on the "
-"first parallel port, no printers on remote machines or print server boxes or "
-"on other parallel ports. Please connect your printer to the first parallel "
-"port or configure it on the machine where it is connected to."
-msgstr ""
-
-#: printer/printerdrake.pm:3485
-#, fuzzy, c-format
-msgid "Canon LBP-460/660 configuration"
-msgstr "Канфігурацыя"
-
-#: printer/printerdrake.pm:3512
-#, fuzzy, c-format
-msgid "Canon LBP-810/1120 (CAPT) configuration"
-msgstr "Канфігурацыя"
-
-#: printer/printerdrake.pm:3513
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes or on the parallel "
-"port. Please connect your printer to the USB or configure it on the machine "
-"where it is directly connected to."
-msgstr ""
-
-#: printer/printerdrake.pm:3520
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr ""
-
-#: printer/printerdrake.pm:3670
-#, c-format
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: printer/printerdrake.pm:3795
-#, fuzzy, c-format
-msgid "Printer default settings"
-msgstr "Опцыі прынтэру"
-
-#: printer/printerdrake.pm:3802
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: printer/printerdrake.pm:3806
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: printer/printerdrake.pm:3810
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: printer/printerdrake.pm:3862
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-
-#: printer/printerdrake.pm:3878
-#, fuzzy, c-format
-msgid "Test pages"
-msgstr "Гульня \"Сапёр\" для Gnome"
-
-#: printer/printerdrake.pm:3879
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: printer/printerdrake.pm:3883
-#, c-format
-msgid "No test pages"
-msgstr ""
-
-#: printer/printerdrake.pm:3884
-#, c-format
-msgid "Print"
-msgstr "Друк"
-
-#: printer/printerdrake.pm:3909
-#, fuzzy, c-format
-msgid "Standard test page"
-msgstr "Стандартны"
-
-#: printer/printerdrake.pm:3912
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: printer/printerdrake.pm:3915
-#, fuzzy, c-format
-msgid "Alternative test page (A4)"
-msgstr "Друк тэставых старонак"
-
-#: printer/printerdrake.pm:3917
-#, fuzzy, c-format
-msgid "Photo test page"
-msgstr "Друк тэставых старонак"
-
-#: printer/printerdrake.pm:3930
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Друк тэставых старонак"
-
-#: printer/printerdrake.pm:3950
-#, fuzzy, c-format
-msgid "Skipping photo test page."
-msgstr "Друк тэставых старонак"
-
-#: printer/printerdrake.pm:3967
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:3971
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:3981
-#, fuzzy, c-format
-msgid "Did it work properly?"
-msgstr "Сеткавы проксі"
-
-#: printer/printerdrake.pm:4005
-#, fuzzy, c-format
-msgid "Raw printer"
-msgstr "Лакальны прынтэр"
-
-#: printer/printerdrake.pm:4027
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4029
-#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4032 printer/printerdrake.pm:4049
-#: printer/printerdrake.pm:4059
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: printer/printerdrake.pm:4035 printer/printerdrake.pm:4075
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4039
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4044 printer/printerdrake.pm:4054
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4046 printer/printerdrake.pm:4056
-#: printer/printerdrake.pm:4066
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4051 printer/printerdrake.pm:4061
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: printer/printerdrake.pm:4064
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4068
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4072
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4081
-#, fuzzy, c-format
-msgid "Using/Maintaining the printer \"%s\""
-msgstr "Адлучэнне ад сеткі"
-
-#: printer/printerdrake.pm:4082
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Адлучэнне ад сеткі"
-
-#: printer/printerdrake.pm:4088
-#, fuzzy, c-format
-msgid "Print option list"
-msgstr "Опцыі прынтэру"
-
-#: printer/printerdrake.pm:4092
-#, fuzzy, c-format
-msgid "Printing option list..."
-msgstr "Опцыі прынтэру"
-
-#: printer/printerdrake.pm:4110
-#, c-format
-msgid ""
-"Your %s is set up with HP's HPLIP driver software. This way many special "
-"features of your printer are supported.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4113
-#, c-format
-msgid ""
-"The scanner in your printer can be used with the usual SANE software, for "
-"example Kooka or XSane (Both in the Multimedia/Graphics menu). "
-msgstr ""
-
-#: printer/printerdrake.pm:4114
-#, c-format
-msgid ""
-"Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to "
-"share your scanner on the network.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4118
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed like a usual USB "
-"mass storage device. "
-msgstr ""
-
-#: printer/printerdrake.pm:4119
-#, c-format
-msgid ""
-"After inserting a card a hard disk icon to access the card should appear on "
-"your desktop.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4121
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed using HP's Printer "
-"Toolbox (Menu: System/Monitoring/HP Printer Toolbox) clicking the \"Access "
-"Photo Cards...\" button on the \"Functions\" tab. "
-msgstr ""
-
-#: printer/printerdrake.pm:4122
-#, c-format
-msgid ""
-"Note that this is very slow, reading the pictures from the camera or a USB "
-"card reader is usually faster.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4125
-#, c-format
-msgid ""
-"HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a "
-"lot of status monitoring and maintenance functions for your %s:\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4126
-#, c-format
-msgid " - Ink level/status info\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4127
-#, c-format
-msgid " - Ink nozzle cleaning\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4128
-#, fuzzy, c-format
-msgid " - Print head alignment\n"
-msgstr "Гарызантальнае раўнаньне"
-
-#: printer/printerdrake.pm:4129
-#, fuzzy, c-format
-msgid " - Color calibration\n"
-msgstr "Канфігурацыя"
-
-#: printer/printerdrake.pm:4170 printer/printerdrake.pm:4197
-#: printer/printerdrake.pm:4232
-#, fuzzy, c-format
-msgid "Transfer printer configuration"
-msgstr "Настройка драйверу Sun"
-
-#: printer/printerdrake.pm:4171
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4174
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4176
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4178
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4180
-#, c-format
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: printer/printerdrake.pm:4181
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: printer/printerdrake.pm:4182
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: printer/printerdrake.pm:4185
-#, c-format
-msgid "Do not transfer printers"
-msgstr ""
-
-#: printer/printerdrake.pm:4186 printer/printerdrake.pm:4202
-#, c-format
-msgid "Transfer"
-msgstr "Перадача"
-
-#: printer/printerdrake.pm:4198
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: printer/printerdrake.pm:4219
-#, fuzzy, c-format
-msgid "New printer name"
-msgstr "Сеткавы інтэрфейс"
-
-#: printer/printerdrake.pm:4222
-#, c-format
-msgid "Transferring %s..."
-msgstr ""
-
-#: printer/printerdrake.pm:4233
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: printer/printerdrake.pm:4243
-#, c-format
-msgid "Refreshing printer data..."
-msgstr ""
-
-#: printer/printerdrake.pm:4253
-#, fuzzy, c-format
-msgid "Starting network..."
-msgstr "Пачатковы сектар:"
-
-#: printer/printerdrake.pm:4296 printer/printerdrake.pm:4300
-#: printer/printerdrake.pm:4302
-#, fuzzy, c-format
-msgid "Configure the network now"
-msgstr "Настройка сеткі"
-
-#: printer/printerdrake.pm:4297
-#, c-format
-msgid "Network functionality not configured"
-msgstr ""
-
-#: printer/printerdrake.pm:4298
-#, c-format
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: printer/printerdrake.pm:4301
-#, fuzzy, c-format
-msgid "Go on without configuring the network"
-msgstr "Далучэнне да сеткі"
-
-#: printer/printerdrake.pm:4332
-#, c-format
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network is accessible after booting your "
-"system and correct the configuration using the %s Control Center, section "
-"\"Network & Internet\"/\"Connection\", and afterwards set up the printer, "
-"also using the %s Control Center, section \"Hardware\"/\"Printer\""
-msgstr ""
-
-#: printer/printerdrake.pm:4333
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: printer/printerdrake.pm:4343
-#, c-format
-msgid "Restarting printing system..."
-msgstr ""
-
-#: printer/printerdrake.pm:4374
-#, fuzzy, c-format
-msgid "high"
-msgstr "Высокі"
-
-#: printer/printerdrake.pm:4374
-#, fuzzy, c-format
-msgid "paranoid"
-msgstr "Паранаідальны"
-
-#: printer/printerdrake.pm:4376
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: printer/printerdrake.pm:4377
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessible by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: printer/printerdrake.pm:4413
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr ""
-
-#: printer/printerdrake.pm:4414
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: printer/printerdrake.pm:4437
-#, c-format
-msgid "Checking installed software..."
-msgstr ""
-
-#: printer/printerdrake.pm:4443
-#, c-format
-msgid "Removing %s..."
-msgstr ""
-
-#: printer/printerdrake.pm:4447
-#, fuzzy, c-format
-msgid "Could not remove the %s printing system!"
-msgstr "Немагчыма выдаліць тэг!"
-
-#: printer/printerdrake.pm:4471
-#, fuzzy, c-format
-msgid "Installing %s..."
-msgstr "Усталёўваем"
-
-#: printer/printerdrake.pm:4475
-#, c-format
-msgid "Could not install the %s printing system!"
-msgstr ""
-
-#: printer/printerdrake.pm:4543
-#, c-format
-msgid ""
-"In this mode there is no local printing system, all printing requests go "
-"directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:4545
-#, c-format
-msgid ""
-"Enter the host name or IP of your CUPS server and click OK if you want to "
-"use this mode, click \"Quit\" otherwise."
-msgstr ""
-
-#: printer/printerdrake.pm:4559
-#, fuzzy, c-format
-msgid "Name or IP of remote server:"
-msgstr "Сервер друку"
-
-#: printer/printerdrake.pm:4579
-#, c-format
-msgid "Setting Default Printer..."
-msgstr ""
-
-#: printer/printerdrake.pm:4599
-#, fuzzy, c-format
-msgid "Local CUPS printing system or remote CUPS server?"
-msgstr "Аддалены сэервер CUPS"
-
-#: printer/printerdrake.pm:4600
-#, c-format
-msgid "The CUPS printing system can be used in two ways: "
-msgstr ""
-
-#: printer/printerdrake.pm:4602
-#, c-format
-msgid "1. The CUPS printing system can run locally. "
-msgstr ""
-
-#: printer/printerdrake.pm:4603
-#, c-format
-msgid ""
-"Then locally connected printers can be used and remote printers on other "
-"CUPS servers in the same network are automatically discovered. "
-msgstr ""
-
-#: printer/printerdrake.pm:4604
-#, c-format
-msgid ""
-"Disadvantage of this approach is, that more resources on the local machine "
-"are needed: Additional software packages need to be installed, the CUPS "
-"daemon has to run in the background and needs some memory, and the IPP port "
-"(port 631) is opened. "
-msgstr ""
-
-#: printer/printerdrake.pm:4606
-#, c-format
-msgid "2. All printing requests are immediately sent to a remote CUPS server. "
-msgstr ""
-
-#: printer/printerdrake.pm:4607
-#, c-format
-msgid ""
-"Here local resource occupation is reduced to a minimum. No CUPS daemon is "
-"started or port opened, no software infrastructure for setting up local "
-"print queues is installed, so less memory and disk space is used. "
-msgstr ""
-
-#: printer/printerdrake.pm:4608
-#, c-format
-msgid ""
-"Disadvantage is that it is not possible to define local printers then and if "
-"the specified server is down it cannot be printed at all from this machine. "
-msgstr ""
-
-#: printer/printerdrake.pm:4610
-#, c-format
-msgid "How should CUPS be set up on your machine?"
-msgstr ""
-
-#: printer/printerdrake.pm:4614 printer/printerdrake.pm:4629
-#: printer/printerdrake.pm:4633 printer/printerdrake.pm:4639
-#, c-format
-msgid "Remote server, specify Name or IP here:"
-msgstr ""
-
-#: printer/printerdrake.pm:4628
-#, fuzzy, c-format
-msgid "Local CUPS printing system"
-msgstr "Настройка IDE"
-
-#: printer/printerdrake.pm:4667
-#, fuzzy, c-format
-msgid "Select Printer Spooler"
-msgstr "Выбар тыпу злучэння прынтэру"
-
-#: printer/printerdrake.pm:4668
-#, fuzzy, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Які пратакол вы жадаеце выкарыстоўваць?"
-
-#: printer/printerdrake.pm:4717
-#, fuzzy, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Немагчыма выдаліць \"%s\": %s."
-
-#: printer/printerdrake.pm:4732
-#, fuzzy, c-format
-msgid "Installing Foomatic..."
-msgstr "Усталёўваем"
-
-#: printer/printerdrake.pm:4738
-#, c-format
-msgid "Could not install %s packages, %s cannot be started!"
-msgstr ""
-
-#: printer/printerdrake.pm:4933
-#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it. "
-msgstr ""
-
-#: printer/printerdrake.pm:4963
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr ""
-
-#: printer/printerdrake.pm:4964
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: printer/printerdrake.pm:4975
-#, fuzzy, c-format
-msgid "CUPS configuration"
-msgstr "Канфігурацыя"
-
-#: printer/printerdrake.pm:4996
-#, fuzzy, c-format
-msgid "Change the printing system"
-msgstr "Змяніць тып раздзелу"
-
-#: printer/printerdrake.pm:5005
-#, fuzzy, c-format
-msgid "Normal Mode"
-msgstr "Рэжым Mmap"
-
-#: printer/printerdrake.pm:5006
-#, fuzzy, c-format
-msgid "Expert Mode"
-msgstr "/Графік"
-
-#: printer/printerdrake.pm:5284 printer/printerdrake.pm:5340
-#: printer/printerdrake.pm:5426 printer/printerdrake.pm:5435
-#, c-format
-msgid "Printer options"
-msgstr "Опцыі прынтэру"
-
-#: printer/printerdrake.pm:5320
-#, fuzzy, c-format
-msgid "Modify printer configuration"
-msgstr "Настройка запісу на дыск"
-
-#: printer/printerdrake.pm:5322
-#, c-format
-msgid ""
-"Printer %s%s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-
-#: printer/printerdrake.pm:5327
-#, fuzzy, c-format
-msgid "This printer is disabled"
-msgstr "Памеры якога раздзела вы жадаеце змяніць?"
-
-#: printer/printerdrake.pm:5329
-#, c-format
-msgid "Do it!"
-msgstr ""
-
-#: printer/printerdrake.pm:5335 printer/printerdrake.pm:5400
-#, c-format
-msgid "Printer name, description, location"
-msgstr ""
-
-#: printer/printerdrake.pm:5337 printer/printerdrake.pm:5419
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: printer/printerdrake.pm:5338 printer/printerdrake.pm:5420
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: printer/printerdrake.pm:5342 printer/printerdrake.pm:5430
-#, c-format
-msgid "Set this printer as the default"
-msgstr ""
-
-#: printer/printerdrake.pm:5347 printer/printerdrake.pm:5436
-#: printer/printerdrake.pm:5438 printer/printerdrake.pm:5447
-#, fuzzy, c-format
-msgid "Enable Printer"
-msgstr "Сервер друку"
-
-#: printer/printerdrake.pm:5350 printer/printerdrake.pm:5441
-#: printer/printerdrake.pm:5442 printer/printerdrake.pm:5444
-#, fuzzy, c-format
-msgid "Disable Printer"
-msgstr "Сервер друку"
-
-#: printer/printerdrake.pm:5354 printer/printerdrake.pm:5448
-#, fuzzy, c-format
-msgid "Printer communication error handling"
-msgstr "Выбар тыпу злучэння прынтэру"
-
-#: printer/printerdrake.pm:5355 printer/printerdrake.pm:5452
-#, fuzzy, c-format
-msgid "Print test pages"
-msgstr "Друк тэставых старонак"
-
-#: printer/printerdrake.pm:5356 printer/printerdrake.pm:5454
-#, c-format
-msgid "Learn how to use this printer"
-msgstr ""
-
-#: printer/printerdrake.pm:5357 printer/printerdrake.pm:5456
-#, fuzzy, c-format
-msgid "Remove printer"
-msgstr "Аддалены прынтэр"
-
-#: printer/printerdrake.pm:5408
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr ""
-
-#: printer/printerdrake.pm:5439
-#, fuzzy, c-format
-msgid "Printer \"%s\" is now enabled."
-msgstr "Сервер друку"
-
-#: printer/printerdrake.pm:5445
-#, fuzzy, c-format
-msgid "Printer \"%s\" is now disabled."
-msgstr "Сервер друку"
-
-#: printer/printerdrake.pm:5487
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Ці жадаеце выдаліць групу %s\n"
-
-#: printer/printerdrake.pm:5491
-#, fuzzy, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Аддалены прынтэр"
-
-#: printer/printerdrake.pm:5515
-#, fuzzy, c-format
-msgid "Default printer"
-msgstr "Лакальны прынтэр"
-
-#: printer/printerdrake.pm:5516
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
#: raid.pm:42
#, fuzzy, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "Не атрымліваецца дадаць раздзел на _адфармаціраваны_ RAID md%d"
-#: raid.pm:148
+#: raid.pm:150
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Недастаткова раздзелаў для RAID узроўня %d\n"
-#: scanner.pm:96
+#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr ""
-#: scanner.pm:107
+#: scanner.pm:106
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr ""
-#: scanner.pm:114
+#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr ""
-#: scanner.pm:121
+#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr ""
-#: scanner.pm:200 standalone/scannerdrake:66 standalone/scannerdrake:70
-#: standalone/scannerdrake:78 standalone/scannerdrake:321
-#: standalone/scannerdrake:370 standalone/scannerdrake:463
-#: standalone/scannerdrake:507 standalone/scannerdrake:511
-#: standalone/scannerdrake:533 standalone/scannerdrake:598
+#: scanner.pm:199
#, c-format
msgid "Scannerdrake"
msgstr ""
-#: scanner.pm:201 standalone/scannerdrake:964
+#: scanner.pm:200
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""
-#: scanner.pm:202
+#: scanner.pm:201
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr ""
@@ -13385,12 +4805,12 @@ msgstr ""
#: security/help.pm:13
#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
+msgid "Accept/Refuse broadcasted icmp echo."
msgstr ""
#: security/help.pm:15
#, c-format
-msgid " Accept/Refuse icmp echo."
+msgid "Accept/Refuse icmp echo."
msgstr ""
#: security/help.pm:17
@@ -13510,7 +4930,7 @@ msgid ""
"\"%s\" is true, also reports to syslog."
msgstr ""
-#: security/help.pm:80 standalone/draksec:215
+#: security/help.pm:80
#, fuzzy, c-format
msgid "Security Alerts:"
msgstr "Бясьпека"
@@ -13538,7 +4958,8 @@ msgstr ""
#: security/help.pm:90
#, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"Enable su only from members of the wheel group. If set to no, allows su from "
+"any user."
msgstr ""
#: security/help.pm:92
@@ -13553,12 +4974,12 @@ msgstr ""
#: security/help.pm:96
#, c-format
-msgid " Activate/Disable daily security check."
+msgid "Activate/Disable daily security check."
msgstr ""
#: security/help.pm:98
#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
+msgid "Enable/Disable sulogin(8) in single user level."
msgstr ""
#: security/help.pm:100
@@ -13808,7 +5229,7 @@ msgstr ""
#: security/l10n.pm:32
#, c-format
-msgid "Enable su only from the wheel group members or for any user"
+msgid "Enable su only from the wheel group members"
msgstr ""
#: security/l10n.pm:33
@@ -13933,7 +5354,7 @@ msgstr ""
#: security/l10n.pm:57
#, c-format
-msgid "Do not send mails when unneeded"
+msgid "Do not send empty mail reports"
msgstr ""
#: security/l10n.pm:58
@@ -13971,6 +5392,11 @@ msgstr "Сардэчна запрашаем у Crackers"
msgid "Poor"
msgstr "Зусім слабы"
+#: security/level.pm:12
+#, c-format
+msgid "Standard"
+msgstr "Стандартны"
+
#: security/level.pm:13
#, c-format
msgid "High"
@@ -14041,6 +5467,11 @@ msgid ""
msgstr ""
#: security/level.pm:55
+#, c-format
+msgid "Security"
+msgstr "Бясьпека"
+
+#: security/level.pm:55
#, fuzzy, c-format
msgid "DrakSec Basic Options"
msgstr "Пазначце параметры"
@@ -14388,532 +5819,99 @@ msgstr ""
msgid "Starts the X Font Server (this is mandatory for Xorg to run)."
msgstr ""
-#: services.pm:115 services.pm:157
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Абярыце, якія сервісы запускаць аўтаматычна пры загрузцы"
-
-#: services.pm:127 standalone/draksambashare:111
+#: services.pm:114
#, c-format
msgid "Printing"
msgstr "Друкаваньне"
-#: services.pm:128
+#: services.pm:115
#, c-format
msgid "Internet"
msgstr "Інтэрнэт"
-#: services.pm:131
+#: services.pm:118
#, fuzzy, c-format
msgid "File sharing"
msgstr "Мэнэджэр файлаў"
-#: services.pm:138
+#: services.pm:120
+#, c-format
+msgid "System"
+msgstr "Сістэма"
+
+#: services.pm:125
#, fuzzy, c-format
msgid "Remote Administration"
msgstr "Сістэмнае адміністраваньне"
-#: services.pm:146
+#: services.pm:133
#, fuzzy, c-format
msgid "Database Server"
msgstr "Праграма гуказапісу"
-#: services.pm:209
+#: services.pm:144 services.pm:180
+#, c-format
+msgid "Services"
+msgstr "Сэрвісы"
+
+#: services.pm:144
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Абярыце, якія сервісы запускаць аўтаматычна пры загрузцы"
+
+#: services.pm:162
+#, c-format
+msgid "Services: %d activated for %d registered"
+msgstr ""
+
+#: services.pm:196
#, fuzzy, c-format
msgid "running"
msgstr "Увага!"
-#: services.pm:209
+#: services.pm:196
#, fuzzy, c-format
msgid "stopped"
msgstr "Далучыць"
-#: services.pm:213
+#: services.pm:201
#, fuzzy, c-format
msgid "Services and daemons"
msgstr "Мэнэджэр сэрвісаў"
-#: services.pm:219
+#: services.pm:207
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr ""
-#: services.pm:224 ugtk2.pm:1009
+#: services.pm:212 ugtk2.pm:898
#, c-format
msgid "Info"
msgstr "Інфармацыя"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "Start when requested"
msgstr ""
-#: services.pm:227
+#: services.pm:215
#, fuzzy, c-format
msgid "On boot"
msgstr "Yaboot"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Start"
msgstr "У пачатак"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Stop"
msgstr "Спыніць"
-#: share/advertising/01.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Packs"
-msgstr ""
-
-#: share/advertising/02.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More features"
-msgstr ""
-
-#: share/advertising/03.pl:3
-#, c-format
-msgid "Interactive firewall"
-msgstr ""
-
-#: share/advertising/04.pl:3
-#, c-format
-msgid "Desktop search"
-msgstr ""
-
-#: share/advertising/05.pl:3
-#, c-format
-msgid "New package manager"
-msgstr ""
-
-#: share/advertising/06.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More performances"
-msgstr ""
-
-#: share/advertising/07.pl:3
-#, c-format
-msgid "Latest kernel and GCC"
-msgstr ""
-
-#: share/advertising/08.pl:3
-#, c-format
-msgid "High Availibility"
-msgstr ""
-
-#: share/advertising/09.pl:3
-#, c-format
-msgid "Delta RPM"
-msgstr ""
-
-#: share/advertising/10.pl:3
-#, c-format
-msgid "Low resources setup"
-msgstr ""
-
-#: share/advertising/11.pl:3
-#, c-format
-msgid "Boot time reduction"
-msgstr ""
-
-#: share/advertising/12.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Easier to use"
-msgstr ""
-
-#: share/advertising/13.pl:3
-#, c-format
-msgid "Latest graphical interfaces: KDE and GNOME"
-msgstr ""
-
-#: share/advertising/14.pl:3
-#, c-format
-msgid "auto-installation servers"
-msgstr ""
-
-#: share/advertising/15.pl:3
-#, c-format
-msgid "Easy and quick installation"
-msgstr ""
-
-#: share/advertising/16.pl:3
-#, c-format
-msgid "Easy configuration thanks to 60 wizards"
-msgstr ""
-
-#: share/advertising/17.pl:3
-#, c-format
-msgid "Look and feel improved"
-msgstr ""
-
-#: share/advertising/18.pl:3
-#, c-format
-msgid "New webmin theme"
-msgstr ""
-
-#: share/advertising/19.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More support"
-msgstr ""
-
-#: share/advertising/20.pl:3
-#, c-format
-msgid "Better Hardware support"
-msgstr ""
-
-#: share/advertising/21.pl:3
-#, c-format
-msgid "Xen support"
-msgstr ""
-
-#: share/advertising/22.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More information"
-msgstr ""
-
-#: share/advertising/23.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Where to buy?"
-msgstr ""
-
-#: share/advertising/24.pl:3
-#, c-format
-msgid "Where to find technical assistance?"
-msgstr ""
-
-#: share/advertising/25.pl:3
-#, c-format
-msgid "How to join the Mandriva Linux community?"
-msgstr ""
-
-#: share/advertising/26.pl:3
-#, c-format
-msgid "How to keep your system up-to-date?"
-msgstr ""
-
-#: share/advertising/intel.pl:3
-#, c-format
-msgid "Intel Software"
-msgstr ""
-
-#: share/advertising/skype.pl:3
-#, c-format
-msgid "Skype lets you make calls through the Internet for free."
-msgstr ""
-
-#: share/compssUsers.pl:26
-#, fuzzy, c-format
-msgid "Office Workstation"
-msgstr "Працоўныя мейсцы"
-
-#: share/compssUsers.pl:28
-#, c-format
-msgid ""
-"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
-"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
-msgstr ""
-"Офісныя праграмы: працэсары словаў (OpenOffice.org Writer, Kword), "
-"электроныя табліцы, аглядальнікі pdf-файлаў, і г.д."
-
-#: share/compssUsers.pl:29
-#, c-format
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Офісныя праграмы: працэсары словаў (kword, abiword), электроныя табліцы, "
-"аглядальнікі pdf-файлаў, і г.д."
-
-#: share/compssUsers.pl:34
-#, fuzzy, c-format
-msgid "Game station"
-msgstr "Аўтэнтыфікацыя"
-
-#: share/compssUsers.pl:35
-#, c-format
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Забаўляльныя праграмы: аркады, стратэгіі і г.д."
-
-#: share/compssUsers.pl:38
-#, fuzzy, c-format
-msgid "Multimedia station"
-msgstr "Мульцімедыя"
-
-#: share/compssUsers.pl:39
-#, c-format
-msgid "Sound and video playing/editing programs"
-msgstr "Рэдактары і прайгравальнікі гуку і відэа"
-
-#: share/compssUsers.pl:44
-#, fuzzy, c-format
-msgid "Internet station"
-msgstr "Інтэрнэт"
-
-#: share/compssUsers.pl:45
-#, c-format
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-
-#: share/compssUsers.pl:50
-#, fuzzy, c-format
-msgid "Network Computer (client)"
-msgstr "Сеткавы прынтэр (TCP/Socket)"
-
-#: share/compssUsers.pl:51
-#, c-format
-msgid "Clients for different protocols including ssh"
-msgstr ""
-
-#: share/compssUsers.pl:55
-#, c-format
-msgid "Configuration"
-msgstr "Канфігурацыя"
-
-#: share/compssUsers.pl:56
-#, fuzzy, c-format
-msgid "Tools to ease the configuration of your computer"
-msgstr "Ці жадаеце пратэсціраваць настройкі?"
-
-#: share/compssUsers.pl:60
-#, c-format
-msgid "Console Tools"
-msgstr "Кансольныя інструментальныя сродкі"
-
-#: share/compssUsers.pl:61
-#, c-format
-msgid "Editors, shells, file tools, terminals"
-msgstr "Рэдактары, абалонкі, тэрміналы"
-
-#: share/compssUsers.pl:66 share/compssUsers.pl:170
-#, c-format
-msgid "C and C++ development libraries, programs and include files"
-msgstr "Бібліятэкі і праграмы для распрацоўкі на С і С++"
-
-#: share/compssUsers.pl:70 share/compssUsers.pl:174
-#, c-format
-msgid "Documentation"
-msgstr "Дакумэнтацыя"
-
-#: share/compssUsers.pl:71 share/compssUsers.pl:175
-#, c-format
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "нігі і Howto па Linux і Free Software"
-
-#: share/compssUsers.pl:75 share/compssUsers.pl:178
-#, c-format
-msgid "LSB"
-msgstr ""
-
-#: share/compssUsers.pl:76 share/compssUsers.pl:179
-#, c-format
-msgid "Linux Standard Base. Third party applications support"
-msgstr ""
-
-#: share/compssUsers.pl:86
-#, fuzzy, c-format
-msgid "Apache"
-msgstr "Шлях:"
-
-#: share/compssUsers.pl:89
-#, fuzzy, c-format
-msgid "Groupware"
-msgstr "Групы"
-
-#: share/compssUsers.pl:90
-#, fuzzy, c-format
-msgid "Kolab Server"
-msgstr "NIS сэервер:"
-
-#: share/compssUsers.pl:93 share/compssUsers.pl:134
-#, fuzzy, c-format
-msgid "Firewall/Router"
-msgstr "Рэстарт"
-
-#: share/compssUsers.pl:94 share/compssUsers.pl:135
-#, fuzzy, c-format
-msgid "Internet gateway"
-msgstr "Інтэрнэт"
-
-#: share/compssUsers.pl:97
-#, fuzzy, c-format
-msgid "Mail/News"
-msgstr "/Файл/_Стварыць"
-
-#: share/compssUsers.pl:98
-#, c-format
-msgid "Postfix mail server, Inn news server"
-msgstr ""
-
-#: share/compssUsers.pl:101
-#, fuzzy, c-format
-msgid "Directory Server"
-msgstr "Каталог %s Так"
-
-#: share/compssUsers.pl:105
-#, fuzzy, c-format
-msgid "FTP Server"
-msgstr "NIS сэервер:"
-
-#: share/compssUsers.pl:106
-#, c-format
-msgid "ProFTPd"
-msgstr ""
-
-#: share/compssUsers.pl:109
-#, c-format
-msgid "DNS/NIS"
-msgstr ""
-
-#: share/compssUsers.pl:110
-#, fuzzy, c-format
-msgid "Domain Name and Network Information Server"
-msgstr "Імя дамену"
-
-#: share/compssUsers.pl:113
-#, fuzzy, c-format
-msgid "File and Printer Sharing Server"
-msgstr "Сервер друку"
-
-#: share/compssUsers.pl:114
-#, fuzzy, c-format
-msgid "NFS Server, Samba server"
-msgstr "X сэервер"
-
-#: share/compssUsers.pl:117 share/compssUsers.pl:130
-#, c-format
-msgid "Database"
-msgstr "База даньняў"
-
-#: share/compssUsers.pl:118
-#, c-format
-msgid "PostgreSQL and MySQL Database Server"
-msgstr ""
-
-#: share/compssUsers.pl:122
-#, c-format
-msgid "Web/FTP"
-msgstr ""
-
-#: share/compssUsers.pl:123
-#, c-format
-msgid "Apache, Pro-ftpd"
-msgstr ""
-
-#: share/compssUsers.pl:126
-#, c-format
-msgid "Mail"
-msgstr "Пошта"
-
-#: share/compssUsers.pl:127
-#, c-format
-msgid "Postfix mail server"
-msgstr ""
-
-#: share/compssUsers.pl:131
-#, c-format
-msgid "PostgreSQL or MySQL database server"
-msgstr ""
-
-#: share/compssUsers.pl:138
-#, fuzzy, c-format
-msgid "Network Computer server"
-msgstr "Сеткавыя інтэрфэйсы"
-
-#: share/compssUsers.pl:139
-#, c-format
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr ""
-
-#: share/compssUsers.pl:147
-#, fuzzy, c-format
-msgid "KDE Workstation"
-msgstr "Канфігурацыя"
-
-#: share/compssUsers.pl:148
-#, c-format
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"The K Desktop Environment - асноўнае графічнае асяродзе з калекцыяй "
-"інструментальных сродкаў"
-
-#: share/compssUsers.pl:152
-#, fuzzy, c-format
-msgid "GNOME Workstation"
-msgstr "Інфармацыя аб памяці"
-
-#: share/compssUsers.pl:153
-#, c-format
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Графічнае асяродзе са зручным дзеля выкарыстання наборам прыкладанняў і "
-"інструментальных сродкаў"
-
-#: share/compssUsers.pl:156
-#, fuzzy, c-format
-msgid "IceWm Desktop"
-msgstr "Працоўны стол"
-
-#: share/compssUsers.pl:160
-#, c-format
-msgid "Other Graphical Desktops"
-msgstr "Іншыя графічныя Працоўныя сталы"
-
-#: share/compssUsers.pl:161
-#, c-format
-msgid "Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
-
-#: share/compssUsers.pl:184
-#, c-format
-msgid "Utilities"
-msgstr "Карыснасьці"
-
-#: share/compssUsers.pl:186 share/compssUsers.pl:187 standalone/logdrake:384
-#, fuzzy, c-format
-msgid "SSH Server"
-msgstr "NIS сэервер:"
-
-#: share/compssUsers.pl:191
-#, fuzzy, c-format
-msgid "Webmin"
-msgstr "Прылады"
-
-#: share/compssUsers.pl:192
-#, fuzzy, c-format
-msgid "Webmin Remote Configuration Server"
-msgstr "Сістэмнае адміністраваньне"
-
-#: share/compssUsers.pl:196
-#, fuzzy, c-format
-msgid "Network Utilities/Monitoring"
-msgstr "Канфігурацыя сеткі"
-
-#: share/compssUsers.pl:197
-#, c-format
-msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
-msgstr ""
-
-#: share/compssUsers.pl:201
-#, fuzzy, c-format
-msgid "Mandriva Wizards"
-msgstr "Цэнтар кіраваньня"
-
-#: share/compssUsers.pl:202
-#, fuzzy, c-format
-msgid "Wizards to configure server"
-msgstr "Немагчыма выдаліць \"%s\": %s."
-
-#: standalone.pm:23
+#: standalone.pm:24
#, fuzzy, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
@@ -14928,7 +5926,8 @@ msgid ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
msgstr ""
"Пашырэнне ESounD\n"
"\n"
@@ -14946,11 +5945,10 @@ msgstr ""
"\n"
"А копію ліцэнзыі вы павінны былі атрымаць\n"
"разам зь гэтай прогай; калі не, дык напішыце пра гэта па адрасу (дашлем)\n"
-"Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA "
-"02111-1307,\n"
-"USA."
+"Free Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-"
+"1301, USA.\n"
-#: standalone.pm:42
+#: standalone.pm:43
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
@@ -14966,7 +5964,7 @@ msgid ""
"--version : show version number.\n"
msgstr ""
-#: standalone.pm:54
+#: standalone.pm:55
#, c-format
msgid ""
"[--boot] [--splash]\n"
@@ -14976,7 +5974,7 @@ msgid ""
"default mode: offer to configure autologin feature"
msgstr ""
-#: standalone.pm:59
+#: standalone.pm:60
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
@@ -14987,7 +5985,7 @@ msgid ""
" --incident - program should be one of Mandriva Linux tools"
msgstr ""
-#: standalone.pm:65
+#: standalone.pm:66
#, c-format
msgid ""
"[--add]\n"
@@ -14998,7 +5996,7 @@ msgid ""
" --wizard - like --add"
msgstr ""
-#: standalone.pm:71
+#: standalone.pm:72
#, c-format
msgid ""
"\n"
@@ -15016,7 +6014,7 @@ msgid ""
" : and gs for ghostscript for only this one."
msgstr ""
-#: standalone.pm:86
+#: standalone.pm:87
#, c-format
msgid ""
"[OPTIONS]...\n"
@@ -15034,17 +6032,17 @@ msgid ""
"IP, nbi image name)"
msgstr ""
-#: standalone.pm:98
+#: standalone.pm:99
#, fuzzy, c-format
msgid "[keyboard]"
msgstr "Клавіятура"
-#: standalone.pm:99
+#: standalone.pm:100
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr ""
-#: standalone.pm:100
+#: standalone.pm:101
#, c-format
msgid ""
"[OPTIONS]\n"
@@ -15058,12 +6056,7 @@ msgid ""
"--quiet : do not be interactive. To be used with (dis)connect."
msgstr ""
-#: standalone.pm:109
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr ""
-
-#: standalone.pm:110
+#: standalone.pm:111
#, c-format
msgid ""
"[OPTION]...\n"
@@ -15075,14 +6068,14 @@ msgid ""
" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
msgstr ""
-#: standalone.pm:115
+#: standalone.pm:116
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
msgstr ""
-#: standalone.pm:116
+#: standalone.pm:117
#, c-format
msgid ""
" [everything]\n"
@@ -15090,7 +6083,7 @@ msgid ""
" XFdrake resolution"
msgstr ""
-#: standalone.pm:149
+#: standalone.pm:150
#, c-format
msgid ""
"\n"
@@ -15098,8713 +6091,102 @@ msgid ""
"testing] [-v|--version] "
msgstr ""
-#: standalone/XFdrake:59
-#, fuzzy, c-format
-msgid "You need to reboot for changes to take effect"
-msgstr "Каб змяненні ўступілі ў дзеянне, необходна перазагрузіцца"
-
-#: standalone/XFdrake:90
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Калі ласка, выйдзіце, а потым скарыстайце Ctrl-Alt-BackSpace"
-
-#: standalone/XFdrake:94
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr ""
-
-#: standalone/drakTermServ:112 standalone/drakTermServ:118
-#, fuzzy, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: параметр ‛%s’ патрабуе аргумент\n"
-
-#: standalone/drakTermServ:129
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-
-#: standalone/drakTermServ:135
-#, fuzzy, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: параметр ‛%s’ патрабуе аргумент\n"
-
-#: standalone/drakTermServ:144
-#, c-format
-msgid "Host name for client"
-msgstr ""
-
-#: standalone/drakTermServ:145
-#, c-format
-msgid "MAC address should be in the format 00:11:22:33:44:55"
-msgstr ""
-
-#: standalone/drakTermServ:146
-#, c-format
-msgid "IP address to be assigned to client"
-msgstr ""
-
-#: standalone/drakTermServ:147
-#, c-format
-msgid "Kernel/network adapter image to use to boot client"
-msgstr ""
-
-#: standalone/drakTermServ:148
-#, c-format
-msgid "Create masking files to allow configuration tools to run on client"
-msgstr ""
-
-#: standalone/drakTermServ:149
-#, c-format
-msgid "Applications will run on server machine"
-msgstr ""
-
-#: standalone/drakTermServ:234 standalone/drakTermServ:237
-#, fuzzy, c-format
-msgid "Terminal Server Configuration"
-msgstr "Сістэмнае адміністраваньне"
-
-#: standalone/drakTermServ:243
-#, fuzzy, c-format
-msgid "dhcpd Config"
-msgstr "Настройка IDE"
-
-#: standalone/drakTermServ:247
-#, fuzzy, c-format
-msgid "Enable Server"
-msgstr "Сервер друку"
-
-#: standalone/drakTermServ:253
-#, fuzzy, c-format
-msgid "Disable Server"
-msgstr "Сервер друку"
-
-#: standalone/drakTermServ:259
-#, fuzzy, c-format
-msgid "Start Server"
-msgstr "NIS сэервер:"
-
-#: standalone/drakTermServ:265
-#, fuzzy, c-format
-msgid "Stop Server"
-msgstr "Праграма гуказапісу"
-
-#: standalone/drakTermServ:274
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr ""
-
-#: standalone/drakTermServ:278
-#, c-format
-msgid "Net Boot Images"
-msgstr ""
-
-#: standalone/drakTermServ:285
-#, fuzzy, c-format
-msgid "Add/Del Users"
-msgstr "Дадаць карыстальніка"
-
-#: standalone/drakTermServ:289
-#, fuzzy, c-format
-msgid "Add/Del Clients"
-msgstr "Калькулятар"
-
-#: standalone/drakTermServ:297
-#, c-format
-msgid "Images"
-msgstr "Выявы"
-
-#: standalone/drakTermServ:298
-#, c-format
-msgid "Clients/Users"
-msgstr ""
-
-#: standalone/drakTermServ:316 standalone/drakbug:47
-#, c-format
-msgid "First Time Wizard"
-msgstr ""
-
-#: standalone/drakTermServ:354 standalone/drakTermServ:355
-#, c-format
-msgid "%s defined as dm, adding gdm user to /etc/passwd$$CLIENT$$"
-msgstr ""
-
-#: standalone/drakTermServ:361
-#, c-format
-msgid ""
-"\n"
-" This wizard routine will:\n"
-" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
-"\t2) Setup DHCP.\n"
-"\t\n"
-"After doing these steps, the wizard will:\n"
-"\t\n"
-" a) Make all "
-"nbis. \n"
-" b) Activate the "
-"server. \n"
-" c) Start the "
-"server. \n"
-" d) Synchronize the shadow files so that all users, including root, \n"
-" are added to the shadow$$CLIENT$$ "
-"file. \n"
-" e) Ask you to make a boot floppy.\n"
-" f) If it's thin clients, ask if you want to restart KDM.\n"
-msgstr ""
-
-#: standalone/drakTermServ:407
-#, fuzzy, c-format
-msgid "Cancel Wizard"
-msgstr "Адмена"
-
-#: standalone/drakTermServ:422
-#, c-format
-msgid "Please save dhcpd config!"
-msgstr ""
-
-#: standalone/drakTermServ:450
-#, c-format
-msgid "Use thin clients."
-msgstr ""
-
-#: standalone/drakTermServ:452
-#, c-format
-msgid "Sync client X keyboard settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:454
-#, c-format
-msgid ""
-"Please select default client type (Fat is the default type if 'Use thin' is "
-"unchecked).\n"
-" 'Thin' clients run everything off the server's CPU/RAM, using the client "
-"display.\n"
-" 'Fat' clients use their own CPU/RAM but the server's filesystem."
-msgstr ""
-
-#: standalone/drakTermServ:474
-#, c-format
-msgid "Creating net boot images for all kernels"
-msgstr ""
-
-#: standalone/drakTermServ:475 standalone/drakTermServ:807
-#: standalone/drakTermServ:823
-#, c-format
-msgid "This will take a few minutes."
-msgstr ""
-
-#: standalone/drakTermServ:481 standalone/drakTermServ:521
-#, fuzzy, c-format
-msgid "Done!"
-msgstr "Зроблена"
-
-#: standalone/drakTermServ:492 standalone/drakTermServ:894
-#, c-format
-msgid "%s failed"
-msgstr ""
-
-#: standalone/drakTermServ:501
-#, c-format
-msgid ""
-"Not enough space to create\n"
-"NBIs in %s.\n"
-"Needed: %d MB, Free: %d MB"
-msgstr ""
-
-#: standalone/drakTermServ:507
-#, c-format
-msgid "Syncing server user list with client list, including root."
-msgstr ""
-
-#: standalone/drakTermServ:527
-#, c-format
-msgid ""
-"In order to enable changes made for thin clients, the display manager must "
-"be restarted. Restart now?"
-msgstr ""
-
-#: standalone/drakTermServ:564
-#, fuzzy, c-format
-msgid "Terminal Server Overview"
-msgstr "Сістэмнае адміністраваньне"
-
-#: standalone/drakTermServ:565
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and %s is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-
-#: standalone/drakTermServ:571
-#, c-format
-msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. %s helps create/"
-"remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
-msgstr ""
-
-#: standalone/drakTermServ:589
-#, c-format
-msgid ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be "
-"'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, \n"
-" %s is written for thin clients. \n"
-" System config files xdm-config, kdmrc, and gdm.conf are modified if "
-"thin clients are \n"
-" used, to enable XDMCP. Since there are security issues in using "
-"XDMCP, hosts.deny and \n"
-" hosts.allow are modified to limit access to the local subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-msgstr ""
-
-#: standalone/drakTermServ:609
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-msgstr ""
-
-#: standalone/drakTermServ:621
-#, c-format
-msgid ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. \n"
-" \t%s helps in this respect by adding or removing system users from "
-"this \n"
-" \tfile."
-msgstr ""
-
-#: standalone/drakTermServ:626
-#, c-format
-msgid ""
-" - Per client %s:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t%s will help create these files."
-msgstr ""
-
-#: standalone/drakTermServ:631
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-msgstr ""
-
-#: standalone/drakTermServ:640
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s will configure this file to work in conjunction with the images "
-"created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical TFTP configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
-msgstr ""
-
-#: standalone/drakTermServ:661
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-msgstr ""
-
-#: standalone/drakTermServ:694
-#, c-format
-msgid "Boot Floppy"
-msgstr ""
-
-#: standalone/drakTermServ:696
-#, fuzzy, c-format
-msgid "Boot ISO"
-msgstr "Манітор"
-
-#: standalone/drakTermServ:698
-#, fuzzy, c-format
-msgid "PXE Image"
-msgstr "Вобраз"
-
-#: standalone/drakTermServ:759
-#, fuzzy, c-format
-msgid "Default kernel version"
-msgstr "Скура Па ўмаўчанні"
-
-#: standalone/drakTermServ:764
-#, c-format
-msgid "Create PXE images"
-msgstr ""
-
-#: standalone/drakTermServ:765
-#, c-format
-msgid "Use Unionfs (TS2)"
-msgstr ""
-
-#: standalone/drakTermServ:795
-#, c-format
-msgid "Install i586 kernel for older clients"
-msgstr ""
-
-#: standalone/drakTermServ:805
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr ""
-
-#: standalone/drakTermServ:812
-#, fuzzy, c-format
-msgid "No kernel selected!"
-msgstr "Няма вузла каб выдаліць"
-
-#: standalone/drakTermServ:815
-#, c-format
-msgid "Build Single NIC -->"
-msgstr ""
-
-#: standalone/drakTermServ:819 standalone/drakTermServ:1643
-#, c-format
-msgid "No NIC selected!"
-msgstr ""
-
-#: standalone/drakTermServ:822
-#, c-format
-msgid "Build All Kernels -->"
-msgstr ""
-
-#: standalone/drakTermServ:835
-#, c-format
-msgid ""
-"Custom\n"
-"kernel args"
-msgstr ""
-
-#: standalone/drakTermServ:840
-#, fuzzy, c-format
-msgid "<-- Delete"
-msgstr "Знішчыць"
-
-#: standalone/drakTermServ:845
-#, fuzzy, c-format
-msgid "No image selected!"
-msgstr "Няма вузла каб выдаліць"
-
-#: standalone/drakTermServ:848
-#, c-format
-msgid "Delete All NBIs"
-msgstr ""
-
-#: standalone/drakTermServ:925
-#, c-format
-msgid "Building images for kernel:"
-msgstr ""
-
-#: standalone/drakTermServ:1050
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-
-#: standalone/drakTermServ:1055
-#, fuzzy, c-format
-msgid "Add User -->"
-msgstr "Дадаць карыстальніка"
-
-#: standalone/drakTermServ:1061
-#, c-format
-msgid "<-- Del User"
-msgstr ""
-
-#: standalone/drakTermServ:1097
-#, fuzzy, c-format
-msgid "type: %s"
-msgstr "Тып: "
-
-#: standalone/drakTermServ:1101
-#, c-format
-msgid "local config: %s"
-msgstr ""
-
-#: standalone/drakTermServ:1136
-#, fuzzy, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr "Канфігурацыя сістэмных сэрвісаў"
-
-#: standalone/drakTermServ:1146
-#, c-format
-msgid "No net boot images created!"
-msgstr ""
-
-#: standalone/drakTermServ:1165
-#, fuzzy, c-format
-msgid "Thin Client"
-msgstr "Калькулятар"
-
-#: standalone/drakTermServ:1169
-#, c-format
-msgid "Allow Thin Clients"
-msgstr ""
-
-#: standalone/drakTermServ:1170
-#, c-format
-msgid ""
-"Sync client X keyboard\n"
-" settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:1171
-#, c-format
-msgid "Add Client -->"
-msgstr ""
-
-#: standalone/drakTermServ:1181
-#, c-format
-msgid "Unknown MAC address format"
-msgstr ""
-
-#: standalone/drakTermServ:1195
-#, fuzzy, c-format
-msgid "type: fat"
-msgstr "Тып: "
-
-#: standalone/drakTermServ:1196
-#, fuzzy, c-format
-msgid "type: thin"
-msgstr "Тып: "
-
-#: standalone/drakTermServ:1203
-#, c-format
-msgid "local config: false"
-msgstr ""
-
-#: standalone/drakTermServ:1204
-#, c-format
-msgid "local config: true"
-msgstr ""
-
-#: standalone/drakTermServ:1212
-#, fuzzy, c-format
-msgid "<-- Edit Client"
-msgstr "Калькулятар"
-
-#: standalone/drakTermServ:1237
-#, c-format
-msgid "Disable Local Config"
-msgstr ""
-
-#: standalone/drakTermServ:1244
-#, fuzzy, c-format
-msgid "Delete Client"
-msgstr "Выдаліць пункт"
-
-#: standalone/drakTermServ:1267
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-
-#: standalone/drakTermServ:1313
-#, c-format
-msgid "Thin clients will not work with autologin. Disable autologin?"
-msgstr ""
-
-#: standalone/drakTermServ:1328
-#, c-format
-msgid "All clients will use %s"
-msgstr ""
-
-#: standalone/drakTermServ:1362
-#, fuzzy, c-format
-msgid "Subnet:"
-msgstr "Сіні"
-
-#: standalone/drakTermServ:1369
-#, fuzzy, c-format
-msgid "Netmask:"
-msgstr "Маска сеткі"
-
-#: standalone/drakTermServ:1376
-#, c-format
-msgid "Routers:"
-msgstr ""
-
-#: standalone/drakTermServ:1383
-#, c-format
-msgid "Subnet Mask:"
-msgstr ""
-
-#: standalone/drakTermServ:1390
-#, c-format
-msgid "Broadcast Address:"
-msgstr ""
-
-#: standalone/drakTermServ:1397
-#, fuzzy, c-format
-msgid "Domain Name:"
-msgstr "Імя дамену"
-
-#: standalone/drakTermServ:1405
-#, fuzzy, c-format
-msgid "Name Servers:"
-msgstr "NIS сэервер:"
-
-#: standalone/drakTermServ:1416
-#, c-format
-msgid "IP Range Start:"
-msgstr ""
-
-#: standalone/drakTermServ:1417
-#, c-format
-msgid "IP Range End:"
-msgstr ""
-
-#: standalone/drakTermServ:1459
-#, c-format
-msgid "Append TS Includes To Existing Config"
-msgstr ""
-
-#: standalone/drakTermServ:1461
-#, fuzzy, c-format
-msgid "Write Config"
-msgstr "Канфігурацыя"
-
-#: standalone/drakTermServ:1477
-#, fuzzy, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Канфігурацыя сістэмных сэрвісаў"
-
-#: standalone/drakTermServ:1478
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-
-#: standalone/drakTermServ:1481
-#, c-format
-msgid ""
-"Dynamic IP Address Pool\n"
-"(needed for PXE clients):"
-msgstr ""
-
-#: standalone/drakTermServ:1634
-#, c-format
-msgid "Write to %s failed!"
-msgstr ""
-
-#: standalone/drakTermServ:1647
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr ""
-
-#: standalone/drakTermServ:1651
-#, c-format
-msgid "Could not access the floppy!"
-msgstr ""
-
-#: standalone/drakTermServ:1653
-#, c-format
-msgid "Floppy can be removed now"
-msgstr ""
-
-#: standalone/drakTermServ:1656
-#, fuzzy, c-format
-msgid "No floppy drive available!"
-msgstr "Дыскавод недаступны"
-
-#: standalone/drakTermServ:1662
-#, c-format
-msgid "PXE image is %s/%s"
-msgstr ""
-
-#: standalone/drakTermServ:1664
-#, fuzzy, c-format
-msgid "Error writing %s/%s"
-msgstr "Памылка запісу ў файл %s"
-
-#: standalone/drakTermServ:1676
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr ""
-
-#: standalone/drakTermServ:1680
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr ""
-
-#: standalone/drakTermServ:1700
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr ""
-
-#: standalone/drakTermServ:1867
-#, c-format
-msgid "%s passwd bad in Terminal Server - rewriting...\n"
-msgstr ""
-
-#: standalone/drakTermServ:1880
-#, c-format
-msgid "%s is not a user..\n"
-msgstr ""
-
-#: standalone/drakTermServ:1881
-#, c-format
-msgid "%s is already a Terminal Server user\n"
-msgstr ""
-
-#: standalone/drakTermServ:1883
-#, c-format
-msgid "Addition of %s to Terminal Server failed!\n"
-msgstr ""
-
-#: standalone/drakTermServ:1885
-#, fuzzy, c-format
-msgid "%s added to Terminal Server\n"
-msgstr "Сістэмнае адміністраваньне"
-
-#: standalone/drakTermServ:1903
-#, fuzzy, c-format
-msgid "Deleted %s...\n"
-msgstr "Выдаліць"
-
-#: standalone/drakTermServ:1905 standalone/drakTermServ:1978
-#, c-format
-msgid "%s not found...\n"
-msgstr ""
-
-#: standalone/drakTermServ:2006
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
-
-#: standalone/drakTermServ:2158
-#, c-format
-msgid "Configuration changed - restart %s/dhcpd?"
-msgstr ""
-
-#: standalone/drakautoinst:38 standalone/drakhosts:123
-#: standalone/drakhosts:129 standalone/draknfs:84 standalone/draknfs:105
-#: standalone/draknfs:444 standalone/draknfs:447 standalone/draknfs:539
-#: standalone/draknfs:546 standalone/draksambashare:187
-#: standalone/draksambashare:208 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Error!"
-msgstr "Памылка!"
-
-#: standalone/drakautoinst:39
-#, c-format
-msgid "I can not find needed image file `%s'."
-msgstr ""
-
-#: standalone/drakautoinst:41
-#, fuzzy, c-format
-msgid "Auto Install Configurator"
-msgstr "Настройка пасля ўсталявання"
-
-#: standalone/drakautoinst:42
-#, c-format
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Press ok to continue."
-msgstr ""
-
-#: standalone/drakautoinst:60
-#, fuzzy, c-format
-msgid "replay"
-msgstr "Граць"
-
-#: standalone/drakautoinst:60 standalone/drakautoinst:69
-#, fuzzy, c-format
-msgid "manual"
-msgstr "Студзень"
-
-#: standalone/drakautoinst:64
-#, fuzzy, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Канфігурацыя MIDI"
-
-#: standalone/drakautoinst:65
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: standalone/drakautoinst:77 standalone/drakautoinst:78
-#: standalone/drakautoinst:92
-#, fuzzy, c-format
-msgid "Creating auto install floppy"
-msgstr "Стварэнне дыскеты для ўсталявання"
-
-#: standalone/drakautoinst:90
-#, fuzzy, c-format
-msgid "Insert another blank floppy in drive %s (for drivers disk)"
-msgstr "Устаўце дыскету ў дыскавод %s"
-
-#: standalone/drakautoinst:91
-#, fuzzy, c-format
-msgid "Creating auto install floppy (drivers disk)"
-msgstr "Стварэнне дыскеты для ўсталявання"
-
-#: standalone/drakautoinst:156
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: standalone/drakautoinst:251
-#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: standalone/drakautoinst:287
-#, fuzzy, c-format
-msgid "Auto Install"
-msgstr "Усталёўка"
-
-#: standalone/drakautoinst:356
-#, fuzzy, c-format
-msgid "Add an item"
-msgstr "Дадаць атрыбут"
-
-#: standalone/drakautoinst:363
-#, fuzzy, c-format
-msgid "Remove the last item"
-msgstr "/Выдаліць дохлыя файлы"
-
-#: standalone/drakbackup:157
-#, c-format
-msgid ""
-"Expect is an extension to the TCL scripting language that allows interactive "
-"sessions without user intervention."
-msgstr ""
-
-#: standalone/drakbackup:158
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr ""
-
-#: standalone/drakbackup:159
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
-
-#: standalone/drakbackup:160
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-
-#: standalone/drakbackup:161
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-
-#: standalone/drakbackup:162
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-
-#: standalone/drakbackup:163
-#, c-format
-msgid ""
-"Star should be selected if you want to backup EA or ACLs, otherwise choose "
-"tar"
-msgstr ""
-
-#: standalone/drakbackup:164
-#, c-format
-msgid ""
-"This should be a local user or email address that you want the backup "
-"results sent to. You will need to define a functioning mail server. Multiple "
-"users can be in a comma seperated list"
-msgstr ""
-
-#: standalone/drakbackup:165
-#, c-format
-msgid ""
-"This should be the return address that you want the backup results sent "
-"from. Default is drakbackup."
-msgstr ""
-
-#: standalone/drakbackup:166
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-
-#: standalone/drakbackup:167
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-
-#: standalone/drakbackup:168
-#, c-format
-msgid ""
-"Selecting this option allows you to view the raw output from the restore "
-"process, after a file restore."
-msgstr ""
-
-#: standalone/drakbackup:169
-#, c-format
-msgid ""
-"Some protocols, like rsync, may be configured at the server end. Rather "
-"than using a directory path, you would use the 'module' name for the service "
-"path."
-msgstr ""
-
-#: standalone/drakbackup:170
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-
-#: standalone/drakbackup:344
-#, c-format
-msgid "No media selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:348
-#, c-format
-msgid "No interval selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:393
-#, c-format
-msgid "Interval cron not available as non-root"
-msgstr ""
-
-#: standalone/drakbackup:477 standalone/logdrake:439
-#, c-format
-msgid "\"%s\" neither is a valid email nor is an existing local user!"
-msgstr ""
-
-#: standalone/drakbackup:481 standalone/logdrake:444
-#, 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 ""
-
-#: standalone/drakbackup:491
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr ""
-
-#: standalone/drakbackup:493
-#, fuzzy, c-format
-msgid "Old user list:\n"
-msgstr "Атрымаць спіс сервакоў"
-
-#: standalone/drakbackup:495
-#, fuzzy, c-format
-msgid "New user list:\n"
-msgstr "Атрымаць спіс сервакоў"
-
-#: standalone/drakbackup:524
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
-msgstr ""
-
-#: standalone/drakbackup:525
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-msgstr ""
-
-#: standalone/drakbackup:531
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:556 standalone/drakbackup:627
-#: standalone/drakbackup:683
-#, c-format
-msgid "Total progress"
-msgstr ""
-
-#: standalone/drakbackup:609
-#, c-format
-msgid ""
-"%s exists, delete?\n"
-"\n"
-"If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-
-#: standalone/drakbackup:618
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr ""
-
-#: standalone/drakbackup:625
-#, fuzzy, c-format
-msgid "Cannot spawn %s."
-msgstr "Немагчыма зачыніць каталёг: %s"
-
-#: standalone/drakbackup:642
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr ""
-
-#: standalone/drakbackup:643
-#, fuzzy, c-format
-msgid "Bad password on %s"
-msgstr "Няма паролю"
-
-#: standalone/drakbackup:644
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr ""
-
-#: standalone/drakbackup:645
-#, fuzzy, c-format
-msgid "Can not find %s on %s"
-msgstr "Не знойздены праграмы\n"
-
-#: standalone/drakbackup:649
-#, c-format
-msgid "%s not responding"
-msgstr ""
-
-#: standalone/drakbackup:653
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-
-#: standalone/drakbackup:703
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr ""
-
-#: standalone/drakbackup:707
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr ""
-
-#: standalone/drakbackup:712
-#, c-format
-msgid "Not erasable media!"
-msgstr ""
-
-#: standalone/drakbackup:754
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr ""
-
-#: standalone/drakbackup:812
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr ""
-
-#: standalone/drakbackup:840
-#, fuzzy, c-format
-msgid "No tape in %s!"
-msgstr "Дапаўненьні"
-
-#: standalone/drakbackup:953
-#, c-format
-msgid ""
-"Backup destination quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-
-#: standalone/drakbackup:973 standalone/drakbackup:1005
-#, c-format
-msgid "Backup system files..."
-msgstr ""
-
-#: standalone/drakbackup:1006 standalone/drakbackup:1045
-#, fuzzy, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Дрэнны файл рэзервовай копіі"
-
-#: standalone/drakbackup:1044
-#, fuzzy, c-format
-msgid "Backup User files..."
-msgstr "Зададзена карыстальнікам..."
-
-#: standalone/drakbackup:1078
-#, fuzzy, c-format
-msgid "Backup Other files..."
-msgstr "Дрэнны файл рэзервовай копіі"
-
-#: standalone/drakbackup:1079
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: standalone/drakbackup:1084
-#, c-format
-msgid "No changes to backup!"
-msgstr ""
-
-#: standalone/drakbackup:1100 standalone/drakbackup:1122
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:1109
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: standalone/drakbackup:1110
-#, c-format
-msgid ""
-"Error during sending file via FTP. Please correct your FTP configuration."
-msgstr ""
-
-#: standalone/drakbackup:1112
-#, c-format
-msgid "file list sent by FTP: %s\n"
-msgstr ""
-
-#: standalone/drakbackup:1127
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:1132
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:1141
-#, c-format
-msgid "Error sending mail. Your report mail was not sent."
-msgstr ""
-
-#: standalone/drakbackup:1142
-#, fuzzy, c-format
-msgid " Error while sending mail. \n"
-msgstr ""
-"Памылка аналіза\n"
-" канфігурацыйнага файла."
-
-#: standalone/drakbackup:1172
-#, fuzzy, c-format
-msgid "Can not create catalog!"
-msgstr "Немагчыма запісаць тэг!"
-
-#: standalone/drakbackup:1332
-#, fuzzy, c-format
-msgid "Problem installing %s"
-msgstr "Праблемы з усталяваннем пакету %s"
-
-#: standalone/drakbackup:1420
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr ""
-
-#: standalone/drakbackup:1421 standalone/drakbackup:1484
-#: standalone/drakbackup:1550
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr ""
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, fuzzy, c-format
-msgid "Use Incremental Backups"
-msgstr "Інструмэнтальны Рок"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Differential Backups"
-msgstr ""
-
-#: standalone/drakbackup:1425
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: standalone/drakbackup:1456
-#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr ""
-
-#: standalone/drakbackup:1483
-#, fuzzy, c-format
-msgid "Do not include the browser cache"
-msgstr "Настроіць проксі сэрвэры"
-
-#: standalone/drakbackup:1537
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr ""
-
-#: standalone/drakbackup:1538 standalone/drakfont:650
-#, fuzzy, c-format
-msgid "Remove Selected"
-msgstr "/Выдаліць/Выбранае"
-
-#: standalone/drakbackup:1601
-#, c-format
-msgid "Users"
-msgstr "Карыстальнікі"
-
-#: standalone/drakbackup:1621
-#, c-format
-msgid "Use network connection to backup"
-msgstr ""
-
-#: standalone/drakbackup:1623
-#, c-format
-msgid "Net Method:"
-msgstr ""
-
-#: standalone/drakbackup:1627
-#, c-format
-msgid "Use Expect for SSH"
-msgstr ""
-
-#: standalone/drakbackup:1628
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr ""
-
-#: standalone/drakbackup:1630
-#, c-format
-msgid "Transfer Now"
-msgstr ""
-
-#: standalone/drakbackup:1632
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr ""
-
-#: standalone/drakbackup:1635
-#, fuzzy, c-format
-msgid "Host name or IP."
-msgstr "Імя машыны"
-
-#: standalone/drakbackup:1640
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
-
-#: standalone/drakbackup:1652
-#, c-format
-msgid "Remember this password"
-msgstr "Запомніць гэты пароль"
-
-#: standalone/drakbackup:1664
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr ""
-
-#: standalone/drakbackup:1755
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr ""
-
-#: standalone/drakbackup:1758
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr ""
-
-#: standalone/drakbackup:1763
-#, fuzzy, c-format
-msgid "Choose your CD/DVD media size"
-msgstr "Выберыце ваш стыль меню :"
-
-#: standalone/drakbackup:1770
-#, c-format
-msgid "Multisession CD"
-msgstr ""
-
-#: standalone/drakbackup:1772
-#, c-format
-msgid "CDRW media"
-msgstr ""
-
-#: standalone/drakbackup:1778
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr ""
-
-#: standalone/drakbackup:1779
-#, c-format
-msgid " Erase Now "
-msgstr ""
-
-#: standalone/drakbackup:1785
-#, c-format
-msgid "DVD+RW media"
-msgstr ""
-
-#: standalone/drakbackup:1787
-#, c-format
-msgid "DVD-R media"
-msgstr ""
-
-#: standalone/drakbackup:1789
-#, fuzzy, c-format
-msgid "DVDRAM device"
-msgstr "CD-ROM прылада"
-
-#: standalone/drakbackup:1820
-#, c-format
-msgid "No CD device defined!"
-msgstr ""
-
-#: standalone/drakbackup:1862
-#, c-format
-msgid "Use tape to backup"
-msgstr ""
-
-#: standalone/drakbackup:1865
-#, c-format
-msgid "Device name to use for backup"
-msgstr ""
-
-#: standalone/drakbackup:1871
-#, c-format
-msgid "Backup directly to tape"
-msgstr ""
-
-#: standalone/drakbackup:1877
-#, c-format
-msgid "Use tape hardware compression (EXPERIMENTAL)"
-msgstr ""
-
-#: standalone/drakbackup:1883
-#, c-format
-msgid "Do not rewind tape after backup"
-msgstr ""
-
-#: standalone/drakbackup:1889
-#, c-format
-msgid "Erase tape before backup"
-msgstr ""
-
-#: standalone/drakbackup:1895
-#, c-format
-msgid "Eject tape after the backup"
-msgstr ""
-
-#: standalone/drakbackup:1976
-#, fuzzy, c-format
-msgid "Enter the directory to save to:"
-msgstr "Выбраць каталог для дадатку"
-
-#: standalone/drakbackup:1980
-#, fuzzy, c-format
-msgid "Directory to save to"
-msgstr "Каталог %s Так"
-
-#: standalone/drakbackup:1985
-#, c-format
-msgid ""
-"Maximum disk space\n"
-" allocated for backups (MB)"
-msgstr ""
-
-#: standalone/drakbackup:1989
-#, c-format
-msgid ""
-"Delete incremental or differential\n"
-" backups older than N days\n"
-" (0 is keep all backups) to save space"
-msgstr ""
-
-#: standalone/drakbackup:2056
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr ""
-
-#: standalone/drakbackup:2061
-#, fuzzy, c-format
-msgid "HardDrive / NFS"
-msgstr "Мальды"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2077
-#: standalone/drakbackup:2082
-#, fuzzy, c-format
-msgid "hourly"
-msgstr "Кантры"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2078
-#: standalone/drakbackup:2083
-#, fuzzy, c-format
-msgid "daily"
-msgstr "Электронная пошта"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2079
-#: standalone/drakbackup:2084
-#, c-format
-msgid "weekly"
-msgstr ""
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2080
-#: standalone/drakbackup:2085
-#, fuzzy, c-format
-msgid "monthly"
-msgstr "Месяц"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2081
-#: standalone/drakbackup:2086
-#, c-format
-msgid "custom"
-msgstr "карыстальнік"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "January"
-msgstr "Студзень"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "February"
-msgstr "Люты"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "March"
-msgstr "Сакавік"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "April"
-msgstr "Красавік"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "May"
-msgstr "Травень"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "June"
-msgstr "Чэрвень"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "July"
-msgstr "Ліпень"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "August"
-msgstr "Жнівень"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "September"
-msgstr "Верасень"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "October"
-msgstr "Кастрычнік"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "November"
-msgstr "Лістапад"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "December"
-msgstr "Сьнежань"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Sunday"
-msgstr "Нядзеля"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Monday"
-msgstr "Панядзелак"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Tuesday"
-msgstr "Аўторак"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Wednesday"
-msgstr "Серада"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Thursday"
-msgstr "Чацьвер"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Friday"
-msgstr "Пятніца"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Saturday"
-msgstr "Субота"
-
-#: standalone/drakbackup:2126
-#, fuzzy, c-format
-msgid "Delete cron entry"
-msgstr "Выдаліць пункт"
-
-#: standalone/drakbackup:2127
-#, fuzzy, c-format
-msgid "Add cron entry"
-msgstr "Прынтэр"
-
-#: standalone/drakbackup:2185
-#, fuzzy, c-format
-msgid "Use daemon"
-msgstr "Імя карыстальніка"
-
-#: standalone/drakbackup:2189
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr ""
-
-#: standalone/drakbackup:2197
-#, c-format
-msgid "Minute"
-msgstr "Хвіліна"
-
-#: standalone/drakbackup:2201
-#, c-format
-msgid "Hour"
-msgstr "Гадзіна"
-
-#: standalone/drakbackup:2205
-#, c-format
-msgid "Day"
-msgstr "Дзень"
-
-#: standalone/drakbackup:2209
-#, c-format
-msgid "Month"
-msgstr "Месяц"
-
-#: standalone/drakbackup:2213
-#, fuzzy, c-format
-msgid "Weekday (start)"
-msgstr "Серада"
-
-#: standalone/drakbackup:2217
-#, fuzzy, c-format
-msgid "Weekday (end)"
-msgstr "Серада"
-
-#: standalone/drakbackup:2221
-#, fuzzy, c-format
-msgid "Profile"
-msgstr "Профілі"
-
-#: standalone/drakbackup:2227
-#, fuzzy, c-format
-msgid "Current crontab:"
-msgstr "Прыняць карыстальніка"
-
-#: standalone/drakbackup:2235
-#, fuzzy, c-format
-msgid "Please choose the media for backup."
-msgstr "Калі ласка, абярыце тып клавіятуры."
-
-#: standalone/drakbackup:2239
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: standalone/drakbackup:2240
-#, c-format
-msgid ""
-"If your machine is not on all the time, you might want to install anacron."
-msgstr ""
-
-#: standalone/drakbackup:2316
-#, fuzzy, c-format
-msgid "Please choose the archive program"
-msgstr "Калі ласка, абярыце тып клавіятуры."
-
-#: standalone/drakbackup:2321
-#, fuzzy, c-format
-msgid "Please choose the compression type"
-msgstr "калі ласка, пазначце тып вашай мышы."
-
-#: standalone/drakbackup:2325
-#, fuzzy, c-format
-msgid "Use .backupignore files"
-msgstr "Дрэнны файл рэзервовай копіі"
-
-#: standalone/drakbackup:2327
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr ""
-
-#: standalone/drakbackup:2333
-#, c-format
-msgid "Return address for sent mail:"
-msgstr ""
-
-#: standalone/drakbackup:2339
-#, fuzzy, c-format
-msgid "SMTP server for mail:"
-msgstr "Інфармацыя аб X-сэрвэры"
-
-#: standalone/drakbackup:2343
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
-
-#: standalone/drakbackup:2344
-#, c-format
-msgid "View restore log after file restore."
-msgstr ""
-
-#: standalone/drakbackup:2389
-#, c-format
-msgid "What"
-msgstr ""
-
-#: standalone/drakbackup:2394
-#, c-format
-msgid "Where"
-msgstr "Дзе"
-
-#: standalone/drakbackup:2399
-#, fuzzy, c-format
-msgid "When"
-msgstr "З колам"
-
-#: standalone/drakbackup:2404
-#, c-format
-msgid "More Options"
-msgstr "Болей выбараў"
-
-#: standalone/drakbackup:2417
-#, c-format
-msgid "Backup destination not configured..."
-msgstr ""
-
-#: standalone/drakbackup:2437 standalone/drakbackup:4367
-#, fuzzy, c-format
-msgid "Drakbackup Configuration"
-msgstr "Канфігурацыя"
-
-#: standalone/drakbackup:2453
-#, fuzzy, c-format
-msgid "Please choose where you want to backup"
-msgstr "калі ласка, пазначце тып вашай мышы."
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Hard Drive used to prepare backups for all media"
-msgstr ""
-
-#: standalone/drakbackup:2456
-#, fuzzy, c-format
-msgid "Across Network"
-msgstr "Сетка"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On CD-R"
-msgstr ""
-
-#: standalone/drakbackup:2456
-#, fuzzy, c-format
-msgid "On Tape Device"
-msgstr "USB прылады"
-
-#: standalone/drakbackup:2502
-#, fuzzy, c-format
-msgid "Backup Users"
-msgstr "Карыстальнікі групы"
-
-#: standalone/drakbackup:2503
-#, fuzzy, c-format
-msgid " (Default is all users)"
-msgstr " (Па дамаўленню)"
-
-#: standalone/drakbackup:2516
-#, fuzzy, c-format
-msgid "Please choose what you want to backup"
-msgstr "калі ласка, пазначце тып вашай мышы."
-
-#: standalone/drakbackup:2517
-#, fuzzy, c-format
-msgid "Backup System"
-msgstr "Сыстэма"
-
-#: standalone/drakbackup:2519
-#, fuzzy, c-format
-msgid "Select user manually"
-msgstr "Пазначыць карыстальніцкі ID"
-
-#: standalone/drakbackup:2548
-#, c-format
-msgid "Please select data to backup..."
-msgstr ""
-
-#: standalone/drakbackup:2620
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: standalone/drakbackup:2621
-#, fuzzy, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr "Сыстэма"
-
-#: standalone/drakbackup:2623
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: standalone/drakbackup:2625
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: standalone/drakbackup:2627
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2628
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr ""
-
-#: standalone/drakbackup:2629
-#, c-format
-msgid "\tDelete backups older than %s day(s)\n"
-msgstr ""
-
-#: standalone/drakbackup:2632
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
-
-#: standalone/drakbackup:2637
-#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr ""
-
-#: standalone/drakbackup:2638
-#, c-format
-msgid "RW"
-msgstr ""
-
-#: standalone/drakbackup:2639
-#, fuzzy, c-format
-msgid " on device: %s"
-msgstr "Мыш: %s\n"
-
-#: standalone/drakbackup:2640
-#, c-format
-msgid " (multi-session)"
-msgstr ""
-
-#: standalone/drakbackup:2641
-#, fuzzy, c-format
-msgid ""
-"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-"%s\n"
-"Немагчыма адчыніць файл: %s"
-
-#: standalone/drakbackup:2642
-#, c-format
-msgid "\t\tErase=%s"
-msgstr ""
-
-#: standalone/drakbackup:2644
-#, c-format
-msgid "\tBackup directly to Tape\n"
-msgstr ""
-
-#: standalone/drakbackup:2646
-#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2647
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: standalone/drakbackup:2648
-#, fuzzy, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Опцыі:"
-
-#: standalone/drakbackup:2649
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: standalone/drakbackup:2651
-#, c-format
-msgid "\tBackups use %s and bzip2\n"
-msgstr ""
-
-#: standalone/drakbackup:2652
-#, c-format
-msgid "\tBackups use %s and gzip\n"
-msgstr ""
-
-#: standalone/drakbackup:2653
-#, fuzzy, c-format
-msgid "\tBackups use %s only\n"
-msgstr "Дрэнны файл рэзервовай копіі"
-
-#: standalone/drakbackup:2655
-#, fuzzy, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "Дрэнны файл рэзервовай копіі"
-
-#: standalone/drakbackup:2656
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2657
-#, c-format
-msgid "\tSend mail from %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2658
-#, c-format
-msgid "\tUsing SMTP server %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2660
-#, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
-msgstr ""
-
-#: standalone/drakbackup:2661
-#, fuzzy, c-format
-msgid "\t-Hard drive.\n"
-msgstr "Мальды"
-
-#: standalone/drakbackup:2662
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr ""
-
-#: standalone/drakbackup:2663
-#, c-format
-msgid "\t-Tape \n"
-msgstr ""
-
-#: standalone/drakbackup:2664
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: standalone/drakbackup:2665
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: standalone/drakbackup:2666
-#, fuzzy, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "Сеткавы проксі"
-
-#: standalone/drakbackup:2668
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: standalone/drakbackup:2673
-#, c-format
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:2675
-#, c-format
-msgid "- Restore System Files.\n"
-msgstr ""
-
-#: standalone/drakbackup:2677 standalone/drakbackup:2687
-#, c-format
-msgid " - from date: %s %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2680
-#, c-format
-msgid "- Restore User Files: \n"
-msgstr ""
-
-#: standalone/drakbackup:2685
-#, c-format
-msgid "- Restore Other Files: \n"
-msgstr ""
-
-#: standalone/drakbackup:2864
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:2866
-#, fuzzy, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Калі ласка, пазначце послядоўны порт, да якога падключана вашая мыш."
-
-#: standalone/drakbackup:2876
-#, c-format
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: standalone/drakbackup:2897
-#, c-format
-msgid " All of your selected data have been "
-msgstr ""
-
-#: standalone/drakbackup:2898
-#, c-format
-msgid " Successfully Restored on %s "
-msgstr ""
-
-#: standalone/drakbackup:2999
-#, c-format
-msgid "/usr/bin/star not found, using tar..."
-msgstr ""
-
-#: standalone/drakbackup:3035
-#, fuzzy, c-format
-msgid " Restore Configuration "
-msgstr "Канфігурацыя"
-
-#: standalone/drakbackup:3063
-#, c-format
-msgid "OK to restore the other files."
-msgstr ""
-
-#: standalone/drakbackup:3079
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: standalone/drakbackup:3144
-#, c-format
-msgid "Please choose the date to restore:"
-msgstr ""
-
-#: standalone/drakbackup:3181
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr ""
-
-#: standalone/drakbackup:3183
-#, fuzzy, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Выберыце каталог у якім будзе захоўвацца MPEG:"
-
-#: standalone/drakbackup:3187
-#, c-format
-msgid "Directory with backups"
-msgstr ""
-
-#: standalone/drakbackup:3241
-#, c-format
-msgid "Select another media to restore from"
-msgstr ""
-
-#: standalone/drakbackup:3243
-#, fuzzy, c-format
-msgid "Other Media"
-msgstr "Іншыя"
-
-#: standalone/drakbackup:3248
-#, fuzzy, c-format
-msgid "Restore system"
-msgstr "Усталяванне сістэмы"
-
-#: standalone/drakbackup:3249
-#, c-format
-msgid "Restore Users"
-msgstr ""
-
-#: standalone/drakbackup:3250
-#, fuzzy, c-format
-msgid "Restore Other"
-msgstr "Рэстарт"
-
-#: standalone/drakbackup:3252
-#, c-format
-msgid "Select path to restore (instead of /)"
-msgstr ""
-
-#: standalone/drakbackup:3256 standalone/drakbackup:3539
-#, c-format
-msgid "Path To Restore To"
-msgstr ""
-
-#: standalone/drakbackup:3259
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: standalone/drakbackup:3261
-#, c-format
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: standalone/drakbackup:3345
-#, c-format
-msgid "Filename text substring to search for (empty string matches all):"
-msgstr ""
-
-#: standalone/drakbackup:3348
-#, fuzzy, c-format
-msgid "Search Backups"
-msgstr "Шукаць: "
-
-#: standalone/drakbackup:3367
-#, c-format
-msgid "No matches found..."
-msgstr ""
-
-#: standalone/drakbackup:3371
-#, fuzzy, c-format
-msgid "Restore Selected"
-msgstr "/Выдаліць/Выбранае"
-
-#: standalone/drakbackup:3507
-#, c-format
-msgid ""
-"Click date/time to see backup files.\n"
-"Ctrl-Click files to select multiple files."
-msgstr ""
-
-#: standalone/drakbackup:3513
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
-
-#: standalone/drakbackup:3522
-#, fuzzy, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr "/Выдаліць/Выбранае"
-
-#: standalone/drakbackup:3599
-#, c-format
-msgid "Backup files not found at %s."
-msgstr ""
-
-#: standalone/drakbackup:3612
-#, fuzzy, c-format
-msgid "Restore From CD"
-msgstr "Выдаліць з RAID"
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-
-#: standalone/drakbackup:3614
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr ""
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid "Restore From Tape"
-msgstr ""
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-
-#: standalone/drakbackup:3626
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network"
-msgstr ""
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr ""
-
-#: standalone/drakbackup:3638
-#, c-format
-msgid "Host Name"
-msgstr "Назва вузла"
-
-#: standalone/drakbackup:3639
-#, c-format
-msgid "Host Path or Module"
-msgstr ""
-
-#: standalone/drakbackup:3646
-#, fuzzy, c-format
-msgid "Password required"
-msgstr "Настроіць паролі"
-
-#: standalone/drakbackup:3652
-#, fuzzy, c-format
-msgid "Username required"
-msgstr "Імя карыстальніку:"
-
-#: standalone/drakbackup:3655
-#, fuzzy, c-format
-msgid "Hostname required"
-msgstr "Імя машыны"
-
-#: standalone/drakbackup:3660
-#, c-format
-msgid "Path or Module required"
-msgstr ""
-
-#: standalone/drakbackup:3672
-#, c-format
-msgid "Files Restored..."
-msgstr ""
-
-#: standalone/drakbackup:3675
-#, c-format
-msgid "Restore Failed..."
-msgstr ""
-
-#: standalone/drakbackup:3703
-#, c-format
-msgid "%s not retrieved..."
-msgstr ""
-
-#: standalone/drakbackup:3929 standalone/drakbackup:3998
-#, fuzzy, c-format
-msgid "Search for files to restore"
-msgstr "Адшукаць файлы на дыску"
-
-#: standalone/drakbackup:3933
-#, c-format
-msgid "Restore all backups"
-msgstr ""
-
-#: standalone/drakbackup:3941
-#, fuzzy, c-format
-msgid "Custom Restore"
-msgstr "Па выбару"
-
-#: standalone/drakbackup:3945 standalone/drakbackup:3994
-#, c-format
-msgid "Restore From Catalog"
-msgstr ""
-
-#: standalone/drakbackup:3966
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr ""
-
-#: standalone/drakbackup:3967
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr ""
-
-#: standalone/drakbackup:3968
-#, c-format
-msgid " and the CD is in the drive"
-msgstr ""
-
-#: standalone/drakbackup:3970
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr ""
-
-#: standalone/drakbackup:3986
-#, c-format
-msgid "CD in place - continue."
-msgstr ""
-
-#: standalone/drakbackup:3991
-#, c-format
-msgid "Browse to new restore repository."
-msgstr ""
-
-#: standalone/drakbackup:3992
-#, c-format
-msgid "Directory To Restore From"
-msgstr ""
-
-#: standalone/drakbackup:4028
-#, c-format
-msgid "Restore Progress"
-msgstr ""
-
-#: standalone/drakbackup:4136
-#, fuzzy, c-format
-msgid "Build Backup"
-msgstr "Чорны"
-
-#: standalone/drakbackup:4169 standalone/drakbackup:4466
-#, c-format
-msgid "Restore"
-msgstr "Аднавіць"
-
-#: standalone/drakbackup:4261
-#, fuzzy, c-format
-msgid "Please select data to restore..."
-msgstr "Пазначце ня менш адной групы для карыстальніка"
-
-#: standalone/drakbackup:4301
-#, fuzzy, c-format
-msgid "Backup system files"
-msgstr "Дрэнны файл рэзервовай копіі"
-
-#: standalone/drakbackup:4304
-#, fuzzy, c-format
-msgid "Backup user files"
-msgstr "Дрэнны файл рэзервовай копіі"
-
-#: standalone/drakbackup:4307
-#, fuzzy, c-format
-msgid "Backup other files"
-msgstr "Дрэнны файл рэзервовай копіі"
-
-#: standalone/drakbackup:4310 standalone/drakbackup:4344
-#, c-format
-msgid "Total Progress"
-msgstr ""
-
-#: standalone/drakbackup:4336
-#, c-format
-msgid "Sending files by FTP"
-msgstr ""
-
-#: standalone/drakbackup:4339
-#, fuzzy, c-format
-msgid "Sending files..."
-msgstr "Вызначэнне прыладаў..."
-
-#: standalone/drakbackup:4409
-#, fuzzy, c-format
-msgid "Backup Now from configuration file"
-msgstr "Завершана аднаўленьне канфігурацыі меню"
-
-#: standalone/drakbackup:4414
-#, fuzzy, c-format
-msgid "View Backup Configuration."
-msgstr "Канфігурацыя сеткі"
-
-#: standalone/drakbackup:4440
-#, fuzzy, c-format
-msgid "Wizard Configuration"
-msgstr "Канфігурацыя"
-
-#: standalone/drakbackup:4445
-#, fuzzy, c-format
-msgid "Advanced Configuration"
-msgstr "Канфігурацыя"
-
-#: standalone/drakbackup:4450
-#, fuzzy, c-format
-msgid "View Configuration"
-msgstr "Канфігурацыя"
-
-#: standalone/drakbackup:4454
-#, fuzzy, c-format
-msgid "View Last Log"
-msgstr "Відэа"
-
-#: standalone/drakbackup:4459
-#, fuzzy, c-format
-msgid "Backup Now"
-msgstr "Чорны"
-
-#: standalone/drakbackup:4463
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: standalone/drakbackup:4501
-#, fuzzy, c-format
-msgid "Load profile"
-msgstr "Лякальны файл"
-
-#: standalone/drakbackup:4510
-#, fuzzy, c-format
-msgid "Save profile as..."
-msgstr "Захаваць спіс"
-
-#: standalone/drakbackup:4532 standalone/drakbackup:4535
-#, fuzzy, c-format
-msgid "Drakbackup"
-msgstr "Чорны"
-
-#: standalone/drakboot:49
-#, c-format
-msgid "No bootloader found, creating a new configuration"
-msgstr ""
-
-#: standalone/drakboot:84 standalone/harddrake2:190 standalone/harddrake2:191
-#: standalone/logdrake:69 standalone/printerdrake:150
-#: standalone/printerdrake:151 standalone/printerdrake:152
-#, c-format
-msgid "/_File"
-msgstr "/_Файл"
-
-#: standalone/drakboot:85 standalone/logdrake:75
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Файл/_Выйсьці"
-
-#: standalone/drakboot:85 standalone/harddrake2:191 standalone/logdrake:75
-#: standalone/printerdrake:152
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: standalone/drakboot:125
-#, c-format
-msgid "Text only"
-msgstr "Толькі тэкст"
-
-#: standalone/drakboot:126
-#, c-format
-msgid "Verbose"
-msgstr ""
-
-#: standalone/drakboot:127
-#, c-format
-msgid "Silent"
-msgstr ""
-
-#: standalone/drakboot:134
-#, c-format
-msgid ""
-"Your system bootloader is not in framebuffer mode. To activate graphical "
-"boot, select a graphic video mode from the bootloader configuration tool."
-msgstr ""
-
-#: standalone/drakboot:135
-#, fuzzy, c-format
-msgid "Do you want to configure it now?"
-msgstr "Ці жадаеце пратэсціраваць настройкі?"
-
-#: standalone/drakboot:144
-#, fuzzy, c-format
-msgid "Install themes"
-msgstr "Усталяванне сістэмы"
-
-#: standalone/drakboot:146
-#, c-format
-msgid "Graphical boot theme selection"
-msgstr ""
-
-#: standalone/drakboot:149
-#, fuzzy, c-format
-msgid "Graphical boot mode:"
-msgstr "Абалонка"
-
-#: standalone/drakboot:151
-#, c-format
-msgid "Theme"
-msgstr "Тэма"
-
-#: standalone/drakboot:154
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-
-#: standalone/drakboot:159
-#, fuzzy, c-format
-msgid "Create new theme"
-msgstr "Стварыць новага карыстальніка"
-
-#: standalone/drakboot:191
-#, fuzzy, c-format
-msgid "Default user"
-msgstr "Па ўмаўчанні (%s)"
-
-#: standalone/drakboot:192
-#, fuzzy, c-format
-msgid "Default desktop"
-msgstr "Скура Па ўмаўчанні"
-
-#: standalone/drakboot:195
-#, c-format
-msgid "No, I do not want autologin"
-msgstr ""
-
-#: standalone/drakboot:196
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr ""
-
-#: standalone/drakboot:203
-#, fuzzy, c-format
-msgid "System mode"
-msgstr "Сыстэмнае меню"
-
-#: standalone/drakboot:206
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr ""
-
-#: standalone/drakboot:272
-#, c-format
-msgid ""
-"Please choose a video mode, it will be applied to each of the boot entries "
-"selected below.\n"
-"Be sure your video card supports the mode you choose."
-msgstr ""
-
-#: standalone/drakbug:41
-#, fuzzy, c-format
-msgid "Mandriva Linux Bug Report Tool"
-msgstr "Дастасаваньне для кіраваньня карыстальнікамі Mandriva Linux"
-
-#: standalone/drakbug:46
-#, fuzzy, c-format
-msgid "Mandriva Linux Control Center"
-msgstr "Цэнтар кіраваньня"
-
-#: standalone/drakbug:48
-#, fuzzy, c-format
-msgid "Synchronization tool"
-msgstr "Канфігурацыя сістэмных сэрвісаў"
-
-#: standalone/drakbug:49 standalone/drakbug:152
-#, fuzzy, c-format
-msgid "Standalone Tools"
-msgstr "Кансольныя інструментальныя сродкі"
-
-#: standalone/drakbug:50
-#, c-format
-msgid "HardDrake"
-msgstr ""
-
-#: standalone/drakbug:51
-#, c-format
-msgid "Mandriva Online"
-msgstr ""
-
-#: standalone/drakbug:52
-#, fuzzy, c-format
-msgid "Menudrake"
-msgstr "Рэдактар мэню"
-
-#: standalone/drakbug:53
-#, fuzzy, c-format
-msgid "Msec"
-msgstr "Мыш"
-
-#: standalone/drakbug:54
-#, fuzzy, c-format
-msgid "Remote Control"
-msgstr "Кантролер гучнасьці"
-
-#: standalone/drakbug:55
-#, fuzzy, c-format
-msgid "Software Manager"
-msgstr "Мэнэджэр сэрвісаў"
-
-#: standalone/drakbug:56
-#, c-format
-msgid "Urpmi"
-msgstr ""
-
-#: standalone/drakbug:57
-#, fuzzy, c-format
-msgid "Windows Migration tool"
-msgstr "Уласьцівасьці акна"
-
-#: standalone/drakbug:58 standalone/draksambashare:1234
-#, c-format
-msgid "Userdrake"
-msgstr ""
-
-#: standalone/drakbug:59
-#, fuzzy, c-format
-msgid "Configuration Wizards"
-msgstr "Канфігурацыя"
-
-#: standalone/drakbug:81
-#, c-format
-msgid "Select Mandriva Tool:"
-msgstr ""
-
-#: standalone/drakbug:82
-#, c-format
-msgid ""
-"or Application Name\n"
-"(or Full Path):"
-msgstr ""
-
-#: standalone/drakbug:85
-#, fuzzy, c-format
-msgid "Find Package"
-msgstr "Пэйджэр"
-
-#: standalone/drakbug:87
-#, fuzzy, c-format
-msgid "Package: "
-msgstr "Пэйджэр"
-
-#: standalone/drakbug:88
-#, fuzzy, c-format
-msgid "Kernel:"
-msgstr "Імя"
-
-#: standalone/drakbug:101
-#, c-format
-msgid ""
-"To submit a bug report, click on the report button. \n"
-"This will open a web browser window on %s where you'll find a form to fill "
-"in. The information displayed above will be transferred to that server. \n"
-"Things useful to include in your report are the output of lspci, kernel "
-"version, and /proc/cpuinfo."
-msgstr ""
-
-#: standalone/drakbug:107
-#, fuzzy, c-format
-msgid "Report"
-msgstr "Цыклічна"
-
-#: standalone/drakbug:162
-#, fuzzy, c-format
-msgid "Not installed"
-msgstr "Заканчэнне ўсталявання"
-
-#: standalone/drakbug:174
-#, fuzzy, c-format
-msgid "Package not installed"
-msgstr "Выбар пакетаў"
-
-#: standalone/drakclock:29
-#, fuzzy, c-format
-msgid "DrakClock"
-msgstr "Рок"
-
-#: standalone/drakclock:39
-#, fuzzy, c-format
-msgid "not defined"
-msgstr "Настроіць панэль"
-
-#: standalone/drakclock:41
-#, c-format
-msgid "Change Time Zone"
-msgstr ""
-
-#: standalone/drakclock:45
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr ""
-
-#: standalone/drakclock:47
-#, c-format
-msgid "GMT - DrakClock"
-msgstr ""
-
-#: standalone/drakclock:47 standalone/finish-install:57
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Ваш сістэмны гадзіннік усталяваны на GMT?"
-
-#: standalone/drakclock:75
-#, fuzzy, c-format
-msgid "Network Time Protocol"
-msgstr "Сеткавы інтэрфейс"
-
-#: standalone/drakclock:77
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-
-#: standalone/drakclock:78
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr ""
-
-#: standalone/drakclock:86
-#, c-format
-msgid "Server:"
-msgstr "Сэрвэр:"
-
-#: standalone/drakclock:124
-#, c-format
-msgid "Could not synchronize with %s."
-msgstr ""
-
-#: standalone/drakclock:146 standalone/drakclock:156
-#, c-format
-msgid "Reset"
-msgstr "Скінуць"
-
-#: standalone/drakclock:224
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol\n"
-"\n"
-"Do you want to install ntp?"
-msgstr ""
-
-#: standalone/drakconnect:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Канфігурацыя сеткі"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Gateway:"
-msgstr "Шлюз:"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Interface:"
-msgstr "Інтэрфэйс:"
-
-#: standalone/drakconnect:93 standalone/net_monitor:116
-#, c-format
-msgid "Wait please"
-msgstr ""
-
-#: standalone/drakconnect:109
-#, c-format
-msgid "Interface"
-msgstr "Інтэрфэйс"
-
-#: standalone/drakconnect:109 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "State"
-msgstr "Стан"
-
-#: standalone/drakconnect:126
-#, c-format
-msgid "Hostname: "
-msgstr "Імя машыны: "
-
-#: standalone/drakconnect:128
-#, fuzzy, c-format
-msgid "Configure hostname..."
-msgstr "Настройка IDE"
-
-#: standalone/drakconnect:142 standalone/drakconnect:845
-#, fuzzy, c-format
-msgid "LAN configuration"
-msgstr "Настройка ISDN"
-
-#: standalone/drakconnect:147
-#, fuzzy, c-format
-msgid "Configure Local Area Network..."
-msgstr "Настройка сеткі"
-
-#: standalone/drakconnect:155 standalone/drakconnect:237
-#: standalone/drakconnect:241
-#, c-format
-msgid "Apply"
-msgstr "Применить"
-
-#: standalone/drakconnect:188
-#, c-format
-msgid "Manage connections"
-msgstr ""
-
-#: standalone/drakconnect:215
-#, fuzzy, c-format
-msgid "Device selected"
-msgstr "/Выдаліць/Выбранае"
-
-#: standalone/drakconnect:296
-#, fuzzy, c-format
-msgid "IP configuration"
-msgstr "Канфігурацыя"
-
-#: standalone/drakconnect:335
-#, fuzzy, c-format
-msgid "DNS servers"
-msgstr "CDDB сервакі"
-
-#: standalone/drakconnect:343
-#, fuzzy, c-format
-msgid "Search Domain"
-msgstr "NIS Domain"
-
-#: standalone/drakconnect:351
-#, fuzzy, c-format
-msgid "static"
-msgstr "Антарктыка"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "DHCP"
-msgstr ""
-
-#: standalone/drakconnect:515
-#, fuzzy, c-format
-msgid "Flow control"
-msgstr "Кантроль гуку"
-
-#: standalone/drakconnect:516
-#, fuzzy, c-format
-msgid "Line termination"
-msgstr "Памеры і арыентацыя"
-
-#: standalone/drakconnect:527
-#, c-format
-msgid "Modem timeout"
-msgstr ""
-
-#: standalone/drakconnect:531
-#, fuzzy, c-format
-msgid "Use lock file"
-msgstr "Абярыце файл"
-
-#: standalone/drakconnect:533
-#, c-format
-msgid "Wait for dialup tone before dialing"
-msgstr ""
-
-#: standalone/drakconnect:536
-#, fuzzy, c-format
-msgid "Busy wait"
-msgstr "Калі ласка, пачакайце"
-
-#: standalone/drakconnect:541
-#, fuzzy, c-format
-msgid "Modem sound"
-msgstr "Запісаць гукавы кліп"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Enable"
-msgstr "Уключыць"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Disable"
-msgstr "Выключыць"
-
-#: standalone/drakconnect:593 standalone/harddrake2:50
-#, c-format
-msgid "Media class"
-msgstr ""
-
-#: standalone/drakconnect:594
-#, fuzzy, c-format
-msgid "Module name"
-msgstr "Назва файла"
-
-#: standalone/drakconnect:595
-#, fuzzy, c-format
-msgid "Mac Address"
-msgstr "Адрасная кніга"
-
-#: standalone/drakconnect:596 standalone/harddrake2:28
-#: standalone/harddrake2:120
-#, c-format
-msgid "Bus"
-msgstr "Прац."
-
-#: standalone/drakconnect:597 standalone/harddrake2:34
-#, c-format
-msgid "Location on the bus"
-msgstr ""
-
-#: standalone/drakconnect:700 standalone/drakgw:311
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Ні водны ethernet сеткавы адаптар у вашай сістэме не вызначаны. Калі ласка, "
-"скарыстайце канфігурацыйны інструмэнт."
-
-#: standalone/drakconnect:709
-#, fuzzy, c-format
-msgid "Remove a network interface"
-msgstr "Пазначце сеткавы інтэрфейс"
-
-#: standalone/drakconnect:713
-#, fuzzy, c-format
-msgid "Select the network interface to remove:"
-msgstr "Пазначце сеткавы інтэрфейс"
-
-#: standalone/drakconnect:745
-#, c-format
-msgid ""
-"An error occurred while deleting the \"%s\" network interface:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: standalone/drakconnect:746
-#, c-format
-msgid ""
-"Congratulations, the \"%s\" network interface has been successfully deleted"
-msgstr ""
-
-#: standalone/drakconnect:761
-#, c-format
-msgid "No IP"
-msgstr ""
-
-#: standalone/drakconnect:762
-#, c-format
-msgid "No Mask"
-msgstr ""
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
+#: timezone.pm:148 timezone.pm:149
#, fuzzy, c-format
-msgid "up"
-msgstr "Скокнуць"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "down"
-msgstr ""
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Connected"
-msgstr "Далучаны"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Not connected"
-msgstr "Адлучаны"
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Disconnect..."
-msgstr ""
-
-#: standalone/drakconnect:800
-#, fuzzy, c-format
-msgid "Connect..."
-msgstr "Настройка IDE"
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Deactivate now"
-msgstr ""
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Activate now"
-msgstr ""
-
-#: standalone/drakconnect:849
-#, c-format
-msgid ""
-"You do not have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: standalone/drakconnect:863
-#, fuzzy, c-format
-msgid "LAN Configuration"
-msgstr "Канфігурацыя"
-
-#: standalone/drakconnect:875
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: standalone/drakconnect:884
-#, fuzzy, c-format
-msgid "Boot Protocol"
-msgstr "Пратакол"
-
-#: standalone/drakconnect:885
-#, c-format
-msgid "Started on boot"
-msgstr ""
-
-#: standalone/drakconnect:921
-#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakconnect:975 standalone/net_applet:51
-#, c-format
-msgid ""
-"You do not have any configured Internet connection.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: standalone/drakconnect:976 standalone/drakroam:34 standalone/net_applet:52
-#, fuzzy, c-format
-msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
-msgstr "Пазначце сеткавы інтэрфейс"
-
-#: standalone/drakconnect:981
-#, fuzzy, c-format
-msgid "Internet connection configuration"
-msgstr "Настройка далучэння да Інтэрнэту"
-
-#: standalone/drakconnect:994
-#, c-format
-msgid "Third DNS server (optional)"
-msgstr ""
-
-#: standalone/drakconnect:1016
-#, fuzzy, c-format
-msgid "Internet Connection Configuration"
-msgstr "Настройка далучэння да Інтэрнэту"
-
-#: standalone/drakconnect:1017
-#, c-format
-msgid "Internet access"
-msgstr ""
-
-#: standalone/drakconnect:1019 standalone/net_monitor:95
-#, fuzzy, c-format
-msgid "Connection type: "
-msgstr "Імя злучэння"
-
-#: standalone/drakconnect:1022
-#, c-format
-msgid "Status:"
-msgstr "Стан:"
-
-#: standalone/drakconnect:1027
-#, c-format
-msgid "Parameters"
-msgstr "Парамэтры"
-
-#: standalone/drakedm:40
-#, c-format
-msgid "GDM (GNOME Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:41
-#, c-format
-msgid "KDM (KDE Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:42
-#, fuzzy, c-format
-msgid "XDM (X Display Manager)"
-msgstr "Мэнэджэр файлаў"
-
-#: standalone/drakedm:53
-#, fuzzy, c-format
-msgid "Choosing a display manager"
-msgstr "Мэнэджэр файлаў"
-
-#: standalone/drakedm:54
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-
-#: standalone/drakedm:72
-#, fuzzy, c-format
-msgid "The change is done, do you want to restart the dm service?"
-msgstr "Куды вы жадаеце манціраваць прыладу %s?"
-
-#: standalone/drakedm:73
-#, c-format
-msgid ""
-"You are going to close all running programs and lose your current session. "
-"Are you really sure that you want to restart the dm service?"
-msgstr ""
-
-#: standalone/drakfont:182
-#, c-format
-msgid "Search installed fonts"
-msgstr ""
-
-#: standalone/drakfont:184
-#, c-format
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: standalone/drakfont:207
-#, fuzzy, c-format
-msgid "parse all fonts"
-msgstr "Выкарыстовываць шрыфт X"
-
-#: standalone/drakfont:209
-#, c-format
-msgid "No fonts found"
-msgstr ""
-
-#: standalone/drakfont:217 standalone/drakfont:259 standalone/drakfont:326
-#: standalone/drakfont:359 standalone/drakfont:367 standalone/drakfont:393
-#: standalone/drakfont:411 standalone/drakfont:425
-#, fuzzy, c-format
-msgid "done"
-msgstr "Зроблена"
-
-#: standalone/drakfont:222
-#, c-format
-msgid "Could not find any font in your mounted partitions"
-msgstr ""
-
-#: standalone/drakfont:257
-#, c-format
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: standalone/drakfont:260
-#, fuzzy, c-format
-msgid "Could not find any font.\n"
-msgstr "Не знойздены праграмы\n"
-
-#: standalone/drakfont:270
-#, fuzzy, c-format
-msgid "Search for fonts in installed list"
-msgstr "Адшукаць файлы на дыску"
-
-#: standalone/drakfont:295
-#, c-format
-msgid "%s fonts conversion"
-msgstr ""
-
-#: standalone/drakfont:324
-#, fuzzy, c-format
-msgid "Fonts copy"
-msgstr "Шрыфты"
-
-#: standalone/drakfont:327
-#, fuzzy, c-format
-msgid "True Type fonts installation"
-msgstr "Падрыхтоўка ўсталяваньня"
-
-#: standalone/drakfont:334
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: standalone/drakfont:335
-#, c-format
-msgid "True Type install done"
-msgstr ""
-
-#: standalone/drakfont:341 standalone/drakfont:356
-#, c-format
-msgid "type1inst building"
-msgstr ""
-
-#: standalone/drakfont:350
-#, c-format
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: standalone/drakfont:360
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr ""
-
-#: standalone/drakfont:363
-#, fuzzy, c-format
-msgid "Restart XFS"
-msgstr "Рэстарт"
-
-#: standalone/drakfont:409 standalone/drakfont:419
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: standalone/drakfont:421
-#, fuzzy, c-format
-msgid "xfs restart"
-msgstr "Рэстарт"
-
-#: standalone/drakfont:429
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
-
-#: standalone/drakfont:473 standalone/drakfont:482
-#, fuzzy, c-format
-msgid "DrakFont"
-msgstr "Шрыфт"
-
-#: standalone/drakfont:483
-#, c-format
-msgid "Font List"
-msgstr "Сьпіс шрыфтоў"
-
-#: standalone/drakfont:486
-#, c-format
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: standalone/drakfont:492
-#, c-format
-msgid "About"
-msgstr "Даведка"
-
-#: standalone/drakfont:494 standalone/drakfont:718
-#, fuzzy, c-format
-msgid "Uninstall"
-msgstr "Усталёўка"
-
-#: standalone/drakfont:495
-#, c-format
-msgid "Import"
-msgstr "Імпарт"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakfont:513
-#, c-format
-msgid "Copyright (C) 2001-2006 by Mandriva"
-msgstr ""
-
-#: standalone/drakfont:515
-#, fuzzy, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-"Пашырэнне ESounD\n"
-"\n"
-" Гэта прога - бясплатнае праграмнае забяспячэнне; вы можыце распаўсюджываць "
-"і/альбо мадыфікаваць яго\n"
-"у адпаведнасці з ліцэнзыяй GNU, якая была надрукавана\n"
-"Арганізацыяй бясплатнага праграмнага забеспячэння, вы можыце карыстацца "
-"версыяй 2 ліцэнзыі альбо\n"
-"(па вашаму жаданню) ці якой іншай пазнейшай версыяй.\n"
-"\n"
-"Гэта прога распаўсюджываецца з надзеяй, што камусці яна будзе карысна,\n"
-"але БЯЗЬ УСЯЛЯКІХ ГАРАНТЫЙ нават гарантый якія маюцца на ўвазе пры\n"
-"ПРАЦАЗДОЛЬНАСЦІ альбо ПРЫГОДНАСЦІ ДА ЯКОЙСЦІ МЭТЫ. Калі ласка,\n"
-"за падрабязнасцямі глянце на GNU ліцэнзыю.\n"
-"\n"
-"А копію ліцэнзыі вы павінны былі атрымаць\n"
-"разам зь гэтай прогай; калі не, дык напішыце пра гэта па адрасу (дашлем)\n"
-"Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA "
-"02111-1307,\n"
-"USA."
-
-#: standalone/drakfont:531
-#, c-format
-msgid ""
-"Thanks:\n"
-"\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
-msgstr ""
-
-#: standalone/drakfont:550
-#, fuzzy, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Выбар раздзелаў для фарматавання"
-
-#: standalone/drakfont:561
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: standalone/drakfont:562
-#, fuzzy, c-format
-msgid "StarOffice"
-msgstr "Офіс"
-
-#: standalone/drakfont:563
-#, fuzzy, c-format
-msgid "Abiword"
-msgstr "Клявіятура"
-
-#: standalone/drakfont:564
-#, fuzzy, c-format
-msgid "Generic Printers"
-msgstr "Прынтэры"
-
-#: standalone/drakfont:578
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: standalone/drakfont:579
-#, c-format
-msgid "File Selection"
-msgstr "Выбар файла"
-
-#: standalone/drakfont:583
-#, c-format
-msgid "Fonts"
-msgstr "Шрыфты"
-
-#: standalone/drakfont:646
-#, fuzzy, c-format
-msgid "Import fonts"
-msgstr "важна"
-
-#: standalone/drakfont:651
-#, fuzzy, c-format
-msgid "Install fonts"
-msgstr "Усталёўка"
-
-#: standalone/drakfont:681
-#, c-format
-msgid "Are you sure you want to uninstall the following fonts?"
-msgstr ""
-
-#: standalone/drakfont:726
-#, fuzzy, c-format
-msgid "Unselected All"
-msgstr "Дадаць выбраныя файлы"
-
-#: standalone/drakfont:729
-#, fuzzy, c-format
-msgid "Selected All"
-msgstr "Абярыце файл"
-
-#: standalone/drakfont:743 standalone/drakfont:762
-#, c-format
-msgid "Importing fonts"
-msgstr ""
-
-#: standalone/drakfont:747 standalone/drakfont:767
-#, fuzzy, c-format
-msgid "Initial tests"
-msgstr "Віртуальныя працоўныя сталы"
-
-#: standalone/drakfont:748
-#, fuzzy, c-format
-msgid "Copy fonts on your system"
-msgstr "У вашай сістэме няма ніводнага сеткавага адаптара!"
-
-#: standalone/drakfont:749
-#, c-format
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: standalone/drakfont:750
-#, fuzzy, c-format
-msgid "Post Install"
-msgstr "Усталёўка"
-
-#: standalone/drakfont:768
-#, fuzzy, c-format
-msgid "Remove fonts on your system"
-msgstr "У вашай сістэме няма ніводнага сеткавага адаптара!"
-
-#: standalone/drakfont:769
-#, fuzzy, c-format
-msgid "Post Uninstall"
-msgstr "Заканчэнне ўсталявання"
-
-#: standalone/drakgw:50 standalone/drakvpn:51
-#, c-format
-msgid "Sorry, we support only 2.4 and above kernels."
-msgstr ""
-
-#: standalone/drakgw:75
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Сумеснае Інтэрнэт-злучэнне"
-
-#: standalone/drakgw:79
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-
-#: standalone/drakgw:95
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-
-#: standalone/drakgw:99
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-
-#: standalone/drakgw:105
-#, fuzzy, c-format
-msgid "Reconfigure"
-msgstr "Настроіць панэль"
-
-#: standalone/drakgw:145
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-
-#: standalone/drakgw:156
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Калі ласка, абярыце сеткавы адаптар, які будзе выкарыстаны для далучэння да "
-"вашай лакальнай сеткі."
-
-#: standalone/drakgw:177
-#, fuzzy, c-format
-msgid "Local Area Network settings"
-msgstr "Прагляд лякальнай сеткі"
-
-#: standalone/drakgw:180
-#, c-format
-msgid "Local IP address"
-msgstr ""
-
-#: standalone/drakgw:182
-#, c-format
-msgid "The internal domain name"
-msgstr ""
-
-#: standalone/drakgw:188
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Патэнцыйны адрас ЛВС канфліктуе з бягучай канфігурацыяй %s!\n"
-
-#: standalone/drakgw:204
-#, fuzzy, c-format
-msgid "Domain Name Server (DNS) configuration"
-msgstr "Сістэмнае адміністраваньне"
-
-#: standalone/drakgw:208
-#, c-format
-msgid "Use this gateway as domain name server"
-msgstr ""
-
-#: standalone/drakgw:209
-#, fuzzy, c-format
-msgid "The DNS Server IP"
-msgstr "IP сэервера SMB"
-
-#: standalone/drakgw:236
-#, c-format
-msgid ""
-"DHCP Server Configuration.\n"
-"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you do not know the meaning of an option, simply leave it as it is."
-msgstr ""
-
-#: standalone/drakgw:243
-#, fuzzy, c-format
-msgid "Use automatic configuration (DHCP)"
-msgstr "Аўтаматычнае вызначэнне"
-
-#: standalone/drakgw:244
-#, c-format
-msgid "The DHCP start range"
-msgstr ""
-
-#: standalone/drakgw:245
-#, c-format
-msgid "The DHCP end range"
-msgstr ""
-
-#: standalone/drakgw:246
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr ""
-
-#: standalone/drakgw:247
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr ""
-
-#: standalone/drakgw:270
-#, c-format
-msgid "Proxy caching server (SQUID)"
-msgstr ""
-
-#: standalone/drakgw:274
-#, c-format
-msgid "Use this gateway as proxy caching server"
-msgstr ""
-
-#: standalone/drakgw:275
-#, c-format
-msgid "Admin mail"
-msgstr ""
-
-#: standalone/drakgw:276
-#, fuzzy, c-format
-msgid "Visible hostname"
-msgstr "Выкарыстаць выдалены хост"
-
-#: standalone/drakgw:277
-#, fuzzy, c-format
-msgid "Proxy port"
-msgstr "Якасьць"
-
-#: standalone/drakgw:278
-#, fuzzy, c-format
-msgid "Cache size (MB)"
-msgstr "памер блоку"
-
-#: standalone/drakgw:300
-#, fuzzy, c-format
-msgid "Broadcast printer information"
-msgstr "Канфігурацыя сістэмных сэрвісаў"
-
-#: standalone/drakgw:317
-#, fuzzy, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Сумеснае Інтэрнэт-злучэнне зараз магчыма"
-
-#: standalone/drakgw:323
-#, fuzzy, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Сумеснае Інтэрнэт-злучэнне зараз забаронена"
-
-#: standalone/drakgw:329
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP) and\n"
-" a Transparent Proxy Cache server (SQUID)."
-msgstr ""
-
-#: standalone/drakgw:363
-#, fuzzy, c-format
-msgid "Disabling servers..."
-msgstr "Вызначэнне прыладаў..."
-
-#: standalone/drakgw:377
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
-
-#: standalone/drakgw:378
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-"Увага! Знойдзена існуючая сістэма сеткавай бяспекі (firewall). Вам магчыма "
-"спатрэбіцца скарэктаваць яе пасля ўсталявання."
-
-#: standalone/drakgw:383
-#, fuzzy, c-format
-msgid "Configuring..."
-msgstr "Настройка IDE"
-
-#: standalone/drakgw:384
-#, c-format
-msgid "Configuring firewall..."
-msgstr ""
-
-#: standalone/drakhelp:17
-#, c-format
-msgid ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"\n"
-"Usage: \n"
-msgstr ""
-
-#: standalone/drakhelp:22
-#, c-format
-msgid " --help - display this help \n"
-msgstr ""
-
-#: standalone/drakhelp:23
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr ""
-
-#: standalone/drakhelp:24
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-
-#: standalone/drakhelp:51
-#, fuzzy, c-format
-msgid "Mandriva Linux Help Center"
-msgstr "Цэнтар кіраваньня"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "No Help entry for %s\n"
-msgstr ""
-
-#: standalone/drakhosts:98
-#, c-format
-msgid "Please add an host to be able to modify it."
-msgstr ""
-
-#: standalone/drakhosts:108
-#, fuzzy, c-format
-msgid "Please modify information"
-msgstr "Інфармацыя аб DMA"
-
-#: standalone/drakhosts:109
-#, fuzzy, c-format
-msgid "Please delete information"
-msgstr "Інфармацыя аб DMA"
-
-#: standalone/drakhosts:110
-#, fuzzy, c-format
-msgid "Please add information"
-msgstr "Інфармацыя аб DMA"
-
-#: standalone/drakhosts:115
-#, c-format
-msgid "IP address:"
-msgstr "IP адрас:"
-
-#: standalone/drakhosts:116
-#, c-format
-msgid "Host name:"
-msgstr "Назва вузла:"
-
-#: standalone/drakhosts:117
-#, c-format
-msgid "Host Aliases:"
-msgstr ""
-
-#: standalone/drakhosts:123
-#, c-format
-msgid "Please enter a valid IP address."
-msgstr ""
-
-#: standalone/drakhosts:129
-#, c-format
-msgid "Same IP is already in %s file."
-msgstr ""
-
-#: standalone/drakhosts:197
-#, c-format
-msgid "Host Aliases"
-msgstr ""
-
-#: standalone/drakhosts:237
-#, c-format
-msgid "DrakHOSTS manage hosts definitions"
-msgstr ""
-
-#: standalone/drakhosts:246
-#, c-format
-msgid "Failed to add host."
-msgstr ""
-
-#: standalone/drakhosts:253
-#, c-format
-msgid "Failed to Modify host."
-msgstr ""
-
-#: standalone/drakhosts:260
-#, c-format
-msgid "Failed to remove host."
-msgstr ""
-
-#: standalone/drakids:26
-#, fuzzy, c-format
-msgid "Allowed addresses"
+msgid "All servers"
msgstr "Дадаць карыстальніка"
-#: standalone/drakids:57
+#: timezone.pm:183
#, c-format
-msgid "Log"
-msgstr "Рэгістрацыя"
-
-#: standalone/drakids:61
-#, fuzzy, c-format
-msgid "Clear logs"
-msgstr "Ачысціць усё"
-
-#: standalone/drakids:62 standalone/drakids:67 standalone/net_applet:470
-#, c-format
-msgid "Blacklist"
+msgid "Global"
msgstr ""
-#: standalone/drakids:63 standalone/drakids:80 standalone/net_applet:475
-#, c-format
-msgid "Whitelist"
-msgstr ""
-
-#: standalone/drakids:71
-#, fuzzy, c-format
-msgid "Remove from blacklist"
-msgstr "Выдаліць з LVM"
-
-#: standalone/drakids:72
-#, c-format
-msgid "Move to whitelist"
-msgstr ""
-
-#: standalone/drakids:84
-#, fuzzy, c-format
-msgid "Remove from whitelist"
-msgstr "Выдаліць з LVM"
-
-#: standalone/drakids:136 standalone/drakids:145 standalone/drakids:170
-#: standalone/drakids:179 standalone/drakids:189 standalone/drakids:265
-#: standalone/drakroam:182 standalone/net_applet:202 standalone/net_applet:385
-#, fuzzy, c-format
-msgid "Unable to contact daemon"
-msgstr "Немагчыма адчыніць файл %s\n"
-
-#: standalone/drakids:202
-#, c-format
-msgid "Date"
-msgstr "Дата"
-
-#: standalone/drakids:203
+#: timezone.pm:186
#, fuzzy, c-format
-msgid "Attacker"
-msgstr "Падрабязнасці"
-
-#: standalone/drakids:204
-#, fuzzy, c-format
-msgid "Attack type"
-msgstr "Тып: "
-
-#: standalone/drakids:205
-#, fuzzy, c-format
-msgid "Service"
-msgstr "Сэрвісы"
-
-#: standalone/drakids:206 standalone/net_applet:72
-#, c-format
-msgid "Network interface"
-msgstr "Сеткавы інтэрфейс"
-
-#: standalone/draknfs:41
-#, c-format
-msgid "map root user as anonymous"
-msgstr ""
-
-#: standalone/draknfs:42
-#, c-format
-msgid "map all users to anonymous user"
-msgstr ""
-
-#: standalone/draknfs:43
-#, c-format
-msgid "No user UID mapping"
-msgstr ""
-
-#: standalone/draknfs:44
-#, c-format
-msgid "allow real remote root access"
-msgstr ""
-
-#: standalone/draknfs:83
-#, c-format
-msgid "NFS server"
-msgstr ""
-
-#: standalone/draknfs:83
-#, c-format
-msgid "Restarting/Reloading NFS server..."
-msgstr ""
-
-#: standalone/draknfs:84
-#, c-format
-msgid "Error Restarting/Reloading NFS server"
-msgstr ""
-
-#: standalone/draknfs:100 standalone/draksambashare:203
-#, c-format
-msgid "Directory Selection"
-msgstr ""
-
-#: standalone/draknfs:105 standalone/draksambashare:208
-#, c-format
-msgid "Should be a directory."
-msgstr ""
-
-#: standalone/draknfs:136
-#, c-format
-msgid ""
-"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
-"ways:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">single host:</span> a host either by an "
-"abbreviated name recognized be the resolver, fully qualified domain name, or "
-"an IP address\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">netgroups:</span> NIS netgroups may be given "
-"as @group.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">wildcards:</span> machine names may contain "
-"the wildcard characters * and ?. For instance: *.cs.foo.edu matches all "
-"hosts in the domain cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP networks:</span> you can also export "
-"directories to all hosts on an IP (sub-)network simultaneously. for example, "
-"either `/255.255.252.0' or `/22' appended to the network base address "
-"result.\n"
-msgstr ""
-
-#: standalone/draknfs:151
-#, c-format
-msgid ""
-"<span weight=\"bold\">User ID options</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map root user as anonymous:</span> map "
-"requests from uid/gid 0 to the anonymous uid/gid (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">allow real remote root access:</span> turn "
-"off root squashing. This option is mainly useful for diskless clients "
-"(no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map all users to anonymous user:</span> map "
-"all uids and gids to the anonymous user (all_squash). Useful for NFS-"
-"exported public FTP directories, news spool directories, etc. The opposite "
-"option is no user UID mapping (no_all_squash), which is the default "
-"setting.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid and anongid:</span> explicitly set "
-"the uid and gid of the anonymous account.\n"
-msgstr ""
-
-#: standalone/draknfs:167
-#, c-format
-msgid "Synchronous access:"
-msgstr ""
-
-#: standalone/draknfs:168
-#, c-format
-msgid "Secured Connection:"
-msgstr ""
-
-#: standalone/draknfs:169
-#, c-format
-msgid "Read-Only share:"
-msgstr ""
-
-#: standalone/draknfs:171
-#, c-format
-msgid "<span weight=\"bold\">Advanced Options</span>"
-msgstr ""
-
-#: standalone/draknfs:172
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> this option requires that "
-"requests originate on an internet port less than IPPORT_RESERVED (1024). "
-"This option is on by default."
-msgstr ""
-
-#: standalone/draknfs:173
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> allow either only read or both "
-"read and write requests on this NFS volume. The default is to disallow any "
-"request which changes the filesystem. This can also be made explicit by "
-"using this option."
-msgstr ""
-
-#: standalone/draknfs:174
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> disallows the NFS server to "
-"violate the NFS protocol and to reply to requests before any changes made by "
-"these requests have been committed to stable storage (e.g. disc drive)."
-msgstr ""
-
-#: standalone/draknfs:306
-#, c-format
-msgid "Please add an NFS share to be able to modify it."
-msgstr ""
-
-#: standalone/draknfs:378
-#, fuzzy, c-format
-msgid "Advanced Options Help"
-msgstr "Канфігурацыя"
-
-#: standalone/draknfs:389
-#, c-format
-msgid "NFS directory"
-msgstr ""
-
-#: standalone/draknfs:391 standalone/draksambashare:592
-#: standalone/draksambashare:771
-#, c-format
-msgid "Directory:"
-msgstr "Каталёг:"
-
-#: standalone/draknfs:394
-#, c-format
-msgid "Host access"
-msgstr ""
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Access:"
-msgstr ""
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Hosts Access"
-msgstr ""
-
-#: standalone/draknfs:399
-#, c-format
-msgid "User ID Mapping"
-msgstr ""
-
-#: standalone/draknfs:401
-#, c-format
-msgid "User ID:"
-msgstr ""
-
-#: standalone/draknfs:401
-#, c-format
-msgid "Help User ID"
-msgstr ""
-
-#: standalone/draknfs:402
-#, c-format
-msgid "Anonymous user ID:"
-msgstr ""
-
-#: standalone/draknfs:403
-#, c-format
-msgid "Anonymous Group ID:"
-msgstr ""
-
-#: standalone/draknfs:444
-#, c-format
-msgid "Can't create this directory."
-msgstr ""
-
-#: standalone/draknfs:447
-#, c-format
-msgid "You must specify hosts access."
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Share Directory"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Hosts Wildcard"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "General Options"
-msgstr "Агульныя парамэтры"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Custom Options"
-msgstr ""
-
-#: standalone/draknfs:539 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Please enter a directory to share."
-msgstr ""
-
-#: standalone/draknfs:546
-#, c-format
-msgid "Please use the modify button to set right access."
-msgstr ""
-
-#: standalone/draknfs:600
-#, c-format
-msgid "DrakNFS manage NFS shares"
-msgstr ""
-
-#: standalone/draknfs:609
-#, c-format
-msgid "Failed to add NFS share."
-msgstr ""
-
-#: standalone/draknfs:616
-#, c-format
-msgid "Failed to Modify NFS share."
-msgstr ""
-
-#: standalone/draknfs:623
-#, c-format
-msgid "Failed to remove an NFS share."
-msgstr ""
-
-#: standalone/drakperm:21
-#, c-format
-msgid "System settings"
-msgstr "сыстэмныя ўсталёўкі"
-
-#: standalone/drakperm:22
-#, fuzzy, c-format
-msgid "Custom settings"
-msgstr "Настройкі мышы"
-
-#: standalone/drakperm:23
-#, fuzzy, c-format
-msgid "Custom & system settings"
-msgstr "Выкарыстоўваць існуючы раздзел"
-
-#: standalone/drakperm:43
-#, c-format
-msgid "Editable"
-msgstr "Можа рэдагавацца"
-
-#: standalone/drakperm:48 standalone/drakperm:323
-#: standalone/draksambashare:101
-#, c-format
-msgid "Path"
-msgstr "Шлях:"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "User"
-msgstr "Карыстальнік"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "Group"
-msgstr "Група"
-
-#: standalone/drakperm:48 standalone/drakperm:335
-#, c-format
-msgid "Permissions"
-msgstr "Правы доступу"
-
-#: standalone/drakperm:57
-#, c-format
-msgid "Add a new rule"
-msgstr ""
-
-#: standalone/drakperm:64 standalone/drakperm:99 standalone/drakperm:124
-#, c-format
-msgid "Edit current rule"
-msgstr ""
-
-#: standalone/drakperm:106
-#, c-format
-msgid ""
-"Here you can see files to use in order to fix permissions, owners, and "
-"groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
-msgstr ""
-
-#: standalone/drakperm:109
-#, c-format
-msgid ""
-"The current security level is %s.\n"
-"Select permissions to see/edit"
-msgstr ""
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Up"
-msgstr "Угору"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Move selected rule up one level"
-msgstr ""
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Down"
-msgstr "Уніз"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Move selected rule down one level"
-msgstr ""
-
-#: standalone/drakperm:122
-#, fuzzy, c-format
-msgid "Add a rule"
-msgstr "Дадаць карыстальніка"
-
-#: standalone/drakperm:122
-#, fuzzy, c-format
-msgid "Add a new rule at the end"
-msgstr "Дадаць карыстальніка ў сыстэму"
-
-#: standalone/drakperm:123
-#, fuzzy, c-format
-msgid "Delete selected rule"
-msgstr "Выдаліць вылучаны радок"
-
-#: standalone/drakperm:242
-#, fuzzy, c-format
-msgid "browse"
-msgstr "Прагляд"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "user"
-msgstr "карыстальнік"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "group"
-msgstr "група"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "other"
-msgstr "іншы"
-
-#: standalone/drakperm:252
-#, c-format
-msgid "Read"
-msgstr "Чытаньне"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:255
-#, fuzzy, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr ""
-"%s\n"
-"Немагчыма запісаць у файл: %s"
-
-#: standalone/drakperm:259
-#, c-format
-msgid "Write"
-msgstr "Запіс"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:262
-#, fuzzy, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr ""
-"%s\n"
-"Немагчыма запісаць у файл: %s"
-
-#: standalone/drakperm:266
-#, c-format
-msgid "Execute"
-msgstr "Выканаць"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:269
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr ""
-
-#: standalone/drakperm:272
-#, c-format
-msgid "Sticky-bit"
-msgstr ""
-
-#: standalone/drakperm:272
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Set-UID"
-msgstr ""
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Use owner id for execution"
-msgstr ""
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Set-GID"
-msgstr ""
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Use group id for execution"
-msgstr ""
-
-#: standalone/drakperm:292 standalone/drakxtv:89
-#, c-format
-msgid "User:"
-msgstr "Карыстальнік(ца):"
-
-#: standalone/drakperm:294
-#, c-format
-msgid "Group:"
-msgstr "Група:"
-
-#: standalone/drakperm:298
-#, fuzzy, c-format
-msgid "Current user"
-msgstr "Прыняць карыстальніка"
-
-#: standalone/drakperm:299
-#, c-format
-msgid "When checked, owner and group will not be changed"
-msgstr ""
-
-#: standalone/drakperm:309
-#, fuzzy, c-format
-msgid "Path selection"
-msgstr "Дзеяньні"
-
-#: standalone/drakperm:329
-#, c-format
-msgid "Property"
-msgstr "Якасьць"
-
-#: standalone/drakperm:380
-#, c-format
-msgid ""
-"The first character of the path must be a slash (\"/\"):\n"
-"\"%s\""
-msgstr ""
-
-#: standalone/drakperm:390
-#, c-format
-msgid "Both the username and the group must valid!"
-msgstr ""
-
-#: standalone/drakperm:391
-#, c-format
-msgid "User: %s"
-msgstr ""
-
-#: standalone/drakperm:392
-#, c-format
-msgid "Group: %s"
-msgstr ""
-
-#: standalone/drakroam:33
-#, c-format
-msgid ""
-"You do not have any wireless interface.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakroam:48
-#, c-format
-msgid "SSID"
-msgstr ""
-
-#: standalone/drakroam:49
-#, c-format
-msgid "Signal strength"
-msgstr ""
-
-#: standalone/drakroam:51
-#, c-format
-msgid "Encryption"
-msgstr "Шыфраваньне"
-
-#: standalone/drakroam:112
-#, c-format
-msgid "Please enter settings for wireless network \"%s\""
-msgstr ""
-
-#: standalone/drakroam:123
-#, c-format
-msgid "DNS server"
-msgstr ""
-
-#: standalone/drakroam:228
-#, c-format
-msgid "Connect"
-msgstr "Далучэньне"
-
-#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/drakroam:229 standalone/printerdrake:251
-#, c-format
-msgid "Refresh"
-msgstr "Аднавіць"
-
-#: standalone/draksambashare:68
-#, fuzzy, c-format
-msgid "Share directory"
-msgstr "Ня тэчка"
-
-#: standalone/draksambashare:69 standalone/draksambashare:102
-#, c-format
-msgid "Comment"
-msgstr "Камэнтар"
-
-#: standalone/draksambashare:70 standalone/draksambashare:103
-#, fuzzy, c-format
-msgid "Browseable"
-msgstr "Прагляд"
-
-#: standalone/draksambashare:71
-#, c-format
-msgid "Public"
-msgstr "Агульны"
-
-#: standalone/draksambashare:72 standalone/draksambashare:108
-#, fuzzy, c-format
-msgid "Writable"
-msgstr "Запіс"
-
-#: standalone/draksambashare:73 standalone/draksambashare:149
-#, fuzzy, c-format
-msgid "Create mask"
-msgstr "Стварыць"
-
-#: standalone/draksambashare:74 standalone/draksambashare:150
-#, fuzzy, c-format
-msgid "Directory mask"
-msgstr "Каталог %s Так"
-
-#: standalone/draksambashare:75
-#, fuzzy, c-format
-msgid "Read list"
-msgstr "Чытаньне"
-
-#: standalone/draksambashare:76 standalone/draksambashare:109
-#: standalone/draksambashare:606
-#, fuzzy, c-format
-msgid "Write list"
-msgstr "Запіс"
-
-#: standalone/draksambashare:77 standalone/draksambashare:141
-#, fuzzy, c-format
-msgid "Admin users"
-msgstr "Дадаць карыстальніка"
-
-#: standalone/draksambashare:78 standalone/draksambashare:142
-#, fuzzy, c-format
-msgid "Valid users"
-msgstr "Дадаць карыстальніка"
-
-#: standalone/draksambashare:79
-#, fuzzy, c-format
-msgid "Inherit Permissions"
-msgstr "Правы доступу"
-
-#: standalone/draksambashare:80 standalone/draksambashare:143
-#, fuzzy, c-format
-msgid "Hide dot files"
-msgstr "Загрузіць файл(ы)"
-
-#: standalone/draksambashare:82 standalone/draksambashare:148
-#, fuzzy, c-format
-msgid "Preserve case"
-msgstr "Усталяваньні"
-
-#: standalone/draksambashare:83
-#, c-format
-msgid "Force create mode"
-msgstr ""
-
-#: standalone/draksambashare:84
-#, fuzzy, c-format
-msgid "Force group"
-msgstr "Працоўная група"
-
-#: standalone/draksambashare:85 standalone/draksambashare:147
-#, fuzzy, c-format
-msgid "Default case"
-msgstr "Па ўмаўчанні (%s)"
-
-#: standalone/draksambashare:100
-#, c-format
-msgid "Printer name"
-msgstr "Назва друкаркі"
-
-#: standalone/draksambashare:104 standalone/draksambashare:598
-#, c-format
-msgid "Printable"
-msgstr "Здольны друкавацца"
-
-#: standalone/draksambashare:105
-#, c-format
-msgid "Print Command"
-msgstr ""
-
-#: standalone/draksambashare:106
-#, c-format
-msgid "LPQ command"
-msgstr ""
-
-#: standalone/draksambashare:107
-#, c-format
-msgid "Guest ok"
-msgstr ""
-
-#: standalone/draksambashare:110 standalone/draksambashare:151
-#: standalone/draksambashare:607
-#, fuzzy, c-format
-msgid "Inherit permissions"
-msgstr "Правы доступу"
-
-#: standalone/draksambashare:112
-#, c-format
-msgid "Create mode"
-msgstr ""
-
-#: standalone/draksambashare:113
-#, c-format
-msgid "Use client driver"
-msgstr ""
-
-#: standalone/draksambashare:139
-#, fuzzy, c-format
-msgid "Read List"
-msgstr "Выдаліць сьпіс"
-
-#: standalone/draksambashare:140
-#, fuzzy, c-format
-msgid "Write List"
-msgstr "Запіс"
-
-#: standalone/draksambashare:145
-#, fuzzy, c-format
-msgid "Force Group"
-msgstr "Група"
-
-#: standalone/draksambashare:146
-#, c-format
-msgid "Force create group"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid "About Draksambashare"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid ""
-"Mandriva Linux \n"
-"Release: %s\n"
-"Author: Antoine Ginies\n"
-"\n"
-"This is a simple tool to easily manage Samba configuration."
-msgstr ""
-
-#: standalone/draksambashare:186
-#, fuzzy, c-format
-msgid "Samba server"
-msgstr "NIS сэервер:"
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Restarting/Reloading Samba server..."
-msgstr ""
-
-#: standalone/draksambashare:187
-#, c-format
-msgid "Error Restarting/Reloading Samba server"
-msgstr ""
-
-#: standalone/draksambashare:372
-#, c-format
-msgid "Add a Samba share"
-msgstr ""
-
-#: standalone/draksambashare:375
-#, c-format
-msgid "Goal of this wizard is to easily create a new Samba share."
-msgstr ""
-
-#: standalone/draksambashare:377
-#, fuzzy, c-format
-msgid "Name of the share:"
-msgstr "Імя друкаркі"
-
-#: standalone/draksambashare:378 standalone/draksambashare:591
-#: standalone/draksambashare:772
-#, c-format
-msgid "Comment:"
-msgstr "Камэнтар:"
-
-#: standalone/draksambashare:379
-#, c-format
-msgid "Path:"
-msgstr "Шлях:"
-
-#: standalone/draksambashare:384
-#, c-format
-msgid ""
-"Share with the same name already exist or share name empty, please choose "
-"another name."
-msgstr ""
-
-#: standalone/draksambashare:388 standalone/draksambashare:394
-#, c-format
-msgid "Can't create the directory, please enter a correct path."
-msgstr ""
-
-#: standalone/draksambashare:391 standalone/draksambashare:627
-#: standalone/draksambashare:794
-#, c-format
-msgid "Please enter a Comment for this share."
-msgstr ""
-
-#: standalone/draksambashare:422
-#, c-format
-msgid ""
-"The wizard successfully added the Samba share. Now just double click on it "
-"in treeview to modify it"
-msgstr ""
-
-#: standalone/draksambashare:437
-#, c-format
-msgid "pdf-gen - a PDF generator"
-msgstr ""
-
-#: standalone/draksambashare:438
-#, c-format
-msgid "printers - all printers available"
-msgstr ""
-
-#: standalone/draksambashare:442
-#, c-format
-msgid "Add Special Printer share"
-msgstr ""
-
-#: standalone/draksambashare:445
-#, c-format
-msgid ""
-"Goal of this wizard is to easily create a new special printer Samba share."
-msgstr ""
-
-#: standalone/draksambashare:453
-#, c-format
-msgid "A PDF generator already exists."
-msgstr ""
-
-#: standalone/draksambashare:477
-#, c-format
-msgid "Printers and print$ already exist."
-msgstr ""
-
-#: standalone/draksambashare:528
-#, c-format
-msgid "The wizard successfully added the printer Samba share"
-msgstr ""
-
-#: standalone/draksambashare:551
-#, c-format
-msgid "Please add or select a Samba printer share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:587
-#, c-format
-msgid "Printer share"
-msgstr ""
-
-#: standalone/draksambashare:590
-#, c-format
-msgid "Printer name:"
-msgstr "Імя прынтэра:"
-
-#: standalone/draksambashare:596 standalone/draksambashare:777
-#, fuzzy, c-format
-msgid "Writable:"
-msgstr "Запіс"
-
-#: standalone/draksambashare:597 standalone/draksambashare:778
-#, fuzzy, c-format
-msgid "Browseable:"
-msgstr "Прагляд"
-
-#: standalone/draksambashare:602
-#, c-format
-msgid "Advanced options"
-msgstr ""
-
-#: standalone/draksambashare:604
-#, c-format
-msgid "Printer access"
-msgstr ""
-
-#: standalone/draksambashare:608
-#, c-format
-msgid "Guest ok:"
-msgstr ""
-
-#: standalone/draksambashare:609
-#, c-format
-msgid "Create mode:"
-msgstr ""
-
-#: standalone/draksambashare:613
-#, c-format
-msgid "Printer command"
-msgstr ""
-
-#: standalone/draksambashare:615
-#, c-format
-msgid "Print command:"
-msgstr ""
-
-#: standalone/draksambashare:616
-#, c-format
-msgid "LPQ command:"
-msgstr ""
-
-#: standalone/draksambashare:617
-#, c-format
-msgid "Printing:"
-msgstr ""
-
-#: standalone/draksambashare:633
-#, c-format
-msgid "create mode should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:695
-#, c-format
-msgid "DrakSamba entry"
-msgstr ""
-
-#: standalone/draksambashare:700
-#, c-format
-msgid "Please add or select a Samba share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:723
-#, fuzzy, c-format
-msgid "Samba user access"
-msgstr "NIS сэервер:"
-
-#: standalone/draksambashare:731
-#, fuzzy, c-format
-msgid "Mask options"
-msgstr "Захаваць усталёўкі"
-
-#: standalone/draksambashare:745
-#, fuzzy, c-format
-msgid "Display options"
-msgstr "Пазначце параметры"
-
-#: standalone/draksambashare:767
-#, fuzzy, c-format
-msgid "Samba share directory"
-msgstr "Ня тэчка"
-
-#: standalone/draksambashare:770
-#, fuzzy, c-format
-msgid "Share name:"
-msgstr "Імя для размеркаванага рэсурсу"
-
-#: standalone/draksambashare:776
-#, c-format
-msgid "Public:"
-msgstr "Публічны:"
-
-#: standalone/draksambashare:800
-#, c-format
-msgid ""
-"Create mask, create mode and directory mask should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:807
-#, c-format
-msgid "Please create this Samba user: %s"
-msgstr ""
-
-#: standalone/draksambashare:930
-#, c-format
-msgid "User information"
-msgstr "Зьвесткі аб карыстальніке"
-
-#: standalone/draksambashare:932
-#, c-format
-msgid "User name:"
-msgstr "Імя карыстальніка(цы):"
-
-#: standalone/draksambashare:933
-#, c-format
-msgid "Password:"
-msgstr "Пароль:"
-
-#: standalone/draksambashare:1133
-#, c-format
-msgid "Failed to add Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1142
-#, c-format
-msgid "Failed to Modify Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1151
-#, c-format
-msgid "Failed to remove a Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1158
-#, c-format
-msgid "File share"
-msgstr ""
-
-#: standalone/draksambashare:1166
-#, c-format
-msgid "Add printers"
-msgstr ""
-
-#: standalone/draksambashare:1172
-#, c-format
-msgid "Failed to add printers."
-msgstr ""
-
-#: standalone/draksambashare:1181
-#, c-format
-msgid "Failed to Modify."
-msgstr ""
-
-#: standalone/draksambashare:1190
-#, c-format
-msgid "Failed to remove."
-msgstr ""
-
-#: standalone/draksambashare:1197
-#, c-format
-msgid "Printers"
-msgstr "Прынтэры"
-
-#: standalone/draksambashare:1205
-#, c-format
-msgid "Change password"
-msgstr ""
-
-#: standalone/draksambashare:1210
-#, c-format
-msgid "Failed to change user password."
-msgstr ""
-
-#: standalone/draksambashare:1218
-#, c-format
-msgid "Failed to add user."
-msgstr ""
-
-#: standalone/draksambashare:1221
-#, c-format
-msgid "Delete user"
-msgstr ""
-
-#: standalone/draksambashare:1230
-#, c-format
-msgid "Failed to delete user."
-msgstr ""
-
-#: standalone/draksambashare:1242
-#, c-format
-msgid "Samba Users"
-msgstr ""
-
-#: standalone/draksambashare:1251
-#, c-format
-msgid "DrakSamba manage Samba shares"
-msgstr ""
-
-#: standalone/draksec:49
-#, c-format
-msgid "ALL"
-msgstr ""
-
-#: standalone/draksec:50
-#, c-format
-msgid "LOCAL"
-msgstr ""
-
-#: standalone/draksec:51
-#, fuzzy, c-format
-msgid "NONE"
-msgstr "Той сама GNOME"
-
-#: standalone/draksec:53 standalone/net_applet:480
-#, c-format
-msgid "Ignore"
-msgstr "Ігнараваць"
-
-#. -PO: Do not alter the <span ..> and </span> tags.
-#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
-#: standalone/draksec:103
-#, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Administrator</span>' is the one who "
-"will receive security alerts if the\n"
-"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a "
-"username or an email.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Level</span>' menu allows you to select "
-"one of the six preconfigured security levels\n"
-"provided with msec. These levels range from '<span weight=\"bold\">poor</"
-"span>' security and ease of use, to\n"
-"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive "
-"server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
-"very\n"
-"easy to use security level. It should only be used for machines not "
-"connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
-"security\n"
-"recommended for a computer that will be used to connect to the Internet as "
-"a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
-"enough\n"
-"to use the system as a server which can accept connections from many "
-"clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower "
-"level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-
-#: standalone/draksec:156 standalone/harddrake2:207
-#, fuzzy, c-format
-msgid ""
-"Description of the fields:\n"
-"\n"
-msgstr "Апісанне:"
-
-#: standalone/draksec:170
-#, fuzzy, c-format
-msgid "(default value: %s)"
-msgstr "Па ўмаўчанні - %s"
-
-#: standalone/draksec:212
-#, fuzzy, c-format
-msgid "Security Level:"
-msgstr "Бясьпека"
-
-#: standalone/draksec:219
-#, fuzzy, c-format
-msgid "Security Administrator:"
-msgstr "Сістэмнае адміністраваньне"
-
-#: standalone/draksec:221
-#, fuzzy, c-format
-msgid "Basic options"
-msgstr "Захаваць усталёўкі"
-
-#: standalone/draksec:235
-#, fuzzy, c-format
-msgid "Network Options"
-msgstr "Сетка"
-
-#: standalone/draksec:235
-#, fuzzy, c-format
-msgid "System Options"
-msgstr "Выкарыстоўваць існуючы раздзел"
-
-#: standalone/draksec:270
-#, c-format
-msgid "Periodic Checks"
-msgstr ""
-
-#: standalone/draksec:300
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr ""
-
-#: standalone/draksec:306
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr ""
-
-#: standalone/draksound:47
-#, fuzzy, c-format
-msgid "No Sound Card detected!"
-msgstr "Няма вузла каб выдаліць"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/draksound:50
-#, c-format
-msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-
-#: standalone/draksound:57
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or "
-"the sndconfig program. Just type \"alsaconf\" or \"sndconfig\" in a console."
-msgstr ""
-
-#: standalone/draksplash:30
-#, c-format
-msgid "x coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:31
-#, c-format
-msgid "y coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:32
-#, c-format
-msgid "text box width"
-msgstr ""
-
-#: standalone/draksplash:33
-#, c-format
-msgid "text box height"
-msgstr ""
-
-#: standalone/draksplash:34
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-
-#: standalone/draksplash:35
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-
-#: standalone/draksplash:36
-#, c-format
-msgid "the width of the progress bar"
-msgstr ""
-
-#: standalone/draksplash:37
-#, c-format
-msgid "the height of the progress bar"
-msgstr ""
-
-#: standalone/draksplash:38
-#, c-format
-msgid "x coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:39
-#, c-format
-msgid "y coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:40
-#, c-format
-msgid "text box transparency"
-msgstr ""
-
-#: standalone/draksplash:41
-#, c-format
-msgid "progress box transparency"
-msgstr ""
-
-#: standalone/draksplash:42
-#, c-format
-msgid "text size"
-msgstr ""
-
-#: standalone/draksplash:59
-#, c-format
-msgid "Choose progress bar color 1"
-msgstr ""
-
-#: standalone/draksplash:60
-#, c-format
-msgid "Choose progress bar color 2"
-msgstr ""
-
-#: standalone/draksplash:61
-#, c-format
-msgid "Choose progress bar background"
-msgstr ""
-
-#: standalone/draksplash:62
-#, c-format
-msgid "Gradient type"
-msgstr ""
-
-#: standalone/draksplash:63
-#, c-format
-msgid "Choose text color"
-msgstr ""
-
-#: standalone/draksplash:65 standalone/draksplash:72
-#, c-format
-msgid "Choose picture"
-msgstr ""
-
-#: standalone/draksplash:66
-#, c-format
-msgid "Silent bootsplash"
-msgstr ""
-
-#: standalone/draksplash:69
-#, c-format
-msgid "Choose text zone color"
-msgstr ""
-
-#: standalone/draksplash:70
-#, c-format
-msgid "Text color"
-msgstr "Колер тэксту:"
-
-#: standalone/draksplash:71
-#, c-format
-msgid "Background color"
-msgstr "Колер тла"
-
-#: standalone/draksplash:73
-#, c-format
-msgid "Verbose bootsplash"
-msgstr ""
-
-#: standalone/draksplash:75
-#, c-format
-msgid "Display logo on Console"
-msgstr ""
-
-#: standalone/draksplash:78
-#, c-format
-msgid "Console bootsplash"
-msgstr ""
-
-#: standalone/draksplash:84
-#, fuzzy, c-format
-msgid "Theme name"
-msgstr "Мэнэджэр тэм"
-
-#: standalone/draksplash:87
-#, fuzzy, c-format
-msgid "final resolution"
-msgstr "Памеры экрану"
-
-#: standalone/draksplash:92
-#, fuzzy, c-format
-msgid "Save theme"
-msgstr "Тэма"
-
-#: standalone/draksplash:153
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr ""
-
-#: standalone/draksplash:162
-#, c-format
-msgid "Unable to load image file %s"
-msgstr ""
-
-#: standalone/draksplash:173
-#, c-format
-msgid "choose image"
-msgstr ""
-
-#: standalone/draksplash:188
-#, c-format
-msgid "Color selection"
-msgstr ""
-
-#: standalone/drakups:71
-#, c-format
-msgid "Connected through a serial port or an usb cable"
-msgstr ""
-
-#: standalone/drakups:78
-#, fuzzy, c-format
-msgid "Add an UPS device"
-msgstr "Аўдыяпрылада:"
-
-#: standalone/drakups:81
-#, c-format
-msgid ""
-"Welcome to the UPS configuration utility.\n"
-"\n"
-"Here, you'll add a new UPS to your system.\n"
-msgstr ""
-
-#: standalone/drakups:88
-#, c-format
-msgid ""
-"We're going to add an UPS device.\n"
-"\n"
-"Do you want to autodetect UPS devices connected to this machine or to "
-"manually select them?"
-msgstr ""
-
-#: standalone/drakups:91
-#, fuzzy, c-format
-msgid "Autodetection"
-msgstr "Аўтаматычнае вызначэнне"
-
-#: standalone/drakups:99 standalone/harddrake2:375
-#, fuzzy, c-format
-msgid "Detection in progress"
-msgstr "Стварэньне меню ўжо запушчана"
-
-#: standalone/drakups:119
-#, c-format
-msgid "The wizard successfully added the following UPS devices:"
-msgstr ""
-
-#: standalone/drakups:121
-#, c-format
-msgid "No new UPS devices was found"
-msgstr ""
-
-#: standalone/drakups:126 standalone/drakups:138
-#, fuzzy, c-format
-msgid "UPS driver configuration"
-msgstr "Настройка драйверу Sun"
-
-#: standalone/drakups:126
-#, fuzzy, c-format
-msgid "Please select your UPS model."
-msgstr "калі ласка, пазначце тып вашай мышы."
-
-#: standalone/drakups:127
-#, c-format
-msgid "Manufacturer / Model:"
-msgstr ""
-
-#: standalone/drakups:138
-#, c-format
-msgid ""
-"We are configuring the \"%s\" UPS from \"%s\".\n"
-"Please fill in its name, its driver and its port."
-msgstr ""
-
-#: standalone/drakups:143
-#, c-format
-msgid "Name:"
-msgstr "Імя:"
-
-#: standalone/drakups:143
-#, c-format
-msgid "The name of your ups"
-msgstr ""
-
-#: standalone/drakups:144
-#, c-format
-msgid "The driver that manages your ups"
-msgstr ""
-
-#: standalone/drakups:145
-#, c-format
-msgid "Port:"
-msgstr "Порт:"
-
-#: standalone/drakups:147
-#, c-format
-msgid "The port on which is connected your ups"
-msgstr ""
-
-#: standalone/drakups:157
-#, c-format
-msgid "The wizard successfully configured the new \"%s\" UPS device."
-msgstr ""
-
-#: standalone/drakups:248
-#, fuzzy, c-format
-msgid "UPS devices"
-msgstr "USB прылады"
-
-#: standalone/drakups:249 standalone/drakups:268 standalone/drakups:284
-#: standalone/harddrake2:85 standalone/harddrake2:111
-#: standalone/harddrake2:118
-#, c-format
-msgid "Name"
-msgstr "Назва"
-
-#: standalone/drakups:267
-#, fuzzy, c-format
-msgid "UPS users"
-msgstr "Стыль"
-
-#: standalone/drakups:283
-#, fuzzy, c-format
-msgid "Access Control Lists"
-msgstr "Акцэсуары"
-
-#: standalone/drakups:284
-#, fuzzy, c-format
-msgid "IP mask"
-msgstr "Відарысы"
-
-#: standalone/drakups:296
-#, c-format
-msgid "Rules"
-msgstr "Правілы"
-
-#: standalone/drakups:297
-#, c-format
-msgid "Action"
-msgstr "Дзеяньні"
-
-#: standalone/drakups:297 standalone/drakvpn:1132 standalone/harddrake2:82
-#, c-format
-msgid "Level"
-msgstr "Узровень"
-
-#: standalone/drakups:297
-#, fuzzy, c-format
-msgid "ACL name"
-msgstr "Анімэ"
-
-#: standalone/drakups:327 standalone/drakups:331 standalone/drakups:340
-#, fuzzy, c-format
-msgid "DrakUPS"
-msgstr "Dvorak (US)"
-
-#: standalone/drakups:337
-#, fuzzy, c-format
-msgid "Welcome to the UPS configuration tools"
-msgstr "Канфігурацыя сістэмных сэрвісаў"
-
-#: standalone/drakvpn:73
-#, fuzzy, c-format
-msgid "DrakVPN"
-msgstr "Dvorak"
-
-#: standalone/drakvpn:95
-#, c-format
-msgid "The VPN connection is enabled."
-msgstr ""
-
-#: standalone/drakvpn:96
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-
-#: standalone/drakvpn:101
-#, fuzzy, c-format
-msgid "disable"
-msgstr "(адмовіць)"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127
-#, fuzzy, c-format
-msgid "reconfigure"
-msgstr "Настроіць панэль"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127 standalone/drakvpn:362
-#: standalone/drakvpn:721
-#, c-format
-msgid "dismiss"
-msgstr ""
-
-#: standalone/drakvpn:105
-#, c-format
-msgid "Disabling VPN..."
-msgstr ""
-
-#: standalone/drakvpn:114
-#, c-format
-msgid "The VPN connection is now disabled."
-msgstr ""
-
-#: standalone/drakvpn:121
-#, fuzzy, c-format
-msgid "VPN connection currently disabled"
-msgstr "Сумеснае Інтэрнэт-злучэнне зараз забаронена"
-
-#: standalone/drakvpn:122
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-
-#: standalone/drakvpn:127
-#, fuzzy, c-format
-msgid "enable"
-msgstr "(дазволіць)"
-
-#: standalone/drakvpn:135
-#, c-format
-msgid "Enabling VPN..."
-msgstr ""
-
-#: standalone/drakvpn:141
-#, c-format
-msgid "The VPN connection is now enabled."
-msgstr ""
-
-#: standalone/drakvpn:155 standalone/drakvpn:183
-#, c-format
-msgid "Simple VPN setup."
-msgstr ""
-
-#: standalone/drakvpn:156
-#, c-format
-msgid ""
-"You are about to configure your computer to use a VPN connection.\n"
-"\n"
-"With this feature, computers on your local private network and computers\n"
-"on some other remote private networks, can share resources, through\n"
-"their respective firewalls, over the Internet, in a secure manner. \n"
-"\n"
-"The communication over the Internet is encrypted. The local and remote\n"
-"computers look as if they were on the same network.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using\n"
-"drakconnect before going any further."
-msgstr ""
-
-#: standalone/drakvpn:184
-#, c-format
-msgid ""
-"VPN connection.\n"
-"\n"
-"This program is based on the following projects:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - the docs and man pages coming with the %s package\n"
-"\n"
-"Please read AT LEAST the ipsec-howto docs\n"
-"before going any further."
-msgstr ""
-
-#: standalone/drakvpn:196
-#, fuzzy, c-format
-msgid "Kernel module."
-msgstr "Індыкатар гучнасьці"
-
-#: standalone/drakvpn:197
-#, c-format
-msgid ""
-"The kernel needs to have ipsec support.\n"
-"\n"
-"You're running a %s kernel version.\n"
-"\n"
-"This kernel has '%s' support."
-msgstr ""
-
-#: standalone/drakvpn:264
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Праблемы з усталяваннем пакету %s"
-
-#: standalone/drakvpn:278
-#, fuzzy, c-format
-msgid "Security Policies"
-msgstr "Бясьпека"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "IKE daemon racoon"
-msgstr ""
-
-#: standalone/drakvpn:281 standalone/drakvpn:292
-#, fuzzy, c-format
-msgid "Configuration file"
-msgstr "Канфігурацыя"
-
-#: standalone/drakvpn:282
-#, c-format
-msgid ""
-"Configuration step!\n"
-"\n"
-"You need to define the Security Policies and then to \n"
-"configure the automatic key exchange (IKE) daemon. \n"
-"The KAME IKE daemon we're using is called 'racoon'.\n"
-"\n"
-"What would you like to configure?\n"
-msgstr ""
-
-#: standalone/drakvpn:293
-#, c-format
-msgid ""
-"Next, we will configure the %s file.\n"
-"\n"
-"\n"
-"Simply click on Next.\n"
-msgstr ""
-
-#: standalone/drakvpn:311 standalone/drakvpn:671
-#, fuzzy, c-format
-msgid "%s entries"
-msgstr ", %s сектараў"
-
-#: standalone/drakvpn:312
-#, c-format
-msgid ""
-"The %s file contents\n"
-"is divided into sections.\n"
-"\n"
-"You can now:\n"
-"\n"
-" - display, add, edit, or remove sections, then\n"
-" - commit the changes\n"
-"\n"
-"What would you like to do?\n"
-msgstr ""
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display"
-msgstr ""
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid "Commit"
-msgstr "Фіксацыя"
-
-#: standalone/drakvpn:333 standalone/drakvpn:337 standalone/drakvpn:695
-#: standalone/drakvpn:699
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display configuration"
-msgstr ""
-
-#: standalone/drakvpn:338
-#, c-format
-msgid ""
-"The %s file does not exist.\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose 'add'.\n"
-msgstr ""
-
-#: standalone/drakvpn:354
-#, c-format
-msgid "ipsec.conf entries"
-msgstr ""
-
-#: standalone/drakvpn:355
-#, c-format
-msgid ""
-"The %s file contains different sections.\n"
-"\n"
-"Here is its skeleton:\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"You can now add one of these sections.\n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-
-#: standalone/drakvpn:362
-#, fuzzy, c-format
-msgid "config setup"
-msgstr "Настроіць панэль"
-
-#: standalone/drakvpn:362
-#, fuzzy, c-format
-msgid "conn %default"
-msgstr "Па дамаўленню"
-
-#: standalone/drakvpn:362
-#, fuzzy, c-format
-msgid "normal conn"
-msgstr "Інфармацыя"
-
-#: standalone/drakvpn:368 standalone/drakvpn:409 standalone/drakvpn:496
-#, fuzzy, c-format
-msgid "Exists!"
-msgstr "Выход"
-
-#: standalone/drakvpn:369 standalone/drakvpn:410
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change its name.\n"
-msgstr ""
-
-#: standalone/drakvpn:386
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow this config\n"
-"setup section.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:391
-#, fuzzy, c-format
-msgid "interfaces"
-msgstr "Сеткавыя інтэрфэйсы"
-
-#: standalone/drakvpn:392
-#, c-format
-msgid "klipsdebug"
-msgstr ""
-
-#: standalone/drakvpn:393
-#, c-format
-msgid "plutodebug"
-msgstr ""
-
-#: standalone/drakvpn:394
-#, fuzzy, c-format
-msgid "plutoload"
-msgstr "загрузіць"
-
-#: standalone/drakvpn:395
-#, c-format
-msgid "plutostart"
-msgstr ""
-
-#: standalone/drakvpn:396
-#, c-format
-msgid "uniqueids"
-msgstr ""
-
-#: standalone/drakvpn:430
-#, c-format
-msgid ""
-"This is the first section after the config\n"
-"setup one.\n"
-"\n"
-"Here you define the default settings. \n"
-"All the other sections will follow this one.\n"
-"The left settings are optional. If do not define\n"
-"them here, globally, you can define them in each\n"
-"section.\n"
-msgstr ""
-
-#: standalone/drakvpn:437
-#, fuzzy, c-format
-msgid "PFS"
-msgstr "HFS"
-
-#: standalone/drakvpn:438
-#, c-format
-msgid "keyingtries"
-msgstr ""
-
-#: standalone/drakvpn:439
-#, fuzzy, c-format
-msgid "compress"
-msgstr "Gnometris"
-
-#: standalone/drakvpn:440
-#, c-format
-msgid "disablearrivalcheck"
-msgstr ""
-
-#: standalone/drakvpn:441 standalone/drakvpn:480
-#, c-format
-msgid "left"
-msgstr "зьлева"
-
-#: standalone/drakvpn:442 standalone/drakvpn:481
-#, c-format
-msgid "leftcert"
-msgstr ""
-
-#: standalone/drakvpn:443 standalone/drakvpn:482
-#, c-format
-msgid "leftrsasigkey"
-msgstr ""
-
-#: standalone/drakvpn:444 standalone/drakvpn:483
-#, c-format
-msgid "leftsubnet"
-msgstr ""
-
-#: standalone/drakvpn:445 standalone/drakvpn:484
-#, c-format
-msgid "leftnexthop"
-msgstr ""
-
-#: standalone/drakvpn:474
-#, c-format
-msgid ""
-"Your %s file has several sections, or connections.\n"
-"\n"
-"You can now add a new section.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:477
-#, fuzzy, c-format
-msgid "section name"
-msgstr "Імя злучэння"
-
-#: standalone/drakvpn:478
-#, c-format
-msgid "authby"
-msgstr ""
-
-#: standalone/drakvpn:479
-#, fuzzy, c-format
-msgid "auto"
-msgstr "Дзеяньні"
-
-#: standalone/drakvpn:485
-#, c-format
-msgid "right"
-msgstr "зправа"
-
-#: standalone/drakvpn:486
-#, fuzzy, c-format
-msgid "rightcert"
-msgstr "Прынтэр"
-
-#: standalone/drakvpn:487
-#, c-format
-msgid "rightrsasigkey"
-msgstr ""
-
-#: standalone/drakvpn:488
-#, c-format
-msgid "rightsubnet"
-msgstr ""
-
-#: standalone/drakvpn:489
-#, c-format
-msgid "rightnexthop"
-msgstr ""
-
-#: standalone/drakvpn:497
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change the name of the section.\n"
-msgstr ""
-
-#: standalone/drakvpn:529
-#, c-format
-msgid ""
-"Add a Security Policy.\n"
-"\n"
-"You can now add a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:562 standalone/drakvpn:812
-#, fuzzy, c-format
-msgid "Edit section"
-msgstr "Рэдагаваць вылучаны радок"
-
-#: standalone/drakvpn:563
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to edit \n"
-"and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:566 standalone/drakvpn:646 standalone/drakvpn:817
-#: standalone/drakvpn:863
-#, fuzzy, c-format
-msgid "Section names"
-msgstr "Імя злучэння"
-
-#: standalone/drakvpn:576
-#, c-format
-msgid "Can not edit!"
-msgstr ""
-
-#: standalone/drakvpn:577
-#, c-format
-msgid ""
-"You cannot edit this section.\n"
-"\n"
-"This section is mandatory for Freeswan 2.X.\n"
-"One has to specify version 2.0 on the top\n"
-"of the %s file, and eventually, disable or\n"
-"enable the opportunistic encryption.\n"
-msgstr ""
-
-#: standalone/drakvpn:586
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the config setup section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:597
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the default section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:610
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the normal section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:631
-#, c-format
-msgid ""
-"Edit a Security Policy.\n"
-"\n"
-"You can now edit a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:642 standalone/drakvpn:859
-#, fuzzy, c-format
-msgid "Remove section"
-msgstr "Аддалены прынтэр"
-
-#: standalone/drakvpn:643 standalone/drakvpn:860
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to remove\n"
-"and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:672
-#, c-format
-msgid ""
-"The racoon.conf file configuration.\n"
-"\n"
-"The contents of this file is divided into sections.\n"
-"You can now:\n"
-" - display \t\t (display the file contents)\n"
-" - add\t\t\t (add one section)\n"
-" - edit \t\t\t (modify parameters of an existing section)\n"
-" - remove \t\t (remove an existing section)\n"
-" - commit \t\t (writes the changes to the real file)"
-msgstr ""
-
-#: standalone/drakvpn:700
-#, c-format
-msgid ""
-"The %s file does not exist\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose configure.\n"
-msgstr ""
-
-#: standalone/drakvpn:714
-#, c-format
-msgid "racoonf.conf entries"
-msgstr ""
-
-#: standalone/drakvpn:715
-#, c-format
-msgid ""
-"The 'add' sections step.\n"
-"\n"
-"Here below is the racoon.conf file skeleton:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-
-#: standalone/drakvpn:721
-#, fuzzy, c-format
-msgid "path"
-msgstr "Шлях:"
-
-#: standalone/drakvpn:721
-#, fuzzy, c-format
-msgid "remote"
-msgstr "Стварыць"
-
-#: standalone/drakvpn:721
-#, fuzzy, c-format
-msgid "sainfo"
-msgstr "Інфармацыя"
-
-#: standalone/drakvpn:729
-#, c-format
-msgid ""
-"The 'add path' section step.\n"
-"\n"
-"The path sections have to be on top of your racoon.conf file.\n"
-"\n"
-"Put your mouse over the certificate entry to obtain online help."
-msgstr ""
-
-#: standalone/drakvpn:732
-#, c-format
-msgid "path type"
-msgstr ""
-
-#: standalone/drakvpn:736
-#, c-format
-msgid ""
-"path include path: specifies a path to include\n"
-"a file. See File Inclusion.\n"
-"\tExample: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: specifies a file containing\n"
-"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
-"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) will search this directory\n"
-"if a certificate or certificate request is received.\n"
-"\tExample: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"other configuration files can be included.\n"
-"\tExample: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File: Pre-shared key file defines a pair\n"
-"of the identifier and the shared secret key which are used at\n"
-"Pre-shared key authentication method in phase 1."
-msgstr ""
-
-#: standalone/drakvpn:756 standalone/drakvpn:849
-#, fuzzy, c-format
-msgid "real file"
-msgstr "Абярыце файл"
-
-#: standalone/drakvpn:779
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your racoon.conf file.\n"
-"\n"
-"You can now choose the remote settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:796
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your %s file.\n"
-"\n"
-"You can now choose the sainfo settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:813
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here in the list below the one you want\n"
-"to edit and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:824
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"\n"
-"You can now edit the remote section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:833
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the sainfo section entries.\n"
-"\n"
-"Choose continue when you are done to write the data."
-msgstr ""
-
-#: standalone/drakvpn:841
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow these path\n"
-"sections.\n"
-"\n"
-"You can now edit the path entries.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:848
-#, c-format
-msgid "path_type"
-msgstr ""
-
-#: standalone/drakvpn:889
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"\n"
-"You may now share resources through the Internet,\n"
-"in a secure way, using a VPN connection.\n"
-"\n"
-"You should make sure that that the tunnels shorewall\n"
-"section is configured."
-msgstr ""
-
-#: standalone/drakvpn:909
-#, c-format
-msgid "Sainfo source address"
-msgstr ""
-
-#: standalone/drakvpn:910
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 is the source address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 is the source address"
-msgstr ""
-
-#: standalone/drakvpn:927
-#, c-format
-msgid "Sainfo source protocol"
-msgstr ""
-
-#: standalone/drakvpn:928
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe first 'any' allows any protocol for the source"
-msgstr ""
-
-#: standalone/drakvpn:942
-#, c-format
-msgid "Sainfo destination address"
-msgstr ""
-
-#: standalone/drakvpn:943
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 is the destination address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 is the destination address"
-msgstr ""
-
-#: standalone/drakvpn:960
-#, c-format
-msgid "Sainfo destination protocol"
-msgstr ""
-
-#: standalone/drakvpn:961
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe last 'any' allows any protocol for the destination"
-msgstr ""
-
-#: standalone/drakvpn:975
-#, c-format
-msgid "PFS group"
-msgstr ""
-
-#: standalone/drakvpn:977
-#, c-format
-msgid ""
-"define the group of Diffie-Hellman exponentiations.\n"
-"If you do not require PFS then you can omit this directive.\n"
-"Any proposal will be accepted if you do not specify one.\n"
-"group is one of the following: modp768, modp1024, modp1536.\n"
-"Or you can define 1, 2, or 5 as the DH group number."
-msgstr ""
-
-#: standalone/drakvpn:982
-#, c-format
-msgid "Lifetime number"
-msgstr ""
-
-#: standalone/drakvpn:983
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-msgstr ""
-
-#: standalone/drakvpn:999
-#, c-format
-msgid "Lifetime unit"
-msgstr ""
-
-#: standalone/drakvpn:1001
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
-"'hour'.\n"
-msgstr ""
-
-#: standalone/drakvpn:1019
-#, fuzzy, c-format
-msgid "Authentication algorithm"
-msgstr "Аўтэнтыфікацыя"
-
-#: standalone/drakvpn:1021
-#, fuzzy, c-format
-msgid "Compression algorithm"
-msgstr "Сэанс"
-
-#: standalone/drakvpn:1022
-#, fuzzy, c-format
-msgid "deflate"
-msgstr "Па дамаўленню"
-
-#: standalone/drakvpn:1029
-#, fuzzy, c-format
-msgid "Remote"
-msgstr "Аддалены прынтэр"
-
-#: standalone/drakvpn:1030
-#, c-format
-msgid ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specifies the parameters for IKE phase 1 for each remote node.\n"
-"The default port is 500. If anonymous is specified, the state-\n"
-"ments apply to all peers which do not match any other remote\n"
-"directive.\n"
-"\n"
-"Examples: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-msgstr ""
-
-#: standalone/drakvpn:1038
-#, fuzzy, c-format
-msgid "Exchange mode"
-msgstr "Рэжым злучэння"
-
-#: standalone/drakvpn:1040
-#, c-format
-msgid ""
-"defines the exchange mode for phase 1 when racoon is the\n"
-"initiator. Also it means the acceptable exchange mode\n"
-"when racoon is responder. More than one mode can be\n"
-"specified by separating them with a comma. All of the\n"
-"modes are acceptable. The first exchange mode is what\n"
-"racoon uses when it is the initiator.\n"
-msgstr ""
-
-#: standalone/drakvpn:1046
-#, fuzzy, c-format
-msgid "Generate policy"
-msgstr "Асноўныя пашырэнні"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "off"
-msgstr ""
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "on"
-msgstr "на"
-
-#: standalone/drakvpn:1048
-#, c-format
-msgid ""
-"This directive is for the responder. Therefore you\n"
-"should set passive on in order that racoon(8) only\n"
-"becomes a responder. If the responder does not have any\n"
-"policy in SPD during phase 2 negotiation, and the direc-\n"
-"tive is set on, then racoon(8) will choice the first pro-\n"
-"posal in the SA payload from the initiator, and generate\n"
-"policy entries from the proposal. It is useful to nego-\n"
-"tiate with the client which is allocated IP address\n"
-"dynamically. Note that inappropriate policy might be\n"
-"installed into the responder's SPD by the initiator. So\n"
-"that other communication might fail if such policies\n"
-"installed due to some policy mismatches between the ini-\n"
-"tiator and the responder. This directive is ignored in\n"
-"the initiator case. The default value is off."
-msgstr ""
-
-#: standalone/drakvpn:1062
-#, fuzzy, c-format
-msgid "Passive"
-msgstr "Прыпыніць"
-
-#: standalone/drakvpn:1064
-#, c-format
-msgid ""
-"If you do not want to initiate the negotiation, set this\n"
-"to on. The default value is off. It is useful for a\n"
-"server."
-msgstr ""
-
-#: standalone/drakvpn:1067
-#, fuzzy, c-format
-msgid "Certificate type"
-msgstr "Вызначыць тып файлу:"
-
-#: standalone/drakvpn:1069
-#, fuzzy, c-format
-msgid "My certfile"
-msgstr "MM Series"
-
-#: standalone/drakvpn:1070
-#, fuzzy, c-format
-msgid "Name of the certificate"
-msgstr "Імя друкаркі"
-
-#: standalone/drakvpn:1071
-#, c-format
-msgid "My private key"
-msgstr ""
-
-#: standalone/drakvpn:1072
-#, fuzzy, c-format
-msgid "Name of the private key"
-msgstr "Імя друкаркі"
-
-#: standalone/drakvpn:1073
-#, fuzzy, c-format
-msgid "Peers certfile"
-msgstr "Абярыце файл"
-
-#: standalone/drakvpn:1074
-#, c-format
-msgid "Name of the peers certificate"
-msgstr ""
-
-#: standalone/drakvpn:1075
-#, fuzzy, c-format
-msgid "Verify cert"
-msgstr "вельмі добра"
-
-#: standalone/drakvpn:1077
-#, c-format
-msgid ""
-"If you do not want to verify the peer's certificate for\n"
-"some reason, set this to off. The default is on."
-msgstr ""
-
-#: standalone/drakvpn:1079
-#, c-format
-msgid "My identifier"
-msgstr ""
-
-#: standalone/drakvpn:1080
-#, c-format
-msgid ""
-"specifies the identifier sent to the remote host and the\n"
-"type to use in the phase 1 negotiation. address, FQDN,\n"
-"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
-"they are used like:\n"
-"\tmy_identifier address [address];\n"
-"\t\tthe type is the IP address. This is the default\n"
-"\t\ttype if you do not specify an identifier to use.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tthe type is a USER_FQDN (user fully-qualified\n"
-"\t\tdomain name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tthe type is a FQDN (fully-qualified domain name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tthe type is a KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tthe type is an ASN.1 distinguished name. If\n"
-"\t\tstring is omitted, racoon(8) will get DN from\n"
-"\t\tSubject field in the certificate.\n"
-"\n"
-"Examples: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-msgstr ""
-
-#: standalone/drakvpn:1100
-#, fuzzy, c-format
-msgid "Peers identifier"
-msgstr "Прынтэры"
-
-#: standalone/drakvpn:1101
-#, fuzzy, c-format
-msgid "Proposal"
-msgstr "Пратакол"
-
-#: standalone/drakvpn:1103
-#, c-format
-msgid ""
-"specify the encryption algorithm used for the\n"
-"phase 1 negotiation. This directive must be defined. \n"
-"algorithm is one of the following: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For other transforms, this statement should not be used."
-msgstr ""
-
-#: standalone/drakvpn:1110
-#, c-format
-msgid "Hash algorithm"
-msgstr ""
-
-#: standalone/drakvpn:1112
-#, fuzzy, c-format
-msgid "DH group"
-msgstr "Выберыце групу"
-
-#: standalone/drakvpn:1119
-#, c-format
-msgid "Command"
-msgstr "Каманда"
-
-#: standalone/drakvpn:1120
-#, fuzzy, c-format
-msgid "Source IP range"
-msgstr "Мэнэджэр сэрвісаў"
-
-#: standalone/drakvpn:1121
-#, c-format
-msgid "Destination IP range"
-msgstr ""
-
-#: standalone/drakvpn:1122
-#, c-format
-msgid "Upper-layer protocol"
-msgstr ""
-
-#: standalone/drakvpn:1122 standalone/drakvpn:1129
-#, fuzzy, c-format
-msgid "any"
-msgstr "Панэль"
-
-#: standalone/drakvpn:1124
-#, c-format
-msgid "Flag"
-msgstr "Сьцяг"
-
-#: standalone/drakvpn:1125
-#, c-format
-msgid "Direction"
-msgstr "Накірунак"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "IPsec policy"
-msgstr ""
-
-#: standalone/drakvpn:1126
-#, fuzzy, c-format
-msgid "ipsec"
-msgstr "Шум"
-
-#: standalone/drakvpn:1126
-#, fuzzy, c-format
-msgid "discard"
-msgstr "Майстар стварэння"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "Mode"
-msgstr "Рэжым"
-
-#: standalone/drakvpn:1129
-#, fuzzy, c-format
-msgid "tunnel"
-msgstr "няма"
-
-#: standalone/drakvpn:1129
-#, fuzzy, c-format
-msgid "transport"
-msgstr "gtranslator"
-
-#: standalone/drakvpn:1131
-#, fuzzy, c-format
-msgid "Source/destination"
-msgstr "Інфармацыя аб гуку"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "require"
-msgstr ""
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "default"
-msgstr "Па дамаўленню"
-
-#: standalone/drakvpn:1132
-#, fuzzy, c-format
-msgid "use"
-msgstr "Мыш"
-
-#: standalone/drakvpn:1132
-#, fuzzy, c-format
-msgid "unique"
-msgstr "Марцінік"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (broadcast)"
-msgstr ""
-
-#: standalone/drakxtv:45
-#, fuzzy, c-format
-msgid "USA (cable)"
-msgstr "(дазволіць)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: standalone/drakxtv:45
-#, fuzzy, c-format
-msgid "Canada (cable)"
-msgstr "Канадскі (Квебэк)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (broadcast)"
-msgstr ""
-
-#: standalone/drakxtv:46
-#, fuzzy, c-format
-msgid "Japan (cable)"
-msgstr "(дазволіць)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "China (broadcast)"
-msgstr ""
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "West Europe"
-msgstr ""
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "East Europe"
-msgstr ""
-
-#: standalone/drakxtv:47
-#, fuzzy, c-format
-msgid "France [SECAM]"
-msgstr "Францыя"
-
-#: standalone/drakxtv:48
-#, fuzzy, c-format
-msgid "Newzealand"
-msgstr "Новая Зэляндыя"
-
-#: standalone/drakxtv:51
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr ""
-
-#: standalone/drakxtv:85
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: standalone/drakxtv:87
-#, c-format
-msgid "TV norm:"
-msgstr ""
-
-#: standalone/drakxtv:88
-#, fuzzy, c-format
-msgid "Area:"
-msgstr "Карэйская:"
-
-#: standalone/drakxtv:93
-#, fuzzy, c-format
-msgid "Scanning for TV channels in progress..."
-msgstr "Захаваньне ўжо выконваецца"
-
-#: standalone/drakxtv:103
-#, fuzzy, c-format
-msgid "Scanning for TV channels"
-msgstr "Адзіночны канал"
-
-#: standalone/drakxtv:107
-#, fuzzy, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
-
-#: standalone/drakxtv:110
-#, c-format
-msgid "Have a nice day!"
-msgstr ""
-
-#: standalone/drakxtv:111
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr ""
-
-#: standalone/drakxtv:149
-#, c-format
-msgid "No TV Card detected!"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakxtv:151
-#, c-format
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-
-#: standalone/finish-install:42 standalone/keyboarddrake:30
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Калі ласка, абярыце тып клавіятуры."
-
-#: standalone/harddrake2:25
-#, fuzzy, c-format
-msgid "Alternative drivers"
-msgstr "Альтэрнатыва"
-
-#: standalone/harddrake2:26
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr ""
-
-#: standalone/harddrake2:29
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-
-#: standalone/harddrake2:31 standalone/harddrake2:146
-#, fuzzy, c-format
-msgid "Bus identification"
-msgstr "Аўтэнтыфікацыя"
-
-#: standalone/harddrake2:32
-#, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
-msgstr ""
-
-#: standalone/harddrake2:35
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "Drive capacity"
-msgstr ""
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
-
-#: standalone/harddrake2:39
-#, c-format
-msgid "this field describes the device"
-msgstr ""
-
-#: standalone/harddrake2:40
-#, fuzzy, c-format
-msgid "Old device file"
-msgstr "Абярыце файл"
-
-#: standalone/harddrake2:41
-#, c-format
-msgid "old static device name used in dev package"
-msgstr ""
-
-#: standalone/harddrake2:42
-#, fuzzy, c-format
-msgid "New devfs device"
-msgstr "Прылада-шлюз"
-
-#: standalone/harddrake2:43
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr ""
-
-#. -PO: here "module" is the "jargon term" for a kernel driver
-#: standalone/harddrake2:46
-#, fuzzy, c-format
-msgid "Module"
-msgstr "Мыш"
-
-#: standalone/harddrake2:46
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr ""
-
-#: standalone/harddrake2:47
-#, fuzzy, c-format
-msgid "Extended partitions"
-msgstr "Стварэнне новага раздзелу"
-
-#: standalone/harddrake2:47
-#, fuzzy, c-format
-msgid "the number of extended partitions"
-msgstr "Не хапае прасторы для стварэння новых раздзелаў"
-
-#: standalone/harddrake2:48
-#, fuzzy, c-format
-msgid "Geometry"
-msgstr "Рэтра"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Cylinder/head/sectors geometry of the disk"
-msgstr ""
-
-#: standalone/harddrake2:49
-#, fuzzy, c-format
-msgid "Disk controller"
-msgstr "Кіраванне"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "the disk controller on the host side"
-msgstr ""
-
-#: standalone/harddrake2:50
-#, c-format
-msgid "class of hardware device"
-msgstr ""
-
-#: standalone/harddrake2:51 standalone/harddrake2:83
-#: standalone/printerdrake:224
-#, c-format
-msgid "Model"
-msgstr "Мадэль"
-
-#: standalone/harddrake2:51
-#, c-format
-msgid "hard disk model"
-msgstr ""
-
-#: standalone/harddrake2:52
-#, fuzzy, c-format
-msgid "network printer port"
-msgstr "Сеткавы прынтэр (TCP/Socket)"
-
-#: standalone/harddrake2:53
-#, fuzzy, c-format
-msgid "Primary partitions"
-msgstr "Фарматаванне раздзелаў"
-
-#: standalone/harddrake2:53
-#, fuzzy, c-format
-msgid "the number of the primary partitions"
-msgstr "Першы сектар загрузачнага раздзелу"
-
-#: standalone/harddrake2:54
-#, fuzzy, c-format
-msgid "the vendor name of the device"
-msgstr "Выкарыстаць альтэрнатыўную прыладу"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "Bus PCI #"
-msgstr ""
-
-#: standalone/harddrake2:55
-#, fuzzy, c-format
-msgid "the PCI bus on which the device is plugged"
-msgstr "Калі ласка, пазначце послядоўны порт, да якога падключана вашая мыш."
-
-#: standalone/harddrake2:56
-#, fuzzy, c-format
-msgid "PCI device #"
-msgstr "USB прылады"
-
-#: standalone/harddrake2:56
-#, fuzzy, c-format
-msgid "PCI device number"
-msgstr "Нумар тэлефону"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function #"
-msgstr ""
-
-#: standalone/harddrake2:57
-#, fuzzy, c-format
-msgid "PCI function number"
-msgstr "Імя злучэння"
-
-#: standalone/harddrake2:58
-#, fuzzy, c-format
-msgid "Vendor ID"
-msgstr "Рэдактары"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "this is the standard numerical identifier of the vendor"
-msgstr ""
-
-#: standalone/harddrake2:59
-#, fuzzy, c-format
-msgid "Device ID"
-msgstr "Прылада:"
-
-#: standalone/harddrake2:59
-#, fuzzy, c-format
-msgid "this is the numerical identifier of the device"
-msgstr "Выкарыстаць альтэрнатыўную прыладу"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "Sub vendor ID"
-msgstr ""
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "this is the minor numerical identifier of the vendor"
-msgstr ""
-
-#: standalone/harddrake2:61
-#, fuzzy, c-format
-msgid "Sub device ID"
-msgstr "USB прылады"
-
-#: standalone/harddrake2:61
-#, fuzzy, c-format
-msgid "this is the minor numerical identifier of the device"
-msgstr "Выкарыстаць альтэрнатыўную прыладу"
-
-#: standalone/harddrake2:62
-#, fuzzy, c-format
-msgid "Device USB ID"
-msgstr "Прылада:"
-
-#: standalone/harddrake2:62
-#, c-format
-msgid ".."
-msgstr ""
-
-#: standalone/harddrake2:66
-#, c-format
-msgid "Bogomips"
-msgstr ""
-
-#: standalone/harddrake2:66
-#, c-format
-msgid ""
-"the GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
-msgstr ""
-
-#: standalone/harddrake2:67
-#, fuzzy, c-format
-msgid "Cache size"
-msgstr "памер блоку"
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr ""
-
-#. -PO: here "comas" is the medical coma, not the lexical coma!!
-#: standalone/harddrake2:70
-#, c-format
-msgid "Coma bug"
-msgstr ""
-
-#: standalone/harddrake2:70
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr ""
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "Cpuid family"
-msgstr ""
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr ""
-
-#: standalone/harddrake2:72
-#, fuzzy, c-format
-msgid "Cpuid level"
-msgstr "узровень"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr ""
-
-#: standalone/harddrake2:73
-#, c-format
-msgid "Frequency (MHz)"
-msgstr ""
-
-#: standalone/harddrake2:73
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr ""
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "Flags"
-msgstr "Сьцягі"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr ""
-
-#: standalone/harddrake2:75
-#, c-format
-msgid "Fdiv bug"
-msgstr ""
-
-#: standalone/harddrake2:76
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "Is FPU present"
-msgstr ""
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr ""
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr ""
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "F00f bug"
-msgstr ""
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
-
-#: standalone/harddrake2:80
-#, c-format
-msgid "Halt bug"
-msgstr ""
-
-#: standalone/harddrake2:81
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
-
-#: standalone/harddrake2:82
-#, c-format
-msgid "sub generation of the cpu"
-msgstr ""
-
-#: standalone/harddrake2:83
-#, c-format
-msgid "generation of the cpu (eg: 8 for Pentium III, ...)"
-msgstr ""
-
-#: standalone/harddrake2:84
-#, fuzzy, c-format
-msgid "Model name"
-msgstr "Уласнае імя"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr ""
-
-#: standalone/harddrake2:85
-#, c-format
-msgid "the name of the CPU"
-msgstr ""
-
-#: standalone/harddrake2:86
-#, fuzzy, c-format
-msgid "Processor ID"
-msgstr "Працэсар"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "the number of the processor"
-msgstr ""
-
-#: standalone/harddrake2:87
-#, fuzzy, c-format
-msgid "Model stepping"
-msgstr "Настройкі мышы"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr ""
-
-#: standalone/harddrake2:88
-#, c-format
-msgid "the vendor name of the processor"
-msgstr ""
-
-#: standalone/harddrake2:89
-#, fuzzy, c-format
-msgid "Write protection"
-msgstr "Прынтэры"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid ""
-"the WP flag in the CR0 register of the cpu enforce write protection at the "
-"memory page level, thus enabling the processor to prevent unchecked kernel "
-"accesses to user memory (aka this is a bug guard)"
-msgstr ""
-
-#: standalone/harddrake2:93
-#, fuzzy, c-format
-msgid "Floppy format"
-msgstr "Фарматаваньне гнуткіх дыскаў"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr ""
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "Channel"
-msgstr "Канал"
-
-#: standalone/harddrake2:97
-#, fuzzy, c-format
-msgid "EIDE/SCSI channel"
-msgstr "Двайны канал"
-
-#: standalone/harddrake2:98
-#, fuzzy, c-format
-msgid "Disk identifier"
-msgstr "Прынтэры"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "usually the disk serial number"
-msgstr ""
-
-#: standalone/harddrake2:99
-#, fuzzy, c-format
-msgid "Logical unit number"
-msgstr "Гульня ў косьці"
-
-#: standalone/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 ""
-
-#. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...)
-#: standalone/harddrake2:106
-#, fuzzy, c-format
-msgid "Installed size"
-msgstr "Усталяванне сістэмы"
-
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:107
-#, fuzzy, c-format
-msgid "Enabled Size"
-msgstr "Дазволіць пашырэнне"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled size of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:108
-#, fuzzy, c-format
-msgid "type of the memory device"
-msgstr "Выкарыстаць альтэрнатыўную прыладу"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed"
-msgstr "Хуткасьць"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:110
-#, fuzzy, c-format
-msgid "Bank connections"
-msgstr "Размеркаванне"
-
-#: standalone/harddrake2:111
-#, c-format
-msgid "Socket designation of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:115
-#, fuzzy, c-format
-msgid "Device file"
-msgstr "Абярыце файл"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid ""
-"the device file used to communicate with the kernel driver for the mouse"
-msgstr ""
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "Emulated wheel"
-msgstr ""
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "whether the wheel is emulated or not"
-msgstr ""
-
-#: standalone/harddrake2:117
-#, fuzzy, c-format
-msgid "the type of the mouse"
-msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-
-#: standalone/harddrake2:118
-#, fuzzy, c-format
-msgid "the name of the mouse"
-msgstr "Выкарыстаць альтэрнатыўную прыладу"
-
-#: standalone/harddrake2:119
-#, fuzzy, c-format
-msgid "Number of buttons"
-msgstr "2 кнопкі"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr ""
-
-#: standalone/harddrake2:120
-#, fuzzy, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "Калі ласка, пазначце послядоўны порт, да якога падключана вашая мыш."
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "Mouse protocol used by X11"
-msgstr ""
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "the protocol that the graphical desktop use with the mouse"
-msgstr ""
-
-#: standalone/harddrake2:128 standalone/harddrake2:137
-#: standalone/harddrake2:144 standalone/harddrake2:152
-#: standalone/harddrake2:341
-#, fuzzy, c-format
-msgid "Identification"
-msgstr "Аўтэнтыфікацыя"
-
-#: standalone/harddrake2:129 standalone/harddrake2:145
-#, fuzzy, c-format
-msgid "Connection"
-msgstr "Імя злучэння"
-
-#: standalone/harddrake2:138
-#, fuzzy, c-format
-msgid "Performances"
-msgstr "Усталяваньні"
-
-#: standalone/harddrake2:139
-#, fuzzy, c-format
-msgid "Bugs"
-msgstr "Прац."
-
-#: standalone/harddrake2:140
-#, c-format
-msgid "FPU"
-msgstr ""
-
-#: standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Прылада"
-
-#: standalone/harddrake2:148
-#, fuzzy, c-format
-msgid "Partitions"
-msgstr "Раздзел %s"
-
-#: standalone/harddrake2:153
-#, c-format
-msgid "Features"
-msgstr "Магчымасьці"
-
-#. -PO: please keep all "/" characters !!!
-#: standalone/harddrake2:176 standalone/logdrake:76
-#: standalone/printerdrake:146 standalone/printerdrake:159
-#: standalone/printerdrake:171
-#, c-format
-msgid "/_Options"
-msgstr "/_Налады"
-
-#: standalone/harddrake2:177 standalone/harddrake2:202 standalone/logdrake:78
-#: standalone/printerdrake:172 standalone/printerdrake:174
-#: standalone/printerdrake:177 standalone/printerdrake:179
-#, c-format
-msgid "/_Help"
-msgstr "/_Дапамога"
-
-#: standalone/harddrake2:181
-#, fuzzy, c-format
-msgid "/Autodetect _printers"
-msgstr "Аддалены прынтэр"
-
-#: standalone/harddrake2:182
-#, c-format
-msgid "/Autodetect _modems"
-msgstr ""
-
-#: standalone/harddrake2:183
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr ""
-
-#: standalone/harddrake2:184
-#, c-format
-msgid "/Autodetect parallel _zip drives"
-msgstr ""
-
-#: standalone/harddrake2:191 standalone/printerdrake:152
-#, c-format
-msgid "/_Quit"
-msgstr "/_Выйсьці"
-
-#: standalone/harddrake2:204
-#, fuzzy, c-format
-msgid "/_Fields description"
-msgstr "Апісанне"
-
-#: standalone/harddrake2:206
-#, c-format
-msgid "Harddrake help"
-msgstr ""
-
-#: standalone/harddrake2:215
-#, 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 ""
-
-#: standalone/harddrake2:221 standalone/printerdrake:177
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Паведаміць пра памылку"
-
-#: standalone/harddrake2:223 standalone/printerdrake:179
-#, c-format
-msgid "/_About..."
-msgstr "/_Пра..."
-
-#: standalone/harddrake2:224
-#, c-format
-msgid "About Harddrake"
-msgstr "Пра Harddrake"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/harddrake2:226
-#, c-format
-msgid ""
-"This is HardDrake, a %s hardware configuration tool.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-msgstr ""
-
-#: standalone/harddrake2:242
-#, fuzzy, c-format
-msgid "Harddrake2"
-msgstr "Пра MenuDrake"
-
-#: standalone/harddrake2:272
-#, fuzzy, c-format
-msgid "Detected hardware"
-msgstr "Гл. апісанне абсталявання"
-
-#: standalone/harddrake2:277
-#, fuzzy, c-format
-msgid "Configure module"
-msgstr "Настройка мышы"
-
-#: standalone/harddrake2:284
-#, fuzzy, c-format
-msgid "Run config tool"
-msgstr "Канфігурацыя сістэмных сэрвісаў"
-
-#: standalone/harddrake2:308
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
-
-#: standalone/harddrake2:329 standalone/printerdrake:306
-#: standalone/printerdrake:320
-#, c-format
-msgid "Unknown"
-msgstr "Невядома"
-
-#: standalone/harddrake2:349
-#, c-format
-msgid "Misc"
-msgstr "Рознае"
-
-#: standalone/harddrake2:427
-#, fuzzy, c-format
-msgid "secondary"
-msgstr "секунд"
-
-#: standalone/harddrake2:427
-#, fuzzy, c-format
-msgid "primary"
-msgstr "Пятніца"
-
-#: standalone/harddrake2:431
-#, fuzzy, c-format
-msgid "burner"
-msgstr "Прынтэр"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "DVD"
-msgstr ""
-
-#: standalone/harddrake2:511
-#, c-format
-msgid ""
-"The following devices needs proprietary drivers or firmwares in order to "
-"operate smoothly. The appropriate packages can be retrieved from the "
-"Mandriva Club. Do you want to subscribe to the Mandriva Club?"
-msgstr ""
-
-#: standalone/keyboarddrake:45
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Вы жадаеце каб BackSpace працаваў у кансолі як Delete?"
-
-#: standalone/localedrake:38
-#, fuzzy, c-format
-msgid "LocaleDrake"
-msgstr "Гульня ў косьці"
-
-#: standalone/localedrake:44
-#, fuzzy, 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"
-#: standalone/localedrake:47 standalone/scannerdrake:135
-#, c-format
-msgid ", "
-msgstr ", "
-
-#: standalone/localedrake:55
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: standalone/logdrake:49
-#, fuzzy, c-format
-msgid "Mandriva Linux Tools Logs"
-msgstr "Цэнтар кіраваньня"
-
-#: standalone/logdrake:50
-#, c-format
-msgid "Logdrake"
-msgstr ""
-
-#: standalone/logdrake:63
-#, fuzzy, c-format
-msgid "Show only for the selected day"
-msgstr "Ня знойдзена дадзеных для выбранага вузла"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "/File/_New"
-msgstr "/Файл/_Стварыць"
-
-#: standalone/logdrake:70
-#, fuzzy, c-format
-msgid "<control>N"
-msgstr "<control>Q"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "/File/_Open"
-msgstr "/Файл/_Адкрыць"
-
-#: standalone/logdrake:71
-#, fuzzy, c-format
-msgid "<control>O"
-msgstr "<control>Q"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "/File/_Save"
-msgstr "/Файл/_Захаваць"
-
-#: standalone/logdrake:72
-#, fuzzy, c-format
-msgid "<control>S"
-msgstr "<control>Q"
-
-#: standalone/logdrake:73
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Файл/Захаваць _як"
-
-#: standalone/logdrake:74
-#, c-format
-msgid "/File/-"
-msgstr "/Файл/-"
-
-#: standalone/logdrake:77
-#, c-format
-msgid "/Options/Test"
-msgstr "/Налады/Праверыць"
-
-#: standalone/logdrake:79
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Дапамога/_Пра..."
-
-#: standalone/logdrake:108
-#, c-format
-msgid ""
-"_:this is the auth.log log file\n"
-"Authentication"
-msgstr ""
-
-#: standalone/logdrake:109
-#, c-format
-msgid ""
-"_:this is the user.log log file\n"
-"User"
-msgstr ""
-
-#: standalone/logdrake:110
-#, c-format
-msgid ""
-"_:this is the /var/log/messages log file\n"
-"Messages"
-msgstr ""
-
-#: standalone/logdrake:111
-#, c-format
-msgid ""
-"_:this is the /var/log/syslog log file\n"
-"Syslog"
-msgstr ""
-
-#: standalone/logdrake:115
-#, fuzzy, c-format
-msgid "search"
-msgstr "Сакавік"
-
-#: standalone/logdrake:127
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr ""
-
-#: standalone/logdrake:128 standalone/net_applet:347 standalone/net_monitor:93
-#, c-format
-msgid "Settings"
-msgstr "Усталёўкі"
-
-#: standalone/logdrake:133
-#, fuzzy, c-format
-msgid "Matching"
-msgstr "Нічога"
-
-#: standalone/logdrake:134
-#, fuzzy, c-format
-msgid "but not matching"
-msgstr "Мэнэджэр файлаў"
-
-#: standalone/logdrake:138
-#, fuzzy, c-format
-msgid "Choose file"
-msgstr "Выбар памераў"
-
-#: standalone/logdrake:150
-#, c-format
-msgid "Calendar"
-msgstr "Каляндар"
-
-#: standalone/logdrake:160
-#, fuzzy, c-format
-msgid "Content of the file"
-msgstr "Далучэнне да Інтэрнэту"
-
-#: standalone/logdrake:164 standalone/logdrake:401
-#, fuzzy, c-format
-msgid "Mail alert"
-msgstr "Калькулятар"
-
-#: standalone/logdrake:171
-#, c-format
-msgid "The alert wizard has failed unexpectedly:"
-msgstr ""
-
-#: standalone/logdrake:224
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr ""
-
-#: standalone/logdrake:379
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr ""
-
-#: standalone/logdrake:380
-#, fuzzy, c-format
-msgid "Domain Name Resolver"
-msgstr "Імя дамену"
-
-#: standalone/logdrake:381
-#, fuzzy, c-format
-msgid "Ftp Server"
-msgstr "Сервак"
-
-#: standalone/logdrake:382
-#, c-format
-msgid "Postfix Mail Server"
-msgstr ""
-
-#: standalone/logdrake:383
-#, fuzzy, c-format
-msgid "Samba Server"
-msgstr "NIS сэервер:"
-
-#: standalone/logdrake:385
-#, fuzzy, c-format
-msgid "Webmin Service"
-msgstr "Прылады"
-
-#: standalone/logdrake:386
-#, fuzzy, c-format
-msgid "Xinetd Service"
-msgstr "Сервер друку"
-
-#: standalone/logdrake:395
-#, fuzzy, c-format
-msgid "Configure the mail alert system"
-msgstr "Настроіць праверку правапісу"
-
-#: standalone/logdrake:396
-#, c-format
-msgid "Stop the mail alert system"
-msgstr ""
-
-#: standalone/logdrake:404
-#, fuzzy, c-format
-msgid "Mail alert configuration"
-msgstr "Канфігурацыя"
-
-#: standalone/logdrake:405
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-
-#: standalone/logdrake:415
-#, fuzzy, c-format
-msgid "Services settings"
-msgstr "Настройка прылады"
-
-#: standalone/logdrake:416
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr ""
-
-#: standalone/logdrake:423
-#, fuzzy, c-format
-msgid "Load setting"
-msgstr "Настройкі клявіятуры"
-
-#: standalone/logdrake:424
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: standalone/logdrake:425
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr ""
-
-#: standalone/logdrake:430
-#, fuzzy, c-format
-msgid "Alert configuration"
-msgstr "Настройка Xorg"
-
-#: standalone/logdrake:431
-#, c-format
-msgid "Please enter your email address below "
-msgstr ""
-
-#: standalone/logdrake:432
-#, c-format
-msgid "and enter the name (or the IP) of the SMTP server you wish to use"
-msgstr ""
-
-#: standalone/logdrake:451
-#, c-format
-msgid "The wizard successfully configured the mail alert."
-msgstr ""
-
-#: standalone/logdrake:457
-#, c-format
-msgid "The wizard successfully disabled the mail alert."
-msgstr ""
-
-#: standalone/logdrake:516
-#, fuzzy, c-format
-msgid "Save as.."
-msgstr "Захаваць спіс"
-
-#: standalone/mousedrake:31
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "калі ласка, пазначце тып вашай мышы."
-
-#: standalone/mousedrake:44
-#, c-format
-msgid "Emulate third button?"
-msgstr "Эмуляваць трэцюю кнопку?"
-
-#: standalone/mousedrake:61
-#, fuzzy, c-format
-msgid "Mouse test"
-msgstr "Mouse Systems"
-
-#: standalone/mousedrake:64
-#, fuzzy, c-format
-msgid "Please test your mouse:"
-msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-
-#: standalone/net_applet:47
-#, fuzzy, c-format
-msgid "Network is up on interface %s"
-msgstr "Сеткавы інтэрфейс"
-
-#. -PO: keep the "Configure Network" substring synced with the "Configure Network" message below
-#: standalone/net_applet:50
-#, fuzzy, c-format
-msgid "Network is down on interface %s. Click on \"Configure Network\""
-msgstr "Сеткавы інтэрфейс"
-
-#: standalone/net_applet:56 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, fuzzy, c-format
-msgid "Connect %s"
-msgstr "Імя злучэння"
-
-#: standalone/net_applet:57 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Disconnect %s"
-msgstr ""
-
-#: standalone/net_applet:58
-#, fuzzy, c-format
-msgid "Monitor Network"
-msgstr "Сетка"
-
-#: standalone/net_applet:60
-#, c-format
-msgid "Manage wireless networks"
-msgstr ""
-
-#: standalone/net_applet:61
-#, fuzzy, c-format
-msgid "Configure Network"
-msgstr "Настройка сеткі"
-
-#: standalone/net_applet:63
-#, fuzzy, c-format
-msgid "Watched interface"
-msgstr "Сеткавыя інтэрфэйсы"
-
-#: standalone/net_applet:93
-#, c-format
-msgid "Profiles"
-msgstr "Профілі"
-
-#: standalone/net_applet:102
-#, c-format
-msgid "Get Online Help"
-msgstr ""
-
-#: standalone/net_applet:335
-#, c-format
-msgid "Interactive Firewall automatic mode"
-msgstr ""
-
-#: standalone/net_applet:340
-#, c-format
-msgid "Always launch on startup"
-msgstr ""
-
-#: standalone/net_applet:344
-#, fuzzy, c-format
-msgid "Wireless networks"
-msgstr "Канфігурацыя"
-
-#: standalone/net_applet:429
-#, fuzzy, c-format
-msgid "Interactive Firewall: intrusion detected"
-msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
-
-#: standalone/net_applet:442
-#, fuzzy, c-format
-msgid "What do you want to do with this attacker?"
-msgstr "Вы жадаеце скончыць гульню?"
-
-#: standalone/net_applet:445
-#, fuzzy, c-format
-msgid "Attack details"
-msgstr "Падрабязнасці"
-
-#: standalone/net_applet:449
-#, fuzzy, c-format
-msgid "Attack time: %s"
-msgstr "Укласьці файл(ы)"
-
-#: standalone/net_applet:450
-#, c-format
-msgid "Network interface: %s"
-msgstr "Сеткавы інтэрфейс: %s"
-
-#: standalone/net_applet:451
-#, fuzzy, c-format
-msgid "Attack type: %s"
-msgstr "Тып: "
-
-#: standalone/net_applet:452
-#, c-format
-msgid "Protocol: %s"
-msgstr "Пратакол: %s"
-
-#: standalone/net_applet:453
-#, fuzzy, c-format
-msgid "Attacker IP address: %s"
-msgstr "IP адрас"
-
-#: standalone/net_applet:454
-#, fuzzy, c-format
-msgid "Attacker hostname: %s"
-msgstr "Адбыўся збой пад час атрыманьня назвы вузла: %s\n"
-
-#: standalone/net_applet:457
-#, fuzzy, c-format
-msgid "Service attacked: %s"
-msgstr "Кіраваньне сэрвісамі"
-
-#: standalone/net_applet:458
-#, fuzzy, c-format
-msgid "Port attacked: %s"
-msgstr "Порт:"
-
-#: standalone/net_applet:460
-#, c-format
-msgid "Type of ICMP attack: %s"
-msgstr ""
-
-#: standalone/net_applet:465
-#, c-format
-msgid "Always blacklist (do not ask again)"
-msgstr ""
-
-#: standalone/net_monitor:57 standalone/net_monitor:62
-#, fuzzy, c-format
-msgid "Network Monitoring"
-msgstr "Канфігурацыя сеткі"
-
-#: standalone/net_monitor:98
-#, c-format
-msgid "Global statistics"
-msgstr ""
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Instantaneous"
-msgstr ""
-
-#: standalone/net_monitor:101
-#, fuzzy, c-format
-msgid "Average"
-msgstr "Альтэрнатыўны"
-
-#: standalone/net_monitor:102
-#, c-format
-msgid ""
-"Sending\n"
-"speed:"
-msgstr ""
-
-#: standalone/net_monitor:103
-#, c-format
-msgid ""
-"Receiving\n"
-"speed:"
-msgstr ""
-
-#: standalone/net_monitor:107
-#, fuzzy, c-format
-msgid ""
-"Connection\n"
-"time: "
-msgstr "Імя злучэння"
-
-#: standalone/net_monitor:114
-#, c-format
-msgid "Use same scale for received and transmitted"
-msgstr ""
-
-#: standalone/net_monitor:133
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr ""
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, fuzzy, c-format
-msgid "Disconnecting from Internet "
-msgstr "Далучэнне да Інтэрнэту"
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, fuzzy, c-format
-msgid "Connecting to Internet "
-msgstr "Далучэнне да Інтэрнэту"
-
-#: standalone/net_monitor:226
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr ""
-
-#: standalone/net_monitor:227
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr ""
-
-#: standalone/net_monitor:229
-#, fuzzy, c-format
-msgid "Connection complete."
-msgstr "Імя злучэння"
-
-#: standalone/net_monitor:230
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandriva Linux Control Center."
-msgstr ""
-
-#: standalone/net_monitor:335
-#, fuzzy, c-format
-msgid "Color configuration"
-msgstr "Канфігурацыя"
-
-#: standalone/net_monitor:383 standalone/net_monitor:403
-#, fuzzy, c-format
-msgid "sent: "
-msgstr "Эсперанто:"
-
-#: standalone/net_monitor:390 standalone/net_monitor:407
-#, c-format
-msgid "received: "
-msgstr ""
-
-#: standalone/net_monitor:397
-#, c-format
-msgid "average"
-msgstr ""
-
-#: standalone/net_monitor:400
-#, fuzzy, c-format
-msgid "Local measure"
-msgstr "Гульня ў косьці"
-
-#: standalone/net_monitor:461
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: standalone/net_monitor:472
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "Сумеснае Інтэрнэт-злучэнне"
-
-#: standalone/printerdrake:76
-#, fuzzy, c-format
-msgid "Reading data of installed printers..."
-msgstr "Стварэнне дыскеты для ўсталявання"
-
-#: standalone/printerdrake:128
-#, fuzzy, c-format
-msgid "%s Printer Management Tool"
-msgstr "Мэнэджэр тэм"
-
-#: standalone/printerdrake:142 standalone/printerdrake:143
-#: standalone/printerdrake:144 standalone/printerdrake:145
-#: standalone/printerdrake:153 standalone/printerdrake:154
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Actions"
-msgstr "/_Дзеяньні"
-
-#: standalone/printerdrake:142 standalone/printerdrake:154
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Дадаць друкарку"
-
-#: standalone/printerdrake:143
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Зрабіць _дапомным"
-
-#: standalone/printerdrake:144
-#, c-format
-msgid "/_Edit"
-msgstr "/_Рэдагаваць"
-
-#: standalone/printerdrake:145
-#, c-format
-msgid "/_Delete"
-msgstr "/_Выдаліць"
-
-#: standalone/printerdrake:146
-#, c-format
-msgid "/_Expert mode"
-msgstr ""
-
-#: standalone/printerdrake:151
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Аднавіць"
-
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_Наладзіць CUPS"
-
-#: standalone/printerdrake:171
-#, fuzzy, c-format
-msgid "/Configure _Auto Administration"
-msgstr "Сістэмнае адміністраваньне"
-
-#: standalone/printerdrake:194
-#, c-format
-msgid "Search:"
-msgstr "Шукаць:"
-
-#: standalone/printerdrake:197
-#, c-format
-msgid "Apply filter"
-msgstr "Ужыць фільтар"
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Def."
-msgstr ""
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Printer Name"
-msgstr "Назва друкаркі"
-
-#: standalone/printerdrake:224
-#, c-format
-msgid "Connection Type"
-msgstr "Тып далучэньня"
-
-#: standalone/printerdrake:231
-#, fuzzy, c-format
-msgid "Server Name"
-msgstr "Сервак"
-
-#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:239
-#, fuzzy, c-format
-msgid "Add Printer"
-msgstr "Прынтэр"
-
-#: standalone/printerdrake:239
-#, fuzzy, c-format
-msgid "Add a new printer to the system"
-msgstr "Дадаць карыстальніка ў сыстэму"
-
-#. -PO: "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set as default"
-msgstr "Усталяваць як дапомнае"
-
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr ""
-
-#: standalone/printerdrake:245
-#, fuzzy, c-format
-msgid "Edit selected printer"
-msgstr "Рэдагаваць вылучаны радок"
-
-#: standalone/printerdrake:248
-#, fuzzy, c-format
-msgid "Delete selected printer"
-msgstr "Выдаліць вылучаны радок"
-
-#: standalone/printerdrake:251
-#, c-format
-msgid "Refresh the list"
-msgstr "Аднавіць сьпіс"
-
-#. -PO: "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:254
-#, fuzzy, c-format
-msgid "Configure CUPS"
-msgstr "Настройка IDE"
-
-#: standalone/printerdrake:254
-#, fuzzy, c-format
-msgid "Configure CUPS printing system"
-msgstr "Настройка IDE"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Enabled"
-msgstr "Уключана"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Disabled"
-msgstr "Выключана"
-
-#: standalone/printerdrake:596
-#, c-format
-msgid "Authors: "
-msgstr "Аўтары: "
-
-#. -PO: here %s is the version number
-#: standalone/printerdrake:606
-#, fuzzy, c-format
-msgid "Printer Management %s"
-msgstr "Мэнэджэр файлаў"
-
-#: standalone/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 ""
-
-#: standalone/scannerdrake:55
-#, c-format
-msgid "Aborting Scannerdrake."
-msgstr ""
-
-#: standalone/scannerdrake:60
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-
-#: standalone/scannerdrake:61
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr ""
-
-#: standalone/scannerdrake:67 standalone/scannerdrake:508
-#, c-format
-msgid "Searching for configured scanners..."
-msgstr ""
-
-#: standalone/scannerdrake:71 standalone/scannerdrake:512
-#, c-format
-msgid "Searching for new scanners..."
-msgstr ""
-
-#: standalone/scannerdrake:79 standalone/scannerdrake:534
-#, c-format
-msgid "Re-generating list of configured scanners..."
-msgstr ""
-
-#: standalone/scannerdrake:101
-#, c-format
-msgid "The %s is not supported by this version of %s."
-msgstr ""
-
-#: standalone/scannerdrake:104
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr ""
-
-#: standalone/scannerdrake:116
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
-
-#: standalone/scannerdrake:131
-#, c-format
-msgid "Select a scanner model"
-msgstr ""
-
-#: standalone/scannerdrake:132
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: standalone/scannerdrake:133
-#, c-format
-msgid "Detected model: %s"
-msgstr ""
-
-#: standalone/scannerdrake:136
-#, c-format
-msgid "Port: %s"
-msgstr "Порт: %s"
-
-#: standalone/scannerdrake:138 standalone/scannerdrake:141
-#, c-format
-msgid " (UNSUPPORTED)"
-msgstr ""
-
-#: standalone/scannerdrake:144
-#, fuzzy, c-format
-msgid "The %s is not supported under Linux."
-msgstr "%s непадтрымліваецца гэтым дыялёгам\n"
-
-#: standalone/scannerdrake:171 standalone/scannerdrake:185
-#, c-format
-msgid "Do not install firmware file"
-msgstr ""
-
-#: standalone/scannerdrake:175 standalone/scannerdrake:227
-#, c-format
-msgid ""
-"It is possible that your %s needs its firmware to be uploaded everytime when "
-"it is turned on."
-msgstr ""
-
-#: standalone/scannerdrake:176 standalone/scannerdrake:228
-#, c-format
-msgid "If this is the case, you can make this be done automatically."
-msgstr ""
-
-#: standalone/scannerdrake:177 standalone/scannerdrake:231
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware file for your scanner so that it "
-"can be installed."
-msgstr ""
-
-#: standalone/scannerdrake:178 standalone/scannerdrake:232
-#, 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 ""
-
-#: standalone/scannerdrake:180 standalone/scannerdrake:239
-#, c-format
-msgid "Install firmware file from"
-msgstr ""
-
-#: standalone/scannerdrake:200
-#, fuzzy, c-format
-msgid "Select firmware file"
-msgstr "Абярыце файл"
-
-#: standalone/scannerdrake:203 standalone/scannerdrake:262
-#, c-format
-msgid "The firmware file %s does not exist or is unreadable!"
-msgstr ""
-
-#: standalone/scannerdrake:226
-#, c-format
-msgid ""
-"It is possible that your scanners need their firmware to be uploaded "
-"everytime when they are turned on."
-msgstr ""
-
-#: standalone/scannerdrake:230
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware files for your scanners so that it "
-"can be installed."
-msgstr ""
-
-#: standalone/scannerdrake:233
-#, 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 ""
-
-#: standalone/scannerdrake:235
-#, c-format
-msgid "Install firmware for the"
-msgstr ""
-
-#: standalone/scannerdrake:258
-#, fuzzy, c-format
-msgid "Select firmware file for the %s"
-msgstr "Усталяваць шрыфт для стальца"
-
-#: standalone/scannerdrake:276
-#, fuzzy, c-format
-msgid "Could not install the firmware file for the %s!"
-msgstr "Усталяваць шрыфт для стальца"
-
-#: standalone/scannerdrake:289
-#, c-format
-msgid "The firmware file for your %s was successfully installed."
-msgstr ""
-
-#: standalone/scannerdrake:299
-#, c-format
-msgid "The %s is unsupported"
-msgstr ""
-
-#: standalone/scannerdrake:304
-#, c-format
-msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the %s Control Center in Hardware section."
-msgstr ""
-
-#: standalone/scannerdrake:322
-#, fuzzy, c-format
-msgid "Setting up kernel modules..."
-msgstr "Індыкатар гучнасьці"
-
-#: standalone/scannerdrake:332 standalone/scannerdrake:339
-#: standalone/scannerdrake:369
-#, c-format
-msgid "Auto-detect available ports"
-msgstr ""
-
-#: standalone/scannerdrake:334 standalone/scannerdrake:380
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr ""
-
-#: standalone/scannerdrake:335
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr ""
-
-#: standalone/scannerdrake:337 standalone/scannerdrake:382
-#, fuzzy, c-format
-msgid "choose device"
-msgstr "Загрузачная прылада"
-
-#: standalone/scannerdrake:371
-#, fuzzy, c-format
-msgid "Searching for scanners..."
-msgstr "Адшукаць файлы на дыску"
-
-#: standalone/scannerdrake:407 standalone/scannerdrake:414
-#, fuzzy, c-format
-msgid "Attention!"
-msgstr "Атракцыён"
-
-#: standalone/scannerdrake:408
-#, 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 ""
-
-#: standalone/scannerdrake:409 standalone/scannerdrake:418
-#, c-format
-msgid ""
-"More info in the driver's manual page. Run the command \"man sane-%s\" to "
-"read it."
-msgstr ""
-
-#: standalone/scannerdrake:411 standalone/scannerdrake:420
-#, c-format
-msgid ""
-"After that you may scan documents using \"XSane\" or \"Kooka\" from "
-"Multimedia/Graphics in the applications menu."
-msgstr ""
-
-#: standalone/scannerdrake:415
-#, c-format
-msgid ""
-"Your %s has been configured, but it is possible that additional manual "
-"adjustments are needed to get it to work. "
-msgstr ""
-
-#: standalone/scannerdrake:416
-#, 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 ""
-
-#: standalone/scannerdrake:417
-#, c-format
-msgid "edit the configuration file /etc/sane.d/%s.conf. "
-msgstr ""
-
-#: standalone/scannerdrake:423
-#, 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 ""
-
-#: standalone/scannerdrake:448
-#, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr ""
-
-#: standalone/scannerdrake:449
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr ""
-
-#: standalone/scannerdrake:452 standalone/scannerdrake:455
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr ""
-
-#: standalone/scannerdrake:469
-#, fuzzy, c-format
-msgid "Search for new scanners"
-msgstr "Адшукаць файлы на дыску"
-
-#: standalone/scannerdrake:475
-#, c-format
-msgid "Add a scanner manually"
-msgstr ""
-
-#: standalone/scannerdrake:482
-#, c-format
-msgid "Install/Update firmware files"
-msgstr ""
-
-#: standalone/scannerdrake:488
-#, fuzzy, c-format
-msgid "Scanner sharing"
-msgstr "Сан Марына"
-
-#: standalone/scannerdrake:547 standalone/scannerdrake:712
-#, fuzzy, c-format
-msgid "All remote machines"
-msgstr "Мэнэджэр файлаў"
-
-#: standalone/scannerdrake:559 standalone/scannerdrake:862
-#, c-format
-msgid "This machine"
-msgstr ""
-
-#: standalone/scannerdrake:599
-#, 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 ""
-
-#: standalone/scannerdrake:600
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-
-#: standalone/scannerdrake:603
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr ""
-
-#: standalone/scannerdrake:605
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr ""
-
-#: standalone/scannerdrake:619
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr ""
-
-#: standalone/scannerdrake:622
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr ""
-
-#: standalone/scannerdrake:649 standalone/scannerdrake:721
-#: standalone/scannerdrake:871
-#, c-format
-msgid "Sharing of local scanners"
-msgstr ""
-
-#: standalone/scannerdrake:650
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr ""
-
-#: standalone/scannerdrake:661 standalone/scannerdrake:811
-#, fuzzy, c-format
-msgid "Add host"
-msgstr "Дадаць карыстальніка"
-
-#: standalone/scannerdrake:667 standalone/scannerdrake:817
-#, fuzzy, c-format
-msgid "Edit selected host"
-msgstr "Рэдагаваць вылучаны радок"
-
-#: standalone/scannerdrake:676 standalone/scannerdrake:826
-#, fuzzy, c-format
-msgid "Remove selected host"
-msgstr "/Выдаліць/Выбранае"
-
-#: standalone/scannerdrake:700 standalone/scannerdrake:708
-#: standalone/scannerdrake:713 standalone/scannerdrake:759
-#: standalone/scannerdrake:850 standalone/scannerdrake:858
-#: standalone/scannerdrake:863 standalone/scannerdrake:909
-#, c-format
-msgid "Name/IP address of host:"
-msgstr ""
-
-#: standalone/scannerdrake:722 standalone/scannerdrake:872
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr ""
-
-#: standalone/scannerdrake:733 standalone/scannerdrake:883
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr ""
-
-#: standalone/scannerdrake:744 standalone/scannerdrake:894
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr ""
-
-#: standalone/scannerdrake:799
-#, fuzzy, c-format
-msgid "Usage of remote scanners"
-msgstr "Выкарыстоўваць незанятую прастору"
-
-#: standalone/scannerdrake:800
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr ""
-
-#: standalone/scannerdrake:957
-#, 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 ""
-
-#: standalone/scannerdrake:961 standalone/scannerdrake:965
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr ""
-
-#: standalone/service_harddrake:113
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr ""
-
-#: standalone/service_harddrake:114
-#, c-format
-msgid "- %s was removed\n"
-msgstr ""
+msgid "Africa"
+msgstr "Паўднёвая Афрыка"
-#: standalone/service_harddrake:117
+#: timezone.pm:187
#, fuzzy, c-format
-msgid "Some devices were added: %s\n"
-msgstr "Мыш: %s\n"
-
-#: standalone/service_harddrake:118
-#, c-format
-msgid "- %s was added\n"
-msgstr ""
-
-#: standalone/service_harddrake:235
-#, c-format
-msgid "Hardware probing in progress"
-msgstr ""
+msgid "Asia"
+msgstr "Аўстрыя"
-#: standalone/service_harddrake_confirm:7
+#: timezone.pm:188
#, c-format
-msgid "Hardware changes in \"%s\" class (%s seconds to answer)"
+msgid "Europe"
msgstr ""
-#: standalone/service_harddrake_confirm:8
-#, fuzzy, c-format
-msgid "Do you want to run the appropriate config tool?"
-msgstr "Ці жадаеце пратэсціраваць настройкі?"
-
-#: steps.pm:14
-#, c-format
-msgid "Language"
-msgstr "Выбар мовы"
-
-#: steps.pm:15
+#: timezone.pm:189
#, fuzzy, c-format
-msgid "License"
-msgstr "Ліхтэнштайн"
-
-#: steps.pm:16
-#, c-format
-msgid "Configure mouse"
-msgstr "Настройка мышы"
-
-#: steps.pm:17
-#, c-format
-msgid "Hard drive detection"
-msgstr "Вызначэнне жорсткага дыску"
-
-#: steps.pm:18
-#, c-format
-msgid "Select installation class"
-msgstr "Клас усталявання"
-
-#: steps.pm:19
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Выбар клавіятуры"
-
-#: steps.pm:22
-#, c-format
-msgid "Format partitions"
-msgstr "Фарматаванне раздзелаў"
-
-#: steps.pm:23
-#, c-format
-msgid "Choose packages to install"
-msgstr "Выбар пакетаў"
+msgid "North America"
+msgstr "Паўднёвая Афрыка"
-#: steps.pm:24
+#: timezone.pm:190
#, c-format
-msgid "Install system"
-msgstr "Усталяванне сістэмы"
+msgid "Oceania"
+msgstr "Акіянія"
-#: steps.pm:25
+#: timezone.pm:191
#, fuzzy, c-format
-msgid "Administrator password"
-msgstr "Пароль для root"
-
-#: steps.pm:26
-#, c-format
-msgid "Add a user"
-msgstr "Дадаць карыстальніка"
-
-#: steps.pm:27
-#, c-format
-msgid "Configure networking"
-msgstr "Настройка сеткі"
-
-#: steps.pm:28
-#, c-format
-msgid "Install bootloader"
-msgstr "Усталяванне загрузчыку"
-
-#: steps.pm:29
-#, c-format
-msgid "Configure X"
-msgstr "Настройка X Window"
+msgid "South America"
+msgstr "Паўднёвая Афрыка"
-#: steps.pm:31
+#: timezone.pm:200
#, c-format
-msgid "Configure services"
-msgstr "Настройка службаў"
+msgid "Hong Kong"
+msgstr "Сян Ган"
-#: steps.pm:32
+#: timezone.pm:237
#, fuzzy, c-format
-msgid "Install updates"
-msgstr "Усталяванне сістэмы"
+msgid "Russian Federation"
+msgstr "Рускі (фанетычны)"
-#: steps.pm:33
+#: timezone.pm:245
#, c-format
-msgid "Exit install"
-msgstr "Заканчэнне ўсталявання"
+msgid "Yugoslavia"
+msgstr "Югаславія"
-#: ugtk2.pm:899
+#: ugtk2.pm:788
#, c-format
msgid "Is this correct?"
msgstr "Гэта дакладна?"
-#: ugtk2.pm:959
+#: ugtk2.pm:848
#, fuzzy, c-format
msgid "No file chosen"
msgstr "абіральнік файла"
-#: ugtk2.pm:961
+#: ugtk2.pm:850
#, fuzzy, c-format
msgid "You have chosen a file, not a directory"
msgstr "Няма такога файла ці тэчкі"
-#: ugtk2.pm:963
+#: ugtk2.pm:852
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr "Назва \"/\" можа быць толькі каталёгам, а ня ключом"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, fuzzy, c-format
msgid "No such directory"
msgstr "Ня тэчка"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, fuzzy, c-format
msgid "No such file"
msgstr "Няма гэткага ключа '%s'\n"
-#: ugtk2.pm:1046
+#: ugtk2.pm:933
#, c-format
msgid "Expand Tree"
msgstr "Разгарнуць дрэва"
-#: ugtk2.pm:1047
+#: ugtk2.pm:934
#, c-format
msgid "Collapse Tree"
msgstr "Згарнуць дрэва"
-#: ugtk2.pm:1048
+#: ugtk2.pm:935
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "Пераключэнне паміж упарадкаваннем па групе і асобках"
@@ -23821,605 +6203,9 @@ msgstr ""
msgid "Installation failed"
msgstr "Усталяванне SILO"
-#~ msgid "Remove List"
-#~ msgstr "Выдаліць сьпіс"
-
-#~ msgid "Account:"
-#~ msgstr "Рахунак:"
-
-#~ msgid "Hostname:"
-#~ msgstr "Імя машыны:"
-
-#, fuzzy
-#~ msgid "Cancel setup"
-#~ msgstr "Адмена"
-
-#, fuzzy
-#~ msgid ""
-#~ "The following media have been found and will be used during install: %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do you have a supplementary installation media to configure?"
-#~ msgstr "Ці ёсць у вас %s інтэрфейс?"
-
-#, fuzzy
-#~ msgid "Unknown Model"
-#~ msgstr "Невядомая гукавая карта"
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Усталяванне пакету %s"
-
-#~ msgid "http://www.mandrivalinux.com/en/errata.php3"
-#~ msgstr "http://www.mandrivalinux.com/en/errata.php3"
-
-#, fuzzy
-#~ msgid "Default Idmap "
-#~ msgstr "Скура Па ўмаўчанні"
-
-#, fuzzy
-#~ msgid "Please wait, preparing installation..."
-#~ msgstr "Падрыхтоўка ўсталяваньня"
-
-#~ msgid "Installing package %s"
-#~ msgstr "Усталяванне пакету %s"
-
-#~ msgid "Welcome to <b>Mandriva Linux</b>!"
-#~ msgstr "Сардэчна запрашаем у <b>Mandriva Linux</b>!"
-
-#, fuzzy
-#~ msgid "<b>Mandriva Products</b>"
-#~ msgstr "Цэнтар кіраваньня"
-
-#~ msgid "<b>Kontact</b>"
-#~ msgstr "<b>Кантакт</b>"
-
-#, fuzzy
-#~ msgid "<b>Surf the Internet</b>"
-#~ msgstr "Інтэрнэт"
-
-#, fuzzy
-#~ msgid "<b>Development Environments</b>"
-#~ msgstr "Распрацоўка"
-
-#, fuzzy
-#~ msgid "<b>Development Editors</b>"
-#~ msgstr "Распрацоўка"
-
-#, fuzzy
-#~ msgid "<b>Development Languages</b>"
-#~ msgstr "Распрацоўка"
-
-#, fuzzy
-#~ msgid "\t* Scripting languages:"
-#~ msgstr "Мэнэджэр друку"
-
-#, fuzzy
-#~ msgid "<b>Development Tools</b>"
-#~ msgstr "Распрацоўка"
-
-#, fuzzy
-#~ msgid "<b>Servers</b>"
-#~ msgstr "Сервак"
-
-#, fuzzy
-#~ msgid "<b>Mandriva Linux Control Center</b>"
-#~ msgstr "Цэнтар кіраваньня"
-
-#, fuzzy
-#~ msgid "<b>Mandriva Club</b>"
-#~ msgstr "Цэнтар кіраваньня"
-
-#, fuzzy
-#~ msgid "<b>Mandriva Online</b>"
-#~ msgstr "Цэнтар кіраваньня"
-
-#, fuzzy
-#~ msgid "<b>Mandriva Expert</b>"
-#~ msgstr "Цэнтар кіраваньня"
-
-#~ msgid "Key"
-#~ msgstr "Клявіша"
-
-#~ msgid "Network:"
-#~ msgstr "Сетка:"
-
-#~ msgid "IP:"
-#~ msgstr "IP:"
-
-#~ msgid "Mode:"
-#~ msgstr "Рэжым:"
-
-#~ msgid "Encryption:"
-#~ msgstr "Шыфраваньне:"
-
-#~ msgid "Signal:"
-#~ msgstr "Сыгнал:"
-
-#~ msgid "Rescan"
-#~ msgstr "Перачытаць"
-
-#~ msgid "Status"
-#~ msgstr "Статус"
-
-#~ msgid "Disconnect"
-#~ msgstr "Адлучаць"
-
-#~ msgid "Connect to the Internet"
-#~ msgstr "Далучэнне да Інтэрнэту"
-
-#, fuzzy
-#~ msgid "Do not print any test page"
-#~ msgstr "Друк тэставых старонак"
-
-#, fuzzy
-#~ msgid "Found printer on %s..."
-#~ msgstr "Аддалены прынтэр"
-
-#, fuzzy
-#~ msgid "dhcpd Config..."
-#~ msgstr "Настройка IDE"
-
-#, fuzzy
-#~ msgid "Unable to select wireless network: %s"
-#~ msgstr "Немагчыма адчыніць файл %s\n"
-
-#, fuzzy
-#~ msgid "Interactive intrusion detection"
-#~ msgstr "Функцыі стварэньня інтэрфэйса:"
-
-#, fuzzy
-#~ msgid "Active Firewall: intrusion detected"
-#~ msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
-
-#, fuzzy
-#~ msgid "Do you want to blacklist the attacker?"
-#~ msgstr "Вы жадаеце скончыць гульню?"
-
-#~ msgid "Grub"
-#~ msgstr "Grub"
-
-#, fuzzy
-#~ msgid "Local Network adress"
-#~ msgstr "Прагляд лякальнай сеткі"
-
-#~ msgid "Configuring scripts, installing software, starting servers..."
-#~ msgstr "Канфігурацыя сцэнараў, усталяванне ПЗ, запуск службаў..."
-
-#, fuzzy
-#~ msgid "drakfloppy"
-#~ msgstr "Захаванне на дыскету"
-
-#, fuzzy
-#~ msgid "Boot disk creation"
-#~ msgstr "Настройка IDE"
-
-#~ msgid "General"
-#~ msgstr "Агульныя"
-
-#, fuzzy
-#~ msgid "Kernel version"
-#~ msgstr "Канфігурацыя"
-
-#~ msgid "Preferences"
-#~ msgstr "Усталяваньні"
-
-#, fuzzy
-#~ msgid "Advanced preferences"
-#~ msgstr "Адмысловыя ўсталяваньні"
-
-#~ msgid "Size"
-#~ msgstr "Памер"
-
-#, fuzzy
-#~ msgid "force"
-#~ msgstr "Усталяваньні"
-
-#, fuzzy
-#~ msgid "Add a module"
-#~ msgstr "Дадаць карыстальніка"
-
-#, fuzzy
-#~ msgid "Remove a module"
-#~ msgstr "/Выдаліць дохлыя файлы"
+#~ msgid "Icon"
+#~ msgstr "Піктаграма"
#, fuzzy
-#~ msgid "Unable to fork: %s"
-#~ msgstr "Немагчыма адчыніць файл %s\n"
-
-#~ msgid "use PPPoE"
-#~ msgstr "выкарыстоўваць PPPoE"
-
-#, fuzzy
-#~ msgid "use PPTP"
-#~ msgstr "выкарыстоўваць PPPoE"
-
-#, fuzzy
-#~ msgid "PXE Server Configuration"
-#~ msgstr "Канфігурацыя сістэмных сэрвісаў"
-
-#, fuzzy
-#~ msgid "Installation Server Configuration"
-#~ msgstr "Канфігурацыя сістэмных сэрвісаў"
-
-#~ msgid "No network adapter on your system!"
-#~ msgstr "У вашай сістэме няма ніводнага сеткавага адаптара!"
-
-#~ msgid "Choose the network interface"
-#~ msgstr "Пазначце сеткавы інтэрфейс"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose which network interface will be used for the dhcp server."
-#~ msgstr ""
-#~ "Калі ласка, пазначце сеткавы адаптар, які плануеце выкарыстоўваць для "
-#~ "далучэння да інтэрнэт"
-
-#, fuzzy
-#~ msgid "Installation image directory"
-#~ msgstr "Слоўнік GNOME"
-
-#, fuzzy
-#~ msgid "Do it later"
-#~ msgstr "Аб'яднанае стэрыа"
-
-#~ msgid "Internet Connection Sharing currently disabled"
-#~ msgstr "Сумеснае Інтэрнэт-злучэнне зараз забаронена"
-
-#~ msgid "Internet Connection Sharing currently enabled"
-#~ msgstr "Сумеснае Інтэрнэт-злучэнне зараз магчыма"
-
-#, fuzzy
-#~ msgid "Interface %s"
-#~ msgstr "Сеткавыя інтэрфэйсы"
-
-#, fuzzy
-#~ msgid "Network interface already configured"
-#~ msgstr "Інфармацыя аб сеткавых інтэрфэйсах"
-
-#, fuzzy
-#~ msgid "Show current interface configuration"
-#~ msgstr "Настройка драйверу Sun"
-
-#, fuzzy
-#~ msgid "Current interface configuration"
-#~ msgstr "Настройка драйверу Sun"
-
-#, fuzzy
-#~ msgid "Re-configure interface and DHCP server"
-#~ msgstr "Настройка IDE"
-
-#, fuzzy
-#~ msgid "hd"
-#~ msgstr "Чад"
-
-#, fuzzy
-#~ msgid "tape"
-#~ msgstr "Іншае"
-
-#, fuzzy
-#~ msgid "choose image file"
-#~ msgstr "Выбар памераў"
-
-#, fuzzy
-#~ msgid "Configure bootsplash picture"
-#~ msgstr "Настрйка драйверу Solaris"
-
-#~ msgid "Preview"
-#~ msgstr "Папярэдні прагляд"
-
-#~ msgid "Choose color"
-#~ msgstr "Выбярыце колер"
-
-#~ msgid "Notice"
-#~ msgstr "Заўвага"
-
-#, fuzzy
-#~ msgid "Generating preview..."
-#~ msgstr "Вызначэнне прыладаў..."
-
-#~ msgid "No floppy drive available"
-#~ msgstr "Дыскавод недаступны"
-
-#, fuzzy
-#~ msgid "Please insert the Update Modules floppy in drive %s"
-#~ msgstr "Устаўце дыскету ў дыскавод %s"
-
-#, fuzzy
-#~ msgid ""
-#~ "_: keyboard\n"
-#~ "Tifinagh (+latin/arabic)"
-#~ msgstr "Азербайджанскі (latin)"
-
-#~ msgid ""
-#~ "Insert a floppy in drive\n"
-#~ "All data on this floppy will be lost"
-#~ msgstr ""
-#~ "Устаўце дыскету ў дыскавод\n"
-#~ "Усе дадзеныя на гэтай дыскеце будуць страчаны"
-
-#~ msgid "Save on floppy"
-#~ msgstr "Захаванне на дыскету"
-
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Усталяванне пакету HPOJ..."
-
-#~ msgid "Installing HPLIP package..."
-#~ msgstr "Усталяванне пакету HPLIP..."
-
-#~ msgid "Root password"
-#~ msgstr "Пароль для root"
-
-#~ msgid "Move"
-#~ msgstr "Перанос"
-
-#~ msgid "Which disk do you want to move it to?"
-#~ msgstr "На які дыск перанесці?"
-
-#~ msgid "Sector"
-#~ msgstr "Сектар"
-
-#~ msgid "Which sector do you want to move it to?"
-#~ msgstr "На які сектар перанесці?"
-
-#~ msgid "Moving"
-#~ msgstr "Пераносім"
-
-#~ msgid "Moving partition..."
-#~ msgstr "Пераносіцца раздзел..."
-
-#~ msgid "Error opening %s for writing: %s"
-#~ msgstr "Памылка адкрыцця %s для запісу: %s"
-
-#~ msgid "OK"
-#~ msgstr "Так"
-
-#~ msgid "Czech (QWERTZ)"
-#~ msgstr "Чешскі (QWERTZ)"
-
-#~ msgid "German"
-#~ msgstr "Нямецкі"
-
-#~ msgid "Dvorak"
-#~ msgstr "Dvorak"
-
-#~ msgid "Spanish"
-#~ msgstr "Іспанскі"
-
-#~ msgid "Finnish"
-#~ msgstr "Фінскі"
-
-#~ msgid "French"
-#~ msgstr "Французскі"
-
-#~ msgid "Norwegian"
-#~ msgstr "Нарвежскі"
-
-#~ msgid "Polish"
-#~ msgstr "Польскі"
-
-#~ msgid "Russian"
-#~ msgstr "Рускі"
-
-#~ msgid "Swedish"
-#~ msgstr "Швецкі"
-
-#~ msgid "Armenian (old)"
-#~ msgstr "Армянскі (стары)"
-
-#~ msgid "Armenian (typewriter)"
-#~ msgstr "Армянскі (typewriter)"
-
-#~ msgid "Armenian (phonetic)"
-#~ msgstr "Армянскі (фанетычны)"
-
-#~ msgid "Azerbaidjani (latin)"
-#~ msgstr "Азербайджанскі (latin)"
-
-#~ msgid "Belgian"
-#~ msgstr "Бельгійскі"
-
-#~ msgid "Brazilian (ABNT-2)"
-#~ msgstr "Бразільскі (ABNT-2)"
-
-#~ msgid "Belarusian"
-#~ msgstr "Беларускі"
-
-#~ msgid "Swiss (German layout)"
-#~ msgstr "Швейцарскі (Нямецкая раскладка)"
-
-#~ msgid "Swiss (French layout)"
-#~ msgstr "Швейцарскі (Французская раскладка)"
-
-#~ msgid "Czech (QWERTY)"
-#~ msgstr "Чешскі (QWERTY)"
-
-#~ msgid "German (no dead keys)"
-#~ msgstr "Нямецкі (няма заблакіраваных клавіш)"
-
-#~ msgid "Danish"
-#~ msgstr "Дацкі"
-
-#~ msgid "Dvorak (US)"
-#~ msgstr "Dvorak (US)"
-
-#~ msgid "Dvorak (Norwegian)"
-#~ msgstr "Dvorak (Нарвежскі)"
-
-#~ msgid "Estonian"
-#~ msgstr "Эстонскі"
-
-#~ msgid "Georgian (\"Russian\" layout)"
-#~ msgstr "Грузінскі (\"Руская\" раскладка)"
-
-#~ msgid "Georgian (\"Latin\" layout)"
-#~ msgstr "Грузінскі (\"Лацінская\" раскладка)"
-
-#~ msgid "Greek"
-#~ msgstr "Грэчаскі"
-
-#~ msgid "Hungarian"
-#~ msgstr "Мадьярскі"
-
-#~ msgid "Croatian"
-#~ msgstr "Харвацкі"
-
-#~ msgid "Israeli"
-#~ msgstr "Іўрыт"
-
-#~ msgid "Israeli (Phonetic)"
-#~ msgstr "Іўрыт (фанетычны)"
-
-#~ msgid "Iranian"
-#~ msgstr "Іранскі"
-
-#~ msgid "Icelandic"
-#~ msgstr "Ісландскі"
-
-#~ msgid "Italian"
-#~ msgstr "Італьянскі"
-
-#~ msgid "Japanese 106 keys"
-#~ msgstr "Японскі 106 клавіш"
-
-#~ msgid "Latin American"
-#~ msgstr "Лаціна-Амерыканскі"
-
-#~ msgid "Lithuanian AZERTY (old)"
-#~ msgstr "Літоўскі AZERTY (стары)"
-
-#~ msgid "Lithuanian AZERTY (new)"
-#~ msgstr "Літоўскі AZERTY (новы)"
-
-#~ msgid "Lithuanian \"number row\" QWERTY"
-#~ msgstr "Літоўскі \"нумар радка\" QWERTY"
-
-#~ msgid "Lithuanian \"phonetic\" QWERTY"
-#~ msgstr "Літоўскі \"фанетычны\" QWERTY"
-
-#~ msgid "Dutch"
-#~ msgstr "Галандскі"
-
-#~ msgid "Polish (qwerty layout)"
-#~ msgstr "Польскі (стандартная раскладка)"
-
-#~ msgid "Polish (qwertz layout)"
-#~ msgstr "Польскі (qwertz раскладка)"
-
-#~ msgid "Portuguese"
-#~ msgstr "Партугальскі"
-
-#~ msgid "Canadian (Quebec)"
-#~ msgstr "Канадскі (Квебэк)"
-
-#~ msgid "Russian (Phonetic)"
-#~ msgstr "Рускі (фанетычны)"
-
-#~ msgid "Slovenian"
-#~ msgstr "Славенскі"
-
-#~ msgid "Slovakian (QWERTZ)"
-#~ msgstr "Славацкі (QWERTZ)"
-
-#~ msgid "Slovakian (QWERTY)"
-#~ msgstr "Славацкі (QWERTY)"
-
-#~ msgid "Thai keyboard"
-#~ msgstr "Тайская клавіятура"
-
-#~ msgid "Turkish (traditional \"F\" model)"
-#~ msgstr "Турэцкі (традыцыёная \"F\" мадэль)"
-
-#~ msgid "Turkish (modern \"Q\" model)"
-#~ msgstr "Турэцкі (сучасная \"Q\" мадэль)"
-
-#~ msgid "Ukrainian"
-#~ msgstr "Украінскі"
-
-#~ msgid "Vietnamese \"numeric row\" QWERTY"
-#~ msgstr "Вьетнамскі \"нумар радка\" QWERTY"
-
-#~ msgid "Enable multiple profiles"
-#~ msgstr "Даступна шмат профіляў"
-
-#~ msgid ""
-#~ "You may now provide options to module %s.\n"
-#~ "Options are in format ``name=value name2=value2...''.\n"
-#~ "For instance, ``io=0x300 irq=7''"
-#~ msgstr ""
-#~ "Вы не можаце задаць опцыі модулю %s.\n"
-#~ "Опцыі - у фармаце ‟імя=значэнне імя2=значэнне2 ...”.\n"
-#~ "Напрыклад, ‟io=0x300 irq=7”"
-
-#~ msgid "Installation of %s failed. The following error occurred:"
-#~ msgstr "Усталяванне %s не атрымалася. Узнікла наступная памылка:"
-
-#~ msgid "/dev/hda"
-#~ msgstr "/dev/hda"
-
-#~ msgid "/dev/hdb"
-#~ msgstr "/dev/hdb"
-
-#~ msgid "/dev/fd0"
-#~ msgstr "/dev/fd0"
-
-#~ msgid ""
-#~ "Please choose which network adapter you want to use to connect to "
-#~ "Internet."
-#~ msgstr ""
-#~ "Калі ласка, пазначце сеткавы адаптар, які плануеце выкарыстоўваць для "
-#~ "далучэння да інтэрнэт"
-
-#~ msgid "chunk size"
-#~ msgstr "памер блоку"
-
-#~ msgid "Chunk size %s\n"
-#~ msgstr "Памер фрагменту %s\n"
-
-#~ msgid "Can not add a partition to _formatted_ RAID md%d"
-#~ msgstr "Не атрымліваецца дадаць раздзел на _адфармаціраваны_ RAID md%d"
-
-#~ msgid "mkraid failed (maybe raidtools are missing?)"
-#~ msgstr "mkraid не працаздольны (можа raid прылады адсутнічаюць?)"
-
-#~ msgid "mkraid failed"
-#~ msgstr "mkraid не працаздольны"
-
-#~ msgid "SILO Installation"
-#~ msgstr "Усталяванне SILO"
-
-#~ msgid "First sector of boot partition"
-#~ msgstr "Першы сектар загрузачнага раздзелу"
-
-#~ msgid "Bootloader installation"
-#~ msgstr "Усталяванне загрузчыку"
-
-#~ msgid "SILO"
-#~ msgstr "SILO"
-
-#~ msgid ""
-#~ "Your card can have 3D hardware acceleration support but only with Xorg %"
-#~ "s.\n"
-#~ "Your card is supported by Xorg %s which may have a better support in 2D."
-#~ msgstr ""
-#~ "Падтрымка 3D-паскарэння ў Вашай відэакарце выканана толькі ў Xorg %s.\n"
-#~ "Xorg %s можа выкарыстоўваць толькі 2D-паскарэнне для гэтай відэакарты."
-
-#~ msgid ""
-#~ "Your card can have 3D hardware acceleration support but only with Xorg %"
-#~ "s,\n"
-#~ "NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
-#~ "Your card is supported by Xorg %s which may have a better support in 2D."
-#~ msgstr ""
-#~ "Ваша відэакарта можа мець 3D-паскарэнне, якое падтрымліваецца толькі Xorg "
-#~ "%s.\n"
-#~ "МАЙЦЕ НА ЎВАЗЕ, ШТО ГЭТА ЭКСПЕРЫМЕНТАЛЬНАЯ ПАДТРЫМКА І МОЖА ПРЫВЕСЦІ ДА\n"
-#~ "ЗАВІСАННЯ ВАШАГА КАМП'ЮТЭРУ. Ваша відэакарта падтрымліваецца Xorg %s, "
-#~ "які\n"
-#~ "лепей падтрымлівае карты з 2D-паскарэннем."
-
-#~ msgid "4 billion colors (32 bits)"
-#~ msgstr "4 міліярда колераў (24 біты)"
-
-#~ msgid "XFree86 server: %s\n"
-#~ msgstr "Сервер XFree86: %s\n"
+#~ msgid "PLL setting:"
+#~ msgstr "Настройкі шрыфтоў"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 3d7bdd745..432946ef7 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-bg\n"
-"POT-Creation-Date: 2006-03-05 18:57+0800\n"
+"POT-Creation-Date: 2007-03-21 12:10+0100\n"
"PO-Revision-Date: 2004-09-15 13:27+0200\n"
"Last-Translator: Boyan Ivanov <boyan17@bulgaria.com>\n"
"Language-Team: Bulgarian <dict@linux.zonebg.com>\n"
@@ -18,779 +18,20 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0.2\n"
-#: ../move/move.pm:292
-#, fuzzy, c-format
-msgid "Which USB key do you want to format?"
-msgstr "Какъв тип информация искате да прибавите"
-
-#: ../move/move.pm:296
-#, c-format
-msgid ""
-"You are about to format a USB device \"%s\". This will delete all data on "
-"it.\n"
-"Make sure that the selected device is the USB key you want to format. \n"
-"We advise you to unplug all other USB storage devices while doing this "
-"operation."
-msgstr ""
-
-#: ../move/move.pm:448 ../move/move.pm:460
-#, c-format
-msgid "Key is not writable"
-msgstr ""
-
-#: ../move/move.pm:450
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-
-#: ../move/move.pm:452
-#, c-format
-msgid "Retry"
-msgstr "Повторение"
-
-#: ../move/move.pm:453 ../move/move.pm:497
-#, c-format
-msgid "Continue without USB key"
-msgstr ""
-
-#: ../move/move.pm:462
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled, but we can not safely\n"
-"unplug it now.\n"
-"\n"
-"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandriva Move again."
-msgstr ""
-
-#: ../move/move.pm:468 help.pm:410 install_steps_interactive.pm:1303
-#, c-format
-msgid "Reboot"
-msgstr "Престартира"
-
-#: ../move/move.pm:473
-#, c-format
-msgid ""
-"Your USB key does not have any valid Windows (FAT) partitions.\n"
-"We need one to continue (beside, it's more standard so that you\n"
-"will be able to move and access your files from machines\n"
-"running Windows). Please plug in an USB key containing a\n"
-"Windows partition instead.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-
-#: ../move/move.pm:483
-#, c-format
-msgid ""
-"We did not detect any USB key on your system. If you\n"
-"plug in an USB key now, Mandriva Move will have the ability\n"
-"to transparently save the data in your home directory and\n"
-"system wide configuration, for next boot on this computer\n"
-"or another one. Note: if you plug in a key now, wait several\n"
-"seconds before detecting again.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-
-#: ../move/move.pm:494
-#, c-format
-msgid "Need a key to save your data"
-msgstr ""
-
-#: ../move/move.pm:496
-#, c-format
-msgid "Detect USB key again"
-msgstr ""
-
-#: ../move/move.pm:517
-#, fuzzy, c-format
-msgid "Setting up USB key"
-msgstr "Установявам ISA PNP устройства: "
-
-#: ../move/move.pm:517
-#, fuzzy, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Моля, изберете ниво на сигурност..."
-
-#: ../move/move.pm:546
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
-
-#: ../move/move.pm:556
-#, fuzzy, c-format
-msgid "Auto configuration"
-msgstr "Потребителска настройка"
-
-#: ../move/move.pm:556
-#, fuzzy, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Моля, изберете ниво на сигурност..."
-
-#: ../move/move.pm:604 ../move/move.pm:660 ../move/move.pm:664
-#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/interactive.pm:231
-#: diskdrake/interactive.pm:244 diskdrake/interactive.pm:405
-#: diskdrake/interactive.pm:423 diskdrake/interactive.pm:560
-#: diskdrake/interactive.pm:565 diskdrake/smbnfs_gtk.pm:41 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:52 fsedit.pm:218 install_any.pm:1775
-#: install_any.pm:1827 install_steps.pm:81 install_steps_interactive.pm:37
-#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
-#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
-#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
-#: network/netconnect.pm:837 network/netconnect.pm:866
-#: network/netconnect.pm:965 network/netconnect.pm:969
-#: network/netconnect.pm:973 network/netconnect.pm:978
-#: network/netconnect.pm:1123 network/netconnect.pm:1127
-#: network/netconnect.pm:1246 network/netconnect.pm:1251
-#: network/netconnect.pm:1271 network/netconnect.pm:1428
-#: network/thirdparty.pm:321 network/thirdparty.pm:328
-#: network/thirdparty.pm:372 network/thirdparty.pm:374
-#: network/thirdparty.pm:395 network/thirdparty.pm:419
-#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
-#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
-#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
-#: printer/printerdrake.pm:450 printer/printerdrake.pm:514
-#: printer/printerdrake.pm:686 printer/printerdrake.pm:690
-#: printer/printerdrake.pm:772 printer/printerdrake.pm:1555
-#: printer/printerdrake.pm:1603 printer/printerdrake.pm:1640
-#: printer/printerdrake.pm:1685 printer/printerdrake.pm:1689
-#: printer/printerdrake.pm:1703 printer/printerdrake.pm:1795
-#: printer/printerdrake.pm:1876 printer/printerdrake.pm:1880
-#: printer/printerdrake.pm:1884 printer/printerdrake.pm:1933
-#: printer/printerdrake.pm:1991 printer/printerdrake.pm:1995
-#: printer/printerdrake.pm:2009 printer/printerdrake.pm:2129
-#: printer/printerdrake.pm:2133 printer/printerdrake.pm:2176
-#: printer/printerdrake.pm:2249 printer/printerdrake.pm:2267
-#: printer/printerdrake.pm:2276 printer/printerdrake.pm:2285
-#: printer/printerdrake.pm:2296 printer/printerdrake.pm:2360
-#: printer/printerdrake.pm:2512 printer/printerdrake.pm:2947
-#: printer/printerdrake.pm:3231 printer/printerdrake.pm:3237
-#: printer/printerdrake.pm:3802 printer/printerdrake.pm:3806
-#: printer/printerdrake.pm:3810 printer/printerdrake.pm:4206
-#: printer/printerdrake.pm:4446 printer/printerdrake.pm:4474
-#: printer/printerdrake.pm:4551 printer/printerdrake.pm:4617
-#: printer/printerdrake.pm:4737 standalone/drakTermServ:422
-#: standalone/drakTermServ:492 standalone/drakTermServ:501
-#: standalone/drakTermServ:812 standalone/drakTermServ:819
-#: standalone/drakTermServ:845 standalone/drakTermServ:894
-#: standalone/drakTermServ:1146 standalone/drakTermServ:1181
-#: standalone/drakTermServ:1634 standalone/drakTermServ:1643
-#: standalone/drakTermServ:1651 standalone/drakTermServ:1656
-#: standalone/drakTermServ:1664 standalone/drakTermServ:1680
-#: standalone/drakTermServ:1700 standalone/drakauth:36
-#: standalone/drakbackup:511 standalone/drakbackup:625
-#: standalone/drakbackup:1110 standalone/drakbackup:1141
-#: standalone/drakbackup:1332 standalone/drakbackup:1664
-#: standalone/drakbackup:1820 standalone/drakbackup:2548
-#: standalone/drakbackup:4463 standalone/drakclock:124
-#: standalone/drakconnect:676 standalone/drakconnect:680
-#: standalone/drakconnect:685 standalone/drakconnect:700
-#: standalone/drakfont:209 standalone/drakfont:222 standalone/drakfont:260
-#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakhosts:98
-#: standalone/drakhosts:246 standalone/drakhosts:253 standalone/drakhosts:260
-#: standalone/draknfs:306 standalone/draknfs:609 standalone/draknfs:616
-#: standalone/draknfs:623 standalone/drakroam:33 standalone/draksambashare:384
-#: standalone/draksambashare:388 standalone/draksambashare:391
-#: standalone/draksambashare:394 standalone/draksambashare:453
-#: standalone/draksambashare:477 standalone/draksambashare:551
-#: standalone/draksambashare:633 standalone/draksambashare:700
-#: standalone/draksambashare:800 standalone/draksambashare:807
-#: standalone/draksambashare:942 standalone/draksambashare:1133
-#: standalone/draksambashare:1142 standalone/draksambashare:1151
-#: standalone/draksambashare:1172 standalone/draksambashare:1181
-#: standalone/draksambashare:1190 standalone/draksambashare:1210
-#: standalone/draksambashare:1218 standalone/draksambashare:1230
-#: standalone/draksplash:162 standalone/drakxtv:107
-#: standalone/finish-install:79 standalone/logdrake:171
-#: standalone/logdrake:439 standalone/logdrake:444 standalone/scannerdrake:59
-#: standalone/scannerdrake:202 standalone/scannerdrake:261
-#: standalone/scannerdrake:732 standalone/scannerdrake:743
-#: standalone/scannerdrake:882 standalone/scannerdrake:893
-#: standalone/scannerdrake:963 wizards.pm:95 wizards.pm:99 wizards.pm:121
-#, c-format
-msgid "Error"
-msgstr "Грешка"
-
-#: ../move/move.pm:605 install_steps.pm:82
-#, c-format
-msgid ""
-"An error occurred, but I do not know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Появи се грешка, но не знам как да се справя с нея деликатно.\n"
-"Можете да продължите на свой риск."
-
-#: ../move/move.pm:660 install_steps_interactive.pm:37
-#, c-format
-msgid "An error occurred"
-msgstr "Появи се грешка"
-
-#: ../move/move.pm:666
-#, c-format
-msgid ""
-"An error occurred:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"This may come from corrupted system configuration files\n"
-"on the USB key, in this case removing them and then\n"
-"rebooting Mandriva Move would fix the problem. To do\n"
-"so, click on the corresponding button.\n"
-"\n"
-"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-
-#: ../move/move.pm:681
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "Да премахна ли loopback файла ?"
-
-#: ../move/move.pm:682
-#, c-format
-msgid "Simply reboot"
-msgstr ""
-
-#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr ""
-
-#: ../move/tree/mdk_totem:71
-#, fuzzy, c-format
-msgid "Kill those programs"
-msgstr "достъп до X програми"
-
-#: ../move/tree/mdk_totem:72
-#, fuzzy, c-format
-msgid "No CDROM support"
-msgstr "Подръжка на радио:"
-
-#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1062 diskdrake/interactive.pm:1072
-#: diskdrake/interactive.pm:1125
-#, c-format
-msgid "Read carefully!"
-msgstr "Прочетете внимателно !"
-
-#: ../move/tree/mdk_totem:77
-#, c-format
-msgid ""
-"You can not use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-
-#: ../move/tree/mdk_totem:101
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr ""
-
-#: Xconfig/card.pm:13
-#, c-format
-msgid "256 kB"
-msgstr "256 КБ"
-
-#: Xconfig/card.pm:14
-#, c-format
-msgid "512 kB"
-msgstr "512 КБ"
-
-#: Xconfig/card.pm:15
-#, c-format
-msgid "1 MB"
-msgstr "1 МБ"
-
-#: Xconfig/card.pm:16
-#, c-format
-msgid "2 MB"
-msgstr "2 МБ"
-
-#: Xconfig/card.pm:17
-#, c-format
-msgid "4 MB"
-msgstr "4 МБ"
-
-#: Xconfig/card.pm:18
-#, c-format
-msgid "8 MB"
-msgstr "8 МБ"
-
-#: Xconfig/card.pm:19
-#, c-format
-msgid "16 MB"
-msgstr "16 МБ"
-
-#: Xconfig/card.pm:20
-#, c-format
-msgid "32 MB"
-msgstr "32 МБ"
-
-#: Xconfig/card.pm:21
-#, c-format
-msgid "64 MB or more"
-msgstr "64 МБ или повече"
-
-#: Xconfig/card.pm:162
-#, c-format
-msgid "X server"
-msgstr "X сървър"
-
-#: Xconfig/card.pm:163
-#, c-format
-msgid "Choose an X server"
-msgstr "Изберете X сървър"
-
-#: Xconfig/card.pm:195
-#, c-format
-msgid "Multi-head configuration"
-msgstr ""
-
-#: Xconfig/card.pm:196
-#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-
-#: Xconfig/card.pm:265
-#, fuzzy, c-format
-msgid "Can not install Xorg package: %s"
-msgstr "Инсталиране на пакета %s"
-
-#: Xconfig/card.pm:275
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Изберете капацитет на паметта на графичната си карта"
-
-#: Xconfig/card.pm:371
-#, c-format
-msgid "Xorg configuration"
-msgstr "Настройка на Xorg"
-
-#: Xconfig/card.pm:373
-#, c-format
-msgid "Which configuration of Xorg do you want to have?"
-msgstr "Коя настройка на Xorg искате да имате ?"
-
-#: Xconfig/card.pm:406
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Настройка на всички глави по отделно"
-
-#: Xconfig/card.pm:407
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Използвай разширението Xinerama"
-
-#: Xconfig/card.pm:412
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Настройка само на карта \"%s\"(%s)"
-
-#: Xconfig/card.pm:424 Xconfig/various.pm:23
-#, c-format
-msgid "Xorg %s"
-msgstr "Xorg %s"
-
-#: Xconfig/card.pm:431 Xconfig/various.pm:22
-#, c-format
-msgid "Xorg %s with 3D hardware acceleration"
-msgstr "Xorg %s с хардуерно 3D ускорение"
-
-#: Xconfig/card.pm:433
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with Xorg %s."
-msgstr "Картата ви може да има поддръжка на хардуерно 3D ускорение в Xorg %s."
-
-#: Xconfig/card.pm:439
-#, c-format
-msgid "Xorg %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "Xorg %s с ЕКСПЕРИМЕНТАЛНО хардуерно 3D ускорение"
-
-#: Xconfig/card.pm:441
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with Xorg %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Картата ви може да има поддръжка на хардуерно 3D ускорение с Xorg %s.\n"
-"ОТБЕЛЕЖЕТЕ, ЧЕ ТОВА Е ЕКСПЕРИМЕНТАЛНА ПОДДРЪЖКА И КОМПЮТЪРЪТ ВИ МОЖЕ ДА "
-"ЗАБИЕ."
-
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:1021
-#, c-format
-msgid "Custom"
-msgstr "Клиентска"
-
-#: Xconfig/main.pm:127 any.pm:742 diskdrake/dav.pm:26 help.pm:15
-#: install_steps_interactive.pm:1303 printer/printerdrake.pm:882
-#: printer/printerdrake.pm:899 printer/printerdrake.pm:4546
-#: printer/printerdrake.pm:5010 standalone/drakhosts:263
-#: standalone/drakroam:230 standalone/draksplash:93 standalone/logdrake:176
-#: standalone/net_applet:103 standalone/scannerdrake:494
-#, c-format
-msgid "Quit"
-msgstr "Изход"
-
-#: Xconfig/main.pm:129
-#, c-format
-msgid "Graphic Card"
-msgstr "Графична карта"
-
-#: Xconfig/main.pm:132 Xconfig/monitor.pm:110
-#, c-format
-msgid "Monitor"
-msgstr "Монитор"
-
-#: Xconfig/main.pm:135 Xconfig/resolution_and_depth.pm:289
-#, c-format
-msgid "Resolution"
-msgstr "Разделителна способност"
-
-#: Xconfig/main.pm:138
-#, c-format
-msgid "Test"
-msgstr "Тест"
-
-#: Xconfig/main.pm:143 diskdrake/dav.pm:65 diskdrake/interactive.pm:449
-#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
-#: printer/printerdrake.pm:1112 standalone/drakfont:493
-#: standalone/drakfont:548
-#, c-format
-msgid "Options"
-msgstr "Опции"
-
-#: Xconfig/main.pm:178
-#, c-format
-msgid "Your Xorg configuration file is broken, we will ignore it."
-msgstr ""
-
-#: Xconfig/main.pm:196
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Да запазя ли промените ?\n"
-"Текущата настройка е:\n"
-"\n"
-"%s"
-
-#: Xconfig/monitor.pm:111
-#, fuzzy, c-format
-msgid "Choose a monitor for head #%d"
-msgstr "Изберете монитор"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor"
-msgstr "Изберете монитор"
-
-#: Xconfig/monitor.pm:117
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug & Play"
-
-#: Xconfig/monitor.pm:118 mouse.pm:49
-#, c-format
-msgid "Generic"
-msgstr "Общ"
-
-#: Xconfig/monitor.pm:119 standalone/drakconnect:591 standalone/harddrake2:54
-#: standalone/harddrake2:88
-#, c-format
-msgid "Vendor"
-msgstr "Производител"
-
-#: Xconfig/monitor.pm:129
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "Проба за Plug & Play е неуспешна. Моля, изберете правилен монитор"
-
-#: Xconfig/monitor.pm:137
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Двата критични параметъра са вертикалната скорост на възстановяване, която "
-"отразява скоростта, \n"
-"с която целият екран се възстановява, и най-важното - хоризонталната\n"
-"синхронизационна скорост, която отразява скоростта, с която се изписват "
-"хоризонталните линии.\n"
-"\n"
-"МНОГО Е ВАЖНО да изберете такава синхронизационната скорост, която да "
-"отговаря на възможностите на Вашия монитор - в противен случай можете да "
-"повредите монитора си.\n"
-" Ако имате някакви съмнения, изберете консервативна настройка."
-
-#: Xconfig/monitor.pm:144
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Хоризонтална скорост на възстановяване"
-
-#: Xconfig/monitor.pm:145
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Вертикална скорост на възстановяване"
-
-#: Xconfig/resolution_and_depth.pm:10
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 цвята (8 бита)"
-
-#: Xconfig/resolution_and_depth.pm:11
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 хиляди цвята (15 бита)"
-
-#: Xconfig/resolution_and_depth.pm:12
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 хиляди цвята (16 бита)"
-
-#: Xconfig/resolution_and_depth.pm:13
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 милиона цвята (24 бита)"
-
-#: Xconfig/resolution_and_depth.pm:127
-#, c-format
-msgid "Resolutions"
-msgstr "Разделителна способност"
-
-#: Xconfig/resolution_and_depth.pm:311 diskdrake/hd_gtk.pm:336
-#: install_steps_gtk.pm:288 mouse.pm:168 services.pm:162
-#: standalone/drakbackup:1606 standalone/drakperm:250
-#, c-format
-msgid "Other"
-msgstr "Друга"
-
-#: Xconfig/resolution_and_depth.pm:360
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Изберете разделителна способност и дълбочина на цветовете"
-
-#: Xconfig/resolution_and_depth.pm:361
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Графична карта: %s"
-
-#: Xconfig/resolution_and_depth.pm:375 interactive.pm:119 interactive.pm:436
-#: interactive/http.pm:103 interactive/http.pm:156 interactive/newt.pm:321
-#: interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:143
-#: standalone/drakTermServ:222 standalone/drakTermServ:543
-#: standalone/drakbackup:1372 standalone/drakbackup:4123
-#: standalone/drakbackup:4183 standalone/drakbackup:4227
-#: standalone/drakbackup:4481 standalone/drakconnect:158
-#: standalone/drakconnect:852 standalone/drakconnect:939
-#: standalone/drakconnect:1030 standalone/drakfont:569 standalone/drakfont:579
-#: standalone/draksplash:173 standalone/drakups:210 standalone/net_monitor:339
-#: ugtk2.pm:392 ugtk2.pm:490 ugtk2.pm:899 ugtk2.pm:922
-#, c-format
-msgid "Ok"
-msgstr "Ok"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/smbnfs_gtk.pm:80 help.pm:90
-#: help.pm:445 install_steps_gtk.pm:455 install_steps_interactive.pm:406
-#: install_steps_interactive.pm:811 interactive.pm:120 interactive.pm:437
-#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
-#: interactive/stdio.pm:39 interactive/stdio.pm:142
-#: printer/printerdrake.pm:3882 standalone/drakautoinst:215
-#: standalone/drakbackup:1372 standalone/drakbackup:4052
-#: standalone/drakbackup:4056 standalone/drakbackup:4111
-#: standalone/drakbackup:4481 standalone/drakconnect:157
-#: standalone/drakconnect:937 standalone/drakconnect:1029
-#: standalone/drakfont:579 standalone/drakfont:655 standalone/drakfont:733
-#: standalone/draksplash:173 standalone/drakups:217 standalone/logdrake:176
-#: standalone/net_monitor:338 ugtk2.pm:386 ugtk2.pm:488 ugtk2.pm:497
-#: ugtk2.pm:899
-#, c-format
-msgid "Cancel"
-msgstr "Отказ"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/hd_gtk.pm:150
-#: install_steps_gtk.pm:232 install_steps_gtk.pm:617 interactive.pm:567
-#: interactive/gtk.pm:682 interactive/gtk.pm:684 standalone/drakTermServ:311
-#: standalone/drakbackup:4048 standalone/drakbug:105
-#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:511 standalone/draknfs:206 standalone/drakperm:133
-#: standalone/draksambashare:320 standalone/draksec:344 standalone/draksec:346
-#: standalone/draksec:364 standalone/draksec:366 ugtk2.pm:1031 ugtk2.pm:1032
-#, c-format
-msgid "Help"
-msgstr "Помощ"
-
-#: Xconfig/test.pm:30
-#, c-format
-msgid "Test of the configuration"
-msgstr "Проверка на настройката"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Искате ли да тествате настройките?"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Внимание: тестването на тази графична карта може да замрази компютъра ви"
-
-#: Xconfig/test.pm:69
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"Появи се грешка:\n"
-"%s\n"
-"Опитайте да промените някой параметри"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Позволено в %d секунди"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Всичко правилно ли е ?"
-
-#: Xconfig/various.pm:29
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Тип клавиатура: %s\n"
-
-#: Xconfig/various.pm:30
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Тип мишка: %s\n"
-
-#: Xconfig/various.pm:31
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Устройство на мишката: %s\n"
-
-#: Xconfig/various.pm:33
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Монитор: %s\n"
-
-#: Xconfig/various.pm:34
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Хоризонтална синхронизация на монитора: %s\n"
-
-#: Xconfig/various.pm:35
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Вертикално опресняване на монитора: %s\n"
-
-#: Xconfig/various.pm:37
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Графична карта: %s\n"
-
-#: Xconfig/various.pm:38
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Графична памет: %s kB\n"
-
-#: Xconfig/various.pm:40
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Дълбочина на цвета: %s\n"
-
-#: Xconfig/various.pm:41
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Разделителна способност: %s\n"
-
-#: Xconfig/various.pm:43
-#, c-format
-msgid "Xorg driver: %s\n"
-msgstr "Xorg драйвер: %s\n"
-
-#: Xconfig/various.pm:72
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "X при стартиране на системата"
-
-#: Xconfig/various.pm:74
-#, c-format
-msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(Xorg) upon booting.\n"
-"Would you like Xorg to start when you reboot?"
-msgstr ""
-"Компютъра ви може автоматично, да влезе в X при стартиране.\n"
-"Искате ли X да се стартира, когато рестартирате системата?"
-
-#: Xconfig/various.pm:87
-#, c-format
-msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
-msgstr ""
-
-#: Xconfig/various.pm:99
-#, c-format
-msgid "What norm is your TV using?"
-msgstr "Какъв е типът на използваният TV ?"
-
-#: Xconfig/xfree.pm:648
-#, c-format
-msgid ""
-"_:weird aspect ratio\n"
-"other"
-msgstr ""
-
-#: any.pm:153 harddrake/sound.pm:195 interactive.pm:474 pkgs.pm:474
-#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
-#: standalone/drakups:99 standalone/drakxtv:92 standalone/harddrake2:375
-#: standalone/service_harddrake:235
+#: any.pm:157 diskdrake/interactive.pm:422 diskdrake/interactive.pm:617
+#: diskdrake/interactive.pm:798 diskdrake/interactive.pm:842
+#: diskdrake/interactive.pm:904 diskdrake/interactive.pm:1188 do_pkgs.pm:209
+#: do_pkgs.pm:255 harddrake/sound.pm:195 interactive.pm:576
#, c-format
msgid "Please wait"
msgstr "Моля изчакайте"
-#: any.pm:153
+#: any.pm:157
#, c-format
msgid "Bootloader installation in progress"
msgstr "Инсталация на Bootloader"
-#: any.pm:164
+#: any.pm:168
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -801,12 +42,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:175
+#: any.pm:179
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Инсталацията на bootloader провалена. Появи се следната грешка:"
-#: any.pm:181
+#: any.pm:185
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -823,7 +64,7 @@ msgstr ""
" След което напишете: shut-down\n"
"При следващото рестартиране би трябвало да видете подсказката."
-#: any.pm:219
+#: any.pm:223
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -838,257 +79,269 @@ msgstr ""
"\n"
"От кой диск зареждате ?"
-#: any.pm:242 help.pm:740
+#: any.pm:246
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Първият сектор от драйва (MBR)"
-#: any.pm:243
+#: any.pm:247
#, c-format
msgid "First sector of the root partition"
msgstr "Първи сектор от стартиращия се дял"
-#: any.pm:245
+#: any.pm:249
#, c-format
msgid "On Floppy"
msgstr "Запазва на дискета"
-#: any.pm:247 help.pm:740 printer/printerdrake.pm:4203
+#: any.pm:251
#, c-format
msgid "Skip"
msgstr "Прескача"
-#: any.pm:251
+#: any.pm:255
#, c-format
msgid "LILO/grub Installation"
msgstr "LILO/grub инсталация"
-#: any.pm:252
+#: any.pm:257
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Къде искате да инсталирате bootloader-а?"
-#: any.pm:278 standalone/drakboot:269
+#: any.pm:284
#, c-format
msgid "Boot Style Configuration"
msgstr "Настройка на начина на стартиране"
-#: any.pm:280 any.pm:281 any.pm:314 any.pm:315
+#: any.pm:294 any.pm:326 any.pm:327
#, c-format
msgid "Bootloader main options"
msgstr "Опции на зареждащата програма"
-#: any.pm:286
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Дава размера RAM-памет в Mb"
-
-#: any.pm:288
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Опцията ``Ограничи опциите от командния ред'' е безполезна без парола"
-
-#: any.pm:289 any.pm:628 authentication.pm:192
-#, c-format
-msgid "The passwords do not match"
-msgstr "Паролите не съвпадат"
-
-#: any.pm:289 any.pm:628 authentication.pm:192 diskdrake/interactive.pm:1336
+#: any.pm:299
#, c-format
-msgid "Please try again"
-msgstr "Моля, опитайте отново"
+msgid "Bootloader"
+msgstr "Bootloader"
-#: any.pm:294 any.pm:319
+#: any.pm:300 any.pm:331
#, c-format
msgid "Bootloader to use"
msgstr "Използвана зареждащата програма"
-#: any.pm:296 any.pm:321
+#: any.pm:302 any.pm:333
#, c-format
msgid "Boot device"
msgstr "Стартиращо устройство"
-#: any.pm:298
+#: any.pm:304
+#, c-format
+msgid "Main options"
+msgstr ""
+
+#: any.pm:305
#, c-format
msgid "Delay before booting default image"
msgstr "Забавяне преди стартирането на подразбиращият образ"
-#: any.pm:299
+#: any.pm:306
#, c-format
msgid "Enable ACPI"
msgstr "Стартиране от CD "
-#: any.pm:301
+#: any.pm:307
#, fuzzy, c-format
-msgid "Force no APIC"
-msgstr "Без APIC"
+msgid "Enable APIC"
+msgstr "Стартиране от CD "
-#: any.pm:303
+#: any.pm:308
#, fuzzy, c-format
-msgid "Force No Local APIC"
-msgstr "Без APIC"
+msgid "Enable Local APIC"
+msgstr "Стартиране от CD "
-#: any.pm:305 any.pm:662 authentication.pm:197 diskdrake/smbnfs_gtk.pm:180
-#: network/netconnect.pm:584 printer/printerdrake.pm:1867
-#: printer/printerdrake.pm:1988 standalone/drakbackup:1650
-#: standalone/drakbackup:3641 standalone/drakups:297
+#: any.pm:310 any.pm:686 authentication.pm:196 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Парола"
-#: any.pm:306 any.pm:663 authentication.pm:198
+#: any.pm:312 authentication.pm:207
+#, c-format
+msgid "The passwords do not match"
+msgstr "Паролите не съвпадат"
+
+#: any.pm:312 authentication.pm:207 diskdrake/interactive.pm:1348
+#, c-format
+msgid "Please try again"
+msgstr "Моля, опитайте отново"
+
+#: any.pm:313
+#, fuzzy, c-format
+msgid "You can not use a password with %s"
+msgstr ""
+"Вие не може да използвате криптирана файлова система за точка на монтиране %s"
+
+#: any.pm:316 any.pm:687 authentication.pm:197
#, c-format
msgid "Password (again)"
msgstr "Парола (отново)"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "Restrict command line options"
msgstr "Ограничи опциите, задавани от командния ред"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "restrict"
msgstr "ограничи"
-#: any.pm:309
+#: any.pm:318
+#, c-format
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr "Опцията ``Ограничи опциите от командния ред'' е безполезна без парола"
+
+#: any.pm:320
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Почистване на /tmp при всяко зареждане"
-#: any.pm:310
+#: any.pm:321
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Точен размер на RAM-паметта, ако е необходимо (намерени %d MB)"
-#: any.pm:320
+#: any.pm:322
+#, c-format
+msgid "Give the ram size in MB"
+msgstr "Дава размера RAM-памет в Mb"
+
+#: any.pm:332
#, c-format
msgid "Init Message"
msgstr "Стартово съобщение"
-#: any.pm:322
+#: any.pm:334
#, c-format
msgid "Open Firmware Delay"
msgstr "Изчакване на Open Firmware"
-#: any.pm:323
+#: any.pm:335
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Изчакване за стартиране на ядрото"
-#: any.pm:324
+#: any.pm:336
#, c-format
msgid "Enable CD Boot?"
msgstr "Стартиране от CD ?"
-#: any.pm:325
+#: any.pm:337
#, c-format
msgid "Enable OF Boot?"
msgstr "Стартиране от OF ?"
-#: any.pm:326
+#: any.pm:338
#, c-format
msgid "Default OS?"
msgstr "ОС по подразбиране ?"
-#: any.pm:380
+#: any.pm:404
#, c-format
msgid "Image"
msgstr "Образ"
-#: any.pm:381 any.pm:391
+#: any.pm:405 any.pm:418
#, c-format
msgid "Root"
msgstr "Главен"
-#: any.pm:382 any.pm:404
+#: any.pm:406 any.pm:431
#, c-format
msgid "Append"
msgstr "Допълване"
-#: any.pm:384 standalone/drakboot:271 standalone/drakboot:275
+#: any.pm:408
+#, c-format
+msgid "Xen append"
+msgstr ""
+
+#: any.pm:411
#, c-format
msgid "Video mode"
msgstr "Видео режим"
-#: any.pm:386
+#: any.pm:413
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:387
+#: any.pm:414
#, fuzzy, c-format
msgid "Network profile"
msgstr "Нов профил..."
-#: any.pm:396 any.pm:401 any.pm:403 diskdrake/interactive.pm:450
+#: any.pm:423 any.pm:428 any.pm:430 diskdrake/interactive.pm:443
#, c-format
msgid "Label"
msgstr "Етикет"
-#: any.pm:398 any.pm:408 harddrake/v4l.pm:438 standalone/drakbackup:2104
-#: standalone/draksec:52
+#: any.pm:425 any.pm:433 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "По подразбиране"
-#: any.pm:405
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd-големина"
-
-#: any.pm:407
+#: any.pm:432
#, c-format
msgid "NoVideo"
msgstr "Без графика"
-#: any.pm:418
+#: any.pm:443
#, c-format
msgid "Empty label not allowed"
msgstr "Празен етикет не е разрешен"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a kernel image"
msgstr "Трябва да зададете обаза на ядрото"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a root partition"
msgstr "Трябва да зададете кореновият дял"
-#: any.pm:420
+#: any.pm:445
#, c-format
msgid "This label is already used"
msgstr "Този етикет вече се използва"
-#: any.pm:434
+#: any.pm:459
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Какъв тип информация искате да прибавите"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Друга ОС (SunOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Друга ОС (MacOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (Windows...)"
msgstr "Друга ОС (Windows...)"
-#: any.pm:464
+#: any.pm:489
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -1097,94 +350,89 @@ msgstr ""
"Това са различните записи.\n"
"Можете да добавите още или да промените съществуващите."
-#: any.pm:614
+#: any.pm:640
#, c-format
msgid "access to X programs"
msgstr "достъп до X програми"
-#: any.pm:615
+#: any.pm:641
#, c-format
msgid "access to rpm tools"
msgstr "достъп до rpm инструменти"
-#: any.pm:616
+#: any.pm:642
#, c-format
msgid "allow \"su\""
msgstr "позволява \"su\""
-#: any.pm:617
+#: any.pm:643
#, c-format
msgid "access to administrative files"
msgstr "достъп до файлове за администриране"
-#: any.pm:618
+#: any.pm:644
#, c-format
msgid "access to network tools"
msgstr "достъп до мрежови инструменти"
-#: any.pm:619
+#: any.pm:645
#, c-format
msgid "access to compilation tools"
msgstr "достъп до инструменти за компилация"
-#: any.pm:624
+#: any.pm:650
#, c-format
msgid "(already added %s)"
msgstr "(вече прибавих %s)"
-#: any.pm:629
-#, c-format
-msgid "This password is too simple"
-msgstr "Тази парола е прекалено проста"
-
-#: any.pm:630
+#: any.pm:657
#, c-format
msgid "Please give a user name"
msgstr "Моля, задайте потребителско име"
-#: any.pm:631
+#: any.pm:658
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Потребителското име може да включва само малки букви, номера, `-' и `_'"
-#: any.pm:632
+#: any.pm:659
#, c-format
msgid "The user name is too long"
msgstr "Това име е твърде дълго"
-#: any.pm:633
+#: any.pm:660
#, c-format
msgid "This user name has already been added"
msgstr "Това потребителско име вече е добавено"
-#: any.pm:634 any.pm:665
+#: any.pm:661 any.pm:689
#, c-format
msgid "User ID"
msgstr "Потребителски номер"
-#: any.pm:635 any.pm:666
+#: any.pm:662 any.pm:690
#, c-format
msgid "Group ID"
msgstr "Номер на група"
-#: any.pm:638
+#: any.pm:665
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "Настройката %s трябва да е число !"
-#: any.pm:639
+#: any.pm:666
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:644 standalone/draksambashare:1214
+#: any.pm:671
#, c-format
msgid "Add user"
msgstr "Добави потребител"
-#: any.pm:646
+#: any.pm:673
#, c-format
msgid ""
"Enter a user\n"
@@ -1193,100 +441,96 @@ msgstr ""
"Въведете потребител\n"
"%s"
-#: any.pm:649 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:154
-#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:81 help.pm:531
-#: interactive/http.pm:151 printer/printerdrake.pm:197
-#: printer/printerdrake.pm:382 printer/printerdrake.pm:5010
-#: standalone/drakbackup:2836 standalone/scannerdrake:685
-#: standalone/scannerdrake:835
+#: any.pm:676 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:166
+#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:82
+#: interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Готово"
-#: any.pm:650 help.pm:52
+#: any.pm:677
#, c-format
msgid "Accept user"
msgstr "Приеми потребител"
-#: any.pm:660
+#: any.pm:682
#, c-format
msgid "Real name"
msgstr "Истинско име"
-#: any.pm:661 standalone/drakbackup:1645
+#: any.pm:685
#, c-format
msgid "Login name"
msgstr "Потебителско име"
-#: any.pm:664
+#: any.pm:688
#, c-format
msgid "Shell"
msgstr "Шел"
-#: any.pm:668
-#, c-format
-msgid "Icon"
-msgstr "Икона"
-
-#: any.pm:715 security/l10n.pm:14
+#: any.pm:735 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Автоматично влиза"
-#: any.pm:716
+#: any.pm:736
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Мога да настроя компютъра ви за влизане в системата автоматично като някой "
"потребител."
-#: any.pm:717
+#: any.pm:737
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Искате ли да използвате тази особеност?"
-#: any.pm:718
+#: any.pm:738
#, c-format
msgid "Choose the default user:"
msgstr "Изберете подразбиращ се потребител :"
-#: any.pm:719
+#: any.pm:739
#, c-format
msgid "Choose the window manager to run:"
msgstr "Изберете мениджър на прозорци за стартиране:"
-#: any.pm:740
+#: any.pm:767
#, c-format
msgid "License agreement"
msgstr "Лицензионен договор"
-#: any.pm:745
+#: any.pm:770 diskdrake/dav.pm:26
+#, c-format
+msgid "Quit"
+msgstr "Изход"
+
+#: any.pm:773
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Версия:"
-#: any.pm:748 help.pm:15 install_steps_gtk.pm:539
-#: install_steps_interactive.pm:715 standalone/drakautoinst:214
+#: any.pm:776
#, c-format
msgid "Accept"
msgstr "Приеми"
-#: any.pm:748 install_steps_gtk.pm:539 install_steps_interactive.pm:715
+#: any.pm:776
#, c-format
msgid "Refuse"
msgstr "Откажи"
-#: any.pm:765 any.pm:833
+#: any.pm:795 any.pm:863
#, c-format
msgid "Please choose a language to use."
msgstr "Моля, изберете език за използване."
-#: any.pm:766 any.pm:834
+#: any.pm:796 any.pm:864
#, fuzzy, c-format
msgid "Language choice"
msgstr "ръчно"
-#: any.pm:794
+#: any.pm:826
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
@@ -1297,70 +541,72 @@ msgstr ""
"езиците които искате ад инсталирате. Те ще бъдат налични след\n"
"като завърши инсталацията и вие престартирате системата."
-#: any.pm:797
+#: any.pm:829
#, c-format
msgid "Multi languages"
msgstr ""
-#: any.pm:813 any.pm:842 help.pm:648
+#: any.pm:841 any.pm:872
#, c-format
-msgid "Use Unicode by default"
-msgstr "Използва уникод по подразбиране"
+msgid "Old compatibility (non UTF-8) encoding"
+msgstr ""
-#: any.pm:814 help.pm:648
+#: any.pm:843
#, c-format
msgid "All languages"
msgstr "Избор на език"
-#: any.pm:888 help.pm:567 help.pm:856 install_steps_interactive.pm:932
+#: any.pm:918
#, c-format
msgid "Country / Region"
msgstr "Страна / Регион"
-#: any.pm:890
+#: any.pm:920
#, c-format
msgid "Please choose your country."
msgstr "Моля, изберете вашата страна."
-#: any.pm:892
+#: any.pm:922
#, c-format
msgid "Here is the full list of available countries"
msgstr "Ето пълен списък на достръпните страни"
-#: any.pm:893
+#: any.pm:923
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Други портовете"
-#: any.pm:893 help.pm:52 help.pm:410 help.pm:432 help.pm:648 help.pm:723
-#: interactive.pm:397
+#: any.pm:923 interactive.pm:477
#, c-format
msgid "Advanced"
msgstr "Напредничав"
-#: any.pm:901
+#: any.pm:929
#, fuzzy, c-format
msgid "Input method:"
msgstr "Мрежов метод:"
-#: any.pm:904 install_any.pm:422 network/netconnect.pm:317
-#: network/netconnect.pm:322 network/netconnect.pm:1237 network/wireless.pm:7
-#: printer/printerdrake.pm:117
+#: any.pm:932
#, c-format
msgid "None"
msgstr "Без"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "No sharing"
msgstr "Не поделя"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "Allow all users"
msgstr "Позволява на потребители"
-#: any.pm:1025
+#: any.pm:1012
+#, c-format
+msgid "Custom"
+msgstr "Клиентска"
+
+#: any.pm:1016
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1375,21 +621,21 @@ msgstr ""
"\n"
"\"Клиентска\" позволява за потребител настройка.\n"
-#: any.pm:1037
+#: any.pm:1028
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1040
+#: any.pm:1031
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1048
+#: any.pm:1039
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -1397,23 +643,17 @@ msgstr ""
"Вие може да експортирате като използвате NFS или SMB. Моля, изберете какво "
"искате да използвате."
-#: any.pm:1073
+#: any.pm:1064
#, c-format
msgid "Launch userdrake"
msgstr "Стартира userdrake"
-#: any.pm:1073 printer/printerdrake.pm:4085 printer/printerdrake.pm:4088
-#: printer/printerdrake.pm:4089 printer/printerdrake.pm:4090
-#: printer/printerdrake.pm:5328 standalone/drakTermServ:321
-#: standalone/drakbackup:4245 standalone/drakbug:126 standalone/drakfont:499
-#: standalone/drakids:64 standalone/drakids:77 standalone/drakids:85
-#: standalone/draknfs:210 standalone/net_monitor:117
-#: standalone/printerdrake:583
+#: any.pm:1064 interactive/gtk.pm:747
#, c-format
msgid "Close"
msgstr "Затвори"
-#: any.pm:1075
+#: any.pm:1066
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -1422,6 +662,56 @@ msgstr ""
"Споделянето на потребителски директории използва група \"fileshare\".\n"
"Може да използвате userdrake,за да добавите потребител към тази група."
+#: any.pm:1158
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Моля излезте от сесията и използвайте Ctrl-Alt-BackSpace"
+
+#: any.pm:1162
+#, c-format
+msgid "You need to log out and back in again for changes to take effect"
+msgstr ""
+
+#: any.pm:1212
+#, c-format
+msgid "Timezone"
+msgstr "Часова зона"
+
+#: any.pm:1212
+#, c-format
+msgid "Which is your timezone?"
+msgstr "Коя е времевата ви зона ?"
+
+#: any.pm:1224 any.pm:1226
+#, c-format
+msgid "Date, Clock & Time Zone Settings"
+msgstr ""
+
+#: any.pm:1227
+#, c-format
+msgid "What is the best time?"
+msgstr ""
+
+#: any.pm:1231
+#, fuzzy, c-format
+msgid "%s (hardware clock set to UTC)"
+msgstr "Хадруерният ви часовник е настроен по GMT"
+
+#: any.pm:1232
+#, fuzzy, c-format
+msgid "%s (hardware clock set to local time)"
+msgstr "Хадруерният ви часовник е настроен по GMT"
+
+#: any.pm:1234
+#, c-format
+msgid "NTP Server"
+msgstr "NTP сървър"
+
+#: any.pm:1235
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Автоматична синхронизация на времето (използва NTP)"
+
#: authentication.pm:23
#, c-format
msgid "Local file"
@@ -1536,7 +826,7 @@ msgstr "LDAP ауторизация"
msgid "LDAP Base dn"
msgstr "LDAP Базов dn"
-#: authentication.pm:98 share/compssUsers.pl:102
+#: authentication.pm:98
#, c-format
msgid "LDAP Server"
msgstr "LDAP сървър"
@@ -1566,14 +856,12 @@ msgstr ""
msgid "Authentication Active Directory"
msgstr "идентификация"
-#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:181
+#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Домейн"
-#: authentication.pm:124 diskdrake/dav.pm:63 help.pm:147
-#: printer/printerdrake.pm:75 share/compssUsers.pl:82
-#: standalone/drakTermServ:296
+#: authentication.pm:124 diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Сървър"
@@ -1650,39 +938,33 @@ msgstr "Име на администратор на домейн"
msgid "Domain Admin Password"
msgstr "Парола за администратор на домейн"
-#: authentication.pm:181
+#: authentication.pm:181 authentication.pm:198
#, c-format
-msgid "Set administrator (root) password and network authentication methods"
-msgstr ""
+msgid "Authentication"
+msgstr "Идентификация"
#: authentication.pm:182
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Въведете парола за root"
-#: authentication.pm:183 standalone/drakvpn:1111
+#: authentication.pm:184
#, fuzzy, c-format
msgid "Authentication method"
msgstr "идентификация"
#. -PO: keep this short or else the buttons will not fit in the window
-#: authentication.pm:188 help.pm:723
+#: authentication.pm:189
#, c-format
msgid "No password"
msgstr "Без парола"
-#: authentication.pm:194
+#: authentication.pm:210
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Паролата е прекалено проста (трябва да бъде дълга поне %d символа)"
-#: authentication.pm:199 network/netconnect.pm:322 network/netconnect.pm:585
-#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:481
-#, c-format
-msgid "Authentication"
-msgstr "Идентификация"
-
-#: authentication.pm:331
+#: authentication.pm:351
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "Не можете да използвате broadcast без NIS домейн"
@@ -1693,7 +975,7 @@ msgstr "Не можете да използвате broadcast без NIS дом
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:767
+#: bootloader.pm:880
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1703,291 +985,104 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:909
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO с графично меню"
-
-#: bootloader.pm:910
+#: bootloader.pm:1028
#, c-format
msgid "LILO with text menu"
msgstr "LILO с текстово меню"
-#: bootloader.pm:911
+#: bootloader.pm:1029
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:912
+#: bootloader.pm:1030
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:913
+#: bootloader.pm:1031
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:990
+#: bootloader.pm:1032
+#, c-format
+msgid "SILO"
+msgstr "SILO"
+
+#: bootloader.pm:1112
#, c-format
msgid "not enough room in /boot"
msgstr "няма достатъчно място за /boot"
-#: bootloader.pm:1483
+#: bootloader.pm:1679
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "Не можете да инсталирате bootloader на дяла %s\n"
-#: bootloader.pm:1523
+#: bootloader.pm:1732
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:1536
+#: bootloader.pm:1745
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:1537
+#: bootloader.pm:1746
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Инсталиране на bootloader"
-#: common.pm:134
+#: common.pm:129
+#, fuzzy, c-format
+msgid "B"
+msgstr "КБ"
+
+#: common.pm:129
#, c-format
msgid "KB"
msgstr "КБ"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "MB"
msgstr "МБ"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "GB"
msgstr "ГБ"
-#: common.pm:142
+#: common.pm:137
#, c-format
msgid "TB"
msgstr "ТБ"
-#: common.pm:150
+#: common.pm:145
#, c-format
msgid "%d minutes"
msgstr "%d минути"
-#: common.pm:152
+#: common.pm:147
#, c-format
msgid "1 minute"
msgstr "1 минута"
-#: common.pm:154
+#: common.pm:149
#, c-format
msgid "%d seconds"
msgstr "%d секунди"
-#: common.pm:260
-#, c-format
-msgid "kdesu missing"
-msgstr "липсва kdesu"
-
-#: common.pm:263
-#, c-format
-msgid "consolehelper missing"
-msgstr "липсва помощ на конзола"
-
-#: crypto.pm:13 crypto.pm:48 lang.pm:207 network/adsl_consts.pm:66
-#: network/adsl_consts.pm:75 network/adsl_consts.pm:84
-#, c-format
-msgid "Austria"
-msgstr "Австрия"
-
-#: crypto.pm:14 crypto.pm:47 lang.pm:208 standalone/drakxtv:48
-#, c-format
-msgid "Australia"
-msgstr "Австралия"
-
-#: crypto.pm:15 crypto.pm:49 lang.pm:214 network/adsl_consts.pm:93
-#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
-#: network/adsl_consts.pm:123 network/netconnect.pm:44
-#, c-format
-msgid "Belgium"
-msgstr "Белгия"
-
-#: crypto.pm:16 crypto.pm:50 lang.pm:223 network/adsl_consts.pm:132
-#: network/adsl_consts.pm:143 network/adsl_consts.pm:152
-#: network/adsl_consts.pm:161
-#, c-format
-msgid "Brazil"
-msgstr "Бразилия"
-
-#: crypto.pm:17 crypto.pm:51 lang.pm:230
-#, c-format
-msgid "Canada"
-msgstr "Канада"
-
-#: crypto.pm:18 crypto.pm:74 lang.pm:235 network/adsl_consts.pm:891
-#: network/adsl_consts.pm:900 network/adsl_consts.pm:911
-#, c-format
-msgid "Switzerland"
-msgstr "Швейцария"
-
-#: crypto.pm:19 lang.pm:242
-#, c-format
-msgid "Costa Rica"
-msgstr "Коста Рика"
-
-#: crypto.pm:20 crypto.pm:52 lang.pm:248 network/adsl_consts.pm:368
-#, c-format
-msgid "Czech Republic"
-msgstr "Чешка Република"
-
-#: crypto.pm:21 crypto.pm:57 lang.pm:249 network/adsl_consts.pm:499
-#: network/adsl_consts.pm:508
-#, c-format
-msgid "Germany"
-msgstr "Германия"
-
-#: crypto.pm:22 crypto.pm:53 lang.pm:251 network/adsl_consts.pm:378
-#, c-format
-msgid "Denmark"
-msgstr "Дания"
-
-#: crypto.pm:23 crypto.pm:54 lang.pm:256
-#, c-format
-msgid "Estonia"
-msgstr "Естония"
-
-#: crypto.pm:24 crypto.pm:72 lang.pm:260 network/adsl_consts.pm:759
-#: network/adsl_consts.pm:770 network/adsl_consts.pm:781
-#: network/adsl_consts.pm:792 network/adsl_consts.pm:801
-#: network/adsl_consts.pm:810 network/adsl_consts.pm:819
-#: network/adsl_consts.pm:828 network/adsl_consts.pm:837
-#: network/adsl_consts.pm:846 network/adsl_consts.pm:855
-#: network/adsl_consts.pm:864 network/adsl_consts.pm:873
-#, c-format
-msgid "Spain"
-msgstr "Испания"
-
-#: crypto.pm:25 crypto.pm:55 lang.pm:262 network/adsl_consts.pm:387
-#, c-format
-msgid "Finland"
-msgstr "Финландия"
-
-#: crypto.pm:26 crypto.pm:56 lang.pm:267 network/adsl_consts.pm:396
-#: network/adsl_consts.pm:408 network/adsl_consts.pm:420
-#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
-#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
-#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
-#: network/netconnect.pm:41
-#, c-format
-msgid "France"
-msgstr "Франция"
-
-#: crypto.pm:27 crypto.pm:58 lang.pm:280 network/adsl_consts.pm:519
-#, c-format
-msgid "Greece"
-msgstr "Гърция"
-
-#: crypto.pm:28 crypto.pm:59 lang.pm:291 network/adsl_consts.pm:528
-#, c-format
-msgid "Hungary"
-msgstr "Унгария"
-
-#: crypto.pm:29 crypto.pm:60 lang.pm:293 network/adsl_consts.pm:537
-#: standalone/drakxtv:47
-#, c-format
-msgid "Ireland"
-msgstr "Ирландия"
-
-#: crypto.pm:30 crypto.pm:61 lang.pm:294 network/adsl_consts.pm:546
-#, c-format
-msgid "Israel"
-msgstr "Израел"
-
-#: crypto.pm:31 crypto.pm:62 lang.pm:300 network/adsl_consts.pm:557
-#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
-#: network/adsl_consts.pm:589 network/netconnect.pm:43 standalone/drakxtv:47
-#, c-format
-msgid "Italy"
-msgstr "Италия"
-
-#: crypto.pm:32 crypto.pm:63 lang.pm:303
-#, c-format
-msgid "Japan"
-msgstr "Япония"
-
-#: crypto.pm:33 crypto.pm:64 lang.pm:352 network/adsl_consts.pm:620
-#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
-#: network/adsl_consts.pm:647 network/netconnect.pm:42
-#, c-format
-msgid "Netherlands"
-msgstr "Холандия"
-
-#: crypto.pm:34 crypto.pm:66 lang.pm:353 network/adsl_consts.pm:656
-#: network/adsl_consts.pm:661 network/adsl_consts.pm:666
-#: network/adsl_consts.pm:671 network/adsl_consts.pm:676
-#: network/adsl_consts.pm:681 network/adsl_consts.pm:686
-#, c-format
-msgid "Norway"
-msgstr "Норвегия"
-
-#: crypto.pm:35 crypto.pm:65 lang.pm:357
-#, c-format
-msgid "New Zealand"
-msgstr "Нова Зеландия"
-
-#: crypto.pm:36 crypto.pm:67 lang.pm:365 network/adsl_consts.pm:693
-#: network/adsl_consts.pm:704
-#, c-format
-msgid "Poland"
-msgstr "Полша"
-
-#: crypto.pm:37 crypto.pm:68 lang.pm:370 network/adsl_consts.pm:716
+#: common.pm:298
#, c-format
-msgid "Portugal"
-msgstr "Португалия"
-
-#: crypto.pm:38 crypto.pm:69 lang.pm:376 network/adsl_consts.pm:725
-#, c-format
-msgid "Russia"
-msgstr "Русия"
-
-#: crypto.pm:39 crypto.pm:73 lang.pm:382 network/adsl_consts.pm:882
-#, c-format
-msgid "Sweden"
-msgstr "Швеция"
-
-#: crypto.pm:40 crypto.pm:70 lang.pm:387
-#, c-format
-msgid "Slovakia"
-msgstr "Словакия"
-
-#: crypto.pm:41 crypto.pm:76 lang.pm:401 network/adsl_consts.pm:920
-#, c-format
-msgid "Thailand"
-msgstr "Тайланд"
-
-#: crypto.pm:42 crypto.pm:75 lang.pm:411
-#, c-format
-msgid "Taiwan"
-msgstr "Тайван"
-
-#: crypto.pm:43 crypto.pm:71 lang.pm:430 standalone/drakxtv:49
-#, c-format
-msgid "South Africa"
-msgstr "Южна Африка"
-
-#: crypto.pm:77 crypto.pm:112 lang.pm:416 network/netconnect.pm:45
-#, c-format
-msgid "United States"
-msgstr "САЩ"
+msgid "command %s missing"
+msgstr ""
#: diskdrake/dav.pm:17
#, c-format
@@ -2003,23 +1098,46 @@ msgstr ""
msgid "New"
msgstr "Нов"
-#: diskdrake/dav.pm:61 diskdrake/interactive.pm:456 diskdrake/smbnfs_gtk.pm:74
+#: diskdrake/dav.pm:61 diskdrake/interactive.pm:449 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Демонтирай"
-#: diskdrake/dav.pm:62 diskdrake/interactive.pm:453 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:62 diskdrake/interactive.pm:446 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Монтирай"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:447
-#: diskdrake/interactive.pm:679 diskdrake/interactive.pm:698
-#: diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:78
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:440
+#: diskdrake/interactive.pm:670 diskdrake/interactive.pm:688
+#: diskdrake/interactive.pm:692 diskdrake/removable.pm:23
+#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Място на монтиране"
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:442
+#: diskdrake/interactive.pm:1047 diskdrake/removable.pm:24
+#: diskdrake/smbnfs_gtk.pm:80
+#, c-format
+msgid "Options"
+msgstr "Опции"
+
+#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:229
+#: diskdrake/interactive.pm:242 diskdrake/interactive.pm:398
+#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:547
+#: diskdrake/interactive.pm:552 diskdrake/interactive.pm:660
+#: diskdrake/interactive.pm:922 diskdrake/interactive.pm:1092
+#: diskdrake/interactive.pm:1105 diskdrake/interactive.pm:1108
+#: diskdrake/interactive.pm:1348 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:19
+#: do_pkgs.pm:24 do_pkgs.pm:40 do_pkgs.pm:56 do_pkgs.pm:61 fsedit.pm:229
+#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
+#: scanner.pm:94 scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95
+#: wizards.pm:99 wizards.pm:121
+#, c-format
+msgid "Error"
+msgstr "Грешка"
+
#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
@@ -2035,33 +1153,48 @@ msgstr "URL трябва да започва с http:// или https://"
msgid "Server: "
msgstr "Сървър: "
-#: diskdrake/dav.pm:110 diskdrake/interactive.pm:523
-#: diskdrake/interactive.pm:1218 diskdrake/interactive.pm:1296
+#: diskdrake/dav.pm:110 diskdrake/interactive.pm:520
+#: diskdrake/interactive.pm:1230 diskdrake/interactive.pm:1308
#, c-format
msgid "Mount point: "
msgstr "Място на монтиране: "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1303
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1315
#, c-format
msgid "Options: %s"
msgstr "Опции: %s"
-#: diskdrake/hd_gtk.pm:52 diskdrake/interactive.pm:293
-#: diskdrake/smbnfs_gtk.pm:21 install_interactive.pm:63
-#: install_interactive.pm:217 install_interactive.pm:223
-#: install_interactive.pm:276 install_interactive.pm:281
-#: install_steps_interactive.pm:253 install_steps_interactive.pm:317
-#: steps.pm:21
+#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:286
+#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
+#: fs/partitioning_wizard.pm:47 fs/partitioning_wizard.pm:201
+#: fs/partitioning_wizard.pm:207 fs/partitioning_wizard.pm:247
+#: fs/partitioning_wizard.pm:266 fs/partitioning_wizard.pm:271
#, c-format
msgid "Partitioning"
msgstr "Разделяне на дялове"
-#: diskdrake/hd_gtk.pm:92
+#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1067
+#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1130
+#, c-format
+msgid "Read carefully!"
+msgstr "Прочетете внимателно !"
+
+#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr "Първо създайте backup на своите данни"
-#: diskdrake/hd_gtk.pm:95
+#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:222
+#, c-format
+msgid "Exit"
+msgstr "Излез"
+
+#: diskdrake/hd_gtk.pm:94
+#, c-format
+msgid "Continue"
+msgstr "Нататък"
+
+#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
@@ -2072,17 +1205,18 @@ msgstr ""
"сектора\n"
"са достатъчни) в началото на диска"
-#: diskdrake/hd_gtk.pm:152 help.pm:531
+#: diskdrake/hd_gtk.pm:162 interactive.pm:640 interactive/gtk.pm:719
+#: interactive/gtk.pm:740 interactive/gtk.pm:760 ugtk2.pm:923 ugtk2.pm:924
#, c-format
-msgid "Wizard"
-msgstr "Магьосник"
+msgid "Help"
+msgstr "Помощ"
-#: diskdrake/hd_gtk.pm:185
+#: diskdrake/hd_gtk.pm:197
#, c-format
msgid "Choose action"
msgstr "Изберете действие"
-#: diskdrake/hd_gtk.pm:189
+#: diskdrake/hd_gtk.pm:201
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -2094,148 +1228,162 @@ msgstr ""
"Предлагам първо да промените големината на този дял\n"
"(щракнете върху него, а след това щракнете върху \"Промени големината\")"
-#: diskdrake/hd_gtk.pm:191
+#: diskdrake/hd_gtk.pm:203
#, c-format
msgid "Please click on a partition"
msgstr "Моля, цъкнете на дяла"
-#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:457
-#: standalone/drakbackup:3088 standalone/drakbackup:3148
+#: diskdrake/hd_gtk.pm:217 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Подробности"
-#: diskdrake/hd_gtk.pm:251
+#: diskdrake/hd_gtk.pm:265
#, c-format
msgid "No hard drives found"
msgstr "Не е намерен твърд диск"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:292
+#, c-format
+msgid "Unknown"
+msgstr "Неизвестен"
+
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Ext2"
msgstr "Ext2"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Journalised FS"
msgstr "Журнална FS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "SunOS"
msgstr "SunOS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "HFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1233
+#: diskdrake/hd_gtk.pm:352 services.pm:149
+#, c-format
+msgid "Other"
+msgstr "Друга"
+
+#: diskdrake/hd_gtk.pm:352 diskdrake/interactive.pm:1244
#, c-format
msgid "Empty"
msgstr "Празен"
-#: diskdrake/hd_gtk.pm:340
+#: diskdrake/hd_gtk.pm:356
#, c-format
msgid "Filesystem types:"
msgstr "Видове файлова система:"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:359 diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:291
+#: diskdrake/interactive.pm:392 diskdrake/interactive.pm:428
+#: diskdrake/interactive.pm:577 diskdrake/interactive.pm:751
+#: diskdrake/interactive.pm:809 diskdrake/interactive.pm:902
+#: diskdrake/interactive.pm:944 diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:1173 diskdrake/interactive.pm:1211
+#: diskdrake/interactive.pm:1347 do_pkgs.pm:16 do_pkgs.pm:35 do_pkgs.pm:53
+#: harddrake/sound.pm:279
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Вместо това използвайте ``%s''"
+msgid "Warning"
+msgstr "Предупреждение"
-#: diskdrake/hd_gtk.pm:357 diskdrake/interactive.pm:472
-#, c-format
-msgid "Create"
-msgstr "Създай"
+#: diskdrake/hd_gtk.pm:380
+#, fuzzy, c-format
+msgid "This partition is already empty"
+msgstr "Големината на дяла не може да бъде променена"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:365
-#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:625
-#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
-#: standalone/harddrake2:108 standalone/harddrake2:117
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Type"
-msgstr "Вид"
+msgid "Use ``Unmount'' first"
+msgstr "Първо използвайте 'Демонтиране'"
-#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: diskdrake/hd_gtk.pm:359 diskdrake/interactive.pm:457
-#: standalone/drakperm:123 standalone/printerdrake:248
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Delete"
-msgstr "Изтрий"
+msgid "Use ``%s'' instead"
+msgstr "Вместо това използвайте ``%s''"
-#: diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:389 diskdrake/interactive.pm:441
+#: diskdrake/interactive.pm:611 diskdrake/interactive.pm:1083
+#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Първо използвайте 'Демонтиране'"
+msgid "Type"
+msgstr "Вид"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose another partition"
msgstr "Изберете друг дял"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose a partition"
msgstr "Изберете дял"
-#: diskdrake/interactive.pm:224
-#, c-format
-msgid "Exit"
-msgstr "Излез"
-
-#: diskdrake/interactive.pm:257 help.pm:531
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Undo"
msgstr "Върни"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to normal mode"
msgstr "Премини в Нормален режим"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to expert mode"
msgstr "Премини в Експертен режим"
-#: diskdrake/interactive.pm:276
+#: diskdrake/interactive.pm:269 diskdrake/interactive.pm:279
+#: diskdrake/interactive.pm:1158
+#, fuzzy, c-format
+msgid "Confirmation"
+msgstr "Настройка"
+
+#: diskdrake/interactive.pm:269
#, c-format
msgid "Continue anyway?"
msgstr "Продължение въпреки всичко ?"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without saving"
msgstr "Изход без запис"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Изход, без да запис на таблицата на дяловете ?"
-#: diskdrake/interactive.pm:286
+#: diskdrake/interactive.pm:279
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Искате ли да запазите промените в /etc/fstab"
-#: diskdrake/interactive.pm:293 install_steps_interactive.pm:317
+#: diskdrake/interactive.pm:286 fs/partitioning_wizard.pm:247
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Налага се ра рестартирате, преди модификациите да предизвикат ефект"
-#: diskdrake/interactive.pm:298
+#: diskdrake/interactive.pm:291
#, c-format
msgid ""
"You should format partition %s.\n"
@@ -2243,38 +1391,38 @@ msgid ""
"Quit anyway?"
msgstr ""
-#: diskdrake/interactive.pm:311 help.pm:531
+#: diskdrake/interactive.pm:304
#, c-format
msgid "Clear all"
msgstr "Изчисти всичко"
-#: diskdrake/interactive.pm:312 help.pm:531
+#: diskdrake/interactive.pm:305
#, c-format
msgid "Auto allocate"
msgstr "Автоматично създаване"
-#: diskdrake/interactive.pm:313 help.pm:531 help.pm:567 help.pm:607
-#: help.pm:856 install_steps_interactive.pm:98
+#: diskdrake/interactive.pm:306 diskdrake/interactive.pm:360
+#: interactive/curses.pm:457
#, c-format
msgid "More"
msgstr "Още"
-#: diskdrake/interactive.pm:318
+#: diskdrake/interactive.pm:311
#, c-format
msgid "Hard drive information"
msgstr "Информацията за твърдия диск"
-#: diskdrake/interactive.pm:350
+#: diskdrake/interactive.pm:343
#, c-format
msgid "All primary partitions are used"
msgstr "Всички първични дялове се използват"
-#: diskdrake/interactive.pm:351
+#: diskdrake/interactive.pm:344
#, c-format
msgid "I can not add any more partitions"
msgstr "Не мога да добавя повече дялове"
-#: diskdrake/interactive.pm:352
+#: diskdrake/interactive.pm:345
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
@@ -2283,52 +1431,52 @@ msgstr ""
"Ако искате още дялове, моля изтрийте един, за да можете да създадете един "
"разширен дял"
-#: diskdrake/interactive.pm:361
+#: diskdrake/interactive.pm:354
#, c-format
msgid "No supermount"
msgstr ""
-#: diskdrake/interactive.pm:362
+#: diskdrake/interactive.pm:355
#, c-format
msgid "Supermount"
msgstr ""
-#: diskdrake/interactive.pm:363
+#: diskdrake/interactive.pm:356
#, c-format
msgid "Supermount except for CDROM drives"
msgstr ""
-#: diskdrake/interactive.pm:369 help.pm:531
+#: diskdrake/interactive.pm:362
#, c-format
msgid "Save partition table"
msgstr "Запази таблицата с дяловете"
-#: diskdrake/interactive.pm:370 help.pm:531
+#: diskdrake/interactive.pm:363
#, c-format
msgid "Restore partition table"
msgstr "Възстанови таблицата с дяловете"
-#: diskdrake/interactive.pm:371 help.pm:531
+#: diskdrake/interactive.pm:364
#, c-format
msgid "Rescue partition table"
msgstr "Спасяване таблицата с дяловете"
-#: diskdrake/interactive.pm:373 help.pm:531
+#: diskdrake/interactive.pm:366
#, c-format
msgid "Reload partition table"
msgstr "Презареди таблицата с дяловете"
-#: diskdrake/interactive.pm:375
+#: diskdrake/interactive.pm:368
#, c-format
msgid "Removable media automounting"
msgstr "Автоматично монтиране на сменяем носител"
-#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:414
+#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:407
#, c-format
msgid "Select file"
msgstr "Изберете файл"
-#: diskdrake/interactive.pm:400
+#: diskdrake/interactive.pm:393
#, c-format
msgid ""
"The backup partition table has not the same size\n"
@@ -2337,87 +1485,97 @@ msgstr ""
"Резервната таблица на дяловете не е със същата големина\n"
"Да продължа ли все пак ?"
-#: diskdrake/interactive.pm:429
+#: diskdrake/interactive.pm:422
#, c-format
msgid "Trying to rescue partition table"
msgstr "Опитвам се да спася таблицата на дяловете"
-#: diskdrake/interactive.pm:435
+#: diskdrake/interactive.pm:428
#, c-format
msgid "Detailed information"
msgstr "Подробна информация"
-#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:444 diskdrake/interactive.pm:764
#, c-format
msgid "Resize"
msgstr "Промени големината"
-#: diskdrake/interactive.pm:452
+#: diskdrake/interactive.pm:445
#, c-format
msgid "Format"
msgstr "Форматирай"
-#: diskdrake/interactive.pm:454
+#: diskdrake/interactive.pm:447 diskdrake/interactive.pm:850
#, c-format
msgid "Add to RAID"
msgstr "Прибави към RAID"
-#: diskdrake/interactive.pm:455
+#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:867
#, c-format
msgid "Add to LVM"
msgstr "Прибави към LVM"
-#: diskdrake/interactive.pm:458
+#: diskdrake/interactive.pm:450
+#, c-format
+msgid "Delete"
+msgstr "Изтрий"
+
+#: diskdrake/interactive.pm:451
#, c-format
msgid "Remove from RAID"
msgstr "Премахни от RAID"
-#: diskdrake/interactive.pm:459
+#: diskdrake/interactive.pm:452
#, c-format
msgid "Remove from LVM"
msgstr "Премахни от LVM"
-#: diskdrake/interactive.pm:460
+#: diskdrake/interactive.pm:453
#, c-format
msgid "Modify RAID"
msgstr "Модифицирай RAID"
-#: diskdrake/interactive.pm:461
+#: diskdrake/interactive.pm:454
#, c-format
msgid "Use for loopback"
msgstr "Използвай за loopback"
-#: diskdrake/interactive.pm:516
+#: diskdrake/interactive.pm:465
+#, c-format
+msgid "Create"
+msgstr "Създай"
+
+#: diskdrake/interactive.pm:509 diskdrake/interactive.pm:511
#, c-format
msgid "Create a new partition"
msgstr "Създай нов дял"
-#: diskdrake/interactive.pm:519
+#: diskdrake/interactive.pm:513
#, c-format
msgid "Start sector: "
msgstr "Начален сектор: "
-#: diskdrake/interactive.pm:521 diskdrake/interactive.pm:938
+#: diskdrake/interactive.pm:516 diskdrake/interactive.pm:937
#, c-format
msgid "Size in MB: "
msgstr "Големина в MB: "
-#: diskdrake/interactive.pm:522 diskdrake/interactive.pm:939
+#: diskdrake/interactive.pm:518 diskdrake/interactive.pm:938
#, c-format
msgid "Filesystem type: "
msgstr "Вид файлова система: "
-#: diskdrake/interactive.pm:527
+#: diskdrake/interactive.pm:524
#, c-format
msgid "Preference: "
msgstr "Предпочитание: "
-#: diskdrake/interactive.pm:530
+#: diskdrake/interactive.pm:527
#, c-format
msgid "Logical volume name "
msgstr "Име на logical volume"
-#: diskdrake/interactive.pm:560
+#: diskdrake/interactive.pm:547
#, c-format
msgid ""
"You can not create a new partition\n"
@@ -2425,49 +1583,54 @@ msgid ""
"First remove a primary partition and create an extended partition."
msgstr ""
-#: diskdrake/interactive.pm:590
+#: diskdrake/interactive.pm:577
#, c-format
msgid "Remove the loopback file?"
msgstr "Да премахна ли loopback файла ?"
-#: diskdrake/interactive.pm:609
+#: diskdrake/interactive.pm:596
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"След промяна на типа на дяла %s, всички данни върху него ще бъдат загубени"
-#: diskdrake/interactive.pm:621
+#: diskdrake/interactive.pm:608
#, c-format
msgid "Change partition type"
msgstr "Промяна типа на дяла"
-#: diskdrake/interactive.pm:622 diskdrake/removable.pm:47
+#: diskdrake/interactive.pm:610 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Коя файлова система искате ?"
-#: diskdrake/interactive.pm:630
+#: diskdrake/interactive.pm:617
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "Преход от ext2 към ext3"
-#: diskdrake/interactive.pm:650
+#: diskdrake/interactive.pm:637 diskdrake/interactive.pm:640
#, c-format
msgid "Which volume label?"
msgstr ""
-#: diskdrake/interactive.pm:666
+#: diskdrake/interactive.pm:641
+#, fuzzy, c-format
+msgid "Label:"
+msgstr "Етикет"
+
+#: diskdrake/interactive.pm:655
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Къде искате да монтирате loopback-файла %s ?"
-#: diskdrake/interactive.pm:667
+#: diskdrake/interactive.pm:656
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Къде искате да монтирате устройство %s ?"
-#: diskdrake/interactive.pm:672
+#: diskdrake/interactive.pm:661
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
@@ -2477,289 +1640,300 @@ msgstr ""
"loopback.\n"
"Първо махнете loopback"
-#: diskdrake/interactive.pm:697
+#: diskdrake/interactive.pm:691
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Къде искате да монтирате устройство %s ?"
-#: diskdrake/interactive.pm:721 diskdrake/interactive.pm:800
-#: install_interactive.pm:157 install_interactive.pm:189
+#: diskdrake/interactive.pm:715 diskdrake/interactive.pm:798
+#: fs/partitioning_wizard.pm:141 fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing"
msgstr "Промяна на големината"
-#: diskdrake/interactive.pm:721
+#: diskdrake/interactive.pm:715
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Изчислявам границите на fat файловата система"
-#: diskdrake/interactive.pm:757
+#: diskdrake/interactive.pm:751
#, c-format
msgid "This partition is not resizeable"
msgstr "Големината на дяла не може да бъде променена"
-#: diskdrake/interactive.pm:762
+#: diskdrake/interactive.pm:756
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Всички данни на този дял трябва да бъдат архивирани"
-#: diskdrake/interactive.pm:764
+#: diskdrake/interactive.pm:758
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"След промяна големината на дяла %s, данните върху него ще бъдат загубени"
-#: diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:765
#, c-format
msgid "Choose the new size"
msgstr "Изберете нова големина"
-#: diskdrake/interactive.pm:770
+#: diskdrake/interactive.pm:766
#, c-format
msgid "New size in MB: "
msgstr "Нова големина в MB: "
-#: diskdrake/interactive.pm:811 install_interactive.pm:197
+#: diskdrake/interactive.pm:767
+#, c-format
+msgid "Minimum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:768
+#, c-format
+msgid "Maximum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:809 fs/partitioning_wizard.pm:181
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
"filesystem checks will be run on your next boot into Microsoft Windows®"
msgstr ""
-#: diskdrake/interactive.pm:852
+#: diskdrake/interactive.pm:850
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Изберете съществуващ RAID за прибавяне"
-#: diskdrake/interactive.pm:854 diskdrake/interactive.pm:871
+#: diskdrake/interactive.pm:852 diskdrake/interactive.pm:869
#, c-format
msgid "new"
msgstr "нов"
-#: diskdrake/interactive.pm:869
+#: diskdrake/interactive.pm:867
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Изберете съществуващ LVM за прибавяне"
-#: diskdrake/interactive.pm:875
+#: diskdrake/interactive.pm:874
#, c-format
msgid "LVM name?"
msgstr "LVM име ?"
-#: diskdrake/interactive.pm:903
+#: diskdrake/interactive.pm:902
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
"Do you want to move used physical extents on this volume to other volumes?"
msgstr ""
-#: diskdrake/interactive.pm:905
+#: diskdrake/interactive.pm:904
#, c-format
msgid "Moving physical extents"
msgstr ""
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:922
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Този дял не може да бъде използван за loopback"
-#: diskdrake/interactive.pm:936
+#: diskdrake/interactive.pm:935
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: diskdrake/interactive.pm:937
+#: diskdrake/interactive.pm:936
#, c-format
msgid "Loopback file name: "
msgstr "Име на loopback файла: "
-#: diskdrake/interactive.pm:942
+#: diskdrake/interactive.pm:941
#, c-format
msgid "Give a file name"
msgstr "Дайте име на файл"
-#: diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:944
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Файлът вече се използва то друг loopback, изберете друг файл."
-#: diskdrake/interactive.pm:946
+#: diskdrake/interactive.pm:945
#, c-format
msgid "File already exists. Use it?"
msgstr "Файлът вече съшествува. Да го използвам ли ?"
-#: diskdrake/interactive.pm:969
+#: diskdrake/interactive.pm:974 diskdrake/interactive.pm:977
#, c-format
msgid "Mount options"
msgstr "Опции за mount:"
-#: diskdrake/interactive.pm:976
+#: diskdrake/interactive.pm:984
#, c-format
msgid "Various"
msgstr "Различни"
-#: diskdrake/interactive.pm:1044
+#: diskdrake/interactive.pm:1049
#, c-format
msgid "device"
msgstr "устройство"
-#: diskdrake/interactive.pm:1045
+#: diskdrake/interactive.pm:1050
#, c-format
msgid "level"
msgstr "ниво"
-#: diskdrake/interactive.pm:1046
+#: diskdrake/interactive.pm:1051
#, fuzzy, c-format
msgid "chunk size in KiB"
msgstr "големина на парчето"
-#: diskdrake/interactive.pm:1063
+#: diskdrake/interactive.pm:1068
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Внимание: тази операция е опасна"
-#: diskdrake/interactive.pm:1078
+#: diskdrake/interactive.pm:1083
#, c-format
msgid "What type of partitioning?"
msgstr "Какъв тип разделяне на дялове ?"
-#: diskdrake/interactive.pm:1116
+#: diskdrake/interactive.pm:1121
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Трябва да рестартирате, преди промените да влязат в сила"
-#: diskdrake/interactive.pm:1125
+#: diskdrake/interactive.pm:1130
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Таблицата на дяловете на устройство %s ще бъде записана върху диска !"
-#: diskdrake/interactive.pm:1148
+#: diskdrake/interactive.pm:1153
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "След форматиране на дяла %s, всички данни върху него ще бъдат загубени"
-#: diskdrake/interactive.pm:1164
+#: diskdrake/interactive.pm:1158 fs/partitioning.pm:49
+#, c-format
+msgid "Check bad blocks?"
+msgstr "Проверка за лоши сектори ?"
+
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Move files to the new partition"
msgstr "Премести файловете на нов дял"
-#: diskdrake/interactive.pm:1164 standalone/draksambashare:81
-#: standalone/draksambashare:144
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Hide files"
msgstr "Скрий файловете"
-#: diskdrake/interactive.pm:1165
+#: diskdrake/interactive.pm:1173
#, c-format
msgid ""
"Directory %s already contains data\n"
-"(%s)"
+"(%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 ""
-"Директорията %s вече съдържа някакви данни\n"
-"(%s)"
-#: diskdrake/interactive.pm:1176
+#: diskdrake/interactive.pm:1188
#, c-format
msgid "Moving files to the new partition"
msgstr "Премести файловете на нов дял"
-#: diskdrake/interactive.pm:1180
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "Copying %s"
msgstr "Копиране на %s"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1196
#, c-format
msgid "Removing %s"
msgstr "Изтриване на %s"
-#: diskdrake/interactive.pm:1198
+#: diskdrake/interactive.pm:1210
#, c-format
msgid "partition %s is now known as %s"
msgstr "дял %s сега е известен като %s"
-#: diskdrake/interactive.pm:1199
+#: diskdrake/interactive.pm:1211
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""
-#: diskdrake/interactive.pm:1219 diskdrake/interactive.pm:1281
+#: diskdrake/interactive.pm:1231 diskdrake/interactive.pm:1293
#, c-format
msgid "Device: "
msgstr "Устройство: "
-#: diskdrake/interactive.pm:1220
-#, fuzzy, c-format
-msgid "Devfs name: "
-msgstr "Име на хост:"
-
-#: diskdrake/interactive.pm:1221
+#: diskdrake/interactive.pm:1232
#, c-format
msgid "Volume label: "
msgstr ""
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1233
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Буква на устройството под DOS: %s (просто предположение)\n"
-#: diskdrake/interactive.pm:1226 diskdrake/interactive.pm:1235
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1237 diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1311
#, c-format
msgid "Type: "
msgstr "Вид: "
-#: diskdrake/interactive.pm:1230 install_steps_gtk.pm:300
+#: diskdrake/interactive.pm:1241
#, c-format
msgid "Name: "
msgstr "Име: "
-#: diskdrake/interactive.pm:1237
+#: diskdrake/interactive.pm:1248
#, c-format
msgid "Start: sector %s\n"
msgstr "Начало: сектор %s\n"
-#: diskdrake/interactive.pm:1238
+#: diskdrake/interactive.pm:1249
#, c-format
msgid "Size: %s"
msgstr "Размер: %s"
-#: diskdrake/interactive.pm:1240
+#: diskdrake/interactive.pm:1251
#, c-format
msgid ", %s sectors"
msgstr ", %s сектора"
-#: diskdrake/interactive.pm:1242
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "От цилиндър %d до цилиндър %d\n"
-#: diskdrake/interactive.pm:1243
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Formatted\n"
msgstr "Форматиран\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "Not formatted\n"
msgstr "Неформатиран\n"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Mounted\n"
msgstr "Монтиран\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1252
+#: diskdrake/interactive.pm:1263
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2768,7 +1942,7 @@ msgstr ""
"Loopback файл(ове):\n"
" %s\n"
-#: diskdrake/interactive.pm:1253
+#: diskdrake/interactive.pm:1264
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2777,27 +1951,27 @@ msgstr ""
"Дял, който се стартира по подразбиране\n"
" (за MS-DOS boot, не за lilo)\n"
-#: diskdrake/interactive.pm:1255
+#: diskdrake/interactive.pm:1266
#, c-format
msgid "Level %s\n"
msgstr "Ниво %s\n"
-#: diskdrake/interactive.pm:1256
+#: diskdrake/interactive.pm:1267
#, fuzzy, c-format
msgid "Chunk size %d KiB\n"
msgstr "Размер на парчето %s\n"
-#: diskdrake/interactive.pm:1257
+#: diskdrake/interactive.pm:1268
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-дискове %s\n"
-#: diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1270
#, c-format
msgid "Loopback file name: %s"
msgstr "Име на loopback файла: %s"
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1273
#, c-format
msgid ""
"\n"
@@ -2810,7 +1984,7 @@ msgstr ""
"Драйвер-дял, може би трябва\n"
"трябва да го оставите.\n"
-#: diskdrake/interactive.pm:1265
+#: diskdrake/interactive.pm:1276
#, c-format
msgid ""
"\n"
@@ -2823,75 +1997,78 @@ msgstr ""
"ивица на дяла е за двойно\n"
"стартиране на системата ви.\n"
-#: diskdrake/interactive.pm:1282
+#: diskdrake/interactive.pm:1285
+#, c-format
+msgid "Empty space on %s (%s)"
+msgstr ""
+
+#: diskdrake/interactive.pm:1294
#, c-format
msgid "Read-only"
msgstr "Само за четене"
-#: diskdrake/interactive.pm:1283
+#: diskdrake/interactive.pm:1295
#, c-format
msgid "Size: %s\n"
msgstr "Размер: %s\n"
-#: diskdrake/interactive.pm:1284
+#: diskdrake/interactive.pm:1296
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Геометрия: %s цилиндри, %s глави, %s сектори\n"
-#: diskdrake/interactive.pm:1285 network/thirdparty.pm:331
+#: diskdrake/interactive.pm:1297
#, c-format
msgid "Info: "
msgstr "Информация: "
-#: diskdrake/interactive.pm:1286
+#: diskdrake/interactive.pm:1298
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-дискове %s\n"
-#: diskdrake/interactive.pm:1287
+#: diskdrake/interactive.pm:1299
#, c-format
msgid "Partition table type: %s\n"
msgstr "Тип на таблицата с дялове: %s\n"
-#: diskdrake/interactive.pm:1288
+#: diskdrake/interactive.pm:1300
#, c-format
msgid "on channel %d id %d\n"
msgstr "на канал %d id %d\n"
-#: diskdrake/interactive.pm:1331
+#: diskdrake/interactive.pm:1343
#, c-format
msgid "Filesystem encryption key"
msgstr "Криптиращ ключ за файлова система"
-#: diskdrake/interactive.pm:1332
+#: diskdrake/interactive.pm:1344
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Избор на криптиращ ключ за еашата файлова система"
-#: diskdrake/interactive.pm:1335
+#: diskdrake/interactive.pm:1347
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Криптиращ ключ е прекалено прост (трябва да бъде дълга поне %d символа)"
-#: diskdrake/interactive.pm:1336
+#: diskdrake/interactive.pm:1348
#, c-format
msgid "The encryption keys do not match"
msgstr "Ключовете за криптиране не съвпадат"
-#: diskdrake/interactive.pm:1339 network/netconnect.pm:1073
-#: standalone/drakconnect:419 standalone/drakroam:120
+#: diskdrake/interactive.pm:1351
#, c-format
msgid "Encryption key"
msgstr "Ключ за криптиране"
-#: diskdrake/interactive.pm:1340
+#: diskdrake/interactive.pm:1352
#, c-format
msgid "Encryption key (again)"
msgstr "Ключ за криптиране (отново)"
-#: diskdrake/interactive.pm:1342 standalone/drakvpn:1017
-#: standalone/drakvpn:1102
+#: diskdrake/interactive.pm:1354
#, fuzzy, c-format
msgid "Encryption algorithm"
msgstr "идентификация"
@@ -2901,114 +2078,119 @@ msgstr "идентификация"
msgid "Change type"
msgstr "Промяни типа"
-#: diskdrake/smbnfs_gtk.pm:163
+#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:539
+#: interactive/curses.pm:214 interactive/http.pm:104 interactive/http.pm:160
+#: interactive/stdio.pm:39 interactive/stdio.pm:142 ugtk2.pm:404 ugtk2.pm:506
+#: ugtk2.pm:515 ugtk2.pm:788
+#, c-format
+msgid "Cancel"
+msgstr "Отказ"
+
+#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr "Не мога да вляза като използвам име %s (грешна парола?)"
-#: diskdrake/smbnfs_gtk.pm:167 diskdrake/smbnfs_gtk.pm:176
+#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Изисква Идентификация за Домейн"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Кое потребителско име"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Друго"
-#: diskdrake/smbnfs_gtk.pm:177
+#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
"Моля, въведете вашето име, парола и име на домейн за достъп до този хост."
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3640
+#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Потребителско име"
-#: diskdrake/smbnfs_gtk.pm:205
+#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Търси сървъри"
-#: diskdrake/smbnfs_gtk.pm:210
+#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr "Търси нови сървъри"
-#: do_pkgs.pm:16 do_pkgs.pm:49
+#: do_pkgs.pm:16 do_pkgs.pm:53
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Пакет %s трябва да бъде инсталиран\n"
"Искате да го инсталирате?"
-#: do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:52 printer/printerdrake.pm:3948
+#: do_pkgs.pm:19 do_pkgs.pm:40 do_pkgs.pm:56
#, fuzzy, c-format
msgid "Could not install the %s package!"
msgstr "Инсталиране на пакета %s"
-#: do_pkgs.pm:24 do_pkgs.pm:57
+#: do_pkgs.pm:24 do_pkgs.pm:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Задължителният пакет %s липсва"
-#: do_pkgs.pm:35 harddrake/sound.pm:278 install_steps_interactive.pm:1288
-#: keyboard.pm:381 network/ndiswrapper.pm:95 network/netconnect.pm:471
-#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2495
-#: printer/printerdrake.pm:2632 printer/printerdrake.pm:2953
-#: printer/printerdrake.pm:2960 printer/printerdrake.pm:3947
-#: printer/printerdrake.pm:4211 printer/printerdrake.pm:4330
-#: printer/printerdrake.pm:5487 standalone/drakTermServ:354
-#: standalone/drakTermServ:1267 standalone/drakTermServ:1328
-#: standalone/drakTermServ:2006 standalone/drakbackup:510
-#: standalone/drakbackup:609 standalone/drakboot:133 standalone/drakclock:224
-#: standalone/drakconnect:973 standalone/drakfont:679 standalone/drakperm:380
-#: standalone/drakperm:390 standalone/drakups:27 standalone/harddrake2:510
-#: standalone/harddrake2:526 standalone/localedrake:43
-#: standalone/scannerdrake:51 standalone/scannerdrake:957
-#, c-format
-msgid "Warning"
-msgstr "Предупреждение"
-
-#: do_pkgs.pm:35 standalone/harddrake2:526
+#: do_pkgs.pm:35
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Следните пакети ще трябва да се инсталират:\n"
-#: do_pkgs.pm:205
+#: do_pkgs.pm:209
#, c-format
msgid "Installing packages..."
msgstr "Инсталиране на пакети ..."
-#: do_pkgs.pm:252
+#: do_pkgs.pm:255
#, fuzzy, c-format
msgid "Removing packages..."
msgstr "Изтриване на %s ..."
-#: fs/format.pm:58 fs/format.pm:65
+#: fs/any.pm:17
+#, c-format
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Появи се грешка - не са открити валидни устройства, върху които да бъдат "
+"създадени нови файлови системи. Моля проверете твърдия си диск си за "
+"причината за този проблем"
+
+#: fs/any.pm:62 fs/partitioning_wizard.pm:55
+#, c-format
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Трябва да имате FAT дял монтиран в /boot/efi"
+
+#: fs/format.pm:59 fs/format.pm:66
#, c-format
msgid "Formatting partition %s"
msgstr "Форматиране на дял %s"
-#: fs/format.pm:62
+#: fs/format.pm:63
#, c-format
msgid "Creating and formatting file %s"
msgstr "Създаване и форматиране на файл %s"
-#: fs/format.pm:115
+#: fs/format.pm:116
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "не знам как да форматирам %s в тип %s"
-#: fs/format.pm:120 fs/format.pm:122
+#: fs/format.pm:121 fs/format.pm:123
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s форматиране от %s провалено"
@@ -3018,27 +2200,27 @@ msgstr "%s форматиране от %s провалено"
msgid "Circular mounts %s\n"
msgstr "\"Омагьосан кръг\" от монтирания: %s\n"
-#: fs/mount.pm:74
+#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "Форматира дял %s"
-#: fs/mount.pm:75
+#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "монтирането на дял %s в директория %s пропадна"
-#: fs/mount.pm:80 fs/mount.pm:97
+#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "Проверка на %s"
-#: fs/mount.pm:113 partition_table.pm:385
+#: fs/mount.pm:118 partition_table.pm:384
#, c-format
msgid "error unmounting %s: %s"
msgstr "грешка при демонтиране на %s: %s"
-#: fs/mount.pm:142
+#: fs/mount.pm:133
#, c-format
msgid "Enabling swap partition %s"
msgstr "Разрешава swap дял %s"
@@ -3101,35 +2283,306 @@ msgstr ""
#: fs/mount_options.pm:139
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow every user to mount and umount the file system."
msgstr ""
#: fs/mount_options.pm:141
#, c-format
-msgid "Enable user disk quota accounting, and optionally enforce limits"
+msgid "Allow an ordinary user to mount the file system."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Support user. extended attributes"
+msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""
#: fs/mount_options.pm:145
#, c-format
-msgid "Give write access to ordinary users"
+msgid "Support \"user.\" extended attributes"
msgstr ""
#: fs/mount_options.pm:147
#, c-format
+msgid "Give write access to ordinary users"
+msgstr ""
+
+#: fs/mount_options.pm:149
+#, c-format
msgid "Give read-only access to ordinary users"
msgstr ""
-#: fs/type.pm:363
+#: fs/mount_point.pm:80
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Дублирай точката на монтиране %s"
+
+#: fs/mount_point.pm:95
+#, c-format
+msgid "No partition available"
+msgstr "няма дялове на разположение"
+
+#: fs/mount_point.pm:98
+#, c-format
+msgid "Scanning partitions to find mount points"
+msgstr "Претърсване на дяловете за намиране на точки на монтиране"
+
+#: fs/mount_point.pm:105
+#, c-format
+msgid "Choose the mount points"
+msgstr "Изберете места за монтиране"
+
+#: fs/partitioning.pm:46
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "Изберете дяловете, които искате да форматирате"
+
+#: fs/partitioning.pm:76
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+"Неуспешна проверка на файлва система %s. Искате ли да оправите грешките? "
+"(бъдете внимателни, може да загубите данни)"
+
+#: fs/partitioning.pm:79
+#, c-format
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+"Няма достатъчно swap за приключване на инсталацията, моля добавете малко"
+
+#: fs/partitioning_wizard.pm:47
+#, c-format
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"Трябва да имате root-дял.\n"
+"Затова създайте дял (или цъкнете на съществуващ).\n"
+"Тогава изберете действие ``Място на монтиране'' и го сложете `/'"
+
+#: fs/partitioning_wizard.pm:52
+#, c-format
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+"Нямате swap-дял\n"
+"\n"
+"Да продължа ли все пак ?"
+
+#: fs/partitioning_wizard.pm:80
+#, c-format
+msgid "Use free space"
+msgstr "Използвай свободното място"
+
+#: fs/partitioning_wizard.pm:82
+#, c-format
+msgid "Not enough free space to allocate new partitions"
+msgstr "Няма достатъчно място за създаване на нов дял"
+
+#: fs/partitioning_wizard.pm:90
+#, c-format
+msgid "Use existing partitions"
+msgstr "Изпозване на съществуващ дял"
+
+#: fs/partitioning_wizard.pm:92
+#, c-format
+msgid "There is no existing partition to use"
+msgstr "Няма дял, който мога да използвам"
+
+#: fs/partitioning_wizard.pm:99
+#, c-format
+msgid "Use the Microsoft Windows® partition for loopback"
+msgstr "Използвай за Microsoft Windows® дялът за loopback"
+
+#: fs/partitioning_wizard.pm:102
+#, c-format
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Кой дял искате да използвате за Linux4Win ?"
+
+#: fs/partitioning_wizard.pm:104
+#, c-format
+msgid "Choose the sizes"
+msgstr "Изберете големините"
+
+#: fs/partitioning_wizard.pm:105
+#, c-format
+msgid "Root partition size in MB: "
+msgstr "Големина на root-дяла в MB: "
+
+#: fs/partitioning_wizard.pm:106
+#, c-format
+msgid "Swap partition size in MB: "
+msgstr "Големина на swap-дяла в MB: "
+
+#: fs/partitioning_wizard.pm:115
+#, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+"Няма FAT дялове за използване като loopback (или няма достатъчно място на "
+"диска)"
+
+#: fs/partitioning_wizard.pm:122
+#, c-format
+msgid "Use the free space on the Microsoft Windows® partition"
+msgstr "Използвай свободното място на Windows дяла"
+
+#: fs/partitioning_wizard.pm:124
+#, c-format
+msgid "Which partition do you want to resize?"
+msgstr "Кой дял желаете да промените?"
+
+#: fs/partitioning_wizard.pm:138
+#, c-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+"Не възможност за работа с вашия FAT дял, \n"
+"поради получената грешка: %s"
+
+#: fs/partitioning_wizard.pm:141
+#, c-format
+msgid "Computing the size of the Microsoft Windows® partition"
+msgstr "Изчислява свободното място на Microsoft Windows® дял"
+
+#: fs/partitioning_wizard.pm:148
+#, c-format
+msgid ""
+"Your Microsoft Windows® partition is too fragmented. Please reboot your "
+"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
+"the Mandriva Linux installation."
+msgstr ""
+"Вашият Microsoft Windows® дял е много фрагментиран, моля първо стартирайте "
+"''defrag''"
+
+#: fs/partitioning_wizard.pm:151
+#, c-format
+msgid ""
+"WARNING!\n"
+"\n"
+"\n"
+"Your Microsoft Windows® partition will be now resized.\n"
+"\n"
+"\n"
+"Be careful: this operation is dangerous. If you have not already done so, "
+"you first need to exit the installation, run \"chkdsk c:\" from a Command "
+"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
+"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
+"optionally run defrag, then restart the installation. You should also backup "
+"your data.\n"
+"\n"
+"\n"
+"When sure, press %s."
+msgstr ""
+"ВНИМАНИЕ!\n"
+"\n"
+" DrakX трябва да прераздели Вашия Windows дял.\n"
+"\n"
+"\n"
+"Бъдете внимателни: тази операция е опасна. Ако още не сте го направили, "
+"трябва първо да пуснете scandisk (и евентуално да използвате defrag) под "
+"Windows върху този дял, тогава повторете инсталациаята. Би било добре да "
+"направите архив на данните си.\n"
+"\n"
+"\n"
+"Когато сте сигурни, натиснете %s."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: fs/partitioning_wizard.pm:160 interactive.pm:538 interactive/curses.pm:217
+#: ugtk2.pm:508
+#, c-format
+msgid "Next"
+msgstr "Следващ"
+
+#: fs/partitioning_wizard.pm:163
+#, c-format
+msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
+msgstr "Колко искате да оставите за windows? дял %s?"
+
+#: fs/partitioning_wizard.pm:164
+#, c-format
+msgid "Size"
+msgstr "Размер"
+
+#: fs/partitioning_wizard.pm:173
+#, c-format
+msgid "Resizing Microsoft Windows® partition"
+msgstr "Изчислявам границите на Microsoft Windows® файловата система"
+
+#: fs/partitioning_wizard.pm:178
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "Неуспешно преразделяне на FAT: %s"
+
+#: fs/partitioning_wizard.pm:193
+#, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr "Няма FAT дялове за смяна на големината (или няма достаъчно място)"
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Remove Microsoft Windows®"
+msgstr "Премахни Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:198
+#, fuzzy, c-format
+msgid "Erase and use entire disk"
+msgstr "Изтрий целия диск"
+
+#: fs/partitioning_wizard.pm:200
+#, c-format
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "имате повече от един твърди дискове, кой да използвам за инсталацията?"
+
+#: fs/partitioning_wizard.pm:206
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "ВСИЧКИ съществуващи дялове и данните върху тях на %s ще бъдат загубени"
+
+#: fs/partitioning_wizard.pm:217
+#, c-format
+msgid "Custom disk partitioning"
+msgstr "Клиентско разделяне на диска"
+
+#: fs/partitioning_wizard.pm:223
+#, c-format
+msgid "Use fdisk"
+msgstr "Използвай fdisk"
+
+#: fs/partitioning_wizard.pm:226
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+"Сега можете да разделите %s.\n"
+"Когато сте готови, не забравяйте да запишете използвайки `w'"
+
+#: fs/partitioning_wizard.pm:266
+#, c-format
+msgid "I can not find any room for installing"
+msgstr "Не мога да намеря никакво място за инсталация"
+
+#: fs/partitioning_wizard.pm:270
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Помощникът за разделине на дялове на DrakX намери следните решения:"
+
+#: fs/partitioning_wizard.pm:278
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Неуспешно разделяне на: %s"
+
+#: fs/type.pm:366
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "Не можете да използвате JFS за дял по-малък от 16 МБ"
-#: fs/type.pm:364
+#: fs/type.pm:367
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "Не можете да инсталиране ReiserFS на дял по-малък от 32 МБ"
@@ -3144,7 +2597,12 @@ msgstr "с /usr"
msgid "server"
msgstr "сървър"
-#: fsedit.pm:219
+#: fsedit.pm:116
+#, c-format
+msgid "BIOS software RAID detected on disks %s. Activate it?"
+msgstr ""
+
+#: fsedit.pm:230
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
@@ -3164,22 +2622,22 @@ msgstr ""
"\n"
"Съгласни ли сте да загубите всички дялове?\n"
-#: fsedit.pm:392
+#: fsedit.pm:403
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Точките на монтиране трябва да започват с /"
-#: fsedit.pm:393
+#: fsedit.pm:404
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Точките за монтиране трябва да съдържат само букви и цифри"
-#: fsedit.pm:394
+#: fsedit.pm:405
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Вече има дял монтиран на това място %s\n"
-#: fsedit.pm:398
+#: fsedit.pm:409
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -3190,14 +2648,14 @@ msgstr ""
"Няма зареждаща програма, която да може да се справи с него без /boot дял.\n"
"Така че добавете /boot дял"
-#: fsedit.pm:404
+#: fsedit.pm:415
#, fuzzy, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr "Не можете да използвате LVM тип за място на монтиране %s"
-#: fsedit.pm:406
+#: fsedit.pm:417
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -3209,12 +2667,12 @@ msgstr ""
"Няма зареждаща програма, която да може да се справи с него без /boot дял.\n"
"Така че добавете /boot дял"
-#: fsedit.pm:410 fsedit.pm:412
+#: fsedit.pm:421 fsedit.pm:423
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Тази директория трябва да остане в рамките на root файловата система."
-#: fsedit.pm:414 fsedit.pm:416
+#: fsedit.pm:425 fsedit.pm:427
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -3223,23 +2681,23 @@ msgstr ""
"Нуждаете се от истинска файлова система (ext2, reiserfs,xfs, или jfs) за "
"тази точка на монтиране\n"
-#: fsedit.pm:418
+#: fsedit.pm:429
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr ""
"Вие не може да използвате криптирана файлова система за точка на монтиране %s"
-#: fsedit.pm:482
+#: fsedit.pm:493
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Няма достатъчно място за автоматично разпределяне"
-#: fsedit.pm:484
+#: fsedit.pm:495
#, c-format
msgid "Nothing to do"
msgstr "Няма нищо за правене"
-#: harddrake/data.pm:62 install_any.pm:1710
+#: harddrake/data.pm:62
#, c-format
msgid "Floppy"
msgstr "Флопи"
@@ -3249,12 +2707,12 @@ msgstr "Флопи"
msgid "Zip"
msgstr "Zip устройство"
-#: harddrake/data.pm:88 install_any.pm:1711
+#: harddrake/data.pm:88
#, c-format
msgid "Hard Disk"
msgstr "Диск"
-#: harddrake/data.pm:97 install_any.pm:1712
+#: harddrake/data.pm:97
#, c-format
msgid "CDROM"
msgstr "CDROM"
@@ -3269,103 +2727,102 @@ msgstr "CD/DVD записващо"
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:127 standalone/drakbackup:2066
+#: harddrake/data.pm:127
#, c-format
msgid "Tape"
msgstr "Лента"
-#: harddrake/data.pm:136
+#: harddrake/data.pm:138
+#, c-format
+msgid "AGP controllers"
+msgstr "AGP контролери"
+
+#: harddrake/data.pm:147
#, c-format
msgid "Videocard"
msgstr "Видео карта"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:157
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:154
+#: harddrake/data.pm:165
#, c-format
msgid "Tvcard"
msgstr "TV карта"
-#: harddrake/data.pm:163
+#: harddrake/data.pm:174
#, c-format
msgid "Other MultiMedia devices"
msgstr "Друга мултимедийни устройства"
-#: harddrake/data.pm:172
+#: harddrake/data.pm:183
#, c-format
msgid "Soundcard"
msgstr "Звукова карта"
-#: harddrake/data.pm:185
+#: harddrake/data.pm:196
#, c-format
msgid "Webcam"
msgstr ""
-#: harddrake/data.pm:199
+#: harddrake/data.pm:210
#, c-format
msgid "Processors"
msgstr "Процесори"
-#: harddrake/data.pm:209
+#: harddrake/data.pm:220
#, fuzzy, c-format
msgid "ISDN adapters"
msgstr "ISDN карта"
-#: harddrake/data.pm:220
+#: harddrake/data.pm:231
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:229
+#: harddrake/data.pm:240
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:238
+#: harddrake/data.pm:249
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:247
+#: harddrake/data.pm:258
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:256
+#: harddrake/data.pm:267
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:265
+#: harddrake/data.pm:276
#, c-format
msgid "Ethernetcard"
msgstr "Ethernet карта"
-#: harddrake/data.pm:282 network/netconnect.pm:492
+#: harddrake/data.pm:293
#, c-format
msgid "Modem"
msgstr "Модем"
-#: harddrake/data.pm:292
+#: harddrake/data.pm:303
#, c-format
msgid "ADSL adapters"
msgstr ""
-#: harddrake/data.pm:306
+#: harddrake/data.pm:315
#, c-format
msgid "Memory"
msgstr "Памет"
-#: harddrake/data.pm:315
-#, c-format
-msgid "AGP controllers"
-msgstr "AGP контролери"
-
-#: harddrake/data.pm:324 help.pm:187 help.pm:856
-#: install_steps_interactive.pm:964
+#: harddrake/data.pm:324
#, c-format
msgid "Printer"
msgstr "Принтер"
@@ -3391,85 +2848,92 @@ msgstr "SATA контролери"
msgid "RAID controllers"
msgstr "RAID контролери"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA контролери"
-#: harddrake/data.pm:385
+#: harddrake/data.pm:386
+#, c-format
+msgid "USB Mass Storage Devices"
+msgstr ""
+
+#: harddrake/data.pm:395
+#, fuzzy, c-format
+msgid "Card readers"
+msgstr "Модел на карта:"
+
+#: harddrake/data.pm:404
#, c-format
msgid "Firewire controllers"
msgstr "Firewire контролери"
-#: harddrake/data.pm:394
+#: harddrake/data.pm:413
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA контролери"
-#: harddrake/data.pm:403
+#: harddrake/data.pm:422
#, c-format
msgid "SCSI controllers"
msgstr "SCSI контролери"
-#: harddrake/data.pm:412
+#: harddrake/data.pm:431
#, c-format
msgid "USB controllers"
msgstr "USB контролери"
-#: harddrake/data.pm:421
+#: harddrake/data.pm:440
#, fuzzy, c-format
msgid "USB ports"
msgstr ", USB принтер"
-#: harddrake/data.pm:430
+#: harddrake/data.pm:449
#, c-format
msgid "SMBus controllers"
msgstr "SMBus контролери"
-#: harddrake/data.pm:439
+#: harddrake/data.pm:458
#, c-format
msgid "Bridges and system controllers"
msgstr "Бриджове и системни контролери"
-#: harddrake/data.pm:450 help.pm:856 install_steps_interactive.pm:94
-#: install_steps_interactive.pm:924 standalone/finish-install:41
-#: standalone/keyboarddrake:29
+#: harddrake/data.pm:469
#, c-format
msgid "Keyboard"
msgstr "Клавиатура"
-#: harddrake/data.pm:463
+#: harddrake/data.pm:482
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:472 help.pm:856 install_steps_interactive.pm:957
+#: harddrake/data.pm:491
#, c-format
msgid "Mouse"
msgstr "Мишка"
-#: harddrake/data.pm:486
+#: harddrake/data.pm:505
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:495
+#: harddrake/data.pm:514
#, c-format
msgid "Scanner"
msgstr "Скенер"
-#: harddrake/data.pm:505 standalone/harddrake2:475
+#: harddrake/data.pm:524
#, c-format
msgid "Unknown/Others"
msgstr "Неизвестни/Други"
-#: harddrake/data.pm:533
+#: harddrake/data.pm:552
#, c-format
msgid "cpu # "
msgstr "cpu # "
-#: harddrake/sound.pm:195 standalone/drakconnect:162
-#: standalone/drakconnect:637
+#: harddrake/sound.pm:195
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Моля, почакайте ... Прилагане на настройките"
@@ -3538,17 +3002,17 @@ msgid ""
"the ALSA library.\n"
msgstr ""
-#: harddrake/sound.pm:262 harddrake/sound.pm:350 standalone/drakups:144
+#: harddrake/sound.pm:262 harddrake/sound.pm:351
#, c-format
msgid "Driver:"
msgstr "Драйвер: "
-#: harddrake/sound.pm:270
+#: harddrake/sound.pm:271
#, c-format
msgid "Trouble shooting"
msgstr ""
-#: harddrake/sound.pm:278
+#: harddrake/sound.pm:279
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
@@ -3558,12 +3022,12 @@ msgid ""
"The new \"%s\" driver will only be used on next bootstrap."
msgstr ""
-#: harddrake/sound.pm:286
+#: harddrake/sound.pm:287
#, c-format
msgid "No open source driver"
msgstr ""
-#: harddrake/sound.pm:287
+#: harddrake/sound.pm:288
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
@@ -3572,33 +3036,33 @@ msgstr ""
"Няма свободен драйвер за вашата звукова карта (%s), но има собствени драйвер "
"на \"%s\"."
-#: harddrake/sound.pm:290
+#: harddrake/sound.pm:291
#, c-format
msgid "No known driver"
msgstr "Няма известен драйвер"
-#: harddrake/sound.pm:291
+#: harddrake/sound.pm:292
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Няма драйвер за вашата звукова карта (%s)"
-#: harddrake/sound.pm:295 network/netconnect.pm:98 network/netconnect.pm:837
+#: harddrake/sound.pm:296
#, fuzzy, c-format
msgid "Unknown driver"
msgstr "Неизвестен драйвер"
-#: harddrake/sound.pm:296
+#: harddrake/sound.pm:297
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "Грешка: \"%s\" драйвер за вашата карта е инсталиран"
-#: harddrake/sound.pm:310
+#: harddrake/sound.pm:311
#, c-format
msgid "Sound trouble shooting"
msgstr "Затруднения при звук"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:313
+#: harddrake/sound.pm:314
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
@@ -3607,7 +3071,7 @@ msgid ""
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\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"
@@ -3622,18 +3086,18 @@ msgid ""
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
-#: harddrake/sound.pm:339
+#: harddrake/sound.pm:340
#, c-format
msgid "Let me pick any driver"
msgstr "Нека избера драйвер"
-#: harddrake/sound.pm:342
+#: harddrake/sound.pm:343
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Избор на случаен драйвер"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:345
+#: harddrake/sound.pm:346
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3647,8 +3111,7 @@ msgstr ""
"\n"
"Текущо използваният драйвер за вашата \"%s\" звукова карта е \"%s\" "
-#: harddrake/v4l.pm:12 standalone/net_applet:64 standalone/net_applet:65
-#: standalone/net_applet:67
+#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Автоматично засичане"
@@ -3687,3482 +3150,53 @@ msgstr "Модел на карта:"
msgid "Tuner type:"
msgstr "Тип на тунер:"
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "Number of capture buffers:"
-msgstr ""
-
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: harddrake/v4l.pm:481
-#, c-format
-msgid "PLL setting:"
-msgstr "PLL настройки:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "Radio support:"
-msgstr "Подръжка на радио:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "enable radio support"
-msgstr "разрешава подръжка на радио"
-
-#: help.pm:12
-#, fuzzy, c-format
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandriva Linux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-"Преди да продължите, трябва внимателно да прочетете условията на лиценза. "
-"Той\n"
-"покрива цялата Mandriva Linux дистрибуция, и, ако сте съгласни с всички "
-"условия\n"
-"в него, сложете отметка на \"%s\".Ако не сте съгласни,просто спрете "
-"компютъра си."
-
-#: help.pm:18
-#, fuzzy, c-format
-msgid ""
-"GNU/Linux is a multi-user system which means each user can have his or her\n"
-"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point will not be "
-"authorized\n"
-"to change anything except their own files and their own configurations,\n"
-"protecting the system from unintentional or malicious changes which could\n"
-"impact on the system as a whole. You'll have to create at least one regular\n"
-"user for yourself -- this is the account which you should use for routine,\n"
-"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
-"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system will not work any more. If you make a\n"
-"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you will not affect the entire system.\n"
-"\n"
-"The first field asks you for a real name. Of course, this is not mandatory\n"
-"-- you can actually enter whatever you like. DrakX will use the first word\n"
-"you type in this field and copy it to the \"%s\" one, which is the name\n"
-"this user will enter to log onto the system. If you like, you may override\n"
-"the default and change the user name. The next step is to enter a password.\n"
-"From a security point of view, a non-privileged (regular) user password is\n"
-"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
-"by making it blank or too simple: after all, your files could be the ones\n"
-"at risk.\n"
-"\n"
-"Once you click on \"%s\", you can add other users. Add a user for each one\n"
-"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
-"finished adding users.\n"
-"\n"
-"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
-"that user (bash by default).\n"
-"\n"
-"When you're finished adding users, you'll be asked to choose a user who\n"
-"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click on\n"
-"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
-msgstr ""
-"GNU/Linux е многопотребителска система, която означава, че всеки потребител "
-"може\n"
-"да има свои предпочитания, файлове и т.н.. можете да прочетете Ръководството "
-"на\n"
-"Потребителя, за да научите повече.\n"
-"За разлика от Root, който е администраторът, потребителите, които ще "
-"добавите тук\n"
-"няма да могат да променят нищо освен собствените си файлове и техните "
-"настройки.\n"
-"Ще трябва да създадете поне един обикновен потребител за себе си.\n"
-"С този акаунт ще трябва да влизате за рутинна дейност. Въпреки това "
-"практиката\n"
-"да влизате като root ежедневно, може да бъде много опасна ! И най-малката "
-"грешка\n"
-"може да означава, че системата ви няма да работи повече. Ако направите някоя "
-"сериозна\n"
-"грешка като потребител, това може са да доведе до загуба на част от "
-"информацията,\n"
-"но не и на цялата система.\n"
-"\n"
-"Първо, трябва да си въведете името. Това не е задължително, разбира се, "
-"всъщност\n"
-"можете да въведете каквото и да е. DrakX след това ще избере първата "
-"въведена\n"
-"в кутийката дума и ще го изкара като потребителско име. Това е името, с "
-"което\n"
-"всъщност определеният потребител ще влиза в системата. Можете да го "
-"промените.\n"
-"Трябва да въведете и парола тук. Паролата на непревилегирован (обикновен) "
-"потребител\n"
-"не е толкова фатална като тази на Root от гледна точка на сигурността, но "
-"все\n"
-"пак няма причина да я подценявате, тъй като рискувате файловете си.\n"
-"\n"
-"След като цъкнете на \"Приеми потребител\", можете да добавите колкото си "
-"искате.\n"
-"Добавете по един потребител за всеки от приятелите си: баща си, сестра си, "
-"например.\n"
-"Когато сте добавили всички потребители, които искате, цъкнете Готово.\n"
-"\n"
-"Цъкнете на бутона \"Напредничав\", за да промените обвивката по подразбиране "
-"на\n"
-"потребителя (bash по подразбиране)."
-
-#: help.pm:52 printer/printerdrake.pm:1866 printer/printerdrake.pm:1987
-#: standalone/draksambashare:60
-#, c-format
-msgid "User name"
-msgstr "Потребителско име"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: help.pm:52 help.pm:432 help.pm:682 install_interactive.pm:176
-#: install_steps_gtk.pm:237 install_steps_gtk.pm:682 interactive.pm:436
-#: interactive/newt.pm:321 network/thirdparty.pm:385
-#: printer/printerdrake.pm:3884 standalone/drakTermServ:412
-#: standalone/drakbackup:4102 standalone/drakbackup:4196
-#: standalone/drakbackup:4213 standalone/drakbackup:4231 ugtk2.pm:490
-#, c-format
-msgid "Next"
-msgstr "Следващ"
-
-#: help.pm:52
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Искате ли да използвате тази особеност?"
-
-#: help.pm:55
-#, fuzzy, c-format
-msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"По-горе са изброени засечените Linux дялове съществуващи\n"
-"на твърдия ви диск. Можете да запазите избора направен от магьосника, те са\n"
-"добри за обща употреба. Ако ги промените, трябва да поне да определите\n"
-"root дял (\"/\"). Не избирайте прекалено малки дялове, защото няма да "
-"можете\n"
-"да инсталирате достатъчно софтуер. Ако искате да съхранявате данните си на\n"
-"отделен дял, трябва да изберете \"/home\" (възможно е само, ако имате "
-"повече\n"
-"от един Linux дял).\n"
-"\n"
-"\n"
-"За информация, всеки дял е показан, както следва: \"Име\", \"Капацитет\".\n"
-"\n"
-"\n"
-"\"Името\" се кодира както следва: \"тип на диска\", \"номер на диска\",\n"
-"\"номер на дял\" (например, \"hda1\").\n"
-"\n"
-"\n"
-"\"Типът на диска\" може да е \"hd\", ако е IDE твърд диск, или \"sd\", ако "
-"е\n"
-"SCSI твърд диск.\n"
-"\n"
-"\n"
-"\"Номерът на диска\" винаги е буквата след \"hd\" или \"sd\". При IDE "
-"дискове:\n"
-"\n"
-" * \"a\" означава \"master диск на първия IDE контролер\",\n"
-" * \"b\" означава \"slave диск на първия IDE контролер\",\n"
-" * \"c\" означава \"master диск на втория IDE контролер\",\n"
-" * \"d\" означава \"slave диск на втория IDE контролер\".\n"
-"\n"
-"\n"
-"При SCSI устройства, \"a\" означава \"първи твърд диск\", \"b\" означава "
-"\"втори твърд диск\" и т.н.."
-
-#: help.pm:86
-#, fuzzy, c-format
-msgid ""
-"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-"Инсталацията на Mandriva Linux е разположена на няколко CDROM-а. DrakX\n"
-"знае дали избран пакет не се намира на друг CDROM,така че ще извади "
-"текущото\n"
-"CD и ще ви остави да вкарате това, от което има нужда."
-
-#: help.pm:93
-#, fuzzy, c-format
-msgid ""
-"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandriva Linux, and to make "
-"it\n"
-"simpler to manage, they have been placed into groups of similar\n"
-"applications.\n"
-"\n"
-"Mandriva Linux sorts package groups in four categories. You can mix and\n"
-"match applications from the various categories, so a ``Workstation''\n"
-"installation can still have applications from the ``Server'' category\n"
-"installed.\n"
-"\n"
-" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
-"more of the groups in the workstation category.\n"
-"\n"
-" * \"%s\": if you plan on using your machine for programming, select the\n"
-"appropriate groups from that category. The special \"LSB\" group will\n"
-"configure your system so that it complies as much as possible with the\n"
-"Linux Standard Base specifications.\n"
-"\n"
-" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
-"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
-"of the system. However, if you do not select the \"LSB\" group you will\n"
-"still have a system which is nearly 100%% LSB-compliant.\n"
-"\n"
-" * \"%s\": if your machine is intended to be a server, select which of the\n"
-"more common services you wish to install on your machine.\n"
-"\n"
-" * \"%s\": this is where you will choose your preferred graphical\n"
-"environment. At least one must be selected if you want to have a graphical\n"
-"interface available.\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group.\n"
-"\n"
-"You can check the \"%s\" box, which is useful if you're familiar with the\n"
-"packages being offered or if you want to have total control over what will\n"
-"be installed.\n"
-"\n"
-"If you start the installation in \"%s\" mode, you can deselect all groups\n"
-"and prevent the installation of any new packages. This is useful for\n"
-"repairing or updating an existing system.\n"
-"\n"
-"If you deselect all groups when performing a regular installation (as\n"
-"opposed to an upgrade), a dialog will pop up suggesting different options\n"
-"for a minimal installation:\n"
-"\n"
-" * \"%s\": install the minimum number of packages possible to have a\n"
-"working graphical desktop.\n"
-"\n"
-" * \"%s\": installs the base system plus basic utilities and their\n"
-"documentation. This installation is suitable for setting up a server.\n"
-"\n"
-" * \"%s\": will install the absolute minimum number of packages necessary\n"
-"to get a working Linux system. With this installation you will only have a\n"
-"command-line interface. The total size of this installation is about 65\n"
-"megabytes."
-msgstr ""
-"Сега е моментът да определите кои програми искате да бъдат инсталирани на\n"
-"системата ви. В Mandriva Linux дистрибуцията има хиляди пакети, но не е\n"
-"задължително да ги знаете наизуст.\n"
-"\n"
-"Ако извършвате стандартна инстлация от CDROM, първо ще бъдете попитани кои\n"
-"CD-та имате (в Експертен режим). Проверете заглавията на CD-тата и посочете\n"
-"кутийките съответстващи на CD-тата, с които разполагате. Цъкнете \"OK\",\n"
-"когато сте готови да продължите.\n"
-"\n"
-"Пакетите са подредени в групи съответстващи на практическата употреба на\n"
-"машината ви. Групите, сами по себе си, са подредени в четири секции:\n"
-"\n"
-" * \"Работна станция\": ако смятате да използвате машината си като работна "
-"станция,\n"
-"изберете една или повече съответните групи.\n"
-"\n"
-" * \"Разработка\": ако машината ви ще бъде използване за програмиране, "
-"изберете\n"
-"желаната(ите) група(и).\n"
-"\n"
-" * \"Сървър\": накрая, ако машината ви ще бъде използвана за сървър, ще\n"
-"можете да изберете кои от най-често използваните услуги искате да имате\n"
-"инсталирани на машината.\n"
-"\n"
-" * \"Графична среда\": тук можете да изберете предпочитаната графична "
-"среда.\n"
-"Поне една трябва да бъде избрана, ако искате да имате графична среда !\n"
-"\n"
-"Премествайки курсора на мишната над името на групата, ще видите кратък\n"
-"обясненителен текст за нея.\n"
-"\n"
-"Можете да цъкнете кутийката \"Индивидуален избор на пакети\", която е "
-"полезна,\n"
-"ако сте запознати с пакетите, които ще ви бъдат предложени или ако искате "
-"да\n"
-"имате пълен контрол над това, което да бъде инсталирано.\n"
-"\n"
-"Ако сте започнали инсталацията в режим на \"Обновяване\", можете да "
-"изключите\n"
-"всички групи, за да избегнете инсталирането на нови пакети. Това е полезно\n"
-"при поправка или обновяване на съществуващата система."
-
-#: help.pm:147 share/compssUsers.pl:24
+#: interactive.pm:125 interactive.pm:538 interactive/curses.pm:217
+#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
+#: interactive/stdio.pm:142 interactive/stdio.pm:143 ugtk2.pm:410 ugtk2.pm:508
+#: ugtk2.pm:788 ugtk2.pm:811
#, c-format
-msgid "Workstation"
-msgstr "Работна станция"
-
-#: help.pm:147 share/compssUsers.pl:65 share/compssUsers.pl:167
-#: share/compssUsers.pl:169
-#, c-format
-msgid "Development"
-msgstr "Разработка"
-
-#: help.pm:147 share/compssUsers.pl:145
-#, c-format
-msgid "Graphical Environment"
-msgstr "Графична среда"
-
-#: help.pm:147 install_steps_gtk.pm:235 install_steps_interactive.pm:623
-#, c-format
-msgid "Individual package selection"
-msgstr "Избиране на пакети един по един"
-
-#: help.pm:147 help.pm:589
-#, c-format
-msgid "Upgrade"
-msgstr "Обновяване"
-
-#: help.pm:147 install_steps_interactive.pm:581
-#, c-format
-msgid "With X"
-msgstr "С X"
-
-#: help.pm:147
-#, c-format
-msgid "With basic documentation"
-msgstr "С базова документация"
-
-#: help.pm:147
-#, c-format
-msgid "Truly minimal install"
-msgstr "Наистина минимална инсталация"
-
-#: help.pm:150
-#, fuzzy, c-format
-msgid ""
-"If you choose to install packages individually, the installer will present\n"
-"a tree containing all packages classified by groups and subgroups. While\n"
-"browsing the tree, you can select entire groups, subgroups, or individual\n"
-"packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description will appear on the\n"
-"right to let you know the purpose of that package.\n"
-"\n"
-"!! If a server package has been selected, either because you specifically\n"
-"chose the individual package or because it was part of a group of packages,\n"
-"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandriva Linux will automatically start any installed\n"
-"services at boot time. Even if they are safe and have no known issues at\n"
-"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandriva Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do "
-"or\n"
-"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
-"the listed services and they will be started automatically at boot time. !!\n"
-"\n"
-"The \"%s\" option is used to disable the warning dialog which appears\n"
-"whenever the installer automatically selects a package to resolve a\n"
-"dependency issue. Some packages depend on others and the installation of\n"
-"one particular package may require the installation of another package. The\n"
-"installer can determine which packages are required to satisfy a dependency\n"
-"to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-"package list created during a previous installation. This is useful if you\n"
-"have a number of machines that you wish to configure identically. Clicking\n"
-"on this icon will ask you to insert the floppy disk created at the end of\n"
-"another installation. See the second tip of the last step on how to create\n"
-"such a floppy."
-msgstr ""
-"Накрая, в зависимост от избора ви дали да избирате пакети един по един, ще\n"
-"ви бъде представено дърво съдържащо всички пакети подредени по групи и\n"
-"подргрупи. Докато обхождате дървото, можете да изберете цели групи, "
-"подгрупи\n"
-"или отделни пакети.\n"
-"\n"
-"Когато посочите пакет от дървото, ще се появи описание вдясно. Когато\n"
-"изборът е приключен, цъкнете бутона \"Инсталирай\", който ще пусне процеса\n"
-"на инсталация. В зависимост от скоростта на хардуера ви и броя на пакетите,\n"
-"които искате да бъдат инсталирани, процесът може да отнеме известно време.\n"
-"Очакваното време за приключване на процеса, че бъде показано на екрата, за\n"
-"да ви помогне да прецените дали имате достатъчно време да се насладите на\n"
-"чаша кафе.\n"
-"\n"
-"!! Ако е избран сървърен пакет, било то умишлено или защото е част от цяла\n"
-"група, ще бъдете помолени за потвърждение, че наистина искате този сървър\n"
-"да бъде инсталиран. В Mandriva Linux, всички сървъри тръгват по "
-"подразбиране\n"
-"при зареждане.Даже ако са сигурни и нямат известни проблеми, когато\n"
-"дистрибуцията се разпространява, може да се случи така, че да се появят\n"
-"дупки в сигурността, след като версията на Mandriva Linux е завършена. Ако\n"
-"не знаете за какво служи определена услуга или защо е инсталирана, цъкнете\n"
-"\"Не\". С цъкане на \"Да\" ще инсталирате изброени услуги и те ще бъдат\n"
-"стартирани автоматично по подразбиране. !!\n"
-"\n"
-"Опцията \"Автоматични зависимости\" изключва предупредителните диалози,\n"
-"когато инсталаторът авоматично реши избере пакет. Това се случва, защото\n"
-"е решил, че се нуждае да задоволи зависимост с друг пакет, за да приключи\n"
-"успешно инсталацията.\n"
-"\n"
-"Малката иконка на дискетка в дъното на списъка позволява да заредите списък\n"
-"с пакети от предишна инсталация. Ако цъкнете на тази иконка, ще бъдете\n"
-"помолени да вкарате дискета създадена преди това в края на друга "
-"инсталация.\n"
-"Вижте втората подсказка по време на последната стъпка, за това как да\n"
-"създадете такава дискета."
-
-#: help.pm:181 help.pm:286 help.pm:314 help.pm:445 install_any.pm:944
-#: interactive.pm:161 modules/interactive.pm:71 standalone/drakbackup:2636
-#: standalone/drakfont:687 standalone/draksec:54 standalone/harddrake2:331
-#: ugtk2.pm:898 wizards.pm:156
-#, c-format
-msgid "No"
-msgstr "Не"
+msgid "Ok"
+msgstr "Ok"
-#: help.pm:181 help.pm:286 help.pm:445 install_any.pm:944 interactive.pm:161
-#: modules/interactive.pm:71 printer/printerdrake.pm:883
-#: printer/printerdrake.pm:898 standalone/drakbackup:2636
-#: standalone/drakfont:685 standalone/draksec:55 standalone/harddrake2:330
-#: ugtk2.pm:898 wizards.pm:156
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Да"
-#: help.pm:181
-#, c-format
-msgid "Automatic dependencies"
-msgstr ""
-
-#: help.pm:184
-#, c-format
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to set up a new printer. The interface presented in our\n"
-"manual is similar to the one used during installation."
-msgstr ""
-
-#: help.pm:187 help.pm:567 help.pm:856 install_steps_gtk.pm:595
-#: standalone/drakbackup:2460 standalone/drakbackup:2464
-#: standalone/drakbackup:2468 standalone/drakbackup:2472
-#: standalone/drakroam:227
-#, c-format
-msgid "Configure"
-msgstr "Настрока"
-
-#: help.pm:190
-#, fuzzy, c-format
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
-"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which are not needed at boot\n"
-"time.\n"
-"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably do not want to start any services which you do not "
-"need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-"Сега можете да изберете кои услуги да се пускат при стартиране.\n"
-"\n"
-"Тук са представени всички услуги, достъпни с настоящата инсталация.\n"
-"Прегледайте ги внимателно и изключете тези, които не ви трябват винаги при "
-"стартиране.\n"
-"\n"
-"Можете да видите кратък обяснителен текст за услугата, като поставите курора "
-"на мишката си\n"
-"над името на услугата. Ако не сте сигурни, дали услугата е полезна или не, "
-"по-добре\n"
-"е да оставите избора по подразбиране.\n"
-"\n"
-"Внимавайте с тази стъпка, ако смятате да използвате машината си като "
-"сървър:\n"
-"сигурно не бихте искали да пускате услуги, от които не се нуждаете. Моля,\n"
-"запомнете, че някои услуги могат да бъдат опасни, ако са включени на "
-"сървъра.\n"
-"По принцип, избирайте само услугите, от които наистина се нуждаете.\n"
-"!!"
-
-#: help.pm:207
-#, c-format
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
-"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
-msgstr ""
-
-#: help.pm:218 install_steps_interactive.pm:859
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Хадруерният ви часовник е настроен по GMT"
-
-#: help.pm:218
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Автоматична синхронизация на времето"
-
-#: help.pm:221
-#, c-format
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-
-#: help.pm:232
-#, c-format
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-
-#: help.pm:289
-#, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
-msgstr ""
-
-#: help.pm:296
-#, c-format
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
-msgstr ""
-
-#: help.pm:304
-#, c-format
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-
-#: help.pm:309
-#, fuzzy, c-format
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"Накрая, ще бъдете попитани дали искате да виждате графичния интерфейс при\n"
-"зареждане. Отбележете, че този въпрос ще ви бъде зададен даже ако изберете,\n"
-"да не тествате настройката. Очевидно, бихте отговорили с \"Не\", ако "
-"машината\n"
-"ще работи като сървър или ако няма успешно настроен дисплей."
-
-#: help.pm:317
-#, fuzzy, c-format
-msgid ""
-"You now need to decide where you want to install the Mandriva Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandriva Linux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandriva Linux system, "
-"choose\n"
-"this option. Be careful, because you will not be able to undo this "
-"operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-"В този момент трябва изберете къде на твърдия си диска да инсталирате "
-"вашата\n"
-"Mandriva Linux операционна система. Ако твърдият ви диск е празен или друга\n"
-"операционна система използва цялото пространство, ще трябва да го "
-"разделите.\n"
-"Казано простичко, разделянето на твърдия диск се състои в логическо "
-"разделяне\n"
-"цел да се създаде място за инсталация на новата Mandriva Linux система.\n"
-"\n"
-"Тъй като процесът на разделяне обикновено е необратим, разделянето може да\n"
-"изглежда плашещ и стряскащ, ако сте неопитен потребител. Слава Богу, има\n"
-"магьосник, който опростява този процес. Преди да започнете, консултирайте "
-"се\n"
-"с ръководството и не бързайте.\n"
-"\n"
-"Ако пускате инсталацията в Експертен режим, ще бъдете въведени в DiskDrake,\n"
-"разделящия инструмент на Mandriva Linux, който ви позволява да донастроите\n"
-"дяловете си. Вижте главата DiskDrake от ръководството. От инсталационния\n"
-"интерфейс можете да използвате магьосниците, като натиснете бутона\n"
-"\"Магьосник\" на диалога.\n"
-"\n"
-"Ако дяловете са вече определени, дали от предишна инсталация или от друг\n"
-"иструмент за разделяне, просто изберете на кой да инсталирате Linux\n"
-"системата.\n"
-"\n"
-"Ако дяловете не са определени, ще трябва да създадете такива използвайки\n"
-"магьосника. В зависимост от настройката на твърдия диск, са възможни "
-"няколко\n"
-"опции:\n"
-"\n"
-" * \"%s\" тази опция просто ще доведе до автоматично поделяне на празното "
-"пространство на твърдия ви диск. Няма да бъдете питани за това.\n"
-"\n"
-" * \"%s\": магьосникът е засякъл един или повече\n"
-"съществуващи Linux дялове на твърдия ви диск. Ако искате да ги използвате,\n"
-"изберете тази опция.\n"
-"\n"
-" * \"%s\": ако имате инсталиран\n"
-"Microsoft Windows на твърдия си диск и той заема цялото достъпно\n"
-"пространство на него, трябва да освободите място за Linux данни. За да\n"
-"направитетова, можете да изтриете Microsoft Windows дяла и данните (вижте\n"
-"решенията \"Изтрий целия диск\" или \"Екпертен режим\") или да промените\n"
-"големината на Microsoft Windows дяла. Промяната на големината може да бъде\n"
-"извършена без загуба на данни. Това решение се препоръчва, ако искате\n"
-"едновременно Mandriva Linux и Microsoft Windows на един и същи компютър.\n"
-"\n"
-" Преди да изберете тази опция, моля, разберете, че след тази процедура,\n"
-"големината на Microsoft Windows дяла ще бъде по-малка, отколкото преди "
-"това.\n"
-"Ще имате по-малко място под Microsoft Windows за съхраняване на данни или "
-"за\n"
-"инсталира на нов софтуер.\n"
-"\n"
-" * \"%s\": ако искате да изтриете всички данни и дялове, които\n"
-"съществуват на вашия твърд диск и да ги замените с новата Mandriva Linux\n"
-"система, изберете тази опция. Бъдете внимателни с това решения, защото няма\n"
-"да можете да върнете обратно избора си, след като потвърдите.\n"
-"\n"
-" !! Ако изберете тази опция, всички данни на диска ви ще бъдат "
-"загубени !!\n"
-"\n"
-" * \"%s\": Това просто ще изтрие всичко на диска и ще започне на\n"
-"чисто, разделяне от раз. Всякакви данни на диска ви ще бъдат загубени.\n"
-"\n"
-" !! Ако изберете тази опция, всички данни на диска ви ще бъдат "
-"загубени !!\n"
-"\n"
-" * \"%s\": изберете тази опция, ако искате ръчно да разделите\n"
-"твърдия си диск. Бъдете внимателни - това е мощен, но опасен избор. Можете\n"
-"много лесно да загубите всички данни. Така че не избирайте това, ако не\n"
-"знаете какво правите."
-
-#: help.pm:375 install_interactive.pm:96
-#, c-format
-msgid "Use free space"
-msgstr "Използвай свободното място"
-
-#: help.pm:375
-#, c-format
-msgid "Use existing partition"
-msgstr "Изпозване на съществуващ дял"
-
-#: help.pm:375 install_interactive.pm:138
-#, c-format
-msgid "Use the free space on the Microsoft Windows® partition"
-msgstr "Използвай свободното място на Windows дяла"
-
-#: help.pm:375
-#, c-format
-msgid "Erase entire disk"
-msgstr "Изтрий целия диск"
-
-#: help.pm:375
-#, c-format
-msgid "Remove Windows"
-msgstr "Премахни Windows(TM)"
-
-#: help.pm:375 install_interactive.pm:233
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Клиентско разделяне на диска"
-
-#: help.pm:378
-#, fuzzy, c-format
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
-"to remove the installation media (CD-ROM or floppy). The first thing you\n"
-"should see after your computer has finished doing its hardware tests is the\n"
-"boot-loader menu, giving you the choice of which operating system to start.\n"
-"\n"
-"The \"%s\" button shows two more buttons to:\n"
-"\n"
-" * \"%s\": enables you to create an installation floppy disk which will\n"
-"automatically perform a whole installation without the help of an operator,\n"
-"similar to the installation you've just configured.\n"
-"\n"
-" Note that two different options are available after clicking on that\n"
-"button:\n"
-"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
-"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing on a number of similar\n"
-"machines. See the Auto install section on our web site for more\n"
-"information.\n"
-"\n"
-" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
-"To use this selection with another installation, insert the floppy and\n"
-"start the installation. At the prompt, press the [F1] key, type >>linux\n"
-"defcfg=\"floppy\"<< and press the [Enter] key.\n"
-"\n"
-"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
-"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
-"/dev/fd0\"."
-msgstr ""
-"А така ! Инсталацията е завършена и GNU/Linux системата ви е готова за\n"
-"употреба. Просто цъкнете \"OK\", за да рестартирате системата. Можете да\n"
-"стартирате GNU/Linux или Windows, което предпочитате (ако имате две "
-"системи),\n"
-"веднага след като компютърът стартира отново.\n"
-"\n"
-"Бутона \"Напредничав\" (само в \"Експертен\") показва още два бутона за:\n"
-"\n"
-" * \"генериране на дискета за автоматична инсталация\": за да създадете\n"
-"инсталационна дискета, която след това автоматично да изчършва цялата\n"
-"инсталация без помощта на оператор, приличаща на инсталацията, която току-"
-"що\n"
-"сте извършили.\n"
-"\n"
-" Отбележете, че две различни опции са достъни, чрез цъкане на бутона:\n"
-"\n"
-" * \"Преиграй\". Това е частично автоматизирана инсталация като стъпките\n"
-"по разделяне на дялове остават интерактивни.\n"
-"\n"
-" * \"Автоматична\". Напълно автоматична инсталация: твърдият диск се\n"
-"презаписва напълно, всякакви данни се загубват.\n"
-"\n"
-" Тази особеност е много удобна, когато инсталирате голям брой подобно\n"
-"машини. Вижте секцията за автоматична инсталация на нашия web-сайт.\n"
-"\n"
-" * \"Запази избора на пакети\"(*): запазва избора на пакети, така както "
-"е\n"
-"направен преди. Когато правите друга инсталация, вкарайте дискетата в\n"
-"устройството и пуснете инсталацията да върви чрез помощния екран, като\n"
-"натиснете клавиша [F1] и като напишете >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) Трябва ви FAT-форматирана дискета (за да създадете таква под GNU/Linux,\n"
-"напишете \"mformat a:\")"
-
-#: help.pm:410
-#, fuzzy, c-format
-msgid "Generate auto-install floppy"
-msgstr "Подготвя дискета за автоматична инсталация"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Replay"
-msgstr "Повтори"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Automated"
-msgstr "Автоматизиран"
-
-#: help.pm:410 install_steps_interactive.pm:1317
-#, c-format
-msgid "Save packages selection"
-msgstr "Запази избор на пакети"
-
-#: help.pm:413
-#, fuzzy, c-format
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
-"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
-"reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"will not be able to recover it.\n"
-"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
-"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandriva Linux operating system installation.\n"
-"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-"Всички новодефинирани дялове трябва да бъдат форматирани, за да се "
-"използват\n"
-"(форматиране означава създаване на файлова система).\n"
-"\n"
-"В този момента може би искате да преформатирате някои съществуващи дялове, "
-"за\n"
-"да изтриете всякакви данни, които съдържат. Ако искате да го направите, "
-"моля\n"
-"изберете тях.\n"
-"\n"
-"Моля, отбележете, че не е необходимо да преформатирате всички дялове\n"
-"съществуващи отпреди. Трябва да преформатирате дяловете съдържащи\n"
-"операционната система (като \"/\", \"/usr\" или \"/var\"), но това не е\n"
-"задължително за дялове съдържащи данни, които искате да запазите "
-"(обикновено\n"
-"\"/home\").\n"
-"\n"
-"Моля, бъдете внимателни, когато избирате дяловете. След форматиране всички\n"
-"данни на посочените дялове ще бъдат изтрити и няма да можете да ги\n"
-"възстановите.\n"
-"\n"
-"Цъкнете \"OK\", когато сте готови да форматирате далове.\n"
-"\n"
-"Цъкнете \"Отказ\", ако искате да изберете други дялове за инсталация на "
-"новата\n"
-"си Mandriva Linux операционна система.\n"
-"\n"
-"Цъкнете \"Напредничав\", ако искате да изберете дялове, които да бъдат\n"
-"проверени за лоши блокове от диска."
-
-#: help.pm:432 install_steps_gtk.pm:392 interactive.pm:437
-#: interactive/newt.pm:318 printer/printerdrake.pm:3882
-#: standalone/drakTermServ:391 standalone/drakbackup:4065
-#: standalone/drakbackup:4101 standalone/drakbackup:4212
-#: standalone/drakbackup:4227 ugtk2.pm:488
-#, c-format
-msgid "Previous"
-msgstr "Предишен"
-
-#: help.pm:435
-#, c-format
-msgid ""
-"By the time you install Mandriva Linux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-
-#: help.pm:445 help.pm:589 install_steps_gtk.pm:391
-#: install_steps_interactive.pm:132
-#, c-format
-msgid "Install"
-msgstr "Инсталирай"
-
-#: help.pm:448
-#, fuzzy, c-format
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
-"\n"
-"If you do not know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandriva Linux\n"
-"Control Center.\n"
-"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-"В този момент, трябва да изберете нивото на сигурност, което искате за\n"
-"машината. По правило, колкото повече машината ви е достъпна и колкото "
-"повече\n"
-"данни се съхраняват на нея, толкова по-високо трябва да е нивото на "
-"сигурност.\n"
-"Въпреки това, високата сигурност е за сметка на лекотата на работа.\n"
-"Обърнете се към главата MSEC на Reference Manual, за да получите повече "
-"информация\n"
-"за значението на тези нива.\n"
-"\n"
-"Ако не знаете както да изберете, изберете опцията по подразбиране."
-
-#: help.pm:459
-#, fuzzy, c-format
-msgid "Security Administrator"
-msgstr "Администратор по защита:"
-
-#: help.pm:462
-#, fuzzy, c-format
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandriva Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"%s\": this option deletes all partitions on the selected hard drive\n"
-"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
-"partitions in the free space of your hard drive\n"
-"\n"
-"\"%s\": gives access to additional features:\n"
-"\n"
-" * \"%s\": saves the partition table to a floppy. Useful for later\n"
-"partition-table recovery if necessary. It is strongly recommended that you\n"
-"perform this step.\n"
-"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
-"\n"
-" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it does not always\n"
-"work.\n"
-"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
-"\n"
-" * \"%s\": un-checking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
-"\n"
-" * \"%s\": use this option if you wish to use a wizard to partition your\n"
-"hard drive. This is recommended if you do not have a good understanding of\n"
-"partitioning.\n"
-"\n"
-" * \"%s\": use this option to cancel your changes.\n"
-"\n"
-" * \"%s\": allows additional actions on partitions (type, options, format)\n"
-"and gives more information about the hard drive.\n"
-"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"When defining the size of a partition, you can finely set the partition\n"
-"size by using the Arrow keys of your keyboard.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and the [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
-"\n"
-" * Ctrl-d to delete a partition\n"
-"\n"
-" * Ctrl-m to set the mount point\n"
-"\n"
-"To get information about the different file system types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"В този момент трябва да изберете кой дялове да бъдат използвани за "
-"инсталация\n"
-"на вашата Mandriva Linux система. Ако дяловете вече са определени, дали от\n"
-"предишна инсталация на GNU/Linux или от друг инструмент за разделяне, "
-"можете\n"
-"да използвате съществуващите далове. В противен случай трябва да определите\n"
-"дялове от твърдия диск.\n"
-"\n"
-"За да създадете дялове, трябва първо да изберете твърд диск. Можете да\n"
-"изберете диск за разделяне, като цъкнете на \"hda\" за първо IDE "
-"устройство,\n"
-"\"hdb\" за второто, \"sda\" за първо SCSI устройство и т.н..\n"
-"\n"
-"За да разделите избрания твър диск, можете да използвате следния опции:\n"
-"\n"
-" * \"Изчисти всичко\": тази опция изтрива всички дялове на избрания диск.\n"
-"\n"
-" * \"Автоматично създаване\": тази опция позволява автоматично да съзадете\n"
-"Ext2 и swap дялове в свободното пространство на твърдия ви диск.\n"
-"\n"
-" * \"Спаси таблицата с дялове\": ако таблицата с дялове е повредена, можете\n"
-"да се опитате да я възстановите с тази опция. Моля, бъдете внимателни и\n"
-"помнете, че може да не стане.\n"
-"\n"
-" * \"Върни\": използвайте тази опция, за да отмените промените.\n"
-"\n"
-" * \"Презареди\": можете да използвате тази опция, ако искате да върнете\n"
-"всички промени и да заредите първоначалната таблица с дялове.\n"
-"\n"
-" * \"Магьосник\": използвайте тази опция, ако искате да използвате "
-"магьосник,\n"
-"да раздели твърдия ви диск. Това се препоръчва, ако нямате достатъчно "
-"познания\n"
-"за разделянето.\n"
-"\n"
-" * \"Възстанови от дискета\": тази опция ще ви позволи да възстановите "
-"запазена\n"
-"преди това на дискета таблица с дялове.\n"
-"\n"
-" * \"Запази на дискета\": запазва таблицата с дялове на дискета. Полезно е "
-"при\n"
-"евентуално възстановяване на таблицата при необходимост. Силно се "
-"препоръчва\n"
-"да направите това.\n"
-"\n"
-" * \"Готово\": когато сте свършили с разделянето на твърдия си диск, това "
-"ще\n"
-"запише промените върху диска.\n"
-"\n"
-"Забележета: можете да достигнете всяка опция използвайки клавиатурата.\n"
-"Минавайте през дяловете използвайки [Tab} и стрелките нагоре/надолу.\n"
-"\n"
-"Когато е избран дял, можете да използвате:\n"
-"\n"
-" * Ctrl-c, за да създадете нов дял (ако е избран празен дял);\n"
-"\n"
-" * Ctrl-d, за да изтриете дял;\n"
-"\n"
-" * Ctrl-m, за да установите точка на монтиране.\n"
-"\n"
-"Ако инсталите на PPC машина, сигурно ще искате да създадете малък HFS\n"
-"\"bootstrap\" дял от поне 1 МБ, който ще бъде използват от boot loader-ът\n"
-"yaboot. Ако смятате да направите дяла по-голям, например 50 МБ, можете да "
-"го\n"
-"намерите за полезно място, където да съхранявате някое ядро или image на\n"
-"ramdisk в случай на извънредни ситуации."
-
-#: help.pm:531
-#, fuzzy, c-format
-msgid "Removable media auto-mounting"
-msgstr "Автоматично монтиране на сменяем носител"
-
-#: help.pm:531
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Премини в нормален/експертен режим"
-
-#: help.pm:534
-#, fuzzy, c-format
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandriva Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Беше засечен повече от един Microsoft Windows дял\n"
-"на твърдия ви диска. Изберете този, чиято дължина искате да промените, за "
-"да\n"
-"инсталирате Mandriva Linux операционна система.\n"
-"\n"
-"\n"
-"За информация, всеки дял е изброен както следва: \"Linux име\", \"Windows име"
-"\", \"Капацитет\".\n"
-"\n"
-"\"Linux името\" се кодира както следва: \"тип на диска\", \"номер на диска"
-"\",\n"
-"\"номер на дял\" (например, \"hda1\").\n"
-"\n"
-"\n"
-"\"Типът на диска\" може да е \"hd\", ако е IDE твърд диск, или \"sd\", ако "
-"е\n"
-"SCSI твърд диск.\n"
-"\n"
-"\n"
-"\"Номерът на диска\" винаги е буквата след \"hd\" или \"sd\". При IDE "
-"дискове:\n"
-"\n"
-" * \"a\" означава \"master диск на първия IDE контролер\",\n"
-" * \"b\" означава \"slave диск на първия IDE контролер\",\n"
-" * \"c\" означава \"master диск на втория IDE контролер\",\n"
-" * \"d\" означава \"slave диск на втория IDE контролер\".\n"
-"\n"
-"\n"
-"При SCSI устройства, \"a\" означава \"първи твърд диск\", \"b\" означава "
-"\"втори твърд диск\" и т.н..\n"
-"\n"
-"\"Windows името\" е буквата на твърдия ви диск под Windows (първият диск "
-"или\n"
-"дял се нарича \"C:\")."
-
-#: help.pm:565
-#, c-format
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country is not in "
-"the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-
-#: help.pm:570
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandriva Linux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandriva Linux system. Your current "
-"partitioning\n"
-"scheme and user data will not be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandriva Linux version \"8.1\" is not recommended."
-msgstr ""
-
-#: help.pm:592
-#, fuzzy, c-format
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
-"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard do not match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
-"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
-"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-"Обикновено, DrakX би трябвало да избере правилната за вас клавиатура (в "
-"зависимост\n"
-"от езика, който сте избрали) и няма да се наложи да видите тази стъпка. "
-"Обаче може да\n"
-"нямате клавиатура съответстваща точно на вашия език: например, ако сте "
-"англоговорящ швед,\n"
-"може би ще искате клавиатурата ви да бъде шведска. Или ако говорите "
-"английски, но сте\n"
-"в Квебек, може би ще сте в същата ситуация. И в двата случая, ще трябва да "
-"се върнете\n"
-"към тази инсталационна стъпка и да изберете правилната клавиатура от "
-"списъка.\n"
-"\n"
-"Всичко, което трябва да направите, е да посочите предпочитаната клавиатурна "
-"наредба\n"
-"от списъка, който ще се появи пред вас.\n"
-"\n"
-"Ако имате клавиатура от език различен от този използван по подразбиране, "
-"цъкнете\n"
-"на бутона \"Напредничав\". Ще ви бъде предоставен пълен списък с "
-"поддържаните клавиатури."
-
-#: help.pm:610
-#, fuzzy, c-format
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandriva Linux's use of UTF-8 "
-"will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-"Моля, цъкнете на предпочитания език на инсталация и системна употреба.\n"
-"\n"
-"Цъкането на бутона \"Напредничав\" ще ви позволи да изберете други езици\n"
-"да бъдат инсталирани на работната ви станция. Избирането на други езици\n"
-"ще инсталира файлове специвични за езиците за системна документация и\n"
-"приложения. Например, ако имате потребители от Изпания на машината си,\n"
-"изберете английски като главен език в дървовидната форма и в секция\n"
-"\"Напредничав\" цъкнете на сивата звезда съответстваща на\n"
-"\"Испански|Испания\".\n"
-"Отбележете, че могат да бъдат инсталирани няколко езика. Веднъж избран\n"
-"някакъв локал, цъкнете бутона \"OK\", за да продължите."
-
-#: help.pm:648
-#, c-format
-msgid "Espanol"
-msgstr ""
-
-#: help.pm:651
-#, fuzzy, c-format
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
-"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-"По подразбиране, DrakX предполага че имате двубутонна мишка и ще включи\n"
-"симулиране на три бутона. DrakX автоматично разбира дали е PS/2, серийна "
-"или\n"
-"USB мишка.\n"
-"\n"
-"Ако искате да определите друг тип на мишката, изберете подходящ от списъка,\n"
-"който ще ви бъде представен.\n"
-"\n"
-"Ако изберете мишка различна от тази по подразбиране, ще ви бъде предоставен\n"
-"екран за проба. Използвайте бутоните и колелцето, за да проверите, че\n"
-"настройката е дора. Ако мишката не работи, както трябва, натиснете интервал\n"
-"или СЕ ВЪРНЕТЕ към \"Отказ\" и изберете пак."
-
-#: help.pm:682
-#, fuzzy, c-format
-msgid "with Wheel emulation"
-msgstr "3 бутона с емулация на колелце"
-
-#: help.pm:682
-#, c-format
-msgid "Universal | Any PS/2 & USB mice"
-msgstr ""
-
-#: help.pm:685
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Моля, изберете верния порт. Например, портът COM1 под Windows под GNU/Linux\n"
-"се нарича ttyS0."
-
-#: help.pm:689
-#, c-format
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: do not make the password too long or too complicated because "
-"you\n"
-"must be able to remember it!\n"
-"\n"
-"The password will not be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you do not know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-
-#: help.pm:723
-#, c-format
-msgid "authentication"
-msgstr "идентификация"
-
-#: help.pm:726
-#, c-format
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can not determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" will not install any boot loader. Use this option only if "
-"you\n"
-"know what you're doing."
-msgstr ""
-
-#: help.pm:743
-#, fuzzy, c-format
-msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you do not like your printing\n"
-"system you may change it by running PrinterDrake from the Mandriva Linux\n"
-"Control Center and clicking on the \"%s\" button."
-msgstr ""
-"Дойде времето да изберете система за печат за вашия компютър.Другите\n"
-"операционни системи може да ви предлагат една,но ние ви предлагаме две.\n"
-"Всяка от тях е пригодена за даден тип конфигурация.\n"
-"\n"
-" * \"%s\"-- е акроним на \"print,do not queue\"(\"пачатай,не чакай\"),е "
-"идеалният\n"
-"избор,ако имате директна връзка с принтера,искате да го контролирате,или\n"
-"нямате мрежови принтери.(\"%s\" може да работи само в много прости\n"
-"ситуации и е някак бавен,когато се ползва в мрежа.) Препоръчително е да \n"
-"изполвате \"pdq\" ако нямате опит с GNU/Linux. \n"
-" * \"%s\" - `` Common Unix Printing System``(обичайна система за печат за "
-"Unix)\n"
-"е отличен избор,за печат както на собствения ви принтер,така и на друг,на\n"
-"половин свят разстояние.Тя е лесна за конфигуриране и може работи като\n"
-"клиент или сървър на архаичната\"lpd \",което я прави напълно съвместима\n"
-"с по-стари операционни системи,които може все още да се нуждаят от тази\n"
-"услуга.Въпреки че е доста мощна,основната инсталация е почти толкова \n"
-"лесна,колкото и тази на \"pdq\".Ако искате да емулирате \"lpd\" сървър,\n"
-"уверете се,че \"cups-lpd\" демона е пуснат.\"%s\" включва графични \n"
-"интерфейси за пречат и избор на опции за принтера,както и за\n"
-"конфигурирането му.\n"
-"\n"
-"Ако сега направите избор,а по-късно разберете,че не харесвате системата\n"
-"си за печат,можете да я смените като пуснете PrinterDrake от Мандрива "
-"линукс \n"
-"контролия център и цъкнете на \"експерт\"."
-
-#: help.pm:766
-#, c-format
-msgid "pdq"
-msgstr ""
-
-#: help.pm:766 printer/cups.pm:117 printer/data.pm:129
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
-
-#: help.pm:766
-#, c-format
-msgid "Expert"
-msgstr "Трудно"
-
-#: help.pm:769
-#, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-
-#: help.pm:787
-#, fuzzy, c-format
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-"\"%s\"ако намеря звукова карта,ще видите съобщение за това.\n"
-"Ако забележите,че намерената звукова карта не отговаря на истината,\n"
-"можете да цъкнете на бутона и да изберете друг драйвер."
-
-#: help.pm:789 help.pm:856 install_steps_interactive.pm:991
-#: install_steps_interactive.pm:1008
-#, c-format
-msgid "Sound card"
-msgstr "Звукова карта"
-
-#: help.pm:792
-#, c-format
-msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"is not in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it is not\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandriva Linux Control Center after the installation has finished to "
-"benefit\n"
-"from full in-line help.\n"
-"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandriva Linux Control Center.\n"
-"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-
-#: help.pm:856 install_steps_interactive.pm:855
-#: install_steps_interactive.pm:950 standalone/drakclock:100
-#: standalone/finish-install:56 standalone/finish-install:57
-#, c-format
-msgid "Timezone"
-msgstr "Часова зона"
-
-#: help.pm:856 install_steps_interactive.pm:1024
-#, c-format
-msgid "TV card"
-msgstr "TV карта"
-
-#: help.pm:856
-#, c-format
-msgid "ISDN card"
-msgstr "ISDN карта"
-
-#: help.pm:856
-#, c-format
-msgid "Graphical Interface"
-msgstr "Графичен интерфейс"
-
-#: help.pm:856 install_any.pm:1733 install_steps_interactive.pm:1042
-#: standalone/drakbackup:2051
-#, c-format
-msgid "Network"
-msgstr "Мрежа"
-
-#: help.pm:856 install_steps_interactive.pm:1054
-#, fuzzy, c-format
-msgid "Proxies"
-msgstr "Профил "
-
-#: help.pm:856 install_steps_interactive.pm:1065
-#, c-format
-msgid "Security Level"
-msgstr "Ниво на защита"
-
-#: help.pm:856 install_steps_interactive.pm:1079 network/drakfirewall.pm:189
-#, c-format
-msgid "Firewall"
-msgstr "Защитна стена"
-
-#: help.pm:856 install_steps_interactive.pm:1095
-#, c-format
-msgid "Bootloader"
-msgstr "Bootloader"
-
-#: help.pm:856 install_steps_interactive.pm:1108 services.pm:114
-#: services.pm:157 services.pm:193
-#, c-format
-msgid "Services"
-msgstr "Услуги"
-
-#: help.pm:859
-#, fuzzy, c-format
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Изберете твърдия диск, който искате да изтриете, за да\n"
-"инсталирам новия ви Mandriva Linux дял. Внимание, всички данни на него ще "
-"бъдат загубени\n"
-"и няма да могат да се възстановят."
-
-#: help.pm:864
-#, fuzzy, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-"Цъкнете на \"%s\", ако искате да изтриете всички данни и\n"
-"дялове съществуващи на този твърд диск. Внимание, след цъкане на \"%s\", "
-"няма да можете да възстановите каквито и да било данни и дялове съществуващи "
-"на този твърд диск,\n"
-"включително каквито и да е Windows данни.\n"
-"\n"
-"Цъкнете \"%s\", за да отмените тази операция без загуба да данните и\n"
-"дяловете съществуващи на този твърд диск."
-
-#: help.pm:870
-#, c-format
-msgid "Next ->"
-msgstr "Следващ ->"
-
-#: help.pm:870
-#, c-format
-msgid "<- Previous"
-msgstr "<- Предишен"
-
-#: install2.pm:115
-#, c-format
-msgid ""
-"Can not access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"Нямам достъп да модулите на ядрото съответстващи на вашият (файл %s липсва), "
-"това означава, че вашето флопи не е синхронизирано с инсталационният носител "
-"(моля направете ново boot флопи)"
-
-#: install2.pm:167
-#, c-format
-msgid "You must also format %s"
-msgstr "Вие трябва също да форматирате %s"
-
-#: install_any.pm:406
-#, fuzzy, c-format
-msgid "Do you have further supplementary media?"
-msgstr "Имате ли друг(и) ?"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:409
-#, c-format
-msgid ""
-"The following media have been found and will be used during install: %s.\n"
-"\n"
-"\n"
-"Do you have a supplementary installation medium to configure?"
-msgstr ""
-
-#: install_any.pm:422 printer/printerdrake.pm:3211
-#: printer/printerdrake.pm:3218 standalone/scannerdrake:182
-#: standalone/scannerdrake:190 standalone/scannerdrake:241
-#: standalone/scannerdrake:248
-#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: install_any.pm:422
-#, fuzzy, c-format
-msgid "Network (HTTP)"
-msgstr "Мрежа %s"
-
-#: install_any.pm:422
-#, fuzzy, c-format
-msgid "Network (FTP)"
-msgstr "Мрежа %s"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (NFS)"
-msgstr ""
-
-#: install_any.pm:452
-#, c-format
-msgid "Insert the CD 1 again"
-msgstr ""
-
-#: install_any.pm:478 network/netconnect.pm:866 standalone/drakbackup:114
-#, c-format
-msgid "No device found"
-msgstr "Не беше открито устройство"
-
-#: install_any.pm:483
-#, c-format
-msgid "Insert the CD"
-msgstr ""
-
-#: install_any.pm:488
-#, fuzzy, c-format
-msgid "Unable to mount CD-ROM"
-msgstr "Не мога да направя 'fork': %s"
-
-#: install_any.pm:521 install_any.pm:542
-#, c-format
-msgid "URL of the mirror?"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "NFS setup"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "Please enter the hostname and directory of your NFS media"
-msgstr ""
-
-#: install_any.pm:527
-#, c-format
-msgid "Hostname of the NFS mount ?"
-msgstr ""
-
-#: install_any.pm:527 standalone/draknfs:288
-#, c-format
-msgid "Directory"
-msgstr "Директория"
-
-#: install_any.pm:580
-#, fuzzy, c-format
-msgid ""
-"Can't find a package list file on this mirror. Make sure the location is "
-"correct."
-msgstr "Не мога да намеря %s на %s"
-
-#: install_any.pm:657
-#, c-format
-msgid "Removing packages prior to upgrade..."
-msgstr ""
-
-#: install_any.pm:699
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Търси във вече инсталираните пакети..."
-
-#: install_any.pm:703
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Търся пакети за обновяване"
-
-#: install_any.pm:781
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done."
-msgstr ""
-"Сменете CD-ROM !\n"
-"Моля, сложете CD-ROM озаглавен \"%s\" в устройството и натиснете Ok, когато "
-"сте готови."
-
-#: install_any.pm:793
-#, fuzzy, c-format
-msgid "Copying in progress"
-msgstr "Откриване в прогрес"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:935
-#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They do not have any known security\n"
-"issues, but some new ones could be found. In that case, you must make sure\n"
-"to upgrade as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"Избрали сте следния(те) сървър(и): %s\n"
-"\n"
-"\n"
-"Тези сървъри се активират по подразбиране. Те нямат известни проблеми със\n"
-"сигурността, но може да се намерят нови. В този случай, ще трябва да сте\n"
-"сигурни, че ще надграждате възможно най-бързо.\n"
-"\n"
-"\n"
-"Наистина ли искате да инсталирате тези сървъри ?\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:958
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-"Следните пакети ще бъдат изтрити за да се позволи обновяване на системата: %"
-"s\n"
-"\n"
-"\n"
-"Действително ли искате да изтриете тези пакети?\n"
-
-#: install_any.pm:1394 partition_table.pm:597
-#, c-format
-msgid "Error reading file %s"
-msgstr "Грешка при четенето на файла %s"
-
-#: install_any.pm:1628
-#, fuzzy, c-format
-msgid "The following disk(s) were renamed:"
-msgstr "Следните пакети ще трябва да се инсталират:\n"
-
-#: install_any.pm:1630
-#, c-format
-msgid "%s (previously named as %s)"
-msgstr ""
-
-#: install_any.pm:1670
-#, 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 ""
-"Появи се грешка - не са открити валидни устройства, върху които да бъдат "
-"създадени нови файлови системи. Моля проверете твърдия си диск си за "
-"причината за този проблем"
-
-#: install_any.pm:1714
-#, c-format
-msgid "HTTP"
-msgstr "HTTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "FTP"
-msgstr "FTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "NFS"
-msgstr "NFS"
-
-#: install_any.pm:1737
-#, fuzzy, c-format
-msgid "Please choose a media"
-msgstr "Моля изберете"
-
-#: install_any.pm:1753
-#, fuzzy, c-format
-msgid "File already exists. Overwrite it?"
-msgstr "Файлът съществува. Да бъде ли презаписан?"
-
-#: install_any.pm:1757
-#, c-format
-msgid "Permission denied"
-msgstr "Лисват права"
-
-#: install_any.pm:1806
-#, c-format
-msgid "Bad NFS name"
-msgstr ""
-
-#: install_any.pm:1827
-#, fuzzy, c-format
-msgid "Bad media %s"
-msgstr "добавен източник %s"
-
-#: install_any.pm:1877
-#, c-format
-msgid "Can not make screenshots before partitioning"
-msgstr "Не мога да направя моментна \"снимка\" преди разделянето на диска "
-
-#: install_any.pm:1884
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Снимки ще бъдат налични след инсталиране в %s"
-
-#: install_gtk.pm:136
-#, c-format
-msgid "System installation"
-msgstr "Инсталация на система"
-
-#: install_gtk.pm:139
-#, c-format
-msgid "System configuration"
-msgstr "Конфигурация на система"
-
-#: install_interactive.pm:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Част от хардуера на компютъра ви се нуждае от ``собствените си'' драйвери, "
-"за да работи.\n"
-"Можете да намерите повече информация за това на: %s"
-
-#: install_interactive.pm:63
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Трябва да имате root-дял.\n"
-"Затова създайте дял (или цъкнете на съществуващ).\n"
-"Тогава изберете действие ``Място на монтиране'' и го сложете `/'"
-
-#: install_interactive.pm:68
-#, c-format
-msgid ""
-"You do not have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Нямате swap-дял\n"
-"\n"
-"Да продължа ли все пак ?"
-
-#: install_interactive.pm:71 install_steps.pm:215
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Трябва да имате FAT дял монтиран в /boot/efi"
-
-#: install_interactive.pm:98
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Няма достатъчно място за създаване на нов дял"
-
-#: install_interactive.pm:106
-#, c-format
-msgid "Use existing partitions"
-msgstr "Изпозване на съществуващ дял"
-
-#: install_interactive.pm:108
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "Няма дял, който мога да използвам"
-
-#: install_interactive.pm:115
-#, c-format
-msgid "Use the Microsoft Windows® partition for loopback"
-msgstr "Използвай за Microsoft Windows® дялът за loopback"
-
-#: install_interactive.pm:118
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Кой дял искате да използвате за Linux4Win ?"
-
-#: install_interactive.pm:120
-#, c-format
-msgid "Choose the sizes"
-msgstr "Изберете големините"
-
-#: install_interactive.pm:121
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Големина на root-дяла в MB: "
-
-#: install_interactive.pm:122
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Големина на swap-дяла в MB: "
-
-#: install_interactive.pm:131
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"Няма FAT дялове за използване като loopback (или няма достатъчно място на "
-"диска)"
-
-#: install_interactive.pm:140
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Кой дял желаете да промените?"
-
-#: install_interactive.pm:154
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occurred: %s"
-msgstr ""
-"Не възможност за работа с вашия FAT дял, \n"
-"поради получената грешка: %s"
-
-#: install_interactive.pm:157
-#, c-format
-msgid "Computing the size of the Microsoft Windows® partition"
-msgstr "Изчислява свободното място на Microsoft Windows® дял"
-
-#: install_interactive.pm:164
-#, c-format
-msgid ""
-"Your Microsoft Windows® partition is too fragmented. Please reboot your "
-"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
-"the Mandriva Linux installation."
-msgstr ""
-"Вашият Microsoft Windows® дял е много фрагментиран, моля първо стартирайте "
-"''defrag''"
-
-#: install_interactive.pm:167
-#, c-format
-msgid ""
-"WARNING!\n"
-"\n"
-"\n"
-"Your Microsoft Windows® partition will be now resized.\n"
-"\n"
-"\n"
-"Be careful: this operation is dangerous. If you have not already done so, "
-"you first need to exit the installation, run \"chkdsk c:\" from a Command "
-"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
-"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
-"optionally run defrag, then restart the installation. You should also backup "
-"your data.\n"
-"\n"
-"\n"
-"When sure, press %s."
-msgstr ""
-"ВНИМАНИЕ!\n"
-"\n"
-" DrakX трябва да прераздели Вашия Windows дял.\n"
-"\n"
-"\n"
-"Бъдете внимателни: тази операция е опасна. Ако още не сте го направили, "
-"трябва първо да пуснете scandisk (и евентуално да използвате defrag) под "
-"Windows върху този дял, тогава повторете инсталациаята. Би било добре да "
-"направите архив на данните си.\n"
-"\n"
-"\n"
-"Когато сте сигурни, натиснете %s."
-
-#: install_interactive.pm:179
-#, c-format
-msgid "Which size do you want to keep for Microsoft Windows® on"
-msgstr "Колко искате да оставите за windows?"
-
-#: install_interactive.pm:180
-#, c-format
-msgid "partition %s"
-msgstr "дял %s"
-
-#: install_interactive.pm:189
-#, c-format
-msgid "Resizing Microsoft Windows® partition"
-msgstr "Изчислявам границите на Microsoft Windows® файловата система"
-
-#: install_interactive.pm:194
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Неуспешно преразделяне на FAT: %s"
-
-#: install_interactive.pm:209
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr "Няма FAT дялове за смяна на големината (или няма достаъчно място)"
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Remove Microsoft Windows®"
-msgstr "Премахни Microsoft Windows®"
-
-#: install_interactive.pm:214
-#, fuzzy, c-format
-msgid "Erase and use entire disk"
-msgstr "Изтрий целия диск"
-
-#: install_interactive.pm:216
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "имате повече от един твърди дискове, кой да използвам за инсталацията?"
-
-#: install_interactive.pm:222
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "ВСИЧКИ съществуващи дялове и данните върху тях на %s ще бъдат загубени"
-
-#: install_interactive.pm:237
-#, c-format
-msgid "Use fdisk"
-msgstr "Използвай fdisk"
-
-#: install_interactive.pm:240
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, do not forget to save using `w'"
-msgstr ""
-"Сега можете да разделите %s.\n"
-"Когато сте готови, не забравяйте да запишете използвайки `w'"
-
-#: install_interactive.pm:276
-#, c-format
-msgid "I can not find any room for installing"
-msgstr "Не мога да намеря никакво място за инсталация"
-
-#: install_interactive.pm:280
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Помощникът за разделине на дялове на DrakX намери следните решения:"
-
-#: install_interactive.pm:288
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Неуспешно разделяне на: %s"
-
-#: install_interactive.pm:295
-#, c-format
-msgid "Bringing up the network"
-msgstr "Включвам мрежата"
-
-#: install_interactive.pm:300
-#, c-format
-msgid "Bringing down the network"
-msgstr "Изключване на мрежата"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:10
-#, fuzzy, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandriva "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandriva Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. This document is a license agreement "
-"between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you "
-"explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this "
-"License. \n"
-"If you disagree with any portion of the License, you are not allowed to "
-"install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner "
-"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate "
-"your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all "
-"copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Limited Warranty\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
-"be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without "
-"limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties "
-"resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or "
-"inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or "
-"occurrence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
-"COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
-"no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever "
-"(including without \n"
-"limitation damages for loss of business, interruption of business, financial "
-"loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential "
-"loss) arising out \n"
-"of the possession and use of software components or arising out of "
-"downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some "
-"countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong "
-"cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. The GPL License and Related Licenses\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. "
-"Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the "
-"documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. Intellectual Property Rights\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
-"as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
-"Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Governing Laws \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-msgstr ""
-"Въведение\n"
-"\n"
-"Операционната система и различните компоненти достъпни в Mandriva Linux "
-"дистрибуцията по-долу ще се\n"
-"наричат \"Софтуерен Продукти\". Софтуерните Продукти включват, но не се "
-"ограничават само до, набора\n"
-"програми, методи, правила и документация отнасяща се до операционната "
-"система и различните\n"
-"компоненти на Mandriva Linux дистрибуцията.\n"
-"\n"
-"\n"
-"1. Лицензионен договор\n"
-"\n"
-"Моля, прочетете внимателно този документ. Този документ е лицензионен "
-"договор между вас и\n"
-"Mandriva S.A., който се отнася до Софтуерния Продукт. Чрез инсталирането, "
-"копирането\n"
-"или използването на Софтуерния Продукт по какъвто и да е начин вие изрично "
-"приемате и\n"
-"напълно се съгласявате да спазвате сроковете и условията на този Лиценз.\n"
-"Ако не се съгласявате с някоя част на Лиценза, нямате право да инсталирате, "
-"копирате или\n"
-"използвате Софтуерния Продукт. Опитите да се инсталира, копира или използва "
-"Софтуерния Продукт\n"
-"несъобразно със сроковете и условията на този Лиценз се забраняват и такива "
-"прекратяват правата\n"
-"ви по този Лиценз. При прекратяване на Лиценза, трябва незабавно да "
-"унижтожите всички\n"
-"копия на Софтуерния лиценз.\n"
-"\n"
-"\n"
-"2. Ограничена гаранция\n"
-"\n"
-"Софтуерните Продукти и приложената документация се предоставят \"такива "
-"каквито са\", без гаранция,\n"
-"в рамките на разрешеното от закона.\n"
-"Mandriva S.A., при никакви обстоятелства и в рамките на закона, не е "
-"отговорна за каквито да e\n"
-"умишлени, случайни, преки или косвени щети (включително загуба на данни за "
-"работа, прекратяване на,\n"
-"работа, финансови загуби, законни данъци и наказания в резултат на съдебно "
-"решение или каквато и да е\n"
-"друга произлизащи от това загуби) произтичащи от употребата или от "
-"невъзможността да се употреби\n"
-"Софтуерния Продукт, даже ако Mandriva S.A. да е известила за възможността "
-"или случването на такава загуба.\n"
-"\n"
-"ОГРАНИЧЕНА ОТГОВОРНОСТ СВЪРЗАНА С ПРИТЕЖАВАНЕТО ИЛИ ИЗПОЛЗВАНЕТО НА ЗАБРАНЕН "
-"СОФТУЕР В НЯКОИ СТРАНИ\n"
-"\n"
-"В рамките на закона, Mandriva S.A. и нейните дистрибутори няма при никакви "
-"условия да бъдат\n"
-"отговорни за каквито и да било умишлени, случайни, преки или косвени щети "
-"(включително загуба на данни\n"
-"за работа, прекратяване на, работа, финансови загуби, законни данъци и "
-"наказания в резултат на\n"
-"съдебно решение или каквато и да е друга произлизащи от това загуби) "
-"произтичащи от притежаването\n"
-"и употребата на софтуерни компоненти и от изтеглянето на софтуерни "
-"компоненти от сайтовете на Mandriva Linux,\n"
-"които са забранени в някои страни от местното законодателство.\n"
-"Тази ограничена отговорност се отнася до, но не само за, мощните "
-"криптографски компоненти включени\n"
-"в Софтуерния Продукт.\n"
-"\n"
-"\n"
-"3. GPL Лиценза и придружаващи лицензи\n"
-"\n"
-"Софтуерният Продукт се състои от компоненти създадени от различни хора или "
-"организации. Повечето от\n"
-"тези компоненти се управляват от сроковете и условията на GNU Общия Публичен "
-"Лиценз, оттук нататък наричан\n"
-"\"GPL\", или подобни нему лицензи. Повечето от тези лицензи ви позволяват да "
-"използвате, копирате, или\n"
-"редистрибутирате компонентите, които те покриват. Моля, прочетете внимателно "
-"сроковете и условията на\n"
-"лицензионния договор на всеки компонент преди да го използвате. Всякакви "
-"въпроси относно лиценза\n"
-"на компонентите би трябвало да бъдат насочени към съответния им автор, а не "
-"към Mandriva.\n"
-"Програмите разработени от Mandriva S.A. се управляват от GPL Лиценза. "
-"Документацията написана\n"
-"от Mandriva S.A. се управлява от специален лиценз. Моля, погледнете "
-"документацията за\n"
-"повече информация.\n"
-"\n"
-"\n"
-"4. Права за Интелектуална Собственост\n"
-"\n"
-"Всички права към компонентите на Софтуерния Продукт принадлежат на "
-"съответните им автори и са\n"
-"защитени от законите за интелектуалната собственост и за копиране прилагани "
-"за софтуерните програми.\n"
-"Mandriva S.A. запазва правото си да модифицира и пригодява Софтуерния "
-"Продукт, като цяло или на\n"
-"части, по всякакъв начин и с всякакви цели.\n"
-"\"Mandriva\", \"Mandriva Linux\" и свързаните логота са запазена марка на "
-"Mandriva S.A.\n"
-"\n"
-"\n"
-"5. Управляващи Закони\n"
-"\n"
-"Ако някоя част от този договор се води забранена, нелегална или неприложима "
-"според решение на съд,\n"
-"тази част се изключва от договора. Вие оставате ограничени от останалите "
-"приложими секции на договора.\n"
-"Сроковете и условията на този Лиценз се управляват от Законите на Франция.\n"
-"Всички спорове по условията на този лиценз би било добре да се отнесат до "
-"съда. Като крайна мярка,\n"
-"споровете ще бъдат отнасяни до подходящия правни съдилища на Париж - "
-"Франция.\n"
-"За всякакви въпроси по този документ, моля, свържете се с Mandriva S.A.\n"
-"\n"
-"ЗАБЕЛЕЖКА: Това е български приблизителен превод на документа, което "
-"означава, че той\n"
-"вероятно не е достатъчно точен. Като по-достоверен източник ползвайте "
-"неговия оригинал на\n"
-"английски.\n"
-
-#: install_messages.pm:90
-#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:98
-#, c-format
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Внимание\n"
-"\n"
-"Моля, прочетете условията по-долу. Ако не сте съгласни с някое от тях,\n"
-"не можете да продължите инсталацията на следващия CD носител. Натиснете\n"
-"'Откажи', за да продължите инсталацията без тези носители.\n"
-"\n"
-"\n"
-"Някои компоненти съдържащи се в следващия CD носител не са разпространяват\n"
-"под GPL Лиценза или подобен такъв. Всеки такъв компонент е под условията\n"
-"и положенията на специфичния му лиценз. Моля, прочетете внимателно и изцяло\n"
-"тези специфични лицензи преди да използвате или разпространявате "
-"споменатите\n"
-"компоненти.\n"
-"Такива лицензи по принцип предотвратява преноса, копирането (освен с цел\n"
-"съхранение), разпространяването, обратния инженеринг, деасемблирането\n"
-"декомпилацията или модификацията на компонентите.\n"
-"Всяко нарушаване на спогодбата незабавно преустановява правата ви по\n"
-"специфичния лиценз. Освен ако специфичния лиценз ви дава такива права,\n"
-"обикновено не можете да инсталирате програмите на повече от една система\n"
-"или да ги пригаждате за използване в мрежа. Ако не сте сигурни, моля\n"
-"свържете се с дистрибуция или редактора на компонена.\n"
-"Прехвърлянето на трети лица или копирането на всяка компонента, включително\n"
-"на документацията, обикновено са забранени.\n"
-"\n"
-"\n"
-"Всички права на компонентите от следващия CD носител принадлежат на\n"
-"съответните им автори и са защитени като интелектуална собственост от\n"
-"законите за авторски права приложими за софтуерните програми.\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:131
-#, fuzzy, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press Enter to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandriva "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandriva Linux User's Guide."
-msgstr ""
-"Поздравления, инсталацията е преключена.\n"
-"Премахнете стартовото устройство и натисене Enter за да рестартирайте.\n"
-"\n"
-"\n"
-"За информация относно поправки, на тази версия на Mandriva Linux,\n"
-"се консултирайте с Errata, на адрес : \n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Информация за настройване на системата ви можете да намерите в\n"
-"слединсталационната глава от Official Mandriva Linux User's Guide."
-
-#: install_steps.pm:250
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Дублирай точката на монтиране %s"
-
-#: install_steps.pm:482
-#, c-format
-msgid ""
-"Some important packages did not get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
-"\"\n"
-msgstr ""
-"Някои важни пакети не се инсталираха както трябва.\n"
-"Или CDROM устройството ви или компакт диска ви е дефектен.\n"
-"Проверете компакт диска на инсталирания компютър използвайки \"rpm -qpl "
-"media/main/*.rpm\"\n"
-
-#: install_steps_auto_install.pm:68 install_steps_stdio.pm:27
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Навлизам в етап `%s'\n"
-
-#: install_steps_gtk.pm:181
-#, c-format
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandriva Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Вашата система е с малки ресурси. Може да имате проблеми с инсталирането\n"
-"на Mandriva Linux. Ако се появи проблем опитайте с текстовата инсалация. "
-"Зацелта,\n"
-"натиснете 'F1', когато стартирате от CDROM и въведете 'теьт'."
-
-#: install_steps_gtk.pm:211 install_steps_interactive.pm:605
-#, c-format
-msgid "Package Group Selection"
-msgstr "Избор на група пакети"
-
-#: install_steps_gtk.pm:254 install_steps_interactive.pm:548
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Обща големина: %d / %d MB"
-
-#: install_steps_gtk.pm:299
-#, c-format
-msgid "Bad package"
-msgstr "Лош пакет"
-
-#: install_steps_gtk.pm:301
-#, c-format
-msgid "Version: "
-msgstr "Версия: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "Size: "
-msgstr "Размер: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "%d KB\n"
-msgstr "%d КБ\n"
-
-#: install_steps_gtk.pm:303
-#, c-format
-msgid "Importance: "
-msgstr "Важност:"
-
-#: install_steps_gtk.pm:336
-#, c-format
-msgid "You can not select/unselect this package"
-msgstr "Не можете да отбележете/деотбележете този пакет"
-
-#: install_steps_gtk.pm:340 network/thirdparty.pm:331
-#, fuzzy, c-format
-msgid "due to missing %s"
-msgstr "липсва kdesu"
-
-#: install_steps_gtk.pm:341
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "поради неопределен %s"
-
-#: install_steps_gtk.pm:342
-#, c-format
-msgid "trying to promote %s"
-msgstr ""
-
-#: install_steps_gtk.pm:343
-#, c-format
-msgid "in order to keep %s"
-msgstr ""
-
-#: install_steps_gtk.pm:348
-#, c-format
-msgid ""
-"You can not select this package as there is not enough space left to install "
-"it"
-msgstr ""
-"Не можете да оставите пакета немаркиран, защото нямате място да го "
-"инсталирате"
-
-#: install_steps_gtk.pm:351
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Следните пакети ще бъдат инсталирани"
-
-#: install_steps_gtk.pm:352
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Следните пакети ще бъдат премахнати"
-
-#: install_steps_gtk.pm:376
-#, c-format
-msgid "This is a mandatory package, it can not be unselected"
-msgstr "Това е нужен пакет, не може да бъде немаркиран"
-
-#: install_steps_gtk.pm:378
-#, c-format
-msgid "You can not unselect this package. It is already installed"
-msgstr "Не можете да оставите този пакет немаркиран. Той вече е инсталиран"
-
-#: install_steps_gtk.pm:381
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Този пакет трябва да бъде обновен\n"
-"Сигурни ли сте, че искате да го изключите ?"
-
-#: install_steps_gtk.pm:384
-#, c-format
-msgid "You can not unselect this package. It must be upgraded"
-msgstr "Не можете да изключите този пакет. Той трябва да бъде обновен"
-
-#: install_steps_gtk.pm:389
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Покажи автоматично отбелязаните пакети"
-
-#: install_steps_gtk.pm:394
-#, fuzzy, c-format
-msgid "Load/Save selection"
-msgstr "Избор на пакети"
-
-#: install_steps_gtk.pm:395
-#, c-format
-msgid "Updating package selection"
-msgstr "Обновяване на избора на пакети"
-
-#: install_steps_gtk.pm:400
-#, c-format
-msgid "Minimal install"
-msgstr "Миминална инсталация"
-
-#: install_steps_gtk.pm:414 install_steps_interactive.pm:467
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Изберете пакетите, които искате да инсталирате"
-
-#: install_steps_gtk.pm:431 install_steps_interactive.pm:691
-#, c-format
-msgid "Installing"
-msgstr "Инсталирам"
-
-#: install_steps_gtk.pm:457
-#, c-format
-msgid "No details"
-msgstr "Без подробности"
-
-#: install_steps_gtk.pm:472
-#, c-format
-msgid "Time remaining "
-msgstr "Оставащо време "
-
-#: install_steps_gtk.pm:473
-#, c-format
-msgid "Estimating"
-msgstr "Пресмятане"
-
-#: install_steps_gtk.pm:500
-#, c-format
-msgid "%d packages"
-msgstr "%d пакета"
-
-#: install_steps_gtk.pm:543 install_steps_interactive.pm:719
-#, fuzzy, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Сменете CD-ROM !\n"
-"\n"
-"Моля, сложете CD-ROM озаглавен \"%s\" в устройството и натиснете Ok, когато "
-"сте готови.\n"
-"Ако го нямате, натиснете Отмяна, за да избегнете инсталирането от този CD-"
-"ROM."
-
-#: install_steps_gtk.pm:556 install_steps_interactive.pm:730
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Появи се грешка при поръчването на пакетите:"
-
-#: install_steps_gtk.pm:558 install_steps_interactive.pm:734
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Появи се грешка при инсталиране на пакетите:"
-
-#: install_steps_gtk.pm:560 install_steps_interactive.pm:730
-#: install_steps_interactive.pm:734
-#, c-format
-msgid "Go on anyway?"
-msgstr "Да продължа ли все пак ?"
-
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:910 steps.pm:30
-#, c-format
-msgid "Summary"
-msgstr "Обобщение"
-
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:906
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "not configured"
-msgstr "не е конфигуриран"
-
-#: install_steps_gtk.pm:668
-#, c-format
-msgid ""
-"The following installation media have been found.\n"
-"If you want to skip some of them, you can unselect them now."
-msgstr ""
-
-#: install_steps_gtk.pm:677
-#, c-format
-msgid ""
-"You have the option to copy the contents of the CDs onto the hard drive "
-"before installation.\n"
-"It will then continue from the hard drive and the packages will remain "
-"available once the system is fully installed."
-msgstr ""
-
-#: install_steps_gtk.pm:679
-#, c-format
-msgid "Copy whole CDs"
-msgstr ""
-
-#: install_steps_interactive.pm:95
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Моля, изберете подреждане на клавиатурата."
-
-#: install_steps_interactive.pm:97
-#, fuzzy, c-format
-msgid "Here is the full list of available keyboards"
-msgstr "Ето пълен списък на достръпните страни"
-
-#: install_steps_interactive.pm:127
-#, c-format
-msgid "Install/Upgrade"
-msgstr "Инсталирай/Обнови"
-
-#: install_steps_interactive.pm:128
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Това нова инсталация ли е или обновяване ?"
-
-#: install_steps_interactive.pm:134
-#, c-format
-msgid "Upgrade %s"
-msgstr "Обновява %s"
-
-#: install_steps_interactive.pm:147
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Ключ за криптиране на %s"
-
-#: install_steps_interactive.pm:170
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Моля, изберете тип на мишката."
-
-#: install_steps_interactive.pm:171
-#, c-format
-msgid "Mouse choice"
-msgstr ""
-
-#: install_steps_interactive.pm:180 standalone/mousedrake:46
-#, c-format
-msgid "Mouse Port"
-msgstr "Порт на мишката"
-
-#: install_steps_interactive.pm:181 standalone/mousedrake:47
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Моля, изберете към кой сериен порт е свързана мишката ви."
-
-#: install_steps_interactive.pm:191
-#, c-format
-msgid "Buttons emulation"
-msgstr "Имитация на бутони"
-
-#: install_steps_interactive.pm:193
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Имитация на 2 бутона"
-
-#: install_steps_interactive.pm:194
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Имитация на 3 бутона"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Настройка на PCMCIA картите ..."
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "Configuring IDE"
-msgstr "Настройка на IDE"
-
-#: install_steps_interactive.pm:242
-#, c-format
-msgid "No partition available"
-msgstr "няма дялове на разположение"
-
-#: install_steps_interactive.pm:245
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Претърсване на дяловете за намиране на точки на монтиране"
-
-#: install_steps_interactive.pm:252
-#, c-format
-msgid "Choose the mount points"
-msgstr "Изберете места за монтиране"
-
-#: install_steps_interactive.pm:300
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Няма свободно място за 1 МБ стартиращо поле ! Инсталацията ще продължи, но, "
-"за да стартирате системата си, ще трябва да създадете стартиращо поле в "
-"DiskDrake"
-
-#: install_steps_interactive.pm:305
-#, fuzzy, c-format
-msgid ""
-"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
-"to boot your system, you'll need to create the bootstrap partition in "
-"DiskDrake"
-msgstr ""
-"Няма свободно място за 1 МБ стартиращо поле ! Инсталацията ще продължи, но, "
-"за да стартирате системата си, ще трябва да създадете стартиращо поле в "
-"DiskDrake"
-
-#: install_steps_interactive.pm:341
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Изберете дяловете, които искате да форматирате"
-
-#: install_steps_interactive.pm:343
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Проверка за лоши сектори ?"
-
-#: install_steps_interactive.pm:371
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
-msgstr ""
-"Неуспешна проверка на файлва система %s. Искате ли да оправите грешките? "
-"(бъдете внимателни, може да загубите данни)"
-
-#: install_steps_interactive.pm:374
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr ""
-"Няма достатъчно swap за приключване на инсталацията, моля добавете малко"
-
-#: install_steps_interactive.pm:383
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Търся налични пакети и препостроявам rpm базата данни..."
-
-#: install_steps_interactive.pm:384 install_steps_interactive.pm:436
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Търся налични пакети..."
-
-#: install_steps_interactive.pm:405 install_steps_interactive.pm:810
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Изберете огледален сървър,от който да получите пакетите"
-
-#: install_steps_interactive.pm:445
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Системата ви няма достатъчно място за инсталация или обновяване (%d > %d)"
-
-#: install_steps_interactive.pm:479
-#, fuzzy, c-format
-msgid ""
-"Please choose load or save package selection.\n"
-"The format is the same as auto_install generated files."
-msgstr ""
-"Може изберете зареждане или запис на избора на пакети на флопи.\n"
-"Форматът е същият като auto_install генерираните дискети."
-
-#: install_steps_interactive.pm:481
-#, c-format
-msgid "Load"
-msgstr "Натовареност"
-
-#: install_steps_interactive.pm:481 standalone/drakbackup:4083
-#: standalone/drakbackup:4153 standalone/logdrake:175
-#, c-format
-msgid "Save"
-msgstr "Запазва"
-
-#: install_steps_interactive.pm:489
-#, fuzzy, c-format
-msgid "Bad file"
-msgstr "Зареждане на файл"
-
-#: install_steps_interactive.pm:562
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Избраната големина е по-голяма от достъпното пространство"
-
-#: install_steps_interactive.pm:577
-#, c-format
-msgid "Type of install"
-msgstr "Тип инсталация"
-
-#: install_steps_interactive.pm:578
-#, c-format
-msgid ""
-"You have not selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Вие не сте избрали никаква група от пакети.\n"
-"Моля, изберете минималната инсталация кояти искате:"
-
-#: install_steps_interactive.pm:582
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "С базова документация (препоръчва се!)"
-
-#: install_steps_interactive.pm:583
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Наистина минимална инсталация (особенно без urpmi)"
-
-#: install_steps_interactive.pm:622 standalone/drakxtv:52
-#, c-format
-msgid "All"
-msgstr "Всички"
-
-#: install_steps_interactive.pm:661
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"Ако имате всички CD-та от списъка по-горе, натиснете Ok.\n"
-"Ако нямате нито едно от тези CD-та, натиснете Отмяна.\n"
-"Ако ви липсват някои CD-та, махнете ги, и натиснете Ok. "
-
-#: install_steps_interactive.pm:666
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM озаглавен \"%s\""
-
-#: install_steps_interactive.pm:691
-#, c-format
-msgid "Preparing installation"
-msgstr "Подготвям инсталацията"
-
-#: install_steps_interactive.pm:699
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Инсталирам пакет %s\n"
-"%d%%"
-
-#: install_steps_interactive.pm:748
-#, c-format
-msgid "Post-install configuration"
-msgstr "След инсталационна настройка"
-
-#: install_steps_interactive.pm:755
-#, c-format
-msgid "Please ensure the Update Modules media is in drive %s"
-msgstr ""
-
-#: install_steps_interactive.pm:783
-#, c-format
-msgid "Updates"
-msgstr "Обновяване"
-
-#: install_steps_interactive.pm:784
-#, c-format
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates?"
-msgstr ""
-
-#: install_steps_interactive.pm:805
-#, c-format
-msgid ""
-"Contacting Mandriva Linux web site to get the list of available mirrors..."
-msgstr ""
-"Свързване с Mandriva Linux web сайт за получаване на списъка с налични "
-"огледални сървъри..."
-
-#: install_steps_interactive.pm:824
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Свързване с огледалния сървър за получаване на списъка с пакетите"
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Не мога да се свръжа с огледален сървър' %s"
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Желаете ли да опитате пак ?"
-
-#: install_steps_interactive.pm:855 standalone/drakclock:45
-#: standalone/finish-install:56
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Коя е времевата ви зона ?"
-
-#: install_steps_interactive.pm:860
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Автоматична синхронизация на времето (използва NTP)"
-
-#: install_steps_interactive.pm:868
-#, c-format
-msgid "NTP Server"
-msgstr "NTP сървър"
-
-#: install_steps_interactive.pm:923 install_steps_interactive.pm:931
-#: install_steps_interactive.pm:949 install_steps_interactive.pm:956
-#: install_steps_interactive.pm:1107 services.pm:133
-#: standalone/drakbackup:1596
-#, c-format
-msgid "System"
-msgstr "Система"
-
-#: install_steps_interactive.pm:963 install_steps_interactive.pm:990
-#: install_steps_interactive.pm:1007 install_steps_interactive.pm:1023
-#: install_steps_interactive.pm:1034
-#, c-format
-msgid "Hardware"
-msgstr "Хардуер"
-
-#: install_steps_interactive.pm:969 install_steps_interactive.pm:978
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Отдалечен CUPS сървър"
-
-#: install_steps_interactive.pm:969
-#, c-format
-msgid "No printer"
-msgstr "Няма принтер"
-
-#: install_steps_interactive.pm:1011
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Имате ли ISA звукова карта?"
-
-#: install_steps_interactive.pm:1013
-#, fuzzy, c-format
-msgid ""
-"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
-"card"
-msgstr ""
-"Изпълнете \"sndconfig\" след инсталация за да конфигурирате вашата звукова "
-"карта"
-
-#: install_steps_interactive.pm:1015
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr "Няма открита звукова карта. Опитайте \"harddrake\" след инсталацията"
-
-#: install_steps_interactive.pm:1035
-#, c-format
-msgid "Graphical interface"
-msgstr "Графичен интерфайс"
-
-#: install_steps_interactive.pm:1041 install_steps_interactive.pm:1053
-#, c-format
-msgid "Network & Internet"
-msgstr "Мрежа и интернет"
-
-#: install_steps_interactive.pm:1055
-#, fuzzy, c-format
-msgid "configured"
-msgstr "пренастройка"
-
-#: install_steps_interactive.pm:1064 install_steps_interactive.pm:1078
-#: security/level.pm:55 steps.pm:20
-#, c-format
-msgid "Security"
-msgstr "Сигурност"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "activated"
-msgstr "активирано"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "disabled"
-msgstr "изключен"
-
-#: install_steps_interactive.pm:1094
-#, c-format
-msgid "Boot"
-msgstr "Зареждане"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1098 printer/printerdrake.pm:961
-#, c-format
-msgid "%s on %s"
-msgstr "%s на %s"
-
-#: install_steps_interactive.pm:1112 services.pm:175
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Услуги: %d активирани от %d регистрирани"
-
-#: install_steps_interactive.pm:1124
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "Вие не сте конфигурирали X. Сигурни ли сте, че искате това?"
-
-#: install_steps_interactive.pm:1205
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Подготовка на bootloader"
-
-#: install_steps_interactive.pm:1215
-#, fuzzy, c-format
-msgid ""
-"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
-"will not work for you. The install will continue, but you'll need to use "
-"BootX or some other means to boot your machine. The kernel argument for the "
-"root fs is: root=%s"
-msgstr ""
-"Изглежда имате старовремска или неизвестна\n"
-"машина, на която yaboot няма да проработи.\n"
-"Инсталацията ще продължи, но ще трябва\n"
-"да иползвате BootX, за да стартирате машината си"
-
-#: install_steps_interactive.pm:1221
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Искате ли да използвате aboot ?"
-
-#: install_steps_interactive.pm:1224
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Грешка при инсталиране на aboot, \n"
-"да се опитам ли да продължа инсталацията дори, ако това унижтожи първия дял ?"
-
-#: install_steps_interactive.pm:1241
-#, c-format
-msgid ""
-"In this security level, access to the files in the Windows partition is "
-"restricted to the administrator."
-msgstr ""
-
-#: install_steps_interactive.pm:1270 standalone/drakautoinst:76
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Сложете празна дискета в устройство %s"
-
-#: install_steps_interactive.pm:1275
-#, fuzzy, c-format
-msgid "Please insert another floppy for drivers disk"
-msgstr "Сложете стартиращата дискета в устройство %s"
-
-#: install_steps_interactive.pm:1277
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Подготвям дискета с автоматична инсталация"
-
-#: install_steps_interactive.pm:1289
-#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Някои етапи не са завършени.\n"
-"\n"
-"Наистина ли искате да излезете сега ?"
-
-#: install_steps_interactive.pm:1299 standalone/draksambashare:421
-#: standalone/draksambashare:527 standalone/drakups:118 standalone/drakups:157
-#: standalone/logdrake:451 standalone/logdrake:457
-#, c-format
-msgid "Congratulations"
-msgstr "Поздравления"
-
-#: install_steps_interactive.pm:1307 install_steps_interactive.pm:1308
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Подготви дискета за автоматична инсталация"
-
-#: install_steps_interactive.pm:1309
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Автоматичната инсталация може да бъде напълно автоматизирана,\n"
-"в такъв случай ще превземе твърдия ви диск !!!\n"
-"(това е за предназначено за инсталиране на друга машина).\n"
-"\n"
-"Може би искате да повторите инсталацията.\n"
-
-#: install_steps_newt.pm:20
-#, c-format
-msgid "Mandriva Linux Installation %s"
-msgstr "Инсталация на Mandriva Linux %s"
-
-#. -PO: This string must fit in a 80-char wide text screen
-#: install_steps_newt.pm:37
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> между елементите | <Space> избира | <F12> следващ екран"
+msgid "No"
+msgstr "Не"
-#: interactive.pm:196
+#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "Изберете файл"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakbackup:1537
-#: standalone/drakfont:649 standalone/drakhosts:242 standalone/draknfs:605
-#: standalone/draksambashare:1127 standalone/drakups:299
-#: standalone/drakups:359 standalone/drakups:379 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Add"
msgstr "Добавя"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakhosts:249
-#: standalone/draknfs:612 standalone/draksambashare:1084
-#: standalone/draksambashare:1137 standalone/draksambashare:1176
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Modify"
msgstr "Модифицира"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakfont:732
-#: standalone/drakhosts:256 standalone/draknfs:619
-#: standalone/draksambashare:1085 standalone/draksambashare:1145
-#: standalone/draksambashare:1184 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Remove"
msgstr "Премахва"
-#: interactive.pm:398
-#, c-format
-msgid "Basic"
-msgstr "Базов"
-
-#: interactive.pm:436 interactive/newt.pm:321 ugtk2.pm:490
+#: interactive.pm:538 interactive/curses.pm:217 ugtk2.pm:508
#, c-format
msgid "Finish"
msgstr "Завърши"
-#: interactive/newt.pm:92
+#: interactive.pm:539 interactive/curses.pm:214 ugtk2.pm:506
#, c-format
-msgid "Do"
-msgstr "Направи"
+msgid "Previous"
+msgstr "Предишен"
#: interactive/stdio.pm:29 interactive/stdio.pm:148
#, c-format
@@ -7235,1951 +3269,1205 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: keyboard.pm:171 keyboard.pm:202
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTZ)"
-msgstr "Чешка (QWERTZ)"
-
-#: keyboard.pm:172 keyboard.pm:204
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German"
-msgstr "Немска"
-
-#: keyboard.pm:173
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak"
-msgstr "Дворак"
-
-#: keyboard.pm:174 keyboard.pm:217
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Spanish"
-msgstr "Испанска"
-
-#: keyboard.pm:175 keyboard.pm:218
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Finnish"
-msgstr "Финландска"
-
-#: keyboard.pm:176 keyboard.pm:220
-#, c-format
-msgid ""
-"_: keyboard\n"
-"French"
-msgstr "Френска"
-
-#: keyboard.pm:177 keyboard.pm:264
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Norwegian"
-msgstr "Норвежка"
-
-#: keyboard.pm:178
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish"
-msgstr "Полска"
-
-#: keyboard.pm:179 keyboard.pm:275
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian"
-msgstr "Руска"
-
-#: keyboard.pm:180 keyboard.pm:281
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swedish"
-msgstr "Шведска"
-
-#: keyboard.pm:181 keyboard.pm:310
-#, c-format
-msgid "UK keyboard"
-msgstr "UK клавиатура"
-
-#: keyboard.pm:182 keyboard.pm:313
-#, c-format
-msgid "US keyboard"
-msgstr "US клавиатура"
-
-#: keyboard.pm:184
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Albanian"
-msgstr "Албанска"
-
-#: keyboard.pm:185
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (old)"
-msgstr "Арменска (стара)"
-
-#: keyboard.pm:186
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (typewriter)"
-msgstr "Арменска (пишеща машина)"
-
-#: keyboard.pm:187
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (phonetic)"
-msgstr "Арменска (фонетичен)"
-
-#: keyboard.pm:188
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Arabic"
-msgstr "Арабски"
-
-#: keyboard.pm:189
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Azerbaidjani (latin)"
-msgstr "Азербайджанска (латиница)"
-
-#: keyboard.pm:190
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belgian"
-msgstr "Белгийска"
-
-#: keyboard.pm:191
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Inscript-layout)"
-msgstr "Бенгалска (Inscript-подредба)"
-
-#: keyboard.pm:192
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Probhat)"
-msgstr "Бенгалска (Probhat-подредба)"
-
-#: keyboard.pm:193
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (phonetic)"
-msgstr "Българска (фонетичен)"
-
-#: keyboard.pm:194
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (BDS)"
-msgstr "Българска (BDS)"
-
-#: keyboard.pm:195
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Brazilian (ABNT-2)"
-msgstr "Бразилска (ABNT-2)"
-
-#: keyboard.pm:196
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bosnian"
-msgstr "Босненска"
-
-#: keyboard.pm:197
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belarusian"
-msgstr "Беларуска"
-
-#: keyboard.pm:198
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (German layout)"
-msgstr "Швейцарска (немска наредба)"
-
-#: keyboard.pm:199
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (French layout)"
-msgstr "Швейцарска (френски наредба)"
-
-#: keyboard.pm:201
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Cherokee syllabics"
-msgstr "Арабски"
-
-#: keyboard.pm:203
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTY)"
-msgstr "Чешка (QWERTY)"
-
-#: keyboard.pm:205
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German (no dead keys)"
-msgstr "Немска (без неработещи клавиши)"
-
-#: keyboard.pm:206
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Devanagari"
-msgstr "Давенаджари"
-
-#: keyboard.pm:207
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Danish"
-msgstr "Датска"
-
-#: keyboard.pm:208
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (US)"
-msgstr "Дворак (US)"
-
-#: keyboard.pm:209
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Esperanto)"
-msgstr "Дворак (Норвежка)"
-
-#: keyboard.pm:210
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (French)"
-msgstr "Дворак (Норвежка)"
-
-#: keyboard.pm:211
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (UK)"
-msgstr "Дворак (US)"
-
-#: keyboard.pm:212
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Norwegian)"
-msgstr "Дворак (Норвежка)"
-
-#: keyboard.pm:213
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Polish)"
-msgstr "Дворак (Шведска)"
-
-#: keyboard.pm:214
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Swedish)"
-msgstr "Дворак (Шведска)"
-
-#: keyboard.pm:215
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dzongkha/Tibetan"
-msgstr "Босненска"
-
-#: keyboard.pm:216
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Estonian"
-msgstr "Естонска"
-
-#: keyboard.pm:219
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Faroese"
-msgstr "Гръцка"
-
-#: keyboard.pm:221
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Russian\" layout)"
-msgstr "Грузинска (\"Руска\" наредба)"
-
-#: keyboard.pm:222
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Latin\" layout)"
-msgstr "Грузинска (\"Латинска\" наредба)"
-
-#: keyboard.pm:223
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek"
-msgstr "Гръцка"
-
-#: keyboard.pm:224
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek (polytonic)"
-msgstr ""
-
-#: keyboard.pm:225
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gujarati"
-msgstr "Гуаджарати"
-
-#: keyboard.pm:226
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gurmukhi"
-msgstr "Гурмукчи"
-
-#: keyboard.pm:227
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Croatian"
-msgstr "Хърватска"
-
-#: keyboard.pm:228
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Hungarian"
-msgstr "Унгарска"
-
-#: keyboard.pm:229
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Irish"
-msgstr ""
-
-#: keyboard.pm:230
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli"
-msgstr "Израелска"
-
-#: keyboard.pm:231
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli (phonetic)"
-msgstr "Израелска (фонетична)"
-
-#: keyboard.pm:232
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Iranian"
-msgstr "Иранска"
-
-#: keyboard.pm:233
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Icelandic"
-msgstr "Исландска"
-
-#: keyboard.pm:234
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Italian"
-msgstr "Италианска"
-
-#: keyboard.pm:235
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Inuktitut"
-msgstr "Инуктитут"
-
-#: keyboard.pm:239
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Japanese 106 keys"
-msgstr "Японска 106 клавиша"
-
-#: keyboard.pm:240
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kannada"
-msgstr "Канада"
-
-#: keyboard.pm:243
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Korean"
-msgstr "Корейска клавиатура"
-
-#: keyboard.pm:245
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Kurdish (arabic script)"
-msgstr "Арабски"
-
-#: keyboard.pm:246
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Kyrgyz"
-msgstr "UK клавиатура"
-
-#: keyboard.pm:247
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latin American"
-msgstr "Латиноамериканска"
-
-#: keyboard.pm:249
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Laotian"
-msgstr "Лаоска"
-
-#: keyboard.pm:250
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (old)"
-msgstr "Литвийска AZERTY (стара)"
-
-#: keyboard.pm:252
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (new)"
-msgstr "Литвийска AZERTY (нова)"
-
-#: keyboard.pm:253
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"number row\" QWERTY"
-msgstr "Литвийска \"числова редица\" QWERTY"
-
-#: keyboard.pm:254
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"phonetic\" QWERTY"
-msgstr "Литвийска \"фонетичен\" QWERTY"
-
-#: keyboard.pm:255
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latvian"
-msgstr "Латвийска"
-
-#: keyboard.pm:256
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Malayalam"
-msgstr "Малайлам"
-
-#: keyboard.pm:258
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Macedonian"
-msgstr "Македонска"
-
-#: keyboard.pm:259
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Myanmar (Burmese)"
-msgstr "Майнмар (бирманска)"
-
-#: keyboard.pm:260
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Mongolian (cyrillic)"
-msgstr "Монголска (кирилица)"
-
-#: keyboard.pm:261
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (UK)"
-msgstr "Малтийска (UK)"
-
-#: keyboard.pm:262
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (US)"
-msgstr "Малтийска (US)"
-
-#: keyboard.pm:263
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dutch"
-msgstr "Холандска"
-
-#: keyboard.pm:265
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Oriya"
-msgstr "Орийска"
-
-#: keyboard.pm:266
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwerty layout)"
-msgstr "Полска (QWERTY наредба)"
-
-#: keyboard.pm:267
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwertz layout)"
-msgstr "Полска (QWERTZ наредба)"
-
-#: keyboard.pm:269
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Pashto"
-msgstr "Полска"
-
-#: keyboard.pm:270
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Portuguese"
-msgstr "Португалска"
-
-#: keyboard.pm:272
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Canadian (Quebec)"
-msgstr "Канадска (Квебек)"
-
-#: keyboard.pm:273
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwertz)"
-msgstr "Румънска (qwertz)"
-
-#: keyboard.pm:274
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwerty)"
-msgstr "Румънска (qwerty)"
-
-#: keyboard.pm:276
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian (phonetic)"
-msgstr "Руска (фонетична)"
-
-#: keyboard.pm:277
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (norwegian)"
-msgstr "Саами (норвежка)"
-
-#: keyboard.pm:278
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (swedish/finnish)"
-msgstr "Саами (норвежка)"
-
-#: keyboard.pm:280
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Sindhi"
-msgstr "Тайванска клавиатура"
-
-#: keyboard.pm:282
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovenian"
-msgstr "Словенска"
-
-#: keyboard.pm:284
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sinhala"
-msgstr ""
-
-#: keyboard.pm:285
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTZ)"
-msgstr "Словашка (QWERTZ)"
-
-#: keyboard.pm:286
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTY)"
-msgstr "Словашка (QWERTY)"
-
-#: keyboard.pm:288
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Serbian (cyrillic)"
-msgstr "Сръбска (кирилица)"
-
-#: keyboard.pm:289
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac"
-msgstr "Сирийски"
-
-#: keyboard.pm:290
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac (phonetic)"
-msgstr "Сирийски (фонетичен)"
-
-#: keyboard.pm:291
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Telugu"
-msgstr "Телугу"
-
-#: keyboard.pm:293
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (ISCII-layout)"
-msgstr "Тамилска (ISCII-подредба)"
-
-#: keyboard.pm:294
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (Typewriter-layout)"
-msgstr "Тамилска (пишеща машина)"
-
-#: keyboard.pm:295
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Kedmanee)"
-msgstr "Тайванска клавиатура"
-
-#: keyboard.pm:296
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (TIS-820)"
-msgstr "Тайванска клавиатура"
-
-#: keyboard.pm:298
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Pattachote)"
-msgstr "Тайванска клавиатура"
-
-#: keyboard.pm:300
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (moroccan layout) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:301
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (phonetic) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:303
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tajik"
-msgstr "Таджикистанска клавиатура"
-
-#: keyboard.pm:305
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Turkmen"
-msgstr "Немска"
-
-#: keyboard.pm:306
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (traditional \"F\" model)"
-msgstr "Турска (традиционен \"F\" модел)"
-
-#: keyboard.pm:307
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (modern \"Q\" model)"
-msgstr "Турска (модерен \"Q\" модел)"
-
-#: keyboard.pm:309
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Ukrainian"
-msgstr "Украинска"
-
-#: keyboard.pm:312
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Urdu keyboard"
-msgstr "Орийска"
-
-#: keyboard.pm:314
-#, c-format
-msgid "US keyboard (international)"
-msgstr "US клавиатура (международна)"
-
-#: keyboard.pm:315
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Uzbek (cyrillic)"
-msgstr "Узбекистанска (кирилица)"
-
-#: keyboard.pm:317
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Vietnamese \"numeric row\" QWERTY"
-msgstr "Виетнамска \"числова редица\" QWERTY"
-
-#: keyboard.pm:318
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Yugoslavian (latin)"
-msgstr "Югославска (латиница)"
-
-#: keyboard.pm:325
-#, c-format
-msgid "Right Alt key"
-msgstr "Десен Alt клавиш"
-
-#: keyboard.pm:326
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Двата Shift клавиша едновременно"
-
-#: keyboard.pm:327
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Control и Shift клавиши едновремено"
-
-#: keyboard.pm:328
-#, c-format
-msgid "CapsLock key"
-msgstr "CapsLock клавиш"
-
-#: keyboard.pm:329
-#, fuzzy, c-format
-msgid "Shift and CapsLock keys simultaneously"
-msgstr "Ctrl и Alt клавиши едновременно"
-
-#: keyboard.pm:330
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl и Alt клавиши едновременно"
-
-#: keyboard.pm:331
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt и Shift клавиши едновременно"
-
-#: keyboard.pm:332
-#, c-format
-msgid "\"Menu\" key"
-msgstr "\"Menu\" клавиш"
-
-#: keyboard.pm:333
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Ляв \"Windows\" клавиш"
-
-#: keyboard.pm:334
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Десен \"Windows\" клавиш"
-
-#: keyboard.pm:335
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Двата Ctrl клавиша едновременно"
-
-#: keyboard.pm:336
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Двата Alt клавиша едновременно"
-
-#: keyboard.pm:337
-#, c-format
-msgid "Left Shift key"
-msgstr "Ляв Shift клавиш"
-
-#: keyboard.pm:338
-#, c-format
-msgid "Right Shift key"
-msgstr "Десен Shift клавиш"
-
-#: keyboard.pm:339
-#, c-format
-msgid "Left Alt key"
-msgstr "Ляв Alt клавиш"
-
-#: keyboard.pm:340
-#, c-format
-msgid "Left Control key"
-msgstr "Ляв клавиш Ctrl"
-
-#: keyboard.pm:341
-#, c-format
-msgid "Right Control key"
-msgstr "Десен Control клавиш"
-
-#: keyboard.pm:377
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Тук може да изберете клавиш или клавишна комбинация, която \n"
-"ще ви позволи да избирате различни клавиатурни подредби\n"
-"(напр. latin и не latin)"
-
-#: keyboard.pm:382
-#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
-msgstr ""
-
#. -PO: the string "default:LTR" can be translated *ONLY* as "default:LTR"
#. -PO: or as "default:RTL", depending if your language is written from
#. -PO: left to right, or from right to left; any other string is wrong.
-#: lang.pm:178
+#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"
-#: lang.pm:195
+#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "Андора"
-#: lang.pm:196 network/adsl_consts.pm:943
+#: lang.pm:211 timezone.pm:213
#, c-format
msgid "United Arab Emirates"
msgstr "Обединени Арабски Емирства"
-#: lang.pm:197
+#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "Афганистан"
-#: lang.pm:198
+#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "Антигуа и Барбуда"
-#: lang.pm:199
+#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "Ангила"
-#: lang.pm:200
+#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "Албания"
-#: lang.pm:201
+#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "Армения"
-#: lang.pm:202
+#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "Холандски Антили"
-#: lang.pm:203
+#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "Ангола"
-#: lang.pm:204
+#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "Антарктика"
-#: lang.pm:205 network/adsl_consts.pm:55 standalone/drakxtv:50
+#: lang.pm:220 timezone.pm:258
#, c-format
msgid "Argentina"
msgstr "Аржентина"
-#: lang.pm:206
+#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "Американска Самоа"
-#: lang.pm:209
+#: lang.pm:222 mirror.pm:11 timezone.pm:216
+#, c-format
+msgid "Austria"
+msgstr "Австрия"
+
+#: lang.pm:223 mirror.pm:10 timezone.pm:254
+#, c-format
+msgid "Australia"
+msgstr "Австралия"
+
+#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "Аруба"
-#: lang.pm:210
+#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "Азербайджан"
-#: lang.pm:211
+#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Босна и Херцеговина"
-#: lang.pm:212
+#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "Барбадос"
-#: lang.pm:213
+#: lang.pm:228 timezone.pm:198
#, c-format
msgid "Bangladesh"
msgstr "Бангладеш"
-#: lang.pm:215
+#: lang.pm:229 mirror.pm:12 timezone.pm:218
+#, c-format
+msgid "Belgium"
+msgstr "Белгия"
+
+#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "Буркина Фасо"
-#: lang.pm:216 network/adsl_consts.pm:170 network/adsl_consts.pm:179
+#: lang.pm:231 timezone.pm:219
#, c-format
msgid "Bulgaria"
msgstr "България"
-#: lang.pm:217
+#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "Бахрейн"
-#: lang.pm:218
+#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "Бурунди"
-#: lang.pm:219
+#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "Бенин"
-#: lang.pm:220
+#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "Бермуда"
-#: lang.pm:221
+#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "Бруней"
-#: lang.pm:222
+#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "Боливия"
-#: lang.pm:224
+#: lang.pm:238 mirror.pm:13 timezone.pm:259
+#, c-format
+msgid "Brazil"
+msgstr "Бразилия"
+
+#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "Бахами"
-#: lang.pm:225
+#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "Бутан"
-#: lang.pm:226
+#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "Остров Бувет"
-#: lang.pm:227
+#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "Ботсвана"
-#: lang.pm:228
+#: lang.pm:243 timezone.pm:217
#, c-format
msgid "Belarus"
msgstr "Беларус"
-#: lang.pm:229
+#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "Белиз"
-#: lang.pm:231
+#: lang.pm:245 mirror.pm:14 timezone.pm:248
+#, c-format
+msgid "Canada"
+msgstr "Канада"
+
+#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Кокосови Острови"
-#: lang.pm:232
+#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Конго (Киншаса)"
-#: lang.pm:233
+#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "Централноафриканска Република"
-#: lang.pm:234
+#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Конго (Бразивил)"
-#: lang.pm:236
+#: lang.pm:250 mirror.pm:38 timezone.pm:242
+#, c-format
+msgid "Switzerland"
+msgstr "Швейцария"
+
+#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "Кот д'ивоар"
-#: lang.pm:237
+#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "Острови Кук"
-#: lang.pm:238
+#: lang.pm:253 timezone.pm:260
#, c-format
msgid "Chile"
msgstr "Чили"
-#: lang.pm:239
+#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "Камерун"
-#: lang.pm:240 network/adsl_consts.pm:188 network/adsl_consts.pm:197
-#: network/adsl_consts.pm:206 network/adsl_consts.pm:215
-#: network/adsl_consts.pm:224 network/adsl_consts.pm:233
-#: network/adsl_consts.pm:242 network/adsl_consts.pm:251
-#: network/adsl_consts.pm:260 network/adsl_consts.pm:269
-#: network/adsl_consts.pm:278 network/adsl_consts.pm:287
-#: network/adsl_consts.pm:296 network/adsl_consts.pm:305
-#: network/adsl_consts.pm:314 network/adsl_consts.pm:323
-#: network/adsl_consts.pm:332 network/adsl_consts.pm:341
-#: network/adsl_consts.pm:350 network/adsl_consts.pm:359
+#: lang.pm:255 timezone.pm:199
#, c-format
msgid "China"
msgstr "Китай"
-#: lang.pm:241
+#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "Колумбия"
-#: lang.pm:243
+#: lang.pm:257 mirror.pm:15
+#, c-format
+msgid "Costa Rica"
+msgstr "Коста Рика"
+
+#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "Сърбия и Черна Гора"
-#: lang.pm:244
+#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "Куба"
-#: lang.pm:245
+#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "Капо Верде"
-#: lang.pm:246
+#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "Коледни Острови"
-#: lang.pm:247
+#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "Кипър"
-#: lang.pm:250
+#: lang.pm:263 mirror.pm:16 timezone.pm:220
+#, c-format
+msgid "Czech Republic"
+msgstr "Чешка Република"
+
+#: lang.pm:264 mirror.pm:21 timezone.pm:225
+#, c-format
+msgid "Germany"
+msgstr "Германия"
+
+#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "Джибути"
-#: lang.pm:252
+#: lang.pm:266 mirror.pm:17 timezone.pm:221
+#, c-format
+msgid "Denmark"
+msgstr "Дания"
+
+#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "Доминика"
-#: lang.pm:253
+#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "Доминиканска Република"
-#: lang.pm:254 network/adsl_consts.pm:44
+#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "Алжир"
-#: lang.pm:255
+#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "Еквадор"
-#: lang.pm:257
+#: lang.pm:271 mirror.pm:18 timezone.pm:222
+#, c-format
+msgid "Estonia"
+msgstr "Естония"
+
+#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "Египет"
-#: lang.pm:258
+#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "Западна Сахара"
-#: lang.pm:259
+#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "Еритрея"
-#: lang.pm:261
+#: lang.pm:275 mirror.pm:36 timezone.pm:240
+#, c-format
+msgid "Spain"
+msgstr "Испания"
+
+#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "Етиопия"
-#: lang.pm:263
+#: lang.pm:277 mirror.pm:19 timezone.pm:223
+#, c-format
+msgid "Finland"
+msgstr "Финландия"
+
+#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "Фиджи"
-#: lang.pm:264
+#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Фолклендски Острови (Малвини)"
-#: lang.pm:265
+#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "Микронезия"
-#: lang.pm:266
+#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "Острови Фаро"
-#: lang.pm:268
+#: lang.pm:282 mirror.pm:20 timezone.pm:224
+#, c-format
+msgid "France"
+msgstr "Франция"
+
+#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "Габон"
-#: lang.pm:269 network/adsl_consts.pm:954 network/adsl_consts.pm:965
-#: network/netconnect.pm:46
+#: lang.pm:284 timezone.pm:244
#, c-format
msgid "United Kingdom"
msgstr "Англия"
-#: lang.pm:270
+#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "Гренада"
-#: lang.pm:271
+#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "Грузия"
-#: lang.pm:272
+#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "Френска Гвиана"
-#: lang.pm:273
+#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "Гана"
-#: lang.pm:274
+#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "Гибралтар"
-#: lang.pm:275
+#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "Гренландия"
-#: lang.pm:276
+#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "Гамбия"
-#: lang.pm:277
+#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "Гвинея"
-#: lang.pm:278
+#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "Гваделупа"
-#: lang.pm:279
+#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "Екваториална Гвинея"
-#: lang.pm:281
+#: lang.pm:295 mirror.pm:22 timezone.pm:226
+#, c-format
+msgid "Greece"
+msgstr "Гърция"
+
+#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "Южни Сандвичеви Острови и Южна Джорджия"
-#: lang.pm:282
+#: lang.pm:297 timezone.pm:249
#, c-format
msgid "Guatemala"
msgstr "Гватемала"
-#: lang.pm:283
+#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "Гуам"
-#: lang.pm:284
+#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "Гвинея-Бисау"
-#: lang.pm:285
+#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "Гияна"
-#: lang.pm:286
+#: lang.pm:301
#, fuzzy, c-format
msgid "Hong Kong SAR (China)"
msgstr "Хонг Конг"
-#: lang.pm:287
+#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Хърд и МакДоналд Острови"
-#: lang.pm:288
+#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "Хондурас"
-#: lang.pm:289
+#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "Хърватия"
-#: lang.pm:290
+#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "Хаити"
-#: lang.pm:292
+#: lang.pm:306 mirror.pm:23 timezone.pm:227
+#, c-format
+msgid "Hungary"
+msgstr "Унгария"
+
+#: lang.pm:307 timezone.pm:202
#, c-format
msgid "Indonesia"
msgstr "Индонезия"
-#: lang.pm:295
+#: lang.pm:308 mirror.pm:24 timezone.pm:228
+#, c-format
+msgid "Ireland"
+msgstr "Ирландия"
+
+#: lang.pm:309 mirror.pm:25 timezone.pm:204
+#, c-format
+msgid "Israel"
+msgstr "Израел"
+
+#: lang.pm:310 timezone.pm:201
#, c-format
msgid "India"
msgstr "Индия"
-#: lang.pm:296
+#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Английски територии в Индийския океан"
-#: lang.pm:297
+#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "Ирак"
-#: lang.pm:298
+#: lang.pm:313 timezone.pm:203
#, c-format
msgid "Iran"
msgstr "Иран"
-#: lang.pm:299
+#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "Исландия"
-#: lang.pm:301
+#: lang.pm:315 mirror.pm:26 timezone.pm:229
+#, c-format
+msgid "Italy"
+msgstr "Италия"
+
+#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "Ямайка"
-#: lang.pm:302
+#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "Йордания"
-#: lang.pm:304
+#: lang.pm:318 mirror.pm:27 timezone.pm:205
+#, c-format
+msgid "Japan"
+msgstr "Япония"
+
+#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "Кения"
-#: lang.pm:305
+#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "Киргизтан"
-#: lang.pm:306
+#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "Камбоджа"
-#: lang.pm:307
+#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "Кирибати"
-#: lang.pm:308
+#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "Комори"
-#: lang.pm:309
+#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Свети Китс и Невис"
-#: lang.pm:310
+#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "Корея (Северна)"
-#: lang.pm:311
+#: lang.pm:326 timezone.pm:206
#, c-format
msgid "Korea"
msgstr "Корея"
-#: lang.pm:312
+#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "Кувейт"
-#: lang.pm:313
+#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "Кайманови Острови"
-#: lang.pm:314
+#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "Казахстан"
-#: lang.pm:315
+#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "Лаос"
-#: lang.pm:316
+#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "Ливан"
-#: lang.pm:317
+#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "Санта Лучия"
-#: lang.pm:318
+#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "Лихтенщайн"
-#: lang.pm:319
+#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "Шри Ланка"
-#: lang.pm:320
+#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "Либерия"
-#: lang.pm:321
+#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "Лесото"
-#: lang.pm:322 network/adsl_consts.pm:600
+#: lang.pm:337 timezone.pm:230
#, c-format
msgid "Lithuania"
msgstr "Литва"
-#: lang.pm:323
+#: lang.pm:338 timezone.pm:231
#, c-format
msgid "Luxembourg"
msgstr "Люксембург"
-#: lang.pm:324
+#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "Латвия"
-#: lang.pm:325
+#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "Либия"
-#: lang.pm:326 network/adsl_consts.pm:609
+#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "Мароко"
-#: lang.pm:327
+#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "Монако"
-#: lang.pm:328
+#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "Молдова"
-#: lang.pm:329
+#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "Мадагаскар"
-#: lang.pm:330
+#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "Маршалови Острови"
-#: lang.pm:331
+#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "Македония"
-#: lang.pm:332
+#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "Мали"
-#: lang.pm:333
+#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "Мианмар"
-#: lang.pm:334
+#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "Монголия"
-#: lang.pm:335
+#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "Северни Марианови Острови"
-#: lang.pm:336
+#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "Мартиника"
-#: lang.pm:337
+#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "Мавритания"
-#: lang.pm:338
+#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "Монсерат"
-#: lang.pm:339
+#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "Малта"
-#: lang.pm:340
+#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "Мавриций"
-#: lang.pm:341
+#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "Малдиви"
-#: lang.pm:342
+#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "Малави"
-#: lang.pm:343
+#: lang.pm:358 timezone.pm:250
#, c-format
msgid "Mexico"
msgstr "Мексико"
-#: lang.pm:344
+#: lang.pm:359 timezone.pm:207
#, c-format
msgid "Malaysia"
msgstr "Малайзия"
-#: lang.pm:345
+#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "Мозамбик"
-#: lang.pm:346
+#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "Намибия"
-#: lang.pm:347
+#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "Нова Каледония"
-#: lang.pm:348
+#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "Нигер"
-#: lang.pm:349
+#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "Норфолк Остров"
-#: lang.pm:350
+#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "Нигерия"
-#: lang.pm:351
+#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "Никарагуа"
-#: lang.pm:354
+#: lang.pm:367 mirror.pm:28 timezone.pm:232
+#, c-format
+msgid "Netherlands"
+msgstr "Холандия"
+
+#: lang.pm:368 mirror.pm:30 timezone.pm:233
+#, c-format
+msgid "Norway"
+msgstr "Норвегия"
+
+#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "Непал"
-#: lang.pm:355
+#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "Науру"
-#: lang.pm:356
+#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "Нию"
-#: lang.pm:358
+#: lang.pm:372 mirror.pm:29 timezone.pm:255
+#, c-format
+msgid "New Zealand"
+msgstr "Нова Зеландия"
+
+#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "Оман"
-#: lang.pm:359
+#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "Панама"
-#: lang.pm:360
+#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "Перу"
-#: lang.pm:361
+#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "Френска Полинезия"
-#: lang.pm:362
+#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "Папуа Нова Гвинея"
-#: lang.pm:363
+#: lang.pm:378 timezone.pm:208
#, c-format
msgid "Philippines"
msgstr "Филипини"
-#: lang.pm:364
+#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "Пакистан"
-#: lang.pm:366
+#: lang.pm:380 mirror.pm:31 timezone.pm:234
+#, c-format
+msgid "Poland"
+msgstr "Полша"
+
+#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Свети Пиер и Микелон"
-#: lang.pm:367
+#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "Питкеърн"
-#: lang.pm:368
+#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "Пуерто Рико"
-#: lang.pm:369
+#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "Палестина"
-#: lang.pm:371
+#: lang.pm:385 mirror.pm:32 timezone.pm:235
+#, c-format
+msgid "Portugal"
+msgstr "Португалия"
+
+#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "Парагвай"
-#: lang.pm:372
+#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "Палау"
-#: lang.pm:373
+#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "Катар"
-#: lang.pm:374
+#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "Риюниън"
-#: lang.pm:375
+#: lang.pm:390 timezone.pm:236
#, c-format
msgid "Romania"
msgstr "Румъния"
-#: lang.pm:377
+#: lang.pm:391 mirror.pm:33
+#, c-format
+msgid "Russia"
+msgstr "Русия"
+
+#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "Руанда"
-#: lang.pm:378
+#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "Саудитска Арабия"
-#: lang.pm:379
+#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "Соломонови Острови"
-#: lang.pm:380
+#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "Сейшели"
-#: lang.pm:381
+#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "Судан"
-#: lang.pm:383
+#: lang.pm:397 mirror.pm:37 timezone.pm:241
+#, c-format
+msgid "Sweden"
+msgstr "Швеция"
+
+#: lang.pm:398 timezone.pm:209
#, c-format
msgid "Singapore"
msgstr "Сингапур"
-#: lang.pm:384
+#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "Света Елена"
-#: lang.pm:385 network/adsl_consts.pm:747
+#: lang.pm:400 timezone.pm:239
#, c-format
msgid "Slovenia"
msgstr "Словения"
-#: lang.pm:386
+#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Свалбард и Ян Майен Острови"
-#: lang.pm:388
+#: lang.pm:402 mirror.pm:34 timezone.pm:238
+#, c-format
+msgid "Slovakia"
+msgstr "Словакия"
+
+#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "Сиера Леоне"
-#: lang.pm:389
+#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "Сан Марино"
-#: lang.pm:390 network/adsl_consts.pm:737
+#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "Сенегал"
-#: lang.pm:391
+#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "Сомалия"
-#: lang.pm:392
+#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "Суринам"
-#: lang.pm:393
+#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "Сао Томе и Принсипи"
-#: lang.pm:394
+#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "Ел Салвадор"
-#: lang.pm:395
+#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "Сирия"
-#: lang.pm:396
+#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "Свазиленд"
-#: lang.pm:397
+#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Тюрк и Кайкос Острови"
-#: lang.pm:398
+#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "Чад"
-#: lang.pm:399
+#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "Франция Южни Територии"
-#: lang.pm:400
+#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "Того"
-#: lang.pm:402
+#: lang.pm:416 mirror.pm:40 timezone.pm:211
+#, c-format
+msgid "Thailand"
+msgstr "Тайланд"
+
+#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "Таджикистан"
-#: lang.pm:403
+#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "Токелау"
-#: lang.pm:404
+#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "Източен Тимор"
-#: lang.pm:405
+#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "Туркменистан"
-#: lang.pm:406 network/adsl_consts.pm:931
+#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "Тунис"
-#: lang.pm:407
+#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "Тонга"
-#: lang.pm:408
+#: lang.pm:423 timezone.pm:212
#, c-format
msgid "Turkey"
msgstr "Турция"
-#: lang.pm:409
+#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "Тринидад и Тобаго"
-#: lang.pm:410
+#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "Тувалу"
-#: lang.pm:412
+#: lang.pm:426 mirror.pm:39 timezone.pm:210
+#, c-format
+msgid "Taiwan"
+msgstr "Тайван"
+
+#: lang.pm:427 timezone.pm:195
#, c-format
msgid "Tanzania"
msgstr "Танзания"
-#: lang.pm:413
+#: lang.pm:428 timezone.pm:243
#, c-format
msgid "Ukraine"
msgstr "Украйна"
-#: lang.pm:414
+#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "Уганда"
-#: lang.pm:415
+#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "Малки Острови по крайбрежието на САЩ"
-#: lang.pm:417
+#: lang.pm:431 mirror.pm:41 timezone.pm:251
+#, c-format
+msgid "United States"
+msgstr "САЩ"
+
+#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "Уругвай"
-#: lang.pm:418
+#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "Узбекистан"
-#: lang.pm:419
+#: lang.pm:434
#, c-format
msgid "Vatican"
msgstr "Ватикана"
-#: lang.pm:420
+#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "Свети Винсент и Гренадин"
-#: lang.pm:421
+#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "Венецуела"
-#: lang.pm:422
+#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "Вирджински Острови (Британски)"
-#: lang.pm:423
+#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Вирджински Острови (САЩ)"
-#: lang.pm:424
+#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "Виетнам"
-#: lang.pm:425
+#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "Вануату"
-#: lang.pm:426
+#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "Уолис и Футуна Острови"
-#: lang.pm:427
+#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "Самоа"
-#: lang.pm:428
+#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "Йемен"
-#: lang.pm:429
+#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "Майот"
-#: lang.pm:431
+#: lang.pm:445 mirror.pm:35 timezone.pm:194
+#, c-format
+msgid "South Africa"
+msgstr "Южна Африка"
+
+#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "Замбия"
-#: lang.pm:432
+#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "Зимбабве"
-#: lang.pm:1149
+#: lang.pm:1153
#, c-format
msgid "Welcome to %s"
msgstr "Добре дошли в %s"
@@ -9204,6 +4492,355 @@ msgstr "Първо премахни логичните дялово\n"
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:10
+#, fuzzy, c-format
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the Mandriva "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandriva Linux distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
+"Mandriva S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using the Software Products in any manner, you "
+"explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
+"Software Products.\n"
+"\n"
+"\n"
+"2. Limited Warranty\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
+"be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if Mandriva S.A. has been advised of the possibility or "
+"occurrence of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
+"\n"
+"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
+"no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Mandriva Linux sites which are prohibited or restricted in some "
+"countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
+"included in the Software Products.\n"
+"\n"
+"\n"
+"3. The GPL License and Related Licenses\n"
+"\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to Mandriva.\n"
+"The programs developed by Mandriva S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by Mandriva S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
+"\n"
+"\n"
+"4. Intellectual Property Rights\n"
+"\n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
+"as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
+"Mandriva S.A. \n"
+"\n"
+"\n"
+"5. Governing Laws \n"
+"\n"
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
+"For any question on this document, please contact Mandriva S.A. \n"
+msgstr ""
+"Въведение\n"
+"\n"
+"Операционната система и различните компоненти достъпни в Mandriva Linux "
+"дистрибуцията по-долу ще се\n"
+"наричат \"Софтуерен Продукти\". Софтуерните Продукти включват, но не се "
+"ограничават само до, набора\n"
+"програми, методи, правила и документация отнасяща се до операционната "
+"система и различните\n"
+"компоненти на Mandriva Linux дистрибуцията.\n"
+"\n"
+"\n"
+"1. Лицензионен договор\n"
+"\n"
+"Моля, прочетете внимателно този документ. Този документ е лицензионен "
+"договор между вас и\n"
+"Mandriva S.A., който се отнася до Софтуерния Продукт. Чрез инсталирането, "
+"копирането\n"
+"или използването на Софтуерния Продукт по какъвто и да е начин вие изрично "
+"приемате и\n"
+"напълно се съгласявате да спазвате сроковете и условията на този Лиценз.\n"
+"Ако не се съгласявате с някоя част на Лиценза, нямате право да инсталирате, "
+"копирате или\n"
+"използвате Софтуерния Продукт. Опитите да се инсталира, копира или използва "
+"Софтуерния Продукт\n"
+"несъобразно със сроковете и условията на този Лиценз се забраняват и такива "
+"прекратяват правата\n"
+"ви по този Лиценз. При прекратяване на Лиценза, трябва незабавно да "
+"унижтожите всички\n"
+"копия на Софтуерния лиценз.\n"
+"\n"
+"\n"
+"2. Ограничена гаранция\n"
+"\n"
+"Софтуерните Продукти и приложената документация се предоставят \"такива "
+"каквито са\", без гаранция,\n"
+"в рамките на разрешеното от закона.\n"
+"Mandriva S.A., при никакви обстоятелства и в рамките на закона, не е "
+"отговорна за каквито да e\n"
+"умишлени, случайни, преки или косвени щети (включително загуба на данни за "
+"работа, прекратяване на,\n"
+"работа, финансови загуби, законни данъци и наказания в резултат на съдебно "
+"решение или каквато и да е\n"
+"друга произлизащи от това загуби) произтичащи от употребата или от "
+"невъзможността да се употреби\n"
+"Софтуерния Продукт, даже ако Mandriva S.A. да е известила за възможността "
+"или случването на такава загуба.\n"
+"\n"
+"ОГРАНИЧЕНА ОТГОВОРНОСТ СВЪРЗАНА С ПРИТЕЖАВАНЕТО ИЛИ ИЗПОЛЗВАНЕТО НА ЗАБРАНЕН "
+"СОФТУЕР В НЯКОИ СТРАНИ\n"
+"\n"
+"В рамките на закона, Mandriva S.A. и нейните дистрибутори няма при никакви "
+"условия да бъдат\n"
+"отговорни за каквито и да било умишлени, случайни, преки или косвени щети "
+"(включително загуба на данни\n"
+"за работа, прекратяване на, работа, финансови загуби, законни данъци и "
+"наказания в резултат на\n"
+"съдебно решение или каквато и да е друга произлизащи от това загуби) "
+"произтичащи от притежаването\n"
+"и употребата на софтуерни компоненти и от изтеглянето на софтуерни "
+"компоненти от сайтовете на Mandriva Linux,\n"
+"които са забранени в някои страни от местното законодателство.\n"
+"Тази ограничена отговорност се отнася до, но не само за, мощните "
+"криптографски компоненти включени\n"
+"в Софтуерния Продукт.\n"
+"\n"
+"\n"
+"3. GPL Лиценза и придружаващи лицензи\n"
+"\n"
+"Софтуерният Продукт се състои от компоненти създадени от различни хора или "
+"организации. Повечето от\n"
+"тези компоненти се управляват от сроковете и условията на GNU Общия Публичен "
+"Лиценз, оттук нататък наричан\n"
+"\"GPL\", или подобни нему лицензи. Повечето от тези лицензи ви позволяват да "
+"използвате, копирате, или\n"
+"редистрибутирате компонентите, които те покриват. Моля, прочетете внимателно "
+"сроковете и условията на\n"
+"лицензионния договор на всеки компонент преди да го използвате. Всякакви "
+"въпроси относно лиценза\n"
+"на компонентите би трябвало да бъдат насочени към съответния им автор, а не "
+"към Mandriva.\n"
+"Програмите разработени от Mandriva S.A. се управляват от GPL Лиценза. "
+"Документацията написана\n"
+"от Mandriva S.A. се управлява от специален лиценз. Моля, погледнете "
+"документацията за\n"
+"повече информация.\n"
+"\n"
+"\n"
+"4. Права за Интелектуална Собственост\n"
+"\n"
+"Всички права към компонентите на Софтуерния Продукт принадлежат на "
+"съответните им автори и са\n"
+"защитени от законите за интелектуалната собственост и за копиране прилагани "
+"за софтуерните програми.\n"
+"Mandriva S.A. запазва правото си да модифицира и пригодява Софтуерния "
+"Продукт, като цяло или на\n"
+"части, по всякакъв начин и с всякакви цели.\n"
+"\"Mandriva\", \"Mandriva Linux\" и свързаните логота са запазена марка на "
+"Mandriva S.A.\n"
+"\n"
+"\n"
+"5. Управляващи Закони\n"
+"\n"
+"Ако някоя част от този договор се води забранена, нелегална или неприложима "
+"според решение на съд,\n"
+"тази част се изключва от договора. Вие оставате ограничени от останалите "
+"приложими секции на договора.\n"
+"Сроковете и условията на този Лиценз се управляват от Законите на Франция.\n"
+"Всички спорове по условията на този лиценз би било добре да се отнесат до "
+"съда. Като крайна мярка,\n"
+"споровете ще бъдат отнасяни до подходящия правни съдилища на Париж - "
+"Франция.\n"
+"За всякакви въпроси по този документ, моля, свържете се с Mandriva S.A.\n"
+"\n"
+"ЗАБЕЛЕЖКА: Това е български приблизителен превод на документа, което "
+"означава, че той\n"
+"вероятно не е достатъчно точен. Като по-достоверен източник ползвайте "
+"неговия оригинал на\n"
+"английски.\n"
+
+#: messages.pm:90
+#, c-format
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:98
+#, c-format
+msgid ""
+"\n"
+"Warning\n"
+"\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
+"\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
+msgstr ""
+"\n"
+"Внимание\n"
+"\n"
+"Моля, прочетете условията по-долу. Ако не сте съгласни с някое от тях,\n"
+"не можете да продължите инсталацията на следващия CD носител. Натиснете\n"
+"'Откажи', за да продължите инсталацията без тези носители.\n"
+"\n"
+"\n"
+"Някои компоненти съдържащи се в следващия CD носител не са разпространяват\n"
+"под GPL Лиценза или подобен такъв. Всеки такъв компонент е под условията\n"
+"и положенията на специфичния му лиценз. Моля, прочетете внимателно и изцяло\n"
+"тези специфични лицензи преди да използвате или разпространявате "
+"споменатите\n"
+"компоненти.\n"
+"Такива лицензи по принцип предотвратява преноса, копирането (освен с цел\n"
+"съхранение), разпространяването, обратния инженеринг, деасемблирането\n"
+"декомпилацията или модификацията на компонентите.\n"
+"Всяко нарушаване на спогодбата незабавно преустановява правата ви по\n"
+"специфичния лиценз. Освен ако специфичния лиценз ви дава такива права,\n"
+"обикновено не можете да инсталирате програмите на повече от една система\n"
+"или да ги пригаждате за използване в мрежа. Ако не сте сигурни, моля\n"
+"свържете се с дистрибуция или редактора на компонена.\n"
+"Прехвърлянето на трети лица или копирането на всяка компонента, включително\n"
+"на документацията, обикновено са забранени.\n"
+"\n"
+"\n"
+"Всички права на компонентите от следващия CD носител принадлежат на\n"
+"съответните им автори и са защитени като интелектуална собственост от\n"
+"законите за авторски права приложими за софтуерните програми.\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:131
+#, fuzzy, c-format
+msgid ""
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press Enter to reboot.\n"
+"\n"
+"\n"
+"For information on fixes which are available for this release of Mandriva "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandriva Linux User's Guide."
+msgstr ""
+"Поздравления, инсталацията е преключена.\n"
+"Премахнете стартовото устройство и натисене Enter за да рестартирайте.\n"
+"\n"
+"\n"
+"За информация относно поправки, на тази версия на Mandriva Linux,\n"
+"се консултирайте с Errata, на адрес : \n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Информация за настройване на системата ви можете да намерите в\n"
+"слединсталационната глава от Official Mandriva Linux User's Guide."
+
#: modules/interactive.pm:19
#, fuzzy, c-format
msgid "This driver has no configuration parameter!"
@@ -9266,19 +4903,14 @@ msgstr "Инсталиране на драйвер за %s платка %s"
msgid "Installing driver for %s card %s"
msgstr "Инсталиране на драйвер за %s платка %s"
-#: modules/interactive.pm:99
-#, c-format
-msgid "(module %s)"
-msgstr "(модул %s)"
-
-#: modules/interactive.pm:109
+#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: modules/interactive.pm:115
+#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9289,18 +4921,18 @@ msgstr ""
"Опциите са във формат ``име=стойност име2=стойност2 ...''.\n"
"Например: ``io=0x300 irq=7''"
-#: modules/interactive.pm:117
+#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "Опции на модула:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: modules/interactive.pm:130
+#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr "Кой %s драйвер да пробвам ?"
-#: modules/interactive.pm:139
+#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -9319,17 +4951,17 @@ msgstr ""
"от която се нуждае ? По принцип това може да забие компютъра ви, но няма да "
"го повреди."
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "Автоматично засичане"
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "Задай опции"
-#: modules/interactive.pm:155
+#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -9338,1861 +4970,17 @@ msgstr ""
"Зареждането на модула %s не успя.\n"
"Искате ли да опитате отново с други параметри ?"
-#: modules/parameters.pm:49
-#, c-format
-msgid "a number"
-msgstr "номер"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d със запетая разделени номера"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d със запетая разделен низ"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated numbers"
-msgstr "номера разделени със запетая"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated strings"
-msgstr "низове разделени със запетая"
-
-#: mouse.pm:25
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Мишка на Sun"
-
-#: mouse.pm:31 security/level.pm:12
-#, c-format
-msgid "Standard"
-msgstr "Стандартна"
-
-#: mouse.pm:32
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: mouse.pm:33
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Обикновенна PS2 мишка"
-
-#: mouse.pm:34
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/modem.pm:68 network/modem.pm:81 network/modem.pm:86
-#: network/modem.pm:115 network/netconnect.pm:596 network/netconnect.pm:601
-#: network/netconnect.pm:613 network/netconnect.pm:618
-#: network/netconnect.pm:634 network/netconnect.pm:636
-#, c-format
-msgid "Automatic"
-msgstr "Автоматично"
-
-#: mouse.pm:39 mouse.pm:73
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington THinking Mouse"
-
-#: mouse.pm:40 mouse.pm:68
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genuis NetMouse"
-
-#: mouse.pm:41
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: mouse.pm:42 mouse.pm:52
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
-
-#: mouse.pm:47 mouse.pm:79
-#, c-format
-msgid "1 button"
-msgstr "1 бутон"
-
-#: mouse.pm:48 mouse.pm:57
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Обикновенна 2-бутонна мишка"
-
-#: mouse.pm:50 mouse.pm:59
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Обикновенна 3-бутонна мишка с емулация на колелце"
-
-#: mouse.pm:51
-#, c-format
-msgid "Wheel"
-msgstr "Wheel"
-
-#: mouse.pm:55
-#, c-format
-msgid "serial"
-msgstr "серийна"
-
-#: mouse.pm:58
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Обикновенна 3-бутонна мишка"
-
-#: mouse.pm:60
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: mouse.pm:61
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: mouse.pm:62
-#, fuzzy, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan"
-
-#: mouse.pm:63
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: mouse.pm:65
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: mouse.pm:66
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Series с емулация на колелце"
-
-#: mouse.pm:67
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: mouse.pm:69
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
-
-#: mouse.pm:70
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: mouse.pm:71
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (серийна, от стария тип C7)"
-
-#: mouse.pm:72
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech Mouse (серийна, от стария тип C7) с емулация на колелце"
-
-#: mouse.pm:74
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington THinking Mouse с колелце"
-
-#: mouse.pm:77
-#, c-format
-msgid "busmouse"
-msgstr "BUS мишка"
-
-#: mouse.pm:80
-#, c-format
-msgid "2 buttons"
-msgstr "2 бутона"
-
-#: mouse.pm:81
-#, c-format
-msgid "3 buttons"
-msgstr "3 бутона"
-
-#: mouse.pm:82
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3 бутона с емулация на колелце"
-
-#: mouse.pm:86
-#, c-format
-msgid "Universal"
-msgstr "Universal"
-
-#: mouse.pm:88
-#, c-format
-msgid "Any PS/2 & USB mice"
-msgstr ""
-
-#: mouse.pm:89
-#, fuzzy, c-format
-msgid "Microsoft Xbox Controller S"
-msgstr "Microsoft Explorer"
-
-#: mouse.pm:93 standalone/drakconnect:351 standalone/drakvpn:1126
-#, c-format
-msgid "none"
-msgstr "няма"
-
-#: mouse.pm:95
-#, c-format
-msgid "No mouse"
-msgstr "Без мишка"
-
-#: mouse.pm:304 mouse.pm:367 mouse.pm:376 mouse.pm:435
-#, c-format
-msgid "Synaptics Touchpad"
-msgstr ""
-
-#: mouse.pm:561
-#, c-format
-msgid "Please test the mouse"
-msgstr "Моля, пробвайте мишката си"
-
-#: mouse.pm:563
-#, c-format
-msgid "To activate the mouse,"
-msgstr "За да активирате мишката си,"
-
-#: mouse.pm:564
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "БУТНЕТЕ ТОПЧЕТО !"
-
-#: network/drakfirewall.pm:12 share/compssUsers.pl:85
-#, c-format
-msgid "Web Server"
-msgstr "Web Сървър"
-
-#: network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "Domain Name Server"
-
-#: network/drakfirewall.pm:22
-#, fuzzy, c-format
-msgid "SSH server"
-msgstr "SSH Сървър"
-
-#: network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "FTP сървър"
-
-#: network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "Пощенски сървър"
-
-#: network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP и IMAP сървър"
-
-#: network/drakfirewall.pm:42
-#, fuzzy, c-format
-msgid "Telnet server"
-msgstr "X сървър"
-
-#: network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr ""
-
-#: network/drakfirewall.pm:54
-#, fuzzy, c-format
-msgid "CUPS server"
-msgstr "DNS сървър"
-
-#: network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr ""
-
-#: network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr ""
-
-#: network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr ""
-
-#: network/drakfirewall.pm:165
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-"Настройчик за малка защитна стена\n"
-"\n"
-"Това настройва персонална защитна стена за тази Mandriva Linux машина.\n"
-"За мощно постветено на защитата решение, моле, погледнете специализираната\n"
-"Mandriva Security Firewall дистрибуция."
-
-#: network/drakfirewall.pm:171
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-"drakfirewall конфигурация\n"
-"\n"
-"Убедете се, че вие имате конфигуриран Интернет/Интранет достъп с\n"
-"drakconnect преди да правите други неща по-нататък."
-
-#: network/drakfirewall.pm:188
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
-
-#: network/drakfirewall.pm:191
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-"Вие може да въведете други портове. \n"
-"Валидни са например: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Погледнете в /etc/services за информация"
-
-#: network/drakfirewall.pm:197
-#, fuzzy, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-"Зададен е грешен порт: %s.\n"
-"Форматът е \"port/tcp\" или \"port/udp\", \n"
-"където порт е между 1 и 65535."
-
-#: network/drakfirewall.pm:207
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Всичко (без firewall)"
-
-#: network/drakfirewall.pm:209
-#, c-format
-msgid "Other ports"
-msgstr "Други портовете"
-
-#: network/drakfirewall.pm:253 network/drakfirewall.pm:256
-#: standalone/drakids:33 standalone/drakids:136 standalone/drakids:145
-#: standalone/drakids:170 standalone/drakids:179 standalone/drakids:189
-#: standalone/drakids:265 standalone/net_applet:59 standalone/net_applet:202
-#: standalone/net_applet:385 standalone/net_applet:422
-#, fuzzy, c-format
-msgid "Interactive Firewall"
-msgstr "Защитна стена"
-
-#: network/drakfirewall.pm:254
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activity should be watched."
-msgstr ""
-
-#: network/drakfirewall.pm:259
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr ""
-
-#: network/ifw.pm:129
-#, fuzzy, c-format
-msgid "Port scanning"
-msgstr "Не поделя"
-
-#: network/ifw.pm:130
-#, fuzzy, c-format
-msgid "Service attack"
-msgstr "_Тип услуга:"
-
-#: network/ifw.pm:131
-#, fuzzy, c-format
-msgid "Password cracking"
-msgstr "Парола (отново)"
-
-#: network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr ""
-
-#: network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:135
-#, fuzzy, c-format
-msgid "The %s service has been attacked by %s."
-msgstr "Това събитие е било променено."
-
-#: network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:137
-#, fuzzy, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr "Това събитие е било променено."
-
-#: network/isdn.pm:117 network/netconnect.pm:463 network/netconnect.pm:557
-#: network/netconnect.pm:560 network/netconnect.pm:708
-#: network/netconnect.pm:712
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr ""
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "Не знам"
-
-#: network/isdn.pm:161 network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: network/isdn.pm:162 network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/netconnect.pm:601 network/netconnect.pm:618
-#: network/netconnect.pm:634
-#, c-format
-msgid "Manual"
-msgstr "Ръчно"
-
-#: network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr ""
-
-#: network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr ""
-
-#: network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr ""
-
-#: network/ndiswrapper.pm:89
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr ""
-
-#: network/ndiswrapper.pm:95
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-
-#: network/ndiswrapper.pm:101
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr ""
-
-#: network/netconnect.pm:69 network/netconnect.pm:493
-#: network/netconnect.pm:505
-#, fuzzy, c-format
-msgid "Manual choice"
-msgstr "ръчно"
-
-#: network/netconnect.pm:69
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Вътрешна ISDN карта"
-
-#: network/netconnect.pm:80 printer/printerdrake.pm:1622 standalone/drakups:72
-#, c-format
-msgid "Manual configuration"
-msgstr "Ръчна настройка"
-
-#: network/netconnect.pm:81 standalone/drakroam:121
-#, fuzzy, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr "Автоматичен IP адрес"
-
-#: network/netconnect.pm:83
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
-msgstr ""
-
-#: network/netconnect.pm:86
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Протокол за останалия свят"
-
-#: network/netconnect.pm:88 standalone/drakconnect:563
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Протокол Европа (EDSS1)"
-
-#: network/netconnect.pm:89 standalone/drakconnect:564
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Протокол за останалия свят\n"
-" без D-Канал (наета линия)"
-
-#: network/netconnect.pm:103 standalone/harddrake2:328
-#: standalone/net_monitor:102 standalone/net_monitor:103
-#: standalone/net_monitor:108
-#, c-format
-msgid "unknown"
-msgstr "неизвестен"
-
-#: network/netconnect.pm:120 network/thirdparty.pm:220
-#, fuzzy, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "Alcatel speedtouch USB"
-
-#: network/netconnect.pm:121
-#, fuzzy, c-format
-msgid "Sagem USB modem"
-msgstr "Системен режим"
-
-#: network/netconnect.pm:122
-#, c-format
-msgid "Bewan modem"
-msgstr ""
-
-#: network/netconnect.pm:123
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr ""
-
-#: network/netconnect.pm:127
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr ""
-
-#: network/netconnect.pm:128
-#, fuzzy, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "Ръчна настройка"
-
-#: network/netconnect.pm:129
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr ""
-
-#: network/netconnect.pm:130
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr ""
-
-#: network/netconnect.pm:131
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr ""
-
-#: network/netconnect.pm:132
-#, c-format
-msgid "DSL over CAPI"
-msgstr ""
-
-#: network/netconnect.pm:136
-#, fuzzy, c-format
-msgid "Bridged Ethernet LLC"
-msgstr "Ethernet карта"
-
-#: network/netconnect.pm:137
-#, fuzzy, c-format
-msgid "Bridged Ethernet VC"
-msgstr "Ethernet карта"
-
-#: network/netconnect.pm:138
-#, c-format
-msgid "Routed IP LLC"
-msgstr ""
-
-#: network/netconnect.pm:139
-#, c-format
-msgid "Routed IP VC"
-msgstr ""
-
-#: network/netconnect.pm:140
-#, c-format
-msgid "PPPoA LLC"
-msgstr ""
-
-#: network/netconnect.pm:141
-#, c-format
-msgid "PPPoA VC"
-msgstr ""
-
-#: network/netconnect.pm:145 standalone/drakconnect:498
-#, c-format
-msgid "Script-based"
-msgstr "Базирана на скрипт"
-
-#: network/netconnect.pm:146 standalone/drakconnect:498
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: network/netconnect.pm:147 standalone/drakconnect:498
-#, c-format
-msgid "Terminal-based"
-msgstr "Базирана на терминал"
-
-#: network/netconnect.pm:148 standalone/drakconnect:498
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: network/netconnect.pm:149 standalone/drakconnect:498
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: network/netconnect.pm:250 standalone/drakconnect:56
-#, fuzzy, c-format
-msgid "Network & Internet Configuration"
-msgstr "Настройка на мрежата"
-
-#: network/netconnect.pm:256
-#, c-format
-msgid "LAN connection"
-msgstr "LAN връзка"
-
-#: network/netconnect.pm:257 network/netconnect.pm:276 standalone/drakroam:182
-#: standalone/drakroam:220 standalone/drakroam:223
-#, c-format
-msgid "Wireless connection"
-msgstr "Безжична връзка"
-
-#: network/netconnect.pm:258
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL връзка"
-
-#: network/netconnect.pm:259
-#, c-format
-msgid "Cable connection"
-msgstr "Кабелна връзка"
-
-#: network/netconnect.pm:260
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN връзка"
-
-#: network/netconnect.pm:261
-#, c-format
-msgid "Modem connection"
-msgstr "Модем"
-
-#: network/netconnect.pm:262
-#, c-format
-msgid "DVB connection"
-msgstr ""
-
-#: network/netconnect.pm:272
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Изберете връзката, който искате да използвате"
-
-#: network/netconnect.pm:287 network/netconnect.pm:786
-#, c-format
-msgid "Connection Configuration"
-msgstr "Настройка на връзката"
-
-#: network/netconnect.pm:287 network/netconnect.pm:787
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Моля, попълнете или проверете полето по-долу"
-
-#: network/netconnect.pm:290
-#, c-format
-msgid "Your personal phone number"
-msgstr "Личния ви телефонен номер"
-
-#: network/netconnect.pm:291 network/netconnect.pm:790
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Име на доставчика (напр. provider.net)"
-
-#: network/netconnect.pm:292 standalone/drakconnect:493
-#, c-format
-msgid "Provider phone number"
-msgstr "Телефонен номер на доставчика"
-
-#: network/netconnect.pm:293
-#, fuzzy, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "1-ви DNS на доставчика (по желание)"
-
-#: network/netconnect.pm:294
-#, fuzzy, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "2-ри DNS на доставчика (по желание)"
-
-#: network/netconnect.pm:295 standalone/drakconnect:444
-#, c-format
-msgid "Dialing mode"
-msgstr "Режим на набиране"
-
-#: network/netconnect.pm:296 standalone/drakconnect:449
-#: standalone/drakconnect:517
-#, c-format
-msgid "Connection speed"
-msgstr "Скорост на връзката"
-
-#: network/netconnect.pm:297 standalone/drakconnect:454
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Timeout на връзката (в сек)"
-
-#: network/netconnect.pm:298 network/netconnect.pm:323
-#: network/netconnect.pm:793 standalone/drakconnect:491
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Име на акаунта (потебителско име)"
-
-#: network/netconnect.pm:299 network/netconnect.pm:324
-#: network/netconnect.pm:794 standalone/drakconnect:492
-#, c-format
-msgid "Account Password"
-msgstr "Парола на акаунта"
-
-#: network/netconnect.pm:300 standalone/drakconnect:554
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ на картата"
-
-#: network/netconnect.pm:301 standalone/drakconnect:555
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Памет (DMA) на картата"
-
-#: network/netconnect.pm:302 standalone/drakconnect:556
-#, c-format
-msgid "Card IO"
-msgstr "IO на картата"
-
-#: network/netconnect.pm:303 standalone/drakconnect:557
-#, c-format
-msgid "Card IO_0"
-msgstr "IO_0 на картата"
-
-#: network/netconnect.pm:304
-#, c-format
-msgid "Card IO_1"
-msgstr "IO_1 на картата"
-
-#: network/netconnect.pm:319
-#, fuzzy, c-format
-msgid "Cable: account options"
-msgstr "Опции за избиране по телефон"
-
-#: network/netconnect.pm:322
-#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr ""
-
-#: network/netconnect.pm:348 network/netconnect.pm:670
-#: network/netconnect.pm:826 network/netconnect.pm:1170
-#, fuzzy, c-format
-msgid "Select the network interface to configure:"
-msgstr "Изберете мрежов интерфейс"
-
-#: network/netconnect.pm:350 network/netconnect.pm:385
-#: network/netconnect.pm:671 network/netconnect.pm:828 network/shorewall.pm:70
-#: standalone/drakconnect:714
-#, c-format
-msgid "Net Device"
-msgstr "Мрежово у-во"
-
-#: network/netconnect.pm:351 network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr "Външен ISDN модем"
-
-#: network/netconnect.pm:384 standalone/harddrake2:215
-#, c-format
-msgid "Select a device!"
-msgstr "Изберете устройство !"
-
-#: network/netconnect.pm:393 network/netconnect.pm:403
-#: network/netconnect.pm:413 network/netconnect.pm:446
-#: network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Настройка на IDSN"
-
-#: network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Какъв тип карта имате ?"
-
-#: network/netconnect.pm:404
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"Ако имате ISA карта, стойностите на следващия екран трябва да са верни.\n"
-"\n"
-"Ако имате PCMCIA карта, ще трябва да знаете IRC и IO на картата си.\n"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "Нататък"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "Отказ"
-
-#: network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Коя от следните ISDN картати е вашата ?"
-
-#: network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-
-#: network/netconnect.pm:434 standalone/drakconnect:109 standalone/drakups:249
-#: standalone/harddrake2:133
-#, c-format
-msgid "Driver"
-msgstr "Драйвер"
-
-#: network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Какъв протокол желаете да промените ?"
-
-#: network/netconnect.pm:448 standalone/drakconnect:109
-#: standalone/drakconnect:300 standalone/drakconnect:562
-#: standalone/drakids:207 standalone/drakvpn:1128
-#, c-format
-msgid "Protocol"
-msgstr "Протокол"
-
-#: network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"Посочете доставчика си.\n"
-" Ако не е в списъка, изберете Unlisted"
-
-#: network/netconnect.pm:462 network/netconnect.pm:556
-#: network/netconnect.pm:707
-#, fuzzy, c-format
-msgid "Provider:"
-msgstr "Профил: "
-
-#: network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"Вашият модем не се поддържа от системата.\n"
-"Погледнете в http://www.linmodems.org"
-
-#: network/netconnect.pm:490
-#, fuzzy, c-format
-msgid "Select the modem to configure:"
-msgstr "Изберете мрежов интерфейс"
-
-#: network/netconnect.pm:525
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Моля, изберете сериен порт към който свързан модемът ви."
-
-#: network/netconnect.pm:554
-#, fuzzy, c-format
-msgid "Select your provider:"
-msgstr "Изберете принтерен spooler"
-
-#: network/netconnect.pm:578
-#, fuzzy, c-format
-msgid "Dialup: account options"
-msgstr "Опции за избиране по телефон"
-
-#: network/netconnect.pm:581
-#, c-format
-msgid "Connection name"
-msgstr "Име на връзката"
-
-#: network/netconnect.pm:582
-#, c-format
-msgid "Phone number"
-msgstr "Телефонен номер"
-
-#: network/netconnect.pm:583
-#, c-format
-msgid "Login ID"
-msgstr "Потребителско име"
-
-#: network/netconnect.pm:598 network/netconnect.pm:631
-#, fuzzy, c-format
-msgid "Dialup: IP parameters"
-msgstr "Параметри"
-
-#: network/netconnect.pm:601
-#, fuzzy, c-format
-msgid "IP parameters"
-msgstr "Параметри"
-
-#: network/netconnect.pm:602 network/netconnect.pm:941
-#: printer/printerdrake.pm:460 standalone/drakconnect:109
-#: standalone/drakconnect:316 standalone/drakconnect:882
-#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:284
-#, c-format
-msgid "IP address"
-msgstr "IP адрес"
-
-#: network/netconnect.pm:603
-#, fuzzy, c-format
-msgid "Subnet mask"
-msgstr "Маска на подмрежа:"
-
-#: network/netconnect.pm:615
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr ""
-
-#: network/netconnect.pm:618
-#, c-format
-msgid "DNS"
-msgstr "Домейн"
-
-#: network/netconnect.pm:619
-#, c-format
-msgid "Domain name"
-msgstr "Име на домейна"
-
-#: network/netconnect.pm:620 network/netconnect.pm:791
-#: standalone/drakconnect:992
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Първи DNS сървър (по избор)"
-
-#: network/netconnect.pm:621 network/netconnect.pm:792
-#: standalone/drakconnect:993
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Втори DNS сървър (по избор)"
-
-#: network/netconnect.pm:622
-#, fuzzy, c-format
-msgid "Set hostname from IP"
-msgstr "Име на хост за принтера или IP"
-
-#: network/netconnect.pm:634 standalone/drakconnect:327
-#, c-format
-msgid "Gateway"
-msgstr "Gateway"
-
-#: network/netconnect.pm:635 standalone/drakroam:124
-#, fuzzy, c-format
-msgid "Gateway IP address"
-msgstr "IP адрес"
-
-#: network/netconnect.pm:670
-#, fuzzy, c-format
-msgid "ADSL configuration"
-msgstr "Настройка на LAN"
-
-#: network/netconnect.pm:705
-#, fuzzy, c-format
-msgid "Please choose your ADSL provider"
-msgstr "Моля, изберете вашата страна."
-
-#: network/netconnect.pm:735
-#, c-format
-msgid ""
-"Please choose your DSL connection type.\n"
-"If you do not know it, keep the preselected type."
-msgstr ""
-
-#: network/netconnect.pm:738
-#, fuzzy, c-format
-msgid "ADSL connection type:"
-msgstr "ADSL връзка"
-
-#: network/netconnect.pm:796
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr ""
-
-#: network/netconnect.pm:797
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr ""
-
-#: network/netconnect.pm:800
-#, fuzzy, c-format
-msgid "Encapsulation:"
-msgstr "Ключ за криптиране"
-
-#: network/netconnect.pm:830
-#, c-format
-msgid "Manually load a driver"
-msgstr ""
-
-#: network/netconnect.pm:831
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr ""
-
-#: network/netconnect.pm:896
-#, fuzzy, c-format
-msgid "Zeroconf hostname resolution"
-msgstr "Име на Zeroconf хост:"
-
-#: network/netconnect.pm:897 network/netconnect.pm:928
-#, fuzzy, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "Настройка на мрежовото устройство %s"
-
-#: network/netconnect.pm:898
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use"
-msgstr ""
-
-#: network/netconnect.pm:929
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Моля, въведете IP настройките за тази машина.\n"
-"Всяко устройство трябва да бъде въведено като IP адрес\n"
-"с точково-десетично означение (например, 1.2.3.4)."
-
-#: network/netconnect.pm:936 standalone/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Получаване на име от DHCP адрес"
-
-#: network/netconnect.pm:937 standalone/drakconnect:375
-#, c-format
-msgid "DHCP host name"
-msgstr "Име на DHCP хост"
-
-#: network/netconnect.pm:942 standalone/drakconnect:321
-#: standalone/drakconnect:883 standalone/drakgw:181
-#, c-format
-msgid "Netmask"
-msgstr "Мрежова маска"
-
-#: network/netconnect.pm:944 standalone/drakconnect:437
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Проследяване на ID на мрежовата карта (полезно при лаптопи)"
-
-#: network/netconnect.pm:945 standalone/drakconnect:438
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Мрежов Hotplugging"
-
-#: network/netconnect.pm:947 standalone/drakconnect:432
-#, c-format
-msgid "Start at boot"
-msgstr "Изпълнение при стартиране"
-
-#: network/netconnect.pm:949 standalone/drakconnect:460
-#, fuzzy, c-format
-msgid "Metric"
-msgstr "ограничи"
-
-#: network/netconnect.pm:950
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr ""
-
-#: network/netconnect.pm:952 standalone/drakconnect:369
-#: standalone/drakconnect:886
-#, c-format
-msgid "DHCP client"
-msgstr "DHCP клиент"
-
-#: network/netconnect.pm:954 standalone/drakconnect:379
-#, fuzzy, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "Timeout на връзката (в сек)"
-
-#: network/netconnect.pm:955 standalone/drakconnect:382
-#, fuzzy, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "DNS сървър IP"
-
-#: network/netconnect.pm:956 standalone/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:957 standalone/drakconnect:384
-#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:965 printer/printerdrake.pm:1876
-#: standalone/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP адресът трябва да бъде във формат 1.2.3.4"
-
-#: network/netconnect.pm:969 standalone/drakconnect:680
-#, fuzzy, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "Gateway адреса трябва да бъде във формат 1.2.3.4"
-
-#: network/netconnect.pm:973
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr ""
-
-#: network/netconnect.pm:978 standalone/drakTermServ:1927
-#: standalone/drakTermServ:1928 standalone/drakTermServ:1929
-#, c-format
-msgid "%s already in use\n"
-msgstr ""
-
-#: network/netconnect.pm:1018
-#, fuzzy, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "Избор на случаен драйвер"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr ""
-
-#: network/netconnect.pm:1020
-#, fuzzy, c-format
-msgid "Install a new driver"
-msgstr "Инсталиране на системата"
-
-#: network/netconnect.pm:1032
-#, c-format
-msgid "Select a device:"
-msgstr ""
-
-#: network/netconnect.pm:1061
-#, fuzzy, c-format
-msgid "Please enter the wireless parameters for this card:"
-msgstr "Моля, въведете име на хост или IP."
-
-#: network/netconnect.pm:1064 standalone/drakconnect:404
-#: standalone/drakroam:52
-#, fuzzy, c-format
-msgid "Operating Mode"
-msgstr "Разширени функиции"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Ad-hoc"
-msgstr ""
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Managed"
-msgstr "Управляем"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Master"
-msgstr "Главен"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Repeater"
-msgstr "Повтаряем"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Secondary"
-msgstr "Вторичен"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Auto"
-msgstr "Автоматично"
-
-#: network/netconnect.pm:1068 standalone/drakconnect:405
-#: standalone/drakroam:115
-#, c-format
-msgid "Network name (ESSID)"
-msgstr ""
-
-#: network/netconnect.pm:1069 standalone/drakroam:116
-#, c-format
-msgid "Encryption mode"
-msgstr ""
-
-#: network/netconnect.pm:1074
-#, c-format
-msgid "Allow access point roaming"
-msgstr ""
-
-#: network/netconnect.pm:1076 standalone/drakconnect:406
-#, fuzzy, c-format
-msgid "Network ID"
-msgstr "Мрежа"
-
-#: network/netconnect.pm:1077 standalone/drakconnect:407
-#, c-format
-msgid "Operating frequency"
-msgstr ""
-
-#: network/netconnect.pm:1078 standalone/drakconnect:408
-#, c-format
-msgid "Sensitivity threshold"
-msgstr ""
-
-#: network/netconnect.pm:1079 standalone/drakconnect:409
-#, c-format
-msgid "Bitrate (in b/s)"
-msgstr ""
-
-#: network/netconnect.pm:1080 standalone/drakconnect:420
-#, c-format
-msgid "RTS/CTS"
-msgstr ""
-
-#: network/netconnect.pm:1081
-#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
-
-#: network/netconnect.pm:1088 standalone/drakconnect:421
-#, fuzzy, c-format
-msgid "Fragmentation"
-msgstr "Игрална станция"
-
-#: network/netconnect.pm:1089 standalone/drakconnect:422
-#, c-format
-msgid "iwconfig command extra arguments"
-msgstr ""
-
-#: network/netconnect.pm:1090
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-
-#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1097 standalone/drakconnect:423
-#, c-format
-msgid "iwspy command extra arguments"
-msgstr ""
-
-#: network/netconnect.pm:1098
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-
-#: network/netconnect.pm:1107 standalone/drakconnect:424
-#, c-format
-msgid "iwpriv command extra arguments"
-msgstr ""
-
-#: network/netconnect.pm:1108
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-
-#: network/netconnect.pm:1123
-#, c-format
-msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
-msgstr ""
-
-#: network/netconnect.pm:1127
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-
-#: network/netconnect.pm:1170
-#, c-format
-msgid "DVB configuration"
-msgstr ""
-
-#: network/netconnect.pm:1171
-#, c-format
-msgid "DVB Adapter"
-msgstr ""
-
-#: network/netconnect.pm:1188
-#, c-format
-msgid "DVB adapter settings"
-msgstr ""
-
-#: network/netconnect.pm:1191
-#, c-format
-msgid "Adapter card"
-msgstr ""
-
-#: network/netconnect.pm:1192
-#, c-format
-msgid "Net demux"
-msgstr ""
-
-#: network/netconnect.pm:1193
-#, c-format
-msgid "PID"
-msgstr "Процес"
-
-#: network/netconnect.pm:1221
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Моля, въведете host name за машината.\n"
-"Host името трябва да буде напълно квалифицирано име,\n"
-"като ``mybox.mylab.myco.com''.\n"
-"Можете също да въведете IP адреса на Вашия gateway, ако имате такъв"
-
-#: network/netconnect.pm:1226
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr ""
-
-#: network/netconnect.pm:1228 standalone/drakconnect:991
-#, fuzzy, c-format
-msgid "Host name (optional)"
-msgstr "Първи DNS сървър (по избор)"
-
-#: network/netconnect.pm:1228 standalone/drakhosts:197
-#, c-format
-msgid "Host name"
-msgstr "Име на хост:"
-
-#: network/netconnect.pm:1230
-#, fuzzy, c-format
-msgid "DNS server 1"
-msgstr "DNS сървър"
-
-#: network/netconnect.pm:1231
-#, fuzzy, c-format
-msgid "DNS server 2"
-msgstr "DNS сървър"
-
-#: network/netconnect.pm:1232
-#, fuzzy, c-format
-msgid "DNS server 3"
-msgstr "DNS сървър"
-
-#: network/netconnect.pm:1233
-#, fuzzy, c-format
-msgid "Search domain"
-msgstr "NIS домейн"
-
-#: network/netconnect.pm:1234
-#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr ""
-
-#: network/netconnect.pm:1235
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Gateway (напр. %s)"
-
-#: network/netconnect.pm:1237
-#, c-format
-msgid "Gateway device"
-msgstr "Gateway устройство"
-
-#: network/netconnect.pm:1246
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "DNS сървъра трябва да бъде във формат 1.2.3.4"
-
-#: network/netconnect.pm:1251 standalone/drakconnect:685
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Gateway адреса трябва да бъде във формат 1.2.3.4"
-
-#: network/netconnect.pm:1264
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-
-#: network/netconnect.pm:1268
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Име на Zeroconf хост:"
-
-#: network/netconnect.pm:1271
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr ""
-
-#: network/netconnect.pm:1281
-#, fuzzy, c-format
-msgid "Do you want to allow users to start the connection?"
-msgstr "Искате ли да стартирате връзката си при зареждане ?"
-
-#: network/netconnect.pm:1294
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Искате ли да стартирате връзката си при зареждане ?"
-
-#: network/netconnect.pm:1310
-#, fuzzy, c-format
-msgid "Automatically at boot"
-msgstr "Изпълнение при стартиране"
-
-#: network/netconnect.pm:1312
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr ""
-
-#: network/netconnect.pm:1314
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr ""
-
-#: network/netconnect.pm:1323
-#, fuzzy, c-format
-msgid "How do you want to dial this connection?"
-msgstr "Искате ли да стартирате връзката си при зареждане ?"
-
-#: network/netconnect.pm:1336
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Искате ли сега да опитате връзка към Интернет ?"
-
-#: network/netconnect.pm:1344 standalone/drakconnect:1023
-#, c-format
-msgid "Testing your connection..."
-msgstr "Изпробване на връзката..."
-
-#: network/netconnect.pm:1369
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Системата в момента е свързана към Интернет."
-
-#: network/netconnect.pm:1370
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "За ваша сигурност, сега тя ще бъдете отвързана."
-
-#: network/netconnect.pm:1371
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Системата не изглежда свързана към Интернет.\n"
-"Опитайте се да пренастроите връзката."
-
-#: network/netconnect.pm:1386
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-"Поздравления, мрежовата и интернет настройката е завършена.\n"
-"\n"
-
-#: network/netconnect.pm:1389
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"След като стане това, препоръчваме ви да рестартирате X\n"
-"средата си, за да избегнете проблеми със смяната името на хоста."
-
-#: network/netconnect.pm:1390
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-"Появи се проблем при конфигурацията.\n"
-"Проверете вашата връзка през net_monitor или mcc. Ако вашата връзка не "
-"работи , вие трябва да преконфигурирате."
-
-#: network/netconnect.pm:1402
-#, fuzzy, c-format
-msgid "(detected on port %s)"
-msgstr "засечен на порт %s"
-
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1404
-#, fuzzy, c-format
-msgid "(detected %s)"
-msgstr "засечена %s"
-
-#: network/netconnect.pm:1404
-#, fuzzy, c-format
-msgid "(detected)"
-msgstr "засечена "
-
-#: network/netconnect.pm:1405
-#, c-format
-msgid "Network Configuration"
-msgstr "Настройка на мрежата"
-
-#: network/netconnect.pm:1406
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Тъй като правите мрежова инсталация, мрежата ви вече е настроена.\n"
-"Цъкнете Ok, за да запазите настройката, или Отмяна, за да пренастоите "
-"Интернет и мрежовата си връзка.\n"
-
-#: network/netconnect.pm:1409
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr "Мрежата се нуждае от престартиране. Искате ли да я престартирам?"
-
-#: network/netconnect.pm:1410
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Изникна проблем при рестартирането на мрежата:\n"
-"\n"
-"%s"
-
-#: network/netconnect.pm:1411
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-"Сега ще настроим %s връзката.\n"
-"\n"
-"\n"
-"\n"
-"Натиснете \"%s\", за да продължите."
-
-#: network/netconnect.pm:1412
-#, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr "Настройката завърши,желаете ли да я приложите ?"
-
-#: network/netconnect.pm:1413
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Настроили сте няколко начина за връзка към Интернет.\n"
-"Изберете този, който искате да използвате.\n"
-"\n"
-
-#: network/netconnect.pm:1414
-#, c-format
-msgid "Internet connection"
-msgstr "Интернет връзка"
-
-#: network/netconnect.pm:1428
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-
-#: network/network.pm:411
-#, c-format
-msgid "Proxies configuration"
-msgstr "Настройка на proxy"
-
-#: network/network.pm:412
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-
-#: network/network.pm:413
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: network/network.pm:414
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: network/network.pm:415
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: network/network.pm:416
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: network/network.pm:420
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Proxy-сървъра трябва да е http://..."
-
-#: network/network.pm:421
-#, c-format
-msgid "Proxy should be https?://..."
-msgstr ""
-
-#: network/network.pm:422
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URL трябва да е започва с 'ftp:' или 'http:'"
-
-#: network/shorewall.pm:55
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-
-#: network/thirdparty.pm:232
-#, c-format
-msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
-msgstr ""
-
-#: network/thirdparty.pm:241
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-
-#: network/thirdparty.pm:321
-#, fuzzy, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "Инсталиране на пакета %s"
-
-#: network/thirdparty.pm:329
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr ""
-
-#: network/thirdparty.pm:330
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-
-#: network/thirdparty.pm:332
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-
-#: network/thirdparty.pm:372
-#, fuzzy, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "Изтрива шрифтове от вашата система"
-
-#: network/thirdparty.pm:374
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr ""
-
-#: network/thirdparty.pm:384
-#, c-format
-msgid "Insert floppy"
-msgstr "Сложете дискета във флопито"
-
-#: network/thirdparty.pm:385
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"Сложете FAT форматирана дискета в устройство %s с %s в главната директория и "
-"натиснете %s"
-
-#: network/thirdparty.pm:395
-#, fuzzy, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Къде искате да монтирате устройство %s ?"
-
-#: network/thirdparty.pm:405
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-
-#: network/thirdparty.pm:409 network/thirdparty.pm:411
-#, fuzzy, c-format
-msgid "Use a floppy"
-msgstr "Запази на дискета"
-
-#: network/thirdparty.pm:409
-#, fuzzy, c-format
-msgid "Use my Windows partition"
-msgstr "Изчислявам границите на Windows файловата система"
-
-#: network/thirdparty.pm:419
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr ""
-
-#: network/thirdparty.pm:424 standalone/drakautoinst:250
-#: standalone/drakvpn:888 standalone/scannerdrake:422
-#, c-format
-msgid "Congratulations!"
-msgstr "Поздравления !"
-
-#: network/thirdparty.pm:424
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr ""
-
-#: network/thirdparty.pm:493
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr ""
-
-#: network/thirdparty.pm:498
-#, fuzzy, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "Моля, изберете ниво на сигурност..."
-
-#: network/wireless.pm:8
-#, c-format
-msgid "Open WEP"
-msgstr ""
-
-#: network/wireless.pm:9
-#, c-format
-msgid "Restricted WEP"
-msgstr ""
-
-#: network/wireless.pm:10
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr ""
-
-#: partition_table.pm:391
+#: partition_table.pm:390
#, c-format
msgid "mount failed: "
msgstr "монтирането не успя: "
-#: partition_table.pm:496
+#: partition_table.pm:500
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Разширени дялове не се поддържат на тази платформа"
-#: partition_table.pm:514
+#: partition_table.pm:518
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
@@ -11203,22 +4991,27 @@ msgstr ""
"Единственият начин е да преместите главните си дялове, за да имате празно "
"място след extended-дяловете"
-#: partition_table.pm:605
+#: partition_table.pm:597
+#, c-format
+msgid "Error reading file %s"
+msgstr "Грешка при четенето на файла %s"
+
+#: partition_table.pm:604
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Възстановяването от файла %s не успя: %s"
-#: partition_table.pm:607
+#: partition_table.pm:606
#, c-format
msgid "Bad backup file"
msgstr "Лош backup-файл"
-#: partition_table.pm:627
+#: partition_table.pm:626
#, c-format
msgid "Error writing to file %s"
msgstr "Грешка при запис във файла %s"
-#: partition_table/raw.pm:253
+#: partition_table/raw.pm:264
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
@@ -11231,3235 +5024,47 @@ msgstr ""
"Това значи, че писането на каквото и било по диска ще превръща\n"
"произволно в боклук"
-#: pkgs.pm:21
-#, c-format
-msgid "must have"
-msgstr "нужен"
-
-#: pkgs.pm:22
-#, c-format
-msgid "important"
-msgstr "важен"
-
-#: pkgs.pm:23
-#, c-format
-msgid "very nice"
-msgstr "много добър"
-
-#: pkgs.pm:24
-#, c-format
-msgid "nice"
-msgstr "добър"
-
-#: pkgs.pm:25
-#, c-format
-msgid "maybe"
-msgstr "става"
-
-#: pkgs.pm:474
-#, fuzzy, c-format
-msgid "Downloading file %s..."
-msgstr "Изпращам файлове..."
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on %s)"
-msgstr "(на %s)"
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on this machine)"
-msgstr "(на тази машина)"
-
-#: printer/cups.pm:117 standalone/printerdrake:200
-#, c-format
-msgid "Configured on other machines"
-msgstr "Настроено на други машини"
-
-#: printer/cups.pm:119
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "На CUPS сървър \"%s\""
-
-#: printer/cups.pm:119 printer/printerdrake.pm:4909
-#: printer/printerdrake.pm:4919 printer/printerdrake.pm:5078
-#: printer/printerdrake.pm:5089 printer/printerdrake.pm:5303
-#, c-format
-msgid " (Default)"
-msgstr " (По подразбиране)"
-
-#: printer/data.pm:67
-#, c-format
-msgid "PDQ - Print, Do not Queue"
-msgstr "PDQ - Печатай, Без Опашка"
-
-#: printer/data.pm:68
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: printer/data.pm:80
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Линеен Принтерен Демон"
-
-#: printer/data.pm:81
-#, c-format
-msgid "LPD"
-msgstr "LPD"
-
-#: printer/data.pm:102
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR Ново поколение"
-
-#: printer/data.pm:103
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
-
-#: printer/data.pm:128
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Обща Unix Принтерна Система"
-
-#: printer/data.pm:158
-#, fuzzy, c-format
-msgid "CUPS - Common Unix Printing System (remote server)"
-msgstr "CUPS - Обща Unix Принтерна Система"
-
-#: printer/data.pm:159
-#, fuzzy, c-format
-msgid "Remote CUPS"
-msgstr "Отдалечен CUPS сървър"
-
-#: printer/detect.pm:168 printer/detect.pm:263 printer/detect.pm:498
-#: printer/detect.pm:571 printer/main.pm:330 printer/main.pm:692
-#: printer/main.pm:1815 printer/printerdrake.pm:960
-#: printer/printerdrake.pm:1120 printer/printerdrake.pm:2448
-#: printer/printerdrake.pm:4004
-#, c-format
-msgid "Unknown model"
-msgstr "Неизвестен модел"
-
-#: printer/main.pm:24
-#, c-format
-msgid "Local printer"
-msgstr "Локален принтер"
-
-#: printer/main.pm:25
-#, c-format
-msgid "Remote printer"
-msgstr "Отдалечен принтер"
-
-#: printer/main.pm:26
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Принтер на отдалечен CUPS сървър"
-
-#: printer/main.pm:27 printer/printerdrake.pm:1360
-#: printer/printerdrake.pm:1899
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Принтер на отдалечен LPD сървър"
-
-#: printer/main.pm:28
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Мрежов принтер (TCP/Socket)"
-
-#: printer/main.pm:29
-#, fuzzy, c-format
-msgid "Printer on SMB/Windows server"
-msgstr "Принтер на SMB/Windows 95/98/NT сървър"
-
-#: printer/main.pm:30
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Принтер на NetWare сървър"
-
-#: printer/main.pm:31 printer/printerdrake.pm:1903
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Въведете URI на печатащо устройство"
-
-#: printer/main.pm:32
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Прекарай заданието през команда"
-
-#: printer/main.pm:43
-#, c-format
-msgid "recommended"
-msgstr "препоръчително"
-
-#: printer/main.pm:355 standalone/printerdrake:199
-#, fuzzy, c-format
-msgid "Configured on this machine"
-msgstr "(на тази машина)"
-
-#: printer/main.pm:361 printer/printerdrake.pm:1445
-#, c-format
-msgid " on parallel port #%s"
-msgstr " на паралелен порт #%s"
-
-#: printer/main.pm:364 printer/printerdrake.pm:1448
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", USB принтер #%s"
-
-#: printer/main.pm:366
-#, c-format
-msgid ", USB printer"
-msgstr ", USB принтер"
-
-#: printer/main.pm:370
-#, c-format
-msgid ", HP printer on a parallel port"
-msgstr ", HP пример на паралелен порт"
-
-#: printer/main.pm:372
-#, c-format
-msgid ", HP printer on USB"
-msgstr ", HP принтер на USB"
-
-#: printer/main.pm:374
-#, c-format
-msgid ", HP printer on HP JetDirect"
-msgstr ", HP принтер на HP JetDirect"
-
-#: printer/main.pm:376
-#, c-format
-msgid ", HP printer"
-msgstr ", HP принтер"
-
-#: printer/main.pm:382
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", многофункционално устройство на на паралелен порт #%s"
-
-#: printer/main.pm:385
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", многофункционално устройство на паралелен порт"
-
-#: printer/main.pm:387
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", многофункционално устройство на USB"
-
-#: printer/main.pm:389
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", многофункционално устройство на HP JetDirect"
-
-#: printer/main.pm:391
-#, c-format
-msgid ", multi-function device"
-msgstr ", многофункционално устройство"
-
-#: printer/main.pm:395
-#, c-format
-msgid ", printing to %s"
-msgstr ", печат на %s"
-
-#: printer/main.pm:398
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr " на LPD сървър \"%s\", принтер \"%s\""
-
-#: printer/main.pm:401
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP хост \"%s\", порт %s"
-
-#: printer/main.pm:406
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr " на SMB/Windows сървър \"%s\", поделен \"%s\""
-
-#: printer/main.pm:411
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " на Novell сървър \"%s\", принтер \"%s\""
-
-#: printer/main.pm:414
-#, c-format
-msgid ", using command %s"
-msgstr ", използва команда %s"
-
-#: printer/main.pm:429
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Паралелен порт #%s"
-
-#: printer/main.pm:432 printer/printerdrake.pm:1466
-#: printer/printerdrake.pm:1493 printer/printerdrake.pm:1508
-#, c-format
-msgid "USB printer #%s"
-msgstr "USB принтер #%s"
-
-#: printer/main.pm:434
-#, c-format
-msgid "USB printer"
-msgstr "USB принтер"
-
-#: printer/main.pm:438
-#, c-format
-msgid "HP printer on a parallel port"
-msgstr "HP пример на паралелен порт"
-
-#: printer/main.pm:440
-#, c-format
-msgid "HP printer on USB"
-msgstr "HP принтер на USB"
-
-#: printer/main.pm:442
-#, c-format
-msgid "HP printer on HP JetDirect"
-msgstr "HP принтер на HP JetDirect"
-
-#: printer/main.pm:444
-#, c-format
-msgid "HP printer"
-msgstr "HP принтер"
-
-#: printer/main.pm:450
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Многофункционално устройство на на паралелен порт %s"
-
-#: printer/main.pm:453
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "многофункционално устройство на паралелен порт"
-
-#: printer/main.pm:455
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "Многофункционално устройство на USB"
-
-#: printer/main.pm:457
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Многофункционално устройство на HP JetDirect"
-
-#: printer/main.pm:459
-#, c-format
-msgid "Multi-function device"
-msgstr "Многофункционално устройство"
-
-#: printer/main.pm:463
-#, c-format
-msgid "Prints into %s"
-msgstr "Печат на %s"
-
-#: printer/main.pm:466
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "LPD сървър \"%s\", принтер \"%s\""
-
-#: printer/main.pm:469
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "TCP/IP хост \"%s\", порт %s"
-
-#: printer/main.pm:474
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "SMB/Windows сървър \"%s\", дял \"%s\""
-
-#: printer/main.pm:479
-#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Novell сървър \"%s\", принтер \"%s\""
-
-#: printer/main.pm:482
-#, fuzzy, c-format
-msgid "Uses command %s"
-msgstr ", използва команда %s"
-
-#: printer/main.pm:484
-#, c-format
-msgid "URI: %s"
-msgstr "Адрес: %s"
-
-#: printer/main.pm:689 printer/printerdrake.pm:1047
-#: printer/printerdrake.pm:3142
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "'Raw' принтер (Без драйвер)"
-
-#: printer/main.pm:1309 printer/printerdrake.pm:211
-#: printer/printerdrake.pm:223
-#, c-format
-msgid "Local network(s)"
-msgstr "Локална мрежа(и)"
-
-#: printer/main.pm:1311 printer/printerdrake.pm:227
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Интерфейс \"%s\""
-
-#: printer/main.pm:1313
-#, c-format
-msgid "Network %s"
-msgstr "Мрежа %s"
-
-#: printer/main.pm:1315
-#, c-format
-msgid "Host %s"
-msgstr "Хост %s"
-
-#: printer/main.pm:1344
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Порт %s)"
-
-#: printer/main.pm:1945 printer/main.pm:2100
-#, c-format
-msgid "user-supplied"
-msgstr ""
-
-#: printer/main.pm:1949 printer/main.pm:2104
-#, c-format
-msgid "NEW"
-msgstr ""
-
-#: printer/printerdrake.pm:24
-#, c-format
-msgid ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"decompressing the self-extracting '.exe' file with the 'unzip' utility and "
-"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
-"printer' directory. There it will be found by the automatic uploader script "
-"and uploaded whenever the printer is connected and turned on.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:67
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "Настройка на CUPS принтер"
-
-#: printer/printerdrake.pm:68
-#, c-format
-msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessible by remote machines and by which remote machines."
-msgstr ""
-"Тук може да решите дали принтерите свързани към вашата машина ще бъдат "
-"достъпни от отдалечените машини и от кой."
-
-#: printer/printerdrake.pm:69
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-"Вие също решавате, дали принтерите на отдалечените машини ще бъдат "
-"автоматично достъпни на тази машина."
-
-#: printer/printerdrake.pm:72 printer/printerdrake.pm:506
-#: printer/printerdrake.pm:4542
-#, c-format
-msgid "Remote CUPS server and no local CUPS daemon"
-msgstr ""
-
-#: printer/printerdrake.pm:75
-#, c-format
-msgid "On"
-msgstr "Включено"
-
-#: printer/printerdrake.pm:77 printer/printerdrake.pm:498
-#: printer/printerdrake.pm:525
-#, c-format
-msgid "Off"
-msgstr "Изключено"
-
-#: printer/printerdrake.pm:78 printer/printerdrake.pm:507
-#, c-format
-msgid ""
-"In this mode the local CUPS daemon will be stopped and all printing requests "
-"go directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:84
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Принтерите на тази машина с достъпни за другите компютри"
-
-#: printer/printerdrake.pm:89
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Автоматично открива наличните принтери наотдалечените машини"
-
-#: printer/printerdrake.pm:94
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Принтер поделен на хсотове/мрежи: "
-
-#: printer/printerdrake.pm:96
-#, c-format
-msgid "Custom configuration"
-msgstr "Потребителска настройка"
-
-#: printer/printerdrake.pm:101 standalone/scannerdrake:610
-#: standalone/scannerdrake:627
-#, c-format
-msgid "No remote machines"
-msgstr "Няма отдалечени машини"
-
-#: printer/printerdrake.pm:112
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Допълнителни CUPS сървъри"
-
-#: printer/printerdrake.pm:119
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-
-#: printer/printerdrake.pm:127
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Режим за печат на японски текст"
-
-#: printer/printerdrake.pm:128
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in Japanese language. Only "
-"use this function if you really want to print text in Japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print Japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-
-#: printer/printerdrake.pm:135
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Автоматична корекция на CUPS конфигурация"
-
-#: printer/printerdrake.pm:137
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-
-#: printer/printerdrake.pm:161 printer/printerdrake.pm:236
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Поделяне на локални принтери"
-
-#: printer/printerdrake.pm:162
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-"Това са машините и мрежите за които локално свързаните принтери ще бъдат "
-"достъпни:"
-
-#: printer/printerdrake.pm:173
-#, c-format
-msgid "Add host/network"
-msgstr "Добавя хост/мрежа"
-
-#: printer/printerdrake.pm:179
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Редактиране на избран хост/мрежа"
-
-#: printer/printerdrake.pm:188
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Изтриване на избран хост/мрежа"
-
-#: printer/printerdrake.pm:219 printer/printerdrake.pm:229
-#: printer/printerdrake.pm:241 printer/printerdrake.pm:248
-#: printer/printerdrake.pm:279 printer/printerdrake.pm:297
-#, c-format
-msgid "IP address of host/network:"
-msgstr "IP адрес на хост/мрежа:"
-
-#: printer/printerdrake.pm:237
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr "Избор на мрежа или хост за който локалният принтер ще бъде разрешен:"
-
-#: printer/printerdrake.pm:244
-#, c-format
-msgid "Host/network IP address missing."
-msgstr ""
-
-#: printer/printerdrake.pm:252
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "Въведеният хост/мрежа IP не е правилен.\n"
-
-#: printer/printerdrake.pm:253 printer/printerdrake.pm:429
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Примери на правилни IP:\n"
-
-#: printer/printerdrake.pm:277
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr ""
-"Този адрес/хост вече е в списъка, той не може да бъде добавен отново.\n"
-
-#: printer/printerdrake.pm:346 printer/printerdrake.pm:416
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Работа с отдалечени CUPS сървъри"
-
-#: printer/printerdrake.pm:347
-#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
-
-#: printer/printerdrake.pm:358
-#, c-format
-msgid "Add server"
-msgstr "Добавяне на сървър"
-
-#: printer/printerdrake.pm:364
-#, c-format
-msgid "Edit selected server"
-msgstr "Настройка на избрания сървър"
-
-#: printer/printerdrake.pm:373
-#, c-format
-msgid "Remove selected server"
-msgstr "Изтриване на избрания сървър"
-
-#: printer/printerdrake.pm:417
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-
-#: printer/printerdrake.pm:418
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr ""
-
-#: printer/printerdrake.pm:422
-#, c-format
-msgid "Server IP missing!"
-msgstr "Липсва IP на сървър"
-
-#: printer/printerdrake.pm:428
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Въведеното IP не е вярно.\n"
-
-#: printer/printerdrake.pm:440 printer/printerdrake.pm:2133
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Номерът на порта трябва да е цяло число !"
-
-#: printer/printerdrake.pm:451
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:462 printer/printerdrake.pm:2160
-#: standalone/drakups:249 standalone/harddrake2:52
-#, c-format
-msgid "Port"
-msgstr "Порт"
-
-#: printer/printerdrake.pm:495 printer/printerdrake.pm:511
-#: printer/printerdrake.pm:526 printer/printerdrake.pm:530
-#: printer/printerdrake.pm:536
-#, fuzzy, c-format
-msgid "On, Name or IP of remote server:"
-msgstr "Принтер на отдалечен LPD сървър"
-
-#: printer/printerdrake.pm:514 printer/printerdrake.pm:4551
-#: printer/printerdrake.pm:4617
-#, fuzzy, c-format
-msgid "CUPS server name or IP address missing."
-msgstr "Липсва име на NCP сървър !"
-
-#: printer/printerdrake.pm:566 printer/printerdrake.pm:586
-#: printer/printerdrake.pm:811 printer/printerdrake.pm:880
-#: printer/printerdrake.pm:901 printer/printerdrake.pm:927
-#: printer/printerdrake.pm:1023 printer/printerdrake.pm:1065
-#: printer/printerdrake.pm:1075 printer/printerdrake.pm:1110
-#: printer/printerdrake.pm:2220 printer/printerdrake.pm:2490
-#: printer/printerdrake.pm:2524 printer/printerdrake.pm:2575
-#: printer/printerdrake.pm:2582 printer/printerdrake.pm:2621
-#: printer/printerdrake.pm:2663 printer/printerdrake.pm:2700
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2984
-#: printer/printerdrake.pm:2989 printer/printerdrake.pm:3137
-#: printer/printerdrake.pm:3248 printer/printerdrake.pm:3862
-#: printer/printerdrake.pm:3929 printer/printerdrake.pm:3978
-#: printer/printerdrake.pm:3981 printer/printerdrake.pm:4091
-#: printer/printerdrake.pm:4149 printer/printerdrake.pm:4221
-#: printer/printerdrake.pm:4242 printer/printerdrake.pm:4252
-#: printer/printerdrake.pm:4342 printer/printerdrake.pm:4437
-#: printer/printerdrake.pm:4443 printer/printerdrake.pm:4471
-#: printer/printerdrake.pm:4578 printer/printerdrake.pm:4687
-#: printer/printerdrake.pm:4707 printer/printerdrake.pm:4716
-#: printer/printerdrake.pm:4731 printer/printerdrake.pm:4932
-#: printer/printerdrake.pm:5407 printer/printerdrake.pm:5490
-#: standalone/printerdrake:75 standalone/printerdrake:590
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: printer/printerdrake.pm:567 printer/printerdrake.pm:4150
-#: printer/printerdrake.pm:4688
-#, c-format
-msgid "Reading printer data..."
-msgstr "Четене на данни от принтера ..."
-
-#: printer/printerdrake.pm:587
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "Рестартиране на CUPS..."
-
-#: printer/printerdrake.pm:614
-#, c-format
-msgid ""
-"Allow pop-up windows, printer setup and package installation may be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:616
-#, c-format
-msgid ""
-"No pop-up windows, printer setup and package installation cannot be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:622
-#, fuzzy, c-format
-msgid "Printer auto administration"
-msgstr "Автоматично открива принтер"
-
-#: printer/printerdrake.pm:623
-#, c-format
-msgid ""
-"Here you can configure printer administration tasks which should be done "
-"automatically."
-msgstr ""
-
-#: printer/printerdrake.pm:626
-#, fuzzy, c-format
-msgid "Do automatic configuration of new printers"
-msgstr "Настройка на отдалечен принтер"
-
-#: printer/printerdrake.pm:627 printer/printerdrake.pm:641
-#, fuzzy, c-format
-msgid "when a USB printer is connected and turned on"
-msgstr " (Убедете се, че принтерите са свързани и включени).\n"
-
-#: printer/printerdrake.pm:630
-#, fuzzy, c-format
-msgid "when Printerdrake is started"
-msgstr "Големината на дяла не може да бъде променена"
-
-#: printer/printerdrake.pm:634
-#, c-format
-msgid "Mode for automatic printer setup:"
-msgstr ""
-
-#: printer/printerdrake.pm:640
-#, fuzzy, c-format
-msgid "Re-enable disabled printers"
-msgstr "Налични принтери"
-
-#: printer/printerdrake.pm:644
-#, fuzzy, c-format
-msgid "when the printing system is started"
-msgstr "Промяна системата за печат"
-
-#: printer/printerdrake.pm:680
-#, fuzzy, c-format
-msgid "Communication error handling for the printer \"%s\""
-msgstr "Печатане на принтер \"%s\""
-
-#: printer/printerdrake.pm:682
-#, c-format
-msgid ""
-"Here you can configure how errors during the communication between your "
-"computer and the printer \"%s\" should be handled (for example if the "
-"printer is not turned on)."
-msgstr ""
-
-#: printer/printerdrake.pm:686
-#, fuzzy, c-format
-msgid "The number of retries should be an integer number of at least 1!"
-msgstr "Номерът на порта трябва да е цяло число !"
-
-#: printer/printerdrake.pm:690
-#, fuzzy, c-format
-msgid "The delay between retries should be a positive integer number!"
-msgstr "Отместването трябва да е положителна цяла стойност!"
-
-#: printer/printerdrake.pm:701
-#, fuzzy, c-format
-msgid "Do not disable the printer"
-msgstr "Изключва Сървър"
-
-#: printer/printerdrake.pm:704
-#, c-format
-msgid "Retry infinitely often"
-msgstr ""
-
-#: printer/printerdrake.pm:707
-#, fuzzy, c-format
-msgid "Number of retries"
-msgstr "Брой бутони"
-
-#: printer/printerdrake.pm:712
-#, c-format
-msgid "Delay between retries (in sec)"
-msgstr ""
-
-#: printer/printerdrake.pm:745 printer/printerdrake.pm:765
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Изберете връзка към принтера"
-
-#: printer/printerdrake.pm:746
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Как е свързан принтерът ?"
-
-#: printer/printerdrake.pm:748
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Отдалечените на CUPS сървър принтери не трябва да настройвате\n"
-"тук; тези принтери ще бъдат засечени автоматично."
-
-#: printer/printerdrake.pm:751 printer/printerdrake.pm:4934
-#, c-format
-msgid ""
-"\n"
-"WARNING: No local network connection active, remote printers can neither be "
-"detected nor tested!"
-msgstr ""
-
-#: printer/printerdrake.pm:758
-#, fuzzy, c-format
-msgid ""
-"Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"
-msgstr "Автоматично откриване на принтер (Локален, TCP/Socket, и SMB прентери)"
-
-#: printer/printerdrake.pm:760
-#, c-format
-msgid "Modify timeout for network printer auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:766
-#, c-format
-msgid "Enter the timeout for network printer auto-detection (in msec) here. "
-msgstr ""
-
-#: printer/printerdrake.pm:768
-#, c-format
-msgid ""
-"The longer you choose the timeout, the more reliable the detections of "
-"network printers will be, but the scan can take longer then, especially if "
-"there are many machines with local firewalls in the network. "
-msgstr ""
-
-#: printer/printerdrake.pm:772
-#, fuzzy, c-format
-msgid "The timeout must be a positive integer number!"
-msgstr "Отместването трябва да е положителна цяла стойност!"
-
-#: printer/printerdrake.pm:811
-#, c-format
-msgid "Checking your system..."
-msgstr "Проверка на вашата система..."
-
-#: printer/printerdrake.pm:829
-#, c-format
-msgid "and one unknown printer"
-msgstr "и един неизвестен принтер"
-
-#: printer/printerdrake.pm:831
-#, c-format
-msgid "and %d unknown printers"
-msgstr "и %d неизвестни принтери"
-
-#: printer/printerdrake.pm:835
-#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Следните принтери\n"
-"\n"
-"%s%s\n"
-"са директно свързани към вашата система"
-
-#: printer/printerdrake.pm:837
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Следния принтер\n"
-"\n"
-"%s%s\n"
-"е директно свързани към вашата система"
-
-#: printer/printerdrake.pm:838
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-"Следният принтер\n"
-"\n"
-"%s%s\n"
-"е директно свързан към вашата система"
-
-#: printer/printerdrake.pm:842
-#, c-format
-msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
-"\n"
-"Има един неизвестен принтер включен към вашата систенма"
-
-#: printer/printerdrake.pm:843
-#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
-"\n"
-"Има %d неизвестни принтери включени към вашата систенма"
-
-#: printer/printerdrake.pm:846
-#, c-format
-msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "Няма намерени принтери включени директно към машината ви"
-
-#: printer/printerdrake.pm:849
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr " (Убедете се, че принтерите са свързани и включени).\n"
-
-#: printer/printerdrake.pm:862
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
-"Искате ли да разрешите печат на принтерите споменати горе или на принтерите "
-"в локалната мрежа?\n"
-
-#: printer/printerdrake.pm:863
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Искате ли да разрешите печат на принтерите в локалната мрежа?\n"
-
-#: printer/printerdrake.pm:865
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Искатели да разрешите печат за принтерите споменати горе?\n"
-
-#: printer/printerdrake.pm:866
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Сигурни ли сте, че искте да настроите печат за тази машина?\n"
-
-#: printer/printerdrake.pm:867
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
-"ЗАБЕЛЕЖКА: В зависимост от модела принтер и печатащата система до %d MB "
-"допълнително софтуер ще бъде инсталиран."
-
-#: printer/printerdrake.pm:884
-#, c-format
-msgid "Do not setup printer automatically now, and never do it again"
-msgstr ""
-
-#: printer/printerdrake.pm:928
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Търси за нови принтери..."
-
-#: printer/printerdrake.pm:976
-#, c-format
-msgid "Do not setup printer automatically again"
-msgstr ""
-
-#: printer/printerdrake.pm:983
-#, fuzzy, c-format
-msgid "New printers found"
-msgstr "Няма намерен принтер!"
-
-#: printer/printerdrake.pm:984
-#, fuzzy, c-format
-msgid "New printer found"
-msgstr "Няма намерен принтер!"
-
-#: printer/printerdrake.pm:986
-#, c-format
-msgid ""
-"The following new printers were found and Printerdrake can automatically set "
-"them up for you. If you do not want to have all of them set up, unselect the "
-"ones which should be skipped, or click \"Cancel\" to set up none of them.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:987
-#, c-format
-msgid ""
-"The following new printer was found and printerdrake can automatically set "
-"it up for you. If you do not want to have it set up, unselect it, or click "
-"\"Cancel\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:988
-#, c-format
-msgid ""
-"Note that for certain printer models additional packages need to be "
-"installed. So keep your installation media handy.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1024 printer/printerdrake.pm:1066
-#, fuzzy, c-format
-msgid "Configuring printer on %s..."
-msgstr "Настройка на принтера \"%s\"..."
-
-#: printer/printerdrake.pm:1049
-#, c-format
-msgid "("
-msgstr ")"
-
-#: printer/printerdrake.pm:1050
-#, c-format
-msgid " on "
-msgstr ""
-
-#: printer/printerdrake.pm:1051 standalone/scannerdrake:137
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: printer/printerdrake.pm:1056 printer/printerdrake.pm:3149
-#, c-format
-msgid "Printer model selection"
-msgstr "Избор модел на принтера"
-
-#: printer/printerdrake.pm:1057 printer/printerdrake.pm:3150
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Какъв модел принтер имате ?"
-
-#: printer/printerdrake.pm:1058
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-
-#: printer/printerdrake.pm:1061 printer/printerdrake.pm:3155
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr "Ако вашият принтер не е в списъка, изберете съвместим или подобен."
-
-#: printer/printerdrake.pm:1076 printer/printerdrake.pm:4708
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Настройка на принтера \"%s\"..."
-
-#: printer/printerdrake.pm:1111
-#, c-format
-msgid ""
-"Now you have turned off automatic printer setup.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1112
-#, c-format
-msgid ""
-"You can turn it back on again by choosing \"%s\" -> \"%s\" in Printerdrake's "
-"main menu. "
-msgstr ""
-
-#: printer/printerdrake.pm:1112 printer/printerdrake.pm:4984
-#, fuzzy, c-format
-msgid "Configure Auto Administration"
-msgstr "Отдалечена администрация"
-
-#: printer/printerdrake.pm:1113
-#, c-format
-msgid ""
-"There you can also choose in which situation automatic printer setup is done "
-"(On Printerdrake startup, on printing system startup, when connecting a new "
-"USB printer)."
-msgstr ""
-
-#: printer/printerdrake.pm:1261 printer/printerdrake.pm:1273
-#: printer/printerdrake.pm:1380 printer/printerdrake.pm:2401
-#: printer/printerdrake.pm:2460 printer/printerdrake.pm:2556
-#: printer/printerdrake.pm:4951 printer/printerdrake.pm:5138
-#, c-format
-msgid "Add a new printer"
-msgstr "Добави нов принтер"
-
-#: printer/printerdrake.pm:1262
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: printer/printerdrake.pm:1275
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected. Also your network printer(s) and your Windows "
-"machines must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you do not "
-"need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Добре дошли при Магьосника за конфигуриране на Принтер\n"
-"\n"
-"Тай ще ви помогне да инсталирате вашите принтери свързани към компютъра.\n"
-"\n"
-"Ако имате принтер(и) свързани към тази машина, включете ги, така че те да "
-"могат да се конфигурират автоматично.\n"
-"\n"
-"Цъкнете на \"Следващо\" когато сте готови, и на \"Прекъсва\" ако не искате "
-"да настройвате принтерите сега."
-
-#: printer/printerdrake.pm:1284
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Добре дошли в Магьосника за конфигуриране на Принтер\n"
-"\n"
-"Той ще ви помогне да инсталирате вашите принтери свързани към компютъра.\n"
-"\n"
-"Ако имате принтер(и) свързани към тази машина, включете ги, така че те да "
-"могат да се конфигурират автоматично.\n"
-"\n"
-"Цъкнете на \"Следващо\" когато сте готови, и на \"Прекъсва\" ако не искате "
-"да настройвате принтерите сега."
-
-#: printer/printerdrake.pm:1292
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you do not need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1301
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Добре дошли на Магьосника за конфигуриране на Принтер\n"
-"\n"
-"Тай ще ви помогне да инсталирате вашите принтери свързани към компютъра.\n"
-"\n"
-"Ако имате принтер(и) свързани към тази машина, включете ги, така че те да "
-"могат да се конфигурират автоматично.\n"
-"\n"
-"Цъкнете на \"Следващо\" когато сте готови, и на \"Прекъсва\" ако не искате "
-"да настройвате принтерите сега."
-
-#: printer/printerdrake.pm:1352
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Автоматично открива принтери свързани към тази машина"
-
-#: printer/printerdrake.pm:1355
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Автоматично открива принтери свързани директно към локалната мрежа"
-
-#: printer/printerdrake.pm:1358
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
-"Автоматично открива принтери свързани с машини работещи под Microsoft Windows"
-
-#: printer/printerdrake.pm:1361
-#, fuzzy, c-format
-msgid "No auto-detection"
-msgstr "Автоматично засичане"
-
-#: printer/printerdrake.pm:1381
-#, c-format
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the %s Control Center."
-msgstr ""
-
-#: printer/printerdrake.pm:1417 printer/printerdrake.pm:1641
-#: printer/printerdrake.pm:1704 printer/printerdrake.pm:1796
-#: printer/printerdrake.pm:1934 printer/printerdrake.pm:2010
-#: printer/printerdrake.pm:2177 printer/printerdrake.pm:2268
-#: printer/printerdrake.pm:2277 printer/printerdrake.pm:2286
-#: printer/printerdrake.pm:2297 printer/printerdrake.pm:2496
-#: printer/printerdrake.pm:2633
-#, fuzzy, c-format
-msgid "Could not install the %s packages!"
-msgstr "Инсталиране на пакета %s"
-
-#: printer/printerdrake.pm:1419
-#, c-format
-msgid "Skipping Windows/SMB server auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:1425 printer/printerdrake.pm:1564
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Автоматично открива принтер"
-
-#: printer/printerdrake.pm:1425
-#, c-format
-msgid "Detecting devices..."
-msgstr "Откриване на устройства ..."
-
-#: printer/printerdrake.pm:1451
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", мрежови принтер \"%s\", порт %s"
-
-#: printer/printerdrake.pm:1454
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", принтер \"%s\" на SMB/Windows сървър \"%s\""
-
-#: printer/printerdrake.pm:1458
-#, c-format
-msgid "Detected %s"
-msgstr "Засечен %s"
-
-#: printer/printerdrake.pm:1463 printer/printerdrake.pm:1490
-#: printer/printerdrake.pm:1505
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Пример на паралелен порт #%s"
-
-#: printer/printerdrake.pm:1469
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Мрежов принтер \"%s\", порт %s"
-
-#: printer/printerdrake.pm:1472
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Принтер \"%s\" на SMB/Windows сървър \"%s\""
-
-#: printer/printerdrake.pm:1550
-#, c-format
-msgid "Local Printer"
-msgstr "Локален принтер"
-
-#: printer/printerdrake.pm:1551
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Няма намерен локален принтер! За да инсталирате ръчно принтер, въведете име "
-"на устройство/име на файл във входното поле (Паралелни портове /dev/lp0, /"
-"dev/lp1, ..., съответсващи на LPT1:, LPT2:, ..., 1-ви USB принтер: /dev/usb/"
-"lp0, 2-ри USB принтер: /dev/usb/lp1, ...)."
-
-#: printer/printerdrake.pm:1555
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Вие трябва да въведете устройство или име на файл!"
-
-#: printer/printerdrake.pm:1565
-#, c-format
-msgid "No printer found!"
-msgstr "Няма намерен принтер!"
-
-#: printer/printerdrake.pm:1573
-#, c-format
-msgid "Local Printers"
-msgstr "Локални принтери"
-
-#: printer/printerdrake.pm:1574
-#, c-format
-msgid "Available printers"
-msgstr "Налични принтери"
-
-#: printer/printerdrake.pm:1578 printer/printerdrake.pm:1587
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Следните принтери са автоматично открити. "
-
-#: printer/printerdrake.pm:1580
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
-"Ако той не е този който искате да конфигурирате, въведете име на устройство/"
-"име на файл във входното поле"
-
-#: printer/printerdrake.pm:1581
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-"Алтернативно, вие може да зададете име на устройство/файл в изходния ред"
-
-#: printer/printerdrake.pm:1582 printer/printerdrake.pm:1591
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Това е списък на автоматично открити принтери."
-
-#: printer/printerdrake.pm:1584
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1585
-#, c-format
-msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1589
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Конфигурацията на принтера ще работи напълно автоматично. Ако вашият принтер "
-"не е бил коректно открит или вие предпочитате на настроите принтера, "
-"включете на \"Ръчна конфигурация\"."
-
-#: printer/printerdrake.pm:1590
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "За сега, няма налична алтернатива"
-
-#: printer/printerdrake.pm:1593
-#, c-format
-msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
-msgstr ""
-
-#: printer/printerdrake.pm:1594
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Моля, изберете принтер,към който ще се пращат задачите."
-
-#: printer/printerdrake.pm:1596
-#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Моля, изберете порта на който вашият принтер е закачен или въведете име на "
-"устройство/име на файл във входното поле"
-
-#: printer/printerdrake.pm:1597
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Моля, изберете порт към който свързан принтера ви."
-
-#: printer/printerdrake.pm:1599
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Паралелни портове: /dev/lp0, /dev/lp1, ..., съответсващи на LPT1:, "
-"LPT2:, ..., 1-ви USB принтер: /dev/usb/lp0, 2-ри USB принтер: /dev/usb/"
-"lp1, ...)."
-
-#: printer/printerdrake.pm:1603
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Трябва да въведете/изберете принтер/устройство!"
-
-#: printer/printerdrake.pm:1643 printer/printerdrake.pm:1706
-#: printer/printerdrake.pm:1798 printer/printerdrake.pm:1936
-#: printer/printerdrake.pm:2012 printer/printerdrake.pm:2179
-#: printer/printerdrake.pm:2270 printer/printerdrake.pm:2279
-#: printer/printerdrake.pm:2288 printer/printerdrake.pm:2299
-#, fuzzy, c-format
-msgid "Aborting"
-msgstr "Отказ"
-
-#: printer/printerdrake.pm:1679
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Опции на отдалечен lpd-принтер"
-
-#: printer/printerdrake.pm:1680
-#, c-format
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"За да използвате отдалечен lpd принтер, трябва да предоставите имената на "
-"хоста на принтерния сървър и името на принтера на този сървър."
-
-#: printer/printerdrake.pm:1681
-#, c-format
-msgid "Remote host name"
-msgstr "Име на отдалечен хост"
-
-#: printer/printerdrake.pm:1682
-#, c-format
-msgid "Remote printer name"
-msgstr "Име на отдалечен принтер"
-
-#: printer/printerdrake.pm:1685
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Липсва име на име на хост !"
-
-#: printer/printerdrake.pm:1689
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Липсва име на отдалечен принтер !"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318 standalone/drakTermServ:475
-#: standalone/drakTermServ:807 standalone/drakTermServ:823
-#: standalone/drakTermServ:1653 standalone/drakTermServ:1662
-#: standalone/drakTermServ:1676 standalone/drakbackup:512
-#: standalone/drakbackup:618 standalone/drakbackup:653
-#: standalone/drakbackup:754 standalone/draknfs:203
-#: standalone/draksambashare:627 standalone/draksambashare:794
-#: standalone/harddrake2:275
-#, c-format
-msgid "Information"
-msgstr "Информация"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Открит модел: %s %s"
-
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Scanning network..."
-msgstr "Стартиране мрежата...."
-
-#: printer/printerdrake.pm:1814 printer/printerdrake.pm:1835
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", принтер \"%s\" на сървър \"%s\""
-
-#: printer/printerdrake.pm:1817 printer/printerdrake.pm:1838
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Принтер \"%s\" на сървър \"%s\""
-
-#: printer/printerdrake.pm:1859
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Настройки на SMB (Windows 9x/NT) принтер"
-
-#: printer/printerdrake.pm:1860
-#, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"За да печатате на SMB принтер, трябва да дадете името\n"
-"на SMB хоста (Забележка ! То може да е различно от TCP/IP хоста !)\n"
-"и възможно IP адреса на принтерския сървър, както и общото име на\n"
-"принтера, до който искате достъп и подходящо имен, парола и информация\n"
-"за работната група."
-
-#: printer/printerdrake.pm:1861
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-" Ако желаният принтер е открит автоматично, просто изберете го от списъка и "
-"тогава добавете име на потребител, парола, и/или работна група ако е "
-"необходимо."
-
-#: printer/printerdrake.pm:1863
-#, c-format
-msgid "SMB server host"
-msgstr "Хост на SMB сървър"
-
-#: printer/printerdrake.pm:1864
-#, c-format
-msgid "SMB server IP"
-msgstr "IP на SMB сървър:"
-
-#: printer/printerdrake.pm:1865 standalone/draksambashare:67
-#, c-format
-msgid "Share name"
-msgstr "Общо име"
-
-#: printer/printerdrake.pm:1868
-#, c-format
-msgid "Workgroup"
-msgstr "Работна група"
-
-#: printer/printerdrake.pm:1870
-#, c-format
-msgid "Auto-detected"
-msgstr "Автоматично засечен"
-
-#: printer/printerdrake.pm:1880
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Трябва да бъдат зададени и името и IP адреса на сървъра !"
-
-#: printer/printerdrake.pm:1884
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Липсва име на SAMBA share !"
-
-#: printer/printerdrake.pm:1890
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "ПРЕДУПРЕЖДЕНИЕ ЗА СИГУРНОСТ!"
-
-#: printer/printerdrake.pm:1891
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1901
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1904
-#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-"Свързва вашият принтер към Linux сървър и позволява Windows машини да се "
-"свързват към него като клиенти.\n"
-"\n"
-"Искате ли, да продължите настройките за този принтер както правехте до сега?"
-
-#: printer/printerdrake.pm:1983
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "Опции за NetWare принтер"
-
-#: printer/printerdrake.pm:1984
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"За да печатите на NetWare принтер ,трябва да знаете имео му и възможно\n"
-"адреса на сървъра, както и името на опашката,потребителското име,парола. "
-"(забележка! той може да е различен от TCP/IP име на хост!)"
-
-#: printer/printerdrake.pm:1985
-#, c-format
-msgid "Printer Server"
-msgstr "Сървър на принтера"
-
-#: printer/printerdrake.pm:1986
-#, c-format
-msgid "Print Queue Name"
-msgstr "Име на печатната опашката"
-
-#: printer/printerdrake.pm:1991
-#, c-format
-msgid "NCP server name missing!"
-msgstr "Липсва име на NCP сървър !"
-
-#: printer/printerdrake.pm:1995
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "Липсва име на NCP опашка !"
-
-#: printer/printerdrake.pm:2076 printer/printerdrake.pm:2097
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", хост \"%s\", порт %s"
-
-#: printer/printerdrake.pm:2079 printer/printerdrake.pm:2100
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Хост \"%s\", порт %s"
-
-#: printer/printerdrake.pm:2122
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/Socket Опции на принтер"
-
-#: printer/printerdrake.pm:2124
-#, c-format
-msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
-msgstr ""
-"Изберете един от автоматично откритите принтери в списъка горе или въведете "
-"име на хост или IP и опционално номер на порт (подразбиращ 9100) в полето."
-
-#: printer/printerdrake.pm:2125
-#, c-format
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
-msgstr ""
-"За да печатате на socket или TCP принтер, трябва да предоставите името на "
-"хоста на принтера и, евентуално, номер на порт. На HP JetDirect сървъри, "
-"номерът на порта обикновенно е 9100, на други сървъри може да варира. Вижте "
-"ръковоството на хардуера си."
-
-#: printer/printerdrake.pm:2129
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Липсва име на хост на принтера или IP!"
-
-#: printer/printerdrake.pm:2158
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Име на хост за принтера или IP"
-
-#: printer/printerdrake.pm:2221
-#, fuzzy, c-format
-msgid "Refreshing Device URI list..."
-msgstr "Опресняване на данните от принтера ..."
-
-#: printer/printerdrake.pm:2224 printer/printerdrake.pm:2226
-#, c-format
-msgid "Printer Device URI"
-msgstr "Печатащо устройство URI"
-
-#: printer/printerdrake.pm:2225
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Трябва директно да определите URI за достъп до принтера. URI трябва да "
-"изпълни или CUPS или Foomatic спецификациите. Отбележете, че не всички "
-"типове URI се поддрържат от spooler-ите."
-
-#: printer/printerdrake.pm:2249
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Трябва да бъде въведен валиден URI!"
-
-#: printer/printerdrake.pm:2354
-#, c-format
-msgid "Pipe into command"
-msgstr "Програмен канал към команда"
-
-#: printer/printerdrake.pm:2355
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-
-#: printer/printerdrake.pm:2356
-#, c-format
-msgid "Command line"
-msgstr "Команден ред"
-
-#: printer/printerdrake.pm:2360
-#, c-format
-msgid "A command line must be entered!"
-msgstr "Трябва да бъде въведен команден ред!"
-
-#: printer/printerdrake.pm:2402
-#, c-format
-msgid "Your printer %s is currently connected %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2404 printer/printerdrake.pm:2411
-#, fuzzy, c-format
-msgid "to a parallel port"
-msgstr " на паралелен порт #%s"
-
-#: printer/printerdrake.pm:2405 printer/printerdrake.pm:2412
-#, c-format
-msgid "to the USB"
-msgstr ""
-
-#: printer/printerdrake.pm:2406 printer/printerdrake.pm:2413
-#, fuzzy, c-format
-msgid "via the network"
-msgstr "Включвам мрежата"
-
-#: printer/printerdrake.pm:2407
-#, c-format
-msgid "This type of connection is currently not fully supported by HPLIP."
-msgstr ""
-
-#: printer/printerdrake.pm:2409
-#, c-format
-msgid "You get full HPLIP support for your device if you connect it "
-msgstr ""
-
-#: printer/printerdrake.pm:2415
-#, c-format
-msgid ""
-"You can now set up your device with HPLIP anyway (works in many cases), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "set it up without HPLIP (print-only), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, fuzzy, c-format
-msgid "or"
-msgstr "Час"
-
-#: printer/printerdrake.pm:2417
-#, c-format
-msgid "cancel the setup (for example to reconnect your device)."
-msgstr ""
-
-#: printer/printerdrake.pm:2419
-#, c-format
-msgid ""
-"You can always revise your choice by clicking your printer's entry in the "
-"main window, "
-msgstr ""
-
-#: printer/printerdrake.pm:2420
-#, c-format
-msgid "clicking the \"%s\" button, "
-msgstr ""
-
-#. -PO: "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: printer/printerdrake.pm:2420 standalone/drakperm:124 standalone/drakups:300
-#: standalone/drakups:360 standalone/drakups:380 standalone/drakvpn:319
-#: standalone/drakvpn:680 standalone/printerdrake:245
-#, c-format
-msgid "Edit"
-msgstr "Редакция"
-
-#: printer/printerdrake.pm:2421
-#, c-format
-msgid "and choosing \"%s\"."
-msgstr ""
-
-#: printer/printerdrake.pm:2421 printer/printerdrake.pm:5334
-#: printer/printerdrake.pm:5394
-#, c-format
-msgid "Printer connection type"
-msgstr "Тип на връзката към принтера"
-
-#: printer/printerdrake.pm:2423 standalone/logdrake:408
-#, c-format
-msgid "What do you want to do?"
-msgstr "Какво искате да направите?"
-
-#: printer/printerdrake.pm:2424 printer/printerdrake.pm:2428
-#, c-format
-msgid "Set up with HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2425 printer/printerdrake.pm:2427
-#: printer/printerdrake.pm:2430
-#, c-format
-msgid "Set up without HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2461
-#, c-format
-msgid ""
-"On many HP printers there are special functions available, maintenance (ink "
-"level checking, nozzle cleaning. head alignment, ...) on all not too old "
-"inkjets, scanning on multi-function devices, and memory card access on "
-"printers with card readers. "
-msgstr ""
-
-#: printer/printerdrake.pm:2463
-#, c-format
-msgid ""
-"To access these extra functions on HP printers they must be set up with "
-"HPLIP (HP Linux Imaging and Printing). "
-msgstr ""
-
-#: printer/printerdrake.pm:2465
-#, c-format
-msgid "Do you want to use HPLIP (choose \"No\" for non-HP printers)? "
-msgstr ""
-
-#: printer/printerdrake.pm:2491
-#, c-format
-msgid "Installing %s package..."
-msgstr "Инсталиране на %s пакети ..."
-
-#: printer/printerdrake.pm:2491 printer/printerdrake.pm:2497
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "HPLIP"
-msgstr "HPLIP"
-
-#: printer/printerdrake.pm:2498
-#, c-format
-msgid "Only printing will be possible on the %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2513
-#, fuzzy, c-format
-msgid "Could not remove your old HPOJ configuration file %s for your %s! "
-msgstr ""
-"Не мога да създам конфигурационна директория на GNOME за всеки потребител \"%"
-"s\": %s\n"
-
-#: printer/printerdrake.pm:2515
-#, c-format
-msgid "Please remove the file manually and restart HPOJ."
-msgstr ""
-
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "Checking device and configuring %s..."
-msgstr "Проверка на устройство и конфигурация за %s..."
-
-#: printer/printerdrake.pm:2557
-#, fuzzy, c-format
-msgid "Which printer do you want to set up with HPLIP?"
-msgstr "На кой сектор искате да го преместите?"
-
-#: printer/printerdrake.pm:2576
-#, c-format
-msgid "HPLIP was not able to communicate with the chosen printer!"
-msgstr ""
-
-#: printer/printerdrake.pm:2577 printer/printerdrake.pm:2584
-#, fuzzy, c-format
-msgid "Setting up the printer without HPLIP..."
-msgstr "Зареждам модул на ядроро за USB принтер..."
-
-#: printer/printerdrake.pm:2583
-#, c-format
-msgid ""
-"HPLIP did not find any local printers (Parallel, USB) which it supports!"
-msgstr ""
-
-#: printer/printerdrake.pm:2622
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "Инсталиране на SANE пакети ..."
-
-#: printer/printerdrake.pm:2635
-#, c-format
-msgid "Scanning on the %s will not be possible."
-msgstr ""
-
-#: printer/printerdrake.pm:2650
-#, c-format
-msgid "Using and Maintaining your %s"
-msgstr ""
-
-#: printer/printerdrake.pm:2664
-#, fuzzy, c-format
-msgid "Configuring device..."
-msgstr "Настройка ..."
-
-#: printer/printerdrake.pm:2701
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Прави порта на принтера наличен за CUPS..."
-
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2985
-#: printer/printerdrake.pm:3138
-#, c-format
-msgid "Reading printer database..."
-msgstr "Четене на базата данни от принтери ..."
-
-#: printer/printerdrake.pm:2943
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Въведете име на принтер и коментар"
-
-#: printer/printerdrake.pm:2947 printer/printerdrake.pm:4206
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Името на принтера трябва да съдържа само букви, числа и подчертавка"
-
-#: printer/printerdrake.pm:2953 printer/printerdrake.pm:4211
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Принтерът \"%s\" вече съществува,\n"
-"наистина ли искате да презапишете настройката ?"
-
-#: printer/printerdrake.pm:2960
-#, c-format
-msgid ""
-"The printer name \"%s\" has more than 12 characters which can make the "
-"printer unaccessible from Windows clients. Do you really want to use this "
-"name?"
-msgstr ""
-
-#: printer/printerdrake.pm:2969
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Всеки принтер се нуждае от име (например \"printer\"). Полетата Описание и "
-"Местоположе не трябва да бъдат попълвани. Има коментари за потребителите."
-
-#: printer/printerdrake.pm:2970
-#, c-format
-msgid "Name of printer"
-msgstr "Име на принтер"
-
-#: printer/printerdrake.pm:2971 standalone/drakconnect:592
-#: standalone/harddrake2:39 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Description"
-msgstr "Описание"
-
-#: printer/printerdrake.pm:2972 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Location"
-msgstr "Местоположение"
-
-#: printer/printerdrake.pm:2990
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Подготвяне на базата данни от принтери ..."
-
-#: printer/printerdrake.pm:3116
-#, c-format
-msgid "Your printer model"
-msgstr "Вашият модел принтер"
-
-#: printer/printerdrake.pm:3117
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: printer/printerdrake.pm:3122 printer/printerdrake.pm:3125
-#, c-format
-msgid "The model is correct"
-msgstr "Този модел е правилен"
-
-#: printer/printerdrake.pm:3123 printer/printerdrake.pm:3124
-#: printer/printerdrake.pm:3127
-#, c-format
-msgid "Select model manually"
-msgstr "Избор на модел ръчно"
-
-#: printer/printerdrake.pm:3151
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
-msgstr ""
-
-#: printer/printerdrake.pm:3170
-#, c-format
-msgid "Install a manufacturer-supplied PPD file"
-msgstr ""
-
-#: printer/printerdrake.pm:3202
-#, c-format
-msgid ""
-"Every PostScript printer is delivered with a PPD file which describes the "
-"printer's options and features."
-msgstr ""
-
-#: printer/printerdrake.pm:3203
-#, c-format
-msgid ""
-"This file is usually somewhere on the CD with the Windows and Mac drivers "
-"delivered with the printer."
-msgstr ""
-
-#: printer/printerdrake.pm:3204
-#, c-format
-msgid "You can find the PPD files also on the manufacturer's web sites."
-msgstr ""
-
-#: printer/printerdrake.pm:3205
-#, c-format
-msgid ""
-"If you have Windows installed on your machine, you can find the PPD file on "
-"your Windows partition, too."
-msgstr ""
-
-#: printer/printerdrake.pm:3206
-#, c-format
-msgid ""
-"Installing the printer's PPD file and using it when setting up the printer "
-"makes all options of the printer available which are provided by the "
-"printer's hardware"
-msgstr ""
-
-#: printer/printerdrake.pm:3207
-#, c-format
-msgid ""
-"Here you can choose the PPD file to be installed on your machine, it will "
-"then be used for the setup of your printer."
-msgstr ""
-
-#: printer/printerdrake.pm:3209
-#, fuzzy, c-format
-msgid "Install PPD file from"
-msgstr "Инсталира rpm"
-
-#: printer/printerdrake.pm:3212 printer/printerdrake.pm:3220
-#: standalone/scannerdrake:183 standalone/scannerdrake:192
-#: standalone/scannerdrake:242 standalone/scannerdrake:250
-#, fuzzy, c-format
-msgid "Floppy Disk"
-msgstr "Флопи"
-
-#: printer/printerdrake.pm:3213 printer/printerdrake.pm:3222
-#: standalone/scannerdrake:184 standalone/scannerdrake:194
-#: standalone/scannerdrake:243 standalone/scannerdrake:252
-#, fuzzy, c-format
-msgid "Other place"
-msgstr "Други портовете"
-
-#: printer/printerdrake.pm:3228
-#, fuzzy, c-format
-msgid "Select PPD file"
-msgstr "Изберете файл"
-
-#: printer/printerdrake.pm:3232
-#, c-format
-msgid "The PPD file %s does not exist or is unreadable!"
-msgstr ""
-
-#: printer/printerdrake.pm:3238
-#, c-format
-msgid "The PPD file %s does not conform with the PPD specifications!"
-msgstr ""
-
-#: printer/printerdrake.pm:3249
-#, fuzzy, c-format
-msgid "Installing PPD file..."
-msgstr "Инсталира %s ..."
-
-#: printer/printerdrake.pm:3368
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "Настройки на OKI Winprinter"
-
-#: printer/printerdrake.pm:3369
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: printer/printerdrake.pm:3394 printer/printerdrake.pm:3424
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Настройка на Lexmark inkjet"
-
-#: printer/printerdrake.pm:3395
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Inkjet принтерните драйвери предоставени от Lexmark поддържат само локални "
-"принтери, без принтери на отдалечени машини или принтерни машини. Моля, "
-"свържете принтера си на локален порт или го настройте на машината, към която "
-"е свързан."
-
-#: printer/printerdrake.pm:3425
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-
-#: printer/printerdrake.pm:3435
-#, fuzzy, c-format
-msgid "Lexmark X125 configuration"
-msgstr "Настройка на Lexmark inkjet"
-
-#: printer/printerdrake.pm:3436
-#, fuzzy, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes. Please connect "
-"your printer to a local USB port or configure it on the machine where it is "
-"connected to."
-msgstr ""
-"Inkjet принтерните драйвери предоставени от Lexmark поддържат само локални "
-"принтери, без принтери на отдалечени машини или принтерни машини. Моля, "
-"свържете принтера си на локален порт или го настройте на машината, към която "
-"е свързан."
-
-#: printer/printerdrake.pm:3458
-#, fuzzy, c-format
-msgid "Samsung ML/QL-85G configuration"
-msgstr "Настройка за звук"
-
-#: printer/printerdrake.pm:3459 printer/printerdrake.pm:3486
-#, fuzzy, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected on the "
-"first parallel port, no printers on remote machines or print server boxes or "
-"on other parallel ports. Please connect your printer to the first parallel "
-"port or configure it on the machine where it is connected to."
-msgstr ""
-"Inkjet принтерните драйвери предоставени от Lexmark поддържат само локални "
-"принтери, без принтери на отдалечени машини или принтерни машини. Моля, "
-"свържете принтера си на локален порт или го настройте на машината, към която "
-"е свързан."
-
-#: printer/printerdrake.pm:3485
-#, fuzzy, c-format
-msgid "Canon LBP-460/660 configuration"
-msgstr "Ръчна настройка"
-
-#: printer/printerdrake.pm:3512
-#, fuzzy, c-format
-msgid "Canon LBP-810/1120 (CAPT) configuration"
-msgstr "Ръчна настройка"
-
-#: printer/printerdrake.pm:3513
-#, fuzzy, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes or on the parallel "
-"port. Please connect your printer to the USB or configure it on the machine "
-"where it is directly connected to."
-msgstr ""
-"Inkjet принтерните драйвери предоставени от Lexmark поддържат само локални "
-"принтери, без принтери на отдалечени машини или принтерни машини. Моля, "
-"свържете принтера си на локален порт или го настройте на машината, към която "
-"е свързан."
-
-#: printer/printerdrake.pm:3520
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr ""
-
-#: printer/printerdrake.pm:3670
-#, c-format
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Настройки на принтера по подразбиране\n"
-"\n"
-"Трябва да сте сигурни, че големината на страницата\n"
-"и типа на мастилото (ако има) са настроени правилно.\n"
-"Отбележете, че при много високо качесто на изхода на\n"
-"принтера, той може значително да се забави."
-
-#: printer/printerdrake.pm:3795
-#, c-format
-msgid "Printer default settings"
-msgstr "Настройки по подразбиране за принтера"
-
-#: printer/printerdrake.pm:3802
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Настройката %s трябва да е цяло число !"
-
-#: printer/printerdrake.pm:3806
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Настройката %s трябва да е число !"
-
-#: printer/printerdrake.pm:3810
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Опцията %s е извън границите !"
-
-#: printer/printerdrake.pm:3862
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Искате ли да настроите този принтер (\"%s\")\n"
-"като принтер по подразбиране ?"
-
-#: printer/printerdrake.pm:3878
-#, c-format
-msgid "Test pages"
-msgstr "Тестови страници"
-
-#: printer/printerdrake.pm:3879
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Моля, изберете тестова страница за печат.\n"
-"Забележка: тестовата страница за снимка може да отнеме доста дълго\n"
-"време да се изпечата и на лазерни принтери с малко памет може въобще\n"
-"да не излезе. В повечето случаи е достатъчна стандартна тестова страница."
-
-#: printer/printerdrake.pm:3883
-#, c-format
-msgid "No test pages"
-msgstr "Без тестови страници"
-
-#: printer/printerdrake.pm:3884
-#, c-format
-msgid "Print"
-msgstr "Печат"
-
-#: printer/printerdrake.pm:3909
-#, c-format
-msgid "Standard test page"
-msgstr "Стандартна тестова страница"
-
-#: printer/printerdrake.pm:3912
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Алтернативна тестова страница (Писмо)"
-
-#: printer/printerdrake.pm:3915
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Алтернативна тестова страница (А4)"
-
-#: printer/printerdrake.pm:3917
-#, c-format
-msgid "Photo test page"
-msgstr "Тестова страница със снимка"
-
-#: printer/printerdrake.pm:3930
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Отпечатване на тестов(ата/ите) страниц(а/и) ..."
-
-#: printer/printerdrake.pm:3950
-#, fuzzy, c-format
-msgid "Skipping photo test page."
-msgstr "Тестова страница със снимка"
-
-#: printer/printerdrake.pm:3967
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Тестовите страници са изпратени към принтера.\n"
-"Може да отнеме малко време преди принтера да започне.\n"
-"Състояние на печата:\n"
-"%s\n"
-"\n"
-
-#: printer/printerdrake.pm:3971
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Тестовите страници са изпратени към принтерна.\n"
-"Може да отнеме малко време преди принтера да започне.\n"
-
-#: printer/printerdrake.pm:3981
-#, c-format
-msgid "Did it work properly?"
-msgstr "Проработи ли както трябва ?"
-
-#: printer/printerdrake.pm:4005
-#, c-format
-msgid "Raw printer"
-msgstr "Raw принтер"
-
-#: printer/printerdrake.pm:4027
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"За да изпечатате файл от командния ред (терминален прозорец), можете или да "
-"използвате командата \"%s <file>\" или графичния печатащ инструмент: \"xpp "
-"<file>\" или \"kprinter <file>\". Графичните инструменти ви позволяват да "
-"избирате принтера и да поправяте лесно настройките на опциите.\n"
-
-#: printer/printerdrake.pm:4029
-#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Можете да използвате тази команда и в полето \"Команда за печат\" на "
-"печатните диалози в мноѓо приложения. Но тўк не поставяйте името на файла, "
-"защото то се подава от приложението.\n"
-
-#: printer/printerdrake.pm:4032 printer/printerdrake.pm:4049
-#: printer/printerdrake.pm:4059
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"Командата \"%s\" също така ви позволява да поправите настройките на опциите "
-"за определена работа на принтера. Просто добавете целаните настройки към "
-"командния ред, напр. \"%s <file>\". "
-
-#: printer/printerdrake.pm:4035 printer/printerdrake.pm:4075
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"За да видите списък на достъпните опции за текущия принтер, или прочетете "
-"списъка показан по-долу или цъкнете на бутона \"Списък с опции за печат\". %s"
-"%s%s\n"
-
-#: printer/printerdrake.pm:4039
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Това е списък от налични за печат опции отнасящи се за текущият принтер:\n"
-"\n"
-
-#: printer/printerdrake.pm:4044 printer/printerdrake.pm:4054
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"За да отпечатате файл от командния ред (терминален прозорец) използвайте "
-"командата \"%s <file>\".\n"
-
-#: printer/printerdrake.pm:4046 printer/printerdrake.pm:4056
-#: printer/printerdrake.pm:4066
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Можете да използвате тази команда и в полето \"Команда за печат\" на "
-"печатните диалози в много приложения. Но тук не поставяйте името на файла, "
-"защото то се подава от приложението.\n"
-
-#: printer/printerdrake.pm:4051 printer/printerdrake.pm:4061
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"За да видите списък с достъпните опции за текущия принтер, цъкнете на бутона "
-"\"Списък с опции за печат\"."
-
-#: printer/printerdrake.pm:4064
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"За да отпечатате файл от командния ред (терминален прозорец), използвайте "
-"командата \"%s <file>\" или \"%s <file>\".\n"
-
-#: printer/printerdrake.pm:4068
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4072
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"Командите \"%s\" и \"%s\" също така позволяват да поправяте избраните "
-"настройки за определена работа на принтера. Просто добавете исканите "
-"настройки към командния ред, напр. \"%s <file>\".\n"
-
-#: printer/printerdrake.pm:4081
-#, fuzzy, c-format
-msgid "Using/Maintaining the printer \"%s\""
-msgstr "Печатане на принтер \"%s\""
-
-#: printer/printerdrake.pm:4082
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Печатане на принтер \"%s\""
-
-#: printer/printerdrake.pm:4088
-#, c-format
-msgid "Print option list"
-msgstr "Списък с принтерни опции"
-
-#: printer/printerdrake.pm:4092
-#, fuzzy, c-format
-msgid "Printing option list..."
-msgstr "Списък с принтерни опции"
-
-#: printer/printerdrake.pm:4110
-#, c-format
-msgid ""
-"Your %s is set up with HP's HPLIP driver software. This way many special "
-"features of your printer are supported.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4113
-#, c-format
-msgid ""
-"The scanner in your printer can be used with the usual SANE software, for "
-"example Kooka or XSane (Both in the Multimedia/Graphics menu). "
-msgstr ""
-
-#: printer/printerdrake.pm:4114
-#, c-format
-msgid ""
-"Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to "
-"share your scanner on the network.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4118
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed like a usual USB "
-"mass storage device. "
-msgstr ""
-
-#: printer/printerdrake.pm:4119
-#, c-format
-msgid ""
-"After inserting a card a hard disk icon to access the card should appear on "
-"your desktop.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4121
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed using HP's Printer "
-"Toolbox (Menu: System/Monitoring/HP Printer Toolbox) clicking the \"Access "
-"Photo Cards...\" button on the \"Functions\" tab. "
-msgstr ""
-
-#: printer/printerdrake.pm:4122
-#, c-format
-msgid ""
-"Note that this is very slow, reading the pictures from the camera or a USB "
-"card reader is usually faster.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4125
-#, c-format
-msgid ""
-"HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a "
-"lot of status monitoring and maintenance functions for your %s:\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4126
-#, c-format
-msgid " - Ink level/status info\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4127
-#, c-format
-msgid " - Ink nozzle cleaning\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4128
-#, fuzzy, c-format
-msgid " - Print head alignment\n"
-msgstr "Хоризонтално подравняване:"
-
-#: printer/printerdrake.pm:4129
-#, fuzzy, c-format
-msgid " - Color calibration\n"
-msgstr "Конфигурация на цвят"
-
-#: printer/printerdrake.pm:4170 printer/printerdrake.pm:4197
-#: printer/printerdrake.pm:4232
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Пренос на настройка на принтер"
-
-#: printer/printerdrake.pm:4171
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"Можете да копирате настройките на принтера, които сте извършили за spoller %"
-"s на %s, текущия spooler. Цялата информация за настройките (име не принтер, "
-"описание, местоположение, вид на връзката и настройки по подразбиране) се "
-"презаписват, но работите не се прехвърлят.\n"
-"Не всички опашки могат да бъдат прехвърлени по следните причини:\n"
-
-#: printer/printerdrake.pm:4174
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS не поддържа принтери на Novell сървъри или принтери изпращащи данни във "
-"свободно-изградена команда.\n"
-
-#: printer/printerdrake.pm:4176
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ поддържа само локални принтери, отдалечени LPD принтери и Socket/TCP "
-"принтери.\n"
-
-#: printer/printerdrake.pm:4178
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD и LPRng не поддържа IPP принтери.\n"
-
-#: printer/printerdrake.pm:4180
-#, c-format
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"Като допълнение, опашките не създадени с тази програма или \"foomatic-"
-"configure\" не могат да бъдат прехвърляни."
-
-#: printer/printerdrake.pm:4181
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Също така, принтери настроени с PPD файлове предоставени от производителите "
-"им или с оригинални CUPS драйвери не могат да бъдат прехвърляни."
-
-#: printer/printerdrake.pm:4182
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Отбележете принтерите, които искате да прехвърлите и цъкнете\n"
-"\"Прехвърли\"."
-
-#: printer/printerdrake.pm:4185
-#, c-format
-msgid "Do not transfer printers"
-msgstr "Не прехвърляй принтери"
-
-#: printer/printerdrake.pm:4186 printer/printerdrake.pm:4202
-#, c-format
-msgid "Transfer"
-msgstr "Прехвърли"
-
-#: printer/printerdrake.pm:4198
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Принтер с име \"%s\" вече съществува в %s.\n"
-"Цъкнете \"Прехвърли\", за да го презапишете.\n"
-"Можете също така да напишете ново име или да пропуснте принтера."
-
-#: printer/printerdrake.pm:4219
-#, c-format
-msgid "New printer name"
-msgstr "Ново име на принтер"
-
-#: printer/printerdrake.pm:4222
-#, c-format
-msgid "Transferring %s..."
-msgstr "Прехвърляне на %s ..."
-
-#: printer/printerdrake.pm:4233
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Прехвърлили сте принтер по подразбиране (\"%s\"), Искате ли да го оставите "
-"по подразбиране в новата принтерна система %s ?"
-
-#: printer/printerdrake.pm:4243
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Опресняване на данните от принтера ..."
-
-#: printer/printerdrake.pm:4253
-#, c-format
-msgid "Starting network..."
-msgstr "Стартиране мрежата ...."
-
-#: printer/printerdrake.pm:4296 printer/printerdrake.pm:4300
-#: printer/printerdrake.pm:4302
-#, c-format
-msgid "Configure the network now"
-msgstr "В момента настройвам мрежата"
-
-#: printer/printerdrake.pm:4297
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Функционалността на мрежата не е настроена"
-
-#: printer/printerdrake.pm:4298
-#, c-format
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: printer/printerdrake.pm:4301
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Продължи без настойка на мрежата"
-
-#: printer/printerdrake.pm:4332
-#, c-format
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network is accessible after booting your "
-"system and correct the configuration using the %s Control Center, section "
-"\"Network & Internet\"/\"Connection\", and afterwards set up the printer, "
-"also using the %s Control Center, section \"Hardware\"/\"Printer\""
-msgstr ""
-
-#: printer/printerdrake.pm:4333
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Нямаше достъп до мрежата и такъв не можеше да бъде установен. Моля, "
-"проверете настройката и хардуера си. Тогава опитайте да настроите "
-"отдалечения принтер отново."
-
-#: printer/printerdrake.pm:4343
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Рестартиране на принтерната система"
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "high"
-msgstr "високо"
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "paranoid"
-msgstr "параноично"
-
-#: printer/printerdrake.pm:4376
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Инсталиране на принтерната система в %s ниво на сигурност"
-
-#: printer/printerdrake.pm:4377
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessible by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: printer/printerdrake.pm:4413
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Стартиране на принтерната система при стартиране"
-
-#: printer/printerdrake.pm:4414
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: printer/printerdrake.pm:4437
-#, c-format
-msgid "Checking installed software..."
-msgstr "Проверка на инсталирания софтуер..."
-
-#: printer/printerdrake.pm:4443
-#, c-format
-msgid "Removing %s..."
-msgstr "Изтриване на %s ..."
-
-#: printer/printerdrake.pm:4447
-#, fuzzy, c-format
-msgid "Could not remove the %s printing system!"
-msgstr "Промяна системата за печат"
-
-#: printer/printerdrake.pm:4471
-#, c-format
-msgid "Installing %s..."
-msgstr "Инсталира %s ..."
-
-#: printer/printerdrake.pm:4475
-#, fuzzy, c-format
-msgid "Could not install the %s printing system!"
-msgstr "Промяна системата за печат"
-
-#: printer/printerdrake.pm:4543
-#, c-format
-msgid ""
-"In this mode there is no local printing system, all printing requests go "
-"directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:4545
-#, c-format
-msgid ""
-"Enter the host name or IP of your CUPS server and click OK if you want to "
-"use this mode, click \"Quit\" otherwise."
-msgstr ""
-
-#: printer/printerdrake.pm:4559
-#, fuzzy, c-format
-msgid "Name or IP of remote server:"
-msgstr "Принтер на отдалечен LPD сървър"
-
-#: printer/printerdrake.pm:4579
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Настройка на принтер по подразбиране..."
-
-#: printer/printerdrake.pm:4599
-#, fuzzy, c-format
-msgid "Local CUPS printing system or remote CUPS server?"
-msgstr "Принтер на отдалечен CUPS сървър"
-
-#: printer/printerdrake.pm:4600
-#, c-format
-msgid "The CUPS printing system can be used in two ways: "
-msgstr ""
-
-#: printer/printerdrake.pm:4602
-#, c-format
-msgid "1. The CUPS printing system can run locally. "
-msgstr ""
-
-#: printer/printerdrake.pm:4603
-#, c-format
-msgid ""
-"Then locally connected printers can be used and remote printers on other "
-"CUPS servers in the same network are automatically discovered. "
-msgstr ""
-
-#: printer/printerdrake.pm:4604
-#, c-format
-msgid ""
-"Disadvantage of this approach is, that more resources on the local machine "
-"are needed: Additional software packages need to be installed, the CUPS "
-"daemon has to run in the background and needs some memory, and the IPP port "
-"(port 631) is opened. "
-msgstr ""
-
-#: printer/printerdrake.pm:4606
-#, c-format
-msgid "2. All printing requests are immediately sent to a remote CUPS server. "
-msgstr ""
-
-#: printer/printerdrake.pm:4607
-#, c-format
-msgid ""
-"Here local resource occupation is reduced to a minimum. No CUPS daemon is "
-"started or port opened, no software infrastructure for setting up local "
-"print queues is installed, so less memory and disk space is used. "
-msgstr ""
-
-#: printer/printerdrake.pm:4608
-#, c-format
-msgid ""
-"Disadvantage is that it is not possible to define local printers then and if "
-"the specified server is down it cannot be printed at all from this machine. "
-msgstr ""
-
-#: printer/printerdrake.pm:4610
-#, c-format
-msgid "How should CUPS be set up on your machine?"
-msgstr ""
-
-#: printer/printerdrake.pm:4614 printer/printerdrake.pm:4629
-#: printer/printerdrake.pm:4633 printer/printerdrake.pm:4639
-#, c-format
-msgid "Remote server, specify Name or IP here:"
-msgstr ""
-
-#: printer/printerdrake.pm:4628
-#, fuzzy, c-format
-msgid "Local CUPS printing system"
-msgstr "Промяна системата за печат"
-
-#: printer/printerdrake.pm:4667
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Изберете принтерен spooler"
-
-#: printer/printerdrake.pm:4668
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Коя принтерна система (spooler) изкате да използвате ?"
-
-#: printer/printerdrake.pm:4717
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "ННеуспешна настройка на принтер \"%s\"!"
-
-#: printer/printerdrake.pm:4732
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Инсталиране на Foomatic..."
-
-#: printer/printerdrake.pm:4738
-#, c-format
-msgid "Could not install %s packages, %s cannot be started!"
-msgstr ""
-
-#: printer/printerdrake.pm:4933
-#, fuzzy, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it. "
-msgstr ""
-"Следните принтери са настроени. Цъкнете на един от тях, за да го редактирате "
-"или за да получите информация за него."
-
-#: printer/printerdrake.pm:4963
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr ""
-
-#: printer/printerdrake.pm:4964
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Опресняване на списъка с принтери ( за да покаже и всички отдалечени CUPS "
-"принтери)"
-
-#: printer/printerdrake.pm:4975
-#, c-format
-msgid "CUPS configuration"
-msgstr "CUPS конфигурация"
-
-#: printer/printerdrake.pm:4996
-#, c-format
-msgid "Change the printing system"
-msgstr "Промяна системата за печат"
-
-#: printer/printerdrake.pm:5005
-#, c-format
-msgid "Normal Mode"
-msgstr "Нормален режим"
-
-#: printer/printerdrake.pm:5006
-#, c-format
-msgid "Expert Mode"
-msgstr "Разширени функиции"
-
-#: printer/printerdrake.pm:5284 printer/printerdrake.pm:5340
-#: printer/printerdrake.pm:5426 printer/printerdrake.pm:5435
-#, c-format
-msgid "Printer options"
-msgstr "Опции на принтера"
-
-#: printer/printerdrake.pm:5320
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Поправи настройките на принтер"
-
-#: printer/printerdrake.pm:5322
-#, c-format
-msgid ""
-"Printer %s%s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Принтер %s%s\n"
-"Какво искате да поправите по този принтер ?"
-
-#: printer/printerdrake.pm:5327
-#, fuzzy, c-format
-msgid "This printer is disabled"
-msgstr "Големината на дяла не може да бъде променена"
-
-#: printer/printerdrake.pm:5329
-#, c-format
-msgid "Do it!"
-msgstr "Направи го!"
-
-#: printer/printerdrake.pm:5335 printer/printerdrake.pm:5400
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Име на принтера, описание, местоположение"
-
-#: printer/printerdrake.pm:5337 printer/printerdrake.pm:5419
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Производител на принтера, модел, драйвер"
-
-#: printer/printerdrake.pm:5338 printer/printerdrake.pm:5420
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Производител на принтера, модел"
-
-#: printer/printerdrake.pm:5342 printer/printerdrake.pm:5430
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Определи този принтер за ползване по подразбиране"
-
-#: printer/printerdrake.pm:5347 printer/printerdrake.pm:5436
-#: printer/printerdrake.pm:5438 printer/printerdrake.pm:5447
-#, fuzzy, c-format
-msgid "Enable Printer"
-msgstr "Включва Сървър"
-
-#: printer/printerdrake.pm:5350 printer/printerdrake.pm:5441
-#: printer/printerdrake.pm:5442 printer/printerdrake.pm:5444
-#, fuzzy, c-format
-msgid "Disable Printer"
-msgstr "Изключва Сървър"
-
-#: printer/printerdrake.pm:5354 printer/printerdrake.pm:5448
-#, fuzzy, c-format
-msgid "Printer communication error handling"
-msgstr "Тип на връзката към принтера"
-
-#: printer/printerdrake.pm:5355 printer/printerdrake.pm:5452
-#, c-format
-msgid "Print test pages"
-msgstr "Отпечатване на тестови страници"
-
-#: printer/printerdrake.pm:5356 printer/printerdrake.pm:5454
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Научете как да изпозлвате този принтер"
-
-#: printer/printerdrake.pm:5357 printer/printerdrake.pm:5456
-#, c-format
-msgid "Remove printer"
-msgstr "Премахване на принтера"
-
-#: printer/printerdrake.pm:5408
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Изтриване на стар принтер \"%s\"..."
-
-#: printer/printerdrake.pm:5439
-#, fuzzy, c-format
-msgid "Printer \"%s\" is now enabled."
-msgstr "Принтер \"%s\" на сървър \"%s\""
-
-#: printer/printerdrake.pm:5445
-#, fuzzy, c-format
-msgid "Printer \"%s\" is now disabled."
-msgstr "Споделянето на Интернет връзката в момента е изключено."
-
-#: printer/printerdrake.pm:5487
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Наистина ли искате да премахнете принтера \"%s\" ?"
-
-#: printer/printerdrake.pm:5491
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Изтриване на принтер \"%s\"..."
-
-#: printer/printerdrake.pm:5515
-#, c-format
-msgid "Default printer"
-msgstr "Принтер по подразбиране"
-
-#: printer/printerdrake.pm:5516
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Принтерът \"%s\" вече е определен за ползване по подразбиране."
-
#: raid.pm:42
#, fuzzy, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "Не мога да прибавя дял към _форматиран_ RAID md%d"
-#: raid.pm:148
+#: raid.pm:150
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Няма достатъчно дялове за RAID ниво %d\n"
-#: scanner.pm:96
+#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr ""
-#: scanner.pm:107
+#: scanner.pm:106
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr ""
-#: scanner.pm:114
+#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr ""
-#: scanner.pm:121
+#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr ""
-#: scanner.pm:200 standalone/scannerdrake:66 standalone/scannerdrake:70
-#: standalone/scannerdrake:78 standalone/scannerdrake:321
-#: standalone/scannerdrake:370 standalone/scannerdrake:463
-#: standalone/scannerdrake:507 standalone/scannerdrake:511
-#: standalone/scannerdrake:533 standalone/scannerdrake:598
+#: scanner.pm:199
#, c-format
msgid "Scannerdrake"
msgstr "Скенердрейк"
-#: scanner.pm:201 standalone/scannerdrake:964
+#: scanner.pm:200
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""
-#: scanner.pm:202
+#: scanner.pm:201
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr ""
@@ -14471,12 +5076,12 @@ msgstr "Позволява/Забранява съобщения за IPv4 гр
#: security/help.pm:13
#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
+msgid "Accept/Refuse broadcasted icmp echo."
msgstr "Позволява/Забранява broadcasted icmp echo."
#: security/help.pm:15
#, c-format
-msgid " Accept/Refuse icmp echo."
+msgid "Accept/Refuse icmp echo."
msgstr "Позволява/Забранява icmp echo."
#: security/help.pm:17
@@ -14596,7 +5201,7 @@ msgid ""
"\"%s\" is true, also reports to syslog."
msgstr ""
-#: security/help.pm:80 standalone/draksec:215
+#: security/help.pm:80
#, c-format
msgid "Security Alerts:"
msgstr "Предупреждения за защита:"
@@ -14624,7 +5229,8 @@ msgstr "Разрешава/Забранява ежечасова проверк
#: security/help.pm:90
#, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"Enable su only from members of the wheel group. If set to no, allows su from "
+"any user."
msgstr ""
#: security/help.pm:92
@@ -14639,12 +5245,12 @@ msgstr ""
#: security/help.pm:96
#, c-format
-msgid " Activate/Disable daily security check."
+msgid "Activate/Disable daily security check."
msgstr "Разрешава/Забранява ежедневна проверка за защита"
#: security/help.pm:98
#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
+msgid "Enable/Disable sulogin(8) in single user level."
msgstr ""
#: security/help.pm:100
@@ -14904,7 +5510,7 @@ msgstr ""
#: security/l10n.pm:32
#, c-format
-msgid "Enable su only from the wheel group members or for any user"
+msgid "Enable su only from the wheel group members"
msgstr ""
#: security/l10n.pm:33
@@ -15029,7 +5635,7 @@ msgstr ""
#: security/l10n.pm:57
#, c-format
-msgid "Do not send mails when unneeded"
+msgid "Do not send empty mail reports"
msgstr ""
#: security/l10n.pm:58
@@ -15067,6 +5673,11 @@ msgstr "Добре дошли при Cracker-ите"
msgid "Poor"
msgstr "Лошо"
+#: security/level.pm:12
+#, c-format
+msgid "Standard"
+msgstr "Стандартна"
+
#: security/level.pm:13
#, c-format
msgid "High"
@@ -15146,6 +5757,11 @@ msgstr ""
#: security/level.pm:55
#, c-format
+msgid "Security"
+msgstr "Сигурност"
+
+#: security/level.pm:55
+#, c-format
msgid "DrakSec Basic Options"
msgstr "Основни опции на DrakSec "
@@ -15509,52 +6125,67 @@ msgstr "Зареждане драйвери за вашите USB устройс
msgid "Starts the X Font Server (this is mandatory for Xorg to run)."
msgstr "Стартира X Font Server (това е задължително, за да тръгне Xorg)."
-#: services.pm:115 services.pm:157
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Избира услугите, които трябва да се пуснат при пускане на машината"
-
-#: services.pm:127 standalone/draksambashare:111
+#: services.pm:114
#, c-format
msgid "Printing"
msgstr "Печатане"
-#: services.pm:128
+#: services.pm:115
#, c-format
msgid "Internet"
msgstr "Интернет"
-#: services.pm:131
+#: services.pm:118
#, c-format
msgid "File sharing"
msgstr "Поделяне на файлове"
-#: services.pm:138
+#: services.pm:120
+#, c-format
+msgid "System"
+msgstr "Система"
+
+#: services.pm:125
#, c-format
msgid "Remote Administration"
msgstr "Отдалечена администрация"
-#: services.pm:146
+#: services.pm:133
#, c-format
msgid "Database Server"
msgstr "Сървър Бази-данни"
-#: services.pm:209
+#: services.pm:144 services.pm:180
+#, c-format
+msgid "Services"
+msgstr "Услуги"
+
+#: services.pm:144
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Избира услугите, които трябва да се пуснат при пускане на машината"
+
+#: services.pm:162
+#, c-format
+msgid "Services: %d activated for %d registered"
+msgstr "Услуги: %d активирани от %d регистрирани"
+
+#: services.pm:196
#, c-format
msgid "running"
msgstr "стартиране"
-#: services.pm:209
+#: services.pm:196
#, c-format
msgid "stopped"
msgstr "спряна"
-#: services.pm:213
+#: services.pm:201
#, c-format
msgid "Services and daemons"
msgstr "Услуиги и демони"
-#: services.pm:219
+#: services.pm:207
#, c-format
msgid ""
"No additional information\n"
@@ -15563,481 +6194,32 @@ msgstr ""
"Няма допълнителна информация\n"
"за тази услуга, съжелявам."
-#: services.pm:224 ugtk2.pm:1009
+#: services.pm:212 ugtk2.pm:898
#, c-format
msgid "Info"
msgstr "Информация"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "Start when requested"
msgstr ""
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "On boot"
msgstr "При зареждане"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Start"
msgstr "Старт"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Stop"
msgstr "Стоп"
-#: share/advertising/01.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Packs"
-msgstr ""
-
-#: share/advertising/02.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More features"
-msgstr ""
-
-#: share/advertising/03.pl:3
-#, c-format
-msgid "Interactive firewall"
-msgstr ""
-
-#: share/advertising/04.pl:3
-#, c-format
-msgid "Desktop search"
-msgstr ""
-
-#: share/advertising/05.pl:3
-#, c-format
-msgid "New package manager"
-msgstr ""
-
-#: share/advertising/06.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More performances"
-msgstr ""
-
-#: share/advertising/07.pl:3
-#, c-format
-msgid "Latest kernel and GCC"
-msgstr ""
-
-#: share/advertising/08.pl:3
-#, c-format
-msgid "High Availibility"
-msgstr ""
-
-#: share/advertising/09.pl:3
-#, c-format
-msgid "Delta RPM"
-msgstr ""
-
-#: share/advertising/10.pl:3
-#, c-format
-msgid "Low resources setup"
-msgstr ""
-
-#: share/advertising/11.pl:3
-#, c-format
-msgid "Boot time reduction"
-msgstr ""
-
-#: share/advertising/12.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Easier to use"
-msgstr ""
-
-#: share/advertising/13.pl:3
-#, c-format
-msgid "Latest graphical interfaces: KDE and GNOME"
-msgstr ""
-
-#: share/advertising/14.pl:3
-#, c-format
-msgid "auto-installation servers"
-msgstr ""
-
-#: share/advertising/15.pl:3
-#, c-format
-msgid "Easy and quick installation"
-msgstr ""
-
-#: share/advertising/16.pl:3
-#, c-format
-msgid "Easy configuration thanks to 60 wizards"
-msgstr ""
-
-#: share/advertising/17.pl:3
-#, c-format
-msgid "Look and feel improved"
-msgstr ""
-
-#: share/advertising/18.pl:3
-#, c-format
-msgid "New webmin theme"
-msgstr ""
-
-#: share/advertising/19.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More support"
-msgstr ""
-
-#: share/advertising/20.pl:3
-#, c-format
-msgid "Better Hardware support"
-msgstr ""
-
-#: share/advertising/21.pl:3
-#, c-format
-msgid "Xen support"
-msgstr ""
-
-#: share/advertising/22.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More information"
-msgstr ""
-
-#: share/advertising/23.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Where to buy?"
-msgstr ""
-
-#: share/advertising/24.pl:3
-#, c-format
-msgid "Where to find technical assistance?"
-msgstr ""
-
-#: share/advertising/25.pl:3
-#, c-format
-msgid "How to join the Mandriva Linux community?"
-msgstr ""
-
-#: share/advertising/26.pl:3
-#, c-format
-msgid "How to keep your system up-to-date?"
-msgstr ""
-
-#: share/advertising/intel.pl:3
-#, c-format
-msgid "Intel Software"
-msgstr ""
-
-#: share/advertising/skype.pl:3
-#, c-format
-msgid "Skype lets you make calls through the Internet for free."
-msgstr ""
-
-#: share/compssUsers.pl:26
-#, c-format
-msgid "Office Workstation"
-msgstr "Офисна работна станция"
-
-#: share/compssUsers.pl:28
-#, c-format
-msgid ""
-"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
-"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
-msgstr ""
-"Офис програми: word-процесори (OpenOffice.org Writer, Kword), таблици "
-"(OpenOffice.org Calc, Kspread), преглед на PDF, и т.н."
-
-#: share/compssUsers.pl:29
-#, c-format
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Офис програми: word-процесори (kword, abiword), таблици (kspread, gnumeric), "
-"преглед на PDF, и т.н."
-
-#: share/compssUsers.pl:34
-#, c-format
-msgid "Game station"
-msgstr "Игрална станция"
-
-#: share/compssUsers.pl:35
-#, c-format
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Забавни програми: аркадни игри, игри на маса, стратегии и т.н."
-
-#: share/compssUsers.pl:38
-#, c-format
-msgid "Multimedia station"
-msgstr "Мутимедийна станция"
-
-#: share/compssUsers.pl:39
-#, c-format
-msgid "Sound and video playing/editing programs"
-msgstr "Програми за пускане/поправяне на звук и видео"
-
-#: share/compssUsers.pl:44
-#, c-format
-msgid "Internet station"
-msgstr "Интернет станция"
-
-#: share/compssUsers.pl:45
-#, fuzzy, c-format
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Набор от инструменти за четене и изпращане на поща и новини (pine, mutt, "
-"tin..) и за обикаляне из Мрежата"
-
-#: share/compssUsers.pl:50
-#, c-format
-msgid "Network Computer (client)"
-msgstr "Мрежов компютър (клиент)"
-
-#: share/compssUsers.pl:51
-#, c-format
-msgid "Clients for different protocols including ssh"
-msgstr "Клиенти за различни протоколи включително SSH"
-
-#: share/compssUsers.pl:55
-#, c-format
-msgid "Configuration"
-msgstr "Настройка"
-
-#: share/compssUsers.pl:56
-#, c-format
-msgid "Tools to ease the configuration of your computer"
-msgstr "Инструменти за улесняване настройката на компютъра ви"
-
-#: share/compssUsers.pl:60
-#, c-format
-msgid "Console Tools"
-msgstr "Конзолни инструменти"
-
-#: share/compssUsers.pl:61
-#, c-format
-msgid "Editors, shells, file tools, terminals"
-msgstr "Редактори, шелове, файлови инстрименти, терминали"
-
-#: share/compssUsers.pl:66 share/compssUsers.pl:170
-#, c-format
-msgid "C and C++ development libraries, programs and include files"
-msgstr "Библиотеки за разработка на C и C++, програми и include файлове"
-
-#: share/compssUsers.pl:70 share/compssUsers.pl:174
-#, c-format
-msgid "Documentation"
-msgstr "Документация"
-
-#: share/compssUsers.pl:71 share/compssUsers.pl:175
-#, c-format
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Книги и HOTWO-та за Linux и свободния софтуер"
-
-#: share/compssUsers.pl:75 share/compssUsers.pl:178
-#, c-format
-msgid "LSB"
-msgstr ""
-
-#: share/compssUsers.pl:76 share/compssUsers.pl:179
-#, c-format
-msgid "Linux Standard Base. Third party applications support"
-msgstr ""
-
-#: share/compssUsers.pl:86
-#, c-format
-msgid "Apache"
-msgstr "Apache"
-
-#: share/compssUsers.pl:89
-#, fuzzy, c-format
-msgid "Groupware"
-msgstr "Група"
-
-#: share/compssUsers.pl:90
-#, c-format
-msgid "Kolab Server"
-msgstr "Kolab Сървър"
-
-#: share/compssUsers.pl:93 share/compssUsers.pl:134
-#, c-format
-msgid "Firewall/Router"
-msgstr "Сървър, Firewall/Рутер"
-
-#: share/compssUsers.pl:94 share/compssUsers.pl:135
-#, c-format
-msgid "Internet gateway"
-msgstr "Интернет gateway"
-
-#: share/compssUsers.pl:97
-#, fuzzy, c-format
-msgid "Mail/News"
-msgstr "/Файл/_Нов"
-
-#: share/compssUsers.pl:98
-#, fuzzy, c-format
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix пощенски сървър"
-
-#: share/compssUsers.pl:101
-#, c-format
-msgid "Directory Server"
-msgstr "Сървър с директории"
-
-#: share/compssUsers.pl:105
-#, c-format
-msgid "FTP Server"
-msgstr "FTP сървър"
-
-#: share/compssUsers.pl:106
-#, c-format
-msgid "ProFTPd"
-msgstr ""
-
-#: share/compssUsers.pl:109
-#, fuzzy, c-format
-msgid "DNS/NIS"
-msgstr "FND/NIS"
-
-#: share/compssUsers.pl:110
-#, c-format
-msgid "Domain Name and Network Information Server"
-msgstr "Име на домейн и Мрежов Информационен Сървър"
-
-#: share/compssUsers.pl:113
-#, fuzzy, c-format
-msgid "File and Printer Sharing Server"
-msgstr "Сървър на принтера"
-
-#: share/compssUsers.pl:114
-#, fuzzy, c-format
-msgid "NFS Server, Samba server"
-msgstr "Samba Сървър"
-
-#: share/compssUsers.pl:117 share/compssUsers.pl:130
-#, c-format
-msgid "Database"
-msgstr "Сървър, Бази-данни"
-
-#: share/compssUsers.pl:118
-#, fuzzy, c-format
-msgid "PostgreSQL and MySQL Database Server"
-msgstr "PostgreSQL или MySQL сървър за бази-данни"
-
-#: share/compssUsers.pl:122
-#, c-format
-msgid "Web/FTP"
-msgstr "Сървър, Web/FTP"
-
-#: share/compssUsers.pl:123
-#, c-format
-msgid "Apache, Pro-ftpd"
-msgstr "Apache и Pro-ftpd"
-
-#: share/compssUsers.pl:126
-#, c-format
-msgid "Mail"
-msgstr "Е-поща"
-
-#: share/compssUsers.pl:127
-#, c-format
-msgid "Postfix mail server"
-msgstr "Postfix пощенски сървър"
-
-#: share/compssUsers.pl:131
-#, c-format
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL или MySQL сървър за бази-данни"
-
-#: share/compssUsers.pl:138
-#, c-format
-msgid "Network Computer server"
-msgstr "Мрежов компютър, сървър"
-
-#: share/compssUsers.pl:139
-#, c-format
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS сървър, SMB сървър, Proxy сървър, SSH сървър"
-
-#: share/compssUsers.pl:147
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE работна станция"
-
-#: share/compssUsers.pl:148
-#, c-format
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"The K Desktop Environment, проста среда с колекция от придружаващи "
-"инструменти"
-
-#: share/compssUsers.pl:152
-#, c-format
-msgid "GNOME Workstation"
-msgstr "Gnome работна станция"
-
-#: share/compssUsers.pl:153
-#, c-format
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Графична среда с потребителски набор от приложения и desktop инструменти"
-
-#: share/compssUsers.pl:156
-#, fuzzy, c-format
-msgid "IceWm Desktop"
-msgstr "настолен компютър"
-
-#: share/compssUsers.pl:160
-#, c-format
-msgid "Other Graphical Desktops"
-msgstr "Други графични desktop-и"
-
-#: share/compssUsers.pl:161
-#, fuzzy, c-format
-msgid "Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm и т.н."
-
-#: share/compssUsers.pl:184
-#, c-format
-msgid "Utilities"
-msgstr "Помощни програми"
-
-#: share/compssUsers.pl:186 share/compssUsers.pl:187 standalone/logdrake:384
-#, c-format
-msgid "SSH Server"
-msgstr "SSH Сървър"
-
-#: share/compssUsers.pl:191
-#, fuzzy, c-format
-msgid "Webmin"
-msgstr "Webmin Обслужване"
-
-#: share/compssUsers.pl:192
-#, fuzzy, c-format
-msgid "Webmin Remote Configuration Server"
-msgstr "Конфигурация на Терминален Сървър в Mandriva Linux"
-
-#: share/compssUsers.pl:196
-#, fuzzy, c-format
-msgid "Network Utilities/Monitoring"
-msgstr "Мониторинг на мрежата"
-
-#: share/compssUsers.pl:197
-#, c-format
-msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
-msgstr ""
-
-#: share/compssUsers.pl:201
-#, fuzzy, c-format
-msgid "Mandriva Wizards"
-msgstr "Контролен център на Mandriva Linux"
-
-#: share/compssUsers.pl:202
-#, fuzzy, c-format
-msgid "Wizards to configure server"
-msgstr "ННеуспешна настройка на принтер \"%s\"!"
-
-#: standalone.pm:23
+#: standalone.pm:24
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
@@ -16052,10 +6234,11 @@ msgid ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
msgstr ""
-#: standalone.pm:42
+#: standalone.pm:43
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
@@ -16071,7 +6254,7 @@ msgid ""
"--version : show version number.\n"
msgstr ""
-#: standalone.pm:54
+#: standalone.pm:55
#, c-format
msgid ""
"[--boot] [--splash]\n"
@@ -16081,7 +6264,7 @@ msgid ""
"default mode: offer to configure autologin feature"
msgstr ""
-#: standalone.pm:59
+#: standalone.pm:60
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
@@ -16092,7 +6275,7 @@ msgid ""
" --incident - program should be one of Mandriva Linux tools"
msgstr ""
-#: standalone.pm:65
+#: standalone.pm:66
#, c-format
msgid ""
"[--add]\n"
@@ -16103,7 +6286,7 @@ msgid ""
" --wizard - like --add"
msgstr ""
-#: standalone.pm:71
+#: standalone.pm:72
#, c-format
msgid ""
"\n"
@@ -16121,7 +6304,7 @@ msgid ""
" : and gs for ghostscript for only this one."
msgstr ""
-#: standalone.pm:86
+#: standalone.pm:87
#, c-format
msgid ""
"[OPTIONS]...\n"
@@ -16139,17 +6322,17 @@ msgid ""
"IP, nbi image name)"
msgstr ""
-#: standalone.pm:98
+#: standalone.pm:99
#, c-format
msgid "[keyboard]"
msgstr "[клавиатура]"
-#: standalone.pm:99
+#: standalone.pm:100
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr ""
-#: standalone.pm:100
+#: standalone.pm:101
#, c-format
msgid ""
"[OPTIONS]\n"
@@ -16163,12 +6346,7 @@ msgid ""
"--quiet : do not be interactive. To be used with (dis)connect."
msgstr ""
-#: standalone.pm:109
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: standalone.pm:110
+#: standalone.pm:111
#, c-format
msgid ""
"[OPTION]...\n"
@@ -16180,14 +6358,14 @@ msgid ""
" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
msgstr ""
-#: standalone.pm:115
+#: standalone.pm:116
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
msgstr ""
-#: standalone.pm:116
+#: standalone.pm:117
#, c-format
msgid ""
" [everything]\n"
@@ -16195,7 +6373,7 @@ msgid ""
" XFdrake resolution"
msgstr ""
-#: standalone.pm:149
+#: standalone.pm:150
#, c-format
msgid ""
"\n"
@@ -16206,8817 +6384,102 @@ msgstr ""
"Използване: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
-#: standalone/XFdrake:59
-#, fuzzy, c-format
-msgid "You need to reboot for changes to take effect"
-msgstr "Трябва да рестартирате, преди промените да влязат в сила"
-
-#: standalone/XFdrake:90
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Моля излезте от сесията и използвайте Ctrl-Alt-BackSpace"
-
-#: standalone/XFdrake:94
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr ""
-
-#: standalone/drakTermServ:112 standalone/drakTermServ:118
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr ""
-
-#: standalone/drakTermServ:129
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s %s изисква име на хост,MAC адрес,IP,nbi-image, 0/1 за THIN_CLIENT, 0/1 за "
-"Локална настройка...\n"
-
-#: standalone/drakTermServ:135
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr ""
-
-#: standalone/drakTermServ:144
-#, c-format
-msgid "Host name for client"
-msgstr ""
-
-#: standalone/drakTermServ:145
-#, c-format
-msgid "MAC address should be in the format 00:11:22:33:44:55"
-msgstr ""
-
-#: standalone/drakTermServ:146
-#, c-format
-msgid "IP address to be assigned to client"
-msgstr ""
-
-#: standalone/drakTermServ:147
-#, c-format
-msgid "Kernel/network adapter image to use to boot client"
-msgstr ""
-
-#: standalone/drakTermServ:148
-#, c-format
-msgid "Create masking files to allow configuration tools to run on client"
-msgstr ""
-
-#: standalone/drakTermServ:149
-#, c-format
-msgid "Applications will run on server machine"
-msgstr ""
-
-#: standalone/drakTermServ:234 standalone/drakTermServ:237
-#, fuzzy, c-format
-msgid "Terminal Server Configuration"
-msgstr "Конфигурация на Терминален Сървър в Mandriva Linux"
-
-#: standalone/drakTermServ:243
-#, fuzzy, c-format
-msgid "dhcpd Config"
-msgstr "Настройка на dhcpd..."
-
-#: standalone/drakTermServ:247
-#, c-format
-msgid "Enable Server"
-msgstr "Включва Сървър"
-
-#: standalone/drakTermServ:253
-#, c-format
-msgid "Disable Server"
-msgstr "Изключва Сървър"
-
-#: standalone/drakTermServ:259
-#, c-format
-msgid "Start Server"
-msgstr "Стартира сървър"
-
-#: standalone/drakTermServ:265
-#, c-format
-msgid "Stop Server"
-msgstr "Спира сървър"
-
-#: standalone/drakTermServ:274
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr ""
-
-#: standalone/drakTermServ:278
-#, c-format
-msgid "Net Boot Images"
-msgstr ""
-
-#: standalone/drakTermServ:285
-#, c-format
-msgid "Add/Del Users"
-msgstr "Добавя/Изтрива потребители"
-
-#: standalone/drakTermServ:289
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Добавя/Изтрива клиенти"
-
-#: standalone/drakTermServ:297
-#, c-format
-msgid "Images"
-msgstr "Изображения"
-
-#: standalone/drakTermServ:298
-#, c-format
-msgid "Clients/Users"
-msgstr ""
-
-#: standalone/drakTermServ:316 standalone/drakbug:47
-#, c-format
-msgid "First Time Wizard"
-msgstr "Първоначален помощник"
-
-#: standalone/drakTermServ:354 standalone/drakTermServ:355
-#, c-format
-msgid "%s defined as dm, adding gdm user to /etc/passwd$$CLIENT$$"
-msgstr ""
-
-#: standalone/drakTermServ:361
-#, c-format
-msgid ""
-"\n"
-" This wizard routine will:\n"
-" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
-"\t2) Setup DHCP.\n"
-"\t\n"
-"After doing these steps, the wizard will:\n"
-"\t\n"
-" a) Make all "
-"nbis. \n"
-" b) Activate the "
-"server. \n"
-" c) Start the "
-"server. \n"
-" d) Synchronize the shadow files so that all users, including root, \n"
-" are added to the shadow$$CLIENT$$ "
-"file. \n"
-" e) Ask you to make a boot floppy.\n"
-" f) If it's thin clients, ask if you want to restart KDM.\n"
-msgstr ""
-
-#: standalone/drakTermServ:407
-#, fuzzy, c-format
-msgid "Cancel Wizard"
-msgstr "Стартиране на помощник"
-
-#: standalone/drakTermServ:422
-#, c-format
-msgid "Please save dhcpd config!"
-msgstr ""
-
-#: standalone/drakTermServ:450
-#, fuzzy, c-format
-msgid "Use thin clients."
-msgstr "Разрешава Thin клиенти"
-
-#: standalone/drakTermServ:452
-#, c-format
-msgid "Sync client X keyboard settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:454
-#, c-format
-msgid ""
-"Please select default client type (Fat is the default type if 'Use thin' is "
-"unchecked).\n"
-" 'Thin' clients run everything off the server's CPU/RAM, using the client "
-"display.\n"
-" 'Fat' clients use their own CPU/RAM but the server's filesystem."
-msgstr ""
-
-#: standalone/drakTermServ:474
-#, c-format
-msgid "Creating net boot images for all kernels"
-msgstr ""
-
-#: standalone/drakTermServ:475 standalone/drakTermServ:807
-#: standalone/drakTermServ:823
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Това ще отнеме няколко минути."
-
-#: standalone/drakTermServ:481 standalone/drakTermServ:521
-#, fuzzy, c-format
-msgid "Done!"
-msgstr "Готово"
-
-#: standalone/drakTermServ:492 standalone/drakTermServ:894
-#, c-format
-msgid "%s failed"
-msgstr ""
-
-#: standalone/drakTermServ:501
-#, c-format
-msgid ""
-"Not enough space to create\n"
-"NBIs in %s.\n"
-"Needed: %d MB, Free: %d MB"
-msgstr ""
-
-#: standalone/drakTermServ:507
-#, c-format
-msgid "Syncing server user list with client list, including root."
-msgstr ""
-
-#: standalone/drakTermServ:527
-#, c-format
-msgid ""
-"In order to enable changes made for thin clients, the display manager must "
-"be restarted. Restart now?"
-msgstr ""
-
-#: standalone/drakTermServ:564
-#, fuzzy, c-format
-msgid "Terminal Server Overview"
-msgstr "Конфигурация на Терминален Сървър в Mandriva Linux"
-
-#: standalone/drakTermServ:565
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and %s is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-
-#: standalone/drakTermServ:571
-#, c-format
-msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. %s helps create/"
-"remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
-msgstr ""
-
-#: standalone/drakTermServ:589
-#, c-format
-msgid ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be "
-"'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, \n"
-" %s is written for thin clients. \n"
-" System config files xdm-config, kdmrc, and gdm.conf are modified if "
-"thin clients are \n"
-" used, to enable XDMCP. Since there are security issues in using "
-"XDMCP, hosts.deny and \n"
-" hosts.allow are modified to limit access to the local subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-msgstr ""
-
-#: standalone/drakTermServ:609
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-msgstr ""
-
-#: standalone/drakTermServ:621
-#, c-format
-msgid ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. \n"
-" \t%s helps in this respect by adding or removing system users from "
-"this \n"
-" \tfile."
-msgstr ""
-
-#: standalone/drakTermServ:626
-#, c-format
-msgid ""
-" - Per client %s:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t%s will help create these files."
-msgstr ""
-
-#: standalone/drakTermServ:631
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-msgstr ""
-
-#: standalone/drakTermServ:640
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s will configure this file to work in conjunction with the images "
-"created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical TFTP configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
-msgstr ""
-
-#: standalone/drakTermServ:661
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-msgstr ""
-
-#: standalone/drakTermServ:694
-#, c-format
-msgid "Boot Floppy"
-msgstr "Стартова дискета"
-
-#: standalone/drakTermServ:696
-#, c-format
-msgid "Boot ISO"
-msgstr ""
-
-#: standalone/drakTermServ:698
-#, fuzzy, c-format
-msgid "PXE Image"
-msgstr "Образ"
-
-#: standalone/drakTermServ:759
-#, fuzzy, c-format
-msgid "Default kernel version"
-msgstr "Версия на ядрото"
-
-#: standalone/drakTermServ:764
-#, c-format
-msgid "Create PXE images"
-msgstr ""
-
-#: standalone/drakTermServ:765
-#, c-format
-msgid "Use Unionfs (TS2)"
-msgstr ""
-
-#: standalone/drakTermServ:795
-#, c-format
-msgid "Install i586 kernel for older clients"
-msgstr ""
-
-#: standalone/drakTermServ:805
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Построява цялото ядро -->"
-
-#: standalone/drakTermServ:812
-#, c-format
-msgid "No kernel selected!"
-msgstr "Няма избрано ядро!"
-
-#: standalone/drakTermServ:815
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Построява единичен NIC -->"
-
-#: standalone/drakTermServ:819 standalone/drakTermServ:1643
-#, c-format
-msgid "No NIC selected!"
-msgstr "Няма избран NIC !"
-
-#: standalone/drakTermServ:822
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Построява всички ядра -->"
-
-#: standalone/drakTermServ:835
-#, c-format
-msgid ""
-"Custom\n"
-"kernel args"
-msgstr ""
-
-#: standalone/drakTermServ:840
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Изтрива"
-
-#: standalone/drakTermServ:845
-#, fuzzy, c-format
-msgid "No image selected!"
-msgstr "Няма избран NIC !"
-
-#: standalone/drakTermServ:848
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Изтрива всички NBI"
-
-#: standalone/drakTermServ:925
-#, c-format
-msgid "Building images for kernel:"
-msgstr ""
-
-#: standalone/drakTermServ:1050
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-
-#: standalone/drakTermServ:1055
-#, c-format
-msgid "Add User -->"
-msgstr "Добавя потребител -->"
-
-#: standalone/drakTermServ:1061
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- Изтрива потребител"
-
-#: standalone/drakTermServ:1097
-#, c-format
-msgid "type: %s"
-msgstr "тип: %s"
-
-#: standalone/drakTermServ:1101
-#, c-format
-msgid "local config: %s"
-msgstr ""
-
-#: standalone/drakTermServ:1136
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Позволява локална настройка\n"
-"на хардуера"
-
-#: standalone/drakTermServ:1146
-#, c-format
-msgid "No net boot images created!"
-msgstr ""
-
-#: standalone/drakTermServ:1165
-#, c-format
-msgid "Thin Client"
-msgstr "Thin клиент"
-
-#: standalone/drakTermServ:1169
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "Разрешава Thin клиенти"
-
-#: standalone/drakTermServ:1170
-#, c-format
-msgid ""
-"Sync client X keyboard\n"
-" settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:1171
-#, c-format
-msgid "Add Client -->"
-msgstr "Добавя клиент -->"
-
-#: standalone/drakTermServ:1181
-#, c-format
-msgid "Unknown MAC address format"
-msgstr ""
-
-#: standalone/drakTermServ:1195
-#, c-format
-msgid "type: fat"
-msgstr "тип: fat"
-
-#: standalone/drakTermServ:1196
-#, c-format
-msgid "type: thin"
-msgstr "тип: thin"
-
-#: standalone/drakTermServ:1203
-#, c-format
-msgid "local config: false"
-msgstr "локална настройка: не"
-
-#: standalone/drakTermServ:1204
-#, c-format
-msgid "local config: true"
-msgstr "локална настройка: да"
-
-#: standalone/drakTermServ:1212
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Редактира клиент"
-
-#: standalone/drakTermServ:1237
-#, c-format
-msgid "Disable Local Config"
-msgstr "Забранява локалните настройки"
-
-#: standalone/drakTermServ:1244
-#, c-format
-msgid "Delete Client"
-msgstr "Изтрива клиент"
-
-#: standalone/drakTermServ:1267
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-"Трябва да престартирате Мениджъа на Дисплей за да имат ефект промените. \n"
-"(обслужване dm restart - от конзолара)"
-
-#: standalone/drakTermServ:1313
-#, c-format
-msgid "Thin clients will not work with autologin. Disable autologin?"
-msgstr ""
-
-#: standalone/drakTermServ:1328
-#, c-format
-msgid "All clients will use %s"
-msgstr ""
-
-#: standalone/drakTermServ:1362
-#, c-format
-msgid "Subnet:"
-msgstr "Подмрежа:"
-
-#: standalone/drakTermServ:1369
-#, c-format
-msgid "Netmask:"
-msgstr "Мрежова маска:"
-
-#: standalone/drakTermServ:1376
-#, c-format
-msgid "Routers:"
-msgstr "Рутери:"
-
-#: standalone/drakTermServ:1383
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Маска на подмрежа:"
-
-#: standalone/drakTermServ:1390
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Broadcast адрес:"
-
-#: standalone/drakTermServ:1397
-#, c-format
-msgid "Domain Name:"
-msgstr "Име на домейна:"
-
-#: standalone/drakTermServ:1405
-#, c-format
-msgid "Name Servers:"
-msgstr "Name сървъри:"
-
-#: standalone/drakTermServ:1416
-#, c-format
-msgid "IP Range Start:"
-msgstr "Начало на IP обхват:"
-
-#: standalone/drakTermServ:1417
-#, c-format
-msgid "IP Range End:"
-msgstr "Край на IP обхват:"
-
-#: standalone/drakTermServ:1459
-#, c-format
-msgid "Append TS Includes To Existing Config"
-msgstr ""
-
-#: standalone/drakTermServ:1461
-#, c-format
-msgid "Write Config"
-msgstr "Записва настройка"
-
-#: standalone/drakTermServ:1477
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Конфигуриране на dhcpd сървър"
-
-#: standalone/drakTermServ:1478
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"Повечето от тези стойности са извлечени\n"
-"от вашата работеща система.\n"
-"Вие може да ги промените при необходимост."
-
-#: standalone/drakTermServ:1481
-#, c-format
-msgid ""
-"Dynamic IP Address Pool\n"
-"(needed for PXE clients):"
-msgstr ""
-
-#: standalone/drakTermServ:1634
-#, c-format
-msgid "Write to %s failed!"
-msgstr ""
-
-#: standalone/drakTermServ:1647
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Сложете дискета:"
-
-#: standalone/drakTermServ:1651
-#, c-format
-msgid "Could not access the floppy!"
-msgstr "Нямам достъп до флопи!"
-
-#: standalone/drakTermServ:1653
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Флопито може да бъде извадено сега"
-
-#: standalone/drakTermServ:1656
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Няма флопи устройство!"
-
-#: standalone/drakTermServ:1662
-#, c-format
-msgid "PXE image is %s/%s"
-msgstr ""
-
-#: standalone/drakTermServ:1664
-#, fuzzy, c-format
-msgid "Error writing %s/%s"
-msgstr "Грешка при запис във файла %s"
-
-#: standalone/drakTermServ:1676
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr ""
-
-#: standalone/drakTermServ:1680
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Нещо беше грешно! - Дали mkisofs е инсталиран?"
-
-#: standalone/drakTermServ:1700
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Трябва да създадете първо /etc/dhcpd.conf!"
-
-#: standalone/drakTermServ:1867
-#, c-format
-msgid "%s passwd bad in Terminal Server - rewriting...\n"
-msgstr ""
-
-#: standalone/drakTermServ:1880
-#, fuzzy, c-format
-msgid "%s is not a user..\n"
-msgstr "%s не е намерен...\n"
-
-#: standalone/drakTermServ:1881
-#, c-format
-msgid "%s is already a Terminal Server user\n"
-msgstr ""
-
-#: standalone/drakTermServ:1883
-#, c-format
-msgid "Addition of %s to Terminal Server failed!\n"
-msgstr ""
-
-#: standalone/drakTermServ:1885
-#, c-format
-msgid "%s added to Terminal Server\n"
-msgstr ""
-
-#: standalone/drakTermServ:1903
-#, fuzzy, c-format
-msgid "Deleted %s...\n"
-msgstr "Засечен %s"
-
-#: standalone/drakTermServ:1905 standalone/drakTermServ:1978
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s не е намерен...\n"
-
-#: standalone/drakTermServ:2006
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
-"/etc/hosts.allow и /etc/hosts.deny вече са конфигурирани - не са променени"
-
-#: standalone/drakTermServ:2158
-#, c-format
-msgid "Configuration changed - restart %s/dhcpd?"
-msgstr "Настройката е променена - растартиране на %s/dhcpd"
-
-#: standalone/drakautoinst:38 standalone/drakhosts:123
-#: standalone/drakhosts:129 standalone/draknfs:84 standalone/draknfs:105
-#: standalone/draknfs:444 standalone/draknfs:447 standalone/draknfs:539
-#: standalone/draknfs:546 standalone/draksambashare:187
-#: standalone/draksambashare:208 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Error!"
-msgstr "Грешка !"
-
-#: standalone/drakautoinst:39
-#, c-format
-msgid "I can not find needed image file `%s'."
-msgstr "Не мога да намеря нужна картинка `%s'."
-
-#: standalone/drakautoinst:41
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Настройчик на автоматична иснталация"
-
-#: standalone/drakautoinst:42
-#, c-format
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Press ok to continue."
-msgstr ""
-
-#: standalone/drakautoinst:60
-#, c-format
-msgid "replay"
-msgstr "повтори"
-
-#: standalone/drakautoinst:60 standalone/drakautoinst:69
-#, c-format
-msgid "manual"
-msgstr "ръчно"
-
-#: standalone/drakautoinst:64
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Настройка на автоматичните стъпки"
-
-#: standalone/drakautoinst:65
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Моля, изберете за всяка стъпка, дали ще се преиграе като при инсталацията, "
-"или ще бъде ръчна"
-
-#: standalone/drakautoinst:77 standalone/drakautoinst:78
-#: standalone/drakautoinst:92
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Подготвям дискета с автоматична инсталация"
-
-#: standalone/drakautoinst:90
-#, fuzzy, c-format
-msgid "Insert another blank floppy in drive %s (for drivers disk)"
-msgstr "Сложете празна дискета в устройство %s"
-
-#: standalone/drakautoinst:91
-#, fuzzy, c-format
-msgid "Creating auto install floppy (drivers disk)"
-msgstr "Подготвям дискета с автоматична инсталация"
-
-#: standalone/drakautoinst:156
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Добре дошли.\n"
-"\n"
-"Параметрите за автоинсталация са налични в секцията в ляво"
-
-#: standalone/drakautoinst:251
-#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Дискетата е успешно създадена.\n"
-"Сега можете да преиграете инсталацията."
-
-#: standalone/drakautoinst:287
-#, c-format
-msgid "Auto Install"
-msgstr "Автоматично Инсталира"
-
-#: standalone/drakautoinst:356
-#, c-format
-msgid "Add an item"
-msgstr "Добавяне на обект"
-
-#: standalone/drakautoinst:363
-#, c-format
-msgid "Remove the last item"
-msgstr "Изтрива последният обект"
-
-#: standalone/drakbackup:157
-#, c-format
-msgid ""
-"Expect is an extension to the TCL scripting language that allows interactive "
-"sessions without user intervention."
-msgstr ""
-
-#: standalone/drakbackup:158
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr ""
-
-#: standalone/drakbackup:159
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
-
-#: standalone/drakbackup:160
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-
-#: standalone/drakbackup:161
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-
-#: standalone/drakbackup:162
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-
-#: standalone/drakbackup:163
-#, c-format
-msgid ""
-"Star should be selected if you want to backup EA or ACLs, otherwise choose "
-"tar"
-msgstr ""
-
-#: standalone/drakbackup:164
-#, c-format
-msgid ""
-"This should be a local user or email address that you want the backup "
-"results sent to. You will need to define a functioning mail server. Multiple "
-"users can be in a comma seperated list"
-msgstr ""
-
-#: standalone/drakbackup:165
-#, c-format
-msgid ""
-"This should be the return address that you want the backup results sent "
-"from. Default is drakbackup."
-msgstr ""
-
-#: standalone/drakbackup:166
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-"Файлове или маски,записани в .backupignore файла в първата директория от "
-"архива, няма да бъдат архивирани."
-
-#: standalone/drakbackup:167
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-
-#: standalone/drakbackup:168
-#, c-format
-msgid ""
-"Selecting this option allows you to view the raw output from the restore "
-"process, after a file restore."
-msgstr ""
-
-#: standalone/drakbackup:169
-#, c-format
-msgid ""
-"Some protocols, like rsync, may be configured at the server end. Rather "
-"than using a directory path, you would use the 'module' name for the service "
-"path."
-msgstr ""
-
-#: standalone/drakbackup:170
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-
-#: standalone/drakbackup:344
-#, c-format
-msgid "No media selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:348
-#, c-format
-msgid "No interval selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:393
-#, c-format
-msgid "Interval cron not available as non-root"
-msgstr ""
-
-#: standalone/drakbackup:477 standalone/logdrake:439
-#, c-format
-msgid "\"%s\" neither is a valid email nor is an existing local user!"
-msgstr ""
-
-#: standalone/drakbackup:481 standalone/logdrake:444
-#, 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 ""
-
-#: standalone/drakbackup:491
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr ""
-
-#: standalone/drakbackup:493
-#, c-format
-msgid "Old user list:\n"
-msgstr ""
-
-#: standalone/drakbackup:495
-#, c-format
-msgid "New user list:\n"
-msgstr ""
-
-#: standalone/drakbackup:524
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
-msgstr ""
-"\n"
-" DrakBackup отчет \n"
-"\n"
-
-#: standalone/drakbackup:525
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-msgstr ""
-"\n"
-" DrakBackup Рапорт \n"
-"\n"
-
-#: standalone/drakbackup:531
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:556 standalone/drakbackup:627
-#: standalone/drakbackup:683
-#, c-format
-msgid "Total progress"
-msgstr "Общ прогрес"
-
-#: standalone/drakbackup:609
-#, c-format
-msgid ""
-"%s exists, delete?\n"
-"\n"
-"If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-
-#: standalone/drakbackup:618
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr ""
-
-#: standalone/drakbackup:625
-#, fuzzy, c-format
-msgid "Cannot spawn %s."
-msgstr "Не мога да отворя %s!"
-
-#: standalone/drakbackup:642
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr ""
-
-#: standalone/drakbackup:643
-#, c-format
-msgid "Bad password on %s"
-msgstr "Лоша парола на %s"
-
-#: standalone/drakbackup:644
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr ""
-
-#: standalone/drakbackup:645
-#, c-format
-msgid "Can not find %s on %s"
-msgstr "Не мога да намеря %s на %s"
-
-#: standalone/drakbackup:649
-#, c-format
-msgid "%s not responding"
-msgstr ""
-
-#: standalone/drakbackup:653
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-
-#: standalone/drakbackup:703
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr ""
-
-#: standalone/drakbackup:707
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr ""
-
-#: standalone/drakbackup:712
-#, c-format
-msgid "Not erasable media!"
-msgstr "Този носител не може да бъде изтрит !"
-
-#: standalone/drakbackup:754
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr ""
-
-#: standalone/drakbackup:812
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr ""
-
-#: standalone/drakbackup:840
-#, c-format
-msgid "No tape in %s!"
-msgstr ""
-
-#: standalone/drakbackup:953
-#, c-format
-msgid ""
-"Backup destination quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-
-#: standalone/drakbackup:973 standalone/drakbackup:1005
-#, c-format
-msgid "Backup system files..."
-msgstr "Архивиране на системни файлове..."
-
-#: standalone/drakbackup:1006 standalone/drakbackup:1045
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Архивни файлове на харддиска"
-
-#: standalone/drakbackup:1044
-#, c-format
-msgid "Backup User files..."
-msgstr "Резервно копие на потребителски файлове..."
-
-#: standalone/drakbackup:1078
-#, c-format
-msgid "Backup Other files..."
-msgstr "Резервно копие на други файлове..."
-
-#: standalone/drakbackup:1079
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Прогрес за резервно копие на твърд диск..."
-
-#: standalone/drakbackup:1084
-#, c-format
-msgid "No changes to backup!"
-msgstr "Няма промени за резервно копие!"
-
-#: standalone/drakbackup:1100 standalone/drakbackup:1122
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:1109
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: standalone/drakbackup:1110
-#, c-format
-msgid ""
-"Error during sending file via FTP. Please correct your FTP configuration."
-msgstr ""
-
-#: standalone/drakbackup:1112
-#, c-format
-msgid "file list sent by FTP: %s\n"
-msgstr ""
-
-#: standalone/drakbackup:1127
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:1132
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:1141
-#, c-format
-msgid "Error sending mail. Your report mail was not sent."
-msgstr ""
-
-#: standalone/drakbackup:1142
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr " Грешка по време на изпращане на поща. \n"
-
-#: standalone/drakbackup:1172
-#, c-format
-msgid "Can not create catalog!"
-msgstr ""
-
-#: standalone/drakbackup:1332
-#, fuzzy, c-format
-msgid "Problem installing %s"
-msgstr "Проблеми с инсталирането на пакета %s"
-
-#: standalone/drakbackup:1420
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Резервно копие на вашите системни файлове (/etc директория)"
-
-#: standalone/drakbackup:1421 standalone/drakbackup:1484
-#: standalone/drakbackup:1550
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr ""
-"Използва инкрементално/диференциално създаване на резервно копие ( не замена "
-"старите)"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Използва инкрементни архиви"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Differential Backups"
-msgstr ""
-
-#: standalone/drakbackup:1425
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Не включва критични файлове (passwd, group, fstab)"
-
-#: standalone/drakbackup:1456
-#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Моля, изберете всички потребители,които желаете да включите в архива."
-
-#: standalone/drakbackup:1483
-#, c-format
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: standalone/drakbackup:1537
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr ""
-
-#: standalone/drakbackup:1538 standalone/drakfont:650
-#, c-format
-msgid "Remove Selected"
-msgstr "Изтриване на оизбраните"
-
-#: standalone/drakbackup:1601
-#, c-format
-msgid "Users"
-msgstr "Потребители"
-
-#: standalone/drakbackup:1621
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Използва мрежовата връзка за архивиране"
-
-#: standalone/drakbackup:1623
-#, c-format
-msgid "Net Method:"
-msgstr "Мрежов метод:"
-
-#: standalone/drakbackup:1627
-#, c-format
-msgid "Use Expect for SSH"
-msgstr ""
-
-#: standalone/drakbackup:1628
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr ""
-
-#: standalone/drakbackup:1630
-#, c-format
-msgid "Transfer Now"
-msgstr "Прехвърля сега"
-
-#: standalone/drakbackup:1632
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr ""
-
-#: standalone/drakbackup:1635
-#, c-format
-msgid "Host name or IP."
-msgstr "Име на хост: или IP"
-
-#: standalone/drakbackup:1640
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
-
-#: standalone/drakbackup:1652
-#, c-format
-msgid "Remember this password"
-msgstr "Запомня тази парола"
-
-#: standalone/drakbackup:1664
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr ""
-
-#: standalone/drakbackup:1755
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr ""
-
-#: standalone/drakbackup:1758
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Изберете вашето CD/DVD устройство"
-
-#: standalone/drakbackup:1763
-#, fuzzy, c-format
-msgid "Choose your CD/DVD media size"
-msgstr "Моля, изберете размера на вашето CD/DVD (Mb)"
-
-#: standalone/drakbackup:1770
-#, c-format
-msgid "Multisession CD"
-msgstr "Мултисесиен диск"
-
-#: standalone/drakbackup:1772
-#, c-format
-msgid "CDRW media"
-msgstr ""
-
-#: standalone/drakbackup:1778
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Изтриване на вашия RW носител (1ва сесия)"
-
-#: standalone/drakbackup:1779
-#, c-format
-msgid " Erase Now "
-msgstr " Изтрива сега "
-
-#: standalone/drakbackup:1785
-#, c-format
-msgid "DVD+RW media"
-msgstr ""
-
-#: standalone/drakbackup:1787
-#, fuzzy, c-format
-msgid "DVD-R media"
-msgstr "DVDR устройство"
-
-#: standalone/drakbackup:1789
-#, c-format
-msgid "DVDRAM device"
-msgstr "DVDRAM устройство"
-
-#: standalone/drakbackup:1820
-#, c-format
-msgid "No CD device defined!"
-msgstr "Не е дефинирано CD устройство!"
-
-#: standalone/drakbackup:1862
-#, c-format
-msgid "Use tape to backup"
-msgstr "Използва лента за резервно копие"
-
-#: standalone/drakbackup:1865
-#, c-format
-msgid "Device name to use for backup"
-msgstr ""
-
-#: standalone/drakbackup:1871
-#, c-format
-msgid "Backup directly to tape"
-msgstr ""
-
-#: standalone/drakbackup:1877
-#, c-format
-msgid "Use tape hardware compression (EXPERIMENTAL)"
-msgstr ""
-
-#: standalone/drakbackup:1883
-#, c-format
-msgid "Do not rewind tape after backup"
-msgstr "Не превърта лентата след архивиране"
-
-#: standalone/drakbackup:1889
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Изтрива лентата преди да архивира"
-
-#: standalone/drakbackup:1895
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Изкарва лента след архивиране"
-
-#: standalone/drakbackup:1976
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Моля веведете директорията за запазване:"
-
-#: standalone/drakbackup:1980
-#, fuzzy, c-format
-msgid "Directory to save to"
-msgstr "Моля веведете директорията за запазване:"
-
-#: standalone/drakbackup:1985
-#, c-format
-msgid ""
-"Maximum disk space\n"
-" allocated for backups (MB)"
-msgstr ""
-
-#: standalone/drakbackup:1989
-#, c-format
-msgid ""
-"Delete incremental or differential\n"
-" backups older than N days\n"
-" (0 is keep all backups) to save space"
-msgstr ""
-
-#: standalone/drakbackup:2056
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CDROM / DVDROM"
-
-#: standalone/drakbackup:2061
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Твърд диск / NFS"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2077
-#: standalone/drakbackup:2082
-#, c-format
-msgid "hourly"
-msgstr ""
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2078
-#: standalone/drakbackup:2083
-#, c-format
-msgid "daily"
-msgstr ""
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2079
-#: standalone/drakbackup:2084
-#, c-format
-msgid "weekly"
-msgstr ""
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2080
-#: standalone/drakbackup:2085
-#, c-format
-msgid "monthly"
-msgstr "Ежемесечно"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2081
-#: standalone/drakbackup:2086
-#, c-format
-msgid "custom"
-msgstr "потребителски"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "January"
-msgstr "януари"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "February"
-msgstr "февруари"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "March"
-msgstr "Март"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "April"
-msgstr "април"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "May"
-msgstr "май"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "June"
-msgstr "юни"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "July"
-msgstr "юли"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "August"
-msgstr "Август"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "September"
-msgstr "септември"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "October"
-msgstr "октомври"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "November"
-msgstr "Ноември"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "December"
-msgstr "декември"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Sunday"
-msgstr "неделя"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Monday"
-msgstr "понеделник"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Tuesday"
-msgstr "Вторник"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Wednesday"
-msgstr "сряда"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Thursday"
-msgstr "Четвъртък"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Friday"
-msgstr "петък"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Saturday"
-msgstr "Събота"
-
-#: standalone/drakbackup:2126
-#, fuzzy, c-format
-msgid "Delete cron entry"
-msgstr "Изтрива клиент"
-
-#: standalone/drakbackup:2127
-#, fuzzy, c-format
-msgid "Add cron entry"
-msgstr "Добавяне принтер"
-
-#: standalone/drakbackup:2185
-#, c-format
-msgid "Use daemon"
-msgstr "Използва демон"
-
-#: standalone/drakbackup:2189
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Моля изберете интервал между всяко архивиране"
-
-#: standalone/drakbackup:2197
-#, c-format
-msgid "Minute"
-msgstr "Минута"
-
-#: standalone/drakbackup:2201
-#, c-format
-msgid "Hour"
-msgstr "Час"
-
-#: standalone/drakbackup:2205
-#, c-format
-msgid "Day"
-msgstr "Ден"
-
-#: standalone/drakbackup:2209
-#, c-format
-msgid "Month"
-msgstr "Месец"
-
-#: standalone/drakbackup:2213
-#, c-format
-msgid "Weekday (start)"
-msgstr ""
-
-#: standalone/drakbackup:2217
-#, c-format
-msgid "Weekday (end)"
-msgstr ""
-
-#: standalone/drakbackup:2221
-#, fuzzy, c-format
-msgid "Profile"
-msgstr "Профили"
-
-#: standalone/drakbackup:2227
-#, fuzzy, c-format
-msgid "Current crontab:"
-msgstr "Текущ потребител"
-
-#: standalone/drakbackup:2235
-#, fuzzy, c-format
-msgid "Please choose the media for backup."
-msgstr ""
-"Моля, изберете\n"
-"носител за резервно копие."
-
-#: standalone/drakbackup:2239
-#, fuzzy, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Моля, изберете всички потребители,които желаете да включите в архива."
-
-#: standalone/drakbackup:2240
-#, c-format
-msgid ""
-"If your machine is not on all the time, you might want to install anacron."
-msgstr ""
-
-#: standalone/drakbackup:2316
-#, fuzzy, c-format
-msgid "Please choose the archive program"
-msgstr "моля, изберете датата за възстановяване"
-
-#: standalone/drakbackup:2321
-#, fuzzy, c-format
-msgid "Please choose the compression type"
-msgstr "моля, изберете датата за възстановяване"
-
-#: standalone/drakbackup:2325
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Използва .backupignore файлове"
-
-#: standalone/drakbackup:2327
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr ""
-
-#: standalone/drakbackup:2333
-#, c-format
-msgid "Return address for sent mail:"
-msgstr ""
-
-#: standalone/drakbackup:2339
-#, fuzzy, c-format
-msgid "SMTP server for mail:"
-msgstr "Хост на SMB сървър"
-
-#: standalone/drakbackup:2343
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
-
-#: standalone/drakbackup:2344
-#, fuzzy, c-format
-msgid "View restore log after file restore."
-msgstr "OK за възстановяване на други файлове."
-
-#: standalone/drakbackup:2389
-#, c-format
-msgid "What"
-msgstr "Какво"
-
-#: standalone/drakbackup:2394
-#, c-format
-msgid "Where"
-msgstr "Къде"
-
-#: standalone/drakbackup:2399
-#, c-format
-msgid "When"
-msgstr "Кога"
-
-#: standalone/drakbackup:2404
-#, c-format
-msgid "More Options"
-msgstr "Допълнителни опции"
-
-#: standalone/drakbackup:2417
-#, fuzzy, c-format
-msgid "Backup destination not configured..."
-msgstr "Функционалността на мрежата не е настроена"
-
-#: standalone/drakbackup:2437 standalone/drakbackup:4367
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Drakbackup Конфигурация"
-
-#: standalone/drakbackup:2453
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Моля, изберете къде ще желаете да архивирате"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Hard Drive used to prepare backups for all media"
-msgstr ""
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Across Network"
-msgstr ""
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On CD-R"
-msgstr ""
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On Tape Device"
-msgstr ""
-
-#: standalone/drakbackup:2502
-#, c-format
-msgid "Backup Users"
-msgstr "Резервно копие на потребители"
-
-#: standalone/drakbackup:2503
-#, fuzzy, c-format
-msgid " (Default is all users)"
-msgstr "Потребител по подразбиране"
-
-#: standalone/drakbackup:2516
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Моля изберете какво искате да запазите"
-
-#: standalone/drakbackup:2517
-#, c-format
-msgid "Backup System"
-msgstr "Система за съхранение"
-
-#: standalone/drakbackup:2519
-#, c-format
-msgid "Select user manually"
-msgstr "Избира потребители ръчно"
-
-#: standalone/drakbackup:2548
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Моля, изберете данни за резервно копие..."
-
-#: standalone/drakbackup:2620
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Източник за резервно копие: \n"
-
-#: standalone/drakbackup:2621
-#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Системни файлове:\n"
-
-#: standalone/drakbackup:2623
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: standalone/drakbackup:2625
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: standalone/drakbackup:2627
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2628
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr ""
-
-#: standalone/drakbackup:2629
-#, c-format
-msgid "\tDelete backups older than %s day(s)\n"
-msgstr ""
-
-#: standalone/drakbackup:2632
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
-
-#: standalone/drakbackup:2637
-#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr ""
-
-#: standalone/drakbackup:2638
-#, c-format
-msgid "RW"
-msgstr "RW"
-
-#: standalone/drakbackup:2639
-#, c-format
-msgid " on device: %s"
-msgstr " на устройство: %s"
-
-#: standalone/drakbackup:2640
-#, c-format
-msgid " (multi-session)"
-msgstr ""
-
-#: standalone/drakbackup:2641
-#, c-format
-msgid ""
-"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-
-#: standalone/drakbackup:2642
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tИзтриване=%s"
-
-#: standalone/drakbackup:2644
-#, c-format
-msgid "\tBackup directly to Tape\n"
-msgstr ""
-
-#: standalone/drakbackup:2646
-#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2647
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: standalone/drakbackup:2648
-#, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Опции:\n"
-
-#: standalone/drakbackup:2649
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: standalone/drakbackup:2651
-#, fuzzy, c-format
-msgid "\tBackups use %s and bzip2\n"
-msgstr "Резервно копие на потребителски файлове"
-
-#: standalone/drakbackup:2652
-#, fuzzy, c-format
-msgid "\tBackups use %s and gzip\n"
-msgstr "Резервно копие на потребителски файлове"
-
-#: standalone/drakbackup:2653
-#, fuzzy, c-format
-msgid "\tBackups use %s only\n"
-msgstr "Резервно копие на потребителски файлове"
-
-#: standalone/drakbackup:2655
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tИзползва .backupignore файлове\n"
-
-#: standalone/drakbackup:2656
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2657
-#, c-format
-msgid "\tSend mail from %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2658
-#, fuzzy, c-format
-msgid "\tUsing SMTP server %s\n"
-msgstr "На CUPS сървър \"%s\""
-
-#: standalone/drakbackup:2660
-#, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
-msgstr ""
-
-#: standalone/drakbackup:2661
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: standalone/drakbackup:2662
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr ""
-
-#: standalone/drakbackup:2663
-#, c-format
-msgid "\t-Tape \n"
-msgstr ""
-
-#: standalone/drakbackup:2664
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: standalone/drakbackup:2665
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: standalone/drakbackup:2666
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr ""
-
-#: standalone/drakbackup:2668
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: standalone/drakbackup:2673
-#, c-format
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Списък на данни за възстановяване:\n"
-"\n"
-
-#: standalone/drakbackup:2675
-#, fuzzy, c-format
-msgid "- Restore System Files.\n"
-msgstr ""
-"\n"
-"- Системни файлове:\n"
-
-#: standalone/drakbackup:2677 standalone/drakbackup:2687
-#, c-format
-msgid " - from date: %s %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2680
-#, fuzzy, c-format
-msgid "- Restore User Files: \n"
-msgstr "Възстанови Потребители"
-
-#: standalone/drakbackup:2685
-#, fuzzy, c-format
-msgid "- Restore Other Files: \n"
-msgstr "Възстанови други"
-
-#: standalone/drakbackup:2864
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:2866
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Моля махнете отметката или го изтрийте следващия път."
-
-#: standalone/drakbackup:2876
-#, c-format
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: standalone/drakbackup:2897
-#, c-format
-msgid " All of your selected data have been "
-msgstr ""
-
-#: standalone/drakbackup:2898
-#, c-format
-msgid " Successfully Restored on %s "
-msgstr ""
-
-#: standalone/drakbackup:2999
-#, c-format
-msgid "/usr/bin/star not found, using tar..."
-msgstr ""
-
-#: standalone/drakbackup:3035
-#, c-format
-msgid " Restore Configuration "
-msgstr " Конфигурация за възстановяване "
-
-#: standalone/drakbackup:3063
-#, c-format
-msgid "OK to restore the other files."
-msgstr "OK за възстановяване на други файлове."
-
-#: standalone/drakbackup:3079
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: standalone/drakbackup:3144
-#, fuzzy, c-format
-msgid "Please choose the date to restore:"
-msgstr "моля, изберете датата за възстановяване"
-
-#: standalone/drakbackup:3181
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Възстановява от твърд диск."
-
-#: standalone/drakbackup:3183
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Моля веведете директорията за запазване на архивите:"
-
-#: standalone/drakbackup:3187
-#, c-format
-msgid "Directory with backups"
-msgstr ""
-
-#: standalone/drakbackup:3241
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Изберете друг носител за възстановяване от него"
-
-#: standalone/drakbackup:3243
-#, c-format
-msgid "Other Media"
-msgstr "Друг носител"
-
-#: standalone/drakbackup:3248
-#, c-format
-msgid "Restore system"
-msgstr "Система за възстановяване"
-
-#: standalone/drakbackup:3249
-#, c-format
-msgid "Restore Users"
-msgstr "Възстанови Потребители"
-
-#: standalone/drakbackup:3250
-#, c-format
-msgid "Restore Other"
-msgstr "Възстанови други"
-
-#: standalone/drakbackup:3252
-#, c-format
-msgid "Select path to restore (instead of /)"
-msgstr "избор на път за възстановяване (вместо /)"
-
-#: standalone/drakbackup:3256 standalone/drakbackup:3539
-#, fuzzy, c-format
-msgid "Path To Restore To"
-msgstr "Потребителско възстановяване"
-
-#: standalone/drakbackup:3259
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: standalone/drakbackup:3261
-#, c-format
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: standalone/drakbackup:3345
-#, c-format
-msgid "Filename text substring to search for (empty string matches all):"
-msgstr ""
-
-#: standalone/drakbackup:3348
-#, c-format
-msgid "Search Backups"
-msgstr ""
-
-#: standalone/drakbackup:3367
-#, fuzzy, c-format
-msgid "No matches found..."
-msgstr "Не е намерен образ"
-
-#: standalone/drakbackup:3371
-#, c-format
-msgid "Restore Selected"
-msgstr "Възстановява избраните"
-
-#: standalone/drakbackup:3507
-#, c-format
-msgid ""
-"Click date/time to see backup files.\n"
-"Ctrl-Click files to select multiple files."
-msgstr ""
-
-#: standalone/drakbackup:3513
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
-
-#: standalone/drakbackup:3522
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr ""
-"Възстановява избраните\n"
-"файлове"
-
-#: standalone/drakbackup:3599
-#, c-format
-msgid "Backup files not found at %s."
-msgstr ""
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid "Restore From CD"
-msgstr "Възстановява от CD"
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-
-#: standalone/drakbackup:3614
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr ""
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid "Restore From Tape"
-msgstr "Възстановява от лента"
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-
-#: standalone/drakbackup:3626
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Етикетът на лентата не е правилния. Лентата се казва %s."
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network"
-msgstr "Възстановява през мрежа"
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr ""
-
-#: standalone/drakbackup:3638
-#, c-format
-msgid "Host Name"
-msgstr "Име на хост"
-
-#: standalone/drakbackup:3639
-#, c-format
-msgid "Host Path or Module"
-msgstr ""
-
-#: standalone/drakbackup:3646
-#, c-format
-msgid "Password required"
-msgstr "Изисква парола"
-
-#: standalone/drakbackup:3652
-#, c-format
-msgid "Username required"
-msgstr "Изисква потребителско име"
-
-#: standalone/drakbackup:3655
-#, c-format
-msgid "Hostname required"
-msgstr "Изисква име на машина"
-
-#: standalone/drakbackup:3660
-#, c-format
-msgid "Path or Module required"
-msgstr ""
-
-#: standalone/drakbackup:3672
-#, c-format
-msgid "Files Restored..."
-msgstr ""
-
-#: standalone/drakbackup:3675
-#, c-format
-msgid "Restore Failed..."
-msgstr "Възстановяването пропадна..."
-
-#: standalone/drakbackup:3703
-#, fuzzy, c-format
-msgid "%s not retrieved..."
-msgstr "%s не е намерен...\n"
-
-#: standalone/drakbackup:3929 standalone/drakbackup:3998
-#, c-format
-msgid "Search for files to restore"
-msgstr "Търсене на файлове за възстановяване"
-
-#: standalone/drakbackup:3933
-#, c-format
-msgid "Restore all backups"
-msgstr ""
-
-#: standalone/drakbackup:3941
-#, c-format
-msgid "Custom Restore"
-msgstr "Потребителско възстановяване"
-
-#: standalone/drakbackup:3945 standalone/drakbackup:3994
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Възстановява от каталог"
-
-#: standalone/drakbackup:3966
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Не мога да намеря архив за възстановяване...\n"
-
-#: standalone/drakbackup:3967
-#, fuzzy, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Всичко правилно ли е ?"
-
-#: standalone/drakbackup:3968
-#, c-format
-msgid " and the CD is in the drive"
-msgstr ""
-
-#: standalone/drakbackup:3970
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr ""
-
-#: standalone/drakbackup:3986
-#, c-format
-msgid "CD in place - continue."
-msgstr ""
-
-#: standalone/drakbackup:3991
-#, c-format
-msgid "Browse to new restore repository."
-msgstr ""
-
-#: standalone/drakbackup:3992
-#, fuzzy, c-format
-msgid "Directory To Restore From"
-msgstr "Възстановява от CD"
-
-#: standalone/drakbackup:4028
-#, c-format
-msgid "Restore Progress"
-msgstr "Прогрес на възстановяване"
-
-#: standalone/drakbackup:4136
-#, c-format
-msgid "Build Backup"
-msgstr "Създаване на архив"
-
-#: standalone/drakbackup:4169 standalone/drakbackup:4466
-#, c-format
-msgid "Restore"
-msgstr "Възстановява"
-
-#: standalone/drakbackup:4261
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Моля, изберете данни за възстановяване..."
-
-#: standalone/drakbackup:4301
-#, c-format
-msgid "Backup system files"
-msgstr "Резервно копие на системни файлове"
-
-#: standalone/drakbackup:4304
-#, c-format
-msgid "Backup user files"
-msgstr "Резервно копие на потребителски файлове"
-
-#: standalone/drakbackup:4307
-#, c-format
-msgid "Backup other files"
-msgstr "Резервно копие на други файлове"
-
-#: standalone/drakbackup:4310 standalone/drakbackup:4344
-#, c-format
-msgid "Total Progress"
-msgstr ""
-
-#: standalone/drakbackup:4336
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Изпращам файлове по FTP..."
-
-#: standalone/drakbackup:4339
-#, c-format
-msgid "Sending files..."
-msgstr "Изпращам файлове..."
-
-#: standalone/drakbackup:4409
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Архивиране от конфигурационен файл"
-
-#: standalone/drakbackup:4414
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Преглед на Конфигурация за резервно копие."
-
-#: standalone/drakbackup:4440
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Конфигурация на Магьосник"
-
-#: standalone/drakbackup:4445
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Допълнителна конфигурация"
-
-#: standalone/drakbackup:4450
-#, c-format
-msgid "View Configuration"
-msgstr "Преглед на настройките"
-
-#: standalone/drakbackup:4454
-#, c-format
-msgid "View Last Log"
-msgstr ""
-
-#: standalone/drakbackup:4459
-#, c-format
-msgid "Backup Now"
-msgstr "Резервно копие сега"
-
-#: standalone/drakbackup:4463
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: standalone/drakbackup:4501
-#, fuzzy, c-format
-msgid "Load profile"
-msgstr "Локален файл"
-
-#: standalone/drakbackup:4510
-#, fuzzy, c-format
-msgid "Save profile as..."
-msgstr "Запази като..."
-
-#: standalone/drakbackup:4532 standalone/drakbackup:4535
-#, c-format
-msgid "Drakbackup"
-msgstr ""
-
-#: standalone/drakboot:49
-#, c-format
-msgid "No bootloader found, creating a new configuration"
-msgstr ""
-
-#: standalone/drakboot:84 standalone/harddrake2:190 standalone/harddrake2:191
-#: standalone/logdrake:69 standalone/printerdrake:150
-#: standalone/printerdrake:151 standalone/printerdrake:152
-#, c-format
-msgid "/_File"
-msgstr "/_Файл"
-
-#: standalone/drakboot:85 standalone/logdrake:75
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Файл/_Излиза"
-
-#: standalone/drakboot:85 standalone/harddrake2:191 standalone/logdrake:75
-#: standalone/printerdrake:152
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: standalone/drakboot:125
-#, c-format
-msgid "Text only"
-msgstr ""
-
-#: standalone/drakboot:126
-#, c-format
-msgid "Verbose"
-msgstr ""
-
-#: standalone/drakboot:127
-#, c-format
-msgid "Silent"
-msgstr "Мълчалив"
-
-#: standalone/drakboot:134
-#, c-format
-msgid ""
-"Your system bootloader is not in framebuffer mode. To activate graphical "
-"boot, select a graphic video mode from the bootloader configuration tool."
-msgstr ""
-
-#: standalone/drakboot:135
-#, fuzzy, c-format
-msgid "Do you want to configure it now?"
-msgstr "Искате ли да тествате настройките?"
-
-#: standalone/drakboot:144
-#, c-format
-msgid "Install themes"
-msgstr "Инсталиране на теми"
-
-#: standalone/drakboot:146
-#, fuzzy, c-format
-msgid "Graphical boot theme selection"
-msgstr "Избор модел на принтера"
-
-#: standalone/drakboot:149
-#, fuzzy, c-format
-msgid "Graphical boot mode:"
-msgstr "Избор модел на принтера"
-
-#: standalone/drakboot:151
-#, c-format
-msgid "Theme"
-msgstr "Тема"
-
-#: standalone/drakboot:154
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"Показва тема\n"
-"на конзола"
-
-#: standalone/drakboot:159
-#, c-format
-msgid "Create new theme"
-msgstr "Създава нова тема"
-
-#: standalone/drakboot:191
-#, c-format
-msgid "Default user"
-msgstr "Потребител по подразбиране"
-
-#: standalone/drakboot:192
-#, c-format
-msgid "Default desktop"
-msgstr "Подразбиращо се работно място"
-
-#: standalone/drakboot:195
-#, c-format
-msgid "No, I do not want autologin"
-msgstr "Не, не искам autologin"
-
-#: standalone/drakboot:196
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Да, искам autologin с това (потребител, десктоп)"
-
-#: standalone/drakboot:203
-#, c-format
-msgid "System mode"
-msgstr "Системен режим"
-
-#: standalone/drakboot:206
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Пусни X-Window системата при стартиране"
-
-#: standalone/drakboot:272
-#, c-format
-msgid ""
-"Please choose a video mode, it will be applied to each of the boot entries "
-"selected below.\n"
-"Be sure your video card supports the mode you choose."
-msgstr ""
-
-#: standalone/drakbug:41
-#, fuzzy, c-format
-msgid "Mandriva Linux Bug Report Tool"
-msgstr "Контролен център на Mandriva Linux"
-
-#: standalone/drakbug:46
-#, c-format
-msgid "Mandriva Linux Control Center"
-msgstr "Контролен център на Mandriva Linux"
-
-#: standalone/drakbug:48
-#, c-format
-msgid "Synchronization tool"
-msgstr ""
-
-#: standalone/drakbug:49 standalone/drakbug:152
-#, c-format
-msgid "Standalone Tools"
-msgstr "Самостоятелни инструменти"
-
-#: standalone/drakbug:50
-#, c-format
-msgid "HardDrake"
-msgstr "ХардДрейк"
-
-#: standalone/drakbug:51
-#, c-format
-msgid "Mandriva Online"
-msgstr "Mandriva Online"
-
-#: standalone/drakbug:52
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
-
-#: standalone/drakbug:53
-#, c-format
-msgid "Msec"
-msgstr "Мсек"
-
-#: standalone/drakbug:54
-#, c-format
-msgid "Remote Control"
-msgstr "Отдалечен контрол"
-
-#: standalone/drakbug:55
-#, c-format
-msgid "Software Manager"
-msgstr "Софтуерен мениджър"
-
-#: standalone/drakbug:56
-#, c-format
-msgid "Urpmi"
-msgstr ""
-
-#: standalone/drakbug:57
-#, c-format
-msgid "Windows Migration tool"
-msgstr ""
-
-#: standalone/drakbug:58 standalone/draksambashare:1234
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: standalone/drakbug:59
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Конфигурационни Магьосници"
-
-#: standalone/drakbug:81
-#, c-format
-msgid "Select Mandriva Tool:"
-msgstr ""
-
-#: standalone/drakbug:82
-#, c-format
-msgid ""
-"or Application Name\n"
-"(or Full Path):"
-msgstr ""
-
-#: standalone/drakbug:85
-#, c-format
-msgid "Find Package"
-msgstr "Търсене на пакет"
-
-#: standalone/drakbug:87
-#, c-format
-msgid "Package: "
-msgstr "Пакет: "
-
-#: standalone/drakbug:88
-#, c-format
-msgid "Kernel:"
-msgstr "Ядро:"
-
-#: standalone/drakbug:101
-#, c-format
-msgid ""
-"To submit a bug report, click on the report button. \n"
-"This will open a web browser window on %s where you'll find a form to fill "
-"in. The information displayed above will be transferred to that server. \n"
-"Things useful to include in your report are the output of lspci, kernel "
-"version, and /proc/cpuinfo."
-msgstr ""
-
-#: standalone/drakbug:107
-#, c-format
-msgid "Report"
-msgstr "Рапорт"
-
-#: standalone/drakbug:162
-#, c-format
-msgid "Not installed"
-msgstr "Не е инсталиран"
-
-#: standalone/drakbug:174
-#, c-format
-msgid "Package not installed"
-msgstr "Пакета не е инсталиран"
-
-#: standalone/drakclock:29
-#, c-format
-msgid "DrakClock"
-msgstr "Дракчасовник"
-
-#: standalone/drakclock:39
-#, fuzzy, c-format
-msgid "not defined"
-msgstr "не е конфигуриран"
-
-#: standalone/drakclock:41
-#, fuzzy, c-format
-msgid "Change Time Zone"
-msgstr "Часова зона"
-
-#: standalone/drakclock:45
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "Времеви пояс - Дракчасовник"
-
-#: standalone/drakclock:47
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "GMT - Дракчасовник"
-
-#: standalone/drakclock:47 standalone/finish-install:57
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Хардуерният ви часовник настроен ли е по GMT?"
-
-#: standalone/drakclock:75
-#, fuzzy, c-format
-msgid "Network Time Protocol"
-msgstr "Мрежов интерфейс"
-
-#: standalone/drakclock:77
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-
-#: standalone/drakclock:78
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr ""
-
-#: standalone/drakclock:86
-#, c-format
-msgid "Server:"
-msgstr "Сървър:"
-
-#: standalone/drakclock:124
-#, c-format
-msgid "Could not synchronize with %s."
-msgstr ""
-
-#: standalone/drakclock:146 standalone/drakclock:156
-#, c-format
-msgid "Reset"
-msgstr "Анулиране"
-
-#: standalone/drakclock:224
-#, fuzzy, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol\n"
-"\n"
-"Do you want to install ntp?"
-msgstr ""
-"Пакет %s трябва да бъде инсталиран\n"
-"Искате да го инсталирате?"
-
-#: standalone/drakconnect:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Настройка на мрежата (%d адаптера)"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Interface:"
-msgstr "Интерфейс:"
-
-#: standalone/drakconnect:93 standalone/net_monitor:116
-#, c-format
-msgid "Wait please"
-msgstr ""
-
-#: standalone/drakconnect:109
-#, c-format
-msgid "Interface"
-msgstr "Интерфейс"
-
-#: standalone/drakconnect:109 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "State"
-msgstr "Състояние"
-
-#: standalone/drakconnect:126
-#, c-format
-msgid "Hostname: "
-msgstr "Име на хост: "
-
-#: standalone/drakconnect:128
-#, c-format
-msgid "Configure hostname..."
-msgstr "Настройка на име на хост..."
-
-#: standalone/drakconnect:142 standalone/drakconnect:845
-#, c-format
-msgid "LAN configuration"
-msgstr "Настройка на LAN"
-
-#: standalone/drakconnect:147
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Настойка на локална мрежа ..."
-
-#: standalone/drakconnect:155 standalone/drakconnect:237
-#: standalone/drakconnect:241
-#, c-format
-msgid "Apply"
-msgstr "Приложи"
-
-#: standalone/drakconnect:188
-#, c-format
-msgid "Manage connections"
-msgstr "Настройка на връзките"
-
-#: standalone/drakconnect:215
-#, fuzzy, c-format
-msgid "Device selected"
-msgstr "Изтриване на оизбраните"
-
-#: standalone/drakconnect:296
-#, fuzzy, c-format
-msgid "IP configuration"
-msgstr "CUPS конфигурация"
-
-#: standalone/drakconnect:335
-#, fuzzy, c-format
-msgid "DNS servers"
-msgstr "DNS сървър"
-
-#: standalone/drakconnect:343
-#, fuzzy, c-format
-msgid "Search Domain"
-msgstr "NIS домейн"
-
-#: standalone/drakconnect:351
-#, fuzzy, c-format
-msgid "static"
-msgstr "Автоматичен IP адрес"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "DHCP"
-msgstr "DHCP"
-
-#: standalone/drakconnect:515
-#, c-format
-msgid "Flow control"
-msgstr "Контрол на трансфера"
-
-#: standalone/drakconnect:516
-#, fuzzy, c-format
-msgid "Line termination"
-msgstr "Интернет станция"
-
-#: standalone/drakconnect:527
-#, fuzzy, c-format
-msgid "Modem timeout"
-msgstr "Шел време за достъп"
-
-#: standalone/drakconnect:531
-#, fuzzy, c-format
-msgid "Use lock file"
-msgstr "Изберете файл"
-
-#: standalone/drakconnect:533
-#, c-format
-msgid "Wait for dialup tone before dialing"
-msgstr ""
-
-#: standalone/drakconnect:536
-#, fuzzy, c-format
-msgid "Busy wait"
-msgstr "Кувейт"
-
-#: standalone/drakconnect:541
-#, fuzzy, c-format
-msgid "Modem sound"
-msgstr "Модем"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Enable"
-msgstr "Включване"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Disable"
-msgstr "Изключване"
-
-#: standalone/drakconnect:593 standalone/harddrake2:50
-#, c-format
-msgid "Media class"
-msgstr "Клас носител"
-
-#: standalone/drakconnect:594
-#, c-format
-msgid "Module name"
-msgstr "Име на модул"
-
-#: standalone/drakconnect:595
-#, fuzzy, c-format
-msgid "Mac Address"
-msgstr "Broadcast адрес:"
-
-#: standalone/drakconnect:596 standalone/harddrake2:28
-#: standalone/harddrake2:120
-#, c-format
-msgid "Bus"
-msgstr "Шина"
-
-#: standalone/drakconnect:597 standalone/harddrake2:34
-#, c-format
-msgid "Location on the bus"
-msgstr ""
-
-#: standalone/drakconnect:700 standalone/drakgw:311
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"В системата не е открит ethernet мрежов адаптер. Моля, стартирайте "
-"инструмента за настройка на хардуер."
-
-#: standalone/drakconnect:709
-#, fuzzy, c-format
-msgid "Remove a network interface"
-msgstr "Изберете мрежов интерфейс"
-
-#: standalone/drakconnect:713
-#, fuzzy, c-format
-msgid "Select the network interface to remove:"
-msgstr "Изберете мрежов интерфейс"
-
-#: standalone/drakconnect:745
-#, fuzzy, c-format
-msgid ""
-"An error occurred while deleting the \"%s\" network interface:\n"
-"\n"
-"%s"
-msgstr ""
-"Изникна проблем при рестартирането на мрежата:\n"
-"\n"
-"%s"
-
-#: standalone/drakconnect:746
-#, c-format
-msgid ""
-"Congratulations, the \"%s\" network interface has been successfully deleted"
-msgstr ""
-
-#: standalone/drakconnect:761
-#, c-format
-msgid "No IP"
-msgstr ""
-
-#: standalone/drakconnect:762
-#, c-format
-msgid "No Mask"
-msgstr "Лоша маска"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "up"
-msgstr ""
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, fuzzy, c-format
-msgid "down"
-msgstr "готово"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Connected"
-msgstr "Свързан"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Not connected"
-msgstr "Не свързан"
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Disconnect..."
-msgstr "Отвързване ..."
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Connect..."
-msgstr "Свързване ..."
-
-#: standalone/drakconnect:841
-#, fuzzy, c-format
-msgid "Deactivate now"
-msgstr "деактивирай сега"
-
-#: standalone/drakconnect:841
-#, fuzzy, c-format
-msgid "Activate now"
-msgstr "активирай сега"
-
-#: standalone/drakconnect:849
-#, c-format
-msgid ""
-"You do not have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Нямате настроен интерфейс.\n"
-"Настройте ги преди това, като цъкнете на 'Настройка'"
-
-#: standalone/drakconnect:863
-#, c-format
-msgid "LAN Configuration"
-msgstr "Настройка на локална мрежа"
-
-#: standalone/drakconnect:875
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Адаптер %s: %s"
-
-#: standalone/drakconnect:884
-#, c-format
-msgid "Boot Protocol"
-msgstr "Стартиращ протокол"
-
-#: standalone/drakconnect:885
-#, c-format
-msgid "Started on boot"
-msgstr "Пуснат при стартиране"
-
-#: standalone/drakconnect:921
-#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakconnect:975 standalone/net_applet:51
-#, fuzzy, c-format
-msgid ""
-"You do not have any configured Internet connection.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Нямате Internet връзка.\n"
-"Създайте такава, като цъкнете на 'Настрой'"
-
-#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: standalone/drakconnect:976 standalone/drakroam:34 standalone/net_applet:52
-#, fuzzy, c-format
-msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
-msgstr "Изберете мрежов интерфейс"
-
-#: standalone/drakconnect:981
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Настройка на Интернет връзка"
-
-#: standalone/drakconnect:994
-#, fuzzy, c-format
-msgid "Third DNS server (optional)"
-msgstr "Първи DNS сървър (по избор)"
-
-#: standalone/drakconnect:1016
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Настройка на Интернет връзка"
-
-#: standalone/drakconnect:1017
-#, c-format
-msgid "Internet access"
-msgstr "Интернет достъп"
-
-#: standalone/drakconnect:1019 standalone/net_monitor:95
-#, c-format
-msgid "Connection type: "
-msgstr "Тип на връзката: "
-
-#: standalone/drakconnect:1022
-#, c-format
-msgid "Status:"
-msgstr "Състояние:"
-
-#: standalone/drakconnect:1027
-#, c-format
-msgid "Parameters"
-msgstr "Параметри"
-
-#: standalone/drakedm:40
-#, c-format
-msgid "GDM (GNOME Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:41
-#, c-format
-msgid "KDM (KDE Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:42
-#, fuzzy, c-format
-msgid "XDM (X Display Manager)"
-msgstr "Избор на мениджър на дисплей"
-
-#: standalone/drakedm:53
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Избор на мениджър на дисплей"
-
-#: standalone/drakedm:54
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-
-#: standalone/drakedm:72
-#, c-format
-msgid "The change is done, do you want to restart the dm service?"
-msgstr "Промяната е направена.Желаете ли да рестартирате dm услугата?"
-
-#: standalone/drakedm:73
-#, c-format
-msgid ""
-"You are going to close all running programs and lose your current session. "
-"Are you really sure that you want to restart the dm service?"
-msgstr ""
-
-#: standalone/drakfont:182
-#, c-format
-msgid "Search installed fonts"
-msgstr ""
-
-#: standalone/drakfont:184
-#, c-format
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: standalone/drakfont:207
-#, c-format
-msgid "parse all fonts"
-msgstr ""
-
-#: standalone/drakfont:209
-#, fuzzy, c-format
-msgid "No fonts found"
-msgstr "няма намерени шрифтове"
-
-#: standalone/drakfont:217 standalone/drakfont:259 standalone/drakfont:326
-#: standalone/drakfont:359 standalone/drakfont:367 standalone/drakfont:393
-#: standalone/drakfont:411 standalone/drakfont:425
-#, c-format
-msgid "done"
-msgstr "готово"
-
-#: standalone/drakfont:222
-#, c-format
-msgid "Could not find any font in your mounted partitions"
-msgstr ""
-
-#: standalone/drakfont:257
-#, c-format
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: standalone/drakfont:260
-#, fuzzy, c-format
-msgid "Could not find any font.\n"
-msgstr "Не сте избрали никакъв шрифт"
-
-#: standalone/drakfont:270
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr ""
-
-#: standalone/drakfont:295
-#, c-format
-msgid "%s fonts conversion"
-msgstr ""
-
-#: standalone/drakfont:324
-#, c-format
-msgid "Fonts copy"
-msgstr "Копира шрифтове"
-
-#: standalone/drakfont:327
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Инсталиране на True Type шрифтове"
-
-#: standalone/drakfont:334
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: standalone/drakfont:335
-#, c-format
-msgid "True Type install done"
-msgstr ""
-
-#: standalone/drakfont:341 standalone/drakfont:356
-#, c-format
-msgid "type1inst building"
-msgstr ""
-
-#: standalone/drakfont:350
-#, c-format
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: standalone/drakfont:360
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr ""
-
-#: standalone/drakfont:363
-#, c-format
-msgid "Restart XFS"
-msgstr "Рестартира XFS"
-
-#: standalone/drakfont:409 standalone/drakfont:419
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: standalone/drakfont:421
-#, c-format
-msgid "xfs restart"
-msgstr "xfs рестартира"
-
-#: standalone/drakfont:429
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
-
-#: standalone/drakfont:473 standalone/drakfont:482
-#, c-format
-msgid "DrakFont"
-msgstr ""
-
-#: standalone/drakfont:483
-#, c-format
-msgid "Font List"
-msgstr "Списък шрифтове"
-
-#: standalone/drakfont:486
-#, c-format
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: standalone/drakfont:492
-#, c-format
-msgid "About"
-msgstr "Относно"
-
-#: standalone/drakfont:494 standalone/drakfont:718
-#, c-format
-msgid "Uninstall"
-msgstr "Деинсталиране"
-
-#: standalone/drakfont:495
-#, c-format
-msgid "Import"
-msgstr "Импорт"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakfont:513
-#, c-format
-msgid "Copyright (C) 2001-2006 by Mandriva"
-msgstr ""
-
-#: standalone/drakfont:515
-#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: standalone/drakfont:531
-#, c-format
-msgid ""
-"Thanks:\n"
-"\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
-msgstr ""
-
-#: standalone/drakfont:550
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Изберете приложенията които ще поддържат шрифтовете:"
-
-#: standalone/drakfont:561
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: standalone/drakfont:562
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: standalone/drakfont:563
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
-
-#: standalone/drakfont:564
-#, c-format
-msgid "Generic Printers"
-msgstr "Принтер без драйвери"
-
-#: standalone/drakfont:578
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: standalone/drakfont:579
-#, c-format
-msgid "File Selection"
-msgstr "Избор на файл"
-
-#: standalone/drakfont:583
-#, c-format
-msgid "Fonts"
-msgstr "Шрифтове"
-
-#: standalone/drakfont:646
-#, fuzzy, c-format
-msgid "Import fonts"
-msgstr "Импортирт на шрифтове"
-
-#: standalone/drakfont:651
-#, fuzzy, c-format
-msgid "Install fonts"
-msgstr "Инсталира шрифтове"
-
-#: standalone/drakfont:681
-#, c-format
-msgid "Are you sure you want to uninstall the following fonts?"
-msgstr ""
-
-#: standalone/drakfont:726
-#, c-format
-msgid "Unselected All"
-msgstr ""
-
-#: standalone/drakfont:729
-#, c-format
-msgid "Selected All"
-msgstr "Избира всичко"
-
-#: standalone/drakfont:743 standalone/drakfont:762
-#, fuzzy, c-format
-msgid "Importing fonts"
-msgstr "Импортирт на шрифтове"
-
-#: standalone/drakfont:747 standalone/drakfont:767
-#, c-format
-msgid "Initial tests"
-msgstr "Начални тестове"
-
-#: standalone/drakfont:748
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Копира шрифтове на вашата система"
-
-#: standalone/drakfont:749
-#, c-format
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: standalone/drakfont:750
-#, c-format
-msgid "Post Install"
-msgstr "След инсталиране"
-
-#: standalone/drakfont:768
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Изтрива шрифтове от вашата система"
-
-#: standalone/drakfont:769
-#, c-format
-msgid "Post Uninstall"
-msgstr "След деинсталиране"
-
-#: standalone/drakgw:50 standalone/drakvpn:51
-#, c-format
-msgid "Sorry, we support only 2.4 and above kernels."
-msgstr ""
-
-#: standalone/drakgw:75
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Споделяне на връзката с Интернет"
-
-#: standalone/drakgw:79
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"На път сте да настроите компютъра си така, че да поделя Интернет връзката\n"
-"си. С тази възможност, други компютри в локалната ви мрежа ще могат да\n"
-"използват Интернет връзката на този компютър.\n"
-"\n"
-"Убедете се, че вие сте конфигурирали вашата Мрежа/Интернет достъп "
-"използвайки drakconnect преди да правите друго.\n"
-"\n"
-"Отбележете: трябва ви отделен за това мрежов адаптер, за да установите "
-"вътрешната си мрежа (LAN)."
-
-#: standalone/drakgw:95
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Установката на Споделянето на Интернет връзката е завършена.\n"
-"В момента е включена.\n"
-"\n"
-"Какво искате да направите ?"
-
-#: standalone/drakgw:99
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Установката на Споделянето на Интернет връзката е вече завършена.\n"
-"В момента е изключена.\n"
-"\n"
-"Какво искате да направите ?"
-
-#: standalone/drakgw:105
-#, fuzzy, c-format
-msgid "Reconfigure"
-msgstr "пренастройка"
-
-#: standalone/drakgw:145
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"В системата ви има само един настроен мрежов адаптер:\n"
-"\n"
-"%s\n"
-"\n"
-"Смятам да установя локалната ви мрежа на този адаптер."
-
-#: standalone/drakgw:156
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Моля изберете кой мрежов адаптер да бъде включен към локалната ви мрежа."
-
-#: standalone/drakgw:177
-#, fuzzy, c-format
-msgid "Local Area Network settings"
-msgstr "Адрес на Локална мрежа"
-
-#: standalone/drakgw:180
-#, c-format
-msgid "Local IP address"
-msgstr ""
-
-#: standalone/drakgw:182
-#, c-format
-msgid "The internal domain name"
-msgstr "Вътрешно име на домейн"
-
-#: standalone/drakgw:188
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Възможен конфликт с адресите в LAN с настройката на %s!\n"
-
-#: standalone/drakgw:204
-#, fuzzy, c-format
-msgid "Domain Name Server (DNS) configuration"
-msgstr "Конфигурация на Терминален Сървър в Mandriva Linux"
-
-#: standalone/drakgw:208
-#, c-format
-msgid "Use this gateway as domain name server"
-msgstr ""
-
-#: standalone/drakgw:209
-#, c-format
-msgid "The DNS Server IP"
-msgstr "DNS сървър IP"
-
-#: standalone/drakgw:236
-#, c-format
-msgid ""
-"DHCP Server Configuration.\n"
-"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you do not know the meaning of an option, simply leave it as it is."
-msgstr ""
-
-#: standalone/drakgw:243
-#, fuzzy, c-format
-msgid "Use automatic configuration (DHCP)"
-msgstr "Автоматична реконфигурация"
-
-#: standalone/drakgw:244
-#, c-format
-msgid "The DHCP start range"
-msgstr ""
-
-#: standalone/drakgw:245
-#, c-format
-msgid "The DHCP end range"
-msgstr ""
-
-#: standalone/drakgw:246
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr ""
-
-#: standalone/drakgw:247
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr ""
-
-#: standalone/drakgw:270
-#, c-format
-msgid "Proxy caching server (SQUID)"
-msgstr ""
-
-#: standalone/drakgw:274
-#, c-format
-msgid "Use this gateway as proxy caching server"
-msgstr ""
-
-#: standalone/drakgw:275
-#, c-format
-msgid "Admin mail"
-msgstr ""
-
-#: standalone/drakgw:276
-#, fuzzy, c-format
-msgid "Visible hostname"
-msgstr "Име на отдалечен хост"
-
-#: standalone/drakgw:277
+#: timezone.pm:148 timezone.pm:149
#, fuzzy, c-format
-msgid "Proxy port"
-msgstr "Собственост"
-
-#: standalone/drakgw:278
-#, fuzzy, c-format
-msgid "Cache size (MB)"
-msgstr "Размер на кеш"
-
-#: standalone/drakgw:300
-#, fuzzy, c-format
-msgid "Broadcast printer information"
-msgstr "Информацията за твърдия диск"
-
-#: standalone/drakgw:317
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Споделянето на Интернет в момента е включено."
-
-#: standalone/drakgw:323
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Споделянето на Интернет връзката в момента е изключено."
-
-#: standalone/drakgw:329
-#, fuzzy, c-format
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP) and\n"
-" a Transparent Proxy Cache server (SQUID)."
-msgstr ""
-"Всичко е настроено.\n"
-"Сега можете да споделите Интернет връзката си с други компютри в локалната "
-"ви мрежа използвайки автоматична мрежова настройка (DHCP)."
-
-#: standalone/drakgw:363
-#, c-format
-msgid "Disabling servers..."
-msgstr "Изключване на сървъри ..."
-
-#: standalone/drakgw:377
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Открита е настройка на Защитна Стена !"
-
-#: standalone/drakgw:378
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-"Внимание ! Открита е настройка на Защитна Стена. Може да се наложи някаква "
-"ръчна поправка след инсталацията."
-
-#: standalone/drakgw:383
-#, c-format
-msgid "Configuring..."
-msgstr "Настройка ..."
-
-#: standalone/drakgw:384
-#, c-format
-msgid "Configuring firewall..."
-msgstr ""
-
-#: standalone/drakhelp:17
-#, c-format
-msgid ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"\n"
-"Usage: \n"
-msgstr ""
-
-#: standalone/drakhelp:22
-#, c-format
-msgid " --help - display this help \n"
-msgstr ""
-
-#: standalone/drakhelp:23
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr ""
-
-#: standalone/drakhelp:24
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-
-#: standalone/drakhelp:51
-#, fuzzy, c-format
-msgid "Mandriva Linux Help Center"
-msgstr "Контролен център на Mandriva Linux"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "No Help entry for %s\n"
-msgstr ""
-
-#: standalone/drakhosts:98
-#, c-format
-msgid "Please add an host to be able to modify it."
-msgstr ""
-
-#: standalone/drakhosts:108
-#, fuzzy, c-format
-msgid "Please modify information"
-msgstr "Подробна информация"
-
-#: standalone/drakhosts:109
-#, fuzzy, c-format
-msgid "Please delete information"
-msgstr "Подробна информация"
-
-#: standalone/drakhosts:110
-#, fuzzy, c-format
-msgid "Please add information"
-msgstr "Подробна информация"
-
-#: standalone/drakhosts:115
-#, c-format
-msgid "IP address:"
-msgstr "Адрес IP:"
-
-#: standalone/drakhosts:116
-#, c-format
-msgid "Host name:"
-msgstr ""
-
-#: standalone/drakhosts:117
-#, c-format
-msgid "Host Aliases:"
-msgstr ""
-
-#: standalone/drakhosts:123
-#, c-format
-msgid "Please enter a valid IP address."
-msgstr "Моля въведете валиден IP адрес."
-
-#: standalone/drakhosts:129
-#, c-format
-msgid "Same IP is already in %s file."
-msgstr ""
-
-#: standalone/drakhosts:197
-#, c-format
-msgid "Host Aliases"
-msgstr ""
-
-#: standalone/drakhosts:237
-#, c-format
-msgid "DrakHOSTS manage hosts definitions"
-msgstr ""
-
-#: standalone/drakhosts:246
-#, c-format
-msgid "Failed to add host."
-msgstr ""
-
-#: standalone/drakhosts:253
-#, c-format
-msgid "Failed to Modify host."
-msgstr ""
-
-#: standalone/drakhosts:260
-#, c-format
-msgid "Failed to remove host."
-msgstr ""
-
-#: standalone/drakids:26
-#, fuzzy, c-format
-msgid "Allowed addresses"
-msgstr "Позволява на потребители"
-
-#: standalone/drakids:57
-#, c-format
-msgid "Log"
-msgstr "Журнал"
-
-#: standalone/drakids:61
-#, fuzzy, c-format
-msgid "Clear logs"
-msgstr "Изчисти всичко"
-
-#: standalone/drakids:62 standalone/drakids:67 standalone/net_applet:470
-#, c-format
-msgid "Blacklist"
-msgstr ""
-
-#: standalone/drakids:63 standalone/drakids:80 standalone/net_applet:475
-#, c-format
-msgid "Whitelist"
-msgstr ""
-
-#: standalone/drakids:71
-#, fuzzy, c-format
-msgid "Remove from blacklist"
-msgstr "Премахни от LVM"
-
-#: standalone/drakids:72
-#, c-format
-msgid "Move to whitelist"
-msgstr ""
-
-#: standalone/drakids:84
-#, fuzzy, c-format
-msgid "Remove from whitelist"
-msgstr "Премахни от LVM"
-
-#: standalone/drakids:136 standalone/drakids:145 standalone/drakids:170
-#: standalone/drakids:179 standalone/drakids:189 standalone/drakids:265
-#: standalone/drakroam:182 standalone/net_applet:202 standalone/net_applet:385
-#, fuzzy, c-format
-msgid "Unable to contact daemon"
-msgstr "Не мога да се свръжа с огледален сървър' %s"
-
-#: standalone/drakids:202
-#, c-format
-msgid "Date"
-msgstr "Дата"
-
-#: standalone/drakids:203
-#, fuzzy, c-format
-msgid "Attacker"
-msgstr "Без подробности"
-
-#: standalone/drakids:204
-#, fuzzy, c-format
-msgid "Attack type"
-msgstr "тип: %s"
-
-#: standalone/drakids:205
-#, c-format
-msgid "Service"
-msgstr "Услуга"
-
-#: standalone/drakids:206 standalone/net_applet:72
-#, c-format
-msgid "Network interface"
-msgstr "Мрежов интерфейс"
-
-#: standalone/draknfs:41
-#, c-format
-msgid "map root user as anonymous"
-msgstr ""
-
-#: standalone/draknfs:42
-#, c-format
-msgid "map all users to anonymous user"
-msgstr ""
-
-#: standalone/draknfs:43
-#, c-format
-msgid "No user UID mapping"
-msgstr ""
-
-#: standalone/draknfs:44
-#, c-format
-msgid "allow real remote root access"
-msgstr ""
-
-#: standalone/draknfs:83
-#, c-format
-msgid "NFS server"
-msgstr ""
-
-#: standalone/draknfs:83
-#, c-format
-msgid "Restarting/Reloading NFS server..."
-msgstr ""
-
-#: standalone/draknfs:84
-#, c-format
-msgid "Error Restarting/Reloading NFS server"
-msgstr ""
-
-#: standalone/draknfs:100 standalone/draksambashare:203
-#, c-format
-msgid "Directory Selection"
-msgstr ""
-
-#: standalone/draknfs:105 standalone/draksambashare:208
-#, c-format
-msgid "Should be a directory."
-msgstr "Трябва да е директория"
-
-#: standalone/draknfs:136
-#, c-format
-msgid ""
-"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
-"ways:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">single host:</span> a host either by an "
-"abbreviated name recognized be the resolver, fully qualified domain name, or "
-"an IP address\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">netgroups:</span> NIS netgroups may be given "
-"as @group.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">wildcards:</span> machine names may contain "
-"the wildcard characters * and ?. For instance: *.cs.foo.edu matches all "
-"hosts in the domain cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP networks:</span> you can also export "
-"directories to all hosts on an IP (sub-)network simultaneously. for example, "
-"either `/255.255.252.0' or `/22' appended to the network base address "
-"result.\n"
-msgstr ""
-
-#: standalone/draknfs:151
-#, c-format
-msgid ""
-"<span weight=\"bold\">User ID options</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map root user as anonymous:</span> map "
-"requests from uid/gid 0 to the anonymous uid/gid (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">allow real remote root access:</span> turn "
-"off root squashing. This option is mainly useful for diskless clients "
-"(no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map all users to anonymous user:</span> map "
-"all uids and gids to the anonymous user (all_squash). Useful for NFS-"
-"exported public FTP directories, news spool directories, etc. The opposite "
-"option is no user UID mapping (no_all_squash), which is the default "
-"setting.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid and anongid:</span> explicitly set "
-"the uid and gid of the anonymous account.\n"
-msgstr ""
-
-#: standalone/draknfs:167
-#, c-format
-msgid "Synchronous access:"
-msgstr ""
-
-#: standalone/draknfs:168
-#, c-format
-msgid "Secured Connection:"
-msgstr ""
-
-#: standalone/draknfs:169
-#, c-format
-msgid "Read-Only share:"
-msgstr ""
-
-#: standalone/draknfs:171
-#, c-format
-msgid "<span weight=\"bold\">Advanced Options</span>"
-msgstr ""
-
-#: standalone/draknfs:172
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> this option requires that "
-"requests originate on an internet port less than IPPORT_RESERVED (1024). "
-"This option is on by default."
-msgstr ""
-
-#: standalone/draknfs:173
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> allow either only read or both "
-"read and write requests on this NFS volume. The default is to disallow any "
-"request which changes the filesystem. This can also be made explicit by "
-"using this option."
-msgstr ""
-
-#: standalone/draknfs:174
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> disallows the NFS server to "
-"violate the NFS protocol and to reply to requests before any changes made by "
-"these requests have been committed to stable storage (e.g. disc drive)."
-msgstr ""
-
-#: standalone/draknfs:306
-#, c-format
-msgid "Please add an NFS share to be able to modify it."
-msgstr ""
-
-#: standalone/draknfs:378
-#, fuzzy, c-format
-msgid "Advanced Options Help"
-msgstr "Допълнителна конфигурация"
-
-#: standalone/draknfs:389
-#, c-format
-msgid "NFS directory"
-msgstr ""
-
-#: standalone/draknfs:391 standalone/draksambashare:592
-#: standalone/draksambashare:771
-#, c-format
-msgid "Directory:"
-msgstr "Директория:"
-
-#: standalone/draknfs:394
-#, c-format
-msgid "Host access"
-msgstr ""
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Access:"
-msgstr "Достъп:"
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Hosts Access"
-msgstr ""
-
-#: standalone/draknfs:399
-#, c-format
-msgid "User ID Mapping"
-msgstr ""
-
-#: standalone/draknfs:401
-#, c-format
-msgid "User ID:"
-msgstr "Номер (UID):"
-
-#: standalone/draknfs:401
-#, c-format
-msgid "Help User ID"
-msgstr ""
-
-#: standalone/draknfs:402
-#, c-format
-msgid "Anonymous user ID:"
-msgstr ""
-
-#: standalone/draknfs:403
-#, c-format
-msgid "Anonymous Group ID:"
-msgstr ""
-
-#: standalone/draknfs:444
-#, c-format
-msgid "Can't create this directory."
-msgstr ""
-
-#: standalone/draknfs:447
-#, c-format
-msgid "You must specify hosts access."
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Share Directory"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Hosts Wildcard"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "General Options"
-msgstr "Общи настройки"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Custom Options"
-msgstr ""
-
-#: standalone/draknfs:539 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Please enter a directory to share."
-msgstr ""
-
-#: standalone/draknfs:546
-#, c-format
-msgid "Please use the modify button to set right access."
-msgstr ""
-
-#: standalone/draknfs:600
-#, c-format
-msgid "DrakNFS manage NFS shares"
-msgstr ""
-
-#: standalone/draknfs:609
-#, c-format
-msgid "Failed to add NFS share."
-msgstr ""
-
-#: standalone/draknfs:616
-#, c-format
-msgid "Failed to Modify NFS share."
-msgstr ""
-
-#: standalone/draknfs:623
-#, c-format
-msgid "Failed to remove an NFS share."
-msgstr ""
-
-#: standalone/drakperm:21
-#, c-format
-msgid "System settings"
-msgstr "Системни настройки"
-
-#: standalone/drakperm:22
-#, c-format
-msgid "Custom settings"
-msgstr "Потребителски настройки"
-
-#: standalone/drakperm:23
-#, c-format
-msgid "Custom & system settings"
-msgstr "Потребителски и системни настройки"
-
-#: standalone/drakperm:43
-#, c-format
-msgid "Editable"
-msgstr "Редактируем"
-
-#: standalone/drakperm:48 standalone/drakperm:323
-#: standalone/draksambashare:101
-#, c-format
-msgid "Path"
-msgstr "Път"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "User"
-msgstr "Потребител"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "Group"
-msgstr "Група"
-
-#: standalone/drakperm:48 standalone/drakperm:335
-#, c-format
-msgid "Permissions"
-msgstr "Права"
-
-#: standalone/drakperm:57
-#, c-format
-msgid "Add a new rule"
-msgstr ""
-
-#: standalone/drakperm:64 standalone/drakperm:99 standalone/drakperm:124
-#, c-format
-msgid "Edit current rule"
-msgstr "Редактира текущото правило"
-
-#: standalone/drakperm:106
-#, c-format
-msgid ""
-"Here you can see files to use in order to fix permissions, owners, and "
-"groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
-msgstr ""
-
-#: standalone/drakperm:109
-#, fuzzy, c-format
-msgid ""
-"The current security level is %s.\n"
-"Select permissions to see/edit"
-msgstr ""
-"Сегашното ниво на сигурност е %s. \n"
-"Изберете права за разглеждане/редактиране"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Up"
-msgstr "Горе"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Move selected rule up one level"
-msgstr ""
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Down"
-msgstr "Долу"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Премества избраното правило едно ниво надолу"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a rule"
-msgstr "Добавяне на правило"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Добавя ново правило на края"
-
-#: standalone/drakperm:123
-#, c-format
-msgid "Delete selected rule"
-msgstr "Изтрива избраното правило"
-
-#: standalone/drakperm:242
-#, c-format
-msgid "browse"
-msgstr "преглед"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "user"
-msgstr "потребител"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "group"
-msgstr "Група"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "other"
-msgstr "друг"
-
-#: standalone/drakperm:252
-#, c-format
-msgid "Read"
-msgstr "Четене"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:255
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr ""
-
-#: standalone/drakperm:259
-#, c-format
-msgid "Write"
-msgstr "Запис"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:262
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Разрешаване на \"%s\" да пише във файла"
-
-#: standalone/drakperm:266
-#, c-format
-msgid "Execute"
-msgstr "Изпълни"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:269
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr ""
-
-#: standalone/drakperm:272
-#, c-format
-msgid "Sticky-bit"
-msgstr "sticky-бит"
-
-#: standalone/drakperm:272
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Set-UID"
-msgstr "Задава-UID"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Използва id на собственик при изпълнение"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Set-GID"
-msgstr "Задава-GID"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Use group id for execution"
-msgstr "Използва id на група при изпълнение"
-
-#: standalone/drakperm:292 standalone/drakxtv:89
-#, c-format
-msgid "User:"
-msgstr "Потребител :"
-
-#: standalone/drakperm:294
-#, c-format
-msgid "Group:"
-msgstr "Група :"
-
-#: standalone/drakperm:298
-#, c-format
-msgid "Current user"
-msgstr "Текущ потребител"
-
-#: standalone/drakperm:299
-#, c-format
-msgid "When checked, owner and group will not be changed"
-msgstr "При проверка, собственика и групата няма да бъдат променени"
-
-#: standalone/drakperm:309
-#, c-format
-msgid "Path selection"
-msgstr "Избор на път"
-
-#: standalone/drakperm:329
-#, c-format
-msgid "Property"
-msgstr "Собственост"
-
-#: standalone/drakperm:380
-#, c-format
-msgid ""
-"The first character of the path must be a slash (\"/\"):\n"
-"\"%s\""
-msgstr ""
-
-#: standalone/drakperm:390
-#, c-format
-msgid "Both the username and the group must valid!"
-msgstr ""
-
-#: standalone/drakperm:391
-#, c-format
-msgid "User: %s"
-msgstr ""
-
-#: standalone/drakperm:392
-#, c-format
-msgid "Group: %s"
-msgstr ""
-
-#: standalone/drakroam:33
-#, c-format
-msgid ""
-"You do not have any wireless interface.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakroam:48
-#, c-format
-msgid "SSID"
-msgstr ""
-
-#: standalone/drakroam:49
-#, c-format
-msgid "Signal strength"
-msgstr ""
-
-#: standalone/drakroam:51
-#, c-format
-msgid "Encryption"
-msgstr "Криптиране"
-
-#: standalone/drakroam:112
-#, c-format
-msgid "Please enter settings for wireless network \"%s\""
-msgstr ""
-
-#: standalone/drakroam:123
-#, c-format
-msgid "DNS server"
-msgstr ""
-
-#: standalone/drakroam:228
-#, c-format
-msgid "Connect"
-msgstr "Връзка"
-
-#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/drakroam:229 standalone/printerdrake:251
-#, c-format
-msgid "Refresh"
-msgstr "Опресни"
-
-#: standalone/draksambashare:68
-#, fuzzy, c-format
-msgid "Share directory"
-msgstr "Не е директория"
-
-#: standalone/draksambashare:69 standalone/draksambashare:102
-#, c-format
-msgid "Comment"
-msgstr "Коментар"
-
-#: standalone/draksambashare:70 standalone/draksambashare:103
-#, fuzzy, c-format
-msgid "Browseable"
-msgstr "Преглед"
-
-#: standalone/draksambashare:71
-#, c-format
-msgid "Public"
-msgstr "Публичен"
-
-#: standalone/draksambashare:72 standalone/draksambashare:108
-#, c-format
-msgid "Writable"
-msgstr "Запис"
-
-#: standalone/draksambashare:73 standalone/draksambashare:149
-#, fuzzy, c-format
-msgid "Create mask"
-msgstr "Създай"
-
-#: standalone/draksambashare:74 standalone/draksambashare:150
-#, fuzzy, c-format
-msgid "Directory mask"
-msgstr "Сървър с директории"
-
-#: standalone/draksambashare:75
-#, fuzzy, c-format
-msgid "Read list"
-msgstr "Четене"
-
-#: standalone/draksambashare:76 standalone/draksambashare:109
-#: standalone/draksambashare:606
-#, fuzzy, c-format
-msgid "Write list"
-msgstr "Запис"
-
-#: standalone/draksambashare:77 standalone/draksambashare:141
-#, fuzzy, c-format
-msgid "Admin users"
-msgstr "Добави потребител"
-
-#: standalone/draksambashare:78 standalone/draksambashare:142
-#, fuzzy, c-format
-msgid "Valid users"
-msgstr "Добави потребител"
-
-#: standalone/draksambashare:79
-#, fuzzy, c-format
-msgid "Inherit Permissions"
-msgstr "Права"
-
-#: standalone/draksambashare:80 standalone/draksambashare:143
-#, fuzzy, c-format
-msgid "Hide dot files"
-msgstr "Скрий файловете"
-
-#: standalone/draksambashare:82 standalone/draksambashare:148
-#, fuzzy, c-format
-msgid "Preserve case"
-msgstr "Настройки"
-
-#: standalone/draksambashare:83
-#, fuzzy, c-format
-msgid "Force create mode"
-msgstr "Вашият модел принтер"
-
-#: standalone/draksambashare:84
-#, fuzzy, c-format
-msgid "Force group"
-msgstr "Работна група"
-
-#: standalone/draksambashare:85 standalone/draksambashare:147
-#, fuzzy, c-format
-msgid "Default case"
-msgstr "Потребител по подразбиране"
-
-#: standalone/draksambashare:100
-#, c-format
-msgid "Printer name"
-msgstr ""
-
-#: standalone/draksambashare:104 standalone/draksambashare:598
-#, c-format
-msgid "Printable"
-msgstr ""
-
-#: standalone/draksambashare:105
-#, c-format
-msgid "Print Command"
-msgstr ""
-
-#: standalone/draksambashare:106
-#, c-format
-msgid "LPQ command"
-msgstr ""
-
-#: standalone/draksambashare:107
-#, c-format
-msgid "Guest ok"
-msgstr ""
-
-#: standalone/draksambashare:110 standalone/draksambashare:151
-#: standalone/draksambashare:607
-#, fuzzy, c-format
-msgid "Inherit permissions"
-msgstr "Права"
-
-#: standalone/draksambashare:112
-#, c-format
-msgid "Create mode"
-msgstr ""
-
-#: standalone/draksambashare:113
-#, c-format
-msgid "Use client driver"
-msgstr ""
-
-#: standalone/draksambashare:139
-#, fuzzy, c-format
-msgid "Read List"
-msgstr "Изтрива списък"
-
-#: standalone/draksambashare:140
-#, fuzzy, c-format
-msgid "Write List"
-msgstr "Запис"
-
-#: standalone/draksambashare:145
-#, fuzzy, c-format
-msgid "Force Group"
-msgstr "Група"
-
-#: standalone/draksambashare:146
-#, c-format
-msgid "Force create group"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid "About Draksambashare"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid ""
-"Mandriva Linux \n"
-"Release: %s\n"
-"Author: Antoine Ginies\n"
-"\n"
-"This is a simple tool to easily manage Samba configuration."
-msgstr ""
-
-#: standalone/draksambashare:186
-#, fuzzy, c-format
-msgid "Samba server"
-msgstr "Samba Сървър"
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Restarting/Reloading Samba server..."
-msgstr ""
-
-#: standalone/draksambashare:187
-#, c-format
-msgid "Error Restarting/Reloading Samba server"
-msgstr ""
-
-#: standalone/draksambashare:372
-#, fuzzy, c-format
-msgid "Add a Samba share"
-msgstr "Samba Сървър"
-
-#: standalone/draksambashare:375
-#, c-format
-msgid "Goal of this wizard is to easily create a new Samba share."
-msgstr ""
-
-#: standalone/draksambashare:377
-#, fuzzy, c-format
-msgid "Name of the share:"
-msgstr "Име на принтер"
-
-#: standalone/draksambashare:378 standalone/draksambashare:591
-#: standalone/draksambashare:772
-#, c-format
-msgid "Comment:"
-msgstr "Коментар:"
-
-#: standalone/draksambashare:379
-#, c-format
-msgid "Path:"
-msgstr "Път:"
-
-#: standalone/draksambashare:384
-#, c-format
-msgid ""
-"Share with the same name already exist or share name empty, please choose "
-"another name."
-msgstr ""
-
-#: standalone/draksambashare:388 standalone/draksambashare:394
-#, c-format
-msgid "Can't create the directory, please enter a correct path."
-msgstr ""
-
-#: standalone/draksambashare:391 standalone/draksambashare:627
-#: standalone/draksambashare:794
-#, fuzzy, c-format
-msgid "Please enter a Comment for this share."
-msgstr "Моля, въведете име на хост или IP."
-
-#: standalone/draksambashare:422
-#, c-format
-msgid ""
-"The wizard successfully added the Samba share. Now just double click on it "
-"in treeview to modify it"
-msgstr ""
-
-#: standalone/draksambashare:437
-#, c-format
-msgid "pdf-gen - a PDF generator"
-msgstr ""
-
-#: standalone/draksambashare:438
-#, c-format
-msgid "printers - all printers available"
-msgstr ""
-
-#: standalone/draksambashare:442
-#, c-format
-msgid "Add Special Printer share"
-msgstr ""
-
-#: standalone/draksambashare:445
-#, c-format
-msgid ""
-"Goal of this wizard is to easily create a new special printer Samba share."
-msgstr ""
-
-#: standalone/draksambashare:453
-#, c-format
-msgid "A PDF generator already exists."
-msgstr ""
-
-#: standalone/draksambashare:477
-#, c-format
-msgid "Printers and print$ already exist."
-msgstr ""
-
-#: standalone/draksambashare:528
-#, c-format
-msgid "The wizard successfully added the printer Samba share"
-msgstr ""
-
-#: standalone/draksambashare:551
-#, c-format
-msgid "Please add or select a Samba printer share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:587
-#, c-format
-msgid "Printer share"
-msgstr ""
-
-#: standalone/draksambashare:590
-#, c-format
-msgid "Printer name:"
-msgstr "Име на принтер:"
-
-#: standalone/draksambashare:596 standalone/draksambashare:777
-#, fuzzy, c-format
-msgid "Writable:"
-msgstr "Запис"
-
-#: standalone/draksambashare:597 standalone/draksambashare:778
-#, fuzzy, c-format
-msgid "Browseable:"
-msgstr "Преглед"
-
-#: standalone/draksambashare:602
-#, c-format
-msgid "Advanced options"
-msgstr "Допълнителни настройки"
-
-#: standalone/draksambashare:604
-#, c-format
-msgid "Printer access"
-msgstr ""
-
-#: standalone/draksambashare:608
-#, c-format
-msgid "Guest ok:"
-msgstr ""
-
-#: standalone/draksambashare:609
-#, c-format
-msgid "Create mode:"
-msgstr ""
-
-#: standalone/draksambashare:613
-#, c-format
-msgid "Printer command"
-msgstr ""
-
-#: standalone/draksambashare:615
-#, c-format
-msgid "Print command:"
-msgstr ""
-
-#: standalone/draksambashare:616
-#, c-format
-msgid "LPQ command:"
-msgstr ""
-
-#: standalone/draksambashare:617
-#, c-format
-msgid "Printing:"
-msgstr ""
-
-#: standalone/draksambashare:633
-#, c-format
-msgid "create mode should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:695
-#, c-format
-msgid "DrakSamba entry"
-msgstr ""
-
-#: standalone/draksambashare:700
-#, c-format
-msgid "Please add or select a Samba share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:723
-#, fuzzy, c-format
-msgid "Samba user access"
-msgstr "Samba Сървър"
-
-#: standalone/draksambashare:731
-#, fuzzy, c-format
-msgid "Mask options"
-msgstr "Основни настройки"
-
-#: standalone/draksambashare:745
-#, fuzzy, c-format
-msgid "Display options"
-msgstr "Задай опции"
-
-#: standalone/draksambashare:767
-#, fuzzy, c-format
-msgid "Samba share directory"
-msgstr "Не е директория"
-
-#: standalone/draksambashare:770
-#, fuzzy, c-format
-msgid "Share name:"
-msgstr "Общо име"
-
-#: standalone/draksambashare:776
-#, c-format
-msgid "Public:"
-msgstr ""
-
-#: standalone/draksambashare:800
-#, c-format
-msgid ""
-"Create mask, create mode and directory mask should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:807
-#, c-format
-msgid "Please create this Samba user: %s"
-msgstr ""
-
-#: standalone/draksambashare:930
-#, c-format
-msgid "User information"
-msgstr ""
-
-#: standalone/draksambashare:932
-#, c-format
-msgid "User name:"
-msgstr "Потребител:"
-
-#: standalone/draksambashare:933
-#, c-format
-msgid "Password:"
-msgstr "Парола:"
-
-#: standalone/draksambashare:1133
-#, c-format
-msgid "Failed to add Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1142
-#, c-format
-msgid "Failed to Modify Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1151
-#, c-format
-msgid "Failed to remove a Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1158
-#, c-format
-msgid "File share"
-msgstr ""
-
-#: standalone/draksambashare:1166
-#, c-format
-msgid "Add printers"
-msgstr ""
-
-#: standalone/draksambashare:1172
-#, c-format
-msgid "Failed to add printers."
-msgstr ""
-
-#: standalone/draksambashare:1181
-#, c-format
-msgid "Failed to Modify."
-msgstr ""
-
-#: standalone/draksambashare:1190
-#, c-format
-msgid "Failed to remove."
-msgstr ""
-
-#: standalone/draksambashare:1197
-#, c-format
-msgid "Printers"
-msgstr "Принтери"
-
-#: standalone/draksambashare:1205
-#, c-format
-msgid "Change password"
-msgstr ""
-
-#: standalone/draksambashare:1210
-#, c-format
-msgid "Failed to change user password."
-msgstr ""
-
-#: standalone/draksambashare:1218
-#, c-format
-msgid "Failed to add user."
-msgstr ""
-
-#: standalone/draksambashare:1221
-#, c-format
-msgid "Delete user"
-msgstr ""
-
-#: standalone/draksambashare:1230
-#, c-format
-msgid "Failed to delete user."
-msgstr ""
-
-#: standalone/draksambashare:1242
-#, c-format
-msgid "Samba Users"
-msgstr ""
-
-#: standalone/draksambashare:1251
-#, c-format
-msgid "DrakSamba manage Samba shares"
-msgstr ""
-
-#: standalone/draksec:49
-#, c-format
-msgid "ALL"
-msgstr ""
-
-#: standalone/draksec:50
-#, c-format
-msgid "LOCAL"
-msgstr ""
-
-#: standalone/draksec:51
-#, c-format
-msgid "NONE"
-msgstr ""
-
-#: standalone/draksec:53 standalone/net_applet:480
-#, c-format
-msgid "Ignore"
-msgstr "Игнориране"
-
-#. -PO: Do not alter the <span ..> and </span> tags.
-#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
-#: standalone/draksec:103
-#, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Administrator</span>' is the one who "
-"will receive security alerts if the\n"
-"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a "
-"username or an email.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Level</span>' menu allows you to select "
-"one of the six preconfigured security levels\n"
-"provided with msec. These levels range from '<span weight=\"bold\">poor</"
-"span>' security and ease of use, to\n"
-"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive "
-"server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
-"very\n"
-"easy to use security level. It should only be used for machines not "
-"connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
-"security\n"
-"recommended for a computer that will be used to connect to the Internet as "
-"a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
-"enough\n"
-"to use the system as a server which can accept connections from many "
-"clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower "
-"level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-
-#: standalone/draksec:156 standalone/harddrake2:207
-#, c-format
-msgid ""
-"Description of the fields:\n"
-"\n"
-msgstr ""
-"Описание на полетата:\n"
-"\n"
-
-#: standalone/draksec:170
-#, c-format
-msgid "(default value: %s)"
-msgstr "(подразбираща стойност: %s)"
-
-#: standalone/draksec:212
-#, c-format
-msgid "Security Level:"
-msgstr "Ниво на сигурност:"
-
-#: standalone/draksec:219
-#, c-format
-msgid "Security Administrator:"
-msgstr "Администратор по защита:"
-
-#: standalone/draksec:221
-#, c-format
-msgid "Basic options"
-msgstr "Основни настройки"
-
-#: standalone/draksec:235
-#, c-format
-msgid "Network Options"
-msgstr "Мрежови опции"
-
-#: standalone/draksec:235
-#, c-format
-msgid "System Options"
-msgstr "Системни опции"
-
-#: standalone/draksec:270
-#, c-format
-msgid "Periodic Checks"
-msgstr ""
-
-#: standalone/draksec:300
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Моля, изберете ниво на сигурност..."
-
-#: standalone/draksec:306
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Моля, изчакайте, установявам опциите по защита..."
-
-#: standalone/draksound:47
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Няма намерена звукова карта!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/draksound:50
-#, c-format
-msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-
-#: standalone/draksound:57
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or "
-"the sndconfig program. Just type \"alsaconf\" or \"sndconfig\" in a console."
-msgstr ""
-
-#: standalone/draksplash:30
-#, c-format
-msgid "x coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:31
-#, c-format
-msgid "y coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:32
-#, c-format
-msgid "text box width"
-msgstr ""
-
-#: standalone/draksplash:33
-#, c-format
-msgid "text box height"
-msgstr "височина на рамка за текст"
-
-#: standalone/draksplash:34
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"лентата за прогрес x координати\n"
-"от горният ляв ъгъл"
-
-#: standalone/draksplash:35
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-"лентата за прогрес y координати\n"
-"от горният ляв ъгъл"
-
-#: standalone/draksplash:36
-#, c-format
-msgid "the width of the progress bar"
-msgstr "ширината на лентата за прогрес"
-
-#: standalone/draksplash:37
-#, c-format
-msgid "the height of the progress bar"
-msgstr "височината на лентата за прогрес"
-
-#: standalone/draksplash:38
-#, c-format
-msgid "x coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:39
-#, c-format
-msgid "y coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:40
-#, c-format
-msgid "text box transparency"
-msgstr ""
-
-#: standalone/draksplash:41
-#, c-format
-msgid "progress box transparency"
-msgstr ""
-
-#: standalone/draksplash:42
-#, c-format
-msgid "text size"
-msgstr ""
-
-#: standalone/draksplash:59
-#, c-format
-msgid "Choose progress bar color 1"
-msgstr ""
-
-#: standalone/draksplash:60
-#, c-format
-msgid "Choose progress bar color 2"
-msgstr ""
-
-#: standalone/draksplash:61
-#, c-format
-msgid "Choose progress bar background"
-msgstr ""
-
-#: standalone/draksplash:62
-#, c-format
-msgid "Gradient type"
-msgstr ""
-
-#: standalone/draksplash:63
-#, c-format
-msgid "Choose text color"
-msgstr ""
-
-#: standalone/draksplash:65 standalone/draksplash:72
-#, c-format
-msgid "Choose picture"
-msgstr ""
-
-#: standalone/draksplash:66
-#, c-format
-msgid "Silent bootsplash"
-msgstr ""
-
-#: standalone/draksplash:69
-#, c-format
-msgid "Choose text zone color"
-msgstr ""
-
-#: standalone/draksplash:70
-#, c-format
-msgid "Text color"
-msgstr "Цвят"
-
-#: standalone/draksplash:71
-#, c-format
-msgid "Background color"
-msgstr "Цвят на фона"
-
-#: standalone/draksplash:73
-#, c-format
-msgid "Verbose bootsplash"
-msgstr ""
-
-#: standalone/draksplash:75
-#, c-format
-msgid "Display logo on Console"
-msgstr "Показва лого на Конзола"
-
-#: standalone/draksplash:78
-#, c-format
-msgid "Console bootsplash"
-msgstr ""
-
-#: standalone/draksplash:84
-#, c-format
-msgid "Theme name"
-msgstr "Име на тема"
-
-#: standalone/draksplash:87
-#, c-format
-msgid "final resolution"
-msgstr ""
-
-#: standalone/draksplash:92
-#, c-format
-msgid "Save theme"
-msgstr "Запазва тема"
-
-#: standalone/draksplash:153
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr ""
-
-#: standalone/draksplash:162
-#, c-format
-msgid "Unable to load image file %s"
-msgstr ""
-
-#: standalone/draksplash:173
-#, c-format
-msgid "choose image"
-msgstr "избор на изображение"
-
-#: standalone/draksplash:188
-#, c-format
-msgid "Color selection"
-msgstr ""
-
-#: standalone/drakups:71
-#, c-format
-msgid "Connected through a serial port or an usb cable"
-msgstr ""
-
-#: standalone/drakups:78
-#, fuzzy, c-format
-msgid "Add an UPS device"
-msgstr "Добавяне на обект"
-
-#: standalone/drakups:81
-#, fuzzy, c-format
-msgid ""
-"Welcome to the UPS configuration utility.\n"
-"\n"
-"Here, you'll add a new UPS to your system.\n"
-msgstr ""
-"Добре дошли в настройката на е-поща.\n"
-"\n"
-"Тук можете да укажете предопитанията си за известяващата система.\n"
-
-#: standalone/drakups:88
-#, c-format
-msgid ""
-"We're going to add an UPS device.\n"
-"\n"
-"Do you want to autodetect UPS devices connected to this machine or to "
-"manually select them?"
-msgstr ""
-
-#: standalone/drakups:91
-#, fuzzy, c-format
-msgid "Autodetection"
-msgstr "Автоматично засичане"
-
-#: standalone/drakups:99 standalone/harddrake2:375
-#, c-format
-msgid "Detection in progress"
-msgstr "Откриване в прогрес"
-
-#: standalone/drakups:119
-#, c-format
-msgid "The wizard successfully added the following UPS devices:"
-msgstr ""
-
-#: standalone/drakups:121
-#, fuzzy, c-format
-msgid "No new UPS devices was found"
-msgstr "Не е намерен образ"
-
-#: standalone/drakups:126 standalone/drakups:138
-#, fuzzy, c-format
-msgid "UPS driver configuration"
-msgstr "Настройка на CUPS принтер"
-
-#: standalone/drakups:126
-#, fuzzy, c-format
-msgid "Please select your UPS model."
-msgstr "Моля, пробвайте мишката си"
-
-#: standalone/drakups:127
-#, fuzzy, c-format
-msgid "Manufacturer / Model:"
-msgstr "Производител на принтера, модел"
-
-#: standalone/drakups:138
-#, c-format
-msgid ""
-"We are configuring the \"%s\" UPS from \"%s\".\n"
-"Please fill in its name, its driver and its port."
-msgstr ""
-
-#: standalone/drakups:143
-#, c-format
-msgid "Name:"
-msgstr "Име:"
-
-#: standalone/drakups:143
-#, fuzzy, c-format
-msgid "The name of your ups"
-msgstr "име на процесора"
-
-#: standalone/drakups:144
-#, c-format
-msgid "The driver that manages your ups"
-msgstr ""
-
-#: standalone/drakups:145
-#, c-format
-msgid "Port:"
-msgstr "Порт:"
-
-#: standalone/drakups:147
-#, fuzzy, c-format
-msgid "The port on which is connected your ups"
-msgstr "Моля, изберете типа на шината към която е свързана мишката ви."
-
-#: standalone/drakups:157
-#, c-format
-msgid "The wizard successfully configured the new \"%s\" UPS device."
-msgstr ""
-
-#: standalone/drakups:248
-#, fuzzy, c-format
-msgid "UPS devices"
-msgstr "Услуги"
-
-#: standalone/drakups:249 standalone/drakups:268 standalone/drakups:284
-#: standalone/harddrake2:85 standalone/harddrake2:111
-#: standalone/harddrake2:118
-#, c-format
-msgid "Name"
-msgstr "Име"
-
-#: standalone/drakups:267
-#, fuzzy, c-format
-msgid "UPS users"
-msgstr "Потребители"
-
-#: standalone/drakups:283
-#, fuzzy, c-format
-msgid "Access Control Lists"
-msgstr "достъп до мрежови инструменти"
-
-#: standalone/drakups:284
-#, c-format
-msgid "IP mask"
-msgstr ""
-
-#: standalone/drakups:296
-#, c-format
-msgid "Rules"
-msgstr "Правила"
-
-#: standalone/drakups:297
-#, c-format
-msgid "Action"
-msgstr "Действие"
-
-#: standalone/drakups:297 standalone/drakvpn:1132 standalone/harddrake2:82
-#, c-format
-msgid "Level"
-msgstr "Ниво"
-
-#: standalone/drakups:297
-#, fuzzy, c-format
-msgid "ACL name"
-msgstr "LVM име ?"
-
-#: standalone/drakups:327 standalone/drakups:331 standalone/drakups:340
-#, fuzzy, c-format
-msgid "DrakUPS"
-msgstr "Дворак (US)"
-
-#: standalone/drakups:337
-#, fuzzy, c-format
-msgid "Welcome to the UPS configuration tools"
-msgstr "Проверка на настройката"
-
-#: standalone/drakvpn:73
-#, fuzzy, c-format
-msgid "DrakVPN"
-msgstr "Дворак (US)"
-
-#: standalone/drakvpn:95
-#, fuzzy, c-format
-msgid "The VPN connection is enabled."
-msgstr "Споделянето на Интернет в момента е включено."
-
-#: standalone/drakvpn:96
-#, fuzzy, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Установката на Споделянето на Интернет връзката е завършена.\n"
-"В момента е включена.\n"
-"\n"
-"Какво искате да направите ?"
-
-#: standalone/drakvpn:101
-#, c-format
-msgid "disable"
-msgstr "изключи"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127
-#, c-format
-msgid "reconfigure"
-msgstr "пренастройка"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127 standalone/drakvpn:362
-#: standalone/drakvpn:721
-#, c-format
-msgid "dismiss"
-msgstr "остави"
-
-#: standalone/drakvpn:105
-#, fuzzy, c-format
-msgid "Disabling VPN..."
-msgstr "Изключване на сървъри ..."
-
-#: standalone/drakvpn:114
-#, fuzzy, c-format
-msgid "The VPN connection is now disabled."
-msgstr "Споделянето на Интернет връзката в момента е изключено."
-
-#: standalone/drakvpn:121
-#, fuzzy, c-format
-msgid "VPN connection currently disabled"
-msgstr "Споделянето на Интернет връзката е изключено."
-
-#: standalone/drakvpn:122
-#, fuzzy, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Установката на Споделянето на Интернет връзката е вече завършена.\n"
-"В момента е изключена.\n"
-"\n"
-"Какво искате да направите ?"
-
-#: standalone/drakvpn:127
-#, c-format
-msgid "enable"
-msgstr "включи"
-
-#: standalone/drakvpn:135
-#, fuzzy, c-format
-msgid "Enabling VPN..."
-msgstr "Включване на сървъри ..."
-
-#: standalone/drakvpn:141
-#, fuzzy, c-format
-msgid "The VPN connection is now enabled."
-msgstr "Споделянето на Интернет в момента е включено."
-
-#: standalone/drakvpn:155 standalone/drakvpn:183
-#, c-format
-msgid "Simple VPN setup."
-msgstr ""
-
-#: standalone/drakvpn:156
-#, c-format
-msgid ""
-"You are about to configure your computer to use a VPN connection.\n"
-"\n"
-"With this feature, computers on your local private network and computers\n"
-"on some other remote private networks, can share resources, through\n"
-"their respective firewalls, over the Internet, in a secure manner. \n"
-"\n"
-"The communication over the Internet is encrypted. The local and remote\n"
-"computers look as if they were on the same network.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using\n"
-"drakconnect before going any further."
-msgstr ""
-
-#: standalone/drakvpn:184
-#, c-format
-msgid ""
-"VPN connection.\n"
-"\n"
-"This program is based on the following projects:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - the docs and man pages coming with the %s package\n"
-"\n"
-"Please read AT LEAST the ipsec-howto docs\n"
-"before going any further."
-msgstr ""
-
-#: standalone/drakvpn:196
-#, fuzzy, c-format
-msgid "Kernel module."
-msgstr "Премахни модула"
-
-#: standalone/drakvpn:197
-#, c-format
-msgid ""
-"The kernel needs to have ipsec support.\n"
-"\n"
-"You're running a %s kernel version.\n"
-"\n"
-"This kernel has '%s' support."
-msgstr ""
-
-#: standalone/drakvpn:264
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Проблеми с инсталирането на пакета %s"
-
-#: standalone/drakvpn:278
-#, fuzzy, c-format
-msgid "Security Policies"
-msgstr "Предупреждения за защита:"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "IKE daemon racoon"
-msgstr ""
-
-#: standalone/drakvpn:281 standalone/drakvpn:292
-#, fuzzy, c-format
-msgid "Configuration file"
-msgstr "Настройка"
-
-#: standalone/drakvpn:282
-#, c-format
-msgid ""
-"Configuration step!\n"
-"\n"
-"You need to define the Security Policies and then to \n"
-"configure the automatic key exchange (IKE) daemon. \n"
-"The KAME IKE daemon we're using is called 'racoon'.\n"
-"\n"
-"What would you like to configure?\n"
-msgstr ""
-
-#: standalone/drakvpn:293
-#, c-format
-msgid ""
-"Next, we will configure the %s file.\n"
-"\n"
-"\n"
-"Simply click on Next.\n"
-msgstr ""
-
-#: standalone/drakvpn:311 standalone/drakvpn:671
-#, fuzzy, c-format
-msgid "%s entries"
-msgstr ", %s сектора"
-
-#: standalone/drakvpn:312
-#, c-format
-msgid ""
-"The %s file contents\n"
-"is divided into sections.\n"
-"\n"
-"You can now:\n"
-"\n"
-" - display, add, edit, or remove sections, then\n"
-" - commit the changes\n"
-"\n"
-"What would you like to do?\n"
-msgstr ""
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, fuzzy, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display"
-msgstr "Повтори"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, fuzzy, c-format
-msgid "Commit"
-msgstr "компактен"
-
-#: standalone/drakvpn:333 standalone/drakvpn:337 standalone/drakvpn:695
-#: standalone/drakvpn:699
-#, fuzzy, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display configuration"
-msgstr "Настройка на LAN"
-
-#: standalone/drakvpn:338
-#, c-format
-msgid ""
-"The %s file does not exist.\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose 'add'.\n"
-msgstr ""
-
-#: standalone/drakvpn:354
-#, c-format
-msgid "ipsec.conf entries"
-msgstr ""
-
-#: standalone/drakvpn:355
-#, c-format
-msgid ""
-"The %s file contains different sections.\n"
-"\n"
-"Here is its skeleton:\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"You can now add one of these sections.\n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-
-#: standalone/drakvpn:362
-#, fuzzy, c-format
-msgid "config setup"
-msgstr "пренастройка"
-
-#: standalone/drakvpn:362
-#, fuzzy, c-format
-msgid "conn %default"
-msgstr "по подрабиране"
-
-#: standalone/drakvpn:362
-#, fuzzy, c-format
-msgid "normal conn"
-msgstr "Нормален режим"
-
-#: standalone/drakvpn:368 standalone/drakvpn:409 standalone/drakvpn:496
-#, fuzzy, c-format
-msgid "Exists!"
-msgstr "Излез"
-
-#: standalone/drakvpn:369 standalone/drakvpn:410
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change its name.\n"
-msgstr ""
-
-#: standalone/drakvpn:386
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow this config\n"
-"setup section.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:391
-#, fuzzy, c-format
-msgid "interfaces"
-msgstr "Интерфейс"
-
-#: standalone/drakvpn:392
-#, c-format
-msgid "klipsdebug"
-msgstr ""
-
-#: standalone/drakvpn:393
-#, c-format
-msgid "plutodebug"
-msgstr ""
-
-#: standalone/drakvpn:394
-#, c-format
-msgid "plutoload"
-msgstr ""
-
-#: standalone/drakvpn:395
-#, c-format
-msgid "plutostart"
-msgstr ""
-
-#: standalone/drakvpn:396
-#, c-format
-msgid "uniqueids"
-msgstr ""
-
-#: standalone/drakvpn:430
-#, c-format
-msgid ""
-"This is the first section after the config\n"
-"setup one.\n"
-"\n"
-"Here you define the default settings. \n"
-"All the other sections will follow this one.\n"
-"The left settings are optional. If do not define\n"
-"them here, globally, you can define them in each\n"
-"section.\n"
-msgstr ""
-
-#: standalone/drakvpn:437
-#, fuzzy, c-format
-msgid "PFS"
-msgstr "HFS"
-
-#: standalone/drakvpn:438
-#, c-format
-msgid "keyingtries"
-msgstr ""
-
-#: standalone/drakvpn:439
-#, c-format
-msgid "compress"
-msgstr ""
-
-#: standalone/drakvpn:440
-#, c-format
-msgid "disablearrivalcheck"
-msgstr ""
-
-#: standalone/drakvpn:441 standalone/drakvpn:480
-#, c-format
-msgid "left"
-msgstr "ляво"
-
-#: standalone/drakvpn:442 standalone/drakvpn:481
-#, c-format
-msgid "leftcert"
-msgstr ""
-
-#: standalone/drakvpn:443 standalone/drakvpn:482
-#, c-format
-msgid "leftrsasigkey"
-msgstr ""
-
-#: standalone/drakvpn:444 standalone/drakvpn:483
-#, c-format
-msgid "leftsubnet"
-msgstr ""
-
-#: standalone/drakvpn:445 standalone/drakvpn:484
-#, c-format
-msgid "leftnexthop"
-msgstr ""
-
-#: standalone/drakvpn:474
-#, c-format
-msgid ""
-"Your %s file has several sections, or connections.\n"
-"\n"
-"You can now add a new section.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:477
-#, fuzzy, c-format
-msgid "section name"
-msgstr "Име на връзката"
-
-#: standalone/drakvpn:478
-#, fuzzy, c-format
-msgid "authby"
-msgstr "Път"
-
-#: standalone/drakvpn:479
-#, c-format
-msgid "auto"
-msgstr "авто"
-
-#: standalone/drakvpn:485
-#, c-format
-msgid "right"
-msgstr "дясно"
-
-#: standalone/drakvpn:486
-#, fuzzy, c-format
-msgid "rightcert"
-msgstr "По-високо"
-
-#: standalone/drakvpn:487
-#, c-format
-msgid "rightrsasigkey"
-msgstr ""
-
-#: standalone/drakvpn:488
-#, c-format
-msgid "rightsubnet"
-msgstr ""
-
-#: standalone/drakvpn:489
-#, c-format
-msgid "rightnexthop"
-msgstr ""
-
-#: standalone/drakvpn:497
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change the name of the section.\n"
-msgstr ""
-
-#: standalone/drakvpn:529
-#, c-format
-msgid ""
-"Add a Security Policy.\n"
-"\n"
-"You can now add a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:562 standalone/drakvpn:812
-#, fuzzy, c-format
-msgid "Edit section"
-msgstr "Избор на път"
-
-#: standalone/drakvpn:563
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to edit \n"
-"and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:566 standalone/drakvpn:646 standalone/drakvpn:817
-#: standalone/drakvpn:863
-#, fuzzy, c-format
-msgid "Section names"
-msgstr "Име на връзката"
-
-#: standalone/drakvpn:576
-#, fuzzy, c-format
-msgid "Can not edit!"
-msgstr "Не мога да отворя %s!"
-
-#: standalone/drakvpn:577
-#, c-format
-msgid ""
-"You cannot edit this section.\n"
-"\n"
-"This section is mandatory for Freeswan 2.X.\n"
-"One has to specify version 2.0 on the top\n"
-"of the %s file, and eventually, disable or\n"
-"enable the opportunistic encryption.\n"
-msgstr ""
-
-#: standalone/drakvpn:586
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the config setup section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:597
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the default section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:610
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the normal section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:631
-#, c-format
-msgid ""
-"Edit a Security Policy.\n"
-"\n"
-"You can now edit a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:642 standalone/drakvpn:859
-#, fuzzy, c-format
-msgid "Remove section"
-msgstr "Изтрива списък"
-
-#: standalone/drakvpn:643 standalone/drakvpn:860
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to remove\n"
-"and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:672
-#, c-format
-msgid ""
-"The racoon.conf file configuration.\n"
-"\n"
-"The contents of this file is divided into sections.\n"
-"You can now:\n"
-" - display \t\t (display the file contents)\n"
-" - add\t\t\t (add one section)\n"
-" - edit \t\t\t (modify parameters of an existing section)\n"
-" - remove \t\t (remove an existing section)\n"
-" - commit \t\t (writes the changes to the real file)"
-msgstr ""
-
-#: standalone/drakvpn:700
-#, c-format
-msgid ""
-"The %s file does not exist\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose configure.\n"
-msgstr ""
-
-#: standalone/drakvpn:714
-#, c-format
-msgid "racoonf.conf entries"
-msgstr ""
-
-#: standalone/drakvpn:715
-#, c-format
-msgid ""
-"The 'add' sections step.\n"
-"\n"
-"Here below is the racoon.conf file skeleton:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "path"
-msgstr "път"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "remote"
-msgstr "отдалечен"
-
-#: standalone/drakvpn:721
-#, fuzzy, c-format
-msgid "sainfo"
-msgstr "Информация"
-
-#: standalone/drakvpn:729
-#, c-format
-msgid ""
-"The 'add path' section step.\n"
-"\n"
-"The path sections have to be on top of your racoon.conf file.\n"
-"\n"
-"Put your mouse over the certificate entry to obtain online help."
-msgstr ""
-
-#: standalone/drakvpn:732
-#, fuzzy, c-format
-msgid "path type"
-msgstr "Промяни типа"
-
-#: standalone/drakvpn:736
-#, c-format
-msgid ""
-"path include path: specifies a path to include\n"
-"a file. See File Inclusion.\n"
-"\tExample: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: specifies a file containing\n"
-"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
-"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) will search this directory\n"
-"if a certificate or certificate request is received.\n"
-"\tExample: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"other configuration files can be included.\n"
-"\tExample: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File: Pre-shared key file defines a pair\n"
-"of the identifier and the shared secret key which are used at\n"
-"Pre-shared key authentication method in phase 1."
-msgstr ""
-
-#: standalone/drakvpn:756 standalone/drakvpn:849
-#, fuzzy, c-format
-msgid "real file"
-msgstr "Изберете файл"
-
-#: standalone/drakvpn:779
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your racoon.conf file.\n"
-"\n"
-"You can now choose the remote settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:796
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your %s file.\n"
-"\n"
-"You can now choose the sainfo settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:813
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here in the list below the one you want\n"
-"to edit and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:824
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"\n"
-"You can now edit the remote section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:833
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the sainfo section entries.\n"
-"\n"
-"Choose continue when you are done to write the data."
-msgstr ""
-
-#: standalone/drakvpn:841
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow these path\n"
-"sections.\n"
-"\n"
-"You can now edit the path entries.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:848
-#, c-format
-msgid "path_type"
-msgstr ""
-
-#: standalone/drakvpn:889
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"\n"
-"You may now share resources through the Internet,\n"
-"in a secure way, using a VPN connection.\n"
-"\n"
-"You should make sure that that the tunnels shorewall\n"
-"section is configured."
-msgstr ""
-
-#: standalone/drakvpn:909
-#, c-format
-msgid "Sainfo source address"
-msgstr ""
-
-#: standalone/drakvpn:910
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 is the source address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 is the source address"
-msgstr ""
-
-#: standalone/drakvpn:927
-#, fuzzy, c-format
-msgid "Sainfo source protocol"
-msgstr "Европейски протокол"
-
-#: standalone/drakvpn:928
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe first 'any' allows any protocol for the source"
-msgstr ""
-
-#: standalone/drakvpn:942
-#, c-format
-msgid "Sainfo destination address"
-msgstr ""
-
-#: standalone/drakvpn:943
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 is the destination address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 is the destination address"
-msgstr ""
-
-#: standalone/drakvpn:960
-#, c-format
-msgid "Sainfo destination protocol"
-msgstr ""
-
-#: standalone/drakvpn:961
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe last 'any' allows any protocol for the destination"
-msgstr ""
-
-#: standalone/drakvpn:975
-#, c-format
-msgid "PFS group"
-msgstr ""
-
-#: standalone/drakvpn:977
-#, c-format
-msgid ""
-"define the group of Diffie-Hellman exponentiations.\n"
-"If you do not require PFS then you can omit this directive.\n"
-"Any proposal will be accepted if you do not specify one.\n"
-"group is one of the following: modp768, modp1024, modp1536.\n"
-"Or you can define 1, 2, or 5 as the DH group number."
-msgstr ""
-
-#: standalone/drakvpn:982
-#, fuzzy, c-format
-msgid "Lifetime number"
-msgstr "номер"
-
-#: standalone/drakvpn:983
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-msgstr ""
-
-#: standalone/drakvpn:999
-#, c-format
-msgid "Lifetime unit"
-msgstr ""
-
-#: standalone/drakvpn:1001
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
-"'hour'.\n"
-msgstr ""
-
-#: standalone/drakvpn:1019
-#, fuzzy, c-format
-msgid "Authentication algorithm"
-msgstr "идентификация"
-
-#: standalone/drakvpn:1021
-#, c-format
-msgid "Compression algorithm"
-msgstr ""
-
-#: standalone/drakvpn:1022
-#, fuzzy, c-format
-msgid "deflate"
-msgstr "по подрабиране"
-
-#: standalone/drakvpn:1029
-#, c-format
-msgid "Remote"
-msgstr "Отдалечен"
-
-#: standalone/drakvpn:1030
-#, c-format
-msgid ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specifies the parameters for IKE phase 1 for each remote node.\n"
-"The default port is 500. If anonymous is specified, the state-\n"
-"ments apply to all peers which do not match any other remote\n"
-"directive.\n"
-"\n"
-"Examples: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-msgstr ""
-
-#: standalone/drakvpn:1038
-#, fuzzy, c-format
-msgid "Exchange mode"
-msgstr "Режим на набиране"
-
-#: standalone/drakvpn:1040
-#, c-format
-msgid ""
-"defines the exchange mode for phase 1 when racoon is the\n"
-"initiator. Also it means the acceptable exchange mode\n"
-"when racoon is responder. More than one mode can be\n"
-"specified by separating them with a comma. All of the\n"
-"modes are acceptable. The first exchange mode is what\n"
-"racoon uses when it is the initiator.\n"
-msgstr ""
-
-#: standalone/drakvpn:1046
-#, fuzzy, c-format
-msgid "Generate policy"
-msgstr "Сигурност"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "off"
-msgstr "изключено"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "on"
-msgstr "включено"
-
-#: standalone/drakvpn:1048
-#, c-format
-msgid ""
-"This directive is for the responder. Therefore you\n"
-"should set passive on in order that racoon(8) only\n"
-"becomes a responder. If the responder does not have any\n"
-"policy in SPD during phase 2 negotiation, and the direc-\n"
-"tive is set on, then racoon(8) will choice the first pro-\n"
-"posal in the SA payload from the initiator, and generate\n"
-"policy entries from the proposal. It is useful to nego-\n"
-"tiate with the client which is allocated IP address\n"
-"dynamically. Note that inappropriate policy might be\n"
-"installed into the responder's SPD by the initiator. So\n"
-"that other communication might fail if such policies\n"
-"installed due to some policy mismatches between the ini-\n"
-"tiator and the responder. This directive is ignored in\n"
-"the initiator case. The default value is off."
-msgstr ""
-
-#: standalone/drakvpn:1062
-#, c-format
-msgid "Passive"
-msgstr "Страдателен залог"
-
-#: standalone/drakvpn:1064
-#, c-format
-msgid ""
-"If you do not want to initiate the negotiation, set this\n"
-"to on. The default value is off. It is useful for a\n"
-"server."
-msgstr ""
-
-#: standalone/drakvpn:1067
-#, c-format
-msgid "Certificate type"
-msgstr ""
-
-#: standalone/drakvpn:1069
-#, fuzzy, c-format
-msgid "My certfile"
-msgstr "Изберете файл"
-
-#: standalone/drakvpn:1070
-#, fuzzy, c-format
-msgid "Name of the certificate"
-msgstr "Име на принтер"
-
-#: standalone/drakvpn:1071
-#, c-format
-msgid "My private key"
-msgstr ""
-
-#: standalone/drakvpn:1072
-#, fuzzy, c-format
-msgid "Name of the private key"
-msgstr "Име на принтер"
-
-#: standalone/drakvpn:1073
-#, fuzzy, c-format
-msgid "Peers certfile"
-msgstr "Изберете файл"
-
-#: standalone/drakvpn:1074
-#, c-format
-msgid "Name of the peers certificate"
-msgstr ""
-
-#: standalone/drakvpn:1075
-#, fuzzy, c-format
-msgid "Verify cert"
-msgstr "много добър"
-
-#: standalone/drakvpn:1077
-#, c-format
-msgid ""
-"If you do not want to verify the peer's certificate for\n"
-"some reason, set this to off. The default is on."
-msgstr ""
-
-#: standalone/drakvpn:1079
-#, c-format
-msgid "My identifier"
-msgstr ""
-
-#: standalone/drakvpn:1080
-#, c-format
-msgid ""
-"specifies the identifier sent to the remote host and the\n"
-"type to use in the phase 1 negotiation. address, FQDN,\n"
-"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
-"they are used like:\n"
-"\tmy_identifier address [address];\n"
-"\t\tthe type is the IP address. This is the default\n"
-"\t\ttype if you do not specify an identifier to use.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tthe type is a USER_FQDN (user fully-qualified\n"
-"\t\tdomain name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tthe type is a FQDN (fully-qualified domain name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tthe type is a KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tthe type is an ASN.1 distinguished name. If\n"
-"\t\tstring is omitted, racoon(8) will get DN from\n"
-"\t\tSubject field in the certificate.\n"
-"\n"
-"Examples: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-msgstr ""
-
-#: standalone/drakvpn:1100
-#, fuzzy, c-format
-msgid "Peers identifier"
-msgstr "Принтер"
-
-#: standalone/drakvpn:1101
-#, fuzzy, c-format
-msgid "Proposal"
-msgstr "Протокол"
-
-#: standalone/drakvpn:1103
-#, c-format
-msgid ""
-"specify the encryption algorithm used for the\n"
-"phase 1 negotiation. This directive must be defined. \n"
-"algorithm is one of the following: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For other transforms, this statement should not be used."
-msgstr ""
-
-#: standalone/drakvpn:1110
-#, c-format
-msgid "Hash algorithm"
-msgstr ""
-
-#: standalone/drakvpn:1112
-#, fuzzy, c-format
-msgid "DH group"
-msgstr "Група"
-
-#: standalone/drakvpn:1119
-#, c-format
-msgid "Command"
-msgstr "Команда"
-
-#: standalone/drakvpn:1120
-#, c-format
-msgid "Source IP range"
-msgstr ""
-
-#: standalone/drakvpn:1121
-#, c-format
-msgid "Destination IP range"
-msgstr ""
-
-#: standalone/drakvpn:1122
-#, fuzzy, c-format
-msgid "Upper-layer protocol"
-msgstr "Европейски протокол"
-
-#: standalone/drakvpn:1122 standalone/drakvpn:1129
-#, fuzzy, c-format
-msgid "any"
-msgstr "Ден"
-
-#: standalone/drakvpn:1124
-#, c-format
-msgid "Flag"
-msgstr "Flag"
-
-#: standalone/drakvpn:1125
-#, c-format
-msgid "Direction"
-msgstr "Посока"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "IPsec policy"
-msgstr ""
-
-#: standalone/drakvpn:1126
-#, fuzzy, c-format
-msgid "ipsec"
-msgstr "Мсек"
-
-#: standalone/drakvpn:1126
-#, fuzzy, c-format
-msgid "discard"
-msgstr "изключен"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "Mode"
-msgstr "Режим"
-
-#: standalone/drakvpn:1129
-#, fuzzy, c-format
-msgid "tunnel"
-msgstr "Канал"
-
-#: standalone/drakvpn:1129
-#, fuzzy, c-format
-msgid "transport"
-msgstr "прехвърлени"
-
-#: standalone/drakvpn:1131
-#, fuzzy, c-format
-msgid "Source/destination"
-msgstr "Работна станция"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "require"
-msgstr ""
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "default"
-msgstr "по подрабиране"
-
-#: standalone/drakvpn:1132
-#, fuzzy, c-format
-msgid "use"
-msgstr "Мишка"
-
-#: standalone/drakvpn:1132
-#, fuzzy, c-format
-msgid "unique"
-msgstr "Мартиника"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (broadcast)"
-msgstr ""
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable)"
-msgstr ""
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "Canada (cable)"
-msgstr "Канада (кабел)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (broadcast)"
-msgstr ""
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (cable)"
-msgstr ""
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "China (broadcast)"
-msgstr ""
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "West Europe"
-msgstr "Западна Европа"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "East Europe"
-msgstr "Източна Европа"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "France [SECAM]"
-msgstr "Франция [SECAM]"
-
-#: standalone/drakxtv:48
-#, c-format
-msgid "Newzealand"
-msgstr ""
-
-#: standalone/drakxtv:51
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr ""
-
-#: standalone/drakxtv:85
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: standalone/drakxtv:87
-#, c-format
-msgid "TV norm:"
-msgstr "ТВ норма:"
-
-#: standalone/drakxtv:88
-#, c-format
-msgid "Area:"
-msgstr ""
-
-#: standalone/drakxtv:93
-#, c-format
-msgid "Scanning for TV channels in progress..."
-msgstr ""
-
-#: standalone/drakxtv:103
-#, c-format
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: standalone/drakxtv:107
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Появи се грешка при сканиране за TV канали"
-
-#: standalone/drakxtv:110
-#, c-format
-msgid "Have a nice day!"
-msgstr ""
-
-#: standalone/drakxtv:111
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr ""
-
-#: standalone/drakxtv:149
-#, c-format
-msgid "No TV Card detected!"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakxtv:151
-#, c-format
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-
-#: standalone/finish-install:42 standalone/keyboarddrake:30
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Моля, изберете подреждане на клавиатурата."
-
-#: standalone/harddrake2:25
-#, c-format
-msgid "Alternative drivers"
-msgstr "Алтернативни драйвери"
-
-#: standalone/harddrake2:26
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "списък на алтернативни драйвери за тази карта"
-
-#: standalone/harddrake2:29
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-"това е физическата шина на който е закачено устроството (напр: PCI, USB, ...)"
-
-#: standalone/harddrake2:31 standalone/harddrake2:146
-#, c-format
-msgid "Bus identification"
-msgstr "Идентификация на шина"
-
-#: standalone/harddrake2:32
-#, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
-msgstr ""
-
-#: standalone/harddrake2:35
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "Drive capacity"
-msgstr ""
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
-
-#: standalone/harddrake2:39
-#, c-format
-msgid "this field describes the device"
-msgstr "Това поле описва устройството"
-
-#: standalone/harddrake2:40
-#, c-format
-msgid "Old device file"
-msgstr "Стар файл на устроство"
-
-#: standalone/harddrake2:41
-#, c-format
-msgid "old static device name used in dev package"
-msgstr ""
-
-#: standalone/harddrake2:42
-#, c-format
-msgid "New devfs device"
-msgstr "Ново devfs устройство"
-
-#: standalone/harddrake2:43
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "ново динамично устройство генерирано от ядрото devfs"
-
-#. -PO: here "module" is the "jargon term" for a kernel driver
-#: standalone/harddrake2:46
-#, c-format
-msgid "Module"
-msgstr "Модул"
-
-#: standalone/harddrake2:46
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "модулът на ГНУ/Линукс ядрото се грижи за това устройство"
-
-#: standalone/harddrake2:47
-#, fuzzy, c-format
-msgid "Extended partitions"
-msgstr "Създай нов дял"
-
-#: standalone/harddrake2:47
-#, fuzzy, c-format
-msgid "the number of extended partitions"
-msgstr "номерът на процесора"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Geometry"
-msgstr "Геометрия"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Cylinder/head/sectors geometry of the disk"
-msgstr ""
-
-#: standalone/harddrake2:49
-#, fuzzy, c-format
-msgid "Disk controller"
-msgstr "SMBus контролери"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "the disk controller on the host side"
-msgstr ""
-
-#: standalone/harddrake2:50
-#, c-format
-msgid "class of hardware device"
-msgstr "клас хардуерно устройство"
-
-#: standalone/harddrake2:51 standalone/harddrake2:83
-#: standalone/printerdrake:224
-#, c-format
-msgid "Model"
-msgstr "Модел"
-
-#: standalone/harddrake2:51
-#, c-format
-msgid "hard disk model"
-msgstr "модел на твърд диск"
-
-#: standalone/harddrake2:52
-#, c-format
-msgid "network printer port"
-msgstr "порт на мрежов принтер "
-
-#: standalone/harddrake2:53
-#, fuzzy, c-format
-msgid "Primary partitions"
-msgstr "Форматиране на дялове"
-
-#: standalone/harddrake2:53
-#, fuzzy, c-format
-msgid "the number of the primary partitions"
-msgstr "номерът на процесора"
-
-#: standalone/harddrake2:54
-#, c-format
-msgid "the vendor name of the device"
-msgstr "името на производителя на устройството"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "Bus PCI #"
-msgstr ""
-
-#: standalone/harddrake2:55
-#, fuzzy, c-format
-msgid "the PCI bus on which the device is plugged"
-msgstr ""
-"това е физическата шина на който е закачено устроството (напр: PCI, USB, ...)"
-
-#: standalone/harddrake2:56
-#, fuzzy, c-format
-msgid "PCI device #"
-msgstr "Услуги"
-
-#: standalone/harddrake2:56
-#, fuzzy, c-format
-msgid "PCI device number"
-msgstr "номер"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function #"
-msgstr ""
-
-#: standalone/harddrake2:57
-#, fuzzy, c-format
-msgid "PCI function number"
-msgstr "Име на връзката"
-
-#: standalone/harddrake2:58
-#, fuzzy, c-format
-msgid "Vendor ID"
-msgstr "Производител"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "this is the standard numerical identifier of the vendor"
-msgstr ""
-
-#: standalone/harddrake2:59
-#, fuzzy, c-format
-msgid "Device ID"
-msgstr "Устройство: "
-
-#: standalone/harddrake2:59
-#, fuzzy, c-format
-msgid "this is the numerical identifier of the device"
-msgstr "името на производителя на устройството"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "Sub vendor ID"
-msgstr ""
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "this is the minor numerical identifier of the vendor"
-msgstr ""
-
-#: standalone/harddrake2:61
-#, fuzzy, c-format
-msgid "Sub device ID"
-msgstr "Услуги"
-
-#: standalone/harddrake2:61
-#, fuzzy, c-format
-msgid "this is the minor numerical identifier of the device"
-msgstr "името на производителя на устройството"
-
-#: standalone/harddrake2:62
-#, fuzzy, c-format
-msgid "Device USB ID"
-msgstr "Устройство: "
-
-#: standalone/harddrake2:62
-#, c-format
-msgid ".."
-msgstr ""
-
-#: standalone/harddrake2:66
-#, c-format
-msgid "Bogomips"
-msgstr "Богомипс"
-
-#: standalone/harddrake2:66
-#, c-format
-msgid ""
-"the GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
-msgstr ""
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "Cache size"
-msgstr "Размер на кеш"
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "Размер на вторичен кеш на cpu"
-
-#. -PO: here "comas" is the medical coma, not the lexical coma!!
-#: standalone/harddrake2:70
-#, c-format
-msgid "Coma bug"
-msgstr ""
-
-#: standalone/harddrake2:70
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr ""
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "Cpuid family"
-msgstr ""
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "фамилия cpu (напр: 6 за i686 клас)"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "Cpuid level"
-msgstr "Cpuid ниво"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr ""
-"информационно ниво, което може да бъде получено чрез инструкцията cpuid"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Честорта (MHz)"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr "Честота на процесора в Mhz"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "Flags"
-msgstr "Флагове"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "Флагове на CPU съобщени от ядрото"
-
-#: standalone/harddrake2:75
-#, c-format
-msgid "Fdiv bug"
-msgstr ""
-
-#: standalone/harddrake2:76
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "Is FPU present"
-msgstr ""
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr ""
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr ""
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "F00f bug"
-msgstr ""
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
-"предишните чипове на пентиум бяха бъгваи и забиваха при декодиране на F00F "
-"кода"
-
-#: standalone/harddrake2:80
-#, c-format
-msgid "Halt bug"
-msgstr ""
-
-#: standalone/harddrake2:81
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
-
-#: standalone/harddrake2:82
-#, c-format
-msgid "sub generation of the cpu"
-msgstr ""
-
-#: standalone/harddrake2:83
-#, c-format
-msgid "generation of the cpu (eg: 8 for Pentium III, ...)"
-msgstr "Поколение на процесора (напр: 8 за Pentium III, ...)"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "Model name"
-msgstr "Име на модел"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "името на производителя на процесора"
-
-#: standalone/harddrake2:85
-#, c-format
-msgid "the name of the CPU"
-msgstr "име на процесора"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "Processor ID"
-msgstr "Процесор ID"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "the number of the processor"
-msgstr "номерът на процесора"
-
-#: standalone/harddrake2:87
-#, fuzzy, c-format
-msgid "Model stepping"
-msgstr "Форматиране"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr ""
-
-#: standalone/harddrake2:88
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "името на производителя на процесора"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid "Write protection"
-msgstr "Защита от запис"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid ""
-"the WP flag in the CR0 register of the cpu enforce write protection at the "
-"memory page level, thus enabling the processor to prevent unchecked kernel "
-"accesses to user memory (aka this is a bug guard)"
-msgstr ""
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "Floppy format"
-msgstr "Форматира флопи"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr ""
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "Channel"
-msgstr "Канал"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "EIDE/SCSI канал"
-
-#: standalone/harddrake2:98
-#, fuzzy, c-format
-msgid "Disk identifier"
-msgstr "Принтер"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "usually the disk serial number"
-msgstr ""
-
-#: standalone/harddrake2:99
-#, fuzzy, c-format
-msgid "Logical unit number"
-msgstr "Име на logical volume"
-
-#: standalone/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 ""
-
-#. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...)
-#: standalone/harddrake2:106
-#, fuzzy, c-format
-msgid "Installed size"
-msgstr "Инсталиране на системата"
-
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:107
-#, fuzzy, c-format
-msgid "Enabled Size"
-msgstr "включи"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled size of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:108
-#, fuzzy, c-format
-msgid "type of the memory device"
-msgstr "името на производителя на устройството"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed"
-msgstr "Скорост"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:110
-#, fuzzy, c-format
-msgid "Bank connections"
-msgstr "Кабелна връзка"
-
-#: standalone/harddrake2:111
-#, c-format
-msgid "Socket designation of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:115
-#, fuzzy, c-format
-msgid "Device file"
-msgstr "Стар файл на устроство"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid ""
-"the device file used to communicate with the kernel driver for the mouse"
-msgstr ""
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "Emulated wheel"
-msgstr ""
-
-#: standalone/harddrake2:116
-#, fuzzy, c-format
-msgid "whether the wheel is emulated or not"
-msgstr "3 бутона с емулация на колелце"
-
-#: standalone/harddrake2:117
-#, fuzzy, c-format
-msgid "the type of the mouse"
-msgstr "Моля, пробвайте мишката си"
-
-#: standalone/harddrake2:118
-#, fuzzy, c-format
-msgid "the name of the mouse"
-msgstr "име на процесора"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "Number of buttons"
-msgstr "Брой бутони"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "брой бутони на мишката"
-
-#: standalone/harddrake2:120
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "Моля, изберете типа на шината към която е свързана мишката ви."
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "Mouse protocol used by X11"
-msgstr ""
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "the protocol that the graphical desktop use with the mouse"
-msgstr ""
-
-#: standalone/harddrake2:128 standalone/harddrake2:137
-#: standalone/harddrake2:144 standalone/harddrake2:152
-#: standalone/harddrake2:341
-#, c-format
-msgid "Identification"
-msgstr "Идентификация"
-
-#: standalone/harddrake2:129 standalone/harddrake2:145
-#, c-format
-msgid "Connection"
-msgstr "Връзка"
-
-#: standalone/harddrake2:138
-#, fuzzy, c-format
-msgid "Performances"
-msgstr "Настройки"
-
-#: standalone/harddrake2:139
-#, fuzzy, c-format
-msgid "Bugs"
-msgstr "Шина"
-
-#: standalone/harddrake2:140
-#, c-format
-msgid "FPU"
-msgstr ""
-
-#: standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Устройство"
-
-#: standalone/harddrake2:148
-#, c-format
-msgid "Partitions"
-msgstr "Дялове"
-
-#: standalone/harddrake2:153
-#, c-format
-msgid "Features"
-msgstr "Особености"
-
-#. -PO: please keep all "/" characters !!!
-#: standalone/harddrake2:176 standalone/logdrake:76
-#: standalone/printerdrake:146 standalone/printerdrake:159
-#: standalone/printerdrake:171
-#, c-format
-msgid "/_Options"
-msgstr "/_Опции"
-
-#: standalone/harddrake2:177 standalone/harddrake2:202 standalone/logdrake:78
-#: standalone/printerdrake:172 standalone/printerdrake:174
-#: standalone/printerdrake:177 standalone/printerdrake:179
-#, c-format
-msgid "/_Help"
-msgstr "/_Помощ"
-
-#: standalone/harddrake2:181
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Автоматично открива _принтери"
-
-#: standalone/harddrake2:182
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Автоматично открива _модеми"
-
-#: standalone/harddrake2:183
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Автоматично открива _jaz устройства"
-
-#: standalone/harddrake2:184
-#, c-format
-msgid "/Autodetect parallel _zip drives"
-msgstr ""
-
-#: standalone/harddrake2:191 standalone/printerdrake:152
-#, c-format
-msgid "/_Quit"
-msgstr "/_Излиза"
-
-#: standalone/harddrake2:204
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Полета описание"
-
-#: standalone/harddrake2:206
-#, c-format
-msgid "Harddrake help"
-msgstr "Harddrake помощ"
-
-#: standalone/harddrake2:215
-#, 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 ""
-
-#: standalone/harddrake2:221 standalone/printerdrake:177
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Информирай за бъг"
-
-#: standalone/harddrake2:223 standalone/printerdrake:179
-#, c-format
-msgid "/_About..."
-msgstr "/_Относно..."
-
-#: standalone/harddrake2:224
-#, c-format
-msgid "About Harddrake"
-msgstr "Относно Harddrake"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/harddrake2:226
-#, c-format
-msgid ""
-"This is HardDrake, a %s hardware configuration tool.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-msgstr ""
-"Това е HardDrake, хардуерен конфигурационен инструмент на %s.\n"
-"<span foreground=\"royalblue3\">Версия:</span> %s\n"
-"<span foreground=\"royalblue3\">Автор:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-
-#: standalone/harddrake2:242
-#, fuzzy, c-format
-msgid "Harddrake2"
-msgstr "ХардДрейк"
-
-#: standalone/harddrake2:272
-#, c-format
-msgid "Detected hardware"
-msgstr "Открит хардуер"
-
-#: standalone/harddrake2:277
-#, c-format
-msgid "Configure module"
-msgstr "Настройка на модул"
-
-#: standalone/harddrake2:284
-#, c-format
-msgid "Run config tool"
-msgstr "Изпълнява инструмент за конфигуриране"
-
-#: standalone/harddrake2:308
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
-
-#: standalone/harddrake2:329 standalone/printerdrake:306
-#: standalone/printerdrake:320
-#, c-format
-msgid "Unknown"
-msgstr "Неизвестен"
-
-#: standalone/harddrake2:349
-#, c-format
-msgid "Misc"
-msgstr "Разни"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "secondary"
-msgstr "втори"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "primary"
-msgstr "първи"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "burner"
-msgstr "записвачка"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "DVD"
-msgstr "DVD"
-
-#: standalone/harddrake2:511
-#, c-format
-msgid ""
-"The following devices needs proprietary drivers or firmwares in order to "
-"operate smoothly. The appropriate packages can be retrieved from the "
-"Mandriva Club. Do you want to subscribe to the Mandriva Club?"
-msgstr ""
-
-#: standalone/keyboarddrake:45
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Искате ли BackSpace да подава Delete на конзолата ?"
-
-#: standalone/localedrake:38
-#, c-format
-msgid "LocaleDrake"
-msgstr "ЛокаленДрейк"
-
-#: standalone/localedrake:44
-#, fuzzy, 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"
-#: standalone/localedrake:47 standalone/scannerdrake:135
-#, c-format
-msgid ", "
-msgstr ", "
-
-#: standalone/localedrake:55
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "Промените са запазени, но за да бъдат ефективни трябва да излезете"
-
-#: standalone/logdrake:49
-#, fuzzy, c-format
-msgid "Mandriva Linux Tools Logs"
-msgstr "Самостоятелни инструменти"
-
-#: standalone/logdrake:50
-#, c-format
-msgid "Logdrake"
-msgstr "логдрейк"
-
-#: standalone/logdrake:63
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Показва само за избраният ден"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "/File/_New"
-msgstr "/Файл/_Нов"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "/File/_Open"
-msgstr "/Файл/_Отвори"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "/File/_Save"
-msgstr "/Файл/_Запис"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
-
-#: standalone/logdrake:73
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Файл/Запис _като"
-
-#: standalone/logdrake:74
-#, c-format
-msgid "/File/-"
-msgstr "/Файл/-"
-
-#: standalone/logdrake:77
-#, c-format
-msgid "/Options/Test"
-msgstr "/Опции/Тест"
-
-#: standalone/logdrake:79
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Помощ/_Относно..."
-
-#: standalone/logdrake:108
-#, c-format
-msgid ""
-"_:this is the auth.log log file\n"
-"Authentication"
-msgstr ""
-
-#: standalone/logdrake:109
-#, c-format
-msgid ""
-"_:this is the user.log log file\n"
-"User"
-msgstr ""
-
-#: standalone/logdrake:110
-#, c-format
-msgid ""
-"_:this is the /var/log/messages log file\n"
-"Messages"
-msgstr ""
-
-#: standalone/logdrake:111
-#, c-format
-msgid ""
-"_:this is the /var/log/syslog log file\n"
-"Syslog"
-msgstr ""
-
-#: standalone/logdrake:115
-#, c-format
-msgid "search"
-msgstr "търси"
-
-#: standalone/logdrake:127
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Инструмент за преглеждане на вашите лог файлове"
-
-#: standalone/logdrake:128 standalone/net_applet:347 standalone/net_monitor:93
-#, c-format
-msgid "Settings"
-msgstr "Настройки"
-
-#: standalone/logdrake:133
-#, c-format
-msgid "Matching"
-msgstr "съвпадение"
-
-#: standalone/logdrake:134
-#, c-format
-msgid "but not matching"
-msgstr "но не съвпада"
-
-#: standalone/logdrake:138
-#, c-format
-msgid "Choose file"
-msgstr "Изберете файл"
-
-#: standalone/logdrake:150
-#, c-format
-msgid "Calendar"
-msgstr "Календар"
-
-#: standalone/logdrake:160
-#, c-format
-msgid "Content of the file"
-msgstr "Съдържание на файла"
-
-#: standalone/logdrake:164 standalone/logdrake:401
-#, c-format
-msgid "Mail alert"
-msgstr "Подредба на поща"
-
-#: standalone/logdrake:171
-#, c-format
-msgid "The alert wizard has failed unexpectedly:"
-msgstr ""
-
-#: standalone/logdrake:224
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "моля изчакайте, правя разбор на файл: %s"
-
-#: standalone/logdrake:379
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Apache World Wide Web Сървър"
-
-#: standalone/logdrake:380
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Domain Name Resolver"
-
-#: standalone/logdrake:381
-#, c-format
-msgid "Ftp Server"
-msgstr "Ftp Сървър"
-
-#: standalone/logdrake:382
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Postfix Пощенски сървър"
-
-#: standalone/logdrake:383
-#, c-format
-msgid "Samba Server"
-msgstr "Samba Сървър"
-
-#: standalone/logdrake:385
-#, c-format
-msgid "Webmin Service"
-msgstr "Webmin Обслужване"
-
-#: standalone/logdrake:386
-#, c-format
-msgid "Xinetd Service"
-msgstr "Xinetd обслужване"
-
-#: standalone/logdrake:395
-#, fuzzy, c-format
-msgid "Configure the mail alert system"
-msgstr "Промяна системата за печат"
-
-#: standalone/logdrake:396
-#, c-format
-msgid "Stop the mail alert system"
-msgstr ""
-
-#: standalone/logdrake:404
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Конфигурация за подредба на поща"
-
-#: standalone/logdrake:405
-#, 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"
-
-#: standalone/logdrake:415
-#, fuzzy, c-format
-msgid "Services settings"
-msgstr "установяване на обслужвания"
-
-#: standalone/logdrake:416
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr ""
-"Вие ще получите тревога ако едно от изброените обслужвания не се изпълнява "
-"повече"
-
-#: standalone/logdrake:423
-#, fuzzy, c-format
-msgid "Load setting"
-msgstr "установяване на натоварване"
-
-#: standalone/logdrake:424
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Вие ще получите тревога ако натоварването е по-високо от тази стойност"
-
-#: standalone/logdrake:425
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr ""
-
-#: standalone/logdrake:430
-#, fuzzy, c-format
-msgid "Alert configuration"
-msgstr "конфигурация на тревога"
-
-#: standalone/logdrake:431
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Моля, въведете долу вашият адрес на Ел. поща"
-
-#: standalone/logdrake:432
-#, c-format
-msgid "and enter the name (or the IP) of the SMTP server you wish to use"
-msgstr ""
-
-#: standalone/logdrake:451
-#, c-format
-msgid "The wizard successfully configured the mail alert."
-msgstr ""
-
-#: standalone/logdrake:457
-#, c-format
-msgid "The wizard successfully disabled the mail alert."
-msgstr ""
-
-#: standalone/logdrake:516
-#, c-format
-msgid "Save as.."
-msgstr "Запази като..."
-
-#: standalone/mousedrake:31
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Моля, изберете тип на мишката."
-
-#: standalone/mousedrake:44
-#, c-format
-msgid "Emulate third button?"
-msgstr "Да симулирам ли трети бутон ?"
-
-#: standalone/mousedrake:61
-#, c-format
-msgid "Mouse test"
-msgstr "Проверка на мишката"
-
-#: standalone/mousedrake:64
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Моля, пробвайте мишката си"
-
-#: standalone/net_applet:47
-#, fuzzy, c-format
-msgid "Network is up on interface %s"
-msgstr "Мрежов интерфейс"
-
-#. -PO: keep the "Configure Network" substring synced with the "Configure Network" message below
-#: standalone/net_applet:50
-#, fuzzy, c-format
-msgid "Network is down on interface %s. Click on \"Configure Network\""
-msgstr "Функционалността на мрежата не е настроена"
-
-#: standalone/net_applet:56 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Connect %s"
-msgstr "Свързва %s"
-
-#: standalone/net_applet:57 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Disconnect %s"
-msgstr "Разкачва %s"
-
-#: standalone/net_applet:58
-#, fuzzy, c-format
-msgid "Monitor Network"
-msgstr "Възстановява през мрежа"
-
-#: standalone/net_applet:60
-#, c-format
-msgid "Manage wireless networks"
-msgstr ""
-
-#: standalone/net_applet:61
-#, c-format
-msgid "Configure Network"
-msgstr "Конфигуриране на мрежа"
-
-#: standalone/net_applet:63
-#, fuzzy, c-format
-msgid "Watched interface"
-msgstr "Интерфейс"
-
-#: standalone/net_applet:93
-#, c-format
-msgid "Profiles"
-msgstr "Профили"
-
-#: standalone/net_applet:102
-#, c-format
-msgid "Get Online Help"
-msgstr ""
-
-#: standalone/net_applet:335
-#, c-format
-msgid "Interactive Firewall automatic mode"
-msgstr ""
-
-#: standalone/net_applet:340
-#, c-format
-msgid "Always launch on startup"
-msgstr "Винаги зареждай при стартиране"
-
-#: standalone/net_applet:344
-#, fuzzy, c-format
-msgid "Wireless networks"
-msgstr "Безжична връзка"
-
-#: standalone/net_applet:429
-#, fuzzy, c-format
-msgid "Interactive Firewall: intrusion detected"
-msgstr "Открита е настройка на Защитна Стена !"
-
-#: standalone/net_applet:442
-#, fuzzy, c-format
-msgid "What do you want to do with this attacker?"
-msgstr "Искате ли да завършите играта?"
-
-#: standalone/net_applet:445
-#, fuzzy, c-format
-msgid "Attack details"
-msgstr "Без подробности"
-
-#: standalone/net_applet:449
-#, fuzzy, c-format
-msgid "Attack time: %s"
-msgstr "Действие:%s"
-
-#: standalone/net_applet:450
-#, c-format
-msgid "Network interface: %s"
-msgstr "Мрежов интерфейс: %s"
-
-#: standalone/net_applet:451
-#, fuzzy, c-format
-msgid "Attack type: %s"
-msgstr "тип: %s"
-
-#: standalone/net_applet:452
-#, c-format
-msgid "Protocol: %s"
-msgstr "Протокол: %s"
-
-#: standalone/net_applet:453
-#, fuzzy, c-format
-msgid "Attacker IP address: %s"
-msgstr "Статичен IP адрес"
-
-#: standalone/net_applet:454
-#, fuzzy, c-format
-msgid "Attacker hostname: %s"
-msgstr "Установявам име на хост %s: "
-
-#: standalone/net_applet:457
-#, fuzzy, c-format
-msgid "Service attacked: %s"
-msgstr "_Тип услуга:"
-
-#: standalone/net_applet:458
-#, fuzzy, c-format
-msgid "Port attacked: %s"
-msgstr "Порт: %s"
-
-#: standalone/net_applet:460
-#, c-format
-msgid "Type of ICMP attack: %s"
-msgstr ""
-
-#: standalone/net_applet:465
-#, c-format
-msgid "Always blacklist (do not ask again)"
-msgstr ""
-
-#: standalone/net_monitor:57 standalone/net_monitor:62
-#, c-format
-msgid "Network Monitoring"
-msgstr "Мониторинг на мрежата"
-
-#: standalone/net_monitor:98
-#, fuzzy, c-format
-msgid "Global statistics"
-msgstr "Статистики"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Instantaneous"
-msgstr ""
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Average"
-msgstr "Средно"
-
-#: standalone/net_monitor:102
-#, fuzzy, c-format
-msgid ""
-"Sending\n"
-"speed:"
-msgstr "Скорост на изпращане:"
-
-#: standalone/net_monitor:103
-#, fuzzy, c-format
-msgid ""
-"Receiving\n"
-"speed:"
-msgstr "Скорост на получаване:"
-
-#: standalone/net_monitor:107
-#, fuzzy, c-format
-msgid ""
-"Connection\n"
-"time: "
-msgstr "Време на връзката: "
-
-#: standalone/net_monitor:114
-#, c-format
-msgid "Use same scale for received and transmitted"
-msgstr ""
-
-#: standalone/net_monitor:133
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Почакайте, пробвам вашата връзка..."
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Разкачвам от Интернет "
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Свързвам към Интернет"
-
-#: standalone/net_monitor:226
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Разкачването от Интернет е неуспешно"
-
-#: standalone/net_monitor:227
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Разкачването от Интернет е завършено"
-
-#: standalone/net_monitor:229
-#, c-format
-msgid "Connection complete."
-msgstr "Връзката е установена."
-
-#: standalone/net_monitor:230
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandriva Linux Control Center."
-msgstr ""
-"Връзката пропадна.\n"
-"Проверете си конфигурацията в Контролен център на Mandriva Linux."
-
-#: standalone/net_monitor:335
-#, c-format
-msgid "Color configuration"
-msgstr "Конфигурация на цвят"
-
-#: standalone/net_monitor:383 standalone/net_monitor:403
-#, c-format
-msgid "sent: "
-msgstr "изпраща: "
-
-#: standalone/net_monitor:390 standalone/net_monitor:407
-#, c-format
-msgid "received: "
-msgstr "получено: "
-
-#: standalone/net_monitor:397
-#, c-format
-msgid "average"
-msgstr "средно"
-
-#: standalone/net_monitor:400
-#, c-format
-msgid "Local measure"
-msgstr "Локално измерване"
-
-#: standalone/net_monitor:461
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: standalone/net_monitor:472
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "Настройка на Интернет връзка"
-
-#: standalone/printerdrake:76
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "Четене на информация от инсталираните принтери ..."
-
-#: standalone/printerdrake:128
-#, fuzzy, c-format
-msgid "%s Printer Management Tool"
-msgstr "Работа със сметки \n"
-
-#: standalone/printerdrake:142 standalone/printerdrake:143
-#: standalone/printerdrake:144 standalone/printerdrake:145
-#: standalone/printerdrake:153 standalone/printerdrake:154
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Actions"
-msgstr "/_Действия"
-
-#: standalone/printerdrake:142 standalone/printerdrake:154
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Добавяне на принтер"
-
-#: standalone/printerdrake:143
-#, c-format
-msgid "/Set as _Default"
-msgstr "/(По подразбиране)"
-
-#: standalone/printerdrake:144
-#, c-format
-msgid "/_Edit"
-msgstr "/_Промени"
-
-#: standalone/printerdrake:145
-#, c-format
-msgid "/_Delete"
-msgstr "/_Изтрий"
-
-#: standalone/printerdrake:146
-#, c-format
-msgid "/_Expert mode"
-msgstr "/_Разширени функиции"
-
-#: standalone/printerdrake:151
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Опресни"
-
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_Настройка на CUPS"
-
-#: standalone/printerdrake:171
-#, fuzzy, c-format
-msgid "/Configure _Auto Administration"
-msgstr "Отдалечена администрация"
-
-#: standalone/printerdrake:194
-#, c-format
-msgid "Search:"
-msgstr "Търси:"
-
-#: standalone/printerdrake:197
-#, c-format
-msgid "Apply filter"
-msgstr "Използва филтър"
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Def."
-msgstr ""
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Printer Name"
-msgstr "Име на принтер"
-
-#: standalone/printerdrake:224
-#, c-format
-msgid "Connection Type"
-msgstr "Тип на връзка"
-
-#: standalone/printerdrake:231
-#, c-format
-msgid "Server Name"
-msgstr "Име на сървър"
-
-#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add Printer"
-msgstr "Добавяне принтер"
-
-#: standalone/printerdrake:239
-#, fuzzy, c-format
-msgid "Add a new printer to the system"
-msgstr "Добавя потребител към системата"
-
-#. -PO: "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set as default"
-msgstr "Подразбиращ се избор"
-
-#: standalone/printerdrake:242
-#, fuzzy, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Определи този принтер за ползване по подразбиране"
-
-#: standalone/printerdrake:245
-#, fuzzy, c-format
-msgid "Edit selected printer"
-msgstr "Настройка на избрания сървър"
-
-#: standalone/printerdrake:248
-#, fuzzy, c-format
-msgid "Delete selected printer"
-msgstr "Изтрива избраното правило"
-
-#: standalone/printerdrake:251
-#, c-format
-msgid "Refresh the list"
-msgstr "Опресни списъка с потребителите"
-
-#. -PO: "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS"
-msgstr "Настройка на CUPS"
-
-#: standalone/printerdrake:254
-#, fuzzy, c-format
-msgid "Configure CUPS printing system"
-msgstr "Промяна системата за печат"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Enabled"
-msgstr "Разрешено"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Disabled"
-msgstr "Изключена"
-
-#: standalone/printerdrake:596
-#, c-format
-msgid "Authors: "
-msgstr "Автори:"
-
-#. -PO: here %s is the version number
-#: standalone/printerdrake:606
-#, fuzzy, c-format
-msgid "Printer Management %s"
-msgstr "Работа със сметки \n"
-
-#: standalone/scannerdrake:51
-#, fuzzy, c-format
-msgid ""
-"SANE packages need to be installed to use scanners.\n"
-"\n"
-"Do you want to install the SANE packages?"
-msgstr ""
-"Пакет %s трябва да бъде инсталиран\n"
-"Искате да го инсталирате?"
-
-#: standalone/scannerdrake:55
-#, fuzzy, c-format
-msgid "Aborting Scannerdrake."
-msgstr "Скенердрейк"
-
-#: standalone/scannerdrake:60
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-
-#: standalone/scannerdrake:61
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr ""
-
-#: standalone/scannerdrake:67 standalone/scannerdrake:508
-#, c-format
-msgid "Searching for configured scanners..."
-msgstr "Търсене на настроени скенери..."
-
-#: standalone/scannerdrake:71 standalone/scannerdrake:512
-#, c-format
-msgid "Searching for new scanners..."
-msgstr "Търсене на нови скенери ..."
-
-#: standalone/scannerdrake:79 standalone/scannerdrake:534
-#, c-format
-msgid "Re-generating list of configured scanners..."
-msgstr ""
-
-#: standalone/scannerdrake:101
-#, fuzzy, c-format
-msgid "The %s is not supported by this version of %s."
-msgstr "%s не се подържа от тази версия на Mandriva Linux."
-
-#: standalone/scannerdrake:104
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s намерено на %s, да конфигурирам автоматично?"
-
-#: standalone/scannerdrake:116
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr "%s не е в базата данни на скенера, да конфигурирам ръчно?"
-
-#: standalone/scannerdrake:131
-#, c-format
-msgid "Select a scanner model"
-msgstr "Изберете модел на скенера"
-
-#: standalone/scannerdrake:132
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: standalone/scannerdrake:133
-#, c-format
-msgid "Detected model: %s"
-msgstr "Засечен модел: %s"
-
-#: standalone/scannerdrake:136
-#, c-format
-msgid "Port: %s"
-msgstr "Порт: %s"
-
-#: standalone/scannerdrake:138 standalone/scannerdrake:141
-#, c-format
-msgid " (UNSUPPORTED)"
-msgstr ""
-
-#: standalone/scannerdrake:144
-#, fuzzy, c-format
-msgid "The %s is not supported under Linux."
-msgstr "%s не се подържа от тази версия на Mandriva Linux."
-
-#: standalone/scannerdrake:171 standalone/scannerdrake:185
-#, c-format
-msgid "Do not install firmware file"
-msgstr ""
-
-#: standalone/scannerdrake:175 standalone/scannerdrake:227
-#, c-format
-msgid ""
-"It is possible that your %s needs its firmware to be uploaded everytime when "
-"it is turned on."
-msgstr ""
-
-#: standalone/scannerdrake:176 standalone/scannerdrake:228
-#, c-format
-msgid "If this is the case, you can make this be done automatically."
-msgstr ""
-
-#: standalone/scannerdrake:177 standalone/scannerdrake:231
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware file for your scanner so that it "
-"can be installed."
-msgstr ""
-
-#: standalone/scannerdrake:178 standalone/scannerdrake:232
-#, 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 ""
-
-#: standalone/scannerdrake:180 standalone/scannerdrake:239
-#, c-format
-msgid "Install firmware file from"
-msgstr ""
-
-#: standalone/scannerdrake:200
-#, fuzzy, c-format
-msgid "Select firmware file"
-msgstr "Изберете файл"
-
-#: standalone/scannerdrake:203 standalone/scannerdrake:262
-#, c-format
-msgid "The firmware file %s does not exist or is unreadable!"
-msgstr ""
-
-#: standalone/scannerdrake:226
-#, c-format
-msgid ""
-"It is possible that your scanners need their firmware to be uploaded "
-"everytime when they are turned on."
-msgstr ""
-
-#: standalone/scannerdrake:230
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware files for your scanners so that it "
-"can be installed."
-msgstr ""
-
-#: standalone/scannerdrake:233
-#, 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 ""
-
-#: standalone/scannerdrake:235
-#, c-format
-msgid "Install firmware for the"
-msgstr ""
-
-#: standalone/scannerdrake:258
-#, fuzzy, c-format
-msgid "Select firmware file for the %s"
-msgstr "Изберете файл"
-
-#: standalone/scannerdrake:276
-#, fuzzy, c-format
-msgid "Could not install the firmware file for the %s!"
-msgstr "Изберете файл"
-
-#: standalone/scannerdrake:289
-#, c-format
-msgid "The firmware file for your %s was successfully installed."
-msgstr ""
-
-#: standalone/scannerdrake:299
-#, c-format
-msgid "The %s is unsupported"
-msgstr "%s не се подържа"
-
-#: standalone/scannerdrake:304
-#, c-format
-msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the %s Control Center in Hardware section."
-msgstr ""
-
-#: standalone/scannerdrake:322
-#, fuzzy, c-format
-msgid "Setting up kernel modules..."
-msgstr "Зареждам модул на ядроро за USB принтер..."
-
-#: standalone/scannerdrake:332 standalone/scannerdrake:339
-#: standalone/scannerdrake:369
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Автоматично засичане на портовете"
-
-#: standalone/scannerdrake:334 standalone/scannerdrake:380
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr ""
-
-#: standalone/scannerdrake:335
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr ""
-
-#: standalone/scannerdrake:337 standalone/scannerdrake:382
-#, c-format
-msgid "choose device"
-msgstr "избира устройство"
-
-#: standalone/scannerdrake:371
-#, c-format
-msgid "Searching for scanners..."
-msgstr "Търсене на скенери ..."
-
-#: standalone/scannerdrake:407 standalone/scannerdrake:414
-#, fuzzy, c-format
-msgid "Attention!"
-msgstr "Атракцион"
-
-#: standalone/scannerdrake:408
-#, 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 ""
-
-#: standalone/scannerdrake:409 standalone/scannerdrake:418
-#, c-format
-msgid ""
-"More info in the driver's manual page. Run the command \"man sane-%s\" to "
-"read it."
-msgstr ""
-
-#: standalone/scannerdrake:411 standalone/scannerdrake:420
-#, 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\" от менюто "
-"Мултимедия/Графики"
-
-#: standalone/scannerdrake:415
-#, c-format
-msgid ""
-"Your %s has been configured, but it is possible that additional manual "
-"adjustments are needed to get it to work. "
-msgstr ""
-
-#: standalone/scannerdrake:416
-#, 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 ""
-
-#: standalone/scannerdrake:417
-#, c-format
-msgid "edit the configuration file /etc/sane.d/%s.conf. "
-msgstr ""
-
-#: standalone/scannerdrake:423
-#, fuzzy, 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\" от менюто "
-"Мултимедия/Графики"
-
-#: standalone/scannerdrake:448
-#, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr ""
-"Имате следните скенери\n"
-"\n"
-"%s\n"
-"на вашата система\n"
-
-#: standalone/scannerdrake:449
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr ""
-"Следният скенер\n"
-"\n"
-"%s\n"
-"е на разположение на системата ви.\n"
-
-#: standalone/scannerdrake:452 standalone/scannerdrake:455
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr ""
-
-#: standalone/scannerdrake:469
-#, c-format
-msgid "Search for new scanners"
-msgstr "Търсене за нови скенери"
-
-#: standalone/scannerdrake:475
-#, c-format
-msgid "Add a scanner manually"
-msgstr ""
-
-#: standalone/scannerdrake:482
-#, fuzzy, c-format
-msgid "Install/Update firmware files"
-msgstr "Изберете файл"
-
-#: standalone/scannerdrake:488
-#, c-format
-msgid "Scanner sharing"
-msgstr "Споделяне на скенери"
-
-#: standalone/scannerdrake:547 standalone/scannerdrake:712
-#, c-format
-msgid "All remote machines"
-msgstr "Всички отдалечени машини"
-
-#: standalone/scannerdrake:559 standalone/scannerdrake:862
-#, c-format
-msgid "This machine"
-msgstr "Тази машина"
-
-#: standalone/scannerdrake:599
-#, 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 ""
-
-#: standalone/scannerdrake:600
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-
-#: standalone/scannerdrake:603
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr ""
-
-#: standalone/scannerdrake:605
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Поделяне на скенера за следните хостове:"
-
-#: standalone/scannerdrake:619
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr ""
-
-#: standalone/scannerdrake:622
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr ""
-
-#: standalone/scannerdrake:649 standalone/scannerdrake:721
-#: standalone/scannerdrake:871
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Споделяне на локални скенери"
-
-#: standalone/scannerdrake:650
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr ""
-
-#: standalone/scannerdrake:661 standalone/scannerdrake:811
-#, c-format
-msgid "Add host"
-msgstr "Добавяне на хост"
-
-#: standalone/scannerdrake:667 standalone/scannerdrake:817
-#, c-format
-msgid "Edit selected host"
-msgstr "Настройка на избрания хост"
-
-#: standalone/scannerdrake:676 standalone/scannerdrake:826
-#, c-format
-msgid "Remove selected host"
-msgstr "Изтриване на избрания адрес"
-
-#: standalone/scannerdrake:700 standalone/scannerdrake:708
-#: standalone/scannerdrake:713 standalone/scannerdrake:759
-#: standalone/scannerdrake:850 standalone/scannerdrake:858
-#: standalone/scannerdrake:863 standalone/scannerdrake:909
-#, c-format
-msgid "Name/IP address of host:"
-msgstr ""
-
-#: standalone/scannerdrake:722 standalone/scannerdrake:872
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr ""
-
-#: standalone/scannerdrake:733 standalone/scannerdrake:883
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Трябва да въведете име или IP адрес.\n"
-
-#: standalone/scannerdrake:744 standalone/scannerdrake:894
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr ""
+msgid "All servers"
+msgstr "Добавяне на сървър"
-#: standalone/scannerdrake:799
+#: timezone.pm:183
#, c-format
-msgid "Usage of remote scanners"
-msgstr "Използване на отдалечени скенери"
+msgid "Global"
+msgstr "Общи"
-#: standalone/scannerdrake:800
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr ""
-
-#: standalone/scannerdrake:957
+#: timezone.pm:186
#, fuzzy, 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 ""
-"Пакет %s трябва да бъде инсталиран\n"
-"Искате да го инсталирате?"
-
-#: standalone/scannerdrake:961 standalone/scannerdrake:965
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr ""
-
-#: standalone/service_harddrake:113
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr ""
-
-#: standalone/service_harddrake:114
-#, c-format
-msgid "- %s was removed\n"
-msgstr ""
+msgid "Africa"
+msgstr "Южна Африка"
-#: standalone/service_harddrake:117
+#: timezone.pm:187
#, fuzzy, c-format
-msgid "Some devices were added: %s\n"
-msgstr "Устройство на мишката: %s\n"
-
-#: standalone/service_harddrake:118
-#, c-format
-msgid "- %s was added\n"
-msgstr ""
-
-#: standalone/service_harddrake:235
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "Прогрес на хардуерна проба"
+msgid "Asia"
+msgstr "Австрия"
-#: standalone/service_harddrake_confirm:7
+#: timezone.pm:188
#, c-format
-msgid "Hardware changes in \"%s\" class (%s seconds to answer)"
+msgid "Europe"
msgstr ""
-#: standalone/service_harddrake_confirm:8
+#: timezone.pm:189
#, fuzzy, c-format
-msgid "Do you want to run the appropriate config tool?"
-msgstr "Искате ли да тествате настройките?"
-
-#: steps.pm:14
-#, c-format
-msgid "Language"
-msgstr "Избор на език"
-
-#: steps.pm:15
-#, c-format
-msgid "License"
-msgstr "Лиценз"
-
-#: steps.pm:16
-#, c-format
-msgid "Configure mouse"
-msgstr "Настройка на мишка"
-
-#: steps.pm:17
-#, c-format
-msgid "Hard drive detection"
-msgstr "Засичане на дисковете"
-
-#: steps.pm:18
-#, c-format
-msgid "Select installation class"
-msgstr "Избор на клас инсталация"
-
-#: steps.pm:19
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Избор на клавиатура"
-
-#: steps.pm:22
-#, c-format
-msgid "Format partitions"
-msgstr "Форматиране на дялове"
-
-#: steps.pm:23
-#, c-format
-msgid "Choose packages to install"
-msgstr "Пакети за инсталиране"
+msgid "North America"
+msgstr "Южна Африка"
-#: steps.pm:24
+#: timezone.pm:190
#, c-format
-msgid "Install system"
-msgstr "Инсталиране на системата"
+msgid "Oceania"
+msgstr "Океания"
-#: steps.pm:25
+#: timezone.pm:191
#, fuzzy, c-format
-msgid "Administrator password"
-msgstr "Въведете парола за root"
-
-#: steps.pm:26
-#, c-format
-msgid "Add a user"
-msgstr "Добавяне на потребител"
-
-#: steps.pm:27
-#, c-format
-msgid "Configure networking"
-msgstr "Настойка на мрежата"
-
-#: steps.pm:28
-#, c-format
-msgid "Install bootloader"
-msgstr "Инсталиране на bootloader"
-
-#: steps.pm:29
-#, c-format
-msgid "Configure X"
-msgstr "Настройка на Х"
+msgid "South America"
+msgstr "Южна Африка"
-#: steps.pm:31
+#: timezone.pm:200
#, c-format
-msgid "Configure services"
-msgstr "Настройка на услугите"
+msgid "Hong Kong"
+msgstr "Хонг Конг"
-#: steps.pm:32
+#: timezone.pm:237
#, c-format
-msgid "Install updates"
-msgstr "Инсталиране на обновления"
+msgid "Russian Federation"
+msgstr "Руска Федерация"
-#: steps.pm:33
+#: timezone.pm:245
#, c-format
-msgid "Exit install"
-msgstr "Изход от инсталационната програма"
+msgid "Yugoslavia"
+msgstr "Югославия"
-#: ugtk2.pm:899
+#: ugtk2.pm:788
#, c-format
msgid "Is this correct?"
msgstr "Всичко правилно ли е ?"
-#: ugtk2.pm:959
+#: ugtk2.pm:848
#, fuzzy, c-format
msgid "No file chosen"
msgstr "избор на файл"
-#: ugtk2.pm:961
+#: ugtk2.pm:850
#, fuzzy, c-format
msgid "You have chosen a file, not a directory"
msgstr "Трябва да изберете файл, а не директория.\n"
-#: ugtk2.pm:963
+#: ugtk2.pm:852
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr "Името \"/\" може да е само папка, а не ключ"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, fuzzy, c-format
msgid "No such directory"
msgstr "Не е директория"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, fuzzy, c-format
msgid "No such file"
msgstr "Не съществува файл \"%s\"\n"
-#: ugtk2.pm:1046
+#: ugtk2.pm:933
#, c-format
msgid "Expand Tree"
msgstr "Разшири дървото"
-#: ugtk2.pm:1047
+#: ugtk2.pm:934
#, c-format
msgid "Collapse Tree"
msgstr "Изчисти дървото"
-#: ugtk2.pm:1048
+#: ugtk2.pm:935
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "Превключване между нормално и сортиране по групи"
@@ -25035,1319 +6498,17 @@ msgstr ""
msgid "Installation failed"
msgstr "Инсталацията провалена"
-#~ msgid "Remove List"
-#~ msgstr "Изтрива списък"
-
-#~ msgid "Account:"
-#~ msgstr "Сметка:"
-
-#~ msgid "Hostname:"
-#~ msgstr "Име на хост:"
-
-#, fuzzy
-#~ msgid "Cancel setup"
-#~ msgstr "Отказ"
-
-#~ msgid "Configuration changed - restart clusternfs/dhcpd?"
-#~ msgstr "Настройката е променена - растартиране на clusternfs/dhcpd"
-
-#, fuzzy
-#~ msgid ""
-#~ "The following media have been found and will be used during install: %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do you have a supplementary installation media to configure?"
-#~ msgstr "Имате ли някакъв %s интерфейс?"
-
-#~ msgid "Unknown Model"
-#~ msgstr "Неизвестен Модел"
-
-#~ msgid "HPOJ"
-#~ msgstr "HPOJ"
-
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3000/3200/3300/4345 with scanner, DeskJet 450, "
-#~ "Sony IJP-V100), an HP PhotoSmart or an HP LaserJet 2200?"
-#~ msgstr ""
-#~ "Дали вашият принтер е многофункционално устройство от HP или Sony "
-#~ "(OfficeJet, PSC, LaserJet 1100/1200/1220/3000/3200/3300/4345 със скенер, "
-#~ "DeskJet 450, Sony IJP-V100), HP PhotoSmart или HP LaserJet 2200?"
-
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Инсталиране на mtools пакети..."
-
-#~ msgid "Scanning on your HP multi-function device"
-#~ msgstr "Сканиране на вашето HP многофункционално устройство"
-
-#~ msgid "Printing/Scanning/Photo Cards on \"%s\""
-#~ msgstr "Печатане/Сканиране/Фото картички на принтер \"%s\""
-
-#~ msgid "Printing/Scanning on \"%s\""
-#~ msgstr "Печатан/Сканиранее на \"%s\""
-
-#~ msgid "Printing/Photo Card Access on \"%s\""
-#~ msgstr "Печатане/Фото картен достъп на \"%s\""
-
-#~ msgid "http://www.mandrivalinux.com/en/errata.php3"
-#~ msgstr "http://www.mandrivalinux.com/en/errata.php3"
-
-#, fuzzy
-#~ msgid "Default Idmap "
-#~ msgstr "Подразбиращо се работно място"
-
-#~ msgid "Please wait, preparing installation..."
-#~ msgstr "Моля, изчакайте, подготвяне на инсталацията"
-
-#~ msgid "Installing package %s"
-#~ msgstr "Инсталиране на пакета %s"
-
-#~ msgid "Welcome to <b>Mandriva Linux</b>!"
-#~ msgstr "Добре дошли в <b>Mandriva Linux</b>!"
-
-#, fuzzy
-#~ msgid "<b>Open Source</b>"
-#~ msgstr "<b>Сървъри</b>"
-
-#, fuzzy
-#~ msgid "Welcome to the <b>world of open source</b>!"
-#~ msgstr "Добре дошли в света на Отвореният Изходен код"
-
-#, fuzzy
-#~ msgid "<b>Mandriva Products</b>"
-#~ msgstr "Контролен център на Mandriva Linux"
-
-#, fuzzy
-#~ msgid "<b>Choose your Favorite Desktop Environment</b>"
-#~ msgstr "Избор на криптиращ ключ за еашата файлова система"
-
-#, fuzzy
-#~ msgid "<b>Kontact</b>"
-#~ msgstr "<b>Мандрива Клуб</b>"
-
-#~ msgid "<b>Surf the Internet</b>"
-#~ msgstr "<b>Работа в Интернет</b>"
-
-#, fuzzy
-#~ msgid "\t* <b>Transfer</b> files with KBear."
-#~ msgstr "Пренос на файлове чрез FTP"
-
-#~ msgid "<b>Development Environments</b>"
-#~ msgstr "<b>Среди за разработка</b>"
-
-#, fuzzy
-#~ msgid "<b>Development Editors</b>"
-#~ msgstr "Разработка"
-
-#, fuzzy
-#~ msgid "<b>Development Languages</b>"
-#~ msgstr "Разработка"
-
-#~ msgid "\t\t* <b>C++</b>"
-#~ msgstr "\t\t* <b>C++</b>"
-
-#~ msgid "\t\t* <b>Java™</b>"
-#~ msgstr "\t\t* <b>Java™</b>"
-
-#, fuzzy
-#~ msgid "\t* Scripting languages:"
-#~ msgstr "Диспечер на печата "
-
-#~ msgid "\t\t* <b>Perl</b>"
-#~ msgstr "\t\t* <b>Perl</b>"
-
-#~ msgid "\t\t* <b>Python</b>"
-#~ msgstr "\t\t* <b>Питон</b>"
-
-#, fuzzy
-#~ msgid "<b>Development Tools</b>"
-#~ msgstr "Разработка"
-
-#, fuzzy
-#~ msgid "<b>Groupware Server</b>"
-#~ msgstr "<b>Сървъри</b>"
-
-#~ msgid "<b>Servers</b>"
-#~ msgstr "<b>Сървъри</b>"
-
-#, fuzzy
-#~ msgid "\t* <b>Apache</b>: The most widely used web server."
-#~ msgstr "Apache World Wide Web Сървър"
-
-#~ msgid "<b>Mandriva Linux Control Center</b>"
-#~ msgstr "<b>Контролен център на Mandriva Linux</b>"
-
-#, fuzzy
-#~ msgid "<b>Online Store</b>"
-#~ msgstr "Контролен център на Mandriva Linux"
-
-#~ msgid "<b>Mandriva Club</b>"
-#~ msgstr "<b>Мандрива Клуб</b>"
-
-#~ msgid "<b>Mandriva Online</b>"
-#~ msgstr "<b>Mandriva Online</b>"
-
-#~ msgid "<b>Mandriva Expert</b>"
-#~ msgstr "<b>Мандрива Експерт</b>"
-
-#~ msgid "Network:"
-#~ msgstr "Мрежа:"
-
-#~ msgid "IP:"
-#~ msgstr "Адрес:"
-
-#~ msgid "Mode:"
-#~ msgstr "Режим:"
-
-#~ msgid "Encryption:"
-#~ msgstr "Криптиране:"
-
-#~ msgid "Rescan"
-#~ msgstr "Претърсване"
-
-#~ msgid "Status"
-#~ msgstr "Състояние"
-
-#~ msgid "Disconnect"
-#~ msgstr "Разкачване"
-
-#~ msgid ""
-#~ "x coordinate of text box\n"
-#~ "in number of characters"
-#~ msgstr ""
-#~ "x координати на текстовата рамка\n"
-#~ "в брой символи"
-
-#~ msgid ""
-#~ "y coordinate of text box\n"
-#~ "in number of characters"
-#~ msgstr ""
-#~ "y координати на текстовата рамка\n"
-#~ "в брой символи"
-
-#~ msgid "text width"
-#~ msgstr "ширина на текст"
-
-#~ msgid "ProgressBar color selection"
-#~ msgstr "Избор на цвят за лентата на прогрес"
-
-#~ msgid "Connect to the Internet"
-#~ msgstr "Свържи се към Интернет"
-
-#~ msgid ""
-#~ "The most common way to connect with adsl is pppoe.\n"
-#~ "Some connections use PPTP, a few use DHCP.\n"
-#~ "If you do not know, choose 'use PPPoE'"
-#~ msgstr ""
-#~ "Най-честия начин за свързване чрез ADSL е PPPOE.\n"
-#~ "Някои връзки използват PPTP, а малко използват DHCP.\n"
-#~ "Ако не знаете, изберете 'използвай PPPOE'."
-
-#~ msgid "Do not print any test page"
-#~ msgstr "Не печати никаква тестова страница"
-
-#~ msgid "Printer on SMB/Windows 95/98/NT server"
-#~ msgstr "Принтер на SMB/Windows 95/98/NT сървър"
-
-#, fuzzy
-#~ msgid "Found printer on %s..."
-#~ msgstr "Изтриване на принтер \"%s\"..."
-
-#~ msgid "dhcpd Config..."
-#~ msgstr "Настройка на dhcpd..."
-
-#, fuzzy
-#~ msgid "Unable to select wireless network: %s"
-#~ msgstr "Не мога да се свръжа с огледален сървър' %s"
-
-#, fuzzy
-#~ msgid "Interactive intrusion detection"
-#~ msgstr "NetRanger - система за откриване на смущения"
-
-#, fuzzy
-#~ msgid "Active Firewall: intrusion detected"
-#~ msgstr "Открита е настройка на Защитна Стена !"
-
-#, fuzzy
-#~ msgid "Do you want to blacklist the attacker?"
-#~ msgstr "Искате ли да завършите играта?"
-
-#~ msgid "Grub"
-#~ msgstr "Grub"
-
-#~ msgid "Local Network adress"
-#~ msgstr "Адрес на Локална мрежа"
-
-#~ msgid "Configuring scripts, installing software, starting servers..."
-#~ msgstr ""
-#~ "Настройващи скриптове, инсталиране на софтуер, стартиране на сървъри..."
-
-#~ msgid "drakfloppy"
-#~ msgstr "drakfloppy"
-
-#~ msgid "Boot disk creation"
-#~ msgstr "Създаване на стартираща дискета"
-
-#~ msgid "General"
-#~ msgstr "Основно"
-
-#~ msgid "Kernel version"
-#~ msgstr "Версия на ядрото"
-
-#~ msgid "Preferences"
-#~ msgstr "Настройки"
-
-#~ msgid "Advanced preferences"
-#~ msgstr "Допълнителни опции"
-
-#~ msgid "Size"
-#~ msgstr "Големина"
-
-#, fuzzy
-#~ msgid "Mkinitrd optional arguments"
-#~ msgstr "mkinitrd допълнителни аргументи"
-
-#~ msgid "force"
-#~ msgstr "принудително"
-
-#~ msgid "omit raid modules"
-#~ msgstr "без raid модули"
-
-#~ msgid "if needed"
-#~ msgstr "ако е нужно"
-
-#~ msgid "omit scsi modules"
-#~ msgstr "без scsi модули"
-
-#~ msgid "Add a module"
-#~ msgstr "Добави модула"
-
-#~ msgid "Remove a module"
-#~ msgstr "Премахни модула"
-
-#~ msgid "Be sure a media is present for the device %s"
-#~ msgstr "Проверете имате ли дискета в устройството %s"
-
-#~ msgid ""
-#~ "There is no medium or it is write-protected for device %s.\n"
-#~ "Please insert one."
-#~ msgstr ""
-#~ "Няма носител в устойството или е защитена от писане %s.\n"
-#~ "Моля поставете един."
-
-#~ msgid "Unable to fork: %s"
-#~ msgstr "Не мога да направя 'fork': %s"
-
-#~ msgid "Floppy creation completed"
-#~ msgstr "Създаването на дискета приключи"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unable to properly close mkbootdisk:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
-#~ msgstr ""
-#~ "Неможе да се затвори правилно mkbootdisk: \n"
-#~ " %s \n"
-#~ " %s"
-
-#~ msgid "use PPPoE"
-#~ msgstr "използвай PPPOE"
-
-#~ msgid "use PPTP"
-#~ msgstr "използвай PPPTP"
-
-#~ msgid "use DHCP"
-#~ msgstr "използвай DHCP"
-
-#, fuzzy
-#~ msgid "Alcatel Speedtouch USB"
-#~ msgstr "Alcatel speedtouch USB"
-
-#, fuzzy
-#~ msgid " - detected"
-#~ msgstr "засечена "
-
-#~ msgid "Sagem (using PPPoA) USB"
-#~ msgstr "Sagem (използва PPPoA) USB"
-
-#~ msgid "Sagem (using DHCP) USB"
-#~ msgstr "Sagem (използва DHCP) USB"
-
-#~ msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-#~ msgstr "Icewm, Window Maker, Enlightenment, Fvwm и т.н."
-
-#~ msgid "PXE Server Configuration"
-#~ msgstr "Конфигуриране на PXE сървър"
-
-#~ msgid "Installation Server Configuration"
-#~ msgstr "Конфигуриране на Инсталационен Сървър"
-
-#, fuzzy
-#~ msgid ""
-#~ "You are about to configure your computer to install a PXE server as a "
-#~ "DHCP server\n"
-#~ "and a TFTP server to build an installation server.\n"
-#~ "With that feature, other computers on your local network will be "
-#~ "installable using this computer as source.\n"
-#~ "\n"
-#~ "Make sure you have configured your Network/Internet access using "
-#~ "drakconnect before going any further.\n"
-#~ "\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN)."
-#~ msgstr ""
-#~ "На път сте да настроите компютъра си така, че да поделя Интернет "
-#~ "връзката\n"
-#~ "си. С тази възможност, други компютри в локалната ви мрежа ще могат да\n"
-#~ "използват Интернет връзката на този компютър.\n"
-#~ "\n"
-#~ "Отбележете: трябва ви отделен за това мрежов адаптер, за да установите "
-#~ "вътрешната си мрежа (LAN)."
-
-#~ msgid "No network adapter on your system!"
-#~ msgstr "Нямате мрежов адаптер!"
-
-#~ msgid "Choose the network interface"
-#~ msgstr "Изберете мрежов интерфейс"
-
-#~ msgid ""
-#~ "Please choose which network interface will be used for the dhcp server."
-#~ msgstr ""
-#~ "Моля, изберете кой мрежов адаптер да използвам за връзка към dhcp сървър."
-
-#~ msgid "Interface %s (on network %s)"
-#~ msgstr "Интерфейс %s (на мрежа %s)"
-
-#~ msgid "Installation image directory"
-#~ msgstr "Директория с образа на инсталацията"
-
-#~ msgid "No image found"
-#~ msgstr "Не е намерен образ"
-
-#~ msgid "Location of auto_install.cfg file"
-#~ msgstr "Местоположение на auto_install.cfg файл"
-
-#~ msgid "Internet Connection Sharing currently disabled"
-#~ msgstr "Споделянето на Интернет връзката е изключено."
-
-#~ msgid "Enabling servers..."
-#~ msgstr "Включване на сървъри ..."
-
-#~ msgid "Internet Connection Sharing currently enabled"
-#~ msgstr "Споделянето на връзката към Интернет е вече активирано"
-
-#~ msgid "Interface %s (using module %s)"
-#~ msgstr "Интерфейс %s (използващ модул %s)"
-
-#~ msgid "Interface %s"
-#~ msgstr "Интерфейс %s"
-
-#~ msgid "Network interface already configured"
-#~ msgstr "Мрежовият интерфейс вече е конфигуриран"
-
-#~ msgid "Show current interface configuration"
-#~ msgstr "Показва конфигурация на текущият интерфейс"
-
-#~ msgid "Current interface configuration"
-#~ msgstr "Конфигурация на текущият интерфейс"
-
-#~ msgid "(This) DHCP Server IP"
-#~ msgstr "(Този) DHCP сървър IP"
-
-#, fuzzy
-#~ msgid ""
-#~ "WARNING: this device has been previously configured to connect to the "
-#~ "Internet.\n"
-#~ "Modifying the fields below will override this configuration.\n"
-#~ "Do you really want to reconfigure this device?"
-#~ msgstr ""
-#~ "ВНИМАНИЕ: Това устройство вече е настроено да се свързва към Интернет.\n"
-#~ "Просто приемете, за да оставите устройството настроено.\n"
-#~ "Поправката на полетата по-долу ще презапише тази настройка."
-
-#~ msgid "Dynamic IP Address Pool:"
-#~ msgstr "Пул с динамичен IP адрес:"
-
-#, fuzzy
-#~ msgid "hd"
-#~ msgstr "Чад"
-
-#, fuzzy
-#~ msgid "tape"
-#~ msgstr "Лента"
-
-#~ msgid ""
-#~ "Maximum size\n"
-#~ " allowed for Drakbackup (MB)"
-#~ msgstr ""
-#~ "Моля, въведете максималният размер\n"
-#~ " позволен за Drakbackup (в МБ)"
-
-#~ msgid "first step creation"
-#~ msgstr "първа стъпка на създаване"
-
-#~ msgid "choose image file"
-#~ msgstr "изберете изображение"
-
-#~ msgid "Configure bootsplash picture"
-#~ msgstr "Настройка на картинката при зареждане"
-
-#~ msgid "the color of the progress bar"
-#~ msgstr "цветът на лентата за прогрес"
-
-#~ msgid "Preview"
-#~ msgstr "Преглед"
-
-#~ msgid "Choose color"
-#~ msgstr "Изберор на цвят"
-
-#~ msgid "Notice"
-#~ msgstr "Бележка"
-
-#~ msgid "You must choose an image file first!"
-#~ msgstr "Вие трябва да изберете първо графичен файл!"
-
-#~ msgid "Generating preview..."
-#~ msgstr "Генерирам преглед..."
-
-#~ msgid "No floppy drive available"
-#~ msgstr "Няма флопи устройство"
-
-#~ msgid "Please insert the Update Modules floppy in drive %s"
-#~ msgstr "Сложете дискета за обновяване на модули в устройство %s"
-
-#, fuzzy
-#~ msgid ""
-#~ "_: keyboard\n"
-#~ "Tifinagh (+latin/arabic)"
-#~ msgstr "Югославска (латиница)"
-
-#~ msgid "No network card"
-#~ msgstr "Няма открита мрежова карта"
-
-#~ msgid "You've not selected any font"
-#~ msgstr "Не сте избрали никакъв шрифт"
-
-#~ msgid "No browser available! Please install one"
-#~ msgstr "Няма налична програма за преглед! Моля изберете една"
-
-#~ msgid ""
-#~ "No browser is installed on your system, Please install one if you want to "
-#~ "browse the help system"
-#~ msgstr ""
-#~ "Нямате инсталиран браузър, инсталирайте поне един, за да разглеждате "
-#~ "помощната система"
-
-#~ msgid "Checking device and configuring HPOJ..."
-#~ msgstr "Проверка на устройство и конфигурация за HPOJ..."
-
-#~ msgid ""
-#~ "Insert a floppy in drive\n"
-#~ "All data on this floppy will be lost"
-#~ msgstr ""
-#~ "Сложете дискета във флопито\n"
-#~ "Всички данни, намиращи се върху дискетата, ще бъдат загубени"
-
-#~ msgid "Insert a FAT formatted floppy in drive %s"
-#~ msgstr "Сложете FAT форматирана дискета в устройство %s"
-
-#~ msgid "This floppy is not FAT formatted"
-#~ msgstr "Тази дискета не е форматирана на FAT"
-
-#~ msgid ""
-#~ "To use this saved packages selection, boot installation with ``linux "
-#~ "defcfg=floppy''"
-#~ msgstr ""
-#~ "За да използвате запазен избор на пакети, стартирайте инсталацията с "
-#~ "``linux defcfg=floppy''"
-
-#~ msgid "Load/Save on floppy"
-#~ msgstr "Зареди/Запази на дискета"
-
-#~ msgid ""
-#~ "Please choose load or save package selection on floppy.\n"
-#~ "The format is the same as auto_install generated floppies."
-#~ msgstr ""
-#~ "Може изберете зареждане или запис на избора на пакети на флопи.\n"
-#~ "Форматът е същият като auto_install генерираните дискети."
-
-#~ msgid "Load from floppy"
-#~ msgstr "Зареди от дискета"
-
-#~ msgid "Save on floppy"
-#~ msgstr "Запази на дискета"
-
-#~ msgid "Package selection"
-#~ msgstr "Избор на пакети"
-
-#~ msgid "Loading from floppy"
-#~ msgstr "Зареждане от дискета"
-
-#~ msgid "Insert a floppy containing package selection"
-#~ msgstr "Сложете дискета съдържаща избор на пакети"
-
-#~ msgid "multi-function device on parallel port #%s"
-#~ msgstr "многофункционално устройство на на паралелен порт #%s"
-
-#~ msgid "multi-function device on a parallel port"
-#~ msgstr "многофункционално устройство на паралелен порт"
-
-#~ msgid "multi-function device on USB"
-#~ msgstr "многофункционално устройство на USB"
-
-#~ msgid "multi-function device on HP JetDirect"
-#~ msgstr "многофункционално устройство на HP JetDirect"
-
-#~ msgid "multi-function device"
-#~ msgstr "многофункционално устройство"
-
-#~ msgid "printing to %s"
-#~ msgstr "печат на %s"
-
-#~ msgid "using command %s"
-#~ msgstr "използва команда %s"
-
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Инсталиране на HPOJ пакети ..."
-
-#~ msgid "Application:"
-#~ msgstr "Приложение:"
-
-#~ msgid "Release: "
-#~ msgstr "Версия:"
-
-#, fuzzy
-#~ msgid "Summary: "
-#~ msgstr "Обобщение"
-
-#, fuzzy
-#~ msgid "Submit kernel version"
-#~ msgstr "Версия на ядрото"
-
-#, fuzzy
-#~ msgid "connecting to %s..."
-#~ msgstr "Изпълнява \"%s\" ..."
-
-#, fuzzy
-#~ msgid "Please enter a package name."
-#~ msgstr "Моля, задайте потребителско име"
-
-#, fuzzy
-#~ msgid "Please enter summary text."
-#~ msgstr "Моля, въведете вашият логин"
-
-#~ msgid "Loading printer configuration... Please wait"
-#~ msgstr "Зареждане на настройката на принтера... Моля изчакайте"
-
-#, fuzzy
-#~ msgid "The "
-#~ msgstr "Теми"
-
-#, fuzzy
-#~ msgid "%s (was %s)"
-#~ msgstr "%s (Порт %s)"
-
-#~ msgid "Root password"
-#~ msgstr "Въведете парола за root"
-
-#, fuzzy
-#~ msgid "Do you want to recover your system?"
-#~ msgstr "Искате ли да използвате aboot ?"
-
-#~ msgid "Move"
-#~ msgstr "Премести"
-
-#~ msgid "Which disk do you want to move it to?"
-#~ msgstr "На кой диск искате да го преместите ?"
-
-#~ msgid "Sector"
-#~ msgstr "Сектор"
-
-#~ msgid "Which sector do you want to move it to?"
-#~ msgstr "На кой сектор искате да го преместите?"
-
-#~ msgid "Moving"
-#~ msgstr "Местене"
-
-#~ msgid "Moving partition..."
-#~ msgstr "Мествя дяла ... "
-
-#~ msgid "Error opening %s for writing: %s"
-#~ msgstr "Грешка при отваряне на %s за запис: %s"
-
-#~ msgid ""
-#~ "This is HardDrake, a Mandriva Linux hardware configuration tool.\n"
-#~ "<span foreground=\"royalblue3\">Version:</span> %s\n"
-#~ "<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-#~ "tvignaud@mandriva.com&gt;\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Това е HardDrake, хардуерен конфигурационен инструмент на Mandriva "
-#~ "Linux.\n"
-#~ "<span foreground=\"royalblue3\">Версия:</span> %s\n"
-#~ "<span foreground=\"royalblue3\">Автор:</span> Thierry Vignaud &lt;"
-#~ "tvignaud@mandriva.com&gt;\n"
-#~ "\n"
-
-#, fuzzy
-#~ msgid "Morrocco"
-#~ msgstr "Мароко"
-
-#, fuzzy
-#~ msgid "Server Information:"
-#~ msgstr "Информация"
-
-#, fuzzy
-#~ msgid "Use SSL connection"
-#~ msgstr "ADSL връзка"
-
-#, fuzzy
-#~ msgid "User Base:"
-#~ msgstr "Потребителско име"
-
-#, fuzzy
-#~ msgid "Base:"
-#~ msgstr "Име:"
-
-#, fuzzy
-#~ msgid "Scope:"
-#~ msgstr "Стоп"
-
-#, fuzzy
-#~ msgid "Bind Server:"
-#~ msgstr "Сървър: "
-
-#~ msgid "OK"
-#~ msgstr "OK"
-
-#, fuzzy
-#~ msgid "NO"
-#~ msgstr "ИНФО"
-
-#~ msgid "Czech (QWERTZ)"
-#~ msgstr "Чешка (QWERTZ)"
-
-#~ msgid "German"
-#~ msgstr "Немска"
-
-#~ msgid "Dvorak"
-#~ msgstr "Дворак"
-
-#~ msgid "Spanish"
-#~ msgstr "Испанска"
-
-#~ msgid "Finnish"
-#~ msgstr "Финландска"
-
-#~ msgid "French"
-#~ msgstr "Френска"
-
-#~ msgid "Norwegian"
-#~ msgstr "Норвежка"
-
-#~ msgid "Polish"
-#~ msgstr "Полска"
-
-#~ msgid "Russian"
-#~ msgstr "Руска"
-
-#~ msgid "Swedish"
-#~ msgstr "Шведска"
-
-#~ msgid "Albanian"
-#~ msgstr "Албанска"
-
-#~ msgid "Armenian (old)"
-#~ msgstr "Арменска (стара)"
-
-#~ msgid "Armenian (typewriter)"
-#~ msgstr "Арменска (пишеща машина)"
-
-#~ msgid "Armenian (phonetic)"
-#~ msgstr "Арменска (фонетичен)"
-
-#~ msgid "Arabic"
-#~ msgstr "Арабски"
-
-#~ msgid "Azerbaidjani (latin)"
-#~ msgstr "Азербайджанска (латиница)"
-
-#~ msgid "Belgian"
-#~ msgstr "Белгийска"
-
-#~ msgid "Bengali"
-#~ msgstr "Бенгалска"
-
-#~ msgid "Bulgarian (phonetic)"
-#~ msgstr "Българска (фонетичен)"
-
-#~ msgid "Bulgarian (BDS)"
-#~ msgstr "Българска (BDS)"
-
-#~ msgid "Brazilian (ABNT-2)"
-#~ msgstr "Бразилска (ABNT-2)"
-
-#~ msgid "Bosnian"
-#~ msgstr "Босненска"
-
-#~ msgid "Belarusian"
-#~ msgstr "Беларуска"
-
-#~ msgid "Swiss (German layout)"
-#~ msgstr "Швейцарска (немска наредба)"
-
-#~ msgid "Swiss (French layout)"
-#~ msgstr "Швейцарска (френски наредба)"
-
-#~ msgid "Czech (QWERTY)"
-#~ msgstr "Чешка (QWERTY)"
-
-#~ msgid "German (no dead keys)"
-#~ msgstr "Немска (без неработещи клавиши)"
-
-#~ msgid "Devanagari"
-#~ msgstr "Давенаджари"
-
-#~ msgid "Danish"
-#~ msgstr "Датска"
-
-#~ msgid "Dvorak (US)"
-#~ msgstr "Дворак (US)"
-
-#, fuzzy
-#~ msgid "Dvorak (Esperanto)"
-#~ msgstr "Дворак (Норвежка)"
-
-#~ msgid "Dvorak (Norwegian)"
-#~ msgstr "Дворак (Норвежка)"
-
-#~ msgid "Dvorak (Swedish)"
-#~ msgstr "Дворак (Шведска)"
-
-#~ msgid "Estonian"
-#~ msgstr "Естонска"
-
-#~ msgid "Georgian (\"Russian\" layout)"
-#~ msgstr "Грузинска (\"Руска\" наредба)"
-
-#~ msgid "Georgian (\"Latin\" layout)"
-#~ msgstr "Грузинска (\"Латинска\" наредба)"
-
-#~ msgid "Greek"
-#~ msgstr "Гръцка"
-
-#~ msgid "Gujarati"
-#~ msgstr "Гуаджарати"
-
-#~ msgid "Gurmukhi"
-#~ msgstr "Гурмукчи"
-
-#~ msgid "Hungarian"
-#~ msgstr "Унгарска"
-
-#~ msgid "Croatian"
-#~ msgstr "Хърватска"
-
-#~ msgid "Israeli"
-#~ msgstr "Израелска"
-
-#~ msgid "Israeli (Phonetic)"
-#~ msgstr "Израелска (фонетична)"
-
-#~ msgid "Iranian"
-#~ msgstr "Иранска"
-
-#~ msgid "Icelandic"
-#~ msgstr "Исландска"
-
-#~ msgid "Italian"
-#~ msgstr "Италианска"
-
-#~ msgid "Inuktitut"
-#~ msgstr "Инуктитут"
-
-#~ msgid "Japanese 106 keys"
-#~ msgstr "Японска 106 клавиша"
-
-#~ msgid "Kannada"
-#~ msgstr "Канада"
-
-#~ msgid "Korean keyboard"
-#~ msgstr "Корейска клавиатура"
-
-#, fuzzy
-#~ msgid "Kyrgyz keyboard"
-#~ msgstr "UK клавиатура"
-
-#~ msgid "Latin American"
-#~ msgstr "Латиноамериканска"
-
-#~ msgid "Laotian"
-#~ msgstr "Лаоска"
-
-#~ msgid "Lithuanian AZERTY (old)"
-#~ msgstr "Литвийска AZERTY (стара)"
-
-#~ msgid "Lithuanian AZERTY (new)"
-#~ msgstr "Литвийска AZERTY (нова)"
-
-#~ msgid "Lithuanian \"number row\" QWERTY"
-#~ msgstr "Литвийска \"числова редица\" QWERTY"
-
-#~ msgid "Lithuanian \"phonetic\" QWERTY"
-#~ msgstr "Литвийска \"фонетичен\" QWERTY"
-
-#~ msgid "Latvian"
-#~ msgstr "Латвийска"
-
-#~ msgid "Malayalam"
-#~ msgstr "Малайлам"
-
-#~ msgid "Macedonian"
-#~ msgstr "Македонска"
-
-#~ msgid "Myanmar (Burmese)"
-#~ msgstr "Майнмар (бирманска)"
-
-#~ msgid "Mongolian (cyrillic)"
-#~ msgstr "Монголска (кирилица)"
-
-#~ msgid "Maltese (UK)"
-#~ msgstr "Малтийска (UK)"
-
-#~ msgid "Maltese (US)"
-#~ msgstr "Малтийска (US)"
-
-#~ msgid "Dutch"
-#~ msgstr "Холандска"
-
-#~ msgid "Oriya"
-#~ msgstr "Орийска"
-
-#~ msgid "Polish (qwerty layout)"
-#~ msgstr "Полска (QWERTY наредба)"
-
-#~ msgid "Polish (qwertz layout)"
-#~ msgstr "Полска (QWERTZ наредба)"
-
-#~ msgid "Portuguese"
-#~ msgstr "Португалска"
-
-#~ msgid "Canadian (Quebec)"
-#~ msgstr "Канадска (Квебек)"
-
-#~ msgid "Romanian (qwertz)"
-#~ msgstr "Румънска (qwertz)"
-
-#~ msgid "Romanian (qwerty)"
-#~ msgstr "Румънска (qwerty)"
-
-#~ msgid "Russian (Phonetic)"
-#~ msgstr "Руска (фонетична)"
-
-#~ msgid "Saami (norwegian)"
-#~ msgstr "Саами (норвежка)"
-
-#, fuzzy
-#~ msgid "Saami (swedish/finnish)"
-#~ msgstr "Саами (норвежка)"
-
-#~ msgid "Slovenian"
-#~ msgstr "Словенска"
-
-#~ msgid "Slovakian (QWERTZ)"
-#~ msgstr "Словашка (QWERTZ)"
-
-#~ msgid "Slovakian (QWERTY)"
-#~ msgstr "Словашка (QWERTY)"
-
-#~ msgid "Serbian (cyrillic)"
-#~ msgstr "Сръбска (кирилица)"
-
-#~ msgid "Syriac"
-#~ msgstr "Сирийски"
-
-#~ msgid "Syriac (phonetic)"
-#~ msgstr "Сирийски (фонетичен)"
-
-#~ msgid "Telugu"
-#~ msgstr "Телугу"
-
-#~ msgid "Tamil (ISCII-layout)"
-#~ msgstr "Тамилска (ISCII-подредба)"
-
-#~ msgid "Tamil (Typewriter-layout)"
-#~ msgstr "Тамилска (пишеща машина)"
-
-#~ msgid "Thai keyboard"
-#~ msgstr "Тайванска клавиатура"
-
-#~ msgid "Tajik keyboard"
-#~ msgstr "Таджикистанска клавиатура"
-
-#~ msgid "Turkish (traditional \"F\" model)"
-#~ msgstr "Турска (традиционен \"F\" модел)"
-
-#~ msgid "Turkish (modern \"Q\" model)"
-#~ msgstr "Турска (модерен \"Q\" модел)"
-
-#~ msgid "Ukrainian"
-#~ msgstr "Украинска"
-
-#~ msgid "Uzbek (cyrillic)"
-#~ msgstr "Узбекистанска (кирилица)"
-
-#~ msgid "Vietnamese \"numeric row\" QWERTY"
-#~ msgstr "Виетнамска \"числова редица\" QWERTY"
-
-#~ msgid "Yugoslavian (latin)"
-#~ msgstr "Югославска (латиница)"
-
-#, fuzzy
-#~ msgid "No devices found"
-#~ msgstr "Не е намерен образ"
-
-#, fuzzy
-#~ msgid ""
-#~ "Welcome to the UPS configuration utility.\n"
-#~ "\n"
-#~ "Here, you'll be add a new UPS to your system.\n"
-#~ msgstr ""
-#~ "Добре дошли в настройката на е-поща.\n"
-#~ "\n"
-#~ "Тук можете да укажете предопитанията си за известяващата система.\n"
-
-#~ msgid "Enable multiple profiles"
-#~ msgstr "Включва много профили"
-
-#~ msgid "Installing bootloader"
-#~ msgstr "Инсталиране на bootloader"
-
-#~ msgid ""
-#~ "You may now provide options to module %s.\n"
-#~ "Options are in format ``name=value name2=value2...''.\n"
-#~ "For instance, ``io=0x300 irq=7''"
-#~ msgstr ""
-#~ "Сега можете да подадете опциите му до модула %s.\n"
-#~ "Опциите са във формат ``име=стойност име2=стойност2 ...''.\n"
-#~ "Например: ``io=0x300 irq=7''"
-
-#~ msgid "Configuring printer..."
-#~ msgstr "Настройка на принтера ..."
-
-#~ msgid "Configuring applications..."
-#~ msgstr "Настройка на приложения..."
-
-#~ msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-#~ msgstr "Добавя този принтер на Star Office/OpenOffice.org/GIMP"
-
-#~ msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-#~ msgstr "Премахва този принтер от Star Office/OpenOffice.org/GIMP"
-
-#~ msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-#~ msgstr "Добавяне на принтер на Star Office/OpenOffice.org/GIMP"
-
-#~ msgid ""
-#~ "The printer \"%s\" was successfully added to Star Office/OpenOffice.org/"
-#~ "GIMP."
-#~ msgstr ""
-#~ "Принтерът \"%s\" е бил успешно добавен към Star Office/OpenOffice.org/"
-#~ "GIMP."
-
-#~ msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-#~ msgstr ""
-#~ "Неуспех при добавяне на принтер \"%s\" на Star Office/OpenOffice.org/GIMP."
-
-#~ msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-#~ msgstr "Премахвам принтер от Star Office/OpenOffice.org/GIMP"
-
-#~ msgid ""
-#~ "The printer \"%s\" was successfully removed from Star Office/OpenOffice."
-#~ "org/GIMP."
-#~ msgstr ""
-#~ "Принтерът \"%s\" беше успешно премахнат от ffice/OpenOffice.org/GIMP."
-
-#~ msgid ""
-#~ "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
-#~ msgstr ""
-#~ "Неспешно премахване на принтер \"%s\" от Star Office/OpenOffice.org/GIMP."
-
-#~ msgid "Installation of %s failed. The following error occurred:"
-#~ msgstr "Инсталацията на %s провалена. Появи се следната грешка:"
-
-#~ msgid "Set of tools to read and send mail and news and to browse the Web"
-#~ msgstr ""
-#~ "Набор от инструменти за четене и изпращане на поща и новини и за "
-#~ "сърфиране из Мрежата"
-
-#~ msgid "Use auto detection"
-#~ msgstr "Използвай автоматично засичане"
-
-#~ msgid ""
-#~ "This dialog is used to choose which services you wish to start at boot\n"
-#~ "time.\n"
-#~ "\n"
-#~ "DrakX will list all the services available on the current installation.\n"
-#~ "Review each one carefully and uncheck those which are not needed at boot\n"
-#~ "time.\n"
-#~ "\n"
-#~ "A short explanatory text will be displayed about a service when it is\n"
-#~ "selected. However, if you are not sure whether a service is useful or "
-#~ "not,\n"
-#~ "it is safer to leave the default behavior.\n"
-#~ "\n"
-#~ "!! At this stage, be very careful if you intend to use your machine as a\n"
-#~ "server: you will probably not want to start any services that you do not\n"
-#~ "need. Please remember that several services can be dangerous if they are\n"
-#~ "enabled on a server. In general, select only the services you really "
-#~ "need.\n"
-#~ "!!"
-#~ msgstr ""
-#~ "Сега можете да изберете кои услуги да се пускат при стартиране.\n"
-#~ "\n"
-#~ "Тук са представени всички услуги, достъпни с настоящата инсталация.\n"
-#~ "Прегледайте ги внимателно и изключете тези, които не ви трябват винаги "
-#~ "при стартиране.\n"
-#~ "\n"
-#~ "Можете да видите кратък обяснителен текст за услугата, като поставите "
-#~ "курора на мишката си\n"
-#~ "над името на услугата. Ако не сте сигурни, дали услугата е полезна или "
-#~ "не, по-добре\n"
-#~ "е да оставите избора по подразбиране.\n"
-#~ "\n"
-#~ "Внимавайте с тази стъпка, ако смятате да използвате машината си като "
-#~ "сървър:\n"
-#~ "сигурно не бихте искали да пускате услуги, от които не се нуждаете. "
-#~ "Моля,\n"
-#~ "запомнете, че някои услуги могат да бъдат опасни, ако са включени на "
-#~ "сървъра.\n"
-#~ "По принцип, избирайте само услугите, от които наистина се нуждаете.\n"
-#~ "!!"
-
-#~ msgid "GRUB"
-#~ msgstr "GRUB"
-
-#~ msgid "/dev/hda"
-#~ msgstr "/dev/hda"
-
-#~ msgid "/dev/hdb"
-#~ msgstr "/dev/hdb"
-
-#~ msgid "/dev/fd0"
-#~ msgstr "/dev/fd0"
-
-#~ msgid "Delay before booting the default image"
-#~ msgstr "Забавяне преди стартирането на подразбиращият се образ"
-
-#~ msgid ""
-#~ "\"%s\": if a sound card is detected on your system, it is displayed "
-#~ "here.\n"
-#~ "If you notice the sound card displayed is not the one that is actually\n"
-#~ "present on your system, you can click on the button and choose another\n"
-#~ "driver."
-#~ msgstr ""
-#~ "\"%s\"ако намеря звукова карта,ще видите съобщение за това.\n"
-#~ "Ако забележите,че намерената звукова карта не отговаря на истината,\n"
-#~ "можете да цъкнете на бутона и да изберете друг драйвер."
-
-#~ msgid ""
-#~ "No ethernet network adapter has been detected on your system.\n"
-#~ "I cannot set up this connection type."
-#~ msgstr ""
-#~ "Не беше намерен мрежов адаптер в системата ви.\n"
-#~ "Не можете да настроите такъв вид връзка."
-
-#~ msgid ""
-#~ "Please choose which network adapter you want to use to connect to "
-#~ "Internet."
-#~ msgstr ""
-#~ "Моля, изберете кой мрежов адаптер да използвам за връзка към Интернет"
-
-#~ msgid "chunk size"
-#~ msgstr "големина на парчето"
-
-#~ msgid "Chunk size %s\n"
-#~ msgstr "Размер на парчето %s\n"
-
-#~ msgid "Can not add a partition to _formatted_ RAID md%d"
-#~ msgstr "Не мога да прибавя дял към _форматиран_ RAID md%d"
-
-#~ msgid "mkraid failed (maybe raidtools are missing?)"
-#~ msgstr "mkraid пропадна (може би raidtools липсват ?)"
-
-#~ msgid "mkraid failed"
-#~ msgstr "mkraid пропадна"
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Връзката пропадна.\n"
-#~ "Проверете си конфигурацията в Контролен център на Mandriva Linux."
-
-#~ msgid "The package %s is needed. Install it?"
-#~ msgstr "Пакет %s е необходим. Да го инсталирам?"
-
-#~ msgid "ignore"
-#~ msgstr "игнориране"
-
-#~ msgid "no"
-#~ msgstr "не"
-
-#~ msgid "yes"
-#~ msgstr "да"
-
-#~ msgid "SILO Installation"
-#~ msgstr "SILO инсталация"
-
-#~ msgid "First sector of boot partition"
-#~ msgstr "Първи сектор от стартиращия се дял"
-
-#~ msgid "Bootloader installation"
-#~ msgstr "Инсталация на Bootloader"
-
-#~ msgid "SILO"
-#~ msgstr "SILO"
-
-#~ msgid "Alcatel speedtouch usb"
-#~ msgstr "Alcatel speedtouch USB"
-
-#~ msgid "Sagem (using pppoa) usb"
-#~ msgstr "Sagem (използва pppoa) usb"
-
-#~ msgid "Harddrake2 version %s"
-#~ msgstr "Harddrake2 версия %s"
-
-#~ msgid "transmitted"
-#~ msgstr "прехвърлени"
-
-#~ msgid "received"
-#~ msgstr "получени"
-
-#~ msgid ""
-#~ "You can export using NFS or SMB. Please select which you'd like to use."
-#~ msgstr ""
-#~ "Вие може да експортирате като използвате NFS или SMB. Моля, изберете "
-#~ "какво искате да използвате."
-
-#~ msgid ""
-#~ "You can export using NFS or Samba. Please select which you'd like to use."
-#~ msgstr ""
-#~ "Вие може да експортирате като използвате NFS или Samba. Моля, изберете "
-#~ "какво искате да използвате."
-
-#~ msgid "You must be root to read configuration file. \n"
-#~ msgstr "Трябва да сте root , за да прочетете файла с настройките.\n"
-
-#~ msgid "Can not open %s!"
-#~ msgstr "Не мога да отворя %s!"
-
-#~ msgid ""
-#~ "Your card can have 3D hardware acceleration support but only with Xorg %"
-#~ "s.\n"
-#~ "Your card is supported by Xorg %s which may have a better support in 2D."
-#~ msgstr ""
-#~ "Картата ви може да има поддръжка на хардуерно 3D ускорение, но само с "
-#~ "Xfree %s.\n"
-#~ "Картата ви се поддържа от Xorg %s, който може да има по-добра поддръжка "
-#~ "на 2D."
-
-#~ msgid ""
-#~ "Your card can have 3D hardware acceleration support but only with Xorg %"
-#~ "s,\n"
-#~ "NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
-#~ "Your card is supported by Xorg %s which may have a better support in 2D."
-#~ msgstr ""
-#~ "Картата ви може да има поддръжка на хардуерно 3D ускорение, но само с "
-#~ "Xorg %s,\n"
-#~ "ОТБЕЛЕЖЕТЕ, ЧЕ ТОВА Е ЕКСПЕРИМЕНТАЛНА ПОДДРЪЖКА И МОЖЕ ДА ЗАБИЕ КОМПЮТЪРА "
-#~ "ВИ.\n"
-#~ "Картата ви се поддържа от Xorg %s, който може да има по-добра поддръжка "
-#~ "на 2D."
-
-#~ msgid "Xpmac (installation display driver)"
-#~ msgstr "Xpmac (инсталация графичен драйвер)"
-
-#~ msgid "4 billion colors (32 bits)"
-#~ msgstr "4 милиарда цвята (32 бита)"
-
-#~ msgid "XFree86 server: %s\n"
-#~ msgstr "XFree86 сървър: %s\n"
-
-#~ msgid "Here is the full list of keyboards available"
-#~ msgstr "Ето пълен списък на достръпните клавиатури"
-
-#~ msgid "Please insert the Boot floppy used in drive %s"
-#~ msgstr "Сложете стартиращата дискета в устройство %s"
-
-#~ msgid "Provider dns 1 (optional)"
-#~ msgstr "1-ви DNS на доставчика (по желание)"
-
-#~ msgid "Provider dns 2 (optional)"
-#~ msgstr "2-ри DNS на доставчика (по желание)"
-
-#~ msgid "DHCP Client"
-#~ msgstr "DHCP клиент"
-
-#~ msgid ""
-#~ "Change\n"
-#~ "Restore Path"
-#~ msgstr ""
-#~ "Промяна\n"
-#~ "пътя на възстановяване"
-
-#~ msgid "European protocol"
-#~ msgstr "Европейски протокол"
-
-#~ msgid "Found \"%s\" interface do you want to use it ?"
-#~ msgstr "Намерен е \"%s\" интерфейс. Искате ли да го използвате?"
-
-#~ msgid "What kind is your ISDN connection?"
-#~ msgstr "Какъв е типът на ISDN връзката ?"
-
-#~ msgid "Do you want to start a new configuration ?"
-#~ msgstr "Желаете ли да започнете ново настройване?"
-
-#~ msgid ""
-#~ "I have detected an ISDN PCI card, but I do not know its type. Please "
-#~ "select a PCI card on the next screen."
-#~ msgstr ""
-#~ "Открита е ISDN PCI карта, но с непознат тип. Моля изберете някоя PCI "
-#~ "карта от следващият екран."
-
-#~ msgid "No ISDN PCI card found. Please select one on the next screen."
-#~ msgstr "Не е намерена ISDN PCI карта. Моля изберете от следващият екран."
-
-#~ msgid "DrakTermServ"
-#~ msgstr "ДракТермСърв"
-
-#~ msgid "Windows (FAT32)"
-#~ msgstr "Windows (FAT32)"
-
-#~ msgid "Scientific Workstation"
-#~ msgstr "Научна работна станция"
-
-#~ msgid "Please select media for backup..."
-#~ msgstr "Моля, изберете носител за възстановяване..."
-
-#~ msgid "Configuration of a remote printer"
-#~ msgstr "Настройка на отдалечен принтер"
-
-#~ msgid "Gnome Workstation"
-#~ msgstr "Gnome работна станция"
-
-#~ msgid "Running \"%s\" ..."
-#~ msgstr "Изпълнява \"%s\" ..."
+#~ msgid "Icon"
+#~ msgstr "Икона"
-#~ msgid "utopia 25"
-#~ msgstr "utopia 25"
+#~ msgid "PLL setting:"
+#~ msgstr "PLL настройки:"
-#~ msgid "Messages"
-#~ msgstr "Съобщения"
+#~ msgid "Radio support:"
+#~ msgstr "Подръжка на радио:"
-#~ msgid "Syslog"
-#~ msgstr "Системен журнал"
+#~ msgid "enable radio support"
+#~ msgstr "разрешава подръжка на радио"
-#~ msgid "Compact"
-#~ msgstr "Компактен"
+#~ msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+#~ msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
diff --git a/perl-install/share/po/bn.po b/perl-install/share/po/bn.po
index f0ae86170..eded7444d 100644
--- a/perl-install/share/po/bn.po
+++ b/perl-install/share/po/bn.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX HEAD\n"
-"POT-Creation-Date: 2006-03-05 18:57+0800\n"
+"POT-Creation-Date: 2007-03-21 12:10+0100\n"
"PO-Revision-Date: 2005-03-19 23:18+0600\n"
"Last-Translator: Samia <mailsamia2001@yahoo.com>\n"
"Language-Team: Bangla <mdk-translation@bengalinux.org>\n"
@@ -16,846 +16,20 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../move/move.pm:292
-#, c-format
-msgid "Which USB key do you want to format?"
-msgstr "আপনি কোন ইউএসবি ডিস্ক ফরম্যাট করতে চান?"
-
-#: ../move/move.pm:296
-#, c-format
-msgid ""
-"You are about to format a USB device \"%s\". This will delete all data on "
-"it.\n"
-"Make sure that the selected device is the USB key you want to format. \n"
-"We advise you to unplug all other USB storage devices while doing this "
-"operation."
-msgstr ""
-"আপনি একটি ইউএসবি যন্ত্র \"%s\" ফরম্যাট করতে যাচ্ছেন। সেটি এটাতে থাকা সব তথ্য মুছে "
-"ফেলবে।\n"
-"নিশ্চিত হোন যে চিহ্নিত যন্ত্রটিই সেই ইউএসবি যন্ত্র যা আপনি ফরম্যাট করতে চান। \n"
-"আমাদের পরামর্শ হচ্ছে এই কাজ করার সময় অন্যান্য ইউএসবি স্টোরেজ জন্য খুলে ফেলুন।"
-
-#: ../move/move.pm:448 ../move/move.pm:460
-#, c-format
-msgid "Key is not writable"
-msgstr "ডিস্ক লেখবার উপযোগী না"
-
-#: ../move/move.pm:450
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-"মনেহচ্ছে ইউএসবি ডিস্কে রাইট প্রটেকশন কার্যকর করা রয়েছে।\n"
-"অনুগ্রহ করে এটা আন-প্লাগ করে রইট প্রটেকশন অপসরন করে\n"
-"আবার ইউএসবি ডিস্ক প্লাগ-ইন করুন।"
-
-#: ../move/move.pm:452
-#, c-format
-msgid "Retry"
-msgstr "আবার চেষ্টা"
-
-#: ../move/move.pm:453 ../move/move.pm:497
-#, c-format
-msgid "Continue without USB key"
-msgstr "ইউএসবি ডিস্ক ছাড়াই অগ্রসর হও"
-
-#: ../move/move.pm:462
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled, but we can not safely\n"
-"unplug it now.\n"
-"\n"
-"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandriva Move again."
-msgstr ""
-"মনেহচ্ছে ইউএসবি ডিস্কে রাইট প্রটেকশন কার্যকর করা রয়েছে, কিন্তু এখন\n"
-"আমরা নিরাপদভাবে এটা আন-প্লাগও করতে পারছিনা।\n"
-"\n"
-"\n"
-"এই বাটনে ক্লিক করে আপনার মেশিন রিবুট করে ইউএসবি ডিস্ক\n"
-"আনপ্লাগ করুন এবং রইট প্রটেকশন অপসরন করে আবার\n"
-"ইউএসবি ডিস্ক প্লাগ-ইন করে ম্যান্ড্রিব মুভ চালু করুন।"
-
-#: ../move/move.pm:468 help.pm:410 install_steps_interactive.pm:1303
-#, c-format
-msgid "Reboot"
-msgstr "রিবুট"
-
-#: ../move/move.pm:473
-#, c-format
-msgid ""
-"Your USB key does not have any valid Windows (FAT) partitions.\n"
-"We need one to continue (beside, it's more standard so that you\n"
-"will be able to move and access your files from machines\n"
-"running Windows). Please plug in an USB key containing a\n"
-"Windows partition instead.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-"আপনার ইউএসবি ডিস্কে কোন উইন্ডোজ (FAT) পার্টিশন নেই।\n"
-"অগ্রসর হওয়ার জন্য আমাদের উইন্ডোজ (FAT) পার্টিশনের প্রয়োজন\n"
-"(যেহেতু উইন্ডোজ চালিত মেশিনসমূহ থেকে ফাইল নিতে বা ব্যবহার\n"
-"করার জন্য এটাই সবচাইতে আদর্শ উপায়)। অনুগ্রহ করে\n"
-"এই ইউএসবি ডিস্ক বদলে উইন্ডোজ (FAT) পার্টিশন সম্বলিত একটি ইউএসবি ডিস্ক\n"
-"সংযুক্ত করুন।\n"
-"\n"
-"\n"
-"আপনি ইউএসবি Key ছাড়াই অগ্রসর হতে পারেন - এখনো আপনি\n"
-"ম্যান্ড্রিব মুভকে সাধারণ লাইভ ম্যান্ড্রিব অপারেটিং সিস্টেম\n"
-"হিসেবে ব্যবহার করতে পারবেন।"
-
-#: ../move/move.pm:483
-#, c-format
-msgid ""
-"We did not detect any USB key on your system. If you\n"
-"plug in an USB key now, Mandriva Move will have the ability\n"
-"to transparently save the data in your home directory and\n"
-"system wide configuration, for next boot on this computer\n"
-"or another one. Note: if you plug in a key now, wait several\n"
-"seconds before detecting again.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-"আমরা আপনার সিস্টেমে কোন ইউএসবি ড্রাইভ সনাক্ত করতে\n"
-"পারি নাই। আপনা যদি এখন একটু ইউএসবি ড্রাইভ প্লাগ-ইন\n"
-"করেন তাহলে এই কম্পিউটারে অথবা অন্য কোন\n"
-"কম্পিউটারে পরবর্তি বুটের জন্য ম্যান্ড্রিব মুভ আপনার\n"
-"সিস্টেমের কনফিগারেশন এবং হোম ডিরেক্টরির\n"
-"ফাইলসমূহ সেখানে সংরক্ষণ করতে পারবে।\n"
-"দ্রষ্টব্য: যদি আপনি এখন একটি ইউএসবি ড্রাইভ প্লাগ-ইন\n"
-"করেন, তাহলে কিছুক্ষণ অপেক্ষার করতে হবে\n"
-"চিহ্নিত করার জন্য।\n"
-"\n"
-"\n"
-"আপনি ইউএসবি ড্রাইভ ছাড়াই অগ্রসর হয়ে ম্যান্ড্রিব \n"
-"মুভকে সাধারন লাইভ ম্যান্ড্রিব অপরেটিং সিস্টেম\n"
-"হিসেবে ব্যবহার করতে পারেন।"
-
-#: ../move/move.pm:494
-#, c-format
-msgid "Need a key to save your data"
-msgstr "আপনার ডেটা সংরক্ষনের জন্য একটি ডিস্কের প্রয়োজন"
-
-#: ../move/move.pm:496
-#, c-format
-msgid "Detect USB key again"
-msgstr "আবারও একটি ইউএসবি ডিস্ক সনাক্ত হয়েছে"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Setting up USB key"
-msgstr "ইউএসবি ডিস্ক সেট করা হচ্ছে"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr ""
-"অনুগ্রহ করে অপেক্ষা করুন, ইউএসবি ডিস্কে সিস্টেম কনফিগারেশন ফাইল সেট করা হচ্ছে..."
-
-#: ../move/move.pm:546
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr "স্ক্রীন সেভারে ব্যবহারের জন্য ব্যবহারকারীর তথ্য, পাসওয়ার্ড প্রবেশ করান"
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Auto configuration"
-msgstr "স্বয়ংক্রিয় কনফিগারেশন"
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "অনুগ্রহ করে অপেক্ষা করুন, ডিভাইসগুলি সনাক্ত এবং কনফিগার করা হচ্ছে..."
-
-#: ../move/move.pm:604 ../move/move.pm:660 ../move/move.pm:664
-#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/interactive.pm:231
-#: diskdrake/interactive.pm:244 diskdrake/interactive.pm:405
-#: diskdrake/interactive.pm:423 diskdrake/interactive.pm:560
-#: diskdrake/interactive.pm:565 diskdrake/smbnfs_gtk.pm:41 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:52 fsedit.pm:218 install_any.pm:1775
-#: install_any.pm:1827 install_steps.pm:81 install_steps_interactive.pm:37
-#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
-#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
-#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
-#: network/netconnect.pm:837 network/netconnect.pm:866
-#: network/netconnect.pm:965 network/netconnect.pm:969
-#: network/netconnect.pm:973 network/netconnect.pm:978
-#: network/netconnect.pm:1123 network/netconnect.pm:1127
-#: network/netconnect.pm:1246 network/netconnect.pm:1251
-#: network/netconnect.pm:1271 network/netconnect.pm:1428
-#: network/thirdparty.pm:321 network/thirdparty.pm:328
-#: network/thirdparty.pm:372 network/thirdparty.pm:374
-#: network/thirdparty.pm:395 network/thirdparty.pm:419
-#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
-#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
-#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
-#: printer/printerdrake.pm:450 printer/printerdrake.pm:514
-#: printer/printerdrake.pm:686 printer/printerdrake.pm:690
-#: printer/printerdrake.pm:772 printer/printerdrake.pm:1555
-#: printer/printerdrake.pm:1603 printer/printerdrake.pm:1640
-#: printer/printerdrake.pm:1685 printer/printerdrake.pm:1689
-#: printer/printerdrake.pm:1703 printer/printerdrake.pm:1795
-#: printer/printerdrake.pm:1876 printer/printerdrake.pm:1880
-#: printer/printerdrake.pm:1884 printer/printerdrake.pm:1933
-#: printer/printerdrake.pm:1991 printer/printerdrake.pm:1995
-#: printer/printerdrake.pm:2009 printer/printerdrake.pm:2129
-#: printer/printerdrake.pm:2133 printer/printerdrake.pm:2176
-#: printer/printerdrake.pm:2249 printer/printerdrake.pm:2267
-#: printer/printerdrake.pm:2276 printer/printerdrake.pm:2285
-#: printer/printerdrake.pm:2296 printer/printerdrake.pm:2360
-#: printer/printerdrake.pm:2512 printer/printerdrake.pm:2947
-#: printer/printerdrake.pm:3231 printer/printerdrake.pm:3237
-#: printer/printerdrake.pm:3802 printer/printerdrake.pm:3806
-#: printer/printerdrake.pm:3810 printer/printerdrake.pm:4206
-#: printer/printerdrake.pm:4446 printer/printerdrake.pm:4474
-#: printer/printerdrake.pm:4551 printer/printerdrake.pm:4617
-#: printer/printerdrake.pm:4737 standalone/drakTermServ:422
-#: standalone/drakTermServ:492 standalone/drakTermServ:501
-#: standalone/drakTermServ:812 standalone/drakTermServ:819
-#: standalone/drakTermServ:845 standalone/drakTermServ:894
-#: standalone/drakTermServ:1146 standalone/drakTermServ:1181
-#: standalone/drakTermServ:1634 standalone/drakTermServ:1643
-#: standalone/drakTermServ:1651 standalone/drakTermServ:1656
-#: standalone/drakTermServ:1664 standalone/drakTermServ:1680
-#: standalone/drakTermServ:1700 standalone/drakauth:36
-#: standalone/drakbackup:511 standalone/drakbackup:625
-#: standalone/drakbackup:1110 standalone/drakbackup:1141
-#: standalone/drakbackup:1332 standalone/drakbackup:1664
-#: standalone/drakbackup:1820 standalone/drakbackup:2548
-#: standalone/drakbackup:4463 standalone/drakclock:124
-#: standalone/drakconnect:676 standalone/drakconnect:680
-#: standalone/drakconnect:685 standalone/drakconnect:700
-#: standalone/drakfont:209 standalone/drakfont:222 standalone/drakfont:260
-#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakhosts:98
-#: standalone/drakhosts:246 standalone/drakhosts:253 standalone/drakhosts:260
-#: standalone/draknfs:306 standalone/draknfs:609 standalone/draknfs:616
-#: standalone/draknfs:623 standalone/drakroam:33 standalone/draksambashare:384
-#: standalone/draksambashare:388 standalone/draksambashare:391
-#: standalone/draksambashare:394 standalone/draksambashare:453
-#: standalone/draksambashare:477 standalone/draksambashare:551
-#: standalone/draksambashare:633 standalone/draksambashare:700
-#: standalone/draksambashare:800 standalone/draksambashare:807
-#: standalone/draksambashare:942 standalone/draksambashare:1133
-#: standalone/draksambashare:1142 standalone/draksambashare:1151
-#: standalone/draksambashare:1172 standalone/draksambashare:1181
-#: standalone/draksambashare:1190 standalone/draksambashare:1210
-#: standalone/draksambashare:1218 standalone/draksambashare:1230
-#: standalone/draksplash:162 standalone/drakxtv:107
-#: standalone/finish-install:79 standalone/logdrake:171
-#: standalone/logdrake:439 standalone/logdrake:444 standalone/scannerdrake:59
-#: standalone/scannerdrake:202 standalone/scannerdrake:261
-#: standalone/scannerdrake:732 standalone/scannerdrake:743
-#: standalone/scannerdrake:882 standalone/scannerdrake:893
-#: standalone/scannerdrake:963 wizards.pm:95 wizards.pm:99 wizards.pm:121
-#, c-format
-msgid "Error"
-msgstr "ত্রুটি"
-
-#: ../move/move.pm:605 install_steps.pm:82
-#, c-format
-msgid ""
-"An error occurred, but I do not know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"একটি ত্রুটি সম্পাদিত হয়েছে, কিন্তু আমি বুঝতে পারছিনা\n"
-"কিভাবে এটা সন্দরভাবে হ্যান্ডল করবো।\n"
-"আপনি নিজের ঝুঁকিতে অগ্রসর হতে পারেন।"
-
-#: ../move/move.pm:660 install_steps_interactive.pm:37
-#, c-format
-msgid "An error occurred"
-msgstr "একটি ত্রুটি সম্পাদিত হয়েছে"
-
-#: ../move/move.pm:666
-#, c-format
-msgid ""
-"An error occurred:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"This may come from corrupted system configuration files\n"
-"on the USB key, in this case removing them and then\n"
-"rebooting Mandriva Move would fix the problem. To do\n"
-"so, click on the corresponding button.\n"
-"\n"
-"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-"একটি ত্রুটি সম্পাদিত হয়েছে:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"ইউএসবি ডিস্কের থাকা নষ্ট কনফিগারেশন ফাইলের কারনে\n"
-"এরকম হতে পারে, সেরকম হলে সেগুলি অপসরণ করে\n"
-"ম্যান্ড্রিব মুভ চালালে সমস্যার সমাধান হতে পারে।\n"
-"সেরকম করার জন্য নির্ধারিত বাটনটিতে ক্লিক করুন।\n"
-"\n"
-"\n"
-"আপনি হয়তো রিবুট করে ইউএসবি ড্রাইভ রিমুভ করে\n"
-"কন্টেন্টগুলি অন্য OS-এ নিয়ে পর্যবেক্ষন করতে চান, অথবা\n"
-"কনসল #3 এবং #4-এ দেখে আন্দাজ করার চেষ্টা করতে\n"
-"পারেন কি হয়েছে।"
-
-#: ../move/move.pm:681
-#, c-format
-msgid "Remove system config files"
-msgstr "সিস্টেম কনফিগ ফাইলসমূহ অপসরণ করো"
-
-#: ../move/move.pm:682
-#, c-format
-msgid "Simply reboot"
-msgstr "শুধু রিবুট করো"
-
-#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr "আপনি কোন সিডিরম সাপোর্ট ছাড়াই শুধু রান করতে পারেন"
-
-#: ../move/tree/mdk_totem:71
-#, c-format
-msgid "Kill those programs"
-msgstr "ঐ সমস্থ প্রোগ্রামকে মেরে ফেলো"
-
-#: ../move/tree/mdk_totem:72
-#, c-format
-msgid "No CDROM support"
-msgstr "সিডিরমের কোন সাপোর্ট নেই"
-
-#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1062 diskdrake/interactive.pm:1072
-#: diskdrake/interactive.pm:1125
-#, c-format
-msgid "Read carefully!"
-msgstr "সতর্কতার সাথে পড়ো!"
-
-#: ../move/tree/mdk_totem:77
-#, c-format
-msgid ""
-"You can not use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-"নিম্নবর্তি প্রোগ্রামগুলি চলাকালীন আপনি অন্য সিডিরম ব্যবহার করতে পারবেননা:\n"
-"%s"
-
-#: ../move/tree/mdk_totem:101
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr "সিডিরম অপসরণ করার জন্য মেমরীতে কপি করে নেয়া হচ্ছে"
-
-#: Xconfig/card.pm:13
-#, c-format
-msgid "256 kB"
-msgstr "২৫৬ কেবি"
-
-#: Xconfig/card.pm:14
-#, c-format
-msgid "512 kB"
-msgstr "৫১২ কেবি"
-
-#: Xconfig/card.pm:15
-#, c-format
-msgid "1 MB"
-msgstr "১ এমবি"
-
-#: Xconfig/card.pm:16
-#, c-format
-msgid "2 MB"
-msgstr "২ এমবি"
-
-#: Xconfig/card.pm:17
-#, c-format
-msgid "4 MB"
-msgstr "৪ এমবি"
-
-#: Xconfig/card.pm:18
-#, c-format
-msgid "8 MB"
-msgstr "৮ এমবি"
-
-#: Xconfig/card.pm:19
-#, c-format
-msgid "16 MB"
-msgstr "১৬ এমবি"
-
-#: Xconfig/card.pm:20
-#, c-format
-msgid "32 MB"
-msgstr "৩২ এমবি"
-
-#: Xconfig/card.pm:21
-#, c-format
-msgid "64 MB or more"
-msgstr "৬৪ এমবি অথবা আরও বেশী"
-
-#: Xconfig/card.pm:162
-#, c-format
-msgid "X server"
-msgstr "X সার্ভার"
-
-#: Xconfig/card.pm:163
-#, c-format
-msgid "Choose an X server"
-msgstr "একটি X সার্ভার পছন্দ করুন"
-
-#: Xconfig/card.pm:195
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Multi-head কনফিগারেশন"
-
-#: Xconfig/card.pm:196
-#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"আপনার সিস্টেম Multiple Head কনফিগারেশন সাপোর্ট করে।\n"
-"আপনা কি করতে চান?"
-
-#: Xconfig/card.pm:265
-#, c-format
-msgid "Can not install Xorg package: %s"
-msgstr "Xorg প্যাকেজ ইনস্টল করা যাচ্ছেনা: %s"
-
-#: Xconfig/card.pm:275
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "আপনার গ্রাফিক কার্ডের জন্য মেমরী সাইজ নির্ধারন করুন"
-
-#: Xconfig/card.pm:371
-#, c-format
-msgid "Xorg configuration"
-msgstr "Xorg কনফিগারেশন"
-
-#: Xconfig/card.pm:373
-#, c-format
-msgid "Which configuration of Xorg do you want to have?"
-msgstr "Xorg-এর কোন কনফিগারেশন আপনি রাখতে চান?"
-
-#: Xconfig/card.pm:406
-#, c-format
-msgid "Configure all heads independently"
-msgstr "সমস্থ head-গুলিকে আলাদাভাবে কনফিগার কারো"
-
-#: Xconfig/card.pm:407
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Xinerama এক্সটেনশন ব্যবহার করো"
-
-#: Xconfig/card.pm:412
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "শুধু \"%s\"%s কার্ড কনফিগ করো"
-
-#: Xconfig/card.pm:424 Xconfig/various.pm:23
-#, c-format
-msgid "Xorg %s"
-msgstr "Xorg %s"
-
-#: Xconfig/card.pm:431 Xconfig/various.pm:22
-#, c-format
-msgid "Xorg %s with 3D hardware acceleration"
-msgstr "3D হার্ডওয়্যারের গতি সম্পন্ন %s Xorg"
-
-#: Xconfig/card.pm:433
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with Xorg %s."
-msgstr "আপনি Xorg %s-এ 3D হার্ডওয়্যারের গতির সুবিধা উপভোগ করতে পারেন।"
-
-#: Xconfig/card.pm:439
-#, c-format
-msgid "Xorg %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "পরীক্ষামূলক 3D হার্ডওয়্যারের গতির সাথে Xorg %s"
-
-#: Xconfig/card.pm:441
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with Xorg %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"আপনার কার্ডটি Xfree %s-এর মাধ্যমে 3D হার্ডওয়্যারের গতি পেতে পারে,\n"
-"লক্ষ্য রাখবেন যে এটা একটি পরীক্ষামূলক সাপোর্ট এবং আপনার কম্পিউটার অচল হয়ে যেতে "
-"পারে।"
-
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:1021
-#, c-format
-msgid "Custom"
-msgstr "ব্যবস্থা"
-
-#: Xconfig/main.pm:127 any.pm:742 diskdrake/dav.pm:26 help.pm:15
-#: install_steps_interactive.pm:1303 printer/printerdrake.pm:882
-#: printer/printerdrake.pm:899 printer/printerdrake.pm:4546
-#: printer/printerdrake.pm:5010 standalone/drakhosts:263
-#: standalone/drakroam:230 standalone/draksplash:93 standalone/logdrake:176
-#: standalone/net_applet:103 standalone/scannerdrake:494
-#, c-format
-msgid "Quit"
-msgstr "বাহির"
-
-#: Xconfig/main.pm:129
-#, c-format
-msgid "Graphic Card"
-msgstr "গ্রাফিক কার্ড"
-
-#: Xconfig/main.pm:132 Xconfig/monitor.pm:110
-#, c-format
-msgid "Monitor"
-msgstr "মনিটর"
-
-#: Xconfig/main.pm:135 Xconfig/resolution_and_depth.pm:289
-#, c-format
-msgid "Resolution"
-msgstr "রেজুলেশন"
-
-#: Xconfig/main.pm:138
-#, c-format
-msgid "Test"
-msgstr "পরীক্ষা"
-
-#: Xconfig/main.pm:143 diskdrake/dav.pm:65 diskdrake/interactive.pm:449
-#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
-#: printer/printerdrake.pm:1112 standalone/drakfont:493
-#: standalone/drakfont:548
-#, c-format
-msgid "Options"
-msgstr "অপশন"
-
-# সাম: broken কি সেন্সে ব্যবহৃত হয়েছে?
-# অসম্পূর্ণ নাকি corrupt?
-#: Xconfig/main.pm:178
-#, c-format
-msgid "Your Xorg configuration file is broken, we will ignore it."
-msgstr "আপনার Xorg কনফিগারেশন ফাইলটি অসম্পূর্ণ, এটি অগ্রাহ্য করছি। "
-
-#: Xconfig/main.pm:196
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"পরিবর্নগুলি রাখব?\n"
-"বর্তমান কনফিগারেশনগুলি হচ্ছে:\n"
-"\n"
-"%s"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor for head #%d"
-msgstr "Head #%d -এর জন্য একটি মনিটর পছন্দ করুন"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor"
-msgstr "একটি মনিটর পছন্দ করুন"
-
-#: Xconfig/monitor.pm:117
-#, c-format
-msgid "Plug'n Play"
-msgstr "প্লাগ'এন প্লে"
-
-#: Xconfig/monitor.pm:118 mouse.pm:49
-#, c-format
-msgid "Generic"
-msgstr "সাধারন"
-
-#: Xconfig/monitor.pm:119 standalone/drakconnect:591 standalone/harddrake2:54
-#: standalone/harddrake2:88
-#, c-format
-msgid "Vendor"
-msgstr "পরিবেশক"
-
-#: Xconfig/monitor.pm:129
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "প্লাগ'এন প্লে অনুসন্ধান ব্যার্থ হয়েছে। অনুগ্রহ করে সঠিক মনিটর নির্বাচন করুন"
-
-#: Xconfig/monitor.pm:137
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"দুইটি জরুরী প্যারামিটার হচ্ছে উল্লম্ব রিফ্রেশ মাত্রা, যেই মাত্রাটি হচ্ছে\n"
-"যেটাতে সম্পূর্ণ স্ক্রীন রিফ্রেশ হয়, এবং সবচেয়ে বেশি প্রয়োজনীয় হচ্ছে আনুভূমিক\n"
-"sync মাত্রা, যেটাতে স্ক্যানলাইনগুলো প্রদর্শিত হয়।\n"
-"\n"
-"এটা খুব গুরুত্বপূর্ণ যে"
-
-#: Xconfig/monitor.pm:144
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Horizontal রিফ্রেশ রেট"
-
-#: Xconfig/monitor.pm:145
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Vertical রিফ্রেশ রেট"
-
-#: Xconfig/resolution_and_depth.pm:10
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "২৫৬ রঙ (৮ বিট)"
-
-#: Xconfig/resolution_and_depth.pm:11
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "৩২ হাজার রঙ (১৫ বিট)"
-
-#: Xconfig/resolution_and_depth.pm:12
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "৬৫ হাজার রঙ (১৬ বিট)"
-
-#: Xconfig/resolution_and_depth.pm:13
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "১৬ লক্ষ রঙ (২৪ বিট)"
-
-#: Xconfig/resolution_and_depth.pm:127
-#, c-format
-msgid "Resolutions"
-msgstr "রেজুলেশন"
-
-#: Xconfig/resolution_and_depth.pm:311 diskdrake/hd_gtk.pm:336
-#: install_steps_gtk.pm:288 mouse.pm:168 services.pm:162
-#: standalone/drakbackup:1606 standalone/drakperm:250
-#, c-format
-msgid "Other"
-msgstr "অন্যান্য"
-
-#: Xconfig/resolution_and_depth.pm:360
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "রঙের রেজুলেশন এবং গভীরতার পছন্দ করুন"
-
-#: Xconfig/resolution_and_depth.pm:361
-#, c-format
-msgid "Graphics card: %s"
-msgstr "%s গ্রাফিক কার্ড"
-
-#: Xconfig/resolution_and_depth.pm:375 interactive.pm:119 interactive.pm:436
-#: interactive/http.pm:103 interactive/http.pm:156 interactive/newt.pm:321
-#: interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:143
-#: standalone/drakTermServ:222 standalone/drakTermServ:543
-#: standalone/drakbackup:1372 standalone/drakbackup:4123
-#: standalone/drakbackup:4183 standalone/drakbackup:4227
-#: standalone/drakbackup:4481 standalone/drakconnect:158
-#: standalone/drakconnect:852 standalone/drakconnect:939
-#: standalone/drakconnect:1030 standalone/drakfont:569 standalone/drakfont:579
-#: standalone/draksplash:173 standalone/drakups:210 standalone/net_monitor:339
-#: ugtk2.pm:392 ugtk2.pm:490 ugtk2.pm:899 ugtk2.pm:922
-#, c-format
-msgid "Ok"
-msgstr "ঠিক আছে"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/smbnfs_gtk.pm:80 help.pm:90
-#: help.pm:445 install_steps_gtk.pm:455 install_steps_interactive.pm:406
-#: install_steps_interactive.pm:811 interactive.pm:120 interactive.pm:437
-#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
-#: interactive/stdio.pm:39 interactive/stdio.pm:142
-#: printer/printerdrake.pm:3882 standalone/drakautoinst:215
-#: standalone/drakbackup:1372 standalone/drakbackup:4052
-#: standalone/drakbackup:4056 standalone/drakbackup:4111
-#: standalone/drakbackup:4481 standalone/drakconnect:157
-#: standalone/drakconnect:937 standalone/drakconnect:1029
-#: standalone/drakfont:579 standalone/drakfont:655 standalone/drakfont:733
-#: standalone/draksplash:173 standalone/drakups:217 standalone/logdrake:176
-#: standalone/net_monitor:338 ugtk2.pm:386 ugtk2.pm:488 ugtk2.pm:497
-#: ugtk2.pm:899
-#, c-format
-msgid "Cancel"
-msgstr "বাতিল"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/hd_gtk.pm:150
-#: install_steps_gtk.pm:232 install_steps_gtk.pm:617 interactive.pm:567
-#: interactive/gtk.pm:682 interactive/gtk.pm:684 standalone/drakTermServ:311
-#: standalone/drakbackup:4048 standalone/drakbug:105
-#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:511 standalone/draknfs:206 standalone/drakperm:133
-#: standalone/draksambashare:320 standalone/draksec:344 standalone/draksec:346
-#: standalone/draksec:364 standalone/draksec:366 ugtk2.pm:1031 ugtk2.pm:1032
-#, c-format
-msgid "Help"
-msgstr "সাহায্য"
-
-#: Xconfig/test.pm:30
-#, c-format
-msgid "Test of the configuration"
-msgstr "এই কনফিগারেশনটি পরীক্ষা করো"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "আপনি কি এই কনফিগারেশন পরীক্ষা করতে চান?"
-
-# Warning-এর বাংলা "নোটিশ" লিখলাম
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"নোটিশ: এই গ্রাফিক্স কার্ডটি পরীক্ষা করতে গিয়ে আপনার কম্পিউটারটি অচল হয়ে যেতে পারে"
-
-#: Xconfig/test.pm:69
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"একটি ত্রুটি সাধিত হয়েছে:\n"
-"%s\n"
-"কিছু মান পরিবর্তনের চেষ্টা করুন"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "%d সেকেন্ডের মধ্যে বের হয়ে যাবে"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "এটাই কি সঠিক সেটিং?"
-
-#: Xconfig/various.pm:29
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "কীবোর্ড লে-আউট: %s\n"
-
-#: Xconfig/various.pm:30
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "%s ধরণের মাউস\n"
-
-#: Xconfig/various.pm:31
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "মাউস ডিভাইস: %s\n"
-
-#: Xconfig/various.pm:33
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "মনিটর: %s\n"
-
-#: Xconfig/various.pm:34
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "মনিটরের HorizSync: %s\n"
-
-#: Xconfig/various.pm:35
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "মনিটরের VertRefresh: %s\n"
-
-#: Xconfig/various.pm:37
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "গ্রাফিক্স কার্ড: %s\n"
-
-#: Xconfig/various.pm:38
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "গ্রাফিক্স মেমরী: %s\n"
-
-#: Xconfig/various.pm:40
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "রঙের গভীরতা: %s\n"
-
-#: Xconfig/various.pm:41
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "রেজুলেশন: %s\n"
-
-#: Xconfig/various.pm:43
-#, c-format
-msgid "Xorg driver: %s\n"
-msgstr "Xorg ড্রাইভার: %s\n"
-
-#: Xconfig/various.pm:72
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "শুরু থেকেই গ্রাফিকাল ইন্টারফস থাকবে"
-
-#: Xconfig/various.pm:74
-#, c-format
-msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(Xorg) upon booting.\n"
-"Would you like Xorg to start when you reboot?"
-msgstr ""
-"বুট হবার সাথে সাথে সয়ংক্রিয়ভাবে গ্রাফিকাল ইন্টারফেস চালু হবার জন্য আমি আপনার "
-"কম্পিউটার সেট করতে পারি।\n"
-"আপনি কি রিবুটের পরে Xorg চালু করতে চান?"
-
-#: Xconfig/various.pm:87
-#, c-format
-msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
-msgstr ""
-"মনেহচ্চে আপনার গ্রাফিক কার্ডের টিভি-আউট কানেকটর আছে।\n"
-"ফ্রেম বাফার ব্যবহার করে কাজ করবার জন্য কনফিগার করা যাবে।\n"
-"\n"
-"এটার জন্য বুট করার আগে আপনার গ্রাফিক কার্ডকে টিভির সাথে সংযুক্ত করতে হবে।\n"
-"তারপরে বুটলোডারে \"TVout\" এন্ট্রি পছন্দ করতে হবে\n"
-"\n"
-"আপনার কি এই সুবিধাটি আছে?"
-
-#: Xconfig/various.pm:99
-#, c-format
-msgid "What norm is your TV using?"
-msgstr "আপনি কি ধরণের টিভি ব্যবহার করছেন?"
-
-# সাম:
-#: Xconfig/xfree.pm:648
-#, c-format
-msgid ""
-"_:weird aspect ratio\n"
-"other"
-msgstr "অনান্য"
-
-#: any.pm:153 harddrake/sound.pm:195 interactive.pm:474 pkgs.pm:474
-#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
-#: standalone/drakups:99 standalone/drakxtv:92 standalone/harddrake2:375
-#: standalone/service_harddrake:235
+#: any.pm:157 diskdrake/interactive.pm:422 diskdrake/interactive.pm:617
+#: diskdrake/interactive.pm:798 diskdrake/interactive.pm:842
+#: diskdrake/interactive.pm:904 diskdrake/interactive.pm:1188 do_pkgs.pm:209
+#: do_pkgs.pm:255 harddrake/sound.pm:195 interactive.pm:576
#, c-format
msgid "Please wait"
msgstr "অনুগ্রহ করে অপেক্ষা করুন"
-#: any.pm:153
+#: any.pm:157
#, c-format
msgid "Bootloader installation in progress"
msgstr "বুট লোডার ইনস্টল করা হচ্ছে"
-#: any.pm:164
+#: any.pm:168
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -870,12 +44,12 @@ msgstr ""
"উইন্ডোজ সমস্যা।\n"
"নতুন একটি ভলিউম আই-ডি দেয়া হবে?"
-#: any.pm:175
+#: any.pm:179
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Bootloader ইনষ্টলেশন ব্যর্থ হয়েছে। এ সমস্ত ত্রুটি ঘটেছে:"
-#: any.pm:181
+#: any.pm:185
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -891,7 +65,7 @@ msgstr ""
" তারপর টাইপ করুন: shut-down\n"
"পরবর্তীতে বুট হওয়ার সময় বুটলোডার প্রম্প্‌ট দেখতে পাওয়া উচিত।"
-#: any.pm:219
+#: any.pm:223
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -907,257 +81,268 @@ msgstr ""
"\n"
"আপনি কোন ড্রাইভ থেকে বুট করছেন?"
-#: any.pm:242 help.pm:740
+#: any.pm:246
#, c-format
msgid "First sector of drive (MBR)"
msgstr "ড্রাইভের প্রথম সেক্টর (MBR)"
-#: any.pm:243
+#: any.pm:247
#, c-format
msgid "First sector of the root partition"
msgstr "রুট পার্টিশনের প্রথম সেক্টর"
-#: any.pm:245
+#: any.pm:249
#, c-format
msgid "On Floppy"
msgstr "ফ্লপি তে"
-#: any.pm:247 help.pm:740 printer/printerdrake.pm:4203
+#: any.pm:251
#, c-format
msgid "Skip"
msgstr "উপেক্ষা"
-#: any.pm:251
+#: any.pm:255
#, c-format
msgid "LILO/grub Installation"
msgstr "LILO/grub ইনস্টলেশন"
-#: any.pm:252
+#: any.pm:257
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "আপনি bootloader টি কোথায় ইনস্টল করতে চান?"
-#: any.pm:278 standalone/drakboot:269
+#: any.pm:284
#, c-format
msgid "Boot Style Configuration"
msgstr "বুটের ধরণ কনফিগারেশন"
-#: any.pm:280 any.pm:281 any.pm:314 any.pm:315
+#: any.pm:294 any.pm:326 any.pm:327
#, c-format
msgid "Bootloader main options"
msgstr "বুটলোডারের আসল অপশনসমুহ"
-#: any.pm:286
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "মেগাবাইটে র‌্যমের সাইজ প্রদান করুন"
-
-#: any.pm:288
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "``নিয়ন্ত্রিত কমান্ড লাইন অপশন'' অপশনটি পাসওয়ার্ড ছাড়া ব্যবহার করা যাবে না"
-
-#: any.pm:289 any.pm:628 authentication.pm:192
-#, c-format
-msgid "The passwords do not match"
-msgstr "পাসওয়ার্ডটি মিলছে না"
-
-#: any.pm:289 any.pm:628 authentication.pm:192 diskdrake/interactive.pm:1336
+#: any.pm:299
#, c-format
-msgid "Please try again"
-msgstr "অনুগ্রহ করে আবার চেষ্ট করুন"
+msgid "Bootloader"
+msgstr "বুটলোডার"
-#: any.pm:294 any.pm:319
+#: any.pm:300 any.pm:331
#, c-format
msgid "Bootloader to use"
msgstr "ব্যবহারের জন্য বুটলোডার"
-#: any.pm:296 any.pm:321
+#: any.pm:302 any.pm:333
#, c-format
msgid "Boot device"
msgstr "বুট ডিভাইস"
-#: any.pm:298
+#: any.pm:304
+#, c-format
+msgid "Main options"
+msgstr ""
+
+#: any.pm:305
#, c-format
msgid "Delay before booting default image"
msgstr "স্বাভাবিক ইমেজ লোড করার আগে দেরী করো"
-#: any.pm:299
+#: any.pm:306
#, c-format
msgid "Enable ACPI"
msgstr "ACPI এনেবল করো"
-#: any.pm:301
-#, c-format
-msgid "Force no APIC"
-msgstr "APIC-র অনুপস্থিতিতে জোর দাও"
+#: any.pm:307
+#, fuzzy, c-format
+msgid "Enable APIC"
+msgstr "ACPI এনেবল করো"
-#: any.pm:303
-#, c-format
-msgid "Force No Local APIC"
-msgstr "স্থানীয়ভাবে APIC-র অনুপস্থিতিতে জোর দাও"
+#: any.pm:308
+#, fuzzy, c-format
+msgid "Enable Local APIC"
+msgstr "ACPI এনেবল করো"
-#: any.pm:305 any.pm:662 authentication.pm:197 diskdrake/smbnfs_gtk.pm:180
-#: network/netconnect.pm:584 printer/printerdrake.pm:1867
-#: printer/printerdrake.pm:1988 standalone/drakbackup:1650
-#: standalone/drakbackup:3641 standalone/drakups:297
+#: any.pm:310 any.pm:686 authentication.pm:196 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "পাসওয়ার্ড"
-#: any.pm:306 any.pm:663 authentication.pm:198
+#: any.pm:312 authentication.pm:207
+#, c-format
+msgid "The passwords do not match"
+msgstr "পাসওয়ার্ডটি মিলছে না"
+
+#: any.pm:312 authentication.pm:207 diskdrake/interactive.pm:1348
+#, c-format
+msgid "Please try again"
+msgstr "অনুগ্রহ করে আবার চেষ্ট করুন"
+
+#: any.pm:313
+#, fuzzy, c-format
+msgid "You can not use a password with %s"
+msgstr "আপনি %s মাউন্ট পয়েন্টের জন্য একটি এনক্রিপটেড ফাইল ব্যবহার করতে পারবেন"
+
+#: any.pm:316 any.pm:687 authentication.pm:197
#, c-format
msgid "Password (again)"
msgstr "পাসওয়ার্ড (পুনরায়)"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "Restrict command line options"
msgstr "কমান্ডলইন অপশনে বাঁধা দাও"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "restrict"
msgstr "বাঁধা দাও"
-#: any.pm:309
+#: any.pm:318
+#, c-format
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr "``নিয়ন্ত্রিত কমান্ড লাইন অপশন'' অপশনটি পাসওয়ার্ড ছাড়া ব্যবহার করা যাবে না"
+
+#: any.pm:320
#, c-format
msgid "Clean /tmp at each boot"
msgstr "প্রতি বুটে /tmp পরিষ্কার করো"
-#: any.pm:310
+#: any.pm:321
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "যদি প্রয়োজন হয় যথাযথ RAM লাগবে (পাওয়া গেছে %d RAM)"
-#: any.pm:320
+#: any.pm:322
+#, c-format
+msgid "Give the ram size in MB"
+msgstr "মেগাবাইটে র‌্যমের সাইজ প্রদান করুন"
+
+#: any.pm:332
#, c-format
msgid "Init Message"
msgstr "Init বার্তা"
-#: any.pm:322
+#: any.pm:334
#, c-format
msgid "Open Firmware Delay"
msgstr "বিলম্বিত ওপেন ফার্মওয়্যার"
-#: any.pm:323
+#: any.pm:335
#, c-format
msgid "Kernel Boot Timeout"
msgstr "কার্নাল বুটের সময় অতিক্রান্ত হয়েছে"
-#: any.pm:324
+#: any.pm:336
#, c-format
msgid "Enable CD Boot?"
msgstr "সিডি বুট সক্রিয় করা হবে?"
-#: any.pm:325
+#: any.pm:337
#, c-format
msgid "Enable OF Boot?"
msgstr "OF বুট সক্রিয় করা হবে?"
-#: any.pm:326
+#: any.pm:338
#, c-format
msgid "Default OS?"
msgstr "স্বাভাবিক অবস্থায় ব্যবহৃত OS?"
-#: any.pm:380
+#: any.pm:404
#, c-format
msgid "Image"
msgstr "ইমেজ"
-#: any.pm:381 any.pm:391
+#: any.pm:405 any.pm:418
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:382 any.pm:404
+#: any.pm:406 any.pm:431
#, c-format
msgid "Append"
msgstr "যুক্ত"
-#: any.pm:384 standalone/drakboot:271 standalone/drakboot:275
+#: any.pm:408
+#, c-format
+msgid "Xen append"
+msgstr ""
+
+#: any.pm:411
#, c-format
msgid "Video mode"
msgstr "ভিডিওর ধরণ"
-#: any.pm:386
+#: any.pm:413
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:387
+#: any.pm:414
#, c-format
msgid "Network profile"
msgstr "নেটওয়ার্ক প্রোফাইল"
-#: any.pm:396 any.pm:401 any.pm:403 diskdrake/interactive.pm:450
+#: any.pm:423 any.pm:428 any.pm:430 diskdrake/interactive.pm:443
#, c-format
msgid "Label"
msgstr "শিরোনাম"
-#: any.pm:398 any.pm:408 harddrake/v4l.pm:438 standalone/drakbackup:2104
-#: standalone/draksec:52
+#: any.pm:425 any.pm:433 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "স্বাভাবিক"
-#: any.pm:405
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd-র সাইজ"
-
-#: any.pm:407
+#: any.pm:432
#, c-format
msgid "NoVideo"
msgstr "কোন ভিডিও নেই"
-#: any.pm:418
+#: any.pm:443
#, c-format
msgid "Empty label not allowed"
msgstr "খালি শিরোনাম গ্রহণযোগ্য নয়"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a kernel image"
msgstr "আপনাকে অবশ্যই একটি কার্নালের ইমেজ নির্ধারণ করে দিতে হবে"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a root partition"
msgstr "আপনাকে অবশ্যই একটি রুট পার্টিশন নির্ধারণ করে দিতে হবে"
-#: any.pm:420
+#: any.pm:445
#, c-format
msgid "This label is already used"
msgstr "এই শিরোনামটি আগেই ব্যবহার হয়েছে"
-#: any.pm:434
+#: any.pm:459
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "আপনি কি ধরণের এন্ট্রি যোগ করতে চান?"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Linux"
msgstr "লিনাক্স"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Other OS (SunOS...)"
msgstr "অন্যান্য OS (SunOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (MacOS...)"
msgstr "অন্যান্য OS (MacOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (Windows...)"
msgstr "অন্যান্য OS (Windows...)"
-#: any.pm:464
+#: any.pm:489
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -1166,93 +351,88 @@ msgstr ""
"এপর্যন্ত আপনার বুটমেনুর এন্ট্রিগুলি এখানে।\n"
"আপনি অন্যান্য এন্ট্রি তৈরী করতে পারেন অথবা আগের এন্ট্রিগুলি পরিবর্তন করতে পারেন।"
-#: any.pm:614
+#: any.pm:640
#, c-format
msgid "access to X programs"
msgstr "X প্রোগ্রামসমূহে প্রবেশাধিকার"
-#: any.pm:615
+#: any.pm:641
#, c-format
msgid "access to rpm tools"
msgstr "RPM টুলে প্রবেশাধিকার"
-#: any.pm:616
+#: any.pm:642
#, c-format
msgid "allow \"su\""
msgstr "\"su\" গ্রহন করো"
-#: any.pm:617
+#: any.pm:643
#, c-format
msgid "access to administrative files"
msgstr "এডমিনিষ্ট্রেশন সংক্রান্ত ফাইলে প্রবেশাধিকার"
-#: any.pm:618
+#: any.pm:644
#, c-format
msgid "access to network tools"
msgstr "নেটওয়ার্ক টুলে প্রবেশাধিকার"
-#: any.pm:619
+#: any.pm:645
#, c-format
msgid "access to compilation tools"
msgstr "compilation টুলে প্রবেশাধিকার"
-#: any.pm:624
+#: any.pm:650
#, c-format
msgid "(already added %s)"
msgstr "(%s আগেই যোগ করা হয়েছে)"
-#: any.pm:629
-#, c-format
-msgid "This password is too simple"
-msgstr "পাসওয়ার্ডটা খুবই সাধারণ"
-
-#: any.pm:630
+#: any.pm:657
#, c-format
msgid "Please give a user name"
msgstr "অনুগ্রহ করে একটি উইজার নেম দিন"
-#: any.pm:631
+#: any.pm:658
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "ইউজারনেমে অবশ্যই ছোটহাতের অক্ষর, নম্বর \"-\" এবং \"_\" থাকতে হবে"
-#: any.pm:632
+#: any.pm:659
#, c-format
msgid "The user name is too long"
msgstr "ইউজারনেমটি অনেক বড়"
-#: any.pm:633
+#: any.pm:660
#, c-format
msgid "This user name has already been added"
msgstr "এই ইউজারনেমটি এর আগেই যোগ করা হয়েছে"
-#: any.pm:634 any.pm:665
+#: any.pm:661 any.pm:689
#, c-format
msgid "User ID"
msgstr "ব্যবহারকারীর ID"
-#: any.pm:635 any.pm:666
+#: any.pm:662 any.pm:690
#, c-format
msgid "Group ID"
msgstr "দলের ID"
-#: any.pm:638
+#: any.pm:665
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "অপশন %s-কে অবশ্যই একটি সংখ্যা হতে হবে!"
-#: any.pm:639
+#: any.pm:666
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:644 standalone/draksambashare:1214
+#: any.pm:671
#, c-format
msgid "Add user"
msgstr "ইউজার যোগ করো"
-#: any.pm:646
+#: any.pm:673
#, c-format
msgid ""
"Enter a user\n"
@@ -1261,99 +441,95 @@ msgstr ""
"একটি ইউজার প্রবেশ করান\n"
"%s"
-#: any.pm:649 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:154
-#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:81 help.pm:531
-#: interactive/http.pm:151 printer/printerdrake.pm:197
-#: printer/printerdrake.pm:382 printer/printerdrake.pm:5010
-#: standalone/drakbackup:2836 standalone/scannerdrake:685
-#: standalone/scannerdrake:835
+#: any.pm:676 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:166
+#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:82
+#: interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "হয়েছে"
-#: any.pm:650 help.pm:52
+#: any.pm:677
#, c-format
msgid "Accept user"
msgstr "ইউজার গ্রহন করো"
-#: any.pm:660
+#: any.pm:682
#, c-format
msgid "Real name"
msgstr "আসল নাম"
-#: any.pm:661 standalone/drakbackup:1645
+#: any.pm:685
#, c-format
msgid "Login name"
msgstr "লগ-ইন নাম"
-#: any.pm:664
+#: any.pm:688
#, c-format
msgid "Shell"
msgstr "শেল"
-#: any.pm:668
-#, c-format
-msgid "Icon"
-msgstr "আইকন"
-
-#: any.pm:715 security/l10n.pm:14
+#: any.pm:735 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "সয়ংক্রিয় লগ-ইন"
-#: any.pm:716
+#: any.pm:736
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"আমি আপনার কম্পিউটারকে সয়ংক্রিয়ভাবে একটি ইউজারকে লগইন করার জন্য সেট করতে পারি।"
-#: any.pm:717
+#: any.pm:737
#, fuzzy, c-format
msgid "Use this feature"
msgstr "এই সুবিধাটি কি আপনি ব্যবহার করতে চান?"
-#: any.pm:718
+#: any.pm:738
#, c-format
msgid "Choose the default user:"
msgstr "স্বাভাবিক ব্যবহারকারীকে পছন্দ করুন:"
-#: any.pm:719
+#: any.pm:739
#, c-format
msgid "Choose the window manager to run:"
msgstr "রান করার জন্য উইন্ডো ম্যানেজারকে পছন্দ করুন:"
-#: any.pm:740
+#: any.pm:767
#, c-format
msgid "License agreement"
msgstr "লাইসেন্স এগ্রিমেন্ট"
-#: any.pm:745
+#: any.pm:770 diskdrake/dav.pm:26
+#, c-format
+msgid "Quit"
+msgstr "বাহির"
+
+#: any.pm:773
#, c-format
msgid "Release Notes"
msgstr "সংস্করণ মন্তব্য"
-#: any.pm:748 help.pm:15 install_steps_gtk.pm:539
-#: install_steps_interactive.pm:715 standalone/drakautoinst:214
+#: any.pm:776
#, c-format
msgid "Accept"
msgstr "গ্রহণ"
-#: any.pm:748 install_steps_gtk.pm:539 install_steps_interactive.pm:715
+#: any.pm:776
#, c-format
msgid "Refuse"
msgstr "অস্বীকার"
-#: any.pm:765 any.pm:833
+#: any.pm:795 any.pm:863
#, c-format
msgid "Please choose a language to use."
msgstr "ব্যবহার করার জন্য একটি ভাষা পছন্দ করুন"
-#: any.pm:766 any.pm:834
+#: any.pm:796 any.pm:864
#, c-format
msgid "Language choice"
msgstr "পছন্দনীয় ভাষা"
-#: any.pm:794
+#: any.pm:826
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
@@ -1364,70 +540,72 @@ msgstr ""
"আপনি যেই ভাষাটি ইনস্টল করতে চান তা পছন্দ করুন।\n"
"ইনস্টল শেষে রি-স্টার্ট করার পরে সেই ভাষাগুলি উপলব্ধ হবে।"
-#: any.pm:797
+#: any.pm:829
#, c-format
msgid "Multi languages"
msgstr ""
-#: any.pm:813 any.pm:842 help.pm:648
+#: any.pm:841 any.pm:872
#, c-format
-msgid "Use Unicode by default"
-msgstr "স্বাভাবিকভাবে ইউনিকোড ব্যবহার করো"
+msgid "Old compatibility (non UTF-8) encoding"
+msgstr ""
-#: any.pm:814 help.pm:648
+#: any.pm:843
#, c-format
msgid "All languages"
msgstr "সমস্থ ভাষা"
-#: any.pm:888 help.pm:567 help.pm:856 install_steps_interactive.pm:932
+#: any.pm:918
#, c-format
msgid "Country / Region"
msgstr "দেশ / স্থান"
-#: any.pm:890
+#: any.pm:920
#, c-format
msgid "Please choose your country."
msgstr "অনুগ্রহ করে তোমার দেশ পছন্দ করো।"
-#: any.pm:892
+#: any.pm:922
#, c-format
msgid "Here is the full list of available countries"
msgstr "উপলব্ধ সমস্থ দেশের নাম এখানে রয়েছে"
-#: any.pm:893
+#: any.pm:923
#, c-format
msgid "Other Countries"
msgstr "অন্যান্য দেশসমুহ"
-#: any.pm:893 help.pm:52 help.pm:410 help.pm:432 help.pm:648 help.pm:723
-#: interactive.pm:397
+#: any.pm:923 interactive.pm:477
#, c-format
msgid "Advanced"
msgstr "উন্নত"
-#: any.pm:901
+#: any.pm:929
#, c-format
msgid "Input method:"
msgstr "ইনপুট মাধ্যম:"
-#: any.pm:904 install_any.pm:422 network/netconnect.pm:317
-#: network/netconnect.pm:322 network/netconnect.pm:1237 network/wireless.pm:7
-#: printer/printerdrake.pm:117
+#: any.pm:932
#, c-format
msgid "None"
msgstr "একটিও না"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "No sharing"
msgstr "শেয়ারিং নেই"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "Allow all users"
msgstr "সব ব্যবহারকারীদের গ্রহণ করো"
-#: any.pm:1025
+#: any.pm:1012
+#, c-format
+msgid "Custom"
+msgstr "ব্যবস্থা"
+
+#: any.pm:1016
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1437,7 +615,7 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr "আপনি কি ব্যবহারকারীদের কিছু ডিরেক্টরি শেয়ার করতে দিতে চান?\n"
-#: any.pm:1037
+#: any.pm:1028
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -1445,7 +623,7 @@ msgid ""
msgstr ""
"NFS: ঐতিহ্যগত ইউনিক্স ফাইল শেয়ারিং সিস্টেম, যা ম্যাক এবং উইন্ডোজে স্বল্প সমর্থিত।"
-#: any.pm:1040
+#: any.pm:1031
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -1454,7 +632,7 @@ msgstr ""
"SMB: উইন্ডোজ, ম্যাক ও-এস এক্স এবং অনেক আধুনিক লিনাক্স সিস্টেম কর্তৃক ব্যবহৃত ফাইল "
"শেয়ারিং সিস্টেম।"
-#: any.pm:1048
+#: any.pm:1039
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -1462,23 +640,17 @@ msgstr ""
"আপনি NFS বা SMB ব্যবহার করে ফাইল পাঠাতে পারেন। যেটি আপনি ব্যবহার করতে চান "
"অনুগ্রহ করে নির্বাচন করুন।"
-#: any.pm:1073
+#: any.pm:1064
#, c-format
msgid "Launch userdrake"
msgstr "userdrake শুরু করো"
-#: any.pm:1073 printer/printerdrake.pm:4085 printer/printerdrake.pm:4088
-#: printer/printerdrake.pm:4089 printer/printerdrake.pm:4090
-#: printer/printerdrake.pm:5328 standalone/drakTermServ:321
-#: standalone/drakbackup:4245 standalone/drakbug:126 standalone/drakfont:499
-#: standalone/drakids:64 standalone/drakids:77 standalone/drakids:85
-#: standalone/draknfs:210 standalone/net_monitor:117
-#: standalone/printerdrake:583
+#: any.pm:1064 interactive/gtk.pm:747
#, c-format
msgid "Close"
msgstr "বন্ধ"
-#: any.pm:1075
+#: any.pm:1066
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -1487,6 +659,56 @@ msgstr ""
"প্রত্যেক ব্যবহারকারী গ্রুপের \"ফাইল ভাগাভাগি\" ভাগাভাগি করতে পারেন। \n"
"এই গ্রুপে একজণ ব্যবহারকারী যোগ করতে আপনি userdrake ব্যবহার করতে পারেন।"
+#: any.pm:1158
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "অনুগ্রহপূর্বক লগ-আউট করুন ও তারপর Ctrl-Alt-BackSpace চাপুন"
+
+#: any.pm:1162
+#, c-format
+msgid "You need to log out and back in again for changes to take effect"
+msgstr "পরিবর্তন কার্যকর করার পূর্বে আপনাকে লগ-আউট করে তারপর পুণরায় লগ-ইন করতে হবে"
+
+#: any.pm:1212
+#, c-format
+msgid "Timezone"
+msgstr "টাইমজোন"
+
+#: any.pm:1212
+#, c-format
+msgid "Which is your timezone?"
+msgstr "আপনার টাইমজোন কি?"
+
+#: any.pm:1224 any.pm:1226
+#, c-format
+msgid "Date, Clock & Time Zone Settings"
+msgstr ""
+
+#: any.pm:1227
+#, c-format
+msgid "What is the best time?"
+msgstr ""
+
+#: any.pm:1231
+#, fuzzy, c-format
+msgid "%s (hardware clock set to UTC)"
+msgstr "হার্ডওয়্যারে ঘড়ি GMT-এ সেট করা"
+
+#: any.pm:1232
+#, fuzzy, c-format
+msgid "%s (hardware clock set to local time)"
+msgstr "হার্ডওয়্যারে ঘড়ি GMT-এ সেট করা"
+
+#: any.pm:1234
+#, c-format
+msgid "NTP Server"
+msgstr "NTP সার্ভার"
+
+#: any.pm:1235
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr "সয়ংক্রিয়ভাবে সময় মেলাও (NTP ব্যবহার করে)"
+
#: authentication.pm:23
#, c-format
msgid "Local file"
@@ -1609,7 +831,7 @@ msgstr "LDAP অনুমোদন"
msgid "LDAP Base dn"
msgstr "LDAP বেইজ dn"
-#: authentication.pm:98 share/compssUsers.pl:102
+#: authentication.pm:98
#, c-format
msgid "LDAP Server"
msgstr "LDAP সার্ভার"
@@ -1639,14 +861,12 @@ msgstr "নিরাপত্তা লে-আউট (SASL/Kerberos)"
msgid "Authentication Active Directory"
msgstr "নির্ভরযোগ্য সচল ডিরেক্টরি"
-#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:181
+#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "ডোমেইন"
-#: authentication.pm:124 diskdrake/dav.pm:63 help.pm:147
-#: printer/printerdrake.pm:75 share/compssUsers.pl:82
-#: standalone/drakTermServ:296
+#: authentication.pm:124 diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "সার্ভার"
@@ -1734,49 +954,39 @@ msgstr "ডোমেইন অ্যাডমিনের ব্যবহার
msgid "Domain Admin Password"
msgstr "ডোমেইন অ্যাডমিনের পাসওয়ার্ড"
-# sam: authentication
-#: authentication.pm:181
+#: authentication.pm:181 authentication.pm:198
#, c-format
-msgid "Set administrator (root) password and network authentication methods"
-msgstr ""
-"আ্যাডমিনিস্ট্রেটর (root) পাসওয়ার্ড এবং নেটওয়ার্ক পরিচয় প্রমাণ প্রক্রিয়ার নীতিমালা "
-"সেট করুন"
+msgid "Authentication"
+msgstr "অনুমোদন"
#: authentication.pm:182
#, c-format
msgid "Set administrator (root) password"
msgstr "আ্যাডমিনিস্ট্রেটর (root) পাসওয়ার্ড সেট করুন"
-#: authentication.pm:183 standalone/drakvpn:1111
+#: authentication.pm:184
#, c-format
msgid "Authentication method"
msgstr "নির্ভরযোগ্য নিয়ম"
-# -PO: keep this short or else the buttons will not fit in the window
#. -PO: keep this short or else the buttons will not fit in the window
-#: authentication.pm:188 help.pm:723
+#: authentication.pm:189
#, c-format
msgid "No password"
msgstr "পাসওয়ার্ড ছাড়া"
-#: authentication.pm:194
+#: authentication.pm:210
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "এই পাসওয়ার্ডটি খুবই ছোট (এটা অবশ্যই %d অক্ষরের হতে হবে)"
-#: authentication.pm:199 network/netconnect.pm:322 network/netconnect.pm:585
-#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:481
-#, c-format
-msgid "Authentication"
-msgstr "অনুমোদন"
-
-#: authentication.pm:331
+#: authentication.pm:351
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "কোন NIS ডোমেইন ছাড়া ব্রডকাষ্ট ব্যবহার করা যাবেনা"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:767
+#: bootloader.pm:880
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1791,43 +1001,43 @@ msgstr ""
"wait for default boot.\n"
"\n"
-#: bootloader.pm:909
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "গ্রাফিকাল মেনুর সাথে LILO"
-
-#: bootloader.pm:910
+#: bootloader.pm:1028
#, c-format
msgid "LILO with text menu"
msgstr "টেক্সট মেনুর সাথে LILO"
-#: bootloader.pm:911
+#: bootloader.pm:1029
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:912
+#: bootloader.pm:1030
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:913
+#: bootloader.pm:1031
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:990
+#: bootloader.pm:1032
+#, c-format
+msgid "SILO"
+msgstr ""
+
+#: bootloader.pm:1112
#, c-format
msgid "not enough room in /boot"
msgstr "/boot -এ বেশী জায়গা নেই"
-#: bootloader.pm:1483
+#: bootloader.pm:1679
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "আপনি %s পার্টিশনে বুটলোডার ইনস্টল করতে পারবেননা\n"
# renumber = রি-নাম্বার লিখলাম। আসলটা আমি জানিনা
-#: bootloader.pm:1523
+#: bootloader.pm:1732
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1835,7 +1045,7 @@ msgid ""
msgstr ""
"পার্টিশন রি-নাম্বার করার কারনে আপনার বুটলোডারের কনফিগারেশন অবশ্যই আপডেট করতে হবে"
-#: bootloader.pm:1536
+#: bootloader.pm:1745
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
@@ -1844,242 +1054,55 @@ msgstr ""
"বুটলোডার সঠিকভাবে ইনস্টল হতে পারবেনা। আপনাকে rescue বুট করতে হবে এবং \"%s\" "
"পছন্দ করতে হবে"
-#: bootloader.pm:1537
+#: bootloader.pm:1746
#, c-format
msgid "Re-install Boot Loader"
msgstr "বুট লোডার রি-ইনস্টল করো"
-#: common.pm:134
+#: common.pm:129
+#, fuzzy, c-format
+msgid "B"
+msgstr "কেবি"
+
+#: common.pm:129
#, c-format
msgid "KB"
msgstr "কেবি"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "MB"
msgstr "এমবি"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "GB"
msgstr "জিবি"
-#: common.pm:142
+#: common.pm:137
#, c-format
msgid "TB"
msgstr "টিবি"
-#: common.pm:150
+#: common.pm:145
#, c-format
msgid "%d minutes"
msgstr "%d মিনিট"
-#: common.pm:152
+#: common.pm:147
#, c-format
msgid "1 minute"
msgstr "১ মিনিট"
-#: common.pm:154
+#: common.pm:149
#, c-format
msgid "%d seconds"
msgstr "%d সেকেন্ড"
-#: common.pm:260
-#, c-format
-msgid "kdesu missing"
-msgstr "kdesu পাওয়া যাচ্ছে না"
-
-#: common.pm:263
-#, c-format
-msgid "consolehelper missing"
-msgstr "consolehelper পাওয়া যাচ্ছে না"
-
-#: crypto.pm:13 crypto.pm:48 lang.pm:207 network/adsl_consts.pm:66
-#: network/adsl_consts.pm:75 network/adsl_consts.pm:84
-#, c-format
-msgid "Austria"
-msgstr "অষ্ট্রিয়া"
-
-#: crypto.pm:14 crypto.pm:47 lang.pm:208 standalone/drakxtv:48
-#, c-format
-msgid "Australia"
-msgstr "অষ্ট্রেলিয়া"
-
-#: crypto.pm:15 crypto.pm:49 lang.pm:214 network/adsl_consts.pm:93
-#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
-#: network/adsl_consts.pm:123 network/netconnect.pm:44
-#, c-format
-msgid "Belgium"
-msgstr "বেলজিয়াম"
-
-#: crypto.pm:16 crypto.pm:50 lang.pm:223 network/adsl_consts.pm:132
-#: network/adsl_consts.pm:143 network/adsl_consts.pm:152
-#: network/adsl_consts.pm:161
-#, c-format
-msgid "Brazil"
-msgstr "ব্রাজিল"
-
-#: crypto.pm:17 crypto.pm:51 lang.pm:230
-#, c-format
-msgid "Canada"
-msgstr "কানাডা"
-
-#: crypto.pm:18 crypto.pm:74 lang.pm:235 network/adsl_consts.pm:891
-#: network/adsl_consts.pm:900 network/adsl_consts.pm:911
-#, c-format
-msgid "Switzerland"
-msgstr "সুইজারল্যান্ড"
-
-#: crypto.pm:19 lang.pm:242
-#, c-format
-msgid "Costa Rica"
-msgstr "কোষ্টা রিকা"
-
-#: crypto.pm:20 crypto.pm:52 lang.pm:248 network/adsl_consts.pm:368
-#, c-format
-msgid "Czech Republic"
-msgstr "চেক রিপাবলিক"
-
-#: crypto.pm:21 crypto.pm:57 lang.pm:249 network/adsl_consts.pm:499
-#: network/adsl_consts.pm:508
-#, c-format
-msgid "Germany"
-msgstr "জার্মানী"
-
-#: crypto.pm:22 crypto.pm:53 lang.pm:251 network/adsl_consts.pm:378
-#, c-format
-msgid "Denmark"
-msgstr "ডেনমার্ক"
-
-#: crypto.pm:23 crypto.pm:54 lang.pm:256
-#, c-format
-msgid "Estonia"
-msgstr "এস্তোনিয়া"
-
-#: crypto.pm:24 crypto.pm:72 lang.pm:260 network/adsl_consts.pm:759
-#: network/adsl_consts.pm:770 network/adsl_consts.pm:781
-#: network/adsl_consts.pm:792 network/adsl_consts.pm:801
-#: network/adsl_consts.pm:810 network/adsl_consts.pm:819
-#: network/adsl_consts.pm:828 network/adsl_consts.pm:837
-#: network/adsl_consts.pm:846 network/adsl_consts.pm:855
-#: network/adsl_consts.pm:864 network/adsl_consts.pm:873
-#, c-format
-msgid "Spain"
-msgstr "স্পেন"
-
-#: crypto.pm:25 crypto.pm:55 lang.pm:262 network/adsl_consts.pm:387
-#, c-format
-msgid "Finland"
-msgstr "ফিনল্যান্ড"
-
-#: crypto.pm:26 crypto.pm:56 lang.pm:267 network/adsl_consts.pm:396
-#: network/adsl_consts.pm:408 network/adsl_consts.pm:420
-#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
-#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
-#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
-#: network/netconnect.pm:41
-#, c-format
-msgid "France"
-msgstr "ফ্রান্স"
-
-#: crypto.pm:27 crypto.pm:58 lang.pm:280 network/adsl_consts.pm:519
-#, c-format
-msgid "Greece"
-msgstr "গ্রীস"
-
-#: crypto.pm:28 crypto.pm:59 lang.pm:291 network/adsl_consts.pm:528
-#, c-format
-msgid "Hungary"
-msgstr "হাঙ্গেরী"
-
-#: crypto.pm:29 crypto.pm:60 lang.pm:293 network/adsl_consts.pm:537
-#: standalone/drakxtv:47
-#, c-format
-msgid "Ireland"
-msgstr "আয়ারল্যান্ড"
-
-#: crypto.pm:30 crypto.pm:61 lang.pm:294 network/adsl_consts.pm:546
-#, c-format
-msgid "Israel"
-msgstr "ইসরাঈল"
-
-#: crypto.pm:31 crypto.pm:62 lang.pm:300 network/adsl_consts.pm:557
-#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
-#: network/adsl_consts.pm:589 network/netconnect.pm:43 standalone/drakxtv:47
-#, c-format
-msgid "Italy"
-msgstr "ইতালী"
-
-#: crypto.pm:32 crypto.pm:63 lang.pm:303
-#, c-format
-msgid "Japan"
-msgstr "জাপান"
-
-#: crypto.pm:33 crypto.pm:64 lang.pm:352 network/adsl_consts.pm:620
-#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
-#: network/adsl_consts.pm:647 network/netconnect.pm:42
-#, c-format
-msgid "Netherlands"
-msgstr "নেদারল্যান্ড"
-
-#: crypto.pm:34 crypto.pm:66 lang.pm:353 network/adsl_consts.pm:656
-#: network/adsl_consts.pm:661 network/adsl_consts.pm:666
-#: network/adsl_consts.pm:671 network/adsl_consts.pm:676
-#: network/adsl_consts.pm:681 network/adsl_consts.pm:686
-#, c-format
-msgid "Norway"
-msgstr "নরওয়ে"
-
-#: crypto.pm:35 crypto.pm:65 lang.pm:357
-#, c-format
-msgid "New Zealand"
-msgstr "নিউজিল্যান্ড"
-
-#: crypto.pm:36 crypto.pm:67 lang.pm:365 network/adsl_consts.pm:693
-#: network/adsl_consts.pm:704
-#, c-format
-msgid "Poland"
-msgstr "পোল্যান্ড"
-
-#: crypto.pm:37 crypto.pm:68 lang.pm:370 network/adsl_consts.pm:716
-#, c-format
-msgid "Portugal"
-msgstr "পর্তুগাল"
-
-#: crypto.pm:38 crypto.pm:69 lang.pm:376 network/adsl_consts.pm:725
-#, c-format
-msgid "Russia"
-msgstr "রাশিয়া"
-
-#: crypto.pm:39 crypto.pm:73 lang.pm:382 network/adsl_consts.pm:882
-#, c-format
-msgid "Sweden"
-msgstr "সুইডেন"
-
-#: crypto.pm:40 crypto.pm:70 lang.pm:387
-#, c-format
-msgid "Slovakia"
-msgstr "স্লোভাকিয়া"
-
-#: crypto.pm:41 crypto.pm:76 lang.pm:401 network/adsl_consts.pm:920
-#, c-format
-msgid "Thailand"
-msgstr "থাইল্যান্ড"
-
-#: crypto.pm:42 crypto.pm:75 lang.pm:411
-#, c-format
-msgid "Taiwan"
-msgstr "তাইওয়ান"
-
-#: crypto.pm:43 crypto.pm:71 lang.pm:430 standalone/drakxtv:49
-#, c-format
-msgid "South Africa"
-msgstr "দক্ষিন আফ্রিকা"
-
-#: crypto.pm:77 crypto.pm:112 lang.pm:416 network/netconnect.pm:45
+#: common.pm:298
#, c-format
-msgid "United States"
-msgstr "যুক্তরাষ্ট্র"
+msgid "command %s missing"
+msgstr ""
#: diskdrake/dav.pm:17
#, c-format
@@ -2101,23 +1124,46 @@ msgstr ""
msgid "New"
msgstr "নতুন"
-#: diskdrake/dav.pm:61 diskdrake/interactive.pm:456 diskdrake/smbnfs_gtk.pm:74
+#: diskdrake/dav.pm:61 diskdrake/interactive.pm:449 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "আন-মাউন্ট"
-#: diskdrake/dav.pm:62 diskdrake/interactive.pm:453 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:62 diskdrake/interactive.pm:446 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "মাউন্ট"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:447
-#: diskdrake/interactive.pm:679 diskdrake/interactive.pm:698
-#: diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:78
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:440
+#: diskdrake/interactive.pm:670 diskdrake/interactive.pm:688
+#: diskdrake/interactive.pm:692 diskdrake/removable.pm:23
+#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "মাউন্ট পয়েন্ট"
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:442
+#: diskdrake/interactive.pm:1047 diskdrake/removable.pm:24
+#: diskdrake/smbnfs_gtk.pm:80
+#, c-format
+msgid "Options"
+msgstr "অপশন"
+
+#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:229
+#: diskdrake/interactive.pm:242 diskdrake/interactive.pm:398
+#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:547
+#: diskdrake/interactive.pm:552 diskdrake/interactive.pm:660
+#: diskdrake/interactive.pm:922 diskdrake/interactive.pm:1092
+#: diskdrake/interactive.pm:1105 diskdrake/interactive.pm:1108
+#: diskdrake/interactive.pm:1348 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:19
+#: do_pkgs.pm:24 do_pkgs.pm:40 do_pkgs.pm:56 do_pkgs.pm:61 fsedit.pm:229
+#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
+#: scanner.pm:94 scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95
+#: wizards.pm:99 wizards.pm:121
+#, c-format
+msgid "Error"
+msgstr "ত্রুটি"
+
#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
@@ -2133,33 +1179,48 @@ msgstr "URL অবশ্যই http:// অথবা https:// দিয়ে শু
msgid "Server: "
msgstr "সার্ভার:"
-#: diskdrake/dav.pm:110 diskdrake/interactive.pm:523
-#: diskdrake/interactive.pm:1218 diskdrake/interactive.pm:1296
+#: diskdrake/dav.pm:110 diskdrake/interactive.pm:520
+#: diskdrake/interactive.pm:1230 diskdrake/interactive.pm:1308
#, c-format
msgid "Mount point: "
msgstr "মাউন্ট পয়েন্ট:"
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1303
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1315
#, c-format
msgid "Options: %s"
msgstr "অপশন: %s"
-#: diskdrake/hd_gtk.pm:52 diskdrake/interactive.pm:293
-#: diskdrake/smbnfs_gtk.pm:21 install_interactive.pm:63
-#: install_interactive.pm:217 install_interactive.pm:223
-#: install_interactive.pm:276 install_interactive.pm:281
-#: install_steps_interactive.pm:253 install_steps_interactive.pm:317
-#: steps.pm:21
+#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:286
+#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
+#: fs/partitioning_wizard.pm:47 fs/partitioning_wizard.pm:201
+#: fs/partitioning_wizard.pm:207 fs/partitioning_wizard.pm:247
+#: fs/partitioning_wizard.pm:266 fs/partitioning_wizard.pm:271
#, c-format
msgid "Partitioning"
msgstr "পার্টিশন করা হচ্ছে"
-#: diskdrake/hd_gtk.pm:92
+#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1067
+#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1130
+#, c-format
+msgid "Read carefully!"
+msgstr "সতর্কতার সাথে পড়ো!"
+
+#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr "অনুগ্রহ করে প্রথমে আপনার ডাটার একটি ব্যাকআপ করে নিন"
-#: diskdrake/hd_gtk.pm:95
+#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:222
+#, c-format
+msgid "Exit"
+msgstr "বাহির"
+
+#: diskdrake/hd_gtk.pm:94
+#, c-format
+msgid "Continue"
+msgstr "অগ্রসর"
+
+#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
@@ -2170,17 +1231,18 @@ msgstr ""
"সাথে খালি\n"
"জায়গা ছেড়ে দিন (২০৪৮ সেক্টরই যথেষ্ট)"
-#: diskdrake/hd_gtk.pm:152 help.pm:531
+#: diskdrake/hd_gtk.pm:162 interactive.pm:640 interactive/gtk.pm:719
+#: interactive/gtk.pm:740 interactive/gtk.pm:760 ugtk2.pm:923 ugtk2.pm:924
#, c-format
-msgid "Wizard"
-msgstr "সাহায্যকারী"
+msgid "Help"
+msgstr "সাহায্য"
-#: diskdrake/hd_gtk.pm:185
+#: diskdrake/hd_gtk.pm:197
#, c-format
msgid "Choose action"
msgstr "কার্য পছন্দ করুন"
-#: diskdrake/hd_gtk.pm:189
+#: diskdrake/hd_gtk.pm:201
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -2191,149 +1253,163 @@ msgstr ""
"সেটাকে আগে রি-সাইজ করার জন্য আমি পরামর্শ দিচ্ছি\n"
"(সেটাকে আগে ক্লিক করুন এবং পরে \"Resize\"-এ ক্লিক করুন)"
-#: diskdrake/hd_gtk.pm:191
+#: diskdrake/hd_gtk.pm:203
#, c-format
msgid "Please click on a partition"
msgstr "অনুগ্রহ করে একটি পার্টিশনে ক্লিক করুন"
-#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:457
-#: standalone/drakbackup:3088 standalone/drakbackup:3148
+#: diskdrake/hd_gtk.pm:217 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "বিস্তারিত"
-#: diskdrake/hd_gtk.pm:251
+#: diskdrake/hd_gtk.pm:265
#, c-format
msgid "No hard drives found"
msgstr "কোন হার্ড ড্রাইভ পাওয়া যায়নি"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:292
+#, c-format
+msgid "Unknown"
+msgstr "অজানা"
+
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Ext2"
msgstr "Ext2"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Journalised FS"
msgstr "FS জার্নালাইজ করা হয়েছে"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Swap"
msgstr "সোয়াপ"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "SunOS"
msgstr "SunOS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "HFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Windows"
msgstr "উইন্ডোজ"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1233
+#: diskdrake/hd_gtk.pm:352 services.pm:149
+#, c-format
+msgid "Other"
+msgstr "অন্যান্য"
+
+#: diskdrake/hd_gtk.pm:352 diskdrake/interactive.pm:1244
#, c-format
msgid "Empty"
msgstr "শূণ্য"
-#: diskdrake/hd_gtk.pm:340
+#: diskdrake/hd_gtk.pm:356
#, c-format
msgid "Filesystem types:"
msgstr "ফাইল সিস্টেমের ধরণ:"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:359 diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:291
+#: diskdrake/interactive.pm:392 diskdrake/interactive.pm:428
+#: diskdrake/interactive.pm:577 diskdrake/interactive.pm:751
+#: diskdrake/interactive.pm:809 diskdrake/interactive.pm:902
+#: diskdrake/interactive.pm:944 diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:1173 diskdrake/interactive.pm:1211
+#: diskdrake/interactive.pm:1347 do_pkgs.pm:16 do_pkgs.pm:35 do_pkgs.pm:53
+#: harddrake/sound.pm:279
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "পরিবর্তে ``%s'' ব্যবহার করুন"
+msgid "Warning"
+msgstr "নোটিশ"
-#: diskdrake/hd_gtk.pm:357 diskdrake/interactive.pm:472
-#, c-format
-msgid "Create"
-msgstr "তৈরী করো"
+#: diskdrake/hd_gtk.pm:380
+#, fuzzy, c-format
+msgid "This partition is already empty"
+msgstr "এই পার্টিশনটি রি-সাইজ করার মত না"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:365
-#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:625
-#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
-#: standalone/harddrake2:108 standalone/harddrake2:117
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Type"
-msgstr "ধরণ"
+msgid "Use ``Unmount'' first"
+msgstr "প্রথমে ``Unmount'' ব্যবহার করুন"
-#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: diskdrake/hd_gtk.pm:359 diskdrake/interactive.pm:457
-#: standalone/drakperm:123 standalone/printerdrake:248
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Delete"
-msgstr "মুছে ফেলো"
+msgid "Use ``%s'' instead"
+msgstr "পরিবর্তে ``%s'' ব্যবহার করুন"
-#: diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:389 diskdrake/interactive.pm:441
+#: diskdrake/interactive.pm:611 diskdrake/interactive.pm:1083
+#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "প্রথমে ``Unmount'' ব্যবহার করুন"
+msgid "Type"
+msgstr "ধরণ"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose another partition"
msgstr "অন্য একটি পার্টিশন পছন্দ করুন"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose a partition"
msgstr "একটি পার্টিশন পছন্দ করুন"
-#: diskdrake/interactive.pm:224
-#, c-format
-msgid "Exit"
-msgstr "বাহির"
-
-#: diskdrake/interactive.pm:257 help.pm:531
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Undo"
msgstr "পূর্বাবস্থা"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to normal mode"
msgstr "সাধারণ মোডে বদল করো"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to expert mode"
msgstr "দক্ষ মোডে বদল করো"
-#: diskdrake/interactive.pm:276
+#: diskdrake/interactive.pm:269 diskdrake/interactive.pm:279
+#: diskdrake/interactive.pm:1158
+#, fuzzy, c-format
+msgid "Confirmation"
+msgstr "কনফিগারেশন"
+
+#: diskdrake/interactive.pm:269
#, c-format
msgid "Continue anyway?"
msgstr "অগ্রসর হবে?"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without saving"
msgstr "সংরক্ষণ ছাড়াই বের হও"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without writing the partition table?"
msgstr "কোন পার্টিশন টেবিল না লিখেই বের হয়ে যাব?"
-#: diskdrake/interactive.pm:286
+#: diskdrake/interactive.pm:279
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "আপনি /etc/fstab -এর পরিবর্তন সেভ করতে চান?"
-#: diskdrake/interactive.pm:293 install_steps_interactive.pm:317
+#: diskdrake/interactive.pm:286 fs/partitioning_wizard.pm:247
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "পার্টিশন টেবিলের পরিবর্তনগুলি কার্যকর করবার জন্য আপনাকে রা-ষ্টার্ট করতে হবে"
# সাম
-#: diskdrake/interactive.pm:298
+#: diskdrake/interactive.pm:291
#, c-format
msgid ""
"You should format partition %s.\n"
@@ -2344,38 +1420,38 @@ msgstr ""
"অন্যথা fstab এ মাউন্ট পয়েন্ট %s এর কোন এন্ট্রি লেখা হবে না।\n"
"তবুও বের হয়ে যাব কি?"
-#: diskdrake/interactive.pm:311 help.pm:531
+#: diskdrake/interactive.pm:304
#, c-format
msgid "Clear all"
msgstr "সব বন্ধ করো"
-#: diskdrake/interactive.pm:312 help.pm:531
+#: diskdrake/interactive.pm:305
#, c-format
msgid "Auto allocate"
msgstr "সয়ংক্রিয়ভাবে সাজানো"
-#: diskdrake/interactive.pm:313 help.pm:531 help.pm:567 help.pm:607
-#: help.pm:856 install_steps_interactive.pm:98
+#: diskdrake/interactive.pm:306 diskdrake/interactive.pm:360
+#: interactive/curses.pm:457
#, c-format
msgid "More"
msgstr "আরও"
-#: diskdrake/interactive.pm:318
+#: diskdrake/interactive.pm:311
#, c-format
msgid "Hard drive information"
msgstr "হার্ড ড্রাইভের তথ্য"
-#: diskdrake/interactive.pm:350
+#: diskdrake/interactive.pm:343
#, c-format
msgid "All primary partitions are used"
msgstr "সমস্থ প্রাইমারী পার্টিশনসমূহ ব্যবহৃত হচ্ছে"
-#: diskdrake/interactive.pm:351
+#: diskdrake/interactive.pm:344
#, c-format
msgid "I can not add any more partitions"
msgstr "আমি আর পার্টিশন যোগ করতে পারবনা"
-#: diskdrake/interactive.pm:352
+#: diskdrake/interactive.pm:345
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
@@ -2384,53 +1460,53 @@ msgstr ""
"আরও পার্টিশন পাওয়ার জন্য, অনুগ্রহ করে একটি মুছে ফেলুন যাতে করে এক্সটেনডেড পার্টিশন "
"তৈরী করা যায়"
-#: diskdrake/interactive.pm:361
+#: diskdrake/interactive.pm:354
#, c-format
msgid "No supermount"
msgstr ""
-#: diskdrake/interactive.pm:362
+#: diskdrake/interactive.pm:355
#, c-format
msgid "Supermount"
msgstr ""
-#: diskdrake/interactive.pm:363
+#: diskdrake/interactive.pm:356
#, c-format
msgid "Supermount except for CDROM drives"
msgstr ""
-#: diskdrake/interactive.pm:369 help.pm:531
+#: diskdrake/interactive.pm:362
#, c-format
msgid "Save partition table"
msgstr "পার্টিশন টেবিল সংরক্ষিত করো"
-#: diskdrake/interactive.pm:370 help.pm:531
+#: diskdrake/interactive.pm:363
#, c-format
msgid "Restore partition table"
msgstr "পার্টিশন টেবিল রিষ্টোর করো"
# ;)
-#: diskdrake/interactive.pm:371 help.pm:531
+#: diskdrake/interactive.pm:364
#, c-format
msgid "Rescue partition table"
msgstr "পার্টিশন টেবিলকে বাঁচাও"
-#: diskdrake/interactive.pm:373 help.pm:531
+#: diskdrake/interactive.pm:366
#, c-format
msgid "Reload partition table"
msgstr "পার্টিশন টেবিলকে পুনরায় লোড করো"
-#: diskdrake/interactive.pm:375
+#: diskdrake/interactive.pm:368
#, c-format
msgid "Removable media automounting"
msgstr "রিমুভেবল মিডিয়া সয়ংক্রিয়ভাবে মাউন্ট করা হচ্ছে"
-#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:414
+#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:407
#, c-format
msgid "Select file"
msgstr "ফাইল সিলেক্ট করো"
-#: diskdrake/interactive.pm:400
+#: diskdrake/interactive.pm:393
#, c-format
msgid ""
"The backup partition table has not the same size\n"
@@ -2439,87 +1515,97 @@ msgstr ""
"ব্যাকআপ পার্টিশন সমান সাইজের ছিলনা\n"
"এখনো এগুবো?"
-#: diskdrake/interactive.pm:429
+#: diskdrake/interactive.pm:422
#, c-format
msgid "Trying to rescue partition table"
msgstr "পার্টিশন টেবিল বাঁচানো হচ্ছে"
-#: diskdrake/interactive.pm:435
+#: diskdrake/interactive.pm:428
#, c-format
msgid "Detailed information"
msgstr "বিস্তারিত তথ্য"
-#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:444 diskdrake/interactive.pm:764
#, c-format
msgid "Resize"
msgstr "আকার পরিবর্তন"
-#: diskdrake/interactive.pm:452
+#: diskdrake/interactive.pm:445
#, c-format
msgid "Format"
msgstr "ফরম্যাট"
-#: diskdrake/interactive.pm:454
+#: diskdrake/interactive.pm:447 diskdrake/interactive.pm:850
#, c-format
msgid "Add to RAID"
msgstr "RAID-তে যোগ করো"
-#: diskdrake/interactive.pm:455
+#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:867
#, c-format
msgid "Add to LVM"
msgstr "LVM-এ যোগ করো"
-#: diskdrake/interactive.pm:458
+#: diskdrake/interactive.pm:450
+#, c-format
+msgid "Delete"
+msgstr "মুছে ফেলো"
+
+#: diskdrake/interactive.pm:451
#, c-format
msgid "Remove from RAID"
msgstr "RAID থেকে মুছে ফেলো"
-#: diskdrake/interactive.pm:459
+#: diskdrake/interactive.pm:452
#, c-format
msgid "Remove from LVM"
msgstr "LVM থেকে মুছে ফেলো"
-#: diskdrake/interactive.pm:460
+#: diskdrake/interactive.pm:453
#, c-format
msgid "Modify RAID"
msgstr "RAID পরিবর্তন করো"
-#: diskdrake/interactive.pm:461
+#: diskdrake/interactive.pm:454
#, c-format
msgid "Use for loopback"
msgstr "loopback-এর জন্য ব্যবহার করো"
-#: diskdrake/interactive.pm:516
+#: diskdrake/interactive.pm:465
+#, c-format
+msgid "Create"
+msgstr "তৈরী করো"
+
+#: diskdrake/interactive.pm:509 diskdrake/interactive.pm:511
#, c-format
msgid "Create a new partition"
msgstr "একটি নতুন পার্টিশন তৈরী করো"
-#: diskdrake/interactive.pm:519
+#: diskdrake/interactive.pm:513
#, c-format
msgid "Start sector: "
msgstr "শুরুর সেক্টর:"
-#: diskdrake/interactive.pm:521 diskdrake/interactive.pm:938
+#: diskdrake/interactive.pm:516 diskdrake/interactive.pm:937
#, c-format
msgid "Size in MB: "
msgstr "মেগাবাইটে সাইজ:"
-#: diskdrake/interactive.pm:522 diskdrake/interactive.pm:939
+#: diskdrake/interactive.pm:518 diskdrake/interactive.pm:938
#, c-format
msgid "Filesystem type: "
msgstr "ফাইলসিস্টেমের ধরণ:"
-#: diskdrake/interactive.pm:527
+#: diskdrake/interactive.pm:524
#, c-format
msgid "Preference: "
msgstr "পছন্দ"
-#: diskdrake/interactive.pm:530
+#: diskdrake/interactive.pm:527
#, c-format
msgid "Logical volume name "
msgstr "লজিকাল ভলিউমের নাম"
-#: diskdrake/interactive.pm:560
+#: diskdrake/interactive.pm:547
#, c-format
msgid ""
"You can not create a new partition\n"
@@ -2531,48 +1617,53 @@ msgstr ""
"প্রথমে আপনাকে একটি প্রাইমারী পার্টিশন অপসরন করতে হবে এবং তারপরে এক্সটেনডেড "
"পার্টিশন তৈরী করতে হবে।"
-#: diskdrake/interactive.pm:590
+#: diskdrake/interactive.pm:577
#, c-format
msgid "Remove the loopback file?"
msgstr "লুকআপ ফাইল রিমুভ করবো?"
-#: diskdrake/interactive.pm:609
+#: diskdrake/interactive.pm:596
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "%s পার্টিশনের ধরণ পরিবর্তনের পরে সেটার সমস্থ ডাটা হারিয়ে যাবে"
-#: diskdrake/interactive.pm:621
+#: diskdrake/interactive.pm:608
#, c-format
msgid "Change partition type"
msgstr "পার্টিশনের ধরণ পরিবর্তন করো"
-#: diskdrake/interactive.pm:622 diskdrake/removable.pm:47
+#: diskdrake/interactive.pm:610 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "আপনি কোন ফাইলসিস্টেম চান?"
-#: diskdrake/interactive.pm:630
+#: diskdrake/interactive.pm:617
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "ext2 থেকে ext3-তে পরিবর্তিত হচ্ছে"
-#: diskdrake/interactive.pm:650
+#: diskdrake/interactive.pm:637 diskdrake/interactive.pm:640
#, c-format
msgid "Which volume label?"
msgstr ""
-#: diskdrake/interactive.pm:666
+#: diskdrake/interactive.pm:641
+#, fuzzy, c-format
+msgid "Label:"
+msgstr "শিরোনাম"
+
+#: diskdrake/interactive.pm:655
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "আপনি %s লুপব্যাক ফাইলকে কোথায় মাউন্ট করতে চান ?"
-#: diskdrake/interactive.pm:667
+#: diskdrake/interactive.pm:656
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "আপনি %s ডিভাইসকে কোথায় মাউন্ট করতে চান?"
-#: diskdrake/interactive.pm:672
+#: diskdrake/interactive.pm:661
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
@@ -2581,48 +1672,58 @@ msgstr ""
"এই পার্টিশনটি লুপব্যাকের জন্য ব্যবহৃত হওয়ার কারনে মাউন্টপয়েন্ট আনসেট করা যাবেনা।\n"
" আগে লুপব্যাক রিমুভ করুন"
-#: diskdrake/interactive.pm:697
+#: diskdrake/interactive.pm:691
#, c-format
msgid "Where do you want to mount %s?"
msgstr "আপনি কোথায় মাউন্ট করতে চান %s?"
-#: diskdrake/interactive.pm:721 diskdrake/interactive.pm:800
-#: install_interactive.pm:157 install_interactive.pm:189
+#: diskdrake/interactive.pm:715 diskdrake/interactive.pm:798
+#: fs/partitioning_wizard.pm:141 fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing"
msgstr "আকার পরিবর্তন করা হচ্ছে"
-#: diskdrake/interactive.pm:721
+#: diskdrake/interactive.pm:715
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "FAT ফাইল সিস্টেমের সীমা (Bound) হিসেব করা হচ্ছে"
-#: diskdrake/interactive.pm:757
+#: diskdrake/interactive.pm:751
#, c-format
msgid "This partition is not resizeable"
msgstr "এই পার্টিশনটি রি-সাইজ করার মত না"
-#: diskdrake/interactive.pm:762
+#: diskdrake/interactive.pm:756
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "এই পার্টিশনের সমস্থ ডাটা ব্যাকআপ করা উচিত্‍‌"
-#: diskdrake/interactive.pm:764
+#: diskdrake/interactive.pm:758
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "%s পার্টিশন রি-সাইজ করার পরে, এই পার্টিশনের সমস্থ ডাটা হারিয়ে যাবে"
-#: diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:765
#, c-format
msgid "Choose the new size"
msgstr "নতুন সাইজটি পছন্দ করুন"
-#: diskdrake/interactive.pm:770
+#: diskdrake/interactive.pm:766
#, c-format
msgid "New size in MB: "
msgstr "মেগাবাইটে নতুন সাইজ:"
-#: diskdrake/interactive.pm:811 install_interactive.pm:197
+#: diskdrake/interactive.pm:767
+#, c-format
+msgid "Minimum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:768
+#, c-format
+msgid "Maximum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:809 fs/partitioning_wizard.pm:181
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
@@ -2631,241 +1732,242 @@ msgstr ""
"পার্টিশনের পুনরাকৃতির পর ডাটার সম্পূর্ণতা নিশ্চিত করার জন্য, \n"
"উইন্ডোজে(TM) আপনার পরবর্তী বুটে ফাইলসিস্টেম পরীক্ষা চলবে"
-#: diskdrake/interactive.pm:852
+#: diskdrake/interactive.pm:850
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "যোগ করার জন্য উপস্থিত একটি RAID পছন্দ করুন"
-#: diskdrake/interactive.pm:854 diskdrake/interactive.pm:871
+#: diskdrake/interactive.pm:852 diskdrake/interactive.pm:869
#, c-format
msgid "new"
msgstr "নতুন"
-#: diskdrake/interactive.pm:869
+#: diskdrake/interactive.pm:867
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "যোগ করার জন্য উপস্থিত একটি LVM পছন্দ করুন"
-#: diskdrake/interactive.pm:875
+#: diskdrake/interactive.pm:874
#, c-format
msgid "LVM name?"
msgstr "LVM-এর নাম?"
-#: diskdrake/interactive.pm:903
+#: diskdrake/interactive.pm:902
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
"Do you want to move used physical extents on this volume to other volumes?"
msgstr ""
-#: diskdrake/interactive.pm:905
+#: diskdrake/interactive.pm:904
#, c-format
msgid "Moving physical extents"
msgstr ""
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:922
#, c-format
msgid "This partition can not be used for loopback"
msgstr "লুপব্যাকের জন্য এই পার্টিশনটি ব্যবহার করা যাবেনা"
-#: diskdrake/interactive.pm:936
+#: diskdrake/interactive.pm:935
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: diskdrake/interactive.pm:937
+#: diskdrake/interactive.pm:936
#, c-format
msgid "Loopback file name: "
msgstr "Loopback ফাইলের নাম: "
-#: diskdrake/interactive.pm:942
+#: diskdrake/interactive.pm:941
#, c-format
msgid "Give a file name"
msgstr "একটি ফাইলের নাম দিন"
-#: diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:944
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "ফাইলটি আগে থেকেই অন্য একটি লুপব্যাকে ব্যবহৃত হচ্ছে, আরেকটি পছন্দ করুন"
-#: diskdrake/interactive.pm:946
+#: diskdrake/interactive.pm:945
#, c-format
msgid "File already exists. Use it?"
msgstr "ফাইল আগে থেকেই আছে, ব্যবহার করব?"
-#: diskdrake/interactive.pm:969
+#: diskdrake/interactive.pm:974 diskdrake/interactive.pm:977
#, c-format
msgid "Mount options"
msgstr "মাউন্ট অপসন"
-#: diskdrake/interactive.pm:976
+#: diskdrake/interactive.pm:984
#, c-format
msgid "Various"
msgstr "বিভিন্ন"
-#: diskdrake/interactive.pm:1044
+#: diskdrake/interactive.pm:1049
#, c-format
msgid "device"
msgstr "ডিভাইস"
-#: diskdrake/interactive.pm:1045
+#: diskdrake/interactive.pm:1050
#, c-format
msgid "level"
msgstr "লেভেল"
-#: diskdrake/interactive.pm:1046
+#: diskdrake/interactive.pm:1051
#, c-format
msgid "chunk size in KiB"
msgstr "কিলোবাইট এ chunk সাইজ"
-#: diskdrake/interactive.pm:1063
+#: diskdrake/interactive.pm:1068
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "খুবই সাবধান: এই কাজটি ঝুঁকিপূর্ন।"
-#: diskdrake/interactive.pm:1078
+#: diskdrake/interactive.pm:1083
#, c-format
msgid "What type of partitioning?"
msgstr "কি ধরণের পার্টিশন হবে?"
-#: diskdrake/interactive.pm:1116
+#: diskdrake/interactive.pm:1121
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "পরিবর্তনগুলি অবস্থান নেবার জন্য আপনাকে রি-ষ্টার্ট করতে হবে"
-#: diskdrake/interactive.pm:1125
+#: diskdrake/interactive.pm:1130
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s ড্রাইভের পার্টিশন টেবিল ডিস্কে লিখতে যাচ্ছি!"
-#: diskdrake/interactive.pm:1148
+#: diskdrake/interactive.pm:1153
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "পার্টিশন %s -কে ফরমেট করার পরে এই পার্টিশনের সমস্থ ডাটা হারিয়ে যাবে"
-#: diskdrake/interactive.pm:1164
+#: diskdrake/interactive.pm:1158 fs/partitioning.pm:49
+#, c-format
+msgid "Check bad blocks?"
+msgstr "খারাপ ব্লক চেক করব?"
+
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Move files to the new partition"
msgstr "ফাইলগুলিক একটি নতুন পার্টিশনে সরিয়ে ফেলো"
-#: diskdrake/interactive.pm:1164 standalone/draksambashare:81
-#: standalone/draksambashare:144
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Hide files"
msgstr "ফাইল লুকানো হোক"
-#: diskdrake/interactive.pm:1165
+#: diskdrake/interactive.pm:1173
#, c-format
msgid ""
"Directory %s already contains data\n"
-"(%s)"
+"(%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 ""
-"%s ডিরেক্টরীতে আগে থেকেই ডাটা আছে\n"
-"(%s)"
-#: diskdrake/interactive.pm:1176
+#: diskdrake/interactive.pm:1188
#, c-format
msgid "Moving files to the new partition"
msgstr "ফাইলগুলিকে একটু নতুন পার্টিশনে নিয়ে যাওয়া হচ্ছে"
-#: diskdrake/interactive.pm:1180
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "Copying %s"
msgstr "%s কপি করা হচ্ছে"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1196
#, c-format
msgid "Removing %s"
msgstr "%s মুছে ফেলা হচ্ছে"
-#: diskdrake/interactive.pm:1198
+#: diskdrake/interactive.pm:1210
#, c-format
msgid "partition %s is now known as %s"
msgstr "পার্টিশন %s-কে এখন %s নামে জানা যাবে"
# সাম: renumber = পুনর্বিন্যাস?
-#: diskdrake/interactive.pm:1199
+#: diskdrake/interactive.pm:1211
#, c-format
msgid "Partitions have been renumbered: "
msgstr "পার্টিশনগুলো পুনঃসংখ্যান করা হয়েছে: "
-#: diskdrake/interactive.pm:1219 diskdrake/interactive.pm:1281
+#: diskdrake/interactive.pm:1231 diskdrake/interactive.pm:1293
#, c-format
msgid "Device: "
msgstr "ডিভাইস:"
-#: diskdrake/interactive.pm:1220
-#, c-format
-msgid "Devfs name: "
-msgstr "Devfs নাম:"
-
-#: diskdrake/interactive.pm:1221
+#: diskdrake/interactive.pm:1232
#, c-format
msgid "Volume label: "
msgstr "ভলিউম লেবেল:"
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1233
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS ড্রাইভ লেটার: %s (শুধুমাত্র একটি অনুমান)\n"
-#: diskdrake/interactive.pm:1226 diskdrake/interactive.pm:1235
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1237 diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1311
#, c-format
msgid "Type: "
msgstr "ধরণ:"
-#: diskdrake/interactive.pm:1230 install_steps_gtk.pm:300
+#: diskdrake/interactive.pm:1241
#, c-format
msgid "Name: "
msgstr "নাম:"
-#: diskdrake/interactive.pm:1237
+#: diskdrake/interactive.pm:1248
#, c-format
msgid "Start: sector %s\n"
msgstr "শুরু: সেক্টর %s\n"
-#: diskdrake/interactive.pm:1238
+#: diskdrake/interactive.pm:1249
#, c-format
msgid "Size: %s"
msgstr "সাইজ: %s"
-#: diskdrake/interactive.pm:1240
+#: diskdrake/interactive.pm:1251
#, c-format
msgid ", %s sectors"
msgstr ", %s সেক্টরসমূহ"
-#: diskdrake/interactive.pm:1242
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "সিলিন্ডার %d থেকে %d পর্যন্ত\n"
-#: diskdrake/interactive.pm:1243
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Formatted\n"
msgstr "ফরমেট করা হয়েছে\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "Not formatted\n"
msgstr "ফরমেট করা হয়নি\n"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Mounted\n"
msgstr "মাউন্ট করা হয়েছে\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1252
+#: diskdrake/interactive.pm:1263
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2874,7 +1976,7 @@ msgstr ""
"লুপব্যাক ফাইল(গুলি):\n"
" %s\n"
-#: diskdrake/interactive.pm:1253
+#: diskdrake/interactive.pm:1264
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2883,27 +1985,27 @@ msgstr ""
"পার্টিশন সাধারণভাবে বুট হয়েছে\n"
" (MS-DOS বুটের জনে, lilo-র জন্য নয়)\n"
-#: diskdrake/interactive.pm:1255
+#: diskdrake/interactive.pm:1266
#, c-format
msgid "Level %s\n"
msgstr "লেভেল %s\n"
-#: diskdrake/interactive.pm:1256
+#: diskdrake/interactive.pm:1267
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "চাঙ্ক সাইজ %d কিলোবাইট\n"
-#: diskdrake/interactive.pm:1257
+#: diskdrake/interactive.pm:1268
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-ডিস্কসমূহ %s\n"
-#: diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1270
#, c-format
msgid "Loopback file name: %s"
msgstr "লুপব্যাক ফাইলের নাম: %s"
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1273
#, c-format
msgid ""
"\n"
@@ -2916,7 +2018,7 @@ msgstr ""
"ড্রাইভার পার্টিশন। আপনার উচিত হবে\n"
"এটাকে এটা ছেড়ে দেয়া।\n"
-#: diskdrake/interactive.pm:1265
+#: diskdrake/interactive.pm:1276
#, c-format
msgid ""
"\n"
@@ -2929,74 +2031,77 @@ msgstr ""
"পার্টিশন হচ্ছে আপনার\n"
"সিস্টেমের ডুয়াল-বুটিং এর জন্য।\n"
-#: diskdrake/interactive.pm:1282
+#: diskdrake/interactive.pm:1285
+#, c-format
+msgid "Empty space on %s (%s)"
+msgstr ""
+
+#: diskdrake/interactive.pm:1294
#, c-format
msgid "Read-only"
msgstr "শুধুমাত্র পড়া যাবে"
-#: diskdrake/interactive.pm:1283
+#: diskdrake/interactive.pm:1295
#, c-format
msgid "Size: %s\n"
msgstr "সাইজ: %s\n"
-#: diskdrake/interactive.pm:1284
+#: diskdrake/interactive.pm:1296
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "জ্যামিতি: %s-গুলি সিলিন্ডার, %s-গুলি হেড, %s-গুলি সেক্টর\n"
-#: diskdrake/interactive.pm:1285 network/thirdparty.pm:331
+#: diskdrake/interactive.pm:1297
#, c-format
msgid "Info: "
msgstr "তথ্য:"
-#: diskdrake/interactive.pm:1286
+#: diskdrake/interactive.pm:1298
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-ডিস্কসমূহ %s\n"
-#: diskdrake/interactive.pm:1287
+#: diskdrake/interactive.pm:1299
#, c-format
msgid "Partition table type: %s\n"
msgstr "পার্টিশন টেবিলের ধরণ: %s\n"
-#: diskdrake/interactive.pm:1288
+#: diskdrake/interactive.pm:1300
#, c-format
msgid "on channel %d id %d\n"
msgstr "%d চ্যানেলে %d আইডিতে\n"
-#: diskdrake/interactive.pm:1331
+#: diskdrake/interactive.pm:1343
#, c-format
msgid "Filesystem encryption key"
msgstr "ফাইল সিস্টেমের এনক্রিপশন কী"
-#: diskdrake/interactive.pm:1332
+#: diskdrake/interactive.pm:1344
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "আপনার ফাইল সিস্টেমের এনক্রিপশন কী পছন্দ করুন"
-#: diskdrake/interactive.pm:1335
+#: diskdrake/interactive.pm:1347
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "এই এনক্রিপশন কী টি খুবই সাধারণ (অবশ্যই %d অক্ষর বড় হতে হবে)"
-#: diskdrake/interactive.pm:1336
+#: diskdrake/interactive.pm:1348
#, c-format
msgid "The encryption keys do not match"
msgstr "এনক্রিপশন কীগুলি মিলছেনা"
-#: diskdrake/interactive.pm:1339 network/netconnect.pm:1073
-#: standalone/drakconnect:419 standalone/drakroam:120
+#: diskdrake/interactive.pm:1351
#, c-format
msgid "Encryption key"
msgstr "এনক্রিপশন কী"
-#: diskdrake/interactive.pm:1340
+#: diskdrake/interactive.pm:1352
#, c-format
msgid "Encryption key (again)"
msgstr "এনক্রিপশন কী (পুনরায়)"
-#: diskdrake/interactive.pm:1342 standalone/drakvpn:1017
-#: standalone/drakvpn:1102
+#: diskdrake/interactive.pm:1354
#, c-format
msgid "Encryption algorithm"
msgstr "Encryption অ্যালগোরিদম"
@@ -3006,27 +2111,35 @@ msgstr "Encryption অ্যালগোরিদম"
msgid "Change type"
msgstr "ধরণ বদল করো"
-#: diskdrake/smbnfs_gtk.pm:163
+#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:539
+#: interactive/curses.pm:214 interactive/http.pm:104 interactive/http.pm:160
+#: interactive/stdio.pm:39 interactive/stdio.pm:142 ugtk2.pm:404 ugtk2.pm:506
+#: ugtk2.pm:515 ugtk2.pm:788
+#, c-format
+msgid "Cancel"
+msgstr "বাতিল"
+
+#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr "ইউজারনেম %s ব্যবহার করে লগইন করা গেলোনা (নষ্ট পাসওয়ার্ড?)"
-#: diskdrake/smbnfs_gtk.pm:167 diskdrake/smbnfs_gtk.pm:176
+#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "ডোমেইন অনুমোদন প্রয়োজন"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "কোন্‌ ব্যবহারকারীনাম"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "অন্য একটি"
-#: diskdrake/smbnfs_gtk.pm:177
+#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
@@ -3034,86 +2147,82 @@ msgstr ""
"হোস্টকে ব্যবহার করার জন্য আপনার ব্যবহারকারীনাম, পাসওয়ার্ড এবং ডোমেইনের নাম প্রবেশ "
"করান।"
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3640
+#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "ব্যবহারকারীনাম"
-#: diskdrake/smbnfs_gtk.pm:205
+#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "সার্ভার খোজো"
-#: diskdrake/smbnfs_gtk.pm:210
+#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr "নতুন সার্ভারের খোজ করো"
-#: do_pkgs.pm:16 do_pkgs.pm:49
+#: do_pkgs.pm:16 do_pkgs.pm:53
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "%s প্যাকেজগুলি ইনস্টল করা প্রয়োজন। আপনি কি ইনস্টল করতে চান?"
-#: do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:52 printer/printerdrake.pm:3948
+#: do_pkgs.pm:19 do_pkgs.pm:40 do_pkgs.pm:56
#, c-format
msgid "Could not install the %s package!"
msgstr "%s প্যাকেজটি ইনস্টল করা যায় নি!"
-#: do_pkgs.pm:24 do_pkgs.pm:57
+#: do_pkgs.pm:24 do_pkgs.pm:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "%s আবশ্যিক প্যাকেজ নেই"
-#: do_pkgs.pm:35 harddrake/sound.pm:278 install_steps_interactive.pm:1288
-#: keyboard.pm:381 network/ndiswrapper.pm:95 network/netconnect.pm:471
-#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2495
-#: printer/printerdrake.pm:2632 printer/printerdrake.pm:2953
-#: printer/printerdrake.pm:2960 printer/printerdrake.pm:3947
-#: printer/printerdrake.pm:4211 printer/printerdrake.pm:4330
-#: printer/printerdrake.pm:5487 standalone/drakTermServ:354
-#: standalone/drakTermServ:1267 standalone/drakTermServ:1328
-#: standalone/drakTermServ:2006 standalone/drakbackup:510
-#: standalone/drakbackup:609 standalone/drakboot:133 standalone/drakclock:224
-#: standalone/drakconnect:973 standalone/drakfont:679 standalone/drakperm:380
-#: standalone/drakperm:390 standalone/drakups:27 standalone/harddrake2:510
-#: standalone/harddrake2:526 standalone/localedrake:43
-#: standalone/scannerdrake:51 standalone/scannerdrake:957
-#, c-format
-msgid "Warning"
-msgstr "নোটিশ"
-
-#: do_pkgs.pm:35 standalone/harddrake2:526
+#: do_pkgs.pm:35
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "নিম্নোক্ত প্যাকেজসমূহ ইনস্টল করা প্রয়োজন:\n"
-#: do_pkgs.pm:205
+#: do_pkgs.pm:209
#, c-format
msgid "Installing packages..."
msgstr "প্যাকেজসমূহ ইনস্টল করা হচ্ছে..."
-#: do_pkgs.pm:252
+#: do_pkgs.pm:255
#, c-format
msgid "Removing packages..."
msgstr "প্যাকেজসমূহ অপসরণ করা হচ্ছে..."
-#: fs/format.pm:58 fs/format.pm:65
+#: fs/any.pm:17
+#, c-format
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"একটি ভুল হয়ে গেছে - কোন সঠিক যন্ত্র পাওয়া যায়নি যেখানে নতুন ফাইল সিস্টেম তৈরি করা "
+"হবে। অনুগ্রহ করে এই সমস্যার কারণের জন্য আপনার হার্ডওয়্যার পরীক্ষা করুন"
+
+#: fs/any.pm:62 fs/partitioning_wizard.pm:55
+#, c-format
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "আপনার /boot/efi -এ অবশ্যই একটি FAT পার্টিশন থাকতে হবে"
+
+#: fs/format.pm:59 fs/format.pm:66
#, c-format
msgid "Formatting partition %s"
msgstr "%s পার্টিশন ফরম্যাট করা হচ্ছে"
-#: fs/format.pm:62
+#: fs/format.pm:63
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s ফাইল তৈরী এবং ফরম্যাট করা হচ্ছে"
-#: fs/format.pm:115
+#: fs/format.pm:116
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "আমার জানা নেই পার্টিশন %s-কে কিভাবে %s ধরণে ফরম্যাট করতে হয়"
# এটাও উল্টে যাবে মানে করতে গেলে। কারন মানেটা দাঁড়াবে <দ্বিতীয় %s কে প্রথম %s ফরম্যাট করা ব্যার্থ হয়েছে>
-#: fs/format.pm:120 fs/format.pm:122
+#: fs/format.pm:121 fs/format.pm:123
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s কে %s ফরম্যাট করতে ব্যর্থ হয়েছে"
@@ -3123,30 +2232,30 @@ msgstr "%s কে %s ফরম্যাট করতে ব্যর্থ হ
msgid "Circular mounts %s\n"
msgstr "সার্কুলার মাউন্টস %s\n"
-#: fs/mount.pm:74
+#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "%s পার্টিশন মাউন্ট করা হচ্ছে"
# এখানে কি করতে হবে? দুটোই %s কিন্তু মানেটা হবে : %s ডিরেক্টরিতে %s পার্টিশন মাউন্ট করা সম্ভব হলোনা।
# দেখবেন কি করা যাবে...
-#: fs/mount.pm:75
+#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "%2$s ডিরেক্টরিতে %1$s পার্টিশন মাউন্ট করা ব্যর্থ হয়েছে"
-#: fs/mount.pm:80 fs/mount.pm:97
+#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "%s পরীক্ষা করা হচ্ছে"
-#: fs/mount.pm:113 partition_table.pm:385
+#: fs/mount.pm:118 partition_table.pm:384
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s আনমাউন্টে সমস্যা: %s"
# এনেবল লিখলাম। মানেটা মাথায় আসছেনা
-#: fs/mount.pm:142
+#: fs/mount.pm:133
#, c-format
msgid "Enabling swap partition %s"
msgstr "%s সোয়াপ পার্টিশন সক্রিয় করো"
@@ -3220,35 +2329,306 @@ msgstr "সকল I/O ফাইল সিস্টেম যুগপত্‍
#: fs/mount_options.pm:139
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow every user to mount and umount the file system."
msgstr ""
#: fs/mount_options.pm:141
#, c-format
-msgid "Enable user disk quota accounting, and optionally enforce limits"
+msgid "Allow an ordinary user to mount the file system."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Support user. extended attributes"
+msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""
#: fs/mount_options.pm:145
#, c-format
+msgid "Support \"user.\" extended attributes"
+msgstr ""
+
+#: fs/mount_options.pm:147
+#, c-format
msgid "Give write access to ordinary users"
msgstr "সাধারণ ব্যবহারকারীদের লেখার ক্ষমতা দিন"
-#: fs/mount_options.pm:147
+#: fs/mount_options.pm:149
#, c-format
msgid "Give read-only access to ordinary users"
msgstr "সাধারণ ব্যবহারকারীদের শুধু পড়ার ক্ষমতা দিন"
-#: fs/type.pm:363
+#: fs/mount_point.pm:80
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "%s নকল মাউন্ট পয়েন্ট"
+
+#: fs/mount_point.pm:95
+#, c-format
+msgid "No partition available"
+msgstr "কোন পার্টিশন বরাদ্দ নেই"
+
+#: fs/mount_point.pm:98
+#, c-format
+msgid "Scanning partitions to find mount points"
+msgstr "মাউন্ট পয়েন্ট খোঁজার জন্য পার্টিশনগুলি স্কেন করা হচ্ছে"
+
+#: fs/mount_point.pm:105
+#, c-format
+msgid "Choose the mount points"
+msgstr "মাউন্ট পয়েন্টগুলি পছন্দ করুন"
+
+#: fs/partitioning.pm:46
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "ফরমেট করার জন্য পার্টিশনটি পছন্দ করুন"
+
+#: fs/partitioning.pm:76
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+"%s ফাইল সিস্টেম পরীক্ষা করতে ব্যার্থ হয়েছে। আপনি কি এই ত্রুটিগুলি সারাতে চান? (মনে "
+"রাখবেন যে আপনি ডাটা হারাতে পারেন)"
+
+#: fs/partitioning.pm:79
+#, c-format
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "ইনস্টলেশন সম্পূর্ন হবার জন্য যথেষ্ট swap জায়গা নেই, অনুগ্রহ করে কিছু যোগ করুন"
+
+#: fs/partitioning_wizard.pm:47
+#, c-format
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"আপনার অবশ্যই একটি root পার্টিশন থাকতে হবে।\n"
+"সেকারণে, একটি পার্টিশন তৈরি করুন (অথবা ইতিমধ্যেই তৈরি একটিতে ক্লিক করুন)।\n"
+"তারপর ``Mount point'' বেছে নিন এবং সেটাকে `/' তে সেট করুন"
+
+#: fs/partitioning_wizard.pm:52
+#, c-format
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+"আপনার কোন swap পার্টিশন নেই\n"
+"\n"
+"তবুও আগাবো?"
+
+#: fs/partitioning_wizard.pm:80
+#, c-format
+msgid "Use free space"
+msgstr "শুণ্য স্থান ব্যবহার করো"
+
+#: fs/partitioning_wizard.pm:82
+#, c-format
+msgid "Not enough free space to allocate new partitions"
+msgstr "নতুন পার্টিশন তৈরী করার জন্য যথেষ্ট পরিমান খালি জায়গা নেই"
+
+#: fs/partitioning_wizard.pm:90
+#, c-format
+msgid "Use existing partitions"
+msgstr "আগের পার্টিশনগুলি ব্যবহার করো"
+
+#: fs/partitioning_wizard.pm:92
+#, c-format
+msgid "There is no existing partition to use"
+msgstr "ব্যবহারের জন্য এখানে উপস্থিত কোন পার্টিশন নেই"
+
+#: fs/partitioning_wizard.pm:99
+#, c-format
+msgid "Use the Microsoft Windows® partition for loopback"
+msgstr "লুপ ব্যাকের জন্য উইন্ডোজের পার্টিশন ব্যবহার করো"
+
+#: fs/partitioning_wizard.pm:102
+#, c-format
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Linux4Win-এর জন্য আপনি কোন পার্টিশন ব্যবহার করতে চান?"
+
+#: fs/partitioning_wizard.pm:104
+#, c-format
+msgid "Choose the sizes"
+msgstr "সাইজ পছন্দ করো"
+
+#: fs/partitioning_wizard.pm:105
+#, c-format
+msgid "Root partition size in MB: "
+msgstr "মেগাবাইটে রুট পার্টিশনের সাইজ:"
+
+#: fs/partitioning_wizard.pm:106
+#, c-format
+msgid "Swap partition size in MB: "
+msgstr "মেগাবাইটে সোয়াপ পার্টিশনের সাইজ:"
+
+#: fs/partitioning_wizard.pm:115
+#, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr "লুপব্যাকে ব্যবহারের জন্য কেন FAT পার্টিশন নেই (অথবা পর্যাপ্ত জায়গা নেই)"
+
+#: fs/partitioning_wizard.pm:122
+#, c-format
+msgid "Use the free space on the Microsoft Windows® partition"
+msgstr "উইন্ডোজ পার্টিশনের খালি জায়গা ব্যবহার করে"
+
+#: fs/partitioning_wizard.pm:124
+#, c-format
+msgid "Which partition do you want to resize?"
+msgstr "আপনি কোন পার্টিশন রি-সাইজ করতে চান?"
+
+#: fs/partitioning_wizard.pm:138
+#, c-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+"FAT আকার পরিবর্তক আপনার পার্টিশন হস্তক্ষেপ করতে পারেনি, \n"
+"নিম্নের এই সমস্যাগুলো হয়েছে: %s"
+
+#: fs/partitioning_wizard.pm:141
+#, c-format
+msgid "Computing the size of the Microsoft Windows® partition"
+msgstr "আপনার উইন্ডোজের পার্টিশনের সাইজ হিসেব করা হচ্ছে"
+
+#: fs/partitioning_wizard.pm:148
+#, c-format
+msgid ""
+"Your Microsoft Windows® partition is too fragmented. Please reboot your "
+"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
+"the Mandriva Linux installation."
+msgstr ""
+"আপনার উইন্ডোজের পার্টিশনটি প্রচন্ড অসম। অনুগ্রহ করে আপনার কম্পিউটারটি উইন্ডোজে রি-বুট "
+"করে, ``defrag'' ইউটিলিটি চালান, পরে রি-ষ্টার্ট করে আবার মেনড্রক ইনস্টলেশন চালান।"
+
+#: fs/partitioning_wizard.pm:151
+#, c-format
+msgid ""
+"WARNING!\n"
+"\n"
+"\n"
+"Your Microsoft Windows® partition will be now resized.\n"
+"\n"
+"\n"
+"Be careful: this operation is dangerous. If you have not already done so, "
+"you first need to exit the installation, run \"chkdsk c:\" from a Command "
+"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
+"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
+"optionally run defrag, then restart the installation. You should also backup "
+"your data.\n"
+"\n"
+"\n"
+"When sure, press %s."
+msgstr ""
+"সতর্ক বানী!\n"
+"\n"
+"DrakX এখন আপনার উইন্ডোজের পার্টিশন আকার পরিবর্তন করবে।\n"
+"\n"
+"\n"
+"খুবই সাবধান: এই কার্যক্রমটি বিপদজ্জনক। আপনি যদি এরকম আগে করে না থাকেন, তাহলে "
+"আপনাকে ইনস্টলেশন থেকে বের হয়ে, উইন্ডোজের কমান্ডপ্রমপ্ট থেকে \"chkdsk c:\" চালাতে "
+"হবে (লক্ষ্য রাখবেন, \"scandisk\"-এর মত গ্রাফিক্যাল প্রোগ্রামগুলি যথেষ্ট নয়, আপনাকে "
+"অবশ্যই কমান্ডপ্রমপ্ট থেকে \"chkdsk\" চালাতে হবে), ঐচ্ছিকভাবে defrag চালাতে পরেন, "
+"পরে ইনস্টলেশন পুনরায় শুরু করবেন। আপনকে আপনার ডাটা ব্যাকআপ করা উচিত্‍‌।\n"
+"\n"
+"\n"
+"নিশ্চিত্‍‌ হলে %s চাপুন।"
+
+# পরবর্তি
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: fs/partitioning_wizard.pm:160 interactive.pm:538 interactive/curses.pm:217
+#: ugtk2.pm:508
+#, c-format
+msgid "Next"
+msgstr "পরবর্তী"
+
+#: fs/partitioning_wizard.pm:163
+#, c-format
+msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
+msgstr "আপনি কোথায় উইন্ডোজের জন্য কোন সাইজটি রাখতে চান পার্টিশনসমূহ %s?"
+
+#: fs/partitioning_wizard.pm:164
+#, c-format
+msgid "Size"
+msgstr "মাপ"
+
+#: fs/partitioning_wizard.pm:173
+#, c-format
+msgid "Resizing Microsoft Windows® partition"
+msgstr "উইন্ডোজ পার্টিশন আকার পরিবর্তন করা হচ্ছে"
+
+#: fs/partitioning_wizard.pm:178
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "FAT আকার পরিবর্তন ব্যর্থ হয়েছে: %s"
+
+#: fs/partitioning_wizard.pm:193
+#, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+"রি-সাইজ করার জন্য কোন FAT পার্টিশন নেই (অথবা যথেষ্ট পারিমান ফাঁকা জায়গা নেই)"
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Remove Microsoft Windows®"
+msgstr "উইন্ডোজ(TM) মুছে ফেলো"
+
+#: fs/partitioning_wizard.pm:198
+#, fuzzy, c-format
+msgid "Erase and use entire disk"
+msgstr "সম্পূর্ণ ডিস্ক মুছে ফেলো"
+
+#: fs/partitioning_wizard.pm:200
+#, c-format
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "আপনার একের অধিক হার্ড ড্রাইভ আছে, আপনি কোনটাতে লিনাক্স ইনস্টল করতে চান?"
+
+#: fs/partitioning_wizard.pm:206
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "%s ড্রাইভে উপস্থিত সমস্থ ডাটা এবং পার্টিশন নষ্ট হয়ে যাবে"
+
+#: fs/partitioning_wizard.pm:217
+#, c-format
+msgid "Custom disk partitioning"
+msgstr "হাতে হাতে ডিস্ক পার্টিশন"
+
+#: fs/partitioning_wizard.pm:223
+#, c-format
+msgid "Use fdisk"
+msgstr "fdisk ব্যবহার করো"
+
+#: fs/partitioning_wizard.pm:226
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+"এখন আপনি %s-কে পার্টিশন করতে পারেন।\n"
+"যখন হয়ে যাবে, তখন `w' চেপে সেভ করতে ভূলবেননা"
+
+#: fs/partitioning_wizard.pm:266
+#, c-format
+msgid "I can not find any room for installing"
+msgstr "আমি ইনস্টল করার জন্য কোন জায়গা পাচ্ছিনা"
+
+#: fs/partitioning_wizard.pm:270
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "DrakX পার্টিশন সহায়ক এই সমস্থ সমাধান পেয়েছে:"
+
+#: fs/partitioning_wizard.pm:278
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "পার্টিশনে ব্যার্থ: %s"
+
+#: fs/type.pm:366
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "১৬ মেগাবাইটের চাইতে ছোট পার্টিশনে আপনি JFS ব্যবহার করতে পারবেন না"
-#: fs/type.pm:364
+#: fs/type.pm:367
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "৩২ মেগাবাইটের চাইতে ছোট পার্টিশনে আপনি ReiserFS ব্যবহার করতে পারবেন না"
@@ -3263,7 +2643,12 @@ msgstr "/usr -এর সাথে"
msgid "server"
msgstr "সার্ভার"
-#: fsedit.pm:219
+#: fsedit.pm:116
+#, c-format
+msgid "BIOS software RAID detected on disks %s. Activate it?"
+msgstr ""
+
+#: fsedit.pm:230
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
@@ -3282,23 +2667,23 @@ msgstr ""
"\n"
"আপনি কি সব পার্টিশন হারাতে রাজি?\n"
-#: fsedit.pm:392
+#: fsedit.pm:403
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "মাউন্ট পয়েন্টগুলি অবশ্যই / দিয়ে শুরু হতে হবে"
# * = alphanumerical = বাংলাটা মনে পড়ছেনা
-#: fsedit.pm:393
+#: fsedit.pm:404
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "মাউন্ট পয়েন্টগুলিতে শুধু * অক্ষর থাকবে"
-#: fsedit.pm:394
+#: fsedit.pm:405
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "এই পার্টিশনটি আগে থেকেই %s মাউন্টপয়েন্ট নামে আছে\n"
-#: fsedit.pm:398
+#: fsedit.pm:409
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -3309,14 +2694,14 @@ msgstr ""
"/boot পার্টিশন ছাড়া কোন বুটলোডার এটা হেন্ডেল করতে পারবেনা।\n"
"অনুগ্রহ করে অবশ্যই একটি /boot পার্টিশন যোগ করুন"
-#: fsedit.pm:404
+#: fsedit.pm:415
#, fuzzy, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr "আপনি LVM লজিকাল ভলিউমকে %s মাউন্ট পয়েন্ট হিসেবে ব্যবহার করতে পারবেননা"
-#: fsedit.pm:406
+#: fsedit.pm:417
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -3328,12 +2713,12 @@ msgstr ""
"/boot পার্টিশন ছাড়া কোন বুটলোডার এটা হেন্ডেল করতে পারবেনা।\n"
"অনুগ্রহ করে অবশ্যই একটি /boot পার্টিশন যোগ করুন"
-#: fsedit.pm:410 fsedit.pm:412
+#: fsedit.pm:421 fsedit.pm:423
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "root ফাইল সিস্টেমের মধ্যে এই ডিরেক্টরি থাকা উচিত"
-#: fsedit.pm:414 fsedit.pm:416
+#: fsedit.pm:425 fsedit.pm:427
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -3342,22 +2727,22 @@ msgstr ""
"এই মাউন্ট পয়েন্টের জন্য আপনার একটি সঠিক ফাইল সিস্টেম (ext2/ext3, reiserfs, xfs, "
"বা jfs) প্রয়োজন\n"
-#: fsedit.pm:418
+#: fsedit.pm:429
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr "আপনি %s মাউন্ট পয়েন্টের জন্য একটি এনক্রিপটেড ফাইল ব্যবহার করতে পারবেন"
-#: fsedit.pm:482
+#: fsedit.pm:493
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "স্বয়ংক্রিয়-বন্টনের জন্য কোন খালি জায়গা নেই"
-#: fsedit.pm:484
+#: fsedit.pm:495
#, c-format
msgid "Nothing to do"
msgstr "কিছু করার নাই"
-#: harddrake/data.pm:62 install_any.pm:1710
+#: harddrake/data.pm:62
#, c-format
msgid "Floppy"
msgstr "ফ্লপি"
@@ -3367,12 +2752,12 @@ msgstr "ফ্লপি"
msgid "Zip"
msgstr "জিপ"
-#: harddrake/data.pm:88 install_any.pm:1711
+#: harddrake/data.pm:88
#, c-format
msgid "Hard Disk"
msgstr "ডিস্ক"
-#: harddrake/data.pm:97 install_any.pm:1712
+#: harddrake/data.pm:97
#, c-format
msgid "CDROM"
msgstr "সিডিরম"
@@ -3387,103 +2772,102 @@ msgstr "সিডি/ডিভিডি রাইটিং সফ্টওয়্
msgid "DVD-ROM"
msgstr "ডিভিডি-রোম"
-#: harddrake/data.pm:127 standalone/drakbackup:2066
+#: harddrake/data.pm:127
#, c-format
msgid "Tape"
msgstr "টেপ"
-#: harddrake/data.pm:136
+#: harddrake/data.pm:138
+#, c-format
+msgid "AGP controllers"
+msgstr "AGP কন্ট্রোলার সমূহ"
+
+#: harddrake/data.pm:147
#, c-format
msgid "Videocard"
msgstr "ভিডিওকার্ড"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:157
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:154
+#: harddrake/data.pm:165
#, c-format
msgid "Tvcard"
msgstr "টিভিকার্ড"
-#: harddrake/data.pm:163
+#: harddrake/data.pm:174
#, c-format
msgid "Other MultiMedia devices"
msgstr "অন্যান্য মাল্টিমিডিয়া ডিভাইস সমূহ"
-#: harddrake/data.pm:172
+#: harddrake/data.pm:183
#, c-format
msgid "Soundcard"
msgstr "সাউন্ডকার্ড"
-#: harddrake/data.pm:185
+#: harddrake/data.pm:196
#, c-format
msgid "Webcam"
msgstr "ওয়েব ক্যামেরা"
-#: harddrake/data.pm:199
+#: harddrake/data.pm:210
#, c-format
msgid "Processors"
msgstr "প্রসেসর"
-#: harddrake/data.pm:209
+#: harddrake/data.pm:220
#, c-format
msgid "ISDN adapters"
msgstr "ISDN এডোপ্টার সমূহ"
-#: harddrake/data.pm:220
+#: harddrake/data.pm:231
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:229
+#: harddrake/data.pm:240
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:238
+#: harddrake/data.pm:249
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:247
+#: harddrake/data.pm:258
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:256
+#: harddrake/data.pm:267
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:265
+#: harddrake/data.pm:276
#, c-format
msgid "Ethernetcard"
msgstr "ইথারনেটকার্ড"
-#: harddrake/data.pm:282 network/netconnect.pm:492
+#: harddrake/data.pm:293
#, c-format
msgid "Modem"
msgstr "মডেম"
-#: harddrake/data.pm:292
+#: harddrake/data.pm:303
#, c-format
msgid "ADSL adapters"
msgstr "ADSL এডোপ্টার সমূহ"
-#: harddrake/data.pm:306
+#: harddrake/data.pm:315
#, c-format
msgid "Memory"
msgstr "মেমরি"
-#: harddrake/data.pm:315
-#, c-format
-msgid "AGP controllers"
-msgstr "AGP কন্ট্রোলার সমূহ"
-
-#: harddrake/data.pm:324 help.pm:187 help.pm:856
-#: install_steps_interactive.pm:964
+#: harddrake/data.pm:324
#, c-format
msgid "Printer"
msgstr "প্রিন্টার"
@@ -3509,85 +2893,92 @@ msgstr "SATA কন্ট্রলারসমূহ"
msgid "RAID controllers"
msgstr "RAID কন্ট্রলারসমূহ"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA কন্ট্রলারসমূহ"
-#: harddrake/data.pm:385
+#: harddrake/data.pm:386
+#, c-format
+msgid "USB Mass Storage Devices"
+msgstr ""
+
+#: harddrake/data.pm:395
+#, fuzzy, c-format
+msgid "Card readers"
+msgstr "কার্ড মডেল:"
+
+#: harddrake/data.pm:404
#, c-format
msgid "Firewire controllers"
msgstr "Firewire কন্ট্রলারসমূহ"
-#: harddrake/data.pm:394
+#: harddrake/data.pm:413
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA কন্ট্রলারসমূহ"
-#: harddrake/data.pm:403
+#: harddrake/data.pm:422
#, c-format
msgid "SCSI controllers"
msgstr "SCSI কন্ট্রলারসমূহ"
-#: harddrake/data.pm:412
+#: harddrake/data.pm:431
#, c-format
msgid "USB controllers"
msgstr "ইউএসবি কন্ট্রলারসমূহ"
-#: harddrake/data.pm:421
+#: harddrake/data.pm:440
#, c-format
msgid "USB ports"
msgstr "ইউএসবি পোর্টসমূহ"
-#: harddrake/data.pm:430
+#: harddrake/data.pm:449
#, c-format
msgid "SMBus controllers"
msgstr "SMBus কন্ট্রলারসমূহ"
-#: harddrake/data.pm:439
+#: harddrake/data.pm:458
#, c-format
msgid "Bridges and system controllers"
msgstr "ব্রীজ এবং সিস্টেম কন্ট্রোলার সমূহ"
-#: harddrake/data.pm:450 help.pm:856 install_steps_interactive.pm:94
-#: install_steps_interactive.pm:924 standalone/finish-install:41
-#: standalone/keyboarddrake:29
+#: harddrake/data.pm:469
#, c-format
msgid "Keyboard"
msgstr "কি-বোর্ড"
-#: harddrake/data.pm:463
+#: harddrake/data.pm:482
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:472 help.pm:856 install_steps_interactive.pm:957
+#: harddrake/data.pm:491
#, c-format
msgid "Mouse"
msgstr "মাউস"
-#: harddrake/data.pm:486
+#: harddrake/data.pm:505
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:495
+#: harddrake/data.pm:514
#, c-format
msgid "Scanner"
msgstr "স্কেনার"
-#: harddrake/data.pm:505 standalone/harddrake2:475
+#: harddrake/data.pm:524
#, c-format
msgid "Unknown/Others"
msgstr "অজানা/অন্যান্য"
-#: harddrake/data.pm:533
+#: harddrake/data.pm:552
#, c-format
msgid "cpu # "
msgstr "সিপিউ #"
-#: harddrake/sound.pm:195 standalone/drakconnect:162
-#: standalone/drakconnect:637
+#: harddrake/sound.pm:195
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "অনুগ্রহ করে অপেক্ষা করুন.... কনফিগারেশন প্রস্তাব করা হচ্ছে"
@@ -3670,17 +3061,17 @@ msgstr ""
"- পুরাতন সমর্থিত OSS api\n"
"- নতুন ALSA api যা অনেক সুবিধা প্রদান করে কিন্তু ALSA লাইব্রেরী কতৃক ব্যবহৃত।\n"
-#: harddrake/sound.pm:262 harddrake/sound.pm:350 standalone/drakups:144
+#: harddrake/sound.pm:262 harddrake/sound.pm:351
#, c-format
msgid "Driver:"
msgstr "ড্রাইভার"
-#: harddrake/sound.pm:270
+#: harddrake/sound.pm:271
#, c-format
msgid "Trouble shooting"
msgstr "ট্রাবল শুটিং"
-#: harddrake/sound.pm:278
+#: harddrake/sound.pm:279
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
@@ -3695,12 +3086,12 @@ msgstr ""
"\n"
"নতুন \"%s\" শুধুমাত্র পরবর্তী বুটস্ট্র্যাপে ব্যবহৃত হবে।"
-#: harddrake/sound.pm:286
+#: harddrake/sound.pm:287
#, c-format
msgid "No open source driver"
msgstr "কোন ওপেন সোর্স ড্রাইভার নেই"
-#: harddrake/sound.pm:287
+#: harddrake/sound.pm:288
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
@@ -3709,33 +3100,33 @@ msgstr ""
"আপনার সাউন্ড কার্ডের (%s) জন্য কোন ফ্রী ড্রাইভার নেই, কিন্তু একটি অংশিদারী ড্রাইভার "
"\"%s\"-এ আছে।"
-#: harddrake/sound.pm:290
+#: harddrake/sound.pm:291
#, c-format
msgid "No known driver"
msgstr "কোন পরিচিত ড্রাইভার নেই"
-#: harddrake/sound.pm:291
+#: harddrake/sound.pm:292
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "আপনার সাউন্ড কার্ড (%s)-এর জন্য কোন পরিচিত ড্রাইভার নেই"
-#: harddrake/sound.pm:295 network/netconnect.pm:98 network/netconnect.pm:837
+#: harddrake/sound.pm:296
#, c-format
msgid "Unknown driver"
msgstr "অপরিচিত ড্রাইভার"
-#: harddrake/sound.pm:296
+#: harddrake/sound.pm:297
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "ভুল: আপনার সাউন্ড কার্ডের \"%s\" ড্রাইভারটি তালিকায় নেই"
-#: harddrake/sound.pm:310
+#: harddrake/sound.pm:311
#, c-format
msgid "Sound trouble shooting"
msgstr "সাউন্ড ট্রাবল শুটিং"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:313
+#: harddrake/sound.pm:314
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
@@ -3744,7 +3135,7 @@ msgid ""
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\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"
@@ -3764,7 +3155,7 @@ msgstr ""
"- \"lspcidrake -v | fgrep AUDIO\" ডিফল্টভাবে আপনার কার্ড যেই ড্রাইভার \n"
"ব্যবহার করছে তা আপনাকে বলবে\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" আপনার বর্তমানে ব্যবহৃত \n"
+"- \"grep sound-slot /etc/modprobe.conf\" আপনার বর্তমানে ব্যবহৃত \n"
"ড্রাইভারের কথা বলবে\n"
"\n"
"- \"/sbin/lsmod\" যদি এর মডিউল (ড্রাইভার) লোড হয় বা না হয় তবে সে ব্যাপারে "
@@ -3779,18 +3170,18 @@ msgstr ""
"\n"
"- \"/sbin/fuser -v /dev/dsp\" কোন প্রোগ্রাম সাউন্ড কার্ড ব্যবহার করছে সেটা বলবে\n"
-#: harddrake/sound.pm:339
+#: harddrake/sound.pm:340
#, c-format
msgid "Let me pick any driver"
msgstr "আমাকে যেকোন ড্রাইভার নিতে দাও"
-#: harddrake/sound.pm:342
+#: harddrake/sound.pm:343
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "ইচ্ছেমত ড্রাইভার পছন্দ"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:345
+#: harddrake/sound.pm:346
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3804,8 +3195,7 @@ msgstr ""
"\n"
"আপনার \"%s\"-এর বর্তমান ড্রাইভার \"%s\""
-#: harddrake/v4l.pm:12 standalone/net_applet:64 standalone/net_applet:65
-#: standalone/net_applet:67
+#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "সয়ং-সনাক্ত"
@@ -3849,3243 +3239,54 @@ msgstr "কার্ড মডেল:"
msgid "Tuner type:"
msgstr "টিউনারের ধরণ:"
-#: harddrake/v4l.pm:479
+#: interactive.pm:125 interactive.pm:538 interactive/curses.pm:217
+#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
+#: interactive/stdio.pm:142 interactive/stdio.pm:143 ugtk2.pm:410 ugtk2.pm:508
+#: ugtk2.pm:788 ugtk2.pm:811
#, c-format
-msgid "Number of capture buffers:"
-msgstr "ক্যাপচার বাফারের সংখ্যা:"
-
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "mmap'ed ক্যাপচারের জন্য ক্যাপচার বাফারের সংখ্যা"
-
-#: harddrake/v4l.pm:481
-#, c-format
-msgid "PLL setting:"
-msgstr "PLL সেটিং:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "Radio support:"
-msgstr "রেডিও সাপোর্ট:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "enable radio support"
-msgstr "রেডিও সাপোর্ট সক্রিয় করো"
-
-#: help.pm:12
-#, c-format
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandriva Linux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-"চালিয়ে যাওয়ার আগে, লাইসেন্সের শর্তগুলো আপনার সাবধানতার পড়া উচিত। এটা সম্পূর্ণ\n"
-"ম্যান্ড্রিব লিনাক্স ডিস্ট্রিবিউশন পূর্ণ করে। যদি আপনি এখানকার সব শর্তের সাথে একমত \n"
-"থাকেন, \"%s\" বাক্সটি চেক্‌ করুন। যদি না হয়, তাহলে \"%s\" বাটনে ক্লিক \n"
-"করলে আপনার কম্পিউটার রিবুট হবে।"
-
-# সাম:
-# \"shell\" = ?
-# bash
-#: help.pm:18
-#, c-format
-msgid ""
-"GNU/Linux is a multi-user system which means each user can have his or her\n"
-"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point will not be "
-"authorized\n"
-"to change anything except their own files and their own configurations,\n"
-"protecting the system from unintentional or malicious changes which could\n"
-"impact on the system as a whole. You'll have to create at least one regular\n"
-"user for yourself -- this is the account which you should use for routine,\n"
-"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
-"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system will not work any more. If you make a\n"
-"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you will not affect the entire system.\n"
-"\n"
-"The first field asks you for a real name. Of course, this is not mandatory\n"
-"-- you can actually enter whatever you like. DrakX will use the first word\n"
-"you type in this field and copy it to the \"%s\" one, which is the name\n"
-"this user will enter to log onto the system. If you like, you may override\n"
-"the default and change the user name. The next step is to enter a password.\n"
-"From a security point of view, a non-privileged (regular) user password is\n"
-"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
-"by making it blank or too simple: after all, your files could be the ones\n"
-"at risk.\n"
-"\n"
-"Once you click on \"%s\", you can add other users. Add a user for each one\n"
-"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
-"finished adding users.\n"
-"\n"
-"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
-"that user (bash by default).\n"
-"\n"
-"When you're finished adding users, you'll be asked to choose a user who\n"
-"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click on\n"
-"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
-msgstr ""
-"GNU/Linux একটি বহু‌-ব্যবহারকারী সিস্টেম যেখানে প্রতিটি ব্যবহারকারী নিজস্ব পছন্দ ও\n"
-"ফাইলসমূহ আলাদাভাবে রক্ষণাবেক্ষণ করতে পারে। কিন্ত এসব সংযোজিত ব্যবহারকারীরা,\n"
-"\"root\"‌ (যে কিনা সিস্টেম অ্যাডমিনিস্ট্রেটর) এর মত, তাদের নিজস্ব ফাইল ও "
-"কনফিগারেশন\n"
-"ছাড়া অন্য কিছু বদলাতে অনুমোদিত নয়। এটি সিস্টেমকে অনিচ্ছাকৃত বা অস্বাভাবিক পরিবর্তন "
-"থেকে রক্ষা করে,\n"
-"যা কিনা সম্পূর্ণ সিস্টেমের ক্ষতি করতে পারে। আপনাকে নিজের জন্য অন্তত একটি সাধারণ "
-"ব্যবহারকারী\n"
-" তৈরী করতে হবে -- যে অ্যাকাউন্টটি আপনি নিয়মিত কাজের জন্য ব্যবহার করবেন। যদিও "
-"\"root\"\n"
-" হিসেবে লগ ইন করে সব কাজই করা সম্ভব, এটি বিপদজনকও বটে! একটি ছোটখাটো ভুলের "
-"কারণে\n"
-" আপনার সম্পূর্ণ সিস্টেম অচল হয়ে যেতে পারে। একজন সাধারণ ব্যবহারকারী খুব বড় ভুল "
-"করলেও হয়ত\n"
-" কিছু তথ্য হারাতে পারে তবে সম্পূর্ণ সিস্টেমের ক্ষতি করতে পারে না।\n"
-"\n"
-"প্রথম ক্ষেত্রটিতে একটি আসল নাম দিন। তবে এটি অত্যাবশ্যকীয় নয় -- আপনি অন্য কিছুও "
-"লিখতে\n"
-"পারেন। DrakX, এর প্রথম শব্দটি নিয়ে \"%s\" এ কপি করবে, যা দিয়ে কিনা এই "
-"ব্যবহারকারী\n"
-"সিস্টেমে লগ ইন করবে। প্রয়োজন হলে আপনি ডিফল্ট নামটি বদল করতে পারেন। এরপর আপনাকে\n"
-"একটি পাসওয়ার্ড দিতে হবে। নিরাপত্তার দৃষ্টিকোণ থেকে সাধারণ ব্যবহারকারীর পাসওয়ার্ড, "
-"\"root\" এর\n"
-"পাসওয়ার্ডের মত জরুরী নয় তবে এটিকে খালি রাখা বা সহজ পাসওয়ার্ড দেয়া উচিত নয়, কারণ "
-"এতে\n"
-"আপনার ফাইলসমূহ অরক্ষিত থেকে যায়।\n"
-"\n"
-"\"%s\" তে ক্লিক করার পর আপনি আরও ব্যবহারকারী তৈরী করতে পারেন। আপনার পরিবারের\n"
-"সদস্য ও বন্ধুদের জন্য আলাদা আলাদা একাউন্ট তৈরী করুন। শেষ হলে \"%s\" ক্লিক করুন।\n"
-"\n"
-"\"%s\" বাটনে ক্লিক করে আপনি একজন ব্যবহারকারীর ডিফল্ট \"শেল\" বদল করতে পারেন\n"
-"(ডিফল্ট মান bash)।\n"
-"\n"
-"সব ব্যবহারকারী তৈরীর পর আপনাকে একটি বেছে নিতে হবে যা কিনা কম্পিউটার বুট করার "
-"পর\n"
-"স্বয়ংক্রিয়ভাবে লগইন হবে। আপনি যদি এই ফিচারে আগ্রহী হন(এবং স্থানীয় নিরাপত্তা নিয়ে "
-"বিচলিত\n"
-"না হন), তবে পছন্দনুযায়ী ব্যবহারকারী ও উইন্ডো ম্যানেজার নির্বাচন করুন এবং \"%s\" "
-"টিতে ক্লিক\n"
-"করুন। অন্যথায় \"%s\" চেকবক্সটি আনচেক করুন।"
-
-#: help.pm:52 printer/printerdrake.pm:1866 printer/printerdrake.pm:1987
-#: standalone/draksambashare:60
-#, c-format
-msgid "User name"
-msgstr "ইউজারের নাম"
-
-# পরবর্তি
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: help.pm:52 help.pm:432 help.pm:682 install_interactive.pm:176
-#: install_steps_gtk.pm:237 install_steps_gtk.pm:682 interactive.pm:436
-#: interactive/newt.pm:321 network/thirdparty.pm:385
-#: printer/printerdrake.pm:3884 standalone/drakTermServ:412
-#: standalone/drakbackup:4102 standalone/drakbackup:4196
-#: standalone/drakbackup:4213 standalone/drakbackup:4231 ugtk2.pm:490
-#, c-format
-msgid "Next"
-msgstr "পরবর্তী"
-
-#: help.pm:52
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "এই সুবিধাটি কি আপনি ব্যবহার করতে চান?"
-
-# সাম:
-# secondary = সহকারী?
-#: help.pm:55
-#, c-format
-msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"আপনার হার্ড ড্রাইভে বর্তমানে নিম্নলিখিত লিনাক্স পার্টিশনগুলো বিদ্যমান।\n"
-"আপনি উইজার্ড কর্তৃক বাছাইকৃত সেটিংসমূহ রাখতে পারেন কারণ বেশীরভাগ\n"
-"সাধারণ ইনস্টলেশনের ক্ষেত্রে এটিই যথেষ্ট। যদি পরিবর্তন করতে চান, আপনাকে অন্তত একটি\n"
-"রুট পার্টিশন তৈরী করতে হবে (\"/\")। পার্টিশনের সাইজ খুব ছোট না হওয়া জরুরী, কারন\n"
-"অন্যথা আপনি যথেষ্ট সফ্টওয়্যার ইনস্টল করতে পারবেন না। আপনার তথ্যসমূহ আলাদা\n"
-"পার্টিশনে রাখতে চাইলে, আপনাকে আরও একটি \"/home\" পার্টিশন তৈরী করতে হবে\n"
-"(যা কিনা একাধিক লিনাক্স পার্টিশন থাকলেই সম্ভব)।\n"
-"\n"
-"পার্টিশনগুলো তালিকায় এভাবে দেখানো হয়েছে: \"নাম\", \"ধারণক্ষমতা\".\n"
-"\n"
-"\"নাম\" এর কাঠামো হচ্ছে: \"হার্ড ড্রাইভের ধরন\", \"হার্ড ড্রাইভ নাম্বার\",\n"
-"\"পার্টিশন নাম্বার\" (যেমন, \"hda1\").\n"
-"\n"
-"যদি আপনার হার্ড ড্রাইভটি IDE হার্ড ড্রাইভ হলে \"হার্ড ড্রাইভের ধরন\" হবে \"hd\", "
-"আর\n"
-" SCSI হার্ড ড্রাইভ হলে হবে \"sd\"।\n"
-"\n"
-"\"হার্ড ড্রাইভ নাম্বার\", হচ্ছে \"hd\" বা \"sd\" এর পরের একটি অক্ষর। IDE হার্ড "
-"ড্রাইভের\n"
-"জন্য:\n"
-"\n"
-" * \"a\" অর্থ \"প্রাথমিক IDE কনট্রোলারে মাস্টার হার্ড ড্রাইভ\";\n"
-"\n"
-" * \"b\" অর্থ \"প্রাথমিক IDE কনট্রোলারে স্লেভ হার্ড ড্রাইভ\";\n"
-"\n"
-" * \"c\" অর্থ \"সহকারী IDE কনট্রোলারে মাস্টার হার্ড ড্রাইভ\";\n"
-"\n"
-" * \"d\" অর্থ \"সহকারী IDE কনট্রোলারে স্লেভ হার্ড ড্রাইভ\".\n"
-"\n"
-"SCSI হার্ড ড্রাইভের জন্য, \"a\" অর্থ \"সর্বনিম্ন SCSI ID\", \"b\" অর্থ\n"
-"\"দ্বিতীয় সর্বনিম্ন SCSI ID\", ইত্যাদি।"
-
-#: help.pm:86
-#, c-format
-msgid ""
-"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-"ম্যান্ড্রিব লিনাক্স ইনস্টলেশন কয়েকটি সিডি'তে ভাগ করা থাকে। যদি একটি চিহ্নিত "
-"প্যাকেজ\n"
-"অন্য সিডি'তে থেকে থাকে, তাহলে DrakX বর্তমান সিডি'টি বের করে দেয় এবং "
-"প্রয়োজনীয়টি\n"
-"প্রবেশ করাতে জিজ্ঞেস করে। যদি এরকম অনুরোধ না আসে, তাহলে \"%s\" তে ক্লিক করুন,\n"
-"যথাযথ প্যাকেজগুলো ইনস্টল হবে না।"
-
-# সাম:
-# documentation = ডকুমেন্টেশন
-#: help.pm:93
-#, c-format
-msgid ""
-"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandriva Linux, and to make "
-"it\n"
-"simpler to manage, they have been placed into groups of similar\n"
-"applications.\n"
-"\n"
-"Mandriva Linux sorts package groups in four categories. You can mix and\n"
-"match applications from the various categories, so a ``Workstation''\n"
-"installation can still have applications from the ``Server'' category\n"
-"installed.\n"
-"\n"
-" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
-"more of the groups in the workstation category.\n"
-"\n"
-" * \"%s\": if you plan on using your machine for programming, select the\n"
-"appropriate groups from that category. The special \"LSB\" group will\n"
-"configure your system so that it complies as much as possible with the\n"
-"Linux Standard Base specifications.\n"
-"\n"
-" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
-"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
-"of the system. However, if you do not select the \"LSB\" group you will\n"
-"still have a system which is nearly 100%% LSB-compliant.\n"
-"\n"
-" * \"%s\": if your machine is intended to be a server, select which of the\n"
-"more common services you wish to install on your machine.\n"
-"\n"
-" * \"%s\": this is where you will choose your preferred graphical\n"
-"environment. At least one must be selected if you want to have a graphical\n"
-"interface available.\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group.\n"
-"\n"
-"You can check the \"%s\" box, which is useful if you're familiar with the\n"
-"packages being offered or if you want to have total control over what will\n"
-"be installed.\n"
-"\n"
-"If you start the installation in \"%s\" mode, you can deselect all groups\n"
-"and prevent the installation of any new packages. This is useful for\n"
-"repairing or updating an existing system.\n"
-"\n"
-"If you deselect all groups when performing a regular installation (as\n"
-"opposed to an upgrade), a dialog will pop up suggesting different options\n"
-"for a minimal installation:\n"
-"\n"
-" * \"%s\": install the minimum number of packages possible to have a\n"
-"working graphical desktop.\n"
-"\n"
-" * \"%s\": installs the base system plus basic utilities and their\n"
-"documentation. This installation is suitable for setting up a server.\n"
-"\n"
-" * \"%s\": will install the absolute minimum number of packages necessary\n"
-"to get a working Linux system. With this installation you will only have a\n"
-"command-line interface. The total size of this installation is about 65\n"
-"megabytes."
-msgstr ""
-"এখন আপনাকে নির্বাচন করতে হবে আপনি কোন কোন প্রোগ্রাম সিস্টেমে ইনস্টল করতে চান।\n"
-"Mandriva Linux এর জন্য কয়েক হাজার প্যাকেজ রয়েছে, এবং ব্যাবস্থাপনার সুবিধার্থে "
-"সেগুলোকে\n"
-"অ্যাপ্লিকেশনের ধরন অনুযায়ী ভাগ করা হয়েছে।\n"
-"\n"
-"Mandriva Linux সব প্যাকেজগ্রুপসমূহ চারটি শ্রেণীতে ভাগ করে। আপনি বিভিন্ন শ্রেণীর\n"
-"অ্যাপ্লিকেশনমিলিয়ে ও মিশিয়ে ইনস্টল করতে পারেন, যেমন একটি ``Workstation''\n"
-"ইনস্টলেশনে আপনি ''Server'' শ্রেণী থেকে অ্যাপ্লিকেশন ইনস্টল\n"
-"করতে পারেন।\n"
-"\n"
-" * \"%s\": আপনি যদি আপনার মেশিনটি ওয়ার্কস্টেশন হিসেবে ব্যবহার করতে চান, "
-"Workstation''\n"
-"শ্রেণী থেকে এক বা একাধিক গ্রুপ নির্বাচন করুন।\n"
-"\n"
-" * \"%s\": আপনি যদি আপনার মেশিনটি প্রোগ্রামিংএর জন্য ব্যবহার করতে চান, সে "
-"অনুযায়ী\n"
-"গ্রুপ নির্বাচন করুন। \"LSB\" নামের বিশেষ গ্রুপটি আপনার সিস্টেমকে এমনভাবে\n"
-"কনফিগার করবে যাতে তা Linux Standard Base স্পেসিফিকেশনের সাথে যতদূর\n"
-"সম্ভব সামঞ্জস্য বজায় রাখে।\n"
-"\n"
-"\"LSB\" গ্রুপটি নির্বাচন করলে, ডিফল্ট \"2.6\" কার্নেল সিরিজের বদলে\n"
-"\"2.4\" সিরিজটি ইনস্টল হবে। এটি করা হয় সিস্টেমকে 100%%-LSB সামঞ্জস্যপূর্ণ\n"
-"করার জন্য। তবে, আপনি \"LSB\" গ্রুপটি নির্বাচন না করলেও আপনার সিস্টেম প্রায়\n"
-"100%%-LSB সামঞ্জস্যপূর্ণ হবে।\n"
-"\n"
-"* \"%s\": আপনার মেশিনটি যদি সার্ভার হিসেবে ব্যবহৃত হয়, আপনার মেশিনে কোন সাধারন\n"
-" সার্ভিসসমূহ ইনস্টল করতে চান তা নির্বাচন করুন।\n"
-"\n"
-" * \"%s\": এখানে আপনার পছন্দ অনুযায়ী গ্রাফিক্যাল প্রতিবেশ নির্বাচন\n"
-"করুন। আপনি যদি গ্রাফিক্যাল ইন্টারফেস ব্যবহার করতে চান, অন্তত একটি অবশ্যই\n"
-"নির্বাচন করতে হবে।\n"
-"\n"
-"কোন গ্রুপ নামের উপর মাউস কার্সার রাখলে ঐ গ্রুপ সম্পর্কে টীকা প্রদর্শিত হবে।\n"
-"\n"
-"আপনি \"%s\" বক্সটি চেক করতে পারেন, যা কিনা প্রয়োজনীয় যদি আপনি প্যাকেজগুলো\n"
-"সম্পর্কে পরিচিত হন বা কোন কোন প্যাকেজ ইনস্টল হবে তা সম্পূর্ণভাবে নিয়ন্ত্রন\n"
-"করতে চান।\n"
-"\n"
-"\"%s\" মোডে ইনস্টলেশন শুরু করলে, আপনি সব গ্রুপ ডিসিলেক্ট করে নতুন প্যাকেজ\n"
-"ইনস্টলেশন বাতিল করতে পারেন। এটি একটি বিদ্যমান সিস্টেম মেরামত ও আপডেট\n"
-"করার জন্য প্রযোজ্য।\n"
-"\n"
-"আপনি যদি একটি সাধারণ ইনস্টলেশনের ক্ষেত্রে (আপগ্রেড নয়), সব গ্রুপ\n"
-"ডিসিলেক্ট করে থাকেন, তবে একটি পপআপ ডায়ালগে সর্বনিম্ন ইনস্টলেশনের কিছু\n"
-"অপশন পরামর্শ করা হবে:\n"
-"\n"
-"* \"%s\": একটি সক্রিয় গ্রাফিক্যাল ডেস্কটপের জন্য প্রয়োজনীয় সর্বনিম্ন প্যাকেজ ইনস্টল "
-"কর।\n"
-"\n"
-"* \"%s\": মূল সিস্টেম, প্রাথমিক ইউটিলিটিসমূহ ও তাদের ডকুমেন্টেশন ইনস্টল করে। এই "
-"ইনস্টলেশনটি সার্ভার সেটআপ করার জন্য উপযুক্ত।\n"
-"\n"
-"* \"%s\": একটি সক্রিয় Linux সিস্টেমের জন্য জরুরী সর্বনিম্ন সংখ্যক প্যাকেজ ইনস্টল করে। "
-"এ\n"
-" ইনস্টলেশনে আপনি শুধু একটি কমান্ড লাইন ইন্টারফেস পাবেন। ইনস্টলেশনে মোট সাইজ প্রায় "
-"৬৫\n"
-" মেগাবাইট।"
-
-#: help.pm:147 share/compssUsers.pl:24
-#, c-format
-msgid "Workstation"
-msgstr "ওয়ার্কষ্টেশন"
-
-#: help.pm:147 share/compssUsers.pl:65 share/compssUsers.pl:167
-#: share/compssUsers.pl:169
-#, c-format
-msgid "Development"
-msgstr "ডেভলপমেন্ট"
-
-#: help.pm:147 share/compssUsers.pl:145
-#, c-format
-msgid "Graphical Environment"
-msgstr "গ্রাফিকাল পরিবেশ"
-
-#: help.pm:147 install_steps_gtk.pm:235 install_steps_interactive.pm:623
-#, c-format
-msgid "Individual package selection"
-msgstr "আলাদাভাবে প্যাকেজ নির্বাচন"
-
-#: help.pm:147 help.pm:589
-#, c-format
-msgid "Upgrade"
-msgstr "আপগ্রেড"
-
-#: help.pm:147 install_steps_interactive.pm:581
-#, c-format
-msgid "With X"
-msgstr "X-এর সাথে"
-
-#: help.pm:147
-#, c-format
-msgid "With basic documentation"
-msgstr "সাধারণ ডকুমেন্টেশন"
-
-#: help.pm:147
-#, c-format
-msgid "Truly minimal install"
-msgstr "এক্কেবারেই সল্প ইনস্টলেশন"
-
-#: help.pm:150
-#, c-format
-msgid ""
-"If you choose to install packages individually, the installer will present\n"
-"a tree containing all packages classified by groups and subgroups. While\n"
-"browsing the tree, you can select entire groups, subgroups, or individual\n"
-"packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description will appear on the\n"
-"right to let you know the purpose of that package.\n"
-"\n"
-"!! If a server package has been selected, either because you specifically\n"
-"chose the individual package or because it was part of a group of packages,\n"
-"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandriva Linux will automatically start any installed\n"
-"services at boot time. Even if they are safe and have no known issues at\n"
-"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandriva Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do "
-"or\n"
-"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
-"the listed services and they will be started automatically at boot time. !!\n"
-"\n"
-"The \"%s\" option is used to disable the warning dialog which appears\n"
-"whenever the installer automatically selects a package to resolve a\n"
-"dependency issue. Some packages depend on others and the installation of\n"
-"one particular package may require the installation of another package. The\n"
-"installer can determine which packages are required to satisfy a dependency\n"
-"to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-"package list created during a previous installation. This is useful if you\n"
-"have a number of machines that you wish to configure identically. Clicking\n"
-"on this icon will ask you to insert the floppy disk created at the end of\n"
-"another installation. See the second tip of the last step on how to create\n"
-"such a floppy."
-msgstr ""
-
-#: help.pm:181 help.pm:286 help.pm:314 help.pm:445 install_any.pm:944
-#: interactive.pm:161 modules/interactive.pm:71 standalone/drakbackup:2636
-#: standalone/drakfont:687 standalone/draksec:54 standalone/harddrake2:331
-#: ugtk2.pm:898 wizards.pm:156
-#, c-format
-msgid "No"
-msgstr "না"
+msgid "Ok"
+msgstr "ঠিক আছে"
-#: help.pm:181 help.pm:286 help.pm:445 install_any.pm:944 interactive.pm:161
-#: modules/interactive.pm:71 printer/printerdrake.pm:883
-#: printer/printerdrake.pm:898 standalone/drakbackup:2636
-#: standalone/drakfont:685 standalone/draksec:55 standalone/harddrake2:330
-#: ugtk2.pm:898 wizards.pm:156
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "হ্যাঁ"
-#: help.pm:181
-#, c-format
-msgid "Automatic dependencies"
-msgstr "সয়ংক্রিয় নির্ভরতা"
-
-# sam
-#: help.pm:184
-#, c-format
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to set up a new printer. The interface presented in our\n"
-"manual is similar to the one used during installation."
-msgstr ""
-"\"%s\": \"%s\" বাটনে ক্লিক করলে প্রিন্টার কনফিগারেশন উইজার্ড খুলবে।\n"
-"প্রিন্টার কনফিগারেশন সম্বন্ধে আরো জানতে, \"স্টার্টার গাইড\" এর যথাযথ\n"
-"অধ্যায়ের পরামর্শ নিন। আমাদের সহায়িকাতে দেখানো ইন্টারফেসটি, ইনস্টলেশনে\n"
-"ব্যবহৃত ইন্টারফেসের অনুরুপ। "
-
-#: help.pm:187 help.pm:567 help.pm:856 install_steps_gtk.pm:595
-#: standalone/drakbackup:2460 standalone/drakbackup:2464
-#: standalone/drakbackup:2468 standalone/drakbackup:2472
-#: standalone/drakroam:227
-#, c-format
-msgid "Configure"
-msgstr "কনফিগার"
-
-# সাম
-#: help.pm:190
-#, c-format
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
-"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which are not needed at boot\n"
-"time.\n"
-"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably do not want to start any services which you do not "
-"need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-"এই ডায়ালগটি আপনি বুট করার সময় কি কি সার্ভিস শুরু করতে চান তা নির্বাচন করার জন্য।\n"
-"\n"
-"DrakX বর্তমান ইনস্টলেশনে বিদ্যমান সব সার্ভিস দেখাবে। প্রতিটি সার্ভিস ভালভাবে দেখুন "
-"এবং\n"
-"বুটের সময় যেগুলো প্রয়োজন না হয়, সেগুলো আনচেক করুন।\n"
-"\n"
-"একটি সার্ভিস নির্বাচন করলে, সার্ভিসটি সম্পর্কে সংক্ষিপ্ত তথ্য প্রদর্শিত হবে। আপনি যদি "
-"কোন সার্ভিসের\n"
-"আবশ্যকতা সম্পর্কে নিশ্চিত না হন তবে ডিফল্ট মানে রেখে দেয়াই নিরাপদ।\n"
-"\n"
-"!! আপনি আপনার মেশিন সার্ভার হিসেবে ব্যবহার করতে চাইলে খুব সাবধান থাকবেন: আপনি "
-"অবশ্যই\n"
-"কোন অবাঞ্ছনীয় সার্ভিস চালু করতে চান না কারন কিছু সার্ভিস সার্ভারে সক্রিয় করাটা "
-"বিপদজনক।\n"
-"এক কথায়, শুধু সেসব সার্ভিসই চালু করুন যেসব আপনার প্রয়োজন। !!"
-
-#: help.pm:207
-#, c-format
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
-"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
-msgstr ""
-
-#: help.pm:218 install_steps_interactive.pm:859
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "হার্ডওয়্যারে ঘড়ি GMT-এ সেট করা"
-
-#: help.pm:218
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "সয়ংক্রিয় সময় মেলানো"
-
-#: help.pm:221
-#, c-format
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-"গ্রাফিক কার্ড\n"
-"\n"
-" সাধারণত ইনস্টলার আপনার মেশিনে ইনস্টলকৃত গ্রাফিক কার্ড স্বয়ংক্রিয়ভাবে সন্ধান করবে\n"
-"এবং কন্‌ফিগার করবে। যদি এটি সঠিক না হয়, তাহলে আপনি এই তালিকা থেকে যেই কার্ড\n"
-"আপনি ইনস্টল করেছেন সেটা বেছে নিতে পারবেন।\n"
-"\n"
-" এই অবস্থাতে যেখানে আপনার কার্ডের জন্য বিভিন্ন সার্ভার পাওয়া যায়, 3D \n"
-"acceleration সহ অথবা ছাড়া, আপনার প্রয়োজন অনুযায়ী সেরা সার্ভার বেছে নিতে\n"
-"আপনাকে জিজ্ঞেস করা হবে।"
-
-#: help.pm:232
-#, c-format
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-
-#: help.pm:289
-#, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
-msgstr ""
-"মনিটর\n"
-"\n"
-" সাধারণত ইনস্টলার আপনার মেশিনে সংযুক্ত মনিটর স্বয়ংক্রিয়ভাবে সন্ধান করবে\n"
-"এবং কন্‌ফিগার করবে। যদি এটি সঠিক না হয়, তাহলে আপনি এই তালিকা থেকে যেই মনিটর\n"
-"আপনার কম্পিউটারে সংযুক্ত করেছেন সেটা বেছে নিতে পারবেন।"
-
-#: help.pm:296
-#, c-format
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
-msgstr ""
-"রেজ্যুলুশন\n"
-"\n"
-" এখানে আপনার গ্রাফিক্‌স হার্ডওয়্যারের রেজ্যুলুশন এবং রংয়ের গভীরতা বেছে নিতে \n"
-"পারেন। আপনার প্রয়োজনের সাথে যেটি সবচেয়ে ভাল হয় তার যেকোন একটি বেছে নিন\n"
-"(ইনস্টলেশনের পর আপনি তা পরিবর্তন করতে সমর্থ হবেন)। বেছে নেয়া কন্‌ফিগারেশনের\n"
-"নমুনা মনিটরের ছবিতে দেখানো হচ্ছে।"
-
-#: help.pm:304
-#, c-format
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-"এই অবস্থাতে যেখানে আপনার কার্ডের জন্য বিভিন্ন সার্ভার পাওয়া যায়, 3D \n"
-"acceleration সহ অথবা ছাড়া, আপনার প্রয়োজন অনুযায়ী সেরা সার্ভার বেছে নিতে\n"
-"আপনাকে জিজ্ঞেস করা হবে।"
-
-#: help.pm:309
-#, c-format
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"অপশন\n"
-"\n"
-" এই ধাপগুলো বুট করার সময় স্বয়ংক্রিয়ভাবে আপনি যেখানে আপনার মেশিনের গ্রাফিকাল\n"
-"ইন্টারফেস বাছাই করার অনুমতি পাবেন। সুস্পষ্টভাবেই, যদি আপনার মেশিনকে একটি সার্ভার "
-"হিসেবে\n"
-"ব্যবহার করতে চান, তাহলে আপনি \"%s\" দিয়ে পরীক্ষা করে নিতে পারেন, অথবা যদি "
-"আপনি\n"
-"সফলভাবে ডিসপ্লে কন্‌ফিগার করতে না পারেন।"
-
-#: help.pm:317
-#, c-format
-msgid ""
-"You now need to decide where you want to install the Mandriva Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandriva Linux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandriva Linux system, "
-"choose\n"
-"this option. Be careful, because you will not be able to undo this "
-"operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-
-#: help.pm:375 install_interactive.pm:96
-#, c-format
-msgid "Use free space"
-msgstr "শুণ্য স্থান ব্যবহার করো"
-
-#: help.pm:375
-#, c-format
-msgid "Use existing partition"
-msgstr "উপস্থিত পার্টিশন ব্যবহার করো"
-
-#: help.pm:375 install_interactive.pm:138
-#, c-format
-msgid "Use the free space on the Microsoft Windows® partition"
-msgstr "উইন্ডোজ পার্টিশনের খালি জায়গা ব্যবহার করে"
-
-#: help.pm:375
-#, c-format
-msgid "Erase entire disk"
-msgstr "সম্পূর্ণ ডিস্ক মুছে ফেলো"
-
-#: help.pm:375
-#, c-format
-msgid "Remove Windows"
-msgstr "উইন্ডোজ সরাও"
-
-#: help.pm:375 install_interactive.pm:233
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "হাতে হাতে ডিস্ক পার্টিশন"
-
-#: help.pm:378
-#, c-format
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
-"to remove the installation media (CD-ROM or floppy). The first thing you\n"
-"should see after your computer has finished doing its hardware tests is the\n"
-"boot-loader menu, giving you the choice of which operating system to start.\n"
-"\n"
-"The \"%s\" button shows two more buttons to:\n"
-"\n"
-" * \"%s\": enables you to create an installation floppy disk which will\n"
-"automatically perform a whole installation without the help of an operator,\n"
-"similar to the installation you've just configured.\n"
-"\n"
-" Note that two different options are available after clicking on that\n"
-"button:\n"
-"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
-"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing on a number of similar\n"
-"machines. See the Auto install section on our web site for more\n"
-"information.\n"
-"\n"
-" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
-"To use this selection with another installation, insert the floppy and\n"
-"start the installation. At the prompt, press the [F1] key, type >>linux\n"
-"defcfg=\"floppy\"<< and press the [Enter] key.\n"
-"\n"
-"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
-"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
-"/dev/fd0\"."
-msgstr ""
-
-#: help.pm:410
-#, c-format
-msgid "Generate auto-install floppy"
-msgstr "সয়ংক্রিয়-ইনস্টল ফ্লপি তৈরী করো"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Replay"
-msgstr "জবাব"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Automated"
-msgstr "সয়ংক্রিয়ভাবে"
-
-#: help.pm:410 install_steps_interactive.pm:1317
-#, c-format
-msgid "Save packages selection"
-msgstr "প্যাকেজের নির্বাচন সংরক্ষণ করে রাখো"
-
-# সাম
-#: help.pm:413
-#, c-format
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
-"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
-"reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"will not be able to recover it.\n"
-"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
-"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandriva Linux operating system installation.\n"
-"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-"আপনি যদি পুরানো GNU/Linux পার্টিশন আবার ব্যবহার করতে চান, আপনি হয়ত কোন পার্টিশন "
-"নতুন করে ফরম্যাট করে পুরানো তথ্য মুছে ফেলতে চাইবেন। এটি করতে হলে, ঐ পার্টিশনগুলোও "
-"নির্বাচন করুন।\n"
-"\n"
-"মনে রাখবেন, সব পার্টিশন ফরম্যাট করা জরুরী নয়। যে পার্টিশনে অপারেটিং সিস্টেম থাকবে "
-"(যেমন \"/\", \"/usr\" বা \"/var\") সেটি অবশ্যই ফরম্যাট করতে হবে কিন্তু যেসব "
-"পার্টিশনের তথ্য আপনি সংরক্ষন করতে চান (সাধারনত \"/home\") সেগুলো ফরম্যাট করা "
-"অত্যাবশ্যকীয় নয়।\n"
-"\n"
-"পার্টিশন নির্বাচন করতে সাবধানতা অবলম্বন করবেন। ফরম্যাট করলে নির্বাচিত পার্টিশনের "
-"সব তথ্য মুছে যাবে এবং তা আর ফিরে পাওয়া যাবে না।\n"
-"\n"
-"পার্টিশন ফরম্যাট শুরু করতে \"%s\" চাপুন।\n"
-"\n"
-"আপনার নতুন Mandriva Linux অপারেটিং সিস্টেম ইনস্টেশনের জন্য আপনি যদি অন্য একটি "
-"পার্টিশন নির্বাচন করতে, তবে \"%s\" ক্লিক করুন।\n"
-"\n"
-"যদি আপনি পার্টিশনের জন্য ডিস্কের খারাপ ব্লক সনাক্ত করাতে চান তাহলে \"%s\" ক্লিক "
-"করুন।"
-
-# আগে
-#: help.pm:432 install_steps_gtk.pm:392 interactive.pm:437
-#: interactive/newt.pm:318 printer/printerdrake.pm:3882
-#: standalone/drakTermServ:391 standalone/drakbackup:4065
-#: standalone/drakbackup:4101 standalone/drakbackup:4212
-#: standalone/drakbackup:4227 ugtk2.pm:488
-#, c-format
-msgid "Previous"
-msgstr "পূর্ববর্তী"
-
-# সাম
-#: help.pm:435
-#, c-format
-msgid ""
-"By the time you install Mandriva Linux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-"আপনি যখন Mandriva Linux ইনস্টল করবেন, সম্ভবত প্রথম রিলিজ থেকে কিছু\n"
-"প্যাকেজ আপডেট হয়ে গেছে। কোন সাধারন বা নিরাপত্তা ত্রুটি সমাধান করা হয়েছে।\n"
-"আপনাকে এই সুবিধাগুলি দেয়ার লক্ষ্যে এই আপডেটগুলো ইন্টারনেট থেকে ডাউনলোড\n"
-"করার সুযোগ দেয়া হয়েছে। যদি আপনার সক্রিয় ইন্টারনেট সংযোগ থাকে, \"%s\" চেক\n"
-"করুন, আর \"%s\" চেক করুন যদি আপাতত ইনস্টল করতে না চান।\n"
-"\n"
-"\"%s\" বাছাই করলে আপাকে কিছু ওয়েব লোকেশনের তালিকা দেয়া হবে যেখান থেকে\n"
-"আপডেট পাওয়া যাবে। আপনি আপনার কাছের একটি লোকেশন পছন্দ করুন। এরপর\n"
-"একটি প্যাকেজ নির্বাচন করার জন্য একটি ট্রী দেখানো হবে। প্যাকেজগুলো দেখুন এবং\n"
-"ডাউনলোড করে ইনস্টল করতে \"%s\" বাটন চাপুন। অথবা \"%s\" ক্লিক করে বের হয়ে আসুন।"
-
-# ইনস্টল
-#: help.pm:445 help.pm:589 install_steps_gtk.pm:391
-#: install_steps_interactive.pm:132
-#, c-format
-msgid "Install"
-msgstr "ইনস্টল"
-
-# সাম
-# নিরাপত্তা স্তর
-#: help.pm:448
-#, c-format
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
-"\n"
-"If you do not know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandriva Linux\n"
-"Control Center.\n"
-"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-"এই সময়ে DrakX আপনার মেশিনের জন্য আপনার ইচ্ছানুযায়ী নিরাপত্তা স্তর\n"
-"বেছে নেয়ার সুযোগ দেবে। সাধারন নিয়ম অনুযায়ী, যদি একটি মেশিনে জরুরী\n"
-"তথ্য থাকে বা মেশিনটি ইন্টারনেটে সংযুক্ত থাকে তবে নিরাপত্তা বাড়িয়ে দেয়া\n"
-"হয়। নিরাপত্তা যত বেশী, ব্যবহারের স্বাচ্ছন্দ্য তত কমে যায়।\n"
-"\n"
-"আপনি যদি নিশ্চিত না হন কোন অপশনটি রাখবেন তবে ডিফল্ট অপশনটিই রাখুন।\n"
-"পরবর্তীতে আপনি এটি draksec টুল (যেটি Mandriva Linux নিয়ন্ত্রন কেন্দ্রের একটি অংশ)\n"
-"দিয়ে পরিবর্তন করতে পারবেন।\n"
-"\n"
-"\"%s\" ক্ষেত্রটিতে যিনি নিরাপত্তার দায়িত্বে নিয়োজিত তার ই-মেইল অ্যাড্রেস দিন।\n"
-"নিরাপত্তা বিষয়ক বার্তাগুলো এই অ্যাড্রেসে পাঠানো হবে। "
-
-#: help.pm:459
-#, c-format
-msgid "Security Administrator"
-msgstr "সিকিউরিটি এ্যডমিনিস্ট্রেটর"
-
-# সাম
-#: help.pm:462
-#, c-format
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandriva Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"%s\": this option deletes all partitions on the selected hard drive\n"
-"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
-"partitions in the free space of your hard drive\n"
-"\n"
-"\"%s\": gives access to additional features:\n"
-"\n"
-" * \"%s\": saves the partition table to a floppy. Useful for later\n"
-"partition-table recovery if necessary. It is strongly recommended that you\n"
-"perform this step.\n"
-"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
-"\n"
-" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it does not always\n"
-"work.\n"
-"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
-"\n"
-" * \"%s\": un-checking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
-"\n"
-" * \"%s\": use this option if you wish to use a wizard to partition your\n"
-"hard drive. This is recommended if you do not have a good understanding of\n"
-"partitioning.\n"
-"\n"
-" * \"%s\": use this option to cancel your changes.\n"
-"\n"
-" * \"%s\": allows additional actions on partitions (type, options, format)\n"
-"and gives more information about the hard drive.\n"
-"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"When defining the size of a partition, you can finely set the partition\n"
-"size by using the Arrow keys of your keyboard.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and the [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
-"\n"
-" * Ctrl-d to delete a partition\n"
-"\n"
-" * Ctrl-m to set the mount point\n"
-"\n"
-"To get information about the different file system types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"এই সময়ে আপনাকে Mandriva Linux যে পার্টিশনে ইনস্টল হবে তা নির্বাচন\n"
-"করতে হবে। যদি আগে থেকেই পার্টিশন তৈরী থাকে, (GNU/Linux এর পুর্বের\n"
-"কোন ইনস্টলেশনের কারনে বা অন্য কোন পার্টিশন টুল দিয়ে তৈরী করা) আপনি\n"
-"সেগুলো ব্যবহার করতে পারেন। অন্যথায় হার্ডড্রাইভ পার্টিশন তৈরী করতে হবে।\n"
-"\n"
-"পার্টিশন তৈরী করতে প্রথমে একটি হার্ডড্রাইভ নির্বাচন করুন। প্রথম পার্টিশন\n"
-"নির্বাচনের জন্য \"hda\", দ্বিতীয় পার্টিশনের জন্য \"hdb\", প্রথম SCSI ড্রাইভের\n"
-"জন্য \"sda\" ইত্যাদি ক্লিক করুন।\n"
-"\n"
-"নির্বাচিত ড্রাইভটি পার্টিশন করতে নিম্নলিখিত অপশনসমূহ ব্যবহার করুন:\n"
-"\n"
-" * \"%s\": এই অপশনটি নির্বাচিত ড্রাইভের সব পার্টিশন মুছে দিবে\n"
-"\n"
-" * \"%s\": এই অপশনটি আপনার হার্ডড্রাইভের খালি অংশে স্বয়ংক্রিয়ভাবে ext3 এবং\n"
-"swap পার্টিশন তৈরী করতে দিবে।\n"
-"\n"
-"\"%s\": আরও ফিচার ব্যবহার করার সুযোগ দেয়:\n"
-"\n"
-" * \"%s\": পার্টিশন টেবিলটি ফ্লপিতে সংরক্ষন করে যা কিনা পরবর্তীতে পার্টিশন\n"
-"টেবিল উদ্ধার করতে কাজে লাগে। এটি খুবই গুরুত্বপুর্ণ একটি ধাপ যেটি আপনার\n"
-"করা উচিত।\n"
-"\n"
-" * \"%s\": ফ্লপি ডিস্কে সংরক্ষিত পার্টিশন টেবিল এনে তা পুর্বাবস্থায় ফিরিয়ে নেয়।\n"
-"\n"
-" * \"%s\": আপনার পার্টিশন টেবিল নষ্ট হলে আপনি এই অপশনটি দিয়ে তা মেরামত\n"
-"করার চেষ্টা করতে পারেন। অনুগ্রহ করে সাবধানতা অবলম্বন করবেন এবং মনে রাখবেন\n"
-"এই প্রক্রিয়া সবসময় সফল নাও হতে পারে।\n"
-"\n"
-" * \"%s\": সব পরিবর্তন বাতিল করে দিয়ে হার্ডড্রাইভের পুর্বের মূল পার্টিশন টেবিল লোড "
-"করে।\n"
-"\n"
-" * \"%s\": এই অপশনটি অনির্বাচিত করলে, ব্যবহারকারীদের রিমুভেবল মাধ্যম যেমন\n"
-"ফ্লপি এবং CD-ROM নিজে নিজে মাউন্ট/আনমাউন্ট করার প্রায়োজন পরবে।\n"
-"\n"
-" * \"%s\": এই অপশনটি ব্যবহার করুন যদি হার্ডড্রাইভ পার্টিশন আপনি উইজার্ডের\n"
-"মাধ্যমে করতে চান। পার্টিশন সম্বন্ধে ভাল ধারনা না থাকলে এই অপশনটি পরামর্শনীয়।\n"
-"\n"
-" * \"%s\": এই অপশনটি ব্যবহার করে পরিবর্তনগুলো বাতিল করুন।\n"
-"\n"
-" * \"%s\": আপনার পার্টিশনে আরও কিছু কাজ (ধরন, অপশন ফরম্যাট) করার অপশন\n"
-"দেয় ও হার্ডড্রাইভ সম্পর্কে আরও তথ্য দেয়।\n"
-"\n"
-" * \"%s\": পার্টিশন করা শেষ হলে এই অপশন আপনার সেটিংগুলো ডিস্কে সংরক্ষণ করবে।\n"
-"\n"
-"পার্টিশনের সাইজ ঠিক করতে আপনি কীবোর্ডের তীর চিহ্নিত কীগুলো ব্যবহার করতে পারেন।\n"
-"\n"
-"দ্রষ্টব্য: আপনি যেকোন অপশন কীবোর্ড দিয়ে নির্বাচন করতে পারেন। পার্টিশন নির্বাচন\n"
-"করতে [Tab] এবং [Up/Down] তীর চিহ্নগুলো ব্যবহার করুন।\n"
-"\n"
-"যখন একটি পার্টিশন নির্বাচন অবস্থায় আছে, আপনি নিম্নলিখিত কীগুলো ব্যবহার করতে "
-"পারেন:\n"
-"\n"
-" * Ctrl-c নতুন পার্টিশন তৈরী করার জন্য (যখন একটি খালি পার্টিশন নির্বাচন করা "
-"হয়েছে)\n"
-"\n"
-" * Ctrl-d একটি পার্টিশন মুছে দিতে\n"
-"\n"
-" * Ctrl-m মাউন্ট পয়েন্ট সেট করতে\n"
-"\n"
-"বিদ্যমান ফাইল সিস্টেমের ধরন সম্পর্কে জানতে হলে \"Reference Manual\" এর\n"
-"ext2FS অধ্যায়টি পড়ুন।\n"
-"\n"
-"আপনি যদি PPC মেশিনে ইনস্টল করেন, তাহলে আপনাকে yaboot বুটলোডারের\n"
-"ব্যবহারের জন্য একটি ছোট অন্তত ১ এমবি এর HFS \"বুটস্ট্র্যাপ\" পার্টিশন তৈরী করতে "
-"হবে।\n"
-"আপনি যদি পার্টিশনটি আরও বড় করতে চান, যেমন ৫০ MB, আপনি কোন জরুরী বুট সমস্যার\n"
-"জন্য একটি আলাদা কার্নেল এবং ramdisk তৈরী করে এই পার্টিশনে রাখতে পারেন।"
-
-#: help.pm:531
-#, c-format
-msgid "Removable media auto-mounting"
-msgstr "রিমুভযোগ্য মিডিয়া সয়ংক্রিয়ভাবে মাউন্ট করা হচ্ছে"
-
-#: help.pm:531
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "সাধারণ/দক্ষ মোডের মধ্যে পরিবর্তন"
-
-#: help.pm:534
-#, c-format
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandriva Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-
-#: help.pm:565
-#, c-format
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country is not in "
-"the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-"\"%s\": বর্তমান দেশ নির্বাচন পরীক্ষা করুন। আপনি যদি এই দেশের জন্য না হন,\n"
-"তাহলে \"%s\" বাটনে ক্লিক করুন এবং অন্য একটি বেছে নিন। যদি আপনার দেশ\n"
-"উল্লেখিত তালিকায় না থাকে, তাহলে \"%s\" বাটনে ক্লিক করে সম্পূর্ণ দেশের তালিকায় "
-"পেয়ে যান।"
-
-#: help.pm:570
-#, c-format
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandriva Linux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandriva Linux system. Your current "
-"partitioning\n"
-"scheme and user data will not be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandriva Linux version \"8.1\" is not recommended."
-msgstr ""
-
-# সাম
-# ইনস্টলেশন
-#: help.pm:592
-#, c-format
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
-"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard do not match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
-"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
-"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-"আপনার ভাষা নির্বাচনের উপর ভিত্তি করে, DrakX স্বয়ংক্রিয়ভাবে একটি কীবোর্ড\n"
-"কনফিগারেশন বেছে নেবে। এই নির্চনটি বাঞ্ছনীয় কিনা দেখে নিন বা অন্য একটি\n"
-"লেআউট পছন্দ করুন।\n"
-"\n"
-"আপনার ভাষার সাথে সম্পূর্ন মিলিয়ে কীবোর্ড আপনি নাও পেতে পারেন:\n"
-"যেমন যদি আপনি ইংরেজী ভাষাভাষী একজন সুইস নাগরিক হন, আপনি সুইস কীবোর্ড\n"
-"ব্যবহার করতে পারেন। কিন্তু আপনি যদি ইংরেজী ভাষী হয়ে Quebec এ বসবাস\n"
-"করেন আপনার পরিস্থিতি এমন হতে পারে যেখানে country-set কীবোর্ড এবং\n"
-"নিজস্ব ভাষা একই নয়। যেকোন ক্ষেত্রেই আপনি আপনি একটি তালিকা থেকে সঠিক\n"
-"কীবোর্ডটি বেছে নিতে পারেন।\n"
-"\n"
-"সমর্থিত কীবোর্ডের তালিকা দেখতে \"%s\" বাটনে ক্লিক করুন।\n"
-"\n"
-"যদি আপনি নন‌-ল্যাটিন বর্ণমালার কীবোর্ডে লেআউট বাছাই করেন, পরবর্তী ডায়ালগটি\n"
-"আপনাকে ল্যাটিন ও নন‌-ল্যাটিন কীবোর্ডের মধ্যে সুইচ করার জন্য একটি কী বাইন্ডিং\n"
-"বাছাই করতে হবে।"
-
-#: help.pm:610
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandriva Linux's use of UTF-8 "
-"will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-
-#: help.pm:648
-#, c-format
-msgid "Espanol"
-msgstr "স্পেনীয়"
-
-#: help.pm:651
-#, c-format
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
-"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-
-#: help.pm:682
-#, c-format
-msgid "with Wheel emulation"
-msgstr "চাকার বৈশিষ্ঠ অনুহকরণ"
-
-#: help.pm:682
-#, c-format
-msgid "Universal | Any PS/2 & USB mice"
-msgstr "Universal | যে কোন PS/2 এবং ইউএসবি মাউস"
-
-#: help.pm:685
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"সঠিক পোর্টটি নির্বাচন করুন। যেমন, উইন্ডোজের \"COM1\" পোর্টটি GNU/Linux-এ\n"
-"\"ttyS0\" নামে পরিচিত।"
-
-#: help.pm:689
-#, c-format
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: do not make the password too long or too complicated because "
-"you\n"
-"must be able to remember it!\n"
-"\n"
-"The password will not be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you do not know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-
-#: help.pm:723
-#, c-format
-msgid "authentication"
-msgstr "অনুমোদন"
-
-#: help.pm:726
-#, c-format
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can not determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" will not install any boot loader. Use this option only if "
-"you\n"
-"know what you're doing."
-msgstr ""
-
-# সাম
-# emulate = এমুলেট?
-#: help.pm:743
-#, c-format
-msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you do not like your printing\n"
-"system you may change it by running PrinterDrake from the Mandriva Linux\n"
-"Control Center and clicking on the \"%s\" button."
-msgstr ""
-"এখন সময় আপনার কম্পিউটারের জন্য একটি প্রিন্টিং সিস্টেম নির্বাচন করার। অনান্য\n"
-"অপারেটিং সিস্টেম আপনাকে একটি অপশন দিতে পারে কিন্তু Mandriva Linux দেবে দুটি।\n"
-"প্রিন্টিং সিস্টেমগুলো বিভিন্ন কনফিগারেশনের জন্য প্রযোজ্য।\n"
-"\n"
-" * \"%s\" -- অর্থ হচ্ছে \"প্রিন্ট করো, সারিতে রাখবেনা\". এটি নির্বাচন করুন যদি "
-"আপনার কোন\n"
-"প্রিন্টারের সাথে সরাসরি সংযোগ থাকে, আপনি প্রিন্টার জ্যাম থেকে জরুরীভাবে বের হয়ে "
-"যেতে\n"
-"চান এবং যদি আপনার নেটওয়ার্ক প্রিন্টার না থাকে।(\"%s\" শুধুমাত্র খুবই সাধারন "
-"নেটওয়ার্ক\n"
-"সামলাতে পারে এবং কিছুটা ধীর হয়)। এটি আপনার GNU/Linux এর প্রথম অভিজ্ঞতা হলে\n"
-"আপনার \"pdq\" ব্যবহার করাটাই শ্রেয়।\n"
-"\n"
-" * \"%s\" অর্থ \"সাধারন Unix প্রিন্টিং সিস্টেম\" এবং এটি আপনার স্থানীয় প্রিন্টার "
-"হোক\n"
-"বা পৃথিবীর অন্য প্রান্তে অবস্থিত কোন প্রিন্টারই হোক যেকোন ক্ষেত্রেই একটি উত্‍কৃষ্ট "
-"সিস্টেম।\n"
-"এটি কনফিগার করতে সহজ এবং পুরোনো \"lpd\" প্রিন্টিং সিস্টেমের জন্য সার্ভার বা "
-"ক্লায়েন্ট\n"
-"হিসেবে কাজ করতে পারে। অতএব এটি পুরানো অপারেটিং সিস্টেম যেগুলোর সার্ভিস প্রয়োজন\n"
-"তাদের সাথেও সামঞ্জস্যপূর্ণ। যদিও খুব শক্তিশালী, মূল সেটআপটি প্রায় \"pdq\" এর মত "
-"সহজ।\n"
-"আপনি যদি \"lpd\" সার্ভার এমুলেট করতে চান, তবে \"cups-lpd\" daemon টি চালু করতে\n"
-"ভুলবেন না। \"%s\" এর প্রিন্টার অপশন বাছাই করা ও প্রিন্টার ব্যবস্থাপনার জন্য একটি "
-"গ্রাফিক্যাল\n"
-"ইন্টারফেস রয়েছে।\n"
-"\n"
-"আপনার বাছাইকৃত প্রিন্টিং সিস্টেমটি যদি আপনার পরে পছন্দ না হয়,\n"
-"তবে আপনি Mandriva Linux নিয়ন্ত্রন কেন্দ্র থেকে PrinterDrake চালিয়ে ও \"%s\" বাটন "
-"ক্লিক\n"
-"করে তা বদল করতে পারেন।"
-
-#: help.pm:766
-#, c-format
-msgid "pdq"
-msgstr "pdq"
-
-#: help.pm:766 printer/cups.pm:117 printer/data.pm:129
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
-
-#: help.pm:766
-#, c-format
-msgid "Expert"
-msgstr "দক্ষ"
-
-# সাম
-# check উচিত spelling, zwj didn't work for me...
-#: help.pm:769
-#, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"DrakX প্রথমে আপনার কম্পিউটারে বিদ্যমান IDE ডিভাইস সনাক্ত করবে। এটি আপনার\n"
-"সিস্টেমে এক বা একাধিক PCI SCSI কার্ডের জন্যেও স্ক্যান করবে। যদি SCSI কার্ড পাওয়া\n"
-"যায়, DrakX নিজে নিজেই সঠিক ড্রাইভারটি ইনস্টল করবে।\n"
-"\n"
-"যেহেতু হার্ডওয়্যার সনাক্তকরন কোন অব্যার্থ পক্রিয়া নয়, DrakX আপনার হার্ডড্রাইভ সনাক্ত\n"
-"নাও করতে পারে। এ ক্ষেত্রে আপনাকে হার্ডওয়্যারটি নিজ হাতে নির্দিষ্ট করে দিতে হবে।\n"
-"\n"
-"PCI SCSI adapter নিজ হাতে নির্দিষ্ট করে দিতে হলে, DrakX আপনাকে জিজ্ঞাসা করবে\n"
-"আপনি অপশন কনফিগার করতে চান কিনা। আপনার DrakX কে হার্ডওয়্যারটির নির্দিষ্ট কার্ডের\n"
-"অপশনের জন্য প্রোব করতে দেয়া উচিত্‍ যা কিনা adapter ইনিশিয়ালাইজ করতে প্রয়োজন।\n"
-"বেশীরভাগ ক্ষেত্রে DrakX এই কাজটি কোন ঝামেলা ছাড়াই সম্পন্ন করবে।\n"
-"\n"
-"DrakX যদি প্রোব করে হার্ডওয়্যারে পাঠানোর জন্য প্যারামিটারগুলো নির্ধারন করতে না "
-"পারে\n"
-"তাহলে আপনাকে তা নিজে হাতে কনফিগারেশন করতে হবে।\n"
-" "
-
-#: help.pm:787
-#, c-format
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-"\"%s\": যদি আপনার সিস্টেমে একটি সাউন্ড কার্ড পাওযা যায়, সেটা এখানে দেখানো হবে।\n"
-"যদি আপনি জানান যে আসলে এই সাউন্ড কার্ডটি আপনার সিস্টেমে উপস্থিত নেই, তাহলে আপনি\n"
-"বাটনে ক্লিক করুন এবং অন্য একটি ড্রাইভার বেছে নিন।"
-
-#: help.pm:789 help.pm:856 install_steps_interactive.pm:991
-#: install_steps_interactive.pm:1008
-#, c-format
-msgid "Sound card"
-msgstr "সাউন্ডকার্ড"
-
-#: help.pm:792
-#, c-format
-msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"is not in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it is not\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandriva Linux Control Center after the installation has finished to "
-"benefit\n"
-"from full in-line help.\n"
-"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandriva Linux Control Center.\n"
-"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-
-#: help.pm:856 install_steps_interactive.pm:855
-#: install_steps_interactive.pm:950 standalone/drakclock:100
-#: standalone/finish-install:56 standalone/finish-install:57
-#, c-format
-msgid "Timezone"
-msgstr "টাইমজোন"
-
-#: help.pm:856 install_steps_interactive.pm:1024
-#, c-format
-msgid "TV card"
-msgstr "টিভি কার্ড"
-
-#: help.pm:856
-#, c-format
-msgid "ISDN card"
-msgstr "ISDN কার্ড"
-
-#: help.pm:856
-#, c-format
-msgid "Graphical Interface"
-msgstr "গ্রাফিকাল ইন্টারফেস"
-
-#: help.pm:856 install_any.pm:1733 install_steps_interactive.pm:1042
-#: standalone/drakbackup:2051
-#, c-format
-msgid "Network"
-msgstr "নেটওয়ার্ক"
-
-#: help.pm:856 install_steps_interactive.pm:1054
-#, c-format
-msgid "Proxies"
-msgstr "প্রক্সিসমূহ"
-
-#: help.pm:856 install_steps_interactive.pm:1065
-#, c-format
-msgid "Security Level"
-msgstr "সিকউরিটি লেভেল"
-
-#: help.pm:856 install_steps_interactive.pm:1079 network/drakfirewall.pm:189
-#, c-format
-msgid "Firewall"
-msgstr "ফায়ারওয়াল"
-
-#: help.pm:856 install_steps_interactive.pm:1095
-#, c-format
-msgid "Bootloader"
-msgstr "বুটলোডার"
-
-#: help.pm:856 install_steps_interactive.pm:1108 services.pm:114
-#: services.pm:157 services.pm:193
-#, c-format
-msgid "Services"
-msgstr "সার্ভিস সমূহ"
-
-#: help.pm:859
-#, c-format
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"হার্ড ড্রাইভ বেছে নিন যেটি আপনি আপনার নতুন ম্যান্ড্রিব লিনাক্স পার্টিশন ইনস্টল করার "
-"জন্য\n"
-"মুছে ফেলতে চান। সাবধান, এই ড্রাইভে থাকা সকল ডাটা হারিয়ে যাবে এবং আর কখনই\n"
-"পাওয়া যাবে না!"
-
-#: help.pm:864
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-"যদি এই হার্ড ড্রাইভে থাকা সব ডাটা এবং পার্টিশন মুছে ফেলতে চান তাহলে আপনি\n"
-"\"%s\"তে ক্লিক করুন। সাবধান, \"%s\"তে ক্লিক করার পর, উইন্ডোজ ডাটাসহ,\n"
-"আপনি এই হার্ড ড্রাইভে থাকা কোন ডাটা এবং পার্টিশন ফিরে\n"
-"পাবেন না।\n"
-"\n"
-"এই অপারেশনের মাধ্যমে হার্ড ড্রাইভের উপস্থিত ডাটা এবং পার্টিশন হারাতে না চাইলে \"%s"
-"\"তে ক্লিক করুন।"
-
-#: help.pm:870
-#, c-format
-msgid "Next ->"
-msgstr "পরবর্তী ->"
-
-#: help.pm:870
-#, c-format
-msgid "<- Previous"
-msgstr "<- পূর্ববর্তী"
-
-#: install2.pm:115
-#, c-format
-msgid ""
-"Can not access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"আপনার কার্ণেলের কার্ণেল মডিউলগুলোতে প্রবেশ করতে পারছে না (%s ফাইলটি হারিয়া "
-"গেছে), এর স্বাভাবিক অর্থ হচ্ছে আপনার বুট ফ্লপি ইনস্টলেশন মিডিয়ামের সাথে sync এ নেই "
-"(অনুগ্রহ করে একটি নতুন বুট ফ্লপি তৈরী করুন)"
-
-#: install2.pm:167
-#, c-format
-msgid "You must also format %s"
-msgstr "আপনাকে অবশ্যই %s-ও ফরমেট করতে হবে"
-
-#: install_any.pm:406
-#, c-format
-msgid "Do you have further supplementary media?"
-msgstr "আপনার কি আরও একটি মাধ্যম আছে?"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:409
-#, c-format
-msgid ""
-"The following media have been found and will be used during install: %s.\n"
-"\n"
-"\n"
-"Do you have a supplementary installation medium to configure?"
-msgstr ""
-
-#: install_any.pm:422 printer/printerdrake.pm:3211
-#: printer/printerdrake.pm:3218 standalone/scannerdrake:182
-#: standalone/scannerdrake:190 standalone/scannerdrake:241
-#: standalone/scannerdrake:248
-#, c-format
-msgid "CD-ROM"
-msgstr "সিডি-রম"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (HTTP)"
-msgstr "নেটওয়ার্ক (HTTP)"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (FTP)"
-msgstr "নেটওয়ার্ক (FTP)"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (NFS)"
-msgstr ""
-
-#: install_any.pm:452
-#, c-format
-msgid "Insert the CD 1 again"
-msgstr "১ নং সিডিটি আবার প্রবেশ করান"
-
-#: install_any.pm:478 network/netconnect.pm:866 standalone/drakbackup:114
-#, c-format
-msgid "No device found"
-msgstr "কোন ডিভাইস পাওয়া যায় নি"
-
-#: install_any.pm:483
-#, c-format
-msgid "Insert the CD"
-msgstr "সিডিটি প্রবেশ করান"
-
-# সাম
-#: install_any.pm:488
-#, c-format
-msgid "Unable to mount CD-ROM"
-msgstr "CD-ROM মাউন্ট প্রক্রিয়া ব্যর্থ হয়েছে"
-
-#: install_any.pm:521 install_any.pm:542
-#, c-format
-msgid "URL of the mirror?"
-msgstr "mirror এর ইউ-আর-এল?"
-
-#: install_any.pm:526
-#, c-format
-msgid "NFS setup"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "Please enter the hostname and directory of your NFS media"
-msgstr ""
-
-#: install_any.pm:527
-#, c-format
-msgid "Hostname of the NFS mount ?"
-msgstr ""
-
-#: install_any.pm:527 standalone/draknfs:288
-#, c-format
-msgid "Directory"
-msgstr "ডিরেক্টরি"
-
-#: install_any.pm:580
-#, c-format
-msgid ""
-"Can't find a package list file on this mirror. Make sure the location is "
-"correct."
-msgstr "এই mirror এ কোন hdlist ফাইল পাওয়া যাচ্ছে না"
-
-#: install_any.pm:657
-#, c-format
-msgid "Removing packages prior to upgrade..."
-msgstr ""
-
-#: install_any.pm:699
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "যে সমস্থ প্যাকেজ ইনস্টল হয়ে আছে সেগুলি পর্যবেক্ষন করা হচ্ছে..."
-
-#: install_any.pm:703
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "আপগ্রেড করার জন্য প্যাকেজ খোঁজা হচ্ছে..."
-
-#: install_any.pm:781
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done."
-msgstr ""
-"আপনার সিডিরম পরিবর্তন করুন!\n"
-"অনুগ্রহ করে \"%s\" লেখা সিডিরমটি আপনার ড্রাইভে প্রবেশ করান এবং যখন সেটা হয়ে যাবে "
-"ঠিক আছে চাপুন।"
-
-#: install_any.pm:793
-#, c-format
-msgid "Copying in progress"
-msgstr "কপি সম্পন্ন হচ্ছে"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:935
-#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They do not have any known security\n"
-"issues, but some new ones could be found. In that case, you must make sure\n"
-"to upgrade as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"আপনি নিম্মলিখিত সার্ভার(গুলো) বেছে নিয়েছেন: %s\n"
-"\n"
-"\n"
-"এই সার্ভারগুলো ডিফল্টভাবেই চালু করা থাকে। তাদের কোন নিরাপত্তা সমস্যা\n"
-"নেই, কিন্তু নতুন কিছুর ক্ষেত্রে তার প্রয়োজন আছে। সেক্ষেত্রে আপনি অবশ্যই সেগুলোকে\n"
-"যত তাড়াতাড়ি সম্ভব আপগ্রেড করার ক্ষেত্রে নিশ্চিত হোন।\n"
-"\n"
-"\n"
-"আপনি কি আসলেই এই সার্ভারগুলো ইনস্টল করতে চান?\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:958
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-"আপনার সিস্টেম আপগ্রেড করার ক্ষেত্রে নিম্নলিখিত প্যাকেজগুলো মুছে যাবে: %s\n"
-"\n"
-"\n"
-"আপনি কি আসলেই এই প্যাকেজগুলো মুছে ফেলতে চান?\n"
-
-#: install_any.pm:1394 partition_table.pm:597
-#, c-format
-msgid "Error reading file %s"
-msgstr "%s ফাইল পড়াতে ত্রুটি"
-
-# সাম
-#: install_any.pm:1628
-#, c-format
-msgid "The following disk(s) were renamed:"
-msgstr "নিম্নলিখিত ডিস্কগুলো নামান্তর করা হয়েছে:"
-
-# সাম
-#: install_any.pm:1630
-#, c-format
-msgid "%s (previously named as %s)"
-msgstr "%s (পূর্বের নাম %s)"
-
-#: install_any.pm:1670
-#, 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 ""
-"একটি ভুল হয়ে গেছে - কোন সঠিক যন্ত্র পাওয়া যায়নি যেখানে নতুন ফাইল সিস্টেম তৈরি করা "
-"হবে। অনুগ্রহ করে এই সমস্যার কারণের জন্য আপনার হার্ডওয়্যার পরীক্ষা করুন"
-
-#: install_any.pm:1714
-#, c-format
-msgid "HTTP"
-msgstr "এইচ-টি-টি-পি"
-
-#: install_any.pm:1714
-#, c-format
-msgid "FTP"
-msgstr "এফ-টি-পি"
-
-# সাম
-#: install_any.pm:1714
-#, c-format
-msgid "NFS"
-msgstr "NFS"
-
-# সাম
-#: install_any.pm:1737
-#, c-format
-msgid "Please choose a media"
-msgstr "অনুগ্রহ করে একটি মিডিয়া নির্বাচন করুন"
-
-#: install_any.pm:1753
-#, c-format
-msgid "File already exists. Overwrite it?"
-msgstr "এই ফাইলটি আগে থেকেই আছে। করব?"
-
-#: install_any.pm:1757
-#, c-format
-msgid "Permission denied"
-msgstr "অনুমতি প্রদান করা হয়নি"
-
-#: install_any.pm:1806
-#, c-format
-msgid "Bad NFS name"
-msgstr ""
-
-# সাম
-#: install_any.pm:1827
-#, c-format
-msgid "Bad media %s"
-msgstr "অগ্রহণযোগ্য মিডিয়া %s"
-
-#: install_any.pm:1877
-#, c-format
-msgid "Can not make screenshots before partitioning"
-msgstr "পার্টিশন করার আগে স্ক্রিনশট তৈরী করা যায়নি"
-
-#: install_any.pm:1884
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "%s -এ ইনস্টল করার পরে স্ক্রিনশট পাওয়া যাবে"
-
-#: install_gtk.pm:136
-#, c-format
-msgid "System installation"
-msgstr "সিস্টেম ইনস্টলেশন"
-
-#: install_gtk.pm:139
-#, c-format
-msgid "System configuration"
-msgstr "সিস্টেম কনফিগারেশন"
-
-#: install_interactive.pm:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"আপনার কম্পিউটারের কিছু হার্ডওয়্যার কাজ করার জন্য ``মালিকানার'' ড্রাইভার প্রয়োজন।\n"
-"আপনি তাদের সম্পর্কে এখান থেকে তথ্য নিতে পারবেন: %s"
-
-#: install_interactive.pm:63
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"আপনার অবশ্যই একটি root পার্টিশন থাকতে হবে।\n"
-"সেকারণে, একটি পার্টিশন তৈরি করুন (অথবা ইতিমধ্যেই তৈরি একটিতে ক্লিক করুন)।\n"
-"তারপর ``Mount point'' বেছে নিন এবং সেটাকে `/' তে সেট করুন"
-
-#: install_interactive.pm:68
-#, c-format
-msgid ""
-"You do not have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"আপনার কোন swap পার্টিশন নেই\n"
-"\n"
-"তবুও আগাবো?"
-
-#: install_interactive.pm:71 install_steps.pm:215
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "আপনার /boot/efi -এ অবশ্যই একটি FAT পার্টিশন থাকতে হবে"
-
-#: install_interactive.pm:98
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "নতুন পার্টিশন তৈরী করার জন্য যথেষ্ট পরিমান খালি জায়গা নেই"
-
-#: install_interactive.pm:106
-#, c-format
-msgid "Use existing partitions"
-msgstr "আগের পার্টিশনগুলি ব্যবহার করো"
-
-#: install_interactive.pm:108
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "ব্যবহারের জন্য এখানে উপস্থিত কোন পার্টিশন নেই"
-
-#: install_interactive.pm:115
-#, c-format
-msgid "Use the Microsoft Windows® partition for loopback"
-msgstr "লুপ ব্যাকের জন্য উইন্ডোজের পার্টিশন ব্যবহার করো"
-
-#: install_interactive.pm:118
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Linux4Win-এর জন্য আপনি কোন পার্টিশন ব্যবহার করতে চান?"
-
-#: install_interactive.pm:120
-#, c-format
-msgid "Choose the sizes"
-msgstr "সাইজ পছন্দ করো"
-
-#: install_interactive.pm:121
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "মেগাবাইটে রুট পার্টিশনের সাইজ:"
-
-#: install_interactive.pm:122
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "মেগাবাইটে সোয়াপ পার্টিশনের সাইজ:"
-
-#: install_interactive.pm:131
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr "লুপব্যাকে ব্যবহারের জন্য কেন FAT পার্টিশন নেই (অথবা পর্যাপ্ত জায়গা নেই)"
-
-#: install_interactive.pm:140
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "আপনি কোন পার্টিশন রি-সাইজ করতে চান?"
-
-#: install_interactive.pm:154
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occurred: %s"
-msgstr ""
-"FAT আকার পরিবর্তক আপনার পার্টিশন হস্তক্ষেপ করতে পারেনি, \n"
-"নিম্নের এই সমস্যাগুলো হয়েছে: %s"
-
-#: install_interactive.pm:157
-#, c-format
-msgid "Computing the size of the Microsoft Windows® partition"
-msgstr "আপনার উইন্ডোজের পার্টিশনের সাইজ হিসেব করা হচ্ছে"
-
-#: install_interactive.pm:164
-#, c-format
-msgid ""
-"Your Microsoft Windows® partition is too fragmented. Please reboot your "
-"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
-"the Mandriva Linux installation."
-msgstr ""
-"আপনার উইন্ডোজের পার্টিশনটি প্রচন্ড অসম। অনুগ্রহ করে আপনার কম্পিউটারটি উইন্ডোজে রি-বুট "
-"করে, ``defrag'' ইউটিলিটি চালান, পরে রি-ষ্টার্ট করে আবার মেনড্রক ইনস্টলেশন চালান।"
-
-#: install_interactive.pm:167
-#, c-format
-msgid ""
-"WARNING!\n"
-"\n"
-"\n"
-"Your Microsoft Windows® partition will be now resized.\n"
-"\n"
-"\n"
-"Be careful: this operation is dangerous. If you have not already done so, "
-"you first need to exit the installation, run \"chkdsk c:\" from a Command "
-"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
-"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
-"optionally run defrag, then restart the installation. You should also backup "
-"your data.\n"
-"\n"
-"\n"
-"When sure, press %s."
-msgstr ""
-"সতর্ক বানী!\n"
-"\n"
-"DrakX এখন আপনার উইন্ডোজের পার্টিশন আকার পরিবর্তন করবে।\n"
-"\n"
-"\n"
-"খুবই সাবধান: এই কার্যক্রমটি বিপদজ্জনক। আপনি যদি এরকম আগে করে না থাকেন, তাহলে "
-"আপনাকে ইনস্টলেশন থেকে বের হয়ে, উইন্ডোজের কমান্ডপ্রমপ্ট থেকে \"chkdsk c:\" চালাতে "
-"হবে (লক্ষ্য রাখবেন, \"scandisk\"-এর মত গ্রাফিক্যাল প্রোগ্রামগুলি যথেষ্ট নয়, আপনাকে "
-"অবশ্যই কমান্ডপ্রমপ্ট থেকে \"chkdsk\" চালাতে হবে), ঐচ্ছিকভাবে defrag চালাতে পরেন, "
-"পরে ইনস্টলেশন পুনরায় শুরু করবেন। আপনকে আপনার ডাটা ব্যাকআপ করা উচিত্‍‌।\n"
-"\n"
-"\n"
-"নিশ্চিত্‍‌ হলে %s চাপুন।"
-
-#: install_interactive.pm:179
-#, c-format
-msgid "Which size do you want to keep for Microsoft Windows® on"
-msgstr "আপনি কোথায় উইন্ডোজের জন্য কোন সাইজটি রাখতে চান"
-
-#: install_interactive.pm:180
-#, c-format
-msgid "partition %s"
-msgstr "পার্টিশনসমূহ %s"
-
-#: install_interactive.pm:189
-#, c-format
-msgid "Resizing Microsoft Windows® partition"
-msgstr "উইন্ডোজ পার্টিশন আকার পরিবর্তন করা হচ্ছে"
-
-#: install_interactive.pm:194
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT আকার পরিবর্তন ব্যর্থ হয়েছে: %s"
-
-#: install_interactive.pm:209
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr ""
-"রি-সাইজ করার জন্য কোন FAT পার্টিশন নেই (অথবা যথেষ্ট পারিমান ফাঁকা জায়গা নেই)"
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Remove Microsoft Windows®"
-msgstr "উইন্ডোজ(TM) মুছে ফেলো"
-
-#: install_interactive.pm:214
-#, fuzzy, c-format
-msgid "Erase and use entire disk"
-msgstr "সম্পূর্ণ ডিস্ক মুছে ফেলো"
-
-#: install_interactive.pm:216
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "আপনার একের অধিক হার্ড ড্রাইভ আছে, আপনি কোনটাতে লিনাক্স ইনস্টল করতে চান?"
-
-#: install_interactive.pm:222
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "%s ড্রাইভে উপস্থিত সমস্থ ডাটা এবং পার্টিশন নষ্ট হয়ে যাবে"
-
-#: install_interactive.pm:237
-#, c-format
-msgid "Use fdisk"
-msgstr "fdisk ব্যবহার করো"
-
-#: install_interactive.pm:240
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, do not forget to save using `w'"
-msgstr ""
-"এখন আপনি %s-কে পার্টিশন করতে পারেন।\n"
-"যখন হয়ে যাবে, তখন `w' চেপে সেভ করতে ভূলবেননা"
-
-#: install_interactive.pm:276
-#, c-format
-msgid "I can not find any room for installing"
-msgstr "আমি ইনস্টল করার জন্য কোন জায়গা পাচ্ছিনা"
-
-#: install_interactive.pm:280
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX পার্টিশন সহায়ক এই সমস্থ সমাধান পেয়েছে:"
-
-#: install_interactive.pm:288
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "পার্টিশনে ব্যার্থ: %s"
-
-#: install_interactive.pm:295
-#, c-format
-msgid "Bringing up the network"
-msgstr "নেটওয়ার্ককে চালু করা হচ্ছে"
-
-#: install_interactive.pm:300
-#, c-format
-msgid "Bringing down the network"
-msgstr "নেটওয়ার্ককে বন্ধ করা হচ্ছে"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:10
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandriva "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandriva Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. This document is a license agreement "
-"between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you "
-"explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this "
-"License. \n"
-"If you disagree with any portion of the License, you are not allowed to "
-"install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner "
-"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate "
-"your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all "
-"copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Limited Warranty\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
-"be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without "
-"limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties "
-"resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or "
-"inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or "
-"occurrence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
-"COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
-"no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever "
-"(including without \n"
-"limitation damages for loss of business, interruption of business, financial "
-"loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential "
-"loss) arising out \n"
-"of the possession and use of software components or arising out of "
-"downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some "
-"countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong "
-"cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. The GPL License and Related Licenses\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. "
-"Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the "
-"documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. Intellectual Property Rights\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
-"as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
-"Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Governing Laws \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-msgstr ""
-
-#: install_messages.pm:90
-#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-"সাবধান: বিনামূল্যের সফ্‌টওয়্যার পেটেন্‌ট মুক্ত হওয়ার প্রয়োজন নেই, এবং কিছু বিনামূল্যের\n"
-"সফ্‌টওয়্যার আপনার দেশ কর্তৃক পেটেন্‌টকৃত হতে পারে। উদাহরণস্বরুপ, অতিরিক্ত ব্যবহারের\n"
-"জন্য MP3 decoder একটি লাইসেন্স যুক্ত থাকে (বিস্তারিত জানার জন্য দেখুন\n"
-"http://www.mp3licensing.com । আপনি যদি অনিশ্চিত হোন যদি এর যেকোন\n"
-"একটি আপনার জন্যও প্রযোজ্য হতে পারে, আপনার স্থানীয় আইন পরীক্ষা করুন।"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:98
-#, c-format
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:131
-#, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press Enter to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandriva "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandriva Linux User's Guide."
-msgstr ""
-"অভিনন্দন, ইনস্টলেশন পুরোপুরিভাবে হয়ে গেছে।\n"
-"দ্নবুট মিডিয়া সরিয়ে ফেলুন, এবং পুনরায় চালু করার জন্য return চাপুন।\n"
-"\n"
-"\n"
-"এই সংস্করণের ম্যান্ড্রিব লিনাক্সের তথ্য এখানে পাওয়া যাচ্ছে,\n"
-"কোন প্রকার সমস্যার সমাধান এখানে পাওয়া যাচ্ছে:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"আপনার সিস্টেম কন্‌ফিগার করার তথ্য অফিসিয়াল ম্যান্ড্রিব লিনাক্স ব্যবহারকারীর গাইডের\n"
-"ইনস্টল হবার পরের অধ্যায়ে পাওয়া যাবে।"
-
-#: install_steps.pm:250
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "%s নকল মাউন্ট পয়েন্ট"
-
-#: install_steps.pm:482
-#, c-format
-msgid ""
-"Some important packages did not get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
-"\"\n"
-msgstr ""
-"কিছু গুরুত্বপূর্ণ প্যাকেজ সঠিকভাবে ইনস্টল হয়নি।\n"
-"হয় আপনার সিডিরম ড্রাইভ অথবা আপনার সিডিরম ত্রুটিপূর্ণ।\n"
-"কোন ইনস্টল কম্পিউটারে \"rpm -qpl media/main/*.rpm\" কমান্ডের মাধ্যমে সিডিরম "
-"পরীক্ষাকরুন\n"
-
-#: install_steps_auto_install.pm:68 install_steps_stdio.pm:27
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "`%s' স্টেপে প্রবেশ করছি\n"
-
-#: install_steps_gtk.pm:181
-#, c-format
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandriva Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"আপনার সিস্টেমের রিসোর্স খুব কম। ম্যান্ড্রিব লিনাক্স ইনস্টল করার সময় আপনি সমস্যার "
-"মুখোমুখি\n"
-"হতে পারেন. যদি সেটা ঘটে, তাহলে আপনাকে এর পরিবর্তে টেক্স ইনস্টল করতে হবে। এর "
-"জন্য,\n"
-"যখন সিডিরম থেকে বুট হবে তখন `F1' চাপুন, তারপর `text' লিখুন।"
-
-#: install_steps_gtk.pm:211 install_steps_interactive.pm:605
-#, c-format
-msgid "Package Group Selection"
-msgstr "প্যাকেজ গ্রুপ নির্বাচন"
-
-#: install_steps_gtk.pm:254 install_steps_interactive.pm:548
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "মোট সাইজ: %d / %d এমবি"
-
-#: install_steps_gtk.pm:299
-#, c-format
-msgid "Bad package"
-msgstr "বাজে প্যাকেজ"
-
-#: install_steps_gtk.pm:301
-#, c-format
-msgid "Version: "
-msgstr "ভার্সন:"
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "Size: "
-msgstr "সাইজ:"
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "%d KB\n"
-msgstr "%d KB\n"
-
-#: install_steps_gtk.pm:303
-#, c-format
-msgid "Importance: "
-msgstr "প্রাধান্য:"
-
-#: install_steps_gtk.pm:336
-#, c-format
-msgid "You can not select/unselect this package"
-msgstr "আপনি এই প্যাকেজটি নির্বাচন/অ-নির্বাচন করতে পারবেন না"
-
-#: install_steps_gtk.pm:340 network/thirdparty.pm:331
-#, c-format
-msgid "due to missing %s"
-msgstr "%s না থাকার কারনে"
-
-#: install_steps_gtk.pm:341
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "%s যথেষ্ট না হবার কারনে"
-
-#: install_steps_gtk.pm:342
-#, c-format
-msgid "trying to promote %s"
-msgstr "%s প্রচারের চেষ্টা চলছে"
-
-#: install_steps_gtk.pm:343
-#, c-format
-msgid "in order to keep %s"
-msgstr "%s রাখার কারণে"
-
-#: install_steps_gtk.pm:348
-#, c-format
-msgid ""
-"You can not select this package as there is not enough space left to install "
-"it"
-msgstr ""
-"আপনি এই প্যাকেজটি নির্বাচন করতে পারবেননা যেহেতু এটা ইনস্টল করার জন্য যথেষ্ট জায়গা "
-"ফাঁকা নেই"
-
-#: install_steps_gtk.pm:351
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "এই প্যাকেজগুলি ইনস্টল হতে যাচ্ছে"
-
-#: install_steps_gtk.pm:352
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "এই প্যাকেজগুলি অপসরিত হতে যাচ্ছে"
-
-#: install_steps_gtk.pm:376
-#, c-format
-msgid "This is a mandatory package, it can not be unselected"
-msgstr "এটি একটি বাধ্যতামূলাক প্যাকেজ, এটি কোনভাবেই বাদ দেয়া যাবেনা"
-
-#: install_steps_gtk.pm:378
-#, c-format
-msgid "You can not unselect this package. It is already installed"
-msgstr ""
-"আপনি এই প্যাকেজটির অ-নির্বাচন করতে পারবেন না, এটা আগে থেকেই ইনস্টল হয়ে আছে"
-
-#: install_steps_gtk.pm:381
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"এই প্যাকেজটি অবশ্যই আপগ্রেড করতে হবে।\n"
-"আপনি কি নিশ্চিত্‍‌ এটা অ-নির্বাচন করতে চান?"
-
-#: install_steps_gtk.pm:384
-#, c-format
-msgid "You can not unselect this package. It must be upgraded"
-msgstr "আপনি এই প্যাকেজটি অ-নির্বাচন করতে পারবেন না। এটা অবশ্যই আপগ্রেড হতে হবে"
-
-#: install_steps_gtk.pm:389
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "সংয়-নির্বাচিত প্যাকেজগুলি দেখাও"
-
-# সাম
-#: install_steps_gtk.pm:394
-#, c-format
-msgid "Load/Save selection"
-msgstr "নির্বাচনসমূহ লোড/সংরক্ষণ করো"
-
-#: install_steps_gtk.pm:395
-#, c-format
-msgid "Updating package selection"
-msgstr "প্যাকেজের নির্বাচন আপগ্রেড করা হচ্ছে"
-
-#: install_steps_gtk.pm:400
-#, c-format
-msgid "Minimal install"
-msgstr "সর্বনিম্ন ইনস্টল"
-
-#: install_steps_gtk.pm:414 install_steps_interactive.pm:467
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "আপনি যেই প্যাকেজগুলি ইনস্টল করতে চান তা পছন্দ করুন"
-
-#: install_steps_gtk.pm:431 install_steps_interactive.pm:691
-#, c-format
-msgid "Installing"
-msgstr "ইনস্টলেশন"
-
-#: install_steps_gtk.pm:457
-#, c-format
-msgid "No details"
-msgstr "কোন বিস্তারিত ছাড়া"
-
-#: install_steps_gtk.pm:472
-#, c-format
-msgid "Time remaining "
-msgstr "সময় বাকী আছে"
-
-#: install_steps_gtk.pm:473
-#, c-format
-msgid "Estimating"
-msgstr "নির্ধারণ চলছে"
-
-#: install_steps_gtk.pm:500
-#, c-format
-msgid "%d packages"
-msgstr "%d প্যাকেজ সমূহ"
-
-#: install_steps_gtk.pm:543 install_steps_interactive.pm:719
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"আপনার সিডিরম পরিবর্তন করুন!\n"
-"অনুগ্রহ করে \"%s\" লেখা সিডিরমটি আপনার ড্রাইভে প্রবেশ করান এবং যখন সেটা হয়ে যাবে "
-"ঠিক আছে চাপুন।\n"
-"যদি সেটা আপনার না থাকে, এই সিডিরম থেকে ইনস্টলেশন এড়িয়ে যেতে বাতিল চাপুন।"
-
-#: install_steps_gtk.pm:556 install_steps_interactive.pm:730
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "প্যাকেজগুলো বিন্যস্ত করতে গিয়ে একটি ভুল ছিল:"
-
-#: install_steps_gtk.pm:558 install_steps_interactive.pm:734
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "এই প্যাকেজগুলি ইনস্টল করতে সমস্যা হয়েছে:"
-
-#: install_steps_gtk.pm:560 install_steps_interactive.pm:730
-#: install_steps_interactive.pm:734
-#, c-format
-msgid "Go on anyway?"
-msgstr "তবুও যাব?"
-
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:910 steps.pm:30
-#, c-format
-msgid "Summary"
-msgstr "সারাংশ"
-
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:906
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "not configured"
-msgstr "কনফিগার করা হয়নি"
-
-#: install_steps_gtk.pm:668
-#, c-format
-msgid ""
-"The following installation media have been found.\n"
-"If you want to skip some of them, you can unselect them now."
-msgstr ""
-"নিম্নলিখিত ইনস্টলেশন মিডিয়া পাওয়া গেছে।\n"
-"যদি আপনি এগুলোর মধ্যকার কিছু এড়িয়ে যেতে চান, তাহলে এখন সেগুলোকে অনির্বাচিত করুন।"
-
-# সাম
-#: install_steps_gtk.pm:677
-#, c-format
-msgid ""
-"You have the option to copy the contents of the CDs onto the hard drive "
-"before installation.\n"
-"It will then continue from the hard drive and the packages will remain "
-"available once the system is fully installed."
-msgstr ""
-"ইনস্টলেশনের আগে আপ‌নি সিডির তথ্যসমূহ হার্ডডিস্কে কপি করতে পারেন।\n"
-" এরপর হার্ডডিস্ক থেকে ইনস্টলেশন চলতে থাকবে এবং সিস্টেম সম্পূর্ন ইনস্টলেশনের পরও "
-"প্যাকেজগুলো রয়ে যাবে।"
-
-# সাম
-#: install_steps_gtk.pm:679
-#, c-format
-msgid "Copy whole CDs"
-msgstr "CD গুলো সম্পুর্ন কপি করো "
-
-#: install_steps_interactive.pm:95
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "অনুগ্রহ করে আপনার কীবোর্ড বিন্যাস পছন্দ করুন।"
-
-#: install_steps_interactive.pm:97
-#, c-format
-msgid "Here is the full list of available keyboards"
-msgstr "এখানে উপস্থিত সমস্ত কীবোর্ডের তালিকা রয়োছে"
-
-#: install_steps_interactive.pm:127
-#, c-format
-msgid "Install/Upgrade"
-msgstr "ইনস্টল/আপগ্রড"
-
-#: install_steps_interactive.pm:128
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "এটা কি একটি ইনস্টলেশন না আপগ্রেড?"
-
-#: install_steps_interactive.pm:134
-#, c-format
-msgid "Upgrade %s"
-msgstr "%s আপগ্রড করো"
-
-#: install_steps_interactive.pm:147
-#, c-format
-msgid "Encryption key for %s"
-msgstr "%s -এর জন্য এনক্রিপশন কী"
-
-#: install_steps_interactive.pm:170
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "আপনার মাউসের ধরণ পছন্দ করুন"
-
-#: install_steps_interactive.pm:171
-#, c-format
-msgid "Mouse choice"
-msgstr ""
-
-#: install_steps_interactive.pm:180 standalone/mousedrake:46
-#, c-format
-msgid "Mouse Port"
-msgstr "মাউস পোর্ট"
-
-#: install_steps_interactive.pm:181 standalone/mousedrake:47
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "অনুগ্রহ করে আপনার মাউসটি যে সিরিয়াল পোর্টের সাথে সংযুক্ত আছে তা পছন্দ করুন।"
-
-#: install_steps_interactive.pm:191
-#, c-format
-msgid "Buttons emulation"
-msgstr "মাউসের বাটনগুলোর অনুকরণ"
-
-#: install_steps_interactive.pm:193
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "২ বাটন বিশিষ্ট মাউসকে অনুকরণ করো"
-
-#: install_steps_interactive.pm:194
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "৩ বাটন বিশিষ্ট মাউসকে অনুকরণ করো"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "PCMCIA কার্ডগুলি কনফিগার করা হচ্ছে..."
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "Configuring IDE"
-msgstr "IDE কনফিগারেশন চলছে"
-
-#: install_steps_interactive.pm:242
-#, c-format
-msgid "No partition available"
-msgstr "কোন পার্টিশন বরাদ্দ নেই"
-
-#: install_steps_interactive.pm:245
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "মাউন্ট পয়েন্ট খোঁজার জন্য পার্টিশনগুলি স্কেন করা হচ্ছে"
-
-#: install_steps_interactive.pm:252
-#, c-format
-msgid "Choose the mount points"
-msgstr "মাউন্ট পয়েন্টগুলি পছন্দ করুন"
-
-#: install_steps_interactive.pm:300
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"১ মেগাবাইটের bootstrap এর জন্য খালি জায়গা নেই! ইনস্টল অগ্রসর হবে, কিন্তু আপনার "
-"সিস্টেম বুট করার জন্য, আপনাকে DiskDrake থেকে bootstrap পার্টিশন তৈরী করতে হবে"
-
-# সাম: bootstrap = বুটস্ট্র্যাপ?
-#: install_steps_interactive.pm:305
-#, c-format
-msgid ""
-"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
-"to boot your system, you'll need to create the bootstrap partition in "
-"DiskDrake"
-msgstr ""
-"আপনাকে একটি PPC PReP Boot বুটস্ট্র্যাপ তৈরী করতে হবে! ইনস্টলেশন অগ্রসর হবে, তবে "
-"আপনার সিস্টেম বুট করার জন্য, DiskDrake এর বুটস্ট্র্যাপ পার্টিশনটি প্রয়োজন"
-
-#: install_steps_interactive.pm:341
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "ফরমেট করার জন্য পার্টিশনটি পছন্দ করুন"
-
-#: install_steps_interactive.pm:343
-#, c-format
-msgid "Check bad blocks?"
-msgstr "খারাপ ব্লক চেক করব?"
-
-#: install_steps_interactive.pm:371
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
-msgstr ""
-"%s ফাইল সিস্টেম পরীক্ষা করতে ব্যার্থ হয়েছে। আপনি কি এই ত্রুটিগুলি সারাতে চান? (মনে "
-"রাখবেন যে আপনি ডাটা হারাতে পারেন)"
-
-#: install_steps_interactive.pm:374
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "ইনস্টলেশন সম্পূর্ন হবার জন্য যথেষ্ট swap জায়গা নেই, অনুগ্রহ করে কিছু যোগ করুন"
-
-#: install_steps_interactive.pm:383
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "উপস্থিত প্যাকেজসমুহ পর্যবেক্ষন করে আবার RMP ডাটাবেইজ তৈরী করা হচ্ছে..."
-
-#: install_steps_interactive.pm:384 install_steps_interactive.pm:436
-#, c-format
-msgid "Looking for available packages..."
-msgstr "বরাদ্দকৃত প্যাকেজসমূহ খোঁজা হচ্ছে..."
-
-#: install_steps_interactive.pm:405 install_steps_interactive.pm:810
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "আপনি একটি মিরর পছন্দ করুন যেখান থেকে প্যাকেজগুলি নেবেন"
-
-#: install_steps_interactive.pm:445
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"আপনার সিস্টেমর (%d > %d) ইনস্টল বা আপগ্রেড করার জন্য যথেষ্ট পরিমান জায়গা নেই"
-
-# সাম
-#: install_steps_interactive.pm:479
-#, c-format
-msgid ""
-"Please choose load or save package selection.\n"
-"The format is the same as auto_install generated files."
-msgstr ""
-"অনুগ্রহ করে প্যাকেজ নির্বাচন লোড বা সংরক্ষণ বাছাই করুন।\n"
-"এই ফরম্যাটটি auto_install দ্বারা তৈরী ফাইলসমূহের মত।"
-
-#: install_steps_interactive.pm:481
-#, c-format
-msgid "Load"
-msgstr "চাপ"
-
-#: install_steps_interactive.pm:481 standalone/drakbackup:4083
-#: standalone/drakbackup:4153 standalone/logdrake:175
-#, c-format
-msgid "Save"
-msgstr "সংরক্ষণ"
-
-# সাম:
-# bad has been translated in many ways... নষ্ট, বাজে, খারাপ... please clarify
-#: install_steps_interactive.pm:489
-#, c-format
-msgid "Bad file"
-msgstr "অগ্রহণযোগ্য ফাইল"
-
-#: install_steps_interactive.pm:562
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "উপস্থিত জায়গার চাইতে নির্বাচিত সাইজটি অনেক বড়"
-
-#: install_steps_interactive.pm:577
-#, c-format
-msgid "Type of install"
-msgstr "ইনস্টলের ধরণ"
-
-#: install_steps_interactive.pm:578
-#, c-format
-msgid ""
-"You have not selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"আপনি প্যাকেজের কোন গ্রুপ নির্বাচন করেননি।\n"
-"অনুগ্রহ করে আপনি যে ক্ষুদ্রাকৃতির ইনস্টলেশন চান তা পছন্দ করুন:"
-
-#: install_steps_interactive.pm:582
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "সাধারন নির্দেশিকার সাথে (পরামর্শ দেয়া হচ্ছে!)"
-
-#: install_steps_interactive.pm:583
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "এক্কেবারেই ক্ষুদ্র ইনস্টলেশন (বিশেষ করে কোন urpmi ছাড়া)"
-
-#: install_steps_interactive.pm:622 standalone/drakxtv:52
-#, c-format
-msgid "All"
-msgstr "সকল"
-
-#: install_steps_interactive.pm:661
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"নিচের লিষ্টের সব সিডিগুলি আপনার থাকেল, ঠিক আছে ক্লিক্ করুন।\n"
-"এগুলির কোনটিই যদি না থাকে তাহলে, বাতিল ক্লিক্ করুন।\n"
-"যদি কিছু সিডি না থাকে, তাহলে সেগুলি অনির্বাচিত করে ঠিক আছে ক্লিক্ করুন।"
-
-#: install_steps_interactive.pm:666
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "\"%s\" লেভেলের সিডি-রম"
-
-#: install_steps_interactive.pm:691
-#, c-format
-msgid "Preparing installation"
-msgstr "ইনস্টলেশনের প্রস্তুতি চলছে"
-
-#: install_steps_interactive.pm:699
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"%s প্যাকেজ সমূহ ইনস্টল করা হচ্ছে\n"
-"%d%%"
-
-#: install_steps_interactive.pm:748
-#, c-format
-msgid "Post-install configuration"
-msgstr "ইনস্টলের পরের কনফিগারেশন"
-
-#: install_steps_interactive.pm:755
-#, c-format
-msgid "Please ensure the Update Modules media is in drive %s"
-msgstr ""
-
-#: install_steps_interactive.pm:783
-#, c-format
-msgid "Updates"
-msgstr "আপডেট"
-
-#: install_steps_interactive.pm:784
-#, c-format
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates?"
-msgstr ""
-"আপনি এখন আপডেট প্যাকেজ ডাউনলোড করতে পারবেন। এই প্যাকেজগুলো\n"
-"এই ডিস্ট্রিবিউশন রিলিজ হবার পর আপডেট করতে পারেন। তারা নিরাপত্তা\n"
-"বা ত্রুটি নির্দিষ্ট ধারণ করতে পারে।\n"
-"\n"
-"এই প্যাকেজগুলো ডাউনলোড করতে, আপনার ইন্টারনেট সংযুক্তিতে কাজ করতে\n"
-"হবে।\n"
-"\n"
-"আপনি কি ইনস্টল আপডেট করতে চান?"
-
-#: install_steps_interactive.pm:805
-#, c-format
-msgid ""
-"Contacting Mandriva Linux web site to get the list of available mirrors..."
-msgstr "উপস্থিত মিররের তালিকার জন্য Mandriva Linux-এ সংযুক্ত করা হচ্ছে..."
-
-#: install_steps_interactive.pm:824
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "প্যাকেজের তালিকার জন্য মিররের সাথে সংযুক্ত করা হচ্ছে..."
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "%s মিররের সাথে সংযুক্ত হওয়া গেলনা"
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Would you like to try again?"
-msgstr "আপনি কি আবার চেষ্টা করতে চান?"
-
-#: install_steps_interactive.pm:855 standalone/drakclock:45
-#: standalone/finish-install:56
-#, c-format
-msgid "Which is your timezone?"
-msgstr "আপনার টাইমজোন কি?"
-
-#: install_steps_interactive.pm:860
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "সয়ংক্রিয়ভাবে সময় মেলাও (NTP ব্যবহার করে)"
-
-#: install_steps_interactive.pm:868
-#, c-format
-msgid "NTP Server"
-msgstr "NTP সার্ভার"
-
-#: install_steps_interactive.pm:923 install_steps_interactive.pm:931
-#: install_steps_interactive.pm:949 install_steps_interactive.pm:956
-#: install_steps_interactive.pm:1107 services.pm:133
-#: standalone/drakbackup:1596
-#, c-format
-msgid "System"
-msgstr "সি"
-
-#: install_steps_interactive.pm:963 install_steps_interactive.pm:990
-#: install_steps_interactive.pm:1007 install_steps_interactive.pm:1023
-#: install_steps_interactive.pm:1034
-#, c-format
-msgid "Hardware"
-msgstr "হার্ডওয়্যার"
-
-#: install_steps_interactive.pm:969 install_steps_interactive.pm:978
-#, c-format
-msgid "Remote CUPS server"
-msgstr "দূরবর্তী CUPS সার্ভার"
-
-#: install_steps_interactive.pm:969
-#, c-format
-msgid "No printer"
-msgstr "কোন প্রিন্টার নেই"
-
-#: install_steps_interactive.pm:1011
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "আপনার কি একটি ISA সাউন্ড কার্ড আছে?"
-
-#: install_steps_interactive.pm:1013
-#, c-format
-msgid ""
-"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
-"card"
-msgstr ""
-"ইনস্টল শেষ হবার পরে সাউন্ড কার্ড কনফিগার করার জন্য \"alsaconf\" অথবা \"sndconfig"
-"\" চালাও"
-
-#: install_steps_interactive.pm:1015
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr "কোন সাউন্ডকার্ড সনাক্ত হয়নি, ইনস্টলের পরে \"harddrake\" দিয়ে চেষ্টা করুন"
-
-#: install_steps_interactive.pm:1035
-#, c-format
-msgid "Graphical interface"
-msgstr "গ্রাফিকাল ইন্টারফেস"
-
-#: install_steps_interactive.pm:1041 install_steps_interactive.pm:1053
-#, c-format
-msgid "Network & Internet"
-msgstr "নেটওয়ার্ট এবং ইন্টারনেট"
-
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "configured"
-msgstr "কনফিগার করা হয়েছে"
-
-#: install_steps_interactive.pm:1064 install_steps_interactive.pm:1078
-#: security/level.pm:55 steps.pm:20
-#, c-format
-msgid "Security"
-msgstr "সিকিউরিটি"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "activated"
-msgstr "সক্রিয় হয়েছে"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "disabled"
-msgstr "অকার্যকর করা হয়েছে"
-
-#: install_steps_interactive.pm:1094
-#, c-format
-msgid "Boot"
-msgstr "বুট"
-
-# -PO: example: lilo-graphic on /dev/hda1
-#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1098 printer/printerdrake.pm:961
-#, c-format
-msgid "%s on %s"
-msgstr "%s -এ %s"
-
-#: install_steps_interactive.pm:1112 services.pm:175
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "সার্ভিস সমূহ: %d সক্রিয় হয়েছে %d রেজিষ্টারের জন্য"
-
-#: install_steps_interactive.pm:1124
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "আপনি X কনফিগার করেননি। আপনি কি নিশ্চিত এরকমটি চান?"
-
-#: install_steps_interactive.pm:1205
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Bootloader প্রস্তুত করা হচ্ছে..."
-
-#: install_steps_interactive.pm:1215
-#, c-format
-msgid ""
-"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
-"will not work for you. The install will continue, but you'll need to use "
-"BootX or some other means to boot your machine. The kernel argument for the "
-"root fs is: root=%s"
-msgstr ""
-"আপনার মেশিনটি মনে হচ্ছে একটি Oldworld বা অজানা মেশিন, yaboot বুটলোডারটি আপনার "
-"জন্য কাজ করবে না। ইনস্টল এগিয়ে যাবে, কিন্তু আপনার মেশিনকে বুট করার জন্য আপনাকে "
-"BootX বা অন্য কোন কিছু ব্যবহার করতে হবে। root fs এর জন্য কার্নেল প্রেরিত মান হবে: "
-"root=%s"
-
-#: install_steps_interactive.pm:1221
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "আপনি কি aboot ব্যবহার করতে চান?"
-
-#: install_steps_interactive.pm:1224
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Aboot ইনস্টলে ব্যর্থ হয়েছে,\n"
-"জোর করে ইনস্টলের চেষ্টা করবো যদিও সেটা প্রথম পার্টিশনকে নষ্ট করতে পারে?"
-
-#: install_steps_interactive.pm:1241
-#, c-format
-msgid ""
-"In this security level, access to the files in the Windows partition is "
-"restricted to the administrator."
-msgstr ""
-"এই নিরাপত্তা লেভেলে, উইন্ডোজ পার্টিশনের ফাইলে প্রবেশ শুধুমাত্র অ্যাডমিনিস্ট্রেটরের আছে।"
-
-#: install_steps_interactive.pm:1270 standalone/drakautoinst:76
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "%s ড্রাইভে একটি ফাঁকা ফ্লপি ঢোকান"
-
-#: install_steps_interactive.pm:1275
-#, c-format
-msgid "Please insert another floppy for drivers disk"
-msgstr "ড্রাইভারের ডিস্কের জন্য অন্য একটি ফ্লপি ঢোকান"
-
-#: install_steps_interactive.pm:1277
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "সয়ং ইনস্টল ফ্লপি তৈরী করা হচ্ছে..."
-
-#: install_steps_interactive.pm:1289
-#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"কিছু ধাপ সম্পূর্ন করা যায়নি।\n"
-"\n"
-"আপনি কি এখন বের হতে চান?"
-
-#: install_steps_interactive.pm:1299 standalone/draksambashare:421
-#: standalone/draksambashare:527 standalone/drakups:118 standalone/drakups:157
-#: standalone/logdrake:451 standalone/logdrake:457
-#, c-format
-msgid "Congratulations"
-msgstr "স্বাগতম"
-
-#: install_steps_interactive.pm:1307 install_steps_interactive.pm:1308
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "সয়ংক্রিয় ইনস্টল ফ্লপি প্রস্তুত করো"
-
-#: install_steps_interactive.pm:1309
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"যদি আপনি চান স্বয়ংক্রিয় ইনস্টল পুরোপুরি স্বয়ংক্রয়ভাবে হবে,\n"
-"সেক্ষেত্রে সেটা হার্ড ড্রাইভের কর্তৃত্বে!!\n"
-"(এর মানে হচ্ছে অন্য একটি বাক্সে ইনস্টল)।\n"
-"\n"
-"আপনি তার চেয়ে পুনরায় ইনস্টলেশন চালু করুন।\n"
-
-#: install_steps_newt.pm:20
-#, c-format
-msgid "Mandriva Linux Installation %s"
-msgstr "Mandriva Linux ইনস্টলেশন %s"
-
-# -PO: This string must fit in a 80-char wide text screen
-#. -PO: This string must fit in a 80-char wide text screen
-#: install_steps_newt.pm:37
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> উপাদানগুলোর মধ্যে | <Space> বাছাই | <F12> পরবর্তী স্ক্রীণ "
+msgid "No"
+msgstr "না"
-#: interactive.pm:196
+#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "একটি ফাইল পছন্দ করুন"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakbackup:1537
-#: standalone/drakfont:649 standalone/drakhosts:242 standalone/draknfs:605
-#: standalone/draksambashare:1127 standalone/drakups:299
-#: standalone/drakups:359 standalone/drakups:379 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Add"
msgstr "যোগ"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakhosts:249
-#: standalone/draknfs:612 standalone/draksambashare:1084
-#: standalone/draksambashare:1137 standalone/draksambashare:1176
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Modify"
msgstr "পরিবর্তন"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakfont:732
-#: standalone/drakhosts:256 standalone/draknfs:619
-#: standalone/draksambashare:1085 standalone/draksambashare:1145
-#: standalone/draksambashare:1184 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Remove"
msgstr "মুছে ফেলো"
-#: interactive.pm:398
-#, c-format
-msgid "Basic"
-msgstr "সাধারণ"
-
-#: interactive.pm:436 interactive/newt.pm:321 ugtk2.pm:490
+#: interactive.pm:538 interactive/curses.pm:217 ugtk2.pm:508
#, c-format
msgid "Finish"
msgstr "সমাপ্ত"
-#: interactive/newt.pm:92
+# আগে
+#: interactive.pm:539 interactive/curses.pm:214 ugtk2.pm:506
#, c-format
-msgid "Do"
-msgstr "করো"
+msgid "Previous"
+msgstr "পূর্ববর্তী"
#: interactive/stdio.pm:29 interactive/stdio.pm:148
#, c-format
@@ -7162,1967 +3363,1205 @@ msgstr ""
msgid "Re-submit"
msgstr "পুনরায়-পেশ"
-#: keyboard.pm:171 keyboard.pm:202
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTZ)"
-msgstr "চেজ (QWERTZ)"
-
-#: keyboard.pm:172 keyboard.pm:204
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German"
-msgstr "জার্মান"
-
-#: keyboard.pm:173
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak"
-msgstr "ডিভোর্ক"
-
-#: keyboard.pm:174 keyboard.pm:217
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Spanish"
-msgstr "স্পেনিশ"
-
-#: keyboard.pm:175 keyboard.pm:218
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Finnish"
-msgstr "ফিনিস"
-
-#: keyboard.pm:176 keyboard.pm:220
-#, c-format
-msgid ""
-"_: keyboard\n"
-"French"
-msgstr "ফ্রান্স"
-
-#: keyboard.pm:177 keyboard.pm:264
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Norwegian"
-msgstr "নরিয়"
-
-#: keyboard.pm:178
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish"
-msgstr "পোলিশ"
-
-#: keyboard.pm:179 keyboard.pm:275
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian"
-msgstr "রাশিয়ান"
-
-#: keyboard.pm:180 keyboard.pm:281
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swedish"
-msgstr "সুইডিশ"
-
-#: keyboard.pm:181 keyboard.pm:310
-#, c-format
-msgid "UK keyboard"
-msgstr "UK কি-বোর্ড"
-
-#: keyboard.pm:182 keyboard.pm:313
-#, c-format
-msgid "US keyboard"
-msgstr "US কি-বোর্ড"
-
-#: keyboard.pm:184
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Albanian"
-msgstr "আরবীয়"
-
-#: keyboard.pm:185
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (old)"
-msgstr "আরমেনীয় (পুরনো)"
-
-#: keyboard.pm:186
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (typewriter)"
-msgstr "আরমেনীয় (টাইপরাইটার)"
-
-#: keyboard.pm:187
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (phonetic)"
-msgstr "আরমেনীয় (উচ্চারণভিত্তিক)"
-
-#: keyboard.pm:188
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Arabic"
-msgstr "আরবীয়"
-
-#: keyboard.pm:189
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Azerbaidjani (latin)"
-msgstr "আজেরবাঈদজানি (ল্যাটিন)"
-
-#: keyboard.pm:190
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belgian"
-msgstr "বেলজিয়ান"
-
-#: keyboard.pm:191
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Inscript-layout)"
-msgstr "বাংলা (ইনস্ক্রিপ্ট লে-আউট)"
-
-#: keyboard.pm:192
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Probhat)"
-msgstr "বাংলা (প্রভাত লে-আউট)"
-
-#: keyboard.pm:193
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (phonetic)"
-msgstr "বুলগেরিয়ান (উচ্চারণভিত্তিক)"
-
-#: keyboard.pm:194
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (BDS)"
-msgstr "বুলগেরিয়ান (BDS)"
-
-#: keyboard.pm:195
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Brazilian (ABNT-2)"
-msgstr "ব্রাজিলিয়ান (ABNT-2)"
-
-#: keyboard.pm:196
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bosnian"
-msgstr "বসনিয়ান"
-
-#: keyboard.pm:197
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belarusian"
-msgstr "বেলুরাশিয়ান"
-
-#: keyboard.pm:198
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (German layout)"
-msgstr "সুইশ (জার্মান লে-আউট)"
-
-#: keyboard.pm:199
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (French layout)"
-msgstr "সুইশ (ফ্রেঞ্জ লে-আউট)"
-
-# sam: what about the leading '_: keyboard\n
-# banglish?
-#: keyboard.pm:201
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Cherokee syllabics"
-msgstr "চেরোকী সিলাবিক্স"
-
-#: keyboard.pm:203
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTY)"
-msgstr "চেজ (QWERTY)"
-
-#: keyboard.pm:205
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German (no dead keys)"
-msgstr "German (কোন dead key ছাড়া)"
-
-#: keyboard.pm:206
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Devanagari"
-msgstr "দৈবনগরী"
-
-#: keyboard.pm:207
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Danish"
-msgstr "ডেনিশ"
-
-#: keyboard.pm:208
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (US)"
-msgstr "ডেভোর্ক (US)"
-
-#: keyboard.pm:209
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Esperanto)"
-msgstr "ডেভোর্ক (Esperanto)"
-
-# sam
-#: keyboard.pm:210
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (French)"
-msgstr "ডেভোরাক (ফ্রেঞ্চ‌)"
-
-# sam
-#: keyboard.pm:211
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (UK)"
-msgstr "ডেভোরাক (ইউকে)"
-
-#: keyboard.pm:212
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Norwegian)"
-msgstr "ডেভোর্ক (Norwegian)"
-
-# sam
-#: keyboard.pm:213
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Polish)"
-msgstr "ডেভোরাক (পোলিশ)"
-
-#: keyboard.pm:214
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Swedish)"
-msgstr "ডেভোর্ক (Swedish)"
-
-# sam
-#: keyboard.pm:215
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dzongkha/Tibetan"
-msgstr "যংকা/তিব্বতীয়"
-
-#: keyboard.pm:216
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Estonian"
-msgstr "ইষ্টোনিয়ান"
-
-# sam
-#: keyboard.pm:219
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Faroese"
-msgstr "ফারোইয"
-
-#: keyboard.pm:221
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Russian\" layout)"
-msgstr "জর্জিয়ান (\"রাশিয়ান\" লে-আউট)"
-
-#: keyboard.pm:222
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Latin\" layout)"
-msgstr "জর্জিয়ান (\"ল্যাটিন\" লে-আউট)"
-
-#: keyboard.pm:223
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek"
-msgstr "গ্রীক"
-
-#: keyboard.pm:224
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek (polytonic)"
-msgstr "গ্রীক (পলিটোনিক)"
-
-#: keyboard.pm:225
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gujarati"
-msgstr "গুজরাটি"
-
-#: keyboard.pm:226
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gurmukhi"
-msgstr "গুর্মুখী"
-
-#: keyboard.pm:227
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Croatian"
-msgstr "ক্রোয়েশিয়ান"
-
-#: keyboard.pm:228
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Hungarian"
-msgstr "হাঙ্গেরিয়ান"
-
-#: keyboard.pm:229
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Irish"
-msgstr "আইরিশ"
-
-#: keyboard.pm:230
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli"
-msgstr "ইসরাঈল"
-
-#: keyboard.pm:231
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli (phonetic)"
-msgstr "ইসরাঈল (উচ্চারণভিত্তিক)"
-
-#: keyboard.pm:232
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Iranian"
-msgstr "ইরানি"
-
-#: keyboard.pm:233
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Icelandic"
-msgstr "আইসল্যান্ডের"
-
-#: keyboard.pm:234
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Italian"
-msgstr "ইটালীয়ান"
-
-#: keyboard.pm:235
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Inuktitut"
-msgstr "ইনাকটিটুট"
-
-#: keyboard.pm:239
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Japanese 106 keys"
-msgstr "জাপানীজ ১০৬ কী"
-
-#: keyboard.pm:240
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kannada"
-msgstr "কান্নাডা"
-
-#: keyboard.pm:243
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Korean"
-msgstr "কোরিয়ান কীবোর্ড"
-
-# sam
-#: keyboard.pm:245
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kurdish (arabic script)"
-msgstr "কুর্দিশ (আরবী লিপি)"
-
-#: keyboard.pm:246
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kyrgyz"
-msgstr "Kyrgyz কি-বোর্ড"
-
-#: keyboard.pm:247
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latin American"
-msgstr "ল্যাটিন আমেরিকান"
-
-#: keyboard.pm:249
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Laotian"
-msgstr "ল্যাওটিআন"
-
-#: keyboard.pm:250
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (old)"
-msgstr "লিথ্যুনিয়ান AZERTY (আগের)"
-
-#: keyboard.pm:252
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (new)"
-msgstr "লিথ্যুনিয়ান AZERTY (নতুন)"
-
-#: keyboard.pm:253
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"number row\" QWERTY"
-msgstr "লিথ্যুনিয়ান \"number row\" QWERTY"
-
-#: keyboard.pm:254
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"phonetic\" QWERTY"
-msgstr "লিথ্যুনিয়ান \"phonetic\" QWERTY"
-
-#: keyboard.pm:255
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latvian"
-msgstr "লাটভিয়ান"
-
-#: keyboard.pm:256
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Malayalam"
-msgstr "মালায়লাম"
-
-#: keyboard.pm:258
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Macedonian"
-msgstr "ম্যাসিডোনিয়ান"
-
-#: keyboard.pm:259
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Myanmar (Burmese)"
-msgstr "মিয়ানমার (বার্মিজ)"
-
-#: keyboard.pm:260
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Mongolian (cyrillic)"
-msgstr "মঙ্গলীয়ান (কীরিল্লিক)"
-
-#: keyboard.pm:261
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (UK)"
-msgstr "মালটেসে (ইউকে)"
-
-#: keyboard.pm:262
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (US)"
-msgstr "মালটেসে (ইউএস)"
-
-#: keyboard.pm:263
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dutch"
-msgstr "ডাচ্‌"
-
-#: keyboard.pm:265
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Oriya"
-msgstr "ওরিয়া"
-
-#: keyboard.pm:266
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwerty layout)"
-msgstr "পোলিশ (qwerty লে-আউট)"
-
-#: keyboard.pm:267
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwertz layout)"
-msgstr "পোলিশ (qwertz লে-আউট)"
-
-# sam
-#: keyboard.pm:269
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Pashto"
-msgstr "পাশতু"
-
-#: keyboard.pm:270
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Portuguese"
-msgstr "পর্তুগীজ"
-
-#: keyboard.pm:272
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Canadian (Quebec)"
-msgstr "কানাডিয়ান (Quebec)"
-
-#: keyboard.pm:273
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwertz)"
-msgstr "রোমানিয়ান (qwertz)"
-
-#: keyboard.pm:274
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwerty)"
-msgstr "রোমানিয়ান (qwerty)"
-
-#: keyboard.pm:276
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian (phonetic)"
-msgstr "রাশিয়ান (উচ্চারণভিত্তিক)"
-
-#: keyboard.pm:277
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (norwegian)"
-msgstr "ছ্যামী (norwegian)"
-
-# আচ্ছা ফিনিস বানানটা অন্য কিছু লেখা উচিত্‍‌ না? কারন আমাদের দেশে ফিনিস বলতে একটা মশা মারার ঔষধের নাম বোঝায়। আর এখন যে ডেঙ্গু চারিদিকে!!!
-#: keyboard.pm:278
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (swedish/finnish)"
-msgstr "ছ্যামী (সুইডিশ/ফিনিস)"
-
-# sam
-#: keyboard.pm:280
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sindhi"
-msgstr "সিন্ধি"
-
-#: keyboard.pm:282
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovenian"
-msgstr "স্লোভেনিয়ান"
-
-#: keyboard.pm:284
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sinhala"
-msgstr ""
-
-#: keyboard.pm:285
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTZ)"
-msgstr "স্লোভেকিয়ান (QWERTZ)"
-
-#: keyboard.pm:286
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTY)"
-msgstr "স্লোভেকিয়ান (QWERTY)"
-
-#: keyboard.pm:288
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Serbian (cyrillic)"
-msgstr "সার্বিয়ান (কিরিল্লিক)"
-
-#: keyboard.pm:289
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac"
-msgstr "স্যাইরিক"
-
-#: keyboard.pm:290
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac (phonetic)"
-msgstr "স্যাইরিক (উচ্চারণভিত্তিক)"
-
-#: keyboard.pm:291
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Telugu"
-msgstr "তেলেগু"
-
-#: keyboard.pm:293
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (ISCII-layout)"
-msgstr "তামিল (ISCII-লে-আউট)"
-
-#: keyboard.pm:294
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (Typewriter-layout)"
-msgstr "তামিল (টাইপরাইটার-লে-আউট)"
-
-#: keyboard.pm:295
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Kedmanee)"
-msgstr "থাই কী-বোর্ড (Kedmanee-লে-আউট)"
-
-#: keyboard.pm:296
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (TIS-820)"
-msgstr "থাই কী-বোর্ড (TIS-820-লে-আউট)"
-
-#: keyboard.pm:298
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Pattachote)"
-msgstr "থাই কী-বোর্ড (Pattachote-লে-আউট)"
-
-#: keyboard.pm:300
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (moroccan layout) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:301
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (phonetic) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:303
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tajik"
-msgstr "তাজিক কী-বোর্ড"
-
-# sam
-#: keyboard.pm:305
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkmen"
-msgstr "তুর্কমেনীয়"
-
-#: keyboard.pm:306
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (traditional \"F\" model)"
-msgstr "টার্কিস (ঐতিহ্যবাহী \"F\" মডেল)"
-
-#: keyboard.pm:307
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (modern \"Q\" model)"
-msgstr "টার্কিস (ঐতিহ্যবাহী \"Q\" মডেল)"
-
-#: keyboard.pm:309
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Ukrainian"
-msgstr "উকরানিয়ান"
-
-# sam
-#: keyboard.pm:312
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Urdu keyboard"
-msgstr "উর্দূ কিবোর্ড"
-
-#: keyboard.pm:314
-#, c-format
-msgid "US keyboard (international)"
-msgstr "US কী-বোর্ড (আন্তর্জাতিক)"
-
-#: keyboard.pm:315
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Uzbek (cyrillic)"
-msgstr "উজবেক (কীরিল্লিক)"
-
-#: keyboard.pm:317
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Vietnamese \"numeric row\" QWERTY"
-msgstr "ভিয়েতনামিজ \"numeric row\" QWERTY"
-
-#: keyboard.pm:318
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Yugoslavian (latin)"
-msgstr "ইয়ুগস্লোভিয়ান (ল্যাটিন)"
-
-#: keyboard.pm:325
-#, c-format
-msgid "Right Alt key"
-msgstr "ডান Alt কী"
-
-#: keyboard.pm:326
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "পরপর দু'টি Shift কী"
-
-#: keyboard.pm:327
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "পরপর Control এবং Shift কী"
-
-#: keyboard.pm:328
-#, c-format
-msgid "CapsLock key"
-msgstr "CapsLock কী"
-
-#: keyboard.pm:329
-#, c-format
-msgid "Shift and CapsLock keys simultaneously"
-msgstr "Shift এবং CapsLock কী একই সাথে"
-
-#: keyboard.pm:330
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "পরপর Control এবং Alt কী"
-
-#: keyboard.pm:331
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "পরপর Alt এবং Shift কী"
-
-#: keyboard.pm:332
-#, c-format
-msgid "\"Menu\" key"
-msgstr "\"Menu\" কী"
-
-#: keyboard.pm:333
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "বাম \"Windows\" কী"
-
-#: keyboard.pm:334
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "ডান \"Windows\" কী"
-
-#: keyboard.pm:335
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "পরপর দু'টি Control কী"
-
-#: keyboard.pm:336
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "পরপর দু'টি Alt কী"
-
-#: keyboard.pm:337
-#, c-format
-msgid "Left Shift key"
-msgstr "বাম Shift কী"
-
-#: keyboard.pm:338
-#, c-format
-msgid "Right Shift key"
-msgstr "ডান Shift কী"
-
-#: keyboard.pm:339
-#, c-format
-msgid "Left Alt key"
-msgstr "বাম Alt কী"
-
-#: keyboard.pm:340
-#, c-format
-msgid "Left Control key"
-msgstr "ডান Alt কী"
-
-#: keyboard.pm:341
-#, c-format
-msgid "Right Control key"
-msgstr "ডান Control কী"
-
-#: keyboard.pm:377
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"বিভিন্ন লে-আউটের মধ্যে পরিবর্তন করার জন্য এখানে\n"
-"আপনি কী বা কী এর কম্বিনেশন পছন্দ করতে পারেন\n"
-"(যেমন: ল্যাটিন এবং বাংলা)"
-
-#: keyboard.pm:382
-#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
-msgstr ""
-"ইনস্টলেশন শেষ হবার পরে এটা সক্রিয় হবে।\n"
-"ইনস্টল চলাকালীন, আপনাকে ডান Control কী ব্যবহার\n"
-"করে বিভিন্ন লে-আউটের মধ্যে পরিবর্তন করতে হবে।"
-
#. -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:178
+#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"
-#: lang.pm:195
+#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "এনডোররা"
-#: lang.pm:196 network/adsl_consts.pm:943
+#: lang.pm:211 timezone.pm:213
#, c-format
msgid "United Arab Emirates"
msgstr "সংযুক্ত আরব আমিরাত"
-#: lang.pm:197
+#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "আফগানিস্তান"
-#: lang.pm:198
+#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "আংটিগুয়া এবং বারবুদা"
-#: lang.pm:199
+#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "অ্যাংগুইল্লিয়া"
-#: lang.pm:200
+#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "আলবেনিয়া"
-#: lang.pm:201
+#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "আরমেনিয়া"
-#: lang.pm:202
+#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "নেদারল্যান্ড এ্যন্টিল্লিস"
-#: lang.pm:203
+#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "অ্যাংগোলা"
-#: lang.pm:204
+#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "এন্টার্কটিকা"
-#: lang.pm:205 network/adsl_consts.pm:55 standalone/drakxtv:50
+#: lang.pm:220 timezone.pm:258
#, c-format
msgid "Argentina"
msgstr "আর্জেন্টিনা"
-#: lang.pm:206
+#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "আমেরিকান সামোয়া"
-#: lang.pm:209
+#: lang.pm:222 mirror.pm:11 timezone.pm:216
+#, c-format
+msgid "Austria"
+msgstr "অষ্ট্রিয়া"
+
+#: lang.pm:223 mirror.pm:10 timezone.pm:254
+#, c-format
+msgid "Australia"
+msgstr "অষ্ট্রেলিয়া"
+
+#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "অরুবা"
-#: lang.pm:210
+#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "আজেরবাঈজান"
-#: lang.pm:211
+#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "বসনিয়া এবং হার্জোগোভিনা"
-#: lang.pm:212
+#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "বার্বাডোস"
-#: lang.pm:213
+#: lang.pm:228 timezone.pm:198
#, c-format
msgid "Bangladesh"
msgstr "বাংলাদেশ"
-#: lang.pm:215
+#: lang.pm:229 mirror.pm:12 timezone.pm:218
+#, c-format
+msgid "Belgium"
+msgstr "বেলজিয়াম"
+
+#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "বুর্কিনা ফাসো"
-#: lang.pm:216 network/adsl_consts.pm:170 network/adsl_consts.pm:179
+#: lang.pm:231 timezone.pm:219
#, c-format
msgid "Bulgaria"
msgstr "বুলগেরিয়া"
-#: lang.pm:217
+#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "বাহরাইন"
-#: lang.pm:218
+#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "বুরুন্ডি"
-#: lang.pm:219
+#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "বেনিন"
-#: lang.pm:220
+#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "বার্মুডা"
-#: lang.pm:221
+#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "ব্রুনেই দারুসসালাম"
-#: lang.pm:222
+#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "বলিভিয়া"
-#: lang.pm:224
+#: lang.pm:238 mirror.pm:13 timezone.pm:259
+#, c-format
+msgid "Brazil"
+msgstr "ব্রাজিল"
+
+#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "বাহামা"
-#: lang.pm:225
+#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "ভূটান"
-#: lang.pm:226
+#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "বৌভেট দীপসমূহ"
-#: lang.pm:227
+#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "বত্‌সওয়ানা"
-#: lang.pm:228
+#: lang.pm:243 timezone.pm:217
#, c-format
msgid "Belarus"
msgstr "বেলারুস"
-#: lang.pm:229
+#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "বেলিজে"
-#: lang.pm:231
+#: lang.pm:245 mirror.pm:14 timezone.pm:248
+#, c-format
+msgid "Canada"
+msgstr "কানাডা"
+
+#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "কোকোস (কেলিং) দীপসমূহ"
-#: lang.pm:232
+#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr "কঙ্গো (কিংশাসা)"
-#: lang.pm:233
+#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "মধ্য আফ্রিকান গণপ্রজাতন্ত্র"
-#: lang.pm:234
+#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr "কঙ্গো (ব্রাজ্জাভিল্লে)"
-#: lang.pm:236
+#: lang.pm:250 mirror.pm:38 timezone.pm:242
+#, c-format
+msgid "Switzerland"
+msgstr "সুইজারল্যান্ড"
+
+#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "কোট ডি'লভোরে"
-#: lang.pm:237
+#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "কুক দীপপুঞ্জ"
-#: lang.pm:238
+#: lang.pm:253 timezone.pm:260
#, c-format
msgid "Chile"
msgstr "চিলি"
-#: lang.pm:239
+#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "ক্যামেরুন"
-#: lang.pm:240 network/adsl_consts.pm:188 network/adsl_consts.pm:197
-#: network/adsl_consts.pm:206 network/adsl_consts.pm:215
-#: network/adsl_consts.pm:224 network/adsl_consts.pm:233
-#: network/adsl_consts.pm:242 network/adsl_consts.pm:251
-#: network/adsl_consts.pm:260 network/adsl_consts.pm:269
-#: network/adsl_consts.pm:278 network/adsl_consts.pm:287
-#: network/adsl_consts.pm:296 network/adsl_consts.pm:305
-#: network/adsl_consts.pm:314 network/adsl_consts.pm:323
-#: network/adsl_consts.pm:332 network/adsl_consts.pm:341
-#: network/adsl_consts.pm:350 network/adsl_consts.pm:359
+#: lang.pm:255 timezone.pm:199
#, c-format
msgid "China"
msgstr "চীন"
-#: lang.pm:241
+#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "কলম্বিয়া"
-#: lang.pm:243
+#: lang.pm:257 mirror.pm:15
+#, c-format
+msgid "Costa Rica"
+msgstr "কোষ্টা রিকা"
+
+#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "সারবিয়া এবং মোনটেংগ্র"
-#: lang.pm:244
+#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "কিউবা"
-#: lang.pm:245
+#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "কেপ ভার্দে"
-#: lang.pm:246
+#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "ক্রিসমাস দীপপুঞ্জ"
-#: lang.pm:247
+#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "সাইপ্রাস"
-#: lang.pm:250
+#: lang.pm:263 mirror.pm:16 timezone.pm:220
+#, c-format
+msgid "Czech Republic"
+msgstr "চেক রিপাবলিক"
+
+#: lang.pm:264 mirror.pm:21 timezone.pm:225
+#, c-format
+msgid "Germany"
+msgstr "জার্মানী"
+
+#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "ডজিবুতি"
-#: lang.pm:252
+#: lang.pm:266 mirror.pm:17 timezone.pm:221
+#, c-format
+msgid "Denmark"
+msgstr "ডেনমার্ক"
+
+#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "ডোমিনিকা"
-#: lang.pm:253
+#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "গণপ্রজাতন্ত্রী ডোমিনিকা"
-#: lang.pm:254 network/adsl_consts.pm:44
+#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "আলজেরিয়া"
-#: lang.pm:255
+#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "ইকুয়েডর"
-#: lang.pm:257
+#: lang.pm:271 mirror.pm:18 timezone.pm:222
+#, c-format
+msgid "Estonia"
+msgstr "এস্তোনিয়া"
+
+#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "মিশর"
-#: lang.pm:258
+#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "পশ্চিম সাহারা"
-#: lang.pm:259
+#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "এরিট্রিয়া"
-#: lang.pm:261
+#: lang.pm:275 mirror.pm:36 timezone.pm:240
+#, c-format
+msgid "Spain"
+msgstr "স্পেন"
+
+#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "ইথিওপিয়া"
-#: lang.pm:263
+#: lang.pm:277 mirror.pm:19 timezone.pm:223
+#, c-format
+msgid "Finland"
+msgstr "ফিনল্যান্ড"
+
+#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "ফুজি"
-#: lang.pm:264
+#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "ফোকল্যান্ড দীপপুঞ্জ (মালভিনাস)"
-#: lang.pm:265
+#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "মাক্রোনেশিয়া"
-#: lang.pm:266
+#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "ফারোয় দীপপুঞ্জ"
-#: lang.pm:268
+#: lang.pm:282 mirror.pm:20 timezone.pm:224
+#, c-format
+msgid "France"
+msgstr "ফ্রান্স"
+
+#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "গ্যাবোন"
-#: lang.pm:269 network/adsl_consts.pm:954 network/adsl_consts.pm:965
-#: network/netconnect.pm:46
+#: lang.pm:284 timezone.pm:244
#, c-format
msgid "United Kingdom"
msgstr "যুক্তরাজ্য"
-#: lang.pm:270
+#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "গ্রেনেডা"
-#: lang.pm:271
+#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "জর্জিয়া"
-#: lang.pm:272
+#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "ফ্রেঞ্জ গায়ানা"
-#: lang.pm:273
+#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "ঘানা"
-#: lang.pm:274
+#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "জিব্রাল্টার"
-#: lang.pm:275
+#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "গ্রীণল্যান্ড"
-#: lang.pm:276
+#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "জাম্বিয়া"
-#: lang.pm:277
+#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "গিনি"
-#: lang.pm:278
+#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "গুয়াদেলুপে"
-#: lang.pm:279
+#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "ইকুয়েটরিয়াল গিনি"
-#: lang.pm:281
+#: lang.pm:295 mirror.pm:22 timezone.pm:226
+#, c-format
+msgid "Greece"
+msgstr "গ্রীস"
+
+#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "দক্ষিন জর্জিয়া এবং দক্ষিন স্যান্ডউইচ্‌ দীপপুঞ্জ"
-#: lang.pm:282
+#: lang.pm:297 timezone.pm:249
#, c-format
msgid "Guatemala"
msgstr "গুয়াতেমালা"
-#: lang.pm:283
+#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "গুয়াম"
-#: lang.pm:284
+#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "গিনি-বিসাউ"
-#: lang.pm:285
+#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "গায়ানা"
-#: lang.pm:286
+#: lang.pm:301
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "হংকং (চীন)"
-#: lang.pm:287
+#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "হার্ড এবং ম্যাকডোনাল্ড দীপপুঞ্জ"
-#: lang.pm:288
+#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "হন্ডুরাস"
-#: lang.pm:289
+#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "ক্রোয়েশিয়া"
-#: lang.pm:290
+#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "হাইতি"
-#: lang.pm:292
+#: lang.pm:306 mirror.pm:23 timezone.pm:227
+#, c-format
+msgid "Hungary"
+msgstr "হাঙ্গেরী"
+
+#: lang.pm:307 timezone.pm:202
#, c-format
msgid "Indonesia"
msgstr "ইন্দোনেশিয়া"
-#: lang.pm:295
+#: lang.pm:308 mirror.pm:24 timezone.pm:228
+#, c-format
+msgid "Ireland"
+msgstr "আয়ারল্যান্ড"
+
+#: lang.pm:309 mirror.pm:25 timezone.pm:204
+#, c-format
+msgid "Israel"
+msgstr "ইসরাঈল"
+
+#: lang.pm:310 timezone.pm:201
#, c-format
msgid "India"
msgstr "ভারত"
-#: lang.pm:296
+#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "ব্রিটিশ ভারতীয় মহাসাগর সমরাজ্য"
-#: lang.pm:297
+#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "ইরাক"
-#: lang.pm:298
+#: lang.pm:313 timezone.pm:203
#, c-format
msgid "Iran"
msgstr "ইরান"
-#: lang.pm:299
+#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "আইসল্যান্ড"
-#: lang.pm:301
+#: lang.pm:315 mirror.pm:26 timezone.pm:229
+#, c-format
+msgid "Italy"
+msgstr "ইতালী"
+
+#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "জামাইকা"
-#: lang.pm:302
+#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "জর্ডান"
-#: lang.pm:304
+#: lang.pm:318 mirror.pm:27 timezone.pm:205
+#, c-format
+msgid "Japan"
+msgstr "জাপান"
+
+#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "কেনিয়া"
-#: lang.pm:305
+#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "কিরগিজস্তান"
-#: lang.pm:306
+#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "কম্বোডিয়া"
-#: lang.pm:307
+#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "কিরিবাতি"
-#: lang.pm:308
+#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "কমোরোস"
-#: lang.pm:309
+#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "সেন্ট কিট্টস্‌ এবং নেভিস্‌"
-#: lang.pm:310
+#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "কোরিয়া (উত্তর)"
-#: lang.pm:311
+#: lang.pm:326 timezone.pm:206
#, c-format
msgid "Korea"
msgstr "কোরিয়া"
-#: lang.pm:312
+#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "কুয়েত"
-#: lang.pm:313
+#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "কেম্যান দীপপুঞ্জ"
-#: lang.pm:314
+#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "কাজাকিস্তান"
-#: lang.pm:315
+#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "লাওস্‌"
-#: lang.pm:316
+#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "লেবানন"
-#: lang.pm:317
+#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "সেইন্ট লুইস"
-#: lang.pm:318
+#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "লিয়েচ্‌টেনস্তেইন"
-#: lang.pm:319
+#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "শ্রীলঙ্কা"
-#: lang.pm:320
+#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "লাইবেরিয়া"
-#: lang.pm:321
+#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "লেসথো"
-#: lang.pm:322 network/adsl_consts.pm:600
+#: lang.pm:337 timezone.pm:230
#, c-format
msgid "Lithuania"
msgstr "লিথুয়েনিয়া"
-#: lang.pm:323
+#: lang.pm:338 timezone.pm:231
#, c-format
msgid "Luxembourg"
msgstr "লুক্সেমবার্গ"
-#: lang.pm:324
+#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "লাটভিয়া"
-#: lang.pm:325
+#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "লিবিয়া"
-#: lang.pm:326 network/adsl_consts.pm:609
+#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "মরক্কো"
-#: lang.pm:327
+#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "মোনাকো"
-#: lang.pm:328
+#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "মলডোভা"
-#: lang.pm:329
+#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "মাদাগাস্‌কার"
-#: lang.pm:330
+#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "মার্শাল দীপপুঞ্জ"
-#: lang.pm:331
+#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "ম্যাসিডোনিয়া"
-#: lang.pm:332
+#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "মালি"
-#: lang.pm:333
+#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "মিয়ানমার"
-#: lang.pm:334
+#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "মঙ্গোলীয়া"
-#: lang.pm:335
+#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "উত্তর মারিয়ানা দীপপুঞ্জ"
-#: lang.pm:336
+#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "মির্টিনিক্‌"
-#: lang.pm:337
+#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "মৌরিতানিয়া"
-#: lang.pm:338
+#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "মন্টসেরাত"
-#: lang.pm:339
+#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "মাল্টা"
-#: lang.pm:340
+#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "মরিসাস"
-#: lang.pm:341
+#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "মালদ্বীপ"
-#: lang.pm:342
+#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "মালাউ"
-#: lang.pm:343
+#: lang.pm:358 timezone.pm:250
#, c-format
msgid "Mexico"
msgstr "মেক্সিকো"
-#: lang.pm:344
+#: lang.pm:359 timezone.pm:207
#, c-format
msgid "Malaysia"
msgstr "মালয়েশিয়া"
-#: lang.pm:345
+#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "মোজাম্বিক"
-#: lang.pm:346
+#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "নামিবিয়া"
-#: lang.pm:347
+#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "নিউ ক্যালেডোনিয়া"
-#: lang.pm:348
+#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "নাইজার"
-#: lang.pm:349
+#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "নরফোক দীপপুঞ্জ"
-#: lang.pm:350
+#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "নাইজেরিয়া"
-#: lang.pm:351
+#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "নাইসারাগুয়া"
-#: lang.pm:354
+#: lang.pm:367 mirror.pm:28 timezone.pm:232
+#, c-format
+msgid "Netherlands"
+msgstr "নেদারল্যান্ড"
+
+#: lang.pm:368 mirror.pm:30 timezone.pm:233
+#, c-format
+msgid "Norway"
+msgstr "নরওয়ে"
+
+#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "নেপাল"
-#: lang.pm:355
+#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "নাউরু"
-#: lang.pm:356
+#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "নিউও"
-#: lang.pm:358
+#: lang.pm:372 mirror.pm:29 timezone.pm:255
+#, c-format
+msgid "New Zealand"
+msgstr "নিউজিল্যান্ড"
+
+#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "ওমান"
-#: lang.pm:359
+#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "পানামা"
-#: lang.pm:360
+#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "পেরু"
-#: lang.pm:361
+#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "ফ্রেঞ্জ পলিনেশিয়া"
-#: lang.pm:362
+#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "পাপুয়া নিউগিনি"
-#: lang.pm:363
+#: lang.pm:378 timezone.pm:208
#, c-format
msgid "Philippines"
msgstr "ফিলিপাইন"
-#: lang.pm:364
+#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "পাকিস্তান"
-#: lang.pm:366
+#: lang.pm:380 mirror.pm:31 timezone.pm:234
+#, c-format
+msgid "Poland"
+msgstr "পোল্যান্ড"
+
+#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "সেন্ট পিয়েরে এবং মুকুলন"
-#: lang.pm:367
+#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "পিটকাইরন"
-#: lang.pm:368
+#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "পুয়ের্তোরিকো"
-#: lang.pm:369
+#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "প্যালেস্টাইন"
-#: lang.pm:371
+#: lang.pm:385 mirror.pm:32 timezone.pm:235
+#, c-format
+msgid "Portugal"
+msgstr "পর্তুগাল"
+
+#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "পারাগুয়ে"
-#: lang.pm:372
+#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "পালাউ"
-#: lang.pm:373
+#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "কাতার"
-#: lang.pm:374
+#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "রিইউনিয়ন"
-#: lang.pm:375
+#: lang.pm:390 timezone.pm:236
#, c-format
msgid "Romania"
msgstr "রোমানিয়া"
-#: lang.pm:377
+#: lang.pm:391 mirror.pm:33
+#, c-format
+msgid "Russia"
+msgstr "রাশিয়া"
+
+#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "রুয়ান্ডা"
-#: lang.pm:378
+#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "সৌদী আরব"
-#: lang.pm:379
+#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "সলোমন দীপপুঞ্জ"
-#: lang.pm:380
+#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "সেইছিল্লেস"
-#: lang.pm:381
+#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "সুদান"
-#: lang.pm:383
+#: lang.pm:397 mirror.pm:37 timezone.pm:241
+#, c-format
+msgid "Sweden"
+msgstr "সুইডেন"
+
+#: lang.pm:398 timezone.pm:209
#, c-format
msgid "Singapore"
msgstr "সিঙ্গাপুর"
-#: lang.pm:384
+#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "সেন্ট হেলেনা"
-#: lang.pm:385 network/adsl_consts.pm:747
+#: lang.pm:400 timezone.pm:239
#, c-format
msgid "Slovenia"
msgstr "স্লোভেনিয়া"
-#: lang.pm:386
+#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "স্ভালবার্দ এবং জান মায়ান দীপপুঞ্জ"
-#: lang.pm:388
+#: lang.pm:402 mirror.pm:34 timezone.pm:238
+#, c-format
+msgid "Slovakia"
+msgstr "স্লোভাকিয়া"
+
+#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "সিয়েররা লেওয়ান"
-#: lang.pm:389
+#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "সান মেরিনো"
-#: lang.pm:390 network/adsl_consts.pm:737
+#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "সেনেগাল"
-#: lang.pm:391
+#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "সোমালিয়া"
-#: lang.pm:392
+#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "সুরিনাম"
-#: lang.pm:393
+#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "সাও টোমি এবং প্রিন্সিপে"
-#: lang.pm:394
+#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "এই সাল্ভাদোর"
-#: lang.pm:395
+#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "সিরিয়া"
-#: lang.pm:396
+#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "সুইজারল্যান্ড"
-#: lang.pm:397
+#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "টার্ক এবং কাইকোস দীপপুঞ্জ"
-#: lang.pm:398
+#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "চাদ"
-#: lang.pm:399
+#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "দক্ষিন ফ্রান্স সাম্রাজ্য"
-#: lang.pm:400
+#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "টোগো"
-#: lang.pm:402
+#: lang.pm:416 mirror.pm:40 timezone.pm:211
+#, c-format
+msgid "Thailand"
+msgstr "থাইল্যান্ড"
+
+#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "তাজিকিস্তান"
-#: lang.pm:403
+#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "তোকেলাউ"
-#: lang.pm:404
+#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "পূর্ব তিমুর"
-#: lang.pm:405
+#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "তুর্কমেনিস্তান"
-#: lang.pm:406 network/adsl_consts.pm:931
+#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "তানিসিয়া"
-#: lang.pm:407
+#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "টঙ্গো"
-#: lang.pm:408
+#: lang.pm:423 timezone.pm:212
#, c-format
msgid "Turkey"
msgstr "তুর্কি"
-#: lang.pm:409
+#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "ট্রিনিদাদ এবং টোবাগো"
-#: lang.pm:410
+#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "টুভালু"
-#: lang.pm:412
+#: lang.pm:426 mirror.pm:39 timezone.pm:210
+#, c-format
+msgid "Taiwan"
+msgstr "তাইওয়ান"
+
+#: lang.pm:427 timezone.pm:195
#, c-format
msgid "Tanzania"
msgstr "তানজানিয়া"
-#: lang.pm:413
+#: lang.pm:428 timezone.pm:243
#, c-format
msgid "Ukraine"
msgstr "আকরাইসন"
-#: lang.pm:414
+#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "উগান্ডা"
-#: lang.pm:415
+#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "যুক্ত রাষ্ট্রের বাহিরের দীপপুঞ্জ"
-#: lang.pm:417
+#: lang.pm:431 mirror.pm:41 timezone.pm:251
+#, c-format
+msgid "United States"
+msgstr "যুক্তরাষ্ট্র"
+
+#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "উরুগুয়ে"
-#: lang.pm:418
+#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "উজবেকিস্তান"
-#: lang.pm:419
+#: lang.pm:434
#, c-format
msgid "Vatican"
msgstr "ভ্যাটিক্যান"
-#: lang.pm:420
+#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "সেন্ট ভিনসেন্ট এবং গ্রানাডা"
-#: lang.pm:421
+#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "ভেনিজুয়েলা"
-#: lang.pm:422
+#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "ভার্জিন দীপপুঞ্জ (ব্রিটিশ)"
-#: lang.pm:423
+#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "ভার্জিন দীপপুঞ্জ (ইউ.এস)"
-#: lang.pm:424
+#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "ভিয়েতনাম"
-#: lang.pm:425
+#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "ভানাতু"
-#: lang.pm:426
+#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "ওয়েলস্ এবং ফুটুনা"
-#: lang.pm:427
+#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "সামোয়া"
-#: lang.pm:428
+#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "ইয়েমান"
-#: lang.pm:429
+#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "মায়োত্তে"
-#: lang.pm:431
+#: lang.pm:445 mirror.pm:35 timezone.pm:194
+#, c-format
+msgid "South Africa"
+msgstr "দক্ষিন আফ্রিকা"
+
+#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "জাম্বিয়া"
-#: lang.pm:432
+#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "জিম্বাবুয়ে"
-#: lang.pm:1149
+#: lang.pm:1153
#, c-format
msgid "Welcome to %s"
msgstr "%s -এ আপনাকে স্বাগতম"
@@ -9147,6 +4586,213 @@ msgstr "প্রথমে লজিকাল ভলিউম সরিয়ে
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:10
+#, c-format
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the Mandriva "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandriva Linux distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
+"Mandriva S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using the Software Products in any manner, you "
+"explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
+"Software Products.\n"
+"\n"
+"\n"
+"2. Limited Warranty\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
+"be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if Mandriva S.A. has been advised of the possibility or "
+"occurrence of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
+"\n"
+"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
+"no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Mandriva Linux sites which are prohibited or restricted in some "
+"countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
+"included in the Software Products.\n"
+"\n"
+"\n"
+"3. The GPL License and Related Licenses\n"
+"\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to Mandriva.\n"
+"The programs developed by Mandriva S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by Mandriva S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
+"\n"
+"\n"
+"4. Intellectual Property Rights\n"
+"\n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
+"as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
+"Mandriva S.A. \n"
+"\n"
+"\n"
+"5. Governing Laws \n"
+"\n"
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
+"For any question on this document, please contact Mandriva S.A. \n"
+msgstr ""
+
+#: messages.pm:90
+#, c-format
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
+"সাবধান: বিনামূল্যের সফ্‌টওয়্যার পেটেন্‌ট মুক্ত হওয়ার প্রয়োজন নেই, এবং কিছু বিনামূল্যের\n"
+"সফ্‌টওয়্যার আপনার দেশ কর্তৃক পেটেন্‌টকৃত হতে পারে। উদাহরণস্বরুপ, অতিরিক্ত ব্যবহারের\n"
+"জন্য MP3 decoder একটি লাইসেন্স যুক্ত থাকে (বিস্তারিত জানার জন্য দেখুন\n"
+"http://www.mp3licensing.com । আপনি যদি অনিশ্চিত হোন যদি এর যেকোন\n"
+"একটি আপনার জন্যও প্রযোজ্য হতে পারে, আপনার স্থানীয় আইন পরীক্ষা করুন।"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:98
+#, c-format
+msgid ""
+"\n"
+"Warning\n"
+"\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
+"\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:131
+#, c-format
+msgid ""
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press Enter to reboot.\n"
+"\n"
+"\n"
+"For information on fixes which are available for this release of Mandriva "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandriva Linux User's Guide."
+msgstr ""
+"অভিনন্দন, ইনস্টলেশন পুরোপুরিভাবে হয়ে গেছে।\n"
+"দ্নবুট মিডিয়া সরিয়ে ফেলুন, এবং পুনরায় চালু করার জন্য return চাপুন।\n"
+"\n"
+"\n"
+"এই সংস্করণের ম্যান্ড্রিব লিনাক্সের তথ্য এখানে পাওয়া যাচ্ছে,\n"
+"কোন প্রকার সমস্যার সমাধান এখানে পাওয়া যাচ্ছে:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"আপনার সিস্টেম কন্‌ফিগার করার তথ্য অফিসিয়াল ম্যান্ড্রিব লিনাক্স ব্যবহারকারীর গাইডের\n"
+"ইনস্টল হবার পরের অধ্যায়ে পাওয়া যাবে।"
+
#: modules/interactive.pm:19
#, fuzzy, c-format
msgid "This driver has no configuration parameter!"
@@ -9219,12 +4865,7 @@ msgstr "ইথার্নেট কন্ট্রোলার %s এর জন
msgid "Installing driver for %s card %s"
msgstr "%s, %s কার্ডের জন্য ড্রাইভার ইনস্টল করা হচ্ছে"
-#: modules/interactive.pm:99
-#, c-format
-msgid "(module %s)"
-msgstr "(মডিউল %s)"
-
-#: modules/interactive.pm:109
+#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9233,7 +4874,7 @@ msgstr ""
"আপনি এখন হয়তো %s মডিউলের জন্য অপশন প্রদান করবেন\n"
"লক্ষ্য রাখবেন যাতেকরে প্রবেশ করানো ঠিকানাগুলি 0x প্রিফিক্স দিয়ে হয়, যেমন '0x123'"
-#: modules/interactive.pm:115
+#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9244,7 +4885,7 @@ msgstr ""
"অপশনের ফরম্যাট হচ্ছে ``name=value name2=value2 ...''।\n"
"এই মুহূর্তে, ``io=0x300 irq=7''"
-#: modules/interactive.pm:117
+#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "মডিউলের অপশন সমূহ:"
@@ -9252,12 +4893,12 @@ msgstr "মডিউলের অপশন সমূহ:"
# -PO: the %s is the driver type (scsi, network, sound,...)
# -PO: the %s is the driver type (scsi, network, sound,...)
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: modules/interactive.pm:130
+#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr "আমি কোন %s ড্রাইভার চেষ্টা করব?"
-#: modules/interactive.pm:139
+#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -9275,17 +4916,17 @@ msgstr ""
"মেশিনের প্রয়োজনীয় তথ্য আপনার ড্রাইভার দিয়ে ঠিক করে নিতে চান?\n"
"সাময়িকভাবে, এটি আপনার কম্পিউটারকে হ্যাং করবে, কিন্তু এটা কোন কিছু নষ্ট করবে না।"
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "স্বয়ংক্রিয় পরীক্ষা"
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "অপশনসমূহ বর্ননা করুন"
-#: modules/interactive.pm:155
+#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -9294,1937 +4935,17 @@ msgstr ""
"%s মডিউল লোড করতে ব্যর্থ।\n"
"আপনি কি অন্য প্যারামিটার দিয়ে আবার চেষ্টা করতে চান?"
-#: modules/parameters.pm:49
-#, c-format
-msgid "a number"
-msgstr "একটি নম্বর"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d কমা দিয়ে আলাদা করা নম্বর সমূহ"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d কমা দিয়ে আলাদা করা বাক্য সমূহ"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated numbers"
-msgstr "কমা দিয়ে আলাদা করা নম্বর সমূহ"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated strings"
-msgstr "কমা দিয়ে আলাদা করা বাক্য সমূহ"
-
-#: mouse.pm:25
-#, c-format
-msgid "Sun - Mouse"
-msgstr "সান - মাউস"
-
-#: mouse.pm:31 security/level.pm:12
-#, c-format
-msgid "Standard"
-msgstr "সাধারণ"
-
-#: mouse.pm:32
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: mouse.pm:33
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "সাধারণ PS2 চাকা মাউস"
-
-#: mouse.pm:34
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/modem.pm:68 network/modem.pm:81 network/modem.pm:86
-#: network/modem.pm:115 network/netconnect.pm:596 network/netconnect.pm:601
-#: network/netconnect.pm:613 network/netconnect.pm:618
-#: network/netconnect.pm:634 network/netconnect.pm:636
-#, c-format
-msgid "Automatic"
-msgstr "সয়ংক্রিয়"
-
-#: mouse.pm:39 mouse.pm:73
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking মাউস"
-
-#: mouse.pm:40 mouse.pm:68
-#, c-format
-msgid "Genius NetMouse"
-msgstr "জিনিয়াস NetMouse"
-
-#: mouse.pm:41
-#, c-format
-msgid "Genius NetScroll"
-msgstr "জিনিয়াস NetScroll"
-
-#: mouse.pm:42 mouse.pm:52
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "মাইক্রসফ্ট এক্সপ্লোরার"
-
-#: mouse.pm:47 mouse.pm:79
-#, c-format
-msgid "1 button"
-msgstr "১ বাটন"
-
-#: mouse.pm:48 mouse.pm:57
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "সাধারণ ২ বাটন মাউসের অনুকরণ করো"
-
-#: mouse.pm:50 mouse.pm:59
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "চাকার সাথে ৩ বাটন মাউসের অনুকরণ করো"
-
-#: mouse.pm:51
-#, c-format
-msgid "Wheel"
-msgstr "চাকা"
-
-#: mouse.pm:55
-#, c-format
-msgid "serial"
-msgstr "সিরিয়াল"
-
-#: mouse.pm:58
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "সাধারণ ২৩ বাটন মাউস"
-
-#: mouse.pm:60
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "মাইক্রসফ্ট IntelliMouse"
-
-#: mouse.pm:61
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "লজিটেক্ MouseMan"
-
-#: mouse.pm:62
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "চাকার অনুকরণে লজিটেক্ MouseMan"
-
-#: mouse.pm:63
-#, c-format
-msgid "Mouse Systems"
-msgstr "মাউস সিস্টেম"
-
-#: mouse.pm:65
-#, c-format
-msgid "Logitech CC Series"
-msgstr "লজিটেক্ CC সিরিজ"
-
-#: mouse.pm:66
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "চাকার অনুকরণে লজিটেক্ CC সিরিজ"
-
-#: mouse.pm:67
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "লজিটেক্ MouseMan+/FirstMouse+"
-
-#: mouse.pm:69
-#, c-format
-msgid "MM Series"
-msgstr "MM সিরিজের"
-
-#: mouse.pm:70
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM হিটট্যাবলেট"
-
-#: mouse.pm:71
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (সিরিয়াল, পুরাতন C7 ধরনের)"
-
-#: mouse.pm:72
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "চাকার অনুকরণে Logitech Mouse (সিরিয়াল, পুরাতন C7 ধরনের)"
-
-#: mouse.pm:74
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "চাকা অনুকরণে Kensington Thinking Mouse"
-
-#: mouse.pm:77
-#, c-format
-msgid "busmouse"
-msgstr "busmouse"
-
-#: mouse.pm:80
-#, c-format
-msgid "2 buttons"
-msgstr "২ বাটন"
-
-#: mouse.pm:81
-#, c-format
-msgid "3 buttons"
-msgstr "৩ বাটন"
-
-#: mouse.pm:82
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "চাকা অনুকরণে ৩ বাটন"
-
-#: mouse.pm:86
-#, c-format
-msgid "Universal"
-msgstr "সর্বজনীন"
-
-#: mouse.pm:88
-#, c-format
-msgid "Any PS/2 & USB mice"
-msgstr "যে কোন PS/2 এবং ইউএসবি মাউস"
-
-# sam
-#: mouse.pm:89
-#, c-format
-msgid "Microsoft Xbox Controller S"
-msgstr "মাইক্রোসফ্ট Xbox Controller S"
-
-#: mouse.pm:93 standalone/drakconnect:351 standalone/drakvpn:1126
-#, c-format
-msgid "none"
-msgstr "না"
-
-#: mouse.pm:95
-#, c-format
-msgid "No mouse"
-msgstr "কোন মাউস নেই"
-
-#: mouse.pm:304 mouse.pm:367 mouse.pm:376 mouse.pm:435
-#, c-format
-msgid "Synaptics Touchpad"
-msgstr "Synaptics Touchpad"
-
-#: mouse.pm:561
-#, c-format
-msgid "Please test the mouse"
-msgstr "অনুগ্রহ করে মাউসটি পরীক্ষা করুন"
-
-#: mouse.pm:563
-#, c-format
-msgid "To activate the mouse,"
-msgstr "মাউসটি সক্রিয় করার জন্য,"
-
-#: mouse.pm:564
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "আপনার মাউসের চাকাটি ঘোরান!"
-
-#: network/drakfirewall.pm:12 share/compssUsers.pl:85
-#, c-format
-msgid "Web Server"
-msgstr "ওয়েব সার্ভার"
-
-#: network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "ডোমেইন নেম সার্ভার (DNS)"
-
-#: network/drakfirewall.pm:22
-#, c-format
-msgid "SSH server"
-msgstr "SSH সার্ভার"
-
-#: network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "FTP সার্ভার"
-
-#: network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "মেইল সার্ভার"
-
-#: network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP & IMAP সার্ভার"
-
-#: network/drakfirewall.pm:42
-#, c-format
-msgid "Telnet server"
-msgstr "টেলনেট সার্ভার"
-
-# সাম
-#: network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr "উইন্ডোজ ফাইলস শেয়ারিং (SMB)"
-
-#: network/drakfirewall.pm:54
-#, c-format
-msgid "CUPS server"
-msgstr "CUPS সার্ভার"
-
-#: network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr "Echo request (ping)"
-
-#: network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr "বিটTorrent"
-
-#: network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr ""
-
-#: network/drakfirewall.pm:165
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-"ড্র্যাকফায়ারওয়াল কন্‌ফিগারেটর\n"
-"\n"
-"এটি এই ম্যান্ড্রিব লিনাক্স মেশিনের জন্য একটী ব্যক্তিগত ফায়ারওয়াল কন্‌ফিগার করবে।\n"
-"একটি শক্তিশালী এবং একান্তভাবে নিযুক্ত ফায়ারওয়াল সমাধানের জন্য, অনুগ্রহ করে\n"
-"বিশেষ ম্যান্ড্রিব নিরাপত্তা ফায়ারওয়াল ডিস্ট্রিবিউশনে দেখুন।"
-
-#: network/drakfirewall.pm:171
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-"ড্র্যাকফায়ারওয়াল কন্‌ফিগারেটর\n"
-"\n"
-"নিশ্চিত হোন যে অন্য কিছু ব্যবহারের আগেই আপনি আপনার নেটওয়ার্ক/ইন্টারনেট প্রবেশ\n"
-"drakconnect দিয়ে কন্‌ফিগার করেছেন।"
-
-#: network/drakfirewall.pm:188
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "আপনার কোন কোন সার্ভিসগুলোকে ইন্টারনেট থেকে সংযুক্ত হবার ক্ষমতা দিতে চান?"
-
-#: network/drakfirewall.pm:191
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-"আপনি একটি miscellaneous পোর্ট দিন। \n"
-"সঠিক উদাহরণ হচ্ছে: ১৩৯/tcp ১৩৯/udp ৬০০:৬১০/tcp ৬০০:৬১০/udp।\n"
-"তথ্যের জন্য /etc/services দেখুন।"
-
-#: network/drakfirewall.pm:197
-#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-"ভুল পোর্ট দেয়া হয়েছে: %s।\n"
-"সঠিক ফরম্যাট হচ্ছে \"port/tcp\" বা \"port/udp\", \n"
-"যেখানে পোর্ট হচ্ছে ১ এবং ৬৫৫৩৫ এর মধ্যে।\n"
-"\n"
-"আপনি পোর্টের সীমাও দিয়ে দিতে পারেন (যেমন: 24300:24350/udp)"
-
-#: network/drakfirewall.pm:207
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "সবকিছু (কোন ফায়ারওয়াল ছাড়া)"
-
-#: network/drakfirewall.pm:209
-#, c-format
-msgid "Other ports"
-msgstr "অন্যান্য পোর্ট"
-
-#: network/drakfirewall.pm:253 network/drakfirewall.pm:256
-#: standalone/drakids:33 standalone/drakids:136 standalone/drakids:145
-#: standalone/drakids:170 standalone/drakids:179 standalone/drakids:189
-#: standalone/drakids:265 standalone/net_applet:59 standalone/net_applet:202
-#: standalone/net_applet:385 standalone/net_applet:422
-#, fuzzy, c-format
-msgid "Interactive Firewall"
-msgstr "ফায়ারওয়াল"
-
-#: network/drakfirewall.pm:254
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activity should be watched."
-msgstr ""
-
-#: network/drakfirewall.pm:259
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr ""
-
-#: network/ifw.pm:129
-#, fuzzy, c-format
-msgid "Port scanning"
-msgstr "শেয়ারিং নেই"
-
-# সাম
-#: network/ifw.pm:130
-#, fuzzy, c-format
-msgid "Service attack"
-msgstr "আক্রান্ত সার্ভিস: %s"
-
-#: network/ifw.pm:131
-#, fuzzy, c-format
-msgid "Password cracking"
-msgstr "পাসওয়ার্ড (পুনরায়)"
-
-#: network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr ""
-
-# সাম
-#: network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr "%s দ্বারা একটি পোর্ট স্ক্যানিং আক্রমনের চেষ্টা করা হয়েছে।"
-
-# সাম
-#: network/ifw.pm:135
-#, c-format
-msgid "The %s service has been attacked by %s."
-msgstr "%s দ্বারা %s সার্ভিসটি আক্রান্ত হয়েছে।"
-
-# সাম
-#: network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr "%s দ্বারা একটি পাসওয়ার্ড ভাঙার আক্রমনের চেষ্টা করা হয়েছে।"
-
-# সাম
-#: network/ifw.pm:137
-#, fuzzy, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr "%s দ্বারা একটি পোর্ট স্ক্যানিং আক্রমনের চেষ্টা করা হয়েছে।"
-
-#: network/isdn.pm:117 network/netconnect.pm:463 network/netconnect.pm:557
-#: network/netconnect.pm:560 network/netconnect.pm:708
-#: network/netconnect.pm:712
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr "তালিকায় অন্তর্ভুক্ত নেই - নিজে নিজেই সম্পাদন করুন"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "আমি জানি না"
-
-#: network/isdn.pm:161 network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "পি-সি-আই"
-
-#: network/isdn.pm:162 network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "ইউএসবি"
-
-#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/netconnect.pm:601 network/netconnect.pm:618
-#: network/netconnect.pm:634
-#, c-format
-msgid "Manual"
-msgstr "হাতে হাতে"
-
-#: network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr ""
-
-# সাম
-#: network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr "উইন্ডোজ ড্রাইভারটি বেছে নিন (.inf ফাইল)"
-
-#: network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr ""
-
-#: network/ndiswrapper.pm:89
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr ""
-
-#: network/ndiswrapper.pm:95
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-
-#: network/ndiswrapper.pm:101
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr ""
-
-#: network/netconnect.pm:69 network/netconnect.pm:493
-#: network/netconnect.pm:505
-#, c-format
-msgid "Manual choice"
-msgstr "হাতে হাতে পছন্দ"
-
-#: network/netconnect.pm:69
-#, c-format
-msgid "Internal ISDN card"
-msgstr "ইন্টার্নাল ISDN কার্ড"
-
-#: network/netconnect.pm:80 printer/printerdrake.pm:1622 standalone/drakups:72
-#, c-format
-msgid "Manual configuration"
-msgstr "স্বনির্বাচিত কনফিগারেশন"
-
-#: network/netconnect.pm:81 standalone/drakroam:121
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr "সয়ংক্রিয় IP (BOOTP/DHCP)"
-
-#: network/netconnect.pm:83
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
-msgstr "সয়ংক্রিয় IP (BOOTP/DHCP/Zeroconf)"
-
-#: network/netconnect.pm:86
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "বাকী বিশ্বের জন্য প্রটোকল"
-
-#: network/netconnect.pm:88 standalone/drakconnect:563
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "ইউরোপীয় প্রটোকল (EDSS1)"
-
-#: network/netconnect.pm:89 standalone/drakconnect:564
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"বাকী বিশ্বের জন্য প্রটকোল\n"
-"কোন D-Channel ছাড়াই (ভাড়া নেয়া লাইনসমূহ)"
-
-#: network/netconnect.pm:103 standalone/harddrake2:328
-#: standalone/net_monitor:102 standalone/net_monitor:103
-#: standalone/net_monitor:108
-#, c-format
-msgid "unknown"
-msgstr "অজানা"
-
-#: network/netconnect.pm:120 network/thirdparty.pm:220
-#, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "Alcatel speedtouch ইউএসবি মডেম"
-
-#: network/netconnect.pm:121
-#, c-format
-msgid "Sagem USB modem"
-msgstr "Sagem ইউএসবি মডেম"
-
-#: network/netconnect.pm:122
-#, c-format
-msgid "Bewan modem"
-msgstr "Bewan মডেম"
-
-#: network/netconnect.pm:123
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr "ECI Hi-Focus মডেম"
-
-#: network/netconnect.pm:127
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr "ডায়নামিক হোস্ট কনফিগারেশন প্রটোকল (DHCP)"
-
-#: network/netconnect.pm:128
-#, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "হাতে হাতে TCP/IP কনফিগারেশন"
-
-#: network/netconnect.pm:129
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr "পয়েন্ট টু পয়েন্ট টর্নেলিং প্রটোকল (PPTP)"
-
-#: network/netconnect.pm:130
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr "Ethernet মাধ্যমে PPP (PPPoE)"
-
-#: network/netconnect.pm:131
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr "ATM-এর মাধ্যমে PPP (PPPoA)"
-
-#: network/netconnect.pm:132
-#, c-format
-msgid "DSL over CAPI"
-msgstr "CAPI উপরে DSL"
-
-#: network/netconnect.pm:136
-#, c-format
-msgid "Bridged Ethernet LLC"
-msgstr "Bridged ইথারনেট LLC"
-
-#: network/netconnect.pm:137
-#, c-format
-msgid "Bridged Ethernet VC"
-msgstr "Bridged ইথারনেট vC"
-
-#: network/netconnect.pm:138
-#, c-format
-msgid "Routed IP LLC"
-msgstr "রাউটেড আই-পি LLC"
-
-#: network/netconnect.pm:139
-#, c-format
-msgid "Routed IP VC"
-msgstr "রাউটেড আই-পি VC"
-
-#: network/netconnect.pm:140
-#, c-format
-msgid "PPPoA LLC"
-msgstr "PPPoA LLC"
-
-#: network/netconnect.pm:141
-#, c-format
-msgid "PPPoA VC"
-msgstr "PPPoA VC"
-
-#: network/netconnect.pm:145 standalone/drakconnect:498
-#, c-format
-msgid "Script-based"
-msgstr "স্ক্রিপ্ট-ভিত্তিক"
-
-#: network/netconnect.pm:146 standalone/drakconnect:498
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: network/netconnect.pm:147 standalone/drakconnect:498
-#, c-format
-msgid "Terminal-based"
-msgstr "টার্মিনাল-ভিত্তিক"
-
-#: network/netconnect.pm:148 standalone/drakconnect:498
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: network/netconnect.pm:149 standalone/drakconnect:498
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: network/netconnect.pm:250 standalone/drakconnect:56
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "নেটওয়ার্ক এবং ইন্টারনেট কনফিগারেশন"
-
-#: network/netconnect.pm:256
-#, c-format
-msgid "LAN connection"
-msgstr "LAN সংযোগ"
-
-#: network/netconnect.pm:257 network/netconnect.pm:276 standalone/drakroam:182
-#: standalone/drakroam:220 standalone/drakroam:223
-#, c-format
-msgid "Wireless connection"
-msgstr "ওয়্যারলেস সংযোগ"
-
-#: network/netconnect.pm:258
-#, c-format
-msgid "ADSL connection"
-msgstr "ASDL সংযোগ"
-
-#: network/netconnect.pm:259
-#, c-format
-msgid "Cable connection"
-msgstr "কেবল সংযোগ"
-
-#: network/netconnect.pm:260
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN কানেকশন"
-
-#: network/netconnect.pm:261
-#, c-format
-msgid "Modem connection"
-msgstr "মডেম কানেকশন"
-
-#: network/netconnect.pm:262
-#, c-format
-msgid "DVB connection"
-msgstr ""
-
-#: network/netconnect.pm:272
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "কনফিগারের জন্য আপনার সংযোগ পছন্দ করুন"
-
-#: network/netconnect.pm:287 network/netconnect.pm:786
-#, c-format
-msgid "Connection Configuration"
-msgstr "সংযোগ কনফিগারেশন"
-
-#: network/netconnect.pm:287 network/netconnect.pm:787
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "অনুগ্রহ করে নিম্নের দেখুন অথবা পূরন করুন"
-
-#: network/netconnect.pm:290
-#, c-format
-msgid "Your personal phone number"
-msgstr "আপনার ব্যক্তিগত ফোন নম্বর"
-
-#: network/netconnect.pm:291 network/netconnect.pm:790
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "পরিবেশকের নাম (যেমন provider.net)"
-
-#: network/netconnect.pm:292 standalone/drakconnect:493
-#, c-format
-msgid "Provider phone number"
-msgstr "পরিবেশকের ফোন নম্বর"
-
-#: network/netconnect.pm:293
-#, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "পরিবেশকের DNS ১ (ঐচ্ছিক)"
-
-#: network/netconnect.pm:294
-#, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "পরিবেশকের DNS ২ (ঐচ্ছিক)"
-
-#: network/netconnect.pm:295 standalone/drakconnect:444
-#, c-format
-msgid "Dialing mode"
-msgstr "ডায়েলের ধরণ"
-
-#: network/netconnect.pm:296 standalone/drakconnect:449
-#: standalone/drakconnect:517
-#, c-format
-msgid "Connection speed"
-msgstr "সংযোগের গতি"
-
-#: network/netconnect.pm:297 standalone/drakconnect:454
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "সংযোগের টাইমআউট (সেকেন্ডে)"
-
-#: network/netconnect.pm:298 network/netconnect.pm:323
-#: network/netconnect.pm:793 standalone/drakconnect:491
-#, c-format
-msgid "Account Login (user name)"
-msgstr "একাউন্ট লগইন (ইউজারনেম)"
-
-#: network/netconnect.pm:299 network/netconnect.pm:324
-#: network/netconnect.pm:794 standalone/drakconnect:492
-#, c-format
-msgid "Account Password"
-msgstr "একাউন্ট পাসওয়ার্ড"
-
-#: network/netconnect.pm:300 standalone/drakconnect:554
-#, c-format
-msgid "Card IRQ"
-msgstr "কার্ডের IRQ"
-
-#: network/netconnect.pm:301 standalone/drakconnect:555
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "কার্ড মেম (DMA)"
-
-#: network/netconnect.pm:302 standalone/drakconnect:556
-#, c-format
-msgid "Card IO"
-msgstr "কার্ডের IO"
-
-#: network/netconnect.pm:303 standalone/drakconnect:557
-#, c-format
-msgid "Card IO_0"
-msgstr "কার্ডের IO_০"
-
-#: network/netconnect.pm:304
-#, c-format
-msgid "Card IO_1"
-msgstr "কার্ডের IO_১"
-
-# sam: cable?
-#: network/netconnect.pm:319
-#, c-format
-msgid "Cable: account options"
-msgstr "ক্যাবল: একাউন্ট অপশনসমূহ"
-
-# সাম
-#: network/netconnect.pm:322
-#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr "BPALogin ব্যবহার করুন (Telstra এর জন্য প্রয়োজন)"
-
-#: network/netconnect.pm:348 network/netconnect.pm:670
-#: network/netconnect.pm:826 network/netconnect.pm:1170
-#, c-format
-msgid "Select the network interface to configure:"
-msgstr "কনফিগার করার জন্য নেটওয়ার্কের ইন্টারফেস পছন্দ করুন:"
-
-#: network/netconnect.pm:350 network/netconnect.pm:385
-#: network/netconnect.pm:671 network/netconnect.pm:828 network/shorewall.pm:70
-#: standalone/drakconnect:714
-#, c-format
-msgid "Net Device"
-msgstr "নেট ডিভাইস"
-
-#: network/netconnect.pm:351 network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr "বাহ্যিক ISDN মডেম"
-
-#: network/netconnect.pm:384 standalone/harddrake2:215
-#, c-format
-msgid "Select a device!"
-msgstr "একটি যন্ত্র বেছে নিন!"
-
-#: network/netconnect.pm:393 network/netconnect.pm:403
-#: network/netconnect.pm:413 network/netconnect.pm:446
-#: network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "ISDN কনফিগারেশন"
-
-#: network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "আপনার কি ধরনের কার্ড আছে?"
-
-#: network/netconnect.pm:404
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"যদি আপনার একটি ISA কার্ড থাকে, পরবর্তী স্ক্রীণের মানগুলো সঠিক হবে।\n"
-"\n"
-"যদি আপনার একটি PCMCIA কার্ড থাকে, আপনার কার্ডের \"irq\" এবং \"io\" আপনাকে "
-"জানতে হবে।\n"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "অগ্রসর"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "বাতিল"
-
-#: network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "এগুলির মধ্যে কোনটি আপনার ISDN কার্ড?"
-
-#: network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-"এই মডেমের জন্য একটি CAPI ড্রাইভার আছে। এই CAPI ড্রাইভার একটি ফ্রি ড্রাইভারের "
-"চেয়ে বেশি সুবিধা দেবে (ফ্যাক্স পাঠানোর মত)। আপনি কোন্‌ ড্রাইভার ব্যবহার করতে চান?"
-
-#: network/netconnect.pm:434 standalone/drakconnect:109 standalone/drakups:249
-#: standalone/harddrake2:133
-#, c-format
-msgid "Driver"
-msgstr "ড্রাইভার"
-
-#: network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "আপনি কোন প্রটোকল ব্যবহার করতে চান?"
-
-#: network/netconnect.pm:448 standalone/drakconnect:109
-#: standalone/drakconnect:300 standalone/drakconnect:562
-#: standalone/drakids:207 standalone/drakvpn:1128
-#, c-format
-msgid "Protocol"
-msgstr "প্রটোকল"
-
-#: network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"আপনার পরিবেশক পছন্দ করুন।\n"
-"যদি তালিকাভূক্ত না থাকে, তাহলে তালিকায় নেই পছন্দ করুন।"
-
-#: network/netconnect.pm:462 network/netconnect.pm:556
-#: network/netconnect.pm:707
-#, c-format
-msgid "Provider:"
-msgstr "পরিবেশক:"
-
-#: network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"এই সিস্টেম আপনার মডেম সাপোর্ট করেনা।\n"
-" http://www.linmodems.org-এ একবার দেখুন"
-
-#: network/netconnect.pm:490
-#, c-format
-msgid "Select the modem to configure:"
-msgstr "কনফিগার করার জন্য মডেম নির্বাচন করুন:"
-
-#: network/netconnect.pm:525
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "আপনার মোডেমটি যেই সিরিয়াল পোর্টে সংযুক্ত আছে তা পছন্দ করুন।"
-
-#: network/netconnect.pm:554
-#, c-format
-msgid "Select your provider:"
-msgstr "আপনার পরিবেশক নির্বাচন করুন:"
-
-#: network/netconnect.pm:578
-#, c-format
-msgid "Dialup: account options"
-msgstr "ডায়েলআপ: একাউন্টের অপশন"
-
-#: network/netconnect.pm:581
-#, c-format
-msgid "Connection name"
-msgstr "কানেকশনের নাম"
-
-#: network/netconnect.pm:582
-#, c-format
-msgid "Phone number"
-msgstr "ফোন নম্বর"
-
-#: network/netconnect.pm:583
-#, c-format
-msgid "Login ID"
-msgstr "লগইন আইডি"
-
-#: network/netconnect.pm:598 network/netconnect.pm:631
-#, c-format
-msgid "Dialup: IP parameters"
-msgstr "ডায়েলআপ: IP প্যারামিটার"
-
-#: network/netconnect.pm:601
-#, c-format
-msgid "IP parameters"
-msgstr "IP প্যারামিটারসমূহ"
-
-#: network/netconnect.pm:602 network/netconnect.pm:941
-#: printer/printerdrake.pm:460 standalone/drakconnect:109
-#: standalone/drakconnect:316 standalone/drakconnect:882
-#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:284
-#, c-format
-msgid "IP address"
-msgstr "IP ঠিকানাসমূহ"
-
-#: network/netconnect.pm:603
-#, c-format
-msgid "Subnet mask"
-msgstr "সাবনেট মাস্ক"
-
-#: network/netconnect.pm:615
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr "ডায়েলআপ: DNS প্যারামিটার"
-
-#: network/netconnect.pm:618
-#, c-format
-msgid "DNS"
-msgstr "DNS"
-
-#: network/netconnect.pm:619
-#, c-format
-msgid "Domain name"
-msgstr "ডোমেইন নেম"
-
-#: network/netconnect.pm:620 network/netconnect.pm:791
-#: standalone/drakconnect:992
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "প্রথম DNS সার্ভার (ঐচ্ছিক)"
-
-#: network/netconnect.pm:621 network/netconnect.pm:792
-#: standalone/drakconnect:993
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "দ্বিতীয় DNS সার্ভার (ঐচ্ছিক)"
-
-#: network/netconnect.pm:622
-#, c-format
-msgid "Set hostname from IP"
-msgstr "IP থেকে হোস্টনেম সেট করুন"
-
-#: network/netconnect.pm:634 standalone/drakconnect:327
-#, c-format
-msgid "Gateway"
-msgstr "গেটওয়ে"
-
-#: network/netconnect.pm:635 standalone/drakroam:124
-#, c-format
-msgid "Gateway IP address"
-msgstr "গেটওয়ে IP ঠিকানা"
-
-#: network/netconnect.pm:670
-#, c-format
-msgid "ADSL configuration"
-msgstr "ADSL কনফিগারেশন"
-
-#: network/netconnect.pm:705
-#, c-format
-msgid "Please choose your ADSL provider"
-msgstr "অনুগ্রহ করে একটি ADSL পরিবেশক পছন্দ করুন"
-
-#: network/netconnect.pm:735
-#, c-format
-msgid ""
-"Please choose your DSL connection type.\n"
-"If you do not know it, keep the preselected type."
-msgstr ""
-
-#: network/netconnect.pm:738
-#, c-format
-msgid "ADSL connection type:"
-msgstr "ADSL সংযোগের ধরন:"
-
-#: network/netconnect.pm:796
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr "ভার্চুয়াল পাথ আই-ডি(VPI):"
-
-#: network/netconnect.pm:797
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr "ভার্চুয়াল সার্কিট আই-ডি(VCI):"
-
-#: network/netconnect.pm:800
-#, c-format
-msgid "Encapsulation:"
-msgstr "এনক্যাপসুলেশন"
-
-#: network/netconnect.pm:830
-#, c-format
-msgid "Manually load a driver"
-msgstr "আপনি নিজেই একটি ড্রাইভার লোড করান"
-
-# সাম
-#: network/netconnect.pm:831
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr "একটি উইন্ডোজ ড্রাইভার ব্যবহার করুন (ndiswrapper এর সাথে)"
-
-#: network/netconnect.pm:896
-#, c-format
-msgid "Zeroconf hostname resolution"
-msgstr "Zeroconf হোস্টের নাম রেজ্যুলুশন"
-
-#: network/netconnect.pm:897 network/netconnect.pm:928
-#, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "%s নেটওয়ার্ক যন্ত্রটি কন্‌ফিগার হচ্ছে (ড্রাইভার %s)"
-
-#: network/netconnect.pm:898
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use"
-msgstr ""
-
-#: network/netconnect.pm:929
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"অনুগ্রহ করে এই মেশিনের আই-পি কন্‌ফিগারেশন দিন।\n"
-"প্রত্যেক আইটেম একটি আই-পি অ্যাড্রেস হিসেবে dotted-decimal নোটেশনে দিতে \n"
-"হবে (উদাহরণস্বরুপ, 1.2.3.4)"
-
-#: network/netconnect.pm:936 standalone/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "DHCP ঠিকানা থেকে পাওয়া হোস্টের নাম"
-
-#: network/netconnect.pm:937 standalone/drakconnect:375
-#, c-format
-msgid "DHCP host name"
-msgstr "DHCP হোস্টের নাম"
-
-#: network/netconnect.pm:942 standalone/drakconnect:321
-#: standalone/drakconnect:883 standalone/drakgw:181
-#, c-format
-msgid "Netmask"
-msgstr "নেটমাস্ক"
-
-#: network/netconnect.pm:944 standalone/drakconnect:437
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "নেটওয়ার্ক কার্ড আই-ডি ট্র্যাক করো (ল্যাপটপের জন্য ভাল)"
-
-#: network/netconnect.pm:945 standalone/drakconnect:438
-#, c-format
-msgid "Network Hotplugging"
-msgstr "নেটওয়ার্ক Hotplugging"
-
-#: network/netconnect.pm:947 standalone/drakconnect:432
-#, c-format
-msgid "Start at boot"
-msgstr "বুটের সময় চালু হবে"
-
-# সাম: পরিমাপক বা মেট্রিক (as in metric system)
-#: network/netconnect.pm:949 standalone/drakconnect:460
-#, c-format
-msgid "Metric"
-msgstr "মেট্রিক"
-
-#: network/netconnect.pm:950
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr ""
-
-#: network/netconnect.pm:952 standalone/drakconnect:369
-#: standalone/drakconnect:886
-#, c-format
-msgid "DHCP client"
-msgstr "DHCP ক্লায়েন্ট"
-
-# sam
-#: network/netconnect.pm:954 standalone/drakconnect:379
-#, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "DHCP টাইমআউট (সেকেন্ডে)"
-
-#: network/netconnect.pm:955 standalone/drakconnect:382
-#, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "DHCP থেকে DNS সার্ভারগুলো দেখাও "
-
-# সাম
-#: network/netconnect.pm:956 standalone/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr "DHCP থেকে YP সার্ভারগুলো দেখাও "
-
-# সাম
-#: network/netconnect.pm:957 standalone/drakconnect:384
-#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr "DHCP থেকে NTPD সার্ভারগুলো দেখাও "
-
-#: network/netconnect.pm:965 printer/printerdrake.pm:1876
-#: standalone/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP ঠিকানা 1.2.3.4-এর মত হতে হবে"
-
-# সাম
-#: network/netconnect.pm:969 standalone/drakconnect:680
-#, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "নেটমাস্ক 255.255.224.0 এই ফরম্যাটে হতে হবে"
-
-#: network/netconnect.pm:973
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr "নির্দেশ : সাধারনত %s IP ঠিকানাগুলি রিজার্ভ থাকে !"
-
-#: network/netconnect.pm:978 standalone/drakTermServ:1927
-#: standalone/drakTermServ:1928 standalone/drakTermServ:1929
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s ইতিমধ্যেই ব্যবহৃত হচ্ছে\n"
-
-# সাম
-#: network/netconnect.pm:1018
-#, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "একটি ndiswrapper ড্রাইভার বেছে নিন"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr ""
-
-# সাম
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Install a new driver"
-msgstr "একটি নতুন ড্রাইভার ইনস্টল করুন"
-
-#: network/netconnect.pm:1032
-#, c-format
-msgid "Select a device:"
-msgstr ""
-
-#: network/netconnect.pm:1061
-#, c-format
-msgid "Please enter the wireless parameters for this card:"
-msgstr "কার্ডের ওয়্যারলেস প্যারামিটার প্রবেশ করান"
-
-#: network/netconnect.pm:1064 standalone/drakconnect:404
-#: standalone/drakroam:52
-#, c-format
-msgid "Operating Mode"
-msgstr "কার্যকারিতার ধরন"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Ad-hoc"
-msgstr "Echo request (ping)"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Managed"
-msgstr "ব্যবস্থা হয়েছে"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Master"
-msgstr "মাষ্টার"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Repeater"
-msgstr "রিপিটার"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Secondary"
-msgstr "মাধ্যমিক"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Auto"
-msgstr "সয়ংক্রিয়"
-
-#: network/netconnect.pm:1068 standalone/drakconnect:405
-#: standalone/drakroam:115
-#, c-format
-msgid "Network name (ESSID)"
-msgstr "নেটওয়ার্কের নাম (ESSID)"
-
-#: network/netconnect.pm:1069 standalone/drakroam:116
-#, c-format
-msgid "Encryption mode"
-msgstr ""
-
-#: network/netconnect.pm:1074
-#, c-format
-msgid "Allow access point roaming"
-msgstr ""
-
-#: network/netconnect.pm:1076 standalone/drakconnect:406
-#, c-format
-msgid "Network ID"
-msgstr "নেটওয়ার্ক ID"
-
-#: network/netconnect.pm:1077 standalone/drakconnect:407
-#, c-format
-msgid "Operating frequency"
-msgstr "কার্যকারিতার ফ্রিকুয়েন্সি"
-
-#: network/netconnect.pm:1078 standalone/drakconnect:408
-#, c-format
-msgid "Sensitivity threshold"
-msgstr "প্রতিক্রিয়াশীল থ্রেশল্ড"
-
-#: network/netconnect.pm:1079 standalone/drakconnect:409
-#, c-format
-msgid "Bitrate (in b/s)"
-msgstr "বিটরেট (b/s-এ)"
-
-#: network/netconnect.pm:1080 standalone/drakconnect:420
-#, c-format
-msgid "RTS/CTS"
-msgstr "RTS/CTS"
-
-# sam=
-# parameter has been translated as প্যারামিটার
-#: network/netconnect.pm:1081
-#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
-"RTS/CTS প্রতিটি প্যাকেট প্রেরণের আগে চ্যানলটি খালি কিনা তা পরীক্ষা করার জন্য একটি "
-"হ্যান্ডশেক যোগ\n"
-"করে। এতে কিছুটা সময় ব্যয় হয় বটে তবে লুকানো নোডসমুহ ও বহুসংখ্যক স্বক্রিয় নোডের ক্ষেত্রে "
-"পারফরম্যান্স\n"
-"বাড়িয়ে দেয়। এ প্যারামিটারটি, একটি সবচেয়ে ছোট প্যাকেট যার জন্য একটি নোড RTS "
-"পাঠায়,\n"
-"তার সাইজ সেট করে, অতএব এখানে সর্বোচ্চ প্যাকেট সাইজের মানটি বসালে এই ব্যবস্থা "
-"নিষ্ক্রিয়\n"
-"হয়ে যায়। আপনি এই প্যারামিটারটি স্বয়ংক্রিয়, নির্ধারিত, বা বন্ধও সেট\n"
-"করতে পারেন।"
-
-#: network/netconnect.pm:1088 standalone/drakconnect:421
-#, c-format
-msgid "Fragmentation"
-msgstr "ফ্রাগমেন্টেশন"
-
-#: network/netconnect.pm:1089 standalone/drakconnect:422
-#, c-format
-msgid "iwconfig command extra arguments"
-msgstr "Iwকন্‌ফিগ কমান্ড অতিরিক্ত আর্গুমেন্ট"
-
-#: network/netconnect.pm:1090
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-"এখানে, একজন কিছু তারবিহীন প্যারামিটার কন্‌ফিগার করতে পারে, যেমন:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick ইতিমধ্যেই হোস্টনেম "
-"হিসেবে সেট হয়ে গেছে)।\n"
-"\n"
-"অতিরিক্ত তথ্যের জন্য iwconfig(8) এর ম্যান পেজ দেখুন।"
-
-# -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1097 standalone/drakconnect:423
-#, c-format
-msgid "iwspy command extra arguments"
-msgstr "Iwস্পাই কমান্ড অতিরিক্ত আর্গুমেন্ট"
-
-#: network/netconnect.pm:1098
-#, fuzzy, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-"iwspy ব্যবহার করা হয় ওয়্যারলেস নেটওয়ার্ক ইন্টারফেসে একটি ঠিকানার\n"
-"তালিকা সেট করা এবং তার প্রতিটির সংযোগ এর মান সংক্রান্ত তথ্য পড়ার জন্য।\n"
-"\n"
-
-#: network/netconnect.pm:1107 standalone/drakconnect:424
-#, c-format
-msgid "iwpriv command extra arguments"
-msgstr "iwpriv কমান্ড অতিরিক্ত আর্গুমেন্ট"
-
-#: network/netconnect.pm:1108
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-
-#: network/netconnect.pm:1123
-#, c-format
-msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
-msgstr ""
-"ফ্রিকোয়েন্সির শেষে k, M বা G থাকতে হবে (উদাহরণস্বরুপ,২.৪৬ গিগাহার্জ ফ্রিকোয়েন্সীর "
-"জন্য \"2.46G\"),অথবা অনেকগুলো '0' (শূণ্য) যোগ করুন।"
-
-#: network/netconnect.pm:1127
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-"ফ্রিকোয়েন্সির শেষে k, M বা G থাকতে হবে (উদাহরণস্বরুপ,১১M এর জন্য \"11M\"),অথবা "
-"অনেকগুলো '0' (শূণ্য) যোগ করুন।"
-
-#: network/netconnect.pm:1170
-#, c-format
-msgid "DVB configuration"
-msgstr ""
-
-#: network/netconnect.pm:1171
-#, c-format
-msgid "DVB Adapter"
-msgstr ""
-
-#: network/netconnect.pm:1188
-#, c-format
-msgid "DVB adapter settings"
-msgstr ""
-
-#: network/netconnect.pm:1191
-#, c-format
-msgid "Adapter card"
-msgstr ""
-
-#: network/netconnect.pm:1192
-#, c-format
-msgid "Net demux"
-msgstr ""
-
-#: network/netconnect.pm:1193
-#, c-format
-msgid "PID"
-msgstr ""
-
-#: network/netconnect.pm:1221
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"অনুগ্রহ করে আপনার হোস্টনেম দিন।\n"
-"আপনি হোস্টনেমটি যোগ্যতা-সম্পন্ন হোস্টনেম হওয়া উচিত,\n"
-"যেমন ``mybox.mylab.myco.com''।\n"
-"যদি আপনার কোন গেটওয়ে থাকে তাহলে তার আই-পি অ্যাড্রেস দিন"
-
-#: network/netconnect.pm:1226
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr ""
-"শেষ কিন্তু সবচেয়ে ছোট নয় আপনি আপনার ডি-এন-এস সার্ভারের আই-পি অ্যাড্রেসগুলো টাইপ "
-"করে দিতে পারেন।"
-
-#: network/netconnect.pm:1228 standalone/drakconnect:991
-#, c-format
-msgid "Host name (optional)"
-msgstr "হোস্টের নাম (ঐচ্ছিক)"
-
-#: network/netconnect.pm:1228 standalone/drakhosts:197
-#, c-format
-msgid "Host name"
-msgstr "হোস্টের নাম"
-
-#: network/netconnect.pm:1230
-#, c-format
-msgid "DNS server 1"
-msgstr "DNS সার্ভার ১"
-
-#: network/netconnect.pm:1231
-#, c-format
-msgid "DNS server 2"
-msgstr "DNS সার্ভার ২"
-
-#: network/netconnect.pm:1232
-#, c-format
-msgid "DNS server 3"
-msgstr "DNS সার্ভার ৩"
-
-#: network/netconnect.pm:1233
-#, c-format
-msgid "Search domain"
-msgstr "ডোমেইনের খোঁজ"
-
-#: network/netconnect.pm:1234
-#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr "ডিফল্টভাবে ডোমেইন সন্ধান যোগ্যতা-সম্পন্ন হোস্ট-নেম থেকে নির্দিষ্ত হবে"
-
-#: network/netconnect.pm:1235
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "গেটওয়ে (e.g. %s)"
-
-#: network/netconnect.pm:1237
-#, c-format
-msgid "Gateway device"
-msgstr "গেটওয়ে ডিভাইস"
-
-#: network/netconnect.pm:1246
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "DNS সার্ভারের ঠিকানা 1.2.3.4-এর মত হতে হবে"
-
-#: network/netconnect.pm:1251 standalone/drakconnect:685
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "গেটওয়ে ঠিকানা 1.2.3.4-এর মত হতে হবে"
-
-#: network/netconnect.pm:1264
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-"যদি চায়, তাহলে একটি Zeroconf হোস্টনেম দিন।\n"
-"এটি আপনার মেশিনের নাম যা ব্যবহার করে নেটওয়ার্ক যা করে দিতে \n"
-"পারে না সেই রিসোর্স ভাগাভাগিতে সাহায্য করবে।\n"
-"এটি বেশিরভাগ নেটওয়ার্কের ক্ষেত্রে জরুরী নয়।"
-
-#: network/netconnect.pm:1268
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Zeroconf হোস্টের নাম"
-
-#: network/netconnect.pm:1271
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "Zeroconf হোস্টের নামে অবশ্যই a থাকবে না ।"
-
-# সাম
-# বুট হবার সাথে সাথে
-#: network/netconnect.pm:1281
-#, c-format
-msgid "Do you want to allow users to start the connection?"
-msgstr "আপনি কি ব্যবহারকারীদের সংযোগ স্থাপন শুরু করতে দিতে চান?"
-
-#: network/netconnect.pm:1294
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "আপনি কি বুট হবার সাথে সাথে সংযোগ স্থাপন করতে চান?"
-
-#: network/netconnect.pm:1310
-#, c-format
-msgid "Automatically at boot"
-msgstr "বুট এর সময় সয়ংক্রিয় ভাবে"
-
-#: network/netconnect.pm:1312
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr "সিস্টেম ট্রে'তে নেট অ্যাপলেট ব্যবহার করে"
-
-#: network/netconnect.pm:1314
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr "হাতে হাতে (ইন্টারফেস এখনও বুট হওয়ার সময় সক্রিয় হবে)"
-
-#: network/netconnect.pm:1323
-#, c-format
-msgid "How do you want to dial this connection?"
-msgstr "আপনি কিভাবে ডায়াল করে এই সংযোগ স্থাপন করতে চান?"
-
-#: network/netconnect.pm:1336
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "আপনি কি এখন ইন্টার্নেটের সাথে সংযুক্ত হবার চেষ্টা করবেন?"
-
-#: network/netconnect.pm:1344 standalone/drakconnect:1023
-#, c-format
-msgid "Testing your connection..."
-msgstr "আপনার কানেকশন পরীক্ষা করা হচ্ছে..."
-
-#: network/netconnect.pm:1369
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "সিস্টেম এখন ইন্টারনেটে সংযুক্ত হবে।"
-
-#: network/netconnect.pm:1370
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "নিরাপত্তা কারণে, এটা এখন বিচ্ছিন্ন হবে।"
-
-#: network/netconnect.pm:1371
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"সিস্টেম ইন্টারনেটে সংযুক্ত আছে বলে মনে হয় না।\n"
-"আপনার সংযুক্তি পুনরায় কন্‌ফিগার করার চেষ্টা করুন।"
-
-#: network/netconnect.pm:1386
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-"অভিনন্দন, নেটওয়ার্ক এবং ইন্টারনেট কন্‌ফিগারেশন শেষ হয়ে গেছে।\n"
-"।\n"
-
-#: network/netconnect.pm:1389
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"এটা হয়ে যাবার পর, আমরা সুপারিশ করি যে হোস্টনেমের সংক্রান্ত সমস্যাগুলো এড়ানোর জন্য "
-"আপনার X এনভায়রনমেন্ট পুনরায় চালু করুন।"
-
-#: network/netconnect.pm:1390
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-"কন্‌ফিগারেশনের সময় সমস্যা হয়ে গেছে।\n"
-"net_monitor বা mcc এর মাধ্যমে আপনার সংযুক্ত পরীক্ষা করুন। যদি আপনার সংযুক্তি কাজ না "
-"করে, তাহলে আপনাকে পুনরায় কন্‌ফিগারেশন করতে হবে।"
-
-#: network/netconnect.pm:1402
-#, c-format
-msgid "(detected on port %s)"
-msgstr "(%s পোর্টে সনাক্ত হয়েছে)"
-
-# -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected %s)"
-msgstr "(%s সনাক্ত হয়েছে)"
-
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected)"
-msgstr "(সনাক্ত হয়েছে)"
-
-#: network/netconnect.pm:1405
-#, c-format
-msgid "Network Configuration"
-msgstr "নেটওয়ার্ক কনফিগারেশন"
-
-#: network/netconnect.pm:1406
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"কারণ আপনি একটি নেটওয়ার্ক ইনস্টল করছেন, আপনার নেটওয়ার্ক ইতিমধ্যেই কন্‌ফিগার করা "
-"আছে।\n"
-"কন্‌ফিগারেশন বজায় রাখতে ঠিক আছে'তে ক্লিক করুন, অথবা আপনার ইন্টারনেট এবং নেটওয়ার্ক "
-"সংযুক্তি পুনরায়পুনরায় কন্‌ফিগার করতে বাতিল ক্লিক করুন।\n"
-
-#: network/netconnect.pm:1409
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr "নোটওয়ার্কের রিষ্টার্টের প্রয়োজন। আপনি কি রি-ষ্টার্ট করতে চান?"
-
-#: network/netconnect.pm:1410
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"নেটওয়ার্ক রি-ষ্টার্ট করার সময় একটি সমস্যা হয়েছে: \n"
-"\n"
-"%s"
-
-#: network/netconnect.pm:1411
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-"আপনি এখন %s সংযোগ কনফিগার করতে যাচ্ছেন।\n"
-"\n"
-"\n"
-" অগ্রসর হবার জন্য \"%s\" চাপুন।"
-
-#: network/netconnect.pm:1412
-#, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr "কনফিগারেশন সম্পূর্ন হয়েছে, আপনি কি সেটিংগুলি প্রয়োগ করতে চান?"
-
-#: network/netconnect.pm:1413
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"আপনি ইন্টারনেটের সংযুক্তির বিভিন্ন উপায় কন্‌ফিগার করেছেন।\n"
-"যেটি আপনি ব্যবহার করতে চান বেছে নিন।\n"
-"\n"
-
-#: network/netconnect.pm:1414
-#, c-format
-msgid "Internet connection"
-msgstr "ইন্টারনেট সংযোগ"
-
-#: network/netconnect.pm:1428
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-"একটি অনাকাঙ্খিত ভুল ঘটে গেছে:\n"
-"%s"
-
-#: network/network.pm:411
-#, c-format
-msgid "Proxies configuration"
-msgstr "প্রক্সিসমূহের কনফিগারেশন"
-
-#: network/network.pm:412
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-
-#: network/network.pm:413
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP প্রক্সি"
-
-#: network/network.pm:414
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: network/network.pm:415
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: network/network.pm:416
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP প্রক্সি"
-
-#: network/network.pm:420
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "প্রক্সি http://..... হওয়া উচিত্‍‌"
-
-#: network/network.pm:421
-#, c-format
-msgid "Proxy should be https?://..."
-msgstr ""
-
-#: network/network.pm:422
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URL 'ftp:' অথবা 'http:' দিয়ে শুরু হওয়া উচিত্‍‌"
-
-#: network/shorewall.pm:55
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-"অনুগ্রহ করে ইন্টারনেটে সংযুক্ত ইন্টারফেসটির নাম দিন।\n"
-"\n"
-"যেমন:\n"
-"\t\tppp+ মডেম বা ডি-এস-এল সঙযুক্তির জন্য, \n"
-"\t\teth0, বা ক্যাবল সংযুক্তির জন্য eth1, \n"
-"\t\tippp+ একটি isdn সংযুক্তির জন্য।\n"
-
-#: network/thirdparty.pm:232
-#, fuzzy, c-format
-msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
-msgstr ""
-"আপনার Alcatel-এর microcode প্রয়োজন।\n"
-"এটা ডাউনলোড করতে পারবেন এই ঠিকানা থেকে:\n"
-"%s\n"
-"এবং mgmt.o-টি /usr/share/speedtouch-এ কপি করে দিন"
-
-#: network/thirdparty.pm:241
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-"বাইনারি ড্রাইভার ডিস্ট্রিবিউশন সমস্যার জন্য ECI Hi-Focus মডেম সমর্থন নেই।\n"
-"\n"
-"আপনি http://eciadsl.flashtux.org/ থেকে ড্রাইভার পেতে পারেন"
-
-#: network/thirdparty.pm:321
-#, fuzzy, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "%s প্যাকেজগুলি ইনস্টল করা গেলোনা!"
-
-#: network/thirdparty.pm:329
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr ""
-
-#: network/thirdparty.pm:330
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-
-#: network/thirdparty.pm:332
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-
-#: network/thirdparty.pm:372
-#, fuzzy, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "আপনার সিস্টেম থেকে ফন্ট মুছে ফেলুন"
-
-#: network/thirdparty.pm:374
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr ""
-
-#: network/thirdparty.pm:384
-#, c-format
-msgid "Insert floppy"
-msgstr "ফ্লপি প্রবেশ করান"
-
-# বহু কথা বলতে হচ্ছে। ব্যবহারকারী হাঁফসে যাবে ;)
-#: network/thirdparty.pm:385
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"%s ড্রাইভে FAT ফরম্যাট করা একটি ফ্লপি প্রবেশ করান যার রুট ডিরেক্টরিতে %s আছে এবং %"
-"s চাপুন"
-
-#: network/thirdparty.pm:395
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "ফ্লপি ব্যবহার করা যাচ্ছেনা, %s ডিভাইস মাউন্ট করা সম্ভব হয়নি"
-
-#: network/thirdparty.pm:405
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-"আপনার Alcatel-এর microcode প্রয়োজন।\n"
-"আপনি ফ্লপি দিয়ে বা উইন্ডোজ পার্টিশন থেকে এখন এটা সরবরাহ করতে পারেন,\n"
-"বা পরে করার জন্য এখন উপেক্ষা করতে পারেন।"
-
-#: network/thirdparty.pm:409 network/thirdparty.pm:411
-#, c-format
-msgid "Use a floppy"
-msgstr "একটি ফ্লপি ব্যবহার করো"
-
-#: network/thirdparty.pm:409
-#, c-format
-msgid "Use my Windows partition"
-msgstr "আমার উইন্ডোজ পার্টিশন ব্যবহার করো"
-
-#: network/thirdparty.pm:419
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "ফার্মওয়্যার কপি ব্যার্থ হয়োছে, %s ফাইলটি পাওয়া যায়নি"
-
-#: network/thirdparty.pm:424 standalone/drakautoinst:250
-#: standalone/drakvpn:888 standalone/scannerdrake:422
-#, c-format
-msgid "Congratulations!"
-msgstr "অভিনন্দন!"
-
-#: network/thirdparty.pm:424
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "ফার্মওয়্যার কপি সফল হয়েছে"
-
-#: network/thirdparty.pm:493
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr ""
-
-#: network/thirdparty.pm:498
-#, fuzzy, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "অনুগ্রহ করে অপেক্ষা করুন, ডিভাইসগুলি সনাক্ত এবং কনফিগার করা হচ্ছে..."
-
-#: network/wireless.pm:8
-#, c-format
-msgid "Open WEP"
-msgstr ""
-
-#: network/wireless.pm:9
-#, c-format
-msgid "Restricted WEP"
-msgstr ""
-
-#: network/wireless.pm:10
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr ""
-
-#: partition_table.pm:391
+#: partition_table.pm:390
#, c-format
msgid "mount failed: "
msgstr "মাউন্ট হয়নি:"
-#: partition_table.pm:496
+#: partition_table.pm:500
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "এই প্লাটফর্মে এক্সটেনডেড পার্টিশন সাপোর্ট করেনা"
-#: partition_table.pm:514
+#: partition_table.pm:518
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
@@ -11235,22 +4956,27 @@ msgstr ""
"একমাত্র সমাধান হচ্ছে আপনার প্রাইমারি পার্টিশনের ত্রুটিকে Extended পার্টিশনে সরিয়ে "
"নেয়া। "
-#: partition_table.pm:605
+#: partition_table.pm:597
+#, c-format
+msgid "Error reading file %s"
+msgstr "%s ফাইল পড়াতে ত্রুটি"
+
+#: partition_table.pm:604
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "%s ফাইল থেকে পুনরায় সংরক্ষণ করতে ব্যর্থ হয়েছে: %s"
-#: partition_table.pm:607
+#: partition_table.pm:606
#, c-format
msgid "Bad backup file"
msgstr "নষ্ট ব্যাকআপ ফাইল"
-#: partition_table.pm:627
+#: partition_table.pm:626
#, c-format
msgid "Error writing to file %s"
msgstr "%s ফাইলে লিখতে সমস্যা হয়েছে"
-#: partition_table/raw.pm:253
+#: partition_table/raw.pm:264
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
@@ -11263,3582 +4989,48 @@ msgstr ""
"এর মানে হচ্ছে ডিস্কে কোন কিছু লিখতে গেলে তা বিভিন্ন রকম, সমস্যাযুক্ত ডাটায়গিয়ে শেষ "
"হয়।"
-#: pkgs.pm:21
-#, c-format
-msgid "must have"
-msgstr "অবশ্যই থাকতে হবে"
-
-#: pkgs.pm:22
-#, c-format
-msgid "important"
-msgstr "জরুরী"
-
-#: pkgs.pm:23
-#, c-format
-msgid "very nice"
-msgstr "খুবই সুন্দর"
-
-#: pkgs.pm:24
-#, c-format
-msgid "nice"
-msgstr "সুন্দর"
-
-#: pkgs.pm:25
-#, c-format
-msgid "maybe"
-msgstr "হয়তোবা"
-
-# সাম
-#: pkgs.pm:474
-#, c-format
-msgid "Downloading file %s..."
-msgstr "%s ফাইল ডাউনলোড করা হচ্ছে..."
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on %s)"
-msgstr "(%s -এ)"
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on this machine)"
-msgstr "(এই মেশিনে)"
-
-#: printer/cups.pm:117 standalone/printerdrake:200
-#, c-format
-msgid "Configured on other machines"
-msgstr "অন্য মেশিনে কনফিগার করা রয়েছে"
-
-#: printer/cups.pm:119
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "CUPS সার্ভারে \"%s\""
-
-#: printer/cups.pm:119 printer/printerdrake.pm:4909
-#: printer/printerdrake.pm:4919 printer/printerdrake.pm:5078
-#: printer/printerdrake.pm:5089 printer/printerdrake.pm:5303
-#, c-format
-msgid " (Default)"
-msgstr "(স্বাভাবিক)"
-
-#: printer/data.pm:67
-#, c-format
-msgid "PDQ - Print, Do not Queue"
-msgstr "PDQ - প্রিন্ট করো, সারিতে রাখবেনা"
-
-#: printer/data.pm:68
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: printer/data.pm:80
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - লাইন প্রিন্টার ডেমন"
-
-#: printer/data.pm:81
-#, c-format
-msgid "LPD"
-msgstr "LPD"
-
-#: printer/data.pm:102
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR নতুন প্রজন্ম"
-
-#: printer/data.pm:103
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
-
-#: printer/data.pm:128
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - সাধারণ ইউনিক্স প্রিন্টিং সিস্টেম"
-
-#: printer/data.pm:158
-#, c-format
-msgid "CUPS - Common Unix Printing System (remote server)"
-msgstr "CUPS - সাধারণ ইউনিক্স প্রিন্টিং সিস্টেম (দুরবর্তী সার্ভার)"
-
-#: printer/data.pm:159
-#, c-format
-msgid "Remote CUPS"
-msgstr "দূরবর্তী CUPS সার্ভার"
-
-#: printer/detect.pm:168 printer/detect.pm:263 printer/detect.pm:498
-#: printer/detect.pm:571 printer/main.pm:330 printer/main.pm:692
-#: printer/main.pm:1815 printer/printerdrake.pm:960
-#: printer/printerdrake.pm:1120 printer/printerdrake.pm:2448
-#: printer/printerdrake.pm:4004
-#, c-format
-msgid "Unknown model"
-msgstr "অপরিচিত মডেল"
-
-#: printer/main.pm:24
-#, c-format
-msgid "Local printer"
-msgstr "স্থানীয় প্রিন্টার"
-
-#: printer/main.pm:25
-#, c-format
-msgid "Remote printer"
-msgstr "দূরবর্তী প্রিন্টার"
-
-#: printer/main.pm:26
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "দূরবর্তী CUPS সার্ভারে প্রিন্টার"
-
-#: printer/main.pm:27 printer/printerdrake.pm:1360
-#: printer/printerdrake.pm:1899
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "দূরবর্তী lpd সার্ভারে প্রিন্টার"
-
-#: printer/main.pm:28
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "নেটওয়ার্ক প্রিন্টার (TCP/Socket)"
-
-#: printer/main.pm:29
-#, fuzzy, c-format
-msgid "Printer on SMB/Windows server"
-msgstr "SMB/উইন্ডোজ 95/98/NT সার্ভারে প্রিন্টার"
-
-#: printer/main.pm:30
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "NetWare সার্ভারে প্রিন্টার"
-
-#: printer/main.pm:31 printer/printerdrake.pm:1903
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "প্রিন্টার যন্ত্রের ইউ-আর-আই লিখুন"
-
-#: printer/main.pm:32
-#, c-format
-msgid "Pipe job into a command"
-msgstr "একটি কমান্ডে পাইপ (pipe) কাজ(job)"
-
-#: printer/main.pm:43
-#, c-format
-msgid "recommended"
-msgstr "পরামর্শ দেওয়া হচ্ছে"
-
-#: printer/main.pm:355 standalone/printerdrake:199
-#, c-format
-msgid "Configured on this machine"
-msgstr "এই মেশিনে কনফিগার করা রয়েছে"
-
-#: printer/main.pm:361 printer/printerdrake.pm:1445
-#, c-format
-msgid " on parallel port #%s"
-msgstr "%s নম্বর প্যারালাল পোর্টে"
-
-#: printer/main.pm:364 printer/printerdrake.pm:1448
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", ইউএসবি প্রিন্টার #%s"
-
-#: printer/main.pm:366
-#, c-format
-msgid ", USB printer"
-msgstr ", ইউএসবি প্রিন্টার"
-
-# sam
-#: printer/main.pm:370
-#, c-format
-msgid ", HP printer on a parallel port"
-msgstr ", প্যারালাল পোর্টে HP প্রিন্টার"
-
-# sam
-#: printer/main.pm:372
-#, c-format
-msgid ", HP printer on USB"
-msgstr ", USB পোর্টে HP প্রিন্টার"
-
-# sam
-#: printer/main.pm:374
-#, c-format
-msgid ", HP printer on HP JetDirect"
-msgstr ", HP JetDirect এ HP প্রিন্টার"
-
-# sam
-#: printer/main.pm:376
-#, c-format
-msgid ", HP printer"
-msgstr ", HP প্রিন্টার"
-
-#: printer/main.pm:382
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", %s নম্বর প্যারালাল পোর্টে বিবিধ ক্ষমতা সম্পন্ন ডিভাইস"
-
-#: printer/main.pm:385
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", প্যারালাল পোর্টে বিবিধ ক্ষমতা সম্পন্ন ডিভাইস"
-
-#: printer/main.pm:387
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", ইউএসবি-তে বিবিধ ক্ষমতা সম্পন্ন ডিভাইস"
-
-#: printer/main.pm:389
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", HP JetDirect-এ বিবিধ ক্ষমতা সম্পন্ন ডিভাইস"
-
-#: printer/main.pm:391
-#, c-format
-msgid ", multi-function device"
-msgstr ", বিবিধ ক্ষমতা সম্পন্ন ডিভাইস"
-
-#: printer/main.pm:395
-#, c-format
-msgid ", printing to %s"
-msgstr ", প্রিন্টসমূহ %s-এ"
-
-#: printer/main.pm:398
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr " \"%s\" LPD সার্ভারে, \"%s\" প্রিন্টার"
-
-#: printer/main.pm:401
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", \"%s\" টিসিপি/আই-পি হোস্ট, %s পোর্ট"
-
-#: printer/main.pm:406
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr " \"%s\" SMB/উইন্ডোজ সার্ভারে, \"%s\" ভাগাভাগি"
-
-#: printer/main.pm:411
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " \"%s\" নোভেল সার্ভারে, \"%s\" প্রিন্টার"
-
-#: printer/main.pm:414
-#, c-format
-msgid ", using command %s"
-msgstr ", %s কমান্ড ব্যবহার করছে"
-
-#: printer/main.pm:429
-#, c-format
-msgid "Parallel port #%s"
-msgstr "প্যারালাল পোর্ট #%s"
-
-#: printer/main.pm:432 printer/printerdrake.pm:1466
-#: printer/printerdrake.pm:1493 printer/printerdrake.pm:1508
-#, c-format
-msgid "USB printer #%s"
-msgstr "ইউএসবি প্রিন্টার #%s"
-
-#: printer/main.pm:434
-#, c-format
-msgid "USB printer"
-msgstr "ইউএসবি প্রিন্টার"
-
-# sam
-#: printer/main.pm:438
-#, c-format
-msgid "HP printer on a parallel port"
-msgstr "প্যারালাল পোর্টে HP প্রিন্টার"
-
-# sam
-#: printer/main.pm:440
-#, c-format
-msgid "HP printer on USB"
-msgstr "USB পোর্টে HP প্রিন্টার"
-
-# sam
-#: printer/main.pm:442
-#, c-format
-msgid "HP printer on HP JetDirect"
-msgstr "HP JetDirect এ HP প্রিন্টার"
-
-# sam
-#: printer/main.pm:444
-#, c-format
-msgid "HP printer"
-msgstr "HP প্রিন্টার"
-
-#: printer/main.pm:450
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "%s নম্বর প্যারালাল পোর্টে বিবিধ ক্ষমতা সম্পন্ন ডিভাইস"
-
-#: printer/main.pm:453
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "প্যারালাল পোর্টে বিবিধ ক্ষমতা সম্পন্ন ডিভাইস"
-
-#: printer/main.pm:455
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "ইউএসবি-তে বিবিধ ক্ষমতা সম্পন্ন ডিভাইস"
-
-#: printer/main.pm:457
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "HP JetDirect-এ বিবিধ ক্ষমতা সম্পন্ন ডিভাইস"
-
-#: printer/main.pm:459
-#, c-format
-msgid "Multi-function device"
-msgstr "বিবিধ ক্ষমতা সম্পন্ন ডিভাইস"
-
-#: printer/main.pm:463
-#, c-format
-msgid "Prints into %s"
-msgstr "প্রিন্টসমূহ %s-এ"
-
-#: printer/main.pm:466
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "\"%s\" LPD সার্ভার, \"%s\" প্রিন্টার"
-
-#: printer/main.pm:469
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "\"%s\" টিসিপি/আই-পি হোস্ট, %s পোর্ট"
-
-#: printer/main.pm:474
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "\"%s\" SMB/উইন্ডোজ সার্ভার, \"%s\" ভাগাভাগি"
-
-#: printer/main.pm:479
-#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "\"%s\" নোভেল সার্ভার, \"%s\" প্রিন্টার"
-
-#: printer/main.pm:482
-#, c-format
-msgid "Uses command %s"
-msgstr "ব্যবহারকারীদের কমান্ড %s"
-
-#: printer/main.pm:484
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
-
-#: printer/main.pm:689 printer/printerdrake.pm:1047
-#: printer/printerdrake.pm:3142
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Raw প্রিন্টার (কোন ড্রাইভার ছাড়া)"
-
-#: printer/main.pm:1309 printer/printerdrake.pm:211
-#: printer/printerdrake.pm:223
-#, c-format
-msgid "Local network(s)"
-msgstr "লোকাল নেটওয়ার্ক(সমূহ)"
-
-#: printer/main.pm:1311 printer/printerdrake.pm:227
-#, c-format
-msgid "Interface \"%s\""
-msgstr "ইন্টার্ফেস \"%s\""
-
-#: printer/main.pm:1313
-#, c-format
-msgid "Network %s"
-msgstr "নেটওয়ার্ক %s"
-
-#: printer/main.pm:1315
-#, c-format
-msgid "Host %s"
-msgstr "হোস্ট %s"
-
-#: printer/main.pm:1344
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (পোর্ট %s)"
-
-#: printer/main.pm:1945 printer/main.pm:2100
-#, c-format
-msgid "user-supplied"
-msgstr ""
-
-#: printer/main.pm:1949 printer/main.pm:2104
-#, c-format
-msgid "NEW"
-msgstr ""
-
-# সাম:
-# self-extracting?
-# decompress?
-# = লিপি
-#: printer/printerdrake.pm:24
-#, c-format
-msgid ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"decompressing the self-extracting '.exe' file with the 'unzip' utility and "
-"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
-"printer' directory. There it will be found by the automatic uploader script "
-"and uploaded whenever the printer is connected and turned on.\n"
-msgstr ""
-"HP LaserJet ১০০০ চালু করার পর এর ফার্মওয়্যার আপলোড করা প্রয়োজন। HP ওয়েব সাইট "
-"থেকে উইন্ডোজ ড্রাইভার প্যাকেজটি ডাউনলোড করুন (প্রিন্টারের CD র ফার্মওয়্যারটি অকেজো)। "
-"ফার্মওয়্যার ফাইলটি বের করতে, self-extracting '.exe' ফাইলটি 'unzip' ইউটিলিটি "
-"দিয়ে ডিকম্প্রেস করুন এবং 'sihp1000.img' ফাইলটি খুঁজে বের করুন। তারপর এ ফাইলটি '/"
-"etc/printer' ডিরেক্টরিতে কপি করুন। সেখানে একটি স্বয়ংক্রিয় আপলোডার স্ক্রিপ্ট দ্বারা "
-"এটি চিহ্নিত হবে এবং আপলোড হয়ে যাবে যখনি প্রিন্টারটি চালু এবং সংযুক্ত করা হয়।\n"
-
-#: printer/printerdrake.pm:67
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "CUPS প্রিন্টার কনফিগারেশন"
-
-#: printer/printerdrake.pm:68
-#, c-format
-msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessible by remote machines and by which remote machines."
-msgstr ""
-"এখানে এই মেশিনে যুক্ত প্রিন্টারগুলো রিমোট মেশিন কর্তৃক যার মাধ্যমে রিমোট মেশিন কর্তৃক "
-"ব্যবহার করা যাবে কিনা বেছে নিতে পারেন।"
-
-#: printer/printerdrake.pm:69
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-"এখানে আপনি সিদ্ধান্ত নিতে পারেন যে রিমোট মেশিনের প্রিন্টারগুলো এই মেশিন থেকে "
-"স্বয়ংক্রিয়ভাবে পাওয়া যাবে কিনা।"
-
-#: printer/printerdrake.pm:72 printer/printerdrake.pm:506
-#: printer/printerdrake.pm:4542
-#, c-format
-msgid "Remote CUPS server and no local CUPS daemon"
-msgstr "রিমোট CUPS সার্ভার এবং কোন স্থানীয় CUPS daemon নেই"
-
-#: printer/printerdrake.pm:75
-#, c-format
-msgid "On"
-msgstr "চালু"
-
-#: printer/printerdrake.pm:77 printer/printerdrake.pm:498
-#: printer/printerdrake.pm:525
-#, c-format
-msgid "Off"
-msgstr "বন্ধ"
-
-# সাম: এই ফাইল এ daemon এর কয়েকটা অনুবাদ:
-# ডেমন daemon ড্যেমন ডেইমন ডেমন্‌ ....
-# i am lost! :D
-#
-# correct translation of 'print queues'?
-#: printer/printerdrake.pm:78 printer/printerdrake.pm:507
-#, c-format
-msgid ""
-"In this mode the local CUPS daemon will be stopped and all printing requests "
-"go directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-"এই মোডে স্থানীয় CUPS daemon বন্ধ করে দেয়া হবে এবং সব প্রিন্ট অনুরোধ সরাসরি "
-"নিম্নল্লেখিত সার্ভারে যাবে। দ্রষ্টব্য: এই সময়ে স্থানীয় প্রিন্ট সারি নির্দিষ্ট করার কোন "
-"ব্যবস্থা নেই এবং যদি উল্লেখিত সার্ভার নিষ্ক্রিয় থাকে তবে এই মেশিন থেকে প্রিন্ট সম্ভব "
-"হবে না।"
-
-#: printer/printerdrake.pm:84
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "এই মেশিনের প্রিন্টারগুলো অন্যান্য কম্পিউটার থেকে পাওয়া যাবে"
-
-#: printer/printerdrake.pm:89
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "রিমোট মেশিনে প্রাপ্ত প্রিন্টারগুলো স্বয়ংক্রিয়ভাবে খুজে বের করবে"
-
-#: printer/printerdrake.pm:94
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "হোস্ট/নেটওয়ার্কে প্রিন্টার ভাগাভাগি: "
-
-#: printer/printerdrake.pm:96
-#, c-format
-msgid "Custom configuration"
-msgstr "হাতে হাতে কনফিগারেশন"
-
-#: printer/printerdrake.pm:101 standalone/scannerdrake:610
-#: standalone/scannerdrake:627
-#, c-format
-msgid "No remote machines"
-msgstr "দূরবর্তী কোন মেশিন নেই"
-
-#: printer/printerdrake.pm:112
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "অতিরিক্ত CUPS সার্ভার: "
-
-# সাম
-#: printer/printerdrake.pm:119
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"আপনার স্থানীয় নেটওয়ার্কে অবস্থিত রিমোট CUPS সার্ভারের প্রিন্টারগুলোতে প্রবেশাধিকারের "
-"জন্য \"রিমোট মেশিনে প্রাপ্ত প্রিন্টারগুলো স্বয়ংক্রিয়ভাবে খুজে বের করবে\" অপশনটি চালু "
-"করতে হবে; নিজস্ব প্রিন্টারগুলো সম্বন্ধে CUPS সার্ভারগুলো আপনার মেশিনকে স্বয়ংক্রিয়ভাবে "
-"অবহিত করবে। আপনার মেশিনে বর্তমানে চিহ্নিত সব প্রিন্টার, Printerdrake মূল উইন্ডোর "
-"\"রিমোট প্রিন্টারসমূহ\" অংশে তালিকাভুক্ত আছে। যদি আপনার CUPS সার্ভার(সমূহ) আপনার "
-"স্থানীয় নেটওয়ার্কে অবস্থিত না হয়, আপনাকে সার্ভার(সমূহ) থেকে প্রিন্টার সম্পর্কীয় তথ্য "
-"পেতে হলে IP অ্যাড্রেস এবং চাইলে পোর্ট নাম্বার দিতে হবে।"
-
-#: printer/printerdrake.pm:127
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "জাপানী টেক্সট ছাপানোর মোড"
-
-# সাম
-# accentuate = d ঝোঁক‌-চিহ্ন সম্বলিত
-#: printer/printerdrake.pm:128
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in Japanese language. Only "
-"use this function if you really want to print text in Japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print Japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"এটি চালু করলে আপনি জাপানী ভাষায় সাধারন টেক্সট ফাইল প্রিন্ট করতে পারবেন। এই "
-"ফাংশানটি শুধুমাত্র জাপানী অক্ষরে টেক্সট প্রিন্ট করতে ব্যবহার করুন, কারন এটি সক্রিয় "
-"থাকলে আপনি ঝোঁক‌-চিহ্ন সম্বলিত ল্যাটিন অক্ষরসমূহ প্রিন্ট করতে পারবেন না এবং মার্জিন, "
-"অক্ষরের সাইজ ইত্যাদি বদলাতে পারবেন না। এই সেটিংটি শুধুমাত্র এই মেশিনে কনফিগারকৃত "
-"প্রিন্টারের ক্ষেত্রে প্রযোজ্য। আপনি যদি একটি রিমেট মেশিনে সেটআপ করা প্রিন্টার দিয়ে "
-"জাপানী অক্ষর প্রিন্ট করতে চান তবে আপনাকে সেই রিমেট মেশিনে এ ফাংশানটি সক্রিয় করতে "
-"হবে।"
-
-#: printer/printerdrake.pm:135
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "CUPS কন্‌ফিগারেশনে স্বয়ংক্রিয় শুদ্ধতা"
-
-#: printer/printerdrake.pm:137
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-
-#: printer/printerdrake.pm:161 printer/printerdrake.pm:236
-#, c-format
-msgid "Sharing of local printers"
-msgstr "লোকাল প্রিন্টারের শেয়ারিং"
-
-#: printer/printerdrake.pm:162
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr "এই মেশিনগুলোতে এবং নেটওয়ার্কে স্থানীয়ভাবে সংযুক্ত প্রিন্টারনেট"
-
-#: printer/printerdrake.pm:173
-#, c-format
-msgid "Add host/network"
-msgstr "হোস্ট/নেটওয়ার্ক যোগ করো"
-
-#: printer/printerdrake.pm:179
-#, c-format
-msgid "Edit selected host/network"
-msgstr "নির্বাচিত হোস্ট/নেটওয়ার্ক সম্পদনা করেন"
-
-#: printer/printerdrake.pm:188
-#, c-format
-msgid "Remove selected host/network"
-msgstr "নির্বাচিত হোস্ট/নেটওয়ার্ক মুছে ফেলুন"
-
-#: printer/printerdrake.pm:219 printer/printerdrake.pm:229
-#: printer/printerdrake.pm:241 printer/printerdrake.pm:248
-#: printer/printerdrake.pm:279 printer/printerdrake.pm:297
-#, c-format
-msgid "IP address of host/network:"
-msgstr "হোস্ট/নেটওয়ার্কের IP ঠিকানা"
-
-#: printer/printerdrake.pm:237
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr "যেখানে স্থানীয় প্রিন্টারগুলো সহজে পাওয়া যায় সেইনেটওয়ার্ক বা হোস্ট বেছে নিন:"
-
-#: printer/printerdrake.pm:244
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "হোস্ট/নেটওয়ার্ক আই-পি অ্যাড্রেস হারিয়ে গেছে।"
-
-#: printer/printerdrake.pm:252
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "এখানে দেয়া হোস্ট/নেটওয়ার্ক আই-পি সঠিক নয়।\n"
-
-#: printer/printerdrake.pm:253 printer/printerdrake.pm:429
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "সঠিক IP সমুহের নমুনা:\n"
-
-#: printer/printerdrake.pm:277
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr "এই হোস্ট/নেটওয়ার্ক ইতিমধ্যেই তালিকায় আছে, পুনরায় যুক্ত করা যাবে না।\n"
-
-#: printer/printerdrake.pm:346 printer/printerdrake.pm:416
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "রিমোট CUPS সার্ভার দিয়ে প্রিন্টারে প্রবেশ"
-
-#: printer/printerdrake.pm:347
-#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
-"আপনি যেই প্রিন্টারটি ব্হব্যবহার করতে চান তা CUPS সার্ভারে যুক্ত করুন। আপনাকে শুধু এটি "
-"করতে হবে যদি সার্ভার তাদের প্রিন্টারের তথ্য স্থানীয় নেটওয়ার্কে ছড়িয়ে না দেয়।"
-
-#: printer/printerdrake.pm:358
-#, c-format
-msgid "Add server"
-msgstr "সার্ভার যোগ করো"
-
-#: printer/printerdrake.pm:364
-#, c-format
-msgid "Edit selected server"
-msgstr "নির্বাচিত সার্ভারটি সম্পাদিত করো"
-
-#: printer/printerdrake.pm:373
-#, c-format
-msgid "Remove selected server"
-msgstr "নির্বাচিত সার্ভারটি মুছে ফেলো"
-
-#: printer/printerdrake.pm:417
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-"যেই সার্ভারের প্রিন্টার আপনি ব্যবহার করতে চান তার IP ঠিকানা এবং পোর্ট প্রবেশ করান।"
-
-#: printer/printerdrake.pm:418
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "কোন পোর্ট না দেয়া হলে, স্বাভাবিক ভাবে ৬৩১ ব্যবহার করা হবে।"
-
-#: printer/printerdrake.pm:422
-#, c-format
-msgid "Server IP missing!"
-msgstr "সার্ভারের IP নেই!"
-
-#: printer/printerdrake.pm:428
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "IP টি সঠিক নয়।\n"
-
-#: printer/printerdrake.pm:440 printer/printerdrake.pm:2133
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "পোর্ট নম্বর একটি সংখ্যা হতে হবে!"
-
-#: printer/printerdrake.pm:451
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "এই সার্ভারটি ইতিমধ্যেই তালিকায় উপস্হিত, একে আবার যোগ করা যাবে নাহ্।\n"
-
-#: printer/printerdrake.pm:462 printer/printerdrake.pm:2160
-#: standalone/drakups:249 standalone/harddrake2:52
-#, c-format
-msgid "Port"
-msgstr "পোর্ট"
-
-#: printer/printerdrake.pm:495 printer/printerdrake.pm:511
-#: printer/printerdrake.pm:526 printer/printerdrake.pm:530
-#: printer/printerdrake.pm:536
-#, c-format
-msgid "On, Name or IP of remote server:"
-msgstr "দূরবর্তী সার্ভারের নাম অথবা IP"
-
-#: printer/printerdrake.pm:514 printer/printerdrake.pm:4551
-#: printer/printerdrake.pm:4617
-#, c-format
-msgid "CUPS server name or IP address missing."
-msgstr "CUPS সার্ভার নাম বা IP অ্যাড্রেস হারিয়ে গেছে।"
-
-#: printer/printerdrake.pm:566 printer/printerdrake.pm:586
-#: printer/printerdrake.pm:811 printer/printerdrake.pm:880
-#: printer/printerdrake.pm:901 printer/printerdrake.pm:927
-#: printer/printerdrake.pm:1023 printer/printerdrake.pm:1065
-#: printer/printerdrake.pm:1075 printer/printerdrake.pm:1110
-#: printer/printerdrake.pm:2220 printer/printerdrake.pm:2490
-#: printer/printerdrake.pm:2524 printer/printerdrake.pm:2575
-#: printer/printerdrake.pm:2582 printer/printerdrake.pm:2621
-#: printer/printerdrake.pm:2663 printer/printerdrake.pm:2700
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2984
-#: printer/printerdrake.pm:2989 printer/printerdrake.pm:3137
-#: printer/printerdrake.pm:3248 printer/printerdrake.pm:3862
-#: printer/printerdrake.pm:3929 printer/printerdrake.pm:3978
-#: printer/printerdrake.pm:3981 printer/printerdrake.pm:4091
-#: printer/printerdrake.pm:4149 printer/printerdrake.pm:4221
-#: printer/printerdrake.pm:4242 printer/printerdrake.pm:4252
-#: printer/printerdrake.pm:4342 printer/printerdrake.pm:4437
-#: printer/printerdrake.pm:4443 printer/printerdrake.pm:4471
-#: printer/printerdrake.pm:4578 printer/printerdrake.pm:4687
-#: printer/printerdrake.pm:4707 printer/printerdrake.pm:4716
-#: printer/printerdrake.pm:4731 printer/printerdrake.pm:4932
-#: printer/printerdrake.pm:5407 printer/printerdrake.pm:5490
-#: standalone/printerdrake:75 standalone/printerdrake:590
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: printer/printerdrake.pm:567 printer/printerdrake.pm:4150
-#: printer/printerdrake.pm:4688
-#, c-format
-msgid "Reading printer data..."
-msgstr "প্রিন্টার তথ্য পড়া হচ্ছে..."
-
-#: printer/printerdrake.pm:587
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "CUPS পুনরায় আরম্ভ করছি..."
-
-#: printer/printerdrake.pm:614
-#, c-format
-msgid ""
-"Allow pop-up windows, printer setup and package installation may be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:616
-#, c-format
-msgid ""
-"No pop-up windows, printer setup and package installation cannot be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:622
-#, fuzzy, c-format
-msgid "Printer auto administration"
-msgstr "প্রিন্টার সংয়-সনাক্তকরণ"
-
-#: printer/printerdrake.pm:623
-#, c-format
-msgid ""
-"Here you can configure printer administration tasks which should be done "
-"automatically."
-msgstr ""
-
-#: printer/printerdrake.pm:626
-#, fuzzy, c-format
-msgid "Do automatic configuration of new printers"
-msgstr "স্বয়ংক্রিয়ভাবে পুনরায় কন্‌ফিগার"
-
-#: printer/printerdrake.pm:627 printer/printerdrake.pm:641
-#, fuzzy, c-format
-msgid "when a USB printer is connected and turned on"
-msgstr " (নিশ্চিত হোন যে আপনার সবগুলো প্রিন্টার সংযুক্ত এবং অন করা আছে)।\n"
-
-# সাম
-#: printer/printerdrake.pm:630
-#, fuzzy, c-format
-msgid "when Printerdrake is started"
-msgstr "এই প্রিন্টারটি নিষ্ক্রিয়"
-
-#: printer/printerdrake.pm:634
-#, c-format
-msgid "Mode for automatic printer setup:"
-msgstr ""
-
-#: printer/printerdrake.pm:640
-#, fuzzy, c-format
-msgid "Re-enable disabled printers"
-msgstr "উপস্থিত প্রিন্টারসমূহ"
-
-#: printer/printerdrake.pm:644
-#, fuzzy, c-format
-msgid "when the printing system is started"
-msgstr "প্রিন্টিং ব্যবস্থা পরিবর্তন করো"
-
-# সাম
-#: printer/printerdrake.pm:680
-#, fuzzy, c-format
-msgid "Communication error handling for the printer \"%s\""
-msgstr "প্রিন্টার \"%s\" ব্যবহার/রক্ষণাবেক্ষন করা হচ্ছে"
-
-#: printer/printerdrake.pm:682
-#, c-format
-msgid ""
-"Here you can configure how errors during the communication between your "
-"computer and the printer \"%s\" should be handled (for example if the "
-"printer is not turned on)."
-msgstr ""
-
-#: printer/printerdrake.pm:686
-#, fuzzy, c-format
-msgid "The number of retries should be an integer number of at least 1!"
-msgstr "পোর্ট নম্বর একটি সংখ্যা হতে হবে!"
-
-# সাম:
-# not sure if positive interger = প্রকৃত সংখ্যা...check out
-#: printer/printerdrake.pm:690
-#, fuzzy, c-format
-msgid "The delay between retries should be a positive integer number!"
-msgstr "টাইমআউট একটি ধনাত্মক প্রকৃত সংখ্যা হতে হবে!"
-
-# সাম
-#: printer/printerdrake.pm:701
-#, fuzzy, c-format
-msgid "Do not disable the printer"
-msgstr "প্রিন্টার নিষ্ক্রিয় করো"
-
-#: printer/printerdrake.pm:704
-#, c-format
-msgid "Retry infinitely often"
-msgstr ""
-
-#: printer/printerdrake.pm:707
-#, fuzzy, c-format
-msgid "Number of retries"
-msgstr "বাটনের নম্বর"
-
-#: printer/printerdrake.pm:712
-#, c-format
-msgid "Delay between retries (in sec)"
-msgstr ""
-
-#: printer/printerdrake.pm:745 printer/printerdrake.pm:765
-#, c-format
-msgid "Select Printer Connection"
-msgstr "প্রিন্টারের সংযোগ নির্বাচন করুন"
-
-#: printer/printerdrake.pm:746
-#, c-format
-msgid "How is the printer connected?"
-msgstr "প্রিন্টারটি কিভাবে সংযুক্ত আছে?"
-
-#: printer/printerdrake.pm:748
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"রিমোট CUPS সার্ভারের প্রিন্টারগুলো এখানে কন্‌ফিগার করার দরকার নেই; এই প্রিন্টারগুলো "
-"স্বয়ংক্রিয়ভাবে চিহ্নিত হবে।"
-
-#: printer/printerdrake.pm:751 printer/printerdrake.pm:4934
-#, c-format
-msgid ""
-"\n"
-"WARNING: No local network connection active, remote printers can neither be "
-"detected nor tested!"
-msgstr ""
-"\n"
-"সাবধানতা: কোন স্থানীয় নেটওয়ার্ক সংযুক্তি সক্রিয় নেই, রিমোট প্রিন্টার চিহ্নিত করা "
-"হয়নি বা পরীক্ষা করা হয়নি!"
-
-#: printer/printerdrake.pm:758
-#, c-format
-msgid ""
-"Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"
-msgstr ""
-"প্রিন্টার স্বয়ংক্রিয়-চিহ্নিত (স্থানীয়, টিসিপি/সকেট, এস-এম-বি প্রিন্টার, এবং যন্ত্রের "
-"URI)"
-
-# সাম
-#: printer/printerdrake.pm:760
-#, c-format
-msgid "Modify timeout for network printer auto-detection"
-msgstr "নেটওয়ার্ক প্রিন্টার স্বয়ংক্রিয়‌-সনাক্তকরণের টাইমআউট পরিবর্তন কর"
-
-# সাম
-#: printer/printerdrake.pm:766
-#, c-format
-msgid "Enter the timeout for network printer auto-detection (in msec) here. "
-msgstr "এখানে নেটওয়ার্ক প্রিন্টার স্বয়ংক্রিয়‌-সনাক্তকরণের টাইমআউট (মিলিসেকেন্ডে) দিন।"
-
-# সাম
-#: printer/printerdrake.pm:768
-#, c-format
-msgid ""
-"The longer you choose the timeout, the more reliable the detections of "
-"network printers will be, but the scan can take longer then, especially if "
-"there are many machines with local firewalls in the network. "
-msgstr ""
-"আপনি যত বেশী টাইমআউট দেবেন, নেটওয়ার্ক প্রিন্টার সনাক্তকরণ তত নির্ভরযোগ্য হবে। তবে "
-"তখন স্ক্যান করতে সময় বেশী লাগবে, বিশেষ করে যদি নেটওয়ার্কে স্থানীয় ফায়ারওয়াল "
-"সম্বলিত অনেক মেশিন থাকে। "
-
-# সাম:
-# not sure if positive interger = প্রকৃত সংখ্যা...check out
-#: printer/printerdrake.pm:772
-#, c-format
-msgid "The timeout must be a positive integer number!"
-msgstr "টাইমআউট একটি ধনাত্মক প্রকৃত সংখ্যা হতে হবে!"
-
-#: printer/printerdrake.pm:811
-#, c-format
-msgid "Checking your system..."
-msgstr "আপনার সিস্টেম নিরীক্ষা করা হচ্ছে..."
-
-#: printer/printerdrake.pm:829
-#, c-format
-msgid "and one unknown printer"
-msgstr "এবং একটি অপরিচিত প্রিন্টার"
-
-#: printer/printerdrake.pm:831
-#, c-format
-msgid "and %d unknown printers"
-msgstr "এবং %d অজানা প্রিন্টারসমূহ"
-
-#: printer/printerdrake.pm:835
-#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"নিম্নলিখিত প্রিন্টারগুলো\n"
-"\n"
-"%s%s\n"
-"আপনার সিস্টেমে সরাসরি সংযুক্ত আছে"
-
-#: printer/printerdrake.pm:837
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"নিম্নলিখিত প্রিন্টারটি\n"
-"\n"
-"%s%s\n"
-"আপনার সিস্টেমে সরাসরি সংযুক্ত আছে"
-
-#: printer/printerdrake.pm:838
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-"নিম্নলিখিত প্রিন্টারটি\n"
-"\n"
-"%s%s\n"
-"আপনার সিস্টেমে সরাসরি সংযুক্ত আছে"
-
-#: printer/printerdrake.pm:842
-#, c-format
-msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
-"\n"
-"আপনার সিস্টেমে সরাসরি যুক্ত একটি অজানা প্রিন্টার আছে"
-
-#: printer/printerdrake.pm:843
-#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
-"\n"
-"আপনার সিস্টেমে সরাসরি যুক্ত %d টি অজানা প্রিন্টার আছে"
-
-#: printer/printerdrake.pm:846
-#, c-format
-msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "আপনার সিস্টেমে সরাসরি যুক্ত কোন প্রিন্টার পাওয়া যায়নি"
-
-#: printer/printerdrake.pm:849
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr " (নিশ্চিত হোন যে আপনার সবগুলো প্রিন্টার সংযুক্ত এবং অন করা আছে)।\n"
-
-#: printer/printerdrake.pm:862
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
-"আপনি কি উপরে দেয়া প্রিন্টারগুলো থেকে অথবা স্থানীয় নেটওয়ার্কের প্রিন্টারগুলোকে "
-"ছাপানোর জন্য সক্রিয় করে রাখতে চান?\n"
-
-#: printer/printerdrake.pm:863
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr ""
-"আপনি কি স্থানীয় নেটওয়ার্কের প্রিন্টারগুলোকে ছাপানোর জন্য সক্রিয় করে রাখতে চান?\n"
-
-#: printer/printerdrake.pm:865
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "আপনি কি উপরে দেয়া প্রিন্টারগুলোকে ছাপানোর জন্য সক্রিয় করে রাখতে চান?\n"
-
-#: printer/printerdrake.pm:866
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "আপনি কি নিশ্চিত যে আপনি এই মেশিনে প্রিন্টিং সেটআপ করতে চান?\n"
-
-#: printer/printerdrake.pm:867
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
-"নোট: প্রিন্টার মডেল এবং প্রিন্টিং সিস্টেমের উপর নির্ভর করে %d মেগাবাইট অতিরিক্ত "
-"সফ্‌টওয়্যার ইনস্টল হবে।"
-
-#: printer/printerdrake.pm:884
-#, c-format
-msgid "Do not setup printer automatically now, and never do it again"
-msgstr ""
-
-#: printer/printerdrake.pm:928
-#, c-format
-msgid "Searching for new printers..."
-msgstr "নতুন প্রিন্টার খোঁজা হচ্ছে..."
-
-#: printer/printerdrake.pm:976
-#, c-format
-msgid "Do not setup printer automatically again"
-msgstr ""
-
-#: printer/printerdrake.pm:983
-#, fuzzy, c-format
-msgid "New printers found"
-msgstr "কোন প্রিন্টার পাওয়া যায়নি!"
-
-#: printer/printerdrake.pm:984
-#, fuzzy, c-format
-msgid "New printer found"
-msgstr "কোন প্রিন্টার পাওয়া যায়নি!"
-
-#: printer/printerdrake.pm:986
-#, c-format
-msgid ""
-"The following new printers were found and Printerdrake can automatically set "
-"them up for you. If you do not want to have all of them set up, unselect the "
-"ones which should be skipped, or click \"Cancel\" to set up none of them.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:987
-#, c-format
-msgid ""
-"The following new printer was found and printerdrake can automatically set "
-"it up for you. If you do not want to have it set up, unselect it, or click "
-"\"Cancel\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:988
-#, c-format
-msgid ""
-"Note that for certain printer models additional packages need to be "
-"installed. So keep your installation media handy.\n"
-msgstr ""
-
-# সাম: প্রিন্টার ?
-#: printer/printerdrake.pm:1024 printer/printerdrake.pm:1066
-#, c-format
-msgid "Configuring printer on %s..."
-msgstr "%s এ প্রিন্টার কনফিগার করা হচ্ছে..."
-
-#: printer/printerdrake.pm:1049
-#, c-format
-msgid "("
-msgstr "("
-
-#: printer/printerdrake.pm:1050
-#, c-format
-msgid " on "
-msgstr " -এ"
-
-#: printer/printerdrake.pm:1051 standalone/scannerdrake:137
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: printer/printerdrake.pm:1056 printer/printerdrake.pm:3149
-#, c-format
-msgid "Printer model selection"
-msgstr "প্রিন্টার মডেল নির্বাচন"
-
-#: printer/printerdrake.pm:1057 printer/printerdrake.pm:3150
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "আপনার কোন প্রিন্টার মডেল আছে?"
-
-#: printer/printerdrake.pm:1058
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-"\n"
-"\n"
-"আপনার %s প্রিন্টারটি কোন মডেলের Printerdrake তা বুঝতে পারছে না। অনুগ্রহ করে "
-"তালিকা থেকে সঠিক মডেল বেছে নিন।"
-
-#: printer/printerdrake.pm:1061 printer/printerdrake.pm:3155
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"যদি আপনার প্রিন্টার তালিকায় না থাকে, কাছাকাছি রকমের (প্রিন্টার ম্যানুয়াল দেখুন) "
-"অথবা একই ধরণের একটি বেছে নিন।"
-
-#: printer/printerdrake.pm:1076 printer/printerdrake.pm:4708
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "\"%s\" প্রিন্টার কনফিগার করা হচ্ছে..."
-
-#: printer/printerdrake.pm:1111
-#, c-format
-msgid ""
-"Now you have turned off automatic printer setup.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1112
-#, c-format
-msgid ""
-"You can turn it back on again by choosing \"%s\" -> \"%s\" in Printerdrake's "
-"main menu. "
-msgstr ""
-
-#: printer/printerdrake.pm:1112 printer/printerdrake.pm:4984
-#, fuzzy, c-format
-msgid "Configure Auto Administration"
-msgstr "দূর-নিয়ন্ত্রিত অ্যাডমিনিস্ট্রেশন"
-
-#: printer/printerdrake.pm:1113
-#, c-format
-msgid ""
-"There you can also choose in which situation automatic printer setup is done "
-"(On Printerdrake startup, on printing system startup, when connecting a new "
-"USB printer)."
-msgstr ""
-
-#: printer/printerdrake.pm:1261 printer/printerdrake.pm:1273
-#: printer/printerdrake.pm:1380 printer/printerdrake.pm:2401
-#: printer/printerdrake.pm:2460 printer/printerdrake.pm:2556
-#: printer/printerdrake.pm:4951 printer/printerdrake.pm:5138
-#, c-format
-msgid "Add a new printer"
-msgstr "একটি নতুন প্রিন্টার যোগ করো"
-
-# সাম
-#: printer/printerdrake.pm:1262
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"প্রিন্টার সেটআপ উইজার্ডে আপনাকে স্বাগতম!\n"
-"\n"
-"এ উইজার্ড আপনাকে যেকোন স্থানীয় বা দুরবর্তী প্রিন্টার যা কিনা এই মেশিন বা নেটওয়ার্কে "
-"অবস্থিত অনান্য মেশিনে ব্যবহৃত হবে, তা ইনস্টল করতে সাহায্য করবে।\n"
-"\n"
-"উইজার্ডটি আপনাকে প্রিন্টার সেটআপ করতে প্রয়োজনীয় সব তথ্য অনুরোধ করবে এবং আপনাকে "
-"প্রিন্টার ড্রাইভার, ড্রাইভার অপশনসমূহ এবং প্রিন্টার সংযোগের ধরন, এসব অপশন বেছে "
-"নেয়ার সুযোগ দেবে।"
-
-# সাম
-#: printer/printerdrake.pm:1275
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected. Also your network printer(s) and your Windows "
-"machines must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you do not "
-"need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"প্রিন্টার সেটআপ উইজার্ডে আপনাকে স্বাগতম!\n"
-"\n"
-"এ উইজার্ডটি আপনার কম্পিউটারে বা সরাসরি নেটওয়ার্কে বা কোন দুরবর্তী উইন্ডোজ মেশিনে "
-"সংযুক্ত প্রিন্টার(সমূহ) ইনস্টল করতে সাহায্য করবে।\n"
-"\n"
-"এই মেশিনে যদি কোন প্রিন্টার থেকে থাকে অনুগ্রহ করে তা প্লাগ ইন করুন এবং চালু করুন "
-"যাতে স্বয়ংক্রিয়ভাবে সনাক্তকৃত হতে পারে। আপনার নেটওয়ার্ক প্রিন্টার ও উইন্ডোজ "
-"মেশিনেগুলোও সংযুক্ত ও চালু থাকতে হবে।\n"
-"\n"
-"মনে রাখবেন, নেটওয়ার্ক প্রিন্টারগলো সনাক্ত করতে সরাসরি সংযুক্ত প্রিন্টারগলোর চাইতে "
-"তুলনামূলকভাবে বেশী সময় লাগে। অতএব, যখন প্রয়োজন না হলে নেটওয়ার্ক এবং/অথবা উইন্ডোজ "
-"হোষ্টকৃত প্রিন্টারগলোর স্বয়ংক্রিয় সনাক্তকরন বন্ধ রাখুন।\n"
-"\n"
-" আপনি প্রস্তুত হলে \"পরবর্তী\" ক্লিক করুন, এবং \"বাতিল\" চাপুন যদি আপনি এখন কোন "
-"প্রিন্টার সেটআপ করতে না চান।"
-
-# সাম
-#: printer/printerdrake.pm:1284
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"প্রিন্টার সেটআপ উইজার্ডে আপনাকে স্বাগতম!\n"
-"\n"
-"এ উইজার্ডটি আপনার কম্পিউটারে সংযুক্ত প্রিন্টার(সমূহ) ইনস্টল করতে সাহায্য করবে।\n"
-"\n"
-"এই মেশিনে সংযুক্ত সব প্রিন্টার প্লাগ ইন করুন এবং চালু করুন যাতে স্বয়ংক্রিয়ভাবে সনাক্তকৃত "
-"হতে পারে।\n"
-"\n"
-" আপনি প্রস্তুত হলে \"পরবর্তী\" ক্লিক করুন, এবং \"বাতিল\" চাপুন যদি আপনি এখন কোন "
-"প্রিন্টার সেটআপ করতে না চান।"
-
-# সাম
-#: printer/printerdrake.pm:1292
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you do not need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"প্রিন্টার সেটআপ উইজার্ডে আপনাকে স্বাগতম!\n"
-"\n"
-"এ উইজার্ডটি আপনার কম্পিউটারে বা সরাসরি নেটওয়ার্কে সংযুক্ত প্রিন্টার(সমূহ) ইনস্টল করতে "
-"সাহায্য করবে।\n"
-"\n"
-"এই মেশিনে যদি কোন প্রিন্টার থেকে থাকে অনুগ্রহ করে তা প্লাগ ইন করুন এবং চালু করুন "
-"যাতে স্বয়ংক্রিয়ভাবে সনাক্তকৃত হতে পারে। আপনার নেটওয়ার্ক প্রিন্টারগলোও সংযুক্ত ও চালু "
-"থাকতে হবে।\n"
-"\n"
-"মনে রাখবেন, নেটওয়ার্ক প্রিন্টারগলো সনাক্ত করতে সরাসরি সংযুক্ত প্রিন্টারগলোর চাইতে "
-"তুলনামূলকভাবে বেশী সময় লাগে। অতএব, যখন প্রয়োজন না হলে নেটওয়ার্ক প্রিন্টারগলোর "
-"স্বয়ংক্রিয় সনাক্তকরন বন্ধ রাখুন।\n"
-"\n"
-" আপনি প্রস্তুত হলে \"পরবর্তী\" ক্লিক করুন, এবং \"বাতিল\" চাপুন যদি আপনি এখন কোন "
-"প্রিন্টার সেটআপ করতে না চান।"
-
-# সাম
-#: printer/printerdrake.pm:1301
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"প্রিন্টার সেটআপ উইজার্ডে আপনাকে স্বাগতম!\n"
-"\n"
-"এ উইজার্ডটি আপনার কম্পিউটারে সংযুক্ত প্রিন্টার(সমূহ) ইনস্টল করতে সাহায্য করবে।\n"
-"\n"
-"এই মেশিনে যদি কোন প্রিন্টার থেকে থাকে অনুগ্রহ করে তা প্লাগ ইন করুন এবং চালু করুন "
-"যাতে স্বয়ংক্রিয়ভাবে সনাক্তকৃত হতে পারে।\n"
-"\n"
-" আপনি প্রস্তুত হলে \"পরবর্তী\" ক্লিক করুন, এবং \"বাতিল\" চাপুন যদি আপনি এখন কোন "
-"প্রিন্টার সেটআপ করতে না চান।"
-
-#: printer/printerdrake.pm:1352
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "এই মেশিনের সাথে সংযুক্ত প্রিন্টারসমূহ সয়ংক্রিয়ভাবে সনাক্ত করো"
-
-#: printer/printerdrake.pm:1355
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "লোকাল নেটওয়ার্কের সাথে সরাসরি সংযুক্ত প্রিন্টারসমূহ সয়ংক্রিয়ভাবে সনাক্ত করো"
-
-#: printer/printerdrake.pm:1358
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr "উইন্ডোজ চালিত মেশিনের সাথে সংযুক্ত প্রিন্টারসমূহ সয়ংক্রিয়ভাবে সনাক্ত করো"
-
-# সাম
-#: printer/printerdrake.pm:1361
-#, c-format
-msgid "No auto-detection"
-msgstr "কোন স্বয়ংক্রিয় সনাক্তকরণ নয়"
-
-# সাম
-#: printer/printerdrake.pm:1381
-#, c-format
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the %s Control Center."
-msgstr ""
-"\n"
-"অভিনন্দন, আপনার প্রিন্টারের ইনস্টলেশন ও কনফিগারেশন দুটোই শেষ!\n"
-"\n"
-"আপনি আপনার অ্যাপ্লিকেশনের \"প্রিন্ট\" কমান্ড দিয়ে প্রিন্ট করতে পারেন (সাধারণত \"ফইল"
-"\" মেনুতে অবস্থিত)।\n"
-"\n"
-"আপনি যদি প্রিন্টার যোগ করতে, সরাতে বা নাম বদলাতে চান, বা যদি ডিফল্ট অপশন "
-"সেটিংসমূহ (কাগজ দেবার ট্রে, মুদ্রনের মান, ...) বদলাতে চান, তবে তা %s নিয়ন্ত্রণ "
-"কেন্দ্র \"হার্ডওয়্যার\" বিভাগে \"প্রিন্টার\" থেকে করুন।"
-
-#: printer/printerdrake.pm:1417 printer/printerdrake.pm:1641
-#: printer/printerdrake.pm:1704 printer/printerdrake.pm:1796
-#: printer/printerdrake.pm:1934 printer/printerdrake.pm:2010
-#: printer/printerdrake.pm:2177 printer/printerdrake.pm:2268
-#: printer/printerdrake.pm:2277 printer/printerdrake.pm:2286
-#: printer/printerdrake.pm:2297 printer/printerdrake.pm:2496
-#: printer/printerdrake.pm:2633
-#, c-format
-msgid "Could not install the %s packages!"
-msgstr "%s প্যাকেজগুলি ইনস্টল করা গেলোনা!"
-
-#: printer/printerdrake.pm:1419
-#, c-format
-msgid "Skipping Windows/SMB server auto-detection"
-msgstr "উইন্ডেজ/SMB সার্ভার সয়ং-সনাক্ত উপেক্ষা করা হচ্ছে"
-
-#: printer/printerdrake.pm:1425 printer/printerdrake.pm:1564
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Printer auto-detection"
-msgstr "প্রিন্টার সংয়-সনাক্তকরণ"
-
-#: printer/printerdrake.pm:1425
-#, c-format
-msgid "Detecting devices..."
-msgstr "ডিভাইস সমূহ সনাক্ত করা হচ্ছে..."
-
-#: printer/printerdrake.pm:1451
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", নেটওয়ার্ক প্রিন্টার \"%s\", পোর্ট %s"
-
-#: printer/printerdrake.pm:1454
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", এসএমবি/উইন্ডোজ সার্ভার \"%2$s\" এর প্রিন্টার \"%1$s\""
-
-#: printer/printerdrake.pm:1458
-#, c-format
-msgid "Detected %s"
-msgstr "%s সনাক্ত হয়েছে"
-
-#: printer/printerdrake.pm:1463 printer/printerdrake.pm:1490
-#: printer/printerdrake.pm:1505
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "প্যারালাল পোর্ট #%s এর প্রিন্টার"
-
-#: printer/printerdrake.pm:1469
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "নেটওয়ার্ক প্রিন্টার \"%s\", পোর্ট %s"
-
-#: printer/printerdrake.pm:1472
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "এসএমবি/উইন্ডোজ সার্ভার \"%2$s\" এর প্রিন্টার \"%1$s\""
-
-#: printer/printerdrake.pm:1550
-#, c-format
-msgid "Local Printer"
-msgstr "লোকাল প্রিন্টার"
-
-# সাম: Parallel Port translated as প্যারালাল পোর্ট at some place.
-# this string has other occurances:
-# (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)
-#: printer/printerdrake.pm:1551
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"কোন স্থানীয় প্রিন্টার পাওয়া যায়নি! নিজ হাতে ইনস্টল করতে চাইলে ইনপুট লাইনে "
-"(প্যারালাল পোর্ট: /dev/lp0, /dev/lp1, ..., যা কিনা LPT1:, LPT2:, ..., এর "
-"সমতুল্য; ১ম ইউএসবি প্রিন্টার: /dev/usb/lp0, ২য় ইউএসবি প্রিন্টার: /dev/usb/"
-"lp1, ...) ডিভাইস নাম/ফাইল নাম উল্লেখ করুন।"
-
-#: printer/printerdrake.pm:1555
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "আপনাকে অবশ্যই একটি ডিভাইস অথবা ফাইলের নাম প্রবেশ করাতে হবে!"
-
-#: printer/printerdrake.pm:1565
-#, c-format
-msgid "No printer found!"
-msgstr "কোন প্রিন্টার পাওয়া যায়নি!"
-
-#: printer/printerdrake.pm:1573
-#, c-format
-msgid "Local Printers"
-msgstr "লোকাল প্রিন্টারসমূহ"
-
-#: printer/printerdrake.pm:1574
-#, c-format
-msgid "Available printers"
-msgstr "উপস্থিত প্রিন্টারসমূহ"
-
-#: printer/printerdrake.pm:1578 printer/printerdrake.pm:1587
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "নিম্নোক্ত প্রিন্টারগুলি সংয়-সনাক্ত হয়েছে।"
-
-#: printer/printerdrake.pm:1580
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
-"আপনি যেটি কন্‌ফিগার করতে চাচ্ছেন যদি এটা তা না হয়, তাহলে যন্ত্রের নাম/ফাইলের নাম "
-"ইনপুট লাইনে দিন"
-
-#: printer/printerdrake.pm:1581
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-"অদলবদলকরে, আপনি ইনপুট লাইনে যন্ত্রের নাম/ফাইলের নাম নির্দিষ্ট করে দিতে পারেন"
-
-#: printer/printerdrake.pm:1582 printer/printerdrake.pm:1591
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "এখানে সয়ং-নির্ধারিত প্রিন্টারগুলির একটি লিষ্ট।"
-
-#: printer/printerdrake.pm:1584
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
-msgstr ""
-"অনুগ্রহ করে যেই প্রিন্টারটি আপনি সেট-আপ করতে চান তা বেছে নিন অথবা ইনপুট লাইনে "
-"যন্ত্রের নাম/ফাইলের নাম দিন"
-
-#: printer/printerdrake.pm:1585
-#, c-format
-msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-"অনুগ্রহ করে যেই প্রিন্টারটি আপনি প্রিন্ট করার কাজে ব্যবহার করতে চান তা বেছে নিন "
-"অথবা ইনপুট লাইনে যন্ত্রের নাম/ফাইলের নাম দিন"
-
-# sam: printer
-# Manual configuration has been translated as "হাতে হাতে কনফিগারেশন" but is it appropriate as an option?
-# I mean should the option \"Manual configuration\" be translated that way?
-#: printer/printerdrake.pm:1589
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"প্রিন্টার কনফিগারেশন সম্পূর্ন স্বয়ংক্রীয়ভাবে কাজ করবে। যদি আপনার প্রিন্টারটি সঠিকভাবে "
-"সনাক্ত না হয় অথবা আপনি যদি নিজ হাতে কনফিগারেশন করতে চান, তাহলে \"স্বনির্বাচিত "
-"কনফিগারেশন\" চালু করুন। "
-
-#: printer/printerdrake.pm:1590
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "এখন কোন বিকল্প সম্ভাবনা নেই।"
-
-# সাম: printer Manual configuration
-# there is a similar one...
-#: printer/printerdrake.pm:1593
-#, c-format
-msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
-msgstr ""
-"যে প্রিন্টারটি সেটআপ করতে চান সেটি বাছাই করুন। প্রিন্টার কনফিগারেশন সম্পূর্ন "
-"স্বয়ংক্রীয়ভাবে কাজ করবে। যদি আপনার প্রিন্টারটি সঠিকভাবে সনাক্ত না হয় অথবা আপনি "
-"যদি নিজ হাতে কনফিগারেশন করতে চান, তাহলে \"স্বনির্বাচিত কনফিগারেশন\" চালু করুন।"
-
-#: printer/printerdrake.pm:1594
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "অনুগ্রহ করে একটি প্রিন্টার পছন্দ করুন যেখানে আপনার প্রিন্টের কাজগুলি যাবে।"
-
-#: printer/printerdrake.pm:1596
-#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"অনুগ্রহ করে যেই পোর্টে আপনার প্রিন্টারটি যুক্ত তা বেছে নিন অথবা ইনপুট লাইনে যন্ত্রের "
-"নাম/ফাইলের নাম দিন"
-
-#: printer/printerdrake.pm:1597
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "আপনার প্রিন্টারটি যে পোর্টে সংযুক্ত আছে তা পছন্দ করুন।"
-
-#: printer/printerdrake.pm:1599
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (প্যারালাল পোর্ট: /dev/lp0, /dev/lp1, ..., সদৃশ LPT1:, LPT2:, ..., প্রথম ইউএসবি "
-"প্রিন্টার: /dev/usb/lp0, দ্বিতীয় ইউএসবি প্রিন্টার: /dev/usb/lp1, ...)।"
-
-#: printer/printerdrake.pm:1603
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "আপনাকে অবশ্যই একটি প্রিন্টার/ডিভাইস পছন্দ/প্রবেশ করাতে হবে!"
-
-#: printer/printerdrake.pm:1643 printer/printerdrake.pm:1706
-#: printer/printerdrake.pm:1798 printer/printerdrake.pm:1936
-#: printer/printerdrake.pm:2012 printer/printerdrake.pm:2179
-#: printer/printerdrake.pm:2270 printer/printerdrake.pm:2279
-#: printer/printerdrake.pm:2288 printer/printerdrake.pm:2299
-#, c-format
-msgid "Aborting"
-msgstr "বের হয়ে যাচ্ছে"
-
-#: printer/printerdrake.pm:1679
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "lpd প্রিন্টারের রিমোট অপশন"
-
-#: printer/printerdrake.pm:1680
-#, c-format
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"দূরবর্তী lpd প্রিন্টার ব্যবহার করতে, আপনাকে সেই সার্ভারে প্রিন্টার সার্ভারের হোস্টনাম "
-"এবং প্রিন্টারের নাম দিতে হবে।"
-
-#: printer/printerdrake.pm:1681
-#, c-format
-msgid "Remote host name"
-msgstr "দূরবর্তী হোস্টের নাম"
-
-#: printer/printerdrake.pm:1682
-#, c-format
-msgid "Remote printer name"
-msgstr "দূরবর্তী প্রিন্টারের নাম"
-
-#: printer/printerdrake.pm:1685
-#, c-format
-msgid "Remote host name missing!"
-msgstr "দূরবর্তী হোস্টের নাম নেই!"
-
-#: printer/printerdrake.pm:1689
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "দূরবর্তী প্রিন্টারের নাম নেই!"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318 standalone/drakTermServ:475
-#: standalone/drakTermServ:807 standalone/drakTermServ:823
-#: standalone/drakTermServ:1653 standalone/drakTermServ:1662
-#: standalone/drakTermServ:1676 standalone/drakbackup:512
-#: standalone/drakbackup:618 standalone/drakbackup:653
-#: standalone/drakbackup:754 standalone/draknfs:203
-#: standalone/draksambashare:627 standalone/draksambashare:794
-#: standalone/harddrake2:275
-#, c-format
-msgid "Information"
-msgstr "তথ্য"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "সনাক্তকৃত মডেল: %s %s"
-
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Scanning network..."
-msgstr "নেটওয়ার্ক স্ক্যান করা হচ্ছে..."
-
-#: printer/printerdrake.pm:1814 printer/printerdrake.pm:1835
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ",সার্ভার \"%2$s\"-এ অবস্থিত প্রিন্টার \"%1$s\""
-
-#: printer/printerdrake.pm:1817 printer/printerdrake.pm:1838
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "সার্ভার \"%2$s\"-এ অবস্থিত প্রিন্টার \"%1$s\""
-
-#: printer/printerdrake.pm:1859
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "এস.এম.বি. (উইন্ডোজ ৯x/এন.টি.) প্রিন্টার সংক্রান্ত অপশন"
-
-#: printer/printerdrake.pm:1860
-#, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"এস.এম.বি. প্রিন্টারে প্রিন্ট করতে হলে আপনাকে এস.এম.বি. হোস্ট-নাম (লক্ষ করুন! এই নাম "
-"টি.সি.পি./আই.পি. হোস্ট-নাম হতে ভিন্ন হতে পারে!) এবং হয়তো প্রিন্ট সার্ভারের আই.পি. "
-"ঠিকানাও উল্লেখ করতে হবে; পাশাপাশি প্রিন্টারের শেয়ার নাম এবং প্রয়োজন হলে "
-"ব্যবহারকারীর-নাম, পাসওয়ার্ড ও ওয়ার্কগ্রুপ বিষয়ক তথ্যও প্রদান করতে হবে।"
-
-#: printer/printerdrake.pm:1861
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-"প্রিন্টারটি যদি স্বয়ংক্রিয়ভাবে সনাক্ত করা হয়ে থাকে, তবে তালিকা থেকে শুধু প্রিন্টারটি "
-"বেছে নিন ও তারপর ব্যবহারকারীর-নাম, পাসওয়ার্ড, এবং/অথবা প্রয়োজনবোধে ওয়ার্কগ্রুপ যোগ "
-"করুন।"
-
-#: printer/printerdrake.pm:1863
-#, c-format
-msgid "SMB server host"
-msgstr "এস.এম.বি. সার্ভার হোস্ট"
-
-#: printer/printerdrake.pm:1864
-#, c-format
-msgid "SMB server IP"
-msgstr "এস.এম.বি. সার্ভার আই.পি."
-
-#: printer/printerdrake.pm:1865 standalone/draksambashare:67
-#, c-format
-msgid "Share name"
-msgstr "শেয়ারের নাম"
-
-#: printer/printerdrake.pm:1868
-#, c-format
-msgid "Workgroup"
-msgstr "ওয়ার্কগ্রুপ"
-
-#: printer/printerdrake.pm:1870
-#, c-format
-msgid "Auto-detected"
-msgstr "স্বয়ংক্রিয়ভাবে সনাক্তকৃত"
-
-#: printer/printerdrake.pm:1880
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "সার্ভারের নাম অথবা আই.পি. অবশ্যই প্রদান করতে হবে!"
-
-#: printer/printerdrake.pm:1884
-#, c-format
-msgid "Samba share name missing!"
-msgstr "সাম্বা শেয়ারের নাম নেই!"
-
-#: printer/printerdrake.pm:1890
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "নিরাপত্তাজনিত সতর্কবার্তা"
-
-# FIXME
-#: printer/printerdrake.pm:1891
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"আপনি পাসওয়ার্ড ব্যবহার করে উইন্ডোজ অ্যাকাউন্টে প্রিন্ট ব্যবস্থা স্থাপন করতে যাচ্ছেন। "
-"সাম্বা ক্লায়েন্ট সফটওয়ারের একটি ত্রুটির কারণে উইন্ডোজ সার্ভারকে যে পাসওয়ার্ড পাঠানো "
-"হয়, তা কমান্ড লাইন থেকে লিখতে হয়। ফলে \"ps auxwww\" কমান্ড ব্যবহার করে "
-"সিস্টেমের যে কোন ব্যবহারকারী উক্ত পাসওয়ার্ড দেখতে পারেন।\n"
-"\n"
-"আমরা তাই নিম্নোক্ত যে কোন একটি বিকল্প ব্যবস্থা ব্যবহারের পরামর্শ দিচ্ছি (প্রতিটি "
-"ক্ষেত্রেই আপনাকে নিশ্চিত হতে হবে যে, শুধুমাত্র স্থানীয় নেটওয়ার্কের সাথে যুক্ত "
-"কম্পিউটারগুলোই কেবল উইন্ডোজ সার্ভারকে ব্যবহার করতে পারে, উদাহরণস্বরূপ, ফায়ারওয়াল "
-"ব্যবহার করে আপনি এটি করতে পারেন):\n"
-"\n"
-"\"GUEST\" অ্যাকাউন্টের মত উইন্ডোজ সার্ভারে পাসওয়ার্ড-বিহীন একটি অ্যাকাউন্ট ব্যবহার "
-"করুন কিংবা প্রিন্টিং এর জন্য একটি বিশেষ অ্যাকাউন্ট রাখুন। ব্যক্তিগত অ্যাকাউন্ট বা "
-"অ্যাডমিনিস্ট্রেটর অ্যাকাউন্টের পাসওয়ার্ড অপসারণ করবেন না।\n"
-"\n"
-"আপনার উইন্ডোজ সার্ভারকে এল.পি.ডি. প্রোটোকল ব্যবহারের জন্য প্রস্তুত রাখুন। এরপর \"%s"
-"\" সংযোগের ধরন সহ প্রিন্টড্রেক ব্যবহার করে এই কম্পিউটার থেকেই প্রিন্টিং ব্যবস্থা "
-"স্থাপন করুন।\n"
-
-#: printer/printerdrake.pm:1901
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"IPP প্রোটোকলের নিয়ন্ত্রণে প্রিন্টারকে পাওয়ার জন্য আপনার উইন্ডোজ সার্ভার সেট-আপ করুন "
-"এবং এই মেশিন থেকে Printerdrake এ \"%s\" সংযুক্তি ধরণ থেকে প্রিন্টিং সেট-আপ করুন।\n"
-"\n"
-
-#: printer/printerdrake.pm:1904
-#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-"প্রিন্টারটিকে একটি লিনাক্স সার্ভারের সাথে সংযুক্ত করুন এবং আপনার উইন্ডোজ চালিত "
-"কম্পিউটারগুলোকে উক্ত সার্ভারের সাথে ক্লায়েন্ট হিসেবে যুক্ত হতে দিন।\n"
-"\n"
-"এখন যে ভাবে করছেন, সেভাবেই কি আপনি প্রিন্টারটির সেট-আপ প্রক্রিয়া চালিয়ে যেতে চান?"
-
-#: printer/printerdrake.pm:1983
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "নেটওয়ার প্রিন্টার অপশন"
-
-# সাম: 'user name' is wrongly translated at many places as 'ইউজার নেম'।
-# should be 'ব্যবহারকারীর নাম'
-# TCP/IP?
-#: printer/printerdrake.pm:1984
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"NetWare প্রিন্টারটি ব্যবহার করার জন্য আপনাকে NetWare প্রিন্ট সার্ভারের নাম সরবরাহ "
-"করতে হবে। (লক্ষ করুন! এই নাম টিসিপি/আইপি হোস্ট নাম থেকে ভিন্ন হতে পারে!) আপনাকে "
-"আরও উল্লেখ করতে হবে ব্যবহৃত প্রিন্টারটির অপেক্ষমান প্রিন্ট তালিকার নাম ও প্রয়োজন হলে "
-"ব্যবহারকারীর নাম ও পাসওয়ার্ড।"
-
-#: printer/printerdrake.pm:1985
-#, c-format
-msgid "Printer Server"
-msgstr "প্রিন্টার সার্ভার"
-
-#: printer/printerdrake.pm:1986
-#, c-format
-msgid "Print Queue Name"
-msgstr "অপেক্ষমান প্রিন্ট তালিকার (Queue) নাম"
-
-#: printer/printerdrake.pm:1991
-#, c-format
-msgid "NCP server name missing!"
-msgstr "এন.সি.পি. সার্ভারের নাম নেই!"
-
-# FIXME
-#: printer/printerdrake.pm:1995
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "এন.সি.পি. অপেক্ষমান প্রিন্ট তালিকার (Queue) নাম নেই!"
-
-#: printer/printerdrake.pm:2076 printer/printerdrake.pm:2097
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", হোস্ট \"%s\", পোর্ট %s"
-
-#: printer/printerdrake.pm:2079 printer/printerdrake.pm:2100
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "হোস্ট \"%s\", পোর্ট %s"
-
-#: printer/printerdrake.pm:2122
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "টি.সি.পি./সকেট প্রিন্টার অপশন"
-
-#: printer/printerdrake.pm:2124
-#, c-format
-msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
-msgstr ""
-"তালিকা থেকে স্বয়ংক্রিয়ভাবে চিহ্নিত প্রিন্টারগুলো থেকে একটি বেছে নিন অথবা ইনপুট "
-"ফিল্ডে হোস্টনাম বা আই-পি এবং ঐচ্ছিক পোর্ট সংখ্যা (ডিফল্ট হচ্ছে 9100) দিন।"
-
-# sam: TCP = টিসিপি নাকি TCP?
-# check throughout the file.
-# in the commonwords.po hardware translation spelling is wrong.
-#: printer/printerdrake.pm:2125
-#, c-format
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
-msgstr ""
-"TCP বা সকেট প্রিন্টারে প্রিন্ট করতে চাইলে আপনাকে হোস্টের নাম অথবা প্রিন্টারের IP "
-"এবং চাইলে পোর্ট নাম্বার (ডিফল্ট 9100) উল্লেখ করতে হবে। HP JetDirect সার্ভারগুলোতে "
-"পোর্ট নাম্বার সাধারনত 9100, অনান্য সার্ভারে এটি ভিন্ন হতে পারে। আপনার হার্ডওয়্যার "
-"সহায়িকা দেখুন।"
-
-#: printer/printerdrake.pm:2129
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "প্রিন্টারের হোস্ট-নাম বা আই-পি নেই!"
-
-#: printer/printerdrake.pm:2158
-#, c-format
-msgid "Printer host name or IP"
-msgstr "প্রিন্টারের হোস্ট-নাম বা আই-পি"
-
-#: printer/printerdrake.pm:2221
-#, c-format
-msgid "Refreshing Device URI list..."
-msgstr "ডিভাইস URI তালিকা পুনরায় তৈরি করা হচ্ছে..."
-
-#: printer/printerdrake.pm:2224 printer/printerdrake.pm:2226
-#, c-format
-msgid "Printer Device URI"
-msgstr "প্রিন্টারের URI"
-
-# সাম: চেক URI
-#: printer/printerdrake.pm:2225
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"প্রিন্টার ব্যবহার করার জন্য আপনি সরাসরি URI টি বলে দিতে পারেন। URI টি অবশ্যই CUPS "
-"অথবা Foomatic এর সুনির্দিষ্ট বিবরণ অনুযায়ী হতে হবে। মনে রাখবেন, সব স্পুলার কিন্তু "
-"সবধরনের URI সমর্থন করে না।"
-
-#: printer/printerdrake.pm:2249
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "একটি বৈধ ইউ.আর.আই. লিখতে হবে!"
-
-# FIXME
-#: printer/printerdrake.pm:2354
-#, c-format
-msgid "Pipe into command"
-msgstr "পাইপ তথ্য কমান্ড"
-
-# সাম: pipe = ?
-# প্রেরিত হবে নাকি অপেক্ষা করবে
-#: printer/printerdrake.pm:2355
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-"এখানে আপনি যেকোন একটি কমান্ড লাইন নির্দিষ্ট করে দিতে পারেন। প্রিন্টিং এর কাজগুলো "
-"তখন সরাসরি কোন প্রিন্টারের বদলে এই কমান্ড লাইন দিয়ে প্রেরিত হবে।"
-
-#: printer/printerdrake.pm:2356
-#, c-format
-msgid "Command line"
-msgstr "কমান্ড লাইন"
-
-#: printer/printerdrake.pm:2360
-#, c-format
-msgid "A command line must be entered!"
-msgstr "একটি কমান্ড লাইন অবশ্যই লিখতে হবে!"
-
-#: printer/printerdrake.pm:2402
-#, c-format
-msgid "Your printer %s is currently connected %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2404 printer/printerdrake.pm:2411
-#, fuzzy, c-format
-msgid "to a parallel port"
-msgstr "%s নম্বর প্যারালাল পোর্টে"
-
-#: printer/printerdrake.pm:2405 printer/printerdrake.pm:2412
-#, c-format
-msgid "to the USB"
-msgstr ""
-
-#: printer/printerdrake.pm:2406 printer/printerdrake.pm:2413
-#, fuzzy, c-format
-msgid "via the network"
-msgstr "নেটওয়ার্ককে চালু করা হচ্ছে"
-
-#: printer/printerdrake.pm:2407
-#, c-format
-msgid "This type of connection is currently not fully supported by HPLIP."
-msgstr ""
-
-#: printer/printerdrake.pm:2409
-#, c-format
-msgid "You get full HPLIP support for your device if you connect it "
-msgstr ""
-
-#: printer/printerdrake.pm:2415
-#, c-format
-msgid ""
-"You can now set up your device with HPLIP anyway (works in many cases), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "set it up without HPLIP (print-only), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, fuzzy, c-format
-msgid "or"
-msgstr "ঘন্টা"
-
-#: printer/printerdrake.pm:2417
-#, c-format
-msgid "cancel the setup (for example to reconnect your device)."
-msgstr ""
-
-#: printer/printerdrake.pm:2419
-#, c-format
-msgid ""
-"You can always revise your choice by clicking your printer's entry in the "
-"main window, "
-msgstr ""
-
-#: printer/printerdrake.pm:2420
-#, c-format
-msgid "clicking the \"%s\" button, "
-msgstr ""
-
-# ##এডিট
-#. -PO: "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: printer/printerdrake.pm:2420 standalone/drakperm:124 standalone/drakups:300
-#: standalone/drakups:360 standalone/drakups:380 standalone/drakvpn:319
-#: standalone/drakvpn:680 standalone/printerdrake:245
-#, c-format
-msgid "Edit"
-msgstr "সম্পাদন"
-
-#: printer/printerdrake.pm:2421
-#, c-format
-msgid "and choosing \"%s\"."
-msgstr ""
-
-#: printer/printerdrake.pm:2421 printer/printerdrake.pm:5334
-#: printer/printerdrake.pm:5394
-#, c-format
-msgid "Printer connection type"
-msgstr "প্রিন্টার সংযোগের ধরন"
-
-#: printer/printerdrake.pm:2423 standalone/logdrake:408
-#, c-format
-msgid "What do you want to do?"
-msgstr "আপনি কি করতে চান?"
-
-#: printer/printerdrake.pm:2424 printer/printerdrake.pm:2428
-#, c-format
-msgid "Set up with HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2425 printer/printerdrake.pm:2427
-#: printer/printerdrake.pm:2430
-#, c-format
-msgid "Set up without HPLIP"
-msgstr ""
-
-# সাম
-# please check... not sure
-#: printer/printerdrake.pm:2461
-#, c-format
-msgid ""
-"On many HP printers there are special functions available, maintenance (ink "
-"level checking, nozzle cleaning. head alignment, ...) on all not too old "
-"inkjets, scanning on multi-function devices, and memory card access on "
-"printers with card readers. "
-msgstr ""
-"অনেক HP প্রিন্টারে বিশেষ কিছু ফাংশান আছে, রক্ষণাবেক্ষন (কালির পরিমান নিরীক্ষন, নজল "
-"পরিস্কার করা, হেড একরেখীকরন, ...) খুব বেশী পুরনো না হলে, মাল্টি-ফাংশান ডিভাইসে "
-"স্ক্যানিং এবং কার্ড রিডার সম্বলিত প্রিন্টারে মেমরী কার্ড ব্যবহার। "
-
-# সাম
-#: printer/printerdrake.pm:2463
-#, fuzzy, c-format
-msgid ""
-"To access these extra functions on HP printers they must be set up with "
-"HPLIP (HP Linux Imaging and Printing). "
-msgstr ""
-"আপনার HP প্রিন্টারের বাড়তি ফাংশানগুলো ব্যবহার করতে চাইলে, যথাযথ সফ্টওয়্যার দিয়ে "
-"সেটআপ করুন: "
-
-# সাম
-#: printer/printerdrake.pm:2465
-#, fuzzy, c-format
-msgid "Do you want to use HPLIP (choose \"No\" for non-HP printers)? "
-msgstr "আপনার পচ্ছন্দ কি (HP না এমন প্রিন্টারের জন্য \"একটিও না\" বাছাই করুন)?"
-
-#: printer/printerdrake.pm:2491
-#, c-format
-msgid "Installing %s package..."
-msgstr "%s প্যাকেজ ইনস্টল করা হচ্ছে..."
-
-# sam
-#: printer/printerdrake.pm:2491 printer/printerdrake.pm:2497
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "HPLIP"
-msgstr "HPLIP"
-
-# FIXME
-#: printer/printerdrake.pm:2498
-#, c-format
-msgid "Only printing will be possible on the %s."
-msgstr "%s-এর ওপর শুধুমাত্র প্রিন্ট চালানো যাবে।"
-
-# সাম
-#: printer/printerdrake.pm:2513
-#, c-format
-msgid "Could not remove your old HPOJ configuration file %s for your %s! "
-msgstr "আপনার পুরনো HPOJ কনফিগারেশন ফাইল %s আপনার %s এর জন্য সরানো যাচ্ছে না! "
-
-# সাম
-#: printer/printerdrake.pm:2515
-#, c-format
-msgid "Please remove the file manually and restart HPOJ."
-msgstr "অনুগ্রহ করে আপনি ফইলটি সরিয়ে ফেলুন এবং HPOJ পুনরায় চালু করুন।"
-
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "Checking device and configuring %s..."
-msgstr "ডিভাইস পরীক্ষা করা হচ্ছে ও %s কনফিগার করা হচ্ছে..."
-
-# সাম
-#: printer/printerdrake.pm:2557
-#, c-format
-msgid "Which printer do you want to set up with HPLIP?"
-msgstr "HPLIP দিয়ে আপনি কোন প্রিন্টার সেট আপ করতে চান?"
-
-#: printer/printerdrake.pm:2576
-#, c-format
-msgid "HPLIP was not able to communicate with the chosen printer!"
-msgstr ""
-
-# সাম
-#: printer/printerdrake.pm:2577 printer/printerdrake.pm:2584
-#, fuzzy, c-format
-msgid "Setting up the printer without HPLIP..."
-msgstr "কার্নেল মডিউল সেট আপ করছি..."
-
-#: printer/printerdrake.pm:2583
-#, c-format
-msgid ""
-"HPLIP did not find any local printers (Parallel, USB) which it supports!"
-msgstr ""
-
-#: printer/printerdrake.pm:2622
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "SANE প্যাকেজ ইনস্টল করা হচ্ছে..."
-
-#: printer/printerdrake.pm:2635
-#, c-format
-msgid "Scanning on the %s will not be possible."
-msgstr "%s-কে স্ক্যান করা সম্ভব হবে না।"
-
-# সাম
-#: printer/printerdrake.pm:2650
-#, c-format
-msgid "Using and Maintaining your %s"
-msgstr "আপনার %s এর ব্যবহার ও রক্ষণাবেক্ষন"
-
-# সাম
-#: printer/printerdrake.pm:2664
-#, c-format
-msgid "Configuring device..."
-msgstr "ডিভাইস কন্‌ফিগার হচ্ছে..."
-
-#: printer/printerdrake.pm:2701
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "আপনার কম্পিউটারের প্রিন্টার পোর্টকে CUPS-এর ব্যবহারোপযোগী করে তোলা..."
-
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2985
-#: printer/printerdrake.pm:3138
-#, c-format
-msgid "Reading printer database..."
-msgstr "প্রিন্টার ডেটাবেস পড়া হচ্ছে..."
-
-#: printer/printerdrake.pm:2943
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "প্রিন্টারের নাম ও সংশ্লিষ্ট মন্তব্য লিখুন"
-
-#: printer/printerdrake.pm:2947 printer/printerdrake.pm:4206
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "প্রিন্টারের নামে শুধু বর্ণমালা, সংখ্যা এবং আন্ডারস্কোর থাকে"
-
-#: printer/printerdrake.pm:2953 printer/printerdrake.pm:4211
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"\"%s\" প্রিন্টারটি ইতিমধ্যেই বিদ্যমান,\n"
-"আপনি কি আসলেই এটির পুরনো কনফিগারেশনের ওপর দিয়ে লিখতে চান?"
-
-# সাম
-#: printer/printerdrake.pm:2960
-#, c-format
-msgid ""
-"The printer name \"%s\" has more than 12 characters which can make the "
-"printer unaccessible from Windows clients. Do you really want to use this "
-"name?"
-msgstr ""
-"\"%s\" প্রিন্টারটির নামে ১২ অক্ষরের বেশী আছে যা কিনা এটিকে উইন্ডোজ ক্লায়েন্ট থেকে "
-"অব্যবহারযোগ্য করে দিতে পারে। আপনি কি তবুও এই নামটি ব্যবহার করতে চান?"
-
-#: printer/printerdrake.pm:2969
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"প্রত্যেক প্রিন্টারের একটি নাম প্রয়োজন (যেমন \"printer\")। বিবরণ এবং অবস্থানের "
-"ক্ষেত্র ভরাট করার প্রয়োজন নেই। সেগুলো ব্যবহারকারীদের জন্য মন্তব্যস্বরুপ।"
-
-#: printer/printerdrake.pm:2970
-#, c-format
-msgid "Name of printer"
-msgstr "প্রিন্টারের নাম"
-
-#: printer/printerdrake.pm:2971 standalone/drakconnect:592
-#: standalone/harddrake2:39 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Description"
-msgstr "বর্ণনা"
-
-#: printer/printerdrake.pm:2972 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Location"
-msgstr "অবস্থান"
-
-#: printer/printerdrake.pm:2990
-#, c-format
-msgid "Preparing printer database..."
-msgstr "প্রিন্টার ডেটাবেস প্রস্তুত করা হচ্ছে..."
-
-#: printer/printerdrake.pm:3116
-#, c-format
-msgid "Your printer model"
-msgstr "আপনার প্রিন্টারের মডেল"
-
-#: printer/printerdrake.pm:3117
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: printer/printerdrake.pm:3122 printer/printerdrake.pm:3125
-#, c-format
-msgid "The model is correct"
-msgstr "মডেলটি সঠিক"
-
-#: printer/printerdrake.pm:3123 printer/printerdrake.pm:3124
-#: printer/printerdrake.pm:3127
-#, c-format
-msgid "Select model manually"
-msgstr "নিজ হাতে মডেল নির্বাচন করুন"
-
-# সাম: auto-detection = স্বয়ংক্রিয়‌-সনাক্তকরণ?
-# check other translations
-#: printer/printerdrake.pm:3151
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
-msgstr ""
-"\n"
-"\n"
-"অনুগ্রহ করে দেখুন Printerdrake আপনার প্রিন্টারটির মডেল স্বয়ংক্রিয়‌-সনাক্তকরণ পদ্ধতিতে "
-"সঠিকভাবে নির্নয় করেছে কিনা। যদি নির্নয় ভুল হয়ে থাকে বা \"Raw প্রিন্টার\" হিসেবে "
-"চিহ্নিত হয়, তাহলে তালিকা থেকে সঠিক মডেল বেছে নিন।"
-
-#: printer/printerdrake.pm:3170
-#, c-format
-msgid "Install a manufacturer-supplied PPD file"
-msgstr "প্রস্তুতকারক কর্তৃক সরবরাহকৃত একটি PPD ফাইল ইনস্টল করুন"
-
-#: printer/printerdrake.pm:3202
-#, c-format
-msgid ""
-"Every PostScript printer is delivered with a PPD file which describes the "
-"printer's options and features."
-msgstr ""
-"প্রতিটি পোস্টস্ক্রিপ্ট প্রিন্টারের একটি PPD ফাইল সরবরাহ করা হয় যা প্রিন্টারের বিভিন্ন "
-"অপশন ও বৈশিষ্ট্যের বিবরণ দেয়।"
-
-#: printer/printerdrake.pm:3203
-#, c-format
-msgid ""
-"This file is usually somewhere on the CD with the Windows and Mac drivers "
-"delivered with the printer."
-msgstr ""
-"এই ফাইলটি সাধারণত প্রিন্টারের সাথে সরবরাহকৃত সিডি'তে উইন্ডোজ ও ম্যাক-এর ড্রাইভারের "
-"সাথে থাকে।"
-
-#: printer/printerdrake.pm:3204
-#, c-format
-msgid "You can find the PPD files also on the manufacturer's web sites."
-msgstr "এছাড়াও আপনি প্রিন্টার প্রস্তুতকারকের ওয়েবসাইটে PPD ফাইলটি খুঁজে পেতে পারেন।"
-
-#: printer/printerdrake.pm:3205
-#, c-format
-msgid ""
-"If you have Windows installed on your machine, you can find the PPD file on "
-"your Windows partition, too."
-msgstr ""
-"আপনার কম্পিউটারে উইন্ডোজ ইনস্টল করা থাকলে, উইন্ডোজ-এর ব্যবহৃত পার্টিশনেও PPD ফাইলটি "
-"খুঁজে পেতে পারেন।"
-
-#: printer/printerdrake.pm:3206
-#, c-format
-msgid ""
-"Installing the printer's PPD file and using it when setting up the printer "
-"makes all options of the printer available which are provided by the "
-"printer's hardware"
-msgstr ""
-"প্রিন্টারের PPD ফাইলটি ইনস্টল করা হলে ও প্রিন্টার সেট-আপ এর সময় তা ব্যবহার করা হলে "
-"প্রিন্টারের হার্ডওয়ার কর্তৃক সরবরাহকৃত প্রতিটি অপশনই ব্যবহার করা যায়।"
-
-#: printer/printerdrake.pm:3207
-#, c-format
-msgid ""
-"Here you can choose the PPD file to be installed on your machine, it will "
-"then be used for the setup of your printer."
-msgstr ""
-"আপনার কম্পিউটারে যে PPD ফাইলটি ইনস্টল করা হবে এখান থেকে আপনি তা নির্বাচন করতে "
-"পারবেন; পরবর্তী সময়ে এই ফাইলটি প্রিন্টার সেট-আপ করায় ব্যবহৃত হবে।"
-
-#: printer/printerdrake.pm:3209
-#, c-format
-msgid "Install PPD file from"
-msgstr "যেখানে থেকে PPD ফাইলটি ইনস্টল করা হচ্ছে"
-
-#: printer/printerdrake.pm:3212 printer/printerdrake.pm:3220
-#: standalone/scannerdrake:183 standalone/scannerdrake:192
-#: standalone/scannerdrake:242 standalone/scannerdrake:250
-#, c-format
-msgid "Floppy Disk"
-msgstr "ফ্লপি ডিস্ক"
-
-#: printer/printerdrake.pm:3213 printer/printerdrake.pm:3222
-#: standalone/scannerdrake:184 standalone/scannerdrake:194
-#: standalone/scannerdrake:243 standalone/scannerdrake:252
-#, c-format
-msgid "Other place"
-msgstr "অন্যান্য স্থান"
-
-#: printer/printerdrake.pm:3228
-#, c-format
-msgid "Select PPD file"
-msgstr "PPD ফাইল নির্বাচন করুন"
-
-#: printer/printerdrake.pm:3232
-#, c-format
-msgid "The PPD file %s does not exist or is unreadable!"
-msgstr "PPD ফাইল %s-এর কোন অস্তিত্ব নেই অথবা এটি পড়া যাচ্ছে না!"
-
-#: printer/printerdrake.pm:3238
-#, c-format
-msgid "The PPD file %s does not conform with the PPD specifications!"
-msgstr "PPD ফাইল %s PPD'র বর্ণনার (Specification) সাথে মিলছে না!"
-
-#: printer/printerdrake.pm:3249
-#, c-format
-msgid "Installing PPD file..."
-msgstr "PPD ফাইল ইনস্টল করা হচ্ছে..."
-
-#: printer/printerdrake.pm:3368
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "OKI উইন-প্রিন্টার কনফিগারেশন"
-
-# সাম
-#: printer/printerdrake.pm:3369
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"আপনি একটি OKI লেজার উইন-প্রিন্টার কনফিগারেশন করছেন। এই প্রিন্টারগুলো\n"
-"একটি বিশেষ যোগাযোগ প্রোটকল ব্যবহার করে বিধায় শুধুমাত্র প্রথম প্যারালাল পোর্টে সংযুক্ত "
-"অবস্থায় কাজ করতে পারে। আপনার প্রিন্টার যখন অন্য পোর্টে বা প্রিন্টার সার্ভার বক্সে "
-"সংযুক্ত থাকে, পরীক্ষামূলক পৃষ্ঠা প্রিন্ট করার আগে তা প্রথম প্যারালাল পোর্টে সংযুক্ত করে "
-"নিন। অন্যথায় প্রিন্টারটি কাজ করবে না। আপনার সংযোগের ধরন নির্ধারনী সেটিংসমূহ "
-"ড্রাইভারটি অগ্রাহ্য করবে।"
-
-#: printer/printerdrake.pm:3394 printer/printerdrake.pm:3424
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "লেক্সমার্ক ইঙ্কজেট কনফিগারেশন"
-
-# সাম: boxes = বাক্স? :s
-#: printer/printerdrake.pm:3395
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"লেক্সমার্ক সরবরাহকৃত ইঙ্কজেট প্রিন্টার ড্রাইভার শুধুমাত্র স্থানীয় প্রিন্টারগুলো সমর্থন করে, "
-"কোন রিমোট প্রিন্টার বা প্রিন্ট সার্ভার নয়। অনুগ্রহ করে আপনার প্রিন্টারটি স্থানীয় "
-"পোর্টের সাথে সংযুক্ত করুন অথবা যে মেশিনে এটি সংযুক্ত, সেই মেশিনে কনফিগার করুন।"
-
-# সাম :
-# intercative translated as
-# ইন্টারঅ্যাকটিভ
-# frontend = ফ্রন্টএন্ড?
-# printhead alignment = প্রিন্টহেড একরেখীকরন
-#: printer/printerdrake.pm:3425
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-"আপনার Lexmark ইঙ্কজেট ও এই কনফিগারেশন দিয়ে প্রিন্ট করার জন্য, আপনার দরকার "
-"Lexmark (http://www.lexmark.com/) সরবরাহকৃত ইঙ্কজেট প্রিন্টার ড্রাইভারসমূহ। "
-"\"Drivers\" লিঙ্কটিতে ক্লিক করুন। অতপর: আপনার মডেল নির্বাচন করুন ও অপারেটিং "
-"সিস্টেম হিসেবে \"Linux\" বেছে নিন। ড্রাইভারগুলো RPM প্যাকেজ অথবা shell স্ক্রিপ্ট "
-"হিসেবে ইন্টারঅ্যাকটিভ গ্রাফিক্যাল ইনস্টলেশন সহ সরবরাহ করা হয়। গ্রাফিক্যাল ফ্রন্টএন্ড "
-"দিয়ে কনফিগারেশন করার প্রয়োজন নেই। লইসেন্স চুক্তি পর সরাসরি বাতিল করে দিন। তারপর "
-"\"lexmarkmaintain\" দিয়ে প্রিন্টহেড একরেখীকরন পৃষ্ঠা প্রিন্ট করুন এবং এই প্রোগ্রাম "
-"দিয়ে হেড একরেখীকরন সেটিং ঠিক করুন।"
-
-#: printer/printerdrake.pm:3435
-#, c-format
-msgid "Lexmark X125 configuration"
-msgstr "লেক্সমার্ক X125 কনফিগারেশন"
-
-# সাম: boxes = বাক্স?
-#: printer/printerdrake.pm:3436
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes. Please connect "
-"your printer to a local USB port or configure it on the machine where it is "
-"connected to."
-msgstr ""
-"এ প্রিন্টারের ড্রাইভার শুধুমাত্র ইউএসবি দ্বারা সংযুক্ত স্থানীয় প্রিন্টার সমর্থন করে, কোন "
-"রিমোট প্রিন্টার বা প্রিন্ট সার্ভার নয়। অনুগ্রহ করে আপনার প্রিন্টারটি স্থানীয় ইউএসবি "
-"পোর্টের সাথে সংযুক্ত করুন অথবা যে মেশিনে এটি সংযুক্ত, সেই মেশিনে কনফিগার করুন।"
-
-# সাম
-#: printer/printerdrake.pm:3458
-#, c-format
-msgid "Samsung ML/QL-85G configuration"
-msgstr "Samsung ML/QL-85G কনফিগারেশন"
-
-#: printer/printerdrake.pm:3459 printer/printerdrake.pm:3486
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected on the "
-"first parallel port, no printers on remote machines or print server boxes or "
-"on other parallel ports. Please connect your printer to the first parallel "
-"port or configure it on the machine where it is connected to."
-msgstr ""
-"এ প্রিন্টারের ড্রাইভার শুধুমাত্র প্রথম প্যারালাল পোর্ট দ্বারা সংযুক্ত স্থানীয় প্রিন্টার "
-"সমর্থন করে, কোন রিমোট প্রিন্টার, প্রিন্ট সার্ভার বা অন্য প্যারালাল পোর্ট নয়। অনুগ্রহ "
-"করে আপনার প্রিন্টারটি প্রথম প্যারালাল পোর্টের সাথে সংযুক্ত করুন অথবা যে মেশিনে এটি "
-"সংযুক্ত, সেই মেশিনে কনফিগার করুন।"
-
-# সাম
-#: printer/printerdrake.pm:3485
-#, c-format
-msgid "Canon LBP-460/660 configuration"
-msgstr "Canon LBP-460/660 কনফিগারেশন"
-
-# সাম
-#: printer/printerdrake.pm:3512
-#, fuzzy, c-format
-msgid "Canon LBP-810/1120 (CAPT) configuration"
-msgstr "Canon LBP-460/660 কনফিগারেশন"
-
-# সাম: boxes = বাক্স?
-#: printer/printerdrake.pm:3513
-#, fuzzy, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes or on the parallel "
-"port. Please connect your printer to the USB or configure it on the machine "
-"where it is directly connected to."
-msgstr ""
-"এ প্রিন্টারের ড্রাইভার শুধুমাত্র ইউএসবি দ্বারা সংযুক্ত স্থানীয় প্রিন্টার সমর্থন করে, কোন "
-"রিমোট প্রিন্টার বা প্রিন্ট সার্ভার নয়। অনুগ্রহ করে আপনার প্রিন্টারটি স্থানীয় ইউএসবি "
-"পোর্টের সাথে সংযুক্ত করুন অথবা যে মেশিনে এটি সংযুক্ত, সেই মেশিনে কনফিগার করুন।"
-
-#: printer/printerdrake.pm:3520
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "HP লেসারজেট ১০০০-এর ফার্মওয়ার-আপলোড"
-
-# সাম
-# resolution = ?
-#: printer/printerdrake.pm:3670
-#, c-format
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"প্রিন্টার ডিফল্ট মানসমূহ\n"
-"\n"
-"আপনাকে নিশ্চিত করতে হবে যে লেজার প্রিন্টারের পৃষ্ঠা সাইজ, কালির ধরন/প্রিন্টিং মোড "
-"(যদি থাকে) এবং হার্ডওয়্যার কনফিগারেশন সঠিকভাবে সেট করা হয়েছে। মনে রাখবেন মান/"
-"রেজুলেশন বাড়ানোর সাথে সাথে প্রিন্টিং এর গতি কমতে থাকে।"
-
-#: printer/printerdrake.pm:3795
-#, c-format
-msgid "Printer default settings"
-msgstr "প্রিন্টারের ডিফল্ট বৈশিষ্ট্য"
-
-#: printer/printerdrake.pm:3802
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "অপশন %s-কে অবশ্যই একটি পূর্ণসংখ্যা হতে হবে!"
-
-#: printer/printerdrake.pm:3806
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "অপশন %s-কে অবশ্যই একটি সংখ্যা হতে হবে!"
-
-#: printer/printerdrake.pm:3810
-#, c-format
-msgid "Option %s out of range!"
-msgstr "অপশন %s সীমা বহির্ভূত!"
-
-#: printer/printerdrake.pm:3862
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"আপনি কি এই প্রিন্টারটিকে (\"%s\")\n"
-"ডিফল্ট প্রিন্টাররূপে নির্দিষ্ট করতে চান?"
-
-#: printer/printerdrake.pm:3878
-#, c-format
-msgid "Test pages"
-msgstr "পরীক্ষামূলক পৃষ্ঠা"
-
-# সাম
-#: printer/printerdrake.pm:3879
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"অনুগ্রহ করে প্রিন্টিং এর জন্য পরীক্ষামূলক পৃষ্ঠা বেছে নিন।\n"
-"দ্রষ্টব্য: ছবি সম্বলিত পরীক্ষামূলক পৃষ্ঠা অনেক ধীরে প্রিন্ট হয় এবং কম মেমরি সম্পন্ন "
-"লেজার প্রিন্টারে তা প্রিন্ট নাও হতে পারে। বেশিরভাগ ক্ষেত্রে সাধারণ পরীক্ষামূলক "
-"পৃষ্ঠাটিই যথেষ্ট।"
-
-#: printer/printerdrake.pm:3883
-#, c-format
-msgid "No test pages"
-msgstr "কোন পরীক্ষামূলক পৃষ্ঠা নেই"
-
-#: printer/printerdrake.pm:3884
-#, c-format
-msgid "Print"
-msgstr "প্রিন্ট"
-
-#: printer/printerdrake.pm:3909
-#, c-format
-msgid "Standard test page"
-msgstr "সাধারণ (Standard) পরীক্ষামূলক পৃষ্ঠা"
-
-#: printer/printerdrake.pm:3912
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "বিকল্প পরীক্ষামূলক পৃষ্ঠা (লেটার)"
-
-#: printer/printerdrake.pm:3915
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "বিকল্প পরীক্ষামূলক পৃষ্ঠা (A4)"
-
-#: printer/printerdrake.pm:3917
-#, c-format
-msgid "Photo test page"
-msgstr "পরীক্ষামূলক ফটো পৃষ্ঠা"
-
-#: printer/printerdrake.pm:3930
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "পরীক্ষামূলক পৃষ্ঠা(সমূহ) ছাপানো হচ্ছে..."
-
-#: printer/printerdrake.pm:3950
-#, c-format
-msgid "Skipping photo test page."
-msgstr "পরীক্ষামূলক ফটো পৃষ্ঠা এড়িয়ে যাওয়া হচ্ছে।"
-
-#: printer/printerdrake.pm:3967
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"প্রিন্টারের নিকট পরীক্ষামূলক পৃষ্ঠা(সমূহ) পাঠানো হয়েছে।\n"
-"প্রিন্টার সচল হওয়ার জন্য কিছু সময় লাগতে পারে।\n"
-"প্রিন্টিং এর অবস্থা:\n"
-"%s\n"
-"\n"
-
-#: printer/printerdrake.pm:3971
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"প্রিন্টারের নিকট পরীক্ষামূলক পৃষ্ঠা(সমূহ) পাঠানো হয়েছে।\n"
-"প্রিন্টার সচল হওয়ার জন্য কিছু সময় লাগতে পারে।\n"
-
-#: printer/printerdrake.pm:3981
-#, c-format
-msgid "Did it work properly?"
-msgstr "এটা কি সঠিকভাবে কাজ করেছে?"
-
-#: printer/printerdrake.pm:4005
-#, c-format
-msgid "Raw printer"
-msgstr "Raw প্রিন্টার"
-
-# সাম
-#: printer/printerdrake.pm:4027
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"কমান্ড লাইন থেকে একটি ফাইল প্রিন্ট করতে (টার্মিনাল উইন্ডো) \"%s <file>\" কমান্ডটি "
-"অথবা কোন গ্রাফিকাল প্রিন্টিং টুল: \"xpp <file>\" or \"kprinter <file>\" ব্যবহার "
-"করুন। গ্রাফিকাল টুলগুলো দিয়ে আপনি সহজেই প্রিন্টার বেছে নিতে ও তার অপশনগুলো বদলাতে "
-"পারবেন।\n"
-
-# সাম
-#: printer/printerdrake.pm:4029
-#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"এই কমান্ডগুলো আপনি অনেক অ্যাপ্লিকেশনের প্রিন্ট ডায়ালগের \"প্রিন্টিং কমান্ড\" ক্ষেত্রে "
-"ব্যবহার করতে পারেন, কিন্তু এখানে ফাইল নাম উল্লেখ করবেন না কারন তা অ্যাপ্লিকেশন "
-"থেকে সরবরাহ করা হয়।\n"
-
-# সাম
-#: printer/printerdrake.pm:4032 printer/printerdrake.pm:4049
-#: printer/printerdrake.pm:4059
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"\"%s\" কমান্ডটি একটি প্রিন্টিং কাজের অপশন সেটিং পরিবর্তন করার জন্যেও ব্যবহৃত হয়। "
-"ইচ্ছানুযায়ী আপনার সেটিংগুলো কমান্ড লাইনে লিখুন, যেমন \"%s <ফাইল>\"।"
-
-# সাম: current = বর্তমান?
-# Print option list
-#: printer/printerdrake.pm:4035 printer/printerdrake.pm:4075
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"বর্তমান প্রিন্টারের অপশনসমূহ জানতে নিম্নলিখিত তালিকাটি পড়ুন অথবা \"প্রিন্ট অপশনের "
-"তালিকা\" বাটন ক্লিক করুন।%s%s%s\n"
-"\n"
-
-#: printer/printerdrake.pm:4039
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"এখানে বর্তমান প্রিন্টারের জন্য একটি সহজলভ্য প্রিন্টিং অপশনের তালিকা:\n"
-"\n"
-
-#: printer/printerdrake.pm:4044 printer/printerdrake.pm:4054
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"কমান্ড লাইন থেকে একটি ফাইল প্রিন্ট করতে (টার্মিনাল উইন্ডো) \"%s <file>\" কমান্ডটি "
-"ব্যবহার করুন।\n"
-
-# সাম
-#: printer/printerdrake.pm:4046 printer/printerdrake.pm:4056
-#: printer/printerdrake.pm:4066
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"এই কমান্ড আপনি অনেক অ্যাপ্লিকেশনের প্রিন্ট ডায়ালগের \"প্রিন্টিং কমান্ড\" ক্ষেত্রে "
-"ব্যবহার করতে পারেন, কিন্তু এখানে ফাইল নাম উল্লেখ করবেন না কারন তা অ্যাপ্লিকেশন "
-"থেকে সরবরাহ করা হয়।\n"
-
-# সাম: current = বর্তমান?
-#: printer/printerdrake.pm:4051 printer/printerdrake.pm:4061
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr "বর্তমান প্রিন্টারের অপশনসমূহ জানতে \"প্রিন্ট অপশনের তালিকা\" বাটন ক্লিক করুন।"
-
-#: printer/printerdrake.pm:4064
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"কমান্ড লাইন থেকে একটি ফাইল প্রিন্ট করতে (টার্মিনাল উইন্ডো) \"%s <file>\" অথবা \"%"
-"s <file>\" কমান্ডটি ব্যবহার করুন।\n"
-
-# সাম
-# panic button = জরুরী বাটন?
-# immediately =
-# ত‍‍তক্ষনাত বানান করতে পারি নাই।
-#: printer/printerdrake.pm:4068
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"অপশন সেটিং এবং প্রিন্টিং কাজ ব্যবস্থাপনায় আপনি \"xpdq\" গ্রাফিক্যাল ইন্টারফেসটিও "
-"ব্যবহার করতে পারেন।\n"
-"আপনি যদি ডেস্কটপ পরিবেশ হিসেবে KDE ব্যবহার করেন, তবে এতে একটি \"জরুরী বাটন\" "
-"থাকবে, একটি \"STOP Printer!\" নামের আইকন, যা ক্লিক করে সব প্রিন্টিং এর কাজ "
-"ত‍‍তক্ষনাত বন্ধ করা যাবে। ধরুন এটি ব্যবহার হবে প্রিন্টারে পৃষ্ঠা আটকিয়ে গেলে।\n"
-
-# সাম
-#: printer/printerdrake.pm:4072
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"\"%s\" এবং \"%s\" কমান্ডগুলো একটি প্রিন্টিং কাজের অপশন সেটিং পরিবর্তন করার জন্যেও "
-"ব্যবহৃত হয়। ইচ্ছানুযায়ী আপনার সেটিংগুলো কমান্ড লাইনে লিখুন, যেমন \"%s <ফাইল>\"।\n"
-
-# সাম
-#: printer/printerdrake.pm:4081
-#, c-format
-msgid "Using/Maintaining the printer \"%s\""
-msgstr "প্রিন্টার \"%s\" ব্যবহার/রক্ষণাবেক্ষন করা হচ্ছে"
-
-#: printer/printerdrake.pm:4082
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "\"%s\" প্রিন্টারে মুদ্রিত হচ্ছে"
-
-#: printer/printerdrake.pm:4088
-#, c-format
-msgid "Print option list"
-msgstr "প্রিন্ট সংক্রান্ত অপশনের তালিকা"
-
-#: printer/printerdrake.pm:4092
-#, fuzzy, c-format
-msgid "Printing option list..."
-msgstr "প্রিন্ট সংক্রান্ত অপশনের তালিকা"
-
-# সাম
-#: printer/printerdrake.pm:4110
-#, c-format
-msgid ""
-"Your %s is set up with HP's HPLIP driver software. This way many special "
-"features of your printer are supported.\n"
-"\n"
-msgstr ""
-"আপনার %s টি HP এর HPLIP ড্রাইভার সফ্টওয়্যার দিয়ে সেটআপ করা হয়েছে। এভাবে আপনার "
-"প্রিন্টারের অনেক বিশেষ ফিচারকে সাপোর্ট দেয়া হয়েছে।\n"
-"\n"
-
-# সাম
-#: printer/printerdrake.pm:4113
-#, c-format
-msgid ""
-"The scanner in your printer can be used with the usual SANE software, for "
-"example Kooka or XSane (Both in the Multimedia/Graphics menu). "
-msgstr ""
-"আপনার প্রিন্টারের স্ক্যানারটি সাধারণ SANE সফ্টওয়্যার দিয়ে ব্যবহার করা যাবে যেমন, "
-"Kooka বা XSane (দুটোই মাল্টিমিডিয়া/গ্রাফিক্স মেনুতে অবস্থিত)। "
-
-# সাম
-# শেয়ার
-#: printer/printerdrake.pm:4114
-#, c-format
-msgid ""
-"Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to "
-"share your scanner on the network.\n"
-"\n"
-msgstr ""
-"আপনার স্ক্যানারটি নেটওয়ার্ক শেয়ার করার জন্য Scannerdrake (Mandriva Linux নিয়ন্ত্রণ "
-"কেন্দ্র হার্ডওয়্যার/স্ক্যানার) চালান।\n"
-"\n"
-
-# সাম:
-# USB mass storage?
-#: printer/printerdrake.pm:4118
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed like a usual USB "
-"mass storage device. "
-msgstr ""
-"আপনার প্রিন্টারের মেমরী কার্ড রিডারগুলো সাধারণ USB mass storage এর মত ব্যবহার করা "
-"যায়। "
-
-# সাম
-#: printer/printerdrake.pm:4119
-#, c-format
-msgid ""
-"After inserting a card a hard disk icon to access the card should appear on "
-"your desktop.\n"
-"\n"
-msgstr ""
-"কার্ড ঢোকানোর পর এটি ব্যবহার করার জন্য আপনার ডেস্কটপে একটি হার্ড ডিস্কের আইকন "
-"আসবে।\n"
-"\n"
-
-# সাম
-#: printer/printerdrake.pm:4121
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed using HP's Printer "
-"Toolbox (Menu: System/Monitoring/HP Printer Toolbox) clicking the \"Access "
-"Photo Cards...\" button on the \"Functions\" tab. "
-msgstr ""
-"আপনার প্রিন্টারের মেমরী কার্ড রিডারগুলো ব্যবহার করতে হলে HP এর প্রিন্টার টুলবক্সে "
-"(মেনু: সিস্টেম/পর্যবেক্ষণ/HP প্রিন্টার টুলবক্স) \"ফাংশান\" ট্যাবে \"ফটো কার্ড ব্যবহার "
-"কর...\" বাটন ক্লিক করুন। "
-
-# সাম
-#: printer/printerdrake.pm:4122
-#, c-format
-msgid ""
-"Note that this is very slow, reading the pictures from the camera or a USB "
-"card reader is usually faster.\n"
-"\n"
-msgstr ""
-"মনে রাখবেন এটি অনেক সময়সাপেক্ষ, ক্যামেরা বা USB card reader থেকে ছবি পড়া "
-"সাধারণত আরও দ্রুত হয়।\n"
-"\n"
-
-# সাম
-#: printer/printerdrake.pm:4125
-#, c-format
-msgid ""
-"HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a "
-"lot of status monitoring and maintenance functions for your %s:\n"
-"\n"
-msgstr ""
-"HP এর প্রিন্টার টুলবক্স (মেনু: সিস্টেম/পর্যবেক্ষণ/HP প্রিন্টার টুলবক্স) আপনার %s এর জন্য "
-"বিবিধ অবস্থা পর্যবেক্ষণ এবং রক্ষণাবেক্ষণ ফাংশানসমূহের সুবিধা প্রদান করে:\n"
-"\n"
-
-# সাম
-#: printer/printerdrake.pm:4126
-#, c-format
-msgid " - Ink level/status info\n"
-msgstr " - কালির পরিমান/অবস্থা সম্পর্কিত তথ্য\n"
-
-# সাম
-#: printer/printerdrake.pm:4127
-#, c-format
-msgid " - Ink nozzle cleaning\n"
-msgstr " - কালির নজল পরিস্কার\n"
-
-# সাম: incomplete
-#: printer/printerdrake.pm:4128
-#, c-format
-msgid " - Print head alignment\n"
-msgstr " - প্রিন্ট হেড একরেখীকরন\n"
-
-# incomplete
-#: printer/printerdrake.pm:4129
-#, c-format
-msgid " - Color calibration\n"
-msgstr " - কালার ক্যালিব্রেশন\n"
-
-#: printer/printerdrake.pm:4170 printer/printerdrake.pm:4197
-#: printer/printerdrake.pm:4232
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "প্রিন্টার কনফিগারেশন স্থানান্তর করো"
-
-# সাম
-# queues
-#: printer/printerdrake.pm:4171
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"স্পুলার %s এর জন্য করা প্রিন্টার কনফিগারেশনটি আপনি আপনার বর্তমান স্পুলার %s এ কপি "
-"করতে পারেন। সমস্ত কনফিগারেশন মান (প্রিন্টারের নাম, বর্ণনা, স্থান, সংযোগের ধরন "
-"ডিফল্ট অপশনের মান) কপি হবে, কিন্তু প্রিন্টারের কাজগুলো কপি হবে না।\n"
-"সব প্রিন্ট সারি সরানো যায় না, নিম্নলিখিত কারনে:\n"
-
-#: printer/printerdrake.pm:4174
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"যে সব প্রিন্টার নভেল (Novell) সার্ভারের সাথে যুক্ত কিংবা যে সব প্রিন্টার কোন free-"
-"formed কমান্ডের নিকট তথ্য প্রেরণ করে, তাদেরকে CUPS সমর্থন করে না।\n"
-
-#: printer/printerdrake.pm:4176
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"পি.ডি.কিউ. শুধুমাত্র স্থানীয় প্রিন্টার, দূর-নিয়ন্ত্রিত এল.পি.ডি. প্রিন্টার, এবং সকেট/টি."
-"সি.পি. প্রিন্টার সমর্থন করে।\n"
-
-#: printer/printerdrake.pm:4178
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "এল.পি.ডি. এবং LPRng আই.পি.পি. প্রিন্টার সমর্থন করে না।\n"
-
-#: printer/printerdrake.pm:4180
-#, c-format
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"উপরন্তু, এই প্রোগ্রাম বা \"foomatic-configure\" দ্বারা যে সব প্রিন্ট-সারী (Queue) "
-"তৈরি করা হয় নি, তাদেরকে স্থানান্তর করা যায় না।"
-
-#: printer/printerdrake.pm:4181
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"এছাড়া যে সব প্রিন্টারের PPD ফাইল প্রিন্টারের প্রস্তুতকারক কর্তৃক সরবরাহকৃত তাদের অথবা "
-"CUPS-এর নিজস্ব ড্রাইভারকেও স্থানান্তর করা যায় না।"
-
-#: printer/printerdrake.pm:4182
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"যে সব প্রিন্টারকে স্থানান্তর করতে চান তাদের চিহ্নিত করুন ও তারপর \"স্থানান্তর\" চাপুন।"
-
-#: printer/printerdrake.pm:4185
-#, c-format
-msgid "Do not transfer printers"
-msgstr "প্রিন্টারকে স্থানান্তর করবে না"
-
-#: printer/printerdrake.pm:4186 printer/printerdrake.pm:4202
-#, c-format
-msgid "Transfer"
-msgstr "স্থানান্তর"
-
-#: printer/printerdrake.pm:4198
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"\"%s\" নামের একটি প্রিন্টার ইতিমধ্যেই %s অধীনে আছে। \n"
-"\"স্থানান্তর\" এ ক্লিক করুন এর উপরে লেখার জন্য।\n"
-"আপনি নতুন ধরণের নাম দিতে পারেন বা এই প্রিন্টারকে এড়িয়ে যেতে পারেন।"
-
-#: printer/printerdrake.pm:4219
-#, c-format
-msgid "New printer name"
-msgstr "প্রিন্টারের নতুন নাম"
-
-#: printer/printerdrake.pm:4222
-#, c-format
-msgid "Transferring %s..."
-msgstr "%s-কে স্থানান্তর করা হচ্ছে..."
-
-# সাম
-#: printer/printerdrake.pm:4233
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"আপনি আপনার পূর্বের ডিফল্ট প্রিন্টার (\"%s\") স্থানান্তর করেছেন। আপনার নতুন প্রিন্টিং "
-"সিস্টেম %s এর জন্যেও কি এটি ডিফল্ট প্রিন্টার হবে?"
-
-# FIXME
-#: printer/printerdrake.pm:4243
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "প্রিন্টার বিষয়ক তথ্য পুনরায় পড়া হচ্ছে..."
-
-#: printer/printerdrake.pm:4253
-#, c-format
-msgid "Starting network..."
-msgstr "নেটওয়ার্ক সচল করছি..."
-
-#: printer/printerdrake.pm:4296 printer/printerdrake.pm:4300
-#: printer/printerdrake.pm:4302
-#, c-format
-msgid "Configure the network now"
-msgstr "নেটওয়ার্ককে এখন কনফিগার করো"
-
-#: printer/printerdrake.pm:4297
-#, c-format
-msgid "Network functionality not configured"
-msgstr "নেটওয়ার্কের কর্মক্ষমতা কনফিগার করা হয় নি"
-
-# সাম
-#: printer/printerdrake.pm:4298
-#, c-format
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"আপনি একটি রিমোট প্রিন্টার কনফিগার করতে যাচ্ছেন। এটির জন্য সক্রিয় নেটওয়ার্ক সংযুক্তি "
-"প্রয়োজন, কিন্তু আপনার নেটওয়ার্ক এখনো কনফিগার করা হয়নি। নেটওয়ার্ক কনফিগারেশন ছাড়াই "
-"এগিয়ে গেলে, কনফিগার করা প্রিন্টারটি ব্যবহারযোগ্য হবে না। আপনি কিভাবে এগোতে চান?"
-
-#: printer/printerdrake.pm:4301
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "নেটওয়ার্ক কনফিগার না করেই এগিয়ে যাও"
-
-# সাম
-# ইনস্টলেশন
-# নিয়ন্ত্রণ কেন্দ্র
-#: printer/printerdrake.pm:4332
-#, c-format
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network is accessible after booting your "
-"system and correct the configuration using the %s Control Center, section "
-"\"Network & Internet\"/\"Connection\", and afterwards set up the printer, "
-"also using the %s Control Center, section \"Hardware\"/\"Printer\""
-msgstr ""
-"ইনস্টলেশনের সময় করা নেটওয়ার্ক কনফিগারেশন চালু করা যাচ্ছে না। আপনার সিস্টেম বুট "
-"করার পর নেটওয়ার্কে প্রবেশ করা যাচ্ছে কিনা তা পরীক্ষা করুন এবং %s নিয়ন্ত্রণ কেন্দ্র "
-"সেকশন \"Network & Internet\"/\"Connection\" ব্যবহার করে আপনার কনফিগারেশন ঠিক "
-"করুন, এবং পরবর্তীতে আবারো %s নিয়ন্ত্রণ কেন্দ্র সেকশন \"Hardware\"/\"Printer\" দিয়ে "
-"প্রিন্টার সেটআপ করুন"
-
-# সাম:
-# hardware spelling is wrong in commonwords.po
-#: printer/printerdrake.pm:4333
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"নেটওয়ার্ক সংযুক্তি চলন্ত ছিল না এবং সক্রিয় করা সম্ভব হয়নি। অনুগ্রহ করে আপনার "
-"কনফিগারেশন ও হার্ডওয়্যার পরীক্ষা করুন। অতপর: আবার আপনার দূরবর্তী প্রিন্টার কনফিগার "
-"করার চেষ্টা করুন।"
-
-#: printer/printerdrake.pm:4343
-#, c-format
-msgid "Restarting printing system..."
-msgstr "প্রিন্টিং ব্যবস্থা পুনরায় চালু করা হচ্ছে..."
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "high"
-msgstr "উচ্চ"
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "paranoid"
-msgstr "মতিভ্রম"
-
-#: printer/printerdrake.pm:4376
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "%s নিরাপত্তা মাত্রা অনুসারে একটি প্রিন্টিং ব্যবস্থা ইনস্টল করা হচ্ছে"
-
-# সাম
-# প্রিন্টিং সিস্টেম
-# নিরাপত্তা স্তর
-#: printer/printerdrake.pm:4377
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessible by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"আপনি 2$%s নিরাপত্তা চালুকৃত একটি সিস্টেমে 1$%s প্রিন্টিং সিস্টেম ইনস্টল করতে "
-"যাচ্ছেন।\n"
-"\n"
-"এই প্রিন্টিং সিস্টেমটি একটি daemon (নেপথ্যে চলা প্রসেস) চালিয়ে রাখে যেটি প্রিন্ট "
-"জবের জন্য অপেক্ষা করে ও তা নিয়ন্ত্রন করে। এই daemon টি নেটওয়ার্কের দুরবর্তী মেশিন "
-"থেকেও ব্যবহারযোগ্য, এবং একটি আক্রমনের লক্ষ্যবস্তুও বটে। অতএব এই নিরাপত্তা স্তরে "
-"সাধারনত অল্পকিছু daemon চালু করা হয়।\n"
-"\n"
-"আপনি কি আসলেই এই মেশিনে প্রিন্টার কনফিগার করতে চান?"
-
-#: printer/printerdrake.pm:4413
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "বুট করার সময় প্রিন্টিং ব্যবস্থাকে চালু করা হবে"
-
-# সাম
-# সয়ংক্রিয়ভাবে
-# নিরাপত্তা স্তর
-#: printer/printerdrake.pm:4414
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"যখন মেশিন বুট হয়, প্রিন্টিং সিস্টেম (%s) সয়ংক্রিয়ভাবে চালু হবে না।\n"
-"\n"
-"সম্ভবত উচু নিরাপত্তা স্তরে যাওয়ার কারনে প্রিন্টিং সয়ংক্রিয়ভাবে চালু হওয়া বন্ধ করে "
-"দেয়া হয়েছে। কারন প্রিন্টিং সিস্টেম আক্রমনের একটি সম্ভাব্য লক্ষ্যবস্তু।\n"
-"\n"
-"আপনি কি প্রিন্টিং সিস্টেম সয়ংক্রিয়ভাবে চালুকরণ পুনরায় চালু করতে চান?"
-
-#: printer/printerdrake.pm:4437
-#, c-format
-msgid "Checking installed software..."
-msgstr "ইনস্টলকৃত সফটওয়ার পরীক্ষা করা হচ্ছে..."
-
-#: printer/printerdrake.pm:4443
-#, c-format
-msgid "Removing %s..."
-msgstr "%s মুছে ফেলা হচ্ছে..."
-
-#: printer/printerdrake.pm:4447
-#, c-format
-msgid "Could not remove the %s printing system!"
-msgstr "প্রিন্টিং ব্যবস্থা %s-কে অপসারণ করা যায় নি!"
-
-#: printer/printerdrake.pm:4471
-#, c-format
-msgid "Installing %s..."
-msgstr "%s ইনস্টল করা হচ্ছে..."
-
-#: printer/printerdrake.pm:4475
-#, c-format
-msgid "Could not install the %s printing system!"
-msgstr "প্রিন্টিং ব্যবস্থা %s-কে ইনস্টল করা যায় নি!"
-
-# সাম
-#: printer/printerdrake.pm:4543
-#, c-format
-msgid ""
-"In this mode there is no local printing system, all printing requests go "
-"directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-"এই মোডে কোন স্থানীয় প্রিন্টিং সিস্টেম নেই, সব প্রিন্ট অনুরোধ সরাসরি নিম্নোল্লেখিত "
-"সার্ভারে প্রবেশ করে। দ্রষ্টব্য: এই সময়ে স্থানীয় প্রিন্ট সারি নির্দিষ্ট করার কোন ব্যবস্থা "
-"নেই এবং যদি উল্লেখিত সার্ভার নিষ্ক্রিয় থাকে তবে এই মেশিন থেকে প্রিন্ট সম্ভব হবে না।"
-
-# সাম: Quit = বাহির?
-# Quit
-#: printer/printerdrake.pm:4545
-#, c-format
-msgid ""
-"Enter the host name or IP of your CUPS server and click OK if you want to "
-"use this mode, click \"Quit\" otherwise."
-msgstr ""
-"আপনার CUPS সার্ভারের হোস্ট নাম অথবা IP উল্লেখ করুন এবং যদি আপনি এই মোড ব্যবহার "
-"করতে চান তবে ঠিক আছে ক্লিক করুন, অন্যথায় \"বাহির\" ক্লিক করুন।"
-
-#: printer/printerdrake.pm:4559
-#, c-format
-msgid "Name or IP of remote server:"
-msgstr "দূরবর্তী সার্ভারের নাম অথবা IP:"
-
-#: printer/printerdrake.pm:4579
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "ডিফল্ট প্রিন্টার নির্দিষ্ট করা হচ্ছে..."
-
-# সাম
-#: printer/printerdrake.pm:4599
-#, c-format
-msgid "Local CUPS printing system or remote CUPS server?"
-msgstr "স্থানীয় CUPS প্রিন্টিং সিস্টেম, নাকি দূরবর্তী CUPS সার্ভার?"
-
-#: printer/printerdrake.pm:4600
-#, c-format
-msgid "The CUPS printing system can be used in two ways: "
-msgstr "CUPS প্রিন্টিং সিস্টেম দুইভাবে ব্যবহৃত হতে পারে: "
-
-#: printer/printerdrake.pm:4602
-#, c-format
-msgid "1. The CUPS printing system can run locally. "
-msgstr "১। CUPS প্রিন্টিং সিস্টেম স্থানীয়ভাবে চলতে পারে। "
-
-# সাম
-#: printer/printerdrake.pm:4603
-#, c-format
-msgid ""
-"Then locally connected printers can be used and remote printers on other "
-"CUPS servers in the same network are automatically discovered. "
-msgstr ""
-"স্থানীয় প্রিন্টারগুলো ব্যবহার করা যেতে পারে এবং একই নেটওয়ার্কে অবস্থিত অনান্য CUPS "
-"সার্ভারের দূরবর্তী প্রিন্টারগুলো স্বয়ংক্রিয়ভাবে সনাক্ত হয়। "
-
-# সাম:
-# resources = রিসোর্স লিখলাম।
-# daemon
-#: printer/printerdrake.pm:4604
-#, c-format
-msgid ""
-"Disadvantage of this approach is, that more resources on the local machine "
-"are needed: Additional software packages need to be installed, the CUPS "
-"daemon has to run in the background and needs some memory, and the IPP port "
-"(port 631) is opened. "
-msgstr ""
-"এই পদ্ধতিটির অসুবিধা হল, স্থানীয় মেশিনে অনেক বেশি রিসোর্স প্রয়োজন হয়: অতিরিক্ত "
-"সফ্টওয়্যার প্যাকেজ ইনস্টল করতে হয়, পাশাপাশি CUPS daemon চলতে থাকে যার জন্য মেমরী "
-"প্রয়োজন, এবং IPP পোর্টটি (পোর্ট ৬৩১) খোলা হয়। "
-
-#: printer/printerdrake.pm:4606
-#, c-format
-msgid "2. All printing requests are immediately sent to a remote CUPS server. "
-msgstr "২। সকল প্রিন্টিং অনুরোধ সরাসরি দূরবর্তী CUPS সার্ভারে পাঠানো হবে। "
-
-# সাম
-# daemon
-#: printer/printerdrake.pm:4607
-#, c-format
-msgid ""
-"Here local resource occupation is reduced to a minimum. No CUPS daemon is "
-"started or port opened, no software infrastructure for setting up local "
-"print queues is installed, so less memory and disk space is used. "
-msgstr ""
-"এখানে, স্থানীয় রিসোর্সের উপর চাপ অনেকটা কমিয়ে আনা হয়েছে। কোন CUPS daemon "
-"চালানো বা পোর্ট খোলা হয় না, স্থানীয় প্রিন্ট সারির জন্য সফ্টওয়্যার সেটআপ করা হয় না। "
-"অতএব মেমরী ও ডিস্কস্পেস দুটোই কম ব্যবহৃত হয়। "
-
-# সাম
-#: printer/printerdrake.pm:4608
-#, c-format
-msgid ""
-"Disadvantage is that it is not possible to define local printers then and if "
-"the specified server is down it cannot be printed at all from this machine. "
-msgstr ""
-"দুর্বল দিক হচ্ছে, এই সময়ে স্থানীয় প্রিন্টার নির্দিষ্ট করার কোন ব্যবস্থা নেই এবং "
-"উল্লেখিত সার্ভার যদি নিষ্ক্রিয় থাকে তবে এই মেশিন থেকে প্রিন্ট সম্ভব হবে না। "
-
-#: printer/printerdrake.pm:4610
-#, c-format
-msgid "How should CUPS be set up on your machine?"
-msgstr "আপনার সিস্টেমে CUPS কিভাবে সেট-আপ হওয়া উচিত?"
-
-#: printer/printerdrake.pm:4614 printer/printerdrake.pm:4629
-#: printer/printerdrake.pm:4633 printer/printerdrake.pm:4639
-#, c-format
-msgid "Remote server, specify Name or IP here:"
-msgstr "দূরবর্তী সার্ভার, এখানে নাম বা আই-পি দিন:"
-
-# সাম
-#: printer/printerdrake.pm:4628
-#, c-format
-msgid "Local CUPS printing system"
-msgstr "স্থানীয় CUPS প্রিন্টিং সিস্টেম"
-
-#: printer/printerdrake.pm:4667
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "প্রিন্টার স্পুলার (Spooler) নির্বাচন করুন"
-
-#: printer/printerdrake.pm:4668
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "আপনি কোন প্রিন্টিং ব্যবস্থা (স্পুলার) ব্যবহার করতে চান?"
-
-#: printer/printerdrake.pm:4717
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "প্রিন্টার \"%s\" কে কনফিগার করার প্রচেষ্টা ব্যর্থ হয়েছে!"
-
-#: printer/printerdrake.pm:4732
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "ফুম্যাটিক ইনস্টল করা হচ্ছে..."
-
-#: printer/printerdrake.pm:4738
-#, c-format
-msgid "Could not install %s packages, %s cannot be started!"
-msgstr "%s প্যাকেজ ইনস্টল করা যায় নি, %s চালু করা যাচ্ছে না!"
-
-# সাম
-#: printer/printerdrake.pm:4933
-#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it. "
-msgstr ""
-"নিম্নের প্রিন্টারগুলো কনফিগার করা হয়েছে। প্রিন্টারের সেটিংসমূহ বদলাতে, ডিফল্ট "
-"প্রিন্টার সেট করতে বা তথ্য জানতে, এর নামের উপর ডাবল‌-ক্লিক করুন। "
-
-#: printer/printerdrake.pm:4963
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "সকল ব্যবহারযোগ্য দূর-নিয়ন্ত্রিত CUPS প্রিন্টার প্রদর্শন করো"
-
-#: printer/printerdrake.pm:4964
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"প্রিন্টারের তালিকা পুনরায় প্রদর্শন করো (সকল ব্যবহারযোগ্য দূর-নিয়ন্ত্রিত CUPS প্রিন্টার "
-"প্রদর্শন করার জন্য)"
-
-#: printer/printerdrake.pm:4975
-#, c-format
-msgid "CUPS configuration"
-msgstr "CUPS কনফিগার"
-
-#: printer/printerdrake.pm:4996
-#, c-format
-msgid "Change the printing system"
-msgstr "প্রিন্টিং ব্যবস্থা পরিবর্তন করো"
-
-#: printer/printerdrake.pm:5005
-#, c-format
-msgid "Normal Mode"
-msgstr "সাধারণ মোড"
-
-#: printer/printerdrake.pm:5006
-#, c-format
-msgid "Expert Mode"
-msgstr "অভিজ্ঞ মোড"
-
-#: printer/printerdrake.pm:5284 printer/printerdrake.pm:5340
-#: printer/printerdrake.pm:5426 printer/printerdrake.pm:5435
-#, c-format
-msgid "Printer options"
-msgstr "প্রিন্টার সংক্রান্ত অপশন"
-
-#: printer/printerdrake.pm:5320
-#, c-format
-msgid "Modify printer configuration"
-msgstr "প্রিন্টার কনফিগারেশন পরিবর্তন করো"
-
-#: printer/printerdrake.pm:5322
-#, c-format
-msgid ""
-"Printer %s%s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"প্রিন্টার %s%s\n"
-"আপনি এই প্রিন্টারের কি পরিবর্তন করতে চান?"
-
-# সাম
-#: printer/printerdrake.pm:5327
-#, c-format
-msgid "This printer is disabled"
-msgstr "এই প্রিন্টারটি নিষ্ক্রিয়"
-
-#: printer/printerdrake.pm:5329
-#, c-format
-msgid "Do it!"
-msgstr "করে ফেলো!"
-
-#: printer/printerdrake.pm:5335 printer/printerdrake.pm:5400
-#, c-format
-msgid "Printer name, description, location"
-msgstr "প্রিন্টারের নাম, বিবরণ, অবস্থান"
-
-#: printer/printerdrake.pm:5337 printer/printerdrake.pm:5419
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "প্রিন্টারের প্রস্তুতকারক, মডেল, ড্রাইভার"
-
-#: printer/printerdrake.pm:5338 printer/printerdrake.pm:5420
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "প্রিন্টারের প্রস্তুতকারক, মডেল"
-
-#: printer/printerdrake.pm:5342 printer/printerdrake.pm:5430
-#, c-format
-msgid "Set this printer as the default"
-msgstr "এই প্রিন্টারটিকে ডিফল্ট হিসেবে নির্দিষ্ট করো"
-
-# সাম
-#: printer/printerdrake.pm:5347 printer/printerdrake.pm:5436
-#: printer/printerdrake.pm:5438 printer/printerdrake.pm:5447
-#, c-format
-msgid "Enable Printer"
-msgstr "প্রিন্টার সক্রিয় করো"
-
-# সাম
-#: printer/printerdrake.pm:5350 printer/printerdrake.pm:5441
-#: printer/printerdrake.pm:5442 printer/printerdrake.pm:5444
-#, c-format
-msgid "Disable Printer"
-msgstr "প্রিন্টার নিষ্ক্রিয় করো"
-
-#: printer/printerdrake.pm:5354 printer/printerdrake.pm:5448
-#, fuzzy, c-format
-msgid "Printer communication error handling"
-msgstr "প্রিন্টার সংযোগের ধরন"
-
-#: printer/printerdrake.pm:5355 printer/printerdrake.pm:5452
-#, c-format
-msgid "Print test pages"
-msgstr "পরীক্ষামূলক পৃষ্ঠা ছাপাও"
-
-#: printer/printerdrake.pm:5356 printer/printerdrake.pm:5454
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "এই প্রিন্টারের ব্যবহার শিখুন"
-
-#: printer/printerdrake.pm:5357 printer/printerdrake.pm:5456
-#, c-format
-msgid "Remove printer"
-msgstr "প্রিন্টার অপসারণ করো"
-
-#: printer/printerdrake.pm:5408
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "পুরনো প্রিন্টার \"%s\"-কে অপসারণ করা হচ্ছে..."
-
-# সাম
-#: printer/printerdrake.pm:5439
-#, c-format
-msgid "Printer \"%s\" is now enabled."
-msgstr "\"%s\" প্রিন্টারটি এখন সক্রিয়।"
-
-# সাম
-#: printer/printerdrake.pm:5445
-#, c-format
-msgid "Printer \"%s\" is now disabled."
-msgstr "\"%s\" প্রিন্টারটি এখন নিষ্ক্রিয়।"
-
-#: printer/printerdrake.pm:5487
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "আপনি কি \"%s\" প্রিন্টারটি অপসারণের ব্যাপারে নিশ্চিত?"
-
-#: printer/printerdrake.pm:5491
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "\"%s\" প্রিন্টারটি অপসারণ করা হচ্ছে..."
-
-#: printer/printerdrake.pm:5515
-#, c-format
-msgid "Default printer"
-msgstr "ডিফল্ট প্রিন্টার"
-
-#: printer/printerdrake.pm:5516
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "এখন \"%s\" প্রিন্টারটি ডিফল্ট হিসেবে রয়েছে।"
-
#: raid.pm:42
#, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "_ফরম্যাটকৃত_ রেইড %s-এ পার্টিশন যোগ করা যাচ্ছে না"
-#: raid.pm:148
+#: raid.pm:150
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "রেইড স্তর %d-এর জন্য পর্যাপ্ত সংখ্যক পার্টিশন নেই\n"
-#: scanner.pm:96
+#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr "/usr/share/sane/firmware ডিরেক্টরিটি তৈরি করা যায় নি!"
-#: scanner.pm:107
+#: scanner.pm:106
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr "/usr/share/sane/%s লিঙ্কটি তৈরি করা যায় নি!"
-#: scanner.pm:114
+#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr ""
"ফার্মওয়ার ফাইল %s-কে /usr/share/sane/firmware ডিরেক্টরিতে কপি করা যায় নি!"
-#: scanner.pm:121
+#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr "ফার্মওয়ার ফাইল %s-এর অনুমতি নির্দিষ্ট করা যায় নি!"
-#: scanner.pm:200 standalone/scannerdrake:66 standalone/scannerdrake:70
-#: standalone/scannerdrake:78 standalone/scannerdrake:321
-#: standalone/scannerdrake:370 standalone/scannerdrake:463
-#: standalone/scannerdrake:507 standalone/scannerdrake:511
-#: standalone/scannerdrake:533 standalone/scannerdrake:598
+#: scanner.pm:199
#, c-format
msgid "Scannerdrake"
msgstr "স্ক্যানার-ড্রেক"
-#: scanner.pm:201 standalone/scannerdrake:964
+#: scanner.pm:200
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr "আপনার স্ক্যানার(সমূহ) শেয়ার করার জন্য প্রয়োজনীয় প্যাকেজ ইনস্টল করা যায় নি।"
-#: scanner.pm:202
+#: scanner.pm:201
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr "আপনার স্ক্যানার(সমূহ) রুট ব্যতীত অপর ব্যবহারকারীগণ ব্যবহার করতে পারবে না।"
@@ -14850,13 +5042,13 @@ msgstr "ভূয়া IPv4 বার্তা গ্রহণে সম্মত
#: security/help.pm:13
#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr " ব্রডকাস্ট আই.সি.এম.পি. ইকো গ্রহণে সম্মতি/অসম্মতি জানাও।"
+msgid "Accept/Refuse broadcasted icmp echo."
+msgstr "ব্রডকাস্ট আই.সি.এম.পি. ইকো গ্রহণে সম্মতি/অসম্মতি জানাও।"
#: security/help.pm:15
#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr " আই.সি.এম.পি. ইকো গ্রহণে সম্মতি/অসম্মতি জানাও।"
+msgid "Accept/Refuse icmp echo."
+msgstr "আই.সি.এম.পি. ইকো গ্রহণে সম্মতি/অসম্মতি জানাও।"
#: security/help.pm:17
#, c-format
@@ -15028,7 +5220,7 @@ msgstr ""
"নাম বিশ্লেষন স্পুফিং প্রতিরক্ষা ব্যবস্থা সক্রিয়/নিষ্ক্রিয় করো। যদি\n"
"\"%s\" সত্য হয়, তবে syslog এও রিপোর্ট করো।"
-#: security/help.pm:80 standalone/draksec:215
+#: security/help.pm:80
#, c-format
msgid "Security Alerts:"
msgstr "নিরাপত্তা সতর্কতা:"
@@ -15055,11 +5247,12 @@ msgid "Enable/Disable msec hourly security check."
msgstr "msec-এর ঘন্টা প্রতি নিরাপত্তা পরীক্ষা সক্রিয়/নিষ্ক্রিয় করো।"
#: security/help.pm:90
-#, c-format
+#, fuzzy, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"Enable su only from members of the wheel group. If set to no, allows su from "
+"any user."
msgstr ""
-" শুধুমাত্র wheel গ্রুপের ব্যবহারকারীদের জন্য অথবা যে কোন ব্যবহারকারীর জন্য su সক্রিয় "
+"শুধুমাত্র wheel গ্রুপের ব্যবহারকারীদের জন্য অথবা যে কোন ব্যবহারকারীর জন্য su সক্রিয় "
"করো।"
#: security/help.pm:92
@@ -15075,13 +5268,13 @@ msgstr "ইথারনেট কার্ডের বহুরূপী পর
#: security/help.pm:96
#, c-format
-msgid " Activate/Disable daily security check."
-msgstr " দৈনিক নিরাপত্তা পরীক্ষা সক্রিয়/নিষ্ক্রিয় করো।"
+msgid "Activate/Disable daily security check."
+msgstr "দৈনিক নিরাপত্তা পরীক্ষা সক্রিয়/নিষ্ক্রিয় করো।"
#: security/help.pm:98
#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr " একক ব্যবহারের ক্ষেত্রে (Single user level) sulogin(8) সক্রিয়/নিষ্ক্রিয় করো।"
+msgid "Enable/Disable sulogin(8) in single user level."
+msgstr "একক ব্যবহারের ক্ষেত্রে (Single user level) sulogin(8) সক্রিয়/নিষ্ক্রিয় করো।"
#: security/help.pm:100
#, c-format
@@ -15357,8 +5550,8 @@ msgid "Enable msec hourly security check"
msgstr "প্রতিঘন্টায় msec নিরাপত্তা পরীক্ষা সক্রিয় করো"
#: security/l10n.pm:32
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
+#, fuzzy, c-format
+msgid "Enable su only from the wheel group members"
msgstr ""
"শুধুমাত্র wheel গ্রুপের সদস্যদের জন্য অথবা সকল ব্যবহারকারীর জন্য su ব্যবহারের সুযোগ "
"সক্রিয় করো"
@@ -15485,8 +5678,8 @@ msgstr "chkrootkit পরীক্ষা চালাও"
#: security/l10n.pm:57
#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "অপ্রয়োজনে মেইল প্রেরণ করবে না"
+msgid "Do not send empty mail reports"
+msgstr ""
#: security/l10n.pm:58
#, c-format
@@ -15525,6 +5718,11 @@ msgstr "ক্র্যাকারগণকে স্বাগতম"
msgid "Poor"
msgstr "অপর্যাপ্ত"
+#: security/level.pm:12
+#, c-format
+msgid "Standard"
+msgstr "সাধারণ"
+
#: security/level.pm:13
#, c-format
msgid "High"
@@ -15609,6 +5807,11 @@ msgstr ""
#: security/level.pm:55
#, c-format
+msgid "Security"
+msgstr "সিকিউরিটি"
+
+#: security/level.pm:55
+#, c-format
msgid "DrakSec Basic Options"
msgstr "ড্রেকসেক-এর প্রাথমিক অপশন"
@@ -15997,52 +6200,67 @@ msgstr "ইউ.এস.বি. ডিভাইসের ড্রাইভার
msgid "Starts the X Font Server (this is mandatory for Xorg to run)."
msgstr "এক্স ফন্ট সার্ভার চালু করে (Xorg চালানোর জন্য এটি বাধ্যতামূলক)।"
-#: services.pm:115 services.pm:157
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "বুট হওয়ার সময় যে সব সার্ভিস স্বয়ংক্রিয়ভাবে চালু হবে তাদের বেছে নিন"
-
-#: services.pm:127 standalone/draksambashare:111
+#: services.pm:114
#, c-format
msgid "Printing"
msgstr "প্রিন্টিং"
-#: services.pm:128
+#: services.pm:115
#, c-format
msgid "Internet"
msgstr "ইন্টারনেট"
-#: services.pm:131
+#: services.pm:118
#, c-format
msgid "File sharing"
msgstr "ফাইল শেয়ারকরণ"
-#: services.pm:138
+#: services.pm:120
+#, c-format
+msgid "System"
+msgstr "সি"
+
+#: services.pm:125
#, c-format
msgid "Remote Administration"
msgstr "দূর-নিয়ন্ত্রিত অ্যাডমিনিস্ট্রেশন"
-#: services.pm:146
+#: services.pm:133
#, c-format
msgid "Database Server"
msgstr "ডেটাবেস সার্ভার"
-#: services.pm:209
+#: services.pm:144 services.pm:180
+#, c-format
+msgid "Services"
+msgstr "সার্ভিস সমূহ"
+
+#: services.pm:144
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr "বুট হওয়ার সময় যে সব সার্ভিস স্বয়ংক্রিয়ভাবে চালু হবে তাদের বেছে নিন"
+
+#: services.pm:162
+#, c-format
+msgid "Services: %d activated for %d registered"
+msgstr "সার্ভিস সমূহ: %d সক্রিয় হয়েছে %d রেজিষ্টারের জন্য"
+
+#: services.pm:196
#, c-format
msgid "running"
msgstr "চলন্ত"
-#: services.pm:209
+#: services.pm:196
#, c-format
msgid "stopped"
msgstr "স্থগিত"
-#: services.pm:213
+#: services.pm:201
#, c-format
msgid "Services and daemons"
msgstr "সার্ভিসসমূহ এবং ড্যেমনসমূহ"
-#: services.pm:219
+#: services.pm:207
#, c-format
msgid ""
"No additional information\n"
@@ -16051,493 +6269,32 @@ msgstr ""
"দুঃখিত, এই সার্ভিসটি সম্পর্কে\n"
"অতিরিক্ত আর কোন তথ্য নেই।"
-#: services.pm:224 ugtk2.pm:1009
+#: services.pm:212 ugtk2.pm:898
#, c-format
msgid "Info"
msgstr "তথ্য"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "Start when requested"
msgstr "অনুরোধের ভিত্তিতে সচল করো"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "On boot"
msgstr "বুট করার সময় চালু করো"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Start"
msgstr "আরম্ভ"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Stop"
msgstr "বন্ধ"
-#: share/advertising/01.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Packs"
-msgstr ""
-
-#: share/advertising/02.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More features"
-msgstr ""
-
-#: share/advertising/03.pl:3
-#, c-format
-msgid "Interactive firewall"
-msgstr ""
-
-#: share/advertising/04.pl:3
-#, c-format
-msgid "Desktop search"
-msgstr ""
-
-#: share/advertising/05.pl:3
-#, c-format
-msgid "New package manager"
-msgstr ""
-
-#: share/advertising/06.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More performances"
-msgstr ""
-
-#: share/advertising/07.pl:3
-#, c-format
-msgid "Latest kernel and GCC"
-msgstr ""
-
-#: share/advertising/08.pl:3
-#, c-format
-msgid "High Availibility"
-msgstr ""
-
-#: share/advertising/09.pl:3
-#, c-format
-msgid "Delta RPM"
-msgstr ""
-
-#: share/advertising/10.pl:3
-#, c-format
-msgid "Low resources setup"
-msgstr ""
-
-#: share/advertising/11.pl:3
-#, c-format
-msgid "Boot time reduction"
-msgstr ""
-
-#: share/advertising/12.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Easier to use"
-msgstr ""
-
-#: share/advertising/13.pl:3
-#, c-format
-msgid "Latest graphical interfaces: KDE and GNOME"
-msgstr ""
-
-#: share/advertising/14.pl:3
-#, c-format
-msgid "auto-installation servers"
-msgstr ""
-
-#: share/advertising/15.pl:3
-#, c-format
-msgid "Easy and quick installation"
-msgstr ""
-
-#: share/advertising/16.pl:3
-#, c-format
-msgid "Easy configuration thanks to 60 wizards"
-msgstr ""
-
-#: share/advertising/17.pl:3
-#, c-format
-msgid "Look and feel improved"
-msgstr ""
-
-#: share/advertising/18.pl:3
-#, c-format
-msgid "New webmin theme"
-msgstr ""
-
-#: share/advertising/19.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More support"
-msgstr ""
-
-#: share/advertising/20.pl:3
-#, c-format
-msgid "Better Hardware support"
-msgstr ""
-
-#: share/advertising/21.pl:3
-#, c-format
-msgid "Xen support"
-msgstr ""
-
-#: share/advertising/22.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More information"
-msgstr ""
-
-#: share/advertising/23.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Where to buy?"
-msgstr ""
-
-#: share/advertising/24.pl:3
-#, c-format
-msgid "Where to find technical assistance?"
-msgstr ""
-
-#: share/advertising/25.pl:3
-#, c-format
-msgid "How to join the Mandriva Linux community?"
-msgstr ""
-
-#: share/advertising/26.pl:3
-#, c-format
-msgid "How to keep your system up-to-date?"
-msgstr ""
-
-#: share/advertising/intel.pl:3
-#, c-format
-msgid "Intel Software"
-msgstr ""
-
-#: share/advertising/skype.pl:3
-#, c-format
-msgid "Skype lets you make calls through the Internet for free."
-msgstr ""
-
-#: share/compssUsers.pl:26
-#, c-format
-msgid "Office Workstation"
-msgstr "অফিস ওয়ার্কষ্টেশন"
-
-#: share/compssUsers.pl:28
-#, c-format
-msgid ""
-"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
-"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
-msgstr ""
-"অফিস প্রোগ্রামসমূহ: ওয়ার্ডপ্রসেসর (OpenOffice.org Writer, Kword), স্প্রেডসিট "
-"(OpenOffice.org Calc, Kspread), PDF ফাইল প্রদর্শক ইত্যাদী"
-
-#: share/compssUsers.pl:29
-#, c-format
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"অফিস প্রোগ্রামসমূহ: ওয়ার্ডপ্রসেসর (kword, abiword), স্প্রেডসিট (kspread, gnumeric), "
-"PDF ফাইল প্রদর্শক ইত্যাদী"
-
-#: share/compssUsers.pl:34
-#, c-format
-msgid "Game station"
-msgstr "গেশ ষ্টেশন"
-
-#: share/compssUsers.pl:35
-#, c-format
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "উদ্দীপনামূলক প্রোগ্রামসমূহ: আর্কেড, বোর্ড, স্ট্রেটেজি, ইত্যাদি"
-
-#: share/compssUsers.pl:38
-#, c-format
-msgid "Multimedia station"
-msgstr "মাল্টিমিডিয়া ষ্টেশন"
-
-#: share/compssUsers.pl:39
-#, c-format
-msgid "Sound and video playing/editing programs"
-msgstr "সাউন্ড এবং ভিডিও দেখার/এডিট করার প্রোগ্রামসমূহ"
-
-#: share/compssUsers.pl:44
-#, c-format
-msgid "Internet station"
-msgstr "ইন্টারনেট ষ্টেশন"
-
-#: share/compssUsers.pl:45
-#, c-format
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"মেইল আদানপ্রদান, খবর পড়া এবং ওয়েব ব্রাউজিং (mutt, tin..) এর জন্য কিছু টুলের সেট"
-
-#: share/compssUsers.pl:50
-#, c-format
-msgid "Network Computer (client)"
-msgstr "নেটওয়ার্ক কম্পিউটার (ক্লাইন্ট)"
-
-#: share/compssUsers.pl:51
-#, c-format
-msgid "Clients for different protocols including ssh"
-msgstr "SSH সহ বিভিন্ন প্রোটকলের জন্য ক্লাইন্টসমূহ"
-
-#: share/compssUsers.pl:55
-#, c-format
-msgid "Configuration"
-msgstr "কনফিগারেশন"
-
-#: share/compssUsers.pl:56
-#, c-format
-msgid "Tools to ease the configuration of your computer"
-msgstr "আপনার কম্পিউটারের কনফিগারেশন সহজ করার জন্য কিছু টুল"
-
-#: share/compssUsers.pl:60
-#, c-format
-msgid "Console Tools"
-msgstr "কনসল টুল"
-
-#: share/compssUsers.pl:61
-#, c-format
-msgid "Editors, shells, file tools, terminals"
-msgstr "এডিটর, শেল, ফাইল টুল, টার্মিনাল সমূহ"
-
-#: share/compssUsers.pl:66 share/compssUsers.pl:170
-#, c-format
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C এবং C++ ডেভলপমেন্টের লাইব্রেরী, প্রগ্রাম এবং include ফাইলসমূহ"
-
-#: share/compssUsers.pl:70 share/compssUsers.pl:174
-#, c-format
-msgid "Documentation"
-msgstr "ডকুমেন্টেশন"
-
-#: share/compssUsers.pl:71 share/compssUsers.pl:175
-#, c-format
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "লিনাক্স এবং ফ্রী সফটওয়ার সংক্রান্ত বই ও হাউটু (HOWTO)"
-
-#: share/compssUsers.pl:75 share/compssUsers.pl:178
-#, c-format
-msgid "LSB"
-msgstr "LSB"
-
-#: share/compssUsers.pl:76 share/compssUsers.pl:179
-#, c-format
-msgid "Linux Standard Base. Third party applications support"
-msgstr "লিনাক্সের সাধারণ আধার। তৃতীয়পক্ষ এপ্লিকেশন সমূহের সাপোর্ট"
-
-#: share/compssUsers.pl:86
-#, c-format
-msgid "Apache"
-msgstr "এ্যপাচি"
-
-#: share/compssUsers.pl:89
-#, c-format
-msgid "Groupware"
-msgstr "গ্রুপওয়্যার"
-
-#: share/compssUsers.pl:90
-#, c-format
-msgid "Kolab Server"
-msgstr "Kolab সার্ভার"
-
-#: share/compssUsers.pl:93 share/compssUsers.pl:134
-#, c-format
-msgid "Firewall/Router"
-msgstr "ফায়ারওয়াল/রাউটার"
-
-#: share/compssUsers.pl:94 share/compssUsers.pl:135
-#, c-format
-msgid "Internet gateway"
-msgstr "ইন্টারনেট গেটওয়ে"
-
-# সাম
-#: share/compssUsers.pl:97
-#, c-format
-msgid "Mail/News"
-msgstr "মেইল/সংবাদ"
-
-# সাম
-#: share/compssUsers.pl:98
-#, c-format
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix মেইল সার্ভার, Inn সংবাদ সার্ভার"
-
-# সাম
-#: share/compssUsers.pl:101
-#, c-format
-msgid "Directory Server"
-msgstr "ডিরেক্টরি সার্ভার"
-
-#: share/compssUsers.pl:105
-#, c-format
-msgid "FTP Server"
-msgstr "FTP সার্ভার"
-
-# সাম
-#: share/compssUsers.pl:106
-#, c-format
-msgid "ProFTPd"
-msgstr "ProFTPd"
-
-# সাম
-#: share/compssUsers.pl:109
-#, c-format
-msgid "DNS/NIS"
-msgstr "ডিএনএস/এনআইএস"
-
-# sam
-#: share/compssUsers.pl:110
-#, c-format
-msgid "Domain Name and Network Information Server"
-msgstr "ডোমেইন নেম এবং নেটওয়ার্ক ইনফরমেশন সার্ভার"
-
-# sam: 'sharing' is kept as it is because this is the server name.
-#: share/compssUsers.pl:113
-#, c-format
-msgid "File and Printer Sharing Server"
-msgstr "ফাইল এবং প্রিন্টার শেয়ারিং সার্ভার"
-
-# sam
-#: share/compssUsers.pl:114
-#, c-format
-msgid "NFS Server, Samba server"
-msgstr "NFS সার্ভার, Samba সার্ভার"
-
-#: share/compssUsers.pl:117 share/compssUsers.pl:130
-#, c-format
-msgid "Database"
-msgstr "ডেটাবেস"
-
-#: share/compssUsers.pl:118
-#, c-format
-msgid "PostgreSQL and MySQL Database Server"
-msgstr "PostgreSQL অথবা MySQL ডেটাবেস সার্ভার"
-
-#: share/compssUsers.pl:122
-#, c-format
-msgid "Web/FTP"
-msgstr "ওয়েব/FTP"
-
-#: share/compssUsers.pl:123
-#, c-format
-msgid "Apache, Pro-ftpd"
-msgstr "এ্যপাচি, Pro-ftpd"
-
-#: share/compssUsers.pl:126
-#, c-format
-msgid "Mail"
-msgstr "মেইল"
-
-#: share/compssUsers.pl:127
-#, c-format
-msgid "Postfix mail server"
-msgstr "Postfix মেইল সার্ভার"
-
-#: share/compssUsers.pl:131
-#, c-format
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL অথবা MySQL ডেটাবেস সার্ভার"
-
-#: share/compssUsers.pl:138
-#, c-format
-msgid "Network Computer server"
-msgstr "নেটওয়ার্ক কম্পিউটার সার্ভার"
-
-#: share/compssUsers.pl:139
-#, c-format
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS সার্ভার, SMB সার্ভার, Proxy সার্ভার, ssh সার্ভার"
-
-#: share/compssUsers.pl:147
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE ওয়ার্কষ্টেশন"
-
-#: share/compssUsers.pl:148
-#, c-format
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr "K ডেক্সটপ, কিছু সহযোগীমূলক টুলের সমন্বয়ে একটি সাধারণ গ্রাফিকাল পরিবেশ"
-
-#: share/compssUsers.pl:152
-#, c-format
-msgid "GNOME Workstation"
-msgstr "গুহনোম ওয়ার্কষ্টেশন"
-
-#: share/compssUsers.pl:153
-#, c-format
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"ব্যবহারকারীর বন্ধুসূলভ কিছু এপ্লিকেশন এবং ডোক্সটপ টুলের সমন্বয়ে একটি গ্রাফিকাল পরিবেশ"
-
-#: share/compssUsers.pl:156
-#, fuzzy, c-format
-msgid "IceWm Desktop"
-msgstr "প্লাকার ডেস্কটপ"
-
-#: share/compssUsers.pl:160
-#, c-format
-msgid "Other Graphical Desktops"
-msgstr "অন্যান্য গ্রাফিকাল ডেক্সটপ"
-
-#: share/compssUsers.pl:161
-#, fuzzy, c-format
-msgid "Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ইত্যাদী"
-
-# sam
-#: share/compssUsers.pl:184
-#, c-format
-msgid "Utilities"
-msgstr "ইউটিলিটিসমূহ"
-
-#: share/compssUsers.pl:186 share/compssUsers.pl:187 standalone/logdrake:384
-#, c-format
-msgid "SSH Server"
-msgstr "SSH সার্ভিস"
-
-# sam
-#: share/compssUsers.pl:191
-#, c-format
-msgid "Webmin"
-msgstr "ওয়েবমিন"
-
-# sam
-#: share/compssUsers.pl:192
-#, c-format
-msgid "Webmin Remote Configuration Server"
-msgstr "ওয়েবমিন দূরবর্তী কনফিগারেশন সার্ভার"
-
-# sam
-#: share/compssUsers.pl:196
-#, c-format
-msgid "Network Utilities/Monitoring"
-msgstr "নেটওয়ার্ক ইউটিলিটিসমূহ/পর্যবেক্ষণ"
-
-# সাম: context is not clear
-#: share/compssUsers.pl:197
-#, c-format
-msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
-msgstr "পর্যবেক্ষণ টুলসমূহ, হিসাবরক্ষণ প্রসেস করে, tcpdump, nmap, ..."
-
-# সাম
-#: share/compssUsers.pl:201
-#, c-format
-msgid "Mandriva Wizards"
-msgstr "Mandriva উইজার্ডসমূহ"
-
-# সাম
-#: share/compssUsers.pl:202
-#, c-format
-msgid "Wizards to configure server"
-msgstr "সার্ভার কনফিগার করার জন্য উইজার্ডসমূহ"
-
-#: standalone.pm:23
+#: standalone.pm:24
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
@@ -16552,7 +6309,8 @@ msgid ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
msgstr ""
"এটি একটি ফ্রী সফটওয়ার; ফ্রী সফটওয়ার ফাউন্ডেশন কর্তৃক প্রকাশিত জী-এন-ইউ জেনারেল "
"পাবলিক লাইসেন্স-এর ২য় বা পরবর্তী\n"
@@ -16567,11 +6325,12 @@ msgstr ""
"\n"
"এই প্রোগ্রামের সাথে গনিউ জেনারেল পাবলিক লাইসেন্সের একটি প্রতিলিপি আপনার পাওয়ার "
"কথা; কোন কারণে যদি তা না পেয়ে থাকেন, তবে এই ঠিকানায় লিখুন - Free Software "
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
# সাম
# পুনরুদ্ধার
-#: standalone.pm:42
+#: standalone.pm:43
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
@@ -16598,7 +6357,7 @@ msgstr ""
"--help : এই ম্যাসেজটি দেখাও।\n"
"--version : ভার্সান নাম্বার দেখাও।\n"
-#: standalone.pm:54
+#: standalone.pm:55
#, c-format
msgid ""
"[--boot] [--splash]\n"
@@ -16613,7 +6372,7 @@ msgstr ""
" --splash - বুট থিম কন্‌ফিগারে সক্রিয়\n"
"ডিফল্ট মোড: স্বয়ংক্রিয়ভাবে কন্‌ফিগার হতে বলার মোড"
-#: standalone.pm:59
+#: standalone.pm:60
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
@@ -16630,7 +6389,7 @@ msgstr ""
" --report - প্রোগ্রামটিকে কোন একটি ম্যান্ড্রিব লিনাক্স টুল হওয়া উচিত\n"
" --incident - প্রোগ্রামটিকে কোন একটি ম্যান্ড্রিব লিনাক্স টুল হওয়া উচিত"
-#: standalone.pm:65
+#: standalone.pm:66
#, c-format
msgid ""
"[--add]\n"
@@ -16650,7 +6409,7 @@ msgstr ""
# সাম:
# and gs for ghostscript for only this one...
# did not translate "for only this one"...
-#: standalone.pm:71
+#: standalone.pm:72
#, c-format
msgid ""
"\n"
@@ -16683,7 +6442,7 @@ msgstr ""
# সাম
# Mandriva Linux Terminal
-#: standalone.pm:86
+#: standalone.pm:87
#, c-format
msgid ""
"[OPTIONS]...\n"
@@ -16715,18 +6474,18 @@ msgstr ""
"--delclient : MTS থেকে একটি ক্লায়েন্ট মেশিন বাদ দাও (MAC অ্যাড্রেস, IP, nbi "
"ইমেজ নাম প্রয়োজন)"
-#: standalone.pm:98
+#: standalone.pm:99
#, c-format
msgid "[keyboard]"
msgstr "[কি-বোর্ড]"
-#: standalone.pm:99
+#: standalone.pm:100
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
# সাম
-#: standalone.pm:100
+#: standalone.pm:101
#, c-format
msgid ""
"[OPTIONS]\n"
@@ -16750,14 +6509,9 @@ msgstr ""
"--quiet : ব্যবহারকারীর সাথে তথ্য আদান-প্রদান করো না। (dis)connect এর সাথে "
"ব্যবহার করার জন্য।"
-#: standalone.pm:109
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
# সাম
# verify
-#: standalone.pm:110
+#: standalone.pm:111
#, c-format
msgid ""
"[OPTION]...\n"
@@ -16776,7 +6530,7 @@ msgstr ""
" --merge-all-rpmnew প্রাপ্ত সকল .rpmnew/.rpmsave ফাইলগুলো একীভূতকরণের "
"পরামর্শ দাও"
-#: standalone.pm:115
+#: standalone.pm:116
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
@@ -16785,7 +6539,7 @@ msgstr ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
-#: standalone.pm:116
+#: standalone.pm:117
#, c-format
msgid ""
" [everything]\n"
@@ -16796,7 +6550,7 @@ msgstr ""
" XFdrake [--noauto] মনিটর\n"
" XFdrake রেজ্যুলুশন"
-#: standalone.pm:149
+#: standalone.pm:150
#, c-format
msgid ""
"\n"
@@ -16807,9677 +6561,107 @@ msgstr ""
"ব্যবহার: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
-# সাম
-#: standalone/XFdrake:59
-#, c-format
-msgid "You need to reboot for changes to take effect"
-msgstr "পরিবর্তনগুলো কার্যকর করতে আপনাকে রিবুট করতে হবে"
-
-#: standalone/XFdrake:90
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "অনুগ্রহপূর্বক লগ-আউট করুন ও তারপর Ctrl-Alt-BackSpace চাপুন"
-
-#: standalone/XFdrake:94
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr "পরিবর্তন কার্যকর করার পূর্বে আপনাকে লগ-আউট করে তারপর পুণরায় লগ-ইন করতে হবে"
-
-#: standalone/drakTermServ:112 standalone/drakTermServ:118
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s-এর একটি ব্যবহারকারীর-নাম প্রয়োজন...\n"
-
-#: standalone/drakTermServ:129
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s-এর প্রয়োজন হোস্ট-নাম, MAC ঠিকানা, আই.পি., nbi-ইমেজ, THIN_CLIENT-এর জন্য "
-"0/1, স্থানীয় কনফিগ-এর জন্য 0/1...\n"
-
-#: standalone/drakTermServ:135
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s-এর একটি হোস্ট-নাম প্রয়োজন...\n"
-
-#: standalone/drakTermServ:144
-#, c-format
-msgid "Host name for client"
-msgstr ""
-
-#: standalone/drakTermServ:145
-#, c-format
-msgid "MAC address should be in the format 00:11:22:33:44:55"
-msgstr ""
-
-#: standalone/drakTermServ:146
-#, c-format
-msgid "IP address to be assigned to client"
-msgstr ""
-
-#: standalone/drakTermServ:147
-#, c-format
-msgid "Kernel/network adapter image to use to boot client"
-msgstr ""
-
-#: standalone/drakTermServ:148
-#, c-format
-msgid "Create masking files to allow configuration tools to run on client"
-msgstr ""
-
-#: standalone/drakTermServ:149
-#, c-format
-msgid "Applications will run on server machine"
-msgstr ""
-
-#: standalone/drakTermServ:234 standalone/drakTermServ:237
-#, c-format
-msgid "Terminal Server Configuration"
-msgstr "টার্মিনাল সার্ভার কনফিগারেশন"
-
-#: standalone/drakTermServ:243
-#, fuzzy, c-format
-msgid "dhcpd Config"
-msgstr "dhcpd কনফিগ..."
-
-#: standalone/drakTermServ:247
-#, c-format
-msgid "Enable Server"
-msgstr "সার্ভার সক্রিয় করো"
-
-#: standalone/drakTermServ:253
-#, c-format
-msgid "Disable Server"
-msgstr "সার্ভার নিষ্ক্রিয় করো"
-
-#: standalone/drakTermServ:259
-#, c-format
-msgid "Start Server"
-msgstr "সার্ভার আরম্ভ করো"
-
-#: standalone/drakTermServ:265
-#, c-format
-msgid "Stop Server"
-msgstr "সার্ভার বন্ধ করো"
-
-#: standalone/drakTermServ:274
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "ইথারনেট ফ্লপি/আই.এস.ও."
-
-#: standalone/drakTermServ:278
-#, c-format
-msgid "Net Boot Images"
-msgstr "নেট বুট ইমেজ"
-
-#: standalone/drakTermServ:285
-#, c-format
-msgid "Add/Del Users"
-msgstr "ব্যবহারকারী যোগ/অপসারণ করো"
-
-#: standalone/drakTermServ:289
-#, c-format
-msgid "Add/Del Clients"
-msgstr "ক্লায়েন্ট যোগ/অপসারণ করো"
-
-#: standalone/drakTermServ:297
-#, c-format
-msgid "Images"
-msgstr "ইমেজ"
-
-# সাম
-#: standalone/drakTermServ:298
-#, c-format
-msgid "Clients/Users"
-msgstr "ক্লায়েন্ট/ব্যবহারকারী"
-
-# FIXME
-#: standalone/drakTermServ:316 standalone/drakbug:47
-#, c-format
-msgid "First Time Wizard"
-msgstr "প্রারম্ভিক উইজার্ড"
-
-# FIXME
-#: standalone/drakTermServ:354 standalone/drakTermServ:355
-#, c-format
-msgid "%s defined as dm, adding gdm user to /etc/passwd$$CLIENT$$"
-msgstr ""
-"ডিসপ্লে ব্যবস্থাপক (dm) হিসেবে %s-কে নির্দিষ্ট করা হয়েছে, /etc/passwd$$CLIENT$$ "
-"ফাইলে জি.ডি.এম. নামক ব্যবহারকারী যোগ করা হচ্ছে"
-
-# সাম
-#: standalone/drakTermServ:361
-#, c-format
-msgid ""
-"\n"
-" This wizard routine will:\n"
-" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
-"\t2) Setup DHCP.\n"
-"\t\n"
-"After doing these steps, the wizard will:\n"
-"\t\n"
-" a) Make all "
-"nbis. \n"
-" b) Activate the "
-"server. \n"
-" c) Start the "
-"server. \n"
-" d) Synchronize the shadow files so that all users, including root, \n"
-" are added to the shadow$$CLIENT$$ "
-"file. \n"
-" e) Ask you to make a boot floppy.\n"
-" f) If it's thin clients, ask if you want to restart KDM.\n"
-msgstr ""
-"\n"
-" এই উইজার্ড রুটিন:\n"
-" \t১) আপনাকে 'থিন' বা 'ফ্যাট' ক্লায়েন্ট বাছাই করতে বলবে।\n"
-"\t২) DHCP সেটআপ করবে।n\t\n"
-"\t\n"
-"এরপর, উইজার্ডটি:\n"
-"\t\n"
-" ক) সব nbis তৈরী "
-"করবে। \n"
-" খ) সার্ভার সক্রিয় "
-"করবে। \n"
-" গ) সার্ভার চালু "
-"করবে। \n"
-" ঘ) শ্যাডো ফাইলগুলো যৌগপদিক করবে যাতে root সহ সব ব্যবহারকারী, \n"
-" shadow$$CLIENT$$ ফাইলে যুক্ত "
-"হয়। \n"
-" ঙ) আপনাকে একটি বুট ফ্লপি তৈরী করতে পরামর্শ দেবে।\n"
-" চ) যদি থিন ক্লায়েন্ট হয়ে থাকে তবে পুনরায় KDM চালু করতে বলবে।\n"
-
-#: standalone/drakTermServ:407
-#, c-format
-msgid "Cancel Wizard"
-msgstr "উইজার্ড বাতিল করো"
-
-#: standalone/drakTermServ:422
-#, c-format
-msgid "Please save dhcpd config!"
-msgstr "অনুগ্রহপূর্বক dhcpd কনফিগ সংরক্ষণ করুন!"
-
-# FIXME
-#: standalone/drakTermServ:450
-#, c-format
-msgid "Use thin clients."
-msgstr "থিন ক্লায়েন্ট ব্যবহার করো"
-
-#: standalone/drakTermServ:452
-#, c-format
-msgid "Sync client X keyboard settings with server."
-msgstr "ক্লায়েন্টের এক্স কীবোর্ড-এর বৈশিষ্ট্যকে সার্ভারের সাথে এককালবর্তী (Sync) করো।"
-
-#: standalone/drakTermServ:454
-#, fuzzy, c-format
-msgid ""
-"Please select default client type (Fat is the default type if 'Use thin' is "
-"unchecked).\n"
-" 'Thin' clients run everything off the server's CPU/RAM, using the client "
-"display.\n"
-" 'Fat' clients use their own CPU/RAM but the server's filesystem."
-msgstr ""
-"অনুগ্রহপূর্বক ক্লায়েন্টের ডিফল্ট ধরন বেছে নিন।\n"
-" 'থিন' ক্লায়েন্টের সব কিছুই সার্ভারের সি.পি.ইউ./র্যাম এবং ক্লায়েন্টের ডিসপ্লে "
-"ব্যবহার করে চালানো হয়।\n"
-" আর 'ফ্যাট' ক্লায়েন্ট তার নিজস্ব সি.পি.ইউ./র্যাম এবং সার্ভারে ফাইল সিস্টেম "
-"ব্যবহার করে।"
-
-#: standalone/drakTermServ:474
-#, c-format
-msgid "Creating net boot images for all kernels"
-msgstr "সকল কার্নেলের জন্য নেট বুট ইমেজ তৈরি করা হচ্ছে"
-
-#: standalone/drakTermServ:475 standalone/drakTermServ:807
-#: standalone/drakTermServ:823
-#, c-format
-msgid "This will take a few minutes."
-msgstr "এ কাজে কয়েক মিনিট সময় লাগবে।"
-
-#: standalone/drakTermServ:481 standalone/drakTermServ:521
-#, c-format
-msgid "Done!"
-msgstr "সম্পন্ন!"
-
-#: standalone/drakTermServ:492 standalone/drakTermServ:894
-#, c-format
-msgid "%s failed"
-msgstr ""
-
-#: standalone/drakTermServ:501
-#, c-format
-msgid ""
-"Not enough space to create\n"
-"NBIs in %s.\n"
-"Needed: %d MB, Free: %d MB"
-msgstr ""
-
-# FIXME
-#: standalone/drakTermServ:507
-#, c-format
-msgid "Syncing server user list with client list, including root."
-msgstr ""
-"সার্ভারের ব্যবহারকারীর তালিকাকে রুটসহ ক্লায়েন্ট তালিকার সাথে এককালবর্তী (Sync) করা "
-"হচ্ছে।"
-
-#: standalone/drakTermServ:527
-#, c-format
-msgid ""
-"In order to enable changes made for thin clients, the display manager must "
-"be restarted. Restart now?"
-msgstr ""
-"থিন ক্লায়েন্টের জন্য কৃত পরিবর্তন কার্যকর করার জন্য ডিসপ্লে ব্যবস্থাপককে পুনরায় চালু "
-"করতে হবে। এখনি কি পুনরায় চালু করবো?"
-
-#: standalone/drakTermServ:564
-#, c-format
-msgid "Terminal Server Overview"
-msgstr "টার্মিনাল সার্ভারের সামগ্রিক চিত্র"
-
-# সাম
-# customize
-#: standalone/drakTermServ:565
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and %s is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-" - ইথারবুট সক্রিয় বুট ইমেজ তৈরী করুন:\n"
-" \tএকটি কার্নেল ইথারবুট দিয়ে বুট করার জন্য একটি বিশেষ kernel/initrd ইমেজ "
-"তৈরী করতে হবে।\n"
-" \tmkinitrd-net এই কাজটির অধিকাংশ করে দেয় এবং %s হচ্ছে একটি "
-"গ্রাফিক্যাল \n"
-" \tইন্টারফেস যা এই ইমেজগুলোর ব্যবস্থাপনা/কাস্টোমাইজ করতে সাহায্য করে। \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include ফাইলটি include \n"
-" \tহিসেবে dhcpd.conf এ অন্তর্ভুক্ত করা হয়, যেটি তৈরী করতে আপনাকে অন্তত "
-"একটি সম্পূর্ন \n"
-" \tকার্নেলের জন্য ইথারবুট ইমেজ তৈরী করতে হবে।"
-
-#: standalone/drakTermServ:571
-#, c-format
-msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. %s helps create/"
-"remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
-msgstr ""
-
-# সাম
-#: standalone/drakTermServ:589
-#, fuzzy, c-format
-msgid ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be "
-"'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, \n"
-" %s is written for thin clients. \n"
-" System config files xdm-config, kdmrc, and gdm.conf are modified if "
-"thin clients are \n"
-" used, to enable XDMCP. Since there are security issues in using "
-"XDMCP, hosts.deny and \n"
-" hosts.allow are modified to limit access to the local subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-msgstr ""
-" যদিও আপনি ক্লায়েন্ট মেশিনের জন্য একটি নির্দিষ্ট এন্ট্রির বদলে, অনেকগুলো IP "
-"addresses\n"
-" ব্যবহার করতে পারেন, তথাপি নির্দিষ্ট IP addresses ব্যবহার করলে আপনি %s\n"
-" সরবরাহকৃত ক্লায়েন্ট প্রতি কনফিগারেশন ফাইল ব্যবস্থার সুবিধা পেতে পারেন।\n"
-"\t\t\t\n"
-" দ্রষ্টব্য: '#type' ক্ষেত্রটি শুধুমাত্র %s দ্বারা ব্যবহৃত হয়। ক্লায়েন্ট শুধুমাত্র "
-"'থিন''\n"
-" বা 'ফ্যাট' হতে পারে। থিন ক্লায়েন্টগুলো XDMCP এর মাধ্যমে বেশীরভাগ সফ্টওয়্যার "
-"সার্ভারে চালায়, \n"
-" আর 'ফ্যাট' ক্লায়েন্টগুলো বেশীরভাগ সফ্টওয়্যার ক্লায়েন্টেই চালায়।\n"
-" থিন ক্লায়েন্টের জন্য একটি বিশেষ inittab, %s লেখা হয়। থিন ক্লায়েন্টে "
-"ব্যবহার করা হলে,\n"
-" XDMCP সক্রিয় করার জন্য সিস্টেম কনফিগারেশন ফাইল xdm-config, kdmrc, and "
-"gdm.conf\n"
-" পরিবর্ধন করা হয়। যেহেতু XDMCP তে নিরাপত্তার প্রশ্ন বিদ্যমান, hosts.deny "
-"এবং hosts.allow\n"
-" ব্যবহার করে স্থানীয় সাবনেটে প্রবেশ সীমাবদ্ধ করা হয়।\n"
-"\t\t\t\n"
-" দ্রষ্টব্য: '#hdw_config' এন্ট্রিটি শুধুমাত্র %s ব্যবহার করে। ক্লায়েন্টের মান "
-"শুধুমাত্র সত্য \n"
-" বা মিথ্যা হতে পারে। সত্য হলে ক্লায়েন্ট মেশিনে রুট লগইন সম্ভব এবং "
-"স্থানীয়ভাবে 'drak' টুলসমূহ \n"
-" ব্যবহার করে শব্দ, মাউস, X হার্ডওয়্যার কনফিগারেশন করা যেতে পারে। "
-"ক্লায়েন্টের IP addresses \n"
-" এর সাথে সম্পৃক্ত আলাদা কনফিগারেশন ফাইল তৈরী করে এবং পড়া/লেখা মাউন্ট "
-"পয়েন্ট তৈরী \n"
-" করে ক্লায়েন্টকে তা পরিবর্ধনের সুযোগ দিয়ে এটি সক্রিয় করা হয়। এই "
-"কনফিগারেশনে সন্তূষ্ট হলে \n"
-" আপনি ক্লায়েন্ট থেকে রুট লগইন সুবিধা সরিয়ে ফেলতে পারেন।\n"
-"\t\t\t\n"
-" দ্রষ্টব্য: ক্লায়েন্ট অন্তর্ভুক্ত বা বদল করার পর বন্ধ করে পুনরায় চালু করতে হবে।"
-
-#: standalone/drakTermServ:609
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-msgstr ""
-
-# সাম
-#: standalone/drakTermServ:621
-#, fuzzy, c-format
-msgid ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. \n"
-" \t%s helps in this respect by adding or removing system users from "
-"this \n"
-" \tfile."
-msgstr ""
-" - 1$%s রক্ষনাবেক্ষণ করো:\n"
-" \tব্যবহারকারীদের ডিস্কবিহীন ক্লায়েন্ট থেকে সিস্টেমে লগইন করতে হলে,\n"
-" \t/etc/shadow তে তাদের এন্ট্রি, 2$%s এ কপি করতে হবে। এই ক্ষেত্রে\n"
-" \t%s ফাইলে সিস্টেম ব্যবহারকারী যোগ করে বা সরিয়ে সাহায্য করে।"
-
-# সাম
-#: standalone/drakTermServ:626
-#, c-format
-msgid ""
-" - Per client %s:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t%s will help create these files."
-msgstr ""
-" - ক্লায়েন্ট প্রতি %s:\n"
-" \t%s দিয়ে, সার্ভারের রুট ফাইল সিস্টেমে, প্রতিটি ডিস্কবিহীন ক্লায়েন্টের জন্য "
-"স্বকীয় কনফিগারেশন\n"
-" \t ফাইল তৈরী করা যায়। স্থানীয় ক্লায়েন্ট হার্ডওয়্যার কনফিগারেশন অনুমোদন "
-"করলে,\n"
-" \t%s এই ফাইলগুলো তৈরী করতে সাহায্য করবে।"
-
-# সাম
-# customize = ?
-#: standalone/drakTermServ:631
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-msgstr ""
-" - ক্লায়েন্ট প্রতি সিস্টেম কনফিগারেশন ফাইল:\n"
-" \t%s দিয়ে, সার্ভারের রুট ফাইল সিস্টেমে, প্রতিটি ডিস্কবিহীন ক্লায়েন্টের জন্য "
-"স্বকীয় কনফিগারেশন\n"
-" \t ফাইল তৈরী করা যায়। স্থানীয় ক্লায়েন্ট হার্ডওয়্যার কনফিগারেশন অনুমোদন "
-"করলে,\n"
-" \t প্রতি ক্লায়েন্টের জন্য /etc/modules.conf, /etc/sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard ফাইলসমূহ কাস্টোমাইজ করা যেতে পারে।\n"
-"\n"
-" দ্রষ্টব্য: স্থানীয় ক্লায়েন্ট হার্ডওয়্যার কনফিগারেশন সক্রিয় করলে, এই ফিচার "
-"সক্রিয় করা প্রতিটি মেশিনের \n"
-" জন্য টার্মিনাল সার্ভারের রুট লগইন সক্রিয় হয়। একবার ক্লায়েন্ট মেশিন কনফিগার "
-"করা হয়ে গেলে, স্থানীয় \n"
-" কনফিগারেশন বন্ধ করে দেয়া যায়, এতে কনফিগারেশন ফাইলগুলো সংরক্ষিত থাকে।"
-
-#: standalone/drakTermServ:640
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s will configure this file to work in conjunction with the images "
-"created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical TFTP configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
-msgstr ""
-
-# সাম
-#: standalone/drakTermServ:661
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-msgstr ""
-" - ইথারবুট ফ্লপি/CD তৈরী করুন:\n"
-" \tডিস্কবিহীন ক্লায়েন্ট মেশিনগুলোতে বুট সিকোয়েন্স চালু করার জন্য NIC এর ROM "
-"ইমেজ\n"
-" \tবা বুট ফ্লপি প্রয়োজন। ক্লায়েন্ট মেশিনের NIC এর উপর ভিত্তি করে %s\n"
-" \tএই ইমেজ গুলো তৈরী করতে সাহায্য করবে।\n"
-" \t\t\n"
-" \tএকটি 3Com 3c509 এর জন্য নিজ হাতে বুট ফ্লপি তৈরী করার একটি সাধারন "
-"উদাহরন:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-
-#: standalone/drakTermServ:694
-#, c-format
-msgid "Boot Floppy"
-msgstr "বুট ফ্লপি"
-
-#: standalone/drakTermServ:696
-#, c-format
-msgid "Boot ISO"
-msgstr "বুট ISO"
-
-#: standalone/drakTermServ:698
-#, c-format
-msgid "PXE Image"
-msgstr "PXE ইমেজ"
-
-#: standalone/drakTermServ:759
-#, c-format
-msgid "Default kernel version"
-msgstr "ডিফল্ট কার্নেল ভার্সন"
-
-#: standalone/drakTermServ:764
-#, c-format
-msgid "Create PXE images"
-msgstr ""
-
-#: standalone/drakTermServ:765
-#, c-format
-msgid "Use Unionfs (TS2)"
-msgstr ""
-
-#: standalone/drakTermServ:795
-#, c-format
-msgid "Install i586 kernel for older clients"
-msgstr ""
-
-#: standalone/drakTermServ:805
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "পুরো কার্নেল বিল্ড করো -->"
-
-#: standalone/drakTermServ:812
-#, c-format
-msgid "No kernel selected!"
-msgstr "কোন কার্নেল নির্বাচন করা হয় নি!"
-
-#: standalone/drakTermServ:815
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "একটি NIC বিল্ড করো -->"
-
-#: standalone/drakTermServ:819 standalone/drakTermServ:1643
-#, c-format
-msgid "No NIC selected!"
-msgstr "কোন NIC নির্বাচন করা হয় নি"
-
-#: standalone/drakTermServ:822
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "সকল কার্নেলসমুহ বিল্ড করো -->"
-
-#: standalone/drakTermServ:835
-#, c-format
-msgid ""
-"Custom\n"
-"kernel args"
-msgstr ""
-
-#: standalone/drakTermServ:840
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- মুছো"
-
-# সাম
-#: standalone/drakTermServ:845
-#, c-format
-msgid "No image selected!"
-msgstr "কোন ইমেজ নির্বাচন করা হয়নি!"
-
-#: standalone/drakTermServ:848
-#, c-format
-msgid "Delete All NBIs"
-msgstr "সকল NBI সমুহকে মুছো"
-
-#: standalone/drakTermServ:925
-#, fuzzy, c-format
-msgid "Building images for kernel:"
-msgstr "সকল কার্নেলের জন্য নেট বুট ইমেজ তৈরি করা হচ্ছে"
-
-#: standalone/drakTermServ:1050
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! সিস্টেম ডাটাবেজের পাসওয়ার্ড টার্মিনাল সার্ভার ডাটাবেজের পাসওয়ার্ডের\n"
-"চেয়ে ভিন্ন। টার্মিনাল সার্ভারে লগিন সক্রিয় করতে ব্যবহারকারী \n"
-"মুছে দিন/পুনরায়-যুক্ত করুন।"
-
-#: standalone/drakTermServ:1055
-#, c-format
-msgid "Add User -->"
-msgstr "ব্যবহারকারী যোগ করো -->"
-
-#: standalone/drakTermServ:1061
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- ব্যবহারকারী মুছো"
-
-#: standalone/drakTermServ:1097
-#, c-format
-msgid "type: %s"
-msgstr "ধরণ: %s"
-
-#: standalone/drakTermServ:1101
-#, c-format
-msgid "local config: %s"
-msgstr "স্হানীয় কনফিগ: %s"
-
-#: standalone/drakTermServ:1136
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"স্হানীয় হার্ডওয়্যার কনফিগারেশনকে\n"
-"অনুমতি দাও।"
-
-#: standalone/drakTermServ:1146
-#, c-format
-msgid "No net boot images created!"
-msgstr "কোন নেট বুট ইমেজ তৈরি করা হয় নি!"
-
-#: standalone/drakTermServ:1165
-#, c-format
-msgid "Thin Client"
-msgstr "থিন ক্লায়েন্ট"
-
-#: standalone/drakTermServ:1169
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "থিন ক্লায়েন্টসমুহকে অনুমতি দাও"
-
-# সাম: Sync = সমতালীয় ?
-#: standalone/drakTermServ:1170
-#, c-format
-msgid ""
-"Sync client X keyboard\n"
-" settings with server."
-msgstr ""
-"ক্লায়েন্টের এক্স কীবোর্ডের মানসমূহকে\n"
-" সার্ভারের সাথে সমতালীয় করো।"
-
-#: standalone/drakTermServ:1171
-#, c-format
-msgid "Add Client -->"
-msgstr "ক্লায়েন্ট যোগ করো -->"
-
-#: standalone/drakTermServ:1181
-#, c-format
-msgid "Unknown MAC address format"
-msgstr ""
-
-#: standalone/drakTermServ:1195
-#, c-format
-msgid "type: fat"
-msgstr "ধরণ: মোটা"
-
-#: standalone/drakTermServ:1196
-#, c-format
-msgid "type: thin"
-msgstr "ধরণ: পাতলা"
-
-#: standalone/drakTermServ:1203
-#, c-format
-msgid "local config: false"
-msgstr "স্হানীয় কনফিগ: মিথ্যা"
-
-#: standalone/drakTermServ:1204
-#, c-format
-msgid "local config: true"
-msgstr "স্থানীয় কনফিগ: মিথ্যা"
-
-#: standalone/drakTermServ:1212
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- ক্লায়েন্ট সম্পাদন"
-
-#: standalone/drakTermServ:1237
-#, c-format
-msgid "Disable Local Config"
-msgstr "স্হানীয় কনফিগ নিষ্ক্রিয় করো"
-
-#: standalone/drakTermServ:1244
-#, c-format
-msgid "Delete Client"
-msgstr "ক্লায়েন্ট মুছো"
-
-#: standalone/drakTermServ:1267
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-"সম্পূর্ণ পরিবর্তনগুলো সক্রিয় করার জন্য ডিসপ্লে ম্যানেজার পুনরায় চালু করা প্রয়োজন। \n"
-"(কনসোলে লিখুন - service dm restart)"
-
-#: standalone/drakTermServ:1313
-#, c-format
-msgid "Thin clients will not work with autologin. Disable autologin?"
-msgstr ""
-"Thin ক্লায়েন্ট স্বয়ংক্রিয় লগিনের সাথে কাজ করবে না। স্বয়ংক্রিয় লগিন নিষ্ক্রিয় করবেন?"
-
-#: standalone/drakTermServ:1328
-#, c-format
-msgid "All clients will use %s"
-msgstr "সমস্ত ক্লায়েন্ট %s ব্যবহার করবে"
-
-#: standalone/drakTermServ:1362
-#, c-format
-msgid "Subnet:"
-msgstr "সাবনেট:"
-
-#: standalone/drakTermServ:1369
-#, c-format
-msgid "Netmask:"
-msgstr "নেটমাস্ক:"
-
-#: standalone/drakTermServ:1376
-#, c-format
-msgid "Routers:"
-msgstr "রাউটার সমুহ:"
-
-#: standalone/drakTermServ:1383
-#, c-format
-msgid "Subnet Mask:"
-msgstr "সাবনেট মাস্ক:"
-
-#: standalone/drakTermServ:1390
-#, c-format
-msgid "Broadcast Address:"
-msgstr "ব্রডকাস্ট অ্যাড্রেস:"
-
-#: standalone/drakTermServ:1397
-#, c-format
-msgid "Domain Name:"
-msgstr "ডোমেইন নাম:"
-
-#: standalone/drakTermServ:1405
-#, c-format
-msgid "Name Servers:"
-msgstr "নেইম সার্ভার সমুহ:"
-
-#: standalone/drakTermServ:1416
-#, c-format
-msgid "IP Range Start:"
-msgstr "আই-পি range শুরু:"
-
-#: standalone/drakTermServ:1417
-#, c-format
-msgid "IP Range End:"
-msgstr "আই-পি range শেষ:"
-
-#: standalone/drakTermServ:1459
-#, c-format
-msgid "Append TS Includes To Existing Config"
-msgstr "বিদ্যমান কন্‌ফিগ যুক্ত append TS"
-
-#: standalone/drakTermServ:1461
-#, c-format
-msgid "Write Config"
-msgstr "কনফিগ লিখ"
-
-#: standalone/drakTermServ:1477
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "dhcpd সার্ভার কনফিগারেশন"
-
-#: standalone/drakTermServ:1478
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"এই মানগুলোর বেশিরভাগই আপনার চলন্ত সিস্টেম\n"
-"থেকে বের করা হয়েছে।\n"
-"আপনি আপনার প্রয়োজন মত পরিবর্তন করতে পারেন।"
-
-#: standalone/drakTermServ:1481
-#, c-format
-msgid ""
-"Dynamic IP Address Pool\n"
-"(needed for PXE clients):"
-msgstr ""
-
-#: standalone/drakTermServ:1634
-#, c-format
-msgid "Write to %s failed!"
-msgstr ""
-
-#: standalone/drakTermServ:1647
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "অনুগ্রহ করে ফ্লপি ডিস্ক প্রবেশ করান:"
-
-#: standalone/drakTermServ:1651
-#, c-format
-msgid "Could not access the floppy!"
-msgstr "ফ্লপিটিতে প্রবেশ করা যাচ্ছে নাহ্!"
-
-#: standalone/drakTermServ:1653
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "এখন ফ্লপি সরানো যাবে নাহ্"
-
-#: standalone/drakTermServ:1656
-#, c-format
-msgid "No floppy drive available!"
-msgstr "কোন ফ্লপি ড্রাইভ উপস্থিত নেই!"
-
-#: standalone/drakTermServ:1662
-#, c-format
-msgid "PXE image is %s/%s"
-msgstr "%s/%s হলো PXE ইমেজ"
-
-#: standalone/drakTermServ:1664
-#, c-format
-msgid "Error writing %s/%s"
-msgstr "%s/%s লিখতে সমস্যা হয়েছে"
-
-#: standalone/drakTermServ:1676
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "%s হলো ইথারবুট ISO ইমেজ"
-
-#: standalone/drakTermServ:1680
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "কিছু একটা সমস্যা হয়েছে! - mkisofs ইনস্টল করা আছে?"
-
-#: standalone/drakTermServ:1700
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "প্রথমে /etc/dhcpd.conf তৈরি করতে হবে!"
-
-#: standalone/drakTermServ:1867
-#, c-format
-msgid "%s passwd bad in Terminal Server - rewriting...\n"
-msgstr "%s পাসওয়ার্ড টার্মিনাল সার্ভার এ ভাল নয় - আবার লেখছি...\n"
-
-#: standalone/drakTermServ:1880
-#, c-format
-msgid "%s is not a user..\n"
-msgstr "%s ব্যবহারকারী নয়..\n"
-
-#: standalone/drakTermServ:1881
-#, c-format
-msgid "%s is already a Terminal Server user\n"
-msgstr "%s ইতিমধ্যেই একজন টার্মিনাল সার্ভার ব্যবহারকারী\n"
-
-#: standalone/drakTermServ:1883
-#, c-format
-msgid "Addition of %s to Terminal Server failed!\n"
-msgstr "টার্মিনাল সার্ভারে %s যোগ করা ব্যর্থ হয়েছে!\n"
-
-#: standalone/drakTermServ:1885
-#, c-format
-msgid "%s added to Terminal Server\n"
-msgstr "টার্মিনাল সার্ভারে %s যোগ করা হয়েছে!\n"
-
-#: standalone/drakTermServ:1903
-#, c-format
-msgid "Deleted %s...\n"
-msgstr "%s মুছা হয়েছে...\n"
-
-#: standalone/drakTermServ:1905 standalone/drakTermServ:1978
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s পাওয়া যাচ্ছে নাহ্...\n"
-
-#: standalone/drakTermServ:2006
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
-"/etc/hosts.allow এবং /etc/hosts.deny ইতিমধ্যেই কনফিগার করা হয়েছে - বদলানো হয়নি"
-
-#: standalone/drakTermServ:2158
-#, c-format
-msgid "Configuration changed - restart %s/dhcpd?"
-msgstr "কনফিগারেশন বদলানো হয়েছে - %s/dhcpd আবার শুরু করবো? "
-
-#: standalone/drakautoinst:38 standalone/drakhosts:123
-#: standalone/drakhosts:129 standalone/draknfs:84 standalone/draknfs:105
-#: standalone/draknfs:444 standalone/draknfs:447 standalone/draknfs:539
-#: standalone/draknfs:546 standalone/draksambashare:187
-#: standalone/draksambashare:208 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Error!"
-msgstr "সমস্যা!"
-
-#: standalone/drakautoinst:39
-#, c-format
-msgid "I can not find needed image file `%s'."
-msgstr "দরকারি ইমেজ ফাইল `%s' কে খুঁজে পাচ্ছি নাহ্।"
-
-#: standalone/drakautoinst:41
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "সয়ংক্রিয় ইনস্টল কনফিগারকারী"
-
-#: standalone/drakautoinst:42
-#, c-format
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Press ok to continue."
-msgstr ""
-
-#: standalone/drakautoinst:60
-#, c-format
-msgid "replay"
-msgstr "পুনরায় চালাও"
-
-#: standalone/drakautoinst:60 standalone/drakautoinst:69
-#, c-format
-msgid "manual"
-msgstr "নিজ হাতে"
-
-#: standalone/drakautoinst:64
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "সয়ংক্রিয় ধাপসমুহের কনফিগারেশন"
-
-#: standalone/drakautoinst:65
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"অনুগ্রহ করে এটার প্রত্যেকটি স্টেপ বাছাই করুন যেখানে আপনার ইনস্টলের মত এটি পুনরায় "
-"চলবে, অথবা এটি হাতে হাতে হবে"
-
-#: standalone/drakautoinst:77 standalone/drakautoinst:78
-#: standalone/drakautoinst:92
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "সয়ংক্রিয় ফ্লপি ইনস্টল তৈরি করা হচ্ছে"
-
-#: standalone/drakautoinst:90
-#, c-format
-msgid "Insert another blank floppy in drive %s (for drivers disk)"
-msgstr "আরেকটি ফাঁকা ফ্লপি %s ডিস্কে ঢুকান (ড্রাইভার ডিস্কের জন্য)"
-
-#: standalone/drakautoinst:91
-#, c-format
-msgid "Creating auto install floppy (drivers disk)"
-msgstr "সয়ংক্রিয় ফ্লপি ইনস্টল তৈরি করা হচ্ছে (ড্রাইভার ডিস্ক)"
-
-#: standalone/drakautoinst:156
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"স্বাগতম।\n"
-"\n"
-"সয়ংক্রিয়-ইনস্টলের জন্য প্যারামিটারসমুহ বাঁ দিকের সেকশানে উপস্হিত"
-
-#: standalone/drakautoinst:251
-#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"ফ্লপিটি সাফল্যের সাথে তৈরী করা হয়েছে।\n"
-"আপনি এখন আপনার ইনস্টলেশন পুনরায় চালু করতে পারেন।"
-
-#: standalone/drakautoinst:287
-#, c-format
-msgid "Auto Install"
-msgstr "সয়ংক্রিয় ইনস্টল"
-
-#: standalone/drakautoinst:356
-#, c-format
-msgid "Add an item"
-msgstr "একটি আইটেম যোগ করো"
-
-#: standalone/drakautoinst:363
-#, c-format
-msgid "Remove the last item"
-msgstr "শেষ আইটেমটি সরাও"
-
-#: standalone/drakbackup:157
-#, c-format
-msgid ""
-"Expect is an extension to the TCL scripting language that allows interactive "
-"sessions without user intervention."
-msgstr ""
-"TCL স্ক্রিপ্টিং ভাষার প্রতি বর্ধিত কিছু আশা করা হচ্ছে যা ব্যবহারকারীর সহায়তা ছাড়াই "
-"নিজে নিজেই কাজ করবে।"
-
-#: standalone/drakbackup:158
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "ড্র্যাকব্যাকআপ কন্‌ফিগারেশনে এই সিস্টেমের জন্য পাসওয়ার্ড জমা করুন।"
-
-#: standalone/drakbackup:159
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
-"একটি মাল্টিসেশন সিডি'র জন্য, শুধুমাত্র প্রথম সেশন cdrw মুছে ফেলবে। অন্যথায় প্রত্যেক "
-"ব্যাকআপের পূর্বেইcdrw মুছে যাবে।"
-
-#: standalone/drakbackup:160
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-"এই অপশন পরিবর্তিত হওয়া ফাইলগুলো সংরক্ষন করবে। সঠিক ব্যবহার নির্ভর করবে কখন "
-"incremental বা differential মোড ব্যবহৃত হবে।"
-
-#: standalone/drakbackup:161
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-"Incremental ব্যাকআপ শুধুমাত্র পরিবর্তিত অথবা সর্বশেষ নতুন ব্যাকআপ পর্যন্ত সংরক্ষণ করে।"
-
-#: standalone/drakbackup:162
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Differential ব্যাকআপ শুধুমাত্র পরিবর্তিত অথবা সর্বশেষ আসল 'base' ব্যাকআপ পর্যন্ত "
-"সংরক্ষণ করে।"
-
-#: standalone/drakbackup:163
-#, c-format
-msgid ""
-"Star should be selected if you want to backup EA or ACLs, otherwise choose "
-"tar"
-msgstr ""
-
-#: standalone/drakbackup:164
-#, fuzzy, c-format
-msgid ""
-"This should be a local user or email address that you want the backup "
-"results sent to. You will need to define a functioning mail server. Multiple "
-"users can be in a comma seperated list"
-msgstr ""
-"এক্ষেত্রে অবশ্যই একজন স্থানীয় ব্যবহারকারী অথবা ই-মেইল অ্যাড্রেস হওয়া উচিত যাকে আপনি "
-"ব্যাকআপ ফলাফলের প্রাপক হিসেবে ব্যবহার করবেন। আপনাকে একটি সঠিক মেইল সার্ভার বলে "
-"দেয়া উচিত।"
-
-#: standalone/drakbackup:165
-#, fuzzy, c-format
-msgid ""
-"This should be the return address that you want the backup results sent "
-"from. Default is drakbackup."
-msgstr ""
-"এক্ষেত্রে অবশ্যই একজন স্থানীয় ব্যবহারকারী অথবা ই-মেইল অ্যাড্রেস হওয়া উচিত যাকে আপনি "
-"ব্যাকআপ ফলাফলের প্রাপক হিসেবে ব্যবহার করবেন। আপনাকে একটি সঠিক মেইল সার্ভার বলে "
-"দেয়া উচিত।"
-
-#: standalone/drakbackup:166
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-"একটি ডিরেক্টরি ট্রি'র উপরে থাকা একটি .backupignore ফাইলে তালিকাস্থ ফাইল বা "
-"ওয়াইল্ডকার্ড ব্যাকআপ হবে না।"
-
-#: standalone/drakbackup:167
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-"অন্যান্য মিডিয়াতে ব্যাকআপ করার জন্য, হার্ড ড্রাইভে ফাইলগুলো ইতিমধ্যেই তৈরী হয়ে আছে, "
-"তারপর অন্য মিডিয়াতে স্থানান্তর। এই অপশনটি সক্রিয় থাকলে হার্ড ড্রাইভে tar ফাইল "
-"ব্যাকআপ করার পর সেটি মুছে ফেলবে।"
-
-#: standalone/drakbackup:168
-#, c-format
-msgid ""
-"Selecting this option allows you to view the raw output from the restore "
-"process, after a file restore."
-msgstr ""
-
-#: standalone/drakbackup:169
-#, c-format
-msgid ""
-"Some protocols, like rsync, may be configured at the server end. Rather "
-"than using a directory path, you would use the 'module' name for the service "
-"path."
-msgstr ""
-"কিছু প্রোটোকল, যেমন rsync, সার্ভারে কন্‌ফিগার হতে পারে। ডিরেক্টরি পাথ ব্যবহার করার "
-"চেয়ে, আপনি সার্ভিস পাথের জন্য 'মডিউল'এর নাম ব্যবহার করতে পারেন।"
-
-#: standalone/drakbackup:170
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"আপনাকে আপনার নিজের দিন এবং সময় নির্দিষ্ট করার অনুমতি দেয়া হচ্ছে। অন্যান্য অপশন /"
-"etc/crontab ব্যবহার করে।"
-
-#: standalone/drakbackup:344
-#, c-format
-msgid "No media selected for cron operation."
-msgstr "ক্রন (cron) অপারেশনের জন্য কোন মিডিয়া চিহ্নিত হয়নি।"
-
-#: standalone/drakbackup:348
-#, c-format
-msgid "No interval selected for cron operation."
-msgstr "ক্রন (cron) অপারেশনের জন্য কোন বিরতি চিহ্নিত হয়নি।"
-
-#: standalone/drakbackup:393
-#, c-format
-msgid "Interval cron not available as non-root"
-msgstr "root ছাড়া ক্রন বিরতি পাওয়া যাবে না"
-
-#: standalone/drakbackup:477 standalone/logdrake:439
-#, c-format
-msgid "\"%s\" neither is a valid email nor is an existing local user!"
-msgstr "\"%s\" কোন সঠিক ই-মেইলও নয় আবার স্থানীয় কোন ব্যবহারকারীও নয়!"
-
-#: standalone/drakbackup:481 standalone/logdrake:444
-#, 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 বাছাই করেন নি, "
-"সুতরাং আপনাকে অবশ্যইএকটি সম্পূর্ণ ই-মেইল ঠিকানা ব্যবহার করতে হবে!"
-
-#: standalone/drakbackup:491
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr "সঠিক ব্যবহারকারীদের তালিকা পরিবর্তন হয়েছে, config ফাইল পুনরায় লেখা হচ্ছে।"
-
-#: standalone/drakbackup:493
-#, c-format
-msgid "Old user list:\n"
-msgstr "ব্যবহারকারীদের পুরাতন তালিকা:\n"
-
-#: standalone/drakbackup:495
-#, c-format
-msgid "New user list:\n"
-msgstr "ব্যবহারকারীদের নতুন তালিকা:\n"
-
-#: standalone/drakbackup:524
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
-msgstr ""
-"\n"
-" ড্র্যাকব্যাকআপ রিপোর্ট \n"
-
-#: standalone/drakbackup:525
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-msgstr ""
-"\n"
-" ড্র্যাকব্যাকআপ ডেম্যন রিপোর্ট\n"
-
-#: standalone/drakbackup:531
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" ড্র্যাকব্যাকআপ রিপোর্টের বিশদ বিবরণ\n"
-"\n"
-"\n"
-
-#: standalone/drakbackup:556 standalone/drakbackup:627
-#: standalone/drakbackup:683
-#, c-format
-msgid "Total progress"
-msgstr "মোট উন্নতি"
-
-#: standalone/drakbackup:609
-#, c-format
-msgid ""
-"%s exists, delete?\n"
-"\n"
-"If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-"%s ইতিমধ্যেই বর্তমান, মুছব?\n"
-"\n"
-"আপনি যদি ইতিমধ্যেই কাজ করে ফেলে থাকেন তাহলে আপনাকে সম্ভবত সার্ভারে থাকা \n"
-"authorized_keys এর এন্ট্রিগুলো বিশোধিত করতে হবে।"
-
-#: standalone/drakbackup:618
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "কী সমুহ তৈরি হতে কিছু সময় লাগবে।"
-
-#: standalone/drakbackup:625
-#, c-format
-msgid "Cannot spawn %s."
-msgstr "%s কে spawn করা যাচ্ছে নাহ্।"
-
-#: standalone/drakbackup:642
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "%s পোর্টের %s এ কোন পাসওয়ার্ড প্রম্পট নেই"
-
-#: standalone/drakbackup:643
-#, c-format
-msgid "Bad password on %s"
-msgstr "%s এ ভুল পাসওয়ার্ড"
-
-#: standalone/drakbackup:644
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "%s কে %s এ স্থানান্তরের অনুমতি নেই"
-
-#: standalone/drakbackup:645
-#, c-format
-msgid "Can not find %s on %s"
-msgstr "%2$s এ %1$s কে খুঁজে পাওয়া যায় নি"
-
-#: standalone/drakbackup:649
-#, c-format
-msgid "%s not responding"
-msgstr "%s সাড়া দিচ্ছে নাহ্"
-
-#: standalone/drakbackup:653
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-"স্থানান্তর সফলভাবে হয়েছে\n"
-"আপনি এখন সার্ভারে প্রবেশ পরীক্ষা করে দেখতে পারেন:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"পাসওয়ার্ড প্রম্পট ছাড়াই।"
-
-#: standalone/drakbackup:703
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "ড্রাইভে কোন সিডি-আর/ডিভিডি-আর নেই!"
-
-#: standalone/drakbackup:707
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "রেকর্ড করার মতো মাধ্যম বলে মনে হচ্ছে নাহ্!"
-
-#: standalone/drakbackup:712
-#, c-format
-msgid "Not erasable media!"
-msgstr "মোছার মতো মাধ্যম নাহ্!"
-
-#: standalone/drakbackup:754
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "মাধ্যমটি মুছতে কিছু সময় লাগতে পারে।"
-
-#: standalone/drakbackup:812
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "সিডি প্রবেশ অনুমতির সমস্যা।"
-
-#: standalone/drakbackup:840
-#, c-format
-msgid "No tape in %s!"
-msgstr "%s এর মধ্যে কোন টেপ নেই!"
-
-#: standalone/drakbackup:953
-#, c-format
-msgid ""
-"Backup destination quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-
-#: standalone/drakbackup:973 standalone/drakbackup:1005
-#, c-format
-msgid "Backup system files..."
-msgstr "সিস্টেম ফাইলগুলো ব্যাকআপ করা হচ্ছে..."
-
-#: standalone/drakbackup:1006 standalone/drakbackup:1045
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "হার্ড ডিস্ক ব্যাকআপ ফাইল..."
-
-#: standalone/drakbackup:1044
-#, c-format
-msgid "Backup User files..."
-msgstr "ব্যবহারকারীর ফাইলগুলো ব্যাকআপ করা হচ্ছে..."
-
-#: standalone/drakbackup:1078
-#, c-format
-msgid "Backup Other files..."
-msgstr "অন্যান্য ফাইলগুলো ব্যাকআপ করা হচ্ছে..."
-
-#: standalone/drakbackup:1079
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "হার্ড ডিস্ক ব্যাকআপের উন্নতি..."
-
-#: standalone/drakbackup:1084
-#, c-format
-msgid "No changes to backup!"
-msgstr "ব্যাকআপে কোন পরিবর্তন নেই!"
-
-#: standalone/drakbackup:1100 standalone/drakbackup:1122
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-"\n"
-"%s এর মাধ্যমে ড্র্যাকব্যাকআপ কার্যক্রম:\n"
-"\n"
-
-#: standalone/drakbackup:1109
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-" এফ.টি.পি. সংযোগে সমস্যা: আপনার ব্যাক-আপ ফাইলগুলো এফ.টি.পি. ব্যবহার করে প্রেরণ "
-"করা যায় নি।\n"
-
-#: standalone/drakbackup:1110
-#, c-format
-msgid ""
-"Error during sending file via FTP. Please correct your FTP configuration."
-msgstr ""
-"এফ.টি.পি. ব্যবহার করে ফাইল প্রেরণে সমস্যা। অনুগ্রহপূর্বক এফ.টি.পি. কনফিগারেশন "
-"সংশোধন করুন।"
-
-#: standalone/drakbackup:1112
-#, c-format
-msgid "file list sent by FTP: %s\n"
-msgstr "এফ.টি.পি. ব্যবহার করে সর্বশেষ প্রেরিত ফাইল: %s\n"
-
-#: standalone/drakbackup:1127
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-"\n"
-"সিডি ব্যবহার করে ড্রেকব্যাক-আপ-এর কার্যকলাপ:\n"
-"\n"
-
-#: standalone/drakbackup:1132
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-"\n"
-"টেপ ব্যবহার করে ড্রেকব্যাক-আপ-এর কার্যকলাপ:\n"
-"\n"
-
-#: standalone/drakbackup:1141
-#, c-format
-msgid "Error sending mail. Your report mail was not sent."
-msgstr "মেইল প্রেরণে সমস্যা। রিপোর্ট মেইল প্রেরণ করা হয় নি।"
-
-#: standalone/drakbackup:1142
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr " মেইল প্রেরণে সমস্যা।\n"
-
-#: standalone/drakbackup:1172
-#, c-format
-msgid "Can not create catalog!"
-msgstr "তালিকা তৈরি করা যাচ্ছে না!"
-
-#: standalone/drakbackup:1332
-#, fuzzy, c-format
-msgid "Problem installing %s"
-msgstr "%s প্যাকেজ ইনস্টলে সমস্যা"
-
-#: standalone/drakbackup:1420
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "সিস্টেম ফাইলসমূহ ব্যাক-আপ করুন। (/etc ডিরেক্টরি)"
-
-# FIXME: Incremental = বৃদ্ধিঘটিত ?
-#: standalone/drakbackup:1421 standalone/drakbackup:1484
-#: standalone/drakbackup:1550
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr "বৃদ্ধিঘটিত/পার্থক্যমূলক ব্যাক-আপ ব্যবহার করো (পুরনো ব্যাক-আপ অপসারণ করবে না)"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "বৃদ্ধিঘটিত ব্যাক-আপ ব্যবহার করো"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Differential Backups"
-msgstr "পার্থক্যমূলক ব্যাক-আপ ব্যবহার করো"
-
-#: standalone/drakbackup:1425
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "গুরুত্বপূর্ণ ফাইলসমূহ অন্তর্ভুক্ত করবে না (passwd, group, fstab)"
-
-#: standalone/drakbackup:1456
-#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr ""
-"অনুগ্রহপূর্বক যে সকল ব্যবহারকারীকে ব্যাক-আপ-এর অন্তর্ভুক্ত করতে চান তাদের টিক দিন।"
-
-#: standalone/drakbackup:1483
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "ব্রাউজার ক্যাশ অন্তর্ভুক্ত করবে না"
-
-#: standalone/drakbackup:1537
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "ফাইল বা ডিরেক্টরি নির্বাচন করুন ও তারপর 'ঠিক আছে' ক্লিক করুন"
-
-#: standalone/drakbackup:1538 standalone/drakfont:650
-#, c-format
-msgid "Remove Selected"
-msgstr "নির্বাচিতদের অপসারণ করো"
-
-#: standalone/drakbackup:1601
-#, c-format
-msgid "Users"
-msgstr "ব্যবহারকারী"
-
-#: standalone/drakbackup:1621
-#, c-format
-msgid "Use network connection to backup"
-msgstr "ব্যাক-আপ তৈরির জন্য নেটওয়ার্ক সংযোগ ব্যবহার করো"
-
-#: standalone/drakbackup:1623
-#, c-format
-msgid "Net Method:"
-msgstr "নেট পদ্ধতি:"
-
-#: standalone/drakbackup:1627
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "এস.এস.এইচ.-এর জন্য Expect ব্যবহার করো"
-
-# FIXME
-#: standalone/drakbackup:1628
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "এস.এস.এইচ.-এর জন্য ব্যাক-আপ কী (Key) তৈরি/স্থানান্তর করো"
-
-#: standalone/drakbackup:1630
-#, c-format
-msgid "Transfer Now"
-msgstr "এখন স্থানান্তর করো"
-
-#: standalone/drakbackup:1632
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "অন্যান্য(ড্রেকব্যাক-আপ ব্যতীত) কীসমূহ (Key) ইতিমধ্যেই যথাস্থানে রয়েছে"
-
-#: standalone/drakbackup:1635
-#, c-format
-msgid "Host name or IP."
-msgstr "হোস্টনাম বা আই.পি."
-
-#: standalone/drakbackup:1640
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr "এই হোস্ট-এর যে ডিরেক্টরিতে (বা মডিউলে) ব্যাক-আপ রাখা হবে।"
-
-#: standalone/drakbackup:1652
-#, c-format
-msgid "Remember this password"
-msgstr "এই পাসওয়ার্ডটি মনে রাখবে"
-
-#: standalone/drakbackup:1664
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "হোস্টনাম, ব্যবহারকারীর নাম ও পাসওয়ার্ড প্রয়োজন!"
-
-#: standalone/drakbackup:1755
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "ব্যাক-আপ তৈরির জন্য সিডি-আর/ডিভিডি-আর ব্যবহার করো"
-
-#: standalone/drakbackup:1758
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "সিডি/ডিভিডি ডিভাইস বেছে নিন"
-
-#: standalone/drakbackup:1763
-#, c-format
-msgid "Choose your CD/DVD media size"
-msgstr "সিডি/ডিভিডি মিডিয়ার আকার বেছে নিন"
-
-#: standalone/drakbackup:1770
-#, c-format
-msgid "Multisession CD"
-msgstr "মাল্টিসেশন সিডি"
-
-# FIXME
-#: standalone/drakbackup:1772
-#, c-format
-msgid "CDRW media"
-msgstr "সিডি-রিড-রাইট (CDRW) মিডিয়া"
-
-#: standalone/drakbackup:1778
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "রিড-রাইট মিডিয়ায় ধারণকৃত তথ্য মুছে ফেলো (১ম সেশন)"
-
-#: standalone/drakbackup:1779
-#, c-format
-msgid " Erase Now "
-msgstr " এখন মোছো "
-
-#: standalone/drakbackup:1785
-#, c-format
-msgid "DVD+RW media"
-msgstr "ডিভিডি+রিড-রাইট মিডিয়া"
-
-#: standalone/drakbackup:1787
-#, c-format
-msgid "DVD-R media"
-msgstr "ডিভিডি-আর মিডিয়া"
-
-#: standalone/drakbackup:1789
-#, c-format
-msgid "DVDRAM device"
-msgstr "ডিভিডির্যাম ডিভাইস"
-
-#: standalone/drakbackup:1820
-#, c-format
-msgid "No CD device defined!"
-msgstr "কোন সিডি ডিভাইস নির্দিষ্ট করা হয় নি!"
-
-#: standalone/drakbackup:1862
-#, c-format
-msgid "Use tape to backup"
-msgstr "ব্যাক-আপ-এর কাজে টেপ ব্যবহার করো"
-
-#: standalone/drakbackup:1865
-#, c-format
-msgid "Device name to use for backup"
-msgstr "ব্যক-আপ-এর কাজে ব্যবহৃত ডিভাইসের নাম"
-
-#: standalone/drakbackup:1871
-#, c-format
-msgid "Backup directly to tape"
-msgstr "সরাসরি টেপে ব্যাকআপ"
-
-#: standalone/drakbackup:1877
-#, c-format
-msgid "Use tape hardware compression (EXPERIMENTAL)"
-msgstr ""
-
-#: standalone/drakbackup:1883
-#, c-format
-msgid "Do not rewind tape after backup"
-msgstr "ব্যাক-আপ তৈরির পর টেপকে প্রথমে নিয়ে (Rewind) যাবে না"
-
-#: standalone/drakbackup:1889
-#, c-format
-msgid "Erase tape before backup"
-msgstr "ব্যাক-আপ-এর পূর্বে টেপে ধারনকৃত তথ্য মুছে ফেলো"
-
-#: standalone/drakbackup:1895
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "ব্যাক-আপ তৈরি সম্পন্ন হওয়ার পর টেপ বের করে দাও"
-
-#: standalone/drakbackup:1976
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "যে ডিরেক্টরিতে সংরক্ষণ করা হবে তাতে প্রবেশ করো:"
-
-#: standalone/drakbackup:1980
-#, c-format
-msgid "Directory to save to"
-msgstr "যে ডিরেক্টরিতে সংরক্ষণ করা হবে"
-
-#: standalone/drakbackup:1985
-#, c-format
-msgid ""
-"Maximum disk space\n"
-" allocated for backups (MB)"
-msgstr ""
-
-#: standalone/drakbackup:1989
-#, c-format
-msgid ""
-"Delete incremental or differential\n"
-" backups older than N days\n"
-" (0 is keep all backups) to save space"
-msgstr ""
-
-#: standalone/drakbackup:2056
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "সিডি-আর / ডিভিডি-আর"
-
-#: standalone/drakbackup:2061
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "হার্ডড্রাইভ / এন.এফ.এস."
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2077
-#: standalone/drakbackup:2082
-#, c-format
-msgid "hourly"
-msgstr "প্রতিঘন্টা"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2078
-#: standalone/drakbackup:2083
-#, c-format
-msgid "daily"
-msgstr "প্রতিদিন"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2079
-#: standalone/drakbackup:2084
-#, c-format
-msgid "weekly"
-msgstr "প্রতিসপ্তাহ"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2080
-#: standalone/drakbackup:2085
-#, c-format
-msgid "monthly"
-msgstr "প্রতিমাস"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2081
-#: standalone/drakbackup:2086
-#, c-format
-msgid "custom"
-msgstr "স্বনির্বাচিত"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "January"
-msgstr "জানুয়ারি"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "February"
-msgstr "ফেব্রুয়ারি"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "March"
-msgstr "মার্চ"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "April"
-msgstr "এপ্রিল"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "May"
-msgstr "মে"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "June"
-msgstr "জুন"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "July"
-msgstr "জুলাই"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "August"
-msgstr "আগস্ট"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "September"
-msgstr "সেপ্টেম্বর"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "October"
-msgstr "অক্টোবর"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "November"
-msgstr "নভেম্বর"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "December"
-msgstr "ডিসেম্বর"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Sunday"
-msgstr "রবিবার"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Monday"
-msgstr "সোমবার"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Tuesday"
-msgstr "মঙ্গলবার"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Wednesday"
-msgstr "বুধবার"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Thursday"
-msgstr "বৃহস্পতিবার"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Friday"
-msgstr "শুক্রবার"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Saturday"
-msgstr "শনিবার"
-
-#: standalone/drakbackup:2126
-#, fuzzy, c-format
-msgid "Delete cron entry"
-msgstr "ক্লায়েন্ট মুছো"
-
-#: standalone/drakbackup:2127
-#, fuzzy, c-format
-msgid "Add cron entry"
-msgstr "প্রিন্টার যোগ করো"
-
-#: standalone/drakbackup:2185
-#, c-format
-msgid "Use daemon"
-msgstr "ডেইমন ব্যবহার করো"
-
-#: standalone/drakbackup:2189
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "অনুগ্রহপূর্বক যে সময়ের ব্যবধানে ব্যাক-আপ করা হবে তা বেছে নিন"
-
-#: standalone/drakbackup:2197
-#, c-format
-msgid "Minute"
-msgstr "মিনিট"
-
-#: standalone/drakbackup:2201
-#, c-format
-msgid "Hour"
-msgstr "ঘন্টা"
-
-#: standalone/drakbackup:2205
-#, c-format
-msgid "Day"
-msgstr "দিন"
-
-#: standalone/drakbackup:2209
-#, c-format
-msgid "Month"
-msgstr "মাস"
-
-# FIXME: ভাল হইলো না ;-(
-# শনিবার ব্যতীত যে কোন দিন
-#: standalone/drakbackup:2213
-#, fuzzy, c-format
-msgid "Weekday (start)"
-msgstr "সাপ্তাহিক দিন"
-
-# FIXME: ভাল হইলো না ;-(
-# শনিবার ব্যতীত যে কোন দিন
-#: standalone/drakbackup:2217
-#, fuzzy, c-format
-msgid "Weekday (end)"
-msgstr "সাপ্তাহিক দিন"
-
-# সাম
-#: standalone/drakbackup:2221
-#, fuzzy, c-format
-msgid "Profile"
-msgstr "প্রোফাইলসমূহ"
-
-#: standalone/drakbackup:2227
-#, fuzzy, c-format
-msgid "Current crontab:"
-msgstr "বর্তমান ব্যবহারকারী"
-
-#: standalone/drakbackup:2235
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "ব্যাক-আপ-এর কাজে যে মিডিয়া ব্যবহার করা হবে তা বেছে নিন।"
-
-#: standalone/drakbackup:2239
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "অনুগ্রহপূর্বক নিশ্চিত হন যে সার্ভিস তালিকার ক্রন ডেইমন অন্তর্ভুক্ত রয়েছে।"
-
-# সাম
-#: standalone/drakbackup:2240
-#, c-format
-msgid ""
-"If your machine is not on all the time, you might want to install anacron."
-msgstr "যদি আপনার মেশিন সর্বক্ষণ চালু না থাকে, তবে anacron ইনস্টল করতে পারেন।"
-
-#: standalone/drakbackup:2316
-#, fuzzy, c-format
-msgid "Please choose the archive program"
-msgstr "অনুগ্রহপূর্বক ব্যাক-আপ থেকে যে সকল তথ্য পুনরুদ্ধার করতে চান তা বেছে নিন:"
-
-#: standalone/drakbackup:2321
-#, c-format
-msgid "Please choose the compression type"
-msgstr "অনুগ্রহপূর্বক কমপ্রেশনের ধরন বেছে নিন"
-
-#: standalone/drakbackup:2325
-#, c-format
-msgid "Use .backupignore files"
-msgstr ".backupignore ফাইল ব্যবহার করো"
-
-#: standalone/drakbackup:2327
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "প্রতিবার ব্যাক-আপ তৈরির পর এই ঠিকানায় মেইল প্রেরণ করো:"
-
-#: standalone/drakbackup:2333
-#, c-format
-msgid "Return address for sent mail:"
-msgstr ""
-
-#: standalone/drakbackup:2339
-#, c-format
-msgid "SMTP server for mail:"
-msgstr "মেইল প্রেরণের জন্য এস.এম.টি.পি. সার্ভার:"
-
-#: standalone/drakbackup:2343
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
-"অন্য কোন মিডিয়ায় ব্যাক-আপ তৈরি হয়ে যাওয়ার পর হার্ডড্রাইভ থেকে টার ফাইল মুছে ফেলো"
-
-#: standalone/drakbackup:2344
-#, fuzzy, c-format
-msgid "View restore log after file restore."
-msgstr "অন্যান্য ফাইল থেকে ব্যাক-আপ থেকে পুনরুদ্ধারের জন্য ঠিক আছে চাপুন।"
-
-#: standalone/drakbackup:2389
-#, c-format
-msgid "What"
-msgstr "কি"
-
-#: standalone/drakbackup:2394
-#, c-format
-msgid "Where"
-msgstr "কোথায়"
-
-#: standalone/drakbackup:2399
-#, c-format
-msgid "When"
-msgstr "কখন"
-
-#: standalone/drakbackup:2404
-#, c-format
-msgid "More Options"
-msgstr "আরো অপশন"
-
-#: standalone/drakbackup:2417
-#, c-format
-msgid "Backup destination not configured..."
-msgstr "ব্যাপ-আপ-এর গন্তব্য কনফিগার করা হয় নি..."
-
-#: standalone/drakbackup:2437 standalone/drakbackup:4367
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "ড্রেকব্যাক-আপ কনফিগারেশন"
-
-#: standalone/drakbackup:2453
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "অনুগ্রহপূর্বক যে স্থানে ব্যাক-আপ রাখতে চান তা বেছে নিন"
-
-# FIXME
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Hard Drive used to prepare backups for all media"
-msgstr "সকল মিডিয়ার জন্য ব্যাক-আপ প্রস্তুতিতে ব্যবহৃত হার্ডড্রাইভ"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Across Network"
-msgstr "নেটওয়ার্কব্যাপী"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On CD-R"
-msgstr "সিডি-আর এ"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On Tape Device"
-msgstr "টেপ ড্রাইভ এ"
-
-#: standalone/drakbackup:2502
-#, c-format
-msgid "Backup Users"
-msgstr "ব্যবহারকারীদের তথ্য ব্যাক-আপ করো"
-
-#: standalone/drakbackup:2503
-#, c-format
-msgid " (Default is all users)"
-msgstr " (স্বাভাবিক অবস্থায় সকল ব্যবহারকারীর তথ্য ব্যাক-আপ করা হয়)"
-
-#: standalone/drakbackup:2516
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "অনুগ্রহপূর্বক যে সব জিনিষ ব্যাক-আপ করতে চা তা বেছে নিন"
-
-#: standalone/drakbackup:2517
-#, c-format
-msgid "Backup System"
-msgstr "ব্যাক-আপ সিস্টেম"
-
-#: standalone/drakbackup:2519
-#, c-format
-msgid "Select user manually"
-msgstr "নিজ হাতে ব্যবহারকারী বেছে নিন"
-
-#: standalone/drakbackup:2548
-#, c-format
-msgid "Please select data to backup..."
-msgstr "অনুগ্রহপূর্বক যে সব তথ্য ব্যাক-আপ করতে চান তা বেছে নিন..."
-
-#: standalone/drakbackup:2620
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"ব্যাক-আপ উত্‍স: \n"
-
-#: standalone/drakbackup:2621
-#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- সিস্টেম ফাইল:\n"
-
-#: standalone/drakbackup:2623
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- ব্যবহারকারীর ফাইল:\n"
-
-#: standalone/drakbackup:2625
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- অন্যান্য ফাইল:\n"
-
-#: standalone/drakbackup:2627
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-"\n"
-"হার্ডড্রাইভের যে স্থানে সংরক্ষণ করা হয়েছে তার পাথ: %s\n"
-
-#: standalone/drakbackup:2628
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tডিস্কের ব্যবহার %s মেগাবাইটে সীমাবদ্ধ রাখুন\n"
-
-#: standalone/drakbackup:2629
-#, c-format
-msgid "\tDelete backups older than %s day(s)\n"
-msgstr ""
-
-#: standalone/drakbackup:2632
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
-"\n"
-"- ব্যাক-আপ তৈরি সম্পন্ন হওয়ার পর হার্ডড্রাইভ থেকে টার ফাইল মুছে ফেলো।\n"
-
-#: standalone/drakbackup:2637
-#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr ""
-"\n"
-"সিডি'তে লেখো"
-
-#: standalone/drakbackup:2638
-#, c-format
-msgid "RW"
-msgstr "রিড-রাইট"
-
-#: standalone/drakbackup:2639
-#, c-format
-msgid " on device: %s"
-msgstr " এই ডিভাইসে: %s"
-
-#: standalone/drakbackup:2640
-#, c-format
-msgid " (multi-session)"
-msgstr " (মাল্টিসেশন)"
-
-#: standalone/drakbackup:2641
-#, c-format
-msgid ""
-"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-"\n"
-"- এই ডিভাইসের টেপের সংরক্ষণ করো: %s"
-
-#: standalone/drakbackup:2642
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tমোছো=%s"
-
-#: standalone/drakbackup:2644
-#, c-format
-msgid "\tBackup directly to Tape\n"
-msgstr "\tসরাসরি টেপে ব্যাকআপ\n"
-
-#: standalone/drakbackup:2646
-#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
-"\n"
-"- %s এর মাধ্যমে এই হোস্টে সংরক্ষণ করো: %s\n"
-
-#: standalone/drakbackup:2647
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t ব্যবহারকারীর নাম: %s\n"
-"\t\t পাথ: %s \n"
-
-#: standalone/drakbackup:2648
-#, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- অপশন:\n"
-
-#: standalone/drakbackup:2649
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tসিস্টেম ফাইল অন্তর্ভুক্ত করবে না\n"
-
-#: standalone/drakbackup:2651
-#, fuzzy, c-format
-msgid "\tBackups use %s and bzip2\n"
-msgstr "\tব্যাক-আপকৃত ফাইলসমূহ টার ও bzip2 ব্যবহার করে\n"
-
-#: standalone/drakbackup:2652
-#, fuzzy, c-format
-msgid "\tBackups use %s and gzip\n"
-msgstr "\tব্যাক-আপকৃত ফাইলসমূহ টার ও gzip ব্যবহার করে\n"
-
-#: standalone/drakbackup:2653
-#, fuzzy, c-format
-msgid "\tBackups use %s only\n"
-msgstr "\tব্যাক-আপকৃত ফাইলসমূহ শুধু টার ব্যবহার করে\n"
-
-#: standalone/drakbackup:2655
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\t.backupignore ফাইল ব্যবহার করো\n"
-
-#: standalone/drakbackup:2656
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\t%s-কে মেইল প্রেরণ করো\n"
-
-#: standalone/drakbackup:2657
-#, c-format
-msgid "\tSend mail from %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2658
-#, c-format
-msgid "\tUsing SMTP server %s\n"
-msgstr "\t%s এস.এম.টি.পি. সার্ভার ব্যবহার করে\n"
-
-#: standalone/drakbackup:2660
-#, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
-msgstr ""
-"\n"
-"- ডেইমন, %s ভায়া:\n"
-
-#: standalone/drakbackup:2661
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-হার্ডড্রাইভ।\n"
-
-#: standalone/drakbackup:2662
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-সিডি-আর।\n"
-
-#: standalone/drakbackup:2663
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-টেপ \n"
-
-#: standalone/drakbackup:2664
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-এফ.টি.পি.'র মাধ্যমে নেটওয়ার্ক।\n"
-
-#: standalone/drakbackup:2665
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-এস.এস.এইচ.-এর মাধ্যমে নেটওয়ার্ক।\n"
-
-#: standalone/drakbackup:2666
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-rsync-এর মাধ্যমে নেটওয়ার্ক।\n"
-
-#: standalone/drakbackup:2668
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "কোন কনফিগারেশন পাওয়া যায় নি, অনুগ্রহপূর্বক 'উইজার্ড' বা 'অগ্রসর' ক্লিক করুন।\n"
-
-#: standalone/drakbackup:2673
-#, c-format
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"যে সকল তথ্য ব্যাক-আপ থেকে পুনরুদ্ধার করতে হবে তাদের তালিকা:\n"
-"\n"
-
-#: standalone/drakbackup:2675
-#, c-format
-msgid "- Restore System Files.\n"
-msgstr "- ব্যাক-আপ থেকে সিস্টেম ফাইলসমূহ পুনরুদ্ধার করো।\n"
-
-# FIXME
-#: standalone/drakbackup:2677 standalone/drakbackup:2687
-#, c-format
-msgid " - from date: %s %s\n"
-msgstr " - এই তারিখ হতে: %s %s\n"
-
-#: standalone/drakbackup:2680
-#, c-format
-msgid "- Restore User Files: \n"
-msgstr "- ব্যাক-আপ থেকে ব্যবহারকারীর ফাইলসমূহ পুনরুদ্ধার করো।\n"
-
-#: standalone/drakbackup:2685
-#, c-format
-msgid "- Restore Other Files: \n"
-msgstr "- ব্যাক-আপ থেকে অন্যান্য ফাইলসমূহ পুনরুদ্ধার করো।\n"
-
-#: standalone/drakbackup:2864
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"ক্ষতিগ্রস্থ তথ্যের তালিকা:\n"
-"\n"
-
-#: standalone/drakbackup:2866
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "অনুগ্রহপূর্বক পরবর্তী বার এটির টিক উঠিয়ে দিন বা একে অপসারণ করুন। "
-
-#: standalone/drakbackup:2876
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "ব্যাক-আপকৃত ফাইলসমূহ ক্ষতিগ্রস্থ"
-
-#: standalone/drakbackup:2897
-#, c-format
-msgid " All of your selected data have been "
-msgstr " আপনার বাছাইকৃত সকল তথ্য "
-
-#: standalone/drakbackup:2898
-#, c-format
-msgid " Successfully Restored on %s "
-msgstr " সফলভাবে ব্যাক-আপ থেকে পুনরুদ্ধার করে %s-এ রাখা হয়েছে "
-
-#: standalone/drakbackup:2999
-#, c-format
-msgid "/usr/bin/star not found, using tar..."
-msgstr ""
-
-#: standalone/drakbackup:3035
-#, c-format
-msgid " Restore Configuration "
-msgstr " ব্যাক-আপ থেকে পুনরুদ্ধার প্রক্রিয়ার কনফিগারেশন "
-
-#: standalone/drakbackup:3063
-#, c-format
-msgid "OK to restore the other files."
-msgstr "অন্যান্য ফাইল থেকে ব্যাক-আপ থেকে পুনরুদ্ধারের জন্য ঠিক আছে চাপুন।"
-
-#: standalone/drakbackup:3079
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"ব্যবহারকারীর যে তালিকা ব্যাক-আপ থেকে পুরুদ্ধার করতে হবে (শুধুমাত্র প্রত্যেক "
-"ব্যবহারকারীর অতি সাম্প্রতিক তথ্যাবলীই গুরুত্বপূর্ণ)"
-
-#: standalone/drakbackup:3144
-#, c-format
-msgid "Please choose the date to restore:"
-msgstr "অনুগ্রহপূর্বক ব্যাক-আপ থেকে যে সকল তথ্য পুনরুদ্ধার করতে চান তা বেছে নিন:"
-
-#: standalone/drakbackup:3181
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "হার্ডডিস্ক থেকে পুনরুদ্ধার করো।"
-
-#: standalone/drakbackup:3183
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "যে ডিরেক্টরিতে ব্যাক-আপ রাখা হয়েছে তাতে প্রবেশ করুন"
-
-#: standalone/drakbackup:3187
-#, c-format
-msgid "Directory with backups"
-msgstr "ব্যাক-আপ ধারনকারী ডিরেক্টরি"
-
-#: standalone/drakbackup:3241
-#, c-format
-msgid "Select another media to restore from"
-msgstr "ব্যাক-আপ থেকে তথ্য পুনরুদ্ধারের জন্য অপর একটি মিডিয়া বেছে নিন"
-
-#: standalone/drakbackup:3243
-#, c-format
-msgid "Other Media"
-msgstr "অন্যান্য মিডিয়া"
-
-#: standalone/drakbackup:3248
-#, c-format
-msgid "Restore system"
-msgstr "ব্যাক-আপ থেকে সিস্টেম ফাইল পুনরুদ্ধার করো"
-
-#: standalone/drakbackup:3249
-#, c-format
-msgid "Restore Users"
-msgstr "ব্যাক-আপ থেকে ব্যবহারকারীর ফাইল পুনরুদ্ধার করো"
-
-#: standalone/drakbackup:3250
-#, c-format
-msgid "Restore Other"
-msgstr "ব্যাক-আপ থেকে অন্যান্য ফাইল পুনরুদ্ধার করো"
-
-#: standalone/drakbackup:3252
-#, c-format
-msgid "Select path to restore (instead of /)"
-msgstr ""
-"ব্যাক-আপ থেকে ফাইল পুনরুদ্ধার করে যেখানে রাখা হবে তার পাথ বেছে নিন (/ এর পরিবর্তে)"
-
-#: standalone/drakbackup:3256 standalone/drakbackup:3539
-#, c-format
-msgid "Path To Restore To"
-msgstr "ব্যাক-আপ থেকে ফাইল পুনরুদ্ধার করে যেখানে রাখা হবে"
-
-#: standalone/drakbackup:3259
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-"ব্যাক-আপ থেকে পুরুদ্ধারের পূর্বে নতুন করে ব্যাক-আপ করো (শুধুমাত্র বৃদ্ধিঘটিত ব্যাক-আপ এর "
-"ক্ষেত্রে প্রযোজ্য।)"
-
-#: standalone/drakbackup:3261
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "ব্যাক-আপ থেকে পুরুদ্ধারের পূর্বে ব্যবহারকারীর ডিরেক্টরি অপসারণ করো।"
-
-#: standalone/drakbackup:3345
-#, c-format
-msgid "Filename text substring to search for (empty string matches all):"
-msgstr ""
-"ফাইলের নাম অনুসন্ধানে যে পঙ্‌ক্তি ব্যবহার করা হবে (ফাঁকা পঙ্‌ক্তি সকল নামকে নির্দেশ "
-"করবে):"
-
-#: standalone/drakbackup:3348
-#, c-format
-msgid "Search Backups"
-msgstr "ব্যাক-আপ অনুসন্ধান করো"
-
-#: standalone/drakbackup:3367
-#, c-format
-msgid "No matches found..."
-msgstr "কোন মিল পাওয়া যায় নি..."
-
-# FIXME
-#: standalone/drakbackup:3371
-#, c-format
-msgid "Restore Selected"
-msgstr "বাছাইকৃতদের থেকে ব্যাক-আপ পুনরুদ্ধার করো"
-
-#: standalone/drakbackup:3507
-#, c-format
-msgid ""
-"Click date/time to see backup files.\n"
-"Ctrl-Click files to select multiple files."
-msgstr ""
-"ব্যাক-আপ ফাইল দেখার জন্য তারিখ/সময়-এ ক্লিক করুন।\n"
-"একাধিক ফাইল বাছাই করার জন্য Ctrl চেপে ধরে ফাইলে ক্লিক করুন।"
-
-#: standalone/drakbackup:3513
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr "বাছাইকৃত তালিকা এন্ট্রি থেকে ব্যাক-আপ পুনরুদ্ধার করো"
-
-#: standalone/drakbackup:3522
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr "বাছাইকৃত ফাইল থেকে ব্যাক-আপ পুনরুদ্ধার করো"
-
-#: standalone/drakbackup:3599
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "%s-এ কোন ব্যাক-আপ ফাইল পাওয়া যায় নি।"
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid "Restore From CD"
-msgstr "সিডি থেকে পুনরুদ্ধার করো"
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-"ভলিউম লেবেল %s সম্বলিত সিডি-কে সিডি ড্রাইভে ঢুকিয়ে\n"
-"/mnt/cdrom অবস্থানে মাউন্ট করো"
-
-#: standalone/drakbackup:3614
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "সিডি'র লেবেল সঠিক নয়। এই ডিস্কটি %s লেবেল সম্বলিত।"
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid "Restore From Tape"
-msgstr "টেপ থেকে ব্যাক-আপ পুনরুদ্ধার করো"
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-"%s টেপ ড্রাইভ যন্ত্রে %s ভলিউম \n"
-"লেবেলের প্রবেশ করান"
-
-#: standalone/drakbackup:3626
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "সঠিক টেপ লেবেল নয়। টেপটির লেবেল হল %s ।"
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network"
-msgstr "নেটওয়ার্কের সাহায্যে ব্যাক-আপ থেকে পুনরুদ্ধার করো"
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "এই নেটওয়ার্ক প্রোটোকলের সাহায্যে ব্যাক-আপ থেকে পুনরুদ্ধার করো: %s"
-
-#: standalone/drakbackup:3638
-#, c-format
-msgid "Host Name"
-msgstr "হোস্ট নাম"
-
-#: standalone/drakbackup:3639
-#, c-format
-msgid "Host Path or Module"
-msgstr "হোস্ট পাথ বা মডিউল"
-
-#: standalone/drakbackup:3646
-#, c-format
-msgid "Password required"
-msgstr "পাসওয়ার্ড প্রয়োজন"
-
-#: standalone/drakbackup:3652
-#, c-format
-msgid "Username required"
-msgstr "ব্যবহারকারীর নাম প্রয়োজন"
-
-#: standalone/drakbackup:3655
-#, c-format
-msgid "Hostname required"
-msgstr "হোস্টনাম প্রয়োজন"
-
-#: standalone/drakbackup:3660
-#, c-format
-msgid "Path or Module required"
-msgstr "পাথ বা মডিউল প্রয়োজন"
-
-#: standalone/drakbackup:3672
-#, c-format
-msgid "Files Restored..."
-msgstr "ব্যাক-আপ থেকে ফাইল পুনরুদ্ধার করা হয়েছে..."
-
-#: standalone/drakbackup:3675
-#, c-format
-msgid "Restore Failed..."
-msgstr "ব্যাক-আপ থেকে পুনরুদ্ধারের প্রচেষ্টা ব্যর্থ হয়েছে..."
-
-#: standalone/drakbackup:3703
-#, c-format
-msgid "%s not retrieved..."
-msgstr "%s-কে ফিরে পাওয়া যায় নি..."
-
-#: standalone/drakbackup:3929 standalone/drakbackup:3998
-#, c-format
-msgid "Search for files to restore"
-msgstr "ব্যাক-আপ থেকে পুনরুদ্ধারের উদ্দেশ্যে ফাইল অনুসন্ধান"
-
-#: standalone/drakbackup:3933
-#, c-format
-msgid "Restore all backups"
-msgstr "ব্যাক-আপ থেকে সব কিছু পুনরুদ্ধার করো"
-
-#: standalone/drakbackup:3941
-#, c-format
-msgid "Custom Restore"
-msgstr "ব্যাক-আপ থেকে স্বনির্বাচনের মাধ্যমে পুনরুদ্ধার করো"
-
-#: standalone/drakbackup:3945 standalone/drakbackup:3994
-#, c-format
-msgid "Restore From Catalog"
-msgstr "তালিকা থেকে ব্যাক-আপ পুনরুদ্ধার করো"
-
-#: standalone/drakbackup:3966
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "পুনরুদ্ধার করার মত কোন ব্যাক-আপ পাওয়া যাচ্ছে না...\n"
-
-#: standalone/drakbackup:3967
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "নিশ্চিত হন যে সঠিক পাথ হল %s"
-
-#: standalone/drakbackup:3968
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " এবং সিডি'টি ড্রাইভে রয়েছে"
-
-#: standalone/drakbackup:3970
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr ""
-"মাউন্ট করার অযোগ্য মিডিয়ায় ব্যাক-আপ রয়েছে - তালিকা ব্যবহার করে ব্যাক-আপ থেকে "
-"পুনরুদ্ধার করো"
-
-#: standalone/drakbackup:3986
-#, c-format
-msgid "CD in place - continue."
-msgstr "সিডি যথাস্থানে রয়েছে - এগিয়ে যাও।"
-
-#: standalone/drakbackup:3991
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "নতুন জমা করা ভান্ডার ব্রাউজ করতে।"
-
-#: standalone/drakbackup:3992
-#, c-format
-msgid "Directory To Restore From"
-msgstr "যে ডিরেক্টরি থেকে ব্যাক-আপ পুনরুদ্ধার করো"
-
-#: standalone/drakbackup:4028
-#, c-format
-msgid "Restore Progress"
-msgstr "ব্যাক-আপ থেকে পুনরুদ্ধারের অগ্রগতি"
-
-#: standalone/drakbackup:4136
-#, c-format
-msgid "Build Backup"
-msgstr "ব্যাক-আপ তৈরি করো"
-
-#: standalone/drakbackup:4169 standalone/drakbackup:4466
-#, c-format
-msgid "Restore"
-msgstr "ব্যাক-আপ থেকে পুনরুদ্ধার"
-
-#: standalone/drakbackup:4261
-#, c-format
-msgid "Please select data to restore..."
-msgstr "অনুগ্রহপূর্বক যে সব তথ্য ব্যাক-আপ থেকে পুনরুদ্ধার করতে চান তা বেছে নিন..."
-
-#: standalone/drakbackup:4301
-#, c-format
-msgid "Backup system files"
-msgstr "সিস্টেম ফাইলের ব্যাক-আপ তৈরি করো"
-
-#: standalone/drakbackup:4304
-#, c-format
-msgid "Backup user files"
-msgstr "ব্যবহারকারীর ফাইলের ব্যাক-আপ তৈরি করো"
-
-#: standalone/drakbackup:4307
-#, c-format
-msgid "Backup other files"
-msgstr "অন্যান্য ফাইলের ব্যাক-আপ তৈরি করো"
-
-#: standalone/drakbackup:4310 standalone/drakbackup:4344
-#, c-format
-msgid "Total Progress"
-msgstr "মোট অগ্রগতি"
-
-#: standalone/drakbackup:4336
-#, c-format
-msgid "Sending files by FTP"
-msgstr "এফ-টি-পি ব্যবহার করে ফাইল প্রেরণ করা হচ্ছে"
-
-#: standalone/drakbackup:4339
-#, c-format
-msgid "Sending files..."
-msgstr "ফাইল প্রেরণ করা হচ্ছে..."
-
-#: standalone/drakbackup:4409
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "এখন কনফিগারেশন ফাইল থেকে ব্যাক-আপ তৈরি করো"
-
-#: standalone/drakbackup:4414
-#, c-format
-msgid "View Backup Configuration."
-msgstr "ব্যাক-আপ প্রক্রিয়ার কনফিগারেশন দেখাও।"
-
-#: standalone/drakbackup:4440
-#, c-format
-msgid "Wizard Configuration"
-msgstr "উইজার্ড কনফিগারেশন"
-
-#: standalone/drakbackup:4445
-#, c-format
-msgid "Advanced Configuration"
-msgstr "অগ্রসর কনফিগারেশন"
-
-#: standalone/drakbackup:4450
-#, c-format
-msgid "View Configuration"
-msgstr "কনফিগারেশন দেখাও"
-
-#: standalone/drakbackup:4454
-#, c-format
-msgid "View Last Log"
-msgstr "LastLog দেখাও"
-
-#: standalone/drakbackup:4459
-#, c-format
-msgid "Backup Now"
-msgstr "এখন ব্যাক-আপ করো"
-
-#: standalone/drakbackup:4463
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"কোন কনফিগারেশন ফাইল পাওয়া যায় নি \n"
-"অনুগ্রহপূর্বক 'উইজার্ড' বা 'অগ্রসর' ক্লিক করুন।"
-
-#: standalone/drakbackup:4501
-#, fuzzy, c-format
-msgid "Load profile"
-msgstr "লোকাল ফাইল"
-
-#: standalone/drakbackup:4510
-#, fuzzy, c-format
-msgid "Save profile as..."
-msgstr "...এর মত সেভ করো"
-
-#: standalone/drakbackup:4532 standalone/drakbackup:4535
-#, c-format
-msgid "Drakbackup"
-msgstr "ড্রেকব্যাক-আপ"
-
-#: standalone/drakboot:49
-#, c-format
-msgid "No bootloader found, creating a new configuration"
-msgstr ""
-
-#: standalone/drakboot:84 standalone/harddrake2:190 standalone/harddrake2:191
-#: standalone/logdrake:69 standalone/printerdrake:150
-#: standalone/printerdrake:151 standalone/printerdrake:152
-#, c-format
-msgid "/_File"
-msgstr "/ফাইল (_ফ)"
-
-#: standalone/drakboot:85 standalone/logdrake:75
-#, c-format
-msgid "/File/_Quit"
-msgstr "/ফাইল/প্রস্থান (_প)"
-
-# X11 keysyms must be used here;
-# bengali letter "প" is 0x10009aa
-#: standalone/drakboot:85 standalone/harddrake2:191 standalone/logdrake:75
-#: standalone/printerdrake:152
-#, c-format
-msgid "<control>Q"
-msgstr "<control>0x10009aa"
-
-#: standalone/drakboot:125
-#, c-format
-msgid "Text only"
-msgstr ""
-
-#: standalone/drakboot:126
-#, c-format
-msgid "Verbose"
-msgstr ""
-
-#: standalone/drakboot:127
-#, c-format
-msgid "Silent"
-msgstr "নীরব"
-
-#: standalone/drakboot:134
-#, c-format
-msgid ""
-"Your system bootloader is not in framebuffer mode. To activate graphical "
-"boot, select a graphic video mode from the bootloader configuration tool."
-msgstr ""
-"আপনার সিস্টেমের বুটলোডার ফ্রেমবাফার মোডে নেই। গ্রাফিকাল বুট পদ্ধতি সক্রিয় করার জন্য "
-"গ্রাফিকাল বুট কনফিগারেশন থেকে একটি গ্রাফিকাল ভিডিও মোড বেছে নিন।"
-
-#: standalone/drakboot:135
-#, c-format
-msgid "Do you want to configure it now?"
-msgstr "আপনি কি এক্ষুনি কনফিগার করতে চান?"
-
-#: standalone/drakboot:144
-#, c-format
-msgid "Install themes"
-msgstr "থিম ইনস্টল করো"
-
-#: standalone/drakboot:146
-#, c-format
-msgid "Graphical boot theme selection"
-msgstr "গ্রাফিকাল বুট থিম কনফিগারেশন"
-
-#: standalone/drakboot:149
-#, fuzzy, c-format
-msgid "Graphical boot mode:"
-msgstr "গ্রাফিকাল বুট পদ্ধতি ব্যবহার করো"
-
-#: standalone/drakboot:151
-#, c-format
-msgid "Theme"
-msgstr "থিম"
-
-# FIXME
-#: standalone/drakboot:154
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"কনসোলে\n"
-"থিম দেখাও"
-
-#: standalone/drakboot:159
-#, c-format
-msgid "Create new theme"
-msgstr "নতুন থিম তৈরি করো"
-
-#: standalone/drakboot:191
-#, c-format
-msgid "Default user"
-msgstr "ডিফল্ট ব্যবহারকারী"
-
-#: standalone/drakboot:192
-#, c-format
-msgid "Default desktop"
-msgstr "ডিফল্ট ডেস্কটপ"
-
-#: standalone/drakboot:195
-#, c-format
-msgid "No, I do not want autologin"
-msgstr "না, আমি স্বয়ংক্রিয়ভাবে লগ-ইন করতে চাই না"
-
-# FIXME
-#: standalone/drakboot:196
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "হ্যাঁ, আমি স্বয়ংক্রিয়ভাবে এটিতে লগ-ইন করতে চাই (ব্যবহারকারী, ডেস্কটপ)"
-
-#: standalone/drakboot:203
-#, c-format
-msgid "System mode"
-msgstr "সিস্টেম মোড"
-
-#: standalone/drakboot:206
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "সিস্টেম চালু করার সময় গ্রাফিকাল মোড সচল করো"
-
-#: standalone/drakboot:272
-#, c-format
-msgid ""
-"Please choose a video mode, it will be applied to each of the boot entries "
-"selected below.\n"
-"Be sure your video card supports the mode you choose."
-msgstr ""
-"অনুগ্রহ করে একটি ভিডিও মোড বেছে নিন, এটার নিচের প্রত্যেক বাছাইকৃত বুট এন্ট্রিতে "
-"প্রভাব ফেলবে।\n"
-"নিশ্চিত হোন যে আপনার ভিডিও কার্ড আপনার বেছে নেয়া মোড সমর্থন করে কিনা।"
-
-#: standalone/drakbug:41
-#, c-format
-msgid "Mandriva Linux Bug Report Tool"
-msgstr "ম্যান্ড্রিব লিনাক্স ত্রুটি রিপোর্টকারী টুল"
-
-#: standalone/drakbug:46
-#, c-format
-msgid "Mandriva Linux Control Center"
-msgstr "ম্যান্ড্রিব লিনাক্স নিয়ন্ত্রন (control) সেন্টার"
-
-#: standalone/drakbug:48
-#, c-format
-msgid "Synchronization tool"
-msgstr "সমন্বয়কারী সফটওয়ার"
-
-#: standalone/drakbug:49 standalone/drakbug:152
-#, c-format
-msgid "Standalone Tools"
-msgstr "স্বয়ংসম্পূর্ণ সফটওয়ার"
-
-#: standalone/drakbug:50
-#, c-format
-msgid "HardDrake"
-msgstr "হার্ডড্রেক"
-
-#: standalone/drakbug:51
-#, c-format
-msgid "Mandriva Online"
-msgstr "ম্যান্ড্রিব অনলাইন (Mandriva Online)"
-
-#: standalone/drakbug:52
-#, c-format
-msgid "Menudrake"
-msgstr "মেনুড্রেক"
-
-#: standalone/drakbug:53
-#, c-format
-msgid "Msec"
-msgstr "Msec"
-
-# মিলিসেকেন্ড, Fix me
-#: standalone/drakbug:54
-#, c-format
-msgid "Remote Control"
-msgstr "দূর নিয়ন্ত্রণ"
-
-#: standalone/drakbug:55
-#, c-format
-msgid "Software Manager"
-msgstr "সফটওয়ার ব্যবস্থাপক"
-
-#: standalone/drakbug:56
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
-
-# FIXME
-#: standalone/drakbug:57
-#, c-format
-msgid "Windows Migration tool"
-msgstr "উইন্ডোজ মাইগ্রেশন টুল"
-
-#: standalone/drakbug:58 standalone/draksambashare:1234
-#, c-format
-msgid "Userdrake"
-msgstr "ইউজারড্রেক"
-
-#: standalone/drakbug:59
-#, c-format
-msgid "Configuration Wizards"
-msgstr "কনফিগারেশন উইজার্ড"
-
-# সাম
-#: standalone/drakbug:81
-#, c-format
-msgid "Select Mandriva Tool:"
-msgstr "Mandriva টুল বেছে নিন:"
-
-# সাম
-#: standalone/drakbug:82
-#, c-format
-msgid ""
-"or Application Name\n"
-"(or Full Path):"
-msgstr ""
-"অথবা অ্যাপলিকেশনের নাম\n"
-"(অথবা সম্পূর্ণ পাথ):"
-
-#: standalone/drakbug:85
-#, c-format
-msgid "Find Package"
-msgstr "প্যাকেজ অনুসন্ধান করো"
-
-#: standalone/drakbug:87
-#, c-format
-msgid "Package: "
-msgstr "প্যাকেজ:"
-
-#: standalone/drakbug:88
-#, c-format
-msgid "Kernel:"
-msgstr "কার্ণেল:"
-
-# সাম
-#: standalone/drakbug:101
-#, c-format
-msgid ""
-"To submit a bug report, click on the report button. \n"
-"This will open a web browser window on %s where you'll find a form to fill "
-"in. The information displayed above will be transferred to that server. \n"
-"Things useful to include in your report are the output of lspci, kernel "
-"version, and /proc/cpuinfo."
-msgstr ""
-"ত্রুটি রিপোর্ট প্রেরণের জন্য 'রিপোর্ট' বাটনে ক্লিক করুন।\n"
-"এটি %s এর ওপর একটি ওয়েব ব্রাউজার চালু করবে যেখানে আপনাকে একটি ফর্ম পূরণ করতে "
-"হবে। এরপর উল্লেখিত তথ্যাবলী ঐ সার্ভারে স্থানান্তরিত হবে। \n"
-"আপনার রিপোর্টে lspci আউটপুট, কার্নেল সংস্করণ এবং /proc/cpuinfo জাতীয় প্রয়োজনীয় "
-"তথ্য সংযুক্ত করুন।"
-
-#: standalone/drakbug:107
-#, c-format
-msgid "Report"
-msgstr "রিপোর্ট"
-
-#: standalone/drakbug:162
-#, c-format
-msgid "Not installed"
-msgstr "ইনস্টল করা নেই"
-
-#: standalone/drakbug:174
-#, c-format
-msgid "Package not installed"
-msgstr "প্যাকেজ ইনস্টল করা নেই"
-
-#: standalone/drakclock:29
-#, c-format
-msgid "DrakClock"
-msgstr "ড্রেকঘড়ি"
-
-#: standalone/drakclock:39
-#, c-format
-msgid "not defined"
-msgstr "অনির্দিষ্ট"
-
-#: standalone/drakclock:41
-#, c-format
-msgid "Change Time Zone"
-msgstr "সময় অঞ্চল পরিবর্তন করো"
-
-#: standalone/drakclock:45
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "সময়-অঞ্চল - ড্রেকঘড়ি"
-
-#: standalone/drakclock:47
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "জি.এম.টি. - ড্রেকঘড়ি"
-
-#: standalone/drakclock:47 standalone/finish-install:57
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "আপনার কম্পিউটারের হার্ডওয়ার-ক্লক কি জি.এম.টি. সময় অনুযায়ী চলছে?"
-
-#: standalone/drakclock:75
-#, c-format
-msgid "Network Time Protocol"
-msgstr "নেটওয়ার্ক টাইম প্রোটোকল"
-
-#: standalone/drakclock:77
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-"আপনার কম্পিউটারটি এন.টি.পি. ব্যবহার করে কোন\n"
-"দূরবর্তী টাইম সার্ভারের সাথে সময় মিলিয়ে নিতে পারে"
-
-#: standalone/drakclock:78
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr "নেটওয়ার্ক টাইম প্রোটোকল সক্রিয় করো"
-
-#: standalone/drakclock:86
-#, c-format
-msgid "Server:"
-msgstr "সার্ভার:"
-
-#: standalone/drakclock:124
-#, c-format
-msgid "Could not synchronize with %s."
-msgstr "%s এর সাথে সিন্‌ক্রোনাইজ করতে পারছে না।"
-
-#: standalone/drakclock:146 standalone/drakclock:156
-#, c-format
-msgid "Reset"
-msgstr "রিসেট"
-
-#: standalone/drakclock:224
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol\n"
-"\n"
-"Do you want to install ntp?"
-msgstr ""
-"নেটওয়ার্ক টাইম প্রোটোকল সক্রিয় করার জন্য\n"
-"আমাদের এনটি.পি. প্যাকেজ ইনস্টল করতে হবে\n"
-"\n"
-"আপনি কি এনটি.পি. ইনস্টল করতে চান ?"
-
-#: standalone/drakconnect:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "নেটওয়ার্ক কনফিগারেশন (%d অ্যাডাপ্টার)"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Gateway:"
-msgstr "গেটওয়ে:"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Interface:"
-msgstr "ইন্টারফেস:"
-
-#: standalone/drakconnect:93 standalone/net_monitor:116
-#, c-format
-msgid "Wait please"
-msgstr "অনুগ্রহপূর্বক অপেক্ষা করুন"
-
-#: standalone/drakconnect:109
-#, c-format
-msgid "Interface"
-msgstr "ইন্টারফেস"
-
-#: standalone/drakconnect:109 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "State"
-msgstr "অবস্থা"
-
-#: standalone/drakconnect:126
-#, c-format
-msgid "Hostname: "
-msgstr "হোস্টনাম: "
-
-#: standalone/drakconnect:128
-#, c-format
-msgid "Configure hostname..."
-msgstr "হোস্টনাম কনফিগার করো..."
-
-#: standalone/drakconnect:142 standalone/drakconnect:845
-#, c-format
-msgid "LAN configuration"
-msgstr "ল্যান কনফিগারেশন"
-
-#: standalone/drakconnect:147
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "স্থানীয় নেটওয়ার্ক কনফিগার করো..."
-
-#: standalone/drakconnect:155 standalone/drakconnect:237
-#: standalone/drakconnect:241
-#, c-format
-msgid "Apply"
-msgstr "প্রয়োগ"
-
-#: standalone/drakconnect:188
-#, c-format
-msgid "Manage connections"
-msgstr "সংযোগ ব্যবস্থাপনা"
-
-#: standalone/drakconnect:215
-#, c-format
-msgid "Device selected"
-msgstr "বাছাইকৃত ডিভাইস"
-
-#: standalone/drakconnect:296
-#, c-format
-msgid "IP configuration"
-msgstr "আই.পি. কনফিগারেশন"
-
-#: standalone/drakconnect:335
-#, c-format
-msgid "DNS servers"
-msgstr "ডি.এন.এস. সার্ভার"
-
-#: standalone/drakconnect:343
-#, c-format
-msgid "Search Domain"
-msgstr "অনুসন্ধান ক্ষেত্র (Domain)"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "static"
-msgstr "স্থির"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "DHCP"
-msgstr "ডি.এইচ.সি.পি."
-
-#: standalone/drakconnect:515
-#, c-format
-msgid "Flow control"
-msgstr "ফ্লো কনট্রোল"
-
-#: standalone/drakconnect:516
-#, c-format
-msgid "Line termination"
-msgstr "লাইন টার্মিনেশন"
-
-#: standalone/drakconnect:527
-#, c-format
-msgid "Modem timeout"
-msgstr "মডেম টাইম-আউট"
-
-#: standalone/drakconnect:531
-#, c-format
-msgid "Use lock file"
-msgstr "লক (Lock) ফাইল ব্যবহার করো"
-
-#: standalone/drakconnect:533
-#, c-format
-msgid "Wait for dialup tone before dialing"
-msgstr "ডায়াল করার পূর্বে ডায়াল টোনের জন্য অপেক্ষা করো"
-
-#: standalone/drakconnect:536
-#, c-format
-msgid "Busy wait"
-msgstr "ব্যস্ততার অপেক্ষা"
-
-#: standalone/drakconnect:541
-#, c-format
-msgid "Modem sound"
-msgstr "মডেমের শব্দ"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Enable"
-msgstr "সক্রিয়"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Disable"
-msgstr "নিষ্ক্রিয়"
-
-#: standalone/drakconnect:593 standalone/harddrake2:50
-#, c-format
-msgid "Media class"
-msgstr "মিডিয়া শ্রেণী"
-
-#: standalone/drakconnect:594
-#, c-format
-msgid "Module name"
-msgstr "মডিউলের নাম"
-
-#: standalone/drakconnect:595
-#, c-format
-msgid "Mac Address"
-msgstr "ম্যাক (Mac) ঠিকানা"
-
-#: standalone/drakconnect:596 standalone/harddrake2:28
-#: standalone/harddrake2:120
-#, c-format
-msgid "Bus"
-msgstr "বাস"
-
-#: standalone/drakconnect:597 standalone/harddrake2:34
-#, c-format
-msgid "Location on the bus"
-msgstr "বাস-এ অবস্থান"
-
-#: standalone/drakconnect:700 standalone/drakgw:311
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"আপনার কম্পিউটারে কোন ইথারনেট নেটওয়ার্ক অ্যাডাপ্টার সনাক্ত করা যায় নি। অনুগ্রহপূর্বক "
-"হার্ডওয়ার কনফিগারেশন সফটওয়ারটি চালান।"
-
-#: standalone/drakconnect:709
-#, c-format
-msgid "Remove a network interface"
-msgstr "নেটওয়ার্ক ইন্টারফেস অপসারণ করো"
-
-#: standalone/drakconnect:713
-#, c-format
-msgid "Select the network interface to remove:"
-msgstr "যে নেটওয়ার্ক ইন্টারফেসটি অপসারণ করা হবে তা বেছে নিন:"
-
-#: standalone/drakconnect:745
-#, c-format
-msgid ""
-"An error occurred while deleting the \"%s\" network interface:\n"
-"\n"
-"%s"
-msgstr ""
-"\"%s\" নেটওয়ার্ক ইন্টারফেস অপসারণের সময় সমস্যা হয়েছে:\n"
-"\n"
-"%s"
-
-#: standalone/drakconnect:746
-#, c-format
-msgid ""
-"Congratulations, the \"%s\" network interface has been successfully deleted"
-msgstr "অভিনন্দন, \"%s\" নেটওয়ার্ক ইন্টারফেসটি সফলভাবে অপসারণ করা গিয়েছে"
-
-#: standalone/drakconnect:761
-#, c-format
-msgid "No IP"
-msgstr "কোন আই.পি. নেই"
-
-#: standalone/drakconnect:762
-#, c-format
-msgid "No Mask"
-msgstr "কোন মাস্ক (Mask) নেই"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "up"
-msgstr "সক্রিয়"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "down"
-msgstr "নিষ্ক্রিয়"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Connected"
-msgstr "সংযুক্ত"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Not connected"
-msgstr "সংযোগহীন"
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Disconnect..."
-msgstr "সংযোগ বিচ্ছিন্ন করো..."
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Connect..."
-msgstr "সংযোগ স্থাপন করো..."
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Deactivate now"
-msgstr "এখনি নিষ্ক্রিয় করো"
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Activate now"
-msgstr "এখনি সক্রিয় করো"
-
-#: standalone/drakconnect:849
-#, c-format
-msgid ""
-"You do not have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"আপনার সিস্টেমে কোন কনফিগারকৃত ইন্টারফেস নেই।\n"
-"'কনফিগার' চেপে প্রথমে তাদের কনফিগার করুন"
-
-#: standalone/drakconnect:863
-#, c-format
-msgid "LAN Configuration"
-msgstr "ল্যান কনফিগারেশন"
-
-#: standalone/drakconnect:875
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "অ্যাডাপ্টার %s: %s"
-
-#: standalone/drakconnect:884
-#, c-format
-msgid "Boot Protocol"
-msgstr "বুট প্রোটোকল"
-
-#: standalone/drakconnect:885
-#, c-format
-msgid "Started on boot"
-msgstr "বুট হওয়ার সময় সচল হয়"
-
-#: standalone/drakconnect:921
-#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"এই ইন্টারফেস এখনো কন্‌ফিগার করা হয়নি।\n"
-"ম্যান্ড্রিব লিনাক্স নিয়ন্ত্রক কেন্দ্র থেকে সহকারী \"ইন্টারফেস যুক্ত করো\" চালান"
-
-# সাম
-#: standalone/drakconnect:975 standalone/net_applet:51
-#, c-format
-msgid ""
-"You do not have any configured Internet connection.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"আপনার সিস্টেমে কোন ইন্টারনেট সংযোগ কনফিগার করা নেই।\n"
-"অনুগ্রহপূর্বক Mandriva Linux নিয়ন্ত্রণকেন্দ্র থেকে \"%s\" চালান।"
-
-#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: standalone/drakconnect:976 standalone/drakroam:34 standalone/net_applet:52
-#, c-format
-msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
-msgstr "নতুন নেটওয়ার্ক ইন্টারফেস সেট আপ করুন (LAN, ISDN, ADSL, ...)"
-
-#: standalone/drakconnect:981
-#, c-format
-msgid "Internet connection configuration"
-msgstr "ইন্টারনেট সংযোগ কনফিগারেশন"
-
-#: standalone/drakconnect:994
-#, c-format
-msgid "Third DNS server (optional)"
-msgstr "তৃতীয় DNS সার্ভার (ঐচ্ছিক)"
-
-#: standalone/drakconnect:1016
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "ইন্টারনেট সংযোগ কনফিগারেশন"
-
-# FIXME
-#: standalone/drakconnect:1017
-#, c-format
-msgid "Internet access"
-msgstr "ইন্টারনেট ব্যবহার"
-
-#: standalone/drakconnect:1019 standalone/net_monitor:95
-#, c-format
-msgid "Connection type: "
-msgstr "সংযোগের ধরন: "
-
-#: standalone/drakconnect:1022
-#, c-format
-msgid "Status:"
-msgstr "অবস্থা:"
-
-#: standalone/drakconnect:1027
-#, c-format
-msgid "Parameters"
-msgstr "প্যারামিটার"
-
-#: standalone/drakedm:40
-#, c-format
-msgid "GDM (GNOME Display Manager)"
-msgstr "GDM (গুহ্‌নোম ডিসপ্লে ম্যানেজার)"
-
-#: standalone/drakedm:41
-#, c-format
-msgid "KDM (KDE Display Manager)"
-msgstr "KDM (কেডিই ডিসপ্লে ম্যানেজার)"
-
-#: standalone/drakedm:42
-#, c-format
-msgid "XDM (X Display Manager)"
-msgstr "XDM (X ডিসপ্লে ম্যানেজার)"
-
-#: standalone/drakedm:53
-#, c-format
-msgid "Choosing a display manager"
-msgstr "একটি ডিসপ্লে ম্যানেজার বেছে নেয়া হচ্ছে"
-
-#: standalone/drakedm:54
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"X11 ডিসপ্লে ব্যবস্থাপক ব্যবহার করে আপনি চলমান এক্স উইন্ডো সিস্টেমে লগ-ইন \n"
-"করতে পারেন এবং আপনার \n"
-"স্থানীয় কম্পিউটারে একাধিক পৃথক এক্স সেশন চালাতে পারেন।"
-
-#: standalone/drakedm:72
-#, c-format
-msgid "The change is done, do you want to restart the dm service?"
-msgstr ""
-"পরিবর্তন সম্পন্ন হয়েছে, আপনি কি ডি-এম (ডিসপ্লে ম্যানেজার) সার্ভিস পুনরায় চালু করতে "
-"চান?"
-
-#: standalone/drakedm:73
-#, c-format
-msgid ""
-"You are going to close all running programs and lose your current session. "
-"Are you really sure that you want to restart the dm service?"
-msgstr ""
-"আপনি সকল চলন্ত প্রোগ্রাম বন্ধ করতে যাচ্ছে এবং আপনার বর্তমান সেশন হারাতে যাচ্ছেন। "
-"আপনি কি আসলেই নিশ্চিত্‍ যে আপনি dm সার্ভিস পুনরায় চালু করতে যাচ্ছেন?"
-
-#: standalone/drakfont:182
-#, c-format
-msgid "Search installed fonts"
-msgstr "ইনস্টলকৃত ফন্টগুলো খোঁজো"
-
-#: standalone/drakfont:184
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "ইনস্টলকৃত ফন্টগুলো অনির্বাচিত করো"
-
-#: standalone/drakfont:207
-#, c-format
-msgid "parse all fonts"
-msgstr "সকল ফন্টে পার্স করো"
-
-# ##সকল ফন্টে দাড়ি,কমা দিন ---Fix me
-#: standalone/drakfont:209
-#, c-format
-msgid "No fonts found"
-msgstr "কোন ফন্ট পাওয়া যায়নি"
-
-#: standalone/drakfont:217 standalone/drakfont:259 standalone/drakfont:326
-#: standalone/drakfont:359 standalone/drakfont:367 standalone/drakfont:393
-#: standalone/drakfont:411 standalone/drakfont:425
-#, c-format
-msgid "done"
-msgstr "করা হয়েছে"
-
-#: standalone/drakfont:222
-#, c-format
-msgid "Could not find any font in your mounted partitions"
-msgstr "আপনার মাউন্টকৃত পার্টিশনে কোন ফন্ট খুঁজতে পারছে না"
-
-#: standalone/drakfont:257
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "সঠিক ফন্টগুলো পুনরায় নির্বাচিত করো"
-
-#: standalone/drakfont:260
-#, c-format
-msgid "Could not find any font.\n"
-msgstr "কোন ফন্ট খুঁজতে পারেনি।\n"
-
-#: standalone/drakfont:270
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "ইনস্টলকৃত তালিকায় ফন্ট খোঁজো"
-
-#: standalone/drakfont:295
-#, c-format
-msgid "%s fonts conversion"
-msgstr "%s ফন্টগুলোর পরিবর্তন"
-
-#: standalone/drakfont:324
-#, c-format
-msgid "Fonts copy"
-msgstr "ফন্টগুলোর কপি"
-
-#: standalone/drakfont:327
-#, c-format
-msgid "True Type fonts installation"
-msgstr "ট্রু-টাইপ ফন্টের ইনস্টলেশন"
-
-#: standalone/drakfont:334
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "অনুগ্রহ করে ttmkfdir... করার মুহুর্তে অপেক্ষা করুন"
-
-#: standalone/drakfont:335
-#, c-format
-msgid "True Type install done"
-msgstr "ট্রু-টাইপ ইনস্টল হয়ে গেছে"
-
-#: standalone/drakfont:341 standalone/drakfont:356
-#, c-format
-msgid "type1inst building"
-msgstr "type1inst তৈরী হচ্ছে"
-
-#: standalone/drakfont:350
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "ঘোস্টস্ক্রিপ্ট রেফারেন্স করা হয়েছে"
-
-#: standalone/drakfont:360
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "অল্পস্থায়ী ফাইলগুলো দমন করো"
-
-#: standalone/drakfont:363
-#, c-format
-msgid "Restart XFS"
-msgstr "XFS পুনরায় চালু করো"
-
-#: standalone/drakfont:409 standalone/drakfont:419
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "ফন্টের ফাইলগুলো দমন করো"
-
-#: standalone/drakfont:421
-#, c-format
-msgid "xfs restart"
-msgstr "xfs পুনরায় চালু করো"
-
-#: standalone/drakfont:429
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
-"কোন ফন্ট ইনস্টল করার আগে, নিশ্চিত হোন যে সেগুলো আপনার সিস্টেমে ব্যবহার ও ইনস্টল "
-"করার অধিকার আপনার আছে।\n"
-"\n"
-"আপনি সাধারণ উপায়ে ফন্ট ইনস্টল করতে পারেন। খুব অল্প ক্ষেত্রে, ভুয়া ফন্ট আপনার এক্স(X) "
-"সার্ভারকে হ্যাং করে ফেলতে পারে।"
-
-#: standalone/drakfont:473 standalone/drakfont:482
-#, c-format
-msgid "DrakFont"
-msgstr "DrakFont"
-
-#: standalone/drakfont:483
-#, c-format
-msgid "Font List"
-msgstr "ফন্টের তালিকা"
-
-#: standalone/drakfont:486
-#, c-format
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: standalone/drakfont:492
-#, c-format
-msgid "About"
-msgstr "সম্বন্ধে"
-
-#: standalone/drakfont:494 standalone/drakfont:718
-#, c-format
-msgid "Uninstall"
-msgstr "আন-ইনস্টল"
-
-# ## Fix me
-#: standalone/drakfont:495
-#, c-format
-msgid "Import"
-msgstr "ইমপোর্ট"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakfont:513
-#, c-format
-msgid "Copyright (C) 2001-2006 by Mandriva"
-msgstr ""
-
-#: standalone/drakfont:515
-#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-"এই প্রোগ্রামটি বিনামূল্যের সফটওয়্যার; আপনি এটি পুনরায় বিতরণ করতে পারেন এবং/অথবা\n"
-"পরিবর্তন করতে পারেন জিএনইউ জেনারেল পাবলিক লাইসেন্সের শর্তের অধীন যা ফ্রি "
-"সফটওয়্যার\n"
-"ফাউন্ডেশন কর্তৃক প্রকাশিত; সেটা ২য় ভার্সন হতে পারে, অথবা (আপনার পছন্দমত) পরের\n"
-"কোন ভার্সন হতে পারে।\n"
-"\n"
-"\n"
-"এই প্রোগ্রামটি বিতরণ হচ্ছে এই আশায় যে এটি কাজের উপযোগী হবে, কিন্তু কোনপ্রকার\n"
-"ওয়ারেন্টি ছাড়াই; এমনকি বিক্রয়যোগ্যতা বা নির্দিষ্ট বিষয়ের উপযুক্ততারও কোন\n"
-"ওয়ারেন্টি নেই। বিস্তারিত তথ্যের জন্য জিএনইউ জেনারেল পাবলিক লাইসেন্স দেখুন।\n"
-"\n"
-"\n"
-"এই প্রোগ্রামের সাথে জিএনইউ জেনারেল পাবলিক লাইসেন্সের একটি কপি আপনার \n"
-"পাওয়া উচিত; যদি না পেয়ে থাকেন, তাহলে নিম্ন ঠিকানায় লিখুন- Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-
-#: standalone/drakfont:531
-#, c-format
-msgid ""
-"Thanks:\n"
-"\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
-msgstr ""
-"ধন্যবাদ:\n"
-"\n"
-" - pfm2afm: \n"
-"\t কেন্‌ বোরগেনদেল কর্তৃক:\n"
-"\t একটি উইন্ডোজ .pfm ফাইলকে একটি .afm (Adobe Font Metrics) ফাইলে রুপান্তরিত "
-"করুন\n"
-"\n"
-" - type1inst:\n"
-"\t জেম্‌স ম্যাকনিকোল কর্তৃক: \n"
-"\t type1inst fonts.dir, fonts.scale এবং Fontmap ফাইলগুলো তৈরি করে।\n"
-"\n"
-" - ttf2pt1: \n"
-"\t এন্ড্রু উইক্‌স, ফ্রাংক সিগার্ট, থমাস হেনলিছ, সার্গেই ববকিন কর্তৃক \n"
-"\t ttf ফন্ট ফাইলগুলোকে afm এবং pfb ফন্টে রুপান্তরিত করুন\n"
-
-#: standalone/drakfont:550
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "ফন্টগুলোকে সহায়তা দেবে এমন অ্যাপ্লিকেশন পছন্দ করুন:"
-
-#: standalone/drakfont:561
-#, c-format
-msgid "Ghostscript"
-msgstr "ঘোস্টস্ক্রিপ্ট"
-
-#: standalone/drakfont:562
-#, c-format
-msgid "StarOffice"
-msgstr "স্টারঅফিস"
-
-#: standalone/drakfont:563
-#, c-format
-msgid "Abiword"
-msgstr "এবিওয়ার্ড"
-
-#: standalone/drakfont:564
-#, c-format
-msgid "Generic Printers"
-msgstr "জেনেরিক প্রিন্টার"
-
-#: standalone/drakfont:578
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "ফন্ট ফাইল অথবা ডিরেক্টরি বেছে নিন এবং 'সংযুক্ত' এ ক্লিক করুন"
-
-#: standalone/drakfont:579
-#, c-format
-msgid "File Selection"
-msgstr "ফাইল বাছাই"
-
-#: standalone/drakfont:583
-#, c-format
-msgid "Fonts"
-msgstr "ফন্ট"
-
-# ####"আমদানি"
-#: standalone/drakfont:646
-#, c-format
-msgid "Import fonts"
-msgstr "ফন্ট ইমপোর্ট করো"
-
-#: standalone/drakfont:651
-#, c-format
-msgid "Install fonts"
-msgstr "ফন্ট ইনস্টল করো"
-
-#: standalone/drakfont:681
-#, c-format
-msgid "Are you sure you want to uninstall the following fonts?"
-msgstr ""
-
-#: standalone/drakfont:726
-#, c-format
-msgid "Unselected All"
-msgstr "সব কিছু অনির্বাচিতকরণ"
-
-#: standalone/drakfont:729
-#, c-format
-msgid "Selected All"
-msgstr "সব কিছু নির্বাচিত"
-
-#: standalone/drakfont:743 standalone/drakfont:762
-#, c-format
-msgid "Importing fonts"
-msgstr "ফন্ট আমদানি হচ্ছে"
-
-#: standalone/drakfont:747 standalone/drakfont:767
-#, c-format
-msgid "Initial tests"
-msgstr "শুরুর দিককার পরীক্ষা"
-
-#: standalone/drakfont:748
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "আপনার সিস্টেমে ফন্ট কপি করুন"
-
-#: standalone/drakfont:749
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "ফন্ট ইনস্টল কর এবং রুপান্তর করো"
-
-#: standalone/drakfont:750
-#, c-format
-msgid "Post Install"
-msgstr "ইনস্টল পরবর্তী কাজ"
-
-#: standalone/drakfont:768
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "আপনার সিস্টেম থেকে ফন্ট মুছে ফেলুন"
-
-#: standalone/drakfont:769
-#, c-format
-msgid "Post Uninstall"
-msgstr "আনইনস্টল পরবর্তী কাজ"
-
-#: standalone/drakgw:50 standalone/drakvpn:51
-#, c-format
-msgid "Sorry, we support only 2.4 and above kernels."
-msgstr "দুঃখিত, আমরা শুধু ২,৪ এবং উপরের কার্নালগুলি সাপোর্ট করি।"
-
-#: standalone/drakgw:75
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "ইন্টারনেট সংযুক্তিতে ভাগাভাগি"
-
-#: standalone/drakgw:79
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"আপনি আপনার কম্পিউটারের ইন্টারনেট সংযুক্তি ভাগাভাগি করার জন্য কন্‌ফিগার প্রায় করে "
-"ফেলেছেন।\n"
-"এই বৈশিষ্ট্যের কারণে, আপনার লোকাল নেটওয়ার্কে থাকা অন্য কম্পিউটারগুলো এই কম্পিউটারের "
-"ইন্টারনেট সংযুক্ত ব্যবহার করতে পারবে।\n"
-"\n"
-"পরবর্তী কোন কাজ করার আগে নিশ্চিত করুন যে drakconnect দিয়ে আপনার নেটওয়ার্ক/"
-"ইন্টারনেটে প্রবেশ কন্‌ফিগার করেছেন।\n"
-"\n"
-"নোট: স্থানীয় এরিয়া নেটওয়ার্ক (LAN) করার জন্য আপনার একটি নেটওয়ার্ক এডাপ্টর লাগবে।"
-
-#: standalone/drakgw:95
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"ইন্টারনেট সংযুক্তিতে ভাগাভাগি সংক্রান্ত সেটআপ ইতিমধ্যে হয়ে গেছে।\n"
-"এটা বর্তমানে সক্রিয় আছে।\n"
-"\n"
-"আপনি এখন কি করতে চান?"
-
-#: standalone/drakgw:99
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"ইন্টারনেট সংযুক্তিতে ভাগাভাগি সংক্রান্ত সেটআপ ইতিমধ্যে হয়ে গেছে।\n"
-"এটা আপাতত নিষ্ক্রিয় করা আছে।\n"
-"\n"
-"আপনি এখন কি করতে চান?"
-
-#: standalone/drakgw:105
-#, fuzzy, c-format
-msgid "Reconfigure"
-msgstr "পুনরায় কন্‌ফিগার"
-
-#: standalone/drakgw:145
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"আপনার সিস্টেমে একটিমাত্র কন্‌ফিগার করা নেটওয়ার্ক এডাপ্টর আছে:\n"
-"\n"
-"%s\n"
-"\n"
-"আমি আপনার স্থানীয় এরিয়ার নেটওয়ার্ক সেই এডাপ্টরের সাথে করতে যাচ্ছি।"
-
-#: standalone/drakgw:156
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"আপনার স্থানীয় এরিয়া নেটওয়ার্কে কোন নেটওয়ার্ক এডাপ্টর যুক্ত হবে তা অনুগ্রহ করে পছন্দ "
-"করুন।"
-
-# ##msgstr "স্থানীয় নেটওয়ার্ক ঠিকানা"
-#: standalone/drakgw:177
-#, fuzzy, c-format
-msgid "Local Area Network settings"
-msgstr "স্থানীয় নেটওয়ার্ক অ্যাড্রেস"
-
-#: standalone/drakgw:180
-#, c-format
-msgid "Local IP address"
-msgstr ""
-
-#: standalone/drakgw:182
-#, c-format
-msgid "The internal domain name"
-msgstr "অন্তঃস্থ ডোমেইন নাম"
-
-#: standalone/drakgw:188
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "%s এর বর্তমান কন্‌ফিগে কার্যকরী ল্যান এড্রেস দ্বন্দ্ব পাওয়া গিয়েছিল!\n"
-
-#: standalone/drakgw:204
-#, fuzzy, c-format
-msgid "Domain Name Server (DNS) configuration"
-msgstr "টার্মিনাল সার্ভার কনফিগারেশন"
-
-#: standalone/drakgw:208
-#, c-format
-msgid "Use this gateway as domain name server"
-msgstr ""
-
-#: standalone/drakgw:209
-#, c-format
-msgid "The DNS Server IP"
-msgstr "DNS সার্ভার আই-পি(IP)"
-
-#: standalone/drakgw:236
-#, c-format
-msgid ""
-"DHCP Server Configuration.\n"
-"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you do not know the meaning of an option, simply leave it as it is."
-msgstr ""
-"DHCP সার্ভার কন্‌ফিগারেশন।\n"
-"\n"
-"এখানে আপনি DHCP সার্ভার কন্‌ফিগার করার জন্য বিভিন্ন অপশন পছন্দ করতে পারেন।\n"
-"যদি কোন অপশন না বুঝতে পারেন, তাহলে যেমন আছে তেমনই রেখে দিন।"
-
-#: standalone/drakgw:243
-#, fuzzy, c-format
-msgid "Use automatic configuration (DHCP)"
-msgstr "স্বয়ংক্রিয়ভাবে পুনরায় কন্‌ফিগার"
-
-#: standalone/drakgw:244
-#, c-format
-msgid "The DHCP start range"
-msgstr "DHCP সীমার শুরু"
-
-#: standalone/drakgw:245
-#, c-format
-msgid "The DHCP end range"
-msgstr "DHCP সীমার শেষ"
-
-#: standalone/drakgw:246
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "ডিফল্ট লীজ(lease) (সেকেন্ডে)"
-
-#: standalone/drakgw:247
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "সর্বোচ্চ লীজ(lease) (সেকেন্ডে)"
-
-#: standalone/drakgw:270
-#, c-format
-msgid "Proxy caching server (SQUID)"
-msgstr ""
-
-#: standalone/drakgw:274
-#, c-format
-msgid "Use this gateway as proxy caching server"
-msgstr ""
-
-#: standalone/drakgw:275
-#, c-format
-msgid "Admin mail"
-msgstr ""
-
-#: standalone/drakgw:276
-#, fuzzy, c-format
-msgid "Visible hostname"
-msgstr "দূরবর্তী হোস্টের নাম"
-
-#: standalone/drakgw:277
-#, fuzzy, c-format
-msgid "Proxy port"
-msgstr "বৈশিষ্ট্য"
-
-#: standalone/drakgw:278
-#, fuzzy, c-format
-msgid "Cache size (MB)"
-msgstr "ক্যাশ সাইজ"
-
-#: standalone/drakgw:300
-#, fuzzy, c-format
-msgid "Broadcast printer information"
-msgstr "হার্ড ড্রাইভের তথ্য"
-
-#: standalone/drakgw:317
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "ইন্টারনেট সংযুক্তিতে ভাগাভাগি এখন সক্রিয়।"
-
-#: standalone/drakgw:323
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "ইন্টারনেট সংযুক্তিতে ভাগাভাগি এখন নিষ্ক্রিয়।"
-
-#: standalone/drakgw:329
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP) and\n"
-" a Transparent Proxy Cache server (SQUID)."
-msgstr ""
-"সবকিছু কন্‌ফিগার করা হয়েছে।\n"
-"আপনি এখন আপনার স্থানীয় এরিয়া নেটওয়ার্কে অন্যান্য কম্পিউটারের সাথে ইন্টারনেট সংযুক্তি "
-"ভাগাভাগি করতে পারেন, স্বয়ংক্রিয়ভাবে নেটওয়ার্ক কন্‌ফিগারেশন (DHCP) এবং\n"
-" একটি স্বচ্ছ প্রক্সি ক্যাশ সার্ভার (SQUID) ব্যবহার করে।"
-
-#: standalone/drakgw:363
-#, c-format
-msgid "Disabling servers..."
-msgstr "সার্ভার নিষ্ক্রিয়করণ..."
-
-#: standalone/drakgw:377
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "ফায়ারওয়াল কন্‌ফিগারেশনের সন্ধান পাওয়া গেছে!"
-
-#: standalone/drakgw:378
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-"সাবধান! একটি বিদ্যমান ফায়ারওয়াল কন্‌ফিগারেশনের সন্ধান পাওয়া গেছে। আপনি "
-"ইনস্টলেশনের পর নিজেই কিছু ঠিক করে নিতে পারেন।"
-
-#: standalone/drakgw:383
-#, c-format
-msgid "Configuring..."
-msgstr "কন্‌ফিগার হচ্ছে..."
-
-#: standalone/drakgw:384
-#, c-format
-msgid "Configuring firewall..."
-msgstr ""
-
-#: standalone/drakhelp:17
-#, c-format
-msgid ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"\n"
-"Usage: \n"
-msgstr ""
-" drakhelp 0.১\n"
-"স্বত্বাধিকারী (C) ম্যান্ড্রিব সফ্‌ট ২০০৩-২০০৪ ।\n"
-"এটি একটি ফ্রি সফ্‌টওয়্যার এবং জি-এন-ইউ জি-পি-এল এর শর্তের অধীনে পুনরায় বিতরণ করা "
-"যেতে পারে।\n"
-"\n"
-"ব্যবহার: \n"
-
-#: standalone/drakhelp:22
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - এই সাহায্য দেখাও \n"
-
-#: standalone/drakhelp:23
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr ""
-" --id <id_label> - সাহায্যকারী এইচটিএমএল (html) পেজ লোড কর যা id_label "
-"এর সাথে সম্পর্ক স্থাপন করে\n"
-
-#: standalone/drakhelp:24
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr " --doc <link> - অন্য ওয়েব পেজে সংযুক্তি\n"
-
-# সাম
-#: standalone/drakhelp:51
-#, c-format
-msgid "Mandriva Linux Help Center"
-msgstr "Mandriva Linux সাহায্যকেন্দ্র"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "No Help entry for %s\n"
-msgstr ""
-
-#: standalone/drakhosts:98
-#, c-format
-msgid "Please add an host to be able to modify it."
-msgstr ""
-
-#: standalone/drakhosts:108
-#, fuzzy, c-format
-msgid "Please modify information"
-msgstr "বিস্তারিত তথ্য"
-
-#: standalone/drakhosts:109
-#, fuzzy, c-format
-msgid "Please delete information"
-msgstr "বিস্তারিত তথ্য"
-
-#: standalone/drakhosts:110
-#, fuzzy, c-format
-msgid "Please add information"
-msgstr "বিস্তারিত তথ্য"
-
-#: standalone/drakhosts:115
-#, c-format
-msgid "IP address:"
-msgstr ""
-
-#: standalone/drakhosts:116
-#, c-format
-msgid "Host name:"
-msgstr ""
-
-#: standalone/drakhosts:117
-#, c-format
-msgid "Host Aliases:"
-msgstr ""
-
-#: standalone/drakhosts:123
-#, c-format
-msgid "Please enter a valid IP address."
-msgstr "অনুগ্রহ করে একটি সঠিক IP ঠিকানা দিন।"
-
-#: standalone/drakhosts:129
-#, c-format
-msgid "Same IP is already in %s file."
-msgstr ""
-
-#: standalone/drakhosts:197
-#, c-format
-msgid "Host Aliases"
-msgstr ""
-
-#: standalone/drakhosts:237
-#, c-format
-msgid "DrakHOSTS manage hosts definitions"
-msgstr ""
-
-#: standalone/drakhosts:246
-#, c-format
-msgid "Failed to add host."
-msgstr ""
-
-#: standalone/drakhosts:253
-#, c-format
-msgid "Failed to Modify host."
-msgstr ""
-
-#: standalone/drakhosts:260
-#, c-format
-msgid "Failed to remove host."
-msgstr ""
-
-#: standalone/drakids:26
-#, fuzzy, c-format
-msgid "Allowed addresses"
-msgstr "সব ব্যবহারকারীদের গ্রহণ করো"
-
-#: standalone/drakids:57
-#, c-format
-msgid "Log"
-msgstr "লগ"
-
-#: standalone/drakids:61
-#, fuzzy, c-format
-msgid "Clear logs"
-msgstr "সব বন্ধ করো"
-
-#: standalone/drakids:62 standalone/drakids:67 standalone/net_applet:470
-#, c-format
-msgid "Blacklist"
-msgstr ""
-
-#: standalone/drakids:63 standalone/drakids:80 standalone/net_applet:475
-#, c-format
-msgid "Whitelist"
-msgstr ""
-
-#: standalone/drakids:71
-#, fuzzy, c-format
-msgid "Remove from blacklist"
-msgstr "LVM থেকে মুছে ফেলো"
-
-#: standalone/drakids:72
-#, c-format
-msgid "Move to whitelist"
-msgstr ""
-
-#: standalone/drakids:84
-#, fuzzy, c-format
-msgid "Remove from whitelist"
-msgstr "LVM থেকে মুছে ফেলো"
-
-#: standalone/drakids:136 standalone/drakids:145 standalone/drakids:170
-#: standalone/drakids:179 standalone/drakids:189 standalone/drakids:265
-#: standalone/drakroam:182 standalone/net_applet:202 standalone/net_applet:385
-#, fuzzy, c-format
-msgid "Unable to contact daemon"
-msgstr "%s মিররের সাথে সংযুক্ত হওয়া গেলনা"
-
-#: standalone/drakids:202
-#, c-format
-msgid "Date"
-msgstr "তারিখ"
-
-# সাম
-#: standalone/drakids:203
-#, fuzzy, c-format
-msgid "Attacker"
-msgstr "আক্রমনের বিস্তারিত"
-
-# সাম
-#: standalone/drakids:204
+#: timezone.pm:148 timezone.pm:149
#, fuzzy, c-format
-msgid "Attack type"
-msgstr "আক্রমনের ধরণ: %s"
-
-#: standalone/drakids:205
-#, c-format
-msgid "Service"
-msgstr "সার্ভিস"
-
-#: standalone/drakids:206 standalone/net_applet:72
-#, c-format
-msgid "Network interface"
-msgstr "নেটওয়ার্ক ইন্টারফেস"
-
-#: standalone/draknfs:41
-#, c-format
-msgid "map root user as anonymous"
-msgstr ""
-
-#: standalone/draknfs:42
-#, c-format
-msgid "map all users to anonymous user"
-msgstr ""
-
-#: standalone/draknfs:43
-#, c-format
-msgid "No user UID mapping"
-msgstr ""
-
-#: standalone/draknfs:44
-#, c-format
-msgid "allow real remote root access"
-msgstr ""
-
-#: standalone/draknfs:83
-#, c-format
-msgid "NFS server"
-msgstr "NFS সার্ভার"
-
-#: standalone/draknfs:83
-#, c-format
-msgid "Restarting/Reloading NFS server..."
-msgstr ""
-
-#: standalone/draknfs:84
-#, c-format
-msgid "Error Restarting/Reloading NFS server"
-msgstr ""
-
-#: standalone/draknfs:100 standalone/draksambashare:203
-#, c-format
-msgid "Directory Selection"
-msgstr ""
-
-#: standalone/draknfs:105 standalone/draksambashare:208
-#, c-format
-msgid "Should be a directory."
-msgstr "একটি ডিরেক্টরি হওয়া আবশ্যক।"
-
-#: standalone/draknfs:136
-#, c-format
-msgid ""
-"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
-"ways:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">single host:</span> a host either by an "
-"abbreviated name recognized be the resolver, fully qualified domain name, or "
-"an IP address\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">netgroups:</span> NIS netgroups may be given "
-"as @group.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">wildcards:</span> machine names may contain "
-"the wildcard characters * and ?. For instance: *.cs.foo.edu matches all "
-"hosts in the domain cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP networks:</span> you can also export "
-"directories to all hosts on an IP (sub-)network simultaneously. for example, "
-"either `/255.255.252.0' or `/22' appended to the network base address "
-"result.\n"
-msgstr ""
-
-#: standalone/draknfs:151
-#, c-format
-msgid ""
-"<span weight=\"bold\">User ID options</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map root user as anonymous:</span> map "
-"requests from uid/gid 0 to the anonymous uid/gid (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">allow real remote root access:</span> turn "
-"off root squashing. This option is mainly useful for diskless clients "
-"(no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map all users to anonymous user:</span> map "
-"all uids and gids to the anonymous user (all_squash). Useful for NFS-"
-"exported public FTP directories, news spool directories, etc. The opposite "
-"option is no user UID mapping (no_all_squash), which is the default "
-"setting.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid and anongid:</span> explicitly set "
-"the uid and gid of the anonymous account.\n"
-msgstr ""
-
-#: standalone/draknfs:167
-#, c-format
-msgid "Synchronous access:"
-msgstr ""
-
-#: standalone/draknfs:168
-#, c-format
-msgid "Secured Connection:"
-msgstr ""
-
-#: standalone/draknfs:169
-#, c-format
-msgid "Read-Only share:"
-msgstr ""
-
-#: standalone/draknfs:171
-#, c-format
-msgid "<span weight=\"bold\">Advanced Options</span>"
-msgstr ""
-
-#: standalone/draknfs:172
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> this option requires that "
-"requests originate on an internet port less than IPPORT_RESERVED (1024). "
-"This option is on by default."
-msgstr ""
-
-#: standalone/draknfs:173
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> allow either only read or both "
-"read and write requests on this NFS volume. The default is to disallow any "
-"request which changes the filesystem. This can also be made explicit by "
-"using this option."
-msgstr ""
-
-#: standalone/draknfs:174
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> disallows the NFS server to "
-"violate the NFS protocol and to reply to requests before any changes made by "
-"these requests have been committed to stable storage (e.g. disc drive)."
-msgstr ""
-
-#: standalone/draknfs:306
-#, c-format
-msgid "Please add an NFS share to be able to modify it."
-msgstr ""
-
-#: standalone/draknfs:378
-#, fuzzy, c-format
-msgid "Advanced Options Help"
-msgstr "অগ্রসর কনফিগারেশন"
-
-#: standalone/draknfs:389
-#, c-format
-msgid "NFS directory"
-msgstr ""
-
-#: standalone/draknfs:391 standalone/draksambashare:592
-#: standalone/draksambashare:771
-#, c-format
-msgid "Directory:"
-msgstr "ডিরেক্টরি:"
-
-#: standalone/draknfs:394
-#, c-format
-msgid "Host access"
-msgstr ""
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Access:"
-msgstr "ব্যবহার :"
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Hosts Access"
-msgstr ""
-
-#: standalone/draknfs:399
-#, c-format
-msgid "User ID Mapping"
-msgstr ""
-
-#: standalone/draknfs:401
-#, c-format
-msgid "User ID:"
-msgstr ""
-
-#: standalone/draknfs:401
-#, c-format
-msgid "Help User ID"
-msgstr ""
-
-#: standalone/draknfs:402
-#, c-format
-msgid "Anonymous user ID:"
-msgstr ""
-
-#: standalone/draknfs:403
-#, c-format
-msgid "Anonymous Group ID:"
-msgstr ""
-
-#: standalone/draknfs:444
-#, c-format
-msgid "Can't create this directory."
-msgstr ""
-
-#: standalone/draknfs:447
-#, c-format
-msgid "You must specify hosts access."
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Share Directory"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Hosts Wildcard"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "General Options"
-msgstr "সাধারণ অপশন"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Custom Options"
-msgstr ""
-
-#: standalone/draknfs:539 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Please enter a directory to share."
-msgstr ""
-
-#: standalone/draknfs:546
-#, c-format
-msgid "Please use the modify button to set right access."
-msgstr ""
-
-#: standalone/draknfs:600
-#, c-format
-msgid "DrakNFS manage NFS shares"
-msgstr ""
-
-#: standalone/draknfs:609
-#, c-format
-msgid "Failed to add NFS share."
-msgstr ""
-
-#: standalone/draknfs:616
-#, c-format
-msgid "Failed to Modify NFS share."
-msgstr ""
-
-#: standalone/draknfs:623
-#, c-format
-msgid "Failed to remove an NFS share."
-msgstr ""
-
-#: standalone/drakperm:21
-#, c-format
-msgid "System settings"
-msgstr "সিস্টেম সেটিংস"
-
-#: standalone/drakperm:22
-#, c-format
-msgid "Custom settings"
-msgstr "বিবিধ সেটিংস"
-
-#: standalone/drakperm:23
-#, c-format
-msgid "Custom & system settings"
-msgstr "বিবিধ এবং সিস্টেম সেটিংস"
-
-# ##এডিটেবল -- Fix me
-#: standalone/drakperm:43
-#, c-format
-msgid "Editable"
-msgstr "সম্পাদনাযোগ্য"
-
-#: standalone/drakperm:48 standalone/drakperm:323
-#: standalone/draksambashare:101
-#, c-format
-msgid "Path"
-msgstr "পাথ"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "User"
-msgstr "ব্যবহারকারী"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "Group"
-msgstr "গ্রুপ"
-
-#: standalone/drakperm:48 standalone/drakperm:335
-#, c-format
-msgid "Permissions"
-msgstr "অনুমতি"
-
-#: standalone/drakperm:57
-#, c-format
-msgid "Add a new rule"
-msgstr ""
-
-#: standalone/drakperm:64 standalone/drakperm:99 standalone/drakperm:124
-#, c-format
-msgid "Edit current rule"
-msgstr "বর্তমান নীতি সম্পাদনা"
-
-#: standalone/drakperm:106
-#, c-format
-msgid ""
-"Here you can see files to use in order to fix permissions, owners, and "
-"groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
-msgstr ""
-"এখানে আপনি অনুমতি, ব্যবহারকারী ও গ্রুপ নির্দিষ্ট করার জন্য ফাইলগুলো দেখতে পারেন।\n"
-"আপনি আপনার নিজস্ব নীতিগুলোও সম্পাদিত করতে পারেন যা ডিফল্ট নীতিগুলোকে পরিবর্তন করবে।"
-
-#: standalone/drakperm:109
-#, c-format
-msgid ""
-"The current security level is %s.\n"
-"Select permissions to see/edit"
-msgstr ""
-"বর্তমান নিরাপত্তা লেভেল হচ্ছে %s।\n"
-"অনুমতি নির্বাচন করুন দেখতে/সম্পাদন করতে"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Up"
-msgstr "উপরে"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "নির্বাচিত নীতি এক লেভেল উপরে সরাও"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Down"
-msgstr "নিচে"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "নির্বাচিত নীতি এক লেভেল উপরে সরাও"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a rule"
-msgstr "নীতি যোগ করো"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "সবশেষে একটি নতুন নীতি যোগ করো"
-
-#: standalone/drakperm:123
-#, c-format
-msgid "Delete selected rule"
-msgstr "নির্বাচিত নীতি বাদ দাও"
-
-#: standalone/drakperm:242
-#, c-format
-msgid "browse"
-msgstr "ব্রাউজ"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "user"
-msgstr "ব্যবহারকারী"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "group"
-msgstr "গ্রুপ"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "other"
-msgstr "অন্যান্য"
-
-#: standalone/drakperm:252
-#, c-format
-msgid "Read"
-msgstr "পড়ো"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:255
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "\"%s\" ফাইলটি পড়তে সক্ষম"
-
-#: standalone/drakperm:259
-#, c-format
-msgid "Write"
-msgstr "লেখো"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:262
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "\"%s\" ফাইলটি লিখতে সক্ষম"
-
-#: standalone/drakperm:266
-#, c-format
-msgid "Execute"
-msgstr "সম্পাদন করো"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:269
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "\"%s\" ফাইলটি সম্পাদন করতে সক্ষম"
-
-#: standalone/drakperm:272
-#, c-format
-msgid "Sticky-bit"
-msgstr "স্টিকি-বিট"
-
-#: standalone/drakperm:272
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"ডিরেক্টরির জন্য ব্যবহৃত:\n"
-" এই ডিরেক্টরি বা এই ডিরেক্টরিতে থাকা ফাইলগুলোর মালিক (owner) শুধুমাত্র তা মুছে "
-"ফেলতে পারে"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Set-UID"
-msgstr "সেট-ইউআইডি(UID)"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Use owner id for execution"
-msgstr "সম্পাদন করার জন্য মালিকানা(owner) আইডি(ID) ব্যবহার করুন"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Set-GID"
-msgstr "সেট-জিআইডি(GID)"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Use group id for execution"
-msgstr "সম্পাদন করার জন্য গ্রুপ আইডি(ID) ব্যবহার করুন"
-
-#: standalone/drakperm:292 standalone/drakxtv:89
-#, c-format
-msgid "User:"
-msgstr "ব্যবহারকারী :"
-
-#: standalone/drakperm:294
-#, c-format
-msgid "Group:"
-msgstr "গ্রুপ :"
-
-#: standalone/drakperm:298
-#, c-format
-msgid "Current user"
-msgstr "বর্তমান ব্যবহারকারী"
-
-#: standalone/drakperm:299
-#, c-format
-msgid "When checked, owner and group will not be changed"
-msgstr "যখন পরীক্ষা করা হবে, তখন মালিকানা এবং গ্রুপ পরিবর্তিত হবে না"
-
-#: standalone/drakperm:309
-#, c-format
-msgid "Path selection"
-msgstr "পাথ নির্বাচন"
-
-#: standalone/drakperm:329
-#, c-format
-msgid "Property"
-msgstr "বৈশিষ্ট্য"
-
-#: standalone/drakperm:380
-#, c-format
-msgid ""
-"The first character of the path must be a slash (\"/\"):\n"
-"\"%s\""
-msgstr ""
-
-#: standalone/drakperm:390
-#, c-format
-msgid "Both the username and the group must valid!"
-msgstr ""
-
-#: standalone/drakperm:391
-#, c-format
-msgid "User: %s"
-msgstr ""
-
-#: standalone/drakperm:392
-#, c-format
-msgid "Group: %s"
-msgstr ""
-
-#: standalone/drakroam:33
-#, c-format
-msgid ""
-"You do not have any wireless interface.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakroam:48
-#, c-format
-msgid "SSID"
-msgstr ""
-
-#: standalone/drakroam:49
-#, c-format
-msgid "Signal strength"
-msgstr ""
-
-#: standalone/drakroam:51
-#, c-format
-msgid "Encryption"
-msgstr "এনক্রিপশন"
-
-#: standalone/drakroam:112
-#, c-format
-msgid "Please enter settings for wireless network \"%s\""
-msgstr ""
-
-#: standalone/drakroam:123
-#, c-format
-msgid "DNS server"
-msgstr "DNS সার্ভার"
-
-#: standalone/drakroam:228
-#, c-format
-msgid "Connect"
-msgstr "সংযোগ স্থাপন করো"
-
-#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/drakroam:229 standalone/printerdrake:251
-#, c-format
-msgid "Refresh"
-msgstr "রিফ্রেশ"
-
-# সাম
-#: standalone/draksambashare:68
-#, fuzzy, c-format
-msgid "Share directory"
-msgstr "এই নামে কোন ডিরেক্টরি নেই"
-
-#: standalone/draksambashare:69 standalone/draksambashare:102
-#, c-format
-msgid "Comment"
-msgstr "মন্তব্য"
-
-#: standalone/draksambashare:70 standalone/draksambashare:103
-#, fuzzy, c-format
-msgid "Browseable"
-msgstr "ব্রাউজ"
-
-#: standalone/draksambashare:71
-#, c-format
-msgid "Public"
-msgstr "সাধারণ"
-
-#: standalone/draksambashare:72 standalone/draksambashare:108
-#, fuzzy, c-format
-msgid "Writable"
-msgstr "লেখো"
-
-#: standalone/draksambashare:73 standalone/draksambashare:149
-#, fuzzy, c-format
-msgid "Create mask"
-msgstr "তৈরী করো"
-
-#: standalone/draksambashare:74 standalone/draksambashare:150
-#, fuzzy, c-format
-msgid "Directory mask"
-msgstr "ব্যাক-আপ ধারনকারী ডিরেক্টরি"
-
-#: standalone/draksambashare:75
-#, fuzzy, c-format
-msgid "Read list"
-msgstr "পড়ো"
-
-#: standalone/draksambashare:76 standalone/draksambashare:109
-#: standalone/draksambashare:606
-#, fuzzy, c-format
-msgid "Write list"
-msgstr "লেখো"
-
-#: standalone/draksambashare:77 standalone/draksambashare:141
-#, fuzzy, c-format
-msgid "Admin users"
-msgstr "ইউজার যোগ করো"
-
-#: standalone/draksambashare:78 standalone/draksambashare:142
-#, fuzzy, c-format
-msgid "Valid users"
-msgstr "ইউজার যোগ করো"
-
-#: standalone/draksambashare:79
-#, fuzzy, c-format
-msgid "Inherit Permissions"
-msgstr "অনুমতি"
-
-#: standalone/draksambashare:80 standalone/draksambashare:143
-#, fuzzy, c-format
-msgid "Hide dot files"
-msgstr "ফাইল লুকানো হোক"
-
-#: standalone/draksambashare:82 standalone/draksambashare:148
-#, fuzzy, c-format
-msgid "Preserve case"
-msgstr "পছন্দ"
-
-#: standalone/draksambashare:83
-#, fuzzy, c-format
-msgid "Force create mode"
-msgstr "আপনার প্রিন্টারের মডেল"
-
-#: standalone/draksambashare:84
-#, fuzzy, c-format
-msgid "Force group"
-msgstr "পি-এফ-এস গ্রুপ"
-
-#: standalone/draksambashare:85 standalone/draksambashare:147
-#, fuzzy, c-format
-msgid "Default case"
-msgstr "ডিফল্ট ব্যবহারকারী"
-
-#: standalone/draksambashare:100
-#, c-format
-msgid "Printer name"
-msgstr ""
-
-#: standalone/draksambashare:104 standalone/draksambashare:598
-#, c-format
-msgid "Printable"
-msgstr ""
-
-#: standalone/draksambashare:105
-#, c-format
-msgid "Print Command"
-msgstr ""
-
-#: standalone/draksambashare:106
-#, c-format
-msgid "LPQ command"
-msgstr ""
-
-#: standalone/draksambashare:107
-#, c-format
-msgid "Guest ok"
-msgstr ""
-
-#: standalone/draksambashare:110 standalone/draksambashare:151
-#: standalone/draksambashare:607
-#, fuzzy, c-format
-msgid "Inherit permissions"
-msgstr "অনুমতি"
-
-#: standalone/draksambashare:112
-#, c-format
-msgid "Create mode"
-msgstr ""
-
-#: standalone/draksambashare:113
-#, c-format
-msgid "Use client driver"
-msgstr ""
-
-#: standalone/draksambashare:139
-#, fuzzy, c-format
-msgid "Read List"
-msgstr "লিস্ট মুছে ফেলো"
-
-#: standalone/draksambashare:140
-#, fuzzy, c-format
-msgid "Write List"
-msgstr "লেখো"
-
-#: standalone/draksambashare:145
-#, fuzzy, c-format
-msgid "Force Group"
-msgstr "গ্রুপ"
-
-#: standalone/draksambashare:146
-#, c-format
-msgid "Force create group"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid "About Draksambashare"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid ""
-"Mandriva Linux \n"
-"Release: %s\n"
-"Author: Antoine Ginies\n"
-"\n"
-"This is a simple tool to easily manage Samba configuration."
-msgstr ""
-
-#: standalone/draksambashare:186
-#, fuzzy, c-format
-msgid "Samba server"
-msgstr "Samba সার্ভার"
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Restarting/Reloading Samba server..."
-msgstr ""
-
-#: standalone/draksambashare:187
-#, c-format
-msgid "Error Restarting/Reloading Samba server"
-msgstr ""
-
-#: standalone/draksambashare:372
-#, c-format
-msgid "Add a Samba share"
-msgstr ""
-
-#: standalone/draksambashare:375
-#, c-format
-msgid "Goal of this wizard is to easily create a new Samba share."
-msgstr ""
-
-#: standalone/draksambashare:377
-#, fuzzy, c-format
-msgid "Name of the share:"
-msgstr "সার্টফাইলের নাম"
-
-#: standalone/draksambashare:378 standalone/draksambashare:591
-#: standalone/draksambashare:772
-#, c-format
-msgid "Comment:"
-msgstr "মন্তব্য:"
-
-#: standalone/draksambashare:379
-#, c-format
-msgid "Path:"
-msgstr "পাথ:"
-
-#: standalone/draksambashare:384
-#, c-format
-msgid ""
-"Share with the same name already exist or share name empty, please choose "
-"another name."
-msgstr ""
-
-#: standalone/draksambashare:388 standalone/draksambashare:394
-#, c-format
-msgid "Can't create the directory, please enter a correct path."
-msgstr ""
-
-#: standalone/draksambashare:391 standalone/draksambashare:627
-#: standalone/draksambashare:794
-#, fuzzy, c-format
-msgid "Please enter a Comment for this share."
-msgstr "কার্ডের ওয়্যারলেস প্যারামিটার প্রবেশ করান"
-
-#: standalone/draksambashare:422
-#, c-format
-msgid ""
-"The wizard successfully added the Samba share. Now just double click on it "
-"in treeview to modify it"
-msgstr ""
-
-#: standalone/draksambashare:437
-#, c-format
-msgid "pdf-gen - a PDF generator"
-msgstr ""
-
-#: standalone/draksambashare:438
-#, c-format
-msgid "printers - all printers available"
-msgstr ""
-
-#: standalone/draksambashare:442
-#, c-format
-msgid "Add Special Printer share"
-msgstr ""
-
-#: standalone/draksambashare:445
-#, c-format
-msgid ""
-"Goal of this wizard is to easily create a new special printer Samba share."
-msgstr ""
-
-#: standalone/draksambashare:453
-#, c-format
-msgid "A PDF generator already exists."
-msgstr ""
-
-#: standalone/draksambashare:477
-#, c-format
-msgid "Printers and print$ already exist."
-msgstr ""
-
-#: standalone/draksambashare:528
-#, c-format
-msgid "The wizard successfully added the printer Samba share"
-msgstr ""
-
-#: standalone/draksambashare:551
-#, c-format
-msgid "Please add or select a Samba printer share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:587
-#, c-format
-msgid "Printer share"
-msgstr ""
-
-#: standalone/draksambashare:590
-#, c-format
-msgid "Printer name:"
-msgstr ""
-
-#: standalone/draksambashare:596 standalone/draksambashare:777
-#, fuzzy, c-format
-msgid "Writable:"
-msgstr "লেখো"
-
-#: standalone/draksambashare:597 standalone/draksambashare:778
-#, fuzzy, c-format
-msgid "Browseable:"
-msgstr "ব্রাউজ"
-
-#: standalone/draksambashare:602
-#, c-format
-msgid "Advanced options"
-msgstr ""
-
-#: standalone/draksambashare:604
-#, c-format
-msgid "Printer access"
-msgstr ""
-
-#: standalone/draksambashare:608
-#, c-format
-msgid "Guest ok:"
-msgstr ""
-
-#: standalone/draksambashare:609
-#, c-format
-msgid "Create mode:"
-msgstr ""
-
-#: standalone/draksambashare:613
-#, c-format
-msgid "Printer command"
-msgstr ""
-
-#: standalone/draksambashare:615
-#, c-format
-msgid "Print command:"
-msgstr ""
-
-#: standalone/draksambashare:616
-#, c-format
-msgid "LPQ command:"
-msgstr ""
-
-#: standalone/draksambashare:617
-#, c-format
-msgid "Printing:"
-msgstr "ছাপানো হচ্ছে:"
-
-#: standalone/draksambashare:633
-#, c-format
-msgid "create mode should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:695
-#, c-format
-msgid "DrakSamba entry"
-msgstr ""
+msgid "All servers"
+msgstr "সার্ভার যোগ করো"
-#: standalone/draksambashare:700
+#: timezone.pm:183
#, c-format
-msgid "Please add or select a Samba share to be able to modify it."
+msgid "Global"
msgstr ""
-#: standalone/draksambashare:723
-#, fuzzy, c-format
-msgid "Samba user access"
-msgstr "Samba সার্ভার"
-
-#: standalone/draksambashare:731
+#: timezone.pm:186
#, fuzzy, c-format
-msgid "Mask options"
-msgstr "বেসিক অপশন"
-
-#: standalone/draksambashare:745
-#, fuzzy, c-format
-msgid "Display options"
-msgstr "অপশনসমূহ বর্ননা করুন"
-
-# সাম
-#: standalone/draksambashare:767
-#, fuzzy, c-format
-msgid "Samba share directory"
-msgstr "এই নামে কোন ডিরেক্টরি নেই"
+msgid "Africa"
+msgstr "দক্ষিন আফ্রিকা"
-#: standalone/draksambashare:770
+#: timezone.pm:187
#, fuzzy, c-format
-msgid "Share name:"
-msgstr "শেয়ারের নাম"
-
-#: standalone/draksambashare:776
-#, c-format
-msgid "Public:"
-msgstr ""
-
-#: standalone/draksambashare:800
-#, c-format
-msgid ""
-"Create mask, create mode and directory mask should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:807
-#, c-format
-msgid "Please create this Samba user: %s"
-msgstr ""
-
-#: standalone/draksambashare:930
-#, c-format
-msgid "User information"
-msgstr ""
-
-#: standalone/draksambashare:932
-#, c-format
-msgid "User name:"
-msgstr "ব্যবহারকারীর নাম:"
-
-#: standalone/draksambashare:933
-#, c-format
-msgid "Password:"
-msgstr "পাসওয়ার্ড:"
-
-#: standalone/draksambashare:1133
-#, c-format
-msgid "Failed to add Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1142
-#, c-format
-msgid "Failed to Modify Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1151
-#, c-format
-msgid "Failed to remove a Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1158
-#, c-format
-msgid "File share"
-msgstr ""
-
-#: standalone/draksambashare:1166
-#, c-format
-msgid "Add printers"
-msgstr ""
-
-#: standalone/draksambashare:1172
-#, c-format
-msgid "Failed to add printers."
-msgstr ""
-
-#: standalone/draksambashare:1181
-#, c-format
-msgid "Failed to Modify."
-msgstr ""
-
-#: standalone/draksambashare:1190
-#, c-format
-msgid "Failed to remove."
-msgstr ""
-
-#: standalone/draksambashare:1197
-#, c-format
-msgid "Printers"
-msgstr "মুদ্রণযন্ত্র"
-
-#: standalone/draksambashare:1205
-#, c-format
-msgid "Change password"
-msgstr ""
-
-#: standalone/draksambashare:1210
-#, c-format
-msgid "Failed to change user password."
-msgstr ""
-
-#: standalone/draksambashare:1218
-#, c-format
-msgid "Failed to add user."
-msgstr ""
-
-#: standalone/draksambashare:1221
-#, c-format
-msgid "Delete user"
-msgstr ""
-
-#: standalone/draksambashare:1230
-#, c-format
-msgid "Failed to delete user."
-msgstr ""
-
-#: standalone/draksambashare:1242
-#, c-format
-msgid "Samba Users"
-msgstr ""
-
-#: standalone/draksambashare:1251
-#, c-format
-msgid "DrakSamba manage Samba shares"
-msgstr ""
-
-#: standalone/draksec:49
-#, c-format
-msgid "ALL"
-msgstr "সব"
-
-#: standalone/draksec:50
-#, c-format
-msgid "LOCAL"
-msgstr "স্থানীয়"
-
-#: standalone/draksec:51
-#, c-format
-msgid "NONE"
-msgstr "নেই"
-
-#: standalone/draksec:53 standalone/net_applet:480
-#, c-format
-msgid "Ignore"
-msgstr "অগ্রাহ্য"
-
-# সাম :s
-#. -PO: Do not alter the <span ..> and </span> tags.
-#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
-#: standalone/draksec:103
-#, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Administrator</span>' is the one who "
-"will receive security alerts if the\n"
-"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a "
-"username or an email.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Level</span>' menu allows you to select "
-"one of the six preconfigured security levels\n"
-"provided with msec. These levels range from '<span weight=\"bold\">poor</"
-"span>' security and ease of use, to\n"
-"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive "
-"server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
-"very\n"
-"easy to use security level. It should only be used for machines not "
-"connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
-"security\n"
-"recommended for a computer that will be used to connect to the Internet as "
-"a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
-"enough\n"
-"to use the system as a server which can accept connections from many "
-"clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower "
-"level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-"এখানে, আপনি আপনার মেশিনের নিরাপত্তা স্তর এবং অ্যাডমিনস্ট্রেটর সেটআপ করতে পারেন।\n"
-"\n"
-"\n"
-"যদি '<span weight=\"bold\">নিরাপত্তা সতর্কতা সংকেত</span>' অপশন সেট করা থাকে,\n"
-"'<span weight=\"bold\"> নিরাপত্তা অ্যাডমিনিস্ট্রেটর</span>' সতর্কতাগুলো পেয়ে "
-"থাকেন। অ্যাডমিনিস্ট্রেটর একজন ব্যবহারকারীর নাম অথবা ই-মেইল হতে পারে।\n"
-"\n"
-"\n"
-"'<span weight=\"bold\">নিরাপত্তা স্তর</span>' মেনু আপনাকে msec থেকে সরবরাহকৃত "
-"এবং কনফিগার করা ছয়টি স্তরের\n"
-"মধ্যে যেকোন একটি বেছে নেয়ার সুযোগ দেবে। এই স্তরগুলো '<span weight=\"bold"
-"\">নিম্নমানের</span>'নিরাপত্তা\n"
-"ও ব্যবহারের স্বাচ্ছন্দ্য থেকে, স্পর্শকাতর সার্ভার অ্যাপ্লিকেশনের জন্য প্রযোজ্য '<span "
-"weight=\"bold\">প্যারানয়েড</span>কনফিগারেশন পর্যন্ত বিস্তৃত:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">নিম্নমান</span>: এটি একটি সম্পূর্ণ অনিরাপদ,\n"
-"কিন্তু সহজে ব্যবহারযোগ্য নিরাপত্তা স্তর। নেটওয়ার্কে যুক্ত নয় এবং সবাই প্রবেশ করতে পারে "
-"না,\n"
-"শুধুমাত্র এমন মেশিনে এ স্তর ব্যবহার করা উচিত।\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">আদর্শ</span>: যেসব কম্পিউটার ক্লায়েন্ট হিসেবে\n"
-"ইন্টারনেটে সংযুক্ত হয়, সেসব মেশিনের জন্য এটি আদর্শ\n"
-"নিরাপত্তা স্তর।\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">উচ্চমান</span>: এখানে অনেক সীমাবদ্ধতা প্রয়োগ "
-"করা হয় এবং\n"
-"প্রতিরাতে স্বয়ংক্রিয় পরীক্ষা চালু করা হয়।\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">উচ্চতর</span>: এ স্তরে নিরাপত্তা অনেক বেশি এবং\n"
-"সিস্টেমটি সার্ভার হিসেবে ব্যবহারযোগ্য, যা কিনা অন্যান্য ক্লায়েন্ট থেকে সংযুক্তি গ্রহন "
-"করে যদি আপনার\n"
-"মেশিনটি ইন্টারনেটে শুধুমাত্র ক্লায়েন্ট হিসেবে সংযুক্ত থাকে তাহলে এরচেয়ে অল্পমানের স্তর "
-"ব্যবহার করা উচিত।\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">প্যারানয়েড</span>: এটিও পূর্বের স্তরের মতই,\n"
-"কিন্তু সিস্টেম পুরোপুরি সীমাবন্ধ এবং সম্ভাব্য সর্বোচ্চ\n"
-"নিরাপত্তা প্রয়োগ হয়"
-
-#: standalone/draksec:156 standalone/harddrake2:207
-#, c-format
-msgid ""
-"Description of the fields:\n"
-"\n"
-msgstr ""
-"ফিল্ডগুলোর বর্ণনা:\n"
-"\n"
-
-#: standalone/draksec:170
-#, c-format
-msgid "(default value: %s)"
-msgstr "(ডিফল্ট মান: %s)"
-
-#: standalone/draksec:212
-#, c-format
-msgid "Security Level:"
-msgstr "নিরাপত্তা লেভেল:"
-
-#: standalone/draksec:219
-#, c-format
-msgid "Security Administrator:"
-msgstr "নিরাপত্ত ব্যবস্থাপক:"
-
-#: standalone/draksec:221
-#, c-format
-msgid "Basic options"
-msgstr "বেসিক অপশন"
-
-#: standalone/draksec:235
-#, c-format
-msgid "Network Options"
-msgstr "নেটওয়ার্ক অপশন"
-
-#: standalone/draksec:235
-#, c-format
-msgid "System Options"
-msgstr "সিস্টেম অপশন"
-
-#: standalone/draksec:270
-#, c-format
-msgid "Periodic Checks"
-msgstr "পুনরাবৃত্তি পরীক্ষা"
-
-#: standalone/draksec:300
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "অনুগ্রহ করে অপেক্ষা করুন, নিরাপত্তা লেভেল সেট করা হচ্ছে..."
-
-#: standalone/draksec:306
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "অনুগ্রহ করে অপেক্ষা করুন, নিরাপত্তা অপশনগুলো সেট করা হচ্ছে..."
-
-#: standalone/draksound:47
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "কোন সাউন্ড কার্ড সনাক্ত করা যায়নি!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/draksound:50
-#, c-format
-msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"আপনার মেশিনে কোন সাউন্ডকার্ড পাওয়া যায়নি। অনুগ্রহ করে ভালভাবে দেখুন একটি লিনাক্স-"
-"সমর্থিত সাউন্ডকার্ড সঠিকভাবে লাগানো আছে।\n"
-" \n"
-"\n"
-"আপনি আমাদের হার্ডওয়ার ডাটাবেজে ঘুরে আসতে পারেন:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/draksound:57
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or "
-"the sndconfig program. Just type \"alsaconf\" or \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"নোট: যদি আপনার ISA PnP সাউন্ডকার্ড থাকে, তাহলে আপনাকে alsaconf বা sndconfig "
-"প্রোগ্রাম ব্হব্যবহার করতে হবে। কনসোলে শুধুমাত্র \"alsaconf\" বা \"sndconfig\" "
-"ব্যবহার করুন।"
-
-#: standalone/draksplash:30
-#, c-format
-msgid "x coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:31
-#, c-format
-msgid "y coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:32
-#, c-format
-msgid "text box width"
-msgstr ""
-
-#: standalone/draksplash:33
-#, c-format
-msgid "text box height"
-msgstr "টেক্সট্ বক্সের উচ্চতা"
-
-#: standalone/draksplash:34
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"এটার উপরের বাম কোণা থেকে\n"
-"প্রোগ্রেস বারের x অক্ষ"
-
-#: standalone/draksplash:35
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-"এটার উপরের বাম কোণা থেকে\n"
-"প্রোগ্রেস বারের y অক্ষ"
-
-#: standalone/draksplash:36
-#, c-format
-msgid "the width of the progress bar"
-msgstr "প্রোগ্রেস বারের প্রস্থ"
-
-#: standalone/draksplash:37
-#, c-format
-msgid "the height of the progress bar"
-msgstr "প্রোগ্রেস বারের উচ্চতা"
-
-#: standalone/draksplash:38
-#, c-format
-msgid "x coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:39
-#, c-format
-msgid "y coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:40
-#, c-format
-msgid "text box transparency"
-msgstr ""
-
-#: standalone/draksplash:41
-#, c-format
-msgid "progress box transparency"
-msgstr ""
-
-#: standalone/draksplash:42
-#, c-format
-msgid "text size"
-msgstr ""
-
-#: standalone/draksplash:59
-#, c-format
-msgid "Choose progress bar color 1"
-msgstr ""
-
-#: standalone/draksplash:60
-#, c-format
-msgid "Choose progress bar color 2"
-msgstr ""
-
-#: standalone/draksplash:61
-#, c-format
-msgid "Choose progress bar background"
-msgstr ""
-
-#: standalone/draksplash:62
-#, c-format
-msgid "Gradient type"
-msgstr ""
-
-#: standalone/draksplash:63
-#, c-format
-msgid "Choose text color"
-msgstr ""
-
-#: standalone/draksplash:65 standalone/draksplash:72
-#, c-format
-msgid "Choose picture"
-msgstr ""
-
-#: standalone/draksplash:66
-#, c-format
-msgid "Silent bootsplash"
-msgstr ""
-
-#: standalone/draksplash:69
-#, c-format
-msgid "Choose text zone color"
-msgstr ""
-
-#: standalone/draksplash:70
-#, c-format
-msgid "Text color"
-msgstr ""
-
-#: standalone/draksplash:71
-#, c-format
-msgid "Background color"
-msgstr "পটভূমির রং"
-
-#: standalone/draksplash:73
-#, c-format
-msgid "Verbose bootsplash"
-msgstr ""
-
-#: standalone/draksplash:75
-#, c-format
-msgid "Display logo on Console"
-msgstr "কনসোলে লোগো দেখাও"
-
-#: standalone/draksplash:78
-#, c-format
-msgid "Console bootsplash"
-msgstr ""
-
-#: standalone/draksplash:84
-#, c-format
-msgid "Theme name"
-msgstr "থীমের নাম"
-
-#: standalone/draksplash:87
-#, c-format
-msgid "final resolution"
-msgstr "ফাইনাল রেজুলেশন"
-
-#: standalone/draksplash:92
-#, c-format
-msgid "Save theme"
-msgstr "থীম সংরক্ষণ করো"
-
-#: standalone/draksplash:153
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "bootsplash থীম সেভ করা হচ্ছে..."
-
-#: standalone/draksplash:162
-#, c-format
-msgid "Unable to load image file %s"
-msgstr ""
-
-#: standalone/draksplash:173
-#, c-format
-msgid "choose image"
-msgstr "ছবি (image) পছন্দ করুন"
-
-#: standalone/draksplash:188
-#, c-format
-msgid "Color selection"
-msgstr ""
-
-#: standalone/drakups:71
-#, c-format
-msgid "Connected through a serial port or an usb cable"
-msgstr "সিরিয়াল পোর্ট বা ইউএসবি তারের মাধ্যমে সংযুক্ত"
-
-#: standalone/drakups:78
-#, c-format
-msgid "Add an UPS device"
-msgstr "একটু UPS ডিভাইস যোগ করো"
-
-#: standalone/drakups:81
-#, c-format
-msgid ""
-"Welcome to the UPS configuration utility.\n"
-"\n"
-"Here, you'll add a new UPS to your system.\n"
-msgstr ""
-"UPS কনফিগারেশন ইউটিলিটিতে স্বাগতম।\n"
-"\n"
-"এখানে আপনি আপনার সিস্টেমের জন্য একটি নতুন UPS যোগ করতে পারবেন।\n"
-
-#: standalone/drakups:88
-#, c-format
-msgid ""
-"We're going to add an UPS device.\n"
-"\n"
-"Do you want to autodetect UPS devices connected to this machine or to "
-"manually select them?"
-msgstr ""
-"আমরা একটি UPS ডিভাইস যোগ করতে যাচ্ছি।\n"
-"\n"
-"আপনি কি এই মেশিনের সাথে সংযুক্ত UPS ডিভাইস সয়ংক্রিয় সনাক্ত করতে চান অথবা?"
-
-#: standalone/drakups:91
-#, c-format
-msgid "Autodetection"
-msgstr "সয়ংক্রিয় সনাক্ত"
-
-#: standalone/drakups:99 standalone/harddrake2:375
-#, c-format
-msgid "Detection in progress"
-msgstr "সনাক্তকরনে উন্নতি হচ্ছে"
-
-#: standalone/drakups:119
-#, c-format
-msgid "The wizard successfully added the following UPS devices:"
-msgstr "উইজার্ড সফলভাবে নিম্নলিখিত ইউ-পি-এস যন্ত্রগুলো সংযোজিত করেছে:"
-
-#: standalone/drakups:121
-#, c-format
-msgid "No new UPS devices was found"
-msgstr "নতুন কোন ইউ-পি-এস যন্ত্র পাওয়া যায়"
-
-#: standalone/drakups:126 standalone/drakups:138
-#, c-format
-msgid "UPS driver configuration"
-msgstr "ইউ-পি-এস ড্রাইভার কন্‌ফিগারেশন"
-
-#: standalone/drakups:126
-#, c-format
-msgid "Please select your UPS model."
-msgstr "অনুগ্রহ করে আপনার ইউ-পি-এস মডেল নির্বাচন করুন।"
-
-#: standalone/drakups:127
-#, c-format
-msgid "Manufacturer / Model:"
-msgstr "প্রস্তুতকারক / মডেল:"
-
-#: standalone/drakups:138
-#, c-format
-msgid ""
-"We are configuring the \"%s\" UPS from \"%s\".\n"
-"Please fill in its name, its driver and its port."
-msgstr ""
-"আমরা \"%s\" থেকে \"%s\" ইউ-পি-এস'টি কন্‌ফিগার করছি।\n"
-"অনুগ্রহ করে এটার নাম, এটার ড্রাইভার এবং এটার পোর্ট পূরণ করুন।"
-
-#: standalone/drakups:143
-#, c-format
-msgid "Name:"
-msgstr "নাম:"
-
-#: standalone/drakups:143
-#, c-format
-msgid "The name of your ups"
-msgstr "আপনার ইউ-পি-এস এর নাম"
-
-#: standalone/drakups:144
-#, c-format
-msgid "The driver that manages your ups"
-msgstr "আপনার ইউ-পি-এস কে পরিচালিত ড্রাইভার"
-
-#: standalone/drakups:145
-#, c-format
-msgid "Port:"
-msgstr "পোর্ট:"
-
-#: standalone/drakups:147
-#, c-format
-msgid "The port on which is connected your ups"
-msgstr "যে পোর্টে আপনার ইউ-পি-এস সংযুক্ত"
-
-#: standalone/drakups:157
-#, c-format
-msgid "The wizard successfully configured the new \"%s\" UPS device."
-msgstr "উইজার্ড সফলভাবে নতুন \"%s\" ইউ-পি-এস যন্ত্রটি কন্‌ফিগার করেছে।"
-
-#: standalone/drakups:248
-#, c-format
-msgid "UPS devices"
-msgstr "ইউ-পি-এস যন্ত্র"
-
-#: standalone/drakups:249 standalone/drakups:268 standalone/drakups:284
-#: standalone/harddrake2:85 standalone/harddrake2:111
-#: standalone/harddrake2:118
-#, c-format
-msgid "Name"
-msgstr "নাম"
-
-#: standalone/drakups:267
-#, c-format
-msgid "UPS users"
-msgstr "ইউ-পি-এস ব্যবহারকারী"
-
-#: standalone/drakups:283
-#, c-format
-msgid "Access Control Lists"
-msgstr "প্রবেশ পরিচালনার তালিকা"
-
-#: standalone/drakups:284
-#, c-format
-msgid "IP mask"
-msgstr "আই-পি মাস্ক"
-
-#: standalone/drakups:296
-#, c-format
-msgid "Rules"
-msgstr "নীতিমালা"
-
-#: standalone/drakups:297
-#, c-format
-msgid "Action"
-msgstr "কাজ"
-
-#: standalone/drakups:297 standalone/drakvpn:1132 standalone/harddrake2:82
-#, c-format
-msgid "Level"
-msgstr "লেভেল"
-
-#: standalone/drakups:297
-#, c-format
-msgid "ACL name"
-msgstr "এ-সি-এল (ACL) নাম"
-
-#: standalone/drakups:327 standalone/drakups:331 standalone/drakups:340
-#, c-format
-msgid "DrakUPS"
-msgstr "DrakUPS"
-
-#: standalone/drakups:337
-#, c-format
-msgid "Welcome to the UPS configuration tools"
-msgstr "ইউ-পি-এস কন্‌ফিগারেশন টুলে স্বাগতম"
-
-#: standalone/drakvpn:73
-#, c-format
-msgid "DrakVPN"
-msgstr "DrakVPN"
-
-#: standalone/drakvpn:95
-#, c-format
-msgid "The VPN connection is enabled."
-msgstr "VPN সংযুক্তি সক্রিয়।"
-
-#: standalone/drakvpn:96
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"VPN সংযুক্তির সেটআপ ইতিমধ্যে হয়ে গেছে।\n"
-"\n"
-"এটা এখন সক্রিয় অবস্থায় আছে।\n"
-"\n"
-"আপনি কি করতে পছন্দ করছেন?"
-
-#: standalone/drakvpn:101
-#, c-format
-msgid "disable"
-msgstr "নিষ্ক্রিয়"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127
-#, c-format
-msgid "reconfigure"
-msgstr "পুনরায় কন্‌ফিগার"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127 standalone/drakvpn:362
-#: standalone/drakvpn:721
-#, c-format
-msgid "dismiss"
-msgstr "বাদ"
-
-#: standalone/drakvpn:105
-#, c-format
-msgid "Disabling VPN..."
-msgstr "VPN নিষ্ক্রিয় হচ্ছে..."
-
-#: standalone/drakvpn:114
-#, c-format
-msgid "The VPN connection is now disabled."
-msgstr "VPN সংযুক্তি এখন নিষ্ক্রিয়।"
-
-#: standalone/drakvpn:121
-#, c-format
-msgid "VPN connection currently disabled"
-msgstr "VPN সংযুক্তি বর্তমানে নিষ্ক্রিয়"
-
-#: standalone/drakvpn:122
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"VPN সংযুক্তির সেটআপ ইতিমধ্যে হয়ে গেছে।\n"
-"\n"
-"এটা এখন নিষ্ক্রিয় অবস্থায় আছে।\n"
-"\n"
-"আপনি কি করতে পছন্দ করছেন?"
-
-#: standalone/drakvpn:127
-#, c-format
-msgid "enable"
-msgstr "সক্রিয়"
-
-#: standalone/drakvpn:135
-#, c-format
-msgid "Enabling VPN..."
-msgstr "VPN সক্রিয় হচ্ছে..."
-
-#: standalone/drakvpn:141
-#, c-format
-msgid "The VPN connection is now enabled."
-msgstr "VPN সংযোগ এখন সক্রিয়।"
-
-#: standalone/drakvpn:155 standalone/drakvpn:183
-#, c-format
-msgid "Simple VPN setup."
-msgstr "সাধারণ VPN সেটআপ।"
-
-#: standalone/drakvpn:156
-#, c-format
-msgid ""
-"You are about to configure your computer to use a VPN connection.\n"
-"\n"
-"With this feature, computers on your local private network and computers\n"
-"on some other remote private networks, can share resources, through\n"
-"their respective firewalls, over the Internet, in a secure manner. \n"
-"\n"
-"The communication over the Internet is encrypted. The local and remote\n"
-"computers look as if they were on the same network.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using\n"
-"drakconnect before going any further."
-msgstr ""
-"আপনি আপনার কম্পিউটারের VPN সংযুক্তির কন্‌ফিগার প্রায় করে ফেলেছেন।\n"
-"\n"
-"এই বৈশিষ্ট্যের কারণে, আপনার ব্যক্তিগত লোকাল নেটওয়ার্কে থাকা অন্য কম্পিউটারগুলো\n"
-"এবং অন্যান্য দূরবর্তী ব্যক্তিগত নেটওয়ার্কে থাকা কম্পিউটারগুলো, তাদের ফায়ারওয়ালের\n"
-"মাধ্যমে, ইন্টারনেটে, নিরাপত্তা সহযোগে, সেগুলোর রিসোর্স ভাগাভাগি করতে পারেন। \n"
-"\n"
-"ইন্টারনেটে যোগাযোগ এনক্রিপ্ট হয়ে হয়। স্থানীয় এবং দূরবর্তী কম্পিউটারগুলো\n"
-"দেখুন যদি সেগুলো একই নেটওয়ার্কে থাকে।\n"
-"\n"
-"অন্য উপায় না দেখে নিশ্চিত হোন যে drakconnect ব্যবহার করে আপনার\n"
-"নেটওয়ার্ক ও ইন্টারনেট ব্যবহার কন্‌ফিগার করা হয়েছে।"
-
-#: standalone/drakvpn:184
-#, c-format
-msgid ""
-"VPN connection.\n"
-"\n"
-"This program is based on the following projects:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - the docs and man pages coming with the %s package\n"
-"\n"
-"Please read AT LEAST the ipsec-howto docs\n"
-"before going any further."
-msgstr ""
-"VPN সংযুক্তি।\n"
-"\n"
-"এই প্রোগ্রামটি নিম্নলিখিত প্রোজেক্টের উপর নির্ভরশীল:\n"
-" - ফ্রিসুয়ান: \t\t\thttp://www.freeswan.org/\n"
-" - সুপার-ফ্রিসুয়ান: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-টুল্‌স: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - তথ্য এবং ম্যান পেজগুলো %s প্যাকেজের সাথে আসে\n"
-"\n"
-"অন্যান্য ক্ষেত্রে যাওয়ার আগে অনুগ্রহ করে অন্ততপক্ষে\n"
-" ipsec-howto নথিগুলো পড়ুন।"
-
-#: standalone/drakvpn:196
-#, c-format
-msgid "Kernel module."
-msgstr "কার্নেল মডিউল।"
-
-#: standalone/drakvpn:197
-#, c-format
-msgid ""
-"The kernel needs to have ipsec support.\n"
-"\n"
-"You're running a %s kernel version.\n"
-"\n"
-"This kernel has '%s' support."
-msgstr ""
-"কার্ণেলের ipsec সহায়ক হওয়া প্রয়োজন।\n"
-"\n"
-"আপনি কার্ণেলের %s সংস্করণ চালাচ্ছেন।\n"
-"\n"
-"এই কার্ণেলের '%s' সহায়তা আছে।"
-
-#: standalone/drakvpn:264
-#, c-format
-msgid "Problems installing package %s"
-msgstr "%s প্যাকেজ ইনস্টলে সমস্যা"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "Security Policies"
-msgstr "নিরাপত্তা নীতি"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "IKE daemon racoon"
-msgstr "IKE ডেমন্‌ racoon"
-
-#: standalone/drakvpn:281 standalone/drakvpn:292
-#, c-format
-msgid "Configuration file"
-msgstr "কন্‌ফিগারেশন ফাইল"
-
-#: standalone/drakvpn:282
-#, c-format
-msgid ""
-"Configuration step!\n"
-"\n"
-"You need to define the Security Policies and then to \n"
-"configure the automatic key exchange (IKE) daemon. \n"
-"The KAME IKE daemon we're using is called 'racoon'.\n"
-"\n"
-"What would you like to configure?\n"
-msgstr ""
-"কন্‌ফিগারেশনের ধাপ !\n"
-"\n"
-"আপনাকে নিরাপত্তা নীতি বলে দিতে হবে এবং তারপর \n"
-"স্বয়ংক্রিয় কী পরিবর্তন (IKE) ডেমন্‌ কন্‌ফিগার করতে হবে। \n"
-"আমরা যে KAME IKE ডেমন্‌ ব্যবহার করছি তাকে 'racoon' বলা হয়।\n"
-"\n"
-"আপনি কি কন্‌ফিগার করতে পছন্দ করছেন?\n"
-
-#: standalone/drakvpn:293
-#, c-format
-msgid ""
-"Next, we will configure the %s file.\n"
-"\n"
-"\n"
-"Simply click on Next.\n"
-msgstr ""
-"পরবর্তীতে, আমরা %s ফাইলটি কন্‌ফিগার করব।\n"
-"\n"
-"\n"
-"শুধুমাত্র পরবর্তী'তে ক্লিক করুন।\n"
-
-#: standalone/drakvpn:311 standalone/drakvpn:671
-#, c-format
-msgid "%s entries"
-msgstr "%s এন্ট্রি"
-
-#: standalone/drakvpn:312
-#, c-format
-msgid ""
-"The %s file contents\n"
-"is divided into sections.\n"
-"\n"
-"You can now:\n"
-"\n"
-" - display, add, edit, or remove sections, then\n"
-" - commit the changes\n"
-"\n"
-"What would you like to do?\n"
-msgstr ""
-"%s ফাইলের বিষয়বস্তুগুলো\n"
-"বিভিন্ন সেক্‌শনে বিভক্ত থাকে।\n"
-"\n"
-"আপনি এখন করতে পারেন :\n"
-"\n"
-" - প্রদর্শন, যোগ, সম্পাদনা, অথবা সেকশন মুছে ফেলতে পারেন, তখন\n"
-" - পরিবর্তগুলো নিবদ্ধ করুন\n"
-"\n"
-"আপনি কি করতে পছন্দ করছেন?\n"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display"
-msgstr "প্রদর্শন করো"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid "Commit"
-msgstr "নিবদ্ধ করো"
-
-#: standalone/drakvpn:333 standalone/drakvpn:337 standalone/drakvpn:695
-#: standalone/drakvpn:699
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display configuration"
-msgstr "কন্‌ফিগারেশন প্রদর্শন করো"
-
-#: standalone/drakvpn:338
-#, c-format
-msgid ""
-"The %s file does not exist.\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose 'add'.\n"
-msgstr ""
-"%s ফাইলটি বিদ্যমান নেই।\n"
-"\n"
-"এটা অবশ্যই একটি নতুন কন্‌ফিগারেশন হবে।\n"
-"\n"
-"আপনাকে পূর্ব অবস্থানে যেতে হবে এবং 'যোগ করো' পছন্দ করুন।\n"
-
-#: standalone/drakvpn:354
-#, c-format
-msgid "ipsec.conf entries"
-msgstr "ipsec.conf এন্ট্রি"
-
-#: standalone/drakvpn:355
-#, c-format
-msgid ""
-"The %s file contains different sections.\n"
-"\n"
-"Here is its skeleton:\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"You can now add one of these sections.\n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-"%s ফাইলের বিভিন্ন সেক্‌শন আছে।\n"
-"\n"
-"এখানে এটার ভেতরের সেক্‌শনে আছে :\t'কন্‌ফিগ সেটআপ' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'সাধারণ১'\n"
-"\t\t\t\t\t'সাধারণ২' \n"
-"\n"
-"আপনি এখন যেকোন একটি সেক্‌শন যোগ করতে পারেন।\n"
-"\n"
-"আপনি যে সেক্‌শনটি পছন্দ করুন সেটা বেছে নিন।\n"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "config setup"
-msgstr "কন্‌ফিগ সেটআপ"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "conn %default"
-msgstr "conn %default"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "normal conn"
-msgstr "সাধারণ conn"
-
-#: standalone/drakvpn:368 standalone/drakvpn:409 standalone/drakvpn:496
-#, c-format
-msgid "Exists!"
-msgstr "বিদ্যমান !"
-
-#: standalone/drakvpn:369 standalone/drakvpn:410
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change its name.\n"
-msgstr ""
-"এই নামের একটি সেক্‌শন ইতিমধ্যেই বিদ্যমান আছে।\n"
-"এই সেক্‌শনর নামটি অদ্বিতীয় হতে হবে।\n"
-"\n"
-"আপনাকে পূর্ব অবস্থানে ফিরে যেতে হবে এবং অন্য সেক্‌শন যোগ করতে\n"
-"হবে অথবা এটার নাম পরিবর্তন করতে হবে।\n"
-
-#: standalone/drakvpn:386
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow this config\n"
-"setup section.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"এটি আপনার %s ফাইলের উপরে\n"
-"থাকতে হবে।\n"
-"\n"
-"নিশ্চিত হোন যে অন্যান্য সব সেক্‌শন এই কন্‌ফিগ সেটআপ\n"
-"মেনে নেবে।\n"
-"\n"
-"চালিয়ে যাও অথবা পূর্ববর্তী পছন্দ করুন যখন আপনার কাজ হয়ে যাবে।\n"
-
-#: standalone/drakvpn:391
-#, c-format
-msgid "interfaces"
-msgstr "ইন্টারফেস"
-
-#: standalone/drakvpn:392
-#, c-format
-msgid "klipsdebug"
-msgstr "klipsডিবাগ"
-
-#: standalone/drakvpn:393
-#, c-format
-msgid "plutodebug"
-msgstr "প্লুটোডিবাগ"
-
-#: standalone/drakvpn:394
-#, c-format
-msgid "plutoload"
-msgstr "প্লুটোচালু"
-
-#: standalone/drakvpn:395
-#, c-format
-msgid "plutostart"
-msgstr "প্লুটোশুরু"
-
-#: standalone/drakvpn:396
-#, c-format
-msgid "uniqueids"
-msgstr "অদ্বিতীয়আইডি"
-
-#: standalone/drakvpn:430
-#, c-format
-msgid ""
-"This is the first section after the config\n"
-"setup one.\n"
-"\n"
-"Here you define the default settings. \n"
-"All the other sections will follow this one.\n"
-"The left settings are optional. If do not define\n"
-"them here, globally, you can define them in each\n"
-"section.\n"
-msgstr ""
-"একবার কন্‌ফিগ সেটআপ করার পর\n"
-"এটা হচ্ছে প্রথম সেক্‌শন।\n"
-"\n"
-"এখানে আপনি ডিফল্ট সেটিংস নির্দিষ্ট করে দিতে পারেন। \n"
-"অন্য সব সেক্‌শন এটা মেনে চলবে।\n"
-"বামের এই সেটিংসটি ঐচ্ছিক। যদি এগুলোকে সবার জন্য নির্দিষ্ট\n"
-"করে দিতে না চান, তাহলে প্রত্যেক সেক্‌শন আলাদা করে নির্দিষ্ট করে\n"
-"দিতে পারেন।\n"
-
-#: standalone/drakvpn:437
-#, c-format
-msgid "PFS"
-msgstr "পি-এফ-এস"
-
-#: standalone/drakvpn:438
-#, c-format
-msgid "keyingtries"
-msgstr "keyingtries"
-
-#: standalone/drakvpn:439
-#, c-format
-msgid "compress"
-msgstr "সংক্ষিপ্ত"
-
-#: standalone/drakvpn:440
-#, c-format
-msgid "disablearrivalcheck"
-msgstr "disablearrivalcheck"
-
-#: standalone/drakvpn:441 standalone/drakvpn:480
-#, c-format
-msgid "left"
-msgstr "বাম"
-
-#: standalone/drakvpn:442 standalone/drakvpn:481
-#, c-format
-msgid "leftcert"
-msgstr "বামসার্ট"
-
-#: standalone/drakvpn:443 standalone/drakvpn:482
-#, c-format
-msgid "leftrsasigkey"
-msgstr "বামrsasigkey"
-
-#: standalone/drakvpn:444 standalone/drakvpn:483
-#, c-format
-msgid "leftsubnet"
-msgstr "বামসাবনেট"
-
-#: standalone/drakvpn:445 standalone/drakvpn:484
-#, c-format
-msgid "leftnexthop"
-msgstr "বামnexthop"
-
-#: standalone/drakvpn:474
-#, c-format
-msgid ""
-"Your %s file has several sections, or connections.\n"
-"\n"
-"You can now add a new section.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"আপনার %s ফাইলের কয়েকটি সেক্‌শন, অথবা সংযুক্তি আছে।\n"
-"\n"
-"আপনি এখন একটি নতুন সেক্‌শন যোগ করতে পারেন।\n"
-"যখন আপনার তথ্য লেখা শেষ হবে তখন চালিয়ে যাও পছন্দ করুন।\n"
-
-#: standalone/drakvpn:477
-#, c-format
-msgid "section name"
-msgstr "অংশের নাম"
-
-#: standalone/drakvpn:478
-#, c-format
-msgid "authby"
-msgstr "অনুমোদিত"
-
-#: standalone/drakvpn:479
-#, c-format
-msgid "auto"
-msgstr "স্বয়ংক্রিয়"
-
-#: standalone/drakvpn:485
-#, c-format
-msgid "right"
-msgstr "ডান"
-
-#: standalone/drakvpn:486
-#, c-format
-msgid "rightcert"
-msgstr "ডানসার্ট"
-
-#: standalone/drakvpn:487
-#, c-format
-msgid "rightrsasigkey"
-msgstr "ডানrsasigkey"
-
-#: standalone/drakvpn:488
-#, c-format
-msgid "rightsubnet"
-msgstr "ডানসার্ট"
-
-#: standalone/drakvpn:489
-#, c-format
-msgid "rightnexthop"
-msgstr "ডানnexthop"
-
-#: standalone/drakvpn:497
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change the name of the section.\n"
-msgstr ""
-"এই নামের একটি সেক্‌শন ইতিমধ্যেই বিদ্যমান আছে।\n"
-"সংযুক্তির নাম অদ্বিতীয় হতে হবে।\n"
-"\n"
-"আপনাকে পেছনে যেতে হবে এবং অন্য একটি সেক্‌শন যোগ করতে\n"
-"অথবা সেক্‌শনের নাম পরিবর্তন করতে হবে।\n"
-
-#: standalone/drakvpn:529
-#, c-format
-msgid ""
-"Add a Security Policy.\n"
-"\n"
-"You can now add a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"একটি নিরাপত্তা নীতি যোগ করো।\n"
-"\n"
-"আপনি এখন একটি নিরাপত্তা নীতি যোগ করতে পারেন।\n"
-"\n"
-"যখন আপনার তথ্য লেখা হয়ে যাবে তখন চালিয়ে যাও পছন্দ করুন।\n"
-
-#: standalone/drakvpn:562 standalone/drakvpn:812
-#, c-format
-msgid "Edit section"
-msgstr "সেক্‌শন সম্পাদনা"
-
-#: standalone/drakvpn:563
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to edit \n"
-"and then click on next.\n"
-msgstr ""
-"আপনার %s ফাইলের কয়েকটি সেক্‌শন অথবা সংযুক্তি আছে।\n"
-"\n"
-"সম্পাদনার জন্য আপনি নিচের যে কোন একটি ফাইল পছন্দ \n"
-"করতে পারেন এবং তখন পরবর্তী'তে ক্লিক করতে পারেন।\n"
-
-#: standalone/drakvpn:566 standalone/drakvpn:646 standalone/drakvpn:817
-#: standalone/drakvpn:863
-#, c-format
-msgid "Section names"
-msgstr "সেক্‌শনগুলোর নাম"
-
-#: standalone/drakvpn:576
-#, c-format
-msgid "Can not edit!"
-msgstr "সম্পাদনা করা যাচ্ছেনা !"
-
-#: standalone/drakvpn:577
-#, c-format
-msgid ""
-"You cannot edit this section.\n"
-"\n"
-"This section is mandatory for Freeswan 2.X.\n"
-"One has to specify version 2.0 on the top\n"
-"of the %s file, and eventually, disable or\n"
-"enable the opportunistic encryption.\n"
-msgstr ""
-"আপনি এই সেক্‌শন সম্পাদনা করতে পারেন না।\n"
-"\n"
-"এই সেক্‌শনটি শুধুমাত্র Freeswan 2.X এর জন্য।\n"
-"%s ফাইলের উপর একজনকে সংস্করণ ২.০ নির্দিষ্ট করে\n"
-"দিতে হবে, এবং নিষ্ক্রিয় বা\n"
-"সক্রিয় করতে হবে opportunistic encryption।\n"
-
-#: standalone/drakvpn:586
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the config setup section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"আপনার %s ফাইলের বেশকিছু অংশ আছে।\n"
-"\n"
-"আপনি এখন কন্‌ফিগ সেটআপ অংশের এন্ট্রি সম্পাদনা করতে পারেন।\n"
-"তথ্য লিখে ফেলতে আপনি চালিয়ে যাও পছন্দ করুন।\n"
-
-#: standalone/drakvpn:597
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the default section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"আপনার %s ফাইলের বেশকিছু অংশ বা সংযুক্তি আছে।\n"
-"\n"
-"আপনি এখন ডিফল্ট অংশের এন্ট্রি সম্পাদনা করতে পারেন।\n"
-"তথ্য লিখে ফেলতে আপনি চালিয়ে যাও পছন্দ করুন।\n"
-
-#: standalone/drakvpn:610
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the normal section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"আপনার %s ফাইলের বেশকিছু অংশ বা সংযুক্তি আছে।\n"
-"\n"
-"আপনি এখন স্বাভাবিক অংশের এন্ট্রি সম্পাদনা করতে পারেন।\n"
-"\n"
-"তথ্য লিখে ফেলতে আপনি চালিয়ে যাও পছন্দ করুন।\n"
-
-#: standalone/drakvpn:631
-#, c-format
-msgid ""
-"Edit a Security Policy.\n"
-"\n"
-"You can now edit a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"নিরাপত্তা নীতি সম্পাদনা করো।\n"
-"\n"
-"আপনি এখন নিরাপত্তা নীতি যোগ করতে পারেন।\n"
-"\n"
-"তথ্য লিখে ফেলতে আপনি চালিয়ে যাও পছন্দ করুন।\n"
-
-#: standalone/drakvpn:642 standalone/drakvpn:859
-#, c-format
-msgid "Remove section"
-msgstr "সেকশন মুছে ফেলো"
-
-#: standalone/drakvpn:643 standalone/drakvpn:860
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to remove\n"
-"and then click on next.\n"
-msgstr ""
-"আপনার %s ফাইলের বেশকিছু অংশ বা সংযুক্তি আছে।\n"
-"\n"
-"আপনি নিচের কোন একটিকে মুছতে চাইলে পছন্দ করুন\n"
-"এবং পরবর্তী'তে ক্লিক করুন।\n"
-
-#: standalone/drakvpn:672
-#, c-format
-msgid ""
-"The racoon.conf file configuration.\n"
-"\n"
-"The contents of this file is divided into sections.\n"
-"You can now:\n"
-" - display \t\t (display the file contents)\n"
-" - add\t\t\t (add one section)\n"
-" - edit \t\t\t (modify parameters of an existing section)\n"
-" - remove \t\t (remove an existing section)\n"
-" - commit \t\t (writes the changes to the real file)"
-msgstr ""
-"racoon.conf ফাইলের কন্‌ফিগারেশন।\n"
-"\n"
-"এই ফাইলের বিষয়বস্তুগুলো বিভিন্ন অংশে বিভক্ত।\n"
-"আপনি এখন করতে পারেন:\n"
-" - প্রদর্শন \t\t (ফাইলের বিষয়বস্তু প্রদর্শন করতে)\n"
-" - যোগ \t\t (একটি অংশ যোগ করতে)\n"
-" - সম্পাদনা \t\t (বিদ্যমান অংশের প্যারামিটারে পরিবর্তন করতে)\n"
-" - মুছো \t\t (বিদ্যমান অংশ মুছে ফেলতে)\n"
-" - নিবদ্ধ \t\t (বাস্তব ফাইলের পরিবর্তন লিখতে)"
-
-#: standalone/drakvpn:700
-#, c-format
-msgid ""
-"The %s file does not exist\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose configure.\n"
-msgstr ""
-"%s ফাইলটি বর্তমান নেই।\n"
-"\n"
-"এটা অবশ্যই কোন কন্‌ফিগারেশন হবে।\n"
-"\n"
-"আপনাকে পেছনে ফিরতে হবে এবং কন্‌ফিগার বেছে নিতে হবে।\n"
-
-#: standalone/drakvpn:714
-#, c-format
-msgid "racoonf.conf entries"
-msgstr "racoon.conf এন্ট্রি"
-
-#: standalone/drakvpn:715
-#, c-format
-msgid ""
-"The 'add' sections step.\n"
-"\n"
-"Here below is the racoon.conf file skeleton:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-"'যোগ করো' সেক্‌শনের ধাপ।\n"
-"\n"
-"এখানে নিচে racoon.conf ফাইলের স্কেলেটন :\n"
-"\t'পাথ'\n"
-"\t'দূরবর্তী'\n"
-"\t'sainfo'\n"
-"\n"
-"যে সেক্‌শনটি যোগ করতে চান তা পছন্দ করুন।\n"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "path"
-msgstr "পাথ"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "remote"
-msgstr "দূরবর্তী"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "sainfo"
-msgstr "sainfo"
-
-#: standalone/drakvpn:729
-#, c-format
-msgid ""
-"The 'add path' section step.\n"
-"\n"
-"The path sections have to be on top of your racoon.conf file.\n"
-"\n"
-"Put your mouse over the certificate entry to obtain online help."
-msgstr ""
-"'পাথ যোগ করো' অংশের ধাপ।\n"
-"\n"
-"পাথের অংশটা আপনার racoon.conf ফাইলের উপরে থাকে।\n"
-"\n"
-"অনলাইনে সাহায্য পাওয়ার জন্য আপনার মাউসটি সার্টিফিকেট এন্ট্রি'র উপর রাখুন।"
-
-#: standalone/drakvpn:732
-#, c-format
-msgid "path type"
-msgstr "পাথের ধরণ"
-
-#: standalone/drakvpn:736
-#, c-format
-msgid ""
-"path include path: specifies a path to include\n"
-"a file. See File Inclusion.\n"
-"\tExample: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: specifies a file containing\n"
-"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
-"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) will search this directory\n"
-"if a certificate or certificate request is received.\n"
-"\tExample: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"other configuration files can be included.\n"
-"\tExample: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File: Pre-shared key file defines a pair\n"
-"of the identifier and the shared secret key which are used at\n"
-"Pre-shared key authentication method in phase 1."
-msgstr ""
-
-# "পাথ যোগ করার পাথ : একটি ফাইল যুক্ত করার জন্য নির্দিষ্ট পাথ\n"
-# "দেখিয়ে দিন। ফাইল Inclusion দেখিয়ে দিন।\n"
-# "\tউদাহরণস্বরুপ: '/etc/racoon' যুক্ত করার পাথ\n"
-# "\n"
-# ""
-# Real Sugar = আসল চিনি
-#: standalone/drakvpn:756 standalone/drakvpn:849
-#, c-format
-msgid "real file"
-msgstr "আসল ফাইল"
-
-#: standalone/drakvpn:779
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your racoon.conf file.\n"
-"\n"
-"You can now choose the remote settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"নিশ্চিত হোন যে আপনার racoon.conf ফাইলের উপরে ইতিমধ্যেই\n"
-"আপনার পাথে'র অংশ আছে।\n"
-"\n"
-"আপনি দূরবর্তী সেটিংস পছন্দ করতে পারেন।\n"
-"যখন আপনার কাজ শেষ হবে তখন চালিয়ে যাও বা পূর্ববর্তী পছন্দ করুন।\n"
-
-#: standalone/drakvpn:796
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your %s file.\n"
-"\n"
-"You can now choose the sainfo settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"নিশ্চিত হোন যে আপনার %s ফাইলের উপরে ইতিমধ্যেই\n"
-"আপনার পাথের অংশ আছে।\n"
-"\n"
-"আপনি sainfo সেটিংস পছন্দ করতে পারেন।\n"
-"যখন আপনার কাজ শেষ হবে তখন চালিয়ে যাও বা পূর্ববর্তী পছন্দ করুন।\n"
-
-#: standalone/drakvpn:813
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here in the list below the one you want\n"
-"to edit and then click on next.\n"
-msgstr ""
-"আপনার %s ফাইলের কয়েকটি অংশ বা সংযুক্তি আছে।\n"
-"\n"
-"নিচে দেয়া তালিকা থেকে আপনি যে কোন একটি সম্পাদনা করার জন্য\n"
-"বেছে নিতে পারেন এবং তখন পরবর্তী'র উপর ক্লিক করুন।\n"
-
-#: standalone/drakvpn:824
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"\n"
-"You can now edit the remote section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"আপনার %s ফাইলের কয়েকটি অংশ আছে।\n"
-"\n"
-"আপনি দূরবর্তী অংশের এন্ট্রিগুলো সম্পাদনা করতে পারেন।\n"
-"\n"
-"যখন আপনার তথ্য লেখা শেষ হবে তখন চালিয়ে পছন্দ নিন।\n"
-
-#: standalone/drakvpn:833
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the sainfo section entries.\n"
-"\n"
-"Choose continue when you are done to write the data."
-msgstr ""
-"আপনার %s ফাইলের কয়েকটি অংশ আছে।\n"
-"\n"
-"আপনি sainfo অংশের এন্ট্রিগুলো সম্পাদনা করতে পারেন।\n"
-"\n"
-"যখন আপনার তথ্য লেখা শেষ হবে তখন চালিয়ে পছন্দ নিন।"
-
-#: standalone/drakvpn:841
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow these path\n"
-"sections.\n"
-"\n"
-"You can now edit the path entries.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"এই সেক্‌শনটি আপনার %s ফাইলের উপরে\n"
-"রাখতে হবে।\n"
-"\n"
-"নিশ্চিত হোন যে সবগুলো সেক্‌শন এই পাথ সেক্‌শন\n"
-"অনুসরণ করবে।\n"
-"আপনি এখন পাথ এন্ট্রি সম্পাদনা করতে পারেন।\n"
-"\n"
-"যখন আপনার কাজ শেষ হবে তখন চালিয়ে যাও বা পূর্ববর্তী পছন্দ করুন।\n"
-
-#: standalone/drakvpn:848
-#, c-format
-msgid "path_type"
-msgstr "পাথ_টাইপ"
-
-#: standalone/drakvpn:889
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"\n"
-"You may now share resources through the Internet,\n"
-"in a secure way, using a VPN connection.\n"
-"\n"
-"You should make sure that that the tunnels shorewall\n"
-"section is configured."
-msgstr ""
-"সবকিছু কন্‌ফিগার করা হয়েছে।\n"
-"\n"
-"আপনি এখন ইন্টারনেটে রিসোর্স ভাগাভাগী করতে পারেন,\n"
-"নিরাপদ পথে, VPN সংযুক্তি ব্যবহার করে।\n"
-"\n"
-"আপনার নিশ্চিত উচিত যে tunnels shorewall সেক্‌শন\n"
-"কন্‌ফিগার করা হয়েছে।"
-
-#: standalone/drakvpn:909
-#, c-format
-msgid "Sainfo source address"
-msgstr "Sainfo উত্‍সের ঠিকানা"
-
-# #msgstr "Sainfo উত্‍সের অ্যাড্রেস"
-#: standalone/drakvpn:910
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 is the source address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 is the source address"
-msgstr ""
-"sainfo (উত্‍স_আইডি গন্তব্য_আইডি | anonymous) { মন্তব্য }\n"
-"IKE phase 2 প্যারামিটার নির্দিষ্ট করে দেয়\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"উত্‍স_আইডি এবং গন্তব্য_আইডি তৈরী হয় যাদের মতো:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"উদাহরণস্বরুপ : \n"
-"\n"
-"sainfo anonymous (যেকোন জায়গা থেকে সংযুক্তি গ্রহণ করে)\n"
-"\tআপনি যদি anonymous চান তাহলে এই এন্ট্রি খালি রেখে দিন\n"
-"\n"
-"sainfo ঠিকানা 203.178.141.209 যেকোন ঠিকানা 203.178.141.218 যেকোন\n"
-"\t203.178.141.209 হচ্ছে উত্‍সের ঠিকানা\n"
-"\n"
-"sainfo ঠিকানা 172.16.1.0/24 যেকোন ঠিকানা 172.16.2.0/24 যেকোনো\n"
-"\t172.16.1.0/24 হচ্ছে উত্‍সের ঠিকানা"
-
-#: standalone/drakvpn:927
-#, c-format
-msgid "Sainfo source protocol"
-msgstr "Sainfo উত্‍সের প্রোটোকল"
-
-#: standalone/drakvpn:928
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe first 'any' allows any protocol for the source"
-msgstr ""
-"sainfo (উত্‍স_আইডি গন্তব্য_আইডি | anonymous) { মন্তব্য }\n"
-"IKE phase 2 প্যারামিটার নির্দিষ্ট করে দেয়\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"উত্‍স_আইডি এবং গন্তব্য_আইডি তৈরী হয় যাদের মতো:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"উদাহরণস্বরুপ : \n"
-"\n"
-"sainfo anonymous (যেকোন জায়গা থেকে সংযুক্তি গ্রহণ করে)\n"
-"\tআপনি যদি anonymous চান তাহলে এই এন্ট্রি খালি রেখে দিন\n"
-"\n"
-"sainfo ঠিকানা 203.178.141.209 যেকোন ঠিকানা 203.178.141.218 যেকোন\n"
-"জায়গার প্রথম 'যেকোন' সবসময় যেকোন উত্‍স থেকে প্রোটোকল গ্রহণ করে"
-
-#: standalone/drakvpn:942
-#, c-format
-msgid "Sainfo destination address"
-msgstr "Sainfo গন্তব্যের ঠিকানা"
-
-# ##msgstr "Sainfo গন্তব্যের অ্যাড্রেস"
-#: standalone/drakvpn:943
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 is the destination address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 is the destination address"
-msgstr ""
-"sainfo (উত্‍স_আইডি গন্তব্য_আইডি | anonymous) { মন্তব্য }\n"
-"IKE phase 2 প্যারামিটার নির্দিষ্ট করে দেয়\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"উত্‍স_আইডি এবং গন্তব্য_আইডি তৈরী হয় যাদের মতো:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"উদাহরণস্বরুপ : \n"
-"\n"
-"sainfo anonymous (যেকোন জায়গা থেকে সংযুক্তি গ্রহণ করে)\n"
-"\tআপনি যদি anonymous চান তাহলে এই এন্ট্রি খালি রেখে দিন\n"
-"\n"
-"sainfo ঠিকানা 203.178.141.209 যেকোন ঠিকানা 203.178.141.218 যেকোন\n"
-"\t203.178.141.209 হচ্ছে গন্তব্যের ঠিকানা\n"
-"\n"
-"sainfo ঠিকানা 172.16.1.0/24 যেকোন ঠিকানা 172.16.2.0/24 যেকোনো\n"
-"\t172.16.1.0/24 হচ্ছে গন্তব্যের ঠিকানা"
-
-#: standalone/drakvpn:960
-#, c-format
-msgid "Sainfo destination protocol"
-msgstr "Sainfo গন্তব্যের প্রোটোকল"
-
-#: standalone/drakvpn:961
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe last 'any' allows any protocol for the destination"
-msgstr ""
-"sainfo (উত্‍স_আইডি গন্তব্য_আইডি | anonymous) { মন্তব্য }\n"
-"IKE phase 2 প্যারামিটার নির্দিষ্ট করে দেয়\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"উত্‍স_আইডি এবং গন্তব্য_আইডি তৈরী হয় যাদের মতো:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"উদাহরণস্বরুপ : \n"
-"\n"
-"sainfo anonymous (যেকোন জায়গা থেকে সংযুক্তি গ্রহণ করে)\n"
-"\tআপনি যদি anonymous চান তাহলে এই এন্ট্রি খালি রেখে দিন\n"
-"\n"
-"sainfo ঠিকানা 203.178.141.209 যেকোন ঠিকানা 203.178.141.218 যেকোন\n"
-"জায়গার প্রথম 'যেকোন' সবসময় গন্তব্যের জন্য প্রোটোকল গ্রহণ করে"
-
-#: standalone/drakvpn:975
-#, c-format
-msgid "PFS group"
-msgstr "পি-এফ-এস গ্রুপ"
-
-#: standalone/drakvpn:977
-#, c-format
-msgid ""
-"define the group of Diffie-Hellman exponentiations.\n"
-"If you do not require PFS then you can omit this directive.\n"
-"Any proposal will be accepted if you do not specify one.\n"
-"group is one of the following: modp768, modp1024, modp1536.\n"
-"Or you can define 1, 2, or 5 as the DH group number."
-msgstr ""
-"Diffie-Hellman exponentiations এর গ্রুপ নির্দিষ্ট করো।\n"
-"আপনার যদি কোন পি-এফ-এস প্রয়োজন না হয় তাহলে এই ডিরেক্টিভ মুছে ফেলতে পারেন।\n"
-"আপনি কোন একটি নির্দিষ্ত করে না দেন তাহলে প্রস্তাব গ্রহণযোগ্য হবে।\n"
-"এখানকার যেকোন একটি গ্রুপ: modp768, modp1024, modp1536।\n"
-"অথবা আপনি ১, ২, বা ৫ হিসেবে DH গ্রুপ সংখ্যাগুলো নির্দিষ্ট করে দিতে পারেন।"
-
-#: standalone/drakvpn:982
-#, c-format
-msgid "Lifetime number"
-msgstr "আজীবনের নম্বর"
-
-#: standalone/drakvpn:983
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-msgstr ""
-"আজীবনের একটা নির্দিষ্ট সময় নির্ধারণ করুন যা phase 1 \n"
-"negotiations এ প্রস্তাবিত হবে। যেকোন প্রস্তাব গ্রহণ করা\n"
-"হবে, এবং বৈশিষ্ট্যগুলো সঙ্গীর(peer) প্রতি প্রস্তাব করা হবে না\n"
-"যদি আপনি তাকে(তাদেরকে) নির্দিষ্ট করে না দেন। তারা প্রত্যেকে\n"
-"প্রতি প্রস্তাবের পৃথকভাবে নির্দিষ্ট করে দিতে পারে।\n"
-"\n"
-"উদাহরণস্বরুপ : \n"
-"\n"
-"\t১ মিনিটের সময়সীমা; #সেকেন্ড,মিনিট,ঘন্টা\n"
-"\t১ মিনিটের সময়সীমা; #সেকেন্ড,মিনিট,ঘন্টা\n"
-"\t৩০ সেকেন্ডের সময়সীমা;\n"
-"\t৩০ সেকেন্ডের সময়সীমা;\n"
-"\t৬০ সেকেন্ডের সময়সীমা;\n"
-"\t১২ ঘন্টার সময়সীমা;\n"
-"\n"
-"সুতরাং, এখানে সময়সীমা সংখ্যাগুলো ১, ১, ৩০, ৬০ এবং ১২।\n"
-
-#: standalone/drakvpn:999
-#, c-format
-msgid "Lifetime unit"
-msgstr "আজীবনের ইউনিট"
-
-#: standalone/drakvpn:1001
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
-"'hour'.\n"
-msgstr ""
-"আজীবনের একটা নির্দিষ্ট সময় নির্ধারণ করুন যা phase 1 \n"
-"negotiations এ প্রস্তাবিত হবে। যেকোন প্রস্তাব গ্রহণ করা\n"
-"হবে, এবং বৈশিষ্ট্যগুলো সঙ্গীর(peer) প্রতি প্রস্তাব করা হবে না\n"
-"যদি আপনি তাকে(তাদেরকে) নির্দিষ্ট করে না দেন। তারা প্রত্যেকে\n"
-"প্রতি প্রস্তাবের পৃথকভাবে নির্দিষ্ট করে দিতে পারে।\n"
-"\n"
-"উদাহরণস্বরুপ : \n"
-"\n"
-"\t১ মিনিটের সময়সীমা; #সেকেন্ড,মিনিট,ঘন্টা\n"
-"\t১ মিনিটের সময়সীমা; #সেকেন্ড,মিনিট,ঘন্টা\n"
-"\t৩০ সেকেন্ডের সময়সীমা;\n"
-"\t৩০ সেকেন্ডের সময়সীমা;\n"
-"\t৬০ সেকেন্ডের সময়সীমা;\n"
-"\t১২ ঘন্টার সময়সীমা;\n"
-"\n"
-"সুতরাং, এখানে সময়সীমা ইউনিটগুলো 'মিনিট', 'মিনিট', 'সেকেন্ড', 'সেকেন্ড', 'সেকেন্ড' "
-"এবং 'ঘন্টা'।\n"
-
-#: standalone/drakvpn:1019
-#, c-format
-msgid "Authentication algorithm"
-msgstr "নির্ভরযোগ্য অ্যালগোরিদম"
-
-#: standalone/drakvpn:1021
-#, c-format
-msgid "Compression algorithm"
-msgstr "সংক্ষিপ্ত করার অ্যালগোরিদম"
-
-#: standalone/drakvpn:1022
-#, c-format
-msgid "deflate"
-msgstr "স্ফীতি হ্রাস"
-
-#: standalone/drakvpn:1029
-#, c-format
-msgid "Remote"
-msgstr "দূরবর্তী"
-
-# সাম
-#: standalone/drakvpn:1030
-#, c-format
-msgid ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specifies the parameters for IKE phase 1 for each remote node.\n"
-"The default port is 500. If anonymous is specified, the state-\n"
-"ments apply to all peers which do not match any other remote\n"
-"directive.\n"
-"\n"
-"Examples: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-msgstr ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"প্রতিটি দূরবর্তী নোডের IKE ১ম পর্যায়ের প্যারামিটার নির্ধারন করে।\n"
-"ডিফল্ট পোর্ট হল ৫০০। যদি Anonymous বলা হয়ে থাকে\n"
-"statement গুলো সব peer এর ক্ষেত্রে প্রযোজ্য যেগুলো আর কোন\n"
-"দূরবর্তী ডিরেক্টিভের সাথে মিলে না।\n"
-"\n"
-"উদাহরন: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-
-#: standalone/drakvpn:1038
-#, c-format
-msgid "Exchange mode"
-msgstr "বিনিময় মোড"
-
-# negotiation = নিস্পত্তি প্রক্রিয়ায়
-# initiator ‌= ইনিশিয়েটর
-#: standalone/drakvpn:1040
-#, c-format
-msgid ""
-"defines the exchange mode for phase 1 when racoon is the\n"
-"initiator. Also it means the acceptable exchange mode\n"
-"when racoon is responder. More than one mode can be\n"
-"specified by separating them with a comma. All of the\n"
-"modes are acceptable. The first exchange mode is what\n"
-"racoon uses when it is the initiator.\n"
-msgstr ""
-"racoon যখন ইনিশিয়েটর তখন ১ম পর্যায়ের আদান‌-প্রদান মোড\n"
-"ঠিক করে। যখন racoon রেসপন্ডার তখন এটি গ্রহনযোগ্য\n"
-"আদান‌-প্রদান মোডও বটে। একের অধিক মোড কমা দিয়ে\n"
-"আলাদা করে দেয়া যেতে পারে। সবগুলো মোডই গ্রহনযোগ্য।\n"
-"ইনিশিয়েটর হিসেবে racoon ১ম আদান‌-প্রদান মোডটি ব্যবহার\n"
-"করে।\n"
-
-#: standalone/drakvpn:1046
-#, c-format
-msgid "Generate policy"
-msgstr "সাধারন নীতি"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "off"
-msgstr "বন্ধ"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "on"
-msgstr "চালু"
-
-# negotiation = নিস্পত্তি প্রক্রিয়ায়
-# initiator ‌= ইনিশিয়েটর
-#: standalone/drakvpn:1048
-#, c-format
-msgid ""
-"This directive is for the responder. Therefore you\n"
-"should set passive on in order that racoon(8) only\n"
-"becomes a responder. If the responder does not have any\n"
-"policy in SPD during phase 2 negotiation, and the direc-\n"
-"tive is set on, then racoon(8) will choice the first pro-\n"
-"posal in the SA payload from the initiator, and generate\n"
-"policy entries from the proposal. It is useful to nego-\n"
-"tiate with the client which is allocated IP address\n"
-"dynamically. Note that inappropriate policy might be\n"
-"installed into the responder's SPD by the initiator. So\n"
-"that other communication might fail if such policies\n"
-"installed due to some policy mismatches between the ini-\n"
-"tiator and the responder. This directive is ignored in\n"
-"the initiator case. The default value is off."
-msgstr ""
-"এই ডিরেক্টিভটি রেসপন্ডারের জন্য। অতএব আপনাকে passive সেটিংটি\n"
-"চালু করতে হবে যাতে racoon(8) শুধু রেসপন্ডার হিসেবে কাজ করে। যদি\n"
-"রেসপন্ডারটির ২য় নিস্পত্তি প্রক্রিয়ায় কোন SPD নীতি না থাকে, এবং\n"
-"ডিরেক্টিভটি চালু থাকে, তবে racoon ইনিশিয়েটর থেকে SA পেলোডের\n"
-"প্রস্তাবটি বেছে নেবে এবং এটি থেকেই নীতিমালা তৈরী করবে। যে ক্লায়েন্টের\n"
-"IP address ডাইনামিক ভাবে দেয়া হয়, তার সাথে নিস্পত্তি করাই শ্রেয়।\n"
-"মনে রাখবেন, ইনিশিয়েটরটি রেসপন্ডারের SPD তে সঠিক নীতি ইনস্টল\n"
-"নাও করতে পারে। এই ইনিশিয়েটর ও রেসপন্ডারের মাঝে নীতির অমিলের\n"
-"কারনে অনান্য যোগাযোগ বিঘ্ন হতে পারে। ইনিশিয়েটরের ক্ষেত্রে এই\n"
-"ডিরেক্টিভটি অগ্রায্য করা হয় যার ডিফল্ট মান বন্ধ। "
-
-#: standalone/drakvpn:1062
-#, c-format
-msgid "Passive"
-msgstr "জড়"
-
-# ##অক্রিয় / স্থির
-#: standalone/drakvpn:1064
-#, c-format
-msgid ""
-"If you do not want to initiate the negotiation, set this\n"
-"to on. The default value is off. It is useful for a\n"
-"server."
-msgstr ""
-"আপনি মধ্যস্থতা আরম্ভ করতে না চান, তাহলে এটাকে চালু অবস্থায়\n"
-"সেট করুন। ডিফল্টভাবে এটা বন্ধ থাকে। এটা সার্ভারের জন্য খুব\n"
-"দরকারী।"
-
-#: standalone/drakvpn:1067
-#, c-format
-msgid "Certificate type"
-msgstr "সার্টিফিকেটের ধরণ"
-
-#: standalone/drakvpn:1069
-#, c-format
-msgid "My certfile"
-msgstr "আমার সার্টফাইল"
-
-#: standalone/drakvpn:1070
-#, c-format
-msgid "Name of the certificate"
-msgstr "সার্টফাইলের নাম"
-
-#: standalone/drakvpn:1071
-#, c-format
-msgid "My private key"
-msgstr "আমার ব্যক্তিগত কী"
-
-#: standalone/drakvpn:1072
-#, c-format
-msgid "Name of the private key"
-msgstr "ব্যক্তিগত কী'র নাম"
-
-#: standalone/drakvpn:1073
-#, c-format
-msgid "Peers certfile"
-msgstr "peers সার্টফাইল"
-
-#: standalone/drakvpn:1074
-#, c-format
-msgid "Name of the peers certificate"
-msgstr "peers সার্টিফিকেটের নাম"
-
-# #Fix me
-#: standalone/drakvpn:1075
-#, c-format
-msgid "Verify cert"
-msgstr "সার্টিফিকেট যাচাই"
-
-#: standalone/drakvpn:1077
-#, c-format
-msgid ""
-"If you do not want to verify the peer's certificate for\n"
-"some reason, set this to off. The default is on."
-msgstr ""
-"আপনি যদি কোন কারণে সঙ্গীর (peer) সার্টিফিকেট যাচাই করতে\n"
-"না চান, তাহলে এটাকে বন্ধ হিসেবে সেট করুন। তবে ডিফল্ট হিসেবে এটি চালু অবস্থায় থাকে।"
-
-# # Fix me
-#: standalone/drakvpn:1079
-#, c-format
-msgid "My identifier"
-msgstr "আমার সনাক্রকারক"
-
-#: standalone/drakvpn:1080
-#, c-format
-msgid ""
-"specifies the identifier sent to the remote host and the\n"
-"type to use in the phase 1 negotiation. address, FQDN,\n"
-"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
-"they are used like:\n"
-"\tmy_identifier address [address];\n"
-"\t\tthe type is the IP address. This is the default\n"
-"\t\ttype if you do not specify an identifier to use.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tthe type is a USER_FQDN (user fully-qualified\n"
-"\t\tdomain name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tthe type is a FQDN (fully-qualified domain name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tthe type is a KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tthe type is an ASN.1 distinguished name. If\n"
-"\t\tstring is omitted, racoon(8) will get DN from\n"
-"\t\tSubject field in the certificate.\n"
-"\n"
-"Examples: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-msgstr ""
-
-#: standalone/drakvpn:1100
-#, c-format
-msgid "Peers identifier"
-msgstr "সঙ্গী সনাক্তকারক"
-
-# ##সংগী/সঙ্গী নির্দেশক
-#: standalone/drakvpn:1101
-#, c-format
-msgid "Proposal"
-msgstr "প্রস্তাব"
-
-#: standalone/drakvpn:1103
-#, c-format
-msgid ""
-"specify the encryption algorithm used for the\n"
-"phase 1 negotiation. This directive must be defined. \n"
-"algorithm is one of the following: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For other transforms, this statement should not be used."
-msgstr ""
-"phase ১ নেগোশিয়েশনের জন্য ব্যবহৃত encryption অ্যালগোরিদম নির্দিষ্ট করুন.\n"
-"এই আদেশটি অবশ্যই বলা থাকবে।\n"
-"অ্যালগোরিদম নিচের যেকোন একটি: \n"
-"\n"
-"oakley এর জন্য DES, 3DES, blowfish, cast128 ।\n"
-"\n"
-"অন্যান্য রুপান্তরের জন্য, এই মন্তব্য ব্যবহৃত হবে না।"
-
-#: standalone/drakvpn:1110
-#, c-format
-msgid "Hash algorithm"
-msgstr "হ্যাশ অ্যালগোরিদম"
-
-#: standalone/drakvpn:1112
-#, c-format
-msgid "DH group"
-msgstr "DH গ্রুপ"
-
-#: standalone/drakvpn:1119
-#, c-format
-msgid "Command"
-msgstr "কমান্ড"
-
-#: standalone/drakvpn:1120
-#, c-format
-msgid "Source IP range"
-msgstr "আই-পি range এর উত্‍স"
-
-#: standalone/drakvpn:1121
-#, c-format
-msgid "Destination IP range"
-msgstr "আই-পি range এর গন্তব্য"
-
-#: standalone/drakvpn:1122
-#, c-format
-msgid "Upper-layer protocol"
-msgstr "উপরের স্তরের প্রোটোকল"
-
-#: standalone/drakvpn:1122 standalone/drakvpn:1129
-#, c-format
-msgid "any"
-msgstr "যেকোন"
-
-#: standalone/drakvpn:1124
-#, c-format
-msgid "Flag"
-msgstr "ফ্ল্যাগ"
-
-#: standalone/drakvpn:1125
-#, c-format
-msgid "Direction"
-msgstr "গতিপথ"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "IPsec policy"
-msgstr "Ipsec নীতি"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "ipsec"
-msgstr "ipsec"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "discard"
-msgstr "অপ্রোজনীয়"
-
-# ##বাতিল
-#: standalone/drakvpn:1129
-#, c-format
-msgid "Mode"
-msgstr "মোড"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "tunnel"
-msgstr "টানেল"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "transport"
-msgstr "বাহন"
-
-#: standalone/drakvpn:1131
-#, c-format
-msgid "Source/destination"
-msgstr "উত্‍স/গন্তব্য"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "require"
-msgstr "প্রয়োজন"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "default"
-msgstr "ডিফল্ট"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "use"
-msgstr "ব্যবহার"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "unique"
-msgstr "অদ্বিতীয়"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (broadcast)"
-msgstr "ইউএসএ (ব্রডকাষ্ট)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable)"
-msgstr "ইউএসএ (কেবল)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "ইউএসএ (কেবল-hrc)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "Canada (cable)"
-msgstr "কানাডা (কেবল)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "জাপান (ব্রডকাষ্ট)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (cable)"
-msgstr "জাপান (কেবল)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "China (broadcast)"
-msgstr "কানাডা (ব্রডকাষ্ট)"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "West Europe"
-msgstr "পশ্চিম ইউরোপ"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "East Europe"
-msgstr "পূর্ব ইউরোপ"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "France [SECAM]"
-msgstr "ফ্রান্স [SECAM]"
-
-#: standalone/drakxtv:48
-#, c-format
-msgid "Newzealand"
-msgstr "নিউজিল্যান্ড"
-
-#: standalone/drakxtv:51
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "অস্ট্রেলিয়ান Optus ক্যাবল টিভি"
-
-#: standalone/drakxtv:85
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"অনুগ্রহ করে,\n"
-"আপনার টিভি norm এবং দেশ টাইপ করুন"
-
-#: standalone/drakxtv:87
-#, c-format
-msgid "TV norm:"
-msgstr "টিভির ধরন:"
-
-#: standalone/drakxtv:88
-#, c-format
-msgid "Area:"
-msgstr "জায়গা:"
-
-#: standalone/drakxtv:93
-#, c-format
-msgid "Scanning for TV channels in progress..."
-msgstr "টিভি চ্যানেলের খোঁজে উন্নতি হচ্ছে ..."
-
-#: standalone/drakxtv:103
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "টিভি চ্যানেলের খোঁজ চলছে"
-
-#: standalone/drakxtv:107
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "টিভি চ্যানেলের খোঁজ করার সময় একটি ত্রুটি হয়েছে"
-
-# আমার মত করে লিখলাম। মাইন্ড করবেননা
-#: standalone/drakxtv:110
-#, c-format
-msgid "Have a nice day!"
-msgstr "একটি সুন্দর দিনের শুভেচ্ছা!"
-
-#: standalone/drakxtv:111
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "আপনি এখন xawtv (X উইন্ডোর মধ্যে!) চালাতে পারবেন !\n"
-
-#: standalone/drakxtv:149
-#, c-format
-msgid "No TV Card detected!"
-msgstr "কোন টিভি কার্ড পাওয়া যায় নি!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakxtv:151
-#, c-format
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"আপনি মেশিনে কোন টিভি কার্ড পাওয়া যায় নি। অনুগ্রহ করে পরীক্ষা করুন যে লিনাক্স-"
-"সমর্থিত ভিডিও/টিভি কার্ড সঠিকভাবে সংযুক্ত আছে।\n"
-"\n"
-"\n"
-"আপনি আমাদের হার্ডওয়্যার ডাটাবেজে ঘুরে আসতে পারেন:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/finish-install:42 standalone/keyboarddrake:30
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "অনুগ্রহ করে আপনার কী-বোর্ড লেআউট পছন্দ করুন।"
-
-#: standalone/harddrake2:25
-#, c-format
-msgid "Alternative drivers"
-msgstr "বিকল্প ড্রাইভার"
-
-#: standalone/harddrake2:26
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "এই সাউন্ড কার্ডের জন্য বিকল্প ড্রাইভারের তালিকা"
-
-#: standalone/harddrake2:29
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-"এটা হচ্ছে ফিজিকাল বাস (physical bas) যেখানে যন্ত্রগুলো যুক্ত থাকে (যেমন: পি-সি-আই, "
-"ইউএসবি, ...)"
-
-#: standalone/harddrake2:31 standalone/harddrake2:146
-#, c-format
-msgid "Bus identification"
-msgstr "বাস পরিচিতি"
-
-#: standalone/harddrake2:32
-#, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
-msgstr ""
-"- পিসিআই এবং ইউএসবি যন্ত্র: এটা নির্মাতা, যন্ত্র, সহযোগী নির্মাতা এবং সহযোগী যন্ত্র "
-"পিসিআই/ইউএসবি আই-ডি'র তালিকা করে"
-
-#: standalone/harddrake2:35
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- pci যন্ত্র: এটা এই কার্ডের pci স্লট, যন্ত্র এবং ফাংশন দেয়\n"
-"- eide যন্ত্র: যন্ত্রটি হয় slave অথবা master যন্ত্র\n"
-"- scsi যন্ত্র: scsi bus এবং scsi যন্ত্রের আই-ডি"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "Drive capacity"
-msgstr "ড্রাইভের ক্ষমতা"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr "ড্রাইভের বিশেষ ক্ষমতা (বার্নিং ক্ষমতা বা DVD সাপোর্ট)"
-
-#: standalone/harddrake2:39
-#, c-format
-msgid "this field describes the device"
-msgstr "এই ফিল্ড যন্ত্রগুলোকে বর্ণনা করে"
-
-#: standalone/harddrake2:40
-#, c-format
-msgid "Old device file"
-msgstr "পুরাতন যন্ত্র ফাইল"
-
-#: standalone/harddrake2:41
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "পুরাতন স্থির যন্ত্রের নাম dev প্যাকেজে ব্যবহৃত হয়"
-
-#: standalone/harddrake2:42
-#, c-format
-msgid "New devfs device"
-msgstr "নতুন devfs যন্ত্র"
-
-#: standalone/harddrake2:43
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "কোর কার্ণেল devfs কর্তৃক তৈরীকৃত নতুন গতিশীল যন্ত্রের নাম"
-
-#. -PO: here "module" is the "jargon term" for a kernel driver
-#: standalone/harddrake2:46
-#, c-format
-msgid "Module"
-msgstr "মডিউল"
-
-#: standalone/harddrake2:46
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "জীএনইউ(GNU)/লিনাক্স কার্ণেলের মডিউল যা যন্ত্রপাতি ব্যবহার করে"
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "Extended partitions"
-msgstr "বর্ধিত পার্টিশনসমুহ"
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "the number of extended partitions"
-msgstr "বর্ধিত পার্টিশনসমুহের সংখ্যা"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Geometry"
-msgstr "জ্যামিতি"
-
-# #Geometry
-#: standalone/harddrake2:48
-#, c-format
-msgid "Cylinder/head/sectors geometry of the disk"
-msgstr "ডিস্কের সিলিন্ডার/হেড/সেক্টর জ্যামিতি"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "Disk controller"
-msgstr "ডিস্ক নিয়ন্ত্রক"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "the disk controller on the host side"
-msgstr "হোস্টের দিক্‌কার ডিস্ক নিয়ন্ত্রক"
-
-#: standalone/harddrake2:50
-#, c-format
-msgid "class of hardware device"
-msgstr "হার্ডওয়ার যন্ত্রের শ্রেণী"
-
-#: standalone/harddrake2:51 standalone/harddrake2:83
-#: standalone/printerdrake:224
-#, c-format
-msgid "Model"
-msgstr "মডেল"
-
-#: standalone/harddrake2:51
-#, c-format
-msgid "hard disk model"
-msgstr "হার্ড ডিস্কের মডেল"
-
-#: standalone/harddrake2:52
-#, c-format
-msgid "network printer port"
-msgstr "নেটওয়ার্ক প্রিন্টার পোর্ট"
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "Primary partitions"
-msgstr "প্রাইমারী পার্টিশনসমূহ"
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "the number of the primary partitions"
-msgstr "প্রাইমারী পার্টিশনসমুহের সংখ্যা"
-
-#: standalone/harddrake2:54
-#, c-format
-msgid "the vendor name of the device"
-msgstr "ডিভাইস নির্মাতার নাম"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "Bus PCI #"
-msgstr "বাস পিসিআই #"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "the PCI bus on which the device is plugged"
-msgstr "যেই যন্ত্রটি যুক্ত সেখানে পিসিআই বাস"
-
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device #"
-msgstr "পিসিআই ডিভাইস #"
-
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device number"
-msgstr "পিসিআই ডিভাইস নম্বর"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function #"
-msgstr "পিসিআই ফাংশন #"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function number"
-msgstr "পিসিআই ফাংশন নম্বর"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "Vendor ID"
-msgstr "পরিবেশক আইডি"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "this is the standard numerical identifier of the vendor"
-msgstr "এটা হচ্ছে বিক্রেতার আদর্শ সংখ্যাভিত্তিক চিহ্নিতকারক"
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "Device ID"
-msgstr "ডিভাইস আইডি:"
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "this is the numerical identifier of the device"
-msgstr "এটা হচ্ছে যন্ত্রটির সংখ্যাভিত্তিক চিহ্নিতকারক"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "Sub vendor ID"
-msgstr "সাব ভেন্ডর আইডি"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "this is the minor numerical identifier of the vendor"
-msgstr "এটা হচ্ছে যন্ত্রটির ছোটখাটমানের সংখ্যাভিত্তিক চিহ্নিতকারক"
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "Sub device ID"
-msgstr "সাব ডিভাইস আইডি"
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "this is the minor numerical identifier of the device"
-msgstr "এটা হচ্ছে যন্ত্রটির সংখ্যাভিত্তিক চিহ্নিতকারক"
-
-#: standalone/harddrake2:62
-#, c-format
-msgid "Device USB ID"
-msgstr "ডিভাইস ইউএসবি আইডি"
-
-#: standalone/harddrake2:62
-#, c-format
-msgid ".."
-msgstr ".."
-
-#: standalone/harddrake2:66
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
-
-#: standalone/harddrake2:66
-#, c-format
-msgid ""
-"the GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
-msgstr ""
-"বুট করার সময় গণনাকারী নির্ধারণ করার জন্য জি-এন-ইউ/লিনাক্স কার্ণেলের একটি গণনাকারী "
-"লুপ (loop) চালু করা প্রয়োজন। এটার ফলাফল সি-পি-ইউ'র \"benchmark\" বরাবর bogomips "
-"হিসেবে জমা থাকে।"
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "Cache size"
-msgstr "ক্যাশ সাইজ"
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "সি-পি-ইউ'র (দ্বিতীয় লেভেল) আকার"
-
-#. -PO: here "comas" is the medical coma, not the lexical coma!!
-#: standalone/harddrake2:70
-#, c-format
-msgid "Coma bug"
-msgstr "Coma ত্রুটি"
-
-#: standalone/harddrake2:70
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "যেখানে এই সি-পি-ইউ'র Cyrix ৬x৮৬ Coma ত্রুটি আছে"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "Cpuid family"
-msgstr "Cpuid পরিবার"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "cpu এর পরিবার (যেমন: i686 শ্রেনীর জন্য ৬)"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "Cpuid level"
-msgstr "Cpuid লেভেল"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "তথ্যসংক্রান্ত লেভেল cpuid তথ্যের মধ্য দিয়ে পাওয়া যাবে"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "ফ্রিকোয়েন্সী (MHz)"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr ""
-"সি-পি-ইউ ফ্রিকোয়েন্সি মেগাহার্টজে (মেগাহার্টজ যা হচ্ছে প্রতি সেকেন্ডে সি-পি-ইউ "
-"কতগুলো আদেশ সম্পাদন করতে সক্ষম)"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "Flags"
-msgstr "ফ্ল্যাগ"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "কার্ণেলের দ্বারা রিপোর্টকৃত CPU ফ্ল্যাগ"
-
-#: standalone/harddrake2:75
-#, c-format
-msgid "Fdiv bug"
-msgstr "Fdiv ত্রুটি"
-
-#: standalone/harddrake2:76
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
-"প্রথম দিককার প্রস্তুতকৃত ইন্টেল পেন্টিয়াম চিপে তাদের দশমিক সংখ্যার প্রসেসরে কিছু ত্রুটি "
-"আছে যেগুলো যথাযথভাবে দশমিক সংখ্যার ভাগ করতে পারত না (FDIV)"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "Is FPU present"
-msgstr "FPU কি উপস্থিত আছে"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "হ্যা তার মানে প্রসেসরের একটি পাটীগাণিতিক (arithmatic) কো-প্রসেসর আছে"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "যখন FPU এর একটি irq ভেক্টর আছে"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
-"হ্যা তার মানে পাটীগাণিতিক (arithmatic) কো-প্রসেসরের সাথে ব্যতিক্রমি একটি ভেক্টর "
-"যুক্ত আছে"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "F00f bug"
-msgstr "F00f ত্রুটি"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
-"প্রথম দিককার পেন্টিয়ামগুলো ত্রুটিযুক্ত এবং স্থির হয়ে যায় যখন তা F00F বাইটকোড ডিকোড "
-"করে"
-
-#: standalone/harddrake2:80
-#, c-format
-msgid "Halt bug"
-msgstr "ত্রুটি থামাও"
-
-#: standalone/harddrake2:81
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
-"প্রথম দিক্‌কার কিছু i486DX-100 চিপ \"থামো\" আদেশ ব্যবহৃত হওয়ার পর আর স্বাভাবিক "
-"অবস্থায় ফিরতে পারে না"
-
-#: standalone/harddrake2:82
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "cpu এর সাব-জেনারেশন"
-
-#: standalone/harddrake2:83
-#, c-format
-msgid "generation of the cpu (eg: 8 for Pentium III, ...)"
-msgstr "cpu এর জেনারেশন (যেমন: পেন্টিয়াম ৩ এর জন্য ৮, ...)"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "Model name"
-msgstr "মডেলের নাম"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "cpu এর অফিসিয়াল নির্মাতার নাম"
-
-#: standalone/harddrake2:85
-#, c-format
-msgid "the name of the CPU"
-msgstr "CPU এর নাম"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "Processor ID"
-msgstr "প্রসেসর আইডি"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "the number of the processor"
-msgstr "প্রসেসর নম্বর"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "Model stepping"
-msgstr "মডেল পদক্ষেপ"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "সি-পি-ইউ'র পদক্ষেপ (সাব মডেল (জেনারেশন) নম্বর)"
-
-#: standalone/harddrake2:88
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "প্রসেসর নির্মাতার নাম"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid "Write protection"
-msgstr "লেখা প্রতিরোধ"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid ""
-"the WP flag in the CR0 register of the cpu enforce write protection at the "
-"memory page level, thus enabling the processor to prevent unchecked kernel "
-"accesses to user memory (aka this is a bug guard)"
-msgstr ""
-"সিপিইউ'র CR0 রেজিস্টারে থাকা WP ফ্ল্যাগ জোর করে মেমরি পেজ লেভেলে কোন কিছু লেখা "
-"প্রতিরোধ করে, এটা প্রসেসরকে পরীক্ষা না করা কার্নেলকে ব্যবহারকারীর মেমরিতে প্রবেশ "
-"প্রতিরোধ করে (aka এটা একটি ত্রুটি বিরুদ্ধ পাহারাদার)"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "Floppy format"
-msgstr "ফ্লপি ফরম্যাট"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "ড্রাইভ সমর্থিত ফ্লপির ফরম্যাট"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "Channel"
-msgstr "চ্যানেল"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "EIDE/SCSI চ্যানেল"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "Disk identifier"
-msgstr "ডিস্ক চিহ্নিতকারক"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "usually the disk serial number"
-msgstr "ডিস্কের স্বাভাবিক ধারাবাহিক সংখ্যা"
-
-#: standalone/harddrake2:99
-#, c-format
-msgid "Logical unit number"
-msgstr "লজিকাল ইউনিট সংখ্যা"
-
-#: standalone/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"
-"এবং একটি লজিকাল ইউনিট সংখ্যা কর্তৃক অদ্বিতীয়ভাবে চিহ্নিত"
-
-# সাম
-#. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...)
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size"
-msgstr "ইনস্টলপরবর্তী আকার"
-
-# সাম
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size of the memory bank"
-msgstr "মেমরী ব্যংকটির ইনস্টকৃত আকার"
-
-# সাম
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled Size"
-msgstr "সক্রিয়কৃত আকার"
-
-# সাম
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled size of the memory bank"
-msgstr "মেমরী ব্যংকের সক্রিয়কৃত আকার"
-
-# সাম
-#: standalone/harddrake2:108
-#, c-format
-msgid "type of the memory device"
-msgstr "মেমরী ডিভাইসের ধরন"
-
-# সাম
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed"
-msgstr "গতি"
-
-# সাম
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed of the memory bank"
-msgstr "মেমরী ব্যংকের গতি"
-
-# সাম
-#: standalone/harddrake2:110
-#, c-format
-msgid "Bank connections"
-msgstr "ব্যাংক সংযোগসমূহ"
-
-# সাম: নাম, উপাধি, ধরন?
-#: standalone/harddrake2:111
-#, c-format
-msgid "Socket designation of the memory bank"
-msgstr "মেমরী ব্যংকটির সকেটের নাম"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid "Device file"
-msgstr "ডিভাইস ফাইল"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid ""
-"the device file used to communicate with the kernel driver for the mouse"
-msgstr "মাউসের জন্য কার্ণেল ড্রাইভারের সাথে যোগাযোগে ব্যবহৃত ডিভাইস ফাইল"
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "Emulated wheel"
-msgstr "সমকক্ষ চাকা"
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "whether the wheel is emulated or not"
-msgstr "চাকা সমকক্ষ হবে কিংবা হবে না"
-
-#: standalone/harddrake2:117
-#, c-format
-msgid "the type of the mouse"
-msgstr "মাউসের ধরণ"
-
-#: standalone/harddrake2:118
-#, c-format
-msgid "the name of the mouse"
-msgstr "মাউসের নাম"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "Number of buttons"
-msgstr "বাটনের নম্বর"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "মাউসের বাটন সংখ্যা"
-
-#: standalone/harddrake2:120
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "মাউসটি যে বাসে সংযুক্ত তার ধরণ"
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "Mouse protocol used by X11"
-msgstr "X11 কর্তৃক ব্যবহৃত মাউস প্রোটোকল"
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "the protocol that the graphical desktop use with the mouse"
-msgstr "মাউসের সাথে গ্রাফিকাল ডেস্কটপ ব্যবহারের প্রোটোকল"
-
-#: standalone/harddrake2:128 standalone/harddrake2:137
-#: standalone/harddrake2:144 standalone/harddrake2:152
-#: standalone/harddrake2:341
-#, c-format
-msgid "Identification"
-msgstr "শনাক্তকারন"
-
-#: standalone/harddrake2:129 standalone/harddrake2:145
-#, c-format
-msgid "Connection"
-msgstr "সংযোগ"
-
-#: standalone/harddrake2:138
-#, c-format
-msgid "Performances"
-msgstr "সম্পাদন কার্য"
-
-#: standalone/harddrake2:139
-#, c-format
-msgid "Bugs"
-msgstr "প্রোগ্রাম ত্রুটিসমূহ"
-
-# ##বাগ সমূহ
-#: standalone/harddrake2:140
-#, c-format
-msgid "FPU"
-msgstr "এফপিউ"
-
-#: standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "ডিভাইস"
-
-#: standalone/harddrake2:148
-#, c-format
-msgid "Partitions"
-msgstr "পার্টিশনসমূহ"
-
-#: standalone/harddrake2:153
-#, c-format
-msgid "Features"
-msgstr "বৈশিষ্ট্যসমূহ"
-
-#. -PO: please keep all "/" characters !!!
-#: standalone/harddrake2:176 standalone/logdrake:76
-#: standalone/printerdrake:146 standalone/printerdrake:159
-#: standalone/printerdrake:171
-#, c-format
-msgid "/_Options"
-msgstr "/অপশন (_ও)"
-
-#: standalone/harddrake2:177 standalone/harddrake2:202 standalone/logdrake:78
-#: standalone/printerdrake:172 standalone/printerdrake:174
-#: standalone/printerdrake:177 standalone/printerdrake:179
-#, c-format
-msgid "/_Help"
-msgstr "/সাহায্য _য"
-
-#: standalone/harddrake2:181
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/স্বয়ংক্রিয় ছাপাযন্ত্র"
-
-# ##msgstr "/স্বয়ংক্রিয় প্রিন্টার"
-#: standalone/harddrake2:182
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/স্বয়ংক্রিয় মডেম (_ম)"
-
-#: standalone/harddrake2:183
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/স্বয়ংক্রিয় জায (jaz) ড্রাইভ (_J)"
-
-#: standalone/harddrake2:184
-#, c-format
-msgid "/Autodetect parallel _zip drives"
-msgstr ""
-
-#: standalone/harddrake2:191 standalone/printerdrake:152
-#, c-format
-msgid "/_Quit"
-msgstr "/পরিত্যাগ (_প)"
-
-#: standalone/harddrake2:204
-#, c-format
-msgid "/_Fields description"
-msgstr "/ফিল্ডের বর্ণনা (_ফ)"
-
-#: standalone/harddrake2:206
-#, c-format
-msgid "Harddrake help"
-msgstr "হার্ডড্রেকের সাহায্য"
-
-#: standalone/harddrake2:215
-#, 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 ""
-"কখনো যদি কোন যন্ত্র চিহ্নিত করে থাকেন, তাহলে আপনি ডান ফ্রেমে\"তথ্য\" যন্ত্র সম্পর্কিত "
-"তচথ্য দেখতে সমর্থ হবেন"
-
-#: standalone/harddrake2:221 standalone/printerdrake:177
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_বাগ রিপোর্ট করো"
-
-#: standalone/harddrake2:223 standalone/printerdrake:179
-#, c-format
-msgid "/_About..."
-msgstr "/_সম্বন্ধে..."
-
-#: standalone/harddrake2:224
-#, c-format
-msgid "About Harddrake"
-msgstr "হার্ডড্রেক সম্পর্কে"
-
-# সাম
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/harddrake2:226
-#, c-format
-msgid ""
-"This is HardDrake, a %s hardware configuration tool.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-msgstr ""
-"এটা হচ্ছে HardDrake, %s এর একটি হার্ডওয়্যার কনফিগারেশন টুল।\n"
-"<span foreground=\"royalblue3\">সংস্করণ:</span> %s\n"
-"<span foreground=\"royalblue3\">লেখক:</span> থিয়েরি ভিগ্‌নদ &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-
-#: standalone/harddrake2:242
-#, c-format
-msgid "Harddrake2"
-msgstr "হার্ডড্রেক২"
-
-#: standalone/harddrake2:272
-#, c-format
-msgid "Detected hardware"
-msgstr "সনাক্তকৃত হার্ডওয়্যার"
-
-#: standalone/harddrake2:277
-#, c-format
-msgid "Configure module"
-msgstr "মডিউল কনফিগার করো"
-
-#: standalone/harddrake2:284
-#, c-format
-msgid "Run config tool"
-msgstr "কনফিগ টুল চালাও"
-
-#: standalone/harddrake2:308
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
-"বামপাশের ট্রীতে কোন একটি যন্ত্রের উপর ক্লিক করুন এখানে তার সম্পর্কে তথ্য দেখার জন্য।"
-
-#: standalone/harddrake2:329 standalone/printerdrake:306
-#: standalone/printerdrake:320
-#, c-format
-msgid "Unknown"
-msgstr "অজানা"
-
-#: standalone/harddrake2:349
-#, c-format
-msgid "Misc"
-msgstr "আনুসাঙ্গিক"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "secondary"
-msgstr "মাধ্যমিক"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "primary"
-msgstr "প্রাইমারী"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "burner"
-msgstr "বার্ণার"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "DVD"
-msgstr "DVD"
-
-#: standalone/harddrake2:511
-#, c-format
-msgid ""
-"The following devices needs proprietary drivers or firmwares in order to "
-"operate smoothly. The appropriate packages can be retrieved from the "
-"Mandriva Club. Do you want to subscribe to the Mandriva Club?"
-msgstr ""
-
-#: standalone/keyboarddrake:45
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "আপনি কি কনসোলে ব্যাকস্পেসকে ডিলিট হিসাবে কাজ করাতে চান?"
-
-# সাম
-#: standalone/localedrake:38
-#, c-format
-msgid "LocaleDrake"
-msgstr "LocaleDrake"
-
-#: standalone/localedrake:44
-#, 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"
-#: standalone/localedrake:47 standalone/scannerdrake:135
-#, c-format
-msgid ", "
-msgstr ", "
-
-#: standalone/localedrake:55
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-"পরিবর্তন সাধিত হয়েছে, কিন্তু কার্যকরী হবার জন্য আপনাকে অবশ্যই রি-ষ্টার্ট করতে হবে"
-
-#: standalone/logdrake:49
-#, c-format
-msgid "Mandriva Linux Tools Logs"
-msgstr "Mandriva Linux টুলসমুহের লগ"
-
-# ##যন্ত্রপাতি
-# Logdrake-এর কোন বাংলা হবে বলে আমার মনে হয়না।
-#: standalone/logdrake:50
-#, c-format
-msgid "Logdrake"
-msgstr "Logdrake"
-
-#: standalone/logdrake:63
-#, c-format
-msgid "Show only for the selected day"
-msgstr "শুধুমাত্র নির্বাচিত দিনসমূহে দেখাবে"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "/File/_New"
-msgstr "/File/_নতুন"
-
-# X11 keysyms must be used here;
-# bengali letter "ন" is 0x10009a8
-#: standalone/logdrake:70
-#, c-format
-msgid "<control>N"
-msgstr "<control>0x10009a8"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "/File/_Open"
-msgstr "/File/_খোলো"
-
-# X11 keysyms must be used here;
-# bengali letter "ও" is 0x1000993
-#: standalone/logdrake:71
-#, c-format
-msgid "<control>O"
-msgstr "<control>0x1000993"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "/File/_Save"
-msgstr "/ফাইল/সংরক্ষণ (_স)"
-
-# X11 keysyms must be used here;
-# bengali letter "এ" is 0x100098f
-#: standalone/logdrake:72
-#, c-format
-msgid "<control>S"
-msgstr "<control>0x100098f"
-
-#: standalone/logdrake:73
-#, c-format
-msgid "/File/Save _As"
-msgstr "/ফাইল/সংরক্ষণের রূপ (_র)"
-
-#: standalone/logdrake:74
-#, c-format
-msgid "/File/-"
-msgstr "/ফাইল/-"
-
-#: standalone/logdrake:77
-#, c-format
-msgid "/Options/Test"
-msgstr "/অপশন/বাছাই"
-
-#: standalone/logdrake:79
-#, c-format
-msgid "/Help/_About..."
-msgstr "/সাহায্য/_সম্বন্ধে..."
-
-#: standalone/logdrake:108
-#, c-format
-msgid ""
-"_:this is the auth.log log file\n"
-"Authentication"
-msgstr "বিশুদ্ধতা"
-
-#: standalone/logdrake:109
-#, c-format
-msgid ""
-"_:this is the user.log log file\n"
-"User"
-msgstr "ব্যবহারকারী"
-
-#: standalone/logdrake:110
-#, c-format
-msgid ""
-"_:this is the /var/log/messages log file\n"
-"Messages"
-msgstr "বার্তাসমূহ"
-
-#: standalone/logdrake:111
-#, c-format
-msgid ""
-"_:this is the /var/log/syslog log file\n"
-"Syslog"
-msgstr "Syslog"
-
-#: standalone/logdrake:115
-#, c-format
-msgid "search"
-msgstr "খোঁজ"
-
-#: standalone/logdrake:127
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "আপনার লগ পর্যবেক্ষন করার একটি টুল"
-
-#: standalone/logdrake:128 standalone/net_applet:347 standalone/net_monitor:93
-#, c-format
-msgid "Settings"
-msgstr "সেটিং"
-
-#: standalone/logdrake:133
-#, c-format
-msgid "Matching"
-msgstr "মিলানো"
-
-#: standalone/logdrake:134
-#, c-format
-msgid "but not matching"
-msgstr "কিন্তু মিলছে না"
-
-#: standalone/logdrake:138
-#, c-format
-msgid "Choose file"
-msgstr "ফাইল পছন্দ করো"
-
-#: standalone/logdrake:150
-#, c-format
-msgid "Calendar"
-msgstr "কেলেন্ডার"
-
-#: standalone/logdrake:160
-#, c-format
-msgid "Content of the file"
-msgstr "ফাইলের সূচী"
-
-#: standalone/logdrake:164 standalone/logdrake:401
-#, c-format
-msgid "Mail alert"
-msgstr "মেইল সংকেত"
-
-#: standalone/logdrake:171
-#, c-format
-msgid "The alert wizard has failed unexpectedly:"
-msgstr "সংকেত সাহায্যকারীটি অনাকাঙ্খিতভাবে বিফল হয়েছে:"
-
-#: standalone/logdrake:224
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "অনুগ্রহ করে অপেক্ষা করুন, ফাইলের শব্দ বিশ্লেষণ হচ্ছে: %s"
-
-#: standalone/logdrake:379
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "এ্যপাচী ওয়াল্ড ওয়াইড ওয়েব সার্ভার"
-
-#: standalone/logdrake:380
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "ডোমেইনের নাম সমাধান (Resolve)...."
-
-#: standalone/logdrake:381
-#, c-format
-msgid "Ftp Server"
-msgstr "Ftp সার্ভার"
-
-#: standalone/logdrake:382
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Postfix মেইল সার্ভার"
-
-#: standalone/logdrake:383
-#, c-format
-msgid "Samba Server"
-msgstr "Samba সার্ভার"
-
-#: standalone/logdrake:385
-#, c-format
-msgid "Webmin Service"
-msgstr "Webmin সার্ভিস"
-
-#: standalone/logdrake:386
-#, c-format
-msgid "Xinetd Service"
-msgstr "Xinetd সার্ভিস"
-
-#: standalone/logdrake:395
-#, c-format
-msgid "Configure the mail alert system"
-msgstr "মেইলের সংকেত সিস্টেমটি কনফিগার করো"
-
-#: standalone/logdrake:396
-#, c-format
-msgid "Stop the mail alert system"
-msgstr "মেইলের সংকেত সিস্টেমটি বন্ধ করো"
-
-#: standalone/logdrake:404
-#, c-format
-msgid "Mail alert configuration"
-msgstr "মেইলের সংকেত কনফিগারেশন"
-
-#: standalone/logdrake:405
-#, 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"
-
-#: standalone/logdrake:415
-#, c-format
-msgid "Services settings"
-msgstr "সার্ভিসের সেটিংসমূহ"
-
-#: standalone/logdrake:416
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr "নির্বাচিত সার্ভিসটি আর না চললে আপনি একটি সংকেত পাবেন"
-
-#: standalone/logdrake:423
-#, c-format
-msgid "Load setting"
-msgstr "সেটিং লোড করো"
-
-#: standalone/logdrake:424
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "এই মানের চাইতের বেশী লোড হলে আপনি একটি সংকেত পাবেন"
-
-#: standalone/logdrake:425
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "লোড"
-
-#: standalone/logdrake:430
-#, c-format
-msgid "Alert configuration"
-msgstr "সংকেত কনফিগারেশন"
-
-#: standalone/logdrake:431
-#, c-format
-msgid "Please enter your email address below "
-msgstr "নীচে আপনার ইমেইল ঠিকানা প্রবেশ করুন"
-
-#: standalone/logdrake:432
-#, c-format
-msgid "and enter the name (or the IP) of the SMTP server you wish to use"
-msgstr ""
-"এবং আপনি যেই SMTP সার্ভারটি ব্যবহার করতে চান তার নাম (অথবা IP ঠিকানা) প্রবেশ করুন"
-
-#: standalone/logdrake:451
-#, c-format
-msgid "The wizard successfully configured the mail alert."
-msgstr "এই সাহায্যকারীটি সঠিকভাবে মেইল এলার্ট কনফিগার করেছে।"
-
-#: standalone/logdrake:457
-#, c-format
-msgid "The wizard successfully disabled the mail alert."
-msgstr "এই সাহায্যকারীটি সঠিকভাবে মেইল এলার্ট নিষ্কৃয় করেছে।"
-
-#: standalone/logdrake:516
-#, c-format
-msgid "Save as.."
-msgstr "...এর মত সেভ করো"
-
-#: standalone/mousedrake:31
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "অনুগ্রহ করে আপনার মাউসের ধরণ পছন্দ করুন।"
-
-#: standalone/mousedrake:44
-#, c-format
-msgid "Emulate third button?"
-msgstr "তৃতীয় বাটনকে অনুকরণ করব?"
-
-#: standalone/mousedrake:61
-#, c-format
-msgid "Mouse test"
-msgstr "মাউস পরীক্ষা"
-
-#: standalone/mousedrake:64
-#, c-format
-msgid "Please test your mouse:"
-msgstr "আপনার মাউস পরীক্ষা করুন:"
-
-#: standalone/net_applet:47
-#, c-format
-msgid "Network is up on interface %s"
-msgstr "নেটওয়ার্ট %s ইন্টারফেস এ চালু আছে"
-
-# সাম
-#. -PO: keep the "Configure Network" substring synced with the "Configure Network" message below
-#: standalone/net_applet:50
-#, c-format
-msgid "Network is down on interface %s. Click on \"Configure Network\""
-msgstr "%s ইন্টারফেসে নেটওয়ার্ক নিষ্ক্রিয়। \"নেটওয়ার্ক কনফিগার\" ক্লিক করুন"
-
-#: standalone/net_applet:56 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Connect %s"
-msgstr "%s সংযুক্ত করো"
-
-#: standalone/net_applet:57 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Disconnect %s"
-msgstr "%s বিচ্ছিন্ন করো"
-
-#: standalone/net_applet:58
-#, c-format
-msgid "Monitor Network"
-msgstr "নেটওয়ার্ক মনিটর"
-
-#: standalone/net_applet:60
-#, c-format
-msgid "Manage wireless networks"
-msgstr ""
-
-#: standalone/net_applet:61
-#, c-format
-msgid "Configure Network"
-msgstr "নেটওয়ার্ক কনফিগার"
-
-#: standalone/net_applet:63
-#, c-format
-msgid "Watched interface"
-msgstr "যে সব ইন্টারফেসের উপর নজর রাখা হয়েছে"
-
-# সাম
-#: standalone/net_applet:93
-#, c-format
-msgid "Profiles"
-msgstr "প্রোফাইলসমূহ"
-
-#: standalone/net_applet:102
-#, c-format
-msgid "Get Online Help"
-msgstr "অনলাইন সহায়তা নিন"
+msgid "Asia"
+msgstr "অষ্ট্রিয়া"
-#: standalone/net_applet:335
+#: timezone.pm:188
#, c-format
-msgid "Interactive Firewall automatic mode"
+msgid "Europe"
msgstr ""
-#: standalone/net_applet:340
-#, c-format
-msgid "Always launch on startup"
-msgstr "সবসময় স্টার্টআপে আরম্ভ করো"
-
-#: standalone/net_applet:344
-#, fuzzy, c-format
-msgid "Wireless networks"
-msgstr "ওয়্যারলেস সংযোগ"
-
-# সাম: not sure
-#: standalone/net_applet:429
+#: timezone.pm:189
#, fuzzy, c-format
-msgid "Interactive Firewall: intrusion detected"
-msgstr "সক্রিয় ফায়ারওয়াল: অনধিকার প্রবেশ সনাক্ত হয়েছে!"
+msgid "North America"
+msgstr "দক্ষিন আফ্রিকা"
-# সাম
-#: standalone/net_applet:442
+#: timezone.pm:190
#, fuzzy, c-format
-msgid "What do you want to do with this attacker?"
-msgstr "আপনি কি আক্রমনকারীকে কালো তালিকাভুক্ত করতে চান?"
-
-# সাম
-#: standalone/net_applet:445
-#, c-format
-msgid "Attack details"
-msgstr "আক্রমনের বিস্তারিত"
-
-# সাম
-#: standalone/net_applet:449
-#, c-format
-msgid "Attack time: %s"
-msgstr "আক্রমনের সময়: %s"
-
-# সাম
-#: standalone/net_applet:450
-#, c-format
-msgid "Network interface: %s"
-msgstr "নেটওয়ার্ক ইন্টারফেস: %s"
-
-# সাম
-#: standalone/net_applet:451
-#, c-format
-msgid "Attack type: %s"
-msgstr "আক্রমনের ধরণ: %s"
-
-# সাম
-#: standalone/net_applet:452
-#, c-format
-msgid "Protocol: %s"
-msgstr "প্রোটোকল: %s"
-
-# সাম
-#: standalone/net_applet:453
-#, c-format
-msgid "Attacker IP address: %s"
-msgstr "আক্রমনকারীর IP অ্যাড্রেস: %s"
-
-# সাম
-#: standalone/net_applet:454
-#, c-format
-msgid "Attacker hostname: %s"
-msgstr "আক্রমনকারীর হোস্টনেম: %s"
-
-# সাম
-#: standalone/net_applet:457
-#, c-format
-msgid "Service attacked: %s"
-msgstr "আক্রান্ত সার্ভিস: %s"
-
-# sam
-#: standalone/net_applet:458
-#, c-format
-msgid "Port attacked: %s"
-msgstr "আক্রান্ত পোর্ট: %s"
-
-# সাম
-#: standalone/net_applet:460
-#, c-format
-msgid "Type of ICMP attack: %s"
-msgstr "ICMP আক্রমনের ধরণ: %s"
-
-# সাম
-#: standalone/net_applet:465
-#, c-format
-msgid "Always blacklist (do not ask again)"
-msgstr "সবসময় কালো তালিকাভুক্ত করো (আর কখনো প্রশ্ন করবে না)"
-
-#: standalone/net_monitor:57 standalone/net_monitor:62
-#, c-format
-msgid "Network Monitoring"
-msgstr "নেটওয়ার্ক পর্যবেক্ষণ"
-
-#: standalone/net_monitor:98
-#, c-format
-msgid "Global statistics"
-msgstr "বিশ্বব্যাপী পরিসংখ্যান"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Instantaneous"
-msgstr "ক্ষণস্থায়ী"
-
-# ##ক্ষণিক
-#: standalone/net_monitor:101
-#, c-format
-msgid "Average"
-msgstr "মোটামুটি"
-
-#: standalone/net_monitor:102
-#, c-format
-msgid ""
-"Sending\n"
-"speed:"
-msgstr ""
-"প্রদানের\n"
-"গতি"
-
-#: standalone/net_monitor:103
-#, c-format
-msgid ""
-"Receiving\n"
-"speed:"
-msgstr ""
-"আদানের\n"
-"গতি"
-
-#: standalone/net_monitor:107
-#, c-format
-msgid ""
-"Connection\n"
-"time: "
-msgstr ""
-"সংযোগ\n"
-"সময়:"
-
-#: standalone/net_monitor:114
-#, c-format
-msgid "Use same scale for received and transmitted"
-msgstr "গ্রহণ এবং পরিবহনের জন্য একই স্কেল ব্যবহার করুন"
-
-#: standalone/net_monitor:133
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "অনুগ্রহ করে অপেক্ষা করুন, আপনার সংযোগ পরীক্ষা করা হচ্ছে..."
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "ইন্টারনেট থেকে বিচ্ছন্ন করা হচ্ছে"
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Connecting to Internet "
-msgstr "ইন্টারনেটে সংযোগ"
-
-#: standalone/net_monitor:226
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "ইন্টরনেট থেকে বিচ্ছন্ন করা যায়নি।"
-
-#: standalone/net_monitor:227
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "ইন্টারনেট থেকে বিচ্ছিন্ন করা হয়েছে।"
-
-#: standalone/net_monitor:229
-#, c-format
-msgid "Connection complete."
-msgstr "সংযোগ সম্পন্ন হয়েছে।"
-
-#: standalone/net_monitor:230
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandriva Linux Control Center."
-msgstr ""
-"কানেকশন হয়নি।\n"
-"ম্যান্ড্রিব -লিনাক্স কন্ট্রোল প্যানেলে আপনার কনফিগারেশন যাচাই করুন।"
-
-#: standalone/net_monitor:335
-#, c-format
-msgid "Color configuration"
-msgstr "কালার কনফিগারেশন"
-
-#: standalone/net_monitor:383 standalone/net_monitor:403
-#, c-format
-msgid "sent: "
-msgstr "প্রেরণ করা হয়েছে:"
-
-#: standalone/net_monitor:390 standalone/net_monitor:407
-#, c-format
-msgid "received: "
-msgstr "গ্রহণ করা হয়েছে:"
-
-#: standalone/net_monitor:397
-#, c-format
-msgid "average"
-msgstr "মোটামুটি"
-
-#: standalone/net_monitor:400
-#, c-format
-msgid "Local measure"
-msgstr "স্থানীয় পরিমাপ"
-
-#: standalone/net_monitor:461
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"ঘোষনা, আরেকটি ইন্টারনেট সংযোগ সনাক্ত হয়েছে, হয়তোবা আপনার নেটওয়ার্ক ব্যবহার করছে"
-
-#: standalone/net_monitor:472
-#, c-format
-msgid "No internet connection configured"
-msgstr "ইন্টরনেট সংযোগ কনফিগার করা নেই"
-
-#: standalone/printerdrake:76
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "ইনস্টলকৃত প্রিন্টারসমূহের ডাটা পড়া হচ্ছে..."
-
-#: standalone/printerdrake:128
-#, c-format
-msgid "%s Printer Management Tool"
-msgstr "%s প্রিন্টার মে"
-
-#: standalone/printerdrake:142 standalone/printerdrake:143
-#: standalone/printerdrake:144 standalone/printerdrake:145
-#: standalone/printerdrake:153 standalone/printerdrake:154
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Actions"
-msgstr "/কাজ (_জ)"
-
-#: standalone/printerdrake:142 standalone/printerdrake:154
-#, c-format
-msgid "/_Add Printer"
-msgstr "/ প্রিন্টার যোগ করো (_য)"
-
-#: standalone/printerdrake:143
-#, c-format
-msgid "/Set as _Default"
-msgstr "/সাধারণ হিসেবে সংরক্ষণ করো (_স)"
-
-#: standalone/printerdrake:144
-#, c-format
-msgid "/_Edit"
-msgstr "/এডিট (_এ)"
-
-#: standalone/printerdrake:145
-#, c-format
-msgid "/_Delete"
-msgstr "/মুছো (_ম)"
-
-#: standalone/printerdrake:146
-#, c-format
-msgid "/_Expert mode"
-msgstr "/দক্ষ মুড (_দ)"
-
-#: standalone/printerdrake:151
-#, c-format
-msgid "/_Refresh"
-msgstr "/রিফ্রেশ (_র)"
-
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/CUPS কনফিগার (_ক)"
+msgid "Oceania"
+msgstr "ম্যাসিডোনিয়া"
-#: standalone/printerdrake:171
+#: timezone.pm:191
#, fuzzy, c-format
-msgid "/Configure _Auto Administration"
-msgstr "দূর-নিয়ন্ত্রিত অ্যাডমিনিস্ট্রেশন"
-
-#: standalone/printerdrake:194
-#, c-format
-msgid "Search:"
-msgstr "খোঁজ:"
-
-#: standalone/printerdrake:197
-#, c-format
-msgid "Apply filter"
-msgstr "ফিল্টার প্রয়োগ করো"
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Def."
-msgstr "বিবরণ"
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Printer Name"
-msgstr "প্রিন্টারের নাম"
-
-#: standalone/printerdrake:224
-#, c-format
-msgid "Connection Type"
-msgstr "কানেকশনের ধরন"
-
-#: standalone/printerdrake:231
-#, c-format
-msgid "Server Name"
-msgstr "সার্ভারের নাম"
-
-#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add Printer"
-msgstr "প্রিন্টার যোগ করো"
-
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "সিস্টেমে একটি নতুন প্রিন্টার যোগ করো"
-
-#. -PO: "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set as default"
-msgstr "সাধারণ হিসেবে সংরক্ষণ করো"
-
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "নির্বাচিত প্রিন্টারটিকে স্বাভাবিক প্রিন্টার হিসেবে সেট করো"
-
-#: standalone/printerdrake:245
-#, c-format
-msgid "Edit selected printer"
-msgstr "নির্বাচিত প্রিন্টার এডিট করো"
-
-#: standalone/printerdrake:248
-#, c-format
-msgid "Delete selected printer"
-msgstr "নির্বাচিত প্রিন্টার মুছে ফেলো"
-
-#: standalone/printerdrake:251
-#, c-format
-msgid "Refresh the list"
-msgstr "লিষ্টটি রিফ্রেশ করো"
-
-#. -PO: "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS"
-msgstr "CPUS কনফিগার করো"
-
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "CPUS প্রিন্টিং সিস্টেম কনফিগার করো"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Enabled"
-msgstr "সক্রিয়"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Disabled"
-msgstr "নিষ্ক্রিয়"
-
-#: standalone/printerdrake:596
-#, c-format
-msgid "Authors: "
-msgstr "লেখকসমূহ:"
-
-# sam: printer?
-#. -PO: here %s is the version number
-#: standalone/printerdrake:606
-#, c-format
-msgid "Printer Management %s"
-msgstr "%s প্রিন্টার ব্যবস্থাপনা"
-
-#: standalone/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 প্যাকেজ ইনস্টল করতে চান?"
-
-#: standalone/scannerdrake:55
-#, c-format
-msgid "Aborting Scannerdrake."
-msgstr "Scannerdrake থেকে বের হচ্ছি।"
-
-#: standalone/scannerdrake:60
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-"Scannerdrake-এর মাধ্যমে একটি স্কেনারকে সেটআপ করার জন্য যেসব প্যাকেজ প্রয়োজন তা "
-"ইনস্টল করা যায়নি।"
-
-#: standalone/scannerdrake:61
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Scannerdrake এখন চালু হবেনা।"
-
-#: standalone/scannerdrake:67 standalone/scannerdrake:508
-#, c-format
-msgid "Searching for configured scanners..."
-msgstr "কনফিগার করা স্কেনারগুলি খোঁজা হচ্ছে ..."
-
-#: standalone/scannerdrake:71 standalone/scannerdrake:512
-#, c-format
-msgid "Searching for new scanners..."
-msgstr "নতুন স্কেনারের জন্য খোঁজ চলছে ..."
-
-#: standalone/scannerdrake:79 standalone/scannerdrake:534
-#, c-format
-msgid "Re-generating list of configured scanners..."
-msgstr "ফনফিগার করা স্কেনারগুলির লিষ্ট পুনরায় তৈরী করা হচ্ছে ..."
-
-#: standalone/scannerdrake:101
-#, c-format
-msgid "The %s is not supported by this version of %s."
-msgstr "%s-টি এই ভার্সনের %s-এ সাপোর্ট করেনা।"
-
-#: standalone/scannerdrake:104
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s-কে %s-এ পাওয়া গ্যাছে, সয়ংক্রিয়ভাবে কনফিগার করবো?"
-
-#: standalone/scannerdrake:116
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr "%s স্কেনার ডাটাবেইজে নেই, মেনুয়ালি কনফিগার করবেন?"
-
-#: standalone/scannerdrake:131
-#, c-format
-msgid "Select a scanner model"
-msgstr "স্কেনারের মডেল সিলেক্স করুন"
-
-#: standalone/scannerdrake:132
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: standalone/scannerdrake:133
-#, c-format
-msgid "Detected model: %s"
-msgstr "সনাক্তকৃত মডেল: %s"
-
-#: standalone/scannerdrake:136
-#, c-format
-msgid "Port: %s"
-msgstr "পোর্ট: %s"
-
-# সাম
-#: standalone/scannerdrake:138 standalone/scannerdrake:141
-#, c-format
-msgid " (UNSUPPORTED)"
-msgstr " (সাপোর্ট করা হয় না)"
-
-# সাম
-#: standalone/scannerdrake:144
-#, c-format
-msgid "The %s is not supported under Linux."
-msgstr "%s টি লিনাক্স সাপোর্ট করেনা।"
-
-#: standalone/scannerdrake:171 standalone/scannerdrake:185
-#, c-format
-msgid "Do not install firmware file"
-msgstr "ফার্মওয়্যার ফাইল ইনস্টল করবেনা"
-
-#: standalone/scannerdrake:175 standalone/scannerdrake:227
-#, c-format
-msgid ""
-"It is possible that your %s needs its firmware to be uploaded everytime when "
-"it is turned on."
-msgstr "হয়তো আপনার %s-এর ফার্মওয়্যার প্রতিবার চালু করার সময় আপলোড করতে হবে।"
-
-#: standalone/scannerdrake:176 standalone/scannerdrake:228
-#, c-format
-msgid "If this is the case, you can make this be done automatically."
-msgstr "তাই যদি হয়, আপনি এটাকে সয়ংক্রিয়ভাবে করাতে পারেন।"
-
-#: standalone/scannerdrake:177 standalone/scannerdrake:231
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware file for your scanner so that it "
-"can be installed."
-msgstr ""
-"আপনাকে আপনার স্কেনারের জন্য ফার্মওয়্যার ফাইলটি সরবরাহ করতে হবে যাতেকরে এটাকে "
-"ইনস্টল করা যায়।"
-
-#: standalone/scannerdrake:178 standalone/scannerdrake:232
-#, 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 ""
-"এই ফাইলটি আপনি স্কেনারের সাথে আসা সিডি অথবে ফ্লপি, অথবা পস্তুতকারাকের ওয়েব সাইট "
-"থেকে, অথবা আপনার উইন্ডোজ পার্টিশন থেকে পেতে পারেন।"
-
-#: standalone/scannerdrake:180 standalone/scannerdrake:239
-#, c-format
-msgid "Install firmware file from"
-msgstr "এখান থেকে ফার্মওয়্যার ফাইল ইনস্টল করো"
-
-#: standalone/scannerdrake:200
-#, c-format
-msgid "Select firmware file"
-msgstr "ফার্মওয়্যার ফাইল সিলেক্ট করুন"
-
-#: standalone/scannerdrake:203 standalone/scannerdrake:262
-#, c-format
-msgid "The firmware file %s does not exist or is unreadable!"
-msgstr "%s ফার্মওয়্যার ফাইলটি উপস্থিত নেই অথবা পড়া যাচ্ছেনা!"
-
-#: standalone/scannerdrake:226
-#, c-format
-msgid ""
-"It is possible that your scanners need their firmware to be uploaded "
-"everytime when they are turned on."
-msgstr "হয়তো আপনার স্কেনারগুলির ফার্মওয়্যার প্রতিবার চালু করার সময় আপলোড করতে হবে।"
-
-#: standalone/scannerdrake:230
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware files for your scanners so that it "
-"can be installed."
-msgstr ""
-"আপনাকে আপনার স্কেনারের জন্য ফার্মওয়্যার ফাইলটগুলি সরবরাহ করতে হবে যাতেকরে এটাকে "
-"ইনস্টল করা যায়।"
-
-#: standalone/scannerdrake:233
-#, 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 ""
-"যদি আপনি এর মধ্যে আপনার স্কেনারের ফার্মওয়্যার ইনস্টল করে থাকেন তাহলে আপনি নতুন "
-"একটি ফার্মওয়্যার ফাইল সরবরাহ করে তা আপডেট করতে পারেন।"
-
-#: standalone/scannerdrake:235
-#, c-format
-msgid "Install firmware for the"
-msgstr "-এর জন্য ফার্মওয়্যার ইনস্টল করো"
-
-#: standalone/scannerdrake:258
-#, c-format
-msgid "Select firmware file for the %s"
-msgstr "%s-এর জন্য একটি ফার্মওয়্যার ফাইল নির্বাচন করুন"
-
-#: standalone/scannerdrake:276
-#, c-format
-msgid "Could not install the firmware file for the %s!"
-msgstr "%s-এর ফার্মওয়্যার ফাইলটি ইনস্টল করা সম্ভব হলোনা!"
-
-#: standalone/scannerdrake:289
-#, c-format
-msgid "The firmware file for your %s was successfully installed."
-msgstr "%s-এর ফার্মওয়্যার ফাইলটি সুষ্ঠভাবে ইনস্টল হয়েছে।"
-
-#: standalone/scannerdrake:299
-#, c-format
-msgid "The %s is unsupported"
-msgstr "%s সাপোর্ট করেনা"
-
-#: standalone/scannerdrake:304
-#, c-format
-msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the %s Control Center in Hardware section."
-msgstr ""
-"Printerdrake-এর মাধ্যমে অবশ্যই %s কনফিগার করতে হবে।\n"
-"আপনি %s কন্ট্রোল সেন্টারের হার্ডওয়্যার সেকশন থেকে printerdrake চালাতে পারেন।"
-
-# সাম
-#: standalone/scannerdrake:322
-#, c-format
-msgid "Setting up kernel modules..."
-msgstr "কার্নেল মডিউল সেট আপ করছি..."
-
-#: standalone/scannerdrake:332 standalone/scannerdrake:339
-#: standalone/scannerdrake:369
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "সয়ংক্রিয়ভাবে বরাদ্দকৃত পোর্টসমূহ সনাক্ত করো"
-
-#: standalone/scannerdrake:334 standalone/scannerdrake:380
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "আপনি একটি ডিভাইস নির্বাচন করুন যেখানে আপনার %s সংযুক্ত আছে"
-
-#: standalone/scannerdrake:335
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(নির্দেশ: প্যারালাল পোর্টগুলি সয়ংক্রিয়ভাবে সনাক্ত হবেনা)"
-
-#: standalone/scannerdrake:337 standalone/scannerdrake:382
-#, c-format
-msgid "choose device"
-msgstr "ডিভাইস পছন্দ করো"
-
-#: standalone/scannerdrake:371
-#, c-format
-msgid "Searching for scanners..."
-msgstr "স্কেনারের খোঁজ করা হচ্ছে..."
-
-# সাম
-#: standalone/scannerdrake:407 standalone/scannerdrake:414
-#, c-format
-msgid "Attention!"
-msgstr "দৃষ্টি আকর্ষণ!"
-
-# সাম
-#: standalone/scannerdrake:408
-#, 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 ""
-"আপনার %s সম্পুর্ন স্বয়ংক্রিয়ভাবে কনফিগার করা যাবে না।\n"
-"\n"
-"নিজ হাতে বিন্যস্ত করা প্রয়োজন। অনুগ্রহ করে /etc/sane.d/%s.conf কনফিগারেশন ফইলটি "
-"সম্পাদন করুন। "
-
-# সাম
-#: standalone/scannerdrake:409 standalone/scannerdrake:418
-#, c-format
-msgid ""
-"More info in the driver's manual page. Run the command \"man sane-%s\" to "
-"read it."
-msgstr ""
-"ড্রইভারের সহায়িকাতে আরও তথ্য পাওয়া যাবে। পড়ার জন্য \"man sane-%s\" কমান্ডটি "
-"চালান।"
-
-# সাম:
-# documents = কাগজপত্র?
-#: standalone/scannerdrake:411 standalone/scannerdrake:420
-#, c-format
-msgid ""
-"After that you may scan documents using \"XSane\" or \"Kooka\" from "
-"Multimedia/Graphics in the applications menu."
-msgstr ""
-"এরপর আপনি এপ্লিকেশন মেনুর মাল্টিমিডিয়া/গ্রাফিক্স থেকে \"XSane\" অথবা \"Kooka\" "
-"ব্যবহার করে আপনার কাগজপত্র স্ক্যান করতে পারেন।"
-
-# সাম
-#: standalone/scannerdrake:415
-#, c-format
-msgid ""
-"Your %s has been configured, but it is possible that additional manual "
-"adjustments are needed to get it to work. "
-msgstr ""
-"আপনার %s কনফিগার করা হয়েছে। কিন্তু এটিকে কাজ করাতে কিছু অংশ নিজ হাতে বিন্যস্ত করা "
-"প্রয়োজন হতে পারে। "
-
-#: standalone/scannerdrake:416
-#, 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 মূল উইন্ডোতে, কনফিগারকৃত স্ক্যানারের তালিকায় না থাকে বা যদি "
-"ঠিক মত কাজ না করে, "
-
-# সাম
-#: standalone/scannerdrake:417
-#, c-format
-msgid "edit the configuration file /etc/sane.d/%s.conf. "
-msgstr "/etc/sane.d/%s.conf কনফিগারেশন ফাইলটি সম্পাদন করুন।"
-
-#: standalone/scannerdrake:423
-#, 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\" ব্যবহার "
-"করে স্কেন করতে পারেন।"
-
-#: standalone/scannerdrake:448
-#, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr ""
-"এই স্কেনারগুলি\n"
-"\n"
-"%s\n"
-"আপনার সিস্টেমে উপলব্ধ রয়েছে।\n"
-
-#: standalone/scannerdrake:449
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr ""
-"এই স্কেনারটি\n"
-"\n"
-"%s\n"
-"আপনার সিস্টেমে উপলব্ধ রয়েছে।\n"
-
-#: standalone/scannerdrake:452 standalone/scannerdrake:455
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "আপনার সিস্টেমে উপলব্ধ কোন স্কেনার এখানে পাওয়া যায়নি।\n"
-
-#: standalone/scannerdrake:469
-#, c-format
-msgid "Search for new scanners"
-msgstr "নতুন স্কেনারসমূহের খোঁজ করো"
-
-# Manually -এর বাংলা মনে নেই ;)
-#: standalone/scannerdrake:475
-#, c-format
-msgid "Add a scanner manually"
-msgstr "মেনুয়ালি একটি স্কেনার যোগ করুন"
-
-#: standalone/scannerdrake:482
-#, c-format
-msgid "Install/Update firmware files"
-msgstr "Firmware ফাইলসমূহ ইনস্টল/আপগ্রেড করো"
-
-#: standalone/scannerdrake:488
-#, c-format
-msgid "Scanner sharing"
-msgstr "স্কেনার শেয়ারিং"
-
-#: standalone/scannerdrake:547 standalone/scannerdrake:712
-#, c-format
-msgid "All remote machines"
-msgstr "দূরবর্ত সমস্থ মেশিনসমূহ"
-
-#: standalone/scannerdrake:559 standalone/scannerdrake:862
-#, c-format
-msgid "This machine"
-msgstr "এই মেশিনে"
-
-#: standalone/scannerdrake:599
-#, 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 ""
-"এই মেশিনের সাথে সংযুক্ত স্কেনারগুলি দূরবর্তী কোন মেশিন বা দূরবর্তী কোন মেশিনের "
-"মাধ্যমে ব্যবহার করা যাবে, আপনি তা এখানে পছন্দ করতে পারেন।"
-
-#: standalone/scannerdrake:600
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"আপনি এখানে সিদ্ধান্তু নিতে পারেন যে দূরবর্তী কোন কম্পিউটারগুলির স্কেনার এখানে বরাদ্দ "
-"থাকবে।"
-
-#: standalone/scannerdrake:603
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr "এই মেশিনের স্কেনারগুলি অন্য কম্পিউটারে বরাদ্দ থাকবে"
-
-#: standalone/scannerdrake:605
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "যেই হোস্টগুলিতে স্কেনার শেয়ার হবে:"
-
-#: standalone/scannerdrake:619
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "রিমোট কম্পিউটারের স্কেনার ব্যবহার করো"
-
-#: standalone/scannerdrake:622
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "এই হোস্টসমূহের স্কেনারগুলি ব্যাবহার করো:"
-
-#: standalone/scannerdrake:649 standalone/scannerdrake:721
-#: standalone/scannerdrake:871
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "লোকাল স্কেনারের শেয়ারিং"
-
-#: standalone/scannerdrake:650
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr "এগুলি সেই মেশিন যেগুলিতে লোকাল ভাবে সংযুক্ত স্কেনার(গুলি) বরাদ্দ থাকবে:"
-
-#: standalone/scannerdrake:661 standalone/scannerdrake:811
-#, c-format
-msgid "Add host"
-msgstr "হোস্ট যোগ করো"
-
-#: standalone/scannerdrake:667 standalone/scannerdrake:817
-#, c-format
-msgid "Edit selected host"
-msgstr "নির্বাচিত হোস্ট এডিট করো"
-
-#: standalone/scannerdrake:676 standalone/scannerdrake:826
-#, c-format
-msgid "Remove selected host"
-msgstr "নির্বাচিত হোস্ট অপসরণ করো"
-
-#: standalone/scannerdrake:700 standalone/scannerdrake:708
-#: standalone/scannerdrake:713 standalone/scannerdrake:759
-#: standalone/scannerdrake:850 standalone/scannerdrake:858
-#: standalone/scannerdrake:863 standalone/scannerdrake:909
-#, c-format
-msgid "Name/IP address of host:"
-msgstr "হোস্টের নাম/IP এড্রেস:"
-
-#: standalone/scannerdrake:722 standalone/scannerdrake:872
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr "একটি লোকাল হোস্ট পছন্দ করুন যেখানে স্কেনারগুলি বরাদ্দ থাকবে:"
-
-#: standalone/scannerdrake:733 standalone/scannerdrake:883
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "আপনাকে অবশ্যই একটি হোস্টের নাম অথবা IP ঠিকানা প্রবেশ করাতে হবে।\n"
-
-#: standalone/scannerdrake:744 standalone/scannerdrake:894
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "লিষ্টে এই হোস্ট আগে থেকেই আছে, এটা আবার যোগ করা যাবেনা।\n"
-
-#: standalone/scannerdrake:799
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "দূরবর্তী স্কেনারসমূহের ব্যাবহার"
-
-#: standalone/scannerdrake:800
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "এগুলিই সেই সমস্থ মেশিন যেগুলি থেকে স্কেনার ব্যবহার করা যাবে:"
-
-#: standalone/scannerdrake:957
-#, 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 প্যাকেজটি ইনস্টল করতে চান?"
-
-#: standalone/scannerdrake:961 standalone/scannerdrake:965
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "আপনার স্কেনার(গুলি) নেটওয়ার্কে বরাদ্দ থাকবে না।"
-
-#: standalone/service_harddrake:113
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "\"%s\" হার্ডওয়্যার শ্রেণীর কিছু ডিভাইস অপসরণ করা হয়েছে:\n"
-
-#: standalone/service_harddrake:114
-#, c-format
-msgid "- %s was removed\n"
-msgstr "- %s অপসারিত হয়েছে\n"
-
-#: standalone/service_harddrake:117
-#, c-format
-msgid "Some devices were added: %s\n"
-msgstr "কিছু ডিভাইস সমূহ যুক্ত করা হয়েছে: %s\n"
-
-#: standalone/service_harddrake:118
-#, c-format
-msgid "- %s was added\n"
-msgstr "- %s যুক্ত করা হয়েছে\n"
-
-#: standalone/service_harddrake:235
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "হার্ডওয়্যারের অনুসন্ধান চলছে"
-
-#: standalone/service_harddrake_confirm:7
-#, c-format
-msgid "Hardware changes in \"%s\" class (%s seconds to answer)"
-msgstr "\"%s\" শ্রেনীতে হার্ডওয়্যারের পরিবর্তন (জবাব দিতে %s সেকেন্ড সময় লেগেছে)"
-
-#: standalone/service_harddrake_confirm:8
-#, c-format
-msgid "Do you want to run the appropriate config tool?"
-msgstr "আপনি কি সঠিক কনফিগ টুল রান করাতে চান?"
-
-#: steps.pm:14
-#, c-format
-msgid "Language"
-msgstr "ভাষা"
-
-#: steps.pm:15
-#, c-format
-msgid "License"
-msgstr "লাইসেন্স"
-
-#: steps.pm:16
-#, c-format
-msgid "Configure mouse"
-msgstr "মাউস কনফিগার করো"
-
-#: steps.pm:17
-#, c-format
-msgid "Hard drive detection"
-msgstr "হার্ড ড্রাইভ সনাক্ত"
-
-#: steps.pm:18
-#, c-format
-msgid "Select installation class"
-msgstr "ইনস্টলেশনের শ্রেনী নির্বাচন করো"
-
-#: steps.pm:19
-#, c-format
-msgid "Choose your keyboard"
-msgstr "তোমার পছন্দের কি-বোর্ড নির্বাচন করো"
-
-#: steps.pm:22
-#, c-format
-msgid "Format partitions"
-msgstr "পার্টিশনসমূহ ফরম্যাট করো"
-
-#: steps.pm:23
-#, c-format
-msgid "Choose packages to install"
-msgstr "ইনস্টলের জন্য প্যাকেজসমূহ পছন্দ করো"
-
-#: steps.pm:24
-#, c-format
-msgid "Install system"
-msgstr "সিস্টেম ইনস্টল"
-
-#: steps.pm:25
-#, c-format
-msgid "Administrator password"
-msgstr "অ্যাডমিনস্ট্রেটর পাসওয়ার্ড"
-
-#: steps.pm:26
-#, c-format
-msgid "Add a user"
-msgstr "একটি ইউজার যোগ করো"
-
-#: steps.pm:27
-#, c-format
-msgid "Configure networking"
-msgstr "নেটওয়ার্কিং কনফিগার"
-
-#: steps.pm:28
-#, c-format
-msgid "Install bootloader"
-msgstr "বুটলোডার ইনস্টল"
-
-#: steps.pm:29
-#, c-format
-msgid "Configure X"
-msgstr "X কনফিগার"
+msgid "South America"
+msgstr "দক্ষিন আফ্রিকা"
-#: steps.pm:31
+#: timezone.pm:200
#, c-format
-msgid "Configure services"
-msgstr "সার্ভিসমূহ কনফিগার"
+msgid "Hong Kong"
+msgstr "হং কং"
-#: steps.pm:32
+#: timezone.pm:237
#, c-format
-msgid "Install updates"
-msgstr "আপডেটসমূহ ইনস্টল"
+msgid "Russian Federation"
+msgstr "রুশ ফেডারেশন"
-#: steps.pm:33
+#: timezone.pm:245
#, c-format
-msgid "Exit install"
-msgstr "ইনস্টল থেকে বাহির"
+msgid "Yugoslavia"
+msgstr "যুগোস্লাভিয়া"
-#: ugtk2.pm:899
+#: ugtk2.pm:788
#, c-format
msgid "Is this correct?"
msgstr "এটা কি সঠিক?"
# সাম
-#: ugtk2.pm:959
+#: ugtk2.pm:848
#, c-format
msgid "No file chosen"
msgstr "কোন ফাইল বেছে নেয়া হয়নি"
# সাম
-#: ugtk2.pm:961
+#: ugtk2.pm:850
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "আপনি একটি ফাইল নির্বাচন করেছেন, ডিরেক্টরি নয়"
# সাম
-#: ugtk2.pm:963
+#: ugtk2.pm:852
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "আপনি একটি ডিরেক্টরি নির্বাচন করেছেন, ফাইল নয়"
# সাম
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such directory"
msgstr "এই নামে কোন ডিরেক্টরি নেই"
# সাম
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such file"
msgstr "এই নামে কোন ফাইল নেই"
-#: ugtk2.pm:1046
+#: ugtk2.pm:933
#, c-format
msgid "Expand Tree"
msgstr "ট্রী প্রসারিত করো"
-#: ugtk2.pm:1047
+#: ugtk2.pm:934
#, c-format
msgid "Collapse Tree"
msgstr "ট্রী সংকীর্ন করো"
-#: ugtk2.pm:1048
+#: ugtk2.pm:935
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "ফ্ল্যাট এবং গ্রুপের শ্রেণীর মধ্যে পরিবর্তন করো"
@@ -26496,1789 +6680,23 @@ msgstr ""
msgid "Installation failed"
msgstr "ইনস্টলেশন ব্যর্থ হয়েছে"
-#~ msgid ""
-#~ "Copyright (C) 2001-2002 by Mandriva \n"
-#~ "\n"
-#~ "\n"
-#~ " DUPONT Sebastien (original version)\n"
-#~ "\n"
-#~ " CHAUMETTE Damien <dchaumette@mandriva.com>\n"
-#~ "\n"
-#~ " VIGNAUD Thierry <tvignaud@mandriva.com>"
-#~ msgstr ""
-#~ "স্বত্বাধিকারী (C) ২০০১-২০০২ ম্যান্ড্রিব সফ্‌ট কর্তৃক \n"
-#~ "\n"
-#~ "\n"
-#~ " ডুপন্ট সেবাস্তিয়ান (মূল সংস্করণ)\n"
-#~ "\n"
-#~ " চওমেট্টে ডেমিয়েন <dchaumette@mandriva.com>\n"
-#~ "\n"
-#~ " ভিগ্‌নড থিয়েরী <tvignaud@mandriva.com>"
-
-#~ msgid "click here if you are sure."
-#~ msgstr "যদি আপনি নিশ্চিত থাকুন তবে এখানে ক্লিক করুন।"
-
-#~ msgid "here if no."
-#~ msgstr "যদি না হয় তবে এখানে।"
-
-#~ msgid "Remove List"
-#~ msgstr "লিস্ট মুছে ফেলো"
-
-# সাম:
-# not sure about /_Upload
-#~ msgid "/_Upload the hardware list"
-#~ msgstr "/হার্ডওয়্যার তালিকা _আপলোড করো"
-
-#~ msgid "Upload the hardware list"
-#~ msgstr "হার্ডওয়্যার তালিকা আপলোড করো"
-
-#~ msgid "Account:"
-#~ msgstr "অ্যাকাউন্ট:"
-
-#~ msgid "Hostname:"
-#~ msgstr "হোস্টের নাম:"
-
-#, fuzzy
-#~ msgid "Cancel setup"
-#~ msgstr "বাতিল"
-
-# সাম
-# customize
-#~ msgid ""
-#~ " - Create Etherboot Enabled Boot Images:\n"
-#~ " \tTo boot a kernel via etherboot, a special kernel/initrd image "
-#~ "must be created.\n"
-#~ " \tmkinitrd-net does much of this work and drakTermServ is just a "
-#~ "graphical \n"
-#~ " \tinterface to help manage/customize these images. To create the "
-#~ "file \n"
-#~ " \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as "
-#~ "an include in \n"
-#~ " \tdhcpd.conf, you should create the etherboot images for at least "
-#~ "one full kernel."
-#~ msgstr ""
-#~ " - ইথারবুট সক্রিয় বুট ইমেজ তৈরী করুন:\n"
-#~ " \tএকটি কার্নেল ইথারবুট দিয়ে বুট করার জন্য একটি বিশেষ kernel/initrd "
-#~ "ইমেজ তৈরী করতে হবে।\n"
-#~ " \tmkinitrd-net এই কাজটির অধিকাংশ করে দেয় এবং drakTermServ হচ্ছে "
-#~ "একটি গ্রাফিক্যাল \n"
-#~ " \tইন্টারফেস যা এই ইমেজগুলোর ব্যবস্থাপনা/কাস্টোমাইজ করতে সাহায্য করে। \n"
-#~ " \t/etc/dhcpd.conf.etherboot-pcimap.include ফাইলটি include \n"
-#~ " \tহিসেবে dhcpd.conf এ অন্তর্ভুক্ত করা হয়, যেটি তৈরী করতে আপনাকে অন্তত "
-#~ "একটি সম্পূর্ন \n"
-#~ " \tকার্নেলের জন্য ইথারবুট ইমেজ তৈরী করতে হবে।"
-
-# সাম
-#~ msgid ""
-#~ " While you can use a pool of IP addresses, rather than setup a "
-#~ "specific entry for\n"
-#~ " a client machine, using a fixed address scheme facilitates using "
-#~ "the functionality\n"
-#~ " of client-specific configuration files that ClusterNFS provides.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#type' entry is only used by drakTermServ. Clients "
-#~ "can either be 'thin'\n"
-#~ " or 'fat'. Thin clients run most software on the server via "
-#~ "XDMCP, while fat clients run \n"
-#~ " most software on the client machine. A special inittab, %s is\n"
-#~ " written for thin clients. System config files xdm-config, kdmrc, "
-#~ "and gdm.conf are \n"
-#~ " modified if thin clients are used, to enable XDMCP. Since there "
-#~ "are security issues in \n"
-#~ " using XDMCP, hosts.deny and hosts.allow are modified to limit "
-#~ "access to the local\n"
-#~ " subnet.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#hdw_config' entry is also only used by drakTermServ. "
-#~ "Clients can either \n"
-#~ " be 'true' or 'false'. 'true' enables root login at the client "
-#~ "machine and allows local \n"
-#~ " hardware configuration of sound, mouse, and X, using the 'drak' "
-#~ "tools. This is enabled \n"
-#~ " by creating separate config files associated with the client's IP "
-#~ "address and creating \n"
-#~ " read/write mount points to allow the client to alter the file. "
-#~ "Once you are satisfied \n"
-#~ " with the configuration, you can remove root login privileges from "
-#~ "the client.\n"
-#~ "\t\t\t\n"
-#~ " Note: You must stop/start the server after adding or changing "
-#~ "clients."
-#~ msgstr ""
-#~ " যদিও আপনি ক্লায়েন্ট মেশিনের জন্য একটি নির্দিষ্ট এন্ট্রির বদলে, অনেকগুলো "
-#~ "IP addresses\n"
-#~ " ব্যবহার করতে পারেন, তথাপি নির্দিষ্ট IP addresses ব্যবহার করলে আপনি "
-#~ "ClusterNFS\n"
-#~ " সরবরাহকৃত ক্লায়েন্ট প্রতি কনফিগারেশন ফাইল ব্যবস্থার সুবিধা পেতে পারেন।\n"
-#~ "\t\t\t\n"
-#~ " দ্রষ্টব্য: '#type' ক্ষেত্রটি শুধুমাত্র drakTermServ দ্বারা ব্যবহৃত হয়। "
-#~ "ক্লায়েন্ট শুধুমাত্র 'থিন''\n"
-#~ " বা 'ফ্যাট' হতে পারে। থিন ক্লায়েন্টগুলো XDMCP এর মাধ্যমে বেশীরভাগ "
-#~ "সফ্টওয়্যার সার্ভারে চালায়, \n"
-#~ " আর 'ফ্যাট' ক্লায়েন্টগুলো বেশীরভাগ সফ্টওয়্যার ক্লায়েন্টেই চালায়।\n"
-#~ " থিন ক্লায়েন্টের জন্য একটি বিশেষ inittab, %s লেখা হয়। থিন ক্লায়েন্টে "
-#~ "ব্যবহার করা হলে,\n"
-#~ " XDMCP সক্রিয় করার জন্য সিস্টেম কনফিগারেশন ফাইল xdm-config, kdmrc, "
-#~ "and gdm.conf\n"
-#~ " পরিবর্ধন করা হয়। যেহেতু XDMCP তে নিরাপত্তার প্রশ্ন বিদ্যমান, hosts.deny "
-#~ "এবং hosts.allow\n"
-#~ " ব্যবহার করে স্থানীয় সাবনেটে প্রবেশ সীমাবদ্ধ করা হয়।\n"
-#~ "\t\t\t\n"
-#~ " দ্রষ্টব্য: '#hdw_config' এন্ট্রিটি শুধুমাত্র drakTermServ ব্যবহার করে। "
-#~ "ক্লায়েন্টের মান শুধুমাত্র সত্য \n"
-#~ " বা মিথ্যা হতে পারে। সত্য হলে ক্লায়েন্ট মেশিনে রুট লগইন সম্ভব এবং "
-#~ "স্থানীয়ভাবে 'drak' টুলসমূহ \n"
-#~ " ব্যবহার করে শব্দ, মাউস, X হার্ডওয়্যার কনফিগারেশন করা যেতে পারে। "
-#~ "ক্লায়েন্টের IP addresses \n"
-#~ " এর সাথে সম্পৃক্ত আলাদা কনফিগারেশন ফাইল তৈরী করে এবং পড়া/লেখা মাউন্ট "
-#~ "পয়েন্ট তৈরী \n"
-#~ " করে ক্লায়েন্টকে তা পরিবর্ধনের সুযোগ দিয়ে এটি সক্রিয় করা হয়। এই "
-#~ "কনফিগারেশনে সন্তূষ্ট হলে \n"
-#~ " আপনি ক্লায়েন্ট থেকে রুট লগইন সুবিধা সরিয়ে ফেলতে পারেন।\n"
-#~ "\t\t\t\n"
-#~ " দ্রষ্টব্য: ক্লায়েন্ট অন্তর্ভুক্ত বা বদল করার পর বন্ধ করে পুনরায় চালু করতে হবে।"
-
-# সাম
-#~ msgid ""
-#~ " - Maintain %s:\n"
-#~ " \tFor users to be able to log into the system from a diskless "
-#~ "client, their entry in\n"
-#~ " \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
-#~ " \thelps in this respect by adding or removing system users from "
-#~ "this file."
-#~ msgstr ""
-#~ " - 1$%s রক্ষনাবেক্ষণ করো:\n"
-#~ " \tব্যবহারকারীদের ডিস্কবিহীন ক্লায়েন্ট থেকে সিস্টেমে লগইন করতে হলে,\n"
-#~ " \t/etc/shadow তে তাদের এন্ট্রি, 2$%s এ কপি করতে হবে। এই ক্ষেত্রে\n"
-#~ " \tdrakTermServ ফাইলে সিস্টেম ব্যবহারকারী যোগ করে বা সরিয়ে সাহায্য "
-#~ "করে।"
-
-# সাম
-#~ msgid ""
-#~ " - Per client %s:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tdrakTermServ will help create these files."
-#~ msgstr ""
-#~ " - ক্লায়েন্ট প্রতি %s:\n"
-#~ " \tclusternfs দিয়ে, সার্ভারের রুট ফাইল সিস্টেমে, প্রতিটি ডিস্কবিহীন "
-#~ "ক্লায়েন্টের জন্য স্বকীয় কনফিগারেশন\n"
-#~ " \t ফাইল তৈরী করা যায়। স্থানীয় ক্লায়েন্ট হার্ডওয়্যার কনফিগারেশন অনুমোদন "
-#~ "করলে,\n"
-#~ " \tdrakTermServ এই ফাইলগুলো তৈরী করতে সাহায্য করবে।"
-
-# সাম
-# customize = ?
-#~ msgid ""
-#~ " - Per client system configuration files:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tclients can customize files such as /etc/modules.conf, /etc/"
-#~ "sysconfig/mouse, \n"
-#~ " \t/etc/sysconfig/keyboard on a per-client basis.\n"
-#~ "\n"
-#~ " Note: Enabling local client hardware configuration does enable "
-#~ "root login to the terminal \n"
-#~ " server on each client machine that has this feature enabled. "
-#~ "Local configuration can be\n"
-#~ " turned back off, retaining the configuration files, once the "
-#~ "client machine is configured."
-#~ msgstr ""
-#~ " - ক্লায়েন্ট প্রতি সিস্টেম কনফিগারেশন ফাইল:\n"
-#~ " \tclusternfs দিয়ে, সার্ভারের রুট ফাইল সিস্টেমে, প্রতিটি ডিস্কবিহীন "
-#~ "ক্লায়েন্টের জন্য স্বকীয় কনফিগারেশন\n"
-#~ " \t ফাইল তৈরী করা যায়। স্থানীয় ক্লায়েন্ট হার্ডওয়্যার কনফিগারেশন অনুমোদন "
-#~ "করলে,\n"
-#~ " \t প্রতি ক্লায়েন্টের জন্য /etc/modules.conf, /etc/sysconfig/mouse, \n"
-#~ " \t/etc/sysconfig/keyboard ফাইলসমূহ কাস্টোমাইজ করা যেতে পারে।\n"
-#~ "\n"
-#~ " দ্রষ্টব্য: স্থানীয় ক্লায়েন্ট হার্ডওয়্যার কনফিগারেশন সক্রিয় করলে, এই ফিচার "
-#~ "সক্রিয় করা প্রতিটি মেশিনের \n"
-#~ " জন্য টার্মিনাল সার্ভারের রুট লগইন সক্রিয় হয়। একবার ক্লায়েন্ট মেশিন "
-#~ "কনফিগার করা হয়ে গেলে, স্থানীয় \n"
-#~ " কনফিগারেশন বন্ধ করে দেয়া যায়, এতে কনফিগারেশন ফাইলগুলো সংরক্ষিত থাকে।"
-
-#~ msgid "Configuration changed - restart clusternfs/dhcpd?"
-#~ msgstr "কনফিগারেশন বদলানো হয়েছে - clusternfs/dhcpd আবার শুরু করবো? "
-
-#~ msgid ""
-#~ "The following media have been found and will be used during install: %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do you have a supplementary installation media to configure?"
-#~ msgstr ""
-#~ "নিম্নলিখিত মিডিয়া পাওয়া যাবে এবং ব্যবহৃত হবে : %s ইনস্টল করার সময়।\n"
-#~ "\n"
-#~ "\n"
-#~ "আপনার কি কন্‌ফিগার করার জন্য কোন সংযোজিত ইনস্টলেশন মিডিয়া আছে?"
-
-# সাম
-#~ msgid "Create PXE images."
-#~ msgstr "PXE ইমেজ তৈরী করো।"
-
-#~ msgid ""
-#~ "Allow an ordinary user to mount the file system. The\n"
-#~ "name of the mounting user is written to mtab so that he can unmount the "
-#~ "file\n"
-#~ "system again. This option implies the options noexec, nosuid, and nodev\n"
-#~ "(unless overridden by subsequent options, as in the option line\n"
-#~ "user,exec,dev,suid )."
-#~ msgstr ""
-#~ "একজন সাধারণ ব্যবহারকারীকে ফাইল সিস্টেম মাউন্ট করার অনুমতি দিন। মাউন্টিং\n"
-#~ "ব্যবহারকারীর নাম mtab এ লেখা থাকে সেকারণে সে পুনরায় \n"
-#~ "ফাইল সিস্টেমকে আনমাউন্ট করতে পারে।\n"
-#~ "এই অপশন পরোক্ষভাবে noexec, nosuid, এবং nodev অপশনকে প্রকাশ করে।"
-
-#~ msgid "Unknown Model"
-#~ msgstr "অপরিচিত মডেল"
-
-# সাম: incomplete
-# \"Toolbox\"
-# four-edge?
-# full-bleed?
-#~ msgid ""
-#~ "Either with the newer HPLIP which allows printer maintenance through the "
-#~ "easy-to-use graphical application \"Toolbox\" and four-edge full-bleed on "
-#~ "newer PhotoSmart models "
-#~ msgstr ""
-#~ "হয় নতুন HPLIP দিয়ে যাতে আপনি সহজে ব্যবহারযোগ্য গ্রাফিক্যাল অ্যাপ্লিকেশন \"Toolbox"
-#~ "\" এর সাহায্যে প্রিন্টার রক্ষণাবেক্ষন করতে পারেন এবং নতুন PhotoSmart মডেলে four-"
-#~ "edge full-bleed"
-
-# সাম
-#~ msgid ""
-#~ "or with the older HPOJ which allows only scanner and memory card access, "
-#~ "but could help you in case of failure of HPLIP. "
-#~ msgstr ""
-#~ "অথবা পুরনো HPOJ দিয়ে যাতে আপনি শুধু স্ক্যানার বা মেমরী কার্ড ব্যবহার করতে পারেন, "
-#~ "তবে HPLIP কাজ না করলে এটি আপনাকে সাহায্য করতে পারে। "
-
-# সাম
-#~ msgid "HPOJ"
-#~ msgstr "HPOJ"
-
-# সাম
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3000/3200/3300/4345 with scanner, DeskJet 450, "
-#~ "Sony IJP-V100), an HP PhotoSmart or an HP LaserJet 2200?"
-#~ msgstr ""
-#~ "আপনার প্রিন্টারটি কি HP বা Sony মাল্টি-ফাংশন ডিভাইস (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3000/3200/3300/4345 স্ক্যানারসহ, DeskJet 450, Sony "
-#~ "IJP-V100), একটি HP PhotoSmart বা একটি HP LaserJet 2200?"
-
-#~ msgid "Installing mtools packages..."
-#~ msgstr "mtools প্যাকেজ ইনস্টল করা হচ্ছে..."
-
-#~ msgid "Photo memory card access on the %s will not be possible."
-#~ msgstr "%s থেকে ফটো মেমরি কার্ড ব্যবহার করা সম্ভব হবে না।"
-
-#~ msgid "Scanning on your HP multi-function device"
-#~ msgstr "আপনার HP মাল্টি-ফাংশন ডিভাইস স্ক্যান করা হচ্ছে"
-
-# FIXME
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr "আপনার HP মাল্টি-ফাংশন ডিভাইস থেকে ফটো মেমরি কার্ড ব্যবহার"
-
-# FIXME
-#~ msgid "Printing/Scanning/Photo Cards on \"%s\""
-#~ msgstr "\"%s\" এ মুদ্রিত হচ্ছে/স্ক্যান করছে/ফটো কার্ড"
-
-#~ msgid "Printing/Scanning on \"%s\""
-#~ msgstr "\"%s\" এ মুদ্রিত হচ্ছে/স্ক্যান করছে"
-
-# সাম
-#~ msgid "Printing/Photo Card Access on \"%s\""
-#~ msgstr "\"%s\" এ প্রিন্টিং/ফোটো কার্ড এক্সেস"
-
-# সাম
-# pls check the translation of
-# \"Acquire\"
-# 'Call' as in call a function.
-#~ msgid ""
-#~ "Your multi-function device was configured automatically to be able to "
-#~ "scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to "
-#~ "specify the scanner when you have more than one) from the command line or "
-#~ "with the graphical interfaces \"xscanimage\" or \"xsane\". If you are "
-#~ "using the GIMP, you can also scan by choosing the appropriate point in "
-#~ "the \"File\"/\"Acquire\" menu. Call also \"man scanimage\" on the command "
-#~ "line to get more information.\n"
-#~ "\n"
-#~ "You do not need to run \"scannerdrake\" for setting up scanning on this "
-#~ "device, you only need to use \"scannerdrake\" if you want to share the "
-#~ "scanner on the network."
-#~ msgstr ""
-#~ "আপনার বহুমাত্রিক ডিভাইসটি স্ক্যানার হেসেবে ব্যবহার করার জন্য স্বয়ংক্রিয়ভাবে "
-#~ "কনফিগার করা হয়েছিল। আপনি এখন কমান্ড লাইনে \"scanimage\" (যদি একাধিক "
-#~ "স্ক্যানার থাকে তবে \"scanimage -d hp:%s\" দিয়ে নির্ধারন করুন) অথবা গ্রাফিক্যাল "
-#~ "ইন্টারফেস \"xscanimage\" বা \"xsane\" ব্যবহার করে স্ক্যান করতে পারেন। আপনি "
-#~ "যদি GIMP ব্যবহার করেন, তাহলে \"File\"/\"Acquire\" মেনুর সঠিক পয়েন্ট বেছে "
-#~ "নিয়েও স্ক্যান করতে পারেন। এ বিষয়ে আরো সাহায্য পেতে কমান্ড লাইনে \"man "
-#~ "scanimage\" ব্যবহার করুন।\n"
-#~ "\n"
-#~ "এই ডিভাইসে স্ক্যানিং সেটআপ করার জন্য \"scannerdrake\" চালানোর প্রয়োজন নেই, "
-#~ "এটি তখনই দরকার হবে যদি আপনি স্ক্যানারটি নেটওয়ার্কে শেয়ার করতে চান। "
-
-# FIXME
-#~ msgid "Custom setup/crontab entry:"
-#~ msgstr "স্বনির্বাচিত বৈশিষ্ট্য/ক্রনট্যাব এন্ট্রি:"
-
-#~ msgid "Note that currently all 'net' media also use the hard drive."
-#~ msgstr "লক্ষ করুন যে, বর্তমানে সকল 'নেট' মিডিয়াই হার্ডড্রাইভকে ব্যবহার করে।"
-
-#~ msgid ""
-#~ "Before installing any fonts, be sure that you have the right to use and "
-#~ "install them on your system.\n"
-#~ "\n"
-#~ "-You can install the fonts the normal way. In rare cases, bogus fonts may "
-#~ "hang up your X Server."
-#~ msgstr ""
-#~ "কোন ফন্ট ইনস্টল করার আগে, নিশ্চিত হোন যে সেগুলো আপনার সিস্টেমে ব্যবহার ও ইনস্টল "
-#~ "করার অধিকার আপনার আছে।\n"
-#~ "\n"
-#~ "-আপনি সাধারণ উপায়ে ফন্ট ইনস্টল করতে পারেন। খুব অল্প ক্ষেত্রে, ভুয়া ফন্ট আপনার এক্স"
-#~ "(X) সার্ভারকে হ্যাং করে ফেলতে পারে।"
-
-#~ msgid ""
-#~ "%s cannot be displayed \n"
-#~ ". No Help entry of this type\n"
-#~ msgstr ""
-#~ "%s দেখানো যাবে না \n"
-#~ "এই ধরণের কোন সহায়ক এন্ট্রি নেই\n"
-
-#~ msgid ""
-#~ "\n"
-#~ "Please check all options that you need.\n"
-#~ msgstr ""
-#~ "\n"
-#~ "অনুগ্রহপূর্বক আপনার প্রয়োজনীয় সকল অপশন পরীক্ষা করুন।\n"
-
-#~ msgid ""
-#~ "These options can backup and restore all files in your /etc directory.\n"
-#~ msgstr ""
-#~ "এই অপশনগুলো /etc ডিরেক্টরির সকল ফাইল ব্যাক-আপ এবং ব্যাক-আপ থেকে পুনরুদ্ধার করতে "
-#~ "পারে।\n"
-
-#~ msgid ""
-#~ "With this option you will be able to restore any version\n"
-#~ " of your /etc directory."
-#~ msgstr ""
-#~ "এই অপশনের সাহায্যে /etc ডিরেক্টরির যে কোন সময়ের ব্যাক-আপ পুনরুদ্ধার করতে পারবেন।"
-
-#~ msgid "http://www.mandrivalinux.com/en/errata.php3"
-#~ msgstr "http://www.mandrivalinux.com/en/errata.php3"
-
-#~ msgid ""
-#~ "Kerberos is a secure system for providing network authentication services."
-#~ msgstr ""
-#~ "নেটওয়ার্কের নির্ভরযোগ্য সার্ভিস প্রদানের জন্য Kerberos একটি নিরাপদ সিস্টেম।"
-
-#~ msgid "Use Idmap for store UID/SID "
-#~ msgstr "UID/SID জমা করার জন্য Idmap ব্যবহার করুন "
-
-#~ msgid "Default Idmap "
-#~ msgstr "ডিফল্ট Idmap"
-
-#~ msgid "Please wait, preparing installation..."
-#~ msgstr "ইনস্টলেশনের প্রস্তুতি চলছে, অনুগ্রহ করে অপেক্ষা করুন..."
-
-#~ msgid "Installing package %s"
-#~ msgstr "%s প্যাকেজ সমূহ ইনস্টল করা হচ্ছে"
-
-#~ msgid "<b>What is Mandriva Linux?</b>"
-#~ msgstr "<b>ম্যান্ড্রিব কলিনাক্স কি?</b>"
-
-#~ msgid "Welcome to <b>Mandriva Linux</b>!"
-#~ msgstr "<b>ম্যান্ড্রিব কলিনাক্স</b>-এ আপনাকে স্বাগতম!"
-
-# সাম
-#~ msgid ""
-#~ "Mandriva Linux is a <b>Linux distribution</b> that comprises the core of "
-#~ "the system, called the <b>operating system</b> (based on the Linux "
-#~ "kernel) together with <b>a lot of applications</b> meeting every need you "
-#~ "could even think of."
-#~ msgstr ""
-#~ "Mandriva Linux একটি <b>লিনাক্স ডিস্ট্রিবিউশন</b> যা গঠিত হয়েছে সিস্টেম মূল অংশ "
-#~ "বা <b>অপারেটিং সিস্টেম</b> (লিনাক্স কার্নেল এর উপর ভিত্তি করে) এবং <b>বিভিন্ন "
-#~ "অনেক অ্যাপ্লিকেশন</b> দিয়ে যা কিনা আপনার সম্ভাব্য সব চাহিদা পূরন করে।"
-
-# সাম
-#~ msgid ""
-#~ "Mandriva Linux is the most <b>user-friendly</b> Linux distribution today. "
-#~ "It is also one of the <b>most widely used</b> Linux distributions "
-#~ "worldwide!"
-#~ msgstr ""
-#~ "Mandriva Linux আজকের সবচেয়ে <b>ব্যবহারকারীর বন্ধুসূলভ</b> লিনাক্স ডিস্ট্রিবিউশন। "
-#~ "এটি পৃথিবীর সবচেয়ে <b>বহুল-ব্যবহৃত</b> লিনাক্স ডিস্ট্রিবিউশনের মধ্যে অন্যতম!"
-
-#~ msgid "<b>Open Source</b>"
-#~ msgstr "<b>উন্মুক্ত সোর্স</b>"
-
-#~ msgid "Welcome to the <b>world of open source</b>!"
-#~ msgstr "<b>উন্মুক্ত সোর্সের পৃথিবী</b> তে স্বাগতম!"
-
-# sam
-# release = প্রকাশ?
-#~ msgid ""
-#~ "Mandriva Linux is committed to the open source model. This means that "
-#~ "this new release is the result of <b>collaboration</b> between "
-#~ "<b>Mandriva's team of developers</b> and the <b>worldwide community</b> "
-#~ "of Mandriva Linux contributors."
-#~ msgstr ""
-#~ "Mandriva Linux উন্মুক্ত সোর্স মডেলে প্রতিশ্রুতিবদ্ধ। এর অর্থ, এই নতুন রিলিজটি "
-#~ "<b>Mandriva এর ডেভেলপমেন্ট টিম</b> এবং <b>বিশ্বব্যাপী কমিউনিটির</b> "
-#~ "<b>সহযোগিতার</b> ফসল।"
-
-#~ msgid ""
-#~ "We would like to <b>thank</b> everyone who participated in the "
-#~ "development of this latest release."
-#~ msgstr ""
-#~ "এই সর্বশেষ সংস্করণের উন্নয়ন প্রক্রিয়ায় যারা অংশগ্রহণ করেছেন তাদের প্রত্যেককে আমরা "
-#~ "ধন্যবাদ জানাতে চাচ্ছি।"
-
-#~ msgid "<b>The GPL</b>"
-#~ msgstr "<b>জি-পি-এল</b>"
-
-#~ msgid ""
-#~ "Most of the software included in the distribution and all of the Mandriva "
-#~ "Linux tools are licensed under the <b>General Public License</b>."
-#~ msgstr ""
-#~ "ডিস্ট্রিবিউশন এবং ম্যান্ড্রিব লিনাক্স টুলসমূহের বেশিরভাগ সফ্‌টওয়্যার <b>General "
-#~ "Public License</b> এর অধীনে লাইসেন্সকৃত।"
-
-# সাম
-#~ msgid ""
-#~ "The GPL is at the heart of the open source model; it grants everyone the "
-#~ "<b>freedom</b> to use, study, distribute and improve the software any way "
-#~ "they want, provided they make the results available."
-#~ msgstr ""
-#~ "GPL হচ্ছে উন্মুক্ত সোর্স মডেলের মূল চালিকাশক্তি; এটি সকলকে একটি সফ্টওয়্যার ব্যবহার, "
-#~ "নিরীক্ষণ, বিতরণ, এবং উন্নতি সাধন করার <b>স্বাধীনতা</b> দেবে, যদি তার ফল "
-#~ "প্রকাশ করার প্রতিশ্রুতি দেয়া হয়।"
-
-# সাম
-#~ msgid ""
-#~ "The main benefit of this is that the number of developers is virtually "
-#~ "<b>unlimited</b>, resulting in <b>very high quality</b> software."
-#~ msgstr ""
-#~ "এই পদ্ধতির প্রধান সুবিধা হল, ডেভেলপারের সংখ্যা কার্যত: <b>অসীম</b>, যার ফলাফল "
-#~ "<b>অতি উন্নত মানের</b> সফ্টওয়্যার।"
-
-#~ msgid "<b>Join the Community</b>"
-#~ msgstr "<b>কমিউনিটিতে যোগ দিন</b>"
-
-# সাম
-#~ msgid ""
-#~ "Mandriva Linux has one of the <b>biggest communities</b> of users and "
-#~ "developers. The role of such a community is very wide, ranging from bug "
-#~ "reporting to the development of new applications. The community plays a "
-#~ "<b>key role</b> in the Mandriva Linux world."
-#~ msgstr ""
-#~ "Mandriva Linux এর আছে ব্যবহারকারী ও ডেভেলপারদের <b>সবচেয়ে বড় কমিউনিটি</b> "
-#~ "গুলোর একটি। এই কমিউনিটির কার্যক্রমও অনেক বিস্তৃত, ত্রুটি রিপোর্ট করা থেকে নতুন "
-#~ "অ্যাপলিকেশন তৈরী পর্যন্ত। এ কমিউনিটি Mandriva Linux এর ভুবনে অপরিহার্য ভুমিকা "
-#~ "পালন করে।"
-
-# সাম
-#~ msgid ""
-#~ "To <b>learn more</b> about our dynamic community, please visit <b>www."
-#~ "mandrivalinux.com</b> or directly <b>www.mandrivalinux.com/en/cookerdevel."
-#~ "php3</b> if you would like to get <b>involved</b> in the development."
-#~ msgstr ""
-#~ "এই সক্রিয় কমিউনিটি সম্পর্কে <b>আরও জানতে</b>, দেখুন <b>www.mandrivalinux.com</"
-#~ "b> অথবা সরাসরি <b>www.mandrivalinux.com/en/cookerdevel.php3</b> যদি আপনি "
-#~ "ডেভেলপমেন্টে <b>সম্পৃক্ত</b> হতে চান।"
-
-#~ msgid "<b>Download Version</b>"
-#~ msgstr "<b>ডাউনলোড সংস্করণ</b>"
-
-# সাম
-#~ msgid ""
-#~ "You are now installing <b>Mandriva Linux Download</b>. This is the free "
-#~ "version that Mandriva wants to keep <b>available to everyone</b>."
-#~ msgstr ""
-#~ "আপনি এখন <b>Mandriva Linux ডাউনলোড</b> ইনস্টল করছেন। এটি একটি ফ্রী ভার্সন যা "
-#~ "কিনা Mandriva <b>সবার জন্য সহজলভ্য</b> রাখতে চায়।"
-
-# সাম
-#~ msgid ""
-#~ "The Download version <b>cannot include</b> all the software that is not "
-#~ "open source. Therefore, you will not find in the Download version:"
-#~ msgstr ""
-#~ "ডাউনলোড ভার্সনে উন্মুক্ত সোর্স নয় এমন সব সফ্টওয়্যার <b>সংযোযিত নয়</b>। অতএব আপনি "
-#~ "ডাউনলোড ভার্সনে পাচ্ছেন না:"
-
-#~ msgid ""
-#~ "\t* <b>Proprietary drivers</b> (such as drivers for NVIDIA®, ATI™, etc.)."
-#~ msgstr ""
-#~ "\t* <b>প্রোপাইটারি ড্রাইভারসমূহ</b> (যেমন NVIDIA®, ATI™, ইত্যাদির জন্য "
-#~ "ড্রাইভার।)।"
-
-#~ msgid ""
-#~ "\t* <b>Proprietary software</b> (such as Acrobat® Reader®, RealPlayer®, "
-#~ "Flash™, etc.)."
-#~ msgstr ""
-#~ "\t* <b>প্রোপাইটারি সফ্‌টওয়্যার</b> (যেমন Acrobat® Reader®, RealPlayer®, "
-#~ "Flash™, ইত্যাদি।)।"
-
-# সাম
-#~ msgid ""
-#~ "You will not have access to the <b>services included</b> in the other "
-#~ "Mandriva products either."
-#~ msgstr ""
-#~ "অনান্য Mandriva পণ্যেও <b>সংযোজিত সার্ভিসগুলো</b> আপনি ব্যবহার করতে পারবেন না।"
-
-#~ msgid "<b>Discovery, Your First Linux Desktop</b>"
-#~ msgstr "<b>আবিষ্কার করুন, আপনার প্রথম লিনাক্স ডেস্কটপ</b>"
-
-#~ msgid "You are now installing <b>Mandriva Linux Discovery</b>."
-#~ msgstr "আপনি এখন <b>ম্যান্ড্রিব লিনাস্ক আবিষ্কার</b> ইনস্টল করছেন।"
-
-# সাম:
-# task-oriented = ?
-#~ msgid ""
-#~ "Discovery is the <b>easiest</b> and most <b>user-friendly</b> Linux "
-#~ "distribution. It includes a hand-picked selection of <b>premium software</"
-#~ "b> for office, multimedia and Internet activities. Its menu is task-"
-#~ "oriented, with a single application per task."
-#~ msgstr ""
-#~ "Discovery হচ্ছে সবচেয়ে <b>সহজ</b> এবং <b>ব্যবহারকারীর বন্ধুসূলভ</b> লিনাক্স "
-#~ "ডিস্ট্রিবিউশন। এটিতে আছে অফিস, মাল্টিমিডিয়া এবং ইন্টারনেট কর্মকান্ডে ব্যবহারের "
-#~ "জন্য বাছাইকৃত কিছু <b>মানসম্মত সফ্টওয়্যার</b>। এর মেনু task-oriented, প্রতিটি "
-#~ "টাস্কের জন্য একটি অ্যাপ্লিকেশন।"
-
-#~ msgid "<b>PowerPack, The Ultimate Linux Desktop</b>"
-#~ msgstr "<b>পাওয়ারপ্যাক, চূড়ান্ত লিনাক্স ডেস্কটপ</b>"
-
-#~ msgid "You are now installing <b>Mandriva Linux PowerPack</b>."
-#~ msgstr "আপনি এখন <b>ম্যান্ড্রিব লিনাক্স পাওয়ারপ্যাক</b> ইনস্টল করছেন।"
-
-# সাম
-# premier?
-#~ msgid ""
-#~ "PowerPack is Mandriva's <b>premier Linux desktop</b> product. PowerPack "
-#~ "includes <b>thousands of applications</b> - everything from the most "
-#~ "popular to the most advanced."
-#~ msgstr ""
-#~ "PowerPack হচ্ছে Mandriva এর <b>premier লিনাক্স ডেস্কটপ</b> পণ্য। PowerPack এ "
-#~ "আছে <b>হাজারেরও অধিক অ্যাপ্লিকেশন</b> - সবচেয়ে জনপ্রিয় থেকে শুরু করে সবচেয়ে "
-#~ "উন্নত পর্যন্ত।"
-
-#~ msgid "<b>PowerPack+, The Linux Solution for Desktops and Servers</b>"
-#~ msgstr "<b>পাওয়ারপ্যাক+, ডেস্কটপ এবং সার্ভারের জন্য লিনাক্স সমাধান</b>"
-
-#~ msgid "You are now installing <b>Mandriva Linux PowerPack+</b>."
-#~ msgstr "আপনি এখন <b>ম্যান্ড্রিব লিনাক্স পাওয়ারপ্যা++</b> ইনস্টল করছেন।"
-
-# সাম
-# full-featured = বৈশিষ্টপূর্ণ?
-#~ msgid ""
-#~ "PowerPack+ is a <b>full-featured Linux solution</b> for small to medium-"
-#~ "sized <b>networks</b>. PowerPack+ includes thousands of <b>desktop "
-#~ "applications</b> and a comprehensive selection of world-class <b>server "
-#~ "applications</b>."
-#~ msgstr ""
-#~ "PowerPack+ ছোট থেকে মধ্যম সাইজের <b>নেটওয়ার্কের</b> জন্য একটি <b>বৈশিষ্টপূর্ণ "
-#~ "লিনাক্স সমাধান</b>। PowerPack+ এ আছে হাজারেরও অধিক <b>ডেস্কটপ অ্যাপ্লিকেশন</"
-#~ "b> এবং কিছু অতি উন্নত সমন্বিত <b>সার্ভার অ্যাপ্লিকেশন</b>।"
-
-# সাম: Mandriva
-#~ msgid "<b>Mandriva Products</b>"
-#~ msgstr "<b>Mandriva পণ্যসমূহ</b>"
-
-#~ msgid ""
-#~ "<b>Mandriva</b> has developed a wide range of <b>Mandriva Linux</b> "
-#~ "products."
-#~ msgstr "<b>ম্যান্ড্রিব সফ্‌ট</b> <b>ম্যান্ড্রিব লিনাক্স</b> প্রচুর প্রোডাক্ট তৈরী করেছে।"
-
-# সাম
-#~ msgid "The Mandriva Linux products are:"
-#~ msgstr "Mandriva Linux এর পণ্যসমূহ হলো:"
-
-#~ msgid "\t* <b>Discovery</b>, Your First Linux Desktop."
-#~ msgstr "\t* <b>আবিষ্কার</b>, আপনার প্রথম লিনাক্স ডেস্কটপ।"
-
-#~ msgid "\t* <b>PowerPack</b>, The Ultimate Linux Desktop."
-#~ msgstr "\t* <b>পাওয়ারপ্যাক</b>, চূড়ান্ত লিনাক্স ডেস্কটপ।"
-
-#~ msgid "\t* <b>PowerPack+</b>, The Linux Solution for Desktops and Servers."
-#~ msgstr "\t* <b>পাওয়ারপ্যাক+</b>, ডেস্কটপ এবং সার্ভারের জন্য লিনাক্স সমাধান."
-
-# সাম
-#~ msgid ""
-#~ "\t* <b>Mandriva Linux for x86-64</b>, The Mandriva Linux solution for "
-#~ "making the most of your 64-bit processor."
-#~ msgstr ""
-#~ "\t* <b>x86-64 এর জন্য Mandriva Linux</b>, আপনার ৬৪‌-বিট প্রোসেসরের সব "
-#~ "সম্ভবনাকে কাজে লাগানোর Mandriva Linux সমাধান। "
-
-# সাম
-#~ msgid "<b>Mandriva Products (Nomad Products)</b>"
-#~ msgstr "<b>Mandriva পণ্যসমূহ (Nomad পণ্যসমূহ)</b>"
-
-# সাম
-#~ msgid ""
-#~ "Mandriva has developed two products that allow you to use Mandriva Linux "
-#~ "<b>on any computer</b> and without any need to actually install it:"
-#~ msgstr ""
-#~ "Mandriva দুটি পণ্য তৈরী করেছে যা আপনাকে ইনস্টল করা ছাড়াই <b>যেকোন কম্পিউটারে</"
-#~ "b> Mandriva Linux ব্যবহার করার সুযোগ দেবে। "
-
-# সাম
-# bootable = ?
-#~ msgid ""
-#~ "\t* <b>Move</b>, a Mandriva Linux distribution that runs entirely from a "
-#~ "bootable CD-ROM."
-#~ msgstr ""
-#~ "\t* <b>মুভ</b>, একটি Mandriva Linux ডিস্ট্রিবিউশন সম্পূর্ণভাবে একটি বুট CD-ROM "
-#~ "থেকে চলতে পারে।"
-
-# সাম: ultra-compact = ?
-#~ msgid ""
-#~ "\t* <b>GlobeTrotter</b>, a Mandriva Linux distribution pre-installed on "
-#~ "the ultra-compact “LaCie Mobile Hard Drive”."
-#~ msgstr ""
-#~ "\t* <b>GlobeTrotter</b>, একটি Mandriva Linux ডিস্ট্রিবিউশন যা কিনা আলট্রা‌-"
-#~ "কমপ্যাক্ট “LaCie মোবাইল হার্ড ড্রাইভ” এ পূর্ব-ইনস্টলকৃত।"
-
-#~ msgid "<b>Mandriva Products (Professional Solutions)</b>"
-#~ msgstr "<b>ম্যান্ড্রিব সফ্‌ট প্রোডাক্টসমূহ (পেশাদারী সমাধান)</b>"
-
-#~ msgid ""
-#~ "Below are the Mandriva products designed to meet the <b>professional "
-#~ "needs</b>:"
-#~ msgstr ""
-#~ "নিচের ম্যান্ড্রিব সফ্‌ট প্রোডাক্টসমূহ <b>পেশাদারী প্রয়োজন</b> মেটানোর জন্য ডিজাইন "
-#~ "করা হয়েছে:"
-
-# সাম: Corporate = প্রাতিষ্ঠানিক লিখলাম...সিওর না।
-#~ msgid ""
-#~ "\t* <b>Corporate Desktop</b>, The Mandriva Linux Desktop for Businesses."
-#~ msgstr ""
-#~ "\t* <b>কর্পোরেট ডেস্কটপ</b>, ব্যবসা প্রতিষ্ঠানের উপযুক্ত Mandriva Linux ডেস্কটপ।"
-
-# সাম
-# প্রাতিষ্ঠানিক
-#~ msgid "\t* <b>Corporate Server</b>, The Mandriva Linux Server Solution."
-#~ msgstr "\t* <b>কর্পোরেট সার্ভার</b>, Mandriva Linux সার্ভার সমাধান।"
-
-# সাম
-#~ msgid ""
-#~ "\t* <b>Multi-Network Firewall</b>, The Mandriva Linux Security Solution."
-#~ msgstr ""
-#~ "\t* <b>একাধিক-নেটওয়ার্ক ফায়ারওয়াল</b>, Mandriva Linux নিরাপত্তা সমাধান।"
-
-#~ msgid "<b>The KDE Choice</b>"
-#~ msgstr "<b>কে-ডি-ই'র পছন্দ</b>"
-
-# ব্যবহারকারীর বন্ধুসূলভ
-# ডেস্কটপ পরিবেশ
-#~ msgid ""
-#~ "With your Discovery, you will be introduced to <b>KDE</b>, the most "
-#~ "advanced and user-friendly <b>graphical desktop environment</b> available."
-#~ msgstr ""
-#~ "Discovery এর মাধ্যমে আপনি পরিচিত হবেন <b>KDE</b> এর সাথে, যটি সবচেয়ে উন্নত "
-#~ "এবং ব্যবহারকারী বন্ধুসূলভ <b>গ্রাফিক্যাল ডেস্কটপ পরিবেশ</b>।"
-
-# সাম: :P
-#~ msgid ""
-#~ "KDE will make your <b>first steps</b> with Linux so <b>easy</b> that you "
-#~ "will not ever think of running another operating system!"
-#~ msgstr ""
-#~ "KDE আপনার Linux প্রশিক্ষণের <b>প্রথম ধাপগুলো</b> এত সহজ করে তুলবে যে আপনি অন্য "
-#~ "কোন অপারেটিং সিস্টেমের কথা চিন্তাই করবেন না!"
-
-# সাম
-#~ msgid ""
-#~ "KDE also includes a lot of <b>well integrated applications</b> such as "
-#~ "Konqueror, the web browser and Kontact, the personal information manager."
-#~ msgstr ""
-#~ "KDE তে আরও আছে অনেক <b>সমন্বিত অ্যাপ্লিকেশন</b>, যেমন ওয়েব ব্রাউজার "
-#~ "Konqueror, এবং ব্যক্তিগত তথ্য ব্যবস্থাপক Kontact।"
-
-# সাম: প্রতিবেশ = পরিবেশ।
-# ডেস্কটপ পরিবেশ doesn't sound good.
-#~ msgid "<b>Choose your Favorite Desktop Environment</b>"
-#~ msgstr "<b>আপনার পছন্দনীয় ডেস্কটপ পরিবেশ বেছে নিন</b>"
-
-# সাম
-# ডেস্কটপ পরিবেশ
-#~ msgid ""
-#~ "With PowerPack, you will have the choice of the <b>graphical desktop "
-#~ "environment</b>. Mandriva has chosen <b>KDE</b> as the default one."
-#~ msgstr ""
-#~ "PowerPack এর মাধ্যমে আপনি আপনার পচ্ছন্দ অনুযায়ী <b>গ্রাফিক্যাল ডেস্কটপ পরিবেশ<b> "
-#~ "বেছে নিতে পারবেন। Mandriva এর জন্য ডিফল্ট <b>KDE</b>। "
-
-# সাম
-# ব্যবহারকারীর বন্ধুসূলভ
-# ডেস্কটপ পরিবেশ
-#~ msgid ""
-#~ "KDE is one of the <b>most advanced</b> and <b>user-friendly</b> graphical "
-#~ "desktop environment available. It includes a lot of integrated "
-#~ "applications."
-#~ msgstr ""
-#~ "KDE হচ্ছে <b>সবচেয়ে উন্নত</b> এবং <b>ব্যবহারকারী বন্ধুসূলভ</b> গ্রাফিক্যাল ডেস্কটপ "
-#~ "পরিবেশ। এতে অনেক সমন্বিত অ্যাপ্লিকেশনসমূহ আছে।"
-
-# সাম
-#~ msgid ""
-#~ "But we advise you to try all available ones (including <b>GNOME</b>, "
-#~ "<b>IceWM</b>, etc.) and pick your favorite."
-#~ msgstr ""
-#~ "কিন্তু আমাদের মতে আপনি সবগুলোই ব্যবহার করে দেখুন (যেমন <b>GNOME</b>, <b>IceWM</"
-#~ "b> ইত্যাদি) এবং আপনার পচ্ছন্দেরটি বেছে নিন।"
-
-# ডেস্কটপ পরিবেশ
-#~ msgid ""
-#~ "With PowerPack+, you will have the choice of the <b>graphical desktop "
-#~ "environment</b>. Mandriva has chosen <b>KDE</b> as the default one."
-#~ msgstr ""
-#~ "PowerPack এর মাধ্যমে আপনি আপনার পচ্ছনুযায়ী <b>গ্রাফিক্যাল ডেস্কটপ পরিবেশ</b> "
-#~ "বেছে নিতে পারবেন। Mandriva এর জন্য ডিফল্ট হচ্ছে <b>KDE</b>। "
-
-#~ msgid "<b>OpenOffice.org</b>"
-#~ msgstr "<b>OpenOffice.org</b>"
-
-#~ msgid "With Discovery, you will discover <b>OpenOffice.org</b>."
-#~ msgstr "আবিষ্কারের সাথে সাথে, আপনি <b>OpenOffice.org</b> আবিষ্কার করবেন।"
-
-# সাম
-#~ msgid ""
-#~ "It is a <b>full-featured office suite</b> that includes word processor, "
-#~ "spreadsheet, presentation and drawing applications."
-#~ msgstr ""
-#~ "এটি একটি <b>সম্পূর্ণ office suite</b> যাতে ওয়ার্ড প্রোসেসর, স্প্রেডশীট, "
-#~ "প্রেজেন্টেশন এবং অংকন সফ্টওয়্যারসমূহ রয়েছে।"
-
-# সাম
-#~ msgid ""
-#~ "OpenOffice.org can read and write most types of <b>Microsoft® Office</b> "
-#~ "documents such as Word, Excel and PowerPoint® files."
-#~ msgstr ""
-#~ "OpenOffice.org প্রায় সব ধরনের <b>Microsoft® Office</b> ডকুমেন্ট পড়তে ও তৈরী "
-#~ "করতে পারে, যেমন Word, Excel এবং PowerPoint® ফাইলসমূহ।"
-
-#~ msgid "<b>Kontact</b>"
-#~ msgstr "<b>Kontact</b>"
-
-# সাম
-#~ msgid ""
-#~ "Discovery includes <b>Kontact</b>, the new KDE <b>groupware solution</b>."
-#~ msgstr ""
-#~ "Discovery তে সংযোজিত আছে <b>Kontact</b>, নতুন KDE <b>গ্রুপওয়্যার সমাধান</b>।"
-
-# সাম
-# address book
-# বৈশিষ্টপূর্ণ
-#~ msgid ""
-#~ "More than just a full-featured <b>e-mail client</b>, Kontact also "
-#~ "includes an <b>address book</b>, a <b>calendar</b>, plus a tool for "
-#~ "taking <b>notes</b>!"
-#~ msgstr ""
-#~ "একটি বৈশিষ্টপূর্ণ <b>ই‌মেইল ক্লায়েন্ট</b> ছাড়াও, Kontact এ আছে <b>অ্যাড্রেস বুক</"
-#~ "b>, একটি <b>ক্যালেন্ডার</b>, এবং একটি <b>নোট</b> নেবার টুল!"
-
-#~ msgid ""
-#~ "It is the easiest way to communicate with your contacts and to organize "
-#~ "your time."
-#~ msgstr ""
-#~ "এটি হচ্ছে আপনার সম্পর্কিত লোকদের সাথে যোগাযোগের এবং আপনার সময় ঘুছিয়ে রাখার "
-#~ "সহজতম পন্থা।"
-
-#~ msgid "<b>Surf the Internet</b>"
-#~ msgstr "<b>ইন্টারনেট সার্ফ করুন</b>"
-
-# সাম: resource is translated elsewhere as রিসোর্স
-#~ msgid "Discovery will give you access to <b>every Internet resource</b>:"
-#~ msgstr "Discovery আপনাকে দেবে <b>প্রতিটি ইন্টারনেট রিসোর্স</b>ব্যবহারের সুবিধা: "
-
-#~ msgid "\t* Browse the <b>Web</b> with Konqueror."
-#~ msgstr "\t* Konqueror দিয়ে <b>ওয়েব</b> ব্রাউজ করুন।"
-
-#~ msgid "\t* <b>Chat</b> online with your friends using Kopete."
-#~ msgstr "\t* Kopete ব্যবহার করে অনলাইনে আপনার বন্ধুদের সাথে <b>চ্যাট করুন</b>।"
-
-#~ msgid "\t* <b>Transfer</b> files with KBear."
-#~ msgstr "\t* KBear দিয়ে ফাইল <b>আদান-প্রদান</b> করুন।"
-
-#~ msgid "\t* ..."
-#~ msgstr "\t* ..."
-
-#~ msgid "<b>Enjoy our Multimedia Features</b>"
-#~ msgstr "<b>আমাদের মাল্টিমিডিয়া সুবিধাগুলো উপভোগ করুন</b>"
-
-# সাম
-#~ msgid "Discovery will also make <b>multimedia</b> very easy for you:"
-#~ msgstr "Discovery আপনার জন্য <b>মাল্টিমিডিয়া</b> আরও সহজ করে তুলবে:"
-
-#~ msgid "\t* Watch your favorite <b>videos</b> with Kaffeine."
-#~ msgstr "\t* Kaffeine দিয়ে আপনার প্রিয় <b>ভিডিওসমূহ</b> দেখুন।"
-
-#~ msgid "\t* Listen to your <b>music files</b> with amaroK."
-#~ msgstr "\t* amaroK দিয়ে আপনার <b>গানের ফাইলগুলো</b> শুনুন।"
-
-#~ msgid "\t* Edit and create <b>images</b> with the GIMP."
-#~ msgstr "\t* GIMP দিয়ে <b>ছবিসমূহ</b> সম্পাদনা এবং তৈরী করুন।"
-
-#~ msgid "<b>Enjoy the Wide Range of Applications</b>"
-#~ msgstr "<b>অ্যাপ্লিকেশনের বিশাল সীমা উপভোগ করুন</b>"
-
-#~ msgid ""
-#~ "In the Mandriva Linux menu you will find <b>easy-to-use</b> applications "
-#~ "for <b>all of your tasks</b>:"
-#~ msgstr ""
-#~ "ম্যান্ড্রিব লিনাক্স মেনু'তে <b>আপনার সকল কাজসমূহ</b> এর জন্য আপনি </b>সহজে-"
-#~ "ব্যবহার্য</b> এপ্লিকেশনসমূহ খুঁজে পাবেন:"
-
-#~ msgid ""
-#~ "\t* Create, edit and share office documents with <b>OpenOffice.org</b>."
-#~ msgstr ""
-#~ "\t* <b>OpenOffice.org</b> দিয়ে অফিস ডকুমেন্টগুলো তৈরী, সম্পাদনা এবং শেয়ার করুন।"
-
-# সাম: personal information suites = ?
-#~ msgid ""
-#~ "\t* Manage your personal data with the integrated personal information "
-#~ "suites <b>Kontact</b> and <b>Evolution</b>."
-#~ msgstr ""
-#~ "\t* আপনার ব্যক্তিগত তথ্য <b>Kontact</b> এবং <b>Evolution</b> এর মত সমন্বিত "
-#~ "personal information suite দিয়ে রক্ষণাবেক্ষন করুন।"
-
-#~ msgid "\t* Browse the web with <b>Mozilla</b> and <b>Konqueror</b>."
-#~ msgstr "\t* <b>Mozilla</b> এবং <b>Konqueror</b> দিয়ে ওয়েব ব্রাউজ করুন।"
-
-#~ msgid "\t* Participate in online chat with <b>Kopete</b>."
-#~ msgstr "\t* <b>Kopete</b> দিয়ে অনলাইন চ্যাটে অংশগ্রহণ করুন।"
-
-#~ msgid ""
-#~ "\t* Listen to your <b>audio CDs</b> and <b>music files</b>, watch your "
-#~ "<b>videos</b>."
-#~ msgstr ""
-#~ "\t* আপনার <b>অডিও সিডি</b> এবং <b>গানের ফাইল</b> শুনুন, আপনার <b>ভিডিওসমূহ</"
-#~ "b> দেখুন।"
-
-#~ msgid "\t* Edit and create images with the <b>GIMP</b>."
-#~ msgstr "\t* <b>GIMP</b> দিয়ে ছবিসমূহ সম্পাদনা এবং তৈরী করুন।"
+#~ msgid "Icon"
+#~ msgstr "আইকন"
-#~ msgid "<b>Development Environments</b>"
-#~ msgstr "<b>উন্নয়ন এর পরিবেশ</b>"
+#~ msgid "Number of capture buffers:"
+#~ msgstr "ক্যাপচার বাফারের সংখ্যা:"
-# সাম
-#~ msgid ""
-#~ "PowerPack gives you the best tools to <b>develop</b> your own "
-#~ "applications."
-#~ msgstr "PowerPack আপনাকে দিচ্ছে আ্যপলিকেশন <b>ডেভেলপ</b> এর সর্বোত্তম সরঞ্জাম।"
-
-# সাম
-# সমন্বিত অ্যাপ্লিকেশন
-#~ msgid ""
-#~ "You will enjoy the powerful, integrated development environment from KDE, "
-#~ "<b>KDevelop</b>, which will let you program in a lot of languages."
-#~ msgstr ""
-#~ "আপনি KDE এর শক্তিশালী ও সমন্বিত ডেভেলপমেন্ট পরিবেশ <b>KDevelop</b> উপভোগ "
-#~ "করবেন, যেটি আপনাকে বিভিন্ন অনেক ভাষায় প্রোগ্রাম করার সুযোগ দেবে।"
-
-# সাম
-#~ msgid ""
-#~ "PowerPack also ships with <b>GCC</b>, the leading Linux compiler and "
-#~ "<b>GDB</b>, the associated debugger."
-#~ msgstr ""
-#~ "PowerPack এর সাথে আরও পেতে পারেন <b>GCC</b>, Linux এর প্রধান কমপাইলার এবং "
-#~ "<b>GDB</b>, এর সংশ্লিষ্ট ডিবাগার।"
-
-# সাম: Development = ? পরিবর্ধন, উন্নয়ন
-# সফ্টওয়্যার তৈরী সম্পাদক
-#~ msgid "<b>Development Editors</b>"
-#~ msgstr "<b>ডেভেলপমেন্ট এডিটর সমুহ</b>"
-
-#~ msgid "PowerPack will let you choose between those <b>popular editors</b>:"
-#~ msgstr "PowerPack আপনাকে <b>জনপ্রিয় এডিটরগুলো</b> বেছে নেয়ার সুযোগ দেবে:"
-
-# সাম: real time = ?
-#~ msgid "\t* <b>Emacs</b>: a customizable and real time display editor."
-#~ msgstr "\t* <b>Emacs</b>: একটি স্বনির্বাচিত এবং রিয়েল টাইম ডিসপ্লে এডিটর।"
-
-# সাম
-#~ msgid ""
-#~ "\t* <b>XEmacs</b>: another open source text editor and application "
-#~ "development system."
-#~ msgstr ""
-#~ "\t* <b>XEmacs</b>: আরও একটি উন্মুক্ত সোর্স টেক্সট এডিটর এবং অ্যাপলিকেশন তৈরী "
-#~ "সিস্টেম।"
-
-# সাম
-#~ msgid ""
-#~ "\t* <b>Vim</b>: an advanced text editor with more features than standard "
-#~ "Vi."
-#~ msgstr ""
-#~ "\t* <b>Vim</b>: সাধারণ Vi এর চেয়ে বেশি সুবিধা সম্পন্ন একটি উন্নত টেক্সট এডিটর।"
-
-# সাম
-#~ msgid "<b>Development Languages</b>"
-#~ msgstr "<b>ডেভেলপমেন্ট এর ভাষাসমূহ</b>"
-
-# সাম
-#~ msgid ""
-#~ "With all these <b>powerful tools</b>, you will be able to write "
-#~ "applications in <b>dozens of programming languages</b>:"
-#~ msgstr ""
-#~ "এসব <b>শক্তিশালী টুল</b> দিয়ে, আপনি <b>ডজন খানেক প্রোগ্রামিং ভাষায় অ্যাপ্লিকেশন "
-#~ "লিখতে পারবেন</b>:"
-
-#~ msgid "\t* The famous <b>C language</b>."
-#~ msgstr "\t* জনপ্রিয় <b>সি ভাষা</b>"
-
-#~ msgid "\t* Object oriented languages:"
-#~ msgstr "\t* অবজেক্ট ওরিয়েন্টেড ভাষা:"
-
-#~ msgid "\t\t* <b>C++</b>"
-#~ msgstr "\t\t* <b>C++</b>"
-
-#~ msgid "\t\t* <b>Java™</b>"
-#~ msgstr "\t\t* <b>জাভা (Java™)</b>"
-
-#~ msgid "\t* Scripting languages:"
-#~ msgstr "\t* স্ক্রিপ্টিং ভাষাসমূহ:"
-
-#~ msgid "\t\t* <b>Perl</b>"
-#~ msgstr "\t\t* <b>Perl</b>"
-
-#~ msgid "\t\t* <b>Python</b>"
-#~ msgstr "\t\t* <b>Python</b>"
-
-#~ msgid "\t* And many more."
-#~ msgstr "\t* আরও অনেক কিছু।"
-
-# সাম: Development ?
-#~ msgid "<b>Development Tools</b>"
-#~ msgstr "<b>ডেভেলপমেন্ট টুল</b>"
-
-# সাম
-# সমন্বিত অ্যাপ্লিকেশন
-#~ msgid ""
-#~ "With the powerful integrated development environment <b>KDevelop</b> and "
-#~ "the leading Linux compiler <b>GCC</b>, you will be able to create "
-#~ "applications in <b>many different languages</b> (C, C++, Java™, Perl, "
-#~ "Python, etc.)."
-#~ msgstr ""
-#~ "সমন্বিত ডেভেলপমেন্ট পরিবেশ <b>KDevelop</b> এবং প্রধান লিনাক্স কম্পাইলার "
-#~ "<b>GCC</b> দিয়ে আপনি <b>বিভিন্ন অনেক ভাষায়</b> অ্যাপ্লিকেশন তৈরী করতে পারবেন "
-#~ "(C, C++, Java™, Perl, Python ইত্যাদি)।"
-
-#~ msgid "<b>Groupware Server</b>"
-#~ msgstr "<b>গ্রুপওয়্যার সার্ভার</b>"
-
-# সাম
-# বৈশিষ্টপূর্ণ
-#~ msgid ""
-#~ "PowerPack+ will give you access to <b>Kolab</b>, a full-featured "
-#~ "<b>groupware server</b> which will, thanks to the client <b>Kontact</b>, "
-#~ "allow you to:"
-#~ msgstr ""
-#~ "PowerPack+ মাধ্যমে আপনি বৈশিষ্টপূর্ণ <b>গ্রুপওয়্যার সার্ভার</b> <b>Kolab</b> "
-#~ "ব্যবহারের সুযোগ পাবেন। এর অনেকটা কৃতিত্ব <b>Kontact</b> ক্লায়েন্টের, এবং এটি "
-#~ "দিয়ে আপনি পারছেন:"
-
-#~ msgid "\t* Send and receive your <b>e-mails</b>."
-#~ msgstr "\t* আপনার <b>ই-মেইলসমূহ</b> পাঠান এবং গ্রহণ করুন।"
-
-#~ msgid "\t* Share your <b>agendas</b> and your <b>address books</b>."
-#~ msgstr ""
-#~ "\t* আপনার <b>এজেন্ডাসমূহ</b> এবং আপনার <b>ঠিকানার বইসমূহ</b> শেয়ার করুন।"
-
-#~ msgid "\t* Manage your <b>memos</b> and <b>task lists</b>."
-#~ msgstr "\t* আপনার <b>মেমোসমূহ</b> এবং <b>কার্যতালিকাসমূহ</b> ম্যানেজ করুন।"
-
-#~ msgid "<b>Servers</b>"
-#~ msgstr "<b>সার্ভার</b>"
-
-#~ msgid ""
-#~ "Empower your business network with <b>premier server solutions</b> "
-#~ "including:"
-#~ msgstr ""
-#~ "আপনার ব্যবসায়িক নেটওয়ার্ককে <b>প্রিমিয়ার সার্ভার সলুশন</b> দিয়ে সজ্জিত করুন; এতে "
-#~ "রয়েছে:"
-
-#~ msgid ""
-#~ "\t* <b>Samba</b>: File and print services for Microsoft® Windows® clients."
-#~ msgstr ""
-#~ "\t* <b>Samba</b>: মাইক্রোসফ্‌ট® উইন্ডোজ® ক্লায়েন্টদের জন্য ফাইল এবং প্রিন্ট সার্ভিস।"
-
-#~ msgid "\t* <b>Apache</b>: The most widely used web server."
-#~ msgstr "\t* <b>Apache</b>: সর্বাপেক্ষা বেশি ব্যবহৃত ওয়েব সার্ভার।"
-
-#~ msgid ""
-#~ "\t* <b>MySQL</b> and <b>PostgreSQL</b>: The world's most popular open "
-#~ "source databases."
-#~ msgstr ""
-#~ "\t* <b>MySQL</b> এবং <b>PostgreSQL</b>: পৃথিবীর সর্বাপেক্ষা জনপ্রিয়তম উন্মুক্ত "
-#~ "সোর্সের ডাটাবেজসমূহ।"
-
-# সাম: Concurrent = সমবর্তী?
-#~ msgid ""
-#~ "\t* <b>CVS</b>: Concurrent Versions System, the dominant open source "
-#~ "network-transparent version control system."
-#~ msgstr ""
-#~ "\t* <b>CVS</b>: কনকারেন্ট ভার্সন সিস্টেম, প্রধান উন্মুক্ত সোর্স নেটওয়ার্ক‌-স্বচ্ছ "
-#~ "ভার্সন নিয়ন্ত্রণ সিস্টেম।"
-
-#~ msgid ""
-#~ "\t* <b>ProFTPD</b>: The highly configurable GPL-licensed FTP server "
-#~ "software."
-#~ msgstr ""
-#~ "\t* <b>ProFTPD</b>: উচ্চ কন্‌ফিগারকৃত জি-পি-এল লাইসেন্সপ্রাপ্ত এফ-টি-পি সার্ভার "
-#~ "সফ্‌টওয়্যার।"
-
-#~ msgid ""
-#~ "\t* <b>Postfix</b> and <b>Sendmail</b>: The popular and powerful mail "
-#~ "servers."
-#~ msgstr ""
-#~ "\t* <b>Postfix</b> এবং <b>Sendmail</b>: জনপ্রিয় এবং শক্তিশালী মেইল সার্ভার।"
-
-#~ msgid "<b>Mandriva Linux Control Center</b>"
-#~ msgstr "<b>ম্যান্ড্রিব -লিনাক্স নিয়ন্ত্রণ কেন্দ্র</b>"
-
-# সাম
-# নিয়ন্ত্রণ কেন্দ্র
-#~ msgid ""
-#~ "The <b>Mandriva Linux Control Center</b> is an essential collection of "
-#~ "Mandriva Linux-specific utilities designed to simplify the configuration "
-#~ "of your computer."
-#~ msgstr ""
-#~ "<b>Mandriva Linux নিয়ন্ত্রণ কেন্দ্র</b> একটি Mandriva Linux-সম্পর্কিত মৌলিক "
-#~ "ইউটিলিটির সমষ্টি যা কিনা আপনার কম্পিউটারের কনফিগারেশন সহজ করে তোলে। "
-
-# সাম
-# নিরাপত্তা স্তর
-#~ msgid ""
-#~ "You will immediately appreciate this collection of <b>more than 60</b> "
-#~ "handy utilities for <b>easily configuring your system</b>: hardware "
-#~ "devices, mount points, network and Internet, security level of your "
-#~ "computer, etc."
-#~ msgstr ""
-#~ "আপনি <b>আপনার সিস্টেম সহজে কনফিগার করার জন্য</b> এই <b>৬০ এর অধিক</b> "
-#~ "দরকারী ইউটিলিটির এই কালেকশনটির সুবিধা সাথে সাথে উপলব্ধি করতে পারবেন: আপনার "
-#~ "কম্পিউটারের হার্ডওয়্যার ডিভাইস, মাউন্ট পয়েন্ট, নেটওয়ার্ক এবং ইন্টারনেট, নিরাপত্তা "
-#~ "স্তর, ইত্যাদি। "
-
-#~ msgid "<b>The Open Source Model</b>"
-#~ msgstr "<b>উন্মুক্ত সোর্সের মডেল</b>"
-
-# সাম
-#~ msgid ""
-#~ "Like all computer programming, open source software <b>requires time and "
-#~ "people</b> for development. In order to respect the open source "
-#~ "philosophy, Mandriva sells added value products and services to <b>keep "
-#~ "improving Mandriva Linux</b>. If you want to <b>support the open source "
-#~ "philosophy</b> and the development of Mandriva Linux, <b>please</b> "
-#~ "consider buying one of our products or services!"
-#~ msgstr ""
-#~ "সব কম্পিউটার প্রোগ্রামিং এর মতই, উন্মুক্ত সোর্স সফ্টওয়্যার ডেভেলপমেন্টেও প্রয়োজন "
-#~ "<b>সময় এবং লোকবল</b>। উন্মুক্ত সোর্স ধারনাটির সমর্থনে এবং <b>Mandriva Linux "
-#~ "উন্নততর করার উদ্দেশ্যে</b> Mandriva মূল্য সংযোজিত পণ্য ও সেবা বিক্রয় করে থাকে। "
-#~ "আপনি যদি এই প্রচেষ্টায় সাহায্য করতে চান তবে <b>অনুগ্রহ করে</b> আমাদের যেকোন "
-#~ "পণ্য বা সেবা ক্রয় করুন!"
-
-# সাম: নাকি স্টোর?
-#~ msgid "<b>Online Store</b>"
-#~ msgstr "<b>অনলাইন বিপনীকেন্দ্র</b>"
-
-#~ msgid ""
-#~ "To learn more about Mandriva products and services, you can visit our "
-#~ "<b>e-commerce platform</b>."
-#~ msgstr ""
-#~ "ম্যনড্রেকসফ্‌টের প্রোডাক্টসমূহ এবং সার্ভিস সম্বন্ধে জ্ঞানার্জনের জন্য, আপনি আমাদের "
-#~ "<b>ই-কমার্স প্লাটফর্ম</b> এ ঘুরে আসতে পারেন।"
-
-#~ msgid ""
-#~ "There you can find all our products, services and third-party products."
-#~ msgstr ""
-#~ "যেখানে আপনি আপনার সকল প্রোডাক্ট, সার্ভিস এবং ৩য়-পার্টির প্রোডাক্টসমূহের পেতে "
-#~ "পারেন।"
-
-#~ msgid ""
-#~ "This platform has just been <b>redesigned</b> to improve its efficiency "
-#~ "and usability."
-#~ msgstr ""
-#~ "এই প্লাটফর্মটি এর দ্রুততা এবং ব্যবহার যোগ্যতা বাড়ানোর জন্য <b>পুনরায় ডিজাইন করা</"
-#~ "b>হয়েছে।"
-
-#~ msgid "Stop by today at <b>store.mandriva.com</b>!"
-#~ msgstr "আজ <b>store.mandriva.com</b> এ থেমে যান!"
-
-#~ msgid "<b>Mandriva Club</b>"
-#~ msgstr "<b>ম্যান্ড্রিব ক্লাব</b>"
-
-#~ msgid ""
-#~ "<b>Mandriva Club</b> is the <b>perfect companion</b> to your Mandriva "
-#~ "Linux product.."
-#~ msgstr ""
-#~ "<b>ম্যান্ড্রিব ক্লাব</b> আপনার ম্যান্ড্রিব লিনাক্স প্রোডাক্টের <b>সঠিক সংগী</b>.."
-
-#~ msgid ""
-#~ "Take advantage of <b>valuable benefits</b> by joining Mandriva Club, such "
-#~ "as:"
-#~ msgstr "ম্যান্ড্রিব ক্লাবে যোগ দিয়ে <b>মূল্যবান উপকারসমূহের</b> সুবিধা নিন, যেমন:"
-
-#~ msgid ""
-#~ "\t* <b>Special discounts</b> on products and services of our online store "
-#~ "<b>store.mandriva.com</b>."
-#~ msgstr ""
-#~ "\t* আমাদের অনলাইন <b>store.mandriva.com</b> স্টোরের প্রোডাক্টসমূহ এবং "
-#~ "সার্ভিসসমূহে<b>বিশেষ মূল্যহ্রাস</b>।"
-
-#~ msgid ""
-#~ "\t* Access to <b>commercial applications</b> (for example to NVIDIA® or "
-#~ "ATI™ drivers)."
-#~ msgstr ""
-#~ "\t* <b>বাণিজ্যিক অ্যাপ্লিকেশন</b>এ প্রবেশ (উদাহরণস্বরুপ NVIDIA® বা ATI™ "
-#~ "ড্রাইভারসমূহ)।"
-
-#~ msgid "\t* Participation in Mandriva Linux <b>user forums</b>."
-#~ msgstr "\t* ম্যান্ড্রিব লিনাক্স <b>ব্যবহারকারীদের ফোরাম</b> এ অংশগ্রহণ।"
-
-# সাম
-#~ msgid ""
-#~ "\t* <b>Early and privileged access</b>, before public release, to "
-#~ "Mandriva Linux <b>ISO images</b>."
-#~ msgstr ""
-#~ "\t* Mandriva Linux <b>ISO ইমেজগুলো</b>, <b>নির্ধারিত সময়ের পূর্বেই</b>, "
-#~ "পাওয়ার বিশেষ সুবিধা।"
-
-#~ msgid "<b>Mandriva Online</b>"
-#~ msgstr "<b>ম্যান্ড্রিব অনলাইন (Mandriva Online)</b>"
-
-#~ msgid ""
-#~ "<b>Mandriva Online</b> is a new premium service that Mandriva is proud to "
-#~ "offer its customers!"
-#~ msgstr ""
-#~ "<b>ম্যান্ড্রিব অনলাইন</b> হচ্ছে একটি নতুন প্রিমিয়াম সার্ভিস যা ম্যান্ড্রিব সফ্‌ট তার "
-#~ "ক্রেতাদের দিতে পেরে গর্বিত!"
-
-#~ msgid ""
-#~ "Mandriva Online provides a wide range of valuable services for <b>easily "
-#~ "updating</b> your Mandriva Linux systems:"
-#~ msgstr ""
-#~ "ম্যান্ড্রিব অনলাইন আপনার ম্যান্ড্রিব লিনাক্স সিস্টেমের জন্য <b>সহজে আপডেট</b> এর "
-#~ "জন্য বিশাল সীমানার গুরুত্বপূর্ণ সার্ভিস:"
-
-#~ msgid "\t* <b>Perfect</b> system security (automated software updates)."
-#~ msgstr "\t* <b>সঠিক</b> সিস্টেম নিরাপত্তা (স্বয়ংক্রিয় সফ্‌টওয়্যার আপডেট)।"
-
-#~ msgid ""
-#~ "\t* <b>Notification</b> of updates (by e-mail or by an applet on the "
-#~ "desktop)."
-#~ msgstr ""
-#~ "\t* আপডেটের <b>বিজ্ঞপ্তিপত্র</b> (ই-মেইলের মাধ্যমে বা ডেস্কটপের কোন একটি "
-#~ "অ্যাপলেটের মাধ্যমে)।"
-
-#~ msgid "\t* Flexible <b>scheduled</b> updates."
-#~ msgstr "\t* নমনীয় <b>রুটিনমাফিক</b> আপডেটসমূহ।"
-
-#~ msgid ""
-#~ "\t* Management of <b>all your Mandriva Linux systems</b> with one account."
-#~ msgstr ""
-#~ "\t* একটি অ্যাকাউন্ট দিয়ে <b>আপনার সম্পূর্ণ ম্যান্ড্রিব লিনাক্স সিস্টেমের</b> "
-#~ "ম্যানেজমেন্ট।"
-
-#~ msgid "<b>Mandriva Expert</b>"
-#~ msgstr "<b>Mandriva Expert</b>"
-
-#~ msgid ""
-#~ "Do you require <b>assistance?</b> Meet Mandriva's technical experts on "
-#~ "<b>our technical support platform</b> www.mandrivaexpert.com."
-#~ msgstr ""
-#~ "আপনার কি কোন <b>সহযোগিতা</b> প্রয়োজন? www.mandrivaexpert.com এর <b>আমাদের "
-#~ "প্রযুক্তিগত সহায়তা প্লাটফর্ম</b> এ ম্যান্ড্রিব সফ্‌টের অভিজ্ঞ প্রযুক্তিবিদদের সাথে "
-#~ "যোগাযোগ করুন।"
-
-#~ msgid ""
-#~ "Thanks to the help of <b>qualified Mandriva Linux experts</b>, you will "
-#~ "save a lot of time."
-#~ msgstr ""
-#~ "<b>যোগ্যতাসম্পন্ন অভিজ্ঞ ম্যান্ড্রিব লিনাক্স ব্যবহারকারীদের</b> সাহায্যের জন্য "
-#~ "ধন্যবাদ, আপনি অনেক সময় রক্ষা করবেন।"
-
-#~ msgid ""
-#~ "For any question related to Mandriva Linux, you have the possibility to "
-#~ "purchase support incidents at <b>store.mandriva.com</b>."
-#~ msgstr ""
-#~ "ম্যান্ড্রিব লিনাক্স সম্পর্কিত কোন প্রশ্নের জন্য, আপনাকে <b>store.mandriva.com</b> "
-#~ "থেকে সকল প্রকার সহায়তা নিতে হবে।"
-
-#~ msgid "Network:"
-#~ msgstr "নেটওয়ার্ক:"
-
-#~ msgid "Mode:"
-#~ msgstr "মোড:"
-
-#~ msgid "Encryption:"
-#~ msgstr "এনক্রিপশন:"
-
-#~ msgid "Status"
-#~ msgstr "স্ট্যাটাস"
-
-#~ msgid "Disconnect"
-#~ msgstr "সংযোগ বিচ্ছিন্ন করো"
-
-#~ msgid ""
-#~ "x coordinate of text box\n"
-#~ "in number of characters"
-#~ msgstr ""
-#~ "বর্ণসংখ্যায়\n"
-#~ "টেক্সট বাক্সের X অক্ষ"
-
-#~ msgid ""
-#~ "y coordinate of text box\n"
-#~ "in number of characters"
-#~ msgstr ""
-#~ "বর্ণসংখ্যায়\n"
-#~ "টেক্সট বাক্সের y অক্ষ"
-
-#~ msgid "text width"
-#~ msgstr "টেক্সটের প্রস্থতা"
-
-#~ msgid "ProgressBar color selection"
-#~ msgstr "প্রোগ্রেসবারের রং নির্বাচন"
-
-#~ msgid "Connect to the Internet"
-#~ msgstr "ইন্টারনেটে সংযুক্ত করো"
-
-#~ msgid ""
-#~ "The most common way to connect with adsl is pppoe.\n"
-#~ "Some connections use PPTP, a few use DHCP.\n"
-#~ "If you do not know, choose 'use PPPoE'"
-#~ msgstr ""
-#~ "adsl এর সাথে সংযুক্ত হওয়ার সবচেয়ে সাধারণ উপায় হচ্ছে pppoe।\n"
-#~ "কিছু সংযোগ PPTP ব্যবহার করে, কিছু DHCP ব্যবহার করে।\n"
-#~ "যদি আপনি না জানেন, 'PPPoE ব্যবহার করুন' বেছে নিন"
-
-#~ msgid "Do not print any test page"
-#~ msgstr "কোন পরীক্ষামূলক পৃষ্ঠা ছাপাবে না"
-
-#~ msgid "Printer on SMB/Windows 95/98/NT server"
-#~ msgstr "SMB/উইন্ডোজ 95/98/NT সার্ভারে প্রিন্টার"
-
-#~ msgid "Found printer on %s..."
-#~ msgstr "%s এ প্রিন্টার পাওয়া গেছে ..."
-
-#~ msgid "Useless without Terminal Server"
-#~ msgstr "টার্মিনাল সার্ভার ছাড়া অর্থহীন"
-
-#~ msgid ""
-#~ "Please select default client type.\n"
-#~ " 'Thin' clients run everything off the server's CPU/RAM, using the "
-#~ "client display.\n"
-#~ " 'Fat' clients use their own CPU/RAM but the server's filesystem."
-#~ msgstr ""
-#~ "অনুগ্রহপূর্বক ক্লায়েন্টের ডিফল্ট ধরন বেছে নিন।\n"
-#~ " 'থিন' ক্লায়েন্টের সব কিছুই সার্ভারের সি.পি.ইউ./র্যাম এবং ক্লায়েন্টের ডিসপ্লে "
-#~ "ব্যবহার করে চালানো হয়।\n"
-#~ " আর 'ফ্যাট' ক্লায়েন্ট তার নিজস্ব সি.পি.ইউ./র্যাম এবং সার্ভারে ফাইল সিস্টেম "
-#~ "ব্যবহার করে।"
-
-#~ msgid "dhcpd Config..."
-#~ msgstr "dhcpd কনফিগ..."
-
-#~ msgid ""
-#~ "package 'ImageMagick' is required to be able to complete configuration.\n"
-#~ "Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
-#~ msgstr ""
-#~ "কন্‌ফিগারেশন সম্পূর্ণ করার জন্য 'ImageMagic' প্যাকেজটি প্রয়োজন।\n"
-#~ "'ImageMagic' ইনস্টল করতে \"ঠিক আছে\" অথবা পরিত্যাগ করতে \"বাতিল\" ক্লিক করুন"
-
-#, fuzzy
-#~ msgid "Unable to select wireless network: %s"
-#~ msgstr "%s মিররের সাথে সংযুক্ত হওয়া গেলনা"
-
-# sam: "Interactive intrusion" was translated as পারস্পরিক সংযোগশীল
-#~ msgid "Interactive intrusion detection"
-#~ msgstr "পারস্পরিক সংযোগশীল অনধিকার প্রবেশ সনাক্তকরণ "
-
-# সাম: not sure
-#~ msgid "Active Firewall: intrusion detected"
-#~ msgstr "সক্রিয় ফায়ারওয়াল: অনধিকার প্রবেশ সনাক্ত হয়েছে!"
-
-# সাম
-#~ msgid "Do you want to blacklist the attacker?"
-#~ msgstr "আপনি কি আক্রমনকারীকে কালো তালিকাভুক্ত করতে চান?"
-
-#~ msgid "Grub"
-#~ msgstr "Grub"
+#~ msgid "number of capture buffers for mmap'ed capture"
+#~ msgstr "mmap'ed ক্যাপচারের জন্য ক্যাপচার বাফারের সংখ্যা"
-# ##msgstr "স্থানীয় নেটওয়ার্ক ঠিকানা"
-#~ msgid "Local Network adress"
-#~ msgstr "স্থানীয় নেটওয়ার্ক অ্যাড্রেস"
+#~ msgid "PLL setting:"
+#~ msgstr "PLL সেটিং:"
-#~ msgid "Configuring scripts, installing software, starting servers..."
-#~ msgstr "স্ক্রীপ্ট কন্‌ফিগার হচ্ছে, সফটওয়্যার ইনস্টল হচ্ছে, সার্ভার চালু হচ্ছে..."
-
-#~ msgid "drakfloppy"
-#~ msgstr "ড্রেকফ্লপি"
-
-#~ msgid "Boot disk creation"
-#~ msgstr "বুট ডিস্ক তৈরি"
-
-#~ msgid "General"
-#~ msgstr "সাধারণ"
-
-#~ msgid "Kernel version"
-#~ msgstr "কার্ণেল সংস্করণ"
-
-#~ msgid "Preferences"
-#~ msgstr "পছন্দ"
-
-#~ msgid "Advanced preferences"
-#~ msgstr "অগ্রসর পছন্দ"
-
-#~ msgid "Size"
-#~ msgstr "আকার"
-
-#~ msgid "Mkinitrd optional arguments"
-#~ msgstr "Mkinitrd'র ঐচ্ছিক আর্গুমেন্ট"
-
-#~ msgid "force"
-#~ msgstr "জোরপূর্বক"
-
-#~ msgid "omit raid modules"
-#~ msgstr "রেইড (RAID) মডিউল বাদ দাও"
-
-#~ msgid "if needed"
-#~ msgstr "যদি প্রয়োজন হয়"
-
-#~ msgid "omit scsi modules"
-#~ msgstr "SCSI মডিউল বাদ দাও"
-
-#~ msgid "Add a module"
-#~ msgstr "একটি মডিউল সংযুক্ত করুন"
-
-#~ msgid "Remove a module"
-#~ msgstr "একটি মডিউল সরিয়ে ফেলুন"
-
-#~ msgid "Be sure a media is present for the device %s"
-#~ msgstr "নিশ্চিত হোন যে ডিভাইস %s এর জন্য কোন মিডিয়া উপস্থিত আছে"
-
-#~ msgid ""
-#~ "There is no medium or it is write-protected for device %s.\n"
-#~ "Please insert one."
-#~ msgstr ""
-#~ "%s ডিভাইসের জন্য কোন মিডিয়াম নেই অথবা তার লেখার অনুমতি নেই।\n"
-#~ "অনুগ্রহ করে একটি প্রবেশ করান।"
-
-#~ msgid "Unable to fork: %s"
-#~ msgstr "ফর্ক করতে ব্যর্থ: %s"
-
-#~ msgid "Floppy creation completed"
-#~ msgstr "ফ্লপি তৈরি সম্পন্ন হয়েছে"
-
-#~ msgid "The creation of the boot floppy has been successfully completed \n"
-#~ msgstr "বুট ফ্লপি তৈরি সফলভাবে সম্পন্ন হয়েছে \n"
-
-#~ msgid ""
-#~ "Unable to properly close mkbootdisk:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
-#~ msgstr ""
-#~ "mkbootdisk সঠিকভাবে বন্ধ করতে ব্যর্থ:\n"
-#~ "\n"
-#~ "<span foreground=\"লাল\"><tt>%s</tt></span>"
-
-#~ msgid ""
-#~ "You may not be able to install lilo (since lilo does not handle a LV on "
-#~ "multiple PVs)"
-#~ msgstr ""
-#~ "আপনি lilo ইনস্টল করতে সক্ষম হবেন না (যতক্ষন পর্যন্ত lilo অনেকগুলো PV'তে একটি "
-#~ "LV'কে ব্যবহার করতে পারবে না)"
-
-#~ msgid "use PPPoE"
-#~ msgstr "PPPoE ব্যবহার করো"
-
-#~ msgid "use PPTP"
-#~ msgstr "PPTP ব্যবহার করো"
-
-#~ msgid "use DHCP"
-#~ msgstr "DHCP ব্যবহার করো"
-
-#~ msgid "Alcatel Speedtouch USB"
-#~ msgstr "অ্যালকাটেল স্পিডটাচ ইউএসবি"
-
-#~ msgid " - detected"
-#~ msgstr "- সনাক্ত হয়েছে"
-
-#~ msgid "Sagem (using PPPoA) USB"
-#~ msgstr "সাজেম (PPPoA ব্যবহার করে) ইউএসবি"
-
-#~ msgid "Sagem (using DHCP) USB"
-#~ msgstr "সাজেম (DHCP ব্যবহার করে) ইউএসবি"
-
-#~ msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-#~ msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ইত্যাদী"
-
-# FIXME
-#~ msgid ""
-#~ "Warning, another Internet connection has been detected, maybe using your "
-#~ "network"
-#~ msgstr ""
-#~ "সতর্কবাণী, অপর একটি ইন্টারনেট সংযোগ সনাক্ত করা গিয়েছে, যা সম্ভবত অপানার "
-#~ "নেটওয়ার্ক ব্যবহার করছে"
-
-#~ msgid "PXE Server Configuration"
-#~ msgstr "PXE সার্ভার কন্‌ফিগারেশন"
-
-#~ msgid "Installation Server Configuration"
-#~ msgstr "সার্ভার কন্‌ফিগারেশন ইনস্টলেশন"
-
-#~ msgid ""
-#~ "You are about to configure your computer to install a PXE server as a "
-#~ "DHCP server\n"
-#~ "and a TFTP server to build an installation server.\n"
-#~ "With that feature, other computers on your local network will be "
-#~ "installable using this computer as source.\n"
-#~ "\n"
-#~ "Make sure you have configured your Network/Internet access using "
-#~ "drakconnect before going any further.\n"
-#~ "\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN)."
-#~ msgstr ""
-#~ "আপনি আপনার কম্পিউটারে DHCP সার্ভার হিসেবে PXE সার্ভার এবং ইনস্টলেশন সার্ভার "
-#~ "তৈরি করতে TFTP\n"
-#~ "সার্ভার ইনস্টল করতে কন্‌ফিগার প্রায় করে ফেলেছেন।\n"
-#~ "এই বৈশিষ্ট্যের কারণে, আপনার লোকাল নেটওয়ার্কে থাকা অন্য কম্পিউটারগুলো এই "
-#~ "কম্পিউটারটিকে উত্‍স হিসেবে ব্যবহার করে ইনস্টলে সক্ষম হবে।\n"
-#~ "\n"
-#~ "পরবর্তী কোন কাজ করার আগে নিশ্চিত করুন যে drakconnect দিয়ে আপনার নেটওয়ার্ক/"
-#~ "ইন্টারনেটে প্রবেশ কন্‌ফিগার করেছেন।\n"
-#~ "\n"
-#~ "নোট: স্থানীয় এরিয়া নেটওয়ার্ক (LAN) করার জন্য আপনার একটি নেটওয়ার্ক এডাপ্টর "
-#~ "লাগবে।"
-
-#~ msgid "No network adapter on your system!"
-#~ msgstr "আপনার সিস্টেমে কোন নেটওয়ার্ক এডাপ্টর নেই!"
-
-#~ msgid "Choose the network interface"
-#~ msgstr "নেটওয়ার্ক ইন্টার্ফেস পছন্দ করুন"
-
-#~ msgid ""
-#~ "Please choose which network interface will be used for the dhcp server."
-#~ msgstr ""
-#~ "অনুগ্রহ করে dhcp সার্ভারের জন্য ব্যবহৃত হবে এমন নেটওয়ার্ক ইন্টাফেস পছন্দ করুন।"
-
-#~ msgid "Interface %s (on network %s)"
-#~ msgstr "ইন্টারফেস %s (নেটওয়ার্কে %s)"
-
-#~ msgid ""
-#~ "The DHCP server will allow other computer to boot using PXE in the given "
-#~ "range of address.\n"
-#~ "\n"
-#~ "The network address is %s using a netmask of %s.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "DHCP সার্ভার অন্যান্য কম্পিউটারকে নির্দিষ্ট অ্যাড্রেস সীমার মধ্যে PXE ব্যবহার করে "
-#~ "বুট করার অনুমতি দেবে।\n"
-#~ "\n"
-#~ "%s নেটমাস্ক ব্যবহার করে নেটওয়ার্ক অ্যাড্রেস হচ্ছে %s.\n"
-#~ "\n"
-
-#~ msgid "The DHCP start ip"
-#~ msgstr "DHCP চালুর আই-পি"
-
-#~ msgid "The DHCP end ip"
-#~ msgstr "DHCP সমাপ্তির আই-পি"
-
-#~ msgid ""
-#~ "Please indicate where the installation image will be available.\n"
-#~ "\n"
-#~ "If you do not have an existing directory, please copy the CD or DVD "
-#~ "contents.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "অনুগ্রহ করে দেখিয়ে দিন যে কোথায় ইনস্টলেশনের ইমেজ পাওয়া যাবে।\n"
-#~ "\n"
-#~ "যদি ইতিমধ্যে তৈরি কোন ডিরেক্টরি আপনার না থাকে, অনুগ্রহ করে সিডি বা ডিভিডি'র "
-#~ "কনটেন্ট কপি করুন।\n"
-#~ "\n"
-
-#~ msgid "Installation image directory"
-#~ msgstr "ইনস্টলেশন ইমেজ ডিরেক্টরি"
-
-#~ msgid "No image found"
-#~ msgstr "কোন ইমেজ পাওয়া যায়নি"
-
-#~ msgid ""
-#~ "No CD or DVD image found, please copy the installation program and rpm "
-#~ "files."
-#~ msgstr ""
-#~ "কোন সিডি বা ডিভিডি ইমেজ পাওয়া যায়নি, অনুগ্রহ করে ইনস্টলেশন প্রোগ্রাম এবং rpm "
-#~ "ফাইলগুলো কপি করুন।"
-
-#~ msgid ""
-#~ "Please indicate where the auto_install.cfg file is located.\n"
-#~ "\n"
-#~ "Leave it blank if you do not want to set up automatic installation mode.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "অনুগ্রহ করে দেখিয়ে দিন যে কোথায় auto_install.cfg ফাইলটি আছে।\n"
-#~ "\n"
-#~ "আপনি যদি স্বয়ংক্রিয় ইনস্টলেশন মুড সেটআপ করতে না চান তাহলে এটিকে খালি রেখে "
-#~ "দিন।\n"
-#~ "\n"
-
-#~ msgid "Location of auto_install.cfg file"
-#~ msgstr "auto_install.cfg ফাইলের জায়গা"
-
-#~ msgid "Do it later"
-#~ msgstr "এটা পরে করো"
-
-#~ msgid "MdkKDM (Mandriva Linux Display Manager)"
-#~ msgstr "MdkKDM (ম্যান্ড্রিব লিনাক্স ডিসপ্লে ম্যানেজার)"
-
-#~ msgid "Internet Connection Sharing currently disabled"
-#~ msgstr "ইন্টারনেট সংযুক্তিতে ভাগাভাগি আপাতত নিষ্ক্রিয় করা আছে"
-
-#~ msgid "Enabling servers..."
-#~ msgstr "সার্ভার সক্রিয়করণ..."
-
-#~ msgid "Internet Connection Sharing currently enabled"
-#~ msgstr "ইন্টারনেট সংযুক্তিতে ভাগাভাগি বর্তমানে সক্রিয়"
-
-#~ msgid "Interface %s (using module %s)"
-#~ msgstr "ইন্টারফেস %s (%s মডিউল ব্যবহার করে)"
-
-#~ msgid "Interface %s"
-#~ msgstr "ইন্টারফেস %s"
-
-#~ msgid "Network interface already configured"
-#~ msgstr "নেটওয়ার্ক ইন্টারফেস ইতিমধ্যে কন্‌ফিগার হয়ে গেছে"
-
-#~ msgid ""
-#~ "Warning, the network adapter (%s) is already configured.\n"
-#~ "\n"
-#~ "Do you want an automatic re-configuration?\n"
-#~ "\n"
-#~ "You can do it manually but you need to know what you're doing."
-#~ msgstr ""
-#~ "সাবধান, %s নেটওয়ার্ক এডাপ্টরটি ইতিমধ্যে কন্‌ফিগার হয়ে গেছে।\n"
-#~ "\n"
-#~ "আপনি কি এটি স্বয়ংক্রিয়ভাবে পুনরায় কন্‌ফিগার করতে চান?\n"
-#~ "\n"
-#~ "আপনি এটি নিজে নিজে করতে পারেন কিন্তু আপনাকে জানতে হবে যে আপনি কি করছেন।"
-
-#~ msgid "No (experts only)"
-#~ msgstr "না (শুধুমাত্র অভিজ্ঞরা)"
-
-#~ msgid "Show current interface configuration"
-#~ msgstr "বর্তমান ইন্টারফেস কন্‌ফিগারেশন দেখাও"
-
-#~ msgid "Current interface configuration"
-#~ msgstr "বর্তমান ইন্টারফেস কন্‌ফিগারেশন"
-
-#~ msgid ""
-#~ "Current configuration of `%s':\n"
-#~ "\n"
-#~ "Network: %s\n"
-#~ "IP address: %s\n"
-#~ "IP attribution: %s\n"
-#~ "Driver: %s"
-#~ msgstr ""
-#~ "`%s' এর বর্তমান কন্‌ফিগারেশন:\n"
-#~ "\n"
-#~ "নেটওয়ার্ক: %s\n"
-#~ "আইপি (IP) অ্যাড্রেস: %s\n"
-#~ "আইপি (IP) attribution: %s\n"
-#~ "ড্রাইভার: %s"
-
-#~ msgid ""
-#~ "I can keep your current configuration and assume you already set up a "
-#~ "DHCP server; in that case please verify I correctly read the Network that "
-#~ "you use for your local network; I will not reconfigure it and I will not "
-#~ "touch your DHCP server configuration.\n"
-#~ "\n"
-#~ "The default DNS entry is the Caching Nameserver configured on the "
-#~ "firewall. You can replace that with your ISP DNS IP, for example.\n"
-#~ "\t\t \n"
-#~ "Otherwise, I can reconfigure your interface and (re)configure a DHCP "
-#~ "server for you.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "আমি আপনার বর্তমান কন্‌ফিগারেশন বজায় রাখতে পারি এবং আশা করছি আপনি ইতিমধ্যেই "
-#~ "একটি DHCP সার্ভার সেটআপ করেছেন; সেক্ষেত্রে অনুগ্রহ করে দেখে নিন যে আমি আপনার "
-#~ "ব্যবহৃত স্থানীয় নেটওয়ার্ক সঠিকভাবে পড়তে পারি কিনা; আমি এটা পুনরায় কন্‌ফিগার করব "
-#~ "না এবং আমি আপনার DHCP সার্ভার কন্‌ফিগারেশনে স্পর্শ করব না।\n"
-#~ "\n"
-#~ "ডিফল্ট DNS হচ্ছে Caching Nameserver যা ফায়ারওয়ালে (Firewall) কন্‌ফিগার করা "
-#~ "আছে। আপনি আপনি আপনার ISP DNP IP দিয়ে তা প্রতিস্থাপিত করতে পারেন, "
-#~ "উদাহরণস্বরুপ।\n"
-#~ "\t\t \n"
-#~ "অন্যথায়, আমি আপনার ইন্টারফেস পুনরায় কন্‌ফিগার করতে পারি এবং আপনার জন্য একটি "
-#~ "DHCP সার্ভার (পুনরায়)কন্‌ফিগার করতে পারি।\n"
-#~ "\n"
-
-#~ msgid "(This) DHCP Server IP"
-#~ msgstr "(এই) DHCP সার্ভার আই-পি(IP)"
-
-#~ msgid "Re-configure interface and DHCP server"
-#~ msgstr "ইন্টারফেস এবং DHCP সার্ভার পুনরায় কন্‌ফিগার করো"
-
-# #মুক্ত করছে নাকি হচ্ছে -----Fix me
-#~ msgid "The Local Network did not finish with `.0', bailing out."
-#~ msgstr "স্থানীয় নেটওয়ার্ক `.0' দিয়ে শেষ ছিল না, মুক্ত হচ্ছে।"
-
-#~ msgid "Number of logical extents: %d"
-#~ msgstr "লজিকাল ইভেন্টের সংখ্যা: %d"
-
-#~ msgid ""
-#~ "WARNING: this device has been previously configured to connect to the "
-#~ "Internet.\n"
-#~ "Modifying the fields below will override this configuration.\n"
-#~ "Do you really want to reconfigure this device?"
-#~ msgstr ""
-#~ "সতর্কীকরণ: এই যন্ত্রটি ইন্টারনেটের সংগে যুক্ত করার জন্য পূর্ববর্তীতে কন্‌ফিগার করা "
-#~ "হয়েছিল।\n"
-#~ "নিচের কোন ক্ষেত্রে পরিবর্তনের জন্য এই কন্‌ফিগারেশন বাতিল হয়ে যাবে।\n"
-#~ "আপনি কি আসলেই এই যন্ত্রটি পুনরায় কন্‌ফিগার করতে চান?"
-
-# সাম
-#~ msgid ""
-#~ " - Create etherboot floppies/CDs:\n"
-#~ " \tThe diskless client machines need either ROM images on the NIC, "
-#~ "or a boot floppy\n"
-#~ " \tor CD to initiate the boot sequence. drakTermServ will help "
-#~ "generate these\n"
-#~ " \timages, based on the NIC in the client machine.\n"
-#~ " \t\t\n"
-#~ " \tA basic example of creating a boot floppy for a 3Com 3c509 "
-#~ "manually:\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/lib/etherboot/floppyload.bin \\\n"
-#~ " \t\t/usr/share/etherboot/start16.bin \\\t\t\t\n"
-#~ " \t\t/usr/lib/etherboot/zimg/3c509.zimg > /dev/fd0"
-#~ msgstr ""
-#~ " - ইথারবুট ফ্লপি/CD তৈরী করুন:\n"
-#~ " \tডিস্কবিহীন ক্লায়েন্ট মেশিনগুলোতে বুট সিকোয়েন্স চালু করার জন্য NIC এর ROM "
-#~ "ইমেজ\n"
-#~ " \tবা বুট ফ্লপি প্রয়োজন। ক্লায়েন্ট মেশিনের NIC এর উপর ভিত্তি করে "
-#~ "drakTermServ\n"
-#~ " \tএই ইমেজ গুলো তৈরী করতে সাহায্য করবে।\n"
-#~ " \t\t\n"
-#~ " \tএকটি 3Com 3c509 এর জন্য নিজ হাতে বুট ফ্লপি তৈরী করার একটি সাধারন "
-#~ "উদাহরন:\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/lib/etherboot/floppyload.bin \\\n"
-#~ " \t\t/usr/share/etherboot/start16.bin \\\t\t\t\n"
-#~ " \t\t/usr/lib/etherboot/zimg/3c509.zimg > /dev/fd0 "
-
-#~ msgid "Dynamic IP Address Pool:"
-#~ msgstr "ডাইনামিক আই-পি অ্যাড্রেস পুল:"
-
-#~ msgid "hd"
-#~ msgstr "hd"
-
-#~ msgid "tape"
-#~ msgstr "টেপ"
-
-#~ msgid "WebDAV remote site already in sync!"
-#~ msgstr "WebDAV এর রিমোট সাইট ইতিমধ্যেই sync এ আছে!"
-
-#~ msgid "WebDAV transfer failed!"
-#~ msgstr "WebDAV স্থানান্তর ব্যর্থ!"
-
-#~ msgid ""
-#~ "Backup quota exceeded!\n"
-#~ "%d MB used vs %d MB allocated."
-#~ msgstr ""
-#~ "ব্যাকআপ কোটা পেরিয়ে গেছে!\n"
-#~ "%d মেগাবাইট ব্যবহৃত বনাম %d মেগাবাইট বরাদ্দ।"
-
-#~ msgid ""
-#~ "Maximum size\n"
-#~ " allowed for Drakbackup (MB)"
-#~ msgstr "ড্রেকব্যাক-আপ-এর জন্য অনুমোদনকৃত সর্বোচ্চ আকার (মেগাবাইট)"
-
-#~ msgid "\t-Network by webdav.\n"
-#~ msgstr "\t-webdav-এর মাধ্যমে নেটওয়ার্ক।\n"
-
-#~ msgid "first step creation"
-#~ msgstr "প্রথম ধাপ তৈরি"
-
-#~ msgid "choose image file"
-#~ msgstr "ছবি পছন্দ করুন"
-
-#~ msgid "Configure bootsplash picture"
-#~ msgstr "bootsplash ছবি কন্‌ফিগার করো"
-
-#~ msgid "the color of the progress bar"
-#~ msgstr "প্রোগ্রেস বারের রং"
-
-#~ msgid "Preview"
-#~ msgstr "প্রিভিউ"
-
-#~ msgid "Choose color"
-#~ msgstr "রঙ পছন্দ করুন"
-
-#~ msgid "Make kernel message quiet by default"
-#~ msgstr "ডিফল্টভাবে কার্নেল বার্তা স্থির করুন"
-
-#~ msgid "Notice"
-#~ msgstr "নির্দেশ"
-
-#~ msgid "This theme does not yet have a bootsplash in %s!"
-#~ msgstr "%s এ এই থীমের কোন bootsplash নেই !"
-
-#~ msgid "You must choose an image file first!"
-#~ msgstr "আপনাকে অবশ্যই প্রথমে একটি ইমেজ ফাইল পছন্দ করতে হবে!"
-
-#~ msgid "Generating preview..."
-#~ msgstr "প্রিভিউ তৈরী করা হচ্ছে ..."
-
-#~ msgid "%s BootSplash (%s) preview"
-#~ msgstr "%s BootSplash (%s) প্রিভিউ"
-
-#~ msgid ""
-#~ "The image \"%s\" cannot be load due to the following issue:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\">%s</span>"
-#~ msgstr ""
-#~ "\"%s\" ছবিটি নিম্নলিখিত কারণে লোড করা যাচ্ছে না:\n"
-#~ "\n"
-#~ "<span foreground=\"লাল\">%s</span>"
-
-#~ msgid "No floppy drive available"
-#~ msgstr "কোন ফ্লপি ড্রাইভ উপস্থিত নেই"
-
-#~ msgid "Please insert the Update Modules floppy in drive %s"
-#~ msgstr "%s ড্রাইভে মডিউল আপডেটের ফ্লপি প্রবেশ করান"
-
-# sam
-#~ msgid ""
-#~ "_: keyboard\n"
-#~ "Tifinagh (+latin/arabic)"
-#~ msgstr "টিফিনাগ (‍‍+ল্যাটিন/আরবী)"
-
-#~ msgid "No network card"
-#~ msgstr "কোন নেটওয়ার্ক কার্ড নেই"
-
-#~ msgid ""
-#~ "The following protocols can be used to configure an ethernet connection. "
-#~ "Please choose the one you want to use"
-#~ msgstr ""
-#~ "ইথারনেট সংযুক্তি কন্‌ফিগার করার জন্য নিম্নলিখিত প্রোটোকল ব্যবহৃত হতে পারে। আপনি "
-#~ "যেটি ব্যবহার করতে চান অনুগ্রহ করে সেটি বেছে নিন"
-
-# সাম
-#~ msgid "Use already installed driver (%s)"
-#~ msgstr "পূর্বে ইনস্টলকৃত (%s) ড্রাইভার ব্যবহার করুন"
-
-# সাম
-#~ msgid "Use Wi-Fi Protected Access (WPA)"
-#~ msgstr "Wi-Fi সংরক্ষিত প্রবেশাধিকার (WPA) ব্যবহার করুন "
+#~ msgid "Radio support:"
+#~ msgstr "রেডিও সাপোর্ট:"
-#~ msgid "You've not selected any font"
-#~ msgstr "আপনি কোন ফন্ট বেছে নেন নি"
+#~ msgid "enable radio support"
+#~ msgstr "রেডিও সাপোর্ট সক্রিয় করো"
-#~ msgid "http://www.mandrivalinux.com/en/101errata.php3"
-#~ msgstr "http://www.mandrivalinux.com/en/101errata.php3"
+#~ msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+#~ msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index d9e5ad5de..6f028a56f 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -1,791 +1,34 @@
# DrakX e Brezhoneg.
# Copyright (C) 1999-2005 Mandriva
-# Thierry Vignaud <tvignaud@mandriva.com>, 1999-2005
+# Thierry Vignaud <tvignaud@mandriva.com>, 1999-2007
# Jañ-Mai Drapier <jan-mai.drapier@mail.dotcom.fr>, 1999-2000
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX 10.2\n"
-"POT-Creation-Date: 2006-03-05 18:57+0800\n"
-"PO-Revision-Date: 2006-03-12 20:24+0100\n"
+"POT-Creation-Date: 2007-03-21 12:10+0100\n"
+"PO-Revision-Date: 2007-02-01 00:52+0100\n"
"Last-Translator: Thierry Vignaud <tvignaud@mandriva.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1;plural=0\n"
-#: ../move/move.pm:292
-#, c-format
-msgid "Which USB key do you want to format?"
-msgstr "Pe seurt alc'hwez USB a vennit furmadiñ ?"
-
-#: ../move/move.pm:296
-#, c-format
-msgid ""
-"You are about to format a USB device \"%s\". This will delete all data on "
-"it.\n"
-"Make sure that the selected device is the USB key you want to format. \n"
-"We advise you to unplug all other USB storage devices while doing this "
-"operation."
-msgstr ""
-
-#: ../move/move.pm:448 ../move/move.pm:460
-#, c-format
-msgid "Key is not writable"
-msgstr "Ne m'eus ket gallet skrivañ en alc'hwez"
-
-#: ../move/move.pm:450
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-
-#: ../move/move.pm:452
-#, c-format
-msgid "Retry"
-msgstr "Aklask"
-
-#: ../move/move.pm:453 ../move/move.pm:497
-#, c-format
-msgid "Continue without USB key"
-msgstr "Kenderc'hel hep ur alc'hwez USB"
-
-#: ../move/move.pm:462
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled, but we can not safely\n"
-"unplug it now.\n"
-"\n"
-"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandriva Move again."
-msgstr ""
-
-#: ../move/move.pm:468 help.pm:410 install_steps_interactive.pm:1303
-#, c-format
-msgid "Reboot"
-msgstr "Adlañsañ"
-
-#: ../move/move.pm:473
-#, c-format
-msgid ""
-"Your USB key does not have any valid Windows (FAT) partitions.\n"
-"We need one to continue (beside, it's more standard so that you\n"
-"will be able to move and access your files from machines\n"
-"running Windows). Please plug in an USB key containing a\n"
-"Windows partition instead.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-
-#: ../move/move.pm:483
-#, c-format
-msgid ""
-"We did not detect any USB key on your system. If you\n"
-"plug in an USB key now, Mandriva Move will have the ability\n"
-"to transparently save the data in your home directory and\n"
-"system wide configuration, for next boot on this computer\n"
-"or another one. Note: if you plug in a key now, wait several\n"
-"seconds before detecting again.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-
-#: ../move/move.pm:494
-#, c-format
-msgid "Need a key to save your data"
-msgstr "Red eo da gaout un alc'hwez USB evit enrollañ ho roadoù"
-
-#: ../move/move.pm:496
-#, c-format
-msgid "Detect USB key again"
-msgstr "Klask an alc'hwez USB adarre"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Setting up USB key"
-msgstr "Kefluniañ an alc'hwez USB"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr ""
-"O lakaat restroù ar gefluniadur war an alc'hwez USB, gortozit mar plij ..."
-
-#: ../move/move.pm:546
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Auto configuration"
-msgstr "Kefluniadur emgefreek"
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr ""
-"Gortozit mar plij, o tinoiñ trobarzhelloù ha o kefluniañ trobarzhelloù ..."
-
-#: ../move/move.pm:604 ../move/move.pm:660 ../move/move.pm:664
-#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/interactive.pm:231
-#: diskdrake/interactive.pm:244 diskdrake/interactive.pm:405
-#: diskdrake/interactive.pm:423 diskdrake/interactive.pm:560
-#: diskdrake/interactive.pm:565 diskdrake/smbnfs_gtk.pm:41 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:52 fsedit.pm:218 install_any.pm:1775
-#: install_any.pm:1827 install_steps.pm:81 install_steps_interactive.pm:37
-#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
-#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
-#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
-#: network/netconnect.pm:837 network/netconnect.pm:866
-#: network/netconnect.pm:965 network/netconnect.pm:969
-#: network/netconnect.pm:973 network/netconnect.pm:978
-#: network/netconnect.pm:1123 network/netconnect.pm:1127
-#: network/netconnect.pm:1246 network/netconnect.pm:1251
-#: network/netconnect.pm:1271 network/netconnect.pm:1428
-#: network/thirdparty.pm:321 network/thirdparty.pm:328
-#: network/thirdparty.pm:372 network/thirdparty.pm:374
-#: network/thirdparty.pm:395 network/thirdparty.pm:419
-#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
-#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
-#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
-#: printer/printerdrake.pm:450 printer/printerdrake.pm:514
-#: printer/printerdrake.pm:686 printer/printerdrake.pm:690
-#: printer/printerdrake.pm:772 printer/printerdrake.pm:1555
-#: printer/printerdrake.pm:1603 printer/printerdrake.pm:1640
-#: printer/printerdrake.pm:1685 printer/printerdrake.pm:1689
-#: printer/printerdrake.pm:1703 printer/printerdrake.pm:1795
-#: printer/printerdrake.pm:1876 printer/printerdrake.pm:1880
-#: printer/printerdrake.pm:1884 printer/printerdrake.pm:1933
-#: printer/printerdrake.pm:1991 printer/printerdrake.pm:1995
-#: printer/printerdrake.pm:2009 printer/printerdrake.pm:2129
-#: printer/printerdrake.pm:2133 printer/printerdrake.pm:2176
-#: printer/printerdrake.pm:2249 printer/printerdrake.pm:2267
-#: printer/printerdrake.pm:2276 printer/printerdrake.pm:2285
-#: printer/printerdrake.pm:2296 printer/printerdrake.pm:2360
-#: printer/printerdrake.pm:2512 printer/printerdrake.pm:2947
-#: printer/printerdrake.pm:3231 printer/printerdrake.pm:3237
-#: printer/printerdrake.pm:3802 printer/printerdrake.pm:3806
-#: printer/printerdrake.pm:3810 printer/printerdrake.pm:4206
-#: printer/printerdrake.pm:4446 printer/printerdrake.pm:4474
-#: printer/printerdrake.pm:4551 printer/printerdrake.pm:4617
-#: printer/printerdrake.pm:4737 standalone/drakTermServ:422
-#: standalone/drakTermServ:492 standalone/drakTermServ:501
-#: standalone/drakTermServ:812 standalone/drakTermServ:819
-#: standalone/drakTermServ:845 standalone/drakTermServ:894
-#: standalone/drakTermServ:1146 standalone/drakTermServ:1181
-#: standalone/drakTermServ:1634 standalone/drakTermServ:1643
-#: standalone/drakTermServ:1651 standalone/drakTermServ:1656
-#: standalone/drakTermServ:1664 standalone/drakTermServ:1680
-#: standalone/drakTermServ:1700 standalone/drakauth:36
-#: standalone/drakbackup:511 standalone/drakbackup:625
-#: standalone/drakbackup:1110 standalone/drakbackup:1141
-#: standalone/drakbackup:1332 standalone/drakbackup:1664
-#: standalone/drakbackup:1820 standalone/drakbackup:2548
-#: standalone/drakbackup:4463 standalone/drakclock:124
-#: standalone/drakconnect:676 standalone/drakconnect:680
-#: standalone/drakconnect:685 standalone/drakconnect:700
-#: standalone/drakfont:209 standalone/drakfont:222 standalone/drakfont:260
-#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakhosts:98
-#: standalone/drakhosts:246 standalone/drakhosts:253 standalone/drakhosts:260
-#: standalone/draknfs:306 standalone/draknfs:609 standalone/draknfs:616
-#: standalone/draknfs:623 standalone/drakroam:33 standalone/draksambashare:384
-#: standalone/draksambashare:388 standalone/draksambashare:391
-#: standalone/draksambashare:394 standalone/draksambashare:453
-#: standalone/draksambashare:477 standalone/draksambashare:551
-#: standalone/draksambashare:633 standalone/draksambashare:700
-#: standalone/draksambashare:800 standalone/draksambashare:807
-#: standalone/draksambashare:942 standalone/draksambashare:1133
-#: standalone/draksambashare:1142 standalone/draksambashare:1151
-#: standalone/draksambashare:1172 standalone/draksambashare:1181
-#: standalone/draksambashare:1190 standalone/draksambashare:1210
-#: standalone/draksambashare:1218 standalone/draksambashare:1230
-#: standalone/draksplash:162 standalone/drakxtv:107
-#: standalone/finish-install:79 standalone/logdrake:171
-#: standalone/logdrake:439 standalone/logdrake:444 standalone/scannerdrake:59
-#: standalone/scannerdrake:202 standalone/scannerdrake:261
-#: standalone/scannerdrake:732 standalone/scannerdrake:743
-#: standalone/scannerdrake:882 standalone/scannerdrake:893
-#: standalone/scannerdrake:963 wizards.pm:95 wizards.pm:99 wizards.pm:121
-#, c-format
-msgid "Error"
-msgstr "Fazi"
-
-#: ../move/move.pm:605 install_steps.pm:82
-#, c-format
-msgid ""
-"An error occurred, but I do not know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Degouezhet ez eus ur fazi, hogen n'ouzon ket e verañ naet.\n"
-"Kendalc'hit war ho mar."
-
-#: ../move/move.pm:660 install_steps_interactive.pm:37
-#, c-format
-msgid "An error occurred"
-msgstr "Ur fazi zo bet"
-
-#: ../move/move.pm:666
-#, c-format
-msgid ""
-"An error occurred:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"This may come from corrupted system configuration files\n"
-"on the USB key, in this case removing them and then\n"
-"rebooting Mandriva Move would fix the problem. To do\n"
-"so, click on the corresponding button.\n"
-"\n"
-"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-
-#: ../move/move.pm:681
-#, c-format
-msgid "Remove system config files"
-msgstr "Dilemel restroù ar c'hefluniadur ar reizhiad"
-
-#: ../move/move.pm:682
-#, c-format
-msgid "Simply reboot"
-msgstr "Adloc'hañ hepken"
-
-#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr ""
-
-#: ../move/tree/mdk_totem:71
-#, c-format
-msgid "Kill those programs"
-msgstr "Lazhañ an Lazhañ"
-
-#: ../move/tree/mdk_totem:72
-#, c-format
-msgid "No CDROM support"
-msgstr "Ne m'eus ket implij ar CD-ROMoù"
-
-#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1062 diskdrake/interactive.pm:1072
-#: diskdrake/interactive.pm:1125
-#, c-format
-msgid "Read carefully!"
-msgstr "Lennit aketus !"
-
-#: ../move/tree/mdk_totem:77
-#, c-format
-msgid ""
-"You can not use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-
-#: ../move/tree/mdk_totem:101
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr ""
-
-#: Xconfig/card.pm:13
-#, c-format
-msgid "256 kB"
-msgstr "256 ko"
-
-#: Xconfig/card.pm:14
-#, c-format
-msgid "512 kB"
-msgstr "512 ko"
-
-#: Xconfig/card.pm:15
-#, c-format
-msgid "1 MB"
-msgstr "1 Mo"
-
-#: Xconfig/card.pm:16
-#, c-format
-msgid "2 MB"
-msgstr "2 Mo"
-
-#: Xconfig/card.pm:17
-#, c-format
-msgid "4 MB"
-msgstr "4 Mo"
-
-#: Xconfig/card.pm:18
-#, c-format
-msgid "8 MB"
-msgstr "8 Mo"
-
-#: Xconfig/card.pm:19
-#, c-format
-msgid "16 MB"
-msgstr "16 Mo"
-
-#: Xconfig/card.pm:20
-#, c-format
-msgid "32 MB"
-msgstr "32 Mo"
-
-#: Xconfig/card.pm:21
-#, c-format
-msgid "64 MB or more"
-msgstr "64 Mo pe vuioc'h"
-
-#: Xconfig/card.pm:162
-#, c-format
-msgid "X server"
-msgstr "servijer X"
-
-#: Xconfig/card.pm:163
-#, c-format
-msgid "Choose an X server"
-msgstr "Dibabit ur servijer X"
-
-#: Xconfig/card.pm:195
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Kefluniañ meur a benn"
-
-#: Xconfig/card.pm:196
-#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Meur a benn 'neus ho reizhiad.\n"
-"Petra 'teus c'hoant d'ober ?"
-
-#: Xconfig/card.pm:265
-#, c-format
-msgid "Can not install Xorg package: %s"
-msgstr "N'eo ket evit staliañ ar pakad Xorg : %s"
-
-#: Xconfig/card.pm:275
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Dibabit ment memor ho kartenn c'hrafek"
-
-#: Xconfig/card.pm:371
-#, c-format
-msgid "Xorg configuration"
-msgstr "Staliadur Xorg"
-
-#: Xconfig/card.pm:373
-#, c-format
-msgid "Which configuration of Xorg do you want to have?"
-msgstr "Pe seurt kefluniadur Xorg ha fellout a ra deoc'h ?"
-
-#: Xconfig/card.pm:406
-#, c-format
-msgid "Configure all heads independently"
-msgstr ""
-
-#: Xconfig/card.pm:407
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Implijit Xinemara"
-
-#: Xconfig/card.pm:412
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Kefluniadur hep ken ar gartenn « %s » %s"
-
-#: Xconfig/card.pm:424 Xconfig/various.pm:23
-#, c-format
-msgid "Xorg %s"
-msgstr "Xorg %s"
-
-#: Xconfig/card.pm:431 Xconfig/various.pm:22
-#, c-format
-msgid "Xorg %s with 3D hardware acceleration"
-msgstr "Xorg %s gant 3D"
-
-#: Xconfig/card.pm:433
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with Xorg %s."
-msgstr ""
-
-#: Xconfig/card.pm:439
-#, c-format
-msgid "Xorg %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr ""
-
-#: Xconfig/card.pm:441
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with Xorg %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:1021
-#, c-format
-msgid "Custom"
-msgstr "Personelañ"
-
-#: Xconfig/main.pm:127 any.pm:742 diskdrake/dav.pm:26 help.pm:15
-#: install_steps_interactive.pm:1303 printer/printerdrake.pm:882
-#: printer/printerdrake.pm:899 printer/printerdrake.pm:4546
-#: printer/printerdrake.pm:5010 standalone/drakhosts:263
-#: standalone/drakroam:230 standalone/draksplash:93 standalone/logdrake:176
-#: standalone/net_applet:103 standalone/scannerdrake:494
-#, c-format
-msgid "Quit"
-msgstr "Kuitaat"
-
-#: Xconfig/main.pm:129
-#, c-format
-msgid "Graphic Card"
-msgstr "Kartenn C'hrafek"
-
-#: Xconfig/main.pm:132 Xconfig/monitor.pm:110
-#, c-format
-msgid "Monitor"
-msgstr "Skramm"
-
-#: Xconfig/main.pm:135 Xconfig/resolution_and_depth.pm:289
-#, c-format
-msgid "Resolution"
-msgstr "Spister"
-
-#: Xconfig/main.pm:138
-#, c-format
-msgid "Test"
-msgstr "Testañ"
-
-#: Xconfig/main.pm:143 diskdrake/dav.pm:65 diskdrake/interactive.pm:449
-#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
-#: printer/printerdrake.pm:1112 standalone/drakfont:493
-#: standalone/drakfont:548
-#, c-format
-msgid "Options"
-msgstr "Dibarzhoù"
-
-#: Xconfig/main.pm:178
-#, c-format
-msgid "Your Xorg configuration file is broken, we will ignore it."
-msgstr "Sac'het eo restr kefluniadur Xorg; emaon o tremen anezhañ."
-
-#: Xconfig/main.pm:196
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Derc'hel ar c'hemmoù \n"
-"Ar kefluniadur red zo \n"
-"\n"
-"%s"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor for head #%d"
-msgstr "Dibabit ur skramm evit ar benn #%d"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor"
-msgstr "Dibabit ur skramm"
-
-#: Xconfig/monitor.pm:117
-#, c-format
-msgid "Plug'n Play"
-msgstr "Lug ha c'hoari"
-
-#: Xconfig/monitor.pm:118 mouse.pm:49
-#, c-format
-msgid "Generic"
-msgstr "Rummel"
-
-#: Xconfig/monitor.pm:119 standalone/drakconnect:591 standalone/harddrake2:54
-#: standalone/harddrake2:88
-#, c-format
-msgid "Vendor"
-msgstr "Gwerzher"
-
-#: Xconfig/monitor.pm:129
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr ""
-
-#: Xconfig/monitor.pm:137
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"An div arventenn dreistpouezus zo ar feur freskaat a-serzh, da lavaret eo "
-"ar\n"
-"feur ma vez freskaet ar skramm a-bezh, ha pouezusuc'h c'hoazh ar feur "
-"kempredañ\n"
-"a-led, da lavaret eo ar feur ma vez diskwelet linennoù skubañ.\n"
-"\n"
-"HOLLBOUEZHUS eo deoc'h na spisaat ur seurt skramm gant ur feur kempredañ\n"
-"a zo en tu-hont da varregezh ho skramm : gallout a rafe gwastañ ho skramm\n"
-" M'hoc'h eus douetañs, dibabit ur c'hefluniadur fur."
-
-#: Xconfig/monitor.pm:144
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Feur freskaat a-led"
-
-#: Xconfig/monitor.pm:145
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Feur freskaat a-serzh"
-
-#: Xconfig/resolution_and_depth.pm:10
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 liv (8 bit)"
-
-#: Xconfig/resolution_and_depth.pm:11
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil liv (15 bit)"
-
-#: Xconfig/resolution_and_depth.pm:12
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil liv (16 bit)"
-
-#: Xconfig/resolution_and_depth.pm:13
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 milion a livioù (24 bit)"
-
-#: Xconfig/resolution_and_depth.pm:127
-#, c-format
-msgid "Resolutions"
-msgstr "Spisterioù"
-
-#: Xconfig/resolution_and_depth.pm:311 diskdrake/hd_gtk.pm:336
-#: install_steps_gtk.pm:288 mouse.pm:168 services.pm:162
-#: standalone/drakbackup:1606 standalone/drakperm:250
-#, c-format
-msgid "Other"
-msgstr "All"
-
-#: Xconfig/resolution_and_depth.pm:360
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Dibabit ar spister ha donder al livioù"
-
-#: Xconfig/resolution_and_depth.pm:361
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Kartenn c'hrafek : %s"
-
-#: Xconfig/resolution_and_depth.pm:375 interactive.pm:119 interactive.pm:436
-#: interactive/http.pm:103 interactive/http.pm:156 interactive/newt.pm:321
-#: interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:143
-#: standalone/drakTermServ:222 standalone/drakTermServ:543
-#: standalone/drakbackup:1372 standalone/drakbackup:4123
-#: standalone/drakbackup:4183 standalone/drakbackup:4227
-#: standalone/drakbackup:4481 standalone/drakconnect:158
-#: standalone/drakconnect:852 standalone/drakconnect:939
-#: standalone/drakconnect:1030 standalone/drakfont:569 standalone/drakfont:579
-#: standalone/draksplash:173 standalone/drakups:210 standalone/net_monitor:339
-#: ugtk2.pm:392 ugtk2.pm:490 ugtk2.pm:899 ugtk2.pm:922
-#, c-format
-msgid "Ok"
-msgstr "Mat eo"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/smbnfs_gtk.pm:80 help.pm:90
-#: help.pm:445 install_steps_gtk.pm:455 install_steps_interactive.pm:406
-#: install_steps_interactive.pm:811 interactive.pm:120 interactive.pm:437
-#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
-#: interactive/stdio.pm:39 interactive/stdio.pm:142
-#: printer/printerdrake.pm:3882 standalone/drakautoinst:215
-#: standalone/drakbackup:1372 standalone/drakbackup:4052
-#: standalone/drakbackup:4056 standalone/drakbackup:4111
-#: standalone/drakbackup:4481 standalone/drakconnect:157
-#: standalone/drakconnect:937 standalone/drakconnect:1029
-#: standalone/drakfont:579 standalone/drakfont:655 standalone/drakfont:733
-#: standalone/draksplash:173 standalone/drakups:217 standalone/logdrake:176
-#: standalone/net_monitor:338 ugtk2.pm:386 ugtk2.pm:488 ugtk2.pm:497
-#: ugtk2.pm:899
-#, c-format
-msgid "Cancel"
-msgstr "Nullañ"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/hd_gtk.pm:150
-#: install_steps_gtk.pm:232 install_steps_gtk.pm:617 interactive.pm:567
-#: interactive/gtk.pm:682 interactive/gtk.pm:684 standalone/drakTermServ:311
-#: standalone/drakbackup:4048 standalone/drakbug:105
-#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:511 standalone/draknfs:206 standalone/drakperm:133
-#: standalone/draksambashare:320 standalone/draksec:344 standalone/draksec:346
-#: standalone/draksec:364 standalone/draksec:366 ugtk2.pm:1031 ugtk2.pm:1032
-#, c-format
-msgid "Help"
-msgstr "Skoazell"
-
-#: Xconfig/test.pm:30
-#, c-format
-msgid "Test of the configuration"
-msgstr "Amprouiñ ar c'hefluniadur"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-
-#: Xconfig/test.pm:69
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"Degouezhet ez eus ar fazi :\n"
-"%s\n"
-"Klaskit kemmañ un dibarzh bennak"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Echu eo da %d eilenn"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Ha reizh eo ar c'hefluniadur ?"
-
-#: Xconfig/various.pm:29
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Reizhadur ar stokellaoueg : %s\n"
-
-#: Xconfig/various.pm:30
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Seurt logodenn : %s\n"
-
-#: Xconfig/various.pm:31
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Trobarzhell al logodenn : %s\n"
-
-#: Xconfig/various.pm:33
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Skramm : %s\n"
-
-#: Xconfig/various.pm:34
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "KempredA-led ar skramm : %s\n"
-
-#: Xconfig/various.pm:35
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "FreskA-serzh ar skramm : %s\n"
-
-#: Xconfig/various.pm:37
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Kartenn c'hrafek : %s\n"
-
-#: Xconfig/various.pm:38
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Memor c'hrafek : %s ko\n"
-
-#: Xconfig/various.pm:40
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Donder liv : %s\n"
-
-#: Xconfig/various.pm:41
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Spister : %s\n"
-
-#: Xconfig/various.pm:43
-#, c-format
-msgid "Xorg driver: %s\n"
-msgstr "Sturier Xorg : %s\n"
-
-#: Xconfig/various.pm:72
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "X pa loc'her"
-
-#: Xconfig/various.pm:74
-#, c-format
-msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(Xorg) upon booting.\n"
-"Would you like Xorg to start when you reboot?"
-msgstr ""
-"Kefluniañ ho urzhiataer evit lañsañ X ent emgefreek pa loc'ho a c'hellañ.\n"
-"Mennout a rit lañsañ X pa adloc'hit ?"
-
-#: Xconfig/various.pm:87
-#, fuzzy, c-format
-msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
-msgstr "Hag ur an arc'hwel-mañ hoc'h eus ?"
-
-#: Xconfig/various.pm:99
-#, c-format
-msgid "What norm is your TV using?"
-msgstr "Peseurt skinwel oc'h implij ?"
-
-#: Xconfig/xfree.pm:648
-#, c-format
-msgid ""
-"_:weird aspect ratio\n"
-"other"
-msgstr "hini all"
-
-#: any.pm:153 harddrake/sound.pm:195 interactive.pm:474 pkgs.pm:474
-#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
-#: standalone/drakups:99 standalone/drakxtv:92 standalone/harddrake2:375
-#: standalone/service_harddrake:235
+#: any.pm:157 diskdrake/interactive.pm:422 diskdrake/interactive.pm:617
+#: diskdrake/interactive.pm:798 diskdrake/interactive.pm:842
+#: diskdrake/interactive.pm:904 diskdrake/interactive.pm:1188 do_pkgs.pm:209
+#: do_pkgs.pm:255 harddrake/sound.pm:195 interactive.pm:576
#, c-format
msgid "Please wait"
msgstr "Gortozit mar plij"
-#: any.pm:153
+#: any.pm:157
#, c-format
msgid "Bootloader installation in progress"
msgstr "O staliañ ar c'harger loc'hañ"
-#: any.pm:164
+#: any.pm:168
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -796,13 +39,13 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:175
+#: any.pm:179
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Staliadur ar c'harger loc'hañ zo sac'het. Degouezhet eo ar fazi a heul :"
-#: any.pm:181
+#: any.pm:185
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -813,7 +56,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:219
+#: any.pm:223
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -823,257 +66,268 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:242 help.pm:740
+#: any.pm:246
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Rann gentañ ar bladenn (MBR)"
-#: any.pm:243
+#: any.pm:247
#, c-format
msgid "First sector of the root partition"
msgstr "Rann gentañ ar parzhadur kentañ"
-#: any.pm:245
+#: any.pm:249
#, c-format
msgid "On Floppy"
msgstr "War bladennig"
-#: any.pm:247 help.pm:740 printer/printerdrake.pm:4203
+#: any.pm:251
#, c-format
msgid "Skip"
msgstr "Tremen e-biou"
-#: any.pm:251
+#: any.pm:255
#, c-format
msgid "LILO/grub Installation"
msgstr "Staliadur LILO/grub"
-#: any.pm:252
+#: any.pm:257
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Pelec'h e mennit staliañ ar c'harger loc'hañ ?"
-#: any.pm:278 standalone/drakboot:269
+#: any.pm:284
#, c-format
msgid "Boot Style Configuration"
msgstr "Kefluniadur giz al loc'hañ"
-#: any.pm:280 any.pm:281 any.pm:314 any.pm:315
+#: any.pm:294 any.pm:326 any.pm:327
#, c-format
msgid "Bootloader main options"
msgstr "Dibarzhoù pennañ ar c'harger loc'hañ"
-#: any.pm:286
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Roit ment ar memor vev e Mo"
-
-#: any.pm:288
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Didalvout eo « Strishaat dibarzhoù al linenn urzhiañ » hep tremenger"
-
-#: any.pm:289 any.pm:628 authentication.pm:192
-#, c-format
-msgid "The passwords do not match"
-msgstr "An tremegerioù ne glot ket"
-
-#: any.pm:289 any.pm:628 authentication.pm:192 diskdrake/interactive.pm:1336
+#: any.pm:299
#, c-format
-msgid "Please try again"
-msgstr "Klaskit adarre mar plij"
+msgid "Bootloader"
+msgstr "Karger loc'hañ"
-#: any.pm:294 any.pm:319
+#: any.pm:300 any.pm:331
#, c-format
msgid "Bootloader to use"
-msgstr "C'harger loc'hañ da implijout"
+msgstr "Karger loc'hañ da implijout"
-#: any.pm:296 any.pm:321
+#: any.pm:302 any.pm:333
#, c-format
msgid "Boot device"
msgstr "Trobarzhell loc'hañ"
-#: any.pm:298
+#: any.pm:304
+#, c-format
+msgid "Main options"
+msgstr "Dibarzhoù pennañ"
+
+#: any.pm:305
#, c-format
msgid "Delay before booting default image"
msgstr "Gedvezh kent loc'hañ ar skeudenn dre ziouer"
-#: any.pm:299
+#: any.pm:306
#, c-format
msgid "Enable ACPI"
msgstr "Bevaat ACPI"
-#: any.pm:301
+#: any.pm:307
#, c-format
-msgid "Force no APIC"
-msgstr "Bevaatet APIC ebet"
+msgid "Enable APIC"
+msgstr "Bevaat APIC"
-#: any.pm:303
+#: any.pm:308
#, c-format
-msgid "Force No Local APIC"
-msgstr "Bevaatet APIC lec'hel ebet"
+msgid "Enable Local APIC"
+msgstr "Bevaat APIC lec'hel"
-#: any.pm:305 any.pm:662 authentication.pm:197 diskdrake/smbnfs_gtk.pm:180
-#: network/netconnect.pm:584 printer/printerdrake.pm:1867
-#: printer/printerdrake.pm:1988 standalone/drakbackup:1650
-#: standalone/drakbackup:3641 standalone/drakups:297
+#: any.pm:310 any.pm:686 authentication.pm:196 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Tremenger"
-#: any.pm:306 any.pm:663 authentication.pm:198
+#: any.pm:312 authentication.pm:207
+#, c-format
+msgid "The passwords do not match"
+msgstr "An tremegerioù ne glot ket"
+
+#: any.pm:312 authentication.pm:207 diskdrake/interactive.pm:1348
+#, c-format
+msgid "Please try again"
+msgstr "Klaskit adarre mar plij"
+
+#: any.pm:313
+#, c-format
+msgid "You can not use a password with %s"
+msgstr "Gellout a rit implij ur ger tremen gant %s"
+
+#: any.pm:316 any.pm:687 authentication.pm:197
#, c-format
msgid "Password (again)"
msgstr "Tremenger (adarre)"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "Restrict command line options"
msgstr "Strishaat dibarzhoù al linenn urzhiañ"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "restrict"
msgstr "strishaat"
-#: any.pm:309
+#: any.pm:318
+#, c-format
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr "Didalvout eo « Strishaat dibarzhoù al linenn urzhiañ » hep tremenger"
+
+#: any.pm:320
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Skarañ /tmp bep ma loc'her"
-#: any.pm:310
+#: any.pm:321
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Spisait ment ar memor bev diouzh ret (kavet %d Mo)"
-#: any.pm:320
+#: any.pm:322
+#, c-format
+msgid "Give the ram size in MB"
+msgstr "Roit ment ar memor vev e Mo"
+
+#: any.pm:332
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:322
+#: any.pm:334
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:323
+#: any.pm:335
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""
-#: any.pm:324
+#: any.pm:336
#, c-format
msgid "Enable CD Boot?"
msgstr ""
-#: any.pm:325
+#: any.pm:337
#, c-format
msgid "Enable OF Boot?"
msgstr ""
-#: any.pm:326
+#: any.pm:338
#, c-format
msgid "Default OS?"
msgstr "RK dre ziouer ?"
-#: any.pm:380
+#: any.pm:404
#, c-format
msgid "Image"
msgstr "Skeudenn"
-#: any.pm:381 any.pm:391
+#: any.pm:405 any.pm:418
#, c-format
msgid "Root"
msgstr "Gwrizienn"
-#: any.pm:382 any.pm:404
+#: any.pm:406 any.pm:431
#, c-format
msgid "Append"
msgstr "Ouzhpennañ en diwezh"
-#: any.pm:384 standalone/drakboot:271 standalone/drakboot:275
+#: any.pm:408
+#, c-format
+msgid "Xen append"
+msgstr ""
+
+#: any.pm:411
#, c-format
msgid "Video mode"
msgstr "Mod video"
-#: any.pm:386
+#: any.pm:413
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:387
+#: any.pm:414
#, c-format
msgid "Network profile"
msgstr "Profil rouedad"
-#: any.pm:396 any.pm:401 any.pm:403 diskdrake/interactive.pm:450
+#: any.pm:423 any.pm:428 any.pm:430 diskdrake/interactive.pm:443
#, c-format
msgid "Label"
msgstr "Skridennad"
-#: any.pm:398 any.pm:408 harddrake/v4l.pm:438 standalone/drakbackup:2104
-#: standalone/draksec:52
+#: any.pm:425 any.pm:433 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Dre ziouer"
-#: any.pm:405
-#, c-format
-msgid "Initrd-size"
-msgstr "Ment an Initrd"
-
-#: any.pm:407
+#: any.pm:432
#, c-format
msgid "NoVideo"
msgstr "N'eo ket video"
-#: any.pm:418
+#: any.pm:443
#, c-format
msgid "Empty label not allowed"
msgstr "Berzet eo ar skridennadoù goullo"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a kernel image"
msgstr "Ret eo deoc'h kaout ur skeudenn kalon"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a root partition"
msgstr "Ret eo deoc'h kaout ur parzhadur gwrizienn"
-#: any.pm:420
+#: any.pm:445
#, c-format
msgid "This label is already used"
msgstr "En implij eo ar skridennad-se endeo"
-#: any.pm:434
+#: any.pm:459
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Pe seurt enmont a vennit ouzhpennañ ?"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Reizhiadoù all (SunOS ...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Reizhiadoù all (MacOS ...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (Windows...)"
msgstr "Reizhiadoù all (Windows ...)"
-#: any.pm:464
+#: any.pm:489
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -1082,52 +336,47 @@ msgstr ""
"Setu da heul an enmontoù liesseurt.\n"
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: any.pm:614
+#: any.pm:640
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:615
+#: any.pm:641
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:616
+#: any.pm:642
#, c-format
msgid "allow \"su\""
msgstr "Aotreañ « su »"
-#: any.pm:617
+#: any.pm:643
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:618
+#: any.pm:644
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:619
+#: any.pm:645
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:624
+#: any.pm:650
#, c-format
msgid "(already added %s)"
msgstr "(ouzhpennet %s endeo)"
-#: any.pm:629
-#, c-format
-msgid "This password is too simple"
-msgstr "Re eeun eo an tremeger"
-
-#: any.pm:630
+#: any.pm:657
#, c-format
msgid "Please give a user name"
msgstr "Roit un anv arveriad mar plij"
-#: any.pm:631
+#: any.pm:658
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
@@ -1135,42 +384,42 @@ msgstr ""
"An anv arveriad a zle bezañ ennañ lizherennoù munut, sifroù, `-' ha `_' "
"hepken"
-#: any.pm:632
+#: any.pm:659
#, c-format
msgid "The user name is too long"
msgstr "Re hir eo an anv arveriad-se"
-#: any.pm:633
+#: any.pm:660
#, c-format
msgid "This user name has already been added"
msgstr "En implij eo an anv arveriad-se endeo"
-#: any.pm:634 any.pm:665
+#: any.pm:661 any.pm:689
#, c-format
msgid "User ID"
msgstr "ID an arveriad"
-#: any.pm:635 any.pm:666
+#: any.pm:662 any.pm:690
#, c-format
msgid "Group ID"
msgstr "ID ar strollad"
-#: any.pm:638
+#: any.pm:665
#, c-format
msgid "%s must be a number"
msgstr "red eo da bezañ un niver %s"
-#: any.pm:639
+#: any.pm:666
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:644 standalone/draksambashare:1214
+#: any.pm:671
#, c-format
msgid "Add user"
msgstr "Ouzhpennañ un arveriad"
-#: any.pm:646
+#: any.pm:673
#, c-format
msgid ""
"Enter a user\n"
@@ -1179,100 +428,96 @@ msgstr ""
"Skrivit un arveriad\n"
"%s"
-#: any.pm:649 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:154
-#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:81 help.pm:531
-#: interactive/http.pm:151 printer/printerdrake.pm:197
-#: printer/printerdrake.pm:382 printer/printerdrake.pm:5010
-#: standalone/drakbackup:2836 standalone/scannerdrake:685
-#: standalone/scannerdrake:835
+#: any.pm:676 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:166
+#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:82
+#: interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Graet"
-#: any.pm:650 help.pm:52
+#: any.pm:677
#, c-format
msgid "Accept user"
msgstr "Aotren an arveriad"
-#: any.pm:660
+#: any.pm:682
#, c-format
msgid "Real name"
msgstr "Anv gwirion"
-#: any.pm:661 standalone/drakbackup:1645
+#: any.pm:685
#, c-format
msgid "Login name"
msgstr "Anv ereañ"
-#: any.pm:664
+#: any.pm:688
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:668
-#, c-format
-msgid "Icon"
-msgstr "Arlun"
-
-#: any.pm:715 security/l10n.pm:14
+#: any.pm:735 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Emereañ"
-#: any.pm:716
+#: any.pm:736
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Kefluniañ ho urzhiataer evit lañsañ X ent emgefreek gant un arveriad a "
"c'hellañ."
-#: any.pm:717
+#: any.pm:737
#, c-format
msgid "Use this feature"
msgstr "Implij an arc'hwel-mañ"
-#: any.pm:718
+#: any.pm:738
#, c-format
msgid "Choose the default user:"
msgstr "Dibabit an arveriad dre ziouer :"
-#: any.pm:719
+#: any.pm:739
#, c-format
msgid "Choose the window manager to run:"
msgstr "Dibabit ar merour prenestrer da seveniñ :"
-#: any.pm:740
+#: any.pm:767
#, c-format
msgid "License agreement"
msgstr "Emglev an aotre"
-#: any.pm:745
+#: any.pm:770 diskdrake/dav.pm:26
+#, c-format
+msgid "Quit"
+msgstr "Kuitaat"
+
+#: any.pm:773
#, c-format
msgid "Release Notes"
msgstr "Cheñchamentoù"
-#: any.pm:748 help.pm:15 install_steps_gtk.pm:539
-#: install_steps_interactive.pm:715 standalone/drakautoinst:214
+#: any.pm:776
#, c-format
msgid "Accept"
msgstr "Plijout a ra din"
-#: any.pm:748 install_steps_gtk.pm:539 install_steps_interactive.pm:715
+#: any.pm:776
#, c-format
msgid "Refuse"
msgstr "Ne blij ket din"
-#: any.pm:765 any.pm:833
+#: any.pm:795 any.pm:863
#, c-format
msgid "Please choose a language to use."
msgstr "Dibabit ar yezh da implijout, mar plij."
-#: any.pm:766 any.pm:834
+#: any.pm:796 any.pm:864
#, c-format
msgid "Language choice"
msgstr "Dibab ho yezh"
-#: any.pm:794
+#: any.pm:826
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
@@ -1280,70 +525,72 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "Gallout a rit dibab yezhoù all hag a vo hegerz goude staliañ"
-#: any.pm:797
+#: any.pm:829
#, c-format
msgid "Multi languages"
msgstr "Meur a yezh"
-#: any.pm:813 any.pm:842 help.pm:648
+#: any.pm:841 any.pm:872
#, c-format
-msgid "Use Unicode by default"
-msgstr "Implijit Unicode dre ziouer"
+msgid "Old compatibility (non UTF-8) encoding"
+msgstr "Kodadur kozh (n'eo ket UTF-8)"
-#: any.pm:814 help.pm:648
+#: any.pm:843
#, c-format
msgid "All languages"
msgstr "An holl yezhoù"
-#: any.pm:888 help.pm:567 help.pm:856 install_steps_interactive.pm:932
+#: any.pm:918
#, c-format
msgid "Country / Region"
msgstr "Bro / Rannvro"
-#: any.pm:890
+#: any.pm:920
#, c-format
msgid "Please choose your country."
msgstr "Dibabit hor bro, mar plij."
-#: any.pm:892
+#: any.pm:922
#, c-format
msgid "Here is the full list of available countries"
msgstr "Setu eo listenn leun ar broioù holl"
-#: any.pm:893
+#: any.pm:923
#, c-format
msgid "Other Countries"
msgstr "Broioù all"
-#: any.pm:893 help.pm:52 help.pm:410 help.pm:432 help.pm:648 help.pm:723
-#: interactive.pm:397
+#: any.pm:923 interactive.pm:477
#, c-format
msgid "Advanced"
msgstr "Barek"
-#: any.pm:901
+#: any.pm:929
#, c-format
msgid "Input method:"
msgstr "Hentenn enkas :"
-#: any.pm:904 install_any.pm:422 network/netconnect.pm:317
-#: network/netconnect.pm:322 network/netconnect.pm:1237 network/wireless.pm:7
-#: printer/printerdrake.pm:117
+#: any.pm:932
#, c-format
msgid "None"
msgstr "Hini ebet"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "No sharing"
msgstr "N'eo ket lodañ"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "Allow all users"
msgstr "Aotreiñ pep arveriad"
-#: any.pm:1025
+#: any.pm:1012
+#, c-format
+msgid "Custom"
+msgstr "Personelañ"
+
+#: any.pm:1016
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1353,49 +600,93 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1037
+#: any.pm:1028
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1040
+#: any.pm:1031
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1048
+#: any.pm:1039
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1073
+#: any.pm:1064
#, c-format
msgid "Launch userdrake"
msgstr "Lañsañ userdrake"
-#: any.pm:1073 printer/printerdrake.pm:4085 printer/printerdrake.pm:4088
-#: printer/printerdrake.pm:4089 printer/printerdrake.pm:4090
-#: printer/printerdrake.pm:5328 standalone/drakTermServ:321
-#: standalone/drakbackup:4245 standalone/drakbug:126 standalone/drakfont:499
-#: standalone/drakids:64 standalone/drakids:77 standalone/drakids:85
-#: standalone/draknfs:210 standalone/net_monitor:117
-#: standalone/printerdrake:583
+#: any.pm:1064 interactive/gtk.pm:747
#, c-format
msgid "Close"
msgstr "Serriñ"
-#: any.pm:1075
+#: any.pm:1066
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
+#: any.pm:1158
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Dizereit mar plij ha neuze implijit Ctrl-Alt-WarGil"
+
+#: any.pm:1162
+#, c-format
+msgid "You need to log out and back in again for changes to take effect"
+msgstr ""
+
+#: any.pm:1212
+#, c-format
+msgid "Timezone"
+msgstr "Takad-eur"
+
+#: any.pm:1212
+#, c-format
+msgid "Which is your timezone?"
+msgstr "Pe seurt a vo ho takad-eur ?"
+
+#: any.pm:1224 any.pm:1226
+#, c-format
+msgid "Date, Clock & Time Zone Settings"
+msgstr "Kefluniadur an deizid, an eurier hag an amzer"
+
+#: any.pm:1227
+#, c-format
+msgid "What is the best time?"
+msgstr "Peseurt hini zo an amzer gwelloc'h ?"
+
+#: any.pm:1231
+#, c-format
+msgid "%s (hardware clock set to UTC)"
+msgstr "%s (war UTC eo lakaet ho eurier periantel)"
+
+#: any.pm:1232
+#, c-format
+msgid "%s (hardware clock set to local time)"
+msgstr "%s (war GMT eo lakaet ho eurier periantel)"
+
+#: any.pm:1234
+#, c-format
+msgid "NTP Server"
+msgstr "Servijer NTP"
+
+#: any.pm:1235
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr ""
+
#: authentication.pm:23
#, c-format
msgid "Local file"
@@ -1510,7 +801,7 @@ msgstr "Dilesadur LDAP"
msgid "LDAP Base dn"
msgstr ""
-#: authentication.pm:98 share/compssUsers.pl:102
+#: authentication.pm:98
#, c-format
msgid "LDAP Server"
msgstr "Servijer LDAP"
@@ -1540,14 +831,12 @@ msgstr "reizhadur ar surantez (SASL/Kerberos)"
msgid "Authentication Active Directory"
msgstr ""
-#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:181
+#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Domani"
-#: authentication.pm:124 diskdrake/dav.pm:63 help.pm:147
-#: printer/printerdrake.pm:75 share/compssUsers.pl:82
-#: standalone/drakTermServ:296
+#: authentication.pm:124 diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Servijer"
@@ -1624,45 +913,39 @@ msgstr "Anv merour an domani"
msgid "Domain Admin Password"
msgstr "Tremenger merour an domani"
-#: authentication.pm:181
+#: authentication.pm:181 authentication.pm:198
#, c-format
-msgid "Set administrator (root) password and network authentication methods"
-msgstr "Choazh tremenger ar merour hag an hentenn dilesadur rouedad"
+msgid "Authentication"
+msgstr "Dilesadur"
#: authentication.pm:182
#, c-format
msgid "Set administrator (root) password"
msgstr "Termeniñ tremenger ar merour (root)"
-#: authentication.pm:183 standalone/drakvpn:1111
+#: authentication.pm:184
#, c-format
msgid "Authentication method"
msgstr "Hentenn dilesadur"
#. -PO: keep this short or else the buttons will not fit in the window
-#: authentication.pm:188 help.pm:723
+#: authentication.pm:189
#, c-format
msgid "No password"
msgstr "Tremenger ebet"
-#: authentication.pm:194
+#: authentication.pm:210
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Re eeun eo an tremenger-se (%d arouezenn zo ret d'an nebeutañ)"
-#: authentication.pm:199 network/netconnect.pm:322 network/netconnect.pm:585
-#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:481
-#, c-format
-msgid "Authentication"
-msgstr "Dilesadur"
-
-#: authentication.pm:331
+#: authentication.pm:351
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "N'hellañ ket implijout ar skignañ hep domani NIS"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:767
+#: bootloader.pm:880
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1671,48 +954,48 @@ msgid ""
"wait for default boot.\n"
"\n"
msgstr ""
-"Degemer mat en dibaber reizhiad oberiañ !\n"
+"Degemer mat en dibaber reizhiad oberia !\n"
"\n"
"Dibabit an dibaber reizhiad pe\n"
"gortozit \n"
"\n"
-#: bootloader.pm:909
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO gant meuziad c'hrafek"
-
-#: bootloader.pm:910
+#: bootloader.pm:1028
#, c-format
msgid "LILO with text menu"
msgstr "LILO gant meuziad skrid"
-#: bootloader.pm:911
+#: bootloader.pm:1029
#, c-format
msgid "GRUB with graphical menu"
-msgstr "GRUB gant meuziad skrid"
+msgstr "GRUB gant meuziad grafek"
-#: bootloader.pm:912
+#: bootloader.pm:1030
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB gant meuziad skrid"
-#: bootloader.pm:913
+#: bootloader.pm:1031
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:990
+#: bootloader.pm:1032
+#, c-format
+msgid "SILO"
+msgstr "SILO"
+
+#: bootloader.pm:1112
#, c-format
msgid "not enough room in /boot"
msgstr "n'eus ket a-walc'h egor e /boot"
-#: bootloader.pm:1483
+#: bootloader.pm:1679
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "Ne mennit ket staliañ ar c'harger loc'hañ war ur parzhadur %s\n"
-#: bootloader.pm:1523
+#: bootloader.pm:1732
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1721,249 +1004,64 @@ msgstr ""
"Red eo da vremañat kefluniadur ho karger loc'hañ peogwir e oa cheñchet niver "
"ar parzhiadurioù"
-#: bootloader.pm:1536
+#: bootloader.pm:1745
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
"choose \"%s\""
-msgstr "N'hell ket bet staliet ar c'harger loc'hañ. Dao eo deoc'h loc'hañ gant ar bladenn skoazell ha dibab « %s »"
+msgstr ""
+"N'hell ket bet staliet ar c'harger loc'hañ. Dao eo deoc'h loc'hañ gant ar "
+"bladenn skoazell ha dibab « %s »"
-#: bootloader.pm:1537
+#: bootloader.pm:1746
#, c-format
msgid "Re-install Boot Loader"
msgstr "Staliañ ar c'harger loc'hañ c'hoazh"
-#: common.pm:134
+#: common.pm:129
+#, c-format
+msgid "B"
+msgstr "O"
+
+#: common.pm:129
#, c-format
msgid "KB"
msgstr "Ko"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "MB"
msgstr "Mo"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "GB"
msgstr "Go"
-#: common.pm:142
+#: common.pm:137
#, c-format
msgid "TB"
msgstr "To"
-#: common.pm:150
+#: common.pm:145
#, c-format
msgid "%d minutes"
msgstr "%d munutennoù"
-#: common.pm:152
+#: common.pm:147
#, c-format
msgid "1 minute"
msgstr "1 munutenn"
-#: common.pm:154
+#: common.pm:149
#, c-format
msgid "%d seconds"
msgstr "%d eilenn"
-#: common.pm:260
-#, c-format
-msgid "kdesu missing"
-msgstr "kdesu mank"
-
-#: common.pm:263
-#, c-format
-msgid "consolehelper missing"
-msgstr "consolehelper mank"
-
-#: crypto.pm:13 crypto.pm:48 lang.pm:207 network/adsl_consts.pm:66
-#: network/adsl_consts.pm:75 network/adsl_consts.pm:84
-#, c-format
-msgid "Austria"
-msgstr "Aostria"
-
-#: crypto.pm:14 crypto.pm:47 lang.pm:208 standalone/drakxtv:48
-#, c-format
-msgid "Australia"
-msgstr "Australi"
-
-#: crypto.pm:15 crypto.pm:49 lang.pm:214 network/adsl_consts.pm:93
-#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
-#: network/adsl_consts.pm:123 network/netconnect.pm:44
-#, c-format
-msgid "Belgium"
-msgstr "Beljik"
-
-#: crypto.pm:16 crypto.pm:50 lang.pm:223 network/adsl_consts.pm:132
-#: network/adsl_consts.pm:143 network/adsl_consts.pm:152
-#: network/adsl_consts.pm:161
-#, c-format
-msgid "Brazil"
-msgstr "Brazil"
-
-#: crypto.pm:17 crypto.pm:51 lang.pm:230
-#, c-format
-msgid "Canada"
-msgstr "Kanada"
-
-#: crypto.pm:18 crypto.pm:74 lang.pm:235 network/adsl_consts.pm:891
-#: network/adsl_consts.pm:900 network/adsl_consts.pm:911
-#, c-format
-msgid "Switzerland"
-msgstr "Suis"
-
-#: crypto.pm:19 lang.pm:242
-#, c-format
-msgid "Costa Rica"
-msgstr "Kosta Rika"
-
-#: crypto.pm:20 crypto.pm:52 lang.pm:248 network/adsl_consts.pm:368
-#, c-format
-msgid "Czech Republic"
-msgstr "Republik Tchek"
-
-#: crypto.pm:21 crypto.pm:57 lang.pm:249 network/adsl_consts.pm:499
-#: network/adsl_consts.pm:508
-#, c-format
-msgid "Germany"
-msgstr "Alamagn"
-
-#: crypto.pm:22 crypto.pm:53 lang.pm:251 network/adsl_consts.pm:378
-#, c-format
-msgid "Denmark"
-msgstr "Danmark"
-
-#: crypto.pm:23 crypto.pm:54 lang.pm:256
-#, c-format
-msgid "Estonia"
-msgstr "Estoni"
-
-#: crypto.pm:24 crypto.pm:72 lang.pm:260 network/adsl_consts.pm:759
-#: network/adsl_consts.pm:770 network/adsl_consts.pm:781
-#: network/adsl_consts.pm:792 network/adsl_consts.pm:801
-#: network/adsl_consts.pm:810 network/adsl_consts.pm:819
-#: network/adsl_consts.pm:828 network/adsl_consts.pm:837
-#: network/adsl_consts.pm:846 network/adsl_consts.pm:855
-#: network/adsl_consts.pm:864 network/adsl_consts.pm:873
-#, c-format
-msgid "Spain"
-msgstr "Spagn"
-
-#: crypto.pm:25 crypto.pm:55 lang.pm:262 network/adsl_consts.pm:387
+#: common.pm:298
#, c-format
-msgid "Finland"
-msgstr "Finland"
-
-#: crypto.pm:26 crypto.pm:56 lang.pm:267 network/adsl_consts.pm:396
-#: network/adsl_consts.pm:408 network/adsl_consts.pm:420
-#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
-#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
-#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
-#: network/netconnect.pm:41
-#, c-format
-msgid "France"
-msgstr "Gall"
-
-#: crypto.pm:27 crypto.pm:58 lang.pm:280 network/adsl_consts.pm:519
-#, c-format
-msgid "Greece"
-msgstr "Gres"
-
-#: crypto.pm:28 crypto.pm:59 lang.pm:291 network/adsl_consts.pm:528
-#, c-format
-msgid "Hungary"
-msgstr "Hongri"
-
-#: crypto.pm:29 crypto.pm:60 lang.pm:293 network/adsl_consts.pm:537
-#: standalone/drakxtv:47
-#, c-format
-msgid "Ireland"
-msgstr "Iwerzhon"
-
-#: crypto.pm:30 crypto.pm:61 lang.pm:294 network/adsl_consts.pm:546
-#, c-format
-msgid "Israel"
-msgstr "Israel"
-
-#: crypto.pm:31 crypto.pm:62 lang.pm:300 network/adsl_consts.pm:557
-#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
-#: network/adsl_consts.pm:589 network/netconnect.pm:43 standalone/drakxtv:47
-#, c-format
-msgid "Italy"
-msgstr "Itali"
-
-#: crypto.pm:32 crypto.pm:63 lang.pm:303
-#, c-format
-msgid "Japan"
-msgstr "Japon"
-
-#: crypto.pm:33 crypto.pm:64 lang.pm:352 network/adsl_consts.pm:620
-#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
-#: network/adsl_consts.pm:647 network/netconnect.pm:42
-#, c-format
-msgid "Netherlands"
-msgstr "Izelvroioù"
-
-#: crypto.pm:34 crypto.pm:66 lang.pm:353 network/adsl_consts.pm:656
-#: network/adsl_consts.pm:661 network/adsl_consts.pm:666
-#: network/adsl_consts.pm:671 network/adsl_consts.pm:676
-#: network/adsl_consts.pm:681 network/adsl_consts.pm:686
-#, c-format
-msgid "Norway"
-msgstr "Norvej"
-
-#: crypto.pm:35 crypto.pm:65 lang.pm:357
-#, c-format
-msgid "New Zealand"
-msgstr "Zeland Nevez"
-
-#: crypto.pm:36 crypto.pm:67 lang.pm:365 network/adsl_consts.pm:693
-#: network/adsl_consts.pm:704
-#, c-format
-msgid "Poland"
-msgstr "Pologn"
-
-#: crypto.pm:37 crypto.pm:68 lang.pm:370 network/adsl_consts.pm:716
-#, c-format
-msgid "Portugal"
-msgstr "Portugal"
-
-#: crypto.pm:38 crypto.pm:69 lang.pm:376 network/adsl_consts.pm:725
-#, c-format
-msgid "Russia"
-msgstr "Rusi"
-
-#: crypto.pm:39 crypto.pm:73 lang.pm:382 network/adsl_consts.pm:882
-#, c-format
-msgid "Sweden"
-msgstr "Sweden"
-
-#: crypto.pm:40 crypto.pm:70 lang.pm:387
-#, c-format
-msgid "Slovakia"
-msgstr "Slovaki"
-
-#: crypto.pm:41 crypto.pm:76 lang.pm:401 network/adsl_consts.pm:920
-#, c-format
-msgid "Thailand"
-msgstr "Tailhland"
-
-#: crypto.pm:42 crypto.pm:75 lang.pm:411
-#, c-format
-msgid "Taiwan"
-msgstr "Taeihlwan"
-
-#: crypto.pm:43 crypto.pm:71 lang.pm:430 standalone/drakxtv:49
-#, c-format
-msgid "South Africa"
-msgstr "Sua-Africa"
-
-#: crypto.pm:77 crypto.pm:112 lang.pm:416 network/netconnect.pm:45
-#, c-format
-msgid "United States"
-msgstr "Amerika"
+msgid "command %s missing"
+msgstr "mankout a ra an urzhiad %s"
#: diskdrake/dav.pm:17
#, c-format
@@ -1979,23 +1077,46 @@ msgstr ""
msgid "New"
msgstr "Nevez"
-#: diskdrake/dav.pm:61 diskdrake/interactive.pm:456 diskdrake/smbnfs_gtk.pm:74
+#: diskdrake/dav.pm:61 diskdrake/interactive.pm:449 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Divarc'hañ"
-#: diskdrake/dav.pm:62 diskdrake/interactive.pm:453 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:62 diskdrake/interactive.pm:446 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Marc'hañ"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:447
-#: diskdrake/interactive.pm:679 diskdrake/interactive.pm:698
-#: diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:78
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:440
+#: diskdrake/interactive.pm:670 diskdrake/interactive.pm:688
+#: diskdrake/interactive.pm:692 diskdrake/removable.pm:23
+#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Poent marc'hañ"
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:442
+#: diskdrake/interactive.pm:1047 diskdrake/removable.pm:24
+#: diskdrake/smbnfs_gtk.pm:80
+#, c-format
+msgid "Options"
+msgstr "Dibarzhoù"
+
+#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:229
+#: diskdrake/interactive.pm:242 diskdrake/interactive.pm:398
+#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:547
+#: diskdrake/interactive.pm:552 diskdrake/interactive.pm:660
+#: diskdrake/interactive.pm:922 diskdrake/interactive.pm:1092
+#: diskdrake/interactive.pm:1105 diskdrake/interactive.pm:1108
+#: diskdrake/interactive.pm:1348 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:19
+#: do_pkgs.pm:24 do_pkgs.pm:40 do_pkgs.pm:56 do_pkgs.pm:61 fsedit.pm:229
+#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
+#: scanner.pm:94 scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95
+#: wizards.pm:99 wizards.pm:121
+#, c-format
+msgid "Error"
+msgstr "Fazi"
+
#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
@@ -2011,33 +1132,48 @@ msgstr "Ezhom en deus an URL da gregiñ gant http:// pe https://"
msgid "Server: "
msgstr "Servijer : "
-#: diskdrake/dav.pm:110 diskdrake/interactive.pm:523
-#: diskdrake/interactive.pm:1218 diskdrake/interactive.pm:1296
+#: diskdrake/dav.pm:110 diskdrake/interactive.pm:520
+#: diskdrake/interactive.pm:1230 diskdrake/interactive.pm:1308
#, c-format
msgid "Mount point: "
msgstr "Poent marc'hañ : "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1303
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1315
#, c-format
msgid "Options: %s"
msgstr "Dibarzhoù : %s"
-#: diskdrake/hd_gtk.pm:52 diskdrake/interactive.pm:293
-#: diskdrake/smbnfs_gtk.pm:21 install_interactive.pm:63
-#: install_interactive.pm:217 install_interactive.pm:223
-#: install_interactive.pm:276 install_interactive.pm:281
-#: install_steps_interactive.pm:253 install_steps_interactive.pm:317
-#: steps.pm:21
+#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:286
+#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
+#: fs/partitioning_wizard.pm:47 fs/partitioning_wizard.pm:201
+#: fs/partitioning_wizard.pm:207 fs/partitioning_wizard.pm:247
+#: fs/partitioning_wizard.pm:266 fs/partitioning_wizard.pm:271
#, c-format
msgid "Partitioning"
msgstr "O parzhañ"
-#: diskdrake/hd_gtk.pm:92
+#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1067
+#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1130
+#, c-format
+msgid "Read carefully!"
+msgstr "Lennit aketus !"
+
+#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr "Gwarezit ho roadoù da gentañ mar plij"
-#: diskdrake/hd_gtk.pm:95
+#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:222
+#, c-format
+msgid "Exit"
+msgstr "Kuitaat"
+
+#: diskdrake/hd_gtk.pm:94
+#, c-format
+msgid "Continue"
+msgstr "Kenderc'hel"
+
+#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
@@ -2048,17 +1184,18 @@ msgstr ""
"rann\n"
"zo a-walc'h) e deroù ar bladenn"
-#: diskdrake/hd_gtk.pm:152 help.pm:531
+#: diskdrake/hd_gtk.pm:162 interactive.pm:640 interactive/gtk.pm:719
+#: interactive/gtk.pm:740 interactive/gtk.pm:760 ugtk2.pm:923 ugtk2.pm:924
#, c-format
-msgid "Wizard"
-msgstr "Skoazeller"
+msgid "Help"
+msgstr "Skoazell"
-#: diskdrake/hd_gtk.pm:185
+#: diskdrake/hd_gtk.pm:197
#, c-format
msgid "Choose action"
msgstr "Dibabit un obererezh"
-#: diskdrake/hd_gtk.pm:189
+#: diskdrake/hd_gtk.pm:201
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -2069,148 +1206,162 @@ msgstr ""
"Aliañ a ran ouzoc'h adventañ ar parzhadur-se\n"
"(klikit warni, da c'houde klikit ouzh \"Adventañ\")"
-#: diskdrake/hd_gtk.pm:191
+#: diskdrake/hd_gtk.pm:203
#, c-format
msgid "Please click on a partition"
msgstr "Klikit ouzh ur parzhadur mar plij"
-#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:457
-#: standalone/drakbackup:3088 standalone/drakbackup:3148
+#: diskdrake/hd_gtk.pm:217 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Munudoù"
-#: diskdrake/hd_gtk.pm:251
+#: diskdrake/hd_gtk.pm:265
#, c-format
msgid "No hard drives found"
msgstr "N'eo ket pladenn ebet"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:292
+#, c-format
+msgid "Unknown"
+msgstr "Anavez"
+
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Ext2"
msgstr "Ext2"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Journalised FS"
msgstr "RR gant ur levr-bourzh"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Swap"
msgstr "Disloañ"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "SunOS"
msgstr "SunOS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "HFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1233
+#: diskdrake/hd_gtk.pm:352 services.pm:149
+#, c-format
+msgid "Other"
+msgstr "All"
+
+#: diskdrake/hd_gtk.pm:352 diskdrake/interactive.pm:1244
#, c-format
msgid "Empty"
msgstr "Goullo"
-#: diskdrake/hd_gtk.pm:340
+#: diskdrake/hd_gtk.pm:356
#, c-format
msgid "Filesystem types:"
msgstr "Seurt ar reizhiadoù restroù :"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:359 diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:291
+#: diskdrake/interactive.pm:392 diskdrake/interactive.pm:428
+#: diskdrake/interactive.pm:577 diskdrake/interactive.pm:751
+#: diskdrake/interactive.pm:809 diskdrake/interactive.pm:902
+#: diskdrake/interactive.pm:944 diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:1173 diskdrake/interactive.pm:1211
+#: diskdrake/interactive.pm:1347 do_pkgs.pm:16 do_pkgs.pm:35 do_pkgs.pm:53
+#: harddrake/sound.pm:279
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Grit kentoc'h gant « %s »"
+msgid "Warning"
+msgstr "Ho evezh"
-#: diskdrake/hd_gtk.pm:357 diskdrake/interactive.pm:472
+#: diskdrake/hd_gtk.pm:380
#, c-format
-msgid "Create"
-msgstr "Krouiñ"
+msgid "This partition is already empty"
+msgstr "Goullo eo ar barzhadur-se c'hoazh"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:365
-#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:625
-#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
-#: standalone/harddrake2:108 standalone/harddrake2:117
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Type"
-msgstr "Seurt"
+msgid "Use ``Unmount'' first"
+msgstr "Implijit « Divarc'hañ » da gentañ"
-#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: diskdrake/hd_gtk.pm:359 diskdrake/interactive.pm:457
-#: standalone/drakperm:123 standalone/printerdrake:248
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Delete"
-msgstr "Dilemel"
+msgid "Use ``%s'' instead"
+msgstr "Grit kentoc'h gant « %s »"
-#: diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:389 diskdrake/interactive.pm:441
+#: diskdrake/interactive.pm:611 diskdrake/interactive.pm:1083
+#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Implijit « Divarc'hañ » da gentañ"
+msgid "Type"
+msgstr "Seurt"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose another partition"
msgstr "Dibabit ur parzhadur all"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose a partition"
msgstr "Dibabit ur parzhadur"
-#: diskdrake/interactive.pm:224
-#, c-format
-msgid "Exit"
-msgstr "Kuitaat"
-
-#: diskdrake/interactive.pm:257 help.pm:531
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Undo"
msgstr "Dizober"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to normal mode"
msgstr "Tremen er mod boas"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to expert mode"
msgstr "Tremen er mod mailh"
-#: diskdrake/interactive.pm:276
+#: diskdrake/interactive.pm:269 diskdrake/interactive.pm:279
+#: diskdrake/interactive.pm:1158
+#, c-format
+msgid "Confirmation"
+msgstr "Kadarnadur"
+
+#: diskdrake/interactive.pm:269
#, c-format
msgid "Continue anyway?"
msgstr "Kenderc'hel evelato ?"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without saving"
msgstr "Kuitaat hep enrollañ"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Kuitaat hep skrivañ an daolenn barzhañ ?"
-#: diskdrake/interactive.pm:286
+#: diskdrake/interactive.pm:279
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Mennout a rit skrivañ kemmoù /etc/fstab"
-#: diskdrake/interactive.pm:293 install_steps_interactive.pm:317
+#: diskdrake/interactive.pm:286 fs/partitioning_wizard.pm:247
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Ret eo deoc'h adloc'hañ evit ma talvezo kemmoù an daolenn barzhañ"
-#: diskdrake/interactive.pm:298
+#: diskdrake/interactive.pm:291
#, c-format
msgid ""
"You should format partition %s.\n"
@@ -2218,38 +1369,38 @@ msgid ""
"Quit anyway?"
msgstr ""
-#: diskdrake/interactive.pm:311 help.pm:531
+#: diskdrake/interactive.pm:304
#, c-format
msgid "Clear all"
msgstr "Skarañ an holl"
-#: diskdrake/interactive.pm:312 help.pm:531
+#: diskdrake/interactive.pm:305
#, c-format
msgid "Auto allocate"
msgstr "Ac'hubiñ ent emgefreek"
-#: diskdrake/interactive.pm:313 help.pm:531 help.pm:567 help.pm:607
-#: help.pm:856 install_steps_interactive.pm:98
+#: diskdrake/interactive.pm:306 diskdrake/interactive.pm:360
+#: interactive/curses.pm:457
#, c-format
msgid "More"
msgstr "Mui"
-#: diskdrake/interactive.pm:318
+#: diskdrake/interactive.pm:311
#, c-format
msgid "Hard drive information"
msgstr "Titouroù ar bladenn"
-#: diskdrake/interactive.pm:350
+#: diskdrake/interactive.pm:343
#, c-format
msgid "All primary partitions are used"
msgstr "Ac'hubet eo an holl barzhadurioù kentañ renk"
-#: diskdrake/interactive.pm:351
+#: diskdrake/interactive.pm:344
#, c-format
msgid "I can not add any more partitions"
msgstr "N'hellan ouzpennañ parzhadur ebet ken"
-#: diskdrake/interactive.pm:352
+#: diskdrake/interactive.pm:345
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
@@ -2258,52 +1409,52 @@ msgstr ""
"Evit kaout muioc'h a barzhadurioù, lamit unan evit ma c'hellot krouiñ ur "
"parzhadur astennet mar plij"
-#: diskdrake/interactive.pm:361
+#: diskdrake/interactive.pm:354
#, c-format
msgid "No supermount"
msgstr "N'eus Supermount ebet"
-#: diskdrake/interactive.pm:362
+#: diskdrake/interactive.pm:355
#, c-format
msgid "Supermount"
msgstr "Supermount"
-#: diskdrake/interactive.pm:363
+#: diskdrake/interactive.pm:356
#, c-format
msgid "Supermount except for CDROM drives"
msgstr "Supermount evit CDROMoù hepken"
-#: diskdrake/interactive.pm:369 help.pm:531
+#: diskdrake/interactive.pm:362
#, c-format
msgid "Save partition table"
msgstr "Skrivañ an daolenn barzhañ"
-#: diskdrake/interactive.pm:370 help.pm:531
+#: diskdrake/interactive.pm:363
#, c-format
msgid "Restore partition table"
msgstr "Adaozañ an daolenn barzhañ"
-#: diskdrake/interactive.pm:371 help.pm:531
+#: diskdrake/interactive.pm:364
#, c-format
msgid "Rescue partition table"
msgstr "Taolenn barzhañ saveteerezh"
-#: diskdrake/interactive.pm:373 help.pm:531
+#: diskdrake/interactive.pm:366
#, c-format
msgid "Reload partition table"
msgstr "Adkargañ an daolenn barzhañ"
-#: diskdrake/interactive.pm:375
+#: diskdrake/interactive.pm:368
#, c-format
msgid "Removable media automounting"
msgstr "Emvarc'hañ ar skoroù lem/laka"
-#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:414
+#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:407
#, c-format
msgid "Select file"
msgstr "Dibabit ar restr"
-#: diskdrake/interactive.pm:400
+#: diskdrake/interactive.pm:393
#, c-format
msgid ""
"The backup partition table has not the same size\n"
@@ -2312,87 +1463,97 @@ msgstr ""
"N'eo ket heñvel ment an daolenn barzhañ gwarezet\n"
"Kenderc'hel memestra ?"
-#: diskdrake/interactive.pm:429
+#: diskdrake/interactive.pm:422
#, c-format
msgid "Trying to rescue partition table"
msgstr "O klask assevel an daolenn barzhañ"
-#: diskdrake/interactive.pm:435
+#: diskdrake/interactive.pm:428
#, c-format
msgid "Detailed information"
msgstr "Titouroù gant munudoù"
-#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:444 diskdrake/interactive.pm:764
#, c-format
msgid "Resize"
msgstr "Adventañ"
-#: diskdrake/interactive.pm:452
+#: diskdrake/interactive.pm:445
#, c-format
msgid "Format"
msgstr "Furmadiñ"
-#: diskdrake/interactive.pm:454
+#: diskdrake/interactive.pm:447 diskdrake/interactive.pm:850
#, c-format
msgid "Add to RAID"
msgstr "Ouzhpennañ da RAID"
-#: diskdrake/interactive.pm:455
+#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:867
#, c-format
msgid "Add to LVM"
msgstr "Ouzhpennañ da LVM"
-#: diskdrake/interactive.pm:458
+#: diskdrake/interactive.pm:450
+#, c-format
+msgid "Delete"
+msgstr "Dilemel"
+
+#: diskdrake/interactive.pm:451
#, c-format
msgid "Remove from RAID"
msgstr "Lemel diwar RAID"
-#: diskdrake/interactive.pm:459
+#: diskdrake/interactive.pm:452
#, c-format
msgid "Remove from LVM"
msgstr "Lemel diwar LVM"
-#: diskdrake/interactive.pm:460
+#: diskdrake/interactive.pm:453
#, c-format
msgid "Modify RAID"
msgstr "Kemmañ RAID"
-#: diskdrake/interactive.pm:461
+#: diskdrake/interactive.pm:454
#, c-format
msgid "Use for loopback"
msgstr "Implij da saveteiñ"
-#: diskdrake/interactive.pm:516
+#: diskdrake/interactive.pm:465
+#, c-format
+msgid "Create"
+msgstr "Krouiñ"
+
+#: diskdrake/interactive.pm:509 diskdrake/interactive.pm:511
#, c-format
msgid "Create a new partition"
msgstr "Krouiñ ur parzhadur nevez"
-#: diskdrake/interactive.pm:519
+#: diskdrake/interactive.pm:513
#, c-format
msgid "Start sector: "
msgstr "Rann kregiñ : "
-#: diskdrake/interactive.pm:521 diskdrake/interactive.pm:938
+#: diskdrake/interactive.pm:516 diskdrake/interactive.pm:937
#, c-format
msgid "Size in MB: "
msgstr "Ment e Mo : "
-#: diskdrake/interactive.pm:522 diskdrake/interactive.pm:939
+#: diskdrake/interactive.pm:518 diskdrake/interactive.pm:938
#, c-format
msgid "Filesystem type: "
msgstr "Seurt ar reizhiad restroù : "
-#: diskdrake/interactive.pm:527
+#: diskdrake/interactive.pm:524
#, c-format
msgid "Preference: "
msgstr "Dibarzh : "
-#: diskdrake/interactive.pm:530
+#: diskdrake/interactive.pm:527
#, c-format
msgid "Logical volume name "
msgstr "Anv al levrenn poellek "
-#: diskdrake/interactive.pm:560
+#: diskdrake/interactive.pm:547
#, c-format
msgid ""
"You can not create a new partition\n"
@@ -2400,49 +1561,54 @@ msgid ""
"First remove a primary partition and create an extended partition."
msgstr ""
-#: diskdrake/interactive.pm:590
+#: diskdrake/interactive.pm:577
#, c-format
msgid "Remove the loopback file?"
msgstr "Lemel ar restr saveteiñ ?"
-#: diskdrake/interactive.pm:609
+#: diskdrake/interactive.pm:596
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Goude kemmañ seurt ar parzhadur %s, holl roadoù ar parzhadur-se a vo kollet"
-#: diskdrake/interactive.pm:621
+#: diskdrake/interactive.pm:608
#, c-format
msgid "Change partition type"
msgstr "Kemmañ seurt ar parzhadur"
-#: diskdrake/interactive.pm:622 diskdrake/removable.pm:47
+#: diskdrake/interactive.pm:610 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Pe seurt reizhiad restroù a vennit ?"
-#: diskdrake/interactive.pm:630
+#: diskdrake/interactive.pm:617
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "Gwintañ eus ext2 da ext3"
-#: diskdrake/interactive.pm:650
+#: diskdrake/interactive.pm:637 diskdrake/interactive.pm:640
#, c-format
msgid "Which volume label?"
msgstr "Pe anv levrenn ?"
-#: diskdrake/interactive.pm:666
+#: diskdrake/interactive.pm:641
+#, c-format
+msgid "Label:"
+msgstr "Skridennad :"
+
+#: diskdrake/interactive.pm:655
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Pelec'h e mennit marc'hañ ar restr saveteiñ %s ?"
-#: diskdrake/interactive.pm:667
+#: diskdrake/interactive.pm:656
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Pelec'h e mennit marc'hañ an drobarzhell %s ?"
-#: diskdrake/interactive.pm:672
+#: diskdrake/interactive.pm:661
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
@@ -2451,75 +1617,85 @@ msgstr ""
"N'hellan ket dizober ar poent marc'hañ dre m'eo implijet ar parzhadur-se\n"
"evit saveteiñ. Lamit ar saveteiñ da gentañ"
-#: diskdrake/interactive.pm:697
+#: diskdrake/interactive.pm:691
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Pelec'h e mennit marc'hañ an %s ?"
-#: diskdrake/interactive.pm:721 diskdrake/interactive.pm:800
-#: install_interactive.pm:157 install_interactive.pm:189
+#: diskdrake/interactive.pm:715 diskdrake/interactive.pm:798
+#: fs/partitioning_wizard.pm:141 fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing"
msgstr "Oc'h adventañ"
-#: diskdrake/interactive.pm:721
+#: diskdrake/interactive.pm:715
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "O jediñ bevennoù ar reizhiad restroù FAT"
-#: diskdrake/interactive.pm:757
+#: diskdrake/interactive.pm:751
#, c-format
msgid "This partition is not resizeable"
msgstr "N'hellan ket adventañ ar parzhadur-se"
-#: diskdrake/interactive.pm:762
+#: diskdrake/interactive.pm:756
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Mat e vije gwareziñ holl roadoù ar parzhadur-se"
-#: diskdrake/interactive.pm:764
+#: diskdrake/interactive.pm:758
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Goude adventañ ar parzhadur %s e vo kollet holl roadoù ar parzhadur-se"
-#: diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:765
#, c-format
msgid "Choose the new size"
msgstr "Dibabit ar ment nevez"
-#: diskdrake/interactive.pm:770
+#: diskdrake/interactive.pm:766
#, c-format
msgid "New size in MB: "
msgstr "Ment nevez e Mo : "
-#: diskdrake/interactive.pm:811 install_interactive.pm:197
+#: diskdrake/interactive.pm:767
+#, c-format
+msgid "Minimum size: %s MB"
+msgstr "Ment izelañ : %s Mo"
+
+#: diskdrake/interactive.pm:768
+#, c-format
+msgid "Maximum size: %s MB"
+msgstr "Ment uhelañ : %s Mo"
+
+#: diskdrake/interactive.pm:809 fs/partitioning_wizard.pm:181
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
"filesystem checks will be run on your next boot into Microsoft Windows®"
msgstr ""
-#: diskdrake/interactive.pm:852
+#: diskdrake/interactive.pm:850
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Dibabit da be RAID ouzhpennañ"
-#: diskdrake/interactive.pm:854 diskdrake/interactive.pm:871
+#: diskdrake/interactive.pm:852 diskdrake/interactive.pm:869
#, c-format
msgid "new"
msgstr "nevez"
-#: diskdrake/interactive.pm:869
+#: diskdrake/interactive.pm:867
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Dibabit da be LVM ouzhpennañ"
-#: diskdrake/interactive.pm:875
+#: diskdrake/interactive.pm:874
#, c-format
msgid "LVM name?"
msgstr "Anv LVM ?"
-#: diskdrake/interactive.pm:903
+#: diskdrake/interactive.pm:902
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
@@ -2529,214 +1705,215 @@ msgstr ""
"Mennout a rit dilec'hiañ al levrennioù fizikel implijet deus al levrenn-mañ "
"war unan all ?"
-#: diskdrake/interactive.pm:905
+#: diskdrake/interactive.pm:904
#, c-format
msgid "Moving physical extents"
msgstr "O fiñval al levrennioù fizikel"
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:922
#, c-format
msgid "This partition can not be used for loopback"
msgstr "N'heller ket implijout ar parzhadur-mañ evit saveteiñ"
-#: diskdrake/interactive.pm:936
+#: diskdrake/interactive.pm:935
#, c-format
msgid "Loopback"
msgstr "Saveteiñ"
-#: diskdrake/interactive.pm:937
+#: diskdrake/interactive.pm:936
#, c-format
msgid "Loopback file name: "
msgstr "Anv ar restr saveteiñ : "
-#: diskdrake/interactive.pm:942
+#: diskdrake/interactive.pm:941
#, c-format
msgid "Give a file name"
msgstr "Roit ur anv restr"
-#: diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:944
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Restr implijet gant ur saveteiñ all endeo, dibabit unan all"
-#: diskdrake/interactive.pm:946
+#: diskdrake/interactive.pm:945
#, c-format
msgid "File already exists. Use it?"
msgstr "Ar restr zo endeo. E implijout ?"
-#: diskdrake/interactive.pm:969
+#: diskdrake/interactive.pm:974 diskdrake/interactive.pm:977
#, c-format
msgid "Mount options"
msgstr "Dibarzhoù marc'hañ"
-#: diskdrake/interactive.pm:976
+#: diskdrake/interactive.pm:984
#, c-format
msgid "Various"
msgstr "A bep sort"
-#: diskdrake/interactive.pm:1044
+#: diskdrake/interactive.pm:1049
#, c-format
msgid "device"
msgstr "trobarzhell"
-#: diskdrake/interactive.pm:1045
+#: diskdrake/interactive.pm:1050
#, c-format
msgid "level"
msgstr "live"
-#: diskdrake/interactive.pm:1046
+#: diskdrake/interactive.pm:1051
#, c-format
msgid "chunk size in KiB"
msgstr "ment diaoz (KiO)"
-#: diskdrake/interactive.pm:1063
+#: diskdrake/interactive.pm:1068
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Bezit war evezh : arvarus eo an obererezh-mañ."
-#: diskdrake/interactive.pm:1078
+#: diskdrake/interactive.pm:1083
#, c-format
msgid "What type of partitioning?"
msgstr "Peseurt eo ar parzhadur ?"
-#: diskdrake/interactive.pm:1116
+#: diskdrake/interactive.pm:1121
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Ret e vo deoc'h adloc'hañ a-raok ma talvezo ar c'hemm"
-#: diskdrake/interactive.pm:1125
+#: diskdrake/interactive.pm:1130
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "War-nes bezañ skrivet war bladenn eo taolenn barzhañ an ardivink %s !"
-#: diskdrake/interactive.pm:1148
+#: diskdrake/interactive.pm:1153
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Goude furmadiñ ar parzhadur %s, holl roadoù ar parzhadur-se a vo kollet"
-#: diskdrake/interactive.pm:1164
+#: diskdrake/interactive.pm:1158 fs/partitioning.pm:49
+#, c-format
+msgid "Check bad blocks?"
+msgstr "Gwiriañ ar bloc'hoù siek ?"
+
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Move files to the new partition"
msgstr "Dilec'hiañ retroù er parzhadur nevez"
-#: diskdrake/interactive.pm:1164 standalone/draksambashare:81
-#: standalone/draksambashare:144
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Hide files"
msgstr "Kuzhat ar restroù"
-#: diskdrake/interactive.pm:1165
+#: diskdrake/interactive.pm:1173
#, c-format
msgid ""
"Directory %s already contains data\n"
-"(%s)"
+"(%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 ""
-"Bez eus roadoù c'hoazh er renkell %s\n"
-"(%s)"
-#: diskdrake/interactive.pm:1176
+#: diskdrake/interactive.pm:1188
#, c-format
msgid "Moving files to the new partition"
msgstr "O tilec'hiañ retroù er parzhadur nevez"
-#: diskdrake/interactive.pm:1180
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "Copying %s"
msgstr "Adskrivañ %s"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1196
#, c-format
msgid "Removing %s"
msgstr "Lemel %s"
-#: diskdrake/interactive.pm:1198
+#: diskdrake/interactive.pm:1210
#, c-format
msgid "partition %s is now known as %s"
msgstr "ar parzhadur %s 'zo %s bremañ"
-#: diskdrake/interactive.pm:1199
+#: diskdrake/interactive.pm:1211
#, c-format
msgid "Partitions have been renumbered: "
msgstr "Kemmet eo niverennoù ar parzhadurioù : "
-#: diskdrake/interactive.pm:1219 diskdrake/interactive.pm:1281
+#: diskdrake/interactive.pm:1231 diskdrake/interactive.pm:1293
#, c-format
msgid "Device: "
msgstr "Trobarzhell : "
-#: diskdrake/interactive.pm:1220
-#, c-format
-msgid "Devfs name: "
-msgstr "Anv DevFS : "
-
-#: diskdrake/interactive.pm:1221
+#: diskdrake/interactive.pm:1232
#, c-format
msgid "Volume label: "
msgstr "Anv al levrenn : "
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1233
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lizher ar bladenn DOS : %s (diwar varteze hepken)\n"
-#: diskdrake/interactive.pm:1226 diskdrake/interactive.pm:1235
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1237 diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1311
#, c-format
msgid "Type: "
msgstr "Seurt : "
-#: diskdrake/interactive.pm:1230 install_steps_gtk.pm:300
+#: diskdrake/interactive.pm:1241
#, c-format
msgid "Name: "
msgstr "Anv : "
-#: diskdrake/interactive.pm:1237
+#: diskdrake/interactive.pm:1248
#, c-format
msgid "Start: sector %s\n"
msgstr "O kregiñ : rann %s\n"
-#: diskdrake/interactive.pm:1238
+#: diskdrake/interactive.pm:1249
#, c-format
msgid "Size: %s"
msgstr "Ment : %s"
-#: diskdrake/interactive.pm:1240
+#: diskdrake/interactive.pm:1251
#, c-format
msgid ", %s sectors"
msgstr ", %s rann"
-#: diskdrake/interactive.pm:1242
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Kranenn %d da %d\n"
-#: diskdrake/interactive.pm:1243
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Number of logical extents: %d\n"
msgstr "Niver a levrennioù poellek : %d\n"
-#: diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Formatted\n"
msgstr "Furmadet\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "Not formatted\n"
msgstr "N'eo ket furmadet\n"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Mounted\n"
msgstr "Marc'het\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1252
+#: diskdrake/interactive.pm:1263
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2745,7 +1922,7 @@ msgstr ""
"Restr(où) saveteiñ :\n"
" %s\n"
-#: diskdrake/interactive.pm:1253
+#: diskdrake/interactive.pm:1264
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2754,27 +1931,27 @@ msgstr ""
"Parzhadur loc'het dre ziouer\n"
" (evit loc'hañ MS-DOS, ket evit lilo)\n"
-#: diskdrake/interactive.pm:1255
+#: diskdrake/interactive.pm:1266
#, c-format
msgid "Level %s\n"
msgstr "Live %s\n"
-#: diskdrake/interactive.pm:1256
+#: diskdrake/interactive.pm:1267
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Ment diaoz %d KiO\n"
-#: diskdrake/interactive.pm:1257
+#: diskdrake/interactive.pm:1268
#, c-format
msgid "RAID-disks %s\n"
msgstr "Pladennoù RAID %s\n"
-#: diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1270
#, c-format
msgid "Loopback file name: %s"
msgstr "Anv ar restr saveteiñ : %s"
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1273
#, c-format
msgid ""
"\n"
@@ -2783,7 +1960,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: diskdrake/interactive.pm:1265
+#: diskdrake/interactive.pm:1276
#, c-format
msgid ""
"\n"
@@ -2792,75 +1969,78 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: diskdrake/interactive.pm:1282
+#: diskdrake/interactive.pm:1285
+#, c-format
+msgid "Empty space on %s (%s)"
+msgstr ""
+
+#: diskdrake/interactive.pm:1294
#, c-format
msgid "Read-only"
msgstr "Lenn-hepken"
-#: diskdrake/interactive.pm:1283
+#: diskdrake/interactive.pm:1295
#, c-format
msgid "Size: %s\n"
msgstr "Ment : %s\n"
-#: diskdrake/interactive.pm:1284
+#: diskdrake/interactive.pm:1296
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Mentoniezh : %s kranenn, %s penn, %s rann\n"
-#: diskdrake/interactive.pm:1285 network/thirdparty.pm:331
+#: diskdrake/interactive.pm:1297
#, c-format
msgid "Info: "
msgstr "Titouroù : "
-#: diskdrake/interactive.pm:1286
+#: diskdrake/interactive.pm:1298
#, c-format
msgid "LVM-disks %s\n"
msgstr "Pladennoù LVM %s\n"
-#: diskdrake/interactive.pm:1287
+#: diskdrake/interactive.pm:1299
#, c-format
msgid "Partition table type: %s\n"
msgstr "Seurt taolenn barzhañ : %s\n"
-#: diskdrake/interactive.pm:1288
+#: diskdrake/interactive.pm:1300
#, c-format
msgid "on channel %d id %d\n"
msgstr "war kanol %d Nn %d\n"
-#: diskdrake/interactive.pm:1331
+#: diskdrake/interactive.pm:1343
#, c-format
msgid "Filesystem encryption key"
msgstr "Alc'hwez enrinegadur ar reizhiad restroù"
-#: diskdrake/interactive.pm:1332
+#: diskdrake/interactive.pm:1344
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Dibab hoc'h alc'hwez enrinegadur ar reizhiad restroù"
-#: diskdrake/interactive.pm:1335
+#: diskdrake/interactive.pm:1347
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Re eeun eo an alc'hwez enrinegadur-se (%d arouezenn zo ret d'an nebeutañ)"
-#: diskdrake/interactive.pm:1336
+#: diskdrake/interactive.pm:1348
#, c-format
msgid "The encryption keys do not match"
msgstr "An alc'hwezoù enrinegadur ne glot ket"
-#: diskdrake/interactive.pm:1339 network/netconnect.pm:1073
-#: standalone/drakconnect:419 standalone/drakroam:120
+#: diskdrake/interactive.pm:1351
#, c-format
msgid "Encryption key"
msgstr "Alc'hwez enrinegadur"
-#: diskdrake/interactive.pm:1340
+#: diskdrake/interactive.pm:1352
#, c-format
msgid "Encryption key (again)"
msgstr "Alc'hwez enrinegadur (adarre)"
-#: diskdrake/interactive.pm:1342 standalone/drakvpn:1017
-#: standalone/drakvpn:1102
+#: diskdrake/interactive.pm:1354
#, c-format
msgid "Encryption algorithm"
msgstr "Algoritm enrinegadur"
@@ -2870,112 +2050,117 @@ msgstr "Algoritm enrinegadur"
msgid "Change type"
msgstr "Kemmañ seurt"
-#: diskdrake/smbnfs_gtk.pm:163
+#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:539
+#: interactive/curses.pm:214 interactive/http.pm:104 interactive/http.pm:160
+#: interactive/stdio.pm:39 interactive/stdio.pm:142 ugtk2.pm:404 ugtk2.pm:506
+#: ugtk2.pm:515 ugtk2.pm:788
+#, c-format
+msgid "Cancel"
+msgstr "Nullañ"
+
+#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr ""
"N'hellan ket ereañ gant an anv arveriad %s (n'eo ket mat an tremenger ?)"
-#: diskdrake/smbnfs_gtk.pm:167 diskdrake/smbnfs_gtk.pm:176
+#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr ""
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Peseurt anv"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Unan all"
-#: diskdrake/smbnfs_gtk.pm:177
+#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr "Roit ho anv arveriad, ho tremenger hag ho anv domain evit an ostiz-se"
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3640
+#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Anv arveriad"
-#: diskdrake/smbnfs_gtk.pm:205
+#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Klask servijerioù"
-#: diskdrake/smbnfs_gtk.pm:210
+#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr "Klask servijerioù nevez"
-#: do_pkgs.pm:16 do_pkgs.pm:49
+#: do_pkgs.pm:16 do_pkgs.pm:53
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Ar pakad %s zo war-nes bezañ staliet. Mennout a rit staliañ anezhañ ?"
-#: do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:52 printer/printerdrake.pm:3948
+#: do_pkgs.pm:19 do_pkgs.pm:40 do_pkgs.pm:56
#, c-format
msgid "Could not install the %s package!"
msgstr "N'eo ket evit staliañ ar pakad %s !"
-#: do_pkgs.pm:24 do_pkgs.pm:57
+#: do_pkgs.pm:24 do_pkgs.pm:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Mankout a ra ar pakad ret %s"
-#: do_pkgs.pm:35 harddrake/sound.pm:278 install_steps_interactive.pm:1288
-#: keyboard.pm:381 network/ndiswrapper.pm:95 network/netconnect.pm:471
-#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2495
-#: printer/printerdrake.pm:2632 printer/printerdrake.pm:2953
-#: printer/printerdrake.pm:2960 printer/printerdrake.pm:3947
-#: printer/printerdrake.pm:4211 printer/printerdrake.pm:4330
-#: printer/printerdrake.pm:5487 standalone/drakTermServ:354
-#: standalone/drakTermServ:1267 standalone/drakTermServ:1328
-#: standalone/drakTermServ:2006 standalone/drakbackup:510
-#: standalone/drakbackup:609 standalone/drakboot:133 standalone/drakclock:224
-#: standalone/drakconnect:973 standalone/drakfont:679 standalone/drakperm:380
-#: standalone/drakperm:390 standalone/drakups:27 standalone/harddrake2:510
-#: standalone/harddrake2:526 standalone/localedrake:43
-#: standalone/scannerdrake:51 standalone/scannerdrake:957
-#, c-format
-msgid "Warning"
-msgstr "Ho evezh"
-
-#: do_pkgs.pm:35 standalone/harddrake2:526
+#: do_pkgs.pm:35
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Ar pakadoù a-heul zo war-nes bezañ staliet :\n"
-#: do_pkgs.pm:205
+#: do_pkgs.pm:209
#, c-format
msgid "Installing packages..."
msgstr "O staliañ pakadoù ..."
-#: do_pkgs.pm:252
+#: do_pkgs.pm:255
#, c-format
msgid "Removing packages..."
msgstr "Lemel pakadoù ..."
-#: fs/format.pm:58 fs/format.pm:65
+#: fs/any.pm:17
+#, c-format
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"C'hoarvezet ez eus ur fazi - n'eus bet kavet trobarzhell reizh ebet a-benn "
+"krouiñ reizhiadoù restroù nevez warni. Gwiriit abeg ar gudenn-mañ en ho "
+"ardivinkaj mar plij "
+
+#: fs/any.pm:62 fs/partitioning_wizard.pm:55
+#, c-format
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Ret eo deoc'h kaout ur parzhadur FAT marc'het war /boot/efi"
+
+#: fs/format.pm:59 fs/format.pm:66
#, c-format
msgid "Formatting partition %s"
msgstr "O furmadiñ ar parzhadur %s"
-#: fs/format.pm:62
+#: fs/format.pm:63
#, c-format
msgid "Creating and formatting file %s"
msgstr "O krouiñ hag o furmadiñ ar restr saveteiñ %s"
-#: fs/format.pm:115
+#: fs/format.pm:116
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "N'ouzon ket penaos furmadiñ %s er seurt %s"
-#: fs/format.pm:120 fs/format.pm:122
+#: fs/format.pm:121 fs/format.pm:123
#, c-format
msgid "%s formatting of %s failed"
msgstr "furmadiñ ar seurt %s eus %s zo sac'het"
@@ -2985,27 +2170,27 @@ msgstr "furmadiñ ar seurt %s eus %s zo sac'het"
msgid "Circular mounts %s\n"
msgstr "Marc'hañ kelc'hiek %s\n"
-#: fs/mount.pm:74
+#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "O zivarc'hañ ar parzhadur %s"
-#: fs/mount.pm:75
+#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "sac'het eo mac'hañ ar barzhadur %s er renkell %s"
-#: fs/mount.pm:80 fs/mount.pm:97
+#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "O wiriañ %s"
-#: fs/mount.pm:113 partition_table.pm:385
+#: fs/mount.pm:118 partition_table.pm:384
#, c-format
msgid "error unmounting %s: %s"
msgstr "fazi en ur zivarc'hañ %s : %s"
-#: fs/mount.pm:142
+#: fs/mount.pm:133
#, c-format
msgid "Enabling swap partition %s"
msgstr "Bevañ ar barzhadur disloañ %s"
@@ -3067,35 +2252,304 @@ msgstr ""
#: fs/mount_options.pm:139
#, c-format
+msgid "Allow every user to mount and umount the file system."
+msgstr ""
+
+#: fs/mount_options.pm:141
+#, c-format
msgid "Allow an ordinary user to mount the file system."
msgstr "Moaein zo da varc'hañ ar reiziad restroù gant un arveriad."
-#: fs/mount_options.pm:141
+#: fs/mount_options.pm:143
#, c-format
msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""
-#: fs/mount_options.pm:143
+#: fs/mount_options.pm:145
#, c-format
-msgid "Support user. extended attributes"
+msgid "Support \"user.\" extended attributes"
msgstr ""
-#: fs/mount_options.pm:145
+#: fs/mount_options.pm:147
#, c-format
msgid "Give write access to ordinary users"
msgstr ""
-#: fs/mount_options.pm:147
+#: fs/mount_options.pm:149
#, c-format
msgid "Give read-only access to ordinary users"
msgstr ""
-#: fs/type.pm:363
+#: fs/mount_point.pm:80
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Poent marc'hañ doubl %s"
+
+#: fs/mount_point.pm:95
+#, c-format
+msgid "No partition available"
+msgstr "Parzhadur ebet"
+
+#: fs/mount_point.pm:98
+#, c-format
+msgid "Scanning partitions to find mount points"
+msgstr "O klask ar parzhadurioù evit kavout poentoù marc'hañ"
+
+#: fs/mount_point.pm:105
+#, c-format
+msgid "Choose the mount points"
+msgstr "Dibabit ar poentoù marc'hañ"
+
+#: fs/partitioning.pm:46
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "Dibabit ar parzhadurioù da furmadiñ"
+
+#: fs/partitioning.pm:76
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+
+#: fs/partitioning.pm:79
+#, c-format
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+"N'eus ket a-walc'h a zisloañ evit peurstaliañ, kreskit anezhañ mar plij"
+
+#: fs/partitioning_wizard.pm:47
+#, c-format
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"Ret eo deoc'h kaout ur parzhadur gwrizienn.\n"
+"Evit se, krouit ur parzhadur (pe glikit ouzh unan a zo c'hoazh).\n"
+"Da c'houde dibabit an ober « Poent marc'hañ » ha lakait anezhañ da `/'"
+
+#: fs/partitioning_wizard.pm:52
+#, c-format
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+"N'eus parzhadur disloañ ebet.\n"
+"\n"
+"Fellout a ra deoc'h mont war raok evelato ?"
+
+#: fs/partitioning_wizard.pm:80
+#, c-format
+msgid "Use free space"
+msgstr "Implij an egor dieub"
+
+#: fs/partitioning_wizard.pm:82
+#, c-format
+msgid "Not enough free space to allocate new partitions"
+msgstr "N'eus ket a-walc'h egor dieub evit parzhadurioù nevez"
+
+#: fs/partitioning_wizard.pm:90
+#, c-format
+msgid "Use existing partitions"
+msgstr "Implijit ar parzhaduroù a zo dija"
+
+#: fs/partitioning_wizard.pm:92
+#, c-format
+msgid "There is no existing partition to use"
+msgstr "N'eus parzhadur da implij ebet"
+
+#: fs/partitioning_wizard.pm:99
+#, c-format
+msgid "Use the Microsoft Windows® partition for loopback"
+msgstr "Implij ar barzhadur Microsoft Windows® evit saveteiñ"
+
+#: fs/partitioning_wizard.pm:102
+#, c-format
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Pe barzhadur a vennit implijout evit lakaat Linux4Win ?"
+
+#: fs/partitioning_wizard.pm:104
+#, c-format
+msgid "Choose the sizes"
+msgstr "Dibabit ar mentoù"
+
+#: fs/partitioning_wizard.pm:105
+#, c-format
+msgid "Root partition size in MB: "
+msgstr "Ment ar barzhadur kentañ e Mo : "
+
+#: fs/partitioning_wizard.pm:106
+#, c-format
+msgid "Swap partition size in MB: "
+msgstr "Ment ar barzhadur disloañ e Mo : "
+
+#: fs/partitioning_wizard.pm:115
+#, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+"N'eus ket ur barzhadur FAT evit saveteiñ (n'eus ket a-walc'h egor dieub)"
+
+#: fs/partitioning_wizard.pm:122
+#, c-format
+msgid "Use the free space on the Microsoft Windows® partition"
+msgstr "Implijit an egor dieub war ar barzhadur Windows"
+
+#: fs/partitioning_wizard.pm:124
+#, c-format
+msgid "Which partition do you want to resize?"
+msgstr "Pe seurt parzhadur a vennit furmadiñ ?"
+
+#: fs/partitioning_wizard.pm:138
+#, c-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+"N'eus ket moaien d'adenvañ ho parzhadur gant an adventer FAT,\n"
+"degouezhet ez eus ar fazi a-heul : %s"
+
+#: fs/partitioning_wizard.pm:141
+#, c-format
+msgid "Computing the size of the Microsoft Windows® partition"
+msgstr "O jediñ ment ar barzhadur Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:148
+#, c-format
+msgid ""
+"Your Microsoft Windows® partition is too fragmented. Please reboot your "
+"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
+"the Mandriva Linux installation."
+msgstr ""
+
+#: fs/partitioning_wizard.pm:151
+#, 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 ""
+"HO EVEZH !\n"
+"\n"
+"\n"
+"Ezhomm en deus DrakX adventañ ho parzhadur Windows bremañ.\n"
+"\n"
+"\n"
+"Bezit war evezh : arvarus eo an obererezh-se. Ma n'hoc'h eus ket graet "
+"c'hoazh, gwelloc'h e vije deoc'h seveniñ da gentañ scandisk (ha diouzh ret "
+"seveniñ defrag) war arparzhadur-se, ha gwareziñ ho roadoù.\n"
+"\n"
+"\n"
+"Pa vezit sur, gwaskit « %s »"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: fs/partitioning_wizard.pm:160 interactive.pm:538 interactive/curses.pm:217
+#: ugtk2.pm:508
+#, c-format
+msgid "Next"
+msgstr "A heul"
+
+#: fs/partitioning_wizard.pm:163
+#, fuzzy, c-format
+msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
+msgstr "Da beseurt rann e mennit dilec'hiañ ?"
+
+#: fs/partitioning_wizard.pm:164
+#, c-format
+msgid "Size"
+msgstr "Ment"
+
+#: fs/partitioning_wizard.pm:173
+#, c-format
+msgid "Resizing Microsoft Windows® partition"
+msgstr "Oc'h adventañ ar barzhadur Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:178
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "Fazi en un adventañ ar barzhadur FAT : %s"
+
+#: fs/partitioning_wizard.pm:193
+#, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr "N'eus ket ur barzhadur FAT d'adventañ (n'eus ket a-walc'h egor dieub)"
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Remove Microsoft Windows®"
+msgstr "Lemel Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Erase and use entire disk"
+msgstr "Chetañ hag implij an holl planedenn"
+
+#: fs/partitioning_wizard.pm:200
+#, c-format
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+"Meur a bladenn oc'h eus. Pehini oc'h eus c'hoant da implij evit staliñ "
+"Linux ?"
+
+#: fs/partitioning_wizard.pm:206
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+"Ar parzhadurioù HOLL o vezañ hag e vo kollet holl roadoù war ar bladenn %s"
+
+#: fs/partitioning_wizard.pm:217
+#, c-format
+msgid "Custom disk partitioning"
+msgstr "Parzhaduroù diouzoc'h"
+
+#: fs/partitioning_wizard.pm:223
+#, c-format
+msgid "Use fdisk"
+msgstr "Implijit fdisk"
+
+#: fs/partitioning_wizard.pm:226
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+"Gallout a rit bremañ parzhañ ho pladenn galet %s.\n"
+"Pa 'z eo graet, na zisoñjit ket enrollañ dre implijout `w'"
+
+#: fs/partitioning_wizard.pm:266
+#, c-format
+msgid "I can not find any room for installing"
+msgstr "N'hellan ket kavout plas da staliañ"
+
+#: fs/partitioning_wizard.pm:270
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Kinnig eo deoc'h gant ar skoazeller parzhadur DrakX :"
+
+#: fs/partitioning_wizard.pm:278
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Fazi en ur parzhañ : %s"
+
+#: fs/type.pm:366
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "N'hellit ket implij JFS evit ar parzhadurioù bihanioc'h evel 16Mo"
-#: fs/type.pm:364
+#: fs/type.pm:367
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "N'hellit ket implij ReiserFS evit ar parzhadurioù bihanioc'h evel 32Mo"
@@ -3110,7 +2564,12 @@ msgstr "gant /usr"
msgid "server"
msgstr "servijer"
-#: fsedit.pm:219
+#: fsedit.pm:116
+#, c-format
+msgid "BIOS software RAID detected on disks %s. Activate it?"
+msgstr ""
+
+#: fsedit.pm:230
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
@@ -3130,22 +2589,22 @@ msgstr ""
"(%s eo ar fazi)\n"
"\n"
-#: fsedit.pm:392
+#: fsedit.pm:403
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Poentoù marc'hañ a rank kregiñ gant /"
-#: fsedit.pm:393
+#: fsedit.pm:404
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:394
+#: fsedit.pm:405
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Bez' ez eus ur parzhadur e boent marc'hañ %s endeo\n"
-#: fsedit.pm:398
+#: fsedit.pm:409
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -3156,7 +2615,7 @@ msgstr ""
"N'eus ket moaien da loc'hañ hep ur barzhadur /boot.\n"
"Bezit sur oc'h eus ouzhpennet ur barzhadur /boot"
-#: fsedit.pm:404
+#: fsedit.pm:415
#, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
@@ -3165,7 +2624,7 @@ msgstr ""
"Ne mennit ket implij al levrenn poellek LVM evit ar poent marc'hañ %s "
"peogwir e vez implijet meur a levrenn fizikel gantañ"
-#: fsedit.pm:406
+#: fsedit.pm:417
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -3177,12 +2636,12 @@ msgstr ""
"N'eus ket moaien da loc'hañ gant /boot war meur a levrenn fizikel.\n"
"Mat vije deoc'h krouiñ ur barzhadur loc'hañ da gentañ"
-#: fsedit.pm:410 fsedit.pm:412
+#: fsedit.pm:421 fsedit.pm:423
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Red eo d'ar renkell-mañ da vezañ er reizhiad restroù gwrizienn"
-#: fsedit.pm:414 fsedit.pm:416
+#: fsedit.pm:425 fsedit.pm:427
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -3191,24 +2650,24 @@ msgstr ""
"Red eo da implij ur gwir reizhiad restroù (ext2/ext3, reiserfs, xfs, pe jfs) "
"evit ar poent marc'hañ-mañ\n"
-#: fsedit.pm:418
+#: fsedit.pm:429
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr ""
"N'hell ket bet implijet ur reizhiad restroù enrineget evit ar poent marc'hañ "
"%s"
-#: fsedit.pm:482
+#: fsedit.pm:493
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: fsedit.pm:484
+#: fsedit.pm:495
#, c-format
msgid "Nothing to do"
msgstr "Netra d'ober"
-#: harddrake/data.pm:62 install_any.pm:1710
+#: harddrake/data.pm:62
#, c-format
msgid "Floppy"
msgstr "Pladennig"
@@ -3218,12 +2677,12 @@ msgstr "Pladennig"
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:88 install_any.pm:1711
+#: harddrake/data.pm:88
#, c-format
msgid "Hard Disk"
msgstr "Pladenn"
-#: harddrake/data.pm:97 install_any.pm:1712
+#: harddrake/data.pm:97
#, c-format
msgid "CDROM"
msgstr "CDROM"
@@ -3238,103 +2697,102 @@ msgstr "Engraverioù CD/DVD"
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:127 standalone/drakbackup:2066
+#: harddrake/data.pm:127
#, c-format
msgid "Tape"
msgstr "Bandenn"
-#: harddrake/data.pm:136
+#: harddrake/data.pm:138
+#, c-format
+msgid "AGP controllers"
+msgstr "Kartennoù AGP"
+
+#: harddrake/data.pm:147
#, c-format
msgid "Videocard"
msgstr "Kartenn video"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:157
#, c-format
msgid "DVB card"
msgstr "Kartenn DVB"
-#: harddrake/data.pm:154
+#: harddrake/data.pm:165
#, c-format
msgid "Tvcard"
msgstr "Kartenn skinwel"
-#: harddrake/data.pm:163
+#: harddrake/data.pm:174
#, c-format
msgid "Other MultiMedia devices"
msgstr "Trobarzhelloù liesvedia all"
-#: harddrake/data.pm:172
+#: harddrake/data.pm:183
#, c-format
msgid "Soundcard"
msgstr "Kartenn son"
-#: harddrake/data.pm:185
+#: harddrake/data.pm:196
#, c-format
msgid "Webcam"
msgstr "Webkam"
-#: harddrake/data.pm:199
+#: harddrake/data.pm:210
#, c-format
msgid "Processors"
msgstr "Kewerierioù"
-#: harddrake/data.pm:209
+#: harddrake/data.pm:220
#, c-format
msgid "ISDN adapters"
msgstr "Kartennoù ISDN"
-#: harddrake/data.pm:220
+#: harddrake/data.pm:231
#, c-format
msgid "USB sound devices"
msgstr "Trobarzhelloù kwelet USB"
-#: harddrake/data.pm:229
+#: harddrake/data.pm:240
#, c-format
msgid "Radio cards"
msgstr "Kartennoù radio"
-#: harddrake/data.pm:238
+#: harddrake/data.pm:249
#, c-format
msgid "ATM network cards"
msgstr "Kartennoù rouedad ATM"
-#: harddrake/data.pm:247
+#: harddrake/data.pm:258
#, c-format
msgid "WAN network cards"
msgstr "Kartennoù rouedad WAN"
-#: harddrake/data.pm:256
+#: harddrake/data.pm:267
#, c-format
msgid "Bluetooth devices"
msgstr "Trobarzhelloù Bluetooth"
-#: harddrake/data.pm:265
+#: harddrake/data.pm:276
#, c-format
msgid "Ethernetcard"
msgstr "Kartenn rouedad"
-#: harddrake/data.pm:282 network/netconnect.pm:492
+#: harddrake/data.pm:293
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:292
+#: harddrake/data.pm:303
#, c-format
msgid "ADSL adapters"
msgstr "Kartennoù ADSL"
-#: harddrake/data.pm:306
+#: harddrake/data.pm:315
#, c-format
msgid "Memory"
msgstr "Memor"
-#: harddrake/data.pm:315
-#, c-format
-msgid "AGP controllers"
-msgstr "Kartennoù AGP"
-
-#: harddrake/data.pm:324 help.pm:187 help.pm:856
-#: install_steps_interactive.pm:964
+#: harddrake/data.pm:324
#, c-format
msgid "Printer"
msgstr "Moullerez"
@@ -3360,85 +2818,92 @@ msgstr "Kartennoù SATA"
msgid "RAID controllers"
msgstr "Kartennoù RAID"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Kartennoù (E)IDE/ATA"
-#: harddrake/data.pm:385
+#: harddrake/data.pm:386
+#, fuzzy, c-format
+msgid "USB Mass Storage Devices"
+msgstr "Trobarzhelloù kwelet USB"
+
+#: harddrake/data.pm:395
+#, fuzzy, c-format
+msgid "Card readers"
+msgstr "Gobari ar gartenn :"
+
+#: harddrake/data.pm:404
#, c-format
msgid "Firewire controllers"
msgstr "Kartennoù Firewire"
-#: harddrake/data.pm:394
+#: harddrake/data.pm:413
#, c-format
msgid "PCMCIA controllers"
msgstr "Kartennoù PCMCIA"
-#: harddrake/data.pm:403
+#: harddrake/data.pm:422
#, c-format
msgid "SCSI controllers"
msgstr "Kartennoù SCSI"
-#: harddrake/data.pm:412
+#: harddrake/data.pm:431
#, c-format
msgid "USB controllers"
msgstr "Kartennoù USB"
-#: harddrake/data.pm:421
+#: harddrake/data.pm:440
#, c-format
msgid "USB ports"
msgstr "Porzhioù USB"
-#: harddrake/data.pm:430
+#: harddrake/data.pm:449
#, c-format
msgid "SMBus controllers"
msgstr "Kartennoù SMBus"
-#: harddrake/data.pm:439
+#: harddrake/data.pm:458
#, c-format
msgid "Bridges and system controllers"
msgstr "Pontoù ha kontrolleroù ar reizhiad"
-#: harddrake/data.pm:450 help.pm:856 install_steps_interactive.pm:94
-#: install_steps_interactive.pm:924 standalone/finish-install:41
-#: standalone/keyboarddrake:29
+#: harddrake/data.pm:469
#, c-format
msgid "Keyboard"
msgstr "Stokellaoueg"
-#: harddrake/data.pm:463
+#: harddrake/data.pm:482
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tablezenn ha skramm stekiñ"
-#: harddrake/data.pm:472 help.pm:856 install_steps_interactive.pm:957
+#: harddrake/data.pm:491
#, c-format
msgid "Mouse"
msgstr "Logodenn"
-#: harddrake/data.pm:486
+#: harddrake/data.pm:505
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:495
+#: harddrake/data.pm:514
#, c-format
msgid "Scanner"
msgstr "Eiltreser"
-#: harddrake/data.pm:505 standalone/harddrake2:475
+#: harddrake/data.pm:524
#, c-format
msgid "Unknown/Others"
msgstr "Anavez/All"
-#: harddrake/data.pm:533
+#: harddrake/data.pm:552
#, c-format
msgid "cpu # "
msgstr "kewerier # "
-#: harddrake/sound.pm:195 standalone/drakconnect:162
-#: standalone/drakconnect:637
+#: harddrake/sound.pm:195
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Gortozit mar plij, o lakaat ar c'hefluniadur"
@@ -3507,17 +2972,17 @@ msgid ""
"the ALSA library.\n"
msgstr ""
-#: harddrake/sound.pm:262 harddrake/sound.pm:350 standalone/drakups:144
+#: harddrake/sound.pm:262 harddrake/sound.pm:351
#, c-format
msgid "Driver:"
msgstr "Sturier :"
-#: harddrake/sound.pm:270
+#: harddrake/sound.pm:271
#, c-format
msgid "Trouble shooting"
msgstr "Defaziañ"
-#: harddrake/sound.pm:278
+#: harddrake/sound.pm:279
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
@@ -3527,45 +2992,45 @@ msgid ""
"The new \"%s\" driver will only be used on next bootstrap."
msgstr ""
-#: harddrake/sound.pm:286
+#: harddrake/sound.pm:287
#, c-format
msgid "No open source driver"
msgstr "N'eo ket ur mollad dieub"
-#: harddrake/sound.pm:287
+#: harddrake/sound.pm:288
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
-#: harddrake/sound.pm:290
+#: harddrake/sound.pm:291
#, c-format
msgid "No known driver"
msgstr "Mollad anavez"
-#: harddrake/sound.pm:291
+#: harddrake/sound.pm:292
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "N'eus sturier ebet evit ho kartenn gwelet (%s)"
-#: harddrake/sound.pm:295 network/netconnect.pm:98 network/netconnect.pm:837
+#: harddrake/sound.pm:296
#, c-format
msgid "Unknown driver"
msgstr "Mollad anavez"
-#: harddrake/sound.pm:296
+#: harddrake/sound.pm:297
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "Fazi : n'eo ket rollet ar sturier « %s » evit ho kartenn gwelet"
-#: harddrake/sound.pm:310
+#: harddrake/sound.pm:311
#, c-format
msgid "Sound trouble shooting"
msgstr "Defaziañ un diaster klevet"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:313
+#: harddrake/sound.pm:314
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
@@ -3574,7 +3039,7 @@ msgid ""
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\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"
@@ -3589,18 +3054,18 @@ msgid ""
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
-#: harddrake/sound.pm:339
+#: harddrake/sound.pm:340
#, c-format
msgid "Let me pick any driver"
msgstr "Choazh ur sturier"
-#: harddrake/sound.pm:342
+#: harddrake/sound.pm:343
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Choazh ur sturier dre ziouer"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:345
+#: harddrake/sound.pm:346
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3610,8 +3075,7 @@ msgid ""
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
-#: harddrake/v4l.pm:12 standalone/net_applet:64 standalone/net_applet:65
-#: standalone/net_applet:67
+#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Dinoiñ dre ardivink"
@@ -3650,2796 +3114,53 @@ msgstr "Gobari ar gartenn :"
msgid "Tuner type:"
msgstr "Seurt an tuner :"
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "Number of capture buffers:"
-msgstr ""
-
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: harddrake/v4l.pm:481
+#: interactive.pm:125 interactive.pm:538 interactive/curses.pm:217
+#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
+#: interactive/stdio.pm:142 interactive/stdio.pm:143 ugtk2.pm:410 ugtk2.pm:508
+#: ugtk2.pm:788 ugtk2.pm:811
#, c-format
-msgid "PLL setting:"
-msgstr "Kefluniadur ar PLL :"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "Radio support:"
-msgstr ""
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "enable radio support"
-msgstr ""
-
-#: help.pm:12
-#, c-format
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandriva Linux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-
-#: help.pm:18
-#, c-format
-msgid ""
-"GNU/Linux is a multi-user system which means each user can have his or her\n"
-"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point will not be "
-"authorized\n"
-"to change anything except their own files and their own configurations,\n"
-"protecting the system from unintentional or malicious changes which could\n"
-"impact on the system as a whole. You'll have to create at least one regular\n"
-"user for yourself -- this is the account which you should use for routine,\n"
-"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
-"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system will not work any more. If you make a\n"
-"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you will not affect the entire system.\n"
-"\n"
-"The first field asks you for a real name. Of course, this is not mandatory\n"
-"-- you can actually enter whatever you like. DrakX will use the first word\n"
-"you type in this field and copy it to the \"%s\" one, which is the name\n"
-"this user will enter to log onto the system. If you like, you may override\n"
-"the default and change the user name. The next step is to enter a password.\n"
-"From a security point of view, a non-privileged (regular) user password is\n"
-"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
-"by making it blank or too simple: after all, your files could be the ones\n"
-"at risk.\n"
-"\n"
-"Once you click on \"%s\", you can add other users. Add a user for each one\n"
-"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
-"finished adding users.\n"
-"\n"
-"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
-"that user (bash by default).\n"
-"\n"
-"When you're finished adding users, you'll be asked to choose a user who\n"
-"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click on\n"
-"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
-msgstr ""
-
-#: help.pm:52 printer/printerdrake.pm:1866 printer/printerdrake.pm:1987
-#: standalone/draksambashare:60
-#, c-format
-msgid "User name"
-msgstr "Anv arveriad"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: help.pm:52 help.pm:432 help.pm:682 install_interactive.pm:176
-#: install_steps_gtk.pm:237 install_steps_gtk.pm:682 interactive.pm:436
-#: interactive/newt.pm:321 network/thirdparty.pm:385
-#: printer/printerdrake.pm:3884 standalone/drakTermServ:412
-#: standalone/drakbackup:4102 standalone/drakbackup:4196
-#: standalone/drakbackup:4213 standalone/drakbackup:4231 ugtk2.pm:490
-#, c-format
-msgid "Next"
-msgstr "A heul"
-
-#: help.pm:52
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Mennout a rit implijout an arc'hwel-mañ ?"
-
-#: help.pm:55
-#, c-format
-msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-
-#: help.pm:86
-#, c-format
-msgid ""
-"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-
-#: help.pm:93
-#, c-format
-msgid ""
-"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandriva Linux, and to make "
-"it\n"
-"simpler to manage, they have been placed into groups of similar\n"
-"applications.\n"
-"\n"
-"Mandriva Linux sorts package groups in four categories. You can mix and\n"
-"match applications from the various categories, so a ``Workstation''\n"
-"installation can still have applications from the ``Server'' category\n"
-"installed.\n"
-"\n"
-" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
-"more of the groups in the workstation category.\n"
-"\n"
-" * \"%s\": if you plan on using your machine for programming, select the\n"
-"appropriate groups from that category. The special \"LSB\" group will\n"
-"configure your system so that it complies as much as possible with the\n"
-"Linux Standard Base specifications.\n"
-"\n"
-" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
-"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
-"of the system. However, if you do not select the \"LSB\" group you will\n"
-"still have a system which is nearly 100%% LSB-compliant.\n"
-"\n"
-" * \"%s\": if your machine is intended to be a server, select which of the\n"
-"more common services you wish to install on your machine.\n"
-"\n"
-" * \"%s\": this is where you will choose your preferred graphical\n"
-"environment. At least one must be selected if you want to have a graphical\n"
-"interface available.\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group.\n"
-"\n"
-"You can check the \"%s\" box, which is useful if you're familiar with the\n"
-"packages being offered or if you want to have total control over what will\n"
-"be installed.\n"
-"\n"
-"If you start the installation in \"%s\" mode, you can deselect all groups\n"
-"and prevent the installation of any new packages. This is useful for\n"
-"repairing or updating an existing system.\n"
-"\n"
-"If you deselect all groups when performing a regular installation (as\n"
-"opposed to an upgrade), a dialog will pop up suggesting different options\n"
-"for a minimal installation:\n"
-"\n"
-" * \"%s\": install the minimum number of packages possible to have a\n"
-"working graphical desktop.\n"
-"\n"
-" * \"%s\": installs the base system plus basic utilities and their\n"
-"documentation. This installation is suitable for setting up a server.\n"
-"\n"
-" * \"%s\": will install the absolute minimum number of packages necessary\n"
-"to get a working Linux system. With this installation you will only have a\n"
-"command-line interface. The total size of this installation is about 65\n"
-"megabytes."
-msgstr ""
-
-#: help.pm:147 share/compssUsers.pl:24
-#, c-format
-msgid "Workstation"
-msgstr "Arsav labour"
-
-#: help.pm:147 share/compssUsers.pl:65 share/compssUsers.pl:167
-#: share/compssUsers.pl:169
-#, c-format
-msgid "Development"
-msgstr "Diorren"
-
-#: help.pm:147 share/compssUsers.pl:145
-#, c-format
-msgid "Graphical Environment"
-msgstr "Endeo grafikel"
-
-#: help.pm:147 install_steps_gtk.pm:235 install_steps_interactive.pm:623
-#, c-format
-msgid "Individual package selection"
-msgstr "Diuz pakadoù unan hag unan"
-
-#: help.pm:147 help.pm:589
-#, c-format
-msgid "Upgrade"
-msgstr "Bremanaat"
-
-#: help.pm:147 install_steps_interactive.pm:581
-#, c-format
-msgid "With X"
-msgstr "Gant X"
-
-#: help.pm:147
-#, c-format
-msgid "With basic documentation"
-msgstr "Gant teuliadur bihan"
-
-#: help.pm:147
-#, c-format
-msgid "Truly minimal install"
-msgstr "Staliadur bihan gwir"
-
-#: help.pm:150
-#, c-format
-msgid ""
-"If you choose to install packages individually, the installer will present\n"
-"a tree containing all packages classified by groups and subgroups. While\n"
-"browsing the tree, you can select entire groups, subgroups, or individual\n"
-"packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description will appear on the\n"
-"right to let you know the purpose of that package.\n"
-"\n"
-"!! If a server package has been selected, either because you specifically\n"
-"chose the individual package or because it was part of a group of packages,\n"
-"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandriva Linux will automatically start any installed\n"
-"services at boot time. Even if they are safe and have no known issues at\n"
-"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandriva Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do "
-"or\n"
-"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
-"the listed services and they will be started automatically at boot time. !!\n"
-"\n"
-"The \"%s\" option is used to disable the warning dialog which appears\n"
-"whenever the installer automatically selects a package to resolve a\n"
-"dependency issue. Some packages depend on others and the installation of\n"
-"one particular package may require the installation of another package. The\n"
-"installer can determine which packages are required to satisfy a dependency\n"
-"to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-"package list created during a previous installation. This is useful if you\n"
-"have a number of machines that you wish to configure identically. Clicking\n"
-"on this icon will ask you to insert the floppy disk created at the end of\n"
-"another installation. See the second tip of the last step on how to create\n"
-"such a floppy."
-msgstr ""
-
-#: help.pm:181 help.pm:286 help.pm:314 help.pm:445 install_any.pm:944
-#: interactive.pm:161 modules/interactive.pm:71 standalone/drakbackup:2636
-#: standalone/drakfont:687 standalone/draksec:54 standalone/harddrake2:331
-#: ugtk2.pm:898 wizards.pm:156
-#, c-format
-msgid "No"
-msgstr "N'eo ket"
+msgid "Ok"
+msgstr "Mat eo"
-#: help.pm:181 help.pm:286 help.pm:445 install_any.pm:944 interactive.pm:161
-#: modules/interactive.pm:71 printer/printerdrake.pm:883
-#: printer/printerdrake.pm:898 standalone/drakbackup:2636
-#: standalone/drakfont:685 standalone/draksec:55 standalone/harddrake2:330
-#: ugtk2.pm:898 wizards.pm:156
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ya"
-#: help.pm:181
-#, c-format
-msgid "Automatic dependencies"
-msgstr ""
-
-#: help.pm:184
-#, c-format
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to set up a new printer. The interface presented in our\n"
-"manual is similar to the one used during installation."
-msgstr ""
-
-#: help.pm:187 help.pm:567 help.pm:856 install_steps_gtk.pm:595
-#: standalone/drakbackup:2460 standalone/drakbackup:2464
-#: standalone/drakbackup:2468 standalone/drakbackup:2472
-#: standalone/drakroam:227
-#, c-format
-msgid "Configure"
-msgstr "Kefluniañ"
-
-#: help.pm:190
-#, fuzzy, c-format
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
-"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which are not needed at boot\n"
-"time.\n"
-"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably do not want to start any services which you do not "
-"need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-"Bremañ e c'hellit diuz pe servijoù a vennit e vije lañset pa loc'her.\n"
-"Pa zeu ho logodenn war un draez, ul lagadenn skoazell a zeuio war wel hag\n"
-"a zisplego pal ar servij-se.\n"
-"\n"
-"Bezit aketuz-kenañ el lankad-mañ ma vennit implijout ho ardivink evel ur\n"
-"servijer : mennout a rit emichañs chom hep loc'hañ kement servij n'ho peus "
-"ket\n"
-"c'hoant."
-
-#: help.pm:207
-#, c-format
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
-"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
-msgstr ""
-
-#: help.pm:218 install_steps_interactive.pm:859
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "War GMT eo an eurier periantel"
-
-#: help.pm:218
-#, c-format
-msgid "Automatic time synchronization"
-msgstr ""
-
-#: help.pm:221
-#, c-format
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-
-#: help.pm:232
-#, c-format
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-
-#: help.pm:289
-#, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
-msgstr ""
-
-#: help.pm:296
-#, c-format
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
-msgstr ""
-
-#: help.pm:304
-#, c-format
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-
-#: help.pm:309
-#, c-format
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-
-#: help.pm:317
-#, c-format
-msgid ""
-"You now need to decide where you want to install the Mandriva Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandriva Linux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandriva Linux system, "
-"choose\n"
-"this option. Be careful, because you will not be able to undo this "
-"operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-
-#: help.pm:375 install_interactive.pm:96
-#, c-format
-msgid "Use free space"
-msgstr "Implij an egor dieub"
-
-#: help.pm:375
-#, c-format
-msgid "Use existing partition"
-msgstr "Impliji parzhadur o vezañ"
-
-#: help.pm:375 install_interactive.pm:138
-#, c-format
-msgid "Use the free space on the Microsoft Windows® partition"
-msgstr "Implijit an egor dieub war ar barzhadur Windows"
-
-#: help.pm:375
-#, c-format
-msgid "Erase entire disk"
-msgstr "Chetañ an holl planedenn"
-
-#: help.pm:375
-#, c-format
-msgid "Remove Windows"
-msgstr "Chetañ Windows"
-
-#: help.pm:375 install_interactive.pm:233
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Parzhaduroù diouzoc'h"
-
-#: help.pm:378
-#, c-format
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
-"to remove the installation media (CD-ROM or floppy). The first thing you\n"
-"should see after your computer has finished doing its hardware tests is the\n"
-"boot-loader menu, giving you the choice of which operating system to start.\n"
-"\n"
-"The \"%s\" button shows two more buttons to:\n"
-"\n"
-" * \"%s\": enables you to create an installation floppy disk which will\n"
-"automatically perform a whole installation without the help of an operator,\n"
-"similar to the installation you've just configured.\n"
-"\n"
-" Note that two different options are available after clicking on that\n"
-"button:\n"
-"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
-"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing on a number of similar\n"
-"machines. See the Auto install section on our web site for more\n"
-"information.\n"
-"\n"
-" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
-"To use this selection with another installation, insert the floppy and\n"
-"start the installation. At the prompt, press the [F1] key, type >>linux\n"
-"defcfg=\"floppy\"<< and press the [Enter] key.\n"
-"\n"
-"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
-"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
-"/dev/fd0\"."
-msgstr ""
-
-#: help.pm:410
-#, c-format
-msgid "Generate auto-install floppy"
-msgstr "Krouiñ ur bladennig staliañ emgefreek"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Replay"
-msgstr "Adseniñ"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Automated"
-msgstr "Emgefreek"
-
-#: help.pm:410 install_steps_interactive.pm:1317
-#, c-format
-msgid "Save packages selection"
-msgstr "Enrollañ diuzadenn an pakadoù"
-
-#: help.pm:413
-#, c-format
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
-"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
-"reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"will not be able to recover it.\n"
-"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
-"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandriva Linux operating system installation.\n"
-"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-
-#: help.pm:432 install_steps_gtk.pm:392 interactive.pm:437
-#: interactive/newt.pm:318 printer/printerdrake.pm:3882
-#: standalone/drakTermServ:391 standalone/drakbackup:4065
-#: standalone/drakbackup:4101 standalone/drakbackup:4212
-#: standalone/drakbackup:4227 ugtk2.pm:488
-#, c-format
-msgid "Previous"
-msgstr "Diaraog"
-
-#: help.pm:435
-#, c-format
-msgid ""
-"By the time you install Mandriva Linux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-
-#: help.pm:445 help.pm:589 install_steps_gtk.pm:391
-#: install_steps_interactive.pm:132
-#, c-format
-msgid "Install"
-msgstr "Staliañ"
-
-#: help.pm:448
-#, c-format
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
-"\n"
-"If you do not know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandriva Linux\n"
-"Control Center.\n"
-"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-
-#: help.pm:459
-#, c-format
-msgid "Security Administrator"
-msgstr "Melestradur an surentez"
-
-#: help.pm:462
-#, c-format
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandriva Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"%s\": this option deletes all partitions on the selected hard drive\n"
-"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
-"partitions in the free space of your hard drive\n"
-"\n"
-"\"%s\": gives access to additional features:\n"
-"\n"
-" * \"%s\": saves the partition table to a floppy. Useful for later\n"
-"partition-table recovery if necessary. It is strongly recommended that you\n"
-"perform this step.\n"
-"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
-"\n"
-" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it does not always\n"
-"work.\n"
-"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
-"\n"
-" * \"%s\": un-checking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
-"\n"
-" * \"%s\": use this option if you wish to use a wizard to partition your\n"
-"hard drive. This is recommended if you do not have a good understanding of\n"
-"partitioning.\n"
-"\n"
-" * \"%s\": use this option to cancel your changes.\n"
-"\n"
-" * \"%s\": allows additional actions on partitions (type, options, format)\n"
-"and gives more information about the hard drive.\n"
-"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"When defining the size of a partition, you can finely set the partition\n"
-"size by using the Arrow keys of your keyboard.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and the [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
-"\n"
-" * Ctrl-d to delete a partition\n"
-"\n"
-" * Ctrl-m to set the mount point\n"
-"\n"
-"To get information about the different file system types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-
-#: help.pm:531
-#, c-format
-msgid "Removable media auto-mounting"
-msgstr "Emvarc'hañ ar skoroù lem/laka"
-
-#: help.pm:531
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Tremen er mod boas/mailh"
-
-#: help.pm:534
-#, c-format
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandriva Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-
-#: help.pm:565
-#, c-format
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country is not in "
-"the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-
-#: help.pm:570
-#, c-format
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandriva Linux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandriva Linux system. Your current "
-"partitioning\n"
-"scheme and user data will not be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandriva Linux version \"8.1\" is not recommended."
-msgstr ""
-
-#: help.pm:592
-#, c-format
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
-"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard do not match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
-"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
-"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-
-#: help.pm:610
-#, c-format
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandriva Linux's use of UTF-8 "
-"will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-
-#: help.pm:648
-#, c-format
-msgid "Espanol"
-msgstr "Spagnoleg"
-
-#: help.pm:651
-#, c-format
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
-"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-
-#: help.pm:682
-#, c-format
-msgid "with Wheel emulation"
-msgstr "gant kendarvanerezh ar rodell"
-
-#: help.pm:682
-#, c-format
-msgid "Universal | Any PS/2 & USB mice"
-msgstr "Hollvedel | Ul logodenn bennak (PS/2 pe USB)"
-
-#: help.pm:685
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Dibabit ar porzh a zere mar plij. Da skouer, porzh « COM1 » dindan MS\n"
-"Windows a vez anvet « ttyS0 » gant Linux."
-
-#: help.pm:689
-#, c-format
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: do not make the password too long or too complicated because "
-"you\n"
-"must be able to remember it!\n"
-"\n"
-"The password will not be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you do not know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-
-#: help.pm:723
-#, c-format
-msgid "authentication"
-msgstr "dilesadur"
-
-#: help.pm:726
-#, c-format
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can not determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" will not install any boot loader. Use this option only if "
-"you\n"
-"know what you're doing."
-msgstr ""
-
-#: help.pm:743
-#, c-format
-msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you do not like your printing\n"
-"system you may change it by running PrinterDrake from the Mandriva Linux\n"
-"Control Center and clicking on the \"%s\" button."
-msgstr ""
-
-#: help.pm:766
-#, c-format
-msgid "pdq"
-msgstr "pdq"
-
-#: help.pm:766 printer/cups.pm:117 printer/data.pm:129
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
-
-#: help.pm:766
-#, c-format
-msgid "Expert"
-msgstr "Mod mailh"
-
-#: help.pm:769
-#, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-
-#: help.pm:787
-#, c-format
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-
-#: help.pm:789 help.pm:856 install_steps_interactive.pm:991
-#: install_steps_interactive.pm:1008
-#, c-format
-msgid "Sound card"
-msgstr "Kartenn gwelet"
-
-#: help.pm:792
-#, c-format
-msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"is not in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it is not\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandriva Linux Control Center after the installation has finished to "
-"benefit\n"
-"from full in-line help.\n"
-"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandriva Linux Control Center.\n"
-"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-
-#: help.pm:856 install_steps_interactive.pm:855
-#: install_steps_interactive.pm:950 standalone/drakclock:100
-#: standalone/finish-install:56 standalone/finish-install:57
-#, c-format
-msgid "Timezone"
-msgstr "Takad-eur"
-
-#: help.pm:856 install_steps_interactive.pm:1024
-#, c-format
-msgid "TV card"
-msgstr "Kartenn pellwel"
-
-#: help.pm:856
-#, c-format
-msgid "ISDN card"
-msgstr "Kartenn ISDN"
-
-#: help.pm:856
-#, c-format
-msgid "Graphical Interface"
-msgstr "Ketal Kevregañ"
-
-#: help.pm:856 install_any.pm:1733 install_steps_interactive.pm:1042
-#: standalone/drakbackup:2051
-#, c-format
-msgid "Network"
-msgstr "Rouedad"
-
-#: help.pm:856 install_steps_interactive.pm:1054
-#, c-format
-msgid "Proxies"
-msgstr "Proksioù"
-
-#: help.pm:856 install_steps_interactive.pm:1065
-#, c-format
-msgid "Security Level"
-msgstr "Live an surentez"
-
-#: help.pm:856 install_steps_interactive.pm:1079 network/drakfirewall.pm:189
-#, c-format
-msgid "Firewall"
-msgstr "Moger tan"
-
-#: help.pm:856 install_steps_interactive.pm:1095
-#, c-format
-msgid "Bootloader"
-msgstr "C'harger loc'hañ"
-
-#: help.pm:856 install_steps_interactive.pm:1108 services.pm:114
-#: services.pm:157 services.pm:193
-#, c-format
-msgid "Services"
-msgstr "Servijerioù"
-
-#: help.pm:859
-#, c-format
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-
-#: help.pm:864
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-
-#: help.pm:870
-#, c-format
-msgid "Next ->"
-msgstr "A heul ->"
-
-#: help.pm:870
-#, c-format
-msgid "<- Previous"
-msgstr "<- Diaraog"
-
-#: install2.pm:115
-#, c-format
-msgid ""
-"Can not access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: install2.pm:167
-#, c-format
-msgid "You must also format %s"
-msgstr "Ret eo deoc'h furmadiñ %s ivez"
-
-#: install_any.pm:406
-#, c-format
-msgid "Do you have further supplementary media?"
-msgstr "Hag ur vedia all hoc'h eus ?"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:409
-#, c-format
-msgid ""
-"The following media have been found and will be used during install: %s.\n"
-"\n"
-"\n"
-"Do you have a supplementary installation medium to configure?"
-msgstr ""
-
-#: install_any.pm:422 printer/printerdrake.pm:3211
-#: printer/printerdrake.pm:3218 standalone/scannerdrake:182
-#: standalone/scannerdrake:190 standalone/scannerdrake:241
-#: standalone/scannerdrake:248
-#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (HTTP)"
-msgstr "Rouedad (HTTP)"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (FTP)"
-msgstr "Rouedad (FTP)"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (NFS)"
-msgstr "Rouedad (NFS)"
-
-#: install_any.pm:452
-#, c-format
-msgid "Insert the CD 1 again"
-msgstr "Enlakaat ar CD1 adarre"
-
-#: install_any.pm:478 network/netconnect.pm:866 standalone/drakbackup:114
-#, c-format
-msgid "No device found"
-msgstr "N'eo ket trobarzhell ebet"
-
-#: install_any.pm:483
-#, c-format
-msgid "Insert the CD"
-msgstr "Enlakkat ar CD"
-
-#: install_any.pm:488
-#, c-format
-msgid "Unable to mount CD-ROM"
-msgstr "N'hellan ket marc'hañ< ar CD-ROM"
-
-#: install_any.pm:521 install_any.pm:542
-#, c-format
-msgid "URL of the mirror?"
-msgstr "URL ar melezour"
-
-#: install_any.pm:526
-#, c-format
-msgid "NFS setup"
-msgstr "Kefluniadur NFS"
-
-#: install_any.pm:526
-#, c-format
-msgid "Please enter the hostname and directory of your NFS media"
-msgstr "Roit anv ostiz ha renkell ho media NFS"
-
-#: install_any.pm:527
-#, c-format
-msgid "Hostname of the NFS mount ?"
-msgstr "Anv ostiz ar marc'hañ NFS ?"
-
-#: install_any.pm:527 standalone/draknfs:288
-#, c-format
-msgid "Directory"
-msgstr "Renkell"
-
-#: install_any.pm:580
-#, c-format
-msgid ""
-"Can't find a package list file on this mirror. Make sure the location is "
-"correct."
-msgstr ""
-"Ne m'eus ket kavout ur roll pakadoù e-barzh ar melezour-mañ. Kit da wiriañ "
-"al lec'hiadur-mañ zo mad."
-
-#: install_any.pm:657
-#, c-format
-msgid "Removing packages prior to upgrade..."
-msgstr "O zilemel ar pakadoù a-raok bremanaat ..."
-
-#: install_any.pm:699
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "O kavout pakadoù zo staliet eo ..."
-
-#: install_any.pm:703
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "O kavout pakadoù da vremanaat ..."
-
-#: install_any.pm:781
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done."
-msgstr ""
-"Kemmit ho Cd-Rom !\n"
-"\n"
-"Lakait el lenner ar Cd-Rom warnañ an diketenn « %s » mar plij ha gwaskit Mat "
-"eo da c'houde."
-
-#: install_any.pm:793
-#, c-format
-msgid "Copying in progress"
-msgstr "Oc'h eilañ"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:935
-#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They do not have any known security\n"
-"issues, but some new ones could be found. In that case, you must make sure\n"
-"to upgrade as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:958
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-"Ar pakadoù a-heul zo war-nes bezañ distaliet evit bremañaat ho reizhiad : %"
-"s\n"
-"\n"
-"\n"
-"Ha fellout a ra deoc'h da vat lemel anezho ?\n"
-
-#: install_any.pm:1394 partition_table.pm:597
-#, c-format
-msgid "Error reading file %s"
-msgstr "Fazi en ur lenn ar restr %s"
-
-#: install_any.pm:1628
-#, c-format
-msgid "The following disk(s) were renamed:"
-msgstr "Adenvelet e oa ar bladenn/pladennoù-mañ :"
-
-#: install_any.pm:1630
-#, c-format
-msgid "%s (previously named as %s)"
-msgstr "%s (a vez graet %s dioutañ diaraok)"
-
-#: install_any.pm:1670
-#, 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 ""
-"C'hoarvezet ez eus ur fazi - n'eus bet kavet trobarzhell reizh ebet a-benn "
-"krouiñ reizhiadoù restroù nevez warni. Gwiriit abeg ar gudenn-mañ en ho "
-"ardivinkaj mar plij "
-
-#: install_any.pm:1714
-#, c-format
-msgid "HTTP"
-msgstr "HTTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "FTP"
-msgstr "FTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "NFS"
-msgstr "NFS"
-
-#: install_any.pm:1737
-#, c-format
-msgid "Please choose a media"
-msgstr "Dibabit ur vedia, mar plij"
-
-#: install_any.pm:1753
-#, c-format
-msgid "File already exists. Overwrite it?"
-msgstr "Ar restr zo endeo. Rasklañ anezhañ ?"
-
-#: install_any.pm:1757
-#, c-format
-msgid "Permission denied"
-msgstr "Aotre nac'het"
-
-#: install_any.pm:1806
-#, c-format
-msgid "Bad NFS name"
-msgstr "N'eo ket un anv NFS mat"
-
-#: install_any.pm:1827
-#, c-format
-msgid "Bad media %s"
-msgstr "N'eo ket mat ar vedia %s"
-
-#: install_any.pm:1877
-#, c-format
-msgid "Can not make screenshots before partitioning"
-msgstr "N'hellan ket sevel skrammpakeroù a-raok parzhañ"
-
-#: install_any.pm:1884
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Skrammpakeroù a vo bet kavet goude staliañ e %s"
-
-#: install_gtk.pm:136
-#, c-format
-msgid "System installation"
-msgstr "Staliadur ar reizhiad"
-
-#: install_gtk.pm:139
-#, c-format
-msgid "System configuration"
-msgstr "Kefluniañ ar reizhiad"
-
-#: install_interactive.pm:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-
-#: install_interactive.pm:63
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Ret eo deoc'h kaout ur parzhadur gwrizienn.\n"
-"Evit se, krouit ur parzhadur (pe glikit ouzh unan a zo c'hoazh).\n"
-"Da c'houde dibabit an ober « Poent marc'hañ » ha lakait anezhañ da `/'"
-
-#: install_interactive.pm:68
-#, c-format
-msgid ""
-"You do not have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"N'hoc'h eus ket a barzhadur disloañ\n"
-"\n"
-"Kenderc'hel evelato ?"
-
-#: install_interactive.pm:71 install_steps.pm:215
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Ret eo deoc'h kaout ur parzhadur FAT marc'het war /boot/efi"
-
-#: install_interactive.pm:98
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "N'eus ket a-walc'h egor dieub evit parzhadurioù nevez"
-
-#: install_interactive.pm:106
-#, c-format
-msgid "Use existing partitions"
-msgstr "Impliji parzhadurioù o vezañ"
-
-#: install_interactive.pm:108
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "N'eus parzhadur da implij ebet"
-
-#: install_interactive.pm:115
-#, c-format
-msgid "Use the Microsoft Windows® partition for loopback"
-msgstr "Implij ar barzhadur Microsoft Windows® evit saveteiñ"
-
-#: install_interactive.pm:118
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Pe barzhadur a vennit implijout evit lakaat Linux4Win ?"
-
-#: install_interactive.pm:120
-#, c-format
-msgid "Choose the sizes"
-msgstr "Dibabit ar mentoù"
-
-#: install_interactive.pm:121
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Ment ar parzhadur gwrizienn e Mo : "
-
-#: install_interactive.pm:122
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Ment ar parzhadur disloañ e Mo : "
-
-#: install_interactive.pm:131
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"N'eus ket ur barzhadur FAT evit saveteiñ (n'eus ket a-walc'h egor dieub)"
-
-#: install_interactive.pm:140
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Pe seurt parzhadur a vennit da adventañ ?"
-
-#: install_interactive.pm:154
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occurred: %s"
-msgstr ""
-"N'eus ket moaien d'adenvañ ho parzhadur gant an adventer FAT,\n"
-"degouezhet ez eus ar fazi a-heul : %s"
-
-#: install_interactive.pm:157
-#, c-format
-msgid "Computing the size of the Microsoft Windows® partition"
-msgstr "O jediñ ment ar barzhadur Microsoft Windows®"
-
-#: install_interactive.pm:164
-#, c-format
-msgid ""
-"Your Microsoft Windows® partition is too fragmented. Please reboot your "
-"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
-"the Mandriva Linux installation."
-msgstr ""
-
-#: install_interactive.pm:167
-#, 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 ""
-"HO EVEZH !\n"
-"\n"
-"\n"
-"Ezhomm en deus DrakX adventañ ho parzhadur Windows bremañ.\n"
-"\n"
-"\n"
-"Bezit war evezh : arvarus eo an obererezh-se. Ma n'hoc'h eus ket graet "
-"c'hoazh, gwelloc'h e vije deoc'h seveniñ da gentañ scandisk (ha diouzh ret "
-"seveniñ defrag) war arparzhadur-se, ha gwareziñ ho roadoù.\n"
-"\n"
-"\n"
-"Pa vezit sur, gwaskit « %s »"
-
-#: install_interactive.pm:179
-#, fuzzy, c-format
-msgid "Which size do you want to keep for Microsoft Windows® on"
-msgstr "Da beseurt rann e mennit dilec'hiañ ?"
-
-#: install_interactive.pm:180
-#, c-format
-msgid "partition %s"
-msgstr "parzhadur %s"
-
-#: install_interactive.pm:189
-#, c-format
-msgid "Resizing Microsoft Windows® partition"
-msgstr "Oc'h adventañ ar parzhadur Microsoft Windows®"
-
-#: install_interactive.pm:194
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Adventañ FAT zo sac'het : %s"
-
-#: install_interactive.pm:209
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr "N'eus ket ur barzhadur FAT d'adventañ (n'eus ket a-walc'h egor dieub)"
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Remove Microsoft Windows®"
-msgstr "Chetan Microsoft Windows®"
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Erase and use entire disk"
-msgstr "Chetañ hag implij an holl planedenn"
-
-#: install_interactive.pm:216
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-"Meur a bladenn oc'h eus. Pehini oc'h eus c'hoant da implij evit staliñ "
-"Linux ?"
-
-#: install_interactive.pm:222
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"Ar parzhadurioù HOLL o vezañ hag e vo kollet holl roadoù war ar bladenn %s"
-
-#: install_interactive.pm:237
-#, c-format
-msgid "Use fdisk"
-msgstr "Implijit fdisk"
-
-#: install_interactive.pm:240
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, do not forget to save using `w'"
-msgstr ""
-"Gallout a rit bremañ parzhañ ho pladenn galet %s.\n"
-"Pa 'z eo graet, na zisoñjit ket enrollañ dre implijout `w'"
-
-#: install_interactive.pm:276
-#, c-format
-msgid "I can not find any room for installing"
-msgstr "N'hellan ket kavout plas da staliañ"
-
-#: install_interactive.pm:280
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Kinnig eo deoc'h gant ar skoazeller parzhadur DrakX :"
-
-#: install_interactive.pm:288
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Parzhañ zo sac'het : %s"
-
-#: install_interactive.pm:295
-#, c-format
-msgid "Bringing up the network"
-msgstr "O lañsañ ar rouedad"
-
-#: install_interactive.pm:300
-#, c-format
-msgid "Bringing down the network"
-msgstr "O tizenaouiñ ar rouedad"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:10
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandriva "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandriva Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. This document is a license agreement "
-"between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you "
-"explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this "
-"License. \n"
-"If you disagree with any portion of the License, you are not allowed to "
-"install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner "
-"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate "
-"your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all "
-"copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Limited Warranty\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
-"be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without "
-"limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties "
-"resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or "
-"inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or "
-"occurrence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
-"COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
-"no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever "
-"(including without \n"
-"limitation damages for loss of business, interruption of business, financial "
-"loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential "
-"loss) arising out \n"
-"of the possession and use of software components or arising out of "
-"downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some "
-"countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong "
-"cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. The GPL License and Related Licenses\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. "
-"Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the "
-"documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. Intellectual Property Rights\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
-"as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
-"Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Governing Laws \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-msgstr ""
-
-#: install_messages.pm:90
-#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:98
-#, c-format
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:131
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press Enter to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandriva "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandriva Linux User's Guide."
-msgstr ""
-"Gourc'hemennoù, peurc'hraet eo ar staliadur.\n"
-"Lamit ar bladenn loc'hañ ha gwaskit enkas evit adloc'hañ.\n"
-"\n"
-"\n"
-"Evit titouroù war palastroù hegerz evit stumm-mañ Mandriva Linux,\n"
-"sellit ouzh an Errata war : \n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Titouroù war gefluniañ ho reizhiad zo hegerz e rannbennad Goude\n"
-"Staliañ Sturier ofisiel an Arveriad Mandriva Linux."
-
-#: install_steps.pm:250
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Poent marc'hañ doubl %s"
-
-#: install_steps.pm:482
-#, c-format
-msgid ""
-"Some important packages did not get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
-"\"\n"
-msgstr ""
-
-#: install_steps_auto_install.pm:68 install_steps_stdio.pm:27
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "O kregiñ gant al lankad `%s'\n"
-
-#: install_steps_gtk.pm:181
-#, c-format
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandriva Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-
-#: install_steps_gtk.pm:211 install_steps_interactive.pm:605
-#, c-format
-msgid "Package Group Selection"
-msgstr "Diuzadenn strollad pakadoù"
-
-#: install_steps_gtk.pm:254 install_steps_interactive.pm:548
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Ment hollek : %d / %d Mo"
-
-#: install_steps_gtk.pm:299
-#, c-format
-msgid "Bad package"
-msgstr "Pakad siek"
-
-#: install_steps_gtk.pm:301
-#, c-format
-msgid "Version: "
-msgstr "Stumm : "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "Size: "
-msgstr "Ment : "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "%d KB\n"
-msgstr "%d Ko\n"
-
-#: install_steps_gtk.pm:303
-#, c-format
-msgid "Importance: "
-msgstr "Talvoudegezh : "
-
-#: install_steps_gtk.pm:336
-#, c-format
-msgid "You can not select/unselect this package"
-msgstr "N'hellit ket diuz/andiuz ar pakad-mañ"
-
-#: install_steps_gtk.pm:340 network/thirdparty.pm:331
-#, c-format
-msgid "due to missing %s"
-msgstr "peogwir %s zo manket"
-
-#: install_steps_gtk.pm:341
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "peogwir %s zo manket"
-
-#: install_steps_gtk.pm:342
-#, c-format
-msgid "trying to promote %s"
-msgstr ""
-
-#: install_steps_gtk.pm:343
-#, c-format
-msgid "in order to keep %s"
-msgstr ""
-
-#: install_steps_gtk.pm:348
-#, c-format
-msgid ""
-"You can not select this package as there is not enough space left to install "
-"it"
-msgstr ""
-"N'hellit ket dibab ar pakad-mañ peogwir n'eus ket a-walc'h a egor evit "
-"staliañ anezhañ"
-
-#: install_steps_gtk.pm:351
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Ar pakadoù a-heul zo war-nes bezañ staliet"
-
-#: install_steps_gtk.pm:352
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Ar pakadoù a-heul zo war-nes bezañ lamet"
-
-#: install_steps_gtk.pm:376
-#, c-format
-msgid "This is a mandatory package, it can not be unselected"
-msgstr "Hemañ zo ur pakad ret, n'hell ket bezañ andiuzet"
-
-#: install_steps_gtk.pm:378
-#, c-format
-msgid "You can not unselect this package. It is already installed"
-msgstr "N'hellit ket andiuz ar pakad-mañ. Staliet eo endo"
-
-#: install_steps_gtk.pm:381
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Bremanaet e tle bezañ ar pabak-mañ\n"
-"Ha sur oc'h e mennit e ziuzañ ?"
-
-#: install_steps_gtk.pm:384
-#, c-format
-msgid "You can not unselect this package. It must be upgraded"
-msgstr "N'hellit ket andiuz ar pakad-mañ. Ret eo dezhañ bezañ bremanaet"
-
-#: install_steps_gtk.pm:389
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Diskouez ar pakadoù a zo dibabet emgefrek"
-
-#: install_steps_gtk.pm:394
-#, c-format
-msgid "Load/Save selection"
-msgstr "Kargañ/Enrollañ an dibab"
-
-#: install_steps_gtk.pm:395
-#, c-format
-msgid "Updating package selection"
-msgstr "O bremañaat diuzadenn ar pakadoù"
-
-#: install_steps_gtk.pm:400
-#, c-format
-msgid "Minimal install"
-msgstr "Staliadur bihan"
-
-#: install_steps_gtk.pm:414 install_steps_interactive.pm:467
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Dibabit ar pakadoù a vennit staliañ"
-
-#: install_steps_gtk.pm:431 install_steps_interactive.pm:691
-#, c-format
-msgid "Installing"
-msgstr "O staliañ"
-
-#: install_steps_gtk.pm:457
-#, c-format
-msgid "No details"
-msgstr "Munudoù ebet"
-
-#: install_steps_gtk.pm:472
-#, c-format
-msgid "Time remaining "
-msgstr "Amzer a chom "
-
-#: install_steps_gtk.pm:473
-#, c-format
-msgid "Estimating"
-msgstr "O vrasjediñ"
-
-#: install_steps_gtk.pm:500
-#, c-format
-msgid "%d packages"
-msgstr "%d pakad"
-
-#: install_steps_gtk.pm:543 install_steps_interactive.pm:719
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Kemmit ho Cd-Rom !\n"
-"\n"
-"Lakait el lenner ar Cd-Rom warnañ an diketenn « %s » mar plij ha gwaskit Mat "
-"eo da c'houde.\n"
-"Ma n'emañ ket ganeoc'h gwaskit Nullañ evit chom hep staliañ ar Cd-Rom-se."
-
-#: install_steps_gtk.pm:556 install_steps_interactive.pm:730
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Ur fazi zo bet en ur rummañ pakadoù :"
-
-#: install_steps_gtk.pm:558 install_steps_interactive.pm:734
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Ur fazi zo bet en ur staliañ ar pakadoù :"
-
-#: install_steps_gtk.pm:560 install_steps_interactive.pm:730
-#: install_steps_interactive.pm:734
-#, c-format
-msgid "Go on anyway?"
-msgstr "Kenderc'hel evelato ?"
-
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:910 steps.pm:30
-#, c-format
-msgid "Summary"
-msgstr "Evit diverriñ"
-
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:906
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "not configured"
-msgstr "n'eo ket kefluniet"
-
-#: install_steps_gtk.pm:668
-#, c-format
-msgid ""
-"The following installation media have been found.\n"
-"If you want to skip some of them, you can unselect them now."
-msgstr ""
-
-#: install_steps_gtk.pm:677
-#, c-format
-msgid ""
-"You have the option to copy the contents of the CDs onto the hard drive "
-"before installation.\n"
-"It will then continue from the hard drive and the packages will remain "
-"available once the system is fully installed."
-msgstr ""
-
-#: install_steps_gtk.pm:679
-#, c-format
-msgid "Copy whole CDs"
-msgstr "Eilañ tout an CDoù"
-
-#: install_steps_interactive.pm:95
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Dibabit reizhadur ho stokellaoueg mar plij."
-
-#: install_steps_interactive.pm:97
-#, c-format
-msgid "Here is the full list of available keyboards"
-msgstr "Setu eo listenn leun ar stokellaoueg da gaout"
-
-#: install_steps_interactive.pm:127
-#, c-format
-msgid "Install/Upgrade"
-msgstr "Staliañ/Bremanaat"
-
-#: install_steps_interactive.pm:128
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Hag ur staliadur pe ur bremanadur eo ?"
-
-#: install_steps_interactive.pm:134
-#, c-format
-msgid "Upgrade %s"
-msgstr "Bremanaat %s"
-
-#: install_steps_interactive.pm:147
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Alc'hwez enrinegadur evit %s"
-
-#: install_steps_interactive.pm:170
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: install_steps_interactive.pm:171
-#, c-format
-msgid "Mouse choice"
-msgstr "Choazh al logodenn"
-
-#: install_steps_interactive.pm:180 standalone/mousedrake:46
-#, c-format
-msgid "Mouse Port"
-msgstr "Porzh al logodenn"
-
-#: install_steps_interactive.pm:181 standalone/mousedrake:47
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outañ, mar plij."
-
-#: install_steps_interactive.pm:191
-#, c-format
-msgid "Buttons emulation"
-msgstr "Kendarvanerezh an nozelenn"
-
-#: install_steps_interactive.pm:193
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Kendarvanerezh an nozelenn 2"
-
-#: install_steps_interactive.pm:194
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Kendarvanerezh an nozelenn 3"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "O kefluniañ kartennoù PCMCIA ..."
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "Configuring IDE"
-msgstr "Kefluniañ IDE"
-
-#: install_steps_interactive.pm:242
-#, c-format
-msgid "No partition available"
-msgstr "Parzhadur hegerz ebet"
-
-#: install_steps_interactive.pm:245
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "O klask ar parzhadurioù evit kavout poentoù marc'hañ"
-
-#: install_steps_interactive.pm:252
-#, c-format
-msgid "Choose the mount points"
-msgstr "Dibabit at poentoù marc'hañ"
-
-#: install_steps_interactive.pm:300
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: install_steps_interactive.pm:305
-#, c-format
-msgid ""
-"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
-"to boot your system, you'll need to create the bootstrap partition in "
-"DiskDrake"
-msgstr ""
-
-#: install_steps_interactive.pm:341
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Dibabit ar parzhadur a vennit furmadiñ"
-
-#: install_steps_interactive.pm:343
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Gwiriañ ar bloc'hoù siek ?"
-
-#: install_steps_interactive.pm:371
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
-msgstr ""
-
-#: install_steps_interactive.pm:374
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr ""
-"N'eus ket a-walc'h a zisloañ evit peurstaliañ, kreskit anezhañ mar plij"
-
-#: install_steps_interactive.pm:383
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "O klask ar pakadoù hegerz hag adsevel ar stlennvon rpm ..."
-
-#: install_steps_interactive.pm:384 install_steps_interactive.pm:436
-#, c-format
-msgid "Looking for available packages..."
-msgstr "O klask ar pakadoù hegerz ..."
-
-#: install_steps_interactive.pm:405 install_steps_interactive.pm:810
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Dibabit ur melezour da dapout ar pakadoù diwarnañ"
-
-#: install_steps_interactive.pm:445
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Ho reizhiad n'eus ket wa-walc'h a egor evit staliañ pe vremanaat (%d > %d)"
-
-#: install_steps_interactive.pm:479
-#, c-format
-msgid ""
-"Please choose load or save package selection.\n"
-"The format is the same as auto_install generated files."
-msgstr ""
-"Dibabit kargañ pe enrollañ choazh ar pakadoù mar plij.\n"
-"Ar furmad zo hini ar restroù auto_install."
-
-#: install_steps_interactive.pm:481
-#, c-format
-msgid "Load"
-msgstr "Kargañ"
-
-#: install_steps_interactive.pm:481 standalone/drakbackup:4083
-#: standalone/drakbackup:4153 standalone/logdrake:175
-#, c-format
-msgid "Save"
-msgstr "Enrollañ"
-
-#: install_steps_interactive.pm:489
-#, c-format
-msgid "Bad file"
-msgstr "N'eo ket mat ar restr"
-
-#: install_steps_interactive.pm:562
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Brasoc'h eo ment dibabet evit egor dieub"
-
-#: install_steps_interactive.pm:577
-#, c-format
-msgid "Type of install"
-msgstr "Seurt ar staliadur"
-
-#: install_steps_interactive.pm:578
-#, c-format
-msgid ""
-"You have not selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"N'eus ket strollad pakadoù dibabet ebet.\n"
-"Dibabit ar staliañ vihanañ e fell deoc'h implij mar plij :"
-
-#: install_steps_interactive.pm:582
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Gant un teuliadur bihan (kuzuliet !)"
-
-#: install_steps_interactive.pm:583
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Staliadur bihan gwir (n'eus urpmi ebet)"
-
-#: install_steps_interactive.pm:622 standalone/drakxtv:52
-#, c-format
-msgid "All"
-msgstr "An holl"
-
-#: install_steps_interactive.pm:661
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"M'hoc'h eus an holl CDoù er roll a-is, gwaskit Mat eo.\n"
-"Ma n'hoc'h eus hini eus ar CDoù-se, gwaskit Nullañ.\n"
-"Ma fazi deoc'h lod eus ar CDoù, andibabit anezho ha gwaskit Mat eo."
-
-#: install_steps_interactive.pm:666
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom skridennet \"%s\""
-
-#: install_steps_interactive.pm:691
-#, c-format
-msgid "Preparing installation"
-msgstr "O prientiñ ar staliadur"
-
-#: install_steps_interactive.pm:699
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"O staliañ ar pakad %s\n"
-"%d%%"
-
-#: install_steps_interactive.pm:748
-#, c-format
-msgid "Post-install configuration"
-msgstr "Kefluniadur goude staliañ"
-
-#: install_steps_interactive.pm:755
-#, c-format
-msgid "Please ensure the Update Modules media is in drive %s"
-msgstr ""
-
-#: install_steps_interactive.pm:783
-#, c-format
-msgid "Updates"
-msgstr "Bremañaat"
-
-#: install_steps_interactive.pm:784
-#, c-format
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates?"
-msgstr ""
-"Moien zo dit da bellkargañ ar pakadoù bremañaet. Bremañaet e oa ar\n"
-"pakadoù-mañ goude e oa echu an ingaladur. Gallout a ra kaout difazioù\n"
-"surentez pe difazioù bogoù.\n"
-"\n"
-"Red eo da gaout ur gevreadenn bev ouzh internet evit staliañ anezho.\n"
-"\n"
-"Mennout a rit staliañ anezho ?"
-
-#: install_steps_interactive.pm:805
-#, c-format
-msgid ""
-"Contacting Mandriva Linux web site to get the list of available mirrors..."
-msgstr ""
-"O taremprediñ al lec'hienn Mandriva Linux evit kaout roll ar pakadoù "
-"hegerz ..."
-
-#: install_steps_interactive.pm:824
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "O taremprediñ ar melezour evit kaout roll ar pakadoù hegerz ..."
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Ne m'eus ket daremprediñ ar melezour %s"
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Mennout a rit klask adarre ?"
-
-#: install_steps_interactive.pm:855 standalone/drakclock:45
-#: standalone/finish-install:56
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Pe seurt a vo ho takad-eur ?"
-
-#: install_steps_interactive.pm:860
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: install_steps_interactive.pm:868
-#, c-format
-msgid "NTP Server"
-msgstr "Servijer NTP"
-
-#: install_steps_interactive.pm:923 install_steps_interactive.pm:931
-#: install_steps_interactive.pm:949 install_steps_interactive.pm:956
-#: install_steps_interactive.pm:1107 services.pm:133
-#: standalone/drakbackup:1596
-#, c-format
-msgid "System"
-msgstr "Reizhiad"
-
-#: install_steps_interactive.pm:963 install_steps_interactive.pm:990
-#: install_steps_interactive.pm:1007 install_steps_interactive.pm:1023
-#: install_steps_interactive.pm:1034
-#, c-format
-msgid "Hardware"
-msgstr "Periantel"
-
-#: install_steps_interactive.pm:969 install_steps_interactive.pm:978
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Servijer CUPS a-bell"
-
-#: install_steps_interactive.pm:969
-#, c-format
-msgid "No printer"
-msgstr "Moullerez ebet"
-
-#: install_steps_interactive.pm:1011
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Hag ur gartenn gwelet ISA hoc'h eus ?"
-
-#: install_steps_interactive.pm:1013
-#, c-format
-msgid ""
-"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
-"card"
-msgstr ""
-"Seveniñ « alsaconf » pe « sndconfig » goude staliañ evit kefluniañ ho "
-"kartenn klevet"
-
-#: install_steps_interactive.pm:1015
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"N'eus kartenn gwelet kavet ebet. Kargañ « harddrake » goude ar staliadur"
-
-#: install_steps_interactive.pm:1035
-#, c-format
-msgid "Graphical interface"
-msgstr "Ketal kevregañ"
-
-#: install_steps_interactive.pm:1041 install_steps_interactive.pm:1053
-#, c-format
-msgid "Network & Internet"
-msgstr "Rouedad hag Internet"
-
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "configured"
-msgstr "kefluniet"
-
-#: install_steps_interactive.pm:1064 install_steps_interactive.pm:1078
-#: security/level.pm:55 steps.pm:20
-#, c-format
-msgid "Security"
-msgstr "Diogelroez"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "activated"
-msgstr "bevaatet"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "disabled"
-msgstr "diweredekaet"
-
-#: install_steps_interactive.pm:1094
-#, c-format
-msgid "Boot"
-msgstr "Lañsañ"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1098 printer/printerdrake.pm:961
-#, c-format
-msgid "%s on %s"
-msgstr "%s war %s"
-
-#: install_steps_interactive.pm:1112 services.pm:175
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Servijoù : %d bev diwar %d enskrivet"
-
-#: install_steps_interactive.pm:1124
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "N'eo ket kefluniet X. Ha fellout a ra deoc'h da vat ober an dra-mañ ?"
-
-#: install_steps_interactive.pm:1205
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "O prientiñ ar c'harger loc'hañ ..."
-
-#: install_steps_interactive.pm:1215
-#, c-format
-msgid ""
-"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
-"will not work for you. The install will continue, but you'll need to use "
-"BootX or some other means to boot your machine. The kernel argument for the "
-"root fs is: root=%s"
-msgstr ""
-
-#: install_steps_interactive.pm:1221
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Mennout a rit implijout aboot ?"
-
-#: install_steps_interactive.pm:1224
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Fazi en ur staliañ aboot,\n"
-"klask rediañ ar staliadur zoken ma tistruj ar parzhadur kentañ ?"
-
-#: install_steps_interactive.pm:1241
-#, c-format
-msgid ""
-"In this security level, access to the files in the Windows partition is "
-"restricted to the administrator."
-msgstr ""
-
-#: install_steps_interactive.pm:1270 standalone/drakautoinst:76
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-
-#: install_steps_interactive.pm:1275
-#, c-format
-msgid "Please insert another floppy for drivers disk"
-msgstr "Lakait ur bladennig all evit sturieroù el lenner"
-
-#: install_steps_interactive.pm:1277
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "O krouiñ ur bladennig staliañ emgefreek ..."
-
-#: install_steps_interactive.pm:1289
-#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Lankadoù 'zo n'int ket peurc'hraet.\n"
-"\n"
-"Mennout a rit kuitaat da vat bremañ ?"
-
-#: install_steps_interactive.pm:1299 standalone/draksambashare:421
-#: standalone/draksambashare:527 standalone/drakups:118 standalone/drakups:157
-#: standalone/logdrake:451 standalone/logdrake:457
-#, c-format
-msgid "Congratulations"
-msgstr "Brav"
-
-#: install_steps_interactive.pm:1307 install_steps_interactive.pm:1308
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Krouiñ ur bladennig staliañ emgefreek"
-
-#: install_steps_interactive.pm:1309
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-
-#: install_steps_newt.pm:20
-#, c-format
-msgid "Mandriva Linux Installation %s"
-msgstr "Staliadur Mandriva Linux %s"
-
-#. -PO: This string must fit in a 80-char wide text screen
-#: install_steps_newt.pm:37
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> etre elfennoù | <Esaouenn> a ziuz | <F12> skramm a heul "
+msgid "No"
+msgstr "N'eo ket"
-#: interactive.pm:196
+#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "Dibabit ur restr"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakbackup:1537
-#: standalone/drakfont:649 standalone/drakhosts:242 standalone/draknfs:605
-#: standalone/draksambashare:1127 standalone/drakups:299
-#: standalone/drakups:359 standalone/drakups:379 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Add"
msgstr "Ouzhpennañ"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakhosts:249
-#: standalone/draknfs:612 standalone/draksambashare:1084
-#: standalone/draksambashare:1137 standalone/draksambashare:1176
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Modify"
msgstr "Kemmañ"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakfont:732
-#: standalone/drakhosts:256 standalone/draknfs:619
-#: standalone/draksambashare:1085 standalone/draksambashare:1145
-#: standalone/draksambashare:1184 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Remove"
msgstr "Dilemel"
-#: interactive.pm:398
-#, c-format
-msgid "Basic"
-msgstr "Diazez"
-
-#: interactive.pm:436 interactive/newt.pm:321 ugtk2.pm:490
+#: interactive.pm:538 interactive/curses.pm:217 ugtk2.pm:508
#, c-format
msgid "Finish"
msgstr "Disoc'h"
-#: interactive/newt.pm:92
+#: interactive.pm:539 interactive/curses.pm:214 ugtk2.pm:506
#, c-format
-msgid "Do"
-msgstr "Ober"
+msgid "Previous"
+msgstr "Diaraog"
#: interactive/stdio.pm:29 interactive/stdio.pm:148
#, c-format
@@ -6512,1948 +3233,1205 @@ msgstr ""
msgid "Re-submit"
msgstr "Adkas"
-#: keyboard.pm:171 keyboard.pm:202
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTZ)"
-msgstr "Tchek (QWERTZ)"
-
-#: keyboard.pm:172 keyboard.pm:204
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German"
-msgstr "Alamanek"
-
-#: keyboard.pm:173
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak"
-msgstr "Dvorak"
-
-#: keyboard.pm:174 keyboard.pm:217
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Spanish"
-msgstr "Spagnolek"
-
-#: keyboard.pm:175 keyboard.pm:218
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Finnish"
-msgstr "Finnek"
-
-#: keyboard.pm:176 keyboard.pm:220
-#, c-format
-msgid ""
-"_: keyboard\n"
-"French"
-msgstr "Gallek"
-
-#: keyboard.pm:177 keyboard.pm:264
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Norwegian"
-msgstr "Norvegek"
-
-#: keyboard.pm:178
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish"
-msgstr "Polonek"
-
-#: keyboard.pm:179 keyboard.pm:275
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian"
-msgstr "Rusiek"
-
-#: keyboard.pm:180 keyboard.pm:281
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swedish"
-msgstr "Svedek"
-
-#: keyboard.pm:181 keyboard.pm:310
-#, c-format
-msgid "UK keyboard"
-msgstr "Stokellaoueg RU"
-
-#: keyboard.pm:182 keyboard.pm:313
-#, c-format
-msgid "US keyboard"
-msgstr "Stokellaoueg SUA"
-
-#: keyboard.pm:184
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Albanian"
-msgstr "Albaniek"
-
-#: keyboard.pm:185
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (old)"
-msgstr "Armeniek (kozh)"
-
-#: keyboard.pm:186
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (typewriter)"
-msgstr "Armeniek (skriverez)"
-
-#: keyboard.pm:187
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (phonetic)"
-msgstr "Armeniek (soniadel)"
-
-#: keyboard.pm:188
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Arabic"
-msgstr "Arabek"
-
-#: keyboard.pm:189
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Azerbaidjani (latin)"
-msgstr "Azerbaidjanek (latin)"
-
-#: keyboard.pm:190
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belgian"
-msgstr "Belgianek"
-
-#: keyboard.pm:191
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Inscript-layout)"
-msgstr "Bengalek (reizhadur Inscript)"
-
-#: keyboard.pm:192
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Probhat)"
-msgstr "Bengalek (reizhadur Probhat)"
-
-#: keyboard.pm:193
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (phonetic)"
-msgstr "Bulgariek (soniadel)"
-
-#: keyboard.pm:194
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (BDS)"
-msgstr "Bulgarek (BDS)"
-
-#: keyboard.pm:195
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Brazilian (ABNT-2)"
-msgstr "Brasilek (ABNT-2)"
-
-#: keyboard.pm:196
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bosnian"
-msgstr "Bosniek"
-
-#: keyboard.pm:197
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belarusian"
-msgstr "Belarusiek"
-
-#: keyboard.pm:198
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (German layout)"
-msgstr "Suis (reizhadur alaman)"
-
-#: keyboard.pm:199
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (French layout)"
-msgstr "Suis (reizhadur gall)"
-
-#: keyboard.pm:201
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Cherokee syllabics"
-msgstr ""
-
-#: keyboard.pm:203
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTY)"
-msgstr "Tchek (QWERTY)"
-
-#: keyboard.pm:205
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German (no dead keys)"
-msgstr "Alaman (stokell marv ebet)"
-
-#: keyboard.pm:206
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Devanagari"
-msgstr "Devanagariek"
-
-#: keyboard.pm:207
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Danish"
-msgstr "Danek"
-
-#: keyboard.pm:208
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: keyboard.pm:209
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Esperanto)"
-msgstr "Dvorak (Esperanto)"
-
-#: keyboard.pm:210
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (French)"
-msgstr "Dvorak (Gallek)"
-
-#: keyboard.pm:211
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (UK)"
-msgstr "Dvorak (RU)"
-
-#: keyboard.pm:212
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Norwegian)"
-msgstr "Dvorak (Norvegek)"
-
-#: keyboard.pm:213
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Polish)"
-msgstr "Dvorak (Polonek)"
-
-#: keyboard.pm:214
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Swedish)"
-msgstr "Dvorak (Svedek)"
-
-#: keyboard.pm:215
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dzongkha/Tibetan"
-msgstr "Dzongka/Tibetek"
-
-#: keyboard.pm:216
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Estonian"
-msgstr "Estoniek"
-
-#: keyboard.pm:219
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Faroese"
-msgstr "Faroesek"
-
-#: keyboard.pm:221
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Russian\" layout)"
-msgstr "Jorjiek (reizhadur \"Rusiek\")"
-
-#: keyboard.pm:222
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Latin\" layout)"
-msgstr "Jorjiek (reizhadur \"Latin\")"
-
-#: keyboard.pm:223
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek"
-msgstr "Gresianek"
-
-#: keyboard.pm:224
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek (polytonic)"
-msgstr "Gresianek"
-
-#: keyboard.pm:225
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gujarati"
-msgstr "Gujartiek"
-
-#: keyboard.pm:226
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gurmukhi"
-msgstr "Gurmukek"
-
-#: keyboard.pm:227
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Croatian"
-msgstr "Kroatek"
-
-#: keyboard.pm:228
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Hungarian"
-msgstr "Hungarek"
-
-#: keyboard.pm:229
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Irish"
-msgstr "Iwerzhonek"
-
-#: keyboard.pm:230
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli"
-msgstr "Israelian"
-
-#: keyboard.pm:231
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli (phonetic)"
-msgstr "Israelian (soniadel)"
-
-#: keyboard.pm:232
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Iranian"
-msgstr "Iraniek"
-
-#: keyboard.pm:233
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Icelandic"
-msgstr "Islandek"
-
-#: keyboard.pm:234
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Italian"
-msgstr "Italianek"
-
-#: keyboard.pm:235
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Inuktitut"
-msgstr "Inuktitut"
-
-#: keyboard.pm:239
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Japanese 106 keys"
-msgstr "Japonek (106 stokell)"
-
-#: keyboard.pm:240
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kannada"
-msgstr "Kanadian"
-
-#: keyboard.pm:243
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Korean"
-msgstr "Stokellaoueg korean"
-
-#: keyboard.pm:245
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kurdish (arabic script)"
-msgstr "Kurdek"
-
-#: keyboard.pm:246
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kyrgyz"
-msgstr "Kirgizek"
-
-#: keyboard.pm:247
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latin American"
-msgstr "Amerikan Latin"
-
-#: keyboard.pm:249
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Laotian"
-msgstr "Laosiek"
-
-#: keyboard.pm:250
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (old)"
-msgstr "Lituaniek AZERTY (kozh)"
-
-#: keyboard.pm:252
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (new)"
-msgstr "Lituaniek AZERTY (nevez)"
-
-#: keyboard.pm:253
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"number row\" QWERTY"
-msgstr "Lituaniek QUERTY \"linenn sifroù\""
-
-#: keyboard.pm:254
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituaniek QUERTY \"soniadel\""
-
-#: keyboard.pm:255
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latvian"
-msgstr "Letonek"
-
-#: keyboard.pm:256
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Malayalam"
-msgstr "Malayalamek"
-
-#: keyboard.pm:258
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Macedonian"
-msgstr "Makedoniek"
-
-#: keyboard.pm:259
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Myanmar (Burmese)"
-msgstr ""
-
-#: keyboard.pm:260
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Mongolian (cyrillic)"
-msgstr "Mongoliek (lizherenneg ar ruseg)"
-
-#: keyboard.pm:261
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (UK)"
-msgstr "Maltek (RU)"
-
-#: keyboard.pm:262
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (US)"
-msgstr "Maltek (SUA)"
-
-#: keyboard.pm:263
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dutch"
-msgstr "Hollandek"
-
-#: keyboard.pm:265
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Oriya"
-msgstr "Oriyaek"
-
-#: keyboard.pm:266
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwerty layout)"
-msgstr "Polonek (reizhadur qwerty)"
-
-#: keyboard.pm:267
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwertz layout)"
-msgstr "Polonek (reizhadur qwerty)"
-
-#: keyboard.pm:269
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Pashto"
-msgstr "Pashtouek"
-
-#: keyboard.pm:270
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Portuguese"
-msgstr "Portugalek"
-
-#: keyboard.pm:272
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Canadian (Quebec)"
-msgstr "Kanadian (Kebek)"
-
-#: keyboard.pm:273
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwertz)"
-msgstr "Romaniek (Yawertz)"
-
-#: keyboard.pm:274
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwerty)"
-msgstr "Romaniek (qwerty)"
-
-#: keyboard.pm:276
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian (phonetic)"
-msgstr "Russianek (soniadel)"
-
-#: keyboard.pm:277
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (norwegian)"
-msgstr "Sami (norvegek)"
-
-#: keyboard.pm:278
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (swedish/finnish)"
-msgstr "Samiek (svedek/finnek)"
-
-#: keyboard.pm:280
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sindhi"
-msgstr "Sindiek"
-
-#: keyboard.pm:282
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovenian"
-msgstr "Slovek"
-
-#: keyboard.pm:284
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sinhala"
-msgstr "Sinhalek"
-
-#: keyboard.pm:285
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTZ)"
-msgstr "Slovakek (QWERTZ)"
-
-#: keyboard.pm:286
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTY)"
-msgstr "Slovakek (QWERTY)"
-
-#: keyboard.pm:288
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Serbian (cyrillic)"
-msgstr "Serbiek (lizherenneg ar ruseg)"
-
-#: keyboard.pm:289
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac"
-msgstr "Siriak"
-
-#: keyboard.pm:290
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac (phonetic)"
-msgstr "Siriak (soniadel)"
-
-#: keyboard.pm:291
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Telugu"
-msgstr "Telegu"
-
-#: keyboard.pm:293
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (ISCII-layout)"
-msgstr "Tamoul (reizhadur ISCII)"
-
-#: keyboard.pm:294
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (Typewriter-layout)"
-msgstr "Tamoul (reizhadur ar skriverez)"
-
-#: keyboard.pm:295
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Kedmanee)"
-msgstr "Tailh (Kedmanee)"
-
-#: keyboard.pm:296
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (TIS-820)"
-msgstr "Tailh (TIS-820)"
-
-#: keyboard.pm:298
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Pattachote)"
-msgstr "Tailh (Pattachote)"
-
-#: keyboard.pm:300
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (moroccan layout) (+latin/arabic)"
-msgstr "Tifinagek (reizhadur marokek) (+latin/arabek)"
-
-#: keyboard.pm:301
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (phonetic) (+latin/arabic)"
-msgstr "Tifinagek (reizhadur soniadel) (+latin/arabek)"
-
-#: keyboard.pm:303
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tajik"
-msgstr "Tadjik"
-
-#: keyboard.pm:305
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkmen"
-msgstr "Turkmenek"
-
-#: keyboard.pm:306
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (traditional \"F\" model)"
-msgstr "Turkek (hengounel doare \"F\")"
-
-#: keyboard.pm:307
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (modern \"Q\" model)"
-msgstr "Turkek (arnevez doare \"Q\")"
-
-#: keyboard.pm:309
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Ukrainian"
-msgstr "Ukrainiek"
-
-#: keyboard.pm:312
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Urdu keyboard"
-msgstr "Stokellaoueg urduek"
-
-#: keyboard.pm:314
-#, c-format
-msgid "US keyboard (international)"
-msgstr "Stokellaoueg SUA (etrevroadel)"
-
-#: keyboard.pm:315
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Uzbek (cyrillic)"
-msgstr "Ouzbek (lizherenneg ar ruseg)"
-
-#: keyboard.pm:317
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Vietnamese \"numeric row\" QWERTY"
-msgstr "Yezh ar Viet-Nam QUERTY \"linenn sifroù\""
-
-#: keyboard.pm:318
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Yugoslavian (latin)"
-msgstr "Yougoslaviek (latin)"
-
-#: keyboard.pm:325
-#, c-format
-msgid "Right Alt key"
-msgstr "Stokell Alft a-zehoù"
-
-#: keyboard.pm:326
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:327
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:328
-#, c-format
-msgid "CapsLock key"
-msgstr ""
-
-#: keyboard.pm:329
-#, c-format
-msgid "Shift and CapsLock keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:330
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:331
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:332
-#, c-format
-msgid "\"Menu\" key"
-msgstr "Touchenn ar meuziad"
-
-#: keyboard.pm:333
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Stokell « Prenestr » a-gleiz"
-
-#: keyboard.pm:334
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Stokell « Prenestr » a-zehoù"
-
-#: keyboard.pm:335
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:336
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:337
-#, c-format
-msgid "Left Shift key"
-msgstr "Stokell Shift a-gleiz"
-
-#: keyboard.pm:338
-#, c-format
-msgid "Right Shift key"
-msgstr "Stokell Shift a-zehoù"
-
-#: keyboard.pm:339
-#, c-format
-msgid "Left Alt key"
-msgstr "Stokell Alt a-zehoù"
-
-#: keyboard.pm:340
-#, c-format
-msgid "Left Control key"
-msgstr "Stokell Control a-gleiz"
-
-#: keyboard.pm:341
-#, c-format
-msgid "Right Control key"
-msgstr "Stokell Control a-zehoù"
-
-#: keyboard.pm:377
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-
-#: keyboard.pm:382
-#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
-msgstr ""
-
#. -PO: the string "default:LTR" can be translated *ONLY* as "default:LTR"
#. -PO: or as "default:RTL", depending if your language is written from
#. -PO: left to right, or from right to left; any other string is wrong.
-#: lang.pm:178
+#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"
-#: lang.pm:195
+#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "Andora"
-#: lang.pm:196 network/adsl_consts.pm:943
+#: lang.pm:211 timezone.pm:213
#, c-format
msgid "United Arab Emirates"
msgstr "Stadoù-Unanet Arabeg"
-#: lang.pm:197
+#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "Afganistan"
-#: lang.pm:198
+#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigwa ha Barbuda"
-#: lang.pm:199
+#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "Angilla"
-#: lang.pm:200
+#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "Albani"
-#: lang.pm:201
+#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "Armeni"
-#: lang.pm:202
+#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "Antilh an Izelvroioù"
-#: lang.pm:203
+#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "Angola"
-#: lang.pm:204
+#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "Antartik"
-#: lang.pm:205 network/adsl_consts.pm:55 standalone/drakxtv:50
+#: lang.pm:220 timezone.pm:258
#, c-format
msgid "Argentina"
msgstr "Arc'hantin"
-#: lang.pm:206
+#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "Samoa amerikanek"
-#: lang.pm:209
+#: lang.pm:222 mirror.pm:11 timezone.pm:216
+#, c-format
+msgid "Austria"
+msgstr "Aostria"
+
+#: lang.pm:223 mirror.pm:10 timezone.pm:254
+#, c-format
+msgid "Australia"
+msgstr "Australi"
+
+#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "Aruba"
-#: lang.pm:210
+#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "Azerbeidjan"
-#: lang.pm:211
+#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosni hag Herzigovi"
-#: lang.pm:212
+#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "Barbad"
-#: lang.pm:213
+#: lang.pm:228 timezone.pm:198
#, c-format
msgid "Bangladesh"
msgstr "Bangladaech"
-#: lang.pm:215
+#: lang.pm:229 mirror.pm:12 timezone.pm:218
+#, c-format
+msgid "Belgium"
+msgstr "Beljik"
+
+#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "Burkina Faso"
-#: lang.pm:216 network/adsl_consts.pm:170 network/adsl_consts.pm:179
+#: lang.pm:231 timezone.pm:219
#, c-format
msgid "Bulgaria"
msgstr "Bulgari"
-#: lang.pm:217
+#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "Barein"
-#: lang.pm:218
+#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "Burundi"
-#: lang.pm:219
+#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "Benin"
-#: lang.pm:220
+#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "Bermud"
-#: lang.pm:221
+#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "Darussalam Brunei"
-#: lang.pm:222
+#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "Bolivi"
-#: lang.pm:224
+#: lang.pm:238 mirror.pm:13 timezone.pm:259
+#, c-format
+msgid "Brazil"
+msgstr "Brazil"
+
+#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "Bahamas"
-#: lang.pm:225
+#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "Butañ"
-#: lang.pm:226
+#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "Enez Bouvet"
-#: lang.pm:227
+#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "Botswana"
-#: lang.pm:228
+#: lang.pm:243 timezone.pm:217
#, c-format
msgid "Belarus"
msgstr "Belarusi"
-#: lang.pm:229
+#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "Beliz"
-#: lang.pm:231
+#: lang.pm:245 mirror.pm:14 timezone.pm:248
+#, c-format
+msgid "Canada"
+msgstr "Kanada"
+
+#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Inizi Koko (Keeling)"
-#: lang.pm:232
+#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Kongo (Kinshasa)"
-#: lang.pm:233
+#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "Republik centrafricaine"
-#: lang.pm:234
+#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Kongo (Brazzaville)"
-#: lang.pm:236
+#: lang.pm:250 mirror.pm:38 timezone.pm:242
+#, c-format
+msgid "Switzerland"
+msgstr "Suis"
+
+#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "Aod an Olifant"
-#: lang.pm:237
+#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "Inizi Kook"
-#: lang.pm:238
+#: lang.pm:253 timezone.pm:260
#, c-format
msgid "Chile"
msgstr "Chili"
-#: lang.pm:239
+#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "Kameroun"
-#: lang.pm:240 network/adsl_consts.pm:188 network/adsl_consts.pm:197
-#: network/adsl_consts.pm:206 network/adsl_consts.pm:215
-#: network/adsl_consts.pm:224 network/adsl_consts.pm:233
-#: network/adsl_consts.pm:242 network/adsl_consts.pm:251
-#: network/adsl_consts.pm:260 network/adsl_consts.pm:269
-#: network/adsl_consts.pm:278 network/adsl_consts.pm:287
-#: network/adsl_consts.pm:296 network/adsl_consts.pm:305
-#: network/adsl_consts.pm:314 network/adsl_consts.pm:323
-#: network/adsl_consts.pm:332 network/adsl_consts.pm:341
-#: network/adsl_consts.pm:350 network/adsl_consts.pm:359
+#: lang.pm:255 timezone.pm:199
#, c-format
msgid "China"
msgstr "Sina"
-#: lang.pm:241
+#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "Kolombi"
-#: lang.pm:243
+#: lang.pm:257 mirror.pm:15
+#, c-format
+msgid "Costa Rica"
+msgstr "Kosta Rika"
+
+#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "Serbi & Montenegro"
-#: lang.pm:244
+#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "Kuba"
-#: lang.pm:245
+#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "Penn Verde"
-#: lang.pm:246
+#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "Inizi Nedeleg"
-#: lang.pm:247
+#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "Chipr"
-#: lang.pm:250
+#: lang.pm:263 mirror.pm:16 timezone.pm:220
+#, c-format
+msgid "Czech Republic"
+msgstr "Republik Tchek"
+
+#: lang.pm:264 mirror.pm:21 timezone.pm:225
+#, c-format
+msgid "Germany"
+msgstr "Alamagn"
+
+#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "Djibouti"
-#: lang.pm:252
+#: lang.pm:266 mirror.pm:17 timezone.pm:221
+#, c-format
+msgid "Denmark"
+msgstr "Danmark"
+
+#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "Dominik"
-#: lang.pm:253
+#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "Republik Dominikan"
-#: lang.pm:254 network/adsl_consts.pm:44
+#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "Aljeri"
-#: lang.pm:255
+#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "Kehider"
-#: lang.pm:257
+#: lang.pm:271 mirror.pm:18 timezone.pm:222
+#, c-format
+msgid "Estonia"
+msgstr "Estoni"
+
+#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "Ejipt"
-#: lang.pm:258
+#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "Sahara occidental"
-#: lang.pm:259
+#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "Eritre"
-#: lang.pm:261
+#: lang.pm:275 mirror.pm:36 timezone.pm:240
+#, c-format
+msgid "Spain"
+msgstr "Spagn"
+
+#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "Etiopi"
-#: lang.pm:263
+#: lang.pm:277 mirror.pm:19 timezone.pm:223
+#, c-format
+msgid "Finland"
+msgstr "Finland"
+
+#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "Fidji"
-#: lang.pm:264
+#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Inizi Falklandi (Malvinas)"
-#: lang.pm:265
+#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "Mikronesi"
-#: lang.pm:266
+#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "Enez Faroe"
-#: lang.pm:268
+#: lang.pm:282 mirror.pm:20 timezone.pm:224
+#, c-format
+msgid "France"
+msgstr "Gall"
+
+#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "Gabon"
-#: lang.pm:269 network/adsl_consts.pm:954 network/adsl_consts.pm:965
-#: network/netconnect.pm:46
+#: lang.pm:284 timezone.pm:244
#, c-format
msgid "United Kingdom"
msgstr "Rouantelezh Unanet"
-#: lang.pm:270
+#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "Grenad"
-#: lang.pm:271
+#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "Jeorji"
-#: lang.pm:272
+#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "Gwiana gallek"
-#: lang.pm:273
+#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "Gwana"
-#: lang.pm:274
+#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "Jibraltar"
-#: lang.pm:275
+#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "Griñland"
-#: lang.pm:276
+#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "Gambi"
-#: lang.pm:277
+#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "Gine"
-#: lang.pm:278
+#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "Gwadeloup"
-#: lang.pm:279
+#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "Guine équatoriale"
-#: lang.pm:281
+#: lang.pm:295 mirror.pm:22 timezone.pm:226
+#, c-format
+msgid "Greece"
+msgstr "Gres"
+
+#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "Inizi Jorjia Su ha Sandwitch Su"
-#: lang.pm:282
+#: lang.pm:297 timezone.pm:249
#, c-format
msgid "Guatemala"
msgstr "Gwatemala"
-#: lang.pm:283
+#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "Gwam"
-#: lang.pm:284
+#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "Gine-Biso"
-#: lang.pm:285
+#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "Gwiana"
-#: lang.pm:286
+#: lang.pm:301
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "Sina (Hong Kong)"
-#: lang.pm:287
+#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Inizi Heard ha McDonald"
-#: lang.pm:288
+#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "Honduras"
-#: lang.pm:289
+#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "Kroati"
-#: lang.pm:290
+#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "Haiti"
-#: lang.pm:292
+#: lang.pm:306 mirror.pm:23 timezone.pm:227
+#, c-format
+msgid "Hungary"
+msgstr "Hongri"
+
+#: lang.pm:307 timezone.pm:202
#, c-format
msgid "Indonesia"
msgstr "Indonezi"
-#: lang.pm:295
+#: lang.pm:308 mirror.pm:24 timezone.pm:228
+#, c-format
+msgid "Ireland"
+msgstr "Iwerzhon"
+
+#: lang.pm:309 mirror.pm:25 timezone.pm:204
+#, c-format
+msgid "Israel"
+msgstr "Israel"
+
+#: lang.pm:310 timezone.pm:201
#, c-format
msgid "India"
msgstr "Indez"
-#: lang.pm:296
+#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Douar morveur India saozneg"
-#: lang.pm:297
+#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "Irak"
-#: lang.pm:298
+#: lang.pm:313 timezone.pm:203
#, c-format
msgid "Iran"
msgstr "Iran"
-#: lang.pm:299
+#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "Bro ar Skorn"
-#: lang.pm:301
+#: lang.pm:315 mirror.pm:26 timezone.pm:229
+#, c-format
+msgid "Italy"
+msgstr "Itali"
+
+#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "Jamaik"
-#: lang.pm:302
+#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "Jordani"
-#: lang.pm:304
+#: lang.pm:318 mirror.pm:27 timezone.pm:205
+#, c-format
+msgid "Japan"
+msgstr "Japon"
+
+#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "Kenya"
-#: lang.pm:305
+#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "Kirgistan"
-#: lang.pm:306
+#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "Kambodj"
-#: lang.pm:307
+#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "Kiribati"
-#: lang.pm:308
+#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "Komoros"
-#: lang.pm:309
+#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Sant Kitts ha Nevis"
-#: lang.pm:310
+#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "Kore (Norzh)"
-#: lang.pm:311
+#: lang.pm:326 timezone.pm:206
#, c-format
msgid "Korea"
msgstr "Kore"
-#: lang.pm:312
+#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "Kowaet"
-#: lang.pm:313
+#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "Inizi Kaeman"
-#: lang.pm:314
+#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "Kazakstan"
-#: lang.pm:315
+#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "Laos"
-#: lang.pm:316
+#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "Liban"
-#: lang.pm:317
+#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "Santez Luci"
-#: lang.pm:318
+#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "Liechtenstein"
-#: lang.pm:319
+#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "Sri Lanka"
-#: lang.pm:320
+#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "Liberia"
-#: lang.pm:321
+#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "Lesoto"
-#: lang.pm:322 network/adsl_consts.pm:600
+#: lang.pm:337 timezone.pm:230
#, c-format
msgid "Lithuania"
msgstr "Lituani"
-#: lang.pm:323
+#: lang.pm:338 timezone.pm:231
#, c-format
msgid "Luxembourg"
msgstr "Luksembourg"
-#: lang.pm:324
+#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "Latvia"
-#: lang.pm:325
+#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "Libi"
-#: lang.pm:326 network/adsl_consts.pm:609
+#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "Marok"
-#: lang.pm:327
+#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "Monako"
-#: lang.pm:328
+#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "Moldavi"
-#: lang.pm:329
+#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "Madagaskar"
-#: lang.pm:330
+#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "Inizi Marshall"
-#: lang.pm:331
+#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "Makedonia"
-#: lang.pm:332
+#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "Mali"
-#: lang.pm:333
+#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "Myanmar"
-#: lang.pm:334
+#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "Mongoli"
-#: lang.pm:335
+#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "Inizi Mariana norzh"
-#: lang.pm:336
+#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "Martinik"
-#: lang.pm:337
+#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "Maouritani"
-#: lang.pm:338
+#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "Montserrat"
-#: lang.pm:339
+#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "Malt"
-#: lang.pm:340
+#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "Mauris"
-#: lang.pm:341
+#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "Inizi Maldiv"
-#: lang.pm:342
+#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "Malawi"
-#: lang.pm:343
+#: lang.pm:358 timezone.pm:250
#, c-format
msgid "Mexico"
msgstr "Meksiko"
-#: lang.pm:344
+#: lang.pm:359 timezone.pm:207
#, c-format
msgid "Malaysia"
msgstr "Malezia"
-#: lang.pm:345
+#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "Mozambik"
-#: lang.pm:346
+#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "Namibi"
-#: lang.pm:347
+#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "Kaledoni-nevez"
-#: lang.pm:348
+#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "Nijer"
-#: lang.pm:349
+#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "Enez Norfolk"
-#: lang.pm:350
+#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "Nijeria"
-#: lang.pm:351
+#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "Nikwaraga"
-#: lang.pm:354
+#: lang.pm:367 mirror.pm:28 timezone.pm:232
+#, c-format
+msgid "Netherlands"
+msgstr "Izelvroioù"
+
+#: lang.pm:368 mirror.pm:30 timezone.pm:233
+#, c-format
+msgid "Norway"
+msgstr "Norvej"
+
+#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "Nepal"
-#: lang.pm:355
+#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "Naurueg"
-#: lang.pm:356
+#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "Niue"
-#: lang.pm:358
+#: lang.pm:372 mirror.pm:29 timezone.pm:255
+#, c-format
+msgid "New Zealand"
+msgstr "Zeland Nevez"
+
+#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "Oman"
-#: lang.pm:359
+#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "Panama"
-#: lang.pm:360
+#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "Peroù"
-#: lang.pm:361
+#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "Polinezi galleg"
-#: lang.pm:362
+#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "Papouazi Gine Nevez"
-#: lang.pm:363
+#: lang.pm:378 timezone.pm:208
#, c-format
msgid "Philippines"
msgstr "Filipin"
-#: lang.pm:364
+#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "Pakistan"
-#: lang.pm:366
+#: lang.pm:380 mirror.pm:31 timezone.pm:234
+#, c-format
+msgid "Poland"
+msgstr "Pologn"
+
+#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Sant Per ha Mikelon"
-#: lang.pm:367
+#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "Pitcairn"
-#: lang.pm:368
+#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "Porto Rico"
-#: lang.pm:369
+#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "Palestin"
-#: lang.pm:371
+#: lang.pm:385 mirror.pm:32 timezone.pm:235
+#, c-format
+msgid "Portugal"
+msgstr "Portugal"
+
+#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "Paragwae"
-#: lang.pm:372
+#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "Palo"
-#: lang.pm:373
+#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "Kwatar"
-#: lang.pm:374
+#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "Enez ar Reunion"
-#: lang.pm:375
+#: lang.pm:390 timezone.pm:236
#, c-format
msgid "Romania"
msgstr "Roumani"
-#: lang.pm:377
+#: lang.pm:391 mirror.pm:33
+#, c-format
+msgid "Russia"
+msgstr "Rusi"
+
+#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "Rwanda"
-#: lang.pm:378
+#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "Arabi Saudiet"
-#: lang.pm:379
+#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "Inizi Salaun"
-#: lang.pm:380
+#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "Sechell"
-#: lang.pm:381
+#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "Sondan"
-#: lang.pm:383
+#: lang.pm:397 mirror.pm:37 timezone.pm:241
+#, c-format
+msgid "Sweden"
+msgstr "Sweden"
+
+#: lang.pm:398 timezone.pm:209
#, c-format
msgid "Singapore"
msgstr "Singapour"
-#: lang.pm:384
+#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "Sant Lena"
-#: lang.pm:385 network/adsl_consts.pm:747
+#: lang.pm:400 timezone.pm:239
#, c-format
msgid "Slovenia"
msgstr "Sloveni"
-#: lang.pm:386
+#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Inizi Svalbard ha Jan Mayen"
-#: lang.pm:388
+#: lang.pm:402 mirror.pm:34 timezone.pm:238
+#, c-format
+msgid "Slovakia"
+msgstr "Slovaki"
+
+#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "Siera Leoñ"
-#: lang.pm:389
+#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "San Marino"
-#: lang.pm:390 network/adsl_consts.pm:737
+#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "Senegal"
-#: lang.pm:391
+#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "Somali"
-#: lang.pm:392
+#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "Surinam"
-#: lang.pm:393
+#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "Sao Tome ha Principe"
-#: lang.pm:394
+#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "Ar Salvador"
-#: lang.pm:395
+#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "Siri"
-#: lang.pm:396
+#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "Swaziland"
-#: lang.pm:397
+#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Inizi Turks ha Kaikos"
-#: lang.pm:398
+#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "Tchad"
-#: lang.pm:399
+#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "Broioù su ar Vro-C'hall"
-#: lang.pm:400
+#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "Togo"
-#: lang.pm:402
+#: lang.pm:416 mirror.pm:40 timezone.pm:211
+#, c-format
+msgid "Thailand"
+msgstr "Tailhland"
+
+#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "Tadjikistan"
-#: lang.pm:403
+#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "Tokelo"
-#: lang.pm:404
+#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "Timor reter"
-#: lang.pm:405
+#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "Turkmenistan"
-#: lang.pm:406 network/adsl_consts.pm:931
+#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "Tunizi"
-#: lang.pm:407
+#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "Inizi Tonga"
-#: lang.pm:408
+#: lang.pm:423 timezone.pm:212
#, c-format
msgid "Turkey"
msgstr "Turki"
-#: lang.pm:409
+#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "Trinidad ha Tobago"
-#: lang.pm:410
+#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "Tuvalu"
-#: lang.pm:412
+#: lang.pm:426 mirror.pm:39 timezone.pm:210
+#, c-format
+msgid "Taiwan"
+msgstr "Taeihlwan"
+
+#: lang.pm:427 timezone.pm:195
#, c-format
msgid "Tanzania"
msgstr "Tanzani"
-#: lang.pm:413
+#: lang.pm:428 timezone.pm:243
#, c-format
msgid "Ukraine"
msgstr "Ukren"
-#: lang.pm:414
+#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "Ouganda"
-#: lang.pm:415
+#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
-msgstr ""
+msgstr "Inizi bihan an Stadoù Unanet"
-#: lang.pm:417
+#: lang.pm:431 mirror.pm:41 timezone.pm:251
+#, c-format
+msgid "United States"
+msgstr "Amerika"
+
+#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "Ourougwae"
-#: lang.pm:418
+#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "Ouzbekistan"
-#: lang.pm:419
+#: lang.pm:434
#, c-format
msgid "Vatican"
msgstr "Vatikan"
-#: lang.pm:420
+#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "Sant Visant ha Grenadin"
-#: lang.pm:421
+#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "Venezuela"
-#: lang.pm:422
+#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "Inizi Virgin (RU)"
-#: lang.pm:423
+#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Iniz Gwerc'hez"
-#: lang.pm:424
+#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "Vietnam"
-#: lang.pm:425
+#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "Vanuatu"
-#: lang.pm:426
+#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "Wallis ha Futuna"
-#: lang.pm:427
+#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "Inizi Samoe"
-#: lang.pm:428
+#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "Ihlemeñ"
-#: lang.pm:429
+#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "Mayot"
-#: lang.pm:431
+#: lang.pm:445 mirror.pm:35 timezone.pm:194
+#, c-format
+msgid "South Africa"
+msgstr "Sua-Africa"
+
+#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "Zambi"
-#: lang.pm:432
+#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1149
+#: lang.pm:1153
#, c-format
msgid "Welcome to %s"
msgstr "Degemer e %s"
@@ -8478,6 +4456,208 @@ msgstr "Lemel al levrennioù poellek da gentañ\n"
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "N'eus ket moaien da loc'hañ gant /boot war meur a levrenn fizikel"
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:10
+#, c-format
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the Mandriva "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandriva Linux distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
+"Mandriva S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using the Software Products in any manner, you "
+"explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
+"Software Products.\n"
+"\n"
+"\n"
+"2. Limited Warranty\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
+"be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if Mandriva S.A. has been advised of the possibility or "
+"occurrence of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
+"\n"
+"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
+"no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Mandriva Linux sites which are prohibited or restricted in some "
+"countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
+"included in the Software Products.\n"
+"\n"
+"\n"
+"3. The GPL License and Related Licenses\n"
+"\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to Mandriva.\n"
+"The programs developed by Mandriva S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by Mandriva S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
+"\n"
+"\n"
+"4. Intellectual Property Rights\n"
+"\n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
+"as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
+"Mandriva S.A. \n"
+"\n"
+"\n"
+"5. Governing Laws \n"
+"\n"
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
+"For any question on this document, please contact Mandriva S.A. \n"
+msgstr ""
+
+#: messages.pm:90
+#, c-format
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:98
+#, c-format
+msgid ""
+"\n"
+"Warning\n"
+"\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
+"\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:131
+#, c-format
+msgid ""
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press Enter to reboot.\n"
+"\n"
+"\n"
+"For information on fixes which are available for this release of Mandriva "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandriva Linux User's Guide."
+msgstr ""
+"Gourc'hemennoù, peurc'hraet eo ar staliadur.\n"
+"Lamit ar bladenn loc'hañ ha gwaskit enkas evit adloc'hañ.\n"
+"\n"
+"\n"
+"Evit titouroù war palastroù hegerz evit stumm-mañ Mandriva Linux,\n"
+"sellit ouzh an Errata war : \n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Titouroù war gefluniañ ho reizhiad zo hegerz e rannbennad Goude\n"
+"Staliañ Sturier ofisiel an Arveriad Mandriva Linux."
+
#: modules/interactive.pm:19
#, c-format
msgid "This driver has no configuration parameter!"
@@ -8540,19 +4720,14 @@ msgstr "O staliañ ur sturier evit ar kontroller erthernet %s"
msgid "Installing driver for %s card %s"
msgstr "O staliañ ur sturier evit kartenn %s %s"
-#: modules/interactive.pm:99
-#, c-format
-msgid "(module %s)"
-msgstr "(mollad %s)"
-
-#: modules/interactive.pm:109
+#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: modules/interactive.pm:115
+#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -8563,18 +4738,18 @@ msgstr ""
"Diouzh ar furmad « anv=talvoud anv2=talvoud2... » eo an dibaboù.\n"
"Da skouer, « io=0x300 irq=7 »"
-#: modules/interactive.pm:117
+#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "Dibarzhoù ar mollad :"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: modules/interactive.pm:130
+#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr "Pe sturier %s a zlefen amprouiñ ?"
-#: modules/interactive.pm:139
+#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -8593,17 +4768,17 @@ msgstr ""
"urzhiataer,\n"
"hogen ne raio reuz ebet."
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "Embrouiñ"
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "Spisait dibarzhoù"
-#: modules/interactive.pm:155
+#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -8612,1850 +4787,17 @@ msgstr ""
"Kargañ ar mollad %s zo sac'het.\n"
"Mennout a rit klask adarre gant arventennoù all ?"
-#: modules/parameters.pm:49
-#, c-format
-msgid "a number"
-msgstr "ur niverenn"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated numbers"
-msgstr ""
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated strings"
-msgstr ""
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated numbers"
-msgstr ""
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated strings"
-msgstr ""
-
-#: mouse.pm:25
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Logodenn Sun"
-
-#: mouse.pm:31 security/level.pm:12
-#, c-format
-msgid "Standard"
-msgstr "Skouer"
-
-#: mouse.pm:32
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: mouse.pm:33
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Logodenn rummel PS2 rodellek"
-
-#: mouse.pm:34
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/modem.pm:68 network/modem.pm:81 network/modem.pm:86
-#: network/modem.pm:115 network/netconnect.pm:596 network/netconnect.pm:601
-#: network/netconnect.pm:613 network/netconnect.pm:618
-#: network/netconnect.pm:634 network/netconnect.pm:636
-#, c-format
-msgid "Automatic"
-msgstr "Emgefreek"
-
-#: mouse.pm:39 mouse.pm:73
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Logodenn Kensington Thinking"
-
-#: mouse.pm:40 mouse.pm:68
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: mouse.pm:41
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: mouse.pm:42 mouse.pm:52
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
-
-#: mouse.pm:47 mouse.pm:79
-#, c-format
-msgid "1 button"
-msgstr "1 nozelenn"
-
-#: mouse.pm:48 mouse.pm:57
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Logodenn rummel 2 nozelenn"
-
-#: mouse.pm:50 mouse.pm:59
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Logodenn rummel 3 nozelenn gant kendarvanerezh ar rodell"
-
-#: mouse.pm:51
-#, c-format
-msgid "Wheel"
-msgstr "Rodel"
-
-#: mouse.pm:55
-#, c-format
-msgid "serial"
-msgstr "a-steud"
-
-#: mouse.pm:58
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Logodenn rummel 3 nozelenn"
-
-#: mouse.pm:60
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: mouse.pm:61
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: mouse.pm:62
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan gant kendarvanerezh ar rodell"
-
-#: mouse.pm:63
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: mouse.pm:65
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech doare CC"
-
-#: mouse.pm:66
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech doare CC gant kendarvanerezh ar rodell"
-
-#: mouse.pm:67
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: mouse.pm:69
-#, c-format
-msgid "MM Series"
-msgstr "Doare MM"
-
-#: mouse.pm:70
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: mouse.pm:71
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logodenn Logitech (a-steud, seurt C7 kozh)"
-
-#: mouse.pm:72
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr ""
-"Logodenn Logitech (a-steud, seurt C7 kozh) gant kendarvanerezh ar rodell"
-
-#: mouse.pm:74
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Logodenn Kensington Thinking gant kendarvanerezh ar rodell"
-
-#: mouse.pm:77
-#, c-format
-msgid "busmouse"
-msgstr "Logodenn bus"
-
-#: mouse.pm:80
-#, c-format
-msgid "2 buttons"
-msgstr "2 nozelenn"
-
-#: mouse.pm:81
-#, c-format
-msgid "3 buttons"
-msgstr "3 nozelenn"
-
-#: mouse.pm:82
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3 nozelenn gant kendarvanerezh ar rodell"
-
-#: mouse.pm:86
-#, c-format
-msgid "Universal"
-msgstr "Hollvedel"
-
-#: mouse.pm:88
-#, c-format
-msgid "Any PS/2 & USB mice"
-msgstr "Logodenn bennak (PS/2 pe USB)"
-
-#: mouse.pm:89
-#, c-format
-msgid "Microsoft Xbox Controller S"
-msgstr "Kontroller Microsoft Xbox S"
-
-#: mouse.pm:93 standalone/drakconnect:351 standalone/drakvpn:1126
-#, c-format
-msgid "none"
-msgstr "hini ebet"
-
-#: mouse.pm:95
-#, c-format
-msgid "No mouse"
-msgstr "Logodenn ebet"
-
-#: mouse.pm:304 mouse.pm:367 mouse.pm:376 mouse.pm:435
-#, c-format
-msgid "Synaptics Touchpad"
-msgstr "Tablezenn synaptics"
-
-#: mouse.pm:561
-#, c-format
-msgid "Please test the mouse"
-msgstr "Testan ak logodenn, mar plij"
-
-#: mouse.pm:563
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Da bevaat al logodenn,"
-
-#: mouse.pm:564
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "FIÑV HO RODELL !"
-
-#: network/drakfirewall.pm:12 share/compssUsers.pl:85
-#, c-format
-msgid "Web Server"
-msgstr "Servijer Web"
-
-#: network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "Servijer anvoù an domani"
-
-#: network/drakfirewall.pm:22
-#, c-format
-msgid "SSH server"
-msgstr "Servijer SSH"
-
-#: network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "Servijer FTP"
-
-#: network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "Servijer postel"
-
-#: network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "Servijer POP ha LDAP"
-
-#: network/drakfirewall.pm:42
-#, c-format
-msgid "Telnet server"
-msgstr "Servijer telnet"
-
-#: network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr "O lodañ retroù Windows (SMB)"
-
-#: network/drakfirewall.pm:54
-#, c-format
-msgid "CUPS server"
-msgstr "Servijer CUPS"
-
-#: network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr "Goulenn heklev (ping)"
-
-#: network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr "BitTorrent"
-
-#: network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr ""
-
-#: network/drakfirewall.pm:165
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-
-#: network/drakfirewall.pm:171
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-
-#: network/drakfirewall.pm:188
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "Pere servijoù e fell dit aotrañ kevreañ ouzh Internet ?"
-
-#: network/drakfirewall.pm:191
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-
-#: network/drakfirewall.pm:197
-#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-
-#: network/drakfirewall.pm:207
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Holl (moger tan ebet)"
-
-#: network/drakfirewall.pm:209
-#, c-format
-msgid "Other ports"
-msgstr "Porzhioù all"
-
-#: network/drakfirewall.pm:253 network/drakfirewall.pm:256
-#: standalone/drakids:33 standalone/drakids:136 standalone/drakids:145
-#: standalone/drakids:170 standalone/drakids:179 standalone/drakids:189
-#: standalone/drakids:265 standalone/net_applet:59 standalone/net_applet:202
-#: standalone/net_applet:385 standalone/net_applet:422
-#, c-format
-msgid "Interactive Firewall"
-msgstr "Moger tan bev"
-
-#: network/drakfirewall.pm:254
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activity should be watched."
-msgstr ""
-
-#: network/drakfirewall.pm:259
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr "Implijit ar moger tan bev"
-
-#: network/ifw.pm:129
-#, c-format
-msgid "Port scanning"
-msgstr ""
-
-#: network/ifw.pm:130
-#, c-format
-msgid "Service attack"
-msgstr "Argad ouzh ur servij"
-
-#: network/ifw.pm:131
-#, c-format
-msgid "Password cracking"
-msgstr ""
-
-#: network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr "Argad « %s »"
-
-#: network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:135
-#, c-format
-msgid "The %s service has been attacked by %s."
-msgstr "Argadet oa bet ar servij %s gant %s."
-
-#: network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:137
-#, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr "Bez eus un argad « %s » gant %s"
-
-#: network/isdn.pm:117 network/netconnect.pm:463 network/netconnect.pm:557
-#: network/netconnect.pm:560 network/netconnect.pm:708
-#: network/netconnect.pm:712
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr "N'eo ket er roll - aozañ anezhan gant an dorn"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "N'ouzhon ket"
-
-#: network/isdn.pm:161 network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: network/isdn.pm:162 network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/netconnect.pm:601 network/netconnect.pm:618
-#: network/netconnect.pm:634
-#, c-format
-msgid "Manual"
-msgstr "Diwar zorn"
-
-#: network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr ""
-
-#: network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr "Dibabit ar sturier Windows (restr .inf) mar plij"
-
-#: network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr "N'hellan ket staliañ ar sturier ndiswrapper %s !"
-
-#: network/ndiswrapper.pm:89
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr "N'hellan ket kargañ ar mollad ndiswrapper !"
-
-#: network/ndiswrapper.pm:95
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-
-#: network/ndiswrapper.pm:101
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr "Ne m'eus ket bet kavout an etrefas ndiswrapper !"
-
-#: network/netconnect.pm:69 network/netconnect.pm:493
-#: network/netconnect.pm:505
-#, c-format
-msgid "Manual choice"
-msgstr "Dibab-dorn"
-
-#: network/netconnect.pm:69
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Kartenn ISDN diabarzh"
-
-#: network/netconnect.pm:80 printer/printerdrake.pm:1622 standalone/drakups:72
-#, c-format
-msgid "Manual configuration"
-msgstr "Kefluniadur-dorn"
-
-#: network/netconnect.pm:81 standalone/drakroam:121
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr "IP emgefreek (BOOTP/DHCP)"
-
-#: network/netconnect.pm:83
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
-msgstr "IP emgefreek (BOOTP/DHCP/Zeroconf)"
-
-#: network/netconnect.pm:86
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Komenad evit ar bed-all"
-
-#: network/netconnect.pm:88 standalone/drakconnect:563
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Komenad europat (EDSS1)"
-
-#: network/netconnect.pm:89 standalone/drakconnect:564
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Komenad ar broioù all\n"
-"N'eus kanol-D ebet (linennoù fermet)"
-
-#: network/netconnect.pm:103 standalone/harddrake2:328
-#: standalone/net_monitor:102 standalone/net_monitor:103
-#: standalone/net_monitor:108
-#, c-format
-msgid "unknown"
-msgstr "anavez"
-
-#: network/netconnect.pm:120 network/thirdparty.pm:220
-#, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "Modem Alcatel speedtouch USB"
-
-#: network/netconnect.pm:121
-#, c-format
-msgid "Sagem USB modem"
-msgstr "Modem Sagem USB"
-
-#: network/netconnect.pm:122
-#, c-format
-msgid "Bewan modem"
-msgstr "Modem Bewan"
-
-#: network/netconnect.pm:123
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr "Modem ECI Hi-Focus"
-
-#: network/netconnect.pm:127
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr "Komenad kefluniadur buhezek an ostiz (DHCP)"
-
-#: network/netconnect.pm:128
-#, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "Kefluniadur-dorn TCP/IP"
-
-#: network/netconnect.pm:129
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr "Komenad hent-riboul pik da bik (PPTP)"
-
-#: network/netconnect.pm:130
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr "PPP war Ethernet (PPPoE)"
-
-#: network/netconnect.pm:131
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr "PPP war ATM (PPPoA)"
-
-#: network/netconnect.pm:132
-#, c-format
-msgid "DSL over CAPI"
-msgstr "DSL a-us CAPI"
-
-#: network/netconnect.pm:136
-#, c-format
-msgid "Bridged Ethernet LLC"
-msgstr "Pont Ethernet LLC"
-
-#: network/netconnect.pm:137
-#, c-format
-msgid "Bridged Ethernet VC"
-msgstr "Pont Ethernet VC"
-
-#: network/netconnect.pm:138
-#, c-format
-msgid "Routed IP LLC"
-msgstr "IP LLC gant un hent"
-
-#: network/netconnect.pm:139
-#, c-format
-msgid "Routed IP VC"
-msgstr "IP VC gant un hent"
-
-#: network/netconnect.pm:140
-#, c-format
-msgid "PPPoA LLC"
-msgstr "PPPoA LLC"
-
-#: network/netconnect.pm:141
-#, c-format
-msgid "PPPoA VC"
-msgstr "PPPoA VC"
-
-#: network/netconnect.pm:145 standalone/drakconnect:498
-#, c-format
-msgid "Script-based"
-msgstr "Diazezet war ur skrid"
-
-#: network/netconnect.pm:146 standalone/drakconnect:498
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: network/netconnect.pm:147 standalone/drakconnect:498
-#, c-format
-msgid "Terminal-based"
-msgstr "Diazezet war un dermenell"
-
-#: network/netconnect.pm:148 standalone/drakconnect:498
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: network/netconnect.pm:149 standalone/drakconnect:498
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: network/netconnect.pm:250 standalone/drakconnect:56
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Kefluniadur ar rouedad hag internet"
-
-#: network/netconnect.pm:256
-#, c-format
-msgid "LAN connection"
-msgstr "Kevreadenn gant ur rouedad takad lec'hel"
-
-#: network/netconnect.pm:257 network/netconnect.pm:276 standalone/drakroam:182
-#: standalone/drakroam:220 standalone/drakroam:223
-#, c-format
-msgid "Wireless connection"
-msgstr "Kevreadenn hep neud"
-
-#: network/netconnect.pm:258
-#, c-format
-msgid "ADSL connection"
-msgstr "Kevreadenn ADSL"
-
-#: network/netconnect.pm:259
-#, c-format
-msgid "Cable connection"
-msgstr "Kevreadenn gant ur fun"
-
-#: network/netconnect.pm:260
-#, c-format
-msgid "ISDN connection"
-msgstr "Kevreadenn ISDN"
-
-#: network/netconnect.pm:261
-#, c-format
-msgid "Modem connection"
-msgstr "Kevreadenn gant ur modem"
-
-#: network/netconnect.pm:262
-#, c-format
-msgid "DVB connection"
-msgstr "Kevreadenn DVB"
-
-#: network/netconnect.pm:272
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Dibabit an kevreadenn da kefluniañ"
-
-#: network/netconnect.pm:287 network/netconnect.pm:786
-#, c-format
-msgid "Connection Configuration"
-msgstr "Kefluniañ ar gevreadenn"
-
-#: network/netconnect.pm:287 network/netconnect.pm:787
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Lakaat pe gwiriekaat an dachenn a-is"
-
-#: network/netconnect.pm:290
-#, c-format
-msgid "Your personal phone number"
-msgstr "Ho niverenn pellgomz"
-
-#: network/netconnect.pm:291 network/netconnect.pm:790
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Anv ar pourchaser (ex pourchaser.net)"
-
-#: network/netconnect.pm:292 standalone/drakconnect:493
-#, c-format
-msgid "Provider phone number"
-msgstr "Niverenn bellgomz ar pourchaser"
-
-#: network/netconnect.pm:293
-#, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "DNS 1 ar pourchaser (da zilenn)"
-
-#: network/netconnect.pm:294
-#, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "DNS 2 ar pourchaser (da zilenn)"
-
-#: network/netconnect.pm:295 standalone/drakconnect:444
-#, c-format
-msgid "Dialing mode"
-msgstr "Mod an sifrennadur"
-
-#: network/netconnect.pm:296 standalone/drakconnect:449
-#: standalone/drakconnect:517
-#, c-format
-msgid "Connection speed"
-msgstr "Tizh ar gevreadenn"
-
-#: network/netconnect.pm:297 standalone/drakconnect:454
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Amzer-hont a ar gevreadenn (eil)"
-
-#: network/netconnect.pm:298 network/netconnect.pm:323
-#: network/netconnect.pm:793 standalone/drakconnect:491
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Kont (anv an arveriad)"
-
-#: network/netconnect.pm:299 network/netconnect.pm:324
-#: network/netconnect.pm:794 standalone/drakconnect:492
-#, c-format
-msgid "Account Password"
-msgstr "Tremenger an den"
-
-#: network/netconnect.pm:300 standalone/drakconnect:554
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ kartenn"
-
-#: network/netconnect.pm:301 standalone/drakconnect:555
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Memor kartenn (DMA)"
-
-#: network/netconnect.pm:302 standalone/drakconnect:556
-#, c-format
-msgid "Card IO"
-msgstr "IO kartenn"
-
-#: network/netconnect.pm:303 standalone/drakconnect:557
-#, c-format
-msgid "Card IO_0"
-msgstr "IO_0 kartenn"
-
-#: network/netconnect.pm:304
-#, c-format
-msgid "Card IO_1"
-msgstr "IO_1 kartenn"
-
-#: network/netconnect.pm:319
-#, c-format
-msgid "Cable: account options"
-msgstr "Fun : Dibarzhoù ar gont"
-
-#: network/netconnect.pm:322
-#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr "Implij BPALogin (red eo evit Telstra)"
-
-#: network/netconnect.pm:348 network/netconnect.pm:670
-#: network/netconnect.pm:826 network/netconnect.pm:1170
-#, c-format
-msgid "Select the network interface to configure:"
-msgstr "Dibabit an etrefas rouedad a kefluniañ :"
-
-#: network/netconnect.pm:350 network/netconnect.pm:385
-#: network/netconnect.pm:671 network/netconnect.pm:828 network/shorewall.pm:70
-#: standalone/drakconnect:714
-#, c-format
-msgid "Net Device"
-msgstr "Trobarzhell ar rouedad"
-
-#: network/netconnect.pm:351 network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr "Modem ISDN diavaez"
-
-#: network/netconnect.pm:384 standalone/harddrake2:215
-#, c-format
-msgid "Select a device!"
-msgstr "Dibabit un drobarzhell !"
-
-#: network/netconnect.pm:393 network/netconnect.pm:403
-#: network/netconnect.pm:413 network/netconnect.pm:446
-#: network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Kefluniadur ISDN"
-
-#: network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Peseurt kartenn hoc'h eus ?"
-
-#: network/netconnect.pm:404
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "Kenderc'hel"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "Dilaoskel"
-
-#: network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Pehini eo ho c'hartenn ISDN ?"
-
-#: network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-
-#: network/netconnect.pm:434 standalone/drakconnect:109 standalone/drakups:249
-#: standalone/harddrake2:133
-#, c-format
-msgid "Driver"
-msgstr "Sturier"
-
-#: network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Pe seurt komenad a vennit imlijout ?"
-
-#: network/netconnect.pm:448 standalone/drakconnect:109
-#: standalone/drakconnect:300 standalone/drakconnect:562
-#: standalone/drakids:207 standalone/drakvpn:1128
-#, c-format
-msgid "Protocol"
-msgstr "Komenad"
-
-#: network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"Dibabit hor pourchaser.\n"
-"Ma n'eo ket e-barzh ar roll, dibabit Unlisted."
-
-#: network/netconnect.pm:462 network/netconnect.pm:556
-#: network/netconnect.pm:707
-#, c-format
-msgid "Provider:"
-msgstr "Pourchaser :"
-
-#: network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"N'eus ket moaien da implij ho modem gant ar reizhiad.\n"
-"Sell ouzh http://www.linmodems.org"
-
-#: network/netconnect.pm:490
-#, c-format
-msgid "Select the modem to configure:"
-msgstr "Dibabit ar modem a kefluniañ :"
-
-#: network/netconnect.pm:525
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-
-#: network/netconnect.pm:554
-#, c-format
-msgid "Select your provider:"
-msgstr "Dibabit ho pourchaser :"
-
-#: network/netconnect.pm:578
-#, c-format
-msgid "Dialup: account options"
-msgstr "Sifrennañ : Dibarzhoù ar gont"
-
-#: network/netconnect.pm:581
-#, c-format
-msgid "Connection name"
-msgstr "Anv ar gevreadenn"
-
-#: network/netconnect.pm:582
-#, c-format
-msgid "Phone number"
-msgstr "Niverenn bellgomz"
-
-#: network/netconnect.pm:583
-#, c-format
-msgid "Login ID"
-msgstr "Anv ereañ"
-
-#: network/netconnect.pm:598 network/netconnect.pm:631
-#, c-format
-msgid "Dialup: IP parameters"
-msgstr "Sifrennañ : Dibarzhoù IP"
-
-#: network/netconnect.pm:601
-#, c-format
-msgid "IP parameters"
-msgstr "Kefluniadur IP"
-
-#: network/netconnect.pm:602 network/netconnect.pm:941
-#: printer/printerdrake.pm:460 standalone/drakconnect:109
-#: standalone/drakconnect:316 standalone/drakconnect:882
-#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:284
-#, c-format
-msgid "IP address"
-msgstr "Chomlec'h IP"
-
-#: network/netconnect.pm:603
-#, c-format
-msgid "Subnet mask"
-msgstr "Maskl rannrouedad"
-
-#: network/netconnect.pm:615
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr "Sifrennañ : Dibarzhoù DNS"
-
-#: network/netconnect.pm:618
-#, c-format
-msgid "DNS"
-msgstr "DNS"
-
-#: network/netconnect.pm:619
-#, c-format
-msgid "Domain name"
-msgstr "Anv an domani"
-
-#: network/netconnect.pm:620 network/netconnect.pm:791
-#: standalone/drakconnect:992
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Servijer DNS kentañ (da zilenn)"
-
-#: network/netconnect.pm:621 network/netconnect.pm:792
-#: standalone/drakconnect:993
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Eil servijer DNS (da zilenn)"
-
-#: network/netconnect.pm:622
-#, c-format
-msgid "Set hostname from IP"
-msgstr "Lakaat anv ostiz eus an IP"
-
-#: network/netconnect.pm:634 standalone/drakconnect:327
-#, c-format
-msgid "Gateway"
-msgstr "Treuzell"
-
-#: network/netconnect.pm:635 standalone/drakroam:124
-#, c-format
-msgid "Gateway IP address"
-msgstr "Chomlec'h IP an dreuzell"
-
-#: network/netconnect.pm:670
-#, c-format
-msgid "ADSL configuration"
-msgstr "Kefluniadur ADSL"
-
-#: network/netconnect.pm:705
-#, c-format
-msgid "Please choose your ADSL provider"
-msgstr "Dibabit ho pourchaser ADSL, mar plij"
-
-#: network/netconnect.pm:735
-#, c-format
-msgid ""
-"Please choose your DSL connection type.\n"
-"If you do not know it, keep the preselected type."
-msgstr ""
-"Dibabit seurt ho kevreadenn DSL mar plij.\n"
-"Ma n'ouiez ket, mir an hini dibabet."
-
-#: network/netconnect.pm:738
-#, c-format
-msgid "ADSL connection type:"
-msgstr "Peseurt kevreadenn ADSL :"
-
-#: network/netconnect.pm:796
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr "ID an hent galloudel (VPI) :"
-
-#: network/netconnect.pm:797
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr "ID al liamm galloudel (VPI) :"
-
-#: network/netconnect.pm:800
-#, c-format
-msgid "Encapsulation:"
-msgstr "Enframmadur :"
-
-#: network/netconnect.pm:830
-#, c-format
-msgid "Manually load a driver"
-msgstr "Assevel-dorn ur sturier"
-
-#: network/netconnect.pm:831
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr "Implijit ur sturier Windows (gant ndiswrapper)"
-
-#: network/netconnect.pm:896
-#, c-format
-msgid "Zeroconf hostname resolution"
-msgstr ""
-
-#: network/netconnect.pm:897 network/netconnect.pm:928
-#, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "O kefluniañ an drobarzhell rouedad %s (sturier : %s)"
-
-#: network/netconnect.pm:898
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use"
-msgstr ""
-
-#: network/netconnect.pm:929
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Skrivit ar c'hefluniadur IP evit ar benveg-mañ mar plij.\n"
-"Pep mellad a zlefe bezañ skrivet evel ur chomlec'h IP e stumm\n"
-"sifroù dekvel pikoù etrezo (da skouer 1.2.3.4)."
-
-#: network/netconnect.pm:936 standalone/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Adtapout an anv ostiz eus ar chomlec'h DHCP"
-
-#: network/netconnect.pm:937 standalone/drakconnect:375
-#, c-format
-msgid "DHCP host name"
-msgstr "Anv ostiz DHCP"
-
-#: network/netconnect.pm:942 standalone/drakconnect:321
-#: standalone/drakconnect:883 standalone/drakgw:181
-#, c-format
-msgid "Netmask"
-msgstr "Maskl rouedad"
-
-#: network/netconnect.pm:944 standalone/drakconnect:437
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr ""
-
-#: network/netconnect.pm:945 standalone/drakconnect:438
-#, c-format
-msgid "Network Hotplugging"
-msgstr ""
-
-#: network/netconnect.pm:947 standalone/drakconnect:432
-#, c-format
-msgid "Start at boot"
-msgstr "Loc'hañ pa loc'hañ an urzhiataer"
-
-#: network/netconnect.pm:949 standalone/drakconnect:460
-#, c-format
-msgid "Metric"
-msgstr "Metrik"
-
-#: network/netconnect.pm:950
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr "Bevaat an hent-riboul IPv6 dre IPv4"
-
-#: network/netconnect.pm:952 standalone/drakconnect:369
-#: standalone/drakconnect:886
-#, c-format
-msgid "DHCP client"
-msgstr "Kliant DHCP"
-
-#: network/netconnect.pm:954 standalone/drakconnect:379
-#, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "Amzer-hont DHCP (eil)"
-
-#: network/netconnect.pm:955 standalone/drakconnect:382
-#, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "Adtapout ar servijerien DNS eus DHCP"
-
-#: network/netconnect.pm:956 standalone/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr "Adtapout ar servijerien YP eus DHCP"
-
-#: network/netconnect.pm:957 standalone/drakconnect:384
-#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr "Adtapout ar servijerien NTPD eus DHCP"
-
-#: network/netconnect.pm:965 printer/printerdrake.pm:1876
-#: standalone/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Er furmad 1.2.3.4 e tlefe bezañ ar chomlec'h IP"
-
-#: network/netconnect.pm:969 standalone/drakconnect:680
-#, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "Er furmad 255.255.224.0 e tlefe bezañ ar maskl rouedad"
-
-#: network/netconnect.pm:973
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr "Diwallit : strizh eo ar chomlec'h IP %s boazamant !"
-
-#: network/netconnect.pm:978 standalone/drakTermServ:1927
-#: standalone/drakTermServ:1928 standalone/drakTermServ:1929
-#, c-format
-msgid "%s already in use\n"
-msgstr "implijet eo %s c'hoazh\n"
-
-#: network/netconnect.pm:1018
-#, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "Dibabit ur sturier ndiswrapper"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr "Implijit ar sturier ndiswrapper %s"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Install a new driver"
-msgstr "Staliañ ur sturier nevez"
-
-#: network/netconnect.pm:1032
-#, c-format
-msgid "Select a device:"
-msgstr "Dibabit un drobarzhell :"
-
-#: network/netconnect.pm:1061
-#, c-format
-msgid "Please enter the wireless parameters for this card:"
-msgstr "Roit an dibarzhoù ar gartenn-hep-neud-mañ mar plij :"
-
-#: network/netconnect.pm:1064 standalone/drakconnect:404
-#: standalone/drakroam:52
-#, c-format
-msgid "Operating Mode"
-msgstr "Mod labour"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Ad-hoc"
-msgstr "Ad-hoc"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Managed"
-msgstr "Meret"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Master"
-msgstr "Mestr"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Repeater"
-msgstr "Adkaser"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Secondary"
-msgstr "Eil derez"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Auto"
-msgstr "Emgefreek"
-
-#: network/netconnect.pm:1068 standalone/drakconnect:405
-#: standalone/drakroam:115
-#, c-format
-msgid "Network name (ESSID)"
-msgstr "Anv ar rouedad (ESSID)"
-
-#: network/netconnect.pm:1069 standalone/drakroam:116
-#, c-format
-msgid "Encryption mode"
-msgstr "Mod enrinegadur"
-
-#: network/netconnect.pm:1074
-#, c-format
-msgid "Allow access point roaming"
-msgstr "Aotreañ ar c'hevreadennoù baleantour"
-
-#: network/netconnect.pm:1076 standalone/drakconnect:406
-#, c-format
-msgid "Network ID"
-msgstr "Niv ar rouedad"
-
-#: network/netconnect.pm:1077 standalone/drakconnect:407
-#, c-format
-msgid "Operating frequency"
-msgstr "Frekañs labour"
-
-#: network/netconnect.pm:1078 standalone/drakconnect:408
-#, c-format
-msgid "Sensitivity threshold"
-msgstr ""
-
-#: network/netconnect.pm:1079 standalone/drakconnect:409
-#, c-format
-msgid "Bitrate (in b/s)"
-msgstr "Feur (bit/e)"
-
-#: network/netconnect.pm:1080 standalone/drakconnect:420
-#, c-format
-msgid "RTS/CTS"
-msgstr "RTS/CTS"
-
-#: network/netconnect.pm:1081
-#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
-
-#: network/netconnect.pm:1088 standalone/drakconnect:421
-#, c-format
-msgid "Fragmentation"
-msgstr ""
-
-#: network/netconnect.pm:1089 standalone/drakconnect:422
-#, c-format
-msgid "iwconfig command extra arguments"
-msgstr "arventennoù ouzhpenn an urzhiad iwconfig"
-
-#: network/netconnect.pm:1090
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-
-#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1097 standalone/drakconnect:423
-#, c-format
-msgid "iwspy command extra arguments"
-msgstr "arventennoù ouzhpenn an urzhiad iwspy"
-
-#: network/netconnect.pm:1098
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-
-#: network/netconnect.pm:1107 standalone/drakconnect:424
-#, c-format
-msgid "iwpriv command extra arguments"
-msgstr "arventennoù ouzhpenn an urzhiad iwpriv"
-
-#: network/netconnect.pm:1108
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-
-#: network/netconnect.pm:1123
-#, c-format
-msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
-msgstr ""
-
-#: network/netconnect.pm:1127
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-
-#: network/netconnect.pm:1170
-#, c-format
-msgid "DVB configuration"
-msgstr "Kefluniadur DVB"
-
-#: network/netconnect.pm:1171
-#, c-format
-msgid "DVB Adapter"
-msgstr "Kartenn DVB"
-
-#: network/netconnect.pm:1188
-#, c-format
-msgid "DVB adapter settings"
-msgstr "Kefluniadur ar gartenn DVB"
-
-#: network/netconnect.pm:1191
-#, c-format
-msgid "Adapter card"
-msgstr "Kartenn rouedad"
-
-#: network/netconnect.pm:1192
-#, c-format
-msgid "Net demux"
-msgstr "Net demux"
-
-#: network/netconnect.pm:1193
-#, c-format
-msgid "PID"
-msgstr "PID"
-
-#: network/netconnect.pm:1221
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Roit ho anv ostiz mar plij.\n"
-"Un anv peurzoareet a zlefe bezañ hini o ostiz,\n"
-"evel « mabenveg.mastal.makomp.com ».\n"
-"Gallout a rit ivez reiñ chomlec'h IP an dreuzell m'hoc'h eus unan."
-
-#: network/netconnect.pm:1226
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr ""
-
-#: network/netconnect.pm:1228 standalone/drakconnect:991
-#, c-format
-msgid "Host name (optional)"
-msgstr "Anv ostiz (diret)"
-
-#: network/netconnect.pm:1228 standalone/drakhosts:197
-#, c-format
-msgid "Host name"
-msgstr "Anv an ostiz"
-
-#: network/netconnect.pm:1230
-#, c-format
-msgid "DNS server 1"
-msgstr "Servijer DNS 1"
-
-#: network/netconnect.pm:1231
-#, c-format
-msgid "DNS server 2"
-msgstr "Servijer DNS 2"
-
-#: network/netconnect.pm:1232
-#, c-format
-msgid "DNS server 3"
-msgstr "Servijer DNS 3"
-
-#: network/netconnect.pm:1233
-#, c-format
-msgid "Search domain"
-msgstr "Domani glask"
-
-#: network/netconnect.pm:1234
-#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr ""
-
-#: network/netconnect.pm:1235
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Treuzell (ex : %s)"
-
-#: network/netconnect.pm:1237
-#, c-format
-msgid "Gateway device"
-msgstr "Trobarzhell an dreuzell"
-
-#: network/netconnect.pm:1246
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "Er furmad 1.2.3.4 e tlefe bezañ chomlec'h ar servijer DNS"
-
-#: network/netconnect.pm:1251 standalone/drakconnect:685
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Er furmad 1.2.3.4 e tlefe bezañ chomlec'h an dreuzell"
-
-#: network/netconnect.pm:1264
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-
-#: network/netconnect.pm:1268
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Anv ostiz Zeroconf"
-
-#: network/netconnect.pm:1271
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr ""
-
-#: network/netconnect.pm:1281
-#, c-format
-msgid "Do you want to allow users to start the connection?"
-msgstr "Mennout a rit aotreañ an dud da lañsañ ar gevreadenn ?"
-
-#: network/netconnect.pm:1294
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Mennout a rit lañsañ ar gevradenn pa loc'hañ ?"
-
-#: network/netconnect.pm:1310
-#, c-format
-msgid "Automatically at boot"
-msgstr "Ent emgefreek pa loc'ho"
-
-#: network/netconnect.pm:1312
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr "Dre implig an arloadig rouedad e barlenn ar reizhiad"
-
-#: network/netconnect.pm:1314
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr ""
-
-#: network/netconnect.pm:1323
-#, c-format
-msgid "How do you want to dial this connection?"
-msgstr "Peanos mennit o sifrennañ ar gevradenn-mañ ?"
-
-#: network/netconnect.pm:1336
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Fellout a ra deoc'h klask da gevreañ ouzh an Internet bremañ ?"
-
-#: network/netconnect.pm:1344 standalone/drakconnect:1023
-#, c-format
-msgid "Testing your connection..."
-msgstr "O klask da lakaat ho gevradenn ..."
-
-#: network/netconnect.pm:1369
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Kevreet ouzh an Internet eo ho reizhiad bremañ."
-
-#: network/netconnect.pm:1370
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr ""
-
-#: network/netconnect.pm:1371
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"N'eo ket war ar reizhiad ar stumm da gevreañ ouzh internet.\n"
-"Klaskit adgefluniañ ho gevreadenn."
-
-#: network/netconnect.pm:1386
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-"Gourc'hemennoù, echu eo kefluniadur ar rouedad hag internet.\n"
-"\n"
-
-#: network/netconnect.pm:1389
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-
-#: network/netconnect.pm:1390
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-
-#: network/netconnect.pm:1402
-#, c-format
-msgid "(detected on port %s)"
-msgstr "(kavet war ar porzh %s)"
-
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected %s)"
-msgstr "(kavet %s)"
-
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected)"
-msgstr "(kavet)"
-
-#: network/netconnect.pm:1405
-#, c-format
-msgid "Network Configuration"
-msgstr "Kefluniadur ar rouedad"
-
-#: network/netconnect.pm:1406
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-
-#: network/netconnect.pm:1409
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr ""
-"Red eo da adloc'hañ ar rouedad. Fellout a ra deoc'h adloc'hañ anezhañ ?"
-
-#: network/netconnect.pm:1410
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Degouezhet ez eus ur fazi en ur adloc'hañ ar rouedad :\n"
-"\n"
-"%s"
-
-#: network/netconnect.pm:1411
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-"Emaomp o vont da gefluniañ ar gevreadenn %s.\n"
-"\n"
-"\n"
-"gwaskit « %s » evit kendelc'her"
-
-#: network/netconnect.pm:1412
-#, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr ""
-"Echu eo ar gefluniadur, Ha fellout a ra deoc'h da arloañ ar gefluniadur-mañ ?"
-
-#: network/netconnect.pm:1413
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Bez eus meur a hentoù evit mont war Internet,\n"
-"Dibabit an hini e fell deoc'h implij.\n"
-"\n"
-
-#: network/netconnect.pm:1414
-#, c-format
-msgid "Internet connection"
-msgstr "Kevreadenn ouzh an internet"
-
-#: network/netconnect.pm:1428
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-"Degouezhet ez eus ur fazi dic'hortoz :\n"
-"%s"
-
-#: network/network.pm:411
-#, c-format
-msgid "Proxies configuration"
-msgstr "Kefluniadur proksioù"
-
-#: network/network.pm:412
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-"Amañ e c'hellit kefluniañ ho prokis (da skouer http://"
-"ma_servijer_krubuilh:8080) "
-
-#: network/network.pm:413
-#, c-format
-msgid "HTTP proxy"
-msgstr "Proksi HTTP"
-
-#: network/network.pm:414
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr "Implij ur proksi HTTP evit ar c'hevreadennoù HTTPS"
-
-#: network/network.pm:415
-#, c-format
-msgid "HTTPS proxy"
-msgstr "Proksi HTTPS"
-
-#: network/network.pm:416
-#, c-format
-msgid "FTP proxy"
-msgstr "Proksi FTP"
-
-#: network/network.pm:420
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "http://... a zlefe bezañ ar proksi"
-
-#: network/network.pm:421
-#, c-format
-msgid "Proxy should be https?://..."
-msgstr "https?://... a zlefe bezañ ar proksi"
-
-#: network/network.pm:422
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "« http: » pe « ftp: » a zlefe bezañ ar proksi"
-
-#: network/shorewall.pm:55
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-"Roit anv an etrefas kevreet ouzh internet.\n"
-"\n"
-"Dre skouer :\n"
-"\t\tppp+ evit ur model pe ul linenn DSL, \n"
-"\t\teth0 pe eth1 evit ur gevreadenn gant ur fun,\n"
-"\t\tippp+ evit ur gevreadenn ISDN.\n"
-
-#: network/thirdparty.pm:232
-#, c-format
-msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
-msgstr "Eilañ microcod Alcatel e /usr/share/speedtouch/mgmt.o"
-
-#: network/thirdparty.pm:241
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-
-#: network/thirdparty.pm:321
-#, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "Ne m'eus ket staliañ ar pakadoù (%s) !"
-
-#: network/thirdparty.pm:329
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr ""
-
-#: network/thirdparty.pm:330
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-
-#: network/thirdparty.pm:332
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-"Moien zo da staliañ ar restroù red digant an URL-mañ :\n"
-"%s"
-
-#: network/thirdparty.pm:372
-#, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "Ne m'eus ket bet kavout « %s » war ho reizhiad Windows !"
-
-#: network/thirdparty.pm:374
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr "Ne m'eus ket reizhiad Windows dinoet ebet !"
-
-#: network/thirdparty.pm:384
-#, c-format
-msgid "Insert floppy"
-msgstr "Lakait ur bladennig"
-
-#: network/thirdparty.pm:385
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"Lakait ur bladennig el lenner %s gant %s er renkell gwrizienn ha neuze "
-"gwaskit « %s »"
-
-#: network/thirdparty.pm:395
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Fazi moned ouzh ar bladennig, ne m'eus ket mountañ an drobarzhell %s"
-
-#: network/thirdparty.pm:405
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-
-#: network/thirdparty.pm:409 network/thirdparty.pm:411
-#, c-format
-msgid "Use a floppy"
-msgstr "Implijit ur bladennig"
-
-#: network/thirdparty.pm:409
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Implij ma farzhadur Windows"
-
-#: network/thirdparty.pm:419
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr ""
-
-#: network/thirdparty.pm:424 standalone/drakautoinst:250
-#: standalone/drakvpn:888 standalone/scannerdrake:422
-#, c-format
-msgid "Congratulations!"
-msgstr "Gourc'hemennoù !"
-
-#: network/thirdparty.pm:424
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr ""
-
-#: network/thirdparty.pm:493
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr "O klask ar poelladoù hag ar sturieroù a zo red ..."
-
-#: network/thirdparty.pm:498
-#, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "Gortozit mar plij, o seveniñ urzhiadoù kefluniañ an trobarzhell ..."
-
-#: network/wireless.pm:8
-#, c-format
-msgid "Open WEP"
-msgstr "WEP digor"
-
-#: network/wireless.pm:9
-#, c-format
-msgid "Restricted WEP"
-msgstr "WEP serr"
-
-#: network/wireless.pm:10
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr ""
-
-#: partition_table.pm:391
+#: partition_table.pm:390
#, c-format
msgid "mount failed: "
msgstr "marc'hañ sac'het : "
-#: partition_table.pm:496
+#: partition_table.pm:500
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Ne m'eus ket implij ar parzhadurioù astennet gant ar reizhiad-mañ"
-#: partition_table.pm:514
+#: partition_table.pm:518
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
@@ -10466,22 +4808,27 @@ msgstr ""
"Fiñval ar parzhadurioù kentañ derez evit ma vo an toull stok ouzh ar "
"parzhadurioù astennet eo an diskoulm"
-#: partition_table.pm:605
+#: partition_table.pm:597
+#, c-format
+msgid "Error reading file %s"
+msgstr "Fazi en ur lenn ar restr %s"
+
+#: partition_table.pm:604
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Assevel adalek ar restr %s sac'het %s"
-#: partition_table.pm:607
+#: partition_table.pm:606
#, c-format
msgid "Bad backup file"
msgstr "Restr gwareziñ siek"
-#: partition_table.pm:627
+#: partition_table.pm:626
#, c-format
msgid "Error writing to file %s"
msgstr "Fazi en ur skrivañ er restr %s"
-#: partition_table/raw.pm:253
+#: partition_table/raw.pm:264
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
@@ -10490,3074 +4837,48 @@ msgid ""
"data."
msgstr ""
-#: pkgs.pm:21
-#, c-format
-msgid "must have"
-msgstr "a rankfec'h kaout"
-
-#: pkgs.pm:22
-#, c-format
-msgid "important"
-msgstr "a-bouez"
-
-#: pkgs.pm:23
-#, c-format
-msgid "very nice"
-msgstr "brav-tre"
-
-#: pkgs.pm:24
-#, c-format
-msgid "nice"
-msgstr "brav"
-
-#: pkgs.pm:25
-#, c-format
-msgid "maybe"
-msgstr "marteze"
-
-#: pkgs.pm:474
-#, c-format
-msgid "Downloading file %s..."
-msgstr "Oc'h enkargañ ar restr %s ..."
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on %s)"
-msgstr "(war %s)"
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on this machine)"
-msgstr "(war ar reizhiad-mañ)"
-
-#: printer/cups.pm:117 standalone/printerdrake:200
-#, c-format
-msgid "Configured on other machines"
-msgstr "Kefluniañ reizhiadoù all"
-
-#: printer/cups.pm:119
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "War ar servijer CUPS « %s »"
-
-#: printer/cups.pm:119 printer/printerdrake.pm:4909
-#: printer/printerdrake.pm:4919 printer/printerdrake.pm:5078
-#: printer/printerdrake.pm:5089 printer/printerdrake.pm:5303
-#, c-format
-msgid " (Default)"
-msgstr " (Dre ziouer)"
-
-#: printer/data.pm:67
-#, c-format
-msgid "PDQ - Print, Do not Queue"
-msgstr "PDQ - Moulañ hep lostañ"
-
-#: printer/data.pm:68
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: printer/data.pm:80
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: printer/data.pm:81
-#, c-format
-msgid "LPD"
-msgstr "LPD"
-
-#: printer/data.pm:102
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR nevez"
-
-#: printer/data.pm:103
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
-
-#: printer/data.pm:128
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: printer/data.pm:158
-#, c-format
-msgid "CUPS - Common Unix Printing System (remote server)"
-msgstr "CUPS - Common Unix Printing System (servijer a-bell)"
-
-#: printer/data.pm:159
-#, c-format
-msgid "Remote CUPS"
-msgstr "CUPS a-bell"
-
-#: printer/detect.pm:168 printer/detect.pm:263 printer/detect.pm:498
-#: printer/detect.pm:571 printer/main.pm:330 printer/main.pm:692
-#: printer/main.pm:1815 printer/printerdrake.pm:960
-#: printer/printerdrake.pm:1120 printer/printerdrake.pm:2448
-#: printer/printerdrake.pm:4004
-#, c-format
-msgid "Unknown model"
-msgstr "Gobari anavez"
-
-#: printer/main.pm:24
-#, c-format
-msgid "Local printer"
-msgstr "Moullerez lec'hel"
-
-#: printer/main.pm:25
-#, c-format
-msgid "Remote printer"
-msgstr "Moullerez a-bell"
-
-#: printer/main.pm:26
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Moullerez war ar Servijer CUPS a-bell"
-
-#: printer/main.pm:27 printer/printerdrake.pm:1360
-#: printer/printerdrake.pm:1899
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Moullerez war ar Servijer lpd a-bell"
-
-#: printer/main.pm:28
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Moullerez rouedad (TCP/Socket)"
-
-#: printer/main.pm:29
-#, c-format
-msgid "Printer on SMB/Windows server"
-msgstr "Moullerez war ur servijer SMB/Windows"
-
-#: printer/main.pm:30
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Moullerez war ur servijer NetWare"
-
-#: printer/main.pm:31 printer/printerdrake.pm:1903
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Roit URI trobarzhell a voullerez"
-
-#: printer/main.pm:32
-#, c-format
-msgid "Pipe job into a command"
-msgstr ""
-
-#: printer/main.pm:43
-#, c-format
-msgid "recommended"
-msgstr "erbedet"
-
-#: printer/main.pm:355 standalone/printerdrake:199
-#, c-format
-msgid "Configured on this machine"
-msgstr "Kefluniet ar reizhiad-mañ"
-
-#: printer/main.pm:361 printer/printerdrake.pm:1445
-#, c-format
-msgid " on parallel port #%s"
-msgstr " ouzh ar porzh kenstur #%s"
-
-#: printer/main.pm:364 printer/printerdrake.pm:1448
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", Mouluriez USB #%s"
-
-#: printer/main.pm:366
-#, c-format
-msgid ", USB printer"
-msgstr ", Mouluriez USB"
-
-#: printer/main.pm:370
-#, c-format
-msgid ", HP printer on a parallel port"
-msgstr ", moullerez HP ouzh ar porzh kenstur"
-
-#: printer/main.pm:372
-#, c-format
-msgid ", HP printer on USB"
-msgstr ", Moullerez HP ouzh USB"
-
-#: printer/main.pm:374
-#, c-format
-msgid ", HP printer on HP JetDirect"
-msgstr ", moullerez HP war HP JetDirect"
-
-#: printer/main.pm:376
-#, c-format
-msgid ", HP printer"
-msgstr ", Moullerez HP"
-
-#: printer/main.pm:382
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ""
-
-#: printer/main.pm:385
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ""
-
-#: printer/main.pm:387
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: printer/main.pm:389
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: printer/main.pm:391
-#, c-format
-msgid ", multi-function device"
-msgstr ""
-
-#: printer/main.pm:395
-#, c-format
-msgid ", printing to %s"
-msgstr ", o voulaañ da %s"
-
-#: printer/main.pm:398
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr " ouzh ar servijer LPD « %s », moullerez « %s »"
-
-#: printer/main.pm:401
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", Ostiz TCP/IP « %s », porzh %s"
-
-#: printer/main.pm:406
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr " ouzh ar Servijer SMB/Windows « %s », rannad « %s »"
-
-#: printer/main.pm:411
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " ouzh ar servijer Novell « %s », moullerez « %s »"
-
-#: printer/main.pm:414
-#, c-format
-msgid ", using command %s"
-msgstr ", oc'h implij an urzhiad %s"
-
-#: printer/main.pm:429
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Porzh kenstur #%s"
-
-#: printer/main.pm:432 printer/printerdrake.pm:1466
-#: printer/printerdrake.pm:1493 printer/printerdrake.pm:1508
-#, c-format
-msgid "USB printer #%s"
-msgstr "Moullerez USB #%s"
-
-#: printer/main.pm:434
-#, c-format
-msgid "USB printer"
-msgstr "Mouluriez USB"
-
-#: printer/main.pm:438
-#, c-format
-msgid "HP printer on a parallel port"
-msgstr "Moullerez HP ouzh ar porzh kenstur"
-
-#: printer/main.pm:440
-#, c-format
-msgid "HP printer on USB"
-msgstr "Moullerez HP ouzh USB"
-
-#: printer/main.pm:442
-#, c-format
-msgid "HP printer on HP JetDirect"
-msgstr "Moullerez HP war HP JetDirect"
-
-#: printer/main.pm:444
-#, c-format
-msgid "HP printer"
-msgstr "Moullerez HP"
-
-#: printer/main.pm:450
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr ""
-
-#: printer/main.pm:453
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr ""
-
-#: printer/main.pm:455
-#, c-format
-msgid "Multi-function device on USB"
-msgstr ""
-
-#: printer/main.pm:457
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr ""
-
-#: printer/main.pm:459
-#, c-format
-msgid "Multi-function device"
-msgstr ""
-
-#: printer/main.pm:463
-#, c-format
-msgid "Prints into %s"
-msgstr "Moulañ a ra da %s"
-
-#: printer/main.pm:466
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "Servijer LPD « %s », moullerez « %s »"
-
-#: printer/main.pm:469
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "Ostiz TCP/IP « %s », porzh « %s »"
-
-#: printer/main.pm:474
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "Servijer SMB/Windows « %s », rannad « %s »"
-
-#: printer/main.pm:479
-#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Servijer Novell « %s », moullerez « %s »"
-
-#: printer/main.pm:482
-#, c-format
-msgid "Uses command %s"
-msgstr "Implij a ra an urzhiad %s"
-
-#: printer/main.pm:484
-#, c-format
-msgid "URI: %s"
-msgstr "URI : %s"
-
-#: printer/main.pm:689 printer/printerdrake.pm:1047
-#: printer/printerdrake.pm:3142
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Moullerez diaoz (sturier ebet)"
-
-#: printer/main.pm:1309 printer/printerdrake.pm:211
-#: printer/printerdrake.pm:223
-#, c-format
-msgid "Local network(s)"
-msgstr "Rouedad(où) lec'hel"
-
-#: printer/main.pm:1311 printer/printerdrake.pm:227
-#, c-format
-msgid "Interface \"%s\""
-msgstr "C'hetal \"%s\""
-
-#: printer/main.pm:1313
-#, c-format
-msgid "Network %s"
-msgstr "Rouedad %s"
-
-#: printer/main.pm:1315
-#, c-format
-msgid "Host %s"
-msgstr "Ostiz %s"
-
-#: printer/main.pm:1344
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Porzh %s)"
-
-#: printer/main.pm:1945 printer/main.pm:2100
-#, c-format
-msgid "user-supplied"
-msgstr "roet gant an arveriad"
-
-#: printer/main.pm:1949 printer/main.pm:2104
-#, c-format
-msgid "NEW"
-msgstr "NEVEZ"
-
-#: printer/printerdrake.pm:24
-#, c-format
-msgid ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"decompressing the self-extracting '.exe' file with the 'unzip' utility and "
-"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
-"printer' directory. There it will be found by the automatic uploader script "
-"and uploaded whenever the printer is connected and turned on.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:67
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "Kefluniañ ar voullerez CUPS"
-
-#: printer/printerdrake.pm:68
-#, c-format
-msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessible by remote machines and by which remote machines."
-msgstr ""
-
-#: printer/printerdrake.pm:69
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:72 printer/printerdrake.pm:506
-#: printer/printerdrake.pm:4542
-#, c-format
-msgid "Remote CUPS server and no local CUPS daemon"
-msgstr "Servijer CUPS a-bell hep diaoul CUPS lec'hel"
-
-#: printer/printerdrake.pm:75
-#, c-format
-msgid "On"
-msgstr "Oberiant"
-
-#: printer/printerdrake.pm:77 printer/printerdrake.pm:498
-#: printer/printerdrake.pm:525
-#, c-format
-msgid "Off"
-msgstr "Dioberiant"
-
-#: printer/printerdrake.pm:78 printer/printerdrake.pm:507
-#, c-format
-msgid ""
-"In this mode the local CUPS daemon will be stopped and all printing requests "
-"go directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:84
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr ""
-
-#: printer/printerdrake.pm:89
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr ""
-
-#: printer/printerdrake.pm:94
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr ""
-
-#: printer/printerdrake.pm:96
-#, c-format
-msgid "Custom configuration"
-msgstr "Kefluniadur diouzhoc'h"
-
-#: printer/printerdrake.pm:101 standalone/scannerdrake:610
-#: standalone/scannerdrake:627
-#, c-format
-msgid "No remote machines"
-msgstr "Reizhiadoù a-bell ebet"
-
-#: printer/printerdrake.pm:112
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Servijeroù CUPS ouzhpenn : "
-
-#: printer/printerdrake.pm:119
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-
-#: printer/printerdrake.pm:127
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Mod moulañ ar skrid japanek"
-
-#: printer/printerdrake.pm:128
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in Japanese language. Only "
-"use this function if you really want to print text in Japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print Japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-
-#: printer/printerdrake.pm:135
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Reizhañ emgefreek ar gefluniadur CUPS"
-
-#: printer/printerdrake.pm:137
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-
-#: printer/printerdrake.pm:161 printer/printerdrake.pm:236
-#, c-format
-msgid "Sharing of local printers"
-msgstr "O rennañ ar moullerezioù lec'hel"
-
-#: printer/printerdrake.pm:162
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-
-#: printer/printerdrake.pm:173
-#, c-format
-msgid "Add host/network"
-msgstr "Ouzhpennañ un oztiz pe ur rouedad"
-
-#: printer/printerdrake.pm:179
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Kemmañ an ostiz/serjiver diuzet"
-
-#: printer/printerdrake.pm:188
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Lemel an ostiz/ar serjiver diuzet"
-
-#: printer/printerdrake.pm:219 printer/printerdrake.pm:229
-#: printer/printerdrake.pm:241 printer/printerdrake.pm:248
-#: printer/printerdrake.pm:279 printer/printerdrake.pm:297
-#, c-format
-msgid "IP address of host/network:"
-msgstr "Chomlec'h IP an ostiz/ar serjiver diuzet :"
-
-#: printer/printerdrake.pm:237
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr ""
-
-#: printer/printerdrake.pm:244
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Chomlec'h IP an ostiz/ar serjiver ebet."
-
-#: printer/printerdrake.pm:252
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "N'eo ket mat an IP roet evit an ostiz pe ar rouedad.\n"
-
-#: printer/printerdrake.pm:253 printer/printerdrake.pm:429
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Skouerioù IPioù mat :\n"
-
-#: printer/printerdrake.pm:277
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr "Er roll eo dija an ostiz/ar rouedad -se. N'eo ket bet ouzhpennet ur wech all.\n"
-
-#: printer/printerdrake.pm:346 printer/printerdrake.pm:416
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr ""
-
-#: printer/printerdrake.pm:347
-#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
-
-#: printer/printerdrake.pm:358
-#, c-format
-msgid "Add server"
-msgstr "Ouzhpennañ ar servijer"
-
-#: printer/printerdrake.pm:364
-#, c-format
-msgid "Edit selected server"
-msgstr "Kemmañ ar serjiver diuzet"
-
-#: printer/printerdrake.pm:373
-#, c-format
-msgid "Remove selected server"
-msgstr "Lemel ar servijer diuzet"
-
-#: printer/printerdrake.pm:417
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr "Roit chomlec'h IP ha porzh ar moullerezioù e fell deoc'h implij."
-
-#: printer/printerdrake.pm:418
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "631 vez implijet pa n'eus porzh roet ebet."
-
-#: printer/printerdrake.pm:422
-#, c-format
-msgid "Server IP missing!"
-msgstr "IP ar servijer zo manket !"
-
-#: printer/printerdrake.pm:428
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "N'eo ket mat an IP roet.\n"
-
-#: printer/printerdrake.pm:440 printer/printerdrake.pm:2133
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Red eo d'ar borzh bezañ un niver !"
-
-#: printer/printerdrake.pm:451
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "Er roll eo dija ar servijer-se. N'eo ket bet ouzhpennet ur wech all.\n"
-
-#: printer/printerdrake.pm:462 printer/printerdrake.pm:2160
-#: standalone/drakups:249 standalone/harddrake2:52
-#, c-format
-msgid "Port"
-msgstr "Porzh"
-
-#: printer/printerdrake.pm:495 printer/printerdrake.pm:511
-#: printer/printerdrake.pm:526 printer/printerdrake.pm:530
-#: printer/printerdrake.pm:536
-#, c-format
-msgid "On, Name or IP of remote server:"
-msgstr "Bev, IP pe anv ar servijer a-bell :"
-
-#: printer/printerdrake.pm:514 printer/printerdrake.pm:4551
-#: printer/printerdrake.pm:4617
-#, c-format
-msgid "CUPS server name or IP address missing."
-msgstr "Mankout a ra anv ar servijer CUPS pe ar chomlec'h IP."
-
-#: printer/printerdrake.pm:566 printer/printerdrake.pm:586
-#: printer/printerdrake.pm:811 printer/printerdrake.pm:880
-#: printer/printerdrake.pm:901 printer/printerdrake.pm:927
-#: printer/printerdrake.pm:1023 printer/printerdrake.pm:1065
-#: printer/printerdrake.pm:1075 printer/printerdrake.pm:1110
-#: printer/printerdrake.pm:2220 printer/printerdrake.pm:2490
-#: printer/printerdrake.pm:2524 printer/printerdrake.pm:2575
-#: printer/printerdrake.pm:2582 printer/printerdrake.pm:2621
-#: printer/printerdrake.pm:2663 printer/printerdrake.pm:2700
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2984
-#: printer/printerdrake.pm:2989 printer/printerdrake.pm:3137
-#: printer/printerdrake.pm:3248 printer/printerdrake.pm:3862
-#: printer/printerdrake.pm:3929 printer/printerdrake.pm:3978
-#: printer/printerdrake.pm:3981 printer/printerdrake.pm:4091
-#: printer/printerdrake.pm:4149 printer/printerdrake.pm:4221
-#: printer/printerdrake.pm:4242 printer/printerdrake.pm:4252
-#: printer/printerdrake.pm:4342 printer/printerdrake.pm:4437
-#: printer/printerdrake.pm:4443 printer/printerdrake.pm:4471
-#: printer/printerdrake.pm:4578 printer/printerdrake.pm:4687
-#: printer/printerdrake.pm:4707 printer/printerdrake.pm:4716
-#: printer/printerdrake.pm:4731 printer/printerdrake.pm:4932
-#: printer/printerdrake.pm:5407 printer/printerdrake.pm:5490
-#: standalone/printerdrake:75 standalone/printerdrake:590
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: printer/printerdrake.pm:567 printer/printerdrake.pm:4150
-#: printer/printerdrake.pm:4688
-#, c-format
-msgid "Reading printer data..."
-msgstr "O lenn roadoù ar moullerezioù ..."
-
-#: printer/printerdrake.pm:587
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "Oc'h adloc'hañ CUPS ..."
-
-#: printer/printerdrake.pm:614
-#, c-format
-msgid ""
-"Allow pop-up windows, printer setup and package installation may be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:616
-#, c-format
-msgid ""
-"No pop-up windows, printer setup and package installation cannot be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:622
-#, c-format
-msgid "Printer auto administration"
-msgstr "Merañ dre ardivink moullerezioù"
-
-#: printer/printerdrake.pm:623
-#, c-format
-msgid ""
-"Here you can configure printer administration tasks which should be done "
-"automatically."
-msgstr ""
-
-#: printer/printerdrake.pm:626
-#, c-format
-msgid "Do automatic configuration of new printers"
-msgstr ""
-
-#: printer/printerdrake.pm:627 printer/printerdrake.pm:641
-#, c-format
-msgid "when a USB printer is connected and turned on"
-msgstr "pa vez kevreet ha alumet ur voullerez USB"
-
-#: printer/printerdrake.pm:630
-#, c-format
-msgid "when Printerdrake is started"
-msgstr "pa loc'her Printerdrake"
-
-#: printer/printerdrake.pm:634
-#, c-format
-msgid "Mode for automatic printer setup:"
-msgstr ""
-
-#: printer/printerdrake.pm:640
-#, c-format
-msgid "Re-enable disabled printers"
-msgstr "Adbevaat ar moullerezioù marv"
-
-#: printer/printerdrake.pm:644
-#, c-format
-msgid "when the printing system is started"
-msgstr "pa loc'her Printerdrake ar reizhiad moullañ"
-
-#: printer/printerdrake.pm:680
-#, c-format
-msgid "Communication error handling for the printer \"%s\""
-msgstr ""
-
-#: printer/printerdrake.pm:682
-#, c-format
-msgid ""
-"Here you can configure how errors during the communication between your "
-"computer and the printer \"%s\" should be handled (for example if the "
-"printer is not turned on)."
-msgstr ""
-
-#: printer/printerdrake.pm:686
-#, c-format
-msgid "The number of retries should be an integer number of at least 1!"
-msgstr ""
-
-#: printer/printerdrake.pm:690
-#, c-format
-msgid "The delay between retries should be a positive integer number!"
-msgstr ""
-
-#: printer/printerdrake.pm:701
-#, c-format
-msgid "Do not disable the printer"
-msgstr "Ne varvit ket ar voullerez"
-
-#: printer/printerdrake.pm:704
-#, c-format
-msgid "Retry infinitely often"
-msgstr ""
-
-#: printer/printerdrake.pm:707
-#, c-format
-msgid "Number of retries"
-msgstr "Niver a daolioù"
-
-#: printer/printerdrake.pm:712
-#, c-format
-msgid "Delay between retries (in sec)"
-msgstr "Dale etre taolioù (eil)"
-
-#: printer/printerdrake.pm:745 printer/printerdrake.pm:765
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Dibabit lugerezh ar voullerez"
-
-#: printer/printerdrake.pm:746
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Penaos eo luget ar voullerez ?"
-
-#: printer/printerdrake.pm:748
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-
-#: printer/printerdrake.pm:751 printer/printerdrake.pm:4934
-#, c-format
-msgid ""
-"\n"
-"WARNING: No local network connection active, remote printers can neither be "
-"detected nor tested!"
-msgstr ""
-
-#: printer/printerdrake.pm:758
-#, c-format
-msgid ""
-"Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"
-msgstr ""
-
-#: printer/printerdrake.pm:760
-#, c-format
-msgid "Modify timeout for network printer auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:766
-#, c-format
-msgid "Enter the timeout for network printer auto-detection (in msec) here. "
-msgstr ""
-
-#: printer/printerdrake.pm:768
-#, c-format
-msgid ""
-"The longer you choose the timeout, the more reliable the detections of "
-"network printers will be, but the scan can take longer then, especially if "
-"there are many machines with local firewalls in the network. "
-msgstr ""
-
-#: printer/printerdrake.pm:772
-#, c-format
-msgid "The timeout must be a positive integer number!"
-msgstr ""
-
-#: printer/printerdrake.pm:811
-#, c-format
-msgid "Checking your system..."
-msgstr "O wiriekaat ho reizhiad ..."
-
-#: printer/printerdrake.pm:829
-#, c-format
-msgid "and one unknown printer"
-msgstr "hag unan voullerez dianav"
-
-#: printer/printerdrake.pm:831
-#, c-format
-msgid "and %d unknown printers"
-msgstr "ha %d voullerez dianav"
-
-#: printer/printerdrake.pm:835
-#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Ar moullerezioù a-heul\n"
-"\n"
-"%s%s\n"
-"zo kevreet war-eeun ouzh ho reizhiad"
-
-#: printer/printerdrake.pm:837
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Ar voullerez a-heul\n"
-"\n"
-"%s%s\n"
-"zo kevreet war-eeun ouzh ho reizhiad"
-
-#: printer/printerdrake.pm:838
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-"Ar voullerez a-heul\n"
-"\n"
-"%s%s\n"
-"zo kevreet war-eeun ouzh ho reizhiad"
-
-#: printer/printerdrake.pm:842
-#, c-format
-msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
-
-#: printer/printerdrake.pm:843
-#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
-
-#: printer/printerdrake.pm:846
-#, c-format
-msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr ""
-
-#: printer/printerdrake.pm:849
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr " (Bezit sur eo kefluniet ha loc'het ho pep moullerez).\n"
-
-#: printer/printerdrake.pm:862
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
-
-#: printer/printerdrake.pm:863
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr ""
-"Ha mennout a rit bevaat moulañ gant moullerezioù war ar rouedad lec'hel ?\n"
-
-#: printer/printerdrake.pm:865
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Mennout a rit moulañ gant ar moullerezioù-mañ ?\n"
-
-#: printer/printerdrake.pm:866
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Ha sur oc'h bezañ mennet da voulañ gant an ardinvink-mañ ?\n"
-
-#: printer/printerdrake.pm:867
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
-
-#: printer/printerdrake.pm:884
-#, c-format
-msgid "Do not setup printer automatically now, and never do it again"
-msgstr ""
-
-#: printer/printerdrake.pm:928
-#, c-format
-msgid "Searching for new printers..."
-msgstr "O klask moullerezioù nevez ..."
-
-#: printer/printerdrake.pm:976
-#, c-format
-msgid "Do not setup printer automatically again"
-msgstr ""
-
-#: printer/printerdrake.pm:983
-#, c-format
-msgid "New printers found"
-msgstr "Moullerezioù nevez kavet"
-
-#: printer/printerdrake.pm:984
-#, c-format
-msgid "New printer found"
-msgstr "Moullerez nevez kavet"
-
-#: printer/printerdrake.pm:986
-#, c-format
-msgid ""
-"The following new printers were found and Printerdrake can automatically set "
-"them up for you. If you do not want to have all of them set up, unselect the "
-"ones which should be skipped, or click \"Cancel\" to set up none of them.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:987
-#, c-format
-msgid ""
-"The following new printer was found and printerdrake can automatically set "
-"it up for you. If you do not want to have it set up, unselect it, or click "
-"\"Cancel\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:988
-#, c-format
-msgid ""
-"Note that for certain printer models additional packages need to be "
-"installed. So keep your installation media handy.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1024 printer/printerdrake.pm:1066
-#, c-format
-msgid "Configuring printer on %s..."
-msgstr "Kefluniañ ar voullerez war %s ..."
-
-#: printer/printerdrake.pm:1049
-#, c-format
-msgid "("
-msgstr "("
-
-#: printer/printerdrake.pm:1050
-#, c-format
-msgid " on "
-msgstr " war "
-
-#: printer/printerdrake.pm:1051 standalone/scannerdrake:137
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: printer/printerdrake.pm:1056 printer/printerdrake.pm:3149
-#, c-format
-msgid "Printer model selection"
-msgstr "Choaz gobari ar voullerez"
-
-#: printer/printerdrake.pm:1057 printer/printerdrake.pm:3150
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Peseurt moullerez hoc'h eus ?"
-
-#: printer/printerdrake.pm:1058
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-
-#: printer/printerdrake.pm:1061 printer/printerdrake.pm:3155
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: printer/printerdrake.pm:1076 printer/printerdrake.pm:4708
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Kefluniañ ar voullerez « %s » ..."
-
-#: printer/printerdrake.pm:1111
-#, c-format
-msgid ""
-"Now you have turned off automatic printer setup.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1112
-#, c-format
-msgid ""
-"You can turn it back on again by choosing \"%s\" -> \"%s\" in Printerdrake's "
-"main menu. "
-msgstr ""
-
-#: printer/printerdrake.pm:1112 printer/printerdrake.pm:4984
-#, c-format
-msgid "Configure Auto Administration"
-msgstr ""
-
-#: printer/printerdrake.pm:1113
-#, c-format
-msgid ""
-"There you can also choose in which situation automatic printer setup is done "
-"(On Printerdrake startup, on printing system startup, when connecting a new "
-"USB printer)."
-msgstr ""
-
-#: printer/printerdrake.pm:1261 printer/printerdrake.pm:1273
-#: printer/printerdrake.pm:1380 printer/printerdrake.pm:2401
-#: printer/printerdrake.pm:2460 printer/printerdrake.pm:2556
-#: printer/printerdrake.pm:4951 printer/printerdrake.pm:5138
-#, c-format
-msgid "Add a new printer"
-msgstr "Ouzhpennañ ur voullerez nevez"
-
-#: printer/printerdrake.pm:1262
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: printer/printerdrake.pm:1275
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected. Also your network printer(s) and your Windows "
-"machines must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you do not "
-"need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1284
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1292
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you do not need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1301
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1352
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr ""
-"Dinoiñ ent emgefreek ar moullerezioù hag a zo kevreet ouzh an ostiz-mañ"
-
-#: printer/printerdrake.pm:1355
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr ""
-
-#: printer/printerdrake.pm:1358
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
-
-#: printer/printerdrake.pm:1361
-#, c-format
-msgid "No auto-detection"
-msgstr "Ne dinoit dre ardivink ket"
-
-#: printer/printerdrake.pm:1381
-#, c-format
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the %s Control Center."
-msgstr ""
-
-#: printer/printerdrake.pm:1417 printer/printerdrake.pm:1641
-#: printer/printerdrake.pm:1704 printer/printerdrake.pm:1796
-#: printer/printerdrake.pm:1934 printer/printerdrake.pm:2010
-#: printer/printerdrake.pm:2177 printer/printerdrake.pm:2268
-#: printer/printerdrake.pm:2277 printer/printerdrake.pm:2286
-#: printer/printerdrake.pm:2297 printer/printerdrake.pm:2496
-#: printer/printerdrake.pm:2633
-#, c-format
-msgid "Could not install the %s packages!"
-msgstr "Ne m'eus ket staliañ ar pakadoù %s !"
-
-#: printer/printerdrake.pm:1419
-#, c-format
-msgid "Skipping Windows/SMB server auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:1425 printer/printerdrake.pm:1564
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Dinoiñ dre ardivink moullerezioù"
-
-#: printer/printerdrake.pm:1425
-#, c-format
-msgid "Detecting devices..."
-msgstr "O tinoiñ trobarzhelloù ..."
-
-#: printer/printerdrake.pm:1451
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", moullerez rouedad « %s », porzh %s"
-
-#: printer/printerdrake.pm:1454
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", moullerez « %s » ouzh ar servijer SMB/Windows « %s »"
-
-#: printer/printerdrake.pm:1458
-#, c-format
-msgid "Detected %s"
-msgstr "%s kavet"
-
-#: printer/printerdrake.pm:1463 printer/printerdrake.pm:1490
-#: printer/printerdrake.pm:1505
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Moullerez ouzh ar porzh kenstur #%s"
-
-#: printer/printerdrake.pm:1469
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Moullerez rouedad « %s », porzh %s"
-
-#: printer/printerdrake.pm:1472
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Moullerez « %s » ouzh ar servijer SMB/Windows « %s »"
-
-#: printer/printerdrake.pm:1550
-#, c-format
-msgid "Local Printer"
-msgstr "Moullerez lec'hel"
-
-#: printer/printerdrake.pm:1551
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: printer/printerdrake.pm:1555
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Ret eo deoc'h reiñ un trobarzhell pe anv ur restr !"
-
-#: printer/printerdrake.pm:1565
-#, c-format
-msgid "No printer found!"
-msgstr "N'eo ket moullerez ebet !"
-
-#: printer/printerdrake.pm:1573
-#, c-format
-msgid "Local Printers"
-msgstr "Moullerezioù lec'hel"
-
-#: printer/printerdrake.pm:1574
-#, c-format
-msgid "Available printers"
-msgstr "Moullerezioù da gaout"
-
-#: printer/printerdrake.pm:1578 printer/printerdrake.pm:1587
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Ar voulerez a-heul zo kavet dre ardivink. "
-
-#: printer/printerdrake.pm:1580
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1581
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1582 printer/printerdrake.pm:1591
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Setu eo listenn ar voulerezioù kavet dre ardivink holl. "
-
-#: printer/printerdrake.pm:1584
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1585
-#, c-format
-msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1589
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: printer/printerdrake.pm:1590
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr ""
-
-#: printer/printerdrake.pm:1593
-#, c-format
-msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
-msgstr ""
-
-#: printer/printerdrake.pm:1594
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Dibabit ouzh pe voullerez vo bet implijet evit moulañ, mar plij."
-
-#: printer/printerdrake.pm:1596
-#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Dibabit ouzh pe borzh a-steud eo luget ho voullerez, mar plij pe roit an anv "
-"drobarzhell pe an anv restr e-barzh al linenn urzhiañ"
-
-#: printer/printerdrake.pm:1597
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Dibabit ouzh pe borzh a-steud eo luget ho voullerez, mar plij."
-
-#: printer/printerdrake.pm:1599
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: printer/printerdrake.pm:1603
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Ret eo deoc'h reiñ un trobarzhell pe ur voullerez !"
-
-#: printer/printerdrake.pm:1643 printer/printerdrake.pm:1706
-#: printer/printerdrake.pm:1798 printer/printerdrake.pm:1936
-#: printer/printerdrake.pm:2012 printer/printerdrake.pm:2179
-#: printer/printerdrake.pm:2270 printer/printerdrake.pm:2279
-#: printer/printerdrake.pm:2288 printer/printerdrake.pm:2299
-#, c-format
-msgid "Aborting"
-msgstr "O terriñ"
-
-#: printer/printerdrake.pm:1679
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
-
-#: printer/printerdrake.pm:1680
-#, c-format
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"A-benn implijout ur servijer moulañ lpd a-bell, ret eo deoc'h pourvezañ anv "
-"ostiz ar servijer moullañ hag anv ar voullerez ouzh ar servijer-mañ."
-
-#: printer/printerdrake.pm:1681
-#, c-format
-msgid "Remote host name"
-msgstr "Anv an ostiz a-bell"
-
-#: printer/printerdrake.pm:1682
-#, c-format
-msgid "Remote printer name"
-msgstr "Anv ar voullerez a-bell"
-
-#: printer/printerdrake.pm:1685
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Anv an ostiz a-bell a ra diouer !"
-
-#: printer/printerdrake.pm:1689
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Anv an ostiz a-bell a ra diouer !"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318 standalone/drakTermServ:475
-#: standalone/drakTermServ:807 standalone/drakTermServ:823
-#: standalone/drakTermServ:1653 standalone/drakTermServ:1662
-#: standalone/drakTermServ:1676 standalone/drakbackup:512
-#: standalone/drakbackup:618 standalone/drakbackup:653
-#: standalone/drakbackup:754 standalone/draknfs:203
-#: standalone/draksambashare:627 standalone/draksambashare:794
-#: standalone/harddrake2:275
-#, c-format
-msgid "Information"
-msgstr "Titouroù"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Doare dinoet : %s %s"
-
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Scanning network..."
-msgstr "O klask war ar rouedad ..."
-
-#: printer/printerdrake.pm:1814 printer/printerdrake.pm:1835
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", moullerez « %s » war servijer « %s »"
-
-#: printer/printerdrake.pm:1817 printer/printerdrake.pm:1838
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Moullerez « %s » war servijer « %s »"
-
-#: printer/printerdrake.pm:1859
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Dibarzhoù moullañ SMB (Windows 9x/NT)"
-
-#: printer/printerdrake.pm:1860
-#, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Evit moullañ war ur voullerez SMB eo ret deoc'h pourvezañ\n"
-"anv an ostiz SMB (Ho evezh ! Disheñvel e c'hell bezañ diouzh\n"
-"e anv ostiz TCP/IP !) ha marteze chomlec'h IP ar servijer moullañ,\n"
-"kement hag anv rannet ar voullerez a glaskit tizhout ha ne vern pe\n"
-"ditour a anv arveriad, tremenger ha strollad labour en implij."
-
-#: printer/printerdrake.pm:1861
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-
-#: printer/printerdrake.pm:1863
-#, c-format
-msgid "SMB server host"
-msgstr "Ostiz ar servijer SMB"
-
-#: printer/printerdrake.pm:1864
-#, c-format
-msgid "SMB server IP"
-msgstr "IP ar servijer SMB"
-
-#: printer/printerdrake.pm:1865 standalone/draksambashare:67
-#, c-format
-msgid "Share name"
-msgstr "Anv rannet"
-
-#: printer/printerdrake.pm:1868
-#, c-format
-msgid "Workgroup"
-msgstr "Strollad labour"
-
-#: printer/printerdrake.pm:1870
-#, c-format
-msgid "Auto-detected"
-msgstr "Kavet dre ardivink"
-
-#: printer/printerdrake.pm:1880
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: printer/printerdrake.pm:1884
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Mankout a ra anv ar rannad Samba !"
-
-#: printer/printerdrake.pm:1890
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: printer/printerdrake.pm:1891
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1901
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1904
-#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: printer/printerdrake.pm:1983
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "Dibarzhoù ar voullerez NetWare"
-
-#: printer/printerdrake.pm:1984
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Evit moullañ war ur voullerez NetWare eo ret deoc'h pourvezañ anv ar\n"
-"servijer moullañ NetWare (Ho evezh ! Disheñvel e c'hell bezañ diouzh e\n"
-"anv ostiz TCP/IP !) kement hag anv ar steud moullañ evit ar voullerez\n"
-"a glaskit tizhout ha ne vern pe anv arveriad ha tremenger en implij."
-
-#: printer/printerdrake.pm:1985
-#, c-format
-msgid "Printer Server"
-msgstr "Servijer moullañ"
-
-#: printer/printerdrake.pm:1986
-#, c-format
-msgid "Print Queue Name"
-msgstr "Anv ar steud moullañ"
-
-#: printer/printerdrake.pm:1991
-#, c-format
-msgid "NCP server name missing!"
-msgstr "Mankout a ra anv ar servijer NCP !"
-
-#: printer/printerdrake.pm:1995
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "Mankout a ra anv al lost NCP !"
-
-#: printer/printerdrake.pm:2076 printer/printerdrake.pm:2097
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", ostiz « %s », porzh %s"
-
-#: printer/printerdrake.pm:2079 printer/printerdrake.pm:2100
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Ostiz « %s », porzh %s"
-
-#: printer/printerdrake.pm:2122
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "Dibarzhoù ar voullerez TCP/Socket"
-
-#: printer/printerdrake.pm:2124
-#, c-format
-msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
-msgstr ""
-
-#: printer/printerdrake.pm:2125
-#, c-format
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
-msgstr ""
-
-#: printer/printerdrake.pm:2129
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Mankout a ra anv ostiz ar voullerez pe an IP !"
-
-#: printer/printerdrake.pm:2158
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Anv pe IP an oztiz ar voullerez"
-
-#: printer/printerdrake.pm:2221
-#, c-format
-msgid "Refreshing Device URI list..."
-msgstr "Oc'h adtresañ roll URI an trobarzhelloù ..."
-
-#: printer/printerdrake.pm:2224 printer/printerdrake.pm:2226
-#, c-format
-msgid "Printer Device URI"
-msgstr "URI drobarzhell ar voullerez"
-
-#: printer/printerdrake.pm:2225
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: printer/printerdrake.pm:2249
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Red eo dit da reiñ un URI mat !"
-
-#: printer/printerdrake.pm:2354
-#, c-format
-msgid "Pipe into command"
-msgstr ""
-
-#: printer/printerdrake.pm:2355
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-
-#: printer/printerdrake.pm:2356
-#, c-format
-msgid "Command line"
-msgstr "Linenn urzhiañ"
-
-#: printer/printerdrake.pm:2360
-#, c-format
-msgid "A command line must be entered!"
-msgstr "Red eo deoc'h da reiñ ul linenn &urzhiañ !"
-
-#: printer/printerdrake.pm:2402
-#, c-format
-msgid "Your printer %s is currently connected %s."
-msgstr "Ho moullerez « %s » zo kevreet %s"
-
-#: printer/printerdrake.pm:2404 printer/printerdrake.pm:2411
-#, c-format
-msgid "to a parallel port"
-msgstr "ouzh ur porzh kenstur"
-
-#: printer/printerdrake.pm:2405 printer/printerdrake.pm:2412
-#, c-format
-msgid "to the USB"
-msgstr "ouzh USB"
-
-#: printer/printerdrake.pm:2406 printer/printerdrake.pm:2413
-#, c-format
-msgid "via the network"
-msgstr "dre ar rouedad"
-
-#: printer/printerdrake.pm:2407
-#, c-format
-msgid "This type of connection is currently not fully supported by HPLIP."
-msgstr ""
-
-#: printer/printerdrake.pm:2409
-#, c-format
-msgid "You get full HPLIP support for your device if you connect it "
-msgstr ""
-
-#: printer/printerdrake.pm:2415
-#, c-format
-msgid ""
-"You can now set up your device with HPLIP anyway (works in many cases), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "set it up without HPLIP (print-only), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "or"
-msgstr "pe"
-
-#: printer/printerdrake.pm:2417
-#, c-format
-msgid "cancel the setup (for example to reconnect your device)."
-msgstr ""
-
-#: printer/printerdrake.pm:2419
-#, c-format
-msgid ""
-"You can always revise your choice by clicking your printer's entry in the "
-"main window, "
-msgstr ""
-
-#: printer/printerdrake.pm:2420
-#, c-format
-msgid "clicking the \"%s\" button, "
-msgstr ""
-
-#. -PO: "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: printer/printerdrake.pm:2420 standalone/drakperm:124 standalone/drakups:300
-#: standalone/drakups:360 standalone/drakups:380 standalone/drakvpn:319
-#: standalone/drakvpn:680 standalone/printerdrake:245
-#, c-format
-msgid "Edit"
-msgstr "Kemmañ"
-
-#: printer/printerdrake.pm:2421
-#, c-format
-msgid "and choosing \"%s\"."
-msgstr ""
-
-#: printer/printerdrake.pm:2421 printer/printerdrake.pm:5334
-#: printer/printerdrake.pm:5394
-#, c-format
-msgid "Printer connection type"
-msgstr "Seurt kevreadenn ar voullerez"
-
-#: printer/printerdrake.pm:2423 standalone/logdrake:408
-#, c-format
-msgid "What do you want to do?"
-msgstr "Petra e fell deoc'h da ober ?"
-
-#: printer/printerdrake.pm:2424 printer/printerdrake.pm:2428
-#, c-format
-msgid "Set up with HPLIP"
-msgstr "Kefluniañ gant HPLIP"
-
-#: printer/printerdrake.pm:2425 printer/printerdrake.pm:2427
-#: printer/printerdrake.pm:2430
-#, c-format
-msgid "Set up without HPLIP"
-msgstr "Kefluniañ hep HPLIP"
-
-#: printer/printerdrake.pm:2461
-#, c-format
-msgid ""
-"On many HP printers there are special functions available, maintenance (ink "
-"level checking, nozzle cleaning. head alignment, ...) on all not too old "
-"inkjets, scanning on multi-function devices, and memory card access on "
-"printers with card readers. "
-msgstr ""
-
-#: printer/printerdrake.pm:2463
-#, c-format
-msgid ""
-"To access these extra functions on HP printers they must be set up with "
-"HPLIP (HP Linux Imaging and Printing). "
-msgstr ""
-
-#: printer/printerdrake.pm:2465
-#, c-format
-msgid "Do you want to use HPLIP (choose \"No\" for non-HP printers)? "
-msgstr ""
-
-#: printer/printerdrake.pm:2491
-#, c-format
-msgid "Installing %s package..."
-msgstr "O staliañ pakad %s ..."
-
-#: printer/printerdrake.pm:2491 printer/printerdrake.pm:2497
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "HPLIP"
-msgstr "HPLIP"
-
-#: printer/printerdrake.pm:2498
-#, c-format
-msgid "Only printing will be possible on the %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2513
-#, c-format
-msgid "Could not remove your old HPOJ configuration file %s for your %s! "
-msgstr "N'eus ket moaien lemel ho restr kefluniadur HPOJ kozh %s evit ho %s ! "
-
-#: printer/printerdrake.pm:2515
-#, c-format
-msgid "Please remove the file manually and restart HPOJ."
-msgstr "Lemel ar restr mar plij ha adloc'hañ HPOJ."
-
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "Checking device and configuring %s..."
-msgstr ""
-
-#: printer/printerdrake.pm:2557
-#, c-format
-msgid "Which printer do you want to set up with HPLIP?"
-msgstr "Da beseurt moullerez e mennit kefluniañ gant HPLIP ?"
-
-#: printer/printerdrake.pm:2576
-#, c-format
-msgid "HPLIP was not able to communicate with the chosen printer!"
-msgstr ""
-
-#: printer/printerdrake.pm:2577 printer/printerdrake.pm:2584
-#, c-format
-msgid "Setting up the printer without HPLIP..."
-msgstr "O gefluniañ ar voullerez hep HPLIP ..."
-
-#: printer/printerdrake.pm:2583
-#, c-format
-msgid ""
-"HPLIP did not find any local printers (Parallel, USB) which it supports!"
-msgstr ""
-
-#: printer/printerdrake.pm:2622
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "O staliañ pakadoù SANE ..."
-
-#: printer/printerdrake.pm:2635
-#, c-format
-msgid "Scanning on the %s will not be possible."
-msgstr ""
-
-#: printer/printerdrake.pm:2650
-#, c-format
-msgid "Using and Maintaining your %s"
-msgstr ""
-
-#: printer/printerdrake.pm:2664
-#, c-format
-msgid "Configuring device..."
-msgstr "O kefluniañ an drobarzhell ..."
-
-#: printer/printerdrake.pm:2701
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr ""
-
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2985
-#: printer/printerdrake.pm:3138
-#, c-format
-msgid "Reading printer database..."
-msgstr "O lenn stlennvon ar moullerezioù ..."
-
-#: printer/printerdrake.pm:2943
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Roit anv hag askelenn ar voullerez"
-
-#: printer/printerdrake.pm:2947 printer/printerdrake.pm:4206
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-
-#: printer/printerdrake.pm:2953 printer/printerdrake.pm:4211
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: printer/printerdrake.pm:2960
-#, c-format
-msgid ""
-"The printer name \"%s\" has more than 12 characters which can make the "
-"printer unaccessible from Windows clients. Do you really want to use this "
-"name?"
-msgstr ""
-
-#: printer/printerdrake.pm:2969
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: printer/printerdrake.pm:2970
-#, c-format
-msgid "Name of printer"
-msgstr "Anv ar voullerez"
-
-#: printer/printerdrake.pm:2971 standalone/drakconnect:592
-#: standalone/harddrake2:39 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Description"
-msgstr "Deskrivadur"
-
-#: printer/printerdrake.pm:2972 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Location"
-msgstr "Lec'hel"
-
-#: printer/printerdrake.pm:2990
-#, c-format
-msgid "Preparing printer database..."
-msgstr "O prientiñ ar stlennvon ar moullerezioù ..."
-
-#: printer/printerdrake.pm:3116
-#, c-format
-msgid "Your printer model"
-msgstr "Gobari ar voullerez"
-
-#: printer/printerdrake.pm:3117
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: printer/printerdrake.pm:3122 printer/printerdrake.pm:3125
-#, c-format
-msgid "The model is correct"
-msgstr "Mad eo ar gobari"
-
-#: printer/printerdrake.pm:3123 printer/printerdrake.pm:3124
-#: printer/printerdrake.pm:3127
-#, c-format
-msgid "Select model manually"
-msgstr "Dibabit ar gobari diwar zorn"
-
-#: printer/printerdrake.pm:3151
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
-msgstr ""
-
-#: printer/printerdrake.pm:3170
-#, c-format
-msgid "Install a manufacturer-supplied PPD file"
-msgstr "Staliañ ur restr PPD roet gant ar farder"
-
-#: printer/printerdrake.pm:3202
-#, c-format
-msgid ""
-"Every PostScript printer is delivered with a PPD file which describes the "
-"printer's options and features."
-msgstr ""
-
-#: printer/printerdrake.pm:3203
-#, c-format
-msgid ""
-"This file is usually somewhere on the CD with the Windows and Mac drivers "
-"delivered with the printer."
-msgstr ""
-
-#: printer/printerdrake.pm:3204
-#, c-format
-msgid "You can find the PPD files also on the manufacturer's web sites."
-msgstr ""
-
-#: printer/printerdrake.pm:3205
-#, c-format
-msgid ""
-"If you have Windows installed on your machine, you can find the PPD file on "
-"your Windows partition, too."
-msgstr ""
-
-#: printer/printerdrake.pm:3206
-#, c-format
-msgid ""
-"Installing the printer's PPD file and using it when setting up the printer "
-"makes all options of the printer available which are provided by the "
-"printer's hardware"
-msgstr ""
-
-#: printer/printerdrake.pm:3207
-#, c-format
-msgid ""
-"Here you can choose the PPD file to be installed on your machine, it will "
-"then be used for the setup of your printer."
-msgstr ""
-
-#: printer/printerdrake.pm:3209
-#, c-format
-msgid "Install PPD file from"
-msgstr "Staliañ ar restr PPD eus"
-
-#: printer/printerdrake.pm:3212 printer/printerdrake.pm:3220
-#: standalone/scannerdrake:183 standalone/scannerdrake:192
-#: standalone/scannerdrake:242 standalone/scannerdrake:250
-#, c-format
-msgid "Floppy Disk"
-msgstr "Bladennig"
-
-#: printer/printerdrake.pm:3213 printer/printerdrake.pm:3222
-#: standalone/scannerdrake:184 standalone/scannerdrake:194
-#: standalone/scannerdrake:243 standalone/scannerdrake:252
-#, c-format
-msgid "Other place"
-msgstr "Lec'hiadur all"
-
-#: printer/printerdrake.pm:3228
-#, c-format
-msgid "Select PPD file"
-msgstr "Dibabit ar restr PPD"
-
-#: printer/printerdrake.pm:3232
-#, c-format
-msgid "The PPD file %s does not exist or is unreadable!"
-msgstr "N'eo ket endeo ar restr PPD %s pe n'eo ket lennabl !"
-
-#: printer/printerdrake.pm:3238
-#, c-format
-msgid "The PPD file %s does not conform with the PPD specifications!"
-msgstr ""
-
-#: printer/printerdrake.pm:3249
-#, c-format
-msgid "Installing PPD file..."
-msgstr "O staliañ ar restr PPD ..."
-
-#: printer/printerdrake.pm:3368
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "Kefluniadur ar voullerez Win OKI"
-
-#: printer/printerdrake.pm:3369
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: printer/printerdrake.pm:3394 printer/printerdrake.pm:3424
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Kefluniadur Lexmark inkjet"
-
-#: printer/printerdrake.pm:3395
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: printer/printerdrake.pm:3425
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-
-#: printer/printerdrake.pm:3435
-#, c-format
-msgid "Lexmark X125 configuration"
-msgstr "Kefluniadur ar voullerez Lexmark X125"
-
-#: printer/printerdrake.pm:3436
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes. Please connect "
-"your printer to a local USB port or configure it on the machine where it is "
-"connected to."
-msgstr ""
-
-#: printer/printerdrake.pm:3458
-#, c-format
-msgid "Samsung ML/QL-85G configuration"
-msgstr "Kefluniadur ar voullerez Samsung ML/QL-85G"
-
-#: printer/printerdrake.pm:3459 printer/printerdrake.pm:3486
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected on the "
-"first parallel port, no printers on remote machines or print server boxes or "
-"on other parallel ports. Please connect your printer to the first parallel "
-"port or configure it on the machine where it is connected to."
-msgstr ""
-
-#: printer/printerdrake.pm:3485
-#, c-format
-msgid "Canon LBP-460/660 configuration"
-msgstr "Kefluniadur ar voullerez Canon LBP-460/660"
-
-#: printer/printerdrake.pm:3512
-#, c-format
-msgid "Canon LBP-810/1120 (CAPT) configuration"
-msgstr "Kefluniadur ar voullerez Canon LBP-810/1120 (CAPT)"
-
-#: printer/printerdrake.pm:3513
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes or on the parallel "
-"port. Please connect your printer to the USB or configure it on the machine "
-"where it is directly connected to."
-msgstr ""
-
-#: printer/printerdrake.pm:3520
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr ""
-
-#: printer/printerdrake.pm:3670
-#, c-format
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: printer/printerdrake.pm:3795
-#, c-format
-msgid "Printer default settings"
-msgstr "Kefluniadur dre ziouer ar voullerez"
-
-#: printer/printerdrake.pm:3802
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: printer/printerdrake.pm:3806
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Dao eo d'an dibarzh %s da bezañ un niverenn !"
-
-#: printer/printerdrake.pm:3810
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: printer/printerdrake.pm:3862
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Ha mennout a rit lakaat ar voullerez-mañ (« %s »)\n"
-"evit ar voullerez dre ziouer ?"
-
-#: printer/printerdrake.pm:3878
-#, c-format
-msgid "Test pages"
-msgstr "Pajennoù arnod"
-
-#: printer/printerdrake.pm:3879
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: printer/printerdrake.pm:3883
-#, c-format
-msgid "No test pages"
-msgstr "N'eus pajenn arnod ebet"
-
-#: printer/printerdrake.pm:3884
-#, c-format
-msgid "Print"
-msgstr "Moulañ"
-
-#: printer/printerdrake.pm:3909
-#, c-format
-msgid "Standard test page"
-msgstr "Pajenn arnod reoliek"
-
-#: printer/printerdrake.pm:3912
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Pajenn arnod all (Lizher)"
-
-#: printer/printerdrake.pm:3915
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Pajenn arnod all (A4)"
-
-#: printer/printerdrake.pm:3917
-#, c-format
-msgid "Photo test page"
-msgstr "Pajenn arnod foto"
-
-#: printer/printerdrake.pm:3930
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "O voullañ pajenn(où) arnod ..."
-
-#: printer/printerdrake.pm:3950
-#, c-format
-msgid "Skipping photo test page."
-msgstr "O tremen ar bajenn arnod foto."
-
-#: printer/printerdrake.pm:3967
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Pajenn(où) arnod a oa bet kaset d'ar voullerez.\n"
-"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
-"Stad ar moullañ :\n"
-"%s\n"
-"\n"
-
-#: printer/printerdrake.pm:3971
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Pajenn(où) arnod a oa bet kaset d'ar moullerez.\n"
-"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
-
-#: printer/printerdrake.pm:3981
-#, c-format
-msgid "Did it work properly?"
-msgstr "Ha mont a ra en-dro reizh ?"
-
-#: printer/printerdrake.pm:4005
-#, c-format
-msgid "Raw printer"
-msgstr "Moullerez diaoz"
-
-#: printer/printerdrake.pm:4027
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4029
-#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4032 printer/printerdrake.pm:4049
-#: printer/printerdrake.pm:4059
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: printer/printerdrake.pm:4035 printer/printerdrake.pm:4075
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4039
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4044 printer/printerdrake.pm:4054
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4046 printer/printerdrake.pm:4056
-#: printer/printerdrake.pm:4066
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4051 printer/printerdrake.pm:4061
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: printer/printerdrake.pm:4064
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4068
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4072
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4081
-#, c-format
-msgid "Using/Maintaining the printer \"%s\""
-msgstr "Oc'h implij/ober war-dro voullerez « %s »"
-
-#: printer/printerdrake.pm:4082
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "O moulañ gant ar voullerez « %s »"
-
-#: printer/printerdrake.pm:4088
-#, c-format
-msgid "Print option list"
-msgstr "Roll dibarzhoù ar voullerez"
-
-#: printer/printerdrake.pm:4092
-#, c-format
-msgid "Printing option list..."
-msgstr "Roll dibarzhoù moulañ ..."
-
-#: printer/printerdrake.pm:4110
-#, c-format
-msgid ""
-"Your %s is set up with HP's HPLIP driver software. This way many special "
-"features of your printer are supported.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4113
-#, c-format
-msgid ""
-"The scanner in your printer can be used with the usual SANE software, for "
-"example Kooka or XSane (Both in the Multimedia/Graphics menu). "
-msgstr ""
-
-#: printer/printerdrake.pm:4114
-#, c-format
-msgid ""
-"Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to "
-"share your scanner on the network.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4118
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed like a usual USB "
-"mass storage device. "
-msgstr ""
-
-#: printer/printerdrake.pm:4119
-#, c-format
-msgid ""
-"After inserting a card a hard disk icon to access the card should appear on "
-"your desktop.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4121
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed using HP's Printer "
-"Toolbox (Menu: System/Monitoring/HP Printer Toolbox) clicking the \"Access "
-"Photo Cards...\" button on the \"Functions\" tab. "
-msgstr ""
-
-#: printer/printerdrake.pm:4122
-#, c-format
-msgid ""
-"Note that this is very slow, reading the pictures from the camera or a USB "
-"card reader is usually faster.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4125
-#, c-format
-msgid ""
-"HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a "
-"lot of status monitoring and maintenance functions for your %s:\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4126
-#, c-format
-msgid " - Ink level/status info\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4127
-#, c-format
-msgid " - Ink nozzle cleaning\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4128
-#, c-format
-msgid " - Print head alignment\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4129
-#, c-format
-msgid " - Color calibration\n"
-msgstr " - Kefluniañ al livioù\n"
-
-#: printer/printerdrake.pm:4170 printer/printerdrake.pm:4197
-#: printer/printerdrake.pm:4232
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Treuzkas kefluniadur ar voullerez"
-
-#: printer/printerdrake.pm:4171
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4174
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4176
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4178
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4180
-#, c-format
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: printer/printerdrake.pm:4181
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: printer/printerdrake.pm:4182
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: printer/printerdrake.pm:4185
-#, c-format
-msgid "Do not transfer printers"
-msgstr ""
-
-#: printer/printerdrake.pm:4186 printer/printerdrake.pm:4202
-#, c-format
-msgid "Transfer"
-msgstr "Treuzkas"
-
-#: printer/printerdrake.pm:4198
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: printer/printerdrake.pm:4219
-#, c-format
-msgid "New printer name"
-msgstr "Anv nevez ar voullerez"
-
-#: printer/printerdrake.pm:4222
-#, c-format
-msgid "Transferring %s..."
-msgstr "O treuzkas %s ..."
-
-#: printer/printerdrake.pm:4233
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: printer/printerdrake.pm:4243
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "O adtresañ roadoù ar moullerezioù ..."
-
-#: printer/printerdrake.pm:4253
-#, c-format
-msgid "Starting network..."
-msgstr "O kregiñ ar rouedad ..."
-
-#: printer/printerdrake.pm:4296 printer/printerdrake.pm:4300
-#: printer/printerdrake.pm:4302
-#, c-format
-msgid "Configure the network now"
-msgstr "Kefluniañ ar rouedad bremañ"
-
-#: printer/printerdrake.pm:4297
-#, c-format
-msgid "Network functionality not configured"
-msgstr "N'eo ket kefluniet ar rouedad"
-
-#: printer/printerdrake.pm:4298
-#, c-format
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: printer/printerdrake.pm:4301
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Kenderc'hel hep kefluniañ ar rouedad"
-
-#: printer/printerdrake.pm:4332
-#, c-format
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network is accessible after booting your "
-"system and correct the configuration using the %s Control Center, section "
-"\"Network & Internet\"/\"Connection\", and afterwards set up the printer, "
-"also using the %s Control Center, section \"Hardware\"/\"Printer\""
-msgstr ""
-
-#: printer/printerdrake.pm:4333
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-# to enhance :-(
-#: printer/printerdrake.pm:4343
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Oc'h adkregiñ ar reizhiad moullañ ..."
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "high"
-msgstr "uhel"
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "paranoid"
-msgstr "ankeniet"
-
-#: printer/printerdrake.pm:4376
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "O staliañ ur reizhiad moullañ er live surantez %s"
-
-#: printer/printerdrake.pm:4377
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessible by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: printer/printerdrake.pm:4413
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Lañsañ ar reizhiad moullañ pa loc'hañ"
-
-#: printer/printerdrake.pm:4414
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: printer/printerdrake.pm:4437
-#, c-format
-msgid "Checking installed software..."
-msgstr ""
-
-#: printer/printerdrake.pm:4443
-#, c-format
-msgid "Removing %s..."
-msgstr "Lemel %s ..."
-
-#: printer/printerdrake.pm:4447
-#, c-format
-msgid "Could not remove the %s printing system!"
-msgstr "Ne m'eus ket lemel ar reizhiad moullañ %s !"
-
-#: printer/printerdrake.pm:4471
-#, c-format
-msgid "Installing %s..."
-msgstr "O staliañ %s ..."
-
-#: printer/printerdrake.pm:4475
-#, c-format
-msgid "Could not install the %s printing system!"
-msgstr "Ne m'eus ket staliañ ar reizhiad moullañ %s !"
-
-#: printer/printerdrake.pm:4543
-#, c-format
-msgid ""
-"In this mode there is no local printing system, all printing requests go "
-"directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:4545
-#, c-format
-msgid ""
-"Enter the host name or IP of your CUPS server and click OK if you want to "
-"use this mode, click \"Quit\" otherwise."
-msgstr ""
-
-#: printer/printerdrake.pm:4559
-#, c-format
-msgid "Name or IP of remote server:"
-msgstr "Anv pe IP an oztiz ar servijer a-bell :"
-
-#: printer/printerdrake.pm:4579
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "O lakaat ar voullerez dre ziouer ..."
-
-#: printer/printerdrake.pm:4599
-#, c-format
-msgid "Local CUPS printing system or remote CUPS server?"
-msgstr "Reizhiad moullañ CUPS lec'hel pe servijer CUPS a-bell ? "
-
-#: printer/printerdrake.pm:4600
-#, c-format
-msgid "The CUPS printing system can be used in two ways: "
-msgstr ""
-
-#: printer/printerdrake.pm:4602
-#, c-format
-msgid "1. The CUPS printing system can run locally. "
-msgstr ""
-
-#: printer/printerdrake.pm:4603
-#, c-format
-msgid ""
-"Then locally connected printers can be used and remote printers on other "
-"CUPS servers in the same network are automatically discovered. "
-msgstr ""
-
-#: printer/printerdrake.pm:4604
-#, c-format
-msgid ""
-"Disadvantage of this approach is, that more resources on the local machine "
-"are needed: Additional software packages need to be installed, the CUPS "
-"daemon has to run in the background and needs some memory, and the IPP port "
-"(port 631) is opened. "
-msgstr ""
-
-#: printer/printerdrake.pm:4606
-#, c-format
-msgid "2. All printing requests are immediately sent to a remote CUPS server. "
-msgstr ""
-
-#: printer/printerdrake.pm:4607
-#, c-format
-msgid ""
-"Here local resource occupation is reduced to a minimum. No CUPS daemon is "
-"started or port opened, no software infrastructure for setting up local "
-"print queues is installed, so less memory and disk space is used. "
-msgstr ""
-
-#: printer/printerdrake.pm:4608
-#, c-format
-msgid ""
-"Disadvantage is that it is not possible to define local printers then and if "
-"the specified server is down it cannot be printed at all from this machine. "
-msgstr ""
-
-#: printer/printerdrake.pm:4610
-#, c-format
-msgid "How should CUPS be set up on your machine?"
-msgstr "Penaos vez lakaet CUPS war ho reizhiad ?"
-
-#: printer/printerdrake.pm:4614 printer/printerdrake.pm:4629
-#: printer/printerdrake.pm:4633 printer/printerdrake.pm:4639
-#, c-format
-msgid "Remote server, specify Name or IP here:"
-msgstr "Server a-bell, reiñ anv pe IP amañ :"
-
-#: printer/printerdrake.pm:4628
-#, c-format
-msgid "Local CUPS printing system"
-msgstr "Reizhiad moullañ CUPS lec'hel"
-
-#: printer/printerdrake.pm:4667
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Dibabit lost ar voullerez"
-
-#: printer/printerdrake.pm:4668
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Pe seurt reizhiad moullañ (lost) a vennit da implij ?"
-
-#: printer/printerdrake.pm:4717
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Ne m'eus ket kefluniañ ar voullerez « %s » !"
-
-#: printer/printerdrake.pm:4732
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "O staliañ Foomatik ..."
-
-#: printer/printerdrake.pm:4738
-#, c-format
-msgid "Could not install %s packages, %s cannot be started!"
-msgstr "Ne m'eus ket staliañ ar pakadoù %s, ne m'eus ket lañsañ %s !"
-
-#: printer/printerdrake.pm:4933
-#, fuzzy, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it. "
-msgstr ""
-"Setu da heul ar steudadoù moullañ.\n"
-"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-
-#: printer/printerdrake.pm:4963
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Diskouez pep moullerez CUPS a-bell"
-
-#: printer/printerdrake.pm:4964
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: printer/printerdrake.pm:4975
-#, c-format
-msgid "CUPS configuration"
-msgstr "Kefluniadur CUPS"
-
-#: printer/printerdrake.pm:4996
-#, c-format
-msgid "Change the printing system"
-msgstr "Kemmaañ ar reizhiad moullañ"
-
-#: printer/printerdrake.pm:5005
-#, c-format
-msgid "Normal Mode"
-msgstr "Mod boas"
-
-#: printer/printerdrake.pm:5006
-#, c-format
-msgid "Expert Mode"
-msgstr "Mod mailh"
-
-#: printer/printerdrake.pm:5284 printer/printerdrake.pm:5340
-#: printer/printerdrake.pm:5426 printer/printerdrake.pm:5435
-#, c-format
-msgid "Printer options"
-msgstr "Dibarzhoù ar voullerez"
-
-#: printer/printerdrake.pm:5320
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Kemmañ kefluniadur ar voullerez"
-
-#: printer/printerdrake.pm:5322
-#, c-format
-msgid ""
-"Printer %s%s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Moullerez %s%s\n"
-"Petra a fell dit kemmañ anezhi ?"
-
-#: printer/printerdrake.pm:5327
-#, c-format
-msgid "This printer is disabled"
-msgstr "Marv eo ar voullerez-mañ"
-
-#: printer/printerdrake.pm:5329
-#, c-format
-msgid "Do it!"
-msgstr "Ober a rit !"
-
-#: printer/printerdrake.pm:5335 printer/printerdrake.pm:5400
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Anv ar voullerez, deskrivadur ha lec'hiadur"
-
-#: printer/printerdrake.pm:5337 printer/printerdrake.pm:5419
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: printer/printerdrake.pm:5338 printer/printerdrake.pm:5420
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: printer/printerdrake.pm:5342 printer/printerdrake.pm:5430
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Lakaat ar voullerez-mañ dre ziouer"
-
-#: printer/printerdrake.pm:5347 printer/printerdrake.pm:5436
-#: printer/printerdrake.pm:5438 printer/printerdrake.pm:5447
-#, c-format
-msgid "Enable Printer"
-msgstr "Bevaat ar voullerez"
-
-#: printer/printerdrake.pm:5350 printer/printerdrake.pm:5441
-#: printer/printerdrake.pm:5442 printer/printerdrake.pm:5444
-#, c-format
-msgid "Disable Printer"
-msgstr "Marvaat ar voullerez"
-
-#: printer/printerdrake.pm:5354 printer/printerdrake.pm:5448
-#, c-format
-msgid "Printer communication error handling"
-msgstr ""
-
-#: printer/printerdrake.pm:5355 printer/printerdrake.pm:5452
-#, c-format
-msgid "Print test pages"
-msgstr "Moullañ ar pajennoù arnod"
-
-#: printer/printerdrake.pm:5356 printer/printerdrake.pm:5454
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Deskiñ peanos e vez implijet ar voullerez-mañ"
-
-#: printer/printerdrake.pm:5357 printer/printerdrake.pm:5456
-#, c-format
-msgid "Remove printer"
-msgstr "Lemel ar voullerez"
-
-#: printer/printerdrake.pm:5408
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Lemel ar voullerez gozh « %s » ..."
-
-#: printer/printerdrake.pm:5439
-#, c-format
-msgid "Printer \"%s\" is now enabled."
-msgstr "Bev eo ar voullerez « %s » bremañ ..."
-
-#: printer/printerdrake.pm:5445
-#, c-format
-msgid "Printer \"%s\" is now disabled."
-msgstr "N'eo ket bev eo ar voullerez « %s » bremañ ..."
-
-#: printer/printerdrake.pm:5487
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Ha fellout a ra deoc'h da vat lemel ar voullerez « %s » ?"
-
-#: printer/printerdrake.pm:5491
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "O dilemel ar voullerez « %s » ..."
-
-#: printer/printerdrake.pm:5515
-#, c-format
-msgid "Default printer"
-msgstr "Moullerez dre ziouer"
-
-#: printer/printerdrake.pm:5516
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Bez eo ar voullerez « %s » ar voullerez dre ziouer bremañ."
-
#: raid.pm:42
#, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "N'hellan ket ouzhpennañ ur parzhadur da RAID %s _furmadet_"
-#: raid.pm:148
+#: raid.pm:150
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "N'eus ket a-walc'h a barzhadurioù evit RAID live %d\n"
-#: scanner.pm:96
+#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr "N'hellan ket krouiñ ar renkell /usr/share/sane/firmware !"
-#: scanner.pm:107
+#: scanner.pm:106
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr "N'hellan ket krouiñ al liamm /usr/share/sane/%s !"
-#: scanner.pm:114
+#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr ""
"N'hellan ket eilañ ar restr meriant %s e-barzh /usr/share/sane/firmware !"
-#: scanner.pm:121
+#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr "N'hell ket bet lakaet aotreoù ar meriant %s !"
-#: scanner.pm:200 standalone/scannerdrake:66 standalone/scannerdrake:70
-#: standalone/scannerdrake:78 standalone/scannerdrake:321
-#: standalone/scannerdrake:370 standalone/scannerdrake:463
-#: standalone/scannerdrake:507 standalone/scannerdrake:511
-#: standalone/scannerdrake:533 standalone/scannerdrake:598
+#: scanner.pm:199
#, c-format
msgid "Scannerdrake"
msgstr "Scannerdrake"
-#: scanner.pm:201 standalone/scannerdrake:964
+#: scanner.pm:200
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr "N'eo ket evit staliañ evit ranañ hoc'h eiltreser."
-#: scanner.pm:202
+#: scanner.pm:201
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr ""
@@ -13569,12 +4890,12 @@ msgstr ""
#: security/help.pm:13
#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
+msgid "Accept/Refuse broadcasted icmp echo."
msgstr ""
#: security/help.pm:15
#, c-format
-msgid " Accept/Refuse icmp echo."
+msgid "Accept/Refuse icmp echo."
msgstr ""
#: security/help.pm:17
@@ -13694,7 +5015,7 @@ msgid ""
"\"%s\" is true, also reports to syslog."
msgstr ""
-#: security/help.pm:80 standalone/draksec:215
+#: security/help.pm:80
#, c-format
msgid "Security Alerts:"
msgstr "Posteloù surantez :"
@@ -13722,7 +5043,8 @@ msgstr ""
#: security/help.pm:90
#, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"Enable su only from members of the wheel group. If set to no, allows su from "
+"any user."
msgstr ""
#: security/help.pm:92
@@ -13737,12 +5059,12 @@ msgstr ""
#: security/help.pm:96
#, c-format
-msgid " Activate/Disable daily security check."
+msgid "Activate/Disable daily security check."
msgstr ""
#: security/help.pm:98
#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
+msgid "Enable/Disable sulogin(8) in single user level."
msgstr ""
#: security/help.pm:100
@@ -13775,7 +5097,7 @@ msgstr "Lakaat an umask gwrizienn."
#: security/help.pm:109
#, c-format
msgid "if set to yes, check open ports."
-msgstr ""
+msgstr "gwiriekaat ar porzhioù digor pa vez bev."
#: security/help.pm:110
#, c-format
@@ -13908,7 +5230,7 @@ msgstr ""
#: security/l10n.pm:15
#, c-format
msgid "/etc/issue* exist"
-msgstr ""
+msgstr "Bez eus /etc/issue* endeo"
#: security/l10n.pm:16
#, c-format
@@ -13992,7 +5314,7 @@ msgstr ""
#: security/l10n.pm:32
#, c-format
-msgid "Enable su only from the wheel group members or for any user"
+msgid "Enable su only from the wheel group members"
msgstr ""
#: security/l10n.pm:33
@@ -14117,7 +5439,7 @@ msgstr ""
#: security/l10n.pm:57
#, c-format
-msgid "Do not send mails when unneeded"
+msgid "Do not send empty mail reports"
msgstr ""
#: security/l10n.pm:58
@@ -14155,6 +5477,11 @@ msgstr "Bezit deuet mat, preizherien"
msgid "Poor"
msgstr "Paour"
+#: security/level.pm:12
+#, c-format
+msgid "Standard"
+msgstr "Skouer"
+
#: security/level.pm:13
#, c-format
msgid "High"
@@ -14235,6 +5562,11 @@ msgstr ""
#: security/level.pm:55
#, c-format
+msgid "Security"
+msgstr "Diogelroez"
+
+#: security/level.pm:55
+#, c-format
msgid "DrakSec Basic Options"
msgstr "Dibarzhoù DrakSec diazeg"
@@ -14578,7 +5910,7 @@ msgstr ""
#: services.pm:90
#, c-format
msgid "Load the drivers for your usb devices."
-msgstr ""
+msgstr "Kargañ sturieroù evit ho trobarzhelloù USB."
# Enaou ha dizenaou ar servijer Fontoù X da vare al loc'hañ hag al lazhañ
#: services.pm:91
@@ -14587,528 +5919,99 @@ msgid "Starts the X Font Server (this is mandatory for Xorg to run)."
msgstr ""
"Loc'hañ ar servijer fontoù X (red eo d'ober evel-se evit implijout Xorg)."
-#: services.pm:115 services.pm:157
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Dibabit pe servijoù a zlefe bezañ lañset ent emgefreek pa loc'her"
-
-#: services.pm:127 standalone/draksambashare:111
+#: services.pm:114
#, c-format
msgid "Printing"
msgstr "War voulañ"
-#: services.pm:128
+#: services.pm:115
#, c-format
msgid "Internet"
msgstr "Kenrouedad"
-#: services.pm:131
+#: services.pm:118
#, c-format
msgid "File sharing"
msgstr "Rannañ restroù"
-#: services.pm:138
+#: services.pm:120
+#, c-format
+msgid "System"
+msgstr "Reizhiad"
+
+#: services.pm:125
#, c-format
msgid "Remote Administration"
msgstr "Mererezh a-bell"
-#: services.pm:146
+#: services.pm:133
#, c-format
msgid "Database Server"
msgstr "Servijer ar stlennvon"
-#: services.pm:209
+#: services.pm:144 services.pm:180
+#, c-format
+msgid "Services"
+msgstr "Servijoù"
+
+#: services.pm:144
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Dibabit pe servijoù a zlefe bezañ lañset ent emgefreek pa loc'her"
+
+#: services.pm:162
+#, c-format
+msgid "Services: %d activated for %d registered"
+msgstr "Servijoù : %d bev diwar %d enskrivet"
+
+#: services.pm:196
#, c-format
msgid "running"
msgstr "o seveniñ"
-#: services.pm:209
+#: services.pm:196
#, c-format
msgid "stopped"
-msgstr "Plaenaozet"
+msgstr "plaenaozet"
-#: services.pm:213
+#: services.pm:201
#, c-format
msgid "Services and daemons"
-msgstr ""
+msgstr "Servijoù ha diaouloù"
-#: services.pm:219
+#: services.pm:207
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr ""
-#: services.pm:224 ugtk2.pm:1009
+#: services.pm:212 ugtk2.pm:898
#, c-format
msgid "Info"
msgstr "Titouroù"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "Start when requested"
msgstr "Loc'hañ pa vez red"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "On boot"
msgstr "En ur loc'hañ"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Start"
msgstr "Loc'hañ"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Stop"
msgstr "Plaenaozañ"
-#: share/advertising/01.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Packs"
-msgstr "Mandriva Linux 2006 : boestadoù"
-
-#: share/advertising/02.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More features"
-msgstr ""
-
-#: share/advertising/03.pl:3
-#, c-format
-msgid "Interactive firewall"
-msgstr "Moger tan bev"
-
-#: share/advertising/04.pl:3
-#, c-format
-msgid "Desktop search"
-msgstr ""
-
-#: share/advertising/05.pl:3
-#, c-format
-msgid "New package manager"
-msgstr "Merour pakadoù nevez"
-
-#: share/advertising/06.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More performances"
-msgstr "Mandriva Linux 2006 : buanoc'h"
-
-#: share/advertising/07.pl:3
-#, c-format
-msgid "Latest kernel and GCC"
-msgstr ""
-
-#: share/advertising/08.pl:3
-#, c-format
-msgid "High Availibility"
-msgstr ""
-
-#: share/advertising/09.pl:3
-#, c-format
-msgid "Delta RPM"
-msgstr "Delta RPM"
-
-#: share/advertising/10.pl:3
-#, c-format
-msgid "Low resources setup"
-msgstr ""
-
-#: share/advertising/11.pl:3
-#, c-format
-msgid "Boot time reduction"
-msgstr "Loc'han buanoc'h"
-
-#: share/advertising/12.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Easier to use"
-msgstr "Mandriva Linux 2006 : aesoc'h da implij"
-
-#: share/advertising/13.pl:3
-#, c-format
-msgid "Latest graphical interfaces: KDE and GNOME"
-msgstr ""
-
-#: share/advertising/14.pl:3
-#, c-format
-msgid "auto-installation servers"
-msgstr ""
-
-#: share/advertising/15.pl:3
-#, c-format
-msgid "Easy and quick installation"
-msgstr "Staliadur aes ha buan"
-
-#: share/advertising/16.pl:3
-#, c-format
-msgid "Easy configuration thanks to 60 wizards"
-msgstr ""
-
-#: share/advertising/17.pl:3
-#, c-format
-msgid "Look and feel improved"
-msgstr "Neuz ha feson gwellaet"
-
-#: share/advertising/18.pl:3
-#, c-format
-msgid "New webmin theme"
-msgstr "Giz Webmin nevez"
-
-#: share/advertising/19.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More support"
-msgstr ""
-
-#: share/advertising/20.pl:3
-#, c-format
-msgid "Better Hardware support"
-msgstr ""
-
-#: share/advertising/21.pl:3
-#, c-format
-msgid "Xen support"
-msgstr ""
-
-#: share/advertising/22.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More information"
-msgstr "Mandriva Linux 2006: Titouroù muioc'h"
-
-#: share/advertising/23.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Where to buy?"
-msgstr "Mandriva Linux 2006 : Pelec'h e vez gwerzhet ?"
-
-#: share/advertising/24.pl:3
-#, c-format
-msgid "Where to find technical assistance?"
-msgstr ""
-
-#: share/advertising/25.pl:3
-#, c-format
-msgid "How to join the Mandriva Linux community?"
-msgstr ""
-
-#: share/advertising/26.pl:3
-#, c-format
-msgid "How to keep your system up-to-date?"
-msgstr ""
-
-#: share/advertising/intel.pl:3
-#, c-format
-msgid "Intel Software"
-msgstr "Poelladoù Intel"
-
-#: share/advertising/skype.pl:3
-#, c-format
-msgid "Skype lets you make calls through the Internet for free."
-msgstr "Moien zo dit da bellgomziñ dre Internet hepken paeañ gant Skype."
-
-#: share/compssUsers.pl:26
-#, c-format
-msgid "Office Workstation"
-msgstr "Arsav burev"
-
-#: share/compssUsers.pl:28
-#, c-format
-msgid ""
-"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
-"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
-msgstr ""
-"Programmoù burev : skridtreterezhioù (OpenOffice.org Writer, Kword), "
-"logerioù (OpenOffice.org Calc, Kspread), gwelerien PDF, ..."
-
-#: share/compssUsers.pl:29
-#, c-format
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Programmoù burev : skridtreterezhioù (kword, abiword), logerioù (kspread, "
-"gnumeric), gwelerien PDF, ..."
-
-#: share/compssUsers.pl:34
-#, c-format
-msgid "Game station"
-msgstr "Arsav c'hoarioù"
-
-#: share/compssUsers.pl:35
-#, c-format
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr ""
-
-#: share/compssUsers.pl:38
-#, c-format
-msgid "Multimedia station"
-msgstr "Arsav liesvedia"
-
-#: share/compssUsers.pl:39
-#, c-format
-msgid "Sound and video playing/editing programs"
-msgstr "Programmoù evit seniñ/aozañ tonioù ha videoù"
-
-#: share/compssUsers.pl:44
-#, c-format
-msgid "Internet station"
-msgstr "Arsav internet"
-
-#: share/compssUsers.pl:45
-#, c-format
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-
-#: share/compssUsers.pl:50
-#, c-format
-msgid "Network Computer (client)"
-msgstr "Kliant rouedad"
-
-#: share/compssUsers.pl:51
-#, c-format
-msgid "Clients for different protocols including ssh"
-msgstr "Pratikoù evit meur a gomennad (da skouer ssh)"
-
-#: share/compssUsers.pl:55
-#, c-format
-msgid "Configuration"
-msgstr "Kefluniadur"
-
-#: share/compssUsers.pl:56
-#, c-format
-msgid "Tools to ease the configuration of your computer"
-msgstr "Ostilhoù evit kefluniañ hoc'h urzhiataer dre aes"
-
-#: share/compssUsers.pl:60
-#, c-format
-msgid "Console Tools"
-msgstr "Ostilhoù letrin"
-
-#: share/compssUsers.pl:61
-#, c-format
-msgid "Editors, shells, file tools, terminals"
-msgstr "Aozerien, shelloù, ostilhoù restr, termenelloù"
-
-#: share/compssUsers.pl:66 share/compssUsers.pl:170
-#, c-format
-msgid "C and C++ development libraries, programs and include files"
-msgstr ""
-
-#: share/compssUsers.pl:70 share/compssUsers.pl:174
-#, c-format
-msgid "Documentation"
-msgstr "Teuliadur"
-
-#: share/compssUsers.pl:71 share/compssUsers.pl:175
-#, c-format
-msgid "Books and Howto's on Linux and Free Software"
-msgstr ""
-
-#: share/compssUsers.pl:75 share/compssUsers.pl:178
-#, c-format
-msgid "LSB"
-msgstr "LSB"
-
-#: share/compssUsers.pl:76 share/compssUsers.pl:179
-#, c-format
-msgid "Linux Standard Base. Third party applications support"
-msgstr ""
-
-#: share/compssUsers.pl:86
-#, c-format
-msgid "Apache"
-msgstr "Apache"
-
-#: share/compssUsers.pl:89
-#, c-format
-msgid "Groupware"
-msgstr "Strollant"
-
-#: share/compssUsers.pl:90
-#, c-format
-msgid "Kolab Server"
-msgstr "Servijer Kolab"
-
-#: share/compssUsers.pl:93 share/compssUsers.pl:134
-#, c-format
-msgid "Firewall/Router"
-msgstr "Moger tan"
-
-#: share/compssUsers.pl:94 share/compssUsers.pl:135
-#, c-format
-msgid "Internet gateway"
-msgstr "Dreuzell an Internet"
-
-#: share/compssUsers.pl:97
-#, c-format
-msgid "Mail/News"
-msgstr "Posteloù/keleier"
-
-#: share/compssUsers.pl:98
-#, c-format
-msgid "Postfix mail server, Inn news server"
-msgstr "Servijer posteloù Postfix, servijer keleier Inn"
-
-#: share/compssUsers.pl:101
-#, c-format
-msgid "Directory Server"
-msgstr "Levr-bloaz"
-
-#: share/compssUsers.pl:105
-#, c-format
-msgid "FTP Server"
-msgstr "Servijer FTP"
-
-#: share/compssUsers.pl:106
-#, c-format
-msgid "ProFTPd"
-msgstr "ProFTPd"
-
-#: share/compssUsers.pl:109
-#, c-format
-msgid "DNS/NIS"
-msgstr "DNS/NIS"
-
-#: share/compssUsers.pl:110
-#, c-format
-msgid "Domain Name and Network Information Server"
-msgstr "Servijer DNS ha NIS"
-
-#: share/compssUsers.pl:113
-#, c-format
-msgid "File and Printer Sharing Server"
-msgstr "Servijer rennañ restroù ha moullerez"
-
-#: share/compssUsers.pl:114
-#, c-format
-msgid "NFS Server, Samba server"
-msgstr "Servijer NFS, servijer Samba"
-
-#: share/compssUsers.pl:117 share/compssUsers.pl:130
-#, c-format
-msgid "Database"
-msgstr "Stlennvon"
-
-#: share/compssUsers.pl:118
-#, c-format
-msgid "PostgreSQL and MySQL Database Server"
-msgstr "Servijer stlennvon PostgreSQL ha MySQL"
-
-#: share/compssUsers.pl:122
-#, c-format
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: share/compssUsers.pl:123
-#, c-format
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: share/compssUsers.pl:126
-#, c-format
-msgid "Mail"
-msgstr "Post"
-
-#: share/compssUsers.pl:127
-#, c-format
-msgid "Postfix mail server"
-msgstr "Servijer postel Postfix"
-
-#: share/compssUsers.pl:131
-#, c-format
-msgid "PostgreSQL or MySQL database server"
-msgstr "Servijer stlennvon PostgreSQL pe MySQL"
-
-#: share/compssUsers.pl:138
-#, c-format
-msgid "Network Computer server"
-msgstr "Servijer rouedad"
-
-#: share/compssUsers.pl:139
-#, c-format
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "Servijer NFS, servijer SMB, servijer proksi, servijer SSH"
-
-#: share/compssUsers.pl:147
-#, c-format
-msgid "KDE Workstation"
-msgstr "Burev KDE"
-
-#: share/compssUsers.pl:148
-#, c-format
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr "An Endro Burev K gant he ostilhoù"
-
-#: share/compssUsers.pl:152
-#, c-format
-msgid "GNOME Workstation"
-msgstr "Burev GNOME"
-
-#: share/compssUsers.pl:153
-#, c-format
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-
-#: share/compssUsers.pl:156
-#, c-format
-msgid "IceWm Desktop"
-msgstr "Burev IceWm"
-
-#: share/compssUsers.pl:160
-#, c-format
-msgid "Other Graphical Desktops"
-msgstr "Burevioù c'hrafek all"
-
-#: share/compssUsers.pl:161
-#, c-format
-msgid "Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Window Maker, Enlightenment, Fvwm, etc"
-
-#: share/compssUsers.pl:184
-#, c-format
-msgid "Utilities"
-msgstr "Mavegoù"
-
-#: share/compssUsers.pl:186 share/compssUsers.pl:187 standalone/logdrake:384
-#, c-format
-msgid "SSH Server"
-msgstr "Servijer SSH"
-
-#: share/compssUsers.pl:191
-#, c-format
-msgid "Webmin"
-msgstr "Webmin"
-
-#: share/compssUsers.pl:192
-#, c-format
-msgid "Webmin Remote Configuration Server"
-msgstr "Servijer Webmin ar gefluniadur a-bell"
-
-#: share/compssUsers.pl:196
-#, c-format
-msgid "Network Utilities/Monitoring"
-msgstr "Ostilhoù ar rouedad/diwall"
-
-#: share/compssUsers.pl:197
-#, c-format
-msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
-msgstr ""
-
-#: share/compssUsers.pl:201
-#, c-format
-msgid "Mandriva Wizards"
-msgstr "Skozelerien Mandriva"
-
-#: share/compssUsers.pl:202
-#, c-format
-msgid "Wizards to configure server"
-msgstr "Skozelerien evit kefluniañ ar servijer"
-
-#: standalone.pm:23
+#: standalone.pm:24
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
@@ -15123,10 +6026,11 @@ msgid ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
msgstr ""
-#: standalone.pm:42
+#: standalone.pm:43
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
@@ -15142,7 +6046,7 @@ msgid ""
"--version : show version number.\n"
msgstr ""
-#: standalone.pm:54
+#: standalone.pm:55
#, c-format
msgid ""
"[--boot] [--splash]\n"
@@ -15152,7 +6056,7 @@ msgid ""
"default mode: offer to configure autologin feature"
msgstr ""
-#: standalone.pm:59
+#: standalone.pm:60
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
@@ -15163,7 +6067,7 @@ msgid ""
" --incident - program should be one of Mandriva Linux tools"
msgstr ""
-#: standalone.pm:65
+#: standalone.pm:66
#, c-format
msgid ""
"[--add]\n"
@@ -15174,7 +6078,7 @@ msgid ""
" --wizard - like --add"
msgstr ""
-#: standalone.pm:71
+#: standalone.pm:72
#, c-format
msgid ""
"\n"
@@ -15192,7 +6096,7 @@ msgid ""
" : and gs for ghostscript for only this one."
msgstr ""
-#: standalone.pm:86
+#: standalone.pm:87
#, c-format
msgid ""
"[OPTIONS]...\n"
@@ -15210,17 +6114,17 @@ msgid ""
"IP, nbi image name)"
msgstr ""
-#: standalone.pm:98
+#: standalone.pm:99
#, c-format
msgid "[keyboard]"
msgstr "[stokellaoueg]"
-#: standalone.pm:99
+#: standalone.pm:100
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr ""
+msgstr "[--file=marestr] [--word=mager] [--explain=regexp] [--alert]"
-#: standalone.pm:100
+#: standalone.pm:101
#, c-format
msgid ""
"[OPTIONS]\n"
@@ -15234,12 +6138,7 @@ msgid ""
"--quiet : do not be interactive. To be used with (dis)connect."
msgstr ""
-#: standalone.pm:109
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr ""
-
-#: standalone.pm:110
+#: standalone.pm:111
#, c-format
msgid ""
"[OPTION]...\n"
@@ -15251,14 +6150,14 @@ msgid ""
" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
msgstr ""
-#: standalone.pm:115
+#: standalone.pm:116
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
msgstr ""
-#: standalone.pm:116
+#: standalone.pm:117
#, c-format
msgid ""
" [everything]\n"
@@ -15266,7 +6165,7 @@ msgid ""
" XFdrake resolution"
msgstr ""
-#: standalone.pm:149
+#: standalone.pm:150
#, c-format
msgid ""
"\n"
@@ -15278,8782 +6177,102 @@ msgstr ""
"\"\n"
"\"testing] [-v|--version] "
-#: standalone/XFdrake:59
-#, c-format
-msgid "You need to reboot for changes to take effect"
-msgstr "Ret e vo deoc'h adloc'hañ evit talvezout ar c'hemm"
-
-#: standalone/XFdrake:90
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Dizereit mar plij ha neuze implijit Ctrl-Alt-WarGil"
-
-#: standalone/XFdrake:94
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr ""
-
-#: standalone/drakTermServ:112 standalone/drakTermServ:118
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr ""
-
-#: standalone/drakTermServ:129
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-
-#: standalone/drakTermServ:135
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr ""
-
-#: standalone/drakTermServ:144
-#, c-format
-msgid "Host name for client"
-msgstr "Anv ostiz ar pratik"
-
-#: standalone/drakTermServ:145
-#, c-format
-msgid "MAC address should be in the format 00:11:22:33:44:55"
-msgstr ""
-
-#: standalone/drakTermServ:146
-#, c-format
-msgid "IP address to be assigned to client"
-msgstr "Chomlec'h IP evit ar pratik"
-
-#: standalone/drakTermServ:147
-#, c-format
-msgid "Kernel/network adapter image to use to boot client"
-msgstr ""
-
-#: standalone/drakTermServ:148
-#, c-format
-msgid "Create masking files to allow configuration tools to run on client"
-msgstr ""
-
-#: standalone/drakTermServ:149
-#, c-format
-msgid "Applications will run on server machine"
-msgstr ""
-
-#: standalone/drakTermServ:234 standalone/drakTermServ:237
-#, c-format
-msgid "Terminal Server Configuration"
-msgstr "Kefluniadur ar servijer termenell"
-
-#: standalone/drakTermServ:243
-#, c-format
-msgid "dhcpd Config"
-msgstr "Kefluniadur dhcpd"
-
-#: standalone/drakTermServ:247
-#, c-format
-msgid "Enable Server"
-msgstr "Bevaat ar servijer"
-
-#: standalone/drakTermServ:253
-#, c-format
-msgid "Disable Server"
-msgstr "Marvaat ar servijer"
-
-#: standalone/drakTermServ:259
-#, c-format
-msgid "Start Server"
-msgstr "Loc'hañ ar servijer"
-
-#: standalone/drakTermServ:265
-#, c-format
-msgid "Stop Server"
-msgstr "Plaenaozañ ar servijer"
-
-#: standalone/drakTermServ:274
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Pladennig/ISO Etherboot"
-
-#: standalone/drakTermServ:278
-#, c-format
-msgid "Net Boot Images"
-msgstr "Skeudennoù loc'hañ dre ar rouedad"
-
-#: standalone/drakTermServ:285
-#, c-format
-msgid "Add/Del Users"
-msgstr "Ouzhpennañ pe dilemel arveriad"
-
-#: standalone/drakTermServ:289
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Ouzhpennañ pe dilemel pratikoù"
-
-#: standalone/drakTermServ:297
-#, c-format
-msgid "Images"
-msgstr "Skeudennoù"
-
-#: standalone/drakTermServ:298
-#, c-format
-msgid "Clients/Users"
-msgstr "Pratikoù/arveriad"
-
-#: standalone/drakTermServ:316 standalone/drakbug:47
-#, c-format
-msgid "First Time Wizard"
-msgstr "Pratikoù/Arveriaded"
-
-#: standalone/drakTermServ:354 standalone/drakTermServ:355
-#, c-format
-msgid "%s defined as dm, adding gdm user to /etc/passwd$$CLIENT$$"
-msgstr ""
-
-#: standalone/drakTermServ:361
-#, c-format
-msgid ""
-"\n"
-" This wizard routine will:\n"
-" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
-"\t2) Setup DHCP.\n"
-"\t\n"
-"After doing these steps, the wizard will:\n"
-"\t\n"
-" a) Make all "
-"nbis. \n"
-" b) Activate the "
-"server. \n"
-" c) Start the "
-"server. \n"
-" d) Synchronize the shadow files so that all users, including root, \n"
-" are added to the shadow$$CLIENT$$ "
-"file. \n"
-" e) Ask you to make a boot floppy.\n"
-" f) If it's thin clients, ask if you want to restart KDM.\n"
-msgstr ""
-
-#: standalone/drakTermServ:407
-#, c-format
-msgid "Cancel Wizard"
-msgstr "Nullañ ar skoazeller"
-
-#: standalone/drakTermServ:422
-#, c-format
-msgid "Please save dhcpd config!"
-msgstr "Enrollañ kefluniadur dhcpd mar plij !"
-
-#: standalone/drakTermServ:450
-#, c-format
-msgid "Use thin clients."
-msgstr ""
-
-#: standalone/drakTermServ:452
-#, c-format
-msgid "Sync client X keyboard settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:454
-#, c-format
-msgid ""
-"Please select default client type (Fat is the default type if 'Use thin' is "
-"unchecked).\n"
-" 'Thin' clients run everything off the server's CPU/RAM, using the client "
-"display.\n"
-" 'Fat' clients use their own CPU/RAM but the server's filesystem."
-msgstr ""
-
-#: standalone/drakTermServ:474
-#, c-format
-msgid "Creating net boot images for all kernels"
-msgstr ""
-
-#: standalone/drakTermServ:475 standalone/drakTermServ:807
-#: standalone/drakTermServ:823
-#, c-format
-msgid "This will take a few minutes."
-msgstr ""
-
-#: standalone/drakTermServ:481 standalone/drakTermServ:521
-#, c-format
-msgid "Done!"
-msgstr "Graet !"
-
-#: standalone/drakTermServ:492 standalone/drakTermServ:894
-#, c-format
-msgid "%s failed"
-msgstr "sac'het eo %s"
-
-#: standalone/drakTermServ:501
-#, c-format
-msgid ""
-"Not enough space to create\n"
-"NBIs in %s.\n"
-"Needed: %d MB, Free: %d MB"
-msgstr ""
-
-#: standalone/drakTermServ:507
-#, c-format
-msgid "Syncing server user list with client list, including root."
-msgstr ""
-
-#: standalone/drakTermServ:527
-#, c-format
-msgid ""
-"In order to enable changes made for thin clients, the display manager must "
-"be restarted. Restart now?"
-msgstr ""
-
-#: standalone/drakTermServ:564
-#, c-format
-msgid "Terminal Server Overview"
-msgstr "Hollgwel ar servijer termenell"
-
-#: standalone/drakTermServ:565
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and %s is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-
-#: standalone/drakTermServ:571
-#, c-format
-msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. %s helps create/"
-"remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
-msgstr ""
-
-#: standalone/drakTermServ:589
-#, c-format
-msgid ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be "
-"'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, \n"
-" %s is written for thin clients. \n"
-" System config files xdm-config, kdmrc, and gdm.conf are modified if "
-"thin clients are \n"
-" used, to enable XDMCP. Since there are security issues in using "
-"XDMCP, hosts.deny and \n"
-" hosts.allow are modified to limit access to the local subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-msgstr ""
-
-#: standalone/drakTermServ:609
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-msgstr ""
-
-#: standalone/drakTermServ:621
-#, c-format
-msgid ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. \n"
-" \t%s helps in this respect by adding or removing system users from "
-"this \n"
-" \tfile."
-msgstr ""
-
-#: standalone/drakTermServ:626
-#, c-format
-msgid ""
-" - Per client %s:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t%s will help create these files."
-msgstr ""
-
-#: standalone/drakTermServ:631
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-msgstr ""
-
-#: standalone/drakTermServ:640
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s will configure this file to work in conjunction with the images "
-"created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical TFTP configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
-msgstr ""
-
-#: standalone/drakTermServ:661
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-msgstr ""
-
-#: standalone/drakTermServ:694
-#, c-format
-msgid "Boot Floppy"
-msgstr "Bladennig loc'h"
-
-#: standalone/drakTermServ:696
-#, c-format
-msgid "Boot ISO"
-msgstr ""
-
-#: standalone/drakTermServ:698
-#, c-format
-msgid "PXE Image"
-msgstr "Skeudenn PXE"
-
-#: standalone/drakTermServ:759
-#, c-format
-msgid "Default kernel version"
-msgstr "Doare dre ziouer ar galon"
-
-#: standalone/drakTermServ:764
-#, c-format
-msgid "Create PXE images"
-msgstr "Krouiñ skeudennoù PXE"
-
-#: standalone/drakTermServ:765
-#, c-format
-msgid "Use Unionfs (TS2)"
-msgstr "Implijit Unionfs (TS2)"
-
-#: standalone/drakTermServ:795
-#, c-format
-msgid "Install i586 kernel for older clients"
-msgstr ""
-
-#: standalone/drakTermServ:805
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr ""
-
-#: standalone/drakTermServ:812
-#, c-format
-msgid "No kernel selected!"
-msgstr "Kalon diuzet ebet !"
-
-#: standalone/drakTermServ:815
-#, c-format
-msgid "Build Single NIC -->"
-msgstr ""
-
-#: standalone/drakTermServ:819 standalone/drakTermServ:1643
-#, c-format
-msgid "No NIC selected!"
-msgstr "Etrefas rouedad dibabet ebet !"
-
-#: standalone/drakTermServ:822
-#, c-format
-msgid "Build All Kernels -->"
-msgstr ""
-
-#: standalone/drakTermServ:835
-#, c-format
-msgid ""
-"Custom\n"
-"kernel args"
-msgstr ""
-
-#: standalone/drakTermServ:840
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Dilemel"
-
-#: standalone/drakTermServ:845
-#, c-format
-msgid "No image selected!"
-msgstr "N'eus skeudenn dibabet ebet !"
-
-#: standalone/drakTermServ:848
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Dibabit holl NBIoù"
-
-#: standalone/drakTermServ:925
-#, c-format
-msgid "Building images for kernel:"
-msgstr ""
-
-#: standalone/drakTermServ:1050
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-
-#: standalone/drakTermServ:1055
-#, c-format
-msgid "Add User -->"
-msgstr "Ouzhpennañ un arveriad -->"
-
-#: standalone/drakTermServ:1061
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- Dilemel an arveriad"
-
-#: standalone/drakTermServ:1097
-#, c-format
-msgid "type: %s"
-msgstr "seurt : %s"
-
-#: standalone/drakTermServ:1101
-#, c-format
-msgid "local config: %s"
-msgstr "kefluniadur lec'hel : %s"
-
-#: standalone/drakTermServ:1136
-#, fuzzy, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr "Kefluniadur goude staliañ"
-
-#: standalone/drakTermServ:1146
-#, c-format
-msgid "No net boot images created!"
-msgstr "N'eus ket bet skeudenn loc'hañ dre ar rouedad krouet ebet !"
-
-#: standalone/drakTermServ:1165
-#, c-format
-msgid "Thin Client"
-msgstr "Pratik bihan"
-
-#: standalone/drakTermServ:1169
-#, c-format
-msgid "Allow Thin Clients"
-msgstr ""
-
-#: standalone/drakTermServ:1170
-#, c-format
-msgid ""
-"Sync client X keyboard\n"
-" settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:1171
-#, c-format
-msgid "Add Client -->"
-msgstr "Ouzhpennañ ur pratik -->"
-
-#: standalone/drakTermServ:1181
-#, c-format
-msgid "Unknown MAC address format"
-msgstr ""
-
-#: standalone/drakTermServ:1195
-#, c-format
-msgid "type: fat"
-msgstr "seurt : pounner"
-
-#: standalone/drakTermServ:1196
-#, c-format
-msgid "type: thin"
-msgstr "seurt : skanñ"
-
-#: standalone/drakTermServ:1203
-#, c-format
-msgid "local config: false"
-msgstr "kefluniadur lec'hel : n'eo ket gwir"
-
-#: standalone/drakTermServ:1204
-#, c-format
-msgid "local config: true"
-msgstr "kefluniadur lec'hel : gwir eo"
-
-#: standalone/drakTermServ:1212
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- &Aozañ an c'hliant"
-
-#: standalone/drakTermServ:1237
-#, c-format
-msgid "Disable Local Config"
-msgstr "Marvaat ar gefluniadur lec'hel"
-
-#: standalone/drakTermServ:1244
-#, c-format
-msgid "Delete Client"
-msgstr "Dilemel an c'hliant"
-
-#: standalone/drakTermServ:1267
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-
-#: standalone/drakTermServ:1313
-#, c-format
-msgid "Thin clients will not work with autologin. Disable autologin?"
-msgstr ""
-
-#: standalone/drakTermServ:1328
-#, c-format
-msgid "All clients will use %s"
-msgstr "An holl gliantoù e vo oc'h implij %s"
-
-#: standalone/drakTermServ:1362
-#, c-format
-msgid "Subnet:"
-msgstr "Rannrouedad :"
-
-#: standalone/drakTermServ:1369
-#, c-format
-msgid "Netmask:"
-msgstr "Maskl rouedad :"
-
-#: standalone/drakTermServ:1376
-#, c-format
-msgid "Routers:"
-msgstr ""
-
-#: standalone/drakTermServ:1383
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Maskl rannrouedad :"
-
-#: standalone/drakTermServ:1390
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Chomlec'h skignañ :"
-
-#: standalone/drakTermServ:1397
-#, c-format
-msgid "Domain Name:"
-msgstr "Anv an domani :"
-
-#: standalone/drakTermServ:1405
-#, c-format
-msgid "Name Servers:"
-msgstr "Servijerioù anv :"
-
-#: standalone/drakTermServ:1416
-#, c-format
-msgid "IP Range Start:"
-msgstr "Ar skeul IP kentañ :"
-
-#: standalone/drakTermServ:1417
-#, c-format
-msgid "IP Range End:"
-msgstr "Ar skeul IP diwezhañ :"
-
-#: standalone/drakTermServ:1459
-#, c-format
-msgid "Append TS Includes To Existing Config"
-msgstr ""
-
-#: standalone/drakTermServ:1461
-#, c-format
-msgid "Write Config"
-msgstr "Skrivañ ar gefluniadur"
-
-#: standalone/drakTermServ:1477
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Kefluniadur ar servijer dhcpd"
-
-#: standalone/drakTermServ:1478
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-
-#: standalone/drakTermServ:1481
-#, c-format
-msgid ""
-"Dynamic IP Address Pool\n"
-"(needed for PXE clients):"
-msgstr ""
-
-#: standalone/drakTermServ:1634
-#, c-format
-msgid "Write to %s failed!"
-msgstr "N'hell ket bet gallet skrivañ e %s !"
-
-#: standalone/drakTermServ:1647
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Lakait ur bladennig el lenner map plij :"
-
-#: standalone/drakTermServ:1651
-#, c-format
-msgid "Could not access the floppy!"
-msgstr "N'hellan ket tizhout ar bladennig !"
-
-#: standalone/drakTermServ:1653
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Moien zo da dennañ ar bladennig bremañ"
-
-#: standalone/drakTermServ:1656
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Lenner pladennig hegerz ebet !"
-
-#: standalone/drakTermServ:1662
-#, c-format
-msgid "PXE image is %s/%s"
-msgstr "Ar skeudenn PXE zo %s/%s"
-
-#: standalone/drakTermServ:1664
-#, c-format
-msgid "Error writing %s/%s"
-msgstr "Fazi en ur skrivañ %s/%s"
-
-#: standalone/drakTermServ:1676
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "Ar skeudenn ISO Etherboot zo %s"
-
-#: standalone/drakTermServ:1680
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr ""
-
-#: standalone/drakTermServ:1700
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Ezhomm m'eus krouiñ /etc/dhcpd.conf da gentañ !"
-
-#: standalone/drakTermServ:1867
-#, c-format
-msgid "%s passwd bad in Terminal Server - rewriting...\n"
-msgstr ""
-
-#: standalone/drakTermServ:1880
-#, c-format
-msgid "%s is not a user..\n"
-msgstr "N'eo ket un arveriad %s ...\n"
-
-#: standalone/drakTermServ:1881
-#, c-format
-msgid "%s is already a Terminal Server user\n"
-msgstr ""
-
-#: standalone/drakTermServ:1883
-#, c-format
-msgid "Addition of %s to Terminal Server failed!\n"
-msgstr ""
-
-#: standalone/drakTermServ:1885
-#, c-format
-msgid "%s added to Terminal Server\n"
-msgstr "%s e oa ouzphenn ouzh ar servijer termenell\n"
-
-#: standalone/drakTermServ:1903
-#, c-format
-msgid "Deleted %s...\n"
-msgstr "%s dilemelet ...\n"
-
-#: standalone/drakTermServ:1905 standalone/drakTermServ:1978
-#, c-format
-msgid "%s not found...\n"
-msgstr "N'eo ket bet kavet %s ...\n"
-
-#: standalone/drakTermServ:2006
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
-
-#: standalone/drakTermServ:2158
-#, c-format
-msgid "Configuration changed - restart %s/dhcpd?"
-msgstr "Kefluniadur kemmet - adloc'hañ %s/dhcpd ?"
-
-#: standalone/drakautoinst:38 standalone/drakhosts:123
-#: standalone/drakhosts:129 standalone/draknfs:84 standalone/draknfs:105
-#: standalone/draknfs:444 standalone/draknfs:447 standalone/draknfs:539
-#: standalone/draknfs:546 standalone/draksambashare:187
-#: standalone/draksambashare:208 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Error!"
-msgstr "Fazi !"
-
-#: standalone/drakautoinst:39
-#, c-format
-msgid "I can not find needed image file `%s'."
-msgstr "N'hellan ket kavour ar restr skeudenn red « %s »."
-
-#: standalone/drakautoinst:41
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Keflunier ar staliadur emgefreek"
-
-#: standalone/drakautoinst:42
-#, c-format
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Press ok to continue."
-msgstr ""
-
-#: standalone/drakautoinst:60
-#, c-format
-msgid "replay"
-msgstr "adc'hoari"
-
-#: standalone/drakautoinst:60 standalone/drakautoinst:69
-#, c-format
-msgid "manual"
-msgstr "diwar zorn"
-
-#: standalone/drakautoinst:64
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Kefluniadur staliañ emgefreek"
-
-#: standalone/drakautoinst:65
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: standalone/drakautoinst:77 standalone/drakautoinst:78
-#: standalone/drakautoinst:92
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "O krouiñ ur bladennig staliañ emgefreek"
-
-#: standalone/drakautoinst:90
-#, c-format
-msgid "Insert another blank floppy in drive %s (for drivers disk)"
-msgstr ""
-"Lakait ur bladennig gwerc'h all el lenner %s (evit pladenn ar sturieroù)"
-
-#: standalone/drakautoinst:91
-#, c-format
-msgid "Creating auto install floppy (drivers disk)"
-msgstr "O krouiñ ur bladennig staliañ emgefreek (pladenn ar sturieroù)"
-
-#: standalone/drakautoinst:156
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: standalone/drakautoinst:251
-#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: standalone/drakautoinst:287
-#, c-format
-msgid "Auto Install"
-msgstr "Staliañ emgefreek"
-
-#: standalone/drakautoinst:356
-#, c-format
-msgid "Add an item"
-msgstr "Ouzhpennañ un hini"
-
-#: standalone/drakautoinst:363
-#, c-format
-msgid "Remove the last item"
-msgstr "Lemel an hini diwezhañ"
-
-#: standalone/drakbackup:157
-#, c-format
-msgid ""
-"Expect is an extension to the TCL scripting language that allows interactive "
-"sessions without user intervention."
-msgstr ""
-
-#: standalone/drakbackup:158
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr ""
-
-#: standalone/drakbackup:159
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
-
-#: standalone/drakbackup:160
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-
-#: standalone/drakbackup:161
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-
-#: standalone/drakbackup:162
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-
-#: standalone/drakbackup:163
-#, c-format
-msgid ""
-"Star should be selected if you want to backup EA or ACLs, otherwise choose "
-"tar"
-msgstr ""
-
-#: standalone/drakbackup:164
-#, c-format
-msgid ""
-"This should be a local user or email address that you want the backup "
-"results sent to. You will need to define a functioning mail server. Multiple "
-"users can be in a comma seperated list"
-msgstr ""
-
-#: standalone/drakbackup:165
-#, c-format
-msgid ""
-"This should be the return address that you want the backup results sent "
-"from. Default is drakbackup."
-msgstr ""
-
-#: standalone/drakbackup:166
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-
-#: standalone/drakbackup:167
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-
-#: standalone/drakbackup:168
-#, c-format
-msgid ""
-"Selecting this option allows you to view the raw output from the restore "
-"process, after a file restore."
-msgstr ""
-
-#: standalone/drakbackup:169
-#, c-format
-msgid ""
-"Some protocols, like rsync, may be configured at the server end. Rather "
-"than using a directory path, you would use the 'module' name for the service "
-"path."
-msgstr ""
-
-#: standalone/drakbackup:170
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-
-#: standalone/drakbackup:344
-#, c-format
-msgid "No media selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:348
-#, c-format
-msgid "No interval selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:393
-#, c-format
-msgid "Interval cron not available as non-root"
-msgstr ""
-
-#: standalone/drakbackup:477 standalone/logdrake:439
-#, c-format
-msgid "\"%s\" neither is a valid email nor is an existing local user!"
-msgstr ""
-
-#: standalone/drakbackup:481 standalone/logdrake:444
-#, 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 ""
-
-#: standalone/drakbackup:491
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr ""
-
-#: standalone/drakbackup:493
-#, c-format
-msgid "Old user list:\n"
-msgstr ""
-
-#: standalone/drakbackup:495
-#, c-format
-msgid "New user list:\n"
-msgstr ""
-
-#: standalone/drakbackup:524
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
-msgstr ""
-
-#: standalone/drakbackup:525
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-msgstr ""
-
-#: standalone/drakbackup:531
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:556 standalone/drakbackup:627
-#: standalone/drakbackup:683
-#, c-format
-msgid "Total progress"
-msgstr "Araogenn hollek"
-
-#: standalone/drakbackup:609
-#, c-format
-msgid ""
-"%s exists, delete?\n"
-"\n"
-"If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-
-#: standalone/drakbackup:618
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr ""
-
-#: standalone/drakbackup:625
-#, c-format
-msgid "Cannot spawn %s."
-msgstr "Fazi en ur loc'hañ %s."
-
-#: standalone/drakbackup:642
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr ""
-
-#: standalone/drakbackup:643
-#, c-format
-msgid "Bad password on %s"
-msgstr "N'eo ket tremenger mad war %s"
-
-#: standalone/drakbackup:644
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr ""
-
-#: standalone/drakbackup:645
-#, c-format
-msgid "Can not find %s on %s"
-msgstr "Ne m'eus ket bet kavout %s e-barzh %s"
-
-#: standalone/drakbackup:649
-#, c-format
-msgid "%s not responding"
-msgstr ""
-
-#: standalone/drakbackup:653
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-
-#: standalone/drakbackup:703
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "N'eus ket ur bladennig er CD-R/DVD-R !"
-
-#: standalone/drakbackup:707
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr ""
-
-#: standalone/drakbackup:712
-#, c-format
-msgid "Not erasable media!"
-msgstr ""
-
-#: standalone/drakbackup:754
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr ""
-
-#: standalone/drakbackup:812
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr ""
-
-#: standalone/drakbackup:840
-#, c-format
-msgid "No tape in %s!"
-msgstr "seizenn ebet e %s !"
-
-#: standalone/drakbackup:953
-#, c-format
-msgid ""
-"Backup destination quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-
-#: standalone/drakbackup:973 standalone/drakbackup:1005
-#, c-format
-msgid "Backup system files..."
-msgstr "Gwareziñ restroù ar reizhiad ..."
-
-#: standalone/drakbackup:1006 standalone/drakbackup:1045
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr ""
-
-#: standalone/drakbackup:1044
-#, c-format
-msgid "Backup User files..."
-msgstr "Gwareziñ restroù an arveriaded ..."
-
-#: standalone/drakbackup:1078
-#, c-format
-msgid "Backup Other files..."
-msgstr "Gwareziñ restroù all ..."
-
-#: standalone/drakbackup:1079
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "O wareziñ ar bladenn ..."
-
-#: standalone/drakbackup:1084
-#, c-format
-msgid "No changes to backup!"
-msgstr "Cheñchoù ebet da gwareziñ !"
-
-#: standalone/drakbackup:1100 standalone/drakbackup:1122
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:1109
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: standalone/drakbackup:1110
-#, c-format
-msgid ""
-"Error during sending file via FTP. Please correct your FTP configuration."
-msgstr ""
-
-#: standalone/drakbackup:1112
-#, c-format
-msgid "file list sent by FTP: %s\n"
-msgstr ""
-
-#: standalone/drakbackup:1127
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:1132
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:1141
-#, c-format
-msgid "Error sending mail. Your report mail was not sent."
-msgstr ""
-
-#: standalone/drakbackup:1142
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr "Fazi en ur kas ar postel. \n"
-
-#: standalone/drakbackup:1172
-#, c-format
-msgid "Can not create catalog!"
-msgstr "Ne m'eus ket krouiñ ar c'hatalog !"
-
-#: standalone/drakbackup:1332
-#, c-format
-msgid "Problem installing %s"
-msgstr "Fazi en ur staliañ %s"
-
-#: standalone/drakbackup:1420
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Gwareziñ restroù hor reizhiad. (renkell /etc)"
-
-#: standalone/drakbackup:1421 standalone/drakbackup:1484
-#: standalone/drakbackup:1550
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr ""
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Incremental Backups"
-msgstr ""
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Differential Backups"
-msgstr ""
-
-#: standalone/drakbackup:1425
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Ne warezit ket restroù malus (passwd, group, fstab)"
-
-#: standalone/drakbackup:1456
-#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Dibabit pep arveruad e fell deoc'h kaout en ho gwareziñ."
-
-#: standalone/drakbackup:1483
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Ne warezit ket krubuilh ar furcher"
-
-#: standalone/drakbackup:1537
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Dibabit ar restroù pe ar renkelloù ha klikit ouzh « Mat eo »"
-
-#: standalone/drakbackup:1538 standalone/drakfont:650
-#, c-format
-msgid "Remove Selected"
-msgstr "Lemel an hini dibabet"
-
-#: standalone/drakbackup:1601
-#, c-format
-msgid "Users"
-msgstr "Arveriadioù"
-
-#: standalone/drakbackup:1621
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Implijit ur gevreadenn evit gwareziñ"
-
-#: standalone/drakbackup:1623
-#, c-format
-msgid "Net Method:"
-msgstr "Hentenn rouedad :"
-
-#: standalone/drakbackup:1627
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Implijit Expect evit SSH"
-
-#: standalone/drakbackup:1628
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr ""
-
-#: standalone/drakbackup:1630
-#, c-format
-msgid "Transfer Now"
-msgstr "Kas bremañ"
-
-#: standalone/drakbackup:1632
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr ""
-
-#: standalone/drakbackup:1635
-#, c-format
-msgid "Host name or IP."
-msgstr "Anv pe IP an oztiz."
-
-#: standalone/drakbackup:1640
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
-
-#: standalone/drakbackup:1652
-#, c-format
-msgid "Remember this password"
-msgstr "Enrollañ an tremenger-mañ"
-
-#: standalone/drakbackup:1664
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Dao eo da reiñ un anv ostiz, un anv arveriad hag un tremenger !"
-
-#: standalone/drakbackup:1755
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Implijit ur CD-R/DVD-R evit gwareziñ"
-
-#: standalone/drakbackup:1758
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Dibabit ment ho drobarzhell CD/DVD"
-
-#: standalone/drakbackup:1763
-#, c-format
-msgid "Choose your CD/DVD media size"
-msgstr "Dibabit ment ho vedia CD/DVD"
-
-#: standalone/drakbackup:1770
-#, c-format
-msgid "Multisession CD"
-msgstr "CD lies dalc'h"
-
-#: standalone/drakbackup:1772
-#, c-format
-msgid "CDRW media"
-msgstr "Media CDRW"
-
-#
-#: standalone/drakbackup:1778
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Chetanñ ho vedia LS (Dalc'h kentañ)"
-
-#: standalone/drakbackup:1779
-#, c-format
-msgid " Erase Now "
-msgstr " Chetanñ bremañ "
-
-#: standalone/drakbackup:1785
-#, c-format
-msgid "DVD+RW media"
-msgstr "Media DVD+RW"
-
-#: standalone/drakbackup:1787
-#, c-format
-msgid "DVD-R media"
-msgstr "Media DVD-R"
-
-#: standalone/drakbackup:1789
-#, c-format
-msgid "DVDRAM device"
-msgstr "Media DVDRAM"
-
-#: standalone/drakbackup:1820
-#, c-format
-msgid "No CD device defined!"
-msgstr "N'eus trobarzhell CD dibabet ebet !"
-
-#: standalone/drakbackup:1862
-#, c-format
-msgid "Use tape to backup"
-msgstr "Implijit ar seizenn evit gwareziñ"
-
-#: standalone/drakbackup:1865
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Anv an drobarzhell da implij evit gwareziñ"
-
-#: standalone/drakbackup:1871
-#, c-format
-msgid "Backup directly to tape"
-msgstr "Gwareziñ ent eeun d'ar vandenn"
-
-#: standalone/drakbackup:1877
-#, c-format
-msgid "Use tape hardware compression (EXPERIMENTAL)"
-msgstr ""
-
-#: standalone/drakbackup:1883
-#, c-format
-msgid "Do not rewind tape after backup"
-msgstr "Punañ ar seizenn pa vez echu ar gwareziñ"
-
-#: standalone/drakbackup:1889
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Chetanñ ar seizenn a-raok kregiñ ar gwareziñ"
-
-#: standalone/drakbackup:1895
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Stlepel ar seizenn pa vez echu ar gwareziñ"
-
-#: standalone/drakbackup:1976
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Roit anv ar renkell e-belec'h e vo aet an dielloù :"
-
-#: standalone/drakbackup:1980
-#, c-format
-msgid "Directory to save to"
-msgstr "Renkell e-belec'h e vo aet an dielloù"
-
-#: standalone/drakbackup:1985
-#, c-format
-msgid ""
-"Maximum disk space\n"
-" allocated for backups (MB)"
-msgstr ""
-
-#: standalone/drakbackup:1989
-#, c-format
-msgid ""
-"Delete incremental or differential\n"
-" backups older than N days\n"
-" (0 is keep all backups) to save space"
-msgstr ""
-
-#: standalone/drakbackup:2056
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CD-R / DVD-R"
-
-#: standalone/drakbackup:2061
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Pladenn / NFS"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2077
-#: standalone/drakbackup:2082
-#, c-format
-msgid "hourly"
-msgstr "euriek"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2078
-#: standalone/drakbackup:2083
-#, c-format
-msgid "daily"
-msgstr "d'ar pemdez"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2079
-#: standalone/drakbackup:2084
-#, c-format
-msgid "weekly"
-msgstr "sizhuniek"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2080
-#: standalone/drakbackup:2085
-#, c-format
-msgid "monthly"
-msgstr "miziek"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2081
-#: standalone/drakbackup:2086
-#, c-format
-msgid "custom"
-msgstr "diouzhoc'h"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "January"
-msgstr "Genver"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "February"
-msgstr "C'Hwevrer"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "March"
-msgstr "Meurzh"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "April"
-msgstr "Ebrel"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "May"
-msgstr "Mae"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "June"
-msgstr "Mezheven"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "July"
-msgstr "Gouhere"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "August"
-msgstr "Eost"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "September"
-msgstr "Gwengolo"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "October"
-msgstr "Here"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "November"
-msgstr "Du"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "December"
-msgstr "Kerzu"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Sunday"
-msgstr "Sul"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Monday"
-msgstr "Lun"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Tuesday"
-msgstr "Meurzh"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Wednesday"
-msgstr "Merc'her"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Thursday"
-msgstr "Yaou"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Friday"
-msgstr "Gwener"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Saturday"
-msgstr "Sadorn"
-
-#: standalone/drakbackup:2126
-#, c-format
-msgid "Delete cron entry"
-msgstr "Dilemel ar vouetadur cron"
-
-#: standalone/drakbackup:2127
-#, c-format
-msgid "Add cron entry"
-msgstr "Ouzhpennañ ur vouetadur cron"
-
-#: standalone/drakbackup:2185
-#, c-format
-msgid "Use daemon"
-msgstr "Implij un diaoul"
-
-#: standalone/drakbackup:2189
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr ""
-
-#: standalone/drakbackup:2197
-#, c-format
-msgid "Minute"
-msgstr "Munutenn"
-
-#: standalone/drakbackup:2201
-#, c-format
-msgid "Hour"
-msgstr "Eur"
-
-#: standalone/drakbackup:2205
-#, c-format
-msgid "Day"
-msgstr "Deiz"
-
-#: standalone/drakbackup:2209
-#, c-format
-msgid "Month"
-msgstr "Miz"
-
-#: standalone/drakbackup:2213
-#, c-format
-msgid "Weekday (start)"
-msgstr "Deiz ar sizhun (deroù)"
-
-#: standalone/drakbackup:2217
-#, c-format
-msgid "Weekday (end)"
-msgstr "Deiz ar sizhun (dibenn)"
-
-#: standalone/drakbackup:2221
-#, c-format
-msgid "Profile"
-msgstr "Profil"
-
-#: standalone/drakbackup:2227
-#, c-format
-msgid "Current crontab:"
-msgstr "Crontab red :"
-
-#: standalone/drakbackup:2235
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "Dibabit ar vedia evit gwareziñ, mar plij."
-
-#: standalone/drakbackup:2239
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: standalone/drakbackup:2240
-#, c-format
-msgid ""
-"If your machine is not on all the time, you might want to install anacron."
-msgstr ""
-
-#: standalone/drakbackup:2316
-#, c-format
-msgid "Please choose the archive program"
-msgstr "Dibabit ar goulev gwareziñ mar plij"
-
-#: standalone/drakbackup:2321
-#, c-format
-msgid "Please choose the compression type"
-msgstr "Dibabit seurt ar waskerezh mar plij"
-
-#: standalone/drakbackup:2325
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Implijit ar restroù .backupignore"
-
-#: standalone/drakbackup:2327
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Kas ur dezrevell postel goude gwareziñ da :"
-
-#: standalone/drakbackup:2333
-#, c-format
-msgid "Return address for sent mail:"
-msgstr "Chomlec'h distro evit kas postel :"
-
-#: standalone/drakbackup:2339
-#, c-format
-msgid "SMTP server for mail:"
-msgstr "Servijer SMTP evit ar posteloù :"
-
-#: standalone/drakbackup:2343
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
-
-#: standalone/drakbackup:2344
-#, c-format
-msgid "View restore log after file restore."
-msgstr ""
-
-#: standalone/drakbackup:2389
-#, c-format
-msgid "What"
-msgstr "Petra"
-
-#: standalone/drakbackup:2394
-#, c-format
-msgid "Where"
-msgstr "Pelec'h"
-
-#: standalone/drakbackup:2399
-#, c-format
-msgid "When"
-msgstr "Pa"
-
-#: standalone/drakbackup:2404
-#, c-format
-msgid "More Options"
-msgstr "Dibarzhoù a-gresk"
-
-#: standalone/drakbackup:2417
-#, c-format
-msgid "Backup destination not configured..."
-msgstr "N'eo ket kefluniet dehaezadur an dielloù ..."
-
-#: standalone/drakbackup:2437 standalone/drakbackup:4367
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Kefluniadur Drakbackup"
-
-#: standalone/drakbackup:2453
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Dibabit e-belec'h e vo aet an dielloù, mar plij"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Hard Drive used to prepare backups for all media"
-msgstr ""
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Across Network"
-msgstr "War ar rouedad"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On CD-R"
-msgstr "War CD-R"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On Tape Device"
-msgstr "War Bandenn"
-
-#: standalone/drakbackup:2502
-#, c-format
-msgid "Backup Users"
-msgstr "Gwareziñ an averiaded"
-
-#: standalone/drakbackup:2503
-#, c-format
-msgid " (Default is all users)"
-msgstr " (Pep arveriad dre ziouer)"
-
-#: standalone/drakbackup:2516
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Dibabit petra'zo da wareziñ, mar plij"
-
-#: standalone/drakbackup:2517
-#, c-format
-msgid "Backup System"
-msgstr "Gwareziñ ar reizhiad"
-
-#: standalone/drakbackup:2519
-#, c-format
-msgid "Select user manually"
-msgstr "Dibabit an arveriad diwar zorn"
-
-#: standalone/drakbackup:2548
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Dibabit ar roadoù da gwareziñ, mar plij ..."
-
-#: standalone/drakbackup:2620
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Tarzhoù gwareziñ : \n"
-
-#: standalone/drakbackup:2621
-#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Restroù ar reizhiad :\n"
-
-#: standalone/drakbackup:2623
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Restroù an arveriad :\n"
-
-#: standalone/drakbackup:2625
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Restroù all :\n"
-
-#: standalone/drakbackup:2627
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2628
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr ""
-
-#: standalone/drakbackup:2629
-#, c-format
-msgid "\tDelete backups older than %s day(s)\n"
-msgstr ""
-
-#: standalone/drakbackup:2632
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
-
-#: standalone/drakbackup:2637
-#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr ""
-"\n"
-"- Engravañ d'ar CD"
-
-#: standalone/drakbackup:2638
-#, c-format
-msgid "RW"
-msgstr "LS"
-
-#: standalone/drakbackup:2639
-#, c-format
-msgid " on device: %s"
-msgstr "war an trobarzhell : %s"
-
-#: standalone/drakbackup:2640
-#, c-format
-msgid " (multi-session)"
-msgstr " (lies dalc'h)"
-
-#: standalone/drakbackup:2641
-#, c-format
-msgid ""
-"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-"\n"
-"- Gwareziñ d'ar vandenn war an drobarzhell : %s"
-
-#: standalone/drakbackup:2642
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tChetañ=%s"
-
-#: standalone/drakbackup:2644
-#, c-format
-msgid "\tBackup directly to Tape\n"
-msgstr "\tGwareziñ ent eeun d'ar vandenn\n"
-
-#: standalone/drakbackup:2646
-#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
-"\n"
-"- enrollañ dre %s war ostiz : %s\n"
-
-#: standalone/drakbackup:2647
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: standalone/drakbackup:2648
-#, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Dibarzhoù :\n"
-
-#: standalone/drakbackup:2649
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tNe warezit ket restroù ar reizhiad\n"
-
-#: standalone/drakbackup:2651
-#, c-format
-msgid "\tBackups use %s and bzip2\n"
-msgstr "\tOc'h implij %s ha bzip2 emañ an dielloù\n"
-
-#: standalone/drakbackup:2652
-#, c-format
-msgid "\tBackups use %s and gzip\n"
-msgstr "\tOc'h implij %s ha gzip emañ an dielloù\n"
-
-#: standalone/drakbackup:2653
-#, c-format
-msgid "\tBackups use %s only\n"
-msgstr "\tOc'h implij %s hepken emañ an dielloù\n"
-
-#: standalone/drakbackup:2655
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tImplijit ar restroù .backupignore\n"
-
-#: standalone/drakbackup:2656
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tKas ur postel da %s\n"
-
-#: standalone/drakbackup:2657
-#, c-format
-msgid "\tSend mail from %s\n"
-msgstr "\tKas ur postel eus %s\n"
-
-#: standalone/drakbackup:2658
-#, c-format
-msgid "\tUsing SMTP server %s\n"
-msgstr "\tOc'h implij ar servijer SMTP %s\n"
-
-#: standalone/drakbackup:2660
-#, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
-msgstr ""
-"\n"
-"- Diaoul, %s dre :\n"
-
-#: standalone/drakbackup:2661
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-Pladenn.\n"
-
-#: standalone/drakbackup:2662
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-R.\n"
-
-#: standalone/drakbackup:2663
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t- Bandenn\n"
-
-#: standalone/drakbackup:2664
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Rouedad gant FTP\n"
-
-#: standalone/drakbackup:2665
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Rouedad gant SSH.\n"
-
-#: standalone/drakbackup:2666
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-Rouedad gant rsync.\n"
-
-#: standalone/drakbackup:2668
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-"N'eus kefluniadur ebet, klikit ouzh « Skoazeller » pe « Barek » mar plij.\n"
-
-#: standalone/drakbackup:2673
-#, c-format
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:2675
-#, c-format
-msgid "- Restore System Files.\n"
-msgstr "- Assevel restroù ar reizhiad.\n"
-
-#: standalone/drakbackup:2677 standalone/drakbackup:2687
-#, c-format
-msgid " - from date: %s %s\n"
-msgstr " - eus an deizad : %s %s\n"
-
-#: standalone/drakbackup:2680
-#, c-format
-msgid "- Restore User Files: \n"
-msgstr "- Assevel restroù an arveriad : \n"
-
-#: standalone/drakbackup:2685
-#, c-format
-msgid "- Restore Other Files: \n"
-msgstr "- Assevel ar restroù all : \n"
-
-#: standalone/drakbackup:2864
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:2866
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Undibabit pe lemel anezhañ ar wech kentañ, mar plij."
-
-#: standalone/drakbackup:2876
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Siek eo ar restroù gwareziñ"
-
-#: standalone/drakbackup:2897
-#, c-format
-msgid " All of your selected data have been "
-msgstr ""
-
-#: standalone/drakbackup:2898
-#, c-format
-msgid " Successfully Restored on %s "
-msgstr ""
-
-#: standalone/drakbackup:2999
-#, c-format
-msgid "/usr/bin/star not found, using tar..."
-msgstr ""
-
-#: standalone/drakbackup:3035
-#, c-format
-msgid " Restore Configuration "
-msgstr " Kefluniadur assevel "
-
-#: standalone/drakbackup:3063
-#, c-format
-msgid "OK to restore the other files."
-msgstr ""
-
-#: standalone/drakbackup:3079
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: standalone/drakbackup:3144
-#, c-format
-msgid "Please choose the date to restore:"
-msgstr ""
-
-#: standalone/drakbackup:3181
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Assevel eus ar bladenn."
-
-#: standalone/drakbackup:3183
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Roit anv ar renkell e-belec'h e vo aet an dielloù"
-
-#: standalone/drakbackup:3187
+#: timezone.pm:148 timezone.pm:149
#, c-format
-msgid "Directory with backups"
-msgstr "Renkell gant dielloù"
+msgid "All servers"
+msgstr "Pep servijer"
-#: standalone/drakbackup:3241
+#: timezone.pm:183
#, c-format
-msgid "Select another media to restore from"
-msgstr "Dibabit ur vedia all da assevel eus"
-
-#: standalone/drakbackup:3243
-#, c-format
-msgid "Other Media"
-msgstr "Media all"
-
-#: standalone/drakbackup:3248
-#, c-format
-msgid "Restore system"
-msgstr "Assevel ar reizhiad"
-
-#: standalone/drakbackup:3249
-#, c-format
-msgid "Restore Users"
-msgstr "Assevel an arveriaded"
-
-#: standalone/drakbackup:3250
-#, c-format
-msgid "Restore Other"
-msgstr "Assevel ar re all"
-
-#: standalone/drakbackup:3252
-#, c-format
-msgid "Select path to restore (instead of /)"
-msgstr "Dibabit an hent da assevel e-barzh (e-lec'h /)"
-
-#: standalone/drakbackup:3256 standalone/drakbackup:3539
-#, c-format
-msgid "Path To Restore To"
-msgstr "Hent da assevel e-barzh"
-
-#: standalone/drakbackup:3259
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: standalone/drakbackup:3261
-#, c-format
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: standalone/drakbackup:3345
-#, c-format
-msgid "Filename text substring to search for (empty string matches all):"
-msgstr ""
-
-#: standalone/drakbackup:3348
-#, c-format
-msgid "Search Backups"
-msgstr ""
-
-#: standalone/drakbackup:3367
-#, c-format
-msgid "No matches found..."
-msgstr "N'eus enmont klotus ebet ..."
-
-#: standalone/drakbackup:3371
-#, c-format
-msgid "Restore Selected"
-msgstr "Assevel ar re dibabet"
-
-#: standalone/drakbackup:3507
-#, c-format
-msgid ""
-"Click date/time to see backup files.\n"
-"Ctrl-Click files to select multiple files."
-msgstr ""
-
-#: standalone/drakbackup:3513
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
-
-#: standalone/drakbackup:3522
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr ""
-"Assevel ar restroù\n"
-"dibabet"
-
-#: standalone/drakbackup:3599
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "N'eo ket bet kavet ar restr gwareziñ ouzh %s."
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid "Restore From CD"
-msgstr "Assevel eus un CD"
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-
-#: standalone/drakbackup:3614
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr ""
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid "Restore From Tape"
-msgstr "Assevel eus ur seizenn"
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-
-#: standalone/drakbackup:3626
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network"
-msgstr "Assevel eus ar rouedad"
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Assevel eus ar rouedad gant ar c'homenad : %s"
-
-#: standalone/drakbackup:3638
-#, c-format
-msgid "Host Name"
-msgstr "Anv an Ostiz"
-
-#: standalone/drakbackup:3639
-#, c-format
-msgid "Host Path or Module"
-msgstr "Hent an ostiz pe mollad"
-
-#: standalone/drakbackup:3646
-#, c-format
-msgid "Password required"
-msgstr "Red eo reuñ un tremenger"
-
-#: standalone/drakbackup:3652
-#, c-format
-msgid "Username required"
-msgstr "Red eo reuñ un anv arveriad"
-
-#: standalone/drakbackup:3655
-#, c-format
-msgid "Hostname required"
-msgstr "Red eo reuñ un anv ostiz"
-
-#: standalone/drakbackup:3660
-#, c-format
-msgid "Path or Module required"
-msgstr "Red eo reuñ un hent pe ur mollad"
-
-#: standalone/drakbackup:3672
-#, c-format
-msgid "Files Restored..."
-msgstr "Restroù assevelet ..."
-
-#: standalone/drakbackup:3675
-#, c-format
-msgid "Restore Failed..."
-msgstr "Fazi en ur assevel ..."
-
-#: standalone/drakbackup:3703
-#, c-format
-msgid "%s not retrieved..."
-msgstr "N'eo ket digaset %s ..."
-
-#: standalone/drakbackup:3929 standalone/drakbackup:3998
-#, c-format
-msgid "Search for files to restore"
-msgstr "Klask ar restroù da assevel"
-
-#: standalone/drakbackup:3933
-#, c-format
-msgid "Restore all backups"
-msgstr "Assevel an holl zielloù"
-
-#: standalone/drakbackup:3941
-#, c-format
-msgid "Custom Restore"
-msgstr "Assevel diouzhoc'h"
-
-#: standalone/drakbackup:3945 standalone/drakbackup:3994
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Assevel eus ar c'hatalog"
-
-#: standalone/drakbackup:3966
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Ne m'eus ket kavout dielloù da assevel ...\n"
-
-#: standalone/drakbackup:3967
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Gwiriekaat ma vez an hent mat %s"
-
-#: standalone/drakbackup:3968
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " hag emañ ar CD e-barzh an unvez"
-
-#: standalone/drakbackup:3970
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr "Red eo reuñ"
-
-#: standalone/drakbackup:3986
-#, c-format
-msgid "CD in place - continue."
-msgstr "Enlakaet eo ar CD. Kenderc'hel."
-
-#: standalone/drakbackup:3991
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Furchal er renkell adaozañ nevez."
-
-#: standalone/drakbackup:3992
-#, fuzzy, c-format
-msgid "Directory To Restore From"
-msgstr "Assevel adalek ar bladennig"
-
-#: standalone/drakbackup:4028
-#, c-format
-msgid "Restore Progress"
-msgstr "Araogenn adaozañ"
-
-#: standalone/drakbackup:4136
-#, c-format
-msgid "Build Backup"
-msgstr "Sevel an diell"
-
-#: standalone/drakbackup:4169 standalone/drakbackup:4466
-#, c-format
-msgid "Restore"
-msgstr "Nevesaat"
-
-#: standalone/drakbackup:4261
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Dibabi ar roadoù da assevel mar plij ..."
-
-#: standalone/drakbackup:4301
-#, c-format
-msgid "Backup system files"
-msgstr "Gwareziñ restroù ar reizhiad"
-
-#: standalone/drakbackup:4304
-#, c-format
-msgid "Backup user files"
-msgstr "Gwareziñ an averiaded"
-
-#: standalone/drakbackup:4307
-#, c-format
-msgid "Backup other files"
-msgstr "Gwareziñ restroù all"
-
-#: standalone/drakbackup:4310 standalone/drakbackup:4344
-#, c-format
-msgid "Total Progress"
-msgstr "Araogenn hollek"
-
-#: standalone/drakbackup:4336
-#, c-format
-msgid "Sending files by FTP"
-msgstr "O kas restroù gant FTP"
-
-#: standalone/drakbackup:4339
-#, c-format
-msgid "Sending files..."
-msgstr "O kas restroù ..."
-
-#: standalone/drakbackup:4409
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Gwareziñ bremañ eus ar restr kefluniadur"
-
-#: standalone/drakbackup:4414
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Sell ouzh kefluniadur gwareziñ."
-
-#: standalone/drakbackup:4440
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Kefluniadur ar skoazellerien"
-
-#: standalone/drakbackup:4445
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Kefluniadur barek"
-
-#: standalone/drakbackup:4450
-#, c-format
-msgid "View Configuration"
-msgstr "Sell ouzh gefluniadur"
-
-#: standalone/drakbackup:4454
-#, c-format
-msgid "View Last Log"
-msgstr ""
-
-#: standalone/drakbackup:4459
-#, c-format
-msgid "Backup Now"
-msgstr "Gwareziñ bremañ"
-
-#: standalone/drakbackup:4463
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"N'eus kefluniadur kavet ebet\n"
-"klikit ouzh « Skoazeller » pe « Barek » mar plij."
-
-#: standalone/drakbackup:4501
-#, c-format
-msgid "Load profile"
-msgstr "Kargañ ar profil"
-
-#: standalone/drakbackup:4510
-#, c-format
-msgid "Save profile as..."
-msgstr "Enrollañ ar profil e ..."
-
-#: standalone/drakbackup:4532 standalone/drakbackup:4535
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: standalone/drakboot:49
-#, c-format
-msgid "No bootloader found, creating a new configuration"
-msgstr ""
+msgid "Global"
+msgstr "Hollek"
-#: standalone/drakboot:84 standalone/harddrake2:190 standalone/harddrake2:191
-#: standalone/logdrake:69 standalone/printerdrake:150
-#: standalone/printerdrake:151 standalone/printerdrake:152
+#: timezone.pm:186
#, c-format
-msgid "/_File"
-msgstr "/_Restr"
+msgid "Africa"
+msgstr "Afrika"
-#: standalone/drakboot:85 standalone/logdrake:75
+#: timezone.pm:187
#, c-format
-msgid "/File/_Quit"
-msgstr "/Restr/_Kuitaat"
+msgid "Asia"
+msgstr "Asia"
-#: standalone/drakboot:85 standalone/harddrake2:191 standalone/logdrake:75
-#: standalone/printerdrake:152
+#: timezone.pm:188
#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
+msgid "Europe"
+msgstr "Europa"
-#: standalone/drakboot:125
+#: timezone.pm:189
#, c-format
-msgid "Text only"
-msgstr "Skrid hepken"
+msgid "North America"
+msgstr "Amerika norzh"
-#: standalone/drakboot:126
+#: timezone.pm:190
#, c-format
-msgid "Verbose"
-msgstr ""
-
-#: standalone/drakboot:127
-#, c-format
-msgid "Silent"
-msgstr "Didrouz"
-
-#: standalone/drakboot:134
-#, c-format
-msgid ""
-"Your system bootloader is not in framebuffer mode. To activate graphical "
-"boot, select a graphic video mode from the bootloader configuration tool."
-msgstr ""
-
-#: standalone/drakboot:135
-#, c-format
-msgid "Do you want to configure it now?"
-msgstr "Mennout a rit kefluniañ anezhañ bremañ ?"
-
-#: standalone/drakboot:144
-#, c-format
-msgid "Install themes"
-msgstr "Staliañ ar gizioù"
-
-#: standalone/drakboot:146
-#, c-format
-msgid "Graphical boot theme selection"
-msgstr "Dibabit ar c'hiz loc'hañ ar reizhiad"
-
-#: standalone/drakboot:149
-#, c-format
-msgid "Graphical boot mode:"
-msgstr "Mod loc'hañ gant grafikoù :"
-
-#: standalone/drakboot:151
-#, c-format
-msgid "Theme"
-msgstr "Giz"
-
-#: standalone/drakboot:154
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"Diskouez ar c'hiz\n"
-"ouzh al letrin"
-
-#: standalone/drakboot:159
-#, c-format
-msgid "Create new theme"
-msgstr "Krouiñ gizioù nevez"
-
-#: standalone/drakboot:191
-#, c-format
-msgid "Default user"
-msgstr "Arveriad dre ziouer"
-
-#: standalone/drakboot:192
-#, c-format
-msgid "Default desktop"
-msgstr "Burev dre ziouer"
-
-#: standalone/drakboot:195
-#, c-format
-msgid "No, I do not want autologin"
-msgstr "Ne fell ket din emereañ gant an dra-se"
-
-#: standalone/drakboot:196
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Ya, plijout a ra din gant emereañ (averiad, burev)"
-
-#: standalone/drakboot:203
-#, c-format
-msgid "System mode"
-msgstr "Mod ar reizhiad"
-
-#: standalone/drakboot:206
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Lañsañ an endro grafikel pa vez loc'het ho reizhiad"
-
-#: standalone/drakboot:272
-#, c-format
-msgid ""
-"Please choose a video mode, it will be applied to each of the boot entries "
-"selected below.\n"
-"Be sure your video card supports the mode you choose."
-msgstr ""
-
-#: standalone/drakbug:41
-#, c-format
-msgid "Mandriva Linux Bug Report Tool"
-msgstr ""
-
-#: standalone/drakbug:46
-#, c-format
-msgid "Mandriva Linux Control Center"
-msgstr "Kreizenn ren Mandriva Linux"
-
-#: standalone/drakbug:48
-#, c-format
-msgid "Synchronization tool"
-msgstr ""
-
-#: standalone/drakbug:49 standalone/drakbug:152
-#, c-format
-msgid "Standalone Tools"
-msgstr ""
-
-#: standalone/drakbug:50
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: standalone/drakbug:51
-#, c-format
-msgid "Mandriva Online"
-msgstr "Mandriva Online"
-
-#: standalone/drakbug:52
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
-
-#: standalone/drakbug:53
-#, c-format
-msgid "Msec"
-msgstr "Msec"
-
-#: standalone/drakbug:54
-#, c-format
-msgid "Remote Control"
-msgstr "Ren a-bell"
-
-#: standalone/drakbug:55
-#, c-format
-msgid "Software Manager"
-msgstr "Merour Poelladoù"
-
-#: standalone/drakbug:56
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
-
-#: standalone/drakbug:57
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Ostil broierezh deus Windows"
-
-#: standalone/drakbug:58 standalone/draksambashare:1234
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: standalone/drakbug:59
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Skoazellerien kefluniadur"
-
-#: standalone/drakbug:81
-#, c-format
-msgid "Select Mandriva Tool:"
-msgstr "Dibabit un ostilh Mandriva :"
-
-#: standalone/drakbug:82
-#, c-format
-msgid ""
-"or Application Name\n"
-"(or Full Path):"
-msgstr ""
-"pe anv ar meziant\n"
-"(pe un hent leun) :"
-
-#: standalone/drakbug:85
-#, c-format
-msgid "Find Package"
-msgstr "Klask Pakad"
-
-#: standalone/drakbug:87
-#, c-format
-msgid "Package: "
-msgstr "Pakad : "
-
-#: standalone/drakbug:88
-#, c-format
-msgid "Kernel:"
-msgstr "Kalon :"
-
-#: standalone/drakbug:101
-#, c-format
-msgid ""
-"To submit a bug report, click on the report button. \n"
-"This will open a web browser window on %s where you'll find a form to fill "
-"in. The information displayed above will be transferred to that server. \n"
-"Things useful to include in your report are the output of lspci, kernel "
-"version, and /proc/cpuinfo."
-msgstr ""
-
-#: standalone/drakbug:107
-#, c-format
-msgid "Report"
-msgstr "Dezrevell"
-
-#: standalone/drakbug:162
-#, c-format
-msgid "Not installed"
-msgstr "N'eo ket staliet"
-
-#: standalone/drakbug:174
-#, c-format
-msgid "Package not installed"
-msgstr "N'eo ket staliet ar pakad"
-
-#: standalone/drakclock:29
-#, c-format
-msgid "DrakClock"
-msgstr "DrakClock"
-
-#: standalone/drakclock:39
-#, c-format
-msgid "not defined"
-msgstr "n'eo ket lakaet"
-
-#: standalone/drakclock:41
-#, c-format
-msgid "Change Time Zone"
-msgstr "Kemmañ an takad-eur"
-
-#: standalone/drakclock:45
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "Takad-eur - DrakClock"
-
-#: standalone/drakclock:47
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "GMT - DrakClock"
-
-#: standalone/drakclock:47 standalone/finish-install:57
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Ha war GMT eo lakaet ho eurier periantel ?"
-
-#: standalone/drakclock:75
-#, c-format
-msgid "Network Time Protocol"
-msgstr "Komenad Eur Rouedad (NTP)"
-
-#: standalone/drakclock:77
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-
-#: standalone/drakclock:78
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Bevaat ar c'homenad Eur Rouedad (NTP)"
-
-#: standalone/drakclock:86
-#, c-format
-msgid "Server:"
-msgstr "Servijer :"
-
-#: standalone/drakclock:124
-#, c-format
-msgid "Could not synchronize with %s."
-msgstr ""
-
-#: standalone/drakclock:146 standalone/drakclock:156
-#, c-format
-msgid "Reset"
-msgstr "Deraouekaat"
-
-#: standalone/drakclock:224
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol\n"
-"\n"
-"Do you want to install ntp?"
-msgstr ""
-"Ezhomm 'peus staliañ ar pabak ntp\n"
-" evit bevaat NTP\n"
-"\n"
-"Ha sur oc'h e staliit ntp ?"
-
-#: standalone/drakconnect:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Kefluniadur ar rouedad (%d kartenn)"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Gateway:"
-msgstr "Treuzell :"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Interface:"
-msgstr "C'hetal :"
-
-#: standalone/drakconnect:93 standalone/net_monitor:116
-#, c-format
-msgid "Wait please"
-msgstr "Gortoz mar plij"
-
-#: standalone/drakconnect:109
-#, c-format
-msgid "Interface"
-msgstr "C'hetal"
-
-#: standalone/drakconnect:109 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "State"
-msgstr "Rannvro"
-
-#: standalone/drakconnect:126
-#, c-format
-msgid "Hostname: "
-msgstr "Anv an ostiz : "
-
-#: standalone/drakconnect:128
-#, c-format
-msgid "Configure hostname..."
-msgstr "Kefluniañ anv an ostiz ..."
-
-#: standalone/drakconnect:142 standalone/drakconnect:845
-#, c-format
-msgid "LAN configuration"
-msgstr "Kefluniadur ar rouedad takad lec'hel"
-
-#: standalone/drakconnect:147
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Kefluniañ ar rouedad takad lec'hel ..."
-
-#: standalone/drakconnect:155 standalone/drakconnect:237
-#: standalone/drakconnect:241
-#, c-format
-msgid "Apply"
-msgstr "Lakat"
-
-#: standalone/drakconnect:188
-#, c-format
-msgid "Manage connections"
-msgstr "Meran liammoù"
-
-#: standalone/drakconnect:215
-#, c-format
-msgid "Device selected"
-msgstr "Trobarzhell dibabet"
-
-#: standalone/drakconnect:296
-#, c-format
-msgid "IP configuration"
-msgstr "Kefluniadur IP"
-
-#: standalone/drakconnect:335
-#, c-format
-msgid "DNS servers"
-msgstr "Servijerioù DNS"
-
-#: standalone/drakconnect:343
-#, c-format
-msgid "Search Domain"
-msgstr "Domani klask"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "static"
-msgstr "statik"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "DHCP"
-msgstr "DHCP"
-
-#: standalone/drakconnect:515
-#, c-format
-msgid "Flow control"
-msgstr "Evezhiañ ar red"
-
-#: standalone/drakconnect:516
-#, c-format
-msgid "Line termination"
-msgstr "Dibenn al linennoù"
-
-#: standalone/drakconnect:527
-#, c-format
-msgid "Modem timeout"
-msgstr "Amzer-hont ar modem"
-
-#: standalone/drakconnect:531
-#, c-format
-msgid "Use lock file"
-msgstr "Implijit ur restr prennañ"
-
-#: standalone/drakconnect:533
-#, c-format
-msgid "Wait for dialup tone before dialing"
-msgstr "Gortoz e-pad an ton galv goude sifrenn"
-
-#: standalone/drakconnect:536
-#, c-format
-msgid "Busy wait"
-msgstr "Gortoz da vat"
-
-#: standalone/drakconnect:541
-#, c-format
-msgid "Modem sound"
-msgstr "Son ar modem"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Enable"
-msgstr "Bevaat"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Disable"
-msgstr "Marvaat"
-
-#: standalone/drakconnect:593 standalone/harddrake2:50
-#, c-format
-msgid "Media class"
-msgstr "Renkad ar vedia"
-
-#: standalone/drakconnect:594
-#, c-format
-msgid "Module name"
-msgstr "Anv ar mollad"
-
-#: standalone/drakconnect:595
-#, c-format
-msgid "Mac Address"
-msgstr "Chomlec'h MAC"
-
-#: standalone/drakconnect:596 standalone/harddrake2:28
-#: standalone/harddrake2:120
-#, c-format
-msgid "Bus"
-msgstr "Bus"
-
-#: standalone/drakconnect:597 standalone/harddrake2:34
-#, c-format
-msgid "Location on the bus"
-msgstr "Lec'hel war ar bus"
-
-#: standalone/drakconnect:700 standalone/drakgw:311
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-
-#: standalone/drakconnect:709
-#, c-format
-msgid "Remove a network interface"
-msgstr "Lebel un etrefas rouedad"
-
-#: standalone/drakconnect:713
-#, c-format
-msgid "Select the network interface to remove:"
-msgstr "Dibabit an etrefas rouedad a lemel :"
-
-#: standalone/drakconnect:745
-#, c-format
-msgid ""
-"An error occurred while deleting the \"%s\" network interface:\n"
-"\n"
-"%s"
-msgstr ""
-"Degouezhet ez eus ar fazi en ur lemel an etrefas rouedad « %s » :\n"
-"\n"
-"%s"
-
-#: standalone/drakconnect:746
-#, c-format
-msgid ""
-"Congratulations, the \"%s\" network interface has been successfully deleted"
-msgstr ""
-
-#: standalone/drakconnect:761
-#, c-format
-msgid "No IP"
-msgstr "IP ebet"
-
-#: standalone/drakconnect:762
-#, c-format
-msgid "No Mask"
-msgstr "Mask ebet"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "up"
-msgstr "uhel"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "down"
-msgstr "izel"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Connected"
-msgstr "Kevreadet"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Not connected"
-msgstr "Kevreadet ebet"
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Disconnect..."
-msgstr "Digevreañ ..."
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Connect..."
-msgstr "Kevreañ ..."
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Deactivate now"
-msgstr "Digevreañ bremañ"
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Activate now"
-msgstr "Kevreañ bremañ"
-
-#: standalone/drakconnect:849
-#, c-format
-msgid ""
-"You do not have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: standalone/drakconnect:863
-#, c-format
-msgid "LAN Configuration"
-msgstr "Kefluniadur ar rouedad takad lec'hel"
-
-#: standalone/drakconnect:875
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Kartenn %s : %s"
-
-#: standalone/drakconnect:884
-#, c-format
-msgid "Boot Protocol"
-msgstr ""
-
-#: standalone/drakconnect:885
-#, c-format
-msgid "Started on boot"
-msgstr "Loc'het pa vez loc'het an urzhiataer"
-
-#: standalone/drakconnect:921
-#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakconnect:975 standalone/net_applet:51
-#, c-format
-msgid ""
-"You do not have any configured Internet connection.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: standalone/drakconnect:976 standalone/drakroam:34 standalone/net_applet:52
-#, c-format
-msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
-msgstr "Kefluniañ un etrefas rouedad (LAN, ISDN, ADLS, ...)"
-
-#: standalone/drakconnect:981
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Kefluniadur ar gevreadenn internet"
-
-#: standalone/drakconnect:994
-#, c-format
-msgid "Third DNS server (optional)"
-msgstr "Servijer DNS trede (da zilenn)"
-
-#: standalone/drakconnect:1016
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Kefluniadur ar gevreadenn ar c'henrouedad"
-
-#: standalone/drakconnect:1017
-#, c-format
-msgid "Internet access"
-msgstr "Digor ar genrouedad"
-
-#: standalone/drakconnect:1019 standalone/net_monitor:95
-#, c-format
-msgid "Connection type: "
-msgstr "Seurt ar gevreadenn : "
-
-#: standalone/drakconnect:1022
-#, c-format
-msgid "Status:"
-msgstr "Stad :"
-
-#: standalone/drakconnect:1027
-#, c-format
-msgid "Parameters"
-msgstr "Arventennoù"
-
-#: standalone/drakedm:40
-#, c-format
-msgid "GDM (GNOME Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:41
-#, c-format
-msgid "KDM (KDE Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:42
-#, c-format
-msgid "XDM (X Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:53
-#, c-format
-msgid "Choosing a display manager"
-msgstr ""
-
-#: standalone/drakedm:54
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-
-#: standalone/drakedm:72
-#, c-format
-msgid "The change is done, do you want to restart the dm service?"
-msgstr "Great eo ar c'hemm, C'hoant ho peus e adloc'hañ ar servij dm ?"
-
-#: standalone/drakedm:73
-#, c-format
-msgid ""
-"You are going to close all running programs and lose your current session. "
-"Are you really sure that you want to restart the dm service?"
-msgstr ""
-
-#: standalone/drakfont:182
-#, c-format
-msgid "Search installed fonts"
-msgstr "Klask an nodrezhoù staliet"
-
-#: standalone/drakfont:184
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "Andiuz an nodrezhoù staliet"
-
-#: standalone/drakfont:207
-#, c-format
-msgid "parse all fonts"
-msgstr ""
-
-#: standalone/drakfont:209
-#, c-format
-msgid "No fonts found"
-msgstr "Nodrezhoù ebet kavet"
-
-#: standalone/drakfont:217 standalone/drakfont:259 standalone/drakfont:326
-#: standalone/drakfont:359 standalone/drakfont:367 standalone/drakfont:393
-#: standalone/drakfont:411 standalone/drakfont:425
-#, c-format
-msgid "done"
-msgstr "graet"
-
-#: standalone/drakfont:222
-#, c-format
-msgid "Could not find any font in your mounted partitions"
-msgstr "Ne m'eus ket kavout un nodrezh e-barzh ho barzhadurioù marc'het"
-
-#: standalone/drakfont:257
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Adibabit nodrezhoù mat"
-
-#: standalone/drakfont:260
-#, c-format
-msgid "Could not find any font.\n"
-msgstr "Ne m'eus ket gallet kavout un nodrezh.\n"
-
-#: standalone/drakfont:270
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Klask an nodrezhoù e roll ar re staliet"
-
-#: standalone/drakfont:295
-#, c-format
-msgid "%s fonts conversion"
-msgstr ""
-
-#: standalone/drakfont:324
-#, c-format
-msgid "Fonts copy"
-msgstr "Adskrivañ nodrezhoù"
-
-#: standalone/drakfont:327
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Staliadur an nodrezhoù True Type"
-
-#: standalone/drakfont:334
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "gortozit mar plij en ur ttmkfdir ..."
-
-#: standalone/drakfont:335
-#, c-format
-msgid "True Type install done"
-msgstr "Graet eo staliadur an nodrezhoù True Type"
-
-#: standalone/drakfont:341 standalone/drakfont:356
-#, c-format
-msgid "type1inst building"
-msgstr ""
-
-#: standalone/drakfont:350
-#, c-format
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: standalone/drakfont:360
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Lemel ar restroù padennek"
-
-#: standalone/drakfont:363
-#, c-format
-msgid "Restart XFS"
-msgstr "Adloc'hañ XFS"
-
-#: standalone/drakfont:409 standalone/drakfont:419
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Lemel restroù ar fontoù"
-
-#: standalone/drakfont:421
-#, c-format
-msgid "xfs restart"
-msgstr "adloc'hañ xfs"
-
-#: standalone/drakfont:429
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
-
-#: standalone/drakfont:473 standalone/drakfont:482
-#, c-format
-msgid "DrakFont"
-msgstr "DrakFont"
-
-#: standalone/drakfont:483
-#, c-format
-msgid "Font List"
-msgstr "Listenn nodrezhoù"
-
-#: standalone/drakfont:486
-#, c-format
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: standalone/drakfont:492
-#, c-format
-msgid "About"
-msgstr "A-brepoz"
-
-#: standalone/drakfont:494 standalone/drakfont:718
-#, c-format
-msgid "Uninstall"
-msgstr "Distaliañ"
-
-#: standalone/drakfont:495
-#, c-format
-msgid "Import"
-msgstr "Enporzh"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakfont:513
-#, c-format
-msgid "Copyright (C) 2001-2006 by Mandriva"
-msgstr ""
-
-#: standalone/drakfont:515
-#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: standalone/drakfont:531
-#, c-format
-msgid ""
-"Thanks:\n"
-"\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
-msgstr ""
-
-#: standalone/drakfont:550
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Dibabit ar meziantoù a implij an nodrezhioù :"
-
-#: standalone/drakfont:561
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: standalone/drakfont:562
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: standalone/drakfont:563
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
-
-#: standalone/drakfont:564
-#, c-format
-msgid "Generic Printers"
-msgstr "Moullerezioù boutin"
-
-#: standalone/drakfont:578
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Dibabit restr pe renkell an nodrezh ha klikit ouzh « Ouzhpennañ »"
-
-#: standalone/drakfont:579
-#, c-format
-msgid "File Selection"
-msgstr "Choazh ar restr"
-
-#: standalone/drakfont:583
-#, c-format
-msgid "Fonts"
-msgstr "Nodrezhoù"
-
-#: standalone/drakfont:646
-#, c-format
-msgid "Import fonts"
-msgstr "Enporzh an nodrezhoù"
-
-#: standalone/drakfont:651
-#, c-format
-msgid "Install fonts"
-msgstr "Staliañ an nodezhoù"
-
-#: standalone/drakfont:681
-#, c-format
-msgid "Are you sure you want to uninstall the following fonts?"
-msgstr ""
-
-#: standalone/drakfont:726
-#, c-format
-msgid "Unselected All"
-msgstr "Andiuz an holl re"
-
-#: standalone/drakfont:729
-#, c-format
-msgid "Selected All"
-msgstr "Diuz an holl re"
-
-#: standalone/drakfont:743 standalone/drakfont:762
-#, c-format
-msgid "Importing fonts"
-msgstr "Oc'h enporzh an nodrezhoù"
-
-#: standalone/drakfont:747 standalone/drakfont:767
-#, c-format
-msgid "Initial tests"
-msgstr ""
-
-#: standalone/drakfont:748
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Eiliañ an nodrezhoù war ho reizhiad"
-
-#: standalone/drakfont:749
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Staliañ & amdreiñ an nodrezhoù"
-
-#: standalone/drakfont:750
-#, c-format
-msgid "Post Install"
-msgstr "Pa vez echu ar staliadur"
-
-#: standalone/drakfont:768
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Lemel an nodrezhoù eus ho reizhiad"
-
-#: standalone/drakfont:769
-#, c-format
-msgid "Post Uninstall"
-msgstr "Goude an distaliadur"
-
-#: standalone/drakgw:50 standalone/drakvpn:51
-#, c-format
-msgid "Sorry, we support only 2.4 and above kernels."
-msgstr ""
-
-#: standalone/drakgw:75
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Rennañ ar gevreadenn ouzh internet"
-
-#: standalone/drakgw:79
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-
-#: standalone/drakgw:95
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-
-#: standalone/drakgw:99
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-
-#: standalone/drakgw:105
-#, c-format
-msgid "Reconfigure"
-msgstr "Adgefluniañ"
-
-#: standalone/drakgw:145
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-
-#: standalone/drakgw:156
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-
-#: standalone/drakgw:177
-#, c-format
-msgid "Local Area Network settings"
-msgstr "Chomlec'h ar rouedad lec'hel"
-
-#: standalone/drakgw:180
-#, c-format
-msgid "Local IP address"
-msgstr "Address IP lec'hel"
-
-#: standalone/drakgw:182
-#, c-format
-msgid "The internal domain name"
-msgstr "Anv diabarzh an domani"
-
-#: standalone/drakgw:188
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-
-#: standalone/drakgw:204
-#, c-format
-msgid "Domain Name Server (DNS) configuration"
-msgstr "Kefluniadur ar Servijer Anvioù Domani (SAD)"
-
-#: standalone/drakgw:208
-#, c-format
-msgid "Use this gateway as domain name server"
-msgstr "Implij an dreuzell-mañ evel ar servijer anvioù domani"
-
-#: standalone/drakgw:209
-#, c-format
-msgid "The DNS Server IP"
-msgstr "IP ar servijer DNS"
-
-#: standalone/drakgw:236
-#, c-format
-msgid ""
-"DHCP Server Configuration.\n"
-"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you do not know the meaning of an option, simply leave it as it is."
-msgstr ""
-"Kefluniadur ar servijer DHCP.\n"
-"\n"
-"amañ e c'hellit dibab dibarzhoù all evit kefluniadur ar servijer DHCP.\n"
-"Ma ne ouzit ket petra talvez un dibarzh, mirit he gwerzh dre ziouer."
-
-#: standalone/drakgw:243
-#, c-format
-msgid "Use automatic configuration (DHCP)"
-msgstr "Implijit an adgefluniadur emgefreek (DHCP)"
-
-#: standalone/drakgw:244
-#, c-format
-msgid "The DHCP start range"
-msgstr "Ar skeul DHCP kentañ"
-
-#: standalone/drakgw:245
-#, c-format
-msgid "The DHCP end range"
-msgstr "Ar skeul DHCP diwezhañ"
-
-#: standalone/drakgw:246
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr ""
-
-#: standalone/drakgw:247
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr ""
-
-#: standalone/drakgw:270
-#, c-format
-msgid "Proxy caching server (SQUID)"
-msgstr ""
-
-#: standalone/drakgw:274
-#, c-format
-msgid "Use this gateway as proxy caching server"
-msgstr ""
-
-#: standalone/drakgw:275
-#, c-format
-msgid "Admin mail"
-msgstr "Chomlec'h postel ar merour"
-
-#: standalone/drakgw:276
-#, c-format
-msgid "Visible hostname"
-msgstr "Anv diwelus an ostiz"
-
-#: standalone/drakgw:277
-#, c-format
-msgid "Proxy port"
-msgstr "Porzh ar proksi"
-
-#: standalone/drakgw:278
-#, c-format
-msgid "Cache size (MB)"
-msgstr "Ment ar grubuilh (Mo)"
-
-#: standalone/drakgw:300
-#, c-format
-msgid "Broadcast printer information"
-msgstr "Skignañ Titouroù war ar voullerez"
-
-#: standalone/drakgw:317
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Bev eo rannañ gevreadenn ar genrouedad bremañ."
-
-#: standalone/drakgw:323
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Marv eo rannañ gevreadenn ar genrouedad bremañ."
-
-#: standalone/drakgw:329
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP) and\n"
-" a Transparent Proxy Cache server (SQUID)."
-msgstr ""
-
-#: standalone/drakgw:363
-#, c-format
-msgid "Disabling servers..."
-msgstr "O varvaat ar servijerien ..."
-
-#: standalone/drakgw:377
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Kefluniadur kavet ar moger tan !"
-
-#: standalone/drakgw:378
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-
-#: standalone/drakgw:383
-#, c-format
-msgid "Configuring..."
-msgstr "O kefluskañ ..."
-
-#: standalone/drakgw:384
-#, c-format
-msgid "Configuring firewall..."
-msgstr "O kefluskañ ar moger-tan ..."
-
-#: standalone/drakhelp:17
-#, c-format
-msgid ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"\n"
-"Usage: \n"
-msgstr ""
-"drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"Ur meziant frank eo an hini-mañ ha moien zo da zal'ch anezhañ hervez GNU "
-"GPL.\n"
-"\n"
-"Arveriadur :\n"
-
-#: standalone/drakhelp:22
-#, c-format
-msgid " --help - display this help \n"
-msgstr ""
-
-#: standalone/drakhelp:23
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr ""
-
-#: standalone/drakhelp:24
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "Mandriva Linux Help Center"
-msgstr "Kreizenn sikourMandriva Linux"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "No Help entry for %s\n"
-msgstr ""
-
-#: standalone/drakhosts:98
-#, c-format
-msgid "Please add an host to be able to modify it."
-msgstr ""
-
-#: standalone/drakhosts:108
-#, c-format
-msgid "Please modify information"
-msgstr "Kemmit an titouroù mar plij"
-
-#: standalone/drakhosts:109
-#, c-format
-msgid "Please delete information"
-msgstr "Lemit an titouroù mar plij"
-
-#: standalone/drakhosts:110
-#, c-format
-msgid "Please add information"
-msgstr "Ouzhpennit an titouroù mar plij"
-
-#: standalone/drakhosts:115
-#, c-format
-msgid "IP address:"
-msgstr "Chomlec'h IP :"
-
-#: standalone/drakhosts:116
-#, c-format
-msgid "Host name:"
-msgstr "Anv an ostiz :"
-
-#: standalone/drakhosts:117
-#, c-format
-msgid "Host Aliases:"
-msgstr "Lesanvioù an ostiz :"
-
-#: standalone/drakhosts:123
-#, c-format
-msgid "Please enter a valid IP address."
-msgstr "Roit ur chomlec'h IP mat mar plij."
-
-#: standalone/drakhosts:129
-#, c-format
-msgid "Same IP is already in %s file."
-msgstr "An IP-mañ zo er restr %s c'hoazh."
-
-#: standalone/drakhosts:197
-#, c-format
-msgid "Host Aliases"
-msgstr "Lesanvioù an ostiz"
-
-#: standalone/drakhosts:237
-#, c-format
-msgid "DrakHOSTS manage hosts definitions"
-msgstr ""
-
-#: standalone/drakhosts:246
-#, c-format
-msgid "Failed to add host."
-msgstr "Fazi en ur ouzhpennañ an ostiz."
-
-#: standalone/drakhosts:253
-#, c-format
-msgid "Failed to Modify host."
-msgstr "Fazi en ur cheñch an ostiz."
-
-#: standalone/drakhosts:260
-#, c-format
-msgid "Failed to remove host."
-msgstr "Fazi en ur lemel an ostiz."
-
-#: standalone/drakids:26
-#, c-format
-msgid "Allowed addresses"
-msgstr "Chomlec'hioù aotreet"
-
-#: standalone/drakids:57
-#, c-format
-msgid "Log"
-msgstr "Kerzlevr"
-
-#: standalone/drakids:61
-#, c-format
-msgid "Clear logs"
-msgstr "Skarañ ar c'herzlevr"
-
-#: standalone/drakids:62 standalone/drakids:67 standalone/net_applet:470
-#, c-format
-msgid "Blacklist"
-msgstr "Roll zu"
-
-#: standalone/drakids:63 standalone/drakids:80 standalone/net_applet:475
-#, c-format
-msgid "Whitelist"
-msgstr "Roll wenn"
-
-#: standalone/drakids:71
-#, c-format
-msgid "Remove from blacklist"
-msgstr "Lemel diwar ar roll zu"
-
-#: standalone/drakids:72
-#, c-format
-msgid "Move to whitelist"
-msgstr "Fiñval d'ar roll zu"
-
-#: standalone/drakids:84
-#, c-format
-msgid "Remove from whitelist"
-msgstr "Lemel diwar ar roll wenn"
-
-#: standalone/drakids:136 standalone/drakids:145 standalone/drakids:170
-#: standalone/drakids:179 standalone/drakids:189 standalone/drakids:265
-#: standalone/drakroam:182 standalone/net_applet:202 standalone/net_applet:385
-#, c-format
-msgid "Unable to contact daemon"
-msgstr "N'hellan ket kevreañ ouzh an diaoul"
-
-#: standalone/drakids:202
-#, c-format
-msgid "Date"
-msgstr "Deiziad"
-
-#: standalone/drakids:203
-#, c-format
-msgid "Attacker"
-msgstr "Argader"
-
-#: standalone/drakids:204
-#, c-format
-msgid "Attack type"
-msgstr "Seurt an argad"
-
-#: standalone/drakids:205
-#, c-format
-msgid "Service"
-msgstr "Servij"
-
-#: standalone/drakids:206 standalone/net_applet:72
-#, c-format
-msgid "Network interface"
-msgstr "Etrefas rouedad"
-
-#: standalone/draknfs:41
-#, c-format
-msgid "map root user as anonymous"
-msgstr ""
-
-#: standalone/draknfs:42
-#, c-format
-msgid "map all users to anonymous user"
-msgstr ""
-
-#: standalone/draknfs:43
-#, c-format
-msgid "No user UID mapping"
-msgstr ""
-
-#: standalone/draknfs:44
-#, c-format
-msgid "allow real remote root access"
-msgstr ""
+msgid "Oceania"
+msgstr "Oseania"
-#: standalone/draknfs:83
+#: timezone.pm:191
#, c-format
-msgid "NFS server"
-msgstr "Servijer NFS"
+msgid "South America"
+msgstr "Amerika Su"
-#: standalone/draknfs:83
+#: timezone.pm:200
#, c-format
-msgid "Restarting/Reloading NFS server..."
-msgstr "Oc'h adloc'hañ/adkargañ ar servijer NFS ..."
+msgid "Hong Kong"
+msgstr "Hong Kong"
-#: standalone/draknfs:84
+#: timezone.pm:237
#, c-format
-msgid "Error Restarting/Reloading NFS server"
-msgstr "Fazi en ur adloc'hañ/adkargañ ar servijer NFS"
+msgid "Russian Federation"
+msgstr "Kevread russiek"
-#: standalone/draknfs:100 standalone/draksambashare:203
+#: timezone.pm:245
#, c-format
-msgid "Directory Selection"
-msgstr "Choazh ar renkell"
+msgid "Yugoslavia"
+msgstr "Yougoslavi"
-#: standalone/draknfs:105 standalone/draksambashare:208
-#, c-format
-msgid "Should be a directory."
-msgstr "Red eo da bezañ ur renkell."
-
-#: standalone/draknfs:136
-#, c-format
-msgid ""
-"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
-"ways:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">single host:</span> a host either by an "
-"abbreviated name recognized be the resolver, fully qualified domain name, or "
-"an IP address\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">netgroups:</span> NIS netgroups may be given "
-"as @group.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">wildcards:</span> machine names may contain "
-"the wildcard characters * and ?. For instance: *.cs.foo.edu matches all "
-"hosts in the domain cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP networks:</span> you can also export "
-"directories to all hosts on an IP (sub-)network simultaneously. for example, "
-"either `/255.255.252.0' or `/22' appended to the network base address "
-"result.\n"
-msgstr ""
-
-#: standalone/draknfs:151
-#, c-format
-msgid ""
-"<span weight=\"bold\">User ID options</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map root user as anonymous:</span> map "
-"requests from uid/gid 0 to the anonymous uid/gid (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">allow real remote root access:</span> turn "
-"off root squashing. This option is mainly useful for diskless clients "
-"(no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map all users to anonymous user:</span> map "
-"all uids and gids to the anonymous user (all_squash). Useful for NFS-"
-"exported public FTP directories, news spool directories, etc. The opposite "
-"option is no user UID mapping (no_all_squash), which is the default "
-"setting.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid and anongid:</span> explicitly set "
-"the uid and gid of the anonymous account.\n"
-msgstr ""
-
-#: standalone/draknfs:167
-#, c-format
-msgid "Synchronous access:"
-msgstr ""
-
-#: standalone/draknfs:168
-#, c-format
-msgid "Secured Connection:"
-msgstr "Kevreadenn gant surantez :"
-
-#: standalone/draknfs:169
-#, c-format
-msgid "Read-Only share:"
-msgstr "Rannad lenn-hepken :"
-
-#: standalone/draknfs:171
-#, c-format
-msgid "<span weight=\"bold\">Advanced Options</span>"
-msgstr "<span weight=\"bold\">Dibarzhoù barek</span>"
-
-#: standalone/draknfs:172
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> this option requires that "
-"requests originate on an internet port less than IPPORT_RESERVED (1024). "
-"This option is on by default."
-msgstr ""
-
-#: standalone/draknfs:173
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> allow either only read or both "
-"read and write requests on this NFS volume. The default is to disallow any "
-"request which changes the filesystem. This can also be made explicit by "
-"using this option."
-msgstr ""
-
-#: standalone/draknfs:174
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> disallows the NFS server to "
-"violate the NFS protocol and to reply to requests before any changes made by "
-"these requests have been committed to stable storage (e.g. disc drive)."
-msgstr ""
-
-#: standalone/draknfs:306
-#, c-format
-msgid "Please add an NFS share to be able to modify it."
-msgstr ""
-
-#: standalone/draknfs:378
-#, c-format
-msgid "Advanced Options Help"
-msgstr "Skoazell an dibarzhoù barek"
-
-#: standalone/draknfs:389
-#, c-format
-msgid "NFS directory"
-msgstr "Renkell NFS"
-
-#: standalone/draknfs:391 standalone/draksambashare:592
-#: standalone/draksambashare:771
-#, c-format
-msgid "Directory:"
-msgstr "Renkell :"
-
-#: standalone/draknfs:394
-#, c-format
-msgid "Host access"
-msgstr ""
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Access:"
-msgstr ""
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Hosts Access"
-msgstr ""
-
-#: standalone/draknfs:399
-#, c-format
-msgid "User ID Mapping"
-msgstr ""
-
-#: standalone/draknfs:401
-#, c-format
-msgid "User ID:"
-msgstr "ID an arveriad :"
-
-#: standalone/draknfs:401
-#, c-format
-msgid "Help User ID"
-msgstr ""
-
-#: standalone/draknfs:402
-#, c-format
-msgid "Anonymous user ID:"
-msgstr ""
-
-#: standalone/draknfs:403
-#, c-format
-msgid "Anonymous Group ID:"
-msgstr ""
-
-#: standalone/draknfs:444
-#, c-format
-msgid "Can't create this directory."
-msgstr "N'hell ket bet krouet ar renkell-mañ."
-
-#: standalone/draknfs:447
-#, c-format
-msgid "You must specify hosts access."
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Share Directory"
-msgstr "Lodenniñ ar renkell"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Hosts Wildcard"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "General Options"
-msgstr "Dibarzhoù hollek"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Custom Options"
-msgstr "Dibarzhoù diouzoc'h"
-
-#: standalone/draknfs:539 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Please enter a directory to share."
-msgstr "Roit ur renkell da ranañ mar plij."
-
-#: standalone/draknfs:546
-#, c-format
-msgid "Please use the modify button to set right access."
-msgstr ""
-
-#: standalone/draknfs:600
-#, c-format
-msgid "DrakNFS manage NFS shares"
-msgstr ""
-
-#: standalone/draknfs:609
-#, c-format
-msgid "Failed to add NFS share."
-msgstr "Fazi en ur ouzhpennañ ar rennad NFS."
-
-#: standalone/draknfs:616
-#, c-format
-msgid "Failed to Modify NFS share."
-msgstr "Fazi en ur cheñch ar rennad NFS."
-
-#: standalone/draknfs:623
-#, c-format
-msgid "Failed to remove an NFS share."
-msgstr "Fazi en ur lemel ar rennad NFS."
-
-#: standalone/drakperm:21
-#, c-format
-msgid "System settings"
-msgstr "Dibarzhoù ar reizhiad"
-
-#: standalone/drakperm:22
-#, c-format
-msgid "Custom settings"
-msgstr "Kefluniadur diouzhoc'h"
-
-#: standalone/drakperm:23
-#, c-format
-msgid "Custom & system settings"
-msgstr "Kefluniadur diouzhoc'h ha reizhiad"
-
-#: standalone/drakperm:43
-#, c-format
-msgid "Editable"
-msgstr ""
-
-#: standalone/drakperm:48 standalone/drakperm:323
-#: standalone/draksambashare:101
-#, c-format
-msgid "Path"
-msgstr "Hent"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "User"
-msgstr "Arveriad"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "Group"
-msgstr "Strollad"
-
-#: standalone/drakperm:48 standalone/drakperm:335
-#, c-format
-msgid "Permissions"
-msgstr "Reizhan"
-
-#: standalone/drakperm:57
-#, c-format
-msgid "Add a new rule"
-msgstr "Ouzhpennañ ur reollin nevez"
-
-#: standalone/drakperm:64 standalone/drakperm:99 standalone/drakperm:124
-#, c-format
-msgid "Edit current rule"
-msgstr "Aozañ ar reollen red"
-
-#: standalone/drakperm:106
-#, c-format
-msgid ""
-"Here you can see files to use in order to fix permissions, owners, and "
-"groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
-msgstr ""
-
-#: standalone/drakperm:109
-#, c-format
-msgid ""
-"The current security level is %s.\n"
-"Select permissions to see/edit"
-msgstr ""
-"%s eo al live surantez o ren.\n"
-"Dibabit an aotreoù da sellet ouzh pe da aozañ"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Up"
-msgstr "Sevel"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Pignit ar reolenn dibabet"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Down"
-msgstr "Diskenn"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Diskennit ar reolenn dibabet"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a rule"
-msgstr "Ouzhpennañ ur reollin"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Ouzhpennañ ur reollin nevez d'ar fin"
-
-#: standalone/drakperm:123
-#, c-format
-msgid "Delete selected rule"
-msgstr "Lemel ar reollin dibabet"
-
-#: standalone/drakperm:242
-#, c-format
-msgid "browse"
-msgstr "ergerzhet"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "user"
-msgstr "arveriad"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "group"
-msgstr "strollad"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "other"
-msgstr "all"
-
-#: standalone/drakperm:252
-#, c-format
-msgid "Read"
-msgstr "Lenn"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:255
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr ""
-
-#: standalone/drakperm:259
-#, c-format
-msgid "Write"
-msgstr "Skriv"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:262
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr ""
-
-#: standalone/drakperm:266
-#, c-format
-msgid "Execute"
-msgstr "Seveniñ"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:269
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr ""
-
-#: standalone/drakperm:272
-#, c-format
-msgid "Sticky-bit"
-msgstr ""
-
-#: standalone/drakperm:272
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Use owner id for execution"
-msgstr ""
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Use group id for execution"
-msgstr ""
-
-#: standalone/drakperm:292 standalone/drakxtv:89
-#, c-format
-msgid "User:"
-msgstr "Arveriad :"
-
-#: standalone/drakperm:294
-#, c-format
-msgid "Group:"
-msgstr "Strollad :"
-
-#: standalone/drakperm:298
-#, c-format
-msgid "Current user"
-msgstr "Arveriad red"
-
-#: standalone/drakperm:299
-#, c-format
-msgid "When checked, owner and group will not be changed"
-msgstr ""
-
-#: standalone/drakperm:309
-#, c-format
-msgid "Path selection"
-msgstr "Diuzadenn an hent"
-
-#: standalone/drakperm:329
-#, c-format
-msgid "Property"
-msgstr "Perzhioù"
-
-#: standalone/drakperm:380
-#, c-format
-msgid ""
-"The first character of the path must be a slash (\"/\"):\n"
-"\"%s\""
-msgstr ""
-
-#: standalone/drakperm:390
-#, c-format
-msgid "Both the username and the group must valid!"
-msgstr ""
-
-#: standalone/drakperm:391
-#, c-format
-msgid "User: %s"
-msgstr ""
-
-#: standalone/drakperm:392
-#, c-format
-msgid "Group: %s"
-msgstr ""
-
-#: standalone/drakroam:33
-#, c-format
-msgid ""
-"You do not have any wireless interface.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakroam:48
-#, c-format
-msgid "SSID"
-msgstr "SSID"
-
-#: standalone/drakroam:49
-#, c-format
-msgid "Signal strength"
-msgstr "Nerzh an arhent"
-
-#: standalone/drakroam:51
-#, c-format
-msgid "Encryption"
-msgstr "Enrinegadur"
-
-#: standalone/drakroam:112
-#, c-format
-msgid "Please enter settings for wireless network \"%s\""
-msgstr "Roit dibarzhoù evit ar rouedad hep neud « %s » mar plij"
-
-#: standalone/drakroam:123
-#, c-format
-msgid "DNS server"
-msgstr "Servijer DNS"
-
-#: standalone/drakroam:228
-#, c-format
-msgid "Connect"
-msgstr "Kevreañ"
-
-#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/drakroam:229 standalone/printerdrake:251
-#, c-format
-msgid "Refresh"
-msgstr "Adtresañ"
-
-#: standalone/draksambashare:68
-#, c-format
-msgid "Share directory"
-msgstr "Renkell rannet"
-
-#: standalone/draksambashare:69 standalone/draksambashare:102
-#, c-format
-msgid "Comment"
-msgstr "Askelenn"
-
-#: standalone/draksambashare:70 standalone/draksambashare:103
-#, c-format
-msgid "Browseable"
-msgstr ""
-
-#: standalone/draksambashare:71
-#, c-format
-msgid "Public"
-msgstr "Foran"
-
-#: standalone/draksambashare:72 standalone/draksambashare:108
-#, c-format
-msgid "Writable"
-msgstr ""
-
-#: standalone/draksambashare:73 standalone/draksambashare:149
-#, c-format
-msgid "Create mask"
-msgstr "Krouiñ ar maskl"
-
-#: standalone/draksambashare:74 standalone/draksambashare:150
-#, c-format
-msgid "Directory mask"
-msgstr "Maskl ar renkell"
-
-#: standalone/draksambashare:75
-#, c-format
-msgid "Read list"
-msgstr "Roll lenn"
-
-#: standalone/draksambashare:76 standalone/draksambashare:109
-#: standalone/draksambashare:606
-#, c-format
-msgid "Write list"
-msgstr "Roll skrivañ"
-
-#: standalone/draksambashare:77 standalone/draksambashare:141
-#, c-format
-msgid "Admin users"
-msgstr "Merourien"
-
-#: standalone/draksambashare:78 standalone/draksambashare:142
-#, c-format
-msgid "Valid users"
-msgstr "Arveriaded mat"
-
-#: standalone/draksambashare:79
-#, c-format
-msgid "Inherit Permissions"
-msgstr ""
-
-#: standalone/draksambashare:80 standalone/draksambashare:143
-#, c-format
-msgid "Hide dot files"
-msgstr ""
-
-#: standalone/draksambashare:82 standalone/draksambashare:148
-#, c-format
-msgid "Preserve case"
-msgstr ""
-
-#: standalone/draksambashare:83
-#, c-format
-msgid "Force create mode"
-msgstr ""
-
-#: standalone/draksambashare:84
-#, c-format
-msgid "Force group"
-msgstr ""
-
-#: standalone/draksambashare:85 standalone/draksambashare:147
-#, c-format
-msgid "Default case"
-msgstr ""
-
-#: standalone/draksambashare:100
-#, c-format
-msgid "Printer name"
-msgstr "Anv ar voullerez"
-
-#: standalone/draksambashare:104 standalone/draksambashare:598
-#, c-format
-msgid "Printable"
-msgstr ""
-
-#: standalone/draksambashare:105
-#, c-format
-msgid "Print Command"
-msgstr "Urzhiad moulañ"
-
-#: standalone/draksambashare:106
-#, c-format
-msgid "LPQ command"
-msgstr "Urzhiad LPQ"
-
-#: standalone/draksambashare:107
-#, c-format
-msgid "Guest ok"
-msgstr ""
-
-#: standalone/draksambashare:110 standalone/draksambashare:151
-#: standalone/draksambashare:607
-#, c-format
-msgid "Inherit permissions"
-msgstr ""
-
-#: standalone/draksambashare:112
-#, c-format
-msgid "Create mode"
-msgstr "Mod krouiñ"
-
-#: standalone/draksambashare:113
-#, c-format
-msgid "Use client driver"
-msgstr "Implijit ur sturier pratik"
-
-#: standalone/draksambashare:139
-#, c-format
-msgid "Read List"
-msgstr "Roll lenn"
-
-#: standalone/draksambashare:140
-#, c-format
-msgid "Write List"
-msgstr "Roll skrivañ"
-
-#: standalone/draksambashare:145
-#, c-format
-msgid "Force Group"
-msgstr ""
-
-#: standalone/draksambashare:146
-#, c-format
-msgid "Force create group"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid "About Draksambashare"
-msgstr "Diwar-benn Draksambashare"
-
-#: standalone/draksambashare:166
-#, c-format
-msgid ""
-"Mandriva Linux \n"
-"Release: %s\n"
-"Author: Antoine Ginies\n"
-"\n"
-"This is a simple tool to easily manage Samba configuration."
-msgstr ""
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Samba server"
-msgstr "Servijer Samba"
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Restarting/Reloading Samba server..."
-msgstr "Oc'h adloc'hañ/adkargañ ar servijer Samba ..."
-
-#: standalone/draksambashare:187
-#, c-format
-msgid "Error Restarting/Reloading Samba server"
-msgstr "Fazi en ur adloc'hañ/adkargañ ar servijer Samba"
-
-#: standalone/draksambashare:372
-#, c-format
-msgid "Add a Samba share"
-msgstr "Ouzhpennañ ur rannad Samba"
-
-#: standalone/draksambashare:375
-#, c-format
-msgid "Goal of this wizard is to easily create a new Samba share."
-msgstr ""
-
-#: standalone/draksambashare:377
-#, c-format
-msgid "Name of the share:"
-msgstr "Anv ar rannad :"
-
-#: standalone/draksambashare:378 standalone/draksambashare:591
-#: standalone/draksambashare:772
-#, c-format
-msgid "Comment:"
-msgstr "Askelenn :"
-
-#: standalone/draksambashare:379
-#, c-format
-msgid "Path:"
-msgstr "Hent :"
-
-#: standalone/draksambashare:384
-#, c-format
-msgid ""
-"Share with the same name already exist or share name empty, please choose "
-"another name."
-msgstr ""
-
-#: standalone/draksambashare:388 standalone/draksambashare:394
-#, c-format
-msgid "Can't create the directory, please enter a correct path."
-msgstr ""
-
-#: standalone/draksambashare:391 standalone/draksambashare:627
-#: standalone/draksambashare:794
-#, c-format
-msgid "Please enter a Comment for this share."
-msgstr "Roit un askelenn evit ar rannad-mañ mar plij."
-
-#: standalone/draksambashare:422
-#, c-format
-msgid ""
-"The wizard successfully added the Samba share. Now just double click on it "
-"in treeview to modify it"
-msgstr ""
-
-#: standalone/draksambashare:437
-#, c-format
-msgid "pdf-gen - a PDF generator"
-msgstr "pdf-gen - ur chrouer PDF"
-
-#: standalone/draksambashare:438
-#, c-format
-msgid "printers - all printers available"
-msgstr ""
-
-#: standalone/draksambashare:442
-#, c-format
-msgid "Add Special Printer share"
-msgstr ""
-
-#: standalone/draksambashare:445
-#, c-format
-msgid ""
-"Goal of this wizard is to easily create a new special printer Samba share."
-msgstr ""
-
-#: standalone/draksambashare:453
-#, c-format
-msgid "A PDF generator already exists."
-msgstr "Ur c'hrouer PDF zo c'hoazh."
-
-#: standalone/draksambashare:477
-#, c-format
-msgid "Printers and print$ already exist."
-msgstr ""
-
-#: standalone/draksambashare:528
-#, c-format
-msgid "The wizard successfully added the printer Samba share"
-msgstr ""
-
-#: standalone/draksambashare:551
-#, c-format
-msgid "Please add or select a Samba printer share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:587
-#, c-format
-msgid "Printer share"
-msgstr "Moullerez rannet"
-
-#: standalone/draksambashare:590
-#, c-format
-msgid "Printer name:"
-msgstr "Anv ar voullerez :"
-
-#: standalone/draksambashare:596 standalone/draksambashare:777
-#, c-format
-msgid "Writable:"
-msgstr ""
-
-#: standalone/draksambashare:597 standalone/draksambashare:778
-#, c-format
-msgid "Browseable:"
-msgstr ""
-
-#: standalone/draksambashare:602
-#, c-format
-msgid "Advanced options"
-msgstr "Dibaboù barek"
-
-#: standalone/draksambashare:604
-#, c-format
-msgid "Printer access"
-msgstr ""
-
-#: standalone/draksambashare:608
-#, c-format
-msgid "Guest ok:"
-msgstr ""
-
-#: standalone/draksambashare:609
-#, c-format
-msgid "Create mode:"
-msgstr "Mod krouiñ :"
-
-#: standalone/draksambashare:613
-#, c-format
-msgid "Printer command"
-msgstr "Urzhiad voullerez"
-
-#: standalone/draksambashare:615
-#, c-format
-msgid "Print command:"
-msgstr "Urzhiad voullerez :"
-
-#: standalone/draksambashare:616
-#, c-format
-msgid "LPQ command:"
-msgstr "Urzhiad LPQ :"
-
-#: standalone/draksambashare:617
-#, c-format
-msgid "Printing:"
-msgstr "War voulañ :"
-
-#: standalone/draksambashare:633
-#, c-format
-msgid "create mode should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:695
-#, c-format
-msgid "DrakSamba entry"
-msgstr "Bouetadur DrakSamba"
-
-#: standalone/draksambashare:700
-#, c-format
-msgid "Please add or select a Samba share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:723
-#, c-format
-msgid "Samba user access"
-msgstr ""
-
-#: standalone/draksambashare:731
-#, c-format
-msgid "Mask options"
-msgstr "Dibarzhoù ar maskl"
-
-#: standalone/draksambashare:745
-#, c-format
-msgid "Display options"
-msgstr "Dibarzhoù an diskwel"
-
-#: standalone/draksambashare:767
-#, c-format
-msgid "Samba share directory"
-msgstr "Renkell ar rannad Samba"
-
-#: standalone/draksambashare:770
-#, c-format
-msgid "Share name:"
-msgstr "Anv ar rannad :"
-
-#: standalone/draksambashare:776
-#, c-format
-msgid "Public:"
-msgstr "Foran :"
-
-#: standalone/draksambashare:800
-#, c-format
-msgid ""
-"Create mask, create mode and directory mask should be numeric. ie: 0755."
-msgstr "Maskl renkell :"
-
-#: standalone/draksambashare:807
-#, c-format
-msgid "Please create this Samba user: %s"
-msgstr "Krouiñ an arveriad-Samba-mañ mar plij : %s"
-
-#: standalone/draksambashare:930
-#, c-format
-msgid "User information"
-msgstr "Titouroù diwar an arveriad"
-
-#: standalone/draksambashare:932
-#, c-format
-msgid "User name:"
-msgstr "Anv an arveriad :"
-
-#: standalone/draksambashare:933
-#, c-format
-msgid "Password:"
-msgstr "Tremenger :"
-
-#: standalone/draksambashare:1133
-#, c-format
-msgid "Failed to add Samba share."
-msgstr "N'hell ket bet ouzhpennañ ar rannad Samba."
-
-#: standalone/draksambashare:1142
-#, c-format
-msgid "Failed to Modify Samba share."
-msgstr "N'hell ket bet cheñchiñ ar rannad Samba."
-
-#: standalone/draksambashare:1151
-#, c-format
-msgid "Failed to remove a Samba share."
-msgstr "N'hell ket bet lemel ar rannad Samba."
-
-#: standalone/draksambashare:1158
-#, c-format
-msgid "File share"
-msgstr ""
-
-#: standalone/draksambashare:1166
-#, c-format
-msgid "Add printers"
-msgstr "Ouzhpennañ ur voullerez"
-
-#: standalone/draksambashare:1172
-#, c-format
-msgid "Failed to add printers."
-msgstr "N'hell ket bet ouzhpennañ ur voullerez.."
-
-#: standalone/draksambashare:1181
-#, c-format
-msgid "Failed to Modify."
-msgstr "N'hell ket bet cheñchiñ."
-
-#: standalone/draksambashare:1190
-#, c-format
-msgid "Failed to remove."
-msgstr "N'hell ket bet lemet."
-
-#: standalone/draksambashare:1197
-#, c-format
-msgid "Printers"
-msgstr "Moullerezioù"
-
-#: standalone/draksambashare:1205
-#, c-format
-msgid "Change password"
-msgstr "Kemmañ an tremenger"
-
-#: standalone/draksambashare:1210
-#, c-format
-msgid "Failed to change user password."
-msgstr "N'hell ket bet cheñchiñ tremenger an arveriad."
-
-#: standalone/draksambashare:1218
-#, c-format
-msgid "Failed to add user."
-msgstr "N'hell ket bet ouzhpennañ an arveriad."
-
-#: standalone/draksambashare:1221
-#, c-format
-msgid "Delete user"
-msgstr "Lemel an arveriad"
-
-#: standalone/draksambashare:1230
-#, c-format
-msgid "Failed to delete user."
-msgstr "N'hell ket bet lemet an arveriad."
-
-#: standalone/draksambashare:1242
-#, c-format
-msgid "Samba Users"
-msgstr "Arveriaded Samba"
-
-#: standalone/draksambashare:1251
-#, c-format
-msgid "DrakSamba manage Samba shares"
-msgstr ""
-
-#: standalone/draksec:49
-#, c-format
-msgid "ALL"
-msgstr "HOLL"
-
-#: standalone/draksec:50
-#, c-format
-msgid "LOCAL"
-msgstr "LEC'HEL"
-
-#: standalone/draksec:51
-#, c-format
-msgid "NONE"
-msgstr "EBET"
-
-#: standalone/draksec:53 standalone/net_applet:480
-#, c-format
-msgid "Ignore"
-msgstr "Tremen e-biou"
-
-#. -PO: Do not alter the <span ..> and </span> tags.
-#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
-#: standalone/draksec:103
-#, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Administrator</span>' is the one who "
-"will receive security alerts if the\n"
-"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a "
-"username or an email.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Level</span>' menu allows you to select "
-"one of the six preconfigured security levels\n"
-"provided with msec. These levels range from '<span weight=\"bold\">poor</"
-"span>' security and ease of use, to\n"
-"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive "
-"server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
-"very\n"
-"easy to use security level. It should only be used for machines not "
-"connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
-"security\n"
-"recommended for a computer that will be used to connect to the Internet as "
-"a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
-"enough\n"
-"to use the system as a server which can accept connections from many "
-"clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower "
-"level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-"Amañ e c'hellit kefluniañ al live surantez hag melestradur an surentez\n"
-"hoc'h urziataer.\n"
-"\n"
-"\n"
-"Ar « Melestradur an surentez » a vo o resev posteloù surantez ma vez\n"
-"bev an dibarzh « <span weight=\"bold\">Posteloù surantez</span> ». Un\n"
-"anv arveriad pe ur chomlec'h postel e c'hell bezañ.\n"
-"\n"
-"\n"
-"Gant ar meuziad « <span weight=\"bold\">Live surantez</span> », moaien\n"
-"eo dibab unan eus ar c'hwec'h live surantez hag a zo pourvezet. Etre\n"
-"« <span weight=\"bold\">Paour</span> » hag « <span\n"
-"weight=\"bold\">Ankeniet</span> » eo al live surantez. Aes da implij eo\n"
-"« Paour ». Evit ar servijerien eo « Ankeniet ».\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paour</span> : N'eo ket surantezet ar\n"
-"reizhiat met aez da implij eo gant al live-surantez-mañ. Gwell deoc'h\n"
-"implij kement-mañ evit un urzhiatazer hag na vez ket ouzh ur rouedad.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Skouer</span> : Setu al live surentez\n"
-"standard a vez erbedet evit un urzhiataer a vo implijet evit kevreañ\n"
-"evel kliant ouzh ar Genrouedad.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Uhel</span> : Bremañ ez eus gwiriadennoù\n"
-"surentez hag a zo sevenet d'an noz.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Uheloc'h</span> : Uhel a-walc'h eo\n"
-"bremañ ar surentez evit implijout ar reizhiad evel ur servijer o\n"
-"tigemer kevreadennoù a-berzh kliantoù niverus. Ma vez ur c'hliant\n"
-"kenrouedad hepken, neuze e vefe moarvat gwelloc'h deoc'h dibab ul live\n"
-"izeloc'h.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Ankeniet</span> : Kemer a reomp\n"
-"arc'hweloù al live diaraok, hogen bremañ eo peurserret ar reizhiad hag\n"
-"an arc'hweloù surentez zo en o muiañ."
-
-#: standalone/draksec:156 standalone/harddrake2:207
-#, c-format
-msgid ""
-"Description of the fields:\n"
-"\n"
-msgstr ""
-"Deskrivadur an tachennoù :\n"
-"\n"
-
-#: standalone/draksec:170
-#, c-format
-msgid "(default value: %s)"
-msgstr "(gwerzh dre ziouer : %s)"
-
-#: standalone/draksec:212
-#, c-format
-msgid "Security Level:"
-msgstr "Live Surentez :"
-
-#: standalone/draksec:219
-#, c-format
-msgid "Security Administrator:"
-msgstr "Merour surentez :"
-
-#: standalone/draksec:221
-#, c-format
-msgid "Basic options"
-msgstr "Dibarzhoù diazeg"
-
-#: standalone/draksec:235
-#, c-format
-msgid "Network Options"
-msgstr "Dibarzhoù ar rouedad"
-
-#: standalone/draksec:235
-#, c-format
-msgid "System Options"
-msgstr "Dibarzhoù ar reizhiad"
-
-#: standalone/draksec:270
-#, c-format
-msgid "Periodic Checks"
-msgstr ""
-
-#: standalone/draksec:300
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "O lakaat al live surentez, gortoz mar plij ..."
-
-#: standalone/draksec:306
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "O lakaat an dibarzhoù surentez, gortoz mar plij ..."
-
-#: standalone/draksound:47
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Kartenn gwelet ebet !"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/draksound:50
-#, c-format
-msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-
-#: standalone/draksound:57
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or "
-"the sndconfig program. Just type \"alsaconf\" or \"sndconfig\" in a console."
-msgstr ""
-
-#: standalone/draksplash:30
-#, c-format
-msgid "x coordinate of text box"
-msgstr "lec'h x ar bouest skrid"
-
-#: standalone/draksplash:31
-#, c-format
-msgid "y coordinate of text box"
-msgstr "lec'h y ar bouest skrid"
-
-#: standalone/draksplash:32
-#, c-format
-msgid "text box width"
-msgstr "ledander ar bouest skrid"
-
-#: standalone/draksplash:33
-#, c-format
-msgid "text box height"
-msgstr "uhelder ar bouest skrid"
-
-#: standalone/draksplash:34
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-
-#: standalone/draksplash:35
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-
-#: standalone/draksplash:36
-#, c-format
-msgid "the width of the progress bar"
-msgstr "ledander ar varrenn araogenn"
-
-#: standalone/draksplash:37
-#, c-format
-msgid "the height of the progress bar"
-msgstr "uhelder ar varrenn araogenn"
-
-#: standalone/draksplash:38
-#, c-format
-msgid "x coordinate of the text"
-msgstr "lec'h x ar skrid"
-
-#: standalone/draksplash:39
-#, c-format
-msgid "y coordinate of the text"
-msgstr "lec'h y ar skrid"
-
-#: standalone/draksplash:40
-#, c-format
-msgid "text box transparency"
-msgstr ""
-
-#: standalone/draksplash:41
-#, c-format
-msgid "progress box transparency"
-msgstr ""
-
-#: standalone/draksplash:42
-#, c-format
-msgid "text size"
-msgstr "ment ar skrid"
-
-#: standalone/draksplash:59
-#, c-format
-msgid "Choose progress bar color 1"
-msgstr "Dibabit liv 1 ar varrenn araogenn"
-
-#: standalone/draksplash:60
-#, c-format
-msgid "Choose progress bar color 2"
-msgstr "Dibabit liv 2 ar varrenn araogenn"
-
-#: standalone/draksplash:61
-#, c-format
-msgid "Choose progress bar background"
-msgstr "Dibabit drekleur ar varrenn araogenn"
-
-#: standalone/draksplash:62
-#, c-format
-msgid "Gradient type"
-msgstr ""
-
-#: standalone/draksplash:63
-#, c-format
-msgid "Choose text color"
-msgstr "Dibabit liv ar skrid"
-
-#: standalone/draksplash:65 standalone/draksplash:72
-#, c-format
-msgid "Choose picture"
-msgstr "Dibabit ur skeudenn"
-
-#: standalone/draksplash:66
-#, c-format
-msgid "Silent bootsplash"
-msgstr "Skeudenn loc'hañ didrouz"
-
-#: standalone/draksplash:69
-#, c-format
-msgid "Choose text zone color"
-msgstr "Dibabit liv gorread ar skrid"
-
-#: standalone/draksplash:70
-#, c-format
-msgid "Text color"
-msgstr "Liv ar skrid"
-
-#: standalone/draksplash:71
-#, c-format
-msgid "Background color"
-msgstr "Liv an drekleur"
-
-#: standalone/draksplash:73
-#, c-format
-msgid "Verbose bootsplash"
-msgstr "Mod flapañ"
-
-#: standalone/draksplash:75
-#, c-format
-msgid "Display logo on Console"
-msgstr "Diskouez al logo ouzh al letrin"
-
-#: standalone/draksplash:78
-#, c-format
-msgid "Console bootsplash"
-msgstr "Mod letrin"
-
-#: standalone/draksplash:84
-#, c-format
-msgid "Theme name"
-msgstr "Anv ar giz"
-
-#: standalone/draksplash:87
-#, c-format
-msgid "final resolution"
-msgstr "spister diwezhañ"
-
-#: standalone/draksplash:92
-#, c-format
-msgid "Save theme"
-msgstr "Enrollañ ar c'hiz"
-
-#: standalone/draksplash:153
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "emon oc'h enrollañ giz ar skeudenn loc'hañ ..."
-
-#: standalone/draksplash:162
-#, c-format
-msgid "Unable to load image file %s"
-msgstr "N'hell ket kargañ ar restr skeudenn %s"
-
-#: standalone/draksplash:173
-#, c-format
-msgid "choose image"
-msgstr "dibabit ur skeudenn"
-
-#: standalone/draksplash:188
-#, c-format
-msgid "Color selection"
-msgstr "Choazh al liv"
-
-#: standalone/drakups:71
-#, c-format
-msgid "Connected through a serial port or an usb cable"
-msgstr ""
-
-#: standalone/drakups:78
-#, c-format
-msgid "Add an UPS device"
-msgstr "Ouzhpennañ un drobarzhell UPS"
-
-#: standalone/drakups:81
-#, c-format
-msgid ""
-"Welcome to the UPS configuration utility.\n"
-"\n"
-"Here, you'll add a new UPS to your system.\n"
-msgstr ""
-
-#: standalone/drakups:88
-#, c-format
-msgid ""
-"We're going to add an UPS device.\n"
-"\n"
-"Do you want to autodetect UPS devices connected to this machine or to "
-"manually select them?"
-msgstr ""
-
-#: standalone/drakups:91
-#, c-format
-msgid "Autodetection"
-msgstr "Dinoiñ dre ardivink"
-
-#: standalone/drakups:99 standalone/harddrake2:375
-#, c-format
-msgid "Detection in progress"
-msgstr "O klask"
-
-#: standalone/drakups:119
-#, c-format
-msgid "The wizard successfully added the following UPS devices:"
-msgstr ""
-
-#: standalone/drakups:121
-#, c-format
-msgid "No new UPS devices was found"
-msgstr "N'eus trobarzhelloù UPS nevez kavet"
-
-#: standalone/drakups:126 standalone/drakups:138
-#, c-format
-msgid "UPS driver configuration"
-msgstr "Kefluniadur ar sturier UPS"
-
-#: standalone/drakups:126
-#, c-format
-msgid "Please select your UPS model."
-msgstr "Dibabit seurt hoc'h UPS, mar plij."
-
-#: standalone/drakups:127
-#, c-format
-msgid "Manufacturer / Model:"
-msgstr "Farder / Gobari :"
-
-#: standalone/drakups:138
-#, c-format
-msgid ""
-"We are configuring the \"%s\" UPS from \"%s\".\n"
-"Please fill in its name, its driver and its port."
-msgstr ""
-
-#: standalone/drakups:143
-#, c-format
-msgid "Name:"
-msgstr "Anv :"
-
-#: standalone/drakups:143
-#, c-format
-msgid "The name of your ups"
-msgstr "Anv hon UPS"
-
-#: standalone/drakups:144
-#, c-format
-msgid "The driver that manages your ups"
-msgstr ""
-
-#: standalone/drakups:145
-#, c-format
-msgid "Port:"
-msgstr "Porzh :"
-
-#: standalone/drakups:147
-#, c-format
-msgid "The port on which is connected your ups"
-msgstr "Ar porzh a-steud m'eo luget ho ups outañ"
-
-#: standalone/drakups:157
-#, c-format
-msgid "The wizard successfully configured the new \"%s\" UPS device."
-msgstr ""
-
-#: standalone/drakups:248
-#, c-format
-msgid "UPS devices"
-msgstr "Trobarzhelloù UPS"
-
-#: standalone/drakups:249 standalone/drakups:268 standalone/drakups:284
-#: standalone/harddrake2:85 standalone/harddrake2:111
-#: standalone/harddrake2:118
-#, c-format
-msgid "Name"
-msgstr "Anv"
-
-#: standalone/drakups:267
-#, c-format
-msgid "UPS users"
-msgstr "Arveriaded UPS"
-
-#: standalone/drakups:283
-#, c-format
-msgid "Access Control Lists"
-msgstr ""
-
-#: standalone/drakups:284
-#, c-format
-msgid "IP mask"
-msgstr "Maskl IP"
-
-#: standalone/drakups:296
-#, c-format
-msgid "Rules"
-msgstr "Reolennoù"
-
-#: standalone/drakups:297
-#, c-format
-msgid "Action"
-msgstr "Gwezhiad"
-
-#: standalone/drakups:297 standalone/drakvpn:1132 standalone/harddrake2:82
-#, c-format
-msgid "Level"
-msgstr "Live"
-
-#: standalone/drakups:297
-#, c-format
-msgid "ACL name"
-msgstr "Anv an ACL"
-
-#: standalone/drakups:327 standalone/drakups:331 standalone/drakups:340
-#, c-format
-msgid "DrakUPS"
-msgstr "DrakUPS"
-
-#: standalone/drakups:337
-#, c-format
-msgid "Welcome to the UPS configuration tools"
-msgstr "Degemer en ostilh ar c'hefluniadur UPS"
-
-#: standalone/drakvpn:73
-#, c-format
-msgid "DrakVPN"
-msgstr "DrakVPN"
-
-#: standalone/drakvpn:95
-#, c-format
-msgid "The VPN connection is enabled."
-msgstr "Bev eo ar gevreadenn VPN."
-
-#: standalone/drakvpn:96
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-
-#: standalone/drakvpn:101
-#, c-format
-msgid "disable"
-msgstr "marvaat"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127
-#, c-format
-msgid "reconfigure"
-msgstr "adgefluniañ"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127 standalone/drakvpn:362
-#: standalone/drakvpn:721
-#, c-format
-msgid "dismiss"
-msgstr "dilezel"
-
-#: standalone/drakvpn:105
-#, c-format
-msgid "Disabling VPN..."
-msgstr "O varvaat ar VPN ..."
-
-#: standalone/drakvpn:114
-#, c-format
-msgid "The VPN connection is now disabled."
-msgstr "Marv eo ar gevreadenn VPN bremañ."
-
-#: standalone/drakvpn:121
-#, c-format
-msgid "VPN connection currently disabled"
-msgstr "Marv eo ar gevreadenn VPN bremañ"
-
-#: standalone/drakvpn:122
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-
-#: standalone/drakvpn:127
-#, c-format
-msgid "enable"
-msgstr "bevaat"
-
-#: standalone/drakvpn:135
-#, c-format
-msgid "Enabling VPN..."
-msgstr "O bevaat ar VPN ..."
-
-#: standalone/drakvpn:141
-#, c-format
-msgid "The VPN connection is now enabled."
-msgstr "Bev eo ar gevreadenn VPN bremañ."
-
-#: standalone/drakvpn:155 standalone/drakvpn:183
-#, c-format
-msgid "Simple VPN setup."
-msgstr "Kefluniadur VPN eeun."
-
-#: standalone/drakvpn:156
-#, c-format
-msgid ""
-"You are about to configure your computer to use a VPN connection.\n"
-"\n"
-"With this feature, computers on your local private network and computers\n"
-"on some other remote private networks, can share resources, through\n"
-"their respective firewalls, over the Internet, in a secure manner. \n"
-"\n"
-"The communication over the Internet is encrypted. The local and remote\n"
-"computers look as if they were on the same network.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using\n"
-"drakconnect before going any further."
-msgstr ""
-
-#: standalone/drakvpn:184
-#, c-format
-msgid ""
-"VPN connection.\n"
-"\n"
-"This program is based on the following projects:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - the docs and man pages coming with the %s package\n"
-"\n"
-"Please read AT LEAST the ipsec-howto docs\n"
-"before going any further."
-msgstr ""
-
-#: standalone/drakvpn:196
-#, c-format
-msgid "Kernel module."
-msgstr "Mollad ar galon."
-
-#: standalone/drakvpn:197
-#, c-format
-msgid ""
-"The kernel needs to have ipsec support.\n"
-"\n"
-"You're running a %s kernel version.\n"
-"\n"
-"This kernel has '%s' support."
-msgstr ""
-
-#: standalone/drakvpn:264
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Fazioù en ur staliañ ar pakad %s"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "Security Policies"
-msgstr "Politikerezhioù ar surentez"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "IKE daemon racoon"
-msgstr ""
-
-#: standalone/drakvpn:281 standalone/drakvpn:292
-#, c-format
-msgid "Configuration file"
-msgstr "Restr ar c'hefluniadur"
-
-#: standalone/drakvpn:282
-#, c-format
-msgid ""
-"Configuration step!\n"
-"\n"
-"You need to define the Security Policies and then to \n"
-"configure the automatic key exchange (IKE) daemon. \n"
-"The KAME IKE daemon we're using is called 'racoon'.\n"
-"\n"
-"What would you like to configure?\n"
-msgstr ""
-
-#: standalone/drakvpn:293
-#, c-format
-msgid ""
-"Next, we will configure the %s file.\n"
-"\n"
-"\n"
-"Simply click on Next.\n"
-msgstr ""
-
-#: standalone/drakvpn:311 standalone/drakvpn:671
-#, c-format
-msgid "%s entries"
-msgstr "%s bouetadur"
-
-#: standalone/drakvpn:312
-#, c-format
-msgid ""
-"The %s file contents\n"
-"is divided into sections.\n"
-"\n"
-"You can now:\n"
-"\n"
-" - display, add, edit, or remove sections, then\n"
-" - commit the changes\n"
-"\n"
-"What would you like to do?\n"
-msgstr ""
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display"
-msgstr "Diskouez"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid "Commit"
-msgstr ""
-
-#: standalone/drakvpn:333 standalone/drakvpn:337 standalone/drakvpn:695
-#: standalone/drakvpn:699
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display configuration"
-msgstr "Kefluniadur an diskwel"
-
-#: standalone/drakvpn:338
-#, c-format
-msgid ""
-"The %s file does not exist.\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose 'add'.\n"
-msgstr ""
-
-#: standalone/drakvpn:354
-#, c-format
-msgid "ipsec.conf entries"
-msgstr ""
-
-#: standalone/drakvpn:355
-#, c-format
-msgid ""
-"The %s file contains different sections.\n"
-"\n"
-"Here is its skeleton:\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"You can now add one of these sections.\n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "config setup"
-msgstr "kefluniadur"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "conn %default"
-msgstr "conn %default"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "normal conn"
-msgstr "Mod boas"
-
-#: standalone/drakvpn:368 standalone/drakvpn:409 standalone/drakvpn:496
-#, c-format
-msgid "Exists!"
-msgstr "Endeo eo !"
-
-#: standalone/drakvpn:369 standalone/drakvpn:410
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change its name.\n"
-msgstr ""
-
-#: standalone/drakvpn:386
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow this config\n"
-"setup section.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:391
-#, c-format
-msgid "interfaces"
-msgstr "etrefasoù"
-
-#: standalone/drakvpn:392
-#, c-format
-msgid "klipsdebug"
-msgstr ""
-
-#: standalone/drakvpn:393
-#, c-format
-msgid "plutodebug"
-msgstr ""
-
-#: standalone/drakvpn:394
-#, c-format
-msgid "plutoload"
-msgstr ""
-
-#: standalone/drakvpn:395
-#, c-format
-msgid "plutostart"
-msgstr ""
-
-#: standalone/drakvpn:396
-#, c-format
-msgid "uniqueids"
-msgstr ""
-
-#: standalone/drakvpn:430
-#, c-format
-msgid ""
-"This is the first section after the config\n"
-"setup one.\n"
-"\n"
-"Here you define the default settings. \n"
-"All the other sections will follow this one.\n"
-"The left settings are optional. If do not define\n"
-"them here, globally, you can define them in each\n"
-"section.\n"
-msgstr ""
-
-#: standalone/drakvpn:437
-#, c-format
-msgid "PFS"
-msgstr "PFS"
-
-#: standalone/drakvpn:438
-#, c-format
-msgid "keyingtries"
-msgstr ""
-
-#: standalone/drakvpn:439
-#, c-format
-msgid "compress"
-msgstr "moustrañ"
-
-#: standalone/drakvpn:440
-#, c-format
-msgid "disablearrivalcheck"
-msgstr ""
-
-#: standalone/drakvpn:441 standalone/drakvpn:480
-#, c-format
-msgid "left"
-msgstr "a-gleiz"
-
-#: standalone/drakvpn:442 standalone/drakvpn:481
-#, c-format
-msgid "leftcert"
-msgstr ""
-
-#: standalone/drakvpn:443 standalone/drakvpn:482
-#, c-format
-msgid "leftrsasigkey"
-msgstr ""
-
-#: standalone/drakvpn:444 standalone/drakvpn:483
-#, c-format
-msgid "leftsubnet"
-msgstr ""
-
-#: standalone/drakvpn:445 standalone/drakvpn:484
-#, c-format
-msgid "leftnexthop"
-msgstr ""
-
-#: standalone/drakvpn:474
-#, c-format
-msgid ""
-"Your %s file has several sections, or connections.\n"
-"\n"
-"You can now add a new section.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:477
-#, c-format
-msgid "section name"
-msgstr "anv an dachenn"
-
-#: standalone/drakvpn:478
-#, c-format
-msgid "authby"
-msgstr ""
-
-#: standalone/drakvpn:479
-#, c-format
-msgid "auto"
-msgstr "emgefreek"
-
-#: standalone/drakvpn:485
-#, c-format
-msgid "right"
-msgstr "a-zehoù"
-
-#: standalone/drakvpn:486
-#, c-format
-msgid "rightcert"
-msgstr ""
-
-#: standalone/drakvpn:487
-#, c-format
-msgid "rightrsasigkey"
-msgstr ""
-
-#: standalone/drakvpn:488
-#, c-format
-msgid "rightsubnet"
-msgstr ""
-
-#: standalone/drakvpn:489
-#, c-format
-msgid "rightnexthop"
-msgstr ""
-
-#: standalone/drakvpn:497
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change the name of the section.\n"
-msgstr ""
-
-#: standalone/drakvpn:529
-#, c-format
-msgid ""
-"Add a Security Policy.\n"
-"\n"
-"You can now add a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:562 standalone/drakvpn:812
-#, c-format
-msgid "Edit section"
-msgstr "Aozañ an dachenn"
-
-#: standalone/drakvpn:563
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to edit \n"
-"and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:566 standalone/drakvpn:646 standalone/drakvpn:817
-#: standalone/drakvpn:863
-#, c-format
-msgid "Section names"
-msgstr "Anvioù an tachennoù"
-
-#: standalone/drakvpn:576
-#, c-format
-msgid "Can not edit!"
-msgstr "N'hellan ket aozañ !"
-
-#: standalone/drakvpn:577
-#, c-format
-msgid ""
-"You cannot edit this section.\n"
-"\n"
-"This section is mandatory for Freeswan 2.X.\n"
-"One has to specify version 2.0 on the top\n"
-"of the %s file, and eventually, disable or\n"
-"enable the opportunistic encryption.\n"
-msgstr ""
-
-#: standalone/drakvpn:586
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the config setup section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:597
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the default section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:610
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the normal section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:631
-#, c-format
-msgid ""
-"Edit a Security Policy.\n"
-"\n"
-"You can now edit a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:642 standalone/drakvpn:859
-#, c-format
-msgid "Remove section"
-msgstr "Lemel an dachenn"
-
-#: standalone/drakvpn:643 standalone/drakvpn:860
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to remove\n"
-"and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:672
-#, c-format
-msgid ""
-"The racoon.conf file configuration.\n"
-"\n"
-"The contents of this file is divided into sections.\n"
-"You can now:\n"
-" - display \t\t (display the file contents)\n"
-" - add\t\t\t (add one section)\n"
-" - edit \t\t\t (modify parameters of an existing section)\n"
-" - remove \t\t (remove an existing section)\n"
-" - commit \t\t (writes the changes to the real file)"
-msgstr ""
-
-#: standalone/drakvpn:700
-#, c-format
-msgid ""
-"The %s file does not exist\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose configure.\n"
-msgstr ""
-
-#: standalone/drakvpn:714
-#, c-format
-msgid "racoonf.conf entries"
-msgstr ""
-
-#: standalone/drakvpn:715
-#, c-format
-msgid ""
-"The 'add' sections step.\n"
-"\n"
-"Here below is the racoon.conf file skeleton:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "path"
-msgstr "hent"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "remote"
-msgstr "a-bell"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "sainfo"
-msgstr "sainfo"
-
-#: standalone/drakvpn:729
-#, c-format
-msgid ""
-"The 'add path' section step.\n"
-"\n"
-"The path sections have to be on top of your racoon.conf file.\n"
-"\n"
-"Put your mouse over the certificate entry to obtain online help."
-msgstr ""
-
-#: standalone/drakvpn:732
-#, c-format
-msgid "path type"
-msgstr "seurt an hent"
-
-#: standalone/drakvpn:736
-#, c-format
-msgid ""
-"path include path: specifies a path to include\n"
-"a file. See File Inclusion.\n"
-"\tExample: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: specifies a file containing\n"
-"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
-"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) will search this directory\n"
-"if a certificate or certificate request is received.\n"
-"\tExample: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"other configuration files can be included.\n"
-"\tExample: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File: Pre-shared key file defines a pair\n"
-"of the identifier and the shared secret key which are used at\n"
-"Pre-shared key authentication method in phase 1."
-msgstr ""
-
-#: standalone/drakvpn:756 standalone/drakvpn:849
-#, c-format
-msgid "real file"
-msgstr "gwir restr"
-
-#: standalone/drakvpn:779
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your racoon.conf file.\n"
-"\n"
-"You can now choose the remote settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:796
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your %s file.\n"
-"\n"
-"You can now choose the sainfo settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:813
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here in the list below the one you want\n"
-"to edit and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:824
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"\n"
-"You can now edit the remote section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:833
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the sainfo section entries.\n"
-"\n"
-"Choose continue when you are done to write the data."
-msgstr ""
-
-#: standalone/drakvpn:841
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow these path\n"
-"sections.\n"
-"\n"
-"You can now edit the path entries.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:848
-#, c-format
-msgid "path_type"
-msgstr "seurt_an_hent"
-
-#: standalone/drakvpn:889
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"\n"
-"You may now share resources through the Internet,\n"
-"in a secure way, using a VPN connection.\n"
-"\n"
-"You should make sure that that the tunnels shorewall\n"
-"section is configured."
-msgstr ""
-
-#: standalone/drakvpn:909
-#, c-format
-msgid "Sainfo source address"
-msgstr ""
-
-#: standalone/drakvpn:910
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 is the source address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 is the source address"
-msgstr ""
-
-#: standalone/drakvpn:927
-#, c-format
-msgid "Sainfo source protocol"
-msgstr ""
-
-#: standalone/drakvpn:928
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe first 'any' allows any protocol for the source"
-msgstr ""
-
-#: standalone/drakvpn:942
-#, c-format
-msgid "Sainfo destination address"
-msgstr ""
-
-#: standalone/drakvpn:943
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 is the destination address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 is the destination address"
-msgstr ""
-
-#: standalone/drakvpn:960
-#, c-format
-msgid "Sainfo destination protocol"
-msgstr ""
-
-#: standalone/drakvpn:961
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe last 'any' allows any protocol for the destination"
-msgstr ""
-
-#: standalone/drakvpn:975
-#, c-format
-msgid "PFS group"
-msgstr "Strollad PFS"
-
-#: standalone/drakvpn:977
-#, c-format
-msgid ""
-"define the group of Diffie-Hellman exponentiations.\n"
-"If you do not require PFS then you can omit this directive.\n"
-"Any proposal will be accepted if you do not specify one.\n"
-"group is one of the following: modp768, modp1024, modp1536.\n"
-"Or you can define 1, 2, or 5 as the DH group number."
-msgstr ""
-
-#: standalone/drakvpn:982
-#, c-format
-msgid "Lifetime number"
-msgstr ""
-
-#: standalone/drakvpn:983
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-msgstr ""
-
-#: standalone/drakvpn:999
-#, c-format
-msgid "Lifetime unit"
-msgstr ""
-
-#: standalone/drakvpn:1001
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
-"'hour'.\n"
-msgstr ""
-
-#: standalone/drakvpn:1019
-#, c-format
-msgid "Authentication algorithm"
-msgstr "Algoritm dilesadur"
-
-#: standalone/drakvpn:1021
-#, c-format
-msgid "Compression algorithm"
-msgstr ""
-
-#: standalone/drakvpn:1022
-#, c-format
-msgid "deflate"
-msgstr ""
-
-#: standalone/drakvpn:1029
-#, c-format
-msgid "Remote"
-msgstr "A-bell"
-
-#: standalone/drakvpn:1030
-#, c-format
-msgid ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specifies the parameters for IKE phase 1 for each remote node.\n"
-"The default port is 500. If anonymous is specified, the state-\n"
-"ments apply to all peers which do not match any other remote\n"
-"directive.\n"
-"\n"
-"Examples: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-msgstr ""
-
-#: standalone/drakvpn:1038
-#, c-format
-msgid "Exchange mode"
-msgstr "Mod eskemm"
-
-#: standalone/drakvpn:1040
-#, c-format
-msgid ""
-"defines the exchange mode for phase 1 when racoon is the\n"
-"initiator. Also it means the acceptable exchange mode\n"
-"when racoon is responder. More than one mode can be\n"
-"specified by separating them with a comma. All of the\n"
-"modes are acceptable. The first exchange mode is what\n"
-"racoon uses when it is the initiator.\n"
-msgstr ""
-
-#: standalone/drakvpn:1046
-#, c-format
-msgid "Generate policy"
-msgstr "Krouiñ ar politikerez"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "off"
-msgstr "dioberiant"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "on"
-msgstr "oberiant"
-
-#: standalone/drakvpn:1048
-#, c-format
-msgid ""
-"This directive is for the responder. Therefore you\n"
-"should set passive on in order that racoon(8) only\n"
-"becomes a responder. If the responder does not have any\n"
-"policy in SPD during phase 2 negotiation, and the direc-\n"
-"tive is set on, then racoon(8) will choice the first pro-\n"
-"posal in the SA payload from the initiator, and generate\n"
-"policy entries from the proposal. It is useful to nego-\n"
-"tiate with the client which is allocated IP address\n"
-"dynamically. Note that inappropriate policy might be\n"
-"installed into the responder's SPD by the initiator. So\n"
-"that other communication might fail if such policies\n"
-"installed due to some policy mismatches between the ini-\n"
-"tiator and the responder. This directive is ignored in\n"
-"the initiator case. The default value is off."
-msgstr ""
-
-#: standalone/drakvpn:1062
-#, c-format
-msgid "Passive"
-msgstr "Gouzañv"
-
-#: standalone/drakvpn:1064
-#, c-format
-msgid ""
-"If you do not want to initiate the negotiation, set this\n"
-"to on. The default value is off. It is useful for a\n"
-"server."
-msgstr ""
-
-#: standalone/drakvpn:1067
-#, c-format
-msgid "Certificate type"
-msgstr "Seurt an testeni"
-
-#: standalone/drakvpn:1069
-#, c-format
-msgid "My certfile"
-msgstr "Ma restr testeni"
-
-#: standalone/drakvpn:1070
-#, c-format
-msgid "Name of the certificate"
-msgstr "Anv an testeni"
-
-#: standalone/drakvpn:1071
-#, c-format
-msgid "My private key"
-msgstr "Ma alc'hwez sekred"
-
-#: standalone/drakvpn:1072
-#, c-format
-msgid "Name of the private key"
-msgstr "Anv an alc'hwez sekred"
-
-#: standalone/drakvpn:1073
-#, c-format
-msgid "Peers certfile"
-msgstr "Restr testeni kevatal"
-
-#: standalone/drakvpn:1074
-#, c-format
-msgid "Name of the peers certificate"
-msgstr "Anv an testeni kevatal"
-
-#: standalone/drakvpn:1075
-#, c-format
-msgid "Verify cert"
-msgstr "Gwiriekaat an testeni"
-
-#: standalone/drakvpn:1077
-#, c-format
-msgid ""
-"If you do not want to verify the peer's certificate for\n"
-"some reason, set this to off. The default is on."
-msgstr ""
-
-#: standalone/drakvpn:1079
-#, c-format
-msgid "My identifier"
-msgstr "Ma niverenn"
-
-#: standalone/drakvpn:1080
-#, c-format
-msgid ""
-"specifies the identifier sent to the remote host and the\n"
-"type to use in the phase 1 negotiation. address, FQDN,\n"
-"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
-"they are used like:\n"
-"\tmy_identifier address [address];\n"
-"\t\tthe type is the IP address. This is the default\n"
-"\t\ttype if you do not specify an identifier to use.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tthe type is a USER_FQDN (user fully-qualified\n"
-"\t\tdomain name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tthe type is a FQDN (fully-qualified domain name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tthe type is a KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tthe type is an ASN.1 distinguished name. If\n"
-"\t\tstring is omitted, racoon(8) will get DN from\n"
-"\t\tSubject field in the certificate.\n"
-"\n"
-"Examples: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-msgstr ""
-
-#: standalone/drakvpn:1100
-#, c-format
-msgid "Peers identifier"
-msgstr ""
-
-#: standalone/drakvpn:1101
-#, c-format
-msgid "Proposal"
-msgstr ""
-
-#: standalone/drakvpn:1103
-#, c-format
-msgid ""
-"specify the encryption algorithm used for the\n"
-"phase 1 negotiation. This directive must be defined. \n"
-"algorithm is one of the following: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For other transforms, this statement should not be used."
-msgstr ""
-
-#: standalone/drakvpn:1110
-#, c-format
-msgid "Hash algorithm"
-msgstr ""
-
-#: standalone/drakvpn:1112
-#, c-format
-msgid "DH group"
-msgstr "Strollad DH"
-
-#: standalone/drakvpn:1119
-#, c-format
-msgid "Command"
-msgstr "Urzhiad"
-
-#: standalone/drakvpn:1120
-#, c-format
-msgid "Source IP range"
-msgstr "Skeul IP tizh"
-
-#: standalone/drakvpn:1121
-#, c-format
-msgid "Destination IP range"
-msgstr "Skeul IP dehaezadur"
-
-#: standalone/drakvpn:1122
-#, c-format
-msgid "Upper-layer protocol"
-msgstr ""
-
-#: standalone/drakvpn:1122 standalone/drakvpn:1129
-#, c-format
-msgid "any"
-msgstr "un dra bennak"
-
-#: standalone/drakvpn:1124
-#, c-format
-msgid "Flag"
-msgstr "Banniel"
-
-#: standalone/drakvpn:1125
-#, c-format
-msgid "Direction"
-msgstr "Keñver"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "IPsec policy"
-msgstr "Politikerez IPsec"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "ipsec"
-msgstr "ipsec"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "discard"
-msgstr "lemel"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "Mode"
-msgstr "Mod"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "tunnel"
-msgstr "tunnel"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "transport"
-msgstr "doug"
-
-#: standalone/drakvpn:1131
-#, c-format
-msgid "Source/destination"
-msgstr "Tizh/dehaezadur"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "require"
-msgstr ""
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "default"
-msgstr "dre ziouer"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "use"
-msgstr "implij"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "unique"
-msgstr "dieil"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (broadcast)"
-msgstr "SUA (skignañ)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable)"
-msgstr "SUA (fun)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "SUA (cable-hrc)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "Canada (cable)"
-msgstr "Kanada (fun)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Japon (skignañ)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (cable)"
-msgstr "Japon (fun)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "China (broadcast)"
-msgstr "Sina (skignañ)"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "West Europe"
-msgstr "Europa-Heol"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "East Europe"
-msgstr "Europa reter"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "France [SECAM]"
-msgstr "Gall [SECAM]"
-
-#: standalone/drakxtv:48
-#, c-format
-msgid "Newzealand"
-msgstr "Zeland nevez"
-
-#: standalone/drakxtv:51
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr ""
-
-#: standalone/drakxtv:85
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr "Roit seurt ho skinwel hag ho bro mar plij :"
-
-#: standalone/drakxtv:87
-#, c-format
-msgid "TV norm:"
-msgstr "Seurt ar skinwel :"
-
-#: standalone/drakxtv:88
-#, c-format
-msgid "Area:"
-msgstr "Bro :"
-
-#: standalone/drakxtv:93
-#, c-format
-msgid "Scanning for TV channels in progress..."
-msgstr "O klask kanolioù ar skinwell ..."
-
-#: standalone/drakxtv:103
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "O klask kanolioù ar skinwell"
-
-#: standalone/drakxtv:107
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Degouezhet ez eus ur fazi en ur klask kanolioù ar skinwell"
-
-#: standalone/drakxtv:110
-#, c-format
-msgid "Have a nice day!"
-msgstr ""
-
-#: standalone/drakxtv:111
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr ""
-
-#: standalone/drakxtv:149
-#, c-format
-msgid "No TV Card detected!"
-msgstr "Kartenn TV ebet !"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakxtv:151
-#, c-format
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-
-#: standalone/finish-install:42 standalone/keyboarddrake:30
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
-
-#: standalone/harddrake2:25
-#, c-format
-msgid "Alternative drivers"
-msgstr "Sturierien all"
-
-#: standalone/harddrake2:26
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "roll ar sturierien all evit ar gartenn gwelet-mañ"
-
-#: standalone/harddrake2:29
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-
-#: standalone/harddrake2:31 standalone/harddrake2:146
-#, c-format
-msgid "Bus identification"
-msgstr ""
-
-#: standalone/harddrake2:32
-#, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
-msgstr ""
-
-#: standalone/harddrake2:35
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "Drive capacity"
-msgstr ""
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
-
-#: standalone/harddrake2:39
-#, c-format
-msgid "this field describes the device"
-msgstr ""
-
-#: standalone/harddrake2:40
-#, c-format
-msgid "Old device file"
-msgstr "Trobarzhell kozh ar restr"
-
-#: standalone/harddrake2:41
-#, c-format
-msgid "old static device name used in dev package"
-msgstr ""
-
-#: standalone/harddrake2:42
-#, c-format
-msgid "New devfs device"
-msgstr "Trobarzhell devfs nevez"
-
-#: standalone/harddrake2:43
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr ""
-
-#. -PO: here "module" is the "jargon term" for a kernel driver
-#: standalone/harddrake2:46
-#, c-format
-msgid "Module"
-msgstr "Mollad"
-
-#: standalone/harddrake2:46
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr ""
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "Extended partitions"
-msgstr "Parzhadurioù astennet"
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "the number of extended partitions"
-msgstr "niver a parzhadurioù astennet"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Geometry"
-msgstr "Mentoniezh"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Cylinder/head/sectors geometry of the disk"
-msgstr ""
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "Disk controller"
-msgstr "Kontroller pladenn"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "the disk controller on the host side"
-msgstr "ar gontroller pladenn ouzh an ostiz"
-
-#: standalone/harddrake2:50
-#, c-format
-msgid "class of hardware device"
-msgstr ""
-
-#: standalone/harddrake2:51 standalone/harddrake2:83
-#: standalone/printerdrake:224
-#, c-format
-msgid "Model"
-msgstr "Gobari"
-
-#: standalone/harddrake2:51
-#, c-format
-msgid "hard disk model"
-msgstr "Gobari ar bladenn"
-
-#: standalone/harddrake2:52
-#, c-format
-msgid "network printer port"
-msgstr "porzh ar voullerez rouedad"
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "Primary partitions"
-msgstr "Parzhadurioù kentañ"
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "the number of the primary partitions"
-msgstr "niver a parzhadurioù kentañ"
-
-#: standalone/harddrake2:54
-#, c-format
-msgid "the vendor name of the device"
-msgstr "anv gwerzher an drobarzhell"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "Bus PCI #"
-msgstr "Bus PCI #"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "the PCI bus on which the device is plugged"
-msgstr "Ar bus PCI a-benn lugellañ an drobarzhell"
-
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device #"
-msgstr "Trobarzhell PCI #"
-
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device number"
-msgstr "niverenn an drobarzhell PCI"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function #"
-msgstr "Fonksion PCI niv."
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function number"
-msgstr "Niver a fonksion PCI"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "Vendor ID"
-msgstr "ID ar werzher"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "this is the standard numerical identifier of the vendor"
-msgstr ""
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "Device ID"
-msgstr "ID an drobarzhell"
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "this is the numerical identifier of the device"
-msgstr ""
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "Sub vendor ID"
-msgstr ""
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "this is the minor numerical identifier of the vendor"
-msgstr ""
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "Sub device ID"
-msgstr "IsID an drobarzhell"
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "this is the minor numerical identifier of the device"
-msgstr ""
-
-#: standalone/harddrake2:62
-#, c-format
-msgid "Device USB ID"
-msgstr "ID an drobarzhell USB"
-
-#: standalone/harddrake2:62
-#, c-format
-msgid ".."
-msgstr ".."
-
-#: standalone/harddrake2:66
-#, c-format
-msgid "Bogomips"
-msgstr ""
-
-#: standalone/harddrake2:66
-#, c-format
-msgid ""
-"the GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
-msgstr ""
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "Cache size"
-msgstr "Ment ar grubuilh"
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr ""
-
-#. -PO: here "comas" is the medical coma, not the lexical coma!!
-#: standalone/harddrake2:70
-#, c-format
-msgid "Coma bug"
-msgstr ""
-
-#: standalone/harddrake2:70
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr ""
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "Cpuid family"
-msgstr ""
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr ""
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "Cpuid level"
-msgstr "Live cpuid"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr ""
-
-#: standalone/harddrake2:73
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Frekañs (Mhz)"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr ""
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "Flags"
-msgstr "Bannielloù"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr ""
-
-#: standalone/harddrake2:75
-#, c-format
-msgid "Fdiv bug"
-msgstr ""
-
-#: standalone/harddrake2:76
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "Is FPU present"
-msgstr "Bez eus un UNS"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr ""
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "Ma 'z eus ur vektor IRQ gant an UNS"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "F00f bug"
-msgstr ""
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
-
-#: standalone/harddrake2:80
-#, c-format
-msgid "Halt bug"
-msgstr ""
-
-#: standalone/harddrake2:81
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
-
-#: standalone/harddrake2:82
-#, c-format
-msgid "sub generation of the cpu"
-msgstr ""
-
-#: standalone/harddrake2:83
-#, c-format
-msgid "generation of the cpu (eg: 8 for Pentium III, ...)"
-msgstr ""
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "Model name"
-msgstr "Anv ar gobari"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr ""
-
-#: standalone/harddrake2:85
-#, c-format
-msgid "the name of the CPU"
-msgstr ""
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "Processor ID"
-msgstr ""
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "the number of the processor"
-msgstr ""
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "Model stepping"
-msgstr ""
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr ""
-
-#: standalone/harddrake2:88
-#, c-format
-msgid "the vendor name of the processor"
-msgstr ""
-
-#: standalone/harddrake2:89
-#, c-format
-msgid "Write protection"
-msgstr "Anskrivadus"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid ""
-"the WP flag in the CR0 register of the cpu enforce write protection at the "
-"memory page level, thus enabling the processor to prevent unchecked kernel "
-"accesses to user memory (aka this is a bug guard)"
-msgstr ""
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "Floppy format"
-msgstr "Furmad ar bladennig"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr ""
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "Channel"
-msgstr "Kanol"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "Kanol EIDE/SCSI"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "Disk identifier"
-msgstr "Anavezoud ar bladenn"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "usually the disk serial number"
-msgstr ""
-
-#: standalone/harddrake2:99
-#, c-format
-msgid "Logical unit number"
-msgstr ""
-
-#: standalone/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 ""
-
-#. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...)
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size"
-msgstr "Ment staliet"
-
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled Size"
-msgstr "Ment bev"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled size of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:108
-#, c-format
-msgid "type of the memory device"
-msgstr "seurt an drobarzhell vemor"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed"
-msgstr "Tizh"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:110
-#, c-format
-msgid "Bank connections"
-msgstr ""
-
-#: standalone/harddrake2:111
-#, c-format
-msgid "Socket designation of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:115
-#, c-format
-msgid "Device file"
-msgstr "Restr an drobarzhell"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid ""
-"the device file used to communicate with the kernel driver for the mouse"
-msgstr ""
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "Emulated wheel"
-msgstr ""
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "whether the wheel is emulated or not"
-msgstr ""
-
-#: standalone/harddrake2:117
-#, c-format
-msgid "the type of the mouse"
-msgstr "seurt al logodenn"
-
-#: standalone/harddrake2:118
-#, c-format
-msgid "the name of the mouse"
-msgstr "anv al logodenn"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "Number of buttons"
-msgstr "Niver a nozelioù"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "niver a nozelioù gand al logodenn"
-
-#: standalone/harddrake2:120
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr ""
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "Mouse protocol used by X11"
-msgstr "Komenad logod implijet gant X11"
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "the protocol that the graphical desktop use with the mouse"
-msgstr ""
-
-#: standalone/harddrake2:128 standalone/harddrake2:137
-#: standalone/harddrake2:144 standalone/harddrake2:152
-#: standalone/harddrake2:341
-#, c-format
-msgid "Identification"
-msgstr "Dilesadur"
-
-#: standalone/harddrake2:129 standalone/harddrake2:145
-#, c-format
-msgid "Connection"
-msgstr "Kevreadenn"
-
-#: standalone/harddrake2:138
-#, c-format
-msgid "Performances"
-msgstr ""
-
-#: standalone/harddrake2:139
-#, c-format
-msgid "Bugs"
-msgstr "Bugoù"
-
-#: standalone/harddrake2:140
-#, c-format
-msgid "FPU"
-msgstr "UNS"
-
-#: standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Trobarzhell"
-
-#: standalone/harddrake2:148
-#, c-format
-msgid "Partitions"
-msgstr "Parzhadurioù"
-
-#: standalone/harddrake2:153
-#, c-format
-msgid "Features"
-msgstr "Arc'hweloù"
-
-#. -PO: please keep all "/" characters !!!
-#: standalone/harddrake2:176 standalone/logdrake:76
-#: standalone/printerdrake:146 standalone/printerdrake:159
-#: standalone/printerdrake:171
-#, c-format
-msgid "/_Options"
-msgstr "/_Dibarzhoù"
-
-#: standalone/harddrake2:177 standalone/harddrake2:202 standalone/logdrake:78
-#: standalone/printerdrake:172 standalone/printerdrake:174
-#: standalone/printerdrake:177 standalone/printerdrake:179
-#, c-format
-msgid "/_Help"
-msgstr "/_Skoazell"
-
-#: standalone/harddrake2:181
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Kavout _moullerezioù"
-
-#: standalone/harddrake2:182
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Kavout m_odemioù"
-
-#: standalone/harddrake2:183
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Kavout an drobarzhelloù _jaz"
-
-#: standalone/harddrake2:184
-#, c-format
-msgid "/Autodetect parallel _zip drives"
-msgstr ""
-
-#: standalone/harddrake2:191 standalone/printerdrake:152
-#, c-format
-msgid "/_Quit"
-msgstr "/_Kuitaat"
-
-#: standalone/harddrake2:204
-#, c-format
-msgid "/_Fields description"
-msgstr "/Deskrivadur an _tachennoù"
-
-#: standalone/harddrake2:206
-#, c-format
-msgid "Harddrake help"
-msgstr "Skoazell Harddrake"
-
-#: standalone/harddrake2:215
-#, 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 ""
-
-#: standalone/harddrake2:221 standalone/printerdrake:177
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Reiñ da c'houzout ur gudenn"
-
-#: standalone/harddrake2:223 standalone/printerdrake:179
-#, c-format
-msgid "/_About..."
-msgstr "/_A-brepoz ..."
-
-#: standalone/harddrake2:224
-#, c-format
-msgid "About Harddrake"
-msgstr "A-brepoz Harddrake"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/harddrake2:226
-#, c-format
-msgid ""
-"This is HardDrake, a %s hardware configuration tool.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-msgstr ""
-
-#: standalone/harddrake2:242
-#, c-format
-msgid "Harddrake2"
-msgstr "Harddrake2"
-
-#: standalone/harddrake2:272
-#, c-format
-msgid "Detected hardware"
-msgstr "Periantel kavet"
-
-#: standalone/harddrake2:277
-#, c-format
-msgid "Configure module"
-msgstr "Kefluniañ ar mollad"
-
-#: standalone/harddrake2:284
-#, c-format
-msgid "Run config tool"
-msgstr ""
-
-#: standalone/harddrake2:308
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
-"Klikit ouzh un drobarzhell e-barzh ar wezenn a-gleiz a-benn ma ziskouez "
-"titouroù anezhañ amañ."
-
-#: standalone/harddrake2:329 standalone/printerdrake:306
-#: standalone/printerdrake:320
-#, c-format
-msgid "Unknown"
-msgstr "Anavez"
-
-#: standalone/harddrake2:349
-#, c-format
-msgid "Misc"
-msgstr "A bep seurt"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "secondary"
-msgstr "eil derez"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "primary"
-msgstr "kentañ"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "burner"
-msgstr "engraver"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "DVD"
-msgstr "DVD"
-
-#: standalone/harddrake2:511
-#, c-format
-msgid ""
-"The following devices needs proprietary drivers or firmwares in order to "
-"operate smoothly. The appropriate packages can be retrieved from the "
-"Mandriva Club. Do you want to subscribe to the Mandriva Club?"
-msgstr ""
-
-#: standalone/keyboarddrake:45
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
-
-#: standalone/localedrake:38
-#, c-format
-msgid "LocaleDrake"
-msgstr "LocaleDrake"
-
-#: standalone/localedrake:44
-#, c-format
-msgid "You should install the following packages: %s"
-msgstr "Gwell e vefe koulz deoc'h staliañ ar pakadoù-mañ : %s"
-
-#. -PO: the following is used to combine packages names. eg: "initscripts, harddrake, yudit"
-#: standalone/localedrake:47 standalone/scannerdrake:135
-#, c-format
-msgid ", "
-msgstr ", "
-
-#: standalone/localedrake:55
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: standalone/logdrake:49
-#, c-format
-msgid "Mandriva Linux Tools Logs"
-msgstr ""
-
-#: standalone/logdrake:50
-#, c-format
-msgid "Logdrake"
-msgstr "Logdrake"
-
-#: standalone/logdrake:63
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Diskouez hepken an deiz dibabet"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "/File/_New"
-msgstr "/Rest/_Nevez"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "/File/_Open"
-msgstr "/Restr/_Digoriñ"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "<control>O"
-msgstr "<control>D"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "/File/_Save"
-msgstr "/Restr/_Enrollañ"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "<control>S"
-msgstr "<control>G"
-
-#: standalone/logdrake:73
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Restr/_Gwarediñ dindan"
-
-#: standalone/logdrake:74
-#, c-format
-msgid "/File/-"
-msgstr "/Restr/-"
-
-#: standalone/logdrake:77
-#, c-format
-msgid "/Options/Test"
-msgstr "/Dibarzhoù/Arnodenn"
-
-#: standalone/logdrake:79
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Skoazell/_A-brepoz ..."
-
-#: standalone/logdrake:108
-#, c-format
-msgid ""
-"_:this is the auth.log log file\n"
-"Authentication"
-msgstr "Dilesadur"
-
-#: standalone/logdrake:109
-#, c-format
-msgid ""
-"_:this is the user.log log file\n"
-"User"
-msgstr "Arveriad"
-
-#: standalone/logdrake:110
-#, c-format
-msgid ""
-"_:this is the /var/log/messages log file\n"
-"Messages"
-msgstr "Kemenandoù"
-
-#: standalone/logdrake:111
-#, c-format
-msgid ""
-"_:this is the /var/log/syslog log file\n"
-"Syslog"
-msgstr "Reizhiad"
-
-#: standalone/logdrake:115
-#, c-format
-msgid "search"
-msgstr "klask"
-
-#: standalone/logdrake:127
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr ""
-
-#: standalone/logdrake:128 standalone/net_applet:347 standalone/net_monitor:93
-#, c-format
-msgid "Settings"
-msgstr "Dibarzhoù"
-
-#: standalone/logdrake:133
-#, c-format
-msgid "Matching"
-msgstr ""
-
-#: standalone/logdrake:134
-#, c-format
-msgid "but not matching"
-msgstr ""
-
-#: standalone/logdrake:138
-#, c-format
-msgid "Choose file"
-msgstr "Dibabit ur restr"
-
-#: standalone/logdrake:150
-#, c-format
-msgid "Calendar"
-msgstr "Deiziadur"
-
-#: standalone/logdrake:160
-#, c-format
-msgid "Content of the file"
-msgstr "Restrad"
-
-#: standalone/logdrake:164 standalone/logdrake:401
-#, c-format
-msgid "Mail alert"
-msgstr ""
-
-#: standalone/logdrake:171
-#, c-format
-msgid "The alert wizard has failed unexpectedly:"
-msgstr ""
-
-#: standalone/logdrake:224
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "gortozit mar plij, o lenn ar restr : %s"
-
-#: standalone/logdrake:379
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr ""
-
-#: standalone/logdrake:380
-#, c-format
-msgid "Domain Name Resolver"
-msgstr ""
-
-#: standalone/logdrake:381
-#, c-format
-msgid "Ftp Server"
-msgstr "Servijer FTP"
-
-#: standalone/logdrake:382
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Servijer postel Postfix"
-
-#: standalone/logdrake:383
-#, c-format
-msgid "Samba Server"
-msgstr "Servijer Samba"
-
-#: standalone/logdrake:385
-#, c-format
-msgid "Webmin Service"
-msgstr "Servijer Webmin"
-
-#: standalone/logdrake:386
-#, c-format
-msgid "Xinetd Service"
-msgstr "Servijer xinetd"
-
-#: standalone/logdrake:395
-#, c-format
-msgid "Configure the mail alert system"
-msgstr "Kefluniañ ar reizhiad diwall dre post"
-
-#: standalone/logdrake:396
-#, c-format
-msgid "Stop the mail alert system"
-msgstr "Paouez ar reizhiad diwall dre post"
-
-#: standalone/logdrake:404
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Kefluniadur an diwall dre post"
-
-#: standalone/logdrake:405
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-
-#: standalone/logdrake:415
-#, c-format
-msgid "Services settings"
-msgstr "Dibarzhoù ar serjivioù"
-
-#: standalone/logdrake:416
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr ""
-
-#: standalone/logdrake:423
-#, c-format
-msgid "Load setting"
-msgstr "Kargañ an dibarzhoù"
-
-#: standalone/logdrake:424
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: standalone/logdrake:425
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Sammad"
-
-#: standalone/logdrake:430
-#, c-format
-msgid "Alert configuration"
-msgstr "Kefluniadur an diwall"
-
-#: standalone/logdrake:431
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Roit ho chomlec'h postel mar plij "
-
-#: standalone/logdrake:432
-#, c-format
-msgid "and enter the name (or the IP) of the SMTP server you wish to use"
-msgstr ""
-
-#: standalone/logdrake:451
-#, c-format
-msgid "The wizard successfully configured the mail alert."
-msgstr ""
-
-#: standalone/logdrake:457
-#, c-format
-msgid "The wizard successfully disabled the mail alert."
-msgstr ""
-
-#: standalone/logdrake:516
-#, c-format
-msgid "Save as.."
-msgstr "Enrollañ e ..."
-
-#: standalone/mousedrake:31
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: standalone/mousedrake:44
-#, c-format
-msgid "Emulate third button?"
-msgstr "Kendarvan an trede nozelenn ?"
-
-#: standalone/mousedrake:61
-#, c-format
-msgid "Mouse test"
-msgstr "Testañ al logodenn"
-
-#: standalone/mousedrake:64
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Testit ho logodenn mar plij :"
-
-#: standalone/net_applet:47
-#, c-format
-msgid "Network is up on interface %s"
-msgstr "Bev eo ar rouedad war an etrefas %s"
-
-#. -PO: keep the "Configure Network" substring synced with the "Configure Network" message below
-#: standalone/net_applet:50
-#, c-format
-msgid "Network is down on interface %s. Click on \"Configure Network\""
-msgstr ""
-"Marv eo ar rouedad war an etrefas %s. Klikit ouzh « Kefluniañ ar Rouedad »"
-
-#: standalone/net_applet:56 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Connect %s"
-msgstr "Kevreañ %s"
-
-#: standalone/net_applet:57 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Disconnect %s"
-msgstr "Digevreañ %s"
-
-#: standalone/net_applet:58
-#, c-format
-msgid "Monitor Network"
-msgstr "Diwall ar rouedad"
-
-#: standalone/net_applet:60
-#, c-format
-msgid "Manage wireless networks"
-msgstr "Merañ ar rouedadoù hep neud"
-
-#: standalone/net_applet:61
-#, c-format
-msgid "Configure Network"
-msgstr "Kefluniañ ar Rouedad"
-
-#: standalone/net_applet:63
-#, c-format
-msgid "Watched interface"
-msgstr "Etrefasoù sellet"
-
-#: standalone/net_applet:93
-#, c-format
-msgid "Profiles"
-msgstr "Profiloù"
-
-#: standalone/net_applet:102
-#, c-format
-msgid "Get Online Help"
-msgstr "Skoazell enlinenn"
-
-#: standalone/net_applet:335
-#, c-format
-msgid "Interactive Firewall automatic mode"
-msgstr "Moger tan bev ent emgefreek"
-
-#: standalone/net_applet:340
-#, c-format
-msgid "Always launch on startup"
-msgstr "Loc'hañ atav pa loc'her ar reizhiad"
-
-#: standalone/net_applet:344
-#, c-format
-msgid "Wireless networks"
-msgstr "Rouedadoù hep neud"
-
-#: standalone/net_applet:429
-#, c-format
-msgid "Interactive Firewall: intrusion detected"
-msgstr ""
-
-#: standalone/net_applet:442
-#, c-format
-msgid "What do you want to do with this attacker?"
-msgstr "Petra e fell deoc'h d'ober gant an argader-mañ ?"
-
-#: standalone/net_applet:445
-#, c-format
-msgid "Attack details"
-msgstr "Munudoù an argad"
-
-#: standalone/net_applet:449
-#, c-format
-msgid "Attack time: %s"
-msgstr "Eur an argad : %s"
-
-#: standalone/net_applet:450
-#, c-format
-msgid "Network interface: %s"
-msgstr "Etrefas rouedad: %s"
-
-#: standalone/net_applet:451
-#, c-format
-msgid "Attack type: %s"
-msgstr "Seurt an argad : %s"
-
-#: standalone/net_applet:452
-#, c-format
-msgid "Protocol: %s"
-msgstr "Komenad: %s"
-
-#: standalone/net_applet:453
-#, c-format
-msgid "Attacker IP address: %s"
-msgstr "Chomlec'h IP an argader : %s"
-
-#: standalone/net_applet:454
-#, c-format
-msgid "Attacker hostname: %s"
-msgstr "Anv ostiz an argader : %s"
-
-#: standalone/net_applet:457
-#, c-format
-msgid "Service attacked: %s"
-msgstr "Servij argadet : %s"
-
-#: standalone/net_applet:458
-#, c-format
-msgid "Port attacked: %s"
-msgstr "Porzh argadet : %s"
-
-#: standalone/net_applet:460
-#, c-format
-msgid "Type of ICMP attack: %s"
-msgstr "Seurt an argad ICMP : %s"
-
-#: standalone/net_applet:465
-#, c-format
-msgid "Always blacklist (do not ask again)"
-msgstr ""
-
-#: standalone/net_monitor:57 standalone/net_monitor:62
-#, c-format
-msgid "Network Monitoring"
-msgstr "O tiwall ar rouedad"
-
-#: standalone/net_monitor:98
-#, c-format
-msgid "Global statistics"
-msgstr "Stadegoù hollek"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Instantaneous"
-msgstr "Bremañ"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Average"
-msgstr "Etread"
-
-#: standalone/net_monitor:102
-#, c-format
-msgid ""
-"Sending\n"
-"speed:"
-msgstr "Tizh kas :"
-
-#: standalone/net_monitor:103
-#, c-format
-msgid ""
-"Receiving\n"
-"speed:"
-msgstr "Tizh tigas :"
-
-#: standalone/net_monitor:107
-#, c-format
-msgid ""
-"Connection\n"
-"time: "
-msgstr ""
-"Amzer ar\n"
-"gevreadenn :"
-
-#: standalone/net_monitor:114
-#, c-format
-msgid "Use same scale for received and transmitted"
-msgstr "Implij ar memes skeul evit kas ha digas"
-
-#: standalone/net_monitor:133
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Gortoz mar plij, o arnodiñ ho gevreadenn ..."
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Digevreañ diwar an Internet "
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Kevreañ diwar an Internet "
-
-#: standalone/net_monitor:226
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Sac'het eo digevreañ diwar an Internet."
-
-#: standalone/net_monitor:227
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Echu eo digevreañ diwar an Internet."
-
-#: standalone/net_monitor:229
-#, c-format
-msgid "Connection complete."
-msgstr "Echu eo ar gevreadenn."
-
-#: standalone/net_monitor:230
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandriva Linux Control Center."
-msgstr ""
-"Sac'het eo ar gevreadenn.\n"
-"Gwiriit ho kefluniadur er c'hreizenn ren Mandriva Linux."
-
-#: standalone/net_monitor:335
-#, c-format
-msgid "Color configuration"
-msgstr "Kefluniañ al livioù"
-
-#: standalone/net_monitor:383 standalone/net_monitor:403
-#, c-format
-msgid "sent: "
-msgstr "kaset : "
-
-#: standalone/net_monitor:390 standalone/net_monitor:407
-#, c-format
-msgid "received: "
-msgstr "enkarget : "
-
-#: standalone/net_monitor:397
-#, c-format
-msgid "average"
-msgstr "well-wazh"
-
-#: standalone/net_monitor:400
-#, c-format
-msgid "Local measure"
-msgstr "Gwerzh lec'hel"
-
-#: standalone/net_monitor:461
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: standalone/net_monitor:472
-#, c-format
-msgid "No internet connection configured"
-msgstr "Kevreadenn Internet ebet"
-
-#: standalone/printerdrake:76
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "O lenn roadoù diwar-benn ar moullerezioù staliet ..."
-
-#: standalone/printerdrake:128
-#, c-format
-msgid "%s Printer Management Tool"
-msgstr "Ostihl melestradur ar moullerezioù %s"
-
-#: standalone/printerdrake:142 standalone/printerdrake:143
-#: standalone/printerdrake:144 standalone/printerdrake:145
-#: standalone/printerdrake:153 standalone/printerdrake:154
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Actions"
-msgstr "/_Oberoù"
-
-#: standalone/printerdrake:142 standalone/printerdrake:154
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Ouzhpennañ ur voullerez"
-
-#: standalone/printerdrake:143
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Lakaat dre _ziouer"
-
-#: standalone/printerdrake:144
-#, c-format
-msgid "/_Edit"
-msgstr "/_Aozañ"
-
-#: standalone/printerdrake:145
-#, c-format
-msgid "/_Delete"
-msgstr "/_Dilemel"
-
-#: standalone/printerdrake:146
-#, c-format
-msgid "/_Expert mode"
-msgstr "/Mod _mailh"
-
-#: standalone/printerdrake:151
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Adtresañ"
-
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/Kefluniañ _CUPS"
-
-#: standalone/printerdrake:171
-#, c-format
-msgid "/Configure _Auto Administration"
-msgstr ""
-
-#: standalone/printerdrake:194
-#, c-format
-msgid "Search:"
-msgstr "Klask :"
-
-#: standalone/printerdrake:197
-#, c-format
-msgid "Apply filter"
-msgstr "Arloañ ar sil"
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Def."
-msgstr ""
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Printer Name"
-msgstr "Anv ar Voulerez"
-
-#: standalone/printerdrake:224
-#, c-format
-msgid "Connection Type"
-msgstr "Seurt ar gevreadenn"
-
-#: standalone/printerdrake:231
-#, c-format
-msgid "Server Name"
-msgstr "Anv ar servijer"
-
-#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add Printer"
-msgstr "Ouzhpennañ ur voullerez"
-
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Ouzpennañ ur voullerez nevez war ar reizhiad"
-
-#. -PO: "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set as default"
-msgstr "Lakaat dre ziouer"
-
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Lakaat ar voullerez dibabet evit ar voullerez dre ziouer"
-
-#: standalone/printerdrake:245
-#, c-format
-msgid "Edit selected printer"
-msgstr "Kemmañ ar voulerez diuzet"
-
-#: standalone/printerdrake:248
-#, c-format
-msgid "Delete selected printer"
-msgstr "Lemel ar voulerez diuzet"
-
-#: standalone/printerdrake:251
-#, c-format
-msgid "Refresh the list"
-msgstr "Adtresañ ar roll"
-
-#. -PO: "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS"
-msgstr "Kefluniañ CUPS"
-
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Kefluniañ ar reizhiad moullañ CUPS"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Enabled"
-msgstr "Bev"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Disabled"
-msgstr "Marv"
-
-#: standalone/printerdrake:596
-#, c-format
-msgid "Authors: "
-msgstr "Obererour : "
-
-#. -PO: here %s is the version number
-#: standalone/printerdrake:606
-#, c-format
-msgid "Printer Management %s"
-msgstr "Melestradur ar moullerezioù %s"
-
-#: standalone/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 ""
-"Ar pakadoù SANE zo war-nes bezañ staliet evit implij an eiltreseroù :\n"
-"\n"
-"Mennout a rit staliañ ar pakadoù SANE ?"
-
-#: standalone/scannerdrake:55
-#, c-format
-msgid "Aborting Scannerdrake."
-msgstr "O terriñ Scannerdrake."
-
-#: standalone/scannerdrake:60
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-
-#: standalone/scannerdrake:61
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Ne vo ket loc'het Scannerdrake bremañ."
-
-#: standalone/scannerdrake:67 standalone/scannerdrake:508
-#, c-format
-msgid "Searching for configured scanners..."
-msgstr "O klask an eiltreseroù kefluniet ..."
-
-#: standalone/scannerdrake:71 standalone/scannerdrake:512
-#, c-format
-msgid "Searching for new scanners..."
-msgstr "O klask eiltreseroù nevez ..."
-
-#: standalone/scannerdrake:79 standalone/scannerdrake:534
-#, c-format
-msgid "Re-generating list of configured scanners..."
-msgstr ""
-
-#: standalone/scannerdrake:101
-#, c-format
-msgid "The %s is not supported by this version of %s."
-msgstr ""
-
-#: standalone/scannerdrake:104
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s kavet war %s, kefluniañ anezhi ent emgefreek ?"
-
-#: standalone/scannerdrake:116
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
-
-#: standalone/scannerdrake:131
-#, c-format
-msgid "Select a scanner model"
-msgstr "Dibabit ur gobari scanner"
-
-#: standalone/scannerdrake:132
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: standalone/scannerdrake:133
-#, c-format
-msgid "Detected model: %s"
-msgstr "Doare kavet : %s"
-
-#: standalone/scannerdrake:136
-#, c-format
-msgid "Port: %s"
-msgstr "Porzh : %s"
-
-#: standalone/scannerdrake:138 standalone/scannerdrake:141
-#, c-format
-msgid " (UNSUPPORTED)"
-msgstr " (N'EO KET SKORAET)"
-
-#: standalone/scannerdrake:144
-#, c-format
-msgid "The %s is not supported under Linux."
-msgstr "N'eo ket skoraet gant Linux %s."
-
-#: standalone/scannerdrake:171 standalone/scannerdrake:185
-#, c-format
-msgid "Do not install firmware file"
-msgstr "Ne staliit ket restr ar meriant"
-
-#: standalone/scannerdrake:175 standalone/scannerdrake:227
-#, c-format
-msgid ""
-"It is possible that your %s needs its firmware to be uploaded everytime when "
-"it is turned on."
-msgstr ""
-
-#: standalone/scannerdrake:176 standalone/scannerdrake:228
-#, c-format
-msgid "If this is the case, you can make this be done automatically."
-msgstr ""
-
-#: standalone/scannerdrake:177 standalone/scannerdrake:231
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware file for your scanner so that it "
-"can be installed."
-msgstr ""
-
-#: standalone/scannerdrake:178 standalone/scannerdrake:232
-#, 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 ""
-
-#: standalone/scannerdrake:180 standalone/scannerdrake:239
-#, c-format
-msgid "Install firmware file from"
-msgstr "Staliañ restr ar meriant eus"
-
-#: standalone/scannerdrake:200
-#, c-format
-msgid "Select firmware file"
-msgstr "Dibabit restr ar meriant"
-
-#: standalone/scannerdrake:203 standalone/scannerdrake:262
-#, c-format
-msgid "The firmware file %s does not exist or is unreadable!"
-msgstr ""
-
-#: standalone/scannerdrake:226
-#, c-format
-msgid ""
-"It is possible that your scanners need their firmware to be uploaded "
-"everytime when they are turned on."
-msgstr ""
-
-#: standalone/scannerdrake:230
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware files for your scanners so that it "
-"can be installed."
-msgstr ""
-
-#: standalone/scannerdrake:233
-#, 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 ""
-
-#: standalone/scannerdrake:235
-#, c-format
-msgid "Install firmware for the"
-msgstr "Staliañ restroù ar meriant evit"
-
-#: standalone/scannerdrake:258
-#, c-format
-msgid "Select firmware file for the %s"
-msgstr "Dibabit restr ar meriant evit %s"
-
-#: standalone/scannerdrake:276
-#, c-format
-msgid "Could not install the firmware file for the %s!"
-msgstr "Ne m'eus ket staliañ restroù ar meriant evit %s !"
-
-#: standalone/scannerdrake:289
-#, c-format
-msgid "The firmware file for your %s was successfully installed."
-msgstr ""
-
-#: standalone/scannerdrake:299
-#, c-format
-msgid "The %s is unsupported"
-msgstr "N'eo ket skoraet %s"
-
-#: standalone/scannerdrake:304
-#, c-format
-msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the %s Control Center in Hardware section."
-msgstr ""
-
-#: standalone/scannerdrake:322
-#, c-format
-msgid "Setting up kernel modules..."
-msgstr "O lakaat molladoù ar c'halon ..."
-
-#: standalone/scannerdrake:332 standalone/scannerdrake:339
-#: standalone/scannerdrake:369
-#, c-format
-msgid "Auto-detect available ports"
-msgstr ""
-
-#: standalone/scannerdrake:334 standalone/scannerdrake:380
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr ""
-
-#: standalone/scannerdrake:335
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr ""
-
-#: standalone/scannerdrake:337 standalone/scannerdrake:382
-#, c-format
-msgid "choose device"
-msgstr "dibabit ur drobarzhell"
-
-#: standalone/scannerdrake:371
-#, c-format
-msgid "Searching for scanners..."
-msgstr "O klask eiltreseroù ..."
-
-#: standalone/scannerdrake:407 standalone/scannerdrake:414
-#, c-format
-msgid "Attention!"
-msgstr "Ho evezh !"
-
-#: standalone/scannerdrake:408
-#, 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 ""
-
-#: standalone/scannerdrake:409 standalone/scannerdrake:418
-#, c-format
-msgid ""
-"More info in the driver's manual page. Run the command \"man sane-%s\" to "
-"read it."
-msgstr ""
-
-#: standalone/scannerdrake:411 standalone/scannerdrake:420
-#, c-format
-msgid ""
-"After that you may scan documents using \"XSane\" or \"Kooka\" from "
-"Multimedia/Graphics in the applications menu."
-msgstr ""
-
-#: standalone/scannerdrake:415
-#, c-format
-msgid ""
-"Your %s has been configured, but it is possible that additional manual "
-"adjustments are needed to get it to work. "
-msgstr ""
-
-#: standalone/scannerdrake:416
-#, 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 ""
-
-#: standalone/scannerdrake:417
-#, c-format
-msgid "edit the configuration file /etc/sane.d/%s.conf. "
-msgstr "aozañ ar restr kefluniadur /etc/sane.d/%s.conf. "
-
-#: standalone/scannerdrake:423
-#, 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 ""
-
-#: standalone/scannerdrake:448
-#, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr ""
-
-#: standalone/scannerdrake:449
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr ""
-
-#: standalone/scannerdrake:452 standalone/scannerdrake:455
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr ""
-
-#: standalone/scannerdrake:469
-#, c-format
-msgid "Search for new scanners"
-msgstr "Klask an eiltreserien nevez"
-
-#: standalone/scannerdrake:475
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Ouzhpennañ un eiltreser gant an dorn"
-
-#: standalone/scannerdrake:482
-#, c-format
-msgid "Install/Update firmware files"
-msgstr "Staliañ/Bremañaat ar restroù meriant"
-
-#: standalone/scannerdrake:488
-#, c-format
-msgid "Scanner sharing"
-msgstr ""
-
-#: standalone/scannerdrake:547 standalone/scannerdrake:712
-#, c-format
-msgid "All remote machines"
-msgstr "Reizhiadoù a-bell holl"
-
-#: standalone/scannerdrake:559 standalone/scannerdrake:862
-#, c-format
-msgid "This machine"
-msgstr "Ar reizhiad-mañ"
-
-#: standalone/scannerdrake:599
-#, 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 ""
-
-#: standalone/scannerdrake:600
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-
-#: standalone/scannerdrake:603
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr ""
-
-#: standalone/scannerdrake:605
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr ""
-
-#: standalone/scannerdrake:619
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Implij an eiltreserioù war urzhiataerioù a-bell"
-
-#: standalone/scannerdrake:622
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Implij an eiltreserioù war ostizioù : "
-
-#: standalone/scannerdrake:649 standalone/scannerdrake:721
-#: standalone/scannerdrake:871
-#, c-format
-msgid "Sharing of local scanners"
-msgstr ""
-
-#: standalone/scannerdrake:650
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr ""
-
-#: standalone/scannerdrake:661 standalone/scannerdrake:811
-#, c-format
-msgid "Add host"
-msgstr "Ouzhpennañ un ostiz"
-
-#: standalone/scannerdrake:667 standalone/scannerdrake:817
-#, c-format
-msgid "Edit selected host"
-msgstr "Kemmañ an ostiz diuzet"
-
-#: standalone/scannerdrake:676 standalone/scannerdrake:826
-#, c-format
-msgid "Remove selected host"
-msgstr "Lemel an ostiz diuzet"
-
-#: standalone/scannerdrake:700 standalone/scannerdrake:708
-#: standalone/scannerdrake:713 standalone/scannerdrake:759
-#: standalone/scannerdrake:850 standalone/scannerdrake:858
-#: standalone/scannerdrake:863 standalone/scannerdrake:909
-#, c-format
-msgid "Name/IP address of host:"
-msgstr "Chomlec'h IP/Anv an oztiz :"
-
-#: standalone/scannerdrake:722 standalone/scannerdrake:872
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr ""
-
-#: standalone/scannerdrake:733 standalone/scannerdrake:883
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Ret eo deoc'h reiñ an anv-ostiz pe ur chomlec'h IP.\n"
-
-#: standalone/scannerdrake:744 standalone/scannerdrake:894
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "Er roll eo dija an ostiz-se. N'eo ket bet ouzhpennet ur wech all\n"
-
-#: standalone/scannerdrake:799
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Arveriadur an eiltreserioù a-bell"
-
-#: standalone/scannerdrake:800
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr ""
-
-#: standalone/scannerdrake:957
-#, fuzzy, 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 ""
-"Bremanaet e tle bezañ ar pabak-mañ\n"
-"Ha sur oc'h e mennit e ziuzañ ?"
-
-#: standalone/scannerdrake:961 standalone/scannerdrake:965
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr ""
-
-#: standalone/service_harddrake:113
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "Bez eus trobarzhelloù lemet er c'hlass « %s » :\n"
-
-#: standalone/service_harddrake:114
-#, c-format
-msgid "- %s was removed\n"
-msgstr "- Dilemet oa %s\n"
-
-#: standalone/service_harddrake:117
-#, c-format
-msgid "Some devices were added: %s\n"
-msgstr "Ouzhpennet oa lod a eus trobarzhelloù : %s\n"
-
-#: standalone/service_harddrake:118
-#, c-format
-msgid "- %s was added\n"
-msgstr "- Ouzhpennet oa %s\n"
-
-#: standalone/service_harddrake:235
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "O klask ar perientel"
-
-#: standalone/service_harddrake_confirm:7
-#, c-format
-msgid "Hardware changes in \"%s\" class (%s seconds to answer)"
-msgstr "Bez eus kemmoù gant ar c'hlass « %s » (%s eil evit respont)"
-
-#: standalone/service_harddrake_confirm:8
-#, c-format
-msgid "Do you want to run the appropriate config tool?"
-msgstr "Mennout a rit lañsañ an ostilh dereat ?"
-
-#: steps.pm:14
-#, c-format
-msgid "Language"
-msgstr "Yezh"
-
-#: steps.pm:15
-#, c-format
-msgid "License"
-msgstr "Aotre"
-
-#: steps.pm:16
-#, c-format
-msgid "Configure mouse"
-msgstr "Kefluniañ al logodenn"
-
-#: steps.pm:17
-#, c-format
-msgid "Hard drive detection"
-msgstr "Dinoiñ ar bladenn galet"
-
-#: steps.pm:18
-#, c-format
-msgid "Select installation class"
-msgstr "Dibabit renkad ar staliadur"
-
-#: steps.pm:19
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Dibabit ho stokellaoueg"
-
-#: steps.pm:22
-#, c-format
-msgid "Format partitions"
-msgstr "Furmadiñ parzhadurioù"
-
-#: steps.pm:23
-#, c-format
-msgid "Choose packages to install"
-msgstr "Dibabit pakadoù da staliañ"
-
-#: steps.pm:24
-#, c-format
-msgid "Install system"
-msgstr "Staliañ ar reizhiad"
-
-#: steps.pm:25
-#, c-format
-msgid "Administrator password"
-msgstr "Tremenger ar merour"
-
-#: steps.pm:26
-#, c-format
-msgid "Add a user"
-msgstr "Ouzhpennañ un arveriad"
-
-#: steps.pm:27
-#, c-format
-msgid "Configure networking"
-msgstr "Kefluniañ ar rouedad"
-
-#: steps.pm:28
-#, c-format
-msgid "Install bootloader"
-msgstr "Staliañ ar c'harger loc'hañ"
-
-#: steps.pm:29
-#, c-format
-msgid "Configure X"
-msgstr "Kefluniañ X"
-
-#: steps.pm:31
-#, c-format
-msgid "Configure services"
-msgstr "Kefluniañ servijoù"
-
-#: steps.pm:32
-#, c-format
-msgid "Install updates"
-msgstr "Bremañaat"
-
-#: steps.pm:33
-#, c-format
-msgid "Exit install"
-msgstr "Dilezel ar staliadur"
-
-#: ugtk2.pm:899
+#: ugtk2.pm:788
#, c-format
msgid "Is this correct?"
msgstr "Ha reizh eo ?"
-#: ugtk2.pm:959
+#: ugtk2.pm:848
#, c-format
msgid "No file chosen"
msgstr "N'eus restr dibabet ebet"
-#: ugtk2.pm:961
+#: ugtk2.pm:850
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Dibabet 'teus ur restr. N'eo ket ur renkell"
-#: ugtk2.pm:963
+#: ugtk2.pm:852
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Dibabet 'teus ur renkell. N'eo ket ur restr"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such directory"
msgstr "Hevelep renkell ebet"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such file"
msgstr "Hevelep restr ebet"
-#: ugtk2.pm:1046
+#: ugtk2.pm:933
#, c-format
msgid "Expand Tree"
msgstr "Astenn ar wezenn"
-#: ugtk2.pm:1047
+#: ugtk2.pm:934
#, c-format
msgid "Collapse Tree"
msgstr "Plegañ ar wezenn"
-#: ugtk2.pm:1048
+#: ugtk2.pm:935
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "Gwintañ etre kompez ha rummet dre strollad"
@@ -24070,608 +6289,13 @@ msgstr ""
#: wizards.pm:99
#, c-format
msgid "Installation failed"
-msgstr " Sac'het eo ar staliadur"
-
-#~ msgid "click here if you are sure."
-#~ msgstr "klikit amañ ma 'z oc'h sur."
-
-#~ msgid "here if no."
-#~ msgstr "amañ ma n'oc'h ket sur."
-
-#~ msgid "Remove List"
-#~ msgstr "Dilemel al listenn"
-
-#~ msgid "/_Upload the hardware list"
-#~ msgstr "/_Ezkargañ roll ar perientel"
-
-#~ msgid "Upload the hardware list"
-#~ msgstr "Ezkargañ roll ar perientel"
-
-#~ msgid "Account:"
-#~ msgstr "Kont :"
-
-#~ msgid "Hostname:"
-#~ msgstr "Anv an ostiz :"
-
-#~ msgid "Cancel setup"
-#~ msgstr "Nullañ ar gefluniadur"
-
-#~ msgid "Configuration changed - restart clusternfs/dhcpd?"
-#~ msgstr "Kefluniadur kemmet - adloc'hañ clusternfs/dhcpd ?"
-
-#~ msgid ""
-#~ "The following media have been found and will be used during install: %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do you have a supplementary installation media to configure?"
-#~ msgstr ""
-#~ "Kavet 'meus ar medioù a-heul. Implojet e vint en ur staliañ : %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Hag unann all da gefluniañ zo ganeoc'h ?"
-
-#~ msgid "Partitionning"
-#~ msgstr "O parzhañ"
-
-#~ msgid "Unknown Model"
-#~ msgstr "Gobari anavez"
-
-#~ msgid "HPOJ"
-#~ msgstr "HPOJ"
-
-#~ msgid "Installing mtools packages..."
-#~ msgstr "O staliañ pakad mtools ..."
-
-#~ msgid "Use Idmap for store UID/SID "
-#~ msgstr "Implij LDAP evit enrollañ UID/SID"
-
-#~ msgid "Default Idmap "
-#~ msgstr "Idmap dre ziouer"
-
-#~ msgid "Please wait, preparing installation..."
-#~ msgstr "Gortozit mar plij, o prientiñ ar staliadur"
-
-#~ msgid "Installing package %s"
-#~ msgstr "O staliañ ar pakad %s"
-
-#~ msgid "<b>What is Mandriva Linux?</b>"
-#~ msgstr "<b>Petra eo Mandriva Linux ?</b>"
-
-#~ msgid "Welcome to <b>Mandriva Linux</b>!"
-#~ msgstr "Degemer e <b>Mandriva Linux</b> !"
-
-#~ msgid "<b>Open Source</b>"
-#~ msgstr "<b>Digeriñ an tarzh</b>"
-
-#~ msgid "Welcome to the <b>world of open source</b>!"
-#~ msgstr "Degemer er <b>bed dieub</b> !"
-
-#~ msgid "<b>The GPL</b>"
-#~ msgstr "<b>Ar GPL</b>"
-
-#~ msgid "<b>Mandriva Products</b>"
-#~ msgstr "<b>Kenderc'hadoù Mandriva</b>"
-
-#~ msgid "The Mandriva Linux products are:"
-#~ msgstr "Ar c'henderc'hadoù Mandriva Linux zo :"
-
-#~ msgid "<b>The KDE Choice</b>"
-#~ msgstr "<b>An dibab KDE</b>"
-
-#~ msgid "<b>Choose your Favorite Desktop Environment</b>"
-#~ msgstr "<b>Choazhit ho vurev wellañ</b>"
-
-#~ msgid "<b>OpenOffice.org</b>"
-#~ msgstr "<b>OpenOffice.org</b>"
-
-#~ msgid "<b>Kontact</b>"
-#~ msgstr "<b>Kontact</b>"
-
-#~ msgid ""
-#~ "Discovery includes <b>Kontact</b>, the new KDE <b>groupware solution</b>."
-#~ msgstr ""
-#~ "<b>Kontact</b> zo e-barzh Discovery; an nevez <b>Servijer strollant</b> "
-#~ "KDE eo."
-
-#~ msgid "<b>Surf the Internet</b>"
-#~ msgstr "<b>Furchal ar Gwiad</b>"
-
-#~ msgid "\t* Browse the <b>Web</b> with Konqueror."
-#~ msgstr "\t* Firchal ar <b>gwiad</b> gant Konqueror."
-
-#~ msgid "\t* <b>Chat</b> online with your friends using Kopete."
-#~ msgstr "\t* <b>Flapañ</b> gant ho mignogned gant Kopete."
-
-#~ msgid "\t* ..."
-#~ msgstr "\t- ..."
-
-#~ msgid "<b>Enjoy our Multimedia Features</b>"
-#~ msgstr "<b>Kavoud mat an arc'hweloù liesvedia</b>"
-
-#~ msgid "\t* Browse the web with <b>Mozilla</b> and <b>Konqueror</b>."
-#~ msgstr "\t* ergerzhet ar Web gant <b>Mozilla</b> ha <b>gKonqueror</b>"
-
-#~ msgid "<b>Development Environments</b>"
-#~ msgstr "<b>Endro diorren</b>"
-
-#~ msgid "<b>Development Editors</b>"
-#~ msgstr "<b>Aozerien diorren</b>"
-
-#~ msgid "<b>Development Languages</b>"
-#~ msgstr "<b>Yezhoù diorren</b>"
-
-#~ msgid "<b>Development Tools</b>"
-#~ msgstr "<b>Ostilhoù diorren</b>"
-
-#~ msgid "<b>Groupware Server</b>"
-#~ msgstr "<b>Servijer strollant</b>"
-
-#~ msgid "<b>Servers</b>"
-#~ msgstr "<b>Servijerien</b>"
-
-#~ msgid "<b>Mandriva Linux Control Center</b>"
-#~ msgstr "<b>Kreizenn ren Mandriva Linux</b>"
-
-#~ msgid "<b>The Open Source Model</b>"
-#~ msgstr "<b>Skouer digeriñ an tarzh</b>"
-
-#~ msgid "<b>Online Store</b>"
-#~ msgstr "<b>Stal enlinenn</b>"
-
-#~ msgid "<b>Mandriva Club</b>"
-#~ msgstr "<b>Klub Mandriva</b>"
-
-#~ msgid "Mode:"
-#~ msgstr "Giz :"
-
-#~ msgid "Encryption:"
-#~ msgstr "Enrinegadur:"
-
-#~ msgid "Signal:"
-#~ msgstr "Arhent:"
-
-#~ msgid "Set"
-#~ msgstr "Lakaat"
-
-#~ msgid "Available Networks"
-#~ msgstr "Rouedadoù da gaout"
-
-#~ msgid "Status"
-#~ msgstr "Stad"
-
-#~ msgid "Disconnect"
-#~ msgstr "Digevreañ"
-
-#~ msgid "text width"
-#~ msgstr "Lec'hed an testenn"
-
-#~ msgid "Choose progress bar color"
-#~ msgstr "Dibabit liv ar varrenn araogenn"
-
-#~ msgid "ProgressBar color selection"
-#~ msgstr "Choazh liv ar varrenn araogenn"
-
-#~ msgid "Connect to the Internet"
-#~ msgstr "Kevreañ da internet"
-
-#~ msgid "Do not print any test page"
-#~ msgstr "Ne voullit ket ar bajenn arnod"
-
-#~ msgid "Printer on SMB/Windows 95/98/NT server"
-#~ msgstr "Moullerez war ur servijer SMB/Windows 95/98/NT"
-
-#~ msgid "Found printer on %s..."
-#~ msgstr "Moullerez kavet ouzh %s ..."
-
-#~ msgid "dhcpd Config..."
-#~ msgstr "kefluniañ dhcpd ..."
-
-#~ msgid "Active Firewall"
-#~ msgstr "Moger tan bev"
-
-#~ msgid "Unable to select wireless network: %s"
-#~ msgstr "Ne m'eus ket dibab ur rouedad hep neud : %s"
-
-#~ msgid "Actions"
-#~ msgstr "Oberoù"
-
-#~ msgid "Local Network adress"
-#~ msgstr "Chomlec'h ar rouedad lec'hel"
-
-#~ msgid "More options"
-#~ msgstr "Dibarzhoù a-gresk"
-
-#~ msgid "Boot disk creation"
-#~ msgstr "krouidigezh ar bladenn lañsañ"
-
-#~ msgid "General"
-#~ msgstr "Pennañ"
-
-#~ msgid "Kernel version"
-#~ msgstr "Doare ar galon"
-
-#~ msgid "Preferences"
-#~ msgstr "Dibarzhoù"
-
-#~ msgid "Advanced preferences"
-#~ msgstr "Dibarzhoù barek"
-
-#~ msgid "Size"
-#~ msgstr "Ment"
-
-#~ msgid "omit raid modules"
-#~ msgstr "raid ebet"
-
-#~ msgid "if needed"
-#~ msgstr "ma zo red"
-
-#~ msgid "omit scsi modules"
-#~ msgstr "scsi ebet"
-
-#~ msgid "Add a module"
-#~ msgstr "Ouzhpennañ ur mollad"
-
-#~ msgid "Remove a module"
-#~ msgstr "Lemel ur mollad"
-
-#~ msgid "Unable to fork: %s"
-#~ msgstr "N'eo ket fork : %s"
-
-#~ msgid "Floppy creation completed"
-#~ msgstr "Echu eo krouidigezh ar bladenn lañsañ"
-
-#~ msgid "You can not use a LVM Logical Volume for mount point %s"
-#~ msgstr "Ne mennit ket implij ul levrenn poellek evit ar poent marc'hañ %s"
-
-#~ msgid "PXE Server Configuration"
-#~ msgstr "Kefluniadur ar Servijer PXE"
-
-#~ msgid "Installation Server Configuration"
-#~ msgstr "Kefluniadur ar servijer staliadur"
-
-#~ msgid "Choose the network interface"
-#~ msgstr "Dibabit an etrefas rouedad"
-
-#~ msgid ""
-#~ "Please choose which network interface will be used for the dhcp server."
-#~ msgstr ""
-#~ "Dibabit an etrefas rouedad m'eo implijet ar servijer dhcp outañ, mar plij."
-
-#~ msgid "Interface %s (on network %s)"
-#~ msgstr "Etrefas %s (war rouedad %s)"
-
-#~ msgid "The DHCP start ip"
-#~ msgstr "An IP DHCP kentañ"
-
-#~ msgid "The DHCP end ip"
-#~ msgstr "An IP DHCP diwezhañ"
-
-#~ msgid "Installation image directory"
-#~ msgstr "Renkell ar skeudennoù staliadur"
-
-#~ msgid "No image found"
-#~ msgstr "N'eo ket kavet ar skeudenn"
-
-#~ msgid "Location of auto_install.cfg file"
-#~ msgstr "Lec'hiadur ar restr auto_install.cfg"
-
-#~ msgid "Do it later"
-#~ msgstr "Ober a rit ur wech all"
-
-#~ msgid "Enabling servers..."
-#~ msgstr "O bevaat ar servijerien ..."
-
-#~ msgid "Interface %s (using module %s)"
-#~ msgstr "Etrefas %s (gant ar mollad %s)"
-
-#~ msgid "Interface %s"
-#~ msgstr "C'hetal %s"
-
-#~ msgid "Network interface already configured"
-#~ msgstr "Kefluniet eo an etrefas rouedad c'hoazh"
-
-#~ msgid "Show current interface configuration"
-#~ msgstr "Diskouez kefluniadur red an etrefas"
-
-#~ msgid "Current interface configuration"
-#~ msgstr "Kefluniadur red an etrefas"
-
-#~ msgid "(This) DHCP Server IP"
-#~ msgstr "IP ar servijer DHCP(-se)"
-
-#~ msgid "Re-configure interface and DHCP server"
-#~ msgstr "Adgefluniañ an etrefas hag ar servijer DHCP"
-
-#~ msgid "Use graphical boot"
-#~ msgstr "Loc'hañ gant grafikoù"
-
-#~ msgid "choose image file"
-#~ msgstr "Dibabit ur restr skeudenn"
-
-#~ msgid "Browse"
-#~ msgstr "Ergerzhet"
-
-#~ msgid "Configure bootsplash picture"
-#~ msgstr "Kefluniañ ho skeudenn loc'hañ"
-
-#~ msgid "Notice"
-#~ msgstr "Kemenn"
-
-#~ msgid "You must choose an image file first!"
-#~ msgstr "Ret eo deoc'h dibab restr ur skeudenn da gentañ !"
-
-#~ msgid "Generating preview..."
-#~ msgstr "O krouiñ ar rakgwel ..."
-
-#~ msgid "%s BootSplash (%s) preview"
-#~ msgstr "Rakgwel BootSplash %s (%s)"
-
-#~ msgid "No floppy drive available"
-#~ msgstr "Lenner pladennig hegerz ebet"
-
-#~ msgid "No network card"
-#~ msgstr "Kartenn rouedad ebet"
-
-#~ msgid ""
-#~ "The following protocols can be used to configure an ethernet connection. "
-#~ "Please choose the one you want to use"
-#~ msgstr ""
-#~ "Ar c'homennadoù-mañ a c'hell bezañ implijet da gefluniañ ur gevreadenn "
-#~ "rouedad.\n"
-#~ "Dibabit unan e fell deoc'h implij mar plij"
-
-#~ msgid "Use already installed driver (%s)"
-#~ msgstr "Implijit ur sturier a zo staliet c'hoazh (%s)"
-
-#~ msgid "You've not selected any font"
-#~ msgstr "N'oc'h eus ket dibabet un nodrezh bennak"
-
-#~ msgid "No browser available! Please install one"
-#~ msgstr "N'eus furcher da gaout ebet ! Stalit unan mar plij"
-
-#~ msgid ""
-#~ "Insert a floppy in drive\n"
-#~ "All data on this floppy will be lost"
-#~ msgstr ""
-#~ "Lakait ur bladennig el lenner\n"
-#~ "Kollet e vo holl roadoù ar bladennig-se"
-
-#~ msgid "Insert a FAT formatted floppy in drive %s"
-#~ msgstr "Lakait ur bladennig FAT el lenner %s"
-
-#~ msgid "This floppy is not FAT formatted"
-#~ msgstr "N'eo ket ur bladennig FAT"
-
-#~ msgid "Load/Save on floppy"
-#~ msgstr "Kargañ eus/Enrollañ war ar bladennig"
-
-#~ msgid "Load from floppy"
-#~ msgstr "Assevel adalek ar bladennig"
-
-#~ msgid "Save on floppy"
-#~ msgstr "Enrollañ war bladennig"
-
-#~ msgid "Package selection"
-#~ msgstr "Diuzadenn pakadoù"
-
-#~ msgid "Loading from floppy"
-#~ msgstr "Assevelañ adalek ar bladennig"
-
-#~ msgid "Insert a floppy containing package selection"
-#~ msgstr "Lakait ur bladennig gant dibab ar pakadoù"
-
-#~ msgid "Can not find hdlist file on this mirror"
-#~ msgstr "N'hellan ket kavout ar restr hdlist war ar melezour-se"
-
-#~ msgid "Summary: "
-#~ msgstr "Diverrañ :"
-
-#~ msgid "YOUR TEXT HERE"
-#~ msgstr "Ho'ch testenn amañ"
-
-#~ msgid "Loading printer configuration... Please wait"
-#~ msgstr "O kargañ ar kefluniadur ar moullerezioù ... Gortozit mar plij"
-
-#~ msgid "Root password"
-#~ msgstr "Termeniñ tremenger root"
-
-#~ msgid "Which disk do you want to move it to?"
-#~ msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
-
-#~ msgid "Sector"
-#~ msgstr "Rann"
-
-#~ msgid "Which sector do you want to move it to?"
-#~ msgstr "Da beseurt rann e mennit dilec'hiañ ?"
-
-#~ msgid "Moving partition..."
-#~ msgstr "O tilec'hiañ ur parzhadur ..."
-
-#~ msgid "Error opening %s for writing: %s"
-#~ msgstr "Fazi en ur zigeriñ %s evit skrivañ : %s"
-
-#~ msgid "Server Information:"
-#~ msgstr "Titouroù war ar servijer :"
-
-#~ msgid "Use SSL connection"
-#~ msgstr "Implifit ur gevreadenn SSL"
-
-#~ msgid "Czech (QWERTZ)"
-#~ msgstr "Tchek (QWERTZ)"
-
-#~ msgid "Spanish"
-#~ msgstr "Spagnol"
-
-#~ msgid "Finnish"
-#~ msgstr "Finnek"
-
-#~ msgid "French"
-#~ msgstr "Gall"
-
-#~ msgid "Norwegian"
-#~ msgstr "Norvegek"
-
-#~ msgid "Polish"
-#~ msgstr "Polonek"
-
-#~ msgid "Russian"
-#~ msgstr "Rusiek"
-
-#~ msgid "Swedish"
-#~ msgstr "Svedek"
-
-#~ msgid "Albanian"
-#~ msgstr "Albaniek"
-
-#~ msgid "Armenian (old)"
-#~ msgstr "Armeniek (kozh)"
-
-#~ msgid "Armenian (typewriter)"
-#~ msgstr "Armeniek (skriverez)"
-
-#~ msgid "Arabic"
-#~ msgstr "Arabek"
-
-#~ msgid "Azerbaidjani (latin)"
-#~ msgstr "Azerbaidjanek (latin)"
-
-#~ msgid "Belgian"
-#~ msgstr "Belgian"
-
-#~ msgid "Bengali"
-#~ msgstr "Bengal"
-
-#~ msgid "Swiss (German layout)"
-#~ msgstr "Suis (reizhadur alaman)"
-
-#~ msgid "Swiss (French layout)"
-#~ msgstr "Suis (reizhadur gall)"
-
-#~ msgid "Dvorak (Norwegian)"
-#~ msgstr "Dvorak (Norvegek)"
-
-#~ msgid "Dvorak (Swedish)"
-#~ msgstr "Dvorak (Svedek)"
-
-#~ msgid "Georgian (\"Russian\" layout)"
-#~ msgstr "Jorjiek (reizhadur \"Rusiek\")"
-
-#~ msgid "Georgian (\"Latin\" layout)"
-#~ msgstr "Jorjiek (reizhadur \"Latin\")"
-
-#~ msgid "Lithuanian \"number row\" QWERTY"
-#~ msgstr "Lituaniek QUERTY \"linenn sifroù\""
-
-#~ msgid "Lithuanian \"phonetic\" QWERTY"
-#~ msgstr "Lituaniek QUERTY \"soniadel\""
-
-#~ msgid "Macedonian"
-#~ msgstr "Makedonia"
-
-#~ msgid "Mongolian (cyrillic)"
-#~ msgstr "Mongoliek (lizherenneg ar ruseg)"
-
-#~ msgid "Dutch"
-#~ msgstr "Hollandek"
-
-#~ msgid "Polish (qwerty layout)"
-#~ msgstr "Polonek (reizhadur qwerty)"
-
-#~ msgid "Polish (qwertz layout)"
-#~ msgstr "Polonek (reizhadur qwerty)"
-
-#~ msgid "Portuguese"
-#~ msgstr "Portugalek"
-
-#~ msgid "Canadian (Quebec)"
-#~ msgstr "Kanadian (Kebek)"
-
-#~ msgid "Romanian (qwertz)"
-#~ msgstr "Romaniek (Yawertz)"
-
-#~ msgid "Romanian (qwerty)"
-#~ msgstr "Romaniek (qwerty)"
-
-#~ msgid "Russian (Phonetic)"
-#~ msgstr "Russian (soniadel)"
-
-#~ msgid "Saami (norwegian)"
-#~ msgstr "Sami (Norvegek)"
-
-#~ msgid "Slovenian"
-#~ msgstr "Slovek"
-
-#~ msgid "Slovakian (QWERTZ)"
-#~ msgstr "Slovakek (QWERTZ)"
-
-#~ msgid "Slovakian (QWERTY)"
-#~ msgstr "Slovakek (QWERTY)"
-
-#~ msgid "Serbian (cyrillic)"
-#~ msgstr "Serbiek (lizherenneg ar ruseg)"
-
-#~ msgid "Syriac"
-#~ msgstr "Siriak"
-
-#~ msgid "Syriac (phonetic)"
-#~ msgstr "Siriak (soniadel)"
-
-#~ msgid "Telugu"
-#~ msgstr "Telegu"
-
-#~ msgid "Turkish (traditional \"F\" model)"
-#~ msgstr "Turkek (hengounel doare \"F\")"
-
-#~ msgid "Turkish (modern \"Q\" model)"
-#~ msgstr "Turkek (arnevez doare \"Q\")"
-
-#~ msgid "Ukrainian"
-#~ msgstr "Ukrainiek"
-
-#~ msgid "Uzbek (cyrillic)"
-#~ msgstr "Ouzbek (lizherenneg ar ruseg)"
-
-#~ msgid "Vietnamese \"numeric row\" QWERTY"
-#~ msgstr "Yezh ar Viet-Nam QUERTY \"linenn sifroù\""
-
-#~ msgid "Yugoslavian (latin)"
-#~ msgstr "Yougoslaviek (latin)"
-
-#~ msgid "No devices found"
-#~ msgstr "N'eo ket trobarzhell ebet !"
-
-#~ msgid "Enable multiple profiles"
-#~ msgstr "Aotren lies trolinenn"
-
-#~ msgid "\t* browse the Web"
-#~ msgstr "\t* ergerzhet ar Web"
-
-#~ msgid "\t* <b>GDB</b>: the GNU Project debugger"
-#~ msgstr "\t* <b>GDB</b> : an Dizraener GNU"
-
-#~ msgid "Installation of %s failed. The following error occurred:"
-#~ msgstr "Staliadur %s zo sac'het. Degouezhet eo ar fazi a heul :"
-
-#~ msgid "Delay before booting the default image"
-#~ msgstr "Gedvezh kent loc'hañ ar skeudenn dre ziouer"
-
-#~ msgid "Can not add a partition to _formatted_ RAID md%d"
-#~ msgstr "N'hellan ket ouzhpennañ ur parzhadur da RAID md%d _furmadet_"
-
-#~ msgid "mkraid failed (maybe raidtools are missing?)"
-#~ msgstr "mkraid sac'het (raidtools a vank emichañs ?)"
-
-#~ msgid "First sector of boot partition"
-#~ msgstr "Rann gentañ ar parzhadur loc'hañ"
-
-#~ msgid "Bootloader installation"
-#~ msgstr "Staliadur c'harger loc'hañ"
+msgstr "Sac'het eo ar staliadur"
-#~ msgid "The package %s is going to be removed."
-#~ msgstr "Ar pakad %s zo war-nes bezañ lamet."
+#~ msgid "Icon"
+#~ msgstr "Arlun"
-#~ msgid "4 billion colors (32 bits)"
-#~ msgstr "4 miliard a livioù (32 bit)"
+#~ msgid "PLL setting:"
+#~ msgstr "Kefluniadur ar PLL :"
-#~ msgid "Here is the full list of keyboards available"
-#~ msgstr "Setu eo listenn leun ar stokellaoueg holl"
+#~ msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+#~ msgstr "[--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index 407ad99e6..c8b6e5a09 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -1,851 +1,37 @@
+# translation of bs.po to Bosnian
+# translation of libDrakX-bs.po to Bosnian
# translation of bs.po to Bosanski
# translation of DrakX-bs.po to Bosanski
-# Copyright (C) 2001, 2003, 2004, 2005. Free Software Foundation, Inc.
+# Copyright (C) 2001, 2003, 2004, 2005, 2006. Free Software Foundation, Inc.
# Amila Akagić <bono@lugbih.org>, 06. 2001.
-# Vedran Ljubovic <vljubovic@smartnet.ba>, 2002, 2003, 2004, 2005.
+# Vedran Ljubovic <vljubovic@smartnet.ba>, 2002, 2003, 2004, 2005, 2006.
#
msgid ""
msgstr ""
"Project-Id-Version: bs\n"
-"POT-Creation-Date: 2006-03-05 18:57+0800\n"
-"PO-Revision-Date: 2005-02-26 11:13+0100\n"
+"POT-Creation-Date: 2007-03-21 12:10+0100\n"
+"PO-Revision-Date: 2006-09-13 19:15+0200\n"
"Last-Translator: Vedran Ljubovic <vljubovic@smartnet.ba>\n"
-"Language-Team: Bosanski <lokal@lugbih.org>\n"
+"Language-Team: Bosnian <lokal@linux.org.ba>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.3\n"
+"X-Generator: KBabel 1.10.2\n"
-#: ../move/move.pm:292
-#, c-format
-msgid "Which USB key do you want to format?"
-msgstr "Koju USB ključ želite formatirati?"
-
-#: ../move/move.pm:296
-#, c-format
-msgid ""
-"You are about to format a USB device \"%s\". This will delete all data on "
-"it.\n"
-"Make sure that the selected device is the USB key you want to format. \n"
-"We advise you to unplug all other USB storage devices while doing this "
-"operation."
-msgstr ""
-"Sada ćete formatirati USB uređaj \"%s\". Ovo će obrisati sve podatke na "
-"njemu.\n"
-"Provjerite da li je navedeni uređaj USB ključ koji želite formatirati.\n"
-"Preporučujemo da privremeno iskopčate sve ostale USB uređaje dok radite ovu "
-"operaciju."
-
-#: ../move/move.pm:448 ../move/move.pm:460
-#, c-format
-msgid "Key is not writable"
-msgstr "Ne mogu pisati na ključ"
-
-#: ../move/move.pm:450
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-"Izgleda da je na USB ključu aktivirana zaštita od pisanja. Molim\n"
-"isključite ga, uklonite zaštitu i ponovo ga uključite."
-
-#: ../move/move.pm:452
-#, c-format
-msgid "Retry"
-msgstr "Pokušaj ponovo"
-
-#: ../move/move.pm:453 ../move/move.pm:497
-#, c-format
-msgid "Continue without USB key"
-msgstr "Nastavi bez USB ključa"
-
-#: ../move/move.pm:462
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled, but we can not safely\n"
-"unplug it now.\n"
-"\n"
-"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandriva Move again."
-msgstr ""
-"Izgleda da je na USB ključu aktivirana zaštita, ali ga sada ne možemo\n"
-"bezbjedno isključiti.\n"
-"\n"
-"\n"
-"Kliknite na dugme da restartujete računar, isključite ga, uklonite zašitu\n"
-"od pisanja, ponovo utaknite ključ i pokrenite Mandriva Move."
-
-#: ../move/move.pm:468 help.pm:410 install_steps_interactive.pm:1303
-#, c-format
-msgid "Reboot"
-msgstr "Restartuj"
-
-#: ../move/move.pm:473
-#, c-format
-msgid ""
-"Your USB key does not have any valid Windows (FAT) partitions.\n"
-"We need one to continue (beside, it's more standard so that you\n"
-"will be able to move and access your files from machines\n"
-"running Windows). Please plug in an USB key containing a\n"
-"Windows partition instead.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-"Vaš USB ključ ne sadrži ispravne Windows (FAT) particije.\n"
-"Ova particija nam je potrebna za nastavak (osim toga, FAT particije\n"
-"su uobičajene tako da možete premještati svoje datoteke i pristupati\n"
-"im sa računara koji rade pod Windowsom). Molim uključite USB\n"
-"ključ sa Windows particijom.\n"
-"\n"
-"\n"
-"Takođe možete nastaviti bez USB ključ - još uvijek možete\n"
-"koristiti Mandriva Move kao običan Mandriva operativni sistem."
-
-#: ../move/move.pm:483
-#, c-format
-msgid ""
-"We did not detect any USB key on your system. If you\n"
-"plug in an USB key now, Mandriva Move will have the ability\n"
-"to transparently save the data in your home directory and\n"
-"system wide configuration, for next boot on this computer\n"
-"or another one. Note: if you plug in a key now, wait several\n"
-"seconds before detecting again.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-"Nisam pronašao USB ključ na vašem sistemu. Ako\n"
-"uključite USB ključ, Mandriva Move će imati mogućnost\n"
-"da transparentno čuva vaše podatke u vašem home direktoriju\n"
-"kao i konfiguraciju sistema za sljedeće pokretanje sistema na\n"
-"ovom ili nekom drugom računaru. Pažnja: ako sada uključite\n"
-"ključ, sačekajte nekoliko sekundi do ponovne detekcije.\n"
-"\n"
-"\n"
-"Takođe možete nastaviti bez USB ključa - još uvijek možete\n"
-"koristiti Mandriva Move kao običan Mandriva operativni sistem."
-
-#: ../move/move.pm:494
-#, c-format
-msgid "Need a key to save your data"
-msgstr "Potreban je ključ da snimite podatke"
-
-#: ../move/move.pm:496
-#, c-format
-msgid "Detect USB key again"
-msgstr "Ponovo detektuj USB ključ"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Setting up USB key"
-msgstr "Podešavanje USB ključa"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr ""
-"Molim sačekajte, podešavam sistemske konfiguracione datoteke na USB ključu..."
-
-#: ../move/move.pm:546
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr "Unesite vaše korisničke podatke, šifra će se koristiti za screensaver"
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Auto configuration"
-msgstr "Automatska konfiguracija"
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Molim sačekajte, otkrivam i podešavam uređaje..."
-
-#: ../move/move.pm:604 ../move/move.pm:660 ../move/move.pm:664
-#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/interactive.pm:231
-#: diskdrake/interactive.pm:244 diskdrake/interactive.pm:405
-#: diskdrake/interactive.pm:423 diskdrake/interactive.pm:560
-#: diskdrake/interactive.pm:565 diskdrake/smbnfs_gtk.pm:41 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:52 fsedit.pm:218 install_any.pm:1775
-#: install_any.pm:1827 install_steps.pm:81 install_steps_interactive.pm:37
-#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
-#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
-#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
-#: network/netconnect.pm:837 network/netconnect.pm:866
-#: network/netconnect.pm:965 network/netconnect.pm:969
-#: network/netconnect.pm:973 network/netconnect.pm:978
-#: network/netconnect.pm:1123 network/netconnect.pm:1127
-#: network/netconnect.pm:1246 network/netconnect.pm:1251
-#: network/netconnect.pm:1271 network/netconnect.pm:1428
-#: network/thirdparty.pm:321 network/thirdparty.pm:328
-#: network/thirdparty.pm:372 network/thirdparty.pm:374
-#: network/thirdparty.pm:395 network/thirdparty.pm:419
-#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
-#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
-#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
-#: printer/printerdrake.pm:450 printer/printerdrake.pm:514
-#: printer/printerdrake.pm:686 printer/printerdrake.pm:690
-#: printer/printerdrake.pm:772 printer/printerdrake.pm:1555
-#: printer/printerdrake.pm:1603 printer/printerdrake.pm:1640
-#: printer/printerdrake.pm:1685 printer/printerdrake.pm:1689
-#: printer/printerdrake.pm:1703 printer/printerdrake.pm:1795
-#: printer/printerdrake.pm:1876 printer/printerdrake.pm:1880
-#: printer/printerdrake.pm:1884 printer/printerdrake.pm:1933
-#: printer/printerdrake.pm:1991 printer/printerdrake.pm:1995
-#: printer/printerdrake.pm:2009 printer/printerdrake.pm:2129
-#: printer/printerdrake.pm:2133 printer/printerdrake.pm:2176
-#: printer/printerdrake.pm:2249 printer/printerdrake.pm:2267
-#: printer/printerdrake.pm:2276 printer/printerdrake.pm:2285
-#: printer/printerdrake.pm:2296 printer/printerdrake.pm:2360
-#: printer/printerdrake.pm:2512 printer/printerdrake.pm:2947
-#: printer/printerdrake.pm:3231 printer/printerdrake.pm:3237
-#: printer/printerdrake.pm:3802 printer/printerdrake.pm:3806
-#: printer/printerdrake.pm:3810 printer/printerdrake.pm:4206
-#: printer/printerdrake.pm:4446 printer/printerdrake.pm:4474
-#: printer/printerdrake.pm:4551 printer/printerdrake.pm:4617
-#: printer/printerdrake.pm:4737 standalone/drakTermServ:422
-#: standalone/drakTermServ:492 standalone/drakTermServ:501
-#: standalone/drakTermServ:812 standalone/drakTermServ:819
-#: standalone/drakTermServ:845 standalone/drakTermServ:894
-#: standalone/drakTermServ:1146 standalone/drakTermServ:1181
-#: standalone/drakTermServ:1634 standalone/drakTermServ:1643
-#: standalone/drakTermServ:1651 standalone/drakTermServ:1656
-#: standalone/drakTermServ:1664 standalone/drakTermServ:1680
-#: standalone/drakTermServ:1700 standalone/drakauth:36
-#: standalone/drakbackup:511 standalone/drakbackup:625
-#: standalone/drakbackup:1110 standalone/drakbackup:1141
-#: standalone/drakbackup:1332 standalone/drakbackup:1664
-#: standalone/drakbackup:1820 standalone/drakbackup:2548
-#: standalone/drakbackup:4463 standalone/drakclock:124
-#: standalone/drakconnect:676 standalone/drakconnect:680
-#: standalone/drakconnect:685 standalone/drakconnect:700
-#: standalone/drakfont:209 standalone/drakfont:222 standalone/drakfont:260
-#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakhosts:98
-#: standalone/drakhosts:246 standalone/drakhosts:253 standalone/drakhosts:260
-#: standalone/draknfs:306 standalone/draknfs:609 standalone/draknfs:616
-#: standalone/draknfs:623 standalone/drakroam:33 standalone/draksambashare:384
-#: standalone/draksambashare:388 standalone/draksambashare:391
-#: standalone/draksambashare:394 standalone/draksambashare:453
-#: standalone/draksambashare:477 standalone/draksambashare:551
-#: standalone/draksambashare:633 standalone/draksambashare:700
-#: standalone/draksambashare:800 standalone/draksambashare:807
-#: standalone/draksambashare:942 standalone/draksambashare:1133
-#: standalone/draksambashare:1142 standalone/draksambashare:1151
-#: standalone/draksambashare:1172 standalone/draksambashare:1181
-#: standalone/draksambashare:1190 standalone/draksambashare:1210
-#: standalone/draksambashare:1218 standalone/draksambashare:1230
-#: standalone/draksplash:162 standalone/drakxtv:107
-#: standalone/finish-install:79 standalone/logdrake:171
-#: standalone/logdrake:439 standalone/logdrake:444 standalone/scannerdrake:59
-#: standalone/scannerdrake:202 standalone/scannerdrake:261
-#: standalone/scannerdrake:732 standalone/scannerdrake:743
-#: standalone/scannerdrake:882 standalone/scannerdrake:893
-#: standalone/scannerdrake:963 wizards.pm:95 wizards.pm:99 wizards.pm:121
-#, c-format
-msgid "Error"
-msgstr "Greška"
-
-#: ../move/move.pm:605 install_steps.pm:82
-#, c-format
-msgid ""
-"An error occurred, but I do not know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Došlo je do greške, ali ne znam kako da postupim u vezi toga.\n"
-"Nastavite na vlastiti rizik."
-
-#: ../move/move.pm:660 install_steps_interactive.pm:37
-#, c-format
-msgid "An error occurred"
-msgstr "Došlo je do greške"
-
-#: ../move/move.pm:666
-#, c-format
-msgid ""
-"An error occurred:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"This may come from corrupted system configuration files\n"
-"on the USB key, in this case removing them and then\n"
-"rebooting Mandriva Move would fix the problem. To do\n"
-"so, click on the corresponding button.\n"
-"\n"
-"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-"Došlo je do greške:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"Ovo je možda posljedica korumpiranih sistemskih datoteka\n"
-"na USB ključu, u kojem slučaju će njihovo brisanje i restart\n"
-"Mandriva Move riješiti problem. Da to uradite, kliknite na\n"
-"odgovarajuće dugme.\n"
-"\n"
-"\n"
-"Možete takođe pokušati restartovati i ukloniti USB ključ,\n"
-"ili istražiti njegov sadržaj iz nekog drugog OSa, ili čak\n"
-"možete pogledati log datteke na konzoli #3 i #4 da\n"
-"pokušate otkriti šta se događa."
-
-#: ../move/move.pm:681
-#, c-format
-msgid "Remove system config files"
-msgstr "Ukloni sistemske konfig datoteke"
-
-#: ../move/move.pm:682
-#, c-format
-msgid "Simply reboot"
-msgstr "Samo restartuj"
-
-#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr "Možete nastaviti samo bez CDROM podrške"
-
-#: ../move/tree/mdk_totem:71
-#, c-format
-msgid "Kill those programs"
-msgstr "Ubij ove programe"
-
-#: ../move/tree/mdk_totem:72
-#, c-format
-msgid "No CDROM support"
-msgstr "Nema CDROM podrške"
-
-#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1062 diskdrake/interactive.pm:1072
-#: diskdrake/interactive.pm:1125
-#, c-format
-msgid "Read carefully!"
-msgstr "Pročitajte pažljivo!"
-
-#: ../move/tree/mdk_totem:77
-#, c-format
-msgid ""
-"You can not use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-"Ne možete koristiti drugi CDROM kada su pokrenuti sljedeći programi: \n"
-"%s"
-
-#: ../move/tree/mdk_totem:101
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr "Kopiram u memoriju da dozvolim uklanjanje CDROMa"
-
-#: Xconfig/card.pm:13
-#, c-format
-msgid "256 kB"
-msgstr "256 kB"
-
-#: Xconfig/card.pm:14
-#, c-format
-msgid "512 kB"
-msgstr "512 kB"
-
-#: Xconfig/card.pm:15
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
-
-#: Xconfig/card.pm:16
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
-
-#: Xconfig/card.pm:17
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
-
-#: Xconfig/card.pm:18
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
-
-#: Xconfig/card.pm:19
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: Xconfig/card.pm:20
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
-
-#: Xconfig/card.pm:21
-#, c-format
-msgid "64 MB or more"
-msgstr "64 MB ili više"
-
-#: Xconfig/card.pm:162
-#, c-format
-msgid "X server"
-msgstr "X server"
-
-#: Xconfig/card.pm:163
-#, c-format
-msgid "Choose an X server"
-msgstr "Izaberite X server"
-
-#: Xconfig/card.pm:195
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Multi-head konfiguracija"
-
-#: Xconfig/card.pm:196
-#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Vaš sistem podržava konfiguraciju više glava.\n"
-"Šta želite učiniti?"
-
-#: Xconfig/card.pm:265
-#, c-format
-msgid "Can not install Xorg package: %s"
-msgstr "Ne mogu instalirati Xorg paket: %s"
-
-#: Xconfig/card.pm:275
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Izaberite veličinu memorije vaše grafičke kartice"
-
-#: Xconfig/card.pm:371
-#, c-format
-msgid "Xorg configuration"
-msgstr "Xorg konfiguracija"
-
-#: Xconfig/card.pm:373
-#, c-format
-msgid "Which configuration of Xorg do you want to have?"
-msgstr "Koju konfiguraciju Xorg želite imati?"
-
-#: Xconfig/card.pm:406
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Konfiguriši sve glave odvojeno"
-
-#: Xconfig/card.pm:407
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Koristi Xinerama ekstenziju"
-
-#: Xconfig/card.pm:412
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Podesi samo karticu \"%s\"%s"
-
-#: Xconfig/card.pm:424 Xconfig/various.pm:23
-#, c-format
-msgid "Xorg %s"
-msgstr "Xorg %s"
-
-#: Xconfig/card.pm:431 Xconfig/various.pm:22
-#, c-format
-msgid "Xorg %s with 3D hardware acceleration"
-msgstr "Xorg %s sa 3D hardverskim ubrzanjem"
-
-#: Xconfig/card.pm:433
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with Xorg %s."
-msgstr "Vaša kartica može imati podršku za 3D hardversko ubrzanje sa Xorg %s."
-
-#: Xconfig/card.pm:439
-#, c-format
-msgid "Xorg %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "Xorg %s sa EKSPERIMENTALNIM 3D hardverskim ubrzanjem"
-
-#: Xconfig/card.pm:441
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with Xorg %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Vaša kartica može imati podršku za 3D hardversko ubrzanje sa Xorg %s,\n"
-"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR."
-
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:1021
-#, c-format
-msgid "Custom"
-msgstr "Izaberi korisnike"
-
-#: Xconfig/main.pm:127 any.pm:742 diskdrake/dav.pm:26 help.pm:15
-#: install_steps_interactive.pm:1303 printer/printerdrake.pm:882
-#: printer/printerdrake.pm:899 printer/printerdrake.pm:4546
-#: printer/printerdrake.pm:5010 standalone/drakhosts:263
-#: standalone/drakroam:230 standalone/draksplash:93 standalone/logdrake:176
-#: standalone/net_applet:103 standalone/scannerdrake:494
-#, c-format
-msgid "Quit"
-msgstr "Izlaz"
-
-#: Xconfig/main.pm:129
-#, c-format
-msgid "Graphic Card"
-msgstr "Grafička karta"
-
-#: Xconfig/main.pm:132 Xconfig/monitor.pm:110
-#, c-format
-msgid "Monitor"
-msgstr "Monitor"
-
-#: Xconfig/main.pm:135 Xconfig/resolution_and_depth.pm:289
-#, c-format
-msgid "Resolution"
-msgstr "Rezolucija"
-
-#: Xconfig/main.pm:138
-#, c-format
-msgid "Test"
-msgstr "Test"
-
-#: Xconfig/main.pm:143 diskdrake/dav.pm:65 diskdrake/interactive.pm:449
-#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
-#: printer/printerdrake.pm:1112 standalone/drakfont:493
-#: standalone/drakfont:548
-#, c-format
-msgid "Options"
-msgstr "Opcije"
-
-#: Xconfig/main.pm:178
-#, c-format
-msgid "Your Xorg configuration file is broken, we will ignore it."
-msgstr "Vaša Xorg konfiguraciona datoteka je pokvarena, ignorišem je."
-
-#: Xconfig/main.pm:196
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Zadržati izmjene?\n"
-"Trenutna konfiguracija je:\n"
-"\n"
-"%s"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor for head #%d"
-msgstr "Izaberite monitor za glavu #%d"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor"
-msgstr "Izaberite monitor"
-
-#: Xconfig/monitor.pm:117
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n Play"
-
-#: Xconfig/monitor.pm:118 mouse.pm:49
-#, c-format
-msgid "Generic"
-msgstr "Opšti"
-
-#: Xconfig/monitor.pm:119 standalone/drakconnect:591 standalone/harddrake2:54
-#: standalone/harddrake2:88
-#, c-format
-msgid "Vendor"
-msgstr "Proizvođač"
-
-#: Xconfig/monitor.pm:129
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr ""
-"Plug'n'Play probanje nije uspjelo. Molim izaberite odgovarajući monitor"
-
-#: Xconfig/monitor.pm:137
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Dva kritična parametra su brzina vertikalnog osvježenja, što je brzina\n"
-"kojom se cijeli ekran osvježava, i brzina horizontalne\n"
-"sinhronizacije, što je brzina kojm se prikazuju skan-linije.\n"
-"\n"
-"VEOMA JE VAŽNO da ne izaberete tip monitora čiji je sinhronizacioni\n"
-"raspon izvan mogućnosti vašeg monitora: time možete oštetiti monitor.\n"
-" Ako niste sigurni, izaberite najmanju opciju."
-
-#: Xconfig/monitor.pm:144
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Brzina horizontalnog osvježavanja"
-
-#: Xconfig/monitor.pm:145
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Brzina vertikalnog osvježavanja"
-
-#: Xconfig/resolution_and_depth.pm:10
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 boja (8 bita)"
-
-#: Xconfig/resolution_and_depth.pm:11
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 hiljada boja (15 bita)"
-
-#: Xconfig/resolution_and_depth.pm:12
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 hiljada boja (16 bita)"
-
-#: Xconfig/resolution_and_depth.pm:13
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 miliona boja (24 bita)"
-
-#: Xconfig/resolution_and_depth.pm:127
-#, c-format
-msgid "Resolutions"
-msgstr "Rezolucije"
-
-#: Xconfig/resolution_and_depth.pm:311 diskdrake/hd_gtk.pm:336
-#: install_steps_gtk.pm:288 mouse.pm:168 services.pm:162
-#: standalone/drakbackup:1606 standalone/drakperm:250
-#, c-format
-msgid "Other"
-msgstr "Ostalo"
-
-#: Xconfig/resolution_and_depth.pm:360
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Izaberite rezoluciju i broj boja"
-
-#: Xconfig/resolution_and_depth.pm:361
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Grafička karta: %s"
-
-#: Xconfig/resolution_and_depth.pm:375 interactive.pm:119 interactive.pm:436
-#: interactive/http.pm:103 interactive/http.pm:156 interactive/newt.pm:321
-#: interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:143
-#: standalone/drakTermServ:222 standalone/drakTermServ:543
-#: standalone/drakbackup:1372 standalone/drakbackup:4123
-#: standalone/drakbackup:4183 standalone/drakbackup:4227
-#: standalone/drakbackup:4481 standalone/drakconnect:158
-#: standalone/drakconnect:852 standalone/drakconnect:939
-#: standalone/drakconnect:1030 standalone/drakfont:569 standalone/drakfont:579
-#: standalone/draksplash:173 standalone/drakups:210 standalone/net_monitor:339
-#: ugtk2.pm:392 ugtk2.pm:490 ugtk2.pm:899 ugtk2.pm:922
-#, c-format
-msgid "Ok"
-msgstr "U redu"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/smbnfs_gtk.pm:80 help.pm:90
-#: help.pm:445 install_steps_gtk.pm:455 install_steps_interactive.pm:406
-#: install_steps_interactive.pm:811 interactive.pm:120 interactive.pm:437
-#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
-#: interactive/stdio.pm:39 interactive/stdio.pm:142
-#: printer/printerdrake.pm:3882 standalone/drakautoinst:215
-#: standalone/drakbackup:1372 standalone/drakbackup:4052
-#: standalone/drakbackup:4056 standalone/drakbackup:4111
-#: standalone/drakbackup:4481 standalone/drakconnect:157
-#: standalone/drakconnect:937 standalone/drakconnect:1029
-#: standalone/drakfont:579 standalone/drakfont:655 standalone/drakfont:733
-#: standalone/draksplash:173 standalone/drakups:217 standalone/logdrake:176
-#: standalone/net_monitor:338 ugtk2.pm:386 ugtk2.pm:488 ugtk2.pm:497
-#: ugtk2.pm:899
-#, c-format
-msgid "Cancel"
-msgstr "Odustani"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/hd_gtk.pm:150
-#: install_steps_gtk.pm:232 install_steps_gtk.pm:617 interactive.pm:567
-#: interactive/gtk.pm:682 interactive/gtk.pm:684 standalone/drakTermServ:311
-#: standalone/drakbackup:4048 standalone/drakbug:105
-#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:511 standalone/draknfs:206 standalone/drakperm:133
-#: standalone/draksambashare:320 standalone/draksec:344 standalone/draksec:346
-#: standalone/draksec:364 standalone/draksec:366 ugtk2.pm:1031 ugtk2.pm:1032
-#, c-format
-msgid "Help"
-msgstr "Pomoć"
-
-#: Xconfig/test.pm:30
-#, c-format
-msgid "Test of the configuration"
-msgstr "Testiranje konfiguracije"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Želite li testirati konfiguraciju?"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Upozorenje: testiranje ove grafičke karte može zalediti računar"
-
-#: Xconfig/test.pm:69
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"Došlo je do greške:\n"
-"%s\n"
-"Probajte promijeniti neke parametre"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Napuštam za %d sekundi"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Da li je ovo ispravno?"
-
-#: Xconfig/various.pm:29
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Raspored tastature: %s\n"
-
-#: Xconfig/various.pm:30
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Vrsta miša: %s\n"
-
-#: Xconfig/various.pm:31
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Uređaj miša: %s\n"
-
-#: Xconfig/various.pm:33
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: Xconfig/various.pm:34
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Monitor HorizSync: %s\n"
-
-#: Xconfig/various.pm:35
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Monitor VertRefresh: %s\n"
-
-#: Xconfig/various.pm:37
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Grafička karta: %s\n"
-
-#: Xconfig/various.pm:38
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Grafička memorija: %s kB\n"
-
-#: Xconfig/various.pm:40
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Broj boja: %s\n"
-
-#: Xconfig/various.pm:41
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Rezolucija: %s\n"
-
-#: Xconfig/various.pm:43
-#, c-format
-msgid "Xorg driver: %s\n"
-msgstr "Xorg drajver: %s\n"
-
-#: Xconfig/various.pm:72
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "Grafički interfejs pri pokretanju"
-
-#: Xconfig/various.pm:74
-#, c-format
-msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(Xorg) upon booting.\n"
-"Would you like Xorg to start when you reboot?"
-msgstr ""
-"Mogu podesiti vaš računar da automatski pokrene grafički interfejs (Xorg) "
-"pri pokretanju računara.\n"
-"Želite li da se Xorg automatski pokreće?"
-
-#: Xconfig/various.pm:87
-#, c-format
-msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
-msgstr ""
-"Izgleda da vaša grafička kartica ima TV-OUT konektor.\n"
-"On se može podesiti da radi koristeći frame-buffer.\n"
-"\n"
-"Za ovo je potrebno da uključite grafičku karticu u TV prije nego što upalite "
-"računar.\n"
-"Zatim u meniju bootloadera izaberite opciju \"TVout\"\n"
-"\n"
-"Imate li ovu mogućnost?"
-
-#: Xconfig/various.pm:99
-#, c-format
-msgid "What norm is your TV using?"
-msgstr "Koji standard koristi vaš TV?"
-
-#: Xconfig/xfree.pm:648
-#, c-format
-msgid ""
-"_:weird aspect ratio\n"
-"other"
-msgstr ""
-
-#: any.pm:153 harddrake/sound.pm:195 interactive.pm:474 pkgs.pm:474
-#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
-#: standalone/drakups:99 standalone/drakxtv:92 standalone/harddrake2:375
-#: standalone/service_harddrake:235
+#: any.pm:157 diskdrake/interactive.pm:422 diskdrake/interactive.pm:617
+#: diskdrake/interactive.pm:798 diskdrake/interactive.pm:842
+#: diskdrake/interactive.pm:904 diskdrake/interactive.pm:1188 do_pkgs.pm:209
+#: do_pkgs.pm:255 harddrake/sound.pm:195 interactive.pm:576
#, c-format
msgid "Please wait"
msgstr "Molim sačekajte"
-#: any.pm:153
+#: any.pm:157
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instalacija bootloadera u toku"
-#: any.pm:164
+#: any.pm:168
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -863,12 +49,12 @@ msgstr ""
"\n"
"Da li da podesim novi ID volumena?"
-#: any.pm:175
+#: any.pm:179
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Instalacija bootloadera nije uspjela. Došlo je do sljedeće greške:"
-#: any.pm:181
+#: any.pm:185
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -886,7 +72,7 @@ msgstr ""
" Zatim kucajte: shut-down\n"
"Prilikom idućeg boota biste trebali vidjeti upit bootloadera."
-#: any.pm:219
+#: any.pm:223
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -901,257 +87,268 @@ msgstr ""
"\n"
"Sa kojeg diska vršite boot?"
-#: any.pm:242 help.pm:740
+#: any.pm:246
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Prvi sektor diska (MBR)"
-#: any.pm:243
+#: any.pm:247
#, c-format
msgid "First sector of the root partition"
msgstr "Prvi sektor root particije"
-#: any.pm:245
+#: any.pm:249
#, c-format
msgid "On Floppy"
msgstr "Na disketi"
-#: any.pm:247 help.pm:740 printer/printerdrake.pm:4203
+#: any.pm:251
#, c-format
msgid "Skip"
msgstr "Preskoči"
-#: any.pm:251
+#: any.pm:255
#, c-format
msgid "LILO/grub Installation"
msgstr "LILO/grub instalacija"
-#: any.pm:252
+#: any.pm:257
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Gdje želite smjestiti bootloader?"
-#: any.pm:278 standalone/drakboot:269
+#: any.pm:284
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfiguracija stila boota"
-#: any.pm:280 any.pm:281 any.pm:314 any.pm:315
+#: any.pm:294 any.pm:326 any.pm:327
#, c-format
msgid "Bootloader main options"
msgstr "Glavne opcije bootloadera"
-#: any.pm:286
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Navedite veličinu rama u MB"
-
-#: any.pm:288
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Opcija ``Ograniči opcije komandne linije'' je beskorisna bez šifre"
-
-#: any.pm:289 any.pm:628 authentication.pm:192
-#, c-format
-msgid "The passwords do not match"
-msgstr "Šifre se ne poklapaju"
-
-#: any.pm:289 any.pm:628 authentication.pm:192 diskdrake/interactive.pm:1336
+#: any.pm:299
#, c-format
-msgid "Please try again"
-msgstr "Molim pokušajte ponovo"
+msgid "Bootloader"
+msgstr "Bootloader"
-#: any.pm:294 any.pm:319
+#: any.pm:300 any.pm:331
#, c-format
msgid "Bootloader to use"
msgstr "Bootloader koji ćete koristiti"
-#: any.pm:296 any.pm:321
+#: any.pm:302 any.pm:333
#, c-format
msgid "Boot device"
msgstr "Boot uređaj"
-#: any.pm:298
+#: any.pm:304
+#, c-format
+msgid "Main options"
+msgstr "Glavne opcije"
+
+#: any.pm:305
#, c-format
msgid "Delay before booting default image"
-msgstr "Čekanje prije bootanja default image-a"
+msgstr "Pauza prije pokretanja izabrane opcije"
-#: any.pm:299
+#: any.pm:306
#, c-format
msgid "Enable ACPI"
msgstr "Uključi ACPI"
-#: any.pm:301
+#: any.pm:307
#, c-format
-msgid "Force no APIC"
-msgstr "Prinudi bez APICa"
+msgid "Enable APIC"
+msgstr "Uključi APIC"
-#: any.pm:303
+#: any.pm:308
#, c-format
-msgid "Force No Local APIC"
-msgstr "Prinudi bez Lokalnog APICa"
+msgid "Enable Local APIC"
+msgstr "Uključi Local APIC"
-#: any.pm:305 any.pm:662 authentication.pm:197 diskdrake/smbnfs_gtk.pm:180
-#: network/netconnect.pm:584 printer/printerdrake.pm:1867
-#: printer/printerdrake.pm:1988 standalone/drakbackup:1650
-#: standalone/drakbackup:3641 standalone/drakups:297
+#: any.pm:310 any.pm:686 authentication.pm:196 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Šifra"
-#: any.pm:306 any.pm:663 authentication.pm:198
+#: any.pm:312 authentication.pm:207
+#, c-format
+msgid "The passwords do not match"
+msgstr "Šifre se ne poklapaju"
+
+#: any.pm:312 authentication.pm:207 diskdrake/interactive.pm:1348
+#, c-format
+msgid "Please try again"
+msgstr "Molim pokušajte ponovo"
+
+#: any.pm:313
+#, fuzzy, c-format
+msgid "You can not use a password with %s"
+msgstr "Ne možete koristiti šifrovani datotečni sistem za tačku montiranja %s"
+
+#: any.pm:316 any.pm:687 authentication.pm:197
#, c-format
msgid "Password (again)"
msgstr "Šifra (ponovo)"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "Restrict command line options"
msgstr "Ograniči opcije komandne linije"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "restrict"
msgstr "ograniči"
-#: any.pm:309
+#: any.pm:318
+#, c-format
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr "Opcija ``Ograniči opcije komandne linije'' je beskorisna bez šifre"
+
+#: any.pm:320
#, c-format
msgid "Clean /tmp at each boot"
-msgstr "Očisti /tmp prilikom svakog boota"
+msgstr "Očisti /tmp prilikom svakog starta"
-#: any.pm:310
+#: any.pm:321
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precizna veličina RAMa ako je potrebno (pronađeno %d MB)"
-#: any.pm:320
+#: any.pm:322
+#, c-format
+msgid "Give the ram size in MB"
+msgstr "Navedite veličinu rama u MB"
+
+#: any.pm:332
#, c-format
msgid "Init Message"
msgstr "Init poruka"
-#: any.pm:322
+#: any.pm:334
#, c-format
msgid "Open Firmware Delay"
msgstr "Čekanje na Open Firmware"
-#: any.pm:323
+#: any.pm:335
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Vrijeme za boot kernela"
-#: any.pm:324
+#: any.pm:336
#, c-format
msgid "Enable CD Boot?"
msgstr "Omogući boot sa CDa?"
-#: any.pm:325
+#: any.pm:337
#, c-format
msgid "Enable OF Boot?"
msgstr "Omogući boot sa OFa?"
-#: any.pm:326
+#: any.pm:338
#, c-format
msgid "Default OS?"
msgstr "Podrazumjevani OS?"
-#: any.pm:380
+#: any.pm:404
#, c-format
msgid "Image"
msgstr "Image"
-#: any.pm:381 any.pm:391
+#: any.pm:405 any.pm:418
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:382 any.pm:404
+#: any.pm:406 any.pm:431
#, c-format
msgid "Append"
msgstr "Append"
-#: any.pm:384 standalone/drakboot:271 standalone/drakboot:275
+#: any.pm:408
+#, c-format
+msgid "Xen append"
+msgstr "Xen append"
+
+#: any.pm:411
#, c-format
msgid "Video mode"
-msgstr "Video mod"
+msgstr "Video režim"
-#: any.pm:386
+#: any.pm:413
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:387
+#: any.pm:414
#, c-format
msgid "Network profile"
msgstr "Mrežni profil"
-#: any.pm:396 any.pm:401 any.pm:403 diskdrake/interactive.pm:450
+#: any.pm:423 any.pm:428 any.pm:430 diskdrake/interactive.pm:443
#, c-format
msgid "Label"
msgstr "Oznaka"
-#: any.pm:398 any.pm:408 harddrake/v4l.pm:438 standalone/drakbackup:2104
-#: standalone/draksec:52
+#: any.pm:425 any.pm:433 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Default"
-#: any.pm:405
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd-veličina"
-
-#: any.pm:407
+#: any.pm:432
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:418
+#: any.pm:443
#, c-format
msgid "Empty label not allowed"
msgstr "Prazna oznaka nije dozvoljena"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a kernel image"
msgstr "Morate navesti image kernela"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a root partition"
msgstr "Morate navesti root particiju"
-#: any.pm:420
+#: any.pm:445
#, c-format
msgid "This label is already used"
msgstr "Ova oznaka je već u upotrebi"
-#: any.pm:434
+#: any.pm:459
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Koju vrstu opcije želite dodati?"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Ostali OSi (SunOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Ostali OSi (MacOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (Windows...)"
msgstr "Ostali OSi (Windows...)"
-#: any.pm:464
+#: any.pm:489
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -1160,93 +357,88 @@ msgstr ""
"Ovo su trenutne opcije u vašem boot meniju.\n"
"Možete dodati nove ili promijeniti postojeće."
-#: any.pm:614
+#: any.pm:640
#, c-format
msgid "access to X programs"
msgstr "pristup X programima"
-#: any.pm:615
+#: any.pm:641
#, c-format
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: any.pm:616
+#: any.pm:642
#, c-format
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: any.pm:617
+#: any.pm:643
#, c-format
msgid "access to administrative files"
msgstr "pristup administrativnim datotekama"
-#: any.pm:618
+#: any.pm:644
#, c-format
msgid "access to network tools"
msgstr "pristup mrežnim alatima"
-#: any.pm:619
+#: any.pm:645
#, c-format
msgid "access to compilation tools"
msgstr "pristup alatima za kompajliranje"
-#: any.pm:624
+#: any.pm:650
#, c-format
msgid "(already added %s)"
msgstr "(već dodan %s)"
-#: any.pm:629
-#, c-format
-msgid "This password is too simple"
-msgstr "Ova šifra je previše jednostavna"
-
-#: any.pm:630
+#: any.pm:657
#, c-format
msgid "Please give a user name"
msgstr "Molim navedite korisničko ime"
-#: any.pm:631
+#: any.pm:658
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Korisničko ime smije sadržati samo mala slova, brojeve, `-' i `_'"
-#: any.pm:632
+#: any.pm:659
#, c-format
msgid "The user name is too long"
msgstr "Korisničko ime je predugačko"
-#: any.pm:633
+#: any.pm:660
#, c-format
msgid "This user name has already been added"
msgstr "Ovo korisničko ime je već dodano"
-#: any.pm:634 any.pm:665
+#: any.pm:661 any.pm:689
#, c-format
msgid "User ID"
msgstr "Korisnički ID"
-#: any.pm:635 any.pm:666
+#: any.pm:662 any.pm:690
#, c-format
msgid "Group ID"
msgstr "Grupni ID"
-#: any.pm:638
-#, fuzzy, c-format
+#: any.pm:665
+#, c-format
msgid "%s must be a number"
-msgstr "Opcija %s mora biti broj!"
+msgstr "Opcija %s mora biti broj"
-#: any.pm:639
+#: any.pm:666
#, c-format
msgid "%s should be above 500. Accept anyway?"
-msgstr ""
+msgstr "%s mora biti veće od 500. Svejedno prihvati?"
-#: any.pm:644 standalone/draksambashare:1214
+#: any.pm:671
#, c-format
msgid "Add user"
msgstr "Dodaj korisnika"
-#: any.pm:646
+#: any.pm:673
#, c-format
msgid ""
"Enter a user\n"
@@ -1255,98 +447,94 @@ msgstr ""
"Unesite korisnika\n"
"%s"
-#: any.pm:649 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:154
-#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:81 help.pm:531
-#: interactive/http.pm:151 printer/printerdrake.pm:197
-#: printer/printerdrake.pm:382 printer/printerdrake.pm:5010
-#: standalone/drakbackup:2836 standalone/scannerdrake:685
-#: standalone/scannerdrake:835
+#: any.pm:676 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:166
+#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:82
+#: interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Gotovo"
-#: any.pm:650 help.pm:52
+#: any.pm:677
#, c-format
msgid "Accept user"
msgstr "Prihvati korisnika"
-#: any.pm:660
+#: any.pm:682
#, c-format
msgid "Real name"
msgstr "Pravo ime"
-#: any.pm:661 standalone/drakbackup:1645
+#: any.pm:685
#, c-format
msgid "Login name"
msgstr "Korisničko ime"
-#: any.pm:664
+#: any.pm:688
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:668
-#, c-format
-msgid "Icon"
-msgstr "Ikona"
-
-#: any.pm:715 security/l10n.pm:14
+#: any.pm:735 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Autologin"
-#: any.pm:716
+#: any.pm:736
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Mogu podesiti vaš računar da automatski prijavi jednog korisnika."
-#: any.pm:717
-#, fuzzy, c-format
+#: any.pm:737
+#, c-format
msgid "Use this feature"
-msgstr "Da li želite koristiti ovu mogućnost?"
+msgstr "Koristi ovu mogućnost"
-#: any.pm:718
+#: any.pm:738
#, c-format
msgid "Choose the default user:"
msgstr "Izaberite default korisnika:"
-#: any.pm:719
+#: any.pm:739
#, c-format
msgid "Choose the window manager to run:"
msgstr "Izaberite window manager koji će se pokretati:"
-#: any.pm:740
+#: any.pm:767
#, c-format
msgid "License agreement"
msgstr "Licencni ugovor"
-#: any.pm:745
+#: any.pm:770 diskdrake/dav.pm:26
+#, c-format
+msgid "Quit"
+msgstr "Izlaz"
+
+#: any.pm:773
#, c-format
msgid "Release Notes"
msgstr "Napomene izdanja"
-#: any.pm:748 help.pm:15 install_steps_gtk.pm:539
-#: install_steps_interactive.pm:715 standalone/drakautoinst:214
+#: any.pm:776
#, c-format
msgid "Accept"
msgstr "Prihvatam"
-#: any.pm:748 install_steps_gtk.pm:539 install_steps_interactive.pm:715
+#: any.pm:776
#, c-format
msgid "Refuse"
msgstr "Ne prihvatam"
-#: any.pm:765 any.pm:833
+#: any.pm:795 any.pm:863
#, c-format
msgid "Please choose a language to use."
msgstr "Molim izaberite jezik koji ćete koristiti."
-#: any.pm:766 any.pm:834
+#: any.pm:796 any.pm:864
#, c-format
msgid "Language choice"
msgstr "Izbor jezika"
-#: any.pm:794
+#: any.pm:826
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
@@ -1357,70 +545,72 @@ msgstr ""
"želite instalirati. Oni će biti dostupni kada se završi vaša\n"
"instalacija i restartujete vaš sistem."
-#: any.pm:797
+#: any.pm:829
#, c-format
msgid "Multi languages"
-msgstr ""
+msgstr "Višejezična podrška"
-#: any.pm:813 any.pm:842 help.pm:648
+#: any.pm:841 any.pm:872
#, c-format
-msgid "Use Unicode by default"
-msgstr "Podrazumijeva se Unicode"
+msgid "Old compatibility (non UTF-8) encoding"
+msgstr "Kompatibilnost sa starim (ne-UTF8) kodiranjem"
-#: any.pm:814 help.pm:648
+#: any.pm:843
#, c-format
msgid "All languages"
msgstr "Svi jezici"
-#: any.pm:888 help.pm:567 help.pm:856 install_steps_interactive.pm:932
+#: any.pm:918
#, c-format
msgid "Country / Region"
-msgstr "Zemlja"
+msgstr "Država / Oblast"
-#: any.pm:890
+#: any.pm:920
#, c-format
msgid "Please choose your country."
-msgstr "Molim izaberite vašu zemlju."
+msgstr "Molim izaberite vašu državu."
-#: any.pm:892
+#: any.pm:922
#, c-format
msgid "Here is the full list of available countries"
msgstr "Ovdje je puna lista svih dostupnih država"
-#: any.pm:893
+#: any.pm:923
#, c-format
msgid "Other Countries"
-msgstr "Ostale zemlje"
+msgstr "Ostale države"
-#: any.pm:893 help.pm:52 help.pm:410 help.pm:432 help.pm:648 help.pm:723
-#: interactive.pm:397
+#: any.pm:923 interactive.pm:477
#, c-format
msgid "Advanced"
msgstr "Više opcija"
-#: any.pm:901
+#: any.pm:929
#, c-format
msgid "Input method:"
msgstr "Metod unosa:"
-#: any.pm:904 install_any.pm:422 network/netconnect.pm:317
-#: network/netconnect.pm:322 network/netconnect.pm:1237 network/wireless.pm:7
-#: printer/printerdrake.pm:117
+#: any.pm:932
#, c-format
msgid "None"
msgstr "Ništa"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "No sharing"
msgstr "Bez dijeljenja"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: any.pm:1025
+#: any.pm:1012
+#, c-format
+msgid "Custom"
+msgstr "Vlastito"
+
+#: any.pm:1016
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1438,7 +628,7 @@ msgstr ""
"\"Izaberi korisnike\" vam omogućuje da podesite ovu opciju zasebno za svakog "
"korisnika.\n"
-#: any.pm:1037
+#: any.pm:1028
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -1447,7 +637,7 @@ msgstr ""
"NFS: tradicionalni Unix sistem za dijeljenje datoteka, koji ima slabiju "
"podršku na Macintoshu i Windowsu."
-#: any.pm:1040
+#: any.pm:1031
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -1456,7 +646,7 @@ msgstr ""
"SMB: sistem za dijeljenje datoteka koji koristi Windows, Mac OS X i većina "
"modernih Linux sistema."
-#: any.pm:1048
+#: any.pm:1039
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -1464,23 +654,17 @@ msgstr ""
"Možete eksportovati koristeći NFS ili Sambu. Molim izaberite sistem koji "
"želite koristiti."
-#: any.pm:1073
+#: any.pm:1064
#, c-format
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: any.pm:1073 printer/printerdrake.pm:4085 printer/printerdrake.pm:4088
-#: printer/printerdrake.pm:4089 printer/printerdrake.pm:4090
-#: printer/printerdrake.pm:5328 standalone/drakTermServ:321
-#: standalone/drakbackup:4245 standalone/drakbug:126 standalone/drakfont:499
-#: standalone/drakids:64 standalone/drakids:77 standalone/drakids:85
-#: standalone/draknfs:210 standalone/net_monitor:117
-#: standalone/printerdrake:583
+#: any.pm:1064 interactive/gtk.pm:747
#, c-format
msgid "Close"
msgstr "Zatvori"
-#: any.pm:1075
+#: any.pm:1066
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -1489,6 +673,58 @@ msgstr ""
"Dijeljenje na nivou korisnika koristi grupu \"fileshare\". \n"
"Možete dodavati korisnike u ovu grupu pomoću userdrake-a."
+#: any.pm:1158
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Molim izvršite logout i zatim koristitite Ctrl-Alt-BackSpace"
+
+#: any.pm:1162
+#, c-format
+msgid "You need to log out and back in again for changes to take effect"
+msgstr ""
+"Trebate se odjaviti i ponovo prijaviti na sistem kako bi izmjene stupile na "
+"snagu"
+
+#: any.pm:1212
+#, c-format
+msgid "Timezone"
+msgstr "Vremenska zona"
+
+#: any.pm:1212
+#, c-format
+msgid "Which is your timezone?"
+msgstr "Koja je vaša vremenska zona?"
+
+#: any.pm:1224 any.pm:1226
+#, c-format
+msgid "Date, Clock & Time Zone Settings"
+msgstr "Postavke datuma, sata i vremenske zone"
+
+#: any.pm:1227
+#, c-format
+msgid "What is the best time?"
+msgstr "Koje je vrijeme tačnije?"
+
+#: any.pm:1231
+#, c-format
+msgid "%s (hardware clock set to UTC)"
+msgstr "%s (hardverski sat podešen na UTC)"
+
+#: any.pm:1232
+#, c-format
+msgid "%s (hardware clock set to local time)"
+msgstr "%s (hardverski sat podešen na lokalno vrijeme)"
+
+#: any.pm:1234
+#, c-format
+msgid "NTP Server"
+msgstr "NTP server"
+
+#: any.pm:1235
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
+
#: authentication.pm:23
#, c-format
msgid "Local file"
@@ -1588,7 +824,7 @@ msgstr "Active Directory sa SFU:"
#: authentication.pm:70
#, c-format
msgid "With Kerberos and Ldap for authentication in Active Directory Server "
-msgstr ""
+msgstr "Sa Kerberosom i LDAPom za autenticiranje na Active Directory server "
#: authentication.pm:71
#, c-format
@@ -1601,6 +837,8 @@ msgid ""
"Winbind allows the system to authenticate users in a Windows Active "
"Directory Server."
msgstr ""
+"Winbind omogućuje sistemu da potvrđuje korisnike putem Windows Active "
+"Directory servera."
#: authentication.pm:96
#, c-format
@@ -1612,7 +850,7 @@ msgstr "Autentikacijski LDAP"
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: authentication.pm:98 share/compssUsers.pl:102
+#: authentication.pm:98
#, c-format
msgid "LDAP Server"
msgstr "LDAP Server"
@@ -1642,14 +880,12 @@ msgstr "sloj sigurnosti (SASL/Kerberos)"
msgid "Authentication Active Directory"
msgstr "Provjera identiteta kroz Aktivni imenik (Active Directory)"
-#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:181
+#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Domena"
-#: authentication.pm:124 diskdrake/dav.pm:63 help.pm:147
-#: printer/printerdrake.pm:75 share/compssUsers.pl:82
-#: standalone/drakTermServ:296
+#: authentication.pm:124 diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Server"
@@ -1725,7 +961,7 @@ msgstr "Autentikacijska Windows domena"
#: authentication.pm:161
#, c-format
msgid "Active Directory Realm "
-msgstr ""
+msgstr "Active Directory Realm "
#: authentication.pm:164
#, c-format
@@ -1737,47 +973,40 @@ msgstr "Korisničko ime domenskog administratora"
msgid "Domain Admin Password"
msgstr "Administratorska šifra domena"
-#: authentication.pm:181
+#: authentication.pm:181 authentication.pm:198
#, c-format
-msgid "Set administrator (root) password and network authentication methods"
-msgstr ""
-"Podesite administratorsku (root) šifru i metode mrežne prijave korisnika"
+msgid "Authentication"
+msgstr "Metod autentikacije"
#: authentication.pm:182
#, c-format
msgid "Set administrator (root) password"
msgstr "Podesite administratorsku (root) šifru"
-#: authentication.pm:183 standalone/drakvpn:1111
+#: authentication.pm:184
#, c-format
msgid "Authentication method"
msgstr "Authentication method"
#. -PO: keep this short or else the buttons will not fit in the window
-#: authentication.pm:188 help.pm:723
+#: authentication.pm:189
#, c-format
msgid "No password"
msgstr "Bez šifre"
-#: authentication.pm:194
+#: authentication.pm:210
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ova šifra je previše jednostavna (mora biti duga najmanje %d karaktera)"
-#: authentication.pm:199 network/netconnect.pm:322 network/netconnect.pm:585
-#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:481
-#, c-format
-msgid "Authentication"
-msgstr "Metod autentikacije"
-
-#: authentication.pm:331
+#: authentication.pm:351
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "Ne mogu koristiti broadcast bez NIS domene"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:767
+#: bootloader.pm:880
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1792,42 +1021,42 @@ msgstr ""
"sacekajte da se pokrene podrazumjevani OS.\n"
"\n"
-#: bootloader.pm:909
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO sa grafičkim menijem"
-
-#: bootloader.pm:910
+#: bootloader.pm:1028
#, c-format
msgid "LILO with text menu"
msgstr "LILO sa tekstualnim menijem"
-#: bootloader.pm:911
+#: bootloader.pm:1029
#, c-format
msgid "GRUB with graphical menu"
-msgstr ""
+msgstr "GRUB sa grafičkim menijem"
-#: bootloader.pm:912
+#: bootloader.pm:1030
#, c-format
msgid "GRUB with text menu"
-msgstr ""
+msgstr "GRUB sa tekstualnim menijem"
-#: bootloader.pm:913
+#: bootloader.pm:1031
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:990
+#: bootloader.pm:1032
+#, c-format
+msgid "SILO"
+msgstr ""
+
+#: bootloader.pm:1112
#, c-format
msgid "not enough room in /boot"
msgstr "nema dovoljno prostora u /boot"
-#: bootloader.pm:1483
+#: bootloader.pm:1679
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "Ne možete instalirati bootloader na %s particiju\n"
-#: bootloader.pm:1523
+#: bootloader.pm:1732
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1836,7 +1065,7 @@ msgstr ""
"Konfiguracija vašeg bootloadera mora biti ažurirana pošto su particije "
"renumerisane"
-#: bootloader.pm:1536
+#: bootloader.pm:1745
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
@@ -1845,242 +1074,55 @@ msgstr ""
"Ne mogu ispravno instalirati bootloader. Morate pokrenuti \"rescue\" sistem "
"i izabrati \"%s\""
-#: bootloader.pm:1537
+#: bootloader.pm:1746
#, c-format
msgid "Re-install Boot Loader"
msgstr "Reinstalacija bootloadera"
-#: common.pm:134
+#: common.pm:129
+#, c-format
+msgid "B"
+msgstr "B"
+
+#: common.pm:129
#, c-format
msgid "KB"
msgstr "KB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "MB"
msgstr "MB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "GB"
msgstr "GB"
-#: common.pm:142
+#: common.pm:137
#, c-format
msgid "TB"
msgstr "TB"
-#: common.pm:150
+#: common.pm:145
#, c-format
msgid "%d minutes"
msgstr "%d minuta"
-#: common.pm:152
+#: common.pm:147
#, c-format
msgid "1 minute"
msgstr "1 minuta"
-#: common.pm:154
+#: common.pm:149
#, c-format
msgid "%d seconds"
msgstr "%d sekundi"
-#: common.pm:260
-#, c-format
-msgid "kdesu missing"
-msgstr "nedostaje kdesu"
-
-#: common.pm:263
-#, c-format
-msgid "consolehelper missing"
-msgstr "nedostaje consolehelper"
-
-#: crypto.pm:13 crypto.pm:48 lang.pm:207 network/adsl_consts.pm:66
-#: network/adsl_consts.pm:75 network/adsl_consts.pm:84
-#, c-format
-msgid "Austria"
-msgstr "Austrija"
-
-#: crypto.pm:14 crypto.pm:47 lang.pm:208 standalone/drakxtv:48
-#, c-format
-msgid "Australia"
-msgstr "Australija"
-
-#: crypto.pm:15 crypto.pm:49 lang.pm:214 network/adsl_consts.pm:93
-#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
-#: network/adsl_consts.pm:123 network/netconnect.pm:44
-#, c-format
-msgid "Belgium"
-msgstr "Belgija"
-
-#: crypto.pm:16 crypto.pm:50 lang.pm:223 network/adsl_consts.pm:132
-#: network/adsl_consts.pm:143 network/adsl_consts.pm:152
-#: network/adsl_consts.pm:161
-#, c-format
-msgid "Brazil"
-msgstr "Brazil"
-
-#: crypto.pm:17 crypto.pm:51 lang.pm:230
-#, c-format
-msgid "Canada"
-msgstr "Kanada"
-
-#: crypto.pm:18 crypto.pm:74 lang.pm:235 network/adsl_consts.pm:891
-#: network/adsl_consts.pm:900 network/adsl_consts.pm:911
-#, c-format
-msgid "Switzerland"
-msgstr "Švicarska"
-
-#: crypto.pm:19 lang.pm:242
-#, c-format
-msgid "Costa Rica"
-msgstr "Kostarika"
-
-#: crypto.pm:20 crypto.pm:52 lang.pm:248 network/adsl_consts.pm:368
-#, c-format
-msgid "Czech Republic"
-msgstr "Češka"
-
-#: crypto.pm:21 crypto.pm:57 lang.pm:249 network/adsl_consts.pm:499
-#: network/adsl_consts.pm:508
-#, c-format
-msgid "Germany"
-msgstr "Njemačka"
-
-#: crypto.pm:22 crypto.pm:53 lang.pm:251 network/adsl_consts.pm:378
-#, c-format
-msgid "Denmark"
-msgstr "Danska"
-
-#: crypto.pm:23 crypto.pm:54 lang.pm:256
-#, c-format
-msgid "Estonia"
-msgstr "Estonija"
-
-#: crypto.pm:24 crypto.pm:72 lang.pm:260 network/adsl_consts.pm:759
-#: network/adsl_consts.pm:770 network/adsl_consts.pm:781
-#: network/adsl_consts.pm:792 network/adsl_consts.pm:801
-#: network/adsl_consts.pm:810 network/adsl_consts.pm:819
-#: network/adsl_consts.pm:828 network/adsl_consts.pm:837
-#: network/adsl_consts.pm:846 network/adsl_consts.pm:855
-#: network/adsl_consts.pm:864 network/adsl_consts.pm:873
-#, c-format
-msgid "Spain"
-msgstr "Španija"
-
-#: crypto.pm:25 crypto.pm:55 lang.pm:262 network/adsl_consts.pm:387
+#: common.pm:298
#, c-format
-msgid "Finland"
-msgstr "Finska"
-
-#: crypto.pm:26 crypto.pm:56 lang.pm:267 network/adsl_consts.pm:396
-#: network/adsl_consts.pm:408 network/adsl_consts.pm:420
-#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
-#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
-#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
-#: network/netconnect.pm:41
-#, c-format
-msgid "France"
-msgstr "Francuska"
-
-#: crypto.pm:27 crypto.pm:58 lang.pm:280 network/adsl_consts.pm:519
-#, c-format
-msgid "Greece"
-msgstr "Grčka"
-
-#: crypto.pm:28 crypto.pm:59 lang.pm:291 network/adsl_consts.pm:528
-#, c-format
-msgid "Hungary"
-msgstr "Mađarska"
-
-#: crypto.pm:29 crypto.pm:60 lang.pm:293 network/adsl_consts.pm:537
-#: standalone/drakxtv:47
-#, c-format
-msgid "Ireland"
-msgstr "Irska"
-
-#: crypto.pm:30 crypto.pm:61 lang.pm:294 network/adsl_consts.pm:546
-#, c-format
-msgid "Israel"
-msgstr "Izrael"
-
-#: crypto.pm:31 crypto.pm:62 lang.pm:300 network/adsl_consts.pm:557
-#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
-#: network/adsl_consts.pm:589 network/netconnect.pm:43 standalone/drakxtv:47
-#, c-format
-msgid "Italy"
-msgstr "Italija"
-
-#: crypto.pm:32 crypto.pm:63 lang.pm:303
-#, c-format
-msgid "Japan"
-msgstr "Japan"
-
-#: crypto.pm:33 crypto.pm:64 lang.pm:352 network/adsl_consts.pm:620
-#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
-#: network/adsl_consts.pm:647 network/netconnect.pm:42
-#, c-format
-msgid "Netherlands"
-msgstr "Nizozemska"
-
-#: crypto.pm:34 crypto.pm:66 lang.pm:353 network/adsl_consts.pm:656
-#: network/adsl_consts.pm:661 network/adsl_consts.pm:666
-#: network/adsl_consts.pm:671 network/adsl_consts.pm:676
-#: network/adsl_consts.pm:681 network/adsl_consts.pm:686
-#, c-format
-msgid "Norway"
-msgstr "Norveška"
-
-#: crypto.pm:35 crypto.pm:65 lang.pm:357
-#, c-format
-msgid "New Zealand"
-msgstr "Novi Zeland"
-
-#: crypto.pm:36 crypto.pm:67 lang.pm:365 network/adsl_consts.pm:693
-#: network/adsl_consts.pm:704
-#, c-format
-msgid "Poland"
-msgstr "Poljska"
-
-#: crypto.pm:37 crypto.pm:68 lang.pm:370 network/adsl_consts.pm:716
-#, c-format
-msgid "Portugal"
-msgstr "Portugal"
-
-#: crypto.pm:38 crypto.pm:69 lang.pm:376 network/adsl_consts.pm:725
-#, c-format
-msgid "Russia"
-msgstr "Rusija"
-
-#: crypto.pm:39 crypto.pm:73 lang.pm:382 network/adsl_consts.pm:882
-#, c-format
-msgid "Sweden"
-msgstr "Švedska"
-
-#: crypto.pm:40 crypto.pm:70 lang.pm:387
-#, c-format
-msgid "Slovakia"
-msgstr "Slovačka"
-
-#: crypto.pm:41 crypto.pm:76 lang.pm:401 network/adsl_consts.pm:920
-#, c-format
-msgid "Thailand"
-msgstr "Tajland"
-
-#: crypto.pm:42 crypto.pm:75 lang.pm:411
-#, c-format
-msgid "Taiwan"
-msgstr "Tajvan"
-
-#: crypto.pm:43 crypto.pm:71 lang.pm:430 standalone/drakxtv:49
-#, c-format
-msgid "South Africa"
-msgstr "Južna Afrika"
-
-#: crypto.pm:77 crypto.pm:112 lang.pm:416 network/netconnect.pm:45
-#, c-format
-msgid "United States"
-msgstr "SAD"
+msgid "command %s missing"
+msgstr "naredba %s nedostaje"
#: diskdrake/dav.pm:17
#, c-format
@@ -2100,23 +1142,46 @@ msgstr ""
msgid "New"
msgstr "Novi"
-#: diskdrake/dav.pm:61 diskdrake/interactive.pm:456 diskdrake/smbnfs_gtk.pm:74
+#: diskdrake/dav.pm:61 diskdrake/interactive.pm:449 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Demontiraj"
-#: diskdrake/dav.pm:62 diskdrake/interactive.pm:453 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:62 diskdrake/interactive.pm:446 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Montiraj"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:447
-#: diskdrake/interactive.pm:679 diskdrake/interactive.pm:698
-#: diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:78
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:440
+#: diskdrake/interactive.pm:670 diskdrake/interactive.pm:688
+#: diskdrake/interactive.pm:692 diskdrake/removable.pm:23
+#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Tačka montiranja"
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:442
+#: diskdrake/interactive.pm:1047 diskdrake/removable.pm:24
+#: diskdrake/smbnfs_gtk.pm:80
+#, c-format
+msgid "Options"
+msgstr "Opcije"
+
+#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:229
+#: diskdrake/interactive.pm:242 diskdrake/interactive.pm:398
+#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:547
+#: diskdrake/interactive.pm:552 diskdrake/interactive.pm:660
+#: diskdrake/interactive.pm:922 diskdrake/interactive.pm:1092
+#: diskdrake/interactive.pm:1105 diskdrake/interactive.pm:1108
+#: diskdrake/interactive.pm:1348 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:19
+#: do_pkgs.pm:24 do_pkgs.pm:40 do_pkgs.pm:56 do_pkgs.pm:61 fsedit.pm:229
+#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
+#: scanner.pm:94 scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95
+#: wizards.pm:99 wizards.pm:121
+#, c-format
+msgid "Error"
+msgstr "Greška"
+
#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
@@ -2132,33 +1197,48 @@ msgstr "URL mora počinjati sa http:// ili https://"
msgid "Server: "
msgstr "Server:"
-#: diskdrake/dav.pm:110 diskdrake/interactive.pm:523
-#: diskdrake/interactive.pm:1218 diskdrake/interactive.pm:1296
+#: diskdrake/dav.pm:110 diskdrake/interactive.pm:520
+#: diskdrake/interactive.pm:1230 diskdrake/interactive.pm:1308
#, c-format
msgid "Mount point: "
msgstr "Tačka montiranja: "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1303
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1315
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"
-#: diskdrake/hd_gtk.pm:52 diskdrake/interactive.pm:293
-#: diskdrake/smbnfs_gtk.pm:21 install_interactive.pm:63
-#: install_interactive.pm:217 install_interactive.pm:223
-#: install_interactive.pm:276 install_interactive.pm:281
-#: install_steps_interactive.pm:253 install_steps_interactive.pm:317
-#: steps.pm:21
+#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:286
+#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
+#: fs/partitioning_wizard.pm:47 fs/partitioning_wizard.pm:201
+#: fs/partitioning_wizard.pm:207 fs/partitioning_wizard.pm:247
+#: fs/partitioning_wizard.pm:266 fs/partitioning_wizard.pm:271
#, c-format
msgid "Partitioning"
msgstr "Particioniranje"
-#: diskdrake/hd_gtk.pm:92
+#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1067
+#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1130
+#, c-format
+msgid "Read carefully!"
+msgstr "Pročitajte pažljivo!"
+
+#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr "Predlažemo da najprije napravite backup vaših podataka"
-#: diskdrake/hd_gtk.pm:95
+#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:222
+#, c-format
+msgid "Exit"
+msgstr "Izlaz"
+
+#: diskdrake/hd_gtk.pm:94
+#, c-format
+msgid "Continue"
+msgstr "Nastavak"
+
+#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
@@ -2169,17 +1249,18 @@ msgstr ""
"(2048 sektora je dovoljno)\n"
"na početku diska"
-#: diskdrake/hd_gtk.pm:152 help.pm:531
+#: diskdrake/hd_gtk.pm:162 interactive.pm:640 interactive/gtk.pm:719
+#: interactive/gtk.pm:740 interactive/gtk.pm:760 ugtk2.pm:923 ugtk2.pm:924
#, c-format
-msgid "Wizard"
-msgstr "Čarobnjak"
+msgid "Help"
+msgstr "Pomoć"
-#: diskdrake/hd_gtk.pm:185
+#: diskdrake/hd_gtk.pm:197
#, c-format
msgid "Choose action"
msgstr "Izaberi akciju"
-#: diskdrake/hd_gtk.pm:189
+#: diskdrake/hd_gtk.pm:201
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -2190,148 +1271,162 @@ msgstr ""
"Predlažem da najprije promijenite veličinu te particije\n"
"(kliknite na nju, zatim na \"Promijeni veličinu\")"
-#: diskdrake/hd_gtk.pm:191
+#: diskdrake/hd_gtk.pm:203
#, c-format
msgid "Please click on a partition"
msgstr "Kliknite na particiju"
-#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:457
-#: standalone/drakbackup:3088 standalone/drakbackup:3148
+#: diskdrake/hd_gtk.pm:217 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Detalji"
-#: diskdrake/hd_gtk.pm:251
+#: diskdrake/hd_gtk.pm:265
#, c-format
msgid "No hard drives found"
msgstr "Nije pronađen nijedan hard disk"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:292
+#, c-format
+msgid "Unknown"
+msgstr "Nepoznat"
+
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Ext2"
msgstr "Ext2"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Journalised FS"
msgstr "Journalised FS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "SunOS"
msgstr "SunOS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "HFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1233
+#: diskdrake/hd_gtk.pm:352 services.pm:149
+#, c-format
+msgid "Other"
+msgstr "Ostalo"
+
+#: diskdrake/hd_gtk.pm:352 diskdrake/interactive.pm:1244
#, c-format
msgid "Empty"
msgstr "Prazno"
-#: diskdrake/hd_gtk.pm:340
+#: diskdrake/hd_gtk.pm:356
#, c-format
msgid "Filesystem types:"
msgstr "Tipovi file sistema:"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:359 diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:291
+#: diskdrake/interactive.pm:392 diskdrake/interactive.pm:428
+#: diskdrake/interactive.pm:577 diskdrake/interactive.pm:751
+#: diskdrake/interactive.pm:809 diskdrake/interactive.pm:902
+#: diskdrake/interactive.pm:944 diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:1173 diskdrake/interactive.pm:1211
+#: diskdrake/interactive.pm:1347 do_pkgs.pm:16 do_pkgs.pm:35 do_pkgs.pm:53
+#: harddrake/sound.pm:279
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Koristi ``%s'' umjesto toga"
+msgid "Warning"
+msgstr "Upozorenje"
-#: diskdrake/hd_gtk.pm:357 diskdrake/interactive.pm:472
+#: diskdrake/hd_gtk.pm:380
#, c-format
-msgid "Create"
-msgstr "Kreiraj"
+msgid "This partition is already empty"
+msgstr "Ova particija je već prazna"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:365
-#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:625
-#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
-#: standalone/harddrake2:108 standalone/harddrake2:117
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Type"
-msgstr "Tip"
+msgid "Use ``Unmount'' first"
+msgstr "Najprije koristite \"Demontiraj\""
-#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: diskdrake/hd_gtk.pm:359 diskdrake/interactive.pm:457
-#: standalone/drakperm:123 standalone/printerdrake:248
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Delete"
-msgstr "Obriši"
+msgid "Use ``%s'' instead"
+msgstr "Koristi \"%s\" umjesto toga"
-#: diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:389 diskdrake/interactive.pm:441
+#: diskdrake/interactive.pm:611 diskdrake/interactive.pm:1083
+#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Najprije koristite ``Demontiraj''"
+msgid "Type"
+msgstr "Vrsta"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose another partition"
msgstr "Izaberi drugu particiju"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose a partition"
msgstr "Izaberi particiju"
-#: diskdrake/interactive.pm:224
-#, c-format
-msgid "Exit"
-msgstr "Izlaz"
-
-#: diskdrake/interactive.pm:257 help.pm:531
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Undo"
msgstr "Poništi"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to normal mode"
msgstr "Prebaci u normalni mod"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to expert mode"
msgstr "Prebaci u ekspertni mod"
-#: diskdrake/interactive.pm:276
+#: diskdrake/interactive.pm:269 diskdrake/interactive.pm:279
+#: diskdrake/interactive.pm:1158
+#, c-format
+msgid "Confirmation"
+msgstr "Potvrda"
+
+#: diskdrake/interactive.pm:269
#, c-format
msgid "Continue anyway?"
msgstr "Svejedno nastavljate?"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without saving"
msgstr "Izlaz bez spašavanja"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Izlazite bez pisanja tabele particija?"
-#: diskdrake/interactive.pm:286
+#: diskdrake/interactive.pm:279
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Želite li spasiti izmjene u /etc/fstab ?"
-#: diskdrake/interactive.pm:293 install_steps_interactive.pm:317
+#: diskdrake/interactive.pm:286 fs/partitioning_wizard.pm:247
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Moraćete rebootati da bi izmjene tabele particija stupile na snagu"
-#: diskdrake/interactive.pm:298
+#: diskdrake/interactive.pm:291
#, c-format
msgid ""
"You should format partition %s.\n"
@@ -2342,38 +1437,38 @@ msgstr ""
"U suprotnom tačka montiranja %s neće biti zapisana u fstab.\n"
"Da svejedno izađem?"
-#: diskdrake/interactive.pm:311 help.pm:531
+#: diskdrake/interactive.pm:304
#, c-format
msgid "Clear all"
msgstr "Obriši sve"
-#: diskdrake/interactive.pm:312 help.pm:531
+#: diskdrake/interactive.pm:305
#, c-format
msgid "Auto allocate"
msgstr "Auto alokacija"
-#: diskdrake/interactive.pm:313 help.pm:531 help.pm:567 help.pm:607
-#: help.pm:856 install_steps_interactive.pm:98
+#: diskdrake/interactive.pm:306 diskdrake/interactive.pm:360
+#: interactive/curses.pm:457
#, c-format
msgid "More"
msgstr "Još"
-#: diskdrake/interactive.pm:318
+#: diskdrake/interactive.pm:311
#, c-format
msgid "Hard drive information"
msgstr "Informacije o hard disku"
-#: diskdrake/interactive.pm:350
+#: diskdrake/interactive.pm:343
#, c-format
msgid "All primary partitions are used"
msgstr "Sve primarne particije su u upotrebi"
-#: diskdrake/interactive.pm:351
+#: diskdrake/interactive.pm:344
#, c-format
msgid "I can not add any more partitions"
msgstr "Ne mogu dodati više particija"
-#: diskdrake/interactive.pm:352
+#: diskdrake/interactive.pm:345
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
@@ -2382,141 +1477,151 @@ msgstr ""
"Da biste imali još particija, molim pobrišite jednu kako bi se mogla "
"kreirati extended particija"
-#: diskdrake/interactive.pm:361
+#: diskdrake/interactive.pm:354
#, c-format
msgid "No supermount"
-msgstr ""
+msgstr "Bez supermounta"
-#: diskdrake/interactive.pm:362
+#: diskdrake/interactive.pm:355
#, c-format
msgid "Supermount"
-msgstr ""
+msgstr "Supermount"
-#: diskdrake/interactive.pm:363
+#: diskdrake/interactive.pm:356
#, c-format
msgid "Supermount except for CDROM drives"
-msgstr ""
+msgstr "Supermount osim za CD-ROM uređaje"
-#: diskdrake/interactive.pm:369 help.pm:531
+#: diskdrake/interactive.pm:362
#, c-format
msgid "Save partition table"
msgstr "Snimi tabelu particija"
-#: diskdrake/interactive.pm:370 help.pm:531
+#: diskdrake/interactive.pm:363
#, c-format
msgid "Restore partition table"
msgstr "Vrati tabelu particija"
-#: diskdrake/interactive.pm:371 help.pm:531
+#: diskdrake/interactive.pm:364
#, c-format
msgid "Rescue partition table"
msgstr "Spasi tabelu particija"
-#: diskdrake/interactive.pm:373 help.pm:531
+#: diskdrake/interactive.pm:366
#, c-format
msgid "Reload partition table"
msgstr "Ponovo učitaj tabelu particija"
-#: diskdrake/interactive.pm:375
+#: diskdrake/interactive.pm:368
#, c-format
msgid "Removable media automounting"
-msgstr "Automatsko montiranje izmjenjivog medija"
+msgstr "Automatsko montiranje izmjenjivih medija"
-#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:414
+#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:407
#, c-format
msgid "Select file"
msgstr "Izaberite datoteku"
-#: diskdrake/interactive.pm:400
+#: diskdrake/interactive.pm:393
#, c-format
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
"Backup tabela particija nema istu veličinu\n"
-"Ipak nastavljate?"
+"Da svejedno nastavim?"
-#: diskdrake/interactive.pm:429
+#: diskdrake/interactive.pm:422
#, c-format
msgid "Trying to rescue partition table"
msgstr "Pokušavam da spasim tabelu particija"
-#: diskdrake/interactive.pm:435
+#: diskdrake/interactive.pm:428
#, c-format
msgid "Detailed information"
msgstr "Detaljne informacije"
-#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:444 diskdrake/interactive.pm:764
#, c-format
msgid "Resize"
msgstr "Smanji"
-#: diskdrake/interactive.pm:452
+#: diskdrake/interactive.pm:445
#, c-format
msgid "Format"
msgstr "Formatiraj"
-#: diskdrake/interactive.pm:454
+#: diskdrake/interactive.pm:447 diskdrake/interactive.pm:850
#, c-format
msgid "Add to RAID"
msgstr "Dodaj na RAID"
-#: diskdrake/interactive.pm:455
+#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:867
#, c-format
msgid "Add to LVM"
msgstr "Dodaj na LVM"
-#: diskdrake/interactive.pm:458
+#: diskdrake/interactive.pm:450
+#, c-format
+msgid "Delete"
+msgstr "Obriši"
+
+#: diskdrake/interactive.pm:451
#, c-format
msgid "Remove from RAID"
msgstr "Ukloni sa RAIDa"
-#: diskdrake/interactive.pm:459
+#: diskdrake/interactive.pm:452
#, c-format
msgid "Remove from LVM"
msgstr "Ukloni sa LVMa"
-#: diskdrake/interactive.pm:460
+#: diskdrake/interactive.pm:453
#, c-format
msgid "Modify RAID"
msgstr "Modificiraj RAID"
-#: diskdrake/interactive.pm:461
+#: diskdrake/interactive.pm:454
#, c-format
msgid "Use for loopback"
msgstr "Koristi za loopback"
-#: diskdrake/interactive.pm:516
+#: diskdrake/interactive.pm:465
+#, c-format
+msgid "Create"
+msgstr "Kreiraj"
+
+#: diskdrake/interactive.pm:509 diskdrake/interactive.pm:511
#, c-format
msgid "Create a new partition"
msgstr "Napravi novu particiju"
-#: diskdrake/interactive.pm:519
+#: diskdrake/interactive.pm:513
#, c-format
msgid "Start sector: "
msgstr "Početni sektor: "
-#: diskdrake/interactive.pm:521 diskdrake/interactive.pm:938
+#: diskdrake/interactive.pm:516 diskdrake/interactive.pm:937
#, c-format
msgid "Size in MB: "
msgstr "Veličina u MB: "
-#: diskdrake/interactive.pm:522 diskdrake/interactive.pm:939
+#: diskdrake/interactive.pm:518 diskdrake/interactive.pm:938
#, c-format
msgid "Filesystem type: "
msgstr "Tip datotečnog sistema: "
-#: diskdrake/interactive.pm:527
+#: diskdrake/interactive.pm:524
#, c-format
msgid "Preference: "
msgstr "Preference: "
-#: diskdrake/interactive.pm:530
+#: diskdrake/interactive.pm:527
#, c-format
msgid "Logical volume name "
msgstr "Naziv logičkog volumena "
-#: diskdrake/interactive.pm:560
+#: diskdrake/interactive.pm:547
#, c-format
msgid ""
"You can not create a new partition\n"
@@ -2528,12 +1633,12 @@ msgstr ""
"Najprije uklonite primarnu particiju i napravite extended (proširenu) "
"particiju."
-#: diskdrake/interactive.pm:590
+#: diskdrake/interactive.pm:577
#, c-format
msgid "Remove the loopback file?"
msgstr "Ukloniti loopback datoteku?"
-#: diskdrake/interactive.pm:609
+#: diskdrake/interactive.pm:596
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -2541,37 +1646,42 @@ msgstr ""
"Nakon promjene tipa particije %s, svi podaci na toj particiji će biti "
"izgubljeni"
-#: diskdrake/interactive.pm:621
+#: diskdrake/interactive.pm:608
#, c-format
msgid "Change partition type"
msgstr "Izmjena tipa particije"
-#: diskdrake/interactive.pm:622 diskdrake/removable.pm:47
+#: diskdrake/interactive.pm:610 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Koji datotečni sistem želite?"
-#: diskdrake/interactive.pm:630
+#: diskdrake/interactive.pm:617
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "Prebacujem sa ext2 na ext3"
-#: diskdrake/interactive.pm:650
+#: diskdrake/interactive.pm:637 diskdrake/interactive.pm:640
#, c-format
msgid "Which volume label?"
-msgstr ""
+msgstr "Naziv za disk/particiju"
+
+#: diskdrake/interactive.pm:641
+#, c-format
+msgid "Label:"
+msgstr "Naziv:"
-#: diskdrake/interactive.pm:666
+#: diskdrake/interactive.pm:655
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Gdje želite montirati loopback datoteku %s?"
-#: diskdrake/interactive.pm:667
+#: diskdrake/interactive.pm:656
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Gdje želite montirati uređaj %s?"
-#: diskdrake/interactive.pm:672
+#: diskdrake/interactive.pm:661
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
@@ -2581,49 +1691,59 @@ msgstr ""
"loopback.\n"
"Najprije uklonite loopback"
-#: diskdrake/interactive.pm:697
+#: diskdrake/interactive.pm:691
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Gdje želite montirati uređaj %s?"
-#: diskdrake/interactive.pm:721 diskdrake/interactive.pm:800
-#: install_interactive.pm:157 install_interactive.pm:189
+#: diskdrake/interactive.pm:715 diskdrake/interactive.pm:798
+#: fs/partitioning_wizard.pm:141 fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing"
msgstr "Mijenjam veličinu"
-#: diskdrake/interactive.pm:721
+#: diskdrake/interactive.pm:715
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Izračunavam granice FAT filesistema"
-#: diskdrake/interactive.pm:757
+#: diskdrake/interactive.pm:751
#, c-format
msgid "This partition is not resizeable"
msgstr "Ovoj particiji ne možete mijenjati veličinu"
-#: diskdrake/interactive.pm:762
+#: diskdrake/interactive.pm:756
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Svi podaci na ovoj particiji bi trebali biti backupovani"
-#: diskdrake/interactive.pm:764
+#: diskdrake/interactive.pm:758
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Nakon promjene veličine particije %s, svi podaci na njoj će biti izgubljeni"
-#: diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:765
#, c-format
msgid "Choose the new size"
msgstr "Izaberite novu veličinu"
-#: diskdrake/interactive.pm:770
+#: diskdrake/interactive.pm:766
#, c-format
msgid "New size in MB: "
msgstr "Nova veličina u MB: "
-#: diskdrake/interactive.pm:811 install_interactive.pm:197
+#: diskdrake/interactive.pm:767
+#, c-format
+msgid "Minimum size: %s MB"
+msgstr "Minimalna veličina: %s MB"
+
+#: diskdrake/interactive.pm:768
+#, c-format
+msgid "Maximum size: %s MB"
+msgstr "Maksimalna veličina: %s MB"
+
+#: diskdrake/interactive.pm:809 fs/partitioning_wizard.pm:181
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
@@ -2633,243 +1753,253 @@ msgstr ""
"prilikom idućeg pokretanja Windows(TM) biće izvršena provjera datotečnog "
"sistema"
-#: diskdrake/interactive.pm:852
+#: diskdrake/interactive.pm:850
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Izaberite postojeći RAID na koji ćete dodati"
-#: diskdrake/interactive.pm:854 diskdrake/interactive.pm:871
+#: diskdrake/interactive.pm:852 diskdrake/interactive.pm:869
#, c-format
msgid "new"
msgstr "novi"
-#: diskdrake/interactive.pm:869
+#: diskdrake/interactive.pm:867
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Izaberite postojeći LVM na koji ćete dodati"
-#: diskdrake/interactive.pm:875
+#: diskdrake/interactive.pm:874
#, c-format
msgid "LVM name?"
msgstr "Naziv LVMa?"
-#: diskdrake/interactive.pm:903
+#: diskdrake/interactive.pm:902
#, 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 ""
+"Fizički volumen %s se još uvijek koristi.\n"
+"Želite li premjestiti korištene fizičke extents sa ovog volumena na druge "
+"volumene?"
-#: diskdrake/interactive.pm:905
+#: diskdrake/interactive.pm:904
#, c-format
msgid "Moving physical extents"
-msgstr ""
+msgstr "Pomjeram fizičke extents"
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:922
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Ova particija se ne može koristiti za loopback"
-#: diskdrake/interactive.pm:936
+#: diskdrake/interactive.pm:935
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: diskdrake/interactive.pm:937
+#: diskdrake/interactive.pm:936
#, c-format
msgid "Loopback file name: "
msgstr "Naziv loopback datoteke: "
-#: diskdrake/interactive.pm:942
+#: diskdrake/interactive.pm:941
#, c-format
msgid "Give a file name"
msgstr "Dajte naziv datoteke"
-#: diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:944
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Datoteku već koristi drugi loopback, izaberite neku drugu"
-#: diskdrake/interactive.pm:946
+#: diskdrake/interactive.pm:945
#, c-format
msgid "File already exists. Use it?"
msgstr "Datoteka već postoji. Želite li je koristiti?"
-#: diskdrake/interactive.pm:969
+#: diskdrake/interactive.pm:974 diskdrake/interactive.pm:977
#, c-format
msgid "Mount options"
msgstr "Opcije montiranja"
-#: diskdrake/interactive.pm:976
+#: diskdrake/interactive.pm:984
#, c-format
msgid "Various"
msgstr "Razno"
-#: diskdrake/interactive.pm:1044
+#: diskdrake/interactive.pm:1049
#, c-format
msgid "device"
msgstr "uređaj"
-#: diskdrake/interactive.pm:1045
+#: diskdrake/interactive.pm:1050
#, c-format
msgid "level"
msgstr "nivo"
-#: diskdrake/interactive.pm:1046
+#: diskdrake/interactive.pm:1051
#, c-format
msgid "chunk size in KiB"
msgstr "veličina chunka u KiB"
-#: diskdrake/interactive.pm:1063
+#: diskdrake/interactive.pm:1068
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Budite oprezni: ova operacija je opasna."
-#: diskdrake/interactive.pm:1078
+#: diskdrake/interactive.pm:1083
#, c-format
msgid "What type of partitioning?"
msgstr "Koju vrstu particioniranja?"
-#: diskdrake/interactive.pm:1116
+#: diskdrake/interactive.pm:1121
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Biće potrebno da rebootate prije nego što izmjene mogu stupiti na snagu"
-#: diskdrake/interactive.pm:1125
+#: diskdrake/interactive.pm:1130
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tabela particija za uređaj %s će biti zapisana na disk!"
-#: diskdrake/interactive.pm:1148
+#: diskdrake/interactive.pm:1153
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nakon formatiranja particije %s, svi podaci na toj particiji će biti "
"izgubljeni"
-#: diskdrake/interactive.pm:1164
+#: diskdrake/interactive.pm:1158 fs/partitioning.pm:49
+#, c-format
+msgid "Check bad blocks?"
+msgstr "Provjeri loše blokove?"
+
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Move files to the new partition"
msgstr "Prebaci datoteke na novu particiju"
-#: diskdrake/interactive.pm:1164 standalone/draksambashare:81
-#: standalone/draksambashare:144
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Hide files"
msgstr "Sakrij datoteke"
-#: diskdrake/interactive.pm:1165
+#: diskdrake/interactive.pm:1173
#, c-format
msgid ""
"Directory %s already contains data\n"
-"(%s)"
+"(%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 ""
-"Direktorij %s već sadrži neke podatke\n"
-"(%s)"
+"Direktorij %s već sadrži podatke\n"
+"(%s)\n"
+"\n"
+"Možete izabrati da premjestite datoteke u particiju koja će biti montirana "
+"na to mjesto ili da ih ostavite gdje jesu (u kojem slučaju će oni biti "
+"sakriveni sadržajem montirane particije)"
-#: diskdrake/interactive.pm:1176
+#: diskdrake/interactive.pm:1188
#, c-format
msgid "Moving files to the new partition"
msgstr "Premještam datoteke na novu particiju"
-#: diskdrake/interactive.pm:1180
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "Copying %s"
msgstr "Kopiram %s"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1196
#, c-format
msgid "Removing %s"
msgstr "Uklanjam %s"
-#: diskdrake/interactive.pm:1198
+#: diskdrake/interactive.pm:1210
#, c-format
msgid "partition %s is now known as %s"
msgstr "particija %s je od sada poznata kao %s"
-#: diskdrake/interactive.pm:1199
+#: diskdrake/interactive.pm:1211
#, c-format
msgid "Partitions have been renumbered: "
msgstr "Oznake particija su promijenjene: "
-#: diskdrake/interactive.pm:1219 diskdrake/interactive.pm:1281
+#: diskdrake/interactive.pm:1231 diskdrake/interactive.pm:1293
#, c-format
msgid "Device: "
msgstr "Uređaj: "
-#: diskdrake/interactive.pm:1220
-#, c-format
-msgid "Devfs name: "
-msgstr "Devfs ime: "
-
-#: diskdrake/interactive.pm:1221
+#: diskdrake/interactive.pm:1232
#, c-format
msgid "Volume label: "
-msgstr "Oznaka volumena: "
+msgstr "Naziv volumena: "
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1233
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS slovo uređaja: %s (pretpostavka)\n"
-#: diskdrake/interactive.pm:1226 diskdrake/interactive.pm:1235
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1237 diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1311
#, c-format
msgid "Type: "
-msgstr "Tip: "
+msgstr "Vrsta: "
-#: diskdrake/interactive.pm:1230 install_steps_gtk.pm:300
+#: diskdrake/interactive.pm:1241
#, c-format
msgid "Name: "
msgstr "Ime: "
-#: diskdrake/interactive.pm:1237
+#: diskdrake/interactive.pm:1248
#, c-format
msgid "Start: sector %s\n"
msgstr "Početak: sector %s\n"
-#: diskdrake/interactive.pm:1238
+#: diskdrake/interactive.pm:1249
#, c-format
msgid "Size: %s"
msgstr "Veličina: %s"
-#: diskdrake/interactive.pm:1240
+#: diskdrake/interactive.pm:1251
#, c-format
msgid ", %s sectors"
msgstr ", %s sektora"
-#: diskdrake/interactive.pm:1242
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindar %d do %d\n"
-#: diskdrake/interactive.pm:1243
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Number of logical extents: %d\n"
-msgstr ""
+msgstr "Broj logičkih extents: %d\n"
-#: diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Formatted\n"
msgstr "Formatirana\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "Not formatted\n"
msgstr "Nije formatirana\n"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Mounted\n"
msgstr "Montirana\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1252
+#: diskdrake/interactive.pm:1263
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2878,36 +2008,36 @@ msgstr ""
"Loopback datoteka(e):\n"
" %s\n"
-#: diskdrake/interactive.pm:1253
+#: diskdrake/interactive.pm:1264
#, c-format
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"Particija koja se boota po defaultu\n"
-" (za MS-DOS boot, ne za lilo)\n"
+"Particija na kojoj se nalazi sistem\n"
+" (za MS-DOS/Windows)\n"
-#: diskdrake/interactive.pm:1255
+#: diskdrake/interactive.pm:1266
#, c-format
msgid "Level %s\n"
msgstr "Nivo %s\n"
-#: diskdrake/interactive.pm:1256
+#: diskdrake/interactive.pm:1267
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Veličina chunka %d KiB\n"
-#: diskdrake/interactive.pm:1257
+#: diskdrake/interactive.pm:1268
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskovi %s\n"
-#: diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1270
#, c-format
msgid "Loopback file name: %s"
msgstr "Naziv loopback datoteke: %s"
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1273
#, c-format
msgid ""
"\n"
@@ -2920,7 +2050,7 @@ msgstr ""
"particija Driver particija. Vjerovatno\n"
"biste je trebali ostaviti na miru.\n"
-#: diskdrake/interactive.pm:1265
+#: diskdrake/interactive.pm:1276
#, c-format
msgid ""
"\n"
@@ -2931,78 +2061,81 @@ msgstr ""
"\n"
"Ova posebna Bootstrap\n"
"particija je za\n"
-"dvojni boot vašeg sistema.\n"
+"višestruki boot vašeg sistema.\n"
-#: diskdrake/interactive.pm:1282
+#: diskdrake/interactive.pm:1285
+#, c-format
+msgid "Empty space on %s (%s)"
+msgstr ""
+
+#: diskdrake/interactive.pm:1294
#, c-format
msgid "Read-only"
msgstr "Samo za čitanje"
-#: diskdrake/interactive.pm:1283
+#: diskdrake/interactive.pm:1295
#, c-format
msgid "Size: %s\n"
msgstr "Veličina: %s\n"
-#: diskdrake/interactive.pm:1284
+#: diskdrake/interactive.pm:1296
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindara, %s glava, %s sektora\n"
-#: diskdrake/interactive.pm:1285 network/thirdparty.pm:331
+#: diskdrake/interactive.pm:1297
#, c-format
msgid "Info: "
msgstr "Info: "
-#: diskdrake/interactive.pm:1286
+#: diskdrake/interactive.pm:1298
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskovi %s\n"
-#: diskdrake/interactive.pm:1287
+#: diskdrake/interactive.pm:1299
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tip tabele particija: %s\n"
-#: diskdrake/interactive.pm:1288
+#: diskdrake/interactive.pm:1300
#, c-format
msgid "on channel %d id %d\n"
msgstr "na kanalu %d id %d\n"
-#: diskdrake/interactive.pm:1331
+#: diskdrake/interactive.pm:1343
#, c-format
msgid "Filesystem encryption key"
msgstr "Ključ za kodiranje datotečnog sistema"
-#: diskdrake/interactive.pm:1332
+#: diskdrake/interactive.pm:1344
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Izaberite vaš ključ za kodiranje datotečnog sistema"
-#: diskdrake/interactive.pm:1335
+#: diskdrake/interactive.pm:1347
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ovaj ključ enkripcije je previše jednostavan (mora imati najmanje %d "
"karaktera)"
-#: diskdrake/interactive.pm:1336
+#: diskdrake/interactive.pm:1348
#, c-format
msgid "The encryption keys do not match"
msgstr "Ključevi enkripcije se ne poklapaju"
-#: diskdrake/interactive.pm:1339 network/netconnect.pm:1073
-#: standalone/drakconnect:419 standalone/drakroam:120
+#: diskdrake/interactive.pm:1351
#, c-format
msgid "Encryption key"
msgstr "Ključ enkripcije"
-#: diskdrake/interactive.pm:1340
+#: diskdrake/interactive.pm:1352
#, c-format
msgid "Encryption key (again)"
msgstr "Ključ enkripcije (još jednom)"
-#: diskdrake/interactive.pm:1342 standalone/drakvpn:1017
-#: standalone/drakvpn:1102
+#: diskdrake/interactive.pm:1354
#, c-format
msgid "Encryption algorithm"
msgstr "Algoritam enkripcije"
@@ -3012,27 +2145,35 @@ msgstr "Algoritam enkripcije"
msgid "Change type"
msgstr "Promijeni tip"
-#: diskdrake/smbnfs_gtk.pm:163
+#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:539
+#: interactive/curses.pm:214 interactive/http.pm:104 interactive/http.pm:160
+#: interactive/stdio.pm:39 interactive/stdio.pm:142 ugtk2.pm:404 ugtk2.pm:506
+#: ugtk2.pm:515 ugtk2.pm:788
+#, c-format
+msgid "Cancel"
+msgstr "Odustani"
+
+#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr "Ne mogu se prijaviti koristeći korisničko ime %s (pogrešna šifa?)"
-#: diskdrake/smbnfs_gtk.pm:167 diskdrake/smbnfs_gtk.pm:176
+#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Potrebna je autentikacija na domeni"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Koje korisničko ime"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Još jedan"
-#: diskdrake/smbnfs_gtk.pm:177
+#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
@@ -3040,85 +2181,82 @@ msgstr ""
"Molim unesite vaše korisničko ime, šifru i domen da biste pristupili ovom "
"računaru."
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3640
+#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Korisničko ime"
-#: diskdrake/smbnfs_gtk.pm:205
+#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Traži servere"
-#: diskdrake/smbnfs_gtk.pm:210
+#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr "Traži nove servere"
-#: do_pkgs.pm:16 do_pkgs.pm:49
+#: do_pkgs.pm:16 do_pkgs.pm:53
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s treba biti instaliran. Da li ga želite instalirati?"
-#: do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:52 printer/printerdrake.pm:3948
+#: do_pkgs.pm:19 do_pkgs.pm:40 do_pkgs.pm:56
#, c-format
msgid "Could not install the %s package!"
msgstr "Ne mogu instalirati paket %s!"
-#: do_pkgs.pm:24 do_pkgs.pm:57
+#: do_pkgs.pm:24 do_pkgs.pm:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Nedostaje obavezan paket %s"
-#: do_pkgs.pm:35 harddrake/sound.pm:278 install_steps_interactive.pm:1288
-#: keyboard.pm:381 network/ndiswrapper.pm:95 network/netconnect.pm:471
-#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2495
-#: printer/printerdrake.pm:2632 printer/printerdrake.pm:2953
-#: printer/printerdrake.pm:2960 printer/printerdrake.pm:3947
-#: printer/printerdrake.pm:4211 printer/printerdrake.pm:4330
-#: printer/printerdrake.pm:5487 standalone/drakTermServ:354
-#: standalone/drakTermServ:1267 standalone/drakTermServ:1328
-#: standalone/drakTermServ:2006 standalone/drakbackup:510
-#: standalone/drakbackup:609 standalone/drakboot:133 standalone/drakclock:224
-#: standalone/drakconnect:973 standalone/drakfont:679 standalone/drakperm:380
-#: standalone/drakperm:390 standalone/drakups:27 standalone/harddrake2:510
-#: standalone/harddrake2:526 standalone/localedrake:43
-#: standalone/scannerdrake:51 standalone/scannerdrake:957
-#, c-format
-msgid "Warning"
-msgstr "Upozorenje"
-
-#: do_pkgs.pm:35 standalone/harddrake2:526
+#: do_pkgs.pm:35
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Sljedeći paketi trebaju biti instalirani:\n"
-#: do_pkgs.pm:205
+#: do_pkgs.pm:209
#, c-format
msgid "Installing packages..."
msgstr "Instaliram pakete..."
-#: do_pkgs.pm:252
+#: do_pkgs.pm:255
#, c-format
msgid "Removing packages..."
msgstr "Uklanjam pakete..."
-#: fs/format.pm:58 fs/format.pm:65
+#: fs/any.pm:17
+#, c-format
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Došlo je do greške - nije pronađen nijedan ispravan uređaj na kojem se mogu "
+"kreirati novi file sistemi. Molim provjerite vaš hardware i pronađite uzrok "
+"greške"
+
+#: fs/any.pm:62 fs/partitioning_wizard.pm:55
+#, c-format
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Morate imati FAT particiju montiranu na /boot/efi"
+
+#: fs/format.pm:59 fs/format.pm:66
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiram particiju %s"
-#: fs/format.pm:62
+#: fs/format.pm:63
#, c-format
msgid "Creating and formatting file %s"
msgstr "Kreiram i formatiram datoteku %s"
-#: fs/format.pm:115
+#: fs/format.pm:116
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "Ne znam kako formatirati %s kao tip %s"
-#: fs/format.pm:120 fs/format.pm:122
+#: fs/format.pm:121 fs/format.pm:123
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatiranje %s nije uspjelo"
@@ -3128,40 +2266,41 @@ msgstr "%s formatiranje %s nije uspjelo"
msgid "Circular mounts %s\n"
msgstr "Kružno montiranje %s\n"
-#: fs/mount.pm:74
+#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "Montiram particiju %s"
-#: fs/mount.pm:75
+#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montiranje particije %s u direktoriju %s nije uspjelo"
-#: fs/mount.pm:80 fs/mount.pm:97
+#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "Provjeravam %s"
-#: fs/mount.pm:113 partition_table.pm:385
+#: fs/mount.pm:118 partition_table.pm:384
#, c-format
msgid "error unmounting %s: %s"
msgstr "greška u demontiranju %s: %s"
-#: fs/mount.pm:142
+#: fs/mount.pm:133
#, c-format
msgid "Enabling swap partition %s"
msgstr "Uključujem swap particiju %s"
#: fs/mount_options.pm:113
-#, fuzzy, c-format
+#, c-format
msgid "Use an encrypted file system"
-msgstr "Ne možete koristiti šifrovani datotečni sistem za tačku montiranja %s"
+msgstr "Koristi šifrovani datotečni sistem"
#: fs/mount_options.pm:115
#, c-format
msgid "Enable group disk quota accounting and optionally enforce limits"
msgstr ""
+"Aktiviraj praćenje grupnih kvota na disku i eventualnu primjenu ograničenja"
#: fs/mount_options.pm:117
#, c-format
@@ -3220,35 +2359,315 @@ msgstr "Sav U/I na datotečni sistem se treba izvršavati sinhrono."
#: fs/mount_options.pm:139
#, c-format
-msgid "Allow an ordinary user to mount the file system."
-msgstr ""
+msgid "Allow every user to mount and umount the file system."
+msgstr "Dozvoli svakom korisniku da (de)montira datotečni sistem."
#: fs/mount_options.pm:141
#, c-format
-msgid "Enable user disk quota accounting, and optionally enforce limits"
-msgstr ""
+msgid "Allow an ordinary user to mount the file system."
+msgstr "Dozvoli običnom korisniku da montira datotečni sistem."
#: fs/mount_options.pm:143
#, c-format
-msgid "Support user. extended attributes"
+msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""
+"Aktiviraj praćenje korisničkih kvota na disku i eventualnu primjenu "
+"ograničenja"
#: fs/mount_options.pm:145
#, c-format
+msgid "Support \"user.\" extended attributes"
+msgstr "Podrži \"user.\" proširene atribute"
+
+#: fs/mount_options.pm:147
+#, c-format
msgid "Give write access to ordinary users"
msgstr "Daj dozvolu za pisanje običnim korisnicima"
-#: fs/mount_options.pm:147
+#: fs/mount_options.pm:149
#, c-format
msgid "Give read-only access to ordinary users"
msgstr "Daj dozvolu za čitanje običnim korisnicima"
-#: fs/type.pm:363
+#: fs/mount_point.pm:80
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Dvostruka tačka montiranja %s"
+
+#: fs/mount_point.pm:95
+#, c-format
+msgid "No partition available"
+msgstr "Nema dostupnih particija"
+
+#: fs/mount_point.pm:98
+#, c-format
+msgid "Scanning partitions to find mount points"
+msgstr "Pretražujem particije da nađem tačke montiranja"
+
+#: fs/mount_point.pm:105
+#, c-format
+msgid "Choose the mount points"
+msgstr "Izaberite tačke montiranja"
+
+#: fs/partitioning.pm:46
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "Izaberite particije koje želite formatirati"
+
+#: fs/partitioning.pm:76
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+"Nisam uspio provjeriti datotečni sistem %s. Želite li popraviti greške? "
+"(pažnja, možete izgubiti podatke)"
+
+#: fs/partitioning.pm:79
+#, c-format
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Nemam dovoljno swap prostora da dovršim instalaciju, molim dodajte još"
+
+#: fs/partitioning_wizard.pm:47
+#, c-format
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"Morate imati root particiju.\n"
+"Za ovo, napravite jednu particiju (ili kliknite na neku od postojećih).\n"
+"Zatim izaberite opciju \"Tačka montiranja\" i unesite vrijednost \"/\""
+
+#: fs/partitioning_wizard.pm:52
+#, c-format
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+"Nemate nijednu swap particiju\n"
+"\n"
+"Da li da nastavim?"
+
+#: fs/partitioning_wizard.pm:80
+#, c-format
+msgid "Use free space"
+msgstr "Koristi slobodan prostor"
+
+#: fs/partitioning_wizard.pm:82
+#, c-format
+msgid "Not enough free space to allocate new partitions"
+msgstr "Nema dovoljno slobodnog prostora za pravljenje novih particija"
+
+#: fs/partitioning_wizard.pm:90
+#, c-format
+msgid "Use existing partitions"
+msgstr "Koristi postojeću particiju"
+
+#: fs/partitioning_wizard.pm:92
+#, c-format
+msgid "There is no existing partition to use"
+msgstr "Nemate nijednu postojeću particiju za upotrebu"
+
+#: fs/partitioning_wizard.pm:99
+#, c-format
+msgid "Use the Microsoft Windows® partition for loopback"
+msgstr "Koristi Microsoft Windows® particiju za loopback"
+
+#: fs/partitioning_wizard.pm:102
+#, c-format
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Koju particiju želite koristiti za Linux4Win?"
+
+#: fs/partitioning_wizard.pm:104
+#, c-format
+msgid "Choose the sizes"
+msgstr "Izaberite veličine"
+
+#: fs/partitioning_wizard.pm:105
+#, c-format
+msgid "Root partition size in MB: "
+msgstr "Veličina root particije u MB: "
+
+#: fs/partitioning_wizard.pm:106
+#, c-format
+msgid "Swap partition size in MB: "
+msgstr "Veličina swap particije u MB: "
+
+#: fs/partitioning_wizard.pm:115
+#, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+"Ne postoji nijedna FAT particija za upotrebu kao loopback (ili nije ostalo "
+"dovoljno prostora)"
+
+#: fs/partitioning_wizard.pm:122
+#, c-format
+msgid "Use the free space on the Microsoft Windows® partition"
+msgstr "Koristi slobodan prostor na Microsoft Windows® particiji"
+
+#: fs/partitioning_wizard.pm:124
+#, c-format
+msgid "Which partition do you want to resize?"
+msgstr "Kojoj particiji želite promijeniti veličinu?"
+
+#: fs/partitioning_wizard.pm:138
+#, c-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+"FAT resizer ne može izmijeniti vašu particiju, \n"
+"došlo je do sljedeće greške: %s"
+
+#: fs/partitioning_wizard.pm:141
+#, c-format
+msgid "Computing the size of the Microsoft Windows® partition"
+msgstr "Izračunavam veličinu Microsoft Windows® particije"
+
+#: fs/partitioning_wizard.pm:148
+#, c-format
+msgid ""
+"Your Microsoft Windows® partition is too fragmented. Please reboot your "
+"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
+"the Mandriva Linux installation."
+msgstr ""
+"Vaša Microsoft Windows® particija je previše fragmentirana. Molim "
+"restartujte vaš računar pod Microsoft Windows®, pokrenite program \"defrag\","
+"zatim ponovo pokrenite Mandriva Linux instalaciju."
+
+#: fs/partitioning_wizard.pm:151
+#, 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 ""
+"UPOZORENJE!\n"
+"\n"
+" DrakX će sada promijeniti veličinu vaše Microsoft Windows® particije.\n"
+"\n"
+"\n"
+"Budite pažljivi, ova operacija je opasna. Ako to već niste uradili, najprije "
+"napustite instalaciju, izvršite naredbu \"chkdsk c:\" iz Command Prompt-a "
+"pod Windowsom (obratite pažnju da izvršavanje grafičkog programa \"scandisk"
+"\" nije dovoljno, trebate koristiti \"chkdsk\" u komandnom upitu!), "
+"opcionalno pokrenite \"defrag\", zatim ponovo pokrenite instalaciju. Također "
+"biste trebali spasiti sve podatke.\n"
+"\n"
+"\n"
+"Kada ste sigurni, kliknite na \"%s\"."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: fs/partitioning_wizard.pm:160 interactive.pm:538 interactive/curses.pm:217
+#: ugtk2.pm:508
+#, c-format
+msgid "Next"
+msgstr "Dalje"
+
+#: fs/partitioning_wizard.pm:163
+#, c-format
+msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
+msgstr ""
+"Koju veličinu želite da sačuvate za Microsoft Windows® na particiji %s?"
+
+#: fs/partitioning_wizard.pm:164
+#, c-format
+msgid "Size"
+msgstr "Veličina"
+
+#: fs/partitioning_wizard.pm:173
+#, c-format
+msgid "Resizing Microsoft Windows® partition"
+msgstr "Smanjujem Microsoft Windows® particiju"
+
+#: fs/partitioning_wizard.pm:178
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "Smanjivanje FAT particije nije uspjelo: %s"
+
+#: fs/partitioning_wizard.pm:193
+#, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+"Ne postoji nijedna FAT particija za promjenu veličine (ili nije ostalo "
+"dovoljno prostora)"
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Remove Microsoft Windows®"
+msgstr "Ukloni Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Erase and use entire disk"
+msgstr "Pobriši čitav disk"
+
+#: fs/partitioning_wizard.pm:200
+#, c-format
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+"Imate više od jednog hard diska. Na koji od njih želite instalirati Linux?"
+
+#: fs/partitioning_wizard.pm:206
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+"SVE postojeće particije i podaci na njima će biti izgubljeni na disku %s"
+
+#: fs/partitioning_wizard.pm:217
+#, c-format
+msgid "Custom disk partitioning"
+msgstr "Ručno particioniranje diska"
+
+#: fs/partitioning_wizard.pm:223
+#, c-format
+msgid "Use fdisk"
+msgstr "Koristi fdisk"
+
+#: fs/partitioning_wizard.pm:226
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+"Sada možete particionirati %s.\n"
+"Kada završite, ne zaboravite spasiti naredbom 'w'"
+
+#: fs/partitioning_wizard.pm:266
+#, c-format
+msgid "I can not find any room for installing"
+msgstr "Ne mogu naći dovoljno prostora za instalaciju"
+
+#: fs/partitioning_wizard.pm:270
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "DrakX Particioni čarobnjak je našao sljedeća rješenja:"
+
+#: fs/partitioning_wizard.pm:278
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Particioniranje nije uspjelo: %s"
+
+#: fs/type.pm:366
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "Ne možete koristiti JFS za particije manje od 16MB"
-#: fs/type.pm:364
+#: fs/type.pm:367
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "Ne možete koristiti ReiserFS za particije manje od 32MB"
@@ -3263,7 +2682,12 @@ msgstr "sa /usr"
msgid "server"
msgstr "server"
-#: fsedit.pm:219
+#: fsedit.pm:116
+#, c-format
+msgid "BIOS software RAID detected on disks %s. Activate it?"
+msgstr "BIOS softverski RAID je pronađen na diskovima %s. Da ga aktiviram?"
+
+#: fsedit.pm:230
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
@@ -3282,22 +2706,22 @@ msgstr ""
"\n"
"Slažete li se sa gubitkom svih particija?\n"
-#: fsedit.pm:392
+#: fsedit.pm:403
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Tačke montiranja moraju počinjati sa /"
-#: fsedit.pm:393
+#: fsedit.pm:404
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Tačka montiranja se treba sastojati samo od brojeva i slova"
-#: fsedit.pm:394
+#: fsedit.pm:405
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Već postoji particija sa tačkom montiranja %s\n"
-#: fsedit.pm:398
+#: fsedit.pm:409
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -3308,15 +2732,17 @@ msgstr ""
"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
"Molim kasnije dodajte /boot particiju"
-#: fsedit.pm:404
-#, fuzzy, c-format
+#: fsedit.pm:415
+#, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
-msgstr "Ne možete koristiti LVM logički volumen za tačku montiranja %s"
+msgstr ""
+"Ne možete koristiti LVM logički volumen za tačku montiranja %s pošto on "
+"obuhvata fizičke volumene"
-#: fsedit.pm:406
-#, fuzzy, c-format
+#: fsedit.pm:417
+#, 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 "
@@ -3324,15 +2750,16 @@ msgid ""
"You should create a /boot partition first"
msgstr ""
"Izabrali ste LVM logički volumen kao root (/).\n"
-"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
-"Molim kasnije dodajte /boot particiju"
+"Nijedan bootloader nije u mogućnosti da rukuje sa ovim ako se taj volumen "
+"prostire preko više fizičkih volumena.\n"
+"Trebali biste najprije napraviti /boot particiju"
-#: fsedit.pm:410 fsedit.pm:412
+#: fsedit.pm:421 fsedit.pm:423
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Ovaj direktorij treba ostati unutar korijenskog file sistema"
-#: fsedit.pm:414 fsedit.pm:416
+#: fsedit.pm:425 fsedit.pm:427
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -3341,22 +2768,22 @@ msgstr ""
"Potreban vam je pravi file sistem (ext2/ext3, reiserfs, xfs ili jfs) za ovu "
"tačku montiranja\n"
-#: fsedit.pm:418
+#: fsedit.pm:429
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr "Ne možete koristiti šifrovani datotečni sistem za tačku montiranja %s"
-#: fsedit.pm:482
+#: fsedit.pm:493
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nema dovoljno prostora za auto-alokaciju"
-#: fsedit.pm:484
+#: fsedit.pm:495
#, c-format
msgid "Nothing to do"
msgstr "Nemam šta da radim"
-#: harddrake/data.pm:62 install_any.pm:1710
+#: harddrake/data.pm:62
#, c-format
msgid "Floppy"
msgstr "Disketa"
@@ -3366,12 +2793,12 @@ msgstr "Disketa"
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:88 install_any.pm:1711
+#: harddrake/data.pm:88
#, c-format
msgid "Hard Disk"
msgstr "Hard Disk"
-#: harddrake/data.pm:97 install_any.pm:1712
+#: harddrake/data.pm:97
#, c-format
msgid "CDROM"
msgstr "CDROM"
@@ -3386,103 +2813,102 @@ msgstr "CD/DVD pržilica"
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:127 standalone/drakbackup:2066
+#: harddrake/data.pm:127
#, c-format
msgid "Tape"
msgstr "Traka"
-#: harddrake/data.pm:136
+#: harddrake/data.pm:138
+#, c-format
+msgid "AGP controllers"
+msgstr "AGP kontroleri"
+
+#: harddrake/data.pm:147
#, c-format
msgid "Videocard"
msgstr "Video kartica"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:157
#, c-format
msgid "DVB card"
-msgstr ""
+msgstr "DVB kartica"
-#: harddrake/data.pm:154
+#: harddrake/data.pm:165
#, c-format
msgid "Tvcard"
msgstr "TV kartica"
-#: harddrake/data.pm:163
+#: harddrake/data.pm:174
#, c-format
msgid "Other MultiMedia devices"
msgstr "Drugi multimedijalni uređaj"
-#: harddrake/data.pm:172
+#: harddrake/data.pm:183
#, c-format
msgid "Soundcard"
msgstr "Zvučna kartica"
-#: harddrake/data.pm:185
+#: harddrake/data.pm:196
#, c-format
msgid "Webcam"
msgstr "Web kamera"
-#: harddrake/data.pm:199
+#: harddrake/data.pm:210
#, c-format
msgid "Processors"
msgstr "Procesori"
-#: harddrake/data.pm:209
+#: harddrake/data.pm:220
#, c-format
msgid "ISDN adapters"
msgstr "ISDN adapteri"
-#: harddrake/data.pm:220
+#: harddrake/data.pm:231
#, c-format
msgid "USB sound devices"
-msgstr ""
+msgstr "USB zvučni uređaji"
-#: harddrake/data.pm:229
+#: harddrake/data.pm:240
#, c-format
msgid "Radio cards"
-msgstr ""
+msgstr "Radio kartice"
-#: harddrake/data.pm:238
+#: harddrake/data.pm:249
#, c-format
msgid "ATM network cards"
-msgstr ""
+msgstr "ATM mrežne kartice"
-#: harddrake/data.pm:247
+#: harddrake/data.pm:258
#, c-format
msgid "WAN network cards"
-msgstr ""
+msgstr "WAN mrežne kartice"
-#: harddrake/data.pm:256
+#: harddrake/data.pm:267
#, c-format
msgid "Bluetooth devices"
-msgstr ""
+msgstr "Bluetooth uređaji"
-#: harddrake/data.pm:265
+#: harddrake/data.pm:276
#, c-format
msgid "Ethernetcard"
msgstr "Ethernet kartica"
-#: harddrake/data.pm:282 network/netconnect.pm:492
+#: harddrake/data.pm:293
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:292
+#: harddrake/data.pm:303
#, c-format
msgid "ADSL adapters"
msgstr "ADSL adapteri"
-#: harddrake/data.pm:306
+#: harddrake/data.pm:315
#, c-format
msgid "Memory"
msgstr "Memorija"
-#: harddrake/data.pm:315
-#, c-format
-msgid "AGP controllers"
-msgstr "AGP kontroleri"
-
-#: harddrake/data.pm:324 help.pm:187 help.pm:856
-#: install_steps_interactive.pm:964
+#: harddrake/data.pm:324
#, c-format
msgid "Printer"
msgstr "Štampač"
@@ -3491,7 +2917,7 @@ msgstr "Štampač"
#: harddrake/data.pm:338
#, c-format
msgid "Game port controllers"
-msgstr ""
+msgstr "Game port kontroleri"
#: harddrake/data.pm:347
#, c-format
@@ -3508,85 +2934,92 @@ msgstr "SATA kontroleri"
msgid "RAID controllers"
msgstr "RAID kontroleri"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA kontroleri"
-#: harddrake/data.pm:385
+#: harddrake/data.pm:386
+#, c-format
+msgid "USB Mass Storage Devices"
+msgstr "USB uređaji za smještaj podataka"
+
+#: harddrake/data.pm:395
+#, fuzzy, c-format
+msgid "Card readers"
+msgstr "Model kartice:"
+
+#: harddrake/data.pm:404
#, c-format
msgid "Firewire controllers"
msgstr "Firewire kontroleri"
-#: harddrake/data.pm:394
+#: harddrake/data.pm:413
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA kontroleri"
-#: harddrake/data.pm:403
+#: harddrake/data.pm:422
#, c-format
msgid "SCSI controllers"
msgstr "SCSI kontroleri"
-#: harddrake/data.pm:412
+#: harddrake/data.pm:431
#, c-format
msgid "USB controllers"
msgstr "USB kontroleri"
-#: harddrake/data.pm:421
+#: harddrake/data.pm:440
#, c-format
msgid "USB ports"
msgstr "USB portovi"
-#: harddrake/data.pm:430
+#: harddrake/data.pm:449
#, c-format
msgid "SMBus controllers"
msgstr "SMBus kontroleri"
-#: harddrake/data.pm:439
+#: harddrake/data.pm:458
#, c-format
msgid "Bridges and system controllers"
msgstr "Mostovi (bridges) i sistemski kontroleri"
-#: harddrake/data.pm:450 help.pm:856 install_steps_interactive.pm:94
-#: install_steps_interactive.pm:924 standalone/finish-install:41
-#: standalone/keyboarddrake:29
+#: harddrake/data.pm:469
#, c-format
msgid "Keyboard"
msgstr "Tastatura"
-#: harddrake/data.pm:463
+#: harddrake/data.pm:482
#, c-format
msgid "Tablet and touchscreen"
-msgstr ""
+msgstr "Tablet i ekran osjetljiv na dodir"
-#: harddrake/data.pm:472 help.pm:856 install_steps_interactive.pm:957
+#: harddrake/data.pm:491
#, c-format
msgid "Mouse"
msgstr "Miš"
-#: harddrake/data.pm:486
+#: harddrake/data.pm:505
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:495
+#: harddrake/data.pm:514
#, c-format
msgid "Scanner"
msgstr "Skener"
-#: harddrake/data.pm:505 standalone/harddrake2:475
+#: harddrake/data.pm:524
#, c-format
msgid "Unknown/Others"
msgstr "Nepoznat/Ostali"
-#: harddrake/data.pm:533
+#: harddrake/data.pm:552
#, c-format
msgid "cpu # "
msgstr "cpu # "
-#: harddrake/sound.pm:195 standalone/drakconnect:162
-#: standalone/drakconnect:637
+#: harddrake/sound.pm:195
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Molim sačekajte... Primjenjujem konfiguraciju"
@@ -3669,17 +3102,17 @@ msgstr ""
"- novi ALSA API koji pruža mnoge napredne mogućnosti, ali zahtijeva upotrebu "
"ALSA biblioteke.\n"
-#: harddrake/sound.pm:262 harddrake/sound.pm:350 standalone/drakups:144
+#: harddrake/sound.pm:262 harddrake/sound.pm:351
#, c-format
msgid "Driver:"
msgstr "Drajver:"
-#: harddrake/sound.pm:270
+#: harddrake/sound.pm:271
#, c-format
msgid "Trouble shooting"
msgstr "Kako ukloniti problem?"
-#: harddrake/sound.pm:278
+#: harddrake/sound.pm:279
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
@@ -3695,12 +3128,12 @@ msgstr ""
"Stoga će novi drajver \"%s\" biti korišten tek nakon idućeg pokretanja "
"sistema."
-#: harddrake/sound.pm:286
+#: harddrake/sound.pm:287
#, c-format
msgid "No open source driver"
msgstr "Nema open source drajver"
-#: harddrake/sound.pm:287
+#: harddrake/sound.pm:288
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
@@ -3709,33 +3142,33 @@ msgstr ""
"Nema slobodnih drajvera za vašu zvučnu karticu (%s), ali postoji vlasnički "
"drajver na \"%s\"."
-#: harddrake/sound.pm:290
+#: harddrake/sound.pm:291
#, c-format
msgid "No known driver"
msgstr "Nema nijedan poznat drajver"
-#: harddrake/sound.pm:291
+#: harddrake/sound.pm:292
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Nema poznatih drajvera za vašu zvučnu karticu (%s)"
-#: harddrake/sound.pm:295 network/netconnect.pm:98 network/netconnect.pm:837
+#: harddrake/sound.pm:296
#, c-format
msgid "Unknown driver"
msgstr "Nepoznat drajver"
-#: harddrake/sound.pm:296
+#: harddrake/sound.pm:297
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "Greška: Drajver \"%s\" za vašu zvučnu karticu nije na listi"
-#: harddrake/sound.pm:310
+#: harddrake/sound.pm:311
#, c-format
msgid "Sound trouble shooting"
msgstr "Rješavanje problema sa zvukom"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:313
+#: harddrake/sound.pm:314
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
@@ -3744,7 +3177,7 @@ msgid ""
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\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"
@@ -3765,7 +3198,7 @@ msgstr ""
"- \"lspcidrake -v | fgrep AUDIO\" će vam reći koji drajver inače koristi\n"
"vaša kartica\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" će vam reći koji drajver je\n"
+"- \"grep sound-slot /etc/modprobe.conf\" će vam reći koji drajver je\n"
"trenutno u upotrebi\n"
"\n"
"- sa \"/sbin/lsmod\" možete provjeriti da li je modul (drajver) učitan\n"
@@ -3780,18 +3213,18 @@ msgstr ""
"- \"/sbin/fuser -v /dev/dsp\" vam govori koji program koristi zvučnu "
"karticu.\n"
-#: harddrake/sound.pm:339
+#: harddrake/sound.pm:340
#, c-format
msgid "Let me pick any driver"
msgstr "Dozvoli da sam odaberem drajver"
-#: harddrake/sound.pm:342
+#: harddrake/sound.pm:343
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Slobodan izbor drajvera"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:345
+#: harddrake/sound.pm:346
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3805,8 +3238,7 @@ msgstr ""
"\n"
"Trenutni drajver za vašu \"%s\" zvučnu karticu je \"%s\""
-#: harddrake/v4l.pm:12 standalone/net_applet:64 standalone/net_applet:65
-#: standalone/net_applet:67
+#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Auto prepoznavanje"
@@ -3849,3833 +3281,53 @@ msgstr "Model kartice:"
msgid "Tuner type:"
msgstr "Vrsta tunera:"
-#: harddrake/v4l.pm:479
+#: interactive.pm:125 interactive.pm:538 interactive/curses.pm:217
+#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
+#: interactive/stdio.pm:142 interactive/stdio.pm:143 ugtk2.pm:410 ugtk2.pm:508
+#: ugtk2.pm:788 ugtk2.pm:811
#, c-format
-msgid "Number of capture buffers:"
-msgstr "Broj capture buffera:"
-
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "broj capture buffera za mmap-ovani capture"
-
-#: harddrake/v4l.pm:481
-#, c-format
-msgid "PLL setting:"
-msgstr "PLL postavka:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "Radio support:"
-msgstr "Podrška za radio:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "enable radio support"
-msgstr "uključi radio podršku"
-
-#: help.pm:12
-#, c-format
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandriva Linux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-"Prije nego što nastavimo, trebate pažljivo pročitati uvjete licence. Ona\n"
-"pokriva cijelu Mandriva Linux distribuciju. Ako se slažete sa svim\n"
-"uvjetima u njoj, izaberite opciju \"%s\". Ako ne, klikom na \"%s\" ćete\n"
-"restartovati vaš računar."
-
-#: help.pm:18
-#, c-format
-msgid ""
-"GNU/Linux is a multi-user system which means each user can have his or her\n"
-"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point will not be "
-"authorized\n"
-"to change anything except their own files and their own configurations,\n"
-"protecting the system from unintentional or malicious changes which could\n"
-"impact on the system as a whole. You'll have to create at least one regular\n"
-"user for yourself -- this is the account which you should use for routine,\n"
-"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
-"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system will not work any more. If you make a\n"
-"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you will not affect the entire system.\n"
-"\n"
-"The first field asks you for a real name. Of course, this is not mandatory\n"
-"-- you can actually enter whatever you like. DrakX will use the first word\n"
-"you type in this field and copy it to the \"%s\" one, which is the name\n"
-"this user will enter to log onto the system. If you like, you may override\n"
-"the default and change the user name. The next step is to enter a password.\n"
-"From a security point of view, a non-privileged (regular) user password is\n"
-"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
-"by making it blank or too simple: after all, your files could be the ones\n"
-"at risk.\n"
-"\n"
-"Once you click on \"%s\", you can add other users. Add a user for each one\n"
-"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
-"finished adding users.\n"
-"\n"
-"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
-"that user (bash by default).\n"
-"\n"
-"When you're finished adding users, you'll be asked to choose a user who\n"
-"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click on\n"
-"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
-msgstr ""
-"GNU/Linux je višekorisnički sistem, što znači da svaki korisnik može imati\n"
-"vlastite preference, vlastite datoteke i tako dalje. Možete pročitati "
-"''Početnički\n"
-"vodič'' da biste saznali više o višekorisničkim sistemima. Ali za razliku "
-"od\n"
-"\"root\"-a, koji je administrator sistema, korisnicima koje dodate u ovom "
-"trenutku\n"
-"neće biti dozvoljeno da promijene ništa osim vlastitih datoteka i vlastite\n"
-"konfiguracije, čime je sistem zaštićen od nenamjernih ili zlonamjernih "
-"izmjena\n"
-"koje mogu uticati na cijeli sistem. Moraćete kreirati najmanje jednog "
-"korisnika\n"
-"za vas same -- ovo je račun koji trebate koristiti za rutinsku, svakodnevnu\n"
-"upotrebu. Iako je vrlo lako prijaviti se kao \"root\" da biste radili sve i "
-"svašta,\n"
-"to takođe može biti i vrlo opasno! Jedna greška može značiti da vaš sistem\n"
-"više ne radi. Ako napravite ozbiljnu pogrešku kao običan korisnik, najgore\n"
-"što se može desiti jeste da izgubite neke informacije, ali ne i da utičete "
-"na\n"
-"cijeli sistem.\n"
-"\n"
-"U prvom polju unosite vaše pravo ime i prezime. Naravno, ovo nije obavezno\n"
-"-- u stvari možete ovdje unijeti šta god hoćete. DrakX će koristiti prvu "
-"riječ\n"
-"koju unesete i kopirati je u polje \"%s\", što je ime koje će ovaj\n"
-"korisnik unositi da bi ušao na sistem. Ako želite, možete promijeniti\n"
-"ponuđenu vrijednost. Idući korak je da unesete šifru. Sa sigurnosne tačke\n"
-"gledišta, šifra neprivilegovanog (običnog) korisnika nije tako važna kao "
-"\"root\"\n"
-"šifra, ali to nije razlog da je zanemarite tako što ćete je ostaviti praznom "
-"ili\n"
-"prejednostavnom: na kraju krajeva, vaše lične datoteke je ono što je u\n"
-"riziku.\n"
-"\n"
-"Jednom kada kliknete na \"%s\", možete ih dodati još.\n"
-"Dodajte po jednog korisnika za svakog od vaših prijatelja: na primjer za\n"
-"vašeg oca ili sestru. Kliknite na \"%s\" kada završite dodavanje korisnika.\n"
-"\n"
-"Klikanjem na dugme \"%s\" možete promijeniti osnovni \"shell\" za tog\n"
-"korisnika (ponuđen je bash).\n"
-"\n"
-"Kada završite dodavanje svih korisnika, bićete upitani da odaberete\n"
-"korisnika koji se može automatski prijaviti prilikom pokretanja sistema.\n"
-"Ako ste zainteresovani za ovu mogućnost (i ne brinete previše o lokalnoj\n"
-"sigurnosti), izaberite željenog korisnika i window manager, zatim kliknite\n"
-"na \"%s\". Ako niste zainteresovani za to, isključite opciju\n"
-"\"%s\"."
-
-#: help.pm:52 printer/printerdrake.pm:1866 printer/printerdrake.pm:1987
-#: standalone/draksambashare:60
-#, c-format
-msgid "User name"
-msgstr "Korisničko ime"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: help.pm:52 help.pm:432 help.pm:682 install_interactive.pm:176
-#: install_steps_gtk.pm:237 install_steps_gtk.pm:682 interactive.pm:436
-#: interactive/newt.pm:321 network/thirdparty.pm:385
-#: printer/printerdrake.pm:3884 standalone/drakTermServ:412
-#: standalone/drakbackup:4102 standalone/drakbackup:4196
-#: standalone/drakbackup:4213 standalone/drakbackup:4231 ugtk2.pm:490
-#, c-format
-msgid "Next"
-msgstr "Dalje"
-
-#: help.pm:52
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Da li želite koristiti ovu mogućnost?"
-
-#: help.pm:55
-#, c-format
-msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Ovdje su navedene Linux particije koje već postoje na vašem hard disku.\n"
-"Možete zadržati izbore koje je napravio čarobnjak, pošto su oni dobri za\n"
-"uobičajene instalacije. Ako napravite neke izmjene, morate, ako ništa\n"
-"drugo, definisati root particiju (\"/\"). Nemojte izabrati premalu "
-"particiju\n"
-"ili nećete moći instalirati dovoljno softvera. Ako želite držati vaše "
-"podatke\n"
-"na zasebnoj particiji, trebate takođe napraviti \"/home\" particiju (što je\n"
-"moguće samo ako imate više od jedne Linux particije na raspolaganju).\n"
-"\n"
-"Svaka particija je navedena ovako: \"Ime\", \"Kapacitet\".\n"
-"\n"
-"\"Ime\" se sastoji od: \"vrsta hard diska\", \"broj hard diska\", \"broj\n"
-"particije\" (na primjer, \"hda1\").\n"
-"\n"
-"\n"
-"\"Vrsta hard diska\" je \"hd\" ako je vaš hard disk IDE, a \"sd\" ako je\n"
-"u pitanju SCSI hard disk.\n"
-"\n"
-"\"Broj hard diska\" je uvijek slovo nakon \"hd\" ili \"sd\". Kod IDE hard\n"
-"diskova:\n"
-"\n"
-" * \"a\" znači \"master hard disk na primarnom IDE kontroleru\";\n"
-"\n"
-" * \"b\" znači \"slave hard disk na primarnom IDE kontroleru\";\n"
-"\n"
-" * \"c\" znači \"master hard disk na sekundarnom IDE kontroleru\";\n"
-"\n"
-" * \"d\" znači \"slave hard disk na sekundarnom IDE kontroleru\";\n"
-"\n"
-"Kod SCSI hard diskova, \"a\" je \"disk sa najnižim SCSI IDom\", \"b\"\n"
-"je \"drugi najniži SCSI ID\", itd."
-
-#: help.pm:86
-#, c-format
-msgid ""
-"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-"Mandriva Linux instalacija se prostire na nekoliko CDova. Ako je neki\n"
-"paket smješten na drugom CDu, DrakX će izbaciti trenutni CD i zamoliti vas\n"
-"da ubacite neki drugi po potrebi. Ako nemate potreban CD pri ruci,\n"
-"samo kliknite na \"%s\", odgovarajući paketi neće biti instalirani."
-
-#: help.pm:93
-#, c-format
-msgid ""
-"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandriva Linux, and to make "
-"it\n"
-"simpler to manage, they have been placed into groups of similar\n"
-"applications.\n"
-"\n"
-"Mandriva Linux sorts package groups in four categories. You can mix and\n"
-"match applications from the various categories, so a ``Workstation''\n"
-"installation can still have applications from the ``Server'' category\n"
-"installed.\n"
-"\n"
-" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
-"more of the groups in the workstation category.\n"
-"\n"
-" * \"%s\": if you plan on using your machine for programming, select the\n"
-"appropriate groups from that category. The special \"LSB\" group will\n"
-"configure your system so that it complies as much as possible with the\n"
-"Linux Standard Base specifications.\n"
-"\n"
-" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
-"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
-"of the system. However, if you do not select the \"LSB\" group you will\n"
-"still have a system which is nearly 100%% LSB-compliant.\n"
-"\n"
-" * \"%s\": if your machine is intended to be a server, select which of the\n"
-"more common services you wish to install on your machine.\n"
-"\n"
-" * \"%s\": this is where you will choose your preferred graphical\n"
-"environment. At least one must be selected if you want to have a graphical\n"
-"interface available.\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group.\n"
-"\n"
-"You can check the \"%s\" box, which is useful if you're familiar with the\n"
-"packages being offered or if you want to have total control over what will\n"
-"be installed.\n"
-"\n"
-"If you start the installation in \"%s\" mode, you can deselect all groups\n"
-"and prevent the installation of any new packages. This is useful for\n"
-"repairing or updating an existing system.\n"
-"\n"
-"If you deselect all groups when performing a regular installation (as\n"
-"opposed to an upgrade), a dialog will pop up suggesting different options\n"
-"for a minimal installation:\n"
-"\n"
-" * \"%s\": install the minimum number of packages possible to have a\n"
-"working graphical desktop.\n"
-"\n"
-" * \"%s\": installs the base system plus basic utilities and their\n"
-"documentation. This installation is suitable for setting up a server.\n"
-"\n"
-" * \"%s\": will install the absolute minimum number of packages necessary\n"
-"to get a working Linux system. With this installation you will only have a\n"
-"command-line interface. The total size of this installation is about 65\n"
-"megabytes."
-msgstr ""
-"Sada je vrijeme da izaberete koje programe želite instalirati na vaš\n"
-"sistem. Za Mandriva Linux su dostupne hiljade paketa, pa da bi\n"
-"njihovo upravljanje bilo lakše, organizovani su u grupe slične\n"
-"primjene.\n"
-"\n"
-"Paketi su sortirani u grupe ovisno o tipičnoj namjeni vašeg računara.\n"
-"U Mandriva Linuxu date su četiri predefinisane kategorije. Možete\n"
-"miješati i poklapati programe iz raznih grupa, pa tako instalacija ``Radna\n"
-"stanica'' može sadržavati programe iz grupe ``Programiranje''.\n"
-"\n"
-" * \"%s\": ako planirate da koristite vaš računar kao radnu stanicu, "
-"izaberite\n"
-"jednu ili više grupa koje se nalaze u ovoj kategoriji.\n"
-"\n"
-" * \"%s\": ako planirate koristiti vaš računar za programiranje, izaberite\n"
-"odgovarajuće grupe iz te kategorije. Posebna \"LSB\" grupa će podesiti\n"
-"vaš sistem tako da on bude sukladan specifikaciji Linux Standard Base\n"
-"koliko god je to moguće.\n"
-"\n"
-" Izborom \"LSB\" grupe također ćete koristiti kernel serije \"2.4\",\n"
-"umjesto uobičajenog \"2.6\". Ovo je kako bi se osigurala 100%%\n"
-"sukladnost sistema sa LSBom. Ipak, čak i ako niste izabrali opciju\n"
-"\"LSB\" imaćete sistem koji je skoro 100%% sukladan sa LSBom.\n"
-"\n"
-" * \"%s\": ako je vaš računar zamišljen kao server, izaberite koje od\n"
-"uobičajenih servisa želite instalirati na vaš računar.\n"
-"\n"
-" * \"%s\": ovdje možete izabrati vašu preferiranu grafičku okolinu. Barem\n"
-"jedna od njih mora biti izabrana ako želite da imate grafički interfejs.\n"
-"\n"
-"Držanjem kursora miša iznad imena grupe će nakratko prikazati kratko\n"
-"objašnjenje o pojedinoj grupi.\n"
-"\n"
-"Možete aktivirati opciju \"%s\", koja je zgodna ako se upoznati sa "
-"ponuđenim\n"
-"paketima ili ako želite imati potpunu kontrolu nad onim što će se "
-"instalirati.\n"
-"\n"
-"Ako ste započeli instalaciju u \"%s\" režimu, možete isključiti sve grupe\n"
-"kako biste izbjegli instalaciju bilo kojeg novog paketa. Ovo je pogodno za\n"
-"popravljanje ili unaprjeđenje postojećeg sistema.\n"
-"\n"
-"Ako isključite sve grupe prilikom obavljanja obične instalacije (a ne\n"
-"upgrade), iskočiće dijalog koji vam nudi razne opcije za minimalnu "
-"instalaciju:\n"
-"\n"
-" * \"%s\": instalira minimalan mogući broj paketa potrebnih da imate\n"
-"funkcionalan grafički desktop.\n"
-"\n"
-" * \"%s\": instalira bazni sistem plus osnovne alate i njihovu\n"
-"dokumentaciju.\n"
-" Ova instalacija je prikladna za podešavanje servera.\n"
-"\n"
-" * \"%s\": ovo će instalirati apsolutni minimum paketa potrebnih da imate\n"
-"funkcionalan Linux sitsem. Sa ovom instalacijom imaćete samo komandnu\n"
-"liniju. Ukupna veličina ove instalacije je oko 65 megabajta."
-
-#: help.pm:147 share/compssUsers.pl:24
-#, c-format
-msgid "Workstation"
-msgstr "Radna stanica"
-
-#: help.pm:147 share/compssUsers.pl:65 share/compssUsers.pl:167
-#: share/compssUsers.pl:169
-#, c-format
-msgid "Development"
-msgstr "Programiranje"
-
-#: help.pm:147 share/compssUsers.pl:145
-#, c-format
-msgid "Graphical Environment"
-msgstr "Grafičko okruženje"
-
-#: help.pm:147 install_steps_gtk.pm:235 install_steps_interactive.pm:623
-#, c-format
-msgid "Individual package selection"
-msgstr "Izbor pojedinačnih paketa"
-
-#: help.pm:147 help.pm:589
-#, c-format
-msgid "Upgrade"
-msgstr "Unaprijedi"
-
-#: help.pm:147 install_steps_interactive.pm:581
-#, c-format
-msgid "With X"
-msgstr "Sa X-om"
-
-#: help.pm:147
-#, c-format
-msgid "With basic documentation"
-msgstr "Sa osnovnom dokumentacijom"
-
-#: help.pm:147
-#, c-format
-msgid "Truly minimal install"
-msgstr "Stvarno minimalna instalacija"
-
-#: help.pm:150
-#, c-format
-msgid ""
-"If you choose to install packages individually, the installer will present\n"
-"a tree containing all packages classified by groups and subgroups. While\n"
-"browsing the tree, you can select entire groups, subgroups, or individual\n"
-"packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description will appear on the\n"
-"right to let you know the purpose of that package.\n"
-"\n"
-"!! If a server package has been selected, either because you specifically\n"
-"chose the individual package or because it was part of a group of packages,\n"
-"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandriva Linux will automatically start any installed\n"
-"services at boot time. Even if they are safe and have no known issues at\n"
-"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandriva Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do "
-"or\n"
-"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
-"the listed services and they will be started automatically at boot time. !!\n"
-"\n"
-"The \"%s\" option is used to disable the warning dialog which appears\n"
-"whenever the installer automatically selects a package to resolve a\n"
-"dependency issue. Some packages depend on others and the installation of\n"
-"one particular package may require the installation of another package. The\n"
-"installer can determine which packages are required to satisfy a dependency\n"
-"to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-"package list created during a previous installation. This is useful if you\n"
-"have a number of machines that you wish to configure identically. Clicking\n"
-"on this icon will ask you to insert the floppy disk created at the end of\n"
-"another installation. See the second tip of the last step on how to create\n"
-"such a floppy."
-msgstr ""
-"Ako ste naveli da želite individualno izabrati pakete, biće vam prikazano\n"
-"stablo koje sadrži sve pakete klasifikovane po grupama i podgrupama.\n"
-"Pregledajući stablo, možete izabrati čitave grupe, podgrupe ili\n"
-"individualne pakete.\n"
-"\n"
-"Kad god izaberete paket na stablu, desno od njega se pojavljuje opis koji\n"
-"vam objašnjava svrhu paketa.\n"
-"\n"
-"!! Ako izaberete neki serverski paket, zato što ste specifično izabrali taj\n"
-"paket ili zato što je on dio grupe paketa, bićete zamoljeni da potvrdite da\n"
-"zaista želite da taj server bude instaliran. Mandriva Linux obično\n"
-"automatski pokreće sve instalirane servise prilikom pokretanja sistema.\n"
-"Čak i ako su sigurni i nemaju poznatih problema u trenutku pakovanja\n"
-"distribucije, sasvim je moguće da su neke sigurnosne rupe otkrivene\n"
-"nakon što je dovršena ova verzija Mandriva Linuxa. Ako niste sigurni\n"
-"čemu tačno služi taj paket ili zašto ga treba instalirati, kliknite na \"%s"
-"\".\n"
-"Klikom na \"%s\" instalirate navedene servise i oni će biti automatski\n"
-"pokrenuti tokom pokretanja sistema. !!\n"
-"\n"
-"Opcija \"%s\" se koristi da bi se isključio dijalog upozorenja\n"
-"koji se pojavljuje svaki put kada instalacioni program automatski izabere\n"
-"neki paket kako bi razriješio neku zavisnost. Pojedini paketi imaju\n"
-"zavisnost jedan od drugog u smislu da instalacija jednog paketa traži\n"
-"da bude instaliran i drugi. Instalacioni program može odrediti koji paketi\n"
-"su potrebni da bi se zadovoljila zavisnost i uspješno završila instalacija.\n"
-"\n"
-"Mala ikona sa disketom na dnu liste vam omogućuje da učitate listu paketa\n"
-"koja je napravljena tokom neke ranije instalacije. Ovo je korisno ako "
-"želite\n"
-"da imate nekoliko računara koji su identično podešeni. Nakon klika na ovu\n"
-"ikonu bićete zamoljeni da u disketnu jedinicu stavite disketu napravljenu\n"
-"tokom ranije instalacije. Pogledajte drugi savjet na zadnjem koraku da "
-"biste\n"
-"saznali kako se pravi ova disketa."
-
-#: help.pm:181 help.pm:286 help.pm:314 help.pm:445 install_any.pm:944
-#: interactive.pm:161 modules/interactive.pm:71 standalone/drakbackup:2636
-#: standalone/drakfont:687 standalone/draksec:54 standalone/harddrake2:331
-#: ugtk2.pm:898 wizards.pm:156
-#, c-format
-msgid "No"
-msgstr "Ne"
+msgid "Ok"
+msgstr "U redu"
-#: help.pm:181 help.pm:286 help.pm:445 install_any.pm:944 interactive.pm:161
-#: modules/interactive.pm:71 printer/printerdrake.pm:883
-#: printer/printerdrake.pm:898 standalone/drakbackup:2636
-#: standalone/drakfont:685 standalone/draksec:55 standalone/harddrake2:330
-#: ugtk2.pm:898 wizards.pm:156
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Da"
-#: help.pm:181
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Automatske ovisnosti"
-
-#: help.pm:184
-#, c-format
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to set up a new printer. The interface presented in our\n"
-"manual is similar to the one used during installation."
-msgstr ""
-"\"%s\": klikanjem na dugme \"%s\" otvorićete čarobnjak za\n"
-"podešavanje štampača. Konsultujte odgovarajuće poglavlje ``Vodiča za\n"
-"početnike'' za više informacija o tome kako podesiti novi štampač.\n"
-"Interfejs koji je tamo prikazan je vrlo sličan onom koji se koristi\n"
-"prilikom instalacije."
-
-#: help.pm:187 help.pm:567 help.pm:856 install_steps_gtk.pm:595
-#: standalone/drakbackup:2460 standalone/drakbackup:2464
-#: standalone/drakbackup:2468 standalone/drakbackup:2472
-#: standalone/drakroam:227
-#, c-format
-msgid "Configure"
-msgstr "Podesi"
-
-#: help.pm:190
-#, c-format
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
-"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which are not needed at boot\n"
-"time.\n"
-"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably do not want to start any services which you do not "
-"need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-"Ovim dijalogom možete izabrati koje servise želite pokretati prilikom "
-"boota.\n"
-"\n"
-"Ovdje su predstavljeni svi servisi koji su dostupni u trenutnoj\n"
-"instalaciji. Pregledajte ih pažljivo i isključite sve one koji nisu\n"
-"potrebni prilikom boota.\n"
-"\n"
-"Kada izaberete servis dobićete kratki tekst koji objašnjava taj servis.\n"
-"Ipak, ako niste sigurni da li je servis koristan ili ne, sigurnije je da ne\n"
-"mijenjate predloženi izbor.\n"
-"\n"
-"!! Budite vrlo pažljivi sa ovim korakom ako namjeravate koristiti vaš\n"
-"računar kao server: vjerovatno ne želite da pokrenete neke servise koji\n"
-"vam ne trebaju. Molim vas da zapamtite da pojedini servisi mogu biti\n"
-"opasni ako su aktivni na serveru. Općenito, izaberite samo one servise\n"
-"koji vam stvarno trebaju. !!"
-
-#: help.pm:207
-#, c-format
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
-"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
-msgstr ""
-"GNU/Linux koristi vrijeme u GMT (Greenwich Mean Time) obliku i prevodi ga\n"
-"u lokalno vrijeme u skladu sa vremenskom zonom koju ste izabrali. Ako je\n"
-"sat na vašoj matičnoj ploči podešen na lokalno vrijeme, možete isključiti "
-"ovu\n"
-"opciju isključujući \"%s\", što će saopštiti GNU/Linuxu da su sistemski sat\n"
-"i hardverski sat u istoj vremenskoj zoni. Ovo je korisno kada se na "
-"računaru\n"
-"takođe nalazi i drugi operativni sistem kao što je Windows.\n"
-"\n"
-"Opcija \"%s\" će automatski regulisati sat spajajući se na udaljeni time "
-"server\n"
-"na Internetu. Kako bi ova mogućnost radila, morate imati ispravnu Internet\n"
-"konekciju. Najbolje je izabrati time server negdje u vašoj blizini. Ova "
-"opcija\n"
-"će ustvari instalirati time server koji mogu koristiti i drugi računari u "
-"vašoj\n"
-"lokalnoj mreži."
-
-#: help.pm:218 install_steps_interactive.pm:859
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Hardverski sat podešen na GMT"
-
-#: help.pm:218
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Automatska sinhronizacija vremena"
-
-#: help.pm:221
-#, c-format
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-"Grafička kartica\n"
-"\n"
-" Instalacija obično automatski prepoznaje i podešava grafičku karticu\n"
-"koja je instalirana na računar. Ako se ovo nije desilo, možete izabrati\n"
-"sa liste karticu koja je ugrađena u vaš računar.\n"
-"\n"
-" U slučaju da postoji više dostupnih servera za vašu karticu, sa ili bez\n"
-"3D ubrzanja, biće vam ponuđeno da izaberete server koji najbolje odgovara\n"
-"vašim potrebama."
-
-#: help.pm:232
-#, c-format
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"X (skraćeno od X Window System) je srce GNU/Linux grafičkog interfejsa\n"
-"o kojem ovise sve grafičke okoline (KDE, GNOME, AfterStep,\n"
-"WindowMaker itd.) uključene u Mandriva Linux.\n"
-"\n"
-"Biće vam predstavljena lista različitih parametara koje možete promijeniti\n"
-"da biste dobili optimalan grafički prikaz.\n"
-"\n"
-"Grafička kartica\n"
-"\n"
-" Instalacija obično automatski prepoznaje i podešava grafičku karticu\n"
-"koja je instalirana na računar. Ako se ovo nije desilo, možete izabrati\n"
-"sa liste karticu koja je ugrađena u vaš računar.\n"
-"\n"
-" U slučaju da postoji više dostupnih servera za vašu karticu, sa ili bez\n"
-"3D ubrzanja, biće vam ponuđeno da izaberete server koji najbolje odgovara\n"
-"vašim potrebama.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Instalacioni program obično može prepoznati i podesiti monitor koji\n"
-"je povezan na vaš računar. Ako se ovo ne desi, možete odabrati neki\n"
-"monitor sa ove liste.\n"
-"\n"
-"\n"
-"\n"
-"Rezolucija\n"
-"\n"
-" Ovdje možete izabrati rezoluciju i broj boja među vrijednostima koje su\n"
-"moguće na vašem hardveru. Izaberite one vrijednosti koje vam najbolje\n"
-"odgovaraju (moći ćete ih promijeniti nakon instalacije). Primjer izabrane\n"
-"konfiguracije je prikazan na slici monitora.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Ovisno o vašem hardveru, ova opcija možda neće biti dostupna.\n"
-"\n"
-" Sistem će pokušati prikazati grafički ekran na željenoj rezoluciji.\n"
-"Ako možete vidjeti poruku tokom testa i odgovorite sa \"%s\", DrakX\n"
-"će produžiti na idući korak. Ako ne možete vidjeti poruku, to znači\n"
-"da je neki dio automatski prepoznate konfiguracije bio pogrešan.\n"
-"Test će automatski završiti nakon 12 sekundi, čime ćete biti vraćeni na\n"
-"meni. Mijenjajte postavke dok ne dobijete ispravan grafički prikaz.\n"
-"\n"
-"\n"
-"\n"
-"Opcije\n"
-"\n"
-" Ovdje možete izabrati da li želite da vaš računar automatski pređe na\n"
-"grafički interfejs nakon uključivanja. Očito, trebate odgovoriti \"%s\" ako\n"
-"će vaš računar imati ulogu servera ili ako imate problema sa\n"
-"podešavanjem ekrana."
-
-#: help.pm:289
-#, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
-msgstr ""
-"Monitor\n"
-"\n"
-" Instalacioni program obično može prepoznati i podesiti monitor koji\n"
-"je povezan na vaš računar. Ako se ovo ne desi, možete odabrati sa ove\n"
-"liste monitor koji je ustvari povezan na vaš računar."
-
-#: help.pm:296
-#, c-format
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
-msgstr ""
-"Rezolucija\n"
-"\n"
-" Ovdje možete izabrati rezoluciju i broj boja među vrijednostima koje su\n"
-"moguće na vašem hardveru. Izaberite one vrijednosti koje vam najbolje\n"
-"odgovaraju (moći ćete ih promijeniti nakon instalacije). Primjer izabrane\n"
-"konfiguracije je prikazan na slici monitora."
-
-#: help.pm:304
-#, c-format
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-"U slučaju da postoji više dostupnih servera za vašu karticu, sa ili bez\n"
-"3D ubrzanja, biće vam ponuđeno da izaberete server koji najbolje odgovara\n"
-"vašim potrebama."
-
-#: help.pm:309
-#, c-format
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"Opcije\n"
-"\n"
-" Ovdje možete izabrati da li želite da vaš računar automatski pređe na\n"
-"grafički interfejs nakon uključivanja. Očito, trebate odgovoriti \"%s\" ako\n"
-"će vaš računar imati ulogu servera ili ako imate problema sa\n"
-"podešavanjem ekrana."
-
-#: help.pm:317
-#, c-format
-msgid ""
-"You now need to decide where you want to install the Mandriva Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandriva Linux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandriva Linux system, "
-"choose\n"
-"this option. Be careful, because you will not be able to undo this "
-"operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-"Na ovom mjestu trebate izabrati gdje želite instalirati Mandriva Linux\n"
-"operativni sistem na vašem hard disku. Ako je disk prazan ili ako postojeći\n"
-"operativni sistem koristi sav prostor na njemu, potrebno je da ga\n"
-"particionirate. U biti, particioniranje hard diska predstavlja logičko\n"
-"organiziranje kako bi se stvorio prostor za instaliranje vašeg novog\n"
-"Mandriva Linux sistema.\n"
-"\n"
-"Pošto su efekti particioniranja obično nepovratni, i mogu voditi do gubitka\n"
-"podataka na eventualnom postojećem operativnom sistemu, particioniranje\n"
-"može biti zastrašujuće i stresno ako ste neiskusan korisnik. Srećom, "
-"postoji\n"
-"čarobnjak koji pojednostavljuje taj proces. Prije započinjanja, molim\n"
-"pročitajte pažljivo ovaj tekst i, prije svega, nemojte žuriti.\n"
-"\n"
-"Ovisno o konfiguraciji vašeg hard diska, može biti dostupno nekoliko\n"
-"mogućnosti:\n"
-"\n"
-" * \"%s\": Ova opcija vodi na automatsko particioniranje vašeg praznog\n"
-"diska (diskova). Ako izaberete ovu opciju, neće biti postavljana\n"
-"nikakva daljnja pitanja.\n"
-"\n"
-" * \"%s\": Čarobnjak je detektovao jednu ili više postojećih\n"
-"Linux particija na vašem hard disku. Ako ih želite zadržati, izaberite ovu\n"
-"opciju. U tom slučaju, bićete upitani da izaberete tačke montiranja koje\n"
-"odgovaraju svakoj od ovih particija. Automatski će biti predložene ranije\n"
-"tačke montiranja, i najčešće je pametno zadržati ih.\n"
-"\n"
-" * \"%s\": Ako je na vašem hard\n"
-"disku instaliran Microsoft Windows koji je zauzeo sav slobodan prostor,\n"
-"moraćete napraviti nešto slobodnog prostora za GNU/Linux. To možete učiniti\n"
-"brišući vašu Microsoft Windows particiju zajedno sa podacima (vidi opciju\n"
-"``Obriši čitav disk'' ispod) ili možete promijeniti veličinu vaše Microsoft\n"
-"Windows FAT ili NTFS particije. Promjena veličine se može izvršiti bez "
-"gubitka\n"
-"podataka, pod uslovom da prethodno defragmentirate Windows particiju\n"
-"i da ona koristi FAT format. Backupovanje vaših podataka je strogo\n"
-"preporučeno. Ova mogućnost je preporučena ako namjeravate koristiti i\n"
-"Mandriva Linux i Microsoft Windows na istom računaru.\n"
-"\n"
-" Prije izbora ove opcije, molim da imate na umu da će, nakon ove\n"
-"procedure, veličina vaše Microsoft Windows particije biti manja nego\n"
-"trenutno. To znači da će Microsoft Windows prijavljivati da imate manje\n"
-"prostora za smještaj podataka ili instaliranje novog softwarea.\n"
-"\n"
-" * \"%s\": Ako želite da obrišete sve podatke i sve particije koje su\n"
-"prisutne na vašem hard disku i umjesto njih postavite vaš novi Mandriva\n"
-"Linux sistem, možete izabrati ovu opciju. Budite oprezni sa ovom\n"
-"mogućnošću, jer nećete moći poništiti vaš izbor nakon potvrde.\n"
-"\n"
-" !! Ako izaberete ovu opciju, svi podaci na vašem disku će biti "
-"izgubljeni. !!\n"
-"\n"
-" * \"%s\": Ova opcija se javlja kada je čitav disk zauzet Microsoft\n"
-"Windowsom. Ovo će jednostavno pobrisati sve na disku i početi od\n"
-"početka, particionirajući ga.\n"
-"\n"
-" !! Ako izaberete ovu opciju, svi podaci na vašem disku će biti "
-"izgubljeni. !!\n"
-"\n"
-" * \"%s\": Ako želite da ručno particionirate vaš hard disk,\n"
-"izaberite ovu opciju. Budite oprezni -- to je moćan, ali i opasan izbor. "
-"Vrlo\n"
-"lako možete izgubiti sve vaše podatke. Zato ovu opciju ne preporučujemo,\n"
-"osim ako ste nešto ovakvo već radili i imate nekog iskustva. Više uputstava\n"
-"za korištenje DiskDrake alata možete naći u ``Vodiču za početnike'', "
-"odjeljak\n"
-"``Upravljanje vašim particijama''."
-
-#: help.pm:375 install_interactive.pm:96
-#, c-format
-msgid "Use free space"
-msgstr "Koristi slobodan prostor"
-
-#: help.pm:375
-#, c-format
-msgid "Use existing partition"
-msgstr "Koristi postojeću particiju"
-
-#: help.pm:375 install_interactive.pm:138
-#, c-format
-msgid "Use the free space on the Microsoft Windows® partition"
-msgstr "Koristi slobodan prostor na Windows particiji"
-
-#: help.pm:375
-#, c-format
-msgid "Erase entire disk"
-msgstr "Pobriši čitav disk"
-
-#: help.pm:375
-#, c-format
-msgid "Remove Windows"
-msgstr "Ukloni Windows"
-
-#: help.pm:375 install_interactive.pm:233
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Ručno particioniranje diska"
-
-#: help.pm:378
-#, c-format
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
-"to remove the installation media (CD-ROM or floppy). The first thing you\n"
-"should see after your computer has finished doing its hardware tests is the\n"
-"boot-loader menu, giving you the choice of which operating system to start.\n"
-"\n"
-"The \"%s\" button shows two more buttons to:\n"
-"\n"
-" * \"%s\": enables you to create an installation floppy disk which will\n"
-"automatically perform a whole installation without the help of an operator,\n"
-"similar to the installation you've just configured.\n"
-"\n"
-" Note that two different options are available after clicking on that\n"
-"button:\n"
-"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
-"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing on a number of similar\n"
-"machines. See the Auto install section on our web site for more\n"
-"information.\n"
-"\n"
-" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
-"To use this selection with another installation, insert the floppy and\n"
-"start the installation. At the prompt, press the [F1] key, type >>linux\n"
-"defcfg=\"floppy\"<< and press the [Enter] key.\n"
-"\n"
-"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
-"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
-"/dev/fd0\"."
-msgstr ""
-"To je to. Instalacija je sada završena i vaš GNU/Linux sistem je spreman\n"
-"za upotrebu. Samo kliknite na \"%s\" da restartujete sistem. Ne zaboravite\n"
-"da izvadite instalacioni medij (CD-ROM ili disketu). Prva stvar\n"
-"koju ćete ugledati nakon što računar završi hardverske provjere je meni\n"
-"bootloadera, koji vam nudi izbor operativnog sistema koji želite pokrenuti.\n"
-"\n"
-"Dugme \"%s\" će vam ponuditi još dva dugmeta za:\n"
-"\n"
-" * \"%s\": da biste napravili instalacionu\n"
-"disketu koja će automatski izvršiti cijelu instalaciju bez intervencije\n"
-"operatora, sličnu instalaciji koju ste upravo konfigurisali.\n"
-"\n"
-" Obratite pažnju na dvije različite opcije koje su dostupne nakon\n"
-"klikanja na ovo dugme:\n"
-"\n"
-" * \"%s\". Ovo je djelomično automatizirana instalacija. Korak\n"
-"particioniranja je jedini interaktivni dio.\n"
-"\n"
-" * \"%s\". Potpuno automatska instalacija: hard disk je\n"
-"potpuno prepisan, svi podaci su izgubljeni.\n"
-"\n"
-" Ova mogućnost je vrlo prikladna kada instalirate nekoliko sličnih\n"
-"računara. Pogledajte odjeljak Automatska instalacija na našoj web stranici\n"
-"za više informacija.\n"
-"\n"
-" * \"%s\": snima listu paketa koje ste izabrali u ovoj\n"
-"instalaciji. Da biste upotrijebili ovaj izbor sa drugom instalacijom,\n"
-"ubacite disketu i započnite instalaciju. Na upitu, pritisnite tipku [F1]\n"
-"i ukucajte >>linux defcfg=\"floppy\" <<."
-
-#: help.pm:410
-#, c-format
-msgid "Generate auto-install floppy"
-msgstr "Napravi auto-instalacijsku disketu"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Replay"
-msgstr "Ponovi"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Automated"
-msgstr "Automatizovano"
-
-#: help.pm:410 install_steps_interactive.pm:1317
-#, c-format
-msgid "Save packages selection"
-msgstr "Spasi izbor paketa"
-
-#: help.pm:413
-#, c-format
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
-"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
-"reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"will not be able to recover it.\n"
-"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
-"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandriva Linux operating system installation.\n"
-"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-"Ako želite koristiti neke stare GNU/Linux particije, možda ćete poželjeti\n"
-"da reformatirate neke od njih kako biste pobrisali podatke koje sadrže.\n"
-"Ako želite to učiniti, molim takođe izaberite i te particije.\n"
-"\n"
-"Molim obratite pažnju da nije neophodno formatirati sve postojeće\n"
-"particije. Morate reformatirati particije koje sadrže operativni sistem\n"
-"(kao što su \"/\", \"/usr\" ili \"var\") ali ne morate reformatirati "
-"particije\n"
-"koje sadrže podatke koje želite zadržati (tipično /home).\n"
-"\n"
-"Molim da pažljivo izaberete particije. Nakon formatiranja, svi podaci na\n"
-"odabranim particijama će biti pobrisani i nećete biti u mogućnosti da ih\n"
-"povratite.\n"
-"\n"
-"Kliknite na \"%s\" kada budete spremni za formatiranje particija.\n"
-"\n"
-"Kliknite na \"%s\" ako želite da izaberete druge particije za instalaciju\n"
-"vašeg novog Mandriva Linux operativnog sistema.\n"
-"\n"
-"Kliknite na \"%s\" da izaberete particije koje želite provjeriti radi\n"
-"loših blokova."
-
-#: help.pm:432 install_steps_gtk.pm:392 interactive.pm:437
-#: interactive/newt.pm:318 printer/printerdrake.pm:3882
-#: standalone/drakTermServ:391 standalone/drakbackup:4065
-#: standalone/drakbackup:4101 standalone/drakbackup:4212
-#: standalone/drakbackup:4227 ugtk2.pm:488
-#, c-format
-msgid "Previous"
-msgstr "Nazad"
-
-#: help.pm:435
-#, c-format
-msgid ""
-"By the time you install Mandriva Linux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-"Kada završite instalaciju Mandriva Linuxa, moguće je da su neki paketi\n"
-"ažurirani od zadnjeg izdanja. Moguće je da su ispravljeni bugovi ili\n"
-"rješena neka sigurnosna pitanja. Ako želite iskoristiti ova unaprjeđenja,\n"
-"možete ih sada dobaviti sa Interneta. Izaberite \"%s\" ako imate ispravnu\n"
-"Internet vezu, ili \"%s\" ako ćete radije instalirati ažurirane pakete\n"
-"kasnije.\n"
-"\n"
-"Ako izaberete \"%s\" dobićete listu web lokacija sa kojih se mogu skinuti\n"
-"novi paketi. Izaberite ono najbliže vama. Pojaviće se stablo za izbor\n"
-"paketa: pregledajte izabrano i pritisnite \"%s\" da dobavite i\n"
-"instalirate izabrane pakete, ili \"%s\" za prekid."
-
-#: help.pm:445 help.pm:589 install_steps_gtk.pm:391
-#: install_steps_interactive.pm:132
-#, c-format
-msgid "Install"
-msgstr "Instalacija"
-
-#: help.pm:448
-#, c-format
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
-"\n"
-"If you do not know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandriva Linux\n"
-"Control Center.\n"
-"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-"Na ovom mjestu, DrakX vam omogućuje da izaberete sigurnosni nivo\n"
-"koji želite imati na ovom računaru. Kao pravilo, sigurnosni nivo treba biti\n"
-"tim viši što su važniji podaci na računaru, a pogotovo ako će računar biti\n"
-"direktno izložen Internetu. Većim nivoom sigurnosti obično gubite na\n"
-"jednostavnosti korištenja.\n"
-"\n"
-"Ako ne znate šta izabrati, zadržite ponuđenu opciju. Možete promijeniti\n"
-"nivo sigurnosti naknadno koristeći program draksec iz Mandriva Linux\n"
-"Kontrolnog centra.\n"
-"\n"
-"Polje \"%s\" obavještava sistem o korisniku koji će biti odgovoran za\n"
-"sigurnost. Njemu će biti upućena sigurnosna obavještenja."
-
-#: help.pm:459
-#, c-format
-msgid "Security Administrator"
-msgstr "Sigurnosni administrator"
-
-#: help.pm:462
-#, c-format
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandriva Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"%s\": this option deletes all partitions on the selected hard drive\n"
-"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
-"partitions in the free space of your hard drive\n"
-"\n"
-"\"%s\": gives access to additional features:\n"
-"\n"
-" * \"%s\": saves the partition table to a floppy. Useful for later\n"
-"partition-table recovery if necessary. It is strongly recommended that you\n"
-"perform this step.\n"
-"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
-"\n"
-" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it does not always\n"
-"work.\n"
-"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
-"\n"
-" * \"%s\": un-checking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
-"\n"
-" * \"%s\": use this option if you wish to use a wizard to partition your\n"
-"hard drive. This is recommended if you do not have a good understanding of\n"
-"partitioning.\n"
-"\n"
-" * \"%s\": use this option to cancel your changes.\n"
-"\n"
-" * \"%s\": allows additional actions on partitions (type, options, format)\n"
-"and gives more information about the hard drive.\n"
-"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"When defining the size of a partition, you can finely set the partition\n"
-"size by using the Arrow keys of your keyboard.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and the [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
-"\n"
-" * Ctrl-d to delete a partition\n"
-"\n"
-" * Ctrl-m to set the mount point\n"
-"\n"
-"To get information about the different file system types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Sada trebate izabrati koje particije želite koristiti za instalaciju vašeg\n"
-"Mandriva Linux sistema. Ako su particije već definisane, iz prijašnje\n"
-"GNU/Linux instalacije ili nekim drugim alatom za particioniranje, možete\n"
-"koristiti postojeće particije. U suprotnom, sada morate definisati\n"
-"particije vašeg hard diska.\n"
-"\n"
-"Da biste napravili particije, najprije morate izabrati hard disk. Možete\n"
-"izabrati disk za particioniranje klikom na ''hda'' za prvi IDE disk, "
-"''hdb''\n"
-"za drugi, ''sda'' za prvi SCSI disk i slično.\n"
-"\n"
-"Pri particioniranju hard diska, možete koristiti sljedeće opcije:\n"
-"\n"
-" * \"%s\": ova opcija briše sve particije na izabranom hard disku\n"
-"\n"
-" * \"%s\": ova opcija vam omogućuje da automatski napravite ext3\n"
-"i swap particije u slobodnom prostoru vašeg hard diska\n"
-"\n"
-"\"%s\" omogućuje pristup dodatnim mogućnostima:\n"
-"\n"
-" * \"%s\": snima tabelu particija na disketu. Ovo je korisno za\n"
-"kasnije vraćanje tabele particija, ako je potrebno. Strogo je preporučeno\n"
-"da izvršite ovaj korak.\n"
-"\n"
-" * \"%s\": omogućuje vam da vratite ranije snimljenu tabelu\n"
-"particija sa diskete.\n"
-"\n"
-" * \"%s\": ako je vaša tabela particija oštećena, možete je pokušati\n"
-"obnoviti koristeći ovu opciju. Molim budite pažljivi i zapamtite da\n"
-"ova opcija ne uspijeva svaki put.\n"
-"\n"
-" * \"%s\": poništava sve promjene i ponovo učitava originalnu tabelu\n"
-"particija sa hard diska.\n"
-"\n"
-" * \"%s\": isključivanjem ove opcije ćete prisiliti korisnike da ručno\n"
-"montiraju i demontiraju izmjenjive medije kao što su diskete i\n"
-"CD-ROMovi.\n"
-"\n"
-" * \"%s\": koristite ovu opciju ako želite koristiti čarobnjak za\n"
-"particioniranje vašeg hard diska. Ovo je preporučeno ako nemate\n"
-"izraženo razumijevanje particioniranja.\n"
-"\n"
-" * \"%s\": koristite ovu opciju da poništite vaše izmjene.\n"
-"\n"
-" * \"%s\": omogućuje dodatne akcije na particijama (tip, opcije,\n"
-"formatiranje) i daje više informacija o hard disku.\n"
-"\n"
-" * \"%s\": kada završite particioniranje diska, ovo će zapisati\n"
-"vaše izmjene na disk.\n"
-"\n"
-"Prilikom definisanja veličine particije, možete fino podešavati veličinu\n"
-"particije koristeći dugmad sa strjelicama na vašoj tastaturi.\n"
-"\n"
-"Napomena: svaku opciju možete postići tastaturom. Između particija\n"
-"se krećete koristeći dugme [Tab] i strjelice [Gore/Dolje].\n"
-"\n"
-"Kada izaberete particiju, možete koristiti:\n"
-"\n"
-" * Ctrl-C da napravite novu particiju (ako ste izabrali prazan prostor)\n"
-"\n"
-" * Ctrl-D da obrišete particiju\n"
-"\n"
-" * Ctrl-M da podesite tačku montiranja\n"
-"\n"
-"Da biste dobili informacije o raznim tipovima datotečnog sistema koji\n"
-"su dostupni, pročitajte poglavlje o ext2FS iz ''Referentnog priručnika''.\n"
-"\n"
-"Ako instalirate na PPC računar, trebate napraviti malu HFS ''bootstrap''\n"
-"particiju od najmanje 1 MB koju će koristiti yaboot bootloader. Ako se\n"
-"odlučite da ovu particiju učinite nešto većom, npr. 50 MB, primjetićete\n"
-"da je ona korisno mjesto za čuvanje rezervnog kernela ili ramdisk slika\n"
-"za hitne slučajeve."
-
-#: help.pm:531
-#, c-format
-msgid "Removable media auto-mounting"
-msgstr "Automatsko montiranje izmjenjivog medija"
-
-#: help.pm:531
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Prekidač normalnog/ekspertnog moda"
-
-#: help.pm:534
-#, c-format
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandriva Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Na vašem hard disku ustanovljeno je više od jedne Microsoft particije.\n"
-"Molim izaberite onu koju želite smanjiti kako biste instalirali vaš\n"
-"Mandriva Linux operativni sistem.\n"
-"\n"
-"Svaka particija je navedena ovako: \"Linux ime\", \"Windows ime\",\n"
-"\"Kapacitet\".\n"
-"\n"
-"\"Linux ime\" se sastoji od: \"vrste hard diska\", \"broja hard diska\",\n"
-"\"broja particije\" (na primjer, \"hda1\").\n"
-"\n"
-"\"Vrsta hard diska\" je \"hd\" ako je vaš hard disk IDE, a \"sd\" ako je\n"
-"u pitanju SCSI hard disk.\n"
-"\n"
-"\"Broj hard diska\" je uvijek slovo nakon \"hd\" ili \"sd\". Kod IDE hard\n"
-"diskova:\n"
-"\n"
-" * \"a\" znači \"master hard disk na primarnom IDE kontroleru\";\n"
-"\n"
-" * \"b\" znači \"slave hard disk na primarnom IDE kontroleru\";\n"
-"\n"
-" * \"c\" znači \"master hard disk na sekundarnom IDE kontroleru\";\n"
-"\n"
-" * \"d\" znači \"slave hard disk na sekundarnom IDE kontroleru\";\n"
-"\n"
-"Kod SCSI hard diskova, \"a\" je \"disk sa najnižim SCSI IDom\", \"b\"\n"
-"je \"drugi najniži SCSI ID\", itd.\n"
-"\n"
-"\"Windows ime\" je slovo kojim je vaš hard disk označen pod Windowsom\n"
-"(prva particija prvog diska se zove \"C:\")."
-
-#: help.pm:565
-#, c-format
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country is not in "
-"the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-"\"%s\": provjerite trenutni izbor države. Ako se ne nalazite ovdje,\n"
-"kliknite na dugme \"%s\" i izaberite neku drugu državu. Ako se vaša\n"
-"zemlja ne nalazi na listi, kliknite na dugme \"%s\" kako biste dobili\n"
-"listu svih država."
-
-#: help.pm:570
-#, c-format
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandriva Linux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandriva Linux system. Your current "
-"partitioning\n"
-"scheme and user data will not be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandriva Linux version \"8.1\" is not recommended."
-msgstr ""
-"Ovaj korak se aktivira samo ako je na vašem računaru pronađena postojeća\n"
-"GNU/Linux particija.\n"
-"\n"
-"DrakX sada treba znati da li želite izvršiti novu instalaciju ili\n"
-"nadogradnju postojećeg Mandriva Linux sistema:\n"
-"\n"
-" * \"%s\". Najčešće ovo će u potpunosti obrisati stari sistem. Ipak,\n"
-"ovisno o vašoj šemi particioniranja, možete spriječiti da neki od vaših\n"
-"postojećih podataka (prije svega \"home\" direktoriji) budu prepisani.\n"
-"Ako želite promijeniti particioniranje starog hard diska ili promijeniti\n"
-"datotečni sistem, trebate koristiti ovu opciju.\n"
-"\n"
-" * \"%s\". Ova vrsta instalacije vam omogućuje da ažurirate pakete\n"
-"koji su trenutno instalirani na vašem Mandriva Linux sistemu. Vaša trenutna\n"
-"šema particioniranja i korisnički podaci neće biti izmijenjeni. Većina\n"
-"ostalih koraka konfiguracije ostaju kao što jesu, slično običnoj "
-"instalaciji.\n"
-"\n"
-"Opcija ''Nadogradi'' bi trebala raditi ispravno na Mandriva Linux sistemima\n"
-"koji koriste verziju \"8.1\" ili kasniju. Obavljanje nadogradnje na ranijim\n"
-"verzijama Mandriva Linuxa, prije verzije \"8.1\", nije preporučeno."
-
-#: help.pm:592
-#, c-format
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
-"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard do not match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
-"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
-"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-"Ovisno o jeziku koji izaberete (), DrakX će\n"
-"automatski izabrati određeni tip tastature. Provjerite da li vam izabrano\n"
-"odgovara ili odaberite neki drugi raspored tastature.\n"
-"\n"
-"Ipak, možda nemate tastaturu koja tačno odgovara vašem jeziku: npr.\n"
-"ako ste Švajcarac koji govori engleski, možda imate švajcarsku tastaturu.\n"
-"Ili ako govorite engleski ali se nalazite u Kvibeku, možda ćete se naći u\n"
-"situaciji gdje se vaš jezik i tastatura ne poklapaju. U svakom slučaju, "
-"ovaj\n"
-"korak instalacije vam omogućava da izaberete odgovarajuću tastaturu sa "
-"liste.\n"
-"\n"
-"Kliknite na dugme \"%s\" kako bi vam bila predstavljena potpuna lista\n"
-"podržanih tastatura.\n"
-"\n"
-"Ako izaberete raspored tipaka koji je baziran na ne-latiničnoj abecedi,\n"
-"sljedeći dijalog će vam ponuditi da izaberete tipke pomoću kojih možete\n"
-"prebaciti tastaturu između latiničnog i ne-latiničnog rasporeda."
-
-#: help.pm:610
-#, c-format
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandriva Linux's use of UTF-8 "
-"will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-"Prvi korak je da izaberete preferirani jezik.\n"
-"\n"
-"Vaš izbor preferiranog jezika će se odraziti na jezik dokumentacije,\n"
-"instalacione procedure i generalno sistema. Najprije izaberite oblast u\n"
-"kojoj se nalazite, a zatim jezik kojim govorite.\n"
-"\n"
-"Klikanjem na dugme \"%s\" možete izabrati druge jezike koje\n"
-"želite instalirati na vašu radnu stanicu, time instalirajući sistemsku\n"
-"dokumentaciju i programe za svaki od izabranih jezika. Na primjer, ako\n"
-"će vaš računar koristiti osobe iz španije, izaberite Engleski kao osnovni\n"
-"jezik na listi, a \"%s\" u oblasti Više opcija.\n"
-"\n"
-"O UTF-8 (Unicode) podršci. Unicode je novi način kodiranja znakova čiji\n"
-"je cilj da obuhvati sve postojeće jezike. Ipak puna podrška za njega pod\n"
-"GNU/Linuxom je još uvijek u razvoju. Iz tog razloga, Mandriva Linux će ga\n"
-"koristiti ovisno o drugim izborima korisnika:\n"
-"\n"
-" * Ako izaberete jezike sa raširenim starim kodiranjem (latin1 jezici, "
-"ruski,\n"
-"japanski, kineski, korejanski, tajlandski, grčki, turski, većina iso-8859-2\n"
-"jezika), biće korišteno staro kodiranje;\n"
-"\n"
-" * Za ostale jezike podrazumijeva se Unicode;\n"
-"\n"
-" * Ako je potrebno dva ili više jezika koji ne koriste isto kodiranje, "
-"Unicode\n"
-"će se koristiti za čitav sistem;\n"
-"\n"
-" * Konačno, Unicode može biti nametnut sistemu ako korisnik to odluči\n"
-"izborom opcije \"%s\" bez obzira na izabrane jezike.\n"
-"n\n"
-"Obratite pažnju da niste ograničeni na samo jedan dodatni jezik. Možete\n"
-"ih izabrati nekoliko ili čak ih instalirati sve klikom na polje \"%s\".\n"
-"Vaš izbor podrške za neki jezik označava da će biti instaliran prijevod,\n"
-"fontovi, pravila za provjeru pravopisa itd. za taj jezik.n\n"
-"\n"
-"Da biste izabrali između raznih jezika instaliranih na vašem sistemu, "
-"možete\n"
-"pokrenuti kao \"root\" naredbu \"localedrake\", čime mijenjate\n"
-"jezik koji koristi čitav sistem. Izvršavanjem te naredbe kao običan\n"
-"korisnik mijenjate jezičke postavke samo za tog konkretnog korisnika."
-
-#: help.pm:648
-#, c-format
-msgid "Espanol"
-msgstr "Espanol"
-
-#: help.pm:651
-#, c-format
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
-"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-"Obično DrakX nema problema da odredi broj dugmadi na vašem mišu.\n"
-"Ako ima, pretpostaviće da imate miš sa dva dugmeta i podesiće simulaciju\n"
-"trećeg dugmeta. Treće dugme se može postići na mišu sa dva dugmeta\n"
-"istovremenim klikom na lijevo i desno dugme miša. DrakX će automatski\n"
-"znati da li miš koristi PS/2, serijski ili USB interfejs.\n"
-"\n"
-"Ako imate miš sa tri dugmeta bez točkića, možete izabrati tip miša pod\n"
-"imenom \"%s\". DrakX će zatim konfigurisati vašeg miša tako da može\n"
-"simulirati rad točkića trećim dugmetom. Da biste ovo postigli, držite\n"
-"srednje dugme miša i pomjerajte ga gore-dolje.\n"
-"\n"
-"Ako iz nekog razloga želite navesti drugačiji tip miša, izaberite ga sa\n"
-"ponuđene liste.\n"
-"\n"
-"Možete izabrati stavku \"%s\" da izaberete ``opšti'' tip miša koji bi\n"
-"trebao raditi sa skoro svim miševima.\n"
-"Ako izaberete miš različit od ponuđenog, biće prikazan testni ekran.\n"
-"Koristite miš i točkić da potvrdite da su postavke tačne i da miš radi\n"
-"ispravno. Ako miš ne radi kako treba, pritisnite razmaknicu ili tipku Enter\n"
-"da prekinete test i vratite se na listu izbora.\n"
-"\n"
-"Miševi sa točkićem često nisu prepoznati automatski, stoga trebate izabrati\n"
-"miš na listi. Pazite da izaberete odgovarajući port na koji je vaš miš\n"
-"priključen. Nakon izbora miša i pritiska na dugme \"%s\", na ekranu će\n"
-"biti prikazana slika miša. Pomjerajte točkić miša kako biste provjerili da "
-"li\n"
-"ispravno funkcioniše. Kada vidite da se točkić na ekranu pomjera onako\n"
-"kako vi vrtite stvarni točkić, provjerite dugmad i provjerite da li se "
-"pokazivač\n"
-"na ekranu pomjera onako kako vi pomjerate miš."
-
-#: help.pm:682
-#, c-format
-msgid "with Wheel emulation"
-msgstr "sa simulacijom točkića"
-
-#: help.pm:682
-#, c-format
-msgid "Universal | Any PS/2 & USB mice"
-msgstr "Univerzalni | Bilo koji PS/2 ili USB miš"
-
-#: help.pm:685
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Molim izaberite ispravan port. Na primjer, \"COM1\" port pod Windows\n"
-"operativnim sistemom, pod GNU/Linuxom se zove \"ttyS0\" ."
-
-#: help.pm:689
-#, c-format
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: do not make the password too long or too complicated because "
-"you\n"
-"must be able to remember it!\n"
-"\n"
-"The password will not be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you do not know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-"Ovo je najvažnija odluka za sigurnost vašeg GNU/Linux sistema: trebate\n"
-"unijeti \"root\" šifru, \"Root\" je sistemski administrator i jedini\n"
-"korisnik kojem je dozvoljeno da updatuje sistem, dodaje druge korisnike,\n"
-"mijenja konfiguraciju sistema itd. Ukratko, \"root\" može raditi sve! Stoga\n"
-"trebate izabrati šifru koju je teško pogoditi - DrakX će vam reći da li je "
-"šifra\n"
-"koju ste odabrali prejednostavna. Kao što možete vidjeti, niste prisiljeni "
-"da\n"
-"unesete šifru, ali vam savjetujemo da to uradite. GNU/Linux je podložan\n"
-"operatorskim greškama kao i bilo koji drugi operativni sistem. Pošto\n"
-"\"root\" može prevazići sva ograničenja i nenamjerno pobrisati sve podatke\n"
-"na particijama neoprezno im pristupajući, važno je da je teško postati \"root"
-"\".\n"
-"\n"
-"Šifra treba biti kombinacija alfanumeričkih znakova i biti barem 8 znakova\n"
-"duga. Nikad ne zapisujte \"root\" šifru -- time vaš sistem postaje lagano\n"
-"kompromitovati.\n"
-"\n"
-"Jedan izuzetak: ne dozvolite da šifra bude preduga ili prekomplikovana\n"
-"pošto ćete je morati zapamtiti!\n"
-"\n"
-"Šifra neće biti prikazana na ekranu dok je unosite. Da bismo smanjili\n"
-"mogućnost greške zbog kucanja naslijepo, moraćete unijeti šifru dva puta.\n"
-"Ako nekim slučajem ponovite istu grešku dva puta, ovu ''neispravnu'' šifru\n"
-"trebate koristiti prilikom prve prijave kao \"root\".\n"
-"\n"
-"Ako želite da pristup ovom računaru bude kontroliran pomoću servera za\n"
-"provjeru identiteta (authentication), kliknite na dugme \"%s\".\n"
-"\n"
-"Ako vaša mreža koristi LDAP, NIS ili PDC Windows domen servise za\n"
-"provjeru identiteta, izaberite odgovarajući kao \"%s\". Ako ne znate koji\n"
-"koristiti, pitajte vašeg mrežnog administratora.\n"
-"\n"
-"Ako imate problema sa pamćenjem šifara, ako vaš računar neće biti spojen\n"
-"na Internet i ako apsolutno vjerujete svakome ko mu ima fizički pristup,\n"
-"možete izabrati opciju \"%s\"."
-
-#: help.pm:723
-#, c-format
-msgid "authentication"
-msgstr "provjera autentičnosti"
-
-#: help.pm:726
-#, c-format
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can not determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" will not install any boot loader. Use this option only if "
-"you\n"
-"know what you're doing."
-msgstr ""
-"\"Boot loader\" je mali program koji se pokreće prilikom paljenja računara.\n"
-"On je odgovoran za izbor i pokretanje operativnog sistema. Faza izbora boot\n"
-"loadera je obično automatizovana. DrakX će analizirati boot sektor diska i\n"
-"postupati u skladu s onim što zatekne tamo:\n"
-"\n"
-" * ako pronađe Windows boot sektor, biće zamijenjen sa GRUB/LILO boot\n"
-"sektorom. Na ovaj način bićete u mogućnosti da učitate ili GNU/Linux ili\n"
-"neki drugi OS koji je instaliran na vašem računaru.\n"
-"\n"
-" * ako pronađe GRUB ili LILO boot sektor, zamijeniće ga novim.\n"
-"\n"
-"Ako ne može donijeti odluku, DrakX će vas pitati gdje da postavi\n"
-"bootloader. Generalno, \"%s\" je najsigurnije mjesto. Birajući \"%s\"\n"
-"izbjeći ćete instalaciju bootloadera. Koristite ovu opciju samo ako znate\n"
-"šta radite."
-
-#: help.pm:743
-#, c-format
-msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you do not like your printing\n"
-"system you may change it by running PrinterDrake from the Mandriva Linux\n"
-"Control Center and clicking on the \"%s\" button."
-msgstr ""
-"Sada je vrijeme da izaberete sistem štampe za vaš računar. Drugi\n"
-"operativni sistemi vam možda nude jedan, ali Mandriva Linux nudi\n"
-"dva. Svaki od ovih sistema je najbolji za određenu vrstu konfiguracije.\n"
-"\n"
-"* \"%s\" -- skraćeno za ``štampaj i nemoj stavljati u red'' (print, do not\n"
-"queue) je najbolji izbor ako imate direktnu vezu na štampač, želite izlaz\n"
-"za paniku u slučajevima zaglavljivanja papira i nemate mrežne štampače.\n"
-"(\"%s\" može riješiti samo vrlo jednostavne mrežne slučajeve i pomalo je\n"
-"spor kada se koristi sa mrežama.) Preporučujemo da koristite \"pdq\" ako\n"
-"je ovo vaše prvo iskustvo sa GNU/Linuxom.\n"
-"\n"
-"* \"%s\" znači ``Common UNIX Printing System'' (uobičajeni UNIX sistem "
-"štampe)\n"
-"je odličan izbor za štampanje na štampač koji se nalazi lokalno ili s druge\n"
-"strane planete. Vrlo ga je jednostavno podesiti i može služiti kao server "
-"ili\n"
-"klijent za prastari \"lpd\" sistem štampe, tako da je kompatibilan sa "
-"starijim\n"
-"operativnim sistemima kojima možda još trebaju usluge štampanja. Mada je\n"
-"vrlo moćan, osnovno podešavanje je skoro jednako lagano kao za \"pdq\".\n"
-"Ako želite simulirati \"lpd\" server, provjerite da li ste pokrenuli \"cups-"
-"lpd\"\n"
-"servis. \"%s\" uključuje grafičke alate za štampanje ili izbor opcija "
-"štampača,\n"
-"te za upravljanje štampačem.\n"
-"\n"
-"Ako sada napravite izbor, pa kasnije zaključite da vam se ne sviđa izabrani\n"
-"sistem štampe, možete ga promijeniti pokretanjem PrinterDrake iz\n"
-"Mandriva Linux Kontrolnog centra i klikanjem na dugme \"%s\"."
-
-#: help.pm:766
-#, c-format
-msgid "pdq"
-msgstr "pdq"
-
-#: help.pm:766 printer/cups.pm:117 printer/data.pm:129
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
-
-#: help.pm:766
-#, c-format
-msgid "Expert"
-msgstr "Ekspert"
-
-#: help.pm:769
-#, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"DrakX će najprije potražiti sve IDE uređaje prisutne na vašem računaru.\n"
-"Također će pretražiti sistem za jednu ili više PCI SCSI kartica. Ako\n"
-"SCSI kartica bude pronađena, DrakX će automatski instalirati odgovarajući\n"
-"drajver.\n"
-"\n"
-"Budući da pronalaženje hardware-a nikad nije savršeno, DrakX možda neće\n"
-"pronaći vaše hard diskove. Ako se to desi, moraćete ih navesti ručno.\n"
-"\n"
-"Ako je potrebno da ručno odaberete PCI SCSI adapter, DrakX će vas pitati\n"
-"da li želite navesti neke opcije za njega. Trebate dopustiti DrakXu da\n"
-"ispita hardware za neke opcije specifične za tu karticu. Obično DrakX "
-"prolazi\n"
-"kroz ovaj korak bez problema.\n"
-"\n"
-"Ako DrakX ne može ispitati opcije koje trebaju biti proslijeđene, moraćete\n"
-"ručno navesti opcije za drajver."
-
-#: help.pm:787
-#, c-format
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-"\"%s\": ako je na vašem sistemu otkrivena zvučna kartica, ona će\n"
-"biti prikazana ovdje. Ako primijetite da prikazana zvučna kartica nije ona\n"
-"koja je ustvari dio vašeg sistema, možete kliknuti na dugme i odabrati neki\n"
-"drugi drajver."
-
-#: help.pm:789 help.pm:856 install_steps_interactive.pm:991
-#: install_steps_interactive.pm:1008
-#, c-format
-msgid "Sound card"
-msgstr "Zvučna kartica"
-
-#: help.pm:792
-#, c-format
-msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"is not in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it is not\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandriva Linux Control Center after the installation has finished to "
-"benefit\n"
-"from full in-line help.\n"
-"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandriva Linux Control Center.\n"
-"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-"DrakX će vam pružiti sažetak raznih informacija koje su prikupljene\n"
-"o vašem sistemu. Ovisno o instaliranom hardveru, vjerovatno imate\n"
-"neke ili sve od navedenih stavki. Pojedinačna stavka se sastoji od\n"
-"onoga što je potrebno podesiti, nakon čega slijedi kraći sažetak trenutne\n"
-"konfiguracije. Da biste ovo izmijenili, kliknite na odgovarajuće dugme \"%s"
-"\".\n"
-"\n"
-"* \"%s\": provjerite trenutnu mapu tastature i izmijenite je ako je\n"
-" potrebno.\n"
-"\n"
-"* \"%s\": provjerite trenutno izabranu državu. Ako se nalazite negdje\n"
-"drugo, kliknite na dugme \"%s\" i izaberite neku drugu. Ako se vaša\n"
-"zemlja ne nalazi na prikazanoj listi, kliknite na dugme \"%s\" da biste\n"
-"dobili cjelokupnu listu zemalja.\n"
-"\n"
-"* \"%s\": DrakX automatski određuje vašu vremensku zonu\n"
-"na osnovu države koju ste izabrali. Možete kliknuti na dugme \"%s\"\n"
-"ako ovo nije ispravno.\n"
-"\n"
-"* \"%s\": provjerite trenutnu konfiguraciju miša i klinite na dugme da je\n"
-"promijenite ako je to potrebno.\"\n"
-"\n"
-"* \"%s\": klikanjem na dugme \"%s\" otvoriće se čarobnjak za\n"
-"podešavanje štampača. Pogledajte odgovarajuće poglavlje ''Vodiča za\n"
-"početnike'' za više informacija o podešavanju novog štampača. Interfejs\n"
-"koji je prikazan u našem priručniku je sličan onom koji će biti korišten "
-"tokom instalacije.\n"
-"\n"
-"* \"%s\": ako je na vašem sistemu otkrivena zvučna kartica, ona će\n"
-"biti prikazana ovdje. Ako primjetite da prikazana zvučna kartica nije ona\n"
-"koja je ustvari dio vašeg sistema, možete kliknuti na dugme i odabrati neki\n"
-"drugi drajver.\n"
-"\n"
-"* \"%s\": ako je na vašem sistemu prepoznata TV kartica, biće\n"
-"prikazana ovdje. Ako imate TV karticu koja nije prepoznata, kliknite na\n"
-"dugme \"%s\" kako biste pokušali podesiti je ručno.\n"
-"\n"
-" * \"%s\": možete kliknuti na \"%s\" da promijenite parametre pridružene\n"
-"kartici ako mislite da je konfiguracija neispravna.\n"
-"\n"
-"* \"%s\": DrakX će podesiti vaš grafički interfejs za rad na\n"
-"rezoluciji \"800x600\" ili \"1024x768\". Ako vam to ne odgovara, kliknite\n"
-"na dugme \"%s\" kako biste drugačije podesili vaš interfejs.\n"
-"\n"
-"* \"%s\": ako želite, možete podesiti vaš Internet pristup ili pristup\n"
-"lokalnoj mreži. Pogledajte štampanu dokumentaciju ili koristite\n"
-"Mandriva Linux Kontrolni centar nakon što je završena instalacija\n"
-"kako biste koristili ugrađenu pomoć. \n"
-" * \"%s\": omogućuje vam da podesite adrese HTTP i FTP proxyja ako\n"
-"se računar na koji instalirate nalazi iza proxy servera.\n"
-"\n"
-"* \"%s\": ovdje možete promijeniti nivo sigurnosti sistema koji\n"
-"je podešen u prethodnom koraku ().\n"
-"\n"
-"* \"%s\": ako planirate povezati vaš računar na Internet, pametno je\n"
-"zaštititi ga od upada postavljanjem firewalla. Pogledajte odgovarajuće\n"
-"poglavlje ''Vodiča za početnike'' za detalje o podešavanju firewalla.\n"
-"\n"
-"* \"%s\": ako želite promijeniti postavke bootloadera, kliknite na to\n"
-"dugme. Ovo bi trebalo biti rezervisano za napredne korisnike. Pogledajte\n"
-"štampanu dokumentaciju ili pomoć za bootloader konfiguraciju uključenu\n"
-"u Mandriva Linux Kontrolni centar.\n"
-"\n"
-"* \"%s\": ovdje možete fino podešavati koji servisi će biti pokrenuti\n"
-"na vašem računaru. Ako planirate koristiti ovaj računar kao server,\n"
-"dobra je ideja još jednom pregledati ove postavke."
-
-#: help.pm:856 install_steps_interactive.pm:855
-#: install_steps_interactive.pm:950 standalone/drakclock:100
-#: standalone/finish-install:56 standalone/finish-install:57
-#, c-format
-msgid "Timezone"
-msgstr "Vremenska zona"
-
-#: help.pm:856 install_steps_interactive.pm:1024
-#, c-format
-msgid "TV card"
-msgstr "TV kartica"
-
-#: help.pm:856
-#, c-format
-msgid "ISDN card"
-msgstr "ISDN kartica"
-
-#: help.pm:856
-#, c-format
-msgid "Graphical Interface"
-msgstr "Grafički interfejs"
-
-#: help.pm:856 install_any.pm:1733 install_steps_interactive.pm:1042
-#: standalone/drakbackup:2051
-#, c-format
-msgid "Network"
-msgstr "Mreža"
-
-#: help.pm:856 install_steps_interactive.pm:1054
-#, c-format
-msgid "Proxies"
-msgstr "Proxy-ji"
-
-#: help.pm:856 install_steps_interactive.pm:1065
-#, c-format
-msgid "Security Level"
-msgstr "Sigurnosni nivo"
-
-#: help.pm:856 install_steps_interactive.pm:1079 network/drakfirewall.pm:189
-#, c-format
-msgid "Firewall"
-msgstr "Firewall"
-
-#: help.pm:856 install_steps_interactive.pm:1095
-#, c-format
-msgid "Bootloader"
-msgstr "Bootloader"
-
-#: help.pm:856 install_steps_interactive.pm:1108 services.pm:114
-#: services.pm:157 services.pm:193
-#, c-format
-msgid "Services"
-msgstr "Servisi"
-
-#: help.pm:859
-#, c-format
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Izaberite hard disk koji želite obrisati kako biste instalirali vašu novu\n"
-"Mandriva Linux particiju. Budite pažljivi, svi podaci koji se nalaze na\n"
-"njemu će biti izgubljeni i neće se moći vratiti!"
-
-#: help.pm:864
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-"Kliknite na \"%s\" ako želite obrisati sve podatke i particije koje\n"
-"su prisutne na ovom hard disku. Budite oprezni, jer nakon klikanja na\n"
-"\"%s\" nećete moći vratiti podatke i particije koji se trenutno nalaze\n"
-"na ovom hard disku, uključujući i sve Windows podatke.\n"
-"\n"
-"Kliknite na \"%s\" da prekinete ovu operaciju bez gubitka\n"
-"podataka i particija na ovom hard disku."
-
-#: help.pm:870
-#, c-format
-msgid "Next ->"
-msgstr "Dalje ->"
-
-#: help.pm:870
-#, c-format
-msgid "<- Previous"
-msgstr "<- Nazad"
-
-#: install2.pm:115
-#, c-format
-msgid ""
-"Can not access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"Ne mogu pristupiti kernelskim modulima koji odgovaraju vašem kernelu "
-"(nedostaje datoteka %s), što obično znači da je vaša boot disketa zastarjela "
-"u odnosu na instalacioni medij (napravite noviju boot disketu)"
-
-#: install2.pm:167
-#, c-format
-msgid "You must also format %s"
-msgstr "Morate takođe formatirati i %s"
-
-#: install_any.pm:406
-#, c-format
-msgid "Do you have further supplementary media?"
-msgstr "Imate li neke dodatne medije?"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:409
-#, c-format
-msgid ""
-"The following media have been found and will be used during install: %s.\n"
-"\n"
-"\n"
-"Do you have a supplementary installation medium to configure?"
-msgstr ""
-
-#: install_any.pm:422 printer/printerdrake.pm:3211
-#: printer/printerdrake.pm:3218 standalone/scannerdrake:182
-#: standalone/scannerdrake:190 standalone/scannerdrake:241
-#: standalone/scannerdrake:248
-#, c-format
-msgid "CD-ROM"
-msgstr "sa CDROMa"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (HTTP)"
-msgstr "Mreža (HTTP)"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (FTP)"
-msgstr "Mreža (FTP)"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (NFS)"
-msgstr ""
-
-#: install_any.pm:452
-#, c-format
-msgid "Insert the CD 1 again"
-msgstr "Ubacite ponovo CD 1"
-
-#: install_any.pm:478 network/netconnect.pm:866 standalone/drakbackup:114
-#, c-format
-msgid "No device found"
-msgstr "Nije pronađen nijedan uređaj"
-
-#: install_any.pm:483
-#, c-format
-msgid "Insert the CD"
-msgstr "Ubacite CD"
-
-#: install_any.pm:488
-#, c-format
-msgid "Unable to mount CD-ROM"
-msgstr "Ne mogu demontirati CD-ROM"
-
-#: install_any.pm:521 install_any.pm:542
-#, c-format
-msgid "URL of the mirror?"
-msgstr "URL mirrora?"
-
-#: install_any.pm:526
-#, c-format
-msgid "NFS setup"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "Please enter the hostname and directory of your NFS media"
-msgstr ""
-
-#: install_any.pm:527
-#, c-format
-msgid "Hostname of the NFS mount ?"
-msgstr ""
-
-#: install_any.pm:527 standalone/draknfs:288
-#, c-format
-msgid "Directory"
-msgstr "Direktorij"
-
-#: install_any.pm:580
-#, c-format
-msgid ""
-"Can't find a package list file on this mirror. Make sure the location is "
-"correct."
-msgstr "Ne mogu pronaći hdlist datoteku na ovom mirroru"
-
-#: install_any.pm:657
-#, c-format
-msgid "Removing packages prior to upgrade..."
-msgstr ""
-
-#: install_any.pm:699
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Tražim već instalirane pakete..."
-
-#: install_any.pm:703
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Pronalazim pakete za unaprjeđenje..."
-
-#: install_any.pm:781
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done."
-msgstr ""
-"Promijenite vaš CD-ROM!\n"
-"Molim ubacite CD označen sa \"%s\" u vaš CD-ROM uređaj i pritisnite \"U redu"
-"\" kad ste spremni."
-
-#: install_any.pm:793
-#, c-format
-msgid "Copying in progress"
-msgstr "Kopiranje u toku"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:935
-#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They do not have any known security\n"
-"issues, but some new ones could be found. In that case, you must make sure\n"
-"to upgrade as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"Izabrali ste sljedeći server (servere): %s\n"
-"\n"
-"\n"
-"Ovi serveri su aktivirani automatski. Oni nemaju nikakvih poznatih "
-"sigurnosnih\n"
-"problema, ali možda će biti pronađeni u budućnosti. Ako se to desi, morate "
-"ih\n"
-"upgrade-ovati što prije bude moguće.\n"
-"\n"
-"\n"
-"Da li zaista želite instalirati ove servere?\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:958
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-"Da bi se omogućilo unaprjeđenje vašeg sistema, biće uklonjeni sljedeći "
-"paketi: %s\n"
-"\n"
-"\n"
-"Želite li zaista deinstalirati ove pakete?\n"
-
-#: install_any.pm:1394 partition_table.pm:597
-#, c-format
-msgid "Error reading file %s"
-msgstr "Greška u čitanju datoteke %s"
-
-#: install_any.pm:1628
-#, c-format
-msgid "The following disk(s) were renamed:"
-msgstr "Sljedeći diskovi su preimenovani:"
-
-#: install_any.pm:1630
-#, c-format
-msgid "%s (previously named as %s)"
-msgstr "%s (ranije pod imenom %s)"
-
-#: install_any.pm:1670
-#, 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 ""
-"Došlo je do greške - nije pronađen nijedan ispravan uređaj na kojem se mogu "
-"kreirati novi file sistemi. Molim provjerite vaš hardware i pronađite uzrok "
-"greške"
-
-#: install_any.pm:1714
-#, c-format
-msgid "HTTP"
-msgstr "HTTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "FTP"
-msgstr "FTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "NFS"
-msgstr "NFS"
-
-#: install_any.pm:1737
-#, c-format
-msgid "Please choose a media"
-msgstr "Molim izaberite medij"
-
-#: install_any.pm:1753
-#, c-format
-msgid "File already exists. Overwrite it?"
-msgstr "Datoteka već postoji. Želite li pisati preko nje?"
-
-#: install_any.pm:1757
-#, c-format
-msgid "Permission denied"
-msgstr "Nemate dozvolu"
-
-#: install_any.pm:1806
-#, c-format
-msgid "Bad NFS name"
-msgstr ""
-
-#: install_any.pm:1827
-#, c-format
-msgid "Bad media %s"
-msgstr "Neispravan medij %s"
-
-#: install_any.pm:1877
-#, c-format
-msgid "Can not make screenshots before partitioning"
-msgstr "Ne mogu napraviti snimak ekrana prije particioniranja"
-
-#: install_any.pm:1884
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Snimanje ekrana će biti dostupno nakon što instalirate u %s"
-
-#: install_gtk.pm:136
-#, c-format
-msgid "System installation"
-msgstr "Instalacija sistema"
-
-#: install_gtk.pm:139
-#, c-format
-msgid "System configuration"
-msgstr "Podešavanje sistema"
-
-#: install_interactive.pm:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Neki dio hardware-a na vašem računaru zahtjeva ``vlasničke'' drajvere za "
-"rad.\n"
-"Možete naći više podataka o njima na: %s"
-
-#: install_interactive.pm:63
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Morate imati root particiju.\n"
-"Za ovo, napravite jednu particiju (ili kliknite na neku od postojećih).\n"
-"Zatim izaberite opciju ``Tačka montiranja'' i postavite je na `/'"
-
-#: install_interactive.pm:68
-#, c-format
-msgid ""
-"You do not have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Nemate nijednu swap particiju\n"
-"\n"
-"Svejedno nastavi?"
-
-#: install_interactive.pm:71 install_steps.pm:215
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Morate imati FAT particiju montiranu na /boot/efi"
-
-#: install_interactive.pm:98
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Nema dovoljno slobodnog prostora za pravljenje novih particija"
-
-#: install_interactive.pm:106
-#, c-format
-msgid "Use existing partitions"
-msgstr "Koristi postojeću particiju"
-
-#: install_interactive.pm:108
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "Nema nijedne postojeće particije za upotrebu"
-
-#: install_interactive.pm:115
-#, c-format
-msgid "Use the Microsoft Windows® partition for loopback"
-msgstr "Koristi Microsoft Windows® particiju za loopback"
-
-#: install_interactive.pm:118
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Koju particiju želite koristiti za Linux4Win?"
-
-#: install_interactive.pm:120
-#, c-format
-msgid "Choose the sizes"
-msgstr "Izaberite veličine"
-
-#: install_interactive.pm:121
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Veličina root particije u MB:"
-
-#: install_interactive.pm:122
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Veličina swap particije u MB:"
-
-#: install_interactive.pm:131
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"Ne postoji nijedna FAT particija za upotrebu kao loopback (ili nije ostalo "
-"dovoljno prostora)"
-
-#: install_interactive.pm:140
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Kojoj particiji želite promijeniti veličinu?"
-
-#: install_interactive.pm:154
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occurred: %s"
-msgstr ""
-"FAT resizer ne može izmijeniti vašu particiju, \n"
-"došlo je do sljedeće greške: %s"
-
-#: install_interactive.pm:157
-#, c-format
-msgid "Computing the size of the Microsoft Windows® partition"
-msgstr "Izračunavam veličinu Microsoft Windows® particije"
-
-#: install_interactive.pm:164
-#, c-format
-msgid ""
-"Your Microsoft Windows® partition is too fragmented. Please reboot your "
-"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
-"the Mandriva Linux installation."
-msgstr ""
-"Vaša Microsoft Windows® particija je previše fragmentirana. Molim "
-"restartujte vaš računar pod Microsoft Windows®-om, pokrenite ``defrag'' "
-"alat, zatim pokrenite Mandriva Linux instalaciju."
-
-#: install_interactive.pm:167
-#, 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 ""
-"UPOZORENJE!\n"
-"\n"
-" DrakX će sada promijeniti veličinu vaše Windows particije.\n"
-"\n"
-"\n"
-"Budite pažljivi, ova operacija je opasna. Ako to već niste uradili, najprije "
-"napustite instalaciju, izvršite naredbu \"chkdsk c:\" iz Command Prompt-a "
-"pod Windowsom (obratite pažnju da izvršavanje grafičkog programa \"scandisk"
-"\" nije dovoljno, trebate koristiti \"chkdsk\" u komandnom upitu!), "
-"opcionalno pokrenite \"defrag\", zatim ponovo pokrenite instalaciju. Također "
-"biste trebali spasiti sve podatke.\n"
-"\n"
-"\n"
-"Kada ste sigurni, kliknite na \"%s\"."
-
-#: install_interactive.pm:179
-#, c-format
-msgid "Which size do you want to keep for Microsoft Windows® on"
-msgstr "Koju veličinu želite da sačuvate za Microsoft Windows® na"
-
-#: install_interactive.pm:180
-#, c-format
-msgid "partition %s"
-msgstr "particiji %s"
-
-#: install_interactive.pm:189
-#, c-format
-msgid "Resizing Microsoft Windows® partition"
-msgstr "Smanjujem Microsoft Windows® particiju"
-
-#: install_interactive.pm:194
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Smanjivanje FAT particije nije uspjelo: %s"
-
-#: install_interactive.pm:209
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr ""
-"Ne postoji nijedna FAT particija za promjenu veličine (ili nije ostalo "
-"dovoljno prostora)"
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Remove Microsoft Windows®"
-msgstr "Ukloni Microsoft Windows®"
-
-#: install_interactive.pm:214
-#, fuzzy, c-format
-msgid "Erase and use entire disk"
-msgstr "Pobriši čitav disk"
-
-#: install_interactive.pm:216
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-"Imate više od jednog hard diska. Na koji od njih želite instalirati Linux?"
-
-#: install_interactive.pm:222
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"SVE postojeće particije i podaci na njima će biti izgubljeni na disku %s"
-
-#: install_interactive.pm:237
-#, c-format
-msgid "Use fdisk"
-msgstr "Koristi fdisk"
-
-#: install_interactive.pm:240
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, do not forget to save using `w'"
-msgstr ""
-"Sada možete particionirati %s.\n"
-"Kada završite, ne zaboravite spasiti sa `w'"
-
-#: install_interactive.pm:276
-#, c-format
-msgid "I can not find any room for installing"
-msgstr "Ne mogu naći dovoljno prostora za instalaciju"
-
-#: install_interactive.pm:280
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX Particioni čarobnjak je našao sljedeća rješenja:"
-
-#: install_interactive.pm:288
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Particioniranje nije uspjelo: %s"
-
-#: install_interactive.pm:295
-#, c-format
-msgid "Bringing up the network"
-msgstr "Pokrećem mrežu"
-
-#: install_interactive.pm:300
-#, c-format
-msgid "Bringing down the network"
-msgstr "Zaustavljam mrežu"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:10
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandriva "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandriva Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. This document is a license agreement "
-"between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you "
-"explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this "
-"License. \n"
-"If you disagree with any portion of the License, you are not allowed to "
-"install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner "
-"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate "
-"your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all "
-"copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Limited Warranty\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
-"be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without "
-"limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties "
-"resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or "
-"inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or "
-"occurrence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
-"COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
-"no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever "
-"(including without \n"
-"limitation damages for loss of business, interruption of business, financial "
-"loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential "
-"loss) arising out \n"
-"of the possession and use of software components or arising out of "
-"downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some "
-"countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong "
-"cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. The GPL License and Related Licenses\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. "
-"Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the "
-"documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. Intellectual Property Rights\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
-"as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
-"Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Governing Laws \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-msgstr ""
-"Budući da prevodilac ovog teksta nije u mogućnosti da osigura pravnu\n"
-"provjeru prevedenog teksta, tekst licence je ostavljen u originalnom "
-"(engleskom)\n"
-"obliku.\n"
-"\n"
-"\n"
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandriva "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandriva Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. This document is a license agreement "
-"between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you "
-"explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this "
-"License. \n"
-"If you disagree with any portion of the License, you are not allowed to "
-"install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner "
-"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate "
-"your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all "
-"copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Limited Warranty\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
-"be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without "
-"limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties "
-"resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or "
-"inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or "
-"occurrence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
-"COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
-"no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever "
-"(including without \n"
-"limitation damages for loss of business, interruption of business, financial "
-"loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential "
-"loss) arising out \n"
-"of the possession and use of software components or arising out of "
-"downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some "
-"countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong "
-"cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. The GPL License and Related Licenses\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. "
-"Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the "
-"documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. Intellectual Property Rights\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
-"as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
-"Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Governing Laws \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-
-#: install_messages.pm:90
-#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-"Upozorenje: Slobodan softver ne mora obavezno biti slobodan od patenata\n"
-"i neki elementi slobodnog softvera mogu biti obuhvaćeni patentima u vašoj\n"
-"zemlji. Npr. MP3 dekoderi koji su uključeni možda zahtijevaju licencu za "
-"daljnje\n"
-"korištenje (za više detalja, pogledajte http://www.mp3licensing.com). Ako "
-"niste\n"
-"sigurni da li se patent odnosi na vas, provjerite vaše lokalne zakone."
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:98
-#, c-format
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Pažnja\n"
-"\n"
-"Molim pročitajte pažljivo uslove licence ispod. Ako se ne slažete sa bilo\n"
-"kojim dijelom, nije vam dozvoljeno da instalirate naredne CD medije. "
-"Pritisnite\n"
-"dugme 'Ne prihvatam' da biste nastavili sa instalacijom bez korištenja ovih "
-"medija.\n"
-"Budući da prevodilac ovog teksta nije u mogućnosti da osigura pravnu\n"
-"provjeru prevedenog teksta, tekst je ostavljen u originalnom (engleskom)\n"
-"obliku.\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:131
-#, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press Enter to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandriva "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandriva Linux User's Guide."
-msgstr ""
-"Čestitamo, instalacija je završena.\n"
-"Uklonite boot medij i pritisnite Enter da restartujete računar.\n"
-"\n"
-"\n"
-"Za informacije o ispravkama koje su dostupne za ovu verziju Mandriva "
-"Linuxa,\n"
-"pogledajte Errata koja je dostupna na:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Informacije o podešavanju vašeg sistema su dostupne u poglavlju\n"
-"\"Nakon instalacije\" vašeg zvaničnog Mandriva Linux Priručnika za upotrebu."
-
-#: install_steps.pm:250
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Dvostruka tačka montiranja %s"
-
-#: install_steps.pm:482
-#, c-format
-msgid ""
-"Some important packages did not get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
-"\"\n"
-msgstr ""
-"Neki bitni paketi nisu ispravno instalirani.\n"
-"Ili je neispravan vaš cdrom uređaj ili vaš cdrom medij.\n"
-"Provjerite cdrom na instaliranom računaru koristeći \"rpm -qpl media/main/*."
-"rpm\"\n"
-
-#: install_steps_auto_install.pm:68 install_steps_stdio.pm:27
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Prelazim na korak `%s'\n"
-
-#: install_steps_gtk.pm:181
-#, c-format
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandriva Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Vašem sistemu ponestaje resursa. Možda imate neki problem sa instalacijom\n"
-"Mandriva Linuxa. Ako se ovo desi, možete pokušati tekstualnu instalaciju. Za "
-"ovo,\n"
-"pritisnite `F1' prilikom bootanja CDROMa, zatim unesite `text'."
-
-#: install_steps_gtk.pm:211 install_steps_interactive.pm:605
-#, c-format
-msgid "Package Group Selection"
-msgstr "Izbor grupe paketa"
-
-#: install_steps_gtk.pm:254 install_steps_interactive.pm:548
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Ukupna veličina: %d / %d MB"
-
-#: install_steps_gtk.pm:299
-#, c-format
-msgid "Bad package"
-msgstr "Neispravan paket"
-
-#: install_steps_gtk.pm:301
-#, c-format
-msgid "Version: "
-msgstr "Verzija: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "Size: "
-msgstr "Veličina: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "%d KB\n"
-msgstr "%d KB\n"
-
-#: install_steps_gtk.pm:303
-#, c-format
-msgid "Importance: "
-msgstr "Značaj: "
-
-#: install_steps_gtk.pm:336
-#, c-format
-msgid "You can not select/unselect this package"
-msgstr "Ne možete izabrati/isključiti ovaj paket"
-
-#: install_steps_gtk.pm:340 network/thirdparty.pm:331
-#, c-format
-msgid "due to missing %s"
-msgstr "zbog nedostajućeg %s"
-
-#: install_steps_gtk.pm:341
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "zbog nezadovoljenog %s"
-
-#: install_steps_gtk.pm:342
-#, c-format
-msgid "trying to promote %s"
-msgstr "pokušavam promovirati %s"
-
-#: install_steps_gtk.pm:343
-#, c-format
-msgid "in order to keep %s"
-msgstr "kako biste zadržali %s"
-
-#: install_steps_gtk.pm:348
-#, c-format
-msgid ""
-"You can not select this package as there is not enough space left to install "
-"it"
-msgstr "Ne možete izabrati ovaj paket jer nema dovoljno prostora za njega"
-
-#: install_steps_gtk.pm:351
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Sljedeći paketi će biti instalirani"
-
-#: install_steps_gtk.pm:352
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Sljedeći paketi će biti uklonjeni"
-
-#: install_steps_gtk.pm:376
-#, c-format
-msgid "This is a mandatory package, it can not be unselected"
-msgstr "Ovo je obavezan paket, ne može biti isključen"
-
-#: install_steps_gtk.pm:378
-#, c-format
-msgid "You can not unselect this package. It is already installed"
-msgstr "Ne možete isključiti ovaj paket. On je već instaliran"
-
-#: install_steps_gtk.pm:381
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Ovaj paket mora biti unaprijeđen\n"
-"Jeste li sigurni da ga želite isključiti?"
-
-#: install_steps_gtk.pm:384
-#, c-format
-msgid "You can not unselect this package. It must be upgraded"
-msgstr "Ne možete isključiti ovaj paket. On mora biti unaprijeđen"
-
-#: install_steps_gtk.pm:389
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Automatski prikaži izabrane pakete"
-
-#: install_steps_gtk.pm:394
-#, c-format
-msgid "Load/Save selection"
-msgstr "Izbor za čitanje/snimanje"
-
-#: install_steps_gtk.pm:395
-#, c-format
-msgid "Updating package selection"
-msgstr "Osvježavam izbor paketa"
-
-#: install_steps_gtk.pm:400
-#, c-format
-msgid "Minimal install"
-msgstr "Minimalna instalacija"
-
-#: install_steps_gtk.pm:414 install_steps_interactive.pm:467
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Izaberite pakete koje želite instalirati"
-
-#: install_steps_gtk.pm:431 install_steps_interactive.pm:691
-#, c-format
-msgid "Installing"
-msgstr "Instaliram"
-
-#: install_steps_gtk.pm:457
-#, c-format
-msgid "No details"
-msgstr "Sakrij detalje"
-
-#: install_steps_gtk.pm:472
-#, c-format
-msgid "Time remaining "
-msgstr "Preostalo vremena "
-
-#: install_steps_gtk.pm:473
-#, c-format
-msgid "Estimating"
-msgstr "Procjenjujem"
-
-#: install_steps_gtk.pm:500
-#, c-format
-msgid "%d packages"
-msgstr "%d paketa"
-
-#: install_steps_gtk.pm:543 install_steps_interactive.pm:719
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Promijenite vaš CD-ROM!\n"
-"Molim ubacite CD označen sa \"%s\" u vaš CD-ROM uređaj i pritisnite \"U redu"
-"\" kad ste spremni.\n"
-"Ako ga nemate, pritisnite \"Odustani\" da preskočite instalaciju sa tog CD-"
-"ROMa."
-
-#: install_steps_gtk.pm:556 install_steps_interactive.pm:730
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Došlo je do greške pri naručivanju paketa:"
-
-#: install_steps_gtk.pm:558 install_steps_interactive.pm:734
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Došlo je do greške kod instaliranja paketa:"
-
-#: install_steps_gtk.pm:560 install_steps_interactive.pm:730
-#: install_steps_interactive.pm:734
-#, c-format
-msgid "Go on anyway?"
-msgstr "Svejedno nastavi?"
-
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:910 steps.pm:30
-#, c-format
-msgid "Summary"
-msgstr "Ukratko"
-
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:906
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "not configured"
-msgstr "nije podešeno"
-
-#: install_steps_gtk.pm:668
-#, c-format
-msgid ""
-"The following installation media have been found.\n"
-"If you want to skip some of them, you can unselect them now."
-msgstr ""
-"Pronađeni su sljedeći instalacioni mediji.\n"
-"Ako želite preskočiti neke od njih, možete ih isključiti sada."
-
-#: install_steps_gtk.pm:677
-#, c-format
-msgid ""
-"You have the option to copy the contents of the CDs onto the hard drive "
-"before installation.\n"
-"It will then continue from the hard drive and the packages will remain "
-"available once the system is fully installed."
-msgstr ""
-"Imate mogućnost da kopirate sadržaj CDova na hard disk prije instalacije.\n"
-"Zatim će instalacija biti nastavljena sa hard diska, a paketi će ostati "
-"dostupni nakon što sistem bude instaliran."
-
-#: install_steps_gtk.pm:679
-#, c-format
-msgid "Copy whole CDs"
-msgstr "Kopiraj čitave CDove"
-
-#: install_steps_interactive.pm:95
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Molim izaberite izgled vaše tastature."
-
-#: install_steps_interactive.pm:97
-#, c-format
-msgid "Here is the full list of available keyboards"
-msgstr "Ovdje je puna lista svih dostupnih tastatura"
-
-#: install_steps_interactive.pm:127
-#, c-format
-msgid "Install/Upgrade"
-msgstr "Instaliraj/Unaprijedi"
-
-#: install_steps_interactive.pm:128
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Da li je ovo instalacija ili unaprjeđenje?"
-
-#: install_steps_interactive.pm:134
-#, c-format
-msgid "Upgrade %s"
-msgstr "Unaprijedi %s"
-
-#: install_steps_interactive.pm:147
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Ključ enkripcije za %s"
-
-#: install_steps_interactive.pm:170
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Molim izaberite vrstu vašeg miša."
-
-#: install_steps_interactive.pm:171
-#, c-format
-msgid "Mouse choice"
-msgstr ""
-
-#: install_steps_interactive.pm:180 standalone/mousedrake:46
-#, c-format
-msgid "Mouse Port"
-msgstr "Port miša"
-
-#: install_steps_interactive.pm:181 standalone/mousedrake:47
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Molim izaberite na kojem serijskom portu je spojen vaš miš."
-
-#: install_steps_interactive.pm:191
-#, c-format
-msgid "Buttons emulation"
-msgstr "Emulacija dugmeta"
-
-#: install_steps_interactive.pm:193
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Emulacija 2 dugmeta"
-
-#: install_steps_interactive.pm:194
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Emulacija 3 dugmeta"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Podešavam PCMCIA kartice..."
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "Configuring IDE"
-msgstr "Podešavam IDE"
-
-#: install_steps_interactive.pm:242
-#, c-format
-msgid "No partition available"
-msgstr "Nema dostupnih particija"
-
-#: install_steps_interactive.pm:245
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Pretražujem particije da nađem tačke montiranja"
-
-#: install_steps_interactive.pm:252
-#, c-format
-msgid "Choose the mount points"
-msgstr "Izaberite tačke montiranja"
-
-#: install_steps_interactive.pm:300
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Nema dovoljno slobodnog prostora za 1 MB bootstrap! Instalacija će "
-"nastaviti, ali da biste bootali vaš sistem, morate kreirati bootstrap "
-"particiju u DiskDrake-u"
-
-#: install_steps_interactive.pm:305
-#, c-format
-msgid ""
-"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
-"to boot your system, you'll need to create the bootstrap partition in "
-"DiskDrake"
-msgstr ""
-"Trebate napraviti PPC PReP Boot bootstrap! Instalacija će nastaviti, ali da "
-"biste bootali vaš sistem, morate kreirati bootstrap particiju u DiskDrake-u"
-
-#: install_steps_interactive.pm:341
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Izaberite particije koje želite formatirati"
-
-#: install_steps_interactive.pm:343
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Provjeri loše blokove?"
-
-#: install_steps_interactive.pm:371
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
-msgstr ""
-"Nisam uspio provjeriti datotečni sistem %s. Želite li popraviti greške? "
-"(pažnja, možete izgubiti podatke)"
-
-#: install_steps_interactive.pm:374
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Nemam dovoljno swap prostora da dovršim instalaciju, molim dodajte još"
-
-#: install_steps_interactive.pm:383
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Tražim dostupne pakete i izgrađujem rpm bazu podataka..."
-
-#: install_steps_interactive.pm:384 install_steps_interactive.pm:436
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Tražim dostupne pakete..."
-
-#: install_steps_interactive.pm:405 install_steps_interactive.pm:810
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Izaberite mirror sa kojeg će biti dobavljeni paketi"
-
-#: install_steps_interactive.pm:445
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Vaš sistem nema dovoljno preostalog prostora za instalaciju ili unaprjeđenje "
-"(%d > %d)"
-
-#: install_steps_interactive.pm:479
-#, c-format
-msgid ""
-"Please choose load or save package selection.\n"
-"The format is the same as auto_install generated files."
-msgstr ""
-"Molim izaberite da li ćete učitati ili snimiti izbor paketa.\n"
-"Format je isti kao i diskete koje generiše auto_install."
-
-#: install_steps_interactive.pm:481
-#, c-format
-msgid "Load"
-msgstr "Učitaj"
-
-#: install_steps_interactive.pm:481 standalone/drakbackup:4083
-#: standalone/drakbackup:4153 standalone/logdrake:175
-#, c-format
-msgid "Save"
-msgstr "Snimi"
-
-#: install_steps_interactive.pm:489
-#, c-format
-msgid "Bad file"
-msgstr "Neispravna datoteka"
-
-#: install_steps_interactive.pm:562
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Izabrana veličina je veća od slobodnog prostora"
-
-#: install_steps_interactive.pm:577
-#, c-format
-msgid "Type of install"
-msgstr "Vrsta instalacije"
-
-#: install_steps_interactive.pm:578
-#, c-format
-msgid ""
-"You have not selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Niste izabrali nijednu grupu paketa\n"
-"Molim izaberite minimalnu instalaciju koju želite:"
-
-#: install_steps_interactive.pm:582
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Sa osnovnom dokumentacijom (preporučeno)"
-
-#: install_steps_interactive.pm:583
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Stvarno minimalna instalacija (posebno bez urpmi)"
-
-#: install_steps_interactive.pm:622 standalone/drakxtv:52
-#, c-format
-msgid "All"
-msgstr "Svi"
-
-#: install_steps_interactive.pm:661
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"Ako imate sve CDe na listi, kliknite na U redu.\n"
-"Ako nemate nijedan od ovih CDova, kliknite na Odustani.\n"
-"Ako nedostaju samo neki CDovi, isključite ih, zatim kliknite na U redu."
-
-#: install_steps_interactive.pm:666
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM pod oznakom \"%s\""
-
-#: install_steps_interactive.pm:691
-#, c-format
-msgid "Preparing installation"
-msgstr "Pripremam instalaciju"
-
-#: install_steps_interactive.pm:699
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Instaliram paket %s\n"
-"%d%%"
-
-#: install_steps_interactive.pm:748
-#, c-format
-msgid "Post-install configuration"
-msgstr "Post-instalacijsko podešavanje"
-
-#: install_steps_interactive.pm:755
-#, c-format
-msgid "Please ensure the Update Modules media is in drive %s"
-msgstr ""
-
-#: install_steps_interactive.pm:783
-#, c-format
-msgid "Updates"
-msgstr "Updates"
-
-#: install_steps_interactive.pm:784
-#, c-format
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates?"
-msgstr ""
-"Sada imate mogućnost da dobavite sa Interneta nove verzije paketa koji\n"
-"su izašli nakon što je distribucija objavljena. Među njima su sigurnosne "
-"zakrpe\n"
-"i ispravke bugova.\n"
-"\n"
-"Da biste izvršili download, potrebno je da podesite Internet konekciju.\n"
-"\n"
-"Da li želite instalirati update-ovane pakete ?"
-
-#: install_steps_interactive.pm:805
-#, c-format
-msgid ""
-"Contacting Mandriva Linux web site to get the list of available mirrors..."
-msgstr ""
-"Kontaktiram Mandriva Linux web stranicu da bih saznao listu dostupnih "
-"mirrora..."
-
-#: install_steps_interactive.pm:824
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Kontaktiram mirror da bih saznao listu dostupnih paketa..."
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Ne mogu pristupiti mirroru %s"
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Želite li ponovo pokušati?"
-
-#: install_steps_interactive.pm:855 standalone/drakclock:45
-#: standalone/finish-install:56
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Koja je vaša vremenska zona?"
-
-#: install_steps_interactive.pm:860
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
-
-#: install_steps_interactive.pm:868
-#, c-format
-msgid "NTP Server"
-msgstr "NTP server"
-
-#: install_steps_interactive.pm:923 install_steps_interactive.pm:931
-#: install_steps_interactive.pm:949 install_steps_interactive.pm:956
-#: install_steps_interactive.pm:1107 services.pm:133
-#: standalone/drakbackup:1596
-#, c-format
-msgid "System"
-msgstr "Sistem"
-
-#: install_steps_interactive.pm:963 install_steps_interactive.pm:990
-#: install_steps_interactive.pm:1007 install_steps_interactive.pm:1023
-#: install_steps_interactive.pm:1034
-#, c-format
-msgid "Hardware"
-msgstr "Hardware"
-
-#: install_steps_interactive.pm:969 install_steps_interactive.pm:978
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Udaljeni CUPS server"
-
-#: install_steps_interactive.pm:969
-#, c-format
-msgid "No printer"
-msgstr "Nema štampača"
-
-#: install_steps_interactive.pm:1011
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Imate li ISA zvučnu karticu?"
-
-#: install_steps_interactive.pm:1013
-#, c-format
-msgid ""
-"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
-"card"
-msgstr ""
-"Pokrenite \"alsaconf\" ili \"sndconfig\" poslije instalacije kako biste "
-"podesili vašu zvučnu karticu"
-
-#: install_steps_interactive.pm:1015
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"Nije otkrivena zvučna kartica. Probajte \"harddrake\" poslije instalacije"
-
-#: install_steps_interactive.pm:1035
-#, c-format
-msgid "Graphical interface"
-msgstr "Grafički interfejs"
-
-#: install_steps_interactive.pm:1041 install_steps_interactive.pm:1053
-#, c-format
-msgid "Network & Internet"
-msgstr "Mreža i Internet"
-
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "configured"
-msgstr "podešeno"
-
-#: install_steps_interactive.pm:1064 install_steps_interactive.pm:1078
-#: security/level.pm:55 steps.pm:20
-#, c-format
-msgid "Security"
-msgstr "Sigurnost"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "activated"
-msgstr "aktiviran"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "disabled"
-msgstr "isključen"
-
-#: install_steps_interactive.pm:1094
-#, c-format
-msgid "Boot"
-msgstr "Boot"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1098 printer/printerdrake.pm:961
-#, c-format
-msgid "%s on %s"
-msgstr "%s na %s"
-
-#: install_steps_interactive.pm:1112 services.pm:175
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Servisi: %d aktiviran za %d registrovan"
-
-#: install_steps_interactive.pm:1124
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "Niste podesili X. Sigurno želite uraditi ovo?"
-
-#: install_steps_interactive.pm:1205
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Pripremam bootloader..."
-
-#: install_steps_interactive.pm:1215
-#, c-format
-msgid ""
-"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
-"will not work for you. The install will continue, but you'll need to use "
-"BootX or some other means to boot your machine. The kernel argument for the "
-"root fs is: root=%s"
-msgstr ""
-"Izgleda da imate OldWorld ili Unknown računar, yaboot bootloader neće raditi "
-"kod vas. Instalacija će se nastaviti, ali ćete morati koristiti BootX ili "
-"neki drugi način za bootanje vašeg računara. Argument kernela za root fs je: "
-"root=%s"
-
-#: install_steps_interactive.pm:1221
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Da li želite koristiti aboot?"
-
-#: install_steps_interactive.pm:1224
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Greška u instaliranju aboota, \n"
-"da li da pokušam nasilnu instalaciju čak i ako to uništi prvu particiju?"
-
-#: install_steps_interactive.pm:1241
-#, c-format
-msgid ""
-"In this security level, access to the files in the Windows partition is "
-"restricted to the administrator."
-msgstr ""
-"Na ovom sigurnosnom nivou, pristup datotekama na Windows particijama je "
-"dozvoljen samo administratoru."
-
-#: install_steps_interactive.pm:1270 standalone/drakautoinst:76
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Ubacite praznu disketu u jedinicu %s"
-
-#: install_steps_interactive.pm:1275
-#, c-format
-msgid "Please insert another floppy for drivers disk"
-msgstr "Molim ubacite sljedeću disketu za drajvere"
-
-#: install_steps_interactive.pm:1277
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Pravim auto instalacijsku disketu..."
-
-#: install_steps_interactive.pm:1289
-#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Neki koraci nisu dovršeni.\n"
-"\n"
-"Da li zaista želite izaći sada?"
-
-#: install_steps_interactive.pm:1299 standalone/draksambashare:421
-#: standalone/draksambashare:527 standalone/drakups:118 standalone/drakups:157
-#: standalone/logdrake:451 standalone/logdrake:457
-#, c-format
-msgid "Congratulations"
-msgstr "Čestitamo"
-
-#: install_steps_interactive.pm:1307 install_steps_interactive.pm:1308
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Napravi autoinstalacijsku disketu"
-
-#: install_steps_interactive.pm:1309
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Ova auto instalacija može biti potpuno automatizovana ako želite,\n"
-"u kojem slučaju će ona preuzeti hard disk!!\n"
-"(ovo je namjenjeno za instaliranje na drugi računar).\n"
-"\n"
-"Možda ćete radije željeti ponoviti instalaciju.\n"
-
-#: install_steps_newt.pm:20
-#, c-format
-msgid "Mandriva Linux Installation %s"
-msgstr "Mandriva Linux instalacija %s"
-
-#. -PO: This string must fit in a 80-char wide text screen
-#: install_steps_newt.pm:37
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> između elemenata | <Space> vrši izbor | <F12> idući ekran "
+msgid "No"
+msgstr "Ne"
-#: interactive.pm:196
+#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "Izaberi datoteku"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakbackup:1537
-#: standalone/drakfont:649 standalone/drakhosts:242 standalone/draknfs:605
-#: standalone/draksambashare:1127 standalone/drakups:299
-#: standalone/drakups:359 standalone/drakups:379 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Add"
msgstr "Dodaj"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakhosts:249
-#: standalone/draknfs:612 standalone/draksambashare:1084
-#: standalone/draksambashare:1137 standalone/draksambashare:1176
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Modify"
msgstr "Izmijeni"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakfont:732
-#: standalone/drakhosts:256 standalone/draknfs:619
-#: standalone/draksambashare:1085 standalone/draksambashare:1145
-#: standalone/draksambashare:1184 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Remove"
msgstr "Pobriši"
-#: interactive.pm:398
-#, c-format
-msgid "Basic"
-msgstr "Manje opcija"
-
-#: interactive.pm:436 interactive/newt.pm:321 ugtk2.pm:490
+#: interactive.pm:538 interactive/curses.pm:217 ugtk2.pm:508
#, c-format
msgid "Finish"
msgstr "Kraj"
-#: interactive/newt.pm:92
+#: interactive.pm:539 interactive/curses.pm:214 ugtk2.pm:506
#, c-format
-msgid "Do"
-msgstr "Uradi"
+msgid "Previous"
+msgstr "Nazad"
#: interactive/stdio.pm:29 interactive/stdio.pm:148
#, c-format
@@ -7751,1954 +3403,1205 @@ msgstr ""
msgid "Re-submit"
msgstr "Ponovo pošalji"
-#: keyboard.pm:171 keyboard.pm:202
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTZ)"
-msgstr "Češka (QWERTZ)"
-
-#: keyboard.pm:172 keyboard.pm:204
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German"
-msgstr "Njemačka"
-
-#: keyboard.pm:173
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak"
-msgstr "Dvorak"
-
-#: keyboard.pm:174 keyboard.pm:217
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Spanish"
-msgstr "Španska"
-
-#: keyboard.pm:175 keyboard.pm:218
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Finnish"
-msgstr "Finska"
-
-#: keyboard.pm:176 keyboard.pm:220
-#, c-format
-msgid ""
-"_: keyboard\n"
-"French"
-msgstr "Francuska"
-
-#: keyboard.pm:177 keyboard.pm:264
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Norwegian"
-msgstr "Norveška"
-
-#: keyboard.pm:178
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish"
-msgstr "Poljska"
-
-#: keyboard.pm:179 keyboard.pm:275
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian"
-msgstr "Ruska"
-
-#: keyboard.pm:180 keyboard.pm:281
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swedish"
-msgstr "Švedska"
-
-#: keyboard.pm:181 keyboard.pm:310
-#, c-format
-msgid "UK keyboard"
-msgstr "UK tastatura"
-
-#: keyboard.pm:182 keyboard.pm:313
-#, c-format
-msgid "US keyboard"
-msgstr "US tastatura"
-
-#: keyboard.pm:184
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Albanian"
-msgstr "Albanska"
-
-#: keyboard.pm:185
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (old)"
-msgstr "Armenska (stara)"
-
-#: keyboard.pm:186
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (typewriter)"
-msgstr "Armenska (pisaća mašina)"
-
-#: keyboard.pm:187
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (phonetic)"
-msgstr "Armenska (fonetska)"
-
-#: keyboard.pm:188
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Arabic"
-msgstr "Arapska"
-
-#: keyboard.pm:189
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Azerbaidjani (latin)"
-msgstr "Azerbejdžanska (latinica)"
-
-#: keyboard.pm:190
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belgian"
-msgstr "Belgijska"
-
-#: keyboard.pm:191
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Inscript-layout)"
-msgstr "Bengalska (Inscript raspored)"
-
-#: keyboard.pm:192
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Probhat)"
-msgstr "Bengalska (Probhat raspored)"
-
-#: keyboard.pm:193
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (phonetic)"
-msgstr "Bugarska (fonetska)"
-
-#: keyboard.pm:194
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (BDS)"
-msgstr "Bugarska (BDS)"
-
-#: keyboard.pm:195
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Brazilian (ABNT-2)"
-msgstr "Brazilska (ABNT-2)"
-
-#: keyboard.pm:196
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bosnian"
-msgstr "Bosanska"
-
-#: keyboard.pm:197
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belarusian"
-msgstr "Bjeloruska"
-
-#: keyboard.pm:198
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (German layout)"
-msgstr "Švicarska (njemački raspored)"
-
-#: keyboard.pm:199
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (French layout)"
-msgstr "Švicarska (francuski raspored)"
-
-#: keyboard.pm:201
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Cherokee syllabics"
-msgstr "Cherokee syllabics"
-
-#: keyboard.pm:203
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTY)"
-msgstr "Češka (QWERTY)"
-
-#: keyboard.pm:205
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German (no dead keys)"
-msgstr "Njemačka (bez mrtvih tipki)"
-
-#: keyboard.pm:206
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Devanagari"
-msgstr "Devanagari"
-
-#: keyboard.pm:207
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Danish"
-msgstr "Danska"
-
-#: keyboard.pm:208
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: keyboard.pm:209
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Esperanto)"
-msgstr "Dvorak (Esperanto)"
-
-#: keyboard.pm:210
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (French)"
-msgstr "Dvorak (Francuska)"
-
-#: keyboard.pm:211
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (UK)"
-msgstr "Dvorak (UK)"
-
-#: keyboard.pm:212
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Norwegian)"
-msgstr "Dvorak (Norveška)"
-
-#: keyboard.pm:213
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Polish)"
-msgstr "Dvorak (Poljska)"
-
-#: keyboard.pm:214
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Swedish)"
-msgstr "Dvorak (Švedska)"
-
-#: keyboard.pm:215
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dzongkha/Tibetan"
-msgstr "Dzongkha/Tibetanska"
-
-#: keyboard.pm:216
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Estonian"
-msgstr "Estonska"
-
-#: keyboard.pm:219
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Faroese"
-msgstr "Farska"
-
-#: keyboard.pm:221
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Russian\" layout)"
-msgstr "Gruzijska (\"ruski\" raspored)"
-
-#: keyboard.pm:222
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Latin\" layout)"
-msgstr "Gruzijska (\"latinični\" raspored)"
-
-#: keyboard.pm:223
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek"
-msgstr "Grčka"
-
-#: keyboard.pm:224
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek (polytonic)"
-msgstr "Grčka (politonska)"
-
-#: keyboard.pm:225
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gujarati"
-msgstr "Gujarati"
-
-#: keyboard.pm:226
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gurmukhi"
-msgstr "Gurmukhi"
-
-#: keyboard.pm:227
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Croatian"
-msgstr "Hrvatska"
-
-#: keyboard.pm:228
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Hungarian"
-msgstr "Mađarska"
-
-#: keyboard.pm:229
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Irish"
-msgstr "Irska"
-
-#: keyboard.pm:230
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli"
-msgstr "Izraelska"
-
-#: keyboard.pm:231
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli (phonetic)"
-msgstr "Izraelska (fonetska)"
-
-#: keyboard.pm:232
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Iranian"
-msgstr "Iranska"
-
-#: keyboard.pm:233
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Icelandic"
-msgstr "Islandska"
-
-#: keyboard.pm:234
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Italian"
-msgstr "Italijanska"
-
-#: keyboard.pm:235
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Inuktitut"
-msgstr "Inuktitut"
-
-#: keyboard.pm:239
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Japanese 106 keys"
-msgstr "Japanska 106 tipki"
-
-#: keyboard.pm:240
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kannada"
-msgstr "Kannada"
-
-#: keyboard.pm:243
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Korean"
-msgstr "Korejanska"
-
-#: keyboard.pm:245
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kurdish (arabic script)"
-msgstr "Kurdska (arapsko pismo)"
-
-#: keyboard.pm:246
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kyrgyz"
-msgstr "Kirgiška"
-
-#: keyboard.pm:247
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latin American"
-msgstr "Latino-Američka"
-
-#: keyboard.pm:249
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Laotian"
-msgstr "Laoska"
-
-#: keyboard.pm:250
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (old)"
-msgstr "Litvanska AZERTY (stara)"
-
-#: keyboard.pm:252
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (new)"
-msgstr "Litvanska AZERTY (nova)"
-
-#: keyboard.pm:253
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"number row\" QWERTY"
-msgstr "Litvanska \"red brojeva\" QWERTY"
-
-#: keyboard.pm:254
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"phonetic\" QWERTY"
-msgstr "Litvanska \"fonetska\" QWERTY"
-
-#: keyboard.pm:255
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latvian"
-msgstr "Latvijska"
-
-#: keyboard.pm:256
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Malayalam"
-msgstr "Malayalam"
-
-#: keyboard.pm:258
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Macedonian"
-msgstr "Makedonska"
-
-#: keyboard.pm:259
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Myanmar (Burmese)"
-msgstr "Mjanmarska (Burmanska)"
-
-#: keyboard.pm:260
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Mongolian (cyrillic)"
-msgstr "Mongolska (ćirilica)"
-
-#: keyboard.pm:261
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (UK)"
-msgstr "Malteška (UK)"
-
-#: keyboard.pm:262
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (US)"
-msgstr "Malteška (US)"
-
-#: keyboard.pm:263
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dutch"
-msgstr "Holandska"
-
-#: keyboard.pm:265
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Oriya"
-msgstr "Oriya"
-
-#: keyboard.pm:266
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwerty layout)"
-msgstr "Poljska (QWERTY)"
-
-#: keyboard.pm:267
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwertz layout)"
-msgstr "Poljska (QWERTZ)"
-
-#: keyboard.pm:269
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Pashto"
-msgstr "Pashto"
-
-#: keyboard.pm:270
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Portuguese"
-msgstr "Portugalska"
-
-#: keyboard.pm:272
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Canadian (Quebec)"
-msgstr "Kanadska (Kvebek)"
-
-#: keyboard.pm:273
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwertz)"
-msgstr "Rumunska (QWERTZ)"
-
-#: keyboard.pm:274
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwerty)"
-msgstr "Rumunska (QWERTY)"
-
-#: keyboard.pm:276
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian (phonetic)"
-msgstr "Ruska (fonetska)"
-
-#: keyboard.pm:277
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (norwegian)"
-msgstr "Saami (norveška)"
-
-#: keyboard.pm:278
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (swedish/finnish)"
-msgstr "Saami (švedska/finska)"
-
-#: keyboard.pm:280
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sindhi"
-msgstr "Sindhi"
-
-#: keyboard.pm:282
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovenian"
-msgstr "Slovenačka"
-
-#: keyboard.pm:284
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sinhala"
-msgstr ""
-
-#: keyboard.pm:285
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTZ)"
-msgstr "Slovačka (QWERTZ)"
-
-#: keyboard.pm:286
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTY)"
-msgstr "Slovačka (QWERTY)"
-
-#: keyboard.pm:288
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Serbian (cyrillic)"
-msgstr "Srpska (ćirilica)"
-
-#: keyboard.pm:289
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac"
-msgstr "Sirijska"
-
-#: keyboard.pm:290
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac (phonetic)"
-msgstr "Sirijska (fonetska)"
-
-#: keyboard.pm:291
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Telugu"
-msgstr "Telugu"
-
-#: keyboard.pm:293
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (ISCII-layout)"
-msgstr "Tamilska (ISCII raspored)"
-
-#: keyboard.pm:294
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (Typewriter-layout)"
-msgstr "Tamilska (pisaća mašina)"
-
-#: keyboard.pm:295
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Kedmanee)"
-msgstr "Tajlandska (Kedmanee)"
-
-#: keyboard.pm:296
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (TIS-820)"
-msgstr "Tajlandska (TIS-820)"
-
-#: keyboard.pm:298
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Pattachote)"
-msgstr "Tajlandska (Pattachote)"
-
-#: keyboard.pm:300
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (moroccan layout) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:301
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (phonetic) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:303
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tajik"
-msgstr "Tadžička"
-
-#: keyboard.pm:305
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkmen"
-msgstr "Turkmenska"
-
-#: keyboard.pm:306
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (traditional \"F\" model)"
-msgstr "Turska (tradicionalni \"F\" model)"
-
-#: keyboard.pm:307
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (modern \"Q\" model)"
-msgstr "Turska (moderni \"Q\" model)"
-
-#: keyboard.pm:309
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Ukrainian"
-msgstr "Ukrajinska"
-
-#: keyboard.pm:312
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Urdu keyboard"
-msgstr "Urdu tastatura"
-
-#: keyboard.pm:314
-#, c-format
-msgid "US keyboard (international)"
-msgstr "US tastatura (međunarodna)"
-
-#: keyboard.pm:315
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Uzbek (cyrillic)"
-msgstr "Uzbečka (ćirilica)"
-
-#: keyboard.pm:317
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Vietnamese \"numeric row\" QWERTY"
-msgstr "Vijetnamska \"red brojeva\" QWERTY"
-
-#: keyboard.pm:318
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Yugoslavian (latin)"
-msgstr "Jugoslavenska (latinična)"
-
-#: keyboard.pm:325
-#, c-format
-msgid "Right Alt key"
-msgstr "Desna Alt tipka"
-
-#: keyboard.pm:326
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Obje Shift tipke istovremeno"
-
-#: keyboard.pm:327
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Control i Shift tipka istovremeno"
-
-#: keyboard.pm:328
-#, c-format
-msgid "CapsLock key"
-msgstr "CapsLock tipka"
-
-#: keyboard.pm:329
-#, c-format
-msgid "Shift and CapsLock keys simultaneously"
-msgstr "Shift i CapsLock tipke istovremeno"
-
-#: keyboard.pm:330
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl i Alt tipke istovremeno"
-
-#: keyboard.pm:331
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt i Shift tipke istovremeno"
-
-#: keyboard.pm:332
-#, c-format
-msgid "\"Menu\" key"
-msgstr "\"Meni\" tipka"
-
-#: keyboard.pm:333
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Lijeva \"Windows\" tipka"
-
-#: keyboard.pm:334
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Desna \"Windows\" tipka"
-
-#: keyboard.pm:335
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Obje Control tipke istovremeno"
-
-#: keyboard.pm:336
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Obje Alt tipke istovremeno"
-
-#: keyboard.pm:337
-#, c-format
-msgid "Left Shift key"
-msgstr "Lijeva Shift tipka"
-
-#: keyboard.pm:338
-#, c-format
-msgid "Right Shift key"
-msgstr "Desna Shift tipka"
-
-#: keyboard.pm:339
-#, c-format
-msgid "Left Alt key"
-msgstr "Lijeva Alt tipka"
-
-#: keyboard.pm:340
-#, c-format
-msgid "Left Control key"
-msgstr "Lijeva Control tipka"
-
-#: keyboard.pm:341
-#, c-format
-msgid "Right Control key"
-msgstr "Desna Control tipka"
-
-#: keyboard.pm:377
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Ovdje možete izabrati tipku ili kombinaciju tipki koja će\n"
-"izvršiti prebacivanje između raznih rasporeda tastature\n"
-"(npr: latinični i ne-latinični)"
-
-#: keyboard.pm:382
-#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
-msgstr ""
-"Ova postavka će biti aktivirana nakon instalacije.\n"
-"Tokom instalacije, trebate koristiti desnu Control\n"
-"tipku da prebacujete između raznih rasporeda tastature."
-
#. -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:178
+#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"
-#: lang.pm:195
+#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "Andora"
-#: lang.pm:196 network/adsl_consts.pm:943
+#: lang.pm:211 timezone.pm:213
#, c-format
msgid "United Arab Emirates"
msgstr "Ujedinjeni Arapski Emirati"
-#: lang.pm:197
+#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "Afganistan"
-#: lang.pm:198
+#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigua i Barbuda"
-#: lang.pm:199
+#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "Anguilla"
-#: lang.pm:200
+#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "Albanija"
-#: lang.pm:201
+#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "Armenija"
-#: lang.pm:202
+#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "Nizozemski Antili"
-#: lang.pm:203
+#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "Angola"
-#: lang.pm:204
+#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "Antarktik"
-#: lang.pm:205 network/adsl_consts.pm:55 standalone/drakxtv:50
+#: lang.pm:220 timezone.pm:258
#, c-format
msgid "Argentina"
msgstr "Argentina"
-#: lang.pm:206
+#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "Američka Samoa"
-#: lang.pm:209
+#: lang.pm:222 mirror.pm:11 timezone.pm:216
+#, c-format
+msgid "Austria"
+msgstr "Austrija"
+
+#: lang.pm:223 mirror.pm:10 timezone.pm:254
+#, c-format
+msgid "Australia"
+msgstr "Australija"
+
+#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "Aruba"
-#: lang.pm:210
+#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "Azerbejdžan"
-#: lang.pm:211
+#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosna i Hercegovina"
-#: lang.pm:212
+#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "Barbados"
-#: lang.pm:213
+#: lang.pm:228 timezone.pm:198
#, c-format
msgid "Bangladesh"
msgstr "Bangladeš"
-#: lang.pm:215
+#: lang.pm:229 mirror.pm:12 timezone.pm:218
+#, c-format
+msgid "Belgium"
+msgstr "Belgija"
+
+#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "Burkina Faso"
-#: lang.pm:216 network/adsl_consts.pm:170 network/adsl_consts.pm:179
+#: lang.pm:231 timezone.pm:219
#, c-format
msgid "Bulgaria"
msgstr "Bugarska"
-#: lang.pm:217
+#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "Bahrein"
-#: lang.pm:218
+#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "Burundi"
-#: lang.pm:219
+#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "Benin"
-#: lang.pm:220
+#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "Bermuda"
-#: lang.pm:221
+#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "Bruneji"
-#: lang.pm:222
+#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "Bolivija"
-#: lang.pm:224
+#: lang.pm:238 mirror.pm:13 timezone.pm:259
+#, c-format
+msgid "Brazil"
+msgstr "Brazil"
+
+#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "Bahami"
-#: lang.pm:225
+#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "Butan"
-#: lang.pm:226
+#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "Ostrvo Bouvet"
-#: lang.pm:227
+#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "Bocvana"
-#: lang.pm:228
+#: lang.pm:243 timezone.pm:217
#, c-format
msgid "Belarus"
msgstr "Bjelorusija"
-#: lang.pm:229
+#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "Belize"
-#: lang.pm:231
+#: lang.pm:245 mirror.pm:14 timezone.pm:248
+#, c-format
+msgid "Canada"
+msgstr "Kanada"
+
+#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Kokosova ostrva"
-#: lang.pm:232
+#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Kongo (Kinshasa)"
-#: lang.pm:233
+#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "Centralnoafrička Republika"
-#: lang.pm:234
+#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Kongo (Brazzaville)"
-#: lang.pm:236
+#: lang.pm:250 mirror.pm:38 timezone.pm:242
+#, c-format
+msgid "Switzerland"
+msgstr "Švicarska"
+
+#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "Obala Slonovače"
-#: lang.pm:237
+#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "Cook ostrva"
-#: lang.pm:238
+#: lang.pm:253 timezone.pm:260
#, c-format
msgid "Chile"
msgstr "Čile"
-#: lang.pm:239
+#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "Kamerun"
-#: lang.pm:240 network/adsl_consts.pm:188 network/adsl_consts.pm:197
-#: network/adsl_consts.pm:206 network/adsl_consts.pm:215
-#: network/adsl_consts.pm:224 network/adsl_consts.pm:233
-#: network/adsl_consts.pm:242 network/adsl_consts.pm:251
-#: network/adsl_consts.pm:260 network/adsl_consts.pm:269
-#: network/adsl_consts.pm:278 network/adsl_consts.pm:287
-#: network/adsl_consts.pm:296 network/adsl_consts.pm:305
-#: network/adsl_consts.pm:314 network/adsl_consts.pm:323
-#: network/adsl_consts.pm:332 network/adsl_consts.pm:341
-#: network/adsl_consts.pm:350 network/adsl_consts.pm:359
+#: lang.pm:255 timezone.pm:199
#, c-format
msgid "China"
msgstr "Kina"
-#: lang.pm:241
+#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "Kolumbija"
-#: lang.pm:243
+#: lang.pm:257 mirror.pm:15
+#, c-format
+msgid "Costa Rica"
+msgstr "Kostarika"
+
+#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "Srbija i Crna Gora"
-#: lang.pm:244
+#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "Kuba"
-#: lang.pm:245
+#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "Zelenortska ostrva"
-#: lang.pm:246
+#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "Uskršnje ostrvo"
-#: lang.pm:247
+#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "Kipar"
-#: lang.pm:250
+#: lang.pm:263 mirror.pm:16 timezone.pm:220
+#, c-format
+msgid "Czech Republic"
+msgstr "Češka"
+
+#: lang.pm:264 mirror.pm:21 timezone.pm:225
+#, c-format
+msgid "Germany"
+msgstr "Njemačka"
+
+#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "Džibuti"
-#: lang.pm:252
+#: lang.pm:266 mirror.pm:17 timezone.pm:221
+#, c-format
+msgid "Denmark"
+msgstr "Danska"
+
+#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "Dominika"
-#: lang.pm:253
+#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "Dominikanska Republika"
-#: lang.pm:254 network/adsl_consts.pm:44
+#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "Alžir"
-#: lang.pm:255
+#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "Ekvador"
-#: lang.pm:257
+#: lang.pm:271 mirror.pm:18 timezone.pm:222
+#, c-format
+msgid "Estonia"
+msgstr "Estonija"
+
+#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "Egipat"
-#: lang.pm:258
+#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "Zapadna Sahara"
-#: lang.pm:259
+#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "Eritreja"
-#: lang.pm:261
+#: lang.pm:275 mirror.pm:36 timezone.pm:240
+#, c-format
+msgid "Spain"
+msgstr "Španija"
+
+#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "Etiopija"
-#: lang.pm:263
+#: lang.pm:277 mirror.pm:19 timezone.pm:223
+#, c-format
+msgid "Finland"
+msgstr "Finska"
+
+#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "Fidži"
-#: lang.pm:264
+#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Falklandsko otočje"
-#: lang.pm:265
+#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "Micronesia"
-#: lang.pm:266
+#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "Farska ostrva"
-#: lang.pm:268
+#: lang.pm:282 mirror.pm:20 timezone.pm:224
+#, c-format
+msgid "France"
+msgstr "Francuska"
+
+#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "Gabon"
-#: lang.pm:269 network/adsl_consts.pm:954 network/adsl_consts.pm:965
-#: network/netconnect.pm:46
+#: lang.pm:284 timezone.pm:244
#, c-format
msgid "United Kingdom"
msgstr "Ujedinjeno Kraljevstvo"
-#: lang.pm:270
+#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "Grenada"
-#: lang.pm:271
+#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "Gruzija"
-#: lang.pm:272
+#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "Francuska Gvajana"
-#: lang.pm:273
+#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "Gana"
-#: lang.pm:274
+#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "Gibraltar"
-#: lang.pm:275
+#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "Grenland"
-#: lang.pm:276
+#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "Gambija"
-#: lang.pm:277
+#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "Gvineja"
-#: lang.pm:278
+#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "Gvadalupe"
-#: lang.pm:279
+#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "Ekvatorijalna Gvineja"
-#: lang.pm:281
+#: lang.pm:295 mirror.pm:22 timezone.pm:226
+#, c-format
+msgid "Greece"
+msgstr "Grčka"
+
+#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "South Georgia i South Sandwich ostrva"
-#: lang.pm:282
+#: lang.pm:297 timezone.pm:249
#, c-format
msgid "Guatemala"
msgstr "Gvatemala"
-#: lang.pm:283
+#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "Guam"
-#: lang.pm:284
+#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "Gvineja Bisau"
-#: lang.pm:285
+#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "Gvajana"
-#: lang.pm:286
+#: lang.pm:301
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "Kina (Hong Kong)"
-#: lang.pm:287
+#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Heard ostrvo i McDonaldova ostrva"
-#: lang.pm:288
+#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "Honduras"
-#: lang.pm:289
+#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "Hrvatska"
-#: lang.pm:290
+#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "Haiti"
-#: lang.pm:292
+#: lang.pm:306 mirror.pm:23 timezone.pm:227
+#, c-format
+msgid "Hungary"
+msgstr "Mađarska"
+
+#: lang.pm:307 timezone.pm:202
#, c-format
msgid "Indonesia"
msgstr "Indonezija"
-#: lang.pm:295
+#: lang.pm:308 mirror.pm:24 timezone.pm:228
+#, c-format
+msgid "Ireland"
+msgstr "Irska"
+
+#: lang.pm:309 mirror.pm:25 timezone.pm:204
+#, c-format
+msgid "Israel"
+msgstr "Izrael"
+
+#: lang.pm:310 timezone.pm:201
#, c-format
msgid "India"
msgstr "Indija"
-#: lang.pm:296
+#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Britansko-Indijska morska teritorija"
-#: lang.pm:297
+#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "Irak"
-#: lang.pm:298
+#: lang.pm:313 timezone.pm:203
#, c-format
msgid "Iran"
msgstr "Iran"
-#: lang.pm:299
+#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "Island"
-#: lang.pm:301
+#: lang.pm:315 mirror.pm:26 timezone.pm:229
+#, c-format
+msgid "Italy"
+msgstr "Italija"
+
+#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "Jamajka"
-#: lang.pm:302
+#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "Jordan"
-#: lang.pm:304
+#: lang.pm:318 mirror.pm:27 timezone.pm:205
+#, c-format
+msgid "Japan"
+msgstr "Japan"
+
+#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "Kenija"
-#: lang.pm:305
+#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "Kirgistan"
-#: lang.pm:306
+#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "Kambođa"
-#: lang.pm:307
+#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "Kiribati"
-#: lang.pm:308
+#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "Komori"
-#: lang.pm:309
+#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Saint Kitts and Nevis"
-#: lang.pm:310
+#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "Koreja (Sjeverna)"
-#: lang.pm:311
+#: lang.pm:326 timezone.pm:206
#, c-format
msgid "Korea"
msgstr "Koreja"
-#: lang.pm:312
+#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "Kuvajt"
-#: lang.pm:313
+#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "Kajmanska ostrva"
-#: lang.pm:314
+#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "Kazahstan"
-#: lang.pm:315
+#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "Laos"
-#: lang.pm:316
+#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "Liban"
-#: lang.pm:317
+#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "Saint Lucia"
-#: lang.pm:318
+#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "Lihtenštajn"
-#: lang.pm:319
+#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "Šri Lanka"
-#: lang.pm:320
+#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "Liberija"
-#: lang.pm:321
+#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "Lesoto"
-#: lang.pm:322 network/adsl_consts.pm:600
+#: lang.pm:337 timezone.pm:230
#, c-format
msgid "Lithuania"
msgstr "Litvanija"
-#: lang.pm:323
+#: lang.pm:338 timezone.pm:231
#, c-format
msgid "Luxembourg"
msgstr "Luksemburg"
-#: lang.pm:324
+#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "Latvija"
-#: lang.pm:325
+#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "Libija"
-#: lang.pm:326 network/adsl_consts.pm:609
+#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "Maroko"
-#: lang.pm:327
+#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "Monako"
-#: lang.pm:328
+#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "Moldova"
-#: lang.pm:329
+#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "Madagaskar"
-#: lang.pm:330
+#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "Maršalova ostrva"
-#: lang.pm:331
+#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "Makedonija"
-#: lang.pm:332
+#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "Mali"
-#: lang.pm:333
+#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "Myanmar"
-#: lang.pm:334
+#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "Mongolija"
-#: lang.pm:335
+#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "Sjeverna Marijanska ostrva"
-#: lang.pm:336
+#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "Martinik"
-#: lang.pm:337
+#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "Mauritanija"
-#: lang.pm:338
+#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "Montserrat"
-#: lang.pm:339
+#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "Malta"
-#: lang.pm:340
+#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "Mauricijus"
-#: lang.pm:341
+#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "Maldivi"
-#: lang.pm:342
+#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "Malavi"
-#: lang.pm:343
+#: lang.pm:358 timezone.pm:250
#, c-format
msgid "Mexico"
msgstr "Meksiko"
-#: lang.pm:344
+#: lang.pm:359 timezone.pm:207
#, c-format
msgid "Malaysia"
msgstr "Malezija"
-#: lang.pm:345
+#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "Mozambik"
-#: lang.pm:346
+#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "Namibija"
-#: lang.pm:347
+#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "Nova Kaledonija"
-#: lang.pm:348
+#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "Niger"
-#: lang.pm:349
+#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "Norfolk ostrvo"
-#: lang.pm:350
+#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "Nigerija"
-#: lang.pm:351
+#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "Nikaragva"
-#: lang.pm:354
+#: lang.pm:367 mirror.pm:28 timezone.pm:232
+#, c-format
+msgid "Netherlands"
+msgstr "Nizozemska"
+
+#: lang.pm:368 mirror.pm:30 timezone.pm:233
+#, c-format
+msgid "Norway"
+msgstr "Norveška"
+
+#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "Nepal"
-#: lang.pm:355
+#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "Nauru"
-#: lang.pm:356
+#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "Niue"
-#: lang.pm:358
+#: lang.pm:372 mirror.pm:29 timezone.pm:255
+#, c-format
+msgid "New Zealand"
+msgstr "Novi Zeland"
+
+#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "Oman"
-#: lang.pm:359
+#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "Panama"
-#: lang.pm:360
+#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "Peru"
-#: lang.pm:361
+#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "Francuska Polinezija"
-#: lang.pm:362
+#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "Papua Nova Gvineja"
-#: lang.pm:363
+#: lang.pm:378 timezone.pm:208
#, c-format
msgid "Philippines"
msgstr "Filipini"
-#: lang.pm:364
+#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "Pakistan"
-#: lang.pm:366
+#: lang.pm:380 mirror.pm:31 timezone.pm:234
+#, c-format
+msgid "Poland"
+msgstr "Poljska"
+
+#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Saint Pierre and Miquelon"
-#: lang.pm:367
+#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "Pitcairn"
-#: lang.pm:368
+#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "Portoriko"
-#: lang.pm:369
+#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "Palestina"
-#: lang.pm:371
+#: lang.pm:385 mirror.pm:32 timezone.pm:235
+#, c-format
+msgid "Portugal"
+msgstr "Portugal"
+
+#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "Paragvaj"
-#: lang.pm:372
+#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "Palau"
-#: lang.pm:373
+#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "Katar"
-#: lang.pm:374
+#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "Reunion"
-#: lang.pm:375
+#: lang.pm:390 timezone.pm:236
#, c-format
msgid "Romania"
msgstr "Rumunija"
-#: lang.pm:377
+#: lang.pm:391 mirror.pm:33
+#, c-format
+msgid "Russia"
+msgstr "Rusija"
+
+#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "Ruanda"
-#: lang.pm:378
+#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "Saudijska Arabija"
-#: lang.pm:379
+#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "Solomonska ostrva"
-#: lang.pm:380
+#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "Sejšelska ostrva"
-#: lang.pm:381
+#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "Sudan"
-#: lang.pm:383
+#: lang.pm:397 mirror.pm:37 timezone.pm:241
+#, c-format
+msgid "Sweden"
+msgstr "Švedska"
+
+#: lang.pm:398 timezone.pm:209
#, c-format
msgid "Singapore"
msgstr "Singapur"
-#: lang.pm:384
+#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "Saint Helena"
-#: lang.pm:385 network/adsl_consts.pm:747
+#: lang.pm:400 timezone.pm:239
#, c-format
msgid "Slovenia"
msgstr "Slovenija"
-#: lang.pm:386
+#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Svalbard and Jan Mayen ostrva"
-#: lang.pm:388
+#: lang.pm:402 mirror.pm:34 timezone.pm:238
+#, c-format
+msgid "Slovakia"
+msgstr "Slovačka"
+
+#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "Sierra Leone"
-#: lang.pm:389
+#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "San Marino"
-#: lang.pm:390 network/adsl_consts.pm:737
+#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "Senegal"
-#: lang.pm:391
+#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "Somalija"
-#: lang.pm:392
+#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "Surinam"
-#: lang.pm:393
+#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "Sao Tome i Principe"
-#: lang.pm:394
+#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "El Salvador"
-#: lang.pm:395
+#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "Sirija"
-#: lang.pm:396
+#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "Svazilend"
-#: lang.pm:397
+#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Turks i Caicos ostrva"
-#: lang.pm:398
+#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "Čad"
-#: lang.pm:399
+#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "Francuske Južne Teritorije"
-#: lang.pm:400
+#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "Togo"
-#: lang.pm:402
+#: lang.pm:416 mirror.pm:40 timezone.pm:211
+#, c-format
+msgid "Thailand"
+msgstr "Tajland"
+
+#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "Tadžikistan"
-#: lang.pm:403
+#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "Tokelau"
-#: lang.pm:404
+#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "Istočni Timor"
-#: lang.pm:405
+#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "Turkmenistan"
-#: lang.pm:406 network/adsl_consts.pm:931
+#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "Tunis"
-#: lang.pm:407
+#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "Tonga"
-#: lang.pm:408
+#: lang.pm:423 timezone.pm:212
#, c-format
msgid "Turkey"
msgstr "Turska"
-#: lang.pm:409
+#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "Trinidad i Tobago"
-#: lang.pm:410
+#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "Tuvalu"
-#: lang.pm:412
+#: lang.pm:426 mirror.pm:39 timezone.pm:210
+#, c-format
+msgid "Taiwan"
+msgstr "Tajvan"
+
+#: lang.pm:427 timezone.pm:195
#, c-format
msgid "Tanzania"
msgstr "Tanzanija"
-#: lang.pm:413
+#: lang.pm:428 timezone.pm:243
#, c-format
msgid "Ukraine"
msgstr "Ukrajina"
-#: lang.pm:414
+#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "Uganda"
-#: lang.pm:415
+#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "United States Minor Outlying Islands"
-#: lang.pm:417
+#: lang.pm:431 mirror.pm:41 timezone.pm:251
+#, c-format
+msgid "United States"
+msgstr "SAD"
+
+#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "Urugvaj"
-#: lang.pm:418
+#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "Uzbekistan"
-#: lang.pm:419
+#: lang.pm:434
#, c-format
msgid "Vatican"
msgstr "Vatikan"
-#: lang.pm:420
+#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "Saint Vincent and the Grenadines"
-#: lang.pm:421
+#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "Venecuela"
-#: lang.pm:422
+#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "Djevičanska ostrva (Britanska)"
-#: lang.pm:423
+#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Djevičanska ostrva (SAD)"
-#: lang.pm:424
+#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "Vijetnam"
-#: lang.pm:425
+#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "Vanuatu"
-#: lang.pm:426
+#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "Wallis i Futuna"
-#: lang.pm:427
+#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "Samoa"
-#: lang.pm:428
+#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "Jemen"
-#: lang.pm:429
+#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "Mayotte"
-#: lang.pm:431
+#: lang.pm:445 mirror.pm:35 timezone.pm:194
+#, c-format
+msgid "South Africa"
+msgstr "Južna Afrika"
+
+#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "Zambija"
-#: lang.pm:432
+#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "Zimbabve"
-#: lang.pm:1149
+#: lang.pm:1153
#, c-format
msgid "Welcome to %s"
msgstr "Dobro došli u %s"
@@ -9706,12 +4609,12 @@ msgstr "Dobro došli u %s"
#: lvm.pm:83
#, c-format
msgid "Moving used physical extents to other physical volumes failed"
-msgstr ""
+msgstr "Premještanje fizičkih extents na druge fizičke volumene nije uspjela"
#: lvm.pm:135
#, c-format
msgid "Physical volume %s is still in use"
-msgstr ""
+msgstr "Fizički volumen %s se još uvijek koristi"
#: lvm.pm:145
#, c-format
@@ -9721,12 +4624,376 @@ msgstr "Najprije ukloni logičke volumene\n"
#: lvm.pm:178
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
+msgstr "Bootloader ne može rukovati /boot particijom na više fizičkih volumena"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:10
+#, c-format
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the Mandriva "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandriva Linux distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
+"Mandriva S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using the Software Products in any manner, you "
+"explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
+"Software Products.\n"
+"\n"
+"\n"
+"2. Limited Warranty\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
+"be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if Mandriva S.A. has been advised of the possibility or "
+"occurrence of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
+"\n"
+"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
+"no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Mandriva Linux sites which are prohibited or restricted in some "
+"countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
+"included in the Software Products.\n"
+"\n"
+"\n"
+"3. The GPL License and Related Licenses\n"
+"\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to Mandriva.\n"
+"The programs developed by Mandriva S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by Mandriva S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
+"\n"
+"\n"
+"4. Intellectual Property Rights\n"
+"\n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
+"as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
+"Mandriva S.A. \n"
+"\n"
+"\n"
+"5. Governing Laws \n"
+"\n"
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
+"For any question on this document, please contact Mandriva S.A. \n"
+msgstr ""
+"Budući da prevodilac ovog teksta nije u mogućnosti da osigura pravnu\n"
+"provjeru prevedenog teksta, tekst licence je ostavljen u originalnom\n"
+"(engleskom) obliku.\n"
+"\n"
+"\n"
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the Mandriva "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandriva Linux distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
+"Mandriva S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using the Software Products in any manner, you "
+"explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
+"Software Products.\n"
+"\n"
+"\n"
+"2. Limited Warranty\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
+"be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if Mandriva S.A. has been advised of the possibility or "
+"occurrence of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
+"\n"
+"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
+"no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Mandriva Linux sites which are prohibited or restricted in some "
+"countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
+"included in the Software Products.\n"
+"\n"
+"\n"
+"3. The GPL License and Related Licenses\n"
+"\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to Mandriva.\n"
+"The programs developed by Mandriva S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by Mandriva S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
+"\n"
+"\n"
+"4. Intellectual Property Rights\n"
+"\n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
+"as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
+"Mandriva S.A. \n"
+"\n"
+"\n"
+"5. Governing Laws \n"
+"\n"
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
+"For any question on this document, please contact Mandriva S.A. \n"
+
+#: messages.pm:90
+#, c-format
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
+"Upozorenje: Slobodan softver ne mora obavezno biti slobodan od patenata\n"
+"i neki elementi slobodnog softvera mogu biti obuhvaćeni patentima u vašoj\n"
+"zemlji. Npr. MP3 dekoderi koji su uključeni možda zahtijevaju licencu za "
+"daljnje\n"
+"korištenje (za više detalja, pogledajte http://www.mp3licensing.com). Ako "
+"niste\n"
+"sigurni da li se patent odnosi na vas, provjerite vaše lokalne zakone."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:98
+#, c-format
+msgid ""
+"\n"
+"Warning\n"
+"\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
+"\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
+msgstr ""
+"\n"
+"Pažnja\n"
+"\n"
+"Molim pročitajte pažljivo uslove licence ispod. Ako se ne slažete sa bilo\n"
+"kojim dijelom, nije vam dozvoljeno da instalirate naredne CD medije. "
+"Pritisnite\n"
+"dugme 'Ne prihvatam' da biste nastavili sa instalacijom bez korištenja ovih "
+"medija.\n"
+"Budući da prevodilac ovog teksta nije u mogućnosti da osigura pravnu\n"
+"provjeru prevedenog teksta, tekst je ostavljen u originalnom (engleskom)\n"
+"obliku.\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:131
+#, c-format
+msgid ""
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press Enter to reboot.\n"
+"\n"
+"\n"
+"For information on fixes which are available for this release of Mandriva "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandriva Linux User's Guide."
msgstr ""
+"Čestitamo, instalacija je završena.\n"
+"Uklonite boot medij i pritisnite Enter da restartujete računar.\n"
+"\n"
+"\n"
+"Za informacije o ispravkama koje su dostupne za ovu verziju Mandriva "
+"Linuxa,\n"
+"pogledajte Errata koja je dostupna na:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Informacije o podešavanju vašeg sistema su dostupne u poglavlju\n"
+"\"Nakon instalacije\" vašeg zvaničnog Mandriva Linux Priručnika za upotrebu."
#: modules/interactive.pm:19
-#, fuzzy, c-format
+#, c-format
msgid "This driver has no configuration parameter!"
-msgstr "Podešavanje UPS drajvera"
+msgstr "Ovaj drajver nema podesivih parametara!"
#: modules/interactive.pm:22
#, c-format
@@ -9785,12 +5052,7 @@ msgstr "Instaliram drajver za Ethernet kontroler %s"
msgid "Installing driver for %s card %s"
msgstr "Instaliram drajver za %s karticu %s"
-#: modules/interactive.pm:99
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
-
-#: modules/interactive.pm:109
+#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9799,7 +5061,7 @@ msgstr ""
"Sada možete navesti opcije za modul %s.\n"
"Obratite pažnju da adrese trebate unositi sa prefiksom 0x kao npr. '0x123'"
-#: modules/interactive.pm:115
+#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9810,18 +5072,18 @@ msgstr ""
"ime2=vrijednost2 ...''.\n"
"Na primjer, ``io=0x300 irq=7''"
-#: modules/interactive.pm:117
+#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "Opcije modula"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: modules/interactive.pm:130
+#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr "Koji %s drajver ću pokušati?"
-#: modules/interactive.pm:139
+#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -9838,17 +5100,17 @@ msgstr ""
"informacije koje mu trebaju? Povremeno, ispitivanje može zaglaviti računar,\n"
"ali ne bi trebalo izazvati nikakvu štetu."
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "Ispitivanje"
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "Navedi opcije"
-#: modules/interactive.pm:155
+#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -9857,1930 +5119,17 @@ msgstr ""
"Učitavanje modula %s nije uspjelo.\n"
"Želite li probati opet sa drugim parametrima?"
-#: modules/parameters.pm:49
-#, c-format
-msgid "a number"
-msgstr "broj"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d brojeva razdvojenih zarezom"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d stringova razdvojenih zarezom"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated numbers"
-msgstr "brojevi razdvojeni zarezom"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated strings"
-msgstr "tekst razdvojen zarezima"
-
-#: mouse.pm:25
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - Mouse"
-
-#: mouse.pm:31 security/level.pm:12
-#, c-format
-msgid "Standard"
-msgstr "Standard"
-
-#: mouse.pm:32
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: mouse.pm:33
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Opšti PS2 Miš sa točkićem"
-
-#: mouse.pm:34
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/modem.pm:68 network/modem.pm:81 network/modem.pm:86
-#: network/modem.pm:115 network/netconnect.pm:596 network/netconnect.pm:601
-#: network/netconnect.pm:613 network/netconnect.pm:618
-#: network/netconnect.pm:634 network/netconnect.pm:636
-#, c-format
-msgid "Automatic"
-msgstr "Automatski"
-
-#: mouse.pm:39 mouse.pm:73
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: mouse.pm:40 mouse.pm:68
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: mouse.pm:41
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: mouse.pm:42 mouse.pm:52
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
-
-#: mouse.pm:47 mouse.pm:79
-#, c-format
-msgid "1 button"
-msgstr "1 dugme"
-
-#: mouse.pm:48 mouse.pm:57
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Opšti miš sa 2 dugmeta"
-
-#: mouse.pm:50 mouse.pm:59
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Opšti miš sa 3 dugmeta sa simulacijom točkića"
-
-#: mouse.pm:51
-#, c-format
-msgid "Wheel"
-msgstr "Sa točkićem"
-
-#: mouse.pm:55
-#, c-format
-msgid "serial"
-msgstr "serijski"
-
-#: mouse.pm:58
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Opšti miš sa 3 dugmeta"
-
-#: mouse.pm:60
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: mouse.pm:61
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: mouse.pm:62
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan sa simulacijom točkića"
-
-#: mouse.pm:63
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: mouse.pm:65
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: mouse.pm:66
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Series sa simulacijom točkića"
-
-#: mouse.pm:67
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: mouse.pm:69
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
-
-#: mouse.pm:70
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: mouse.pm:71
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (serijski, stari C7 tip)"
-
-#: mouse.pm:72
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech Mouse (serijski, stari C7 tip) sa simulacijom točkića"
-
-#: mouse.pm:74
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse sa simulacijom točkića"
-
-#: mouse.pm:77
-#, c-format
-msgid "busmouse"
-msgstr "busmouse"
-
-#: mouse.pm:80
-#, c-format
-msgid "2 buttons"
-msgstr "2 dugmeta"
-
-#: mouse.pm:81
-#, c-format
-msgid "3 buttons"
-msgstr "3 dugmeta"
-
-#: mouse.pm:82
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3 dugmeta sa simulacijom točkića"
-
-#: mouse.pm:86
-#, c-format
-msgid "Universal"
-msgstr "Univerzalno"
-
-#: mouse.pm:88
-#, c-format
-msgid "Any PS/2 & USB mice"
-msgstr "Bilo koji PS/2 ili USB miš"
-
-#: mouse.pm:89
-#, fuzzy, c-format
-msgid "Microsoft Xbox Controller S"
-msgstr "Microsoft Explorer"
-
-#: mouse.pm:93 standalone/drakconnect:351 standalone/drakvpn:1126
-#, c-format
-msgid "none"
-msgstr "nijedan"
-
-#: mouse.pm:95
-#, c-format
-msgid "No mouse"
-msgstr "Bez miša"
-
-#: mouse.pm:304 mouse.pm:367 mouse.pm:376 mouse.pm:435
-#, c-format
-msgid "Synaptics Touchpad"
-msgstr "Synaptics Touchpad"
-
-#: mouse.pm:561
-#, c-format
-msgid "Please test the mouse"
-msgstr "Molim testirajte miš"
-
-#: mouse.pm:563
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Da aktivirate miša,"
-
-#: mouse.pm:564
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "POMJERITE VAŠ TOČKIĆ!"
-
-#: network/drakfirewall.pm:12 share/compssUsers.pl:85
-#, c-format
-msgid "Web Server"
-msgstr "Web server"
-
-#: network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "DNS server"
-
-#: network/drakfirewall.pm:22
-#, c-format
-msgid "SSH server"
-msgstr "SSH server"
-
-#: network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "FTP server"
-
-#: network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "Mail server"
-
-#: network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP i IMAP server"
-
-#: network/drakfirewall.pm:42
-#, c-format
-msgid "Telnet server"
-msgstr "Telnet server"
-
-#: network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr "Windows dijeljenje datoteka (SMB)"
-
-#: network/drakfirewall.pm:54
-#, c-format
-msgid "CUPS server"
-msgstr "CUPS server"
-
-#: network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr "Eho zahtjev (ping)"
-
-#: network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr "BitTorrent"
-
-#: network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr ""
-
-#: network/drakfirewall.pm:165
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-"drakfirewall podešavanje\n"
-"\n"
-"Podesite lični firewall na ovom Mandriva Linux računaru.\n"
-"Ako želite moćnu soluciju posebnog firewalla, molim pogledajte\n"
-"specijaliziranu Mandriva Security Firewall distribuciju."
-
-#: network/drakfirewall.pm:171
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-"drakfirewall podešivač\n"
-"\n"
-"Prije nego što nastavite, provjerite da li ste ispravno podesili pristup\n"
-"mreži/Internetu pomoću alata drakconnect."
-
-#: network/drakfirewall.pm:188
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "Kojim servisima želite dozvoliti pristup sa Interneta?"
-
-#: network/drakfirewall.pm:191
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-"Ovdje možete unijeti razne portove. \n"
-"Primjeri ispravno unesenih portova su: 139/tcp 139/udp 600:610/tcp 600:610/"
-"udp.\n"
-"Pogledajte datoteku /etc/services za više informacija."
-
-#: network/drakfirewall.pm:197
-#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-"Zadan je neispravan port: %s.\n"
-"Odgovarajući format je \"port/tcp\" ili \"port/udp\", \n"
-"gdje je \"port\" cijeli broj između 1 i 65535.\n"
-"\n"
-"Možete takođe zadati raspon portova (npr: 24300:24350/udp)"
-
-#: network/drakfirewall.pm:207
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Sve (bez firewalla)"
-
-#: network/drakfirewall.pm:209
-#, c-format
-msgid "Other ports"
-msgstr "Ostali portovi"
-
-#: network/drakfirewall.pm:253 network/drakfirewall.pm:256
-#: standalone/drakids:33 standalone/drakids:136 standalone/drakids:145
-#: standalone/drakids:170 standalone/drakids:179 standalone/drakids:189
-#: standalone/drakids:265 standalone/net_applet:59 standalone/net_applet:202
-#: standalone/net_applet:385 standalone/net_applet:422
-#, fuzzy, c-format
-msgid "Interactive Firewall"
-msgstr "Firewall"
-
-#: network/drakfirewall.pm:254
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activity should be watched."
-msgstr ""
-
-#: network/drakfirewall.pm:259
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr ""
-
-#: network/ifw.pm:129
-#, fuzzy, c-format
-msgid "Port scanning"
-msgstr "Bez dijeljenja"
-
-#: network/ifw.pm:130
-#, fuzzy, c-format
-msgid "Service attack"
-msgstr "Napadnuti servis: %s"
-
-#: network/ifw.pm:131
-#, fuzzy, c-format
-msgid "Password cracking"
-msgstr "Šifra (ponovo)"
-
-#: network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr ""
-
-#: network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr "Napad skeniranjem portova je pokušan sa %s."
-
-#: network/ifw.pm:135
-#, c-format
-msgid "The %s service has been attacked by %s."
-msgstr "Servis %s je napadnut sa %s."
-
-#: network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr "Napad razvaljivanja šifre je pokušan sa %s."
-
-#: network/ifw.pm:137
-#, fuzzy, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr "Napad skeniranjem portova je pokušan sa %s."
-
-#: network/isdn.pm:117 network/netconnect.pm:463 network/netconnect.pm:557
-#: network/netconnect.pm:560 network/netconnect.pm:708
-#: network/netconnect.pm:712
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr "Nije na spisku - ručno izmijenite"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "Ne znam"
-
-#: network/isdn.pm:161 network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: network/isdn.pm:162 network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/netconnect.pm:601 network/netconnect.pm:618
-#: network/netconnect.pm:634
-#, c-format
-msgid "Manual"
-msgstr "Ručno"
-
-#: network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr ""
-
-#: network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr "Molim izaberite Windows drajver (.inf datoteka)"
-
-#: network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr ""
-
-#: network/ndiswrapper.pm:89
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr ""
-
-#: network/ndiswrapper.pm:95
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-
-#: network/ndiswrapper.pm:101
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr ""
-
-#: network/netconnect.pm:69 network/netconnect.pm:493
-#: network/netconnect.pm:505
-#, c-format
-msgid "Manual choice"
-msgstr "Ručni izbor"
-
-#: network/netconnect.pm:69
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Interna ISDN kartica"
-
-#: network/netconnect.pm:80 printer/printerdrake.pm:1622 standalone/drakups:72
-#, c-format
-msgid "Manual configuration"
-msgstr "Ručno podešavanje"
-
-#: network/netconnect.pm:81 standalone/drakroam:121
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr "Automatska IP (BOOTP/DHCP)"
-
-#: network/netconnect.pm:83
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
-msgstr "Automatska IP (BOOTP/DHCP/Zeroconf)"
-
-#: network/netconnect.pm:86
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protokol za ostatak svijeta"
-
-#: network/netconnect.pm:88 standalone/drakconnect:563
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Evropski protokol (EDSS1)"
-
-#: network/netconnect.pm:89 standalone/drakconnect:564
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Protokol za ostatak svijeta \n"
-" bez D-kanala (iznajmljene linije)"
-
-#: network/netconnect.pm:103 standalone/harddrake2:328
-#: standalone/net_monitor:102 standalone/net_monitor:103
-#: standalone/net_monitor:108
-#, c-format
-msgid "unknown"
-msgstr "nepoznat"
-
-#: network/netconnect.pm:120 network/thirdparty.pm:220
-#, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "Alcatel speedtouch USB modem"
-
-#: network/netconnect.pm:121
-#, c-format
-msgid "Sagem USB modem"
-msgstr "Sagem USB modem"
-
-#: network/netconnect.pm:122
-#, c-format
-msgid "Bewan modem"
-msgstr "Bewan modem"
-
-#: network/netconnect.pm:123
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr "ECI Hi-Focus modem"
-
-#: network/netconnect.pm:127
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr "Dynamic Host Configuration Protocol (DHCP)"
-
-#: network/netconnect.pm:128
-#, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "Ručna TCP/IP konfiguracija"
-
-#: network/netconnect.pm:129
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr "Point to Point Tunneling Protocol (PPTP)"
-
-#: network/netconnect.pm:130
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr "PPP over Ethernet (PPPoE)"
-
-#: network/netconnect.pm:131
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr "PPP over ATM (PPPoA)"
-
-#: network/netconnect.pm:132
-#, c-format
-msgid "DSL over CAPI"
-msgstr "DSL preko CAPI"
-
-#: network/netconnect.pm:136
-#, c-format
-msgid "Bridged Ethernet LLC"
-msgstr "Bridged Ethernet LLC"
-
-#: network/netconnect.pm:137
-#, c-format
-msgid "Bridged Ethernet VC"
-msgstr "Bridged Ethernet VC"
-
-#: network/netconnect.pm:138
-#, c-format
-msgid "Routed IP LLC"
-msgstr "Routed IP LLC"
-
-#: network/netconnect.pm:139
-#, c-format
-msgid "Routed IP VC"
-msgstr "Routed IP VC"
-
-#: network/netconnect.pm:140
-#, c-format
-msgid "PPPoA LLC"
-msgstr "PPPoA LLC"
-
-#: network/netconnect.pm:141
-#, c-format
-msgid "PPPoA VC"
-msgstr "PPPoA VC"
-
-#: network/netconnect.pm:145 standalone/drakconnect:498
-#, c-format
-msgid "Script-based"
-msgstr "Skripta"
-
-#: network/netconnect.pm:146 standalone/drakconnect:498
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: network/netconnect.pm:147 standalone/drakconnect:498
-#, c-format
-msgid "Terminal-based"
-msgstr "Terminal"
-
-#: network/netconnect.pm:148 standalone/drakconnect:498
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: network/netconnect.pm:149 standalone/drakconnect:498
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: network/netconnect.pm:250 standalone/drakconnect:56
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Podešavanje mreže i Interneta"
-
-#: network/netconnect.pm:256
-#, c-format
-msgid "LAN connection"
-msgstr "LAN veza"
-
-#: network/netconnect.pm:257 network/netconnect.pm:276 standalone/drakroam:182
-#: standalone/drakroam:220 standalone/drakroam:223
-#, c-format
-msgid "Wireless connection"
-msgstr "Bežična veza"
-
-#: network/netconnect.pm:258
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL veza"
-
-#: network/netconnect.pm:259
-#, c-format
-msgid "Cable connection"
-msgstr "Kablovska veza"
-
-#: network/netconnect.pm:260
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN veza"
-
-#: network/netconnect.pm:261
-#, c-format
-msgid "Modem connection"
-msgstr "Modemska veza"
-
-#: network/netconnect.pm:262
-#, c-format
-msgid "DVB connection"
-msgstr ""
-
-#: network/netconnect.pm:272
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Izaberite vrstu veze koju želite podesiti"
-
-#: network/netconnect.pm:287 network/netconnect.pm:786
-#, c-format
-msgid "Connection Configuration"
-msgstr "Podešavanje konekcije"
-
-#: network/netconnect.pm:287 network/netconnect.pm:787
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Molim ispunite ili provjerite polje ispod"
-
-#: network/netconnect.pm:290
-#, c-format
-msgid "Your personal phone number"
-msgstr "Vaš lični broj telefona"
-
-#: network/netconnect.pm:291 network/netconnect.pm:790
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Naziv provajdera (npr. provajder.net)"
-
-#: network/netconnect.pm:292 standalone/drakconnect:493
-#, c-format
-msgid "Provider phone number"
-msgstr "Broj telefona provajdera"
-
-#: network/netconnect.pm:293
-#, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "Provider DNS 1 (opcionalno)"
-
-#: network/netconnect.pm:294
-#, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "Provider DNS 2 (opcionalno)"
-
-#: network/netconnect.pm:295 standalone/drakconnect:444
-#, c-format
-msgid "Dialing mode"
-msgstr "Način biranja broja"
-
-#: network/netconnect.pm:296 standalone/drakconnect:449
-#: standalone/drakconnect:517
-#, c-format
-msgid "Connection speed"
-msgstr "Brzina konekcije"
-
-#: network/netconnect.pm:297 standalone/drakconnect:454
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Timeout konekcije (u sek.)"
-
-#: network/netconnect.pm:298 network/netconnect.pm:323
-#: network/netconnect.pm:793 standalone/drakconnect:491
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Korisničko ime"
-
-#: network/netconnect.pm:299 network/netconnect.pm:324
-#: network/netconnect.pm:794 standalone/drakconnect:492
-#, c-format
-msgid "Account Password"
-msgstr "Šifra"
-
-#: network/netconnect.pm:300 standalone/drakconnect:554
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ kartice"
-
-#: network/netconnect.pm:301 standalone/drakconnect:555
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Memorija kartice (DMA)"
-
-#: network/netconnect.pm:302 standalone/drakconnect:556
-#, c-format
-msgid "Card IO"
-msgstr "IO kartice"
-
-#: network/netconnect.pm:303 standalone/drakconnect:557
-#, c-format
-msgid "Card IO_0"
-msgstr "IO_0 kartice"
-
-#: network/netconnect.pm:304
-#, c-format
-msgid "Card IO_1"
-msgstr "IO_1 kartice"
-
-#: network/netconnect.pm:319
-#, c-format
-msgid "Cable: account options"
-msgstr "Kablovski pristup: opcije računa"
-
-#: network/netconnect.pm:322
-#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr "Koristi BPALogin (potreban za Telstra ISP)"
-
-#: network/netconnect.pm:348 network/netconnect.pm:670
-#: network/netconnect.pm:826 network/netconnect.pm:1170
-#, c-format
-msgid "Select the network interface to configure:"
-msgstr "Izaberite mrežni interface koji želite podesiti:"
-
-#: network/netconnect.pm:350 network/netconnect.pm:385
-#: network/netconnect.pm:671 network/netconnect.pm:828 network/shorewall.pm:70
-#: standalone/drakconnect:714
-#, c-format
-msgid "Net Device"
-msgstr "Mrežni uređaj"
-
-#: network/netconnect.pm:351 network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr "Vanjski ISDN modem"
-
-#: network/netconnect.pm:384 standalone/harddrake2:215
-#, c-format
-msgid "Select a device!"
-msgstr "Izaberite uređaj !"
-
-#: network/netconnect.pm:393 network/netconnect.pm:403
-#: network/netconnect.pm:413 network/netconnect.pm:446
-#: network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Podešavanje ISDNa"
-
-#: network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Koju vrstu kartice imate?"
-
-#: network/netconnect.pm:404
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"Ako imate ISA karticu, vrijednosti na idućem ekranu bi trebale biti "
-"ispravne.\n"
-"\n"
-"Ako imate PCMCIA karticu, moraćete znati IRQ i IO vaše kartice.\n"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "Nastavak"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "Prekid"
-
-#: network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Koja od navedenih je vaša ISDN kartica?"
-
-#: network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-"Za ovaj modem je dostupan CAPI drajver. Ovaj CAPI drajver vam može ponuditi "
-"više mogućnosti od slobodnog drajvera (npr. slanje faksova). Koji drajver "
-"želite koristiti?"
-
-#: network/netconnect.pm:434 standalone/drakconnect:109 standalone/drakups:249
-#: standalone/harddrake2:133
-#, c-format
-msgid "Driver"
-msgstr "Drajver"
-
-#: network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Koji protokol želite koristiti?"
-
-#: network/netconnect.pm:448 standalone/drakconnect:109
-#: standalone/drakconnect:300 standalone/drakconnect:562
-#: standalone/drakids:207 standalone/drakvpn:1128
-#, c-format
-msgid "Protocol"
-msgstr "Protokol"
-
-#: network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"Izaberite vašeg providera.\n"
-" Ako nije na listi, izaberite Nije na listi"
-
-#: network/netconnect.pm:462 network/netconnect.pm:556
-#: network/netconnect.pm:707
-#, c-format
-msgid "Provider:"
-msgstr "Provajder:"
-
-#: network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"Vaš modem nije podržan pod ovim sistemom.\n"
-"Pogledajte http://www.linmodems.org"
-
-#: network/netconnect.pm:490
-#, c-format
-msgid "Select the modem to configure:"
-msgstr "Izaberite modem koji želite podesiti:"
-
-#: network/netconnect.pm:525
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Molim izaberite na koji serijski port je nakačen vaš modem."
-
-#: network/netconnect.pm:554
-#, c-format
-msgid "Select your provider:"
-msgstr "Izaberite vašeg Internet provajdera"
-
-#: network/netconnect.pm:578
-#, c-format
-msgid "Dialup: account options"
-msgstr "Dialup: opcije računa"
-
-#: network/netconnect.pm:581
-#, c-format
-msgid "Connection name"
-msgstr "Naziv konekcije"
-
-#: network/netconnect.pm:582
-#, c-format
-msgid "Phone number"
-msgstr "Broj telefona"
-
-#: network/netconnect.pm:583
-#, c-format
-msgid "Login ID"
-msgstr "Login ID"
-
-#: network/netconnect.pm:598 network/netconnect.pm:631
-#, c-format
-msgid "Dialup: IP parameters"
-msgstr "Dialup: IP parametri"
-
-#: network/netconnect.pm:601
-#, c-format
-msgid "IP parameters"
-msgstr "IP parametri"
-
-#: network/netconnect.pm:602 network/netconnect.pm:941
-#: printer/printerdrake.pm:460 standalone/drakconnect:109
-#: standalone/drakconnect:316 standalone/drakconnect:882
-#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:284
-#, c-format
-msgid "IP address"
-msgstr "IP adresa"
-
-#: network/netconnect.pm:603
-#, c-format
-msgid "Subnet mask"
-msgstr "Subnet maska"
-
-#: network/netconnect.pm:615
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr "Dialup: DNS parametri"
-
-#: network/netconnect.pm:618
-#, c-format
-msgid "DNS"
-msgstr "DNS"
-
-#: network/netconnect.pm:619
-#, c-format
-msgid "Domain name"
-msgstr "Ime domena"
-
-#: network/netconnect.pm:620 network/netconnect.pm:791
-#: standalone/drakconnect:992
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Prvi DNS server (opcionalno)"
-
-#: network/netconnect.pm:621 network/netconnect.pm:792
-#: standalone/drakconnect:993
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Drugi DNS server (opcionalno)"
-
-#: network/netconnect.pm:622
-#, c-format
-msgid "Set hostname from IP"
-msgstr "Odredi hostname iz IP adrese"
-
-#: network/netconnect.pm:634 standalone/drakconnect:327
-#, c-format
-msgid "Gateway"
-msgstr "Gateway"
-
-#: network/netconnect.pm:635 standalone/drakroam:124
-#, c-format
-msgid "Gateway IP address"
-msgstr "IP adresa gateway-a"
-
-#: network/netconnect.pm:670
-#, c-format
-msgid "ADSL configuration"
-msgstr "Podešavanje ADSLa"
-
-#: network/netconnect.pm:705
-#, c-format
-msgid "Please choose your ADSL provider"
-msgstr "Molim izaberite vašeg ADSL provajdera"
-
-#: network/netconnect.pm:735
-#, c-format
-msgid ""
-"Please choose your DSL connection type.\n"
-"If you do not know it, keep the preselected type."
-msgstr ""
-
-#: network/netconnect.pm:738
-#, c-format
-msgid "ADSL connection type:"
-msgstr "Vrsta ADSL veze:"
-
-#: network/netconnect.pm:796
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr "Virtual Path ID (VPI):"
-
-#: network/netconnect.pm:797
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr "Virtual Circuit ID (VCI):"
-
-#: network/netconnect.pm:800
-#, c-format
-msgid "Encapsulation:"
-msgstr "Enkapsulacija:"
-
-#: network/netconnect.pm:830
-#, c-format
-msgid "Manually load a driver"
-msgstr "Ručno učitaj drajver"
-
-#: network/netconnect.pm:831
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr "Koristi Windows drajver (putem ndiswrappera)"
-
-#: network/netconnect.pm:896
-#, c-format
-msgid "Zeroconf hostname resolution"
-msgstr "Zeroconf rezolvira hostname"
-
-#: network/netconnect.pm:897 network/netconnect.pm:928
-#, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "Podešavam mrežni uređaj %s (drajver %s)"
-
-#: network/netconnect.pm:898
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use"
-msgstr ""
-
-#: network/netconnect.pm:929
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Molim unesite IP konfiguraciju za ovaj računar.\n"
-"Svaka stavka bi trebala biti unesena kao IP adresa u decimalnoj notaciji\n"
-"razdvojenoj tačkama (npr. 1.2.3.4)."
-
-#: network/netconnect.pm:936 standalone/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Odredi ime računara iz DHCP adrese"
-
-#: network/netconnect.pm:937 standalone/drakconnect:375
-#, c-format
-msgid "DHCP host name"
-msgstr "DHCP ime računara"
-
-#: network/netconnect.pm:942 standalone/drakconnect:321
-#: standalone/drakconnect:883 standalone/drakgw:181
-#, c-format
-msgid "Netmask"
-msgstr "Netmask"
-
-#: network/netconnect.pm:944 standalone/drakconnect:437
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Otkrij id mrežne karte (korisno za laptope)"
-
-#: network/netconnect.pm:945 standalone/drakconnect:438
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Network Hotplugging"
-
-#: network/netconnect.pm:947 standalone/drakconnect:432
-#, c-format
-msgid "Start at boot"
-msgstr "Pokreni na bootu"
-
-#: network/netconnect.pm:949 standalone/drakconnect:460
-#, c-format
-msgid "Metric"
-msgstr "Metrika"
-
-#: network/netconnect.pm:950
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr ""
-
-#: network/netconnect.pm:952 standalone/drakconnect:369
-#: standalone/drakconnect:886
-#, c-format
-msgid "DHCP client"
-msgstr "DHCP klijent"
-
-#: network/netconnect.pm:954 standalone/drakconnect:379
-#, fuzzy, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "Timeout konekcije (u sek.)"
-
-#: network/netconnect.pm:955 standalone/drakconnect:382
-#, fuzzy, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "IP adresa DNS servera"
-
-#: network/netconnect.pm:956 standalone/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:957 standalone/drakconnect:384
-#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:965 printer/printerdrake.pm:1876
-#: standalone/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP adresa treba biti u formatu 1.2.3.4"
-
-#: network/netconnect.pm:969 standalone/drakconnect:680
-#, fuzzy, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "Gateway adresa treba biti u formatu 1.2.3.4"
-
-#: network/netconnect.pm:973
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr "Upozorenje: IP adresa %s je obično rezervisana !"
-
-#: network/netconnect.pm:978 standalone/drakTermServ:1927
-#: standalone/drakTermServ:1928 standalone/drakTermServ:1929
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s je već u upotrebi\n"
-
-#: network/netconnect.pm:1018
-#, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "Izaberite ndiswrapper drajver"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr ""
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Install a new driver"
-msgstr "Instaliraj novi drajver"
-
-#: network/netconnect.pm:1032
-#, c-format
-msgid "Select a device:"
-msgstr ""
-
-#: network/netconnect.pm:1061
-#, c-format
-msgid "Please enter the wireless parameters for this card:"
-msgstr "Molimo unesite parametre bežične veze za ovu karticu:"
-
-#: network/netconnect.pm:1064 standalone/drakconnect:404
-#: standalone/drakroam:52
-#, c-format
-msgid "Operating Mode"
-msgstr "Režim rada"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Ad-hoc"
-msgstr "Ad-hoc"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Managed"
-msgstr "Upravljano"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Master"
-msgstr "Glavni"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Repeater"
-msgstr "Repeater"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Secondary"
-msgstr "Sekundarni"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Auto"
-msgstr "Auto"
-
-#: network/netconnect.pm:1068 standalone/drakconnect:405
-#: standalone/drakroam:115
-#, c-format
-msgid "Network name (ESSID)"
-msgstr "Ime mreže (ESSID)"
-
-#: network/netconnect.pm:1069 standalone/drakroam:116
-#, c-format
-msgid "Encryption mode"
-msgstr ""
-
-#: network/netconnect.pm:1074
-#, c-format
-msgid "Allow access point roaming"
-msgstr ""
-
-#: network/netconnect.pm:1076 standalone/drakconnect:406
-#, c-format
-msgid "Network ID"
-msgstr "ID mreže"
-
-#: network/netconnect.pm:1077 standalone/drakconnect:407
-#, c-format
-msgid "Operating frequency"
-msgstr "Frekvencija"
-
-#: network/netconnect.pm:1078 standalone/drakconnect:408
-#, c-format
-msgid "Sensitivity threshold"
-msgstr "Prag osjetljivosti"
-
-#: network/netconnect.pm:1079 standalone/drakconnect:409
-#, c-format
-msgid "Bitrate (in b/s)"
-msgstr "Brzina veze (u b/s)"
-
-#: network/netconnect.pm:1080 standalone/drakconnect:420
-#, c-format
-msgid "RTS/CTS"
-msgstr "RTS/CTS"
-
-#: network/netconnect.pm:1081
-#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
-"RTS/CTS dodaje proceduru potvrde prijema za svaki paket kako bi se "
-"osiguralo\n"
-"da su podaci ispravno preneseni. Ovo dodaje neiskorišteni prenos, ali može\n"
-"rezultirati boljim performansama u slučaju skrivenih čvorova ili velikog "
-"broja aktivnih\n"
-"čvorova (nodeova). Ovaj parametar podešava veličinu najmanjeg paketa za koji "
-"će\n"
-"čvor poslati RTS. Ako je vrijednost jednaka maksimalnoj veličini paketa, "
-"procedura\n"
-"je isključena. Takođe možete podesiti ovaj parametar na auto, fixed ili off."
-
-#: network/netconnect.pm:1088 standalone/drakconnect:421
-#, c-format
-msgid "Fragmentation"
-msgstr "Fragmentacija"
-
-#: network/netconnect.pm:1089 standalone/drakconnect:422
-#, c-format
-msgid "iwconfig command extra arguments"
-msgstr "Dodatni parametri naredbe iwconfig"
-
-#: network/netconnect.pm:1090
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-"Ovdje možete podesiti neke dodatne parametre kao što su:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick je već isti kao "
-"i hostname).\n"
-"\n"
-"Pogledajte man stranicu iwconfig(8) za dodatne informacije."
-
-#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1097 standalone/drakconnect:423
-#, c-format
-msgid "iwspy command extra arguments"
-msgstr "Dodatni parametri naredbe iwspy"
-
-#: network/netconnect.pm:1098
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-"lwspy se koristi da bi se dobila lista adresa na bežičnom interfejsu\n"
-"i kako bi se dobili podaci o kvaliteti linka za svaku od njih.\n"
-"\n"
-"Ove informacije su iste kao i one koje se nalaze u /proc/net/wireless :\n"
-"kvaliteta linka, jačina signala i nivo šuma.\n"
-"\n"
-"Pogledajte man stranicu iwspy(8) za više informacija."
-
-#: network/netconnect.pm:1107 standalone/drakconnect:424
-#, c-format
-msgid "iwpriv command extra arguments"
-msgstr "Dodatni parametri naredbe iwpriv"
-
-#: network/netconnect.pm:1108
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-"iwpriv omogućuje podešavanje opcionalnih (privatnih) parametara bežičnog\n"
-"mrežnog interfejsa.\n"
-"\n"
-"iwpriv se bavi parametrima i postavkama specifičnim za svaki drajver (za "
-"razliku\n"
-"od iwconfig koji se bavi opštim parametrima).\n"
-"\n"
-"U teoriji, dokumentacija za svaki uređaj bi trebala uključivati objašenjenje "
-"tih\n"
-"posebnih naredbi i njihove efekte.\n"
-"\n"
-"Pogledajte man stranicu iwpriv(8) za daljnje informacije."
-
-#: network/netconnect.pm:1123
-#, c-format
-msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
-msgstr ""
-"Frekvencija bi trebala imati završetak k, M ili G (na primjer, \"2.46G\" za "
-"frekvenciju 2.46 GHz) ili dodajte odgovarajući broj nula (0)."
-
-#: network/netconnect.pm:1127
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-"Brzina bi trebala imati završetak k, M ili G (na primjer, \"11M\" za 11M) "
-"ili dodajte odgovarajući broj nula (0)."
-
-#: network/netconnect.pm:1170
-#, c-format
-msgid "DVB configuration"
-msgstr ""
-
-#: network/netconnect.pm:1171
-#, c-format
-msgid "DVB Adapter"
-msgstr ""
-
-#: network/netconnect.pm:1188
-#, c-format
-msgid "DVB adapter settings"
-msgstr ""
-
-#: network/netconnect.pm:1191
-#, c-format
-msgid "Adapter card"
-msgstr ""
-
-#: network/netconnect.pm:1192
-#, c-format
-msgid "Net demux"
-msgstr ""
-
-#: network/netconnect.pm:1193
-#, c-format
-msgid "PID"
-msgstr "PID"
-
-#: network/netconnect.pm:1221
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Molim unesite naziv vašeg računara ako ga znate.\n"
-"Naziv vašeg računara bi trebao biti puno-kvalifikovani naziv,\n"
-"kao što je ``mojcomp.mojlab.mojafirma.com''.\n"
-"Možete također unijeti IP adresu gateway-a ako ga imate"
-
-#: network/netconnect.pm:1226
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr ""
-"Zadnje, ali ne i najmanje važno, možete unijeti IP adrese vaših DNS servera."
-
-#: network/netconnect.pm:1228 standalone/drakconnect:991
-#, c-format
-msgid "Host name (optional)"
-msgstr "Ime računara (opcionalno)"
-
-#: network/netconnect.pm:1228 standalone/drakhosts:197
-#, c-format
-msgid "Host name"
-msgstr "Ime računara"
-
-#: network/netconnect.pm:1230
-#, c-format
-msgid "DNS server 1"
-msgstr "DNS server 1"
-
-#: network/netconnect.pm:1231
-#, c-format
-msgid "DNS server 2"
-msgstr "DNS server 2"
-
-#: network/netconnect.pm:1232
-#, c-format
-msgid "DNS server 3"
-msgstr "DNS server 3"
-
-#: network/netconnect.pm:1233
-#, c-format
-msgid "Search domain"
-msgstr "Domene za pretragu"
-
-#: network/netconnect.pm:1234
-#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr ""
-"Podrazumijeva se domena za pretragu koja je dio kvalifikovanog imena računara"
-
-#: network/netconnect.pm:1235
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Gateway (tj. %s)"
-
-#: network/netconnect.pm:1237
-#, c-format
-msgid "Gateway device"
-msgstr "Gateway uređaj"
-
-#: network/netconnect.pm:1246
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "Adresa DNS servera treba biti u formatu 1.2.3.4"
-
-#: network/netconnect.pm:1251 standalone/drakconnect:685
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Gateway adresa treba biti u formatu 1.2.3.4"
-
-#: network/netconnect.pm:1264
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-"Ako je potrebno, unesite Zeroconf ime računara.\n"
-"Ovo je ime koje će vaš računar koristiti da objavi svoje\n"
-"dijeljene resurse koji nisu pod upravljanjem mreže. To nije\n"
-"potrebno na većini mreža."
-
-#: network/netconnect.pm:1268
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Zeroconf Ime računara"
-
-#: network/netconnect.pm:1271
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "Zeroconf ime računara ne smije sadržavati ."
-
-#: network/netconnect.pm:1281
-#, fuzzy, c-format
-msgid "Do you want to allow users to start the connection?"
-msgstr "Da li želite pokrenuti konekciju prilikom boota?"
-
-#: network/netconnect.pm:1294
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Da li želite pokrenuti konekciju prilikom boota?"
-
-#: network/netconnect.pm:1310
-#, c-format
-msgid "Automatically at boot"
-msgstr "Automatski pri startu sistema"
-
-#: network/netconnect.pm:1312
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr "Koristeći Net Applet u sistemskom trayu"
-
-#: network/netconnect.pm:1314
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr "Ručno (interfejs će se i dalje pokretati prilikom boota)"
-
-#: network/netconnect.pm:1323
-#, c-format
-msgid "How do you want to dial this connection?"
-msgstr "Kako želite uspostaviti ovu konekciju ?"
-
-#: network/netconnect.pm:1336
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Da li se želite pokušati spojiti na Internet sada?"
-
-#: network/netconnect.pm:1344 standalone/drakconnect:1023
-#, c-format
-msgid "Testing your connection..."
-msgstr "Probavam vašu konekciju..."
-
-#: network/netconnect.pm:1369
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Sistem je sada spojen na Internet."
-
-#: network/netconnect.pm:1370
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Iz sigurnosnih razloga, sada će biti odspojen."
-
-#: network/netconnect.pm:1371
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Izgleda da sistem nije spojen na Internet.\n"
-"Probajte promijeniti postavke vaše konekcije."
-
-#: network/netconnect.pm:1386
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-"Čestitamo, podešavanje mreže i Interneta je završeno.\n"
-"\n"
-
-#: network/netconnect.pm:1389
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Nakon što je to gotovo, preporučujemo da restartujete vaš X\n"
-"okoliš kako bi se izbjegao problem sa promjenom naziva računara."
-
-#: network/netconnect.pm:1390
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-"Došlo je do problema prilikom podešavanja.\n"
-"Provjerite vašu konekciju pomoću net_monitor ili mcc. Ako vaša konekcija ne "
-"radi, možete ponovo pokrenuti podešavanje"
-
-#: network/netconnect.pm:1402
-#, c-format
-msgid "(detected on port %s)"
-msgstr "(detektovan na portu %s)"
-
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected %s)"
-msgstr "(detektovan %s)"
-
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected)"
-msgstr "(detektovan)"
-
-#: network/netconnect.pm:1405
-#, c-format
-msgid "Network Configuration"
-msgstr "Podešavanje mreže"
-
-#: network/netconnect.pm:1406
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Pošto radite mrežnu instalaciju, vaša mreža je već podešena.\n"
-"Kliknite na U redu da zadržite tu konfiguraciju ili Odustani za podešavanje "
-"vaše Internet & Mrežne konekcije.\n"
-
-#: network/netconnect.pm:1409
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr "Potrebno je restartovati mrežu. Želite li je restartovati?"
-
-#: network/netconnect.pm:1410
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Došlo je do problema prilikom restartovanja mreže:\n"
-"\n"
-"%s"
-
-#: network/netconnect.pm:1411
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-"Sada ćemo podesiti vezu %s.\n"
-"\n"
-"\n"
-"Pritisnite \"%s\" za nastavak."
-
-#: network/netconnect.pm:1412
-#, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr "Podešavanje je završeno, želite li primijeniti postavke?"
-
-#: network/netconnect.pm:1413
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Podesili ste nekoliko načina za konekciju na Internet.\n"
-"Izaberite jedan od njih koji ćete koristiti.\n"
-"\n"
-
-#: network/netconnect.pm:1414
-#, c-format
-msgid "Internet connection"
-msgstr "Internet konekcija"
-
-#: network/netconnect.pm:1428
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-"Došlo je do neočekivane greške:\n"
-"%s"
-
-#: network/network.pm:411
-#, c-format
-msgid "Proxies configuration"
-msgstr "Konfiguracija proxija"
-
-#: network/network.pm:412
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-
-#: network/network.pm:413
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: network/network.pm:414
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: network/network.pm:415
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: network/network.pm:416
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: network/network.pm:420
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Proxy treba biti http://..."
-
-#: network/network.pm:421
-#, c-format
-msgid "Proxy should be https?://..."
-msgstr ""
-
-#: network/network.pm:422
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URL treba počinjati sa 'ftp:' ili 'http:'"
-
-#: network/shorewall.pm:55
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-"Molim unesite naziv interfejsa spojenog na Internet.\n"
-"\n"
-"Primjeri:\n"
-"\t\tppp+ za modemsku ili DSL konekciju, \n"
-"\t\teth0, ili eth1 za mrežnu konekciju, \n"
-"\t\tippp+ za isdn konekciju.\n"
-
-#: network/thirdparty.pm:232
-#, fuzzy, c-format
-msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
-msgstr ""
-"Potreban vam je Alcatel-ov mikrokod.\n"
-"Možete ga downloadovati na\n"
-"%s\n"
-"zatim kopirajte mgmt.o u /usr/share/speedtouch"
-
-#: network/thirdparty.pm:241
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-"Ne možemo podržavati ECI Hi-Focus modem pošto ne smijemo distribuirati "
-"binarne drajvere.\n"
-"\n"
-"Možete naći drajver na http://eciadsl.flashtux.org/"
-
-#: network/thirdparty.pm:321
-#, fuzzy, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "Ne mogu instalirati pakete %s!"
-
-#: network/thirdparty.pm:329
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr ""
-
-#: network/thirdparty.pm:330
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-
-#: network/thirdparty.pm:332
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-
-#: network/thirdparty.pm:372
-#, fuzzy, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "Pobriši fontove sa mog sistema"
-
-#: network/thirdparty.pm:374
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr ""
-
-#: network/thirdparty.pm:384
-#, c-format
-msgid "Insert floppy"
-msgstr "Ubacite disketu"
-
-#: network/thirdparty.pm:385
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"Ubacite FAT formatiranu disketu u jedinicu %s sa %s u root direktoriju i "
-"pritisnite %s"
-
-#: network/thirdparty.pm:395
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Greška pri pristupu disketi, ne mogu montirati uređaj %s"
-
-#: network/thirdparty.pm:405
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-"Potreban vam je Alcatel mikrokod.\n"
-"Možete ga sada potražiti na disketi ili vašoj Windows particiji,\n"
-"ili preskočiti ovaj korak i završiti ga kasnije."
-
-#: network/thirdparty.pm:409 network/thirdparty.pm:411
-#, c-format
-msgid "Use a floppy"
-msgstr "Koristi disketu"
-
-#: network/thirdparty.pm:409
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Koristi moju Windows particiju"
-
-#: network/thirdparty.pm:419
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "Kopiranje firmware-a nije uspjelo, datoteka %s nije pronađena"
-
-#: network/thirdparty.pm:424 standalone/drakautoinst:250
-#: standalone/drakvpn:888 standalone/scannerdrake:422
-#, c-format
-msgid "Congratulations!"
-msgstr "Čestitamo!"
-
-#: network/thirdparty.pm:424
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "Kopiranje firmware-a uspjelo"
-
-#: network/thirdparty.pm:493
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr ""
-
-#: network/thirdparty.pm:498
-#, fuzzy, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "Molim sačekajte, otkrivam i podešavam uređaje..."
-
-#: network/wireless.pm:8
-#, c-format
-msgid "Open WEP"
-msgstr ""
-
-#: network/wireless.pm:9
-#, c-format
-msgid "Restricted WEP"
-msgstr ""
-
-#: network/wireless.pm:10
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr ""
-
-#: partition_table.pm:391
+#: partition_table.pm:390
#, c-format
msgid "mount failed: "
msgstr "montiranje nije uspjelo: "
-#: partition_table.pm:496
+#: partition_table.pm:500
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Extended particije nisu podržane na ovoj platformi"
-#: partition_table.pm:514
+#: partition_table.pm:518
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
@@ -11791,22 +5140,27 @@ msgstr ""
"Jedino rješenje je da pomjerite vaše primarne particije, kako bi se rupa "
"našla pored extended particija"
-#: partition_table.pm:605
+#: partition_table.pm:597
+#, c-format
+msgid "Error reading file %s"
+msgstr "Greška u čitanju datoteke %s"
+
+#: partition_table.pm:604
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Povratak iz datoteke %s nije uspio: %s"
-#: partition_table.pm:607
+#: partition_table.pm:606
#, c-format
msgid "Bad backup file"
msgstr "Loša backup datoteka"
-#: partition_table.pm:627
+#: partition_table.pm:626
#, c-format
msgid "Error writing to file %s"
msgstr "Greška u pisanju datoteke: %s"
-#: partition_table/raw.pm:253
+#: partition_table/raw.pm:264
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
@@ -11818,3481 +5172,47 @@ msgstr ""
"Test integriteta podataka nije uspio. \n"
"To znači će da pisanje bilo čega na disk rezultirati smećem."
-#: pkgs.pm:21
-#, c-format
-msgid "must have"
-msgstr "obavezno"
-
-#: pkgs.pm:22
-#, c-format
-msgid "important"
-msgstr "važno"
-
-#: pkgs.pm:23
-#, c-format
-msgid "very nice"
-msgstr "vrlo fino"
-
-#: pkgs.pm:24
-#, c-format
-msgid "nice"
-msgstr "fino"
-
-#: pkgs.pm:25
-#, c-format
-msgid "maybe"
-msgstr "možda"
-
-#: pkgs.pm:474
-#, fuzzy, c-format
-msgid "Downloading file %s..."
-msgstr "Šaljem datoteke..."
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on %s)"
-msgstr "(na %s)"
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on this machine)"
-msgstr "(na ovom računaru)"
-
-#: printer/cups.pm:117 standalone/printerdrake:200
-#, c-format
-msgid "Configured on other machines"
-msgstr "Podešeno na ostalim računarima"
-
-#: printer/cups.pm:119
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Na CUPS serveru \"%s\""
-
-#: printer/cups.pm:119 printer/printerdrake.pm:4909
-#: printer/printerdrake.pm:4919 printer/printerdrake.pm:5078
-#: printer/printerdrake.pm:5089 printer/printerdrake.pm:5303
-#, c-format
-msgid " (Default)"
-msgstr " (Default)"
-
-#: printer/data.pm:67
-#, c-format
-msgid "PDQ - Print, Do not Queue"
-msgstr "PDQ - Print, Do not Queue"
-
-#: printer/data.pm:68
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: printer/data.pm:80
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: printer/data.pm:81
-#, c-format
-msgid "LPD"
-msgstr "LPD"
-
-#: printer/data.pm:102
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: printer/data.pm:103
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
-
-#: printer/data.pm:128
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: printer/data.pm:158
-#, c-format
-msgid "CUPS - Common Unix Printing System (remote server)"
-msgstr "CUPS - Common Unix Printing System (udaljeni server)"
-
-#: printer/data.pm:159
-#, c-format
-msgid "Remote CUPS"
-msgstr "Udaljeni CUPS"
-
-#: printer/detect.pm:168 printer/detect.pm:263 printer/detect.pm:498
-#: printer/detect.pm:571 printer/main.pm:330 printer/main.pm:692
-#: printer/main.pm:1815 printer/printerdrake.pm:960
-#: printer/printerdrake.pm:1120 printer/printerdrake.pm:2448
-#: printer/printerdrake.pm:4004
-#, c-format
-msgid "Unknown model"
-msgstr "Nepoznat model"
-
-#: printer/main.pm:24
-#, c-format
-msgid "Local printer"
-msgstr "Lokalni štampač"
-
-#: printer/main.pm:25
-#, c-format
-msgid "Remote printer"
-msgstr "Udaljeni štampač"
-
-#: printer/main.pm:26
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Štampač na udaljenom CUPS serveru"
-
-#: printer/main.pm:27 printer/printerdrake.pm:1360
-#: printer/printerdrake.pm:1899
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Štampač na udaljenom lpd serveru"
-
-#: printer/main.pm:28
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Mrežni štampač (TCP/Socket)"
-
-#: printer/main.pm:29
-#, fuzzy, c-format
-msgid "Printer on SMB/Windows server"
-msgstr "Štampač na SMB/Windows 95/98/NT serveru"
-
-#: printer/main.pm:30
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Štampač na NetWare serveru"
-
-#: printer/main.pm:31 printer/printerdrake.pm:1903
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Unesite URI uređaja štampača"
-
-#: printer/main.pm:32
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Spoji zadatak na komandu"
-
-#: printer/main.pm:43
-#, c-format
-msgid "recommended"
-msgstr "preporučeno"
-
-#: printer/main.pm:355 standalone/printerdrake:199
-#, c-format
-msgid "Configured on this machine"
-msgstr "Podešeno na ovom računaru"
-
-#: printer/main.pm:361 printer/printerdrake.pm:1445
-#, c-format
-msgid " on parallel port #%s"
-msgstr " na paralelnom portu #%s"
-
-#: printer/main.pm:364 printer/printerdrake.pm:1448
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", USB štampač #%s"
-
-#: printer/main.pm:366
-#, c-format
-msgid ", USB printer"
-msgstr ", USB štampač"
-
-#: printer/main.pm:370
-#, c-format
-msgid ", HP printer on a parallel port"
-msgstr ", HP štampač na paralelnom portu"
-
-#: printer/main.pm:372
-#, c-format
-msgid ", HP printer on USB"
-msgstr ", HP štampač na USB portu"
-
-#: printer/main.pm:374
-#, c-format
-msgid ", HP printer on HP JetDirect"
-msgstr ", HP štampač na HP JetDirect"
-
-#: printer/main.pm:376
-#, c-format
-msgid ", HP printer"
-msgstr ", HP štampač"
-
-#: printer/main.pm:382
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", višenamjenski uređaj na paralelnom portu #%s"
-
-#: printer/main.pm:385
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", višenamjenski uređaj na paralelnom portu"
-
-#: printer/main.pm:387
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", višenamjenski uređaj na USBu"
-
-#: printer/main.pm:389
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", višenamjenski uređaj na HP JetDirect"
-
-#: printer/main.pm:391
-#, c-format
-msgid ", multi-function device"
-msgstr ", višenamjenski uređaj"
-
-#: printer/main.pm:395
-#, c-format
-msgid ", printing to %s"
-msgstr ", štampa u %s"
-
-#: printer/main.pm:398
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr "na LPD serveru \"%s\", štampač \"%s\""
-
-#: printer/main.pm:401
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP host \"%s\", port %s"
-
-#: printer/main.pm:406
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr "na SMB/Windows serveru \"%s\", share \"%s\""
-
-#: printer/main.pm:411
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr "na Novell serveru \"%s\", štampač \"%s\""
-
-#: printer/main.pm:414
-#, c-format
-msgid ", using command %s"
-msgstr ", koristeći komandu %s"
-
-#: printer/main.pm:429
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Paralelni port #%s"
-
-#: printer/main.pm:432 printer/printerdrake.pm:1466
-#: printer/printerdrake.pm:1493 printer/printerdrake.pm:1508
-#, c-format
-msgid "USB printer #%s"
-msgstr "USB štampač #%s"
-
-#: printer/main.pm:434
-#, c-format
-msgid "USB printer"
-msgstr "USB štampač"
-
-#: printer/main.pm:438
-#, c-format
-msgid "HP printer on a parallel port"
-msgstr "HP štampač na paralelnom portu"
-
-#: printer/main.pm:440
-#, c-format
-msgid "HP printer on USB"
-msgstr "HP štampač na USB portu"
-
-#: printer/main.pm:442
-#, c-format
-msgid "HP printer on HP JetDirect"
-msgstr "HP štampač na HP JetDirect"
-
-#: printer/main.pm:444
-#, c-format
-msgid "HP printer"
-msgstr "HP štampač"
-
-#: printer/main.pm:450
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Višenamjenski uređaj na paralelnom portu #%s"
-
-#: printer/main.pm:453
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Višenamjenski uređaj na paralelnom portu"
-
-#: printer/main.pm:455
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "Višenamjenski uređaj na USBu"
-
-#: printer/main.pm:457
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Višenamjenski uređaj na HP JetDirect"
-
-#: printer/main.pm:459
-#, c-format
-msgid "Multi-function device"
-msgstr "Višenamjenski uređaj"
-
-#: printer/main.pm:463
-#, c-format
-msgid "Prints into %s"
-msgstr "Štampa u %s"
-
-#: printer/main.pm:466
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "na LPD serveru \"%s\", štampač \"%s\""
-
-#: printer/main.pm:469
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "TCP/IP host \"%s\", port %s"
-
-#: printer/main.pm:474
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "SMB/Windows server \"%s\", share \"%s\""
-
-#: printer/main.pm:479
-#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Novell server \"%s\", štampač \"%s\""
-
-#: printer/main.pm:482
-#, c-format
-msgid "Uses command %s"
-msgstr "Koristi naredbu %s"
-
-#: printer/main.pm:484
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
-
-#: printer/main.pm:689 printer/printerdrake.pm:1047
-#: printer/printerdrake.pm:3142
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Sirovo štampanje (Bez drajvera)"
-
-#: printer/main.pm:1309 printer/printerdrake.pm:211
-#: printer/printerdrake.pm:223
-#, c-format
-msgid "Local network(s)"
-msgstr "Lokalna mreža (mreže)"
-
-#: printer/main.pm:1311 printer/printerdrake.pm:227
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Interfejs \"%s\""
-
-#: printer/main.pm:1313
-#, c-format
-msgid "Network %s"
-msgstr "Mreža %s"
-
-#: printer/main.pm:1315
-#, c-format
-msgid "Host %s"
-msgstr "Računar %s"
-
-#: printer/main.pm:1344
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Port %s)"
-
-#: printer/main.pm:1945 printer/main.pm:2100
-#, c-format
-msgid "user-supplied"
-msgstr ""
-
-#: printer/main.pm:1949 printer/main.pm:2104
-#, c-format
-msgid "NEW"
-msgstr ""
-
-#: printer/printerdrake.pm:24
-#, c-format
-msgid ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"decompressing the self-extracting '.exe' file with the 'unzip' utility and "
-"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
-"printer' directory. There it will be found by the automatic uploader script "
-"and uploaded whenever the printer is connected and turned on.\n"
-msgstr ""
-"Za štampač HP LaserJet 1000 potrebno je da uploadujete firmwer prilikom "
-"paljenja. Potrebno je da skinete Windows drajvere sa HPove web stranice "
-"(firmware koji se nalazi na CDu koji je došao uz štampač ne radi) i izvadite "
-"firmware datoteku. Ovo ćete uraditi tako što ćete raspakovati "
-"samoraspakujuću '.exe' datoteku koristeći 'unzip' alat, te potražiti "
-"datoteku 'sihp1000.img'. Kopirajte ovu datoteku u direktorij '/etc/printer'. "
-"Ovdje će je automatski pronaći uploader skripta i poslati štampaču svaki put "
-"kada štampač bude spojen i upaljen.\n"
-
-#: printer/printerdrake.pm:67
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "Podešavanje CUPS štampača"
-
-#: printer/printerdrake.pm:68
-#, c-format
-msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessible by remote machines and by which remote machines."
-msgstr ""
-"Ovdje možete izabrati da li štampači spojeni na ovaj računar trebaju biti "
-"dostupni drugim računarima i kojim drugim računarima."
-
-#: printer/printerdrake.pm:69
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-"Takođe možete odlučiti da li štampači na udaljenim računarima trebaju biti "
-"automatski dostupni sa ovog računara."
-
-#: printer/printerdrake.pm:72 printer/printerdrake.pm:506
-#: printer/printerdrake.pm:4542
-#, c-format
-msgid "Remote CUPS server and no local CUPS daemon"
-msgstr "Udaljeni CUPS server i bez lokalnog CUPS demona"
-
-#: printer/printerdrake.pm:75
-#, c-format
-msgid "On"
-msgstr "Uključen"
-
-#: printer/printerdrake.pm:77 printer/printerdrake.pm:498
-#: printer/printerdrake.pm:525
-#, c-format
-msgid "Off"
-msgstr "Isključen"
-
-#: printer/printerdrake.pm:78 printer/printerdrake.pm:507
-#, c-format
-msgid ""
-"In this mode the local CUPS daemon will be stopped and all printing requests "
-"go directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-"U ovom režimu, lokalni CUPS demon će biti zaustavljen i svi zahtjevi za "
-"štampanje će ići direktno na server naveden ispod. Zapamtite da u tom "
-"slučaju nije moguće definisati lokalne redove za štampu te da, ako je "
-"navedeni server isključen, neće biti moguće štampati sa ovog računara."
-
-#: printer/printerdrake.pm:84
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Štampači na ovom računaru su dostupni drugim računarima"
-
-#: printer/printerdrake.pm:89
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Automatski pronađi dostupne štampače na udaljenim računarima"
-
-#: printer/printerdrake.pm:94
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Dijeljenje štampača na računarima/mrežama:"
-
-#: printer/printerdrake.pm:96
-#, c-format
-msgid "Custom configuration"
-msgstr "Vlastita konfiguracija"
-
-#: printer/printerdrake.pm:101 standalone/scannerdrake:610
-#: standalone/scannerdrake:627
-#, c-format
-msgid "No remote machines"
-msgstr "Nema udaljenih računara"
-
-#: printer/printerdrake.pm:112
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Dodatni CUP serveri:"
-
-#: printer/printerdrake.pm:119
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"Da biste pristupili štampačima na udaljenim CUPS serverima u vašoj lokalnoj "
-"mreži, sve što treba je da uključite opciju \"Automatski pronađi dostupne "
-"štampače na udaljenim računarima\"; CUPS serveri će automatski informisati "
-"vaš računar o svojim štampačima. Svi štampači koji su poznati vašem računaru "
-"su navedeni u sekciji \"Udaljeni štampači\" glavnog Printerdrake prozora. "
-"Ako vaš CUPS server nije u lokalnoj mreži, morate ovdje unijeti njegovu IP "
-"adresu i eventualno broj porta kako biste dobili informacije od servera."
-
-#: printer/printerdrake.pm:127
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Japanski režim štampanja"
-
-#: printer/printerdrake.pm:128
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in Japanese language. Only "
-"use this function if you really want to print text in Japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print Japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Ako ovo uključite, moći ćete štampati obične tekstualne datoteke na "
-"japanskom jeziku. Koristite ovu funkciju samo ako zaista želite štampati "
-"japanski tekst, jer kada je aktivirana, više ne možete štampati znakove sa "
-"akcentima u latiničnim fontovima (npr. naša slova). Takođe nećete moći "
-"prilagoditi margine, veličine znakova, itd. Ova postavka će utjecati samo na "
-"štampače koji su definisani na ovom računaru. Ako želite štampati japanski "
-"tekst na udaljenom računaru, trebate aktivirati ovu funkciju na tom računaru."
-
-#: printer/printerdrake.pm:135
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Automatska ispravka konfiguracije CUPSa"
-
-#: printer/printerdrake.pm:137
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Kada je upaljena ova opcija, prilikom svakog pokretanja CUPSa biće "
-"provjereno da\n"
-"\n"
-"- je instaliran LPD/LPRng, CUPS neće prepisati /etc/printcap\n"
-"\n"
-"- postoji /etc/cups/cupsd.conf, ako ne onda će biti napravljen\n"
-"\n"
-"- informacije o štampaču ne sadrže \"localhost\" kao ime servera prilikom "
-"broadcasta.\n"
-"\n"
-"Ako vam neke od ovih mjera stvaraju probleme, možete isključiti ovu opciju, "
-"ali onda se morate sami brinuti da su navedeni uslovi ispunjeni."
-
-#: printer/printerdrake.pm:161 printer/printerdrake.pm:236
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Dijeljenje lokalnih štampača"
-
-#: printer/printerdrake.pm:162
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr "Ovo su računari i mreže čiji lokalni štampači trebaju biti dostupni:"
-
-#: printer/printerdrake.pm:173
-#, c-format
-msgid "Add host/network"
-msgstr "Dodaj računar/mrežu"
-
-#: printer/printerdrake.pm:179
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Izmijeni izabrani računar/mrežu"
-
-#: printer/printerdrake.pm:188
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Ukloni izabrani računar/mrežu"
-
-#: printer/printerdrake.pm:219 printer/printerdrake.pm:229
-#: printer/printerdrake.pm:241 printer/printerdrake.pm:248
-#: printer/printerdrake.pm:279 printer/printerdrake.pm:297
-#, c-format
-msgid "IP address of host/network:"
-msgstr "IP adresa računara/mreže:"
-
-#: printer/printerdrake.pm:237
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr "Izaberite mrežu ili računar čijim štampačima treba omogućiti pristup."
-
-#: printer/printerdrake.pm:244
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Nedostaje IP adresa računara/mreže."
-
-#: printer/printerdrake.pm:252
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "Unesena IP adresa računara/mreže nije ispravna.\n"
-
-#: printer/printerdrake.pm:253 printer/printerdrake.pm:429
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Primjeri ispravnih IPa:\n"
-
-#: printer/printerdrake.pm:277
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr "Ovaj računar/mreža je već na listi, ne možete ga ponovo dodati.\n"
-
-#: printer/printerdrake.pm:346 printer/printerdrake.pm:416
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Pristupam štampačima na udaljenim CUPS serverima"
-
-#: printer/printerdrake.pm:347
-#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
-"Ovdje dodajte CUPS servere čije štampače želite koristiti. Ovo trebate "
-"raditi samo ako serveri ne broadcast-uju informacije o njihovim štampačima "
-"cijeloj lokalnoj mreži."
-
-#: printer/printerdrake.pm:358
-#, c-format
-msgid "Add server"
-msgstr "Dodaj server"
-
-#: printer/printerdrake.pm:364
-#, c-format
-msgid "Edit selected server"
-msgstr "Izmijeni izabrani server"
-
-#: printer/printerdrake.pm:373
-#, c-format
-msgid "Remove selected server"
-msgstr "Ukloni izabrani server"
-
-#: printer/printerdrake.pm:417
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr "Unesite IP adresu i port računara čije štampače želite koristiti."
-
-#: printer/printerdrake.pm:418
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "Ako nije naveden port, podrazumijevaće se 631."
-
-#: printer/printerdrake.pm:422
-#, c-format
-msgid "Server IP missing!"
-msgstr "Nedostaje IP adresa servera!"
-
-#: printer/printerdrake.pm:428
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Unesena IP adresa nije ispravna.\n"
-
-#: printer/printerdrake.pm:440 printer/printerdrake.pm:2133
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Broj porta treba biti cijeli broj!"
-
-#: printer/printerdrake.pm:451
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "Ovaj server je već na listi, ne možete ga ponovo dodati.\n"
-
-#: printer/printerdrake.pm:462 printer/printerdrake.pm:2160
-#: standalone/drakups:249 standalone/harddrake2:52
-#, c-format
-msgid "Port"
-msgstr "Port"
-
-#: printer/printerdrake.pm:495 printer/printerdrake.pm:511
-#: printer/printerdrake.pm:526 printer/printerdrake.pm:530
-#: printer/printerdrake.pm:536
-#, c-format
-msgid "On, Name or IP of remote server:"
-msgstr "Uključen, Ime ili IP adresa udaljenog servera:"
-
-#: printer/printerdrake.pm:514 printer/printerdrake.pm:4551
-#: printer/printerdrake.pm:4617
-#, c-format
-msgid "CUPS server name or IP address missing."
-msgstr "Nedostaje naziv ili IP adresa CUPS servera."
-
-#: printer/printerdrake.pm:566 printer/printerdrake.pm:586
-#: printer/printerdrake.pm:811 printer/printerdrake.pm:880
-#: printer/printerdrake.pm:901 printer/printerdrake.pm:927
-#: printer/printerdrake.pm:1023 printer/printerdrake.pm:1065
-#: printer/printerdrake.pm:1075 printer/printerdrake.pm:1110
-#: printer/printerdrake.pm:2220 printer/printerdrake.pm:2490
-#: printer/printerdrake.pm:2524 printer/printerdrake.pm:2575
-#: printer/printerdrake.pm:2582 printer/printerdrake.pm:2621
-#: printer/printerdrake.pm:2663 printer/printerdrake.pm:2700
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2984
-#: printer/printerdrake.pm:2989 printer/printerdrake.pm:3137
-#: printer/printerdrake.pm:3248 printer/printerdrake.pm:3862
-#: printer/printerdrake.pm:3929 printer/printerdrake.pm:3978
-#: printer/printerdrake.pm:3981 printer/printerdrake.pm:4091
-#: printer/printerdrake.pm:4149 printer/printerdrake.pm:4221
-#: printer/printerdrake.pm:4242 printer/printerdrake.pm:4252
-#: printer/printerdrake.pm:4342 printer/printerdrake.pm:4437
-#: printer/printerdrake.pm:4443 printer/printerdrake.pm:4471
-#: printer/printerdrake.pm:4578 printer/printerdrake.pm:4687
-#: printer/printerdrake.pm:4707 printer/printerdrake.pm:4716
-#: printer/printerdrake.pm:4731 printer/printerdrake.pm:4932
-#: printer/printerdrake.pm:5407 printer/printerdrake.pm:5490
-#: standalone/printerdrake:75 standalone/printerdrake:590
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: printer/printerdrake.pm:567 printer/printerdrake.pm:4150
-#: printer/printerdrake.pm:4688
-#, c-format
-msgid "Reading printer data..."
-msgstr "Čitam podatke o štampaču..."
-
-#: printer/printerdrake.pm:587
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "Restartujem CUPS..."
-
-#: printer/printerdrake.pm:614
-#, c-format
-msgid ""
-"Allow pop-up windows, printer setup and package installation may be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:616
-#, c-format
-msgid ""
-"No pop-up windows, printer setup and package installation cannot be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:622
-#, fuzzy, c-format
-msgid "Printer auto administration"
-msgstr "Auto-detekcija štampača"
-
-#: printer/printerdrake.pm:623
-#, c-format
-msgid ""
-"Here you can configure printer administration tasks which should be done "
-"automatically."
-msgstr ""
-
-#: printer/printerdrake.pm:626
-#, fuzzy, c-format
-msgid "Do automatic configuration of new printers"
-msgstr "Automatsko ponovno podešavanje"
-
-#: printer/printerdrake.pm:627 printer/printerdrake.pm:641
-#, fuzzy, c-format
-msgid "when a USB printer is connected and turned on"
-msgstr "(Provjerite da li su svi štampači spojeni i upaljeni).\n"
-
-#: printer/printerdrake.pm:630
-#, fuzzy, c-format
-msgid "when Printerdrake is started"
-msgstr "Ovaj štampač je onemogućen"
-
-#: printer/printerdrake.pm:634
-#, c-format
-msgid "Mode for automatic printer setup:"
-msgstr ""
-
-#: printer/printerdrake.pm:640
-#, fuzzy, c-format
-msgid "Re-enable disabled printers"
-msgstr "Dostupni štampači"
-
-#: printer/printerdrake.pm:644
-#, fuzzy, c-format
-msgid "when the printing system is started"
-msgstr "Promijenite sistem štampe"
-
-#: printer/printerdrake.pm:680
-#, fuzzy, c-format
-msgid "Communication error handling for the printer \"%s\""
-msgstr "Korištenje/održavanje štampača \"%s\""
-
-#: printer/printerdrake.pm:682
-#, c-format
-msgid ""
-"Here you can configure how errors during the communication between your "
-"computer and the printer \"%s\" should be handled (for example if the "
-"printer is not turned on)."
-msgstr ""
-
-#: printer/printerdrake.pm:686
-#, fuzzy, c-format
-msgid "The number of retries should be an integer number of at least 1!"
-msgstr "Broj porta treba biti cijeli broj!"
-
-#: printer/printerdrake.pm:690
-#, fuzzy, c-format
-msgid "The delay between retries should be a positive integer number!"
-msgstr "Period mora biti pozitivan cijeli broj!"
-
-#: printer/printerdrake.pm:701
-#, fuzzy, c-format
-msgid "Do not disable the printer"
-msgstr "Onemogući štampač"
-
-#: printer/printerdrake.pm:704
-#, c-format
-msgid "Retry infinitely often"
-msgstr ""
-
-#: printer/printerdrake.pm:707
-#, c-format
-msgid "Number of retries"
-msgstr "Broj ponovnih pokušaja:"
-
-#: printer/printerdrake.pm:712
-#, c-format
-msgid "Delay between retries (in sec)"
-msgstr ""
-
-#: printer/printerdrake.pm:745 printer/printerdrake.pm:765
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Izaberi konekciju štampača"
-
-#: printer/printerdrake.pm:746
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Kako je štampač povezan na računar?"
-
-#: printer/printerdrake.pm:748
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Ovdje ne morate podešavati štampače na udaljenim CUPS serverima; ovi "
-"štampači će biti automatski prepoznati."
-
-#: printer/printerdrake.pm:751 printer/printerdrake.pm:4934
-#, c-format
-msgid ""
-"\n"
-"WARNING: No local network connection active, remote printers can neither be "
-"detected nor tested!"
-msgstr ""
-"\n"
-"UPOZORENJE: Nije aktivna nijedna lokalna mrežna konekcija, tako da ne mogu "
-"pronaći ni testirati udaljene štampače!"
-
-#: printer/printerdrake.pm:758
-#, c-format
-msgid ""
-"Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"
-msgstr ""
-"Automatsko prepoznavanje štampača (lokalni, TCP/Socket, SMB štampači i URI "
-"uređaja)"
-
-#: printer/printerdrake.pm:760
-#, c-format
-msgid "Modify timeout for network printer auto-detection"
-msgstr "Izmijeni period za auto-detekciju mrežnih štampača"
-
-#: printer/printerdrake.pm:766
-#, c-format
-msgid "Enter the timeout for network printer auto-detection (in msec) here. "
-msgstr ""
-"Unesite vremenski period (u msek.) tokom kojeg će se pokušavati automatski "
-"prepoznati mrežni štampač."
-
-#: printer/printerdrake.pm:768
-#, c-format
-msgid ""
-"The longer you choose the timeout, the more reliable the detections of "
-"network printers will be, but the scan can take longer then, especially if "
-"there are many machines with local firewalls in the network. "
-msgstr ""
-"Ako izaberete veći period, prepoznavanje mrežnih štampača će biti "
-"pouzdanije, ali će skeniranje trajati duže, pogotovo ako imate mnogo "
-"računara u mreži sa pokrenutim lokalnim firewallom."
-
-#: printer/printerdrake.pm:772
-#, c-format
-msgid "The timeout must be a positive integer number!"
-msgstr "Period mora biti pozitivan cijeli broj!"
-
-#: printer/printerdrake.pm:811
-#, c-format
-msgid "Checking your system..."
-msgstr "Proveravam vaš sistem..."
-
-#: printer/printerdrake.pm:829
-#, c-format
-msgid "and one unknown printer"
-msgstr "i jedan nepoznat štampač"
-
-#: printer/printerdrake.pm:831
-#, c-format
-msgid "and %d unknown printers"
-msgstr "i %d nepoznatih štampača"
-
-#: printer/printerdrake.pm:835
-#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Sljedeći štampači\n"
-"\n"
-"%s%s\n"
-"su direktno spojeni na vaš sistem"
-
-#: printer/printerdrake.pm:837
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Sljedeći štampač\n"
-"\n"
-"%s%s\n"
-"su direktno spojeni na vaš sistem"
-
-#: printer/printerdrake.pm:838
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-"Sljedeći štampač\n"
-"\n"
-"%s%s\n"
-"je direktno spojen na vaš sistem"
-
-#: printer/printerdrake.pm:842
-#, c-format
-msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
-"\n"
-"Na vaš sistem je direktno spojen jedan nepoznat štampač"
-
-#: printer/printerdrake.pm:843
-#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
-"\n"
-"Na vaš sistem je spojeno %d nepoznatih štampača"
-
-#: printer/printerdrake.pm:846
-#, c-format
-msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "Nema štampača koji su direktno povezani na ovaj računar"
-
-#: printer/printerdrake.pm:849
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "(Provjerite da li su svi štampači spojeni i upaljeni).\n"
-
-#: printer/printerdrake.pm:862
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
-"Želite li omogućiti štampanje na štampačima navedenim gore ili na štampačima "
-"u lokalnoj mreži?\n"
-
-#: printer/printerdrake.pm:863
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Da li želite da omogućite štampanje na štampačima u lokalnoj mreži?\n"
-
-#: printer/printerdrake.pm:865
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Da li želite omogućiti štampanje na gore navedenim štampačima?\n"
-
-#: printer/printerdrake.pm:866
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Sigurno želite podesiti štampanje na ovom računaru?\n"
-
-#: printer/printerdrake.pm:867
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
-"NAPOMENA: Ovisno o modelu štampača i sistemu štampe, biće instalirano do %d "
-"MB dodatnog softvera."
-
-#: printer/printerdrake.pm:884
-#, c-format
-msgid "Do not setup printer automatically now, and never do it again"
-msgstr ""
-
-#: printer/printerdrake.pm:928
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Tražim nove štampače..."
-
-#: printer/printerdrake.pm:976
-#, c-format
-msgid "Do not setup printer automatically again"
-msgstr ""
-
-#: printer/printerdrake.pm:983
-#, fuzzy, c-format
-msgid "New printers found"
-msgstr "Nije pronađen nijedan štampač!"
-
-#: printer/printerdrake.pm:984
-#, fuzzy, c-format
-msgid "New printer found"
-msgstr "Nije pronađen nijedan štampač!"
-
-#: printer/printerdrake.pm:986
-#, c-format
-msgid ""
-"The following new printers were found and Printerdrake can automatically set "
-"them up for you. If you do not want to have all of them set up, unselect the "
-"ones which should be skipped, or click \"Cancel\" to set up none of them.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:987
-#, c-format
-msgid ""
-"The following new printer was found and printerdrake can automatically set "
-"it up for you. If you do not want to have it set up, unselect it, or click "
-"\"Cancel\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:988
-#, c-format
-msgid ""
-"Note that for certain printer models additional packages need to be "
-"installed. So keep your installation media handy.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1024 printer/printerdrake.pm:1066
-#, c-format
-msgid "Configuring printer on %s..."
-msgstr "Podešavam štampač na %s..."
-
-#: printer/printerdrake.pm:1049
-#, c-format
-msgid "("
-msgstr "("
-
-#: printer/printerdrake.pm:1050
-#, c-format
-msgid " on "
-msgstr " na "
-
-#: printer/printerdrake.pm:1051 standalone/scannerdrake:137
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: printer/printerdrake.pm:1056 printer/printerdrake.pm:3149
-#, c-format
-msgid "Printer model selection"
-msgstr "Izbor modela štampača"
-
-#: printer/printerdrake.pm:1057 printer/printerdrake.pm:3150
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Koji model štampača imate?"
-
-#: printer/printerdrake.pm:1058
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-"\n"
-"\n"
-"Printerdrake nije mogao odrediti model vašeg %s štampača. Molim izaberite "
-"odgovarajući model na listi."
-
-#: printer/printerdrake.pm:1061 printer/printerdrake.pm:3155
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Ako štampač nije naveden, izaberite kompatibilan (pogledajte uputstva za "
-"štampač) ili sličan."
-
-#: printer/printerdrake.pm:1076 printer/printerdrake.pm:4708
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Podešavam štampač \"%s\"..."
-
-#: printer/printerdrake.pm:1111
-#, c-format
-msgid ""
-"Now you have turned off automatic printer setup.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1112
-#, c-format
-msgid ""
-"You can turn it back on again by choosing \"%s\" -> \"%s\" in Printerdrake's "
-"main menu. "
-msgstr ""
-
-#: printer/printerdrake.pm:1112 printer/printerdrake.pm:4984
-#, fuzzy, c-format
-msgid "Configure Auto Administration"
-msgstr "Udaljena administracija"
-
-#: printer/printerdrake.pm:1113
-#, c-format
-msgid ""
-"There you can also choose in which situation automatic printer setup is done "
-"(On Printerdrake startup, on printing system startup, when connecting a new "
-"USB printer)."
-msgstr ""
-
-#: printer/printerdrake.pm:1261 printer/printerdrake.pm:1273
-#: printer/printerdrake.pm:1380 printer/printerdrake.pm:2401
-#: printer/printerdrake.pm:2460 printer/printerdrake.pm:2556
-#: printer/printerdrake.pm:4951 printer/printerdrake.pm:5138
-#, c-format
-msgid "Add a new printer"
-msgstr "Dodaj novi štampač"
-
-#: printer/printerdrake.pm:1262
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Dobro došli u Čarobnjak za podešavanje štampača\n"
-"\n"
-"Ovaj čarobnjak vam omogućuje da instalirate lokalne ili udaljene štampače "
-"koji će biti korišteni sa ovog računara, a također i sa drugih računara na "
-"mreži.\n"
-"\n"
-"On će od vas tražiti sve potrebne informacije kako bi štampač bio podešen, a "
-"vama omogućen pristup svim dostupnim drajverima, opcijama drajvera i vrstama "
-"konekcije štampača."
-
-#: printer/printerdrake.pm:1275
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected. Also your network printer(s) and your Windows "
-"machines must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you do not "
-"need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Dobro došli u Čarobnjak za podešavanje štampača\n"
-"\n"
-"Ovaj čarobnjak će vam pomoći da instalirate štampače spojene na ovaj "
-"računar, na mrežu ili na udaljeni Windows računar.\n"
-"\n"
-"Ako imate štampač spojen na ovaj računar, molim priključite ga na računar i "
-"upalite ga kako bi bio automatski prepoznat. Takođe mrežni štampači i "
-"Windows računari moraju biti povezani i upaljeni.\n"
-"\n"
-"Obratite pažnju da automatsko prepoznavanje mrežnih štampača traje duže nego "
-"prepoznavanje štampača spojenih na ovaj računar. Stoga ugasite prepoznavanje "
-"mrežnih štampača i/ili Windows štampača ako vam ona nije potrebna.\n"
-"\n"
-" Kliknite na \"Dalje\" kada budete spremni, ili na \"Odustani\" ako ne "
-"želite podesiti štampač sada."
-
-#: printer/printerdrake.pm:1284
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Dobro došli u Čarobnjak za podešavanje štampača\n"
-"\n"
-"Ovaj čarobnjak će vam pomoći da instalirate štampače spojene na ovaj "
-"računar.\n"
-"\n"
-"Ako imate štampač spojen na ovaj računar, molim priključite ga na računar i "
-"upalite ga kako bi bio automatski prepoznat.\n"
-"\n"
-" Kliknite na \"Dalje\" kada budete spremni, ili na \"Odustani\" ako ne "
-"želite podesiti štampač sada."
-
-#: printer/printerdrake.pm:1292
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you do not need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Dobro došli u Čarobnjak za podešavanje štampača\n"
-"\n"
-"Ovaj čarobnjak će vam pomoći da instalirate štampače spojene na ovaj računar "
-"ili spojene na mrežu.\n"
-"\n"
-"Ako imate štampač spojen na ovaj računar, molim priključite ga na računar i "
-"upalite ga kako bi bio auto-prepoznat. Takođe mrežni štampači moraju biti "
-"spojeni i upaljeni.\n"
-"\n"
-"Obratite pažnju da detekcija mrežnih štampača traje duže nego detekcija "
-"štampača spojenih na ovaj računar. Stoga ugasite detekciju mrežnih štampača "
-"ako vam ona nije potrebna.\n"
-"\n"
-"Kliknite na \"Dalje\" kada budete spremni, ili na \"Odustani\" ako ne želite "
-"podesiti štampač sada."
-
-#: printer/printerdrake.pm:1301
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Dobro došli u Čarobnjak za podešavanje štampača\n"
-"\n"
-"Ovaj čarobnjak će vam pomoći da instalirate štampače spojene na ovaj "
-"računar.\n"
-"\n"
-"Ako imate štampač spojen na ovaj računar, molim priključite ga na računar i "
-"upalite ga kako bi bio auto-prepoznat.\n"
-"\n"
-"Kliknite na \"Dalje\" kada budete spremni, ili na \"Odustani\" ako ne želite "
-"podesiti štampač sada."
-
-#: printer/printerdrake.pm:1352
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Automatski prepoznaj štampače spojene na ovaj računar"
-
-#: printer/printerdrake.pm:1355
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Automatski prepoznaj štampače spojene direktno na lokalnu mrežu"
-
-#: printer/printerdrake.pm:1358
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr "Automatski prepoznaj štampače spojene na Microsoft Windows računare"
-
-#: printer/printerdrake.pm:1361
-#, fuzzy, c-format
-msgid "No auto-detection"
-msgstr "Auto prepoznavanje"
-
-#: printer/printerdrake.pm:1381
-#, c-format
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the %s Control Center."
-msgstr ""
-"\n"
-"Čestitamo, vaš štampač je sada instaliran i podešen!\n"
-"\n"
-"Možete štampati koristeći komandu \"Štampaj\" u vašem programu (obično se "
-"nalazi u meniju \"Datoteka\").\n"
-"\n"
-"Ako želite dodati, ukloniti ili promijeniti ime štampača, ili ako želite "
-"promijeniti neke podrazumjevane postavke (ulazni put papira, kvaliteta "
-"štampe...), izaberite opciju \"Štampač\" u \"Hardware\" sekciji %s "
-"Kontrolnog centra."
-
-#: printer/printerdrake.pm:1417 printer/printerdrake.pm:1641
-#: printer/printerdrake.pm:1704 printer/printerdrake.pm:1796
-#: printer/printerdrake.pm:1934 printer/printerdrake.pm:2010
-#: printer/printerdrake.pm:2177 printer/printerdrake.pm:2268
-#: printer/printerdrake.pm:2277 printer/printerdrake.pm:2286
-#: printer/printerdrake.pm:2297 printer/printerdrake.pm:2496
-#: printer/printerdrake.pm:2633
-#, c-format
-msgid "Could not install the %s packages!"
-msgstr "Ne mogu instalirati pakete %s!"
-
-#: printer/printerdrake.pm:1419
-#, c-format
-msgid "Skipping Windows/SMB server auto-detection"
-msgstr "Preskačem auto-detekciju Windows/SMB servera"
-
-#: printer/printerdrake.pm:1425 printer/printerdrake.pm:1564
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Auto-detekcija štampača"
-
-#: printer/printerdrake.pm:1425
-#, c-format
-msgid "Detecting devices..."
-msgstr "Prepoznajem uređaje..."
-
-#: printer/printerdrake.pm:1451
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", mrežni štampač \"%s\", port %s"
-
-#: printer/printerdrake.pm:1454
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", štampač \"%s\" na SMB/Windows serveru \"%s\""
-
-#: printer/printerdrake.pm:1458
-#, c-format
-msgid "Detected %s"
-msgstr "Detektovan %s"
-
-#: printer/printerdrake.pm:1463 printer/printerdrake.pm:1490
-#: printer/printerdrake.pm:1505
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Štampač na paralelnom portu #%s"
-
-#: printer/printerdrake.pm:1469
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Mrežni štampač \"%s\", port %s"
-
-#: printer/printerdrake.pm:1472
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Štampač \"%s\" na SMB/Windows serveru \"%s\""
-
-#: printer/printerdrake.pm:1550
-#, c-format
-msgid "Local Printer"
-msgstr "Lokalni štampač"
-
-#: printer/printerdrake.pm:1551
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Nije pronađen nijedan lokalni štampač! Ako želite ručno instalirati štampač, "
-"unesite ime uređaja / ime datoteke na ulaznu liniju (Paralelni portovi: /dev/"
-"lp0, /dev/lp1, ..., ekvivalentno LPT1:, LPT2:, ..., prvi USB štampač: /dev/"
-"usb/lp0, drugi USB štampač: /dev/usb/lp1, ...)."
-
-#: printer/printerdrake.pm:1555
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Morate unijeti naziv uređaja ili datoteke!"
-
-#: printer/printerdrake.pm:1565
-#, c-format
-msgid "No printer found!"
-msgstr "Nije pronađen nijedan štampač!"
-
-#: printer/printerdrake.pm:1573
-#, c-format
-msgid "Local Printers"
-msgstr "Lokalni štampači"
-
-#: printer/printerdrake.pm:1574
-#, c-format
-msgid "Available printers"
-msgstr "Dostupni štampači"
-
-#: printer/printerdrake.pm:1578 printer/printerdrake.pm:1587
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Sljedeći štampač je prepoznat automatski."
-
-#: printer/printerdrake.pm:1580
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
-"Ako to nije onaj koji želite podesiti, uneiste naziv uređaja / naziv "
-"datoteke u ulaznu liniju"
-
-#: printer/printerdrake.pm:1581
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-"Alternativno, možete nasvesti naziv uređaja / naziv datoteke na ulaznoj "
-"liniji"
-
-#: printer/printerdrake.pm:1582 printer/printerdrake.pm:1591
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Ovdje je lista svih automatski prepoznatih štampača."
-
-#: printer/printerdrake.pm:1584
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
-msgstr ""
-"Molim izaberite štampač koji želite podesiti ili unesite naziv uređaja / "
-"naziv datoteke na ulaznoj liniji"
-
-#: printer/printerdrake.pm:1585
-#, c-format
-msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-"Molim izaberite štampač kojem želite slati zadatke štampe ili unesite naziv "
-"uređaja / naziv datoteke na ulaznoj liniji"
-
-#: printer/printerdrake.pm:1589
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Podešavanje štampača će raditi potpuno automatski. Ako vaš štampač nije "
-"ispravno prepoznat ili ako želite sami podesiti štampač, uključite \"Ručno "
-"podešavanje\"."
-
-#: printer/printerdrake.pm:1590
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Trenutno nije dostupna nijedna alternativa"
-
-#: printer/printerdrake.pm:1593
-#, c-format
-msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
-msgstr ""
-"Molim odaberite štampač koji želite podesiti. Podešavanje štampača će raditi "
-"potpuno automatski. Ako vaš štampač nije ispravno prepoznat ili ako želite "
-"sami podesiti štampač, uključite \"Ručno podešavanje\"."
-
-#: printer/printerdrake.pm:1594
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Molim izaberite štampač kojem želite slati zadatke štampe."
-
-#: printer/printerdrake.pm:1596
-#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Molim izaberite port na koji je vaš štampač povezan ili unesite naziv "
-"uređaja / naziv datoteke na ulaznoj liniji"
-
-#: printer/printerdrake.pm:1597
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Molim izaberite na koji port je priključen vaš štampač."
-
-#: printer/printerdrake.pm:1599
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Paralelni portovi: /dev/lp0, /dev/lp1, ..., ekvivalentno sa LPT1:, "
-"LPT2:, ..., prvi USB štampač: /dev/usb/lp0, drugi USB štampač: /dev/usb/"
-"lp1, ...)."
-
-#: printer/printerdrake.pm:1603
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Morate izabrati ili unijeti štampač / uređaj!"
-
-#: printer/printerdrake.pm:1643 printer/printerdrake.pm:1706
-#: printer/printerdrake.pm:1798 printer/printerdrake.pm:1936
-#: printer/printerdrake.pm:2012 printer/printerdrake.pm:2179
-#: printer/printerdrake.pm:2270 printer/printerdrake.pm:2279
-#: printer/printerdrake.pm:2288 printer/printerdrake.pm:2299
-#, c-format
-msgid "Aborting"
-msgstr "Prekidam"
-
-#: printer/printerdrake.pm:1679
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Opcije udaljenog lpd štampača"
-
-#: printer/printerdrake.pm:1680
-#, c-format
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Da biste koristili udaljeni lpd štampač, morate dati ime računara za printer "
-"server i ime štampača na tom serveru."
-
-#: printer/printerdrake.pm:1681
-#, c-format
-msgid "Remote host name"
-msgstr "Ime udaljenog računara"
-
-#: printer/printerdrake.pm:1682
-#, c-format
-msgid "Remote printer name"
-msgstr "Ime udaljenog štampača"
-
-#: printer/printerdrake.pm:1685
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Ime udaljenog računara nedostaje!"
-
-#: printer/printerdrake.pm:1689
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Ime udaljenog štampača nedostaje!"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318 standalone/drakTermServ:475
-#: standalone/drakTermServ:807 standalone/drakTermServ:823
-#: standalone/drakTermServ:1653 standalone/drakTermServ:1662
-#: standalone/drakTermServ:1676 standalone/drakbackup:512
-#: standalone/drakbackup:618 standalone/drakbackup:653
-#: standalone/drakbackup:754 standalone/draknfs:203
-#: standalone/draksambashare:627 standalone/draksambashare:794
-#: standalone/harddrake2:275
-#, c-format
-msgid "Information"
-msgstr "Informacije"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Detektovani model: %s %s"
-
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Scanning network..."
-msgstr "Pretražujem mrežu..."
-
-#: printer/printerdrake.pm:1814 printer/printerdrake.pm:1835
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", štampač \"%s\" na serveru \"%s\""
-
-#: printer/printerdrake.pm:1817 printer/printerdrake.pm:1838
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Štampač \"%s\" na serveru \"%s\""
-
-#: printer/printerdrake.pm:1859
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Opcije SMB (Windows 9x/NT) štampača"
-
-#: printer/printerdrake.pm:1860
-#, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Da biste štampali na SMB štampač, morate dati ime SMB računara (Pažnja! Ono "
-"može biti različito od TCP/IP imena!) i eventualno IP adresu print servera, "
-"kao i share naziv štampača kojem želite pristupiti i korisničko ime, šifru i "
-"informacije o radnoj grupi."
-
-#: printer/printerdrake.pm:1861
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-"Ako je željeni štampač automatski prepoznat, jednostavno ga izaberite sa "
-"liste i dodajte korisničko ime, šifru i/ili radnu grupu ako je to potrebno."
-
-#: printer/printerdrake.pm:1863
-#, c-format
-msgid "SMB server host"
-msgstr "SMB server ime"
-
-#: printer/printerdrake.pm:1864
-#, c-format
-msgid "SMB server IP"
-msgstr "SMB server IP"
-
-#: printer/printerdrake.pm:1865 standalone/draksambashare:67
-#, c-format
-msgid "Share name"
-msgstr "Share naziv"
-
-#: printer/printerdrake.pm:1868
-#, c-format
-msgid "Workgroup"
-msgstr "Radna grupa"
-
-#: printer/printerdrake.pm:1870
-#, c-format
-msgid "Auto-detected"
-msgstr "Auto prepoznat"
-
-#: printer/printerdrake.pm:1880
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Treba biti dato ili ime servera ili IP adresa servera!"
-
-#: printer/printerdrake.pm:1884
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Naziv samba share-a nedostaje!"
-
-#: printer/printerdrake.pm:1890
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "SIGURNOSNO UPOZORENJE!"
-
-#: printer/printerdrake.pm:1891
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Upravo ćete podesiti štampanje na Windows račun zaštićen šifrom. Zbog "
-"propusta u arhitekturi Samba klijentskog softvera, šifra je stavljena u "
-"običnom tekstu u komandnu liniju Samba klijenta prilikom slanja zadatka "
-"štampe Windows serveru. Stoga je moguće da drugi korisnici ovog istog "
-"računara prikažu šifru na ekranu koristeći komandu kao što je \"ps auxwww"
-"\".\n"
-"\n"
-"Preporučujemo korištenje jedne od sljedećih alternativa (u svakom slučaju "
-"pobrinite se da samo računari na vašoj lokalnoj mreži imaju pristup Windows "
-"serveru, na primjer koristeći firewall):\n"
-"\n"
-"Koristite račun bez šifre na Windows serveru, kao što je \"GUEST\" račun ili "
-"poseban račun posvećen štampanju. Nemojte ukloniti zaštitu šifrom sa vašeg "
-"ličnog računa ili administratorskog računa.\n"
-"\n"
-"Podesite vaš Windows server tako da je štampač dostupan pod LPD protokolom. "
-"Zatim podesite štampanje na ovom računaru uz konekciju tipa \"%s\" u "
-"Printerdrake-u.\n"
-"\n"
-
-#: printer/printerdrake.pm:1901
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Podesite vaš Windows server tako da je štampač dostupan putem IPP protokola "
-"i podesite štampanje sa ove mašine koristeći \"%s\" tip konekcije u "
-"Printerdrake-u.\n"
-"\n"
-
-#: printer/printerdrake.pm:1904
-#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-"Povezati štampač na Linux server i dopustiti Windows računarima da se "
-"spajaju na njega kao klijenti.\n"
-"\n"
-"Da li zaista želite nastaviti sa podešavanjem štampača kako ste započeli?"
-
-#: printer/printerdrake.pm:1983
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "Opcije NetWare štampača"
-
-#: printer/printerdrake.pm:1984
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Da biste štampali na NetWare štampač, trebate dati naziv NetWare print "
-"servera (Pažnja! Ono može biti različito od njegovog TCP/IP imena!) kao i "
-"naziv reda za štampu na štampaču kojem želite pristupiti i eventualno "
-"korisničko ime i šifru."
-
-#: printer/printerdrake.pm:1985
-#, c-format
-msgid "Printer Server"
-msgstr "Printer Server"
-
-#: printer/printerdrake.pm:1986
-#, c-format
-msgid "Print Queue Name"
-msgstr "Naziv reda za štampu"
-
-#: printer/printerdrake.pm:1991
-#, c-format
-msgid "NCP server name missing!"
-msgstr "NCP naziv servera nedostaje!"
-
-#: printer/printerdrake.pm:1995
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "NCP naziv reda nedostaje!"
-
-#: printer/printerdrake.pm:2076 printer/printerdrake.pm:2097
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", host \"%s\", port %s"
-
-#: printer/printerdrake.pm:2079 printer/printerdrake.pm:2100
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Host \"%s\", port %s"
-
-#: printer/printerdrake.pm:2122
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/socket opcije štampača"
-
-#: printer/printerdrake.pm:2124
-#, c-format
-msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
-msgstr ""
-"Izaberite jedan od automatski prepoznatih štampača sa liste ili unesite ime "
-"računara ili IP i opcionalno broj porta (podrazumjeva se 9100) u polja za "
-"unos."
-
-#: printer/printerdrake.pm:2125
-#, c-format
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
-msgstr ""
-"Da biste štampali na TCP ili socket štampač, morate dati hostname ili IP "
-"adresu štampača i opcionalno broj porta (podrazumjeva se 9100). Na HP "
-"JetDirect serverima broj porta je obično 9100, na ostalim serverima on može "
-"varirati. Pogledajte priručnik vašeg hardware-a."
-
-#: printer/printerdrake.pm:2129
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Nedostaje hostname štampača ili IP adresa!"
-
-#: printer/printerdrake.pm:2158
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Hostname štampača ili IP adresa"
-
-#: printer/printerdrake.pm:2221
-#, c-format
-msgid "Refreshing Device URI list..."
-msgstr "Osvježavam listu URIja uređaja..."
-
-#: printer/printerdrake.pm:2224 printer/printerdrake.pm:2226
-#, c-format
-msgid "Printer Device URI"
-msgstr "URI uređaja štampača"
-
-#: printer/printerdrake.pm:2225
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Možete dati direktno URI za pristup štampaču. URI mora zadovoljavati ili "
-"CUPS ili Foomatic specifikacije. Obratite pažnju da nisu svi tipovi URIja "
-"podržani od svih spoolera."
-
-#: printer/printerdrake.pm:2249
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Trebate unijeti ispravan URI!"
-
-#: printer/printerdrake.pm:2354
-#, c-format
-msgid "Pipe into command"
-msgstr "Spoji (pipe) na komandu"
-
-#: printer/printerdrake.pm:2355
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-"Ovdje možete navesti bilo koju komandnu liniju kojoj će biti prosljeđen "
-"zadatak umjesto direktnog slanja na štampač."
-
-#: printer/printerdrake.pm:2356
-#, c-format
-msgid "Command line"
-msgstr "Komandna linija"
-
-#: printer/printerdrake.pm:2360
-#, c-format
-msgid "A command line must be entered!"
-msgstr "Trebate unijeti komandnu liniju!"
-
-#: printer/printerdrake.pm:2402
-#, c-format
-msgid "Your printer %s is currently connected %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2404 printer/printerdrake.pm:2411
-#, fuzzy, c-format
-msgid "to a parallel port"
-msgstr " na paralelnom portu #%s"
-
-#: printer/printerdrake.pm:2405 printer/printerdrake.pm:2412
-#, c-format
-msgid "to the USB"
-msgstr ""
-
-#: printer/printerdrake.pm:2406 printer/printerdrake.pm:2413
-#, fuzzy, c-format
-msgid "via the network"
-msgstr "Pokrećem mrežu"
-
-#: printer/printerdrake.pm:2407
-#, c-format
-msgid "This type of connection is currently not fully supported by HPLIP."
-msgstr ""
-
-#: printer/printerdrake.pm:2409
-#, c-format
-msgid "You get full HPLIP support for your device if you connect it "
-msgstr ""
-
-#: printer/printerdrake.pm:2415
-#, c-format
-msgid ""
-"You can now set up your device with HPLIP anyway (works in many cases), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "set it up without HPLIP (print-only), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, fuzzy, c-format
-msgid "or"
-msgstr "Sat"
-
-#: printer/printerdrake.pm:2417
-#, c-format
-msgid "cancel the setup (for example to reconnect your device)."
-msgstr ""
-
-#: printer/printerdrake.pm:2419
-#, c-format
-msgid ""
-"You can always revise your choice by clicking your printer's entry in the "
-"main window, "
-msgstr ""
-
-#: printer/printerdrake.pm:2420
-#, c-format
-msgid "clicking the \"%s\" button, "
-msgstr ""
-
-#. -PO: "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: printer/printerdrake.pm:2420 standalone/drakperm:124 standalone/drakups:300
-#: standalone/drakups:360 standalone/drakups:380 standalone/drakvpn:319
-#: standalone/drakvpn:680 standalone/printerdrake:245
-#, c-format
-msgid "Edit"
-msgstr "Izmijeni"
-
-#: printer/printerdrake.pm:2421
-#, c-format
-msgid "and choosing \"%s\"."
-msgstr ""
-
-#: printer/printerdrake.pm:2421 printer/printerdrake.pm:5334
-#: printer/printerdrake.pm:5394
-#, c-format
-msgid "Printer connection type"
-msgstr "Tip konekcije štampača"
-
-#: printer/printerdrake.pm:2423 standalone/logdrake:408
-#, c-format
-msgid "What do you want to do?"
-msgstr "Šta želite uraditi?"
-
-#: printer/printerdrake.pm:2424 printer/printerdrake.pm:2428
-#, c-format
-msgid "Set up with HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2425 printer/printerdrake.pm:2427
-#: printer/printerdrake.pm:2430
-#, c-format
-msgid "Set up without HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2461
-#, c-format
-msgid ""
-"On many HP printers there are special functions available, maintenance (ink "
-"level checking, nozzle cleaning. head alignment, ...) on all not too old "
-"inkjets, scanning on multi-function devices, and memory card access on "
-"printers with card readers. "
-msgstr ""
-"Na mnogim HP štamačima dostupne su posebne funkcije: održavanje (provjera "
-"nivoa tinte, čišćenje glava, poravnanje...) na svim ne previše starim "
-"inkjetima, skeniranje na višefunkcijskim uređajima, kao i pristup "
-"memorijskoj kartici kod štampača sa ovom mogućnošću."
-
-#: printer/printerdrake.pm:2463
-#, fuzzy, c-format
-msgid ""
-"To access these extra functions on HP printers they must be set up with "
-"HPLIP (HP Linux Imaging and Printing). "
-msgstr ""
-"Da biste pristupili ovim posebnim funkcijama na vašem HP štampaču, morate ga "
-"podesiti odgovarajućim programom: "
-
-#: printer/printerdrake.pm:2465
-#, fuzzy, c-format
-msgid "Do you want to use HPLIP (choose \"No\" for non-HP printers)? "
-msgstr "Šta je vaš izbor (izaberite \"Nijedno\" za ne-HP štampače)?"
-
-#: printer/printerdrake.pm:2491
-#, c-format
-msgid "Installing %s package..."
-msgstr "Instaliram %s pakete..."
-
-#: printer/printerdrake.pm:2491 printer/printerdrake.pm:2497
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "HPLIP"
-msgstr "HPLIP"
-
-#: printer/printerdrake.pm:2498
-#, c-format
-msgid "Only printing will be possible on the %s."
-msgstr "Samo štampanje će biti moguće na %s."
-
-#: printer/printerdrake.pm:2513
-#, c-format
-msgid "Could not remove your old HPOJ configuration file %s for your %s! "
-msgstr ""
-"Nisam mogao ukloniti vašu staru HPOJ konfiguracionu datoteku %s za vaš %s! "
-
-#: printer/printerdrake.pm:2515
-#, c-format
-msgid "Please remove the file manually and restart HPOJ."
-msgstr "Molim uklonite datoteku ručno i restartujte HPOJ."
-
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "Checking device and configuring %s..."
-msgstr "Provjeravam uređaj i podešavam %s..."
-
-#: printer/printerdrake.pm:2557
-#, c-format
-msgid "Which printer do you want to set up with HPLIP?"
-msgstr "Koji štampač želite podesiti za HPLIP?"
-
-#: printer/printerdrake.pm:2576
-#, c-format
-msgid "HPLIP was not able to communicate with the chosen printer!"
-msgstr ""
-
-#: printer/printerdrake.pm:2577 printer/printerdrake.pm:2584
-#, fuzzy, c-format
-msgid "Setting up the printer without HPLIP..."
-msgstr "Podešavam module kernela..."
-
-#: printer/printerdrake.pm:2583
-#, c-format
-msgid ""
-"HPLIP did not find any local printers (Parallel, USB) which it supports!"
-msgstr ""
-
-#: printer/printerdrake.pm:2622
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "Instaliram SANE pakete..."
-
-#: printer/printerdrake.pm:2635
-#, c-format
-msgid "Scanning on the %s will not be possible."
-msgstr "Skeniranje na %s neće biti moguće."
-
-#: printer/printerdrake.pm:2650
-#, c-format
-msgid "Using and Maintaining your %s"
-msgstr "Korištenje i održavanje %s"
-
-#: printer/printerdrake.pm:2664
-#, c-format
-msgid "Configuring device..."
-msgstr "Podešavam uređaj..."
-
-#: printer/printerdrake.pm:2701
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Omogućujem pristup štampaču putem CUPSa..."
-
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2985
-#: printer/printerdrake.pm:3138
-#, c-format
-msgid "Reading printer database..."
-msgstr "Čitam bazu podataka o štampačima ..."
-
-#: printer/printerdrake.pm:2943
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Unesite ime štampača i komentare"
-
-#: printer/printerdrake.pm:2947 printer/printerdrake.pm:4206
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Naziv štampača bi se trebao sastojati od slova, brojeva i donje linije"
-
-#: printer/printerdrake.pm:2953 printer/printerdrake.pm:4211
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Štampač \"%s\" već postoji,\n"
-"da li sigurno želite prepisati ovu konfiguraciju?"
-
-#: printer/printerdrake.pm:2960
-#, c-format
-msgid ""
-"The printer name \"%s\" has more than 12 characters which can make the "
-"printer unaccessible from Windows clients. Do you really want to use this "
-"name?"
-msgstr ""
-"Naziv štampača \"%s\" sadrži više od 12 znakova. Ovo će učiniti da se "
-"štampaču ne može pristupiti sa Windows računara. Želite li zaista koristiti "
-"ovo ime?"
-
-#: printer/printerdrake.pm:2969
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Svakom štampaču treba dati ime (npr. \"stampac\"). Polja Opis i Lokacija "
-"nije potrebno popuniti. Oni su komentari za korisnike."
-
-#: printer/printerdrake.pm:2970
-#, c-format
-msgid "Name of printer"
-msgstr "Naziv štampača"
-
-#: printer/printerdrake.pm:2971 standalone/drakconnect:592
-#: standalone/harddrake2:39 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Description"
-msgstr "Opis"
-
-#: printer/printerdrake.pm:2972 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Location"
-msgstr "Lokacija"
-
-#: printer/printerdrake.pm:2990
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Pripremam bazu podataka o štampačima..."
-
-#: printer/printerdrake.pm:3116
-#, c-format
-msgid "Your printer model"
-msgstr "Model vašeg štampača"
-
-#: printer/printerdrake.pm:3117
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"Printerdrake je uporedi ime modela koje je dobijeno od automatskog "
-"prepoznavanja štampača sa modelima koji su navedeni u njegovoj bazi podataka "
-"kako bi našao najbliži. Ovaj izbor možda nije tačan, pogotovo ako vaš "
-"štampač uopšte nije naveden u bazi. Stoga provjerite da li je izbor ispravan "
-"i ako je tako kliknite \"Model je ispravan\", u suprotnom kliknite "
-"\"Izaberite model ručno\" kako biste ručno izabrali vaš model štampača na "
-"sljedećem ekranu.\n"
-"\n"
-"Za vaš štampač Printerdrake je našao:\n"
-"\n"
-"%s"
-
-#: printer/printerdrake.pm:3122 printer/printerdrake.pm:3125
-#, c-format
-msgid "The model is correct"
-msgstr "Model je ispravan"
-
-#: printer/printerdrake.pm:3123 printer/printerdrake.pm:3124
-#: printer/printerdrake.pm:3127
-#, c-format
-msgid "Select model manually"
-msgstr "Izaberite model ručno"
-
-#: printer/printerdrake.pm:3151
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
-msgstr ""
-"\n"
-"\n"
-"Molim provjerite da li je Printerdrake izvršio ispravno automatsko "
-"prepoznavanje modela vašeg štampača. Potražite ispravan model na listi ako "
-"kursor stoji na pogrešnom modelu ili na \"Raw štampač\"."
-
-#: printer/printerdrake.pm:3170
-#, c-format
-msgid "Install a manufacturer-supplied PPD file"
-msgstr "Instaliraj PPD datoteku proizvođača"
-
-#: printer/printerdrake.pm:3202
-#, c-format
-msgid ""
-"Every PostScript printer is delivered with a PPD file which describes the "
-"printer's options and features."
-msgstr ""
-"Uz svaki PostScript štampač dostavljena je PPD datoteka koja opisuje opcije "
-"i mogućnosti štampača."
-
-#: printer/printerdrake.pm:3203
-#, c-format
-msgid ""
-"This file is usually somewhere on the CD with the Windows and Mac drivers "
-"delivered with the printer."
-msgstr ""
-"Ova datoteka je obično negdje na CDu sa Windows i Mac drajverima koji ste "
-"dobili uz štampač."
-
-#: printer/printerdrake.pm:3204
-#, c-format
-msgid "You can find the PPD files also on the manufacturer's web sites."
-msgstr "Možete takođe potražiti PPD datoteke na web sajtu proizvođača."
-
-#: printer/printerdrake.pm:3205
-#, c-format
-msgid ""
-"If you have Windows installed on your machine, you can find the PPD file on "
-"your Windows partition, too."
-msgstr ""
-"Ako imate Windows instaliran na ovom računaru, PPD datoteku možete naći i na "
-"Windows particiji."
-
-#: printer/printerdrake.pm:3206
-#, c-format
-msgid ""
-"Installing the printer's PPD file and using it when setting up the printer "
-"makes all options of the printer available which are provided by the "
-"printer's hardware"
-msgstr ""
-"Instaliranjem PPD datoteke štampača i njenim korištenjem pri podešavanju će "
-"vam postati dostupne sve mogućnosti koje pruža hardware štampača"
-
-#: printer/printerdrake.pm:3207
-#, c-format
-msgid ""
-"Here you can choose the PPD file to be installed on your machine, it will "
-"then be used for the setup of your printer."
-msgstr ""
-"Ovdje možete izabrati PPD datoteku koju treba instalirati. Ona će zatim biti "
-"korištena za podešavanje vašeg štampača."
-
-#: printer/printerdrake.pm:3209
-#, c-format
-msgid "Install PPD file from"
-msgstr "Instaliraj PPD datoteku"
-
-#: printer/printerdrake.pm:3212 printer/printerdrake.pm:3220
-#: standalone/scannerdrake:183 standalone/scannerdrake:192
-#: standalone/scannerdrake:242 standalone/scannerdrake:250
-#, c-format
-msgid "Floppy Disk"
-msgstr "sa diskete"
-
-#: printer/printerdrake.pm:3213 printer/printerdrake.pm:3222
-#: standalone/scannerdrake:184 standalone/scannerdrake:194
-#: standalone/scannerdrake:243 standalone/scannerdrake:252
-#, c-format
-msgid "Other place"
-msgstr "ostalo"
-
-#: printer/printerdrake.pm:3228
-#, c-format
-msgid "Select PPD file"
-msgstr "Izaberite PPD datoteku"
-
-#: printer/printerdrake.pm:3232
-#, c-format
-msgid "The PPD file %s does not exist or is unreadable!"
-msgstr "PPD datoteka %s ne postoji ili se ne može čitati!"
-
-#: printer/printerdrake.pm:3238
-#, c-format
-msgid "The PPD file %s does not conform with the PPD specifications!"
-msgstr "PPD datoteka %s nije sukladna PPD specifikaciji!"
-
-#: printer/printerdrake.pm:3249
-#, c-format
-msgid "Installing PPD file..."
-msgstr "Instaliram PPD datoteku..."
-
-#: printer/printerdrake.pm:3368
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "Podešavanje OKI winprinter-a"
-
-#: printer/printerdrake.pm:3369
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"Sada podešavate OK laserski winprinter. Ovi štampači\n"
-"koriste jedan poseban komunikacijski protokol i stoga rade samo kada su "
-"spojeni na prvom paralelnom portu. Ako je vaš štampač spojen na neki drugi "
-"port ili na print server molim spojite štampač na prvi paralelni port prije "
-"nego što odštampate testnu stranicu. Inače štampač neće raditi. Drajver će "
-"ignorisati vaše podešenje tipa konekcije."
-
-#: printer/printerdrake.pm:3394 printer/printerdrake.pm:3424
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Podešavanje Lexmark inkjet-a"
-
-#: printer/printerdrake.pm:3395
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Inkjet drajveri za štampu koje obezbjeđuje Lexmark podržavaju samo lokalne "
-"štampače, a ne i štampače na udaljenim računarima ili print serverima. Molim "
-"spojite vaš štampač na lokalni port ili ga podesite na računaru na koji je "
-"spojen."
-
-#: printer/printerdrake.pm:3425
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-"Da biste mogli štampati sa vašim Lexmark inkjetom na ovoj konfiguraciji, "
-"potrebni su vam inkjet drajveri za štampu koje obezbjeđuje Lexmark (http://"
-"www.lexmark.com/). Kliknite na link \"Drivers\". Zatim izaberite vaš model a "
-"zatim \"Linux\" kao operativni sistem. Drajveri dolaze u vidu RPM paketa ili "
-"shell skripte sa interaktivnom grafičkom instalacijom. Ne morate obaviti ovu "
-"konfiguraciju na grafičkom interfejsu. Odustanite odmah nakon licencnog "
-"ugovora. Zatim odštampajte stranice za poravnavanje glava sa "
-"\"lexmarkmaintain\" i podesite opcije poravnanja glave pomoću ovog programa."
-
-#: printer/printerdrake.pm:3435
-#, c-format
-msgid "Lexmark X125 configuration"
-msgstr "Podešavanje Lexmark X125"
-
-#: printer/printerdrake.pm:3436
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes. Please connect "
-"your printer to a local USB port or configure it on the machine where it is "
-"connected to."
-msgstr ""
-"Drajver za ovaj štampač podržava samo štampače spojene lokalno putem USBa, a "
-"ne i štampače na udaljenim računarima ili print serverima. Molim spojite vaš "
-"štampač na lokalni USB port ili ga podesite na računaru na koji je spojen."
-
-#: printer/printerdrake.pm:3458
-#, c-format
-msgid "Samsung ML/QL-85G configuration"
-msgstr "Samsung ML/QL-85G podešavanje"
-
-#: printer/printerdrake.pm:3459 printer/printerdrake.pm:3486
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected on the "
-"first parallel port, no printers on remote machines or print server boxes or "
-"on other parallel ports. Please connect your printer to the first parallel "
-"port or configure it on the machine where it is connected to."
-msgstr ""
-"Drajver za ovaj štampač podržava samo štampače spojene lokalno na prvi "
-"paralelni port, a ne i štampače na udaljenim računarima ili print serverima "
-"ili na drugim paralelnim portovima. Molim spojite vaš štampač na prvi "
-"paralelni port ili ga podesite na računaru na koji je spojen."
-
-#: printer/printerdrake.pm:3485
-#, c-format
-msgid "Canon LBP-460/660 configuration"
-msgstr "Canon LBP-460/660 podešavanje"
-
-#: printer/printerdrake.pm:3512
-#, fuzzy, c-format
-msgid "Canon LBP-810/1120 (CAPT) configuration"
-msgstr "Canon LBP-460/660 podešavanje"
-
-#: printer/printerdrake.pm:3513
-#, fuzzy, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes or on the parallel "
-"port. Please connect your printer to the USB or configure it on the machine "
-"where it is directly connected to."
-msgstr ""
-"Drajver za ovaj štampač podržava samo štampače spojene lokalno putem USBa, a "
-"ne i štampače na udaljenim računarima ili print serverima. Molim spojite vaš "
-"štampač na lokalni USB port ili ga podesite na računaru na koji je spojen."
-
-#: printer/printerdrake.pm:3520
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "Upload firmware-a za HP LaserJet 1000"
-
-#: printer/printerdrake.pm:3670
-#, c-format
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Podrazumjevane opcije štampača\n"
-"\n"
-"Trebate provjeriti da su veličina papira i tip tinte (ako je dostupno) "
-"ispravno podešeni. Obratite pažnju da za voma veliku kvalitetu / rezoluciju "
-"štampa može postati znatno sporija."
-
-#: printer/printerdrake.pm:3795
-#, c-format
-msgid "Printer default settings"
-msgstr "Podrazumjevane postavke štampača"
-
-#: printer/printerdrake.pm:3802
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Opcija %s mora biti cijeli broj!"
-
-#: printer/printerdrake.pm:3806
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Opcija %s mora biti broj!"
-
-#: printer/printerdrake.pm:3810
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Opcija %s izvan raspona!"
-
-#: printer/printerdrake.pm:3862
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Da li želite da podesite ovaj štampač (\"%s\")\n"
-"kao podrazumjevani štampač?"
-
-#: printer/printerdrake.pm:3878
-#, c-format
-msgid "Test pages"
-msgstr "Testna stranica"
-
-#: printer/printerdrake.pm:3879
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Molim izaberite testne stranice koje ćete štampati.\n"
-"Pažnja: foto testna stranica može tražiti dosta vremena za štampu a na "
-"laserskim štampačima sa malo memorije možda neće nikad ni izaći. U većini "
-"slučajeva dovoljno je odštampati standardnu testnu stranicu."
-
-#: printer/printerdrake.pm:3883
-#, c-format
-msgid "No test pages"
-msgstr "Nijedna testna strana"
-
-#: printer/printerdrake.pm:3884
-#, c-format
-msgid "Print"
-msgstr "Štampaj"
-
-#: printer/printerdrake.pm:3909
-#, c-format
-msgid "Standard test page"
-msgstr "Standardna testna strana"
-
-#: printer/printerdrake.pm:3912
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Alternativna testna strana (Letter)"
-
-#: printer/printerdrake.pm:3915
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Alternativna testna strana (A4)"
-
-#: printer/printerdrake.pm:3917
-#, c-format
-msgid "Photo test page"
-msgstr "Foto testna strana"
-
-#: printer/printerdrake.pm:3930
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Štampam testnu stranicu..."
-
-#: printer/printerdrake.pm:3950
-#, c-format
-msgid "Skipping photo test page."
-msgstr "Preskačem foto testnu stranu."
-
-#: printer/printerdrake.pm:3967
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Testna stranica je poslana štampaču.\n"
-"Može potrajati određeno vrijeme dok štampač krene.\n"
-"Status štampanja:\n"
-"%s\n"
-"\n"
-
-#: printer/printerdrake.pm:3971
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Testna stranica je poslana štampaču.\n"
-"Može potrajati određeno vrijeme dok štampač krene.\n"
-
-#: printer/printerdrake.pm:3981
-#, c-format
-msgid "Did it work properly?"
-msgstr "Da li je radilo ispravno?"
-
-#: printer/printerdrake.pm:4005
-#, c-format
-msgid "Raw printer"
-msgstr "Sirovi štampač"
-
-#: printer/printerdrake.pm:4027
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Za štampanje datoteke sa komandne linije (terminalski prozor) možete "
-"koristiti ili komandu \"%s <datoteka>\" ili grafički alat za štampu: \"xpp "
-"<datoteka>\" ili \"kprinter <datoteka>\". Grafički alati vam omogućuju da "
-"jednostavno odaberete štampač i izmjenite podešenja opcija.\n"
-
-#: printer/printerdrake.pm:4029
-#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Ove komande možete također koristiti u polju \"Komanda za štampu\" u "
-"dijalozima za štampu mnogih programa, ali ovdje ne morate navesti ime "
-"datoteke jer tu datoteku obezbjeđuje sam program.\n"
-
-#: printer/printerdrake.pm:4032 printer/printerdrake.pm:4049
-#: printer/printerdrake.pm:4059
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"Komanda \"%s\" također omogućava izmjenu opcija za pojedinačni zadatak "
-"štampe. Jednostavno dodajte željena podešenja na komandnu liniju, npr. \"%s "
-"<datoteka>\". "
-
-#: printer/printerdrake.pm:4035 printer/printerdrake.pm:4075
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"Za listu opcija koje su dostupne za trenutni štampač ili pročitajte listu "
-"koja je data ispod ili kliknite na dugme \"Lista opcija za štampu\".%s%s%s\n"
-"\n"
-
-#: printer/printerdrake.pm:4039
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Ovo je lista mogućih opcija za štampu za trenutni štampač:\n"
-"\n"
-
-#: printer/printerdrake.pm:4044 printer/printerdrake.pm:4054
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Za štampanje datoteke sa komandne linije (terminalski prozor) koristite "
-"komandu \"%s <datoteka>\".\n"
-
-#: printer/printerdrake.pm:4046 printer/printerdrake.pm:4056
-#: printer/printerdrake.pm:4066
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Ovu komandu također možete koristiti u polju \"Komanda za štampu\" u "
-"dijalozima za štampu mnogih programa. Ovdje nije potrebno navesti naziv "
-"datoteke jer tudatoteku obezbjeđuje sam program.\n"
-
-#: printer/printerdrake.pm:4051 printer/printerdrake.pm:4061
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Za listu opcija koje su dostupne za trenutni štampač kliknite na dugme "
-"\"Lista opcija za štampu\"."
-
-#: printer/printerdrake.pm:4064
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Za štampanje datoteke sa komandne linije (terminalski prozor) koristite "
-"komandu \"%s <datoteka>\" ili \"%s <datoteka>\".\n"
-
-#: printer/printerdrake.pm:4068
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Možete također koristiti grafički interfejs \"xpdq\" za podešavanje opcija i "
-"upravljanje zadacima štampe.\n"
-"Ako koristite KDE okruženje radne površine imate \"dugme za paniku\". To je "
-"ikona na radnoj površini čiji je naziv \"ZAUSTAVI štampač!\", koja "
-"zaustavlja sve zadatke štampe odmah kada kliknete na nju. Ovo je korisno "
-"npr. u slučaju zaglavljivanja papira.\n"
-
-#: printer/printerdrake.pm:4072
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"Komande \"%s\" i \"%s\" također omogućavaju izmjenu opcija za pojedinačni "
-"zadatak štampe. Jednostavno dodajte željena podešenja na komandnu liniju, "
-"npr. \"%s <datoteka>\".\n"
-
-#: printer/printerdrake.pm:4081
-#, c-format
-msgid "Using/Maintaining the printer \"%s\""
-msgstr "Korištenje/održavanje štampača \"%s\""
-
-#: printer/printerdrake.pm:4082
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Štampanje na štampač \"%s\""
-
-#: printer/printerdrake.pm:4088
-#, c-format
-msgid "Print option list"
-msgstr "Lista opcija za štampu"
-
-#: printer/printerdrake.pm:4092
-#, fuzzy, c-format
-msgid "Printing option list..."
-msgstr "Lista opcija za štampu"
-
-#: printer/printerdrake.pm:4110
-#, c-format
-msgid ""
-"Your %s is set up with HP's HPLIP driver software. This way many special "
-"features of your printer are supported.\n"
-"\n"
-msgstr ""
-"Vaš %s je podešen za HPov HPLIP drajver. Na ovaj način podržane su mnoge "
-"napredne mogućnosti vašeg štampača.\n"
-"\n"
-
-#: printer/printerdrake.pm:4113
-#, c-format
-msgid ""
-"The scanner in your printer can be used with the usual SANE software, for "
-"example Kooka or XSane (Both in the Multimedia/Graphics menu). "
-msgstr ""
-"Skener u vašem štampaču se može koristiti uobičajenim SANE softverom, kao "
-"što su npr. Kooka ili XSane (oba u meniju Multimedija/Grafika). "
-
-#: printer/printerdrake.pm:4114
-#, c-format
-msgid ""
-"Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to "
-"share your scanner on the network.\n"
-"\n"
-msgstr ""
-"Pokrenite Scannerdrake (Hardver/Skener u Mandriva Linux Kontrolnom centru) "
-"kako biste dijelili vaš skener putem mreže.\n"
-"\n"
-
-#: printer/printerdrake.pm:4118
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed like a usual USB "
-"mass storage device. "
-msgstr ""
-"Čitaču memorijskih kartica u vašem štampaču se može pristupiti kao običnom "
-"USB memorijskom uređaju. "
-
-#: printer/printerdrake.pm:4119
-#, c-format
-msgid ""
-"After inserting a card a hard disk icon to access the card should appear on "
-"your desktop.\n"
-"\n"
-msgstr ""
-"Nakon ubacivanja kartice, na vašem desktopu bi se trebala pojaviti ikona sa "
-"hard diskom za pristup kartici.\n"
-"\n"
-
-#: printer/printerdrake.pm:4121
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed using HP's Printer "
-"Toolbox (Menu: System/Monitoring/HP Printer Toolbox) clicking the \"Access "
-"Photo Cards...\" button on the \"Functions\" tab. "
-msgstr ""
-"Čitaču memorijskih kartica u vašem štampaču se može pristupiti koristeći "
-"HPov Printer Toolbox (meni: Sistem/Nadzor/HP Printer Toolbox) klikom na "
-"dugme \"Access Photo Cards...\" u kartici \"Functions\"."
-
-#: printer/printerdrake.pm:4122
-#, c-format
-msgid ""
-"Note that this is very slow, reading the pictures from the camera or a USB "
-"card reader is usually faster.\n"
-"\n"
-msgstr ""
-"Zapamtite da je ovo prilično sporo, čitanje slika direktno iz kamere ili "
-"putem USB čitača kartica je obično brže.\n"
-"\n"
-
-#: printer/printerdrake.pm:4125
-#, c-format
-msgid ""
-"HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a "
-"lot of status monitoring and maintenance functions for your %s:\n"
-"\n"
-msgstr ""
-"HPov Printer Toolbox (meni: Sistem/Nadzor/HP Printer Toolbox) vam nudi mnoge "
-"funkcije nadzora stanja i održavanja za vaš %s:\n"
-"\n"
-
-#: printer/printerdrake.pm:4126
-#, c-format
-msgid " - Ink level/status info\n"
-msgstr " - Nivo tinte/statusne info\n"
-
-#: printer/printerdrake.pm:4127
-#, c-format
-msgid " - Ink nozzle cleaning\n"
-msgstr " - Čišćenje glave za tintu\n"
-
-#: printer/printerdrake.pm:4128
-#, c-format
-msgid " - Print head alignment\n"
-msgstr " - Poravnanje glave za štampu\n"
-
-#: printer/printerdrake.pm:4129
-#, c-format
-msgid " - Color calibration\n"
-msgstr " - Kalibracija boje\n"
-
-#: printer/printerdrake.pm:4170 printer/printerdrake.pm:4197
-#: printer/printerdrake.pm:4232
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Premještanje konfiguracije štamapča"
-
-#: printer/printerdrake.pm:4171
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"Možete kopirati konfiguraciju štampača koju ste napravili za spooler %s u % "
-"s, vaš trenutni spooler. Svi podaci o konfiguraciji (naziv štampača, opis, "
-"lokacija, tip konekcije kao i podrazumjevane opcije) će biti preuzeti, ali "
-"zadaci štampe neće biti prebačeni.\n"
-"Svi redovi ne mogu biti prebačeni zbog sljedećih razloga:\n"
-
-#: printer/printerdrake.pm:4174
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS ne podržava štampače na Novell serverima ili štampačekoji šalju podatke "
-"u komandama slobodnog oblika.\n"
-
-#: printer/printerdrake.pm:4176
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ podržava samo lokalne štampače, udaljene LPD štampačei Socket/TCP "
-"štampače.\n"
-
-#: printer/printerdrake.pm:4178
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD i LPRng ne podržavaju IPP štampače.\n"
-
-#: printer/printerdrake.pm:4180
-#, c-format
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"Pored toga, redovi koji nisu kreirani ovim programom ili sa \"foomatic-"
-"configure\" ne mogu biti premješteni."
-
-#: printer/printerdrake.pm:4181
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Također štampači konfigurisani sa PPD datotekama koje su osigurali njihovi "
-"proizvođači ili sa vlastitim CUPS drajverima ne mogu biti prebačeni."
-
-#: printer/printerdrake.pm:4182
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Označite štampače koje ćete prebacivati i kliknite na \n"
-"\"Prebaci\"."
-
-#: printer/printerdrake.pm:4185
-#, c-format
-msgid "Do not transfer printers"
-msgstr "Nemoj prebacivati štampače"
-
-#: printer/printerdrake.pm:4186 printer/printerdrake.pm:4202
-#, c-format
-msgid "Transfer"
-msgstr "Prebaci"
-
-#: printer/printerdrake.pm:4198
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Štampač pod imenom \"%s\" već postoji pod %s: \n"
-"Kliknite na \"Prebaci\" da to prepišete.\n"
-"Možete također unijeti novo ime ili preskočiti ovaj štampač."
-
-#: printer/printerdrake.pm:4219
-#, c-format
-msgid "New printer name"
-msgstr "Novo ime štampača"
-
-#: printer/printerdrake.pm:4222
-#, c-format
-msgid "Transferring %s..."
-msgstr "Prebacujem %s ..."
-
-#: printer/printerdrake.pm:4233
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Prebacili ste vaš bivši podrazumjevani štampač (\"%s\"),Da li će to također "
-"biti podrazumjevani štampač podnovim sistemom štampe %s?"
-
-#: printer/printerdrake.pm:4243
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Osvježavam podatke o štampaču..."
-
-#: printer/printerdrake.pm:4253
-#, c-format
-msgid "Starting network..."
-msgstr "Pokrećem mrežu..."
-
-#: printer/printerdrake.pm:4296 printer/printerdrake.pm:4300
-#: printer/printerdrake.pm:4302
-#, c-format
-msgid "Configure the network now"
-msgstr "Sada podesite mrežu"
-
-#: printer/printerdrake.pm:4297
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Mrežna funkcionalnost nije podešena"
-
-#: printer/printerdrake.pm:4298
-#, c-format
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"Sada ćete podesiti udaljeni štampač. Ovo zahtjeva aktivan pristup mreži, ali "
-"vaša mreža još uvijek nije podešena. Ako želite nastaviti bez podešavanja "
-"mreže, nećete moći koristiti štampač koji sada podešavate. Kako želite da "
-"nastavimo?"
-
-#: printer/printerdrake.pm:4301
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Nastavi bez podešavanja mreže"
-
-#: printer/printerdrake.pm:4332
-#, c-format
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network is accessible after booting your "
-"system and correct the configuration using the %s Control Center, section "
-"\"Network & Internet\"/\"Connection\", and afterwards set up the printer, "
-"also using the %s Control Center, section \"Hardware\"/\"Printer\""
-msgstr ""
-"Podešavanje mreže koje je napravljeno tokom instalacije sada ne može biti "
-"pokrenuto. Molim provjerite da li će mreža postati dostupna nakon bootanja "
-"sistema i popravite podešenja koristeći %s Kontrolni centar, sekcija \"Mreža "
-"i Internet\"/\"Konekcija\", a zatim podesite štampač, ponovo koristeći %s "
-"Kontrolni centar, sekcija \"Hardver\"/\"Štampač\""
-
-#: printer/printerdrake.pm:4333
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Mrežni pristup nije aktivan i nije mogao biti pokrenut. Molim provjerite "
-"vašu konfiguraciju i vaš hardware. Onda ponovo pokušajte podesiti udaljeni "
-"štampač."
-
-#: printer/printerdrake.pm:4343
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Restartujem sistem za štampu ..."
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "high"
-msgstr "visok"
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "paranoid"
-msgstr "paranoičan"
-
-#: printer/printerdrake.pm:4376
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Instaliram sistem za štampu na sigurnosnom nivou: %s"
-
-#: printer/printerdrake.pm:4377
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessible by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Sada ćete instalirati sistem za štampu %s na sistemu koji je na sigurnosnom "
-"nivou % s.\n"
-"\n"
-"Ovaj sistem za štampu pokreće demon (pozadinski proces) koji čeka zadatke "
-"štampe i rješava ih. Ovom demonu takođe mogu pristupiti drugi računari putem "
-"mreže, tako da je to moguća tačka napada. Stoga se tek rijetki od odabranih "
-"demona pokreću na ovom sigurnosnom nivou.\n"
-"\n"
-"Da li zaista želite podesiti štampanje na ovom računaru?"
-
-#: printer/printerdrake.pm:4413
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Pokrećem sistem za štampu tokom boota"
-
-#: printer/printerdrake.pm:4414
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"Sistem za štampu (%s) se neće pokrenuti automatski prilikom boota računara.\n"
-"\n"
-"Moguće je da je automatsko pokretanje isključeno prilikom promjene na viši "
-"nivo sigurnosni, pošto je sistem za štampu moguća tačka napada.\n"
-"\n"
-"Da li želite da ponovo uključite automatsko pokretanje sistema za štampu?"
-
-#: printer/printerdrake.pm:4437
-#, c-format
-msgid "Checking installed software..."
-msgstr "Provjeravam instalirani software..."
-
-#: printer/printerdrake.pm:4443
-#, c-format
-msgid "Removing %s..."
-msgstr "Uklanjam %s..."
-
-#: printer/printerdrake.pm:4447
-#, c-format
-msgid "Could not remove the %s printing system!"
-msgstr "Ne mogu ukloniti %s sistem štampe!"
-
-#: printer/printerdrake.pm:4471
-#, c-format
-msgid "Installing %s..."
-msgstr "Instaliram %s..."
-
-#: printer/printerdrake.pm:4475
-#, c-format
-msgid "Could not install the %s printing system!"
-msgstr "Ne mogu instalirati %s sistem štampe!"
-
-#: printer/printerdrake.pm:4543
-#, c-format
-msgid ""
-"In this mode there is no local printing system, all printing requests go "
-"directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-"U ovom režimu ne postoji lokalni sistem štampe, a svi zahtjevi za štampanje "
-"će ići direktno na server naveden ispod. Zapamtite da u tom slučaju nije "
-"moguće definisati lokalne redove za štampu te da, ako je navedeni server "
-"isključen, neće biti moguće štampati sa ovog računara."
-
-#: printer/printerdrake.pm:4545
-#, c-format
-msgid ""
-"Enter the host name or IP of your CUPS server and click OK if you want to "
-"use this mode, click \"Quit\" otherwise."
-msgstr ""
-"Unesite ime računara ili IP adresu vašeg CUPS servera i kliknite na \"U redu"
-"\" ako želite koristiti ovaj režim, u suprotnom kliknite na \"Izlaz\"."
-
-#: printer/printerdrake.pm:4559
-#, c-format
-msgid "Name or IP of remote server:"
-msgstr "Ime ili IP adresa udaljenog servera:"
-
-#: printer/printerdrake.pm:4579
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Postavljam podrazumjevani štampač..."
-
-#: printer/printerdrake.pm:4599
-#, c-format
-msgid "Local CUPS printing system or remote CUPS server?"
-msgstr "Lokalni CUPS sistem štampe ili udaljeni CUPS server?"
-
-#: printer/printerdrake.pm:4600
-#, c-format
-msgid "The CUPS printing system can be used in two ways: "
-msgstr "CUPS sistem štampe se može koristiti na dva načina: "
-
-#: printer/printerdrake.pm:4602
-#, c-format
-msgid "1. The CUPS printing system can run locally. "
-msgstr "1. Možete pokrenuti CUPS sistem štampe lokalno. "
-
-#: printer/printerdrake.pm:4603
-#, c-format
-msgid ""
-"Then locally connected printers can be used and remote printers on other "
-"CUPS servers in the same network are automatically discovered. "
-msgstr ""
-"U tom slučaju možete koristiti štampače spojene na ovaj računar, a udaljeni "
-"štampači na drugim CUPS serverima unutar ove mreže će biti automatski "
-"otkriveni. "
-
-#: printer/printerdrake.pm:4604
-#, c-format
-msgid ""
-"Disadvantage of this approach is, that more resources on the local machine "
-"are needed: Additional software packages need to be installed, the CUPS "
-"daemon has to run in the background and needs some memory, and the IPP port "
-"(port 631) is opened. "
-msgstr ""
-"Nedostatak ovog pristupa je što je potrebno više resursa na lokalnom "
-"računaru. Biće potrebno instalirati dodatne softverske pakete, CUPS demon će "
-"biti pokrenut u pozadini i koristiće nešto memorije, a biće otvoren IPP port "
-"(port 631)."
-
-#: printer/printerdrake.pm:4606
-#, c-format
-msgid "2. All printing requests are immediately sent to a remote CUPS server. "
-msgstr "2. Svi zahtjevi za štampu se odmah šalju udaljenom CUPS serveru. "
-
-#: printer/printerdrake.pm:4607
-#, c-format
-msgid ""
-"Here local resource occupation is reduced to a minimum. No CUPS daemon is "
-"started or port opened, no software infrastructure for setting up local "
-"print queues is installed, so less memory and disk space is used. "
-msgstr ""
-"Ovdje je lokalno zauzeće resursa svedeno na minimum. Nije pokrenut CUPS "
-"demon niti je otvoren ijedan port, nije instalirana softverska "
-"infrastruktura potrebna za lokalne redove štampe, tako da je zauzeto manje "
-"memorije i diskovnog prostora."
-
-#: printer/printerdrake.pm:4608
-#, c-format
-msgid ""
-"Disadvantage is that it is not possible to define local printers then and if "
-"the specified server is down it cannot be printed at all from this machine. "
-msgstr ""
-"Nedostatak je što nije moguće definisati lokalne štampače te da, ako je "
-"navedeni server isključen, neće biti moguće štampati sa ovog računara. "
-
-#: printer/printerdrake.pm:4610
-#, c-format
-msgid "How should CUPS be set up on your machine?"
-msgstr "Kako želite podesiti CUPS na ovom računaru?"
-
-#: printer/printerdrake.pm:4614 printer/printerdrake.pm:4629
-#: printer/printerdrake.pm:4633 printer/printerdrake.pm:4639
-#, c-format
-msgid "Remote server, specify Name or IP here:"
-msgstr "Udaljeni server, navedite ime ili IP adresu ovdje:"
-
-#: printer/printerdrake.pm:4628
-#, c-format
-msgid "Local CUPS printing system"
-msgstr "Lokalni CUPS sistem štampe"
-
-#: printer/printerdrake.pm:4667
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Izaberite spooler štampača"
-
-#: printer/printerdrake.pm:4668
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Koji sistem štampanja (spooler) želite koristiti?"
-
-#: printer/printerdrake.pm:4717
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Nisam uspio podesiti štampač \"%s\"!"
-
-#: printer/printerdrake.pm:4732
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Instaliram Foomatic..."
-
-#: printer/printerdrake.pm:4738
-#, c-format
-msgid "Could not install %s packages, %s cannot be started!"
-msgstr "Ne mogu instalirati pakete %s, %s se ne može pokrenuti!"
-
-#: printer/printerdrake.pm:4933
-#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it. "
-msgstr ""
-"Sljedeći štampači su podešeni. Kliknite dva puta na neki od njih za izmjenu "
-"postavki; ako ga želite učiniti podrazumijevanim štampačem; ili da biste "
-"vidjeli informacije o njemu. "
-
-#: printer/printerdrake.pm:4963
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Prikaži sve dostupne CUPS štampače"
-
-#: printer/printerdrake.pm:4964
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Osvježi listu štampača (kako bi bili prikazani svi dostupni CUPS štampači)"
-
-#: printer/printerdrake.pm:4975
-#, c-format
-msgid "CUPS configuration"
-msgstr "Podešavanje CUPSa"
-
-#: printer/printerdrake.pm:4996
-#, c-format
-msgid "Change the printing system"
-msgstr "Promijenite sistem štampe"
-
-#: printer/printerdrake.pm:5005
-#, c-format
-msgid "Normal Mode"
-msgstr "Normalni mod"
-
-#: printer/printerdrake.pm:5006
-#, c-format
-msgid "Expert Mode"
-msgstr "Ekspertni mod"
-
-#: printer/printerdrake.pm:5284 printer/printerdrake.pm:5340
-#: printer/printerdrake.pm:5426 printer/printerdrake.pm:5435
-#, c-format
-msgid "Printer options"
-msgstr "Opcije štampača"
-
-#: printer/printerdrake.pm:5320
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Izmjeni konfiguraciju štampača"
-
-#: printer/printerdrake.pm:5322
-#, c-format
-msgid ""
-"Printer %s%s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Štampač %s%s\n"
-"Šta želite da izmjenite na ovom štampaču?"
-
-#: printer/printerdrake.pm:5327
-#, c-format
-msgid "This printer is disabled"
-msgstr "Ovaj štampač je onemogućen"
-
-#: printer/printerdrake.pm:5329
-#, c-format
-msgid "Do it!"
-msgstr "Uradi!"
-
-#: printer/printerdrake.pm:5335 printer/printerdrake.pm:5400
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Naziv štampača, opis, lokacija"
-
-#: printer/printerdrake.pm:5337 printer/printerdrake.pm:5419
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Proizvođač štampača, model, drajver"
-
-#: printer/printerdrake.pm:5338 printer/printerdrake.pm:5420
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Proizvođač štampača, model"
-
-#: printer/printerdrake.pm:5342 printer/printerdrake.pm:5430
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Podesi štampač kao podrazumjevani"
-
-#: printer/printerdrake.pm:5347 printer/printerdrake.pm:5436
-#: printer/printerdrake.pm:5438 printer/printerdrake.pm:5447
-#, c-format
-msgid "Enable Printer"
-msgstr "Omogući štampač"
-
-#: printer/printerdrake.pm:5350 printer/printerdrake.pm:5441
-#: printer/printerdrake.pm:5442 printer/printerdrake.pm:5444
-#, c-format
-msgid "Disable Printer"
-msgstr "Onemogući štampač"
-
-#: printer/printerdrake.pm:5354 printer/printerdrake.pm:5448
-#, fuzzy, c-format
-msgid "Printer communication error handling"
-msgstr "Tip konekcije štampača"
-
-#: printer/printerdrake.pm:5355 printer/printerdrake.pm:5452
-#, c-format
-msgid "Print test pages"
-msgstr "Štampaj testnu stranicu"
-
-#: printer/printerdrake.pm:5356 printer/printerdrake.pm:5454
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Saznaj kako koristiti ovaj štampač"
-
-#: printer/printerdrake.pm:5357 printer/printerdrake.pm:5456
-#, c-format
-msgid "Remove printer"
-msgstr "Ukloni štampač"
-
-#: printer/printerdrake.pm:5408
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Uklanjam stari štampač \"%s\" ..."
-
-#: printer/printerdrake.pm:5439
-#, c-format
-msgid "Printer \"%s\" is now enabled."
-msgstr "Štampač \"%s\" je sada omogućen."
-
-#: printer/printerdrake.pm:5445
-#, c-format
-msgid "Printer \"%s\" is now disabled."
-msgstr "Štampač \"%s\" je sada onemogućen."
-
-#: printer/printerdrake.pm:5487
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Da li zaista želite da uklonite štampač \"%s\"?"
-
-#: printer/printerdrake.pm:5491
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Uklanjam štampač \"%s\" ..."
-
-#: printer/printerdrake.pm:5515
-#, c-format
-msgid "Default printer"
-msgstr "Podrazumjevani štampač"
-
-#: printer/printerdrake.pm:5516
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Štampač \"%s\" je sada podešen kao podrazumjevani štampač."
-
#: raid.pm:42
#, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "Ne mogu dodati particiju na _formatiran_ RAID %s"
-#: raid.pm:148
+#: raid.pm:150
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nema dovoljno particija za RAID nivo %d\n"
-#: scanner.pm:96
+#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr "Ne mogu napraviti direktorij /usr/share/sane/firmware!"
-#: scanner.pm:107
+#: scanner.pm:106
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr "Ne mogu napraviti link /usr/share/sane/%s!"
-#: scanner.pm:114
+#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr "Ne mogu kopirati firmware datoteku %s u /usr/share/sane/firmware!"
-#: scanner.pm:121
+#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr "Ne mogu postaviti privilegije firmware datoteke %s!"
-#: scanner.pm:200 standalone/scannerdrake:66 standalone/scannerdrake:70
-#: standalone/scannerdrake:78 standalone/scannerdrake:321
-#: standalone/scannerdrake:370 standalone/scannerdrake:463
-#: standalone/scannerdrake:507 standalone/scannerdrake:511
-#: standalone/scannerdrake:533 standalone/scannerdrake:598
+#: scanner.pm:199
#, c-format
msgid "Scannerdrake"
msgstr "Scannerdrake"
-#: scanner.pm:201 standalone/scannerdrake:964
+#: scanner.pm:200
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr "Ne mogu instalirati pakete koji su potrebni za dijeljenje skenera."
-#: scanner.pm:202
+#: scanner.pm:201
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr "Vaši skeneri neće biti dostupni neprivilegovanim korisnicima."
@@ -15304,13 +5224,13 @@ msgstr "Prihvati/odbij neispravne IPv4 poruke o grešci."
#: security/help.pm:13
#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr " Dozvoli/zabrani broadcast-ovani ICMP eho."
+msgid "Accept/Refuse broadcasted icmp echo."
+msgstr "Dozvoli/zabrani broadcast-ovani ICMP eho."
#: security/help.pm:15
#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr " Prihvati/odbij ICMP eho."
+msgid "Accept/Refuse icmp echo."
+msgstr "Prihvati/odbij ICMP eho."
#: security/help.pm:17
#, c-format
@@ -15472,7 +5392,7 @@ msgstr ""
"Uključi/isključi zaštitu od lažiranja rezolviranja imena. Ako\n"
"je aktivna opcija \"%s\", takođe prijavljuje u syslog."
-#: security/help.pm:80 standalone/draksec:215
+#: security/help.pm:80
#, c-format
msgid "Security Alerts:"
msgstr "Sigurnosna upozorenja:"
@@ -15500,9 +5420,11 @@ msgstr "Uključi/isključi msec provjeru svakog sata."
#: security/help.pm:90
#, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"Enable su only from members of the wheel group. If set to no, allows su from "
+"any user."
msgstr ""
-" Omogući su samo članovima wheel grupe ili dozvoli su svakom korisniku."
+"Omogući su samo članovima wheel grupe. Ako je opcija isključena, su je "
+"dozvoljen svim korisnicima."
#: security/help.pm:92
#, c-format
@@ -15516,13 +5438,13 @@ msgstr "Aktiviraj/isključi provjeru promiskuitetnog moda Ethernet kartica."
#: security/help.pm:96
#, c-format
-msgid " Activate/Disable daily security check."
-msgstr " Aktiviraj/isključi dnevnu sigurnosnu provjeru."
+msgid "Activate/Disable daily security check."
+msgstr "Aktiviraj/isključi dnevnu sigurnosnu provjeru."
#: security/help.pm:98
#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr " Uključi/isključi sulogin(8) na jednokorisničkom nivou."
+msgid "Enable/Disable sulogin(8) in single user level."
+msgstr "Uključi/isključi sulogin(8) na jednokorisničkom nivou."
#: security/help.pm:100
#, c-format
@@ -15793,8 +5715,8 @@ msgstr "Uključi msec provjeru svakog sata"
#: security/l10n.pm:32
#, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr "Omogući su samo za članove wheel grupe ili za bilo kojeg korisnika"
+msgid "Enable su only from the wheel group members"
+msgstr "Omogući su samo za članove wheel grupe"
#: security/l10n.pm:33
#, c-format
@@ -15918,14 +5840,14 @@ msgstr "Izvrši chkrootkit provjere"
#: security/l10n.pm:57
#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "Ne šalji mailove kada nije potrebno"
+msgid "Do not send empty mail reports"
+msgstr "Ne šalji prazne e-mail izvještaje"
#: security/l10n.pm:58
#, c-format
msgid "If set, send the mail report to this email address else send it to root"
msgstr ""
-"Ako je uključeno, šalje mail izvještaj na ovu email adresu, inače ga šalje "
+"Ako je uključeno, šalje e-mail izvještaj na ovu email adresu, inače ga šalje "
"root-u"
#: security/l10n.pm:59
@@ -15958,6 +5880,11 @@ msgstr "Dobrodošli u Crackers"
msgid "Poor"
msgstr "Loš"
+#: security/level.pm:12
+#, c-format
+msgid "Standard"
+msgstr "Standard"
+
#: security/level.pm:13
#, c-format
msgid "High"
@@ -16039,6 +5966,11 @@ msgstr ""
#: security/level.pm:55
#, c-format
+msgid "Security"
+msgstr "Sigurnost"
+
+#: security/level.pm:55
+#, c-format
msgid "DrakSec Basic Options"
msgstr "DrakSec osnovne opcije"
@@ -16405,52 +6337,67 @@ msgstr "Pokreće drajvere za vaše USB uređaje."
msgid "Starts the X Font Server (this is mandatory for Xorg to run)."
msgstr "Pokreće X Font Server (ovo je nužno da bi Xorg radio)."
-#: services.pm:115 services.pm:157
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Izaberite koji servisi se trebaju pokretati automatski prilikom boota"
-
-#: services.pm:127 standalone/draksambashare:111
+#: services.pm:114
#, c-format
msgid "Printing"
msgstr "Štampa"
-#: services.pm:128
+#: services.pm:115
#, c-format
msgid "Internet"
msgstr "Internet"
-#: services.pm:131
+#: services.pm:118
#, c-format
msgid "File sharing"
msgstr "Dijeljenje datoteka"
-#: services.pm:138
+#: services.pm:120
+#, c-format
+msgid "System"
+msgstr "Sistem"
+
+#: services.pm:125
#, c-format
msgid "Remote Administration"
msgstr "Udaljena administracija"
-#: services.pm:146
+#: services.pm:133
#, c-format
msgid "Database Server"
msgstr "Server baze podataka"
-#: services.pm:209
+#: services.pm:144 services.pm:180
+#, c-format
+msgid "Services"
+msgstr "Servisi"
+
+#: services.pm:144
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Izaberite koji servisi se trebaju pokretati automatski prilikom boota"
+
+#: services.pm:162
+#, c-format
+msgid "Services: %d activated for %d registered"
+msgstr "Servisi: %d aktiviran za %d registrovan"
+
+#: services.pm:196
#, c-format
msgid "running"
msgstr "aktivan"
-#: services.pm:209
+#: services.pm:196
#, c-format
msgid "stopped"
msgstr "zaustavljen"
-#: services.pm:213
+#: services.pm:201
#, c-format
msgid "Services and daemons"
msgstr "Servisi i demoni"
-#: services.pm:219
+#: services.pm:207
#, c-format
msgid ""
"No additional information\n"
@@ -16459,481 +6406,32 @@ msgstr ""
"Nema dodatnih informacija\n"
"o ovom servisu, žalim."
-#: services.pm:224 ugtk2.pm:1009
+#: services.pm:212 ugtk2.pm:898
#, c-format
msgid "Info"
msgstr "Info"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "Start when requested"
msgstr "Pokreni po potrebi"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "On boot"
msgstr "Prilikom boota"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Start"
msgstr "Start"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Stop"
msgstr "Stop"
-#: share/advertising/01.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Packs"
-msgstr ""
-
-#: share/advertising/02.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More features"
-msgstr ""
-
-#: share/advertising/03.pl:3
-#, c-format
-msgid "Interactive firewall"
-msgstr ""
-
-#: share/advertising/04.pl:3
-#, c-format
-msgid "Desktop search"
-msgstr ""
-
-#: share/advertising/05.pl:3
-#, c-format
-msgid "New package manager"
-msgstr ""
-
-#: share/advertising/06.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More performances"
-msgstr ""
-
-#: share/advertising/07.pl:3
-#, c-format
-msgid "Latest kernel and GCC"
-msgstr ""
-
-#: share/advertising/08.pl:3
-#, c-format
-msgid "High Availibility"
-msgstr ""
-
-#: share/advertising/09.pl:3
-#, c-format
-msgid "Delta RPM"
-msgstr ""
-
-#: share/advertising/10.pl:3
-#, c-format
-msgid "Low resources setup"
-msgstr ""
-
-#: share/advertising/11.pl:3
-#, c-format
-msgid "Boot time reduction"
-msgstr ""
-
-#: share/advertising/12.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Easier to use"
-msgstr ""
-
-#: share/advertising/13.pl:3
-#, c-format
-msgid "Latest graphical interfaces: KDE and GNOME"
-msgstr ""
-
-#: share/advertising/14.pl:3
-#, c-format
-msgid "auto-installation servers"
-msgstr ""
-
-#: share/advertising/15.pl:3
-#, c-format
-msgid "Easy and quick installation"
-msgstr ""
-
-#: share/advertising/16.pl:3
-#, c-format
-msgid "Easy configuration thanks to 60 wizards"
-msgstr ""
-
-#: share/advertising/17.pl:3
-#, c-format
-msgid "Look and feel improved"
-msgstr ""
-
-#: share/advertising/18.pl:3
-#, c-format
-msgid "New webmin theme"
-msgstr ""
-
-#: share/advertising/19.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More support"
-msgstr ""
-
-#: share/advertising/20.pl:3
-#, c-format
-msgid "Better Hardware support"
-msgstr ""
-
-#: share/advertising/21.pl:3
-#, c-format
-msgid "Xen support"
-msgstr ""
-
-#: share/advertising/22.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More information"
-msgstr ""
-
-#: share/advertising/23.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Where to buy?"
-msgstr ""
-
-#: share/advertising/24.pl:3
-#, c-format
-msgid "Where to find technical assistance?"
-msgstr ""
-
-#: share/advertising/25.pl:3
-#, c-format
-msgid "How to join the Mandriva Linux community?"
-msgstr ""
-
-#: share/advertising/26.pl:3
-#, c-format
-msgid "How to keep your system up-to-date?"
-msgstr ""
-
-#: share/advertising/intel.pl:3
-#, c-format
-msgid "Intel Software"
-msgstr ""
-
-#: share/advertising/skype.pl:3
-#, c-format
-msgid "Skype lets you make calls through the Internet for free."
-msgstr ""
-
-#: share/compssUsers.pl:26
-#, c-format
-msgid "Office Workstation"
-msgstr "Uredska radna stanica"
-
-#: share/compssUsers.pl:28
-#, c-format
-msgid ""
-"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
-"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
-msgstr ""
-"Uredski programi: obrada teksta (OpenOffice.org Write, KWord), tablični "
-"proračun (OpenOffice.org Calc, KSpread), PDF preglednici itd."
-
-#: share/compssUsers.pl:29
-#, c-format
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Uredski programi: obrada teksta (kword, abiword), tablični alati (kspread, "
-"gnumeric), pdf preglednici itd."
-
-#: share/compssUsers.pl:34
-#, c-format
-msgid "Game station"
-msgstr "Stanica za igru"
-
-#: share/compssUsers.pl:35
-#, c-format
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Zabavni programi: arkadne igre, stolne igre, strategije itd."
-
-#: share/compssUsers.pl:38
-#, c-format
-msgid "Multimedia station"
-msgstr "Multimedijalna stanica"
-
-#: share/compssUsers.pl:39
-#, c-format
-msgid "Sound and video playing/editing programs"
-msgstr "Programi za pregled i editovanje zvuka i videa"
-
-#: share/compssUsers.pl:44
-#, c-format
-msgid "Internet station"
-msgstr "Internet stanica"
-
-#: share/compssUsers.pl:45
-#, c-format
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Skup alata za čitanje i slanje pošte i news-a (mutt, tin...) i pregledanje "
-"Weba"
-
-#: share/compssUsers.pl:50
-#, c-format
-msgid "Network Computer (client)"
-msgstr "Mrežni računar (klijent)"
-
-#: share/compssUsers.pl:51
-#, c-format
-msgid "Clients for different protocols including ssh"
-msgstr "Klijenti za razne protokole uključujući ssh"
-
-#: share/compssUsers.pl:55
-#, c-format
-msgid "Configuration"
-msgstr "Podešavanje"
-
-#: share/compssUsers.pl:56
-#, c-format
-msgid "Tools to ease the configuration of your computer"
-msgstr "Alati za lakše podešavanje računara"
-
-#: share/compssUsers.pl:60
-#, c-format
-msgid "Console Tools"
-msgstr "Alati za konzolu"
-
-#: share/compssUsers.pl:61
-#, c-format
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editori, shellovi, alati za datoteke, terminali"
-
-#: share/compssUsers.pl:66 share/compssUsers.pl:170
-#, c-format
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C i C++ biblioteke, programi i include datoteke"
-
-#: share/compssUsers.pl:70 share/compssUsers.pl:174
-#, c-format
-msgid "Documentation"
-msgstr "Dokumentacija"
-
-#: share/compssUsers.pl:71 share/compssUsers.pl:175
-#, c-format
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Knjige i howto-i na temu Linuxa i slobodnog softvera"
-
-#: share/compssUsers.pl:75 share/compssUsers.pl:178
-#, c-format
-msgid "LSB"
-msgstr "LSB"
-
-#: share/compssUsers.pl:76 share/compssUsers.pl:179
-#, c-format
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Linux Standard Base. Podrška za programe trećih lica"
-
-#: share/compssUsers.pl:86
-#, c-format
-msgid "Apache"
-msgstr "Apache"
-
-#: share/compssUsers.pl:89
-#, c-format
-msgid "Groupware"
-msgstr "Groupware"
-
-#: share/compssUsers.pl:90
-#, c-format
-msgid "Kolab Server"
-msgstr "Kolab server"
-
-#: share/compssUsers.pl:93 share/compssUsers.pl:134
-#, c-format
-msgid "Firewall/Router"
-msgstr "Firewall/Router"
-
-#: share/compssUsers.pl:94 share/compssUsers.pl:135
-#, c-format
-msgid "Internet gateway"
-msgstr "Internet gateway"
-
-#: share/compssUsers.pl:97
-#, c-format
-msgid "Mail/News"
-msgstr "Mail/News"
-
-#: share/compssUsers.pl:98
-#, c-format
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix mail server, Inn news server"
-
-#: share/compssUsers.pl:101
-#, c-format
-msgid "Directory Server"
-msgstr "Imenički server"
-
-#: share/compssUsers.pl:105
-#, c-format
-msgid "FTP Server"
-msgstr "FTP server"
-
-#: share/compssUsers.pl:106
-#, c-format
-msgid "ProFTPd"
-msgstr "ProFTPd"
-
-#: share/compssUsers.pl:109
-#, c-format
-msgid "DNS/NIS"
-msgstr "DNS/NIS"
-
-#: share/compssUsers.pl:110
-#, c-format
-msgid "Domain Name and Network Information Server"
-msgstr "Serveri domenskih imena i mrežnih informacija"
-
-#: share/compssUsers.pl:113
-#, c-format
-msgid "File and Printer Sharing Server"
-msgstr "Server za dijeljenje datoteka i štampača"
-
-#: share/compssUsers.pl:114
-#, c-format
-msgid "NFS Server, Samba server"
-msgstr "NFS server, Samba server"
-
-#: share/compssUsers.pl:117 share/compssUsers.pl:130
-#, c-format
-msgid "Database"
-msgstr "Baze podataka"
-
-#: share/compssUsers.pl:118
-#, c-format
-msgid "PostgreSQL and MySQL Database Server"
-msgstr "Server PostgreSQL ili MySQL baze podataka"
-
-#: share/compssUsers.pl:122
-#, c-format
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: share/compssUsers.pl:123
-#, c-format
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: share/compssUsers.pl:126
-#, c-format
-msgid "Mail"
-msgstr "Mail"
-
-#: share/compssUsers.pl:127
-#, c-format
-msgid "Postfix mail server"
-msgstr "Postfix mail server"
-
-#: share/compssUsers.pl:131
-#, c-format
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL ili MySQL baza podataka"
-
-#: share/compssUsers.pl:138
-#, c-format
-msgid "Network Computer server"
-msgstr "Network Computer server"
-
-#: share/compssUsers.pl:139
-#, c-format
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS server, SMB server, Proxy server, ssh server"
-
-#: share/compssUsers.pl:147
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE radna stanica"
-
-#: share/compssUsers.pl:148
-#, c-format
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"K Desktop Environment, osnovno grafičko okruženje sa izborom pratećih alata"
-
-#: share/compssUsers.pl:152
-#, c-format
-msgid "GNOME Workstation"
-msgstr "GNOME radna stanica"
-
-#: share/compssUsers.pl:153
-#, c-format
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Grafička okolina sa skupom korisnički orjentisanih programa i alata za radnu "
-"površinu"
-
-#: share/compssUsers.pl:156
-#, fuzzy, c-format
-msgid "IceWm Desktop"
-msgstr "Plucker Desktop"
-
-#: share/compssUsers.pl:160
-#, c-format
-msgid "Other Graphical Desktops"
-msgstr "Ostale grafičke okoline"
-
-#: share/compssUsers.pl:161
-#, fuzzy, c-format
-msgid "Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, itd."
-
-#: share/compssUsers.pl:184
-#, c-format
-msgid "Utilities"
-msgstr "Alati"
-
-#: share/compssUsers.pl:186 share/compssUsers.pl:187 standalone/logdrake:384
-#, c-format
-msgid "SSH Server"
-msgstr "SSH server"
-
-#: share/compssUsers.pl:191
-#, c-format
-msgid "Webmin"
-msgstr "Webmin"
-
-#: share/compssUsers.pl:192
-#, c-format
-msgid "Webmin Remote Configuration Server"
-msgstr "Webmin server za podešavanje sistema"
-
-#: share/compssUsers.pl:196
-#, c-format
-msgid "Network Utilities/Monitoring"
-msgstr "Mrežni alati i nadzor"
-
-#: share/compssUsers.pl:197
-#, c-format
-msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
-msgstr "Alati za nadzor, praćenje potrošnje, tcpdump, nmap, ..."
-
-#: share/compssUsers.pl:201
-#, c-format
-msgid "Mandriva Wizards"
-msgstr "Mandriva čarobnjaci"
-
-#: share/compssUsers.pl:202
-#, c-format
-msgid "Wizards to configure server"
-msgstr "Čarobnjaci za podešavanje serverâ"
-
-#: standalone.pm:23
+#: standalone.pm:24
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
@@ -16948,7 +6446,8 @@ msgid ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
msgstr ""
"This program is free software; you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published by\n"
@@ -16962,9 +6461,10 @@ msgstr ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
-#: standalone.pm:42
+#: standalone.pm:43
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
@@ -16991,7 +6491,7 @@ msgstr ""
"--help : show this message.\n"
"--version : show version number.\n"
-#: standalone.pm:54
+#: standalone.pm:55
#, c-format
msgid ""
"[--boot] [--splash]\n"
@@ -17006,7 +6506,7 @@ msgstr ""
" --splash - omogućuje podešavanje boot teme\n"
"podrazumijevano: podešavanje autologin mogućnosti"
-#: standalone.pm:59
+#: standalone.pm:60
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
@@ -17023,7 +6523,7 @@ msgstr ""
" --report - program treba biti neki od Mandriva Linux alata\n"
" --incident - program treba biti neki od Mandriva Linux alata"
-#: standalone.pm:65
+#: standalone.pm:66
#, c-format
msgid ""
"[--add]\n"
@@ -17040,7 +6540,7 @@ msgstr ""
" --internet - podesi internet\n"
" --wizard - isto što i --add"
-#: standalone.pm:71
+#: standalone.pm:72
#, c-format
msgid ""
"\n"
@@ -17071,7 +6571,7 @@ msgstr ""
" : ime_programa npr. so za staroffice \n"
" : i gs za ghostscript za samo taj program."
-#: standalone.pm:86
+#: standalone.pm:87
#, c-format
msgid ""
"[OPTIONS]...\n"
@@ -17103,17 +6603,17 @@ msgstr ""
"--delclient : obriši klijentski računar sa MTSa (potrebna je MAC "
"adresa, IP, nbi image ime)"
-#: standalone.pm:98
+#: standalone.pm:99
#, c-format
msgid "[keyboard]"
msgstr "[tastatura]"
-#: standalone.pm:99
+#: standalone.pm:100
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr "[--file=mojfajl] [--word=mojarijec] [--explain=regexp] [--alert]"
-#: standalone.pm:100
+#: standalone.pm:101
#, c-format
msgid ""
"[OPTIONS]\n"
@@ -17136,12 +6636,7 @@ msgstr ""
"--status : vraća 1 ako je spojen, u suprotnom 0.\n"
"--quiet : bez interaktivnosti. Koristi se sa (dis)connect."
-#: standalone.pm:109
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: standalone.pm:110
+#: standalone.pm:111
#, c-format
msgid ""
"[OPTION]...\n"
@@ -17159,7 +6654,7 @@ msgstr ""
" --merge-all-rpmnew predloži merge svih pronađenih .rpmnew/.rpmsave "
"datoteka"
-#: standalone.pm:115
+#: standalone.pm:116
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
@@ -17168,7 +6663,7 @@ msgstr ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
-#: standalone.pm:116
+#: standalone.pm:117
#, c-format
msgid ""
" [everything]\n"
@@ -17179,7 +6674,7 @@ msgstr ""
" XFdrake [--noauto] monitor\n"
" XFdrake rezolucija"
-#: standalone.pm:149
+#: standalone.pm:150
#, c-format
msgid ""
"\n"
@@ -17190,9670 +6685,102 @@ msgstr ""
"Upotreba: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
-#: standalone/XFdrake:59
-#, c-format
-msgid "You need to reboot for changes to take effect"
-msgstr "Trebate restartovati računar kako bi izmjene stupile na snagu"
-
-#: standalone/XFdrake:90
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Molim izvršite logout i zatim koristitite Ctrl-Alt-BackSpace"
-
-#: standalone/XFdrake:94
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr ""
-"Trebate se odjaviti i ponovo prijaviti na sistem kako bi izmjene stupile na "
-"snagu"
-
-#: standalone/drakTermServ:112 standalone/drakTermServ:118
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s traži korisničko ime...\n"
-
-#: standalone/drakTermServ:129
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s zahtijeva ime računara, MAC adresu, IP adresu, nbi-image, 0/1 za "
-"THIN_CLIENT, 0/1 za Local Config...\n"
-
-#: standalone/drakTermServ:135
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s zahtijeva ime računara...\n"
-
-#: standalone/drakTermServ:144
-#, c-format
-msgid "Host name for client"
-msgstr ""
-
-#: standalone/drakTermServ:145
-#, c-format
-msgid "MAC address should be in the format 00:11:22:33:44:55"
-msgstr ""
-
-#: standalone/drakTermServ:146
-#, c-format
-msgid "IP address to be assigned to client"
-msgstr ""
-
-#: standalone/drakTermServ:147
-#, c-format
-msgid "Kernel/network adapter image to use to boot client"
-msgstr ""
-
-#: standalone/drakTermServ:148
-#, c-format
-msgid "Create masking files to allow configuration tools to run on client"
-msgstr ""
-
-#: standalone/drakTermServ:149
-#, c-format
-msgid "Applications will run on server machine"
-msgstr ""
-
-#: standalone/drakTermServ:234 standalone/drakTermServ:237
-#, c-format
-msgid "Terminal Server Configuration"
-msgstr "Podešavanje Terminal servera"
-
-#: standalone/drakTermServ:243
-#, fuzzy, c-format
-msgid "dhcpd Config"
-msgstr "dhcpd podešavanje..."
-
-#: standalone/drakTermServ:247
-#, c-format
-msgid "Enable Server"
-msgstr "Omogući server"
-
-#: standalone/drakTermServ:253
-#, c-format
-msgid "Disable Server"
-msgstr "Onemogući server"
-
-#: standalone/drakTermServ:259
-#, c-format
-msgid "Start Server"
-msgstr "Pokreni server"
-
-#: standalone/drakTermServ:265
-#, c-format
-msgid "Stop Server"
-msgstr "Zaustavi server"
-
-#: standalone/drakTermServ:274
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot Floppy/ISO"
-
-#: standalone/drakTermServ:278
-#, c-format
-msgid "Net Boot Images"
-msgstr "Net Boot Images"
-
-#: standalone/drakTermServ:285
-#, c-format
-msgid "Add/Del Users"
-msgstr "Dodaj/obriši korisnike"
-
-#: standalone/drakTermServ:289
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Dodaj/obriši klijente"
-
-#: standalone/drakTermServ:297
-#, c-format
-msgid "Images"
-msgstr "Image"
-
-#: standalone/drakTermServ:298
-#, c-format
-msgid "Clients/Users"
-msgstr "Klijenti/Korisnici"
-
-#: standalone/drakTermServ:316 standalone/drakbug:47
-#, c-format
-msgid "First Time Wizard"
-msgstr "Čarobnjak za prvo pokretanje"
-
-#: standalone/drakTermServ:354 standalone/drakTermServ:355
-#, c-format
-msgid "%s defined as dm, adding gdm user to /etc/passwd$$CLIENT$$"
-msgstr "%s definisan kao dm, dodajem gdm korisnika na /etc/passwd$$CLIENT$$"
-
-#: standalone/drakTermServ:361
-#, c-format
-msgid ""
-"\n"
-" This wizard routine will:\n"
-" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
-"\t2) Setup DHCP.\n"
-"\t\n"
-"After doing these steps, the wizard will:\n"
-"\t\n"
-" a) Make all "
-"nbis. \n"
-" b) Activate the "
-"server. \n"
-" c) Start the "
-"server. \n"
-" d) Synchronize the shadow files so that all users, including root, \n"
-" are added to the shadow$$CLIENT$$ "
-"file. \n"
-" e) Ask you to make a boot floppy.\n"
-" f) If it's thin clients, ask if you want to restart KDM.\n"
-msgstr ""
-"\n"
-" This wizard routine will:\n"
-" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
-"\t2) Setup DHCP.\n"
-"\t\n"
-"After doing these steps, the wizard will:\n"
-"\t\n"
-" a) Make all "
-"nbis. \n"
-" b) Activate the "
-"server. \n"
-" c) Start the "
-"server. \n"
-" d) Synchronize the shadow files so that all users, including root, \n"
-" are added to the shadow$$CLIENT$$ "
-"file. \n"
-" e) Ask you to make a boot floppy.\n"
-" f) If it's thin clients, ask if you want to restart KDM.\n"
-
-#: standalone/drakTermServ:407
-#, c-format
-msgid "Cancel Wizard"
-msgstr "Prekini Čarobnjaka"
-
-#: standalone/drakTermServ:422
-#, c-format
-msgid "Please save dhcpd config!"
-msgstr "Molim snimite dhcpd config!"
-
-#: standalone/drakTermServ:450
-#, c-format
-msgid "Use thin clients."
-msgstr "Koristi thin klijente."
-
-#: standalone/drakTermServ:452
-#, c-format
-msgid "Sync client X keyboard settings with server."
-msgstr "Sinhronizuj postavke tastature X klijenta sa serverom."
-
-#: standalone/drakTermServ:454
-#, fuzzy, c-format
-msgid ""
-"Please select default client type (Fat is the default type if 'Use thin' is "
-"unchecked).\n"
-" 'Thin' clients run everything off the server's CPU/RAM, using the client "
-"display.\n"
-" 'Fat' clients use their own CPU/RAM but the server's filesystem."
-msgstr ""
-"Molim izaberite vrstu klijenta.\n"
-" 'Tanki' klijenti pokreću sve na serverskom CPU/RAM, koristeći samo ekran "
-"klijenta.\n"
-" 'Debeli' klijenti koriste svoj CPU/RAM ali serverski datotečni sistem."
-
-#: standalone/drakTermServ:474
-#, c-format
-msgid "Creating net boot images for all kernels"
-msgstr "Pravim mrežne boot slike za sve kernele"
-
-#: standalone/drakTermServ:475 standalone/drakTermServ:807
-#: standalone/drakTermServ:823
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Ovo će potrajati par minuta."
-
-#: standalone/drakTermServ:481 standalone/drakTermServ:521
-#, c-format
-msgid "Done!"
-msgstr "Gotovo!"
-
-#: standalone/drakTermServ:492 standalone/drakTermServ:894
-#, c-format
-msgid "%s failed"
-msgstr ""
-
-#: standalone/drakTermServ:501
-#, c-format
-msgid ""
-"Not enough space to create\n"
-"NBIs in %s.\n"
-"Needed: %d MB, Free: %d MB"
-msgstr ""
-
-#: standalone/drakTermServ:507
-#, c-format
-msgid "Syncing server user list with client list, including root."
-msgstr ""
-"Sinhronizujem listu korisnika servera sa klijentima, uključujući root-a."
-
-#: standalone/drakTermServ:527
-#, c-format
-msgid ""
-"In order to enable changes made for thin clients, the display manager must "
-"be restarted. Restart now?"
-msgstr ""
-"Da bi izmjene napravljene na thin klijentima postale aktivne, potrebno je "
-"restartovati display manager. Da restartujem sada?"
-
-#: standalone/drakTermServ:564
-#, c-format
-msgid "Terminal Server Overview"
-msgstr "Pregled Terminal Servera"
-
-#: standalone/drakTermServ:565
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and %s is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and %s is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-
-#: standalone/drakTermServ:571
-#, c-format
-msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. %s helps create/"
-"remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
-msgstr ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. %s helps create/"
-"remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
-
-#: standalone/drakTermServ:589
-#, fuzzy, c-format
-msgid ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be "
-"'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, \n"
-" %s is written for thin clients. \n"
-" System config files xdm-config, kdmrc, and gdm.conf are modified if "
-"thin clients are \n"
-" used, to enable XDMCP. Since there are security issues in using "
-"XDMCP, hosts.deny and \n"
-" hosts.allow are modified to limit access to the local subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-msgstr ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be "
-"'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, %s is\n"
-" written for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-" modified if thin clients are used, to enable XDMCP. Since there are "
-"security issues in \n"
-" using XDMCP, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-" subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-
-#: standalone/drakTermServ:609
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-msgstr ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-
-#: standalone/drakTermServ:621
-#, fuzzy, c-format
-msgid ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. \n"
-" \t%s helps in this respect by adding or removing system users from "
-"this \n"
-" \tfile."
-msgstr ""
-" - Čuvaj %s:\n"
-" \t\tDa bi se korisnici mogli prijaviti na sistem sa klijenta bez "
-"diska, njihova stavka u\n"
-" \t\t/etc/shadow se mora kopirati u %s. %s pomaže\n"
-" \t\tu ovome tako što dodaje i briše sistemske korisnike iz ove "
-"datoteke."
-
-#: standalone/drakTermServ:626
-#, c-format
-msgid ""
-" - Per client %s:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t%s will help create these files."
-msgstr ""
-" - Per client %s:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t%s will help create these files."
-
-#: standalone/drakTermServ:631
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-msgstr ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-
-#: standalone/drakTermServ:640
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s will configure this file to work in conjunction with the images "
-"created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical TFTP configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
-msgstr ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s will configure this file to work in conjunction with the images "
-"created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical TFTP configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
-
-#: standalone/drakTermServ:661
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-msgstr ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-
-#: standalone/drakTermServ:694
-#, c-format
-msgid "Boot Floppy"
-msgstr "Boot disketa"
-
-#: standalone/drakTermServ:696
-#, c-format
-msgid "Boot ISO"
-msgstr "Boot ISO"
-
-#: standalone/drakTermServ:698
-#, c-format
-msgid "PXE Image"
-msgstr "PXE Image"
-
-#: standalone/drakTermServ:759
-#, c-format
-msgid "Default kernel version"
-msgstr "Podrazumijevana verzija kernela"
-
-#: standalone/drakTermServ:764
-#, c-format
-msgid "Create PXE images"
-msgstr ""
-
-#: standalone/drakTermServ:765
-#, c-format
-msgid "Use Unionfs (TS2)"
-msgstr ""
-
-#: standalone/drakTermServ:795
-#, c-format
-msgid "Install i586 kernel for older clients"
-msgstr ""
-
-#: standalone/drakTermServ:805
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Izgradi cijeli kernel -->"
-
-#: standalone/drakTermServ:812
-#, c-format
-msgid "No kernel selected!"
-msgstr "Nije izabran kernel!"
-
-#: standalone/drakTermServ:815
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Izgradi jedan NIC -->"
-
-#: standalone/drakTermServ:819 standalone/drakTermServ:1643
-#, c-format
-msgid "No NIC selected!"
-msgstr "Nije izabran nijedan NIC!"
-
-#: standalone/drakTermServ:822
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Izgradi sve kernele -->"
-
-#: standalone/drakTermServ:835
-#, c-format
-msgid ""
-"Custom\n"
-"kernel args"
-msgstr ""
-
-#: standalone/drakTermServ:840
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Obriši"
-
-#: standalone/drakTermServ:845
-#, c-format
-msgid "No image selected!"
-msgstr "Nije izabran image!"
-
-#: standalone/drakTermServ:848
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Obriši sve NBIje"
-
-#: standalone/drakTermServ:925
-#, fuzzy, c-format
-msgid "Building images for kernel:"
-msgstr "Pravim mrežne boot slike za sve kernele"
-
-#: standalone/drakTermServ:1050
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! Određuje šifru u sistemskoj bazi podataka koja se razlikuje\n"
-"od one u bazi podataka Terminal Servera.\n"
-"Obrišite i ponovo dodajte korisnika u Terminal Server da biste omogućili "
-"pristup."
-
-#: standalone/drakTermServ:1055
-#, c-format
-msgid "Add User -->"
-msgstr "Dodaj korisnika -->"
-
-#: standalone/drakTermServ:1061
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- Obriši korisnika"
-
-#: standalone/drakTermServ:1097
-#, c-format
-msgid "type: %s"
-msgstr "tip: %s"
-
-#: standalone/drakTermServ:1101
-#, c-format
-msgid "local config: %s"
-msgstr "lokalni konfig: %s"
-
-#: standalone/drakTermServ:1136
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Omogući lokalno podešavanje\n"
-"hardvera."
-
-#: standalone/drakTermServ:1146
-#, c-format
-msgid "No net boot images created!"
-msgstr "Nije napravljena boot image!"
-
-#: standalone/drakTermServ:1165
-#, c-format
-msgid "Thin Client"
-msgstr "Thin klijenti"
-
-#: standalone/drakTermServ:1169
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "Omogući thin klijente"
-
-#: standalone/drakTermServ:1170
-#, c-format
-msgid ""
-"Sync client X keyboard\n"
-" settings with server."
-msgstr ""
-"Sinhronizuj postavke tastature\n"
-" X klijenta sa serverom."
-
-#: standalone/drakTermServ:1171
-#, c-format
-msgid "Add Client -->"
-msgstr "Dodaj klijenta -->"
-
-#: standalone/drakTermServ:1181
-#, c-format
-msgid "Unknown MAC address format"
-msgstr ""
-
-#: standalone/drakTermServ:1195
-#, c-format
-msgid "type: fat"
-msgstr "tip: fat"
-
-#: standalone/drakTermServ:1196
-#, c-format
-msgid "type: thin"
-msgstr "tip: tanki"
-
-#: standalone/drakTermServ:1203
-#, c-format
-msgid "local config: false"
-msgstr "lokalne datoteke: ne"
-
-#: standalone/drakTermServ:1204
-#, c-format
-msgid "local config: true"
-msgstr "lokalni config: da"
-
-#: standalone/drakTermServ:1212
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Izmijeni klijent"
-
-#: standalone/drakTermServ:1237
-#, c-format
-msgid "Disable Local Config"
-msgstr "Onemogući lokalnu konfiguraciju"
-
-#: standalone/drakTermServ:1244
-#, c-format
-msgid "Delete Client"
-msgstr "Obriši klijent"
-
-#: standalone/drakTermServ:1267
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-"Morate restartovati Display Manager da bi izmjene stupile na snagu. \n"
-"(na konzoli restartujte dm servis)"
-
-#: standalone/drakTermServ:1313
-#, c-format
-msgid "Thin clients will not work with autologin. Disable autologin?"
-msgstr "Tanki klijent neće raditi sa automatskom prijavom. Da je isključim?"
-
-#: standalone/drakTermServ:1328
-#, c-format
-msgid "All clients will use %s"
-msgstr "Svi klijenti koriste %s"
-
-#: standalone/drakTermServ:1362
-#, c-format
-msgid "Subnet:"
-msgstr "Subnet:"
-
-#: standalone/drakTermServ:1369
-#, c-format
-msgid "Netmask:"
-msgstr "Netmask:"
-
-#: standalone/drakTermServ:1376
-#, c-format
-msgid "Routers:"
-msgstr "Routeri:"
-
-#: standalone/drakTermServ:1383
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Subnet mask:"
-
-#: standalone/drakTermServ:1390
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Broadcast adresa:"
-
-#: standalone/drakTermServ:1397
-#, c-format
-msgid "Domain Name:"
-msgstr "Ime domena:"
-
-#: standalone/drakTermServ:1405
-#, c-format
-msgid "Name Servers:"
-msgstr "DNS serveri:"
-
-#: standalone/drakTermServ:1416
-#, c-format
-msgid "IP Range Start:"
-msgstr "Početak IP raspona:"
-
-#: standalone/drakTermServ:1417
-#, c-format
-msgid "IP Range End:"
-msgstr "Kraj IP raspona:"
-
-#: standalone/drakTermServ:1459
-#, c-format
-msgid "Append TS Includes To Existing Config"
-msgstr "Dodaj TS includes na postojeću konfiguraciju"
-
-#: standalone/drakTermServ:1461
-#, c-format
-msgid "Write Config"
-msgstr "Zapiši konfiguraciju"
-
-#: standalone/drakTermServ:1477
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Podešavanje dhcpd servera"
-
-#: standalone/drakTermServ:1478
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"Većinu ovih vrijednosti uzimam iz\n"
-"vašeg aktivnog sistema.\n"
-"Možete ih izmijeniti po potrebi."
-
-#: standalone/drakTermServ:1481
-#, c-format
-msgid ""
-"Dynamic IP Address Pool\n"
-"(needed for PXE clients):"
-msgstr ""
-
-#: standalone/drakTermServ:1634
-#, c-format
-msgid "Write to %s failed!"
-msgstr ""
-
-#: standalone/drakTermServ:1647
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Molim ubacite disketu:"
-
-#: standalone/drakTermServ:1651
-#, c-format
-msgid "Could not access the floppy!"
-msgstr "Ne mogu pristupiti disketi!"
-
-#: standalone/drakTermServ:1653
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Sada možete izvaditi disketu"
-
-#: standalone/drakTermServ:1656
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Nema pogodne disketne jedinice!"
-
-#: standalone/drakTermServ:1662
-#, c-format
-msgid "PXE image is %s/%s"
-msgstr "PXE image je %s/%s"
-
-#: standalone/drakTermServ:1664
-#, c-format
-msgid "Error writing %s/%s"
-msgstr "Greška u pisanju %s/%s"
-
-#: standalone/drakTermServ:1676
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "Etherboot ISO image je %s"
-
-#: standalone/drakTermServ:1680
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Nešto je pogrešno! - Da li je instaliran mkisofs?"
-
-#: standalone/drakTermServ:1700
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Najprije treba napraviti /etc/dhcpd.conf !"
-
-#: standalone/drakTermServ:1867
-#, c-format
-msgid "%s passwd bad in Terminal Server - rewriting...\n"
-msgstr "%s passwd loš u Terminal serveru - prepisujem...\n"
-
-#: standalone/drakTermServ:1880
-#, c-format
-msgid "%s is not a user..\n"
-msgstr "%s nije korisnik...\n"
-
-#: standalone/drakTermServ:1881
-#, c-format
-msgid "%s is already a Terminal Server user\n"
-msgstr "%s je već korisnik Terminal servera\n"
-
-#: standalone/drakTermServ:1883
-#, c-format
-msgid "Addition of %s to Terminal Server failed!\n"
-msgstr "Dodavanje %s na Terminal server nije uspjelo!\n"
-
-#: standalone/drakTermServ:1885
-#, c-format
-msgid "%s added to Terminal Server\n"
-msgstr "%s dodan na Terminal server\n"
-
-#: standalone/drakTermServ:1903
-#, c-format
-msgid "Deleted %s...\n"
-msgstr "Obrisao %s...\n"
-
-#: standalone/drakTermServ:1905 standalone/drakTermServ:1978
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s nije pronađen...\n"
-
-#: standalone/drakTermServ:2006
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr "/etc/hosts.allow i /etc/hosts.deny su već podešeni - bez izmjene"
-
-#: standalone/drakTermServ:2158
-#, c-format
-msgid "Configuration changed - restart %s/dhcpd?"
-msgstr "Konfiguracija je promijenjena - da restartujem %s/dhcpd?"
-
-#: standalone/drakautoinst:38 standalone/drakhosts:123
-#: standalone/drakhosts:129 standalone/draknfs:84 standalone/draknfs:105
-#: standalone/draknfs:444 standalone/draknfs:447 standalone/draknfs:539
-#: standalone/draknfs:546 standalone/draksambashare:187
-#: standalone/draksambashare:208 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Error!"
-msgstr "Greška!"
-
-#: standalone/drakautoinst:39
-#, c-format
-msgid "I can not find needed image file `%s'."
-msgstr "Ne mogu pronaći potrebnu image datoteku '%s'"
-
-#: standalone/drakautoinst:41
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Podešavanje auto instalacije"
-
-#: standalone/drakautoinst:42
-#, c-format
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Press ok to continue."
-msgstr ""
-"Sada ćete podesiti autoinstalacijsku disketu. Ova opcija je pomalo opasna i "
-"mora biti korištena uz pažnju.\n"
-"\n"
-"Sa ovom opcijom bićete u mogućnosti da ponovite instalaciju koju ste obavili "
-"na ovom računaru, pri ćemu ćete biti interaktivno upitani za neke korake "
-"kako biste promijenili njihove vrijednosti.\n"
-"\n"
-"Zbog maksimalne sigurnosti, particioniranje i formatiranje nikad neće biti "
-"obavljeno automatski, bez obzira šta izaberete tokom instalacije na ovaj "
-"računar.\n"
-"\n"
-"Pritisnite \"U redu\" za nastavak."
-
-#: standalone/drakautoinst:60
-#, c-format
-msgid "replay"
-msgstr "ponovi"
-
-#: standalone/drakautoinst:60 standalone/drakautoinst:69
-#, c-format
-msgid "manual"
-msgstr "ručno"
-
-#: standalone/drakautoinst:64
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Automatska konfiguracija koraka"
-
-#: standalone/drakautoinst:65
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Molim izaberite za svaki korak da li ćete ga ponoviti kao i u vašoj "
-"instalaciji ili će se obaviti ručno"
-
-#: standalone/drakautoinst:77 standalone/drakautoinst:78
-#: standalone/drakautoinst:92
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Pravim autoinstalacijsku disketu"
-
-#: standalone/drakautoinst:90
-#, c-format
-msgid "Insert another blank floppy in drive %s (for drivers disk)"
-msgstr "Ubacite još jednu praznu disketu u jedinicu %s (za drajvere)"
-
-#: standalone/drakautoinst:91
-#, c-format
-msgid "Creating auto install floppy (drivers disk)"
-msgstr "Pravim autoinstalacijsku disketu (drajver disk)"
-
-#: standalone/drakautoinst:156
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Dobro došli.\n"
-"\n"
-"Parametri automatske instalacije su dostupni u odjeljcima lijevo"
-
-#: standalone/drakautoinst:251
+#: timezone.pm:148 timezone.pm:149
#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Disketa je uspješno napravljena.\n"
-"Sada možete ponoviti vašu instalaciju."
+msgid "All servers"
+msgstr "Svi serveri"
-#: standalone/drakautoinst:287
+#: timezone.pm:183
#, c-format
-msgid "Auto Install"
-msgstr "Auto instalacija"
+msgid "Global"
+msgstr "Globalno"
-#: standalone/drakautoinst:356
+#: timezone.pm:186
#, c-format
-msgid "Add an item"
-msgstr "Dodaj stavku"
+msgid "Africa"
+msgstr "Afrika"
-#: standalone/drakautoinst:363
+#: timezone.pm:187
#, c-format
-msgid "Remove the last item"
-msgstr "Ukloniti zadnju stavku"
+msgid "Asia"
+msgstr "Azija"
-#: standalone/drakbackup:157
+#: timezone.pm:188
#, c-format
-msgid ""
-"Expect is an extension to the TCL scripting language that allows interactive "
-"sessions without user intervention."
-msgstr ""
-"Expect je proširenje TCL skripting jezika koje omogućuje interaktivne sesije "
-"bez intervencije korisnika."
+msgid "Europe"
+msgstr "Evropa"
-#: standalone/drakbackup:158
+#: timezone.pm:189
#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "Zapiši šifru ovog sistema u konfiguraciju DrakBackup-a."
+msgid "North America"
+msgstr "Sjeverna Amerika"
-#: standalone/drakbackup:159
+#: timezone.pm:190
#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
-"Za višesesijski CD, samo će prva sesija obrisati CDRW. U suprotnom, CDRW se "
-"briše prije svakog backupa."
+msgid "Oceania"
+msgstr "Okeanija"
-#: standalone/drakbackup:160
+#: timezone.pm:191
#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-"Ova opcija će zapisati datoteke koje su promijenjene. Tačno ponašanje ovisi "
-"o tome da li je izabran inkrementalni ili diferencijalni režim."
+msgid "South America"
+msgstr "Južna Amerika"
-#: standalone/drakbackup:161
+#: timezone.pm:200
#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-"Inkrementalni backupi snimaju samo datoteke koje su promijenjene ili nove od "
-"zadnjeg backupa."
+msgid "Hong Kong"
+msgstr "Hong Kong"
-#: standalone/drakbackup:162
+#: timezone.pm:237
#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Diferencijalni backupi snimaju samo datoteke koje su promijenjene nakon "
-"originalnog 'baznog' backupa."
+msgid "Russian Federation"
+msgstr "Ruska Federacija"
-#: standalone/drakbackup:163
+#: timezone.pm:245
#, c-format
-msgid ""
-"Star should be selected if you want to backup EA or ACLs, otherwise choose "
-"tar"
-msgstr ""
-
-#: standalone/drakbackup:164
-#, fuzzy, c-format
-msgid ""
-"This should be a local user or email address that you want the backup "
-"results sent to. You will need to define a functioning mail server. Multiple "
-"users can be in a comma seperated list"
-msgstr ""
-"Ovo bi trebao biti lokalni korisnik ili email adresa kojem želite poslati "
-"rezultate backupa. Trebate navesti funkcionalan mail server."
-
-#: standalone/drakbackup:165
-#, fuzzy, c-format
-msgid ""
-"This should be the return address that you want the backup results sent "
-"from. Default is drakbackup."
-msgstr ""
-"Ovo bi trebao biti lokalni korisnik ili email adresa kojem želite poslati "
-"rezultate backupa. Trebate navesti funkcionalan mail server."
-
-#: standalone/drakbackup:166
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-"Datoteke i wild-cards navedene u datoteci .backupignore na vrhu stabla "
-"direktorija neće biti backupovane."
-
-#: standalone/drakbackup:167
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-"Za backup na druge medije, datoteke će biti napravljene na hard disku, a "
-"zatim prebačene na taj medij. Uključivanjem ove opcije, tar datoteke koje "
-"su napravljene na hard disku će biti pobrisane nakon backupa."
-
-#: standalone/drakbackup:168
-#, c-format
-msgid ""
-"Selecting this option allows you to view the raw output from the restore "
-"process, after a file restore."
-msgstr ""
-
-#: standalone/drakbackup:169
-#, c-format
-msgid ""
-"Some protocols, like rsync, may be configured at the server end. Rather "
-"than using a directory path, you would use the 'module' name for the service "
-"path."
-msgstr ""
-"Neki protokoli, kao što je rsync, se mogu podesiti na serverskom kraju. "
-"Umjesto korištenja puta direktorija, možete koristiti ime 'modula' za put "
-"servisa."
-
-#: standalone/drakbackup:170
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"Vlastito vam omogućuje da navedete vaš vlastiti datum i vrijeme. Ostale "
-"opcije koriste run-parts u /etc/crontab."
-
-#: standalone/drakbackup:344
-#, c-format
-msgid "No media selected for cron operation."
-msgstr "Nije izabran medij za cron operaciju."
-
-#: standalone/drakbackup:348
-#, c-format
-msgid "No interval selected for cron operation."
-msgstr "Nije izabran interval za cron operaciju."
-
-#: standalone/drakbackup:393
-#, c-format
-msgid "Interval cron not available as non-root"
-msgstr "Intervalni cron nije dostupan za ne-root korisnike"
-
-#: standalone/drakbackup:477 standalone/logdrake:439
-#, c-format
-msgid "\"%s\" neither is a valid email nor is an existing local user!"
-msgstr "\"%s\" nije ni ispravna e-mail adresa ni postojeći lokalni korisnik!"
-
-#: standalone/drakbackup:481 standalone/logdrake:444
-#, 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\" je lokalni korisnik, ali niste izabrali lokalni SMTP, tako da morate "
-"unijeti kompletnu e-mail adresu!"
-
-#: standalone/drakbackup:491
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr ""
-"Lista ispravnih korisnika izmijenjena, prepisujem konfiguracionu datoteku."
-
-#: standalone/drakbackup:493
-#, c-format
-msgid "Old user list:\n"
-msgstr "Stara lista korisnika:\n"
-
-#: standalone/drakbackup:495
-#, c-format
-msgid "New user list:\n"
-msgstr "Nova lista korisnika:\n"
-
-#: standalone/drakbackup:524
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
-msgstr ""
-"\n"
-" DrakBackup Izvještaj \n"
-
-#: standalone/drakbackup:525
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-msgstr ""
-"\n"
-" DrakBackup Izvještaj o demonima\n"
-
-#: standalone/drakbackup:531
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup Detalji izvještaja\n"
-"\n"
-"\n"
-
-#: standalone/drakbackup:556 standalone/drakbackup:627
-#: standalone/drakbackup:683
-#, c-format
-msgid "Total progress"
-msgstr "Ukupno napredak"
-
-#: standalone/drakbackup:609
-#, c-format
-msgid ""
-"%s exists, delete?\n"
-"\n"
-"If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-"%s već postoji, da ga obrišem?\n"
-"\n"
-"Ako ste već jednom obavili ovaj proces, vjerovatno\n"
-"trebate očistiti unos iz liste autoriziranih ključeva na serveru."
-
-#: standalone/drakbackup:618
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "Možda će trebati par trenutaka da se generišu ključevi."
-
-#: standalone/drakbackup:625
-#, c-format
-msgid "Cannot spawn %s."
-msgstr "Ne mogu pokrenuti %s."
-
-#: standalone/drakbackup:642
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "Nema upita za šifru na %s na portu %s"
-
-#: standalone/drakbackup:643
-#, c-format
-msgid "Bad password on %s"
-msgstr "Pogrešna šifra na %s"
-
-#: standalone/drakbackup:644
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "Pristup odbijen pri prenosu %s na %s"
-
-#: standalone/drakbackup:645
-#, c-format
-msgid "Can not find %s on %s"
-msgstr "Ne mogu pronaći %s na %s"
-
-#: standalone/drakbackup:649
-#, c-format
-msgid "%s not responding"
-msgstr "%s ne odgovara"
-
-#: standalone/drakbackup:653
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-"Transfer uspješan\n"
-"Možda je potrebno da provjerite da li se možete prijaviti na server sa:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"bez pitanja o šifri."
-
-#: standalone/drakbackup:703
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "Nema CDR/DVDR u drajvu!"
-
-#: standalone/drakbackup:707
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Izgleda da na ovaj medij nije moguće snimati!"
-
-#: standalone/drakbackup:712
-#, c-format
-msgid "Not erasable media!"
-msgstr "Medij nije izbrisiv!"
-
-#: standalone/drakbackup:754
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Potrebno je par trenutaka da se obriše medij."
-
-#: standalone/drakbackup:812
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Problem sa privilegijama tokom pristupa na CD."
-
-#: standalone/drakbackup:840
-#, c-format
-msgid "No tape in %s!"
-msgstr "Nema trake u %s!"
-
-#: standalone/drakbackup:953
-#, c-format
-msgid ""
-"Backup destination quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-
-#: standalone/drakbackup:973 standalone/drakbackup:1005
-#, c-format
-msgid "Backup system files..."
-msgstr "Backup-uj sistemske datoteke..."
-
-#: standalone/drakbackup:1006 standalone/drakbackup:1045
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Datoteke backup-a hard diska..."
-
-#: standalone/drakbackup:1044
-#, c-format
-msgid "Backup User files..."
-msgstr "Backup-uj korisničke datoteke..."
-
-#: standalone/drakbackup:1078
-#, c-format
-msgid "Backup Other files..."
-msgstr "Backup-uj ostale datoteke..."
-
-#: standalone/drakbackup:1079
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Napredak backup-a hard diska..."
-
-#: standalone/drakbackup:1084
-#, c-format
-msgid "No changes to backup!"
-msgstr "Nema izmjena na backupu!"
-
-#: standalone/drakbackup:1100 standalone/drakbackup:1122
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-"\n"
-"Drakbackup aktivnosti putem %s:\n"
-"\n"
-
-#: standalone/drakbackup:1109
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-" Problem sa FTP konekcijom: Nije bilo moguće poslati vaše backup datoteke "
-"putem FTPa.\n"
-
-#: standalone/drakbackup:1110
-#, c-format
-msgid ""
-"Error during sending file via FTP. Please correct your FTP configuration."
-msgstr ""
-"Greška tokom slanja datoteke preko FTPa. Molim ispravite vašu FTP "
-"konfiguraciju."
-
-#: standalone/drakbackup:1112
-#, c-format
-msgid "file list sent by FTP: %s\n"
-msgstr "lista datoteka poslana putem FTPa: %s\n"
-
-#: standalone/drakbackup:1127
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-"\n"
-"Drakbackup aktivnosti putem CDa:\n"
-"\n"
-
-#: standalone/drakbackup:1132
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-"\n"
-"Drakbackup aktivnosti putem trake:\n"
-"\n"
-
-#: standalone/drakbackup:1141
-#, c-format
-msgid "Error sending mail. Your report mail was not sent."
-msgstr "Greška tokom slanja pošte. Vaš e-mail izvještaj nije poslan."
-
-#: standalone/drakbackup:1142
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr " Greška tokom slanja pošte. \n"
-
-#: standalone/drakbackup:1172
-#, c-format
-msgid "Can not create catalog!"
-msgstr "Ne mogu napraviti katalog!"
-
-#: standalone/drakbackup:1332
-#, fuzzy, c-format
-msgid "Problem installing %s"
-msgstr "Problemi tokom instaliranja paketa %s"
-
-#: standalone/drakbackup:1420
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Backup sistemskih datoteka. (/etc direktorij)"
-
-#: standalone/drakbackup:1421 standalone/drakbackup:1484
-#: standalone/drakbackup:1550
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr ""
-"Koristi inkrementalni/diferencijalni backup (nemoj prebrisati stare backupe)"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Koristi inkrementalni backup"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Koristi diferencijalni backup"
-
-#: standalone/drakbackup:1425
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Zaobiđi kritične datoteke (passwd, group, fstab)"
-
-#: standalone/drakbackup:1456
-#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Molim izaberite sve korisnike koje želite uključiti u vaš backup."
-
-#: standalone/drakbackup:1483
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Ne uključuj spremnik web preglednika"
-
-#: standalone/drakbackup:1537
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Izaberite datoteke ili direktorije i kliknite na 'U redu'"
-
-#: standalone/drakbackup:1538 standalone/drakfont:650
-#, c-format
-msgid "Remove Selected"
-msgstr "Ukloni izabrano"
-
-#: standalone/drakbackup:1601
-#, c-format
-msgid "Users"
-msgstr "Korisnici"
-
-#: standalone/drakbackup:1621
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Koristi mrežnu konekciju za backup"
-
-#: standalone/drakbackup:1623
-#, c-format
-msgid "Net Method:"
-msgstr "Net Method:"
-
-#: standalone/drakbackup:1627
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Koristi Expect za SSH"
-
-#: standalone/drakbackup:1628
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "Napravi/premjesti backup ključeve za SSH"
-
-#: standalone/drakbackup:1630
-#, c-format
-msgid "Transfer Now"
-msgstr "Prebaci odmah"
-
-#: standalone/drakbackup:1632
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Drugi (ne drakbackup) ključevi su već na mjestu"
-
-#: standalone/drakbackup:1635
-#, c-format
-msgid "Host name or IP."
-msgstr "Ime računara ili IP."
-
-#: standalone/drakbackup:1640
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr "Direktorij (ili modul) za smještaj backupa na ovom računaru."
-
-#: standalone/drakbackup:1652
-#, c-format
-msgid "Remember this password"
-msgstr "Zapamti ovu šifru"
-
-#: standalone/drakbackup:1664
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Potrebno ime računara, korisničko ime i šifra!"
-
-#: standalone/drakbackup:1755
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Koristi CD/DVDROM za backup"
-
-#: standalone/drakbackup:1758
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Izaberite vaš CD/DVD uređaj"
-
-#: standalone/drakbackup:1763
-#, c-format
-msgid "Choose your CD/DVD media size"
-msgstr "Izaberite veličinu vašeg CD/DVD medija"
-
-#: standalone/drakbackup:1770
-#, c-format
-msgid "Multisession CD"
-msgstr "Višesesijski CD"
-
-#: standalone/drakbackup:1772
-#, c-format
-msgid "CDRW media"
-msgstr "CDRW medij"
-
-#: standalone/drakbackup:1778
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Obrišite vaš RW medij (prva sesija)"
-
-#: standalone/drakbackup:1779
-#, c-format
-msgid " Erase Now "
-msgstr " Obriši odmah "
-
-#: standalone/drakbackup:1785
-#, c-format
-msgid "DVD+RW media"
-msgstr "DVD+RW medij"
-
-#: standalone/drakbackup:1787
-#, c-format
-msgid "DVD-R media"
-msgstr "DVD-R medij"
-
-#: standalone/drakbackup:1789
-#, c-format
-msgid "DVDRAM device"
-msgstr "DVDRAM uređaj"
-
-#: standalone/drakbackup:1820
-#, c-format
-msgid "No CD device defined!"
-msgstr "Nije definisan CD uređaj!"
-
-#: standalone/drakbackup:1862
-#, c-format
-msgid "Use tape to backup"
-msgstr "Koristi traku za backup"
-
-#: standalone/drakbackup:1865
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Ime uređaja kojeg ćete koristiti za backup"
-
-#: standalone/drakbackup:1871
-#, c-format
-msgid "Backup directly to tape"
-msgstr "Backup direktno na traku"
-
-#: standalone/drakbackup:1877
-#, c-format
-msgid "Use tape hardware compression (EXPERIMENTAL)"
-msgstr ""
-
-#: standalone/drakbackup:1883
-#, c-format
-msgid "Do not rewind tape after backup"
-msgstr "Ne premotavaj traku nakon backupa"
-
-#: standalone/drakbackup:1889
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Obriši traku prije backupa"
-
-#: standalone/drakbackup:1895
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Izbaci traku nakon backupa"
-
-#: standalone/drakbackup:1976
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Unesite direktorij u koji želite spasiti:"
-
-#: standalone/drakbackup:1980
-#, c-format
-msgid "Directory to save to"
-msgstr "Direktorij u koji želite spasiti"
-
-#: standalone/drakbackup:1985
-#, c-format
-msgid ""
-"Maximum disk space\n"
-" allocated for backups (MB)"
-msgstr ""
-
-#: standalone/drakbackup:1989
-#, c-format
-msgid ""
-"Delete incremental or differential\n"
-" backups older than N days\n"
-" (0 is keep all backups) to save space"
-msgstr ""
-
-#: standalone/drakbackup:2056
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CDROM / DVDROM"
-
-#: standalone/drakbackup:2061
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "HardDrive / NFS"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2077
-#: standalone/drakbackup:2082
-#, c-format
-msgid "hourly"
-msgstr "svakog sata"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2078
-#: standalone/drakbackup:2083
-#, c-format
-msgid "daily"
-msgstr "dnevno"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2079
-#: standalone/drakbackup:2084
-#, c-format
-msgid "weekly"
-msgstr "sedmično"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2080
-#: standalone/drakbackup:2085
-#, c-format
-msgid "monthly"
-msgstr "mjesečno"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2081
-#: standalone/drakbackup:2086
-#, c-format
-msgid "custom"
-msgstr "ručno izaberi"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "January"
-msgstr "Januar"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "February"
-msgstr "Februar"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "March"
-msgstr "Mart"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "April"
-msgstr "April"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "May"
-msgstr "Maj"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "June"
-msgstr "Juni"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "July"
-msgstr "Juli"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "August"
-msgstr "August"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "September"
-msgstr "Septembar"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "October"
-msgstr "Oktobar"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "November"
-msgstr "Novembar"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "December"
-msgstr "Decembar"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Sunday"
-msgstr "Nedjelja"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Monday"
-msgstr "Ponedjeljak"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Tuesday"
-msgstr "Utorak"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Wednesday"
-msgstr "Srijeda"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Thursday"
-msgstr "Četvrtak"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Friday"
-msgstr "Petak"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Saturday"
-msgstr "Subota"
-
-#: standalone/drakbackup:2126
-#, fuzzy, c-format
-msgid "Delete cron entry"
-msgstr "Obriši klijent"
-
-#: standalone/drakbackup:2127
-#, fuzzy, c-format
-msgid "Add cron entry"
-msgstr "Dodaj štampač"
-
-#: standalone/drakbackup:2185
-#, c-format
-msgid "Use daemon"
-msgstr "Koristi demon"
-
-#: standalone/drakbackup:2189
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Izaberite vremenski interval između svakog backupa"
-
-#: standalone/drakbackup:2197
-#, c-format
-msgid "Minute"
-msgstr "Minuta"
-
-#: standalone/drakbackup:2201
-#, c-format
-msgid "Hour"
-msgstr "Sat"
-
-#: standalone/drakbackup:2205
-#, c-format
-msgid "Day"
-msgstr "Dan"
-
-#: standalone/drakbackup:2209
-#, c-format
-msgid "Month"
-msgstr "Mjesec"
-
-#: standalone/drakbackup:2213
-#, fuzzy, c-format
-msgid "Weekday (start)"
-msgstr "Dan u sedmici"
-
-#: standalone/drakbackup:2217
-#, fuzzy, c-format
-msgid "Weekday (end)"
-msgstr "Dan u sedmici"
-
-#: standalone/drakbackup:2221
-#, fuzzy, c-format
-msgid "Profile"
-msgstr "Profili"
-
-#: standalone/drakbackup:2227
-#, fuzzy, c-format
-msgid "Current crontab:"
-msgstr "Trenutni korisnik"
-
-#: standalone/drakbackup:2235
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "Molim izaberite medij za backup."
-
-#: standalone/drakbackup:2239
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Molim budite sigurni da je cron demon aktiviran u vašim servisima."
-
-#: standalone/drakbackup:2240
-#, c-format
-msgid ""
-"If your machine is not on all the time, you might want to install anacron."
-msgstr ""
-"Ako vaš računar nije stalno upaljen, možda ćete željeti instalirati anacron."
-
-#: standalone/drakbackup:2316
-#, fuzzy, c-format
-msgid "Please choose the archive program"
-msgstr "Molim izaberite datum za vraćanje:"
-
-#: standalone/drakbackup:2321
-#, c-format
-msgid "Please choose the compression type"
-msgstr "Molim izaberite vrstu kompresije"
-
-#: standalone/drakbackup:2325
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Koristi .backupignore datoteke"
-
-#: standalone/drakbackup:2327
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Pošalji mail izvještaj nakon svakog backupa na :"
-
-#: standalone/drakbackup:2333
-#, c-format
-msgid "Return address for sent mail:"
-msgstr ""
-
-#: standalone/drakbackup:2339
-#, c-format
-msgid "SMTP server for mail:"
-msgstr "SMTP server za e-mail:"
-
-#: standalone/drakbackup:2343
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr "Obriši tar datoteke sa diska nakon backupa na drugi medij."
-
-#: standalone/drakbackup:2344
-#, fuzzy, c-format
-msgid "View restore log after file restore."
-msgstr "OK za vraćanje ostalih datoteka."
-
-#: standalone/drakbackup:2389
-#, c-format
-msgid "What"
-msgstr "Šta"
-
-#: standalone/drakbackup:2394
-#, c-format
-msgid "Where"
-msgstr "Gdje"
-
-#: standalone/drakbackup:2399
-#, c-format
-msgid "When"
-msgstr "Kada"
-
-#: standalone/drakbackup:2404
-#, c-format
-msgid "More Options"
-msgstr "Više opcija"
-
-#: standalone/drakbackup:2417
-#, c-format
-msgid "Backup destination not configured..."
-msgstr "Odredište za backup nije podešeno..."
-
-#: standalone/drakbackup:2437 standalone/drakbackup:4367
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Podešavanje Drakbackup-a"
-
-#: standalone/drakbackup:2453
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Molim izaberite gdje želite backupovati"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Hard Drive used to prepare backups for all media"
-msgstr "Hard disk koji će se koristiti za pripremu backupa za sve medije"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Across Network"
-msgstr "preko mreže"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On CD-R"
-msgstr "na CDROMu"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On Tape Device"
-msgstr "na Kasetnom uređaju"
-
-#: standalone/drakbackup:2502
-#, c-format
-msgid "Backup Users"
-msgstr "Backup korisnika"
-
-#: standalone/drakbackup:2503
-#, c-format
-msgid " (Default is all users)"
-msgstr " (Podrazumijevaju se svi korisnici)"
-
-#: standalone/drakbackup:2516
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Molim izaberite šta želite backupovati"
-
-#: standalone/drakbackup:2517
-#, c-format
-msgid "Backup System"
-msgstr "Backup sistema"
-
-#: standalone/drakbackup:2519
-#, c-format
-msgid "Select user manually"
-msgstr "Ručno izaberite korisnika"
-
-#: standalone/drakbackup:2548
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Molim izaberite podatke za backup..."
-
-#: standalone/drakbackup:2620
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Izvori backup-a: \n"
-
-#: standalone/drakbackup:2621
-#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- sistemske datoteke:\n"
-
-#: standalone/drakbackup:2623
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- korisničke datoteke:\n"
-
-#: standalone/drakbackup:2625
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- ostale datoteke:\n"
-
-#: standalone/drakbackup:2627
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-"\n"
-"- spasi na hard disku u direktoriju: %s\n"
-
-#: standalone/drakbackup:2628
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tOgraniči upotrebu diska na %s MB\n"
-
-#: standalone/drakbackup:2629
-#, c-format
-msgid "\tDelete backups older than %s day(s)\n"
-msgstr ""
-
-#: standalone/drakbackup:2632
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
-"\n"
-"- Obriši tar datoteke sa diska nakon backupa.\n"
-
-#: standalone/drakbackup:2637
-#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr ""
-"\n"
-"- Prži na CD"
-
-#: standalone/drakbackup:2638
-#, c-format
-msgid "RW"
-msgstr "RW"
-
-#: standalone/drakbackup:2639
-#, c-format
-msgid " on device: %s"
-msgstr "na uređaju: %s"
-
-#: standalone/drakbackup:2640
-#, c-format
-msgid " (multi-session)"
-msgstr " (više sesija)"
-
-#: standalone/drakbackup:2641
-#, c-format
-msgid ""
-"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-"\n"
-"- Spasi na traku na uređaju: %s"
-
-#: standalone/drakbackup:2642
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tObriši=%s"
-
-#: standalone/drakbackup:2644
-#, c-format
-msgid "\tBackup directly to Tape\n"
-msgstr "\tBackup direktno na traku\n"
-
-#: standalone/drakbackup:2646
-#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
-"\n"
-"- Spasi pomoću %s na računaru: %s\n"
-
-#: standalone/drakbackup:2647
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t korisničko ime: %s\n"
-"\t\t u direktoriju: %s \n"
-
-#: standalone/drakbackup:2648
-#, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Opcije:\n"
+msgid "Yugoslavia"
+msgstr "Jugoslavija"
-#: standalone/drakbackup:2649
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tNe uključuj sistemske datoteke\n"
-
-#: standalone/drakbackup:2651
-#, fuzzy, c-format
-msgid "\tBackups use %s and bzip2\n"
-msgstr "\tBackupi koriste tar i bzip2\n"
-
-#: standalone/drakbackup:2652
-#, fuzzy, c-format
-msgid "\tBackups use %s and gzip\n"
-msgstr "\tBackupi koriste tar i gzip\n"
-
-#: standalone/drakbackup:2653
-#, fuzzy, c-format
-msgid "\tBackups use %s only\n"
-msgstr "\tBackupi koriste samo tar\n"
-
-#: standalone/drakbackup:2655
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tKoristi datoteke .backupignore\n"
-
-#: standalone/drakbackup:2656
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tŠalji mail na %s\n"
-
-#: standalone/drakbackup:2657
-#, c-format
-msgid "\tSend mail from %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2658
-#, c-format
-msgid "\tUsing SMTP server %s\n"
-msgstr "\tKoristeći SMTP server %s\n"
-
-#: standalone/drakbackup:2660
-#, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
-msgstr ""
-"\n"
-"- Demon (%s) preko:\n"
-
-#: standalone/drakbackup:2661
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-Hard disk.\n"
-
-#: standalone/drakbackup:2662
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-R.\n"
-
-#: standalone/drakbackup:2663
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Traka \n"
-
-#: standalone/drakbackup:2664
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Mrežu preko FTPa.\n"
-
-#: standalone/drakbackup:2665
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Mrežu preko SSH.\n"
-
-#: standalone/drakbackup:2666
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-Mrežu preko rsync-a.\n"
-
-#: standalone/drakbackup:2668
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Bez podešavanja, molim kliknite na Čarobnjak ili Više opcija.\n"
-
-#: standalone/drakbackup:2673
-#, c-format
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Lista podataka za vraćanje:\n"
-"\n"
-
-#: standalone/drakbackup:2675
-#, c-format
-msgid "- Restore System Files.\n"
-msgstr "- Vrati sistemske datoteke.\n"
-
-#: standalone/drakbackup:2677 standalone/drakbackup:2687
-#, c-format
-msgid " - from date: %s %s\n"
-msgstr " - od datuma: %s %s\n"
-
-#: standalone/drakbackup:2680
-#, c-format
-msgid "- Restore User Files: \n"
-msgstr "- Vrati korisničke datoteke: \n"
-
-#: standalone/drakbackup:2685
-#, c-format
-msgid "- Restore Other Files: \n"
-msgstr "- Vrati ostale datoteke: \n"
-
-#: standalone/drakbackup:2864
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Lista oštećenih podataka:\n"
-"\n"
-
-#: standalone/drakbackup:2866
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Molim isključite ili pobrišite ga idući put."
-
-#: standalone/drakbackup:2876
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Backup datoteke su oštećene"
-
-#: standalone/drakbackup:2897
-#, c-format
-msgid " All of your selected data have been "
-msgstr " Svi vaši izabrani podaci su "
-
-#: standalone/drakbackup:2898
-#, c-format
-msgid " Successfully Restored on %s "
-msgstr " uspješno spašeni na %s "
-
-#: standalone/drakbackup:2999
-#, c-format
-msgid "/usr/bin/star not found, using tar..."
-msgstr ""
-
-#: standalone/drakbackup:3035
-#, c-format
-msgid " Restore Configuration "
-msgstr " Vrati konfiguraciju "
-
-#: standalone/drakbackup:3063
-#, c-format
-msgid "OK to restore the other files."
-msgstr "OK za vraćanje ostalih datoteka."
-
-#: standalone/drakbackup:3079
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Lista korisnika za vraćanje (samo najsvježiji datum po korisniku je značajan)"
-
-#: standalone/drakbackup:3144
-#, c-format
-msgid "Please choose the date to restore:"
-msgstr "Molim izaberite datum za vraćanje:"
-
-#: standalone/drakbackup:3181
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Vrati sa hard diska"
-
-#: standalone/drakbackup:3183
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Unesite direktorij gdje su smješteni backupi"
-
-#: standalone/drakbackup:3187
-#, c-format
-msgid "Directory with backups"
-msgstr "Direktorij sa backupom"
-
-#: standalone/drakbackup:3241
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Izaberite drugi medij za vraćanje"
-
-#: standalone/drakbackup:3243
-#, c-format
-msgid "Other Media"
-msgstr "Drugi medij"
-
-#: standalone/drakbackup:3248
-#, c-format
-msgid "Restore system"
-msgstr "Vrati sistem"
-
-#: standalone/drakbackup:3249
-#, c-format
-msgid "Restore Users"
-msgstr "Vrati korisnike"
-
-#: standalone/drakbackup:3250
-#, c-format
-msgid "Restore Other"
-msgstr "Vrati ostalo"
-
-#: standalone/drakbackup:3252
-#, c-format
-msgid "Select path to restore (instead of /)"
-msgstr "izaberite stazu za vraćanje (umjesto / )"
-
-#: standalone/drakbackup:3256 standalone/drakbackup:3539
-#, c-format
-msgid "Path To Restore To"
-msgstr "Put u koji treba vratiti"
-
-#: standalone/drakbackup:3259
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Izvrši novi backup prije vraćanja (samo za inkrementalni backup.)"
-
-#: standalone/drakbackup:3261
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Pobriši korisničke direktorije prije vraćanja."
-
-#: standalone/drakbackup:3345
-#, c-format
-msgid "Filename text substring to search for (empty string matches all):"
-msgstr "Dio teksta koji se traži u imenu datoteke (prazan string vraća sve):"
-
-#: standalone/drakbackup:3348
-#, c-format
-msgid "Search Backups"
-msgstr "Pretraži backupe"
-
-#: standalone/drakbackup:3367
-#, c-format
-msgid "No matches found..."
-msgstr "Nije pronađen nijedan rezultat..."
-
-#: standalone/drakbackup:3371
-#, c-format
-msgid "Restore Selected"
-msgstr "Vrati izabrano"
-
-#: standalone/drakbackup:3507
-#, c-format
-msgid ""
-"Click date/time to see backup files.\n"
-"Ctrl-Click files to select multiple files."
-msgstr ""
-"Kliknite datum/vrijeme da vidite backup datoteke.\n"
-"Ctrl+kliknite datoteke da ih izaberete više odjednom."
-
-#: standalone/drakbackup:3513
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
-"Vrati izabrane\n"
-"stavke katologa"
-
-#: standalone/drakbackup:3522
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr ""
-"Vrati izabrane\n"
-"datoteke"
-
-#: standalone/drakbackup:3599
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "Backup datoteke nisu pronađene na %s."
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid "Restore From CD"
-msgstr "Vrati sa CDa"
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-"Ubacite CD sa oznakom %s u CD\n"
-"jedinicu pod tačkom montiranja /mnt/cdrom"
-
-#: standalone/drakbackup:3614
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "Neispravna oznaka CDa. Oznaka diska je %s."
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid "Restore From Tape"
-msgstr "Vrati sa trake"
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-"Ubacite traku sa oznakom %s u kasetni\n"
-"uređaj %s"
-
-#: standalone/drakbackup:3626
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Neispravna oznaka trake. Oznaka je %s."
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network"
-msgstr "Vrati putem mreže"
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Restore putem mrežnog protokola: %s"
-
-#: standalone/drakbackup:3638
-#, c-format
-msgid "Host Name"
-msgstr "Ime računara"
-
-#: standalone/drakbackup:3639
-#, c-format
-msgid "Host Path or Module"
-msgstr "Staza ili modul računara"
-
-#: standalone/drakbackup:3646
-#, c-format
-msgid "Password required"
-msgstr "Potrebna šifra"
-
-#: standalone/drakbackup:3652
-#, c-format
-msgid "Username required"
-msgstr "Potrebno korisničko ime"
-
-#: standalone/drakbackup:3655
-#, c-format
-msgid "Hostname required"
-msgstr "Potrebno ime računara"
-
-#: standalone/drakbackup:3660
-#, c-format
-msgid "Path or Module required"
-msgstr "Potrebna je staza ili modul"
-
-#: standalone/drakbackup:3672
-#, c-format
-msgid "Files Restored..."
-msgstr "Vraćene datoteke..."
-
-#: standalone/drakbackup:3675
-#, c-format
-msgid "Restore Failed..."
-msgstr "Vraćanje nije uspjelo..."
-
-#: standalone/drakbackup:3703
-#, c-format
-msgid "%s not retrieved..."
-msgstr "%s nije dobavljen..."
-
-#: standalone/drakbackup:3929 standalone/drakbackup:3998
-#, c-format
-msgid "Search for files to restore"
-msgstr "Izaberite datoteke za vraćanje"
-
-#: standalone/drakbackup:3933
-#, c-format
-msgid "Restore all backups"
-msgstr "Vrati sve backupe"
-
-#: standalone/drakbackup:3941
-#, c-format
-msgid "Custom Restore"
-msgstr "Ručno vraćanje"
-
-#: standalone/drakbackup:3945 standalone/drakbackup:3994
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Vrati iz kataloga"
-
-#: standalone/drakbackup:3966
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Ne mogu naći backupe za vraćanje...\n"
-
-#: standalone/drakbackup:3967
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Provjerite da li je %s ispravan put?"
-
-#: standalone/drakbackup:3968
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " a CD je u pogonskoj jedinici"
-
-#: standalone/drakbackup:3970
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr ""
-"Backupi na mediju koji se ne može montirati - Koristite Katalog za vraćanje"
-
-#: standalone/drakbackup:3986
-#, c-format
-msgid "CD in place - continue."
-msgstr "CD na mjestu - nastavljam."
-
-#: standalone/drakbackup:3991
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Browse to new restore repository."
-
-#: standalone/drakbackup:3992
-#, c-format
-msgid "Directory To Restore From"
-msgstr "Direktorij iz kojeg treba vratiti"
-
-#: standalone/drakbackup:4028
-#, c-format
-msgid "Restore Progress"
-msgstr "Napredak vraćanja"
-
-#: standalone/drakbackup:4136
-#, c-format
-msgid "Build Backup"
-msgstr "Izgradi backup"
-
-#: standalone/drakbackup:4169 standalone/drakbackup:4466
-#, c-format
-msgid "Restore"
-msgstr "Vrati"
-
-#: standalone/drakbackup:4261
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Molim izaberite podatke za vraćanje..."
-
-#: standalone/drakbackup:4301
-#, c-format
-msgid "Backup system files"
-msgstr "Backup sistemskih datoteka"
-
-#: standalone/drakbackup:4304
-#, c-format
-msgid "Backup user files"
-msgstr "Backup korisničkih datoteka"
-
-#: standalone/drakbackup:4307
-#, c-format
-msgid "Backup other files"
-msgstr "Backup ostalih datoteka"
-
-#: standalone/drakbackup:4310 standalone/drakbackup:4344
-#, c-format
-msgid "Total Progress"
-msgstr "Ukupan napredak"
-
-#: standalone/drakbackup:4336
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Šaljem datoteke putem FTPa"
-
-#: standalone/drakbackup:4339
-#, c-format
-msgid "Sending files..."
-msgstr "Šaljem datoteke..."
-
-#: standalone/drakbackup:4409
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Backup-uj sada iz konfiguracijske datoteke"
-
-#: standalone/drakbackup:4414
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Pogledaj postavke backupa."
-
-#: standalone/drakbackup:4440
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Čarobnjak za podešavanje"
-
-#: standalone/drakbackup:4445
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Napredno podešavanje"
-
-#: standalone/drakbackup:4450
-#, c-format
-msgid "View Configuration"
-msgstr "Pogledaj konfiguraciju"
-
-#: standalone/drakbackup:4454
-#, c-format
-msgid "View Last Log"
-msgstr "Pogledaj zadnji log"
-
-#: standalone/drakbackup:4459
-#, c-format
-msgid "Backup Now"
-msgstr "Backup-uj sada"
-
-#: standalone/drakbackup:4463
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Nije pronađena konfiguraciona datoteka \n"
-"molim kliknite na Čarobnjak ili Više opcija."
-
-#: standalone/drakbackup:4501
-#, fuzzy, c-format
-msgid "Load profile"
-msgstr "Lokalna datoteka"
-
-#: standalone/drakbackup:4510
-#, fuzzy, c-format
-msgid "Save profile as..."
-msgstr "Sačuvaj kao..."
-
-#: standalone/drakbackup:4532 standalone/drakbackup:4535
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: standalone/drakboot:49
-#, c-format
-msgid "No bootloader found, creating a new configuration"
-msgstr ""
-
-#: standalone/drakboot:84 standalone/harddrake2:190 standalone/harddrake2:191
-#: standalone/logdrake:69 standalone/printerdrake:150
-#: standalone/printerdrake:151 standalone/printerdrake:152
-#, c-format
-msgid "/_File"
-msgstr "/_Datoteka"
-
-#: standalone/drakboot:85 standalone/logdrake:75
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Datoteka/_Izlaz"
-
-#: standalone/drakboot:85 standalone/harddrake2:191 standalone/logdrake:75
-#: standalone/printerdrake:152
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: standalone/drakboot:125
-#, c-format
-msgid "Text only"
-msgstr ""
-
-#: standalone/drakboot:126
-#, c-format
-msgid "Verbose"
-msgstr "Opširno"
-
-#: standalone/drakboot:127
-#, c-format
-msgid "Silent"
-msgstr "Bez ispisa"
-
-#: standalone/drakboot:134
-#, c-format
-msgid ""
-"Your system bootloader is not in framebuffer mode. To activate graphical "
-"boot, select a graphic video mode from the bootloader configuration tool."
-msgstr ""
-"Vaš sistemski bootloader nije u framebuffer modu. Da aktivirate grafički "
-"boot, izaberite grafički video režim iz alata za podešavanje bootloadera."
-
-#: standalone/drakboot:135
-#, c-format
-msgid "Do you want to configure it now?"
-msgstr "Želite li ga sada podesiti ?"
-
-#: standalone/drakboot:144
-#, c-format
-msgid "Install themes"
-msgstr "Instaliraj teme"
-
-#: standalone/drakboot:146
-#, c-format
-msgid "Graphical boot theme selection"
-msgstr "Izbor grafičke boot teme"
-
-#: standalone/drakboot:149
-#, fuzzy, c-format
-msgid "Graphical boot mode:"
-msgstr "Koristi grafički boot"
-
-#: standalone/drakboot:151
-#, c-format
-msgid "Theme"
-msgstr "Tema"
-
-#: standalone/drakboot:154
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"Tema prikaza\n"
-"pod konzolom"
-
-#: standalone/drakboot:159
-#, c-format
-msgid "Create new theme"
-msgstr "Napravi novu temu"
-
-#: standalone/drakboot:191
-#, c-format
-msgid "Default user"
-msgstr "Korisnik"
-
-#: standalone/drakboot:192
-#, c-format
-msgid "Default desktop"
-msgstr "Desktop"
-
-#: standalone/drakboot:195
-#, c-format
-msgid "No, I do not want autologin"
-msgstr "Ne, ne želim da se automatski prijavim"
-
-#: standalone/drakboot:196
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr ""
-"Da, želim da se automatski prijavim sa ovim vrijednostima (korisnik, desktop)"
-
-#: standalone/drakboot:203
-#, c-format
-msgid "System mode"
-msgstr "Sistemske opcije"
-
-#: standalone/drakboot:206
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Pokreni X-Window sistem na startu"
-
-#: standalone/drakboot:272
-#, c-format
-msgid ""
-"Please choose a video mode, it will be applied to each of the boot entries "
-"selected below.\n"
-"Be sure your video card supports the mode you choose."
-msgstr ""
-"Molim izaberite video režim, on će biti primjenjen na svaku od boot stavki "
-"izabranih ispod.\n"
-"Provjerite da li vaša video kartica podržava taj režim prije nego što "
-"izaberete!"
-
-#: standalone/drakbug:41
-#, c-format
-msgid "Mandriva Linux Bug Report Tool"
-msgstr "Mandriva Linux alat za prijavu bugova"
-
-#: standalone/drakbug:46
-#, c-format
-msgid "Mandriva Linux Control Center"
-msgstr "Mandriva Linux Kontrolni centar"
-
-#: standalone/drakbug:48
-#, c-format
-msgid "Synchronization tool"
-msgstr "Alat za sinhroniziranje"
-
-#: standalone/drakbug:49 standalone/drakbug:152
-#, c-format
-msgid "Standalone Tools"
-msgstr "Samostalni alati"
-
-#: standalone/drakbug:50
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: standalone/drakbug:51
-#, c-format
-msgid "Mandriva Online"
-msgstr "Mandriva Online"
-
-#: standalone/drakbug:52
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
-
-#: standalone/drakbug:53
-#, c-format
-msgid "Msec"
-msgstr "Msec"
-
-#: standalone/drakbug:54
-#, c-format
-msgid "Remote Control"
-msgstr "Udaljena kontrola"
-
-#: standalone/drakbug:55
-#, c-format
-msgid "Software Manager"
-msgstr "Upravljanje programima"
-
-#: standalone/drakbug:56
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
-
-#: standalone/drakbug:57
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Alat za Windows migraciju"
-
-#: standalone/drakbug:58 standalone/draksambashare:1234
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: standalone/drakbug:59
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Čarobnjaci za podešavanje"
-
-#: standalone/drakbug:81
-#, c-format
-msgid "Select Mandriva Tool:"
-msgstr "Izaberite Mandriva alat:"
-
-#: standalone/drakbug:82
-#, c-format
-msgid ""
-"or Application Name\n"
-"(or Full Path):"
-msgstr ""
-"ili Ime programa\n"
-"(ili puni put):"
-
-#: standalone/drakbug:85
-#, c-format
-msgid "Find Package"
-msgstr "Nađi paket"
-
-#: standalone/drakbug:87
-#, c-format
-msgid "Package: "
-msgstr "Paket:"
-
-#: standalone/drakbug:88
-#, c-format
-msgid "Kernel:"
-msgstr "Kernel:"
-
-#: standalone/drakbug:101
-#, c-format
-msgid ""
-"To submit a bug report, click on the report button. \n"
-"This will open a web browser window on %s where you'll find a form to fill "
-"in. The information displayed above will be transferred to that server. \n"
-"Things useful to include in your report are the output of lspci, kernel "
-"version, and /proc/cpuinfo."
-msgstr ""
-"Da prijavite bug, kliknite na dugme Prijavi.\n"
-"Ovo će otvoriti prozor web browsera na adresi %s gdje ćete pronaći formular "
-"koji treba popuniti. Gore prikazane informacije će biti poslane na taj "
-"server.\n"
-"Korisne stvari koje možete uključiti u vaš izvještaj su izlaz naredbe lspci, "
-"verzija kernela i sadržaj datoteke /proc/cpuinfo."
-
-#: standalone/drakbug:107
-#, c-format
-msgid "Report"
-msgstr "Izvještaj"
-
-#: standalone/drakbug:162
-#, c-format
-msgid "Not installed"
-msgstr "Nije instaliran"
-
-#: standalone/drakbug:174
-#, c-format
-msgid "Package not installed"
-msgstr "Paket nije instaliran"
-
-#: standalone/drakclock:29
-#, c-format
-msgid "DrakClock"
-msgstr "DrakClock"
-
-#: standalone/drakclock:39
-#, c-format
-msgid "not defined"
-msgstr "nije definisana"
-
-#: standalone/drakclock:41
-#, c-format
-msgid "Change Time Zone"
-msgstr "Promijenite vremensku zonu"
-
-#: standalone/drakclock:45
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "Vremenska zona - DrakClock"
-
-#: standalone/drakclock:47
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "GMT - DrakClock"
-
-#: standalone/drakclock:47 standalone/finish-install:57
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Da li je vaš hardverski sat podešen na GMT?"
-
-#: standalone/drakclock:75
-#, c-format
-msgid "Network Time Protocol"
-msgstr "Network Time Protocol"
-
-#: standalone/drakclock:77
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-"Vaš računar može sinhronizovati svoj sat\n"
-"sa vremenskim serverom koristeći NTP"
-
-#: standalone/drakclock:78
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Uključi Network Time Protocol"
-
-#: standalone/drakclock:86
-#, c-format
-msgid "Server:"
-msgstr "Server:"
-
-#: standalone/drakclock:124
-#, c-format
-msgid "Could not synchronize with %s."
-msgstr "Ne mogu sinhronizovati sa %s."
-
-#: standalone/drakclock:146 standalone/drakclock:156
-#, c-format
-msgid "Reset"
-msgstr "Poništi"
-
-#: standalone/drakclock:224
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol\n"
-"\n"
-"Do you want to install ntp?"
-msgstr ""
-"Potrebno je instalirati paket ntp\n"
-" da bi se aktivirao Network Time Protocol\n"
-"\n"
-"Želite li instalirati ntp ?"
-
-#: standalone/drakconnect:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Podešavanje mreže (%d adaptera)"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Interface:"
-msgstr "Interfejs:"
-
-#: standalone/drakconnect:93 standalone/net_monitor:116
-#, c-format
-msgid "Wait please"
-msgstr "Molim sačekajte"
-
-#: standalone/drakconnect:109
-#, c-format
-msgid "Interface"
-msgstr "Interfejs"
-
-#: standalone/drakconnect:109 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "State"
-msgstr "Status"
-
-#: standalone/drakconnect:126
-#, c-format
-msgid "Hostname: "
-msgstr "Ime računara: "
-
-#: standalone/drakconnect:128
-#, c-format
-msgid "Configure hostname..."
-msgstr "Podesi ime računara..."
-
-#: standalone/drakconnect:142 standalone/drakconnect:845
-#, c-format
-msgid "LAN configuration"
-msgstr "Podešavanje LANa"
-
-#: standalone/drakconnect:147
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Podesi Lokalnu mrežu..."
-
-#: standalone/drakconnect:155 standalone/drakconnect:237
-#: standalone/drakconnect:241
-#, c-format
-msgid "Apply"
-msgstr "Primjeni"
-
-#: standalone/drakconnect:188
-#, c-format
-msgid "Manage connections"
-msgstr "Upravljajte vezama"
-
-#: standalone/drakconnect:215
-#, c-format
-msgid "Device selected"
-msgstr "Izabrani uređaj"
-
-#: standalone/drakconnect:296
-#, c-format
-msgid "IP configuration"
-msgstr "Podešavanje IPa"
-
-#: standalone/drakconnect:335
-#, c-format
-msgid "DNS servers"
-msgstr "DNS serveri"
-
-#: standalone/drakconnect:343
-#, c-format
-msgid "Search Domain"
-msgstr "Domene za pretragu"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "static"
-msgstr "statička"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "DHCP"
-msgstr "DHCP"
-
-#: standalone/drakconnect:515
-#, c-format
-msgid "Flow control"
-msgstr "Kontrola toka"
-
-#: standalone/drakconnect:516
-#, c-format
-msgid "Line termination"
-msgstr "Prekid linije"
-
-#: standalone/drakconnect:527
-#, c-format
-msgid "Modem timeout"
-msgstr "Istek vremena modema"
-
-#: standalone/drakconnect:531
-#, c-format
-msgid "Use lock file"
-msgstr "Koristi lock datoteku"
-
-#: standalone/drakconnect:533
-#, c-format
-msgid "Wait for dialup tone before dialing"
-msgstr "Čekaj zvuk slobodne linije prije biranja"
-
-#: standalone/drakconnect:536
-#, c-format
-msgid "Busy wait"
-msgstr "Busy wait"
-
-#: standalone/drakconnect:541
-#, c-format
-msgid "Modem sound"
-msgstr "Zvuk modema"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Enable"
-msgstr "Uključi"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Disable"
-msgstr "Isključi"
-
-#: standalone/drakconnect:593 standalone/harddrake2:50
-#, c-format
-msgid "Media class"
-msgstr "Klasa medija"
-
-#: standalone/drakconnect:594
-#, c-format
-msgid "Module name"
-msgstr "Naziv modula"
-
-#: standalone/drakconnect:595
-#, c-format
-msgid "Mac Address"
-msgstr "MAC adresa"
-
-#: standalone/drakconnect:596 standalone/harddrake2:28
-#: standalone/harddrake2:120
-#, c-format
-msgid "Bus"
-msgstr "Sabirnica"
-
-#: standalone/drakconnect:597 standalone/harddrake2:34
-#, c-format
-msgid "Location on the bus"
-msgstr "Lokacija na sabirnici"
-
-#: standalone/drakconnect:700 standalone/drakgw:311
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Na vašem sistemu nije pronađen nijedan ethernet mrežni adapter. Molim "
-"pokrenite alat za podešavanje hardware-a."
-
-#: standalone/drakconnect:709
-#, c-format
-msgid "Remove a network interface"
-msgstr "Uklonite mrežni interfejs"
-
-#: standalone/drakconnect:713
-#, c-format
-msgid "Select the network interface to remove:"
-msgstr "Izaberite mrežni interfejs za uklanjanje"
-
-#: standalone/drakconnect:745
-#, c-format
-msgid ""
-"An error occurred while deleting the \"%s\" network interface:\n"
-"\n"
-"%s"
-msgstr ""
-"Došlo je do greške prilikom brisanja interfejsa \"%s\":\n"
-"\n"
-"%s"
-
-#: standalone/drakconnect:746
-#, c-format
-msgid ""
-"Congratulations, the \"%s\" network interface has been successfully deleted"
-msgstr "Čestitamo, mrežni interfejs \"%s\" je uspješno obrisan"
-
-#: standalone/drakconnect:761
-#, c-format
-msgid "No IP"
-msgstr "Bez IP"
-
-#: standalone/drakconnect:762
-#, c-format
-msgid "No Mask"
-msgstr "Bez maske"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "up"
-msgstr "podignut"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "down"
-msgstr "spušten"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Connected"
-msgstr "Konektovan"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Not connected"
-msgstr "Nije konektovan"
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Disconnect..."
-msgstr "Prekini konekciju..."
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Connect..."
-msgstr "Konektuj se..."
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Deactivate now"
-msgstr "Zaustavi sada"
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Activate now"
-msgstr "Pokreni sada"
-
-#: standalone/drakconnect:849
-#, c-format
-msgid ""
-"You do not have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nemate nijedan podešen interfejs.\n"
-"Podesite ih prvo klikajući na 'Podesi'"
-
-#: standalone/drakconnect:863
-#, c-format
-msgid "LAN Configuration"
-msgstr "Podešavanje LANa"
-
-#: standalone/drakconnect:875
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: standalone/drakconnect:884
-#, c-format
-msgid "Boot Protocol"
-msgstr "Boot protokol"
-
-#: standalone/drakconnect:885
-#, c-format
-msgid "Started on boot"
-msgstr "Pokrenut na bootu"
-
-#: standalone/drakconnect:921
-#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Interfejs još nije podešen.\n"
-"Pokrenite asistent \"Dodaj interfejs\" iz Mandriva Linux Kontrolnog centra"
-
-#: standalone/drakconnect:975 standalone/net_applet:51
-#, c-format
-msgid ""
-"You do not have any configured Internet connection.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Niste podesili nijednu Internet konekciju.\n"
-"Pokrenite asistent \"%s\" iz Mandriva Linux Kontrolnog centra"
-
-#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: standalone/drakconnect:976 standalone/drakroam:34 standalone/net_applet:52
-#, c-format
-msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
-msgstr "Podesite novi mrežni interfejs (LAN, ISDN, ADSL, ...)"
-
-#: standalone/drakconnect:981
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Podešavanje Internet konekcije"
-
-#: standalone/drakconnect:994
-#, c-format
-msgid "Third DNS server (optional)"
-msgstr "Treći DNS server (opcionalno)"
-
-#: standalone/drakconnect:1016
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Podešavanje Internet konekcije"
-
-#: standalone/drakconnect:1017
-#, c-format
-msgid "Internet access"
-msgstr "Pristup Internetu"
-
-#: standalone/drakconnect:1019 standalone/net_monitor:95
-#, c-format
-msgid "Connection type: "
-msgstr "Tip konekcije: "
-
-#: standalone/drakconnect:1022
-#, c-format
-msgid "Status:"
-msgstr "Status:"
-
-#: standalone/drakconnect:1027
-#, c-format
-msgid "Parameters"
-msgstr "Parametri"
-
-#: standalone/drakedm:40
-#, c-format
-msgid "GDM (GNOME Display Manager)"
-msgstr "GDM (GNOME Display Manager)"
-
-#: standalone/drakedm:41
-#, c-format
-msgid "KDM (KDE Display Manager)"
-msgstr "KDM (KDE Display Manager)"
-
-#: standalone/drakedm:42
-#, c-format
-msgid "XDM (X Display Manager)"
-msgstr "XDM (X Display Manager)"
-
-#: standalone/drakedm:53
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Izbor display managera"
-
-#: standalone/drakedm:54
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"X11 Display Manager vam omogućuje da se grafički prijavite na vaš sistem uz "
-"pokretanje X Window Systema, a podržava i nekoliko različitih X sesija na "
-"vašem lokalnom računaru u isto vrijeme."
-
-#: standalone/drakedm:72
-#, c-format
-msgid "The change is done, do you want to restart the dm service?"
-msgstr "Izmjena je primijenjena, želite li sada restartovati servis dm?"
-
-#: standalone/drakedm:73
-#, c-format
-msgid ""
-"You are going to close all running programs and lose your current session. "
-"Are you really sure that you want to restart the dm service?"
-msgstr ""
-"Sada ćete zatvoriti sve pokrenute programe i izgubiti vašu sesiju. Da li ste "
-"stvarno sigurni da želite restartovati dm servis ?"
-
-#: standalone/drakfont:182
-#, c-format
-msgid "Search installed fonts"
-msgstr "Pretraži instalirane fontove"
-
-#: standalone/drakfont:184
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "Isključi instalirane fontove"
-
-#: standalone/drakfont:207
-#, c-format
-msgid "parse all fonts"
-msgstr "obradi sve fontove"
-
-#: standalone/drakfont:209
-#, c-format
-msgid "No fonts found"
-msgstr "Nije pronađen nijedan font"
-
-#: standalone/drakfont:217 standalone/drakfont:259 standalone/drakfont:326
-#: standalone/drakfont:359 standalone/drakfont:367 standalone/drakfont:393
-#: standalone/drakfont:411 standalone/drakfont:425
-#, c-format
-msgid "done"
-msgstr "gotovo"
-
-#: standalone/drakfont:222
-#, c-format
-msgid "Could not find any font in your mounted partitions"
-msgstr "Ne mogu naći nijedan font na montiranim particijama"
-
-#: standalone/drakfont:257
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Ponovo izaberi ispravne fontove"
-
-#: standalone/drakfont:260
-#, c-format
-msgid "Could not find any font.\n"
-msgstr "Ne mogu naći nijedan font.\n"
-
-#: standalone/drakfont:270
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Pretraži fontove na listi instaliranih"
-
-#: standalone/drakfont:295
-#, c-format
-msgid "%s fonts conversion"
-msgstr "konverzija %s fontova"
-
-#: standalone/drakfont:324
-#, c-format
-msgid "Fonts copy"
-msgstr "Kopiranje fontova"
-
-#: standalone/drakfont:327
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Instalacija True Type fontova"
-
-#: standalone/drakfont:334
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "molim sačekajte tokom ttmkfdir..."
-
-#: standalone/drakfont:335
-#, c-format
-msgid "True Type install done"
-msgstr "Završena True Type instalacija"
-
-#: standalone/drakfont:341 standalone/drakfont:356
-#, c-format
-msgid "type1inst building"
-msgstr "type1inst kreiranje"
-
-#: standalone/drakfont:350
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "Ghostscript referenciranje"
-
-#: standalone/drakfont:360
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Onemogući privremene datoteke"
-
-#: standalone/drakfont:363
-#, c-format
-msgid "Restart XFS"
-msgstr "Restartuj XFS"
-
-#: standalone/drakfont:409 standalone/drakfont:419
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Onemogući datoteke fontova"
-
-#: standalone/drakfont:421
-#, c-format
-msgid "xfs restart"
-msgstr "restart xfs-a"
-
-#: standalone/drakfont:429
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-
-#: standalone/drakfont:473 standalone/drakfont:482
-#, c-format
-msgid "DrakFont"
-msgstr "DrakFont"
-
-#: standalone/drakfont:483
-#, c-format
-msgid "Font List"
-msgstr "Lista fontova"
-
-#: standalone/drakfont:486
-#, c-format
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: standalone/drakfont:492
-#, c-format
-msgid "About"
-msgstr "O programu"
-
-#: standalone/drakfont:494 standalone/drakfont:718
-#, c-format
-msgid "Uninstall"
-msgstr "Deinstaliraj"
-
-#: standalone/drakfont:495
-#, c-format
-msgid "Import"
-msgstr "Uvezi"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakfont:513
-#, c-format
-msgid "Copyright (C) 2001-2006 by Mandriva"
-msgstr ""
-
-#: standalone/drakfont:515
-#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-"This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-
-#: standalone/drakfont:531
-#, c-format
-msgid ""
-"Thanks:\n"
-"\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
-msgstr ""
-"Zahvale:\n"
-"\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Pretvara Windows .pfm datoteke u .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generiše datoteke fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Pretvara ttf font datoteke u afm i pfb fontove\n"
-
-#: standalone/drakfont:550
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Izaberite programe koji će podržavati fontove :"
-
-#: standalone/drakfont:561
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: standalone/drakfont:562
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: standalone/drakfont:563
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
-
-#: standalone/drakfont:564
-#, c-format
-msgid "Generic Printers"
-msgstr "Razni štampači"
-
-#: standalone/drakfont:578
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Izaberite font datoteku ili direktorij i kliknite na 'Dodaj'"
-
-#: standalone/drakfont:579
-#, c-format
-msgid "File Selection"
-msgstr "Izbor datoteka"
-
-#: standalone/drakfont:583
-#, c-format
-msgid "Fonts"
-msgstr "Slova"
-
-#: standalone/drakfont:646
-#, c-format
-msgid "Import fonts"
-msgstr "Uvoz fontova"
-
-#: standalone/drakfont:651
-#, c-format
-msgid "Install fonts"
-msgstr "Instaliraj fontove"
-
-#: standalone/drakfont:681
-#, c-format
-msgid "Are you sure you want to uninstall the following fonts?"
-msgstr ""
-
-#: standalone/drakfont:726
-#, c-format
-msgid "Unselected All"
-msgstr "Ništa izabrano"
-
-#: standalone/drakfont:729
-#, c-format
-msgid "Selected All"
-msgstr "Sve izabrano"
-
-#: standalone/drakfont:743 standalone/drakfont:762
-#, c-format
-msgid "Importing fonts"
-msgstr "Uvoz fontova"
-
-#: standalone/drakfont:747 standalone/drakfont:767
-#, c-format
-msgid "Initial tests"
-msgstr "Probni inicijali"
-
-#: standalone/drakfont:748
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Kopiraj fontove na sistem"
-
-#: standalone/drakfont:749
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Instaliraj i konvertuj fontove"
-
-#: standalone/drakfont:750
-#, c-format
-msgid "Post Install"
-msgstr "Post Install"
-
-#: standalone/drakfont:768
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Pobriši fontove sa mog sistema"
-
-#: standalone/drakfont:769
-#, c-format
-msgid "Post Uninstall"
-msgstr "Post Uninstall"
-
-#: standalone/drakgw:50 standalone/drakvpn:51
-#, c-format
-msgid "Sorry, we support only 2.4 and above kernels."
-msgstr "Žalim, podržavamo samo kernel 2.4 i iznad."
-
-#: standalone/drakgw:75
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Dijeljenje Internet konekcije"
-
-#: standalone/drakgw:79
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Sada ćete konfigurisati vaš računar za dijeljenje Internet konekcije.\n"
-"Sa ovom opcijom, ostali računari na vašoj lokalnoj mreži će moći koristiti "
-"Internet konekciju ovog računara. \n"
-"\n"
-"Prije nego što nastavite, provjerite da li ste podesili vaš mrežni/internet "
-"pristup koristeći drakconnect.\n"
-"\n"
-"Napomena: potreban vam je poseban Mrežni adapter da biste podesili Lokalnu "
-"mrežu (LAN)."
-
-#: standalone/drakgw:95
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Dijeljenje Internet konekcije je već podešeno. Trenutno je\n"
-"aktivno.\n"
-"\n"
-"Šta želite uraditi?"
-
-#: standalone/drakgw:99
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Dijeljenje Internet konekcije je već podešeno. Trenutno je\n"
-"neaktivno (isključeno).\n"
-"\n"
-"Šta želite uraditi?"
-
-#: standalone/drakgw:105
-#, fuzzy, c-format
-msgid "Reconfigure"
-msgstr "rekonfiguriši"
-
-#: standalone/drakgw:145
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Trenutno je samo jedan mrežni adapter podešen na vašem sistemu:\n"
-"\n"
-"%s\n"
-"\n"
-"Sada ću podesiti vašu Lokalnu mrežu sa ovim adapterom."
-
-#: standalone/drakgw:156
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Molim izaberite koji mrežni adapter će biti spojen na vašu Lokalnu mrežu."
-
-#: standalone/drakgw:177
-#, fuzzy, c-format
-msgid "Local Area Network settings"
-msgstr "Lokalna mrežna adresa"
-
-#: standalone/drakgw:180
-#, c-format
-msgid "Local IP address"
-msgstr ""
-
-#: standalone/drakgw:182
-#, c-format
-msgid "The internal domain name"
-msgstr "Interno domensko ime"
-
-#: standalone/drakgw:188
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"Potencijalan konflikt LAN adresa pronađen u trenutnoj konfiguraciji %s!\n"
-
-#: standalone/drakgw:204
-#, fuzzy, c-format
-msgid "Domain Name Server (DNS) configuration"
-msgstr "Podešavanje Terminal servera"
-
-#: standalone/drakgw:208
-#, c-format
-msgid "Use this gateway as domain name server"
-msgstr ""
-
-#: standalone/drakgw:209
-#, c-format
-msgid "The DNS Server IP"
-msgstr "IP adresa DNS servera"
-
-#: standalone/drakgw:236
-#, c-format
-msgid ""
-"DHCP Server Configuration.\n"
-"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you do not know the meaning of an option, simply leave it as it is."
-msgstr ""
-"Podešavanje DHCP servera.\n"
-"\n"
-"Ovdje možete izabrati različite opcije za podešavanje DHCP servera.\n"
-"Ako ne znate značenje neke opcije, jednostavno je ostavite kako jeste."
-
-#: standalone/drakgw:243
-#, fuzzy, c-format
-msgid "Use automatic configuration (DHCP)"
-msgstr "Automatsko ponovno podešavanje"
-
-#: standalone/drakgw:244
-#, c-format
-msgid "The DHCP start range"
-msgstr "Početak DHCP raspona"
-
-#: standalone/drakgw:245
-#, c-format
-msgid "The DHCP end range"
-msgstr "Kraj DHCP raspona"
-
-#: standalone/drakgw:246
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Podrazumjevani lease (u sekundama)"
-
-#: standalone/drakgw:247
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Maksimalni lease (u sekundama)"
-
-#: standalone/drakgw:270
-#, c-format
-msgid "Proxy caching server (SQUID)"
-msgstr ""
-
-#: standalone/drakgw:274
-#, c-format
-msgid "Use this gateway as proxy caching server"
-msgstr ""
-
-#: standalone/drakgw:275
-#, c-format
-msgid "Admin mail"
-msgstr ""
-
-#: standalone/drakgw:276
-#, fuzzy, c-format
-msgid "Visible hostname"
-msgstr "Ime udaljenog računara"
-
-#: standalone/drakgw:277
-#, fuzzy, c-format
-msgid "Proxy port"
-msgstr "Osobina"
-
-#: standalone/drakgw:278
-#, fuzzy, c-format
-msgid "Cache size (MB)"
-msgstr "Veličina cache-a"
-
-#: standalone/drakgw:300
-#, fuzzy, c-format
-msgid "Broadcast printer information"
-msgstr "Informacije o hard disku"
-
-#: standalone/drakgw:317
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Dijeljenje Internet konekcije je sada uključeno."
-
-#: standalone/drakgw:323
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Dijeljenje Internet konekcije je sada isključeno."
-
-#: standalone/drakgw:329
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP) and\n"
-" a Transparent Proxy Cache server (SQUID)."
-msgstr ""
-"Sve je konfigurisano.\n"
-"Sada možete dijeliti Internet konekciju sa ostalim računarima na vašoj "
-"lokalnoj mreži, koristeći automatsku mrežnu konfiguraciju (DHCP) i\n"
-"transparentni proxy cache server (SQUID)."
-
-#: standalone/drakgw:363
-#, c-format
-msgid "Disabling servers..."
-msgstr "Isključujem servere..."
-
-#: standalone/drakgw:377
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Otkrivena konfiguracija firewalla!"
-
-#: standalone/drakgw:378
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-"Upozorenje! Pronađena je postojeća konfiguracija firewalla. Možda će biti "
-"potrebno neko ručno podešavanje nakon instalacije."
-
-#: standalone/drakgw:383
-#, c-format
-msgid "Configuring..."
-msgstr "Podešavam..."
-
-#: standalone/drakgw:384
-#, c-format
-msgid "Configuring firewall..."
-msgstr ""
-
-#: standalone/drakhelp:17
-#, c-format
-msgid ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"\n"
-"Usage: \n"
-msgstr ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"Ovo je slobodan softver i može se distribuirati pod uslovima GNU GPLa.\n"
-"\n"
-"Upotreba: \n"
-
-#: standalone/drakhelp:22
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - prikazuje ovu pomoć \n"
-
-#: standalone/drakhelp:23
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr ""
-" --id <id_label> - učitaj HTML help stranicu koja se odnosi na "
-"id_label\n"
-
-#: standalone/drakhelp:24
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-" --doc <link> - link na drugu web stranicu ( za WM pozdravni "
-"ekran)\n"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "Mandriva Linux Help Center"
-msgstr "Mandriva Linux Centar za pomoć"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "No Help entry for %s\n"
-msgstr ""
-
-#: standalone/drakhosts:98
-#, c-format
-msgid "Please add an host to be able to modify it."
-msgstr ""
-
-#: standalone/drakhosts:108
-#, fuzzy, c-format
-msgid "Please modify information"
-msgstr "Detaljne informacije"
-
-#: standalone/drakhosts:109
-#, fuzzy, c-format
-msgid "Please delete information"
-msgstr "Detaljne informacije"
-
-#: standalone/drakhosts:110
-#, fuzzy, c-format
-msgid "Please add information"
-msgstr "Detaljne informacije"
-
-#: standalone/drakhosts:115
-#, c-format
-msgid "IP address:"
-msgstr "IP adresa:"
-
-#: standalone/drakhosts:116
-#, c-format
-msgid "Host name:"
-msgstr "Naziv računara:"
-
-#: standalone/drakhosts:117
-#, c-format
-msgid "Host Aliases:"
-msgstr ""
-
-#: standalone/drakhosts:123
-#, c-format
-msgid "Please enter a valid IP address."
-msgstr "Molim unesite ispravnu IP adresu."
-
-#: standalone/drakhosts:129
-#, c-format
-msgid "Same IP is already in %s file."
-msgstr ""
-
-#: standalone/drakhosts:197
-#, c-format
-msgid "Host Aliases"
-msgstr ""
-
-#: standalone/drakhosts:237
-#, c-format
-msgid "DrakHOSTS manage hosts definitions"
-msgstr ""
-
-#: standalone/drakhosts:246
-#, c-format
-msgid "Failed to add host."
-msgstr ""
-
-#: standalone/drakhosts:253
-#, c-format
-msgid "Failed to Modify host."
-msgstr ""
-
-#: standalone/drakhosts:260
-#, c-format
-msgid "Failed to remove host."
-msgstr ""
-
-#: standalone/drakids:26
-#, fuzzy, c-format
-msgid "Allowed addresses"
-msgstr "Dozvoli svim korisnicima"
-
-#: standalone/drakids:57
-#, c-format
-msgid "Log"
-msgstr "Dnevnik"
-
-#: standalone/drakids:61
-#, fuzzy, c-format
-msgid "Clear logs"
-msgstr "Obriši sve"
-
-#: standalone/drakids:62 standalone/drakids:67 standalone/net_applet:470
-#, c-format
-msgid "Blacklist"
-msgstr ""
-
-#: standalone/drakids:63 standalone/drakids:80 standalone/net_applet:475
-#, c-format
-msgid "Whitelist"
-msgstr ""
-
-#: standalone/drakids:71
-#, fuzzy, c-format
-msgid "Remove from blacklist"
-msgstr "Ukloni sa LVMa"
-
-#: standalone/drakids:72
-#, c-format
-msgid "Move to whitelist"
-msgstr ""
-
-#: standalone/drakids:84
-#, fuzzy, c-format
-msgid "Remove from whitelist"
-msgstr "Ukloni sa LVMa"
-
-#: standalone/drakids:136 standalone/drakids:145 standalone/drakids:170
-#: standalone/drakids:179 standalone/drakids:189 standalone/drakids:265
-#: standalone/drakroam:182 standalone/net_applet:202 standalone/net_applet:385
-#, fuzzy, c-format
-msgid "Unable to contact daemon"
-msgstr "Ne mogu pristupiti mirroru %s"
-
-#: standalone/drakids:202
-#, c-format
-msgid "Date"
-msgstr "Datum"
-
-#: standalone/drakids:203
-#, fuzzy, c-format
-msgid "Attacker"
-msgstr "Detalji napada"
-
-#: standalone/drakids:204
-#, fuzzy, c-format
-msgid "Attack type"
-msgstr "Vrsta napada: %s"
-
-#: standalone/drakids:205
-#, c-format
-msgid "Service"
-msgstr "Uređaj"
-
-#: standalone/drakids:206 standalone/net_applet:72
-#, c-format
-msgid "Network interface"
-msgstr "Mrežni interface"
-
-#: standalone/draknfs:41
-#, c-format
-msgid "map root user as anonymous"
-msgstr ""
-
-#: standalone/draknfs:42
-#, c-format
-msgid "map all users to anonymous user"
-msgstr ""
-
-#: standalone/draknfs:43
-#, c-format
-msgid "No user UID mapping"
-msgstr ""
-
-#: standalone/draknfs:44
-#, c-format
-msgid "allow real remote root access"
-msgstr ""
-
-#: standalone/draknfs:83
-#, c-format
-msgid "NFS server"
-msgstr "NFS server"
-
-#: standalone/draknfs:83
-#, c-format
-msgid "Restarting/Reloading NFS server..."
-msgstr ""
-
-#: standalone/draknfs:84
-#, c-format
-msgid "Error Restarting/Reloading NFS server"
-msgstr ""
-
-#: standalone/draknfs:100 standalone/draksambashare:203
-#, c-format
-msgid "Directory Selection"
-msgstr ""
-
-#: standalone/draknfs:105 standalone/draksambashare:208
-#, c-format
-msgid "Should be a directory."
-msgstr "Treba biti direktorij."
-
-#: standalone/draknfs:136
-#, c-format
-msgid ""
-"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
-"ways:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">single host:</span> a host either by an "
-"abbreviated name recognized be the resolver, fully qualified domain name, or "
-"an IP address\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">netgroups:</span> NIS netgroups may be given "
-"as @group.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">wildcards:</span> machine names may contain "
-"the wildcard characters * and ?. For instance: *.cs.foo.edu matches all "
-"hosts in the domain cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP networks:</span> you can also export "
-"directories to all hosts on an IP (sub-)network simultaneously. for example, "
-"either `/255.255.252.0' or `/22' appended to the network base address "
-"result.\n"
-msgstr ""
-
-#: standalone/draknfs:151
-#, c-format
-msgid ""
-"<span weight=\"bold\">User ID options</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map root user as anonymous:</span> map "
-"requests from uid/gid 0 to the anonymous uid/gid (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">allow real remote root access:</span> turn "
-"off root squashing. This option is mainly useful for diskless clients "
-"(no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map all users to anonymous user:</span> map "
-"all uids and gids to the anonymous user (all_squash). Useful for NFS-"
-"exported public FTP directories, news spool directories, etc. The opposite "
-"option is no user UID mapping (no_all_squash), which is the default "
-"setting.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid and anongid:</span> explicitly set "
-"the uid and gid of the anonymous account.\n"
-msgstr ""
-
-#: standalone/draknfs:167
-#, c-format
-msgid "Synchronous access:"
-msgstr ""
-
-#: standalone/draknfs:168
-#, c-format
-msgid "Secured Connection:"
-msgstr ""
-
-#: standalone/draknfs:169
-#, c-format
-msgid "Read-Only share:"
-msgstr ""
-
-#: standalone/draknfs:171
-#, c-format
-msgid "<span weight=\"bold\">Advanced Options</span>"
-msgstr ""
-
-#: standalone/draknfs:172
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> this option requires that "
-"requests originate on an internet port less than IPPORT_RESERVED (1024). "
-"This option is on by default."
-msgstr ""
-
-#: standalone/draknfs:173
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> allow either only read or both "
-"read and write requests on this NFS volume. The default is to disallow any "
-"request which changes the filesystem. This can also be made explicit by "
-"using this option."
-msgstr ""
-
-#: standalone/draknfs:174
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> disallows the NFS server to "
-"violate the NFS protocol and to reply to requests before any changes made by "
-"these requests have been committed to stable storage (e.g. disc drive)."
-msgstr ""
-
-#: standalone/draknfs:306
-#, c-format
-msgid "Please add an NFS share to be able to modify it."
-msgstr ""
-
-#: standalone/draknfs:378
-#, fuzzy, c-format
-msgid "Advanced Options Help"
-msgstr "Napredno podešavanje"
-
-#: standalone/draknfs:389
-#, c-format
-msgid "NFS directory"
-msgstr ""
-
-#: standalone/draknfs:391 standalone/draksambashare:592
-#: standalone/draksambashare:771
-#, c-format
-msgid "Directory:"
-msgstr "Direktorij:"
-
-#: standalone/draknfs:394
-#, c-format
-msgid "Host access"
-msgstr ""
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Access:"
-msgstr "Pristup:"
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Hosts Access"
-msgstr ""
-
-#: standalone/draknfs:399
-#, c-format
-msgid "User ID Mapping"
-msgstr ""
-
-#: standalone/draknfs:401
-#, c-format
-msgid "User ID:"
-msgstr "ID korisnika:"
-
-#: standalone/draknfs:401
-#, c-format
-msgid "Help User ID"
-msgstr ""
-
-#: standalone/draknfs:402
-#, c-format
-msgid "Anonymous user ID:"
-msgstr ""
-
-#: standalone/draknfs:403
-#, c-format
-msgid "Anonymous Group ID:"
-msgstr ""
-
-#: standalone/draknfs:444
-#, c-format
-msgid "Can't create this directory."
-msgstr ""
-
-#: standalone/draknfs:447
-#, c-format
-msgid "You must specify hosts access."
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Share Directory"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Hosts Wildcard"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "General Options"
-msgstr "Opšte opcije"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Custom Options"
-msgstr ""
-
-#: standalone/draknfs:539 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Please enter a directory to share."
-msgstr ""
-
-#: standalone/draknfs:546
-#, c-format
-msgid "Please use the modify button to set right access."
-msgstr ""
-
-#: standalone/draknfs:600
-#, c-format
-msgid "DrakNFS manage NFS shares"
-msgstr ""
-
-#: standalone/draknfs:609
-#, c-format
-msgid "Failed to add NFS share."
-msgstr ""
-
-#: standalone/draknfs:616
-#, c-format
-msgid "Failed to Modify NFS share."
-msgstr ""
-
-#: standalone/draknfs:623
-#, c-format
-msgid "Failed to remove an NFS share."
-msgstr ""
-
-#: standalone/drakperm:21
-#, c-format
-msgid "System settings"
-msgstr "Sistemske postavke"
-
-#: standalone/drakperm:22
-#, c-format
-msgid "Custom settings"
-msgstr "Vlastite postavke"
-
-#: standalone/drakperm:23
-#, c-format
-msgid "Custom & system settings"
-msgstr "Vlastito i sistemske postavke"
-
-#: standalone/drakperm:43
-#, c-format
-msgid "Editable"
-msgstr "Izmjenljivo"
-
-#: standalone/drakperm:48 standalone/drakperm:323
-#: standalone/draksambashare:101
-#, c-format
-msgid "Path"
-msgstr "Staza"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "User"
-msgstr "Korisnik"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "Group"
-msgstr "Grupa"
-
-#: standalone/drakperm:48 standalone/drakperm:335
-#, c-format
-msgid "Permissions"
-msgstr "Privilegije"
-
-#: standalone/drakperm:57
-#, c-format
-msgid "Add a new rule"
-msgstr ""
-
-#: standalone/drakperm:64 standalone/drakperm:99 standalone/drakperm:124
-#, c-format
-msgid "Edit current rule"
-msgstr "Izmijeni trenutno pravilo"
-
-#: standalone/drakperm:106
-#, c-format
-msgid ""
-"Here you can see files to use in order to fix permissions, owners, and "
-"groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
-msgstr ""
-"Ovdje možete pregledati datoteke koje se koriste radi promjene privilegija, "
-"vlasnika i grupa putem msec-a.\n"
-"Možete također stvoriti vaša vlastita pravila koja će prepisati ranije "
-"podešena pravila."
-
-#: standalone/drakperm:109
-#, c-format
-msgid ""
-"The current security level is %s.\n"
-"Select permissions to see/edit"
-msgstr ""
-"Trenutni nivo sigurnisti je %s.\n"
-"Izaberite koje privilegije želite vidjeti/izmijeniti"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Up"
-msgstr "Gore"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Pomjeri izabrano pravilo za jedan nivo gore"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Down"
-msgstr "Dolje"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Pomjeri izabrano pravilo dole za jedan nivo"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a rule"
-msgstr "Dodaj pravilo"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Dodaj novo pravilo na kraj"
-
-#: standalone/drakperm:123
-#, c-format
-msgid "Delete selected rule"
-msgstr "Obriši izabrano pravilo"
-
-#: standalone/drakperm:242
-#, c-format
-msgid "browse"
-msgstr "pregledaj"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "user"
-msgstr "korisnik"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "group"
-msgstr "grupa"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "other"
-msgstr "ostali"
-
-#: standalone/drakperm:252
-#, c-format
-msgid "Read"
-msgstr "Čitaj"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:255
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Omogući \"%s\" da čita datoteku"
-
-#: standalone/drakperm:259
-#, c-format
-msgid "Write"
-msgstr "Zapiši"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:262
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Omogući \"%s\" da piše u datoteku"
-
-#: standalone/drakperm:266
-#, c-format
-msgid "Execute"
-msgstr "Izvrši"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:269
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Uključite \"%s\" da izvršite datoteku"
-
-#: standalone/drakperm:272
-#, c-format
-msgid "Sticky-bit"
-msgstr "Sticky-bit"
-
-#: standalone/drakperm:272
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Koristi se za direktorij:\n"
-" samo vlasnik tog direktorija ili datoteke u ovom direktoriju ga može "
-"obrisati"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Koristi id vlasnika za izvršavanje"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Use group id for execution"
-msgstr "Koristi id grupe za izvršavanje"
-
-#: standalone/drakperm:292 standalone/drakxtv:89
-#, c-format
-msgid "User:"
-msgstr "Korisnik :"
-
-#: standalone/drakperm:294
-#, c-format
-msgid "Group:"
-msgstr "Grupa :"
-
-#: standalone/drakperm:298
-#, c-format
-msgid "Current user"
-msgstr "Trenutni korisnik"
-
-#: standalone/drakperm:299
-#, c-format
-msgid "When checked, owner and group will not be changed"
-msgstr "Kada je uključeno, vlasnik i grupa se ne mogu promijeniti"
-
-#: standalone/drakperm:309
-#, c-format
-msgid "Path selection"
-msgstr "Izbor staze"
-
-#: standalone/drakperm:329
-#, c-format
-msgid "Property"
-msgstr "Osobina"
-
-#: standalone/drakperm:380
-#, c-format
-msgid ""
-"The first character of the path must be a slash (\"/\"):\n"
-"\"%s\""
-msgstr ""
-
-#: standalone/drakperm:390
-#, c-format
-msgid "Both the username and the group must valid!"
-msgstr ""
-
-#: standalone/drakperm:391
-#, c-format
-msgid "User: %s"
-msgstr ""
-
-#: standalone/drakperm:392
-#, c-format
-msgid "Group: %s"
-msgstr ""
-
-#: standalone/drakroam:33
-#, c-format
-msgid ""
-"You do not have any wireless interface.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakroam:48
-#, c-format
-msgid "SSID"
-msgstr ""
-
-#: standalone/drakroam:49
-#, c-format
-msgid "Signal strength"
-msgstr "Jačina signala:"
-
-#: standalone/drakroam:51
-#, c-format
-msgid "Encryption"
-msgstr "Enkripcija"
-
-#: standalone/drakroam:112
-#, c-format
-msgid "Please enter settings for wireless network \"%s\""
-msgstr ""
-
-#: standalone/drakroam:123
-#, c-format
-msgid "DNS server"
-msgstr "DNS server"
-
-#: standalone/drakroam:228
-#, c-format
-msgid "Connect"
-msgstr "Spoji se"
-
-#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/drakroam:229 standalone/printerdrake:251
-#, c-format
-msgid "Refresh"
-msgstr "Osvježi"
-
-#: standalone/draksambashare:68
-#, fuzzy, c-format
-msgid "Share directory"
-msgstr "Nema tog direktorija"
-
-#: standalone/draksambashare:69 standalone/draksambashare:102
-#, c-format
-msgid "Comment"
-msgstr "Komentar"
-
-#: standalone/draksambashare:70 standalone/draksambashare:103
-#, c-format
-msgid "Browseable"
-msgstr "PreTrazno"
-
-#: standalone/draksambashare:71
-#, c-format
-msgid "Public"
-msgstr "Javni"
-
-#: standalone/draksambashare:72 standalone/draksambashare:108
-#, c-format
-msgid "Writable"
-msgstr "Mogućnost pisanja"
-
-#: standalone/draksambashare:73 standalone/draksambashare:149
-#, fuzzy, c-format
-msgid "Create mask"
-msgstr "Kreiraj"
-
-#: standalone/draksambashare:74 standalone/draksambashare:150
-#, fuzzy, c-format
-msgid "Directory mask"
-msgstr "Direktorij sa backupom"
-
-#: standalone/draksambashare:75
-#, fuzzy, c-format
-msgid "Read list"
-msgstr "Čitaj"
-
-#: standalone/draksambashare:76 standalone/draksambashare:109
-#: standalone/draksambashare:606
-#, fuzzy, c-format
-msgid "Write list"
-msgstr "Zapiši"
-
-#: standalone/draksambashare:77 standalone/draksambashare:141
-#, fuzzy, c-format
-msgid "Admin users"
-msgstr "Dodaj korisnika"
-
-#: standalone/draksambashare:78 standalone/draksambashare:142
-#, fuzzy, c-format
-msgid "Valid users"
-msgstr "Dodaj korisnika"
-
-#: standalone/draksambashare:79
-#, fuzzy, c-format
-msgid "Inherit Permissions"
-msgstr "Privilegije"
-
-#: standalone/draksambashare:80 standalone/draksambashare:143
-#, fuzzy, c-format
-msgid "Hide dot files"
-msgstr "Sakrij datoteke"
-
-#: standalone/draksambashare:82 standalone/draksambashare:148
-#, fuzzy, c-format
-msgid "Preserve case"
-msgstr "Opcije"
-
-#: standalone/draksambashare:83
-#, fuzzy, c-format
-msgid "Force create mode"
-msgstr "Model vašeg štampača"
-
-#: standalone/draksambashare:84
-#, fuzzy, c-format
-msgid "Force group"
-msgstr "PFS grupa"
-
-#: standalone/draksambashare:85 standalone/draksambashare:147
-#, fuzzy, c-format
-msgid "Default case"
-msgstr "Korisnik"
-
-#: standalone/draksambashare:100
-#, c-format
-msgid "Printer name"
-msgstr "Ime štampača:"
-
-#: standalone/draksambashare:104 standalone/draksambashare:598
-#, c-format
-msgid "Printable"
-msgstr ""
-
-#: standalone/draksambashare:105
-#, c-format
-msgid "Print Command"
-msgstr ""
-
-#: standalone/draksambashare:106
-#, c-format
-msgid "LPQ command"
-msgstr ""
-
-#: standalone/draksambashare:107
-#, c-format
-msgid "Guest ok"
-msgstr ""
-
-#: standalone/draksambashare:110 standalone/draksambashare:151
-#: standalone/draksambashare:607
-#, fuzzy, c-format
-msgid "Inherit permissions"
-msgstr "Privilegije"
-
-#: standalone/draksambashare:112
-#, c-format
-msgid "Create mode"
-msgstr ""
-
-#: standalone/draksambashare:113
-#, c-format
-msgid "Use client driver"
-msgstr ""
-
-#: standalone/draksambashare:139
-#, fuzzy, c-format
-msgid "Read List"
-msgstr "Pobriši listu"
-
-#: standalone/draksambashare:140
-#, fuzzy, c-format
-msgid "Write List"
-msgstr "Zapiši"
-
-#: standalone/draksambashare:145
-#, fuzzy, c-format
-msgid "Force Group"
-msgstr "Grupa"
-
-#: standalone/draksambashare:146
-#, c-format
-msgid "Force create group"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid "About Draksambashare"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid ""
-"Mandriva Linux \n"
-"Release: %s\n"
-"Author: Antoine Ginies\n"
-"\n"
-"This is a simple tool to easily manage Samba configuration."
-msgstr ""
-
-#: standalone/draksambashare:186
-#, fuzzy, c-format
-msgid "Samba server"
-msgstr "Samba server"
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Restarting/Reloading Samba server..."
-msgstr ""
-
-#: standalone/draksambashare:187
-#, c-format
-msgid "Error Restarting/Reloading Samba server"
-msgstr ""
-
-#: standalone/draksambashare:372
-#, c-format
-msgid "Add a Samba share"
-msgstr ""
-
-#: standalone/draksambashare:375
-#, c-format
-msgid "Goal of this wizard is to easily create a new Samba share."
-msgstr ""
-
-#: standalone/draksambashare:377
-#, c-format
-msgid "Name of the share:"
-msgstr "Naziv podijele :"
-
-#: standalone/draksambashare:378 standalone/draksambashare:591
-#: standalone/draksambashare:772
-#, c-format
-msgid "Comment:"
-msgstr "Komentar:"
-
-#: standalone/draksambashare:379
-#, c-format
-msgid "Path:"
-msgstr "Staza:"
-
-#: standalone/draksambashare:384
-#, c-format
-msgid ""
-"Share with the same name already exist or share name empty, please choose "
-"another name."
-msgstr ""
-
-#: standalone/draksambashare:388 standalone/draksambashare:394
-#, c-format
-msgid "Can't create the directory, please enter a correct path."
-msgstr ""
-
-#: standalone/draksambashare:391 standalone/draksambashare:627
-#: standalone/draksambashare:794
-#, fuzzy, c-format
-msgid "Please enter a Comment for this share."
-msgstr "Molimo unesite parametre bežične veze za ovu karticu:"
-
-#: standalone/draksambashare:422
-#, c-format
-msgid ""
-"The wizard successfully added the Samba share. Now just double click on it "
-"in treeview to modify it"
-msgstr ""
-
-#: standalone/draksambashare:437
-#, c-format
-msgid "pdf-gen - a PDF generator"
-msgstr ""
-
-#: standalone/draksambashare:438
-#, c-format
-msgid "printers - all printers available"
-msgstr ""
-
-#: standalone/draksambashare:442
-#, c-format
-msgid "Add Special Printer share"
-msgstr ""
-
-#: standalone/draksambashare:445
-#, c-format
-msgid ""
-"Goal of this wizard is to easily create a new special printer Samba share."
-msgstr ""
-
-#: standalone/draksambashare:453
-#, c-format
-msgid "A PDF generator already exists."
-msgstr ""
-
-#: standalone/draksambashare:477
-#, c-format
-msgid "Printers and print$ already exist."
-msgstr ""
-
-#: standalone/draksambashare:528
-#, c-format
-msgid "The wizard successfully added the printer Samba share"
-msgstr ""
-
-#: standalone/draksambashare:551
-#, c-format
-msgid "Please add or select a Samba printer share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:587
-#, c-format
-msgid "Printer share"
-msgstr ""
-
-#: standalone/draksambashare:590
-#, c-format
-msgid "Printer name:"
-msgstr "Ime štampača:"
-
-#: standalone/draksambashare:596 standalone/draksambashare:777
-#, c-format
-msgid "Writable:"
-msgstr "Mogućnost pisanja :"
-
-#: standalone/draksambashare:597 standalone/draksambashare:778
-#, c-format
-msgid "Browseable:"
-msgstr "PreTrazno :"
-
-#: standalone/draksambashare:602
-#, c-format
-msgid "Advanced options"
-msgstr ""
-
-#: standalone/draksambashare:604
-#, c-format
-msgid "Printer access"
-msgstr ""
-
-#: standalone/draksambashare:608
-#, c-format
-msgid "Guest ok:"
-msgstr ""
-
-#: standalone/draksambashare:609
-#, c-format
-msgid "Create mode:"
-msgstr ""
-
-#: standalone/draksambashare:613
-#, c-format
-msgid "Printer command"
-msgstr ""
-
-#: standalone/draksambashare:615
-#, c-format
-msgid "Print command:"
-msgstr "Naredba za štampu:"
-
-#: standalone/draksambashare:616
-#, c-format
-msgid "LPQ command:"
-msgstr ""
-
-#: standalone/draksambashare:617
-#, c-format
-msgid "Printing:"
-msgstr "Štampanje:"
-
-#: standalone/draksambashare:633
-#, c-format
-msgid "create mode should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:695
-#, c-format
-msgid "DrakSamba entry"
-msgstr ""
-
-#: standalone/draksambashare:700
-#, c-format
-msgid "Please add or select a Samba share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:723
-#, fuzzy, c-format
-msgid "Samba user access"
-msgstr "Samba server"
-
-#: standalone/draksambashare:731
-#, fuzzy, c-format
-msgid "Mask options"
-msgstr "Osnovne opcije"
-
-#: standalone/draksambashare:745
-#, c-format
-msgid "Display options"
-msgstr "Prikaži opcije:"
-
-#: standalone/draksambashare:767
-#, fuzzy, c-format
-msgid "Samba share directory"
-msgstr "Nema tog direktorija"
-
-#: standalone/draksambashare:770
-#, c-format
-msgid "Share name:"
-msgstr "Share naziv :"
-
-#: standalone/draksambashare:776
-#, c-format
-msgid "Public:"
-msgstr "Javni :"
-
-#: standalone/draksambashare:800
-#, c-format
-msgid ""
-"Create mask, create mode and directory mask should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:807
-#, c-format
-msgid "Please create this Samba user: %s"
-msgstr ""
-
-#: standalone/draksambashare:930
-#, c-format
-msgid "User information"
-msgstr ""
-
-#: standalone/draksambashare:932
-#, c-format
-msgid "User name:"
-msgstr "Korisničko ime:"
-
-#: standalone/draksambashare:933
-#, c-format
-msgid "Password:"
-msgstr "Šifra:"
-
-#: standalone/draksambashare:1133
-#, c-format
-msgid "Failed to add Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1142
-#, c-format
-msgid "Failed to Modify Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1151
-#, c-format
-msgid "Failed to remove a Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1158
-#, c-format
-msgid "File share"
-msgstr ""
-
-#: standalone/draksambashare:1166
-#, c-format
-msgid "Add printers"
-msgstr ""
-
-#: standalone/draksambashare:1172
-#, c-format
-msgid "Failed to add printers."
-msgstr ""
-
-#: standalone/draksambashare:1181
-#, c-format
-msgid "Failed to Modify."
-msgstr ""
-
-#: standalone/draksambashare:1190
-#, c-format
-msgid "Failed to remove."
-msgstr ""
-
-#: standalone/draksambashare:1197
-#, c-format
-msgid "Printers"
-msgstr "Štampači"
-
-#: standalone/draksambashare:1205
-#, c-format
-msgid "Change password"
-msgstr ""
-
-#: standalone/draksambashare:1210
-#, c-format
-msgid "Failed to change user password."
-msgstr ""
-
-#: standalone/draksambashare:1218
-#, c-format
-msgid "Failed to add user."
-msgstr ""
-
-#: standalone/draksambashare:1221
-#, c-format
-msgid "Delete user"
-msgstr ""
-
-#: standalone/draksambashare:1230
-#, c-format
-msgid "Failed to delete user."
-msgstr ""
-
-#: standalone/draksambashare:1242
-#, c-format
-msgid "Samba Users"
-msgstr "Samba Korisnici"
-
-#: standalone/draksambashare:1251
-#, c-format
-msgid "DrakSamba manage Samba shares"
-msgstr ""
-
-#: standalone/draksec:49
-#, c-format
-msgid "ALL"
-msgstr "SVE"
-
-#: standalone/draksec:50
-#, c-format
-msgid "LOCAL"
-msgstr "LOCAL"
-
-#: standalone/draksec:51
-#, c-format
-msgid "NONE"
-msgstr "NIŠTA"
-
-#: standalone/draksec:53 standalone/net_applet:480
-#, c-format
-msgid "Ignore"
-msgstr "Ignoriši"
-
-#. -PO: Do not alter the <span ..> and </span> tags.
-#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
-#: standalone/draksec:103
-#, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Administrator</span>' is the one who "
-"will receive security alerts if the\n"
-"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a "
-"username or an email.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Level</span>' menu allows you to select "
-"one of the six preconfigured security levels\n"
-"provided with msec. These levels range from '<span weight=\"bold\">poor</"
-"span>' security and ease of use, to\n"
-"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive "
-"server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
-"very\n"
-"easy to use security level. It should only be used for machines not "
-"connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
-"security\n"
-"recommended for a computer that will be used to connect to the Internet as "
-"a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
-"enough\n"
-"to use the system as a server which can accept connections from many "
-"clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower "
-"level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-"Ovdje možete podesiti nivo sigurnosti i administratora ovog računara.\n"
-"\n"
-"\n"
-"'<span weight=\"bold\">Sigurnosni administrator</span>' je onaj koji će "
-"dobijati sigurnosna upozorenja\n"
-"ako je aktivna opcija '<span weight=\"bold\">Sigurnosna upozorenja</span>'. "
-"Ovo može biti korisničko\n"
-"ime ili e-mail.\n"
-"\n"
-"\n"
-"Meni '<span weight=\"bold\">Nivo sigurnosti</span>' vam omogućuje da "
-"izaberete jedan od šest gotovih\n"
-"nivoa sigurnosti koje pruža msec. Ovi nivoi imaju raspon od '<span weight="
-"\"bold\">slabe</span>'\n"
-"sigurnosti i jednostavnog korištenja, do '<span weight=\"bold\">paranoidnih</"
-"span>' postavki, prikladnih za\n"
-"vrlo osjetljive serverske primjene:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Slab</span>: Ovo je potpuno neupotrebljiv\n"
-"nivo sigurnosti, ali lagan za upotrebu. Treba ga koristiti samo na "
-"računarima\n"
-"koji nisu spojeni na mrežu i koji nisu dostupni svakome.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standardan</span>: Ovo je standardna\n"
-"sigurnost koja se preporučuje za računar koji će biti korišten za spajanje\n"
-"na Internet kao klijent.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Visok</span>: Postoje već neka\n"
-"ograničenja, a automatizovane provjere se vrše svake noći.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Viši</span>: Sigurnost je sada dovoljno\n"
-"visoka da bi se sistem mogao koristiti kao server koji prihvata konekcije\n"
-"od mnogih klijenata. Ako je vaš računar samo klijent na Internetu, trebali\n"
-"biste izabrati niži nivo.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoičan</span>: Ovo je slično kao\n"
-"prethodni nivo, ali je sistem potpuno zatvoren i sigurnosne mogućnosti\n"
-"su na maksimumu."
-
-#: standalone/draksec:156 standalone/harddrake2:207
-#, c-format
-msgid ""
-"Description of the fields:\n"
-"\n"
-msgstr ""
-"Opis polja:\n"
-"\n"
-
-#: standalone/draksec:170
-#, c-format
-msgid "(default value: %s)"
-msgstr " (default vrijednost: %s)"
-
-#: standalone/draksec:212
-#, c-format
-msgid "Security Level:"
-msgstr "Nivo sigurnosti:"
-
-#: standalone/draksec:219
-#, c-format
-msgid "Security Administrator:"
-msgstr "Sigurnosni administrator:"
-
-#: standalone/draksec:221
-#, c-format
-msgid "Basic options"
-msgstr "Osnovne opcije"
-
-#: standalone/draksec:235
-#, c-format
-msgid "Network Options"
-msgstr "Mrežne opcije"
-
-#: standalone/draksec:235
-#, c-format
-msgid "System Options"
-msgstr "Sistemske opcije"
-
-#: standalone/draksec:270
-#, c-format
-msgid "Periodic Checks"
-msgstr "Periodične provjere"
-
-#: standalone/draksec:300
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Molim sačekajte, podešavam nivo sigurnosti..."
-
-#: standalone/draksec:306
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Molim sačekajte, podešavam sigurnosne opcije..."
-
-#: standalone/draksound:47
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Nije izabrana zvučna kartica!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/draksound:50
-#, c-format
-msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"Nije pronađena nijedna zvučna kartica na vašoj mašini. Molim provjerite da "
-"li je ispravno spojena zvučna kartica koja je podržana pod Linuxom.\n"
-"\n"
-"\n"
-"Možete posjetiti našu bazu hardvera na:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/draksound:57
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or "
-"the sndconfig program. Just type \"alsaconf\" or \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Napomena: ako imate ISA PnP zvučnu karticu, moraćete koristiti alsaconf ili "
-"sndconfig program. Samo ukucajte \"alsaconf\" ili \"sndconfig\" na konzoli."
-
-#: standalone/draksplash:30
-#, c-format
-msgid "x coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:31
-#, c-format
-msgid "y coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:32
-#, c-format
-msgid "text box width"
-msgstr ""
-
-#: standalone/draksplash:33
-#, c-format
-msgid "text box height"
-msgstr "visina tekst polja"
-
-#: standalone/draksplash:34
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"koordinate progresne trake x\n"
-"tj. njenog lijevog ugla"
-
-#: standalone/draksplash:35
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-"koordinate progresne trake y\n"
-"tj. njenog lijevog ugla"
-
-#: standalone/draksplash:36
-#, c-format
-msgid "the width of the progress bar"
-msgstr "širina progresne trake"
-
-#: standalone/draksplash:37
-#, c-format
-msgid "the height of the progress bar"
-msgstr "visina progresne trake"
-
-#: standalone/draksplash:38
-#, c-format
-msgid "x coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:39
-#, c-format
-msgid "y coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:40
-#, c-format
-msgid "text box transparency"
-msgstr ""
-
-#: standalone/draksplash:41
-#, c-format
-msgid "progress box transparency"
-msgstr ""
-
-#: standalone/draksplash:42
-#, c-format
-msgid "text size"
-msgstr ""
-
-#: standalone/draksplash:59
-#, c-format
-msgid "Choose progress bar color 1"
-msgstr ""
-
-#: standalone/draksplash:60
-#, c-format
-msgid "Choose progress bar color 2"
-msgstr ""
-
-#: standalone/draksplash:61
-#, c-format
-msgid "Choose progress bar background"
-msgstr ""
-
-#: standalone/draksplash:62
-#, c-format
-msgid "Gradient type"
-msgstr ""
-
-#: standalone/draksplash:63
-#, c-format
-msgid "Choose text color"
-msgstr ""
-
-#: standalone/draksplash:65 standalone/draksplash:72
-#, c-format
-msgid "Choose picture"
-msgstr ""
-
-#: standalone/draksplash:66
-#, c-format
-msgid "Silent bootsplash"
-msgstr ""
-
-#: standalone/draksplash:69
-#, c-format
-msgid "Choose text zone color"
-msgstr ""
-
-#: standalone/draksplash:70
-#, c-format
-msgid "Text color"
-msgstr "Boja teksta"
-
-#: standalone/draksplash:71
-#, c-format
-msgid "Background color"
-msgstr "Boja pozadine"
-
-#: standalone/draksplash:73
-#, c-format
-msgid "Verbose bootsplash"
-msgstr ""
-
-#: standalone/draksplash:75
-#, c-format
-msgid "Display logo on Console"
-msgstr "Prikaži logo na konzoli"
-
-#: standalone/draksplash:78
-#, c-format
-msgid "Console bootsplash"
-msgstr ""
-
-#: standalone/draksplash:84
-#, c-format
-msgid "Theme name"
-msgstr "Naziv teme"
-
-#: standalone/draksplash:87
-#, c-format
-msgid "final resolution"
-msgstr "krajnja rezolucija"
-
-#: standalone/draksplash:92
-#, c-format
-msgid "Save theme"
-msgstr "Snimi temu"
-
-#: standalone/draksplash:153
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "snimam Bootsplash temu..."
-
-#: standalone/draksplash:162
-#, c-format
-msgid "Unable to load image file %s"
-msgstr ""
-
-#: standalone/draksplash:173
-#, c-format
-msgid "choose image"
-msgstr "izaberite image"
-
-#: standalone/draksplash:188
-#, c-format
-msgid "Color selection"
-msgstr ""
-
-#: standalone/drakups:71
-#, c-format
-msgid "Connected through a serial port or an usb cable"
-msgstr "Spojen putem serijskog porta ili USB kabla"
-
-#: standalone/drakups:78
-#, c-format
-msgid "Add an UPS device"
-msgstr "Dodaj UPS uređaj"
-
-#: standalone/drakups:81
-#, c-format
-msgid ""
-"Welcome to the UPS configuration utility.\n"
-"\n"
-"Here, you'll add a new UPS to your system.\n"
-msgstr ""
-"Dobro došli u program za podešavanje UPSa.\n"
-"\n"
-"Ovdje možete dodati novi UPS na vaš sistem.\n"
-
-#: standalone/drakups:88
-#, c-format
-msgid ""
-"We're going to add an UPS device.\n"
-"\n"
-"Do you want to autodetect UPS devices connected to this machine or to "
-"manually select them?"
-msgstr ""
-"Sada ćemo dodati UPS uređaj.\n"
-"\n"
-"Želite li da probam automatski otkriti UPS uređaje spojene na ovaj računar "
-"ili da ih ručno izaberete?"
-
-#: standalone/drakups:91
-#, c-format
-msgid "Autodetection"
-msgstr "Auto prepoznavanje"
-
-#: standalone/drakups:99 standalone/harddrake2:375
-#, c-format
-msgid "Detection in progress"
-msgstr "Detekcija u toku"
-
-#: standalone/drakups:119
-#, c-format
-msgid "The wizard successfully added the following UPS devices:"
-msgstr "Čarobnjak je uspješno dodao sljedeće UPS uređaje:"
-
-#: standalone/drakups:121
-#, c-format
-msgid "No new UPS devices was found"
-msgstr "Nije pronađen nijedan novi UPS uređaj"
-
-#: standalone/drakups:126 standalone/drakups:138
-#, c-format
-msgid "UPS driver configuration"
-msgstr "Podešavanje UPS drajvera"
-
-#: standalone/drakups:126
-#, c-format
-msgid "Please select your UPS model."
-msgstr "Molim izaberite vaš UPS model."
-
-#: standalone/drakups:127
-#, c-format
-msgid "Manufacturer / Model:"
-msgstr "Proizvođač / model:"
-
-#: standalone/drakups:138
-#, c-format
-msgid ""
-"We are configuring the \"%s\" UPS from \"%s\".\n"
-"Please fill in its name, its driver and its port."
-msgstr ""
-"Sada podešavamo UPS \"%s\" od \"%s\".\n"
-"Molim unesite njegovo ime, drajver i port."
-
-#: standalone/drakups:143
-#, c-format
-msgid "Name:"
-msgstr "Ime:"
-
-#: standalone/drakups:143
-#, c-format
-msgid "The name of your ups"
-msgstr "Naziv vašeg UPSa"
-
-#: standalone/drakups:144
-#, c-format
-msgid "The driver that manages your ups"
-msgstr "Drajver koji upravlja vašim UPSom"
-
-#: standalone/drakups:145
-#, c-format
-msgid "Port:"
-msgstr "Port:"
-
-#: standalone/drakups:147
-#, c-format
-msgid "The port on which is connected your ups"
-msgstr "Port na koji je spojen vaš UPS"
-
-#: standalone/drakups:157
-#, c-format
-msgid "The wizard successfully configured the new \"%s\" UPS device."
-msgstr "Čarobnjak je uspješno podesio novi \"%s\" UPS uređaj."
-
-#: standalone/drakups:248
-#, c-format
-msgid "UPS devices"
-msgstr "UPS uređaji"
-
-#: standalone/drakups:249 standalone/drakups:268 standalone/drakups:284
-#: standalone/harddrake2:85 standalone/harddrake2:111
-#: standalone/harddrake2:118
-#, c-format
-msgid "Name"
-msgstr "Ime"
-
-#: standalone/drakups:267
-#, c-format
-msgid "UPS users"
-msgstr "UPS korisnici"
-
-#: standalone/drakups:283
-#, c-format
-msgid "Access Control Lists"
-msgstr "Liste kontrole pristupa"
-
-#: standalone/drakups:284
-#, c-format
-msgid "IP mask"
-msgstr "IP maska"
-
-#: standalone/drakups:296
-#, c-format
-msgid "Rules"
-msgstr "Pravila"
-
-#: standalone/drakups:297
-#, c-format
-msgid "Action"
-msgstr "Akcija"
-
-#: standalone/drakups:297 standalone/drakvpn:1132 standalone/harddrake2:82
-#, c-format
-msgid "Level"
-msgstr "Nivo"
-
-#: standalone/drakups:297
-#, c-format
-msgid "ACL name"
-msgstr "Naziv ACLa"
-
-#: standalone/drakups:327 standalone/drakups:331 standalone/drakups:340
-#, c-format
-msgid "DrakUPS"
-msgstr "DrakUPS"
-
-#: standalone/drakups:337
-#, c-format
-msgid "Welcome to the UPS configuration tools"
-msgstr "Dobrodošli u alate za podešavanje UPSa"
-
-#: standalone/drakvpn:73
-#, c-format
-msgid "DrakVPN"
-msgstr "DrakVPN"
-
-#: standalone/drakvpn:95
-#, c-format
-msgid "The VPN connection is enabled."
-msgstr "VPN veza je aktivirana."
-
-#: standalone/drakvpn:96
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Podešavanje VPN veze je već završeno.\n"
-"\n"
-"Ona je trenutno aktivna.\n"
-"\n"
-"Šta želite uraditi?"
-
-#: standalone/drakvpn:101
-#, c-format
-msgid "disable"
-msgstr "isključi"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127
-#, c-format
-msgid "reconfigure"
-msgstr "rekonfiguriši"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127 standalone/drakvpn:362
-#: standalone/drakvpn:721
-#, c-format
-msgid "dismiss"
-msgstr "otkaži"
-
-#: standalone/drakvpn:105
-#, c-format
-msgid "Disabling VPN..."
-msgstr "Isključujem VPN..."
-
-#: standalone/drakvpn:114
-#, c-format
-msgid "The VPN connection is now disabled."
-msgstr "VPN veza je sada isključena."
-
-#: standalone/drakvpn:121
-#, c-format
-msgid "VPN connection currently disabled"
-msgstr "VPN veza je trenutno neaktivna"
-
-#: standalone/drakvpn:122
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Podešavanje VPN veze je već završeno.\n"
-"\n"
-"Ona je trenutno neaktivna (isključena).\n"
-"\n"
-"Šta želite uraditi?"
-
-#: standalone/drakvpn:127
-#, c-format
-msgid "enable"
-msgstr "uključi"
-
-#: standalone/drakvpn:135
-#, c-format
-msgid "Enabling VPN..."
-msgstr "Uključujem VPN..."
-
-#: standalone/drakvpn:141
-#, c-format
-msgid "The VPN connection is now enabled."
-msgstr "VPN veza je sada uključena."
-
-#: standalone/drakvpn:155 standalone/drakvpn:183
-#, c-format
-msgid "Simple VPN setup."
-msgstr "Jednostano podešavanje VPNa."
-
-#: standalone/drakvpn:156
-#, c-format
-msgid ""
-"You are about to configure your computer to use a VPN connection.\n"
-"\n"
-"With this feature, computers on your local private network and computers\n"
-"on some other remote private networks, can share resources, through\n"
-"their respective firewalls, over the Internet, in a secure manner. \n"
-"\n"
-"The communication over the Internet is encrypted. The local and remote\n"
-"computers look as if they were on the same network.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using\n"
-"drakconnect before going any further."
-msgstr ""
-"Sada ćete podesiti vaš računar da koristi VPN vezu.\n"
-"\n"
-"Pomoću ove mogućnosti računari na vašoj lokalnoj mreži\n"
-"i računari u nekoj drugoj lokalnoj mreži mogu dijeliti resurse\n"
-"kroz svoje odgovarajuće firewalle, preko Interneta, na siguran način.\n"
-"\n"
-"Komunikacija preko Interneta je šifrovana. Lokalni i udaljeni računari\n"
-"se ponašaju kao da se nalaze u istoj mreži.\n"
-"\n"
-"Provjerite da li ste podesili vaš mrežni/Internet pristup koristeći\n"
-"drakconnect prije nego što nastavite."
-
-#: standalone/drakvpn:184
-#, c-format
-msgid ""
-"VPN connection.\n"
-"\n"
-"This program is based on the following projects:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - the docs and man pages coming with the %s package\n"
-"\n"
-"Please read AT LEAST the ipsec-howto docs\n"
-"before going any further."
-msgstr ""
-"VPN veza.\n"
-"\n"
-"Ovaj program je baziran na sljedećim projektima:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - dokumentacija i man stranice uz paket %s\n"
-"\n"
-"Molim pročitajte NAJMANJE ipsec-howto dokumentaciju\n"
-"prije nego što nastavite."
-
-#: standalone/drakvpn:196
-#, c-format
-msgid "Kernel module."
-msgstr "Kernel modul."
-
-#: standalone/drakvpn:197
-#, c-format
-msgid ""
-"The kernel needs to have ipsec support.\n"
-"\n"
-"You're running a %s kernel version.\n"
-"\n"
-"This kernel has '%s' support."
-msgstr ""
-"Kernel mora imati ipsec podršku.\n"
-"\n"
-"Vi trenutno koristite kernel verziju %s.\n"
-"\n"
-"Ovaj kernel ima podršku za '%s'."
-
-#: standalone/drakvpn:264
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problemi tokom instaliranja paketa %s"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "Security Policies"
-msgstr "Sigurnosna politika"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "IKE daemon racoon"
-msgstr "IKE daemon racoon"
-
-#: standalone/drakvpn:281 standalone/drakvpn:292
-#, c-format
-msgid "Configuration file"
-msgstr "Konfiguraciona datoteka"
-
-#: standalone/drakvpn:282
-#, c-format
-msgid ""
-"Configuration step!\n"
-"\n"
-"You need to define the Security Policies and then to \n"
-"configure the automatic key exchange (IKE) daemon. \n"
-"The KAME IKE daemon we're using is called 'racoon'.\n"
-"\n"
-"What would you like to configure?\n"
-msgstr ""
-"Prvi korak u konfiguraciji !\n"
-"\n"
-"Morate podesiti sigurnosnu politiku, a zatim podesiti\n"
-"demon za automatsku razmjenu ključeva (IKE). KAME IKE\n"
-"demon koji mi koristimo se zove 'racoon'.\n"
-"\n"
-"Šta želite podesiti ?\n"
-
-#: standalone/drakvpn:293
-#, c-format
-msgid ""
-"Next, we will configure the %s file.\n"
-"\n"
-"\n"
-"Simply click on Next.\n"
-msgstr ""
-"Next, we will configure the %s file.\n"
-"\n"
-"\n"
-"Simply click on Next.\n"
-
-#: standalone/drakvpn:311 standalone/drakvpn:671
-#, c-format
-msgid "%s entries"
-msgstr "%s stavki"
-
-#: standalone/drakvpn:312
-#, c-format
-msgid ""
-"The %s file contents\n"
-"is divided into sections.\n"
-"\n"
-"You can now:\n"
-"\n"
-" - display, add, edit, or remove sections, then\n"
-" - commit the changes\n"
-"\n"
-"What would you like to do?\n"
-msgstr ""
-"Sadržaj datoteke %s\n"
-"je podijeljen u sekcije.\n"
-"\n"
-"Sada možete:\n"
-"\n"
-" - prikazati, dodati, izmijeniti ili obrisati sekcije, a zatim\n"
-" - primijeniti izmjene\n"
-"\n"
-"Šta želite uraditi ?\n"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display"
-msgstr "Prikaz"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid "Commit"
-msgstr "Primijeni"
-
-#: standalone/drakvpn:333 standalone/drakvpn:337 standalone/drakvpn:695
-#: standalone/drakvpn:699
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display configuration"
-msgstr "Podešavanje prikaza"
-
-#: standalone/drakvpn:338
-#, c-format
-msgid ""
-"The %s file does not exist.\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose 'add'.\n"
-msgstr ""
-"Datoteka %s ne postoji.\n"
-"\n"
-"Ovo je vjerovatno nova konfiguracija.\n"
-"\n"
-"Morate se vratiti nazad i izabrati 'Dodaj'.\n"
-
-#: standalone/drakvpn:354
-#, c-format
-msgid "ipsec.conf entries"
-msgstr "Stavke ipsec.conf"
-
-#: standalone/drakvpn:355
-#, c-format
-msgid ""
-"The %s file contains different sections.\n"
-"\n"
-"Here is its skeleton:\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"You can now add one of these sections.\n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-"Datoteka %s sadrži razne sekcije.\n"
-"\n"
-"Ovo je kostur:\t'config setup' \t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"Sada možete dodati neke od ovih sekcija.\n"
-"\n"
-"Izaberite sekciju koju želite dodati.\n"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "config setup"
-msgstr "config setup"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "conn %default"
-msgstr "conn %default"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "normal conn"
-msgstr "normal conn"
-
-#: standalone/drakvpn:368 standalone/drakvpn:409 standalone/drakvpn:496
-#, c-format
-msgid "Exists!"
-msgstr "Već postoji !"
-
-#: standalone/drakvpn:369 standalone/drakvpn:410
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change its name.\n"
-msgstr ""
-"Sekcija pod ovim imenom već postoji.\n"
-"Imena sekcija moraju biti jedinstvena.\n"
-"\n"
-"Moraćete se vratiti nazad i dodati novu sekciju\n"
-"ili izmijeniti njeno ime.\n"
-
-#: standalone/drakvpn:386
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow this config\n"
-"setup section.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Ova sekcija se mora nalaziti na početku vaše\n"
-"%s datoteke.\n"
-"\n"
-"Provjerite da li ostale sekcije slijede ovu\n"
-"config setup sekciju.\n"
-"\n"
-"Izaberite dalje ili nazad kada završite.\n"
-
-#: standalone/drakvpn:391
-#, c-format
-msgid "interfaces"
-msgstr "interfejsi"
-
-#: standalone/drakvpn:392
-#, c-format
-msgid "klipsdebug"
-msgstr "klipsdebug"
-
-#: standalone/drakvpn:393
-#, c-format
-msgid "plutodebug"
-msgstr "plutodebug"
-
-#: standalone/drakvpn:394
-#, c-format
-msgid "plutoload"
-msgstr "plutoload"
-
-#: standalone/drakvpn:395
-#, c-format
-msgid "plutostart"
-msgstr "plutostart"
-
-#: standalone/drakvpn:396
-#, c-format
-msgid "uniqueids"
-msgstr "uniqueids"
-
-#: standalone/drakvpn:430
-#, c-format
-msgid ""
-"This is the first section after the config\n"
-"setup one.\n"
-"\n"
-"Here you define the default settings. \n"
-"All the other sections will follow this one.\n"
-"The left settings are optional. If do not define\n"
-"them here, globally, you can define them in each\n"
-"section.\n"
-msgstr ""
-"Ovo je prva sekcija nakon sekcije config\n"
-"setup.\n"
-"\n"
-"Ovdje definišete podrazumijevane postavke. \n"
-"Sve ostale sekcije slijede ovu. Postavke lijevo\n"
-"su opcionalne. Ako ih ne definišete ovdje,\n"
-"globalno, možete ih definisati zasebno u \n"
-"svakoj sekciji.\n"
-
-#: standalone/drakvpn:437
-#, c-format
-msgid "PFS"
-msgstr "PFS"
-
-#: standalone/drakvpn:438
-#, c-format
-msgid "keyingtries"
-msgstr "keyingtries"
-
-#: standalone/drakvpn:439
-#, c-format
-msgid "compress"
-msgstr "compress"
-
-#: standalone/drakvpn:440
-#, c-format
-msgid "disablearrivalcheck"
-msgstr "disablearrivalcheck"
-
-#: standalone/drakvpn:441 standalone/drakvpn:480
-#, c-format
-msgid "left"
-msgstr "left"
-
-#: standalone/drakvpn:442 standalone/drakvpn:481
-#, c-format
-msgid "leftcert"
-msgstr "leftcert"
-
-#: standalone/drakvpn:443 standalone/drakvpn:482
-#, c-format
-msgid "leftrsasigkey"
-msgstr "leftrsasigkey"
-
-#: standalone/drakvpn:444 standalone/drakvpn:483
-#, c-format
-msgid "leftsubnet"
-msgstr "leftsubnet"
-
-#: standalone/drakvpn:445 standalone/drakvpn:484
-#, c-format
-msgid "leftnexthop"
-msgstr "leftnexthop"
-
-#: standalone/drakvpn:474
-#, c-format
-msgid ""
-"Your %s file has several sections, or connections.\n"
-"\n"
-"You can now add a new section.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Vaša datoteka %s sadrži nekoliko sekcija, ili konekcija.\n"
-"\n"
-"Sada možete dodati novu sekciju.\n"
-"Izaberite Dalje kada završite sa pisanjem podataka.\n"
-
-#: standalone/drakvpn:477
-#, c-format
-msgid "section name"
-msgstr "section name"
-
-#: standalone/drakvpn:478
-#, c-format
-msgid "authby"
-msgstr "authby"
-
-#: standalone/drakvpn:479
-#, c-format
-msgid "auto"
-msgstr "auto"
-
-#: standalone/drakvpn:485
-#, c-format
-msgid "right"
-msgstr "right"
-
-#: standalone/drakvpn:486
-#, c-format
-msgid "rightcert"
-msgstr "rightcert"
-
-#: standalone/drakvpn:487
-#, c-format
-msgid "rightrsasigkey"
-msgstr "rightrsasigkey"
-
-#: standalone/drakvpn:488
-#, c-format
-msgid "rightsubnet"
-msgstr "rightsubnet"
-
-#: standalone/drakvpn:489
-#, c-format
-msgid "rightnexthop"
-msgstr "rightnexthop"
-
-#: standalone/drakvpn:497
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change the name of the section.\n"
-msgstr ""
-"Sekcija pod ovim imenom već postoji.\n"
-"Imena sekcija moraju biti jedinstvena.\n"
-"\n"
-"Moraćete se vratiti nazad i dodati još jednu\n"
-"sekciju ili izmijeniti ime sekcije.\n"
-
-#: standalone/drakvpn:529
-#, c-format
-msgid ""
-"Add a Security Policy.\n"
-"\n"
-"You can now add a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Dodaj sigurnosnu pravilo.\n"
-"\n"
-"Sada možete dodati sigurnosno pravilo.\n"
-"\n"
-"Izaberite Dalje kada završite sa pisanjem podataka.\n"
-
-#: standalone/drakvpn:562 standalone/drakvpn:812
-#, c-format
-msgid "Edit section"
-msgstr "Izmijeni sekciju"
-
-#: standalone/drakvpn:563
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to edit \n"
-"and then click on next.\n"
-msgstr ""
-"Vaša datoteka %s sadrži nekoliko sekcija ili konekcija.\n"
-"\n"
-"Ovdje možete izabrati one koje želite izmijeniti i zatim\n"
-"kliknite na Dalje.\n"
-
-#: standalone/drakvpn:566 standalone/drakvpn:646 standalone/drakvpn:817
-#: standalone/drakvpn:863
-#, c-format
-msgid "Section names"
-msgstr "Imena sekcija"
-
-#: standalone/drakvpn:576
-#, c-format
-msgid "Can not edit!"
-msgstr "Ne mogu izmijeniti!"
-
-#: standalone/drakvpn:577
-#, c-format
-msgid ""
-"You cannot edit this section.\n"
-"\n"
-"This section is mandatory for Freeswan 2.X.\n"
-"One has to specify version 2.0 on the top\n"
-"of the %s file, and eventually, disable or\n"
-"enable the opportunistic encryption.\n"
-msgstr ""
-"Ne možete mijenjati ovu sekciju.\n"
-"\n"
-"Ova sekcija je obavezna za FreeSwan 2.X.\n"
-"Morate navesti verziju 2.0 na početku datoteke\n"
-"%s i, eventualno, isključiti ili uključiti oportunističku\n"
-"enkripciju.\n"
-
-#: standalone/drakvpn:586
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the config setup section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Vaša datoteka %s sadrži nekoliko sekcija.\n"
-"\n"
-"Sada možete izmijeniti stavke sekcije config setup.\n"
-"Kliknite na Dalje kada završite da bi se podaci zapisali.\n"
-
-#: standalone/drakvpn:597
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the default section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the default section entries.\n"
-"Choose continue when you are done to write the data.\n"
-
-#: standalone/drakvpn:610
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the normal section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the normal section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-
-#: standalone/drakvpn:631
-#, c-format
-msgid ""
-"Edit a Security Policy.\n"
-"\n"
-"You can now edit a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Edit a Security Policy.\n"
-"\n"
-"You can now edit a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-
-#: standalone/drakvpn:642 standalone/drakvpn:859
-#, c-format
-msgid "Remove section"
-msgstr "Pobriši sekciju"
-
-#: standalone/drakvpn:643 standalone/drakvpn:860
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to remove\n"
-"and then click on next.\n"
-msgstr ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to remove\n"
-"and then click on next.\n"
-
-#: standalone/drakvpn:672
-#, c-format
-msgid ""
-"The racoon.conf file configuration.\n"
-"\n"
-"The contents of this file is divided into sections.\n"
-"You can now:\n"
-" - display \t\t (display the file contents)\n"
-" - add\t\t\t (add one section)\n"
-" - edit \t\t\t (modify parameters of an existing section)\n"
-" - remove \t\t (remove an existing section)\n"
-" - commit \t\t (writes the changes to the real file)"
-msgstr ""
-"The racoon.conf file configuration.\n"
-"\n"
-"The contents of this file is divided into sections.\n"
-"You can now:\n"
-" - display \t\t (display the file contents)\n"
-" - add\t\t\t (add one section)\n"
-" - edit \t\t\t (modify parameters of an existing section)\n"
-" - remove \t\t (remove an existing section)\n"
-" - commit \t\t (writes the changes to the real file)"
-
-#: standalone/drakvpn:700
-#, c-format
-msgid ""
-"The %s file does not exist\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose configure.\n"
-msgstr ""
-"The %s file does not exist\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose configure.\n"
-
-#: standalone/drakvpn:714
-#, c-format
-msgid "racoonf.conf entries"
-msgstr "racoonf.conf stavke"
-
-#: standalone/drakvpn:715
-#, c-format
-msgid ""
-"The 'add' sections step.\n"
-"\n"
-"Here below is the racoon.conf file skeleton:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-"The 'add' sections step.\n"
-"\n"
-"Here below is the racoon.conf file skeleton:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Choose the section you would like to add.\n"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "path"
-msgstr "path"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "remote"
-msgstr "remote"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "sainfo"
-msgstr "sainfo"
-
-#: standalone/drakvpn:729
-#, c-format
-msgid ""
-"The 'add path' section step.\n"
-"\n"
-"The path sections have to be on top of your racoon.conf file.\n"
-"\n"
-"Put your mouse over the certificate entry to obtain online help."
-msgstr ""
-"The 'add path' section step.\n"
-"\n"
-"The path sections have to be on top of your racoon.conf file.\n"
-"\n"
-"Put your mouse over the certificate entry to obtain online help."
-
-#: standalone/drakvpn:732
-#, c-format
-msgid "path type"
-msgstr "path type"
-
-#: standalone/drakvpn:736
-#, c-format
-msgid ""
-"path include path: specifies a path to include\n"
-"a file. See File Inclusion.\n"
-"\tExample: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: specifies a file containing\n"
-"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
-"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) will search this directory\n"
-"if a certificate or certificate request is received.\n"
-"\tExample: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"other configuration files can be included.\n"
-"\tExample: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File: Pre-shared key file defines a pair\n"
-"of the identifier and the shared secret key which are used at\n"
-"Pre-shared key authentication method in phase 1."
-msgstr ""
-"path include path: specifies a path to include\n"
-"a file. See File Inclusion.\n"
-"\tExample: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: specifies a file containing\n"
-"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
-"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) will search this directory\n"
-"if a certificate or certificate request is received.\n"
-"\tExample: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"other configuration files can be included.\n"
-"\tExample: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File: Pre-shared key file defines a pair\n"
-"of the identifier and the shared secret key which are used at\n"
-"Pre-shared key authentication method in phase 1."
-
-#: standalone/drakvpn:756 standalone/drakvpn:849
-#, c-format
-msgid "real file"
-msgstr "real file"
-
-#: standalone/drakvpn:779
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your racoon.conf file.\n"
-"\n"
-"You can now choose the remote settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Make sure you already have the path sections\n"
-"on the top of your racoon.conf file.\n"
-"\n"
-"You can now choose the remote settings.\n"
-"Choose continue or previous when you are done.\n"
-
-#: standalone/drakvpn:796
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your %s file.\n"
-"\n"
-"You can now choose the sainfo settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Make sure you already have the path sections\n"
-"on the top of your %s file.\n"
-"\n"
-"You can now choose the sainfo settings.\n"
-"Choose continue or previous when you are done.\n"
-
-#: standalone/drakvpn:813
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here in the list below the one you want\n"
-"to edit and then click on next.\n"
-msgstr ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here in the list below the one you want\n"
-"to edit and then click on next.\n"
-
-#: standalone/drakvpn:824
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"\n"
-"You can now edit the remote section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Your %s file has several sections.\n"
-"\n"
-"\n"
-"You can now edit the remote section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-
-#: standalone/drakvpn:833
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the sainfo section entries.\n"
-"\n"
-"Choose continue when you are done to write the data."
-msgstr ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the sainfo section entries.\n"
-"\n"
-"Choose continue when you are done to write the data."
-
-#: standalone/drakvpn:841
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow these path\n"
-"sections.\n"
-"\n"
-"You can now edit the path entries.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow these path\n"
-"sections.\n"
-"\n"
-"You can now edit the path entries.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-
-#: standalone/drakvpn:848
-#, c-format
-msgid "path_type"
-msgstr "path_type"
-
-#: standalone/drakvpn:889
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"\n"
-"You may now share resources through the Internet,\n"
-"in a secure way, using a VPN connection.\n"
-"\n"
-"You should make sure that that the tunnels shorewall\n"
-"section is configured."
-msgstr ""
-"Everything has been configured.\n"
-"\n"
-"You may now share resources through the Internet,\n"
-"in a secure way, using a VPN connection.\n"
-"\n"
-"You should make sure that that the tunnels shorewall\n"
-"section is configured."
-
-#: standalone/drakvpn:909
-#, c-format
-msgid "Sainfo source address"
-msgstr "Sainfo izvorna adresa"
-
-#: standalone/drakvpn:910
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 is the source address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 is the source address"
-msgstr ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 is the source address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 is the source address"
-
-#: standalone/drakvpn:927
-#, c-format
-msgid "Sainfo source protocol"
-msgstr "Sainfo izvorni protokol"
-
-#: standalone/drakvpn:928
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe first 'any' allows any protocol for the source"
-msgstr ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe first 'any' allows any protocol for the source"
-
-#: standalone/drakvpn:942
-#, c-format
-msgid "Sainfo destination address"
-msgstr "Sainfo odredišna adresa"
-
-#: standalone/drakvpn:943
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 is the destination address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 is the destination address"
-msgstr ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 is the destination address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 is the destination address"
-
-#: standalone/drakvpn:960
-#, c-format
-msgid "Sainfo destination protocol"
-msgstr "Sainfo odredišni protokol"
-
-#: standalone/drakvpn:961
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe last 'any' allows any protocol for the destination"
-msgstr ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe last 'any' allows any protocol for the destination"
-
-#: standalone/drakvpn:975
-#, c-format
-msgid "PFS group"
-msgstr "PFS grupa"
-
-#: standalone/drakvpn:977
-#, c-format
-msgid ""
-"define the group of Diffie-Hellman exponentiations.\n"
-"If you do not require PFS then you can omit this directive.\n"
-"Any proposal will be accepted if you do not specify one.\n"
-"group is one of the following: modp768, modp1024, modp1536.\n"
-"Or you can define 1, 2, or 5 as the DH group number."
-msgstr ""
-"define the group of Diffie-Hellman exponentiations.\n"
-"If you do not require PFS then you can omit this directive.\n"
-"Any proposal will be accepted if you do not specify one.\n"
-"group is one of the following: modp768, modp1024, modp1536.\n"
-"Or you can define 1, 2, or 5 as the DH group number."
-
-#: standalone/drakvpn:982
-#, c-format
-msgid "Lifetime number"
-msgstr "Lifetime number"
-
-#: standalone/drakvpn:983
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-msgstr ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-
-#: standalone/drakvpn:999
-#, c-format
-msgid "Lifetime unit"
-msgstr "Lifetime unit"
-
-#: standalone/drakvpn:1001
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
-"'hour'.\n"
-msgstr ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
-"'hour'.\n"
-
-#: standalone/drakvpn:1019
-#, c-format
-msgid "Authentication algorithm"
-msgstr "Algoritam autentikacije"
-
-#: standalone/drakvpn:1021
-#, c-format
-msgid "Compression algorithm"
-msgstr "Algoritam kompresije"
-
-#: standalone/drakvpn:1022
-#, c-format
-msgid "deflate"
-msgstr "deflate"
-
-#: standalone/drakvpn:1029
-#, c-format
-msgid "Remote"
-msgstr "Udaljeni"
-
-#: standalone/drakvpn:1030
-#, c-format
-msgid ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specifies the parameters for IKE phase 1 for each remote node.\n"
-"The default port is 500. If anonymous is specified, the state-\n"
-"ments apply to all peers which do not match any other remote\n"
-"directive.\n"
-"\n"
-"Examples: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-msgstr ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specifies the parameters for IKE phase 1 for each remote node.\n"
-"The default port is 500. If anonymous is specified, the state-\n"
-"ments apply to all peers which do not match any other remote\n"
-"directive.\n"
-"\n"
-"Examples: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-
-#: standalone/drakvpn:1038
-#, c-format
-msgid "Exchange mode"
-msgstr "Exchange mode"
-
-#: standalone/drakvpn:1040
-#, c-format
-msgid ""
-"defines the exchange mode for phase 1 when racoon is the\n"
-"initiator. Also it means the acceptable exchange mode\n"
-"when racoon is responder. More than one mode can be\n"
-"specified by separating them with a comma. All of the\n"
-"modes are acceptable. The first exchange mode is what\n"
-"racoon uses when it is the initiator.\n"
-msgstr ""
-"defines the exchange mode for phase 1 when racoon is the\n"
-"initiator. Also it means the acceptable exchange mode\n"
-"when racoon is responder. More than one mode can be\n"
-"specified by separating them with a comma. All of the\n"
-"modes are acceptable. The first exchange mode is what\n"
-"racoon uses when it is the initiator.\n"
-
-#: standalone/drakvpn:1046
-#, c-format
-msgid "Generate policy"
-msgstr "Generate policy"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "off"
-msgstr "isključen"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "on"
-msgstr "uključen"
-
-#: standalone/drakvpn:1048
-#, c-format
-msgid ""
-"This directive is for the responder. Therefore you\n"
-"should set passive on in order that racoon(8) only\n"
-"becomes a responder. If the responder does not have any\n"
-"policy in SPD during phase 2 negotiation, and the direc-\n"
-"tive is set on, then racoon(8) will choice the first pro-\n"
-"posal in the SA payload from the initiator, and generate\n"
-"policy entries from the proposal. It is useful to nego-\n"
-"tiate with the client which is allocated IP address\n"
-"dynamically. Note that inappropriate policy might be\n"
-"installed into the responder's SPD by the initiator. So\n"
-"that other communication might fail if such policies\n"
-"installed due to some policy mismatches between the ini-\n"
-"tiator and the responder. This directive is ignored in\n"
-"the initiator case. The default value is off."
-msgstr ""
-"This directive is for the responder. Therefore you\n"
-"should set passive on in order that racoon(8) only\n"
-"becomes a responder. If the responder does not have any\n"
-"policy in SPD during phase 2 negotiation, and the direc-\n"
-"tive is set on, then racoon(8) will choice the first pro-\n"
-"posal in the SA payload from the initiator, and generate\n"
-"policy entries from the proposal. It is useful to nego-\n"
-"tiate with the client which is allocated IP address\n"
-"dynamically. Note that inappropriate policy might be\n"
-"installed into the responder's SPD by the initiator. So\n"
-"that other communication might fail if such policies\n"
-"installed due to some policy mismatches between the ini-\n"
-"tiator and the responder. This directive is ignored in\n"
-"the initiator case. The default value is off."
-
-#: standalone/drakvpn:1062
-#, c-format
-msgid "Passive"
-msgstr "Passive"
-
-#: standalone/drakvpn:1064
-#, c-format
-msgid ""
-"If you do not want to initiate the negotiation, set this\n"
-"to on. The default value is off. It is useful for a\n"
-"server."
-msgstr ""
-"If you do not want to initiate the negotiation, set this\n"
-"to on. The default value is off. It is useful for a\n"
-"server."
-
-#: standalone/drakvpn:1067
-#, c-format
-msgid "Certificate type"
-msgstr "Certificate type"
-
-#: standalone/drakvpn:1069
-#, c-format
-msgid "My certfile"
-msgstr "My certfile"
-
-#: standalone/drakvpn:1070
-#, c-format
-msgid "Name of the certificate"
-msgstr "Naziv certifikata"
-
-#: standalone/drakvpn:1071
-#, c-format
-msgid "My private key"
-msgstr "Moj privatni ključ"
-
-#: standalone/drakvpn:1072
-#, c-format
-msgid "Name of the private key"
-msgstr "Ime privatnog ključa"
-
-#: standalone/drakvpn:1073
-#, c-format
-msgid "Peers certfile"
-msgstr "Peers certfile"
-
-#: standalone/drakvpn:1074
-#, c-format
-msgid "Name of the peers certificate"
-msgstr "Name of the peers certificate"
-
-#: standalone/drakvpn:1075
-#, c-format
-msgid "Verify cert"
-msgstr "Provjeri certifikat"
-
-#: standalone/drakvpn:1077
-#, c-format
-msgid ""
-"If you do not want to verify the peer's certificate for\n"
-"some reason, set this to off. The default is on."
-msgstr ""
-"If you do not want to verify the peer's certificate for\n"
-"some reason, set this to off. The default is on."
-
-#: standalone/drakvpn:1079
-#, c-format
-msgid "My identifier"
-msgstr "Moj identifikator"
-
-#: standalone/drakvpn:1080
-#, c-format
-msgid ""
-"specifies the identifier sent to the remote host and the\n"
-"type to use in the phase 1 negotiation. address, FQDN,\n"
-"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
-"they are used like:\n"
-"\tmy_identifier address [address];\n"
-"\t\tthe type is the IP address. This is the default\n"
-"\t\ttype if you do not specify an identifier to use.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tthe type is a USER_FQDN (user fully-qualified\n"
-"\t\tdomain name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tthe type is a FQDN (fully-qualified domain name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tthe type is a KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tthe type is an ASN.1 distinguished name. If\n"
-"\t\tstring is omitted, racoon(8) will get DN from\n"
-"\t\tSubject field in the certificate.\n"
-"\n"
-"Examples: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-msgstr ""
-"specifies the identifier sent to the remote host and the\n"
-"type to use in the phase 1 negotiation. address, FQDN,\n"
-"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
-"they are used like:\n"
-"\tmy_identifier address [address];\n"
-"\t\tthe type is the IP address. This is the default\n"
-"\t\ttype if you do not specify an identifier to use.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tthe type is a USER_FQDN (user fully-qualified\n"
-"\t\tdomain name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tthe type is a FQDN (fully-qualified domain name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tthe type is a KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tthe type is an ASN.1 distinguished name. If\n"
-"\t\tstring is omitted, racoon(8) will get DN from\n"
-"\t\tSubject field in the certificate.\n"
-"\n"
-"Examples: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-
-#: standalone/drakvpn:1100
-#, c-format
-msgid "Peers identifier"
-msgstr "Peers identifier"
-
-#: standalone/drakvpn:1101
-#, c-format
-msgid "Proposal"
-msgstr "Proposal"
-
-#: standalone/drakvpn:1103
-#, c-format
-msgid ""
-"specify the encryption algorithm used for the\n"
-"phase 1 negotiation. This directive must be defined. \n"
-"algorithm is one of the following: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For other transforms, this statement should not be used."
-msgstr ""
-"specify the encryption algorithm used for the\n"
-"phase 1 negotiation. This directive must be defined. \n"
-"algorithm is one of the following: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For other transforms, this statement should not be used."
-
-#: standalone/drakvpn:1110
-#, c-format
-msgid "Hash algorithm"
-msgstr "Hash algorithm"
-
-#: standalone/drakvpn:1112
-#, c-format
-msgid "DH group"
-msgstr "DH group"
-
-#: standalone/drakvpn:1119
-#, c-format
-msgid "Command"
-msgstr "Command"
-
-#: standalone/drakvpn:1120
-#, c-format
-msgid "Source IP range"
-msgstr "Source IP range"
-
-#: standalone/drakvpn:1121
-#, c-format
-msgid "Destination IP range"
-msgstr "Destination IP range"
-
-#: standalone/drakvpn:1122
-#, c-format
-msgid "Upper-layer protocol"
-msgstr "Upper-layer protocol"
-
-#: standalone/drakvpn:1122 standalone/drakvpn:1129
-#, c-format
-msgid "any"
-msgstr "bilo koji"
-
-#: standalone/drakvpn:1124
-#, c-format
-msgid "Flag"
-msgstr "Flag"
-
-#: standalone/drakvpn:1125
-#, c-format
-msgid "Direction"
-msgstr "Direction"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "IPsec policy"
-msgstr "IPsec policy"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "ipsec"
-msgstr "ipsec"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "discard"
-msgstr "poništi"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "Mode"
-msgstr "Mode"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "tunnel"
-msgstr "tunel"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "transport"
-msgstr "transport"
-
-#: standalone/drakvpn:1131
-#, c-format
-msgid "Source/destination"
-msgstr "Source/destination"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "require"
-msgstr "zahtijeva"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "default"
-msgstr "uobičajeno"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "use"
-msgstr "koristi"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "unique"
-msgstr "jedinstveno"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (broadcast)"
-msgstr "USA (broadcast)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable)"
-msgstr "USA (kablovska)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "USA (cable-hrc)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "Canada (cable)"
-msgstr "Kanada (kablovska)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Japan (broadcast)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (cable)"
-msgstr "Japan (kablovska)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "China (broadcast)"
-msgstr "Kina (broadcast)"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "West Europe"
-msgstr "Zapadna Evropa"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "East Europe"
-msgstr "Istočna Evropa"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "France [SECAM]"
-msgstr "Francuska [SECAM]"
-
-#: standalone/drakxtv:48
-#, c-format
-msgid "Newzealand"
-msgstr "Novi Zeland"
-
-#: standalone/drakxtv:51
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Australijska Optus kablovska TV"
-
-#: standalone/drakxtv:85
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Molim,\n"
-"unesite vaš tv standard i državu"
-
-#: standalone/drakxtv:87
-#, c-format
-msgid "TV norm:"
-msgstr "TV standard :"
-
-#: standalone/drakxtv:88
-#, c-format
-msgid "Area:"
-msgstr "Oblast :"
-
-#: standalone/drakxtv:93
-#, c-format
-msgid "Scanning for TV channels in progress..."
-msgstr "Pretraga TV kanala je u toku ..."
-
-#: standalone/drakxtv:103
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "Tražim TV kanale"
-
-#: standalone/drakxtv:107
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Došlo je do greške kod pretrage TV kanala"
-
-#: standalone/drakxtv:110
-#, c-format
-msgid "Have a nice day!"
-msgstr "Have a nice day!"
-
-#: standalone/drakxtv:111
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "Sada možete pokrenuti xawtv (pod X Window sistemom!) !\n"
-
-#: standalone/drakxtv:149
-#, c-format
-msgid "No TV Card detected!"
-msgstr "Nije detektovana TV kartica!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakxtv:151
-#, c-format
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"Na vašem računaru nije detektovana TV kartica. Molim provjerite da li je "
-"ispravno priključena Video/TV kartica koja je podržana pod Linuxom.\n"
-"\n"
-"\n"
-"Možete posjetiti našu bazu hardvera na:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/finish-install:42 standalone/keyboarddrake:30
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Molim izaberite izgled vaše tastature."
-
-#: standalone/harddrake2:25
-#, c-format
-msgid "Alternative drivers"
-msgstr "Alternativni drajveri"
-
-#: standalone/harddrake2:26
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "spisak alternativnih drajvera za ovu zvučnu karticu"
-
-#: standalone/harddrake2:29
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-"ovo je fizička sabirnica na koju je uređaj priključen (npr: PCI, USB, ...)"
-
-#: standalone/harddrake2:31 standalone/harddrake2:146
-#, c-format
-msgid "Bus identification"
-msgstr "Identifikacija sabirnice (busa)"
-
-#: standalone/harddrake2:32
-#, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
-msgstr ""
-"- PCI i USB uređaji: ovo će izlistati PCI/USB id-ove za; vendor, device, "
-"subvendor i subdevice"
-
-#: standalone/harddrake2:35
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- pci devices: ovo daje PCI slot, uređaj i funkciju ove kartice\n"
-"- eide devices: uređaj može biti master ili slave\n"
-"- scsi devices: SCSI id-ovi za: bus i device"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "Drive capacity"
-msgstr "Kapacitet uređaja"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr "posebne mogućnosti drajvera (mogućnost prženja i/ili podrška za DVD)"
-
-#: standalone/harddrake2:39
-#, c-format
-msgid "this field describes the device"
-msgstr "ovo polje opisuje uređaj"
-
-#: standalone/harddrake2:40
-#, c-format
-msgid "Old device file"
-msgstr "Stara datoteka uređaja"
-
-#: standalone/harddrake2:41
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "staro statičko ime uređaja koje koristi dev paket"
-
-#: standalone/harddrake2:42
-#, c-format
-msgid "New devfs device"
-msgstr "Novi devfs uređaj"
-
-#: standalone/harddrake2:43
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "novo dinamičko ime uređaja koje generiše kernelov devfs"
-
-#. -PO: here "module" is the "jargon term" for a kernel driver
-#: standalone/harddrake2:46
-#, c-format
-msgid "Module"
-msgstr "Modul"
-
-#: standalone/harddrake2:46
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "modul Linux kernela koji upravlja uređajem"
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "Extended partitions"
-msgstr "Proširene particije"
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "the number of extended partitions"
-msgstr "broj proširenih particija"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Geometry"
-msgstr "Geometrija"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Cylinder/head/sectors geometry of the disk"
-msgstr "CHS (cilindar/glava/sektor) geometrija diska"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "Disk controller"
-msgstr "Disk kontroler"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "the disk controller on the host side"
-msgstr "disk kontroler na strani računara"
-
-#: standalone/harddrake2:50
-#, c-format
-msgid "class of hardware device"
-msgstr "klasa hardverskog uređaja"
-
-#: standalone/harddrake2:51 standalone/harddrake2:83
-#: standalone/printerdrake:224
-#, c-format
-msgid "Model"
-msgstr "Model"
-
-#: standalone/harddrake2:51
-#, c-format
-msgid "hard disk model"
-msgstr "model hard diska"
-
-#: standalone/harddrake2:52
-#, c-format
-msgid "network printer port"
-msgstr "port mrežnog štampača"
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "Primary partitions"
-msgstr "Primarne particije"
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "the number of the primary partitions"
-msgstr "broj primarnih particija"
-
-#: standalone/harddrake2:54
-#, c-format
-msgid "the vendor name of the device"
-msgstr "naziv proizvođača uređaja"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "Bus PCI #"
-msgstr "Bus PCI #"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "the PCI bus on which the device is plugged"
-msgstr "PCI sabirnica na koju je uređaj priključen"
-
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device #"
-msgstr "PCI uređaj #"
-
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device number"
-msgstr "Broj PCI uređaja"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function #"
-msgstr "PCI funkcija #"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function number"
-msgstr "Broj PCI funkcije"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "Vendor ID"
-msgstr "ID proizvođača"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "this is the standard numerical identifier of the vendor"
-msgstr "ovo je standardni numerički identifikator proizvođača"
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "Device ID"
-msgstr "ID uređaja"
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "this is the numerical identifier of the device"
-msgstr "ovo je numerički identifikator uređaja"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "Sub vendor ID"
-msgstr "Pod-ID proizvođača"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "this is the minor numerical identifier of the vendor"
-msgstr "ovo je manji numerički identifikator proizvođača"
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "Sub device ID"
-msgstr "Pod-ID uređaja"
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "this is the minor numerical identifier of the device"
-msgstr "ovo je manji numerički identifikator uređaja"
-
-#: standalone/harddrake2:62
-#, c-format
-msgid "Device USB ID"
-msgstr "USB ID uređaja"
-
-#: standalone/harddrake2:62
-#, c-format
-msgid ".."
-msgstr ".."
-
-#: standalone/harddrake2:66
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
-
-#: standalone/harddrake2:66
-#, c-format
-msgid ""
-"the GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
-msgstr ""
-"GNU/Linux kernel mora izvršiti proračunsku petlju prilikom boot-a kako bi "
-"inicijalizirao tajmer. Rezultat rada te petlje se prikazuje u vidu "
-"bogomipsa, kao jedan neprecizan pokazatelj brzine CPUa."
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "Cache size"
-msgstr "Veličina cache-a"
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "veličina CPU keša (drugog nivoa)"
-
-#. -PO: here "comas" is the medical coma, not the lexical coma!!
-#: standalone/harddrake2:70
-#, c-format
-msgid "Coma bug"
-msgstr "Coma bug"
-
-#: standalone/harddrake2:70
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "da li ovaj CPU ima Cyrix 6x86 Coma bug"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "Cpuid family"
-msgstr "Cpuid familija"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "familija CPUa (npr: 6 za i686 generaciju)"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "Cpuid level"
-msgstr "Nivo cpuid-a"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "nivo informacija koje se mogu dobiti cpuid instrukcijom"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Frekvencija (MHz)"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr ""
-"frekvencija CPUa u MHz (Megaherc je jedinica koja se može približno "
-"usporediti sa brojem instrukcija koje CPU izvršava u sekundi)"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "Flags"
-msgstr "Flagovi"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "CPU flagovi koje je prijavio kernel"
-
-#: standalone/harddrake2:75
-#, c-format
-msgid "Fdiv bug"
-msgstr "Fdiv bug"
-
-#: standalone/harddrake2:76
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
-"Rani Intel Pentium procesori imaju bug u numeričkom koprocesoru koji ne "
-"postiže potrebnu preciznost prilikom izvršavanja dijeljenja sa tekućim "
-"zarezom (FDIV)"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "Is FPU present"
-msgstr "Da li postoji FPU"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "da znači da procesor ima aritmetički koprocesor"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "Da li FPU ima IRQ vektor"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr "da znači da aritmetički koprocesor ima priključen exception vector"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "F00f bug"
-msgstr "F00F bug"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
-"rani Pentium procesori imaju bug koji izaziva smrzavanje sistema prilikom "
-"dekodiranja F00F bytecode-a"
-
-#: standalone/harddrake2:80
-#, c-format
-msgid "Halt bug"
-msgstr "Halt bug"
-
-#: standalone/harddrake2:81
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
-"Neki rani i486DX-100 chipovi se ne mogu pouzdano vratiti u radni način nakon "
-"korištenja instrukcije \"halt\""
-
-#: standalone/harddrake2:82
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "podgeneracija procesora"
-
-#: standalone/harddrake2:83
-#, c-format
-msgid "generation of the cpu (eg: 8 for Pentium III, ...)"
-msgstr "generacija procesora (npr: 8 za Pentium III, ...)"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "Model name"
-msgstr "Naziv modela"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "zvanično ime proizvođača procesora"
-
-#: standalone/harddrake2:85
-#, c-format
-msgid "the name of the CPU"
-msgstr "naziv procesora"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "Processor ID"
-msgstr "ID procesora"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "the number of the processor"
-msgstr "broj procesora"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "Model stepping"
-msgstr "Model stepping"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "stepping procesora (broj pod-modela / generacije)"
-
-#: standalone/harddrake2:88
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "naziv proizvođača procesora"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid "Write protection"
-msgstr "Zaštita od pisanja"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid ""
-"the WP flag in the CR0 register of the cpu enforce write protection at the "
-"memory page level, thus enabling the processor to prevent unchecked kernel "
-"accesses to user memory (aka this is a bug guard)"
-msgstr ""
-"WP flag u CR0 registru CPUa prisiljava zaštitu od pisanja na nivou "
-"memorijske stranice, čime je uključeno sprječavanje od neprovjerenih "
-"pristupa kernela u korisničku memoriju (drugim riječima, ovo je zaštita od "
-"bugova)"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "Floppy format"
-msgstr "Format diskete"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "format disketa koje podržava jedinica"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "Channel"
-msgstr "Kanal"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "EIDE/SCSI channel"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "Disk identifier"
-msgstr "Identifikator diska"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "usually the disk serial number"
-msgstr "obično serijski broj diska"
-
-#: standalone/harddrake2:99
-#, c-format
-msgid "Logical unit number"
-msgstr "Broj logičke jedinice"
-
-#: standalone/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 odredišni broj (LUN). SCSI uređaji spojeni na računar su jedinstveno "
-"identificirani\n"
-"brojem kanala, odredišnim IDom i brojem logične jedinice"
-
-#. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...)
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size"
-msgstr "Instalirana veličina"
-
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size of the memory bank"
-msgstr "Instalirana veličina memorijske banke"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled Size"
-msgstr "Omogućena veličina"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled size of the memory bank"
-msgstr "Omogućena veličina memorijske banke"
-
-#: standalone/harddrake2:108
-#, c-format
-msgid "type of the memory device"
-msgstr "vrsta memorijskog uređaja"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed"
-msgstr "Brzina"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed of the memory bank"
-msgstr "Brzina memorijske banke"
-
-#: standalone/harddrake2:110
-#, c-format
-msgid "Bank connections"
-msgstr "Veze memorijske banke"
-
-#: standalone/harddrake2:111
-#, c-format
-msgid "Socket designation of the memory bank"
-msgstr "Oznaka podnožja (socketa) memorijske banke"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid "Device file"
-msgstr "Datoteka uređaja"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid ""
-"the device file used to communicate with the kernel driver for the mouse"
-msgstr ""
-"datoteka uređaja koja se koristi za komunikaciju sa kernelskim drajverom miša"
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "Emulated wheel"
-msgstr "Simulirani točkić"
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "whether the wheel is emulated or not"
-msgstr "da li je točkić simuliran ili ne"
-
-#: standalone/harddrake2:117
-#, c-format
-msgid "the type of the mouse"
-msgstr "vrsta miša"
-
-#: standalone/harddrake2:118
-#, c-format
-msgid "the name of the mouse"
-msgstr "naziv miša"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "Number of buttons"
-msgstr "Broj dugmadi"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "broj dugmadi koje ima miš"
-
-#: standalone/harddrake2:120
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "vrsta sabirnice na koju je spojen miš"
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "Mouse protocol used by X11"
-msgstr "Protokol miša koji koristi X11"
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "the protocol that the graphical desktop use with the mouse"
-msgstr "protokol koji koristi grafički desktop sa mišem"
-
-#: standalone/harddrake2:128 standalone/harddrake2:137
-#: standalone/harddrake2:144 standalone/harddrake2:152
-#: standalone/harddrake2:341
-#, c-format
-msgid "Identification"
-msgstr "Identifikacija"
-
-#: standalone/harddrake2:129 standalone/harddrake2:145
-#, c-format
-msgid "Connection"
-msgstr "Konekcija"
-
-#: standalone/harddrake2:138
-#, c-format
-msgid "Performances"
-msgstr "Performanse"
-
-#: standalone/harddrake2:139
-#, c-format
-msgid "Bugs"
-msgstr "Bugovi"
-
-#: standalone/harddrake2:140
-#, c-format
-msgid "FPU"
-msgstr "FPU"
-
-#: standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Uređaj"
-
-#: standalone/harddrake2:148
-#, c-format
-msgid "Partitions"
-msgstr "Particije"
-
-#: standalone/harddrake2:153
-#, c-format
-msgid "Features"
-msgstr "Osobine"
-
-#. -PO: please keep all "/" characters !!!
-#: standalone/harddrake2:176 standalone/logdrake:76
-#: standalone/printerdrake:146 standalone/printerdrake:159
-#: standalone/printerdrake:171
-#, c-format
-msgid "/_Options"
-msgstr "/_Opcije"
-
-#: standalone/harddrake2:177 standalone/harddrake2:202 standalone/logdrake:78
-#: standalone/printerdrake:172 standalone/printerdrake:174
-#: standalone/printerdrake:177 standalone/printerdrake:179
-#, c-format
-msgid "/_Help"
-msgstr "/_Pomoć"
-
-#: standalone/harddrake2:181
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Automatski prepoznaj štam_pače"
-
-#: standalone/harddrake2:182
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Automatski prepoznaj _modeme"
-
-#: standalone/harddrake2:183
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Automatski prepoznaj _jaz uređaje"
-
-#: standalone/harddrake2:184
-#, c-format
-msgid "/Autodetect parallel _zip drives"
-msgstr ""
-
-#: standalone/harddrake2:191 standalone/printerdrake:152
-#, c-format
-msgid "/_Quit"
-msgstr "/_Izlaz"
-
-#: standalone/harddrake2:204
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Opis polja"
-
-#: standalone/harddrake2:206
-#, c-format
-msgid "Harddrake help"
-msgstr "Harddrake pomoć"
-
-#: standalone/harddrake2:215
-#, 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 ""
-"Nakon što izaberete uređaj, moći ćete vidjeti informacije o uređaju u "
-"poljima u desnom okviru (\"Informacije\")"
-
-#: standalone/harddrake2:221 standalone/printerdrake:177
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Prijavi grešku"
-
-#: standalone/harddrake2:223 standalone/printerdrake:179
-#, c-format
-msgid "/_About..."
-msgstr "/_O programu..."
-
-#: standalone/harddrake2:224
-#, c-format
-msgid "About Harddrake"
-msgstr "O Harddrake-u"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/harddrake2:226
-#, c-format
-msgid ""
-"This is HardDrake, a %s hardware configuration tool.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-msgstr ""
-"Ovo je HardDrake, %s alat za podešavanje hardvera.\n"
-"<span foreground=\"royalblue3\">Verzija:</span> %s\n"
-"<span foreground=\"royalblue3\">Autor:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-
-#: standalone/harddrake2:242
-#, c-format
-msgid "Harddrake2"
-msgstr "Harddrake2"
-
-#: standalone/harddrake2:272
-#, c-format
-msgid "Detected hardware"
-msgstr "Detektovani hardver"
-
-#: standalone/harddrake2:277
-#, c-format
-msgid "Configure module"
-msgstr "Podesi modul"
-
-#: standalone/harddrake2:284
-#, c-format
-msgid "Run config tool"
-msgstr "Pokreni alat za podešavanje"
-
-#: standalone/harddrake2:308
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr "Kliknite na uređaj u drvetu lijevo da dobijete informacije o njemu."
-
-#: standalone/harddrake2:329 standalone/printerdrake:306
-#: standalone/printerdrake:320
-#, c-format
-msgid "Unknown"
-msgstr "Nepoznat"
-
-#: standalone/harddrake2:349
-#, c-format
-msgid "Misc"
-msgstr "Razno"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "secondary"
-msgstr "sekundarni"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "primary"
-msgstr "primarni"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "burner"
-msgstr "pržilica"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "DVD"
-msgstr "DVD"
-
-#: standalone/harddrake2:511
-#, c-format
-msgid ""
-"The following devices needs proprietary drivers or firmwares in order to "
-"operate smoothly. The appropriate packages can be retrieved from the "
-"Mandriva Club. Do you want to subscribe to the Mandriva Club?"
-msgstr ""
-
-#: standalone/keyboarddrake:45
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Želite li da BackSpace vrati Delete u konzoli?"
-
-#: standalone/localedrake:38
-#, c-format
-msgid "LocaleDrake"
-msgstr "LocaleDrake"
-
-#: standalone/localedrake:44
-#, c-format
-msgid "You should install the following packages: %s"
-msgstr "Trebate instalirati sljedeće pakete: %s"
-
-#. -PO: the following is used to combine packages names. eg: "initscripts, harddrake, yudit"
-#: standalone/localedrake:47 standalone/scannerdrake:135
-#, c-format
-msgid ", "
-msgstr ", "
-
-#: standalone/localedrake:55
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "Izmjena je napravljena, ali da bi stupila na snagu morate se odjaviti"
-
-#: standalone/logdrake:49
-#, c-format
-msgid "Mandriva Linux Tools Logs"
-msgstr "Dnevnici Mandriva Linux alata"
-
-#: standalone/logdrake:50
-#, c-format
-msgid "Logdrake"
-msgstr "Logdrake"
-
-#: standalone/logdrake:63
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Prikaži samo za izabrani dan"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "/File/_New"
-msgstr "/Datoteka/_Nova"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "/File/_Open"
-msgstr "/Datoteka/_Otvori"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "/File/_Save"
-msgstr "/Datoteka/_Sačuvaj"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
-
-#: standalone/logdrake:73
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Datoteka/Sačuvaj K_ao"
-
-#: standalone/logdrake:74
-#, c-format
-msgid "/File/-"
-msgstr "/Datoteka/-"
-
-#: standalone/logdrake:77
-#, c-format
-msgid "/Options/Test"
-msgstr "/Opcije/Test"
-
-#: standalone/logdrake:79
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Pomoć/_O programu..."
-
-#: standalone/logdrake:108
-#, c-format
-msgid ""
-"_:this is the auth.log log file\n"
-"Authentication"
-msgstr "Authentication"
-
-#: standalone/logdrake:109
-#, c-format
-msgid ""
-"_:this is the user.log log file\n"
-"User"
-msgstr "User"
-
-#: standalone/logdrake:110
-#, c-format
-msgid ""
-"_:this is the /var/log/messages log file\n"
-"Messages"
-msgstr "Messages"
-
-#: standalone/logdrake:111
-#, c-format
-msgid ""
-"_:this is the /var/log/syslog log file\n"
-"Syslog"
-msgstr "Syslog"
-
-#: standalone/logdrake:115
-#, c-format
-msgid "search"
-msgstr "pretraživanje"
-
-#: standalone/logdrake:127
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Alat za pregled vaših logova"
-
-#: standalone/logdrake:128 standalone/net_applet:347 standalone/net_monitor:93
-#, c-format
-msgid "Settings"
-msgstr "Podešavanja"
-
-#: standalone/logdrake:133
-#, c-format
-msgid "Matching"
-msgstr "Odgovara"
-
-#: standalone/logdrake:134
-#, c-format
-msgid "but not matching"
-msgstr "but not matching"
-
-#: standalone/logdrake:138
-#, c-format
-msgid "Choose file"
-msgstr "Izaberi datoteku"
-
-#: standalone/logdrake:150
-#, c-format
-msgid "Calendar"
-msgstr "Kalendar"
-
-#: standalone/logdrake:160
-#, c-format
-msgid "Content of the file"
-msgstr "Sadržaj datoteke"
-
-#: standalone/logdrake:164 standalone/logdrake:401
-#, c-format
-msgid "Mail alert"
-msgstr "Mail obavijest"
-
-#: standalone/logdrake:171
-#, c-format
-msgid "The alert wizard has failed unexpectedly:"
-msgstr "Čarobnjak za upozorenja je neočekivano pao:"
-
-#: standalone/logdrake:224
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "molim sačekajte, parsiram datoteku: %s"
-
-#: standalone/logdrake:379
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Apache World Wide Web Server"
-
-#: standalone/logdrake:380
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Domain Name Resolver"
-
-#: standalone/logdrake:381
-#, c-format
-msgid "Ftp Server"
-msgstr "FTP server"
-
-#: standalone/logdrake:382
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Postfix mail server"
-
-#: standalone/logdrake:383
-#, c-format
-msgid "Samba Server"
-msgstr "Samba server"
-
-#: standalone/logdrake:385
-#, c-format
-msgid "Webmin Service"
-msgstr "Webmin servis"
-
-#: standalone/logdrake:386
-#, c-format
-msgid "Xinetd Service"
-msgstr "Xinetd servis"
-
-#: standalone/logdrake:395
-#, c-format
-msgid "Configure the mail alert system"
-msgstr "Podesi sistem za e-mail obavještenja"
-
-#: standalone/logdrake:396
-#, c-format
-msgid "Stop the mail alert system"
-msgstr "Zaustavi sistem za e-mail obavještenja"
-
-#: standalone/logdrake:404
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Podešavanje Mail obavijesti"
-
-#: standalone/logdrake:405
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Dobro došli u program za podešavanje maila.\n"
-"\n"
-"Ovdje možete podesiti sistem obavještavanja.\n"
-
-#: standalone/logdrake:415
-#, c-format
-msgid "Services settings"
-msgstr "Postavke servisa"
-
-#: standalone/logdrake:416
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr "Primićete obavještenje ako neki od izabranih servisa prestane raditi"
-
-#: standalone/logdrake:423
-#, c-format
-msgid "Load setting"
-msgstr "Podešavanje opterećenja"
-
-#: standalone/logdrake:424
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-"Primićete upozorenje ako je opterećenje (system load) veće od ove vrijednosti"
-
-#: standalone/logdrake:425
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Opterećenje"
-
-#: standalone/logdrake:430
-#, c-format
-msgid "Alert configuration"
-msgstr "Postavke upozorenja"
-
-#: standalone/logdrake:431
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Molim unesite vašu email adresu ispod"
-
-#: standalone/logdrake:432
-#, c-format
-msgid "and enter the name (or the IP) of the SMTP server you wish to use"
-msgstr "i unesite ime (ili IP adresu) SMTP servera kojeg želite koristiti"
-
-#: standalone/logdrake:451
-#, c-format
-msgid "The wizard successfully configured the mail alert."
-msgstr "Čarobnjak je uspješno podesio e-mail obavještenja."
-
-#: standalone/logdrake:457
-#, c-format
-msgid "The wizard successfully disabled the mail alert."
-msgstr "Čarobnjak je uspješno isključio e-mail obavještenja."
-
-#: standalone/logdrake:516
-#, c-format
-msgid "Save as.."
-msgstr "Sačuvaj kao..."
-
-#: standalone/mousedrake:31
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Molim izaberite vrstu vašeg miša."
-
-#: standalone/mousedrake:44
-#, c-format
-msgid "Emulate third button?"
-msgstr "Emuliraj treće dugme?"
-
-#: standalone/mousedrake:61
-#, c-format
-msgid "Mouse test"
-msgstr "Testiranje miša"
-
-#: standalone/mousedrake:64
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Molim testirajte miš:"
-
-#: standalone/net_applet:47
-#, c-format
-msgid "Network is up on interface %s"
-msgstr "Mreža je pokrenuta na interfejsu %s"
-
-#. -PO: keep the "Configure Network" substring synced with the "Configure Network" message below
-#: standalone/net_applet:50
-#, c-format
-msgid "Network is down on interface %s. Click on \"Configure Network\""
-msgstr "Mreža je zaustavljena na interfejsu %s. Kliknite na \"Podesi mrežu\""
-
-#: standalone/net_applet:56 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Connect %s"
-msgstr "Konektuj se na %s"
-
-#: standalone/net_applet:57 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Disconnect %s"
-msgstr "Prekini konekciju na %s"
-
-#: standalone/net_applet:58
-#, c-format
-msgid "Monitor Network"
-msgstr "Nadgledaj mrežu"
-
-#: standalone/net_applet:60
-#, c-format
-msgid "Manage wireless networks"
-msgstr ""
-
-#: standalone/net_applet:61
-#, c-format
-msgid "Configure Network"
-msgstr "Podesi mrežu"
-
-#: standalone/net_applet:63
-#, fuzzy, c-format
-msgid "Watched interface"
-msgstr "interfejsi"
-
-#: standalone/net_applet:93
-#, c-format
-msgid "Profiles"
-msgstr "Profili"
-
-#: standalone/net_applet:102
-#, c-format
-msgid "Get Online Help"
-msgstr "Dobijte pomoć online"
-
-#: standalone/net_applet:335
-#, c-format
-msgid "Interactive Firewall automatic mode"
-msgstr ""
-
-#: standalone/net_applet:340
-#, c-format
-msgid "Always launch on startup"
-msgstr "Uvijek pokreni na startu"
-
-#: standalone/net_applet:344
-#, fuzzy, c-format
-msgid "Wireless networks"
-msgstr "Bežična veza"
-
-#: standalone/net_applet:429
-#, fuzzy, c-format
-msgid "Interactive Firewall: intrusion detected"
-msgstr "Aktivni firewall: otkriven pokušaj upada"
-
-#: standalone/net_applet:442
-#, fuzzy, c-format
-msgid "What do you want to do with this attacker?"
-msgstr "Da li želite staviti napadača na crnu listu?"
-
-#: standalone/net_applet:445
-#, c-format
-msgid "Attack details"
-msgstr "Detalji napada"
-
-#: standalone/net_applet:449
-#, c-format
-msgid "Attack time: %s"
-msgstr "Vrijeme napada: %s"
-
-#: standalone/net_applet:450
-#, c-format
-msgid "Network interface: %s"
-msgstr "Mrežni interfejs: %s"
-
-#: standalone/net_applet:451
-#, c-format
-msgid "Attack type: %s"
-msgstr "Vrsta napada: %s"
-
-#: standalone/net_applet:452
-#, c-format
-msgid "Protocol: %s"
-msgstr "Protokol: %s"
-
-#: standalone/net_applet:453
-#, c-format
-msgid "Attacker IP address: %s"
-msgstr "IP adresa napadača: %s"
-
-#: standalone/net_applet:454
-#, c-format
-msgid "Attacker hostname: %s"
-msgstr "Ime računara napadača: %s"
-
-#: standalone/net_applet:457
-#, c-format
-msgid "Service attacked: %s"
-msgstr "Napadnuti servis: %s"
-
-#: standalone/net_applet:458
-#, c-format
-msgid "Port attacked: %s"
-msgstr "Napadnuti port: %s"
-
-#: standalone/net_applet:460
-#, c-format
-msgid "Type of ICMP attack: %s"
-msgstr "Vrsta ICMP napada: %s"
-
-#: standalone/net_applet:465
-#, c-format
-msgid "Always blacklist (do not ask again)"
-msgstr "Uvijek stavljaj na listu (bez pitanja)"
-
-#: standalone/net_monitor:57 standalone/net_monitor:62
-#, c-format
-msgid "Network Monitoring"
-msgstr "Nadzor mreže"
-
-#: standalone/net_monitor:98
-#, c-format
-msgid "Global statistics"
-msgstr "Globalne statistike"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Instantaneous"
-msgstr "Istog trena"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Average"
-msgstr "Prosjek"
-
-#: standalone/net_monitor:102
-#, c-format
-msgid ""
-"Sending\n"
-"speed:"
-msgstr ""
-"Brzina\n"
-"slanja:"
-
-#: standalone/net_monitor:103
-#, c-format
-msgid ""
-"Receiving\n"
-"speed:"
-msgstr ""
-"Brzina\n"
-"prijema:"
-
-#: standalone/net_monitor:107
-#, c-format
-msgid ""
-"Connection\n"
-"time: "
-msgstr ""
-"Vrijeme\n"
-"konekcije: "
-
-#: standalone/net_monitor:114
-#, c-format
-msgid "Use same scale for received and transmitted"
-msgstr "Koristi isti omjer za primljeno i poslano"
-
-#: standalone/net_monitor:133
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Molim sačekajte, probavam vašu konekciju..."
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Prekidam vezu na Internet "
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Spajam se na Internet "
-
-#: standalone/net_monitor:226
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Prekid veze sa Internetom nije uspio."
-
-#: standalone/net_monitor:227
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Prekid veze sa Internetom završen."
-
-#: standalone/net_monitor:229
-#, c-format
-msgid "Connection complete."
-msgstr "Konekcija završena."
-
-#: standalone/net_monitor:230
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandriva Linux Control Center."
-msgstr ""
-"Konekcija nije uspjela.\n"
-"Provjerite konfiguraciju u Mandriva Linux Kontrolnom centru."
-
-#: standalone/net_monitor:335
-#, c-format
-msgid "Color configuration"
-msgstr "Podešavanje boje"
-
-#: standalone/net_monitor:383 standalone/net_monitor:403
-#, c-format
-msgid "sent: "
-msgstr "poslano:"
-
-#: standalone/net_monitor:390 standalone/net_monitor:407
-#, c-format
-msgid "received: "
-msgstr "primljeno:"
-
-#: standalone/net_monitor:397
-#, c-format
-msgid "average"
-msgstr "prosjek"
-
-#: standalone/net_monitor:400
-#, c-format
-msgid "Local measure"
-msgstr "Lokalne mjere"
-
-#: standalone/net_monitor:461
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Upozorenje, otkrivena je druga Internet konekcija, možda preko vaše mreže"
-
-#: standalone/net_monitor:472
-#, c-format
-msgid "No internet connection configured"
-msgstr "Internet konekcije nije podešena"
-
-#: standalone/printerdrake:76
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "Čitam podatke instaliranih štampača..."
-
-#: standalone/printerdrake:128
-#, c-format
-msgid "%s Printer Management Tool"
-msgstr "%s Alat za upravljanje štampačima"
-
-#: standalone/printerdrake:142 standalone/printerdrake:143
-#: standalone/printerdrake:144 standalone/printerdrake:145
-#: standalone/printerdrake:153 standalone/printerdrake:154
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Actions"
-msgstr "/_Akcije"
-
-#: standalone/printerdrake:142 standalone/printerdrake:154
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Dodaj štampač"
-
-#: standalone/printerdrake:143
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Postavi kao _Podrazumijevano"
-
-#: standalone/printerdrake:144
-#, c-format
-msgid "/_Edit"
-msgstr "/_Edituj"
-
-#: standalone/printerdrake:145
-#, c-format
-msgid "/_Delete"
-msgstr "/_Izbriši"
-
-#: standalone/printerdrake:146
-#, c-format
-msgid "/_Expert mode"
-msgstr "/_Ekspertni mod"
-
-#: standalone/printerdrake:151
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Osvježi"
-
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_Podešavanje CUPSa"
-
-#: standalone/printerdrake:171
-#, fuzzy, c-format
-msgid "/Configure _Auto Administration"
-msgstr "Udaljena administracija"
-
-#: standalone/printerdrake:194
-#, c-format
-msgid "Search:"
-msgstr "Pretraga:"
-
-#: standalone/printerdrake:197
-#, c-format
-msgid "Apply filter"
-msgstr "Primijeni filter"
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Def."
-msgstr "Def."
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Printer Name"
-msgstr "Naziv štampača"
-
-#: standalone/printerdrake:224
-#, c-format
-msgid "Connection Type"
-msgstr "Vrsta konekcije"
-
-#: standalone/printerdrake:231
-#, c-format
-msgid "Server Name"
-msgstr "Ime servera"
-
-#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add Printer"
-msgstr "Dodaj štampač"
-
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Dodaj štampač na sistem"
-
-#. -PO: "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set as default"
-msgstr "Postavi kao podrazumijevano"
-
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Podesi izabrani štampač kao podrazumjevani"
-
-#: standalone/printerdrake:245
-#, c-format
-msgid "Edit selected printer"
-msgstr "Izmijeni izabrani štampač"
-
-#: standalone/printerdrake:248
-#, c-format
-msgid "Delete selected printer"
-msgstr "Obriši izabrani štampač"
-
-#: standalone/printerdrake:251
-#, c-format
-msgid "Refresh the list"
-msgstr "Osvježi listu"
-
-#. -PO: "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS"
-msgstr "Podešavanje CUPSa"
-
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Podesite CUPS sistem štampe"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Enabled"
-msgstr "Uključen"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Disabled"
-msgstr "Isključen"
-
-#: standalone/printerdrake:596
-#, c-format
-msgid "Authors: "
-msgstr "Autori: "
-
-#. -PO: here %s is the version number
-#: standalone/printerdrake:606
-#, c-format
-msgid "Printer Management %s"
-msgstr "Upravljanje štampačima %s"
-
-#: standalone/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 paket treba biti instaliran da biste mogli koristiti skenere.\n"
-"\n"
-"Da li želite instalirati SANE pakete?"
-
-#: standalone/scannerdrake:55
-#, c-format
-msgid "Aborting Scannerdrake."
-msgstr "Prekidam Scannerdrake."
-
-#: standalone/scannerdrake:60
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-"Ne mogu instalirati pakete koji su potrebni za podešavanje skenera pomoću "
-"Scannerdrake-a."
-
-#: standalone/scannerdrake:61
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Sada će biti pokrenut Scannerdrake."
-
-#: standalone/scannerdrake:67 standalone/scannerdrake:508
-#, c-format
-msgid "Searching for configured scanners..."
-msgstr "Tražim podešene skenere ..."
-
-#: standalone/scannerdrake:71 standalone/scannerdrake:512
-#, c-format
-msgid "Searching for new scanners..."
-msgstr "Tražim nove skenere ..."
-
-#: standalone/scannerdrake:79 standalone/scannerdrake:534
-#, c-format
-msgid "Re-generating list of configured scanners..."
-msgstr "Regeneriram listu podešenih skenera ..."
-
-#: standalone/scannerdrake:101
-#, c-format
-msgid "The %s is not supported by this version of %s."
-msgstr "%s nije podržan na ovoj verziji %s."
-
-#: standalone/scannerdrake:104
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s je pronađen na %s, da ga podesim automatski?"
-
-#: standalone/scannerdrake:116
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr "%s nije u bazi skenera, želite li ga ručno podesiti?"
-
-#: standalone/scannerdrake:131
-#, c-format
-msgid "Select a scanner model"
-msgstr "Izaberite model skenera"
-
-#: standalone/scannerdrake:132
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: standalone/scannerdrake:133
-#, c-format
-msgid "Detected model: %s"
-msgstr "Detektovan model: %s"
-
-#: standalone/scannerdrake:136
-#, c-format
-msgid "Port: %s"
-msgstr "Port: %s"
-
-#: standalone/scannerdrake:138 standalone/scannerdrake:141
-#, c-format
-msgid " (UNSUPPORTED)"
-msgstr " (NIJE PODRŽANO)"
-
-#: standalone/scannerdrake:144
-#, c-format
-msgid "The %s is not supported under Linux."
-msgstr "%s nije podržan na Linuxu."
-
-#: standalone/scannerdrake:171 standalone/scannerdrake:185
-#, c-format
-msgid "Do not install firmware file"
-msgstr "Nemoj instalirati firmware datoteku"
-
-#: standalone/scannerdrake:175 standalone/scannerdrake:227
-#, c-format
-msgid ""
-"It is possible that your %s needs its firmware to be uploaded everytime when "
-"it is turned on."
-msgstr ""
-"Moguće je da vaš %s zahtijeva da firmware bude uploadovan svaki put kada ga "
-"upalite."
-
-#: standalone/scannerdrake:176 standalone/scannerdrake:228
-#, c-format
-msgid "If this is the case, you can make this be done automatically."
-msgstr "Ako je to slučaj, ovo se može obavljati automatski."
-
-#: standalone/scannerdrake:177 standalone/scannerdrake:231
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware file for your scanner so that it "
-"can be installed."
-msgstr ""
-"Da biste to uradili, morate navesti firmware datoteku za vaš skener kako bi "
-"ona mogla biti instalirana."
-
-#: standalone/scannerdrake:178 standalone/scannerdrake:232
-#, 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 ""
-"Datoteku možete naći na CDu ili disketi koja je došla uz skener, na web "
-"stranici proizvođača ili na vašoj Windows particiji."
-
-#: standalone/scannerdrake:180 standalone/scannerdrake:239
-#, c-format
-msgid "Install firmware file from"
-msgstr "Instaliraj firmware datoteku iz"
-
-#: standalone/scannerdrake:200
-#, c-format
-msgid "Select firmware file"
-msgstr "Izaberite firmware datoteku"
-
-#: standalone/scannerdrake:203 standalone/scannerdrake:262
-#, c-format
-msgid "The firmware file %s does not exist or is unreadable!"
-msgstr "Firmware datoteka %s ne postoji ili se ne može čitati!"
-
-#: standalone/scannerdrake:226
-#, c-format
-msgid ""
-"It is possible that your scanners need their firmware to be uploaded "
-"everytime when they are turned on."
-msgstr ""
-"Moguće je da vaši skeneri zahtijevaju da firmware bude uploadovan svaki put "
-"kada ih upalite."
-
-#: standalone/scannerdrake:230
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware files for your scanners so that it "
-"can be installed."
-msgstr ""
-"Da biste to uradili, trebate navesti firmware datoteke za vaše skenere kako "
-"bi mogle biti instalirane."
-
-#: standalone/scannerdrake:233
-#, 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 ""
-"Ako ste već instalirali firmware vašeg skenera, možete ga updatovati ovdje "
-"tako što ćete zadati novu firmware datoteku."
-
-#: standalone/scannerdrake:235
-#, c-format
-msgid "Install firmware for the"
-msgstr "Instaliraj firmware za"
-
-#: standalone/scannerdrake:258
-#, c-format
-msgid "Select firmware file for the %s"
-msgstr "Izaberite firmware datoteku za %s"
-
-#: standalone/scannerdrake:276
-#, c-format
-msgid "Could not install the firmware file for the %s!"
-msgstr "Ne mogu instalirati firmware datoteku za %s!"
-
-#: standalone/scannerdrake:289
-#, c-format
-msgid "The firmware file for your %s was successfully installed."
-msgstr "Firmware datoteka za %s je uspješno instalirana."
-
-#: standalone/scannerdrake:299
-#, c-format
-msgid "The %s is unsupported"
-msgstr "%s nije podržan"
-
-#: standalone/scannerdrake:304
-#, 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 se mora podesiti iz printerdrake-a.\n"
-"Možete pokrenuti printerdrake iz %s Kontrolnog centra u odjeljku Hardware."
-
-#: standalone/scannerdrake:322
-#, c-format
-msgid "Setting up kernel modules..."
-msgstr "Podešavam module kernela..."
-
-#: standalone/scannerdrake:332 standalone/scannerdrake:339
-#: standalone/scannerdrake:369
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Auto prepoznavaj dostupne portove"
-
-#: standalone/scannerdrake:334 standalone/scannerdrake:380
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Molim izaberite uređaj gdje je priključen vaš %s"
-
-#: standalone/scannerdrake:335
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Napomena: Paralelni portovi ne mogu biti automatski istraženi)"
-
-#: standalone/scannerdrake:337 standalone/scannerdrake:382
-#, c-format
-msgid "choose device"
-msgstr "izaberite uređaj"
-
-#: standalone/scannerdrake:371
-#, c-format
-msgid "Searching for scanners..."
-msgstr "Tražim skenere ..."
-
-#: standalone/scannerdrake:407 standalone/scannerdrake:414
-#, c-format
-msgid "Attention!"
-msgstr "Pažnja!"
-
-#: standalone/scannerdrake:408
-#, 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 ""
-"Vaš %s se ne može potpuno automatski podesiti.\n"
-"\n"
-"Potrebno je ručno prilagođavanje. Molim editujte datoteku /etc/sane.d/%s."
-"conf. "
-
-#: standalone/scannerdrake:409 standalone/scannerdrake:418
-#, c-format
-msgid ""
-"More info in the driver's manual page. Run the command \"man sane-%s\" to "
-"read it."
-msgstr ""
-"Više informacija je u priručniku drajvera. Izvršite naredbu \"man sane-%s\" "
-"da biste je pročitali."
-
-#: standalone/scannerdrake:411 standalone/scannerdrake:420
-#, c-format
-msgid ""
-"After that you may scan documents using \"XSane\" or \"Kooka\" from "
-"Multimedia/Graphics in the applications menu."
-msgstr ""
-"Nakon toga možete skenirati dokumente koristeći \"XSane\" ili \"Kooka\" koji "
-"se nalaze u meniju Multimedija/Grafika."
-
-#: standalone/scannerdrake:415
-#, c-format
-msgid ""
-"Your %s has been configured, but it is possible that additional manual "
-"adjustments are needed to get it to work. "
-msgstr ""
-"Vaš %s je podešen, ali je moguće da će biti potrebna dodatna ručna podešenja "
-"da bi radio. "
-
-#: standalone/scannerdrake:416
-#, 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 ""
-"Ako se ne pojavi na listi podešenih skenera u glavnom prozoru programa "
-"Scannerdrake ili ako ne bude radio ispravno, "
-
-#: standalone/scannerdrake:417
-#, c-format
-msgid "edit the configuration file /etc/sane.d/%s.conf. "
-msgstr "editujte konfiguracionu datoteku /etc/sane.d/%s.conf. "
-
-#: standalone/scannerdrake:423
-#, 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 ""
-"Vaš %s je podešen.\n"
-"Sada možete skenirati dokumente koristeći \"XSane\" ili \"Kooka\" koji se "
-"nalaze u meniju Multimedija/Grafika."
-
-#: standalone/scannerdrake:448
-#, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr ""
-"Sljedeći skeneri\n"
-"\n"
-"%s\n"
-"su dostupni na vašem sistemu.\n"
-
-#: standalone/scannerdrake:449
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr ""
-"Sljedeći skener\n"
-"\n"
-"%s\n"
-"je dostupan na vašem sistemu.\n"
-
-#: standalone/scannerdrake:452 standalone/scannerdrake:455
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "Nisam pronašao nijedan skener na vašem sistemu.\n"
-
-#: standalone/scannerdrake:469
-#, c-format
-msgid "Search for new scanners"
-msgstr "Traženje novih skenera"
-
-#: standalone/scannerdrake:475
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Ručno dodaj skener"
-
-#: standalone/scannerdrake:482
-#, c-format
-msgid "Install/Update firmware files"
-msgstr "Instaliraj/Updatuj firmware datoteke"
-
-#: standalone/scannerdrake:488
-#, c-format
-msgid "Scanner sharing"
-msgstr "Dijeljenje skenera"
-
-#: standalone/scannerdrake:547 standalone/scannerdrake:712
-#, c-format
-msgid "All remote machines"
-msgstr "Svi udaljeni računari"
-
-#: standalone/scannerdrake:559 standalone/scannerdrake:862
-#, c-format
-msgid "This machine"
-msgstr "Na ovom računaru"
-
-#: standalone/scannerdrake:599
-#, 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 ""
-"Ovdje možete izabrati da li skeneri spojeni na ovaj računar trebaju biti "
-"dostupni udaljenim računarima i kojim računarima."
-
-#: standalone/scannerdrake:600
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"Ovdje takođe trebate odlučiti da li ovaj računar treba koristiti skenere na "
-"udaljenim računarima."
-
-#: standalone/scannerdrake:603
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr "Skeneri na ovom računari su dostupni drugim računarima"
-
-#: standalone/scannerdrake:605
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Dijeljenje skenera za računare:"
-
-#: standalone/scannerdrake:619
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Koristi skenere na udaljenim računarima"
-
-#: standalone/scannerdrake:622
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Koristi skenere na računaru:"
-
-#: standalone/scannerdrake:649 standalone/scannerdrake:721
-#: standalone/scannerdrake:871
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Dijeljenje lokalnih skenera"
-
-#: standalone/scannerdrake:650
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr "Ovo su računari kojima treba dozvoliti korištenje lokalnog skenera:"
-
-#: standalone/scannerdrake:661 standalone/scannerdrake:811
-#, c-format
-msgid "Add host"
-msgstr "Dodaj računar"
-
-#: standalone/scannerdrake:667 standalone/scannerdrake:817
-#, c-format
-msgid "Edit selected host"
-msgstr "Izmijeni izabrani računar"
-
-#: standalone/scannerdrake:676 standalone/scannerdrake:826
-#, c-format
-msgid "Remove selected host"
-msgstr "Ukloni izabrani računar"
-
-#: standalone/scannerdrake:700 standalone/scannerdrake:708
-#: standalone/scannerdrake:713 standalone/scannerdrake:759
-#: standalone/scannerdrake:850 standalone/scannerdrake:858
-#: standalone/scannerdrake:863 standalone/scannerdrake:909
-#, c-format
-msgid "Name/IP address of host:"
-msgstr "Ime/IP adresa računara:"
-
-#: standalone/scannerdrake:722 standalone/scannerdrake:872
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr "Izaberite računar kojem treba omogućiti pristup lokalnim skenerima:"
-
-#: standalone/scannerdrake:733 standalone/scannerdrake:883
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Morate unijeti ime računara ili IP.\n"
-
-#: standalone/scannerdrake:744 standalone/scannerdrake:894
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "Ovaj računar je već na listi, ne možete ga ponovo dodati.\n"
-
-#: standalone/scannerdrake:799
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Upotreba udaljenih skenera"
-
-#: standalone/scannerdrake:800
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "Ovo su računari sa koji treba koristiti skenere:"
-
-#: standalone/scannerdrake:957
-#, 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 mora biti instaliran za dijeljenje lokalnih skenera.\n"
-"\n"
-"Želite li instalirati saned paket?"
-
-#: standalone/scannerdrake:961 standalone/scannerdrake:965
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "Vaši skeneri neće biti dostupni putem mreže."
-
-#: standalone/service_harddrake:113
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "Uklonjeni su neki uređaji u \"%s\" klasi hardvera:\n"
-
-#: standalone/service_harddrake:114
-#, c-format
-msgid "- %s was removed\n"
-msgstr "- %s je uklonjen\n"
-
-#: standalone/service_harddrake:117
-#, c-format
-msgid "Some devices were added: %s\n"
-msgstr "Dodani su neki uređaji: %s\n"
-
-#: standalone/service_harddrake:118
-#, c-format
-msgid "- %s was added\n"
-msgstr "- %s je dodan\n"
-
-#: standalone/service_harddrake:235
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "Hardversko probanje u toku"
-
-#: standalone/service_harddrake_confirm:7
-#, c-format
-msgid "Hardware changes in \"%s\" class (%s seconds to answer)"
-msgstr "Hardverske izmjene u klasi \"%s\" (%s sekundi za odgovor)"
-
-#: standalone/service_harddrake_confirm:8
-#, c-format
-msgid "Do you want to run the appropriate config tool?"
-msgstr "Želite li pokrenuti odgovarajući konfiguracijski alat ?"
-
-#: steps.pm:14
-#, c-format
-msgid "Language"
-msgstr "Jezik"
-
-#: steps.pm:15
-#, c-format
-msgid "License"
-msgstr "Licenca"
-
-#: steps.pm:16
-#, c-format
-msgid "Configure mouse"
-msgstr "Podešavanje miša"
-
-#: steps.pm:17
-#, c-format
-msgid "Hard drive detection"
-msgstr "Prepoznavanje hard diska"
-
-#: steps.pm:18
-#, c-format
-msgid "Select installation class"
-msgstr "Izaberite klasu instalacije"
-
-#: steps.pm:19
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Izaberite vašu tastaturu"
-
-#: steps.pm:22
-#, c-format
-msgid "Format partitions"
-msgstr "Formatiranje particija"
-
-#: steps.pm:23
-#, c-format
-msgid "Choose packages to install"
-msgstr "Izaberite pakete za instalaciju"
-
-#: steps.pm:24
-#, c-format
-msgid "Install system"
-msgstr "Instalacija sistema"
-
-#: steps.pm:25
-#, c-format
-msgid "Administrator password"
-msgstr "Administratorska šifra"
-
-#: steps.pm:26
-#, c-format
-msgid "Add a user"
-msgstr "Dodavanje korisnika"
-
-#: steps.pm:27
-#, c-format
-msgid "Configure networking"
-msgstr "Podešavanje mreže"
-
-#: steps.pm:28
-#, c-format
-msgid "Install bootloader"
-msgstr "Instalacija bootloadera"
-
-#: steps.pm:29
-#, c-format
-msgid "Configure X"
-msgstr "Podešavanje X"
-
-#: steps.pm:31
-#, c-format
-msgid "Configure services"
-msgstr "Podešavanje servisa"
-
-#: steps.pm:32
-#, c-format
-msgid "Install updates"
-msgstr "Instaliraj update"
-
-#: steps.pm:33
-#, c-format
-msgid "Exit install"
-msgstr "Napusti instalaciju"
-
-#: ugtk2.pm:899
+#: ugtk2.pm:788
#, c-format
msgid "Is this correct?"
msgstr "Da li je ovo ispravno?"
-#: ugtk2.pm:959
+#: ugtk2.pm:848
#, c-format
msgid "No file chosen"
msgstr "Nije izabrana datoteka"
-#: ugtk2.pm:961
+#: ugtk2.pm:850
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Izabrali ste datoteku, a ne direktorij"
-#: ugtk2.pm:963
+#: ugtk2.pm:852
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Izabrali ste direktorij, a ne datoteku"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such directory"
msgstr "Nema tog direktorija"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such file"
msgstr "Nema te datoteke"
-#: ugtk2.pm:1046
+#: ugtk2.pm:933
#, c-format
msgid "Expand Tree"
msgstr "Proširi stablo"
-#: ugtk2.pm:1047
+#: ugtk2.pm:934
#, c-format
msgid "Collapse Tree"
msgstr "Smanji stablo"
-#: ugtk2.pm:1048
+#: ugtk2.pm:935
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "Ravno / složeno po grupama"
@@ -26872,1865 +6799,23 @@ msgstr ""
msgid "Installation failed"
msgstr "Instalacija nije uspjela"
-#~ msgid ""
-#~ "Copyright (C) 2001-2002 by Mandriva \n"
-#~ "\n"
-#~ "\n"
-#~ " DUPONT Sebastien (original version)\n"
-#~ "\n"
-#~ " CHAUMETTE Damien <dchaumette@mandriva.com>\n"
-#~ "\n"
-#~ " VIGNAUD Thierry <tvignaud@mandriva.com>"
-#~ msgstr ""
-#~ "Copyright (C) 2001-2002 by Mandriva \n"
-#~ "\n"
-#~ "\n"
-#~ " DUPONT Sebastien (originalna verzija)\n"
-#~ "\n"
-#~ " CHAUMETTE Damien <dchaumette@mandriva.com>\n"
-#~ "\n"
-#~ " VIGNAUD Thierry <tvignaud@mandriva.com>"
-
-#~ msgid "click here if you are sure."
-#~ msgstr "kliknite ovdje ako ste sigurni."
-
-#~ msgid "here if no."
-#~ msgstr "ovdje ako ne."
-
-#~ msgid "Remove List"
-#~ msgstr "Pobriši listu"
-
-#~ msgid "Account:"
-#~ msgstr "Račun:"
-
-#~ msgid "Hostname:"
-#~ msgstr "Ime računara:"
-
-#, fuzzy
-#~ msgid "Cancel setup"
-#~ msgstr "Odustani"
-
-#~ msgid ""
-#~ " - Create Etherboot Enabled Boot Images:\n"
-#~ " \tTo boot a kernel via etherboot, a special kernel/initrd image "
-#~ "must be created.\n"
-#~ " \tmkinitrd-net does much of this work and drakTermServ is just a "
-#~ "graphical \n"
-#~ " \tinterface to help manage/customize these images. To create the "
-#~ "file \n"
-#~ " \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as "
-#~ "an include in \n"
-#~ " \tdhcpd.conf, you should create the etherboot images for at least "
-#~ "one full kernel."
-#~ msgstr ""
-#~ " - Create Etherboot Enabled Boot Images:\n"
-#~ " \tTo boot a kernel via etherboot, a special kernel/initrd image "
-#~ "must be created.\n"
-#~ " \tmkinitrd-net does much of this work and drakTermServ is just a "
-#~ "graphical \n"
-#~ " \tinterface to help manage/customize these images. To create the "
-#~ "file \n"
-#~ " \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as "
-#~ "an include in \n"
-#~ " \tdhcpd.conf, you should create the etherboot images for at least "
-#~ "one full kernel."
-
-#~ msgid ""
-#~ " - Maintain /etc/dhcpd.conf:\n"
-#~ " \tTo net boot clients, each client needs a dhcpd.conf entry, "
-#~ "assigning an IP \n"
-#~ " \taddress and net boot images to the machine. drakTermServ helps "
-#~ "create/remove \n"
-#~ " \tthese entries.\n"
-#~ "\t\t\t\n"
-#~ " \t(PCI cards may omit the image - etherboot will request the "
-#~ "correct image. \n"
-#~ "\t\t\tYou should also consider that when etherboot looks for the images, "
-#~ "it expects \n"
-#~ "\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk."
-#~ "nbi).\n"
-#~ "\t\t\t \n"
-#~ " \tA typical dhcpd.conf stanza to support a diskless client looks "
-#~ "like:"
-#~ msgstr ""
-#~ " - Maintain /etc/dhcpd.conf:\n"
-#~ " \tTo net boot clients, each client needs a dhcpd.conf entry, "
-#~ "assigning an IP \n"
-#~ " \taddress and net boot images to the machine. drakTermServ helps "
-#~ "create/remove \n"
-#~ " \tthese entries.\n"
-#~ "\t\t\t\n"
-#~ " \t(PCI cards may omit the image - etherboot will request the "
-#~ "correct image. \n"
-#~ "\t\t\tYou should also consider that when etherboot looks for the images, "
-#~ "it expects \n"
-#~ "\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk."
-#~ "nbi).\n"
-#~ "\t\t\t \n"
-#~ " \tA typical dhcpd.conf stanza to support a diskless client looks "
-#~ "like:"
-
-#~ msgid ""
-#~ " While you can use a pool of IP addresses, rather than setup a "
-#~ "specific entry for\n"
-#~ " a client machine, using a fixed address scheme facilitates using "
-#~ "the functionality\n"
-#~ " of client-specific configuration files that ClusterNFS provides.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#type' entry is only used by drakTermServ. Clients "
-#~ "can either be 'thin'\n"
-#~ " or 'fat'. Thin clients run most software on the server via "
-#~ "XDMCP, while fat clients run \n"
-#~ " most software on the client machine. A special inittab, %s is\n"
-#~ " written for thin clients. System config files xdm-config, kdmrc, "
-#~ "and gdm.conf are \n"
-#~ " modified if thin clients are used, to enable XDMCP. Since there "
-#~ "are security issues in \n"
-#~ " using XDMCP, hosts.deny and hosts.allow are modified to limit "
-#~ "access to the local\n"
-#~ " subnet.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#hdw_config' entry is also only used by drakTermServ. "
-#~ "Clients can either \n"
-#~ " be 'true' or 'false'. 'true' enables root login at the client "
-#~ "machine and allows local \n"
-#~ " hardware configuration of sound, mouse, and X, using the 'drak' "
-#~ "tools. This is enabled \n"
-#~ " by creating separate config files associated with the client's IP "
-#~ "address and creating \n"
-#~ " read/write mount points to allow the client to alter the file. "
-#~ "Once you are satisfied \n"
-#~ " with the configuration, you can remove root login privileges from "
-#~ "the client.\n"
-#~ "\t\t\t\n"
-#~ " Note: You must stop/start the server after adding or changing "
-#~ "clients."
-#~ msgstr ""
-#~ " While you can use a pool of IP addresses, rather than setup a "
-#~ "specific entry for\n"
-#~ " a client machine, using a fixed address scheme facilitates using "
-#~ "the functionality\n"
-#~ " of client-specific configuration files that ClusterNFS provides.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#type' entry is only used by drakTermServ. Clients "
-#~ "can either be 'thin'\n"
-#~ " or 'fat'. Thin clients run most software on the server via "
-#~ "XDMCP, while fat clients run \n"
-#~ " most software on the client machine. A special inittab, %s is\n"
-#~ " written for thin clients. System config files xdm-config, kdmrc, "
-#~ "and gdm.conf are \n"
-#~ " modified if thin clients are used, to enable XDMCP. Since there "
-#~ "are security issues in \n"
-#~ " using XDMCP, hosts.deny and hosts.allow are modified to limit "
-#~ "access to the local\n"
-#~ " subnet.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#hdw_config' entry is also only used by drakTermServ. "
-#~ "Clients can either \n"
-#~ " be 'true' or 'false'. 'true' enables root login at the client "
-#~ "machine and allows local \n"
-#~ " hardware configuration of sound, mouse, and X, using the 'drak' "
-#~ "tools. This is enabled \n"
-#~ " by creating separate config files associated with the client's IP "
-#~ "address and creating \n"
-#~ " read/write mount points to allow the client to alter the file. "
-#~ "Once you are satisfied \n"
-#~ " with the configuration, you can remove root login privileges from "
-#~ "the client.\n"
-#~ "\t\t\t\n"
-#~ " Note: You must stop/start the server after adding or changing "
-#~ "clients."
-
-#~ msgid ""
-#~ " - Maintain /etc/exports:\n"
-#~ " \tClusternfs allows export of the root filesystem to diskless "
-#~ "clients. drakTermServ\n"
-#~ " \tsets up the correct entry to allow anonymous access to the root "
-#~ "filesystem from\n"
-#~ " \tdiskless clients.\n"
-#~ "\n"
-#~ " \tA typical exports entry for clusternfs is:\n"
-#~ " \t\t\n"
-#~ " \t/\t\t\t\t\t(ro,all_squash)\n"
-#~ " \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-#~ "\t\t\t\n"
-#~ " \tWith SUBNET/MASK being defined for your network."
-#~ msgstr ""
-#~ " - Maintain /etc/exports:\n"
-#~ " \tClusternfs allows export of the root filesystem to diskless "
-#~ "clients. drakTermServ\n"
-#~ " \tsets up the correct entry to allow anonymous access to the root "
-#~ "filesystem from\n"
-#~ " \tdiskless clients.\n"
-#~ "\n"
-#~ " \tA typical exports entry for clusternfs is:\n"
-#~ " \t\t\n"
-#~ " \t/\t\t\t\t\t(ro,all_squash)\n"
-#~ " \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-#~ "\t\t\t\n"
-#~ " \tWith SUBNET/MASK being defined for your network."
-
-#~ msgid ""
-#~ " - Maintain %s:\n"
-#~ " \tFor users to be able to log into the system from a diskless "
-#~ "client, their entry in\n"
-#~ " \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
-#~ " \thelps in this respect by adding or removing system users from "
-#~ "this file."
-#~ msgstr ""
-#~ " - Čuvaj %s:\n"
-#~ " \t\tDa bi se korisnici mogli prijaviti na sistem sa klijenta bez "
-#~ "diska, njihova stavka u\n"
-#~ " \t\t/etc/shadow se mora kopirati u %s. drakTermServ pomaže\n"
-#~ " \t\tu ovome tako što dodaje i briše sistemske korisnike iz ove "
-#~ "datoteke."
-
-#~ msgid ""
-#~ " - Per client %s:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tdrakTermServ will help create these files."
-#~ msgstr ""
-#~ " - Per client %s:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tdrakTermServ will help create these files."
-
-#~ msgid ""
-#~ " - Per client system configuration files:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tclients can customize files such as /etc/modules.conf, /etc/"
-#~ "sysconfig/mouse, \n"
-#~ " \t/etc/sysconfig/keyboard on a per-client basis.\n"
-#~ "\n"
-#~ " Note: Enabling local client hardware configuration does enable "
-#~ "root login to the terminal \n"
-#~ " server on each client machine that has this feature enabled. "
-#~ "Local configuration can be\n"
-#~ " turned back off, retaining the configuration files, once the "
-#~ "client machine is configured."
-#~ msgstr ""
-#~ " - Per client system configuration files:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tclients can customize files such as /etc/modules.conf, /etc/"
-#~ "sysconfig/mouse, \n"
-#~ " \t/etc/sysconfig/keyboard on a per-client basis.\n"
-#~ "\n"
-#~ " Note: Enabling local client hardware configuration does enable "
-#~ "root login to the terminal \n"
-#~ " server on each client machine that has this feature enabled. "
-#~ "Local configuration can be\n"
-#~ " turned back off, retaining the configuration files, once the "
-#~ "client machine is configured."
-
-#~ msgid ""
-#~ " - /etc/xinetd.d/tftp:\n"
-#~ " \tdrakTermServ will configure this file to work in conjunction "
-#~ "with the images created\n"
-#~ " \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve "
-#~ "up the boot image to \n"
-#~ " \teach diskless client.\n"
-#~ "\n"
-#~ " \tA typical TFTP configuration file looks like:\n"
-#~ " \t\t\n"
-#~ " \tservice tftp\n"
-#~ "\t\t\t{\n"
-#~ " disable = no\n"
-#~ " socket_type = dgram\n"
-#~ " protocol = udp\n"
-#~ " wait = yes\n"
-#~ " user = root\n"
-#~ " server = /usr/sbin/in.tftpd\n"
-#~ " server_args = -s /var/lib/tftpboot\n"
-#~ " \t}\n"
-#~ " \t\t\n"
-#~ " \tThe changes here from the default installation are changing the "
-#~ "disable flag to\n"
-#~ " \t'no' and changing the directory path to /var/lib/tftpboot, "
-#~ "where mkinitrd-net\n"
-#~ " \tputs its images."
-#~ msgstr ""
-#~ " - /etc/xinetd.d/tftp:\n"
-#~ " \tdrakTermServ will configure this file to work in conjunction "
-#~ "with the images created\n"
-#~ " \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve "
-#~ "up the boot image to \n"
-#~ " \teach diskless client.\n"
-#~ "\n"
-#~ " \tA typical TFTP configuration file looks like:\n"
-#~ " \t\t\n"
-#~ " \tservice tftp\n"
-#~ "\t\t\t{\n"
-#~ " disable = no\n"
-#~ " socket_type = dgram\n"
-#~ " protocol = udp\n"
-#~ " wait = yes\n"
-#~ " user = root\n"
-#~ " server = /usr/sbin/in.tftpd\n"
-#~ " server_args = -s /var/lib/tftpboot\n"
-#~ " \t}\n"
-#~ " \t\t\n"
-#~ " \tThe changes here from the default installation are changing the "
-#~ "disable flag to\n"
-#~ " \t'no' and changing the directory path to /var/lib/tftpboot, "
-#~ "where mkinitrd-net\n"
-#~ " \tputs its images."
-
-#~ msgid "Configuration changed - restart clusternfs/dhcpd?"
-#~ msgstr "Konfiguracija je promijenjena - da restartujem clusternfs/dhcpd?"
-
-#~ msgid ""
-#~ "The following media have been found and will be used during install: %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do you have a supplementary installation media to configure?"
-#~ msgstr ""
-#~ "Sljedeći mediji su pronađeni i biće korišteni prilikom instalacije: %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Želite li podesiti ijedan dodatni instalacioni medij?"
-
-#~ msgid "Create PXE images."
-#~ msgstr "Napravi PXE imidže (images)."
-
-#~ msgid ""
-#~ "Allow an ordinary user to mount the file system. The\n"
-#~ "name of the mounting user is written to mtab so that he can unmount the "
-#~ "file\n"
-#~ "system again. This option implies the options noexec, nosuid, and nodev\n"
-#~ "(unless overridden by subsequent options, as in the option line\n"
-#~ "user,exec,dev,suid )."
-#~ msgstr ""
-#~ "Omogući običnom korisniku da montira datotečni sistem.\n"
-#~ "Ime korisnika će biti zapisano u mtab tako da on može i demontirati\n"
-#~ "datotečni sistem. Ova opcija podrazumijeva opcije noexec, nosuid i\n"
-#~ "nodev (osim ako to ne izmijenite kasnijim opcijama, kao u slučaju\n"
-#~ "linije user,exec,dev,suid )."
-
-#~ msgid "Unknown Model"
-#~ msgstr "Nepoznat model"
-
-#~ msgid ""
-#~ "Either with the newer HPLIP which allows printer maintenance through the "
-#~ "easy-to-use graphical application \"Toolbox\" and four-edge full-bleed on "
-#~ "newer PhotoSmart models "
-#~ msgstr ""
-#~ "Ili koristeći noviji HPLIP koji dozvoljava održavanje kroz jednostavnu "
-#~ "grafičku aplikaciju \"Toolbox\" i four-edge full-bleed mogućnost na "
-#~ "novijim PhotoSmart modelima "
-
-#~ msgid ""
-#~ "or with the older HPOJ which allows only scanner and memory card access, "
-#~ "but could help you in case of failure of HPLIP. "
-#~ msgstr ""
-#~ "ili sa starijim HPOJ koji dozvoljava samo skeniranje i pristup "
-#~ "memorijskoj kartici, ali može biti koristan u slučaju problema sa HPLIP. "
-
-#~ msgid "HPOJ"
-#~ msgstr "HPOJ"
-
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3000/3200/3300/4345 with scanner, DeskJet 450, "
-#~ "Sony IJP-V100), an HP PhotoSmart or an HP LaserJet 2200?"
-#~ msgstr ""
-#~ "Da li je vaš štampač multifunkcijski uređaj od HPa ili Sony-ja "
-#~ "(OfficeJet, PSC, LaserJet 1100/1200/1220/3000/3200/3300/4345 sa skenerom, "
-#~ "DeskJet 450, Sony IJP-V100), ili HP PhotoSmart ili HP LaserJet 2200?"
-
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Instaliram mtools pakete..."
-
-#~ msgid "Photo memory card access on the %s will not be possible."
-#~ msgstr "Pristup foto memorijskoj kartici na %s neće biti moguć."
-
-#~ msgid "Scanning on your HP multi-function device"
-#~ msgstr "Skeniram pomoću HP multifunkcijskog uređaja"
-
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr ""
-#~ "Pristup foto memorijskoj kartici na vašem HP multifunkcionalnom uređaju"
-
-#~ msgid "Printing/Scanning/Photo Cards on \"%s\""
-#~ msgstr "Štampam/skeniram/foto kartica na \"%s\""
-
-#~ msgid "Printing/Scanning on \"%s\""
-#~ msgstr "Štampam/skeniram na \"%s\""
-
-#~ msgid "Printing/Photo Card Access on \"%s\""
-#~ msgstr "Štampam/pristupam foto kartici na \"%s\""
-
-#~ msgid ""
-#~ "Your multi-function device was configured automatically to be able to "
-#~ "scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to "
-#~ "specify the scanner when you have more than one) from the command line or "
-#~ "with the graphical interfaces \"xscanimage\" or \"xsane\". If you are "
-#~ "using the GIMP, you can also scan by choosing the appropriate point in "
-#~ "the \"File\"/\"Acquire\" menu. Call also \"man scanimage\" on the command "
-#~ "line to get more information.\n"
-#~ "\n"
-#~ "You do not need to run \"scannerdrake\" for setting up scanning on this "
-#~ "device, you only need to use \"scannerdrake\" if you want to share the "
-#~ "scanner on the network."
-#~ msgstr ""
-#~ "Vaš višenamjenski uređaj je automatski konfigurisan kako bi mogao "
-#~ "skenirati. Sada možete skenirati sa komandne linije pomoću komande "
-#~ "\"scanimage\" (\"scanimage -d hp:%s\" kako biste naveli scanner ako imate "
-#~ "više od jednog) ili koristeći grafičke okoline \"xscanimage\" ili \"xsane"
-#~ "\". Ako koristite GIMP, možete također skenirati koristeći odgovarajuću "
-#~ "stavku u meniju \"File\"/\"Acquire\". Za više informacija, pogledajte još "
-#~ "i \"man scanimage\" na komandnoj liniji (\"#scanimage\" u Konqueroru).\n"
-#~ "\n"
-#~ "Nije potrebno pokretati \"scannerdrake\" za podešavanje skeniranja na "
-#~ "ovom uređaju, \"scannerdrake\" vam je potreban samo ako želite dijeliti "
-#~ "skener na lokalnoj mreži."
-
-#~ msgid ""
-#~ "Your printer was configured automatically to give you access to the photo "
-#~ "card drives from your PC. Now you can access your photo cards using the "
-#~ "graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -"
-#~ "> \"MTools File Manager\") or the command line utilities \"mtools"
-#~ "\" (enter \"man mtools\" on the command line for more info). You find the "
-#~ "card's file system under the drive letter \"p:\", or subsequent drive "
-#~ "letters when you have more than one HP printer with photo card drives. In "
-#~ "\"MtoolsFM\" you can switch between drive letters with the field at the "
-#~ "upper-right corners of the file lists."
-#~ msgstr ""
-#~ "Vaš štampač je podešen automatski kako bi vam dao pristup memoriji foto "
-#~ "kartice sa PCa. Sada možete pristupiti vašim foto karticama koristeći "
-#~ "grafički program \"MToolsFM\" (Meni: \"Programi\" -> \"Datotečni alati\" -"
-#~ "> \"MTools File Manager\") ili alat komandne linije \"mtools\" (kucajte "
-#~ "\"man mtools\" na komandnoj liniji za više informacija). Datotečni sistem "
-#~ "vaše kartice ćete naći pod slovom \"p:\", ili pod narednim slovima ako "
-#~ "imate više od jednog HP štampača sa jedinicom za foto kartice. U "
-#~ "\"MToolsFM\" promijeniti slovo drajva koristeći polje u gornjem desnom "
-#~ "uglu liste datoteka."
-
-#~ msgid "Custom setup/crontab entry:"
-#~ msgstr "Vlastito podešavanje/crontab unos:"
-
-#~ msgid "Note that currently all 'net' media also use the hard drive."
-#~ msgstr ""
-#~ "Obratite pažnju da trenutno svi 'net' mediji takođe koriste hard disk."
-
-#~ msgid ""
-#~ "Before installing any fonts, be sure that you have the right to use and "
-#~ "install them on your system.\n"
-#~ "\n"
-#~ "-You can install the fonts the normal way. In rare cases, bogus fonts may "
-#~ "hang up your X Server."
-#~ msgstr ""
-#~ "Prije instaliranja fontova, provjerite da li imate dozvole da ih "
-#~ "koristite i instalirate na va[em sistemu.\n"
-#~ "\n"
-#~ "-Možete instalirati fontove koristeći uobičajen način. U rijetkim "
-#~ "slučajevima, neispravni fontovi mogu zaglaviti vaš X Server."
-
-#~ msgid ""
-#~ "%s cannot be displayed \n"
-#~ ". No Help entry of this type\n"
-#~ msgstr ""
-#~ "Ne mogu prikazati %s \n"
-#~ ". Nema datoteke za Pomoć pod ovim imenom\n"
-
-#~ msgid ""
-#~ "\n"
-#~ "Please check all options that you need.\n"
-#~ msgstr ""
-#~ "\n"
-#~ "Molim uključite sve potrebne opcije.\n"
-
-#~ msgid ""
-#~ "These options can backup and restore all files in your /etc directory.\n"
-#~ msgstr ""
-#~ "Ove opcije mogu spasiti ili vratiti sve datoteke u vašem /etc "
-#~ "direktoriju.\n"
-
-#~ msgid ""
-#~ "With this option you will be able to restore any version\n"
-#~ " of your /etc directory."
-#~ msgstr ""
-#~ "Sa ovom opcijom bićete u mogućnosti da vratite bilo koju\n"
-#~ " verziju vašeg /etc direktorija."
-
-#~ msgid "http://www.mandrivalinux.com/en/errata.php3"
-#~ msgstr "http://www.mandrivalinux.com/en/errata.php3"
-
-#~ msgid ""
-#~ "Kerberos is a secure system for providing network authentication services."
-#~ msgstr ""
-#~ "Kerberos je siguran sistem koji pruža uslugu mrežne provjere identiteta."
-
-#~ msgid "Use Idmap for store UID/SID "
-#~ msgstr "Koristi Idmap za smještaj UID/SID "
-
-#~ msgid "Default Idmap "
-#~ msgstr "Podrazumijevani Idmap "
-
-#~ msgid "Please wait, preparing installation..."
-#~ msgstr "Molim sačekajte, pripremam instalaciju..."
-
-#~ msgid "Installing package %s"
-#~ msgstr "Instaliram paket %s"
-
-#~ msgid "<b>What is Mandriva Linux?</b>"
-#~ msgstr "<b>Šta je Mandriva Linux?</b>"
-
-#~ msgid "Welcome to <b>Mandriva Linux</b>!"
-#~ msgstr "Dobro došli u <b>Mandriva Linux</b>!"
-
-#~ msgid ""
-#~ "Mandriva Linux is a <b>Linux distribution</b> that comprises the core of "
-#~ "the system, called the <b>operating system</b> (based on the Linux "
-#~ "kernel) together with <b>a lot of applications</b> meeting every need you "
-#~ "could even think of."
-#~ msgstr ""
-#~ "Mandriva Linux je <b>Linux distribucija</b> koja sadržava jezgru sistema, "
-#~ "koja se naziva <b>operativni sistem</b> (baziranu na Linux kernelu) kao i "
-#~ "<b>mnoštvo programa</b> koji zadovoljavaju sve potrebe koje vam mogu "
-#~ "pasti na pamet."
-
-#~ msgid ""
-#~ "Mandriva Linux is the most <b>user-friendly</b> Linux distribution today. "
-#~ "It is also one of the <b>most widely used</b> Linux distributions "
-#~ "worldwide!"
-#~ msgstr ""
-#~ "Mandriva Linux je <b>najprijateljskija</b> Linux distribucija danas. On "
-#~ "je takođe i jedna od <b>najšire korištenih</b> Linux distribucija na "
-#~ "svijetu!"
-
-#~ msgid "<b>Open Source</b>"
-#~ msgstr "<b>Open Source</b>"
-
-#~ msgid "Welcome to the <b>world of open source</b>!"
-#~ msgstr "Dobro došli u svijet <b>otvorenog izvornog koda</b>!"
-
-#~ msgid ""
-#~ "Mandriva Linux is committed to the open source model. This means that "
-#~ "this new release is the result of <b>collaboration</b> between "
-#~ "<b>Mandriva's team of developers</b> and the <b>worldwide community</b> "
-#~ "of Mandriva Linux contributors."
-#~ msgstr ""
-#~ "Mandriva Linux u potpunosti podržava open-source model. To znači da je "
-#~ "ovo novo izdanje je rezultat <b>saradnje</b> između <b>Mandriva-ovog tima "
-#~ "programera</b> i <b>međunarodne zajednice</b> Mandriva Linux saradnika."
-
-#~ msgid ""
-#~ "We would like to <b>thank</b> everyone who participated in the "
-#~ "development of this latest release."
-#~ msgstr ""
-#~ "Željeli bismo se <b>zahvaliti</b> svima koji su sudjelovali u razvoju "
-#~ "ovog najnovijeg izdanja."
-
-#~ msgid "<b>The GPL</b>"
-#~ msgstr "<b>GPL - General Public License</b>"
-
-#~ msgid ""
-#~ "Most of the software included in the distribution and all of the Mandriva "
-#~ "Linux tools are licensed under the <b>General Public License</b>."
-#~ msgstr ""
-#~ "Većina softvera koji je uključen u ovoj distribuciji, kao i svi Mandriva "
-#~ "Linux alati, koriste <b>GNU General Public License</b>."
-
-#~ msgid ""
-#~ "The GPL is at the heart of the open source model; it grants everyone the "
-#~ "<b>freedom</b> to use, study, distribute and improve the software any way "
-#~ "they want, provided they make the results available."
-#~ msgstr ""
-#~ "GPL je u jezgru open source modela; on garantuje svima <b>slobodu</b> da "
-#~ "koriste, proučavaju, distribuiraju i poboljšavaju softver na bilo koji "
-#~ "način, pod uslovom da rezultate svog rada omoguće i drugima."
-
-#~ msgid ""
-#~ "The main benefit of this is that the number of developers is virtually "
-#~ "<b>unlimited</b>, resulting in <b>very high quality</b> software."
-#~ msgstr ""
-#~ "Osnovna korist ovoga je da je broj programera praktički <b>neograničen</"
-#~ "b>, što rezultira softverom <b>vrlo visoke kvalitete</b>."
-
-#~ msgid "<b>Join the Community</b>"
-#~ msgstr "<b>Uključite se u zajednicu</b>"
-
-#~ msgid ""
-#~ "Mandriva Linux has one of the <b>biggest communities</b> of users and "
-#~ "developers. The role of such a community is very wide, ranging from bug "
-#~ "reporting to the development of new applications. The community plays a "
-#~ "<b>key role</b> in the Mandriva Linux world."
-#~ msgstr ""
-#~ "Mandriva Linux ima jednu od <b>najvećih zajednica</b> korisnika i "
-#~ "programera. Uloga takve zajednice je raznolika, počevši od prijavljivanja "
-#~ "bugova do razvoja novih programa. Zajednica igra <b>ključnu ulogu</b> u "
-#~ "svijetu Mandriva Linuxa."
-
-#~ msgid ""
-#~ "To <b>learn more</b> about our dynamic community, please visit <b>www."
-#~ "mandrivalinux.com</b> or directly <b>www.mandrivalinux.com/en/cookerdevel."
-#~ "php3</b> if you would like to get <b>involved</b> in the development."
-#~ msgstr ""
-#~ "Da biste <b>naučili više</b> o našoj dinamičnoj zajednici, molimo "
-#~ "posjetite <b>www.mandrivalinux.com</b> ili direktno <b>www.mandrivalinux."
-#~ "com/en/cookerdevel.php3</b> i <b>uključite se</b> u razvoj."
-
-#~ msgid "<b>Download Version</b>"
-#~ msgstr "<b>Download verzija</b>"
-
-#~ msgid ""
-#~ "You are now installing <b>Mandriva Linux Download</b>. This is the free "
-#~ "version that Mandriva wants to keep <b>available to everyone</b>."
-#~ msgstr ""
-#~ "Trenutno instalirate <b>Mandriva Linux Download</b>. To je besplatna "
-#~ "verzija koju Mandriva želi zadržati <b>dostupnom svima</b>."
-
-#~ msgid ""
-#~ "The Download version <b>cannot include</b> all the software that is not "
-#~ "open source. Therefore, you will not find in the Download version:"
-#~ msgstr ""
-#~ "Download verzija <b>ne smije uključivati</b> nijedan softverski proizvod "
-#~ "koji nije open-source. Stoga, u Download verziji nećete naći:"
-
-#~ msgid ""
-#~ "\t* <b>Proprietary drivers</b> (such as drivers for NVIDIA®, ATI™, etc.)."
-#~ msgstr ""
-#~ "\t* <b>Vlasničke drajvere</b> (kao što su drajveri za NVIDIA®, ATI™, "
-#~ "winmodeme itd.)."
-
-#~ msgid ""
-#~ "\t* <b>Proprietary software</b> (such as Acrobat® Reader®, RealPlayer®, "
-#~ "Flash™, etc.)."
-#~ msgstr ""
-#~ "\t* <b>Vlasnički softver</b> (kao što su Acrobat® Reader®, RealPlayer®, "
-#~ "Flash™, itd.)."
-
-#~ msgid ""
-#~ "You will not have access to the <b>services included</b> in the other "
-#~ "Mandriva products either."
-#~ msgstr ""
-#~ "Takođe nećete imati pristup <b>servisima</b> koji su sastavni dio nekih "
-#~ "drugih Mandriva proizvoda."
-
-#~ msgid "<b>Discovery, Your First Linux Desktop</b>"
-#~ msgstr "<b>Discovery, Tvoj prvi Linux Desktop</b>"
-
-#~ msgid "You are now installing <b>Mandriva Linux Discovery</b>."
-#~ msgstr "Trenutno instalirate <b>Mandriva Linux Discovery</b>."
-
-#~ msgid ""
-#~ "Discovery is the <b>easiest</b> and most <b>user-friendly</b> Linux "
-#~ "distribution. It includes a hand-picked selection of <b>premium software</"
-#~ "b> for office, multimedia and Internet activities. Its menu is task-"
-#~ "oriented, with a single application per task."
-#~ msgstr ""
-#~ "Discovery je <b>najjednostavnija</b> i <b>najprijateljskija</b> Linux "
-#~ "distribucija. On uključuje pažljivo probran <b>prvoklasni softver</b> za "
-#~ "uredske, multimedijalne i Internet aktivnosti. Njegov meni je orjentisan "
-#~ "prema zadacima, pri čemu svaki zadatak obavlja određeni program."
-
-#~ msgid "<b>PowerPack, The Ultimate Linux Desktop</b>"
-#~ msgstr "<b>PowerPack, Najbolji Linux Desktop</b>"
-
-#~ msgid "You are now installing <b>Mandriva Linux PowerPack</b>."
-#~ msgstr "Trenutno instalirate <b>Mandriva Linux PowerPack</b>."
-
-#~ msgid ""
-#~ "PowerPack is Mandriva's <b>premier Linux desktop</b> product. PowerPack "
-#~ "includes <b>thousands of applications</b> - everything from the most "
-#~ "popular to the most advanced."
-#~ msgstr ""
-#~ "PowerPack je Mandriva-ov <b>premijerni Linux desktop</b> proizvod. "
-#~ "PowerPack uključuje <b>hiljade programa</b> - sve od najpopularnijih do "
-#~ "najsloženijih."
-
-#~ msgid "<b>PowerPack+, The Linux Solution for Desktops and Servers</b>"
-#~ msgstr "<b>PowerPack+, Linux rješenje za Desktop i Server</b>"
-
-#~ msgid "You are now installing <b>Mandriva Linux PowerPack+</b>."
-#~ msgstr "Trenutno instalirate <b>Mandriva Linux PowerPack+</b>."
-
-#~ msgid ""
-#~ "PowerPack+ is a <b>full-featured Linux solution</b> for small to medium-"
-#~ "sized <b>networks</b>. PowerPack+ includes thousands of <b>desktop "
-#~ "applications</b> and a comprehensive selection of world-class <b>server "
-#~ "applications</b>."
-#~ msgstr ""
-#~ "PowerPack+ je <b>cjelovito Linux rješenje</b> za male i srednje <b>mreže</"
-#~ "b>. PowerPack+ uključuje hiljade <b>desktop programa</b>, kao i širok "
-#~ "izbor <b>serverskih aplikacija</b> svjetske klase."
-
-#~ msgid "<b>Mandriva Products</b>"
-#~ msgstr "<b>Mandriva proizvodi</b>"
-
-#~ msgid ""
-#~ "<b>Mandriva</b> has developed a wide range of <b>Mandriva Linux</b> "
-#~ "products."
-#~ msgstr ""
-#~ "<b>Mandriva</b> je razvio širok raspon <b>Mandriva Linux</b> proizvoda."
-
-#~ msgid "The Mandriva Linux products are:"
-#~ msgstr "Mandriva Linux proizvodi su:"
-
-#~ msgid "\t* <b>Discovery</b>, Your First Linux Desktop."
-#~ msgstr "\t* <b>Discovery</b>, Tvoj prvi Linux Desktop."
-
-#~ msgid "\t* <b>PowerPack</b>, The Ultimate Linux Desktop."
-#~ msgstr "\t* <b>PowerPack</b>, Najbolji Linux Desktop."
-
-#~ msgid "\t* <b>PowerPack+</b>, The Linux Solution for Desktops and Servers."
-#~ msgstr "\t* <b>PowerPack+</b>, Linux rješenje za Desktop i Server."
-
-#~ msgid ""
-#~ "\t* <b>Mandriva Linux for x86-64</b>, The Mandriva Linux solution for "
-#~ "making the most of your 64-bit processor."
-#~ msgstr ""
-#~ "\t* <b>Mandriva Linux za x86-64</b>, Mandriva Linux rješenje kojim ćete "
-#~ "izvući maksimum iz vašeg 64-bitnog procesora."
-
-#~ msgid "<b>Mandriva Products (Nomad Products)</b>"
-#~ msgstr "<b>Mandriva proizvodi (mobilni proizvodi)</b>"
-
-#~ msgid ""
-#~ "Mandriva has developed two products that allow you to use Mandriva Linux "
-#~ "<b>on any computer</b> and without any need to actually install it:"
-#~ msgstr ""
-#~ "Mandriva je razvio dva proizvoda koji vam omogućuju da koristite Mandriva "
-#~ "Linux <b>na bilo kojem računaru</b> bez potrebe da ga ustvari instalirate:"
-
-#~ msgid ""
-#~ "\t* <b>Move</b>, a Mandriva Linux distribution that runs entirely from a "
-#~ "bootable CD-ROM."
-#~ msgstr ""
-#~ "\t* <b>Move</b>, Mandriva Linux distribucija koja se izvršava u "
-#~ "potpunosti sa bootabilnog CD-ROMa."
-
-#~ msgid ""
-#~ "\t* <b>GlobeTrotter</b>, a Mandriva Linux distribution pre-installed on "
-#~ "the ultra-compact “LaCie Mobile Hard Drive”."
-#~ msgstr ""
-#~ "\t* <b>GlobeTrotter</b>, Mandriva Linux distribucija preinstalirana na "
-#~ "kompaktnom USB hard disku - “LaCie Mobile Hard Drive”."
-
-#~ msgid "<b>Mandriva Products (Professional Solutions)</b>"
-#~ msgstr "<b>Mandriva proizvodi (profesionalna rješenja)</b>"
-
-#~ msgid ""
-#~ "Below are the Mandriva products designed to meet the <b>professional "
-#~ "needs</b>:"
-#~ msgstr ""
-#~ "Ispod su navedeni Mandriva proizvodi dizajnirani da zadovolje "
-#~ "<b>profesionalne potrebe</b>:"
-
-#~ msgid ""
-#~ "\t* <b>Corporate Desktop</b>, The Mandriva Linux Desktop for Businesses."
-#~ msgstr "\t* <b>Corporate Desktop</b>, Mandriva Linux Desktop za preduzeća."
-
-#~ msgid "\t* <b>Corporate Server</b>, The Mandriva Linux Server Solution."
-#~ msgstr "\t* <b>Corporate Server</b>, Mandriva Linux rješenje za servere."
-
-#~ msgid ""
-#~ "\t* <b>Multi-Network Firewall</b>, The Mandriva Linux Security Solution."
-#~ msgstr ""
-#~ "\t* <b>Multi-Network Firewall</b>, Mandriva Linux rješenje za sigurnost "
-#~ "mreža."
-
-#~ msgid "<b>The KDE Choice</b>"
-#~ msgstr "<b>KDE Izbor</b>"
-
-#~ msgid ""
-#~ "With your Discovery, you will be introduced to <b>KDE</b>, the most "
-#~ "advanced and user-friendly <b>graphical desktop environment</b> available."
-#~ msgstr ""
-#~ "Uz vaš Discovery, biće vam predstavljen <b>KDE</b>, najnaprednije i "
-#~ "prijateljsko <b>grafičko radno okruženje</b> koje je trenutno dostupno."
-
-#~ msgid ""
-#~ "KDE will make your <b>first steps</b> with Linux so <b>easy</b> that you "
-#~ "will not ever think of running another operating system!"
-#~ msgstr ""
-#~ "KDE će učiniti vaše <b>prve korake</b> sa Linuxom tako <b>jednostavnim</"
-#~ "b> da vam neće više nikada pasti na pamet rad s drugim operativnim "
-#~ "sistemom!"
-
-#~ msgid ""
-#~ "KDE also includes a lot of <b>well integrated applications</b> such as "
-#~ "Konqueror, the web browser and Kontact, the personal information manager."
-#~ msgstr ""
-#~ "KDE takođe uključuje niz <b>dobro integrisanih programa</b> kao što je "
-#~ "Konqueror web preglednik i Kontact menadžer ličnih informacija."
-
-#~ msgid "<b>Choose your Favorite Desktop Environment</b>"
-#~ msgstr "<b>Izaberite vaše grafičko radno okruženje</b>"
-
-#~ msgid ""
-#~ "With PowerPack, you will have the choice of the <b>graphical desktop "
-#~ "environment</b>. Mandriva has chosen <b>KDE</b> as the default one."
-#~ msgstr ""
-#~ "Sa PowerPack-om, imaćete izbor <b>grafičkog radnog okruženja</b>. "
-#~ "Mandriva je izabrao <b>KDE</b> kao podrazumijevano okruženje."
-
-#~ msgid ""
-#~ "KDE is one of the <b>most advanced</b> and <b>user-friendly</b> graphical "
-#~ "desktop environment available. It includes a lot of integrated "
-#~ "applications."
-#~ msgstr ""
-#~ "KDE je jedno od <b>najnaprednijih</b> i <b>prijateljskih</b> grafičkih "
-#~ "radnih okruženja koja su trenutno dostupna. KDE uključuje niz "
-#~ "integrisanih programa."
-
-#~ msgid ""
-#~ "But we advise you to try all available ones (including <b>GNOME</b>, "
-#~ "<b>IceWM</b>, etc.) and pick your favorite."
-#~ msgstr ""
-#~ "Ipak preporučujemo vam da isprobate i druge (uključujući <b>GNOME</b>, "
-#~ "<b>IceWM</b> itd.) i izaberete vaše omiljeno okruženje."
-
-#~ msgid ""
-#~ "With PowerPack+, you will have the choice of the <b>graphical desktop "
-#~ "environment</b>. Mandriva has chosen <b>KDE</b> as the default one."
-#~ msgstr ""
-#~ "Uz PowerPack+, imaćete izbor <b>grafičkog radnog okruženja</b>. Mandriva "
-#~ "je izabrao <b>KDE</b> kao podrazumijevano okruženje."
-
-#~ msgid "<b>OpenOffice.org</b>"
-#~ msgstr "<b>OpenOffice.org</b>"
-
-#~ msgid "With Discovery, you will discover <b>OpenOffice.org</b>."
-#~ msgstr "Uz Discovery, otkrićete <b>OpenOffice.org</b>."
-
-#~ msgid ""
-#~ "It is a <b>full-featured office suite</b> that includes word processor, "
-#~ "spreadsheet, presentation and drawing applications."
-#~ msgstr ""
-#~ "OpenOffice.org je <b>uredski paket punih mogućnosti</b> koji uključuje "
-#~ "programe za obradu teksta, tablične proračune, prezentacije i crtanje."
-
-#~ msgid ""
-#~ "OpenOffice.org can read and write most types of <b>Microsoft® Office</b> "
-#~ "documents such as Word, Excel and PowerPoint® files."
-#~ msgstr ""
-#~ "OpenOffice.org može čitati i pisati većinu vrsta <b>Microsoft® Office</b> "
-#~ "dokumenata kao što su Word, Excel i PowerPoint® datoteke."
-
-#~ msgid "<b>Kontact</b>"
-#~ msgstr "<b>Kontact</b>"
-
-#~ msgid ""
-#~ "Discovery includes <b>Kontact</b>, the new KDE <b>groupware solution</b>."
-#~ msgstr ""
-#~ "Discovery uključuje i <b>Kontact</b>, novo KDEovo <b>groupware rješenje</"
-#~ "b>."
-
-#~ msgid ""
-#~ "More than just a full-featured <b>e-mail client</b>, Kontact also "
-#~ "includes an <b>address book</b>, a <b>calendar</b>, plus a tool for "
-#~ "taking <b>notes</b>!"
-#~ msgstr ""
-#~ "Više od naprednog <b>e-mail klijenta</b>, Kontact takođe uključuje i "
-#~ "<b>adresar</b>, <b>kalendar i rokovnik</b>, kao i alat za pravljenje "
-#~ "<b>bilješki</b>!"
-
-#~ msgid ""
-#~ "It is the easiest way to communicate with your contacts and to organize "
-#~ "your time."
-#~ msgstr ""
-#~ "To je najlakši način da komunicirate sa vašim poznanicima i da "
-#~ "organizirate vaše vrijeme."
-
-#~ msgid "<b>Surf the Internet</b>"
-#~ msgstr "<b>Koristite Internet</b>"
-
-#~ msgid "Discovery will give you access to <b>every Internet resource</b>:"
-#~ msgstr ""
-#~ "Discovery će vam dati mogućnost da pristupite <b>svim Internet resursima</"
-#~ "b>:"
-
-#~ msgid "\t* Browse the <b>Web</b> with Konqueror."
-#~ msgstr "\t* Pretražujte <b>Web stranice</b> koristeći Konqueror."
-
-#~ msgid "\t* <b>Chat</b> online with your friends using Kopete."
-#~ msgstr ""
-#~ "\t* <b>Razgovarajte</b> online sa vašim prijateljima koristeći Kopete."
-
-#~ msgid "\t* <b>Transfer</b> files with KBear."
-#~ msgstr "\t* <b>Prenosite</b> datoteke koristeći KBear."
-
-#~ msgid "\t* ..."
-#~ msgstr "\t* ..."
-
-#~ msgid "<b>Enjoy our Multimedia Features</b>"
-#~ msgstr "<b>Uživajte u multimedijalnim mogućnostima</b>"
-
-#~ msgid "Discovery will also make <b>multimedia</b> very easy for you:"
-#~ msgstr "Discovery će učiniti <b>multimediju</b> vrlo jednostavnom za vas:"
-
-#~ msgid "\t* Watch your favorite <b>videos</b> with Kaffeine."
-#~ msgstr "\t* Gledajte vaše omiljene <b>filmove</b> koristeći Kaffeine."
-
-#~ msgid "\t* Listen to your <b>music files</b> with amaroK."
-#~ msgstr "\t* Slušajte vaše <b>muzičke datoteke</b> koristeći amaroK."
-
-#~ msgid "\t* Edit and create <b>images</b> with the GIMP."
-#~ msgstr ""
-#~ "\t* Mijenjajte i kreirejte <b>slike i fotografije</b> koristeći GIMP."
-
-#~ msgid "<b>Enjoy the Wide Range of Applications</b>"
-#~ msgstr "<b>Uživajte u širokoj paleti programa</b>"
-
-#~ msgid ""
-#~ "In the Mandriva Linux menu you will find <b>easy-to-use</b> applications "
-#~ "for <b>all of your tasks</b>:"
-#~ msgstr ""
-#~ "U Mandriva Linux meniju naći ćete <b>jednostavne</b> programe <b>za sve "
-#~ "zadatke</b>:"
-
-#~ msgid ""
-#~ "\t* Create, edit and share office documents with <b>OpenOffice.org</b>."
-#~ msgstr ""
-#~ "\t* Pravite, mijenjajte i razmjenjujte uredske dokumente koristeći "
-#~ "<b>OpenOffice.org</b>."
-
-#~ msgid ""
-#~ "\t* Manage your personal data with the integrated personal information "
-#~ "suites <b>Kontact</b> and <b>Evolution</b>."
-#~ msgstr ""
-#~ "\t* Preuzmite kontrolu nad svojim ličnim podacima koristeći integrisane "
-#~ "pakete za lične informacije: <b>Kontact</b> i <b>Evolution</b>"
-
-#~ msgid "\t* Browse the web with <b>Mozilla</b> and <b>Konqueror</b>."
-#~ msgstr ""
-#~ "\t* Pretražujte Web stranice koristeći <b>Mozilla</b> i <b>Konqueror</b>"
-
-#~ msgid "\t* Participate in online chat with <b>Kopete</b>."
-#~ msgstr "\t* Učestvujte u online chat sesijama koristeći <b>Kopete</b>"
-
-#~ msgid ""
-#~ "\t* Listen to your <b>audio CDs</b> and <b>music files</b>, watch your "
-#~ "<b>videos</b>."
-#~ msgstr ""
-#~ "\t* Slušajte <b>audio CDove</b> i <b>muzičke datoteke</b>, gledajte svoje "
-#~ "<b>filmove</b>."
-
-#~ msgid "\t* Edit and create images with the <b>GIMP</b>."
-#~ msgstr "\t* Mijenjajte slike i fotografije koristeći <b>The Gimp</b>"
-
-#~ msgid "<b>Development Environments</b>"
-#~ msgstr "<b>Razvojna okruženja</b>"
-
-#~ msgid ""
-#~ "PowerPack gives you the best tools to <b>develop</b> your own "
-#~ "applications."
-#~ msgstr ""
-#~ "PowerPack vam daje najbolje alate za <b>razvoj</b> vlastitih programa."
-
-#~ msgid ""
-#~ "You will enjoy the powerful, integrated development environment from KDE, "
-#~ "<b>KDevelop</b>, which will let you program in a lot of languages."
-#~ msgstr ""
-#~ "Uživaćete u moćnoj, integrisanoj razvojnoj okolini KDEa, <b>KDevelop</b>, "
-#~ "koja vam omogućuje da programirate u mnogim jezicima."
-
-#~ msgid ""
-#~ "PowerPack also ships with <b>GCC</b>, the leading Linux compiler and "
-#~ "<b>GDB</b>, the associated debugger."
-#~ msgstr ""
-#~ "PowerPack takođe uključuje <b>GCC</b>, vodeći Linux kompajler, kao i "
-#~ "<b>GDB</b>, prateći debugger."
-
-#~ msgid "<b>Development Editors</b>"
-#~ msgstr "<b>Programerski editori</b>"
-
-#~ msgid "PowerPack will let you choose between those <b>popular editors</b>:"
-#~ msgstr ""
-#~ "PowerPack vam omogućuje da birate između sljedećih <b>popularnih editora</"
-#~ "b>:"
-
-#~ msgid "\t* <b>Emacs</b>: a customizable and real time display editor."
-#~ msgstr "\t* <b>Emacs</b>: prilagodljiv editor sa prikazom u realnom vremenu"
-
-#~ msgid ""
-#~ "\t* <b>XEmacs</b>: another open source text editor and application "
-#~ "development system."
-#~ msgstr ""
-#~ "\t* <b>XEmacs</b>: još jedan tekst editor i sistem za razvoj aplikacija "
-#~ "otvorenog izvornog koda"
-
-#~ msgid ""
-#~ "\t* <b>Vim</b>: an advanced text editor with more features than standard "
-#~ "Vi."
-#~ msgstr ""
-#~ "\t* <b>Vim</b>: napredni editor teksta sa više mogućnosti od standardnog "
-#~ "Vi"
-
-#~ msgid "<b>Development Languages</b>"
-#~ msgstr "<b>Programski jezici</b>"
-
-#~ msgid ""
-#~ "With all these <b>powerful tools</b>, you will be able to write "
-#~ "applications in <b>dozens of programming languages</b>:"
-#~ msgstr ""
-#~ "Pomoću ovih <b>moćnih alata</b>, možete pisati programe u <b>desetinama "
-#~ "programskih jezika</b>:"
-
-#~ msgid "\t* The famous <b>C language</b>."
-#~ msgstr "\t* Čuveni <b>programski jezik C</b>."
-
-#~ msgid "\t* Object oriented languages:"
-#~ msgstr "\t* Objektno orjentisani jezici:"
-
-#~ msgid "\t\t* <b>C++</b>"
-#~ msgstr "\t\t* <b>C++</b>"
-
-#~ msgid "\t\t* <b>Java™</b>"
-#~ msgstr "\t\t* <b>Java™</b>"
-
-#~ msgid "\t* Scripting languages:"
-#~ msgstr "\t* Jezici za skripting:"
-
-#~ msgid "\t\t* <b>Perl</b>"
-#~ msgstr "\t\t* <b>Perl</b>"
-
-#~ msgid "\t\t* <b>Python</b>"
-#~ msgstr "\t\t* <b>Python</b>"
-
-#~ msgid "\t* And many more."
-#~ msgstr "\t* I mnogi drugi."
-
-#~ msgid "<b>Development Tools</b>"
-#~ msgstr "<b>Programerski alati</b>"
-
-#~ msgid ""
-#~ "With the powerful integrated development environment <b>KDevelop</b> and "
-#~ "the leading Linux compiler <b>GCC</b>, you will be able to create "
-#~ "applications in <b>many different languages</b> (C, C++, Java™, Perl, "
-#~ "Python, etc.)."
-#~ msgstr ""
-#~ "Koristeći moćnu integrisanu razvojnu okolinu <b>KDevelop</b> i vodeći "
-#~ "Linux kompajler <b>GCC</b>, možete praviti programe u <b>mnogim "
-#~ "različitim jezicima</b> (C, C++, Java™, Perl, Python itd.)."
-
-#~ msgid "<b>Groupware Server</b>"
-#~ msgstr "<b>Groupware server</b>"
-
-#~ msgid ""
-#~ "PowerPack+ will give you access to <b>Kolab</b>, a full-featured "
-#~ "<b>groupware server</b> which will, thanks to the client <b>Kontact</b>, "
-#~ "allow you to:"
-#~ msgstr ""
-#~ "PowerPack+ vam pruža <b>Kolab</b>, potpuni <b>groupware server</b> koji "
-#~ "vam, pomoću klijenta koji se zove <b>Kontact</b>, omogućuje da:"
-
-#~ msgid "\t* Send and receive your <b>e-mails</b>."
-#~ msgstr "\t* Šaljete i primate vaš <b>e-mail</b>."
-
-#~ msgid "\t* Share your <b>agendas</b> and your <b>address books</b>."
-#~ msgstr "\t* Razmjenjujete vaše <b>rasporede</b> i <b>adresare</b>."
-
-#~ msgid "\t* Manage your <b>memos</b> and <b>task lists</b>."
-#~ msgstr "\t* Upravljate vašim <b>bilješkama</b> i <b>listama zadataka</b>."
-
-#~ msgid "<b>Servers</b>"
-#~ msgstr "<b>Serveri</b>"
-
-#~ msgid ""
-#~ "Empower your business network with <b>premier server solutions</b> "
-#~ "including:"
-#~ msgstr ""
-#~ "Osnažite vašu poslovnu mrežu <b>premijernim serverskim rješenjima</b>, "
-#~ "uključujući:"
-
-#~ msgid ""
-#~ "\t* <b>Samba</b>: File and print services for Microsoft® Windows® clients."
-#~ msgstr ""
-#~ "\t* <b>Samba</b>: Dijeljenje datoteka i štampa za MS-Windows klijente"
-
-#~ msgid "\t* <b>Apache</b>: The most widely used web server."
-#~ msgstr "\t* <b>Apache</b>: Najšire korišteni web server"
-
-#~ msgid ""
-#~ "\t* <b>MySQL</b> and <b>PostgreSQL</b>: The world's most popular open "
-#~ "source databases."
-#~ msgstr ""
-#~ "\t* <b>MySQL</b> i <b>PostgreSQL</b>: Najpopularnije svjetske Open Source "
-#~ "baze podataka."
-
-#~ msgid ""
-#~ "\t* <b>CVS</b>: Concurrent Versions System, the dominant open source "
-#~ "network-transparent version control system."
-#~ msgstr ""
-#~ "\t* <b>CVS</b>: Concurrent Versions System, dominantni open-source sistem "
-#~ "za kontrolu revizija, mrežno transparentan"
-
-#~ msgid ""
-#~ "\t* <b>ProFTPD</b>: The highly configurable GPL-licensed FTP server "
-#~ "software."
-#~ msgstr ""
-#~ "\t* <b>ProFTPD</b>: Visoko konfigurabilni FTP server pod GPL licencom"
-
-#~ msgid ""
-#~ "\t* <b>Postfix</b> and <b>Sendmail</b>: The popular and powerful mail "
-#~ "servers."
-#~ msgstr ""
-#~ "\t* <b>Postfix</b> i <b>Sendmail</b>: Popularni i moćni mail serveri."
-
-#~ msgid "<b>Mandriva Linux Control Center</b>"
-#~ msgstr "<b>Mandriva Linux Kontrolni centar</b>"
-
-#~ msgid ""
-#~ "The <b>Mandriva Linux Control Center</b> is an essential collection of "
-#~ "Mandriva Linux-specific utilities designed to simplify the configuration "
-#~ "of your computer."
-#~ msgstr ""
-#~ "<b>Mandriva Linux Kontrolni centar</b> je kolecija najvažnijih alata "
-#~ "specifičnih za Mandriva Linux koji olakšavaju podešavanje vašeg računara."
-
-#~ msgid ""
-#~ "You will immediately appreciate this collection of <b>more than 60</b> "
-#~ "handy utilities for <b>easily configuring your system</b>: hardware "
-#~ "devices, mount points, network and Internet, security level of your "
-#~ "computer, etc."
-#~ msgstr ""
-#~ "Odmah će vam se svidjeti ovaj skup <b>više od 60</b> korisnih alata za "
-#~ "<b>lagano podešavanje vašeg sistema</b>: hardware uređaja, definisanje "
-#~ "tačaka montiranja, podešavanje mreže i Interneta, prilagođavanje "
-#~ "sigunosnog nivoa vašeg računara itd."
-
-#~ msgid "<b>The Open Source Model</b>"
-#~ msgstr "<b>Open-source model</b>"
-
-#~ msgid ""
-#~ "Like all computer programming, open source software <b>requires time and "
-#~ "people</b> for development. In order to respect the open source "
-#~ "philosophy, Mandriva sells added value products and services to <b>keep "
-#~ "improving Mandriva Linux</b>. If you want to <b>support the open source "
-#~ "philosophy</b> and the development of Mandriva Linux, <b>please</b> "
-#~ "consider buying one of our products or services!"
-#~ msgstr ""
-#~ "Kao i svo računarsko programiranje, za razvoj open-source softwara je "
-#~ "<b>potrebno vrijeme i ljudi</b>. Kako bi poštovao open-source filozofiju, "
-#~ "Mandriva vam prodaje dodatnu vrijednost proizvoda i usluga kako bi "
-#~ "<b>nastavio usavršavati Mandriva Linux</b>. Ako želite <b>podržati open-"
-#~ "source filozofiju</b> kao i razvoj Mandriva Linuxa, <b>molimo vas</b> da "
-#~ "razmotrite kupovinu nekog od naših proizvoda ili usluga!"
-
-#~ msgid "<b>Online Store</b>"
-#~ msgstr "<b>On-line prodavnica</b>"
-
-#~ msgid ""
-#~ "To learn more about Mandriva products and services, you can visit our "
-#~ "<b>e-commerce platform</b>."
-#~ msgstr ""
-#~ "Da naučite više o našim proizvodima i uslugama, možete posjetiti našu e-"
-#~ "commerce platforma. u</"
-#~ "b>. <b>"
-
-#~ msgid ""
-#~ "There you can find all our products, services and third-party products."
-#~ msgstr ""
-#~ "Tamo možete naći sve naše proizvode, usluge, kao i proizvode trećih lica."
-
-#~ msgid ""
-#~ "This platform has just been <b>redesigned</b> to improve its efficiency "
-#~ "and usability."
-#~ msgstr ""
-#~ "Ova platforma je upravo <b>redizajnirana</b> kako bi se unaprijedila "
-#~ "njena efikasnost i upotrebljivost."
-
-#~ msgid "Stop by today at <b>store.mandriva.com</b>!"
-#~ msgstr "Navratite danas u <b>store.mandriva.com</b>!"
-
-#~ msgid "<b>Mandriva Club</b>"
-#~ msgstr "<b>Mandriva Club</b>"
-
-#~ msgid ""
-#~ "<b>Mandriva Club</b> is the <b>perfect companion</b> to your Mandriva "
-#~ "Linux product.."
-#~ msgstr ""
-#~ "<b>Mandriva Club</b> je <b>savršen dodatak</b> vašem Mandriva Linux "
-#~ "proizvodu."
-
-#~ msgid ""
-#~ "Take advantage of <b>valuable benefits</b> by joining Mandriva Club, such "
-#~ "as:"
-#~ msgstr ""
-#~ "Iskoristite razne <b>vrijedne pogodnosti<b> tako što ćete se učlaniti u "
-#~ "Mandriva Club, među kojima su:"
-
-#~ msgid ""
-#~ "\t* <b>Special discounts</b> on products and services of our online store "
-#~ "<b>store.mandriva.com</b>."
-#~ msgstr ""
-#~ "\t* <b>Posebni popusti</b> za proizvode i usluge u našoj on-line "
-#~ "prodavnici <b>store.mandriva.com</b>."
-
-#~ msgid ""
-#~ "\t* Access to <b>commercial applications</b> (for example to NVIDIA® or "
-#~ "ATI™ drivers)."
-#~ msgstr ""
-#~ "\t* Pristup <b>komercijalnim programima</b> (kao što su drajveri za "
-#~ "NVIDIA® ili ATI™ uređaje)."
-
-#~ msgid "\t* Participation in Mandriva Linux <b>user forums</b>."
-#~ msgstr "\t* Učešće u Mandriva Linux <b>korisničkim forumima</b>"
-
-#~ msgid ""
-#~ "\t* <b>Early and privileged access</b>, before public release, to "
-#~ "Mandriva Linux <b>ISO images</b>."
-#~ msgstr ""
-#~ "\t* <b>Rani i privilegovani pristup</b>, prije javnog izdanja, Mandriva "
-#~ "Linux <b>ISO imidžima</b>."
-
-#~ msgid "<b>Mandriva Online</b>"
-#~ msgstr "<b>Mandriva Online</b>"
-
-#~ msgid ""
-#~ "<b>Mandriva Online</b> is a new premium service that Mandriva is proud to "
-#~ "offer its customers!"
-#~ msgstr ""
-#~ "<b>Mandriva Online</b> je nova premijum usluga koju Mandriva s ponosom "
-#~ "nudi svojim klijentima!"
-
-#~ msgid ""
-#~ "Mandriva Online provides a wide range of valuable services for <b>easily "
-#~ "updating</b> your Mandriva Linux systems:"
-#~ msgstr ""
-#~ "Mandriva Online vam pruža širok izbor usluga za <b>jednostavno "
-#~ "ažuriranje</b> vaših Mandriva Linux sistema:"
-
-#~ msgid "\t* <b>Perfect</b> system security (automated software updates)."
-#~ msgstr ""
-#~ "\t* <b>Savršena</b> sigurnost sistema (automatsko ažuriranje programa)."
-
-#~ msgid ""
-#~ "\t* <b>Notification</b> of updates (by e-mail or by an applet on the "
-#~ "desktop)."
-#~ msgstr ""
-#~ "\t* <b>Obavještenja</b> o novim verzijama (putem e-maila ili appleta na "
-#~ "desktopu)."
-
-#~ msgid "\t* Flexible <b>scheduled</b> updates."
-#~ msgstr "\t* Fleksibilno <b>planiranje</b> ažuriranja."
-
-#~ msgid ""
-#~ "\t* Management of <b>all your Mandriva Linux systems</b> with one account."
-#~ msgstr ""
-#~ "\t* Menadžment <b>svih vaših Mandriva Linux sistema</b> putem jednog "
-#~ "korisničkog računa."
-
-#~ msgid "<b>Mandriva Expert</b>"
-#~ msgstr "<b>Mandriva Expert</b>"
-
-#~ msgid ""
-#~ "Do you require <b>assistance?</b> Meet Mandriva's technical experts on "
-#~ "<b>our technical support platform</b> www.mandrivaexpert.com."
-#~ msgstr ""
-#~ "Da li vam je potrebna <b>podrška?</b> Upoznajte Mandriva tehničke "
-#~ "eksperte na našoj <b>platformi za tehničku podršku</b> www.mandrivaexpert."
-#~ "com."
-
-#~ msgid ""
-#~ "Thanks to the help of <b>qualified Mandriva Linux experts</b>, you will "
-#~ "save a lot of time."
-#~ msgstr ""
-#~ "Zahvaljujući pomoći <b>kvalificiranih eksperata za Mandriva Linux</b>, "
-#~ "uštedićete mnogo vremena."
-
-#~ msgid ""
-#~ "For any question related to Mandriva Linux, you have the possibility to "
-#~ "purchase support incidents at <b>store.mandriva.com</b>."
-#~ msgstr ""
-#~ "Za bilo kakva pitanja u vezi Mandriva Linuxa, možete kupiti incidente za "
-#~ "podršku na <b>store.mandriva.com</b>."
-
-#~ msgid "Network:"
-#~ msgstr "Mreža:"
-
-#~ msgid "IP:"
-#~ msgstr "IP:"
-
-#~ msgid "Mode:"
-#~ msgstr "Mod (Način):"
-
-#~ msgid "Encryption:"
-#~ msgstr "Kriptovanje:"
-
-#~ msgid "Signal:"
-#~ msgstr "Signal:"
-
-#~ msgid "Rescan"
-#~ msgstr "Rescan"
-
-#~ msgid "Status"
-#~ msgstr "Status"
-
-#~ msgid "Disconnect"
-#~ msgstr "Prekini vezu"
-
-#~ msgid ""
-#~ "x coordinate of text box\n"
-#~ "in number of characters"
-#~ msgstr ""
-#~ "x koordinata tekst polja\n"
-#~ "u broju znakova"
-
-#~ msgid ""
-#~ "y coordinate of text box\n"
-#~ "in number of characters"
-#~ msgstr ""
-#~ "y koordinata tekst polja\n"
-#~ "u broju znakova"
-
-#~ msgid "text width"
-#~ msgstr "širina teksta"
-
-#~ msgid "ProgressBar color selection"
-#~ msgstr "Izbor boje trake napretka"
-
-#~ msgid "Connect to the Internet"
-#~ msgstr "Spoji se na Internet"
-
-#~ msgid ""
-#~ "The most common way to connect with adsl is pppoe.\n"
-#~ "Some connections use PPTP, a few use DHCP.\n"
-#~ "If you do not know, choose 'use PPPoE'"
-#~ msgstr ""
-#~ "Najčešći način za konekciju sa adsl-om je pppoe.\n"
-#~ "Neke konekcije koriste PPTP, a vrlo rijetke koriste DHCP.\n"
-#~ "Ako ne znate, izaberite 'koristi PPPoE'"
-
-#~ msgid "Do not print any test page"
-#~ msgstr "Nemoj štampati testnu stranicu"
-
-#~ msgid "Printer on SMB/Windows 95/98/NT server"
-#~ msgstr "Štampač na SMB/Windows 95/98/NT serveru"
-
-#~ msgid "Found printer on %s..."
-#~ msgstr "Našao štampač na %s..."
-
-#~ msgid "Useless without Terminal Server"
-#~ msgstr "Beskorisno bez Terminal servera"
-
-#~ msgid ""
-#~ "Please select default client type.\n"
-#~ " 'Thin' clients run everything off the server's CPU/RAM, using the "
-#~ "client display.\n"
-#~ " 'Fat' clients use their own CPU/RAM but the server's filesystem."
-#~ msgstr ""
-#~ "Molim izaberite vrstu klijenta.\n"
-#~ " 'Tanki' klijenti pokreću sve na serverskom CPU/RAM, koristeći samo "
-#~ "ekran klijenta.\n"
-#~ " 'Debeli' klijenti koriste svoj CPU/RAM ali serverski datotečni sistem."
-
-#~ msgid "dhcpd Config..."
-#~ msgstr "dhcpd podešavanje..."
-
-#~ msgid ""
-#~ "package 'ImageMagick' is required to be able to complete configuration.\n"
-#~ "Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
-#~ msgstr ""
-#~ "za dovršavanje podešavanja potreban je paket 'ImageMagick'.\n"
-#~ "Kliknite na \"U redu\" da instalirate 'ImageMagick' ili \"Odustani\" za "
-#~ "izlaz"
-
-#, fuzzy
-#~ msgid "Unable to select wireless network: %s"
-#~ msgstr "Ne mogu pristupiti mirroru %s"
-
-#~ msgid "Interactive intrusion detection"
-#~ msgstr "Interaktivno otkrivanje upada u sistem"
-
-#~ msgid "Active Firewall: intrusion detected"
-#~ msgstr "Aktivni firewall: otkriven pokušaj upada"
-
-#~ msgid "Do you want to blacklist the attacker?"
-#~ msgstr "Da li želite staviti napadača na crnu listu?"
-
-#~ msgid "Grub"
-#~ msgstr "Grub"
-
-#~ msgid "Local Network adress"
-#~ msgstr "Lokalna mrežna adresa"
-
-#~ msgid "Configuring scripts, installing software, starting servers..."
-#~ msgstr "Podešavam skripte, instaliram software, pokrećem servere..."
-
-#~ msgid "drakfloppy"
-#~ msgstr "drakfloppy"
-
-#~ msgid "Boot disk creation"
-#~ msgstr "Pravljenje boot diskete"
-
-#~ msgid "General"
-#~ msgstr "Općenito"
-
-#~ msgid "Kernel version"
-#~ msgstr "Kernel verzija"
-
-#~ msgid "Preferences"
-#~ msgstr "Opcije"
-
-#~ msgid "Advanced preferences"
-#~ msgstr "Napredne opcije"
-
-#~ msgid "Size"
-#~ msgstr "Veličina"
-
-#~ msgid "Mkinitrd optional arguments"
-#~ msgstr "Mkinitrd opcionalni argumenti"
-
-#~ msgid "force"
-#~ msgstr "prisili"
-
-#~ msgid "omit raid modules"
-#~ msgstr "izostavi raid module"
-
-#~ msgid "if needed"
-#~ msgstr "ako je potrebno"
-
-#~ msgid "omit scsi modules"
-#~ msgstr "izostavi scsi module"
-
-#~ msgid "Add a module"
-#~ msgstr "Dodaj modul"
-
-#~ msgid "Remove a module"
-#~ msgstr "Ukloni modul"
-
-#~ msgid "Be sure a media is present for the device %s"
-#~ msgstr "Provjerite da li je ubačena disketa za ovaj uređaj %s"
-
-#~ msgid ""
-#~ "There is no medium or it is write-protected for device %s.\n"
-#~ "Please insert one."
-#~ msgstr ""
-#~ "Nema medija ili je zabranjeno pisanje na medij za uređaj %s.\n"
-#~ "Molim ubacite neki medij."
-
-#~ msgid "Unable to fork: %s"
-#~ msgstr "Ne mogu izvrsiti fork: %s"
-
-#~ msgid "Floppy creation completed"
-#~ msgstr "Pravljenje floppy-ja završeno"
-
-#~ msgid "The creation of the boot floppy has been successfully completed \n"
-#~ msgstr "Pravljenje boot diskete je uspješno završeno \n"
-
-#~ msgid ""
-#~ "Unable to properly close mkbootdisk:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
-#~ msgstr ""
-#~ "Ne mogu ispravno zatvoriti mkbootdisk:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
-
-#~ msgid ""
-#~ "You may not be able to install lilo (since lilo does not handle a LV on "
-#~ "multiple PVs)"
-#~ msgstr ""
-#~ "Možda nećete biti u mogućnosti instalirati lilo (pošto lilo ne može "
-#~ "rukovati LVom ili sa više PVa)"
-
-#~ msgid "use PPPoE"
-#~ msgstr "koristi PPPOE"
-
-#~ msgid "use PPTP"
-#~ msgstr "koristi PPTP"
-
-#~ msgid "use DHCP"
-#~ msgstr "koristi DHCP"
-
-#~ msgid "Alcatel Speedtouch USB"
-#~ msgstr "Alcatel speedtouch USB"
-
-#~ msgid " - detected"
-#~ msgstr " - detektovan"
-
-#~ msgid "Sagem (using PPPoA) USB"
-#~ msgstr "Sagem (koristeći PPPoA) USB"
-
-#~ msgid "Sagem (using DHCP) USB"
-#~ msgstr "Sagem (koristeći DHCP) USB"
-
-#~ msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-#~ msgstr "Icewm, Window Maker, Enlightenment, Fvwm, itd."
-
-#~ msgid ""
-#~ "Warning, another Internet connection has been detected, maybe using your "
-#~ "network"
-#~ msgstr ""
-#~ "Upozorenje, otkrivena je druga Internet konekcija, možda preko vaše mreže"
-
-#~ msgid "PXE Server Configuration"
-#~ msgstr "Podešavanje PXE servera"
-
-#~ msgid "Installation Server Configuration"
-#~ msgstr "Podešavanje instalacionog servera"
-
-#~ msgid ""
-#~ "You are about to configure your computer to install a PXE server as a "
-#~ "DHCP server\n"
-#~ "and a TFTP server to build an installation server.\n"
-#~ "With that feature, other computers on your local network will be "
-#~ "installable using this computer as source.\n"
-#~ "\n"
-#~ "Make sure you have configured your Network/Internet access using "
-#~ "drakconnect before going any further.\n"
-#~ "\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN)."
-#~ msgstr ""
-#~ "Sada ćete podesiti instalacioni server, koji se sastoji od PXE servera "
-#~ "(DHCP servera) i TFTP servera.\n"
-#~ "Sa ovom opcijom, moći ćete instalirati Mandriva Linux na druge računare "
-#~ "na vašoj lokalnoj mreži koristećiovaj računar kao izvor.\n"
-#~ "\n"
-#~ "Prije nego što nastavite, provjerite da li ste podesili mrežni/internet "
-#~ "pristup koristeći drakconnect.\n"
-#~ "\n"
-#~ "Napomena: potreban vam je poseban Mrežni adapter da biste podesili "
-#~ "Lokalnu mrežu (LAN)."
-
-#~ msgid "No network adapter on your system!"
-#~ msgstr "Nema mrežnog adaptera na vašem sistemu!"
-
-#~ msgid "Choose the network interface"
-#~ msgstr "Izaberite mrežni interface"
-
-#~ msgid ""
-#~ "Please choose which network interface will be used for the dhcp server."
-#~ msgstr ""
-#~ "Molim izaberite koji mrežni interfejs želite koristiti za spajanje na "
-#~ "DHCP server."
-
-#~ msgid "Interface %s (on network %s)"
-#~ msgstr "Interfejs %s (na mreži %s)"
-
-#~ msgid ""
-#~ "The DHCP server will allow other computer to boot using PXE in the given "
-#~ "range of address.\n"
-#~ "\n"
-#~ "The network address is %s using a netmask of %s.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "DHCP server omogućuje pokretanje drugih računara koristeći PXE u zadatom "
-#~ "rasponu adresa.\n"
-#~ "\n"
-#~ "Mrežna adresa je %s koristeći netmasku %s.\n"
-#~ "\n"
-
-#~ msgid "The DHCP start ip"
-#~ msgstr "Početna DHCP adresa"
-
-#~ msgid "The DHCP end ip"
-#~ msgstr "Krajnja DHCP adresa"
-
-#~ msgid ""
-#~ "Please indicate where the installation image will be available.\n"
-#~ "\n"
-#~ "If you do not have an existing directory, please copy the CD or DVD "
-#~ "contents.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Molim navedite gdje se nalazi instalaciona slika.\n"
-#~ "\n"
-#~ "Ako nemate postojeći direktorij, molim kopirajte sadržaj CDa ili DVDa.\n"
-#~ "\n"
-
-#~ msgid "Installation image directory"
-#~ msgstr "Direktorij instalacionog image-a"
-
-#~ msgid "No image found"
-#~ msgstr "Nije pronađen nijedan image"
-
-#~ msgid ""
-#~ "No CD or DVD image found, please copy the installation program and rpm "
-#~ "files."
-#~ msgstr ""
-#~ "Nije pronađena nijedna CD ili DVD slika, molim kopirajte instalacioni "
-#~ "program i rpm datoteke."
-
-#~ msgid ""
-#~ "Please indicate where the auto_install.cfg file is located.\n"
-#~ "\n"
-#~ "Leave it blank if you do not want to set up automatic installation mode.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Molim navedite gdje se nalazi datoteka auto_install.cfg.\n"
-#~ "\n"
-#~ "Ostavite ovo praznim ako ne želite podesiti režim automatske "
-#~ "instalacije.\n"
-#~ "\n"
-
-#~ msgid "Location of auto_install.cfg file"
-#~ msgstr "Lokacija datoteke auto_install.cfg"
-
-#~ msgid "Do it later"
-#~ msgstr "Uradi kasnije"
-
-#~ msgid "MdkKDM (Mandriva Linux Display Manager)"
-#~ msgstr "MdkKDM (Mandriva Linux Display Manager)"
-
-#~ msgid "Internet Connection Sharing currently disabled"
-#~ msgstr "Dijeljenje Internet konekcije je trenutno neaktivno"
-
-#~ msgid "Enabling servers..."
-#~ msgstr "Uključujem servere..."
-
-#~ msgid "Internet Connection Sharing currently enabled"
-#~ msgstr "Dijeljenje Internet konekcije je trenutno aktivno"
-
-#~ msgid "Interface %s (using module %s)"
-#~ msgstr "Interfejs %s (koristeći modul %s)"
-
-#~ msgid "Interface %s"
-#~ msgstr "Interfejs %s"
-
-#~ msgid "Network interface already configured"
-#~ msgstr "Mrežni interfejs je već podešen"
-
-#~ msgid ""
-#~ "Warning, the network adapter (%s) is already configured.\n"
-#~ "\n"
-#~ "Do you want an automatic re-configuration?\n"
-#~ "\n"
-#~ "You can do it manually but you need to know what you're doing."
-#~ msgstr ""
-#~ "Upozorenje, mrežni adapter (%s) je već podešen.\n"
-#~ "\n"
-#~ "Da li želite automatsko ponovno podešavanje?\n"
-#~ "\n"
-#~ "To možete obaviti ručno, ali morate znati šta radite."
-
-#~ msgid "No (experts only)"
-#~ msgstr "Ne (samo eksperti)"
-
-#~ msgid "Show current interface configuration"
-#~ msgstr "Prikaži postavke trenutnog interfejsa"
-
-#~ msgid "Current interface configuration"
-#~ msgstr "Postavke trenutnog interfejsa"
-
-#~ msgid ""
-#~ "Current configuration of `%s':\n"
-#~ "\n"
-#~ "Network: %s\n"
-#~ "IP address: %s\n"
-#~ "IP attribution: %s\n"
-#~ "Driver: %s"
-#~ msgstr ""
-#~ "Trenutna konfiguracija `%s':\n"
-#~ "\n"
-#~ "Mreža: %s\n"
-#~ "IP adresa: %s\n"
-#~ "IP atributi: %s\n"
-#~ "Drajver: %s"
-
-#~ msgid ""
-#~ "I can keep your current configuration and assume you already set up a "
-#~ "DHCP server; in that case please verify I correctly read the Network that "
-#~ "you use for your local network; I will not reconfigure it and I will not "
-#~ "touch your DHCP server configuration.\n"
-#~ "\n"
-#~ "The default DNS entry is the Caching Nameserver configured on the "
-#~ "firewall. You can replace that with your ISP DNS IP, for example.\n"
-#~ "\t\t \n"
-#~ "Otherwise, I can reconfigure your interface and (re)configure a DHCP "
-#~ "server for you.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Mogu zadržati trenutnu konfiguraciju i pretpostaviti da ste već podesili "
-#~ "DHCP server; u tom slučaju molim provjerite da li sam ispravno pročitao "
-#~ "Mrežnu adresu koju ćete koristiti na lokalnoj mreži; neću je ponovo "
-#~ "podesiti i neću mijenjati vaše postavke DHCP servera.\n"
-#~ "\n"
-#~ "Predložena DNS postavka je Caching nameserver koji je podešen na "
-#~ "firewallu. Možete je zamijeniti npr. IP adresom DNS servera vašeg ISPa.\n"
-#~ "\t\t \n"
-#~ "Ako ne, mogu ponovo podesiti vaš interfejs i podesiti DHCP server za "
-#~ "vas.\n"
-#~ "\n"
-
-#~ msgid "(This) DHCP Server IP"
-#~ msgstr "IP adresa (ovog) DHCP servera"
-
-#~ msgid "Re-configure interface and DHCP server"
-#~ msgstr "Ponovo podesi interfejs i DHCP server"
-
-#~ msgid "The Local Network did not finish with `.0', bailing out."
-#~ msgstr "Lokalna mreža se ne završava sa `.0', izlazim."
-
-#~ msgid "Number of logical extents: %d"
-#~ msgstr "Broj logičkih extents: %d"
-
-#~ msgid ""
-#~ "WARNING: this device has been previously configured to connect to the "
-#~ "Internet.\n"
-#~ "Modifying the fields below will override this configuration.\n"
-#~ "Do you really want to reconfigure this device?"
-#~ msgstr ""
-#~ "UPOZORENJE: Ovaj uređaj je prethodno podešen za konekciju na Internet.\n"
-#~ "Izmjena polja ispod će prepisati ovu konfiguraciju.\n"
-#~ "Da li zaista želite ponovo podesiti ovaj uređaj?"
-
-#~ msgid ""
-#~ " - Create etherboot floppies/CDs:\n"
-#~ " \tThe diskless client machines need either ROM images on the NIC, "
-#~ "or a boot floppy\n"
-#~ " \tor CD to initiate the boot sequence. drakTermServ will help "
-#~ "generate these\n"
-#~ " \timages, based on the NIC in the client machine.\n"
-#~ " \t\t\n"
-#~ " \tA basic example of creating a boot floppy for a 3Com 3c509 "
-#~ "manually:\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/lib/etherboot/floppyload.bin \\\n"
-#~ " \t\t/usr/share/etherboot/start16.bin \\\t\t\t\n"
-#~ " \t\t/usr/lib/etherboot/zimg/3c509.zimg > /dev/fd0"
-#~ msgstr ""
-#~ " - Create etherboot floppies/CDs:\n"
-#~ " \tThe diskless client machines need either ROM images on the NIC, "
-#~ "or a boot floppy\n"
-#~ " \tor CD to initiate the boot sequence. drakTermServ will help "
-#~ "generate these\n"
-#~ " \timages, based on the NIC in the client machine.\n"
-#~ " \t\t\n"
-#~ " \tA basic example of creating a boot floppy for a 3Com 3c509 "
-#~ "manually:\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/lib/etherboot/floppyload.bin \\\n"
-#~ " \t\t/usr/share/etherboot/start16.bin \\\t\t\t\n"
-#~ " \t\t/usr/lib/etherboot/zimg/3c509.zimg > /dev/fd0"
-
-#~ msgid "Dynamic IP Address Pool:"
-#~ msgstr "Raspon dinamičkih IP adresa:"
-
-#~ msgid "hd"
-#~ msgstr "hd"
-
-#~ msgid "tape"
-#~ msgstr "traka"
-
-#~ msgid "WebDAV remote site already in sync!"
-#~ msgstr "Udaljeni WebDAV sajt je već sinhroniziran!"
-
-#~ msgid "WebDAV transfer failed!"
-#~ msgstr "WebDAV transfer nije uspio!"
-
-#~ msgid ""
-#~ "Backup quota exceeded!\n"
-#~ "%d MB used vs %d MB allocated."
-#~ msgstr ""
-#~ "Backup kvota je prekoračena!\n"
-#~ "Iskorišteno je %d MB od alociranih %d MB."
-
-#~ msgid ""
-#~ "Maximum size\n"
-#~ " allowed for Drakbackup (MB)"
-#~ msgstr ""
-#~ "Unesite maksimalnu veličinu\n"
-#~ " dozvoljenu za Draxbackup (MB)"
-
-#~ msgid "\t-Network by webdav.\n"
-#~ msgstr "\t-Mrežu preko webdav-a.\n"
-
-#~ msgid "first step creation"
-#~ msgstr "kreiranje prvog koraka"
-
-#~ msgid "choose image file"
-#~ msgstr "izaberite image datoteku"
-
-#~ msgid "Configure bootsplash picture"
-#~ msgstr "Podesite bootsplash sliku"
-
-#~ msgid "the color of the progress bar"
-#~ msgstr "boja progresne trake"
-
-#~ msgid "Preview"
-#~ msgstr "Pregled"
-
-#~ msgid "Choose color"
-#~ msgstr "Izaberite boju"
-
-#~ msgid "Make kernel message quiet by default"
-#~ msgstr "Kernel poruke podrazumijevano tihe"
-
-#~ msgid "Notice"
-#~ msgstr "Napomena"
-
-#~ msgid "This theme does not yet have a bootsplash in %s!"
-#~ msgstr "Ova tema još nema bootsplash u %s !"
-
-#~ msgid "You must choose an image file first!"
-#~ msgstr "Morate izabrati image datoteku!"
-
-#~ msgid "Generating preview..."
-#~ msgstr "Generišem pregled..."
-
-#~ msgid "%s BootSplash (%s) preview"
-#~ msgstr "%s BootSplash (%s) pregled"
-
-#~ msgid ""
-#~ "The image \"%s\" cannot be load due to the following issue:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\">%s</span>"
-#~ msgstr ""
-#~ "Ne mogu učitati sliku \"%s\" zbog sljedećeg problema:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\">%s</span>"
-
-#~ msgid "No floppy drive available"
-#~ msgstr "Nema pogodne disketne jedinice"
-
-#~ msgid "Please insert the Update Modules floppy in drive %s"
-#~ msgstr "Molim ubacite disketu Update Modula u jedinicu %s"
-
-#~ msgid ""
-#~ "_: keyboard\n"
-#~ "Tifinagh (+latin/arabic)"
-#~ msgstr "Tifinagh (+latinica/arapsko pismo)"
-
-#~ msgid "No network card"
-#~ msgstr "Nema mrežne kartice"
-
-#~ msgid ""
-#~ "The following protocols can be used to configure an ethernet connection. "
-#~ "Please choose the one you want to use"
-#~ msgstr ""
-#~ "Možete koristiti sljedeće protokole za podešavanje Ethernet veze. "
-#~ "Izaberite onaj koji želite koristiti"
-
-#~ msgid "Use already installed driver (%s)"
-#~ msgstr "Koristi već instaliran drajver (%s)"
+#~ msgid "Icon"
+#~ msgstr "Ikona"
-#~ msgid "You've not selected any font"
-#~ msgstr "Niste izabrali nijedan font"
+#~ msgid "Number of capture buffers:"
+#~ msgstr "Broj capture buffera:"
-#~ msgid "No browser available! Please install one"
-#~ msgstr "Nemate nijedan browser! Molim instalirajte neki browser"
+#~ msgid "number of capture buffers for mmap'ed capture"
+#~ msgstr "broj capture buffera za mmap-ovani capture"
-#~ msgid ""
-#~ "No browser is installed on your system, Please install one if you want to "
-#~ "browse the help system"
-#~ msgstr ""
-#~ "Nemate nijedan browser instaliran na vašem sistemu. Molim instalirajte "
-#~ "jedan ako želite pristupiti sistemu pomoći"
+#~ msgid "PLL setting:"
+#~ msgstr "PLL postavka:"
-#, fuzzy
-#~ msgid "Get YP server from DHCP"
-#~ msgstr "IP adresa DNS servera"
+#~ msgid "Radio support:"
+#~ msgstr "Podrška za radio:"
-#, fuzzy
-#~ msgid "Get NTPD server from DHCP"
-#~ msgstr "IP adresa DNS servera"
+#~ msgid "enable radio support"
+#~ msgstr "uključi radio podršku"
-#, fuzzy
-#~ msgid "Upload the system configuration"
-#~ msgstr "Update konfiguracije menija"
+#~ msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+#~ msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index a2eaf966b..30d58c097 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: ca\n"
-"POT-Creation-Date: 2006-03-05 18:57+0800\n"
+"POT-Creation-Date: 2007-03-21 12:10+0100\n"
"PO-Revision-Date: 2005-09-13 23:24+0200\n"
"Last-Translator: Albert Astals Cid <astals11@terra.es>\n"
"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
@@ -17,833 +17,20 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.9.1\n"
-#: ../move/move.pm:292
-#, c-format
-msgid "Which USB key do you want to format?"
-msgstr "Quina memòria USB voleu formatejar?"
-
-#: ../move/move.pm:296
-#, c-format
-msgid ""
-"You are about to format a USB device \"%s\". This will delete all data on "
-"it.\n"
-"Make sure that the selected device is the USB key you want to format. \n"
-"We advise you to unplug all other USB storage devices while doing this "
-"operation."
-msgstr ""
-"Esteu a punt de formatejar el dispositiu USB \"%s\". Això eliminarà totes "
-"les dades existents.\n"
-"Assegureu-vos que el dispositiu seleccionat és la memòria USB que voleu "
-"formatejar. \n"
-"Suggerim que desconnecteu tots els altres dispositius USB mentre feu aquesta "
-"operació."
-
-#: ../move/move.pm:448 ../move/move.pm:460
-#, c-format
-msgid "Key is not writable"
-msgstr "No és pot escriure a la memòria"
-
-#: ../move/move.pm:450
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-"Sembla que la memòria USB té la protecció contra escriptura habilitada. Si "
-"us plau,\n"
-"desconnecteu-la, desactiveu la protecció contra escriptura i torneu-la a "
-"connectar."
-
-#
-#: ../move/move.pm:452
-#, c-format
-msgid "Retry"
-msgstr "Reintenta"
-
-#: ../move/move.pm:453 ../move/move.pm:497
-#, c-format
-msgid "Continue without USB key"
-msgstr "Continua sense memòria USB"
-
-#: ../move/move.pm:462
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled, but we can not safely\n"
-"unplug it now.\n"
-"\n"
-"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandriva Move again."
-msgstr ""
-"La memòria USB sembla tenir la protecció contra escriptura habilitada però "
-"no\n"
-"es pot desconnectar amb seguretat ara.\n"
-"\n"
-"\n"
-"Premeu el botó per reiniciar l'ordinador, desconnecteu la memòria, "
-"desactiveu\n"
-"la protecció contra escriptura , torneu a connectar la memòria i executeu\n"
-"Mandriva Move un altre cop."
-
-#: ../move/move.pm:468 help.pm:410 install_steps_interactive.pm:1303
-#, c-format
-msgid "Reboot"
-msgstr "Reinicia"
-
-#: ../move/move.pm:473
-#, c-format
-msgid ""
-"Your USB key does not have any valid Windows (FAT) partitions.\n"
-"We need one to continue (beside, it's more standard so that you\n"
-"will be able to move and access your files from machines\n"
-"running Windows). Please plug in an USB key containing a\n"
-"Windows partition instead.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-"La vostra memòria USB no te cap partició de Windows (FAT) vàlida.\n"
-"En cal una per continuar (a part que és més estàndard, i així\n"
-"podreu accedir i moure els vostres fitxers des d'ordinadors\n"
-"que usin Windows). Si us plau, connecteu una memòria USB\n"
-"que contingui una partició de Windows.\n"
-"\n"
-"\n"
-"Si voleu podeu continuar sense una memòria USB, utilitzant\n"
-"Mandriva Move com un sistema operatiu Mandriva, però sense\n"
-"poder desar les vostres dades.Sistema "
-
-#: ../move/move.pm:483
-#, c-format
-msgid ""
-"We did not detect any USB key on your system. If you\n"
-"plug in an USB key now, Mandriva Move will have the ability\n"
-"to transparently save the data in your home directory and\n"
-"system wide configuration, for next boot on this computer\n"
-"or another one. Note: if you plug in a key now, wait several\n"
-"seconds before detecting again.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-
-#: ../move/move.pm:494
-#, c-format
-msgid "Need a key to save your data"
-msgstr "Cal una memòria USB per desar les vostres dades"
-
-#: ../move/move.pm:496
-#, c-format
-msgid "Detect USB key again"
-msgstr "Torna a detectar memòries USB"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Setting up USB key"
-msgstr "S'està configurant la memòria USB"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr ""
-"Si us plau espereu mentre es configuren els fitxers necessaris a la memòria "
-"USB..."
-
-#: ../move/move.pm:546
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
-"Entreu la vostra informació d'usuari, la contrasenya s'usarà pel "
-"salvapantalles"
-
-#
-#: ../move/move.pm:556
-#, c-format
-msgid "Auto configuration"
-msgstr "Configuració automàtica"
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Espereu si us plau, s'està detectant i configurant els dispositius..."
-
-#: ../move/move.pm:604 ../move/move.pm:660 ../move/move.pm:664
-#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/interactive.pm:231
-#: diskdrake/interactive.pm:244 diskdrake/interactive.pm:405
-#: diskdrake/interactive.pm:423 diskdrake/interactive.pm:560
-#: diskdrake/interactive.pm:565 diskdrake/smbnfs_gtk.pm:41 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:52 fsedit.pm:218 install_any.pm:1775
-#: install_any.pm:1827 install_steps.pm:81 install_steps_interactive.pm:37
-#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
-#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
-#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
-#: network/netconnect.pm:837 network/netconnect.pm:866
-#: network/netconnect.pm:965 network/netconnect.pm:969
-#: network/netconnect.pm:973 network/netconnect.pm:978
-#: network/netconnect.pm:1123 network/netconnect.pm:1127
-#: network/netconnect.pm:1246 network/netconnect.pm:1251
-#: network/netconnect.pm:1271 network/netconnect.pm:1428
-#: network/thirdparty.pm:321 network/thirdparty.pm:328
-#: network/thirdparty.pm:372 network/thirdparty.pm:374
-#: network/thirdparty.pm:395 network/thirdparty.pm:419
-#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
-#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
-#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
-#: printer/printerdrake.pm:450 printer/printerdrake.pm:514
-#: printer/printerdrake.pm:686 printer/printerdrake.pm:690
-#: printer/printerdrake.pm:772 printer/printerdrake.pm:1555
-#: printer/printerdrake.pm:1603 printer/printerdrake.pm:1640
-#: printer/printerdrake.pm:1685 printer/printerdrake.pm:1689
-#: printer/printerdrake.pm:1703 printer/printerdrake.pm:1795
-#: printer/printerdrake.pm:1876 printer/printerdrake.pm:1880
-#: printer/printerdrake.pm:1884 printer/printerdrake.pm:1933
-#: printer/printerdrake.pm:1991 printer/printerdrake.pm:1995
-#: printer/printerdrake.pm:2009 printer/printerdrake.pm:2129
-#: printer/printerdrake.pm:2133 printer/printerdrake.pm:2176
-#: printer/printerdrake.pm:2249 printer/printerdrake.pm:2267
-#: printer/printerdrake.pm:2276 printer/printerdrake.pm:2285
-#: printer/printerdrake.pm:2296 printer/printerdrake.pm:2360
-#: printer/printerdrake.pm:2512 printer/printerdrake.pm:2947
-#: printer/printerdrake.pm:3231 printer/printerdrake.pm:3237
-#: printer/printerdrake.pm:3802 printer/printerdrake.pm:3806
-#: printer/printerdrake.pm:3810 printer/printerdrake.pm:4206
-#: printer/printerdrake.pm:4446 printer/printerdrake.pm:4474
-#: printer/printerdrake.pm:4551 printer/printerdrake.pm:4617
-#: printer/printerdrake.pm:4737 standalone/drakTermServ:422
-#: standalone/drakTermServ:492 standalone/drakTermServ:501
-#: standalone/drakTermServ:812 standalone/drakTermServ:819
-#: standalone/drakTermServ:845 standalone/drakTermServ:894
-#: standalone/drakTermServ:1146 standalone/drakTermServ:1181
-#: standalone/drakTermServ:1634 standalone/drakTermServ:1643
-#: standalone/drakTermServ:1651 standalone/drakTermServ:1656
-#: standalone/drakTermServ:1664 standalone/drakTermServ:1680
-#: standalone/drakTermServ:1700 standalone/drakauth:36
-#: standalone/drakbackup:511 standalone/drakbackup:625
-#: standalone/drakbackup:1110 standalone/drakbackup:1141
-#: standalone/drakbackup:1332 standalone/drakbackup:1664
-#: standalone/drakbackup:1820 standalone/drakbackup:2548
-#: standalone/drakbackup:4463 standalone/drakclock:124
-#: standalone/drakconnect:676 standalone/drakconnect:680
-#: standalone/drakconnect:685 standalone/drakconnect:700
-#: standalone/drakfont:209 standalone/drakfont:222 standalone/drakfont:260
-#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakhosts:98
-#: standalone/drakhosts:246 standalone/drakhosts:253 standalone/drakhosts:260
-#: standalone/draknfs:306 standalone/draknfs:609 standalone/draknfs:616
-#: standalone/draknfs:623 standalone/drakroam:33 standalone/draksambashare:384
-#: standalone/draksambashare:388 standalone/draksambashare:391
-#: standalone/draksambashare:394 standalone/draksambashare:453
-#: standalone/draksambashare:477 standalone/draksambashare:551
-#: standalone/draksambashare:633 standalone/draksambashare:700
-#: standalone/draksambashare:800 standalone/draksambashare:807
-#: standalone/draksambashare:942 standalone/draksambashare:1133
-#: standalone/draksambashare:1142 standalone/draksambashare:1151
-#: standalone/draksambashare:1172 standalone/draksambashare:1181
-#: standalone/draksambashare:1190 standalone/draksambashare:1210
-#: standalone/draksambashare:1218 standalone/draksambashare:1230
-#: standalone/draksplash:162 standalone/drakxtv:107
-#: standalone/finish-install:79 standalone/logdrake:171
-#: standalone/logdrake:439 standalone/logdrake:444 standalone/scannerdrake:59
-#: standalone/scannerdrake:202 standalone/scannerdrake:261
-#: standalone/scannerdrake:732 standalone/scannerdrake:743
-#: standalone/scannerdrake:882 standalone/scannerdrake:893
-#: standalone/scannerdrake:963 wizards.pm:95 wizards.pm:99 wizards.pm:121
-#, c-format
-msgid "Error"
-msgstr "Error"
-
-#: ../move/move.pm:605 install_steps.pm:82
-#, c-format
-msgid ""
-"An error occurred, but I do not know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"S'ha produït un error, però no sé com gestionar-lo correctament.\n"
-"Si continueu, és sota la vostra responsabilitat."
-
-#: ../move/move.pm:660 install_steps_interactive.pm:37
-#, c-format
-msgid "An error occurred"
-msgstr "S'ha produït un error"
-
-#: ../move/move.pm:666
-#, c-format
-msgid ""
-"An error occurred:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"This may come from corrupted system configuration files\n"
-"on the USB key, in this case removing them and then\n"
-"rebooting Mandriva Move would fix the problem. To do\n"
-"so, click on the corresponding button.\n"
-"\n"
-"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-
-#
-#: ../move/move.pm:681
-#, c-format
-msgid "Remove system config files"
-msgstr "Elimina fitxers de configuració del sistema"
-
-#: ../move/move.pm:682
-#, c-format
-msgid "Simply reboot"
-msgstr "Simplement reinicia"
-
-#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr "Només podeu executar sense suport CDROM"
-
-#: ../move/tree/mdk_totem:71
-#, c-format
-msgid "Kill those programs"
-msgstr "Mata aquests programes"
-
-#: ../move/tree/mdk_totem:72
-#, c-format
-msgid "No CDROM support"
-msgstr "Sense suport CDROM"
-
-#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1062 diskdrake/interactive.pm:1072
-#: diskdrake/interactive.pm:1125
-#, c-format
-msgid "Read carefully!"
-msgstr "Llegiu-ho atentament!"
-
-#: ../move/tree/mdk_totem:77
-#, c-format
-msgid ""
-"You can not use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-"No podeu usar un altre CDROM mentre els següents programes s'estiguin "
-"executant: \n"
-"%s"
-
-#: ../move/tree/mdk_totem:101
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr "S'està copiant a memòria per tal de permetre treure el CDROM"
-
-#: Xconfig/card.pm:13
-#, c-format
-msgid "256 kB"
-msgstr "256 kB"
-
-#: Xconfig/card.pm:14
-#, c-format
-msgid "512 kB"
-msgstr "512 kB"
-
-#: Xconfig/card.pm:15
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
-
-#: Xconfig/card.pm:16
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
-
-#: Xconfig/card.pm:17
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
-
-#: Xconfig/card.pm:18
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
-
-#
-#: Xconfig/card.pm:19
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#
-#: Xconfig/card.pm:20
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
-
-#
-#: Xconfig/card.pm:21
-#, c-format
-msgid "64 MB or more"
-msgstr "64 MB o més"
-
-#: Xconfig/card.pm:162
-#, c-format
-msgid "X server"
-msgstr "Servidor X"
-
-#: Xconfig/card.pm:163
-#, c-format
-msgid "Choose an X server"
-msgstr "Escolliu un servidor X"
-
-#: Xconfig/card.pm:195
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Configuració Multi-head"
-
-#: Xconfig/card.pm:196
-#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"El vostre sistema permet l'ús d'una configuració de múltiples capçals.\n"
-"Què voleu fer?"
-
-#: Xconfig/card.pm:265
-#, c-format
-msgid "Can not install Xorg package: %s"
-msgstr "No es pot instal·lar el paquet Xorg: %s"
-
-#: Xconfig/card.pm:275
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Seleccioneu la mida de la memòria de la vostra targeta gràfica"
-
-#: Xconfig/card.pm:371
-#, c-format
-msgid "Xorg configuration"
-msgstr "Configuració de l'Xorg"
-
-#: Xconfig/card.pm:373
-#, c-format
-msgid "Which configuration of Xorg do you want to have?"
-msgstr "Quina configuració de l'Xorg voleu tenir?"
-
-#: Xconfig/card.pm:406
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Configura tots els capçals independentment"
-
-#: Xconfig/card.pm:407
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Utilitza l'extensió Xinerama"
-
-#: Xconfig/card.pm:412
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Configura només la targeta \"%s\"%s"
-
-#: Xconfig/card.pm:424 Xconfig/various.pm:23
-#, c-format
-msgid "Xorg %s"
-msgstr "Xorg %s"
-
-#: Xconfig/card.pm:431 Xconfig/various.pm:22
-#, c-format
-msgid "Xorg %s with 3D hardware acceleration"
-msgstr "Xfree %s amb acceleració 3D de maquinari"
-
-#: Xconfig/card.pm:433
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with Xorg %s."
-msgstr ""
-"La vostra targeta pot tenir acceleració 3D de maquinari amb l'Xfree %s."
-
-#: Xconfig/card.pm:439
-#, c-format
-msgid "Xorg %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "Xorg %s amb acceleració 3D de maquinari EXPERIMENTAL"
-
-#: Xconfig/card.pm:441
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with Xorg %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"La vostra targeta pot tenir acceleració 3D de maquinari amb l'Xfree %s,\n"
-"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
-"PENJAR."
-
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:1021
-#, c-format
-msgid "Custom"
-msgstr "Personalitzada"
-
-#: Xconfig/main.pm:127 any.pm:742 diskdrake/dav.pm:26 help.pm:15
-#: install_steps_interactive.pm:1303 printer/printerdrake.pm:882
-#: printer/printerdrake.pm:899 printer/printerdrake.pm:4546
-#: printer/printerdrake.pm:5010 standalone/drakhosts:263
-#: standalone/drakroam:230 standalone/draksplash:93 standalone/logdrake:176
-#: standalone/net_applet:103 standalone/scannerdrake:494
-#, c-format
-msgid "Quit"
-msgstr "Surt"
-
-#: Xconfig/main.pm:129
-#, c-format
-msgid "Graphic Card"
-msgstr "Targeta gràfica"
-
-#: Xconfig/main.pm:132 Xconfig/monitor.pm:110
-#, c-format
-msgid "Monitor"
-msgstr "Monitor"
-
-#: Xconfig/main.pm:135 Xconfig/resolution_and_depth.pm:289
-#, c-format
-msgid "Resolution"
-msgstr "Resolució"
-
-#: Xconfig/main.pm:138
-#, c-format
-msgid "Test"
-msgstr "Test"
-
-#: Xconfig/main.pm:143 diskdrake/dav.pm:65 diskdrake/interactive.pm:449
-#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
-#: printer/printerdrake.pm:1112 standalone/drakfont:493
-#: standalone/drakfont:548
-#, c-format
-msgid "Options"
-msgstr "Opcions"
-
-#: Xconfig/main.pm:178
-#, c-format
-msgid "Your Xorg configuration file is broken, we will ignore it."
-msgstr "El vostre fitxer de configuració de Xorg no és vàlid, s'ignora."
-
-#: Xconfig/main.pm:196
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Voleu conservar els canvis?\n"
-"La configuració actual és:\n"
-"\n"
-"%s"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor for head #%d"
-msgstr ""
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor"
-msgstr "Escolliu un monitor"
-
-#: Xconfig/monitor.pm:117
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n'Play"
-
-#: Xconfig/monitor.pm:118 mouse.pm:49
-#, c-format
-msgid "Generic"
-msgstr "Genèric"
-
-#: Xconfig/monitor.pm:119 standalone/drakconnect:591 standalone/harddrake2:54
-#: standalone/harddrake2:88
-#, c-format
-msgid "Vendor"
-msgstr "Venedor"
-
-#: Xconfig/monitor.pm:129
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "L'exploració Plug'n'Play ha fallat. Especifiqueu un monitor"
-
-#: Xconfig/monitor.pm:137
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Els dos paràmetres més importants son la velocitat de refresc vertical, que\n"
-"és la velocitat a què es refresca tota la pantalla, i el més important, la\n"
-"velocitat de sincronització horitzontal, que és la velocitat a què es\n"
-"visualitzen les línies d'exploració.\n"
-"\n"
-"És MOLT IMPORTANT que no especifiqueu un tipus de monitor amb un rang\n"
-"de sincronització superior a les possibilitats del vostre monitor, perquè\n"
-"el podríeu fer malbé.\n"
-"En cas de dubte, sigueu conservador amb aquest paràmetre."
-
-#: Xconfig/monitor.pm:144
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Velocitat de refresc horitzontal"
-
-#: Xconfig/monitor.pm:145
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Velocitat de refresc vertical"
-
-#: Xconfig/resolution_and_depth.pm:10
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 colors (8 bits)"
-
-#: Xconfig/resolution_and_depth.pm:11
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32.768 colors (15 bits)"
-
-#: Xconfig/resolution_and_depth.pm:12
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65.536 colors (16 bits)"
-
-#: Xconfig/resolution_and_depth.pm:13
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 milions de colors (24 bits)"
-
-#: Xconfig/resolution_and_depth.pm:127
-#, c-format
-msgid "Resolutions"
-msgstr "Resolucions"
-
-#: Xconfig/resolution_and_depth.pm:311 diskdrake/hd_gtk.pm:336
-#: install_steps_gtk.pm:288 mouse.pm:168 services.pm:162
-#: standalone/drakbackup:1606 standalone/drakperm:250
-#, c-format
-msgid "Other"
-msgstr "Altres"
-
-#: Xconfig/resolution_and_depth.pm:360
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Escolliu la resolució i la profunditat de color"
-
-#: Xconfig/resolution_and_depth.pm:361
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Targeta gràfica: %s"
-
-#: Xconfig/resolution_and_depth.pm:375 interactive.pm:119 interactive.pm:436
-#: interactive/http.pm:103 interactive/http.pm:156 interactive/newt.pm:321
-#: interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:143
-#: standalone/drakTermServ:222 standalone/drakTermServ:543
-#: standalone/drakbackup:1372 standalone/drakbackup:4123
-#: standalone/drakbackup:4183 standalone/drakbackup:4227
-#: standalone/drakbackup:4481 standalone/drakconnect:158
-#: standalone/drakconnect:852 standalone/drakconnect:939
-#: standalone/drakconnect:1030 standalone/drakfont:569 standalone/drakfont:579
-#: standalone/draksplash:173 standalone/drakups:210 standalone/net_monitor:339
-#: ugtk2.pm:392 ugtk2.pm:490 ugtk2.pm:899 ugtk2.pm:922
-#, c-format
-msgid "Ok"
-msgstr "D'acord"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/smbnfs_gtk.pm:80 help.pm:90
-#: help.pm:445 install_steps_gtk.pm:455 install_steps_interactive.pm:406
-#: install_steps_interactive.pm:811 interactive.pm:120 interactive.pm:437
-#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
-#: interactive/stdio.pm:39 interactive/stdio.pm:142
-#: printer/printerdrake.pm:3882 standalone/drakautoinst:215
-#: standalone/drakbackup:1372 standalone/drakbackup:4052
-#: standalone/drakbackup:4056 standalone/drakbackup:4111
-#: standalone/drakbackup:4481 standalone/drakconnect:157
-#: standalone/drakconnect:937 standalone/drakconnect:1029
-#: standalone/drakfont:579 standalone/drakfont:655 standalone/drakfont:733
-#: standalone/draksplash:173 standalone/drakups:217 standalone/logdrake:176
-#: standalone/net_monitor:338 ugtk2.pm:386 ugtk2.pm:488 ugtk2.pm:497
-#: ugtk2.pm:899
-#, c-format
-msgid "Cancel"
-msgstr "Cancel·la"
-
-#
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/hd_gtk.pm:150
-#: install_steps_gtk.pm:232 install_steps_gtk.pm:617 interactive.pm:567
-#: interactive/gtk.pm:682 interactive/gtk.pm:684 standalone/drakTermServ:311
-#: standalone/drakbackup:4048 standalone/drakbug:105
-#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:511 standalone/draknfs:206 standalone/drakperm:133
-#: standalone/draksambashare:320 standalone/draksec:344 standalone/draksec:346
-#: standalone/draksec:364 standalone/draksec:366 ugtk2.pm:1031 ugtk2.pm:1032
-#, c-format
-msgid "Help"
-msgstr "Ajuda"
-
-#: Xconfig/test.pm:30
-#, c-format
-msgid "Test of the configuration"
-msgstr "Comprova la configuració"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Voleu comprovar la configuració?"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Avís: la comprovació d'aquesta targeta gràfica pot penjar-vos l'ordinador"
-
-#: Xconfig/test.pm:69
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"S'ha produït un error:\n"
-"%s\n"
-"Intenteu canviar alguns paràmetres"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Se sortirà en %d segons"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "És aquest el paràmetre correcte?"
-
-#: Xconfig/various.pm:29
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Disposició del teclat: %s\n"
-
-#: Xconfig/various.pm:30
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Tipus de ratolí: %s\n"
-
-#: Xconfig/various.pm:31
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Dispositiu del ratolí: %s\n"
-
-#: Xconfig/various.pm:33
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: Xconfig/various.pm:34
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Sincronització horitzontal del monitor: %s\n"
-
-#: Xconfig/various.pm:35
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Refresc vertical del monitor: %s\n"
-
-#: Xconfig/various.pm:37
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Targeta gràfica: %s\n"
-
-#: Xconfig/various.pm:38
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Memòria gràfica: %s kB\n"
-
-#: Xconfig/various.pm:40
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Profunditat del color: %s\n"
-
-#: Xconfig/various.pm:41
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Resolució: %s\n"
-
-#: Xconfig/various.pm:43
-#, c-format
-msgid "Xorg driver: %s\n"
-msgstr "Controlador de l'Xorg: %s\n"
-
-#: Xconfig/various.pm:72
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "Interfície gràfica a l'inici"
-
-#: Xconfig/various.pm:74
-#, c-format
-msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(Xorg) upon booting.\n"
-"Would you like Xorg to start when you reboot?"
-msgstr ""
-"Puc configurar el vostre ordinador de manera que executi automàticament la "
-"interfície gràfica durant l'arrencada.\n"
-"Voleu que Xorg s'iniciï quan torneu a arrencar l'ordinador?"
-
-#: Xconfig/various.pm:87
-#, c-format
-msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
-msgstr ""
-"Sembla que la vostra targeta gràfica té un connector TV-OUT.\n"
-"Pot configurar-se de manera que faci servir memòria d'imatge.\n"
-"\n"
-"A tal efecte, heu de connectar la targeta gràfica al televisor abans "
-"d'arrencar l'ordinador.\n"
-"Llavors, escolliu l'opció \"TVout\" en el carregador de l'arrencada\n"
-"\n"
-"Teniu aquesta característica?"
-
-#: Xconfig/various.pm:99
-#, c-format
-msgid "What norm is your TV using?"
-msgstr "Quina norma segueix el vostre televisor?"
-
-#: Xconfig/xfree.pm:648
-#, c-format
-msgid ""
-"_:weird aspect ratio\n"
-"other"
-msgstr "altre"
-
-#: any.pm:153 harddrake/sound.pm:195 interactive.pm:474 pkgs.pm:474
-#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
-#: standalone/drakups:99 standalone/drakxtv:92 standalone/harddrake2:375
-#: standalone/service_harddrake:235
+#: any.pm:157 diskdrake/interactive.pm:422 diskdrake/interactive.pm:617
+#: diskdrake/interactive.pm:798 diskdrake/interactive.pm:842
+#: diskdrake/interactive.pm:904 diskdrake/interactive.pm:1188 do_pkgs.pm:209
+#: do_pkgs.pm:255 harddrake/sound.pm:195 interactive.pm:576
#, c-format
msgid "Please wait"
msgstr "Espereu si us plau"
-#: any.pm:153
+#: any.pm:157
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instal·lació del carregador de l'arrencada en curs"
-#: any.pm:164
+#: any.pm:168
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -854,14 +41,14 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:175
+#: any.pm:179
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Ha fallat la instal·lació del carregador de l'arrencada. S'ha produït "
"l'error següent:"
-#: any.pm:181
+#: any.pm:185
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -880,7 +67,7 @@ msgstr ""
"En l'arrencada següent heu de veure l'indicador del carregador de "
"l'arrencada."
-#: any.pm:219
+#: any.pm:223
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -895,260 +82,271 @@ msgstr ""
"\n"
"En quina unitat arrenqueu?"
-#: any.pm:242 help.pm:740
+#: any.pm:246
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Primer sector de la unitat (MBR)"
-#: any.pm:243
+#: any.pm:247
#, c-format
msgid "First sector of the root partition"
msgstr "Primer sector de la partició de root"
-#: any.pm:245
+#: any.pm:249
#, c-format
msgid "On Floppy"
msgstr "En el disquet"
-#: any.pm:247 help.pm:740 printer/printerdrake.pm:4203
+#: any.pm:251
#, c-format
msgid "Skip"
msgstr "Omet"
-#: any.pm:251
+#: any.pm:255
#, c-format
msgid "LILO/grub Installation"
msgstr "Instal·lació del LILO/grub"
-#: any.pm:252
+#: any.pm:257
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "On voleu instal·lar el carregador de l'arrencada?"
-#: any.pm:278 standalone/drakboot:269
+#: any.pm:284
#, c-format
msgid "Boot Style Configuration"
msgstr "Configuració del tipus d'arrencada"
-#: any.pm:280 any.pm:281 any.pm:314 any.pm:315
+#: any.pm:294 any.pm:326 any.pm:327
#, c-format
msgid "Bootloader main options"
msgstr "Opcions principals del carregador de l'arrencada"
-#: any.pm:286
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Introduïu la mida de la RAM en MB"
-
-#: any.pm:288
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"L'opció \"Limita les opcions de la línia d'ordres\" no té cap utilitat sense "
-"una contrasenya"
-
-#: any.pm:289 any.pm:628 authentication.pm:192
-#, c-format
-msgid "The passwords do not match"
-msgstr "Les contrasenyes no coincideixen"
-
-#: any.pm:289 any.pm:628 authentication.pm:192 diskdrake/interactive.pm:1336
+#: any.pm:299
#, c-format
-msgid "Please try again"
-msgstr "Si us plau, torneu-ho a intentar"
+msgid "Bootloader"
+msgstr "Carregador d'arrencada"
-#: any.pm:294 any.pm:319
+#: any.pm:300 any.pm:331
#, c-format
msgid "Bootloader to use"
msgstr "Carregador de l'arrencada a utilitzar"
-#: any.pm:296 any.pm:321
+#: any.pm:302 any.pm:333
#, c-format
msgid "Boot device"
msgstr "Dispositiu d'arrencada"
-#: any.pm:298
+#: any.pm:304
+#, c-format
+msgid "Main options"
+msgstr ""
+
+#: any.pm:305
#, c-format
msgid "Delay before booting default image"
msgstr "Demora abans d'arrencar la imatge predeterminada"
-#: any.pm:299
+#: any.pm:306
#, c-format
msgid "Enable ACPI"
msgstr "Habilita l'ACPI"
-#: any.pm:301
-#, c-format
-msgid "Force no APIC"
-msgstr "Imposa No APIC"
+#: any.pm:307
+#, fuzzy, c-format
+msgid "Enable APIC"
+msgstr "Habilita l'ACPI"
-#: any.pm:303
-#, c-format
-msgid "Force No Local APIC"
-msgstr "Imposa No APIC Local"
+#: any.pm:308
+#, fuzzy, c-format
+msgid "Enable Local APIC"
+msgstr "Habilita l'ACPI"
-#: any.pm:305 any.pm:662 authentication.pm:197 diskdrake/smbnfs_gtk.pm:180
-#: network/netconnect.pm:584 printer/printerdrake.pm:1867
-#: printer/printerdrake.pm:1988 standalone/drakbackup:1650
-#: standalone/drakbackup:3641 standalone/drakups:297
+#: any.pm:310 any.pm:686 authentication.pm:196 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Contrasenya"
-#: any.pm:306 any.pm:663 authentication.pm:198
+#: any.pm:312 authentication.pm:207
+#, c-format
+msgid "The passwords do not match"
+msgstr "Les contrasenyes no coincideixen"
+
+#: any.pm:312 authentication.pm:207 diskdrake/interactive.pm:1348
+#, c-format
+msgid "Please try again"
+msgstr "Si us plau, torneu-ho a intentar"
+
+#: any.pm:313
+#, fuzzy, c-format
+msgid "You can not use a password with %s"
+msgstr ""
+"No podeu utilitzar un sistema d'arxius xifrat per al punt de muntatge %s"
+
+#: any.pm:316 any.pm:687 authentication.pm:197
#, c-format
msgid "Password (again)"
msgstr "Contrasenya (un altre cop)"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "Restrict command line options"
msgstr "Limita les opcions de la línia d'ordres"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "restrict"
msgstr "limita"
-#: any.pm:309
+#: any.pm:318
+#, c-format
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr ""
+"L'opció \"Limita les opcions de la línia d'ordres\" no té cap utilitat sense "
+"una contrasenya"
+
+#: any.pm:320
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Buida /tmp en cada arrencada"
-#: any.pm:310
+#: any.pm:321
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Mida exacta de la RAM, si cal (s'han trobat %d MB)"
-#: any.pm:320
+#: any.pm:322
+#, c-format
+msgid "Give the ram size in MB"
+msgstr "Introduïu la mida de la RAM en MB"
+
+#: any.pm:332
#, c-format
msgid "Init Message"
msgstr "Missatge d'inicialització"
-#: any.pm:322
+#: any.pm:334
#, c-format
msgid "Open Firmware Delay"
msgstr "Demora per al firmware obert"
-#: any.pm:323
+#: any.pm:335
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Temps màxim d'arrencada del nucli"
-#: any.pm:324
+#: any.pm:336
#, c-format
msgid "Enable CD Boot?"
msgstr "Voleu habilitar l'arrencada des de CD?"
-#: any.pm:325
+#: any.pm:337
#, c-format
msgid "Enable OF Boot?"
msgstr "Voleu habilitar l'arrencada des d'OF?"
-#: any.pm:326
+#: any.pm:338
#, c-format
msgid "Default OS?"
msgstr "SO per defecte?"
-#: any.pm:380
+#: any.pm:404
#, c-format
msgid "Image"
msgstr "Imatge"
-#: any.pm:381 any.pm:391
+#: any.pm:405 any.pm:418
#, c-format
msgid "Root"
msgstr "Arrel"
-#: any.pm:382 any.pm:404
+#: any.pm:406 any.pm:431
#, c-format
msgid "Append"
msgstr "Afegeix"
-#: any.pm:384 standalone/drakboot:271 standalone/drakboot:275
+#: any.pm:408
+#, c-format
+msgid "Xen append"
+msgstr ""
+
+#: any.pm:411
#, c-format
msgid "Video mode"
msgstr "Mode de vídeo"
-#: any.pm:386
+#: any.pm:413
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:387
+#: any.pm:414
#, c-format
msgid "Network profile"
msgstr "Perfil de xarxa"
-#: any.pm:396 any.pm:401 any.pm:403 diskdrake/interactive.pm:450
+#: any.pm:423 any.pm:428 any.pm:430 diskdrake/interactive.pm:443
#, c-format
msgid "Label"
msgstr "Etiqueta"
-#: any.pm:398 any.pm:408 harddrake/v4l.pm:438 standalone/drakbackup:2104
-#: standalone/draksec:52
+#: any.pm:425 any.pm:433 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Predeterminat"
-#: any.pm:405
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd-size"
-
-#: any.pm:407
+#: any.pm:432
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:418
+#: any.pm:443
#, c-format
msgid "Empty label not allowed"
msgstr "No es permet una etiqueta buida"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a kernel image"
msgstr "Heu d'especificar una imatge del nucli"
-#
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a root partition"
msgstr "Heu d'especificar una partició arrel"
-#: any.pm:420
+#: any.pm:445
#, c-format
msgid "This label is already used"
msgstr "Aquesta etiqueta ja està en ús"
-#: any.pm:434
+#: any.pm:459
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Quin tipus d'entrada voleu afegir?"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Un altre SO (SunOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Un altre SO (MacOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (Windows...)"
msgstr "Un altre SO (Windows...)"
-#: any.pm:464
+#: any.pm:489
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -1157,94 +355,89 @@ msgstr ""
"Aquestes són les diferents entrades en el menú d'arrencada.\n"
"Podeu afegir-ne més o canviar-ne les existents."
-#: any.pm:614
+#: any.pm:640
#, c-format
msgid "access to X programs"
msgstr "accés a programes X"
-#: any.pm:615
+#: any.pm:641
#, c-format
msgid "access to rpm tools"
msgstr "accés a les eines rpm"
-#: any.pm:616
+#: any.pm:642
#, c-format
msgid "allow \"su\""
msgstr "permet \"su\""
-#: any.pm:617
+#: any.pm:643
#, c-format
msgid "access to administrative files"
msgstr "accés a fitxers administratius"
-#: any.pm:618
+#: any.pm:644
#, c-format
msgid "access to network tools"
msgstr "accés a les eines de xarxa"
-#: any.pm:619
+#: any.pm:645
#, c-format
msgid "access to compilation tools"
msgstr "accés a les eines de compilació"
-#: any.pm:624
+#: any.pm:650
#, c-format
msgid "(already added %s)"
msgstr "(ja s'ha afegit %s)"
-#: any.pm:629
-#, c-format
-msgid "This password is too simple"
-msgstr "Aquesta contrasenya és massa senzilla"
-
-#: any.pm:630
+#: any.pm:657
#, c-format
msgid "Please give a user name"
msgstr "Si us plau, introduïu un nom d'usuari"
-#: any.pm:631
+#: any.pm:658
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"El nom d'usuari només pot contenir lletres en minúscula, números, '-' i '_'"
-#: any.pm:632
+#: any.pm:659
#, c-format
msgid "The user name is too long"
msgstr "El nom d'usuari és massa llarg"
-#: any.pm:633
+#: any.pm:660
#, c-format
msgid "This user name has already been added"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: any.pm:634 any.pm:665
+#: any.pm:661 any.pm:689
#, c-format
msgid "User ID"
msgstr "ID d'usuari"
-#: any.pm:635 any.pm:666
+#: any.pm:662 any.pm:690
#, c-format
msgid "Group ID"
msgstr "ID de grup"
-#: any.pm:638
+#: any.pm:665
#, c-format
msgid "%s must be a number"
msgstr "%s ha de ser un número"
-#: any.pm:639
+#: any.pm:666
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s hauria de ser superior a 500. Continuar tot i això?"
-#: any.pm:644 standalone/draksambashare:1214
+#: any.pm:671
#, c-format
msgid "Add user"
msgstr "Afegeix un usuari"
-#: any.pm:646
+#: any.pm:673
#, c-format
msgid ""
"Enter a user\n"
@@ -1253,102 +446,96 @@ msgstr ""
"Introduïu un usuari\n"
"%s"
-#: any.pm:649 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:154
-#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:81 help.pm:531
-#: interactive/http.pm:151 printer/printerdrake.pm:197
-#: printer/printerdrake.pm:382 printer/printerdrake.pm:5010
-#: standalone/drakbackup:2836 standalone/scannerdrake:685
-#: standalone/scannerdrake:835
+#: any.pm:676 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:166
+#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:82
+#: interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Fet"
-#: any.pm:650 help.pm:52
+#: any.pm:677
#, c-format
msgid "Accept user"
msgstr "Accepta l'usuari"
-#: any.pm:660
+#: any.pm:682
#, c-format
msgid "Real name"
msgstr "Nom real"
-#: any.pm:661 standalone/drakbackup:1645
+#: any.pm:685
#, c-format
msgid "Login name"
msgstr "Nom d'accés"
-#: any.pm:664
+#: any.pm:688
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:668
-#, c-format
-msgid "Icon"
-msgstr "Icona"
-
-#: any.pm:715 security/l10n.pm:14
+#: any.pm:735 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Entrada automàtica"
-#
-#: any.pm:716
+#: any.pm:736
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Puc configurar el vostre ordinador de manera que entri automàticament amb un "
"nom d'usuari."
-#: any.pm:717
+#: any.pm:737
#, c-format
msgid "Use this feature"
msgstr "Utilitza aquesta característica"
-#: any.pm:718
+#: any.pm:738
#, c-format
msgid "Choose the default user:"
msgstr "Escolliu l'usuari per defecte:"
-#: any.pm:719
+#: any.pm:739
#, c-format
msgid "Choose the window manager to run:"
msgstr "Escolliu el gestor de finestres per executar:"
-#: any.pm:740
+#: any.pm:767
#, c-format
msgid "License agreement"
msgstr "Acord de llicència"
-#: any.pm:745
+#: any.pm:770 diskdrake/dav.pm:26
+#, c-format
+msgid "Quit"
+msgstr "Surt"
+
+#: any.pm:773
#, c-format
msgid "Release Notes"
msgstr ""
-#: any.pm:748 help.pm:15 install_steps_gtk.pm:539
-#: install_steps_interactive.pm:715 standalone/drakautoinst:214
+#: any.pm:776
#, c-format
msgid "Accept"
msgstr "Accepta"
-#: any.pm:748 install_steps_gtk.pm:539 install_steps_interactive.pm:715
+#: any.pm:776
#, c-format
msgid "Refuse"
msgstr "Rebutja"
-#
-#: any.pm:765 any.pm:833
+#: any.pm:795 any.pm:863
#, c-format
msgid "Please choose a language to use."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: any.pm:766 any.pm:834
+#: any.pm:796 any.pm:864
#, c-format
msgid "Language choice"
msgstr "Tria d'idioma"
-#: any.pm:794
+#: any.pm:826
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
@@ -1359,72 +546,72 @@ msgstr ""
"els llenguatges que vulgueu instal·lar. Estaran disponibles\n"
"quan reinicieu el sistema, després que la instal·lació s'hagi completat."
-#: any.pm:797
+#: any.pm:829
#, c-format
msgid "Multi languages"
msgstr ""
-#: any.pm:813 any.pm:842 help.pm:648
+#: any.pm:841 any.pm:872
#, c-format
-msgid "Use Unicode by default"
-msgstr "Utilitza Unicode per defecte"
+msgid "Old compatibility (non UTF-8) encoding"
+msgstr ""
-#: any.pm:814 help.pm:648
+#: any.pm:843
#, c-format
msgid "All languages"
msgstr "Tots els idiomes"
-#: any.pm:888 help.pm:567 help.pm:856 install_steps_interactive.pm:932
+#: any.pm:918
#, c-format
msgid "Country / Region"
msgstr "País / Regió"
-#: any.pm:890
+#: any.pm:920
#, c-format
msgid "Please choose your country."
msgstr "Si us plau, seleccioneu el vostre país."
-#: any.pm:892
+#: any.pm:922
#, c-format
msgid "Here is the full list of available countries"
msgstr "Aquesta és la llista completa de països"
-#: any.pm:893
+#: any.pm:923
#, c-format
msgid "Other Countries"
msgstr "Altres països"
-#: any.pm:893 help.pm:52 help.pm:410 help.pm:432 help.pm:648 help.pm:723
-#: interactive.pm:397
+#: any.pm:923 interactive.pm:477
#, c-format
msgid "Advanced"
msgstr "Avançat"
-#: any.pm:901
+#: any.pm:929
#, c-format
msgid "Input method:"
msgstr "Mètode d'entrada:"
-#: any.pm:904 install_any.pm:422 network/netconnect.pm:317
-#: network/netconnect.pm:322 network/netconnect.pm:1237 network/wireless.pm:7
-#: printer/printerdrake.pm:117
+#: any.pm:932
#, c-format
msgid "None"
msgstr "Cap"
-#
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "No sharing"
msgstr "No es comparteix"
-#
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "Allow all users"
msgstr "Permet tots els usuaris"
-#: any.pm:1025
+#: any.pm:1012
+#, c-format
+msgid "Custom"
+msgstr "Personalitzada"
+
+#: any.pm:1016
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1439,7 +626,7 @@ msgstr ""
"\n"
"\"Personalitzat\" permet configurar cada usuari per separat.\n"
-#: any.pm:1037
+#: any.pm:1028
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -1448,7 +635,7 @@ msgstr ""
"NFS: el sistema de compartició de fitxers tradicional de Unix, amb menys "
"suport a Mac i Windows."
-#: any.pm:1040
+#: any.pm:1031
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -1457,29 +644,23 @@ msgstr ""
"SMB: un sistema de compartició de fitxers usat per Windows, Mac OS X i "
"bastants sistemes Linux moderns."
-#: any.pm:1048
+#: any.pm:1039
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Podeu exportar utilitzant NFS o SMB. Seleccioneu quin voleu utilitzar."
-#: any.pm:1073
+#: any.pm:1064
#, c-format
msgid "Launch userdrake"
msgstr "Executa userdrake"
-#: any.pm:1073 printer/printerdrake.pm:4085 printer/printerdrake.pm:4088
-#: printer/printerdrake.pm:4089 printer/printerdrake.pm:4090
-#: printer/printerdrake.pm:5328 standalone/drakTermServ:321
-#: standalone/drakbackup:4245 standalone/drakbug:126 standalone/drakfont:499
-#: standalone/drakids:64 standalone/drakids:77 standalone/drakids:85
-#: standalone/draknfs:210 standalone/net_monitor:117
-#: standalone/printerdrake:583
+#: any.pm:1064 interactive/gtk.pm:747
#, c-format
msgid "Close"
msgstr "Tanca"
-#: any.pm:1075
+#: any.pm:1066
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -1488,6 +669,58 @@ msgstr ""
"La compartició per usuari utilitza el grup \"fileshare\".\n"
"Podeu utilitzar userdrake per a afegir un usuari a aquest grup."
+#: any.pm:1158
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-tecla de retrocés"
+
+#: any.pm:1162
+#, c-format
+msgid "You need to log out and back in again for changes to take effect"
+msgstr "Heu de sortir i tornar a entrar per tal que els canvis tinguin efecte"
+
+#: any.pm:1212
+#, c-format
+msgid "Timezone"
+msgstr "Fus horari"
+
+#: any.pm:1212
+#, c-format
+msgid "Which is your timezone?"
+msgstr "En quina zona horària us trobeu?"
+
+#: any.pm:1224 any.pm:1226
+#, c-format
+msgid "Date, Clock & Time Zone Settings"
+msgstr ""
+
+#: any.pm:1227
+#, c-format
+msgid "What is the best time?"
+msgstr ""
+
+#
+#: any.pm:1231
+#, fuzzy, c-format
+msgid "%s (hardware clock set to UTC)"
+msgstr "El rellotge del vostre ordinador està regulat per GMT"
+
+#
+#: any.pm:1232
+#, fuzzy, c-format
+msgid "%s (hardware clock set to local time)"
+msgstr "El rellotge del vostre ordinador està regulat per GMT"
+
+#: any.pm:1234
+#, c-format
+msgid "NTP Server"
+msgstr "Servidor NTP"
+
+#: any.pm:1235
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Sincronització automàtica de la hora (usant NTP)"
+
#: authentication.pm:23
#, c-format
msgid "Local file"
@@ -1523,7 +756,6 @@ msgstr "Active Directory amb SFU"
msgid "Active Directory with Winbind"
msgstr "Active Directory amb Winbind"
-#
#: authentication.pm:66
#, c-format
msgid "Local file:"
@@ -1549,7 +781,6 @@ msgstr ""
"El vostre ordinador usarà LDAP per alguna o totes les autenticacions. LDAP "
"consolida certs tipus d0informació dintre de les organitzacions."
-#
#: authentication.pm:68
#, c-format
msgid "NIS:"
@@ -1596,7 +827,6 @@ msgid ""
"Directory Server."
msgstr ""
-#
#: authentication.pm:96
#, c-format
msgid "Authentication LDAP"
@@ -1607,8 +837,7 @@ msgstr "Autenticació LDAP"
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#
-#: authentication.pm:98 share/compssUsers.pl:102
+#: authentication.pm:98
#, c-format
msgid "LDAP Server"
msgstr "Servidor LDAP"
@@ -1638,14 +867,12 @@ msgstr ""
msgid "Authentication Active Directory"
msgstr ""
-#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:181
+#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Domini"
-#: authentication.pm:124 diskdrake/dav.pm:63 help.pm:147
-#: printer/printerdrake.pm:75 share/compssUsers.pl:82
-#: standalone/drakTermServ:296
+#: authentication.pm:124 diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Servidor"
@@ -1670,7 +897,6 @@ msgstr ""
msgid "Password for user"
msgstr ""
-#
#: authentication.pm:140
#, c-format
msgid "Authentication NIS"
@@ -1715,7 +941,6 @@ msgstr ""
"de l'administrador, després que arrenqui el sistema.\n"
"L'ordre 'wbinfo -t' comprovarà si els secrets d'autenticació són bons."
-#
#: authentication.pm:159
#, c-format
msgid "Authentication Windows Domain"
@@ -1736,42 +961,34 @@ msgstr "Nom d'usuari de l'administrador del domini"
msgid "Domain Admin Password"
msgstr "Contrasenya de l'administrador del domini"
-#: authentication.pm:181
+#: authentication.pm:181 authentication.pm:198
#, c-format
-msgid "Set administrator (root) password and network authentication methods"
-msgstr ""
-"Estableix la contrasenya de l'administrador (roo)t i els mètodes "
-"d'autenticació de xarxa"
+msgid "Authentication"
+msgstr "Autenticació"
#: authentication.pm:182
#, c-format
msgid "Set administrator (root) password"
msgstr "Estableix la contrasenya de l'administrador (root)"
-#: authentication.pm:183 standalone/drakvpn:1111
+#: authentication.pm:184
#, c-format
msgid "Authentication method"
msgstr "Mètode d'autenticació"
#. -PO: keep this short or else the buttons will not fit in the window
-#: authentication.pm:188 help.pm:723
+#: authentication.pm:189
#, c-format
msgid "No password"
msgstr "Sense contrasenya"
-#: authentication.pm:194
+#: authentication.pm:210
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Aquesta contrasenya és massa curta (ha de tenir com a mínim %d caràcters)"
-#: authentication.pm:199 network/netconnect.pm:322 network/netconnect.pm:585
-#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:481
-#, c-format
-msgid "Authentication"
-msgstr "Autenticació"
-
-#: authentication.pm:331
+#: authentication.pm:351
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "No es pot utilitzar la difusió sense un domini NIS"
@@ -1781,7 +998,7 @@ msgstr "No es pot utilitzar la difusió sense un domini NIS"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:767
+#: bootloader.pm:880
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1796,42 +1013,42 @@ msgstr ""
"per arrencar en el sistema operatiu predeterminat.\n"
"\n"
-#: bootloader.pm:909
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO amb menú gràfic"
-
-#: bootloader.pm:910
+#: bootloader.pm:1028
#, c-format
msgid "LILO with text menu"
msgstr "LILO amb menú de text"
-#: bootloader.pm:911
+#: bootloader.pm:1029
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB amb menú gràfic"
-#: bootloader.pm:912
+#: bootloader.pm:1030
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB amb menú de text"
-#: bootloader.pm:913
+#: bootloader.pm:1031
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:990
+#: bootloader.pm:1032
+#, c-format
+msgid "SILO"
+msgstr "SILO"
+
+#: bootloader.pm:1112
#, c-format
msgid "not enough room in /boot"
msgstr "no hi ha prou espai a /boot"
-#: bootloader.pm:1483
+#: bootloader.pm:1679
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "No podeu instal·lar el carregador de l'arrencada a una partició %s\n"
-#: bootloader.pm:1523
+#: bootloader.pm:1732
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1840,7 +1057,7 @@ msgstr ""
"La configuració del vostre carregador d'arrencada s'ha d'actualitzar ja que "
"la partició ha estat renumerada"
-#: bootloader.pm:1536
+#: bootloader.pm:1745
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
@@ -1849,249 +1066,55 @@ msgstr ""
"El carregador d'arrencada no s'ha pogut instal·lar correctament. Heu "
"d'arrencar amb l'opció de rescat i escollir \"%s\""
-#: bootloader.pm:1537
+#: bootloader.pm:1746
#, c-format
msgid "Re-install Boot Loader"
msgstr "Reinstal·la el carregador de l'arrencada"
-#: common.pm:134
+#: common.pm:129
+#, fuzzy, c-format
+msgid "B"
+msgstr "KB"
+
+#: common.pm:129
#, c-format
msgid "KB"
msgstr "KB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "MB"
msgstr "MB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "GB"
msgstr "GB"
-#: common.pm:142
+#: common.pm:137
#, c-format
msgid "TB"
msgstr "TB"
-#: common.pm:150
+#: common.pm:145
#, c-format
msgid "%d minutes"
msgstr "%d minuts"
-#: common.pm:152
+#: common.pm:147
#, c-format
msgid "1 minute"
msgstr "1 minut"
-#: common.pm:154
+#: common.pm:149
#, c-format
msgid "%d seconds"
msgstr "%d segons"
-#: common.pm:260
-#, c-format
-msgid "kdesu missing"
-msgstr "El kdesu no hi és"
-
-#: common.pm:263
-#, c-format
-msgid "consolehelper missing"
-msgstr "El consolehelper no hi és"
-
-#
-#: crypto.pm:13 crypto.pm:48 lang.pm:207 network/adsl_consts.pm:66
-#: network/adsl_consts.pm:75 network/adsl_consts.pm:84
-#, c-format
-msgid "Austria"
-msgstr "Àustria"
-
-#: crypto.pm:14 crypto.pm:47 lang.pm:208 standalone/drakxtv:48
-#, c-format
-msgid "Australia"
-msgstr "Austràlia"
-
-#
-#: crypto.pm:15 crypto.pm:49 lang.pm:214 network/adsl_consts.pm:93
-#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
-#: network/adsl_consts.pm:123 network/netconnect.pm:44
-#, c-format
-msgid "Belgium"
-msgstr "Bèlgica"
-
-#: crypto.pm:16 crypto.pm:50 lang.pm:223 network/adsl_consts.pm:132
-#: network/adsl_consts.pm:143 network/adsl_consts.pm:152
-#: network/adsl_consts.pm:161
-#, c-format
-msgid "Brazil"
-msgstr "Brasil"
-
-#: crypto.pm:17 crypto.pm:51 lang.pm:230
-#, c-format
-msgid "Canada"
-msgstr "Canadà"
-
-#: crypto.pm:18 crypto.pm:74 lang.pm:235 network/adsl_consts.pm:891
-#: network/adsl_consts.pm:900 network/adsl_consts.pm:911
-#, c-format
-msgid "Switzerland"
-msgstr "Suïssa"
-
-#: crypto.pm:19 lang.pm:242
-#, c-format
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: crypto.pm:20 crypto.pm:52 lang.pm:248 network/adsl_consts.pm:368
-#, c-format
-msgid "Czech Republic"
-msgstr "República Txeca"
-
-#: crypto.pm:21 crypto.pm:57 lang.pm:249 network/adsl_consts.pm:499
-#: network/adsl_consts.pm:508
-#, c-format
-msgid "Germany"
-msgstr "Alemanya"
-
-#: crypto.pm:22 crypto.pm:53 lang.pm:251 network/adsl_consts.pm:378
-#, c-format
-msgid "Denmark"
-msgstr "Dinamarca"
-
-#: crypto.pm:23 crypto.pm:54 lang.pm:256
-#, c-format
-msgid "Estonia"
-msgstr "Estònia"
-
-#: crypto.pm:24 crypto.pm:72 lang.pm:260 network/adsl_consts.pm:759
-#: network/adsl_consts.pm:770 network/adsl_consts.pm:781
-#: network/adsl_consts.pm:792 network/adsl_consts.pm:801
-#: network/adsl_consts.pm:810 network/adsl_consts.pm:819
-#: network/adsl_consts.pm:828 network/adsl_consts.pm:837
-#: network/adsl_consts.pm:846 network/adsl_consts.pm:855
-#: network/adsl_consts.pm:864 network/adsl_consts.pm:873
-#, c-format
-msgid "Spain"
-msgstr "Espanya"
-
-#: crypto.pm:25 crypto.pm:55 lang.pm:262 network/adsl_consts.pm:387
-#, c-format
-msgid "Finland"
-msgstr "Finlàndia"
-
-#: crypto.pm:26 crypto.pm:56 lang.pm:267 network/adsl_consts.pm:396
-#: network/adsl_consts.pm:408 network/adsl_consts.pm:420
-#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
-#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
-#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
-#: network/netconnect.pm:41
-#, c-format
-msgid "France"
-msgstr "França"
-
-#
-#: crypto.pm:27 crypto.pm:58 lang.pm:280 network/adsl_consts.pm:519
-#, c-format
-msgid "Greece"
-msgstr "Grècia"
-
-#: crypto.pm:28 crypto.pm:59 lang.pm:291 network/adsl_consts.pm:528
-#, c-format
-msgid "Hungary"
-msgstr "Hongria"
-
-#
-#: crypto.pm:29 crypto.pm:60 lang.pm:293 network/adsl_consts.pm:537
-#: standalone/drakxtv:47
-#, c-format
-msgid "Ireland"
-msgstr "Irlanda"
-
-#: crypto.pm:30 crypto.pm:61 lang.pm:294 network/adsl_consts.pm:546
-#, c-format
-msgid "Israel"
-msgstr "Israel"
-
-#
-#: crypto.pm:31 crypto.pm:62 lang.pm:300 network/adsl_consts.pm:557
-#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
-#: network/adsl_consts.pm:589 network/netconnect.pm:43 standalone/drakxtv:47
+#: common.pm:298
#, c-format
-msgid "Italy"
-msgstr "Itàlia"
-
-#: crypto.pm:32 crypto.pm:63 lang.pm:303
-#, c-format
-msgid "Japan"
-msgstr "Japó"
-
-#: crypto.pm:33 crypto.pm:64 lang.pm:352 network/adsl_consts.pm:620
-#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
-#: network/adsl_consts.pm:647 network/netconnect.pm:42
-#, c-format
-msgid "Netherlands"
-msgstr "Països Baixos"
-
-#
-#: crypto.pm:34 crypto.pm:66 lang.pm:353 network/adsl_consts.pm:656
-#: network/adsl_consts.pm:661 network/adsl_consts.pm:666
-#: network/adsl_consts.pm:671 network/adsl_consts.pm:676
-#: network/adsl_consts.pm:681 network/adsl_consts.pm:686
-#, c-format
-msgid "Norway"
-msgstr "Noruega"
-
-#: crypto.pm:35 crypto.pm:65 lang.pm:357
-#, c-format
-msgid "New Zealand"
-msgstr "Nova Zelanda"
-
-#: crypto.pm:36 crypto.pm:67 lang.pm:365 network/adsl_consts.pm:693
-#: network/adsl_consts.pm:704
-#, c-format
-msgid "Poland"
-msgstr "Polònia"
-
-#: crypto.pm:37 crypto.pm:68 lang.pm:370 network/adsl_consts.pm:716
-#, c-format
-msgid "Portugal"
-msgstr "Portugal"
-
-#: crypto.pm:38 crypto.pm:69 lang.pm:376 network/adsl_consts.pm:725
-#, c-format
-msgid "Russia"
-msgstr "Rússia"
-
-#
-#: crypto.pm:39 crypto.pm:73 lang.pm:382 network/adsl_consts.pm:882
-#, c-format
-msgid "Sweden"
-msgstr "Suècia"
-
-#: crypto.pm:40 crypto.pm:70 lang.pm:387
-#, c-format
-msgid "Slovakia"
-msgstr "Eslovàquia"
-
-#: crypto.pm:41 crypto.pm:76 lang.pm:401 network/adsl_consts.pm:920
-#, c-format
-msgid "Thailand"
-msgstr "Tailàndia"
-
-#: crypto.pm:42 crypto.pm:75 lang.pm:411
-#, c-format
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#: crypto.pm:43 crypto.pm:71 lang.pm:430 standalone/drakxtv:49
-#, c-format
-msgid "South Africa"
-msgstr "Sud-àfrica"
-
-#: crypto.pm:77 crypto.pm:112 lang.pm:416 network/netconnect.pm:45
-#, c-format
-msgid "United States"
-msgstr "Estats Units"
+msgid "command %s missing"
+msgstr ""
#: diskdrake/dav.pm:17
#, c-format
@@ -2112,24 +1135,46 @@ msgstr ""
msgid "New"
msgstr "Nou"
-#: diskdrake/dav.pm:61 diskdrake/interactive.pm:456 diskdrake/smbnfs_gtk.pm:74
+#: diskdrake/dav.pm:61 diskdrake/interactive.pm:449 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Desmunta"
-#: diskdrake/dav.pm:62 diskdrake/interactive.pm:453 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:62 diskdrake/interactive.pm:446 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Munta"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:447
-#: diskdrake/interactive.pm:679 diskdrake/interactive.pm:698
-#: diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:78
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:440
+#: diskdrake/interactive.pm:670 diskdrake/interactive.pm:688
+#: diskdrake/interactive.pm:692 diskdrake/removable.pm:23
+#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Punt de muntatge"
-#
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:442
+#: diskdrake/interactive.pm:1047 diskdrake/removable.pm:24
+#: diskdrake/smbnfs_gtk.pm:80
+#, c-format
+msgid "Options"
+msgstr "Opcions"
+
+#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:229
+#: diskdrake/interactive.pm:242 diskdrake/interactive.pm:398
+#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:547
+#: diskdrake/interactive.pm:552 diskdrake/interactive.pm:660
+#: diskdrake/interactive.pm:922 diskdrake/interactive.pm:1092
+#: diskdrake/interactive.pm:1105 diskdrake/interactive.pm:1108
+#: diskdrake/interactive.pm:1348 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:19
+#: do_pkgs.pm:24 do_pkgs.pm:40 do_pkgs.pm:56 do_pkgs.pm:61 fsedit.pm:229
+#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
+#: scanner.pm:94 scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95
+#: wizards.pm:99 wizards.pm:121
+#, c-format
+msgid "Error"
+msgstr "Error"
+
#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
@@ -2145,34 +1190,48 @@ msgstr "L'URL ha de començar per http:// o https://"
msgid "Server: "
msgstr "Servidor: "
-#: diskdrake/dav.pm:110 diskdrake/interactive.pm:523
-#: diskdrake/interactive.pm:1218 diskdrake/interactive.pm:1296
+#: diskdrake/dav.pm:110 diskdrake/interactive.pm:520
+#: diskdrake/interactive.pm:1230 diskdrake/interactive.pm:1308
#, c-format
msgid "Mount point: "
msgstr "Punt de muntatge: "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1303
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1315
#, c-format
msgid "Options: %s"
msgstr "Opcions: %s"
-#
-#: diskdrake/hd_gtk.pm:52 diskdrake/interactive.pm:293
-#: diskdrake/smbnfs_gtk.pm:21 install_interactive.pm:63
-#: install_interactive.pm:217 install_interactive.pm:223
-#: install_interactive.pm:276 install_interactive.pm:281
-#: install_steps_interactive.pm:253 install_steps_interactive.pm:317
-#: steps.pm:21
+#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:286
+#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
+#: fs/partitioning_wizard.pm:47 fs/partitioning_wizard.pm:201
+#: fs/partitioning_wizard.pm:207 fs/partitioning_wizard.pm:247
+#: fs/partitioning_wizard.pm:266 fs/partitioning_wizard.pm:271
#, c-format
msgid "Partitioning"
msgstr "Particionament"
-#: diskdrake/hd_gtk.pm:92
+#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1067
+#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1130
+#, c-format
+msgid "Read carefully!"
+msgstr "Llegiu-ho atentament!"
+
+#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr "Si us plau, feu primer una còpia de seguretat de les vostres dades"
-#: diskdrake/hd_gtk.pm:95
+#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:222
+#, c-format
+msgid "Exit"
+msgstr "Surt"
+
+#: diskdrake/hd_gtk.pm:94
+#, c-format
+msgid "Continue"
+msgstr "Continua"
+
+#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
@@ -2182,17 +1241,18 @@ msgstr ""
"Si penseu utilitzar aboot, assegureu-vos de deixar espai lliure (amb 2048\n"
"sectors n'hi ha prou) al començament del disc"
-#: diskdrake/hd_gtk.pm:152 help.pm:531
+#: diskdrake/hd_gtk.pm:162 interactive.pm:640 interactive/gtk.pm:719
+#: interactive/gtk.pm:740 interactive/gtk.pm:760 ugtk2.pm:923 ugtk2.pm:924
#, c-format
-msgid "Wizard"
-msgstr "Auxiliar"
+msgid "Help"
+msgstr "Ajuda"
-#: diskdrake/hd_gtk.pm:185
+#: diskdrake/hd_gtk.pm:197
#, c-format
msgid "Choose action"
msgstr "Trieu una acció"
-#: diskdrake/hd_gtk.pm:189
+#: diskdrake/hd_gtk.pm:201
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -2203,156 +1263,165 @@ msgstr ""
"Suggereixo que primer en canvieu la mida\n"
"(feu-hi clic i després feu clic a \"Canvia la mida\")"
-#: diskdrake/hd_gtk.pm:191
+#: diskdrake/hd_gtk.pm:203
#, c-format
msgid "Please click on a partition"
msgstr "Si us plau, feu clic a una partició "
-#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:457
-#: standalone/drakbackup:3088 standalone/drakbackup:3148
+#: diskdrake/hd_gtk.pm:217 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Detalls"
-#
-#: diskdrake/hd_gtk.pm:251
+#: diskdrake/hd_gtk.pm:265
#, c-format
msgid "No hard drives found"
msgstr "No s'ha trobat cap disc dur!"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:292
+#, c-format
+msgid "Unknown"
+msgstr "Desconegut"
+
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Ext2"
msgstr "Ext2"
-#
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Journalised FS"
msgstr "Journalised FS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Swap"
msgstr "Intercanvi"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "SunOS"
msgstr "SunOS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "HFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1233
+#: diskdrake/hd_gtk.pm:352 services.pm:149
+#, c-format
+msgid "Other"
+msgstr "Altres"
+
+#: diskdrake/hd_gtk.pm:352 diskdrake/interactive.pm:1244
#, c-format
msgid "Empty"
msgstr "Buit"
-#: diskdrake/hd_gtk.pm:340
+#: diskdrake/hd_gtk.pm:356
#, c-format
msgid "Filesystem types:"
msgstr "Tipus de sistema de fitxers:"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:359 diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:291
+#: diskdrake/interactive.pm:392 diskdrake/interactive.pm:428
+#: diskdrake/interactive.pm:577 diskdrake/interactive.pm:751
+#: diskdrake/interactive.pm:809 diskdrake/interactive.pm:902
+#: diskdrake/interactive.pm:944 diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:1173 diskdrake/interactive.pm:1211
+#: diskdrake/interactive.pm:1347 do_pkgs.pm:16 do_pkgs.pm:35 do_pkgs.pm:53
+#: harddrake/sound.pm:279
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Utilitzeu \"%s\" al seu lloc"
+msgid "Warning"
+msgstr "Advertència"
-#: diskdrake/hd_gtk.pm:357 diskdrake/interactive.pm:472
-#, c-format
-msgid "Create"
-msgstr "Crea"
+#: diskdrake/hd_gtk.pm:380
+#, fuzzy, c-format
+msgid "This partition is already empty"
+msgstr "No es pot canviar la mida d'aquesta partició"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:365
-#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:625
-#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
-#: standalone/harddrake2:108 standalone/harddrake2:117
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Type"
-msgstr "Tipus"
+msgid "Use ``Unmount'' first"
+msgstr "Utilitzeu primer \"Unmount\""
-#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: diskdrake/hd_gtk.pm:359 diskdrake/interactive.pm:457
-#: standalone/drakperm:123 standalone/printerdrake:248
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Delete"
-msgstr "Suprimeix"
+msgid "Use ``%s'' instead"
+msgstr "Utilitzeu \"%s\" al seu lloc"
-#: diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:389 diskdrake/interactive.pm:441
+#: diskdrake/interactive.pm:611 diskdrake/interactive.pm:1083
+#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Utilitzeu primer \"Unmount\""
+msgid "Type"
+msgstr "Tipus"
-#
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose another partition"
msgstr "Trieu una altra partició"
-#
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose a partition"
msgstr "Trieu una partició"
-#
-#: diskdrake/interactive.pm:224
-#, c-format
-msgid "Exit"
-msgstr "Surt"
-
-#: diskdrake/interactive.pm:257 help.pm:531
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Undo"
msgstr "Desfés"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to normal mode"
msgstr "Canvia al mode normal"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to expert mode"
msgstr "Canvia al mode expert"
-#: diskdrake/interactive.pm:276
+#
+#: diskdrake/interactive.pm:269 diskdrake/interactive.pm:279
+#: diskdrake/interactive.pm:1158
+#, fuzzy, c-format
+msgid "Confirmation"
+msgstr "Configuració"
+
+#: diskdrake/interactive.pm:269
#, c-format
msgid "Continue anyway?"
msgstr "Voleu continuar igualment?"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without saving"
msgstr "Surt sense desar"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Voleu sortir sense escriure la taula de particions?"
-#
-#: diskdrake/interactive.pm:286
+#: diskdrake/interactive.pm:279
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Voleu desar les modificacions a /etc/fstab"
-#: diskdrake/interactive.pm:293 install_steps_interactive.pm:317
+#: diskdrake/interactive.pm:286 fs/partitioning_wizard.pm:247
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Us caldrà tornar a arrencar per tal que les modificacions de la taula de "
"particions tinguin efecte"
-#: diskdrake/interactive.pm:298
+#: diskdrake/interactive.pm:291
#, c-format
msgid ""
"You should format partition %s.\n"
@@ -2360,39 +1429,38 @@ msgid ""
"Quit anyway?"
msgstr ""
-#: diskdrake/interactive.pm:311 help.pm:531
+#: diskdrake/interactive.pm:304
#, c-format
msgid "Clear all"
msgstr "Buida-ho tot"
-#: diskdrake/interactive.pm:312 help.pm:531
+#: diskdrake/interactive.pm:305
#, c-format
msgid "Auto allocate"
msgstr "Assigna automàticament"
-#: diskdrake/interactive.pm:313 help.pm:531 help.pm:567 help.pm:607
-#: help.pm:856 install_steps_interactive.pm:98
+#: diskdrake/interactive.pm:306 diskdrake/interactive.pm:360
+#: interactive/curses.pm:457
#, c-format
msgid "More"
msgstr "Més"
-#
-#: diskdrake/interactive.pm:318
+#: diskdrake/interactive.pm:311
#, c-format
msgid "Hard drive information"
msgstr "Informació del disc dur"
-#: diskdrake/interactive.pm:350
+#: diskdrake/interactive.pm:343
#, c-format
msgid "All primary partitions are used"
msgstr "S'utilitzen totes les particions primàries"
-#: diskdrake/interactive.pm:351
+#: diskdrake/interactive.pm:344
#, c-format
msgid "I can not add any more partitions"
msgstr "No es pot afegir cap més partició"
-#: diskdrake/interactive.pm:352
+#: diskdrake/interactive.pm:345
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
@@ -2401,56 +1469,52 @@ msgstr ""
"Si voleu tenir més particions, suprimiu-ne una per poder crear una partició "
"ampliada"
-#: diskdrake/interactive.pm:361
+#: diskdrake/interactive.pm:354
#, c-format
msgid "No supermount"
msgstr "Sense supermount"
-#: diskdrake/interactive.pm:362
+#: diskdrake/interactive.pm:355
#, c-format
msgid "Supermount"
msgstr "Supermount"
-#: diskdrake/interactive.pm:363
+#: diskdrake/interactive.pm:356
#, c-format
msgid "Supermount except for CDROM drives"
msgstr "Supermount excepte pels CDROM"
-#
-#: diskdrake/interactive.pm:369 help.pm:531
+#: diskdrake/interactive.pm:362
#, c-format
msgid "Save partition table"
msgstr "Escriu la taula de particions"
-#
-#: diskdrake/interactive.pm:370 help.pm:531
+#: diskdrake/interactive.pm:363
#, c-format
msgid "Restore partition table"
msgstr "Restaura la taula de particions"
-#: diskdrake/interactive.pm:371 help.pm:531
+#: diskdrake/interactive.pm:364
#, c-format
msgid "Rescue partition table"
msgstr "Recupera la taula de particions"
-#
-#: diskdrake/interactive.pm:373 help.pm:531
+#: diskdrake/interactive.pm:366
#, c-format
msgid "Reload partition table"
msgstr "Torna a carregar la taula de particions"
-#
-#: diskdrake/interactive.pm:375
+#: diskdrake/interactive.pm:368
#, c-format
msgid "Removable media automounting"
msgstr "Muntatge automàtic dels dispositius extraïbles"
-#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:414
+#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:407
#, c-format
msgid "Select file"
msgstr "Seleccioneu el fitxer"
-#: diskdrake/interactive.pm:400
+#: diskdrake/interactive.pm:393
#, c-format
msgid ""
"The backup partition table has not the same size\n"
@@ -2459,89 +1523,97 @@ msgstr ""
"La còpia de seguretat de la taula de particions no té la mateixa mida\n"
"Voleu continuar igualment?"
-#: diskdrake/interactive.pm:429
+#: diskdrake/interactive.pm:422
#, c-format
msgid "Trying to rescue partition table"
msgstr "S'està intentant recuperar la taula de particions"
-#
-#: diskdrake/interactive.pm:435
+#: diskdrake/interactive.pm:428
#, c-format
msgid "Detailed information"
msgstr "Informació detallada"
-#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:444 diskdrake/interactive.pm:764
#, c-format
msgid "Resize"
msgstr "Canvia la mida"
-#: diskdrake/interactive.pm:452
+#: diskdrake/interactive.pm:445
#, c-format
msgid "Format"
msgstr "Formata"
-#: diskdrake/interactive.pm:454
+#: diskdrake/interactive.pm:447 diskdrake/interactive.pm:850
#, c-format
msgid "Add to RAID"
msgstr "Afegeix al RAID"
-#: diskdrake/interactive.pm:455
+#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:867
#, c-format
msgid "Add to LVM"
msgstr "Afegeix a l'LVM"
-#: diskdrake/interactive.pm:458
+#: diskdrake/interactive.pm:450
+#, c-format
+msgid "Delete"
+msgstr "Suprimeix"
+
+#: diskdrake/interactive.pm:451
#, c-format
msgid "Remove from RAID"
msgstr "Elimina del RAID"
-#: diskdrake/interactive.pm:459
+#: diskdrake/interactive.pm:452
#, c-format
msgid "Remove from LVM"
msgstr "Elimina de l'LVM"
-#: diskdrake/interactive.pm:460
+#: diskdrake/interactive.pm:453
#, c-format
msgid "Modify RAID"
msgstr "Modifica el RAID"
-#: diskdrake/interactive.pm:461
+#: diskdrake/interactive.pm:454
#, c-format
msgid "Use for loopback"
msgstr "Utilitza per a loopback"
-#: diskdrake/interactive.pm:516
+#: diskdrake/interactive.pm:465
+#, c-format
+msgid "Create"
+msgstr "Crea"
+
+#: diskdrake/interactive.pm:509 diskdrake/interactive.pm:511
#, c-format
msgid "Create a new partition"
msgstr "Crea una nova partició"
-#: diskdrake/interactive.pm:519
+#: diskdrake/interactive.pm:513
#, c-format
msgid "Start sector: "
msgstr "Sector d'inici: "
-#: diskdrake/interactive.pm:521 diskdrake/interactive.pm:938
+#: diskdrake/interactive.pm:516 diskdrake/interactive.pm:937
#, c-format
msgid "Size in MB: "
msgstr "Mida en MB: "
-#: diskdrake/interactive.pm:522 diskdrake/interactive.pm:939
+#: diskdrake/interactive.pm:518 diskdrake/interactive.pm:938
#, c-format
msgid "Filesystem type: "
msgstr "Tipus de sistema de fitxers: "
-#: diskdrake/interactive.pm:527
+#: diskdrake/interactive.pm:524
#, c-format
msgid "Preference: "
msgstr "Preferència: "
-#
-#: diskdrake/interactive.pm:530
+#: diskdrake/interactive.pm:527
#, c-format
msgid "Logical volume name "
msgstr "Nom del volum lògic"
-#: diskdrake/interactive.pm:560
+#: diskdrake/interactive.pm:547
#, c-format
msgid ""
"You can not create a new partition\n"
@@ -2552,50 +1624,54 @@ msgstr ""
"(perquè heu arribat al màxim nombre de particions primàries).\n"
"Esborreu primer una partició primària i creeu una partició ampliada."
-#
-#: diskdrake/interactive.pm:590
+#: diskdrake/interactive.pm:577
#, c-format
msgid "Remove the loopback file?"
msgstr "Voleu suprimir el fitxer de loopback?"
-#: diskdrake/interactive.pm:609
+#: diskdrake/interactive.pm:596
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Després de canviar el tipus de la partició %s, se'n perdran totes les dades"
-#: diskdrake/interactive.pm:621
+#: diskdrake/interactive.pm:608
#, c-format
msgid "Change partition type"
msgstr "Canvia el tipus de partició"
-#: diskdrake/interactive.pm:622 diskdrake/removable.pm:47
+#: diskdrake/interactive.pm:610 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Quin sistema de fitxers voleu?"
-#: diskdrake/interactive.pm:630
+#: diskdrake/interactive.pm:617
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "S'està canviant de ext2 a ext3"
-#: diskdrake/interactive.pm:650
+#: diskdrake/interactive.pm:637 diskdrake/interactive.pm:640
#, c-format
msgid "Which volume label?"
msgstr ""
-#: diskdrake/interactive.pm:666
+#: diskdrake/interactive.pm:641
+#, fuzzy, c-format
+msgid "Label:"
+msgstr "Etiqueta"
+
+#: diskdrake/interactive.pm:655
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "On voleu muntar el fitxer de loopback %s?"
-#: diskdrake/interactive.pm:667
+#: diskdrake/interactive.pm:656
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "On voleu muntar el dispositiu %s?"
-#: diskdrake/interactive.pm:672
+#: diskdrake/interactive.pm:661
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
@@ -2604,50 +1680,59 @@ msgstr ""
"No es pot anul·lar el punt de muntatge, perquè aquesta partició\n"
"s'utilitza per al loopback. Elimineu primer el loopback"
-#: diskdrake/interactive.pm:697
+#: diskdrake/interactive.pm:691
#, c-format
msgid "Where do you want to mount %s?"
msgstr "On voleu muntar %s?"
-#: diskdrake/interactive.pm:721 diskdrake/interactive.pm:800
-#: install_interactive.pm:157 install_interactive.pm:189
+#: diskdrake/interactive.pm:715 diskdrake/interactive.pm:798
+#: fs/partitioning_wizard.pm:141 fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing"
msgstr "S'està canviant la mida"
-#: diskdrake/interactive.pm:721
+#: diskdrake/interactive.pm:715
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "S'estan calculant els límits del sistema de fitxers de la FAT"
-#: diskdrake/interactive.pm:757
+#: diskdrake/interactive.pm:751
#, c-format
msgid "This partition is not resizeable"
msgstr "No es pot canviar la mida d'aquesta partició"
-#: diskdrake/interactive.pm:762
+#: diskdrake/interactive.pm:756
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Cal fer una còpia de seguretat de totes les dades d'aquesta partició"
-#: diskdrake/interactive.pm:764
+#: diskdrake/interactive.pm:758
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Després de canviar la mida de la partició %s, se'n perdran totes les dades"
-#: diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:765
#, c-format
msgid "Choose the new size"
msgstr "Escolliu la nova mida"
-#
-#: diskdrake/interactive.pm:770
+#: diskdrake/interactive.pm:766
#, c-format
msgid "New size in MB: "
msgstr "Nova mida en MB: "
-#: diskdrake/interactive.pm:811 install_interactive.pm:197
+#: diskdrake/interactive.pm:767
+#, c-format
+msgid "Minimum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:768
+#, c-format
+msgid "Maximum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:809 fs/partitioning_wizard.pm:181
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
@@ -2658,246 +1743,242 @@ msgstr ""
"les comprovacions del sistema de fitxers es realitzaran el proper cop que "
"arrenqueu en Windows(TM)"
-#: diskdrake/interactive.pm:852
+#: diskdrake/interactive.pm:850
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Escolliu un RAID existent al qual afegir-ho"
-#: diskdrake/interactive.pm:854 diskdrake/interactive.pm:871
+#: diskdrake/interactive.pm:852 diskdrake/interactive.pm:869
#, c-format
msgid "new"
msgstr "nou"
-#: diskdrake/interactive.pm:869
+#: diskdrake/interactive.pm:867
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Escolliu un LVM existent al qual afegir-ho"
-#: diskdrake/interactive.pm:875
+#: diskdrake/interactive.pm:874
#, c-format
msgid "LVM name?"
msgstr "Nom LVM?"
-#: diskdrake/interactive.pm:903
+#: diskdrake/interactive.pm:902
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
"Do you want to move used physical extents on this volume to other volumes?"
msgstr ""
-#: diskdrake/interactive.pm:905
+#: diskdrake/interactive.pm:904
#, c-format
msgid "Moving physical extents"
msgstr ""
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:922
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Aquesta partició no es pot utilitzar per al loopback"
-#: diskdrake/interactive.pm:936
+#: diskdrake/interactive.pm:935
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: diskdrake/interactive.pm:937
+#: diskdrake/interactive.pm:936
#, c-format
msgid "Loopback file name: "
msgstr "Nom del fitxer de loopback: "
-#
-#: diskdrake/interactive.pm:942
+#: diskdrake/interactive.pm:941
#, c-format
msgid "Give a file name"
msgstr "Proporcioneu un nom de fitxer"
-#: diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:944
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Un altre loopback ja està utilitzant el fitxer, escolliu-ne un altre"
-#: diskdrake/interactive.pm:946
+#: diskdrake/interactive.pm:945
#, c-format
msgid "File already exists. Use it?"
msgstr "El fitxer ja existeix. El voleu utilitzar?"
-#
-#: diskdrake/interactive.pm:969
+#: diskdrake/interactive.pm:974 diskdrake/interactive.pm:977
#, c-format
msgid "Mount options"
msgstr "Opcions de muntatge"
-#: diskdrake/interactive.pm:976
+#: diskdrake/interactive.pm:984
#, c-format
msgid "Various"
msgstr "Diversos"
-#: diskdrake/interactive.pm:1044
+#: diskdrake/interactive.pm:1049
#, c-format
msgid "device"
msgstr "dispositiu"
-#: diskdrake/interactive.pm:1045
+#: diskdrake/interactive.pm:1050
#, c-format
msgid "level"
msgstr "nivell"
-#: diskdrake/interactive.pm:1046
+#: diskdrake/interactive.pm:1051
#, c-format
msgid "chunk size in KiB"
msgstr "mida del fragment en KB"
-#: diskdrake/interactive.pm:1063
+#: diskdrake/interactive.pm:1068
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Aneu amb compte: aquesta operació és perillosa."
-#: diskdrake/interactive.pm:1078
+#: diskdrake/interactive.pm:1083
#, c-format
msgid "What type of partitioning?"
msgstr "Quin tipus de particionament voleu?"
-#: diskdrake/interactive.pm:1116
+#: diskdrake/interactive.pm:1121
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Us caldrà tornar a arrencar per tal que les modificacions tinguin efecte"
-#: diskdrake/interactive.pm:1125
+#: diskdrake/interactive.pm:1130
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "La taula de particions de la unitat %s s'escriurà al disc!"
-#: diskdrake/interactive.pm:1148
+#: diskdrake/interactive.pm:1153
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Després de formatar la partició %s, se'n perdran totes les dades"
-#
-#: diskdrake/interactive.pm:1164
+#: diskdrake/interactive.pm:1158 fs/partitioning.pm:49
+#, c-format
+msgid "Check bad blocks?"
+msgstr "Voleu comprovar els blocs incorrectes?"
+
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Move files to the new partition"
msgstr "Mou els fitxers a la nova partició"
-#
-#: diskdrake/interactive.pm:1164 standalone/draksambashare:81
-#: standalone/draksambashare:144
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Hide files"
msgstr "Fitxers ocults"
-#: diskdrake/interactive.pm:1165
+#: diskdrake/interactive.pm:1173
#, c-format
msgid ""
"Directory %s already contains data\n"
-"(%s)"
+"(%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 ""
-"El directori %s encara conté dades\n"
-"(%s)"
-#
-#: diskdrake/interactive.pm:1176
+#: diskdrake/interactive.pm:1188
#, c-format
msgid "Moving files to the new partition"
msgstr "S'estan movent els fitxers a la nova partició"
-#: diskdrake/interactive.pm:1180
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "Copying %s"
msgstr "S'està copiant %s"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1196
#, c-format
msgid "Removing %s"
msgstr "S'està esborrant %s"
-#: diskdrake/interactive.pm:1198
+#: diskdrake/interactive.pm:1210
#, c-format
msgid "partition %s is now known as %s"
msgstr "la partició %s ara és %s"
-#: diskdrake/interactive.pm:1199
+#: diskdrake/interactive.pm:1211
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""
-#: diskdrake/interactive.pm:1219 diskdrake/interactive.pm:1281
+#: diskdrake/interactive.pm:1231 diskdrake/interactive.pm:1293
#, c-format
msgid "Device: "
msgstr "Dispositiu: "
-#: diskdrake/interactive.pm:1220
-#, c-format
-msgid "Devfs name: "
-msgstr "Nom devfs: "
-
-#: diskdrake/interactive.pm:1221
+#: diskdrake/interactive.pm:1232
#, c-format
msgid "Volume label: "
msgstr "Etiqueta del volum: "
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1233
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lletra d'unitat de DOS: %s (només és una suposició)\n"
-#: diskdrake/interactive.pm:1226 diskdrake/interactive.pm:1235
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1237 diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1311
#, c-format
msgid "Type: "
msgstr "Tipus: "
-#: diskdrake/interactive.pm:1230 install_steps_gtk.pm:300
+#: diskdrake/interactive.pm:1241
#, c-format
msgid "Name: "
msgstr "Nom: "
-#: diskdrake/interactive.pm:1237
+#: diskdrake/interactive.pm:1248
#, c-format
msgid "Start: sector %s\n"
msgstr "Inici: sector %s\n"
-#: diskdrake/interactive.pm:1238
+#: diskdrake/interactive.pm:1249
#, c-format
msgid "Size: %s"
msgstr "Mida: %s"
-#: diskdrake/interactive.pm:1240
+#: diskdrake/interactive.pm:1251
#, c-format
msgid ", %s sectors"
msgstr ", %s sectors"
-#: diskdrake/interactive.pm:1242
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindre %d a %d\n"
-#: diskdrake/interactive.pm:1243
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Formatted\n"
msgstr "Formatat\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "Not formatted\n"
msgstr "Sense formatar\n"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Mounted\n"
msgstr "Muntat\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1252
+#: diskdrake/interactive.pm:1263
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2906,7 +1987,7 @@ msgstr ""
"Fitxer(s) de loopback:\n"
" %s\n"
-#: diskdrake/interactive.pm:1253
+#: diskdrake/interactive.pm:1264
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2915,27 +1996,27 @@ msgstr ""
"Partició arrencada per defecte\n"
" (per a l'arrencada de l'MS-DOS, no per a LILO)\n"
-#: diskdrake/interactive.pm:1255
+#: diskdrake/interactive.pm:1266
#, c-format
msgid "Level %s\n"
msgstr "Nivell %s\n"
-#: diskdrake/interactive.pm:1256
+#: diskdrake/interactive.pm:1267
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Mida del fragment %d KB\n"
-#: diskdrake/interactive.pm:1257
+#: diskdrake/interactive.pm:1268
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discs RAID %s\n"
-#: diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1270
#, c-format
msgid "Loopback file name: %s"
msgstr "Nom del fitxer de loopback: %s"
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1273
#, c-format
msgid ""
"\n"
@@ -2948,7 +2029,7 @@ msgstr ""
"una partició de programes de control. Potser\n"
"és millor que no la toqueu.\n"
-#: diskdrake/interactive.pm:1265
+#: diskdrake/interactive.pm:1276
#, c-format
msgid ""
"\n"
@@ -2961,111 +2042,119 @@ msgstr ""
"Bootstrap és per arrencar\n"
"el vostre sistema en dual.\n"
-#: diskdrake/interactive.pm:1282
+#: diskdrake/interactive.pm:1285
+#, c-format
+msgid "Empty space on %s (%s)"
+msgstr ""
+
+#: diskdrake/interactive.pm:1294
#, c-format
msgid "Read-only"
msgstr "Només lectura"
-#: diskdrake/interactive.pm:1283
+#: diskdrake/interactive.pm:1295
#, c-format
msgid "Size: %s\n"
msgstr "Mida: %s\n"
-#: diskdrake/interactive.pm:1284
+#: diskdrake/interactive.pm:1296
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindres, %s capçals, %s sectors\n"
-#: diskdrake/interactive.pm:1285 network/thirdparty.pm:331
+#: diskdrake/interactive.pm:1297
#, c-format
msgid "Info: "
msgstr "Informació: "
-#: diskdrake/interactive.pm:1286
+#: diskdrake/interactive.pm:1298
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discs LVM %s\n"
-#: diskdrake/interactive.pm:1287
+#: diskdrake/interactive.pm:1299
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipus de taula de particions: %s\n"
-#: diskdrake/interactive.pm:1288
+#: diskdrake/interactive.pm:1300
#, c-format
msgid "on channel %d id %d\n"
msgstr "al canal %d amb id %d\n"
-#
-#: diskdrake/interactive.pm:1331
+#: diskdrake/interactive.pm:1343
#, c-format
msgid "Filesystem encryption key"
msgstr "Clau de xifratge del sistema de fitxers: "
-#: diskdrake/interactive.pm:1332
+#: diskdrake/interactive.pm:1344
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Escolliu la clau de xifratge del sistema de fitxers"
-#: diskdrake/interactive.pm:1335
+#: diskdrake/interactive.pm:1347
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Aquesta clau de xifratge és massa senzilla (ha de tenir com a mínim %d "
"caràcters)"
-#
-#: diskdrake/interactive.pm:1336
+#: diskdrake/interactive.pm:1348
#, c-format
msgid "The encryption keys do not match"
msgstr "Les claus de xifratge no coincideixen"
-#: diskdrake/interactive.pm:1339 network/netconnect.pm:1073
-#: standalone/drakconnect:419 standalone/drakroam:120
+#: diskdrake/interactive.pm:1351
#, c-format
msgid "Encryption key"
msgstr "Clau de xifratge"
-#: diskdrake/interactive.pm:1340
+#: diskdrake/interactive.pm:1352
#, c-format
msgid "Encryption key (again)"
msgstr "Clau de xifratge (un altre cop)"
-#: diskdrake/interactive.pm:1342 standalone/drakvpn:1017
-#: standalone/drakvpn:1102
+#: diskdrake/interactive.pm:1354
#, c-format
msgid "Encryption algorithm"
msgstr "Algoritme de xifrat"
-#
#: diskdrake/removable.pm:46
#, c-format
msgid "Change type"
msgstr "Canvia el tipus"
-#: diskdrake/smbnfs_gtk.pm:163
+#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:539
+#: interactive/curses.pm:214 interactive/http.pm:104 interactive/http.pm:160
+#: interactive/stdio.pm:39 interactive/stdio.pm:142 ugtk2.pm:404 ugtk2.pm:506
+#: ugtk2.pm:515 ugtk2.pm:788
+#, c-format
+msgid "Cancel"
+msgstr "Cancel·la"
+
+#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr ""
"No es pot entrar amb el nom d'usuari %s (potser la contrasenya és "
"incorrecta?)"
-#: diskdrake/smbnfs_gtk.pm:167 diskdrake/smbnfs_gtk.pm:176
+#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Cal l'autenticació de domini"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Quin nom d'usuari?"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Un altre"
-#: diskdrake/smbnfs_gtk.pm:177
+#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
@@ -3073,88 +2162,82 @@ msgstr ""
"Introduïu el vostre nom d'usuari, la contrasenya i el nom de domini per "
"accedir a aquesta màquina."
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3640
+#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Nom d'usuari"
-#
-#: diskdrake/smbnfs_gtk.pm:205
+#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Cerca servidors"
-#
-#: diskdrake/smbnfs_gtk.pm:210
+#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr "Cerca nous servidors"
-#: do_pkgs.pm:16 do_pkgs.pm:49
+#: do_pkgs.pm:16 do_pkgs.pm:53
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Cal instal·lar el paquet %s. Voleu instal·lar-lo?"
-#: do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:52 printer/printerdrake.pm:3948
+#: do_pkgs.pm:19 do_pkgs.pm:40 do_pkgs.pm:56
#, c-format
msgid "Could not install the %s package!"
msgstr "No es pot instal·lar el paquet %s!"
-#: do_pkgs.pm:24 do_pkgs.pm:57
+#: do_pkgs.pm:24 do_pkgs.pm:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "El paquet %s necessari falta"
-#: do_pkgs.pm:35 harddrake/sound.pm:278 install_steps_interactive.pm:1288
-#: keyboard.pm:381 network/ndiswrapper.pm:95 network/netconnect.pm:471
-#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2495
-#: printer/printerdrake.pm:2632 printer/printerdrake.pm:2953
-#: printer/printerdrake.pm:2960 printer/printerdrake.pm:3947
-#: printer/printerdrake.pm:4211 printer/printerdrake.pm:4330
-#: printer/printerdrake.pm:5487 standalone/drakTermServ:354
-#: standalone/drakTermServ:1267 standalone/drakTermServ:1328
-#: standalone/drakTermServ:2006 standalone/drakbackup:510
-#: standalone/drakbackup:609 standalone/drakboot:133 standalone/drakclock:224
-#: standalone/drakconnect:973 standalone/drakfont:679 standalone/drakperm:380
-#: standalone/drakperm:390 standalone/drakups:27 standalone/harddrake2:510
-#: standalone/harddrake2:526 standalone/localedrake:43
-#: standalone/scannerdrake:51 standalone/scannerdrake:957
-#, c-format
-msgid "Warning"
-msgstr "Advertència"
-
-#: do_pkgs.pm:35 standalone/harddrake2:526
+#: do_pkgs.pm:35
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Cal instal·lar els paquets següents:\n"
-#
-#: do_pkgs.pm:205
+#: do_pkgs.pm:209
#, c-format
msgid "Installing packages..."
msgstr "S'estan instal·lant els paquets..."
-#: do_pkgs.pm:252
+#: do_pkgs.pm:255
#, c-format
msgid "Removing packages..."
msgstr "S'estan eliminant els paquets..."
-#: fs/format.pm:58 fs/format.pm:65
+#: fs/any.pm:17
+#, c-format
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"S'ha produït un error: no s'han trobat dispositius vàlids on crear nous "
+"sistemes de fitxers. Si us plau, comproveu el vostre maquinari per trobar el "
+"problema"
+
+#: fs/any.pm:62 fs/partitioning_wizard.pm:55
+#, c-format
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Heu de tenir una partició FAT muntada en /boot/efi"
+
+#: fs/format.pm:59 fs/format.pm:66
#, c-format
msgid "Formatting partition %s"
msgstr "S'està formatant la partició %s"
-#: fs/format.pm:62
+#: fs/format.pm:63
#, c-format
msgid "Creating and formatting file %s"
msgstr "S'està creant i formatant el fitxer %s"
-#: fs/format.pm:115
+#: fs/format.pm:116
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "No sé com formatar %s amb el tipus %s"
-#: fs/format.pm:120 fs/format.pm:122
+#: fs/format.pm:121 fs/format.pm:123
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatació de %s ha fallat"
@@ -3164,27 +2247,27 @@ msgstr "%s formatació de %s ha fallat"
msgid "Circular mounts %s\n"
msgstr "Muntatges circulars %s\n"
-#: fs/mount.pm:74
+#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "S'està muntant la partició %s"
-#: fs/mount.pm:75
+#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "El muntatge de la partició %s en el directori %s ha fallat"
-#: fs/mount.pm:80 fs/mount.pm:97
+#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "S'està comprovant %s"
-#: fs/mount.pm:113 partition_table.pm:385
+#: fs/mount.pm:118 partition_table.pm:384
#, c-format
msgid "error unmounting %s: %s"
msgstr "s'ha produït un error en desmuntar %s: %s"
-#: fs/mount.pm:142
+#: fs/mount.pm:133
#, c-format
msgid "Enabling swap partition %s"
msgstr "S'està habilitant la partició d'intercanvi %s"
@@ -3260,35 +2343,315 @@ msgstr "Totes les E/S del sistema de fitxers s'han de fer sincronitzadament."
#: fs/mount_options.pm:139
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow every user to mount and umount the file system."
msgstr ""
#: fs/mount_options.pm:141
#, c-format
-msgid "Enable user disk quota accounting, and optionally enforce limits"
+msgid "Allow an ordinary user to mount the file system."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Support user. extended attributes"
+msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""
#: fs/mount_options.pm:145
#, c-format
+msgid "Support \"user.\" extended attributes"
+msgstr ""
+
+#: fs/mount_options.pm:147
+#, c-format
msgid "Give write access to ordinary users"
msgstr "Dona accés d'escriptura a usuaris normal"
-#: fs/mount_options.pm:147
+#: fs/mount_options.pm:149
#, c-format
msgid "Give read-only access to ordinary users"
msgstr "Dona accés només d'escriptura als usuaris normal"
-#: fs/type.pm:363
+#: fs/mount_point.pm:80
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Duplica el punt de muntatge %s"
+
+#: fs/mount_point.pm:95
+#, c-format
+msgid "No partition available"
+msgstr "No hi ha particions disponibles"
+
+#: fs/mount_point.pm:98
+#, c-format
+msgid "Scanning partitions to find mount points"
+msgstr "S'estan explorant les particions per trobar els punts de muntatge"
+
+#: fs/mount_point.pm:105
+#, c-format
+msgid "Choose the mount points"
+msgstr "Escolliu els punts de muntatge"
+
+#: fs/partitioning.pm:46
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "Escolliu les particions que voleu formatar"
+
+#: fs/partitioning.pm:76
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+"És impossible de comprovar el sistema de fitxers %s. Voleu reparar els "
+"errors? (Vigileu, podríeu perdre dades.)"
+
+#: fs/partitioning.pm:79
+#, c-format
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+"No hi ha prou espai d'intercanvi per completar la instal·lació; si us plau, "
+"afegiu-ne"
+
+#: fs/partitioning_wizard.pm:47
+#, c-format
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"Heu de tenir una partició arrel.\n"
+"Per fer-ho, creeu una partició (o feu clic a una d'existent).\n"
+"Després, trieu l'acció \"Punt de muntatge\" i doneu-li el valor '/'"
+
+#: fs/partitioning_wizard.pm:52
+#, c-format
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+"No teniu cap partició d'intercanvi.\n"
+"\n"
+"Voleu continuar igualment?"
+
+#: fs/partitioning_wizard.pm:80
+#, c-format
+msgid "Use free space"
+msgstr "Utilitza l'espai lliure"
+
+#: fs/partitioning_wizard.pm:82
+#, c-format
+msgid "Not enough free space to allocate new partitions"
+msgstr "No hi ha prou espai lliure per assignar noves particions"
+
+#: fs/partitioning_wizard.pm:90
+#, c-format
+msgid "Use existing partitions"
+msgstr "Utilitza les particions existents"
+
+#: fs/partitioning_wizard.pm:92
+#, c-format
+msgid "There is no existing partition to use"
+msgstr "No hi ha cap partició que es pugui utilitzar"
+
+#: fs/partitioning_wizard.pm:99
+#, c-format
+msgid "Use the Microsoft Windows® partition for loopback"
+msgstr "Utilitza la partició Microsoft Windows® per al loopback"
+
+#: fs/partitioning_wizard.pm:102
+#, c-format
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Quina partició voleu utilitzar per al Linux4Win?"
+
+#: fs/partitioning_wizard.pm:104
+#, c-format
+msgid "Choose the sizes"
+msgstr "Escolliu les mides"
+
+#: fs/partitioning_wizard.pm:105
+#, c-format
+msgid "Root partition size in MB: "
+msgstr "Mida de la partició arrel en MB: "
+
+#: fs/partitioning_wizard.pm:106
+#, c-format
+msgid "Swap partition size in MB: "
+msgstr "Mida de la partició d'intercanvi en MB: "
+
+#: fs/partitioning_wizard.pm:115
+#, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+"No hi ha cap partició FAT per utilitzar com a loopback (o no queda prou "
+"espai)"
+
+#: fs/partitioning_wizard.pm:122
+#, c-format
+msgid "Use the free space on the Microsoft Windows® partition"
+msgstr "Utilitza l'espai lliure de la partició de Windows"
+
+#: fs/partitioning_wizard.pm:124
+#, c-format
+msgid "Which partition do you want to resize?"
+msgstr "A quina partició voleu canviar-li la mida?"
+
+#: fs/partitioning_wizard.pm:138
+#, c-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+"El redimensionador de la FAT no pot gestionar la vostra partició. \n"
+"S'ha produït l'error següent: %s"
+
+#: fs/partitioning_wizard.pm:141
+#, c-format
+msgid "Computing the size of the Microsoft Windows® partition"
+msgstr "S'està calculant la mida de la partició de Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:148
+#, c-format
+msgid ""
+"Your Microsoft Windows® partition is too fragmented. Please reboot your "
+"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
+"the Mandriva Linux installation."
+msgstr ""
+"La partició de Microsoft Windows® està massa fragmentada. Si us plau, "
+"reinicieu l'ordinador sota Microsoft Windows® i executeu l'eina \"defrag\". "
+"Llavors, torneu a començar la instal·lació del Mandriva Linux."
+
+#: fs/partitioning_wizard.pm:151
+#, 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 ""
+"ATENCIÓ!\n"
+"\n"
+"\n"
+"Tot seguit, DrakX canviarà la mida de la vostra partició de Windows.\n"
+"\n"
+"\n"
+"Aneu amb compte: aquesta operació és perillosa. Si encara no ho heu fet, "
+"sortiu de la instal·lació, executeu \"chkdsk c:\" a la línia de comandes "
+"sota Windows (atenció el programa gràfic \"scandisk\" no és suficient, "
+"assegura't d'usar \"chkdsk\" en una línia de comandes), opcionalment "
+"executeu defrag, despréstorneu a començar la instal·lació. També haurieu de "
+"fer una còpia de seguretat de les vostres dades.\n"
+"\n"
+"\n"
+"Quan estigueu segur, premeu %s."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: fs/partitioning_wizard.pm:160 interactive.pm:538 interactive/curses.pm:217
+#: ugtk2.pm:508
+#, c-format
+msgid "Next"
+msgstr "Següent"
+
+#: fs/partitioning_wizard.pm:163
+#, c-format
+msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
+msgstr ""
+"Quina mida voleu deixar per a la partició de Microsoft Windows® partició %s?"
+
+#: fs/partitioning_wizard.pm:164
+#, c-format
+msgid "Size"
+msgstr "Mida"
+
+#: fs/partitioning_wizard.pm:173
+#, c-format
+msgid "Resizing Microsoft Windows® partition"
+msgstr "S'està redimensionant la partició de Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:178
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "Ha fallat el redimensionament de la FAT: %s"
+
+#: fs/partitioning_wizard.pm:193
+#, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+"No hi ha cap partició FAT a la qual canviar la mida (o no queda prou espai)"
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Remove Microsoft Windows®"
+msgstr "Elimina el Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:198
+#, fuzzy, c-format
+msgid "Erase and use entire disk"
+msgstr "Esborra tot el disc"
+
+#: fs/partitioning_wizard.pm:200
+#, c-format
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Teniu més d'un disc dur; en quin voleu instal·lar el Linux?"
+
+#: fs/partitioning_wizard.pm:206
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+"Es perdran TOTES les particions, i les dades que contenen, de la unitat %s"
+
+#: fs/partitioning_wizard.pm:217
+#, c-format
+msgid "Custom disk partitioning"
+msgstr "Particionament personalitzat de disc"
+
+#: fs/partitioning_wizard.pm:223
+#, c-format
+msgid "Use fdisk"
+msgstr "Utilitza l'fdisk"
+
+#: fs/partitioning_wizard.pm:226
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+"Ara podeu fer les particions a %s.\n"
+"Quan acabeu, no oblideu desar-les utilitzant 'w'"
+
+#: fs/partitioning_wizard.pm:266
+#, c-format
+msgid "I can not find any room for installing"
+msgstr "No es pot trobar espai per a la instal·lació"
+
+#: fs/partitioning_wizard.pm:270
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+"L'auxiliar de particionament del DrakX ha trobat les solucions següents:"
+
+#: fs/partitioning_wizard.pm:278
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Ha fallat el particionament: %s"
+
+#: fs/type.pm:366
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "No podeu utilitzar el JFS per a particions inferiors a 16 MB"
-#: fs/type.pm:364
+#: fs/type.pm:367
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "No podeu utilitzar el ReiserFS per a particions inferiors a 32 MB"
@@ -3303,7 +2666,12 @@ msgstr "amb /usr"
msgid "server"
msgstr "servidor"
-#: fsedit.pm:219
+#: fsedit.pm:116
+#, c-format
+msgid "BIOS software RAID detected on disks %s. Activate it?"
+msgstr ""
+
+#: fsedit.pm:230
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
@@ -3323,22 +2691,22 @@ msgstr ""
"\n"
"Esteu d'acord en perdre totes les particions?\n"
-#: fsedit.pm:392
+#: fsedit.pm:403
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Els punts de muntatge han de començar amb una /"
-#: fsedit.pm:393
+#: fsedit.pm:404
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Els punts de muntatge només poden contenir caràcters alfanumèrics"
-#: fsedit.pm:394
+#: fsedit.pm:405
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ja hi ha una partició amb el punt de muntatge %s\n"
-#: fsedit.pm:398
+#: fsedit.pm:409
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -3350,14 +2718,14 @@ msgstr ""
"boot.\n"
"Si us plau, assegureu-vos d'afegir una partició /boot"
-#: fsedit.pm:404
+#: fsedit.pm:415
#, fuzzy, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr "No podeu utilitzar un volum lògic LVM per al punt de muntatge %s"
-#: fsedit.pm:406
+#: fsedit.pm:417
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -3369,13 +2737,12 @@ msgstr ""
"El carregador d'arrencada no ho pot gestionar sense una partició /boot.\n"
"Si us plau, assegureu-vos d'afegir una partició /boot"
-#: fsedit.pm:410 fsedit.pm:412
+#: fsedit.pm:421 fsedit.pm:423
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Aquest directori s'ha de mantenir dins del sistema de fitxers arrel"
-#
-#: fsedit.pm:414 fsedit.pm:416
+#: fsedit.pm:425 fsedit.pm:427
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -3384,24 +2751,23 @@ msgstr ""
"Necessiteu un sistema de fitxers real (ext2/ext3, reiserfs, xfs o jfs) per a "
"aquest punt de muntatge\n"
-#: fsedit.pm:418
+#: fsedit.pm:429
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr ""
"No podeu utilitzar un sistema d'arxius xifrat per al punt de muntatge %s"
-#
-#: fsedit.pm:482
+#: fsedit.pm:493
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "No hi ha prou espai per a l'assignació automàtica"
-#: fsedit.pm:484
+#: fsedit.pm:495
#, c-format
msgid "Nothing to do"
msgstr "Res a fer"
-#: harddrake/data.pm:62 install_any.pm:1710
+#: harddrake/data.pm:62
#, c-format
msgid "Floppy"
msgstr "Disquet"
@@ -3411,12 +2777,12 @@ msgstr "Disquet"
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:88 install_any.pm:1711
+#: harddrake/data.pm:88
#, c-format
msgid "Hard Disk"
msgstr "Disc"
-#: harddrake/data.pm:97 install_any.pm:1712
+#: harddrake/data.pm:97
#, c-format
msgid "CDROM"
msgstr "CD-ROM"
@@ -3431,104 +2797,102 @@ msgstr "Gravadors de CD/DVD"
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:127 standalone/drakbackup:2066
+#: harddrake/data.pm:127
#, c-format
msgid "Tape"
msgstr "Cinta"
-#: harddrake/data.pm:136
+#: harddrake/data.pm:138
+#, c-format
+msgid "AGP controllers"
+msgstr "Controladors AGP"
+
+#: harddrake/data.pm:147
#, c-format
msgid "Videocard"
msgstr "Targeta de vídeo"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:157
#, c-format
msgid "DVB card"
msgstr "Targeta DVB"
-#: harddrake/data.pm:154
+#: harddrake/data.pm:165
#, c-format
msgid "Tvcard"
msgstr "Targeta de TV"
-#
-#: harddrake/data.pm:163
+#: harddrake/data.pm:174
#, c-format
msgid "Other MultiMedia devices"
msgstr "Altres sispositius multimèdia"
-#: harddrake/data.pm:172
+#: harddrake/data.pm:183
#, c-format
msgid "Soundcard"
msgstr "Targeta de so"
-#: harddrake/data.pm:185
+#: harddrake/data.pm:196
#, c-format
msgid "Webcam"
msgstr "Webcam"
-#: harddrake/data.pm:199
+#: harddrake/data.pm:210
#, c-format
msgid "Processors"
msgstr "Processadors"
-#: harddrake/data.pm:209
+#: harddrake/data.pm:220
#, c-format
msgid "ISDN adapters"
msgstr "Adaptadors XDSI"
-#: harddrake/data.pm:220
+#: harddrake/data.pm:231
#, c-format
msgid "USB sound devices"
msgstr "Dispositius de so USB"
-#: harddrake/data.pm:229
+#: harddrake/data.pm:240
#, c-format
msgid "Radio cards"
msgstr "Targetes de ràdio"
-#: harddrake/data.pm:238
+#: harddrake/data.pm:249
#, c-format
msgid "ATM network cards"
msgstr "Targetes de xarxa ATM"
-#: harddrake/data.pm:247
+#: harddrake/data.pm:258
#, c-format
msgid "WAN network cards"
msgstr "Targetes de xarxa WAN"
-#: harddrake/data.pm:256
+#: harddrake/data.pm:267
#, c-format
msgid "Bluetooth devices"
msgstr "Dispositius Bluetooth"
-#: harddrake/data.pm:265
+#: harddrake/data.pm:276
#, c-format
msgid "Ethernetcard"
msgstr "Targeta Ethernet"
-#: harddrake/data.pm:282 network/netconnect.pm:492
+#: harddrake/data.pm:293
#, c-format
msgid "Modem"
msgstr "Mòdem"
-#: harddrake/data.pm:292
+#: harddrake/data.pm:303
#, c-format
msgid "ADSL adapters"
msgstr "Adaptadors ADSL"
-#: harddrake/data.pm:306
+#: harddrake/data.pm:315
#, c-format
msgid "Memory"
msgstr "Memòria"
-#: harddrake/data.pm:315
-#, c-format
-msgid "AGP controllers"
-msgstr "Controladors AGP"
-
-#: harddrake/data.pm:324 help.pm:187 help.pm:856
-#: install_steps_interactive.pm:964
+#: harddrake/data.pm:324
#, c-format
msgid "Printer"
msgstr "Impressora"
@@ -3554,86 +2918,92 @@ msgstr "Controladors SATA"
msgid "RAID controllers"
msgstr "Controladors RAID"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Controladors (E)IDE/ATA"
-#: harddrake/data.pm:385
+#: harddrake/data.pm:386
+#, fuzzy, c-format
+msgid "USB Mass Storage Devices"
+msgstr "Dispositius de so USB"
+
+#: harddrake/data.pm:395
+#, fuzzy, c-format
+msgid "Card readers"
+msgstr "Model de la targeta:"
+
+#: harddrake/data.pm:404
#, c-format
msgid "Firewire controllers"
msgstr "Controladors Firewire"
-#: harddrake/data.pm:394
+#: harddrake/data.pm:413
#, c-format
msgid "PCMCIA controllers"
msgstr "Controladors PCMCIA"
-#: harddrake/data.pm:403
+#: harddrake/data.pm:422
#, c-format
msgid "SCSI controllers"
msgstr "Controladors SCSI"
-#: harddrake/data.pm:412
+#: harddrake/data.pm:431
#, c-format
msgid "USB controllers"
msgstr "Controladors USB"
-#: harddrake/data.pm:421
+#: harddrake/data.pm:440
#, c-format
msgid "USB ports"
msgstr "Ports USB"
-#: harddrake/data.pm:430
+#: harddrake/data.pm:449
#, c-format
msgid "SMBus controllers"
msgstr "Controladors SMBus"
-#: harddrake/data.pm:439
+#: harddrake/data.pm:458
#, c-format
msgid "Bridges and system controllers"
msgstr "Ponts i controladors del sistema"
-#: harddrake/data.pm:450 help.pm:856 install_steps_interactive.pm:94
-#: install_steps_interactive.pm:924 standalone/finish-install:41
-#: standalone/keyboarddrake:29
+#: harddrake/data.pm:469
#, c-format
msgid "Keyboard"
msgstr "Teclat"
-#: harddrake/data.pm:463
+#: harddrake/data.pm:482
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:472 help.pm:856 install_steps_interactive.pm:957
+#: harddrake/data.pm:491
#, c-format
msgid "Mouse"
msgstr "Ratolí"
-#: harddrake/data.pm:486
+#: harddrake/data.pm:505
#, c-format
msgid "UPS"
msgstr "SAI"
-#
-#: harddrake/data.pm:495
+#: harddrake/data.pm:514
#, c-format
msgid "Scanner"
msgstr "Escàner"
-#: harddrake/data.pm:505 standalone/harddrake2:475
+#: harddrake/data.pm:524
#, c-format
msgid "Unknown/Others"
msgstr "Desconegut/Altres"
-#: harddrake/data.pm:533
+#: harddrake/data.pm:552
#, c-format
msgid "cpu # "
msgstr "CPU #"
-#: harddrake/sound.pm:195 standalone/drakconnect:162
-#: standalone/drakconnect:637
+#: harddrake/sound.pm:195
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Espereu si us plau... s'està aplicant la configuració"
@@ -3652,7 +3022,6 @@ msgstr ""
"No hi ha cap controlador OSS/ALSA alternatiu conegut per a la vostra targeta "
"de so (%s), que actualment fa servir \"%s\""
-#
#: harddrake/sound.pm:239
#, c-format
msgid "Sound configuration"
@@ -3718,17 +3087,17 @@ msgstr ""
"- la nova API d'ALSA que proporciona moltes característiques millorades però "
"que necessita fer servir la llibreria ALSA.\n"
-#: harddrake/sound.pm:262 harddrake/sound.pm:350 standalone/drakups:144
+#: harddrake/sound.pm:262 harddrake/sound.pm:351
#, c-format
msgid "Driver:"
msgstr "Controlador:"
-#: harddrake/sound.pm:270
+#: harddrake/sound.pm:271
#, c-format
msgid "Trouble shooting"
msgstr "Resolució de problemes"
-#: harddrake/sound.pm:278
+#: harddrake/sound.pm:279
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
@@ -3743,13 +3112,12 @@ msgstr ""
"\n"
"El nou controlador \"%s\" només s'usarà en la següent arrencada."
-#
-#: harddrake/sound.pm:286
+#: harddrake/sound.pm:287
#, c-format
msgid "No open source driver"
msgstr "No hi ha cap programa de control de codi obert"
-#: harddrake/sound.pm:287
+#: harddrake/sound.pm:288
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
@@ -3758,36 +3126,35 @@ msgstr ""
"No hi ha cap programa de control gratuït per a la vostra targeta de so (%s), "
"però n'hi ha un de propietat a \"%s\"."
-#
-#: harddrake/sound.pm:290
+#: harddrake/sound.pm:291
#, c-format
msgid "No known driver"
msgstr "No hi ha cap controlador conegut"
-#: harddrake/sound.pm:291
+#: harddrake/sound.pm:292
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "No hi ha cap controlador conegut per a la vostra targeta de so (%s)"
-#: harddrake/sound.pm:295 network/netconnect.pm:98 network/netconnect.pm:837
+#: harddrake/sound.pm:296
#, c-format
msgid "Unknown driver"
msgstr "Controlador desconegut"
-#: harddrake/sound.pm:296
+#: harddrake/sound.pm:297
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr ""
"Error: el programa de control \"%s\" per a la vostra targeta de so no és a "
"la llista"
-#: harddrake/sound.pm:310
+#: harddrake/sound.pm:311
#, c-format
msgid "Sound trouble shooting"
msgstr "Resolució de problemes amb el so"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:313
+#: harddrake/sound.pm:314
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
@@ -3796,7 +3163,7 @@ msgid ""
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\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"
@@ -3816,7 +3183,7 @@ msgstr ""
"- \"lspcidrake -v | fgrep AUDIO\" us dirà el programa de control que la\n"
"vostra targeta utilitza per defecte\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" us dirà el programa de control\n"
+"- \"grep sound-slot /etc/modprobe.conf\" us dirà el programa de control\n"
"que està utilitzant actualment\n"
"\n"
"- \"/sbin/lsmod\" us permetrà comprovar si el seu mòdul (programa de\n"
@@ -3831,18 +3198,18 @@ msgstr ""
"- \"/sbin/fuser -v /dev/dsp\" us dirà quin programa utilitza la targeta de "
"so.\n"
-#: harddrake/sound.pm:339
+#: harddrake/sound.pm:340
#, c-format
msgid "Let me pick any driver"
msgstr "Deixa'm agafar qualsevol programa de control"
-#: harddrake/sound.pm:342
+#: harddrake/sound.pm:343
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Selecció d'un programa de control arbitrari"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:345
+#: harddrake/sound.pm:346
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3856,9 +3223,7 @@ msgstr ""
"\n"
"El programa de control actual per a la vostra targeta \"%s\" és \"%s\" "
-#
-#: harddrake/v4l.pm:12 standalone/net_applet:64 standalone/net_applet:65
-#: standalone/net_applet:67
+#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Detecció automàtica"
@@ -3897,3878 +3262,58 @@ msgstr ""
msgid "Card model:"
msgstr "Model de la targeta:"
-#
#: harddrake/v4l.pm:478
#, c-format
msgid "Tuner type:"
msgstr "Tipus de sintonitzador:"
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "Number of capture buffers:"
-msgstr "Nombre de memòries intermèdies de captura:"
-
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "nombre de memòries intermèdies per a captures amb MMAP"
-
-#
-#: harddrake/v4l.pm:481
-#, c-format
-msgid "PLL setting:"
-msgstr "Configuració del PLL:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "Radio support:"
-msgstr "Permet l'ús de la ràdio:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "enable radio support"
-msgstr "habilita l'ús de la ràdio"
-
-#: help.pm:12
-#, c-format
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandriva Linux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-"Abans de continuar, llegiu atentament les clàusules de la llicència. "
-"Cobreix\n"
-"tota la distribució Mandriva Linux. Si esteu d'acord amb tots els termes de "
-"la\n"
-"llicència, feu clic al quadre \"%s\"; si no, prémer el botó \"%s\"\n"
-"reiniciarà el vostre ordinador."
-
-#: help.pm:18
-#, c-format
-msgid ""
-"GNU/Linux is a multi-user system which means each user can have his or her\n"
-"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point will not be "
-"authorized\n"
-"to change anything except their own files and their own configurations,\n"
-"protecting the system from unintentional or malicious changes which could\n"
-"impact on the system as a whole. You'll have to create at least one regular\n"
-"user for yourself -- this is the account which you should use for routine,\n"
-"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
-"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system will not work any more. If you make a\n"
-"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you will not affect the entire system.\n"
-"\n"
-"The first field asks you for a real name. Of course, this is not mandatory\n"
-"-- you can actually enter whatever you like. DrakX will use the first word\n"
-"you type in this field and copy it to the \"%s\" one, which is the name\n"
-"this user will enter to log onto the system. If you like, you may override\n"
-"the default and change the user name. The next step is to enter a password.\n"
-"From a security point of view, a non-privileged (regular) user password is\n"
-"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
-"by making it blank or too simple: after all, your files could be the ones\n"
-"at risk.\n"
-"\n"
-"Once you click on \"%s\", you can add other users. Add a user for each one\n"
-"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
-"finished adding users.\n"
-"\n"
-"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
-"that user (bash by default).\n"
-"\n"
-"When you're finished adding users, you'll be asked to choose a user who\n"
-"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click on\n"
-"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
-msgstr ""
-"El GNU/Linux és un sistema multiusuari; això vol dir que cada usuari pot\n"
-"tenir les seves pròpies preferències, els seus propis fitxers, etc. Podeu "
-"llegir\n"
-"la ``Guia d'iniciació''\n"
-" per aprendre més coses sobre els sistemes\n"
-"multiusuari. Però, a diferència del \"root\", que és l'administrador del "
-"sistema,\n"
-"als usuaris que afegiu aquí no se'ls permetrà modificar res tret dels seus "
-"propis\n"
-"fitxers i configuracions, protegint així el sistema de canvis, intencionats "
-"o no, \n"
-" que tenen efecte sobre tot el sistema . Cal que us creeu, com a mínim, un "
-"usuari\n"
-"normal, i és aquest compte el que heu d'utilitzar per a l'ús quotidià. Tot i "
-"que\n"
-"és molt fàcil entrar com a \"root\" per a tot, també pot ser molt perillós: "
-"la més\n"
-"petita errada podria significar que el sistema deixés de funcionar. Si "
-"cometeu\n"
-"una errada greu com a usuari normal el pitjor que pot passar és que perdeu\n"
-"algunes daDES, però sense afectar a tot el sistema.\n"
-"\n"
-"Primer, heu d'introduir el vostre nom real. Per suposat, això no és "
-"obligatori,\n"
-"ja que podeu introduir el que vulgueu. DrakX agafarà la primera paraula\n"
-"que heu introduït en aquest camp i la copiarà en el camp \"%s\", que serà "
-"el\n"
-"nom que utilitzarà aquest usuari per entrar al sistema (ho podeu canviar si\n"
-"voleu). Després cal que introduïu una contrasenya. Des del punt de vista de\n"
-"la seguretat, una contrasenya d'un usuari no privilegiat (habitual) no és "
-"tan\n"
-"important com la del \"root\" des del punt de vista de la seguretat, però no "
-"hi\n"
-"ha cap raó per menystenir-la, deixant-la en blanc o fent-la massa senzilla: "
-"al\n"
-"cap i a la fi, els vostres fitxers poden estar en joc.\n"
-"\n"
-"Un cop hagueu fet clic a \"%s\" podreu afegir altres usuaris. Afegiu-ne un\n"
-"per a tothom que hagi de fer servir l'ordinador. Feu clic a \"%s\" quan "
-"hagueu\n"
-"acabat d'afegir-ne.\n"
-"\n"
-"Feu clic al botó \"%s\" per canviar l'intèrpret d'ordres (\"shell\") per "
-"defecte\n"
-"(bash) de l'usuari seleccionat. \n"
-"\n"
-"Quan hagueu acabat d'afegir usuaris, se us proposarà decidir quin usuari\n"
-"entrarà automàticament en el sistema en arrencar l'ordinador. Si us\n"
-"interessa aquesta característica (i no us importa gaire la seguretat "
-"local), \n"
-"trieu l'usuari i el gestor de finestres desitjat i feu clic a \"%s\".\n"
-"Si no hi esteu interessat, desactiveu el quadre \"%s\"."
-
-#: help.pm:52 printer/printerdrake.pm:1866 printer/printerdrake.pm:1987
-#: standalone/draksambashare:60
-#, c-format
-msgid "User name"
-msgstr "Nom d'usuari"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: help.pm:52 help.pm:432 help.pm:682 install_interactive.pm:176
-#: install_steps_gtk.pm:237 install_steps_gtk.pm:682 interactive.pm:436
-#: interactive/newt.pm:321 network/thirdparty.pm:385
-#: printer/printerdrake.pm:3884 standalone/drakTermServ:412
-#: standalone/drakbackup:4102 standalone/drakbackup:4196
-#: standalone/drakbackup:4213 standalone/drakbackup:4231 ugtk2.pm:490
-#, c-format
-msgid "Next"
-msgstr "Següent"
-
-#: help.pm:52
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Voleu utilitzar aquesta característica?"
-
-#: help.pm:55
-#, c-format
-msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Aquestes són les particions de Linux existents que s'han detectat al disc "
-"dur.\n"
-"Podeu conservar les decisions preses per l'auxiliar, atès que són les "
-"adequades\n"
-"per a les instal·lacions més habituals. Si hi feu algun canvi, com a mínim "
-"heu\n"
-"de definir una partició arrel (\"/\"). No trieu una partició massa petita "
-"perquè\n"
-"no podríeu instal·lar-hi prou programari. Si voleu emmagatzemar les dades en "
-"una\n"
-"altra partició, us caldrà crear una partició \"/home\" (això només serà "
-"possible\n"
-"si hi ha més d'una partició de Linux disponible).\n"
-"\n"
-"Cada partició està identificada d'aquesta manera: \"Nom\", \"Capacitat\".\n"
-"\n"
-"\"Nom\" es compon de: \"tipus d'unitat de disc\", \"número d'unitat de disc"
-"\",\n"
-"\"número de la partició\" (per exemple, \"hda1\").\n"
-"\n"
-"El \"Tipus d'unitat de disc\" és \"hd\" si la vostre unitat de disc és IDE i "
-"\"sd\" si és SCSI.\n"
-"\n"
-"El \"Número de la unitat de disc\" és sempre una lletra després d'\"hd\" o "
-"\"sd\".\n"
-"Per a unitats de disc IDE:\n"
-"\n"
-" * \"a\" significa \"unitat de disc mestra en el controlador IDE primari\",\n"
-"\n"
-" * \"b\" significa \"unitat de disc esclava en el controlador IDE primari"
-"\",\n"
-"\n"
-" * \"c\" significa \"unitat de disc mestra en el controlador IDE secundari"
-"\",\n"
-"\n"
-" * \"d\" significa \"unitat de disc esclava en el controlador IDE secundari"
-"\".\n"
-"\n"
-"Amb unitats de disc SCSI, una \"a\" significa \"ID SCSI més baixa\",\n"
-"una \"b\" significa \"segona ID SCSI més baixa\", etc."
-
-#: help.pm:86
-#, c-format
-msgid ""
-"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-"La instal·lació del Mandriva Linux està repartida en diversos CD-ROM. Si\n"
-"un dels paquets escollits està en un altre CD-ROM, DrakX expulsarà el CD\n"
-"actual i us demanarà que n'inseriu un altre. Si no teniu el CD necessari a\n"
-"mà, premeu \"%s\" i els paquets corresponents no s'instal·laran."
-
-#: help.pm:93
-#, c-format
-msgid ""
-"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandriva Linux, and to make "
-"it\n"
-"simpler to manage, they have been placed into groups of similar\n"
-"applications.\n"
-"\n"
-"Mandriva Linux sorts package groups in four categories. You can mix and\n"
-"match applications from the various categories, so a ``Workstation''\n"
-"installation can still have applications from the ``Server'' category\n"
-"installed.\n"
-"\n"
-" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
-"more of the groups in the workstation category.\n"
-"\n"
-" * \"%s\": if you plan on using your machine for programming, select the\n"
-"appropriate groups from that category. The special \"LSB\" group will\n"
-"configure your system so that it complies as much as possible with the\n"
-"Linux Standard Base specifications.\n"
-"\n"
-" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
-"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
-"of the system. However, if you do not select the \"LSB\" group you will\n"
-"still have a system which is nearly 100%% LSB-compliant.\n"
-"\n"
-" * \"%s\": if your machine is intended to be a server, select which of the\n"
-"more common services you wish to install on your machine.\n"
-"\n"
-" * \"%s\": this is where you will choose your preferred graphical\n"
-"environment. At least one must be selected if you want to have a graphical\n"
-"interface available.\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group.\n"
-"\n"
-"You can check the \"%s\" box, which is useful if you're familiar with the\n"
-"packages being offered or if you want to have total control over what will\n"
-"be installed.\n"
-"\n"
-"If you start the installation in \"%s\" mode, you can deselect all groups\n"
-"and prevent the installation of any new packages. This is useful for\n"
-"repairing or updating an existing system.\n"
-"\n"
-"If you deselect all groups when performing a regular installation (as\n"
-"opposed to an upgrade), a dialog will pop up suggesting different options\n"
-"for a minimal installation:\n"
-"\n"
-" * \"%s\": install the minimum number of packages possible to have a\n"
-"working graphical desktop.\n"
-"\n"
-" * \"%s\": installs the base system plus basic utilities and their\n"
-"documentation. This installation is suitable for setting up a server.\n"
-"\n"
-" * \"%s\": will install the absolute minimum number of packages necessary\n"
-"to get a working Linux system. With this installation you will only have a\n"
-"command-line interface. The total size of this installation is about 65\n"
-"megabytes."
-msgstr ""
-"Ha arribat el moment d'indicar els programes que voleu instal·lar en el\n"
-"sistema. Mandriva Linux té milers de paquets, i per facilitar-ne la\n"
-"gestió s'han distribuït en grups d'aplicacions similars.\n"
-"\n"
-"Mandriva Linux agrupa els paquets en quatre categories. Podeu mesclar i fer\n"
-"coincidir aplicacions de grups diversos, de manera que una instal·lació\n"
-"d'``Estació de treball'' pot perfectament tenir instal·lades aplicacions\n"
-"de la categoria ``Servidor'' \n"
-" * \"%s\": si voleu utilitzar l'ordinador com a estació de treball,\n"
-"seleccioneu un o més grups de la categoria estació de treball.\n"
-"\n"
-" * \"%s\": si penseu utilitzar la vostra màquina per programar, escolliu\n"
-"els grups adients d'aquesta categoria. El grup especial \"LSB\"\n"
-"configurarà el vostre sistema per tal que compleixi tant com sigui\n"
-"possible amb les especificacions Linux Standard Base.\n"
-"\n"
-" Seleccionar el grup \"LSB\" també instal·larà un kernel \"2.4\",\n"
-"en comptes del \"2.6\". Això es fa per assegurar que els sistema\n"
-"compleixi al 100%% amb LSB. Si no seleccioneu el grup \"LSB\"\n"
-"encara tindreu un sistema que compleix la LSB quasi al 100%%.\n"
-"\n"
-" * \"%s\": si l'ordinador s'ha d'utilitzar com a servidor, seleccioneu\n"
-"quins dels serveis més habituals voleu instal·lar\n"
-"\n"
-" * \"%s\": aquí és on escollireu quin és el vostre entorn gràfic\n"
-"preferit. Heu de seleccionar-ne un com a mínim si voleu tenir una\n"
-"interfície gràfica.\n"
-"\n"
-"Si moveu el cursor per sobre d'un nom de grup veureu una breu explicació\n"
-"d'aquest grup.\n"
-"\n"
-"Podeu marcar la casella \"%s\", que és útil si esteu familiaritzat amb els\n"
-"diversos paquets o si voleu tenir un control total sobre el que "
-"s'instal·larà.\n"
-"\n"
-"Si heu començat la instal·lació en el mode \"%s\", podeu desseleccionar \n"
-"tots els grups si voleu evitar que s'instal·li cap paquet nou. Això és\n"
-"útil per reparar o actualitzar un sistema existent.\n"
-"Si desseleccioneu tots els grups quan estigueu fent una\n"
-"instal·lació normal (i no una actualització), se us presentarà un diàleg \n"
-"proposant-vos diferents opcions per a una instal·lació mínima:\n"
-"\n"
-" * \"%s\": instal·la els mínims paquets necessaris per tenir un\n"
-"entorn gràfic funcional\n"
-"\n"
-" * \"%s\": instal·la el sistema base i les utilitats bàsiques amb la seva\n"
-"documentació. Aquesta instal·lació és adequada per configurar un servidor;\n"
-"\n"
-" * \"%s\": instal·la el nombre mínim de paquets necessari per aconseguir un\n"
-"sistema Linux operatiu, només amb una interfície de línia d'ordres. Aquesta\n"
-"instal·lació ocupa uns 65 MB."
-
-#: help.pm:147 share/compssUsers.pl:24
-#, c-format
-msgid "Workstation"
-msgstr "Estació de treball"
-
-#: help.pm:147 share/compssUsers.pl:65 share/compssUsers.pl:167
-#: share/compssUsers.pl:169
+#: interactive.pm:125 interactive.pm:538 interactive/curses.pm:217
+#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
+#: interactive/stdio.pm:142 interactive/stdio.pm:143 ugtk2.pm:410 ugtk2.pm:508
+#: ugtk2.pm:788 ugtk2.pm:811
#, c-format
-msgid "Development"
-msgstr "Desenvolupament"
-
-#: help.pm:147 share/compssUsers.pl:145
-#, c-format
-msgid "Graphical Environment"
-msgstr "Entorn gràfic"
-
-#: help.pm:147 install_steps_gtk.pm:235 install_steps_interactive.pm:623
-#, c-format
-msgid "Individual package selection"
-msgstr "Selecció individual de paquets"
-
-#
-#: help.pm:147 help.pm:589
-#, c-format
-msgid "Upgrade"
-msgstr "Actualitza"
-
-#
-#: help.pm:147 install_steps_interactive.pm:581
-#, c-format
-msgid "With X"
-msgstr "Amb X"
-
-#: help.pm:147
-#, c-format
-msgid "With basic documentation"
-msgstr "Amb la documentació bàsica"
-
-#
-#: help.pm:147
-#, c-format
-msgid "Truly minimal install"
-msgstr "Instal·lació mínima real"
-
-#: help.pm:150
-#, c-format
-msgid ""
-"If you choose to install packages individually, the installer will present\n"
-"a tree containing all packages classified by groups and subgroups. While\n"
-"browsing the tree, you can select entire groups, subgroups, or individual\n"
-"packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description will appear on the\n"
-"right to let you know the purpose of that package.\n"
-"\n"
-"!! If a server package has been selected, either because you specifically\n"
-"chose the individual package or because it was part of a group of packages,\n"
-"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandriva Linux will automatically start any installed\n"
-"services at boot time. Even if they are safe and have no known issues at\n"
-"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandriva Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do "
-"or\n"
-"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
-"the listed services and they will be started automatically at boot time. !!\n"
-"\n"
-"The \"%s\" option is used to disable the warning dialog which appears\n"
-"whenever the installer automatically selects a package to resolve a\n"
-"dependency issue. Some packages depend on others and the installation of\n"
-"one particular package may require the installation of another package. The\n"
-"installer can determine which packages are required to satisfy a dependency\n"
-"to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-"package list created during a previous installation. This is useful if you\n"
-"have a number of machines that you wish to configure identically. Clicking\n"
-"on this icon will ask you to insert the floppy disk created at the end of\n"
-"another installation. See the second tip of the last step on how to create\n"
-"such a floppy."
-msgstr ""
-"Si heu dit a l'instal·lador que volíeu seleccionar els paquets "
-"individualment\n"
-"se us presentarà un arbre amb tots els paquets classificats per grups i\n"
-"subgrups. Mentre navegueu per l'arbre, podeu seleccionar grups complets,\n"
-"subgrups o paquets individuals.\n"
-"\n"
-"Cada cop que seleccioneu un paquet de l'arbre, apareixerà una descripció a \n"
-"la dreta que us informarà de la finalitat del paquet.\n"
-"\n"
-"!! Si heu seleccionat un paquet de servidor, intencionadament o perquè\n"
-"formava part d'un grup, se us demanarà que confirmeu si realment voleu\n"
-"instal·lar aquests servidors. Per defecte, Mandriva Linux "
-"iniciaràautomàticament qualsevol servidor durant l'arrencada. Tot i que\n"
-"siguin segurs i no tinguin cap problema conegut quan es publica la\n"
-"distribució, és totalment possible que es descobreixin forats de seguretat\n"
-"després que aquesta versió de Mandriva Linux quedi finalitzada.\n"
-"Si no sabeu què se suposa que fa un servei en particular, o per què s'està\n"
-"instal·lant, feu clic a \"%s\". Per defecte, si feu clic a \"%s\" els "
-"serveis\n"
-"llistats s'instal·laran i s'iniciaran automàticament durant l'arrencada. !!\n"
-"\n"
-"L'opció \"%s\" s'utilitza per inhabilitar el diàleg d'advertència que\n"
-"apareix quan l'instal·lador selecciona automàticament un paquet per "
-"resoldre\n"
-"dependències. Alguns paquets estan relacionats els uns amb els\n"
-"altres, de manera que la instal·lació d'un paquet fa que calgui instal·lar\n"
-"també algun altre programa. L'instal·lador pot determinar quins paquets "
-"calen\n"
-"per satisfer una dependència i completar la instal·lació satisfactòriament.\n"
-"\n"
-"La diminuta icona d'un disquet al peu de la llista us permet carregar una\n"
-"llista de paquets creada en una instal·lació anterior. Això és útil si "
-"teniu\n"
-"un cert nombre d'ordinadors que voleu configurar de manera idèntica. Si feu\n"
-"clic a aquesta icona se us demanarà que inseriu un disquet creat "
-"anteriorment\n"
-"al final d'una altra instal·lació. Vegeu el segon suggeriment de l'últim "
-"pas\n"
-"per saber com crear aquest disquet."
-
-#: help.pm:181 help.pm:286 help.pm:314 help.pm:445 install_any.pm:944
-#: interactive.pm:161 modules/interactive.pm:71 standalone/drakbackup:2636
-#: standalone/drakfont:687 standalone/draksec:54 standalone/harddrake2:331
-#: ugtk2.pm:898 wizards.pm:156
-#, c-format
-msgid "No"
-msgstr "No"
+msgid "Ok"
+msgstr "D'acord"
-#: help.pm:181 help.pm:286 help.pm:445 install_any.pm:944 interactive.pm:161
-#: modules/interactive.pm:71 printer/printerdrake.pm:883
-#: printer/printerdrake.pm:898 standalone/drakbackup:2636
-#: standalone/drakfont:685 standalone/draksec:55 standalone/harddrake2:330
-#: ugtk2.pm:898 wizards.pm:156
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Sí"
-#: help.pm:181
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Dependències automàtiques"
-
-#: help.pm:184
-#, c-format
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to set up a new printer. The interface presented in our\n"
-"manual is similar to the one used during installation."
-msgstr ""
-"\"%s\": feu clic al botó \"%s\" per obrir l'auxiliar de configuració de la\n"
-"impressora. Consulteu el capítol corresponent de la ``Guia d'iniciació''\n"
-"per tenir més informació en quant a la configuració de noves impressores.\n"
-"La interfície que apareix és similar a la que s'utilitza durant la "
-"instal·lació."
-
-#: help.pm:187 help.pm:567 help.pm:856 install_steps_gtk.pm:595
-#: standalone/drakbackup:2460 standalone/drakbackup:2464
-#: standalone/drakbackup:2468 standalone/drakbackup:2472
-#: standalone/drakroam:227
-#, c-format
-msgid "Configure"
-msgstr "Configura"
-
-#: help.pm:190
-#, c-format
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
-"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which are not needed at boot\n"
-"time.\n"
-"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably do not want to start any services which you do not "
-"need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-"En aquest diàleg escollireu els serveis que voleu que s'iniciïn durant "
-"l'arrencada.\n"
-"\n"
-"DrakX farà una llista de tots els serveis disponibles en la instal·lació "
-"actual.\n"
-"Reviseu-los amb cura i desmarqueu aquells que no siguin necessaris durant "
-"l'arrencada.\n"
-"\n"
-"Podeu obtenir una explicació breu sobre un servei si el seleccioneu. Si no\n"
-"esteu segur de la utilitat d'un servei, el més segur és deixar el "
-"comportament\n"
-"per defecte.\n"
-"\n"
-"!! Aneu especialment amb cura en aquest pas si penseu utilitzar l'ordinador "
-"com\n"
-"a servidor: segurament no voldreu iniciar serveis que no necessiteu.\n"
-"Recordeu que hi ha diversos serveis que poden ser perillosos si s'habiliten\n"
-"en un servidor. En general, seleccioneu només els serveis que realment "
-"necessiteu. !!"
-
-#: help.pm:207
-#, c-format
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
-"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
-msgstr ""
-"GNU/Linux gestiona l'hora en GMT (Greenwich Mean Time) i el tradueix a\n"
-"l'hora local d'acord amb la zona horària seleccionada. Si el rellotge de la\n"
-"placa base indica l'hora local, podeu desactivar-ho desseleccionant \"%s\", "
-"i\n"
-"això informarà a GNU/Linux que el rellotge del sistema i el rellotge del\n"
-"maquinari són a la mateixa zona horària. Això és convenient quan la màquina\n"
-"també té instal·lat un altre sistema operatiu.\n"
-"\n"
-"L'opció \"%s\" regularà automàticament l'hora connectant-se a un servidor\n"
-"horari remot d'Internet. Per tal que funcioni aquesta funció us caldrà "
-"tenir\n"
-"connexió a Internet. És millor triar un servidor que estigui ubicat a prop\n"
-"vostre. De fet, aquesta opció instal·la un servidor d'hora que altres "
-"màquines\n"
-"de la vostra xarxa local també podran utilitzar."
-
-#
-#: help.pm:218 install_steps_interactive.pm:859
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "El rellotge del vostre ordinador està regulat per GMT"
-
-#: help.pm:218
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Sincronització automàtica de la hora"
-
-#: help.pm:221
-#, c-format
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-"Targeta gràfica\n"
-"\n"
-" Normalment, l'instal·lador detectarà automàticament i configurarà la\n"
-"targeta gràfica que tingueu instal·lada a l'ordinador. Si no fos així, la\n"
-"podeu seleccionar d'aquesta llista.\n"
-"\n"
-" Cas que hi hagi diferents servidors per a la targeta, amb o sense\n"
-"acceleració 3D, se us demanarà que trieu el servidor que us sigui\n"
-"més convenient."
-
-#: help.pm:232
-#, c-format
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"X (per sistema X Window) és el cor de la interfície gràfica de GNU/Linux\n"
-"de què depenen tots els entorns gràfics (KDE, GNOME, AfterStep, \n"
-"WindowMaker, etc.) que venen amb Mandriva Linux.\n"
-"\n"
-"Veureu una relació de diferents paràmetres que podeu canviar per aconseguir\n"
-"una visualització gràfica òptima.\n"
-"\n"
-"Targeta gràfica\n"
-"\n"
-" Normalment, l'instal·lador detectarà i configurarà automàticament la\n"
-"targeta gràfica instal·lada a l'ordinador. Si no fos així, podeu escollir\n"
-"de la llista la targeta que realment tingueu instal·lada.\n"
-"\n"
-" En cas que hi hagi diferents servidors disponibles per a la vostra\n"
-"targeta, amb o sense acceleració 3D, se us demanarà que escolliu el que\n"
-"més us convingui.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normalment, l'instal·lador detectarà i configurarà automàticament el\n"
-"monitor que teniu connectat a l'ordinador. Si no és correcte, podreu triar\n"
-"d'aquesta llista el monitor que realment teniu connectat a l'ordinador.\n"
-"\n"
-"\n"
-"\n"
-"Resolució\n"
-"\n"
-" Aquí podeu triar les resolucions i profunditats de color disponibles per\n"
-"al vostre maquinari. Trieu la que us vagi més bé (tot i que podreu\n"
-"canviar-la després de la instal·lació). Al monitor veureu una mostra de la\n"
-"configuració triada.\n"
-"\n"
-"\n"
-"\n"
-"Prova\n"
-"\n"
-" Depenent del maquinari aquesta entrada pot no aparèixer.\n"
-"\n"
-" El sistema intentarà obrir una pantalla gràfica amb la resolució\n"
-"desitjada. Si podeu veure el missatge durant la prova i responeu \"%s\",\n"
-"DrakX passarà al pas següent. Si no el podeu veure, vol dir que la\n"
-"configuració detectada automàticament no era del tot correcta i la prova\n"
-"finalitzarà automàticament al cap de 12 segons, portant-vos de nou al menú.\n"
-"Canvieu els paràmetres fins que obtingueu una pantalla gràfica correcta.\n"
-"\n"
-"\n"
-"\n"
-"Opcions\n"
-"\n"
-" Aquí podeu decidir si voleu que l'ordinador canviï automàticament a una\n"
-"interfície gràfica en arrencar. Òbviament, voldreu activar \"%s\" si\n"
-"l'ordinador ha d'actuar com a servidor, o si no heu aconseguit\n"
-"configurar la pantalla."
-
-#: help.pm:289
-#, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
-msgstr ""
-"Monitor\n"
-"\n"
-" Normalment, l'instal·lador detectarà i configurarà automàticament el\n"
-"monitor que teniu connectat a l'ordinador. Si no és correcte, podreu triar\n"
-"d'aquesta llista el monitor que realment teniu connectat a l'ordinador."
-
-#: help.pm:296
-#, c-format
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
-msgstr ""
-"Resolució\n"
-"\n"
-" Aquí podeu triar les resolucions i profunditats de color disponibles per\n"
-"al vostre maquinari. Trieu la que us vagi més bé (tot i que podreu\n"
-"canviar-la després de la instal·lació). Al monitor veureu una mostra de la\n"
-"configuració triada."
-
-#: help.pm:304
-#, c-format
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-"En cas que hi hagi diferents servidors disponibles per a la vostra\n"
-"targeta, amb o sense acceleració 3D, se us demanarà que escolliu\n"
-"el servidor que més us convingui."
-
-#: help.pm:309
-#, c-format
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"Opcions\n"
-"\n"
-" Aquí podeu decidir si voleu que l'ordinador canviï automàticament a una\n"
-"interfície gràfica en arrencar. Òbviament, activareu \"%s\" si l'ordinador\n"
-"ha de ser un servidor, o si no heu pogut configurar la pantalla."
-
-#: help.pm:317
-#, c-format
-msgid ""
-"You now need to decide where you want to install the Mandriva Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandriva Linux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandriva Linux system, "
-"choose\n"
-"this option. Be careful, because you will not be able to undo this "
-"operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-"Ara és quan heu de decidir en quin lloc del vostre disc dur voleu\n"
-"instal·lar el sistema operatiu Mandriva Linux. Si el disc és buit,\n"
-"o si un sistema operatiu existent n'utilitza tot l'espai disponible,\n"
-"us caldrà particionar-lo. Bàsicament, particionar un disc dur\n"
-"consisteix a dividir-lo de manera lògica per crear espai on\n"
-"instal·lar el nou sistema Mandriva Linux.\n"
-"\n"
-"Atès que els efectes d'aquest procés solen ser irreversibles i poden\n"
-"implicar pèrdua de dades si ja teniu un sistema operatiu instal·lat, el\n"
-"particionament us pot espantar si sou un usuari sense experiència.\n"
-"Per sort, DrakX inclou un auxiliar que simplifica aquest procés.\n"
-"Abans de continuar, però, llegiu la resta d'aquesta secció i,\n"
-"sobre tot, preneu-vos el temps que calgui.\n"
-"\n"
-"Segons la configuració del vostre disc dur, hi ha diverses opcions\n"
-"possibles:\n"
-"\n"
-" * \"%s\": aquesta opció particionarà automàticament les unitats buides.\n"
-"Amb aquesta opció no se us farà cap pregunta més.\n"
-"\n"
-" * \"%s\": l'auxiliar ha detectat una o més particions de Linux al vostre\n"
-"disc dur. Si voleu utilitzar-les, escolliu aquesta opció. Se us demanarà\n"
-"que trieu els punts de muntatge associats a cadascuna de les particions.\n"
-"Els punts de muntatge existents se seleccionen per defecte, i en la\n"
-"majoria dels casos és bona idea conservar-los.\n"
-"\n"
-" * \"%s\" Si teniu el Microsoft Windows instal·lat al disc dur i n'ocupa\n"
-"tot l'espai disponible, caldrà crear espai lliure per a GNU/Linux. Per\n"
-"fer-ho, podeu suprimir la partició i les dades del Windows\n"
-"(consulteu la solució ``Esborrar completament el disc'') o canviar\n"
-"la mida de la partició FAT o NTFS de Windows. Aquest canvi de mida\n"
-"es pot dur a terme sense cap pèrdua de dades, sempre que la\n"
-"partició de Windows hagi estat desfragmentada prèviament.\n"
-"És molt recomanable, fer una còpia de seguretat de les dades.\n"
-"Aquesta opció és la més recomanable si voleu utilitzar tant\n"
-"Mandriva Linux com Microsoft Windows al mateix ordinador.\n"
-"\n"
-" Abans de decidir-vos per aquesta opció, penseu que en acabar la partició\n"
-"de Microsoft Windows serà més petita que anteriorment. Tindreu menys espai\n"
-"lliure a Microsoft Windows per emmagatzemar-hi dades o instal·lar-hi més "
-"programari.\n"
-"\n"
-" *\"%s\": si voleu suprimir totes les dades i particions que teniu al disc\n"
-"dur i substituir-les pel sistema Mandriva Linux, podeu escollir aquesta\n"
-"opció. Aneu amb compte, però, perquè, un cop la confirmeu, no podreu\n"
-"fer-vos enrere.\n"
-"\n"
-" ¡¡ Si trieu aquesta opció, totes les dades del disc s'esborraran !!.\n"
-"\n"
-" *\"%s\": aquesta opció apareix quan el disc dur està completament ple\n"
-"per Microsoft Windows. Escollir aquest opció esborrarà tot el contingut del "
-"disc i\n"
-"començarà de nou, particionant des de zero.\n"
-" ¡¡ Si trieu aquesta opció, totes les dades del disc s'esborraran !!.\n"
-"\n"
-" * \"%s\": si voleu particionar el disc dur manualment, podeu triar aquesta\n"
-"opció. Aneu amb compte: és una opció molt potent però també perillosa, ja\n"
-"que podeu perdre fàcilment totes les dades. Per tant, aquesta opció només "
-"és\n"
-"recomanable si heu fet abans alguna cosa similar i teniu una mica\n"
-"d'experiència. Trobareu més instruccions sobre la utilitat DiskDrake a la\n"
-"secció ``Gestió de les particions'' de la ``Guia d'iniciació''."
-
-#: help.pm:375 install_interactive.pm:96
-#, c-format
-msgid "Use free space"
-msgstr "Utilitza l'espai lliure"
-
-#: help.pm:375
-#, c-format
-msgid "Use existing partition"
-msgstr "Utilitza les particions existents"
-
-#: help.pm:375 install_interactive.pm:138
-#, c-format
-msgid "Use the free space on the Microsoft Windows® partition"
-msgstr "Utilitza l'espai lliure de la partició de Windows"
-
-#: help.pm:375
-#, c-format
-msgid "Erase entire disk"
-msgstr "Esborra tot el disc"
-
-#: help.pm:375
-#, c-format
-msgid "Remove Windows"
-msgstr "Elimina Windows"
-
-#: help.pm:375 install_interactive.pm:233
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Particionament personalitzat de disc"
-
-#: help.pm:378
-#, c-format
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
-"to remove the installation media (CD-ROM or floppy). The first thing you\n"
-"should see after your computer has finished doing its hardware tests is the\n"
-"boot-loader menu, giving you the choice of which operating system to start.\n"
-"\n"
-"The \"%s\" button shows two more buttons to:\n"
-"\n"
-" * \"%s\": enables you to create an installation floppy disk which will\n"
-"automatically perform a whole installation without the help of an operator,\n"
-"similar to the installation you've just configured.\n"
-"\n"
-" Note that two different options are available after clicking on that\n"
-"button:\n"
-"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
-"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing on a number of similar\n"
-"machines. See the Auto install section on our web site for more\n"
-"information.\n"
-"\n"
-" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
-"To use this selection with another installation, insert the floppy and\n"
-"start the installation. At the prompt, press the [F1] key, type >>linux\n"
-"defcfg=\"floppy\"<< and press the [Enter] key.\n"
-"\n"
-"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
-"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
-"/dev/fd0\"."
-msgstr ""
-"Ja ho teniu. S'ha completat la instal·lació i el vostre sistema GNU/Linux\n"
-"està preparat per fer-se servir. Simplement premeu \"%s\" per reiniciar el\n"
-"sistema. No oblideu treure la font d'instal·lació (CD-ROM o disquet).\n"
-"La primera cosa que veureu, després que l'ordinador hagi finalitzat les\n"
-"comprovacions de maquinari, és el menú del carregador d'arrencada, que us\n"
-"deixa triar el sistema operatiu amb què voleu iniciar.\n"
-"\n"
-"El botó \"%s\" mostra dos botons més per:\n"
-"\n"
-" * \"%s\": per crear un disquet d'instal·lació que realitzarà\n"
-"automàticament una instal·lació completa sense l'ajuda d'un operador,\n"
-"semblant a la instal·lació que acabeu de configurar.\n"
-"\n"
-" Tingueu en compte que hi ha dues opcions diferents després de fer clic al "
-"botó:\n"
-"\n"
-" * \"%s\". Aquesta és una instal·lació parcialment automatitzada; el pas\n"
-"de particionament és l'únic procediment interactiu.\n"
-"\n"
-" * \"%s\". Instal·lació completament automatitzada: el disc dur es\n"
-"reescriu completament i totes les dades es perden.\n"
-"\n"
-" Aquesta característica és força útil quan es fa una instal·lació a un\n"
-"cert nombre d'ordinadors similars. En trobareu més informació a la secció\n"
-"d'instal·lació automàtica del nostre lloc web.\n"
-"\n"
-" * \"%s\": desa una llista dels paquets seleccionats en aquesta\n"
-"instal·lació. Per utilitzar aquesta selecció en una altra instal·lació,\n"
-"inseriu el disquet i inicieu la instal·lació. A l'indicador, premeu la\n"
-"tecla F1, i escriviu >>linux defcfg=\"floppy\"<< i premeu la tecla [Enter].\n"
-"\n"
-"(*) Cal un disquet formatejat amb FAT. Per crear-ne un a GNU/Linux, \n"
-"escriviu \"mformat a:\", o \"fdformat /dev/fd0\" seguit de\n"
-"\"mkfs.vfat /dev/fd0\"."
-
-#: help.pm:410
-#, c-format
-msgid "Generate auto-install floppy"
-msgstr "Genera un disquet per a la instal·lació automàtica"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Replay"
-msgstr "Repeteix"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Automated"
-msgstr "Automàtica"
-
-#: help.pm:410 install_steps_interactive.pm:1317
-#, c-format
-msgid "Save packages selection"
-msgstr "Desa la selecció de paquets"
-
-#: help.pm:413
-#, fuzzy, c-format
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
-"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
-"reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"will not be able to recover it.\n"
-"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
-"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandriva Linux operating system installation.\n"
-"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-"Per poder utilitzar les particions que s'acaben de definir cal formatar-les\n"
-"(la formatació consisteix a crear-hi un sistema de fitxers).\n"
-"\n"
-"En aquest punt, potser voldreu tornar a formatar algunes de les particions\n"
-"existents per eliminar les dades que contenen. Si és així, seleccioneu\n"
-"també aquestes particions.\n"
-"\n"
-"Tingueu en compte que no cal tornar a formatar totes les particions que ja\n"
-"existien; heu de tornar a formatar les particions que continguin el sistema\n"
-"operatiu (com ara \"/\", \"/usr\" o \"/var\"), però no les que contenen\n"
-"dades que voleu conservar (habitualment, \"/home\").\n"
-"\n"
-"Aneu amb compte en seleccionar les particions; després de la formatació,\n"
-"totes les dades s'hauran suprimit i no en podreu recuperar cap.\n"
-"\n"
-"Feu clic a \"%s\" quan estigueu a punt per formatar les particions.\n"
-"\n"
-"Feu clic a \"%s\" si voleu seleccionar una altra partició per instal·lar\n"
-"el nou sistema Mandriva Linux.\n"
-"\n"
-"Feu clic a \"%s\" si voleu seleccionar particions on cercar-hi blocs "
-"defectuosos."
-
-#: help.pm:432 install_steps_gtk.pm:392 interactive.pm:437
-#: interactive/newt.pm:318 printer/printerdrake.pm:3882
-#: standalone/drakTermServ:391 standalone/drakbackup:4065
-#: standalone/drakbackup:4101 standalone/drakbackup:4212
-#: standalone/drakbackup:4227 ugtk2.pm:488
-#, c-format
-msgid "Previous"
-msgstr "Anterior"
-
-#: help.pm:435
-#, c-format
-msgid ""
-"By the time you install Mandriva Linux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-"Ara esteu instal·lant Mandriva Linux, és probable que alguns paquets\n"
-"hagin estat actualitzats des de la data de llançament. Alguns errors poden\n"
-"haver estat resolts, i problemes de seguretat poden estar ja corregits.\n"
-"Per beneficiar-vos d'aquestes actualitzacions, les podeu baixar d'Internet.\n"
-"Trieu \"%s\" si teniu una connexió a Internet operativa, o \"%s\" si\n"
-"preferiu instal·lar-les més tard.\n"
-"\n"
-"Si trieu \"%s\" apareixerà una llista de llocs des d'on podeu baixar les\n"
-"actualitzacions. Escolliu la ubicació més propera. Aleshores, apareixerà\n"
-"un arbre de selecció de paquets: comproveu la selecció i premeu \"%s\" per\n"
-"baixar i instal·lar els paquets seleccionats, o \"%s\" per abandonar."
-
-#: help.pm:445 help.pm:589 install_steps_gtk.pm:391
-#: install_steps_interactive.pm:132
-#, c-format
-msgid "Install"
-msgstr "Instal·la"
-
-#: help.pm:448
-#, c-format
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
-"\n"
-"If you do not know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandriva Linux\n"
-"Control Center.\n"
-"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-"Ara és el moment de triar el nivell de seguretat desitjat per a la màquina.\n"
-"Com a norma general, el nivell de seguretat ha de ser més alt si la màquina\n"
-"conté dades importants, o si està connectada directament a Internet.\n"
-"Tanmateix, un nivell alt de seguretat sovint comporta una disminució de la\n"
-"facilitat d'ús.\n"
-"\n"
-"Si no sabeu quin escollir, deixeu l'opció per defecte.. Podreu canviar\n"
-"el nivell de seguretat més tard amb l'eina draksec del\n"
-"Centre de Control Mandriva Linux.\n"
-"\n"
-"Ompliu el camp \"%s\" amb l'adreça electrònica de la persona responsable\n"
-"de la seguretat. Els missatges de seguretat s'enviaran a aquesta adreça."
-
-#: help.pm:459
-#, c-format
-msgid "Security Administrator"
-msgstr "Administrador de seguretat"
-
-#: help.pm:462
-#, c-format
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandriva Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"%s\": this option deletes all partitions on the selected hard drive\n"
-"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
-"partitions in the free space of your hard drive\n"
-"\n"
-"\"%s\": gives access to additional features:\n"
-"\n"
-" * \"%s\": saves the partition table to a floppy. Useful for later\n"
-"partition-table recovery if necessary. It is strongly recommended that you\n"
-"perform this step.\n"
-"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
-"\n"
-" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it does not always\n"
-"work.\n"
-"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
-"\n"
-" * \"%s\": un-checking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
-"\n"
-" * \"%s\": use this option if you wish to use a wizard to partition your\n"
-"hard drive. This is recommended if you do not have a good understanding of\n"
-"partitioning.\n"
-"\n"
-" * \"%s\": use this option to cancel your changes.\n"
-"\n"
-" * \"%s\": allows additional actions on partitions (type, options, format)\n"
-"and gives more information about the hard drive.\n"
-"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"When defining the size of a partition, you can finely set the partition\n"
-"size by using the Arrow keys of your keyboard.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and the [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
-"\n"
-" * Ctrl-d to delete a partition\n"
-"\n"
-" * Ctrl-m to set the mount point\n"
-"\n"
-"To get information about the different file system types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Ara és quan heu de decidir quina(es) partició(ns) voleu utilitzar per\n"
-"instal·lar el sistema Mandriva Linux. Si ja s'han definit les particions\n"
-"en una instal·lació anterior de GNU/Linux o mitjançant una altra eina de\n"
-"particionament, podeu utilitzar les particions existents. En cas contrari,\n"
-"s'han de definir particions al disc dur.\n"
-"\n"
-"Per crear particions, primer heu de seleccionar un disc dur. Podeu\n"
-"seleccionar el disc que s'ha de particionar fent clic a ``hda'' per a la\n"
-"primera unitat IDE, ``hdb'' per a la segona, ``sda'' per a la primera "
-"unitat\n"
-"SCSI, etc.\n"
-"\n"
-"Per particionar el disc dur seleccionat, podeu utilitzar aquestes opcions:\n"
-"\n"
-" * \"%s\": aquesta opció suprimeix totes les particions que hi ha al\n"
-"disc dur seleccionat.\n"
-"\n"
-" * \"%s\": aquesta opció us permet crear automàticament les particions\n"
-"ext3 i d'intercanvi en l'espai lliure del disc dur.\n"
-"\n"
-"\"%s\": dóna accés a funcions addicionals:\n"
-"\n"
-" * \"%s\": desa la taula de particions en un disquet. És útil per a una\n"
-"recuperació posterior de la taula de particions si fos necessari. És molt\n"
-"recomanable que efectueu aquesta operació.\n"
-"\n"
-" * \"%s\": permet restaurar d'un disquet una taula de particions que hi\n"
-"hagueu desat prèviament.\n"
-"\n"
-" * \"%s\": si la taula de particions està malmesa, podeu provar de\n"
-"recuperar-la utilitzant aquesta opció. Aneu amb compte i recordeu que no\n"
-"sempre funciona.\n"
-"\n"
-" * \"%s\": descarta tots els canvis fets i torna a carregar la taula\n"
-"de particions original.\n"
-"\n"
-" * \"%s\": si desseleccioneu aquesta opció fareu que els usuaris hagin\n"
-"de muntar i desmuntar manualment les unitats de suports extraïbles, com ara\n"
-"els disquets i els CD-ROM.\n"
-"\n"
-" * \"%s\": utilitzeu aquesta opció si voleu utilitzar un auxiliar per\n"
-"particionar el vostre disc dur. Es recomana que l'utilitzeu si no teniu\n"
-"sòlids coneixements sobre particionament.\n"
-"\n"
-" * \"%s\": utilitzeu aquesta opció per cancel·lar els canvis.\n"
-"\n"
-" * \"%s\": permet accions addicionals en les particions (tipus,\n"
-"opcions, format) i dóna més informació sobre el disc dur.\n"
-"\n"
-" * \"%s\": quan hagueu acabat de particionar el disc dur, aquesta opció\n"
-"desarà els canvis al disc.\n"
-"\n"
-"En definir la mida d'una partició, podeu acabar d'afinar-la mitjançant\n"
-"les tecles de fletxa del teclat.\n"
-" \n"
-"Nota: podeu accedir a qualsevol opció mitjançant el teclat. Moveu-vos per\n"
-"les particions amb les tecles Tab i Fletxa amunt/Fletxa avall.\n"
-"\n"
-"Quan seleccioneu una partició, podeu utilitzar:\n"
-"\n"
-" * Ctrl+c per crear una nova partició (quan se n'ha seleccionat una de "
-"buida)\n"
-"\n"
-" * Ctrl+d per suprimir una partició\n"
-"\n"
-" * Ctrl+m per definir el punt de muntatge\n"
-"\n"
-"Per a més informació sobre els diferents sistemes de fitxers disponibles,\n"
-"llegiu el capítol sobre ext2FS del ``Manual de Referència''.\n"
-"\n"
-"Si esteu fent la instal·lació en un ordinador PPC, voldreu crear una\n"
-"petita partició ``bootstrap'' HFS d'un mínim d'1 MB per a ús del carregador\n"
-"d'arrencada yaboot. Si decidiu fer-la una mica més gran, per exemple de\n"
-"50 MB, us serà d'utilitat per emmagatzemar un nucli de recanvi i imatges\n"
-"del disc RAM per a situacions d'emergència durant l'arrencada."
-
-#
-#: help.pm:531
-#, c-format
-msgid "Removable media auto-mounting"
-msgstr "Muntatge automàtic dels dispositius extraïbles"
-
-#: help.pm:531
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Commuta entre els modes normal i expert"
-
-#: help.pm:534
-#, c-format
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandriva Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"S'ha detectat més d'una partició de Microsoft a la unitat de disc.\n"
-"Si us plau, trieu quina d'elles voleu redimensionar per instal·lar el nou\n"
-"sistema operatiu Mandriva Linux.\n"
-"\n"
-"Cada partició està identificada d'aquesta manera: \"Nom Linux\",\n"
-"\"Nom Windows\" \"Capacitat\".\n"
-"\n"
-"\"Nom Linux\" es compon de: \"tipus d'unitat de disc dur\",\n"
-"\"número d'unitat de disc dur\", \"número de la partició\"\n"
-"(per exemple, \"hda1\").\n"
-"\n"
-"\"Tipus d'unitat de disc dur\" és \"hd\" si la vostre unitat de disc dur és\n"
-"IDE i \"sd\" si és SCSI.\n"
-"\n"
-"\"Número de la unitat de disc dur\" és sempre una lletra després d'\"hd\" o\n"
-"\"sd\". Amb unitats de disc IDE:\n"
-"\n"
-" * \"a\" significa \"unitat de disc mestra en el controlador IDE primari\",\n"
-"\n"
-" * \"b\" significa \"unitat de disc esclava en el controlador IDE primari"
-"\",\n"
-"\n"
-" * \"c\" significa \"unitat de disc mestra en el controlador IDE secundari"
-"\",\n"
-"\n"
-" * \"d\" significa \"unitat de disc esclava en el controlador IDE secundari"
-"\".\n"
-"\n"
-"Amb les unitats de disc SCSI, una \"a\" significa \"ID SCSI més baixa\",\n"
-"una \"b\" significa \"segona ID SCSI més baixa\", etc.\n"
-"\n"
-"\"Nom Windows\" és la lletra de la vostra unitat de disc sota Windows (el\n"
-"primer disc o partició s'anomena \"C:\")."
-
-#: help.pm:565
-#, c-format
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country is not in "
-"the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-"\"%s\": comproveu que la selecció del país és correcta. Si no sou a\n"
-"aquest país, feu clic al botó \"%s\" i seleccioneu-ne un altre.\n"
-"Si el vostre país no és a la primera llista, feu clic al botó \"%s\" per\n"
-"obtenir una llista de països completa."
-
-#: help.pm:570
-#, c-format
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandriva Linux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandriva Linux system. Your current "
-"partitioning\n"
-"scheme and user data will not be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandriva Linux version \"8.1\" is not recommended."
-msgstr ""
-"Aquest pas només s'activa si s'ha trobat una partició GNU/Linux antiga\n"
-"al vostre ordinador.\n"
-"\n"
-"DrakX necessita saber si voleu realitzar una instal·lació nova o\n"
-"una actualització d'un sistema Mandriva Linux existent:\n"
-"\n"
-" * \"%s\": aquesta opció destrueix gairebé del tot el sistema antic. Si\n"
-"voleu canviar les particions dels discs durs, o el sistema de fitxers,\n"
-"heu d'utilitzar aquesta opció. No obstant això, i depenent de l'esquema de\n"
-"particionament que tingueu, podeu evitar que part de les dades existents\n"
-"(per exemple els directoris \"home\") se sobreescriguin.\n"
-"\n"
-" * \"%s\": aquest tipus d'instal·lació us permet actualitzar els paquets\n"
-"que ja estan instal·lats al sistema Mandriva Linux. L'esquema de\n"
-"particionament actual i les dades d'usuari no queden afectades. La\n"
-"majoria de les altres fases de configuració queden disponibles, de\n"
-"manera similar a una instal·lació estàndard.\n"
-"\n"
-"L'opció “Actualitza” ha de funcionar correctament en sistemes Mandriva\n"
-"Linux amb la versió \"8.1\" o posteriors. No es recomana realitzar una\n"
-"actualització en versions de Mandriva Linux anteriors a la \"8.1\"."
-
-#: help.pm:592
-#, fuzzy, c-format
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
-"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard do not match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
-"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
-"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-"DrakX seleccionarà automàticament la configuració de teclat correcta\n"
-"segons l'idioma que hagueu escollit a Secció. Comproveu que la selecció\n"
-"us vagi bé o escolliu una altra configuració de teclat.\n"
-"\n"
-"Tanmateix, pot ser que tingueu un teclat que no correspongués exactament al\n"
-"vostre idioma: per exemple, si sou un suís que parla anglès, potser teniu "
-"un\n"
-"teclat suís. O, si parleu anglès però viviu al Quebec, us podeu trobar en "
-"la\n"
-"mateixa situació i el vostre teclat no coincidirà amb el vostre idioma. En\n"
-"tots dos casos, aquesta fase de la instal·lació us permetrà triar un teclat\n"
-"adequat d'una llista.\n"
-"\n"
-"Feu clic al botó \"%s\" per veure la llista completa de teclats "
-"disponibles.\n"
-"\n"
-"Si trieu una disposició de teclat basada en un alfabet no llatí, el diàleg\n"
-"següent us permetrà escollir la tecla que servirà per canviar entre les\n"
-"configuracions llatina i no llatina."
-
-#: help.pm:610
-#, fuzzy, c-format
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandriva Linux's use of UTF-8 "
-"will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-"L'idioma preferit que trieu afectarà a l'idioma de la documentació,\n"
-"l'instal·lador i a tot el sistema en general. Seleccioneu primer la\n"
-"regió on us trobeu i després l'idioma que parleu.\n"
-"\n"
-"Si feu clic al botó \"%s\" podreu seleccionar altres idiomes que vulgueu\n"
-"instal·lar a la vostra estació de treball. S'instal·laran els fitxers\n"
-"d'idioma específics de la documentació i de les aplicacions. Per exemple,\n"
-"si heu de tenir usuaris espanyols a l'ordinador, podeu triar l'anglès com a\n"
-"idioma per defecte a la vista d'arbre i marcar \"%s\" a la secció Avançat.\n"
-"\n"
-"En quant al suport UTF-8 (unicode): Unicode és una nova codificació de\n"
-"caràcters que cobreix tots els idiomes existents. El suport complet a\n"
-"GNU/Linux encara està sota desenvolupament. Per aquesta raó, Mandriva Linux\n"
-"l'usarà o no depenent de les opcions que esculli l'usuari:\n"
-"\n"
-" * Si escolliu un idioma amb una codificació existent forta(idiomes\n"
-"llatins, rus, japonès, xinès, coreà, thai, grec, turc, la majoria dels\n"
-"idiomes iso-8859-2), la codificació existent s'usarà per defecte;\n"
-"\n"
-" * La resta d'idiomes usaran unicode per defecte;\n"
-"\n"
-" * Si s'instal·len dos o més idiomes i aquests idiomes no usen la mateixa\n"
-"codificació, llavors s'usarà unicode per tot el sistema;\n"
-"\n"
-" * Finalment, es pot forçar l'ús de unicode si s'escull la opció\"%s\"\n"
-"independentment dels idiomes escollits.\n"
-"\n"
-"Noteu que no esteu limitats a escollir només un idioma addicional. Podeu\n"
-"triar diversos idiomes addicionals, i fins i tot instal·lar-los tots\n"
-"activant la casella \"%s\". Si habiliteu un idioma esteu instal·lant les\n"
-"traduccions, els tipus de lletra, els verificadors ortogràfics, etc. "
-"d'aquest idioma.\n"
-"\n"
-"Per passar d'un dels idiomes a un altre, podeu executar com a \"root\"\n"
-"l'ordre \"/usr/sbin/localedrake\" per canviar l'idioma de tot el sistema. "
-"Si\n"
-"l'executeu com a usuari normal, només es canviarà l'idioma d'aquest\n"
-"usuari concret."
-
-#: help.pm:648
-#, c-format
-msgid "Espanol"
-msgstr "Espanyol"
-
-#: help.pm:651
-#, fuzzy, c-format
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
-"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-"DrakX generalment detecta el nombre de botons que té el vostre ratolí.\n"
-"Si no pot, assumeix que teniu un ratolí de dos botons i el configurarà per\n"
-"emular el tercer botó. Es pot ``prémer' ' el tercer botó d'un ratolí de dos\n"
-"botons fent clic simultàniament als botons dret i esquerre. DrakX\n"
-"detectarà automàticament si el ratolí utilitza la interfície PS/2, sèrie o "
-"USB.\n"
-"\n"
-"En cas que tingueu un ratolí de 3 botons sense rodeta, podeu escollir\n"
-"\"%s\". DrakX configurarà el ratolí per tal de simular la rodeta,\n"
-"per fer-ho premeu el botó central i moveu el ratolí a dalt i a baix.\n"
-"\n"
-"Si per alguna raó voleu especificar un altre tipus de ratolí,\n"
-"seleccioneu-lo a la llista.\n"
-"\n"
-"Si escolliu un ratolí diferent del ratolí per defecte, es mostrarà una\n"
-"pantalla de prova. Utilitzeu els botons i la roda per verificar que la\n"
-"configuració és correcta i que el ratolí funciona bé. Si el ratolí no\n"
-"funciona bé, premeu la barra d'espai o la tecla [Intro] per cancel·lar la\n"
-"prova i tornar a la llista.\n"
-"\n"
-"De vegaDES, la roda del ratolí no es detecta automàticament. En aquest cas,\n"
-"haureu de seleccionar-lo a la llista. Assegureu-vos de triar el que\n"
-"correspon al port a què esta connectat el ratolí. Després de seleccionar un\n"
-"ratolí i prémer el botó \"%s\", a la pantalla apareixerà un ratolí. Mogueu "
-"la\n"
-"roda del ratolí per assegurar-vos que s'ha activat correctament, comprovant\n"
-"que es mou també a la pantalla; després comproveu els botons i que el "
-"cursor\n"
-"de la pantalla es mou quan moveu el ratolí."
-
-#: help.pm:682
-#, c-format
-msgid "with Wheel emulation"
-msgstr "amb emulació de rodeta"
-
-#: help.pm:682
-#, c-format
-msgid "Universal | Any PS/2 & USB mice"
-msgstr "Universal | Qualsevol ratolí PS/2 o USB"
-
-#: help.pm:685
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Si us plau, seleccioneu el port correcte. Per exemple, el port \"COM1\" a\n"
-"Windows s'anomena \"ttyS0\" a GNU/Linux."
-
-#: help.pm:689
-#, fuzzy, c-format
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: do not make the password too long or too complicated because "
-"you\n"
-"must be able to remember it!\n"
-"\n"
-"The password will not be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you do not know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-"Aquesta és la decisió més important quant a la seguretat del vostre sistema\n"
-"GNU/Linux: heu d'introduir la contrasenya de l'usuari \"root\". El \"root\"\n"
-"és l'administrador del sistema i és l'únic autoritzat a fer "
-"actualitzacions,\n"
-"afegir usuaris, canviar la configuració del tot el sistema, etc. En poques\n"
-"paraules, el \"root\" ho pot fer tot! És per això que heu d'escollir una\n"
-"contrasenya que sigui difícil d'endevinar; DrakX us avisarà si és massa\n"
-"fàcil. Com veieu, podeu optar per no introduir cap contrasenya, però us\n"
-"aconsellem vivament que no ho feu. GNU/Linux és tan vulnerable als errors\n"
-"de l'operador com qualsevol altre sistema operatiu. Com que l'usuari\n"
-"\"root\" pot superar totes les limitacions i esborrar accidentalment totes\n"
-"les dades de qualsevol partició com a conseqüència d'accedir-hi sense\n"
-"precaucions, és molt important que sigui difícil esdevenir \"root\".\n"
-"\n"
-"La contrasenya ha de ser una mescla de caràcters alfanumèrics i, com a\n"
-"mínim, de 8 caràcters de longitud. No apunteu enlloc la contrasenya de\n"
-"\"root\" ja que és molt fàcil comprometre el sistema si ho feu.\n"
-"\n"
-"Tot i això, no feu la contrasenya massa llarga o complicada perquè heu de\n"
-"poder recordar-la!\n"
-"\n"
-"La contrasenya no es mostrarà per pantalla quan la teclegeu. Per tant,\n"
-"haureu d'escriure-la dues vegades per reduir la probabilitat d'errors en\n"
-"l'escriptura. Si, malauradament, feu el mateix error dues vegaDES, haureu\n"
-"d'usar aquesta contrasenya ``incorrecta'' el primer cop que us connecteu.\n"
-"\n"
-"Si voleu que aquest ordinador sigui controlat per un servidor\n"
-"d'autenticació, feu clic al botó \"%s\".\n"
-"\n"
-"Si la vostra xarxa usa els serveis d'autenticació LDAP, NIS o Windows\n"
-"Domain, seleccioneu l'adient per a \"%s\" . Si no sabeu quin utilitzar,\n"
-"pregunteu-ho al vostre administrador de xarxa.\n"
-"\n"
-"Si teniu problemes per recordar les contrasenyes, si l'ordinador mai no es\n"
-"connectarà a Internet o si confieu absolutament en tothom que utilitza\n"
-"l'ordinador, podeu triar tenir \"%s\"."
-
-#: help.pm:723
-#, c-format
-msgid "authentication"
-msgstr "autenticació"
-
-#: help.pm:726
-#, fuzzy, c-format
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can not determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" will not install any boot loader. Use this option only if "
-"you\n"
-"know what you're doing."
-msgstr ""
-"LILO i GRUB són carregadors d'arrencada de GNU/Linux. Normalment,\n"
-"aquesta fase es realitza de manera totalment automàtica. DrakX analitzarà\n"
-"el sector d'arrencada del disc i actuarà conforme al que hi trobi:\n"
-"\n"
-" * si troba un sector d'arrencada del Windows, el reemplaçarà amb un sector\n"
-"d'arrencada de GRUB/LILO. D'aquesta manera podreu carregar GNU/Linux\n"
-"o un altre SO.\n"
-"\n"
-" * si troba un sector d'arrencada grub o LILO, el reemplaçarà amb un nou.\n"
-"\n"
-"Si no pot prendre una decisió, DrakX us preguntarà on ha de col·locar el\n"
-"carregador d'arrencada. Normalment, \"%s\" és el lloc més segur. Si "
-"escolliu\n"
-"\"%s\" no s'instal·larà cap carregador d'arrencada. Utilitzeu-lo només si\n"
-"sabeu que esteu fent."
-
-#: help.pm:743
-#, fuzzy, c-format
-msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you do not like your printing\n"
-"system you may change it by running PrinterDrake from the Mandriva Linux\n"
-"Control Center and clicking on the \"%s\" button."
-msgstr ""
-"Ara cal seleccionar el sistema d'impressió del vostre ordinador. Altres\n"
-"sistemes operatius us poden oferir un, però el Mandriva Linux n'ofereix\n"
-"dos. Cada sistema d'impressió és el més convenient per a un tipus de\n"
-"configuració determinat.\n"
-"\n"
-" * \"%s\", acrònim de \"print, do not queue\" (imprimeix, no facis cua), és\n"
-"la millor opció si teniu una connexió directa amb la impressora i voleu\n"
-"evitar els embussos a l'hora d'imprimir, i no teniu impressores de xarxa.\n"
-"(\"%s\" només gestionarà xarxes molt senzilles i és una mica lenta quan\n"
-"s'usa en xarxa.) Escolliu \"pdq\" si és la vostra primera incursió\n"
-"en GNU/Linux.\n"
-"\n"
-" * \"%s\" `` Common Unix Printing System'', Sistema d'impressió comú de\n"
-"Unix, és una elecció excel·lent tant si voleu imprimir a la vostra\n"
-"impressora local com a l'altra punta del món. És senzilla de configurar i\n"
-"pot actuar com a servidor o client per a l'antic sistema d'impressió \"lpd"
-"\"\n"
-"i, per tant, és compatible amb sistemes operatius antics que encara\n"
-"necessitin serveis d'impressió. És força potent, però la configuració "
-"bàsica\n"
-"és gairebé tan senzilla com la de \"pdq\". Si necessiteu emular un servidor\n"
-"\"lpd\", heu d'habilitar el dimoni \"cups-lpd\". \"%s\" inclou frontals\n"
-"gràfics per a la impressió o per escollir les opcions d'impressió\n"
-"i per gestionar la impressora.\n"
-"\n"
-"Si ara feu una tria, i després veieu que el sistema d'impressió no us\n"
-"agrada, podeu canviar-lo executant el PrinterDrake des del Centre de "
-"control\n"
-"de Mandriva Linux i fent clic al botó Expert."
-
-#: help.pm:766
-#, c-format
-msgid "pdq"
-msgstr "pdq"
-
-#: help.pm:766 printer/cups.pm:117 printer/data.pm:129
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
-
-#: help.pm:766
-#, c-format
-msgid "Expert"
-msgstr "Expert"
-
-#: help.pm:769
-#, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"Primer, DrakX detectarà qualsevol dispositiu IDE en l'ordinador. També\n"
-"cercarà una o més targetes SCSI PCI. Si troba una targeta SCSI, DrakX\n"
-"instal·larà automàticament el controlador adequat.\n"
-"\n"
-"Com que la detecció de maquinari no és infal·lible, pot ser que DrakX no "
-"trobi\n"
-"els discos durs; si és així, caldrà que indiqueu el vostre maquinari "
-"manualment.\n"
-"\n"
-"Si heu de seleccionar l'adaptador SCSI PCI manualment, DrakX us preguntarà "
-"si\n"
-"voleu configurar-ne les opcions. Convé que deixeu que DrakX comprovi\n"
-"el maquinari per saber les opcions específiques de la targeta que calen per "
-"inicialitzar\n"
-"l'adaptador. La majoria de vegaDES, DrakX realitzarà aquest pas sense "
-"problemes.\n"
-"\n"
-"Si DrakX no pot comprovar les opcions per determinar automàticament els "
-"paràmetres\n"
-"que s'han de passar al maquinari, us caldrà configurar el controlador "
-"manualment."
-
-#: help.pm:787
-#, fuzzy, c-format
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-"\"%s\": si es detecta una targeta de so al vostre sistema, es mostra aquí.\n"
-"Si veieu que la targeta de so que es mostra no és la que realment teniu al\n"
-"sistema, podeu fer clic al botó i seleccionar un altre programa de control."
-
-#: help.pm:789 help.pm:856 install_steps_interactive.pm:991
-#: install_steps_interactive.pm:1008
-#, c-format
-msgid "Sound card"
-msgstr "Targeta de so"
-
-#: help.pm:792
-#, fuzzy, c-format
-msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"is not in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it is not\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandriva Linux Control Center after the installation has finished to "
-"benefit\n"
-"from full in-line help.\n"
-"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandriva Linux Control Center.\n"
-"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-"Com a revisió, DrakX presentarà un resum de la informació que\n"
-"té sobre el vostre sistema. Segons el maquinari instal·lat, podeu\n"
-"tenir algunes o totes les entrades següents. Cada entrada consta\n"
-"de l'element de configuració que cal configurar, seguit d'un breu\n"
-"resum de la configuració actual.\n"
-"Feu clic al botó \"%s\" corresponent per canviar-ho.\n"
-"\n"
-" * \"%s\": comproveu la configuració actual del mapa de teclat i\n"
-"canvieu-la si és necessari.\n"
-"\n"
-" * \"%s\": comproveu la selecció actual de país. Si no sou a aquest\n"
-"país, feu clic al botó \"%s\" i escolliu-ne un altre. Si el vostre\n"
-"país no és a la primera llista que es mostra, feu clic al botó \"%s\"\n"
-"per obtenir una llista de països completa.\n"
-"\n"
-" * \"%s\": per defecte, DrakX dedueix la vostra zona horària en\n"
-"funció del país que hagueu escollit. Aquí podeu fer clic al botó \"%s\"\n"
-"si no fos correcta.\n"
-"\n"
-" * \"%s\": comproveu la configuració actual del ratolí i feu clic al\n"
-"botó per canviar-la si fos necessari.\n"
-"\n"
-" * \"%s\": feu clic al botó \"%s\" per obrir l'auxiliar de configuració\n"
-"de la impressora. Consulteu el capítol corresponent de la ``Guia d'\n"
-"iniciació'' per tenir més informació sobre la configuració d'una nova\n"
-"impressora. Aquesta interfície és similar a la utilitzada durant la\n"
-"instal·lació.\n"
-"\n"
-" * \"%s\": si es detecta una targeta de so al vostre sistema, es\n"
-"mostra aquí. Si veieu que que no és la que realment teniu al sistema,\n"
-"podeu fer clic al botó per triar un altre controlador.\n"
-"\n"
-" * \"%s\": per defecte, DrakX configura la vostra interfície\n"
-"gràfica a una resolució de \"800x600\" or \"1024x768\". Si no us\n"
-"va bé, feu clic a \"%s\" per reconfigurar la interfície gràfica.\n"
-"\n"
-" * \"%s\": si es detecta una targeta de TV al sistema, es mostra\n"
-"aquí. Si en teniu una però no és detectada, feu clic a \"%s\" per\n"
-"intentar configurar-la manualment.\n"
-"\n"
-" * \"%s\": si es detecta una targeta XDSI al sistema, es mostra\n"
-"aquí. Podeu fer clic a \"%s\" per canviar els paràmetres associats\n"
-"amb la targeta.\n"
-"\n"
-" * \"%s\": si voleu configurar ara l'accés a Internet o a la xarxa local.\n"
-"\n"
-" * \"%s\": aquesta entrada un permet redefinir el nivell de seguretat\n"
-"definit en un pas anterior ().\n"
-"\n"
-" * \"%s\": si teniu previst connectar-vos a Internet, és bona idea\n"
-"protegir-vos d'intrusions instal·lant un tallafocs. Consulteu-ne\n"
-"els detalls a la secció corresponent de la ``Guia d'iniciació''.\n"
-"\n"
-" * \"%s\": si voleu canviar la configuració del carregador d'arrencada,\n"
-"feu clic a aquest botó. Es recomana que això només ho facin els usuaris\n"
-"avançats.\n"
-"\n"
-" * \"%s\": aquí podreu acabar d'ajustar els serveis que s'executaran\n"
-"en el vostre ordinador. Si teniu previst utilitzar aquesta màquina com\n"
-"a servidor, és aconsellable que reviseu aquesta configuració."
-
-#: help.pm:856 install_steps_interactive.pm:855
-#: install_steps_interactive.pm:950 standalone/drakclock:100
-#: standalone/finish-install:56 standalone/finish-install:57
-#, c-format
-msgid "Timezone"
-msgstr "Fus horari"
-
-#: help.pm:856 install_steps_interactive.pm:1024
-#, c-format
-msgid "TV card"
-msgstr "Targeta de TV"
-
-#: help.pm:856
-#, c-format
-msgid "ISDN card"
-msgstr "Targeta XDSI"
-
-#: help.pm:856
-#, c-format
-msgid "Graphical Interface"
-msgstr "Interfície gràfica"
-
-#
-#: help.pm:856 install_any.pm:1733 install_steps_interactive.pm:1042
-#: standalone/drakbackup:2051
-#, c-format
-msgid "Network"
-msgstr "Xarxa"
-
-#: help.pm:856 install_steps_interactive.pm:1054
-#, c-format
-msgid "Proxies"
-msgstr "Intermediaris"
-
-#
-#: help.pm:856 install_steps_interactive.pm:1065
-#, c-format
-msgid "Security Level"
-msgstr "Nivell de seguretat:"
-
-#: help.pm:856 install_steps_interactive.pm:1079 network/drakfirewall.pm:189
-#, c-format
-msgid "Firewall"
-msgstr "Tallafoc"
-
-#: help.pm:856 install_steps_interactive.pm:1095
-#, c-format
-msgid "Bootloader"
-msgstr "Carregador d'arrencada"
-
-#
-#: help.pm:856 install_steps_interactive.pm:1108 services.pm:114
-#: services.pm:157 services.pm:193
-#, c-format
-msgid "Services"
-msgstr "Serveis"
-
-#: help.pm:859
-#, c-format
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Escolliu el disc dur que voleu buidar per instal·lar la nova partició\n"
-"Mandriva Linux. Aneu amb compte, totes les dades actuals es perdran i no\n"
-"es podran recuperar!"
-
-#: help.pm:864
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-"Feu clic a \"%s\" si voleu suprimir totes les dades i particions\n"
-"que hi ha en aquest disc dur. Aneu amb compte perquè, un cop\n"
-"hagueu fet clic a \"%s\", no podreu recuperar cap dada ni partició\n"
-"del disc, incloent les dades del Windows.\n"
-"\n"
-"Feu clic a \"%s\" per aturar aquesta operació sense perdre cap dada\n"
-"ni partició d'aquest disc."
-
-#: help.pm:870
-#, c-format
-msgid "Next ->"
-msgstr "Següent ->"
-
-#: help.pm:870
-#, c-format
-msgid "<- Previous"
-msgstr "<- Anterior"
-
-#: install2.pm:115
-#, c-format
-msgid ""
-"Can not access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"No es pot accedir als mòduls del nucli corresponents al vostre nucli (no "
-"s'ha trobat el fitxer %s). Això generalment vol dir que el vostre disquet "
-"d'arrencada no està sincronitzat amb el suport d'instal·lació (si us plau, "
-"creeu un nou disquet d'arrencada)"
-
-#: install2.pm:167
-#, c-format
-msgid "You must also format %s"
-msgstr "També heu de formatar %s"
-
-#: install_any.pm:406
-#, c-format
-msgid "Do you have further supplementary media?"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:409
-#, c-format
-msgid ""
-"The following media have been found and will be used during install: %s.\n"
-"\n"
-"\n"
-"Do you have a supplementary installation medium to configure?"
-msgstr ""
-
-#: install_any.pm:422 printer/printerdrake.pm:3211
-#: printer/printerdrake.pm:3218 standalone/scannerdrake:182
-#: standalone/scannerdrake:190 standalone/scannerdrake:241
-#: standalone/scannerdrake:248
-#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#
-#: install_any.pm:422
-#, c-format
-msgid "Network (HTTP)"
-msgstr "Xarxa (HTTP)"
-
-#
-#: install_any.pm:422
-#, c-format
-msgid "Network (FTP)"
-msgstr "Xarxa (FTP)"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (NFS)"
-msgstr "Xarxa (NFS)"
-
-#: install_any.pm:452
-#, c-format
-msgid "Insert the CD 1 again"
-msgstr "Inseriu el CD 1 un altre cop"
-
-#
-#: install_any.pm:478 network/netconnect.pm:866 standalone/drakbackup:114
-#, c-format
-msgid "No device found"
-msgstr "No s'ha trobat cap dispositiu"
-
-#: install_any.pm:483
-#, c-format
-msgid "Insert the CD"
-msgstr "Inseriu el CD"
-
-#: install_any.pm:488
-#, c-format
-msgid "Unable to mount CD-ROM"
-msgstr "No s'ha pogut muntar el CD-ROM"
-
-#: install_any.pm:521 install_any.pm:542
-#, c-format
-msgid "URL of the mirror?"
-msgstr "URL de la rèplica?"
-
-#: install_any.pm:526
-#, c-format
-msgid "NFS setup"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "Please enter the hostname and directory of your NFS media"
-msgstr ""
-
-#: install_any.pm:527
-#, c-format
-msgid "Hostname of the NFS mount ?"
-msgstr ""
-
-#: install_any.pm:527 standalone/draknfs:288
-#, c-format
-msgid "Directory"
-msgstr "Directori"
-
-#: install_any.pm:580
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
-msgid ""
-"Can't find a package list file on this mirror. Make sure the location is "
-"correct."
-msgstr "No s'ha pogut trobat el fitxer hdlist en aquest rèplica"
-
-#: install_any.pm:657
-#, c-format
-msgid "Removing packages prior to upgrade..."
-msgstr ""
-
-#: install_any.pm:699
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "S'estan cercant els paquets ja instal·lats..."
-
-#: install_any.pm:703
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "S'estan cercant els paquets a actualitzar"
-
-#: install_any.pm:781
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done."
-msgstr ""
-"Canvieu el Cd-Rom!\n"
-"Si us plau, inseriu el CD-ROM etiquetat com \"%s\" a la unitat i després\n"
-"premeu D'acord."
-
-#: install_any.pm:793
-#, c-format
-msgid "Copying in progress"
-msgstr "Còpia en procés"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:935
-#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They do not have any known security\n"
-"issues, but some new ones could be found. In that case, you must make sure\n"
-"to upgrade as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"Heu seleccionat el(s) servidor(s) següent(s): %s\n"
-"\n"
-"\n"
-"Aquests servidors estan activats per defecte. No tenen cap problema de "
-"seguretat\n"
-"conegut, però se'n podrien trobar de nous. Si fos així, caldrà que els "
-"actualitzeu\n"
-"tan aviat com sigui possible.\n"
-"\n"
-"\n"
-"Voleu realment instal·lar aquests servidors?\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:958
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-"Se suprimiran els següents paquets per poder actualitzar el sistema: %s\n"
-"\n"
-"\n"
-"Voleu realment suprimir aquests paquets?\n"
-
-#: install_any.pm:1394 partition_table.pm:597
-#, c-format
-msgid "Error reading file %s"
-msgstr "S'ha produït un error en llegir el fitxer %s"
-
-#: install_any.pm:1628
-#, c-format
-msgid "The following disk(s) were renamed:"
-msgstr ""
-
-#: install_any.pm:1630
-#, c-format
-msgid "%s (previously named as %s)"
-msgstr ""
-
-#: install_any.pm:1670
-#, 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 ""
-"S'ha produït un error: no s'han trobat dispositius vàlids on crear nous "
-"sistemes de fitxers. Si us plau, comproveu el vostre maquinari per trobar el "
-"problema"
-
-#: install_any.pm:1714
-#, c-format
-msgid "HTTP"
-msgstr "HTTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "FTP"
-msgstr "FTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "NFS"
-msgstr "NFS"
-
-#: install_any.pm:1737
-#, fuzzy, c-format
-msgid "Please choose a media"
-msgstr "Si us plau escolliu"
-
-#: install_any.pm:1753
-#, c-format
-msgid "File already exists. Overwrite it?"
-msgstr "El fitxer ja existeix. El voleu sobreescriure?"
-
-#: install_any.pm:1757
-#, c-format
-msgid "Permission denied"
-msgstr "S'ha denegat el permís"
-
-#: install_any.pm:1806
-#, c-format
-msgid "Bad NFS name"
-msgstr "Nom NFS incorrecte"
-
-#: install_any.pm:1827
-#, fuzzy, c-format
-msgid "Bad media %s"
-msgstr "s'ha afegit la font %s"
-
-#
-#: install_any.pm:1877
-#, c-format
-msgid "Can not make screenshots before partitioning"
-msgstr "No es poden fer captures de pantalla abans de fer les particions"
-
-#: install_any.pm:1884
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Les captures estaran disponibles després d'instal·lar a %s"
-
-#: install_gtk.pm:136
-#, c-format
-msgid "System installation"
-msgstr "Instal·lació del sistema"
-
-#
-#: install_gtk.pm:139
-#, c-format
-msgid "System configuration"
-msgstr "Configuració del sistema"
-
-#: install_interactive.pm:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Part del maquinari del vostre ordinador necessita controladors\n"
-"\"registrats\" per poder funcionar. Podeu trobar-ne informació a: %s"
-
-#: install_interactive.pm:63
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Heu de tenir una partició arrel.\n"
-"Per fer-ho, creeu una partició (o feu clic a una d'existent).\n"
-"Després, trieu l'acció \"Punt de muntatge\" i doneu-li el valor '/'"
-
-#: install_interactive.pm:68
-#, c-format
-msgid ""
-"You do not have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"No teniu cap partició d'intercanvi.\n"
-"\n"
-"Voleu continuar igualment?"
-
-#
-#: install_interactive.pm:71 install_steps.pm:215
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Heu de tenir una partició FAT muntada en /boot/efi"
-
-#: install_interactive.pm:98
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "No hi ha prou espai lliure per assignar noves particions"
-
-#: install_interactive.pm:106
-#, c-format
-msgid "Use existing partitions"
-msgstr "Utilitza les particions existents"
-
-#: install_interactive.pm:108
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "No hi ha cap partició que es pugui utilitzar"
-
-#: install_interactive.pm:115
-#, c-format
-msgid "Use the Microsoft Windows® partition for loopback"
-msgstr "Utilitza la partició Microsoft Windows® per al loopback"
-
-#: install_interactive.pm:118
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Quina partició voleu utilitzar per al Linux4Win?"
-
-#: install_interactive.pm:120
-#, c-format
-msgid "Choose the sizes"
-msgstr "Escolliu les mides"
-
-#: install_interactive.pm:121
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Mida de la partició arrel en MB: "
-
-#: install_interactive.pm:122
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Mida de la partició d'intercanvi en MB: "
-
-#: install_interactive.pm:131
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"No hi ha cap partició FAT per utilitzar com a loopback (o no queda prou "
-"espai)"
-
-#: install_interactive.pm:140
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "A quina partició voleu canviar-li la mida?"
-
-#: install_interactive.pm:154
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occurred: %s"
-msgstr ""
-"El redimensionador de la FAT no pot gestionar la vostra partició. \n"
-"S'ha produït l'error següent: %s"
-
-#: install_interactive.pm:157
-#, c-format
-msgid "Computing the size of the Microsoft Windows® partition"
-msgstr "S'està calculant la mida de la partició de Microsoft Windows®"
-
-#: install_interactive.pm:164
-#, c-format
-msgid ""
-"Your Microsoft Windows® partition is too fragmented. Please reboot your "
-"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
-"the Mandriva Linux installation."
-msgstr ""
-"La partició de Microsoft Windows® està massa fragmentada. Si us plau, "
-"reinicieu l'ordinador sota Microsoft Windows® i executeu l'eina \"defrag\". "
-"Llavors, torneu a començar la instal·lació del Mandriva Linux."
-
-#
-#: install_interactive.pm:167
-#, 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 ""
-"ATENCIÓ!\n"
-"\n"
-"\n"
-"Tot seguit, DrakX canviarà la mida de la vostra partició de Windows.\n"
-"\n"
-"\n"
-"Aneu amb compte: aquesta operació és perillosa. Si encara no ho heu fet, "
-"sortiu de la instal·lació, executeu \"chkdsk c:\" a la línia de comandes "
-"sota Windows (atenció el programa gràfic \"scandisk\" no és suficient, "
-"assegura't d'usar \"chkdsk\" en una línia de comandes), opcionalment "
-"executeu defrag, despréstorneu a començar la instal·lació. També haurieu de "
-"fer una còpia de seguretat de les vostres dades.\n"
-"\n"
-"\n"
-"Quan estigueu segur, premeu %s."
-
-#: install_interactive.pm:179
-#, c-format
-msgid "Which size do you want to keep for Microsoft Windows® on"
-msgstr "Quina mida voleu deixar per a la partició de Microsoft Windows®?"
-
-#: install_interactive.pm:180
-#, c-format
-msgid "partition %s"
-msgstr "partició %s"
-
-#: install_interactive.pm:189
-#, c-format
-msgid "Resizing Microsoft Windows® partition"
-msgstr "S'està redimensionant la partició de Microsoft Windows®"
-
-#: install_interactive.pm:194
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Ha fallat el redimensionament de la FAT: %s"
-
-#: install_interactive.pm:209
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr ""
-"No hi ha cap partició FAT a la qual canviar la mida (o no queda prou espai)"
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Remove Microsoft Windows®"
-msgstr "Elimina el Microsoft Windows®"
-
-#: install_interactive.pm:214
-#, fuzzy, c-format
-msgid "Erase and use entire disk"
-msgstr "Esborra tot el disc"
-
-#: install_interactive.pm:216
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Teniu més d'un disc dur; en quin voleu instal·lar el Linux?"
-
-#: install_interactive.pm:222
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"Es perdran TOTES les particions, i les dades que contenen, de la unitat %s"
-
-#: install_interactive.pm:237
-#, c-format
-msgid "Use fdisk"
-msgstr "Utilitza l'fdisk"
-
-#: install_interactive.pm:240
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, do not forget to save using `w'"
-msgstr ""
-"Ara podeu fer les particions a %s.\n"
-"Quan acabeu, no oblideu desar-les utilitzant 'w'"
-
-#: install_interactive.pm:276
-#, c-format
-msgid "I can not find any room for installing"
-msgstr "No es pot trobar espai per a la instal·lació"
-
-#: install_interactive.pm:280
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr ""
-"L'auxiliar de particionament del DrakX ha trobat les solucions següents:"
-
-#: install_interactive.pm:288
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Ha fallat el particionament: %s"
-
-#: install_interactive.pm:295
-#, c-format
-msgid "Bringing up the network"
-msgstr "S'està activant la xarxa"
-
-#: install_interactive.pm:300
-#, c-format
-msgid "Bringing down the network"
-msgstr "S'està desactivant la xarxa"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:10
-#, fuzzy, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandriva "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandriva Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. This document is a license agreement "
-"between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you "
-"explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this "
-"License. \n"
-"If you disagree with any portion of the License, you are not allowed to "
-"install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner "
-"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate "
-"your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all "
-"copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Limited Warranty\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
-"be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without "
-"limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties "
-"resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or "
-"inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or "
-"occurrence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
-"COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
-"no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever "
-"(including without \n"
-"limitation damages for loss of business, interruption of business, financial "
-"loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential "
-"loss) arising out \n"
-"of the possession and use of software components or arising out of "
-"downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some "
-"countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong "
-"cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. The GPL License and Related Licenses\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. "
-"Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the "
-"documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. Intellectual Property Rights\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
-"as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
-"Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Governing Laws \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-msgstr ""
-"Introducció\n"
-"\n"
-"D'ara endavant, hom es referirà al sistema operatiu i als diferents\n"
-"components disponibles en la distribució Mandriva Linux com als\n"
-"\"Productes de programari\". Els Productes de programari inclouen,\n"
-"però no estan restringits a, el conjunt de programes, mètoDES, regles\n"
-"i documentació relativa al sistema operatiu i els diferents\n"
-"components de la distribució Mandriva Linux.\n"
-"\n"
-"\n"
-"1. Acord de llicència\n"
-"\n"
-"Si us plau, llegiu atentament aquest document. Aquest document és un\n"
-"acord de llicència entre la vostra persona i Mandriva S.A., que\n"
-"s'aplica als Productes de programari. Pel fet d'instal·lar, duplicar\n"
-"o utilitzar els Productes de programari en qualsevol forma esteu\n"
-"acceptant explícitament, i expressant el vostre acord a avenir-vos a\n"
-"les clàusules i condicions d'aquesta Llicència. Si no esteu d'acord\n"
-"amb qualsevol part de la Llicència, no esteu autoritzat a instal·lar,\n"
-"duplicar o utilitzar els Productes de programari. Qualsevol intent\n"
-"d'instal·lar, duplicar o utilitzar els Productes de programari en una\n"
-"forma que no s'adapti a les clàusules i condicions d'aquesta\n"
-"Llicència, és nul i finalitzarà els vostres drets sobre la mateixa.\n"
-"En finalitzar-se la Llicència, heu de destruir immediatament totes\n"
-"les còpies dels Productes de programari.\n"
-"\n"
-"\n"
-"2. Garantia limitada\n"
-"\n"
-"Els Productes de programari i documentació adjunta es subministren\n"
-"\"tal com són\", sense cap garantia, fins al punt permés per la llei.\n"
-"Mandriva S.A. no serà, sota cap circumstància, i fins al punt\n"
-"permés per la llei, responsable de cap dany especial, incidental ni\n"
-"directe (incloent, sense limitar-se a, els danys per pèrdua de\n"
-"negocis, interrupció de negocis, pèrdues financeres, multes i costes\n"
-"judicials, o qualsevol altre dany que resultin d'un judici, o\n"
-"qualsevol altre pèrdua d'importància) que resulti de l'ús o de la\n"
-"impossibilitat d'utilitzar els Productes de programari, fins i tot si\n"
-"Mandriva S.A. ha estat avisat de la possibilitat que\n"
-"s'esdevinguin aquests danys.\n"
-"\n"
-"RESPONSABILITAT LIMITADA RELATIVA A LA POSSESSIÓ O UTILITZACIÓ DE PROGRAMARI "
-"PROHIBIT EN ALGUNS PAÏSOS\n"
-"\n"
-"Fins al punt permés per la llei, Mandriva S.A. o els seus\n"
-"distribuïdors no seran, sota cap circumstància, responsables de cap\n"
-"dany especial, incidental ni directe (incloent, sense limitar-se a,\n"
-"els danys per pèrdua de negocis, interrupció de negocis, pèrdues\n"
-"financeres, multes i costes judicials, o qualsevol altre dany que\n"
-"resultin d'un judici, o qualsevol altre pèrdua d'importància) que\n"
-"resulti de la possessió i utilització dels components de programari o\n"
-"de la seva descàrrega des d'un dels llocs de Mandriva Linux, que\n"
-"estiguin prohibides o restringides en alguns països per les lleis\n"
-"locals. Aquesta responsabilitat limitada s'aplica, però no hi està\n"
-"restringida, als potents components criptogràfics inclosos als\n"
-"Productes de programari.\n"
-"\n"
-"\n"
-"3. la llicència GPL i llicències relacionades\n"
-"\n"
-"Els Productes de programari consisteixen en components creats per\n"
-"diferents persones o entitats. La majoria d'aquests components es\n"
-"regeixen per les clàusules i condicions de la Llicència General\n"
-"Pública de GNU, a la qual d'ara endavant hom s'hi referirà com a\n"
-"\"GPL\", o de llicències similars. la majoria d'aquestes llicències\n"
-"us permeten duplicar, adaptar o redistribuir els components que\n"
-"cobreixen. Si us plau, llegiu atentament les clàusules i condicions\n"
-"de l'acord de llicència de cada component abans d'utilitzar-lo.\n"
-"Qualsevol pregunta sobre la llicència d'un component s'ha d'adreçar\n"
-"al seu autor i no a Mandriva.\n"
-"Els programes desenvolupats per Mandriva S.A. es regeixen per la\n"
-"llicència GPL.La documentació escrita per Mandriva S.A. està regida per una\n"
-"llicència específica; consulteu la documentació per a més\n"
-"informació.\n"
-"\n"
-"\n"
-"4. Drets sobre la propietat intel·lectual\n"
-"\n"
-"Tots els drets sobre els components dels Productes de programari\n"
-"pertanyen als seus autors respectius i estan protegits per les lleis\n"
-"de propietat intel·lectual i de copyright aplicables als programes\n"
-"informàtics.\n"
-"Mandriva S.A. es reserva els drets de modificar o adaptar els\n"
-"Productes de programari, totalment o parcialment, per tots els\n"
-"mitjans i amb totes les finalitats.\n"
-"\"Mandriva\", \"Mandriva Linux\" i els logotips associats son marques\n"
-"registrades de Mandriva S.A.\n"
-"\n"
-"\n"
-"5. Lleis rectores \n"
-"\n"
-"Si qualsevol part d'aquest acord és declarat nul, il·legal o\n"
-"inaplicable per un tribunal, aquesta part s'exclourà del contracte.\n"
-"Seguiu obligat, però, per les altres seccions aplicables de\n"
-"l'acord.\n"
-"Les clàusules i condicions d'aquesta Llicència es regeixen per les\n"
-"lleis de França.\n"
-"Tots els litigis sobre les clàusules d'aquesta llicència es dirimiran\n"
-"preferiblement fora dels tribunals. Com a últim recurs, el litigi es\n"
-"portarà als tribunals competents de París, França.\n"
-"Per a qualsevol tema relacionat amb aquest document, poseu-vos en\n"
-"contacte amb Mandriva S.A.\n"
-
-#: install_messages.pm:90
-#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-"Avís: El programari lliure no està necessàriament lliure de patents, alguns "
-"dels programes\n"
-"lliures inclosos poden estar coberts per patents al teu país. Per exemple, "
-"els\n"
-"decodificadors MP3 inclosos poden necessitar una llicència per poder ser "
-"usats (consulteu\n"
-"http://www.mp3licensing.com per més detalls). Si no esteu segur si una "
-"patent és aplicable\n"
-"consulteu les lleis locals."
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:98
-#, c-format
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Avís\n"
-"\n"
-"Si us plau, llegiu atentament les clàusules següents. Si no esteu\n"
-"d'acord amb qualsevol d'elles, no esteu autoritzat a instal·lar\n"
-"els CD següents. Premeu 'Rebutja' per continuar la instal·lació\n"
-"sense utilitzar aquests CD.\n"
-"\n"
-"\n"
-"Alguns dels components que s'inclouen en aquest CD no estan\n"
-"regits per la llicència GPL o acords semblants. Cadascun d'aquests\n"
-"components es regeix per les clàusules i condicions de la seva\n"
-"pròpia llicència específica. Si us plau, llegiu atentament i\n"
-"accepteu aquestes llicències específiques abans d'utilitzar o\n"
-"redistribuir els components esmentats. En general, aquestes\n"
-"llicències impedeixen la transferència, duplicació (excepte amb\n"
-"la finalitat de fer-ne còpies de seguretat), redistribució,\n"
-"enginyeria inversa, desassemblatge, decompilació o modificació del\n"
-"component. Qualsevol violació de l'acord finalitzarà immediatament\n"
-"els vostres drets sobre la llicència específica. Tret que la\n"
-"llicència específica us en garanteixi els drets, normalment no\n"
-"podreu instal·lar els programes en més d'un sistema, ni adaptar-lo\n"
-"per utilitzar-lo en una xarxa. En cas de dubte, poseu-vos en\n"
-"contacte directament amb el distribuïdor o editor del component.\n"
-"La transferència a terceres parts i la còpia d'aquests components,\n"
-"incloent la documentació, estan en general prohibides.\n"
-"\n"
-"\n"
-"Tots els drets sobre els components del CD següent pertanyen als\n"
-"seus autors respectius i estan protegits per les lleis de\n"
-"propietat intel·lectual i de copyright aplicables als programes\n"
-"informàtics.\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:131
-#, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press Enter to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandriva "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandriva Linux User's Guide."
-msgstr ""
-"Felicitats! La instal·lació ha acabat.\n"
-"Traieu el suport d'arrencada i premeu Retorn per tornar a arrencar.\n"
-"\n"
-"\n"
-"Trobareu la solució als problemes coneguts d'aquesta versió del\n"
-"Mandriva Linux a la fe d'errates que hi ha a \n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"La informació sobre com configurar el vostre sistema està disponible a\n"
-"l'últim capítol d'instal·lació de la Guia Oficial de l'Usuari del\n"
-"Mandriva Linux."
-
-#: install_steps.pm:250
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Duplica el punt de muntatge %s"
-
-#: install_steps.pm:482
-#, c-format
-msgid ""
-"Some important packages did not get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
-"\"\n"
-msgstr ""
-"Alguns paquets importants no s'han instal·lat correctament.\n"
-"La vostra unitat de CD-ROM, o bé el CD-ROM, són defectuosos.\n"
-"Comproveu el CD-ROM en un ordinador instal·lat mitjançant \"rpm -qpl media/"
-"main/*.rpm\"\n"
-
-#: install_steps_auto_install.pm:68 install_steps_stdio.pm:27
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "S'està entrant en el pas '%s'\n"
-
-#: install_steps_gtk.pm:181
-#, c-format
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandriva Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"El vostre sistema està baix de recursos; podeu tenir algun problema en\n"
-"instal·lar el Mandriva Linux. Si això passa, podeu provar d'instal·lar-lo "
-"en\n"
-"mode text. Per fer-ho, premeu 'F1' en arrencar des del CD-ROM i escriviu "
-"'text'."
-
-#: install_steps_gtk.pm:211 install_steps_interactive.pm:605
-#, c-format
-msgid "Package Group Selection"
-msgstr "Selecció del grup de paquets"
-
-#: install_steps_gtk.pm:254 install_steps_interactive.pm:548
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Mida total: %d / %d MB"
-
-#: install_steps_gtk.pm:299
-#, c-format
-msgid "Bad package"
-msgstr "Paquet incorrecte"
-
-#: install_steps_gtk.pm:301
-#, c-format
-msgid "Version: "
-msgstr "Versió: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "Size: "
-msgstr "Mida:"
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "%d KB\n"
-msgstr "%d kB\n"
-
-#: install_steps_gtk.pm:303
-#, c-format
-msgid "Importance: "
-msgstr "Importància:"
-
-#: install_steps_gtk.pm:336
-#, c-format
-msgid "You can not select/unselect this package"
-msgstr "No podeu seleccionar/desseleccionar aquest paquet"
-
-#: install_steps_gtk.pm:340 network/thirdparty.pm:331
-#, c-format
-msgid "due to missing %s"
-msgstr "degut a que falten %s"
-
-#: install_steps_gtk.pm:341
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "degut a %s no satisfetes"
-
-#: install_steps_gtk.pm:342
-#, c-format
-msgid "trying to promote %s"
-msgstr ""
-
-#: install_steps_gtk.pm:343
-#, c-format
-msgid "in order to keep %s"
-msgstr "per tal de mantenir %s"
-
-#: install_steps_gtk.pm:348
-#, c-format
-msgid ""
-"You can not select this package as there is not enough space left to install "
-"it"
-msgstr ""
-"No podeu seleccionar aquest paquet perquè no queda prou espai per instal·lar-"
-"lo"
-
-#: install_steps_gtk.pm:351
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Ara s'instal·laran els paquets següents"
-
-#: install_steps_gtk.pm:352
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Ara s'eliminaran els paquets següents"
-
-#: install_steps_gtk.pm:376
-#, c-format
-msgid "This is a mandatory package, it can not be unselected"
-msgstr "Aquest paquet és obligatori; no es pot desseleccionar"
-
-#: install_steps_gtk.pm:378
-#, c-format
-msgid "You can not unselect this package. It is already installed"
-msgstr "No podeu desseleccionar aquest paquet; ja està instal·lat"
-
-#: install_steps_gtk.pm:381
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Aquest paquet s'ha d'actualitzar.\n"
-"Esteu segur que voleu desseleccionar-lo?"
-
-#: install_steps_gtk.pm:384
-#, c-format
-msgid "You can not unselect this package. It must be upgraded"
-msgstr "No podeu desseleccionar aquest paquet; s'ha d'actualitzar"
-
-#: install_steps_gtk.pm:389
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Mostra automàticament els paquets seleccionats"
-
-#: install_steps_gtk.pm:394
-#, c-format
-msgid "Load/Save selection"
-msgstr "Carrega/Desa la selecció"
-
-#
-#: install_steps_gtk.pm:395
-#, c-format
-msgid "Updating package selection"
-msgstr "S'està actualitzant la selecció de paquets"
-
-#
-#: install_steps_gtk.pm:400
-#, c-format
-msgid "Minimal install"
-msgstr "Instal·lació mínima"
-
-#: install_steps_gtk.pm:414 install_steps_interactive.pm:467
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Escolliu els paquets que voleu instal·lar"
-
-#: install_steps_gtk.pm:431 install_steps_interactive.pm:691
-#, c-format
-msgid "Installing"
-msgstr "S'està instal·lant"
-
-#: install_steps_gtk.pm:457
-#, c-format
-msgid "No details"
-msgstr "Sense detalls"
-
-#: install_steps_gtk.pm:472
-#, c-format
-msgid "Time remaining "
-msgstr "Temps restant "
-
-#: install_steps_gtk.pm:473
-#, c-format
-msgid "Estimating"
-msgstr "S'està estimant"
-
-#: install_steps_gtk.pm:500
-#, c-format
-msgid "%d packages"
-msgstr "%d paquets"
-
-#: install_steps_gtk.pm:543 install_steps_interactive.pm:719
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Canvieu el Cd-Rom!\n"
-"Si us plau, inseriu el CD-ROM etiquetat com \"%s\" a la unitat i després\n"
-"premeu D'acord.\n"
-"Si no el teniu, premeu Cancel·la per no fer la instal·lació des d'aquest Cd-"
-"Rom."
-
-#: install_steps_gtk.pm:556 install_steps_interactive.pm:730
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "S'ha produït un error en ordenar els paquets:"
-
-#: install_steps_gtk.pm:558 install_steps_interactive.pm:734
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "S'ha produït un error en instal·lar els paquets:"
-
-#: install_steps_gtk.pm:560 install_steps_interactive.pm:730
-#: install_steps_interactive.pm:734
-#, c-format
-msgid "Go on anyway?"
-msgstr "Voleu seguir igualment?"
-
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:910 steps.pm:30
-#, c-format
-msgid "Summary"
-msgstr "Resum"
-
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:906
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "not configured"
-msgstr "no configurat(da)"
-
-#: install_steps_gtk.pm:668
-#, c-format
-msgid ""
-"The following installation media have been found.\n"
-"If you want to skip some of them, you can unselect them now."
-msgstr ""
-
-#: install_steps_gtk.pm:677
-#, c-format
-msgid ""
-"You have the option to copy the contents of the CDs onto the hard drive "
-"before installation.\n"
-"It will then continue from the hard drive and the packages will remain "
-"available once the system is fully installed."
-msgstr ""
-
-#: install_steps_gtk.pm:679
-#, c-format
-msgid "Copy whole CDs"
-msgstr "Copia els CDs sencers"
-
-#
-#: install_steps_interactive.pm:95
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Si us plau, seleccioneu la disposició del vostre teclat."
-
-#: install_steps_interactive.pm:97
-#, c-format
-msgid "Here is the full list of available keyboards"
-msgstr "Aquesta és la llista completa de teclats disponibles"
-
-#: install_steps_interactive.pm:127
-#, c-format
-msgid "Install/Upgrade"
-msgstr "Instal·la/Actualitza"
-
-#: install_steps_interactive.pm:128
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Es tracta d'una instal·lació o d'una actualització?"
-
-#
-#: install_steps_interactive.pm:134
-#, c-format
-msgid "Upgrade %s"
-msgstr "Actualitza %s"
-
-#: install_steps_interactive.pm:147
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Clau de xifratge per a %s"
-
-#
-#: install_steps_interactive.pm:170
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Si us plau, seleccioneu el tipus del vostre ratolí."
-
-#: install_steps_interactive.pm:171
-#, c-format
-msgid "Mouse choice"
-msgstr ""
-
-#: install_steps_interactive.pm:180 standalone/mousedrake:46
-#, c-format
-msgid "Mouse Port"
-msgstr "Port del ratolí"
-
-#: install_steps_interactive.pm:181 standalone/mousedrake:47
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Si us plau, seleccioneu el port sèrie a què està connectat el ratolí."
-
-#: install_steps_interactive.pm:191
-#, c-format
-msgid "Buttons emulation"
-msgstr "Emulació dels botons"
-
-#: install_steps_interactive.pm:193
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Emulació del botó 2"
-
-#: install_steps_interactive.pm:194
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Emulació del botó 3"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "S'estan configurant les targetes PCMCIA..."
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "Configuring IDE"
-msgstr "S'està configurant l'IDE"
-
-#: install_steps_interactive.pm:242
-#, c-format
-msgid "No partition available"
-msgstr "No hi ha particions disponibles"
-
-#: install_steps_interactive.pm:245
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "S'estan explorant les particions per trobar els punts de muntatge"
-
-#: install_steps_interactive.pm:252
-#, c-format
-msgid "Choose the mount points"
-msgstr "Escolliu els punts de muntatge"
-
-#: install_steps_interactive.pm:300
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"No hi ha prou espai lliure per un 1MB de bootstrap! La instal·lació "
-"continuarà, però per iniciar el sistema necessitareu crear la partició de "
-"bootstrap amb el DiskDrake"
-
-#: install_steps_interactive.pm:305
-#, fuzzy, c-format
-msgid ""
-"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
-"to boot your system, you'll need to create the bootstrap partition in "
-"DiskDrake"
-msgstr ""
-"No hi ha prou espai lliure per un 1MB de bootstrap! La instal·lació "
-"continuarà, però per iniciar el sistema necessitareu crear la partició de "
-"bootstrap amb el DiskDrake"
-
-#: install_steps_interactive.pm:341
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Escolliu les particions que voleu formatar"
-
-#: install_steps_interactive.pm:343
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Voleu comprovar els blocs incorrectes?"
-
-#: install_steps_interactive.pm:371
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
-msgstr ""
-"És impossible de comprovar el sistema de fitxers %s. Voleu reparar els "
-"errors? (Vigileu, podríeu perdre dades.)"
-
-#: install_steps_interactive.pm:374
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr ""
-"No hi ha prou espai d'intercanvi per completar la instal·lació; si us plau, "
-"afegiu-ne"
-
-#: install_steps_interactive.pm:383
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr ""
-"S'estan cercant els paquets disponibles i reconstruint la base de dades "
-"d'rpm..."
-
-#: install_steps_interactive.pm:384 install_steps_interactive.pm:436
-#, c-format
-msgid "Looking for available packages..."
-msgstr "S'estan cercant els paquets disponibles..."
-
-#: install_steps_interactive.pm:405 install_steps_interactive.pm:810
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Escolliu una rèplica des de la qual aconseguir els paquets"
-
-#: install_steps_interactive.pm:445
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Al vostre sistema no li queda prou espai per a la instal·lació o "
-"actualització (%d > %d)"
-
-#: install_steps_interactive.pm:479
-#, fuzzy, c-format
-msgid ""
-"Please choose load or save package selection.\n"
-"The format is the same as auto_install generated files."
-msgstr ""
-"Si us plau, carregueu o deseu la selecció de paquets en el disquet.\n"
-"El format és el mateix que en els disquets generats d'instal·lació "
-"automàtica."
-
-#: install_steps_interactive.pm:481
-#, c-format
-msgid "Load"
-msgstr "Càrrega"
-
-#
-#: install_steps_interactive.pm:481 standalone/drakbackup:4083
-#: standalone/drakbackup:4153 standalone/logdrake:175
-#, c-format
-msgid "Save"
-msgstr "Desa"
-
-#: install_steps_interactive.pm:489
-#, c-format
-msgid "Bad file"
-msgstr "Fitxer incorrecte"
-
-#: install_steps_interactive.pm:562
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "La mida seleccionada és superior a la disponible"
-
-#
-#: install_steps_interactive.pm:577
-#, c-format
-msgid "Type of install"
-msgstr "Tipus d'instal·lació"
-
-#: install_steps_interactive.pm:578
-#, c-format
-msgid ""
-"You have not selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"No heu seleccionat cap grup de paquets.\n"
-"Escolliu la instal·lació mínima que voleu:"
-
-#: install_steps_interactive.pm:582
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Amb la documentació bàsica (recomanat!)"
-
-#: install_steps_interactive.pm:583
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Instal·lació realment mínima (especialment no urpmi)"
-
-#: install_steps_interactive.pm:622 standalone/drakxtv:52
-#, c-format
-msgid "All"
-msgstr "Tots"
-
-#: install_steps_interactive.pm:661
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"Si teniu tots els CD de la llista de sota, feu clic a 'D'acord'.\n"
-"Si no teniu cap d'aquests CD, feu clic a 'Cancel·la'.\n"
-"Si només falten alguns CD, desseleccioneu-los i feu clic a 'D'acord'."
-
-#: install_steps_interactive.pm:666
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM etiquetat com \"%s\""
-
-#: install_steps_interactive.pm:691
-#, c-format
-msgid "Preparing installation"
-msgstr "S'està preparant la instal·lació"
-
-#: install_steps_interactive.pm:699
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"S'està instal·lant el paquet %s\n"
-"%d%%"
-
-#: install_steps_interactive.pm:748
-#, c-format
-msgid "Post-install configuration"
-msgstr "Configuració posterior a la instal·lació"
-
-#: install_steps_interactive.pm:755
-#, c-format
-msgid "Please ensure the Update Modules media is in drive %s"
-msgstr ""
-
-#: install_steps_interactive.pm:783
-#, c-format
-msgid "Updates"
-msgstr "Actualitzacions"
-
-#: install_steps_interactive.pm:784
-#, c-format
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates?"
-msgstr ""
-"Ara teniu l'oportunitat de baixar paquets actualitzats. Aquests paquets\n"
-"han estat actualitzats després de la publicació de la distribució. Poden "
-"contenir\n"
-"actualitzacions de seguretat o correccions d'errors.\n"
-"\n"
-"Per baixar aquests paquets necessitareu tenir una connexió a Internet\n"
-"operativa.\n"
-"\n"
-"Voleu instal·lar les actualitzacions?"
-
-#
-#: install_steps_interactive.pm:805
-#, c-format
-msgid ""
-"Contacting Mandriva Linux web site to get the list of available mirrors..."
-msgstr ""
-"S'està contactant amb el servidor Mandriva Linux per obtenir la llista de "
-"rèpliques disponibles..."
-
-#: install_steps_interactive.pm:824
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr ""
-"S'està contactant amb la rèplica per obtenir la llista dels paquets "
-"disponibles..."
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "No es pot contactar amb la rèplica: %s"
-
-#
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Voleu tornar-ho a provar?"
-
-#: install_steps_interactive.pm:855 standalone/drakclock:45
-#: standalone/finish-install:56
-#, c-format
-msgid "Which is your timezone?"
-msgstr "En quina zona horària us trobeu?"
-
-#: install_steps_interactive.pm:860
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Sincronització automàtica de la hora (usant NTP)"
-
-#
-#: install_steps_interactive.pm:868
-#, c-format
-msgid "NTP Server"
-msgstr "Servidor NTP"
-
-#
-#: install_steps_interactive.pm:923 install_steps_interactive.pm:931
-#: install_steps_interactive.pm:949 install_steps_interactive.pm:956
-#: install_steps_interactive.pm:1107 services.pm:133
-#: standalone/drakbackup:1596
-#, c-format
-msgid "System"
-msgstr "Sistema"
-
-#: install_steps_interactive.pm:963 install_steps_interactive.pm:990
-#: install_steps_interactive.pm:1007 install_steps_interactive.pm:1023
-#: install_steps_interactive.pm:1034
-#, c-format
-msgid "Hardware"
-msgstr "Maquinari"
-
-#: install_steps_interactive.pm:969 install_steps_interactive.pm:978
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Servidor CUPS remot"
-
-#: install_steps_interactive.pm:969
-#, c-format
-msgid "No printer"
-msgstr "Cap impressora"
-
-#
-#: install_steps_interactive.pm:1011
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Teniu una targeta de so ISA?"
-
-#: install_steps_interactive.pm:1013
-#, c-format
-msgid ""
-"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
-"card"
-msgstr ""
-"Executeu \"alsacont\" després de la instal·lació per configurar la targeta "
-"de so"
-
-#: install_steps_interactive.pm:1015
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"No s'ha detectat cap targeta de so. Proveu amb \"harddrake\" després de la "
-"instal·lació"
-
-#: install_steps_interactive.pm:1035
-#, c-format
-msgid "Graphical interface"
-msgstr "Interfície gràfica"
-
-#: install_steps_interactive.pm:1041 install_steps_interactive.pm:1053
-#, c-format
-msgid "Network & Internet"
-msgstr "Xarxa i Internet"
-
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "configured"
-msgstr "configurat"
-
-#: install_steps_interactive.pm:1064 install_steps_interactive.pm:1078
-#: security/level.pm:55 steps.pm:20
-#, c-format
-msgid "Security"
-msgstr "Seguretat"
-
-#
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "activated"
-msgstr "activat"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "disabled"
-msgstr "inhabilita"
-
-#: install_steps_interactive.pm:1094
-#, c-format
-msgid "Boot"
-msgstr "Arrencada"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1098 printer/printerdrake.pm:961
-#, c-format
-msgid "%s on %s"
-msgstr "%s a %s"
-
-#: install_steps_interactive.pm:1112 services.pm:175
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Serveis: %d activats per %d registrats"
-
-#: install_steps_interactive.pm:1124
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "No heu configurat X. Segur que ho voleu així?"
-
-#: install_steps_interactive.pm:1205
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "S'està preparant el carregador de l'arrencada..."
-
-#: install_steps_interactive.pm:1215
-#, fuzzy, c-format
-msgid ""
-"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
-"will not work for you. The install will continue, but you'll need to use "
-"BootX or some other means to boot your machine. The kernel argument for the "
-"root fs is: root=%s"
-msgstr ""
-"Sembla que teniu un OldWorld o una màquina\n"
-"desconeguda; el carregador d'arrencada yaboot no us funcionarà.\n"
-"La instal·lació continuarà, però us caldrà utilitzar el BootX\n"
-"o algun altre mètode per arrencar l'ordinador"
-
-#: install_steps_interactive.pm:1221
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Voleu utilitzar l'aboot?"
-
-#: install_steps_interactive.pm:1224
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"S'ha produït un error en instal·lar l'aboot. \n"
-"Voleu intentar igualment la instal·lació encara que això destrueixi la "
-"primera partició?"
-
-#: install_steps_interactive.pm:1241
-#, c-format
-msgid ""
-"In this security level, access to the files in the Windows partition is "
-"restricted to the administrator."
-msgstr ""
-"En quest nivell de seguretat, l'accés a les particions de Windows està "
-"restringit a l'administrador."
-
-#: install_steps_interactive.pm:1270 standalone/drakautoinst:76
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Inseriu un disquet en blanc a la unitat %s"
-
-#: install_steps_interactive.pm:1275
-#, c-format
-msgid "Please insert another floppy for drivers disk"
-msgstr "Si us plau inseriu un altre disquet pel disquet de controladors"
-
-#: install_steps_interactive.pm:1277
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "S'està creant el disquet d'instal·lació automàtica"
-
-#: install_steps_interactive.pm:1289
-#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Alguns passos no s'han completat.\n"
-"\n"
-"Segur que voleu sortir ara?"
-
-#: install_steps_interactive.pm:1299 standalone/draksambashare:421
-#: standalone/draksambashare:527 standalone/drakups:118 standalone/drakups:157
-#: standalone/logdrake:451 standalone/logdrake:457
-#, c-format
-msgid "Congratulations"
-msgstr "Felicitats"
-
-#: install_steps_interactive.pm:1307 install_steps_interactive.pm:1308
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Genera un disquet per a la instal·lació automàtica"
-
-#: install_steps_interactive.pm:1309
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Si ho desitgeu, la instal·lació automàtica es pot\n"
-"automatitzar completament, però en aquest cas\n"
-"prendrà el control del disc dur!\n"
-"(Això està pensat per a la instal·lació en un altre ordinador.)\n"
-"\n"
-"Potser preferireu repetir la instal·lació.\n"
-
-#: install_steps_newt.pm:20
-#, c-format
-msgid "Mandriva Linux Installation %s"
-msgstr "Instal·lació del Mandriva Linux %s"
-
-#. -PO: This string must fit in a 80-char wide text screen
-#: install_steps_newt.pm:37
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> entre elements | <Espai> selecciona | <F12> pant. següent"
+msgid "No"
+msgstr "No"
-#
-#: interactive.pm:196
+#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "Trieu un fitxer"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakbackup:1537
-#: standalone/drakfont:649 standalone/drakhosts:242 standalone/draknfs:605
-#: standalone/draksambashare:1127 standalone/drakups:299
-#: standalone/drakups:359 standalone/drakups:379 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Add"
msgstr "Afegeix"
-#
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakhosts:249
-#: standalone/draknfs:612 standalone/draksambashare:1084
-#: standalone/draksambashare:1137 standalone/draksambashare:1176
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Modify"
msgstr "Modifica"
-#
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakfont:732
-#: standalone/drakhosts:256 standalone/draknfs:619
-#: standalone/draksambashare:1085 standalone/draksambashare:1145
-#: standalone/draksambashare:1184 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Remove"
msgstr "Elimina"
-#: interactive.pm:398
-#, c-format
-msgid "Basic"
-msgstr "Bàsic"
-
-#: interactive.pm:436 interactive/newt.pm:321 ugtk2.pm:490
+#: interactive.pm:538 interactive/curses.pm:217 ugtk2.pm:508
#, c-format
msgid "Finish"
msgstr "Fi"
-#: interactive/newt.pm:92
+#: interactive.pm:539 interactive/curses.pm:214 ugtk2.pm:506
#, c-format
-msgid "Do"
-msgstr "Fes"
+msgid "Previous"
+msgstr "Anterior"
#: interactive/stdio.pm:29 interactive/stdio.pm:148
#, c-format
@@ -7799,7 +3344,6 @@ msgstr "Quina és la vostra elecció? (0/1, predeterminat '%s')"
msgid "Button `%s': %s"
msgstr "Botó '%s': %s"
-#
#: interactive/stdio.pm:95
#, c-format
msgid "Do you want to click on this button?"
@@ -7845,1966 +3389,1205 @@ msgstr ""
msgid "Re-submit"
msgstr "Torna a enviar"
-#: keyboard.pm:171 keyboard.pm:202
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTZ)"
-msgstr "Txec (QWERTZ)"
-
-#: keyboard.pm:172 keyboard.pm:204
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German"
-msgstr "Alemany"
-
-#: keyboard.pm:173
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak"
-msgstr "Dvorak"
-
-#: keyboard.pm:174 keyboard.pm:217
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Spanish"
-msgstr "Espanyol"
-
-#: keyboard.pm:175 keyboard.pm:218
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Finnish"
-msgstr "Finès"
-
-#: keyboard.pm:176 keyboard.pm:220
-#, c-format
-msgid ""
-"_: keyboard\n"
-"French"
-msgstr "Francès"
-
-#: keyboard.pm:177 keyboard.pm:264
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Norwegian"
-msgstr "Noruec"
-
-#: keyboard.pm:178
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish"
-msgstr "Polonès"
-
-#: keyboard.pm:179 keyboard.pm:275
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian"
-msgstr "Rus"
-
-#: keyboard.pm:180 keyboard.pm:281
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swedish"
-msgstr "Suec"
-
-#: keyboard.pm:181 keyboard.pm:310
-#, c-format
-msgid "UK keyboard"
-msgstr "Teclat Regne Unit"
-
-#: keyboard.pm:182 keyboard.pm:313
-#, c-format
-msgid "US keyboard"
-msgstr "Teclat Estats Units"
-
-#
-#: keyboard.pm:184
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Albanian"
-msgstr "Albanès"
-
-#: keyboard.pm:185
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (old)"
-msgstr "Armeni (antic)"
-
-#: keyboard.pm:186
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (typewriter)"
-msgstr "Armeni (màquina d'escriure)"
-
-#: keyboard.pm:187
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (phonetic)"
-msgstr "Armeni (fonètic)"
-
-#: keyboard.pm:188
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Arabic"
-msgstr "Àrab"
-
-#: keyboard.pm:189
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Azerbaidjani (latin)"
-msgstr "Azerbaidjanès (llatí)"
-
-#: keyboard.pm:190
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belgian"
-msgstr "Belga"
-
-#: keyboard.pm:191
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Inscript-layout)"
-msgstr "Bengalí (disposició Inscript)"
-
-#: keyboard.pm:192
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Probhat)"
-msgstr "Bengalí (disposició probhat)"
-
-#
-#: keyboard.pm:193
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (phonetic)"
-msgstr "Búlgar (fonètic)"
-
-#
-#: keyboard.pm:194
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (BDS)"
-msgstr "Búlgar (BDS)"
-
-#: keyboard.pm:195
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Brazilian (ABNT-2)"
-msgstr "Brasiler (ABNT-2)"
-
-#: keyboard.pm:196
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bosnian"
-msgstr "Bosnià"
-
-#: keyboard.pm:197
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belarusian"
-msgstr "Bielorrús"
-
-#: keyboard.pm:198
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (German layout)"
-msgstr "Suís (disposició alemanya)"
-
-#: keyboard.pm:199
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (French layout)"
-msgstr "Suís (disposició francesa)"
-
-#: keyboard.pm:201
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Cherokee syllabics"
-msgstr ""
-
-#: keyboard.pm:203
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTY)"
-msgstr "Txec (QWERTY)"
-
-#: keyboard.pm:205
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German (no dead keys)"
-msgstr "Alemany (sense tecles inoperatives)"
-
-#: keyboard.pm:206
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Devanagari"
-msgstr "Devanagari"
-
-#: keyboard.pm:207
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Danish"
-msgstr "Danès"
-
-#: keyboard.pm:208
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (US)"
-msgstr "Dvorak (Estats Units)"
-
-#: keyboard.pm:209
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Esperanto)"
-msgstr "Dvorak (Esperanto)"
-
-#: keyboard.pm:210
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (French)"
-msgstr "Dvorak (Francès)"
-
-#: keyboard.pm:211
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (UK)"
-msgstr "Dvorak (Regne Unit)"
-
-#: keyboard.pm:212
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Norwegian)"
-msgstr "Dvorak (Noruec)"
-
-#
-#: keyboard.pm:213
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Polish)"
-msgstr "Dvorak (Polonès)"
-
-#
-#: keyboard.pm:214
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Swedish)"
-msgstr "Dvorak (Suec)"
-
-#: keyboard.pm:215
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dzongkha/Tibetan"
-msgstr ""
-
-#: keyboard.pm:216
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Estonian"
-msgstr "Estonià"
-
-#: keyboard.pm:219
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Faroese"
-msgstr ""
-
-#: keyboard.pm:221
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Russian\" layout)"
-msgstr "Georgià (disposició \"russa\")"
-
-#: keyboard.pm:222
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Latin\" layout)"
-msgstr "Georgià (disposició \"llatina\")"
-
-#: keyboard.pm:223
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek"
-msgstr "Grec"
-
-#: keyboard.pm:224
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek (polytonic)"
-msgstr "Grec (politònic)"
-
-#: keyboard.pm:225
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gujarati"
-msgstr "Gujarati"
-
-#: keyboard.pm:226
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gurmukhi"
-msgstr "Gurmukhi"
-
-#: keyboard.pm:227
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Croatian"
-msgstr "Croata"
-
-#: keyboard.pm:228
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Hungarian"
-msgstr "Hongarès"
-
-#: keyboard.pm:229
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Irish"
-msgstr "Irlandès"
-
-#: keyboard.pm:230
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli"
-msgstr "Israelià"
-
-#: keyboard.pm:231
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli (phonetic)"
-msgstr "Israelià (fonètic)"
-
-#: keyboard.pm:232
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Iranian"
-msgstr "Iranià"
-
-#: keyboard.pm:233
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Icelandic"
-msgstr "Islandès"
-
-#: keyboard.pm:234
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Italian"
-msgstr "Italià"
-
-#: keyboard.pm:235
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Inuktitut"
-msgstr "Inuktitut"
-
-#: keyboard.pm:239
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Japanese 106 keys"
-msgstr "Japonès de 106 tecles"
-
-#: keyboard.pm:240
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kannada"
-msgstr "Kannada"
-
-#: keyboard.pm:243
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Korean"
-msgstr "Teclat coreà"
-
-#: keyboard.pm:245
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kurdish (arabic script)"
-msgstr ""
-
-#: keyboard.pm:246
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kyrgyz"
-msgstr ""
-
-#: keyboard.pm:247
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latin American"
-msgstr "Espanyol sud-americà"
-
-#
-#: keyboard.pm:249
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Laotian"
-msgstr "Laosià"
-
-#: keyboard.pm:250
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (old)"
-msgstr "Lituà AZERTY (antic)"
-
-#: keyboard.pm:252
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (new)"
-msgstr "Lituà AZERTY (nou)"
-
-#: keyboard.pm:253
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"number row\" QWERTY"
-msgstr "Lituà \"fila de números\" QWERTY"
-
-#: keyboard.pm:254
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituà \"fonètic\" QWERTY"
-
-#
-#: keyboard.pm:255
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latvian"
-msgstr "Letó"
-
-#: keyboard.pm:256
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Malayalam"
-msgstr "Malaialam"
-
-#: keyboard.pm:258
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Macedonian"
-msgstr "Macedoni"
-
-#: keyboard.pm:259
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Myanmar (Burmese)"
-msgstr "Myanmar (Burmese)"
-
-#
-#: keyboard.pm:260
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Mongolian (cyrillic)"
-msgstr "Mongol (ciríl·lic)"
-
-#: keyboard.pm:261
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (UK)"
-msgstr "Maltès (Regne Unit)"
-
-#: keyboard.pm:262
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (US)"
-msgstr "Maltès (Estats Units)"
-
-#: keyboard.pm:263
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dutch"
-msgstr "Holandès"
-
-#: keyboard.pm:265
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Oriya"
-msgstr "Oriya"
-
-#: keyboard.pm:266
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwerty layout)"
-msgstr "Polonès (disposició qwerty)"
-
-#: keyboard.pm:267
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwertz layout)"
-msgstr "Polonès (disposició qwertz)"
-
-#: keyboard.pm:269
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Pashto"
-msgstr ""
-
-#: keyboard.pm:270
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Portuguese"
-msgstr "Portuguès"
-
-#: keyboard.pm:272
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Canadian (Quebec)"
-msgstr "Canadenc (Quebec)"
-
-#
-#: keyboard.pm:273
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwertz)"
-msgstr "Romanès (qwertz)"
-
-#
-#: keyboard.pm:274
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwerty)"
-msgstr "Romanès (qwerty)"
-
-#: keyboard.pm:276
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian (phonetic)"
-msgstr "Rus (fonètic)"
-
-#: keyboard.pm:277
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (norwegian)"
-msgstr "Saami (Noruec)"
-
-#: keyboard.pm:278
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (swedish/finnish)"
-msgstr "Saami (suec/finès)"
-
-#: keyboard.pm:280
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sindhi"
-msgstr ""
-
-#: keyboard.pm:282
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovenian"
-msgstr "Eslovè"
-
-#: keyboard.pm:284
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sinhala"
-msgstr ""
-
-#: keyboard.pm:285
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTZ)"
-msgstr "Eslovac (QWERTZ)"
-
-#: keyboard.pm:286
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTY)"
-msgstr "Eslovac (QWERTY)"
-
-#
-#: keyboard.pm:288
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Serbian (cyrillic)"
-msgstr "Serbi (ciríl·lic)"
-
-#: keyboard.pm:289
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac"
-msgstr "Siri"
-
-#: keyboard.pm:290
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac (phonetic)"
-msgstr "Siri (fonètic)"
-
-#: keyboard.pm:291
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Telugu"
-msgstr "Telugu"
-
-#: keyboard.pm:293
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (ISCII-layout)"
-msgstr "Tàmil (disposició ISCII)"
-
-#: keyboard.pm:294
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (Typewriter-layout)"
-msgstr "Tàmil (disposició de màquina d'escriure)"
-
-#: keyboard.pm:295
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Kedmanee)"
-msgstr ""
-
-#: keyboard.pm:296
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (TIS-820)"
-msgstr "Tai (TIS-820)"
-
-#: keyboard.pm:298
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Pattachote)"
-msgstr ""
-
-#: keyboard.pm:300
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (moroccan layout) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:301
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (phonetic) (+latin/arabic)"
-msgstr ""
-
-#
-#: keyboard.pm:303
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tajik"
-msgstr "Teclat tadjik"
-
-#: keyboard.pm:305
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkmen"
-msgstr ""
-
-#: keyboard.pm:306
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (traditional \"F\" model)"
-msgstr "Turc (tradicional, model \"F\")"
-
-#: keyboard.pm:307
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (modern \"Q\" model)"
-msgstr "Turc (modern, model \"Q\")"
-
-#: keyboard.pm:309
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Ukrainian"
-msgstr "Ucraïnès"
-
-#: keyboard.pm:312
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Urdu keyboard"
-msgstr ""
-
-#: keyboard.pm:314
-#, c-format
-msgid "US keyboard (international)"
-msgstr "Teclat Estats Units (internacional)"
-
-#
-#: keyboard.pm:315
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Uzbek (cyrillic)"
-msgstr "Uzbek (ciríl·lic)"
-
-#: keyboard.pm:317
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamita \"fila numèrica\" QWERTY"
-
-#
-#: keyboard.pm:318
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Yugoslavian (latin)"
-msgstr "Iugoslau (llatí)"
-
-#: keyboard.pm:325
-#, c-format
-msgid "Right Alt key"
-msgstr "Tecla d'Alternativa Gràfica"
-
-#: keyboard.pm:326
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Les dues tecles de Majúscules simultàniament"
-
-#: keyboard.pm:327
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Tecles de Control i de Majúscules simultàniament"
-
-#: keyboard.pm:328
-#, c-format
-msgid "CapsLock key"
-msgstr "Tecla de Fixació de Majúscules"
-
-#: keyboard.pm:329
-#, fuzzy, c-format
-msgid "Shift and CapsLock keys simultaneously"
-msgstr "Tecles de Control i d'Alternativa simultàniament"
-
-#: keyboard.pm:330
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Tecles de Control i d'Alternativa simultàniament"
-
-#: keyboard.pm:331
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Tecles d'Alternativa i de Majúscules simultàniament"
-
-#: keyboard.pm:332
-#, c-format
-msgid "\"Menu\" key"
-msgstr "tecla de \"Menú\""
-
-#: keyboard.pm:333
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Tecla de \"Windows\" Esquerra"
-
-#: keyboard.pm:334
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Tecla de \"Windows\" Dreta"
-
-#: keyboard.pm:335
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Les dues tecles Ctrl simultàniament"
-
-#: keyboard.pm:336
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Les dues tecles Alt simultàniament"
-
-#: keyboard.pm:337
-#, c-format
-msgid "Left Shift key"
-msgstr "Tecla Maj Esquerra"
-
-#: keyboard.pm:338
-#, c-format
-msgid "Right Shift key"
-msgstr "Tecla Maj dreta"
-
-#: keyboard.pm:339
-#, c-format
-msgid "Left Alt key"
-msgstr "Tecla Alt esquerra"
-
-#: keyboard.pm:340
-#, c-format
-msgid "Left Control key"
-msgstr "Tecla de control esquerra"
-
-#: keyboard.pm:341
-#, c-format
-msgid "Right Control key"
-msgstr "Tecla Control dret"
-
-#: keyboard.pm:377
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Aquí podeu triar la tecla o la combinació de tecles que \n"
-"permetran canviar entre diferents disposicions de teclat\n"
-"(p.ex., llatina i no llatina)"
-
-#: keyboard.pm:382
-#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
-msgstr ""
-
#. -PO: the string "default:LTR" can be translated *ONLY* as "default:LTR"
#. -PO: or as "default:RTL", depending if your language is written from
#. -PO: left to right, or from right to left; any other string is wrong.
-#: lang.pm:178
+#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"
-#: lang.pm:195
+#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "Andorra"
-#: lang.pm:196 network/adsl_consts.pm:943
+#: lang.pm:211 timezone.pm:213
#, c-format
msgid "United Arab Emirates"
msgstr "Unió dels Emirats Àrabs"
-#: lang.pm:197
+#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "Afganistan"
-#: lang.pm:198
+#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigua i Barbuda"
-#: lang.pm:199
+#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "Anguilla"
-#: lang.pm:200
+#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "Albània"
-#: lang.pm:201
+#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "Armènia"
-#: lang.pm:202
+#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "Antilles Holandeses"
-#: lang.pm:203
+#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "Angola"
-#: lang.pm:204
+#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "Antàrtida"
-#: lang.pm:205 network/adsl_consts.pm:55 standalone/drakxtv:50
+#: lang.pm:220 timezone.pm:258
#, c-format
msgid "Argentina"
msgstr "Argentina"
-#: lang.pm:206
+#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "Samoa Americana"
-#: lang.pm:209
+#: lang.pm:222 mirror.pm:11 timezone.pm:216
+#, c-format
+msgid "Austria"
+msgstr "Àustria"
+
+#: lang.pm:223 mirror.pm:10 timezone.pm:254
+#, c-format
+msgid "Australia"
+msgstr "Austràlia"
+
+#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "Aruba"
-#: lang.pm:210
+#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "Azerbaitjan"
-#: lang.pm:211
+#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bòsnia i Hercegovina"
-#: lang.pm:212
+#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "Barbados"
-#: lang.pm:213
+#: lang.pm:228 timezone.pm:198
#, c-format
msgid "Bangladesh"
msgstr "Bangladesh"
-#: lang.pm:215
+#: lang.pm:229 mirror.pm:12 timezone.pm:218
+#, c-format
+msgid "Belgium"
+msgstr "Bèlgica"
+
+#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "Burkina Faso"
-#: lang.pm:216 network/adsl_consts.pm:170 network/adsl_consts.pm:179
+#: lang.pm:231 timezone.pm:219
#, c-format
msgid "Bulgaria"
msgstr "Bulgària"
-#: lang.pm:217
+#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "Bahrain"
-#: lang.pm:218
+#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "Burundi"
-#: lang.pm:219
+#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "Benín"
-#: lang.pm:220
+#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "Bermuda"
-#: lang.pm:221
+#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "Brunei"
-#: lang.pm:222
+#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "Bolívia"
-#: lang.pm:224
+#: lang.pm:238 mirror.pm:13 timezone.pm:259
+#, c-format
+msgid "Brazil"
+msgstr "Brasil"
+
+#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "Bahames"
-#: lang.pm:225
+#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "Bhutan"
-#: lang.pm:226
+#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "Illa Bouvet"
-#: lang.pm:227
+#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "Botswana"
-#: lang.pm:228
+#: lang.pm:243 timezone.pm:217
#, c-format
msgid "Belarus"
msgstr "Bielorrússia"
-#: lang.pm:229
+#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "Belize"
-#: lang.pm:231
+#: lang.pm:245 mirror.pm:14 timezone.pm:248
+#, c-format
+msgid "Canada"
+msgstr "Canadà"
+
+#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Illes Cocos (Keeling)"
-#: lang.pm:232
+#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Congo (Kinshasa)"
-#: lang.pm:233
+#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "República Centrefricana"
-#: lang.pm:234
+#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Congo (Brazzaville)"
-#: lang.pm:236
+#: lang.pm:250 mirror.pm:38 timezone.pm:242
+#, c-format
+msgid "Switzerland"
+msgstr "Suïssa"
+
+#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "Costa d'Ivori"
-#: lang.pm:237
+#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "Illes Cook"
-#: lang.pm:238
+#: lang.pm:253 timezone.pm:260
#, c-format
msgid "Chile"
msgstr "Xile"
-#: lang.pm:239
+#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "Camerun"
-#: lang.pm:240 network/adsl_consts.pm:188 network/adsl_consts.pm:197
-#: network/adsl_consts.pm:206 network/adsl_consts.pm:215
-#: network/adsl_consts.pm:224 network/adsl_consts.pm:233
-#: network/adsl_consts.pm:242 network/adsl_consts.pm:251
-#: network/adsl_consts.pm:260 network/adsl_consts.pm:269
-#: network/adsl_consts.pm:278 network/adsl_consts.pm:287
-#: network/adsl_consts.pm:296 network/adsl_consts.pm:305
-#: network/adsl_consts.pm:314 network/adsl_consts.pm:323
-#: network/adsl_consts.pm:332 network/adsl_consts.pm:341
-#: network/adsl_consts.pm:350 network/adsl_consts.pm:359
+#: lang.pm:255 timezone.pm:199
#, c-format
msgid "China"
msgstr "Xina"
-#: lang.pm:241
+#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "Colòmbia"
-#: lang.pm:243
+#: lang.pm:257 mirror.pm:15
+#, c-format
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "Sèrbia i Montenegro"
-#: lang.pm:244
+#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "Cuba"
-#: lang.pm:245
+#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "Cap Verd"
-#: lang.pm:246
+#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "Illa Christmas"
-#: lang.pm:247
+#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "Xipre"
-#: lang.pm:250
+#: lang.pm:263 mirror.pm:16 timezone.pm:220
+#, c-format
+msgid "Czech Republic"
+msgstr "República Txeca"
+
+#: lang.pm:264 mirror.pm:21 timezone.pm:225
+#, c-format
+msgid "Germany"
+msgstr "Alemanya"
+
+#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "Djibouti"
-#: lang.pm:252
+#: lang.pm:266 mirror.pm:17 timezone.pm:221
+#, c-format
+msgid "Denmark"
+msgstr "Dinamarca"
+
+#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "Dominica"
-#: lang.pm:253
+#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "República Dominicana"
-#: lang.pm:254 network/adsl_consts.pm:44
+#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "Algèria"
-#: lang.pm:255
+#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "Equador"
-#: lang.pm:257
+#: lang.pm:271 mirror.pm:18 timezone.pm:222
+#, c-format
+msgid "Estonia"
+msgstr "Estònia"
+
+#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "Egipte"
-#: lang.pm:258
+#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "Sàhara Occidental"
-#: lang.pm:259
+#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "Eritrea"
-#: lang.pm:261
+#: lang.pm:275 mirror.pm:36 timezone.pm:240
+#, c-format
+msgid "Spain"
+msgstr "Espanya"
+
+#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "Etiòpia"
-#: lang.pm:263
+#: lang.pm:277 mirror.pm:19 timezone.pm:223
+#, c-format
+msgid "Finland"
+msgstr "Finlàndia"
+
+#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "Fiji"
-#: lang.pm:264
+#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Illes Malvines (Falkland)"
-#: lang.pm:265
+#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "Micronèsia"
-#: lang.pm:266
+#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "Illes Fèroe"
-#: lang.pm:268
+#: lang.pm:282 mirror.pm:20 timezone.pm:224
+#, c-format
+msgid "France"
+msgstr "França"
+
+#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "Gabon"
-#: lang.pm:269 network/adsl_consts.pm:954 network/adsl_consts.pm:965
-#: network/netconnect.pm:46
+#: lang.pm:284 timezone.pm:244
#, c-format
msgid "United Kingdom"
msgstr "Regne Unit"
-#: lang.pm:270
+#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "Grenada"
-#: lang.pm:271
+#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "Geòrgia"
-#: lang.pm:272
+#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "Guaiana Francesa"
-#: lang.pm:273
+#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "Ghana"
-#: lang.pm:274
+#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "Gibraltar"
-#: lang.pm:275
+#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "Groenlàndia"
-#: lang.pm:276
+#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "Gàmbia"
-#: lang.pm:277
+#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "Guinea"
-#: lang.pm:278
+#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "Guadalupe"
-#: lang.pm:279
+#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "Guinea Equatorial"
-#: lang.pm:281
+#: lang.pm:295 mirror.pm:22 timezone.pm:226
+#, c-format
+msgid "Greece"
+msgstr "Grècia"
+
+#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "Illes Geòrgia del Sud i Sandwich del Sud"
-#: lang.pm:282
+#: lang.pm:297 timezone.pm:249
#, c-format
msgid "Guatemala"
msgstr "Guatemala"
-#: lang.pm:283
+#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "Guam"
-#: lang.pm:284
+#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "Guinea Bissau"
-#: lang.pm:285
+#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "Guyana"
-#: lang.pm:286
+#: lang.pm:301
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "Xina (Hong Kong)"
-#: lang.pm:287
+#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Illa Heard i Illes McDonald"
-#: lang.pm:288
+#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "Hondures"
-#: lang.pm:289
+#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "Croàcia"
-#: lang.pm:290
+#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "Haití"
-#: lang.pm:292
+#: lang.pm:306 mirror.pm:23 timezone.pm:227
+#, c-format
+msgid "Hungary"
+msgstr "Hongria"
+
+#: lang.pm:307 timezone.pm:202
#, c-format
msgid "Indonesia"
msgstr "Indonèsia"
-#: lang.pm:295
+#: lang.pm:308 mirror.pm:24 timezone.pm:228
+#, c-format
+msgid "Ireland"
+msgstr "Irlanda"
+
+#: lang.pm:309 mirror.pm:25 timezone.pm:204
+#, c-format
+msgid "Israel"
+msgstr "Israel"
+
+#: lang.pm:310 timezone.pm:201
#, c-format
msgid "India"
msgstr "Índia"
-#: lang.pm:296
+#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Territori Britànic de l'Oceà Índic"
-#: lang.pm:297
+#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "Iraq"
-#: lang.pm:298
+#: lang.pm:313 timezone.pm:203
#, c-format
msgid "Iran"
msgstr "Iran"
-#: lang.pm:299
+#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "Islàndia"
-#: lang.pm:301
+#: lang.pm:315 mirror.pm:26 timezone.pm:229
+#, c-format
+msgid "Italy"
+msgstr "Itàlia"
+
+#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "Jamaica"
-#: lang.pm:302
+#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "Jordània"
-#: lang.pm:304
+#: lang.pm:318 mirror.pm:27 timezone.pm:205
+#, c-format
+msgid "Japan"
+msgstr "Japó"
+
+#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "Kenya"
-#: lang.pm:305
+#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "Kirguizistan"
-#: lang.pm:306
+#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "Cambodja"
-#: lang.pm:307
+#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "Kiribati"
-#: lang.pm:308
+#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "Comores"
-#: lang.pm:309
+#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Saint Christopher i Nevis"
-#: lang.pm:310
+#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "Corea (Nord)"
-#: lang.pm:311
+#: lang.pm:326 timezone.pm:206
#, c-format
msgid "Korea"
msgstr "Corea"
-#: lang.pm:312
+#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "Kuwait"
-#: lang.pm:313
+#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "Illes Caiman"
-#: lang.pm:314
+#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "Kazakhstan"
-#: lang.pm:315
+#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "Laos"
-#: lang.pm:316
+#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "Líban"
-#: lang.pm:317
+#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "Saint Lucia"
-#: lang.pm:318
+#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "Liechtenstein"
-#: lang.pm:319
+#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "Sri Lanka"
-#: lang.pm:320
+#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "Libèria"
-#: lang.pm:321
+#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "Lesotho"
-#: lang.pm:322 network/adsl_consts.pm:600
+#: lang.pm:337 timezone.pm:230
#, c-format
msgid "Lithuania"
msgstr "Lituània"
-#: lang.pm:323
+#: lang.pm:338 timezone.pm:231
#, c-format
msgid "Luxembourg"
msgstr "Luxemburg"
-#: lang.pm:324
+#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "Letònia"
-#: lang.pm:325
+#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "Líbia"
-#: lang.pm:326 network/adsl_consts.pm:609
+#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "Marroc"
-#: lang.pm:327
+#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "Mònaco"
-#: lang.pm:328
+#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "Moldàvia"
-#: lang.pm:329
+#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "Madagascar"
-#: lang.pm:330
+#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "Illes Marshall"
-#: lang.pm:331
+#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "Macedònia"
-#: lang.pm:332
+#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "Mali"
-#: lang.pm:333
+#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "Myanmar"
-#: lang.pm:334
+#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "Mongòlia"
-#: lang.pm:335
+#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "Illes Marianes del Nord"
-#: lang.pm:336
+#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "Martinica"
-#: lang.pm:337
+#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "Mauritània"
-#: lang.pm:338
+#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "Montserrat"
-#: lang.pm:339
+#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "Malta"
-#: lang.pm:340
+#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "Maurici"
-#: lang.pm:341
+#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "Maldives"
-#: lang.pm:342
+#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "Malawi"
-#: lang.pm:343
+#: lang.pm:358 timezone.pm:250
#, c-format
msgid "Mexico"
msgstr "Mèxic"
-#: lang.pm:344
+#: lang.pm:359 timezone.pm:207
#, c-format
msgid "Malaysia"
msgstr "Malàisia"
-#: lang.pm:345
+#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "Moçambic"
-#: lang.pm:346
+#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "Namíbia"
-#: lang.pm:347
+#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "Nova Caledònia"
-#: lang.pm:348
+#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "Níger"
-#: lang.pm:349
+#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "Illa Norfolk"
-#: lang.pm:350
+#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "Nigèria"
-#: lang.pm:351
+#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "Nicaragua"
-#: lang.pm:354
+#: lang.pm:367 mirror.pm:28 timezone.pm:232
+#, c-format
+msgid "Netherlands"
+msgstr "Països Baixos"
+
+#: lang.pm:368 mirror.pm:30 timezone.pm:233
+#, c-format
+msgid "Norway"
+msgstr "Noruega"
+
+#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "Nepal"
-#: lang.pm:355
+#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "Nauru"
-#: lang.pm:356
+#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "Niue"
-#: lang.pm:358
+#: lang.pm:372 mirror.pm:29 timezone.pm:255
+#, c-format
+msgid "New Zealand"
+msgstr "Nova Zelanda"
+
+#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "Oman"
-#: lang.pm:359
+#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "Panamà"
-#: lang.pm:360
+#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "Perú"
-#: lang.pm:361
+#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "Polinèsia francesa"
-#: lang.pm:362
+#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "Papua Nova Guinea"
-#: lang.pm:363
+#: lang.pm:378 timezone.pm:208
#, c-format
msgid "Philippines"
msgstr "Filipines"
-#: lang.pm:364
+#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "Pakistan"
-#: lang.pm:366
+#: lang.pm:380 mirror.pm:31 timezone.pm:234
+#, c-format
+msgid "Poland"
+msgstr "Polònia"
+
+#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Saint Pierre i Miquelon"
-#: lang.pm:367
+#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "Pitcairn"
-#: lang.pm:368
+#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "Puerto Rico"
-#: lang.pm:369
+#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "Palestina"
-#: lang.pm:371
+#: lang.pm:385 mirror.pm:32 timezone.pm:235
+#, c-format
+msgid "Portugal"
+msgstr "Portugal"
+
+#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "Paraguai"
-#: lang.pm:372
+#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "Palau"
-#: lang.pm:373
+#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "Qatar"
-#: lang.pm:374
+#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "Reunion"
-#: lang.pm:375
+#: lang.pm:390 timezone.pm:236
#, c-format
msgid "Romania"
msgstr "Romania"
-#: lang.pm:377
+#: lang.pm:391 mirror.pm:33
+#, c-format
+msgid "Russia"
+msgstr "Rússia"
+
+#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "Rwanda"
-#: lang.pm:378
+#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "Aràbia Saudita"
-#: lang.pm:379
+#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "Illes Salomó"
-#: lang.pm:380
+#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "Seychelles"
-#: lang.pm:381
+#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "Sudan"
-#: lang.pm:383
+#: lang.pm:397 mirror.pm:37 timezone.pm:241
+#, c-format
+msgid "Sweden"
+msgstr "Suècia"
+
+#: lang.pm:398 timezone.pm:209
#, c-format
msgid "Singapore"
msgstr "Singapur"
-#: lang.pm:384
+#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "Saint Helena"
-#: lang.pm:385 network/adsl_consts.pm:747
+#: lang.pm:400 timezone.pm:239
#, c-format
msgid "Slovenia"
msgstr "Eslovènia"
-#: lang.pm:386
+#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Illes Svalbard i Jan Mayen"
-#: lang.pm:388
+#: lang.pm:402 mirror.pm:34 timezone.pm:238
+#, c-format
+msgid "Slovakia"
+msgstr "Eslovàquia"
+
+#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "Sierra Leone"
-#: lang.pm:389
+#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "San Marino"
-#: lang.pm:390 network/adsl_consts.pm:737
+#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "Senegal"
-#: lang.pm:391
+#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "Somàlia"
-#: lang.pm:392
+#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "Surinam"
-#: lang.pm:393
+#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "Sao Tome i Príncipe"
-#: lang.pm:394
+#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "El Salvador"
-#: lang.pm:395
+#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "Síria"
-#: lang.pm:396
+#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "Swazilàndia"
-#: lang.pm:397
+#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Illes Turks i Caicos"
-#: lang.pm:398
+#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "Txad"
-#: lang.pm:399
+#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "Territoris francesos del Sud"
-#: lang.pm:400
+#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "Togo"
-#: lang.pm:402
+#: lang.pm:416 mirror.pm:40 timezone.pm:211
+#, c-format
+msgid "Thailand"
+msgstr "Tailàndia"
+
+#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "Tadjikistan"
-#: lang.pm:403
+#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "Tokelau"
-#: lang.pm:404
+#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "Timor Oriental"
-#: lang.pm:405
+#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "Turkmenistan"
-#: lang.pm:406 network/adsl_consts.pm:931
+#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "Tunísia"
-#: lang.pm:407
+#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "Tonga"
-#: lang.pm:408
+#: lang.pm:423 timezone.pm:212
#, c-format
msgid "Turkey"
msgstr "Turquia"
-#: lang.pm:409
+#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "Trinitat i Tobago"
-#: lang.pm:410
+#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "Tuvalu"
-#: lang.pm:412
+#: lang.pm:426 mirror.pm:39 timezone.pm:210
+#, c-format
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#: lang.pm:427 timezone.pm:195
#, c-format
msgid "Tanzania"
msgstr "Tanzània"
-#: lang.pm:413
+#: lang.pm:428 timezone.pm:243
#, c-format
msgid "Ukraine"
msgstr "Ucraïna"
-#: lang.pm:414
+#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "Uganda"
-#: lang.pm:415
+#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "Illes Perifèriques Menors dels EUA"
-#: lang.pm:417
+#: lang.pm:431 mirror.pm:41 timezone.pm:251
+#, c-format
+msgid "United States"
+msgstr "Estats Units"
+
+#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "Uruguai"
-#: lang.pm:418
+#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "Uzbekistan"
-#
-#: lang.pm:419
+#: lang.pm:434
#, c-format
msgid "Vatican"
msgstr "Vaticà"
-#: lang.pm:420
+#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "Saint Vincent i les Grenadines"
-#: lang.pm:421
+#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "Veneçuela"
-#: lang.pm:422
+#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "Illes Verge Britàniques"
-#: lang.pm:423
+#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Illes Verge Americanes"
-#: lang.pm:424
+#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "Vietnam"
-#: lang.pm:425
+#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "Vanuatu"
-#: lang.pm:426
+#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "Wallis i Futuna"
-#: lang.pm:427
+#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "Samoa"
-#: lang.pm:428
+#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "Iemen"
-#: lang.pm:429
+#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "Mayotte"
-#: lang.pm:431
+#: lang.pm:445 mirror.pm:35 timezone.pm:194
+#, c-format
+msgid "South Africa"
+msgstr "Sud-àfrica"
+
+#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "Zàmbia"
-#: lang.pm:432
+#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1149
+#: lang.pm:1153
#, c-format
msgid "Welcome to %s"
msgstr "Benvingut a %s"
@@ -9830,13 +4613,358 @@ msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
"El carregador d'arrencada no funciona amb /boot a diferents volums físics."
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:10
+#, fuzzy, c-format
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the Mandriva "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandriva Linux distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
+"Mandriva S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using the Software Products in any manner, you "
+"explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
+"Software Products.\n"
+"\n"
+"\n"
+"2. Limited Warranty\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
+"be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if Mandriva S.A. has been advised of the possibility or "
+"occurrence of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
+"\n"
+"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
+"no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Mandriva Linux sites which are prohibited or restricted in some "
+"countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
+"included in the Software Products.\n"
+"\n"
+"\n"
+"3. The GPL License and Related Licenses\n"
+"\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to Mandriva.\n"
+"The programs developed by Mandriva S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by Mandriva S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
+"\n"
+"\n"
+"4. Intellectual Property Rights\n"
+"\n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
+"as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
+"Mandriva S.A. \n"
+"\n"
+"\n"
+"5. Governing Laws \n"
+"\n"
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
+"For any question on this document, please contact Mandriva S.A. \n"
+msgstr ""
+"Introducció\n"
+"\n"
+"D'ara endavant, hom es referirà al sistema operatiu i als diferents\n"
+"components disponibles en la distribució Mandriva Linux com als\n"
+"\"Productes de programari\". Els Productes de programari inclouen,\n"
+"però no estan restringits a, el conjunt de programes, mètoDES, regles\n"
+"i documentació relativa al sistema operatiu i els diferents\n"
+"components de la distribució Mandriva Linux.\n"
+"\n"
+"\n"
+"1. Acord de llicència\n"
+"\n"
+"Si us plau, llegiu atentament aquest document. Aquest document és un\n"
+"acord de llicència entre la vostra persona i Mandriva S.A., que\n"
+"s'aplica als Productes de programari. Pel fet d'instal·lar, duplicar\n"
+"o utilitzar els Productes de programari en qualsevol forma esteu\n"
+"acceptant explícitament, i expressant el vostre acord a avenir-vos a\n"
+"les clàusules i condicions d'aquesta Llicència. Si no esteu d'acord\n"
+"amb qualsevol part de la Llicència, no esteu autoritzat a instal·lar,\n"
+"duplicar o utilitzar els Productes de programari. Qualsevol intent\n"
+"d'instal·lar, duplicar o utilitzar els Productes de programari en una\n"
+"forma que no s'adapti a les clàusules i condicions d'aquesta\n"
+"Llicència, és nul i finalitzarà els vostres drets sobre la mateixa.\n"
+"En finalitzar-se la Llicència, heu de destruir immediatament totes\n"
+"les còpies dels Productes de programari.\n"
+"\n"
+"\n"
+"2. Garantia limitada\n"
+"\n"
+"Els Productes de programari i documentació adjunta es subministren\n"
+"\"tal com són\", sense cap garantia, fins al punt permés per la llei.\n"
+"Mandriva S.A. no serà, sota cap circumstància, i fins al punt\n"
+"permés per la llei, responsable de cap dany especial, incidental ni\n"
+"directe (incloent, sense limitar-se a, els danys per pèrdua de\n"
+"negocis, interrupció de negocis, pèrdues financeres, multes i costes\n"
+"judicials, o qualsevol altre dany que resultin d'un judici, o\n"
+"qualsevol altre pèrdua d'importància) que resulti de l'ús o de la\n"
+"impossibilitat d'utilitzar els Productes de programari, fins i tot si\n"
+"Mandriva S.A. ha estat avisat de la possibilitat que\n"
+"s'esdevinguin aquests danys.\n"
+"\n"
+"RESPONSABILITAT LIMITADA RELATIVA A LA POSSESSIÓ O UTILITZACIÓ DE PROGRAMARI "
+"PROHIBIT EN ALGUNS PAÏSOS\n"
+"\n"
+"Fins al punt permés per la llei, Mandriva S.A. o els seus\n"
+"distribuïdors no seran, sota cap circumstància, responsables de cap\n"
+"dany especial, incidental ni directe (incloent, sense limitar-se a,\n"
+"els danys per pèrdua de negocis, interrupció de negocis, pèrdues\n"
+"financeres, multes i costes judicials, o qualsevol altre dany que\n"
+"resultin d'un judici, o qualsevol altre pèrdua d'importància) que\n"
+"resulti de la possessió i utilització dels components de programari o\n"
+"de la seva descàrrega des d'un dels llocs de Mandriva Linux, que\n"
+"estiguin prohibides o restringides en alguns països per les lleis\n"
+"locals. Aquesta responsabilitat limitada s'aplica, però no hi està\n"
+"restringida, als potents components criptogràfics inclosos als\n"
+"Productes de programari.\n"
+"\n"
+"\n"
+"3. la llicència GPL i llicències relacionades\n"
+"\n"
+"Els Productes de programari consisteixen en components creats per\n"
+"diferents persones o entitats. La majoria d'aquests components es\n"
+"regeixen per les clàusules i condicions de la Llicència General\n"
+"Pública de GNU, a la qual d'ara endavant hom s'hi referirà com a\n"
+"\"GPL\", o de llicències similars. la majoria d'aquestes llicències\n"
+"us permeten duplicar, adaptar o redistribuir els components que\n"
+"cobreixen. Si us plau, llegiu atentament les clàusules i condicions\n"
+"de l'acord de llicència de cada component abans d'utilitzar-lo.\n"
+"Qualsevol pregunta sobre la llicència d'un component s'ha d'adreçar\n"
+"al seu autor i no a Mandriva.\n"
+"Els programes desenvolupats per Mandriva S.A. es regeixen per la\n"
+"llicència GPL.La documentació escrita per Mandriva S.A. està regida per una\n"
+"llicència específica; consulteu la documentació per a més\n"
+"informació.\n"
+"\n"
+"\n"
+"4. Drets sobre la propietat intel·lectual\n"
+"\n"
+"Tots els drets sobre els components dels Productes de programari\n"
+"pertanyen als seus autors respectius i estan protegits per les lleis\n"
+"de propietat intel·lectual i de copyright aplicables als programes\n"
+"informàtics.\n"
+"Mandriva S.A. es reserva els drets de modificar o adaptar els\n"
+"Productes de programari, totalment o parcialment, per tots els\n"
+"mitjans i amb totes les finalitats.\n"
+"\"Mandriva\", \"Mandriva Linux\" i els logotips associats son marques\n"
+"registrades de Mandriva S.A.\n"
+"\n"
+"\n"
+"5. Lleis rectores \n"
+"\n"
+"Si qualsevol part d'aquest acord és declarat nul, il·legal o\n"
+"inaplicable per un tribunal, aquesta part s'exclourà del contracte.\n"
+"Seguiu obligat, però, per les altres seccions aplicables de\n"
+"l'acord.\n"
+"Les clàusules i condicions d'aquesta Llicència es regeixen per les\n"
+"lleis de França.\n"
+"Tots els litigis sobre les clàusules d'aquesta llicència es dirimiran\n"
+"preferiblement fora dels tribunals. Com a últim recurs, el litigi es\n"
+"portarà als tribunals competents de París, França.\n"
+"Per a qualsevol tema relacionat amb aquest document, poseu-vos en\n"
+"contacte amb Mandriva S.A.\n"
+
+#: messages.pm:90
+#, c-format
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
+"Avís: El programari lliure no està necessàriament lliure de patents, alguns "
+"dels programes\n"
+"lliures inclosos poden estar coberts per patents al teu país. Per exemple, "
+"els\n"
+"decodificadors MP3 inclosos poden necessitar una llicència per poder ser "
+"usats (consulteu\n"
+"http://www.mp3licensing.com per més detalls). Si no esteu segur si una "
+"patent és aplicable\n"
+"consulteu les lleis locals."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:98
+#, c-format
+msgid ""
+"\n"
+"Warning\n"
+"\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
+"\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
+msgstr ""
+"\n"
+"Avís\n"
+"\n"
+"Si us plau, llegiu atentament les clàusules següents. Si no esteu\n"
+"d'acord amb qualsevol d'elles, no esteu autoritzat a instal·lar\n"
+"els CD següents. Premeu 'Rebutja' per continuar la instal·lació\n"
+"sense utilitzar aquests CD.\n"
+"\n"
+"\n"
+"Alguns dels components que s'inclouen en aquest CD no estan\n"
+"regits per la llicència GPL o acords semblants. Cadascun d'aquests\n"
+"components es regeix per les clàusules i condicions de la seva\n"
+"pròpia llicència específica. Si us plau, llegiu atentament i\n"
+"accepteu aquestes llicències específiques abans d'utilitzar o\n"
+"redistribuir els components esmentats. En general, aquestes\n"
+"llicències impedeixen la transferència, duplicació (excepte amb\n"
+"la finalitat de fer-ne còpies de seguretat), redistribució,\n"
+"enginyeria inversa, desassemblatge, decompilació o modificació del\n"
+"component. Qualsevol violació de l'acord finalitzarà immediatament\n"
+"els vostres drets sobre la llicència específica. Tret que la\n"
+"llicència específica us en garanteixi els drets, normalment no\n"
+"podreu instal·lar els programes en més d'un sistema, ni adaptar-lo\n"
+"per utilitzar-lo en una xarxa. En cas de dubte, poseu-vos en\n"
+"contacte directament amb el distribuïdor o editor del component.\n"
+"La transferència a terceres parts i la còpia d'aquests components,\n"
+"incloent la documentació, estan en general prohibides.\n"
+"\n"
+"\n"
+"Tots els drets sobre els components del CD següent pertanyen als\n"
+"seus autors respectius i estan protegits per les lleis de\n"
+"propietat intel·lectual i de copyright aplicables als programes\n"
+"informàtics.\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:131
+#, c-format
+msgid ""
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press Enter to reboot.\n"
+"\n"
+"\n"
+"For information on fixes which are available for this release of Mandriva "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandriva Linux User's Guide."
+msgstr ""
+"Felicitats! La instal·lació ha acabat.\n"
+"Traieu el suport d'arrencada i premeu Retorn per tornar a arrencar.\n"
+"\n"
+"\n"
+"Trobareu la solució als problemes coneguts d'aquesta versió del\n"
+"Mandriva Linux a la fe d'errates que hi ha a \n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"La informació sobre com configurar el vostre sistema està disponible a\n"
+"l'últim capítol d'instal·lació de la Guia Oficial de l'Usuari del\n"
+"Mandriva Linux."
+
#
#: modules/interactive.pm:19
#, fuzzy, c-format
msgid "This driver has no configuration parameter!"
msgstr "Configuració del controlador del SAI"
-#
#: modules/interactive.pm:22
#, c-format
msgid "Module configuration"
@@ -9894,12 +5022,7 @@ msgstr "S'està instal·lant el controlador pel controlador ethernet %s"
msgid "Installing driver for %s card %s"
msgstr "S'està instal·lant el controlador per a la targeta de %s %s"
-#: modules/interactive.pm:99
-#, c-format
-msgid "(module %s)"
-msgstr "(mòdul %s)"
-
-#: modules/interactive.pm:109
+#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9908,7 +5031,7 @@ msgstr ""
"Ara podeu subministrar les opcions per al mòdul %s.\n"
"Tingueu en compte que qualsevol adreça s'ha de prefixar amb 0x, com '0x123'"
-#: modules/interactive.pm:115
+#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9919,18 +5042,18 @@ msgstr ""
"Les opcions estan en el format \"nom=valor nom2=valor2 ...\".\n"
"Per exemple, \"io=0x300 irq=7\""
-#: modules/interactive.pm:117
+#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "Opcions del mòdul:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: modules/interactive.pm:130
+#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr "Quin controlador de %s he de provar?"
-#: modules/interactive.pm:139
+#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -9947,17 +5070,17 @@ msgstr ""
"cerqui al vostre ordinador la informació que necessita? Aquesta recerca\n"
"podria penjar l'ordinador, però això no causaria cap dany."
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "Exploració automàtica"
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "Especifica les opcions"
-#: modules/interactive.pm:155
+#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -9966,1923 +5089,17 @@ msgstr ""
"Ha fallat la càrrega del mòdul %s.\n"
"Voleu tornar-ho a intentar amb altres paràmetres?"
-#: modules/parameters.pm:49
-#, c-format
-msgid "a number"
-msgstr "un número"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d nombres separats per coma"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d cadenes separades per coma"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated numbers"
-msgstr "nombres separats per coma"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated strings"
-msgstr "cadenes separades per coma"
-
-#: mouse.pm:25
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Ratolí de Sun"
-
-#: mouse.pm:31 security/level.pm:12
-#, c-format
-msgid "Standard"
-msgstr "Estàndard"
-
-#: mouse.pm:32
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: mouse.pm:33
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Ratolí PS2 genèric amb rodeta"
-
-#: mouse.pm:34
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/modem.pm:68 network/modem.pm:81 network/modem.pm:86
-#: network/modem.pm:115 network/netconnect.pm:596 network/netconnect.pm:601
-#: network/netconnect.pm:613 network/netconnect.pm:618
-#: network/netconnect.pm:634 network/netconnect.pm:636
-#, c-format
-msgid "Automatic"
-msgstr "Automàtic"
-
-#: mouse.pm:39 mouse.pm:73
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: mouse.pm:40 mouse.pm:68
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: mouse.pm:41
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: mouse.pm:42 mouse.pm:52
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
-
-#: mouse.pm:47 mouse.pm:79
-#, c-format
-msgid "1 button"
-msgstr "1 botó"
-
-#: mouse.pm:48 mouse.pm:57
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Ratolí genèric de 2 botons"
-
-#: mouse.pm:50 mouse.pm:59
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Ratolí genèric de 3 botons amb emulació de rodeta"
-
-#: mouse.pm:51
-#, c-format
-msgid "Wheel"
-msgstr "Rodeta"
-
-#: mouse.pm:55
-#, c-format
-msgid "serial"
-msgstr "sèrie"
-
-#: mouse.pm:58
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Ratolí genèric de 3 botons"
-
-#: mouse.pm:60
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: mouse.pm:61
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: mouse.pm:62
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan amb emulació de rodeta"
-
-#: mouse.pm:63
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: mouse.pm:65
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: mouse.pm:66
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Series amb emulació de rodeta"
-
-#: mouse.pm:67
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: mouse.pm:69
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
-
-#: mouse.pm:70
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: mouse.pm:71
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (sèrie, tipus C7 antic)"
-
-#: mouse.pm:72
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech Mouse (sèrie, tipus C7 antic) amb emulació de rodeta"
-
-#: mouse.pm:74
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse amb emulació de rodeta"
-
-#: mouse.pm:77
-#, c-format
-msgid "busmouse"
-msgstr "busmouse"
-
-#: mouse.pm:80
-#, c-format
-msgid "2 buttons"
-msgstr "2 botons"
-
-#: mouse.pm:81
-#, c-format
-msgid "3 buttons"
-msgstr "3 botons"
-
-#: mouse.pm:82
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3·botons amb emulació de rodeta"
-
-#
-#: mouse.pm:86
-#, c-format
-msgid "Universal"
-msgstr "Universal"
-
-#: mouse.pm:88
-#, c-format
-msgid "Any PS/2 & USB mice"
-msgstr "Qualsevol ratolí PS/2 o USB"
-
-#: mouse.pm:89
-#, c-format
-msgid "Microsoft Xbox Controller S"
-msgstr "Microsoft Xbox Controller S"
-
-#: mouse.pm:93 standalone/drakconnect:351 standalone/drakvpn:1126
-#, c-format
-msgid "none"
-msgstr "cap"
-
-#: mouse.pm:95
-#, c-format
-msgid "No mouse"
-msgstr "Cap ratolí"
-
-#: mouse.pm:304 mouse.pm:367 mouse.pm:376 mouse.pm:435
-#, c-format
-msgid "Synaptics Touchpad"
-msgstr "Synaptics Touchpad"
-
-#: mouse.pm:561
-#, c-format
-msgid "Please test the mouse"
-msgstr "Si us plau proveu el ratolí."
-
-#: mouse.pm:563
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Per activar el ratolí,"
-
-#: mouse.pm:564
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "MOVEU LA RODETA!"
-
-#: network/drakfirewall.pm:12 share/compssUsers.pl:85
-#, c-format
-msgid "Web Server"
-msgstr "Servidor Web"
-
-#: network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "Servidor de Noms de Domini (DNS)"
-
-#: network/drakfirewall.pm:22
-#, c-format
-msgid "SSH server"
-msgstr "Servidor SSH"
-
-#
-#: network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "Servidor FTP"
-
-#
-#: network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "Servidor de correu"
-
-#
-#: network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "Servidor POP i IMAP"
-
-#: network/drakfirewall.pm:42
-#, c-format
-msgid "Telnet server"
-msgstr "Servidor telnet"
-
-#: network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr "Compartició de fitxers Windows (SMB)"
-
-#: network/drakfirewall.pm:54
-#, c-format
-msgid "CUPS server"
-msgstr "Servidor CUPS"
-
-#: network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr "Petició echo (ping)"
-
-#: network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr "BitTorrent"
-
-#: network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr ""
-
-#: network/drakfirewall.pm:165
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-"Configuració del drakfirewall\n"
-"\n"
-"Aquí es configura un tallafocs personal per a aquest ordinador Mandriva "
-"Linux.\n"
-"Per a una potent solució de tallafocs dedicada, consulteu si us plau la \n"
-"distribució especialitzada Mandriva Security Firewall."
-
-#: network/drakfirewall.pm:171
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-"Configuració del drakfirewall\n"
-"\n"
-"Assegureu-vos d'haver configurat l'accés a la xarxa local/Internet\n"
-"amb el drakconnect abans de continuar."
-
-#: network/drakfirewall.pm:188
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "A quins serveis voleu permetre la connexió des d'Internet?"
-
-#: network/drakfirewall.pm:191
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-"Podeu introduir diferents ports.\n"
-"Són exemples vàlids: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Cerqueu informació a /etc/services"
-
-#: network/drakfirewall.pm:197
-#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-"El port introduït no és vàlid: %s.\n"
-"El format correcte és \"port/tcp\" o \"port/udp\", \n"
-"on el port es troba entre 1 i 65535.\n"
-"\n"
-"També podeu donar rangs de ports (exemple: 24300:24350/udp)"
-
-#: network/drakfirewall.pm:207
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Tot (sense tallafoc)"
-
-#: network/drakfirewall.pm:209
-#, c-format
-msgid "Other ports"
-msgstr "Altres ports"
-
-#: network/drakfirewall.pm:253 network/drakfirewall.pm:256
-#: standalone/drakids:33 standalone/drakids:136 standalone/drakids:145
-#: standalone/drakids:170 standalone/drakids:179 standalone/drakids:189
-#: standalone/drakids:265 standalone/net_applet:59 standalone/net_applet:202
-#: standalone/net_applet:385 standalone/net_applet:422
-#, c-format
-msgid "Interactive Firewall"
-msgstr "Tallafocs interactiu"
-
-#: network/drakfirewall.pm:254
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activity should be watched."
-msgstr ""
-
-#: network/drakfirewall.pm:259
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr ""
-
-#
-#: network/ifw.pm:129
-#, c-format
-msgid "Port scanning"
-msgstr "Escanejat de ports"
-
-#: network/ifw.pm:130
-#, c-format
-msgid "Service attack"
-msgstr "Atac a un servei"
-
-#: network/ifw.pm:131
-#, c-format
-msgid "Password cracking"
-msgstr "Trencament de contrasenya"
-
-#: network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr ""
-
-#: network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:135
-#, c-format
-msgid "The %s service has been attacked by %s."
-msgstr "El servei %s ha estat atacat per %s."
-
-#: network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:137
-#, fuzzy, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr "El servei %s ha estat atacat per %s."
-
-#: network/isdn.pm:117 network/netconnect.pm:463 network/netconnect.pm:557
-#: network/netconnect.pm:560 network/netconnect.pm:708
-#: network/netconnect.pm:712
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr ""
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "No ho sé"
-
-#: network/isdn.pm:161 network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: network/isdn.pm:162 network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/netconnect.pm:601 network/netconnect.pm:618
-#: network/netconnect.pm:634
-#, c-format
-msgid "Manual"
-msgstr "Manual"
-
-#: network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr ""
-
-#: network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr "Si us plau escolliu el controlador de Windows (fitxer .inf)"
-
-#: network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr "No s'ha pogut instal·lar el controlador ndiswrapper %s!"
-
-#: network/ndiswrapper.pm:89
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr "No s'ha pogut carregar el mòdul ndiswrapper!"
-
-#: network/ndiswrapper.pm:95
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-
-#: network/ndiswrapper.pm:101
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr ""
-
-#: network/netconnect.pm:69 network/netconnect.pm:493
-#: network/netconnect.pm:505
-#, c-format
-msgid "Manual choice"
-msgstr "Selecció manual"
-
-#: network/netconnect.pm:69
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Targeta XDSI interna"
-
-#
-#: network/netconnect.pm:80 printer/printerdrake.pm:1622 standalone/drakups:72
-#, c-format
-msgid "Manual configuration"
-msgstr "Configuració manual"
-
-#: network/netconnect.pm:81 standalone/drakroam:121
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr "IP automàtica (BOOTP/DHCP)"
-
-#: network/netconnect.pm:83
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
-msgstr "IP automàtica (BOOTP/DHCP/Zeroconf)"
-
-#
-#: network/netconnect.pm:86
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protocol per a la resta del món"
-
-#
-#: network/netconnect.pm:88 standalone/drakconnect:563
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Protocol europeu (EDSS1)"
-
-#
-#: network/netconnect.pm:89 standalone/drakconnect:564
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Protocol per a la resta del món\n"
-"Cap canal D (línies punt a punt)"
-
-#: network/netconnect.pm:103 standalone/harddrake2:328
-#: standalone/net_monitor:102 standalone/net_monitor:103
-#: standalone/net_monitor:108
-#, c-format
-msgid "unknown"
-msgstr "desconegut"
-
-#: network/netconnect.pm:120 network/thirdparty.pm:220
-#, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "Mòdem Alcatel Speedtouch USB"
-
-#: network/netconnect.pm:121
-#, c-format
-msgid "Sagem USB modem"
-msgstr "Mòdem Sagem USB"
-
-#: network/netconnect.pm:122
-#, c-format
-msgid "Bewan modem"
-msgstr "Mòdem Bewan PCI"
-
-#: network/netconnect.pm:123
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr "Mòdem ECI Hi-Focus"
-
-#: network/netconnect.pm:127
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr "Protocol de configuració d'ordinadors dinàmic (DHCP)"
-
-#
-#: network/netconnect.pm:128
-#, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "Configuració TCP/IP manual"
-
-#: network/netconnect.pm:129
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr "Protocol de tunneling punt a punt (PPTP)"
-
-#: network/netconnect.pm:130
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr "PPP sobre Ethernet (PPPoE)"
-
-#: network/netconnect.pm:131
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr "PPP sobre ATM (PPPoA)"
-
-#: network/netconnect.pm:132
-#, c-format
-msgid "DSL over CAPI"
-msgstr ""
-
-#: network/netconnect.pm:136
-#, c-format
-msgid "Bridged Ethernet LLC"
-msgstr ""
-
-#: network/netconnect.pm:137
-#, c-format
-msgid "Bridged Ethernet VC"
-msgstr ""
-
-#: network/netconnect.pm:138
-#, c-format
-msgid "Routed IP LLC"
-msgstr ""
-
-#: network/netconnect.pm:139
-#, c-format
-msgid "Routed IP VC"
-msgstr ""
-
-#: network/netconnect.pm:140
-#, c-format
-msgid "PPPoA LLC"
-msgstr "PPPoA LLC"
-
-#: network/netconnect.pm:141
-#, c-format
-msgid "PPPoA VC"
-msgstr "PPPoA VC"
-
-#: network/netconnect.pm:145 standalone/drakconnect:498
-#, c-format
-msgid "Script-based"
-msgstr "Basat en script"
-
-#: network/netconnect.pm:146 standalone/drakconnect:498
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: network/netconnect.pm:147 standalone/drakconnect:498
-#, c-format
-msgid "Terminal-based"
-msgstr "Basat en terminal"
-
-#: network/netconnect.pm:148 standalone/drakconnect:498
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: network/netconnect.pm:149 standalone/drakconnect:498
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: network/netconnect.pm:250 standalone/drakconnect:56
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Configuració de xarxa i internet"
-
-#: network/netconnect.pm:256
-#, c-format
-msgid "LAN connection"
-msgstr "Connexió LAN"
-
-#: network/netconnect.pm:257 network/netconnect.pm:276 standalone/drakroam:182
-#: standalone/drakroam:220 standalone/drakroam:223
-#, c-format
-msgid "Wireless connection"
-msgstr "Connexió sense fils"
-
-#
-#: network/netconnect.pm:258
-#, c-format
-msgid "ADSL connection"
-msgstr "Connexió ADSL"
-
-#: network/netconnect.pm:259
-#, c-format
-msgid "Cable connection"
-msgstr "Connexió per cable"
-
-#: network/netconnect.pm:260
-#, c-format
-msgid "ISDN connection"
-msgstr "Connexió XDSI"
-
-#: network/netconnect.pm:261
-#, c-format
-msgid "Modem connection"
-msgstr "Connexió del mòdem"
-
-#: network/netconnect.pm:262
-#, c-format
-msgid "DVB connection"
-msgstr ""
-
-#
-#: network/netconnect.pm:272
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Escolliu la connexió que voleu configurar"
-
-#: network/netconnect.pm:287 network/netconnect.pm:786
-#, c-format
-msgid "Connection Configuration"
-msgstr "Configuració de la connexió"
-
-#: network/netconnect.pm:287 network/netconnect.pm:787
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Si us plau, ompliu o marqueu el camp inferior"
-
-#: network/netconnect.pm:290
-#, c-format
-msgid "Your personal phone number"
-msgstr "El vostre telèfon particular"
-
-#: network/netconnect.pm:291 network/netconnect.pm:790
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Nom del proveïdor (p.ex. proveïdor.net)"
-
-#: network/netconnect.pm:292 standalone/drakconnect:493
-#, c-format
-msgid "Provider phone number"
-msgstr "Número de telèfon del proveïdor"
-
-#: network/netconnect.pm:293
-#, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "DNS 1 del proveïdor (opcional)"
-
-#: network/netconnect.pm:294
-#, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "DNS 2 del proveïdor (opcional)"
-
-#: network/netconnect.pm:295 standalone/drakconnect:444
-#, c-format
-msgid "Dialing mode"
-msgstr "Mode de marcatge"
-
-#
-#: network/netconnect.pm:296 standalone/drakconnect:449
-#: standalone/drakconnect:517
-#, c-format
-msgid "Connection speed"
-msgstr "Velocitat de la connexió"
-
-#: network/netconnect.pm:297 standalone/drakconnect:454
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Temps màxim per connectar (en seg)"
-
-#: network/netconnect.pm:298 network/netconnect.pm:323
-#: network/netconnect.pm:793 standalone/drakconnect:491
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Entrada del compte (nom d'usuari)"
-
-#: network/netconnect.pm:299 network/netconnect.pm:324
-#: network/netconnect.pm:794 standalone/drakconnect:492
-#, c-format
-msgid "Account Password"
-msgstr "Contrasenya del compte"
-
-#: network/netconnect.pm:300 standalone/drakconnect:554
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ de la targeta"
-
-#: network/netconnect.pm:301 standalone/drakconnect:555
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Targeta de memòria (DMA)"
-
-#: network/netconnect.pm:302 standalone/drakconnect:556
-#, c-format
-msgid "Card IO"
-msgstr "E/S de la Targeta"
-
-#: network/netconnect.pm:303 standalone/drakconnect:557
-#, c-format
-msgid "Card IO_0"
-msgstr "E/S_0 de la Targeta"
-
-#: network/netconnect.pm:304
-#, c-format
-msgid "Card IO_1"
-msgstr "E/S_1 de la Targeta"
-
-#: network/netconnect.pm:319
-#, fuzzy, c-format
-msgid "Cable: account options"
-msgstr "Marcatge: Opcions del compte"
-
-#: network/netconnect.pm:322
-#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr ""
-
-#: network/netconnect.pm:348 network/netconnect.pm:670
-#: network/netconnect.pm:826 network/netconnect.pm:1170
-#, c-format
-msgid "Select the network interface to configure:"
-msgstr "Escolliu la interfície de xarxa a configurar:"
-
-#: network/netconnect.pm:350 network/netconnect.pm:385
-#: network/netconnect.pm:671 network/netconnect.pm:828 network/shorewall.pm:70
-#: standalone/drakconnect:714
-#, c-format
-msgid "Net Device"
-msgstr "Dispositiu de xarxa"
-
-#: network/netconnect.pm:351 network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr "Mòdem XDSI extern"
-
-#
-#: network/netconnect.pm:384 standalone/harddrake2:215
-#, c-format
-msgid "Select a device!"
-msgstr "Seleccioneu un dispositiu!"
-
-#: network/netconnect.pm:393 network/netconnect.pm:403
-#: network/netconnect.pm:413 network/netconnect.pm:446
-#: network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Configuració de l'XDSI"
-
-#: network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Quin tipus de targeta teniu?"
-
-#: network/netconnect.pm:404
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"Si teniu una targeta ISA, els valors de la pantalla següent haurien de ser "
-"correctes.\n"
-"\n"
-"Si teniu una targeta PCMCIA, cal que en sapigueu l'\"irq\" i l'\"io\".\n"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "Continua"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "Abandona"
-
-#: network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Quina d'aquestes targetes XDSI teniu?"
-
-#: network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-
-#: network/netconnect.pm:434 standalone/drakconnect:109 standalone/drakups:249
-#: standalone/harddrake2:133
-#, c-format
-msgid "Driver"
-msgstr "Controlador"
-
-#: network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Quin protocol voleu utilitzar?"
-
-#: network/netconnect.pm:448 standalone/drakconnect:109
-#: standalone/drakconnect:300 standalone/drakconnect:562
-#: standalone/drakids:207 standalone/drakvpn:1128
-#, c-format
-msgid "Protocol"
-msgstr "Protocol"
-
-#: network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"Seleccioneu el vostre proveïdor.\n"
-"Si no és a la llista, seleccioneu \"No és a la llista\""
-
-#: network/netconnect.pm:462 network/netconnect.pm:556
-#: network/netconnect.pm:707
-#, c-format
-msgid "Provider:"
-msgstr "Proveïdor:"
-
-#: network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"El vostre mòdem no està suportat pel sistema.\n"
-"Doneu un cop d'ull a http://www.linmodems.org"
-
-#: network/netconnect.pm:490
-#, c-format
-msgid "Select the modem to configure:"
-msgstr "Escolliu el mòdem a configurar:"
-
-#: network/netconnect.pm:525
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr ""
-"Si us plau, seleccioneu el port sèrie al qual teniu connectat el mòdem."
-
-#
-#: network/netconnect.pm:554
-#, c-format
-msgid "Select your provider:"
-msgstr "Seleccioneu el vostre proveïdor:"
-
-#: network/netconnect.pm:578
-#, c-format
-msgid "Dialup: account options"
-msgstr "Marcatge: Opcions del compte"
-
-#: network/netconnect.pm:581
-#, c-format
-msgid "Connection name"
-msgstr "Nom de la connexió"
-
-#: network/netconnect.pm:582
-#, c-format
-msgid "Phone number"
-msgstr "Número de telèfon"
-
-#: network/netconnect.pm:583
-#, c-format
-msgid "Login ID"
-msgstr "ID d'entrada"
-
-#: network/netconnect.pm:598 network/netconnect.pm:631
-#, c-format
-msgid "Dialup: IP parameters"
-msgstr "Marcatge: Paràmetres IP"
-
-#: network/netconnect.pm:601
-#, c-format
-msgid "IP parameters"
-msgstr "Paràmetres IP"
-
-#: network/netconnect.pm:602 network/netconnect.pm:941
-#: printer/printerdrake.pm:460 standalone/drakconnect:109
-#: standalone/drakconnect:316 standalone/drakconnect:882
-#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:284
-#, c-format
-msgid "IP address"
-msgstr "Adreça IP"
-
-#: network/netconnect.pm:603
-#, c-format
-msgid "Subnet mask"
-msgstr "Màscara de la subxarxa"
-
-#: network/netconnect.pm:615
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr "Marcatge: Paràmetres DNS"
-
-#
-#: network/netconnect.pm:618
-#, c-format
-msgid "DNS"
-msgstr "DNS"
-
-#: network/netconnect.pm:619
-#, c-format
-msgid "Domain name"
-msgstr "Nom de domini"
-
-#: network/netconnect.pm:620 network/netconnect.pm:791
-#: standalone/drakconnect:992
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Primer servidor DNS (opcional)"
-
-#: network/netconnect.pm:621 network/netconnect.pm:792
-#: standalone/drakconnect:993
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Segon servidor DNS (opcional)"
-
-#
-#: network/netconnect.pm:622
-#, c-format
-msgid "Set hostname from IP"
-msgstr "Estableix el nom de la màquina a partir de la IP"
-
-#: network/netconnect.pm:634 standalone/drakconnect:327
-#, c-format
-msgid "Gateway"
-msgstr "Passarel·la"
-
-#: network/netconnect.pm:635 standalone/drakroam:124
-#, c-format
-msgid "Gateway IP address"
-msgstr "Adreça IP de la passarel·la"
-
-#: network/netconnect.pm:670
-#, c-format
-msgid "ADSL configuration"
-msgstr "Configuració ADSL"
-
-#: network/netconnect.pm:705
-#, c-format
-msgid "Please choose your ADSL provider"
-msgstr "Si us plau, seleccioneu el vostre proveïdor ADSL"
-
-#: network/netconnect.pm:735
-#, c-format
-msgid ""
-"Please choose your DSL connection type.\n"
-"If you do not know it, keep the preselected type."
-msgstr ""
-
-#
-#: network/netconnect.pm:738
-#, c-format
-msgid "ADSL connection type:"
-msgstr "Tipus de connexió ADSL :"
-
-#: network/netconnect.pm:796
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr "ID de camí virtual (VPI):"
-
-#: network/netconnect.pm:797
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr "ID de circuit virtual (VCI):"
-
-#: network/netconnect.pm:800
-#, c-format
-msgid "Encapsulation:"
-msgstr "Encapsulat :"
-
-#: network/netconnect.pm:830
-#, c-format
-msgid "Manually load a driver"
-msgstr "Carrega un controlador manualment"
-
-#: network/netconnect.pm:831
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr "Usa un controlador de Windows(amb ndiswrapper)"
-
-#: network/netconnect.pm:896
-#, c-format
-msgid "Zeroconf hostname resolution"
-msgstr ""
-
-#: network/netconnect.pm:897 network/netconnect.pm:928
-#, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "S'està configurant el dispositiu de xarxa %s (controlador %s)"
-
-#: network/netconnect.pm:898
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use"
-msgstr ""
-"Es poden usar els següents protocols per configurar una connexió LAN. Si us "
-"plau escolliu el que voleu usar"
-
-#: network/netconnect.pm:929
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Si us plau, introduïu la configuració IP d'aquest ordinador.\n"
-"S'ha d'introduir cada element com una adreça IP en notació decimal amb\n"
-"punts (per exemple, 1.2.3.4)."
-
-#
-#: network/netconnect.pm:936 standalone/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Assigna un nom d'ordinador a partir de l'adreça DHCP"
-
-#: network/netconnect.pm:937 standalone/drakconnect:375
-#, c-format
-msgid "DHCP host name"
-msgstr "Nom DHCP de l'ordinador"
-
-#: network/netconnect.pm:942 standalone/drakconnect:321
-#: standalone/drakconnect:883 standalone/drakgw:181
-#, c-format
-msgid "Netmask"
-msgstr "Submàscara de xarxa"
-
-#: network/netconnect.pm:944 standalone/drakconnect:437
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr ""
-"Fes el seguiment de l'identificador de la targeta de xarxa (d'utilitat per a "
-"portàtils)"
-
-#: network/netconnect.pm:945 standalone/drakconnect:438
-#, c-format
-msgid "Network Hotplugging"
-msgstr "\"Hotplugging\" de xarxa"
-
-#
-#: network/netconnect.pm:947 standalone/drakconnect:432
-#, c-format
-msgid "Start at boot"
-msgstr "Inicia en l'arrencada"
-
-#: network/netconnect.pm:949 standalone/drakconnect:460
-#, c-format
-msgid "Metric"
-msgstr "Mètrica"
-
-#: network/netconnect.pm:950
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr ""
-
-#: network/netconnect.pm:952 standalone/drakconnect:369
-#: standalone/drakconnect:886
-#, c-format
-msgid "DHCP client"
-msgstr "Client DHCP"
-
-#: network/netconnect.pm:954 standalone/drakconnect:379
-#, fuzzy, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "Temps màxim per connectar (en seg)"
-
-#
-#: network/netconnect.pm:955 standalone/drakconnect:382
-#, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "Obté els servidors DNS per DHCP"
-
-#: network/netconnect.pm:956 standalone/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:957 standalone/drakconnect:384
-#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr "Obté els servidors NTPD per DHCP"
-
-#: network/netconnect.pm:965 printer/printerdrake.pm:1876
-#: standalone/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "L'adreça IP ha d'estar en format 1.2.3.4"
-
-#: network/netconnect.pm:969 standalone/drakconnect:680
-#, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "La màscara de xarxa hauria d'estar en el format 255.255.224.0"
-
-#: network/netconnect.pm:973
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr "Atenció: l'adreça IP %s està reservada, normalment!"
-
-#: network/netconnect.pm:978 standalone/drakTermServ:1927
-#: standalone/drakTermServ:1928 standalone/drakTermServ:1929
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s ja és en ús\n"
-
-#: network/netconnect.pm:1018
-#, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "Escolliu un controlador ndiswrapper"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr "Usa el controlador ndiswrapper %s"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Install a new driver"
-msgstr "Instal·la un nou controlador"
-
-#: network/netconnect.pm:1032
-#, c-format
-msgid "Select a device:"
-msgstr "Escolliu un dispositiu:"
-
-#: network/netconnect.pm:1061
-#, c-format
-msgid "Please enter the wireless parameters for this card:"
-msgstr "Si us plau introduïu els paràmetres per aquesta targeta sense fils:"
-
-#: network/netconnect.pm:1064 standalone/drakconnect:404
-#: standalone/drakroam:52
-#, c-format
-msgid "Operating Mode"
-msgstr "Mode de funcionament"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Ad-hoc"
-msgstr "Ad-hoc"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Managed"
-msgstr "Gestionat"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Master"
-msgstr "Mestre"
-
-#
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Repeater"
-msgstr "Repetidor"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Secondary"
-msgstr "Secundari"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Auto"
-msgstr "Automàtic"
-
-#: network/netconnect.pm:1068 standalone/drakconnect:405
-#: standalone/drakroam:115
-#, c-format
-msgid "Network name (ESSID)"
-msgstr "Nom de la xarxa (ESSID)"
-
-#: network/netconnect.pm:1069 standalone/drakroam:116
-#, c-format
-msgid "Encryption mode"
-msgstr "Mode de xifrat"
-
-#: network/netconnect.pm:1074
-#, c-format
-msgid "Allow access point roaming"
-msgstr ""
-
-#
-#: network/netconnect.pm:1076 standalone/drakconnect:406
-#, c-format
-msgid "Network ID"
-msgstr "ID de xarxa"
-
-#: network/netconnect.pm:1077 standalone/drakconnect:407
-#, c-format
-msgid "Operating frequency"
-msgstr "Freqüència de funcionament"
-
-#: network/netconnect.pm:1078 standalone/drakconnect:408
-#, c-format
-msgid "Sensitivity threshold"
-msgstr ""
-
-#: network/netconnect.pm:1079 standalone/drakconnect:409
-#, c-format
-msgid "Bitrate (in b/s)"
-msgstr "Taxa de bits (en b/s)"
-
-#: network/netconnect.pm:1080 standalone/drakconnect:420
-#, c-format
-msgid "RTS/CTS"
-msgstr "RTS/CTS"
-
-#: network/netconnect.pm:1081
-#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
-
-#: network/netconnect.pm:1088 standalone/drakconnect:421
-#, c-format
-msgid "Fragmentation"
-msgstr "Fragmentació"
-
-#: network/netconnect.pm:1089 standalone/drakconnect:422
-#, c-format
-msgid "iwconfig command extra arguments"
-msgstr "Arguments extra per a lwconfig"
-
-#: network/netconnect.pm:1090
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-
-#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1097 standalone/drakconnect:423
-#, c-format
-msgid "iwspy command extra arguments"
-msgstr "Arguments extra per a lwspy"
-
-#: network/netconnect.pm:1098
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-
-#: network/netconnect.pm:1107 standalone/drakconnect:424
-#, c-format
-msgid "iwpriv command extra arguments"
-msgstr "Arguments extra per a lwpriv"
-
-#: network/netconnect.pm:1108
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-
-#: network/netconnect.pm:1123
-#, c-format
-msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
-msgstr ""
-"La freqüència ha de tenir el sufix k, M o G (per exemple, \"2,46G\" per a la "
-"freqüència de 2,46 GHz), or afegir prou '0' (zeros)."
-
-#: network/netconnect.pm:1127
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-"La velocitat ha de tenir el sufix k, M o G (per exemple, \"11M\" per a 11M), "
-"o afegir prou '0' (zeros)."
-
-#: network/netconnect.pm:1170
-#, c-format
-msgid "DVB configuration"
-msgstr "Configuració DVB"
-
-#: network/netconnect.pm:1171
-#, c-format
-msgid "DVB Adapter"
-msgstr "Adaptador DVB"
-
-#: network/netconnect.pm:1188
-#, c-format
-msgid "DVB adapter settings"
-msgstr ""
-
-#: network/netconnect.pm:1191
-#, c-format
-msgid "Adapter card"
-msgstr ""
-
-#: network/netconnect.pm:1192
-#, c-format
-msgid "Net demux"
-msgstr ""
-
-#: network/netconnect.pm:1193
-#, c-format
-msgid "PID"
-msgstr "PID"
-
-#: network/netconnect.pm:1221
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Si us plau, introduïu el nom del vostre ordinador.\n"
-"Aquest nom ha de ser complet, com ara \"mybox.mylab.myco.com\".\n"
-"També podeu introduir l'adreça IP de la passarel·la, si en teniu una."
-
-#: network/netconnect.pm:1226
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr ""
-"Finalment però no menys important podeu introduir les adreces IP dels "
-"vostres servidors DNS."
-
-#: network/netconnect.pm:1228 standalone/drakconnect:991
-#, c-format
-msgid "Host name (optional)"
-msgstr "Nom de l'ordinador (opcional)"
-
-#: network/netconnect.pm:1228 standalone/drakhosts:197
-#, c-format
-msgid "Host name"
-msgstr "Nom de l'ordinador"
-
-#: network/netconnect.pm:1230
-#, c-format
-msgid "DNS server 1"
-msgstr "Servidor DNS 1"
-
-#: network/netconnect.pm:1231
-#, c-format
-msgid "DNS server 2"
-msgstr "Servidor DNS 2"
-
-#: network/netconnect.pm:1232
-#, c-format
-msgid "DNS server 3"
-msgstr "Servidor DNS 3"
-
-#: network/netconnect.pm:1233
-#, c-format
-msgid "Search domain"
-msgstr "Domini de cerca"
-
-#: network/netconnect.pm:1234
-#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr ""
-
-#: network/netconnect.pm:1235
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Passarel·la (e.g. %s)"
-
-#: network/netconnect.pm:1237
-#, c-format
-msgid "Gateway device"
-msgstr "Dispositiu de la passarel·la"
-
-#: network/netconnect.pm:1246
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "L'adreça del servidor DNS ha d'estar en format 1.2.3.4"
-
-#: network/netconnect.pm:1251 standalone/drakconnect:685
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "L'adreça de la passarel·la ha d'estar en format 1.2.3.4"
-
-#: network/netconnect.pm:1264
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-
-#: network/netconnect.pm:1268
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Nom Zeroconf de l'ordinador"
-
-#: network/netconnect.pm:1271
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "El nom de l'ordinador del Zeroconf no ha de contenir cap ."
-
-#: network/netconnect.pm:1281
-#, c-format
-msgid "Do you want to allow users to start the connection?"
-msgstr "Voleu permetre que els usuaris puguin iniciar aquesta connexió?"
-
-#: network/netconnect.pm:1294
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Voleu iniciar la connexió en arrencar?"
-
-#
-#: network/netconnect.pm:1310
-#, c-format
-msgid "Automatically at boot"
-msgstr "Automàticament en arrencar"
-
-#: network/netconnect.pm:1312
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr ""
-
-#: network/netconnect.pm:1314
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr ""
-
-#: network/netconnect.pm:1323
-#, c-format
-msgid "How do you want to dial this connection?"
-msgstr "Com voleu marcar aquesta connexió?"
-
-#: network/netconnect.pm:1336
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Voleu intentar connectar-vos a Internet ara?"
-
-#: network/netconnect.pm:1344 standalone/drakconnect:1023
-#, c-format
-msgid "Testing your connection..."
-msgstr "S'està comprovant la vostra connexió..."
-
-#: network/netconnect.pm:1369
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Ara, el sistema està connectat a Internet."
-
-#: network/netconnect.pm:1370
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Per raons de seguretat, ara es desconnectarà."
-
-#: network/netconnect.pm:1371
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"No sembla que el sistema estigui connectat a Internet.\n"
-"Intenteu tornar a configurar la connexió."
-
-#: network/netconnect.pm:1386
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr "Felicitats, la configuració de xarxa i d'Internet ha finalitzat.\n"
-
-#: network/netconnect.pm:1389
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Després d'això, és recomanable que reinicieu l'entorn X per\n"
-"evitar problemes deguts al canvi de nom de l'ordinador."
-
-#: network/netconnect.pm:1390
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-"Hi ha hagut problemes durant la configuració.\n"
-"Proveu la connexió via net_monitor o mcc. Si la connexió no funciona "
-"correctament, torneu a executar la configuració."
-
-#: network/netconnect.pm:1402
-#, c-format
-msgid "(detected on port %s)"
-msgstr "(detectat al port %s)"
-
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected %s)"
-msgstr "(detectat %s)"
-
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected)"
-msgstr "(detectat)"
-
-#: network/netconnect.pm:1405
-#, c-format
-msgid "Network Configuration"
-msgstr "Configuració de xarxa"
-
-#: network/netconnect.pm:1406
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Atès que esteu realitzant una instal·lació des de xarxa, ja teniu la xarxa "
-"configurada.\n"
-"Feu clic a 'D'acord' per conservar la configuració, o a 'Cancel·la' per "
-"tornar a configurar la connexió a Internet i a la xarxa local.\n"
-
-#: network/netconnect.pm:1409
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr "Cal reiniciar la xarxa. La voleu reiniciar?"
-
-#: network/netconnect.pm:1410
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"S'ha produït un problema en reiniciar la xarxa: \n"
-"\n"
-"%s"
-
-#: network/netconnect.pm:1411
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-"Ara es configurarà la connexió %s.\n"
-"\n"
-"\n"
-"Premeu \"%s\" per continuar."
-
-#: network/netconnect.pm:1412
-#, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr "La configuració és completa, voleu aplicar els paràmetres?"
-
-#: network/netconnect.pm:1413
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Heu configurat múltiples maneres de connectar-se a Internet.\n"
-"Escolliu la que voleu utilitzar.\n"
-"\n"
-
-#
-#: network/netconnect.pm:1414
-#, c-format
-msgid "Internet connection"
-msgstr "Connexió a Internet"
-
-#: network/netconnect.pm:1428
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-"Hi ha hagut un error no esperat:\n"
-"%s"
-
-#: network/network.pm:411
-#, c-format
-msgid "Proxies configuration"
-msgstr "Configuració dels servidors intermediaris (proxies)"
-
-#: network/network.pm:412
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-
-#: network/network.pm:413
-#, c-format
-msgid "HTTP proxy"
-msgstr "Intermediari per a HTTP"
-
-#: network/network.pm:414
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: network/network.pm:415
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: network/network.pm:416
-#, c-format
-msgid "FTP proxy"
-msgstr "Intermediari per a FTP"
-
-#: network/network.pm:420
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "El servidor intermediari ha de ser http://..."
-
-#: network/network.pm:421
-#, c-format
-msgid "Proxy should be https?://..."
-msgstr ""
-
-#
-#: network/network.pm:422
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "L'URL ha de començar amb 'ftp:' o 'http:'"
-
-#: network/shorewall.pm:55
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-"Si us plau, introduïu el nom de la interfície connectada a Internet.\n"
-"\n"
-"Exemples:\n"
-"\t\tppp+ per a mòdem o connexions DSL, \n"
-"\t\teth0, o eth1 per a connexions de cable, \n"
-"\t\tippp+ per a connexions XDSI.\n"
-
-#: network/thirdparty.pm:232
-#, fuzzy, c-format
-msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
-msgstr ""
-"Us cal el microcodi alcatel.\n"
-"Baixeu-lo des de\n"
-"%s\n"
-"i copieu l'mgmt.o que és a /usr/share/speedtouch"
-
-#: network/thirdparty.pm:241
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-"El mòdem ECI Hi-Focus no està suportat a causa de problemes amb la "
-"distribució de binaris del controlador.\n"
-"\n"
-"Podeu trobar un controlador a http://eciadsl.flashtux.org/"
-
-#: network/thirdparty.pm:321
-#, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "No s'han pogut instal·lar els paquets (%s)!"
-
-#: network/thirdparty.pm:329
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr "Calen alguns paquets (%s) però no estan disponibles."
-
-#: network/thirdparty.pm:330
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-"Aquests paquets es poden trobar al Mandriva Club o a les versions comercials "
-"de Mandriva."
-
-#: network/thirdparty.pm:332
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-"Els fitxers necessaris també poden ser instal·lats des d'aquesta URL:\n"
-"%s"
-
-#
-#: network/thirdparty.pm:372
-#, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "No s'ha pogut trobar \"%s\" al vostre sistema Windows!"
-
-#: network/thirdparty.pm:374
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr "No s'ha detectat cap sistema Windows!"
-
-#: network/thirdparty.pm:384
-#, c-format
-msgid "Insert floppy"
-msgstr "Inseriu un disquet"
-
-#: network/thirdparty.pm:385
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"Inseriu un disquet formatat amb FAT a la unitat %s amb %s a el directori "
-"arrel i premeu %s"
-
-#: network/thirdparty.pm:395
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Error d'accés al disquet, no s'ha pogut muntar el dispositiu %s"
-
-#: network/thirdparty.pm:405
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-"Necessiteu el microcodi Alcatel.\n"
-"Podeu proporcionar-lo ara a través d'un disquet o la vostra partició de\n"
-"windows, o fer-ho més tard."
-
-#: network/thirdparty.pm:409 network/thirdparty.pm:411
-#, c-format
-msgid "Use a floppy"
-msgstr "Usa un disquet"
-
-#: network/thirdparty.pm:409
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Usa la meva partició de Windows"
-
-#: network/thirdparty.pm:419
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "La còpia del firmware ha fallat. no s'ha trobat el fitxer %s"
-
-#: network/thirdparty.pm:424 standalone/drakautoinst:250
-#: standalone/drakvpn:888 standalone/scannerdrake:422
-#, c-format
-msgid "Congratulations!"
-msgstr "Felicitats!"
-
-#: network/thirdparty.pm:424
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "La còpia del firmware ha tingut èxit"
-
-#: network/thirdparty.pm:493
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr ""
-
-#: network/thirdparty.pm:498
-#, fuzzy, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "Espereu si us plau, s'està detectant i configurant els dispositius..."
-
-#: network/wireless.pm:8
-#, c-format
-msgid "Open WEP"
-msgstr ""
-
-#: network/wireless.pm:9
-#, c-format
-msgid "Restricted WEP"
-msgstr ""
-
-#: network/wireless.pm:10
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr ""
-
-#: partition_table.pm:391
+#: partition_table.pm:390
#, c-format
msgid "mount failed: "
msgstr "ha fallat el muntatge: "
-#: partition_table.pm:496
+#: partition_table.pm:500
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Aquesta plataforma no suporta particions ampliades"
-#: partition_table.pm:514
+#: partition_table.pm:518
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
@@ -11893,22 +5110,27 @@ msgstr ""
"L'única solució és moure les particions primàries per fer que el forat quedi "
"contigu a les particions ampliades"
-#: partition_table.pm:605
+#: partition_table.pm:597
+#, c-format
+msgid "Error reading file %s"
+msgstr "S'ha produït un error en llegir el fitxer %s"
+
+#: partition_table.pm:604
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Ha fallat la restauració des del fitxer %s: %s"
-#: partition_table.pm:607
+#: partition_table.pm:606
#, c-format
msgid "Bad backup file"
msgstr "Fitxer de còpia de seguretat incorrecte"
-#: partition_table.pm:627
+#: partition_table.pm:626
#, c-format
msgid "Error writing to file %s"
msgstr "S'ha produït un error en escriure al fitxer %s"
-#: partition_table/raw.pm:253
+#: partition_table/raw.pm:264
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
@@ -11921,3593 +5143,50 @@ msgstr ""
"Això vol dir que qualsevol cosa que s'escrigui al disc acabarà amb dates "
"aleatòries i malmeses."
-#: pkgs.pm:21
-#, c-format
-msgid "must have"
-msgstr "s'ha de tenir"
-
-#: pkgs.pm:22
-#, c-format
-msgid "important"
-msgstr "important"
-
-#: pkgs.pm:23
-#, c-format
-msgid "very nice"
-msgstr "molt bonic"
-
-#: pkgs.pm:24
-#, c-format
-msgid "nice"
-msgstr "bonic"
-
-#: pkgs.pm:25
-#, c-format
-msgid "maybe"
-msgstr "potser"
-
-#: pkgs.pm:474
-#, c-format
-msgid "Downloading file %s..."
-msgstr "S'està descarregant el fitxer %s..."
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on %s)"
-msgstr "(en %s)"
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on this machine)"
-msgstr "(en aquest ordinador)"
-
-#: printer/cups.pm:117 standalone/printerdrake:200
-#, c-format
-msgid "Configured on other machines"
-msgstr "Configurat a d'altres ordinadors"
-
-#: printer/cups.pm:119
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "en servidor CUPS \"%s\""
-
-#: printer/cups.pm:119 printer/printerdrake.pm:4909
-#: printer/printerdrake.pm:4919 printer/printerdrake.pm:5078
-#: printer/printerdrake.pm:5089 printer/printerdrake.pm:5303
-#, c-format
-msgid " (Default)"
-msgstr " (Predeterminat)"
-
-#: printer/data.pm:67
-#, c-format
-msgid "PDQ - Print, Do not Queue"
-msgstr "PDQ - Print, Do not Queue"
-
-#: printer/data.pm:68
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: printer/data.pm:80
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: printer/data.pm:81
-#, c-format
-msgid "LPD"
-msgstr "LPD"
-
-#: printer/data.pm:102
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: printer/data.pm:103
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
-
-#: printer/data.pm:128
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: printer/data.pm:158
-#, c-format
-msgid "CUPS - Common Unix Printing System (remote server)"
-msgstr "CUPS - Common Unix Printing System (servidor remot)"
-
-#: printer/data.pm:159
-#, c-format
-msgid "Remote CUPS"
-msgstr "CUPS remot"
-
-#: printer/detect.pm:168 printer/detect.pm:263 printer/detect.pm:498
-#: printer/detect.pm:571 printer/main.pm:330 printer/main.pm:692
-#: printer/main.pm:1815 printer/printerdrake.pm:960
-#: printer/printerdrake.pm:1120 printer/printerdrake.pm:2448
-#: printer/printerdrake.pm:4004
-#, c-format
-msgid "Unknown model"
-msgstr "Model desconegut"
-
-#: printer/main.pm:24
-#, c-format
-msgid "Local printer"
-msgstr "Impressora local"
-
-#: printer/main.pm:25
-#, c-format
-msgid "Remote printer"
-msgstr "Impressora remota"
-
-#
-#: printer/main.pm:26
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Impressora en servidor CUPS remot"
-
-#
-#: printer/main.pm:27 printer/printerdrake.pm:1360
-#: printer/printerdrake.pm:1899
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Impressora en servidor lpd remot"
-
-#: printer/main.pm:28
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Impressora de xarxa (TCP/Socket)"
-
-#
-#: printer/main.pm:29
-#, c-format
-msgid "Printer on SMB/Windows server"
-msgstr "Impressora en servidor SMB/Windows"
-
-#
-#: printer/main.pm:30
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Impressora en servidor NetWare"
-
-#
-#: printer/main.pm:31 printer/printerdrake.pm:1903
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Entreu un dispositiu URI d'impressora"
-
-#: printer/main.pm:32
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Redirecciona el treball cap a una ordre"
-
-#: printer/main.pm:43
-#, c-format
-msgid "recommended"
-msgstr "recomanat"
-
-#: printer/main.pm:355 standalone/printerdrake:199
-#, c-format
-msgid "Configured on this machine"
-msgstr "Configurat en aquest ordinador"
-
-#: printer/main.pm:361 printer/printerdrake.pm:1445
-#, c-format
-msgid " on parallel port #%s"
-msgstr " en port paral·lel #%s"
-
-#: printer/main.pm:364 printer/printerdrake.pm:1448
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", impressora USB #%s"
-
-#: printer/main.pm:366
-#, c-format
-msgid ", USB printer"
-msgstr ", impressora USB"
-
-#: printer/main.pm:370
-#, c-format
-msgid ", HP printer on a parallel port"
-msgstr ", impressora HP en un port paral·lel"
-
-#: printer/main.pm:372
-#, c-format
-msgid ", HP printer on USB"
-msgstr ", impressora HP en USB"
-
-#: printer/main.pm:374
-#, c-format
-msgid ", HP printer on HP JetDirect"
-msgstr ", impressora HP en HP JetDirect"
-
-#: printer/main.pm:376
-#, c-format
-msgid ", HP printer"
-msgstr ", impressora HP"
-
-#: printer/main.pm:382
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", dispositiu multifunció en port paral·lel #%s"
-
-#: printer/main.pm:385
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", dispositiu multifunció en un port paral·lel"
-
-#: printer/main.pm:387
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", dispositiu multifunció en USB"
-
-#: printer/main.pm:389
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", dispositiu multifunció en HP JetDirect"
-
-#: printer/main.pm:391
-#, c-format
-msgid ", multi-function device"
-msgstr ", dispositiu multifunció"
-
-#: printer/main.pm:395
-#, c-format
-msgid ", printing to %s"
-msgstr ", imprimint a %s"
-
-#: printer/main.pm:398
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr " en servidor LPD \"%s\", impressora \"%s\""
-
-#: printer/main.pm:401
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", host TCP/IP \"%s\", port %s"
-
-#: printer/main.pm:406
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr " en servidor SMB/Windows \"%s\", recurs compartit \"%s\""
-
-#: printer/main.pm:411
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " en servidor Novell \"%s\", impressora \"%s\""
-
-#: printer/main.pm:414
-#, c-format
-msgid ", using command %s"
-msgstr ", utilitzant l'ordre %s"
-
-#: printer/main.pm:429
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Port paral·lel #%s"
-
-#: printer/main.pm:432 printer/printerdrake.pm:1466
-#: printer/printerdrake.pm:1493 printer/printerdrake.pm:1508
-#, c-format
-msgid "USB printer #%s"
-msgstr "Impressora USB #%s"
-
-#: printer/main.pm:434
-#, c-format
-msgid "USB printer"
-msgstr "Impressora USB"
-
-#: printer/main.pm:438
-#, c-format
-msgid "HP printer on a parallel port"
-msgstr "Impressora HP en un port paral·lel"
-
-#: printer/main.pm:440
-#, c-format
-msgid "HP printer on USB"
-msgstr "Impressora HP en USB"
-
-#: printer/main.pm:442
-#, c-format
-msgid "HP printer on HP JetDirect"
-msgstr "Impressora HP en HP JetDirect"
-
-#: printer/main.pm:444
-#, c-format
-msgid "HP printer"
-msgstr "Impressora HP"
-
-#: printer/main.pm:450
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Dispositiu multifunció en port paral·lel #%s"
-
-#: printer/main.pm:453
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Dispositiu multifunció en un port paral·lel"
-
-#: printer/main.pm:455
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "Dispositiu multifunció en USB"
-
-#: printer/main.pm:457
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Dispositiu multifunció en HP JetDirect"
-
-#: printer/main.pm:459
-#, c-format
-msgid "Multi-function device"
-msgstr "Dispositiu multifunció"
-
-#: printer/main.pm:463
-#, c-format
-msgid "Prints into %s"
-msgstr "Imprimeix a %s"
-
-#: printer/main.pm:466
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "Servidor LPD \"%s\", impressora \"%s\""
-
-#: printer/main.pm:469
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "Host TCP/IP \"%s\", port %s"
-
-#: printer/main.pm:474
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "Servidor SMB/Windows \"%s\", recurs compartit \"%s\""
-
-#: printer/main.pm:479
-#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Servidor Novell \"%s\", impressora \"%s\""
-
-#: printer/main.pm:482
-#, c-format
-msgid "Uses command %s"
-msgstr "Utilitza l'ordre %s"
-
-#: printer/main.pm:484
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
-
-#: printer/main.pm:689 printer/printerdrake.pm:1047
-#: printer/printerdrake.pm:3142
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Impressora en cru (raw) (Cap controlador)"
-
-#: printer/main.pm:1309 printer/printerdrake.pm:211
-#: printer/printerdrake.pm:223
-#, c-format
-msgid "Local network(s)"
-msgstr "Xarxa(es) local(s)"
-
-#: printer/main.pm:1311 printer/printerdrake.pm:227
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Interfície \"%s\""
-
-#
-#: printer/main.pm:1313
-#, c-format
-msgid "Network %s"
-msgstr "Xarxa %s"
-
-#: printer/main.pm:1315
-#, c-format
-msgid "Host %s"
-msgstr "Ordinador %s"
-
-#: printer/main.pm:1344
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Port %s)"
-
-#: printer/main.pm:1945 printer/main.pm:2100
-#, c-format
-msgid "user-supplied"
-msgstr ""
-
-#: printer/main.pm:1949 printer/main.pm:2104
-#, c-format
-msgid "NEW"
-msgstr ""
-
-#: printer/printerdrake.pm:24
-#, c-format
-msgid ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"decompressing the self-extracting '.exe' file with the 'unzip' utility and "
-"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
-"printer' directory. There it will be found by the automatic uploader script "
-"and uploaded whenever the printer is connected and turned on.\n"
-msgstr ""
-"Cal penjar el microprogramari de l'HP LaserJet 1000 després d'activar-la. "
-"Baixeu el paquet de programes de control per a Windows des del lloc web d'HP "
-"(el microprogramari que hi ha al CD de la impressora no funciona) i extrèieu-"
-"ne el fitxer de microprogramari descomprimint el fitxer '.exe' autoextraïble "
-"amb la utilitat 'unzip' i cercant el fitxer 'sihp1000.img'. Copieu aquest "
-"fitxer al directori '/etc/printer', on la seqüència penjadora el trobarà, el "
-"penjarà i l'activarà allà on la impressora estigui connectada.\n"
-
-#
-#: printer/printerdrake.pm:67
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "Configuració de la impressora CUPS"
-
-#: printer/printerdrake.pm:68
-#, c-format
-msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessible by remote machines and by which remote machines."
-msgstr ""
-"Aquí podeu decidir si s'ha de poder accedir a les impressores connectades a "
-"aquesta màquina des de màquines remotes, i des de quines d'elles."
-
-#: printer/printerdrake.pm:69
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-"També podeu decidir aquí si aquesta màquina ha de poder accedir "
-"automàticament a les impressores de màquines remotes."
-
-#: printer/printerdrake.pm:72 printer/printerdrake.pm:506
-#: printer/printerdrake.pm:4542
-#, c-format
-msgid "Remote CUPS server and no local CUPS daemon"
-msgstr "Servidor remot CUPS i dimoni CUPS no local"
-
-#: printer/printerdrake.pm:75
-#, c-format
-msgid "On"
-msgstr "Sí"
-
-#: printer/printerdrake.pm:77 printer/printerdrake.pm:498
-#: printer/printerdrake.pm:525
-#, c-format
-msgid "Off"
-msgstr "No"
-
-#: printer/printerdrake.pm:78 printer/printerdrake.pm:507
-#, c-format
-msgid ""
-"In this mode the local CUPS daemon will be stopped and all printing requests "
-"go directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:84
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Les impressores d'aquesta màquina són accessibles a altres ordinadors"
-
-#: printer/printerdrake.pm:89
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Cerca automàticament impressores disponibles en màquines remotes"
-
-#: printer/printerdrake.pm:94
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Compartició d'impressores a ordinadors centrals/xarxes:"
-
-#
-#: printer/printerdrake.pm:96
-#, c-format
-msgid "Custom configuration"
-msgstr "Configuració personalitzada"
-
-#: printer/printerdrake.pm:101 standalone/scannerdrake:610
-#: standalone/scannerdrake:627
-#, c-format
-msgid "No remote machines"
-msgstr "Cap màquina remota"
-
-#: printer/printerdrake.pm:112
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Servidors CUPS addicionals:"
-
-#: printer/printerdrake.pm:119
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"Per obtenir accés a les impressores en servidors CUPS remots de la vostra "
-"xarxa local només cal que activeu l'opció \"Cerca automàticament les "
-"impressores disponibles en màquines remotes\"; els servidors CUPS informen "
-"automàticament a la vostra màquina de les impressores que tenen. Totes les "
-"impressores conegudes per la vostra màquina són a la secció \"Impressores "
-"remotes\" de la finestra principal del Printerdrake. Si el vostre servidor o "
-"servidors CUPS no són a la vostra xarxa local, per obtenir del servidor la "
-"informació de la impressora us caldrà introduir aquí la o les adreces IP i "
-"opcionalment el o els números de port."
-
-#
-#: printer/printerdrake.pm:127
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Mode d'impressió de text en japonès"
-
-#: printer/printerdrake.pm:128
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in Japanese language. Only "
-"use this function if you really want to print text in Japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print Japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Si ho activeu podreu imprimir fitxers de text en japonès. Utilitzeu aquest "
-"funció només si heu d'imprimir textos en japonès, ja que si és activada ja "
-"no podreu imprimir caràcters accentuats en tipus de lletra llatins ni podreu "
-"ajustar els marges, la mida del caràcter, etc. Aquest paràmetre només afecta "
-"a les impressores definides en aquesta màquina; si voleu imprimir text en "
-"japonès en una impressora configurada en una màquina remota, caldrà que hi "
-"activeu aquesta funció."
-
-#
-#: printer/printerdrake.pm:135
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Correcció automàtica de la configuració CUPS"
-
-#: printer/printerdrake.pm:137
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Quan s'activa aquesta opció, cada vegada que el CUPS s'iniciï s'assegurarà "
-"que\n"
-"\n"
-"- si LPD/LPRng està instal·lat, /etc/printcap no sigui sobreeescrit pel "
-"CUPS\n"
-"\n"
-"- si /etc/cups/cupsd.conf no hi és, es creï\n"
-"\n"
-"- quan es difongui la informació de la impressora, no contingui \"localhost"
-"\" com a nom de servidor.\n"
-"\n"
-"Si alguna d'aquestes mesures us porta problemes desactiveu aquesta opció, "
-"però us caldrà anar amb compte amb aquest punts."
-
-#: printer/printerdrake.pm:161 printer/printerdrake.pm:236
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Compartició d'impressores locals"
-
-#: printer/printerdrake.pm:162
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-"Aquestes són les màquines i xarxes en què la impressora o impressores "
-"connectades localment han d'estar disponibles:"
-
-#: printer/printerdrake.pm:173
-#, c-format
-msgid "Add host/network"
-msgstr "Afegeix ordinador/xarxa"
-
-#: printer/printerdrake.pm:179
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Edita l'ordinador/xarxa seleccionada"
-
-#
-#: printer/printerdrake.pm:188
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Elimina l'ordinador/xarxa seleccionada"
-
-#: printer/printerdrake.pm:219 printer/printerdrake.pm:229
-#: printer/printerdrake.pm:241 printer/printerdrake.pm:248
-#: printer/printerdrake.pm:279 printer/printerdrake.pm:297
-#, c-format
-msgid "IP address of host/network:"
-msgstr "Adreça IP de l'ordinador/xarxa:"
-
-#: printer/printerdrake.pm:237
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr ""
-"Trieu la xara o ordinadors en què les impressores locals han d'estar "
-"disponibles:"
-
-#: printer/printerdrake.pm:244
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "L'adreça IP de l'ordinador/xarxa no hi és."
-
-#: printer/printerdrake.pm:252
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "La IP de l'ordinador/xarxa no és correcta.\n"
-
-#: printer/printerdrake.pm:253 printer/printerdrake.pm:429
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Exemples d'IP correctes:\n"
-
-#: printer/printerdrake.pm:277
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr "Aquest ordinador/xarxa ja és a la llista, no es pot tornar a afegir.\n"
-
-#
-#: printer/printerdrake.pm:346 printer/printerdrake.pm:416
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Accés a les impressores en servidor CUPS remots"
-
-#: printer/printerdrake.pm:347
-#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
-"Afegiu aquí els servidors CUPS les impressores dels quals voleu utilitzar. "
-"Només us cal fer això si els servidors no difonen la informació de les seves "
-"impressores en la xarxa local."
-
-#: printer/printerdrake.pm:358
-#, c-format
-msgid "Add server"
-msgstr "Afegeix un servidor"
-
-#: printer/printerdrake.pm:364
-#, c-format
-msgid "Edit selected server"
-msgstr "Edita el servidor seleccionat"
-
-#
-#: printer/printerdrake.pm:373
-#, c-format
-msgid "Remove selected server"
-msgstr "Elimina el servidor seleccionat"
-
-#: printer/printerdrake.pm:417
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-"Introduïu l'adreça IP i port de l'ordinador les impressores del qual voleu "
-"utilitzar."
-
-#: printer/printerdrake.pm:418
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "Si no s'indica cap port, per defecte s'agafarà el 631."
-
-#: printer/printerdrake.pm:422
-#, c-format
-msgid "Server IP missing!"
-msgstr "El servidor IP no hi és!"
-
-#
-#: printer/printerdrake.pm:428
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "La IP introduïda no és correcta.\n"
-
-#
-#: printer/printerdrake.pm:440 printer/printerdrake.pm:2133
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "El número de port ha de ser enter!"
-
-#: printer/printerdrake.pm:451
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "Aquest servidor ja és a la llista, no es pot tornar a afegir.\n"
-
-#: printer/printerdrake.pm:462 printer/printerdrake.pm:2160
-#: standalone/drakups:249 standalone/harddrake2:52
-#, c-format
-msgid "Port"
-msgstr "Port"
-
-#
-#: printer/printerdrake.pm:495 printer/printerdrake.pm:511
-#: printer/printerdrake.pm:526 printer/printerdrake.pm:530
-#: printer/printerdrake.pm:536
-#, c-format
-msgid "On, Name or IP of remote server:"
-msgstr "Actiu, Nom o IP del servidor remot:"
-
-#: printer/printerdrake.pm:514 printer/printerdrake.pm:4551
-#: printer/printerdrake.pm:4617
-#, c-format
-msgid "CUPS server name or IP address missing."
-msgstr "L'adreça IP o el nom del servidor CUPS no hi és."
-
-#: printer/printerdrake.pm:566 printer/printerdrake.pm:586
-#: printer/printerdrake.pm:811 printer/printerdrake.pm:880
-#: printer/printerdrake.pm:901 printer/printerdrake.pm:927
-#: printer/printerdrake.pm:1023 printer/printerdrake.pm:1065
-#: printer/printerdrake.pm:1075 printer/printerdrake.pm:1110
-#: printer/printerdrake.pm:2220 printer/printerdrake.pm:2490
-#: printer/printerdrake.pm:2524 printer/printerdrake.pm:2575
-#: printer/printerdrake.pm:2582 printer/printerdrake.pm:2621
-#: printer/printerdrake.pm:2663 printer/printerdrake.pm:2700
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2984
-#: printer/printerdrake.pm:2989 printer/printerdrake.pm:3137
-#: printer/printerdrake.pm:3248 printer/printerdrake.pm:3862
-#: printer/printerdrake.pm:3929 printer/printerdrake.pm:3978
-#: printer/printerdrake.pm:3981 printer/printerdrake.pm:4091
-#: printer/printerdrake.pm:4149 printer/printerdrake.pm:4221
-#: printer/printerdrake.pm:4242 printer/printerdrake.pm:4252
-#: printer/printerdrake.pm:4342 printer/printerdrake.pm:4437
-#: printer/printerdrake.pm:4443 printer/printerdrake.pm:4471
-#: printer/printerdrake.pm:4578 printer/printerdrake.pm:4687
-#: printer/printerdrake.pm:4707 printer/printerdrake.pm:4716
-#: printer/printerdrake.pm:4731 printer/printerdrake.pm:4932
-#: printer/printerdrake.pm:5407 printer/printerdrake.pm:5490
-#: standalone/printerdrake:75 standalone/printerdrake:590
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#
-#: printer/printerdrake.pm:567 printer/printerdrake.pm:4150
-#: printer/printerdrake.pm:4688
-#, c-format
-msgid "Reading printer data..."
-msgstr "S'estan llegint dades de la impressora..."
-
-#
-#: printer/printerdrake.pm:587
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "S'està reiniciant el CUPS"
-
-#: printer/printerdrake.pm:614
-#, c-format
-msgid ""
-"Allow pop-up windows, printer setup and package installation may be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:616
-#, c-format
-msgid ""
-"No pop-up windows, printer setup and package installation cannot be canceled"
-msgstr ""
-
-#
-#: printer/printerdrake.pm:622
-#, fuzzy, c-format
-msgid "Printer auto administration"
-msgstr "Detecció automàtica d'impressores"
-
-#: printer/printerdrake.pm:623
-#, c-format
-msgid ""
-"Here you can configure printer administration tasks which should be done "
-"automatically."
-msgstr ""
-
-#
-#: printer/printerdrake.pm:626
-#, fuzzy, c-format
-msgid "Do automatic configuration of new printers"
-msgstr "Configuració d'una impressora remota"
-
-#
-#: printer/printerdrake.pm:627 printer/printerdrake.pm:641
-#, fuzzy, c-format
-msgid "when a USB printer is connected and turned on"
-msgstr ""
-" (Assegureu-vos que totes les impressores estan connectades i engegades.)\n"
-
-#: printer/printerdrake.pm:630
-#, fuzzy, c-format
-msgid "when Printerdrake is started"
-msgstr "Aquesta impressora està deshabilitada"
-
-#: printer/printerdrake.pm:634
-#, c-format
-msgid "Mode for automatic printer setup:"
-msgstr ""
-
-#: printer/printerdrake.pm:640
-#, fuzzy, c-format
-msgid "Re-enable disabled printers"
-msgstr "Impressores disponibles"
-
-#
-#: printer/printerdrake.pm:644
-#, fuzzy, c-format
-msgid "when the printing system is started"
-msgstr "Modifica el sistema d'impressió"
-
-#: printer/printerdrake.pm:680
-#, fuzzy, c-format
-msgid "Communication error handling for the printer \"%s\""
-msgstr "S'està imprimint en la impressora \"%s\""
-
-#: printer/printerdrake.pm:682
-#, c-format
-msgid ""
-"Here you can configure how errors during the communication between your "
-"computer and the printer \"%s\" should be handled (for example if the "
-"printer is not turned on)."
-msgstr ""
-
-#
-#: printer/printerdrake.pm:686
-#, c-format
-msgid "The number of retries should be an integer number of at least 1!"
-msgstr "El número de reintents ha de ser enter i com a mínim 1!"
-
-#: printer/printerdrake.pm:690
-#, fuzzy, c-format
-msgid "The delay between retries should be a positive integer number!"
-msgstr "El desplaçament ha de ser un enter positiu"
-
-#
-#: printer/printerdrake.pm:701
-#, c-format
-msgid "Do not disable the printer"
-msgstr "No deshabilitis la impressora"
-
-#: printer/printerdrake.pm:704
-#, c-format
-msgid "Retry infinitely often"
-msgstr ""
-
-#: printer/printerdrake.pm:707
-#, c-format
-msgid "Number of retries"
-msgstr "Nombre de reintents:"
-
-#: printer/printerdrake.pm:712
-#, c-format
-msgid "Delay between retries (in sec)"
-msgstr ""
-
-#: printer/printerdrake.pm:745 printer/printerdrake.pm:765
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Seleccioneu la connexió de la impressora"
-
-#: printer/printerdrake.pm:746
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Com està connectada la impressora?"
-
-#
-#: printer/printerdrake.pm:748
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"No cal configurar aquí les impressores de servidors CUPS remots; aquestes "
-"impressores es detectaran automàticament."
-
-#: printer/printerdrake.pm:751 printer/printerdrake.pm:4934
-#, c-format
-msgid ""
-"\n"
-"WARNING: No local network connection active, remote printers can neither be "
-"detected nor tested!"
-msgstr ""
-"\n"
-"ATENCIÓ: No hi ha cap connexió de xarxa local activa, no es poden ni "
-"detectar ni provar les impressores remotes!"
-
-#: printer/printerdrake.pm:758
-#, c-format
-msgid ""
-"Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"
-msgstr ""
-"Detecció automàtica de la impressora (local, TCP/Socket, impressores SMB i "
-"URI de dispositiu)"
-
-#: printer/printerdrake.pm:760
-#, c-format
-msgid "Modify timeout for network printer auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:766
-#, c-format
-msgid "Enter the timeout for network printer auto-detection (in msec) here. "
-msgstr ""
-
-#: printer/printerdrake.pm:768
-#, c-format
-msgid ""
-"The longer you choose the timeout, the more reliable the detections of "
-"network printers will be, but the scan can take longer then, especially if "
-"there are many machines with local firewalls in the network. "
-msgstr ""
-
-#: printer/printerdrake.pm:772
-#, fuzzy, c-format
-msgid "The timeout must be a positive integer number!"
-msgstr "El desplaçament ha de ser un enter positiu"
-
-#
-#: printer/printerdrake.pm:811
-#, c-format
-msgid "Checking your system..."
-msgstr "S'està comprovant el vostre sistema..."
-
-#: printer/printerdrake.pm:829
-#, c-format
-msgid "and one unknown printer"
-msgstr "i una impressora desconeguda"
-
-#: printer/printerdrake.pm:831
-#, c-format
-msgid "and %d unknown printers"
-msgstr "i %d impressores desconegudes"
-
-#: printer/printerdrake.pm:835
-#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Les impressores\n"
-"\n"
-"%s%s\n"
-"estan connectades directament al vostre sistema"
-
-#: printer/printerdrake.pm:837
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"La impressora\n"
-"\n"
-"%s%s\n"
-"està connectada directament al vostre sistema"
-
-#: printer/printerdrake.pm:838
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-"La impressora\n"
-"\n"
-"%s%s\n"
-"està connectada directament al vostre sistema"
-
-#: printer/printerdrake.pm:842
-#, c-format
-msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
-"\n"
-"Hi ha una impressora desconeguda connectada directament a l'ordinador."
-
-#: printer/printerdrake.pm:843
-#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
-"\n"
-"Hi ha %d impressores desconegudes connectades directament a l'ordinador."
-
-#: printer/printerdrake.pm:846
-#, c-format
-msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "No s'ha trobat cap impressora connectada directament a l'ordinador"
-
-#
-#: printer/printerdrake.pm:849
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr ""
-" (Assegureu-vos que totes les impressores estan connectades i engegades.)\n"
-
-#: printer/printerdrake.pm:862
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
-"Voleu habilitar la impressió a les impressores anteriors o a les impressores "
-"de la xarxa local?\n"
-
-#: printer/printerdrake.pm:863
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Voleu habilitar la impressió a les impressores de la xarxa local?\n"
-
-#: printer/printerdrake.pm:865
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Voleu habilitar la impressió a les impressores anteriors?\n"
-
-#: printer/printerdrake.pm:866
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Esteu segur que voleu habilitar la impressió en aquesta màquina?\n"
-
-#: printer/printerdrake.pm:867
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
-"NOTA: Segons el model de la impressora i el sistema d'impressió, "
-"s'instal·laran fins a %d MB de programari addicional."
-
-#: printer/printerdrake.pm:884
-#, c-format
-msgid "Do not setup printer automatically now, and never do it again"
-msgstr ""
-
-#: printer/printerdrake.pm:928
-#, c-format
-msgid "Searching for new printers..."
-msgstr "S'estan cercant noves impressores..."
-
-#: printer/printerdrake.pm:976
-#, c-format
-msgid "Do not setup printer automatically again"
-msgstr ""
-
-#
-#: printer/printerdrake.pm:983
-#, fuzzy, c-format
-msgid "New printers found"
-msgstr "No s'ha trobat cap impressora!"
-
-#
-#: printer/printerdrake.pm:984
-#, fuzzy, c-format
-msgid "New printer found"
-msgstr "No s'ha trobat cap impressora!"
-
-#: printer/printerdrake.pm:986
-#, c-format
-msgid ""
-"The following new printers were found and Printerdrake can automatically set "
-"them up for you. If you do not want to have all of them set up, unselect the "
-"ones which should be skipped, or click \"Cancel\" to set up none of them.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:987
-#, c-format
-msgid ""
-"The following new printer was found and printerdrake can automatically set "
-"it up for you. If you do not want to have it set up, unselect it, or click "
-"\"Cancel\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:988
-#, c-format
-msgid ""
-"Note that for certain printer models additional packages need to be "
-"installed. So keep your installation media handy.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1024 printer/printerdrake.pm:1066
-#, c-format
-msgid "Configuring printer on %s..."
-msgstr "S'està configurant la impressora a %s..."
-
-#: printer/printerdrake.pm:1049
-#, c-format
-msgid "("
-msgstr "("
-
-#: printer/printerdrake.pm:1050
-#, c-format
-msgid " on "
-msgstr " en"
-
-#: printer/printerdrake.pm:1051 standalone/scannerdrake:137
-#, c-format
-msgid ")"
-msgstr ")"
-
-#
-#: printer/printerdrake.pm:1056 printer/printerdrake.pm:3149
-#, c-format
-msgid "Printer model selection"
-msgstr "Selecció del model d'impressora"
-
-#
-#: printer/printerdrake.pm:1057 printer/printerdrake.pm:3150
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Quin és el model de la vostra impressora?"
-
-#: printer/printerdrake.pm:1058
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-"\n"
-"\n"
-"El Printerdrake no ha pogut determinar de quin model és la impressora %s. Si "
-"us plau, escolliu el model correcte de la llista."
-
-#: printer/printerdrake.pm:1061 printer/printerdrake.pm:3155
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Si la vostra impressora no és a la llista, escolliu-ne una de compatible "
-"(mireu el manual de la impressora) o una de similar."
-
-#: printer/printerdrake.pm:1076 printer/printerdrake.pm:4708
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "S'està configurant la impressora \"%s\"..."
-
-#: printer/printerdrake.pm:1111
-#, c-format
-msgid ""
-"Now you have turned off automatic printer setup.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1112
-#, c-format
-msgid ""
-"You can turn it back on again by choosing \"%s\" -> \"%s\" in Printerdrake's "
-"main menu. "
-msgstr ""
-
-#
-#: printer/printerdrake.pm:1112 printer/printerdrake.pm:4984
-#, fuzzy, c-format
-msgid "Configure Auto Administration"
-msgstr "Administració remota"
-
-#: printer/printerdrake.pm:1113
-#, c-format
-msgid ""
-"There you can also choose in which situation automatic printer setup is done "
-"(On Printerdrake startup, on printing system startup, when connecting a new "
-"USB printer)."
-msgstr ""
-
-#
-#: printer/printerdrake.pm:1261 printer/printerdrake.pm:1273
-#: printer/printerdrake.pm:1380 printer/printerdrake.pm:2401
-#: printer/printerdrake.pm:2460 printer/printerdrake.pm:2556
-#: printer/printerdrake.pm:4951 printer/printerdrake.pm:5138
-#, c-format
-msgid "Add a new printer"
-msgstr "Afegiu una impressora"
-
-#: printer/printerdrake.pm:1262
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Benvingut a l'auxiliar de configuració de la impressora\n"
-"\n"
-"Aquest auxiliar us permetrà instal·lar impressores locals o remotes per usar-"
-"les en aquest ordinador i també des d'altres ordinadors de la xarxa.\n"
-"\n"
-"Us demanarà la informació necessària per definir impressores i us "
-"proporcionarà accés als controladors disponibles de les impressores, les "
-"seves opcions i els tipus de connexions d'impressores."
-
-#: printer/printerdrake.pm:1275
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected. Also your network printer(s) and your Windows "
-"machines must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you do not "
-"need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Benvingut a l'auxiliar de configuració de la impressora\n"
-"\n"
-"Aquest auxiliar us ajudarà a instal·lar la o les impressores connectades a "
-"l'ordinador, directament a la xarxa, o a una màquina Windows remota.\n"
-"\n"
-"Si teniu impressores connectades a aquesta màquina, endolleu-les i engegueu-"
-"les per tal de poder-les detectar automàticament. Engegueu també les "
-"impressores de xarxa i les màquines Windows.\n"
-"\n"
-"Tingueu en compte que la detecció automàtica d'impressores de la xarxa triga "
-"més que la detecció d'impressores connectades directament a la màquina. Per "
-"tant, desactiveu la detecció automàtica d'impressores en xarxa o en màquina "
-"Windows si no la necessiteu.\n"
-"\n"
-"Feu clic a \"Següent\" quan estigueu a punt, o a \"Cancel·la\" si no voleu "
-"configurar ara les impressores."
-
-#: printer/printerdrake.pm:1284
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Benvingut a l'auxiliar de configuració de la impressora\n"
-"\n"
-"Aquest auxiliar us ajudarà a instal·lar la o les impressores connectades a "
-"aquest ordinador.\n"
-"\n"
-"Si teniu impressores connectades a aquesta màquina, endolleu-les i engegueu-"
-"les per tal de poder-les detectar automàticament.\n"
-"\n"
-"Feu clic a \"Següent\" quan estigueu a punt, o a \"Cancel·la\" si no voleu "
-"configurar ara les impressores."
-
-#: printer/printerdrake.pm:1292
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you do not need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Benvingut a l'auxiliar de configuració de la impressora\n"
-"\n"
-"Aquest auxiliar us ajudarà a instal·lar la o les impressores connectades a "
-"aquest ordinador o connectades directament a la xarxa.\n"
-"\n"
-"Si teniu impressores connectades a aquesta màquina, endolleu-les i engegueu-"
-"les per tal de poder-les detectar automàticament. Engegueu també les "
-"impressores de la xarxa.\n"
-"\n"
-"Tingueu en compte que la detecció automàtica d'impressores de la xarxa local "
-"triga més que la detecció d'impressores connectades directament a la "
-"màquina. Per tant, desactiveu la detecció automàtica d'impressores de xarxa "
-"si no la necessiteu.\n"
-"\n"
-"Feu clic a \"Següent\" quan estigueu a punt, o a \"Cancel·la\" si no voleu "
-"configurar ara les impressores."
-
-#: printer/printerdrake.pm:1301
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Benvingut a l'auxiliar de configuració de la impressora\n"
-"\n"
-"Aquest auxiliar us ajudarà a instal·lar la o les impressores connectades a "
-"aquest ordinador.\n"
-"\n"
-"Si teniu impressores connectades a aquesta màquina, endolleu-les i engegueu-"
-"les per tal de poder-les detectar automàticament.\n"
-"\n"
-"Feu clic a \"Següent\" quan estigueu a punt, o a \"Cancel·la\" si no voleu "
-"configurar ara les impressores."
-
-#
-#: printer/printerdrake.pm:1352
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Detecta automàticament les impressores connectades a aquesta màquina"
-
-#: printer/printerdrake.pm:1355
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr ""
-"Detecta automàticament les impressores connectades directament a la xarxa "
-"local"
-
-#: printer/printerdrake.pm:1358
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
-"Detecta automàticament les impressores connectades a màquines amb Microsoft "
-"Windows"
-
-#: printer/printerdrake.pm:1361
-#, fuzzy, c-format
-msgid "No auto-detection"
-msgstr "Detecció automàtica"
-
-#: printer/printerdrake.pm:1381
-#, c-format
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the %s Control Center."
-msgstr ""
-"\n"
-"Felicitats, la impressora s'ha instal·lat i configurat correctament!\n"
-"\n"
-"Podeu imprimir utilitzant l'ordre \"Imprimeix\" de les aplicacions "
-"(normalment en el menú \"Fitxer\").\n"
-"\n"
-"Si voleu afegir, esborrar o canviar el nom a una impressora, o si voleu "
-"canviar les opcions per defecte (safata d'entrada, qualitat impressió...), "
-"seleccioneu \"Impressora\" en la secció \"Maquinari\" del Centre de Control %"
-"s."
-
-#: printer/printerdrake.pm:1417 printer/printerdrake.pm:1641
-#: printer/printerdrake.pm:1704 printer/printerdrake.pm:1796
-#: printer/printerdrake.pm:1934 printer/printerdrake.pm:2010
-#: printer/printerdrake.pm:2177 printer/printerdrake.pm:2268
-#: printer/printerdrake.pm:2277 printer/printerdrake.pm:2286
-#: printer/printerdrake.pm:2297 printer/printerdrake.pm:2496
-#: printer/printerdrake.pm:2633
-#, c-format
-msgid "Could not install the %s packages!"
-msgstr "No s'han pogut instal·lar els paquets %s!"
-
-#: printer/printerdrake.pm:1419
-#, c-format
-msgid "Skipping Windows/SMB server auto-detection"
-msgstr "S'està saltant la detecció automàtica de servidors Windows/SMB"
-
-#
-#: printer/printerdrake.pm:1425 printer/printerdrake.pm:1564
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Detecció automàtica d'impressores"
-
-#: printer/printerdrake.pm:1425
-#, c-format
-msgid "Detecting devices..."
-msgstr "S'estan detectant els dispositius..."
-
-#: printer/printerdrake.pm:1451
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", impressora de xarxa \"%s\", port %s"
-
-#
-#: printer/printerdrake.pm:1454
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", impressora \"%s\" en servidor SMB/Windows \"%s\""
-
-#: printer/printerdrake.pm:1458
-#, c-format
-msgid "Detected %s"
-msgstr "S'ha detectat %s"
-
-#: printer/printerdrake.pm:1463 printer/printerdrake.pm:1490
-#: printer/printerdrake.pm:1505
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Impressora en el port paral·lel #%s"
-
-#: printer/printerdrake.pm:1469
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Impressora de xarxa \"%s\", port %s"
-
-#
-#: printer/printerdrake.pm:1472
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Impressora \"%s\" en servidor SMB/Windows \"%s\""
-
-#
-#: printer/printerdrake.pm:1550
-#, c-format
-msgid "Local Printer"
-msgstr "Impressora local"
-
-#: printer/printerdrake.pm:1551
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"No s'ha trobat cap impressora! Per instal·lar-ne una manualment entreu el "
-"dispositiu/fitxer a la línia d'entrada (Ports Paral·lel: /dev/lp0, /dev/lp1, "
-"etc., equivalents a LPT1:, LPT2:, etc.; 1a impressora USB: /dev/usb/lp0, 2a "
-"impressora USB: /dev/usb/lp1, etc.)."
-
-#
-#: printer/printerdrake.pm:1555
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Heu d'entrar un nom de dispositiu o de fitxer!"
-
-#
-#: printer/printerdrake.pm:1565
-#, c-format
-msgid "No printer found!"
-msgstr "No s'ha trobat cap impressora!"
-
-#
-#: printer/printerdrake.pm:1573
-#, c-format
-msgid "Local Printers"
-msgstr "Impressores locals"
-
-#: printer/printerdrake.pm:1574
-#, c-format
-msgid "Available printers"
-msgstr "Impressores disponibles"
-
-#: printer/printerdrake.pm:1578 printer/printerdrake.pm:1587
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "La impressora següent s'ha detectat automàticament."
-
-#: printer/printerdrake.pm:1580
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
-"Si no és el que voleu configurar, introduïu un nom de dispositiu/nom de "
-"fitxer en la línia d'entrada"
-
-#: printer/printerdrake.pm:1581
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-"Alternativament, podeu indicar el nom de dispositiu/nom de fitxer en la "
-"línia d'entrada"
-
-#: printer/printerdrake.pm:1582 printer/printerdrake.pm:1591
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Aquesta és la llista d'impressores que es detecten automàticament."
-
-#: printer/printerdrake.pm:1584
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
-msgstr ""
-"Si us plau, escolliu la impressora que voleu configurar o introduïu un nom "
-"de dispositiu/nom de fitxer en la línia d'entrada"
-
-#: printer/printerdrake.pm:1585
-#, c-format
-msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-"Si us plau, escolliu la impressora a què s'han d'enviar les tasques "
-"d'impressió o introduïu un nom de dispositiu/nom de fitxer en la línia "
-"d'entrada"
-
-#: printer/printerdrake.pm:1589
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"La configuració de la impressora es farà automàticament. Si la vostra "
-"impressora no ha estat correctament detectada, o si preferiu personalitzar-"
-"ne la configuració, habiliteu \"Configuració manual\"."
-
-#: printer/printerdrake.pm:1590
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Actualment no ha hi disponible cap possibilitat alternativa"
-
-#: printer/printerdrake.pm:1593
-#, c-format
-msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
-msgstr ""
-"Si us plau, escolliu la impressora que voleu configurar. La configuració de "
-"la impressora es farà automàticament. Si la vostra impressora no s'ha "
-"detectat correctament o si preferiu personalitzar-ne la configuració, "
-"activeu \"Configuració manual\"."
-
-#
-#: printer/printerdrake.pm:1594
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr ""
-"Si us plau, seleccioneu la impressora on han d'anar les tasques d'impressió."
-
-#: printer/printerdrake.pm:1596
-#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Escolliu el port al qual està connectada la impressora o escriviu el nom de "
-"dispositiu/nom de fitxer en la línia d'entrada"
-
-#
-#: printer/printerdrake.pm:1597
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr ""
-"Si us plau, seleccioneu el port al qual teniu connectada la impressora."
-
-#: printer/printerdrake.pm:1599
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Ports Paral·lel: /dev/lp0, /dev/lp1, etc., equivalents a LPT1:, LPT2:, "
-"etc.; 1a impressora USB: /dev/usb/lp0, 2a impressora USB: /dev/usb/lp1, "
-"etc.)."
-
-#
-#: printer/printerdrake.pm:1603
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Heu d'escollir/introduir una impressora/dispositiu!"
-
-#: printer/printerdrake.pm:1643 printer/printerdrake.pm:1706
-#: printer/printerdrake.pm:1798 printer/printerdrake.pm:1936
-#: printer/printerdrake.pm:2012 printer/printerdrake.pm:2179
-#: printer/printerdrake.pm:2270 printer/printerdrake.pm:2279
-#: printer/printerdrake.pm:2288 printer/printerdrake.pm:2299
-#, c-format
-msgid "Aborting"
-msgstr "S'està avortant"
-
-#: printer/printerdrake.pm:1679
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Opcions de la impressora lpd remota"
-
-#
-#: printer/printerdrake.pm:1680
-#, c-format
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Per poder utilitzar una impressora lpd remota, cal que proporcioneu el nom "
-"de l'ordinador que té el servidor de la impressora i el nom de la impressora "
-"en aquell servidor."
-
-#
-#: printer/printerdrake.pm:1681
-#, c-format
-msgid "Remote host name"
-msgstr "Nom de l'ordinador remot"
-
-#
-#: printer/printerdrake.pm:1682
-#, c-format
-msgid "Remote printer name"
-msgstr "Nom de la impressora remota"
-
-#
-#: printer/printerdrake.pm:1685
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Falta el nom de l'ordinador remot!"
-
-#
-#: printer/printerdrake.pm:1689
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Falta el nom de la impressora remota!"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318 standalone/drakTermServ:475
-#: standalone/drakTermServ:807 standalone/drakTermServ:823
-#: standalone/drakTermServ:1653 standalone/drakTermServ:1662
-#: standalone/drakTermServ:1676 standalone/drakbackup:512
-#: standalone/drakbackup:618 standalone/drakbackup:653
-#: standalone/drakbackup:754 standalone/draknfs:203
-#: standalone/draksambashare:627 standalone/draksambashare:794
-#: standalone/harddrake2:275
-#, c-format
-msgid "Information"
-msgstr "Informació"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Model detectat: %s %s"
-
-#
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Scanning network..."
-msgstr "S'està escanejant la xarxa..."
-
-#: printer/printerdrake.pm:1814 printer/printerdrake.pm:1835
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", impressora \"%s\", en el servidor \"%s\""
-
-#: printer/printerdrake.pm:1817 printer/printerdrake.pm:1838
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Impressora \"%s\" en el servidor \"%s\""
-
-#: printer/printerdrake.pm:1859
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Opcions de la impressora SMB (Windows 9x/NT)"
-
-#
-#: printer/printerdrake.pm:1860
-#, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Per poder imprimir a una impressora SMB, heu d'indicar el nom de\n"
-"l'ordinador SMB (tingueu en compte que pot ser diferent del seu nom\n"
-"TCP/IP) i possiblement l'adreça IP del servidor d'impressió, així com el nom "
-"de compartició de la impressora a què voleu accedir i el nom d'usuari,\n"
-"contrasenya i informació de grup si són necessaris."
-
-#: printer/printerdrake.pm:1861
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-"Si la impressora desitjada ha estat detectada automàticament, només cal que "
-"la seleccioneu a la llista i que hi afegiu el nom d'usuari, la contrasenya i "
-"el grup de treball, si són necessaris."
-
-#: printer/printerdrake.pm:1863
-#, c-format
-msgid "SMB server host"
-msgstr "Ordinadordel servidor SMB"
-
-#: printer/printerdrake.pm:1864
-#, c-format
-msgid "SMB server IP"
-msgstr "IP del servidor SMB"
-
-#: printer/printerdrake.pm:1865 standalone/draksambashare:67
-#, c-format
-msgid "Share name"
-msgstr "Nom de compartició"
-
-#: printer/printerdrake.pm:1868
-#, c-format
-msgid "Workgroup"
-msgstr "Grup de treball"
-
-#
-#: printer/printerdrake.pm:1870
-#, c-format
-msgid "Auto-detected"
-msgstr "Detectada automàticament"
-
-#: printer/printerdrake.pm:1880
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Cal que subministreu o bé el nom del servidor o bé la seva IP!"
-
-#: printer/printerdrake.pm:1884
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Falta el nom de compartició de Samba!"
-
-#: printer/printerdrake.pm:1890
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "AVÍS DE SEGURETAT!"
-
-#: printer/printerdrake.pm:1891
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Ara es configurarà la impressió cap a un usuari de Windows amb contrasenya. "
-"Degut a una fallada en l'arquitectura del programari del client Samba la "
-"contrasenya es mostra en text clar en la línia d'ordres que el client Samba "
-"utilitza per transmetre i imprimir un treball en el Servidor Windows. Per "
-"tant, és possible per qualsevol usuari d'aquell ordinador de veure la "
-"contrasenya en la pantalla simplement escrivint ordres tals com \"ps auxwww"
-"\".\n"
-"\n"
-"Us recomanem que utilitzeu alguna de les següents alternatives (en tots el "
-"casos heu d'estar segur que només els ordinadors de la vostra xarxa local "
-"tenen accés al vostre Servidor Windows, per exemple utilitzant un "
-"tallafoc):\n"
-"\n"
-"Utilitzeu un compte sense contrasenya en el Servidor Windows, tal com \"GUEST"
-"\" o un compte especial dedicat a la impressió. No tragueu la protecció de "
-"la contrasenya d'un compte personal o del compte de l'administrador.\n"
-"\n"
-"Configureu el vostre Servidor Windows fent que la impressora estigui "
-"disponible a través del protocol LPD. Aleshores, definiu en el Printerdrake "
-"la impressió en aquest ordinador amb el tipus de connexió \"%s\".\n"
-"\n"
-
-#: printer/printerdrake.pm:1901
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Configureu el vostre servidor Windows per tal que la impressora estigui "
-"disponible sota el protocol IPP i configureu la impressió en aquest "
-"ordinador amb el tipus de connexió \"%s\" en el Printerdrake.\n"
-"\n"
-
-#: printer/printerdrake.pm:1904
-#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-"Connecteu la impressora a un servidor Linux i feu que els ordinadors Windows "
-"s'hi connectin com clients.\n"
-"\n"
-"Realment voleu continuar configurant aquesta impressora tal com s'està fent "
-"ara?"
-
-#: printer/printerdrake.pm:1983
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "Opcions de la impressora NetWare"
-
-#
-#: printer/printerdrake.pm:1984
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Per poder imprimir a una impressora NetWare, heu de proporcionar el nom del\n"
-"servidor d'impressió NetWare (tingueu en compte que pot ser diferent del "
-"nom\n"
-"TCP/IP de l'ordinador), així com el nom de la cua d'impressió de\n"
-"la impressora a la qual voleu accedir i el nom d'usuari i contrasenya si "
-"són\n"
-"necessaris."
-
-#: printer/printerdrake.pm:1985
-#, c-format
-msgid "Printer Server"
-msgstr "Servidor de la impressora"
-
-#: printer/printerdrake.pm:1986
-#, c-format
-msgid "Print Queue Name"
-msgstr "Nom de la cua d'impressió"
-
-#: printer/printerdrake.pm:1991
-#, c-format
-msgid "NCP server name missing!"
-msgstr "Falta el nom del Servidor NCP!"
-
-#: printer/printerdrake.pm:1995
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "Falta el nom de la cua NCP!"
-
-#: printer/printerdrake.pm:2076 printer/printerdrake.pm:2097
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", ordinador \"%s\", port %s"
-
-#: printer/printerdrake.pm:2079 printer/printerdrake.pm:2100
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Ordinador \"%s\", port %s"
-
-#
-#: printer/printerdrake.pm:2122
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "Opcions de la impressora per a TCP/Socket"
-
-#: printer/printerdrake.pm:2124
-#, c-format
-msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
-msgstr ""
-"Trieu una de les impressores detectades de la llista, o introduïu el nom de "
-"l'ordinador o la IP i opcionalment el número de port (per defecte és el "
-"9100) en els quadres de text."
-
-#
-#: printer/printerdrake.pm:2125
-#, c-format
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
-msgstr ""
-"Per imprimir a una impressora TCP o Socket, heu d'indicar el nom de xarxa o "
-"la IP de la impressora i, opcionalment, el número de port. En els servidors "
-"HP JetDirect el número del port normalment és el 9100, en els altres pot "
-"variar. Mireu el manual del vostre maquinari."
-
-#
-#: printer/printerdrake.pm:2129
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Falta el nom o la IP de l'ordinador de la impressora!"
-
-#
-#: printer/printerdrake.pm:2158
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Nom o IP de l'ordinador de la impressora"
-
-#
-#: printer/printerdrake.pm:2221
-#, c-format
-msgid "Refreshing Device URI list..."
-msgstr "S'està la llista de URI de dispositiu..."
-
-#: printer/printerdrake.pm:2224 printer/printerdrake.pm:2226
-#, c-format
-msgid "Printer Device URI"
-msgstr "Dispositiu URI d'impressora"
-
-#: printer/printerdrake.pm:2225
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Podeu especificar directament l'URI per accedir a la impressora. L'URI ha de "
-"complir les especificacions CUPS o Foomatic. Cal remarcar que alguns gestors "
-"de cues no accepten tots els tipus d'URI."
-
-#: printer/printerdrake.pm:2249
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Heu d'entrar un URI vàlid!"
-
-#: printer/printerdrake.pm:2354
-#, c-format
-msgid "Pipe into command"
-msgstr "Condueix cap a una ordre"
-
-#: printer/printerdrake.pm:2355
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-"Aquí podeu indicar qualsevol línia d'ordres arbitrària a la qual s'ha de "
-"conduir la tasca en comptes d'enviar-se directament a la impressora."
-
-#: printer/printerdrake.pm:2356
-#, c-format
-msgid "Command line"
-msgstr "Línia d'ordres"
-
-#: printer/printerdrake.pm:2360
-#, c-format
-msgid "A command line must be entered!"
-msgstr "S'ha d'introduir una línia d'ordres!"
-
-#: printer/printerdrake.pm:2402
-#, c-format
-msgid "Your printer %s is currently connected %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2404 printer/printerdrake.pm:2411
-#, fuzzy, c-format
-msgid "to a parallel port"
-msgstr " en port paral·lel #%s"
-
-#: printer/printerdrake.pm:2405 printer/printerdrake.pm:2412
-#, c-format
-msgid "to the USB"
-msgstr ""
-
-#: printer/printerdrake.pm:2406 printer/printerdrake.pm:2413
-#, fuzzy, c-format
-msgid "via the network"
-msgstr "S'està activant la xarxa"
-
-#: printer/printerdrake.pm:2407
-#, c-format
-msgid "This type of connection is currently not fully supported by HPLIP."
-msgstr ""
-
-#: printer/printerdrake.pm:2409
-#, c-format
-msgid "You get full HPLIP support for your device if you connect it "
-msgstr ""
-
-#: printer/printerdrake.pm:2415
-#, c-format
-msgid ""
-"You can now set up your device with HPLIP anyway (works in many cases), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "set it up without HPLIP (print-only), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, fuzzy, c-format
-msgid "or"
-msgstr "Hora"
-
-#: printer/printerdrake.pm:2417
-#, c-format
-msgid "cancel the setup (for example to reconnect your device)."
-msgstr ""
-
-#: printer/printerdrake.pm:2419
-#, c-format
-msgid ""
-"You can always revise your choice by clicking your printer's entry in the "
-"main window, "
-msgstr ""
-
-#: printer/printerdrake.pm:2420
-#, c-format
-msgid "clicking the \"%s\" button, "
-msgstr ""
-
-#
-#. -PO: "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: printer/printerdrake.pm:2420 standalone/drakperm:124 standalone/drakups:300
-#: standalone/drakups:360 standalone/drakups:380 standalone/drakvpn:319
-#: standalone/drakvpn:680 standalone/printerdrake:245
-#, c-format
-msgid "Edit"
-msgstr "Edita"
-
-#: printer/printerdrake.pm:2421
-#, c-format
-msgid "and choosing \"%s\"."
-msgstr ""
-
-#
-#: printer/printerdrake.pm:2421 printer/printerdrake.pm:5334
-#: printer/printerdrake.pm:5394
-#, c-format
-msgid "Printer connection type"
-msgstr "Tipus de connexió de la impressora"
-
-#: printer/printerdrake.pm:2423 standalone/logdrake:408
-#, c-format
-msgid "What do you want to do?"
-msgstr "Que voleu fer?"
-
-#: printer/printerdrake.pm:2424 printer/printerdrake.pm:2428
-#, c-format
-msgid "Set up with HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2425 printer/printerdrake.pm:2427
-#: printer/printerdrake.pm:2430
-#, c-format
-msgid "Set up without HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2461
-#, c-format
-msgid ""
-"On many HP printers there are special functions available, maintenance (ink "
-"level checking, nozzle cleaning. head alignment, ...) on all not too old "
-"inkjets, scanning on multi-function devices, and memory card access on "
-"printers with card readers. "
-msgstr ""
-
-#: printer/printerdrake.pm:2463
-#, c-format
-msgid ""
-"To access these extra functions on HP printers they must be set up with "
-"HPLIP (HP Linux Imaging and Printing). "
-msgstr ""
-
-#: printer/printerdrake.pm:2465
-#, c-format
-msgid "Do you want to use HPLIP (choose \"No\" for non-HP printers)? "
-msgstr ""
-
-#
-#: printer/printerdrake.pm:2491
-#, c-format
-msgid "Installing %s package..."
-msgstr "S'està instal·lant el paquet %s..."
-
-#: printer/printerdrake.pm:2491 printer/printerdrake.pm:2497
-#: printer/printerdrake.pm:2525
-#, fuzzy, c-format
-msgid "HPLIP"
-msgstr "PL_IP"
-
-#: printer/printerdrake.pm:2498
-#, c-format
-msgid "Only printing will be possible on the %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2513
-#, fuzzy, c-format
-msgid "Could not remove your old HPOJ configuration file %s for your %s! "
-msgstr ""
-"No s'ha pogut crear el directori de la configuració de l'usuari del gnome «%"
-"s»: %s\n"
-
-#: printer/printerdrake.pm:2515
-#, c-format
-msgid "Please remove the file manually and restart HPOJ."
-msgstr ""
-
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "Checking device and configuring %s..."
-msgstr "S'està comprovant el dispositiu i configurant l'%s..."
-
-#: printer/printerdrake.pm:2557
-#, fuzzy, c-format
-msgid "Which printer do you want to set up with HPLIP?"
-msgstr "A quin sector ho voleu moure?"
-
-#: printer/printerdrake.pm:2576
-#, c-format
-msgid "HPLIP was not able to communicate with the chosen printer!"
-msgstr ""
-
-#
-#: printer/printerdrake.pm:2577 printer/printerdrake.pm:2584
-#, fuzzy, c-format
-msgid "Setting up the printer without HPLIP..."
-msgstr "Establint la impressora per defecte..."
-
-#: printer/printerdrake.pm:2583
-#, c-format
-msgid ""
-"HPLIP did not find any local printers (Parallel, USB) which it supports!"
-msgstr ""
-
-#
-#: printer/printerdrake.pm:2622
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "S'estan instal·lant els paquets SANE..."
-
-#: printer/printerdrake.pm:2635
-#, c-format
-msgid "Scanning on the %s will not be possible."
-msgstr ""
-
-#: printer/printerdrake.pm:2650
-#, fuzzy, c-format
-msgid "Using and Maintaining your %s"
-msgstr "S'està enviant i publicant l'article \"%s\""
-
-#: printer/printerdrake.pm:2664
-#, fuzzy, c-format
-msgid "Configuring device..."
-msgstr "S'està configurant..."
-
-#: printer/printerdrake.pm:2701
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "S'està posant a disposició del CUPS el port d'impressora..."
-
-#
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2985
-#: printer/printerdrake.pm:3138
-#, c-format
-msgid "Reading printer database..."
-msgstr "S'està llegint la base de dades d'impressores..."
-
-#: printer/printerdrake.pm:2943
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Introduïu el nom de la impressora i comentaris"
-
-#: printer/printerdrake.pm:2947 printer/printerdrake.pm:4206
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"El nom de la impressora només pot constar de lletres, números i el caràcter "
-"de subratllat"
-
-#: printer/printerdrake.pm:2953 printer/printerdrake.pm:4211
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"La impressora \"%s\" ja existeix,\n"
-"realment voleu sobreescriure la seva configuració?"
-
-#: printer/printerdrake.pm:2960
-#, c-format
-msgid ""
-"The printer name \"%s\" has more than 12 characters which can make the "
-"printer unaccessible from Windows clients. Do you really want to use this "
-"name?"
-msgstr ""
-
-#: printer/printerdrake.pm:2969
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Cada impressora necessita un nom (per exemple \"impressora\"). Els camps de "
-"Descripció i Ubicació no són necessaris. Són comentaris per als usuaris."
-
-#: printer/printerdrake.pm:2970
-#, c-format
-msgid "Name of printer"
-msgstr "Nom de la impressora"
-
-#: printer/printerdrake.pm:2971 standalone/drakconnect:592
-#: standalone/harddrake2:39 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Description"
-msgstr "Descripció"
-
-#: printer/printerdrake.pm:2972 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Location"
-msgstr "Ubicació"
-
-#
-#: printer/printerdrake.pm:2990
-#, c-format
-msgid "Preparing printer database..."
-msgstr "S'està preparant la base de dades d'impressores..."
-
-#
-#: printer/printerdrake.pm:3116
-#, c-format
-msgid "Your printer model"
-msgstr "El model de la vostra impressora"
-
-#: printer/printerdrake.pm:3117
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"Printerdrake ha comparat el nom del model resultant de la detecció "
-"automàtica d'impressores amb els models llistats en la seva base de dades "
-"d'impressores per trobar el millor resultat. L'elecció pot ser dolenta, "
-"especialment si la vostra impressora no es troba a la base de dades. Per "
-"tant, mireu si l'elecció és correcta i feu clic a \"El model és correcte\" "
-"si ho és, o a \"Selecciona el model manualment\" per tal d'escollir "
-"manualment el model d'impressora en la pantalla següent.\n"
-"\n"
-"Per la vostra impressora el Printerdrake ha trobat:\n"
-"\n"
-"%s"
-
-#
-#: printer/printerdrake.pm:3122 printer/printerdrake.pm:3125
-#, c-format
-msgid "The model is correct"
-msgstr "El model és correcte"
-
-#
-#: printer/printerdrake.pm:3123 printer/printerdrake.pm:3124
-#: printer/printerdrake.pm:3127
-#, c-format
-msgid "Select model manually"
-msgstr "Selecciona el model manualment"
-
-#: printer/printerdrake.pm:3151
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
-msgstr ""
-"\n"
-"\n"
-"Si us plau, comproveu si el Printerdrake ha detectat correctament el model "
-"de la impressora. Cerqueu el model correcte a la llista quan estigui "
-"ressaltat un model erroni o bé \"Impressora bàsica\"."
-
-#: printer/printerdrake.pm:3170
-#, c-format
-msgid "Install a manufacturer-supplied PPD file"
-msgstr "Instal·la un fitxer PPD subministrat pel fabricant"
-
-#: printer/printerdrake.pm:3202
-#, c-format
-msgid ""
-"Every PostScript printer is delivered with a PPD file which describes the "
-"printer's options and features."
-msgstr ""
-"Tota impressora PostScript es distribueix amb un fitxer PPD que descriu les "
-"opcions de la impressora i les seves característiques."
-
-#: printer/printerdrake.pm:3203
-#, c-format
-msgid ""
-"This file is usually somewhere on the CD with the Windows and Mac drivers "
-"delivered with the printer."
-msgstr ""
-"El fitxer normalment està al CD en el que venen els controladors de Windows "
-"i Mac."
-
-#: printer/printerdrake.pm:3204
-#, c-format
-msgid "You can find the PPD files also on the manufacturer's web sites."
-msgstr "També es poden trobar fitxers PPD a les pàgines web dels fabricants."
-
-#: printer/printerdrake.pm:3205
-#, c-format
-msgid ""
-"If you have Windows installed on your machine, you can find the PPD file on "
-"your Windows partition, too."
-msgstr ""
-"Si teniu Windows instal·lat en el vostre ordinador, també podeu buscar el "
-"fitxer PPD a la vostra partició de Windows."
-
-#: printer/printerdrake.pm:3206
-#, c-format
-msgid ""
-"Installing the printer's PPD file and using it when setting up the printer "
-"makes all options of the printer available which are provided by the "
-"printer's hardware"
-msgstr ""
-
-#: printer/printerdrake.pm:3207
-#, c-format
-msgid ""
-"Here you can choose the PPD file to be installed on your machine, it will "
-"then be used for the setup of your printer."
-msgstr ""
-"Aquí podeu escollir el fitxer PPD que s'instal·larà al vostre ordinador, "
-"serà usat per configurar la vostra impressora."
-
-#: printer/printerdrake.pm:3209
-#, c-format
-msgid "Install PPD file from"
-msgstr "Instal·la el fitxer PPD des de"
-
-#: printer/printerdrake.pm:3212 printer/printerdrake.pm:3220
-#: standalone/scannerdrake:183 standalone/scannerdrake:192
-#: standalone/scannerdrake:242 standalone/scannerdrake:250
-#, c-format
-msgid "Floppy Disk"
-msgstr "Disquet"
-
-#: printer/printerdrake.pm:3213 printer/printerdrake.pm:3222
-#: standalone/scannerdrake:184 standalone/scannerdrake:194
-#: standalone/scannerdrake:243 standalone/scannerdrake:252
-#, c-format
-msgid "Other place"
-msgstr "Una altra ubicació"
-
-#: printer/printerdrake.pm:3228
-#, c-format
-msgid "Select PPD file"
-msgstr "Seleccioneu el fitxer PPD"
-
-#: printer/printerdrake.pm:3232
-#, c-format
-msgid "The PPD file %s does not exist or is unreadable!"
-msgstr "El fitxer PPD %s no existeix o no és pot llegir!"
-
-#: printer/printerdrake.pm:3238
-#, c-format
-msgid "The PPD file %s does not conform with the PPD specifications!"
-msgstr "El fitxer PPD %s no compleix les especificacions PPD!"
-
-#
-#: printer/printerdrake.pm:3249
-#, c-format
-msgid "Installing PPD file..."
-msgstr "S'està instal·lant el fitxer PPD..."
-
-#
-#: printer/printerdrake.pm:3368
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "Configuració de la OKI winprinter"
-
-#: printer/printerdrake.pm:3369
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"Esteu configurant una winprinter làser OKI. Aquestes impressores\n"
-"usen un protocol de comunicació molt especial i només funcionen quan es "
-"connecten al primer port paral·lel. Si la impressora està connectada a un "
-"altre port o a un servidor d'impressió, connecteu-la al primer port "
-"paral·lel abans d'imprimir la pàgina de prova. Si no ho feu, la impressora "
-"no funcionarà. El controlador de la impressora ignorarà el tipus de connexió."
-
-#
-#: printer/printerdrake.pm:3394 printer/printerdrake.pm:3424
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Configuració de Lexmark inkjet"
-
-#: printer/printerdrake.pm:3395
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Els controladors per a inkjet proporcionats per Lexmark només funcionen amb "
-"impressores locals, i no amb impressores en ordinadors remots o servidors "
-"d'impressió. Si us plau, connecteu la vostra impressora a un port local o "
-"configureu-la en l'ordinador on està connectada."
-
-#: printer/printerdrake.pm:3425
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-"Per poder imprimir amb la Lexmark inkjet i amb aquesta configuració, "
-"necessiteu els controladors de la impressora inkjet proporcionats per "
-"Lexmark (http://www.lexmark.com/). Dins de la web de Lexmark, feu clic al "
-"botó \"Controladors\" i trieu la secció d'impressores. Aleshores escolliu el "
-"vostre model i després \"Linux\" com a sistema operatiu. Els controladors "
-"vénen en paquets RPM o en seqüències per a l'intèrpret d'ordres amb una "
-"instal·lació gràfica interactiva. No necessiteu fer aquesta configuració amb "
-"la interfície gràfica. Cancel·leu directament després de l'acord de "
-"llicència. Llavors imprimiu pàgines d'alineació dels capçals d'impressió amb "
-"l'ordre \"lexmarkmaintain\" i ajusteu l'alineació dels capçals amb aquest "
-"programa."
-
-#
-#: printer/printerdrake.pm:3435
-#, c-format
-msgid "Lexmark X125 configuration"
-msgstr "Configuració de Lexmark X125"
-
-#: printer/printerdrake.pm:3436
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes. Please connect "
-"your printer to a local USB port or configure it on the machine where it is "
-"connected to."
-msgstr ""
-"El controlador per aquesta impressora només suporten impressores connectaves "
-"localment via USB, i no amb impressores en ordinadors remots o servidors "
-"d'impressió. Si us plau, connecteu la vostra impressora a un port USB local "
-"o configureu-la en l'ordinador on està connectada."
-
-#
-#: printer/printerdrake.pm:3458
-#, c-format
-msgid "Samsung ML/QL-85G configuration"
-msgstr "Configuració de Samsung ML/QL-85G"
-
-#: printer/printerdrake.pm:3459 printer/printerdrake.pm:3486
-#, fuzzy, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected on the "
-"first parallel port, no printers on remote machines or print server boxes or "
-"on other parallel ports. Please connect your printer to the first parallel "
-"port or configure it on the machine where it is connected to."
-msgstr ""
-"El controlador per aquesta impressora només suporten impressores connectaves "
-"localment via USB, i no amb impressores en ordinadors remots o servidors "
-"d'impressió. Si us plau, connecteu la vostra impressora a un port USB local "
-"o configureu-la en l'ordinador on està connectada."
-
-#
-#: printer/printerdrake.pm:3485
-#, c-format
-msgid "Canon LBP-460/660 configuration"
-msgstr "Configuració de Canon LBP-460/660"
-
-#
-#: printer/printerdrake.pm:3512
-#, fuzzy, c-format
-msgid "Canon LBP-810/1120 (CAPT) configuration"
-msgstr "Configuració de Canon LBP-460/660"
-
-#: printer/printerdrake.pm:3513
-#, fuzzy, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes or on the parallel "
-"port. Please connect your printer to the USB or configure it on the machine "
-"where it is directly connected to."
-msgstr ""
-"El controlador per aquesta impressora només suporten impressores connectaves "
-"localment via USB, i no amb impressores en ordinadors remots o servidors "
-"d'impressió. Si us plau, connecteu la vostra impressora a un port USB local "
-"o configureu-la en l'ordinador on està connectada."
-
-#: printer/printerdrake.pm:3520
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "Penjada de microprogramari per a l'HP LaserJet 1000"
-
-#: printer/printerdrake.pm:3670
-#, c-format
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Paràmetres predeterminats de la impressora\n"
-"\n"
-"Us hauríeu d'assegurar que la mida de pàgina, el tipus de tinta i el mode "
-"d'impressió (si estan disponibles) i també la configuració del maquinari de "
-"les impressores làser (memòria, unitat dúplex, safates extra) són correctes. "
-"Cal remarcar que amb una qualitat d'impressió o una resolució molt altes la "
-"impressió pot ser molt lenta."
-
-#
-#: printer/printerdrake.pm:3795
-#, c-format
-msgid "Printer default settings"
-msgstr "Paràmetres per defecte de la impressora"
-
-#: printer/printerdrake.pm:3802
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "L'opció %s ha de ser un número enter!"
-
-#: printer/printerdrake.pm:3806
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "L'opció %s ha de ser un número!"
-
-#: printer/printerdrake.pm:3810
-#, c-format
-msgid "Option %s out of range!"
-msgstr "L'opció %s està fora de rang!"
-
-#: printer/printerdrake.pm:3862
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Voleu definir la impressora (\"%s\")\n"
-"com a impressora predeterminada?"
-
-#
-#: printer/printerdrake.pm:3878
-#, c-format
-msgid "Test pages"
-msgstr "Pàgines de prova"
-
-#: printer/printerdrake.pm:3879
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Escolliu les pàgines de prova que voleu imprimir.\n"
-"Nota: la pàgina de prova de fotografia pot ser molt lenta d'imprimir i en "
-"impressores làser amb poca memòria podria no acabar d'imprimir-se. "
-"Normalment n'hi ha prou d'imprimir la pàgina de prova estàndard."
-
-#
-#: printer/printerdrake.pm:3883
-#, c-format
-msgid "No test pages"
-msgstr "Cap pàgina de prova"
-
-#
-#: printer/printerdrake.pm:3884
-#, c-format
-msgid "Print"
-msgstr "Imprimeix"
-
-#
-#: printer/printerdrake.pm:3909
-#, c-format
-msgid "Standard test page"
-msgstr "Pàgina de prova estàndard"
-
-#: printer/printerdrake.pm:3912
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Pàgina de prova alternativa (Carta)"
-
-#
-#: printer/printerdrake.pm:3915
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Pàgina de prova alternativa (A4)"
-
-#
-#: printer/printerdrake.pm:3917
-#, c-format
-msgid "Photo test page"
-msgstr "Pàgina de prova de fotografia"
-
-#: printer/printerdrake.pm:3930
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "S'esta(n) imprimint la(es) pàgina(es) de prova..."
-
-#
-#: printer/printerdrake.pm:3950
-#, c-format
-msgid "Skipping photo test page."
-msgstr "S'està saltant la pàgina de prova de fotografia."
-
-#: printer/printerdrake.pm:3967
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"La(es) pàgina(es) de prova s'ha(n) enviat a la impressora.\n"
-"Pot passar un cert temps abans no comenci la impressió.\n"
-"Estat de la impressió:\n"
-"%s\n"
-"\n"
-
-#
-#: printer/printerdrake.pm:3971
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"La(es) pàgina(es) de prova s'ha(n) enviat a la impressora.\n"
-"Pot passar un cert temps abans no comenci la impressió.\n"
-
-#: printer/printerdrake.pm:3981
-#, c-format
-msgid "Did it work properly?"
-msgstr "Ha funcionat correctament?"
-
-#
-#: printer/printerdrake.pm:4005
-#, c-format
-msgid "Raw printer"
-msgstr "Impressora en cru (raw)"
-
-#: printer/printerdrake.pm:4027
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Per imprimir un fitxer des de la línia d'ordres (finestra de terminal) podeu "
-"utilitzar la comanda \"%s <fitxer>\" o una eina d'impressió gràfica: \"xpp "
-"<fitxer>\" o \"kprinter <fitxer>\". Les eines gràfiques us permeten escollir "
-"la impressora i modificar-ne els paràmetres fàcilment.\n"
-
-#: printer/printerdrake.pm:4029
-#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Podeu utilitzar aquestes ordres en el camp \"Ordre d'impressió\" dels "
-"diàlegs d'impressió de moltes aplicacions, però ara no heu de subministrar "
-"el fitxer perquè el fitxer per imprimir ja el proporciona l'aplicació.\n"
-
-#: printer/printerdrake.pm:4032 printer/printerdrake.pm:4049
-#: printer/printerdrake.pm:4059
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"L'ordre \"%s\" també us permet modificar els paràmetres per a un treball "
-"d'impressió concret. Simplement afegiu els paràmetres desitjats a la línia "
-"d'ordres, p.ex.: \"%s <fitxer>\". "
-
-#: printer/printerdrake.pm:4035 printer/printerdrake.pm:4075
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"Per conèixer les opcions disponibles de la impressora actual, llegiu la "
-"llista de sota o feu clic al botó \"Imprimeix la llista d'opcions\".%s%s%s\n"
-"\n"
-
-#: printer/printerdrake.pm:4039
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Aquí teniu una llista de les opcions d'impressió disponibles per a la "
-"impressora actual:\n"
-"\n"
-
-#: printer/printerdrake.pm:4044 printer/printerdrake.pm:4054
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Per imprimir un fitxer des de la línia d'ordres (finestra de terminal) useu "
-"l'ordre \"%s <fitxer>\".\n"
-
-#: printer/printerdrake.pm:4046 printer/printerdrake.pm:4056
-#: printer/printerdrake.pm:4066
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"També podeu utilitzar aquesta ordre en el camp \"Ordre d'impressió\" dels "
-"diàlegs d'impressió de moltes aplicacions. Però ara no heu de subministrar "
-"el fitxer perquè el fitxer per imprimir ja el proporciona l'aplicació.\n"
-
-#: printer/printerdrake.pm:4051 printer/printerdrake.pm:4061
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Per veure una llista de les opcions disponibles per a la impressora actual "
-"feu clic sobre el botó \"Imprimeix la llista d'opcions\"."
-
-#: printer/printerdrake.pm:4064
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Per imprimir un fitxer des de la línia d'ordres (finestra de terminal) "
-"utilitzeu l'ordre \"%s <fitxer>\" o \"%s <fitxer>\".\n"
-
-#: printer/printerdrake.pm:4068
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"També podeu emprar la interfície gràfica \"xpdq\" per configurar opcions i "
-"gestionar treballs d'impressió.\n"
-"Si esteu utilitzant KDE com a entorn gràfic teniu un \"botó d'emergència\", "
-"una icona a l'escriptori, etiquetada amb \"ATURA la impressora!\", que atura "
-"tots el treballs d'impressió immediatament en fer-hi clic. Això és útil, per "
-"exemple, quan se us enganxa el paper en la impressora.\n"
-
-#: printer/printerdrake.pm:4072
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"Les ordres \"%s\" i \"%s\" també permeten modificar els paràmetres per a un "
-"treball d'impressió concret. Simplement afegiu els paràmetres que vulgueu a "
-"la línia d'ordres, p.ex. \"%s <fitxer>\".\n"
-
-#: printer/printerdrake.pm:4081
-#, fuzzy, c-format
-msgid "Using/Maintaining the printer \"%s\""
-msgstr "S'està imprimint en la impressora \"%s\""
-
-#: printer/printerdrake.pm:4082
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "S'està imprimint en la impressora \"%s\""
-
-#
-#: printer/printerdrake.pm:4088
-#, c-format
-msgid "Print option list"
-msgstr "Imprimeix la llista d'opcions"
-
-#
-#: printer/printerdrake.pm:4092
-#, fuzzy, c-format
-msgid "Printing option list..."
-msgstr "Imprimeix la llista d'opcions"
-
-#: printer/printerdrake.pm:4110
-#, c-format
-msgid ""
-"Your %s is set up with HP's HPLIP driver software. This way many special "
-"features of your printer are supported.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4113
-#, c-format
-msgid ""
-"The scanner in your printer can be used with the usual SANE software, for "
-"example Kooka or XSane (Both in the Multimedia/Graphics menu). "
-msgstr ""
-
-#: printer/printerdrake.pm:4114
-#, c-format
-msgid ""
-"Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to "
-"share your scanner on the network.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4118
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed like a usual USB "
-"mass storage device. "
-msgstr ""
-
-#: printer/printerdrake.pm:4119
-#, c-format
-msgid ""
-"After inserting a card a hard disk icon to access the card should appear on "
-"your desktop.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4121
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed using HP's Printer "
-"Toolbox (Menu: System/Monitoring/HP Printer Toolbox) clicking the \"Access "
-"Photo Cards...\" button on the \"Functions\" tab. "
-msgstr ""
-
-#: printer/printerdrake.pm:4122
-#, c-format
-msgid ""
-"Note that this is very slow, reading the pictures from the camera or a USB "
-"card reader is usually faster.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4125
-#, c-format
-msgid ""
-"HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a "
-"lot of status monitoring and maintenance functions for your %s:\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4126
-#, c-format
-msgid " - Ink level/status info\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4127
-#, c-format
-msgid " - Ink nozzle cleaning\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4128
-#, fuzzy, c-format
-msgid " - Print head alignment\n"
-msgstr "L'alineació horitzontal"
-
-#
-#: printer/printerdrake.pm:4129
-#, fuzzy, c-format
-msgid " - Color calibration\n"
-msgstr "Configuració de color"
-
-#
-#: printer/printerdrake.pm:4170 printer/printerdrake.pm:4197
-#: printer/printerdrake.pm:4232
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Configuració de la transferència de la impressió"
-
-#: printer/printerdrake.pm:4171
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"Podeu copiar la configuració d'impressió que he fet per la cua %s a la %s, "
-"la cua d'impressió actual. Totes les dades de configuració (nom "
-"d'impressora, descripció, ubicació, tipus de connexió i paràmetres per "
-"defecte) se sobreescriuran, però els treballs d'impressió no seran "
-"transferits.\n"
-"No totes les cues d'impressió poden ser transferides degut a les raons "
-"següents:\n"
-
-#: printer/printerdrake.pm:4174
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS no permet l'ús d'impressores en servidors Novell ni que les impressores "
-"enviïn les dades dins d'una ordre formada arbitràriament.\n"
-
-#: printer/printerdrake.pm:4176
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ només funciona amb impressores locals, impressores LPD remotes, i "
-"impressores de Socket/TCP.\n"
-
-#: printer/printerdrake.pm:4178
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD i LPRng no funcionen amb impressores IPP.\n"
-
-#: printer/printerdrake.pm:4180
-#, c-format
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"A més, les cues que no han estat creades amb aquest programa o amb "
-"\"foomatic-configure\" no es poden transferir."
-
-#: printer/printerdrake.pm:4181
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Tampoc poden transferir-se les impressores configurades amb els fitxers PPD "
-"proporcionats pels seus fabricants o amb controladors nadius per a CUPS."
-
-#: printer/printerdrake.pm:4182
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Marqueu les impressores que voleu transferir i feu clic a \n"
-"\"Transfereix\"."
-
-#: printer/printerdrake.pm:4185
-#, c-format
-msgid "Do not transfer printers"
-msgstr "No transfereixis cap impressora"
-
-#: printer/printerdrake.pm:4186 printer/printerdrake.pm:4202
-#, c-format
-msgid "Transfer"
-msgstr "Transfereix"
-
-#: printer/printerdrake.pm:4198
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Ja existeix una impressora amb nom \"%s\" en %s. \n"
-"Feu clic a \"Transfereix\" per sobreescriure-la.\n"
-"També podeu escriure un nom nou o ometre aquesta impressora."
-
-#
-#: printer/printerdrake.pm:4219
-#, c-format
-msgid "New printer name"
-msgstr "Nou nom d'impressora"
-
-#: printer/printerdrake.pm:4222
-#, c-format
-msgid "Transferring %s..."
-msgstr "S'està transferint %s..."
-
-#: printer/printerdrake.pm:4233
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Heu transferit la vostra impressora predeterminada anterior (\"%s\"). Voleu "
-"que també sigui la impressora predeterminada en el nou sistema d'impressió %"
-"s?"
-
-#
-#: printer/printerdrake.pm:4243
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "S'estan refrescant les dades de les impressores..."
-
-#
-#: printer/printerdrake.pm:4253
-#, c-format
-msgid "Starting network..."
-msgstr "S'està arrencant la xarxa..."
-
-#
-#: printer/printerdrake.pm:4296 printer/printerdrake.pm:4300
-#: printer/printerdrake.pm:4302
-#, c-format
-msgid "Configure the network now"
-msgstr "Configureu la xarxa ara"
-
-#
-#: printer/printerdrake.pm:4297
-#, c-format
-msgid "Network functionality not configured"
-msgstr "La funcionalitat de xarxa no ha estat configurada"
-
-#: printer/printerdrake.pm:4298
-#, c-format
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"Esteu a punt de configurar una impressora remota. Això necessita una "
-"connexió de xarxa operativa, però la vostra xarxa encara no està "
-"configurada. Si continueu sense configurar la xarxa, no podreu utilitzar la "
-"impressora que esteu configurant ara. Què voleu fer?"
-
-#
-#: printer/printerdrake.pm:4301
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Continua sense configurar la xarxa"
-
-#: printer/printerdrake.pm:4332
-#, c-format
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network is accessible after booting your "
-"system and correct the configuration using the %s Control Center, section "
-"\"Network & Internet\"/\"Connection\", and afterwards set up the printer, "
-"also using the %s Control Center, section \"Hardware\"/\"Printer\""
-msgstr ""
-"La configuració de xarxa feta durant la instal·lació no s'ha pogut iniciar "
-"ara. Comproveu si la xarxa es torna accessible després de reiniciar el "
-"sistema i corregiu la configuració utilitzant el Centre de Control %s, a la "
-"secció \"Xarxa & Internet\"/\"Connexió\", i després configureu la "
-"impressora, també usant el Centre de Control %s, secció \"Maquinari\"/"
-"\"Impressores\""
-
-#: printer/printerdrake.pm:4333
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"L'accés a la xarxa no ha funcionat i no s'ha pogut iniciar. Comproveu la "
-"configuració i el maquinari. Després proveu de configurar la impressora "
-"remota una altra vegada."
-
-#
-#: printer/printerdrake.pm:4343
-#, c-format
-msgid "Restarting printing system..."
-msgstr "S'està reiniciant el sistema d'impressió..."
-
-#
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "high"
-msgstr "alt"
-
-#
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "paranoid"
-msgstr "paranoic"
-
-#: printer/printerdrake.pm:4376
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-"S'està instal·lant un sistema d'impressió amb el nivell de seguretat %s"
-
-#: printer/printerdrake.pm:4377
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessible by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Ara s'instal·larà el sistema d'impressió %s en un sistema que s'executa en "
-"el nivell de seguretat %s.\n"
-"\n"
-"Aquest sistema d'impressió executa un dimoni (procés en segon pla) que "
-"espera els treballs d'impressió i els gestiona. Aquest dimoni és accessible "
-"per ordinadors remots connectats a la xarxa i, per tant, és un possible punt "
-"d'atac. Per tant, només s'arrenquen per defecte uns pocs dimonis triats en "
-"aquest nivell de seguretat.\n"
-"\n"
-"Realment voleu configurar la impressió en aquest ordinador?"
-
-#
-#: printer/printerdrake.pm:4413
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "S'està iniciant el sistema d'impressió en arrencar l'ordinador"
-
-#: printer/printerdrake.pm:4414
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"El sistema d'impressió (%s) no s'arrencarà automàticament quan l'ordinador "
-"s'iniciï.\n"
-"\n"
-"És possible que l'arrencada automàtica fos inhabilitada en canviar a un "
-"nivell de seguretat més alt, perquè el sistema d'impressió és un punt d'atac "
-"potencial.\n"
-"\n"
-"Voleu tornar a habilitar l'arrencada automàtica del sistema d'impressió?"
-
-#: printer/printerdrake.pm:4437
-#, c-format
-msgid "Checking installed software..."
-msgstr "S'està comprovant el programari instal·lat..."
-
-#: printer/printerdrake.pm:4443
-#, c-format
-msgid "Removing %s..."
-msgstr "S'està eliminant %s"
-
-#
-#: printer/printerdrake.pm:4447
-#, c-format
-msgid "Could not remove the %s printing system!"
-msgstr "No s'ha pogut eliminar el sistema d'impressió %s!"
-
-#
-#: printer/printerdrake.pm:4471
-#, c-format
-msgid "Installing %s..."
-msgstr "S'està instal·lant %s..."
-
-#
-#: printer/printerdrake.pm:4475
-#, c-format
-msgid "Could not install the %s printing system!"
-msgstr "No s'ha pogut instal·lar el sistema d'impressió %s!"
-
-#: printer/printerdrake.pm:4543
-#, c-format
-msgid ""
-"In this mode there is no local printing system, all printing requests go "
-"directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:4545
-#, c-format
-msgid ""
-"Enter the host name or IP of your CUPS server and click OK if you want to "
-"use this mode, click \"Quit\" otherwise."
-msgstr ""
-
-#
-#: printer/printerdrake.pm:4559
-#, c-format
-msgid "Name or IP of remote server:"
-msgstr "Nom o IP del servidor remot:"
-
-#
-#: printer/printerdrake.pm:4579
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Establint la impressora per defecte..."
-
-#
-#: printer/printerdrake.pm:4599
-#, c-format
-msgid "Local CUPS printing system or remote CUPS server?"
-msgstr "Sistema d'impressió CUPS local o servidor CUPS remot?"
-
-#: printer/printerdrake.pm:4600
-#, c-format
-msgid "The CUPS printing system can be used in two ways: "
-msgstr "El sistema d'impressió CUPS es pot usar de dues formes: "
-
-#: printer/printerdrake.pm:4602
-#, c-format
-msgid "1. The CUPS printing system can run locally. "
-msgstr ""
-
-#: printer/printerdrake.pm:4603
-#, c-format
-msgid ""
-"Then locally connected printers can be used and remote printers on other "
-"CUPS servers in the same network are automatically discovered. "
-msgstr ""
-
-#: printer/printerdrake.pm:4604
-#, c-format
-msgid ""
-"Disadvantage of this approach is, that more resources on the local machine "
-"are needed: Additional software packages need to be installed, the CUPS "
-"daemon has to run in the background and needs some memory, and the IPP port "
-"(port 631) is opened. "
-msgstr ""
-
-#: printer/printerdrake.pm:4606
-#, c-format
-msgid "2. All printing requests are immediately sent to a remote CUPS server. "
-msgstr ""
-
-#: printer/printerdrake.pm:4607
-#, c-format
-msgid ""
-"Here local resource occupation is reduced to a minimum. No CUPS daemon is "
-"started or port opened, no software infrastructure for setting up local "
-"print queues is installed, so less memory and disk space is used. "
-msgstr ""
-
-#: printer/printerdrake.pm:4608
-#, c-format
-msgid ""
-"Disadvantage is that it is not possible to define local printers then and if "
-"the specified server is down it cannot be printed at all from this machine. "
-msgstr ""
-
-#: printer/printerdrake.pm:4610
-#, c-format
-msgid "How should CUPS be set up on your machine?"
-msgstr "Com voleu configurar CUPS al vostre ordinador?"
-
-#: printer/printerdrake.pm:4614 printer/printerdrake.pm:4629
-#: printer/printerdrake.pm:4633 printer/printerdrake.pm:4639
-#, c-format
-msgid "Remote server, specify Name or IP here:"
-msgstr "Servidor remot, especifiqueu el nom o la IP aquí:"
-
-#
-#: printer/printerdrake.pm:4628
-#, c-format
-msgid "Local CUPS printing system"
-msgstr "Sistema d'impressió CUPS local"
-
-#
-#: printer/printerdrake.pm:4667
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Seleccioneu la cua d'impressió"
-
-#
-#: printer/printerdrake.pm:4668
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Quin sistema d'impressió (cua) voleu utilitzar?"
-
-#: printer/printerdrake.pm:4717
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "No s'ha pogut configurar la impressora \"%s\"!"
-
-#
-#: printer/printerdrake.pm:4732
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "S'està instal·lant el Foomatic..."
-
-#: printer/printerdrake.pm:4738
-#, c-format
-msgid "Could not install %s packages, %s cannot be started!"
-msgstr "No s'han pogut instal·lar els paquets %s, no es pot iniciar %s!"
-
-#
-#: printer/printerdrake.pm:4933
-#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it. "
-msgstr ""
-"Les impressores següents estan configurades. Feu doble clic en una "
-"impressora per modificar-ne els paràmetres, per fer-la la impressora per "
-"defecte o per veure la informació de la impressora."
-
-#: printer/printerdrake.pm:4963
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Mostra totes les impressores CUPS remotes disponibles"
-
-#: printer/printerdrake.pm:4964
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Refresca la llista d'impressores (per veure totes les impressores CUPS "
-"remotes disponibles)"
-
-#
-#: printer/printerdrake.pm:4975
-#, c-format
-msgid "CUPS configuration"
-msgstr "Configuració de CUPS"
-
-#
-#: printer/printerdrake.pm:4996
-#, c-format
-msgid "Change the printing system"
-msgstr "Modifica el sistema d'impressió"
-
-#: printer/printerdrake.pm:5005
-#, c-format
-msgid "Normal Mode"
-msgstr "Mode normal"
-
-#: printer/printerdrake.pm:5006
-#, c-format
-msgid "Expert Mode"
-msgstr "Mode expert"
-
-#: printer/printerdrake.pm:5284 printer/printerdrake.pm:5340
-#: printer/printerdrake.pm:5426 printer/printerdrake.pm:5435
-#, c-format
-msgid "Printer options"
-msgstr "Opcions de la impressora"
-
-#
-#: printer/printerdrake.pm:5320
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Modifica la configuració de la impressora"
-
-#: printer/printerdrake.pm:5322
-#, c-format
-msgid ""
-"Printer %s%s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Impressora %s%s\n"
-"Quines modificacions voleu fer en aquesta impressora?"
-
-#: printer/printerdrake.pm:5327
-#, c-format
-msgid "This printer is disabled"
-msgstr "Aquesta impressora està deshabilitada"
-
-#: printer/printerdrake.pm:5329
-#, c-format
-msgid "Do it!"
-msgstr "Fes-ho!"
-
-#
-#: printer/printerdrake.pm:5335 printer/printerdrake.pm:5400
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Nom de la impressora, descripció, ubicació"
-
-#: printer/printerdrake.pm:5337 printer/printerdrake.pm:5419
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Fabricant de la impressora, model, controlador"
-
-#: printer/printerdrake.pm:5338 printer/printerdrake.pm:5420
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Fabricant de la impressora, model"
-
-#: printer/printerdrake.pm:5342 printer/printerdrake.pm:5430
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Fes que aquesta sigui la impressora predeterminada"
-
-#
-#: printer/printerdrake.pm:5347 printer/printerdrake.pm:5436
-#: printer/printerdrake.pm:5438 printer/printerdrake.pm:5447
-#, c-format
-msgid "Enable Printer"
-msgstr "Habilita la impressora"
-
-#
-#: printer/printerdrake.pm:5350 printer/printerdrake.pm:5441
-#: printer/printerdrake.pm:5442 printer/printerdrake.pm:5444
-#, c-format
-msgid "Disable Printer"
-msgstr "Deshabilita la impressora"
-
-#
-#: printer/printerdrake.pm:5354 printer/printerdrake.pm:5448
-#, fuzzy, c-format
-msgid "Printer communication error handling"
-msgstr "Tipus de connexió de la impressora"
-
-#
-#: printer/printerdrake.pm:5355 printer/printerdrake.pm:5452
-#, c-format
-msgid "Print test pages"
-msgstr "Imprimeix la(es) pàgina(es) de prova"
-
-#
-#: printer/printerdrake.pm:5356 printer/printerdrake.pm:5454
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Aprengueu a utilitzar la impressora"
-
-#
-#: printer/printerdrake.pm:5357 printer/printerdrake.pm:5456
-#, c-format
-msgid "Remove printer"
-msgstr "Suprimeix la impressora"
-
-#: printer/printerdrake.pm:5408
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "S'està suprimint la impressora antiga \"%s\"..."
-
-#: printer/printerdrake.pm:5439
-#, c-format
-msgid "Printer \"%s\" is now enabled."
-msgstr "La impressora \"%s\" està habilitada."
-
-#: printer/printerdrake.pm:5445
-#, c-format
-msgid "Printer \"%s\" is now disabled."
-msgstr "La impressora \"%s\" està deshabilitada."
-
-#: printer/printerdrake.pm:5487
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Voleu realment suprimir la impressora \"%s\"?"
-
-#: printer/printerdrake.pm:5491
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "S'està suprimint la impressora \"%s\"..."
-
-#
-#: printer/printerdrake.pm:5515
-#, c-format
-msgid "Default printer"
-msgstr "Impressora predeterminada"
-
-#: printer/printerdrake.pm:5516
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "La impressora \"%s\" és ara la impressora per defecte."
-
#: raid.pm:42
#, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "No es pot afegir una partició al RAID _formatat_ %s"
-#: raid.pm:148
+#: raid.pm:150
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "No hi ha prou particions per al nivell RAID %d\n"
-#: scanner.pm:96
+#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr "No s'ha pogut crear el directori /usr/share/sane/firmware!"
-#: scanner.pm:107
+#: scanner.pm:106
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr "No s'ha pogut crear l'enllaç /usr/share/sane/%s!"
-#: scanner.pm:114
+#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr ""
"No s'ha pogut copiar el fitxer de firmware %s a /usr/share/sane/firmware!"
-#: scanner.pm:121
+#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr "No s'han pogut establir els permissos del fitxer de firmware %s!"
-#
-#: scanner.pm:200 standalone/scannerdrake:66 standalone/scannerdrake:70
-#: standalone/scannerdrake:78 standalone/scannerdrake:321
-#: standalone/scannerdrake:370 standalone/scannerdrake:463
-#: standalone/scannerdrake:507 standalone/scannerdrake:511
-#: standalone/scannerdrake:533 standalone/scannerdrake:598
+#: scanner.pm:199
#, c-format
msgid "Scannerdrake"
msgstr "Scannerdrake"
-#: scanner.pm:201 standalone/scannerdrake:964
+#: scanner.pm:200
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""
"No s'ha pogut instal·lar els paquets necessaris per compartir els vostres "
"escàner(s)."
-#: scanner.pm:202
+#: scanner.pm:201
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr ""
@@ -15521,13 +5200,13 @@ msgstr "Accepta/Rebutja els missatges d'error IPv4 falsos."
#: security/help.pm:13
#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr " Accepta/Refusa l'eco icmp broadcast."
+msgid "Accept/Refuse broadcasted icmp echo."
+msgstr "Accepta/Refusa l'eco icmp broadcast."
#: security/help.pm:15
#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr " Accepta/Rebutja l'eco icmp."
+msgid "Accept/Refuse icmp echo."
+msgstr "Accepta/Rebutja l'eco icmp."
#: security/help.pm:17
#, c-format
@@ -15687,8 +5366,7 @@ msgstr ""
"Si\n"
"\"%s\" és cert, informa també al registre del sistema."
-#
-#: security/help.pm:80 standalone/draksec:215
+#: security/help.pm:80
#, c-format
msgid "Security Alerts:"
msgstr "Alarmes de seguretat:"
@@ -15714,11 +5392,12 @@ msgid "Enable/Disable msec hourly security check."
msgstr "Habilita/Inhabilita la comprovació de seguretat msec horària."
#: security/help.pm:90
-#, c-format
+#, fuzzy, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"Enable su only from members of the wheel group. If set to no, allows su from "
+"any user."
msgstr ""
-" S'està habilitant su només per a membres del grup wheel o permet su des de "
+"S'està habilitant su només per a membres del grup wheel o permet su des de "
"qualsevol usuari."
#: security/help.pm:92
@@ -15734,13 +5413,13 @@ msgstr ""
#: security/help.pm:96
#, c-format
-msgid " Activate/Disable daily security check."
-msgstr " Activa/Inhabilita la comprovació diària de seguretat."
+msgid "Activate/Disable daily security check."
+msgstr "Activa/Inhabilita la comprovació diària de seguretat."
#: security/help.pm:98
#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr " Habilita/Deshabilita sulogin(8) en nivell monousuari."
+msgid "Enable/Disable sulogin(8) in single user level."
+msgstr "Habilita/Deshabilita sulogin(8) en nivell monousuari."
#: security/help.pm:100
#, c-format
@@ -16012,8 +5691,8 @@ msgid "Enable msec hourly security check"
msgstr "Habilita la comprovació de seguretat msec horària"
#: security/l10n.pm:32
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
+#, fuzzy, c-format
+msgid "Enable su only from the wheel group members"
msgstr "Habilita su només per a membres del grup wheel o per qualsevol usuari"
#: security/l10n.pm:33
@@ -16073,7 +5752,6 @@ msgstr "Mida de la història de l'intèrpret de comandes"
msgid "Shell timeout"
msgstr "Temps màxim d'espera per a l'intèrpret d'ordres"
-#
#: security/l10n.pm:44
#, c-format
msgid "User umask"
@@ -16141,8 +5819,8 @@ msgstr "Executa les comprovacions chkrootkit"
#: security/l10n.pm:57
#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "No enviïs correus quan no faci falta"
+msgid "Do not send empty mail reports"
+msgstr ""
#: security/l10n.pm:58
#, c-format
@@ -16181,12 +5859,16 @@ msgstr "Benvinguda als crackers"
msgid "Poor"
msgstr "Pobre"
+#: security/level.pm:12
+#, c-format
+msgid "Standard"
+msgstr "Estàndard"
+
#: security/level.pm:13
#, c-format
msgid "High"
msgstr "Alt"
-#
#: security/level.pm:14
#, c-format
msgid "Higher"
@@ -16218,7 +5900,6 @@ msgstr ""
"Ara, la contrasenya està habilitada, però l'ús com a ordinador de xarxa "
"segueix sense ser recomanable."
-#
#: security/level.pm:45
#, c-format
msgid ""
@@ -16238,7 +5919,6 @@ msgstr ""
"Hi ha ja algunes restriccions, i a la nit es fan més comprovacions "
"automàtiques."
-#
#: security/level.pm:47
#, c-format
msgid ""
@@ -16255,7 +5935,6 @@ msgstr ""
"que accepti connexions de molts clients. Nota: si la vostra màquina és només "
"un client d'Internet, seria millor escollir un nivell més baix."
-#
#: security/level.pm:50
#, c-format
msgid ""
@@ -16267,6 +5946,11 @@ msgstr ""
#: security/level.pm:55
#, c-format
+msgid "Security"
+msgstr "Seguretat"
+
+#: security/level.pm:55
+#, c-format
msgid "DrakSec Basic Options"
msgstr "Opcions bàsiques del DrakSec"
@@ -16275,13 +5959,11 @@ msgstr "Opcions bàsiques del DrakSec"
msgid "Please choose the desired security level"
msgstr "Escolliu el nivell de seguretat desitjat"
-#
#: security/level.pm:61
#, c-format
msgid "Security level"
msgstr "Nivell de seguretat"
-#
#: security/level.pm:63
#, c-format
msgid "Use libsafe for servers"
@@ -16463,7 +6145,6 @@ msgstr ""
"El Servidor Virtual de Linux (LVS) s'usa per construir un servidor de \n"
"gran capacitat i robustesa."
-#
#: services.pm:54
#, c-format
msgid ""
@@ -16552,7 +6233,6 @@ msgstr ""
"executant en ordinadors que actuen com a servidors per a protocols que\n"
"utilitzen el mecanisme RPC."
-#
#: services.pm:73
#, c-format
msgid ""
@@ -16622,7 +6302,6 @@ msgstr ""
"de tots els usuaris que estan connectats a un ordinador que està\n"
"executant el dimoni rwho (similar al finger)."
-#
#: services.pm:87
#, c-format
msgid "Launch the sound system on your machine"
@@ -16643,62 +6322,73 @@ msgstr ""
msgid "Load the drivers for your usb devices."
msgstr "Carrega els controladors per a dispositius USB."
-#
#: services.pm:91
#, c-format
msgid "Starts the X Font Server (this is mandatory for Xorg to run)."
msgstr "Inicia l'X Font Server (això és necessari perquè l'Xorg funcioni)."
-#: services.pm:115 services.pm:157
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-"Escolliu els serveis que s'han d'iniciar automàticament durant l'arrencada"
-
-#
-#: services.pm:127 standalone/draksambashare:111
+#: services.pm:114
#, c-format
msgid "Printing"
msgstr "Impressió"
-#: services.pm:128
+#: services.pm:115
#, c-format
msgid "Internet"
msgstr "Internet"
-#: services.pm:131
+#: services.pm:118
#, c-format
msgid "File sharing"
msgstr "Compartició de fitxers"
-#
-#: services.pm:138
+#: services.pm:120
+#, c-format
+msgid "System"
+msgstr "Sistema"
+
+#: services.pm:125
#, c-format
msgid "Remote Administration"
msgstr "Administració remota"
-#
-#: services.pm:146
+#: services.pm:133
#, c-format
msgid "Database Server"
msgstr "Servidor de base de dades"
-#: services.pm:209
+#: services.pm:144 services.pm:180
+#, c-format
+msgid "Services"
+msgstr "Serveis"
+
+#: services.pm:144
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr ""
+"Escolliu els serveis que s'han d'iniciar automàticament durant l'arrencada"
+
+#: services.pm:162
+#, c-format
+msgid "Services: %d activated for %d registered"
+msgstr "Serveis: %d activats per %d registrats"
+
+#: services.pm:196
#, c-format
msgid "running"
msgstr "s'està executant"
-#: services.pm:209
+#: services.pm:196
#, c-format
msgid "stopped"
msgstr "aturat"
-#: services.pm:213
+#: services.pm:201
#, c-format
msgid "Services and daemons"
msgstr "Serveis i dimonis"
-#: services.pm:219
+#: services.pm:207
#, c-format
msgid ""
"No additional information\n"
@@ -16707,489 +6397,32 @@ msgstr ""
"Malauradament no hi ha més informació\n"
"sobre aquest servei."
-#: services.pm:224 ugtk2.pm:1009
+#: services.pm:212 ugtk2.pm:898
#, c-format
msgid "Info"
msgstr "Informació"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "Start when requested"
msgstr "Inicia quan el demanin"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "On boot"
msgstr "En arrencar"
-#
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Start"
msgstr "Inicia"
-#
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Stop"
msgstr "Atura"
-#: share/advertising/01.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Packs"
-msgstr ""
-
-#: share/advertising/02.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More features"
-msgstr ""
-
-#: share/advertising/03.pl:3
-#, c-format
-msgid "Interactive firewall"
-msgstr "Tallafocs interactiu"
-
-#: share/advertising/04.pl:3
-#, c-format
-msgid "Desktop search"
-msgstr "Cerca d'escriptori"
-
-#: share/advertising/05.pl:3
-#, c-format
-msgid "New package manager"
-msgstr "Nou gestor de paquets"
-
-#: share/advertising/06.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More performances"
-msgstr "Mandriva Linux 2006: Més rendiment"
-
-#: share/advertising/07.pl:3
-#, c-format
-msgid "Latest kernel and GCC"
-msgstr "Últim nucli i GCC"
-
-#: share/advertising/08.pl:3
-#, c-format
-msgid "High Availibility"
-msgstr ""
-
-#: share/advertising/09.pl:3
-#, c-format
-msgid "Delta RPM"
-msgstr ""
-
-#: share/advertising/10.pl:3
-#, c-format
-msgid "Low resources setup"
-msgstr ""
-
-#: share/advertising/11.pl:3
-#, c-format
-msgid "Boot time reduction"
-msgstr "Reducció del temps d'arrencada"
-
-#: share/advertising/12.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Easier to use"
-msgstr "Mandriva Linux 2006: Més fàcil d'utilitzar"
-
-#: share/advertising/13.pl:3
-#, c-format
-msgid "Latest graphical interfaces: KDE and GNOME"
-msgstr "Les últimes interfícies gràfiques: KDE i GNOME"
-
-#: share/advertising/14.pl:3
-#, c-format
-msgid "auto-installation servers"
-msgstr ""
-
-#: share/advertising/15.pl:3
-#, c-format
-msgid "Easy and quick installation"
-msgstr "Instal·lació fàcil i ràpida"
-
-#: share/advertising/16.pl:3
-#, c-format
-msgid "Easy configuration thanks to 60 wizards"
-msgstr "Fàcil configuració gràcies a 60 auxiliars"
-
-#: share/advertising/17.pl:3
-#, c-format
-msgid "Look and feel improved"
-msgstr ""
-
-#: share/advertising/18.pl:3
-#, c-format
-msgid "New webmin theme"
-msgstr ""
-
-#: share/advertising/19.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More support"
-msgstr "Mandriva Linux 2006: Més suport"
-
-#: share/advertising/20.pl:3
-#, c-format
-msgid "Better Hardware support"
-msgstr "Millor suport pel maquinari"
-
-#: share/advertising/21.pl:3
-#, c-format
-msgid "Xen support"
-msgstr ""
-
-#: share/advertising/22.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More information"
-msgstr "Mandriva Linux 2006: Més informació"
-
-#: share/advertising/23.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Where to buy?"
-msgstr "Mandriva Linux 2006: On comprar?"
-
-#: share/advertising/24.pl:3
-#, c-format
-msgid "Where to find technical assistance?"
-msgstr "On trobar assistència tècnica?"
-
-#: share/advertising/25.pl:3
-#, c-format
-msgid "How to join the Mandriva Linux community?"
-msgstr "Com unir-se a la comunitat de Mandriva Linux?"
-
-#: share/advertising/26.pl:3
-#, c-format
-msgid "How to keep your system up-to-date?"
-msgstr ""
-
-#: share/advertising/intel.pl:3
-#, c-format
-msgid "Intel Software"
-msgstr ""
-
-#: share/advertising/skype.pl:3
-#, c-format
-msgid "Skype lets you make calls through the Internet for free."
-msgstr ""
-
-#: share/compssUsers.pl:26
-#, c-format
-msgid "Office Workstation"
-msgstr "Estació de treball d'oficina"
-
-#: share/compssUsers.pl:28
-#, c-format
-msgid ""
-"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
-"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
-msgstr ""
-"Programes d'ofimàtica: processadors de textos (OpenOffice.org Writer, "
-"Kword), fulls de càlcul (OpenOffice.org Calc, Kspread), visualitzadors pdf, "
-"etc."
-
-#: share/compssUsers.pl:29
-#, c-format
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Programes d'ofimàtica: processadors de textos (kword, abiword), fulls de "
-"càlcul (kspread, gnumeric), visualitzadors pdf, etc."
-
-#: share/compssUsers.pl:34
-#, c-format
-msgid "Game station"
-msgstr "Estació de jocs"
-
-#: share/compssUsers.pl:35
-#, c-format
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Programes d'entreteniment: acció, jocs de taula, estratègia, etc."
-
-#: share/compssUsers.pl:38
-#, c-format
-msgid "Multimedia station"
-msgstr "Estació multimèdia"
-
-#: share/compssUsers.pl:39
-#, c-format
-msgid "Sound and video playing/editing programs"
-msgstr "Programes de reproducció/edició de so i vídeo"
-
-#: share/compssUsers.pl:44
-#, c-format
-msgid "Internet station"
-msgstr "Estació d'Internet"
-
-#: share/compssUsers.pl:45
-#, c-format
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Conjunt d'eines per llegir i enviar correu i notícies (mutt, tin...) i per "
-"navegar pel Web"
-
-#: share/compssUsers.pl:50
-#, c-format
-msgid "Network Computer (client)"
-msgstr "Ordinador de xarxa (client)"
-
-#: share/compssUsers.pl:51
-#, c-format
-msgid "Clients for different protocols including ssh"
-msgstr "Clients per a diferents protocols, incloent l'ssh"
-
-#
-#: share/compssUsers.pl:55
-#, c-format
-msgid "Configuration"
-msgstr "Configuració"
-
-#: share/compssUsers.pl:56
-#, c-format
-msgid "Tools to ease the configuration of your computer"
-msgstr "Eines per facilitar la configuració de l'ordinador"
-
-#: share/compssUsers.pl:60
-#, c-format
-msgid "Console Tools"
-msgstr "Eines de consola"
-
-#: share/compssUsers.pl:61
-#, c-format
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editors, intèrprets d'ordres, eines de fitxer, terminals"
-
-#: share/compssUsers.pl:66 share/compssUsers.pl:170
-#, c-format
-msgid "C and C++ development libraries, programs and include files"
-msgstr "Biblioteques de desenvolupament C i C++, programes i fitxers include"
-
-#: share/compssUsers.pl:70 share/compssUsers.pl:174
-#, c-format
-msgid "Documentation"
-msgstr "Documentació"
-
-#: share/compssUsers.pl:71 share/compssUsers.pl:175
-#, c-format
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Llibres i Com es fa... sobre el Linux i el programari lliure"
-
-#: share/compssUsers.pl:75 share/compssUsers.pl:178
-#, c-format
-msgid "LSB"
-msgstr "LSB"
-
-#: share/compssUsers.pl:76 share/compssUsers.pl:179
-#, c-format
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Base Estàndard de Linux (LSB). Suport a aplicacions de tercers"
-
-#: share/compssUsers.pl:86
-#, c-format
-msgid "Apache"
-msgstr "Apache"
-
-#: share/compssUsers.pl:89
-#, c-format
-msgid "Groupware"
-msgstr "Groupware"
-
-#: share/compssUsers.pl:90
-#, c-format
-msgid "Kolab Server"
-msgstr "Servidor Kolab"
-
-#: share/compssUsers.pl:93 share/compssUsers.pl:134
-#, c-format
-msgid "Firewall/Router"
-msgstr "Tallafoc/Encaminador"
-
-#
-#: share/compssUsers.pl:94 share/compssUsers.pl:135
-#, c-format
-msgid "Internet gateway"
-msgstr "Passarel·la a Internet"
-
-#: share/compssUsers.pl:97
-#, c-format
-msgid "Mail/News"
-msgstr "Correu/Notícies"
-
-#: share/compssUsers.pl:98
-#, c-format
-msgid "Postfix mail server, Inn news server"
-msgstr "Servidor de correu Postfix, Servidor de noticies Inn"
-
-#: share/compssUsers.pl:101
-#, c-format
-msgid "Directory Server"
-msgstr "Servidor de directori"
-
-#
-#: share/compssUsers.pl:105
-#, c-format
-msgid "FTP Server"
-msgstr "Servidor FTP"
-
-#: share/compssUsers.pl:106
-#, c-format
-msgid "ProFTPd"
-msgstr "ProFTPd"
-
-#: share/compssUsers.pl:109
-#, c-format
-msgid "DNS/NIS"
-msgstr "DNS/NIS"
-
-#: share/compssUsers.pl:110
-#, c-format
-msgid "Domain Name and Network Information Server"
-msgstr "Servidor de Noms de Domini i d'Informació de la Xarxa (DNS/NIS)"
-
-#: share/compssUsers.pl:113
-#, c-format
-msgid "File and Printer Sharing Server"
-msgstr "Servidor de compartició de fitxers i impressores"
-
-#: share/compssUsers.pl:114
-#, c-format
-msgid "NFS Server, Samba server"
-msgstr "Servidor NFS, Servidor Samba"
-
-#: share/compssUsers.pl:117 share/compssUsers.pl:130
-#, c-format
-msgid "Database"
-msgstr "Base de dades"
-
-#: share/compssUsers.pl:118
-#, c-format
-msgid "PostgreSQL and MySQL Database Server"
-msgstr "Servidor de bases de dades PostgreSQL i MySQL"
-
-#: share/compssUsers.pl:122
-#, c-format
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: share/compssUsers.pl:123
-#, c-format
-msgid "Apache, Pro-ftpd"
-msgstr "Apache i Pro-ftpd"
-
-#: share/compssUsers.pl:126
-#, c-format
-msgid "Mail"
-msgstr "Correu"
-
-#: share/compssUsers.pl:127
-#, c-format
-msgid "Postfix mail server"
-msgstr "Servidor de correu Postfix"
-
-#: share/compssUsers.pl:131
-#, c-format
-msgid "PostgreSQL or MySQL database server"
-msgstr "Servidor de bases de dades PostgreSQL o MySQL"
-
-#: share/compssUsers.pl:138
-#, c-format
-msgid "Network Computer server"
-msgstr "Servidor d'ordinador de xarxa"
-
-#: share/compssUsers.pl:139
-#, c-format
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "Servidor NFS, Servidor SMB, Servidor Proxy, Servidor SSH"
-
-#: share/compssUsers.pl:147
-#, c-format
-msgid "KDE Workstation"
-msgstr "Estació de treball KDE"
-
-#: share/compssUsers.pl:148
-#, c-format
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"L'entorn d'escriptori K (KDE), l'entorn gràfic bàsic que inclou diverses "
-"eines"
-
-#: share/compssUsers.pl:152
-#, c-format
-msgid "GNOME Workstation"
-msgstr "Estació de treball GNOME"
-
-#: share/compssUsers.pl:153
-#, c-format
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Entorn gràfic amb un conjunt d'aplicacions i eines d'escriptori fàcil "
-"d'utilitzar"
-
-#: share/compssUsers.pl:156
-#, c-format
-msgid "IceWm Desktop"
-msgstr "Escriptori IceWm"
-
-#: share/compssUsers.pl:160
-#, c-format
-msgid "Other Graphical Desktops"
-msgstr "Altres escriptoris gràfics"
-
-#: share/compssUsers.pl:161
-#, c-format
-msgid "Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Window Maker, Enlightenment, Fvwm, etc"
-
-#: share/compssUsers.pl:184
-#, c-format
-msgid "Utilities"
-msgstr "Utilitats"
-
-#: share/compssUsers.pl:186 share/compssUsers.pl:187 standalone/logdrake:384
-#, c-format
-msgid "SSH Server"
-msgstr "Servidor SSH"
-
-#: share/compssUsers.pl:191
-#, c-format
-msgid "Webmin"
-msgstr "Webmin"
-
-#
-#: share/compssUsers.pl:192
-#, c-format
-msgid "Webmin Remote Configuration Server"
-msgstr ""
-
-#: share/compssUsers.pl:196
-#, c-format
-msgid "Network Utilities/Monitoring"
-msgstr "Utilitats de xarxa/Monitorització"
-
-#: share/compssUsers.pl:197
-#, c-format
-msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
-msgstr ""
-
-#: share/compssUsers.pl:201
-#, c-format
-msgid "Mandriva Wizards"
-msgstr "Auxiliars de Mandriva"
-
-#: share/compssUsers.pl:202
-#, c-format
-msgid "Wizards to configure server"
-msgstr "Auxiliars per configurar el servidor"
-
-#: standalone.pm:23
+#: standalone.pm:24
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
@@ -17204,7 +6437,8 @@ msgid ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
msgstr ""
"Aquest programa és programari lliure; el podeu redistribuir i/o modificar\n"
"sota els termes de la Llicència General Pública de GNU tal com l'ha\n"
@@ -17218,9 +6452,10 @@ msgstr ""
"\n"
"Heu d'haver rebut una còpia de la Llicència General Pública de GNU\n"
"amb aquest programa; si no és així, escriviu a la Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, EUA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"EUA.\n"
-#: standalone.pm:42
+#: standalone.pm:43
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
@@ -17248,7 +6483,7 @@ msgstr ""
"--help : mostra aquest missatge.\n"
"--version : mostra el número de versió.\n"
-#: standalone.pm:54
+#: standalone.pm:55
#, c-format
msgid ""
"[--boot] [--splash]\n"
@@ -17263,7 +6498,7 @@ msgstr ""
" --splash - habilita la configuració del tema d'arrencada\n"
"mode per defecte: ofereix la configuració de l'entrada automàtica"
-#: standalone.pm:59
+#: standalone.pm:60
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
@@ -17282,7 +6517,7 @@ msgstr ""
" --incident - el programa ha de ser una de les eines de Mandriva "
"Linux"
-#: standalone.pm:65
+#: standalone.pm:66
#, c-format
msgid ""
"[--add]\n"
@@ -17293,7 +6528,7 @@ msgid ""
" --wizard - like --add"
msgstr ""
-#: standalone.pm:71
+#: standalone.pm:72
#, c-format
msgid ""
"\n"
@@ -17327,7 +6562,7 @@ msgstr ""
" : nom_de_l'aplicació, com ara so per a l'StarOffice \n"
" : i gs per al ghostscript per utilitzar només aquesta."
-#: standalone.pm:86
+#: standalone.pm:87
#, fuzzy, c-format
msgid ""
"[OPTIONS]...\n"
@@ -17359,17 +6594,17 @@ msgstr ""
"--delclient : suprimeix de l'MTS una màquina client (cal una adreça "
"MAC, IP, nom d'imatge nbi)"
-#: standalone.pm:98
+#: standalone.pm:99
#, c-format
msgid "[keyboard]"
msgstr "[teclat]"
-#: standalone.pm:99
+#: standalone.pm:100
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-#: standalone.pm:100
+#: standalone.pm:101
#, c-format
msgid ""
"[OPTIONS]\n"
@@ -17392,12 +6627,7 @@ msgstr ""
"--status : torna 1 si està connectat, 0 si no, i després surt.\n"
"--quiet : no siguis interactiu. Per utilitzar amb (dis)connect."
-#: standalone.pm:109
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: standalone.pm:110
+#: standalone.pm:111
#, c-format
msgid ""
"[OPTION]...\n"
@@ -17417,7 +6647,7 @@ msgstr ""
" --merge-all-rpmnew proposa fusionar tots els fitxers .rpmnew/.rpmsave "
"trobats"
-#: standalone.pm:115
+#: standalone.pm:116
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
@@ -17426,7 +6656,7 @@ msgstr ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
-#: standalone.pm:116
+#: standalone.pm:117
#, c-format
msgid ""
" [everything]\n"
@@ -17437,7 +6667,7 @@ msgstr ""
" XFdrake [--noauto] monitor\n"
" XFdrake resolució"
-#: standalone.pm:149
+#: standalone.pm:150
#, c-format
msgid ""
"\n"
@@ -17448,9427 +6678,102 @@ msgstr ""
"Sintaxi: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
-#: standalone/XFdrake:59
-#, c-format
-msgid "You need to reboot for changes to take effect"
-msgstr ""
-"Heu de tornar a engegar l'ordinador per tal que els canvis tinguin efecte"
-
-#: standalone/XFdrake:90
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-tecla de retrocés"
-
-#: standalone/XFdrake:94
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr "Heu de sortir i tornar a entrar per tal que els canvis tinguin efecte"
-
-#: standalone/drakTermServ:112 standalone/drakTermServ:118
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s requereix un nom d'usuari...\n"
-
-#: standalone/drakTermServ:129
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s necessita: el nom de l'ordinador, adreça MAC, IP, image-nbi, 0/1 per "
-"a THIN_CLIENT, 0/1 per a la configuració local...\n"
-
-#: standalone/drakTermServ:135
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s necessita un nom d'ordinador...\n"
-
-#: standalone/drakTermServ:144
-#, c-format
-msgid "Host name for client"
-msgstr ""
-
-#: standalone/drakTermServ:145
-#, c-format
-msgid "MAC address should be in the format 00:11:22:33:44:55"
-msgstr ""
-
-#: standalone/drakTermServ:146
-#, c-format
-msgid "IP address to be assigned to client"
-msgstr ""
-
-#: standalone/drakTermServ:147
-#, c-format
-msgid "Kernel/network adapter image to use to boot client"
-msgstr ""
-
-#: standalone/drakTermServ:148
-#, c-format
-msgid "Create masking files to allow configuration tools to run on client"
-msgstr ""
-
-#: standalone/drakTermServ:149
-#, c-format
-msgid "Applications will run on server machine"
-msgstr ""
-
-#
-#: standalone/drakTermServ:234 standalone/drakTermServ:237
-#, c-format
-msgid "Terminal Server Configuration"
-msgstr "Configuració del Servidor de Terminal"
-
-#: standalone/drakTermServ:243
-#, c-format
-msgid "dhcpd Config"
-msgstr "Configuració del dhcpd"
-
-#
-#
-#: standalone/drakTermServ:247
-#, c-format
-msgid "Enable Server"
-msgstr "Habilita el servidor"
-
-#
-#: standalone/drakTermServ:253
-#, c-format
-msgid "Disable Server"
-msgstr "Inhabilita el servidor"
-
-#: standalone/drakTermServ:259
-#, c-format
-msgid "Start Server"
-msgstr "Inicia el servidor"
-
-#: standalone/drakTermServ:265
-#, c-format
-msgid "Stop Server"
-msgstr "Atura el servidor"
-
-#: standalone/drakTermServ:274
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Disquet/ISO per a Etherboot"
-
-#: standalone/drakTermServ:278
-#, c-format
-msgid "Net Boot Images"
-msgstr "Imatges d'arrencada de la xarxa"
-
-#: standalone/drakTermServ:285
-#, c-format
-msgid "Add/Del Users"
-msgstr "Afegeix/Suprimeix usuaris"
-
-#: standalone/drakTermServ:289
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Afegeix/Suprimeix clients"
-
-#: standalone/drakTermServ:297
-#, c-format
-msgid "Images"
-msgstr "Imatges"
-
-#: standalone/drakTermServ:298
-#, c-format
-msgid "Clients/Users"
-msgstr "Clients/Usuaris"
-
-#: standalone/drakTermServ:316 standalone/drakbug:47
-#, c-format
-msgid "First Time Wizard"
-msgstr "Auxiliar per a la primera vegada"
-
-#: standalone/drakTermServ:354 standalone/drakTermServ:355
-#, c-format
-msgid "%s defined as dm, adding gdm user to /etc/passwd$$CLIENT$$"
-msgstr ""
-
-#: standalone/drakTermServ:361
-#, c-format
-msgid ""
-"\n"
-" This wizard routine will:\n"
-" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
-"\t2) Setup DHCP.\n"
-"\t\n"
-"After doing these steps, the wizard will:\n"
-"\t\n"
-" a) Make all "
-"nbis. \n"
-" b) Activate the "
-"server. \n"
-" c) Start the "
-"server. \n"
-" d) Synchronize the shadow files so that all users, including root, \n"
-" are added to the shadow$$CLIENT$$ "
-"file. \n"
-" e) Ask you to make a boot floppy.\n"
-" f) If it's thin clients, ask if you want to restart KDM.\n"
-msgstr ""
-
-#: standalone/drakTermServ:407
-#, c-format
-msgid "Cancel Wizard"
-msgstr "Cancel·la l'auxiliar"
-
-#: standalone/drakTermServ:422
-#, c-format
-msgid "Please save dhcpd config!"
-msgstr ""
-
-#: standalone/drakTermServ:450
-#, c-format
-msgid "Use thin clients."
-msgstr "Usa clients prims."
-
-#: standalone/drakTermServ:452
-#, c-format
-msgid "Sync client X keyboard settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:454
-#, fuzzy, c-format
-msgid ""
-"Please select default client type (Fat is the default type if 'Use thin' is "
-"unchecked).\n"
-" 'Thin' clients run everything off the server's CPU/RAM, using the client "
-"display.\n"
-" 'Fat' clients use their own CPU/RAM but the server's filesystem."
-msgstr ""
-"Si us plau escolliu el tipus de client per defecte.\n"
-" Els clients prims ho executen tot a la CPU/RAM del servidor, usant la "
-"pantalla del client.\n"
-" Els clients grassos usen la seva CPU/RAM però el sistema de fitxers del "
-"servidor."
-
-#: standalone/drakTermServ:474
-#, c-format
-msgid "Creating net boot images for all kernels"
-msgstr "S'estan creant les imatges d'arrencada per tots els nuclis"
-
-#: standalone/drakTermServ:475 standalone/drakTermServ:807
-#: standalone/drakTermServ:823
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Això trigarà uns minuts."
-
-#: standalone/drakTermServ:481 standalone/drakTermServ:521
-#, c-format
-msgid "Done!"
-msgstr "Fet!"
-
-#: standalone/drakTermServ:492 standalone/drakTermServ:894
-#, c-format
-msgid "%s failed"
-msgstr ""
-
-#: standalone/drakTermServ:501
-#, c-format
-msgid ""
-"Not enough space to create\n"
-"NBIs in %s.\n"
-"Needed: %d MB, Free: %d MB"
-msgstr ""
-
-#: standalone/drakTermServ:507
-#, c-format
-msgid "Syncing server user list with client list, including root."
-msgstr ""
-"S'està sincronitzant la llista d'usuaris del servidor amb la del client, "
-"incloent root."
-
-#: standalone/drakTermServ:527
-#, c-format
-msgid ""
-"In order to enable changes made for thin clients, the display manager must "
-"be restarted. Restart now?"
-msgstr ""
-
-#: standalone/drakTermServ:564
-#, c-format
-msgid "Terminal Server Overview"
-msgstr "Visió general del Terminal Server"
-
-#: standalone/drakTermServ:565
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and %s is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-" - Crea imatges d'arrencada habilitades per a l'Etherboot:\n"
-" \tPer arrencar un nucli mitjançant Etherboot cal crear una imatge "
-"kernel/initrd especial.\n"
-" \tL'mkinitrd-net fa molta d'aquesta feina i el %s és només una "
-"interfície gràfica\n"
-" \tper ajudar a gestionar/personalitzar aquestes imatges. Per crear "
-"el fitxer \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include, que s'integra com a "
-"inclusió en \n"
-" \tdhcpd.conf, heu de crear les imatges Etherboot per a un nucli "
-"complet com a mínim."
-
-#: standalone/drakTermServ:571
-#, c-format
-msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. %s helps create/"
-"remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
-msgstr ""
-" - Manté /etc/dhcpd.conf:\n"
-" \t\tPer arrencar clients desde la xarxa, cada client necessita una "
-"entrada dhcpd.conf, assignant a la màquina\n"
-" \t\t una adreça IP i imatges d'arrencada de xarxa. El %s ajuda a "
-"crear/eliminar aquestes entrades.\n"
-"\t\t\t\n"
-" \t\t(Les targetes PCI poden ometre la imatge; l'Etherboot en "
-"demanarà la correcta. Heu de\n"
-" \t\tconsiderar també que, quan l'Etherboot cerca imatges, espera "
-"noms com ara\n"
-" \t\tboot-3c59x.nbi, i no com boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tUna secció dhcpd.conf típica que permeti l'ús d'un client sense "
-"disc té aquest aspecte:"
-
-#: standalone/drakTermServ:589
-#, fuzzy, c-format
-msgid ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be "
-"'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, \n"
-" %s is written for thin clients. \n"
-" System config files xdm-config, kdmrc, and gdm.conf are modified if "
-"thin clients are \n"
-" used, to enable XDMCP. Since there are security issues in using "
-"XDMCP, hosts.deny and \n"
-" hosts.allow are modified to limit access to the local subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-msgstr ""
-"\t\t\tTot i que podeu utilitzar un conjunt d'adreces IP i no configurar una "
-"entrada específica per a una\n"
-"\t\t\tmàquina client, la utilització d'un esquema d'adreça fixa facilita la "
-"utilització de la funcionalitat\n"
-"\t\t\tdels fitxers de configuració específics del client que proporciona el %"
-"s.\n"
-"\t\t\t\n"
-"\t\t\tNota: l'entrada \"#type\" només és utilitzada pel %s. Els clients "
-"poden ser 'prims'\n"
-"\t\t\t o bé 'grassos'. Els clients prims executen la majoria del programari "
-"en el servidor mitjançant\n"
-"\t\t\t l'xdmcp, mentre que els grassos executen la majoria del programari en "
-"la màquina client. S'ha\n"
-"\t\t\t escrit un inittab especial, %s per a clients prims. Els fitxers de\n"
-"\t\t\t configuració del sistema xdm-config, kdmrc i gdm.conf es modifiquen "
-"si s'utilitzen clients prims\n"
-"\t\t\t per habilitar l'xdmcp. Atès que la utilització de l'xdmcp té a veure "
-"amb temes de seguretat,\n"
-"\t\t\t hosts.deny i hosts.allow es modifiquen per limitar l'accés a la "
-"subxarxa local.\n"
-"\t\t\t\n"
-"\t\t\tNota: l'entrada \"#hdw_config\" també és utilitzada només pel %s. Els "
-"clients poden ser\n"
-"\t\t\t'certs' o 'falsos'. 'Cert' habilita l'entrada de root a la màquina "
-"client i permet una configuració local\n"
-"\t\t\tde maquinari de so, ratolí i X, utilitzant les eines ‘drak'. Això "
-"s'habilita creant fitxers de configuració\n"
-"\t\t\tseparats associats amb l'adreça IP del client i creant punts de "
-"muntatge de lectura/escriptura per\n"
-"\t\t\tpermetre que el client modifiqui el fitxer. Quan estigueu satisfet amb "
-"la configuració, podeu eliminar\n"
-"\t\t\tels privilegis d'entrada de root del client.\n"
-"\t\t\t\n"
-"\t\t\tNota: heu d'aturar/iniciar el servidor després d'afegir o canviar "
-"clients."
-
-#: standalone/drakTermServ:609
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-msgstr ""
-" - Manté /etc/exports:\n"
-" \t\tEl %s permet l'exportació del sistema de fitxers root a clients "
-"sense disc. El %s\n"
-" \t\tconfigura l'entrada correcta per permetre un accés anònim al "
-"sistema de fitxers root des de\n"
-" \t\tclients sense disc.\n"
-"\n"
-" \t\tUna entrada d'exportació típica per al %s és:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tsent SUBNET/MASK definida per la vostra xarxa."
-
-#: standalone/drakTermServ:621
-#, fuzzy, c-format
-msgid ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. \n"
-" \t%s helps in this respect by adding or removing system users from "
-"this \n"
-" \tfile."
-msgstr ""
-" - Manté %s:\n"
-" \t\tPer tal que els usuaris puguin entrar al sistema des d'un client "
-"sense disc, cal que la seva entrada a\n"
-" \t\t/etc/shadow estigui duplicada a %s. El %s hi ajuda afegint\n"
-" \t\to eliminant, d'aquest fitxer, usuaris del sistema."
-
-#: standalone/drakTermServ:626
-#, c-format
-msgid ""
-" - Per client %s:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t%s will help create these files."
-msgstr ""
-" - Per client %s:\n"
-" \t\tMitjançant %s, cada client sense disc pot tenir els seus propis "
-"fitxers de configuració únics\n"
-" \t\ten el sistema de fitxers root del servidor. Permetent una "
-"configuració de maquinari de client local, \n"
-" \t\tel %s ajudarà a crear aquests fitxers."
-
-#: standalone/drakTermServ:631
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-msgstr ""
-" - Sistema de fitxers de configuració per client:\n"
-" \tMitjançant %s, cada client sense disc pot tenir els seus propis "
-"fitxers de configuració únics \n"
-" \t en el sistema de fitxers root del servidor. Permetent una "
-"configuració de maquinari de client local, \n"
-" \tels clients poden personalitzar fitxers com ara /etc/modules."
-"conf, /etc/sysconfig/mouse, \n"
-" \t\t/etc/sysconfig/keyboard segons el client.\n"
-"\n"
-" Nota: l'habilitació de la configuració del maquinari de client local "
-"habilita l'entrada de root al servidor \n"
-" de terminal en cada màquina client que tingui habilitada aquesta "
-"funció. La configuració local es pot tornar\n"
-" a desactivar, mantenint els fitxers de configuració, quan la màquina "
-"client estigui configurada."
-
-#: standalone/drakTermServ:640
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s will configure this file to work in conjunction with the images "
-"created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical TFTP configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
-msgstr ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\tEl %s configurarà aquest fitxer per funcionar conjuntament amb "
-"les imatges creades per\n"
-" \t\tmkinitrd-net, i les entrades de /etc/dhcpd.conf, per servir la "
-"imatge d'arrencada a cada client sense \n"
-" \t\tdisc.\n"
-"\n"
-" \t\tUn fitxer de configuració TFTP típic té aquest aspecte:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \t\tLes diferències respecte a la instal·lació per defecte són el "
-"canvi del senyalador de\n"
-" \t\tinhabilitació a 'no' i el canvi de camí de directori a /var/lib/"
-"tftpboot, on mkinitrd-net\n"
-" \t\tposa les seves imatges."
-
-#: standalone/drakTermServ:661
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-msgstr ""
-" - Crea disquets/CD Etherboot:\n"
-" \tLes màquines client sense disc necessiten imatge ROM a la tarjeta "
-"de xarxa, o bé un disquet o CD\n"
-" \td'arrencada per iniciar la seqüència d'arrencada. El %s ajudarà a "
-"generar\n"
-" \taquestes imatges, basades en la targeta de xarxa de la màquina "
-"client.\n"
-" \t\t\n"
-" \tUn exemple senzill de la creació manual d'un disquet d'arrencada "
-"des d'un 3Com 3c509:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-
-#: standalone/drakTermServ:694
-#, c-format
-msgid "Boot Floppy"
-msgstr "Disquet d'arrencada"
-
-#: standalone/drakTermServ:696
-#, c-format
-msgid "Boot ISO"
-msgstr "ISO d'arrencada"
-
-#: standalone/drakTermServ:698
-#, c-format
-msgid "PXE Image"
-msgstr "Imatge PXE"
-
-#: standalone/drakTermServ:759
-#, c-format
-msgid "Default kernel version"
-msgstr "Versió del nucli per defecte"
-
-#: standalone/drakTermServ:764
-#, c-format
-msgid "Create PXE images"
-msgstr ""
-
-#: standalone/drakTermServ:765
-#, c-format
-msgid "Use Unionfs (TS2)"
-msgstr ""
-
-#: standalone/drakTermServ:795
-#, c-format
-msgid "Install i586 kernel for older clients"
-msgstr ""
-
-#: standalone/drakTermServ:805
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Munta tot el nucli -->"
-
-#: standalone/drakTermServ:812
-#, c-format
-msgid "No kernel selected!"
-msgstr "No heu seleccionat cap nucli!"
-
-#: standalone/drakTermServ:815
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Munta un NIC senzill -->"
-
-#: standalone/drakTermServ:819 standalone/drakTermServ:1643
-#, c-format
-msgid "No NIC selected!"
-msgstr "No s'ha seleccionat cap NIC!"
-
-#: standalone/drakTermServ:822
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Munta tots els nuclis -->"
-
-#: standalone/drakTermServ:835
-#, c-format
-msgid ""
-"Custom\n"
-"kernel args"
-msgstr ""
-
-#: standalone/drakTermServ:840
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Suprimeix"
-
-#: standalone/drakTermServ:845
-#, c-format
-msgid "No image selected!"
-msgstr "No s'ha seleccionat cap imatge!"
-
-#
-#: standalone/drakTermServ:848
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Suprimeix tots els NBI"
-
-#: standalone/drakTermServ:925
-#, fuzzy, c-format
-msgid "Building images for kernel:"
-msgstr "S'estan creant les imatges d'arrencada per tots els nuclis"
-
-#: standalone/drakTermServ:1050
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! Indica que la contrasenya de la base de dades del sistema és diferent a\n"
-" la de la base de dades del servidor de terminal.\n"
-"Suprimiu o torneu a afegir l'usuari al servidor de terminal per habilitar "
-"l'entrada."
-
-#: standalone/drakTermServ:1055
-#, c-format
-msgid "Add User -->"
-msgstr "Afegeix un usuari -->"
-
-#: standalone/drakTermServ:1061
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- Suprimeix un usuari"
-
-#: standalone/drakTermServ:1097
-#, c-format
-msgid "type: %s"
-msgstr "tipus: %s "
-
-#: standalone/drakTermServ:1101
-#, c-format
-msgid "local config: %s"
-msgstr "configuració local:: %s"
-
-#
-#: standalone/drakTermServ:1136
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Permet la configuració del\n"
-"maquinari local."
-
-#: standalone/drakTermServ:1146
-#, c-format
-msgid "No net boot images created!"
-msgstr "No s'ha creat cap imatge d'arrencada des de xarxa"
-
-#: standalone/drakTermServ:1165
-#, c-format
-msgid "Thin Client"
-msgstr "Client prim"
-
-#: standalone/drakTermServ:1169
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "Permet clients prims"
-
-#: standalone/drakTermServ:1170
-#, c-format
-msgid ""
-"Sync client X keyboard\n"
-" settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:1171
-#, c-format
-msgid "Add Client -->"
-msgstr "Afegeix un client -->"
-
-#: standalone/drakTermServ:1181
-#, c-format
-msgid "Unknown MAC address format"
-msgstr ""
-
-#: standalone/drakTermServ:1195
-#, c-format
-msgid "type: fat"
-msgstr "tipus: gras"
-
-#: standalone/drakTermServ:1196
-#, c-format
-msgid "type: thin"
-msgstr "tipus: prim"
-
-#
-#: standalone/drakTermServ:1203
-#, c-format
-msgid "local config: false"
-msgstr "configuració local: fals"
-
-#: standalone/drakTermServ:1204
-#, c-format
-msgid "local config: true"
-msgstr "configuració local: cert"
-
-#: standalone/drakTermServ:1212
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Edita un client"
-
-#: standalone/drakTermServ:1237
-#, c-format
-msgid "Disable Local Config"
-msgstr "Inhabilita la configuració local"
-
-#: standalone/drakTermServ:1244
-#, c-format
-msgid "Delete Client"
-msgstr "Suprimeix el client"
-
-#: standalone/drakTermServ:1267
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-"Cal reiniciar el Gestor de pantalla per tal que tots els canvis tinguin "
-"efecte. \n"
-"(\"service dm restart\" a la consola)"
-
-#: standalone/drakTermServ:1313
-#, c-format
-msgid "Thin clients will not work with autologin. Disable autologin?"
-msgstr ""
-
-#: standalone/drakTermServ:1328
-#, c-format
-msgid "All clients will use %s"
-msgstr "Tots els clients usaran %s"
-
-#: standalone/drakTermServ:1362
-#, c-format
-msgid "Subnet:"
-msgstr "Subxarxa:"
-
-#: standalone/drakTermServ:1369
-#, c-format
-msgid "Netmask:"
-msgstr "Màscara de xarxa:"
-
-#: standalone/drakTermServ:1376
-#, c-format
-msgid "Routers:"
-msgstr "Encaminadors:"
-
-#: standalone/drakTermServ:1383
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Màscara de la subxarxa:"
-
-#: standalone/drakTermServ:1390
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Adreça de difusió:"
-
-#: standalone/drakTermServ:1397
-#, c-format
-msgid "Domain Name:"
-msgstr "Nom de domini:"
-
-#: standalone/drakTermServ:1405
-#, c-format
-msgid "Name Servers:"
-msgstr "Servidors de noms:"
-
-#: standalone/drakTermServ:1416
-#, c-format
-msgid "IP Range Start:"
-msgstr "Inici de l'abast de la IP:"
-
-#: standalone/drakTermServ:1417
-#, c-format
-msgid "IP Range End:"
-msgstr "Final de l'abast de la IP:"
-
-#: standalone/drakTermServ:1459
-#, c-format
-msgid "Append TS Includes To Existing Config"
-msgstr ""
-
-#: standalone/drakTermServ:1461
-#, c-format
-msgid "Write Config"
-msgstr "Escriu la configuració"
-
-#
-#: standalone/drakTermServ:1477
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Configuració del servidor dhcpd"
-
-#: standalone/drakTermServ:1478
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"La majoria d'aquests valors s'han obtingut\n"
-"del vostre sistema actual.\n"
-"Podeu modificar-los si cal."
-
-#: standalone/drakTermServ:1481
-#, c-format
-msgid ""
-"Dynamic IP Address Pool\n"
-"(needed for PXE clients):"
-msgstr ""
-
-#: standalone/drakTermServ:1634
-#, c-format
-msgid "Write to %s failed!"
-msgstr "L'escriptura a %s ha fallat!"
-
-#: standalone/drakTermServ:1647
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Si us plau, inseriu un disquet:"
-
-#: standalone/drakTermServ:1651
-#, c-format
-msgid "Could not access the floppy!"
-msgstr "No s'ha pogut accedir al disquet!"
-
-#: standalone/drakTermServ:1653
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Ja podeu extreure el disquet"
-
-#: standalone/drakTermServ:1656
-#, c-format
-msgid "No floppy drive available!"
-msgstr "No s'ha trobat cap unitat de disquet!"
-
-#: standalone/drakTermServ:1662
-#, c-format
-msgid "PXE image is %s/%s"
-msgstr "La imatge PXE és %s/%s"
-
-#: standalone/drakTermServ:1664
-#, c-format
-msgid "Error writing %s/%s"
-msgstr "Error al escriure %s/%s"
-
-#: standalone/drakTermServ:1676
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "La imatge ISO per a Etherboot és %s"
-
-#: standalone/drakTermServ:1680
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Alguna cosa ha anat malament! Teniu instal·lat l'mkisofs?"
-
-#: standalone/drakTermServ:1700
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Abans cal crear /etc/dhcpd.conf!"
-
-#: standalone/drakTermServ:1867
-#, c-format
-msgid "%s passwd bad in Terminal Server - rewriting...\n"
-msgstr ""
-
-#: standalone/drakTermServ:1880
-#, c-format
-msgid "%s is not a user..\n"
-msgstr "%s no és un usuari..\n"
-
-#: standalone/drakTermServ:1881
-#, c-format
-msgid "%s is already a Terminal Server user\n"
-msgstr "%s ja és un usuari del servidor del terminal\n"
-
-#: standalone/drakTermServ:1883
-#, c-format
-msgid "Addition of %s to Terminal Server failed!\n"
-msgstr "L'addicció del Terminal Server %s ha fallat!\n"
-
-#: standalone/drakTermServ:1885
-#, c-format
-msgid "%s added to Terminal Server\n"
-msgstr "%s afegit al servidor de terminal\n"
-
-#: standalone/drakTermServ:1903
-#, c-format
-msgid "Deleted %s...\n"
-msgstr "S'ha eliminat %s...\n"
-
-#: standalone/drakTermServ:1905 standalone/drakTermServ:1978
-#, c-format
-msgid "%s not found...\n"
-msgstr "No s'ha trobat %s...\n"
-
-#: standalone/drakTermServ:2006
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr "/etc/hosts.allow i /etc/hosts.deny ja estan configurats - no canviats"
-
-#: standalone/drakTermServ:2158
-#, c-format
-msgid "Configuration changed - restart %s/dhcpd?"
-msgstr "La configuració ha canviat; voleu reiniciar el %s/dhcpd?"
-
-#
-#: standalone/drakautoinst:38 standalone/drakhosts:123
-#: standalone/drakhosts:129 standalone/draknfs:84 standalone/draknfs:105
-#: standalone/draknfs:444 standalone/draknfs:447 standalone/draknfs:539
-#: standalone/draknfs:546 standalone/draksambashare:187
-#: standalone/draksambashare:208 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Error!"
-msgstr "S'ha produït un error!"
-
-#: standalone/drakautoinst:39
-#, c-format
-msgid "I can not find needed image file `%s'."
-msgstr "No he trobat el fitxer d'imatge necessari `%s'."
-
-#
-#: standalone/drakautoinst:41
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Configuració de la instal·lació automàtica"
-
-#: standalone/drakautoinst:42
-#, c-format
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Press ok to continue."
-msgstr ""
-"Ara es configurarà un disquet d'instal·lació automàtica. Aquesta "
-"característica és perillosa i s'ha d'utilitzar amb molta cura.\n"
-"\n"
-"Amb aquesta característica, sereu capaç de repetir la instal·lació que ja "
-"heu fet en aquest ordinador, tot i que se us consultarà en alguns passos, "
-"perquè pugueu canviar els valors.\n"
-"\n"
-"Per màxima seguretat, el particionament i la formatació mai seran executats "
-"automàticament, independentment del que trieu durant la instal·lació "
-"d'aquest ordinador.\n"
-"\n"
-"Premeu Accepta per continuar."
-
-#: standalone/drakautoinst:60
-#, c-format
-msgid "replay"
-msgstr "repeteix"
-
-#: standalone/drakautoinst:60 standalone/drakautoinst:69
-#, c-format
-msgid "manual"
-msgstr "manual"
-
-#
-#: standalone/drakautoinst:64
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Configuració automatitzada dels passos"
-
-#: standalone/drakautoinst:65
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Si us plau, escolliu per cada pas si es repetirà la vostra instal·lació o si "
-"serà manual"
-
-#
-#: standalone/drakautoinst:77 standalone/drakautoinst:78
-#: standalone/drakautoinst:92
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "S'està creant el disquet d'instal·lació automàtica"
-
-#: standalone/drakautoinst:90
-#, c-format
-msgid "Insert another blank floppy in drive %s (for drivers disk)"
-msgstr ""
-"Inseriu un disquet en blanc a la unitat %s (pel disquet de controladors)"
-
-#
-#: standalone/drakautoinst:91
-#, c-format
-msgid "Creating auto install floppy (drivers disk)"
-msgstr ""
-"S'està creant el disquet d'instal·lació automàtica (disquet de controladors)"
-
-#: standalone/drakautoinst:156
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Benvingut.\n"
-"\n"
-"Els paràmetres de la instal·lació automàtica estan disponibles en les "
-"seccions de l'esquerra"
-
-#: standalone/drakautoinst:251
-#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"El disquet s'ha creat correctament.\n"
-"Ara podeu repetir la vostra instal·lació."
-
-#
-#: standalone/drakautoinst:287
-#, c-format
-msgid "Auto Install"
-msgstr "Instal·la automàticament"
-
-#
-#: standalone/drakautoinst:356
-#, c-format
-msgid "Add an item"
-msgstr "Afegeix un element"
-
-#
-#: standalone/drakautoinst:363
-#, c-format
-msgid "Remove the last item"
-msgstr "Esborra l'últim element"
-
-#: standalone/drakbackup:157
-#, c-format
-msgid ""
-"Expect is an extension to the TCL scripting language that allows interactive "
-"sessions without user intervention."
-msgstr ""
-
-#: standalone/drakbackup:158
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr ""
-"Desa la contrasenya per aquest sistema a la configuració de drakbackup."
-
-#: standalone/drakbackup:159
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
-
-#: standalone/drakbackup:160
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-
-#: standalone/drakbackup:161
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-
-#: standalone/drakbackup:162
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Les copies de seguretat diferencials només guarden els fitxers que han "
-"canviat o que són nous a partir de la còpia de seguretat original."
-
-#: standalone/drakbackup:163
-#, c-format
-msgid ""
-"Star should be selected if you want to backup EA or ACLs, otherwise choose "
-"tar"
-msgstr ""
-
-#: standalone/drakbackup:164
-#, c-format
-msgid ""
-"This should be a local user or email address that you want the backup "
-"results sent to. You will need to define a functioning mail server. Multiple "
-"users can be in a comma seperated list"
-msgstr ""
-
-#: standalone/drakbackup:165
-#, c-format
-msgid ""
-"This should be the return address that you want the backup results sent "
-"from. Default is drakbackup."
-msgstr ""
-
-#: standalone/drakbackup:166
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-
-#: standalone/drakbackup:167
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-
-#: standalone/drakbackup:168
-#, c-format
-msgid ""
-"Selecting this option allows you to view the raw output from the restore "
-"process, after a file restore."
-msgstr ""
-
-#: standalone/drakbackup:169
-#, c-format
-msgid ""
-"Some protocols, like rsync, may be configured at the server end. Rather "
-"than using a directory path, you would use the 'module' name for the service "
-"path."
-msgstr ""
-
-#: standalone/drakbackup:170
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-
-#: standalone/drakbackup:344
-#, c-format
-msgid "No media selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:348
-#, c-format
-msgid "No interval selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:393
-#, c-format
-msgid "Interval cron not available as non-root"
-msgstr "Internal cron no està disponible per a usuaris que no siguin root"
-
-#: standalone/drakbackup:477 standalone/logdrake:439
-#, c-format
-msgid "\"%s\" neither is a valid email nor is an existing local user!"
-msgstr ""
-"\"%s\" no és ni una adreça de correu vàlida ni un usuari local existent!"
-
-#: standalone/drakbackup:481 standalone/logdrake:444
-#, 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\" és un usuari local, però no heu escollit un SMTP local, per tant heu "
-"d'usar una adreça de correu electrònic completa!"
-
-#: standalone/drakbackup:491
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr ""
-
-#: standalone/drakbackup:493
-#, c-format
-msgid "Old user list:\n"
-msgstr "Llista d'usuaris antics:\n"
-
-#: standalone/drakbackup:495
-#, c-format
-msgid "New user list:\n"
-msgstr "Llista d'usuaris nous:\n"
-
-#: standalone/drakbackup:524
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
-msgstr ""
-"\n"
-" Informe del DrakBackup \n"
-
-#: standalone/drakbackup:525
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-msgstr ""
-"\n"
-" Informe del Dimoni DrakBackup\n"
-
-#: standalone/drakbackup:531
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" Detalls de l'Informe del DrakBackup\n"
-"\n"
-"\n"
-
-#: standalone/drakbackup:556 standalone/drakbackup:627
-#: standalone/drakbackup:683
-#, c-format
-msgid "Total progress"
-msgstr "Progrés total"
-
-#: standalone/drakbackup:609
-#, c-format
-msgid ""
-"%s exists, delete?\n"
-"\n"
-"If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-"%s existeix, voleu suprimir-lo?\n"
-"\n"
-"Si ja heu seguit aquest procés, probablement us calgui\n"
-"purgar l'entrada del paràmetre 'authorized_keys' en el servidor."
-
-#: standalone/drakbackup:618
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "La generació de les claus pot trigar una estona."
-
-#: standalone/drakbackup:625
-#, c-format
-msgid "Cannot spawn %s."
-msgstr "No s'ha pogut engendrar %s."
-
-#: standalone/drakbackup:642
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "No es demana cap contrasenya a %s en el port %s"
-
-#: standalone/drakbackup:643
-#, c-format
-msgid "Bad password on %s"
-msgstr "Contrasenya incorrecta a %s"
-
-#: standalone/drakbackup:644
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "S'ha denegat el permís per transferir %s a %s"
-
-#: standalone/drakbackup:645
-#, c-format
-msgid "Can not find %s on %s"
-msgstr "No s'ha trobat %s a %s"
-
-#: standalone/drakbackup:649
-#, c-format
-msgid "%s not responding"
-msgstr "%s no respon"
-
-#: standalone/drakbackup:653
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-"La transferència s'ha completat amb èxit\n"
-"Comproveu que podeu entrar al servidor amb:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"sense que se us demani una contrasenya."
-
-#: standalone/drakbackup:703
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "No s'ha trobat cap unitat de CDR/DVDR!"
-
-#: standalone/drakbackup:707
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Sembla que el suport no és enregistrable!"
-
-#: standalone/drakbackup:712
-#, c-format
-msgid "Not erasable media!"
-msgstr "Aquest suport no es pot esborrar!"
-
-#: standalone/drakbackup:754
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Esborrar el suport pot trigar una estona."
-
-#: standalone/drakbackup:812
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Hi ha hagut un problema de permisos en accedir al CD."
-
-#: standalone/drakbackup:840
-#, c-format
-msgid "No tape in %s!"
-msgstr "No s'ha trobat cap cinta a %s"
-
-#: standalone/drakbackup:953
-#, c-format
-msgid ""
-"Backup destination quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-
-#: standalone/drakbackup:973 standalone/drakbackup:1005
-#, c-format
-msgid "Backup system files..."
-msgstr "Fes una còpia de seguretat dels fitxers del sistema..."
-
-#
-#: standalone/drakbackup:1006 standalone/drakbackup:1045
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Còpies de seguretat del disc dur..."
-
-#
-#: standalone/drakbackup:1044
-#, c-format
-msgid "Backup User files..."
-msgstr "Fes una còpia de seguretat dels fitxers d'usuari..."
-
-#
-#: standalone/drakbackup:1078
-#, c-format
-msgid "Backup Other files..."
-msgstr "Fes una còpia de seguretat d'altres fitxers..."
-
-#: standalone/drakbackup:1079
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Progrés de la còpia de seguretat del disc dur..."
-
-#
-#: standalone/drakbackup:1084
-#, c-format
-msgid "No changes to backup!"
-msgstr "No s'ha fet cap canvi a la còpia de seguretat"
-
-#: standalone/drakbackup:1100 standalone/drakbackup:1122
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-"\n"
-"Activitats del Drakbackup a través de %s:\n"
-"\n"
-
-#: standalone/drakbackup:1109
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-" Hi ha hagut un problema en la connexió FTP: No ha estat possible enviar els "
-"fitxers de la còpia de seguretat per FTP.\n"
-
-#: standalone/drakbackup:1110
-#, c-format
-msgid ""
-"Error during sending file via FTP. Please correct your FTP configuration."
-msgstr ""
-"S'ha produït un error en enviar el fitxer a través d'FTP. Si us plau, "
-"corregiu la configuració de l'FTP."
-
-#: standalone/drakbackup:1112
-#, c-format
-msgid "file list sent by FTP: %s\n"
-msgstr "llista de fitxers enviada per FTP: %s\n"
-
-#: standalone/drakbackup:1127
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-"\n"
-"Activitats del Drakbackup a través del CD:\n"
-"\n"
-
-#: standalone/drakbackup:1132
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-"\n"
-"Activitats del Drakbackup a través de cinta:\n"
-"\n"
-
-#: standalone/drakbackup:1141
-#, c-format
-msgid "Error sending mail. Your report mail was not sent."
-msgstr ""
-"S'ha produït un error en enviar el correu. El vostre informe no ha estat "
-"enviat."
-
-#
-#: standalone/drakbackup:1142
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr " S'ha produït un error en enviar el correu electrònic. \n"
-
-#: standalone/drakbackup:1172
-#, c-format
-msgid "Can not create catalog!"
-msgstr "No s'ha pogut crear el catàleg!"
-
-#: standalone/drakbackup:1332
-#, fuzzy, c-format
-msgid "Problem installing %s"
-msgstr "Hi ha hagut problemes en instal·lar el paquet %s"
-
-#: standalone/drakbackup:1420
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Fes una còpia de seguretat dels fitxers del sistema (directori /etc)."
-
-#: standalone/drakbackup:1421 standalone/drakbackup:1484
-#: standalone/drakbackup:1550
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr ""
-"Utilitza les còpies de seguretat incrementals/diferencials (no reemplacis "
-"les còpies antigues)"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Utilitza les còpies de seguretat incrementals"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Utilitza còpia de seguretat diferencials"
-
-#: standalone/drakbackup:1425
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "No incloguis fitxers crítics (passwd, group, fstab)"
-
-#
-#: standalone/drakbackup:1456
-#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr ""
-"Si us plau, escolliu tots els usuaris que voleu incloure en la còpia de "
-"seguretat."
-
-#: standalone/drakbackup:1483
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "No incloguis la memòria cau del navegador"
-
-#: standalone/drakbackup:1537
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Seleccioneu els fitxers o directoris i feu clic a 'D'acord'"
-
-#
-#: standalone/drakbackup:1538 standalone/drakfont:650
-#, c-format
-msgid "Remove Selected"
-msgstr "Elimina la selecció"
-
-#
-#: standalone/drakbackup:1601
-#, c-format
-msgid "Users"
-msgstr "Usuaris"
-
-#: standalone/drakbackup:1621
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Empra la connexió de xarxa per fer la còpia de seguretat"
-
-#: standalone/drakbackup:1623
-#, c-format
-msgid "Net Method:"
-msgstr "Mètode de xarxa:"
-
-#: standalone/drakbackup:1627
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Usa Expect en l'SSH"
-
-#: standalone/drakbackup:1628
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "Crea/Transfereix la còpia de seguretat de les claus per a SSH"
-
-#: standalone/drakbackup:1630
-#, c-format
-msgid "Transfer Now"
-msgstr "Transfereix-ho ara"
-
-#: standalone/drakbackup:1632
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Ja hi ha les claus d'un altre programa (diferent del Drakbackup)"
-
-#: standalone/drakbackup:1635
-#, c-format
-msgid "Host name or IP."
-msgstr "Nom de l'ordinador o IP"
-
-#: standalone/drakbackup:1640
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
-"Directori (o mòdul) d'aquest ordinador on voleu desar la còpia de seguretat."
-
-#
-#: standalone/drakbackup:1652
-#, c-format
-msgid "Remember this password"
-msgstr "Recorda aquesta contrasenya"
-
-#: standalone/drakbackup:1664
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Cal introduir el nom de l'ordinador, el nom d'usuari i la contrasenya!"
-
-#: standalone/drakbackup:1755
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Utilitzar CD/DVDROM per fer la còpia de seguretat"
-
-#
-#: standalone/drakbackup:1758
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Escolliu el vostre dispositiu CD/DVD"
-
-#
-#: standalone/drakbackup:1763
-#, c-format
-msgid "Choose your CD/DVD media size"
-msgstr "Escolliu la mida del CD/DVD"
-
-#: standalone/drakbackup:1770
-#, c-format
-msgid "Multisession CD"
-msgstr "CD de multisessió"
-
-#: standalone/drakbackup:1772
-#, c-format
-msgid "CDRW media"
-msgstr "Suports CD-RW"
-
-#: standalone/drakbackup:1778
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Esborra el suport RW (1a sessió)"
-
-#: standalone/drakbackup:1779
-#, c-format
-msgid " Erase Now "
-msgstr " Esborra'l ara"
-
-#: standalone/drakbackup:1785
-#, c-format
-msgid "DVD+RW media"
-msgstr "disc DVD+RW"
-
-#: standalone/drakbackup:1787
-#, c-format
-msgid "DVD-R media"
-msgstr "disc DVD-R"
-
-#: standalone/drakbackup:1789
-#, c-format
-msgid "DVDRAM device"
-msgstr "Dispositiu DVDRAM"
-
-#: standalone/drakbackup:1820
-#, c-format
-msgid "No CD device defined!"
-msgstr "No s'ha definit cap dispositiu de CD!"
-
-#
-#: standalone/drakbackup:1862
-#, c-format
-msgid "Use tape to backup"
-msgstr "Utilitza una cinta per fer la còpia de seguretat"
-
-#: standalone/drakbackup:1865
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Nom del dispositiu a utilitzar per fer la còpia"
-
-#: standalone/drakbackup:1871
-#, c-format
-msgid "Backup directly to tape"
-msgstr ""
-
-#: standalone/drakbackup:1877
-#, c-format
-msgid "Use tape hardware compression (EXPERIMENTAL)"
-msgstr ""
-
-#
-#: standalone/drakbackup:1883
-#, c-format
-msgid "Do not rewind tape after backup"
-msgstr "No rebobinis la cinta després de la còpia de seguretat"
-
-#
-#: standalone/drakbackup:1889
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Esborra la cinta abans de fer la còpia de seguretat"
-
-#
-#: standalone/drakbackup:1895
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Expulsa la cinta després de fer la còpia de seguretat"
-
-#
-#: standalone/drakbackup:1976
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Introduïu el directori on desar::"
-
-#
-#: standalone/drakbackup:1980
-#, c-format
-msgid "Directory to save to"
-msgstr "Directori al qual desar"
-
-#: standalone/drakbackup:1985
-#, c-format
-msgid ""
-"Maximum disk space\n"
-" allocated for backups (MB)"
-msgstr ""
-
-#: standalone/drakbackup:1989
-#, c-format
-msgid ""
-"Delete incremental or differential\n"
-" backups older than N days\n"
-" (0 is keep all backups) to save space"
-msgstr ""
-
-#: standalone/drakbackup:2056
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CDROM / DVDROM"
-
-#: standalone/drakbackup:2061
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Disc Dur / NFS"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2077
-#: standalone/drakbackup:2082
-#, c-format
-msgid "hourly"
-msgstr "cada hora"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2078
-#: standalone/drakbackup:2083
-#, c-format
-msgid "daily"
-msgstr "diària"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2079
-#: standalone/drakbackup:2084
-#, c-format
-msgid "weekly"
-msgstr "setmanal"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2080
-#: standalone/drakbackup:2085
-#, c-format
-msgid "monthly"
-msgstr "mensual"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2081
-#: standalone/drakbackup:2086
-#, c-format
-msgid "custom"
-msgstr "a mida"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "January"
-msgstr "Gener"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "February"
-msgstr "Febrer"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "March"
-msgstr "Març"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "April"
-msgstr "Abril"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "May"
-msgstr "Maig"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "June"
-msgstr "Juny"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "July"
-msgstr "Juliol"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "August"
-msgstr "Agost"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "September"
-msgstr "Setembre"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "October"
-msgstr "Octubre"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "November"
-msgstr "Novembre"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "December"
-msgstr "Desembre"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Sunday"
-msgstr "Diumenge"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Monday"
-msgstr "Dilluns"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Tuesday"
-msgstr "Dimarts"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Wednesday"
-msgstr "Dimecres"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Thursday"
-msgstr "Dijous"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Friday"
-msgstr "Divendres"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Saturday"
-msgstr "Dissabte"
-
-#: standalone/drakbackup:2126
-#, fuzzy, c-format
-msgid "Delete cron entry"
-msgstr "Suprimeix el client"
-
-#: standalone/drakbackup:2127
-#, fuzzy, c-format
-msgid "Add cron entry"
-msgstr "Afegeix impressora"
-
-#
-#: standalone/drakbackup:2185
-#, c-format
-msgid "Use daemon"
-msgstr "Utilitza dimoni"
-
-#
-#: standalone/drakbackup:2189
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Si us plau, escolliu l'interval de temps entre cada còpia de seguretat"
-
-#: standalone/drakbackup:2197
-#, c-format
-msgid "Minute"
-msgstr "Minut"
-
-#: standalone/drakbackup:2201
-#, c-format
-msgid "Hour"
-msgstr "Hora"
-
-#: standalone/drakbackup:2205
-#, c-format
-msgid "Day"
-msgstr "Dia"
-
-#: standalone/drakbackup:2209
-#, c-format
-msgid "Month"
-msgstr "Mes"
-
-#: standalone/drakbackup:2213
-#, fuzzy, c-format
-msgid "Weekday (start)"
-msgstr "Dia de la setmana"
-
-#: standalone/drakbackup:2217
-#, fuzzy, c-format
-msgid "Weekday (end)"
-msgstr "Dia de la setmana"
-
-#: standalone/drakbackup:2221
-#, fuzzy, c-format
-msgid "Profile"
-msgstr "Perfils"
-
-#: standalone/drakbackup:2227
-#, fuzzy, c-format
-msgid "Current crontab:"
-msgstr "Usuari actual"
-
-#
-#: standalone/drakbackup:2235
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "Si us plau, trieu el suport per a la còpia."
-
-#: standalone/drakbackup:2239
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-"Si us plau assegureu-vos que el dimoni cron està inclòs en els serveis."
-
-#: standalone/drakbackup:2240
-#, c-format
-msgid ""
-"If your machine is not on all the time, you might want to install anacron."
-msgstr ""
-
-#
-#: standalone/drakbackup:2316
-#, fuzzy, c-format
-msgid "Please choose the archive program"
-msgstr "Si us plau, seleccioneu la data a restaurar:"
-
-#
-#: standalone/drakbackup:2321
-#, c-format
-msgid "Please choose the compression type"
-msgstr "Si us plau, seleccioneu el tipus de compresió"
-
-#: standalone/drakbackup:2325
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Usa fitxers .backupignore"
-
-#: standalone/drakbackup:2327
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Envia un informe per correu electrònic després de cada còpia a:"
-
-#: standalone/drakbackup:2333
-#, c-format
-msgid "Return address for sent mail:"
-msgstr ""
-
-#: standalone/drakbackup:2339
-#, c-format
-msgid "SMTP server for mail:"
-msgstr "Servidor SMTP pel correu:"
-
-#: standalone/drakbackup:2343
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
-"Suprimeix els arxius tar del disc dur després de fer una còpia de seguretat "
-"en un altre suport."
-
-#: standalone/drakbackup:2344
-#, fuzzy, c-format
-msgid "View restore log after file restore."
-msgstr "'D'acord' per restaurar els altres fitxers."
-
-#
-#: standalone/drakbackup:2389
-#, c-format
-msgid "What"
-msgstr "Què"
-
-#
-#: standalone/drakbackup:2394
-#, c-format
-msgid "Where"
-msgstr "On"
-
-#
-#: standalone/drakbackup:2399
-#, c-format
-msgid "When"
-msgstr "Quan"
-
-#
-#: standalone/drakbackup:2404
-#, c-format
-msgid "More Options"
-msgstr "Més opcions"
-
-#
-#: standalone/drakbackup:2417
-#, c-format
-msgid "Backup destination not configured..."
-msgstr "El destí de la còpia de seguretat no ha estat configurat..."
-
-#
-#: standalone/drakbackup:2437 standalone/drakbackup:4367
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Configuració del Drakbackup"
-
-#
-#: standalone/drakbackup:2453
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Si us plau, escolliu on voleu fer la còpia de seguretat"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Hard Drive used to prepare backups for all media"
-msgstr ""
-
-#
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Across Network"
-msgstr "a la xarxa"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On CD-R"
-msgstr "en CDROM"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On Tape Device"
-msgstr "en un dispositiu de cinta"
-
-#: standalone/drakbackup:2502
-#, c-format
-msgid "Backup Users"
-msgstr "Còpia de seguretat dels usuaris"
-
-#
-#: standalone/drakbackup:2503
-#, c-format
-msgid " (Default is all users)"
-msgstr " (El valor per defecte és tots els usuaris)"
-
-#
-#: standalone/drakbackup:2516
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Si us plau, escolliu de què voleu fer la còpia de seguretat"
-
-#
-#: standalone/drakbackup:2517
-#, c-format
-msgid "Backup System"
-msgstr "Còpia de seguretat del sistema"
-
-#: standalone/drakbackup:2519
-#, c-format
-msgid "Select user manually"
-msgstr "Seleccioneu els usuaris manualment"
-
-#: standalone/drakbackup:2548
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Seleccioneu les dades de les quals voleu fer la còpia..."
-
-#: standalone/drakbackup:2620
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Fonts de la còpia: \n"
-
-#: standalone/drakbackup:2621
-#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Fitxers de sistema:\n"
-
-#: standalone/drakbackup:2623
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Fitxers d'usuari:\n"
-
-#: standalone/drakbackup:2625
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Altres fitxers:\n"
-
-#: standalone/drakbackup:2627
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-"\n"
-"- Desa-ho en el disc dur en el camí: %s\n"
-
-#: standalone/drakbackup:2628
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tLimita l'ús de disc a %s MB\n"
-
-#: standalone/drakbackup:2629
-#, c-format
-msgid "\tDelete backups older than %s day(s)\n"
-msgstr ""
-
-#: standalone/drakbackup:2632
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
-"\n"
-"- Suprimeix el arxius tar del disc dur en acabar.\n"
-
-#: standalone/drakbackup:2637
-#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr ""
-"\n"
-"- Crema a un CD"
-
-#: standalone/drakbackup:2638
-#, c-format
-msgid "RW"
-msgstr "RW"
-
-#: standalone/drakbackup:2639
-#, c-format
-msgid " on device: %s"
-msgstr " en el dispositiu: %s"
-
-#: standalone/drakbackup:2640
-#, c-format
-msgid " (multi-session)"
-msgstr " (multisessió)"
-
-#: standalone/drakbackup:2641
-#, c-format
-msgid ""
-"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-"\n"
-"- Desa-ho a una cinta en el dispositiu: %s"
-
-#: standalone/drakbackup:2642
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tEsborra=%s"
-
-#: standalone/drakbackup:2644
-#, c-format
-msgid "\tBackup directly to Tape\n"
-msgstr ""
-
-#: standalone/drakbackup:2646
-#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
-"\n"
-"- Desa-ho a través de %s en l'ordinador %s\n"
-
-#: standalone/drakbackup:2647
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t nom d'usuari: %s\n"
-"\t\t en el camí: %s \n"
-
-#
-#: standalone/drakbackup:2648
-#, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Opcions:\n"
-
-#: standalone/drakbackup:2649
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tNo incloguis els fitxers de sistema\n"
-
-#: standalone/drakbackup:2651
-#, fuzzy, c-format
-msgid "\tBackups use %s and bzip2\n"
-msgstr "\tLes còpies de seguretat utilitzen tar i bzip2\n"
-
-#: standalone/drakbackup:2652
-#, fuzzy, c-format
-msgid "\tBackups use %s and gzip\n"
-msgstr "\tLes còpies de seguretat utilitzen tar i gzip\n"
-
-#: standalone/drakbackup:2653
-#, fuzzy, c-format
-msgid "\tBackups use %s only\n"
-msgstr "\tLes còpies de seguretat utilitzen només tar\n"
-
-#
-#: standalone/drakbackup:2655
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tUsa els fitxers .backupignore\n"
-
-#: standalone/drakbackup:2656
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tEnvia correu a %s\n"
-
-#: standalone/drakbackup:2657
-#, c-format
-msgid "\tSend mail from %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2658
-#, c-format
-msgid "\tUsing SMTP server %s\n"
-msgstr "\tS'està usant el servidor SMTP %s\n"
-
-#: standalone/drakbackup:2660
-#, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
-msgstr ""
-"\n"
-"- Dimoni, %s via:\n"
-
-#: standalone/drakbackup:2661
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-Disc dur.\n"
-
-#: standalone/drakbackup:2662
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-R.\n"
-
-#: standalone/drakbackup:2663
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Cinta \n"
-
-#: standalone/drakbackup:2664
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Xarxa per FTP.\n"
-
-#: standalone/drakbackup:2665
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Xarxa per SSH.\n"
-
-#: standalone/drakbackup:2666
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-Xarxa per rsync.\n"
-
-#: standalone/drakbackup:2668
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Cap configuració, si us plau feu clic a 'Auxiliar' o a 'Avançat'.\n"
-
-#: standalone/drakbackup:2673
-#, c-format
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Llista de dades per restaurar:\n"
-"\n"
-
-#: standalone/drakbackup:2675
-#, c-format
-msgid "- Restore System Files.\n"
-msgstr "- Restaura fitxers de sistema.\n"
-
-#: standalone/drakbackup:2677 standalone/drakbackup:2687
-#, c-format
-msgid " - from date: %s %s\n"
-msgstr " - de la data: %s %s\n"
-
-#: standalone/drakbackup:2680
-#, c-format
-msgid "- Restore User Files: \n"
-msgstr "- Restaura fitxers d'usuari: \n"
-
-#: standalone/drakbackup:2685
-#, c-format
-msgid "- Restore Other Files: \n"
-msgstr "- Restaura d'altres fitxers: \n"
-
-#: standalone/drakbackup:2864
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Llista de dades corrompudes:\n"
-"\n"
-
-#
-#: standalone/drakbackup:2866
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Si us plau, desseleccioneu-ho o esborreu-ho la pròxima vegada."
-
-#: standalone/drakbackup:2876
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Els fitxers de la còpia de seguretat estan corromputs"
-
-#: standalone/drakbackup:2897
-#, c-format
-msgid " All of your selected data have been "
-msgstr " Totes les dades seleccionades han estat "
-
-#: standalone/drakbackup:2898
-#, c-format
-msgid " Successfully Restored on %s "
-msgstr " restaurades amb èxit en %s "
-
-#: standalone/drakbackup:2999
-#, c-format
-msgid "/usr/bin/star not found, using tar..."
-msgstr ""
-
-#
-#: standalone/drakbackup:3035
-#, c-format
-msgid " Restore Configuration "
-msgstr " Configuració de restauració "
-
-#: standalone/drakbackup:3063
-#, c-format
-msgid "OK to restore the other files."
-msgstr "'D'acord' per restaurar els altres fitxers."
-
-#: standalone/drakbackup:3079
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Llista d'usuaris per restaurar (només és important la data més recent per "
-"usuari)"
-
-#
-#: standalone/drakbackup:3144
-#, c-format
-msgid "Please choose the date to restore:"
-msgstr "Si us plau, seleccioneu la data a restaurar:"
-
-#
-#: standalone/drakbackup:3181
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Restaura des del disc dur."
-
-#: standalone/drakbackup:3183
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Entreu el directori on es guarden les còpies de seguretat"
-
-#: standalone/drakbackup:3187
-#, c-format
-msgid "Directory with backups"
-msgstr "Directori amb còpies de seguretat"
-
-#
-#: standalone/drakbackup:3241
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Seleccioneu un altre suport des del qual restaurar"
-
-#
-#: standalone/drakbackup:3243
-#, c-format
-msgid "Other Media"
-msgstr "Altres suports"
-
-#
-#: standalone/drakbackup:3248
-#, c-format
-msgid "Restore system"
-msgstr "Restaura el sistema"
-
-#
-#: standalone/drakbackup:3249
-#, c-format
-msgid "Restore Users"
-msgstr "Restaura els usuaris"
-
-#: standalone/drakbackup:3250
-#, c-format
-msgid "Restore Other"
-msgstr "Restaura altres"
-
-#: standalone/drakbackup:3252
-#, c-format
-msgid "Select path to restore (instead of /)"
-msgstr "seleccioneu el camí al qual restaurar (en comptes de /)"
-
-#
-#: standalone/drakbackup:3256 standalone/drakbackup:3539
-#, c-format
-msgid "Path To Restore To"
-msgstr "Ruta a la qual restaurar"
-
-#: standalone/drakbackup:3259
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-"Fes una nova còpia de seguretat abans de restaurar (només per les còpies "
-"incrementals.)"
-
-#: standalone/drakbackup:3261
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Esborra els directoris d'usuari abans de restaurar."
-
-#: standalone/drakbackup:3345
-#, c-format
-msgid "Filename text substring to search for (empty string matches all):"
-msgstr ""
-
-#: standalone/drakbackup:3348
-#, c-format
-msgid "Search Backups"
-msgstr ""
-
-#
-#: standalone/drakbackup:3367
-#, c-format
-msgid "No matches found..."
-msgstr "No s'ha trobat cap coincidència..."
-
-#
-#: standalone/drakbackup:3371
-#, c-format
-msgid "Restore Selected"
-msgstr "Restaura els seleccionats"
-
-#: standalone/drakbackup:3507
-#, c-format
-msgid ""
-"Click date/time to see backup files.\n"
-"Ctrl-Click files to select multiple files."
-msgstr ""
-
-#: standalone/drakbackup:3513
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
-"Restaura l'entrada\n"
-"del catàleg seleccionada"
-
-#
-#: standalone/drakbackup:3522
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr ""
-"Restaura els fitxers\n"
-"seleccionats"
-
-#: standalone/drakbackup:3599
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "No s'han trobat els fitxers de còpia de seguretat a %s"
-
-#
-#: standalone/drakbackup:3612
-#, c-format
-msgid "Restore From CD"
-msgstr "Restaura des de CD"
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-"Inseriu el CD amb l'etiqueta de volum %s\n"
-" a la unitat de CD sota el punt de muntatge /mnt/cdrom"
-
-#: standalone/drakbackup:3614
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "L'etiqueta del CD no és correcta. L'etiqueta d'aquest disc és %s."
-
-#
-#: standalone/drakbackup:3624
-#, c-format
-msgid "Restore From Tape"
-msgstr "Restaura des de cinta"
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-"Inseriu la cinta amb l'etiqueta de volum %s\n"
-" al dispositiu de cinta %s"
-
-#: standalone/drakbackup:3626
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
-"L'etiqueta de la cinta no és correcta. L'etiqueta d'aquesta cinta és %s."
-
-#
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network"
-msgstr "Restaura a través de la xarxa"
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Restaura mitjançant el protocol de xarxa: %s"
-
-#: standalone/drakbackup:3638
-#, c-format
-msgid "Host Name"
-msgstr "Nom de l'ordinador"
-
-#: standalone/drakbackup:3639
-#, c-format
-msgid "Host Path or Module"
-msgstr "Camí de l'ordinador central o mòdul"
-
-#: standalone/drakbackup:3646
-#, c-format
-msgid "Password required"
-msgstr "La contrasenya és necessària"
-
-#: standalone/drakbackup:3652
-#, c-format
-msgid "Username required"
-msgstr "El nom d'usuari és necessari"
-
-#: standalone/drakbackup:3655
-#, c-format
-msgid "Hostname required"
-msgstr "El nom de l'ordinador és necessari"
-
-#: standalone/drakbackup:3660
-#, c-format
-msgid "Path or Module required"
-msgstr "El camí o el mòdul són necessaris"
-
-#: standalone/drakbackup:3672
-#, c-format
-msgid "Files Restored..."
-msgstr "S'han restaurat els fitxers..."
-
-#: standalone/drakbackup:3675
-#, c-format
-msgid "Restore Failed..."
-msgstr "La restauració ha fallat..."
-
-#: standalone/drakbackup:3703
-#, c-format
-msgid "%s not retrieved..."
-msgstr ""
-
-#
-#: standalone/drakbackup:3929 standalone/drakbackup:3998
-#, c-format
-msgid "Search for files to restore"
-msgstr "Busca fitxers a restaurar"
-
-#: standalone/drakbackup:3933
-#, c-format
-msgid "Restore all backups"
-msgstr "Restaura totes les còpies de seguretat"
-
-#
-#: standalone/drakbackup:3941
-#, c-format
-msgid "Custom Restore"
-msgstr "Restauració personalitzada"
-
-#
-#: standalone/drakbackup:3945 standalone/drakbackup:3994
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Restaura des de catàleg"
-
-#: standalone/drakbackup:3966
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "No s'han pogut trobar les dades per restaurar...\n"
-
-#: standalone/drakbackup:3967
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Comproveu que %s és la ruta correcte"
-
-#: standalone/drakbackup:3968
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " i el CD és a la unitat"
-
-#: standalone/drakbackup:3970
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr ""
-
-#: standalone/drakbackup:3986
-#, c-format
-msgid "CD in place - continue."
-msgstr "El CD és a lloc - continua."
-
-#: standalone/drakbackup:3991
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Navega per trobar un nou dipòsit de restauració"
-
-#
-#: standalone/drakbackup:3992
-#, c-format
-msgid "Directory To Restore From"
-msgstr "Directori del qual restaurar"
-
-#
-#: standalone/drakbackup:4028
-#, c-format
-msgid "Restore Progress"
-msgstr "Progrés de la restauració"
-
-#
-#: standalone/drakbackup:4136
-#, c-format
-msgid "Build Backup"
-msgstr "Construeix la còpia de seguretat"
-
-#
-#: standalone/drakbackup:4169 standalone/drakbackup:4466
-#, c-format
-msgid "Restore"
-msgstr "Restaura"
-
-#: standalone/drakbackup:4261
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Si us plau, seleccioneu les dades per restaurar..."
-
-#
-#: standalone/drakbackup:4301
-#, c-format
-msgid "Backup system files"
-msgstr "Còpia de seguretat dels fitxers de sistema"
-
-#
-#: standalone/drakbackup:4304
-#, c-format
-msgid "Backup user files"
-msgstr "Còpia de seguretat dels fitxers d'usuari"
-
-#
-#: standalone/drakbackup:4307
-#, c-format
-msgid "Backup other files"
-msgstr "Còpia de seguretat d'altres fitxers"
-
-#: standalone/drakbackup:4310 standalone/drakbackup:4344
-#, c-format
-msgid "Total Progress"
-msgstr "Progrés total"
-
-#
-#: standalone/drakbackup:4336
-#, c-format
-msgid "Sending files by FTP"
-msgstr "S'estan enviant els fitxers per FTP"
-
-#
-#: standalone/drakbackup:4339
-#, c-format
-msgid "Sending files..."
-msgstr "S'estan enviant els fitxers..."
-
-#
-#: standalone/drakbackup:4409
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Fes la còpia de seguretat des del fitxer de configuració"
-
-#
-#: standalone/drakbackup:4414
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Visualitza la configuració de la còpia de seguretat"
-
-#
-#: standalone/drakbackup:4440
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Auxiliar de configuració"
-
-#
-#: standalone/drakbackup:4445
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Configuració avançada"
-
-#
-#: standalone/drakbackup:4450
-#, c-format
-msgid "View Configuration"
-msgstr "Consulta la configuració"
-
-#: standalone/drakbackup:4454
-#, c-format
-msgid "View Last Log"
-msgstr ""
-
-#
-#: standalone/drakbackup:4459
-#, c-format
-msgid "Backup Now"
-msgstr "Fes la còpia de seguretat"
-
-#: standalone/drakbackup:4463
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"No s'ha trobat el fitxer de configuració \n"
-"si us plau, feu clic a 'Auxiliar' o a 'Avançat'."
-
-#: standalone/drakbackup:4501
-#, fuzzy, c-format
-msgid "Load profile"
-msgstr "Fitxer local"
-
-#: standalone/drakbackup:4510
-#, fuzzy, c-format
-msgid "Save profile as..."
-msgstr "Anomena i desa..."
-
-#: standalone/drakbackup:4532 standalone/drakbackup:4535
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: standalone/drakboot:49
-#, c-format
-msgid "No bootloader found, creating a new configuration"
-msgstr ""
-
-#: standalone/drakboot:84 standalone/harddrake2:190 standalone/harddrake2:191
-#: standalone/logdrake:69 standalone/printerdrake:150
-#: standalone/printerdrake:151 standalone/printerdrake:152
-#, c-format
-msgid "/_File"
-msgstr "/_Fitxer"
-
-#: standalone/drakboot:85 standalone/logdrake:75
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Fitxer/_Surt"
-
-#: standalone/drakboot:85 standalone/harddrake2:191 standalone/logdrake:75
-#: standalone/printerdrake:152
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: standalone/drakboot:125
-#, c-format
-msgid "Text only"
-msgstr ""
-
-#: standalone/drakboot:126
-#, c-format
-msgid "Verbose"
-msgstr "Amb missatges"
-
-#: standalone/drakboot:127
-#, c-format
-msgid "Silent"
-msgstr "Silenciós"
-
-#: standalone/drakboot:134
-#, c-format
-msgid ""
-"Your system bootloader is not in framebuffer mode. To activate graphical "
-"boot, select a graphic video mode from the bootloader configuration tool."
-msgstr ""
-"El carregador d'arrencada del vostre sistema no està en mode framebuffer. "
-"Per activar l'arrencada gràfica, escolliu un mode de vídeo gràfic a l'eina "
-"de configuració del carregador d'arrencada."
-
-#: standalone/drakboot:135
-#, c-format
-msgid "Do you want to configure it now?"
-msgstr "Voleu configurar-ho ara?"
-
-#: standalone/drakboot:144
-#, c-format
-msgid "Install themes"
-msgstr "Instal·la els temes"
-
-#
-#: standalone/drakboot:146
-#, c-format
-msgid "Graphical boot theme selection"
-msgstr "Selecció del tema gràfic d'arrencada"
-
-#: standalone/drakboot:149
-#, fuzzy, c-format
-msgid "Graphical boot mode:"
-msgstr "Usa l'arrencada gràfica"
-
-#: standalone/drakboot:151
-#, c-format
-msgid "Theme"
-msgstr "Tema"
-
-#: standalone/drakboot:154
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"Mostra el tema\n"
-"sota la consola"
-
-#: standalone/drakboot:159
-#, c-format
-msgid "Create new theme"
-msgstr "Crea un nou tema"
-
-#
-#: standalone/drakboot:191
-#, c-format
-msgid "Default user"
-msgstr "Usuari predeterminat"
-
-#: standalone/drakboot:192
-#, c-format
-msgid "Default desktop"
-msgstr "Escriptori predeterminat"
-
-#: standalone/drakboot:195
-#, c-format
-msgid "No, I do not want autologin"
-msgstr "No, no vull l'entrada automàtica"
-
-#: standalone/drakboot:196
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Sí, vull l'entrada automàtica amb aquest (usuari, escriptori)"
-
-#: standalone/drakboot:203
-#, c-format
-msgid "System mode"
-msgstr "Mode de sistema"
-
-#: standalone/drakboot:206
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Executa la interfície gràfica en iniciar el sistema"
-
-#: standalone/drakboot:272
-#, c-format
-msgid ""
-"Please choose a video mode, it will be applied to each of the boot entries "
-"selected below.\n"
-"Be sure your video card supports the mode you choose."
-msgstr ""
-
-#: standalone/drakbug:41
-#, c-format
-msgid "Mandriva Linux Bug Report Tool"
-msgstr ""
-"Eina per a la comunicació d'errors de programació (bugs) de Mandriva Linux"
-
-#: standalone/drakbug:46
-#, c-format
-msgid "Mandriva Linux Control Center"
-msgstr "Centre de Control Mandriva Linux"
-
-#: standalone/drakbug:48
-#, c-format
-msgid "Synchronization tool"
-msgstr "Eina de sincronització"
-
-#: standalone/drakbug:49 standalone/drakbug:152
-#, c-format
-msgid "Standalone Tools"
-msgstr "Eines autònomes"
-
-#: standalone/drakbug:50
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: standalone/drakbug:51
-#, c-format
-msgid "Mandriva Online"
-msgstr "Mandriva Online"
-
-#
-#: standalone/drakbug:52
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
-
-#: standalone/drakbug:53
-#, c-format
-msgid "Msec"
-msgstr "Msec"
-
-#: standalone/drakbug:54
-#, c-format
-msgid "Remote Control"
-msgstr "Control Remot"
-
-#: standalone/drakbug:55
-#, c-format
-msgid "Software Manager"
-msgstr "Gestor de programari"
-
-#: standalone/drakbug:56
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
-
-#: standalone/drakbug:57
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Eina de migració des de Windows"
-
-#: standalone/drakbug:58 standalone/draksambashare:1234
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: standalone/drakbug:59
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Auxiliars de configuració"
-
-#: standalone/drakbug:81
-#, c-format
-msgid "Select Mandriva Tool:"
-msgstr "Escolliu l'eina Mandriva:"
-
-#: standalone/drakbug:82
-#, c-format
-msgid ""
-"or Application Name\n"
-"(or Full Path):"
-msgstr ""
-"o el mom de l'aplicació\n"
-"(o la ruta completa):"
-
-#: standalone/drakbug:85
-#, c-format
-msgid "Find Package"
-msgstr "Cerca el paquet"
-
-#
-#: standalone/drakbug:87
-#, c-format
-msgid "Package: "
-msgstr "Paquet: "
-
-#: standalone/drakbug:88
-#, c-format
-msgid "Kernel:"
-msgstr "Nucli:"
-
-#: standalone/drakbug:101
-#, fuzzy, c-format
-msgid ""
-"To submit a bug report, click on the report button. \n"
-"This will open a web browser window on %s where you'll find a form to fill "
-"in. The information displayed above will be transferred to that server. \n"
-"Things useful to include in your report are the output of lspci, kernel "
-"version, and /proc/cpuinfo."
-msgstr ""
-"Per trametre un informe d'error de programació, feu clic al botó 'Informa'.\n"
-"S'obrirà una finestra del navegador web amb la pàgina %s\n"
-"on trobareu un formulari per omplir. La informació que es mostra més amunt "
-"s'enviarà al servidor."
-
-#
-#: standalone/drakbug:107
-#, c-format
-msgid "Report"
-msgstr "Informa"
-
-#
-#: standalone/drakbug:162
-#, c-format
-msgid "Not installed"
-msgstr "No instal·lat"
-
-#
-#: standalone/drakbug:174
-#, c-format
-msgid "Package not installed"
-msgstr "El paquet no està instal·lat"
-
-#: standalone/drakclock:29
-#, c-format
-msgid "DrakClock"
-msgstr "DrakClock"
-
-#: standalone/drakclock:39
-#, c-format
-msgid "not defined"
-msgstr "no definit"
-
-#: standalone/drakclock:41
-#, c-format
-msgid "Change Time Zone"
-msgstr "Canvia el fus horari"
-
-#: standalone/drakclock:45
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "Fus horari - DrakClock"
-
-#: standalone/drakclock:47
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "GMT - DrakClock"
-
-#
-#: standalone/drakclock:47 standalone/finish-install:57
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Està el rellotge del vostre ordinador establert en GTM?"
-
-#: standalone/drakclock:75
-#, c-format
-msgid "Network Time Protocol"
-msgstr "Network Time Protocol"
-
-#: standalone/drakclock:77
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-"El teu ordinador por sincronitzar el seu rellotge\n"
-" amb un servidor de temps remot usant NTP"
-
-#: standalone/drakclock:78
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Habilita el Network Time Protocol"
-
-#: standalone/drakclock:86
-#, c-format
-msgid "Server:"
-msgstr "Servidor:"
-
-#: standalone/drakclock:124
-#, c-format
-msgid "Could not synchronize with %s."
-msgstr "No s'ha pogut sincronitzar amb %s."
-
-#: standalone/drakclock:146 standalone/drakclock:156
-#, c-format
-msgid "Reset"
-msgstr "Reinicialitza"
-
-#: standalone/drakclock:224
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol\n"
-"\n"
-"Do you want to install ntp?"
-msgstr ""
-"Es necessari instal·lar el paquet ntp\n"
-" per habilitar el Network Time Protocol\n"
-"\n"
-"Vols instal·lar ntp?"
-
-#: standalone/drakconnect:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuració de xarxa (%d adaptadors)"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Gateway:"
-msgstr "Passarel·la:"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Interface:"
-msgstr "Intefície:"
-
-#: standalone/drakconnect:93 standalone/net_monitor:116
-#, c-format
-msgid "Wait please"
-msgstr "Espereu si us plau"
-
-#: standalone/drakconnect:109
-#, c-format
-msgid "Interface"
-msgstr "Interfície"
-
-#
-#: standalone/drakconnect:109 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "State"
-msgstr "Estat"
-
-#: standalone/drakconnect:126
-#, c-format
-msgid "Hostname: "
-msgstr "Nom de l'ordinador: "
-
-#: standalone/drakconnect:128
-#, c-format
-msgid "Configure hostname..."
-msgstr "Configura el nom de l'ordinador..."
-
-#: standalone/drakconnect:142 standalone/drakconnect:845
-#, c-format
-msgid "LAN configuration"
-msgstr "Configuració de la LAN"
-
-#: standalone/drakconnect:147
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Configura la xarxa d'àrea local..."
-
-#: standalone/drakconnect:155 standalone/drakconnect:237
-#: standalone/drakconnect:241
-#, c-format
-msgid "Apply"
-msgstr "Aplica"
-
-#: standalone/drakconnect:188
-#, c-format
-msgid "Manage connections"
-msgstr "Gestiona connexions"
-
-#
-#: standalone/drakconnect:215
-#, c-format
-msgid "Device selected"
-msgstr ""
-
-#
-#: standalone/drakconnect:296
-#, c-format
-msgid "IP configuration"
-msgstr "Configuració IP"
-
-#: standalone/drakconnect:335
-#, c-format
-msgid "DNS servers"
-msgstr "Servidors DNS"
-
-#: standalone/drakconnect:343
-#, c-format
-msgid "Search Domain"
-msgstr "Domini de cerca"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "static"
-msgstr "estàtica"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "DHCP"
-msgstr "DHCP"
-
-#: standalone/drakconnect:515
-#, c-format
-msgid "Flow control"
-msgstr "Control de fluxe"
-
-#: standalone/drakconnect:516
-#, c-format
-msgid "Line termination"
-msgstr "Terminació de línia"
-
-#: standalone/drakconnect:527
-#, c-format
-msgid "Modem timeout"
-msgstr "Temps màxim d'espera per al mòdem"
-
-#: standalone/drakconnect:531
-#, c-format
-msgid "Use lock file"
-msgstr "Usa fitxer de bloqueig"
-
-#: standalone/drakconnect:533
-#, c-format
-msgid "Wait for dialup tone before dialing"
-msgstr "Espera el to abans de marcar"
-
-#: standalone/drakconnect:536
-#, c-format
-msgid "Busy wait"
-msgstr "Espera activa"
-
-#: standalone/drakconnect:541
-#, c-format
-msgid "Modem sound"
-msgstr "So del mòdem"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Enable"
-msgstr "Habilita"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Disable"
-msgstr "Inhabilita"
-
-#: standalone/drakconnect:593 standalone/harddrake2:50
-#, c-format
-msgid "Media class"
-msgstr "Tipus de mitjà"
-
-#: standalone/drakconnect:594
-#, c-format
-msgid "Module name"
-msgstr "Nom del mòdul"
-
-#: standalone/drakconnect:595
-#, c-format
-msgid "Mac Address"
-msgstr "Adreça Mac"
-
-#: standalone/drakconnect:596 standalone/harddrake2:28
-#: standalone/harddrake2:120
-#, c-format
-msgid "Bus"
-msgstr "Bus"
-
-#: standalone/drakconnect:597 standalone/harddrake2:34
-#, c-format
-msgid "Location on the bus"
-msgstr "Ubicació en el bus"
-
-#: standalone/drakconnect:700 standalone/drakgw:311
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"No s'ha detectat cap adaptador de xarxa ethernet al sistema. Si us plau, "
-"executeu l'eina de configuració de maquinari."
-
-#: standalone/drakconnect:709
-#, c-format
-msgid "Remove a network interface"
-msgstr "Esborra una interfície de xarxa"
-
-#: standalone/drakconnect:713
-#, c-format
-msgid "Select the network interface to remove:"
-msgstr "Escolliu la interfície de xarxa a esborrar:"
-
-#: standalone/drakconnect:745
-#, c-format
-msgid ""
-"An error occurred while deleting the \"%s\" network interface:\n"
-"\n"
-"%s"
-msgstr ""
-"S'ha produït un problema en esborrar la interfície de xarxa \"%s\":\n"
-"\n"
-"%s"
-
-#: standalone/drakconnect:746
-#, c-format
-msgid ""
-"Congratulations, the \"%s\" network interface has been successfully deleted"
-msgstr "Felicitats, la interfície de xarxa \"%s\" s'ha esborrat amb èxit"
-
-#: standalone/drakconnect:761
-#, c-format
-msgid "No IP"
-msgstr "Sense IP"
-
-#: standalone/drakconnect:762
-#, c-format
-msgid "No Mask"
-msgstr "Sense màscara"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "up"
-msgstr "amunt"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "down"
-msgstr "avall"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Connected"
-msgstr "Connectat"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Not connected"
-msgstr "Sense connexió"
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Disconnect..."
-msgstr "Desconnecta..."
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Connect..."
-msgstr "Connecta..."
-
-#
-#: standalone/drakconnect:841
-#, c-format
-msgid "Deactivate now"
-msgstr "Desactiva'l ara"
-
-#
-#: standalone/drakconnect:841
-#, c-format
-msgid "Activate now"
-msgstr "Activa'l ara"
-
-#: standalone/drakconnect:849
-#, c-format
-msgid ""
-"You do not have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"No teniu cap interfície configurada.\n"
-"Configureu-la primer fent clic a 'Configura'"
-
-#: standalone/drakconnect:863
-#, c-format
-msgid "LAN Configuration"
-msgstr "Configuració de la LAN"
-
-#: standalone/drakconnect:875
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptador %s: %s"
-
-#: standalone/drakconnect:884
-#, c-format
-msgid "Boot Protocol"
-msgstr "Protocol d'arrencada"
-
-#: standalone/drakconnect:885
-#, c-format
-msgid "Started on boot"
-msgstr "Iniciat en l'arrencada"
-
-#: standalone/drakconnect:921
-#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Aquesta interfície encara no s'ha configurat.\n"
-"Executeu l'auxiliar \"Afegeix una interfície\" del Centre de Control de "
-"Mandriva Linux"
-
-#: standalone/drakconnect:975 standalone/net_applet:51
-#, c-format
-msgid ""
-"You do not have any configured Internet connection.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Aquesta interfície encara no s'ha configurat.\n"
-"Executeu l'auxiliar \"%s\" del Centre de Control de Mandriva Linux"
-
-#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: standalone/drakconnect:976 standalone/drakroam:34 standalone/net_applet:52
-#, c-format
-msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
-msgstr "Estableix una nova interfície de xarxa (LAN, XDSI, ADSL, ...)"
-
-#: standalone/drakconnect:981
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Configuració de la connexió a Internet"
-
-#: standalone/drakconnect:994
-#, c-format
-msgid "Third DNS server (optional)"
-msgstr "Tercer servidor DNS (opcional)"
-
-#: standalone/drakconnect:1016
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Configuració de la connexió a Internet"
-
-#: standalone/drakconnect:1017
-#, c-format
-msgid "Internet access"
-msgstr "Accés a Internet"
-
-#: standalone/drakconnect:1019 standalone/net_monitor:95
-#, c-format
-msgid "Connection type: "
-msgstr "Tipus de connexió: "
-
-#: standalone/drakconnect:1022
-#, c-format
-msgid "Status:"
-msgstr "Estat:"
-
-#: standalone/drakconnect:1027
-#, c-format
-msgid "Parameters"
-msgstr "Paràmetres"
-
-#: standalone/drakedm:40
-#, c-format
-msgid "GDM (GNOME Display Manager)"
-msgstr "GDM (GNOME Display Manager)"
-
-#: standalone/drakedm:41
-#, c-format
-msgid "KDM (KDE Display Manager)"
-msgstr "KDM (KDE Display Manager)"
-
-#: standalone/drakedm:42
-#, c-format
-msgid "XDM (X Display Manager)"
-msgstr "XDM (X Display Manager)"
-
-#: standalone/drakedm:53
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Elecció d'un gestor de pantalla"
-
-#: standalone/drakedm:54
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"El gestor de pantalla X11 us permet entrar al sistema de manera\n"
-"gràfica amb el sistema X Window executant-se, i permet l'execució\n"
-"simultània de diverses sessions X a la màquina local."
-
-#: standalone/drakedm:72
-#, c-format
-msgid "The change is done, do you want to restart the dm service?"
-msgstr "S'ha fet el canvi, voleu reiniciar el servei dm?"
-
-#: standalone/drakedm:73
-#, c-format
-msgid ""
-"You are going to close all running programs and lose your current session. "
-"Are you really sure that you want to restart the dm service?"
-msgstr ""
-
-#: standalone/drakfont:182
-#, c-format
-msgid "Search installed fonts"
-msgstr "Cerca les fonts instal·lades"
-
-#: standalone/drakfont:184
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "Desselecciona les fonts instal·lades"
-
-#: standalone/drakfont:207
-#, c-format
-msgid "parse all fonts"
-msgstr "analitza totes les fonts"
-
-#
-#: standalone/drakfont:209
-#, c-format
-msgid "No fonts found"
-msgstr "No s'han trobat fonts"
-
-#
-#: standalone/drakfont:217 standalone/drakfont:259 standalone/drakfont:326
-#: standalone/drakfont:359 standalone/drakfont:367 standalone/drakfont:393
-#: standalone/drakfont:411 standalone/drakfont:425
-#, c-format
-msgid "done"
-msgstr "fet"
-
-#: standalone/drakfont:222
-#, c-format
-msgid "Could not find any font in your mounted partitions"
-msgstr "No s'ha pogut trobar cap font en les particions muntades"
-
-#: standalone/drakfont:257
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Torna a seleccionar les fonts correctes"
-
-#: standalone/drakfont:260
-#, c-format
-msgid "Could not find any font.\n"
-msgstr "No s'ha trobat cap font.\n"
-
-#: standalone/drakfont:270
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Cerca les fonts en la llista de les instal·lades"
-
-#: standalone/drakfont:295
-#, c-format
-msgid "%s fonts conversion"
-msgstr "conversió de tipus de lletra %s"
-
-#
-#: standalone/drakfont:324
-#, c-format
-msgid "Fonts copy"
-msgstr "Còpia de fonts"
-
-#
-#: standalone/drakfont:327
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Instal·lació de les fonts True Type"
-
-#: standalone/drakfont:334
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "espereu si us plau durant ttmkfdir..."
-
-#: standalone/drakfont:335
-#, c-format
-msgid "True Type install done"
-msgstr "Instal·lació de True Type feta"
-
-#: standalone/drakfont:341 standalone/drakfont:356
-#, c-format
-msgid "type1inst building"
-msgstr "construcció de type1inst"
-
-#: standalone/drakfont:350
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "referenciat Ghostscript"
-
-#: standalone/drakfont:360
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Suprimeix els fitxers temporals"
-
-#
-#: standalone/drakfont:363
-#, c-format
-msgid "Restart XFS"
-msgstr "Reinicia l'XFS"
-
-#: standalone/drakfont:409 standalone/drakfont:419
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Suprimeix els fitxers de fonts"
-
-#
-#: standalone/drakfont:421
-#, c-format
-msgid "xfs restart"
-msgstr "reinicialització de l'xfs"
-
-#: standalone/drakfont:429
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
-"Abans d'instal·lar cap font, assegureu-vos que teniu el dret a usar-les i "
-"instal·lar-les en el vostre sistema.\n"
-"\n"
-"Podeu instal·lar les fonts de la manera habitual. En casos estranys, fonts "
-"amb errors poden penjar el vostre servidor X."
-
-#: standalone/drakfont:473 standalone/drakfont:482
-#, c-format
-msgid "DrakFont"
-msgstr "DrakFont"
-
-#
-#: standalone/drakfont:483
-#, c-format
-msgid "Font List"
-msgstr "Llista de fonts"
-
-#: standalone/drakfont:486
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "Obté fonts de Windows"
-
-#: standalone/drakfont:492
-#, c-format
-msgid "About"
-msgstr "Quant a"
-
-#
-#: standalone/drakfont:494 standalone/drakfont:718
-#, c-format
-msgid "Uninstall"
-msgstr "Desinstal·la"
-
-#
-#: standalone/drakfont:495
-#, c-format
-msgid "Import"
-msgstr "Importa"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakfont:513
-#, c-format
-msgid "Copyright (C) 2001-2006 by Mandriva"
-msgstr ""
-
-#: standalone/drakfont:515
-#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-"Aquest programa és programari lliure; el podeu redistribuir i/o modificar\n"
-"sota els termes de la Llicència General Pública de GNU tal com l'ha\n"
-"publicada la Free Software Foundation, ja sigui la versió 2 o (a elecció\n"
-"vostra) qualsevol versió posterior.\n"
-"\n"
-"\n"
-"Aquest programa és distribueix amb l'esperança que serà útil, però\n"
-"SENSE CAP GARANTIA; sense ni tant sols la garantia implícita de\n"
-"MERCANTIBILITAT o ADEQUACIÓ A UNA FINALITAT DETERMINADA.\n"
-"En trobareu més detalls a la Llicència General Pública de GNU.\n"
-"\n"
-"\n"
-"Heu d'haver rebut una còpia de la Llicència General Pública de GNU\n"
-"amb aquest programa; si no és així, escriviu a la Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, EUA."
-
-#: standalone/drakfont:531
-#, c-format
-msgid ""
-"Thanks:\n"
-"\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
-msgstr ""
-"Agraïments:\n"
-"\n"
-" - pfm2afm: \n"
-"\t per Ken Borgendale:\n"
-"\t Converteix un fitxer .pfm de Windows a .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t per James Macnicol: \n"
-"\t type1inst genera fitxers fonts.dir fonts.scale i Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t per Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Converteix fonts ttf a fonts afm i pfb\n"
-
-#
-#: standalone/drakfont:550
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Escolliu les aplicacions que suportaran les fonts:"
-
-#: standalone/drakfont:561
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#
-#: standalone/drakfont:562
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#
-#: standalone/drakfont:563
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
-
-#
-#: standalone/drakfont:564
-#, c-format
-msgid "Generic Printers"
-msgstr "Impressores genèriques"
-
-#: standalone/drakfont:578
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Seleccioneu el fitxer o directori de fonts i feu clic a 'Afegeix'"
-
-#
-#: standalone/drakfont:579
-#, c-format
-msgid "File Selection"
-msgstr "Selecció de fitxers"
-
-#: standalone/drakfont:583
-#, c-format
-msgid "Fonts"
-msgstr "Tipus de lletra"
-
-#
-#: standalone/drakfont:646
-#, c-format
-msgid "Import fonts"
-msgstr "Importa fonts"
-
-#
-#: standalone/drakfont:651
-#, c-format
-msgid "Install fonts"
-msgstr "Instal·la fonts"
-
-#: standalone/drakfont:681
-#, c-format
-msgid "Are you sure you want to uninstall the following fonts?"
-msgstr ""
-
-#: standalone/drakfont:726
-#, c-format
-msgid "Unselected All"
-msgstr "Desselecciona-ho tot"
-
-#
-#: standalone/drakfont:729
-#, c-format
-msgid "Selected All"
-msgstr "Selecciona-ho tot"
-
-#
-#: standalone/drakfont:743 standalone/drakfont:762
-#, c-format
-msgid "Importing fonts"
-msgstr "S'estan important les fonts"
-
-#
-#: standalone/drakfont:747 standalone/drakfont:767
-#, c-format
-msgid "Initial tests"
-msgstr "Comprovacions inicials"
-
-#
-#: standalone/drakfont:748
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Copiar les fonts en el vostre sistema"
-
-#: standalone/drakfont:749
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Instal·la i converteix les Fonts"
-
-#
-#: standalone/drakfont:750
-#, c-format
-msgid "Post Install"
-msgstr "Post-instal·lació"
-
-#
-#: standalone/drakfont:768
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Esborra fonts del sistema"
-
-#
-#: standalone/drakfont:769
-#, c-format
-msgid "Post Uninstall"
-msgstr "Post-desinstal·lació"
-
-#: standalone/drakgw:50 standalone/drakvpn:51
-#, c-format
-msgid "Sorry, we support only 2.4 and above kernels."
-msgstr "Només s'accepten nuclis de la sèrie 2.4 o superior."
-
-#: standalone/drakgw:75
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Connexió a Internet compartida"
-
-#: standalone/drakgw:79
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Ara es configurarà l'ordinador per tal que comparteixi la connexió a "
-"Internet.\n"
-"Amb aquesta característica, altres ordinadors de la vostra xarxa local\n"
-"podran utilitzar la connexió a Internet d'aquest ordinador.\n"
-"\n"
-"Assegureu-vos d'haver configurat l'accés a Internet i a la xarxa local amb "
-"el drakconnect abans de continuar.\n"
-"Nota: per configurar una xarxa d'àrea local (LAN), us cal un adaptador de "
-"xarxa dedicat."
-
-#: standalone/drakgw:95
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"La configuració de la connexió compartida a Internet ja s'ha dut a terme.\n"
-"Ara està habilitada.\n"
-"\n"
-"Què voleu fer?"
-
-#: standalone/drakgw:99
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"La configuració de la connexió compartida a Internet ja s'ha dut a terme.\n"
-"Ara està inhabilitada.\n"
-"\n"
-"Què voleu fer?"
-
-#: standalone/drakgw:105
-#, c-format
-msgid "Reconfigure"
-msgstr "Torna a configurar"
-
-#: standalone/drakgw:145
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Només teniu un adaptador de xarxa configurat al sistema:\n"
-"\n"
-"%s\n"
-"\n"
-"Ara es configurarà la vostra xarxa d'àrea local amb aquest adaptador."
-
-#: standalone/drakgw:156
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Si us plau, escolliu l'adaptador de xarxa que es connectarà a la vostra "
-"xarxa d'àrea local."
-
-#: standalone/drakgw:177
-#, c-format
-msgid "Local Area Network settings"
-msgstr "Paràmetres de la xarxa local"
-
-#: standalone/drakgw:180
-#, c-format
-msgid "Local IP address"
-msgstr "Adreça IP local"
-
-#
-#: standalone/drakgw:182
-#, c-format
-msgid "The internal domain name"
-msgstr "Nom intern de domini"
-
-#: standalone/drakgw:188
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"S'ha trobat un conflicte potencial d'adreça LAN en la configuració actual de "
-"%s!\n"
-
-#
-#: standalone/drakgw:204
-#, c-format
-msgid "Domain Name Server (DNS) configuration"
-msgstr "Configuració DNS"
-
-#: standalone/drakgw:208
-#, c-format
-msgid "Use this gateway as domain name server"
-msgstr "Usa aquesta passarel·la com a servidor de noms de domini"
-
-#
-#: standalone/drakgw:209
-#, c-format
-msgid "The DNS Server IP"
-msgstr "IP del Servidor DNS"
-
-#: standalone/drakgw:236
-#, c-format
-msgid ""
-"DHCP Server Configuration.\n"
-"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you do not know the meaning of an option, simply leave it as it is."
-msgstr ""
-"Configuració del servidor DHCP.\n"
-"\n"
-"Aquí podreu seleccionar diverses opcions per a la configuració del servidor "
-"DHCP.\n"
-"Si no sabeu el significat d'una opció, deixeu-la com està."
-
-#
-#: standalone/drakgw:243
-#, c-format
-msgid "Use automatic configuration (DHCP)"
-msgstr "Configuració automàtica (DHCP)"
-
-#: standalone/drakgw:244
-#, c-format
-msgid "The DHCP start range"
-msgstr "L'adreça inicial del rang del DHCP"
-
-#: standalone/drakgw:245
-#, c-format
-msgid "The DHCP end range"
-msgstr "L'adreça final del rang del DHCP"
-
-#: standalone/drakgw:246
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Lísing per defecte (en segons)"
-
-#: standalone/drakgw:247
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Lísing màxim (en segons)"
-
-#: standalone/drakgw:270
-#, c-format
-msgid "Proxy caching server (SQUID)"
-msgstr ""
-
-#: standalone/drakgw:274
-#, c-format
-msgid "Use this gateway as proxy caching server"
-msgstr ""
-
-#: standalone/drakgw:275
-#, c-format
-msgid "Admin mail"
-msgstr ""
-
-#
-#: standalone/drakgw:276
-#, fuzzy, c-format
-msgid "Visible hostname"
-msgstr "Nom de l'ordinador remot"
-
-#: standalone/drakgw:277
-#, c-format
-msgid "Proxy port"
-msgstr "Port del servidor intermediari"
-
-#: standalone/drakgw:278
-#, c-format
-msgid "Cache size (MB)"
-msgstr "Mida de la memòria cau (MB)"
-
-#
-#: standalone/drakgw:300
-#, c-format
-msgid "Broadcast printer information"
-msgstr ""
-
-#: standalone/drakgw:317
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Ara, la connexió compartida a Internet està habilitada."
-
-#: standalone/drakgw:323
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Ara, la compartició de la connexió a Internet està inhabilitada."
-
-#: standalone/drakgw:329
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP) and\n"
-" a Transparent Proxy Cache server (SQUID)."
-msgstr ""
-"Ja està tot configurat.\n"
-"Ara podeu compartir la connexió a Internet amb altres ordinadors de la "
-"vostra xarxa d'àrea local utilitzant la configuració automàtica de xarxa "
-"(DHCP) i\n"
-"un servidor intermediari transparent (SQUID)."
-
-#: standalone/drakgw:363
-#, c-format
-msgid "Disabling servers..."
-msgstr "S'estan inhabilitant els servidors..."
-
-#: standalone/drakgw:377
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "S'ha detectat la configuració del tallafoc!"
-
-#: standalone/drakgw:378
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-"Atenció! S'ha detectat una configuració existent del tallafoc. Potser us "
-"caldrà fer algun ajustament manual després de la instal·lació."
-
-#: standalone/drakgw:383
-#, c-format
-msgid "Configuring..."
-msgstr "S'està configurant..."
-
-#: standalone/drakgw:384
-#, c-format
-msgid "Configuring firewall..."
-msgstr "S'està configurant el tallafocs..."
-
-#: standalone/drakhelp:17
-#, c-format
-msgid ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"\n"
-"Usage: \n"
-msgstr ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"Aquest programa és programari lliure i pot ser redistribuït sota els termes "
-"de la GNU GPL.\n"
-"\n"
-"Sintaxi: \n"
-
-#: standalone/drakhelp:22
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - mostra aquesta ajuda \n"
-
-#: standalone/drakhelp:23
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr ""
-
-#: standalone/drakhelp:24
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "Mandriva Linux Help Center"
-msgstr "Centre d'ajuda de Mandriva Linux"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "No Help entry for %s\n"
-msgstr ""
-
-#: standalone/drakhosts:98
-#, c-format
-msgid "Please add an host to be able to modify it."
-msgstr ""
-
-#
-#: standalone/drakhosts:108
+#: timezone.pm:148 timezone.pm:149
#, fuzzy, c-format
-msgid "Please modify information"
-msgstr "Informació detallada"
-
-#
-#: standalone/drakhosts:109
-#, fuzzy, c-format
-msgid "Please delete information"
-msgstr "Informació detallada"
-
-#
-#: standalone/drakhosts:110
-#, fuzzy, c-format
-msgid "Please add information"
-msgstr "Informació detallada"
-
-#: standalone/drakhosts:115
-#, c-format
-msgid "IP address:"
-msgstr "Adreça IP:"
-
-#: standalone/drakhosts:116
-#, c-format
-msgid "Host name:"
-msgstr "Nom de la màquina:"
-
-#: standalone/drakhosts:117
-#, c-format
-msgid "Host Aliases:"
-msgstr ""
-
-#: standalone/drakhosts:123
-#, c-format
-msgid "Please enter a valid IP address."
-msgstr "Si us plau introduïu una adreça IP vàlida."
-
-#: standalone/drakhosts:129
-#, c-format
-msgid "Same IP is already in %s file."
-msgstr ""
-
-#: standalone/drakhosts:197
-#, c-format
-msgid "Host Aliases"
-msgstr ""
-
-#: standalone/drakhosts:237
-#, c-format
-msgid "DrakHOSTS manage hosts definitions"
-msgstr ""
-
-#: standalone/drakhosts:246
-#, c-format
-msgid "Failed to add host."
-msgstr ""
-
-#: standalone/drakhosts:253
-#, c-format
-msgid "Failed to Modify host."
-msgstr ""
-
-#: standalone/drakhosts:260
-#, c-format
-msgid "Failed to remove host."
-msgstr ""
-
-#
-#: standalone/drakids:26
-#, c-format
-msgid "Allowed addresses"
-msgstr "Adreces permeses"
-
-#: standalone/drakids:57
-#, c-format
-msgid "Log"
-msgstr "Bitàcola"
-
-#: standalone/drakids:61
-#, fuzzy, c-format
-msgid "Clear logs"
-msgstr "Buida-ho tot"
-
-#: standalone/drakids:62 standalone/drakids:67 standalone/net_applet:470
-#, c-format
-msgid "Blacklist"
-msgstr "Llista negra"
-
-#: standalone/drakids:63 standalone/drakids:80 standalone/net_applet:475
-#, c-format
-msgid "Whitelist"
-msgstr "Llista blanca"
-
-#: standalone/drakids:71
-#, c-format
-msgid "Remove from blacklist"
-msgstr "Elimina de la llista negra"
-
-#: standalone/drakids:72
-#, c-format
-msgid "Move to whitelist"
-msgstr "Mou a la llista blanca"
-
-#: standalone/drakids:84
-#, c-format
-msgid "Remove from whitelist"
-msgstr "Elimina de la llista blanca"
-
-#: standalone/drakids:136 standalone/drakids:145 standalone/drakids:170
-#: standalone/drakids:179 standalone/drakids:189 standalone/drakids:265
-#: standalone/drakroam:182 standalone/net_applet:202 standalone/net_applet:385
-#, fuzzy, c-format
-msgid "Unable to contact daemon"
-msgstr "No es pot contactar amb la rèplica: %s"
-
-#
-#: standalone/drakids:202
-#, c-format
-msgid "Date"
-msgstr "Data"
-
-#: standalone/drakids:203
-#, c-format
-msgid "Attacker"
-msgstr "Atacant"
-
-#: standalone/drakids:204
-#, c-format
-msgid "Attack type"
-msgstr "Tipus d'atac"
-
-#
-#: standalone/drakids:205
-#, c-format
-msgid "Service"
-msgstr "Servei"
-
-#: standalone/drakids:206 standalone/net_applet:72
-#, c-format
-msgid "Network interface"
-msgstr "Interfície de la xarxa"
-
-#: standalone/draknfs:41
-#, c-format
-msgid "map root user as anonymous"
-msgstr ""
-
-#: standalone/draknfs:42
-#, c-format
-msgid "map all users to anonymous user"
-msgstr ""
-
-#: standalone/draknfs:43
-#, c-format
-msgid "No user UID mapping"
-msgstr ""
-
-#: standalone/draknfs:44
-#, c-format
-msgid "allow real remote root access"
-msgstr ""
-
-#: standalone/draknfs:83
-#, c-format
-msgid "NFS server"
-msgstr "Servidor NFS"
-
-#: standalone/draknfs:83
-#, c-format
-msgid "Restarting/Reloading NFS server..."
-msgstr ""
-
-#: standalone/draknfs:84
-#, c-format
-msgid "Error Restarting/Reloading NFS server"
-msgstr ""
-
-#: standalone/draknfs:100 standalone/draksambashare:203
-#, c-format
-msgid "Directory Selection"
-msgstr ""
-
-#: standalone/draknfs:105 standalone/draksambashare:208
-#, c-format
-msgid "Should be a directory."
-msgstr "Ha de ser un directori."
-
-#: standalone/draknfs:136
-#, c-format
-msgid ""
-"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
-"ways:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">single host:</span> a host either by an "
-"abbreviated name recognized be the resolver, fully qualified domain name, or "
-"an IP address\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">netgroups:</span> NIS netgroups may be given "
-"as @group.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">wildcards:</span> machine names may contain "
-"the wildcard characters * and ?. For instance: *.cs.foo.edu matches all "
-"hosts in the domain cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP networks:</span> you can also export "
-"directories to all hosts on an IP (sub-)network simultaneously. for example, "
-"either `/255.255.252.0' or `/22' appended to the network base address "
-"result.\n"
-msgstr ""
-
-#: standalone/draknfs:151
-#, c-format
-msgid ""
-"<span weight=\"bold\">User ID options</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map root user as anonymous:</span> map "
-"requests from uid/gid 0 to the anonymous uid/gid (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">allow real remote root access:</span> turn "
-"off root squashing. This option is mainly useful for diskless clients "
-"(no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map all users to anonymous user:</span> map "
-"all uids and gids to the anonymous user (all_squash). Useful for NFS-"
-"exported public FTP directories, news spool directories, etc. The opposite "
-"option is no user UID mapping (no_all_squash), which is the default "
-"setting.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid and anongid:</span> explicitly set "
-"the uid and gid of the anonymous account.\n"
-msgstr ""
-
-#: standalone/draknfs:167
-#, c-format
-msgid "Synchronous access:"
-msgstr "Accés síncron:"
-
-#: standalone/draknfs:168
-#, c-format
-msgid "Secured Connection:"
-msgstr ""
-
-#: standalone/draknfs:169
-#, c-format
-msgid "Read-Only share:"
-msgstr ""
-
-#: standalone/draknfs:171
-#, c-format
-msgid "<span weight=\"bold\">Advanced Options</span>"
-msgstr "<span weight=\"bold\">Opcions avançades</span>"
-
-#: standalone/draknfs:172
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> this option requires that "
-"requests originate on an internet port less than IPPORT_RESERVED (1024). "
-"This option is on by default."
-msgstr ""
-
-#: standalone/draknfs:173
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> allow either only read or both "
-"read and write requests on this NFS volume. The default is to disallow any "
-"request which changes the filesystem. This can also be made explicit by "
-"using this option."
-msgstr ""
-
-#: standalone/draknfs:174
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> disallows the NFS server to "
-"violate the NFS protocol and to reply to requests before any changes made by "
-"these requests have been committed to stable storage (e.g. disc drive)."
-msgstr ""
-
-#: standalone/draknfs:306
-#, c-format
-msgid "Please add an NFS share to be able to modify it."
-msgstr ""
-
-#
-#: standalone/draknfs:378
-#, c-format
-msgid "Advanced Options Help"
-msgstr "Ajuda de les opcions avançades"
-
-#: standalone/draknfs:389
-#, c-format
-msgid "NFS directory"
-msgstr "Directori NFS"
-
-#: standalone/draknfs:391 standalone/draksambashare:592
-#: standalone/draksambashare:771
-#, c-format
-msgid "Directory:"
-msgstr "Directori:"
-
-#: standalone/draknfs:394
-#, c-format
-msgid "Host access"
-msgstr ""
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Access:"
-msgstr "Accés:"
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Hosts Access"
-msgstr ""
-
-#: standalone/draknfs:399
-#, c-format
-msgid "User ID Mapping"
-msgstr ""
-
-#: standalone/draknfs:401
-#, c-format
-msgid "User ID:"
-msgstr "ID d'usuari:"
-
-#: standalone/draknfs:401
-#, c-format
-msgid "Help User ID"
-msgstr ""
-
-#: standalone/draknfs:402
-#, c-format
-msgid "Anonymous user ID:"
-msgstr ""
-
-#: standalone/draknfs:403
-#, c-format
-msgid "Anonymous Group ID:"
-msgstr ""
-
-#: standalone/draknfs:444
-#, c-format
-msgid "Can't create this directory."
-msgstr "No s'ha pogut crear aquest directori."
-
-#: standalone/draknfs:447
-#, c-format
-msgid "You must specify hosts access."
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Share Directory"
-msgstr "Comparteix el directori"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Hosts Wildcard"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "General Options"
-msgstr "Opcions generals"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Custom Options"
-msgstr "Opcions a mida"
-
-#: standalone/draknfs:539 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Please enter a directory to share."
-msgstr "Si us plau introduïu un directori a compartir."
-
-#: standalone/draknfs:546
-#, c-format
-msgid "Please use the modify button to set right access."
-msgstr ""
-
-#: standalone/draknfs:600
-#, c-format
-msgid "DrakNFS manage NFS shares"
-msgstr ""
-
-#: standalone/draknfs:609
-#, c-format
-msgid "Failed to add NFS share."
-msgstr ""
-
-#: standalone/draknfs:616
-#, c-format
-msgid "Failed to Modify NFS share."
-msgstr ""
-
-#: standalone/draknfs:623
-#, c-format
-msgid "Failed to remove an NFS share."
-msgstr ""
-
-#: standalone/drakperm:21
-#, c-format
-msgid "System settings"
-msgstr "Configuració del sistema"
-
-#: standalone/drakperm:22
-#, c-format
-msgid "Custom settings"
-msgstr "Arranjament personalitzat"
-
-#: standalone/drakperm:23
-#, c-format
-msgid "Custom & system settings"
-msgstr "Arranjament personalitzat del sistema"
-
-#: standalone/drakperm:43
-#, c-format
-msgid "Editable"
-msgstr "Editable"
-
-#: standalone/drakperm:48 standalone/drakperm:323
-#: standalone/draksambashare:101
-#, c-format
-msgid "Path"
-msgstr "Camí"
-
-#
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "User"
-msgstr "Usuari"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "Group"
-msgstr "Grup"
-
-#: standalone/drakperm:48 standalone/drakperm:335
-#, c-format
-msgid "Permissions"
-msgstr "Permisos"
-
-#: standalone/drakperm:57
-#, c-format
-msgid "Add a new rule"
-msgstr "Afegeix una nova regla"
-
-#: standalone/drakperm:64 standalone/drakperm:99 standalone/drakperm:124
-#, c-format
-msgid "Edit current rule"
-msgstr "Edita la regla actual"
-
-#: standalone/drakperm:106
-#, c-format
-msgid ""
-"Here you can see files to use in order to fix permissions, owners, and "
-"groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
-msgstr ""
-"Aquí podeu veure els fitxers que es faran servir per ajustar els permisos, "
-"propietaris i grups a través de l'msec.\n"
-"També podeu editar les vostres pròpies regles, que sobreescriuran les regles "
-"predeterminades."
-
-#: standalone/drakperm:109
-#, c-format
-msgid ""
-"The current security level is %s.\n"
-"Select permissions to see/edit"
-msgstr ""
-"El nivell de seguretat actual és %s.\n"
-"Esculli els permissos a veure/editar"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Up"
-msgstr "Puja"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Puja la regla actual un nivell"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Down"
-msgstr "Baixa"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Baixa la regla actual un nivell"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a rule"
-msgstr "Afegeix una regla"
-
-#
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Afegeix una regla nova al final"
-
-#
-#: standalone/drakperm:123
-#, c-format
-msgid "Delete selected rule"
-msgstr "Elimina la regla seleccionada"
-
-#: standalone/drakperm:242
-#, c-format
-msgid "browse"
-msgstr "navega"
-
-#
-#: standalone/drakperm:247
-#, c-format
-msgid "user"
-msgstr "usuari"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "group"
-msgstr "grup"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "other"
-msgstr "altres"
-
-#: standalone/drakperm:252
-#, c-format
-msgid "Read"
-msgstr "Lectura"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:255
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Permet que \"%s\" llegeixi el fitxer"
-
-#: standalone/drakperm:259
-#, c-format
-msgid "Write"
-msgstr "Escriptura"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:262
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Permet que \"%s\" escrigui el fitxer"
-
-#: standalone/drakperm:266
-#, c-format
-msgid "Execute"
-msgstr "Executa"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:269
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Permet que \"%s\" executi el fitxer"
-
-#: standalone/drakperm:272
-#, c-format
-msgid "Sticky-bit"
-msgstr "Sticky-bit"
-
-#: standalone/drakperm:272
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Usat per al directori:\n"
-" només el propietari del directori o del fitxer en aquest directori poden "
-"suprimir-lo"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Usa l'identificador del propietari (UID) per a l'execució"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Use group id for execution"
-msgstr "Usa l'identificador del grup (GID) per a l'execució"
-
-#
-#: standalone/drakperm:292 standalone/drakxtv:89
-#, c-format
-msgid "User:"
-msgstr "Usuari :"
-
-#: standalone/drakperm:294
-#, c-format
-msgid "Group:"
-msgstr "Grup :"
-
-#: standalone/drakperm:298
-#, c-format
-msgid "Current user"
-msgstr "Usuari actual"
-
-#: standalone/drakperm:299
-#, c-format
-msgid "When checked, owner and group will not be changed"
-msgstr "Si ho marqueu, no es canviaran ni el propietari ni el grup"
-
-#: standalone/drakperm:309
-#, c-format
-msgid "Path selection"
-msgstr "Selecció del camí"
-
-#: standalone/drakperm:329
-#, c-format
-msgid "Property"
-msgstr "Propietat"
-
-#: standalone/drakperm:380
-#, c-format
-msgid ""
-"The first character of the path must be a slash (\"/\"):\n"
-"\"%s\""
-msgstr ""
-"El primer caràcter de la ruta a de ser una barra (\"/\"):\n"
-"\"%s\""
-
-#: standalone/drakperm:390
-#, c-format
-msgid "Both the username and the group must valid!"
-msgstr "Tant el nom d'usuari com el grup han de ser vàlids!"
-
-#: standalone/drakperm:391
-#, c-format
-msgid "User: %s"
-msgstr "Usuari: %s"
-
-#: standalone/drakperm:392
-#, c-format
-msgid "Group: %s"
-msgstr "Grup: %s"
-
-#: standalone/drakroam:33
-#, c-format
-msgid ""
-"You do not have any wireless interface.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakroam:48
-#, c-format
-msgid "SSID"
-msgstr "SSID"
-
-#: standalone/drakroam:49
-#, c-format
-msgid "Signal strength"
-msgstr "Potència del senyal:"
-
-#: standalone/drakroam:51
-#, c-format
-msgid "Encryption"
-msgstr "Xifrat"
-
-#: standalone/drakroam:112
-#, c-format
-msgid "Please enter settings for wireless network \"%s\""
-msgstr ""
-
-#: standalone/drakroam:123
-#, c-format
-msgid "DNS server"
-msgstr "Servidor DNS"
-
-#: standalone/drakroam:228
-#, c-format
-msgid "Connect"
-msgstr "Connecta"
-
-#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/drakroam:229 standalone/printerdrake:251
-#, c-format
-msgid "Refresh"
-msgstr "Refresca"
-
-#: standalone/draksambashare:68
-#, fuzzy, c-format
-msgid "Share directory"
-msgstr "No és un directori"
-
-#: standalone/draksambashare:69 standalone/draksambashare:102
-#, c-format
-msgid "Comment"
-msgstr "Comentari"
-
-#: standalone/draksambashare:70 standalone/draksambashare:103
-#, c-format
-msgid "Browseable"
-msgstr "Accedible"
-
-#: standalone/draksambashare:71
-#, c-format
-msgid "Public"
-msgstr "Públic"
-
-#: standalone/draksambashare:72 standalone/draksambashare:108
-#, c-format
-msgid "Writable"
-msgstr "Escrivible"
-
-#: standalone/draksambashare:73 standalone/draksambashare:149
-#, fuzzy, c-format
-msgid "Create mask"
-msgstr "Crea"
-
-#: standalone/draksambashare:74 standalone/draksambashare:150
-#, fuzzy, c-format
-msgid "Directory mask"
-msgstr "Directori"
-
-#: standalone/draksambashare:75
-#, fuzzy, c-format
-msgid "Read list"
-msgstr "Lectura"
-
-#: standalone/draksambashare:76 standalone/draksambashare:109
-#: standalone/draksambashare:606
-#, fuzzy, c-format
-msgid "Write list"
-msgstr "Escriptura"
-
-#: standalone/draksambashare:77 standalone/draksambashare:141
-#, fuzzy, c-format
-msgid "Admin users"
-msgstr "Afegeix un usuari"
-
-#: standalone/draksambashare:78 standalone/draksambashare:142
-#, fuzzy, c-format
-msgid "Valid users"
-msgstr "Afegeix un usuari"
-
-#: standalone/draksambashare:79
-#, fuzzy, c-format
-msgid "Inherit Permissions"
-msgstr "Permisos"
-
-#
-#: standalone/draksambashare:80 standalone/draksambashare:143
-#, fuzzy, c-format
-msgid "Hide dot files"
-msgstr "Fitxers ocults"
-
-#: standalone/draksambashare:82 standalone/draksambashare:148
-#, c-format
-msgid "Preserve case"
-msgstr "Caixa de manteniment"
-
-#
-#: standalone/draksambashare:83
-#, fuzzy, c-format
-msgid "Force create mode"
-msgstr "El model de la vostra impressora"
-
-#: standalone/draksambashare:84
-#, fuzzy, c-format
-msgid "Force group"
-msgstr "Grup de treball"
-
-#
-#: standalone/draksambashare:85 standalone/draksambashare:147
-#, fuzzy, c-format
-msgid "Default case"
-msgstr "Usuari predeterminat"
-
-#: standalone/draksambashare:100
-#, c-format
-msgid "Printer name"
-msgstr "Nom d'impressora:"
-
-#: standalone/draksambashare:104 standalone/draksambashare:598
-#, c-format
-msgid "Printable"
-msgstr ""
-
-#: standalone/draksambashare:105
-#, c-format
-msgid "Print Command"
-msgstr ""
-
-#: standalone/draksambashare:106
-#, c-format
-msgid "LPQ command"
-msgstr ""
-
-#: standalone/draksambashare:107
-#, c-format
-msgid "Guest ok"
-msgstr ""
-
-#: standalone/draksambashare:110 standalone/draksambashare:151
-#: standalone/draksambashare:607
-#, fuzzy, c-format
-msgid "Inherit permissions"
-msgstr "Permisos"
-
-#: standalone/draksambashare:112
-#, c-format
-msgid "Create mode"
-msgstr ""
-
-#: standalone/draksambashare:113
-#, c-format
-msgid "Use client driver"
-msgstr ""
-
-#
-#: standalone/draksambashare:139
-#, fuzzy, c-format
-msgid "Read List"
-msgstr "Esborra la llista"
-
-#: standalone/draksambashare:140
-#, fuzzy, c-format
-msgid "Write List"
-msgstr "Escriptura"
-
-#: standalone/draksambashare:145
-#, fuzzy, c-format
-msgid "Force Group"
-msgstr "Grup"
-
-#: standalone/draksambashare:146
-#, c-format
-msgid "Force create group"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid "About Draksambashare"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid ""
-"Mandriva Linux \n"
-"Release: %s\n"
-"Author: Antoine Ginies\n"
-"\n"
-"This is a simple tool to easily manage Samba configuration."
-msgstr ""
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Samba server"
-msgstr "Servidor Samba"
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Restarting/Reloading Samba server..."
-msgstr ""
-
-#: standalone/draksambashare:187
-#, c-format
-msgid "Error Restarting/Reloading Samba server"
-msgstr ""
-
-#: standalone/draksambashare:372
-#, fuzzy, c-format
-msgid "Add a Samba share"
-msgstr "Servidor Samba"
-
-#: standalone/draksambashare:375
-#, c-format
-msgid "Goal of this wizard is to easily create a new Samba share."
-msgstr ""
-
-#: standalone/draksambashare:377
-#, c-format
-msgid "Name of the share:"
-msgstr "Nom de la compartició :"
-
-#: standalone/draksambashare:378 standalone/draksambashare:591
-#: standalone/draksambashare:772
-#, c-format
-msgid "Comment:"
-msgstr "Comentari:"
-
-#: standalone/draksambashare:379
-#, c-format
-msgid "Path:"
-msgstr "Ruta:"
-
-#: standalone/draksambashare:384
-#, c-format
-msgid ""
-"Share with the same name already exist or share name empty, please choose "
-"another name."
-msgstr ""
-
-#: standalone/draksambashare:388 standalone/draksambashare:394
-#, c-format
-msgid "Can't create the directory, please enter a correct path."
-msgstr ""
-
-#: standalone/draksambashare:391 standalone/draksambashare:627
-#: standalone/draksambashare:794
-#, fuzzy, c-format
-msgid "Please enter a Comment for this share."
-msgstr "Si us plau introduïu els paràmetres per aquesta targeta sense fils:"
-
-#: standalone/draksambashare:422
-#, c-format
-msgid ""
-"The wizard successfully added the Samba share. Now just double click on it "
-"in treeview to modify it"
-msgstr ""
-
-#: standalone/draksambashare:437
-#, c-format
-msgid "pdf-gen - a PDF generator"
-msgstr ""
-
-#: standalone/draksambashare:438
-#, c-format
-msgid "printers - all printers available"
-msgstr ""
-
-#: standalone/draksambashare:442
-#, c-format
-msgid "Add Special Printer share"
-msgstr ""
-
-#: standalone/draksambashare:445
-#, c-format
-msgid ""
-"Goal of this wizard is to easily create a new special printer Samba share."
-msgstr ""
-
-#: standalone/draksambashare:453
-#, c-format
-msgid "A PDF generator already exists."
-msgstr ""
-
-#: standalone/draksambashare:477
-#, c-format
-msgid "Printers and print$ already exist."
-msgstr ""
-
-#: standalone/draksambashare:528
-#, c-format
-msgid "The wizard successfully added the printer Samba share"
-msgstr ""
-
-#: standalone/draksambashare:551
-#, c-format
-msgid "Please add or select a Samba printer share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:587
-#, c-format
-msgid "Printer share"
-msgstr ""
-
-#: standalone/draksambashare:590
-#, c-format
-msgid "Printer name:"
-msgstr "Nom d'impressora:"
-
-#: standalone/draksambashare:596 standalone/draksambashare:777
-#, c-format
-msgid "Writable:"
-msgstr "Escrivible :"
-
-#: standalone/draksambashare:597 standalone/draksambashare:778
-#, c-format
-msgid "Browseable:"
-msgstr "Accedible :"
-
-#: standalone/draksambashare:602
-#, c-format
-msgid "Advanced options"
-msgstr "Opcions avançades"
-
-#: standalone/draksambashare:604
-#, c-format
-msgid "Printer access"
-msgstr ""
-
-#: standalone/draksambashare:608
-#, c-format
-msgid "Guest ok:"
-msgstr ""
-
-#: standalone/draksambashare:609
-#, c-format
-msgid "Create mode:"
-msgstr ""
-
-#: standalone/draksambashare:613
-#, c-format
-msgid "Printer command"
-msgstr ""
-
-#: standalone/draksambashare:615
-#, c-format
-msgid "Print command:"
-msgstr "Ordre d'impressió:"
-
-#: standalone/draksambashare:616
-#, c-format
-msgid "LPQ command:"
-msgstr ""
-
-#: standalone/draksambashare:617
-#, c-format
-msgid "Printing:"
-msgstr "Impressió:"
-
-#: standalone/draksambashare:633
-#, c-format
-msgid "create mode should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:695
-#, c-format
-msgid "DrakSamba entry"
-msgstr ""
-
-#: standalone/draksambashare:700
-#, c-format
-msgid "Please add or select a Samba share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:723
-#, fuzzy, c-format
-msgid "Samba user access"
-msgstr "Servidor Samba"
-
-#: standalone/draksambashare:731
-#, fuzzy, c-format
-msgid "Mask options"
-msgstr "Opcions bàsiques"
-
-#: standalone/draksambashare:745
-#, c-format
-msgid "Display options"
-msgstr "Opcions de visualització:"
-
-#: standalone/draksambashare:767
-#, fuzzy, c-format
-msgid "Samba share directory"
-msgstr "No és un directori"
-
-#: standalone/draksambashare:770
-#, c-format
-msgid "Share name:"
-msgstr "Nom de compartició :"
-
-#: standalone/draksambashare:776
-#, c-format
-msgid "Public:"
-msgstr "Públic :"
-
-#: standalone/draksambashare:800
-#, c-format
-msgid ""
-"Create mask, create mode and directory mask should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:807
-#, c-format
-msgid "Please create this Samba user: %s"
-msgstr ""
-
-#: standalone/draksambashare:930
-#, c-format
-msgid "User information"
-msgstr ""
-
-#: standalone/draksambashare:932
-#, c-format
-msgid "User name:"
-msgstr "Nom d'usuari:"
-
-#: standalone/draksambashare:933
-#, c-format
-msgid "Password:"
-msgstr "Contrasenya:"
-
-#: standalone/draksambashare:1133
-#, c-format
-msgid "Failed to add Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1142
-#, c-format
-msgid "Failed to Modify Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1151
-#, c-format
-msgid "Failed to remove a Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1158
-#, c-format
-msgid "File share"
-msgstr ""
-
-#: standalone/draksambashare:1166
-#, c-format
-msgid "Add printers"
-msgstr ""
-
-#: standalone/draksambashare:1172
-#, c-format
-msgid "Failed to add printers."
-msgstr ""
-
-#: standalone/draksambashare:1181
-#, c-format
-msgid "Failed to Modify."
-msgstr ""
-
-#: standalone/draksambashare:1190
-#, c-format
-msgid "Failed to remove."
-msgstr ""
-
-#: standalone/draksambashare:1197
-#, c-format
-msgid "Printers"
-msgstr "Impressores"
-
-#: standalone/draksambashare:1205
-#, c-format
-msgid "Change password"
-msgstr "Canvia la contrasenya"
-
-#: standalone/draksambashare:1210
-#, c-format
-msgid "Failed to change user password."
-msgstr "No s'ha pogut canviar la contrasenya."
-
-#: standalone/draksambashare:1218
-#, c-format
-msgid "Failed to add user."
-msgstr "No s'ha pogut afegir l'usuari."
-
-#: standalone/draksambashare:1221
-#, c-format
-msgid "Delete user"
-msgstr ""
-
-#: standalone/draksambashare:1230
-#, c-format
-msgid "Failed to delete user."
-msgstr ""
-
-#: standalone/draksambashare:1242
-#, c-format
-msgid "Samba Users"
-msgstr "Usuaris Samba"
-
-#: standalone/draksambashare:1251
-#, c-format
-msgid "DrakSamba manage Samba shares"
-msgstr ""
-
-#: standalone/draksec:49
-#, c-format
-msgid "ALL"
-msgstr "TOT"
-
-#: standalone/draksec:50
-#, c-format
-msgid "LOCAL"
-msgstr "LOCAL"
-
-#: standalone/draksec:51
-#, c-format
-msgid "NONE"
-msgstr "CAP"
-
-#: standalone/draksec:53 standalone/net_applet:480
-#, c-format
-msgid "Ignore"
-msgstr "Ignora"
-
-#. -PO: Do not alter the <span ..> and </span> tags.
-#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
-#: standalone/draksec:103
-#, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Administrator</span>' is the one who "
-"will receive security alerts if the\n"
-"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a "
-"username or an email.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Level</span>' menu allows you to select "
-"one of the six preconfigured security levels\n"
-"provided with msec. These levels range from '<span weight=\"bold\">poor</"
-"span>' security and ease of use, to\n"
-"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive "
-"server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
-"very\n"
-"easy to use security level. It should only be used for machines not "
-"connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
-"security\n"
-"recommended for a computer that will be used to connect to the Internet as "
-"a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
-"enough\n"
-"to use the system as a server which can accept connections from many "
-"clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower "
-"level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-
-#: standalone/draksec:156 standalone/harddrake2:207
-#, c-format
-msgid ""
-"Description of the fields:\n"
-"\n"
-msgstr ""
-"Descripció dels camps:\n"
-"\n"
-
-#: standalone/draksec:170
-#, c-format
-msgid "(default value: %s)"
-msgstr " (valor per defecte: %s)"
-
-#
-#: standalone/draksec:212
-#, c-format
-msgid "Security Level:"
-msgstr "Nivell de seguretat:"
-
-#: standalone/draksec:219
-#, c-format
-msgid "Security Administrator:"
-msgstr "Administrador de seguretat:"
-
-#: standalone/draksec:221
-#, c-format
-msgid "Basic options"
-msgstr "Opcions bàsiques"
-
-#
-#: standalone/draksec:235
-#, c-format
-msgid "Network Options"
-msgstr "Opcions de xarxa"
-
-#
-#: standalone/draksec:235
-#, c-format
-msgid "System Options"
-msgstr "Opcions de sistema"
-
-#: standalone/draksec:270
-#, c-format
-msgid "Periodic Checks"
-msgstr "Comprovacions periòdiques"
-
-#: standalone/draksec:300
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Espereu si us plau, s'està configurant el nivell de seguretat..."
-
-#: standalone/draksec:306
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Espereu si us plau, s'estan configurant les opcions de seguretat..."
-
-#: standalone/draksound:47
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "No s'ha detectat cap targeta de so!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/draksound:50
-#, c-format
-msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"No s'ha detectat cap targeta de so en el vostre ordinador. Si us plau, "
-"verifiqueu que teniu correctament inserida una targeta de so compatible amb "
-"Linux.\n"
-"\n"
-"\n"
-"Podeu visitar la nostra base de dades de maquinari a:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/draksound:57
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or "
-"the sndconfig program. Just type \"alsaconf\" or \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Nota: si teniu una targeta de so ISA PnP, haureu de fer servir el programa "
-"alsaconf o sndconfig. Només cal que teclegeu \"alsaconf\" o \"sndconfig\" a "
-"la consola."
-
-#: standalone/draksplash:30
-#, c-format
-msgid "x coordinate of text box"
-msgstr "coordinada x de la caixa de text"
-
-#: standalone/draksplash:31
-#, c-format
-msgid "y coordinate of text box"
-msgstr "coordinada y de la caixa de text"
-
-#: standalone/draksplash:32
-#, c-format
-msgid "text box width"
-msgstr "amplada de la caixa de text"
-
-#: standalone/draksplash:33
-#, c-format
-msgid "text box height"
-msgstr "alçada de la caixa de text"
-
-#: standalone/draksplash:34
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"coordenada x de la cantonada superior\n"
-"esquerra de la barra de progrés"
-
-#: standalone/draksplash:35
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-"coordenada y de la cantonada superior\n"
-"esquerra de la barra de progrés"
-
-#: standalone/draksplash:36
-#, c-format
-msgid "the width of the progress bar"
-msgstr "l'amplada de la barra de progrés"
-
-#: standalone/draksplash:37
-#, c-format
-msgid "the height of the progress bar"
-msgstr "l'alçada de la barra de progrés"
-
-#: standalone/draksplash:38
-#, c-format
-msgid "x coordinate of the text"
-msgstr "coordenada x del text"
-
-#: standalone/draksplash:39
-#, c-format
-msgid "y coordinate of the text"
-msgstr "coordenada y del text"
-
-#: standalone/draksplash:40
-#, c-format
-msgid "text box transparency"
-msgstr "transparència de la caixa de text"
-
-#: standalone/draksplash:41
-#, c-format
-msgid "progress box transparency"
-msgstr "transparència de la barra de progrés"
-
-#: standalone/draksplash:42
-#, c-format
-msgid "text size"
-msgstr "mida del text"
-
-#: standalone/draksplash:59
-#, c-format
-msgid "Choose progress bar color 1"
-msgstr "Escolliu el color 1 de la barra de progrés"
-
-#: standalone/draksplash:60
-#, c-format
-msgid "Choose progress bar color 2"
-msgstr "Escolliu el color 2 de la barra de progrés"
-
-#: standalone/draksplash:61
-#, c-format
-msgid "Choose progress bar background"
-msgstr "Escolliu el color de fons de la barra de progrés"
-
-#: standalone/draksplash:62
-#, c-format
-msgid "Gradient type"
-msgstr "Tipus de gradient"
-
-#: standalone/draksplash:63
-#, c-format
-msgid "Choose text color"
-msgstr "Escolliu el color del text"
-
-#: standalone/draksplash:65 standalone/draksplash:72
-#, c-format
-msgid "Choose picture"
-msgstr "Escolliu la imatge"
-
-#: standalone/draksplash:66
-#, c-format
-msgid "Silent bootsplash"
-msgstr ""
-
-#: standalone/draksplash:69
-#, c-format
-msgid "Choose text zone color"
-msgstr ""
-
-#: standalone/draksplash:70
-#, c-format
-msgid "Text color"
-msgstr "Color del text"
-
-#: standalone/draksplash:71
-#, c-format
-msgid "Background color"
-msgstr "Color de fons"
-
-#: standalone/draksplash:73
-#, c-format
-msgid "Verbose bootsplash"
-msgstr ""
-
-#: standalone/draksplash:75
-#, c-format
-msgid "Display logo on Console"
-msgstr "Mostra el logotip a la consola"
-
-#: standalone/draksplash:78
-#, c-format
-msgid "Console bootsplash"
-msgstr ""
-
-#: standalone/draksplash:84
-#, c-format
-msgid "Theme name"
-msgstr "Nom del tema"
-
-#: standalone/draksplash:87
-#, c-format
-msgid "final resolution"
-msgstr "resolució definitiva"
-
-#: standalone/draksplash:92
-#, c-format
-msgid "Save theme"
-msgstr "Desa el tema"
-
-#: standalone/draksplash:153
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "s'està desant el tema Bootsplash..."
-
-#: standalone/draksplash:162
-#, c-format
-msgid "Unable to load image file %s"
-msgstr "No s'ha pogut carregar el fitxer d'imatge %s"
-
-#
-#: standalone/draksplash:173
-#, c-format
-msgid "choose image"
-msgstr "escolliu una imatge"
-
-#: standalone/draksplash:188
-#, c-format
-msgid "Color selection"
-msgstr "Selecció de color"
-
-#: standalone/drakups:71
-#, c-format
-msgid "Connected through a serial port or an usb cable"
-msgstr "Connectat a través d'un port sèrie o un cable usb"
-
-#
-#: standalone/drakups:78
-#, c-format
-msgid "Add an UPS device"
-msgstr "Afegeix un dispositiu SAI"
-
-#: standalone/drakups:81
-#, c-format
-msgid ""
-"Welcome to the UPS configuration utility.\n"
-"\n"
-"Here, you'll add a new UPS to your system.\n"
-msgstr ""
-"Benvingut a la utilitat de configuració de SAI.\n"
-"\n"
-"Aquí podreu afegir un nou SAI al vostre sistema.\n"
-
-#: standalone/drakups:88
-#, c-format
-msgid ""
-"We're going to add an UPS device.\n"
-"\n"
-"Do you want to autodetect UPS devices connected to this machine or to "
-"manually select them?"
-msgstr ""
-"Ara s'afegirà un dispositiu SAI.\n"
-"\n"
-"Preferiu autodetectar els dispositius SAI connectats a aquest ordinador o ?"
-
-#: standalone/drakups:91
-#, c-format
-msgid "Autodetection"
-msgstr "Detecció automàtica"
-
-#: standalone/drakups:99 standalone/harddrake2:375
-#, c-format
-msgid "Detection in progress"
-msgstr "Detecció en procés"
-
-#: standalone/drakups:119
-#, c-format
-msgid "The wizard successfully added the following UPS devices:"
-msgstr "L'auxiliar ha afegit els següents dispositius SAI amb èxit:"
-
-#
-#: standalone/drakups:121
-#, c-format
-msgid "No new UPS devices was found"
-msgstr "No s'ha trobat cap dispositiu SAI nou"
-
-#
-#: standalone/drakups:126 standalone/drakups:138
-#, c-format
-msgid "UPS driver configuration"
-msgstr "Configuració del controlador del SAI"
-
-#: standalone/drakups:126
-#, c-format
-msgid "Please select your UPS model."
-msgstr "Si us plau, escolliu el model del vostre SAI."
-
-#: standalone/drakups:127
-#, c-format
-msgid "Manufacturer / Model:"
-msgstr "Fabricant / Model:"
-
-#: standalone/drakups:138
-#, c-format
-msgid ""
-"We are configuring the \"%s\" UPS from \"%s\".\n"
-"Please fill in its name, its driver and its port."
-msgstr ""
-"S'està configurant el SAI \"%s\" de \"%s\".\n"
-"Si us plau introdueix el nom, controlador i port."
-
-#: standalone/drakups:143
-#, c-format
-msgid "Name:"
-msgstr "Nom:"
-
-#: standalone/drakups:143
-#, c-format
-msgid "The name of your ups"
-msgstr "El nom del vostre SAI"
-
-#: standalone/drakups:144
-#, c-format
-msgid "The driver that manages your ups"
-msgstr "El controlador que gestiona el teu SAI"
-
-#: standalone/drakups:145
-#, c-format
-msgid "Port:"
-msgstr "Port:"
-
-#: standalone/drakups:147
-#, c-format
-msgid "The port on which is connected your ups"
-msgstr "El port al qual està connectat el vostre SAI"
-
-#: standalone/drakups:157
-#, c-format
-msgid "The wizard successfully configured the new \"%s\" UPS device."
-msgstr "L'auxiliar ha configurat el nou dispositiu SAI \"%s\" amb èxit."
-
-#
-#: standalone/drakups:248
-#, c-format
-msgid "UPS devices"
-msgstr "Dispositius SAI"
-
-#: standalone/drakups:249 standalone/drakups:268 standalone/drakups:284
-#: standalone/harddrake2:85 standalone/harddrake2:111
-#: standalone/harddrake2:118
-#, c-format
-msgid "Name"
-msgstr "Nom"
-
-#
-#: standalone/drakups:267
-#, c-format
-msgid "UPS users"
-msgstr "Usuaris SAI"
-
-#: standalone/drakups:283
-#, c-format
-msgid "Access Control Lists"
-msgstr "Llistes de control d'accés"
-
-#: standalone/drakups:284
-#, c-format
-msgid "IP mask"
-msgstr "Màscara IP"
-
-#: standalone/drakups:296
-#, c-format
-msgid "Rules"
-msgstr "Regles"
-
-#: standalone/drakups:297
-#, c-format
-msgid "Action"
-msgstr "Acció"
-
-#: standalone/drakups:297 standalone/drakvpn:1132 standalone/harddrake2:82
-#, c-format
-msgid "Level"
-msgstr "Nivell"
-
-#: standalone/drakups:297
-#, c-format
-msgid "ACL name"
-msgstr "Nom ACL"
-
-#: standalone/drakups:327 standalone/drakups:331 standalone/drakups:340
-#, c-format
-msgid "DrakUPS"
-msgstr "DrakUPS"
-
-#: standalone/drakups:337
-#, c-format
-msgid "Welcome to the UPS configuration tools"
-msgstr "Benvingut a les eines de configuració SAI"
-
-#: standalone/drakvpn:73
-#, c-format
-msgid "DrakVPN"
-msgstr "DrakVPN"
-
-#: standalone/drakvpn:95
-#, c-format
-msgid "The VPN connection is enabled."
-msgstr "La connexió VPN està habilitada."
-
-#: standalone/drakvpn:96
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"La configuració de l'una connexió VPN ja s'ha dut a terme.\n"
-"\n"
-"Ara està habilitada.\n"
-"\n"
-"Què voleu fer?"
-
-#: standalone/drakvpn:101
-#, c-format
-msgid "disable"
-msgstr "inhabilita"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127
-#, c-format
-msgid "reconfigure"
-msgstr "torna a configurar"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127 standalone/drakvpn:362
-#: standalone/drakvpn:721
-#, c-format
-msgid "dismiss"
-msgstr "deixa-ho córrer"
-
-#: standalone/drakvpn:105
-#, c-format
-msgid "Disabling VPN..."
-msgstr "S'està inhabilitant VPN..."
-
-#: standalone/drakvpn:114
-#, c-format
-msgid "The VPN connection is now disabled."
-msgstr "La connexió VPN està inhabilitada."
-
-#: standalone/drakvpn:121
-#, c-format
-msgid "VPN connection currently disabled"
-msgstr "La connexió VPN està desactivada en aquests moments"
-
-#: standalone/drakvpn:122
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"La configuració de l'una connexió VPN ja s'ha dut a terme.\n"
-"\n"
-"Ara està inhabilitada.\n"
-"\n"
-"Què voleu fer?"
-
-#: standalone/drakvpn:127
-#, c-format
-msgid "enable"
-msgstr "habilita"
-
-#: standalone/drakvpn:135
-#, c-format
-msgid "Enabling VPN..."
-msgstr "S'està habilitant VPN..."
-
-#: standalone/drakvpn:141
-#, c-format
-msgid "The VPN connection is now enabled."
-msgstr "La connexió VPN està activada en aquests moments."
-
-#: standalone/drakvpn:155 standalone/drakvpn:183
-#, c-format
-msgid "Simple VPN setup."
-msgstr "Configuració de VPN simple."
-
-#: standalone/drakvpn:156
-#, c-format
-msgid ""
-"You are about to configure your computer to use a VPN connection.\n"
-"\n"
-"With this feature, computers on your local private network and computers\n"
-"on some other remote private networks, can share resources, through\n"
-"their respective firewalls, over the Internet, in a secure manner. \n"
-"\n"
-"The communication over the Internet is encrypted. The local and remote\n"
-"computers look as if they were on the same network.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using\n"
-"drakconnect before going any further."
-msgstr ""
-
-#: standalone/drakvpn:184
-#, c-format
-msgid ""
-"VPN connection.\n"
-"\n"
-"This program is based on the following projects:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - the docs and man pages coming with the %s package\n"
-"\n"
-"Please read AT LEAST the ipsec-howto docs\n"
-"before going any further."
-msgstr ""
-
-#: standalone/drakvpn:196
-#, c-format
-msgid "Kernel module."
-msgstr "Mòdul del kernel."
-
-#: standalone/drakvpn:197
-#, c-format
-msgid ""
-"The kernel needs to have ipsec support.\n"
-"\n"
-"You're running a %s kernel version.\n"
-"\n"
-"This kernel has '%s' support."
-msgstr ""
-
-#: standalone/drakvpn:264
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Hi ha hagut problemes en instal·lar el paquet %s"
-
-#
-#: standalone/drakvpn:278
-#, c-format
-msgid "Security Policies"
-msgstr "Polítiques de seguretat"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "IKE daemon racoon"
-msgstr ""
-
-#
-#: standalone/drakvpn:281 standalone/drakvpn:292
-#, c-format
-msgid "Configuration file"
-msgstr "Fitxer de configuració"
-
-#: standalone/drakvpn:282
-#, c-format
-msgid ""
-"Configuration step!\n"
-"\n"
-"You need to define the Security Policies and then to \n"
-"configure the automatic key exchange (IKE) daemon. \n"
-"The KAME IKE daemon we're using is called 'racoon'.\n"
-"\n"
-"What would you like to configure?\n"
-msgstr ""
-
-#: standalone/drakvpn:293
-#, c-format
-msgid ""
-"Next, we will configure the %s file.\n"
-"\n"
-"\n"
-"Simply click on Next.\n"
-msgstr ""
-
-#: standalone/drakvpn:311 standalone/drakvpn:671
-#, c-format
-msgid "%s entries"
-msgstr "%s entrades"
-
-#: standalone/drakvpn:312
-#, c-format
-msgid ""
-"The %s file contents\n"
-"is divided into sections.\n"
-"\n"
-"You can now:\n"
-"\n"
-" - display, add, edit, or remove sections, then\n"
-" - commit the changes\n"
-"\n"
-"What would you like to do?\n"
-msgstr ""
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display"
-msgstr "Visualització"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid "Commit"
-msgstr "Entrega"
-
-#: standalone/drakvpn:333 standalone/drakvpn:337 standalone/drakvpn:695
-#: standalone/drakvpn:699
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display configuration"
-msgstr "Mostra la configuració"
-
-#: standalone/drakvpn:338
-#, c-format
-msgid ""
-"The %s file does not exist.\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose 'add'.\n"
-msgstr ""
-
-#: standalone/drakvpn:354
-#, c-format
-msgid "ipsec.conf entries"
-msgstr ""
-
-#: standalone/drakvpn:355
-#, c-format
-msgid ""
-"The %s file contains different sections.\n"
-"\n"
-"Here is its skeleton:\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"You can now add one of these sections.\n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "config setup"
-msgstr ""
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "conn %default"
-msgstr ""
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "normal conn"
-msgstr ""
-
-#
-#: standalone/drakvpn:368 standalone/drakvpn:409 standalone/drakvpn:496
-#, c-format
-msgid "Exists!"
-msgstr "Existeix!"
-
-#: standalone/drakvpn:369 standalone/drakvpn:410
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change its name.\n"
-msgstr ""
-
-#: standalone/drakvpn:386
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow this config\n"
-"setup section.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:391
-#, c-format
-msgid "interfaces"
-msgstr "interfícies"
-
-#: standalone/drakvpn:392
-#, c-format
-msgid "klipsdebug"
-msgstr ""
-
-#: standalone/drakvpn:393
-#, c-format
-msgid "plutodebug"
-msgstr ""
-
-#: standalone/drakvpn:394
-#, c-format
-msgid "plutoload"
-msgstr ""
-
-#: standalone/drakvpn:395
-#, c-format
-msgid "plutostart"
-msgstr ""
-
-#: standalone/drakvpn:396
-#, c-format
-msgid "uniqueids"
-msgstr ""
-
-#: standalone/drakvpn:430
-#, c-format
-msgid ""
-"This is the first section after the config\n"
-"setup one.\n"
-"\n"
-"Here you define the default settings. \n"
-"All the other sections will follow this one.\n"
-"The left settings are optional. If do not define\n"
-"them here, globally, you can define them in each\n"
-"section.\n"
-msgstr ""
-
-#: standalone/drakvpn:437
-#, c-format
-msgid "PFS"
-msgstr "PFS"
-
-#: standalone/drakvpn:438
-#, c-format
-msgid "keyingtries"
-msgstr "keyingtries"
-
-#: standalone/drakvpn:439
-#, c-format
-msgid "compress"
-msgstr "compress"
-
-#: standalone/drakvpn:440
-#, c-format
-msgid "disablearrivalcheck"
-msgstr "disablearrivalcheck"
-
-#: standalone/drakvpn:441 standalone/drakvpn:480
-#, c-format
-msgid "left"
-msgstr "left"
-
-#: standalone/drakvpn:442 standalone/drakvpn:481
-#, c-format
-msgid "leftcert"
-msgstr "leftcert"
-
-#: standalone/drakvpn:443 standalone/drakvpn:482
-#, c-format
-msgid "leftrsasigkey"
-msgstr "leftrsasigkey"
-
-#: standalone/drakvpn:444 standalone/drakvpn:483
-#, c-format
-msgid "leftsubnet"
-msgstr "leftsubnet"
-
-#: standalone/drakvpn:445 standalone/drakvpn:484
-#, c-format
-msgid "leftnexthop"
-msgstr "leftnexthop"
-
-#: standalone/drakvpn:474
-#, c-format
-msgid ""
-"Your %s file has several sections, or connections.\n"
-"\n"
-"You can now add a new section.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:477
-#, c-format
-msgid "section name"
-msgstr "nom de secció"
-
-#: standalone/drakvpn:478
-#, c-format
-msgid "authby"
-msgstr "authby"
-
-#: standalone/drakvpn:479
-#, c-format
-msgid "auto"
-msgstr "auto"
-
-#: standalone/drakvpn:485
-#, c-format
-msgid "right"
-msgstr "right"
-
-#
-#: standalone/drakvpn:486
-#, c-format
-msgid "rightcert"
-msgstr "rightcert"
-
-#: standalone/drakvpn:487
-#, c-format
-msgid "rightrsasigkey"
-msgstr "rightrsasigkey"
-
-#: standalone/drakvpn:488
-#, c-format
-msgid "rightsubnet"
-msgstr "rightsubnet"
-
-#: standalone/drakvpn:489
-#, c-format
-msgid "rightnexthop"
-msgstr "rightnexthop"
-
-#: standalone/drakvpn:497
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change the name of the section.\n"
-msgstr ""
-
-#: standalone/drakvpn:529
-#, c-format
-msgid ""
-"Add a Security Policy.\n"
-"\n"
-"You can now add a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:562 standalone/drakvpn:812
-#, c-format
-msgid "Edit section"
-msgstr "Edita secció"
-
-#: standalone/drakvpn:563
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to edit \n"
-"and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:566 standalone/drakvpn:646 standalone/drakvpn:817
-#: standalone/drakvpn:863
-#, c-format
-msgid "Section names"
-msgstr "Noms de secció"
-
-#: standalone/drakvpn:576
-#, c-format
-msgid "Can not edit!"
-msgstr "No es pot editar!"
-
-#: standalone/drakvpn:577
-#, c-format
-msgid ""
-"You cannot edit this section.\n"
-"\n"
-"This section is mandatory for Freeswan 2.X.\n"
-"One has to specify version 2.0 on the top\n"
-"of the %s file, and eventually, disable or\n"
-"enable the opportunistic encryption.\n"
-msgstr ""
-
-#: standalone/drakvpn:586
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the config setup section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:597
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the default section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:610
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the normal section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:631
-#, c-format
-msgid ""
-"Edit a Security Policy.\n"
-"\n"
-"You can now edit a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#
-#: standalone/drakvpn:642 standalone/drakvpn:859
-#, c-format
-msgid "Remove section"
-msgstr "Elimina secció"
-
-#: standalone/drakvpn:643 standalone/drakvpn:860
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to remove\n"
-"and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:672
-#, c-format
-msgid ""
-"The racoon.conf file configuration.\n"
-"\n"
-"The contents of this file is divided into sections.\n"
-"You can now:\n"
-" - display \t\t (display the file contents)\n"
-" - add\t\t\t (add one section)\n"
-" - edit \t\t\t (modify parameters of an existing section)\n"
-" - remove \t\t (remove an existing section)\n"
-" - commit \t\t (writes the changes to the real file)"
-msgstr ""
-
-#: standalone/drakvpn:700
-#, c-format
-msgid ""
-"The %s file does not exist\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose configure.\n"
-msgstr ""
-
-#: standalone/drakvpn:714
-#, c-format
-msgid "racoonf.conf entries"
-msgstr ""
-
-#: standalone/drakvpn:715
-#, c-format
-msgid ""
-"The 'add' sections step.\n"
-"\n"
-"Here below is the racoon.conf file skeleton:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "path"
-msgstr "camí"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "remote"
-msgstr "remot"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "sainfo"
-msgstr ""
-
-#: standalone/drakvpn:729
-#, c-format
-msgid ""
-"The 'add path' section step.\n"
-"\n"
-"The path sections have to be on top of your racoon.conf file.\n"
-"\n"
-"Put your mouse over the certificate entry to obtain online help."
-msgstr ""
-
-#
-#: standalone/drakvpn:732
-#, c-format
-msgid "path type"
-msgstr ""
-
-#: standalone/drakvpn:736
-#, c-format
-msgid ""
-"path include path: specifies a path to include\n"
-"a file. See File Inclusion.\n"
-"\tExample: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: specifies a file containing\n"
-"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
-"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) will search this directory\n"
-"if a certificate or certificate request is received.\n"
-"\tExample: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"other configuration files can be included.\n"
-"\tExample: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File: Pre-shared key file defines a pair\n"
-"of the identifier and the shared secret key which are used at\n"
-"Pre-shared key authentication method in phase 1."
-msgstr ""
-
-#: standalone/drakvpn:756 standalone/drakvpn:849
-#, c-format
-msgid "real file"
-msgstr "fitxer real"
-
-#: standalone/drakvpn:779
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your racoon.conf file.\n"
-"\n"
-"You can now choose the remote settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:796
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your %s file.\n"
-"\n"
-"You can now choose the sainfo settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:813
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here in the list below the one you want\n"
-"to edit and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:824
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"\n"
-"You can now edit the remote section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:833
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the sainfo section entries.\n"
-"\n"
-"Choose continue when you are done to write the data."
-msgstr ""
-
-#: standalone/drakvpn:841
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow these path\n"
-"sections.\n"
-"\n"
-"You can now edit the path entries.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:848
-#, c-format
-msgid "path_type"
-msgstr ""
-
-#: standalone/drakvpn:889
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"\n"
-"You may now share resources through the Internet,\n"
-"in a secure way, using a VPN connection.\n"
-"\n"
-"You should make sure that that the tunnels shorewall\n"
-"section is configured."
-msgstr ""
-
-#: standalone/drakvpn:909
-#, c-format
-msgid "Sainfo source address"
-msgstr ""
-
-#: standalone/drakvpn:910
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 is the source address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 is the source address"
-msgstr ""
-
-#
-#: standalone/drakvpn:927
-#, c-format
-msgid "Sainfo source protocol"
-msgstr ""
-
-#: standalone/drakvpn:928
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe first 'any' allows any protocol for the source"
-msgstr ""
-
-#: standalone/drakvpn:942
-#, c-format
-msgid "Sainfo destination address"
-msgstr ""
-
-#: standalone/drakvpn:943
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 is the destination address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 is the destination address"
-msgstr ""
-
-#: standalone/drakvpn:960
-#, c-format
-msgid "Sainfo destination protocol"
-msgstr ""
-
-#: standalone/drakvpn:961
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe last 'any' allows any protocol for the destination"
-msgstr ""
-
-#: standalone/drakvpn:975
-#, c-format
-msgid "PFS group"
-msgstr ""
-
-#: standalone/drakvpn:977
-#, c-format
-msgid ""
-"define the group of Diffie-Hellman exponentiations.\n"
-"If you do not require PFS then you can omit this directive.\n"
-"Any proposal will be accepted if you do not specify one.\n"
-"group is one of the following: modp768, modp1024, modp1536.\n"
-"Or you can define 1, 2, or 5 as the DH group number."
-msgstr ""
-
-#: standalone/drakvpn:982
-#, c-format
-msgid "Lifetime number"
-msgstr ""
-
-#: standalone/drakvpn:983
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-msgstr ""
-
-#: standalone/drakvpn:999
-#, c-format
-msgid "Lifetime unit"
-msgstr ""
-
-#: standalone/drakvpn:1001
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
-"'hour'.\n"
-msgstr ""
-
-#: standalone/drakvpn:1019
-#, c-format
-msgid "Authentication algorithm"
-msgstr "Algoritme d'autenticació"
-
-#: standalone/drakvpn:1021
-#, c-format
-msgid "Compression algorithm"
-msgstr "Algoritme de compresió"
-
-#: standalone/drakvpn:1022
-#, c-format
-msgid "deflate"
-msgstr ""
-
-#: standalone/drakvpn:1029
-#, c-format
-msgid "Remote"
-msgstr "Remot"
-
-#: standalone/drakvpn:1030
-#, c-format
-msgid ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specifies the parameters for IKE phase 1 for each remote node.\n"
-"The default port is 500. If anonymous is specified, the state-\n"
-"ments apply to all peers which do not match any other remote\n"
-"directive.\n"
-"\n"
-"Examples: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-msgstr ""
-
-#: standalone/drakvpn:1038
-#, c-format
-msgid "Exchange mode"
-msgstr ""
-
-#: standalone/drakvpn:1040
-#, c-format
-msgid ""
-"defines the exchange mode for phase 1 when racoon is the\n"
-"initiator. Also it means the acceptable exchange mode\n"
-"when racoon is responder. More than one mode can be\n"
-"specified by separating them with a comma. All of the\n"
-"modes are acceptable. The first exchange mode is what\n"
-"racoon uses when it is the initiator.\n"
-msgstr ""
-
-#: standalone/drakvpn:1046
-#, c-format
-msgid "Generate policy"
-msgstr ""
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "off"
-msgstr "No"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "on"
-msgstr "Si"
-
-#: standalone/drakvpn:1048
-#, c-format
-msgid ""
-"This directive is for the responder. Therefore you\n"
-"should set passive on in order that racoon(8) only\n"
-"becomes a responder. If the responder does not have any\n"
-"policy in SPD during phase 2 negotiation, and the direc-\n"
-"tive is set on, then racoon(8) will choice the first pro-\n"
-"posal in the SA payload from the initiator, and generate\n"
-"policy entries from the proposal. It is useful to nego-\n"
-"tiate with the client which is allocated IP address\n"
-"dynamically. Note that inappropriate policy might be\n"
-"installed into the responder's SPD by the initiator. So\n"
-"that other communication might fail if such policies\n"
-"installed due to some policy mismatches between the ini-\n"
-"tiator and the responder. This directive is ignored in\n"
-"the initiator case. The default value is off."
-msgstr ""
-
-#: standalone/drakvpn:1062
-#, c-format
-msgid "Passive"
-msgstr "Passiu"
-
-#: standalone/drakvpn:1064
-#, c-format
-msgid ""
-"If you do not want to initiate the negotiation, set this\n"
-"to on. The default value is off. It is useful for a\n"
-"server."
-msgstr ""
-
-#: standalone/drakvpn:1067
-#, c-format
-msgid "Certificate type"
-msgstr ""
-
-#: standalone/drakvpn:1069
-#, c-format
-msgid "My certfile"
-msgstr ""
-
-#: standalone/drakvpn:1070
-#, c-format
-msgid "Name of the certificate"
-msgstr "Nom del certificat"
-
-#: standalone/drakvpn:1071
-#, c-format
-msgid "My private key"
-msgstr ""
-
-#: standalone/drakvpn:1072
-#, c-format
-msgid "Name of the private key"
-msgstr "Nom de la clau privada"
-
-#: standalone/drakvpn:1073
-#, c-format
-msgid "Peers certfile"
-msgstr ""
-
-#: standalone/drakvpn:1074
-#, c-format
-msgid "Name of the peers certificate"
-msgstr ""
-
-#: standalone/drakvpn:1075
-#, c-format
-msgid "Verify cert"
-msgstr ""
-
-#: standalone/drakvpn:1077
-#, c-format
-msgid ""
-"If you do not want to verify the peer's certificate for\n"
-"some reason, set this to off. The default is on."
-msgstr ""
-
-#: standalone/drakvpn:1079
-#, c-format
-msgid "My identifier"
-msgstr ""
-
-#: standalone/drakvpn:1080
-#, c-format
-msgid ""
-"specifies the identifier sent to the remote host and the\n"
-"type to use in the phase 1 negotiation. address, FQDN,\n"
-"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
-"they are used like:\n"
-"\tmy_identifier address [address];\n"
-"\t\tthe type is the IP address. This is the default\n"
-"\t\ttype if you do not specify an identifier to use.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tthe type is a USER_FQDN (user fully-qualified\n"
-"\t\tdomain name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tthe type is a FQDN (fully-qualified domain name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tthe type is a KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tthe type is an ASN.1 distinguished name. If\n"
-"\t\tstring is omitted, racoon(8) will get DN from\n"
-"\t\tSubject field in the certificate.\n"
-"\n"
-"Examples: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-msgstr ""
-
-#: standalone/drakvpn:1100
-#, c-format
-msgid "Peers identifier"
-msgstr ""
-
-#: standalone/drakvpn:1101
-#, c-format
-msgid "Proposal"
-msgstr ""
-
-#: standalone/drakvpn:1103
-#, c-format
-msgid ""
-"specify the encryption algorithm used for the\n"
-"phase 1 negotiation. This directive must be defined. \n"
-"algorithm is one of the following: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For other transforms, this statement should not be used."
-msgstr ""
-
-#: standalone/drakvpn:1110
-#, c-format
-msgid "Hash algorithm"
-msgstr ""
-
-#: standalone/drakvpn:1112
-#, c-format
-msgid "DH group"
-msgstr "Grup DH"
-
-#: standalone/drakvpn:1119
-#, c-format
-msgid "Command"
-msgstr "Ordre"
-
-#: standalone/drakvpn:1120
-#, c-format
-msgid "Source IP range"
-msgstr ""
-
-#: standalone/drakvpn:1121
-#, c-format
-msgid "Destination IP range"
-msgstr ""
-
-#
-#: standalone/drakvpn:1122
-#, c-format
-msgid "Upper-layer protocol"
-msgstr ""
-
-#: standalone/drakvpn:1122 standalone/drakvpn:1129
-#, c-format
-msgid "any"
-msgstr ""
-
-#: standalone/drakvpn:1124
-#, c-format
-msgid "Flag"
-msgstr "Bandera"
-
-#: standalone/drakvpn:1125
-#, c-format
-msgid "Direction"
-msgstr "Direcció"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "IPsec policy"
-msgstr ""
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "ipsec"
-msgstr "ipsec"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "discard"
-msgstr ""
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "Mode"
-msgstr "Mode"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "tunnel"
-msgstr ""
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "transport"
-msgstr ""
-
-#: standalone/drakvpn:1131
-#, c-format
-msgid "Source/destination"
-msgstr "Font/destí"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "require"
-msgstr ""
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "default"
-msgstr "predeterminat"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "use"
-msgstr ""
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "unique"
-msgstr ""
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (broadcast)"
-msgstr "EUA (difusió)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable)"
-msgstr "EUA (cable)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "EUA (cable-hrc)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "Canada (cable)"
-msgstr "Canadà (cable)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Japó (difusió)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (cable)"
-msgstr "Japó (cable)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "China (broadcast)"
-msgstr "Xina (difusió)"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "West Europe"
-msgstr "Europa de l'Oest"
-
-#
-#: standalone/drakxtv:47
-#, c-format
-msgid "East Europe"
-msgstr "Europa de l'Est"
-
-#
-#: standalone/drakxtv:47
-#, c-format
-msgid "France [SECAM]"
-msgstr "França [SECAM]"
-
-#: standalone/drakxtv:48
-#, c-format
-msgid "Newzealand"
-msgstr "Nova Zelanda"
-
-#: standalone/drakxtv:51
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "TV per cable australiana Optus"
-
-#: standalone/drakxtv:85
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Si us plau,\n"
-"entreu la vostra normativa de tv i el país"
-
-#: standalone/drakxtv:87
-#, c-format
-msgid "TV norm:"
-msgstr "Normativa de TV:"
-
-#: standalone/drakxtv:88
-#, c-format
-msgid "Area:"
-msgstr "Àrea:"
-
-#: standalone/drakxtv:93
-#, c-format
-msgid "Scanning for TV channels in progress..."
-msgstr "La cerca de canals de TV està en progrés..."
-
-#: standalone/drakxtv:103
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "S'estan cercant canals de TV"
-
-#
-#: standalone/drakxtv:107
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "S'ha produït un error en cercar els canals de TV"
-
-#: standalone/drakxtv:110
-#, c-format
-msgid "Have a nice day!"
-msgstr "Tingueu un bon dia!"
-
-#: standalone/drakxtv:111
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "Ara, podeu executar xawtv (sota X Window!) !\n"
-
-#: standalone/drakxtv:149
-#, c-format
-msgid "No TV Card detected!"
-msgstr "No s'ha detectat cap targeta de TV!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakxtv:151
-#, c-format
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"No s'ha detectat cap targeta de TV en el vostre ordinador. Si us plau "
-"verifiqueu que teniu correctament inserida una targeta de Vídeo/TV "
-"compatible amb Linux.\n"
-"\n"
-"\n"
-"Podeu visitar la nostra base de dades de maquinari a:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/finish-install:42 standalone/keyboarddrake:30
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Si us plau, seleccioneu la disposició del vostre teclat."
-
-#
-#: standalone/harddrake2:25
-#, c-format
-msgid "Alternative drivers"
-msgstr "Controladors alternatius"
-
-#: standalone/harddrake2:26
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "la llista de controladors alternatius per a aquesta targeta de so"
-
-#: standalone/harddrake2:29
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-"aquest és el bus físic al qual el dispositiu està connectat (p.ex.: PCI, "
-"USB...)"
-
-#: standalone/harddrake2:31 standalone/harddrake2:146
-#, c-format
-msgid "Bus identification"
-msgstr "Identificació del bus"
-
-#: standalone/harddrake2:32
-#, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
-msgstr ""
-"- Dispositius PCI i USB: es llisten els identificadors PCI/USB del "
-"distribuïdor, del dispositiu, del subdistribuïdor i del subdispositiu"
-
-#: standalone/harddrake2:35
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- dispositius PCI: dóna la ranura PCI, el dispositiu i la funció d'aquesta "
-"targeta\n"
-"- dispositius EIDE: diu si el dispositiu està configurat com a mestre o com "
-"a esclau\n"
-"- dispositius SCSI: dóna el bus SCSI i els identificadors SCSI del dispositiu"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "Drive capacity"
-msgstr "Capacitat de la unitat"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
-"funcions especials del programa de control (capacitat per enregistrar CD o "
-"preparat per a DVD)"
-
-#: standalone/harddrake2:39
-#, c-format
-msgid "this field describes the device"
-msgstr "aquest camp descriu el dispositiu"
-
-#: standalone/harddrake2:40
-#, c-format
-msgid "Old device file"
-msgstr "Fitxer de dispositiu antic"
-
-#: standalone/harddrake2:41
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "nom antic de dispositiu estàtic, usat en el paquet de desenvolupament"
-
-#: standalone/harddrake2:42
-#, c-format
-msgid "New devfs device"
-msgstr "Nou dispositiu devfs"
-
-#: standalone/harddrake2:43
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "nou nom de dispositiu dinàmic generat pel devfs intern del nucli"
-
-#. -PO: here "module" is the "jargon term" for a kernel driver
-#: standalone/harddrake2:46
-#, c-format
-msgid "Module"
-msgstr "Mòdul"
-
-#: standalone/harddrake2:46
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "el mòdul del nucli GNU/Linux que gestiona aquest dispositiu"
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "Extended partitions"
-msgstr "Particions ampliades"
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "the number of extended partitions"
-msgstr "el número de particions ampliades"
-
-#
-#: standalone/harddrake2:48
-#, c-format
-msgid "Geometry"
-msgstr "Geometria"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Cylinder/head/sectors geometry of the disk"
-msgstr ""
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "Disk controller"
-msgstr "Controlador de disc"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "the disk controller on the host side"
-msgstr ""
-
-#: standalone/harddrake2:50
-#, c-format
-msgid "class of hardware device"
-msgstr "tipus de dispositiu de maquinari"
-
-#: standalone/harddrake2:51 standalone/harddrake2:83
-#: standalone/printerdrake:224
-#, c-format
-msgid "Model"
-msgstr "Model"
-
-#: standalone/harddrake2:51
-#, c-format
-msgid "hard disk model"
-msgstr "model de disc dur"
-
-#: standalone/harddrake2:52
-#, c-format
-msgid "network printer port"
-msgstr "port d'impressora de la xarxa"
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "Primary partitions"
-msgstr "Particions primàries"
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "the number of the primary partitions"
-msgstr "el número de particions primàries"
-
-#: standalone/harddrake2:54
-#, c-format
-msgid "the vendor name of the device"
-msgstr "el nom del venedor del dispositiu"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "Bus PCI #"
-msgstr "# Bus PCI"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "the PCI bus on which the device is plugged"
-msgstr "el bus PCI al qual el dispositiu està connectat"
-
-#
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device #"
-msgstr "# dispositiu PCI"
-
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device number"
-msgstr "Número del dispositiu PCI"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function #"
-msgstr "Funció PCI #"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function number"
-msgstr ""
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "Vendor ID"
-msgstr "ID del venedor"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "this is the standard numerical identifier of the vendor"
-msgstr ""
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "Device ID"
-msgstr "ID del dispositiu"
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "this is the numerical identifier of the device"
-msgstr ""
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "Sub vendor ID"
-msgstr "Sub ID del venedor"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "this is the minor numerical identifier of the vendor"
-msgstr ""
-
-#
-#: standalone/harddrake2:61
-#, c-format
-msgid "Sub device ID"
-msgstr "Sub ID del dispositiu"
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "this is the minor numerical identifier of the device"
-msgstr ""
-
-#: standalone/harddrake2:62
-#, c-format
-msgid "Device USB ID"
-msgstr "ID dispositiu USB"
-
-#: standalone/harddrake2:62
-#, c-format
-msgid ".."
-msgstr ".."
-
-#: standalone/harddrake2:66
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
-
-#: standalone/harddrake2:66
-#, c-format
-msgid ""
-"the GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
-msgstr ""
-"el nucli GNU/Linux necessita executar un bucle de càlcul durant l'arrencada "
-"per iniciar un comptador de temps. El seu resultat s'emmagatzema com a "
-"bogomips com a manera d'\"avaluar\" la CPU."
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "Cache size"
-msgstr "Mida de la memòria cau"
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "mida de la memòria cau de la CPU (segon nivell)"
-
-#. -PO: here "comas" is the medical coma, not the lexical coma!!
-#: standalone/harddrake2:70
-#, c-format
-msgid "Coma bug"
-msgstr "Error Coma"
-
-#: standalone/harddrake2:70
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "si aquesta CPU té o no l'error Coma Cyrix 6x86"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "Cpuid family"
-msgstr "Família cpuid"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "família de la CPU (p.ex. 6 per a la classe i686)"
-
-#
-#: standalone/harddrake2:72
-#, c-format
-msgid "Cpuid level"
-msgstr "Nivell cpuid"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "nivell d'informació que es pot obtenir mitjançant la instrucció cpuid"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Freqüència (MHz)"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr ""
-"freqüència en MHz (megahertz) de la CPU (que, en una primera aproximació "
-"grollera, es pot considerar com el nombre d'instruccions per segon que la "
-"CPU pot executar)"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "Flags"
-msgstr "Senyaladors"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "Senyaladors de la CPU informats pel nucli."
-
-#: standalone/harddrake2:75
-#, c-format
-msgid "Fdiv bug"
-msgstr "Error Fdiv"
-
-#: standalone/harddrake2:76
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
-"Els primers xips Pentium d'Intel fabricats tenen un defecte en el seu "
-"processador de punt flotant que no els permet aconseguir la precisió "
-"necessària en realitzar una divisió de punt flotant (FDIV)"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "Is FPU present"
-msgstr "FPU és present"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "\"sí\" indica que el processador té un coprocessador aritmètic"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "Si l'FPU té o no un vector irq"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
-"\"sí\" significa que el coprocessador matemàtic te un vector d'excepció "
-"adjunt"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "F00f bug"
-msgstr "Error F00f"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
-"els primers pentiums eren plens d'errors i es penjaven en decodificar el "
-"codi de byte F00F "
-
-#: standalone/harddrake2:80
-#, c-format
-msgid "Halt bug"
-msgstr "Error d'aturada"
-
-#: standalone/harddrake2:81
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
-"Alguns del primers xips i486DX-100 no poden tornar amb fiabilitat al mode "
-"d'operació després que s'hagi utilitzat la instrucció \"halt\""
-
-#: standalone/harddrake2:82
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "subgeneració de la CPU"
-
-#: standalone/harddrake2:83
-#, c-format
-msgid "generation of the cpu (eg: 8 for Pentium III, ...)"
-msgstr "generació de la CPU (p.ex., 8 per al Pentium III, etc.)"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "Model name"
-msgstr "Nom del model"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "nom oficial del distribuïdor de la cpu"
-
-#: standalone/harddrake2:85
-#, c-format
-msgid "the name of the CPU"
-msgstr "nom de la CPU"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "Processor ID"
-msgstr "ID del processador"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "the number of the processor"
-msgstr "número del processador"
-
-#
-#: standalone/harddrake2:87
-#, c-format
-msgid "Model stepping"
-msgstr "Pas a pas del model"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "stepping de la CPU (número de submodel (generació))"
-
-#: standalone/harddrake2:88
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "el nom del distribuïdor del processador"
-
-#
-#: standalone/harddrake2:89
-#, c-format
-msgid "Write protection"
-msgstr "Protecció contra escriptura"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid ""
-"the WP flag in the CR0 register of the cpu enforce write protection at the "
-"memory page level, thus enabling the processor to prevent unchecked kernel "
-"accesses to user memory (aka this is a bug guard)"
-msgstr ""
-"el senyalador WP del registre CR0 de la CPU reforça la protecció contra "
-"escriptura a nivell de la pàgina de memòria, permetent que el processador "
-"eviti accessos del nucli no comprovats a la memòria de l'usuari (és a dir, "
-"que és un control contra errors)"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "Floppy format"
-msgstr "Format del disquet"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "format dels disquets que es poden utilitzar en la unitat"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "Channel"
-msgstr "Canal"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "Canal EIDE/SCSI"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "Disk identifier"
-msgstr "Identificador de disc"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "usually the disk serial number"
-msgstr "normalment el número de sèrie del disc"
-
-#
-#: standalone/harddrake2:99
-#, c-format
-msgid "Logical unit number"
-msgstr ""
-
-#: standalone/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 ""
-
-#. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...)
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size"
-msgstr "Mida Instal·lada"
-
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size of the memory bank"
-msgstr "Mida instal·lada del banc de memòria"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled Size"
-msgstr ""
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled size of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:108
-#, c-format
-msgid "type of the memory device"
-msgstr "tipus del dispositiu de memòria"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed"
-msgstr "Velocitat"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:110
-#, c-format
-msgid "Bank connections"
-msgstr ""
-
-#: standalone/harddrake2:111
-#, c-format
-msgid "Socket designation of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:115
-#, c-format
-msgid "Device file"
-msgstr "Fitxer de dispositiu"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid ""
-"the device file used to communicate with the kernel driver for the mouse"
-msgstr ""
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "Emulated wheel"
-msgstr "Rodeta emulada"
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "whether the wheel is emulated or not"
-msgstr "si la rodeta s'emula o no"
-
-#: standalone/harddrake2:117
-#, c-format
-msgid "the type of the mouse"
-msgstr "el tipus de ratolí"
-
-#: standalone/harddrake2:118
-#, c-format
-msgid "the name of the mouse"
-msgstr "el nom del ratolí"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "Number of buttons"
-msgstr "Nombre de botons"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "el nombre de botons que té el ratolí"
-
-#: standalone/harddrake2:120
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "tipus de bus a què està connectat el ratolí."
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "Mouse protocol used by X11"
-msgstr "Protocol del ratolí usar per X11"
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "the protocol that the graphical desktop use with the mouse"
-msgstr "el protocol que usa l'entorn gràfic pel ratolí"
-
-#: standalone/harddrake2:128 standalone/harddrake2:137
-#: standalone/harddrake2:144 standalone/harddrake2:152
-#: standalone/harddrake2:341
-#, c-format
-msgid "Identification"
-msgstr "Identificació"
-
-#: standalone/harddrake2:129 standalone/harddrake2:145
-#, c-format
-msgid "Connection"
-msgstr "Connexió"
-
-#: standalone/harddrake2:138
-#, c-format
-msgid "Performances"
-msgstr ""
-
-#: standalone/harddrake2:139
-#, c-format
-msgid "Bugs"
-msgstr "Errors"
-
-#: standalone/harddrake2:140
-#, c-format
-msgid "FPU"
-msgstr "FPU"
-
-#: standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Dispositiu"
-
-#: standalone/harddrake2:148
-#, c-format
-msgid "Partitions"
-msgstr "Particions"
-
-#: standalone/harddrake2:153
-#, c-format
-msgid "Features"
-msgstr "Característiques"
-
-#. -PO: please keep all "/" characters !!!
-#: standalone/harddrake2:176 standalone/logdrake:76
-#: standalone/printerdrake:146 standalone/printerdrake:159
-#: standalone/printerdrake:171
-#, c-format
-msgid "/_Options"
-msgstr "/_Opcions"
-
-#: standalone/harddrake2:177 standalone/harddrake2:202 standalone/logdrake:78
-#: standalone/printerdrake:172 standalone/printerdrake:174
-#: standalone/printerdrake:177 standalone/printerdrake:179
-#, c-format
-msgid "/_Help"
-msgstr "/_Ajuda"
-
-#
-#: standalone/harddrake2:181
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Detecta les im_pressores automàticament"
-
-#
-#: standalone/harddrake2:182
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Detecta els _mòdems automàticament"
-
-#
-#: standalone/harddrake2:183
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Detecta automàticament les unitats _jaz"
-
-#: standalone/harddrake2:184
-#, c-format
-msgid "/Autodetect parallel _zip drives"
-msgstr ""
-
-#: standalone/harddrake2:191 standalone/printerdrake:152
-#, c-format
-msgid "/_Quit"
-msgstr "/_Surt"
-
-#: standalone/harddrake2:204
-#, c-format
-msgid "/_Fields description"
-msgstr "/Descripció de _camps"
-
-#: standalone/harddrake2:206
-#, c-format
-msgid "Harddrake help"
-msgstr "Ajuda del Harddrake"
-
-#: standalone/harddrake2:215
-#, 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 ""
-"Quan hagueu seleccionat un dispositiu podreu veure'n la informació en els "
-"camps del marc dret (\"Informació\")"
-
-#: standalone/harddrake2:221 standalone/printerdrake:177
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Informeu d'un error"
-
-#: standalone/harddrake2:223 standalone/printerdrake:179
-#, c-format
-msgid "/_About..."
-msgstr "/_Quant a..."
-
-#: standalone/harddrake2:224
-#, c-format
-msgid "About Harddrake"
-msgstr "Quant al Harddrake"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/harddrake2:226
-#, c-format
-msgid ""
-"This is HardDrake, a %s hardware configuration tool.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-msgstr ""
-"Aquest és el HardDrake, l'eina de configuració de maquinari de %s.\n"
-"<span foreground=\"royalblue3\">Versió:</span> %s\n"
-"<span foreground=\"royalblue3\">Autor:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-
-#: standalone/harddrake2:242
-#, c-format
-msgid "Harddrake2"
-msgstr "Harddrake2"
-
-#: standalone/harddrake2:272
-#, c-format
-msgid "Detected hardware"
-msgstr "S'ha detectat el següent maquinari"
-
-#: standalone/harddrake2:277
-#, c-format
-msgid "Configure module"
-msgstr "Configura el mòdul"
-
-#: standalone/harddrake2:284
-#, c-format
-msgid "Run config tool"
-msgstr "Executa l'eina de configuració"
-
-#: standalone/harddrake2:308
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
-"Feu clic a un dispositiu de l'arbre de l'esquerra per veure'n aquí la "
-"informació."
-
-#: standalone/harddrake2:329 standalone/printerdrake:306
-#: standalone/printerdrake:320
-#, c-format
-msgid "Unknown"
-msgstr "Desconegut"
-
-#: standalone/harddrake2:349
-#, c-format
-msgid "Misc"
-msgstr "Varis"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "secondary"
-msgstr "secundari"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "primary"
-msgstr "primari"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "burner"
-msgstr "gravador"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "DVD"
-msgstr "DVD"
-
-#: standalone/harddrake2:511
-#, c-format
-msgid ""
-"The following devices needs proprietary drivers or firmwares in order to "
-"operate smoothly. The appropriate packages can be retrieved from the "
-"Mandriva Club. Do you want to subscribe to the Mandriva Club?"
-msgstr ""
-
-#: standalone/keyboarddrake:45
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Voleu que la tecla Enrere efectuï un Suprimeix en la consola?"
-
-#: standalone/localedrake:38
-#, c-format
-msgid "LocaleDrake"
-msgstr "LocaleDrake"
-
-#: standalone/localedrake:44
-#, c-format
-msgid "You should install the following packages: %s"
-msgstr "Hauríeu d'instal·lar els següents paquets: %s"
-
-#. -PO: the following is used to combine packages names. eg: "initscripts, harddrake, yudit"
-#: standalone/localedrake:47 standalone/scannerdrake:135
-#, c-format
-msgid ", "
-msgstr ", "
-
-#: standalone/localedrake:55
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-"El canvi està fet, però perquè sigui efectiu heu de sortir de la sessió "
-"actual"
-
-#: standalone/logdrake:49
-#, c-format
-msgid "Mandriva Linux Tools Logs"
-msgstr ""
-
-#: standalone/logdrake:50
-#, c-format
-msgid "Logdrake"
-msgstr "Logdrake"
-
-#
-#: standalone/logdrake:63
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Mostrar-ho només per al dia seleccionat"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "/File/_New"
-msgstr "/Fitxer/_Nou"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "/File/_Open"
-msgstr "/Fitxer/_Obre"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "/File/_Save"
-msgstr "/Fitxer/De_sa"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
-
-#: standalone/logdrake:73
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Fitxer/_Anomena i desa"
-
-#: standalone/logdrake:74
-#, c-format
-msgid "/File/-"
-msgstr "/Fitxer/-"
-
-#: standalone/logdrake:77
-#, c-format
-msgid "/Options/Test"
-msgstr "/Opcions/Prova"
-
-#: standalone/logdrake:79
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Ajuda/_Quant a.."
-
-#: standalone/logdrake:108
-#, c-format
-msgid ""
-"_:this is the auth.log log file\n"
-"Authentication"
-msgstr "Autenticació"
-
-#: standalone/logdrake:109
-#, c-format
-msgid ""
-"_:this is the user.log log file\n"
-"User"
-msgstr "Usuari"
-
-#: standalone/logdrake:110
-#, c-format
-msgid ""
-"_:this is the /var/log/messages log file\n"
-"Messages"
-msgstr "Missatges"
-
-#: standalone/logdrake:111
-#, c-format
-msgid ""
-"_:this is the /var/log/syslog log file\n"
-"Syslog"
-msgstr ""
-
-#: standalone/logdrake:115
-#, c-format
-msgid "search"
-msgstr "cerca"
-
-#: standalone/logdrake:127
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Eina per veure els registres"
-
-#: standalone/logdrake:128 standalone/net_applet:347 standalone/net_monitor:93
-#, c-format
-msgid "Settings"
-msgstr "Paràmetres"
-
-#: standalone/logdrake:133
-#, c-format
-msgid "Matching"
-msgstr "que coincideixin amb"
-
-#: standalone/logdrake:134
-#, c-format
-msgid "but not matching"
-msgstr "però que no coincideixin amb"
-
-#: standalone/logdrake:138
-#, c-format
-msgid "Choose file"
-msgstr "Escolliu el fitxer"
-
-#: standalone/logdrake:150
-#, c-format
-msgid "Calendar"
-msgstr "Calendari"
-
-#: standalone/logdrake:160
-#, c-format
-msgid "Content of the file"
-msgstr "Contingut del fitxer"
-
-#: standalone/logdrake:164 standalone/logdrake:401
-#, c-format
-msgid "Mail alert"
-msgstr "Alerta de correu"
-
-#: standalone/logdrake:171
-#, c-format
-msgid "The alert wizard has failed unexpectedly:"
-msgstr "L'auxiliar d'alerta ha fallat inesperadament:"
-
-#: standalone/logdrake:224
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "espereu si us plau, s'està analitzant el fitxer: %s"
-
-#: standalone/logdrake:379
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Servidor World Wide Web Apache"
-
-#: standalone/logdrake:380
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Sistema de resolució de nom de domini"
-
-#: standalone/logdrake:381
-#, c-format
-msgid "Ftp Server"
-msgstr "Servidor FTP"
-
-#: standalone/logdrake:382
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Servidor de correu Postfix"
-
-#: standalone/logdrake:383
-#, c-format
-msgid "Samba Server"
-msgstr "Servidor Samba"
-
-#
-#: standalone/logdrake:385
-#, c-format
-msgid "Webmin Service"
-msgstr "Servei Webmin"
-
-#: standalone/logdrake:386
-#, c-format
-msgid "Xinetd Service"
-msgstr "Servei Xinetd"
-
-#
-#: standalone/logdrake:395
-#, c-format
-msgid "Configure the mail alert system"
-msgstr "Configura el sistema d'alerta per correu"
-
-#: standalone/logdrake:396
-#, c-format
-msgid "Stop the mail alert system"
-msgstr "Atura el sistema d'alerta per correu"
-
-#
-#: standalone/logdrake:404
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Configuració de l'alerta de correu"
-
-#: standalone/logdrake:405
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Benvingut a la utilitat de configuració del correu.\n"
-"\n"
-"Aquí podreu configurar el sistema d'alerta.\n"
-
-#
-#: standalone/logdrake:415
-#, c-format
-msgid "Services settings"
-msgstr "Paràmetre dels serveis"
-
-#: standalone/logdrake:416
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr "Rebreu un avís si algun dels serveis seleccionats ja no funciona"
-
-#
-#: standalone/logdrake:423
-#, c-format
-msgid "Load setting"
-msgstr ""
-
-#: standalone/logdrake:424
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Rebreu un avís si la càrrega és més gran que aquest valor"
-
-#: standalone/logdrake:425
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Càrrega"
-
-#
-#: standalone/logdrake:430
-#, c-format
-msgid "Alert configuration"
-msgstr "Configuració de l'avís"
-
-#
-#: standalone/logdrake:431
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Si us plau, entreu la vostra adreça electrònica"
-
-#: standalone/logdrake:432
-#, c-format
-msgid "and enter the name (or the IP) of the SMTP server you wish to use"
-msgstr "i introduïu el nom (o l'adreça IP) del servidor SMTP que voleu usar"
-
-#: standalone/logdrake:451
-#, c-format
-msgid "The wizard successfully configured the mail alert."
-msgstr "L'auxiliar ha configurat l'alerta per correu amb èxit."
-
-#: standalone/logdrake:457
-#, c-format
-msgid "The wizard successfully disabled the mail alert."
-msgstr "L'auxiliar ha desactivat l'alerta per correu amb èxit."
-
-#: standalone/logdrake:516
-#, c-format
-msgid "Save as.."
-msgstr "Anomena i desa..."
-
-#: standalone/mousedrake:31
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Si us plau, seleccioneu el tipus del vostre ratolí."
-
-#: standalone/mousedrake:44
-#, c-format
-msgid "Emulate third button?"
-msgstr "Voleu emular el tercer botó?"
-
-#: standalone/mousedrake:61
-#, c-format
-msgid "Mouse test"
-msgstr "Prova del ratolí"
-
-#: standalone/mousedrake:64
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Si us plau, comproveu el ratolí:"
-
-#: standalone/net_applet:47
-#, c-format
-msgid "Network is up on interface %s"
-msgstr "La xarxa està activa a la interfície %s"
-
-#. -PO: keep the "Configure Network" substring synced with the "Configure Network" message below
-#: standalone/net_applet:50
-#, c-format
-msgid "Network is down on interface %s. Click on \"Configure Network\""
-msgstr ""
-"La xarxa està caiguda a la interfície %s. Premeu a \"Configura la xarxa\""
-
-#: standalone/net_applet:56 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Connect %s"
-msgstr "Connecta %s"
-
-#: standalone/net_applet:57 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Disconnect %s"
-msgstr "Desconnecta %s"
-
-#
-#: standalone/net_applet:58
-#, c-format
-msgid "Monitor Network"
-msgstr "Monitoritza la xarxa"
-
-#: standalone/net_applet:60
-#, c-format
-msgid "Manage wireless networks"
-msgstr ""
-
-#: standalone/net_applet:61
-#, c-format
-msgid "Configure Network"
-msgstr "Configura la xarxa"
-
-#: standalone/net_applet:63
-#, c-format
-msgid "Watched interface"
-msgstr ""
-
-#: standalone/net_applet:93
-#, c-format
-msgid "Profiles"
-msgstr "Perfils"
-
-#: standalone/net_applet:102
-#, c-format
-msgid "Get Online Help"
-msgstr "Obtenir ajuda en línia"
-
-#: standalone/net_applet:335
-#, c-format
-msgid "Interactive Firewall automatic mode"
-msgstr ""
-
-#: standalone/net_applet:340
-#, c-format
-msgid "Always launch on startup"
-msgstr "Executa sempre al inici"
-
-#: standalone/net_applet:344
-#, fuzzy, c-format
-msgid "Wireless networks"
-msgstr "Connexió sense fils"
-
-#: standalone/net_applet:429
-#, c-format
-msgid "Interactive Firewall: intrusion detected"
-msgstr "Tallafocs actiu: intrusió detectada"
-
-#: standalone/net_applet:442
-#, fuzzy, c-format
-msgid "What do you want to do with this attacker?"
-msgstr "Voleu finalitzar el joc?"
-
-#: standalone/net_applet:445
-#, c-format
-msgid "Attack details"
-msgstr "Detalls de l'atac"
-
-#: standalone/net_applet:449
-#, c-format
-msgid "Attack time: %s"
-msgstr ""
-
-#: standalone/net_applet:450
-#, c-format
-msgid "Network interface: %s"
-msgstr "Interfície de la xarxa: %s"
-
-#: standalone/net_applet:451
-#, c-format
-msgid "Attack type: %s"
-msgstr "Tipus d'atac: %s"
-
-#: standalone/net_applet:452
-#, c-format
-msgid "Protocol: %s"
-msgstr "Protocol: %s"
-
-#: standalone/net_applet:453
-#, c-format
-msgid "Attacker IP address: %s"
-msgstr "Adreça IP de l'atacant: %s"
-
-#: standalone/net_applet:454
-#, c-format
-msgid "Attacker hostname: %s"
-msgstr "Nom d'equip de l'atacant: %s"
-
-#: standalone/net_applet:457
-#, c-format
-msgid "Service attacked: %s"
-msgstr "Servei atacat: %s"
-
-#: standalone/net_applet:458
-#, c-format
-msgid "Port attacked: %s"
-msgstr "Port atacat: %s"
-
-#: standalone/net_applet:460
-#, c-format
-msgid "Type of ICMP attack: %s"
-msgstr "Tipus d'atac ICMP: %s"
-
-#: standalone/net_applet:465
-#, c-format
-msgid "Always blacklist (do not ask again)"
-msgstr ""
-
-#: standalone/net_monitor:57 standalone/net_monitor:62
-#, c-format
-msgid "Network Monitoring"
-msgstr "Monitorització de la xarxa"
-
-#: standalone/net_monitor:98
-#, c-format
-msgid "Global statistics"
-msgstr "Estadístiques globals"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Instantaneous"
-msgstr "Instantània"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Average"
-msgstr "Mitjana"
-
-#
-#: standalone/net_monitor:102
-#, c-format
-msgid ""
-"Sending\n"
-"speed:"
-msgstr ""
-"Velocitat\n"
-"d'enviament:"
-
-#: standalone/net_monitor:103
-#, c-format
-msgid ""
-"Receiving\n"
-"speed:"
-msgstr ""
-"Velocitat\n"
-"de recepció:"
-
-#: standalone/net_monitor:107
-#, c-format
-msgid ""
-"Connection\n"
-"time: "
-msgstr ""
-"Temps de\n"
-"connexió: "
-
-#: standalone/net_monitor:114
-#, c-format
-msgid "Use same scale for received and transmitted"
-msgstr "Usa la mateixa escala per enviat i rebut"
-
-#: standalone/net_monitor:133
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Espereu, si us plau, s'està comprovant la vostra connexió..."
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "S'està desconnectant d'Internet "
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Connecting to Internet "
-msgstr "S'està connectant a Internet "
-
-#: standalone/net_monitor:226
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "La desconnexió d'Internet ha fallat."
-
-#: standalone/net_monitor:227
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "S'ha completat la desconnexió d'Internet."
-
-#
-#: standalone/net_monitor:229
-#, c-format
-msgid "Connection complete."
-msgstr "Connexió completa."
-
-#: standalone/net_monitor:230
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandriva Linux Control Center."
-msgstr ""
-"La connexió ha fallat.\n"
-"Comproveu la vostra configuració al Centre de control de Mandriva Linux."
-
-#
-#: standalone/net_monitor:335
-#, c-format
-msgid "Color configuration"
-msgstr "Configuració de color"
-
-#: standalone/net_monitor:383 standalone/net_monitor:403
-#, c-format
-msgid "sent: "
-msgstr "enviats:"
-
-#: standalone/net_monitor:390 standalone/net_monitor:407
-#, c-format
-msgid "received: "
-msgstr "rebut:"
-
-#: standalone/net_monitor:397
-#, c-format
-msgid "average"
-msgstr "mitjana"
-
-#
-#: standalone/net_monitor:400
-#, c-format
-msgid "Local measure"
-msgstr "Mesura local"
+msgid "All servers"
+msgstr "Afegeix un servidor"
-#: standalone/net_monitor:461
+#: timezone.pm:183
#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
+msgid "Global"
msgstr ""
-"Avís: s'ha detectat una altra connexió a Internet, potser utilitzant la "
-"vostra xarxa"
-
-#: standalone/net_monitor:472
-#, c-format
-msgid "No internet connection configured"
-msgstr "No s'ha configurat cap connexió a Internet"
-
-#: standalone/printerdrake:76
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "S'estan llegint dades de les impressores instal·lades..."
-
-#
-#: standalone/printerdrake:128
-#, c-format
-msgid "%s Printer Management Tool"
-msgstr "%s Eina de gestió d'impressores"
-
-#: standalone/printerdrake:142 standalone/printerdrake:143
-#: standalone/printerdrake:144 standalone/printerdrake:145
-#: standalone/printerdrake:153 standalone/printerdrake:154
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Actions"
-msgstr "/_Accions"
-#: standalone/printerdrake:142 standalone/printerdrake:154
+#: timezone.pm:186
#, c-format
-msgid "/_Add Printer"
-msgstr "/_Afegeix impressora"
+msgid "Africa"
+msgstr "Àfrica"
-#: standalone/printerdrake:143
+#: timezone.pm:187
#, c-format
-msgid "/Set as _Default"
-msgstr "/Estableix com a _predeterminada"
+msgid "Asia"
+msgstr "Àsia"
-#: standalone/printerdrake:144
+#: timezone.pm:188
#, c-format
-msgid "/_Edit"
-msgstr "/_Edita"
+msgid "Europe"
+msgstr "Europa"
-#: standalone/printerdrake:145
+#: timezone.pm:189
#, c-format
-msgid "/_Delete"
-msgstr "/_Esborra"
+msgid "North America"
+msgstr "Amèrica del nord"
-#: standalone/printerdrake:146
-#, c-format
-msgid "/_Expert mode"
-msgstr "/Mode _expert"
-
-#: standalone/printerdrake:151
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Refresca"
-
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_Configura CUPS"
-
-#
-#: standalone/printerdrake:171
+#: timezone.pm:190
#, fuzzy, c-format
-msgid "/Configure _Auto Administration"
-msgstr "Administració remota"
-
-#: standalone/printerdrake:194
-#, c-format
-msgid "Search:"
-msgstr "Cerca:"
-
-#: standalone/printerdrake:197
-#, c-format
-msgid "Apply filter"
-msgstr "Aplica el filtre"
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Def."
-msgstr ""
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Printer Name"
-msgstr "Nom de la impressora"
-
-#: standalone/printerdrake:224
-#, c-format
-msgid "Connection Type"
-msgstr "Tipus de connexió"
-
-#: standalone/printerdrake:231
-#, c-format
-msgid "Server Name"
-msgstr "Nom del servidor"
-
-#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add Printer"
-msgstr "Afegeix impressora"
-
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Afegeix una nova impressora al sistema"
-
-#. -PO: "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set as default"
-msgstr "Estableix com a predeterminat"
-
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Estaleix la impressora seleccionada com la predeterminada"
-
-#: standalone/printerdrake:245
-#, c-format
-msgid "Edit selected printer"
-msgstr "Edita la impressora seleccionada"
-
-#
-#: standalone/printerdrake:248
-#, c-format
-msgid "Delete selected printer"
-msgstr "Elimina la impressora seleccionada"
-
-#: standalone/printerdrake:251
-#, c-format
-msgid "Refresh the list"
-msgstr "Actualitza la llista"
-
-#. -PO: "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS"
-msgstr "Configura CUPS"
-
-#
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Configura el sistema d'impressió CUPS"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Enabled"
-msgstr "Habilitat"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Disabled"
-msgstr "Deshabilitat"
-
-#: standalone/printerdrake:596
-#, c-format
-msgid "Authors: "
-msgstr "Autors: "
-
-#
-#. -PO: here %s is the version number
-#: standalone/printerdrake:606
-#, c-format
-msgid "Printer Management %s"
-msgstr "Gestió d'impressores %s"
-
-#: standalone/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 ""
-"Es necessita que els paquets de SANE estiguin instal·lats per usar "
-"escàners.\n"
-"\n"
-"Vols instal·lar els paquets SANE?"
-
-#
-#: standalone/scannerdrake:55
-#, c-format
-msgid "Aborting Scannerdrake."
-msgstr "S'està avortant Scannerdrake."
-
-#: standalone/scannerdrake:60
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-"No s'han pogut instal·lar els paquets necessaris per configurar l'escàner "
-"amb Scannerdrake."
-
-#: standalone/scannerdrake:61
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Scannerdrake no s'iniciarà ara."
-
-#: standalone/scannerdrake:67 standalone/scannerdrake:508
-#, c-format
-msgid "Searching for configured scanners..."
-msgstr "S'estan cercant els escàners configurats..."
-
-#: standalone/scannerdrake:71 standalone/scannerdrake:512
-#, c-format
-msgid "Searching for new scanners..."
-msgstr "S'estan cercant escàners nous..."
-
-#: standalone/scannerdrake:79 standalone/scannerdrake:534
-#, c-format
-msgid "Re-generating list of configured scanners..."
-msgstr "S'està tornant a generar la llista dels escàners configurats..."
-
-#: standalone/scannerdrake:101
-#, c-format
-msgid "The %s is not supported by this version of %s."
-msgstr "El %s no està suportat per aquesta versió de %s."
-
-#: standalone/scannerdrake:104
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "S'ha trobat %s en %s, voleu configurar-lo automàticament?"
-
-#: standalone/scannerdrake:116
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
-"%s no és a la base de dades de l'escàner, voleu configurar-lo manualment?"
-
-#
-#: standalone/scannerdrake:131
-#, c-format
-msgid "Select a scanner model"
-msgstr "Seleccioneu un model d'escàner"
-
-#: standalone/scannerdrake:132
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: standalone/scannerdrake:133
-#, c-format
-msgid "Detected model: %s"
-msgstr "Model detectat: %s"
-
-#: standalone/scannerdrake:136
-#, c-format
-msgid "Port: %s"
-msgstr "Port: %s"
-
-#: standalone/scannerdrake:138 standalone/scannerdrake:141
-#, c-format
-msgid " (UNSUPPORTED)"
-msgstr " (NO SUPORTAT)"
-
-#: standalone/scannerdrake:144
-#, c-format
-msgid "The %s is not supported under Linux."
-msgstr "El %s no està suportat per a Linux."
-
-#: standalone/scannerdrake:171 standalone/scannerdrake:185
-#, c-format
-msgid "Do not install firmware file"
-msgstr "No instal·lis el fitxer de firmware"
-
-#: standalone/scannerdrake:175 standalone/scannerdrake:227
-#, c-format
-msgid ""
-"It is possible that your %s needs its firmware to be uploaded everytime when "
-"it is turned on."
-msgstr ""
-"És possible que el vostre %s necessiti que el firmware s'actualitzi cada cop "
-"que s'encengui."
-
-#: standalone/scannerdrake:176 standalone/scannerdrake:228
-#, c-format
-msgid "If this is the case, you can make this be done automatically."
-msgstr "Si aquest és el cas, podeu fer que es faci automàticament."
-
-#: standalone/scannerdrake:177 standalone/scannerdrake:231
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware file for your scanner so that it "
-"can be installed."
-msgstr ""
-"Per fer-ho, cal que subministreu els fitxers del firmware del vostre "
-"escànner per tal que es pugui instal·lar."
-
-#: standalone/scannerdrake:178 standalone/scannerdrake:232
-#, 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 ""
-"Podeu trobar el fitxer al CD o disquet que ve amb l'escànner o a la pàgina "
-"web del fabricant o a la vostra instal·lació de Windows."
-
-#: standalone/scannerdrake:180 standalone/scannerdrake:239
-#, c-format
-msgid "Install firmware file from"
-msgstr "Instal·la el fitxer de firmware des de"
-
-#: standalone/scannerdrake:200
-#, c-format
-msgid "Select firmware file"
-msgstr "Seleccioneu el fitxer de firmware"
-
-#: standalone/scannerdrake:203 standalone/scannerdrake:262
-#, c-format
-msgid "The firmware file %s does not exist or is unreadable!"
-msgstr "El fitxer de firmware %s no existeix o no és pot llegir!"
-
-#: standalone/scannerdrake:226
-#, c-format
-msgid ""
-"It is possible that your scanners need their firmware to be uploaded "
-"everytime when they are turned on."
-msgstr ""
-"És possible que el vostre escànner necessiti que el firmware s'actualitzi "
-"cada cop que s'encengui."
-
-#: standalone/scannerdrake:230
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware files for your scanners so that it "
-"can be installed."
-msgstr ""
-"Per fer-ho, cal que subministreu els fitxers del firmware del vostre "
-"escànner per tal que es pugui instal·lar."
-
-#: standalone/scannerdrake:233
-#, 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 ""
-
-#: standalone/scannerdrake:235
-#, c-format
-msgid "Install firmware for the"
-msgstr ""
-
-#: standalone/scannerdrake:258
-#, c-format
-msgid "Select firmware file for the %s"
-msgstr "Seleccioneu el fitxer de firmware per %s"
-
-#: standalone/scannerdrake:276
-#, c-format
-msgid "Could not install the firmware file for the %s!"
-msgstr "No s'ha pogut instal·lar el fitxer de firmware per %s!"
-
-#: standalone/scannerdrake:289
-#, c-format
-msgid "The firmware file for your %s was successfully installed."
-msgstr "El fitxer de firmware pel vostre %s s'ha instal·lat correctament."
-
-#: standalone/scannerdrake:299
-#, c-format
-msgid "The %s is unsupported"
-msgstr "No es permet l'ús de %s"
-
-# Com que no se sap si %s serà masc. o fem., ja que es parla del printerdrake s'assumeix que es tracta d'una impressora i per tant poso "la".
-#: standalone/scannerdrake:304
-#, c-format
-msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the %s Control Center in Hardware section."
-msgstr ""
-"La %s s'ha de configurar amb el printerdrake.\n"
-"Podeu executar el printerdrake des del Centre de Control %s en la secció "
-"Maquinari."
-
-#: standalone/scannerdrake:322
-#, c-format
-msgid "Setting up kernel modules..."
-msgstr ""
-
-#
-#: standalone/scannerdrake:332 standalone/scannerdrake:339
-#: standalone/scannerdrake:369
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Detecta automàticament els ports disponibles"
-
-#: standalone/scannerdrake:334 standalone/scannerdrake:380
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Si us plau seleccioneu el dispositiu al qual teniu connectat el %s"
-
-#: standalone/scannerdrake:335
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Nota: els ports paral·lel no es poden detectar automàticament)"
-
-#
-#: standalone/scannerdrake:337 standalone/scannerdrake:382
-#, c-format
-msgid "choose device"
-msgstr "escolliu un dispositiu"
-
-#: standalone/scannerdrake:371
-#, c-format
-msgid "Searching for scanners..."
-msgstr "S'estan cercant els escàners..."
-
-#: standalone/scannerdrake:407 standalone/scannerdrake:414
-#, c-format
-msgid "Attention!"
-msgstr "Atenció !"
-
-#: standalone/scannerdrake:408
-#, 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 ""
-"El vostre %s no es pot configurar completament de forma automàtica.\n"
-"\n"
-"Calen ajustaments manuals. Si us plau editeu el fitxer de configuració /etc/"
-"sane.d/%s.conf. "
-
-#: standalone/scannerdrake:409 standalone/scannerdrake:418
-#, c-format
-msgid ""
-"More info in the driver's manual page. Run the command \"man sane-%s\" to "
-"read it."
-msgstr ""
-
-#: standalone/scannerdrake:411 standalone/scannerdrake:420
-#, c-format
-msgid ""
-"After that you may scan documents using \"XSane\" or \"Kooka\" from "
-"Multimedia/Graphics in the applications menu."
-msgstr ""
-"Ara podeu escanejar documents utilitzant \"XSane\" o \"Kooka\" des de "
-"Multimèdia/Gràfics en el menú d'aplicacions."
-
-#: standalone/scannerdrake:415
-#, c-format
-msgid ""
-"Your %s has been configured, but it is possible that additional manual "
-"adjustments are needed to get it to work. "
-msgstr ""
-"El vostre %s ha estat configurat però pot ser possible que calguin "
-"ajustaments manuals per fer-lo funcionar. "
-
-#: standalone/scannerdrake:416
-#, 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 ""
-
-#: standalone/scannerdrake:417
-#, c-format
-msgid "edit the configuration file /etc/sane.d/%s.conf. "
-msgstr "editar el fitxer de configuració /etc/sane.d/%s.conf. "
-
-#: standalone/scannerdrake:423
-#, 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 ""
-"El vostre %s ha estat configurat.\n"
-"Ara podeu escanejar documents utilitzant \"XSane\" o \"Kooka\" des de "
-"Multimèdia/Gràfics en el menú d'aplicacions."
-
-#: standalone/scannerdrake:448
-#, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr ""
-"Els escàners\n"
-"\n"
-"%s\n"
-"estan disponibles al sistema.\n"
-
-#: standalone/scannerdrake:449
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr ""
-"L'escàner\n"
-"\n"
-"%s\n"
-"està disponible al sistema.\n"
-
-#: standalone/scannerdrake:452 standalone/scannerdrake:455
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr ""
-"No s'ha trobat cap escàner que estigui disponible en el vostre sistema.\n"
-
-#: standalone/scannerdrake:469
-#, c-format
-msgid "Search for new scanners"
-msgstr "Cerca escàners nous"
-
-#: standalone/scannerdrake:475
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Afegiu un escàner manualment"
-
-#: standalone/scannerdrake:482
-#, c-format
-msgid "Install/Update firmware files"
-msgstr "Instal·la/Actualitza fitxers de firmware"
-
-#: standalone/scannerdrake:488
-#, c-format
-msgid "Scanner sharing"
-msgstr "Compartició d'escàners"
-
-#: standalone/scannerdrake:547 standalone/scannerdrake:712
-#, c-format
-msgid "All remote machines"
-msgstr "Totes les màquines remotes"
-
-#: standalone/scannerdrake:559 standalone/scannerdrake:862
-#, c-format
-msgid "This machine"
-msgstr "Aquesta màquina"
-
-#: standalone/scannerdrake:599
-#, 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 ""
-"Aquí podeu decidir si màquines remotes, i quines d'elles, han de poder "
-"accedir als escàners connectats a aquesta màquina."
-
-#: standalone/scannerdrake:600
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"També podeu decidir aquí si aquesta màquina ha de poder accedir als escàners "
-"de màquines remotes."
-
-#: standalone/scannerdrake:603
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr ""
-"Els escàners d'aquesta màquina estan disponibles per a altres ordinadors"
-
-#: standalone/scannerdrake:605
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Compartició d'escàners amb els ordinadors centrals:"
-
-#: standalone/scannerdrake:619
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Utilitza els escàners d'ordinadors remots"
-
-#: standalone/scannerdrake:622
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Utilitza els escàners dels ordinadors centrals:"
-
-#: standalone/scannerdrake:649 standalone/scannerdrake:721
-#: standalone/scannerdrake:871
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Compartició d'escàners locals"
-
-#: standalone/scannerdrake:650
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr ""
-"Aquestes són les màquines en què l'escàner o escàners connectats localment "
-"han d'estar disponibles:"
-
-#: standalone/scannerdrake:661 standalone/scannerdrake:811
-#, c-format
-msgid "Add host"
-msgstr "Afegeix un ordinador"
-
-#: standalone/scannerdrake:667 standalone/scannerdrake:817
-#, c-format
-msgid "Edit selected host"
-msgstr "Edita l'ordinador seleccionat"
-
-#
-#: standalone/scannerdrake:676 standalone/scannerdrake:826
-#, c-format
-msgid "Remove selected host"
-msgstr "Elimina l'ordinador seleccionat"
-
-#: standalone/scannerdrake:700 standalone/scannerdrake:708
-#: standalone/scannerdrake:713 standalone/scannerdrake:759
-#: standalone/scannerdrake:850 standalone/scannerdrake:858
-#: standalone/scannerdrake:863 standalone/scannerdrake:909
-#, c-format
-msgid "Name/IP address of host:"
-msgstr "Nom/Adreça IP de l'ordinador:"
-
-#: standalone/scannerdrake:722 standalone/scannerdrake:872
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr "Escolliu l'ordinador on els escàners locals han d'estar disponibles:"
-
-#
-#: standalone/scannerdrake:733 standalone/scannerdrake:883
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Heu d'introduir un nom d'ordinador o una adreça IP.\n"
-
-#: standalone/scannerdrake:744 standalone/scannerdrake:894
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "Aquest ordinador ja és a la llista, no es pot tornar a afegir.\n"
-
-#: standalone/scannerdrake:799
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Utilització d'escàners remots"
-
-#: standalone/scannerdrake:800
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "Les màquines des de les quals s'han d'utilitzar els escàners son:"
-
-#: standalone/scannerdrake:957
-#, 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 ha d'estar instal·lat per compartir els escàners locals.\n"
-"\n"
-"Vols instal·lar el paquet de saned?"
-
-#: standalone/scannerdrake:961 standalone/scannerdrake:965
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "Els vostre(s) escànner(s) no estaran disponibles a la xarxa."
-
-#: standalone/service_harddrake:113
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "S'han suprimit alguns dispositius en la classe \"%s\" de maquinari:\n"
-
-#: standalone/service_harddrake:114
-#, c-format
-msgid "- %s was removed\n"
-msgstr ""
-
-#: standalone/service_harddrake:117
-#, c-format
-msgid "Some devices were added: %s\n"
-msgstr "S'han afegit alguns dispositius: %s\n"
-
-#: standalone/service_harddrake:118
-#, c-format
-msgid "- %s was added\n"
-msgstr "- s'ha afegit %s\n"
-
-#: standalone/service_harddrake:235
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "Comprovació de maquinari en curs"
-
-#: standalone/service_harddrake_confirm:7
-#, c-format
-msgid "Hardware changes in \"%s\" class (%s seconds to answer)"
-msgstr ""
-
-#: standalone/service_harddrake_confirm:8
-#, c-format
-msgid "Do you want to run the appropriate config tool?"
-msgstr "Voleu executar l'eina de configuració adequada?"
-
-#: steps.pm:14
-#, c-format
-msgid "Language"
-msgstr "Escolliu el vostre idioma"
-
-#: steps.pm:15
-#, c-format
-msgid "License"
-msgstr "Llicència"
-
-#: steps.pm:16
-#, c-format
-msgid "Configure mouse"
-msgstr "Configura el ratolí"
-
-#: steps.pm:17
-#, c-format
-msgid "Hard drive detection"
-msgstr "Detecció del disc dur"
-
-#: steps.pm:18
-#, c-format
-msgid "Select installation class"
-msgstr "Tipus d'instal·lació"
-
-#: steps.pm:19
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Escolliu el vostre teclat"
-
-#: steps.pm:22
-#, c-format
-msgid "Format partitions"
-msgstr "Formata les particions"
-
-#: steps.pm:23
-#, c-format
-msgid "Choose packages to install"
-msgstr "Paquets a instal·lar"
-
-#: steps.pm:24
-#, c-format
-msgid "Install system"
-msgstr "Instal·la el sistema"
-
-#: steps.pm:25
-#, c-format
-msgid "Administrator password"
-msgstr "Contrasenya de l'administrador"
-
-#: steps.pm:26
-#, c-format
-msgid "Add a user"
-msgstr "Afegeix un usuari"
-
-#: steps.pm:27
-#, c-format
-msgid "Configure networking"
-msgstr "Configura la xarxa"
-
-#: steps.pm:28
-#, c-format
-msgid "Install bootloader"
-msgstr "Instal·la el carregador de l'arrencada"
+msgid "Oceania"
+msgstr "Macedònia"
-#: steps.pm:29
+#: timezone.pm:191
#, c-format
-msgid "Configure X"
-msgstr "Configura l'X"
+msgid "South America"
+msgstr "Amèrica del sud"
-#: steps.pm:31
+#: timezone.pm:200
#, c-format
-msgid "Configure services"
-msgstr "Configura els serveis"
+msgid "Hong Kong"
+msgstr "Hong Kong"
-#
-#: steps.pm:32
+#: timezone.pm:237
#, c-format
-msgid "Install updates"
-msgstr "Instal·la les actualitzacions"
+msgid "Russian Federation"
+msgstr "Rússia"
-#: steps.pm:33
+#: timezone.pm:245
#, c-format
-msgid "Exit install"
-msgstr "Surt de la instal·lació"
+msgid "Yugoslavia"
+msgstr "Iugoslàvia"
-#: ugtk2.pm:899
+#: ugtk2.pm:788
#, c-format
msgid "Is this correct?"
msgstr "Això és correcte?"
-#: ugtk2.pm:959
+#: ugtk2.pm:848
#, c-format
msgid "No file chosen"
msgstr "Cap fitxer escollit"
-#: ugtk2.pm:961
+#: ugtk2.pm:850
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Heu escollit un fitxer, no un directori"
-#: ugtk2.pm:963
+#: ugtk2.pm:852
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Heu escollit un directori, no un fitxer"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such directory"
msgstr "No és un directori"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such file"
msgstr "No hi ha fitxer"
-#: ugtk2.pm:1046
+#: ugtk2.pm:933
#, c-format
msgid "Expand Tree"
msgstr "Expandeix l'arbre"
-#: ugtk2.pm:1047
+#: ugtk2.pm:934
#, c-format
msgid "Collapse Tree"
msgstr "Redueix l'arbre"
-#: ugtk2.pm:1048
+#: ugtk2.pm:935
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "Commuta entre pla i ordenat per grups"
@@ -26887,4847 +6792,23 @@ msgstr ""
msgid "Installation failed"
msgstr "La instal·lació ha fallat"
-#~ msgid ""
-#~ "Copyright (C) 2001-2002 by Mandriva \n"
-#~ "\n"
-#~ "\n"
-#~ " DUPONT Sebastien (original version)\n"
-#~ "\n"
-#~ " CHAUMETTE Damien <dchaumette@mandriva.com>\n"
-#~ "\n"
-#~ " VIGNAUD Thierry <tvignaud@mandriva.com>"
-#~ msgstr ""
-#~ "Copyright (C) 2001-2002 per Mandriva \n"
-#~ "\n"
-#~ "\n"
-#~ " DUPONT Sebastien (versió original)\n"
-#~ "\n"
-#~ " CHAUMETTE Damien <dchaumette@mandriva.com>\n"
-#~ "\n"
-#~ " VIGNAUD Thierry <tvignaud@mandriva.com>"
-
-#~ msgid "click here if you are sure."
-#~ msgstr "feu clic aquí si ho teniu clar."
-
-#~ msgid "here if no."
-#~ msgstr "aquí si no."
-
-#
-#~ msgid "Remove List"
-#~ msgstr "Esborra la llista"
-
-#
-#~ msgid "Account:"
-#~ msgstr "Compte:"
-
-#~ msgid "Hostname:"
-#~ msgstr "Nom màquina:"
-
-#, fuzzy
-#~ msgid "Cancel setup"
-#~ msgstr "Cancel·la"
-
-#~ msgid ""
-#~ " - Create Etherboot Enabled Boot Images:\n"
-#~ " \tTo boot a kernel via etherboot, a special kernel/initrd image "
-#~ "must be created.\n"
-#~ " \tmkinitrd-net does much of this work and drakTermServ is just a "
-#~ "graphical \n"
-#~ " \tinterface to help manage/customize these images. To create the "
-#~ "file \n"
-#~ " \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as "
-#~ "an include in \n"
-#~ " \tdhcpd.conf, you should create the etherboot images for at least "
-#~ "one full kernel."
-#~ msgstr ""
-#~ " - Crea imatges d'arrencada habilitades per a l'Etherboot:\n"
-#~ " \tPer arrencar un nucli mitjançant Etherboot cal crear una imatge "
-#~ "kernel/initrd especial.\n"
-#~ " \tL'mkinitrd-net fa molta d'aquesta feina i el drakTermServ és "
-#~ "només una interfície gràfica\n"
-#~ " \tper ajudar a gestionar/personalitzar aquestes imatges. Per "
-#~ "crear el fitxer \n"
-#~ " \t/etc/dhcpd.conf.etherboot-pcimap.include, que s'integra com a "
-#~ "inclusió en \n"
-#~ " \tdhcpd.conf, heu de crear les imatges Etherboot per a un nucli "
-#~ "complet com a mínim."
-
-#~ msgid ""
-#~ " - Maintain /etc/dhcpd.conf:\n"
-#~ " \tTo net boot clients, each client needs a dhcpd.conf entry, "
-#~ "assigning an IP \n"
-#~ " \taddress and net boot images to the machine. drakTermServ helps "
-#~ "create/remove \n"
-#~ " \tthese entries.\n"
-#~ "\t\t\t\n"
-#~ " \t(PCI cards may omit the image - etherboot will request the "
-#~ "correct image. \n"
-#~ "\t\t\tYou should also consider that when etherboot looks for the images, "
-#~ "it expects \n"
-#~ "\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk."
-#~ "nbi).\n"
-#~ "\t\t\t \n"
-#~ " \tA typical dhcpd.conf stanza to support a diskless client looks "
-#~ "like:"
-#~ msgstr ""
-#~ " - Manté /etc/dhcpd.conf:\n"
-#~ " \t\tPer arrencar clients desde la xarxa, cada client necessita "
-#~ "una entrada dhcpd.conf, assignant a la màquina\n"
-#~ " \t\t una adreça IP i imatges d'arrencada de xarxa. El "
-#~ "drakTermServ ajuda a crear/eliminar aquestes entrades.\n"
-#~ "\t\t\t\n"
-#~ " \t\t(Les targetes PCI poden ometre la imatge; l'Etherboot en "
-#~ "demanarà la correcta. Heu de\n"
-#~ " \t\tconsiderar també que, quan l'Etherboot cerca imatges, espera "
-#~ "noms com ara\n"
-#~ " \t\tboot-3c59x.nbi, i no com boot-3c59x.2.4.19-16mdk.nbi).\n"
-#~ "\t\t\t \n"
-#~ " \t\tUna secció dhcpd.conf típica que permeti l'ús d'un client "
-#~ "sense disc té aquest aspecte:"
-
-#~ msgid ""
-#~ " While you can use a pool of IP addresses, rather than setup a "
-#~ "specific entry for\n"
-#~ " a client machine, using a fixed address scheme facilitates using "
-#~ "the functionality\n"
-#~ " of client-specific configuration files that ClusterNFS provides.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#type' entry is only used by drakTermServ. Clients "
-#~ "can either be 'thin'\n"
-#~ " or 'fat'. Thin clients run most software on the server via "
-#~ "XDMCP, while fat clients run \n"
-#~ " most software on the client machine. A special inittab, %s is\n"
-#~ " written for thin clients. System config files xdm-config, kdmrc, "
-#~ "and gdm.conf are \n"
-#~ " modified if thin clients are used, to enable XDMCP. Since there "
-#~ "are security issues in \n"
-#~ " using XDMCP, hosts.deny and hosts.allow are modified to limit "
-#~ "access to the local\n"
-#~ " subnet.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#hdw_config' entry is also only used by drakTermServ. "
-#~ "Clients can either \n"
-#~ " be 'true' or 'false'. 'true' enables root login at the client "
-#~ "machine and allows local \n"
-#~ " hardware configuration of sound, mouse, and X, using the 'drak' "
-#~ "tools. This is enabled \n"
-#~ " by creating separate config files associated with the client's IP "
-#~ "address and creating \n"
-#~ " read/write mount points to allow the client to alter the file. "
-#~ "Once you are satisfied \n"
-#~ " with the configuration, you can remove root login privileges from "
-#~ "the client.\n"
-#~ "\t\t\t\n"
-#~ " Note: You must stop/start the server after adding or changing "
-#~ "clients."
-#~ msgstr ""
-#~ "\t\t\tTot i que podeu utilitzar un conjunt d'adreces IP i no configurar "
-#~ "una entrada específica per a una\n"
-#~ "\t\t\tmàquina client, la utilització d'un esquema d'adreça fixa facilita "
-#~ "la utilització de la funcionalitat\n"
-#~ "\t\t\tdels fitxers de configuració específics del client que proporciona "
-#~ "el ClusterNFS.\n"
-#~ "\t\t\t\n"
-#~ "\t\t\tNota: l'entrada \"#type\" només és utilitzada pel drakTermServ. Els "
-#~ "clients poden ser 'prims'\n"
-#~ "\t\t\t o bé 'grassos'. Els clients prims executen la majoria del "
-#~ "programari en el servidor mitjançant\n"
-#~ "\t\t\t l'xdmcp, mentre que els grassos executen la majoria del programari "
-#~ "en la màquina client. S'ha\n"
-#~ "\t\t\t escrit un inittab especial, %s per a clients prims. Els fitxers "
-#~ "de\n"
-#~ "\t\t\t configuració del sistema xdm-config, kdmrc i gdm.conf es "
-#~ "modifiquen si s'utilitzen clients prims\n"
-#~ "\t\t\t per habilitar l'xdmcp. Atès que la utilització de l'xdmcp té a "
-#~ "veure amb temes de seguretat,\n"
-#~ "\t\t\t hosts.deny i hosts.allow es modifiquen per limitar l'accés a la "
-#~ "subxarxa local.\n"
-#~ "\t\t\t\n"
-#~ "\t\t\tNota: l'entrada \"#hdw_config\" també és utilitzada només pel "
-#~ "drakTermServ. Els clients poden ser\n"
-#~ "\t\t\t'certs' o 'falsos'. 'Cert' habilita l'entrada de root a la màquina "
-#~ "client i permet una configuració local\n"
-#~ "\t\t\tde maquinari de so, ratolí i X, utilitzant les eines ‘drak'. Això "
-#~ "s'habilita creant fitxers de configuració\n"
-#~ "\t\t\tseparats associats amb l'adreça IP del client i creant punts de "
-#~ "muntatge de lectura/escriptura per\n"
-#~ "\t\t\tpermetre que el client modifiqui el fitxer. Quan estigueu satisfet "
-#~ "amb la configuració, podeu eliminar\n"
-#~ "\t\t\tels privilegis d'entrada de root del client.\n"
-#~ "\t\t\t\n"
-#~ "\t\t\tNota: heu d'aturar/iniciar el servidor després d'afegir o canviar "
-#~ "clients."
-
-#~ msgid ""
-#~ " - Maintain /etc/exports:\n"
-#~ " \tClusternfs allows export of the root filesystem to diskless "
-#~ "clients. drakTermServ\n"
-#~ " \tsets up the correct entry to allow anonymous access to the root "
-#~ "filesystem from\n"
-#~ " \tdiskless clients.\n"
-#~ "\n"
-#~ " \tA typical exports entry for clusternfs is:\n"
-#~ " \t\t\n"
-#~ " \t/\t\t\t\t\t(ro,all_squash)\n"
-#~ " \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-#~ "\t\t\t\n"
-#~ " \tWith SUBNET/MASK being defined for your network."
-#~ msgstr ""
-#~ " - Manté /etc/exports:\n"
-#~ " \t\tEl Clusternfs permet l'exportació del sistema de fitxers root "
-#~ "a clients sense disc. El drakTermServ\n"
-#~ " \t\tconfigura l'entrada correcta per permetre un accés anònim al "
-#~ "sistema de fitxers root des de\n"
-#~ " \t\tclients sense disc.\n"
-#~ "\n"
-#~ " \t\tUna entrada d'exportació típica per al clusternfs és:\n"
-#~ " \t\t\n"
-#~ " \t/\t\t\t\t\t(ro,all_squash)\n"
-#~ " \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-#~ "\t\t\t\n"
-#~ "\t\t\tsent SUBNET/MASK definida per la vostra xarxa."
-
-#~ msgid ""
-#~ " - Maintain %s:\n"
-#~ " \tFor users to be able to log into the system from a diskless "
-#~ "client, their entry in\n"
-#~ " \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
-#~ " \thelps in this respect by adding or removing system users from "
-#~ "this file."
-#~ msgstr ""
-#~ " - Manté %s:\n"
-#~ " \t\tPer tal que els usuaris puguin entrar al sistema des d'un "
-#~ "client sense disc, cal que la seva entrada a\n"
-#~ " \t\t/etc/shadow estigui duplicada a %s. El drakTermServ hi ajuda "
-#~ "afegint\n"
-#~ " \t\to eliminant, d'aquest fitxer, usuaris del sistema."
-
-#~ msgid ""
-#~ " - Per client %s:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tdrakTermServ will help create these files."
-#~ msgstr ""
-#~ " - Per client %s:\n"
-#~ " \t\tMitjançant clusternfs, cada client sense disc pot tenir els "
-#~ "seus propis fitxers de configuració únics\n"
-#~ " \t\ten el sistema de fitxers root del servidor. Permetent una "
-#~ "configuració de maquinari de client local, \n"
-#~ " \t\tel drakTermServ ajudarà a crear aquests fitxers."
-
-#~ msgid ""
-#~ " - Per client system configuration files:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tclients can customize files such as /etc/modules.conf, /etc/"
-#~ "sysconfig/mouse, \n"
-#~ " \t/etc/sysconfig/keyboard on a per-client basis.\n"
-#~ "\n"
-#~ " Note: Enabling local client hardware configuration does enable "
-#~ "root login to the terminal \n"
-#~ " server on each client machine that has this feature enabled. "
-#~ "Local configuration can be\n"
-#~ " turned back off, retaining the configuration files, once the "
-#~ "client machine is configured."
-#~ msgstr ""
-#~ " - Sistema de fitxers de configuració per client:\n"
-#~ " \tMitjançant clusternfs, cada client sense disc pot tenir els "
-#~ "seus propis fitxers de configuració únics \n"
-#~ " \t en el sistema de fitxers root del servidor. Permetent una "
-#~ "configuració de maquinari de client local, \n"
-#~ " \tels clients poden personalitzar fitxers com ara /etc/modules."
-#~ "conf, /etc/sysconfig/mouse, \n"
-#~ " \t\t/etc/sysconfig/keyboard segons el client.\n"
-#~ "\n"
-#~ " Nota: l'habilitació de la configuració del maquinari de client "
-#~ "local habilita l'entrada de root al servidor \n"
-#~ " de terminal en cada màquina client que tingui habilitada aquesta "
-#~ "funció. La configuració local es pot tornar\n"
-#~ " a desactivar, mantenint els fitxers de configuració, quan la "
-#~ "màquina client estigui configurada."
-
-#~ msgid ""
-#~ " - /etc/xinetd.d/tftp:\n"
-#~ " \tdrakTermServ will configure this file to work in conjunction "
-#~ "with the images created\n"
-#~ " \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve "
-#~ "up the boot image to \n"
-#~ " \teach diskless client.\n"
-#~ "\n"
-#~ " \tA typical TFTP configuration file looks like:\n"
-#~ " \t\t\n"
-#~ " \tservice tftp\n"
-#~ "\t\t\t{\n"
-#~ " disable = no\n"
-#~ " socket_type = dgram\n"
-#~ " protocol = udp\n"
-#~ " wait = yes\n"
-#~ " user = root\n"
-#~ " server = /usr/sbin/in.tftpd\n"
-#~ " server_args = -s /var/lib/tftpboot\n"
-#~ " \t}\n"
-#~ " \t\t\n"
-#~ " \tThe changes here from the default installation are changing the "
-#~ "disable flag to\n"
-#~ " \t'no' and changing the directory path to /var/lib/tftpboot, "
-#~ "where mkinitrd-net\n"
-#~ " \tputs its images."
-#~ msgstr ""
-#~ " - /etc/xinetd.d/tftp:\n"
-#~ " \t\tEl drakTermServ configurarà aquest fitxer per funcionar "
-#~ "conjuntament amb les imatges creades per\n"
-#~ " \t\tmkinitrd-net, i les entrades de /etc/dhcpd.conf, per servir "
-#~ "la imatge d'arrencada a cada client sense \n"
-#~ " \t\tdisc.\n"
-#~ "\n"
-#~ " \t\tUn fitxer de configuració TFTP típic té aquest aspecte:\n"
-#~ " \t\t\n"
-#~ " \tservice tftp\n"
-#~ "\t\t\t{\n"
-#~ " disable = no\n"
-#~ " socket_type = dgram\n"
-#~ " protocol = udp\n"
-#~ " wait = yes\n"
-#~ " user = root\n"
-#~ " server = /usr/sbin/in.tftpd\n"
-#~ " server_args = -s /var/lib/tftpboot\n"
-#~ " \t}\n"
-#~ " \t\t\n"
-#~ " \t\tLes diferències respecte a la instal·lació per defecte són el "
-#~ "canvi del senyalador de\n"
-#~ " \t\tinhabilitació a 'no' i el canvi de camí de directori a /var/"
-#~ "lib/tftpboot, on mkinitrd-net\n"
-#~ " \t\tposa les seves imatges."
-
-#~ msgid "Configuration changed - restart clusternfs/dhcpd?"
-#~ msgstr "La configuració ha canviat; voleu reiniciar el clúster nfs/dhcpd?"
-
-#~ msgid ""
-#~ "Allow an ordinary user to mount the file system. The\n"
-#~ "name of the mounting user is written to mtab so that he can unmount the "
-#~ "file\n"
-#~ "system again. This option implies the options noexec, nosuid, and nodev\n"
-#~ "(unless overridden by subsequent options, as in the option line\n"
-#~ "user,exec,dev,suid )."
-#~ msgstr ""
-#~ "Permet que un usuari normal munti el sistema de fitxers. El nom de "
-#~ "l'usuari\n"
-#~ "que munta s'escriu a mtab de manera que pugui tornar a desmuntar el\n"
-#~ "sistema de fitxers. Aquesta opció implica les opcions noexec, nosuid i\n"
-#~ "nodev (tret que quedin sobreescrites per opcions subsegüents, com en\n"
-#~ "la línia d'opcions user,exec,dev,suid)."
-
-#~ msgid "Unknown Model"
-#~ msgstr "Model desconegut"
-
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3000/3200/3300/4345 with scanner, DeskJet 450, "
-#~ "Sony IJP-V100), an HP PhotoSmart or an HP LaserJet 2200?"
-#~ msgstr ""
-#~ "La vostra impressora és un dispositiu multifunció d'HP o de Sony "
-#~ "(OfficeJet, PSC, LaserJet 1100/1200/1220/3000/3200/3300/4345 amb escàner, "
-#~ "DeskJet 450, Sony IJP-V100), una HP PhotoSmart or una HP LaserJet 2200?"
-
-#
-#~ msgid "Installing mtools packages..."
-#~ msgstr "S'estan instal·lant els paquets mtools..."
-
-#~ msgid "Photo memory card access on the %s will not be possible."
-#~ msgstr ""
-#~ "L'accés a la targeta de memòria per a fotografies a %s no serà possible"
-
-#~ msgid "Scanning on your HP multi-function device"
-#~ msgstr "S'està explorant el dispositiu HP multifunció"
-
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr ""
-#~ "Accés a la targeta de memòria per a fotografies en el vostre dispositiu "
-#~ "multifunció HP"
-
-#~ msgid "Printing/Scanning/Photo Cards on \"%s\""
-#~ msgstr "S'està imprimint/escanejant/llegint targetes de fotos en \"%s\""
-
-#~ msgid "Printing/Scanning on \"%s\""
-#~ msgstr "S'està imprimint/escanejant en \"%s\""
-
-#~ msgid "Printing/Photo Card Access on \"%s\""
-#~ msgstr "S'està imprimint o llegint una targeta de fotos en \"%s\""
-
-#~ msgid ""
-#~ "Your multi-function device was configured automatically to be able to "
-#~ "scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to "
-#~ "specify the scanner when you have more than one) from the command line or "
-#~ "with the graphical interfaces \"xscanimage\" or \"xsane\". If you are "
-#~ "using the GIMP, you can also scan by choosing the appropriate point in "
-#~ "the \"File\"/\"Acquire\" menu. Call also \"man scanimage\" on the command "
-#~ "line to get more information.\n"
-#~ "\n"
-#~ "You do not need to run \"scannerdrake\" for setting up scanning on this "
-#~ "device, you only need to use \"scannerdrake\" if you want to share the "
-#~ "scanner on the network."
-#~ msgstr ""
-#~ "El vostre dispositiu multifunció ha estat configurat automàticament per "
-#~ "poder escanejar. Ara podeu escanejar amb \"scanimage\" (\"scanimage -d hp:"
-#~ "%s\" per especificar l'escàner si n'hi ha més d'un) des de la línia "
-#~ "d'ordres o amb les interfícies gràfiques \"xscanimage\" o \"xsane\". Si "
-#~ "esteu utilitzant el GIMP, també podeu escanejar escollint el punt "
-#~ "apropiat en el menú \"Fitxer\"/\"Adquireix\". Executeu \"man scanimage\" "
-#~ "a la línia d'ordres per a més informació.\n"
-#~ "\n"
-#~ "No cal que utilitzeu \"scannerdrake\" per configurar aquest dispositiu a "
-#~ "no se que vulgueu compartir-lo per la xarxa."
-
-#~ msgid ""
-#~ "Your printer was configured automatically to give you access to the photo "
-#~ "card drives from your PC. Now you can access your photo cards using the "
-#~ "graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -"
-#~ "> \"MTools File Manager\") or the command line utilities \"mtools"
-#~ "\" (enter \"man mtools\" on the command line for more info). You find the "
-#~ "card's file system under the drive letter \"p:\", or subsequent drive "
-#~ "letters when you have more than one HP printer with photo card drives. In "
-#~ "\"MtoolsFM\" you can switch between drive letters with the field at the "
-#~ "upper-right corners of the file lists."
-#~ msgstr ""
-#~ "La impressora ha estat configurada automàticament per permetre-us l'accés "
-#~ "als dispositius de targetes de fotos del vostre PC. Ara podeu accedir a "
-#~ "les targetes de fotos emprant l'eina gràfica \"MtoolsFM\" (menú "
-#~ "\"Aplicacions\" -> \"Eines d'arxivament\" -> \"Gestor de fitxers MTools"
-#~ "\") o les utilitats de la línia d'ordres \"mtools\" (introduïu \"man "
-#~ "mtools\" a la línia d'ordres per a més informació). Trobareu el sistema "
-#~ "de fitxers de la targeta sota la lletra d'unitat \"p:\", o a les lletres "
-#~ "següents si teniu més d'una impressora HP amb unitats de targetes de "
-#~ "fotos. Al \"MToolsFM\" podeu explorar les diferents lletres d'unitat amb "
-#~ "el camp que es troba a la cantonada superior dreta de les llistes de "
-#~ "fitxers."
-
-#~ msgid "Note that currently all 'net' media also use the hard drive."
-#~ msgstr ""
-#~ "Noteu que ara mateix tots els suports de xarxa també fan servir el disc "
-#~ "dur."
-
-#~ msgid ""
-#~ "Before installing any fonts, be sure that you have the right to use and "
-#~ "install them on your system.\n"
-#~ "\n"
-#~ "-You can install the fonts the normal way. In rare cases, bogus fonts may "
-#~ "hang up your X Server."
-#~ msgstr ""
-#~ "Abans d'instal·lar cap font, assegureu-vos que teniu el dret a usar-les i "
-#~ "instal·lar-les en el vostre sistema.\n"
-#~ "\n"
-#~ "Podeu instal·lar les fonts de la manera habitual. En casos estranys, "
-#~ "fonts amb errors poden penjar el vostre servidor X."
-
-#~ msgid ""
-#~ "\n"
-#~ "Please check all options that you need.\n"
-#~ msgstr ""
-#~ "\n"
-#~ "Si us plau, marqueu totes les opcions que us calguin.\n"
-
-#~ msgid ""
-#~ "These options can backup and restore all files in your /etc directory.\n"
-#~ msgstr ""
-#~ "Aquestes opcions poden fer còpia de seguretat i restaurar tots els "
-#~ "fitxers del directori /etc.\n"
-
-#~ msgid ""
-#~ "With this option you will be able to restore any version\n"
-#~ " of your /etc directory."
-#~ msgstr ""
-#~ "Amb aquesta opció podreu restaurar qualsevol versió\n"
-#~ " del directori /etc."
-
-#~ msgid "http://www.mandrivalinux.com/en/errata.php3"
-#~ msgstr "http://www.mandrivalinux.com/en/errata.php3"
-
-#~ msgid "Please wait, preparing installation..."
-#~ msgstr "Espereu si us plau, s'està preparant la instal·lació..."
-
-#~ msgid "Installing package %s"
-#~ msgstr "S'està instal·lant el paquet %s"
-
-#~ msgid "<b>What is Mandriva Linux?</b>"
-#~ msgstr "<b>Què és Mandriva Linux?</b>"
-
-#~ msgid "Welcome to <b>Mandriva Linux</b>!"
-#~ msgstr "Benvingut al <b>Mandriva Linux</b>!"
-
-#, fuzzy
-#~ msgid ""
-#~ "Mandriva Linux is the most <b>user-friendly</b> Linux distribution today. "
-#~ "It is also one of the <b>most widely used</b> Linux distributions "
-#~ "worldwide!"
-#~ msgstr ""
-#~ "Mandriva Linux és ampliament coneguda com la distribució de Linux més "
-#~ "amigable, fàcil d'instal·lar i usar."
-
-#~ msgid "<b>Open Source</b>"
-#~ msgstr "<b>Open Source</b>"
-
-#~ msgid "Welcome to the <b>world of open source</b>!"
-#~ msgstr "Benvingut al <b>món del Codi Font Obert</b>!"
-
-#, fuzzy
-#~ msgid ""
-#~ "Mandriva Linux is committed to the open source model. This means that "
-#~ "this new release is the result of <b>collaboration</b> between "
-#~ "<b>Mandriva's team of developers</b> and the <b>worldwide community</b> "
-#~ "of Mandriva Linux contributors."
-#~ msgstr ""
-#~ "Mandriva Linux està compromès amb el model de codi font obert i respecta "
-#~ "completament la General Public License. Aquesta nova versió és el "
-#~ "resultat de l'esforç col·laboratiu dels desenvolupadors de Mandriva i els "
-#~ "contribuïdors de Mandriva Linux al voltant del món."
-
-#~ msgid ""
-#~ "We would like to <b>thank</b> everyone who participated in the "
-#~ "development of this latest release."
-#~ msgstr ""
-#~ "Voldríem <b>agrair</b> a tothom que hagi participat en el desenvolupament "
-#~ "d'aquesta versió."
-
-#~ msgid "<b>The GPL</b>"
-#~ msgstr "<b>La GPL</b>"
-
-#~ msgid ""
-#~ "Most of the software included in the distribution and all of the Mandriva "
-#~ "Linux tools are licensed under the <b>General Public License</b>."
-#~ msgstr ""
-#~ "La major part dels programes inclosos en aquesta distribució i totes les "
-#~ "eines de Mandriva Linux estan llicenciades sota la <b>General Public "
-#~ "License</b>."
-
-#~ msgid ""
-#~ "The GPL is at the heart of the open source model; it grants everyone the "
-#~ "<b>freedom</b> to use, study, distribute and improve the software any way "
-#~ "they want, provided they make the results available."
-#~ msgstr ""
-#~ "La GPL és el cor del model de codi font obert, garanteix la <b>llibertat</"
-#~ "b> d'usar, estudiar, distribuir i millorar els programes de qualsevol "
-#~ "forma que es vulgui sempre que aquestes modificacions siguin alhora GPL."
-
-#~ msgid ""
-#~ "The main benefit of this is that the number of developers is virtually "
-#~ "<b>unlimited</b>, resulting in <b>very high quality</b> software."
-#~ msgstr ""
-#~ "El benefici principal d'aquest fet es que el número de desenvolupadors és "
-#~ "virtualment <b>il·limitat</b>, resultant en programes de <b>una qualitat "
-#~ "molt alta</b>."
-
-#~ msgid "<b>Join the Community</b>"
-#~ msgstr "<b>Uniu-vos a la comunitat</b>"
-
-#~ msgid "<b>Download Version</b>"
-#~ msgstr "<b>Versió de descàrrega</b>"
-
-#~ msgid ""
-#~ "\t* <b>Proprietary drivers</b> (such as drivers for NVIDIA®, ATI™, etc.)."
-#~ msgstr ""
-#~ "\t* <b>Controladors propietaris</b> (com controladors per NVIDIA®, ATI™, "
-#~ "etc.)."
-
-#~ msgid ""
-#~ "\t* <b>Proprietary software</b> (such as Acrobat® Reader®, RealPlayer®, "
-#~ "Flash™, etc.)."
-#~ msgstr ""
-#~ "\t* <b>Programari propietari</b> (com Acrobat® Reader®, RealPlayer®, "
-#~ "Flash™, etc.)."
-
-#~ msgid "<b>Discovery, Your First Linux Desktop</b>"
-#~ msgstr "<b>Discovery, El vostre primer escriptori Linux</b>"
-
-#~ msgid "You are now installing <b>Mandriva Linux Discovery</b>."
-#~ msgstr "Esteu instal·lant <b>Mandriva Linux Discovery</b>."
-
-#, fuzzy
-#~ msgid ""
-#~ "Discovery is the <b>easiest</b> and most <b>user-friendly</b> Linux "
-#~ "distribution. It includes a hand-picked selection of <b>premium software</"
-#~ "b> for office, multimedia and Internet activities. Its menu is task-"
-#~ "oriented, with a single application per task."
-#~ msgstr ""
-#~ "Discovery és la distribució de Linux més amigable i fàcil d'usar. Inclou "
-#~ "programari escollit a mà per tasques d'oficina, multimèdia i d'internet."
-
-#~ msgid "You are now installing <b>Mandriva Linux PowerPack</b>."
-#~ msgstr "Esteu instal·lant <b>Mandriva Linux PowerPack</b>."
-
-#~ msgid "<b>PowerPack+, The Linux Solution for Desktops and Servers</b>"
-#~ msgstr "<b>PowerPack+, La solució Linux per escriptoris i servidors</b>"
-
-#~ msgid "You are now installing <b>Mandriva Linux PowerPack+</b>."
-#~ msgstr "Esteu instal·lant <b>Mandriva Linux PowerPack+</b>."
-
-#~ msgid "<b>Mandriva Products</b>"
-#~ msgstr "<b>Productes de Mandriva</b>"
-
-#~ msgid ""
-#~ "<b>Mandriva</b> has developed a wide range of <b>Mandriva Linux</b> "
-#~ "products."
-#~ msgstr ""
-#~ "<b>Mandriva</b> ha desenvolupat una àmplia gama de productes <b>Mandriva "
-#~ "Linux</b>."
-
-#~ msgid "The Mandriva Linux products are:"
-#~ msgstr "Els productes Mandriva Linux són:"
-
-#~ msgid "\t* <b>Discovery</b>, Your First Linux Desktop."
-#~ msgstr "\t* <b>Discovery</b>, El vostre primer escriptori Linux."
-
-#~ msgid "\t* <b>PowerPack+</b>, The Linux Solution for Desktops and Servers."
-#~ msgstr ""
-#~ "\t* <b>PowerPack+</b>, La solució Linux per escriptoris i servidors."
-
-#~ msgid ""
-#~ "\t* <b>Mandriva Linux for x86-64</b>, The Mandriva Linux solution for "
-#~ "making the most of your 64-bit processor."
-#~ msgstr ""
-#~ "\t* <b>Mandriva Linux per x86-64</b>, La solució Mandriva Linux per "
-#~ "obtenir el màxim del vostre processador de 64-bit."
-
-#~ msgid "<b>Mandriva Products (Professional Solutions)</b>"
-#~ msgstr "<b>Productes de Mandriva (Solucions professionals)</b>"
-
-#~ msgid "<b>The KDE Choice</b>"
-#~ msgstr "<b>La tria de KDE</b>"
-
-#~ msgid "<b>Choose your Favorite Desktop Environment</b>"
-#~ msgstr "<b>Escolliu el vostre entorn d'escriptori favorit</b>"
-
-#~ msgid "<b>OpenOffice.org</b>"
-#~ msgstr "<b>OpenOffice.org</b>"
-
-#~ msgid "<b>Kontact</b>"
-#~ msgstr "<b>Kontact</b>"
-
-#, fuzzy
-#~ msgid ""
-#~ "More than just a full-featured <b>e-mail client</b>, Kontact also "
-#~ "includes an <b>address book</b>, a <b>calendar</b>, plus a tool for "
-#~ "taking <b>notes</b>!"
-#~ msgstr ""
-#~ "Més que només un complet client de correu, <b>Kontact</b> també inclou "
-#~ "una llibreta d'adreces, un calendari i un planificador, a més d'una eina "
-#~ "d'agafar notes!"
-
-#~ msgid "<b>Surf the Internet</b>"
-#~ msgstr "<b>Navega per Internet</b>"
-
-#~ msgid "\t* Browse the <b>Web</b> with Konqueror."
-#~ msgstr "\t* Navegar per la <b>xarxa</b> amb Konqueror."
-
-#~ msgid "\t* <b>Transfer</b> files with KBear."
-#~ msgstr "\t* <b>Transferir</b> fitxers amb KBear."
-
-#~ msgid "\t* ..."
-#~ msgstr "\t* ..."
-
-#~ msgid "\t* Edit and create <b>images</b> with the GIMP."
-#~ msgstr "\t* Editar i crear <b>imatges</b> amb El Gimp."
-
-#~ msgid "<b>Enjoy the Wide Range of Applications</b>"
-#~ msgstr "<b>Disfruteu de la àmplia gama d'aplicacions</b>"
-
-#, fuzzy
-#~ msgid ""
-#~ "In the Mandriva Linux menu you will find <b>easy-to-use</b> applications "
-#~ "for <b>all of your tasks</b>:"
-#~ msgstr ""
-#~ "Al menú de Mandriva Linux trobareu aplicacions fàcils d'usar per totes "
-#~ "les tasques:"
-
-#~ msgid ""
-#~ "\t* Create, edit and share office documents with <b>OpenOffice.org</b>."
-#~ msgstr ""
-#~ "\t* Crear, editar i compartir documents d'oficina amb <b>OpenOffice.org</"
-#~ "b>"
-
-#~ msgid "\t* Browse the web with <b>Mozilla</b> and <b>Konqueror</b>."
-#~ msgstr "\t* Navegar per la xarxa amb <b>Mozilla</b> i <b>Konqueror</b>"
-
-#~ msgid "\t* Participate in online chat with <b>Kopete</b>."
-#~ msgstr "\t* Participar en xats en línia amb <b>Kopete</b>"
-
-#, fuzzy
-#~ msgid ""
-#~ "\t* Listen to your <b>audio CDs</b> and <b>music files</b>, watch your "
-#~ "<b>videos</b>."
-#~ msgstr "\t* Escolteu CD d'àudio i fitxers de música amb KsCD i <b>Totem</b>"
-
-#~ msgid "\t* Edit and create images with the <b>GIMP</b>."
-#~ msgstr "\t* Editar imatges i fotos amb <b>El Gimp</b>"
-
-#~ msgid "<b>Development Environments</b>"
-#~ msgstr "<b>Entorns de desenvolupament</b>"
-
-#~ msgid ""
-#~ "PowerPack gives you the best tools to <b>develop</b> your own "
-#~ "applications."
-#~ msgstr ""
-#~ "PowerPack us proporciona les millors eines per <b>desenvolupar</b> les "
-#~ "vostres aplicacions."
-
-#~ msgid "<b>Development Editors</b>"
-#~ msgstr "<b>Editors de desenvolupament</b>"
-
-#~ msgid "PowerPack will let you choose between those <b>popular editors</b>:"
-#~ msgstr ""
-#~ "PowerPack us deixarà escollir entre aquests <b>editors populars</b>:"
-
-#~ msgid ""
-#~ "\t* <b>XEmacs</b>: another open source text editor and application "
-#~ "development system."
-#~ msgstr ""
-#~ "\t* <b>XEmacs</b>: un altre editor de text i sistema de desenvolupament "
-#~ "d'aplicacions de codi font obert"
-
-#~ msgid ""
-#~ "\t* <b>Vim</b>: an advanced text editor with more features than standard "
-#~ "Vi."
-#~ msgstr ""
-#~ "\t* <b>Vim</b>: editor de text avançat amb més característiques que el vi "
-#~ "estàndard"
-
-#~ msgid "<b>Development Languages</b>"
-#~ msgstr "<b>Llenguatges de desenvolupament</b>"
-
-#~ msgid "\t* The famous <b>C language</b>."
-#~ msgstr "\t* El famós <b>llenguatge C</b>."
-
-#~ msgid "\t* Object oriented languages:"
-#~ msgstr "\t* Llenguatges orientats a objectes:"
-
-#~ msgid "\t\t* <b>C++</b>"
-#~ msgstr "\t\t* <b>C++</b>"
-
-#~ msgid "\t\t* <b>Java™</b>"
-#~ msgstr "\t\t* <b>Java™</b>"
-
-#~ msgid "\t\t* <b>Perl</b>"
-#~ msgstr "\t\t* <b>Perl </b>"
-
-#~ msgid "\t\t* <b>Python</b>"
-#~ msgstr "\t\t* <b>Python</b>"
-
-#~ msgid "\t* And many more."
-#~ msgstr "\t* i molts altres."
-
-#~ msgid "<b>Development Tools</b>"
-#~ msgstr "<b>Eines de desenvolupament</b>"
-
-#~ msgid "<b>Groupware Server</b>"
-#~ msgstr "<b>Servidor Groupware</b>"
-
-#~ msgid "\t* Send and receive your <b>e-mails</b>."
-#~ msgstr "\t* Enviar i rebre <b>correus electrònics</b>."
-
-#~ msgid "<b>Servers</b>"
-#~ msgstr "<b>Servidors</b>"
-
-#~ msgid ""
-#~ "\t* <b>Samba</b>: File and print services for Microsoft® Windows® clients."
-#~ msgstr ""
-#~ "\t* <b>Samba</b>: Serveis de fitxers i impressió per a clients MS-Windows"
-
-#~ msgid "\t* <b>Apache</b>: The most widely used web server."
-#~ msgstr "\t* <b>Apache</b>: El servidor Web més usat"
-
-#~ msgid ""
-#~ "\t* <b>MySQL</b> and <b>PostgreSQL</b>: The world's most popular open "
-#~ "source databases."
-#~ msgstr ""
-#~ "\t* <b>MySQL</b> i <b>PostgreSQL</b>: Les bases de dades de Codi Font "
-#~ "Obert més populars del món"
-
-#~ msgid ""
-#~ "\t* <b>CVS</b>: Concurrent Versions System, the dominant open source "
-#~ "network-transparent version control system."
-#~ msgstr ""
-#~ "\t* <b>CVS</b>: Concurrent Versions System, el sistema de control de "
-#~ "versions dominant i transparent a la xarxa de codi font obert"
-
-#~ msgid ""
-#~ "\t* <b>ProFTPD</b>: The highly configurable GPL-licensed FTP server "
-#~ "software."
-#~ msgstr ""
-#~ "\t* <b>ProFTPD</b>: el servidor FTP amb llicència GPL altament "
-#~ "configurable"
-
-#~ msgid ""
-#~ "\t* <b>Postfix</b> and <b>Sendmail</b>: The popular and powerful mail "
-#~ "servers."
-#~ msgstr ""
-#~ "\t* <b>Postfix</b> i <b>Sendmail</b>: Els servidors de correu populars i "
-#~ "potents."
-
-#~ msgid "<b>Mandriva Linux Control Center</b>"
-#~ msgstr "<b>Centre de Control Mandriva Linux</b>"
-
-#~ msgid ""
-#~ "The <b>Mandriva Linux Control Center</b> is an essential collection of "
-#~ "Mandriva Linux-specific utilities designed to simplify the configuration "
-#~ "of your computer."
-#~ msgstr ""
-#~ "El <b>Centre de Control Mandriva Linux</b> és una col·lecció essencial de "
-#~ "utilitats específiques de Mandriva Linux per simplificar la configuració "
-#~ "del vostre ordinador."
-
-#~ msgid "<b>The Open Source Model</b>"
-#~ msgstr "<b>El model del codi font obert</b>"
-
-#~ msgid "<b>Online Store</b>"
-#~ msgstr "<b>Tenda en línia</b>"
-
-#, fuzzy
-#~ msgid ""
-#~ "To learn more about Mandriva products and services, you can visit our "
-#~ "<b>e-commerce platform</b>."
-#~ msgstr ""
-#~ "Conegui tots els productes i serveis de Mandriva a <b>Mandriva Store</b> "
-#~ "-- la nostra plataforma de serveis de comerç electrònic."
-
-#~ msgid "Stop by today at <b>store.mandriva.com</b>!"
-#~ msgstr "Passeu-vos avui per <b>store.mandriva.com</b>"
-
-#~ msgid "<b>Mandriva Club</b>"
-#~ msgstr "<b>Mandriva Club</b>"
-
-#~ msgid ""
-#~ "<b>Mandriva Club</b> is the <b>perfect companion</b> to your Mandriva "
-#~ "Linux product.."
-#~ msgstr ""
-#~ "<b>Mandriva Club</b> és el <b>company perfecte</b> pel vostre producte "
-#~ "Mandriva Linux."
-
-#, fuzzy
-#~ msgid ""
-#~ "\t* <b>Special discounts</b> on products and services of our online store "
-#~ "<b>store.mandriva.com</b>."
-#~ msgstr "\t* Descomptes especials en productes i serveis de Mandriva Store"
-
-#~ msgid ""
-#~ "\t* Access to <b>commercial applications</b> (for example to NVIDIA® or "
-#~ "ATI™ drivers)."
-#~ msgstr ""
-#~ "\t* Accés a <b>aplicacions comercials</b> (per exemple controladors "
-#~ "NVIDIA® o ATI™)."
-
-#~ msgid "\t* Participation in Mandriva Linux <b>user forums</b>."
-#~ msgstr "\t* Participació en els <b>fòrums d'usuaris</b> de Mandriva Linux"
-
-#~ msgid "<b>Mandriva Online</b>"
-#~ msgstr "<b>Mandriva Online</b>"
-
-#~ msgid ""
-#~ "\t* <b>Notification</b> of updates (by e-mail or by an applet on the "
-#~ "desktop)."
-#~ msgstr ""
-#~ "\t* <b>Notificació</b> d'actualitzacions (per correu electrònic o per un "
-#~ "applet a l'escriptori)."
-
-#~ msgid "<b>Mandriva Expert</b>"
-#~ msgstr "<b>Mandriva Expert</b>"
-
-#~ msgid "ESSID"
-#~ msgstr "ESSID"
-
-#~ msgid "Key"
-#~ msgstr "Clau"
-
-#~ msgid "Network:"
-#~ msgstr "Xarxa:"
-
-#~ msgid "IP:"
-#~ msgstr "IP:"
-
-#~ msgid "Mode:"
-#~ msgstr "Mode:"
-
-#~ msgid "Encryption:"
-#~ msgstr "Xifrat::"
-
-#~ msgid "Signal:"
-#~ msgstr "Senyal:"
-
-#~ msgid "Available Networks"
-#~ msgstr "Xarxes disponibles"
-
-#~ msgid "Rescan"
-#~ msgstr "Reescaneja"
-
-#~ msgid "Status"
-#~ msgstr "Estat"
-
-#~ msgid "Disconnect"
-#~ msgstr "Desconnecta"
-
-#~ msgid ""
-#~ "x coordinate of text box\n"
-#~ "in number of characters"
-#~ msgstr ""
-#~ "coordenada x de la caixa de text\n"
-#~ "en nombre de caràcters"
-
-#~ msgid ""
-#~ "y coordinate of text box\n"
-#~ "in number of characters"
-#~ msgstr ""
-#~ "coordenada y de la caixa de text\n"
-#~ "en nombre de caràcters"
-
-#~ msgid "text width"
-#~ msgstr "amplada del text"
-
-#
-#~ msgid "ProgressBar color selection"
-#~ msgstr "Selecció del color de la barra de progrés"
-
-#~ msgid "Connect to the Internet"
-#~ msgstr "Connecta't a Internet"
-
-#~ msgid ""
-#~ "The most common way to connect with adsl is pppoe.\n"
-#~ "Some connections use PPTP, a few use DHCP.\n"
-#~ "If you do not know, choose 'use PPPoE'"
-#~ msgstr ""
-#~ "La manera més habitual de connectar amb ADSL és pppoe.\n"
-#~ "Algunes connexions utilitzen PPTP, unes poques utilitzen DHCP.\n"
-#~ "Si no ho sabeu, escolliu 'utilitza PPPoE'"
-
-#
-#~ msgid "Do not print any test page"
-#~ msgstr "No imprimeixis cap pàgina de prova"
-
-#
-#~ msgid "Printer on SMB/Windows 95/98/NT server"
-#~ msgstr "Impressora en servidor SMB/Windows 95/98/NT"
-
-#~ msgid "Found printer on %s..."
-#~ msgstr "S'ha trobat una impressora a %s..."
-
-#~ msgid "Useless without Terminal Server"
-#~ msgstr "Inútil sense el servidor de terminal"
-
-#~ msgid ""
-#~ "Please select default client type.\n"
-#~ " 'Thin' clients run everything off the server's CPU/RAM, using the "
-#~ "client display.\n"
-#~ " 'Fat' clients use their own CPU/RAM but the server's filesystem."
-#~ msgstr ""
-#~ "Si us plau escolliu el tipus de client per defecte.\n"
-#~ " Els clients prims ho executen tot a la CPU/RAM del servidor, usant la "
-#~ "pantalla del client.\n"
-#~ " Els clients grassos usen la seva CPU/RAM però el sistema de fitxers "
-#~ "del servidor."
-
-#~ msgid "dhcpd Config..."
-#~ msgstr "Configuració del dhcpd..."
-
-#~ msgid ""
-#~ "package 'ImageMagick' is required to be able to complete configuration.\n"
-#~ "Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
-#~ msgstr ""
-#~ "el paquet 'ImageMagick' és necessari per a un correcte funcionament.\n"
-#~ "Feu clic a \"D'acord\" per intal·lar-lo o a \"Cancel·la\" per sortir"
-
-#, fuzzy
-#~ msgid "Unable to select wireless network: %s"
-#~ msgstr "No es pot contactar amb la rèplica: %s"
-
-#~ msgid "Interactive intrusion detection"
-#~ msgstr "Detecció interactiva d'intrusos"
-
-#~ msgid "Active Firewall: intrusion detected"
-#~ msgstr "Tallafoc actiu: intrusió detectada"
-
-#~ msgid "Grub"
-#~ msgstr "Grub"
-
-#~ msgid "Local Network adress"
-#~ msgstr "Adreça de la xarxa local"
-
-#~ msgid "Configuring scripts, installing software, starting servers..."
-#~ msgstr ""
-#~ "S'estan configurant les seqüències, instal·lant el programari, iniciant "
-#~ "els servidors..."
-
-#~ msgid "drakfloppy"
-#~ msgstr "drakfloppy"
-
-#~ msgid "Boot disk creation"
-#~ msgstr "Creació del disc d'arrencada"
-
-#~ msgid "General"
-#~ msgstr "General"
-
-#~ msgid "Kernel version"
-#~ msgstr "Versió del nucli"
-
-#~ msgid "Preferences"
-#~ msgstr "Preferències"
-
-#~ msgid "Advanced preferences"
-#~ msgstr "Opcions avançades"
-
-#~ msgid "Size"
-#~ msgstr "Mida"
-
-#~ msgid "Mkinitrd optional arguments"
-#~ msgstr "Arguments opcionals de l'mkinitrd"
-
-#~ msgid "force"
-#~ msgstr "imposa"
-
-#~ msgid "omit raid modules"
-#~ msgstr "omet els mòduls RAID"
-
-#~ msgid "if needed"
-#~ msgstr "si cal"
-
-#~ msgid "omit scsi modules"
-#~ msgstr "omet els mòduls SCSI"
-
-#~ msgid "Add a module"
-#~ msgstr "Afegeix un mòdul"
-
-#~ msgid "Remove a module"
-#~ msgstr "Elimina un mòdul"
-
-#~ msgid "Be sure a media is present for the device %s"
-#~ msgstr "Assegureu-vos que hi ha un suport al dispositiu %s"
-
-#~ msgid ""
-#~ "There is no medium or it is write-protected for device %s.\n"
-#~ "Please insert one."
-#~ msgstr ""
-#~ "No hi ha cap suport al dispositiu %s o està protegit contra escriptura.\n"
-#~ "Si us plau, inseriu-ne un."
-
-#~ msgid "Unable to fork: %s"
-#~ msgstr "No es pot bifurcar: %s"
-
-#
-#~ msgid "Floppy creation completed"
-#~ msgstr "Creació del disquet completa"
-
-#~ msgid "The creation of the boot floppy has been successfully completed \n"
-#~ msgstr "La creació del disc d'arrencada s'ha completat amb èxit \n"
-
-#~ msgid ""
-#~ "Unable to properly close mkbootdisk:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
-#~ msgstr ""
-#~ "No es pot tancar l'mkbootdisk correctament: \n"
-#~ "\n"
-#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
-
-#~ msgid "use PPPoE"
-#~ msgstr "utilitza PPPoE"
-
-#~ msgid "use PPTP"
-#~ msgstr "utilitza PPTP"
-
-#~ msgid "use DHCP"
-#~ msgstr "utilitza DHCP"
-
-#~ msgid "Alcatel Speedtouch USB"
-#~ msgstr "Alcatel Speedtouch USB"
-
-#~ msgid " - detected"
-#~ msgstr " - s'ha detectat"
-
-#~ msgid "Sagem (using PPPoA) USB"
-#~ msgstr "Sagem USB (utilitzant PPPoA)"
-
-#~ msgid "Sagem (using DHCP) USB"
-#~ msgstr "Sagem USB (utilitzant DHCP)"
-
-#~ msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-#~ msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-
-#~ msgid ""
-#~ "Warning, another Internet connection has been detected, maybe using your "
-#~ "network"
-#~ msgstr ""
-#~ "Avís: s'ha detectat una altra connexió a Internet, podria estar "
-#~ "utilitzant la vostra xarxa"
-
-#
-#~ msgid "PXE Server Configuration"
-#~ msgstr "Configuració del servidor PXE"
-
-#
-#~ msgid "Installation Server Configuration"
-#~ msgstr "Configuració del servidor d'instal·lació"
-
-#~ msgid ""
-#~ "You are about to configure your computer to install a PXE server as a "
-#~ "DHCP server\n"
-#~ "and a TFTP server to build an installation server.\n"
-#~ "With that feature, other computers on your local network will be "
-#~ "installable using this computer as source.\n"
-#~ "\n"
-#~ "Make sure you have configured your Network/Internet access using "
-#~ "drakconnect before going any further.\n"
-#~ "\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN)."
-#~ msgstr ""
-#~ "Ara configurareu l'ordinador per instal·lar un servidor PXE com a "
-#~ "servidor DHCP\n"
-#~ "i un servidor TFTP per construir un servidor d'instal·lació.\n"
-#~ "Amb aquesta característica, altres ordinadors de la vostra xarxa local es "
-#~ "podran instal·lar\n"
-#~ "prenent aquest ordinador com a font.\n"
-#~ "\n"
-#~ "Assegureu-vos d'haver configurat l'accés a xarxes/Internet amb el "
-#~ "drakconnect abans de continuar.\n"
-#~ "\n"
-#~ "Nota: per configurar una xarxa d'àrea local (LAN), us cal un adaptador de "
-#~ "xarxa dedicat."
-
-#~ msgid "No network adapter on your system!"
-#~ msgstr "No teniu cap adaptador de xarxa al sistema!"
-
-#~ msgid "Choose the network interface"
-#~ msgstr "Escolliu la interfície de xarxa"
-
-#~ msgid ""
-#~ "Please choose which network interface will be used for the dhcp server."
-#~ msgstr ""
-#~ "Si us plau, escolliu la interfície de xarxa que s'utilitzarà per al "
-#~ "servidor dhcp."
-
-#~ msgid "Interface %s (on network %s)"
-#~ msgstr "Interfície %s (en la xarxa %s)"
-
-#~ msgid ""
-#~ "The DHCP server will allow other computer to boot using PXE in the given "
-#~ "range of address.\n"
-#~ "\n"
-#~ "The network address is %s using a netmask of %s.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "El servidor DHCP permetrà que altres ordinadors arrenquin utilitzant PXE "
-#~ "en l'interval d'adreces indicat.\n"
-#~ "\n"
-#~ "L'adreça de xarxa és %s utilitzant una màscara de xarxa de %s.\n"
-#~ "\n"
-
-#~ msgid "The DHCP start ip"
-#~ msgstr "La IP inicial del DHCP"
-
-#~ msgid "The DHCP end ip"
-#~ msgstr "IP final del DHCP"
-
-#~ msgid ""
-#~ "Please indicate where the installation image will be available.\n"
-#~ "\n"
-#~ "If you do not have an existing directory, please copy the CD or DVD "
-#~ "contents.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Si us plau, indiqueu on estarà disponible la imatge de la instal·lació.\n"
-#~ "\n"
-#~ "Si no teniu cap directori existent, copieu el contingut del CD o DVD.\n"
-#~ "\n"
-
-#~ msgid "Installation image directory"
-#~ msgstr "Directori de la imatge de la instal·lació"
-
-#
-#~ msgid "No image found"
-#~ msgstr "No s'ha trobat cap imatge"
-
-#~ msgid ""
-#~ "No CD or DVD image found, please copy the installation program and rpm "
-#~ "files."
-#~ msgstr ""
-#~ "No s'ha trobat cap imatge en CD o DVD; si us plau, copieu els programes "
-#~ "d'instal·lació i els fitxers rpm."
-
-#~ msgid ""
-#~ "Please indicate where the auto_install.cfg file is located.\n"
-#~ "\n"
-#~ "Leave it blank if you do not want to set up automatic installation mode.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Si us plau, indiqueu on està ubicat el fitxer auto_install.cfg.\n"
-#~ "\n"
-#~ "Deixeu-ho en blanc si no voleu configurar el mode d'instal·lació "
-#~ "automàtica.\n"
-#~ "\n"
-
-#
-#~ msgid "Location of auto_install.cfg file"
-#~ msgstr "Ubicació del fitxer auto_install.cfg"
-
-#~ msgid "Do it later"
-#~ msgstr "Fes-ho després"
-
-#~ msgid "MdkKDM (Mandriva Linux Display Manager)"
-#~ msgstr "MdkKDM (Mandriva Linux Display Manager)"
-
-#~ msgid "Internet Connection Sharing currently disabled"
-#~ msgstr "La connexió a Internet compartida està inhabilitada"
-
-#~ msgid "Enabling servers..."
-#~ msgstr "S'estan habilitant els servidors..."
-
-#~ msgid "Internet Connection Sharing currently enabled"
-#~ msgstr "La connexió a Internet compartida està habilitada"
-
-#~ msgid "Interface %s (using module %s)"
-#~ msgstr "Interfície %s (utilitzant el mòdul %s)"
-
-#~ msgid "Interface %s"
-#~ msgstr "Interfície %s"
-
-#
-#~ msgid "Network interface already configured"
-#~ msgstr "La intefície de xarxa ja està configurada"
-
-#~ msgid ""
-#~ "Warning, the network adapter (%s) is already configured.\n"
-#~ "\n"
-#~ "Do you want an automatic re-configuration?\n"
-#~ "\n"
-#~ "You can do it manually but you need to know what you're doing."
-#~ msgstr ""
-#~ "Avís: l'adaptador de xarxa (%s) ja està configurat.\n"
-#~ "\n"
-#~ "Voleu fer una reconfiguració automàtica?\n"
-#~ "\n"
-#~ "Ho podeu fer manualment però heu de saber què feu."
-
-#~ msgid "No (experts only)"
-#~ msgstr "No (només experts)"
-
-#
-#~ msgid "Show current interface configuration"
-#~ msgstr "Mostra la configuració actual de la interfície"
-
-#
-#~ msgid "Current interface configuration"
-#~ msgstr "Configuració actual de la interfície"
-
-#~ msgid ""
-#~ "Current configuration of `%s':\n"
-#~ "\n"
-#~ "Network: %s\n"
-#~ "IP address: %s\n"
-#~ "IP attribution: %s\n"
-#~ "Driver: %s"
-#~ msgstr ""
-#~ "Configuració actual de '%s':\n"
-#~ "\n"
-#~ "Xarxa: %s\n"
-#~ "Adreça IP: %s\n"
-#~ "Atribució IP: %s\n"
-#~ "Controlador: %s"
-
-#~ msgid ""
-#~ "I can keep your current configuration and assume you already set up a "
-#~ "DHCP server; in that case please verify I correctly read the Network that "
-#~ "you use for your local network; I will not reconfigure it and I will not "
-#~ "touch your DHCP server configuration.\n"
-#~ "\n"
-#~ "The default DNS entry is the Caching Nameserver configured on the "
-#~ "firewall. You can replace that with your ISP DNS IP, for example.\n"
-#~ "\t\t \n"
-#~ "Otherwise, I can reconfigure your interface and (re)configure a DHCP "
-#~ "server for you.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Podeu conservar la configuració actual i assumir que ja heu definit un "
-#~ "servidor DHCP. En aquest cas, verifiqueu que s'ha llegit correctament la "
-#~ "Xarxa que utilitzeu per a la vostra xarxa local. No es reconfigurarà ni "
-#~ "es modificarà la configuració del servidor DHCP.\n"
-#~ "\n"
-#~ "L'entrada DNS per defecte és el servidor de noms amb memòria cau que s'ha "
-#~ "configurat al tallafoc. Podeu substituir-lo, per exemple, per la IP del "
-#~ "DNS del vostre proveïdor d'accés.\n"
-#~ "\n"
-#~ "Si no, podeu reconfigurar la interfície i (re)configurar un servidor DHCP "
-#~ "per al vostre ús.\n"
-#~ "\n"
-
-#
-#~ msgid "(This) DHCP Server IP"
-#~ msgstr "IP d'aquest servidor DHCP"
-
-#~ msgid "Re-configure interface and DHCP server"
-#~ msgstr "Torna a configurar la interfície i el servidor DHCP"
-
-#~ msgid "The Local Network did not finish with `.0', bailing out."
-#~ msgstr "La xarxa local no finalitza amb '.0', ho deixem córrer."
-
-#, fuzzy
-#~ msgid ""
-#~ "WARNING: this device has been previously configured to connect to the "
-#~ "Internet.\n"
-#~ "Modifying the fields below will override this configuration.\n"
-#~ "Do you really want to reconfigure this device?"
-#~ msgstr ""
-#~ "ATENCIÓ: Aquest dispositiu ja es va configurar per connectar-se a "
-#~ "Internet.\n"
-#~ "Només cal que accepteu per mantenir-lo configurat.\n"
-#~ "Si modifiqueu els camps inferiors, sobreescriureu aquesta configuració."
-
-#~ msgid ""
-#~ " - Create etherboot floppies/CDs:\n"
-#~ " \tThe diskless client machines need either ROM images on the NIC, "
-#~ "or a boot floppy\n"
-#~ " \tor CD to initiate the boot sequence. drakTermServ will help "
-#~ "generate these\n"
-#~ " \timages, based on the NIC in the client machine.\n"
-#~ " \t\t\n"
-#~ " \tA basic example of creating a boot floppy for a 3Com 3c509 "
-#~ "manually:\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/lib/etherboot/floppyload.bin \\\n"
-#~ " \t\t/usr/share/etherboot/start16.bin \\\t\t\t\n"
-#~ " \t\t/usr/lib/etherboot/zimg/3c509.zimg > /dev/fd0"
-#~ msgstr ""
-#~ " - Crea disquets/CD Etherboot:\n"
-#~ " \tLes màquines client sense disc necessiten imatge ROM a la "
-#~ "tarjeta de xarxa, o bé un disquet o CD\n"
-#~ " \td'arrencada per iniciar la seqüència d'arrencada. El "
-#~ "drakTermServ ajudarà a generar\n"
-#~ " \taquestes imatges, basades en la targeta de xarxa de la màquina "
-#~ "client.\n"
-#~ " \t\t\n"
-#~ " \tUn exemple senzill de la creació manual d'un disquet "
-#~ "d'arrencada des d'un 3Com 3c509:\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/lib/etherboot/floppyload.bin \\\n"
-#~ " \t\t/usr/share/etherboot/start16.bin \\\t\t\t\n"
-#~ " \t\t/usr/lib/etherboot/zimg/3c509.zimg > /dev/fd0"
-
-#~ msgid "Dynamic IP Address Pool:"
-#~ msgstr "Conjunt d'adreces IP dinàmiques:"
-
-#~ msgid "hd"
-#~ msgstr "hd"
-
-#~ msgid "tape"
-#~ msgstr "cinta"
-
-#~ msgid "WebDAV remote site already in sync!"
-#~ msgstr "El lloc remot WebDAV ja està sincronitzat!"
-
-#~ msgid "WebDAV transfer failed!"
-#~ msgstr "La transferència WebDAV ha fallat!"
-
-#~ msgid ""
-#~ "Maximum size\n"
-#~ " allowed for Drakbackup (MB)"
-#~ msgstr ""
-#~ "Mida màxima\n"
-#~ " permesa per a Drakbackup (MB)"
-
-#~ msgid "\t-Network by webdav.\n"
-#~ msgstr "\t-Xarxa per webdav.\n"
-
-#~ msgid "first step creation"
-#~ msgstr "creació del primer pas"
-
-#
-#~ msgid "choose image file"
-#~ msgstr "trieu un fitxer d'imatge"
-
-#~ msgid "Configure bootsplash picture"
-#~ msgstr "Configura la imatge de presentació de l'arrencada"
-
-#~ msgid "the color of the progress bar"
-#~ msgstr "el color de la barra de progrés"
-
-#~ msgid "Preview"
-#~ msgstr "Vista prèvia"
-
-#~ msgid "Choose color"
-#~ msgstr "Escolliu un color"
-
-#~ msgid "Make kernel message quiet by default"
-#~ msgstr "Fes que, per defecte, no apareguin els missatges del nucli"
-
-#~ msgid "Notice"
-#~ msgstr "Avís"
-
-#~ msgid "This theme does not yet have a bootsplash in %s!"
-#~ msgstr ""
-#~ "Aquest tema encara no té cap pantalla de presentació de l'arrencada en %s!"
-
-#
-#~ msgid "You must choose an image file first!"
-#~ msgstr "Abans heu de triar un fitxer d'imatge!"
-
-#
-#~ msgid "Generating preview..."
-#~ msgstr "S'està generant la vista prèvia..."
-
-#~ msgid "%s BootSplash (%s) preview"
-#~ msgstr "Vista prèvia del BootSplash %s (%s)"
-
-#~ msgid "No floppy drive available"
-#~ msgstr "No hi ha cap unitat de disquet disponible"
-
-#~ msgid "Please insert the Update Modules floppy in drive %s"
-#~ msgstr "Inseriu el disquet d'Actualització de Mòduls a la unitat %s"
-
-#~ msgid "No network card"
-#~ msgstr "No s'ha trobat cap targeta de xarxa"
-
-#, fuzzy
-#~ msgid "Use already installed driver (%s)"
-#~ msgstr "La identitat ssh ja està instal·lada"
-
-#~ msgid "You've not selected any font"
-#~ msgstr "No heu seleccionat cap tipus de lletra"
-
-#~ msgid "No browser available! Please install one"
-#~ msgstr "No hi ha cap navegador disponible! Si us plau, instal·leu-ne un"
-
-#~ msgid ""
-#~ "No browser is installed on your system, Please install one if you want to "
-#~ "browse the help system"
-#~ msgstr ""
-#~ "No teniu cap navegador instal·lat al sistema. Si us plau, instal·leu-ne "
-#~ "un si voleu navegar pel sistema d'ajuda"
-
-#
-#, fuzzy
-#~ msgid "Get YP server from DHCP"
-#~ msgstr "IP del Servidor DNS"
-
-#
-#, fuzzy
-#~ msgid "Get NTPD server from DHCP"
-#~ msgstr "IP del Servidor DNS"
-
-#, fuzzy
-#~ msgid "Upload the system configuration"
-#~ msgstr "Actualitza la configuració del menú"
-
-#, fuzzy
-#~ msgid "Active Firewall : intrusion detected"
-#~ msgstr "S'ha detectat la configuració del tallafoc!"
-
-#, fuzzy
-#~ msgid "Do you want to blacklist the attacker ?"
-#~ msgstr "Voleu finalitzar el joc?"
-
-#~ msgid ""
-#~ "Insert a floppy in drive\n"
-#~ "All data on this floppy will be lost"
-#~ msgstr ""
-#~ "Inseriu un disquet a la unitat\n"
-#~ "Se'n perdran totes les dades"
-
-#~ msgid "Insert a FAT formatted floppy in drive %s"
-#~ msgstr "Inseriu un disquet formatat amb FAT a la unitat %s"
-
-#~ msgid "This floppy is not FAT formatted"
-#~ msgstr "Aquest disquet no està formatat amb FAT"
-
-#~ msgid ""
-#~ "To use this saved packages selection, boot installation with ``linux "
-#~ "defcfg=floppy''"
-#~ msgstr ""
-#~ "Per utilitzar aquesta selecció de paquets que heu desat, arrenqueu la "
-#~ "instal·lació amb \"linux defcfg=floppy\""
-
-#
-#~ msgid "Load/Save on floppy"
-#~ msgstr "Carrega/Desa al disquet"
-
-#~ msgid ""
-#~ "Please choose load or save package selection on floppy.\n"
-#~ "The format is the same as auto_install generated floppies."
-#~ msgstr ""
-#~ "Si us plau, carregueu o deseu la selecció de paquets en el disquet.\n"
-#~ "El format és el mateix que en els disquets generats d'instal·lació "
-#~ "automàtica."
-
-#
-#~ msgid "Load from floppy"
-#~ msgstr "Carrega des del disquet"
-
-#~ msgid "Save on floppy"
-#~ msgstr "Desa al disquet"
-
-#
-#~ msgid "Package selection"
-#~ msgstr "Selecció de paquets"
-
-#
-#~ msgid "Loading from floppy"
-#~ msgstr "S'està carregant des del disquet"
-
-#
-#~ msgid "Insert a floppy containing package selection"
-#~ msgstr "Inseriu un disquet amb la selecció de paquets"
-
-#~ msgid "multi-function device on parallel port #%s"
-#~ msgstr "dispositiu multifunció en port paral·lel #%s"
-
-#~ msgid "multi-function device on a parallel port"
-#~ msgstr "dispositiu multifunció en un port paral·lel"
-
-#~ msgid "multi-function device on USB"
-#~ msgstr "dispositiu multifunció en USB"
-
-#~ msgid "multi-function device on HP JetDirect"
-#~ msgstr "dispositiu multifunció en HP JetDirect"
-
-#~ msgid "multi-function device"
-#~ msgstr "dispositiu multifunció"
-
-#~ msgid "printing to %s"
-#~ msgstr "imprimint a %s"
-
-#~ msgid "using command %s"
-#~ msgstr "utilitzant l'ordre %s"
-
-#~ msgid "Application:"
-#~ msgstr "Aplicació:"
-
-#~ msgid "Release: "
-#~ msgstr "Llançament: "
-
-#~ msgid "Summary: "
-#~ msgstr "Resum: "
+#~ msgid "Icon"
+#~ msgstr "Icona"
-#~ msgid "Bug Description/System Information"
-#~ msgstr "Descripció de l'error/Informació del sistema"
+#~ msgid "Number of capture buffers:"
+#~ msgstr "Nombre de memòries intermèdies de captura:"
-#~ msgid "YOUR TEXT HERE"
-#~ msgstr "EL TEU TEXT AQUÍ"
+#~ msgid "number of capture buffers for mmap'ed capture"
+#~ msgstr "nombre de memòries intermèdies per a captures amb MMAP"
-#~ msgid "Submit kernel version"
-#~ msgstr "Envia la versió del nucli"
+#~ msgid "PLL setting:"
+#~ msgstr "Configuració del PLL:"
-#~ msgid "Submit cpuinfo"
-#~ msgstr "Envia cpuinfo"
+#~ msgid "Radio support:"
+#~ msgstr "Permet l'ús de la ràdio:"
-#~ msgid "Submit lspci"
-#~ msgstr "Envia lspci"
+#~ msgid "enable radio support"
+#~ msgstr "habilita l'ús de la ràdio"
-#~ msgid "NOT FOUND"
-#~ msgstr "NO S'HA TROBAT"
-
-#~ msgid "connecting to %s..."
-#~ msgstr "s'està connectant a %s ..."
-
-#~ msgid "Please enter a package name."
-#~ msgstr "Si us plau, introduïu un nom de paquet"
-
-#
-#~ msgid "Please enter summary text."
-#~ msgstr "Si us plau, introduïu el resum."
-
-#
-#~ msgid "Loading printer configuration... Please wait"
-#~ msgstr ""
-#~ "S'està carregant la configuració de la impressora... Si us plau, espereu"
-
-#, fuzzy
-#~ msgid "%s (was %s)"
-#~ msgstr "%s (Port %s)"
-
-#~ msgid "Root password"
-#~ msgstr "Contrasenya de root"
-
-#~ msgid "Do you want to recover your system?"
-#~ msgstr "Voleu recuperar el vostre sistema?"
-
-#~ msgid "Move"
-#~ msgstr "Mou"
-
-#~ msgid "Which disk do you want to move it to?"
-#~ msgstr "A quin disc ho voleu moure?"
-
-#~ msgid "Sector"
-#~ msgstr "Sector"
-
-#~ msgid "Which sector do you want to move it to?"
-#~ msgstr "A quin sector ho voleu moure?"
-
-#~ msgid "Moving"
-#~ msgstr "S'està movent"
-
-#~ msgid "Moving partition..."
-#~ msgstr "S'està movent la partició..."
-
-#~ msgid "Error opening %s for writing: %s"
-#~ msgstr "S'ha produït un error en obrir %s per escriure: %s"
-
-#~ msgid ""
-#~ "This is HardDrake, a Mandriva Linux hardware configuration tool.\n"
-#~ "<span foreground=\"royalblue3\">Version:</span> %s\n"
-#~ "<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-#~ "tvignaud@mandriva.com&gt;\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Aquest és el HardDrake, l'eina de configuració de maquinari de Mandriva "
-#~ "Linux.\n"
-#~ "<span foreground=\"royalblue3\">Versió:</span> %s\n"
-#~ "<span foreground=\"royalblue3\">Autor:</span> Thierry Vignaud &lt;"
-#~ "tvignaud@mandriva.com&gt;\n"
-#~ "\n"
-
-#, fuzzy
-#~ msgid "Morrocco"
-#~ msgstr "Marroc"
-
-#, fuzzy
-#~ msgid "Server Information:"
-#~ msgstr "Informació"
-
-#
-#, fuzzy
-#~ msgid "Use SSL connection"
-#~ msgstr "Connexió ADSL"
-
-#, fuzzy
-#~ msgid "User Base:"
-#~ msgstr "Nom d'usuari"
-
-#, fuzzy
-#~ msgid "Base:"
-#~ msgstr "Nom:"
-
-#
-#, fuzzy
-#~ msgid "Scope:"
-#~ msgstr "Atura"
-
-#, fuzzy
-#~ msgid "Bind Server:"
-#~ msgstr "Servidor:"
-
-#, fuzzy
-#~ msgid "Users database"
-#~ msgstr "Base de dades LDAP"
-
-#~ msgid "OK"
-#~ msgstr "D'acord"
-
-#~ msgid "NO"
-#~ msgstr "NO"
-
-#~ msgid "YES"
-#~ msgstr "SÍ"
-
-#~ msgid ""
-#~ "The following options can be set to customize your\n"
-#~ "system security. If you need an explanation, look at the help tooltip.\n"
-#~ msgstr ""
-#~ "Les opcions següents es poden establir per personalitzar la seguretat\n"
-#~ "del vostre sistema. Si necessiteu una explicació, mireu el rètol "
-#~ "d'ajuda.\n"
-
-#~ msgid "The %s is not known by this version of Scannerdrake."
-#~ msgstr "Aquesta versió de l'Scannerdrake no coneix el %s."
-
-#~ msgid "Czech (QWERTZ)"
-#~ msgstr "Txec (QWERTZ)"
-
-#~ msgid "German"
-#~ msgstr "Alemany"
-
-#~ msgid "Dvorak"
-#~ msgstr "Dvorak"
-
-#~ msgid "Spanish"
-#~ msgstr "Espanyol"
-
-#~ msgid "Finnish"
-#~ msgstr "Finès"
-
-#~ msgid "French"
-#~ msgstr "Francès"
-
-#~ msgid "Norwegian"
-#~ msgstr "Noruec"
-
-#~ msgid "Polish"
-#~ msgstr "Polonès"
-
-#~ msgid "Russian"
-#~ msgstr "Rus"
-
-#~ msgid "Swedish"
-#~ msgstr "Suec"
-
-#~ msgid "Albanian"
-#~ msgstr "Albanès"
-
-#~ msgid "Armenian (old)"
-#~ msgstr "Armeni (antic)"
-
-#~ msgid "Armenian (typewriter)"
-#~ msgstr "Armeni (màquina d'escriure)"
-
-#~ msgid "Armenian (phonetic)"
-#~ msgstr "Armeni (fonètic)"
-
-#~ msgid "Arabic"
-#~ msgstr "Àrab"
-
-#~ msgid "Azerbaidjani (latin)"
-#~ msgstr "Azerbaidjanès (llatí)"
-
-#~ msgid "Belgian"
-#~ msgstr "Belga"
-
-#~ msgid "Bengali"
-#~ msgstr "Bengalí"
-
-#~ msgid "Bulgarian (phonetic)"
-#~ msgstr "Búlgar (fonètic)"
-
-#~ msgid "Bulgarian (BDS)"
-#~ msgstr "Búlgar (BDS)"
-
-#~ msgid "Brazilian (ABNT-2)"
-#~ msgstr "Brasiler (ABNT-2)"
-
-#~ msgid "Bosnian"
-#~ msgstr "Bosnià"
-
-#~ msgid "Belarusian"
-#~ msgstr "Bielorrús"
-
-#~ msgid "Swiss (German layout)"
-#~ msgstr "Suís (disposició alemanya)"
-
-#~ msgid "Swiss (French layout)"
-#~ msgstr "Suís (disposició francesa)"
-
-#~ msgid "Czech (QWERTY)"
-#~ msgstr "Txec (QWERTY)"
-
-#~ msgid "German (no dead keys)"
-#~ msgstr "Alemany (sense tecles inoperatives)"
-
-#~ msgid "Devanagari"
-#~ msgstr "Devanagari"
-
-#~ msgid "Danish"
-#~ msgstr "Danès"
-
-#~ msgid "Dvorak (US)"
-#~ msgstr "Dvorak (Estats Units)"
-
-#~ msgid "Dvorak (Esperanto)"
-#~ msgstr "Dvorak (Esperanto)"
-
-#~ msgid "Dvorak (Norwegian)"
-#~ msgstr "Dvorak (Noruec)"
-
-#~ msgid "Dvorak (Swedish)"
-#~ msgstr "Dvorak (Suec)"
-
-#~ msgid "Estonian"
-#~ msgstr "Estonià"
-
-#~ msgid "Georgian (\"Russian\" layout)"
-#~ msgstr "Georgià (disposició \"russa\")"
-
-#~ msgid "Georgian (\"Latin\" layout)"
-#~ msgstr "Georgià (disposició \"llatina\")"
-
-#~ msgid "Greek"
-#~ msgstr "Grec"
-
-#~ msgid "Greek (polytonic)"
-#~ msgstr "Grec (politònic)"
-
-#~ msgid "Gujarati"
-#~ msgstr "Gujarati"
-
-#~ msgid "Gurmukhi"
-#~ msgstr "Gurmukhi"
-
-#~ msgid "Hungarian"
-#~ msgstr "Hongarès"
-
-#~ msgid "Croatian"
-#~ msgstr "Croata"
-
-#~ msgid "Irish"
-#~ msgstr "Irlandès"
-
-#~ msgid "Israeli"
-#~ msgstr "Israelià"
-
-#~ msgid "Israeli (Phonetic)"
-#~ msgstr "Israelià (fonètic)"
-
-#~ msgid "Iranian"
-#~ msgstr "Iranià"
-
-#~ msgid "Icelandic"
-#~ msgstr "Islandès"
-
-#~ msgid "Italian"
-#~ msgstr "Italià"
-
-#~ msgid "Inuktitut"
-#~ msgstr "Inuktitut"
-
-#~ msgid "Japanese 106 keys"
-#~ msgstr "Japonès de 106 tecles"
-
-#~ msgid "Kannada"
-#~ msgstr "Kannada"
-
-#~ msgid "Korean keyboard"
-#~ msgstr "Teclat coreà"
-
-#~ msgid "Latin American"
-#~ msgstr "Espanyol sud-americà"
-
-#~ msgid "Laotian"
-#~ msgstr "Laosià"
-
-#~ msgid "Lithuanian AZERTY (old)"
-#~ msgstr "Lituà AZERTY (antic)"
-
-#~ msgid "Lithuanian AZERTY (new)"
-#~ msgstr "Lituà AZERTY (nou)"
-
-#~ msgid "Lithuanian \"number row\" QWERTY"
-#~ msgstr "Lituà \"fila de números\" QWERTY"
-
-#~ msgid "Lithuanian \"phonetic\" QWERTY"
-#~ msgstr "Lituà \"fonètic\" QWERTY"
-
-#~ msgid "Latvian"
-#~ msgstr "Letó"
-
-#~ msgid "Malayalam"
-#~ msgstr "Malaialam"
-
-#~ msgid "Macedonian"
-#~ msgstr "Macedoni"
-
-#~ msgid "Myanmar (Burmese)"
-#~ msgstr "Myanmar (Burmese)"
-
-#~ msgid "Mongolian (cyrillic)"
-#~ msgstr "Mongol (ciríl·lic)"
-
-#~ msgid "Maltese (UK)"
-#~ msgstr "Maltès (Regne Unit)"
-
-#~ msgid "Maltese (US)"
-#~ msgstr "Maltès (Estats Units)"
-
-#~ msgid "Dutch"
-#~ msgstr "Holandès"
-
-#~ msgid "Oriya"
-#~ msgstr "Oriya"
-
-#~ msgid "Polish (qwerty layout)"
-#~ msgstr "Polonès (disposició qwerty)"
-
-#~ msgid "Polish (qwertz layout)"
-#~ msgstr "Polonès (disposició qwertz)"
-
-#~ msgid "Portuguese"
-#~ msgstr "Portuguès"
-
-#~ msgid "Canadian (Quebec)"
-#~ msgstr "Canadenc (Quebec)"
-
-#~ msgid "Romanian (qwertz)"
-#~ msgstr "Romanès (qwertz)"
-
-#~ msgid "Romanian (qwerty)"
-#~ msgstr "Romanès (qwerty)"
-
-#~ msgid "Russian (Phonetic)"
-#~ msgstr "Rus (fonètic)"
-
-#~ msgid "Saami (norwegian)"
-#~ msgstr "Saami (Noruec)"
-
-#~ msgid "Saami (swedish/finnish)"
-#~ msgstr "Saami (suec/finès)"
-
-#~ msgid "Slovenian"
-#~ msgstr "Eslovè"
-
-#~ msgid "Slovakian (QWERTZ)"
-#~ msgstr "Eslovac (QWERTZ)"
-
-#~ msgid "Slovakian (QWERTY)"
-#~ msgstr "Eslovac (QWERTY)"
-
-#~ msgid "Serbian (cyrillic)"
-#~ msgstr "Serbi (ciríl·lic)"
-
-#~ msgid "Syriac"
-#~ msgstr "Siri"
-
-#~ msgid "Syriac (phonetic)"
-#~ msgstr "Siri (fonètic)"
-
-#~ msgid "Telugu"
-#~ msgstr "Telugu"
-
-#~ msgid "Tamil (ISCII-layout)"
-#~ msgstr "Tàmil (disposició ISCII)"
-
-#~ msgid "Tamil (Typewriter-layout)"
-#~ msgstr "Tàmil (disposició de màquina d'escriure)"
-
-#~ msgid "Thai keyboard"
-#~ msgstr "Teclat tai"
-
-#~ msgid "Tajik keyboard"
-#~ msgstr "Teclat tadjik"
-
-#~ msgid "Turkish (traditional \"F\" model)"
-#~ msgstr "Turc (tradicional, model \"F\")"
-
-#~ msgid "Turkish (modern \"Q\" model)"
-#~ msgstr "Turc (modern, model \"Q\")"
-
-#~ msgid "Ukrainian"
-#~ msgstr "Ucraïnès"
-
-#~ msgid "Uzbek (cyrillic)"
-#~ msgstr "Uzbek (ciríl·lic)"
-
-#~ msgid "Vietnamese \"numeric row\" QWERTY"
-#~ msgstr "Vietnamita \"fila numèrica\" QWERTY"
-
-#~ msgid "Yugoslavian (latin)"
-#~ msgstr "Iugoslau (llatí)"
-
-#
-#~ msgid "No devices found"
-#~ msgstr "No s'ha trobat cap dispositiu"
-
-#~ msgid "Could not install necessary packages, %s cannot be started!"
-#~ msgstr ""
-#~ "No s'han pogut instal·lar els paquets necessaris, no es pot iniciar %s!"
-
-#~ msgid ""
-#~ "You do not have any configured Internet connection.\n"
-#~ "Please run \"Internet access\" in control center."
-#~ msgstr ""
-#~ "No teniu cap connexió a Internet configurada.\n"
-#~ "Si us plau executeu \"Accés a internet\" al centre de control"
-
-#~ msgid ""
-#~ "Welcome to the UPS configuration utility.\n"
-#~ "\n"
-#~ "Here, you'll be add a new UPS to your system.\n"
-#~ msgstr ""
-#~ "Benvingut a la utilitat de configuració de SAI.\n"
-#~ "\n"
-#~ "Aquí podreu afegir un nou SAI al vostre sistema.\n"
-
-#~ msgid "Enable multiple profiles"
-#~ msgstr "Habilita perfils múltiples"
-
-#~ msgid ""
-#~ "You now have the opportunity to download updated packages. These "
-#~ "packages\n"
-#~ "have been updated after the distribution was released. They may\n"
-#~ "contain security or bug fixes.\n"
-#~ "\n"
-#~ "To download these packages, you will need to have a working Internet \n"
-#~ "connection.\n"
-#~ "\n"
-#~ "Do you want to install the updates ?"
-#~ msgstr ""
-#~ "Ara teniu l'oportunitat de baixar paquets actualitzats. Aquests paquets\n"
-#~ "han estat actualitzats després de la publicació de la distribució. Poden "
-#~ "contenir\n"
-#~ "actualitzacions de seguretat o correccions d'errors.\n"
-#~ "\n"
-#~ "Per baixar aquests paquets necessitareu tenir una connexió a Internet\n"
-#~ "operativa.\n"
-#~ "\n"
-#~ "Voleu instal·lar les actualitzacions?"
-
-#
-#~ msgid "Installing bootloader"
-#~ msgstr "S'està instal·lant el carregador de l'arrencada"
-
-#~ msgid ""
-#~ "You may now provide options to module %s.\n"
-#~ "Options are in format ``name=value name2=value2...''.\n"
-#~ "For instance, ``io=0x300 irq=7''"
-#~ msgstr ""
-#~ "Ara podeu proporcionar les opcions per al mòdul %s.\n"
-#~ "Les opcions estan en el format \"nom=valor nom2=valor2 ...\".\n"
-#~ "Per exemple, \"io=0x300 irq=7\""
-
-#~ msgid "Configuring printer..."
-#~ msgstr "S'està configurant la impressora..."
-
-#
-#~ msgid "Configuring applications..."
-#~ msgstr "S'estan configurant les aplicacions..."
-
-#~ msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-#~ msgstr "Afegeix aquesta impressora a Star Office/OpenOffice.org/GIMP"
-
-#~ msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-#~ msgstr "Suprimeix aquesta impressora de Star Office/OpenOffice.org/GIMP"
-
-#~ msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-#~ msgstr "S'està afegint la impressora a Star Office/OpenOffice.org/GIMP"
-
-#~ msgid ""
-#~ "The printer \"%s\" was successfully added to Star Office/OpenOffice.org/"
-#~ "GIMP."
-#~ msgstr ""
-#~ "S'ha afegit correctament la impressora \"%s\" a Star Office/OpenOffice."
-#~ "org/GIMP."
-
-#~ msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-#~ msgstr ""
-#~ "És impossible d'afegir la impressora \"%s\" a Star Office/OpenOffice.org/"
-#~ "GIMP."
-
-#~ msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-#~ msgstr "S'està suprimint la impressora d'Star Office/OpenOffice.org/GIMP"
-
-#~ msgid ""
-#~ "The printer \"%s\" was successfully removed from Star Office/OpenOffice."
-#~ "org/GIMP."
-#~ msgstr ""
-#~ "La impressora \"%s\" ha estat suprimida d'Star Office/OpenOffice.org/GIMP "
-#~ "amb èxit."
-
-#~ msgid ""
-#~ "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
-#~ msgstr ""
-#~ "És impossible de suprimir la impressora \"%s\" d'Star Office/OpenOffice."
-#~ "org/GIMP."
-
-#~ msgid "<b>Congratulations for choosing Mandriva Linux!</b>"
-#~ msgstr "<b>Felicitats per triar Mandriva Linux!</b>"
-
-#~ msgid ""
-#~ "Your new Mandriva Linux operating system and its many applications is the "
-#~ "result of collaborative efforts between Mandriva developers and Mandriva "
-#~ "Linux contributors throughout the world."
-#~ msgstr ""
-#~ "El vostre nou sistema operatiu Mandriva Linux i les seves múltiples "
-#~ "aplicacions són el resultat de l'esforç col·laboratiu dels "
-#~ "desenvolupadors de Mandriva i els contribuïdors de Mandriva Linux al "
-#~ "voltant del món."
-
-#~ msgid ""
-#~ "We would like to thank everyone who participated in the development of "
-#~ "this latest release."
-#~ msgstr ""
-#~ "Voldríem donar les gràcies a tothom que hagi participat en el "
-#~ "desenvolupament d'aquesta versió."
-
-#~ msgid "<b>Discovery</b>"
-#~ msgstr "<b>Discovery</b>"
-
-#~ msgid ""
-#~ "The menu is task-oriented, with a single selected application per task."
-#~ msgstr "El menú està orientat a tasques, amb una sola aplicació per tasca."
-
-#~ msgid ""
-#~ "The powerful Open Source graphical desktop environment KDE is the desktop "
-#~ "of choice for the Discovery Pack."
-#~ msgstr ""
-#~ "El potent entorn gràfic d'escriptori de Codi Obert KDE és l'escriptori "
-#~ "triat pel Discovery Pack."
-
-#~ msgid "<b>OpenOffice.org</b>: The complete Linux office suite."
-#~ msgstr "<b>OpenOffice.org</b>: El paquet d'oficina complet per a Linux."
-
-#~ msgid ""
-#~ "<b>WRITER</b> is a powerful word processor for creating all types of text "
-#~ "documents. Documents may include images, diagrams and tables."
-#~ msgstr ""
-#~ "<b>WRITER</b> és un potent editor de text per crear tot tipus de "
-#~ "documents de text. Els documents poden incloure imatges, diagrames i "
-#~ "taules."
-
-#~ msgid ""
-#~ "<b>CALC</b> is a feature-packed spreadsheet which enables you to compute, "
-#~ "analyze and manage all of your data."
-#~ msgstr ""
-#~ "<b>CALC</b> és un full de càlcul amb moltes possibilitats que us permet "
-#~ "computar, analitzar i gestionar totes les vostres dades."
-
-#~ msgid ""
-#~ "<b>IMPRESS</b> is the fastest, most powerful way to create effective "
-#~ "multimedia presentations."
-#~ msgstr ""
-#~ "<b>IMPRESS</b> és la forma més ràpida i potent de crear presentacions "
-#~ "multimèdia."
-
-#~ msgid ""
-#~ "<b>DRAW</b> will produce everything from simple diagrams to dynamic 3D "
-#~ "illustrations."
-#~ msgstr ""
-#~ "<b>DRAW</b> por produir de tot, des de diagrames simples a il·lustracions "
-#~ "3D dinàmiques."
-
-#~ msgid "<b>Surf The Internet</b>"
-#~ msgstr "<b>Navega per Internet</b>"
-
-#~ msgid ""
-#~ "More than just a full-featured email client, <b>Kontact</b> also includes "
-#~ "an address book, a calendar and scheduling program, plus a tool for "
-#~ "taking notes!"
-#~ msgstr ""
-#~ "Més que només un complet client de correu, <b>Kontact</b> també inclou "
-#~ "una llibreta d'adreces, un calendari i un planificador, a més d'una eina "
-#~ "d'agafar notes!"
-
-#~ msgid "You can also:"
-#~ msgstr "També podeu:"
-
-#~ msgid "\t* browse the Web"
-#~ msgstr "\t navegar per la Web"
-
-#~ msgid "\t* chat"
-#~ msgstr "\t xatejar"
-
-#~ msgid "\t* organize a video-conference"
-#~ msgstr "\t* organitzar una vídeo conferència"
-
-#~ msgid "\t* create your own Web site"
-#~ msgstr "\t crear la vostra pàgina web"
-
-#~ msgid "<b>Multimedia</b>: Software for every need!"
-#~ msgstr "<b>Multimèdia</b>: Programari per totes les necessitats!"
-
-#~ msgid "Listen to audio CDs with <b>KsCD</b>."
-#~ msgstr "Escolteu CD d'àudio amb <b>KsCD</b>."
-
-#~ msgid "Listen to music files and watch videos with <b>Totem</b>."
-#~ msgstr "Escolteu fitxers musicals i mireu vídeos amb <b>Totem</b>."
-
-#~ msgid ""
-#~ "View and edit images and photos with <b>GQview</b> and <b>The Gimp!</b>"
-#~ msgstr "Veieu i editeu imatges i fotos amb <b>GQview</b>i <b>El Gimp</b>"
-
-#
-#~ msgid "Become a <b>Mandriva Club</b> member!"
-#~ msgstr "Esdeveniu un membre del <b>Mandriva Club</b>!"
-
-#~ msgid "\t* Full access to commercial applications"
-#~ msgstr "\t* Accés complet a aplicacions comercials"
-
-#~ msgid ""
-#~ "\t* Special download mirror list exclusively for Mandriva Club Members"
-#~ msgstr "\t* Llista de rèpliques exclusiva pels membres del Mandriva Club"
-
-#~ msgid "\t* Voting for software to put in Mandriva Linux"
-#~ msgstr "\t* Votació dels programes a posar en Mandriva Linux"
-
-#~ msgid "\t* Plus much more"
-#~ msgstr "\t* i molt més"
-
-#~ msgid "For more information, please visit <b>www.mandrakeclub.com</b>"
-#~ msgstr "Per més informació visiteu <b>www.mandrakeclub.com</b>"
-
-#~ msgid "Do you require assistance?"
-#~ msgstr "Necessiteu ajuda?"
-
-#~ msgid "<b>Mandriva Expert</b> is the primary source for technical support."
-#~ msgstr "<b>Mandriva Expert</b> és la font primària per suport tècnic."
-
-#~ msgid ""
-#~ "If you have Linux questions, subscribe to Mandriva Expert at <b>www."
-#~ "mandrivaexpert.com</b>"
-#~ msgstr ""
-#~ "Si teniu preguntes en quant a Linux, apunteu-vos a Mandriva Expert <b>www."
-#~ "mandrivaexpert.com</b>"
-
-#~ msgid ""
-#~ "If you would like to get involved, please subscribe to the \"Cooker\" "
-#~ "mailing list by visiting <b>mandrake-linux.com/cooker</b>"
-#~ msgstr ""
-#~ "Si voleu involucrar-vos, apunteu-vos a la llista de correu \"Cooker\" "
-#~ "visitant <b>mandrake-linux.com/cooker</b>"
-
-#~ msgid ""
-#~ "To learn more about our dynamic community, please visit <b>www.mandrake-"
-#~ "linux.com</b>!"
-#~ msgstr ""
-#~ "Per aprendre més en quant a la nostra dinàmica comunitat visiteu <b>www."
-#~ "mandrake-linux.com</b>!"
-
-#~ msgid ""
-#~ "Mandriva Linux includes the famous graphical desktops KDE and GNOME, plus "
-#~ "the latest versions of the most popular Open Source applications."
-#~ msgstr ""
-#~ "Mandriva Linux inclou els famosos entorns gràfics KDE i GNOME, a més de "
-#~ "les últimes versions de les aplicacions de Codi Font Obert més populars."
-
-#~ msgid ""
-#~ "Mandriva Linux is widely known as the most user-friendly and the easiest "
-#~ "to install and easy to use Linux distribution."
-#~ msgstr ""
-#~ "Mandriva Linux és ampliament coneguda com la distribució de Linux més "
-#~ "amigable, fàcil d'instal·lar i usar."
-
-#~ msgid ""
-#~ "\t* Find out Mandriva Linux on a bootable CD with <b>Mandrakemove</b>"
-#~ msgstr ""
-#~ "\t* Conegui Mandriva Linux en un CD autoarrancable amb <b>Mandrakemove</b>"
-
-#~ msgid ""
-#~ "\t* If you use Linux mostly for Office, Internet and Multimedia tasks, "
-#~ "<b>Discovery</b> perfectly meets your needs"
-#~ msgstr ""
-#~ "\t* Si useu Linux a l'oficina, per internet o per tasques multimèdia, "
-#~ "<b>Discovery</b> és perfecte per a les vostres necessitats"
-
-#~ msgid ""
-#~ "\t* If you appreciate the largest selection of software including "
-#~ "powerful development tools, <b>PowerPack</b> is for you"
-#~ msgstr ""
-#~ "\t* Si aprecieu la selecció de programari més gran, incloent eines de "
-#~ "desenvolupament, <b>PowerPack</b> és per tu"
-
-#~ msgid ""
-#~ "\t* If you require a full-featured Linux solution customized for small to "
-#~ "medium-sized networks, choose <b>PowerPack+</b>"
-#~ msgstr ""
-#~ "\t* Si necessiteu una solució Linux per a xarxes de petites a mitjanes, "
-#~ "escolliu <b>PowerPack+</b>"
-
-#~ msgid "Find out also our <b>Business Solutions</b>!"
-#~ msgstr "Conegui també les nostres <b>Solucions per empreses</b>!"
-
-#
-#~ msgid "<b>Become a Mandriva Club member!</b>"
-#~ msgstr "<b>Esdeveniu un membre del Mandriva Club!</b>"
-
-#~ msgid "<b>Do you require assistance?</b>"
-#~ msgstr "<b>Necessiteu ajuda?</b>"
-
-#~ msgid "This is the Mandriva Linux <b>Download version</b>."
-#~ msgstr "Això és Mandriva Linux <b>versió de descàrrega</b>."
-
-#~ msgid ""
-#~ "The free download version does not include commercial software, and "
-#~ "therefore may not work with certain modems (such as some ADSL and RTC) "
-#~ "and video cards (such as ATI® and NVIDIA®)."
-#~ msgstr ""
-#~ "La versió de descarrega gratuïta no inclou programari comercial, i per "
-#~ "tant, pot no funcionar amb alguns mòdems (com ADSL i RTC) i targetes "
-#~ "gràfiques (com ATI® i NVIDIA®)."
-
-#~ msgid ""
-#~ "Your new Mandriva Linux distribution and its many applications are the "
-#~ "result of collaborative efforts between Mandriva developers and Mandriva "
-#~ "Linux contributors throughout the world."
-#~ msgstr ""
-#~ "La vostra nova distribució Mandriva Linux i les seves múltiples "
-#~ "aplicacions són el resultat de l'esforç col·laboratiu dels "
-#~ "desenvolupadors de Mandriva i els contribuïdors de Mandriva Linux al "
-#~ "voltant del món."
-
-#~ msgid "<b>PowerPack+</b>"
-#~ msgstr "<b>PowerPack+</b>"
-
-#~ msgid ""
-#~ "It is the only Mandriva Linux product that includes the groupware "
-#~ "solution."
-#~ msgstr "És l'únic producte Mandriva Linux que inclou la solució groupware."
-
-#~ msgid ""
-#~ "When you log into your Mandriva Linux system for the first time, you can "
-#~ "choose between several popular graphical desktops environments, "
-#~ "including: KDE, GNOME, WindowMaker, IceWM, and others."
-#~ msgstr ""
-#~ "Quan entreu per primer cop a Mandriva Linux, podeu escollir entre els "
-#~ "populars entorns gràfics d'escriptori, incloent: KDE, GNOME, WindowMaker, "
-#~ "IceWM, i altres."
-
-#~ msgid ""
-#~ "\t* Listen to audio CDs and music files with <b>KsCD</b> and <b>Totem</b>"
-#~ msgstr ""
-#~ "\t* Escolteu CD d'àudio i fitxers de música amb <b>KsCD</b> i <b>Totem</b>"
-
-#~ msgid ""
-#~ "PowerPack+ includes everything needed for developing and creating your "
-#~ "own software, including:"
-#~ msgstr ""
-#~ "PowerPack+ inclou tot el que necessiteu per desenvolupar i crear els "
-#~ "vostres programes, incloent:"
-
-#~ msgid ""
-#~ "\t* <b>Kdevelop</b>: a full featured, easy to use Integrated Development "
-#~ "Environment for C++ programming"
-#~ msgstr ""
-#~ "\t* <b>Kdevelop</b>: Un entorn integrat de desenvolupament per programar "
-#~ "amb C++ amb moltes opcions i fàcil d'usar,"
-
-#~ msgid "\t* <b>GCC</b>: the GNU Compiler Collection"
-#~ msgstr "\t* <b>GCC</b>: la Colecció de Compiladors GNU"
-
-#~ msgid "\t* <b>GDB</b>: the GNU Project debugger"
-#~ msgstr "\t* <b>GDB</b>: el debugger del projecte GNU"
-
-#~ msgid "\t* Address Book (server and client)"
-#~ msgstr "\t* Llibreta d'adreces (servidor i client)"
-
-#~ msgid ""
-#~ "Your new Mandriva Linux distribution is the result of collaborative "
-#~ "efforts between Mandriva developers and Mandriva Linux contributors "
-#~ "throughout the world."
-#~ msgstr ""
-#~ "La vostra nova distribució Mandriva Linux és el resultat de l'esforç "
-#~ "col·laboratiu dels desenvolupadors de Mandriva i els contribuïdors de "
-#~ "Mandriva Linux al voltant del món."
-
-#~ msgid ""
-#~ "We would like to thank everyone who participated in the development of "
-#~ "our latest release."
-#~ msgstr ""
-#~ "Voldríem donar les gracies a tothom que hagi participat en el "
-#~ "desenvolupament d'aquesta versió."
-
-#~ msgid "<b>PowerPack</b>"
-#~ msgstr "<b>PowerPack</b>"
-
-#~ msgid ""
-#~ "PowerPack includes everything needed for developing and creating your own "
-#~ "software, including:"
-#~ msgstr ""
-#~ "PowerPack inclou tot el que necessiteu per desenvolupar i crear els "
-#~ "vostres programes, incloent:"
-
-#~ msgid "And of course the editors!"
-#~ msgstr "I per suposat els editors!"
-
-#~ msgid "Installation of %s failed. The following error occurred:"
-#~ msgstr "Ha fallat la instal·lació de %s. S'ha produït l'error següent:"
-
-#~ msgid ""
-#~ "We need to install ntp package\n"
-#~ " to enable Network Time Protocol\n"
-#~ "\n"
-#~ "Do you want to install ntp ?"
-#~ msgstr ""
-#~ "Es necessari instal·lar el paquet ntp\n"
-#~ " per habilitar el Network Time Protocol\n"
-#~ "\n"
-#~ "Vols instal·lar ntp?"
-
-#~ msgid ""
-#~ "The setup of a VPN connection has already been done.\n"
-#~ "\n"
-#~ "It's currently enabled.\n"
-#~ "\n"
-#~ "What would you like to do ?"
-#~ msgstr ""
-#~ "La configuració de l'una connexió VPN ja s'ha dut a terme.\n"
-#~ "\n"
-#~ "Ara està habilitada.\n"
-#~ "\n"
-#~ "Què voleu fer?"
-
-#~ msgid ""
-#~ "The setup of a VPN connection has already been done.\n"
-#~ "\n"
-#~ "It's currently disabled.\n"
-#~ "\n"
-#~ "What would you like to do ?"
-#~ msgstr ""
-#~ "La configuració de l'una connexió VPN ja s'ha dut a terme.\n"
-#~ "\n"
-#~ "Ara està inhabilitada.\n"
-#~ "\n"
-#~ "Què voleu fer?"
-
-#~ msgid "Set of tools to read and send mail and news and to browse the Web"
-#~ msgstr ""
-#~ "Conjunt d'eines per llegir i enviar correu i notícies i per navegar pel "
-#~ "Web"
-
-#~ msgid ""
-#~ "Before continuing, you should carefully read the terms of the license. "
-#~ "It\n"
-#~ "covers the entire Mandriva Linux distribution. If you do agree with all "
-#~ "the\n"
-#~ "terms in it, check the \"%s\" box. If not, clicking on the \"%s\" button\n"
-#~ "will reboot your computer."
-#~ msgstr ""
-#~ "Abans de continuar, llegiu atentament les clàusules de la llicència. "
-#~ "Cobreix\n"
-#~ "tota la distribució Mandriva Linux. Si esteu d'acord amb tots els termes "
-#~ "de la\n"
-#~ "llicència, feu clic al quadre \"%s\"; si no, prémer el botó \"%s\"\n"
-#~ "reiniciarà el vostre ordinador."
-
-#~ msgid ""
-#~ "GNU/Linux is a multi-user system, meaning each user may have their own\n"
-#~ "preferences, their own files and so on. You can read the ``Starter "
-#~ "Guide''\n"
-#~ "to learn more about multi-user systems. But unlike \"root\", who is the\n"
-#~ "system administrator, the users you add at this point will not be\n"
-#~ "authorized to change anything except their own files and their own\n"
-#~ "configurations, protecting the system from unintentional or malicious\n"
-#~ "changes that impact on the system as a whole. You will have to create at\n"
-#~ "least one regular user for yourself -- this is the account which you "
-#~ "should\n"
-#~ "use for routine, day-to-day use. Although it is very easy to log in as\n"
-#~ "\"root\" to do anything and everything, it may also be very dangerous! A\n"
-#~ "very simple mistake could mean that your system will not work any more. "
-#~ "If\n"
-#~ "you make a serious mistake as a regular user, the worst that will happen "
-#~ "is\n"
-#~ "that you will lose some information, but not affect the entire system.\n"
-#~ "\n"
-#~ "The first field asks you for a real name. Of course, this is not "
-#~ "mandatory\n"
-#~ "-- you can actually enter whatever you like. DrakX will use the first "
-#~ "word\n"
-#~ "you typed in this field and copy it to the \"%s\" field, which is the "
-#~ "name\n"
-#~ "this user will enter to log onto the system. If you like, you may "
-#~ "override\n"
-#~ "the default and change the user name. The next step is to enter a "
-#~ "password.\n"
-#~ "From a security point of view, a non-privileged (regular) user password "
-#~ "is\n"
-#~ "not as crucial as the \"root\" password, but that is no reason to "
-#~ "neglect\n"
-#~ "it by making it blank or too simple: after all, your files could be the\n"
-#~ "ones at risk.\n"
-#~ "\n"
-#~ "Once you click on \"%s\", you can add other users. Add a user for each "
-#~ "one\n"
-#~ "of your friends: your father or your sister, for example. Click \"%s\" "
-#~ "when\n"
-#~ "you have finished adding users.\n"
-#~ "\n"
-#~ "Clicking the \"%s\" button allows you to change the default \"shell\" "
-#~ "for\n"
-#~ "that user (bash by default).\n"
-#~ "\n"
-#~ "When you have finished adding users, you will be asked to choose a user "
-#~ "who\n"
-#~ "can automatically log into the system when the computer boots up. If you\n"
-#~ "are interested in that feature (and do not care much about local "
-#~ "security),\n"
-#~ "choose the desired user and window manager, then click \"%s\". If you "
-#~ "are\n"
-#~ "not interested in this feature, uncheck the \"%s\" box."
-#~ msgstr ""
-#~ "El GNU/Linux és un sistema multiusuari; això vol dir que cada usuari pot\n"
-#~ "tenir les seves pròpies preferències, els seus propis fitxers, etc. Podeu "
-#~ "llegir\n"
-#~ "la ``Guia d'iniciació''\n"
-#~ " per aprendre més coses sobre els sistemes\n"
-#~ "multiusuari. Però, a diferència del \"root\", que és l'administrador del "
-#~ "sistema,\n"
-#~ "als usuaris que afegiu aquí no se'ls permetrà modificar res tret dels "
-#~ "seus propis\n"
-#~ "fitxers i configuracions, protegint així el sistema de canvis, "
-#~ "intencionats o no, \n"
-#~ " que tenen efecte sobre tot el sistema . Cal que us creeu, com a mínim, "
-#~ "un usuari\n"
-#~ "normal, i és aquest compte el que heu d'utilitzar per a l'ús quotidià. "
-#~ "Tot i que\n"
-#~ "és molt fàcil entrar com a \"root\" per a tot, també pot ser molt "
-#~ "perillós: la més\n"
-#~ "petita errada podria significar que el sistema deixés de funcionar. Si "
-#~ "cometeu\n"
-#~ "una errada greu com a usuari normal el pitjor que pot passar és que "
-#~ "perdeu\n"
-#~ "algunes daDES, però sense afectar a tot el sistema.\n"
-#~ "\n"
-#~ "Primer, heu d'introduir el vostre nom real. Per suposat, això no és "
-#~ "obligatori,\n"
-#~ "ja que podeu introduir el que vulgueu. DrakX agafarà la primera paraula\n"
-#~ "que heu introduït en aquest camp i la copiarà en el camp \"%s\", que serà "
-#~ "el\n"
-#~ "nom que utilitzarà aquest usuari per entrar al sistema (ho podeu canviar "
-#~ "si\n"
-#~ "voleu). Després cal que introduïu una contrasenya. Des del punt de vista "
-#~ "de\n"
-#~ "la seguretat, una contrasenya d'un usuari no privilegiat (habitual) no és "
-#~ "tan\n"
-#~ "important com la del \"root\" des del punt de vista de la seguretat, però "
-#~ "no hi\n"
-#~ "ha cap raó per menystenir-la, deixant-la en blanc o fent-la massa "
-#~ "senzilla: al\n"
-#~ "cap i a la fi, els vostres fitxers poden estar en joc.\n"
-#~ "\n"
-#~ "Un cop hagueu fet clic a \"%s\" podreu afegir altres usuaris. Afegiu-ne "
-#~ "un\n"
-#~ "per a tothom que hagi de fer servir l'ordinador. Feu clic a \"%s\" quan "
-#~ "hagueu\n"
-#~ "acabat d'afegir-ne.\n"
-#~ "\n"
-#~ "Feu clic al botó \"%s\" per canviar l'intèrpret d'ordres (\"shell\") per "
-#~ "defecte\n"
-#~ "(bash) de l'usuari seleccionat. \n"
-#~ "\n"
-#~ "Quan hagueu acabat d'afegir usuaris, se us proposarà decidir quin usuari\n"
-#~ "entrarà automàticament en el sistema en arrencar l'ordinador. Si us\n"
-#~ "interessa aquesta característica (i no us importa gaire la seguretat "
-#~ "local), \n"
-#~ "trieu l'usuari i el gestor de finestres desitjat i feu clic a \"%s\".\n"
-#~ "Si no hi esteu interessat, desactiveu el quadre \"%s\"."
-
-#~ msgid ""
-#~ "The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
-#~ "selected package is located on another CD-ROM, DrakX will eject the "
-#~ "current\n"
-#~ "CD and ask you to insert the correct CD as required."
-#~ msgstr ""
-#~ "La instal·lació del Mandriva Linux està repartida en diversos CD-ROM. Si\n"
-#~ "un dels paquets escollits està en un altre CD-ROM, DrakX expulsarà el CD\n"
-#~ "actual i us demanarà que n'inseriu un altre."
-
-#~ msgid ""
-#~ "It is now time to specify which programs you wish to install on your\n"
-#~ "system. There are thousands of packages available for Mandriva Linux, "
-#~ "and\n"
-#~ "to make it simpler to manage the packages have been placed into groups "
-#~ "of\n"
-#~ "similar applications.\n"
-#~ "\n"
-#~ "Packages are sorted into groups corresponding to a particular use of "
-#~ "your\n"
-#~ "machine. Mandriva Linux sorts packages groups in four categories. You "
-#~ "can\n"
-#~ "mix and match applications from the various categories, so a\n"
-#~ "``Workstation'' installation can still have applications from the\n"
-#~ "``Development'' category installed.\n"
-#~ "\n"
-#~ " * \"%s\": if you plan to use your machine as a workstation, select one "
-#~ "or\n"
-#~ "more of the groups that are in the workstation category.\n"
-#~ "\n"
-#~ " * \"%s\": if you plan on using your machine for programming, select the\n"
-#~ "appropriate groups from that category.\n"
-#~ "\n"
-#~ " * \"%s\": if your machine is intended to be a server, select which of "
-#~ "the\n"
-#~ "more common services you wish to install on your machine.\n"
-#~ "\n"
-#~ " * \"%s\": this is where you will choose your preferred graphical\n"
-#~ "environment. At least one must be selected if you want to have a "
-#~ "graphical\n"
-#~ "interface available.\n"
-#~ "\n"
-#~ "Moving the mouse cursor over a group name will display a short "
-#~ "explanatory\n"
-#~ "text about that group. If you unselect all groups when performing a "
-#~ "regular\n"
-#~ "installation (as opposed to an upgrade), a dialog will pop up proposing\n"
-#~ "different options for a minimal installation:\n"
-#~ "\n"
-#~ " * \"%s\": install the minimum number of packages possible to have a\n"
-#~ "working graphical desktop.\n"
-#~ "\n"
-#~ " * \"%s\": installs the base system plus basic utilities and their\n"
-#~ "documentation. This installation is suitable for setting up a server.\n"
-#~ "\n"
-#~ " * \"%s\": will install the absolute minimum number of packages "
-#~ "necessary\n"
-#~ "to get a working Linux system. With this installation you will only have "
-#~ "a\n"
-#~ "command line interface. The total size of this installation is about 65\n"
-#~ "megabytes.\n"
-#~ "\n"
-#~ "You can check the \"%s\" box, which is useful if you are familiar with "
-#~ "the\n"
-#~ "packages being offered or if you want to have total control over what "
-#~ "will\n"
-#~ "be installed.\n"
-#~ "\n"
-#~ "If you started the installation in \"%s\" mode, you can unselect all "
-#~ "groups\n"
-#~ "to avoid installing any new package. This is useful for repairing or\n"
-#~ "updating an existing system."
-#~ msgstr ""
-#~ "Ha arribat el moment d'indicar els programes que voleu instal·lar en el\n"
-#~ "sistema. Mandriva Linux té milers de paquets, i per facilitar-ne la\n"
-#~ "gestió s'han distribuït en grups d'aplicacions similars.\n"
-#~ "\n"
-#~ "Els paquets s'agrupen segons l'ús que vulgueu donar a l'ordinador.\n"
-#~ "Mandriva Linux agrupa els paquets en quatre categories. Podeu mesclar i "
-#~ "fer\n"
-#~ "coincidir aplicacions de grups diversos, de manera que una instal·lació\n"
-#~ "d'``Estació de treball'' pot perfectament tenir instal·lades aplicacions\n"
-#~ "de la categoria ``Desenvolupament'' \n"
-#~ " * \"%s\": si voleu utilitzar l'ordinador com a estació de treball,\n"
-#~ "seleccioneu un o més grups de la categoria estació de treball.\n"
-#~ "\n"
-#~ " * \"%s\": si penseu utilitzar la vostra màquina per programar, escolliu "
-#~ "els\n"
-#~ "grups adients d'aquesta categoria.\n"
-#~ "\n"
-#~ " * \"%s\": si l'ordinador s'ha d'utilitzar com a servidor, seleccioneu\n"
-#~ "quins dels serveis més habituals voleu instal·lar\n"
-#~ "\n"
-#~ " * \"%s\": aquí és on escollireu quin és el vostre entorn gràfic\n"
-#~ "preferit. Heu de seleccionar-ne un com a mínim si voleu tenir una\n"
-#~ "interfície gràfica.\n"
-#~ "\n"
-#~ "Si moveu el cursor per sobre d'un nom de grup veureu una breu explicació\n"
-#~ "d'aquest grup. Si desseleccioneu tots els grups quan estigueu fent una\n"
-#~ "instal·lació normal (i no una actualització), se us presentarà un "
-#~ "diàleg \n"
-#~ "proposant-vos diferents opcions per a una instal·lació mínima:\n"
-#~ "\n"
-#~ " * \"%s\": instal·la els mínims paquets necessaris per tenir un\n"
-#~ "entorn gràfic funcional\n"
-#~ "\n"
-#~ " * \"%s\": instal·la el sistema base i les utilitats bàsiques amb la "
-#~ "seva\n"
-#~ "documentació. Aquesta instal·lació és adequada per configurar un "
-#~ "servidor;\n"
-#~ "\n"
-#~ " * \"%s\": instal·la el nombre mínim de paquets necessari per aconseguir "
-#~ "un\n"
-#~ "sistema Linux operatiu, només amb una interfície de línia d'ordres. "
-#~ "Aquesta\n"
-#~ "instal·lació ocupa uns 65 MB.\n"
-#~ "\n"
-#~ "Podeu marcar la casella \"%s\", que és útil si esteu familiaritzat amb "
-#~ "els\n"
-#~ "diversos paquets o si voleu tenir un control total sobre el que "
-#~ "s'instal·larà.\n"
-#~ "\n"
-#~ "Si heu començat la instal·lació en el mode \"%s\", podeu desseleccionar \n"
-#~ "tots els grups si voleu evitar que s'instal·li cap paquet nou. Això és "
-#~ "útil \n"
-#~ "per reparar o actualitzar un sistema existent."
-
-#~ msgid ""
-#~ "If you told the installer that you wanted to individually select "
-#~ "packages,\n"
-#~ "it will present a tree containing all packages classified by groups and\n"
-#~ "subgroups. While browsing the tree, you can select entire groups,\n"
-#~ "subgroups, or individual packages.\n"
-#~ "\n"
-#~ "Whenever you select a package on the tree, a description appears on the\n"
-#~ "right to let you know the purpose of the package.\n"
-#~ "\n"
-#~ "!! If a server package has been selected, either because you "
-#~ "specifically\n"
-#~ "chose the individual package or because it was part of a group of "
-#~ "packages,\n"
-#~ "you will be asked to confirm that you really want those servers to be\n"
-#~ "installed. By default Mandriva Linux will automatically start any "
-#~ "installed\n"
-#~ "services at boot time. Even if they are safe and have no known issues at\n"
-#~ "the time the distribution was shipped, it is entirely possible that that\n"
-#~ "security holes were discovered after this version of Mandriva Linux was\n"
-#~ "finalized. If you do not know what a particular service is supposed to "
-#~ "do\n"
-#~ "or why it is being installed, then click \"%s\". Clicking \"%s\" will\n"
-#~ "install the listed services and they will be started automatically by\n"
-#~ "default during boot. !!\n"
-#~ "\n"
-#~ "The \"%s\" option is used to disable the warning dialog which appears\n"
-#~ "whenever the installer automatically selects a package to resolve a\n"
-#~ "dependency issue. Some packages have relationships between each them "
-#~ "such\n"
-#~ "that installation of one package requires that some other program is "
-#~ "also\n"
-#~ "required to be installed. The installer can determine which packages are\n"
-#~ "required to satisfy a dependency to successfully complete the "
-#~ "installation.\n"
-#~ "\n"
-#~ "The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-#~ "package list created during a previous installation. This is useful if "
-#~ "you\n"
-#~ "have a number of machines that you wish to configure identically. "
-#~ "Clicking\n"
-#~ "on this icon will ask you to insert a floppy disk previously created at "
-#~ "the\n"
-#~ "end of another installation. See the second tip of last step on how to\n"
-#~ "create such a floppy."
-#~ msgstr ""
-#~ "Si heu dit a l'instal·lador que volíeu seleccionar els paquets "
-#~ "individualment\n"
-#~ "se us presentarà un arbre amb tots els paquets classificats per grups i\n"
-#~ "subgrups. Mentre navegueu per l'arbre, podeu seleccionar grups complets,\n"
-#~ "subgrups o paquets individuals.\n"
-#~ "\n"
-#~ "Cada cop que seleccioneu un paquet de l'arbre, apareixerà una descripció "
-#~ "a \n"
-#~ "la dreta que us informarà de la finalitat del paquet.\n"
-#~ "\n"
-#~ "Si heu seleccionat un paquet de servidor, intencionadament o perquè\n"
-#~ "formava part d'un grup, se us demanarà que confirmeu si realment voleu\n"
-#~ "instal·lar aquests servidors. Per defecte, Mandriva Linux iniciarà i "
-#~ "instal·larà automàticament qualsevol servidor durant l'arrencada. Tot i "
-#~ "que\n"
-#~ "siguin segurs i no tinguin cap problema conegut quan es publica la\n"
-#~ "distribució, és totalment possible que es descobreixin forats de "
-#~ "seguretat\n"
-#~ "després que aquesta versió de Mandriva Linux quedi finalitzada.\n"
-#~ "Si no sabeu què se suposa que fa un servei en particular, o per què "
-#~ "s'està\n"
-#~ "instal·lant, feu clic a \"%s\". Per defecte, si feu clic a \"%s\" els "
-#~ "serveis\n"
-#~ "llistats s'instal·laran i s'iniciaran automàticament durant l'arrencada.\n"
-#~ "\n"
-#~ "L'opció \"%s\" s'utilitza per inhabilitar el diàleg d'advertència que\n"
-#~ "apareix quan l'instal·lador selecciona automàticament un paquet per "
-#~ "resoldre\n"
-#~ "un tema de dependències. Alguns paquets estan relacionats els uns amb "
-#~ "els\n"
-#~ "altres, de manera que la instal·lació d'un paquet fa que calgui "
-#~ "instal·lar\n"
-#~ "també algun altre programa. L'instal·lador pot determinar quins paquets "
-#~ "calen\n"
-#~ "per satisfer una dependència i completar la instal·lació "
-#~ "satisfactòriament.\n"
-#~ "\n"
-#~ "La diminuta icona d'un disquet al peu de la llista us permet carregar "
-#~ "una\n"
-#~ "llista de paquets creada en una instal·lació anterior. Això és útil si "
-#~ "teniu\n"
-#~ "un cert nombre d'ordinadors que voleu configurar de manera idèntica. Si "
-#~ "feu\n"
-#~ "clic a aquesta icona se us demanarà que inseriu un disquet creat "
-#~ "anteriorment\n"
-#~ "al final d'una altra instal·lació. Vegeu el segon suggeriment de l'últim "
-#~ "pas\n"
-#~ "per saber com crear aquest disquet."
-
-#~ msgid ""
-#~ "You will now set up your Internet/network connection. If you wish to\n"
-#~ "connect your computer to the Internet or to a local network, click \"%s"
-#~ "\".\n"
-#~ "Mandriva Linux will attempt to auto-detect network devices and modems. "
-#~ "If\n"
-#~ "this detection fails, uncheck the \"%s\" box. You may also choose not to\n"
-#~ "configure the network, or to do it later, in which case clicking the \"%s"
-#~ "\"\n"
-#~ "button will take you to the next step.\n"
-#~ "\n"
-#~ "When configuring your network, the available connections options are:\n"
-#~ "Normal modem connection, Winmodem connection, ISDN modem, ADSL "
-#~ "connection,\n"
-#~ "cable modem, and finally a simple LAN connection (Ethernet).\n"
-#~ "\n"
-#~ "We will not detail each configuration option - just make sure that you "
-#~ "have\n"
-#~ "all the parameters, such as IP address, default gateway, DNS servers, "
-#~ "etc.\n"
-#~ "from your Internet Service Provider or system administrator.\n"
-#~ "\n"
-#~ "About Winmodem Connection. Winmodems are special integrated low-end "
-#~ "modems\n"
-#~ "that require additional software to work compared to Normal modems. Some "
-#~ "of\n"
-#~ "those modems actually work under Mandriva Linux, some others do not. You\n"
-#~ "can consult the list of supported modems at LinModems.\n"
-#~ "\n"
-#~ "You can consult the ``Starter Guide'' chapter about Internet connections\n"
-#~ "for details about the configuration, or simply wait until your system is\n"
-#~ "installed and use the program described there to configure your "
-#~ "connection."
-#~ msgstr ""
-#~ "Ara configurareu la connexió a Internet/xarxa. Si voleu connectar\n"
-#~ "el vostre ordinador a Internet o a una xarxa local, feu clic a \"%s\".\n"
-#~ "Mandriva Linux intentarà detectar automàticament els dispositius\n"
-#~ "de xarxa i els mòdems. Si aquesta detecció falla, desactiveu la\n"
-#~ "casella \"%s\". També podeu decidir no configurar la xarxa, o\n"
-#~ "fer-ho més endavant; en aquest cas feu clic al botó \"%s\" per\n"
-#~ "passar al pas següent.\n"
-#~ "\n"
-#~ "En configurar la xarxa, les opcions de connexió disponibles són:\n"
-#~ "mòdem tradicional, winmodem, mòdem XDSI, connexió ADSL, mòdem de cable, "
-#~ "i\n"
-#~ "finalment una connexió LAN senzilla (Ethernet).\n"
-#~ "\n"
-#~ "No explicarem cada opció de configuració; només cal que us assegureu\n"
-#~ "que el vostre proveïdor d'Internet o administrador del sistema us ha\n"
-#~ "facilitat tots els paràmetres, com ara l'adreça IP, la passarel·la\n"
-#~ "per defecte, els servidors DNS, etc.\n"
-#~ "\n"
-#~ "En quant a les connexions amb winmodem. Els winmodems són mòdems "
-#~ "especials\n"
-#~ "integrats de gama baixa que necessiten programari addicional per "
-#~ "funcionar.\n"
-#~ "Alguns d'aquests mòdems funcionen a Mandriva Linux, i d'altres no. Podeu\n"
-#~ "consultar una llista de mòdems suportats a LinModems.\n"
-#~ "\n"
-#~ "Podeu consultar el capítol sobre connexions a Internet de la ``Guia\n"
-#~ "d'iniciació'' per conèixer els detalls de la configuració, o\n"
-#~ "simplement espereu fins que el sistema estigui instal·lat i\n"
-#~ "utilitzeu el programa que s'hi indica per configurar la connexió."
-
-#~ msgid "Use auto detection"
-#~ msgstr "Utilitza la detecció automàtica"
-
-#~ msgid ""
-#~ "\"%s\": clicking on the \"%s\" button will open the printer "
-#~ "configuration\n"
-#~ "wizard. Consult the corresponding chapter of the ``Starter Guide'' for "
-#~ "more\n"
-#~ "information on how to setup a new printer. The interface presented there "
-#~ "is\n"
-#~ "similar to the one used during installation."
-#~ msgstr ""
-#~ "\"%s\": feu clic al botó \"%s\" per obrir l'auxiliar de configuració de "
-#~ "la\n"
-#~ "impressora. Consulteu el capítol corresponent de la ``Guia d'iniciació'' "
-#~ "per\n"
-#~ "tenir més informació en quant a la configuració de noves impressores.\n"
-#~ "La interfície que apareix és similar a la que s'utilitza durant la "
-#~ "instal·lació."
-
-#~ msgid ""
-#~ "This dialog is used to choose which services you wish to start at boot\n"
-#~ "time.\n"
-#~ "\n"
-#~ "DrakX will list all the services available on the current installation.\n"
-#~ "Review each one carefully and uncheck those which are not needed at boot\n"
-#~ "time.\n"
-#~ "\n"
-#~ "A short explanatory text will be displayed about a service when it is\n"
-#~ "selected. However, if you are not sure whether a service is useful or "
-#~ "not,\n"
-#~ "it is safer to leave the default behavior.\n"
-#~ "\n"
-#~ "!! At this stage, be very careful if you intend to use your machine as a\n"
-#~ "server: you will probably not want to start any services that you do not\n"
-#~ "need. Please remember that several services can be dangerous if they are\n"
-#~ "enabled on a server. In general, select only the services you really "
-#~ "need.\n"
-#~ "!!"
-#~ msgstr ""
-#~ "En aquest diàleg escollireu els serveis que voleu que s'iniciïn durant "
-#~ "l'arrencada.\n"
-#~ "\n"
-#~ "DrakX farà una llista de tots els serveis disponibles en la instal·lació "
-#~ "actual.\n"
-#~ "Reviseu-los amb cura i desmarqueu aquells que no siguin necessaris durant "
-#~ "l'arrencada.\n"
-#~ "\n"
-#~ "Podeu obtenir una explicació breu sobre un servei si el seleccioneu. Si "
-#~ "no\n"
-#~ "esteu segur de la utilitat d'un servei, el més segur és deixar el "
-#~ "comportament\n"
-#~ "per defecte.\n"
-#~ "\n"
-#~ "AVÍS: Aneu especialment amb cura en aquest pas si penseu utilitzar "
-#~ "l'ordinador com\n"
-#~ "a servidor: segurament no voldreu iniciar serveis que no necessiteu.\n"
-#~ "Recordeu que hi ha diversos serveis que poden ser perillosos si "
-#~ "s'habiliten\n"
-#~ "en un servidor. En general, seleccioneu només els serveis que realment "
-#~ "necessiteu."
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-#~ "local time according to the time zone you selected. If the clock on your\n"
-#~ "motherboard is set to local time, you may deactivate this by unselecting\n"
-#~ "\"%s\", which will let GNU/Linux know that the system clock and the\n"
-#~ "hardware clock are in the same time zone. This is useful when the "
-#~ "machine\n"
-#~ "also hosts another operating system like Windows.\n"
-#~ "\n"
-#~ "The \"%s\" option will automatically regulate the clock by connecting to "
-#~ "a\n"
-#~ "remote time server on the Internet. For this feature to work, you must "
-#~ "have\n"
-#~ "a working Internet connection. It is best to choose a time server "
-#~ "located\n"
-#~ "near you. This option actually installs a time server that can be used "
-#~ "by\n"
-#~ "other machines on your local network as well."
-#~ msgstr ""
-#~ "GNU/Linux gestiona l'hora en GMT (Greenwich Mean Time) i el tradueix a\n"
-#~ "l'hora local d'acord amb la zona horària seleccionada. Si el rellotge de "
-#~ "la\n"
-#~ "placa base indica l'hora local, podeu desactivar-ho desseleccionant \"%s"
-#~ "\", i\n"
-#~ "això informarà a GNU/Linux que el rellotge del sistema i el rellotge del\n"
-#~ "maquinari són a la mateixa zona horària. Això és convenient quan la "
-#~ "màquina\n"
-#~ "també té instal·lat un altre sistema operatiu, com ara Windows.\n"
-#~ "\n"
-#~ "L'opció \"%s\" regularà automàticament l'hora connectant-se a un "
-#~ "servidor\n"
-#~ "horari remot d'Internet. Per tal que funcioni aquesta funció us caldrà "
-#~ "tenir\n"
-#~ "connexió a Internet. És millor triar un servidor que estigui ubicat a "
-#~ "prop\n"
-#~ "vostre. De fet, aquesta opció instal·la un servidor d'hora que altres "
-#~ "màquines\n"
-#~ "de la vostra xarxa local també podran utilitzar."
-
-#~ msgid ""
-#~ "Graphic Card\n"
-#~ "\n"
-#~ " The installer will normally automatically detect and configure the\n"
-#~ "graphic card installed on your machine. If it is not the case, you can\n"
-#~ "choose from this list the card you actually have installed.\n"
-#~ "\n"
-#~ " In the situation where different servers are available for your card,\n"
-#~ "with or without 3D acceleration, you are asked to choose the server that\n"
-#~ "best suits your needs."
-#~ msgstr ""
-#~ "Targeta gràfica\n"
-#~ "\n"
-#~ " Normalment, l'instal·lador detectarà automàticament i configurarà la\n"
-#~ "targeta gràfica que tingueu instal·lada a l'ordinador. Si no fos així, "
-#~ "la\n"
-#~ "podeu seleccionar d'aquesta llista.\n"
-#~ "\n"
-#~ " Cas que hi hagi diferents servidors per a la targeta, amb o sense\n"
-#~ "acceleració 3D, se us demanarà que trieu el servidor que us sigui\n"
-#~ "més convenient."
-
-#~ msgid ""
-#~ "X (for X Window System) is the heart of the GNU/Linux graphical "
-#~ "interface\n"
-#~ "on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-#~ "WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
-#~ "\n"
-#~ "You will be presented with a list of different parameters to change to "
-#~ "get\n"
-#~ "an optimal graphical display: Graphic Card\n"
-#~ "\n"
-#~ " The installer will normally automatically detect and configure the\n"
-#~ "graphic card installed on your machine. If it is not the case, you can\n"
-#~ "choose from this list the card you actually have installed.\n"
-#~ "\n"
-#~ " In the situation where different servers are available for your card,\n"
-#~ "with or without 3D acceleration, you are asked to choose the server that\n"
-#~ "best suits your needs.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Monitor\n"
-#~ "\n"
-#~ " The installer will normally automatically detect and configure the\n"
-#~ "monitor connected to your machine. If it is incorrect, you can choose "
-#~ "from\n"
-#~ "this list the monitor you actually have connected to your computer.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Resolution\n"
-#~ "\n"
-#~ " Here you can choose the resolutions and color depths available for "
-#~ "your\n"
-#~ "hardware. Choose the one that best suits your needs (you will be able to\n"
-#~ "change that after installation though). A sample of the chosen\n"
-#~ "configuration is shown in the monitor picture.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Test\n"
-#~ "\n"
-#~ " Depending on your hardware, this entry might not appear.\n"
-#~ "\n"
-#~ " the system will try to open a graphical screen at the desired\n"
-#~ "resolution. If you can see the message during the test and answer \"%s"
-#~ "\",\n"
-#~ "then DrakX will proceed to the next step. If you cannot see the message, "
-#~ "it\n"
-#~ "means that some part of the auto-detected configuration was incorrect "
-#~ "and\n"
-#~ "the test will automatically end after 12 seconds, bringing you back to "
-#~ "the\n"
-#~ "menu. Change settings until you get a correct graphical display.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Options\n"
-#~ "\n"
-#~ " Here you can choose whether you want to have your machine "
-#~ "automatically\n"
-#~ "switch to a graphical interface at boot. Obviously, you want to check\n"
-#~ "\"%s\" if your machine is to act as a server, or if you were not "
-#~ "successful\n"
-#~ "in getting the display configured."
-#~ msgstr ""
-#~ "L'X (per sistema X Window) és el cor de la interfície gràfica de GNU/"
-#~ "Linux\n"
-#~ "de què depenen tots els entorns gràfics (KDE, GNOME, AfterStep, "
-#~ "WindowMaker,\n"
-#~ "etc.) que venen amb Mandriva Linux.\n"
-#~ "\n"
-#~ "Veureu una relació de diferents paràmetres que podeu canviar per "
-#~ "aconseguir\n"
-#~ "una visualització gràfica òptima: Targeta gràfica\n"
-#~ "\n"
-#~ " Normalment, l'instal·lador detectarà i configurarà automàticament la\n"
-#~ "targeta gràfica instal·lada a l'ordinador. Si no fos així, podeu escollir "
-#~ "de\n"
-#~ "la llista la targeta que realment tingueu instal·lada.\n"
-#~ "\n"
-#~ " En cas que hi hagi diferents servidors disponibles per a la vostra\n"
-#~ "targeta, amb o sense acceleració 3D, se us demanarà que escolliu el que\n"
-#~ "més us convingui.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Monitor\n"
-#~ "\n"
-#~ " Normalment, l'instal·lador detectarà i configurarà automàticament el\n"
-#~ "monitor que teniu connectat a l'ordinador. Si no és correcte, podreu "
-#~ "triar\n"
-#~ "d'aquesta llista el monitor que realment teniu connectat a l'ordinador.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Resolució\n"
-#~ "\n"
-#~ " Aquí podeu triar les resolucions i profunditats de color disponibles "
-#~ "per\n"
-#~ "al vostre maquinari. Trieu la que us vagi més bé (tot i que podreu\n"
-#~ "canviar-la després de la instal·lació). Al monitor veureu una mostra de "
-#~ "la\n"
-#~ "configuració triada.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Prova\n"
-#~ "\n"
-#~ "Depenent del maquinari aquesta entrada pot no aparèixer.\n"
-#~ "\n"
-#~ " el sistema intentarà obrir una pantalla gràfica amb la resolució\n"
-#~ "desitjada. Si podeu veure el missatge durant la prova i responeu \"%s\",\n"
-#~ "DrakX passarà al pas següent. Si no el podeu veure, vol dir que la\n"
-#~ "configuració detectada automàticament no era del tot correcta i la prova\n"
-#~ "finalitzarà automàticament al cap de 12 segons, portant-vos de nou al "
-#~ "menú.\n"
-#~ "Canvieu els paràmetres fins que obtingueu una pantalla gràfica correcta.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Opcions\n"
-#~ "\n"
-#~ " Aquí podeu decidir si voleu que l'ordinador canviï automàticament a "
-#~ "una\n"
-#~ "interfície gràfica en arrencar. Òbviament, voldreu activar \"%s\" si\n"
-#~ "l'ordinador ha d'actuar com a servidor, o si no heu aconseguit\n"
-#~ "configurar la pantalla."
-
-#~ msgid ""
-#~ "Monitor\n"
-#~ "\n"
-#~ " The installer will normally automatically detect and configure the\n"
-#~ "monitor connected to your machine. If it is incorrect, you can choose "
-#~ "from\n"
-#~ "this list the monitor you actually have connected to your computer."
-#~ msgstr ""
-#~ "Monitor\n"
-#~ "\n"
-#~ " Normalment, l'instal·lador detectarà i configurarà automàticament el\n"
-#~ "monitor que teniu connectat a l'ordinador. Si no és correcte, podreu "
-#~ "triar\n"
-#~ "d'aquesta llista el monitor que realment teniu connectat a l'ordinador."
-
-#~ msgid ""
-#~ "Resolution\n"
-#~ "\n"
-#~ " Here you can choose the resolutions and color depths available for "
-#~ "your\n"
-#~ "hardware. Choose the one that best suits your needs (you will be able to\n"
-#~ "change that after installation though). A sample of the chosen\n"
-#~ "configuration is shown in the monitor picture."
-#~ msgstr ""
-#~ "Resolució\n"
-#~ "\n"
-#~ " Aquí podeu triar les resolucions i profunditats de color disponibles "
-#~ "per\n"
-#~ "al vostre maquinari. Trieu la que us vagi més bé (tot i que podreu\n"
-#~ "canviar-la després de la instal·lació). Al monitor veureu una mostra de "
-#~ "la\n"
-#~ "configuració triada."
-
-#~ msgid ""
-#~ "In the situation where different servers are available for your card, "
-#~ "with\n"
-#~ "or without 3D acceleration, you are asked to choose the server that best\n"
-#~ "suits your needs."
-#~ msgstr ""
-#~ "En cas que hi hagi diferents servidors disponibles per a la vostra\n"
-#~ "targeta, amb o sense acceleració 3D, se us demanarà que escolliu\n"
-#~ "el servidor que més us convingui."
-
-#~ msgid ""
-#~ "Options\n"
-#~ "\n"
-#~ " Here you can choose whether you want to have your machine "
-#~ "automatically\n"
-#~ "switch to a graphical interface at boot. Obviously, you want to check\n"
-#~ "\"%s\" if your machine is to act as a server, or if you were not "
-#~ "successful\n"
-#~ "in getting the display configured."
-#~ msgstr ""
-#~ "Opcions\n"
-#~ "\n"
-#~ " Aquí podeu decidir si voleu que l'ordinador canviï automàticament a "
-#~ "una\n"
-#~ "interfície gràfica en arrencar. Òbviament, activareu \"%s\" si "
-#~ "l'ordinador ha\n"
-#~ "de ser un servidor, o si no heu pogut configurar la pantalla."
-
-#~ msgid ""
-#~ "At this point, you need to decide where you want to install the Mandrake\n"
-#~ "Linux operating system on your hard drive. If your hard drive is empty "
-#~ "or\n"
-#~ "if an existing operating system is using all the available space you "
-#~ "will\n"
-#~ "have to partition the drive. Basically, partitioning a hard drive "
-#~ "consists\n"
-#~ "of logically dividing it to create the space needed to install your new\n"
-#~ "Mandriva Linux system.\n"
-#~ "\n"
-#~ "Because the process of partitioning a hard drive is usually irreversible\n"
-#~ "and can lead to lost data if there is an existing operating system "
-#~ "already\n"
-#~ "installed on the drive, partitioning can be intimidating and stressful "
-#~ "if\n"
-#~ "you are an inexperienced user. Fortunately, DrakX includes a wizard "
-#~ "which\n"
-#~ "simplifies this process. Before continuing with this step, read through "
-#~ "the\n"
-#~ "rest of this section and above all, take your time.\n"
-#~ "\n"
-#~ "Depending on your hard drive configuration, several options are "
-#~ "available:\n"
-#~ "\n"
-#~ " * \"%s\": this option will perform an automatic partitioning of your "
-#~ "blank\n"
-#~ "drive(s). If you use this option there will be no further prompts.\n"
-#~ "\n"
-#~ " * \"%s\": the wizard has detected one or more existing Linux partitions "
-#~ "on\n"
-#~ "your hard drive. If you want to use them, choose this option. You will "
-#~ "then\n"
-#~ "be asked to choose the mount points associated with each of the "
-#~ "partitions.\n"
-#~ "The legacy mount points are selected by default, and for the most part "
-#~ "it's\n"
-#~ "a good idea to keep them.\n"
-#~ "\n"
-#~ " * \"%s\": if Microsoft Windows is installed on your hard drive and "
-#~ "takes\n"
-#~ "all the space available on it, you will have to create free space for\n"
-#~ "GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-#~ "data (see ``Erase entire disk'' solution) or resize your Microsoft "
-#~ "Windows\n"
-#~ "FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-#~ "data, provided you have previously defragmented the Windows partition.\n"
-#~ "Backing up your data is strongly recommended.. Using this option is\n"
-#~ "recommended if you want to use both Mandriva Linux and Microsoft Windows "
-#~ "on\n"
-#~ "the same computer.\n"
-#~ "\n"
-#~ " Before choosing this option, please understand that after this\n"
-#~ "procedure, the size of your Microsoft Windows partition will be smaller\n"
-#~ "then when you started. You will have less free space under Microsoft\n"
-#~ "Windows to store your data or to install new software.\n"
-#~ "\n"
-#~ " * \"%s\": if you want to delete all data and all partitions present on\n"
-#~ "your hard drive and replace them with your new Mandriva Linux system,\n"
-#~ "choose this option. Be careful, because you will not be able to undo "
-#~ "your\n"
-#~ "choice after you confirm.\n"
-#~ "\n"
-#~ " !! If you choose this option, all data on your disk will be "
-#~ "deleted. !!\n"
-#~ "\n"
-#~ " * \"%s\": this will simply erase everything on the drive and begin "
-#~ "fresh,\n"
-#~ "partitioning everything from scratch. All data on your disk will be "
-#~ "lost.\n"
-#~ "\n"
-#~ " !! If you choose this option, all data on your disk will be lost. !!\n"
-#~ "\n"
-#~ " * \"%s\": choose this option if you want to manually partition your "
-#~ "hard\n"
-#~ "drive. Be careful -- it is a powerful but dangerous choice and you can "
-#~ "very\n"
-#~ "easily lose all your data. That's why this option is really only\n"
-#~ "recommended if you have done something like this before and have some\n"
-#~ "experience. For more instructions on how to use the DiskDrake utility,\n"
-#~ "refer to the ``Managing Your Partitions'' section in the ``Starter "
-#~ "Guide''."
-#~ msgstr ""
-#~ "Ara és quan heu de decidir en quin lloc del vostre disc dur voleu "
-#~ "instal·lar\n"
-#~ "el sistema operatiu Mandriva Linux. Si el disc és buit, o si un sistema\n"
-#~ "operatiu existent n'utilitza tot l'espai disponible, us caldrà \n"
-#~ "particionar-lo. Bàsicament, particionar un disc dur consisteix a dividir-"
-#~ "lo de\n"
-#~ "manera lògica per crear espai on instal·lar el nou sistema Mandriva "
-#~ "Linux.\n"
-#~ "\n"
-#~ "Atès que els efectes d'aquest procés solen ser irreversibles i poden\n"
-#~ "implicar pèrdua de dades si ja teniu un sistema operatiu instal·lat, el\n"
-#~ "particionament us pot espantar si sou un usuari sense experiència. Per "
-#~ "sort,\n"
-#~ "DrakX inclou un auxiliar que simplifica aquest procés. Abans de\n"
-#~ "continuar, però, llegiu la resta d'aquesta secció i, sobre tot, preneu-"
-#~ "vos\n"
-#~ "el temps que calgui.\n"
-#~ "\n"
-#~ "Segons la configuració del vostre disc dur, hi ha diverses opcions "
-#~ "possibles:\n"
-#~ "\n"
-#~ " * \"%s\": aquesta opció particionarà automàticament les unitats buides.\n"
-#~ "Amb aquesta opció no se us preguntarà res més.\n"
-#~ "\n"
-#~ " * \"%s\": l'auxiliar ha detectat una o més particions de Linux al "
-#~ "vostre\n"
-#~ "disc dur. Si voleu utilitzar-les, escolliu aquesta opció. Se us demanarà "
-#~ "que\n"
-#~ "trieu els punts de muntatge associats a cadascuna de les particions. Els\n"
-#~ "punts de muntatge existents se seleccionen per defecte, i en la majoria "
-#~ "dels\n"
-#~ "casos és bona idea conservar-los.\n"
-#~ "\n"
-#~ " * \"%s\" Si teniu el Microsoft Windows instal·lat al disc dur i n'ocupa "
-#~ "tot\n"
-#~ "l'espai disponible, caldrà crear-hi espai lliure per a GNU/Linux. Per fer-"
-#~ "ho,\n"
-#~ "podeu suprimir la partició i les dades del Windows (consulteu la solució\n"
-#~ "``Esborrar completament el disc\") o canviar la mida de la partició FAT "
-#~ "o\n"
-#~ "NTFS de Windows. Aquest canvi de mida es pot dur a terme sense cap pèrdua "
-#~ "de\n"
-#~ "daDES, sempre que la partició de Windows hagi estat desfragmentada\n"
-#~ "prèviament. És molt recomenable, fer una còpia de seguretat de les "
-#~ "dades.\n"
-#~ "Aquesta opció és la més recomanable si voleu utilitzar tant Mandriva "
-#~ "Linux\n"
-#~ "com Microsoft Windows al mateix ordinador.\n"
-#~ "\n"
-#~ " Abans de decidir-vos per aquesta opció, penseu que en acabar la "
-#~ "partició\n"
-#~ "de Microsoft Windows serà més petita que anteriorment. Tindreu menys "
-#~ "espai\n"
-#~ "lliure a Microsoft Windows per emmagatzemar-hi dades o instal·lar-hi més "
-#~ "programari.\n"
-#~ "\n"
-#~ " *\"%s\": si voleu suprimir totes les dades i particions que teniu al "
-#~ "disc\n"
-#~ "dur i substituir-les pel sistema Mandriva Linux, podeu escollir aquesta\n"
-#~ "opció. Aneu amb compte, però, perquè, un cop la confirmeu, no podreu fer-"
-#~ "vos enrere.\n"
-#~ "\n"
-#~ " ¡¡ Si trieu aquesta opció, totes les dades del disc s'esborraran !!.\n"
-#~ "\n"
-#~ " *\"%s\": aquesta opció simplement esborra tot el contingut del disc i\n"
-#~ "comença de nou, particionant des de zero. Totes les dades del disc es "
-#~ "perdran.\n"
-#~ "\n"
-#~ " ¡¡ Si trieu aquesta opció, totes les dades del disc s'esborraran !!.\n"
-#~ "\n"
-#~ " * \"%s\": si voleu particionar el disc dur manualment, podeu triar "
-#~ "aquesta\n"
-#~ "opció. Aneu amb compte: és una opció molt potent però també perillosa, "
-#~ "ja\n"
-#~ "que podeu perdre fàcilment totes les dades. Per tant, aquesta opció només "
-#~ "és\n"
-#~ "recomenable si heu fet abans alguna cosa similar i teniu una mica\n"
-#~ "d'experiència. Trobareu més instruccions sobre la utilitat DiskDrake a "
-#~ "la\n"
-#~ "secció ``Gestió de les particions'' de la ``Guia d'iniciació''."
-
-#~ msgid ""
-#~ "There you are. Installation is now complete and your GNU/Linux system is\n"
-#~ "ready to use. Just click \"%s\" to reboot the system. Do not forget to\n"
-#~ "remove the installation media (CD-ROM or floppy). The first thing you\n"
-#~ "should see after your computer has finished doing its hardware tests is "
-#~ "the\n"
-#~ "bootloader menu, giving you the choice of which operating system to "
-#~ "start.\n"
-#~ "\n"
-#~ "The \"%s\" button shows two more buttons to:\n"
-#~ "\n"
-#~ " * \"%s\": to create an installation floppy disk that will automatically\n"
-#~ "perform a whole installation without the help of an operator, similar to\n"
-#~ "the installation you just configured.\n"
-#~ "\n"
-#~ " Note that two different options are available after clicking the "
-#~ "button:\n"
-#~ "\n"
-#~ " * \"%s\". This is a partially automated installation. The "
-#~ "partitioning\n"
-#~ "step is the only interactive procedure.\n"
-#~ "\n"
-#~ " * \"%s\". Fully automated installation: the hard disk is completely\n"
-#~ "rewritten, all data is lost.\n"
-#~ "\n"
-#~ " This feature is very handy when installing a number of similar "
-#~ "machines.\n"
-#~ "See the Auto install section on our web site for more information.\n"
-#~ "\n"
-#~ " * \"%s\": saves a list of the packages selected in this installation. "
-#~ "To\n"
-#~ "use this selection with another installation, insert the floppy and "
-#~ "start\n"
-#~ "the installation. At the prompt, press the [F1] key and type >>linux\n"
-#~ "defcfg=\"floppy\" <<."
-#~ msgstr ""
-#~ "Ja ho teniu. S'ha completat la instal·lació i el vostre sistema GNU/"
-#~ "Linux\n"
-#~ "està preparat per fer-se servir. Simplement premeu \"%s\" per reiniciar "
-#~ "el\n"
-#~ "sistema. No oblideu treure la font d'instal·lació (CD-ROM o disquet).\n"
-#~ "La primera cosa que veureu, després que l'ordinador hagi finalitzat les\n"
-#~ "comprovacions de maquinari, és el menú del carregador d'arrencada, que "
-#~ "us\n"
-#~ "deixa triar el sistema operatiu amb què voleu iniciar.\n"
-#~ "\n"
-#~ "El botó \"%s\" mostra dos botons més per:\n"
-#~ "\n"
-#~ " * \"%s\": per crear un disquet d'instal·lació que realitzarà "
-#~ "automàticament\n"
-#~ "una instal·lació completa sense l'ajuda d'un operador, semblant a la\n"
-#~ "instal·lació que acabeu de configurar.\n"
-#~ "\n"
-#~ " Tingueu en compte que hi ha dues opcions diferents després de fer clic "
-#~ "al botó:\n"
-#~ "\n"
-#~ " * \"%s\". Aquesta és una instal·lació parcialment automatitzada; el "
-#~ "pas\n"
-#~ "de particionament és l'únic procediment interactiu.\n"
-#~ "\n"
-#~ " * \"%s\". Instal·lació completament automatitzada: el disc dur es\n"
-#~ "reescriu completament i totes les dades es perden.\n"
-#~ "\n"
-#~ " Aquesta característica és força útil quan es fa una instal·lació a un\n"
-#~ "cert nombre d'ordinadors similars. En trobareu més informació a la "
-#~ "secció\n"
-#~ "d'instal·lació automàtica del nostre lloc web.\n"
-#~ "\n"
-#~ " * \"%s\": desa una llista dels paquets seleccionats en aquesta\n"
-#~ "instal·lació. Per utilitzar aquesta selecció en una altra instal·lació,\n"
-#~ "inseriu el disquet i inicieu la instal·lació. A l'indicador, premeu la "
-#~ "tecla\n"
-#~ "F1, i escriviu >>linux defcfg=\"floppy\"<<."
-
-#~ msgid ""
-#~ "Any partitions that have been newly defined must be formatted for use\n"
-#~ "(formatting means creating a file system).\n"
-#~ "\n"
-#~ "At this time, you may wish to reformat some already existing partitions "
-#~ "to\n"
-#~ "erase any data they contain. If you wish to do that, please select those\n"
-#~ "partitions as well.\n"
-#~ "\n"
-#~ "Please note that it is not necessary to reformat all pre-existing\n"
-#~ "partitions. You must reformat the partitions containing the operating\n"
-#~ "system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-#~ "reformat partitions containing data that you wish to keep (typically\n"
-#~ "\"/home\").\n"
-#~ "\n"
-#~ "Please be careful when selecting partitions. After formatting, all data "
-#~ "on\n"
-#~ "the selected partitions will be deleted and you will not be able to "
-#~ "recover\n"
-#~ "it.\n"
-#~ "\n"
-#~ "Click on \"%s\" when you are ready to format the partitions.\n"
-#~ "\n"
-#~ "Click on \"%s\" if you want to choose another partition for your new\n"
-#~ "Mandriva Linux operating system installation.\n"
-#~ "\n"
-#~ "Click on \"%s\" if you wish to select partitions that will be checked "
-#~ "for\n"
-#~ "bad blocks on the disk."
-#~ msgstr ""
-#~ "Per poder utilitzar les particions que s'acaben de definir cal formatar-"
-#~ "les\n"
-#~ "(la formatació consisteix a crear-hi un sistema de fitxers).\n"
-#~ "\n"
-#~ "En aquest punt, potser voldreu tornar a formatar algunes de les "
-#~ "particions\n"
-#~ "existents per eliminar les dades que contenen. Si és així, seleccioneu\n"
-#~ "també aquestes particions.\n"
-#~ "\n"
-#~ "Tingueu en compte que no cal tornar a formatar totes les particions que "
-#~ "ja\n"
-#~ "existien; heu de tornar a formatar les particions que continguin el "
-#~ "sistema\n"
-#~ "operatiu (com ara \"/\", \"/usr\" o \"/var\"), però no les que contenen\n"
-#~ "dades que voleu conservar (habitualment, \"/home\").\n"
-#~ "\n"
-#~ "Aneu amb compte en seleccionar les particions; després de la formatació,\n"
-#~ "totes les dades s'hauran suprimit i no en podreu recuperar cap.\n"
-#~ "\n"
-#~ "Feu clic a \"%s\" quan estigueu a punt per formatar les particions.\n"
-#~ "\n"
-#~ "Feu clic a \"%s\" si voleu seleccionar una altra partició per instal·lar\n"
-#~ "el nou sistema Mandriva Linux.\n"
-#~ "\n"
-#~ "Feu clic a \"%s\" si voleu seleccionar particions on cercar-hi blocs "
-#~ "defectuosos."
-
-#~ msgid ""
-#~ "At the time you are installing Mandriva Linux, it is likely that some\n"
-#~ "packages will have been updated since the initial release. Bugs may have\n"
-#~ "been fixed, security issues resolved. To allow you to benefit from these\n"
-#~ "updates, you are now able to download them from the Internet. Check \"%s"
-#~ "\"\n"
-#~ "if you have a working Internet connection, or \"%s\" if you prefer to\n"
-#~ "install updated packages later.\n"
-#~ "\n"
-#~ "Choosing \"%s\" will display a list of places from which updates can be\n"
-#~ "retrieved. You should choose one near to you. A package-selection tree "
-#~ "will\n"
-#~ "appear: review the selection, and press \"%s\" to retrieve and install "
-#~ "the\n"
-#~ "selected package(s), or \"%s\" to abort."
-#~ msgstr ""
-#~ "Ara esteu instal·lant Mandriva Linux, és probable que alguns paquets\n"
-#~ "hagin estat actualitzats desde la data de llançament. Alguns errors "
-#~ "poden\n"
-#~ "haver estat resolts, i altres problemes de seguretat poden estar ja "
-#~ "corregits.\n"
-#~ "Per beneficiar-vos d'aquestes actualitzacions, les podeu baixar "
-#~ "d'Internet.\n"
-#~ "Trieu \"%s\" si teniu una connexió a Internet operativa, o \"%s\" si "
-#~ "preferiu\n"
-#~ "instal·lar-les més tard.\n"
-#~ "\n"
-#~ "Si trieu \"%s\" apareixerà una llista de llocs des d'on podeu baixar les\n"
-#~ "actualitzacions. Escolliu la ubicació més propera. Aleshores, apareixerà\n"
-#~ "un arbre de selecció de paquets: comproveu la selecció i premeu \"%s\" "
-#~ "per\n"
-#~ "baixar i instal·lar els paquets seleccionats, o \"%s\" per abandonar."
-
-#~ msgid ""
-#~ "At this point, DrakX will allow you to choose the security level desired\n"
-#~ "for the machine. As a rule of thumb, the security level should be set\n"
-#~ "higher if the machine will contain crucial data, or if it will be a "
-#~ "machine\n"
-#~ "directly exposed to the Internet. The trade-off of a higher security "
-#~ "level\n"
-#~ "is generally obtained at the expense of ease of use.\n"
-#~ "\n"
-#~ "If you do not know what to choose, stay with the default option. You "
-#~ "will\n"
-#~ "be able to change that security level later with tool draksec from the\n"
-#~ "Mandrake Control Center.\n"
-#~ "\n"
-#~ "The \"%s\" field can inform the system of the user on this computer who\n"
-#~ "will be responsible for security. Security messages will be sent to that\n"
-#~ "address."
-#~ msgstr ""
-#~ "Ara és el moment de triar el nivell de seguretat desitjat per a la "
-#~ "màquina.\n"
-#~ "Com a norma general, el nivell de seguretat ha de ser més alt si la "
-#~ "màquina\n"
-#~ "conté dades importants, o si està connectada directament a Internet.\n"
-#~ "Tanmateix, un nivell alt de seguretat sovint comporta una disminució de "
-#~ "la\n"
-#~ "facilitat d'ús.\n"
-#~ "\n"
-#~ "Si no sabeu quin escollir, deixeu l'opció per defecte.. Podreu canviar\n"
-#~ "el nivell de seguretat més tard amb l'eina draksec del\n"
-#~ "Centre de Control Mandriva Linux.\n"
-#~ "\n"
-#~ "El camp \"%s\" pot informar l'usuari del sistema qui serà el responsable\n"
-#~ "de la seguretat. Els missatges de seguretat s'enviaran a aquesta adreça."
-
-#~ msgid ""
-#~ "\"%s\": check the current country selection. If you are not in this\n"
-#~ "country, click on the \"%s\" button and choose another one. If your "
-#~ "country\n"
-#~ "is not in the first list shown, click the \"%s\" button to get the "
-#~ "complete\n"
-#~ "country list."
-#~ msgstr ""
-#~ "\"%s\": comproveu que la selecció del país és correcta. Si no sou a\n"
-#~ "aquest país, feu clic al botó \"%s\" i seleccioneu-ne un altre.\n"
-#~ "Si el vostre país no és a la primera llista, feu clic al botó \"%s\" per\n"
-#~ "obtenir una llista de països completa."
-
-#~ msgid ""
-#~ "This step is activated only if an existing GNU/Linux partition has been\n"
-#~ "found on your machine.\n"
-#~ "\n"
-#~ "DrakX now needs to know if you want to perform a new install or an "
-#~ "upgrade\n"
-#~ "of an existing Mandriva Linux system:\n"
-#~ "\n"
-#~ " * \"%s\": For the most part, this completely wipes out the old system. "
-#~ "If\n"
-#~ "you wish to change how your hard drives are partitioned, or change the "
-#~ "file\n"
-#~ "system, you should use this option. However, depending on your "
-#~ "partitioning\n"
-#~ "scheme, you can prevent some of your existing data from being over-"
-#~ "written.\n"
-#~ "\n"
-#~ " * \"%s\": this installation class allows you to update the packages\n"
-#~ "currently installed on your Mandriva Linux system. Your current\n"
-#~ "partitioning scheme and user data is not altered. Most of other\n"
-#~ "configuration steps remain available, similar to a standard "
-#~ "installation.\n"
-#~ "\n"
-#~ "Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
-#~ "running version \"8.1\" or later. Performing an Upgrade on versions "
-#~ "prior\n"
-#~ "to Mandriva Linux version \"8.1\" is not recommended."
-#~ msgstr ""
-#~ "Aquest pas només s'activa si s'ha trobat una partició GNU/Linux antiga\n"
-#~ "al vostre ordinador.\n"
-#~ "\n"
-#~ "DrakX necessita saber si voleu realitzar una instal·lació nova o\n"
-#~ "una actualització d'un sistema Mandriva Linux existent:\n"
-#~ "\n"
-#~ " * \"%s\": aquesta opció destrueix gairebé del tot el sistema antic. Si\n"
-#~ "voleu canviar les particions dels discs durs, o el sistema de fitxers,\n"
-#~ "heu d'utilitzar aquesta opció. No obstant això, i depenent de l'esquema "
-#~ "de\n"
-#~ "particionament que tingueu, podeu evitar que part de les dades existents "
-#~ "se\n"
-#~ "sobreescriguin.\n"
-#~ "\n"
-#~ " * \"%s\": aquest tipus d'instal·lació us permet actualitzar els paquets "
-#~ "que\n"
-#~ "ja estan instal·lats al sistema Mandriva Linux. L'esquema de "
-#~ "particionament\n"
-#~ "actual i les dades d'usuari no queden afectades. La majoria de les "
-#~ "altres\n"
-#~ "fases de configuració queden disponibles, de manera similar a una\n"
-#~ "instal·lació estàndard.\n"
-#~ "\n"
-#~ "L'opció “Actualitza” ha de funcionar correctament en sistemes Mandriva "
-#~ "Linux\n"
-#~ "amb la versió \"8.1\" o posteriors. No es recomana realitzar una\n"
-#~ "actualització en versions de Mandriva Linux anteriors a la \"8.1\"."
-
-#~ msgid ""
-#~ "Depending on the language you chose in section , DrakX will "
-#~ "automatically\n"
-#~ "select a particular type of keyboard configuration. Check that the\n"
-#~ "selection suits you or choose another keyboard layout.\n"
-#~ "\n"
-#~ "Also, you may not have a keyboard that corresponds exactly to your\n"
-#~ "language: for example, if you are an English-speaking Swiss native, you "
-#~ "may\n"
-#~ "have a Swiss keyboard. Or if you speak English and are located in "
-#~ "Quebec,\n"
-#~ "you may find yourself in the same situation where your native language "
-#~ "and\n"
-#~ "country-set keyboard do not match. In either case, this installation "
-#~ "step\n"
-#~ "will allow you to select an appropriate keyboard from a list.\n"
-#~ "\n"
-#~ "Click on the \"%s\" button to be presented with the complete list of\n"
-#~ "supported keyboards.\n"
-#~ "\n"
-#~ "If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-#~ "dialog will allow you to choose the key binding that will switch the\n"
-#~ "keyboard between the Latin and non-Latin layouts."
-#~ msgstr ""
-#~ "DrakX seleccionarà automàticament la configuració de teclat correcta\n"
-#~ "segons l'idioma que hagueu escollit a Secció. Comproveu que la selecció\n"
-#~ "us vagi bé o escolliu una altra configuració de teclat.\n"
-#~ "\n"
-#~ "Tanmateix, pot ser que tingueu un teclat que no correspongués exactament "
-#~ "al\n"
-#~ "vostre idioma: per exemple, si sou un suís que parla anglès, potser teniu "
-#~ "un\n"
-#~ "teclat suís. O, si parleu anglès però viviu al Quebec, us podeu trobar en "
-#~ "la\n"
-#~ "mateixa situació i el vostre teclat no coincidirà amb el vostre idioma. "
-#~ "En\n"
-#~ "tots dos casos, aquesta fase de la instal·lació us permetrà triar un "
-#~ "teclat\n"
-#~ "adequat d'una llista.\n"
-#~ "\n"
-#~ "Feu clic al botó \"%s\" per veure la llista completa de teclats "
-#~ "disponibles.\n"
-#~ "\n"
-#~ "Si trieu una disposició de teclat basada en un alfabet no llatí, el "
-#~ "diàleg\n"
-#~ "següent us permetrà escollir la tecla que servirà per canviar entre les\n"
-#~ "configuracions llatina i no llatina."
-
-#~ msgid ""
-#~ "Your choice of preferred language will affect the language of the\n"
-#~ "documentation, the installer and the system in general. Select first the\n"
-#~ "region you are located in, and then the language you speak.\n"
-#~ "\n"
-#~ "Clicking on the \"%s\" button will allow you to select other languages "
-#~ "to\n"
-#~ "be installed on your workstation, thereby installing the language-"
-#~ "specific\n"
-#~ "files for system documentation and applications. For example, if you "
-#~ "will\n"
-#~ "host users from Spain on your machine, select English as the default\n"
-#~ "language in the tree view and \"%s\" in the Advanced section.\n"
-#~ "\n"
-#~ "About UTF-8 (unicode) support: Unicode is a new character encoding meant "
-#~ "to\n"
-#~ "cover all existing languages. Though full support for it in GNU/Linux is\n"
-#~ "still under development. For that reason, Mandriva Linux will be using "
-#~ "it\n"
-#~ "or not depending on the user choices:\n"
-#~ "\n"
-#~ " * If you choose a languages with a strong legacy encoding (latin1\n"
-#~ "languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, "
-#~ "most\n"
-#~ "iso-8859-2 languages), the legacy encoding will be used by default;\n"
-#~ "\n"
-#~ " * Other languages will use unicode by default;\n"
-#~ "\n"
-#~ " * If two or more languages are required, and those languages are not "
-#~ "using\n"
-#~ "the same encoding, then unicode will be used for the whole system;\n"
-#~ "\n"
-#~ " * Finally, unicode can also be forced for the system at user request by\n"
-#~ "selecting option \"%s\" independently of which language(s) have been\n"
-#~ "chosen.\n"
-#~ "\n"
-#~ "Note that you're not limited to choosing a single additional language. "
-#~ "You\n"
-#~ "may choose several ones, or even install them all by selecting the \"%s"
-#~ "\"\n"
-#~ "box. Selecting support for a language means translations, fonts, spell\n"
-#~ "checkers, etc. for that language will also be installed.\n"
-#~ "\n"
-#~ "To switch between the various languages installed on the system, you can\n"
-#~ "launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
-#~ "language used by the entire system. Running the command as a regular "
-#~ "user\n"
-#~ "will only change the language settings for that particular user."
-#~ msgstr ""
-#~ "L'idioma preferit que trieu afectarà a l'idioma de la documentació,\n"
-#~ "l'instal·lador i a tot el sistema en general. Seleccioneu primer la\n"
-#~ "regió on us trobeu i després l'idioma que parleu.\n"
-#~ "\n"
-#~ "Si feu clic al botó \"%s\" podreu seleccionar altres idiomes que vulgueu\n"
-#~ "instal·lar a la vostra estació de treball. S'instal·laran els fitxers\n"
-#~ "d'idioma específics de la documentació i de les aplicacions. Per "
-#~ "exemple,\n"
-#~ "si heu de tenir usuaris espanyols a l'ordinador, podeu triar l'anglès com "
-#~ "a\n"
-#~ "idioma per defecte a la vista d'arbre i marcar \"%s\" a la secció "
-#~ "Avançat.\n"
-#~ "\n"
-#~ "En quant al suport UTF-8 (unicode): Unicode és una nova codificació de\n"
-#~ "caràcters que cobreix tots els idiomes existents. El suport complet a\n"
-#~ "GNU/Linux encara està sota desenvolupament. Per aquesta raó, Mandriva "
-#~ "Linux\n"
-#~ "l'usarà o no depenent de les opcions que esculli l'usuari:\n"
-#~ "\n"
-#~ " * Si escolliu un idioma amb una codificació existent forta(idiomes\n"
-#~ "llatins, rus, japonès, xinès, coreà, thai, grec, turc, la majoria dels\n"
-#~ "idiomes iso-8859-2), la codificació existent s'usarà per defecte;\n"
-#~ "\n"
-#~ " * La resta d'idiomes usaran unicode per defecte;\n"
-#~ "\n"
-#~ " * Si s'instal·len dos o més idiomes i aquests idiomes no usen la "
-#~ "mateixa\n"
-#~ "codificació, llavors s'usarà unicode per tot el sistema;\n"
-#~ "\n"
-#~ " * Finalment, es pot forçar l'ús de unicode si s'escull la opció\"%s\"\n"
-#~ "independentment dels idiomes escollits.\n"
-#~ "\n"
-#~ "Noteu que no esteu limitats a escollir només un idioma addicional. Podeu\n"
-#~ "triar diversos idiomes addicionals, i fins i tot instal·lar-los tots\n"
-#~ "activant la casella \"%s\". Si habiliteu un idioma esteu instal·lant les\n"
-#~ "traduccions, els tipus de lletra, els verificadors ortogràfics, etc. "
-#~ "d'aquest idioma.\n"
-#~ "\n"
-#~ "Per passar d'un dels idiomes a un altre, podeu executar com a \"root\"\n"
-#~ "l'ordre \"/usr/sbin/localedrake\" per canviar l'idioma de tot el sistema. "
-#~ "Si\n"
-#~ "l'executeu com a usuari normal, només es canviarà l'idioma d'aquest\n"
-#~ "usuari concret."
-
-#~ msgid ""
-#~ "Usually, DrakX has no problems detecting the number of buttons on your\n"
-#~ "mouse. If it does, it assumes you have a two-button mouse and will\n"
-#~ "configure it for third-button emulation. The third-button mouse button of "
-#~ "a\n"
-#~ "two-button mouse can be ``pressed'' by simultaneously clicking the left "
-#~ "and\n"
-#~ "right mouse buttons. DrakX will automatically know whether your mouse "
-#~ "uses\n"
-#~ "a PS/2, serial or USB interface.\n"
-#~ "\n"
-#~ "In case you have a 3 buttons mouse without wheel, you can choose the "
-#~ "mouse\n"
-#~ "that says \"%s\". DrakX will then configure your mouse so that you can\n"
-#~ "simulate the wheel with it: to do so, press the middle button and move "
-#~ "your\n"
-#~ "mouse up and down.\n"
-#~ "\n"
-#~ "If for some reason you wish to specify a different type of mouse, select "
-#~ "it\n"
-#~ "from the list provided.\n"
-#~ "\n"
-#~ "If you choose a mouse other than the default, a test screen will be\n"
-#~ "displayed. Use the buttons and wheel to verify that the settings are\n"
-#~ "correct and that the mouse is working correctly. If the mouse is not\n"
-#~ "working well, press the space bar or [Return] key to cancel the test and "
-#~ "to\n"
-#~ "go back to the list of choices.\n"
-#~ "\n"
-#~ "Wheel mice are occasionally not detected automatically, so you will need "
-#~ "to\n"
-#~ "select your mouse from a list. Be sure to select the one corresponding "
-#~ "to\n"
-#~ "the port that your mouse is attached to. After selecting a mouse and\n"
-#~ "pressing the \"%s\" button, a mouse image is displayed on-screen. Scroll\n"
-#~ "the mouse wheel to ensure that it is activated correctly. Once you see "
-#~ "the\n"
-#~ "on-screen scroll wheel moving as you scroll your mouse wheel, test the\n"
-#~ "buttons and check that the mouse pointer moves on-screen as you move "
-#~ "your\n"
-#~ "mouse."
-#~ msgstr ""
-#~ "DrakX generalment detecta el nombre de botons que té el vostre ratolí.\n"
-#~ "Si no pot, assumeix que teniu un ratolí de dos botons i el configurarà "
-#~ "per\n"
-#~ "emular el tercer botó. Es pot ``prémer' ' el tercer botó d'un ratolí de "
-#~ "dos\n"
-#~ "botons fent clic simultàniament als botons dret i esquerre. DrakX\n"
-#~ "detectarà automàticament si el ratolí utilitza la interfície PS/2, sèrie "
-#~ "o USB.\n"
-#~ "\n"
-#~ "En cas que tingueu un ratolí de 3 botons sense rodeta, podeu escollir\n"
-#~ "\"%s\". DrakX configurarà el ratolí per tal de simular la rodeta,\n"
-#~ "per fer-ho premeu el botó central i moveu el ratolí a dalt i a baix.\n"
-#~ "\n"
-#~ "Si per alguna raó voleu especificar un altre tipus de ratolí,\n"
-#~ "seleccioneu-lo a la llista.\n"
-#~ "\n"
-#~ "Si escolliu un ratolí diferent del ratolí per defecte, es mostrarà una\n"
-#~ "pantalla de prova. Utilitzeu els botons i la roda per verificar que la\n"
-#~ "configuració és correcta i que el ratolí funciona bé. Si el ratolí no\n"
-#~ "funciona bé, premeu la barra d'espai o la tecla [Intro] per cancel·lar "
-#~ "la\n"
-#~ "prova i tornar a la llista.\n"
-#~ "\n"
-#~ "De vegaDES, la roda del ratolí no es detecta automàticament. En aquest "
-#~ "cas,\n"
-#~ "haureu de seleccionar-lo a la llista. Assegureu-vos de triar el que\n"
-#~ "correspon al port a què esta connectat el ratolí. Després de seleccionar "
-#~ "un\n"
-#~ "ratolí i prémer el botó \"%s\", a la pantalla apareixerà un ratolí. "
-#~ "Mogueu la\n"
-#~ "roda del ratolí per assegurar-vos que s'ha activat correctament, "
-#~ "comprovant\n"
-#~ "que es mou també a la pantalla; després comproveu els botons i que el "
-#~ "cursor\n"
-#~ "de la pantalla es mou quan moveu el ratolí."
-
-#~ msgid ""
-#~ "This is the most crucial decision point for the security of your GNU/"
-#~ "Linux\n"
-#~ "system: you have to enter the \"root\" password. \"Root\" is the system\n"
-#~ "administrator and is the only user authorized to make updates, add "
-#~ "users,\n"
-#~ "change the overall system configuration, and so on. In short, \"root\" "
-#~ "can\n"
-#~ "do everything! That is why you must choose a password that is difficult "
-#~ "to\n"
-#~ "guess - DrakX will tell you if the password you chose is too easy. As "
-#~ "you\n"
-#~ "can see, you are not forced to enter a password, but we strongly advise "
-#~ "you\n"
-#~ "against this. GNU/Linux is just as prone to operator error as any other\n"
-#~ "operating system. Since \"root\" can overcome all limitations and\n"
-#~ "unintentionally erase all data on partitions by carelessly accessing the\n"
-#~ "partitions themselves, it is important that it be difficult to become\n"
-#~ "\"root\".\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. Never write down the \"root\" password -- it makes it "
-#~ "far\n"
-#~ "too easy to compromise a system.\n"
-#~ "\n"
-#~ "One caveat -- do not make the password too long or complicated because "
-#~ "you\n"
-#~ "must be able to remember it!\n"
-#~ "\n"
-#~ "The password will not be displayed on screen as you type it in. To "
-#~ "reduce\n"
-#~ "the chance of a blind typing error you will need to enter the password\n"
-#~ "twice. If you do happen to make the same typing error twice, this\n"
-#~ "``incorrect'' password will be the one you will have use the first time "
-#~ "you\n"
-#~ "connect.\n"
-#~ "\n"
-#~ "If you wish access to this computer to be controlled by an "
-#~ "authentication\n"
-#~ "server, click the \"%s\" button.\n"
-#~ "\n"
-#~ "If your network uses either LDAP, NIS, or PDC Windows Domain "
-#~ "authentication\n"
-#~ "services, select the appropriate one for \"%s\". If you do not know "
-#~ "which\n"
-#~ "one to use, you should ask your network administrator.\n"
-#~ "\n"
-#~ "If you happen to have problems with remembering passwords, if your "
-#~ "computer\n"
-#~ "will never be connected to the Internet and you absolutely trust "
-#~ "everybody\n"
-#~ "who uses your computer, you can choose to have \"%s\"."
-#~ msgstr ""
-#~ "Aquesta és la decisió més important quant a la seguretat del vostre "
-#~ "sistema\n"
-#~ "GNU/Linux: heu d'introduir la contrasenya de l'usuari \"root\". El \"root"
-#~ "\"\n"
-#~ "és l'administrador del sistema i és l'únic autoritzat a fer "
-#~ "actualitzacions,\n"
-#~ "afegir usuaris, canviar la configuració del tot el sistema, etc. En "
-#~ "poques\n"
-#~ "paraules, el \"root\" ho pot fer tot! És per això que heu d'escollir una\n"
-#~ "contrasenya que sigui difícil d'endevinar; DrakX us avisarà si és massa\n"
-#~ "fàcil. Com veieu, podeu optar per no introduir cap contrasenya, però us\n"
-#~ "aconsellem vivament que no ho feu. GNU/Linux és tan vulnerable als "
-#~ "errors\n"
-#~ "de l'operador com qualsevol altre sistema operatiu. Com que l'usuari\n"
-#~ "\"root\" pot superar totes les limitacions i esborrar accidentalment "
-#~ "totes\n"
-#~ "les dades de qualsevol partició com a conseqüència d'accedir-hi sense\n"
-#~ "precaucions, és molt important que sigui difícil esdevenir \"root\".\n"
-#~ "\n"
-#~ "La contrasenya ha de ser una mescla de caràcters alfanumèrics i, com a\n"
-#~ "mínim, de 8 caràcters de longitud. No apunteu enlloc la contrasenya de\n"
-#~ "\"root\" ja que és molt fàcil comprometre el sistema si ho feu.\n"
-#~ "\n"
-#~ "Tot i això, no feu la contrasenya massa llarga o complicada perquè heu "
-#~ "de\n"
-#~ "poder recordar-la!\n"
-#~ "\n"
-#~ "La contrasenya no es mostrarà per pantalla quan la teclegeu. Per tant,\n"
-#~ "haureu d'escriure-la dues vegades per reduir la probabilitat d'errors en\n"
-#~ "l'escriptura. Si, malauradament, feu el mateix error dues vegaDES, "
-#~ "haureu\n"
-#~ "d'usar aquesta contrasenya ``incorrecta'' el primer cop que us "
-#~ "connecteu.\n"
-#~ "\n"
-#~ "Si voleu que aquest ordinador sigui controlat per un servidor\n"
-#~ "d'autenticació, feu clic al botó \"%s\".\n"
-#~ "\n"
-#~ "Si la vostra xarxa usa els serveis d'autenticació LDAP, NIS o Windows\n"
-#~ "Domain, seleccioneu l'adient per a \"%s\" . Si no sabeu quin utilitzar,\n"
-#~ "pregunteu-ho al vostre administrador de xarxa.\n"
-#~ "\n"
-#~ "Si teniu problemes per recordar les contrasenyes, si l'ordinador mai no "
-#~ "es\n"
-#~ "connectarà a Internet o si confieu absolutament en tothom que utilitza\n"
-#~ "l'ordinador, podeu triar tenir \"%s\"."
-
-#~ msgid ""
-#~ "This dialog allows you to fine tune your bootloader:\n"
-#~ "\n"
-#~ " * \"%s\": there are three choices for your bootloader:\n"
-#~ "\n"
-#~ " * \"%s\": if you prefer GRUB (text menu).\n"
-#~ "\n"
-#~ " * \"%s\": if you prefer LILO with its text menu interface.\n"
-#~ "\n"
-#~ " * \"%s\": if you prefer LILO with its graphical interface.\n"
-#~ "\n"
-#~ " * \"%s\": in most cases, you will not change the default (\"%s\"), but "
-#~ "if\n"
-#~ "you prefer, the bootloader can be installed on the second hard drive\n"
-#~ "(\"%s\"), or even on a floppy disk (\"%s\");\n"
-#~ "\n"
-#~ " * \"%s\": after a boot or a reboot of the computer, this is the delay\n"
-#~ "given to the user at the console to select a boot entry other than the\n"
-#~ "default.\n"
-#~ "\n"
-#~ " * \"%s\": ACPI is a new standard (appeared during year 2002) for power\n"
-#~ "management, notably for laptops. If you know your hardware supports it "
-#~ "and\n"
-#~ "you need it, check this box.\n"
-#~ "\n"
-#~ " * \"%s\": If you noticed hardware problems on your machine (IRQ "
-#~ "conflicts,\n"
-#~ "instabilities, machine freeze, ...) you should try disabling APIC by\n"
-#~ "checking this box.\n"
-#~ "\n"
-#~ "!! Be aware that if you choose not to install a bootloader (by selecting\n"
-#~ "\"%s\"), you must ensure that you have a way to boot your Mandriva Linux\n"
-#~ "system! Be sure you know what you are doing before changing any of the\n"
-#~ "options. !!\n"
-#~ "\n"
-#~ "Clicking the \"%s\" button in this dialog will offer advanced options "
-#~ "which\n"
-#~ "are normally reserved for the expert user."
-#~ msgstr ""
-#~ "Aquest diàleg us permet ajustar el carregador d'arrencada:\n"
-#~ "\n"
-#~ " * \"%s\": hi ha tres opcions per al carregador d'arrencada:\n"
-#~ "\n"
-#~ " * \"%s\": si preferiu el GRUB (menú de text).\n"
-#~ "\n"
-#~ " * \"%s\": si preferiu el LILO amb la seva interfície de menús de "
-#~ "text.\n"
-#~ "\n"
-#~ " * \"%s\": si preferiu el LILO amb la seva interfície gràfica.\n"
-#~ "\n"
-#~ " * \"%s\": en la majoria de casos, no heu de canviar l'opció\n"
-#~ "per defecte (\"%s\"), però,si ho preferiu, el carregador d'arrencada\n"
-#~ "pot instal·lar-se en el segon disc dur (\"%s\"), o fins i tot en un \n"
-#~ "disquet (\"%s\").\n"
-#~ "\n"
-#~ " * \"%s\": quan s'arrenca o es torna a arrencar l'ordinador, aquest\n"
-#~ "és el temps de què disposa l'usuari per escollir una entrada diferent\n"
-#~ "de l'entrada per defecte en el menú d'arrencada.\n"
-#~ "\n"
-#~ " * \"%s\": ACPI és un nou estàndard (aparegut durant l'any 2002) per a "
-#~ "la\n"
-#~ "gestió d'energia, principalment dels portàtils. Si sabeu que el vostre\n"
-#~ "maquinari el suporta i que el necessiteu marqueu aquesta opció.\n"
-#~ "\n"
-#~ " * \"%s\": Si heu tingut problemes de maquinari al vostre ordinador\n"
-#~ "(conflictes IRQ, poca estabilitat, penjades de l'ordinador, ...) haurieu "
-#~ "de\n"
-#~ "probar a desactivar APIC marcant aquesta opció.\n"
-#~ "\n"
-#~ "!! Tingueu en compte que si escolliu no instal·lar un carregador\n"
-#~ "d'arrencada (seleccionant \"%s\"), heu d'estar segurs que teniu alguna\n"
-#~ "manera d'arrencar el vostre sistema Mandriva Linux! Assegureu-vos de\n"
-#~ "saber què feu abans de canviar alguna de les opcions!!\n"
-#~ "\n"
-#~ "Si feu clic al botó \"%s\" d'aquest diàleg accedireu a algunes opcions\n"
-#~ "avançaDES, reservades normalment als usuaris experts."
-
-#~ msgid "GRUB"
-#~ msgstr "GRUB"
-
-#~ msgid "/dev/hda"
-#~ msgstr "/dev/hda"
-
-#~ msgid "/dev/hdb"
-#~ msgstr "/dev/hdb"
-
-#~ msgid "/dev/fd0"
-#~ msgstr "/dev/fd0"
-
-#~ msgid "Delay before booting the default image"
-#~ msgstr "Demora abans d'arrencar la imatge predeterminada"
-
-#~ msgid ""
-#~ "After you have configured the general bootloader parameters, the list of\n"
-#~ "boot options that will be available at boot time will be displayed.\n"
-#~ "\n"
-#~ "If there are other operating systems installed on your machine they will\n"
-#~ "automatically be added to the boot menu. You can fine-tune the existing\n"
-#~ "options by clicking \"%s\" to create a new entry; selecting an entry and\n"
-#~ "clicking \"%s\" or \"%s\" to modify or remove it. \"%s\" validates your\n"
-#~ "changes.\n"
-#~ "\n"
-#~ "You may also not want to give access to these other operating systems to\n"
-#~ "anyone who goes to the console and reboots the machine. You can delete "
-#~ "the\n"
-#~ "corresponding entries for the operating systems to remove them from the\n"
-#~ "bootloader menu, but you will need a boot disk in order to boot those "
-#~ "other\n"
-#~ "operating systems!"
-#~ msgstr ""
-#~ "Un cop configurats els paràmetres generals del carregador de "
-#~ "l'arrencada, \n"
-#~ "es mostrarà la llista d'opcions de càrrega que es veurà en arrencar la "
-#~ "màquina.\n"
-#~ "\n"
-#~ "Si hi ha algun altre sistema operatiu instal·lat en el vostre ordinador, "
-#~ "s'afegirà\n"
-#~ "automàticament al menú d'arrencada. Podeu ajustar les opcions existents "
-#~ "fent\n"
-#~ "clic a \"%s\" per crear una nova entrada, i seleccionant una entrada i "
-#~ "fent clic\n"
-#~ "a \"%s\" o a \"%s\" per modificar-la o eliminar-la. \"%s\" valida els "
-#~ "canvis.\n"
-#~ "\n"
-#~ "També és possible que no vulgueu permetre l'accés a aquests sistemes "
-#~ "operatius\n"
-#~ "a qualsevol que vagi a la consola i reiniciï l'ordinador; en aquest cas, "
-#~ "podeu suprimir\n"
-#~ "les entrades corresponents a aquests sistemes operatius per eliminar-los "
-#~ "del menú\n"
-#~ "del carregador d'arrencada, però aleshores us caldrà un disc d'arrencada "
-#~ "per poder-los\n"
-#~ "arrencar!"
-
-#~ msgid ""
-#~ "LILO and GRUB are GNU/Linux bootloaders. Normally, this stage is totally\n"
-#~ "automated. DrakX will analyze the disk boot sector and act according to\n"
-#~ "what it finds there:\n"
-#~ "\n"
-#~ " * if a Windows boot sector is found, it will replace it with a GRUB/"
-#~ "LILO\n"
-#~ "boot sector. This way you will be able to load either GNU/Linux or any\n"
-#~ "other OS installed on your machine.\n"
-#~ "\n"
-#~ " * if a GRUB or LILO boot sector is found, it will replace it with a new\n"
-#~ "one.\n"
-#~ "\n"
-#~ "If it cannot make a determination, DrakX will ask you where to place the\n"
-#~ "bootloader. Generally, the \"%s\" is the safest place. Choosing \"%s\"\n"
-#~ "will not install any bootloader. Use it only if you know what you are "
-#~ "doing."
-#~ msgstr ""
-#~ "LILO i GRUB són carregadors d'arrencada de GNU/Linux. Normalment,\n"
-#~ "aquesta fase es realitza de manera totalment automàtica. DrakX "
-#~ "analitzarà\n"
-#~ "el sector d'arrencada del disc i actuarà conforme al que hi trobi:\n"
-#~ "\n"
-#~ " * si troba un sector d'arrencada del Windows, el reemplaçarà amb un "
-#~ "sector\n"
-#~ "d'arrencada de GRUB/LILO. D'aquesta manera podreu carregar GNU/Linux\n"
-#~ "o un altre SO.\n"
-#~ "\n"
-#~ " * si troba un sector d'arrencada grub o LILO, el reemplaçarà amb un "
-#~ "nou.\n"
-#~ "\n"
-#~ "Si no pot prendre una decisió, DrakX us preguntarà on ha de col·locar "
-#~ "el\n"
-#~ "carregador d'arrencada. Normalment, \"%s\" és el lloc més segur. Si "
-#~ "escolliu\n"
-#~ "\"%s\" no s'instal·larà cap carregador d'arrencada. Utilitzeu-lo només "
-#~ "si\n"
-#~ "sabeu que esteu fent."
-
-#~ msgid ""
-#~ "Now, it's time to select a printing system for your computer. Other OSs "
-#~ "may\n"
-#~ "offer you one, but Mandriva Linux offers two. Each of the printing "
-#~ "systems\n"
-#~ "is best suited to particular types of configuration.\n"
-#~ "\n"
-#~ " * \"%s\" -- which is an acronym for ``print, do not queue'', is the "
-#~ "choice\n"
-#~ "if you have a direct connection to your printer, you want to be able to\n"
-#~ "panic out of printer jams, and you do not have networked printers. (\"%s"
-#~ "\"\n"
-#~ "will handle only very simple network cases and is somewhat slow when "
-#~ "used\n"
-#~ "with networks.) It's recommended that you use \"pdq\" if this is your "
-#~ "first\n"
-#~ "experience with GNU/Linux.\n"
-#~ "\n"
-#~ " * \"%s\" - `` Common Unix Printing System'', is an excellent choice for\n"
-#~ "printing to your local printer or to one halfway around the planet. It "
-#~ "is\n"
-#~ "simple to configure and can act as a server or a client for the ancient\n"
-#~ "\"lpd \" printing system, so it is compatible with older operating "
-#~ "systems\n"
-#~ "which may still need print services. While quite powerful, the basic "
-#~ "setup\n"
-#~ "is almost as easy as \"pdq\". If you need to emulate a \"lpd\" server, "
-#~ "make\n"
-#~ "sure you turn on the \"cups-lpd \" daemon. \"%s\" includes graphical\n"
-#~ "front-ends for printing or choosing printer options and for managing the\n"
-#~ "printer.\n"
-#~ "\n"
-#~ "If you make a choice now, and later find that you do not like your "
-#~ "printing\n"
-#~ "system you may change it by running PrinterDrake from the Mandrake "
-#~ "Control\n"
-#~ "Center and clicking the expert button."
-#~ msgstr ""
-#~ "Ara cal seleccionar el sistema d'impressió del vostre ordinador. Altres\n"
-#~ "sistemes operatius us poden oferir un, però el Mandriva Linux n'ofereix\n"
-#~ "dos. Cada sistema d'impressió és el més convenient per a un tipus de\n"
-#~ "configuració determinat.\n"
-#~ "\n"
-#~ " * \"%s\", acrònim de \"print, do not queue\" (imprimeix, no facis cua), "
-#~ "és\n"
-#~ "la millor opció si teniu una connexió directa amb la impressora i voleu\n"
-#~ "evitar els embussos a l'hora d'imprimir, i no teniu impressores de "
-#~ "xarxa.\n"
-#~ "(\"%s\" només gestionarà xarxes molt senzilles i és una mica lenta quan\n"
-#~ "s'usa en xarxa.) Escolliu \"pdq\" si és la vostra primera incursió\n"
-#~ "en GNU/Linux.\n"
-#~ "\n"
-#~ " * \"%s\" `` Common Unix Printing System'', Sistema d'impressió comú de\n"
-#~ "Unix, és una elecció excel·lent tant si voleu imprimir a la vostra\n"
-#~ "impressora local com a l'altra punta del món. És senzilla de configurar "
-#~ "i\n"
-#~ "pot actuar com a servidor o client per a l'antic sistema d'impressió \"lpd"
-#~ "\"\n"
-#~ "i, per tant, és compatible amb sistemes operatius antics que encara\n"
-#~ "necessitin serveis d'impressió. És força potent, però la configuració "
-#~ "bàsica\n"
-#~ "és gairebé tan senzilla com la de \"pdq\". Si necessiteu emular un "
-#~ "servidor\n"
-#~ "\"lpd\", heu d'habilitar el dimoni \"cups-lpd\". \"%s\" inclou frontals\n"
-#~ "gràfics per a la impressió o per escollir les opcions d'impressió\n"
-#~ "i per gestionar la impressora.\n"
-#~ "\n"
-#~ "Si ara feu una tria, i després veieu que el sistema d'impressió no us\n"
-#~ "agrada, podeu canviar-lo executant el PrinterDrake des del Centre de "
-#~ "control\n"
-#~ "de Mandriva Linux i fent clic al botó Expert."
-
-#~ msgid ""
-#~ "You can add additional entries in yaboot for other operating systems,\n"
-#~ "alternate kernels, or for an emergency boot image.\n"
-#~ "\n"
-#~ "For other OSs, the entry consists only of a label and the \"root\"\n"
-#~ "partition.\n"
-#~ "\n"
-#~ "For Linux, there are a few possible options:\n"
-#~ "\n"
-#~ " * Label: this is the name you will have to type at the yaboot prompt to\n"
-#~ "select this boot option.\n"
-#~ "\n"
-#~ " * Image: this is the name of the kernel to boot. Typically, vmlinux or "
-#~ "a\n"
-#~ "variation of vmlinux with an extension.\n"
-#~ "\n"
-#~ " * Root: the \"root\" device or ``/'' for your Linux installation.\n"
-#~ "\n"
-#~ " * Append: on Apple hardware, the kernel append option is often used to\n"
-#~ "assist in initializing video hardware, or to enable keyboard mouse "
-#~ "button\n"
-#~ "emulation for the missing 2nd and 3rd mouse buttons on a stock Apple "
-#~ "mouse.\n"
-#~ "The following are some examples:\n"
-#~ "\n"
-#~ " \t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-#~ "hda=autotune\n"
-#~ "\n"
-#~ " \t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-#~ "\n"
-#~ " * Initrd: this option can be used either to load initial modules before\n"
-#~ "the boot device is available, or to load a ramdisk image for an "
-#~ "emergency\n"
-#~ "boot situation.\n"
-#~ "\n"
-#~ " * Initrd-size: the default ramdisk size is generally 4096 Kbytes. If "
-#~ "you\n"
-#~ "need to allocate a large ramdisk, this option can be used to specify a\n"
-#~ "ramdisk larger than the default.\n"
-#~ "\n"
-#~ " * Read-write: normally the \"root\" partition is initially mounted as\n"
-#~ "read-only, to allow a file system check before the system becomes "
-#~ "``live''.\n"
-#~ "You can override the default with this option.\n"
-#~ "\n"
-#~ " * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-#~ "problematic, you can select this option to boot in ``novideo'' mode, "
-#~ "with\n"
-#~ "native frame buffer support.\n"
-#~ "\n"
-#~ " * Default: selects this entry as being the default Linux selection,\n"
-#~ "selectable by pressing ENTER at the yaboot prompt. This entry will also "
-#~ "be\n"
-#~ "highlighted with a ``*'' if you press [Tab] to see the boot selections."
-#~ msgstr ""
-#~ "Podeu afegir entrades addicionals per al yaboot, ja sigui per a altres\n"
-#~ "sistemes operatius, nuclis alternatius, o per a una imatge per a "
-#~ "arrencades\n"
-#~ "d'emergència.\n"
-#~ "\n"
-#~ "Per a altres SO, l'entrada només consta d'una etiqueta i de la\n"
-#~ "partició arrel.\n"
-#~ "\n"
-#~ "Per Linux, hi ha unes quantes opcions possibles:\n"
-#~ "\n"
-#~ " * Etiqueta: el nom a escriure en l'indicador del yaboot per\n"
-#~ "seleccionar aquesta opció d'arrencada.\n"
-#~ "\n"
-#~ " * Imatge: el nom del nucli a arrencar. Normalment, vmlinux o una\n"
-#~ "variació de vmlinux amb una extensió.\n"
-#~ "\n"
-#~ " * Arrel: el dispositiu arrel o '/' per a la instal·lació del Linux.\n"
-#~ "\n"
-#~ " * Addició: en maquinari Apple, l'opció d'addició de nuclis s'utilitza\n"
-#~ "força sovint per auxiliar en la inicialització de maquinari de vídeo o "
-#~ "per\n"
-#~ "habilitar l'emulació del botó del ratolí de teclat per als 2n i 3r "
-#~ "botons,\n"
-#~ "que sovint no existeixen en un ratolí Apple convencional. Alguns "
-#~ "exemples\n"
-#~ "d'això són:\n"
-#~ "\n"
-#~ " video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-#~ "hda=autotune\n"
-#~ "\n"
-#~ " video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-#~ "\n"
-#~ " * Initrd: aquesta opció es pot utilitzar per carregar els mòduls "
-#~ "inicials,\n"
-#~ "abans que el dispositiu d'arrencada estigui disponible, o per carregar\n"
-#~ "una imatge de disc RAM en una situació d'arrencada d'emergència.\n"
-#~ "\n"
-#~ " * Initrd-size: la mida per defecte del disc RAM sol ser de 4096 kB.\n"
-#~ "Si necessiteu assignar un disc RAM gran, podeu utilitzar aquesta opció\n"
-#~ "per indicar un disc RAM més gran que el predeterminat.\n"
-#~ "\n"
-#~ " * Lectura-Escriptura: normalment, la partició arrel es munta inicialment "
-#~ "com de\n"
-#~ "només lectura per permetre una comprovació del sistema de fitxers abans "
-#~ "que el\n"
-#~ "sistema esdevingui \"viu\". Podeu substituir el valor per defecte amb "
-#~ "aquesta opció.\n"
-#~ "\n"
-#~ " * Sense Vídeo: en cas que el maquinari de vídeo d'Apple resulti "
-#~ "especialment\n"
-#~ "problemàtic, podeu seleccionar aquesta opció per arrencar en mode 'no-"
-#~ "vídeo',\n"
-#~ "amb el suport nadiu framebuffer.\n"
-#~ "\n"
-#~ " * Per defecte: seleccioneu aquesta entrada com a selecció per defecte "
-#~ "del\n"
-#~ "Linux; se selecciona prement simplement Retorn a l'indicador del yaboot.\n"
-#~ "Aquesta entrada també es ressaltarà amb un ``*'' si premeu Tab per veure "
-#~ "les\n"
-#~ "seleccions d'arrencada."
-
-#~ msgid ""
-#~ "Yaboot is a bootloader for NewWorld Macintosh hardware and can be used "
-#~ "to\n"
-#~ "boot GNU/Linux, MacOS or MacOSX. Normally, MacOS and MacOSX are "
-#~ "correctly\n"
-#~ "detected and installed in the bootloader menu. If this is not the case, "
-#~ "you\n"
-#~ "can add an entry by hand in this screen. Take care to choose the correct\n"
-#~ "parameters.\n"
-#~ "\n"
-#~ "Yaboot's main options are:\n"
-#~ "\n"
-#~ " * Init Message: a simple text message displayed before the boot prompt.\n"
-#~ "\n"
-#~ " * Boot Device: indicates where you want to place the information "
-#~ "required\n"
-#~ "to boot to GNU/Linux. Generally, you set up a bootstrap partition "
-#~ "earlier\n"
-#~ "to hold this information.\n"
-#~ "\n"
-#~ " * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-#~ "yaboot. The first delay is measured in seconds and at this point, you "
-#~ "can\n"
-#~ "choose between CD, OF boot, MacOS or Linux;\n"
-#~ "\n"
-#~ " * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-#~ "After selecting Linux, you will have this delay in 0.1 second increments\n"
-#~ "before your default kernel description is selected;\n"
-#~ "\n"
-#~ " * Enable CD Boot?: checking this option allows you to choose ``C'' for "
-#~ "CD\n"
-#~ "at the first boot prompt.\n"
-#~ "\n"
-#~ " * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
-#~ "Open Firmware at the first boot prompt.\n"
-#~ "\n"
-#~ " * Default OS: you can select which OS will boot by default when the "
-#~ "Open\n"
-#~ "Firmware Delay expires."
-#~ msgstr ""
-#~ "Yaboot és un carregador d'arrencada per a maquinari Macintosh NewWorld.\n"
-#~ "Pot arrencar tant GNU/Linux com MacOS o MacOSX. Normalment,\n"
-#~ "MacOS i MacOSX es detecten i instal·len correctament en el menú del\n"
-#~ "carregador d'arrencada; si no és així, però, en aquesta pantalla podeu\n"
-#~ "afegir una entrada manualment. Aneu amb compte de triar els paràmetres\n"
-#~ "correctes.\n"
-#~ "\n"
-#~ "Les opcions principals del Yaboot són:\n"
-#~ "\n"
-#~ " * Missatge d'inicialització: un senzill missatge de text que apareix "
-#~ "abans\n"
-#~ "de l'indicador d'arrencada.\n"
-#~ "\n"
-#~ " * Dispositiu d'arrencada: indica on voleu situar la informació "
-#~ "necessària\n"
-#~ "per arrencar el GNU/Linux. Normalment, haureu configurat abans una "
-#~ "partició\n"
-#~ "bootstrap que contindrà aquesta informació.\n"
-#~ "\n"
-#~ " * Demora de l'Open Firmware: a diferència del LILO, amb el Yaboot hi ha\n"
-#~ "dues demores disponibles. La primera d'elles es mesura en segons i, en\n"
-#~ "aquest punt, podeu triar entre CD, arrencada OF, MacOS o Linux.\n"
-#~ "\n"
-#~ " * Temps màxim d'arrencada del nucli: aquest temps màxim és similar a la\n"
-#~ "demora d'arrencada del LILO. Després de seleccionar el Linux tindreu "
-#~ "aquest\n"
-#~ "temps en increments de 0,1 segons abans que se seleccioni la descripció "
-#~ "per\n"
-#~ "defecte del nucli.\n"
-#~ "\n"
-#~ " * Habilita l'arrencada des de CD: si activeu aquesta opció podreu triar\n"
-#~ "``C'' per a CD al primer indicador de l'arrencada.\n"
-#~ "\n"
-#~ " * Habilita l'arrencada OF: si activeu aquesta opció podreu triar ``N`` "
-#~ "per\n"
-#~ "a Open Firmware al primer indicador de l'arrencada.\n"
-#~ "\n"
-#~ " * SO per defecte: podeu seleccionar amb quin SO, per defecte, "
-#~ "s'arrencarà\n"
-#~ "quan la demora de l'Open Firmware venci."
-
-#~ msgid ""
-#~ "\"%s\": if a sound card is detected on your system, it is displayed "
-#~ "here.\n"
-#~ "If you notice the sound card displayed is not the one that is actually\n"
-#~ "present on your system, you can click on the button and choose another\n"
-#~ "driver."
-#~ msgstr ""
-#~ "\"%s\": si es detecta una targeta de so al vostre sistema, es mostra "
-#~ "aquí.\n"
-#~ "Si veieu que la targeta de so que es mostra no és la que realment teniu "
-#~ "al\n"
-#~ "sistema, podeu fer clic al botó i seleccionar un altre programa de "
-#~ "control."
-
-#~ msgid ""
-#~ "As a review, DrakX will present a summary of information it has about "
-#~ "your\n"
-#~ "system. Depending on your installed hardware, you may have some or all "
-#~ "of\n"
-#~ "the following entries. Each entry is made up of the configuration item "
-#~ "to\n"
-#~ "be configured, followed by a quick summary of the current configuration.\n"
-#~ "Click on the corresponding \"%s\" button to change that.\n"
-#~ "\n"
-#~ " * \"%s\": check the current keyboard map configuration and change it if\n"
-#~ "necessary.\n"
-#~ "\n"
-#~ " * \"%s\": check the current country selection. If you are not in this\n"
-#~ "country, click on the \"%s\" button and choose another one. If your "
-#~ "country\n"
-#~ "is not in the first list shown, click the \"%s\" button to get the "
-#~ "complete\n"
-#~ "country list.\n"
-#~ "\n"
-#~ " * \"%s\": By default, DrakX deduces your time zone based on the country\n"
-#~ "you have chosen. You can click on the \"%s\" button here if this is not\n"
-#~ "correct.\n"
-#~ "\n"
-#~ " * \"%s\": check the current mouse configuration and click on the button "
-#~ "to\n"
-#~ "change it if necessary.\n"
-#~ "\n"
-#~ " * \"%s\": clicking on the \"%s\" button will open the printer\n"
-#~ "configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-#~ "Guide'' for more information on how to setup a new printer. The "
-#~ "interface\n"
-#~ "presented there is similar to the one used during installation.\n"
-#~ "\n"
-#~ " * \"%s\": if a sound card is detected on your system, it is displayed\n"
-#~ "here. If you notice the sound card displayed is not the one that is\n"
-#~ "actually present on your system, you can click on the button and choose\n"
-#~ "another driver.\n"
-#~ "\n"
-#~ " * \"%s\": by default, DrakX configures your graphical interface in\n"
-#~ "\"800x600\" or \"1024x768\" resolution. If that does not suit you, click "
-#~ "on\n"
-#~ "\"%s\" to reconfigure your graphical interface.\n"
-#~ "\n"
-#~ " * \"%s\": if a TV card is detected on your system, it is displayed "
-#~ "here.\n"
-#~ "If you have a TV card and it is not detected, click on \"%s\" to try to\n"
-#~ "configure it manually.\n"
-#~ "\n"
-#~ " * \"%s\": if an ISDN card is detected on your system, it will be "
-#~ "displayed\n"
-#~ "here. You can click on \"%s\" to change the parameters associated with "
-#~ "the\n"
-#~ "card.\n"
-#~ "\n"
-#~ " * \"%s\": If you wish to configure your Internet or local network "
-#~ "access\n"
-#~ "now.\n"
-#~ "\n"
-#~ " * \"%s\": this entry allows you to redefine the security level as set in "
-#~ "a\n"
-#~ "previous step ().\n"
-#~ "\n"
-#~ " * \"%s\": if you plan to connect your machine to the Internet, it's a "
-#~ "good\n"
-#~ "idea to protect yourself from intrusions by setting up a firewall. "
-#~ "Consult\n"
-#~ "the corresponding section of the ``Starter Guide'' for details about\n"
-#~ "firewall settings.\n"
-#~ "\n"
-#~ " * \"%s\": if you wish to change your bootloader configuration, click "
-#~ "that\n"
-#~ "button. This should be reserved to advanced users.\n"
-#~ "\n"
-#~ " * \"%s\": here you'll be able to fine control which services will be "
-#~ "run\n"
-#~ "on your machine. If you plan to use this machine as a server it's a good\n"
-#~ "idea to review this setup."
-#~ msgstr ""
-#~ "Com a revisió, DrakX presentarà un resum de la informació que\n"
-#~ "té sobre el vostre sistema. Segons el maquinari instal·lat, podeu\n"
-#~ "tenir algunes o totes les entrades següents. Cada entrada consta\n"
-#~ "de l'element de configuració que cal configurar, seguit d'un breu\n"
-#~ "resum de la configuració actual.\n"
-#~ "Feu clic al botó \"%s\" corresponent per canviar-ho.\n"
-#~ "\n"
-#~ " * \"%s\": comproveu la configuració actual del mapa de teclat i\n"
-#~ "canvieu-la si és necessari.\n"
-#~ "\n"
-#~ " * \"%s\": comproveu la selecció actual de país. Si no sou a aquest\n"
-#~ "país, feu clic al botó \"%s\" i escolliu-ne un altre. Si el vostre\n"
-#~ "país no és a la primera llista que es mostra, feu clic al botó \"%s\"\n"
-#~ "per obtenir una llista de països completa.\n"
-#~ "\n"
-#~ " * \"%s\": per defecte, DrakX dedueix la vostra zona horària en\n"
-#~ "funció del país que hagueu escollit. Aquí podeu fer clic al botó \"%s\"\n"
-#~ "si no fos correcta.\n"
-#~ "\n"
-#~ " * \"%s\": comproveu la configuració actual del ratolí i feu clic al\n"
-#~ "botó per canviar-la si fos necessari.\n"
-#~ "\n"
-#~ " * \"%s\": feu clic al botó \"%s\" per obrir l'auxiliar de configuració\n"
-#~ "de la impressora. Consulteu el capítol corresponent de la ``Guia d'\n"
-#~ "iniciació'' per tenir més informació sobre la configuració d'una nova\n"
-#~ "impressora. Aquesta interfície és similar a la utilitzada durant la\n"
-#~ "instal·lació.\n"
-#~ "\n"
-#~ " * \"%s\": si es detecta una targeta de so al vostre sistema, es\n"
-#~ "mostra aquí. Si veieu que que no és la que realment teniu al sistema,\n"
-#~ "podeu fer clic al botó per triar un altre controlador.\n"
-#~ "\n"
-#~ " * \"%s\": per defecte, DrakX configura la vostra interfície\n"
-#~ "gràfica a una resolució de \"800x600\" or \"1024x768\". Si no us\n"
-#~ "va bé, feu clic a \"%s\" per reconfigurar la interfície gràfica.\n"
-#~ "\n"
-#~ " * \"%s\": si es detecta una targeta de TV al sistema, es mostra\n"
-#~ "aquí. Si en teniu una però no és detectada, feu clic a \"%s\" per\n"
-#~ "intentar configurar-la manualment.\n"
-#~ "\n"
-#~ " * \"%s\": si es detecta una targeta XDSI al sistema, es mostra\n"
-#~ "aquí. Podeu fer clic a \"%s\" per canviar els paràmetres associats\n"
-#~ "amb la targeta.\n"
-#~ "\n"
-#~ " * \"%s\": si voleu configurar ara l'accés a Internet o a la xarxa "
-#~ "local.\n"
-#~ "\n"
-#~ " * \"%s\": aquesta entrada un permet redefinir el nivell de seguretat\n"
-#~ "definit en un pas anterior ().\n"
-#~ "\n"
-#~ " * \"%s\": si teniu previst connectar-vos a Internet, és bona idea\n"
-#~ "protegir-vos d'intrusions instal·lant un tallafocs. Consulteu-ne\n"
-#~ "els detalls a la secció corresponent de la ``Guia d'iniciació''.\n"
-#~ "\n"
-#~ " * \"%s\": si voleu canviar la configuració del carregador d'arrencada,\n"
-#~ "feu clic a aquest botó. Es recomana que això només ho facin els usuaris\n"
-#~ "avançats.\n"
-#~ "\n"
-#~ " * \"%s\": aquí podreu acabar d'ajustar els serveis que s'executaran\n"
-#~ "en el vostre ordinador. Si teniu previst utilitzar aquesta màquina com\n"
-#~ "a servidor, és aconsellable que reviseu aquesta configuració."
-
-#~ msgid ""
-#~ "No ethernet network adapter has been detected on your system.\n"
-#~ "I cannot set up this connection type."
-#~ msgstr ""
-#~ "No s'ha detectat cap adaptador de xarxa ethernet al sistema.\n"
-#~ "No puc configurar aquest tipus de connexió."
-
-#~ msgid ""
-#~ "Please choose which network adapter you want to use to connect to "
-#~ "Internet."
-#~ msgstr ""
-#~ "Si us plau, seleccioneu quin adaptador de xarxa voleu utilitzar per\n"
-#~ "connectar-vos a Internet."
-
-#~ msgid ""
-#~ "To submit a bug report, click on the button report.\n"
-#~ "This will open a web browser window on %s\n"
-#~ " where you'll find a form to fill in. The information displayed above "
-#~ "will be \n"
-#~ "transferred to that server."
-#~ msgstr ""
-#~ "Per trametre un informe d'error de programació, feu clic al botó "
-#~ "'Informa'.\n"
-#~ "S'obrirà una finestra del navegador web amb la pàgina %s\n"
-#~ "on trobareu un formulari per omplir. La informació que es mostra més "
-#~ "amunt s'enviarà al servidor."
-
-#~ msgid "chunk size"
-#~ msgstr "mida del fragment"
-
-#~ msgid "mkraid failed (maybe raidtools are missing?)"
-#~ msgstr "L'mkraid ha fallat (potser manquen les eines del RAID (raidtools)?)"
-
-#~ msgid "mkraid failed"
-#~ msgstr "L'mkraid ha fallat"
-
-#~ msgid "<b>Mandrake Control Center</b>"
-#~ msgstr "<b>Centre de Control Mandriva Linux</b>"
-
-#~ msgid ""
-#~ "The Mandrake Control Center is an essential collection of Mandrake-"
-#~ "specific utilities for simplifying the configuration of your computer."
-#~ msgstr ""
-#~ "El Centre de Control Mandrake és una col·lecció essencial de utilitats "
-#~ "específiques de Mandrake per simplificar la configuració del vostre "
-#~ "ordinador."
-
-#~ msgid ""
-#~ "Find all Mandriva products and services at <b>MandrakeStore</b> -- our "
-#~ "full service e-commerce platform."
-#~ msgstr ""
-#~ "Conegui tots els productes i serveis de Mandriva a <b>MandrakeStore</b> "
-#~ "-- la nostra plataforma de serveis de comerç electrònic."
-
-#
-#~ msgid "Become a <b>MandrakeClub</b> member!"
-#~ msgstr "Esdeveniu un membre del <b>MandrakeClub</b>!"
-
-#~ msgid ""
-#~ "\t* Special download mirror list exclusively for MandrakeClub Members"
-#~ msgstr "\t* Llista de rèpliques exclusiva pels membres del MandrakeClub"
-
-#~ msgid "\t* Special discounts for products and services at MandrakeStore"
-#~ msgstr "\t* Descomptes especials en productes i serveis de MandrakeStore"
-
-#~ msgid ""
-#~ "\t* Find out Mandriva Linux on a bootable CD with <b>Mandriva Move</b>"
-#~ msgstr ""
-#~ "\t* Conegui Mandriva Linux en un CD autoarrancable amb <b>Mandriva Move</"
-#~ "b>"
-
-#~ msgid ""
-#~ "Find all Mandriva products at <b>MandrakeStore</b> -- our full service e-"
-#~ "commerce platform."
-#~ msgstr ""
-#~ "Conegui tots els productes de Mandriva a <b>MandrakeStore</b> -- la "
-#~ "nostra plataforma de serveis de comerç electrònic."
-
-#
-#~ msgid "<b>Become a MandrakeClub member!</b>"
-#~ msgstr "<b>Esdeveniu un membre del MandrakeClub!</b>"
-
-#~ msgid ""
-#~ "\t* <b>Vim</b>: advanced text editor with more features than standard Vi"
-#~ msgstr ""
-#~ "\t* <b>Vim</b>: editor de text avançat amb més característiques que el vi "
-#~ "estàndard"
-
-#~ msgid ""
-#~ "[OPTIONS] [PROGRAM_NAME]\n"
-#~ "\n"
-#~ "OPTIONS:\n"
-#~ " --help - print this help message.\n"
-#~ " --report - program should be one of mandrake tools\n"
-#~ " --incident - program should be one of mandrake tools"
-#~ msgstr ""
-#~ "[OPCIONS] [NOM_DEL_PROGRAMA]\n"
-#~ "\n"
-#~ "OPCIONS:\n"
-#~ " --help - imprimeix aquest missatge d'ajuda.\n"
-#~ " --report - el programa ha de ser una de les eines de Mandrake\n"
-#~ " --incident - el programa ha de ser una de les eines de Mandrake"
-
-#~ msgid ""
-#~ "This interface has not been configured yet.\n"
-#~ "Run the \"Add an interface\" assistant from the Mandrake Control Center"
-#~ msgstr ""
-#~ "Aquesta interfície encara no s'ha configurat.\n"
-#~ "Executeu l'auxiliar \"Afegeix una interfície\" del Centre de Control de "
-#~ "Mandrake"
-
-#~ msgid "The alert wizard had unexpectly failled:"
-#~ msgstr "L'auxiliar d'alerta ha fallat:"
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "La connexió ha fallat.\n"
-#~ "Comproveu la vostra configuració al Centre de control de Mandrake."
-
-#~ msgid "The package %s is needed. Install it?"
-#~ msgstr "Cal instal·lar el paquet %s. Voleu instal·lar-lo?"
-
-#~ msgid "ignore"
-#~ msgstr "ignora"
-
-#~ msgid "no"
-#~ msgstr "no"
-
-#~ msgid "yes"
-#~ msgstr "sí"
-
-#~ msgid "SILO Installation"
-#~ msgstr "Instal·lació del SILO"
-
-#~ msgid "First sector of boot partition"
-#~ msgstr "Primer sector de la partició d'arrencada"
-
-#~ msgid "Bootloader installation"
-#~ msgstr "Instal·lació del carregador de l'arrencada"
-
-#~ msgid "SILO"
-#~ msgstr "SILO"
-
-#~ msgid "Alcatel speedtouch usb"
-#~ msgstr "Alcatel Speedtouch USB"
-
-#~ msgid "Sagem (using pppoa) usb"
-#~ msgstr "USB Sagem (utilitzant el pppoa)"
-
-#~ msgid "Harddrake2 version %s"
-#~ msgstr "Versió del Harddrake2 %s"
-
-#~ msgid "transmitted"
-#~ msgstr "transmitits"
-
-#~ msgid "received"
-#~ msgstr "rebuts"
-
-#~ msgid ""
-#~ "You can export using NFS or SMB. Please select which you'd like to use."
-#~ msgstr ""
-#~ "Podeu exportar utilitzant NFS o SMB. Seleccioneu quin voleu utilitzar."
-
-#~ msgid ""
-#~ "You can export using NFS or Samba. Please select which you'd like to use."
-#~ msgstr ""
-#~ "Podeu exportar utilitzant NFS o Samba. Seleccioneu quin voleu utilitzar."
-
-#~ msgid "The package %s is going to be removed."
-#~ msgstr "El paquet %s serà eliminat."
-
-#
-#~ msgid "You must be root to read configuration file. \n"
-#~ msgstr "Us cal ser root per poder llegir el fitxer de configuració. \n"
-
-#~ msgid "Can not open %s!"
-#~ msgstr "No es pot obrir %s!"
-
-#~ msgid ""
-#~ "Your card can have 3D hardware acceleration support but only with Xorg %"
-#~ "s.\n"
-#~ "Your card is supported by Xorg %s which may have a better support in 2D."
-#~ msgstr ""
-#~ "La vostra targeta pot tenir acceleració 3D de maquinari, però només amb "
-#~ "l'Xfree %s.\n"
-#~ "L'Xorg %s, que pot tenir un suport millor en 2D, suporta la vostra "
-#~ "targeta."
-
-#~ msgid ""
-#~ "Your card can have 3D hardware acceleration support but only with Xorg %"
-#~ "s,\n"
-#~ "NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
-#~ "Your card is supported by Xorg %s which may have a better support in 2D."
-#~ msgstr ""
-#~ "La vostra targeta pot tenir acceleració 3D de maquinari, però només amb "
-#~ "l'Xfree %s,\n"
-#~ "TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES "
-#~ "POT PENJAR.\n"
-#~ "La vostra targeta està suportada per Xorg %s que pot tenir un suport "
-#~ "millor en 2D."
-
-#~ msgid "Xpmac (installation display driver)"
-#~ msgstr "Xpmac (instal·lació del controlador de pantalla)"
-
-#~ msgid "4 billion colors (32 bits)"
-#~ msgstr "4.294 milions de colors (32 bits)"
-
-#~ msgid "XFree86 server: %s\n"
-#~ msgstr "Servidor XFree86: %s\n"
-
-#~ msgid "Here is the full list of keyboards available"
-#~ msgstr "Aquesta és la llista completa de teclats disponibles"
-
-#~ msgid "Please insert the Boot floppy used in drive %s"
-#~ msgstr "Inseriu el disquet d'arrencada utilitzat a la unitat %s"
-
-#~ msgid "TCP/IP"
-#~ msgstr "TCP/IP"
-
-#~ msgid "Wireless"
-#~ msgstr "Wireless"
-
-#~ msgid ""
-#~ "Due to incompatibilities of the 2.6 series kernel with the LSB runtime\n"
-#~ "tests, the 2.4 series kernel will be installed as the default to insure\n"
-#~ "compliance under the \"LSB\" group selection."
-#~ msgstr ""
-#~ "A causa de incompatibilitats del nucli 2.6 amb les proves d'execució "
-#~ "LSB,\n"
-#~ "s'instal·larà el nucli 2.4 per assegurar la compatibilitat amb la "
-#~ "selecció del grup \"LSB\"."
-
-#~ msgid "XawTV is not installed!"
-#~ msgstr "No teniu instal·lat XawTV!"
-
-#~ msgid "Provider dns 1 (optional)"
-#~ msgstr "DNS 1 del proveïdor (opcional)"
-
-#~ msgid "Provider dns 2 (optional)"
-#~ msgstr "DNS 2 del proveïdor (opcional)"
-
-#~ msgid "DHCP Client"
-#~ msgstr "Client DHCP"
-
-#~ msgid "Display"
-#~ msgstr "Visualització"
-
-#~ msgid "Use tar and bzip2 (rather than tar and gzip)"
-#~ msgstr "Usa tar i bzip2 (en comptes de tar i gzip)"
-
-#~ msgid ""
-#~ "Change\n"
-#~ "Restore Path"
-#~ msgstr ""
-#~ "Canvia el camí\n"
-#~ "on restaurar"
-
-#
-#~ msgid "European protocol"
-#~ msgstr "Protocol europeu"
-
-#~ msgid "Found \"%s\" interface do you want to use it ?"
-#~ msgstr "S'ha trobat la interfície \"%s\". Voleu utilitzar-la?"
-
-#~ msgid "Bewan USB modem"
-#~ msgstr "Mòdem Bewan USB"
-
-#~ msgid "What kind is your ISDN connection?"
-#~ msgstr "Quin tipus de connexió XDSI teniu?"
-
-#~ msgid "Do you want to start a new configuration ?"
-#~ msgstr "Voleu iniciar una nova configuració?"
-
-#~ msgid ""
-#~ "I have detected an ISDN PCI card, but I do not know its type. Please "
-#~ "select a PCI card on the next screen."
-#~ msgstr ""
-#~ "S'ha detectat una targeta PCI XDSI, però no es reconeix el tipus. Si us "
-#~ "plau, seleccioneu una targeta PCI a la pantalla següent."
-
-#~ msgid "No ISDN PCI card found. Please select one on the next screen."
-#~ msgstr ""
-#~ "No s'ha trobat cap targeta PCI XDSI. Si us plau, seleccioneu-ne una a la "
-#~ "pantalla següent."
-
-#~ msgid "DrakTermServ"
-#~ msgstr "DrakTermServ"
-
-#~ msgid "Under Devel ... please wait."
-#~ msgstr "Sota desenvolupament ... espereu si us plau."
-
-#
-#~ msgid "Windows (FAT32)"
-#~ msgstr "Windows (FAT32)"
-
-#~ msgid ""
-#~ "Please enter the name of the interface connected to the "
-#~ "internet. \n"
-#~ " \n"
-#~ "Examples:\n"
-#~ " ppp+ for modem or DSL connections, \n"
-#~ " eth0, or eth1 for cable connection, \n"
-#~ " ippp+ for a isdn connection.\n"
-#~ msgstr ""
-#~ "Si us plau, introduïu el nom de la interfície connectada a "
-#~ "internet. \n"
-#~ " \n"
-#~ "Exemples:\n"
-#~ " ppp+ per a mòdem o connexions DSL, \n"
-#~ " eth0, o eth1 per a connexions de cable, \n"
-#~ " ippp+ per a connexions XDSI.\n"
-
-#~ msgid ""
-#~ "Enter your CD Writer device name\n"
-#~ " ex: 0,1,0"
-#~ msgstr ""
-#~ "Entreu el nom de dispositiu de l'enregistradora de CD\n"
-#~ " ex: 0,1,0"
-
-#~ msgid "Tone dialing"
-#~ msgstr "Marcació per tons"
-
-#~ msgid "Pulse dialing"
-#~ msgstr "Marcació per polsos"
-
-#~ msgid "Scientific Workstation"
-#~ msgstr "Estació de treball científica"
-
-#~ msgid "Scientific applications such as gnuplot"
-#~ msgstr "Aplicacions científiques com ara el gnuplot"
-
-#~ msgid "No wireless network adapter on your system!"
-#~ msgstr "No teniu cap adaptador wireless al sistema!"
-
-#~ msgid "Can not create log file!"
-#~ msgstr "No s'ha pogut crear el registre!"
-
-#~ msgid "dhcp"
-#~ msgstr "dhcp"
-
-#~ msgid "Please select media for backup..."
-#~ msgstr "Si us plau seleccioneu el suport per a la còpia..."
-
-#~ msgid "pfs"
-#~ msgstr "pfs"
-
-#
-#~ msgid "Configuration of a remote printer"
-#~ msgstr "Configuració d'una impressora remota"
-
-#~ msgid "configure %s"
-#~ msgstr "configura %s"
-
-#~ msgid "protocol = "
-#~ msgstr "protocol = "
-
-#~ msgid "Gnome Workstation"
-#~ msgstr "Estació de treball GNOME"
-
-#~ msgid "%s="
-#~ msgstr "%s="
-
-#~ msgid "add"
-#~ msgstr "afegeix"
-
-#
-#~ msgid "edit"
-#~ msgstr "edita"
-
-#
-#~ msgid "remove"
-#~ msgstr "elimina"
-
-#~ msgid ""
-#~ "The free download version does not include commercial software, and "
-#~ "therefore may not work with certain proprietary network cards and video "
-#~ "cards such as NVIDIA® nForce. To avoid possible compatibiity issues with "
-#~ "these devices, we recommend the purchase of one of our retail products "
-#~ "that includes commercial drivers and additional software."
-#~ msgstr ""
-#~ "Aquesta versió de descàrrega gratuïta no inclou programes comercials, i "
-#~ "per tant pot no funcionar amb targetes de xarxa i vídeo propietàries com "
-#~ "NVIDIA(r) nForce. Per tal d'evitar possibles problemes de compatibilitat "
-#~ "amb aquests dispositius, recomanem la compra d'un dels productes "
-#~ "comercials que inclouen programes addicionals així com controladors "
-#~ "comercials."
-
-#~ msgid "Running \"%s\" ..."
-#~ msgstr "S'està executant \"%s\"..."
-
-#~ msgid "utopia 25"
-#~ msgstr "utopia 25"
+#~ msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+#~ msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index 8b1914966..ce29db520 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -1,14 +1,13 @@
# Translation of cs.po to Czech
-# Translation of DrakX-cs.po to Czech
-# Copyright (C) 1999,2003, 2004, 2005 Free Software Foundation, Inc.
-# Radek Vybiral <Radek.Vybiral@vsb.cz>, 2000, 2001-2003.
-# Michal Bukovjan <bukm@centrum.cz>, 2002-2003, 2004, 2005.
+# Copyright (C) 1999,2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
#
+# Radek Vybiral <Radek.Vybiral@vsb.cz>, 2000, 2001-2003.
+# Michal Bukovjan <bukm@centrum.cz>, 2002-2003, 2004, 2005, 2006, 2007.
msgid ""
msgstr ""
"Project-Id-Version: cs\n"
-"POT-Creation-Date: 2006-03-05 18:57+0800\n"
-"PO-Revision-Date: 2005-09-19 00:26+0200\n"
+"POT-Creation-Date: 2007-03-21 12:10+0100\n"
+"PO-Revision-Date: 2007-03-15 19:36+0100\n"
"Last-Translator: Michal Bukovjan <bukm@centrum.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
"MIME-Version: 1.0\n"
@@ -16,842 +15,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: KBabel 1.10.2\n"
-
-#: ../move/move.pm:292
-#, c-format
-msgid "Which USB key do you want to format?"
-msgstr "Který USB disk chcete formátovat?"
-
-#: ../move/move.pm:296
-#, c-format
-msgid ""
-"You are about to format a USB device \"%s\". This will delete all data on "
-"it.\n"
-"Make sure that the selected device is the USB key you want to format. \n"
-"We advise you to unplug all other USB storage devices while doing this "
-"operation."
-msgstr ""
-"Chystáte se formátovat USB zařízení \"%s\", což na něm vymaže všechna data.\n"
-"Ujistěte se, že zvolené zařízení skutečně odpovídá tomu, které chcete "
-"formátovat.\n"
-"Při této operaci doporučujeme odpojit všechna ostatní paměťová USB zařízení."
-
-#: ../move/move.pm:448 ../move/move.pm:460
-#, c-format
-msgid "Key is not writable"
-msgstr "Na USB disk nelze zapisovat"
-
-#: ../move/move.pm:450
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-"Tento USB disk má zřejmě zapnutu ochranu proti zápisu. Prosím\n"
-"vyjměte jej, odstraňte ochranu proti zápisu a zasuňte jej zpět."
-
-#: ../move/move.pm:452
-#, c-format
-msgid "Retry"
-msgstr "Zkusit znova"
-
-#: ../move/move.pm:453 ../move/move.pm:497
-#, c-format
-msgid "Continue without USB key"
-msgstr "Pokračovat bez USB disku"
-
-#: ../move/move.pm:462
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled, but we can not safely\n"
-"unplug it now.\n"
-"\n"
-"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandriva Move again."
-msgstr ""
-"Tento USB disk má zřejmě zapnutu ochranu proti zápisu, nelze jej ale\n"
-"nyní bezpečně odpojit.\n"
-"\n"
-"\n"
-"Stiskněte tlačítko pro restart počítače, disk vyjměte, odstraňte ochranu "
-"proti\n"
-"zápisu, zasuňte disk zpět a spusťte znovu systém Mandriva Move."
-
-#: ../move/move.pm:468 help.pm:410 install_steps_interactive.pm:1303
-#, c-format
-msgid "Reboot"
-msgstr "Restartovat"
-
-#: ../move/move.pm:473
-#, c-format
-msgid ""
-"Your USB key does not have any valid Windows (FAT) partitions.\n"
-"We need one to continue (beside, it's more standard so that you\n"
-"will be able to move and access your files from machines\n"
-"running Windows). Please plug in an USB key containing a\n"
-"Windows partition instead.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-"Váš USB disk neobsahuje platný oddíl s FAT.\n"
-"Jeden takový oddíl je třeba, aby bylo možné pokračovat (je to navíc "
-"standardní\n"
-"postup, aby bylo možné přesouvat a přistupovat k souborům z počítačů,\n"
-"na kterých jsou Windows). Zasuňte prosím USB disk, který obsahuje\n"
-"oddíl ve formátu FAT.\n"
-"\n"
-"\n"
-"Můžete také pokračovat bez USB disku - stále pak můžete používat\n"
-"vaši distribuci Mandriva Move jako běžný produkční operační\n"
-"systém."
-
-#: ../move/move.pm:483
-#, c-format
-msgid ""
-"We did not detect any USB key on your system. If you\n"
-"plug in an USB key now, Mandriva Move will have the ability\n"
-"to transparently save the data in your home directory and\n"
-"system wide configuration, for next boot on this computer\n"
-"or another one. Note: if you plug in a key now, wait several\n"
-"seconds before detecting again.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-"Na vašem systému nebyl nalezen žádný USB disk. Pokud nyní\n"
-"zasunete USB disk, Mandriva Move bude mít možnost transparentně\n"
-"ukládat data ve vašem domovském adresáři a systémová nastavení,\n"
-"která pak budou dostupná při dalším startu tohoto nebo jiného\n"
-"počítače. Poznámka: pokud disk zasunete teď, počkejte před dalším\n"
-"hledáním několik sekund .\n"
-"\n"
-"\n"
-"Můžete také pokračovat bez USB disku - stále pak můžete používat\n"
-"vaši distribuci Mandriva Move jako běžný produkční operační\n"
-"systém."
-
-#: ../move/move.pm:494
-#, c-format
-msgid "Need a key to save your data"
-msgstr "Pro uložení vašich dat je potřeba disk"
-
-#: ../move/move.pm:496
-#, c-format
-msgid "Detect USB key again"
-msgstr "Hledat USB disk znovu"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Setting up USB key"
-msgstr "Nastavuje se USB disk"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr ""
-"Čekejte prosím, nastavuji systémové soubory s nastavením na USB disku..."
-
-#: ../move/move.pm:546
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr "Zadejte informace o uživateli, heslo bude použito pro šetřič obrazovky"
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Auto configuration"
-msgstr "Automatické nastavení"
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Čekejte prosím, vyhledávám a nastavuji zařízení..."
-
-#: ../move/move.pm:604 ../move/move.pm:660 ../move/move.pm:664
-#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/interactive.pm:231
-#: diskdrake/interactive.pm:244 diskdrake/interactive.pm:405
-#: diskdrake/interactive.pm:423 diskdrake/interactive.pm:560
-#: diskdrake/interactive.pm:565 diskdrake/smbnfs_gtk.pm:41 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:52 fsedit.pm:218 install_any.pm:1775
-#: install_any.pm:1827 install_steps.pm:81 install_steps_interactive.pm:37
-#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
-#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
-#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
-#: network/netconnect.pm:837 network/netconnect.pm:866
-#: network/netconnect.pm:965 network/netconnect.pm:969
-#: network/netconnect.pm:973 network/netconnect.pm:978
-#: network/netconnect.pm:1123 network/netconnect.pm:1127
-#: network/netconnect.pm:1246 network/netconnect.pm:1251
-#: network/netconnect.pm:1271 network/netconnect.pm:1428
-#: network/thirdparty.pm:321 network/thirdparty.pm:328
-#: network/thirdparty.pm:372 network/thirdparty.pm:374
-#: network/thirdparty.pm:395 network/thirdparty.pm:419
-#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
-#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
-#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
-#: printer/printerdrake.pm:450 printer/printerdrake.pm:514
-#: printer/printerdrake.pm:686 printer/printerdrake.pm:690
-#: printer/printerdrake.pm:772 printer/printerdrake.pm:1555
-#: printer/printerdrake.pm:1603 printer/printerdrake.pm:1640
-#: printer/printerdrake.pm:1685 printer/printerdrake.pm:1689
-#: printer/printerdrake.pm:1703 printer/printerdrake.pm:1795
-#: printer/printerdrake.pm:1876 printer/printerdrake.pm:1880
-#: printer/printerdrake.pm:1884 printer/printerdrake.pm:1933
-#: printer/printerdrake.pm:1991 printer/printerdrake.pm:1995
-#: printer/printerdrake.pm:2009 printer/printerdrake.pm:2129
-#: printer/printerdrake.pm:2133 printer/printerdrake.pm:2176
-#: printer/printerdrake.pm:2249 printer/printerdrake.pm:2267
-#: printer/printerdrake.pm:2276 printer/printerdrake.pm:2285
-#: printer/printerdrake.pm:2296 printer/printerdrake.pm:2360
-#: printer/printerdrake.pm:2512 printer/printerdrake.pm:2947
-#: printer/printerdrake.pm:3231 printer/printerdrake.pm:3237
-#: printer/printerdrake.pm:3802 printer/printerdrake.pm:3806
-#: printer/printerdrake.pm:3810 printer/printerdrake.pm:4206
-#: printer/printerdrake.pm:4446 printer/printerdrake.pm:4474
-#: printer/printerdrake.pm:4551 printer/printerdrake.pm:4617
-#: printer/printerdrake.pm:4737 standalone/drakTermServ:422
-#: standalone/drakTermServ:492 standalone/drakTermServ:501
-#: standalone/drakTermServ:812 standalone/drakTermServ:819
-#: standalone/drakTermServ:845 standalone/drakTermServ:894
-#: standalone/drakTermServ:1146 standalone/drakTermServ:1181
-#: standalone/drakTermServ:1634 standalone/drakTermServ:1643
-#: standalone/drakTermServ:1651 standalone/drakTermServ:1656
-#: standalone/drakTermServ:1664 standalone/drakTermServ:1680
-#: standalone/drakTermServ:1700 standalone/drakauth:36
-#: standalone/drakbackup:511 standalone/drakbackup:625
-#: standalone/drakbackup:1110 standalone/drakbackup:1141
-#: standalone/drakbackup:1332 standalone/drakbackup:1664
-#: standalone/drakbackup:1820 standalone/drakbackup:2548
-#: standalone/drakbackup:4463 standalone/drakclock:124
-#: standalone/drakconnect:676 standalone/drakconnect:680
-#: standalone/drakconnect:685 standalone/drakconnect:700
-#: standalone/drakfont:209 standalone/drakfont:222 standalone/drakfont:260
-#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakhosts:98
-#: standalone/drakhosts:246 standalone/drakhosts:253 standalone/drakhosts:260
-#: standalone/draknfs:306 standalone/draknfs:609 standalone/draknfs:616
-#: standalone/draknfs:623 standalone/drakroam:33 standalone/draksambashare:384
-#: standalone/draksambashare:388 standalone/draksambashare:391
-#: standalone/draksambashare:394 standalone/draksambashare:453
-#: standalone/draksambashare:477 standalone/draksambashare:551
-#: standalone/draksambashare:633 standalone/draksambashare:700
-#: standalone/draksambashare:800 standalone/draksambashare:807
-#: standalone/draksambashare:942 standalone/draksambashare:1133
-#: standalone/draksambashare:1142 standalone/draksambashare:1151
-#: standalone/draksambashare:1172 standalone/draksambashare:1181
-#: standalone/draksambashare:1190 standalone/draksambashare:1210
-#: standalone/draksambashare:1218 standalone/draksambashare:1230
-#: standalone/draksplash:162 standalone/drakxtv:107
-#: standalone/finish-install:79 standalone/logdrake:171
-#: standalone/logdrake:439 standalone/logdrake:444 standalone/scannerdrake:59
-#: standalone/scannerdrake:202 standalone/scannerdrake:261
-#: standalone/scannerdrake:732 standalone/scannerdrake:743
-#: standalone/scannerdrake:882 standalone/scannerdrake:893
-#: standalone/scannerdrake:963 wizards.pm:95 wizards.pm:99 wizards.pm:121
-#, c-format
-msgid "Error"
-msgstr "Chyba"
-
-#: ../move/move.pm:605 install_steps.pm:82
-#, c-format
-msgid ""
-"An error occurred, but I do not know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Stala se chyba, ale nevím, jak jí správně interpretovat.\n"
-"Pokračujte na vlastní riziko."
-
-#: ../move/move.pm:660 install_steps_interactive.pm:37
-#, c-format
-msgid "An error occurred"
-msgstr "Stala se chyba"
-
-#: ../move/move.pm:666
-#, c-format
-msgid ""
-"An error occurred:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"This may come from corrupted system configuration files\n"
-"on the USB key, in this case removing them and then\n"
-"rebooting Mandriva Move would fix the problem. To do\n"
-"so, click on the corresponding button.\n"
-"\n"
-"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-"Vyskytla se chyba:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"Tato chyba může pocházet z narušených systémových\n"
-"souborů s nastavením na USB disku; v tomto případě by problém\n"
-"vyřešilo odstranění těchto souborů a znovuzavedení systému\n"
-"Mandriva Move. Chcete-li tak učinit, stiskněte odpovídající tlačítko.\n"
-"\n"
-"\n"
-"Můžete také systém restartovat a vyjmout USB disk, nebo si\n"
-"prohlédnout jeho obsah pod jiným operačním systémem nebo \n"
-"se podívat na soubory se záznamy na konzoli #3 a #4 a zkusit\n"
-"zjistit, co se děje."
-
-#: ../move/move.pm:681
-#, c-format
-msgid "Remove system config files"
-msgstr "Odstranit systémové soubory s nastavením"
-
-#: ../move/move.pm:682
-#, c-format
-msgid "Simply reboot"
-msgstr "Pouze restartovat"
-
-#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr "Lze pouze běžet bez podpory CDROM"
-
-#: ../move/tree/mdk_totem:71
-#, c-format
-msgid "Kill those programs"
-msgstr "Ukončit tyto programy"
-
-#: ../move/tree/mdk_totem:72
-#, c-format
-msgid "No CDROM support"
-msgstr "Bez podpory CDROM"
-
-#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1062 diskdrake/interactive.pm:1072
-#: diskdrake/interactive.pm:1125
-#, c-format
-msgid "Read carefully!"
-msgstr "Čtěte pozorně!"
-
-#: ../move/tree/mdk_totem:77
-#, c-format
-msgid ""
-"You can not use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-"Nelze použít jiný CDROM, pokud běží následující programy:\n"
-"%s"
-
-#: ../move/tree/mdk_totem:101
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr "Kopíruji do paměti, aby bylo možné odstranit CDROM"
-
-#: Xconfig/card.pm:13
-#, c-format
-msgid "256 kB"
-msgstr "256 kB"
-
-#: Xconfig/card.pm:14
-#, c-format
-msgid "512 kB"
-msgstr "512 kB"
-
-#: Xconfig/card.pm:15
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
-
-#: Xconfig/card.pm:16
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
-
-#: Xconfig/card.pm:17
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
-
-#: Xconfig/card.pm:18
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
-
-#: Xconfig/card.pm:19
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: Xconfig/card.pm:20
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
-
-#: Xconfig/card.pm:21
-#, c-format
-msgid "64 MB or more"
-msgstr "64 MB nebo více"
-
-#: Xconfig/card.pm:162
-#, c-format
-msgid "X server"
-msgstr "X server"
-
-#: Xconfig/card.pm:163
-#, c-format
-msgid "Choose an X server"
-msgstr "Zvolte X server"
-
-#: Xconfig/card.pm:195
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Konfigurace dvou monitorů"
-
-#: Xconfig/card.pm:196
-#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Váš systém podporuje zobrazení na dvou monitorech.\n"
-"Co chcete dělat?"
-
-#: Xconfig/card.pm:265
-#, c-format
-msgid "Can not install Xorg package: %s"
-msgstr "Nelze nainstalovat balíček Xorg: %s"
-
-#: Xconfig/card.pm:275
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Vyberte velikost paměti vaší grafické karty"
-
-#: Xconfig/card.pm:371
-#, c-format
-msgid "Xorg configuration"
-msgstr "Nastavení Xorg"
-
-#: Xconfig/card.pm:373
-#, c-format
-msgid "Which configuration of Xorg do you want to have?"
-msgstr "Které Xorg by jste chtěli použít?"
-
-#: Xconfig/card.pm:406
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Konfigurovat všechny monitory nezávisle"
-
-#: Xconfig/card.pm:407
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Použít rozšíření Xinerama"
-
-#: Xconfig/card.pm:412
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Konfigurovat pouze kartu \"%s\"%s"
-
-#: Xconfig/card.pm:424 Xconfig/various.pm:23
-#, c-format
-msgid "Xorg %s"
-msgstr "Xorg %s"
-
-#: Xconfig/card.pm:431 Xconfig/various.pm:22
-#, c-format
-msgid "Xorg %s with 3D hardware acceleration"
-msgstr "Xorg %s s hardwarovou 3D akcelerací"
+"X-Generator: KBabel 1.11.4\n"
-#: Xconfig/card.pm:433
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with Xorg %s."
-msgstr "S Xorg %s může vaše karta využít 3D hardwarové akcelerace."
-
-#: Xconfig/card.pm:439
-#, c-format
-msgid "Xorg %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "Xorg %s s EXPERIMENTÁLNÍ 3D hardwarovou akcelerací"
-
-#: Xconfig/card.pm:441
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with Xorg %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"S Xorg %s může vaše karta využít 3D hardwarové akcelerace.\n"
-" TOTO JE POUZE EXPERIMENTÁLNÍ VERZE, A MŮŽE VÉST K NESTABILITĚ SYSTÉMU."
-
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:1021
-#, c-format
-msgid "Custom"
-msgstr "Vlastní"
-
-#: Xconfig/main.pm:127 any.pm:742 diskdrake/dav.pm:26 help.pm:15
-#: install_steps_interactive.pm:1303 printer/printerdrake.pm:882
-#: printer/printerdrake.pm:899 printer/printerdrake.pm:4546
-#: printer/printerdrake.pm:5010 standalone/drakhosts:263
-#: standalone/drakroam:230 standalone/draksplash:93 standalone/logdrake:176
-#: standalone/net_applet:103 standalone/scannerdrake:494
-#, c-format
-msgid "Quit"
-msgstr "Konec"
-
-#: Xconfig/main.pm:129
-#, c-format
-msgid "Graphic Card"
-msgstr "Grafická karta"
-
-#: Xconfig/main.pm:132 Xconfig/monitor.pm:110
-#, c-format
-msgid "Monitor"
-msgstr "Monitor"
-
-#: Xconfig/main.pm:135 Xconfig/resolution_and_depth.pm:289
-#, c-format
-msgid "Resolution"
-msgstr "Rozlišení"
-
-#: Xconfig/main.pm:138
-#, c-format
-msgid "Test"
-msgstr "Test"
-
-#: Xconfig/main.pm:143 diskdrake/dav.pm:65 diskdrake/interactive.pm:449
-#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
-#: printer/printerdrake.pm:1112 standalone/drakfont:493
-#: standalone/drakfont:548
-#, c-format
-msgid "Options"
-msgstr "Volby"
-
-#: Xconfig/main.pm:178
-#, c-format
-msgid "Your Xorg configuration file is broken, we will ignore it."
-msgstr "Váš soubor s nastavením X.org je poškozený, bude ignorován."
-
-#: Xconfig/main.pm:196
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Zachovat změny?\n"
-"Aktuální konfigurace je:\n"
-"\n"
-"%s"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor for head #%d"
-msgstr "Zvolte monitor pro výstup č. %d"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor"
-msgstr "Zvolte typ monitoru"
-
-#: Xconfig/monitor.pm:117
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n Play"
-
-#: Xconfig/monitor.pm:118 mouse.pm:49
-#, c-format
-msgid "Generic"
-msgstr "Obecný"
-
-#: Xconfig/monitor.pm:119 standalone/drakconnect:591 standalone/harddrake2:54
-#: standalone/harddrake2:88
-#, c-format
-msgid "Vendor"
-msgstr "Dodavatel"
-
-#: Xconfig/monitor.pm:129
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "Plug'n Play detekce selhala. Vyberte prosím přesný monitor"
-
-#: Xconfig/monitor.pm:137
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Dva rozhodující parametry jsou: vertikální synchronizační frekvence, což je\n"
-"frekvence, kterou je obnovována celá obrazovka, a frekvence řádkové\n"
-" synchronizace (horiz. sync. rate), což je frekvence jakou jsou zobrazovány\n"
-"jednotlivé mikrořádky (scanline).\n"
-"\n"
-"Je VELMI DŮLEŽITÉ abyste nezvolili typ monitoru se schopnostmi vyššími než "
-"má\n"
-"váš monitor, protože byste si ho tím mohli poškodit. Jestliže si nejste "
-"jistí\n"
-"zvolte raději typ s nižšími schopnostmi."
-
-#: Xconfig/monitor.pm:144
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Horizontální(řádková) synchronizace"
-
-#: Xconfig/monitor.pm:145
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Vertikální(obrazovková) synchronizace"
-
-#: Xconfig/resolution_and_depth.pm:10
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 barev (8 bitů)"
-
-#: Xconfig/resolution_and_depth.pm:11
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tisíc barev (15 bitů)"
-
-#: Xconfig/resolution_and_depth.pm:12
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tisíc barev (16 bitů)"
-
-#: Xconfig/resolution_and_depth.pm:13
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 miliónů barev (24 bitů)"
-
-#: Xconfig/resolution_and_depth.pm:127
-#, c-format
-msgid "Resolutions"
-msgstr "Rozlišení"
-
-#: Xconfig/resolution_and_depth.pm:311 diskdrake/hd_gtk.pm:336
-#: install_steps_gtk.pm:288 mouse.pm:168 services.pm:162
-#: standalone/drakbackup:1606 standalone/drakperm:250
-#, c-format
-msgid "Other"
-msgstr "Další"
-
-#: Xconfig/resolution_and_depth.pm:360
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Vyberte si rozlišení a barevnou hloubku"
-
-#: Xconfig/resolution_and_depth.pm:361
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Grafická karta: %s"
-
-#: Xconfig/resolution_and_depth.pm:375 interactive.pm:119 interactive.pm:436
-#: interactive/http.pm:103 interactive/http.pm:156 interactive/newt.pm:321
-#: interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:143
-#: standalone/drakTermServ:222 standalone/drakTermServ:543
-#: standalone/drakbackup:1372 standalone/drakbackup:4123
-#: standalone/drakbackup:4183 standalone/drakbackup:4227
-#: standalone/drakbackup:4481 standalone/drakconnect:158
-#: standalone/drakconnect:852 standalone/drakconnect:939
-#: standalone/drakconnect:1030 standalone/drakfont:569 standalone/drakfont:579
-#: standalone/draksplash:173 standalone/drakups:210 standalone/net_monitor:339
-#: ugtk2.pm:392 ugtk2.pm:490 ugtk2.pm:899 ugtk2.pm:922
-#, c-format
-msgid "Ok"
-msgstr "Ok"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/smbnfs_gtk.pm:80 help.pm:90
-#: help.pm:445 install_steps_gtk.pm:455 install_steps_interactive.pm:406
-#: install_steps_interactive.pm:811 interactive.pm:120 interactive.pm:437
-#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
-#: interactive/stdio.pm:39 interactive/stdio.pm:142
-#: printer/printerdrake.pm:3882 standalone/drakautoinst:215
-#: standalone/drakbackup:1372 standalone/drakbackup:4052
-#: standalone/drakbackup:4056 standalone/drakbackup:4111
-#: standalone/drakbackup:4481 standalone/drakconnect:157
-#: standalone/drakconnect:937 standalone/drakconnect:1029
-#: standalone/drakfont:579 standalone/drakfont:655 standalone/drakfont:733
-#: standalone/draksplash:173 standalone/drakups:217 standalone/logdrake:176
-#: standalone/net_monitor:338 ugtk2.pm:386 ugtk2.pm:488 ugtk2.pm:497
-#: ugtk2.pm:899
-#, c-format
-msgid "Cancel"
-msgstr "Zrušit"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/hd_gtk.pm:150
-#: install_steps_gtk.pm:232 install_steps_gtk.pm:617 interactive.pm:567
-#: interactive/gtk.pm:682 interactive/gtk.pm:684 standalone/drakTermServ:311
-#: standalone/drakbackup:4048 standalone/drakbug:105
-#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:511 standalone/draknfs:206 standalone/drakperm:133
-#: standalone/draksambashare:320 standalone/draksec:344 standalone/draksec:346
-#: standalone/draksec:364 standalone/draksec:366 ugtk2.pm:1031 ugtk2.pm:1032
-#, c-format
-msgid "Help"
-msgstr "Nápověda"
-
-#: Xconfig/test.pm:30
-#, c-format
-msgid "Test of the configuration"
-msgstr "Vyzkoušet nastavení"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Chcete si vyzkoušet nastavení?"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Varování: test na této grafické kartě může způsobit zatuhnutí počítače"
-
-#: Xconfig/test.pm:69
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"Vyskytla se chyba:\n"
-"%s\n"
-"Zkuste změnit některé parametry"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Test skončí za %d sekund"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Je toto správné nastavení?"
-
-#: Xconfig/various.pm:29
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Rozložení klávesnice: %s\n"
-
-#: Xconfig/various.pm:30
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Typ myši: %s\n"
-
-#: Xconfig/various.pm:31
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Přípojení myši: %s\n"
-
-#: Xconfig/various.pm:33
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: Xconfig/various.pm:34
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Horizontální frekvence monitoru: %s\n"
-
-#: Xconfig/various.pm:35
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Vertikální frekvence monitoru: %s\n"
-
-#: Xconfig/various.pm:37
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Grafická karta: %s\n"
-
-#: Xconfig/various.pm:38
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Paměť na gr. kartě: %s kB\n"
-
-#: Xconfig/various.pm:40
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Barevná hloubka: %s\n"
-
-#: Xconfig/various.pm:41
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Rozlišení: %s\n"
-
-#: Xconfig/various.pm:43
-#, c-format
-msgid "Xorg driver: %s\n"
-msgstr "Xorg ovladač: %s\n"
-
-#: Xconfig/various.pm:72
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "Spouští se X"
-
-#: Xconfig/various.pm:74
-#, c-format
-msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(Xorg) upon booting.\n"
-"Would you like Xorg to start when you reboot?"
-msgstr ""
-"Můžu nastavit váš počítač tak, aby automaticky spustil X při startu.\n"
-"Chcete aby počítač po zapnutí spustil grafický režim?"
-
-#: Xconfig/various.pm:87
-#, c-format
-msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
-msgstr ""
-"Vaše grafická karta zřejmě disponuje konektorem pro TV-OUT.\n"
-"Tento konektor může být zprovozněn použitím tzv. frame bufferu.\n"
-"\n"
-"Aby to bylo možné, budete muset napojit svou grafickou kartu na televizní "
-"přijímač, a to ještě než zapnete váš počítač.\n"
-"Poté vyberte ve vašem zavaděči položku \"TV out\".\n"
-"\n"
-"Má vaše karta tuto vlastnost?"
-
-#: Xconfig/various.pm:99
-#, c-format
-msgid "What norm is your TV using?"
-msgstr "Jakou normu váš televizor používá?"
-
-#: Xconfig/xfree.pm:648
-#, c-format
-msgid ""
-"_:weird aspect ratio\n"
-"other"
-msgstr "jiné"
-
-#: any.pm:153 harddrake/sound.pm:195 interactive.pm:474 pkgs.pm:474
-#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
-#: standalone/drakups:99 standalone/drakxtv:92 standalone/harddrake2:375
-#: standalone/service_harddrake:235
+#: any.pm:157 diskdrake/interactive.pm:422 diskdrake/interactive.pm:617
+#: diskdrake/interactive.pm:798 diskdrake/interactive.pm:842
+#: diskdrake/interactive.pm:904 diskdrake/interactive.pm:1188 do_pkgs.pm:209
+#: do_pkgs.pm:255 harddrake/sound.pm:195 interactive.pm:576
#, c-format
msgid "Please wait"
msgstr "Prosím počkejte"
-#: any.pm:153
+#: any.pm:157
#, c-format
msgid "Bootloader installation in progress"
msgstr "Probíhá instalace zaváděcího programu"
-#: any.pm:164
+#: any.pm:168
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -869,12 +48,12 @@ msgstr ""
"\n"
"Přiřadit nové ID svazku?"
-#: any.pm:175
+#: any.pm:179
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Instalace zaváděcího programu neuspěla. Stala se tato chyba:"
-#: any.pm:181
+#: any.pm:185
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -891,7 +70,7 @@ msgstr ""
" Potom zadejte: shut-down\n"
"Při dalším spuštění už uvidíte prompt."
-#: any.pm:219
+#: any.pm:223
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -906,258 +85,269 @@ msgstr ""
"\n"
"Ze kterého disku spouštíte systém?"
-#: any.pm:242 help.pm:740
+#: any.pm:246
#, c-format
msgid "First sector of drive (MBR)"
msgstr "První sektor disku (MBR)"
-#: any.pm:243
+#: any.pm:247
#, c-format
msgid "First sector of the root partition"
msgstr "První sektor kořenového oddílu"
-#: any.pm:245
+#: any.pm:249
#, c-format
msgid "On Floppy"
msgstr "Na disketu"
-#: any.pm:247 help.pm:740 printer/printerdrake.pm:4203
+#: any.pm:251
#, c-format
msgid "Skip"
msgstr "Přeskočit"
-#: any.pm:251
+#: any.pm:255
#, c-format
msgid "LILO/grub Installation"
msgstr "Instalace LILO/Grub"
-#: any.pm:252
+#: any.pm:257
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Kam chcete nainstalovat zaváděcí program?"
-#: any.pm:278 standalone/drakboot:269
+#: any.pm:284
#, c-format
msgid "Boot Style Configuration"
msgstr "Nastavení stylu zavádění"
-#: any.pm:280 any.pm:281 any.pm:314 any.pm:315
+#: any.pm:294 any.pm:326 any.pm:327
#, c-format
msgid "Bootloader main options"
msgstr "Základní nastavení zaváděcího programu"
-#: any.pm:286
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Zadejte velikost paměti v MB"
-
-#: any.pm:288
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Volba ''Omezení nastavení z příkazové řádky'' je bezpředmětné bez hesla"
-
-#: any.pm:289 any.pm:628 authentication.pm:192
-#, c-format
-msgid "The passwords do not match"
-msgstr "Hesla nejsou shodná"
-
-#: any.pm:289 any.pm:628 authentication.pm:192 diskdrake/interactive.pm:1336
+#: any.pm:299
#, c-format
-msgid "Please try again"
-msgstr "Zkuste to znovu, prosím"
+msgid "Bootloader"
+msgstr "Zaváděcí program"
-#: any.pm:294 any.pm:319
+#: any.pm:300 any.pm:331
#, c-format
msgid "Bootloader to use"
msgstr "Zaváděcí program"
-#: any.pm:296 any.pm:321
+#: any.pm:302 any.pm:333
#, c-format
msgid "Boot device"
msgstr "Startovací zařízení"
-#: any.pm:298
+#: any.pm:304
+#, c-format
+msgid "Main options"
+msgstr "Hlavní volby"
+
+#: any.pm:305
#, c-format
msgid "Delay before booting default image"
-msgstr "Prodleva před automatickým spuštěním"
+msgstr "Prodleva před zavedením výchozího obrazu"
-#: any.pm:299
+#: any.pm:306
#, c-format
msgid "Enable ACPI"
msgstr "Povolit ACPI"
-#: any.pm:301
+#: any.pm:307
#, c-format
-msgid "Force no APIC"
-msgstr "Vnutit volbu No APIC"
+msgid "Enable APIC"
+msgstr "Povolit APIC"
-#: any.pm:303
+#: any.pm:308
#, c-format
-msgid "Force No Local APIC"
-msgstr "Vnutit volbu No Local APIC"
+msgid "Enable Local APIC"
+msgstr "Povolit lokální APIC"
-#: any.pm:305 any.pm:662 authentication.pm:197 diskdrake/smbnfs_gtk.pm:180
-#: network/netconnect.pm:584 printer/printerdrake.pm:1867
-#: printer/printerdrake.pm:1988 standalone/drakbackup:1650
-#: standalone/drakbackup:3641 standalone/drakups:297
+#: any.pm:310 any.pm:686 authentication.pm:196 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Heslo"
-#: any.pm:306 any.pm:663 authentication.pm:198
+#: any.pm:312 authentication.pm:207
+#, c-format
+msgid "The passwords do not match"
+msgstr "Hesla nejsou shodná"
+
+#: any.pm:312 authentication.pm:207 diskdrake/interactive.pm:1348
+#, c-format
+msgid "Please try again"
+msgstr "Zkuste to znovu, prosím"
+
+#: any.pm:313
+#, c-format
+msgid "You can not use a password with %s"
+msgstr "Nelze použít heslo s %s"
+
+#: any.pm:316 any.pm:687 authentication.pm:197
#, c-format
msgid "Password (again)"
msgstr "Heslo (podruhé)"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "Restrict command line options"
msgstr "Omezení nastavení z příkazové řádky"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "restrict"
msgstr "omezení"
-#: any.pm:309
+#: any.pm:318
+#, c-format
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr ""
+"Volba ''Omezení nastavení z příkazové řádky'' je bezpředmětné bez hesla"
+
+#: any.pm:320
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Vyčistit adresář /tmp při každém startu"
-#: any.pm:310
+#: any.pm:321
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Pokud je třeba, upřesněte velikost paměti (nalezeno %d MB)"
-#: any.pm:320
+#: any.pm:322
+#, c-format
+msgid "Give the ram size in MB"
+msgstr "Zadejte velikost paměti v MB"
+
+#: any.pm:332
#, c-format
msgid "Init Message"
msgstr "Úvodní zpráva"
-#: any.pm:322
+#: any.pm:334
#, c-format
msgid "Open Firmware Delay"
msgstr "Prodleva pro firmware"
-#: any.pm:323
+#: any.pm:335
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Prodleva při spuštění"
-#: any.pm:324
+#: any.pm:336
#, c-format
msgid "Enable CD Boot?"
msgstr "Povolit spuštění z CD?"
-#: any.pm:325
+#: any.pm:337
#, c-format
msgid "Enable OF Boot?"
msgstr "Povolit zavaděč OF?"
-#: any.pm:326
+#: any.pm:338
#, c-format
msgid "Default OS?"
msgstr "Výchozí OS?"
-#: any.pm:380
+#: any.pm:404
#, c-format
msgid "Image"
msgstr "Obraz(image)"
-#: any.pm:381 any.pm:391
+#: any.pm:405 any.pm:418
#, c-format
msgid "Root"
msgstr "Kořenový(root)"
-#: any.pm:382 any.pm:404
+#: any.pm:406 any.pm:431
#, c-format
msgid "Append"
msgstr "Připojit"
-#: any.pm:384 standalone/drakboot:271 standalone/drakboot:275
+#: any.pm:408
+#, c-format
+msgid "Xen append"
+msgstr "Připojit Xen"
+
+#: any.pm:411
#, c-format
msgid "Video mode"
-msgstr "Textový režim"
+msgstr "Video režim"
-#: any.pm:386
+#: any.pm:413
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:387
+#: any.pm:414
#, c-format
msgid "Network profile"
msgstr "Síťový profil"
-#: any.pm:396 any.pm:401 any.pm:403 diskdrake/interactive.pm:450
+#: any.pm:423 any.pm:428 any.pm:430 diskdrake/interactive.pm:443
#, c-format
msgid "Label"
msgstr "Značka"
-#: any.pm:398 any.pm:408 harddrake/v4l.pm:438 standalone/drakbackup:2104
-#: standalone/draksec:52
+#: any.pm:425 any.pm:433 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Výchozí"
-#: any.pm:405
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd-velikost"
-
-#: any.pm:407
+#: any.pm:432
#, c-format
msgid "NoVideo"
msgstr "Bez Videa"
-#: any.pm:418
+#: any.pm:443
#, c-format
msgid "Empty label not allowed"
msgstr "Prázdná značka není povolena"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a kernel image"
msgstr "Musíte zadat soubor s jádrem"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a root partition"
msgstr "Musíte zadat kořenový oddíl"
-#: any.pm:420
+#: any.pm:445
#, c-format
msgid "This label is already used"
msgstr "Tato značka se již používá"
-#: any.pm:434
+#: any.pm:459
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Jaký typ záznamu chcete přidat?"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Jiný systém (SunOs...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Jiný systém (MacOs...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (Windows...)"
msgstr "Jiný systém (Windows...)"
-#: any.pm:464
+#: any.pm:489
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -1166,93 +356,88 @@ msgstr ""
"Zde jsou záznamy z vašeho zaváděcího menu.\n"
"Můžete přidat další nebo změnit stávající."
-#: any.pm:614
+#: any.pm:640
#, c-format
msgid "access to X programs"
msgstr "přístup k programům v X prostředí"
-#: any.pm:615
+#: any.pm:641
#, c-format
msgid "access to rpm tools"
msgstr "přístup k rpm nástrojům"
-#: any.pm:616
+#: any.pm:642
#, c-format
msgid "allow \"su\""
msgstr "povolit \"su\""
-#: any.pm:617
+#: any.pm:643
#, c-format
msgid "access to administrative files"
msgstr "přístup k administrativním souborům"
-#: any.pm:618
+#: any.pm:644
#, c-format
msgid "access to network tools"
msgstr "přístup k síťovým nástrojům"
-#: any.pm:619
+#: any.pm:645
#, c-format
msgid "access to compilation tools"
msgstr "přístup k nástrojům pro kompilaci"
-#: any.pm:624
+#: any.pm:650
#, c-format
msgid "(already added %s)"
msgstr "(už byl přidán %s)"
-#: any.pm:629
-#, c-format
-msgid "This password is too simple"
-msgstr "Toto heslo je příliš jednoduché"
-
-#: any.pm:630
+#: any.pm:657
#, c-format
msgid "Please give a user name"
msgstr "Prosím zadejte uživatelské jméno"
-#: any.pm:631
+#: any.pm:658
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Uživatelské jméno může obsahovat pouze malá písmena, čísla, '-' a '_'"
-#: any.pm:632
+#: any.pm:659
#, c-format
msgid "The user name is too long"
msgstr "Toto uživatelské jméno je příliš dlouhé"
-#: any.pm:633
+#: any.pm:660
#, c-format
msgid "This user name has already been added"
msgstr "Toto uživatelské jméno už bylo přidáno"
-#: any.pm:634 any.pm:665
+#: any.pm:661 any.pm:689
#, c-format
msgid "User ID"
msgstr "ID uživatele"
-#: any.pm:635 any.pm:666
+#: any.pm:662 any.pm:690
#, c-format
msgid "Group ID"
msgstr "ID skupiny"
-#: any.pm:638
+#: any.pm:665
#, c-format
msgid "%s must be a number"
msgstr "%s musí být číslo"
-#: any.pm:639
+#: any.pm:666
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s by mělo být vyšší než 500. Přesto použít?"
-#: any.pm:644 standalone/draksambashare:1214
+#: any.pm:671
#, c-format
msgid "Add user"
msgstr "Přidat uživatele"
-#: any.pm:646
+#: any.pm:673
#, c-format
msgid ""
"Enter a user\n"
@@ -1261,99 +446,95 @@ msgstr ""
"Zadejte uživatele\n"
"%s"
-#: any.pm:649 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:154
-#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:81 help.pm:531
-#: interactive/http.pm:151 printer/printerdrake.pm:197
-#: printer/printerdrake.pm:382 printer/printerdrake.pm:5010
-#: standalone/drakbackup:2836 standalone/scannerdrake:685
-#: standalone/scannerdrake:835
+#: any.pm:676 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:166
+#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:82
+#: interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Hotovo"
-#: any.pm:650 help.pm:52
+#: any.pm:677
#, c-format
msgid "Accept user"
msgstr "Vytvořit uživatele"
-#: any.pm:660
+#: any.pm:682
#, c-format
msgid "Real name"
msgstr "Skutečné jméno"
-#: any.pm:661 standalone/drakbackup:1645
+#: any.pm:685
#, c-format
msgid "Login name"
msgstr "Přihlašovací jméno"
-#: any.pm:664
+#: any.pm:688
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:668
-#, c-format
-msgid "Icon"
-msgstr "Ikona"
-
-#: any.pm:715 security/l10n.pm:14
+#: any.pm:735 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatické přihlášení"
-#: any.pm:716
+#: any.pm:736
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Můžu nastavit váš počítač tak, aby automaticky přihlásil vybraného uživatele."
-#: any.pm:717
+#: any.pm:737
#, c-format
msgid "Use this feature"
msgstr "Použít tuto vlastnost"
-#: any.pm:718
+#: any.pm:738
#, c-format
msgid "Choose the default user:"
msgstr "Zvolte standardního uživatele:"
-#: any.pm:719
+#: any.pm:739
#, c-format
msgid "Choose the window manager to run:"
msgstr "Vyberte si, který správce oken má být spouštěn:"
-#: any.pm:740
+#: any.pm:767
#, c-format
msgid "License agreement"
msgstr "Souhlas s licencí"
-#: any.pm:745
+#: any.pm:770 diskdrake/dav.pm:26
+#, c-format
+msgid "Quit"
+msgstr "Konec"
+
+#: any.pm:773
#, c-format
msgid "Release Notes"
msgstr "Poznámky k vydání"
-#: any.pm:748 help.pm:15 install_steps_gtk.pm:539
-#: install_steps_interactive.pm:715 standalone/drakautoinst:214
+#: any.pm:776
#, c-format
msgid "Accept"
msgstr "Přijmout"
-#: any.pm:748 install_steps_gtk.pm:539 install_steps_interactive.pm:715
+#: any.pm:776
#, c-format
msgid "Refuse"
msgstr "Odmítnout"
-#: any.pm:765 any.pm:833
+#: any.pm:795 any.pm:863
#, c-format
msgid "Please choose a language to use."
msgstr "Prosím zvolte si jazyk, který chcete používat."
-#: any.pm:766 any.pm:834
+#: any.pm:796 any.pm:864
#, c-format
msgid "Language choice"
msgstr "Výběr jazyka"
-#: any.pm:794
+#: any.pm:826
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
@@ -1363,70 +544,72 @@ msgstr ""
"Mandriva Linux podporuje více jazyků. Můžete si zvolit další jazyky,\n"
"které budou dostupné po instalaci a následném restartu systému."
-#: any.pm:797
+#: any.pm:829
#, c-format
msgid "Multi languages"
msgstr "Více jazyků"
-#: any.pm:813 any.pm:842 help.pm:648
+#: any.pm:841 any.pm:872
#, c-format
-msgid "Use Unicode by default"
-msgstr "Použít Unicode jako výchozí"
+msgid "Old compatibility (non UTF-8) encoding"
+msgstr "Stará (ne UTF-8) kódování pro kompatibilitu"
-#: any.pm:814 help.pm:648
+#: any.pm:843
#, c-format
msgid "All languages"
msgstr "Všechny jazyky"
-#: any.pm:888 help.pm:567 help.pm:856 install_steps_interactive.pm:932
+#: any.pm:918
#, c-format
msgid "Country / Region"
msgstr "Země"
-#: any.pm:890
+#: any.pm:920
#, c-format
msgid "Please choose your country."
msgstr "Vyberte si prosím svoji zem."
-#: any.pm:892
+#: any.pm:922
#, c-format
msgid "Here is the full list of available countries"
msgstr "Zde je kompletní seznam dostupných zemí"
-#: any.pm:893
+#: any.pm:923
#, c-format
msgid "Other Countries"
msgstr "Jiné země"
-#: any.pm:893 help.pm:52 help.pm:410 help.pm:432 help.pm:648 help.pm:723
-#: interactive.pm:397
+#: any.pm:923 interactive.pm:477
#, c-format
msgid "Advanced"
msgstr "Rozšíření"
-#: any.pm:901
+#: any.pm:929
#, c-format
msgid "Input method:"
msgstr "Vstupní metoda:"
-#: any.pm:904 install_any.pm:422 network/netconnect.pm:317
-#: network/netconnect.pm:322 network/netconnect.pm:1237 network/wireless.pm:7
-#: printer/printerdrake.pm:117
+#: any.pm:932
#, c-format
msgid "None"
msgstr "Žádné"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "No sharing"
msgstr "Nesdílet"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "Allow all users"
msgstr "Povolit všem uživatelům"
-#: any.pm:1025
+#: any.pm:1012
+#, c-format
+msgid "Custom"
+msgstr "Vlastní"
+
+#: any.pm:1016
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1442,7 +625,7 @@ msgstr ""
"\n"
"Lze také provést \"Vlastní\" povolení pro jednotlivé uživatele.\n"
-#: any.pm:1037
+#: any.pm:1028
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -1451,7 +634,7 @@ msgstr ""
"NFS: tradiční systém pro sdílení souborů v prostředí Unix, s menší podporou "
"operačních systémů Mac a Windows."
-#: any.pm:1040
+#: any.pm:1031
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -1460,7 +643,7 @@ msgstr ""
"SMB: systém pro sdílení souborů používaný ve Windows, MacOS X a mnohými "
"moderními Linuxovými systémy."
-#: any.pm:1048
+#: any.pm:1039
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -1468,23 +651,17 @@ msgstr ""
"Nyní lze provést export přes protokol NFS nebo SMB. Vyberte prosím, který "
"chcete použít."
-#: any.pm:1073
+#: any.pm:1064
#, c-format
msgid "Launch userdrake"
msgstr "Spustit UserDrake"
-#: any.pm:1073 printer/printerdrake.pm:4085 printer/printerdrake.pm:4088
-#: printer/printerdrake.pm:4089 printer/printerdrake.pm:4090
-#: printer/printerdrake.pm:5328 standalone/drakTermServ:321
-#: standalone/drakbackup:4245 standalone/drakbug:126 standalone/drakfont:499
-#: standalone/drakids:64 standalone/drakids:77 standalone/drakids:85
-#: standalone/draknfs:210 standalone/net_monitor:117
-#: standalone/printerdrake:583
+#: any.pm:1064 interactive/gtk.pm:747
#, c-format
msgid "Close"
msgstr "Zavřít"
-#: any.pm:1075
+#: any.pm:1066
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -1493,6 +670,56 @@ msgstr ""
"Sdílení mezi uživateli používá skupinu \"fileshare\". \n"
"Uživatele lze do této skupiny přidat pomocí nástroje UserDrake."
+#: any.pm:1158
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Prosím odhlaste se a pak stiskněte Ctrl-Alt-Backspace"
+
+#: any.pm:1162
+#, c-format
+msgid "You need to log out and back in again for changes to take effect"
+msgstr "Aby se změna projevila, je nutné se odhlásit a opět přihlásit"
+
+#: any.pm:1212
+#, c-format
+msgid "Timezone"
+msgstr "Časová zóna"
+
+#: any.pm:1212
+#, c-format
+msgid "Which is your timezone?"
+msgstr "Jaké je vaše časové pásmo?"
+
+#: any.pm:1224 any.pm:1226
+#, c-format
+msgid "Date, Clock & Time Zone Settings"
+msgstr "Nastavení data, hodin a časové zóny"
+
+#: any.pm:1227
+#, c-format
+msgid "What is the best time?"
+msgstr "Jaké vedení času je nejvhodnější?"
+
+#: any.pm:1231
+#, c-format
+msgid "%s (hardware clock set to UTC)"
+msgstr "%s (hardwarové hodiny nastaveny na UTC)"
+
+#: any.pm:1232
+#, c-format
+msgid "%s (hardware clock set to local time)"
+msgstr "%s (hardwarové hodiny nastaveny na místní čas)"
+
+#: any.pm:1234
+#, c-format
+msgid "NTP Server"
+msgstr "NTP Server"
+
+#: any.pm:1235
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Automatická synchronizace času (pomocí NTP)"
+
#: authentication.pm:23
#, c-format
msgid "Local file"
@@ -1575,7 +802,7 @@ msgid "Windows Domain:"
msgstr "Doména Windows:"
#: authentication.pm:69
-#, fuzzy, c-format
+#, c-format
msgid ""
"Winbind allows the system to retrieve information and authenticate users in "
"a Windows domain."
@@ -1617,7 +844,7 @@ msgstr "Ověření pomocí LDAP"
msgid "LDAP Base dn"
msgstr "Základní dn pro LDAP"
-#: authentication.pm:98 share/compssUsers.pl:102
+#: authentication.pm:98
#, c-format
msgid "LDAP Server"
msgstr "LDAP server"
@@ -1647,14 +874,12 @@ msgstr "bezpečnostní schéma (SASL/Kerberos)"
msgid "Authentication Active Directory"
msgstr "Ověření pomocí Active Directory"
-#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:181
+#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Doména"
-#: authentication.pm:124 diskdrake/dav.pm:63 help.pm:147
-#: printer/printerdrake.pm:75 share/compssUsers.pl:82
-#: standalone/drakTermServ:296
+#: authentication.pm:124 diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Server"
@@ -1744,39 +969,33 @@ msgstr "Uživatelské jméno Správce domény"
msgid "Domain Admin Password"
msgstr "Heslo Správce domény"
-#: authentication.pm:181
+#: authentication.pm:181 authentication.pm:198
#, c-format
-msgid "Set administrator (root) password and network authentication methods"
-msgstr "Nastavení hesla správce (uživatele root) a režimy pro síťové ověřování"
+msgid "Authentication"
+msgstr "Ověření"
#: authentication.pm:182
#, c-format
msgid "Set administrator (root) password"
msgstr "Heslo správce (uživatele root)"
-#: authentication.pm:183 standalone/drakvpn:1111
+#: authentication.pm:184
#, c-format
msgid "Authentication method"
msgstr "Autentizační metoda"
#. -PO: keep this short or else the buttons will not fit in the window
-#: authentication.pm:188 help.pm:723
+#: authentication.pm:189
#, c-format
msgid "No password"
msgstr "Bez hesla"
-#: authentication.pm:194
+#: authentication.pm:210
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Toto heslo je příliš jednoduché (musí být alespoň %d znaků dlouhé)"
-#: authentication.pm:199 network/netconnect.pm:322 network/netconnect.pm:585
-#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:481
-#, c-format
-msgid "Authentication"
-msgstr "Ověření"
-
-#: authentication.pm:331
+#: authentication.pm:351
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "Nelze použít všesměrové vysílání bez NIS domény"
@@ -1786,7 +1005,7 @@ msgstr "Nelze použít všesměrové vysílání bez NIS domény"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:767
+#: bootloader.pm:880
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1801,42 +1020,42 @@ msgstr ""
"vyckejte na automaticke zavedeni.\n"
"\n"
-#: bootloader.pm:909
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO s grafickým menu"
-
-#: bootloader.pm:910
+#: bootloader.pm:1028
#, c-format
msgid "LILO with text menu"
msgstr "LILO s textovým menu"
-#: bootloader.pm:911
+#: bootloader.pm:1029
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB s grafickým menu"
-#: bootloader.pm:912
+#: bootloader.pm:1030
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB s textovým menu"
-#: bootloader.pm:913
+#: bootloader.pm:1031
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:990
+#: bootloader.pm:1032
+#, c-format
+msgid "SILO"
+msgstr "SILO"
+
+#: bootloader.pm:1112
#, c-format
msgid "not enough room in /boot"
msgstr "není dost místa v adresáři /boot"
-#: bootloader.pm:1483
+#: bootloader.pm:1679
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "Zaváděcí program nelze nainstalovat na oddíl %s\n"
-#: bootloader.pm:1523
+#: bootloader.pm:1732
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1845,7 +1064,7 @@ msgstr ""
"Nastavení vašeho zavaděče musí být aktualizováno, protože se změnilo pořadí "
"oddílů na disku"
-#: bootloader.pm:1536
+#: bootloader.pm:1745
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
@@ -1854,242 +1073,55 @@ msgstr ""
"Zavaděč nelze korektně nainstalovat. Musíte použít rescue režim a vybrat \"%s"
"\""
-#: bootloader.pm:1537
+#: bootloader.pm:1746
#, c-format
msgid "Re-install Boot Loader"
msgstr "Znovu instalovat zaváděcí program"
-#: common.pm:134
+#: common.pm:129
+#, c-format
+msgid "B"
+msgstr "B"
+
+#: common.pm:129
#, c-format
msgid "KB"
msgstr "kB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "MB"
msgstr "MB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "GB"
msgstr "GB"
-#: common.pm:142
+#: common.pm:137
#, c-format
msgid "TB"
msgstr "TB"
-#: common.pm:150
+#: common.pm:145
#, c-format
msgid "%d minutes"
msgstr "%d minut(y)"
-#: common.pm:152
+#: common.pm:147
#, c-format
msgid "1 minute"
msgstr "1 minuta"
-#: common.pm:154
+#: common.pm:149
#, c-format
msgid "%d seconds"
msgstr "%d sekund"
-#: common.pm:260
-#, c-format
-msgid "kdesu missing"
-msgstr "chybí kdesu"
-
-#: common.pm:263
-#, c-format
-msgid "consolehelper missing"
-msgstr "chybí consolehelper"
-
-#: crypto.pm:13 crypto.pm:48 lang.pm:207 network/adsl_consts.pm:66
-#: network/adsl_consts.pm:75 network/adsl_consts.pm:84
-#, c-format
-msgid "Austria"
-msgstr "Rakousko"
-
-#: crypto.pm:14 crypto.pm:47 lang.pm:208 standalone/drakxtv:48
+#: common.pm:298
#, c-format
-msgid "Australia"
-msgstr "Austrálie"
-
-#: crypto.pm:15 crypto.pm:49 lang.pm:214 network/adsl_consts.pm:93
-#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
-#: network/adsl_consts.pm:123 network/netconnect.pm:44
-#, c-format
-msgid "Belgium"
-msgstr "Belgie"
-
-#: crypto.pm:16 crypto.pm:50 lang.pm:223 network/adsl_consts.pm:132
-#: network/adsl_consts.pm:143 network/adsl_consts.pm:152
-#: network/adsl_consts.pm:161
-#, c-format
-msgid "Brazil"
-msgstr "Brazílie"
-
-#: crypto.pm:17 crypto.pm:51 lang.pm:230
-#, c-format
-msgid "Canada"
-msgstr "Kanada"
-
-#: crypto.pm:18 crypto.pm:74 lang.pm:235 network/adsl_consts.pm:891
-#: network/adsl_consts.pm:900 network/adsl_consts.pm:911
-#, c-format
-msgid "Switzerland"
-msgstr "Švýcarsko"
-
-#: crypto.pm:19 lang.pm:242
-#, c-format
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: crypto.pm:20 crypto.pm:52 lang.pm:248 network/adsl_consts.pm:368
-#, c-format
-msgid "Czech Republic"
-msgstr "Česká republika"
-
-#: crypto.pm:21 crypto.pm:57 lang.pm:249 network/adsl_consts.pm:499
-#: network/adsl_consts.pm:508
-#, c-format
-msgid "Germany"
-msgstr "Německo"
-
-#: crypto.pm:22 crypto.pm:53 lang.pm:251 network/adsl_consts.pm:378
-#, c-format
-msgid "Denmark"
-msgstr "Dánsko"
-
-#: crypto.pm:23 crypto.pm:54 lang.pm:256
-#, c-format
-msgid "Estonia"
-msgstr "Estonsko"
-
-#: crypto.pm:24 crypto.pm:72 lang.pm:260 network/adsl_consts.pm:759
-#: network/adsl_consts.pm:770 network/adsl_consts.pm:781
-#: network/adsl_consts.pm:792 network/adsl_consts.pm:801
-#: network/adsl_consts.pm:810 network/adsl_consts.pm:819
-#: network/adsl_consts.pm:828 network/adsl_consts.pm:837
-#: network/adsl_consts.pm:846 network/adsl_consts.pm:855
-#: network/adsl_consts.pm:864 network/adsl_consts.pm:873
-#, c-format
-msgid "Spain"
-msgstr "Španělsko"
-
-#: crypto.pm:25 crypto.pm:55 lang.pm:262 network/adsl_consts.pm:387
-#, c-format
-msgid "Finland"
-msgstr "Finsko"
-
-#: crypto.pm:26 crypto.pm:56 lang.pm:267 network/adsl_consts.pm:396
-#: network/adsl_consts.pm:408 network/adsl_consts.pm:420
-#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
-#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
-#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
-#: network/netconnect.pm:41
-#, c-format
-msgid "France"
-msgstr "Francie"
-
-#: crypto.pm:27 crypto.pm:58 lang.pm:280 network/adsl_consts.pm:519
-#, c-format
-msgid "Greece"
-msgstr "Řecko"
-
-#: crypto.pm:28 crypto.pm:59 lang.pm:291 network/adsl_consts.pm:528
-#, c-format
-msgid "Hungary"
-msgstr "Maďarsko"
-
-#: crypto.pm:29 crypto.pm:60 lang.pm:293 network/adsl_consts.pm:537
-#: standalone/drakxtv:47
-#, c-format
-msgid "Ireland"
-msgstr "Irsko"
-
-#: crypto.pm:30 crypto.pm:61 lang.pm:294 network/adsl_consts.pm:546
-#, c-format
-msgid "Israel"
-msgstr "Izrael"
-
-#: crypto.pm:31 crypto.pm:62 lang.pm:300 network/adsl_consts.pm:557
-#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
-#: network/adsl_consts.pm:589 network/netconnect.pm:43 standalone/drakxtv:47
-#, c-format
-msgid "Italy"
-msgstr "Itálie"
-
-#: crypto.pm:32 crypto.pm:63 lang.pm:303
-#, c-format
-msgid "Japan"
-msgstr "Japonsko"
-
-#: crypto.pm:33 crypto.pm:64 lang.pm:352 network/adsl_consts.pm:620
-#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
-#: network/adsl_consts.pm:647 network/netconnect.pm:42
-#, c-format
-msgid "Netherlands"
-msgstr "Nizozemí"
-
-#: crypto.pm:34 crypto.pm:66 lang.pm:353 network/adsl_consts.pm:656
-#: network/adsl_consts.pm:661 network/adsl_consts.pm:666
-#: network/adsl_consts.pm:671 network/adsl_consts.pm:676
-#: network/adsl_consts.pm:681 network/adsl_consts.pm:686
-#, c-format
-msgid "Norway"
-msgstr "Norsko"
-
-#: crypto.pm:35 crypto.pm:65 lang.pm:357
-#, c-format
-msgid "New Zealand"
-msgstr "Nový Zéland"
-
-#: crypto.pm:36 crypto.pm:67 lang.pm:365 network/adsl_consts.pm:693
-#: network/adsl_consts.pm:704
-#, c-format
-msgid "Poland"
-msgstr "Polsko"
-
-#: crypto.pm:37 crypto.pm:68 lang.pm:370 network/adsl_consts.pm:716
-#, c-format
-msgid "Portugal"
-msgstr "Portugalsko"
-
-#: crypto.pm:38 crypto.pm:69 lang.pm:376 network/adsl_consts.pm:725
-#, c-format
-msgid "Russia"
-msgstr "Rusko"
-
-#: crypto.pm:39 crypto.pm:73 lang.pm:382 network/adsl_consts.pm:882
-#, c-format
-msgid "Sweden"
-msgstr "Švédsko"
-
-#: crypto.pm:40 crypto.pm:70 lang.pm:387
-#, c-format
-msgid "Slovakia"
-msgstr "Slovensko"
-
-#: crypto.pm:41 crypto.pm:76 lang.pm:401 network/adsl_consts.pm:920
-#, c-format
-msgid "Thailand"
-msgstr "Thajsko"
-
-#: crypto.pm:42 crypto.pm:75 lang.pm:411
-#, c-format
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#: crypto.pm:43 crypto.pm:71 lang.pm:430 standalone/drakxtv:49
-#, c-format
-msgid "South Africa"
-msgstr "Jižní Afrika"
-
-#: crypto.pm:77 crypto.pm:112 lang.pm:416 network/netconnect.pm:45
-#, c-format
-msgid "United States"
-msgstr "Spojené státy americké"
+msgid "command %s missing"
+msgstr "chybí příkaz %s"
#: diskdrake/dav.pm:17
#, c-format
@@ -2111,23 +1143,46 @@ msgstr ""
msgid "New"
msgstr "Nový"
-#: diskdrake/dav.pm:61 diskdrake/interactive.pm:456 diskdrake/smbnfs_gtk.pm:74
+#: diskdrake/dav.pm:61 diskdrake/interactive.pm:449 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Odpojit"
-#: diskdrake/dav.pm:62 diskdrake/interactive.pm:453 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:62 diskdrake/interactive.pm:446 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Připojit"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:447
-#: diskdrake/interactive.pm:679 diskdrake/interactive.pm:698
-#: diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:78
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:440
+#: diskdrake/interactive.pm:670 diskdrake/interactive.pm:688
+#: diskdrake/interactive.pm:692 diskdrake/removable.pm:23
+#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Přípojný bod"
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:442
+#: diskdrake/interactive.pm:1047 diskdrake/removable.pm:24
+#: diskdrake/smbnfs_gtk.pm:80
+#, c-format
+msgid "Options"
+msgstr "Volby"
+
+#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:229
+#: diskdrake/interactive.pm:242 diskdrake/interactive.pm:398
+#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:547
+#: diskdrake/interactive.pm:552 diskdrake/interactive.pm:660
+#: diskdrake/interactive.pm:922 diskdrake/interactive.pm:1092
+#: diskdrake/interactive.pm:1105 diskdrake/interactive.pm:1108
+#: diskdrake/interactive.pm:1348 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:19
+#: do_pkgs.pm:24 do_pkgs.pm:40 do_pkgs.pm:56 do_pkgs.pm:61 fsedit.pm:229
+#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
+#: scanner.pm:94 scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95
+#: wizards.pm:99 wizards.pm:121
+#, c-format
+msgid "Error"
+msgstr "Chyba"
+
#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
@@ -2143,33 +1198,48 @@ msgstr "URL musí začínat znaky http:// nebo https://"
msgid "Server: "
msgstr "Server: "
-#: diskdrake/dav.pm:110 diskdrake/interactive.pm:523
-#: diskdrake/interactive.pm:1218 diskdrake/interactive.pm:1296
+#: diskdrake/dav.pm:110 diskdrake/interactive.pm:520
+#: diskdrake/interactive.pm:1230 diskdrake/interactive.pm:1308
#, c-format
msgid "Mount point: "
msgstr "Adresář připojení (mount point): "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1303
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1315
#, c-format
msgid "Options: %s"
msgstr "Volby: %s"
-#: diskdrake/hd_gtk.pm:52 diskdrake/interactive.pm:293
-#: diskdrake/smbnfs_gtk.pm:21 install_interactive.pm:63
-#: install_interactive.pm:217 install_interactive.pm:223
-#: install_interactive.pm:276 install_interactive.pm:281
-#: install_steps_interactive.pm:253 install_steps_interactive.pm:317
-#: steps.pm:21
+#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:286
+#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
+#: fs/partitioning_wizard.pm:47 fs/partitioning_wizard.pm:201
+#: fs/partitioning_wizard.pm:207 fs/partitioning_wizard.pm:247
+#: fs/partitioning_wizard.pm:266 fs/partitioning_wizard.pm:271
#, c-format
msgid "Partitioning"
msgstr "Rozdělení disku"
-#: diskdrake/hd_gtk.pm:92
+#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1067
+#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1130
+#, c-format
+msgid "Read carefully!"
+msgstr "Čtěte pozorně!"
+
+#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr "Zálohujte si nejdřív svá data, prosím"
-#: diskdrake/hd_gtk.pm:95
+#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:222
+#, c-format
+msgid "Exit"
+msgstr "Konec"
+
+#: diskdrake/hd_gtk.pm:94
+#, c-format
+msgid "Continue"
+msgstr "Pokračovat"
+
+#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
@@ -2179,17 +1249,18 @@ msgstr ""
"Jestliže chcete používat aboot, musíte nechat volné místo na začátku disku\n"
"(2048 sektorů stačí)"
-#: diskdrake/hd_gtk.pm:152 help.pm:531
+#: diskdrake/hd_gtk.pm:162 interactive.pm:640 interactive/gtk.pm:719
+#: interactive/gtk.pm:740 interactive/gtk.pm:760 ugtk2.pm:923 ugtk2.pm:924
#, c-format
-msgid "Wizard"
-msgstr "Průvodce"
+msgid "Help"
+msgstr "Nápověda"
-#: diskdrake/hd_gtk.pm:185
+#: diskdrake/hd_gtk.pm:197
#, c-format
msgid "Choose action"
msgstr "Volba akce"
-#: diskdrake/hd_gtk.pm:189
+#: diskdrake/hd_gtk.pm:201
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -2201,148 +1272,162 @@ msgstr ""
"Doporučuji vám nejprve zmenšit tento oddíl\n"
"(klepněte na něj a potom na \"Změnit velikost\")"
-#: diskdrake/hd_gtk.pm:191
+#: diskdrake/hd_gtk.pm:203
#, c-format
msgid "Please click on a partition"
msgstr "Prosím klepněte na oddíl"
-#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:457
-#: standalone/drakbackup:3088 standalone/drakbackup:3148
+#: diskdrake/hd_gtk.pm:217 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Detaily"
-#: diskdrake/hd_gtk.pm:251
+#: diskdrake/hd_gtk.pm:265
#, c-format
msgid "No hard drives found"
msgstr "Nenalezeny žádné pevné disky"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:292
+#, c-format
+msgid "Unknown"
+msgstr "Neznámý"
+
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Ext2"
msgstr "Ext2"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Journalised FS"
msgstr "Žurnálovací FS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Swap"
msgstr "Odkládací (swap)"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "SunOS"
msgstr "SunOs"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "HFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1233
+#: diskdrake/hd_gtk.pm:352 services.pm:149
+#, c-format
+msgid "Other"
+msgstr "Další"
+
+#: diskdrake/hd_gtk.pm:352 diskdrake/interactive.pm:1244
#, c-format
msgid "Empty"
msgstr "Prázdný"
-#: diskdrake/hd_gtk.pm:340
+#: diskdrake/hd_gtk.pm:356
#, c-format
msgid "Filesystem types:"
msgstr "Souborové systémy:"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:359 diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:291
+#: diskdrake/interactive.pm:392 diskdrake/interactive.pm:428
+#: diskdrake/interactive.pm:577 diskdrake/interactive.pm:751
+#: diskdrake/interactive.pm:809 diskdrake/interactive.pm:902
+#: diskdrake/interactive.pm:944 diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:1173 diskdrake/interactive.pm:1211
+#: diskdrake/interactive.pm:1347 do_pkgs.pm:16 do_pkgs.pm:35 do_pkgs.pm:53
+#: harddrake/sound.pm:279
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Místo toho použijte ''%s''"
+msgid "Warning"
+msgstr "Varování"
-#: diskdrake/hd_gtk.pm:357 diskdrake/interactive.pm:472
+#: diskdrake/hd_gtk.pm:380
#, c-format
-msgid "Create"
-msgstr "Vytvořit"
+msgid "This partition is already empty"
+msgstr "Tento oddíl je již prázdný"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:365
-#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:625
-#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
-#: standalone/harddrake2:108 standalone/harddrake2:117
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Type"
-msgstr "Změnit typ"
+msgid "Use ``Unmount'' first"
+msgstr "Nejprve použijte ''Odpojit''"
-#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: diskdrake/hd_gtk.pm:359 diskdrake/interactive.pm:457
-#: standalone/drakperm:123 standalone/printerdrake:248
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Delete"
-msgstr "Smazat"
+msgid "Use ``%s'' instead"
+msgstr "Místo toho použijte ''%s''"
-#: diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:389 diskdrake/interactive.pm:441
+#: diskdrake/interactive.pm:611 diskdrake/interactive.pm:1083
+#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Nejprve použijte ''Odpojit''"
+msgid "Type"
+msgstr "Změnit typ"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose another partition"
msgstr "Vybrat jiný oddíl"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose a partition"
msgstr "Vyberte oddíl"
-#: diskdrake/interactive.pm:224
-#, c-format
-msgid "Exit"
-msgstr "Konec"
-
-#: diskdrake/interactive.pm:257 help.pm:531
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Undo"
msgstr "Zpět"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to normal mode"
msgstr "Přepnout se do módu 'normální'"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to expert mode"
msgstr "Přepnout se do režimu 'expert'"
-#: diskdrake/interactive.pm:276
+#: diskdrake/interactive.pm:269 diskdrake/interactive.pm:279
+#: diskdrake/interactive.pm:1158
+#, c-format
+msgid "Confirmation"
+msgstr "Potvrzení"
+
+#: diskdrake/interactive.pm:269
#, c-format
msgid "Continue anyway?"
msgstr "Přesto chcete pokračovat?"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without saving"
msgstr "Konec bez uložení"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Chcete skončit bez zapsání do tabulky oddílů?"
-#: diskdrake/interactive.pm:286
+#: diskdrake/interactive.pm:279
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Chcete uložit úpravy souboru /etc/fstab?"
-#: diskdrake/interactive.pm:293 install_steps_interactive.pm:317
+#: diskdrake/interactive.pm:286 fs/partitioning_wizard.pm:247
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Aby se projevily změny v tabulce oddílů, musíte restartovat počítač"
-#: diskdrake/interactive.pm:298
+#: diskdrake/interactive.pm:291
#, c-format
msgid ""
"You should format partition %s.\n"
@@ -2353,38 +1438,38 @@ msgstr ""
"Jinak nebude do tabulky fstab zapsána položka pro přípojný bod %s.\n"
"Chcete přesto skončit?"
-#: diskdrake/interactive.pm:311 help.pm:531
+#: diskdrake/interactive.pm:304
#, c-format
msgid "Clear all"
msgstr "Vše smazat"
-#: diskdrake/interactive.pm:312 help.pm:531
+#: diskdrake/interactive.pm:305
#, c-format
msgid "Auto allocate"
msgstr "Automaticky rozmístit"
-#: diskdrake/interactive.pm:313 help.pm:531 help.pm:567 help.pm:607
-#: help.pm:856 install_steps_interactive.pm:98
+#: diskdrake/interactive.pm:306 diskdrake/interactive.pm:360
+#: interactive/curses.pm:457
#, c-format
msgid "More"
msgstr "Více"
-#: diskdrake/interactive.pm:318
+#: diskdrake/interactive.pm:311
#, c-format
msgid "Hard drive information"
msgstr "Informace o pevném disku"
-#: diskdrake/interactive.pm:350
+#: diskdrake/interactive.pm:343
#, c-format
msgid "All primary partitions are used"
msgstr "Všechny primární oddíly (partitions) jsou používány"
-#: diskdrake/interactive.pm:351
+#: diskdrake/interactive.pm:344
#, c-format
msgid "I can not add any more partitions"
msgstr "Nemůžu přidat žádný další oddíl"
-#: diskdrake/interactive.pm:352
+#: diskdrake/interactive.pm:345
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
@@ -2394,52 +1479,52 @@ msgstr ""
"místě\n"
"vytvořit rozšířený (extended) oddíl"
-#: diskdrake/interactive.pm:361
+#: diskdrake/interactive.pm:354
#, c-format
msgid "No supermount"
msgstr "Bez supermountu"
-#: diskdrake/interactive.pm:362
+#: diskdrake/interactive.pm:355
#, c-format
msgid "Supermount"
msgstr "Supermount"
-#: diskdrake/interactive.pm:363
+#: diskdrake/interactive.pm:356
#, c-format
msgid "Supermount except for CDROM drives"
msgstr "Supermount vyjma jednotek CDROM"
-#: diskdrake/interactive.pm:369 help.pm:531
+#: diskdrake/interactive.pm:362
#, c-format
msgid "Save partition table"
msgstr "Uložit tabulku oddílů"
-#: diskdrake/interactive.pm:370 help.pm:531
+#: diskdrake/interactive.pm:363
#, c-format
msgid "Restore partition table"
msgstr "Obnovit tabulku oddílů"
-#: diskdrake/interactive.pm:371 help.pm:531
+#: diskdrake/interactive.pm:364
#, c-format
msgid "Rescue partition table"
msgstr "Záchrana tabulky oddílů"
-#: diskdrake/interactive.pm:373 help.pm:531
+#: diskdrake/interactive.pm:366
#, c-format
msgid "Reload partition table"
msgstr "Znovu načíst tabulku oddílů"
-#: diskdrake/interactive.pm:375
+#: diskdrake/interactive.pm:368
#, c-format
msgid "Removable media automounting"
msgstr "Automatické připojování pro vyjímatelná média"
-#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:414
+#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:407
#, c-format
msgid "Select file"
msgstr "Zvolit soubor"
-#: diskdrake/interactive.pm:400
+#: diskdrake/interactive.pm:393
#, c-format
msgid ""
"The backup partition table has not the same size\n"
@@ -2448,87 +1533,97 @@ msgstr ""
"Záložní tabulka oddílů nemá stejnou velikost\n"
"Chcete přesto pokračovat?"
-#: diskdrake/interactive.pm:429
+#: diskdrake/interactive.pm:422
#, c-format
msgid "Trying to rescue partition table"
msgstr "Pokouším se obnovit tabulku oddílů"
-#: diskdrake/interactive.pm:435
+#: diskdrake/interactive.pm:428
#, c-format
msgid "Detailed information"
msgstr "Podrobné informace"
-#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:444 diskdrake/interactive.pm:764
#, c-format
msgid "Resize"
msgstr "Změnit velikost"
-#: diskdrake/interactive.pm:452
+#: diskdrake/interactive.pm:445
#, c-format
msgid "Format"
msgstr "Formátovat"
-#: diskdrake/interactive.pm:454
+#: diskdrake/interactive.pm:447 diskdrake/interactive.pm:850
#, c-format
msgid "Add to RAID"
msgstr "Přidat do RAIDu"
-#: diskdrake/interactive.pm:455
+#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:867
#, c-format
msgid "Add to LVM"
msgstr "Přidat do LVMu"
-#: diskdrake/interactive.pm:458
+#: diskdrake/interactive.pm:450
+#, c-format
+msgid "Delete"
+msgstr "Smazat"
+
+#: diskdrake/interactive.pm:451
#, c-format
msgid "Remove from RAID"
msgstr "Odebrat z RAIDu"
-#: diskdrake/interactive.pm:459
+#: diskdrake/interactive.pm:452
#, c-format
msgid "Remove from LVM"
msgstr "Odebrat z LVMu"
-#: diskdrake/interactive.pm:460
+#: diskdrake/interactive.pm:453
#, c-format
msgid "Modify RAID"
msgstr "Změnit RAID"
-#: diskdrake/interactive.pm:461
+#: diskdrake/interactive.pm:454
#, c-format
msgid "Use for loopback"
msgstr "Použít loopback"
-#: diskdrake/interactive.pm:516
+#: diskdrake/interactive.pm:465
+#, c-format
+msgid "Create"
+msgstr "Vytvořit"
+
+#: diskdrake/interactive.pm:509 diskdrake/interactive.pm:511
#, c-format
msgid "Create a new partition"
msgstr "Vytvořit nový oddíl"
-#: diskdrake/interactive.pm:519
+#: diskdrake/interactive.pm:513
#, c-format
msgid "Start sector: "
msgstr "Počáteční sektor: "
-#: diskdrake/interactive.pm:521 diskdrake/interactive.pm:938
+#: diskdrake/interactive.pm:516 diskdrake/interactive.pm:937
#, c-format
msgid "Size in MB: "
msgstr "Velikost v MB: "
-#: diskdrake/interactive.pm:522 diskdrake/interactive.pm:939
+#: diskdrake/interactive.pm:518 diskdrake/interactive.pm:938
#, c-format
msgid "Filesystem type: "
msgstr "Souborový systém: "
-#: diskdrake/interactive.pm:527
+#: diskdrake/interactive.pm:524
#, c-format
msgid "Preference: "
msgstr "Nastavení: "
-#: diskdrake/interactive.pm:530
+#: diskdrake/interactive.pm:527
#, c-format
msgid "Logical volume name "
msgstr "Název logického svazku "
-#: diskdrake/interactive.pm:560
+#: diskdrake/interactive.pm:547
#, c-format
msgid ""
"You can not create a new partition\n"
@@ -2539,48 +1634,53 @@ msgstr ""
"(protože jste již dosáhli maximálního počtu primárních oddílů).\n"
"Nejprve odstraňte některý primární oddíl a vytvořte oddíl rozšířený."
-#: diskdrake/interactive.pm:590
+#: diskdrake/interactive.pm:577
#, c-format
msgid "Remove the loopback file?"
msgstr "Odstranit soubor loopbacku?"
-#: diskdrake/interactive.pm:609
+#: diskdrake/interactive.pm:596
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Tím, že změníte typ oddílu %s, přijdete o všechna jeho data"
-#: diskdrake/interactive.pm:621
+#: diskdrake/interactive.pm:608
#, c-format
msgid "Change partition type"
msgstr "Změnit typ oddílu"
-#: diskdrake/interactive.pm:622 diskdrake/removable.pm:47
+#: diskdrake/interactive.pm:610 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Který souborový systém chcete použít?"
-#: diskdrake/interactive.pm:630
+#: diskdrake/interactive.pm:617
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "Přepínám z ext2 na ext3"
-#: diskdrake/interactive.pm:650
+#: diskdrake/interactive.pm:637 diskdrake/interactive.pm:640
#, c-format
msgid "Which volume label?"
-msgstr ""
+msgstr "Které návěští svazku?"
-#: diskdrake/interactive.pm:666
+#: diskdrake/interactive.pm:641
+#, c-format
+msgid "Label:"
+msgstr "Návěští:"
+
+#: diskdrake/interactive.pm:655
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Kam chcete připojit loopback soubor %s?"
-#: diskdrake/interactive.pm:667
+#: diskdrake/interactive.pm:656
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kam chcete připojit zařízení %s?"
-#: diskdrake/interactive.pm:672
+#: diskdrake/interactive.pm:661
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
@@ -2589,48 +1689,58 @@ msgstr ""
"Nemůžu smazat přípojný bod, protože tento oddíl je používán pro loopback.\n"
"Odstraňte nejprve loopback"
-#: diskdrake/interactive.pm:697
+#: diskdrake/interactive.pm:691
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Kam chcete připojit %s?"
-#: diskdrake/interactive.pm:721 diskdrake/interactive.pm:800
-#: install_interactive.pm:157 install_interactive.pm:189
+#: diskdrake/interactive.pm:715 diskdrake/interactive.pm:798
+#: fs/partitioning_wizard.pm:141 fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing"
msgstr "Měním velikost"
-#: diskdrake/interactive.pm:721
+#: diskdrake/interactive.pm:715
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Počítám hranice souborového systému fat"
-#: diskdrake/interactive.pm:757
+#: diskdrake/interactive.pm:751
#, c-format
msgid "This partition is not resizeable"
msgstr "Na tomto diskovém oddílu nelze měnit velikost"
-#: diskdrake/interactive.pm:762
+#: diskdrake/interactive.pm:756
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Všechna data z tohoto oddílu by měla být zálohována"
-#: diskdrake/interactive.pm:764
+#: diskdrake/interactive.pm:758
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Když změníte velikost oddílu %s, ztratíte tím všechna jeho data"
-#: diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:765
#, c-format
msgid "Choose the new size"
msgstr "Zvolte novou velikost"
-#: diskdrake/interactive.pm:770
+#: diskdrake/interactive.pm:766
#, c-format
msgid "New size in MB: "
msgstr "Nová velikost v MB: "
-#: diskdrake/interactive.pm:811 install_interactive.pm:197
+#: diskdrake/interactive.pm:767
+#, c-format
+msgid "Minimum size: %s MB"
+msgstr "Minimální velikost: %s MB"
+
+#: diskdrake/interactive.pm:768
+#, c-format
+msgid "Maximum size: %s MB"
+msgstr "Maximální velikost: %s MB"
+
+#: diskdrake/interactive.pm:809 fs/partitioning_wizard.pm:181
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
@@ -2639,27 +1749,27 @@ msgstr ""
"Pro zachování integrity po provedené změně velikosti oddílu(ů) bude při\n"
"dalším spuštění systému Windows provedena kontrola souborového systému."
-#: diskdrake/interactive.pm:852
+#: diskdrake/interactive.pm:850
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Zvolte existující RAID pro přidání"
-#: diskdrake/interactive.pm:854 diskdrake/interactive.pm:871
+#: diskdrake/interactive.pm:852 diskdrake/interactive.pm:869
#, c-format
msgid "new"
msgstr "nový"
-#: diskdrake/interactive.pm:869
+#: diskdrake/interactive.pm:867
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Zvolte existující LVM pro přidání"
-#: diskdrake/interactive.pm:875
+#: diskdrake/interactive.pm:874
#, c-format
msgid "LVM name?"
msgstr "Název pro LVM?"
-#: diskdrake/interactive.pm:903
+#: diskdrake/interactive.pm:902
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
@@ -2668,213 +1778,219 @@ msgstr ""
"Fyzický svazek %s se stále používá.\n"
"Chcete přesunout používané fyzické oblasti na tomto svazku do jiných svazků?"
-#: diskdrake/interactive.pm:905
+#: diskdrake/interactive.pm:904
#, c-format
msgid "Moving physical extents"
msgstr "Přesunuji fyzické oblasti"
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:922
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Tento oddíl nemůže být použit pro loopback"
-#: diskdrake/interactive.pm:936
+#: diskdrake/interactive.pm:935
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: diskdrake/interactive.pm:937
+#: diskdrake/interactive.pm:936
#, c-format
msgid "Loopback file name: "
msgstr "Název souboru loopbacku:"
-#: diskdrake/interactive.pm:942
+#: diskdrake/interactive.pm:941
#, c-format
msgid "Give a file name"
msgstr "Zadejte název souboru"
-#: diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:944
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Soubor už je používán jiným loopbackem, zvolte si jiný"
-#: diskdrake/interactive.pm:946
+#: diskdrake/interactive.pm:945
#, c-format
msgid "File already exists. Use it?"
msgstr "Soubor už existuje. Mám ho použít?"
-#: diskdrake/interactive.pm:969
+#: diskdrake/interactive.pm:974 diskdrake/interactive.pm:977
#, c-format
msgid "Mount options"
msgstr "Volby pro připojení"
-#: diskdrake/interactive.pm:976
+#: diskdrake/interactive.pm:984
#, c-format
msgid "Various"
msgstr "Další"
-#: diskdrake/interactive.pm:1044
+#: diskdrake/interactive.pm:1049
#, c-format
msgid "device"
msgstr "zařízení"
-#: diskdrake/interactive.pm:1045
+#: diskdrake/interactive.pm:1050
#, c-format
msgid "level"
msgstr "úroveň"
-#: diskdrake/interactive.pm:1046
+#: diskdrake/interactive.pm:1051
#, c-format
msgid "chunk size in KiB"
msgstr "velikost bloku v kB"
-#: diskdrake/interactive.pm:1063
+#: diskdrake/interactive.pm:1068
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Buďte opatrní: tato akce je nebezpečná."
-#: diskdrake/interactive.pm:1078
+#: diskdrake/interactive.pm:1083
#, c-format
msgid "What type of partitioning?"
msgstr "Jaký typ diskového oddílu?"
-#: diskdrake/interactive.pm:1116
+#: diskdrake/interactive.pm:1121
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Aby se změny uplatnily budete muset restartovat počítač"
-#: diskdrake/interactive.pm:1125
+#: diskdrake/interactive.pm:1130
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Bude zapsána nová tabulka oddílů na disku %s!"
-#: diskdrake/interactive.pm:1148
+#: diskdrake/interactive.pm:1153
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Když naformátujete oddíl %s, ztratíte tím všechna jeho data"
-#: diskdrake/interactive.pm:1164
+#: diskdrake/interactive.pm:1158 fs/partitioning.pm:49
+#, c-format
+msgid "Check bad blocks?"
+msgstr "Otestovat na vadné stopy?"
+
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Move files to the new partition"
msgstr "Přesunout soubory na nový diskový oddíl"
-#: diskdrake/interactive.pm:1164 standalone/draksambashare:81
-#: standalone/draksambashare:144
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Hide files"
msgstr "Schovat soubory"
-#: diskdrake/interactive.pm:1165
+#: diskdrake/interactive.pm:1173
#, c-format
msgid ""
"Directory %s already contains data\n"
-"(%s)"
+"(%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 ""
-"Adresář %s již obsahuje nějaká data\n"
-"(%s)"
+"Adresář %s již obsahuje data\n"
+"(%s)\n"
+"\n"
+"Můžete buď přesunout soubory na oddíl, který zde bude připojen, nebo je "
+"nechat tam, kde jsou (a tak je překryjete obsahem připojeného oddílu)"
-#: diskdrake/interactive.pm:1176
+#: diskdrake/interactive.pm:1188
#, c-format
msgid "Moving files to the new partition"
msgstr "Přesunuji soubory na nový diskový oddíl"
-#: diskdrake/interactive.pm:1180
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "Copying %s"
msgstr "Kopíruji %s"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1196
#, c-format
msgid "Removing %s"
msgstr "Odstraňuji %s"
-#: diskdrake/interactive.pm:1198
+#: diskdrake/interactive.pm:1210
#, c-format
msgid "partition %s is now known as %s"
msgstr "oddíl %s je nyní rozpoznán jako %s"
-#: diskdrake/interactive.pm:1199
+#: diskdrake/interactive.pm:1211
#, c-format
msgid "Partitions have been renumbered: "
msgstr "Oddíly byly přečíslovány: "
-#: diskdrake/interactive.pm:1219 diskdrake/interactive.pm:1281
+#: diskdrake/interactive.pm:1231 diskdrake/interactive.pm:1293
#, c-format
msgid "Device: "
msgstr "Zařízení: "
-#: diskdrake/interactive.pm:1220
-#, c-format
-msgid "Devfs name: "
-msgstr "Název Devfs: "
-
-#: diskdrake/interactive.pm:1221
+#: diskdrake/interactive.pm:1232
#, c-format
msgid "Volume label: "
msgstr "Název svazku: "
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1233
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Písmeno v DOSu: %s (jenom odhad)\n"
-#: diskdrake/interactive.pm:1226 diskdrake/interactive.pm:1235
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1237 diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1311
#, c-format
msgid "Type: "
msgstr "Typ: "
-#: diskdrake/interactive.pm:1230 install_steps_gtk.pm:300
+#: diskdrake/interactive.pm:1241
#, c-format
msgid "Name: "
msgstr "Jméno: "
-#: diskdrake/interactive.pm:1237
+#: diskdrake/interactive.pm:1248
#, c-format
msgid "Start: sector %s\n"
msgstr "Začátek: sektor %s\n"
-#: diskdrake/interactive.pm:1238
+#: diskdrake/interactive.pm:1249
#, c-format
msgid "Size: %s"
msgstr "Velikost: %s"
-#: diskdrake/interactive.pm:1240
+#: diskdrake/interactive.pm:1251
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorů"
-#: diskdrake/interactive.pm:1242
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Od cylindru %d do cylindru %d\n"
-#: diskdrake/interactive.pm:1243
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Number of logical extents: %d\n"
msgstr "Počet logických oblastí: %d\n"
-#: diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Formatted\n"
msgstr "Naformátovaný\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "Not formatted\n"
msgstr "Nenaformátovaný\n"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Mounted\n"
msgstr "Připojený\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1252
+#: diskdrake/interactive.pm:1263
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2883,7 +1999,7 @@ msgstr ""
"Loopback soubor(y): \n"
" %s\n"
-#: diskdrake/interactive.pm:1253
+#: diskdrake/interactive.pm:1264
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2892,27 +2008,27 @@ msgstr ""
"Standardní startovací oddíl\n"
" (pro MS-DOS, ne pro LILO)\n"
-#: diskdrake/interactive.pm:1255
+#: diskdrake/interactive.pm:1266
#, c-format
msgid "Level %s\n"
msgstr "Úroveň %s\n"
-#: diskdrake/interactive.pm:1256
+#: diskdrake/interactive.pm:1267
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Velikost bloku (chunk) %d kB\n"
-#: diskdrake/interactive.pm:1257
+#: diskdrake/interactive.pm:1268
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID disky %s\n"
-#: diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1270
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback soubor: %s"
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1273
#, c-format
msgid ""
"\n"
@@ -2925,7 +2041,7 @@ msgstr ""
"s ovladači, je lepší\n"
"no nechat neporušený.\n"
-#: diskdrake/interactive.pm:1265
+#: diskdrake/interactive.pm:1276
#, c-format
msgid ""
"\n"
@@ -2938,75 +2054,78 @@ msgstr ""
"oddíl je pro spuštění\n"
"dalšího systému.\n"
-#: diskdrake/interactive.pm:1282
+#: diskdrake/interactive.pm:1285
+#, c-format
+msgid "Empty space on %s (%s)"
+msgstr "Prázdné místo na %s (%s)"
+
+#: diskdrake/interactive.pm:1294
#, c-format
msgid "Read-only"
msgstr "Pouze pro čtení"
-#: diskdrake/interactive.pm:1283
+#: diskdrake/interactive.pm:1295
#, c-format
msgid "Size: %s\n"
msgstr "Velikost: %s\n"
-#: diskdrake/interactive.pm:1284
+#: diskdrake/interactive.pm:1296
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s cylindrů, %s hlav, %s sektorů\n"
-#: diskdrake/interactive.pm:1285 network/thirdparty.pm:331
+#: diskdrake/interactive.pm:1297
#, c-format
msgid "Info: "
msgstr "Informace: "
-#: diskdrake/interactive.pm:1286
+#: diskdrake/interactive.pm:1298
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM disky %s\n"
-#: diskdrake/interactive.pm:1287
+#: diskdrake/interactive.pm:1299
#, c-format
msgid "Partition table type: %s\n"
msgstr "Typ tabulky oddílů: %s\n"
-#: diskdrake/interactive.pm:1288
+#: diskdrake/interactive.pm:1300
#, c-format
msgid "on channel %d id %d\n"
msgstr "na kanále %d id %d\n"
-#: diskdrake/interactive.pm:1331
+#: diskdrake/interactive.pm:1343
#, c-format
msgid "Filesystem encryption key"
msgstr "Klíč pro šifrovaný souborový systém"
-#: diskdrake/interactive.pm:1332
+#: diskdrake/interactive.pm:1344
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Vyberte si šifrovací klíč pro souborový systém"
-#: diskdrake/interactive.pm:1335
+#: diskdrake/interactive.pm:1347
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Tento šifrovací klíč je příliš jednoduchý (musí být alespoň %d znaků dlouhý)"
-#: diskdrake/interactive.pm:1336
+#: diskdrake/interactive.pm:1348
#, c-format
msgid "The encryption keys do not match"
msgstr "Šifrovací klíče se neshodují"
-#: diskdrake/interactive.pm:1339 network/netconnect.pm:1073
-#: standalone/drakconnect:419 standalone/drakroam:120
+#: diskdrake/interactive.pm:1351
#, c-format
msgid "Encryption key"
msgstr "Šifrovací klíč"
-#: diskdrake/interactive.pm:1340
+#: diskdrake/interactive.pm:1352
#, c-format
msgid "Encryption key (again)"
msgstr "Šifrovací klíč (znovu)"
-#: diskdrake/interactive.pm:1342 standalone/drakvpn:1017
-#: standalone/drakvpn:1102
+#: diskdrake/interactive.pm:1354
#, c-format
msgid "Encryption algorithm"
msgstr "Šifrovací algoritmus"
@@ -3016,27 +2135,35 @@ msgstr "Šifrovací algoritmus"
msgid "Change type"
msgstr "Změnit typ"
-#: diskdrake/smbnfs_gtk.pm:163
+#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:539
+#: interactive/curses.pm:214 interactive/http.pm:104 interactive/http.pm:160
+#: interactive/stdio.pm:39 interactive/stdio.pm:142 ugtk2.pm:404 ugtk2.pm:506
+#: ugtk2.pm:515 ugtk2.pm:788
+#, c-format
+msgid "Cancel"
+msgstr "Zrušit"
+
+#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr "Nelze se přihlásit pod uživatelským jménem %s (chybné heslo?)"
-#: diskdrake/smbnfs_gtk.pm:167 diskdrake/smbnfs_gtk.pm:176
+#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Vyžadováno ověření Domény"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Které uživatelské jméno"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Další"
-#: diskdrake/smbnfs_gtk.pm:177
+#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
@@ -3044,85 +2171,81 @@ msgstr ""
"Prosím zadejte své uživatelské jméno, heslo a název domény, pod kterými "
"chcete přistupovat k tomuto počítači."
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3640
+#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Uživatelské jméno"
-#: diskdrake/smbnfs_gtk.pm:205
+#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Vyhledat servery"
-#: diskdrake/smbnfs_gtk.pm:210
+#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr "Vyhledat nové servery"
-#: do_pkgs.pm:16 do_pkgs.pm:49
+#: do_pkgs.pm:16 do_pkgs.pm:53
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Balíček %s musí být nainstalován. Chcete ho nainstalovat?"
-#: do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:52 printer/printerdrake.pm:3948
+#: do_pkgs.pm:19 do_pkgs.pm:40 do_pkgs.pm:56
#, c-format
msgid "Could not install the %s package!"
msgstr "Nelze nainstalovat balíček %s!"
-#: do_pkgs.pm:24 do_pkgs.pm:57
+#: do_pkgs.pm:24 do_pkgs.pm:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Chybí potřebný balíček %s"
-#: do_pkgs.pm:35 harddrake/sound.pm:278 install_steps_interactive.pm:1288
-#: keyboard.pm:381 network/ndiswrapper.pm:95 network/netconnect.pm:471
-#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2495
-#: printer/printerdrake.pm:2632 printer/printerdrake.pm:2953
-#: printer/printerdrake.pm:2960 printer/printerdrake.pm:3947
-#: printer/printerdrake.pm:4211 printer/printerdrake.pm:4330
-#: printer/printerdrake.pm:5487 standalone/drakTermServ:354
-#: standalone/drakTermServ:1267 standalone/drakTermServ:1328
-#: standalone/drakTermServ:2006 standalone/drakbackup:510
-#: standalone/drakbackup:609 standalone/drakboot:133 standalone/drakclock:224
-#: standalone/drakconnect:973 standalone/drakfont:679 standalone/drakperm:380
-#: standalone/drakperm:390 standalone/drakups:27 standalone/harddrake2:510
-#: standalone/harddrake2:526 standalone/localedrake:43
-#: standalone/scannerdrake:51 standalone/scannerdrake:957
-#, c-format
-msgid "Warning"
-msgstr "Varování"
-
-#: do_pkgs.pm:35 standalone/harddrake2:526
+#: do_pkgs.pm:35
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Je potřeba nainstalovat tyto balíčky:\n"
-#: do_pkgs.pm:205
+#: do_pkgs.pm:209
#, c-format
msgid "Installing packages..."
msgstr "Instaluji balíčky..."
-#: do_pkgs.pm:252
+#: do_pkgs.pm:255
#, c-format
msgid "Removing packages..."
msgstr "Odstraňuji balíčky..."
-#: fs/format.pm:58 fs/format.pm:65
+#: fs/any.pm:17
+#, c-format
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Stala se chyba - nebylo nalezeno žádné zařízení, na kterém by se daly "
+"vytvořit nové souborové systémy. Zkontrolujte prosím hardware"
+
+#: fs/any.pm:62 fs/partitioning_wizard.pm:55
+#, c-format
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Musíte mít FAT oddíl připojený na /boot/efi"
+
+#: fs/format.pm:59 fs/format.pm:66
#, c-format
msgid "Formatting partition %s"
msgstr "Formátuji oddíl %s"
-#: fs/format.pm:62
+#: fs/format.pm:63
#, c-format
msgid "Creating and formatting file %s"
msgstr "Vytvářím a formátuji soubor %s"
-#: fs/format.pm:115
+#: fs/format.pm:116
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "nevím jak naformátovat %s na typ %s"
-#: fs/format.pm:120 fs/format.pm:122
+#: fs/format.pm:121 fs/format.pm:123
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formátování %s skončilo chybou"
@@ -3132,27 +2255,27 @@ msgstr "%s formátování %s skončilo chybou"
msgid "Circular mounts %s\n"
msgstr "Propletené přípojné body %s\n"
-#: fs/mount.pm:74
+#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "Připojuji oddíl %s"
-#: fs/mount.pm:75
+#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "připojení oddílu %s v adresáři %s selhalo"
-#: fs/mount.pm:80 fs/mount.pm:97
+#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "Kontroluji %s"
-#: fs/mount.pm:113 partition_table.pm:385
+#: fs/mount.pm:118 partition_table.pm:384
#, c-format
msgid "error unmounting %s: %s"
msgstr "chyba odpojování %s: %s"
-#: fs/mount.pm:142
+#: fs/mount.pm:133
#, c-format
msgid "Enabling swap partition %s"
msgstr "Aktivuji odkládací oddíl %s"
@@ -3227,35 +2350,313 @@ msgstr "Všechny vstupně/výstupní operace budou prováděny synchronně."
#: fs/mount_options.pm:139
#, c-format
-msgid "Allow an ordinary user to mount the file system."
-msgstr ""
+msgid "Allow every user to mount and umount the file system."
+msgstr "Povolit připojení a odpojení souborového systému každému uživateli."
#: fs/mount_options.pm:141
#, c-format
-msgid "Enable user disk quota accounting, and optionally enforce limits"
-msgstr "Počítat uživatelské kvóty na disku a volitelně vynucovat omezení"
+msgid "Allow an ordinary user to mount the file system."
+msgstr "Povolit obyčejnému uživateli připojit souborový systém."
#: fs/mount_options.pm:143
#, c-format
-msgid "Support user. extended attributes"
-msgstr ""
+msgid "Enable user disk quota accounting, and optionally enforce limits"
+msgstr "Počítat uživatelské kvóty na disku a volitelně vynucovat omezení"
#: fs/mount_options.pm:145
#, c-format
+msgid "Support \"user.\" extended attributes"
+msgstr "Podporovat rozšířené atributy \"user.\""
+
+#: fs/mount_options.pm:147
+#, c-format
msgid "Give write access to ordinary users"
msgstr "Umožnit zápis běžným uživatelům"
-#: fs/mount_options.pm:147
+#: fs/mount_options.pm:149
#, c-format
msgid "Give read-only access to ordinary users"
msgstr "Umožnit běžným uživatelům pouze čtení"
-#: fs/type.pm:363
+#: fs/mount_point.pm:80
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Zdvojený přípojný bod %s"
+
+#: fs/mount_point.pm:95
+#, c-format
+msgid "No partition available"
+msgstr "Nejsou dostupné žádné diskové oddíly"
+
+#: fs/mount_point.pm:98
+#, c-format
+msgid "Scanning partitions to find mount points"
+msgstr "Hledám oddíly, které lze připojit"
+
+#: fs/mount_point.pm:105
+#, c-format
+msgid "Choose the mount points"
+msgstr "Zvolte si přípojné body"
+
+#: fs/partitioning.pm:46
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "Zvolte diskové oddíly, které chcete naformátovat"
+
+#: fs/partitioning.pm:76
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+"Selhala kontrola souborového systému %s. Chcete opravit chyby? (pozor, může "
+"dojít ke ztrátě dat)"
+
+#: fs/partitioning.pm:79
+#, c-format
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Není dostatek odkládacího prostoru k instalaci, prosím přidejte nějaký"
+
+#: fs/partitioning_wizard.pm:47
+#, c-format
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"Musíte mít kořenový oddíl.\n"
+"K jeho vytvoření musíte zvolit jeden existující oddíl\n"
+"(nebo vytvořit nový), zvolit 'Přípojný bod'\n"
+"a nastavit ho na '/'"
+
+#: fs/partitioning_wizard.pm:52
+#, c-format
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+"Nemáte odkládací oddíl.\n"
+"\n"
+"Chcete přesto pokračovat?"
+
+#: fs/partitioning_wizard.pm:80
+#, c-format
+msgid "Use free space"
+msgstr "Použít volné místo"
+
+#: fs/partitioning_wizard.pm:82
+#, c-format
+msgid "Not enough free space to allocate new partitions"
+msgstr "Není dostatek místa pro vytvoření nových diskových oddílů"
+
+#: fs/partitioning_wizard.pm:90
+#, c-format
+msgid "Use existing partitions"
+msgstr "Použít existující oddíly"
+
+#: fs/partitioning_wizard.pm:92
+#, c-format
+msgid "There is no existing partition to use"
+msgstr "Není zde žádný existující oddíl k použití"
+
+#: fs/partitioning_wizard.pm:99
+#, c-format
+msgid "Use the Microsoft Windows® partition for loopback"
+msgstr "Použít oddíl Microsoft Windows® jako loopback"
+
+#: fs/partitioning_wizard.pm:102
+#, c-format
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Který diskový oddíl chcete použít pro Linux4Win?"
+
+#: fs/partitioning_wizard.pm:104
+#, c-format
+msgid "Choose the sizes"
+msgstr "Zvolte velikosti"
+
+#: fs/partitioning_wizard.pm:105
+#, c-format
+msgid "Root partition size in MB: "
+msgstr "Velikost kořenového oddílu v MB:"
+
+#: fs/partitioning_wizard.pm:106
+#, c-format
+msgid "Swap partition size in MB: "
+msgstr "Velikost odkládacího oddílu v MB: "
+
+#: fs/partitioning_wizard.pm:115
+#, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+"Nejsou zde žádné FAT oddíly, které by bylo možné použít pro loopback (nebo "
+"není dostatek místa)"
+
+#: fs/partitioning_wizard.pm:122
+#, c-format
+msgid "Use the free space on the Microsoft Windows® partition"
+msgstr "Použít volné místo na oddílu Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:124
+#, c-format
+msgid "Which partition do you want to resize?"
+msgstr "Na kterém oddílu chcete změnit velikost?"
+
+#: fs/partitioning_wizard.pm:138
+#, c-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+"Změnu velikost FAT není možné provést, \n"
+"vyskytla se následující chyba: %s"
+
+#: fs/partitioning_wizard.pm:141
+#, c-format
+msgid "Computing the size of the Microsoft Windows® partition"
+msgstr "Počítám volné místo na oddílu Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:148
+#, c-format
+msgid ""
+"Your Microsoft Windows® partition is too fragmented. Please reboot your "
+"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
+"the Mandriva Linux installation."
+msgstr ""
+"Váš diskový oddíl s Microsoft Windows® je příliš fragmentovaný. Restartujte "
+"počítač do systému Microsoft Windows®, použijte program 'defrag' a potom "
+"spusťte opět instalaci Mandriva Linuxu."
+
+#: fs/partitioning_wizard.pm:151
+#, 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 ""
+"VAROVÁNÍ!\n"
+"\n"
+"\n"
+"DrakX nyní musí zmenšit oddíl s Microsoft Windows®.\n"
+"\n"
+"\n"
+"Buďte opatrní: tato operace je nebezpečná. Pokud jste tak již neučinili, "
+"měli byste nejprve ukončit instalaci, spustit \"chkdsk c:\" z příkazové "
+"řádky (spuštění programu \"scandisk\" nestačí, použijte příkaz \"chkdsk\"!), "
+"popřípadě i defrag a potom instalaci spustit znovu. Také byste si měli data "
+"zálohovat.\n"
+"\n"
+"\n"
+"Až si budete jistí, že chcete pokračovat, stiskněte %s."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: fs/partitioning_wizard.pm:160 interactive.pm:538 interactive/curses.pm:217
+#: ugtk2.pm:508
+#, c-format
+msgid "Next"
+msgstr "Další"
+
+#: fs/partitioning_wizard.pm:163
+#, c-format
+msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
+msgstr ""
+"Jakou velikost oddílu chcete nechat pro Microsoft Windows® na diskovém "
+"oddílu %s?"
+
+#: fs/partitioning_wizard.pm:164
+#, c-format
+msgid "Size"
+msgstr "Velikost"
+
+#: fs/partitioning_wizard.pm:173
+#, c-format
+msgid "Resizing Microsoft Windows® partition"
+msgstr "Měním velikost oddílu s Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:178
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "Změna FAT oddílu neuspěla: %s"
+
+#: fs/partitioning_wizard.pm:193
+#, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+"Nejsou zde žádné FAT oddíly, které by bylo možné změnit (nebo není dostatek "
+"místa)"
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Remove Microsoft Windows®"
+msgstr "Odstranit Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Erase and use entire disk"
+msgstr "Smazat a použít celý disk"
+
+#: fs/partitioning_wizard.pm:200
+#, c-format
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Máte více než jeden pevný disk, na který chcete instalovat Linux?"
+
+#: fs/partitioning_wizard.pm:206
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "VŠECHNY diskové oddíly a data na disku %s budou zrušeny"
+
+#: fs/partitioning_wizard.pm:217
+#, c-format
+msgid "Custom disk partitioning"
+msgstr "Vlastní rozdělení disku"
+
+#: fs/partitioning_wizard.pm:223
+#, c-format
+msgid "Use fdisk"
+msgstr "Použít fdisk"
+
+#: fs/partitioning_wizard.pm:226
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+"Nyní můžete rozdělit váš pevný disk %s.\n"
+"Až skončíte, nezapomeňte uložit změny pomocí 'w'"
+
+#: fs/partitioning_wizard.pm:266
+#, c-format
+msgid "I can not find any room for installing"
+msgstr "Nemůžu najít žádné volné místo pro instalaci"
+
+#: fs/partitioning_wizard.pm:270
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Průvodce oddíly DrakX našel následující řešení rozdělení disku:"
+
+#: fs/partitioning_wizard.pm:278
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Vytváření diskových oddílů selhalo: %s"
+
+#: fs/type.pm:366
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "Nemůžete použít JFS pro oddíl menší než 16MB"
-#: fs/type.pm:364
+#: fs/type.pm:367
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "Nemůžete použít ReiserFS pro oddíl menší než 32MB"
@@ -3270,7 +2671,12 @@ msgstr "s /usr"
msgid "server"
msgstr "server"
-#: fsedit.pm:219
+#: fsedit.pm:116
+#, c-format
+msgid "BIOS software RAID detected on disks %s. Activate it?"
+msgstr "Na discích %s byl nalezen softwarový RAID řízený BIOSem. Aktivovat?"
+
+#: fsedit.pm:230
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
@@ -3289,22 +2695,22 @@ msgstr ""
"\n"
"Souhlasíte s tím, že přijdete o všechny oddíly?\n"
-#: fsedit.pm:392
+#: fsedit.pm:403
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Přípojné body (mount points) musí začínat '/'"
-#: fsedit.pm:393
+#: fsedit.pm:404
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Název přípojného bodu může obsahovat pouze písmena a číslice"
-#: fsedit.pm:394
+#: fsedit.pm:405
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Oddíl s přípojným bodem %s už existuje\n"
-#: fsedit.pm:398
+#: fsedit.pm:409
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -3315,8 +2721,8 @@ msgstr ""
"S tím se není schopný vypořádat žádný zaváděcí program bez použití oddílu\n"
"/boot. Ujistěte se prosím, že jste tento oddíl přidali"
-#: fsedit.pm:404
-#, fuzzy, c-format
+#: fsedit.pm:415
+#, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
@@ -3324,8 +2730,8 @@ msgstr ""
"Pro přípojný bod %s nemůžete použít Logický svazek LVM, jelikož spadá do "
"více fyzických svazků"
-#: fsedit.pm:406
-#, fuzzy, c-format
+#: fsedit.pm:417
+#, 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 "
@@ -3337,12 +2743,12 @@ msgstr ""
"svazků.\n"
"Měli byste vytvořit nejprve oddíl /boot"
-#: fsedit.pm:410 fsedit.pm:412
+#: fsedit.pm:421 fsedit.pm:423
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Tento adresář musí kromě kořenového souborového systému zůstat"
-#: fsedit.pm:414 fsedit.pm:416
+#: fsedit.pm:425 fsedit.pm:427
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -3351,22 +2757,22 @@ msgstr ""
"Pro tento přípojný bod potřebujete opravdový souborový systém (ext2/ext3, "
"reiserFS, XFS nebo JFS)\n"
-#: fsedit.pm:418
+#: fsedit.pm:429
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr "Nelze použít kryptovaný souborový systém na připojený bod %s"
-#: fsedit.pm:482
+#: fsedit.pm:493
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Pro automatické rozdělení disku není dostatek místa"
-#: fsedit.pm:484
+#: fsedit.pm:495
#, c-format
msgid "Nothing to do"
msgstr "Nic nedělat"
-#: harddrake/data.pm:62 install_any.pm:1710
+#: harddrake/data.pm:62
#, c-format
msgid "Floppy"
msgstr "Disketa"
@@ -3376,12 +2782,12 @@ msgstr "Disketa"
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:88 install_any.pm:1711
+#: harddrake/data.pm:88
#, c-format
msgid "Hard Disk"
-msgstr "Hard Disk"
+msgstr "Pevný disk"
-#: harddrake/data.pm:97 install_any.pm:1712
+#: harddrake/data.pm:97
#, c-format
msgid "CDROM"
msgstr "CDROM"
@@ -3396,103 +2802,102 @@ msgstr "CD/DVD vypalovačky"
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:127 standalone/drakbackup:2066
+#: harddrake/data.pm:127
#, c-format
msgid "Tape"
msgstr "Páska"
-#: harddrake/data.pm:136
+#: harddrake/data.pm:138
+#, c-format
+msgid "AGP controllers"
+msgstr "AGP řadiče"
+
+#: harddrake/data.pm:147
#, c-format
msgid "Videocard"
msgstr "Grafická karta"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:157
#, c-format
msgid "DVB card"
msgstr "DVB karta"
-#: harddrake/data.pm:154
+#: harddrake/data.pm:165
#, c-format
msgid "Tvcard"
msgstr "TV karta"
-#: harddrake/data.pm:163
+#: harddrake/data.pm:174
#, c-format
msgid "Other MultiMedia devices"
msgstr "Další multimediální zařízení"
-#: harddrake/data.pm:172
+#: harddrake/data.pm:183
#, c-format
msgid "Soundcard"
msgstr "Zvuková karta"
-#: harddrake/data.pm:185
+#: harddrake/data.pm:196
#, c-format
msgid "Webcam"
msgstr "Webová kamera"
-#: harddrake/data.pm:199
+#: harddrake/data.pm:210
#, c-format
msgid "Processors"
msgstr "Procesory"
-#: harddrake/data.pm:209
+#: harddrake/data.pm:220
#, c-format
msgid "ISDN adapters"
msgstr "Adaptéry ISDN"
-#: harddrake/data.pm:220
+#: harddrake/data.pm:231
#, c-format
msgid "USB sound devices"
msgstr "Zvuková zařízení USB"
-#: harddrake/data.pm:229
+#: harddrake/data.pm:240
#, c-format
msgid "Radio cards"
msgstr "Rádio karty"
-#: harddrake/data.pm:238
+#: harddrake/data.pm:249
#, c-format
msgid "ATM network cards"
msgstr "Síťové karty ATM"
-#: harddrake/data.pm:247
+#: harddrake/data.pm:258
#, c-format
msgid "WAN network cards"
msgstr "Síťové karty WAN"
-#: harddrake/data.pm:256
+#: harddrake/data.pm:267
#, c-format
msgid "Bluetooth devices"
msgstr "Zařízení Bluetooth"
-#: harddrake/data.pm:265
+#: harddrake/data.pm:276
#, c-format
msgid "Ethernetcard"
msgstr "Ethernetová karta"
-#: harddrake/data.pm:282 network/netconnect.pm:492
+#: harddrake/data.pm:293
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:292
+#: harddrake/data.pm:303
#, c-format
msgid "ADSL adapters"
msgstr "Adaptéry ADSL"
-#: harddrake/data.pm:306
+#: harddrake/data.pm:315
#, c-format
msgid "Memory"
msgstr "Paměť"
-#: harddrake/data.pm:315
-#, c-format
-msgid "AGP controllers"
-msgstr "AGP řadiče"
-
-#: harddrake/data.pm:324 help.pm:187 help.pm:856
-#: install_steps_interactive.pm:964
+#: harddrake/data.pm:324
#, c-format
msgid "Printer"
msgstr "Tiskárna"
@@ -3518,85 +2923,92 @@ msgstr "SATA řadiče"
msgid "RAID controllers"
msgstr "RAID řadiče"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA řadiče"
-#: harddrake/data.pm:385
+#: harddrake/data.pm:386
+#, c-format
+msgid "USB Mass Storage Devices"
+msgstr "Úložná zařízení USB"
+
+#: harddrake/data.pm:395
+#, c-format
+msgid "Card readers"
+msgstr "Čtečky karet"
+
+#: harddrake/data.pm:404
#, c-format
msgid "Firewire controllers"
msgstr "Firewire řadiče"
-#: harddrake/data.pm:394
+#: harddrake/data.pm:413
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA řadiče"
-#: harddrake/data.pm:403
+#: harddrake/data.pm:422
#, c-format
msgid "SCSI controllers"
msgstr "SCSI řadiče"
-#: harddrake/data.pm:412
+#: harddrake/data.pm:431
#, c-format
msgid "USB controllers"
msgstr "USB řadiče"
-#: harddrake/data.pm:421
+#: harddrake/data.pm:440
#, c-format
msgid "USB ports"
msgstr "USB porty"
-#: harddrake/data.pm:430
+#: harddrake/data.pm:449
#, c-format
msgid "SMBus controllers"
msgstr "SMBus řadiče"
-#: harddrake/data.pm:439
+#: harddrake/data.pm:458
#, c-format
msgid "Bridges and system controllers"
msgstr "Systémové řadiče a můstky"
-#: harddrake/data.pm:450 help.pm:856 install_steps_interactive.pm:94
-#: install_steps_interactive.pm:924 standalone/finish-install:41
-#: standalone/keyboarddrake:29
+#: harddrake/data.pm:469
#, c-format
msgid "Keyboard"
msgstr "Klávesnice"
-#: harddrake/data.pm:463
+#: harddrake/data.pm:482
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tablet a dotyková obrazovka"
-#: harddrake/data.pm:472 help.pm:856 install_steps_interactive.pm:957
+#: harddrake/data.pm:491
#, c-format
msgid "Mouse"
msgstr "Myš"
-#: harddrake/data.pm:486
+#: harddrake/data.pm:505
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:495
+#: harddrake/data.pm:514
#, c-format
msgid "Scanner"
msgstr "Skener"
-#: harddrake/data.pm:505 standalone/harddrake2:475
+#: harddrake/data.pm:524
#, c-format
msgid "Unknown/Others"
msgstr "Neznámý/Jiný"
-#: harddrake/data.pm:533
+#: harddrake/data.pm:552
#, c-format
msgid "cpu # "
msgstr "cpu #"
-#: harddrake/sound.pm:195 standalone/drakconnect:162
-#: standalone/drakconnect:637
+#: harddrake/sound.pm:195
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Čekejte prosím... Aktivuji konfiguraci"
@@ -3679,17 +3091,17 @@ msgstr ""
"- nové ALSA API, které poskytuje daleko více možností, ale vyžaduje použít "
"knihovnu ALSA.\n"
-#: harddrake/sound.pm:262 harddrake/sound.pm:350 standalone/drakups:144
+#: harddrake/sound.pm:262 harddrake/sound.pm:351
#, c-format
msgid "Driver:"
msgstr "Ovladač:"
-#: harddrake/sound.pm:270
+#: harddrake/sound.pm:271
#, c-format
msgid "Trouble shooting"
msgstr "Řešení problémů"
-#: harddrake/sound.pm:278
+#: harddrake/sound.pm:279
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
@@ -3704,12 +3116,12 @@ msgstr ""
"\n"
"Při dalším spuštění bude použit pouze nový ovladač \"%s\" "
-#: harddrake/sound.pm:286
+#: harddrake/sound.pm:287
#, c-format
msgid "No open source driver"
msgstr "Není dostupný žádný open source ovladač"
-#: harddrake/sound.pm:287
+#: harddrake/sound.pm:288
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
@@ -3718,33 +3130,33 @@ msgstr ""
"Pro vaši zvukovou kartu (%s) není žádný vhodný volně použitelný ovladač, ale "
"existuje alternativní proprietární ovladač na \"%s\"."
-#: harddrake/sound.pm:290
+#: harddrake/sound.pm:291
#, c-format
msgid "No known driver"
msgstr "Nebyl rozpoznán žádný ovladač"
-#: harddrake/sound.pm:291
+#: harddrake/sound.pm:292
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Pro vaši zvukovou kartu (%s) není žádný známý ovladač"
-#: harddrake/sound.pm:295 network/netconnect.pm:98 network/netconnect.pm:837
+#: harddrake/sound.pm:296
#, c-format
msgid "Unknown driver"
msgstr "Neznámý ovladač"
-#: harddrake/sound.pm:296
+#: harddrake/sound.pm:297
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "Chyba: Ovladač \"%s\" pro vaši zvukovou kartu není na seznamu"
-#: harddrake/sound.pm:310
+#: harddrake/sound.pm:311
#, c-format
msgid "Sound trouble shooting"
msgstr "Řešení problémů se zvukem"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:313
+#: harddrake/sound.pm:314
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
@@ -3753,7 +3165,7 @@ msgid ""
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\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"
@@ -3773,7 +3185,7 @@ msgstr ""
"- \"lspcidrake -v | fgrep AUDIO\" vám řekne, jaký ovladač je výchozí pro\n"
"danou zvukovou kartu\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" vám řekne, který ovladač se nyní\n"
+"- \"grep sound-slot /etc/modprobe.conf\" vám řekne, který ovladač se nyní\n"
"používá\n"
"\n"
"- \"/sbin/lsmod\" provede kontrolu toho, zda modul (ovladač) je nahrán nebo "
@@ -3788,18 +3200,18 @@ msgstr ""
"- \"/sbin/fuser -v /dev/dsp\" vám řekne, který program používá zvukovou "
"kartu.\n"
-#: harddrake/sound.pm:339
+#: harddrake/sound.pm:340
#, c-format
msgid "Let me pick any driver"
msgstr "Umožnit výběr ovladače"
-#: harddrake/sound.pm:342
+#: harddrake/sound.pm:343
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Výběr libovolného ovladače"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:345
+#: harddrake/sound.pm:346
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3813,8 +3225,7 @@ msgstr ""
"\n"
"Aktuální ovladač pro vaši zvukovou kartu \"%s\" je \"%s\"."
-#: harddrake/v4l.pm:12 standalone/net_applet:64 standalone/net_applet:65
-#: standalone/net_applet:67
+#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Autodetekce"
@@ -3857,3815 +3268,53 @@ msgstr "Model karty:"
msgid "Tuner type:"
msgstr "Typ tuneru:"
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "Number of capture buffers:"
-msgstr "Počet bufferů pro zachycení:"
-
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "Počet bufferů pro zachycení systémem mmap"
-
-#: harddrake/v4l.pm:481
+#: interactive.pm:125 interactive.pm:538 interactive/curses.pm:217
+#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
+#: interactive/stdio.pm:142 interactive/stdio.pm:143 ugtk2.pm:410 ugtk2.pm:508
+#: ugtk2.pm:788 ugtk2.pm:811
#, c-format
-msgid "PLL setting:"
-msgstr "Nastavení PLL:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "Radio support:"
-msgstr "Podpora rádia:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "enable radio support"
-msgstr "Zapnout podporu rádia"
-
-#: help.pm:12
-#, c-format
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandriva Linux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-"Předtím, než budete pokračovat, přečtěte si pozorně licenční podmínky. Ty\n"
-"se vztahují k celé distribuci Mandriva Linux a pokud s nimi souhlasíte,\n"
-"klepněte na tlačítko \"%s\". Pokud ne, klepněte na tlačítko \"%s \" a "
-"počítač bude restartován."
-
-#: help.pm:18
-#, c-format
-msgid ""
-"GNU/Linux is a multi-user system which means each user can have his or her\n"
-"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point will not be "
-"authorized\n"
-"to change anything except their own files and their own configurations,\n"
-"protecting the system from unintentional or malicious changes which could\n"
-"impact on the system as a whole. You'll have to create at least one regular\n"
-"user for yourself -- this is the account which you should use for routine,\n"
-"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
-"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system will not work any more. If you make a\n"
-"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you will not affect the entire system.\n"
-"\n"
-"The first field asks you for a real name. Of course, this is not mandatory\n"
-"-- you can actually enter whatever you like. DrakX will use the first word\n"
-"you type in this field and copy it to the \"%s\" one, which is the name\n"
-"this user will enter to log onto the system. If you like, you may override\n"
-"the default and change the user name. The next step is to enter a password.\n"
-"From a security point of view, a non-privileged (regular) user password is\n"
-"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
-"by making it blank or too simple: after all, your files could be the ones\n"
-"at risk.\n"
-"\n"
-"Once you click on \"%s\", you can add other users. Add a user for each one\n"
-"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
-"finished adding users.\n"
-"\n"
-"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
-"that user (bash by default).\n"
-"\n"
-"When you're finished adding users, you'll be asked to choose a user who\n"
-"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click on\n"
-"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
-msgstr ""
-"GNU/Linux je víceuživatelský systém, což znamená, že každý uživatel může\n"
-"mít své vlastní nastavení, soubory atd. Více se dočtete v příručce \"Začínáme"
-"\".\n"
-"Na rozdíl od uživatele root, který je správcem počítače, uživatelé, kteří "
-"jsou\n"
-"zde vytvořeni, nemají oprávnění měnit nic kromě svých vlastních souborů a\n"
-"nastavení. Doporučuje se vytvořit účet pro minimálně jednoho běžného "
-"uživatele.\n"
-"Tento účet se používá na všechny běžné úkoly. Ačkoliv je velmi praktické\n"
-"přihlašovat se každý den jako uživatel root, je to také velmi nebezpečné!\n"
-"Jedna malá chyba může způsobit, že celý operační systém již nebude funkční.\n"
-"Pokud uděláte chybu jako normální uživatel, můžete přijít pouze o své "
-"informace,\n"
-"ale nepoškodí se celý systém.\n"
-"\n"
-"Jako první zadejte vaše skutečné jméno. To není samozřejmě povinné - můžete\n"
-"zadat co chcete. Aplikace DrakX použije první slovo jako uživatelské jméno,\n"
-"pod kterým se bude uživatel hlásit do systému, a předvyplní jej do políčka\n"
-"\"%s\". To je možné následně změnit.\n"
-"Dále se zadává heslo pro uživatele. Volba hesla pro normální uživatele sice "
-"není\n"
-"z hlediska bezpečnosti tak kritická jako v případě správce, ale i tak se "
-"doporučuje\n"
-"ji nepodceňovat; koneckonců, jde o zabezpečení souborů tohoto uživatele.\n"
-"\n"
-"Pokud klepnete na \"%s\", můžete přidávat uživatelů, kolik\n"
-"potřebujete, např. své přátele, účet pro otce či sestru. Pokud máte všechny\n"
-"uživatele vytvořeny, klepněte na tlačítko \"%s\". \n"
-"\n"
-"Klepnutím na tlačítko \"%s\" můžete pro nový účet změnit shell, který\n"
-"bude uživatel používat (výchozí je bash).\n"
-"\n"
-"Až dokončíte přidávání uživatelů, budete dotázáni na to, jaký uživatel má "
-"být\n"
-"zvolen pro automatické přihlášení do systému po jeho spuštění. Pokud chcete\n"
-"tuto možnost využít (a neobáváte se o bezpečnost), vyberte požadovaného\n"
-"uživatele a správce oken a klepněte na \"%s\".\n"
-"Pokud tuto možnost nechcete využít, odškrtněte políčko \"%s\"."
-
-#: help.pm:52 printer/printerdrake.pm:1866 printer/printerdrake.pm:1987
-#: standalone/draksambashare:60
-#, c-format
-msgid "User name"
-msgstr "Uživatelské jméno"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: help.pm:52 help.pm:432 help.pm:682 install_interactive.pm:176
-#: install_steps_gtk.pm:237 install_steps_gtk.pm:682 interactive.pm:436
-#: interactive/newt.pm:321 network/thirdparty.pm:385
-#: printer/printerdrake.pm:3884 standalone/drakTermServ:412
-#: standalone/drakbackup:4102 standalone/drakbackup:4196
-#: standalone/drakbackup:4213 standalone/drakbackup:4231 ugtk2.pm:490
-#, c-format
-msgid "Next"
-msgstr "Další"
-
-#: help.pm:52
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Chcete použít tuto vlastnost?"
-
-#: help.pm:55
-#, c-format
-msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Zde je vypsán seznam již existujících detekovaných oddílů na pevném disku.\n"
-"Můžete ponechat volby detekované průvodcem, protože ve většině případů\n"
-"vyhovují. Pokud chcete provést nějaké změny, musíte definovat aspoň "
-"kořenový\n"
-"oddíl (\"/\"). Velikost oddílů zvolte dostatečnou, jinak nebude možné "
-"nainstalovat\n"
-"dostatečné množství programů. Pokud chcete ukládat data na zvláštní oddíl,\n"
-"vytvořte také oddíl \"/home\".\n"
-"\n"
-"Každý oddíl vypsaný níže má: \"Název\", \"Velikost\".\n"
-"\n"
-"\"Název\" je složen následovně: \"typ pevného disku\", \"číslo disku\",\n"
-"\"číslo oddílu\". (například \"hda1\").\n"
-"\n"
-"Pokud máte IDE disky, pak je \"typ pevného disku\" \"hd\", pokud máte SCSI,\n"
-"označení bude \"sd\".\n"
-"\n"
-"\"Číslo disku\" je vždy písmeno za \"hd\" nebo \"sd\". Pro IDE disky je to "
-"takto:\n"
-"\n"
-" * \"a\" znamená \"master disk na primárním IDE řadiči\",\n"
-"\n"
-" * \"b\" znamená \"slave disk na primárním IDE řadiči\",\n"
-"\n"
-" * \"c\" znamená \"master disk na sekundárním IDE řadiči\",\n"
-"\n"
-" * \"d\" znamená \"slave disk na sekundárním IDE řadiči\".\n"
-"\n"
-"Pro SCSI disky platí, že \"a\" je \"nejmenší SCSI ID\", \"b\" je \"druhé\n"
-"nejmenší SCSI ID\" atd."
-
-#: help.pm:86
-#, c-format
-msgid ""
-"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-"Distribuce Mandriva Linux je složena z několika CD. Instalační program ví,\n"
-"na kterém disku je umístěn jaký balíček a v případě potřeby vysune CD a "
-"vyžádá\n"
-"si výměnu CD za požadované. Pokud nemáte požadované CD po ruce, klikněte\n"
-"na \"%s\" a odpovídající balíčky nebudou nainstalovány."
-
-#: help.pm:93
-#, c-format
-msgid ""
-"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandriva Linux, and to make "
-"it\n"
-"simpler to manage, they have been placed into groups of similar\n"
-"applications.\n"
-"\n"
-"Mandriva Linux sorts package groups in four categories. You can mix and\n"
-"match applications from the various categories, so a ``Workstation''\n"
-"installation can still have applications from the ``Server'' category\n"
-"installed.\n"
-"\n"
-" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
-"more of the groups in the workstation category.\n"
-"\n"
-" * \"%s\": if you plan on using your machine for programming, select the\n"
-"appropriate groups from that category. The special \"LSB\" group will\n"
-"configure your system so that it complies as much as possible with the\n"
-"Linux Standard Base specifications.\n"
-"\n"
-" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
-"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
-"of the system. However, if you do not select the \"LSB\" group you will\n"
-"still have a system which is nearly 100%% LSB-compliant.\n"
-"\n"
-" * \"%s\": if your machine is intended to be a server, select which of the\n"
-"more common services you wish to install on your machine.\n"
-"\n"
-" * \"%s\": this is where you will choose your preferred graphical\n"
-"environment. At least one must be selected if you want to have a graphical\n"
-"interface available.\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group.\n"
-"\n"
-"You can check the \"%s\" box, which is useful if you're familiar with the\n"
-"packages being offered or if you want to have total control over what will\n"
-"be installed.\n"
-"\n"
-"If you start the installation in \"%s\" mode, you can deselect all groups\n"
-"and prevent the installation of any new packages. This is useful for\n"
-"repairing or updating an existing system.\n"
-"\n"
-"If you deselect all groups when performing a regular installation (as\n"
-"opposed to an upgrade), a dialog will pop up suggesting different options\n"
-"for a minimal installation:\n"
-"\n"
-" * \"%s\": install the minimum number of packages possible to have a\n"
-"working graphical desktop.\n"
-"\n"
-" * \"%s\": installs the base system plus basic utilities and their\n"
-"documentation. This installation is suitable for setting up a server.\n"
-"\n"
-" * \"%s\": will install the absolute minimum number of packages necessary\n"
-"to get a working Linux system. With this installation you will only have a\n"
-"command-line interface. The total size of this installation is about 65\n"
-"megabytes."
-msgstr ""
-"V této chvíli je možné vybrat, které programy chcete nainstalovat na váš "
-"systém.\n"
-"Mandriva Linux obsahuje tisíce balíčků s programy a pro snadnější orientaci\n"
-"byly rozděleny do skupin, které sdružují podobné aplikace.\n"
-"\n"
-"Balíčky jsou rozděleny do skupin, které odpovídají tomu, jak je nejčastěji\n"
-"počítač používán. Skupiny samotné jsou umístěny do čtyř sekcí. Výběr "
-"aplikací\n"
-"z těchto sekcí lze různě kombinovat, takže můžete mít celou instalovánu "
-"sekci\n"
-"\"Pracovní stanice\" a k ní nějaké aplikace ze sekce \"Server\".\n"
-"\n"
-" * \"%s\": pokud plánujete používat počítač převážně na\n"
-"běžnou práci, vyberte si balíčky ze skupin kategorie pracovní stanice.\n"
-"\n"
-" * \"%s\": pokud budete na počítači programovat, můžete si z této\n"
-"sekce vybrat další skupiny. Zvláštní skupina \"LSB\" nastaví váš systém "
-"tak,\n"
-"aby co nejvíce odpovídal specifikaci Linux Standard Base.\n"
-"\n"
-" Výběr skupiny \"LSB\" rovněž nainstaluje jádro řady \"2.4\" místo "
-"výchozího\n"
-"jádra řady \"2.6\", pro zajištění plné kompatibility se specifikací LSB. I "
-"když ale\n"
-"skupinu LSB nevyberete, bude systém téměř úplně specifikaci odpovídat.\n"
-"\n"
-" * \"%s\": pokud bude počítač provozován jako server, máte možnost\n"
-"vybrat si ty nejběžnější služby, které chcete nainstalovat.\n"
-"\n"
-" * \"%s\": pokud preferujete grafické prostředí, zde je\n"
-"nabídka několika prostředí, ze které si musíte vybrat nejméně jedno,\n"
-"aby bylo možné grafické prostředí nainstalovat.\n"
-"\n"
-"Pokud přejedete myší nad skupinou, objeví se krátký text, který vysvětluje,\n"
-"co je obsahem dané skupiny.\n"
-"\n"
-"Pokud zatrhnete volbu \"%s\", zobrazí se seznam všech\n"
-"balíčků, které je možno nainstalovat. To je to užitečné v případě, že "
-"chcete\n"
-"mít absolutní kontrolu nad tím, co se bude instalovat.\n"
-"\n"
-"Pokud jste spustili instalaci v režimu \"%s\", můžete zrušit výběr\n"
-"daných skupin, čímž zabráníte instalaci nových balíčků. To je užitečné\n"
-"pro případ opravy nebo aktualizace existujícího systému.\n"
-"\n"
-"Pokud nevyberete při běžné instalaci žádnou skupinu (na rozdíl od\n"
-"aktualizace), zobrazí se otázka na instalaci několika typů minimální\n"
-"instalace:\n"
-"\n"
-" * \"%s\" Provede instalaci minima balíčků s podporou grafického prostředí.\n"
-"\n"
-" * \"%s\" Nainstaluje systém se základními programy a jejich dokumentací. \n"
-"Tento typ je vhodný pro instalaci serveru.\n"
-"\n"
-" * \"%s\" Nainstaluje se opravdu nezbytné minimum, aby bylo\n"
-"možné provozovat Linux z příkazové řádky. Instalace zabere asi\n"
-"65MB."
-
-#: help.pm:147 share/compssUsers.pl:24
-#, c-format
-msgid "Workstation"
-msgstr "Pracovní stanice"
-
-#: help.pm:147 share/compssUsers.pl:65 share/compssUsers.pl:167
-#: share/compssUsers.pl:169
-#, c-format
-msgid "Development"
-msgstr "Vývoj"
-
-#: help.pm:147 share/compssUsers.pl:145
-#, c-format
-msgid "Graphical Environment"
-msgstr "Grafické prostředí"
-
-#: help.pm:147 install_steps_gtk.pm:235 install_steps_interactive.pm:623
-#, c-format
-msgid "Individual package selection"
-msgstr "Výběr jednotlivých balíčků"
-
-#: help.pm:147 help.pm:589
-#, c-format
-msgid "Upgrade"
-msgstr "Aktualizovat"
-
-#: help.pm:147 install_steps_interactive.pm:581
-#, c-format
-msgid "With X"
-msgstr "X prostředí"
-
-#: help.pm:147
-#, c-format
-msgid "With basic documentation"
-msgstr "Obsahuje základní dokumentaci"
-
-#: help.pm:147
-#, c-format
-msgid "Truly minimal install"
-msgstr "Opravdu minimální instalace"
-
-#: help.pm:150
-#, c-format
-msgid ""
-"If you choose to install packages individually, the installer will present\n"
-"a tree containing all packages classified by groups and subgroups. While\n"
-"browsing the tree, you can select entire groups, subgroups, or individual\n"
-"packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description will appear on the\n"
-"right to let you know the purpose of that package.\n"
-"\n"
-"!! If a server package has been selected, either because you specifically\n"
-"chose the individual package or because it was part of a group of packages,\n"
-"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandriva Linux will automatically start any installed\n"
-"services at boot time. Even if they are safe and have no known issues at\n"
-"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandriva Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do "
-"or\n"
-"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
-"the listed services and they will be started automatically at boot time. !!\n"
-"\n"
-"The \"%s\" option is used to disable the warning dialog which appears\n"
-"whenever the installer automatically selects a package to resolve a\n"
-"dependency issue. Some packages depend on others and the installation of\n"
-"one particular package may require the installation of another package. The\n"
-"installer can determine which packages are required to satisfy a dependency\n"
-"to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-"package list created during a previous installation. This is useful if you\n"
-"have a number of machines that you wish to configure identically. Clicking\n"
-"on this icon will ask you to insert the floppy disk created at the end of\n"
-"another installation. See the second tip of the last step on how to create\n"
-"such a floppy."
-msgstr ""
-"V závislosti na tom, zda jste zvolili individuální výběr balíčků, se "
-"nabídne\n"
-"stromová struktura obsahující všechny balíčky organizované do skupin\n"
-"a podskupin. Při procházení stromu můžete vybrat jednotlivé balíčky, "
-"podskupiny\n"
-"nebo celé skupiny.\n"
-"\n"
-"Pokud vyberete ze stromu balíček, objeví se v pravé části jeho popis.\n"
-"\n"
-"!! Pokud se nachází mezi vybranými balíčky serverové programy, ať už "
-"vybrané\n"
-"záměrně nebo jako součást skupiny, zobrazí se dotaz na to,\n"
-"zda opravdu chcete tyto servery nainstalovat. V distribuci Mandriva Linux\n"
-"jsou tyto servery spuštěny při startu systému. I když v době vydání "
-"distribuce\n"
-"nejsou známy žádné bezpečnostní problémy, mohou se vyskytnout později.\n"
-"Pokud nevíte, k čemu jsou určeny některé serverové služby, klepněte na \"%s"
-"\".\n"
-"Klepnutím na \"%s\" se dané služby nainstalují a automaticky spustí při "
-"startu !!\n"
-"\n"
-"Volba \"%s\" vypne varovné hlášení, které se objeví\n"
-"vždy, když vyberete balíček, který má další závislosti a instalační program\n"
-"musí vybrat další potřebné balíčky, aby instalace mohla proběhnout úspěšně.\n"
-"\n"
-"Malá ikonka diskety dole umožňuje nahrát již předem vybraný seznam balíčků.\n"
-"To je užitečné, pokud máte několik počítače a chcete na nich shodnou "
-"instalaci.\n"
-"Po klepnutí na ikonu budete dotázáni na vložení diskety, která byla "
-"vytvořena na\n"
-"konci jiné instalace. Ve druhém tipu při posledním kroku najdete návod, jak "
-"si\n"
-"tuto disketu vytvořit. "
-
-#: help.pm:181 help.pm:286 help.pm:314 help.pm:445 install_any.pm:944
-#: interactive.pm:161 modules/interactive.pm:71 standalone/drakbackup:2636
-#: standalone/drakfont:687 standalone/draksec:54 standalone/harddrake2:331
-#: ugtk2.pm:898 wizards.pm:156
-#, c-format
-msgid "No"
-msgstr "Ne"
+msgid "Ok"
+msgstr "Ok"
-#: help.pm:181 help.pm:286 help.pm:445 install_any.pm:944 interactive.pm:161
-#: modules/interactive.pm:71 printer/printerdrake.pm:883
-#: printer/printerdrake.pm:898 standalone/drakbackup:2636
-#: standalone/drakfont:685 standalone/draksec:55 standalone/harddrake2:330
-#: ugtk2.pm:898 wizards.pm:156
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ano"
-#: help.pm:181
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Ošetří automaticky závislosti"
-
-#: help.pm:184
-#, c-format
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to set up a new printer. The interface presented in our\n"
-"manual is similar to the one used during installation."
-msgstr ""
-"\"%s\": klepnutím na \"%s\" se otevře průvodce nastavením tiskárny.\n"
-"Jak nastavit tiskárnu se také dozvíte z odpovídající kapitoly z příručky\n"
-"\"Začínáme\". Rozhraní je podobné tomu, které vidíte při instalaci."
-
-#: help.pm:187 help.pm:567 help.pm:856 install_steps_gtk.pm:595
-#: standalone/drakbackup:2460 standalone/drakbackup:2464
-#: standalone/drakbackup:2468 standalone/drakbackup:2472
-#: standalone/drakroam:227
-#, c-format
-msgid "Configure"
-msgstr "Nastavit"
-
-#: help.pm:190
-#, c-format
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
-"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which are not needed at boot\n"
-"time.\n"
-"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably do not want to start any services which you do not "
-"need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-"Nyní si zvolte, které služby mají být spuštěny při startu počítače.\n"
-"\n"
-"Je zde seznam všech služeb, které jsou aktuálně nainstalovány.\n"
-"Prohlédněte si seznam pozorně a zrušte ty, které nepotřebujete při startu\n"
-"počítače spouštět.\n"
-"\n"
-"Pokud přejedete myší nad některou položkou, objeví se malá nápověda\n"
-"s popisem, co daná služba dělá. Pokud přesně nevíte, zda je služba užitečná\n"
-"nebo ne, je lepší ji nechat ve výchozím stavu.\n"
-"\n"
-"!! Rozvažte, co za služby spustit, zvláště pokud budete počítač provozovat\n"
-"jako server: nepotřebujete všechny služby. Pamatujte, že čím více služeb\n"
-"je spuštěno, tím je větší nebezpečí nežádoucího proniknutí do počítače.\n"
-"Takže povolte opravdu jen ty služby, které nezbytně potřebujete !!"
-
-#: help.pm:207
-#, c-format
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
-"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
-msgstr ""
-"GNU/Linux spravuje čas podle GMT (Greenwich Mean Time) a převádí ho na\n"
-"čas podle příslušné vybrané časové zóny. Pokud je čas na vaší mateřské "
-"desce\n"
-"nastaven jako lokální, je možné toto zrušit odznačením volby \"%s\" a pak "
-"budou\n"
-"systémové hodiny stejné jako hardwarové a ve stejné časové zóně.\n"
-"To je užitečné tehdy, když je na počítači jiný operační systém.\n"
-"\n"
-"Volba \"%s\" provádí automatické nastavení hodin pomocí připojení k "
-"časovému\n"
-"serveru na Internetu. Vyberte si v seznamu ten server, který je vám "
-"nejblíž.\n"
-"Je samozřejmé, že pro správnou funkci musíte mít funkční připojení\n"
-"k Internetu. Na počítač se také nainstaluje časový server, který mohou\n"
-"volitelně používat jiné počítače ve vaší lokální síti."
-
-#: help.pm:218 install_steps_interactive.pm:859
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Hardwarové hodiny nastaveny na GMT"
-
-#: help.pm:218
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Automatická synchronizace času"
-
-#: help.pm:221
-#, c-format
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-"Grafická karta\n"
-"\n"
-" Instalační program je schopen automaticky detekovat a nastavit grafickou\n"
-"kartu instalovanou v počítači. Pokud se to nepodaří, máte možnost si ze\n"
-"seznamu vybrat příslušnou grafickou kartu ručně.\n"
-"\n"
-" V případě, že pro vaši kartu je možné použít více různých serverů, buď\n"
-"s 3D akcelerací nebo bez, je pouze na vás, který server si vyberete jako\n"
-"nejvíce vyhovující vašim potřebám."
-
-#: help.pm:232
-#, c-format
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"X (X Window System) je srdcem grafického rozhraní pro GNU/Linux, které\n"
-"využívají dodávané grafické prostředí (KDE, GNOME, AfterStep, WindowMaker) "
-"se systémem Mandriva Linux.\n"
-"\n"
-"Nyní bude zobrazen seznam různých parametrů, které je možné změnit pro\n"
-"dosažení optimálního grafického zobrazení\n"
-"\n"
-"Grafická karta\n"
-"\n"
-" Instalační program je schopen automaticky detekovat a nastavit grafickou\n"
-"kartu instalovanou v počítači. Pokud se to nepodaří, máte možnost si ze\n"
-"seznamu vybrat příslušnou grafickou kartu ručně.\n"
-"\n"
-" V případě, že pro vaši kartu je možné použít více různých serverů, s 3D\n"
-"akcelerací nebo bez, je pouze na vás, který server si vyberete jako nejvíce\n"
-"vyhovující vašim potřebám.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Instalační program dokáže většinou automaticky detekovat a správně \n"
-"nastavit monitor připojený k vašemu počítači. Pokud se to nezdaří, lze se\n"
-"seznamu vybrat monitor, který máte.\n"
-"\n"
-"\n"
-"\n"
-"Rozlišení\n"
-"\n"
-" Zde si můžete vybrat rozlišení a barevnou hloubku, které vaše karta \n"
-"podporuje. Vyberte si to co vám nejvíce vyhovuje (výběr lze po instalaci\n"
-"samozřejmě změnit). Na monitoru bude zobrazen příklad nastavení.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Systém se pokusí otestovat grafickou obrazovku v požadovaném rozlišení.\n"
-"Pokud během testu uvidíte zprávy a odpovíte na ni \"%s\", instalační "
-"program\n"
-"bude pokračovat dalším krokem. Pokud zprávu neuvidíte, znamená to, že "
-"některá\n"
-"část automatické detekce neproběhla v pořádku a test automaticky za 12 "
-"vteřin\n"
-"skončí s tím, že se provede návrat k základní nabídce. Následně je možné "
-"opět\n"
-"provést změny až do té doby, než bude zobrazeno správné rozlišení.\n"
-"\n"
-"\n"
-"\n"
-"Volby\n"
-"\n"
-" Zde si můžete vybrat, zda chcete provést automatický start grafického\n"
-"prostředí po spuštění systému. Je samozřejmé, že pokud bude počítač\n"
-"provozován jako server nebo pokud se nepodařilo nastavit grafickou kartu,\n"
-"je nutné odpovědět \"%s\"."
-
-#: help.pm:289
-#, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
-msgstr ""
-"Monitor\n"
-"\n"
-" Instalační program dokáže většinou automaticky detekovat a správně \n"
-"nastavit monitor připojený k vašemu počítači. Pokud se to nezdaří, lze si\n"
-"ze seznamu vybrat monitor, který máte."
-
-#: help.pm:296
-#, c-format
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
-msgstr ""
-"Rozlišení\n"
-"\n"
-" Zde si můžete vybrat rozlišení a barevnou hloubku, které vaše karta \n"
-"podporuje. Vyberte si to, co vám nejvíce vyhovuje (výběr lze po instalaci\n"
-"samozřejmě změnit). Na monitoru bude zobrazen příklad nastavení."
-
-#: help.pm:304
-#, c-format
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-"V případě, že je pro vaši kartu možno použít více různých serverů s 3D\n"
-"akcelerací nebo bez, záleží na vašem výběru, který vám nejvíce vyhovuje."
-
-#: help.pm:309
-#, c-format
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"Volby\n"
-"\n"
-" Tento krok vám umožňuje nastavit automatické spouštění grafického "
-"prostředí\n"
-"při startu. Je zřejmé, že odpovíte \"%s\" v případě, že počítač bude "
-"pracovat\n"
-"jako server nebo v případě, že se nepodařilo správně nastavit grafickou "
-"kartu."
-
-#: help.pm:317
-#, c-format
-msgid ""
-"You now need to decide where you want to install the Mandriva Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandriva Linux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandriva Linux system, "
-"choose\n"
-"this option. Be careful, because you will not be able to undo this "
-"operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-"V tomto bodě si musíte rozhodnout, na které diskové oddíly budete\n"
-"instalovat nový operační systém Mandriva Linux. Pokud je disk prázdný\n"
-"nebo existující operační systém používá celý disk, je nutné ho rozdělit.\n"
-"Rozdělení disku spočívá ve vytvoření volného prostoru pro instalaci\n"
-"systému Mandriva Linux.\n"
-"\n"
-"Protože rozdělení disku je nenávratná operace, je to velmi nebezpečná\n"
-"akce pro ty uživatele, kteří nemají žádné zkušenosti.\n"
-"Pro tyto uživatele je dobrý průvodce, který zjednoduší daný proces.\n"
-"Ještě před započetím rozdělování disku si pročtěte zbytek této sekce a "
-"hlavně\n"
-"nespěchejte.\n"
-"\n"
-"Na základě vaší stávající konfigurace nabídne průvodce několik řešení:\n"
-"\n"
-" * \"%s\": takto se jednoduše automaticky disk(y) rozdělí\n"
-"a již se o nic nemusíte starat.\n"
-"\n"
-" * \"%s\": průvodce detekoval jeden nebo více existujících\n"
-"Linuxových oddílů a ty nabídne pro instalaci. Budete muset definovat ke "
-"každému\n"
-"oddílu přípojný bod. Původní přípojné body jsou předvyplněny a obvykle by\n"
-"jste je měli ponechat.\n"
-"\n"
-" * \"%s\": pokud máte na disku nainstalovány Microsoft Windows a tyto\n"
-"zabírají celý disk, je možné tento prostor zmenšit a použít ho pro "
-"instalaci.\n"
-"Oddíl a data lze také vymazat (viz volba \"Smazat celý disk\") nebo\n"
-"změnit velikost FAT či NTFS oddílu s Microsoft Windows. Změna velikosti\n"
-"oddílu je provedena beze ztráty dat a je možná, pokud jste předtím tento "
-"oddíl ve\n"
-"Windows defragmentovali. Je doporučeno zazálohovat vaše data. Tento postup\n"
-"je doporučený, pokud chcete na disku provozovat současně systém\n"
-"Mandriva Linux i Microsoft Windows.\n"
-"\n"
-" Před výběrem této volby si prosím uvědomte, že velikost oddílu s "
-"Microsoft\n"
-"Windows bude menší než je nyní. To znamená, že budete mít méně místa pro\n"
-"uložení dat nebo instalaci programů do Microsoft Windows.\n"
-"\n"
-" * \"%s\": pokud chcete smazat veškerá data a všechny oddíly na disku\n"
-"a použít je pro instalaci systému Mandriva Linux, vyberte toto řešení.\n"
-"Zde postupujte opatrně, po výběru již není možné vzít tuto volbu zpět.\n"
-"\n"
-" !! Pokud zvolíte tuto možnost, všechna data na disku budou ztracena.!!\n"
-"\n"
-" * \"%s\": Tato volba se objeví, pokud celý disk zabírá operační systém\n"
-"Microsoft Windows. Tato volba jednoduše smaže vše na disku a znovu disk\n"
-"rozdělí.\n"
-"\n"
-" !! Pokud vyberete tuto volbu, veškerá data budou ztracena. !!\n"
-"\n"
-" * \"%s\": pokud chcete disk rozdělit ručně. Před touto volbou buďte "
-"opatrní,\n"
-"je sice mocná, ale nebezpečná. Velmi jednoduše zde můžete přijít o svá "
-"data.\n"
-"Nedoporučuje se těm, kteří přesně nevědí, co dělají. Chcete-li se dozvědět\n"
-"více o nástroji DiskDrake, který se v tomto případě používá, prostudujte "
-"sekci\n"
-"\"Správa vašich oddílů\" v příručce \"Začínáme\"."
-
-#: help.pm:375 install_interactive.pm:96
-#, c-format
-msgid "Use free space"
-msgstr "Použít volné místo"
-
-#: help.pm:375
-#, c-format
-msgid "Use existing partition"
-msgstr "Použije existující oddíl"
-
-#: help.pm:375 install_interactive.pm:138
-#, c-format
-msgid "Use the free space on the Microsoft Windows® partition"
-msgstr "Použít volné místo na Windows oddílu"
-
-#: help.pm:375
-#, c-format
-msgid "Erase entire disk"
-msgstr "Smazat celý disk"
-
-#: help.pm:375
-#, c-format
-msgid "Remove Windows"
-msgstr "Odstranit Windows"
-
-#: help.pm:375 install_interactive.pm:233
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Vlastní rozdělení disku"
-
-#: help.pm:378
-#, c-format
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
-"to remove the installation media (CD-ROM or floppy). The first thing you\n"
-"should see after your computer has finished doing its hardware tests is the\n"
-"boot-loader menu, giving you the choice of which operating system to start.\n"
-"\n"
-"The \"%s\" button shows two more buttons to:\n"
-"\n"
-" * \"%s\": enables you to create an installation floppy disk which will\n"
-"automatically perform a whole installation without the help of an operator,\n"
-"similar to the installation you've just configured.\n"
-"\n"
-" Note that two different options are available after clicking on that\n"
-"button:\n"
-"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
-"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing on a number of similar\n"
-"machines. See the Auto install section on our web site for more\n"
-"information.\n"
-"\n"
-" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
-"To use this selection with another installation, insert the floppy and\n"
-"start the installation. At the prompt, press the [F1] key, type >>linux\n"
-"defcfg=\"floppy\"<< and press the [Enter] key.\n"
-"\n"
-"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
-"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
-"/dev/fd0\"."
-msgstr ""
-"Nyní je instalace ukončena a operační systém GNU/Linux je připraven k "
-"použití.\n"
-"Klepněte na \"%s\" a systém bude restartován. Nezapomeňte vyjmout "
-"instalační\n"
-"médium (CD-ROM nebo disketu). První věcí, kterou uvidíte po skončení\n"
-"hardwarových testů po zapnutí počítače, bude zavaděč s menu, kde si můžete\n"
-"vybrat, který operační systém chcete spustit.\n"
-"\n"
-"Tlačítko \"%s\" zobrazí další dvě tlačítka:\n"
-"\n"
-" * \"%s\": vytvoří disketu, se kterou\n"
-"lze celou instalaci opakovat bez zásahu operátora se stejnými volbami,\n"
-"které byly zvoleny při instalaci.\n"
-"\n"
-" Po klepnutí na toto tlačítko se zobrazí další dvě volby:\n"
-"\n"
-" * : \"%s\": je to částečně automatická instalace, kdy se potvrzuje\n"
-"krok při rozdělování disků (a pouze tento krok).\n"
-"\n"
-" * : \"%s\": plně automatická instalace, data na pevném disku\n"
-"budou zrušena a disk přepsán.\n"
-"\n"
-" Tato volba je velmi užitečná, když potřebujete nainstalovat větší počet\n"
-"stejných počítačů. Více o této možnosti je na našich WWW stránkách.\n"
-"\n"
-" * \"%s\"(*): uloží výběr balíčků, který byl zvolen při\n"
-"instalaci. Pokud budete instalovat další počítač, vložte disketu do "
-"mechaniky\n"
-"a spusťte instalaci, stiskněte [F1] a napište na příkazový řádek \n"
-">> linux defcfg=\"floppy\" << a stiskněte klávesu Enter.\n"
-"\n"
-"(*) Budete potřebovat disketu naformátovanou systémem souborů FAT.\n"
-"Chcete-li si takovou disketu vytvořit v systému GNU/Linux, napište příkaz\n"
-"\"mformat a:\" nebo \"fdformat /dev/fd0\" a poté \"mkfs.vfat /dev/fd0\"."
-
-#: help.pm:410
-#, c-format
-msgid "Generate auto-install floppy"
-msgstr "Vytvoří disketu pro automatickou instalaci"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Replay"
-msgstr "Zopakovat"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Automated"
-msgstr "Automaticky"
-
-#: help.pm:410 install_steps_interactive.pm:1317
-#, c-format
-msgid "Save packages selection"
-msgstr "Uložit výběr jednotlivých balíčků"
-
-#: help.pm:413
-#, c-format
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
-"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
-"reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"will not be able to recover it.\n"
-"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
-"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandriva Linux operating system installation.\n"
-"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-"Každý nově vytvořený diskový oddíl musí být před použitím zformátován\n"
-"(formátováním se myslí vytvoření souborového systému).\n"
-"\n"
-"Nyní lze formátovat již existující diskové oddíly pro vymazání\n"
-"všech dat, která obsahují. Pokud to chcete provést, vyberte diskové oddíly\n"
-"pro přeformátování.\n"
-"\n"
-"Není ale nutné přeformátovat všechny již existující diskové oddíly.\n"
-"Je nutné přeformátovat oddíly, které obsahují operační systém (jako je \"/"
-"\",\n"
-"\"/usr\" nebo \"/var\") ale není nutné přeformátovat oddíly, které obsahují\n"
-"data, která chcete zachovat (typicky \"/home\").\n"
-"\n"
-"Při výběru diskových oddílů, které se budou formátovat buďte opatrní, "
-"všechna\n"
-"data na formátovaných oddílech budou ztracena a nelze je již obnovit.\n"
-"\n"
-"Pokud je vše připraveno pro formátování, klepněte na \"%s\".\n"
-"\n"
-"Pokud chcete vybrat jiné oddíly pro instalaci systému Mandriva Linux,\n"
-"klepněte na \"%s\" \n"
-"\n"
-"Klepnutím na \"%s\" můžete vybrat, které oddíly budou otestovány\n"
-"na vadné bloky."
-
-#: help.pm:432 install_steps_gtk.pm:392 interactive.pm:437
-#: interactive/newt.pm:318 printer/printerdrake.pm:3882
-#: standalone/drakTermServ:391 standalone/drakbackup:4065
-#: standalone/drakbackup:4101 standalone/drakbackup:4212
-#: standalone/drakbackup:4227 ugtk2.pm:488
-#, c-format
-msgid "Previous"
-msgstr "Zpět"
-
-#: help.pm:435
-#, c-format
-msgid ""
-"By the time you install Mandriva Linux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-"Pokaždé, když instalujete distribuci Mandriva Linux, je možné, že některé\n"
-"balíčky byly od vydání distribuce aktualizovány. Mohly to být opravy chyb\n"
-"či řešení možných bezpečnostních problémů. Pokud chcete využít právě\n"
-"této nabídky, je možné tyto balíčky nyní stáhnout z Internetu. Zvolte \"%s"
-"\"\n"
-"pokud máte funkční připojení na Internet nebo \"%s\", pokud budete\n"
-"instalovat aktualizace později.\n"
-"\n"
-"Po zvolení \"%s\" se zobrazí seznam míst, odkud mohou být aktualizace "
-"získány.\n"
-"Vyberte si nejbližší místo. Následně se objeví stromový seznam balíčků,\n"
-"který je možno ještě upravit a stisknutím tlačítka \"%s\" se provede "
-"stažení\n"
-"a instalace vybraných balíčků. Akci můžete přerušit klepnutím na \"%s\"."
-
-#: help.pm:445 help.pm:589 install_steps_gtk.pm:391
-#: install_steps_interactive.pm:132
-#, c-format
-msgid "Install"
-msgstr "Instalace"
-
-#: help.pm:448
-#, c-format
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
-"\n"
-"If you do not know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandriva Linux\n"
-"Control Center.\n"
-"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-"Nyní si vyberte úroveň zabezpečení vašeho počítače Je zřejmé, že čím více\n"
-"je počítač využíván a čím cennější data obsahuje, tím je potřeba zvolit "
-"vyšší\n"
-"úroveň, stejně tak pokud je přímo vystaven na síti Internet. Na druhou "
-"stranu,\n"
-"vyšší úroveň znesnadňuje některé obvyklé postupy.\n"
-"\n"
-"Pokud nevíte co vybrat, ponechte výchozí nastavení. Úroveň zabezpečení\n"
-"lze později změnit pomocí nástroje draksec z Ovládacího centra Mandriva.\n"
-"\n"
-"V políčku \"%s\" je jméno uživatele, který bude odpovědný za zabezpečení\n"
-"počítače. Všechny bezpečnostní zprávy systému budou odeslány na tuto adresu."
-
-#: help.pm:459
-#, c-format
-msgid "Security Administrator"
-msgstr "Správce zabezpečení"
-
-#: help.pm:462
-#, c-format
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandriva Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"%s\": this option deletes all partitions on the selected hard drive\n"
-"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
-"partitions in the free space of your hard drive\n"
-"\n"
-"\"%s\": gives access to additional features:\n"
-"\n"
-" * \"%s\": saves the partition table to a floppy. Useful for later\n"
-"partition-table recovery if necessary. It is strongly recommended that you\n"
-"perform this step.\n"
-"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
-"\n"
-" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it does not always\n"
-"work.\n"
-"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
-"\n"
-" * \"%s\": un-checking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
-"\n"
-" * \"%s\": use this option if you wish to use a wizard to partition your\n"
-"hard drive. This is recommended if you do not have a good understanding of\n"
-"partitioning.\n"
-"\n"
-" * \"%s\": use this option to cancel your changes.\n"
-"\n"
-" * \"%s\": allows additional actions on partitions (type, options, format)\n"
-"and gives more information about the hard drive.\n"
-"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"When defining the size of a partition, you can finely set the partition\n"
-"size by using the Arrow keys of your keyboard.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and the [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
-"\n"
-" * Ctrl-d to delete a partition\n"
-"\n"
-" * Ctrl-m to set the mount point\n"
-"\n"
-"To get information about the different file system types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"V této chvíli je potřeba určit, který(é) oddíl(y) budou použity pro "
-"instalaci\n"
-"systému Mandriva Linux. Pokud byly oddíly již jednou definovány, buď\n"
-"z předchozí instalace GNU/Linux nebo jiným programem na rozdělení disku,\n"
-"je možné použít právě tyto oddíly. Jinak musí být oddíly nově definovány.\n"
-"\n"
-"Pro vytvoření oddílu musíte nejdříve vybrat pevný disk. Klepněte na \n"
-"\"hda\", což je první IDE disk, nebo na \"hdb\", což je druhý disk,\n"
-"případně na \"sda\", což je první SCSI disk.\n"
-"\n"
-"Pro rozdělení vybraného disku můžete použít tyto volby:\n"
-"\n"
-" * \"%s\": tato volba smaže všechny oddíly na vybraném disku.\n"
-"\n"
-" * \"%s\": dojde k automatickému vytvoření oddílu pro Ext2 a swap ve volném\n"
-"prostoru disku.\n"
-"\n"
-" * \"%s\": nabídne další možnosti:\n"
-"\n"
-" * \"%s\": uloží tabulku oddílů na disketu. To je\n"
-"vhodné pro případ poškození tabulky, kdy ji lze z této zálohy obnovit.\n"
-"Doporučujeme využít tuto možnost.\n"
-"\n"
-" * \"%s\": obnoví tabulku oddílů, která byla již dříve\n"
-"uložena na disketu.\n"
-"\n"
-" * \"%s\": pokud je tabulka poškozena, můžete se\n"
-"pokusit ji opravit. Buďte ale opatrní a pamatujte na to, že se to nemusí "
-"vždy\n"
-"podařit.\n"
-"\n"
-" * \"%s\": zruší všechny změny a nahraje původní\n"
-"tabulku oddílů.\n"
-"\n"
-" \"%s\": odznačení této volby\n"
-"způsobí, že při připojování a odpojování vyjímatelných médií jako jsou CD-"
-"ROM\n"
-"disky a floppy disky je nutné použít ručně příkaz mount.\n"
-"\n"
-" * \"%s\": pokud nemáte dobré znalosti o rozdělování disků, použijte\n"
-"tuto volbu, kdy se spustí průvodce. Doporučujeme, pokud nemáte dobré "
-"znalosti\n"
-"o vytváření oddílů na disku.\n"
-"\n"
-" * \"%s\": zruší všechny provedené změny.\n"
-"\n"
-" * \"%s\": dovoluje další akce s oddíly\n"
-"(typ oddílu, volby, formátování) a zobrazí další informace.\n"
-"\n"
-" * \"%s\": pokud máte disk rozdělen, uloží se změny na disk.\n"
-"\n"
-"Pokud definujete velikost oddílu, můžete přesněji jejich velikost určit "
-"pomocí\n"
-"kurzorových šipek na klávesnici.\n"
-"\n"
-"Poznámka: každou volbu je možné zadat také z klávesnice. Mezi oddíly se\n"
-"můžete pohybovat pomocí kláves [Tab] a [Šipka nahoru/šipka dolů].\n"
-"\n"
-"Pokud je vybrán oddíl, lze použít tyto volby:\n"
-"\n"
-" * Ctrl-c pro vytvoření nového oddílu (pokud je vybrán prázdný oddíl);\n"
-"\n"
-" * Ctrl-d pro smazání oddílu;\n"
-"\n"
-" * Ctrl-m pro zadání bodu připojení.\n"
-"\n"
-"Více informací o jednotlivých druzích souborových systémů naleznete\n"
-"v kapitole o ext2fs v \"Referenční příručce\".\n"
-"\n"
-"Pokud instalujete na počítač PPC, je potřeba vytvořit malý oddíl HFS,\n"
-"tzv. \"bootstrap\" o minimální velikosti 1MB, který bude použit pro zavaděč\n"
-"Yaboot. Pokud vytvoříte tento oddíl větší, např. 50 MB, je to dobré místo "
-"pro\n"
-"uložení ramdisku a jádra pro situace záchrany disku."
-
-#: help.pm:531
-#, c-format
-msgid "Removable media auto-mounting"
-msgstr "Automatické připojování pro vyjímatelná média"
-
-#: help.pm:531
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Přepne mezi normální/expertním režimem"
-
-#: help.pm:534
-#, c-format
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandriva Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Instalační program nalezl na disku více než jeden oddíl s Microsoft "
-"Windows.\n"
-"Prosím vyberte si jeden z nich, který je potřeba pro novu instalaci systému\n"
-"Mandriva Linux zmenšit.\n"
-"\n"
-"Každý oddíl je zobrazen následovně: \"Pojmenování v Linuxu\",\n"
-"\"Název ve Windows\", \"Velikost\".\n"
-"\n"
-"\"Pojmenování v Linuxu\" je složeno následovně: \"typ pevného disku\",\n"
-"\"číslo disku\", \"číslo oddílu\". (například \"hda1\").\n"
-"\n"
-"Pokud máte IDE disky, pak je \"typ pevného disku\" \"hd\", pokud máte SCSI,\n"
-"označení bude \"sd\".\n"
-"\n"
-"\"Číslo disku\" je vždy písmeno za \"hd\" nebo \"sd\". Pro IDE disky je "
-"takto:\n"
-"\n"
-" * \"a\" znamená \"master disk na primárním IDE řadiči\",\n"
-"\n"
-" * \"b\" znamená \"slave disk na primárním IDE řadiči\",\n"
-"\n"
-" * \"c\" znamená \"master disk na sekundárním IDE řadiči\",\n"
-"\n"
-" * \"d\" znamená \"slave disk na sekundárním IDE řadiči\".\n"
-"\n"
-"Pro SCSI disky platí, že \"a\" je \"nejmenší SCSI ID\", \"b\" je \"druhé\n"
-"nejmenší SCSI ID\" atd.\n"
-"\n"
-"\"Název ve Windows\" je písmeno, které je použito ve Windows\n"
-"(první oddíl nebo disk má písmeno \"C:\")."
-
-#: help.pm:565
-#, c-format
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country is not in "
-"the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-"\"%s\": zkontrolujte aktuální výběr země. Pokud nejste v dané zemi, "
-"klepněte\n"
-"na tlačítko \"%s\" a vyberte si jinou. Pokud vaše země není na prvním "
-"seznamu,\n"
-"klepněte na tlačítko \"%s\" a získáte kompletní seznam zemí."
-
-#: help.pm:570
-#, c-format
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandriva Linux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandriva Linux system. Your current "
-"partitioning\n"
-"scheme and user data will not be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandriva Linux version \"8.1\" is not recommended."
-msgstr ""
-"Tento krok se objeví pouze tehdy, pokud je na vašem počítači nalezen starší\n"
-"oddíl GNU/Linuxu.\n"
-"\n"
-"Instalační program potřebuje vědět, zda má provést instalaci nebo pouze\n"
-"aktualizaci existujícího systému Mandriva Linux.\n"
-"\n"
-" * \"%s\": Nejběžnější volba, provede kompletní výmaz starého systému.\n"
-"V závislosti na rozvržení oddílů vašeho starého systému je však možné\n"
-"zachovat obsah některých oddílů (např. adresáře \"/home\") a uchránit je "
-"před přepsáním. Pokud si přejete změnit rozmístění oddílů, změnit\n"
-"souborový systém, použijte tuto volbu.\n"
-"\n"
-" * \"%s\": tato volba provede aktualizaci balíčků instalovaných na vašem\n"
-"systému Mandriva Linux. Aktuální rozmístění diskových oddílů a uživatelská\n"
-"data zůstanou zachována. Bude ale provedena většina konfiguračních kroků,\n"
-"stejně jako při instalaci.\n"
-"\n"
-"Použití volby \"Aktualizace\" bude fungovat bez problémů na stávající "
-"verzi \n"
-"\"8.1\" a novější. Aktualizace na verzích starších než \"8.1\" není "
-"doporučována."
-
-#: help.pm:592
-#, c-format
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
-"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard do not match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
-"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
-"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-"Normálně zvolí instalační program správnou klávesnici na základě zvoleného\n"
-"jazyka, takže v tomto kroku není potřeba nic měnit. Zkontrolujte jeho volbu "
-"a případně\n"
-"ji změňte.\n"
-"\n"
-"Může se stát, že nemáte klávesnici, která odpovídá vašemu jazyku: například\n"
-"pokud jste anglicky hovořící Švýcar, stejně chcete mít švýcarskou "
-"klávesnici.\n"
-"Nebo pokud mluvíte anglicky, ale žijete v Quebecu, je to stejný případ. V "
-"obou\n"
-"případech se můžete vrátit na tento instalační krok a vybrat si "
-"odpovídající\n"
-"klávesnici ze seznamu.\n"
-"\n"
-"Pokud máte klávesnici pro jiný jazyk, klepněte na tlačítko \"%s\"\n"
-"a zobrazí se kompletní seznam všech podporovaných rozložení klávesnic.\n"
-"\n"
-"Pokud vyberete rozložení klávesnice založené na abecedě jiné než latince,\n"
-"budete v dalším dialogu vyzváni k výběru klávesové zkratky, která bude "
-"přepínat\n"
-"rozložení klávesnice mezi latinkou a vámi zvoleným rozložením."
-
-#: help.pm:610
-#, c-format
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandriva Linux's use of UTF-8 "
-"will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-"Prvním krokem je výběr preferovaného jazyka.\n"
-"\n"
-"Výběr preferovaného jazyka ovlivňuje dokumentaci, jazyk instalačního "
-"programu\n"
-"a všech programů obecně. V prvním kroku si vyberete region kde žijete\n"
-"a potom jazyk kterým mluvíte.\n"
-"\n"
-"Tlačítko \"%s\" umožňuje zvolit další jazyky, které budou také\n"
-"nainstalovány a můžete je použít v systému. Výběrem dalších jazyků "
-"nainstalujete\n"
-"soubory s aplikacemi a dokumentací specifické pro tyto jazyky. Pokud "
-"například\n"
-"na počítači pracují občas lidé ze Španělska, vyberte angličtinu jako hlavní\n"
-"jazyka pod tlačítkem rozšířené zatrhněte volbu \"%s\".\n"
-"\n"
-"Podpora UTF-8 (unicode): Unicode je nové kódování znaků, které obsahuje\n"
-"všechny známé jazyky. Plná podpora v GNU/Linuxu je stále ve vývoji.\n"
-"Z toho důvodu bude nebo nebude v systému použita podle volby uživatele:\n"
-"\n"
-" * Pokud vyberete jazyk s jasně daným kódováním (latin1, Ruština, "
-"Japonština\n"
-"Čínština, Korejština, Thajština, Řečtina, Turečtina, většina jazyků "
-"používajících kódování\n"
-"iso-8859-2), bude implicitně použito minulostí staré kódování;\n"
-"\n"
-" * Ostatní jazyky používají implicitně Unicode.\n"
-" * Pokud potřebujete dva nebo více jazyků a tyto jazyky nepoužívají stejné\n"
-"kódování, bude pro celý systém použito kódování Unicode;\n"
-"\n"
-" * Pokud uživatel vybere volbu \"%s\", bude použito kódování Unicode "
-"nezávisle\n"
-"na výběru jazyků pro celý systém.\n"
-"\n"
-"Při výběru jazyka nejste omezeni pouze na jediný další. Můžete si jich "
-"vybrat\n"
-"více nebo dokonce nainstalovat všechny vybráním volby \"%s\".\n"
-"Podpora jazyka zahrnuje instalaci lokalizací programů, písem, kontroly\n"
-"pravopisu, atd. \n"
-"\n"
-"Změnu různých jazyků instalovaných v systému lze provést pomocí příkazu\n"
-"\"localedrake\" spuštěného jako uživatel \"root\". Spuštění pod\n"
-"běžným uživatelem způsobí změnu nastavení pouze pro daného uživatele."
-
-#: help.pm:648
-#, c-format
-msgid "Espanol"
-msgstr "Španělské"
-
-#: help.pm:651
-#, c-format
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
-"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-"Aplikace DrakX obvykle zjistí počet tlačítek na vaší myši. Pokud ne, "
-"předpokládá,\n"
-"že máte dvoutlačítkovou myš a nastaví emulaci pro třetí tlačítko myši.\n"
-"Emulace třetího tlačítka se provádí současným stiskem levého i pravého\n"
-"tlačítka. Aplikace také umí rozpoznat, zda se jedná o myš PS/2, USB\n"
-"nebo sériovou.\n"
-"\n"
-"Pokud máte třítlačítkovou myš bez kolečka, můžete si vybrat typ myši \"%s"
-"\".\n"
-"Instalační program potom nastaví emulaci tak, že se posun kolečkem simuluje\n"
-"stisknutím prostředního tlačítka a posunováním myší nahoru a dolů.\n"
-"\n"
-"Pokud chcete zadat jiný typ myši, vyberte odpovídající typ se seznamu.\n"
-"\n"
-"Můžete rovněž vybrat položku \"%s\", kterou zvolíte \"obecný\" typ myši,\n"
-"který by měl pracovat správně s téměř každou myší.\n"
-"\n"
-"Pokud vyberete jinou myš než ta, která byla detekována, zobrazí se "
-"testovací\n"
-"obrazovka. Zde otestujte jak tlačítka tak i kolečko a ověřte, zda je "
-"nastavení\n"
-"správné. Pokud myš nepracuje správně, stiskněte mezerník nebo klávesu Enter\n"
-"a vyberte jiný typ myši.\n"
-"\n"
-"Myši s kolečkem nejsou v některých případech automaticky rozpoznány. Budete\n"
-"je muset vybrat ze seznamu. Ujistěte se, že vyberete myš s odpovídajícím "
-"typem\n"
-"portu, ke kterému je připojená. Poté, co stisknete tlačítko \"%s\", \n"
-"zobrazí se obrázek s myší. Posunujte kolečkem, aby se správně aktivovalo; "
-"kolečko\n"
-"na obrazovce by se mělo pohybovat. Poté ověřte tlačítka a zda-li se myš "
-"pohybuje\n"
-"na obrazovce správně."
-
-#: help.pm:682
-#, c-format
-msgid "with Wheel emulation"
-msgstr "s emulací kolečka"
-
-#: help.pm:682
-#, c-format
-msgid "Universal | Any PS/2 & USB mice"
-msgstr "Univerzální | Libovolná PS/2 & USB myš"
-
-#: help.pm:685
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Vyberte prosím správný port. Například \"COM1\" pod MS Windows má\n"
-"v Linuxu název \"ttyS0\"."
-
-#: help.pm:689
-#, c-format
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: do not make the password too long or too complicated because "
-"you\n"
-"must be able to remember it!\n"
-"\n"
-"The password will not be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you do not know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-"Následující rozhodnutí je jedním z těch, které ovlivňují celkovou "
-"bezpečnost\n"
-"systému GNU/Linux, tj. volba hesla pro uživatele \"Root\". Root je správcem\n"
-"systému, je jediný odpovědný za provádění aktualizací, přidávání uživatelů a "
-"také\n"
-"za celkové nastavení systému. Zkráceně: \"root\" může úplně všechno!\n"
-"To je také důvodem, proč se heslo volí takové, aby se nedalo lehce uhodnout\n"
-"a instalační program DrakX zkontroluje, zda není příliš jednoduché. Jak "
-"vidíte,\n"
-"je možné heslo nezadat, ale toto velmi důrazně nedoporučujeme, a to z "
-"jednoho\n"
-"důvodu. Nemyslete si, že pokud spustíte systém GNU/Linux, že je vše bezpečné "
-"a že se nemůže nic stát.. Vzhledem k tomu, že na uživatele \"root\" se "
-"nevztahují\n"
-"běžná omezení, může nenávratně poškodit celý systém, smazat data z jiných\n"
-"oddílů na disku a operačních systémů, vymazat potřebné soubory nebo celé\n"
-"oddíly, atd. Proto je důležité, aby nebylo jednoduché se tímto uživatelem "
-"stát.\n"
-"\n"
-"Zvolené heslo by se mělo skládat ze znaků a číslic a mělo by být dlouhé\n"
-"minimálně 8 znaků. Také není dobré si ho kamkoliv poznamenávat - po\n"
-"nalezení vaší poznámky může být velmi jednoduché se do vašeho systému\n"
-"dostat.\n"
-"\n"
-"Nevolte však heslo příliš dlouhé nebo komplikované, bude nutné si jej bez\n"
-"větších potíží zapamatovat.\n"
-"\n"
-"Při zadávání nebude heslo na obrazovce zobrazeno. Proto se heslo zadává\n"
-"dvakrát pro ověření, zda nedošlo k překlepu při prvním pokusu. Tak je možné\n"
-"heslo opravit a zadat dvakrát stejné. Pokud se vám přesto podaří zadat "
-"stejný\n"
-"překlep dvakrát, budete muset toto heslo s překlepem použít při prvním\n"
-"přihlášení.\n"
-"\n"
-"Jestliže chcete použít ověřovací server, klepněte na tlačítko \"%s\".\n"
-"\n"
-"Pokud se ve vaší síti používá pro ověřování uživatelů protokol LDAP, NIS\n"
-"nebo ověřovací doména Windows PDC, vyberte odpovídající protokol pro \"%s"
-"\".\n"
-"Pokud o tom nic nevíte, zeptejte se správce vaší sítě.\n"
-"\n"
-"Pokud máte problémy se zapamatováním si hesel nebo pokud není počítač\n"
-"připojen do žádné spravované sítě a věříte všem, kteří mají k počítači "
-"přístup,\n"
-"můžete vybrat volbu \"%s\"."
-
-#: help.pm:723
-#, c-format
-msgid "authentication"
-msgstr "ověření"
-
-#: help.pm:726
-#, c-format
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can not determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" will not install any boot loader. Use this option only if "
-"you\n"
-"know what you're doing."
-msgstr ""
-"Zavaděč je malý program, který se spustí ihned po startu počítače a je\n"
-"zodpovědný za zavedení operačního systému. Tato část je obvykle plně\n"
-"automatická. Instalační program analyzuje zaváděcí sektor disku a zachová\n"
-"se podle toho, co zde nalezne:\n"
-"\n"
-" * pokud nalezne zaváděcí sektor Windows, přepíše ho sektorem pro LILO/GRUB\n"
-"tak, aby bylo možné spouštět jak systém Windows tak i Linux či jiný OS "
-"instalovaný\n"
-"na vašem počítači;\n"
-"\n"
-" * pokud nalezne zaváděcí sektor pro LILO nebo GRUB, tak jej přepíše novým.\n"
-"\n"
-"Pokud instalační program nedokáže rozhodnout, zeptá se na to, kam má "
-"zavaděč\n"
-"umístit. Obecně je nejbezpečnější místo \"%s\". Zvolením \"%s\" se "
-"neprovede\n"
-"instalace žádného zavaděče. Použijte to pouze tehdy, pokud víte, co děláte."
-
-#: help.pm:743
-#, c-format
-msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you do not like your printing\n"
-"system you may change it by running PrinterDrake from the Mandriva Linux\n"
-"Control Center and clicking on the \"%s\" button."
-msgstr ""
-"Zde si můžete vybrat tiskový systém, který budete používat. Jiné OS "
-"nabízejí\n"
-"jeden, Mandriva Linux nabízí dva. Každý z nich je vhodnější pro různé typy\n"
-"konfigurací.\n"
-"\n"
-" * \"%s\" - což znamená 'print, do not queue' a je vhodný tehdy, pokud máte\n"
-"přímo připojenou lokální tiskárnu, chcete rychle řešit zaseklý papír a "
-"nemáte\n"
-"žádné síťové tiskárny. \"%s\" zvládá pouze několik možností a tisk na něj ze "
-"sítě\n"
-"je velmi pomalý. Pokud s GNU/Linuxem teprve začínáte, pak je \"pdq\"\n"
-"doporučený tiskový systém pro vás.\n"
-"\n"
-" * \"%s\"'Common Unix Printing System' je vynikající v tisku na lokální\n"
-"tiskárny stejně jako při tisku na tiskárnu na druhé straně planety. "
-"Nastavení\n"
-"je jednoduché a může fungovat jako klient i server pro klienty z \"lpd\"\n"
-"systému, takže je kompatibilní se staršími systémy. Je možné nastavit\n"
-"spoustu voleb, ale základní nastavení je velmi jednoduché, téměř jako u \"pdq"
-"\".\n"
-"Pokud potřebujete emulovat \"lpd\" server, stačí spustit démona \"cups-lpd"
-"\".\n"
-"\"%s\" má také grafické prostředí pro tisk a nastavení tiskárny.\n"
-"\n"
-"Pokud nyní provedete volbu a později budete chtít tiskový systém změnit,\n"
-"můžete to provést pomocí nástroje PrinterDrake z ovládacího centra Mandriva "
-"tak,\n"
-"že klepnete na tlačítko \"%s\"."
-
-#: help.pm:766
-#, c-format
-msgid "pdq"
-msgstr "pdq"
-
-#: help.pm:766 printer/cups.pm:117 printer/data.pm:129
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
-
-#: help.pm:766
-#, c-format
-msgid "Expert"
-msgstr "Expert"
-
-#: help.pm:769
-#, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"Aplikace DrakX se nejdříve pokusí najít všechny pevné disky v počítači.\n"
-"Také se pokusí nalézt jeden nebo více PCI SCSI adaptérů. Pokud nějaký "
-"najde,\n"
-"automaticky nainstaluje správný ovladač.\n"
-"\n"
-"Protože automatická detekce hardware nemusí vždy nalézt všechny typy "
-"hardware,\n"
-"budete v dialogu dotázáni, zda vůbec máte nějaký SCSI adaptér. \n"
-"\n"
-"Pokud si budete muset vybrat ovladač ručně, aplikace DrakX se zeptá,\n"
-"zda pro něj chcete zadat nějaké volby Měli byste povolit aplikaci DrakX,\n"
-"ať se pokusí zjistit, které volby jsou pro danou kartu potřeba. Většinou to\n"
-"funguje dobře.\n"
-"\n"
-"Pokud to nebude fungovat, budete muset zadat další informace pro ovladač "
-"ručně."
-
-#: help.pm:787
-#, c-format
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-"\"%s\": pokud je detekována v počítači zvuková karta, je zde\n"
-"zobrazena. Pokud ale vidíte, že zobrazená karta není přesně tak, kterou\n"
-"máte v počítači, můžete klepnutím na tlačítko vybrat jinou kartu a ovladač."
-
-#: help.pm:789 help.pm:856 install_steps_interactive.pm:991
-#: install_steps_interactive.pm:1008
-#, c-format
-msgid "Sound card"
-msgstr "Zvuková karta"
-
-#: help.pm:792
-#, c-format
-msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"is not in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it is not\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandriva Linux Control Center after the installation has finished to "
-"benefit\n"
-"from full in-line help.\n"
-"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandriva Linux Control Center.\n"
-"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-"Zde jsou shromážděny různé informace, které se vztahují k tomuto počítači.\n"
-"V závislosti na tom, zda je či není přítomen daný hardware, můžete nebo\n"
-"nemusíte některé z těchto položek vidět. Každý záznam má krátký souhrn\n"
-"s aktuální konfigurací. Klepnutím na odpovídající tlačítko \"%s\" jej "
-"můžete\n"
-"změnit.\n"
-"\n"
-" * \"%s\": zkontrolujte nastavení rozložení kláves, pokud je to nutné, \n"
-"klepnutím na tlačítko lze změnit rozložení kláves, .\n"
-"\n"
-" * \"%s\": zkontrolujte výběr země. Pokud výběr nesouhlasí, klepnutím na\n"
-"tlačítko \"%s\" můžete vybrat jinou zemi. Pokud vaše země není na prvním\n"
-"seznamu, můžete si klepnutím na tlačítko \"%s\" zobrazit kompletní seznam.\n"
-"\n"
-" * \"%s\": instalační program se pokusí odhadnout časové pásmo na\n"
-"základě vámi vybraného jazyka. Pokud není odhadnuto správně, můžete jej\n"
-"pomocí tlačítka \"%s\" změnit.\n"
-"\n"
-" * \"%s\": zkontrolujte vaši myš. Pokud je to nutné, lze ji také změnit.\n"
-"\n"
-" * \"%s\": Klepnutím na tlačítko \"%s\" se spustí průvodce\n"
-"nastavením tiskárny. V odpovídající kapitole v \"Uživatelské příručce\" se\n"
-"dozvíte více o tom, jak tiskárnu nastavit. Rozhraní, které je v ní popsané, "
-"je\n"
-"podobné rozhraní použitému při této instalaci.\n"
-"\n"
-" * \"%s\": pokud byla při instalaci detekována zvuková karta, je\n"
-"zde zobrazena. Pokud uvedený ovladač není správný, lze provést výběr "
-"správného.\n"
-"\n"
-" * \"%s\": pokud byla detekována televizní karta, je zde zobrazena.\n"
-"Pokud karta nebyla automaticky detekována, klepnutím na tlačítko \"%s\"\n"
-"můžete provést ruční nastavení.\n"
-"\n"
-" * \"%s\": pokud byla detekována ISDN karta, je zde zobrazena.\n"
-"Klepnutím na tlačítko \"%s\" můžete měnit parametry pro tuto kartu.\n"
-"\n"
-" * \"%s\": instalační program jako výchozí rozlišení zvolí\n"
-"rozlišení \"800×600\" nebo \"1024×768\". Pokud vám to nevyhovuje, je možné\n"
-"to pomocí tlačítka \"%s\" změnit.\n"
-"\n"
-" * \"%s\": pokud chcete nyní nastavit připojení k Internetu nebo k lokální\n"
-"síti, klepnutím na tlačítko se spustí průvodce. Plnou dokumentaci naleznete\n"
-"v tištěné příručce, případně můžete po instalaci využít ovládací centrum\n"
-"Mandriva Linux, kde rovněž naleznete kompletní nápovědu.\n"
-"\n"
-" * \"%s\": umožňuje nastavit adresu HTTP a FTP proxy, což je užitečné,\n"
-"pokud se počítač nachází za firewallem.\n"
-"\n"
-" * \"%s\": tato položka dovoluje předefinovat úroveň zabezpečení, která "
-"byla\n"
-"nastavena v předchozím kroku\n"
-"\n"
-" * \"%s\": pokud budete počítač připojovat do Internetu, je doporučeno "
-"spustit\n"
-"ochranu před napadením aktivací firewallu. Více o nastavení firewallu se\n"
-"dočtete v odpovídající kapitole příručky \"Začínáme\".\n"
-"\n"
-" * \"%s\": pokud chcete změnit nastavení zavaděče, můžete to provést\n"
-"klepnutím na toto tlačítko. Změny by měly provádět pouze zkušení uživatelé.\n"
-"Více informací lze nalézt v tištěné dokumentaci nebo online nápověde\n"
-"v ovládacím centru Mandriva Linux.\n"
-"\n"
-" * \"%s\": zde si můžete konkrétně určit, které služby budou na vašem "
-"počítači\n"
-"spuštěny. Pokud bude tento počítač používán jako server, je vhodné provést\n"
-"kontrolu toho, co je nastaveno."
-
-#: help.pm:856 install_steps_interactive.pm:855
-#: install_steps_interactive.pm:950 standalone/drakclock:100
-#: standalone/finish-install:56 standalone/finish-install:57
-#, c-format
-msgid "Timezone"
-msgstr "Časová zóna"
-
-#: help.pm:856 install_steps_interactive.pm:1024
-#, c-format
-msgid "TV card"
-msgstr "TV karta"
-
-#: help.pm:856
-#, c-format
-msgid "ISDN card"
-msgstr "ISDN karta"
-
-#: help.pm:856
-#, c-format
-msgid "Graphical Interface"
-msgstr "Grafické rozhraní"
-
-#: help.pm:856 install_any.pm:1733 install_steps_interactive.pm:1042
-#: standalone/drakbackup:2051
-#, c-format
-msgid "Network"
-msgstr "Síť"
-
-#: help.pm:856 install_steps_interactive.pm:1054
-#, c-format
-msgid "Proxies"
-msgstr "Proxy"
-
-#: help.pm:856 install_steps_interactive.pm:1065
-#, c-format
-msgid "Security Level"
-msgstr "Úroveň zabezpečení"
-
-#: help.pm:856 install_steps_interactive.pm:1079 network/drakfirewall.pm:189
-#, c-format
-msgid "Firewall"
-msgstr "Firewall"
-
-#: help.pm:856 install_steps_interactive.pm:1095
-#, c-format
-msgid "Bootloader"
-msgstr "Zaváděcí program"
-
-#: help.pm:856 install_steps_interactive.pm:1108 services.pm:114
-#: services.pm:157 services.pm:193
-#, c-format
-msgid "Services"
-msgstr "Služby"
-
-#: help.pm:859
-#, c-format
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Vyberte disk, který chcete smazat pro instalaci oddílu Mandriva Linux.\n"
-"Pamatujte na to, že všechna data budou ztracena a nelze je již obnovit!"
-
-#: help.pm:864
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-"Klepněte na \"%s\", pokud chcete smazat všechna data a oddíly na tomto\n"
-"pevném disku. Buďte opatrní, po odklepnutí tlačítka \"%s\" nelze obnovit "
-"žádná dřívější data ani oddíly a to i pro Windows.\n"
-"\n"
-"Klepnutím na \"%s\" zrušíte tuto operaci bez ztráty dat a oddílů na disku."
-
-#: help.pm:870
-#, c-format
-msgid "Next ->"
-msgstr "Další ->"
-
-#: help.pm:870
-#, c-format
-msgid "<- Previous"
-msgstr "<- Předchozí"
-
-#: install2.pm:115
-#, c-format
-msgid ""
-"Can not access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"Nelze načíst moduly jádra odpovídající instalovanému jádru (chybí soubor\n"
-"%s), což obecně znamená, že spouštěcí disketa nemá jádro stejné jako má "
-"instalační médium (vytvořte prosím novou spouštěcí disketu)"
-
-#: install2.pm:167
-#, c-format
-msgid "You must also format %s"
-msgstr "Musíte také naformátovat %s"
-
-#: install_any.pm:406
-#, c-format
-msgid "Do you have further supplementary media?"
-msgstr "Máte ještě nějaká další doplmující édia?"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:409
-#, c-format
-msgid ""
-"The following media have been found and will be used during install: %s.\n"
-"\n"
-"\n"
-"Do you have a supplementary installation medium to configure?"
-msgstr ""
-
-#: install_any.pm:422 printer/printerdrake.pm:3211
-#: printer/printerdrake.pm:3218 standalone/scannerdrake:182
-#: standalone/scannerdrake:190 standalone/scannerdrake:241
-#: standalone/scannerdrake:248
-#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (HTTP)"
-msgstr "Síť (HTTP)"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (FTP)"
-msgstr "Síť (FTP)"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (NFS)"
-msgstr "Síť (NFS)"
-
-#: install_any.pm:452
-#, c-format
-msgid "Insert the CD 1 again"
-msgstr "Vložte znovu CD 1"
-
-#: install_any.pm:478 network/netconnect.pm:866 standalone/drakbackup:114
-#, c-format
-msgid "No device found"
-msgstr "Žádné zařízení nenalezeno"
-
-#: install_any.pm:483
-#, c-format
-msgid "Insert the CD"
-msgstr "Vložte CD"
-
-#: install_any.pm:488
-#, c-format
-msgid "Unable to mount CD-ROM"
-msgstr "Nelze připojit CD-ROM"
-
-#: install_any.pm:521 install_any.pm:542
-#, c-format
-msgid "URL of the mirror?"
-msgstr "URL zrcadla?"
-
-#: install_any.pm:526
-#, c-format
-msgid "NFS setup"
-msgstr "Nastavení NFS"
-
-#: install_any.pm:526
-#, c-format
-msgid "Please enter the hostname and directory of your NFS media"
-msgstr "Zadejte prosím název počítače a adresář vašeho zařízení NFS"
-
-#: install_any.pm:527
-#, c-format
-msgid "Hostname of the NFS mount ?"
-msgstr "Název počítače připojení NFS?"
-
-#: install_any.pm:527 standalone/draknfs:288
-#, c-format
-msgid "Directory"
-msgstr "Adresář"
-
-#: install_any.pm:580
-#, c-format
-msgid ""
-"Can't find a package list file on this mirror. Make sure the location is "
-"correct."
-msgstr "Nelze nalézt soubor hdlist na tomto zrcadle"
-
-#: install_any.pm:657
-#, c-format
-msgid "Removing packages prior to upgrade..."
-msgstr "Odstraňují se balíčky před aktualizací..."
-
-#: install_any.pm:699
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Prohledávám již instalované balíčky..."
-
-#: install_any.pm:703
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Vyhledávám balíčky pro aktualizaci..."
-
-#: install_any.pm:781
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done."
-msgstr ""
-"Vyměňte prosím CD!\n"
-"Prosím vložte CD označené \"%s\" do mechaniky a stiskněte Ok."
-
-#: install_any.pm:793
-#, c-format
-msgid "Copying in progress"
-msgstr "Probíhá kopírování"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:935
-#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They do not have any known security\n"
-"issues, but some new ones could be found. In that case, you must make sure\n"
-"to upgrade as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"Vybrali jste pro instalaci následující server(y): %s\n"
-"\n"
-"\n"
-"Tyto servery budou standardně aktivovány. Přestože není známý žádný\n"
-"bezpečnostní problém, mohou se přesto vyskytnout. Je proto důležité "
-"aktualizovat\n"
-"vždy, když je to potřeba.\n"
-"\n"
-"\n"
-"Chcete opravdu nainstalovat tyto servery?\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:958
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-"Následující balíčky budou odebrány pro umožnění aktualizace systému: %s\n"
-"\n"
-"\n"
-"Opravdu chcete odebrat tyto balíčky?\n"
-
-#: install_any.pm:1394 partition_table.pm:597
-#, c-format
-msgid "Error reading file %s"
-msgstr "Chyba při čtení souboru %s"
-
-#: install_any.pm:1628
-#, c-format
-msgid "The following disk(s) were renamed:"
-msgstr "Následující disk(y) byly přejmenovány:"
-
-#: install_any.pm:1630
-#, c-format
-msgid "%s (previously named as %s)"
-msgstr "%s (předchozí název %s)"
-
-#: install_any.pm:1670
-#, 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 ""
-"Stala se chyba - nebylo nalezeno žádné zařízení na kterém by se daly "
-"vytvořit nové souborové systémy. Zkontrolujte prosím hardware"
-
-#: install_any.pm:1714
-#, c-format
-msgid "HTTP"
-msgstr "HTTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "FTP"
-msgstr "FTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "NFS"
-msgstr "NFS"
-
-#: install_any.pm:1737
-#, c-format
-msgid "Please choose a media"
-msgstr "Prosím vyberte zdroj"
-
-#: install_any.pm:1753
-#, c-format
-msgid "File already exists. Overwrite it?"
-msgstr "Soubor již existuje. Přepsat?"
-
-#: install_any.pm:1757
-#, c-format
-msgid "Permission denied"
-msgstr "Přístup odepřen"
-
-#: install_any.pm:1806
-#, c-format
-msgid "Bad NFS name"
-msgstr "Chybný název NFS"
-
-#: install_any.pm:1827
-#, c-format
-msgid "Bad media %s"
-msgstr "Chybný zdroj %s"
-
-#: install_any.pm:1877
-#, c-format
-msgid "Can not make screenshots before partitioning"
-msgstr "Nelze provést sejmutí obrazovky před rozdělením disků"
-
-#: install_any.pm:1884
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Sejmuté obrazovky budou dostupné po instalaci v adresáři %s"
-
-#: install_gtk.pm:136
-#, c-format
-msgid "System installation"
-msgstr "Instalace systému"
-
-#: install_gtk.pm:139
-#, c-format
-msgid "System configuration"
-msgstr "Konfigurace systému"
-
-#: install_interactive.pm:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Některé části vašeho hardware potřebují pro svoji práci 'speciální' "
-"ovladače.\n"
-"Další informace můžete nalézt na: %s"
-
-#: install_interactive.pm:63
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Musíte mít kořenový oddíl.\n"
-"K jeho vytvoření musíte zvolit jeden existující oddíl\n"
-"(nebo vytvořit nový), zvolit 'Přípojný bod'\n"
-"a nastavit ho na '/'"
-
-#: install_interactive.pm:68
-#, c-format
-msgid ""
-"You do not have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Nemáte odkládací oddíl\n"
-"\n"
-"Chcete přesto pokračovat?"
-
-#: install_interactive.pm:71 install_steps.pm:215
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Musíte mít FAT oddíl připojený na /boot/efi"
-
-#: install_interactive.pm:98
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Není dostatek místa pro vytvoření nového diskového oddílu"
-
-#: install_interactive.pm:106
-#, c-format
-msgid "Use existing partitions"
-msgstr "Použít existující oddíl"
-
-#: install_interactive.pm:108
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "Není zde žádný existující oddíl k použití"
-
-#: install_interactive.pm:115
-#, c-format
-msgid "Use the Microsoft Windows® partition for loopback"
-msgstr "Použít Microsoft Windows® oddíl jako loopback"
-
-#: install_interactive.pm:118
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Který diskový oddíl chcete použít pro Linux4Win?"
-
-#: install_interactive.pm:120
-#, c-format
-msgid "Choose the sizes"
-msgstr "Zvolte velikosti"
-
-#: install_interactive.pm:121
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Velikost kořenového oddílu v MB:"
-
-#: install_interactive.pm:122
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Velikost odkládacího oddílu v MB: "
-
-#: install_interactive.pm:131
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"Nejsou zde žádné FAT oddíly, které by bylo použít pro loopback (nebo není "
-"dostatek místa)"
-
-#: install_interactive.pm:140
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Na kterém oddílu chcete měnit velikost?"
-
-#: install_interactive.pm:154
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occurred: %s"
-msgstr ""
-"Změnu velikost FAT není možné provést, \n"
-"vyskytla se následující chyba: %s"
-
-#: install_interactive.pm:157
-#, c-format
-msgid "Computing the size of the Microsoft Windows® partition"
-msgstr "Počítám volné místo na Microsoft Windows® oddílu"
-
-#: install_interactive.pm:164
-#, c-format
-msgid ""
-"Your Microsoft Windows® partition is too fragmented. Please reboot your "
-"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
-"the Mandriva Linux installation."
-msgstr ""
-"Váš diskový oddíl s Microsoft Windows® je příliš fragmentován. Restartujte "
-"počítač do systému Microsoft Windows®, použijte program 'defrag' a potom "
-"spusťte opět instalaci."
-
-#: install_interactive.pm:167
-#, fuzzy, c-format
-msgid ""
-"WARNING!\n"
-"\n"
-"\n"
-"Your Microsoft Windows® partition will be now resized.\n"
-"\n"
-"\n"
-"Be careful: this operation is dangerous. If you have not already done so, "
-"you first need to exit the installation, run \"chkdsk c:\" from a Command "
-"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
-"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
-"optionally run defrag, then restart the installation. You should also backup "
-"your data.\n"
-"\n"
-"\n"
-"When sure, press %s."
-msgstr ""
-"VAROVÁNÍ!\n"
-"\n"
-"\n"
-"DrakX nyní musí zmenšit oddíl s Windows.\n"
-"\n"
-"\n"
-"Buďte opatrní: tato operace je nebezpečná. Pokud jste tak již neučinili, "
-"měli byste nejprve ukončit instalaci, spustit \"chkdsk c:\" z příkazové "
-"řádky (spuštění programu \"scandisk\" nestačí, použijte příkaz \"chkdsk\"!), "
-"popřípadě i defrag a potom instalaci spustit znovu. Také byste si měli data "
-"zálohovat.\n"
-"\n"
-"\n"
-"Až si budete jistí, že chcete pokračovat, stiskněte %s."
-
-#: install_interactive.pm:179
-#, c-format
-msgid "Which size do you want to keep for Microsoft Windows® on"
-msgstr "Jakou velikost oddílu chcete nechat pro Microsoft Windows® na"
-
-#: install_interactive.pm:180
-#, c-format
-msgid "partition %s"
-msgstr "diskovém oddílu %s"
-
-#: install_interactive.pm:189
-#, c-format
-msgid "Resizing Microsoft Windows® partition"
-msgstr "Počítám hranice souborového systému s Microsoft Windows®"
-
-#: install_interactive.pm:194
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Změna FAT oddílu neuspěla: %s"
-
-#: install_interactive.pm:209
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr ""
-"Nejsou zde žádné FAT oddíly, které by bylo možné změnit (nebo není dostatek "
-"místa)"
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Remove Microsoft Windows®"
-msgstr "Odstranit Microsoft Windows®"
-
-#: install_interactive.pm:214
-#, fuzzy, c-format
-msgid "Erase and use entire disk"
-msgstr "Smazat celý disk"
-
-#: install_interactive.pm:216
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Máte více než jeden pevný disk, na který chcete instalovat Linux?"
-
-#: install_interactive.pm:222
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "VŠECHNY diskové oddíly a data na disku %s budou zrušena"
-
-#: install_interactive.pm:237
-#, c-format
-msgid "Use fdisk"
-msgstr "Použít fdisk"
-
-#: install_interactive.pm:240
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, do not forget to save using `w'"
-msgstr ""
-"Nyní můžete rozdělit váš pevný disk %s.\n"
-"Až skončíte, nezapomeňte uložit změny pomocí 'w'"
-
-#: install_interactive.pm:276
-#, c-format
-msgid "I can not find any room for installing"
-msgstr "Nemůžu najít žádné volné místo pro instalaci"
-
-#: install_interactive.pm:280
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Průvodce DrakX našel následující řešení rozdělení disku:"
-
-#: install_interactive.pm:288
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Vytváření diskových oddílů selhalo: %s"
-
-#: install_interactive.pm:295
-#, c-format
-msgid "Bringing up the network"
-msgstr "Startuji síť"
-
-#: install_interactive.pm:300
-#, c-format
-msgid "Bringing down the network"
-msgstr "Zastavuji síť"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:10
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandriva "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandriva Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. This document is a license agreement "
-"between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you "
-"explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this "
-"License. \n"
-"If you disagree with any portion of the License, you are not allowed to "
-"install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner "
-"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate "
-"your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all "
-"copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Limited Warranty\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
-"be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without "
-"limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties "
-"resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or "
-"inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or "
-"occurrence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
-"COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
-"no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever "
-"(including without \n"
-"limitation damages for loss of business, interruption of business, financial "
-"loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential "
-"loss) arising out \n"
-"of the possession and use of software components or arising out of "
-"downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some "
-"countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong "
-"cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. The GPL License and Related Licenses\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. "
-"Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the "
-"documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. Intellectual Property Rights\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
-"as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
-"Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Governing Laws \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-msgstr ""
-"Úvod\n"
-"\n"
-"Operační systém a různé části dostupné v distribuci Mandriva Linux jsou "
-"nazývány \"Softwarové produkty\" (\"Software Products\"). Softwarové "
-"produkty zahrnují, ale nejsou omezeny, na programy, metody, pravidla a "
-"dokumentaci, vztahující se k operačnímu systému a dalším komponentám "
-"distribuce Mandriva Linux.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. This document is a license agreement "
-"between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you "
-"explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this "
-"License. \n"
-"If you disagree with any portion of the License, you are not allowed to "
-"install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner "
-"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate "
-"your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all "
-"copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Limited Warranty\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
-"be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without "
-"limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties "
-"resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or "
-"inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or "
-"occurrence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
-"COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
-"no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever "
-"(including without \n"
-"limitation damages for loss of business, interruption of business, financial "
-"loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential "
-"loss) arising out \n"
-"of the possession and use of software components or arising out of "
-"downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some "
-"countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong "
-"cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. The GPL License and Related Licenses\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. "
-"Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the "
-"documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. Intellectual Property Rights\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
-"as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
-"Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Governing Laws \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-
-#: install_messages.pm:90
-#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-"Varování: Svobodný Software nemusí být vždy nezávislý na patentech\n"
-"a některý Svobodný Software může být ve vaší zemi chráněn patentem.\n"
-"Například zahrnuté dekodéry pro MP3 mohou vyžadovat licenci pro další\n"
-"použití (více detailů najdete na http://www.mp3licensing.com). Pokud si\n"
-"nejste jisti, zda se na vás nevztahuje některý patent, prostudujte si\n"
-"vaše místně příslušné právní normy."
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:98
-#, c-format
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Varování\n"
-"\n"
-"Přečtěte si prosím pozorně následující termíny. Pokud s nimi nesouhlasíte,\n"
-"nejste oprávněn pokračovat v instalaci následujícím CD. Stiskněte\n"
-"\"Odmítnout\" pro pokračování v instalaci bez tohoto média.\n"
-"\n"
-"\n"
-"Některé programy na dalším CD médiu nejsou šířeny podle licence GPL či\n"
-"podobné. Každý z těchto programů je šířen podle vlastní licence a podmínek.\n"
-"Čtete pozorně tyto licence a podmínky před tím, než začnete daný software\n"
-"používat nebo šířit.\n"
-"Některé licence zakazují přenášení, vytváření duplikátů (mimo záložní "
-"kopii),\n"
-"další šíření, dekompilaci, reverzní engineering nebo modifikaci komponent.\n"
-"Každé porušení podmínek okamžitě přerušuje vaše práva podle dané licence.\n"
-"I když dané licence dávají nějaká práva, není dovoleno instalovat daný\n"
-"program na více systémů, přizpůsobovat ho provozu na síti. V případě\n"
-"pochybností kontaktujte distributora nebo výrobce daného programu.\n"
-"Přenechání práv třetím osobám nebo kopírování části komponent či\n"
-"dokumentace je také zakázáno.\n"
-"\n"
-"\n"
-"Všechna práva na programy na dalším CD médiu patří jejím právoplatným\n"
-"vlastníkům podle autorského zákona.\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:131
-#, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press Enter to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandriva "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandriva Linux User's Guide."
-msgstr ""
-"Gratulujeme vám, instalace je dokončena.\n"
-"Vyjměte zaváděcí média a stiskněte Return pro restart.\n"
-"\n"
-"\n"
-"Informace o opravách pro tuto verzi systému Mandriva Linux lze\n"
-"nalézt na stránce Errata dostupné na:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Informace o nastavení systému po instalaci jsou dostupné\n"
-"v příslušné kapitole oficiální uživatelské příručky pro Mandriva Linux."
-
-#: install_steps.pm:250
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Zdvojený přípojný bod %s"
-
-#: install_steps.pm:482
-#, c-format
-msgid ""
-"Some important packages did not get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
-"\"\n"
-msgstr ""
-"Některé důležité balíčky nebyly správně nainstalované.\n"
-"Je možné, že je poškozen CD disk nebo CD-ROM mechanika.\n"
-"Zkontrolujete to použitím příkazu \"rpm -qpl media/main/*.rpm\"\n"
-
-#: install_steps_auto_install.pm:68 install_steps_stdio.pm:27
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Začínám '%s'\n"
-
-#: install_steps_gtk.pm:181
-#, c-format
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandriva Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Váš systém má málo systémových prostředků. Při instalaci Mandriva Linuxu se\n"
-"můžete setkat s různými problémy. Pokud se tak stane, zkuste textovou\n"
-"verzi instalačního programu. Ta se spouští tak, že při startu\n"
-"z CD mechaniky stisknete 'F1' a poté napíšete 'text'."
-
-#: install_steps_gtk.pm:211 install_steps_interactive.pm:605
-#, c-format
-msgid "Package Group Selection"
-msgstr "Výběr skupiny balíčků"
-
-#: install_steps_gtk.pm:254 install_steps_interactive.pm:548
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Celková velikost: %d / %d MB"
-
-#: install_steps_gtk.pm:299
-#, c-format
-msgid "Bad package"
-msgstr "Špatný balíček"
-
-#: install_steps_gtk.pm:301
-#, c-format
-msgid "Version: "
-msgstr "Verze: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "Size: "
-msgstr "Velikost: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "%d KB\n"
-msgstr "%d KB\n"
-
-#: install_steps_gtk.pm:303
-#, c-format
-msgid "Importance: "
-msgstr "Důležitost: "
-
-#: install_steps_gtk.pm:336
-#, c-format
-msgid "You can not select/unselect this package"
-msgstr "Nemůžete vybrat/nevybrat tento balíček"
-
-#: install_steps_gtk.pm:340 network/thirdparty.pm:331
-#, c-format
-msgid "due to missing %s"
-msgstr "protože chybí %s"
-
-#: install_steps_gtk.pm:341
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "díky nesplněné závislosti %s"
-
-#: install_steps_gtk.pm:342
-#, c-format
-msgid "trying to promote %s"
-msgstr "pokus o postoupení %s"
-
-#: install_steps_gtk.pm:343
-#, c-format
-msgid "in order to keep %s"
-msgstr "aby bylo zachováno %s"
-
-#: install_steps_gtk.pm:348
-#, c-format
-msgid ""
-"You can not select this package as there is not enough space left to install "
-"it"
-msgstr ""
-"Nemůžete vybrat tento balíček, protože pro jeho instalaci není dost místa"
-
-#: install_steps_gtk.pm:351
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Budou instalovány tyto balíčky"
-
-#: install_steps_gtk.pm:352
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Budou odebrány tyto balíčky"
-
-#: install_steps_gtk.pm:376
-#, c-format
-msgid "This is a mandatory package, it can not be unselected"
-msgstr "Toto je nepostradatelný balíček, nemůže být odstraněn"
-
-#: install_steps_gtk.pm:378
-#, c-format
-msgid "You can not unselect this package. It is already installed"
-msgstr "Nemůžete od-označit tento balíček, protože je už nainstalovaný"
-
-#: install_steps_gtk.pm:381
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Tento balíček musí být aktualizován\n"
-"Jste si jisti, že ho nechcete zvolit?"
-
-#: install_steps_gtk.pm:384
-#, c-format
-msgid "You can not unselect this package. It must be upgraded"
-msgstr "Tento balíček musí být aktualizován, nemůžete ho nezvolit"
-
-#: install_steps_gtk.pm:389
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Ukázat automaticky vybrané balíčky"
-
-#: install_steps_gtk.pm:394
-#, c-format
-msgid "Load/Save selection"
-msgstr "Načíst/Uložit výběr"
-
-#: install_steps_gtk.pm:395
-#, c-format
-msgid "Updating package selection"
-msgstr "Aktualizuji výběr balíčků"
-
-#: install_steps_gtk.pm:400
-#, c-format
-msgid "Minimal install"
-msgstr "Minimální instalace"
-
-#: install_steps_gtk.pm:414 install_steps_interactive.pm:467
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Vyberte si balíčky, které chcete nainstalovat"
-
-#: install_steps_gtk.pm:431 install_steps_interactive.pm:691
-#, c-format
-msgid "Installing"
-msgstr "Instaluji"
-
-#: install_steps_gtk.pm:457
-#, c-format
-msgid "No details"
-msgstr "Bez detailů"
-
-#: install_steps_gtk.pm:472
-#, c-format
-msgid "Time remaining "
-msgstr "Zbývající čas "
-
-#: install_steps_gtk.pm:473
-#, c-format
-msgid "Estimating"
-msgstr "Odhaduji"
-
-#: install_steps_gtk.pm:500
-#, c-format
-msgid "%d packages"
-msgstr "%d balíčků(y)"
-
-#: install_steps_gtk.pm:543 install_steps_interactive.pm:719
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Vyměňte prosím CD!\n"
-"Prosím vložte CD označené \"%s\" do mechaniky a stiskněte Ok.\n"
-"Pokud toto CD nemáte, stiskněte Zrušit a toto CD nebude nainstalováno."
-
-#: install_steps_gtk.pm:556 install_steps_interactive.pm:730
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Stala se chyba při řazení balíčků:"
-
-#: install_steps_gtk.pm:558 install_steps_interactive.pm:734
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Stala se chyba při instalaci balíčků:"
-
-#: install_steps_gtk.pm:560 install_steps_interactive.pm:730
-#: install_steps_interactive.pm:734
-#, c-format
-msgid "Go on anyway?"
-msgstr "Přesto pokračovat?"
-
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:910 steps.pm:30
-#, c-format
-msgid "Summary"
-msgstr "Souhrn"
-
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:906
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "not configured"
-msgstr "nenastaveno"
-
-#: install_steps_gtk.pm:668
-#, c-format
-msgid ""
-"The following installation media have been found.\n"
-"If you want to skip some of them, you can unselect them now."
-msgstr ""
-"Byla nalezena následující instalační média.\n"
-"Pokud chcete některé z nich vynechat, můžete je nyní odznačit."
-
-#: install_steps_gtk.pm:677
-#, c-format
-msgid ""
-"You have the option to copy the contents of the CDs onto the hard drive "
-"before installation.\n"
-"It will then continue from the hard drive and the packages will remain "
-"available once the system is fully installed."
-msgstr ""
-"Máte možnost před instalací zkopírovat obsah CD na pevný disk.\n"
-"Instalace pak bude pokračovat z pevného disku a balíčky zůstanou dostupné i "
-"poté, co je systém plně nainstalován."
-
-#: install_steps_gtk.pm:679
-#, c-format
-msgid "Copy whole CDs"
-msgstr "Kopírovat celá CD"
-
-#: install_steps_interactive.pm:95
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Vyberte si rozložení vaší klávesnice."
-
-#: install_steps_interactive.pm:97
-#, c-format
-msgid "Here is the full list of available keyboards"
-msgstr "Zde je úplný seznam dostupných klávesnic"
-
-#: install_steps_interactive.pm:127
-#, c-format
-msgid "Install/Upgrade"
-msgstr "Instalace/Aktualizace"
-
-#: install_steps_interactive.pm:128
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Jedná se o instalaci nebo aktualizaci?"
-
-#: install_steps_interactive.pm:134
-#, c-format
-msgid "Upgrade %s"
-msgstr "Aktualizace %s"
-
-#: install_steps_interactive.pm:147
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Šifrovací klíč pro %s"
-
-#: install_steps_interactive.pm:170
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Vyberte si typ vaší myši."
-
-#: install_steps_interactive.pm:171
-#, c-format
-msgid "Mouse choice"
-msgstr "Výběr myši"
-
-#: install_steps_interactive.pm:180 standalone/mousedrake:46
-#, c-format
-msgid "Mouse Port"
-msgstr "Připojení myši"
-
-#: install_steps_interactive.pm:181 standalone/mousedrake:47
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Ke kterému sériovému portu je připojena vaše myš?"
-
-#: install_steps_interactive.pm:191
-#, c-format
-msgid "Buttons emulation"
-msgstr "Emulace tlačítek"
-
-#: install_steps_interactive.pm:193
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Emulace 2 tlačítka"
-
-#: install_steps_interactive.pm:194
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Emulace 3 tlačítka"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Nastavuji PCMCIA karty..."
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "Configuring IDE"
-msgstr "Nastavuji IDE"
-
-#: install_steps_interactive.pm:242
-#, c-format
-msgid "No partition available"
-msgstr "Nejsou dostupné žádné diskové oddíly"
-
-#: install_steps_interactive.pm:245
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Hledám oddíly, které lze připojit"
-
-#: install_steps_interactive.pm:252
-#, c-format
-msgid "Choose the mount points"
-msgstr "Zvolte si přípojné(mount) body"
-
-#: install_steps_interactive.pm:300
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Pro bootstrap není potřebné místo o velikosti 1MB! Instalace může pokračovat "
-"ale pro spuštění systému musíte vytvořit bootstrap oddíl pomocí DiskDrake"
-
-#: install_steps_interactive.pm:305
-#, c-format
-msgid ""
-"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
-"to boot your system, you'll need to create the bootstrap partition in "
-"DiskDrake"
-msgstr ""
-"Je nutné vytvořit zavedení PPC PReP Boot! Instalace může pokračovat, ale pro "
-"zavedení systému musíte vytvořit zaváděcí oddíl pomocí DiskDrake"
-
-#: install_steps_interactive.pm:341
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Zvolte diskové oddíly které chcete naformátovat"
-
-#: install_steps_interactive.pm:343
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Otestovat na vadné stopy?"
-
-#: install_steps_interactive.pm:371
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
-msgstr ""
-"Selhala kontrola souborového systému %s. Chcete opravit chyby? (pozor, může "
-"dojít ke ztrátě dat)"
-
-#: install_steps_interactive.pm:374
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Není dostatek odkládacího prostoru k instalaci, prosím přidejte nějaký"
-
-#: install_steps_interactive.pm:383
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Hledám dostupné balíčky a znovu sestavuji databázi balíčků..."
-
-#: install_steps_interactive.pm:384 install_steps_interactive.pm:436
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Hledám dostupné balíčky..."
-
-#: install_steps_interactive.pm:405 install_steps_interactive.pm:810
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Zvolte si zrcadlo (mirror) pro stahování balíčků"
-
-#: install_steps_interactive.pm:445
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Na vašem systému není dostatek místa pro instalaci nebo aktualizaci (%d > %d)"
-
-#: install_steps_interactive.pm:479
-#, c-format
-msgid ""
-"Please choose load or save package selection.\n"
-"The format is the same as auto_install generated files."
-msgstr ""
-"Vyberte si, zda chcete uložit nebo načíst výběr balíčků.\n"
-"Formát je stejný jako u souborů generovaných pomocí auto_install."
-
-#: install_steps_interactive.pm:481
-#, c-format
-msgid "Load"
-msgstr "Zátěž"
-
-#: install_steps_interactive.pm:481 standalone/drakbackup:4083
-#: standalone/drakbackup:4153 standalone/logdrake:175
-#, c-format
-msgid "Save"
-msgstr "Uložit"
-
-#: install_steps_interactive.pm:489
-#, c-format
-msgid "Bad file"
-msgstr "Chybný soubor"
-
-#: install_steps_interactive.pm:562
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Velikost vybraných balíčků je větší než místo na disku"
-
-#: install_steps_interactive.pm:577
-#, c-format
-msgid "Type of install"
-msgstr "Typ instalace"
-
-#: install_steps_interactive.pm:578
-#, c-format
-msgid ""
-"You have not selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Nevybrali jste žádnou skupinu balíčků\n"
-"Vyberte si prosím alespoň minimální instalaci"
-
-#: install_steps_interactive.pm:582
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Základní dokumentace (doporučeno!)"
-
-#: install_steps_interactive.pm:583
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Opravdu minimální instalace (speciálně bez urpmi)"
-
-#: install_steps_interactive.pm:622 standalone/drakxtv:52
-#, c-format
-msgid "All"
-msgstr "Všechno"
-
-#: install_steps_interactive.pm:661
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"Pokud máte všechna CD vypsaná níže, klepněte na Ok.\n"
-"Pokud nemáte žádné z nich, klepněte na Zrušit.\n"
-"Pokud vám chybí pouze některé z nich, odznačte je a zvolte Ok."
-
-#: install_steps_interactive.pm:666
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM označené \"%s\""
-
-#: install_steps_interactive.pm:691
-#, c-format
-msgid "Preparing installation"
-msgstr "Připravuji instalaci"
-
-#: install_steps_interactive.pm:699
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Instaluji balíček %s\n"
-"%d%%"
-
-#: install_steps_interactive.pm:748
-#, c-format
-msgid "Post-install configuration"
-msgstr "Probíhá nastavování po instalaci"
-
-#: install_steps_interactive.pm:755
-#, c-format
-msgid "Please ensure the Update Modules media is in drive %s"
-msgstr ""
-"Ujistěte se prosím, že se médium s aktualizovanými moduly nachází v jednotce "
-"%s"
-
-#: install_steps_interactive.pm:783
-#, c-format
-msgid "Updates"
-msgstr "Aktualizace"
-
-#: install_steps_interactive.pm:784
-#, c-format
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates?"
-msgstr ""
-"Nyní máte možnost stáhnout aktualizované balíčky. Tyto balíčky byly\n"
-"uvolněny až po vydání distribuce. Mohou obsahovat bezpečnostní\n"
-"aktualizace nebo opravy chyb.\n"
-"\n"
-"Chcete-li získat tyto balíčky, musíte mít k dispozici funkční připojení\n"
-"k Internetu.\n"
-"\n"
-"Chcete nainstalovat aktualizace?"
-
-#: install_steps_interactive.pm:805
-#, c-format
-msgid ""
-"Contacting Mandriva Linux web site to get the list of available mirrors..."
-msgstr ""
-"Kontaktuji web Mandriva Linux pro získání seznamu dostupných zrcadel..."
-
-#: install_steps_interactive.pm:824
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Stahuji ze zrcadla(mirror) seznam dostupných balíčků"
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Nelze kontaktovat zrcadlo %s"
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Chcete to zkusit znovu?"
-
-#: install_steps_interactive.pm:855 standalone/drakclock:45
-#: standalone/finish-install:56
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Jaké je vaše časové pásmo?"
-
-#: install_steps_interactive.pm:860
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automatická synchronizace času (pomocí NTP)"
-
-#: install_steps_interactive.pm:868
-#, c-format
-msgid "NTP Server"
-msgstr "NTP Server"
-
-#: install_steps_interactive.pm:923 install_steps_interactive.pm:931
-#: install_steps_interactive.pm:949 install_steps_interactive.pm:956
-#: install_steps_interactive.pm:1107 services.pm:133
-#: standalone/drakbackup:1596
-#, c-format
-msgid "System"
-msgstr "Systém"
-
-#: install_steps_interactive.pm:963 install_steps_interactive.pm:990
-#: install_steps_interactive.pm:1007 install_steps_interactive.pm:1023
-#: install_steps_interactive.pm:1034
-#, c-format
-msgid "Hardware"
-msgstr "Hardware"
-
-#: install_steps_interactive.pm:969 install_steps_interactive.pm:978
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Vzdálený CUPS server"
-
-#: install_steps_interactive.pm:969
-#, c-format
-msgid "No printer"
-msgstr "Bez tiskárny"
-
-#: install_steps_interactive.pm:1011
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Máte nějakou zvukovou kartu na ISA sběrnici?"
-
-#: install_steps_interactive.pm:1013
-#, c-format
-msgid ""
-"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
-"card"
-msgstr ""
-"Pro nastavení zvukové karty spusťte po instalaci \"alsaconf\" nebo "
-"\"sndconfig\""
-
-#: install_steps_interactive.pm:1015
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"Nebyla nalezena zvuková karta. Zkuste spustit po instalaci \"harddrake\"."
-
-#: install_steps_interactive.pm:1035
-#, c-format
-msgid "Graphical interface"
-msgstr "Grafické rozhraní"
-
-#: install_steps_interactive.pm:1041 install_steps_interactive.pm:1053
-#, c-format
-msgid "Network & Internet"
-msgstr "Síť & Internet"
-
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "configured"
-msgstr "nastaveno"
-
-#: install_steps_interactive.pm:1064 install_steps_interactive.pm:1078
-#: security/level.pm:55 steps.pm:20
-#, c-format
-msgid "Security"
-msgstr "Bezpečnost"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "activated"
-msgstr "aktivováno"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "disabled"
-msgstr "vypnuto"
-
-#: install_steps_interactive.pm:1094
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
-msgid "Boot"
-msgstr "Spuštění"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1098 printer/printerdrake.pm:961
-#, c-format
-msgid "%s on %s"
-msgstr "%s na %s"
-
-#: install_steps_interactive.pm:1112 services.pm:175
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Služby: aktivováno %d z %d registrovaných"
-
-#: install_steps_interactive.pm:1124
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr ""
-"Nemáte nastaveno prostředí X. Chcete jej skutečně ponechat nenastavené?"
-
-#: install_steps_interactive.pm:1205
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Připravuji zaváděcí program"
-
-#: install_steps_interactive.pm:1215
-#, c-format
-msgid ""
-"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
-"will not work for you. The install will continue, but you'll need to use "
-"BootX or some other means to boot your machine. The kernel argument for the "
-"root fs is: root=%s"
-msgstr ""
-"Zdá se, že máte počítač OldWorld nebo jiný, neznámý, na kterém nebude "
-"zavaděč Yaboot pracovat. Instalace bude pokračovat, ale budete potřebovat "
-"BootX nebo jiný nástroj pro zavedení systému. Parametr jádra pro kořenový "
-"souborový systém je: root=%s"
-
-#: install_steps_interactive.pm:1221
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Chcete použít aboot?"
-
-#: install_steps_interactive.pm:1224
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Stala se chyba při instalaci aboot,\n"
-"mám se pokusit o instalaci i když to zruší první oddíl na disku?"
-
-#: install_steps_interactive.pm:1241
-#, c-format
-msgid ""
-"In this security level, access to the files in the Windows partition is "
-"restricted to the administrator."
-msgstr ""
-"V této úrovní zabezpečení je přístup k souborům na oddíle s Windows omezena "
-"pouze na uživatele administrátor."
-
-#: install_steps_interactive.pm:1270 standalone/drakautoinst:76
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Vložte prázdnou disketu do %s"
-
-#: install_steps_interactive.pm:1275
-#, c-format
-msgid "Please insert another floppy for drivers disk"
-msgstr "Vložte prosím jinou disketu s ovladači"
-
-#: install_steps_interactive.pm:1277
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Vytvářím disketu pro automatickou instalaci..."
-
-#: install_steps_interactive.pm:1289
-#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Některé kroky nebyly dokončeny.\n"
-"\n"
-"Chcete opravdu nyní skončit?"
-
-#: install_steps_interactive.pm:1299 standalone/draksambashare:421
-#: standalone/draksambashare:527 standalone/drakups:118 standalone/drakups:157
-#: standalone/logdrake:451 standalone/logdrake:457
-#, c-format
-msgid "Congratulations"
-msgstr "Gratulujeme"
-
-#: install_steps_interactive.pm:1307 install_steps_interactive.pm:1308
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Vytvořit disketu pro automatickou instalaci"
-
-#: install_steps_interactive.pm:1309
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Instalace může být v případě potřeby plně automatická,\n"
-"ale použije se celý disk!!!\n"
-"(v případě instalace na druhý počítač)\n"
-"\n"
-"Takto lze jednoduše zopakovat instalaci.\n"
-
-#: install_steps_newt.pm:20
-#, c-format
-msgid "Mandriva Linux Installation %s"
-msgstr "Mandriva Linux Instalace %s"
-
-#. -PO: This string must fit in a 80-char wide text screen
-#: install_steps_newt.pm:37
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> přepn. mezi prvky | <Space> výběr | <F12> další obraz."
+msgid "No"
+msgstr "Ne"
-#: interactive.pm:196
+#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "Vyberte soubor"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakbackup:1537
-#: standalone/drakfont:649 standalone/drakhosts:242 standalone/draknfs:605
-#: standalone/draksambashare:1127 standalone/drakups:299
-#: standalone/drakups:359 standalone/drakups:379 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Add"
msgstr "Přidat"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakhosts:249
-#: standalone/draknfs:612 standalone/draksambashare:1084
-#: standalone/draksambashare:1137 standalone/draksambashare:1176
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Modify"
msgstr "Změnit"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakfont:732
-#: standalone/drakhosts:256 standalone/draknfs:619
-#: standalone/draksambashare:1085 standalone/draksambashare:1145
-#: standalone/draksambashare:1184 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Remove"
msgstr "Odebrat"
-#: interactive.pm:398
-#, c-format
-msgid "Basic"
-msgstr "Základní"
-
-#: interactive.pm:436 interactive/newt.pm:321 ugtk2.pm:490
+#: interactive.pm:538 interactive/curses.pm:217 ugtk2.pm:508
#, c-format
msgid "Finish"
msgstr "Ukončit"
-#: interactive/newt.pm:92
+#: interactive.pm:539 interactive/curses.pm:214 ugtk2.pm:506
#, c-format
-msgid "Do"
-msgstr "Provést"
+msgid "Previous"
+msgstr "Zpět"
#: interactive/stdio.pm:29 interactive/stdio.pm:148
#, c-format
@@ -7741,1954 +3390,1205 @@ msgstr ""
msgid "Re-submit"
msgstr "Znovu odeslat"
-#: keyboard.pm:171 keyboard.pm:202
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTZ)"
-msgstr "České (QWERTZ)"
-
-#: keyboard.pm:172 keyboard.pm:204
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German"
-msgstr "Německé"
-
-#: keyboard.pm:173
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak"
-msgstr "Dvořák"
-
-#: keyboard.pm:174 keyboard.pm:217
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Spanish"
-msgstr "Španělské"
-
-#: keyboard.pm:175 keyboard.pm:218
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Finnish"
-msgstr "Finské"
-
-#: keyboard.pm:176 keyboard.pm:220
-#, c-format
-msgid ""
-"_: keyboard\n"
-"French"
-msgstr "Francouzské"
-
-#: keyboard.pm:177 keyboard.pm:264
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Norwegian"
-msgstr "Norské"
-
-#: keyboard.pm:178
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish"
-msgstr "Polské"
-
-#: keyboard.pm:179 keyboard.pm:275
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian"
-msgstr "Ruské"
-
-#: keyboard.pm:180 keyboard.pm:281
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swedish"
-msgstr "Švédské"
-
-#: keyboard.pm:181 keyboard.pm:310
-#, c-format
-msgid "UK keyboard"
-msgstr "UK-Britské"
-
-#: keyboard.pm:182 keyboard.pm:313
-#, c-format
-msgid "US keyboard"
-msgstr "US-Americké"
-
-#: keyboard.pm:184
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Albanian"
-msgstr "Albánské"
-
-#: keyboard.pm:185
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (old)"
-msgstr "Arménské (staré)"
-
-#: keyboard.pm:186
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (typewriter)"
-msgstr "Arménské (psací stroj)"
-
-#: keyboard.pm:187
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (phonetic)"
-msgstr "Arménské (foneticky)"
-
-#: keyboard.pm:188
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Arabic"
-msgstr "Arabské"
-
-#: keyboard.pm:189
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Azerbaidjani (latin)"
-msgstr "Ázerbajdžánské (latinka)"
-
-#: keyboard.pm:190
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belgian"
-msgstr "Belgické"
-
-#: keyboard.pm:191
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Inscript-layout)"
-msgstr "Bengálské (Inscript styl)"
-
-#: keyboard.pm:192
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Probhat)"
-msgstr "Bengálské (Probhat styl)"
-
-#: keyboard.pm:193
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (phonetic)"
-msgstr "Bulharské (foneticky)"
-
-#: keyboard.pm:194
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (BDS)"
-msgstr "Bulharské (BDS)"
-
-#: keyboard.pm:195
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Brazilian (ABNT-2)"
-msgstr "Brazilské (ABNT-2)"
-
-#: keyboard.pm:196
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bosnian"
-msgstr "Bosenské"
-
-#: keyboard.pm:197
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belarusian"
-msgstr "Běloruské"
-
-#: keyboard.pm:198
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (German layout)"
-msgstr "Švýcarské (Německý styl)"
-
-#: keyboard.pm:199
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (French layout)"
-msgstr "Švýcarské (Francouzský styl)"
-
-#: keyboard.pm:201
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Cherokee syllabics"
-msgstr "Cherokee slabičné"
-
-#: keyboard.pm:203
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTY)"
-msgstr "České (QWERTY)"
-
-#: keyboard.pm:205
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German (no dead keys)"
-msgstr "Německé (bez mrtvých kláves)"
-
-#: keyboard.pm:206
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Devanagari"
-msgstr "Devanagari"
-
-#: keyboard.pm:207
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Danish"
-msgstr "Dánské"
-
-#: keyboard.pm:208
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (US)"
-msgstr "Dvořák (US) "
-
-#: keyboard.pm:209
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Esperanto)"
-msgstr "Dvořák (Esperanto)"
-
-#: keyboard.pm:210
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (French)"
-msgstr "Dvořák (Francouzské)"
-
-#: keyboard.pm:211
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (UK)"
-msgstr "Dvořák (VB)"
-
-#: keyboard.pm:212
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Norwegian)"
-msgstr "Dvořák (Norské)"
-
-#: keyboard.pm:213
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Polish)"
-msgstr "Dvořák (Polské)"
-
-#: keyboard.pm:214
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Swedish)"
-msgstr "Dvořák (Švédské) "
-
-#: keyboard.pm:215
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dzongkha/Tibetan"
-msgstr "Dzongkha/Tibetské"
-
-#: keyboard.pm:216
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Estonian"
-msgstr "Estonské"
-
-#: keyboard.pm:219
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Faroese"
-msgstr "Farské"
-
-#: keyboard.pm:221
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Russian\" layout)"
-msgstr "Gruzínské (\"Ruské\" rozložení)"
-
-#: keyboard.pm:222
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Latin\" layout)"
-msgstr "Gruzínské (rozložení \"Latin\")"
-
-#: keyboard.pm:223
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek"
-msgstr "Řecké"
-
-#: keyboard.pm:224
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek (polytonic)"
-msgstr "Řecké (polytonické)"
-
-#: keyboard.pm:225
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gujarati"
-msgstr "Gujartské"
-
-#: keyboard.pm:226
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gurmukhi"
-msgstr "Gurmutské"
-
-#: keyboard.pm:227
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Croatian"
-msgstr "Chorvatské"
-
-#: keyboard.pm:228
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Hungarian"
-msgstr "Maďarské"
-
-#: keyboard.pm:229
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Irish"
-msgstr "Irské"
-
-#: keyboard.pm:230
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli"
-msgstr "Izraelské"
-
-#: keyboard.pm:231
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli (phonetic)"
-msgstr "Izraelské (foneticky)"
-
-#: keyboard.pm:232
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Iranian"
-msgstr "Íránské"
-
-#: keyboard.pm:233
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Icelandic"
-msgstr "Islandské"
-
-#: keyboard.pm:234
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Italian"
-msgstr "Italské"
-
-#: keyboard.pm:235
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Inuktitut"
-msgstr "Inuktitutské"
-
-#: keyboard.pm:239
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Japanese 106 keys"
-msgstr "Japonská 106 kláves"
-
-#: keyboard.pm:240
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kannada"
-msgstr "Kanadské"
-
-#: keyboard.pm:243
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Korean"
-msgstr "Korejská klávesnice"
-
-#: keyboard.pm:245
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kurdish (arabic script)"
-msgstr "Kurdské (arabský skript)"
-
-#: keyboard.pm:246
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kyrgyz"
-msgstr "Kyrgizská klávesnice"
-
-#: keyboard.pm:247
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latin American"
-msgstr "Latinsko-Americké"
-
-#: keyboard.pm:249
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Laotian"
-msgstr "Laoské"
-
-#: keyboard.pm:250
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (old)"
-msgstr "Litevské AZERTY (stará)"
-
-#: keyboard.pm:252
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (new)"
-msgstr "Litevské AZERTY (nová)"
-
-#: keyboard.pm:253
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"number row\" QWERTY"
-msgstr "Litevské \"číselná řada\" QWERTY"
-
-#: keyboard.pm:254
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"phonetic\" QWERTY"
-msgstr "Litevské \"foneticky\" QWERTY"
-
-#: keyboard.pm:255
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latvian"
-msgstr "Litevské"
-
-#: keyboard.pm:256
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Malayalam"
-msgstr "Malayalam"
-
-#: keyboard.pm:258
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Macedonian"
-msgstr "Makedonské"
-
-#: keyboard.pm:259
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Myanmar (Burmese)"
-msgstr "Myamarské (Burnské)"
-
-#: keyboard.pm:260
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Mongolian (cyrillic)"
-msgstr "Mongolské (cyrilice)"
-
-#: keyboard.pm:261
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (UK)"
-msgstr "Maltézské (UK)"
-
-#: keyboard.pm:262
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (US)"
-msgstr "Maltézské (US)"
-
-#: keyboard.pm:263
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dutch"
-msgstr "Holandské"
-
-#: keyboard.pm:265
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Oriya"
-msgstr "Oriya"
-
-#: keyboard.pm:266
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwerty layout)"
-msgstr "Polské (rozložení QWERTY)"
-
-#: keyboard.pm:267
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwertz layout)"
-msgstr "Polské (rozložení QWERTZ)"
-
-#: keyboard.pm:269
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Pashto"
-msgstr "Paštské"
-
-#: keyboard.pm:270
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Portuguese"
-msgstr "Portugalské"
-
-#: keyboard.pm:272
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Canadian (Quebec)"
-msgstr "Kanadské (Quebec)"
-
-#: keyboard.pm:273
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwertz)"
-msgstr "Rumunské (QWERTZ)"
-
-#: keyboard.pm:274
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwerty)"
-msgstr "Rumunské (QWERTY)"
-
-#: keyboard.pm:276
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian (phonetic)"
-msgstr "Ruské (foneticky)"
-
-#: keyboard.pm:277
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (norwegian)"
-msgstr "Saami (Norské)"
-
-#: keyboard.pm:278
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (swedish/finnish)"
-msgstr "Saami (švédské/finské)"
-
-#: keyboard.pm:280
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sindhi"
-msgstr "Sindhské"
-
-#: keyboard.pm:282
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovenian"
-msgstr "Slovinské"
-
-#: keyboard.pm:284
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sinhala"
-msgstr "Sinhalské"
-
-#: keyboard.pm:285
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTZ)"
-msgstr "Slovenské (QWERTZ)"
-
-#: keyboard.pm:286
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTY)"
-msgstr "Slovenské (QWERTY)"
-
-#: keyboard.pm:288
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Serbian (cyrillic)"
-msgstr "Srbské (cyrilika)"
-
-#: keyboard.pm:289
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac"
-msgstr "Syrské"
-
-#: keyboard.pm:290
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac (phonetic)"
-msgstr "Syrské (foneticky)"
-
-#: keyboard.pm:291
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Telugu"
-msgstr "Telugu"
-
-#: keyboard.pm:293
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (ISCII-layout)"
-msgstr "Tamilské (ISCII)"
-
-#: keyboard.pm:294
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (Typewriter-layout)"
-msgstr "Tamilské (psací stroj)"
-
-#: keyboard.pm:295
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Kedmanee)"
-msgstr "Thajské (Kedmanee)"
-
-#: keyboard.pm:296
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (TIS-820)"
-msgstr "Thajské (TIS-820)"
-
-#: keyboard.pm:298
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Pattachote)"
-msgstr "Thajské (Pattachote)"
-
-#: keyboard.pm:300
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (moroccan layout) (+latin/arabic)"
-msgstr "Tifinagh (marocké rozložení) (+latinka/arabština)"
-
-#: keyboard.pm:301
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (phonetic) (+latin/arabic)"
-msgstr "Tifinagh (fonetické) (+latinka/arabština)"
-
-#: keyboard.pm:303
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tajik"
-msgstr "Tádžické"
-
-#: keyboard.pm:305
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkmen"
-msgstr "Turkmenské"
-
-#: keyboard.pm:306
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (traditional \"F\" model)"
-msgstr "Turecké (tradiční model \"F\")"
-
-#: keyboard.pm:307
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (modern \"Q\" model)"
-msgstr "Turecké (moderní model \"Q\")"
-
-#: keyboard.pm:309
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Ukrainian"
-msgstr "Ukrajinské"
-
-#: keyboard.pm:312
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Urdu keyboard"
-msgstr "Urdské"
-
-#: keyboard.pm:314
-#, c-format
-msgid "US keyboard (international)"
-msgstr "US (mezinárodní)"
-
-#: keyboard.pm:315
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Uzbek (cyrillic)"
-msgstr "Uzbecké (cyrilice)"
-
-#: keyboard.pm:317
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamská \"číselná řada\" QWERTY"
-
-#: keyboard.pm:318
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Yugoslavian (latin)"
-msgstr "Jugoslávské (latin)"
-
-#: keyboard.pm:325
-#, c-format
-msgid "Right Alt key"
-msgstr "Pravá klávesa Alt"
-
-#: keyboard.pm:326
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Obě klávesy Shift současně"
-
-#: keyboard.pm:327
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Control a Shift současně"
-
-#: keyboard.pm:328
-#, c-format
-msgid "CapsLock key"
-msgstr "Klávesa CapsLock"
-
-#: keyboard.pm:329
-#, c-format
-msgid "Shift and CapsLock keys simultaneously"
-msgstr "Klávesy Shift a CapsLock současně"
-
-#: keyboard.pm:330
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Klávesy Ctrl a Alt současně"
-
-#: keyboard.pm:331
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt a Shift současně"
-
-#: keyboard.pm:332
-#, c-format
-msgid "\"Menu\" key"
-msgstr "Klávesa \"Menu\""
-
-#: keyboard.pm:333
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Levá klávesa \"Windows\""
-
-#: keyboard.pm:334
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Pravá klávesa \"Windows\""
-
-#: keyboard.pm:335
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Obě klávesy Control současně"
-
-#: keyboard.pm:336
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Obě klávesy Alt současně"
-
-#: keyboard.pm:337
-#, c-format
-msgid "Left Shift key"
-msgstr "Levá klávesa Shift"
-
-#: keyboard.pm:338
-#, c-format
-msgid "Right Shift key"
-msgstr "Pravá klávesa Shift"
-
-#: keyboard.pm:339
-#, c-format
-msgid "Left Alt key"
-msgstr "Levá klávesa Alt"
-
-#: keyboard.pm:340
-#, c-format
-msgid "Left Control key"
-msgstr "Levá klávesa Control"
-
-#: keyboard.pm:341
-#, c-format
-msgid "Right Control key"
-msgstr "Pravá klávesa Control"
-
-#: keyboard.pm:377
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Zde můžete vybrat klávesu nebo kombinaci kláves, kterou\n"
-"budete moci přepínat rozložení znaků vaší klávesnice.\n"
-"(např. mezi českým a americkým)"
-
-#: keyboard.pm:382
-#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
-msgstr ""
-"Nastavení bude aktivováno až po instalaci.\n"
-"Během instalace je nutné pro přepnutí mezi různými klávesovými mapami použít "
-"pravý Ctrl."
-
#. -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:178
+#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"
-#: lang.pm:195
+#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "Andorra"
-#: lang.pm:196 network/adsl_consts.pm:943
+#: lang.pm:211 timezone.pm:213
#, c-format
msgid "United Arab Emirates"
msgstr "Spojené Arabské Emiráty"
-#: lang.pm:197
+#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "Afghánistán"
-#: lang.pm:198
+#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigua a Barbuda"
-#: lang.pm:199
+#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "Anguilla"
-#: lang.pm:200
+#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "Albánie"
-#: lang.pm:201
+#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "Arménie"
-#: lang.pm:202
+#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "Nizozemské Antily"
-#: lang.pm:203
+#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "Angola"
-#: lang.pm:204
+#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "Antarktida"
-#: lang.pm:205 network/adsl_consts.pm:55 standalone/drakxtv:50
+#: lang.pm:220 timezone.pm:258
#, c-format
msgid "Argentina"
msgstr "Argentina"
-#: lang.pm:206
+#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "Americká Samoa"
-#: lang.pm:209
+#: lang.pm:222 mirror.pm:11 timezone.pm:216
+#, c-format
+msgid "Austria"
+msgstr "Rakousko"
+
+#: lang.pm:223 mirror.pm:10 timezone.pm:254
+#, c-format
+msgid "Australia"
+msgstr "Austrálie"
+
+#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "Aruba"
-#: lang.pm:210
+#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "Ázerbajdžán"
-#: lang.pm:211
+#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosna a Hercegovina"
-#: lang.pm:212
+#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "Barbados"
-#: lang.pm:213
+#: lang.pm:228 timezone.pm:198
#, c-format
msgid "Bangladesh"
msgstr "Bangladéš"
-#: lang.pm:215
+#: lang.pm:229 mirror.pm:12 timezone.pm:218
+#, c-format
+msgid "Belgium"
+msgstr "Belgie"
+
+#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "Burkina Faso"
-#: lang.pm:216 network/adsl_consts.pm:170 network/adsl_consts.pm:179
+#: lang.pm:231 timezone.pm:219
#, c-format
msgid "Bulgaria"
msgstr "Bulharsko"
-#: lang.pm:217
+#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "Bahrajn"
-#: lang.pm:218
+#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "Burundi"
-#: lang.pm:219
+#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "Benin"
-#: lang.pm:220
+#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "Bermudy"
-#: lang.pm:221
+#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "Brunei Darussalam"
-#: lang.pm:222
+#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "Bolívie"
-#: lang.pm:224
+#: lang.pm:238 mirror.pm:13 timezone.pm:259
+#, c-format
+msgid "Brazil"
+msgstr "Brazílie"
+
+#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "Bahamy"
-#: lang.pm:225
+#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "Bhútán"
-#: lang.pm:226
+#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "Bouvet Island"
-#: lang.pm:227
+#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "Botswana"
-#: lang.pm:228
+#: lang.pm:243 timezone.pm:217
#, c-format
msgid "Belarus"
msgstr "Bělorusko"
-#: lang.pm:229
+#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "Belize"
-#: lang.pm:231
+#: lang.pm:245 mirror.pm:14 timezone.pm:248
+#, c-format
+msgid "Canada"
+msgstr "Kanada"
+
+#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Kokosové ostrovy (Keeling Islands)"
-#: lang.pm:232
+#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Kongo (Kinshasa)"
-#: lang.pm:233
+#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "Centrální africká republika"
-#: lang.pm:234
+#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Kongo (Brazzaville)"
-#: lang.pm:236
+#: lang.pm:250 mirror.pm:38 timezone.pm:242
+#, c-format
+msgid "Switzerland"
+msgstr "Švýcarsko"
+
+#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "Cote d'Ivoire"
-#: lang.pm:237
+#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "Cookovy ostrovy"
-#: lang.pm:238
+#: lang.pm:253 timezone.pm:260
#, c-format
msgid "Chile"
msgstr "Chile"
-#: lang.pm:239
+#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "Kamerun"
-#: lang.pm:240 network/adsl_consts.pm:188 network/adsl_consts.pm:197
-#: network/adsl_consts.pm:206 network/adsl_consts.pm:215
-#: network/adsl_consts.pm:224 network/adsl_consts.pm:233
-#: network/adsl_consts.pm:242 network/adsl_consts.pm:251
-#: network/adsl_consts.pm:260 network/adsl_consts.pm:269
-#: network/adsl_consts.pm:278 network/adsl_consts.pm:287
-#: network/adsl_consts.pm:296 network/adsl_consts.pm:305
-#: network/adsl_consts.pm:314 network/adsl_consts.pm:323
-#: network/adsl_consts.pm:332 network/adsl_consts.pm:341
-#: network/adsl_consts.pm:350 network/adsl_consts.pm:359
+#: lang.pm:255 timezone.pm:199
#, c-format
msgid "China"
msgstr "Čína"
-#: lang.pm:241
+#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "Kolumbie"
-#: lang.pm:243
+#: lang.pm:257 mirror.pm:15
+#, c-format
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "Srbsko & Montenegro"
-#: lang.pm:244
+#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "Kuba"
-#: lang.pm:245
+#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "Cape Verde"
-#: lang.pm:246
+#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "Vánoční ostrov"
-#: lang.pm:247
+#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "Kypr"
-#: lang.pm:250
+#: lang.pm:263 mirror.pm:16 timezone.pm:220
+#, c-format
+msgid "Czech Republic"
+msgstr "Česká republika"
+
+#: lang.pm:264 mirror.pm:21 timezone.pm:225
+#, c-format
+msgid "Germany"
+msgstr "Německo"
+
+#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "Džibuti"
-#: lang.pm:252
+#: lang.pm:266 mirror.pm:17 timezone.pm:221
+#, c-format
+msgid "Denmark"
+msgstr "Dánsko"
+
+#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "Dominica"
-#: lang.pm:253
+#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "Dominikánská republika"
-#: lang.pm:254 network/adsl_consts.pm:44
+#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "Alžírsko"
-#: lang.pm:255
+#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "Ekvádor"
-#: lang.pm:257
+#: lang.pm:271 mirror.pm:18 timezone.pm:222
+#, c-format
+msgid "Estonia"
+msgstr "Estonsko"
+
+#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "Egypt"
-#: lang.pm:258
+#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "Západní Sahara"
-#: lang.pm:259
+#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "Eritrea"
-#: lang.pm:261
+#: lang.pm:275 mirror.pm:36 timezone.pm:240
+#, c-format
+msgid "Spain"
+msgstr "Španělsko"
+
+#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "Etiopie"
-#: lang.pm:263
+#: lang.pm:277 mirror.pm:19 timezone.pm:223
+#, c-format
+msgid "Finland"
+msgstr "Finsko"
+
+#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "Fidži"
-#: lang.pm:264
+#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Falklandy (Malvinas)"
-#: lang.pm:265
+#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "Mikronésie"
-#: lang.pm:266
+#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "Faroe Islands"
-#: lang.pm:268
+#: lang.pm:282 mirror.pm:20 timezone.pm:224
+#, c-format
+msgid "France"
+msgstr "Francie"
+
+#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "Gabon"
-#: lang.pm:269 network/adsl_consts.pm:954 network/adsl_consts.pm:965
-#: network/netconnect.pm:46
+#: lang.pm:284 timezone.pm:244
#, c-format
msgid "United Kingdom"
msgstr "Velká Británie"
-#: lang.pm:270
+#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "Grenada"
-#: lang.pm:271
+#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "Georgie"
-#: lang.pm:272
+#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "Francouzská Guinea"
-#: lang.pm:273
+#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "Ghana"
-#: lang.pm:274
+#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "Gibraltar"
-#: lang.pm:275
+#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "Grónsko"
-#: lang.pm:276
+#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "Gambie"
-#: lang.pm:277
+#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "Guinea"
-#: lang.pm:278
+#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "Guadeloupe"
-#: lang.pm:279
+#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "Rovníková Guinea"
-#: lang.pm:281
+#: lang.pm:295 mirror.pm:22 timezone.pm:226
+#, c-format
+msgid "Greece"
+msgstr "Řecko"
+
+#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "Jižní Georgie a ostrovy South Sandwich"
-#: lang.pm:282
+#: lang.pm:297 timezone.pm:249
#, c-format
msgid "Guatemala"
msgstr "Guatemala"
-#: lang.pm:283
+#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "Guam"
-#: lang.pm:284
+#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "Guinea-Bissau"
-#: lang.pm:285
+#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "Guyana"
-#: lang.pm:286
+#: lang.pm:301
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "Čína (Hong Kong)"
-#: lang.pm:287
+#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Heard a McDonaldovy ostrovy"
-#: lang.pm:288
+#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "Honduras"
-#: lang.pm:289
+#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "Chorvatsko"
-#: lang.pm:290
+#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "Haiti"
-#: lang.pm:292
+#: lang.pm:306 mirror.pm:23 timezone.pm:227
+#, c-format
+msgid "Hungary"
+msgstr "Maďarsko"
+
+#: lang.pm:307 timezone.pm:202
#, c-format
msgid "Indonesia"
msgstr "Indonésie"
-#: lang.pm:295
+#: lang.pm:308 mirror.pm:24 timezone.pm:228
+#, c-format
+msgid "Ireland"
+msgstr "Irsko"
+
+#: lang.pm:309 mirror.pm:25 timezone.pm:204
+#, c-format
+msgid "Israel"
+msgstr "Izrael"
+
+#: lang.pm:310 timezone.pm:201
#, c-format
msgid "India"
msgstr "Indie"
-#: lang.pm:296
+#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Britské teritorium Indického moře"
-#: lang.pm:297
+#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "Irák"
-#: lang.pm:298
+#: lang.pm:313 timezone.pm:203
#, c-format
msgid "Iran"
msgstr "Írán"
-#: lang.pm:299
+#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "Island"
-#: lang.pm:301
+#: lang.pm:315 mirror.pm:26 timezone.pm:229
+#, c-format
+msgid "Italy"
+msgstr "Itálie"
+
+#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "Jamajka"
-#: lang.pm:302
+#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "Jordán"
-#: lang.pm:304
+#: lang.pm:318 mirror.pm:27 timezone.pm:205
+#, c-format
+msgid "Japan"
+msgstr "Japonsko"
+
+#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "Keňa"
-#: lang.pm:305
+#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "Kyrgyzstán"
-#: lang.pm:306
+#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "Kambodža"
-#: lang.pm:307
+#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "Kiribati"
-#: lang.pm:308
+#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "Comoros"
-#: lang.pm:309
+#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Saint Kitts a Nevis"
-#: lang.pm:310
+#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "Korea (Severní)"
-#: lang.pm:311
+#: lang.pm:326 timezone.pm:206
#, c-format
msgid "Korea"
msgstr "Korea"
-#: lang.pm:312
+#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "Kuvajt"
-#: lang.pm:313
+#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "Kajmanské ostrovy"
-#: lang.pm:314
+#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "Kazachstán"
-#: lang.pm:315
+#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "Laos"
-#: lang.pm:316
+#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "Libanon"
-#: lang.pm:317
+#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "Svatá Lucie"
-#: lang.pm:318
+#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "Lichtenštejnsko"
-#: lang.pm:319
+#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "Srí Lanka"
-#: lang.pm:320
+#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "Libérie"
-#: lang.pm:321
+#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "Lesotho"
-#: lang.pm:322 network/adsl_consts.pm:600
+#: lang.pm:337 timezone.pm:230
#, c-format
msgid "Lithuania"
msgstr "Litva"
-#: lang.pm:323
+#: lang.pm:338 timezone.pm:231
#, c-format
msgid "Luxembourg"
msgstr "Lucembursko"
-#: lang.pm:324
+#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "Lotyšsko"
-#: lang.pm:325
+#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "Libye"
-#: lang.pm:326 network/adsl_consts.pm:609
+#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "Maroko"
-#: lang.pm:327
+#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "Monako"
-#: lang.pm:328
+#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "Moldava"
-#: lang.pm:329
+#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "Madagaskar"
-#: lang.pm:330
+#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "Marshall Islands"
-#: lang.pm:331
+#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "Makedonie"
-#: lang.pm:332
+#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "Mali"
-#: lang.pm:333
+#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "Myanmar"
-#: lang.pm:334
+#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "Mongolsko"
-#: lang.pm:335
+#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "Northern Mariana Islands"
-#: lang.pm:336
+#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "Martinique"
-#: lang.pm:337
+#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "Mauretánie"
-#: lang.pm:338
+#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "Montserrat"
-#: lang.pm:339
+#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "Malta"
-#: lang.pm:340
+#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "Mauritius"
-#: lang.pm:341
+#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "Maledivy"
-#: lang.pm:342
+#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "Malawi"
-#: lang.pm:343
+#: lang.pm:358 timezone.pm:250
#, c-format
msgid "Mexico"
msgstr "Mexiko"
-#: lang.pm:344
+#: lang.pm:359 timezone.pm:207
#, c-format
msgid "Malaysia"
msgstr "Malajsie"
-#: lang.pm:345
+#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "Mosambik"
-#: lang.pm:346
+#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "Namibie"
-#: lang.pm:347
+#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "Nová Kaledonie"
-#: lang.pm:348
+#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "Niger"
-#: lang.pm:349
+#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "Norfolské ostrovy"
-#: lang.pm:350
+#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "Nigérie"
-#: lang.pm:351
+#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "Nikaragua"
-#: lang.pm:354
+#: lang.pm:367 mirror.pm:28 timezone.pm:232
+#, c-format
+msgid "Netherlands"
+msgstr "Nizozemí"
+
+#: lang.pm:368 mirror.pm:30 timezone.pm:233
+#, c-format
+msgid "Norway"
+msgstr "Norsko"
+
+#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "Nepál"
-#: lang.pm:355
+#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "Nauru"
-#: lang.pm:356
+#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "Niue"
-#: lang.pm:358
+#: lang.pm:372 mirror.pm:29 timezone.pm:255
+#, c-format
+msgid "New Zealand"
+msgstr "Nový Zéland"
+
+#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "Omán"
-#: lang.pm:359
+#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "Panama"
-#: lang.pm:360
+#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "Peru"
-#: lang.pm:361
+#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "Francouzská Polynésie"
-#: lang.pm:362
+#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "Papua Nová Guinea"
-#: lang.pm:363
+#: lang.pm:378 timezone.pm:208
#, c-format
msgid "Philippines"
msgstr "Filipíny"
-#: lang.pm:364
+#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "Pákistán"
-#: lang.pm:366
+#: lang.pm:380 mirror.pm:31 timezone.pm:234
+#, c-format
+msgid "Poland"
+msgstr "Polsko"
+
+#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Saint Pierre a Miquelon"
-#: lang.pm:367
+#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "Pitcairn"
-#: lang.pm:368
+#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "Puerto Rico"
-#: lang.pm:369
+#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "Palestina"
-#: lang.pm:371
+#: lang.pm:385 mirror.pm:32 timezone.pm:235
+#, c-format
+msgid "Portugal"
+msgstr "Portugalsko"
+
+#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "Paraguay"
-#: lang.pm:372
+#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "Palau"
-#: lang.pm:373
+#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "Katar"
-#: lang.pm:374
+#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "Reunion"
-#: lang.pm:375
+#: lang.pm:390 timezone.pm:236
#, c-format
msgid "Romania"
msgstr "Rumunsko"
-#: lang.pm:377
+#: lang.pm:391 mirror.pm:33
+#, c-format
+msgid "Russia"
+msgstr "Rusko"
+
+#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "Rwanda"
-#: lang.pm:378
+#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "Saudská Arábie"
-#: lang.pm:379
+#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "Solomon Islands"
-#: lang.pm:380
+#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "Seychely"
-#: lang.pm:381
+#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "Sudán"
-#: lang.pm:383
+#: lang.pm:397 mirror.pm:37 timezone.pm:241
+#, c-format
+msgid "Sweden"
+msgstr "Švédsko"
+
+#: lang.pm:398 timezone.pm:209
#, c-format
msgid "Singapore"
msgstr "Singapur"
-#: lang.pm:384
+#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "Svatá Helena"
-#: lang.pm:385 network/adsl_consts.pm:747
+#: lang.pm:400 timezone.pm:239
#, c-format
msgid "Slovenia"
msgstr "Slovinsko"
-#: lang.pm:386
+#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Svalbard a ostrovy Jan Mayen"
-#: lang.pm:388
+#: lang.pm:402 mirror.pm:34 timezone.pm:238
+#, c-format
+msgid "Slovakia"
+msgstr "Slovensko"
+
+#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "Sierra Leone"
-#: lang.pm:389
+#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "San Marino"
-#: lang.pm:390 network/adsl_consts.pm:737
+#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "Senegal"
-#: lang.pm:391
+#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "Somálsko"
-#: lang.pm:392
+#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "Surinam"
-#: lang.pm:393
+#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "Sao Tome a Principe"
-#: lang.pm:394
+#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "El Salvador"
-#: lang.pm:395
+#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "Sýrie"
-#: lang.pm:396
+#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "Svazijsko"
-#: lang.pm:397
+#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Turks a Caicos Islands"
-#: lang.pm:398
+#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "Čad"
-#: lang.pm:399
+#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "Francouzská jižní teritoria"
-#: lang.pm:400
+#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "Togo"
-#: lang.pm:402
+#: lang.pm:416 mirror.pm:40 timezone.pm:211
+#, c-format
+msgid "Thailand"
+msgstr "Thajsko"
+
+#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "Tadžikistán"
-#: lang.pm:403
+#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "Tokelau"
-#: lang.pm:404
+#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "Východní Timor"
-#: lang.pm:405
+#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "Turkmenistán"
-#: lang.pm:406 network/adsl_consts.pm:931
+#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "Tunisko"
-#: lang.pm:407
+#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "Tonga"
-#: lang.pm:408
+#: lang.pm:423 timezone.pm:212
#, c-format
msgid "Turkey"
msgstr "Turecko"
-#: lang.pm:409
+#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "Trinidad a Tobago"
-#: lang.pm:410
+#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "Tuvalu"
-#: lang.pm:412
+#: lang.pm:426 mirror.pm:39 timezone.pm:210
+#, c-format
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#: lang.pm:427 timezone.pm:195
#, c-format
msgid "Tanzania"
msgstr "Tanzanie"
-#: lang.pm:413
+#: lang.pm:428 timezone.pm:243
#, c-format
msgid "Ukraine"
msgstr "Ukrajina"
-#: lang.pm:414
+#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "Uganda"
-#: lang.pm:415
+#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "Spojené státy (Minor Outlying Islands)"
-#: lang.pm:417
+#: lang.pm:431 mirror.pm:41 timezone.pm:251
+#, c-format
+msgid "United States"
+msgstr "Spojené státy americké"
+
+#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "Uruguay"
-#: lang.pm:418
+#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "Uzbekistán"
-#: lang.pm:419
+#: lang.pm:434
#, c-format
msgid "Vatican"
msgstr "Vatikán"
-#: lang.pm:420
+#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "Saint Vincent a Grenadiny"
-#: lang.pm:421
+#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "Venezuela"
-#: lang.pm:422
+#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "Panenské ostrovy (britské)"
-#: lang.pm:423
+#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Panenské ostrovy (U.S.)"
-#: lang.pm:424
+#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "Vietnam"
-#: lang.pm:425
+#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "Vanuatu"
-#: lang.pm:426
+#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "Wallis a Futuna"
-#: lang.pm:427
+#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "Samoa"
-#: lang.pm:428
+#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "Jemen"
-#: lang.pm:429
+#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "Mayotte"
-#: lang.pm:431
+#: lang.pm:445 mirror.pm:35 timezone.pm:194
+#, c-format
+msgid "South Africa"
+msgstr "Jižní Afrika"
+
+#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "Zambie"
-#: lang.pm:432
+#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1149
+#: lang.pm:1153
#, c-format
msgid "Welcome to %s"
msgstr "Vítá vás %s"
@@ -9709,14 +4609,362 @@ msgid "Remove the logical volumes first\n"
msgstr "Odeberte nejdříve logické disky\n"
#: lvm.pm:178
-#, fuzzy, c-format
+#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Zavaděč neumí pracovat s adresářem /boot na více fyzických svazcích"
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:10
+#, c-format
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the Mandriva "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandriva Linux distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
+"Mandriva S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using the Software Products in any manner, you "
+"explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
+"Software Products.\n"
+"\n"
+"\n"
+"2. Limited Warranty\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
+"be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if Mandriva S.A. has been advised of the possibility or "
+"occurrence of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
+"\n"
+"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
+"no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Mandriva Linux sites which are prohibited or restricted in some "
+"countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
+"included in the Software Products.\n"
+"\n"
+"\n"
+"3. The GPL License and Related Licenses\n"
+"\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to Mandriva.\n"
+"The programs developed by Mandriva S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by Mandriva S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
+"\n"
+"\n"
+"4. Intellectual Property Rights\n"
+"\n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
+"as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
+"Mandriva S.A. \n"
+"\n"
+"\n"
+"5. Governing Laws \n"
+"\n"
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
+"For any question on this document, please contact Mandriva S.A. \n"
+msgstr ""
+"Úvod\n"
+"\n"
+"Operační systém a různé části dostupné v distribuci Mandriva Linux jsou "
+"nazývány \"Softwarové produkty\" (\"Software Products\"). Softwarové "
+"produkty zahrnují, ale nejsou omezeny, na programy, metody, pravidla a "
+"dokumentaci, vztahující se k operačnímu systému a dalším komponentám "
+"distribuce Mandriva Linux.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
+"Mandriva S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using the Software Products in any manner, you "
+"explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
+"Software Products.\n"
+"\n"
+"\n"
+"2. Limited Warranty\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
+"be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if Mandriva S.A. has been advised of the possibility or "
+"occurrence of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
+"\n"
+"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
+"no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Mandriva Linux sites which are prohibited or restricted in some "
+"countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
+"included in the Software Products.\n"
+"\n"
+"\n"
+"3. The GPL License and Related Licenses\n"
+"\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to Mandriva.\n"
+"The programs developed by Mandriva S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by Mandriva S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
+"\n"
+"\n"
+"4. Intellectual Property Rights\n"
+"\n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
+"as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
+"Mandriva S.A. \n"
+"\n"
+"\n"
+"5. Governing Laws \n"
+"\n"
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
+"For any question on this document, please contact Mandriva S.A. \n"
+
+#: messages.pm:90
+#, c-format
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
+"Varování: Svobodný Software nemusí být vždy nezávislý na patentech\n"
+"a některý Svobodný Software může být ve vaší zemi chráněn patentem.\n"
+"Například zahrnuté dekodéry pro MP3 mohou vyžadovat licenci pro další\n"
+"použití (více detailů najdete na http://www.mp3licensing.com). Pokud si\n"
+"nejste jisti, zda se na vás nevztahuje některý patent, prostudujte si\n"
+"vaše místně příslušné právní normy."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:98
+#, c-format
+msgid ""
+"\n"
+"Warning\n"
+"\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
+"\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
+msgstr ""
+"\n"
+"Varování\n"
+"\n"
+"Přečtěte si prosím pozorně následující termíny. Pokud s nimi nesouhlasíte,\n"
+"nejste oprávněn pokračovat v instalaci následujícím CD. Stiskněte\n"
+"\"Odmítnout\" pro pokračování v instalaci bez tohoto média.\n"
+"\n"
+"\n"
+"Některé programy na dalším CD médiu nejsou šířeny podle licence GPL či\n"
+"podobné. Každý z těchto programů je šířen podle vlastní licence a podmínek.\n"
+"Čtete pozorně tyto licence a podmínky před tím, než začnete daný software\n"
+"používat nebo šířit.\n"
+"Některé licence zakazují přenášení, vytváření duplikátů (mimo záložní "
+"kopii),\n"
+"další šíření, dekompilaci, reverzní engineering nebo modifikaci komponent.\n"
+"Každé porušení podmínek okamžitě přerušuje vaše práva podle dané licence.\n"
+"I když dané licence dávají nějaká práva, není dovoleno instalovat daný\n"
+"program na více systémů, přizpůsobovat ho provozu na síti. V případě\n"
+"pochybností kontaktujte distributora nebo výrobce daného programu.\n"
+"Přenechání práv třetím osobám nebo kopírování části komponent či\n"
+"dokumentace je také zakázáno.\n"
+"\n"
+"\n"
+"Všechna práva na programy na dalším CD médiu patří jejím právoplatným\n"
+"vlastníkům podle autorského zákona.\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:131
+#, c-format
+msgid ""
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press Enter to reboot.\n"
+"\n"
+"\n"
+"For information on fixes which are available for this release of Mandriva "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandriva Linux User's Guide."
+msgstr ""
+"Gratulujeme vám, instalace je dokončena.\n"
+"Vyjměte zaváděcí média a stiskněte Return pro restart.\n"
+"\n"
+"\n"
+"Informace o opravách pro tuto verzi systému Mandriva Linux lze\n"
+"nalézt na stránce Errata dostupné na:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Informace o nastavení systému po instalaci jsou dostupné\n"
+"v příslušné kapitole oficiální uživatelské příručky pro Mandriva Linux."
+
#: modules/interactive.pm:19
-#, fuzzy, c-format
+#, c-format
msgid "This driver has no configuration parameter!"
-msgstr "Nastavení ovladače UPS"
+msgstr "Tento ovladač nemá žádné parametry pro nastavení!"
#: modules/interactive.pm:22
#, c-format
@@ -9775,12 +5023,7 @@ msgstr "Instaluji ovladač pro síťovou kartu (Ethernet) %s"
msgid "Installing driver for %s card %s"
msgstr "Instaluji ovladač pro %s kartu %s"
-#: modules/interactive.pm:99
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
-
-#: modules/interactive.pm:109
+#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9789,7 +5032,7 @@ msgstr ""
"Nyní lze zadat volby pro modul %s.\n"
"Pozn.: každá adresa by měla být ve tvaru 0x např. '0x123'"
-#: modules/interactive.pm:115
+#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9800,18 +5043,18 @@ msgstr ""
"Volby se zadávají ve tvaru ''název=hodnota název2=hodnota2 ...''.\n"
"Například, ''io=0x300 irq=7''"
-#: modules/interactive.pm:117
+#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "Volby modulu:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: modules/interactive.pm:130
+#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr "Který %s ovladač mám zkusit?"
-#: modules/interactive.pm:139
+#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -9831,17 +5074,17 @@ msgstr ""
"nemělo\n"
"by v žádném případě způsobit jiné škody."
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "Automatické prozkoumání"
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "Zadejte možnosti"
-#: modules/interactive.pm:155
+#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -9850,1936 +5093,17 @@ msgstr ""
"Spuštění modulu %s selhalo.\n"
"Chcete to zkusit s jinými parametry?"
-#: modules/parameters.pm:49
-#, c-format
-msgid "a number"
-msgstr "číslo"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d čísel oddělených čárkou"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d znakových řetězců oddělených čárkou"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated numbers"
-msgstr "čárkou oddělená čísla"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated strings"
-msgstr "čárkou oddělené znakové řetězce"
-
-#: mouse.pm:25
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - myš"
-
-#: mouse.pm:31 security/level.pm:12
-#, c-format
-msgid "Standard"
-msgstr "Standardní"
-
-#: mouse.pm:32
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: mouse.pm:33
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Standardní PS2 myš s kolečkem"
-
-#: mouse.pm:34
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/modem.pm:68 network/modem.pm:81 network/modem.pm:86
-#: network/modem.pm:115 network/netconnect.pm:596 network/netconnect.pm:601
-#: network/netconnect.pm:613 network/netconnect.pm:618
-#: network/netconnect.pm:634 network/netconnect.pm:636
-#, c-format
-msgid "Automatic"
-msgstr "Automaticky"
-
-#: mouse.pm:39 mouse.pm:73
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: mouse.pm:40 mouse.pm:68
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: mouse.pm:41
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: mouse.pm:42 mouse.pm:52
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
-
-#: mouse.pm:47 mouse.pm:79
-#, c-format
-msgid "1 button"
-msgstr "1 tlačítko"
-
-#: mouse.pm:48 mouse.pm:57
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Standardní dvoutlačítková myš"
-
-#: mouse.pm:50 mouse.pm:59
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Standardní třítlačítková myš s emulací kolečka"
-
-#: mouse.pm:51
-#, c-format
-msgid "Wheel"
-msgstr "S kolečkem"
-
-#: mouse.pm:55
-#, c-format
-msgid "serial"
-msgstr "Sériová"
-
-#: mouse.pm:58
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Standardní třítlačítková myš"
-
-#: mouse.pm:60
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: mouse.pm:61
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: mouse.pm:62
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan s emulací kolečka"
-
-#: mouse.pm:63
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: mouse.pm:65
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech série CC (sériová)"
-
-#: mouse.pm:66
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech série CC (sériová) s emulací kolečka"
-
-#: mouse.pm:67
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: mouse.pm:69
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
-
-#: mouse.pm:70
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: mouse.pm:71
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (sériová, starý C7 typ)"
-
-#: mouse.pm:72
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech Mouse (sériová, starý C7 typ) s emulací tlačítka"
-
-#: mouse.pm:74
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse s emulací kolečka"
-
-#: mouse.pm:77
-#, c-format
-msgid "busmouse"
-msgstr "Busmouse"
-
-#: mouse.pm:80
-#, c-format
-msgid "2 buttons"
-msgstr "2 tlačítka"
-
-#: mouse.pm:81
-#, c-format
-msgid "3 buttons"
-msgstr "3 tlačítka"
-
-#: mouse.pm:82
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3 tlačítková s emulací kolečka"
-
-#: mouse.pm:86
-#, c-format
-msgid "Universal"
-msgstr "Univerzální"
-
-#: mouse.pm:88
-#, c-format
-msgid "Any PS/2 & USB mice"
-msgstr "Libovolná PS/2 & USB myš"
-
-#: mouse.pm:89
-#, c-format
-msgid "Microsoft Xbox Controller S"
-msgstr "Microsoft Xbox Controller S"
-
-#: mouse.pm:93 standalone/drakconnect:351 standalone/drakvpn:1126
-#, c-format
-msgid "none"
-msgstr "Žádná"
-
-#: mouse.pm:95
-#, c-format
-msgid "No mouse"
-msgstr "Bez myši"
-
-#: mouse.pm:304 mouse.pm:367 mouse.pm:376 mouse.pm:435
-#, c-format
-msgid "Synaptics Touchpad"
-msgstr "Synaptics Touchpad"
-
-#: mouse.pm:561
-#, c-format
-msgid "Please test the mouse"
-msgstr "Otestujte, prosím, funkčnost myši"
-
-#: mouse.pm:563
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Pohybujte kurzorem"
-
-#: mouse.pm:564
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "A TOČTE KOLEČKEM!"
-
-#: network/drakfirewall.pm:12 share/compssUsers.pl:85
-#, c-format
-msgid "Web Server"
-msgstr "Webový server"
-
-#: network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "Doménový server"
-
-#: network/drakfirewall.pm:22
-#, c-format
-msgid "SSH server"
-msgstr "Server SSH"
-
-#: network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "Server FTP"
-
-#: network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "Poštovní server"
-
-#: network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP a IMAP server"
-
-#: network/drakfirewall.pm:42
-#, c-format
-msgid "Telnet server"
-msgstr "Server Telnet"
-
-#: network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr "Sdílení souborů s Windows (SMB)"
-
-#: network/drakfirewall.pm:54
-#, c-format
-msgid "CUPS server"
-msgstr "Server CUPS"
-
-#: network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr "Požadavek na odezvu (ping)"
-
-#: network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr "BitTorrent"
-
-#: network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr "Detekce skenování portů"
-
-#: network/drakfirewall.pm:165
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-"Nastavení aplikace drakfirewall\n"
-"\n"
-"Zde je možné nastavit osobní firewall pro tento systém Mandriva Linux.\n"
-"Pro výkonné řešení vyhrazeného firewallu použijte specializovanou\n"
-"distribuci Mandriva Security Firewall."
-
-#: network/drakfirewall.pm:171
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-"Nastavení aplikace drakfirewall\n"
-"\n"
-"Předtím, než budete pokračovat, se ujistěte, že jste nastavili vaši\n"
-"síť a přístup k Internetu pomocí aplikace drakconnect."
-
-#: network/drakfirewall.pm:188
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "Které služby přístupné z Internetu chcete povolit?"
-
-#: network/drakfirewall.pm:191
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-"Zadali jste nesprávný port.\n"
-"Správně je například: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Více se dozvíte ze souboru /etc/services."
-
-#: network/drakfirewall.pm:197
-#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-"Zadán špatný port: %s.\n"
-"Správný formát je \"port/tcp\" nebo \"port/udp\", \n"
-"kde číslo portu je mezi 1 a 65535.\n"
-"\n"
-"Lze také zadat rozmezí portů (např. 24300:24350/udp)"
-
-#: network/drakfirewall.pm:207
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Všechno (bez firewallu)"
-
-#: network/drakfirewall.pm:209
-#, c-format
-msgid "Other ports"
-msgstr "Další porty"
-
-#: network/drakfirewall.pm:253 network/drakfirewall.pm:256
-#: standalone/drakids:33 standalone/drakids:136 standalone/drakids:145
-#: standalone/drakids:170 standalone/drakids:179 standalone/drakids:189
-#: standalone/drakids:265 standalone/net_applet:59 standalone/net_applet:202
-#: standalone/net_applet:385 standalone/net_applet:422
-#, c-format
-msgid "Interactive Firewall"
-msgstr "Interaktivní firewall"
-
-#: network/drakfirewall.pm:254
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activity should be watched."
-msgstr ""
-"Může se vám dostat varování, pokud se někdo pokusí přistupovat k vaší službě "
-"nebo proniknout do vašeho počítače.\n"
-"Vyberte prosím, která síťová aktivita by měla být sledována."
-
-#: network/drakfirewall.pm:259
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr "Použít interaktivní firewall"
-
-#: network/ifw.pm:129
-#, c-format
-msgid "Port scanning"
-msgstr "Skenování portů"
-
-#: network/ifw.pm:130
-#, c-format
-msgid "Service attack"
-msgstr "Napadení služby"
-
-#: network/ifw.pm:131
-#, c-format
-msgid "Password cracking"
-msgstr "Lámání hesla"
-
-#: network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr "Útok \"%s\""
-
-#: network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr "Došlo k pokusu o útok skenováním portů z %s."
-
-#: network/ifw.pm:135
-#, c-format
-msgid "The %s service has been attacked by %s."
-msgstr "Služba %s je napadena ze strany %s."
-
-#: network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr "Došlo k pokusu o útok prolomením hesla z %s."
-
-#: network/ifw.pm:137
-#, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr "Došlo k pokusu o útok \"%s\" ze strany %s"
-
-#: network/isdn.pm:117 network/netconnect.pm:463 network/netconnect.pm:557
-#: network/netconnect.pm:560 network/netconnect.pm:708
-#: network/netconnect.pm:712
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr "Neuvedeno - upravit ručně"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "Nevím"
-
-#: network/isdn.pm:161 network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: network/isdn.pm:162 network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/netconnect.pm:601 network/netconnect.pm:618
-#: network/netconnect.pm:634
-#, c-format
-msgid "Manual"
-msgstr "Ručně"
-
-#: network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr "Není přítomno žádné zařízení podporující ovladač ndiswrapper %s!"
-
-#: network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr "Vyberte prosím ovladač z Windows (soubor .inf)"
-
-#: network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr "Nelze nainstalovat ovladač ndiswrapper %s!"
-
-#: network/ndiswrapper.pm:89
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr "Nelze načíst modul ndiswrapper!"
-
-#: network/ndiswrapper.pm:95
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-"Vybrané zařízení je již nastaveno pro ovladač %s.\n"
-"Opravdu chcete použít ovladač ndiswrapper?"
-
-#: network/ndiswrapper.pm:101
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr "Nelze nalézt rozhraní ndiswrapper!"
-
-#: network/netconnect.pm:69 network/netconnect.pm:493
-#: network/netconnect.pm:505
-#, c-format
-msgid "Manual choice"
-msgstr "Ruční volba"
-
-#: network/netconnect.pm:69
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Interní ISDN karta"
-
-#: network/netconnect.pm:80 printer/printerdrake.pm:1622 standalone/drakups:72
-#, c-format
-msgid "Manual configuration"
-msgstr "Ruční nastavení"
-
-#: network/netconnect.pm:81 standalone/drakroam:121
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr "Automatická IP (BOOTP/DHCP)"
-
-#: network/netconnect.pm:83
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
-msgstr "Automatická IP (BOOTP/DHCP/Zeroconf)"
-
-#: network/netconnect.pm:86
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protokol použitý ve zbytku světa"
-
-#: network/netconnect.pm:88 standalone/drakconnect:563
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Evropský protokol (EDSS1)"
-
-#: network/netconnect.pm:89 standalone/drakconnect:564
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Protokol použitý ve zbytku světa \n"
-" žádný D-kanál (leased lines)"
-
-#: network/netconnect.pm:103 standalone/harddrake2:328
-#: standalone/net_monitor:102 standalone/net_monitor:103
-#: standalone/net_monitor:108
-#, c-format
-msgid "unknown"
-msgstr "neznámý"
-
-#: network/netconnect.pm:120 network/thirdparty.pm:220
-#, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "Modem Alcatel Speedtouch USB"
-
-#: network/netconnect.pm:121
-#, c-format
-msgid "Sagem USB modem"
-msgstr "Modem Sagem USB"
-
-#: network/netconnect.pm:122
-#, c-format
-msgid "Bewan modem"
-msgstr "Modem Bewan PCI"
-
-#: network/netconnect.pm:123
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr "Modem ECI Hi-Focus"
-
-#: network/netconnect.pm:127
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr "Dynamic Host Configuration Protocol (DHCP)"
-
-#: network/netconnect.pm:128
-#, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "Ruční nastavení TCP/IP"
-
-#: network/netconnect.pm:129
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr "Point to Point Tunneling Protocol (PPTP)"
-
-#: network/netconnect.pm:130
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr "PPP přes Ethernet (PPPoE)"
-
-#: network/netconnect.pm:131
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr "PPP přes ATM (PPPoA)"
-
-#: network/netconnect.pm:132
-#, c-format
-msgid "DSL over CAPI"
-msgstr "DSL přes CAPI"
-
-#: network/netconnect.pm:136
-#, c-format
-msgid "Bridged Ethernet LLC"
-msgstr "Bridged Ethernet LLC"
-
-#: network/netconnect.pm:137
-#, c-format
-msgid "Bridged Ethernet VC"
-msgstr "Bridged Ethernet VC"
-
-#: network/netconnect.pm:138
-#, c-format
-msgid "Routed IP LLC"
-msgstr "Routed IP LLC"
-
-#: network/netconnect.pm:139
-#, c-format
-msgid "Routed IP VC"
-msgstr "Routed IP VC"
-
-#: network/netconnect.pm:140
-#, c-format
-msgid "PPPoA LLC"
-msgstr "PPPoA LLC"
-
-#: network/netconnect.pm:141
-#, c-format
-msgid "PPPoA VC"
-msgstr "PPPoA VC"
-
-#: network/netconnect.pm:145 standalone/drakconnect:498
-#, c-format
-msgid "Script-based"
-msgstr "Podle scénáře"
-
-#: network/netconnect.pm:146 standalone/drakconnect:498
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: network/netconnect.pm:147 standalone/drakconnect:498
-#, c-format
-msgid "Terminal-based"
-msgstr "Pomocí terminálu"
-
-#: network/netconnect.pm:148 standalone/drakconnect:498
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: network/netconnect.pm:149 standalone/drakconnect:498
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: network/netconnect.pm:250 standalone/drakconnect:56
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Nastavení sítě & Internetu"
-
-#: network/netconnect.pm:256
-#, c-format
-msgid "LAN connection"
-msgstr "Připojení k LAN"
-
-#: network/netconnect.pm:257 network/netconnect.pm:276 standalone/drakroam:182
-#: standalone/drakroam:220 standalone/drakroam:223
-#, c-format
-msgid "Wireless connection"
-msgstr "Bezdrátové připojení"
-
-#: network/netconnect.pm:258
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL připojení"
-
-#: network/netconnect.pm:259
-#, c-format
-msgid "Cable connection"
-msgstr "Kabelové připojení"
-
-#: network/netconnect.pm:260
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN připojení"
-
-#: network/netconnect.pm:261
-#, c-format
-msgid "Modem connection"
-msgstr "Modemové připojení"
-
-#: network/netconnect.pm:262
-#, c-format
-msgid "DVB connection"
-msgstr "Připojení DVB"
-
-#: network/netconnect.pm:272
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Zvolte si připojení, které chcete nastavit"
-
-#: network/netconnect.pm:287 network/netconnect.pm:786
-#, c-format
-msgid "Connection Configuration"
-msgstr "Nastavení připojení"
-
-#: network/netconnect.pm:287 network/netconnect.pm:787
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Prosím vyplňte nebo zkontrolujte následující údaje"
-
-#: network/netconnect.pm:290
-#, c-format
-msgid "Your personal phone number"
-msgstr "Vaše osobní telefonní číslo"
-
-#: network/netconnect.pm:291 network/netconnect.pm:790
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Jméno poskytovatele (např. provider.net)"
-
-#: network/netconnect.pm:292 standalone/drakconnect:493
-#, c-format
-msgid "Provider phone number"
-msgstr "Telefonní číslo poskytovatele"
-
-#: network/netconnect.pm:293
-#, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "DNS poskytovatele č. 1 (volitelné)"
-
-#: network/netconnect.pm:294
-#, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "DNS poskytovatele č. 2 (volitelné)"
-
-#: network/netconnect.pm:295 standalone/drakconnect:444
-#, c-format
-msgid "Dialing mode"
-msgstr "Typ vytáčení"
-
-#: network/netconnect.pm:296 standalone/drakconnect:449
-#: standalone/drakconnect:517
-#, c-format
-msgid "Connection speed"
-msgstr "Rychlost připojení"
-
-#: network/netconnect.pm:297 standalone/drakconnect:454
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Prodleva připojení (vteřiny)"
-
-#: network/netconnect.pm:298 network/netconnect.pm:323
-#: network/netconnect.pm:793 standalone/drakconnect:491
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Váš účet (uživatelské jméno)"
-
-#: network/netconnect.pm:299 network/netconnect.pm:324
-#: network/netconnect.pm:794 standalone/drakconnect:492
-#, c-format
-msgid "Account Password"
-msgstr "Heslo vašeho účtu"
-
-#: network/netconnect.pm:300 standalone/drakconnect:554
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ karty"
-
-#: network/netconnect.pm:301 standalone/drakconnect:555
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "DMA karty"
-
-#: network/netconnect.pm:302 standalone/drakconnect:556
-#, c-format
-msgid "Card IO"
-msgstr "IO karty"
-
-#: network/netconnect.pm:303 standalone/drakconnect:557
-#, c-format
-msgid "Card IO_0"
-msgstr "IO_0 karty"
-
-#: network/netconnect.pm:304
-#, c-format
-msgid "Card IO_1"
-msgstr "IO_1 karty"
-
-#: network/netconnect.pm:319
-#, c-format
-msgid "Cable: account options"
-msgstr "Kabelové připojení: nastavení účtu"
-
-#: network/netconnect.pm:322
-#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr "Použít přihlášení BPALogin (nutné pro poskytovatele Telstra)"
-
-#: network/netconnect.pm:348 network/netconnect.pm:670
-#: network/netconnect.pm:826 network/netconnect.pm:1170
-#, c-format
-msgid "Select the network interface to configure:"
-msgstr "Zvolte síťové rozhraní pro nastavení:"
-
-#: network/netconnect.pm:350 network/netconnect.pm:385
-#: network/netconnect.pm:671 network/netconnect.pm:828 network/shorewall.pm:70
-#: standalone/drakconnect:714
-#, c-format
-msgid "Net Device"
-msgstr "Síťové zařízení"
-
-#: network/netconnect.pm:351 network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr "Externí ISDN modem"
-
-#: network/netconnect.pm:384 standalone/harddrake2:215
-#, c-format
-msgid "Select a device!"
-msgstr "Zvolte zařízení!"
-
-#: network/netconnect.pm:393 network/netconnect.pm:403
-#: network/netconnect.pm:413 network/netconnect.pm:446
-#: network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Nastavení ISDN"
-
-#: network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Jaký typ karty máte?"
-
-#: network/netconnect.pm:404
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"Jestli máte ISA kartu, měly by být hodnoty na následující obrazovce "
-"správné.\n"
-"\n"
-"Jestli máte PCMCIA kartu, musíte znát její IRQ a IO.\n"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "Pokračovat"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "Přerušit"
-
-#: network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Kterou z těchto ISDN karet máte?"
-
-#: network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-"Pro tento modem je k dispozici ovladač CAPI. Tento ovladač poskytuje více "
-"možností než volně dostupný ovladač (např. posílání faxů). Který z ovladačů "
-"chcete použít?"
-
-#: network/netconnect.pm:434 standalone/drakconnect:109 standalone/drakups:249
-#: standalone/harddrake2:133
-#, c-format
-msgid "Driver"
-msgstr "Ovladač"
-
-#: network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Který protokol chcete použít?"
-
-#: network/netconnect.pm:448 standalone/drakconnect:109
-#: standalone/drakconnect:300 standalone/drakconnect:562
-#: standalone/drakids:207 standalone/drakvpn:1128
-#, c-format
-msgid "Protocol"
-msgstr "Protokol"
-
-#: network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"Vyberte si svého poskytovatele internetu.\n"
-" Pokud není na seznamu, vyberte si Jiný"
-
-#: network/netconnect.pm:462 network/netconnect.pm:556
-#: network/netconnect.pm:707
-#, c-format
-msgid "Provider:"
-msgstr "Poskytovatel:"
-
-#: network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"Váš modem není systémem podporován.\n"
-"Podívejte se na stránky http://www.linmodems.org"
-
-#: network/netconnect.pm:490
-#, c-format
-msgid "Select the modem to configure:"
-msgstr "Zvolte modem pro nastavení:"
-
-#: network/netconnect.pm:525
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Ke kterému sériovému portu je váš modem připojen?"
-
-#: network/netconnect.pm:554
-#, c-format
-msgid "Select your provider:"
-msgstr "Vyberte svého poskytovatele:"
-
-#: network/netconnect.pm:578
-#, c-format
-msgid "Dialup: account options"
-msgstr "Vytáčení: nastavení účtu"
-
-#: network/netconnect.pm:581
-#, c-format
-msgid "Connection name"
-msgstr "Název připojení"
-
-#: network/netconnect.pm:582
-#, c-format
-msgid "Phone number"
-msgstr "Telefonní číslo"
-
-#: network/netconnect.pm:583
-#, c-format
-msgid "Login ID"
-msgstr "Přihlašovací jméno"
-
-#: network/netconnect.pm:598 network/netconnect.pm:631
-#, c-format
-msgid "Dialup: IP parameters"
-msgstr "Vytáčení: Parametry IP"
-
-#: network/netconnect.pm:601
-#, c-format
-msgid "IP parameters"
-msgstr "Parametry IP"
-
-#: network/netconnect.pm:602 network/netconnect.pm:941
-#: printer/printerdrake.pm:460 standalone/drakconnect:109
-#: standalone/drakconnect:316 standalone/drakconnect:882
-#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:284
-#, c-format
-msgid "IP address"
-msgstr "IP adresa"
-
-#: network/netconnect.pm:603
-#, c-format
-msgid "Subnet mask"
-msgstr "Maska podsítě"
-
-#: network/netconnect.pm:615
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr "Vytáčení: Parametry DNS"
-
-#: network/netconnect.pm:618
-#, c-format
-msgid "DNS"
-msgstr "DNS"
-
-#: network/netconnect.pm:619
-#, c-format
-msgid "Domain name"
-msgstr "Název domény"
-
-#: network/netconnect.pm:620 network/netconnect.pm:791
-#: standalone/drakconnect:992
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "První DNS Server (nepovinný)"
-
-#: network/netconnect.pm:621 network/netconnect.pm:792
-#: standalone/drakconnect:993
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Druhý DNS Server (nepovinný)"
-
-#: network/netconnect.pm:622
-#, c-format
-msgid "Set hostname from IP"
-msgstr "Nastavit název počítače podle IP adresy"
-
-#: network/netconnect.pm:634 standalone/drakconnect:327
-#, c-format
-msgid "Gateway"
-msgstr "Brána(gateway)"
-
-#: network/netconnect.pm:635 standalone/drakroam:124
-#, c-format
-msgid "Gateway IP address"
-msgstr "IP adresa brány"
-
-#: network/netconnect.pm:670
-#, c-format
-msgid "ADSL configuration"
-msgstr "Nastavení ADSL"
-
-#: network/netconnect.pm:705
-#, c-format
-msgid "Please choose your ADSL provider"
-msgstr "Vyberte prosím vašeho poskytovatele ADSL"
-
-#: network/netconnect.pm:735
-#, c-format
-msgid ""
-"Please choose your DSL connection type.\n"
-"If you do not know it, keep the preselected type."
-msgstr ""
-"Vyberte prosím váš typ připojení DSL.\n"
-"Pokud jej neznáte, ponechte předvybraný typ."
-
-#: network/netconnect.pm:738
-#, c-format
-msgid "ADSL connection type:"
-msgstr "Typ připojení ADSL:"
-
-#: network/netconnect.pm:796
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr "ID virtuální cesty (VPI):"
-
-#: network/netconnect.pm:797
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr "ID virtuálního okruhu (VCI):"
-
-#: network/netconnect.pm:800
-#, c-format
-msgid "Encapsulation:"
-msgstr "Zapouzdření:"
-
-#: network/netconnect.pm:830
-#, c-format
-msgid "Manually load a driver"
-msgstr "Zavést ovladač ručně"
-
-#: network/netconnect.pm:831
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr "Použít ovladač z Windows (pomocí můstku ndiswrapper)"
-
-#: network/netconnect.pm:896
-#, c-format
-msgid "Zeroconf hostname resolution"
-msgstr "Hledání názvu počítače pro Zeroconf"
-
-#: network/netconnect.pm:897 network/netconnect.pm:928
-#, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "Nastavuji síťové zařízení %s (ovladač %s)"
-
-#: network/netconnect.pm:898
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use"
-msgstr ""
-"Následující protokoly lze použít pro nastavení připojení k LAN. Vyberte "
-"prosím ten, který chcete použít"
-
-#: network/netconnect.pm:929
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Prosím zadejte nastavení IP protokolu pro tento počítač.\n"
-"Každá položka musí být zadána jako IP adresa v 'desetinné' formě\n"
-"(například 1.2.3.4)."
-
-#: network/netconnect.pm:936 standalone/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Přiřadit název počítače ze získané DHCP adresy"
-
-#: network/netconnect.pm:937 standalone/drakconnect:375
-#, c-format
-msgid "DHCP host name"
-msgstr "Název počítače z DHCP"
-
-#: network/netconnect.pm:942 standalone/drakconnect:321
-#: standalone/drakconnect:883 standalone/drakgw:181
-#, c-format
-msgid "Netmask"
-msgstr "Maska sítě"
-
-#: network/netconnect.pm:944 standalone/drakconnect:437
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Sledovat ID síťové karty (užitečné u notebooků)"
-
-#: network/netconnect.pm:945 standalone/drakconnect:438
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Rychlé připojení do sítě"
-
-#: network/netconnect.pm:947 standalone/drakconnect:432
-#, c-format
-msgid "Start at boot"
-msgstr "Spustit při startu"
-
-#: network/netconnect.pm:949 standalone/drakconnect:460
-#, c-format
-msgid "Metric"
-msgstr "Metrika"
-
-#: network/netconnect.pm:950
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr "Povolit tunel IPv6 na IPv4"
-
-#: network/netconnect.pm:952 standalone/drakconnect:369
-#: standalone/drakconnect:886
-#, c-format
-msgid "DHCP client"
-msgstr "DHCP klient"
-
-#: network/netconnect.pm:954 standalone/drakconnect:379
-#, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "Prodleva DHCP (sekundy)"
-
-#: network/netconnect.pm:955 standalone/drakconnect:382
-#, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "Získat adresy DNS serverů z DHCP"
-
-#: network/netconnect.pm:956 standalone/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr "Získat adresy YP serverů z DHCP"
-
-#: network/netconnect.pm:957 standalone/drakconnect:384
-#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr "Získat adresy NTPD serverů z DHCP"
-
-#: network/netconnect.pm:965 printer/printerdrake.pm:1876
-#: standalone/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP adresa musí být ve formátu 1.2.3.4"
-
-#: network/netconnect.pm:969 standalone/drakconnect:680
-#, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "Síťová maska by měla být ve formátu 255.255.224.0"
-
-#: network/netconnect.pm:973
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr "Varování: IP adresa %s je obyčejně rezervována!"
-
-#: network/netconnect.pm:978 standalone/drakTermServ:1927
-#: standalone/drakTermServ:1928 standalone/drakTermServ:1929
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s je již používán\n"
-
-#: network/netconnect.pm:1018
-#, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "Vyberte ovladač ndiswrapper"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr "Použít ovladač ndiswrapper %s"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Install a new driver"
-msgstr "Instalovat nový ovladač"
-
-#: network/netconnect.pm:1032
-#, c-format
-msgid "Select a device:"
-msgstr "Vyberte zařízení:"
-
-#: network/netconnect.pm:1061
-#, c-format
-msgid "Please enter the wireless parameters for this card:"
-msgstr "Zadejte prosím parametry bezdrátového připojení této karty:"
-
-#: network/netconnect.pm:1064 standalone/drakconnect:404
-#: standalone/drakroam:52
-#, c-format
-msgid "Operating Mode"
-msgstr "Operační režim"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Ad-hoc"
-msgstr "Ad-hoc"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Managed"
-msgstr "Spravované"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Master"
-msgstr "Primární"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Repeater"
-msgstr "Repeater"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Secondary"
-msgstr "Sekundární"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Auto"
-msgstr "Auto"
-
-#: network/netconnect.pm:1068 standalone/drakconnect:405
-#: standalone/drakroam:115
-#, c-format
-msgid "Network name (ESSID)"
-msgstr "Název sítě (ESSID)"
-
-#: network/netconnect.pm:1069 standalone/drakroam:116
-#, c-format
-msgid "Encryption mode"
-msgstr "Režim šifrování"
-
-#: network/netconnect.pm:1074
-#, c-format
-msgid "Allow access point roaming"
-msgstr "Povolit stěhování přístupového bodu"
-
-#: network/netconnect.pm:1076 standalone/drakconnect:406
-#, c-format
-msgid "Network ID"
-msgstr "ID sítě"
-
-#: network/netconnect.pm:1077 standalone/drakconnect:407
-#, c-format
-msgid "Operating frequency"
-msgstr "Operační frekvence"
-
-#: network/netconnect.pm:1078 standalone/drakconnect:408
-#, c-format
-msgid "Sensitivity threshold"
-msgstr "Práh citlivosti"
-
-#: network/netconnect.pm:1079 standalone/drakconnect:409
-#, c-format
-msgid "Bitrate (in b/s)"
-msgstr "Bitová rychlost (b/s)"
-
-#: network/netconnect.pm:1080 standalone/drakconnect:420
-#, c-format
-msgid "RTS/CTS"
-msgstr "RTS/CTS"
-
-#: network/netconnect.pm:1081
-#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
-"RTS/CTS přidává dodatečnou komunikaci před přenosem každého paketu, která\n"
-"zajišťuje, že je kanál volný. To je sice dodatečná zátěž, ale v případě "
-"skrytých uzlů\n"
-"nebo velkého počtu aktivních uzlů může zvýšit výkon. Tento parametr "
-"nastavuje velikost\n"
-"nejmenšího paketu, pro kterou uzel posílá RTS, hodnota rovná maximální "
-"velikosti\n"
-"paketu tuto funkci vypne. Lze také nastavit tento parametr na automatický, "
-"pevný nebo\n"
-"jej vypnout."
-
-#: network/netconnect.pm:1088 standalone/drakconnect:421
-#, c-format
-msgid "Fragmentation"
-msgstr "Fragmentace"
-
-#: network/netconnect.pm:1089 standalone/drakconnect:422
-#, c-format
-msgid "iwconfig command extra arguments"
-msgstr "dodatečné parametry příkazu iwconfig"
-
-#: network/netconnect.pm:1090
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-"Zde můžete nastavit dodatečné parametry pro bezdrátové připojení jako:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick je již nastaveno "
-"jako hostname).\n"
-"\n"
-"Více informací viz manuálová stránka iwconfig(8)."
-
-#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1097 standalone/drakconnect:423
-#, c-format
-msgid "iwspy command extra arguments"
-msgstr "dodatečné parametry příkazu lwspy"
-
-#: network/netconnect.pm:1098
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-"Příkaz lwspy se používá pro nastavení seznamu adres v rozhraní\n"
-"bezdrátové sítě a načítání informací o stavu sítě z každé z nich.\n"
-"\n"
-"Tato informace je stejná jako ta dostupná v souboru /proc/net/wireless:\n"
-"kvalita připojení, síla signálu a úroveň šumu.\n"
-"\n"
-"Více informací viz manuálová stránka iwpspy(8)."
-
-#: network/netconnect.pm:1107 standalone/drakconnect:424
-#, c-format
-msgid "iwpriv command extra arguments"
-msgstr "dodatečné parametry příkazu lwpriv"
-
-#: network/netconnect.pm:1108
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-"Příkaz lwpriv umožňuje nastavit volitelné (privátní) parametry rozhraní\n"
-"bezdrátové sítě.\n"
-"\n"
-"Příkaz lwpriv nakládá s parametry a nastavením specifickými pro každý "
-"ovladač\n"
-"(na rozdíl od příkazu iwconfig který nakládá s obecnými parametry).\n"
-"\n"
-"Teoreticky by měly být informace o příkazech specifických pro jednotlivá "
-"rozhraní\n"
-"dostupné v dokumentaci pro každý z ovladačů.\n"
-"\n"
-"Více informací viz manuálová stránka iwpriv(8)."
-
-#: network/netconnect.pm:1123
-#, c-format
-msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
-msgstr ""
-"Frekvence má povolené přípony k, M nebo G (například \"2,46G\" pro frekvenci "
-"2,46 GHz) nebo přidejte dostatek '0' (nul)."
-
-#: network/netconnect.pm:1127
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-"Intenzita má povolené přípony k, M nebo G (např. \"11M\" nebo 11M) nebo "
-"přidejte dostatečný počet '0' (nul)."
-
-#: network/netconnect.pm:1170
-#, c-format
-msgid "DVB configuration"
-msgstr "Nastavení DVB"
-
-#: network/netconnect.pm:1171
-#, c-format
-msgid "DVB Adapter"
-msgstr "Adaptér DVB"
-
-#: network/netconnect.pm:1188
-#, c-format
-msgid "DVB adapter settings"
-msgstr "Nastavení adaptéru DVB"
-
-#: network/netconnect.pm:1191
-#, c-format
-msgid "Adapter card"
-msgstr "Karta s adaptérem"
-
-#: network/netconnect.pm:1192
-#, c-format
-msgid "Net demux"
-msgstr "Síťový demux"
-
-#: network/netconnect.pm:1193
-#, c-format
-msgid "PID"
-msgstr "PID"
-
-#: network/netconnect.pm:1221
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Prosím zadejte název vašeho počítače.\n"
-"Tento název musí být úplný, jako 'mybox.mylab.myco.com'.\n"
-"Pokud používáte bránu(gateway), můžete také zadat její adresu"
-
-#: network/netconnect.pm:1226
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr "Jedním s posledních kroků je vložení IP adresy pro DNS server(y)."
-
-#: network/netconnect.pm:1228 standalone/drakconnect:991
-#, c-format
-msgid "Host name (optional)"
-msgstr "Název počítače (volitelné)"
-
-#: network/netconnect.pm:1228 standalone/drakhosts:197
-#, c-format
-msgid "Host name"
-msgstr "Název počítače"
-
-#: network/netconnect.pm:1230
-#, c-format
-msgid "DNS server 1"
-msgstr "DNS server 1"
-
-#: network/netconnect.pm:1231
-#, c-format
-msgid "DNS server 2"
-msgstr "DNS server 2"
-
-#: network/netconnect.pm:1232
-#, c-format
-msgid "DNS server 3"
-msgstr "DNS server 3"
-
-#: network/netconnect.pm:1233
-#, c-format
-msgid "Search domain"
-msgstr "Prohledávaná doména"
-
-#: network/netconnect.pm:1234
-#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr "Prohledávaná doména bude implicitně nastavena podle názvu počítače"
-
-#: network/netconnect.pm:1235
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Brána (např. %s)"
-
-#: network/netconnect.pm:1237
-#, c-format
-msgid "Gateway device"
-msgstr "Zařízení brány (gateway)"
-
-#: network/netconnect.pm:1246
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "Adresa serveru DNS by měla být ve tvaru 1.2.3.4"
-
-#: network/netconnect.pm:1251 standalone/drakconnect:685
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Adresa brány by měla být ve tvaru 1.2.3.4"
-
-#: network/netconnect.pm:1264
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-"Pokud chcete, zadejte název počítače pro Zeroconf.\n"
-"Pod tímto názvem bude váš počítač nabízet všechny\n"
-"své sdílené zdroje, které nejsou spravovány sítí.\n"
-"Na většině sítí není tento název nutný."
-
-#: network/netconnect.pm:1268
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Název počítače pro Zeroconf"
-
-#: network/netconnect.pm:1271
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "Název počítače pro Zeroconf nemůže obsahovat \"tečku\""
-
-#: network/netconnect.pm:1281
-#, c-format
-msgid "Do you want to allow users to start the connection?"
-msgstr "Chcete povolit uživatelům startovat připojení?"
-
-#: network/netconnect.pm:1294
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Chcete se automaticky připojovat po startu počítače?"
-
-#: network/netconnect.pm:1310
-#, c-format
-msgid "Automatically at boot"
-msgstr "Automaticky při startu"
-
-#: network/netconnect.pm:1312
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr "Pomocí Síťového apletu v systémovém panelu"
-
-#: network/netconnect.pm:1314
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr "Ručně (rozhraní bude stejně aktivováno při startu)"
-
-#: network/netconnect.pm:1323
-#, c-format
-msgid "How do you want to dial this connection?"
-msgstr "Jak chcete vytáčet toto spojení?"
-
-#: network/netconnect.pm:1336
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Chcete se nyní pokusit připojit k internetu?"
-
-#: network/netconnect.pm:1344 standalone/drakconnect:1023
-#, c-format
-msgid "Testing your connection..."
-msgstr "Testuji připojení k internetu..."
-
-#: network/netconnect.pm:1369
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Počítač je nyní připojen k internetu"
-
-#: network/netconnect.pm:1370
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Z bezpečnostních důvodů bude spojení ukončeno."
-
-#: network/netconnect.pm:1371
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Nepodařilo se připojit k Internetu.\n"
-"Pokuste se překonfigurovat dané připojení."
-
-#: network/netconnect.pm:1386
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-"Gratulujeme, konfigurace sítě a internetu je ukončena.\n"
-"\n"
-
-#: network/netconnect.pm:1389
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Doporučujeme po tomto kroku restartovat X Window,\n"
-"aby se předešlo problémům se změnou názvu počítače."
-
-#: network/netconnect.pm:1390
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-"Vyskytl se problém během konfigurace.\n"
-"Otestujte připojení k Internetu pomocí net_monitor nebo mcc. Pokud není "
-"spojení funkční, bude potřeba asi znovu načíst konfiguraci"
-
-#: network/netconnect.pm:1402
-#, c-format
-msgid "(detected on port %s)"
-msgstr "(nalezeno na portu %s)"
-
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected %s)"
-msgstr "(nalezeno %s)"
-
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected)"
-msgstr "(nalezeno)"
-
-#: network/netconnect.pm:1405
-#, c-format
-msgid "Network Configuration"
-msgstr "Nastavení sítě"
-
-#: network/netconnect.pm:1406
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Protože provádíte instalaci po síti, je již síť nastavena.\n"
-"Klepněte na Ok pro zachování nastavení nebo klepněte na Zrušit pro nové "
-"nastavení připojení Internetu a k síti.\n"
-
-#: network/netconnect.pm:1409
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr "Je potřeba restartovat síť. Chcete provést restart?"
-
-#: network/netconnect.pm:1410
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Vyskytl se problém při restartu sítě: \n"
-"\n"
-"%s"
-
-#: network/netconnect.pm:1411
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-"Nyní se bude nastavovat připojení %s.\n"
-"\n"
-"\n"
-"Stiskněte \"%s\" pro pokračování."
-
-#: network/netconnect.pm:1412
-#, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr "Konfigurace je ukončena, chcete toto nastavení použít?"
-
-#: network/netconnect.pm:1413
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Máte nastaveno více způsobů, jak se připojit k Internetu.\n"
-"Vyberte si jeden, který chcete použít.\n"
-"\n"
-
-#: network/netconnect.pm:1414
-#, c-format
-msgid "Internet connection"
-msgstr "Internetové připojení"
-
-#: network/netconnect.pm:1428
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-"Nastala neočekávaná chyba:\n"
-"%s"
-
-#: network/network.pm:411
-#, c-format
-msgid "Proxies configuration"
-msgstr "Nastavení proxy"
-
-#: network/network.pm:412
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-
-#: network/network.pm:413
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: network/network.pm:414
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: network/network.pm:415
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: network/network.pm:416
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: network/network.pm:420
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Proxy by měla být http://..."
-
-#: network/network.pm:421
-#, c-format
-msgid "Proxy should be https?://..."
-msgstr ""
-
-#: network/network.pm:422
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URL by mělo začínat znaky 'ftp:' nebo 'http:'"
-
-#: network/shorewall.pm:55
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-"Zadejte prosím název rozhraní, které je připojeno k Internetu.\n"
-"\n"
-"Příklady:\n"
-"\t\tppp+ pro modem nebo pro DSL připojení,\n"
-"\t\teth0 nebo eth1 pro připojení přes kabel,\n"
-"\t\tippp+ pro isdn připojení.\n"
-
-#: network/thirdparty.pm:232
-#, c-format
-msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
-msgstr ""
-"Zkopírujte mikrokód Alcatelu jako soubor mgmt.o do /usr/share/speedtouch/"
-
-#: network/thirdparty.pm:241
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-"Modem ECI Hi-Focus nelze podporovat díky problémům se šířením binárních "
-"ovladačů.\n"
-"\n"
-"Ovladač pro tento modem lze nalézt na adrese http://eciadsl.flashtux.org/"
-
-#: network/thirdparty.pm:321
-#, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "Nelze nainstalovat balíčky (%s)!"
-
-#: network/thirdparty.pm:329
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr "Jsou vyžadovány některé balíčky (%s), ale nejsou k dispozici."
-
-#: network/thirdparty.pm:330
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-"Tyto balíčky můžete nalézt v Mandriva klubu nebo v komerčních verzích "
-"Mandriva Linuxu."
-
-#: network/thirdparty.pm:332
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-"Požadované soubory lze rovněž instalovat z tohoto URL:\n"
-"%s"
-
-#: network/thirdparty.pm:372
-#, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "Na vašem systému Windows nelze nalézt \"%s\"!"
-
-#: network/thirdparty.pm:374
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr "Nebyl nalezen žádný systém s Windows!"
-
-#: network/thirdparty.pm:384
-#, c-format
-msgid "Insert floppy"
-msgstr "Vložte disketu"
-
-#: network/thirdparty.pm:385
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"Vložte disketu formátovanou systémem FAT do disketové jednotky %s s %s v "
-"kořenovém adresáři a stiskněte %s"
-
-#: network/thirdparty.pm:395
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Chyba při přístupu na disketu, zařízení %s nelze připojit"
-
-#: network/thirdparty.pm:405
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-"Pro Alcatel potřebujete speciální microcode.\n"
-"Můžete ho nyní nahrát z diskety, z Windows oddílu\n"
-"nebo tento krok přeskočit a nahrát jej později."
-
-#: network/thirdparty.pm:409 network/thirdparty.pm:411
-#, c-format
-msgid "Use a floppy"
-msgstr "Použít disketu"
-
-#: network/thirdparty.pm:409
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Použít oddíl s Windows"
-
-#: network/thirdparty.pm:419
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "Nepodařilo se zkopírovat firmware, soubor %s nebyl nalezen"
-
-#: network/thirdparty.pm:424 standalone/drakautoinst:250
-#: standalone/drakvpn:888 standalone/scannerdrake:422
-#, c-format
-msgid "Congratulations!"
-msgstr "Gratuluji!"
-
-#: network/thirdparty.pm:424
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "Kopírování firmware proběhlo úspěšně"
-
-#: network/thirdparty.pm:493
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr "Hledám potřebný software a ovladače..."
-
-#: network/thirdparty.pm:498
-#, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "Čekejte prosím, spouštím příkazy pro nastavení zařízení..."
-
-#: network/wireless.pm:8
-#, c-format
-msgid "Open WEP"
-msgstr "Otevřený WEP"
-
-#: network/wireless.pm:9
-#, c-format
-msgid "Restricted WEP"
-msgstr "Omezený WEP"
-
-#: network/wireless.pm:10
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr "WPA s předsdíleným klíčem"
-
-#: partition_table.pm:391
+#: partition_table.pm:390
#, c-format
msgid "mount failed: "
msgstr "chyba připojování: "
-#: partition_table.pm:496
+#: partition_table.pm:500
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Rozšířené diskové oddíly nejsou na tomto systému podporovány"
-#: partition_table.pm:514
+#: partition_table.pm:518
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
@@ -11790,22 +5114,27 @@ msgstr ""
"Jediné řešení je přesunout primární oddíly tak, abyste měli mezeru vedle\n"
"rozšířených oddílů."
-#: partition_table.pm:605
+#: partition_table.pm:597
+#, c-format
+msgid "Error reading file %s"
+msgstr "Chyba při čtení souboru %s"
+
+#: partition_table.pm:604
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Obnova ze souboru %s neuspěla: %s"
-#: partition_table.pm:607
+#: partition_table.pm:606
#, c-format
msgid "Bad backup file"
msgstr "Špatný záložní soubor"
-#: partition_table.pm:627
+#: partition_table.pm:626
#, c-format
msgid "Error writing to file %s"
msgstr "Chyba při zapisování do souboru %s"
-#: partition_table/raw.pm:253
+#: partition_table/raw.pm:264
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
@@ -11817,3493 +5146,47 @@ msgstr ""
"Test na integritu dat selhal. \n"
"To znamená, že zápis na tento disk může skončit nepředvídaně a poškodit data."
-#: pkgs.pm:21
-#, c-format
-msgid "must have"
-msgstr "musíte mít"
-
-#: pkgs.pm:22
-#, c-format
-msgid "important"
-msgstr "důležité"
-
-#: pkgs.pm:23
-#, c-format
-msgid "very nice"
-msgstr "nejméně důležité"
-
-#: pkgs.pm:24
-#, c-format
-msgid "nice"
-msgstr "nedůležité"
-
-#: pkgs.pm:25
-#, c-format
-msgid "maybe"
-msgstr "může se hodit"
-
-#: pkgs.pm:474
-#, c-format
-msgid "Downloading file %s..."
-msgstr "Stahuji soubor %s..."
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on %s)"
-msgstr "(na %s)"
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on this machine)"
-msgstr "(na tomto počítači)"
-
-#: printer/cups.pm:117 standalone/printerdrake:200
-#, c-format
-msgid "Configured on other machines"
-msgstr "Nastaveno na jiném počítači"
-
-#: printer/cups.pm:119
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Na serveru CUPS \"%s\""
-
-#: printer/cups.pm:119 printer/printerdrake.pm:4909
-#: printer/printerdrake.pm:4919 printer/printerdrake.pm:5078
-#: printer/printerdrake.pm:5089 printer/printerdrake.pm:5303
-#, c-format
-msgid " (Default)"
-msgstr " (Výchozí)"
-
-#: printer/data.pm:67
-#, c-format
-msgid "PDQ - Print, Do not Queue"
-msgstr "PDQ - Tisk bez ukládání do fronty"
-
-#: printer/data.pm:68
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: printer/data.pm:80
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Démon pro tiskárny"
-
-#: printer/data.pm:81
-#, c-format
-msgid "LPD"
-msgstr "LPD"
-
-#: printer/data.pm:102
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LprNG - LPR Nové generace"
-
-#: printer/data.pm:103
-#, c-format
-msgid "LPRng"
-msgstr "LprNG"
-
-#: printer/data.pm:128
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Tiskový systém pro Unix"
-
-#: printer/data.pm:158
-#, c-format
-msgid "CUPS - Common Unix Printing System (remote server)"
-msgstr "CUPS - Tiskový systém pro Unix (vzdálený server)"
-
-#: printer/data.pm:159
-#, c-format
-msgid "Remote CUPS"
-msgstr "Vzdálený CUPS"
-
-#: printer/detect.pm:168 printer/detect.pm:263 printer/detect.pm:498
-#: printer/detect.pm:571 printer/main.pm:330 printer/main.pm:692
-#: printer/main.pm:1815 printer/printerdrake.pm:960
-#: printer/printerdrake.pm:1120 printer/printerdrake.pm:2448
-#: printer/printerdrake.pm:4004
-#, c-format
-msgid "Unknown model"
-msgstr "Neznámý model"
-
-#: printer/main.pm:24
-#, c-format
-msgid "Local printer"
-msgstr "Místní tiskárna"
-
-#: printer/main.pm:25
-#, c-format
-msgid "Remote printer"
-msgstr "Vzdálená tiskárna"
-
-#: printer/main.pm:26
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Tiskárna na vzdáleném CUPS serveru"
-
-#: printer/main.pm:27 printer/printerdrake.pm:1360
-#: printer/printerdrake.pm:1899
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Tiskárna na vzdálený lpd serveru"
-
-#: printer/main.pm:28
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Síťová tiskárna (TCP/Socket)"
-
-#: printer/main.pm:29
-#, c-format
-msgid "Printer on SMB/Windows server"
-msgstr "Tiskárna na serveru SMB/Windows"
-
-#: printer/main.pm:30
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Tiskárna na Netware serveru"
-
-#: printer/main.pm:31 printer/printerdrake.pm:1903
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Zadejte URI tiskového zařízení"
-
-#: printer/main.pm:32
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Poslat tiskovou úlohu do příkazu"
-
-#: printer/main.pm:43
-#, c-format
-msgid "recommended"
-msgstr "doporučeno"
-
-#: printer/main.pm:355 standalone/printerdrake:199
-#, c-format
-msgid "Configured on this machine"
-msgstr "Nastaveno na tomto počítači"
-
-#: printer/main.pm:361 printer/printerdrake.pm:1445
-#, c-format
-msgid " on parallel port #%s"
-msgstr " na paralelním portu #%s"
-
-#: printer/main.pm:364 printer/printerdrake.pm:1448
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", USB tiskárna #%s"
-
-#: printer/main.pm:366
-#, c-format
-msgid ", USB printer"
-msgstr ", USB tiskárna"
-
-#: printer/main.pm:370
-#, c-format
-msgid ", HP printer on a parallel port"
-msgstr ", tiskárna HP na paralelním portu"
-
-#: printer/main.pm:372
-#, c-format
-msgid ", HP printer on USB"
-msgstr ", tiskárna HP na USB"
-
-#: printer/main.pm:374
-#, c-format
-msgid ", HP printer on HP JetDirect"
-msgstr ", tiskárna HP na HP JetDirect"
-
-#: printer/main.pm:376
-#, c-format
-msgid ", HP printer"
-msgstr ", tiskárna HP"
-
-#: printer/main.pm:382
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", multifunkční zařízení na paralelním portu #%s"
-
-#: printer/main.pm:385
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", multifunkční zařízení na paralelním portu"
-
-#: printer/main.pm:387
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", multifunkční zařízení na USB"
-
-#: printer/main.pm:389
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", multifunkční zařízení na HP JetDirect"
-
-#: printer/main.pm:391
-#, c-format
-msgid ", multi-function device"
-msgstr ", multifunkční zařízení"
-
-#: printer/main.pm:395
-#, c-format
-msgid ", printing to %s"
-msgstr ", při tisku na %s"
-
-#: printer/main.pm:398
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr " na serveru LPD \"%s\", tiskárna \"%s\""
-
-#: printer/main.pm:401
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP hostitel \"%s\", port %s"
-
-#: printer/main.pm:406
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr " na serveru SMB/Windows \"%s\", sdílená jako \"%s\""
-
-#: printer/main.pm:411
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " na serveru Novell \"%s\", tiskárna \"%s\""
-
-#: printer/main.pm:414
-#, c-format
-msgid ", using command %s"
-msgstr ", používá příkaz %s"
-
-#: printer/main.pm:429
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Paralelní port #%s"
-
-#: printer/main.pm:432 printer/printerdrake.pm:1466
-#: printer/printerdrake.pm:1493 printer/printerdrake.pm:1508
-#, c-format
-msgid "USB printer #%s"
-msgstr "USB tiskárna #%s"
-
-#: printer/main.pm:434
-#, c-format
-msgid "USB printer"
-msgstr "USB tiskárna"
-
-#: printer/main.pm:438
-#, c-format
-msgid "HP printer on a parallel port"
-msgstr "Tiskárna HP na paralelním portu"
-
-#: printer/main.pm:440
-#, c-format
-msgid "HP printer on USB"
-msgstr "Tiskárna HP na USB"
-
-#: printer/main.pm:442
-#, c-format
-msgid "HP printer on HP JetDirect"
-msgstr "Tiskárna HP na HP JetDirect"
-
-#: printer/main.pm:444
-#, c-format
-msgid "HP printer"
-msgstr "Tiskárna HP"
-
-#: printer/main.pm:450
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Multifunkční zařízení na paralelním portu #%s"
-
-#: printer/main.pm:453
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Multifunkční zařízení na paralelním portu"
-
-#: printer/main.pm:455
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "Multifunkční zařízení na USB"
-
-#: printer/main.pm:457
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Multifunkční zařízení na HP JetDirect"
-
-#: printer/main.pm:459
-#, c-format
-msgid "Multi-function device"
-msgstr "Multifunkční zařízení"
-
-#: printer/main.pm:463
-#, c-format
-msgid "Prints into %s"
-msgstr "Tisk na %s"
-
-#: printer/main.pm:466
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "LPD server \"%s\", tiskárna \"%s\""
-
-#: printer/main.pm:469
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "TCP/IP hostitel \"%s\", port %s"
-
-#: printer/main.pm:474
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "SMB/Windows server \"%s\", sdílená jako \"%s\""
-
-#: printer/main.pm:479
-#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Novell server \"%s\", tiskárna \"%s\""
-
-#: printer/main.pm:482
-#, c-format
-msgid "Uses command %s"
-msgstr "Používá příkaz %s"
-
-#: printer/main.pm:484
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
-
-#: printer/main.pm:689 printer/printerdrake.pm:1047
-#: printer/printerdrake.pm:3142
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Přímý tisk (bez ovladače)"
-
-#: printer/main.pm:1309 printer/printerdrake.pm:211
-#: printer/printerdrake.pm:223
-#, c-format
-msgid "Local network(s)"
-msgstr "Lokální síť(ě)"
-
-#: printer/main.pm:1311 printer/printerdrake.pm:227
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Rozhraní \"%s\""
-
-#: printer/main.pm:1313
-#, c-format
-msgid "Network %s"
-msgstr "Síť %s"
-
-#: printer/main.pm:1315
-#, c-format
-msgid "Host %s"
-msgstr "Počítač %s"
-
-#: printer/main.pm:1344
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Port %s)"
-
-#: printer/main.pm:1945 printer/main.pm:2100
-#, c-format
-msgid "user-supplied"
-msgstr ""
-
-#: printer/main.pm:1949 printer/main.pm:2104
-#, c-format
-msgid "NEW"
-msgstr ""
-
-#: printer/printerdrake.pm:24
-#, c-format
-msgid ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"decompressing the self-extracting '.exe' file with the 'unzip' utility and "
-"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
-"printer' directory. There it will be found by the automatic uploader script "
-"and uploaded whenever the printer is connected and turned on.\n"
-msgstr ""
-"Tiskárna HP LaserJet 1000 potřebuje po spuštění nahrát firmware. Stáhněte si "
-"z webových stránek HP ovladače pro Windows (firmware na dodávaném CD s "
-"tiskárnou nefunguje) a vyextrahujte z nich pomocí programu 'unzip' soubor "
-"'sihp1000.img'. Tento soubor nakopírujte do adresáře '/etc/printer'. Skript "
-"pro automatický upload potom tento soubor automaticky nahraje do tiskárny "
-"kdykoliv bude připojena a zapnuta.\n"
-
-#: printer/printerdrake.pm:67
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "Nastavení tiskáren přes CUPS"
-
-#: printer/printerdrake.pm:68
-#, c-format
-msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessible by remote machines and by which remote machines."
-msgstr ""
-"Zde můžete rozhodnout, zda tiskárny připojené k tomuto počítači budou "
-"vzdáleně přístupné a z kterých vzdálených počítačů."
-
-#: printer/printerdrake.pm:69
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-"Můžete se rozhodnout, zda všechny tiskárny na vzdálených počítačích budou "
-"dostupné i na tomto počítači"
-
-#: printer/printerdrake.pm:72 printer/printerdrake.pm:506
-#: printer/printerdrake.pm:4542
-#, c-format
-msgid "Remote CUPS server and no local CUPS daemon"
-msgstr "Vzdálený server CUPS bez lokálního démona CUPS"
-
-#: printer/printerdrake.pm:75
-#, c-format
-msgid "On"
-msgstr "Zapnuto"
-
-#: printer/printerdrake.pm:77 printer/printerdrake.pm:498
-#: printer/printerdrake.pm:525
-#, c-format
-msgid "Off"
-msgstr "Vypnuto"
-
-#: printer/printerdrake.pm:78 printer/printerdrake.pm:507
-#, c-format
-msgid ""
-"In this mode the local CUPS daemon will be stopped and all printing requests "
-"go directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-"V tomto režimu bude lokální démon CUPS zastaven a všechny požadavky na tisk "
-"budou přímo přeposlány na server zadaný níže. Vezměte na vědomí, že v "
-"takovém případě není možné definovat lokální tiskové fronty a pokud není "
-"uvedený server dostupný, nebude možné z tohoto počítače tisknout vůbec."
-
-#: printer/printerdrake.pm:84
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Tiskárny na tomto počítači jsou přístupné jiným vzdáleným počítačům"
-
-#: printer/printerdrake.pm:89
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Automaticky nalézt dostupné tiskárny na vzdálených počítačích"
-
-#: printer/printerdrake.pm:94
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Tiskárny sdílené na počítačích/síti: "
-
-#: printer/printerdrake.pm:96
-#, c-format
-msgid "Custom configuration"
-msgstr "Vlastní nastavení"
-
-#: printer/printerdrake.pm:101 standalone/scannerdrake:610
-#: standalone/scannerdrake:627
-#, c-format
-msgid "No remote machines"
-msgstr "Nejsou žádné vzdálené počítače"
-
-#: printer/printerdrake.pm:112
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Další CUPS servery: "
-
-#: printer/printerdrake.pm:119
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"Pro získání přístupu na vzdálené CUPS servery v lokální síti potřebujete "
-"pouze povolit volbu \"Automaticky nalézt dostupné tiskárny na vzdálených "
-"počítačích\". CUPS server následně informuje o těchto tiskárnách. Všechny "
-"známé tiskárny potom budou vypsány v sekci \"Vzdálené tiskárny\" v hlavním "
-"okně aplikace PrinterDrake. Pokud CUPS server(y) nejsou ve vaší lokální "
-"síti, musíte zadat IP adresu a volitelně také číslo portu, aby bylo možné "
-"uvedené informace ze serverů získat."
-
-#: printer/printerdrake.pm:127
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Tiskový režim pro japonský text"
-
-#: printer/printerdrake.pm:128
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in Japanese language. Only "
-"use this function if you really want to print text in Japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print Japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Tato volba dovoluje tisk textových souborů v japonštině. Použijte tuto "
-"funkci pouze pokud opravdu potřebujete tisknout v japonštině, pokud je "
-"zvolena, nelze už tisknout národní znaky v latince a nelze nastavovat "
-"okraje, velikost fontů, atd. Toto nastavení se týká pouze tiskáren "
-"definovaných na tomto počítači. Pokud chcete tisknout japonské texty na "
-"vzdálené tiskárně, musíte tuto funkci aktivovat na vzdáleném počítači."
-
-#: printer/printerdrake.pm:135
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Automatická korekce nastavení pro CUPS"
-
-#: printer/printerdrake.pm:137
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Pokud je tato volba zvolena, pak je při každém startu CUPS démona "
-"automaticky zajištěno že\n"
-"\n"
-"- pokud je nainstalován LPD/LPRng, nebude CUPS přepisovat /etc/printcap\n"
-"\n"
-"- pokud chybí soubor /etc/cups/cupsd.conf, tak bude vytvořen\n"
-"\n"
-"- pokud jsou rozesílány informace do sítě, nebudou obsahovat v názvu serveru "
-"\"localhost\".\n"
-"\n"
-"Pokud některá volba způsobuje problémy, vypněte tuto volbu, ale potom si na "
-"tyto zmíněné body musíte dávat pozor."
-
-#: printer/printerdrake.pm:161 printer/printerdrake.pm:236
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Sdílení lokálních tiskáren"
-
-#: printer/printerdrake.pm:162
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-"Zde jsou počítače a sítě, na kterých budou dostupné lokální tiskárna(y):"
-
-#: printer/printerdrake.pm:173
-#, c-format
-msgid "Add host/network"
-msgstr "Přidat počítač/síť"
-
-#: printer/printerdrake.pm:179
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Upravit vybraný počítač/síť"
-
-#: printer/printerdrake.pm:188
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Odstranit vybraný počítač/síť"
-
-#: printer/printerdrake.pm:219 printer/printerdrake.pm:229
-#: printer/printerdrake.pm:241 printer/printerdrake.pm:248
-#: printer/printerdrake.pm:279 printer/printerdrake.pm:297
-#, c-format
-msgid "IP address of host/network:"
-msgstr "IP adresa počítače/sítě:"
-
-#: printer/printerdrake.pm:237
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr "Vyberte síť nebo počítač, na kterém budou lokální tiskárny dostupné:"
-
-#: printer/printerdrake.pm:244
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Chybí IP adresa počítače/sítě."
-
-#: printer/printerdrake.pm:252
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "Zadaná IP adresa pro počítač nebo síť není správná.\n"
-
-#: printer/printerdrake.pm:253 printer/printerdrake.pm:429
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Příklady správných IP adres:\n"
-
-#: printer/printerdrake.pm:277
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr "Tento počítač/síť je již na seznamu, nelze jej znova přidat.\n"
-
-#: printer/printerdrake.pm:346 printer/printerdrake.pm:416
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Přístup k tiskárnám na vzdáleném CUPS serveru"
-
-#: printer/printerdrake.pm:347
-#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
-"Přidejte sem ty CUPS servery, ze kterých budete chtít využívat tiskárny. Je "
-"to nutné pouze v případě, že tyto servery nešíří informace informace o "
-"tiskárnách v lokální síti."
-
-#: printer/printerdrake.pm:358
-#, c-format
-msgid "Add server"
-msgstr "Přidat server"
-
-#: printer/printerdrake.pm:364
-#, c-format
-msgid "Edit selected server"
-msgstr "Upravit vybraný server"
-
-#: printer/printerdrake.pm:373
-#, c-format
-msgid "Remove selected server"
-msgstr "Odstranit vybraný server"
-
-#: printer/printerdrake.pm:417
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-"Zadejte IP adresu a port počítače, ze kterého budete chtít využívat tiskárny."
-
-#: printer/printerdrake.pm:418
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "Pokud není zadán žádný port, bude jako výchozí použit port 631."
-
-#: printer/printerdrake.pm:422
-#, c-format
-msgid "Server IP missing!"
-msgstr "Chybí IP adresa serveru!"
-
-#: printer/printerdrake.pm:428
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Zadaná IP adresa není správná.\n"
-
-#: printer/printerdrake.pm:440 printer/printerdrake.pm:2133
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Číslo portu musí být celé číslo!"
-
-#: printer/printerdrake.pm:451
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "Tento server je již na seznamu, nelze jej tedy opět přidat.\n"
-
-#: printer/printerdrake.pm:462 printer/printerdrake.pm:2160
-#: standalone/drakups:249 standalone/harddrake2:52
-#, c-format
-msgid "Port"
-msgstr "Port"
-
-#: printer/printerdrake.pm:495 printer/printerdrake.pm:511
-#: printer/printerdrake.pm:526 printer/printerdrake.pm:530
-#: printer/printerdrake.pm:536
-#, c-format
-msgid "On, Name or IP of remote server:"
-msgstr "Zapnuto, název nebo IP adresa vzdáleného serveru:"
-
-#: printer/printerdrake.pm:514 printer/printerdrake.pm:4551
-#: printer/printerdrake.pm:4617
-#, c-format
-msgid "CUPS server name or IP address missing."
-msgstr "Chybí název nebo IP adresa serveru CUPS."
-
-#: printer/printerdrake.pm:566 printer/printerdrake.pm:586
-#: printer/printerdrake.pm:811 printer/printerdrake.pm:880
-#: printer/printerdrake.pm:901 printer/printerdrake.pm:927
-#: printer/printerdrake.pm:1023 printer/printerdrake.pm:1065
-#: printer/printerdrake.pm:1075 printer/printerdrake.pm:1110
-#: printer/printerdrake.pm:2220 printer/printerdrake.pm:2490
-#: printer/printerdrake.pm:2524 printer/printerdrake.pm:2575
-#: printer/printerdrake.pm:2582 printer/printerdrake.pm:2621
-#: printer/printerdrake.pm:2663 printer/printerdrake.pm:2700
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2984
-#: printer/printerdrake.pm:2989 printer/printerdrake.pm:3137
-#: printer/printerdrake.pm:3248 printer/printerdrake.pm:3862
-#: printer/printerdrake.pm:3929 printer/printerdrake.pm:3978
-#: printer/printerdrake.pm:3981 printer/printerdrake.pm:4091
-#: printer/printerdrake.pm:4149 printer/printerdrake.pm:4221
-#: printer/printerdrake.pm:4242 printer/printerdrake.pm:4252
-#: printer/printerdrake.pm:4342 printer/printerdrake.pm:4437
-#: printer/printerdrake.pm:4443 printer/printerdrake.pm:4471
-#: printer/printerdrake.pm:4578 printer/printerdrake.pm:4687
-#: printer/printerdrake.pm:4707 printer/printerdrake.pm:4716
-#: printer/printerdrake.pm:4731 printer/printerdrake.pm:4932
-#: printer/printerdrake.pm:5407 printer/printerdrake.pm:5490
-#: standalone/printerdrake:75 standalone/printerdrake:590
-#, c-format
-msgid "Printerdrake"
-msgstr "PrinterDrake"
-
-#: printer/printerdrake.pm:567 printer/printerdrake.pm:4150
-#: printer/printerdrake.pm:4688
-#, c-format
-msgid "Reading printer data..."
-msgstr "Načítám data k tisku ..."
-
-#: printer/printerdrake.pm:587
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "Restartuji CUPS..."
-
-#: printer/printerdrake.pm:614
-#, c-format
-msgid ""
-"Allow pop-up windows, printer setup and package installation may be canceled"
-msgstr ""
-"Povolit vyskakovací okna, s možností zrušit nastavení a instalaci balíčků"
-
-#: printer/printerdrake.pm:616
-#, c-format
-msgid ""
-"No pop-up windows, printer setup and package installation cannot be canceled"
-msgstr ""
-"Bez vyskakovacích oken, bez možnosti zrušit nastavení a instalaci balíčků"
-
-#: printer/printerdrake.pm:622
-#, c-format
-msgid "Printer auto administration"
-msgstr "Automatická správa tiskárny"
-
-#: printer/printerdrake.pm:623
-#, c-format
-msgid ""
-"Here you can configure printer administration tasks which should be done "
-"automatically."
-msgstr ""
-"Zde můžete nastavit ty úlohy správy tiskárny, které by měly být prováděny "
-"automaticky."
-
-#: printer/printerdrake.pm:626
-#, c-format
-msgid "Do automatic configuration of new printers"
-msgstr "Provádět automatické nastavení nových tiskáren"
-
-#: printer/printerdrake.pm:627 printer/printerdrake.pm:641
-#, c-format
-msgid "when a USB printer is connected and turned on"
-msgstr "při připojení a zapnutí USB tiskárny"
-
-#: printer/printerdrake.pm:630
-#, c-format
-msgid "when Printerdrake is started"
-msgstr "při startu aplikace Printerdrake"
-
-#: printer/printerdrake.pm:634
-#, c-format
-msgid "Mode for automatic printer setup:"
-msgstr "Režim automatického nastavení tiskárny:"
-
-#: printer/printerdrake.pm:640
-#, c-format
-msgid "Re-enable disabled printers"
-msgstr "Zpřístupnit znepřístupněné tiskárny"
-
-#: printer/printerdrake.pm:644
-#, c-format
-msgid "when the printing system is started"
-msgstr "při startu tiskového systému"
-
-#: printer/printerdrake.pm:680
-#, c-format
-msgid "Communication error handling for the printer \"%s\""
-msgstr "Zpracování chyb při komunikaci s tiskárnou \"%s\""
-
-#: printer/printerdrake.pm:682
-#, c-format
-msgid ""
-"Here you can configure how errors during the communication between your "
-"computer and the printer \"%s\" should be handled (for example if the "
-"printer is not turned on)."
-msgstr ""
-"Zde můžete nastavit, jak by se měly zpracovat chyby při komunikaci mezi "
-"tiskárnou \"%s\" a vašim počítačem (například pokud je tiskárna vypnutá)."
-
-#: printer/printerdrake.pm:686
-#, c-format
-msgid "The number of retries should be an integer number of at least 1!"
-msgstr "Počet pokusů musí být celé číslo větší nebo rovno 1!"
-
-#: printer/printerdrake.pm:690
-#, c-format
-msgid "The delay between retries should be a positive integer number!"
-msgstr "Prodleva mezi pokusy musí být kladné celé číslo!"
-
-#: printer/printerdrake.pm:701
-#, c-format
-msgid "Do not disable the printer"
-msgstr "Ponechat tiskárnu přístupnou"
-
-#: printer/printerdrake.pm:704
-#, c-format
-msgid "Retry infinitely often"
-msgstr "Často a donekonečna zkoušet znovu"
-
-#: printer/printerdrake.pm:707
-#, c-format
-msgid "Number of retries"
-msgstr "Počet dalších pokusů"
-
-#: printer/printerdrake.pm:712
-#, c-format
-msgid "Delay between retries (in sec)"
-msgstr "Prodleva mezi pokusy (s)"
-
-#: printer/printerdrake.pm:745 printer/printerdrake.pm:765
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Zvolte připojení tiskárny"
-
-#: printer/printerdrake.pm:746
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Jak je tiskárna připojena?"
-
-#: printer/printerdrake.pm:748
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"V případě vzdáleného CUPS serveru nemusíte nastavovat tiskárny zde,\n"
-"tiskárny budou automaticky detekovány."
-
-#: printer/printerdrake.pm:751 printer/printerdrake.pm:4934
-#, c-format
-msgid ""
-"\n"
-"WARNING: No local network connection active, remote printers can neither be "
-"detected nor tested!"
-msgstr ""
-"\n"
-"VAROVÁNÍ: Není aktivní žádné připojení do lokální sítě. Vzdálené tiskárny "
-"nelze zjistit ani otestovat!"
-
-#: printer/printerdrake.pm:758
-#, c-format
-msgid ""
-"Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"
-msgstr "Autodetekce tiskárny (lokální, TCP/soket, tiskárny SMB a URI zařízení)"
-
-#: printer/printerdrake.pm:760
-#, c-format
-msgid "Modify timeout for network printer auto-detection"
-msgstr "Upravit prodlevu při hledání síťové tiskárny"
-
-#: printer/printerdrake.pm:766
-#, c-format
-msgid "Enter the timeout for network printer auto-detection (in msec) here. "
-msgstr "Zadejte prodlevu při hledání síťové tiskárny (v ms)."
-
-#: printer/printerdrake.pm:768
-#, c-format
-msgid ""
-"The longer you choose the timeout, the more reliable the detections of "
-"network printers will be, but the scan can take longer then, especially if "
-"there are many machines with local firewalls in the network. "
-msgstr ""
-"Čím delší prodlevu zvolíte, tím spolehlivější hledání síťové tiskárny bude. "
-"Hledání pak ale může trvat dlouho, zvláště pokud je na síti mnoho počítačů s "
-"lokálními firewally."
-
-#: printer/printerdrake.pm:772
-#, c-format
-msgid "The timeout must be a positive integer number!"
-msgstr "Prodleva musí být kladné celé číslo!"
-
-#: printer/printerdrake.pm:811
-#, c-format
-msgid "Checking your system..."
-msgstr "Zkoumám váš počítač..."
-
-#: printer/printerdrake.pm:829
-#, c-format
-msgid "and one unknown printer"
-msgstr "a jedna neznámá tiskárna"
-
-#: printer/printerdrake.pm:831
-#, c-format
-msgid "and %d unknown printers"
-msgstr "a %d neznámých tiskáren"
-
-#: printer/printerdrake.pm:835
-#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Následující tiskárny\n"
-"\n"
-"%s %s\n"
-"jsou přímo připojeny k vašemu počítači"
-
-#: printer/printerdrake.pm:837
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Následující tiskárny\n"
-"\n"
-"%s %s\n"
-"jsou přímo připojeny k vašemu počítači"
-
-#: printer/printerdrake.pm:838
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-"Následující tiskárna\n"
-"\n"
-"%s %s\n"
-"je přímo připojena k vašemu počítači"
-
-#: printer/printerdrake.pm:842
-#, c-format
-msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
-"\n"
-"Našel jsem jednu neznámou tiskárnu přímo připojenou k vašemu počítači"
-
-#: printer/printerdrake.pm:843
-#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
-"\n"
-"Našel jsem %d neznámých tiskáren přímo připojených k vašemu počítači"
-
-#: printer/printerdrake.pm:846
-#, c-format
-msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "Na vašem počítači nebyla nalezena žádná přímo připojená tiskárna"
-
-#: printer/printerdrake.pm:849
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr " (Zkontrolujte to, že všechny tiskárny jsou připojeny a zapnuty).\n"
-
-#: printer/printerdrake.pm:862
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
-"Chcete povolit tisk na tiskárnách vypsaných výše nebo na tiskárnách v "
-"lokální síti?\n"
-
-#: printer/printerdrake.pm:863
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Chcete povolit tisk na tiskárnách v lokální síti?\n"
-
-#: printer/printerdrake.pm:865
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Chcete povolit tisk na tiskárnách vypsaných výše?\n"
-
-#: printer/printerdrake.pm:866
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Opravdu chcete nastavit tisk na tomto počítači?\n"
-
-#: printer/printerdrake.pm:867
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
-"POZNÁMKA: V závislosti na modelu tiskárny a tiskovém systému je potřeba "
-"nainstalovat dalších %d MB potřebného software."
-
-#: printer/printerdrake.pm:884
-#, c-format
-msgid "Do not setup printer automatically now, and never do it again"
-msgstr "Neprovádět automatické nastavení tiskárny a příště to už nezkoušet"
-
-#: printer/printerdrake.pm:928
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Vyhledávám nové tiskárny..."
-
-#: printer/printerdrake.pm:976
-#, c-format
-msgid "Do not setup printer automatically again"
-msgstr "Neprovádět znovu automatické nastavení tiskárny"
-
-#: printer/printerdrake.pm:983
-#, c-format
-msgid "New printers found"
-msgstr "Byly nalezeny nové tiskárny"
-
-#: printer/printerdrake.pm:984
-#, c-format
-msgid "New printer found"
-msgstr "Byla nalezena nová tiskárna"
-
-#: printer/printerdrake.pm:986
-#, c-format
-msgid ""
-"The following new printers were found and Printerdrake can automatically set "
-"them up for you. If you do not want to have all of them set up, unselect the "
-"ones which should be skipped, or click \"Cancel\" to set up none of them.\n"
-msgstr ""
-"Následující tiskárny byly nově nalezeny a Printerdrake je pro vás může "
-"automaticky nastavit. Pokud nechcete nastavit všechny, odznačte ty z nich, "
-"které by se měly přeskočit, nebo stiskněte tlačítko \"Zrušit\" a nenastaví "
-"se žádná.\n"
-
-#: printer/printerdrake.pm:987
-#, c-format
-msgid ""
-"The following new printer was found and printerdrake can automatically set "
-"it up for you. If you do not want to have it set up, unselect it, or click "
-"\"Cancel\".\n"
-msgstr ""
-"Byla nalezena následující nová tiskárna a Printerdrake ji může pro vás "
-"automaticky nastavit. Pokud ji nechcete nastavit, odznačte ji, nebo "
-"stiskněte tlačítko \"Zrušit\".\n"
-
-#: printer/printerdrake.pm:988
-#, c-format
-msgid ""
-"Note that for certain printer models additional packages need to be "
-"installed. So keep your installation media handy.\n"
-msgstr ""
-"Pro některé modely tiskáren je třeba nainstalovat dodatečné balíčky. Mějte "
-"proto po ruce instalační média.\n"
-
-#: printer/printerdrake.pm:1024 printer/printerdrake.pm:1066
-#, c-format
-msgid "Configuring printer on %s..."
-msgstr "Nastavuji tiskárnu na %s..."
-
-#: printer/printerdrake.pm:1049
-#, c-format
-msgid "("
-msgstr "("
-
-#: printer/printerdrake.pm:1050
-#, c-format
-msgid " on "
-msgstr " na "
-
-#: printer/printerdrake.pm:1051 standalone/scannerdrake:137
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: printer/printerdrake.pm:1056 printer/printerdrake.pm:3149
-#, c-format
-msgid "Printer model selection"
-msgstr "Výběr modelu tiskárny"
-
-#: printer/printerdrake.pm:1057 printer/printerdrake.pm:3150
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Jaký model tiskárny máte?"
-
-#: printer/printerdrake.pm:1058
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-"\n"
-"\n"
-"PrinterDrake nemohl zjistit model vaší tiskárny %s. Prosím vyberte si "
-"odpovídající model ze seznamu."
-
-#: printer/printerdrake.pm:1061 printer/printerdrake.pm:3155
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Pokud není tiskárna v seznamu, vyberte kompatibilní nebo podobný model "
-"(podívejte se do manuálu)"
-
-#: printer/printerdrake.pm:1076 printer/printerdrake.pm:4708
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Nastavuji tiskárnu \"%s\"..."
-
-#: printer/printerdrake.pm:1111
-#, c-format
-msgid ""
-"Now you have turned off automatic printer setup.\n"
-"\n"
-msgstr ""
-"Nyní bylo vypnuto automatické nastavování tiskáren.\n"
-"\n"
-
-#: printer/printerdrake.pm:1112
-#, c-format
-msgid ""
-"You can turn it back on again by choosing \"%s\" -> \"%s\" in Printerdrake's "
-"main menu. "
-msgstr ""
-"Můžete je zapnout zpět výběrem \"%s\" -> \"%s\" v hlavním menu aplikace "
-"Printerdrake."
-
-#: printer/printerdrake.pm:1112 printer/printerdrake.pm:4984
-#, c-format
-msgid "Configure Auto Administration"
-msgstr "Nastavení automatické správy"
-
-#: printer/printerdrake.pm:1113
-#, c-format
-msgid ""
-"There you can also choose in which situation automatic printer setup is done "
-"(On Printerdrake startup, on printing system startup, when connecting a new "
-"USB printer)."
-msgstr ""
-"Zde můžete rovněž vybrat, v jakých případech se má automatické nastavení "
-"tiskárny provádět. (Při startu aplikace Printerdrake, při startu tiskového "
-"systému, při připojení USB tiskárny.)"
-
-#: printer/printerdrake.pm:1261 printer/printerdrake.pm:1273
-#: printer/printerdrake.pm:1380 printer/printerdrake.pm:2401
-#: printer/printerdrake.pm:2460 printer/printerdrake.pm:2556
-#: printer/printerdrake.pm:4951 printer/printerdrake.pm:5138
-#, c-format
-msgid "Add a new printer"
-msgstr "Přidat novou tiskárnu"
-
-#: printer/printerdrake.pm:1262
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Vítejte v průvodci nastavením tisku\n"
-"\n"
-"Tento průvodce vám pomůže nainstalovat lokální nebo vzdálené tiskárnu(y), "
-"které je možné následně využít na vzdáleném počítači na síti.\n"
-"\n"
-"Budete dotázáni na všechny potřebné informace pro nastavení tiskárny, můžete "
-"si vybrat se všech tiskových ovladačů a typů připojení tiskárny."
-
-#: printer/printerdrake.pm:1275
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected. Also your network printer(s) and your Windows "
-"machines must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you do not "
-"need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Vítejte v Průvodci nastavením tiskárny\n"
-"\n"
-"Tento průvodce vám pomůže nainstalovat vaši tiskárnu nebo tiskárny připojené "
-"k tomuto počítači, přímo k síti, nebo sdílené na počítači s Windows.\n"
-"\n"
-"Pokud máte tiskárnu nebo tiskárny připojené k tomuto počítači, zapojte je "
-"prosím a zapněte je; pak mohou být automaticky nalezeny. Vaše síťové "
-"tiskárny nebo tiskárny sdílené počítači s Windows musí být rovněž zapnuty a "
-"připojené k síti, mají-li být automaticky nalezeny.\n"
-"\n"
-"Automatická detekce tiskáren připojených k síti probíhá podstatně déle než "
-"automatická detekce tiskáren pouze lokálně připojených k tomuto počítači. "
-"Pokud nepotřebujete automatickou detekci tiskáren na síti, nebo tiskáren "
-"sdílených počítači s Windows, pak tuto autodetekci vypněte.\n"
-"\n"
-"Pokud jste připraveni, klepněte na tlačítko \"Dále\", nebo klepněte na "
-"tlačítko \"Zrušit\" pokud nechcete v tuto chvíli tiskárny nastavovat."
-
-#: printer/printerdrake.pm:1284
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Vítejte v Průvodci nastavením tiskárny\n"
-"\n"
-"Tento průvodce vám pomůže nainstalovat vaši tiskárnu nebo tiskárny připojené "
-"k tomuto počítači.\n"
-"\n"
-"Pokud máte tiskárnu nebo tiskárny připojené k tomuto počítači, zapojte je "
-"prosím a zapněte je; pak mohou být automaticky nalezeny. \n"
-"\n"
-"Pokud jste připraveni, klepněte na tlačítko \"Další\", nebo klepněte na "
-"tlačítko \"Zrušit\" pokud nechcete v tuto chvíli tiskárnu(y) nastavovat."
-
-#: printer/printerdrake.pm:1292
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you do not need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Vítejte v Průvodci nastavením tiskárny\n"
-"\n"
-"Tento průvodce vám pomůže nainstalovat vaši tiskárnu nebo tiskárny připojené "
-"k tomuto počítači nebo přímo k síti.\n"
-"\n"
-"Pokud máte tiskárnu nebo tiskárny připojené k tomuto počítači, zapojte je "
-"prosím a zapněte je; pak mohou být automaticky nalezeny. Vaše síťové "
-"tiskárny musí být rovněž zapnuty a připojené k síti, mají-li být automaticky "
-"nalezeny.\n"
-"\n"
-"Automatická detekce tiskáren připojených k síti probíhá podstatně déle než "
-"automatická detekce tiskáren pouze lokálně připojených k tomuto počítači. "
-"Pokud nepotřebujete automatickou detekci tiskáren na síti, pak tuto "
-"autodetekci vypněte.\n"
-"\n"
-"Pokud jste připraveni, klepněte na tlačítko \"Dále\", nebo klepněte na "
-"tlačítko \"Zrušit\" pokud nechcete v tuto chvíli tiskárny nastavovat."
-
-#: printer/printerdrake.pm:1301
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Vítejte v Průvodci nastavením tiskárny\n"
-"\n"
-"Tento průvodce vám pomůže nainstalovat vaši tiskárnu nebo tiskárny připojené "
-"k tomuto počítači.\n"
-"\n"
-"Pokud máte tiskárnu nebo tiskárny připojené k tomuto počítači, zapojte je "
-"prosím a zapněte je; pak mohou být automaticky nalezeny. \n"
-"\n"
-"Pokud jste připraveni, klepněte na tlačítko \"Dále\", nebo klepněte na "
-"tlačítko \"Zrušit\" pokud nechcete v tuto chvíli tiskárnu(y) nastavovat."
-
-#: printer/printerdrake.pm:1352
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Automaticky nalézt tiskárny připojené k tomuto počítači"
-
-#: printer/printerdrake.pm:1355
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Automaticky nalézt tiskárny připojené přímo k lokální síti"
-
-#: printer/printerdrake.pm:1358
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr "Automaticky nalézt tiskárny sdílené počítači s Microsoft Windows"
-
-#: printer/printerdrake.pm:1361
-#, c-format
-msgid "No auto-detection"
-msgstr "Bez automatického hledání"
-
-#: printer/printerdrake.pm:1381
-#, c-format
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the %s Control Center."
-msgstr ""
-"\n"
-"Blahopřejeme, tiskárna je nainstalována a nastavena!\n"
-"\n"
-"Tisknout z aplikací lze příkazem \"Tisk\" (obyčejně v menu \"Soubor\").\n"
-"\n"
-"Pokud chcete přidat, odebrat, přejmenovat tiskárnu nebo změnit její výchozí "
-"nastavení (typ zásobníku, kvalita tisku, ...), zvolte \"Tiskárna\" v sekci "
-"\"Hardware\" v ovládacím centru %s."
-
-#: printer/printerdrake.pm:1417 printer/printerdrake.pm:1641
-#: printer/printerdrake.pm:1704 printer/printerdrake.pm:1796
-#: printer/printerdrake.pm:1934 printer/printerdrake.pm:2010
-#: printer/printerdrake.pm:2177 printer/printerdrake.pm:2268
-#: printer/printerdrake.pm:2277 printer/printerdrake.pm:2286
-#: printer/printerdrake.pm:2297 printer/printerdrake.pm:2496
-#: printer/printerdrake.pm:2633
-#, c-format
-msgid "Could not install the %s packages!"
-msgstr "Nelze nainstalovat balíčky %s!"
-
-#: printer/printerdrake.pm:1419
-#, c-format
-msgid "Skipping Windows/SMB server auto-detection"
-msgstr "Vynechávám autodetekci serverů Windows/SMB"
-
-#: printer/printerdrake.pm:1425 printer/printerdrake.pm:1564
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Autodetekce tiskárny"
-
-#: printer/printerdrake.pm:1425
-#, c-format
-msgid "Detecting devices..."
-msgstr "Detekuji zařízení..."
-
-#: printer/printerdrake.pm:1451
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", síťová tiskárna \"%s\", port %s"
-
-#: printer/printerdrake.pm:1454
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", tiskárna \"%s\" na SMB/Windows serveru \"%s\""
-
-#: printer/printerdrake.pm:1458
-#, c-format
-msgid "Detected %s"
-msgstr "Nalezeno %s"
-
-#: printer/printerdrake.pm:1463 printer/printerdrake.pm:1490
-#: printer/printerdrake.pm:1505
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Tiskárna na paralelním portu #%s"
-
-#: printer/printerdrake.pm:1469
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Síťová tiskárna \"%s\", port %s"
-
-#: printer/printerdrake.pm:1472
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Tiskárna \"%s\" na SMB/Windows serveru \"%s\""
-
-#: printer/printerdrake.pm:1550
-#, c-format
-msgid "Local Printer"
-msgstr "Místní tiskárna"
-
-#: printer/printerdrake.pm:1551
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Lokální tiskárna nenalezena! Pro ruční instalaci tiskárny zadejte název "
-"zařízení/souboru do políčka (Paralelní porty: /dev/lp0, /dev/lp1,... jsou "
-"ekvivalentní LPT1:, LPT2:, ...,první USB tiskárna: /dev/usb/lp0, druhá USB "
-"tiskárna: /dev/usb/lp1,...)."
-
-#: printer/printerdrake.pm:1555
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Musíte zadat zařízení nebo název souboru!"
-
-#: printer/printerdrake.pm:1565
-#, c-format
-msgid "No printer found!"
-msgstr "Nenalezena žádná tiskárna!"
-
-#: printer/printerdrake.pm:1573
-#, c-format
-msgid "Local Printers"
-msgstr "Místní tiskárny"
-
-#: printer/printerdrake.pm:1574
-#, c-format
-msgid "Available printers"
-msgstr "Dostupné tiskárny"
-
-#: printer/printerdrake.pm:1578 printer/printerdrake.pm:1587
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Následující tiskárna byla automaticky detekována. "
-
-#: printer/printerdrake.pm:1580
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
-"Pokud není mezi nimi požadovaná tiskárna, zadejte do políčka název zařízení/"
-"název souboru"
-
-#: printer/printerdrake.pm:1581
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr "Jako alternativu můžete zadat do políčka název zařízení/název souboru"
-
-#: printer/printerdrake.pm:1582 printer/printerdrake.pm:1591
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Zde je seznam automaticky detekovaných tiskáren. "
-
-#: printer/printerdrake.pm:1584
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
-msgstr ""
-"Vyberte si tiskárnu, kterou chcete nastavit nebo zadejte do políčka název "
-"zařízení/název souboru"
-
-#: printer/printerdrake.pm:1585
-#, c-format
-msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-"Vyberte si tiskárnu, na kterou budou směrovány tiskové úlohy nebo zadejte do "
-"políčka název zařízení/název souboru"
-
-#: printer/printerdrake.pm:1589
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Konfigurace této tiskárny je plně automatická. Pokud nebyla tiskárna správně "
-"detekována nebo preferujete vlastní nastavení tisku, zvolte \"Ruční "
-"konfigurace\"."
-
-#: printer/printerdrake.pm:1590
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Nyní není povolena žádná alternativa"
-
-#: printer/printerdrake.pm:1593
-#, c-format
-msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
-msgstr ""
-"Vyberte si tiskárnu, kterou chcete nastavit. Konfigurace těchto tiskáren je "
-"plně automatická. Pokud nebyla tiskárna správně detekována nebo preferujete "
-"vlastní nastavení tisku, zvolte \"Ruční konfigurace\"."
-
-#: printer/printerdrake.pm:1594
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Vyberte tiskový port, kam budou směrovány tiskové úlohy."
-
-#: printer/printerdrake.pm:1596
-#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Vyberte si port, ke kterému je tiskárna připojena nebo zadejte do políčka "
-"název zařízení/název souboru"
-
-#: printer/printerdrake.pm:1597
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Vyberte port, ke kterému je vaše tiskárna připojena."
-
-#: printer/printerdrake.pm:1599
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Paralelní porty: /dev/lp0, /dev/lp1,... je ekvivalentní LPT1:, LPT2:, ...,"
-"první USB tiskárna: /dev/usb/lp0, druhá USB tiskárna: /dev/usb/lp1,...)."
-
-#: printer/printerdrake.pm:1603
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Musíte vybrat/zadat tiskárnu/zařízení!"
-
-#: printer/printerdrake.pm:1643 printer/printerdrake.pm:1706
-#: printer/printerdrake.pm:1798 printer/printerdrake.pm:1936
-#: printer/printerdrake.pm:2012 printer/printerdrake.pm:2179
-#: printer/printerdrake.pm:2270 printer/printerdrake.pm:2279
-#: printer/printerdrake.pm:2288 printer/printerdrake.pm:2299
-#, c-format
-msgid "Aborting"
-msgstr "Přerušuji"
-
-#: printer/printerdrake.pm:1679
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Možnosti vzdálené lpd tiskárny"
-
-#: printer/printerdrake.pm:1680
-#, c-format
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Abyste mohli používat vzdálenou tiskovou frontu lpd, musíte zadat název "
-"tiskového serveru a název tiskárny, kam má být posílán tisk."
-
-#: printer/printerdrake.pm:1681
-#, c-format
-msgid "Remote host name"
-msgstr "Název vzdáleného počítače"
-
-#: printer/printerdrake.pm:1682
-#, c-format
-msgid "Remote printer name"
-msgstr "Název vzdálené tiskárny"
-
-#: printer/printerdrake.pm:1685
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Chybí název vzdáleného počítače!"
-
-#: printer/printerdrake.pm:1689
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Chybí název vzdálené tiskárny!"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318 standalone/drakTermServ:475
-#: standalone/drakTermServ:807 standalone/drakTermServ:823
-#: standalone/drakTermServ:1653 standalone/drakTermServ:1662
-#: standalone/drakTermServ:1676 standalone/drakbackup:512
-#: standalone/drakbackup:618 standalone/drakbackup:653
-#: standalone/drakbackup:754 standalone/draknfs:203
-#: standalone/draksambashare:627 standalone/draksambashare:794
-#: standalone/harddrake2:275
-#, c-format
-msgid "Information"
-msgstr "Informace"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Nalezen model: %s %s"
-
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Scanning network..."
-msgstr "Zkoumám síť...."
-
-#: printer/printerdrake.pm:1814 printer/printerdrake.pm:1835
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", tiskárna \"%s\" na serveru \"%s\""
-
-#: printer/printerdrake.pm:1817 printer/printerdrake.pm:1838
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Tiskárna \"%s\" na serveru \"%s\""
-
-#: printer/printerdrake.pm:1859
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Možnosti SMB (Windows 9x/NT) tiskárny"
-
-#: printer/printerdrake.pm:1860
-#, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Abyste mohli tisknout na SMB tiskárně, musíte zadat název SMB počítače"
-"(Pozor! To může být odlišné od jeho TCP/IP názvu) a možná i IP adresu "
-"tiskového serveru, název sdílené tiskárny, vhodné uživatelské jméno, heslo a "
-"informace o pracovní skupině."
-
-#: printer/printerdrake.pm:1861
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-" Pokud byla požadovaná tiskárna automaticky nalezena, vyberte ji jednoduše "
-"ze seznamu a pokud je to potřeba, doplňte uživatelské jméno, heslo, a "
-"pracovní skupinu."
-
-#: printer/printerdrake.pm:1863
-#, c-format
-msgid "SMB server host"
-msgstr "Název SMB serveru"
-
-#: printer/printerdrake.pm:1864
-#, c-format
-msgid "SMB server IP"
-msgstr "IP adresa SMB serveru"
-
-#: printer/printerdrake.pm:1865 standalone/draksambashare:67
-#, c-format
-msgid "Share name"
-msgstr "Sdílené jméno"
-
-#: printer/printerdrake.pm:1868
-#, c-format
-msgid "Workgroup"
-msgstr "Pracovní skupina"
-
-#: printer/printerdrake.pm:1870
-#, c-format
-msgid "Auto-detected"
-msgstr "Automaticky nalezeno"
-
-#: printer/printerdrake.pm:1880
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Musí být zadán buď název serveru nebo jeho IP adresa!"
-
-#: printer/printerdrake.pm:1884
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Chybí název pro sdílení přes Sambu!"
-
-#: printer/printerdrake.pm:1890
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "BEZPEČNOSTNÍ VAROVÁNÍ!"
-
-#: printer/printerdrake.pm:1891
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Provádíte nastavení tisku s účtem na systému Windows. Díky chybě v klientu "
-"protokolu Samba je heslo při tisku posláno jako čistý text z příkazové "
-"řádky. Je tudíž možné, aby kdokoliv viděl toto heslo na obrazovce když si "
-"zadá příkaz např. \"ps auxwww\".\n"
-"\n"
-"Doporučujeme používat jednu z následujících alternativ (ve všech případech "
-"je dobré mít nastaven přístup pouze z počítačů z lokální sítě, respektive za "
-"firewallem):\n"
-"\n"
-"Použít účet, který nemá nastaven žádné heslo, jako je \"GUEST\" nebo "
-"speciální účet pouze pro účely tisku. Neodstraňujte ochranu heslem z běžného "
-"účtu nebo dokonce z administrátorského účtu.\n"
-"\n"
-"Nastavte tiskárnu na Windows serveru tak, aby fungovala pod LPD protokolem. "
-"Potom nastavte tisk na této tiskárně pomocí typy spojení \"%s\" v aplikaci "
-"PrinterDrake.\n"
-"\n"
-
-#: printer/printerdrake.pm:1901
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Nastavit na serveru s Windows tiskárnu, která bude přístupná pomocí IPP "
-"protokolu a nastavit tisk z tohoto počítače pomocí spojení \"%s\" v aplikaci "
-"PrinterDrake.\n"
-"\n"
-
-#: printer/printerdrake.pm:1904
-#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-"Připojit tiskárnu k Linux serveru a nechat počítač(e) s Windows pracovat "
-"jako klienty.\n"
-"\n"
-"Chcete opravdu pokračovat v nastavení tiskárny tímto způsobem?"
-
-#: printer/printerdrake.pm:1983
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "Možnosti NetWare tiskárny"
-
-#: printer/printerdrake.pm:1984
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Abyste mohli tisknout na NetWare tiskárně, musíte zadat název NetWare "
-"serveru (Pozor! To může být odlišné od jeho názvu pro TCP/IP!), název "
-"tiskové fronty tiskárny, kterou chcete používat, uživatelské jméno a heslo."
-
-#: printer/printerdrake.pm:1985
-#, c-format
-msgid "Printer Server"
-msgstr "Tiskový server"
-
-#: printer/printerdrake.pm:1986
-#, c-format
-msgid "Print Queue Name"
-msgstr "Název tiskové fronty"
-
-#: printer/printerdrake.pm:1991
-#, c-format
-msgid "NCP server name missing!"
-msgstr "Chybí název pro sdílení přes NCP!"
-
-#: printer/printerdrake.pm:1995
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "Chybí název tiskové fronty pro NCP!"
-
-#: printer/printerdrake.pm:2076 printer/printerdrake.pm:2097
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", počítač \"%s\", port %s"
-
-#: printer/printerdrake.pm:2079 printer/printerdrake.pm:2100
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Počítač \"%s\", port %s"
-
-#: printer/printerdrake.pm:2122
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "Možnosti tiskárny pro TCP/Socket"
-
-#: printer/printerdrake.pm:2124
-#, c-format
-msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
-msgstr ""
-"Vyberte ze seznamu jednu z automaticky nalezených tiskáren nebo zadejte do "
-"políček název nebo IP adresu tiskárny a volitelně číslo portu (výchozí je "
-"9100)."
-
-#: printer/printerdrake.pm:2125
-#, c-format
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
-msgstr ""
-"Abyste mohli tisknout na TCP nebo soketové tiskárně, musíte zadat název nebo "
-"IP adresu tiskárny a volitelně i číslo portu (výchozí je 9100). V případě "
-"serverů HP JetDirect je číslo portu obvykle 9100, u jiných serverů může být "
-"jiné. Podívejte se do manuálu k vašemu hardware."
-
-#: printer/printerdrake.pm:2129
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Chybí název nebo IP adresa tiskárny!"
-
-#: printer/printerdrake.pm:2158
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Název nebo IP adresa tiskárny"
-
-#: printer/printerdrake.pm:2221
-#, c-format
-msgid "Refreshing Device URI list..."
-msgstr "Obnovuji seznam URI zařízení...."
-
-#: printer/printerdrake.pm:2224 printer/printerdrake.pm:2226
-#, c-format
-msgid "Printer Device URI"
-msgstr "URI Tiskového Zařízení"
-
-#: printer/printerdrake.pm:2225
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Zde lze přímo zadat URI pro přístup k tiskárně. URI musí splňovat buď "
-"specifikaci CUPS nebo Foomatic. Také pamatujte na to, že všechny URI nejsou "
-"podporovány ve všech tiskových správcích."
-
-#: printer/printerdrake.pm:2249
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Musí být zadáno správné URI!"
-
-#: printer/printerdrake.pm:2354
-#, c-format
-msgid "Pipe into command"
-msgstr "Poslat do příkazu"
-
-#: printer/printerdrake.pm:2355
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-"Zde můžete zadat libovolný příkaz, do kterého bude posílám výstup z tiskové "
-"úlohy místo přímého odeslání na tiskárnu."
-
-#: printer/printerdrake.pm:2356
-#, c-format
-msgid "Command line"
-msgstr "Příkazová řádka"
-
-#: printer/printerdrake.pm:2360
-#, c-format
-msgid "A command line must be entered!"
-msgstr "Musí být zadán nějaký příkaz!"
-
-#: printer/printerdrake.pm:2402
-#, c-format
-msgid "Your printer %s is currently connected %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2404 printer/printerdrake.pm:2411
-#, fuzzy, c-format
-msgid "to a parallel port"
-msgstr " na paralelním portu #%s"
-
-#: printer/printerdrake.pm:2405 printer/printerdrake.pm:2412
-#, c-format
-msgid "to the USB"
-msgstr ""
-
-#: printer/printerdrake.pm:2406 printer/printerdrake.pm:2413
-#, fuzzy, c-format
-msgid "via the network"
-msgstr "Startuji síť"
-
-#: printer/printerdrake.pm:2407
-#, c-format
-msgid "This type of connection is currently not fully supported by HPLIP."
-msgstr ""
-
-#: printer/printerdrake.pm:2409
-#, c-format
-msgid "You get full HPLIP support for your device if you connect it "
-msgstr ""
-
-#: printer/printerdrake.pm:2415
-#, c-format
-msgid ""
-"You can now set up your device with HPLIP anyway (works in many cases), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "set it up without HPLIP (print-only), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, fuzzy, c-format
-msgid "or"
-msgstr "Hodina"
-
-#: printer/printerdrake.pm:2417
-#, c-format
-msgid "cancel the setup (for example to reconnect your device)."
-msgstr ""
-
-#: printer/printerdrake.pm:2419
-#, c-format
-msgid ""
-"You can always revise your choice by clicking your printer's entry in the "
-"main window, "
-msgstr ""
-
-#: printer/printerdrake.pm:2420
-#, c-format
-msgid "clicking the \"%s\" button, "
-msgstr ""
-
-#. -PO: "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: printer/printerdrake.pm:2420 standalone/drakperm:124 standalone/drakups:300
-#: standalone/drakups:360 standalone/drakups:380 standalone/drakvpn:319
-#: standalone/drakvpn:680 standalone/printerdrake:245
-#, c-format
-msgid "Edit"
-msgstr "Upravit"
-
-#: printer/printerdrake.pm:2421
-#, c-format
-msgid "and choosing \"%s\"."
-msgstr ""
-
-#: printer/printerdrake.pm:2421 printer/printerdrake.pm:5334
-#: printer/printerdrake.pm:5394
-#, c-format
-msgid "Printer connection type"
-msgstr "Typ připojení pro tiskárnu"
-
-#: printer/printerdrake.pm:2423 standalone/logdrake:408
-#, c-format
-msgid "What do you want to do?"
-msgstr "Co chcete dělat?"
-
-#: printer/printerdrake.pm:2424 printer/printerdrake.pm:2428
-#, c-format
-msgid "Set up with HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2425 printer/printerdrake.pm:2427
-#: printer/printerdrake.pm:2430
-#, c-format
-msgid "Set up without HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2461
-#, c-format
-msgid ""
-"On many HP printers there are special functions available, maintenance (ink "
-"level checking, nozzle cleaning. head alignment, ...) on all not too old "
-"inkjets, scanning on multi-function devices, and memory card access on "
-"printers with card readers. "
-msgstr ""
-"Na mnoha tiskárnách společnosti HP jsou k dispozici speciální funkce, mezi "
-"které patří servisní funkce (kontrola stavu inkoustu, čištění tiskových "
-"trysek, zarovnání tiskových hlav, ...) na většině ne příliš starých "
-"inkoustových tiskáren, skenování na multifunkčních zařízeních a přístup k "
-"paměťovým kartám na tiskárnách vybavených paměťovou čtečkou."
-
-#: printer/printerdrake.pm:2463
-#, fuzzy, c-format
-msgid ""
-"To access these extra functions on HP printers they must be set up with "
-"HPLIP (HP Linux Imaging and Printing). "
-msgstr ""
-"Chcete-li na vaší tiskárně HP využívat těchto funkcí navíc, je nutné ji "
-"nastavit s odpovídajícím software:"
-
-#: printer/printerdrake.pm:2465
-#, fuzzy, c-format
-msgid "Do you want to use HPLIP (choose \"No\" for non-HP printers)? "
-msgstr ""
-"Kterou variantu software chcete zvolit? (Pro jiné než HP tiskárny nevolte "
-"žádnou z nich) "
-
-#: printer/printerdrake.pm:2491
-#, c-format
-msgid "Installing %s package..."
-msgstr "Instaluji balíček %s..."
-
-#: printer/printerdrake.pm:2491 printer/printerdrake.pm:2497
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "HPLIP"
-msgstr "HPLIP"
-
-#: printer/printerdrake.pm:2498
-#, c-format
-msgid "Only printing will be possible on the %s."
-msgstr "Na %s bude možné pouze tisknout."
-
-#: printer/printerdrake.pm:2513
-#, c-format
-msgid "Could not remove your old HPOJ configuration file %s for your %s! "
-msgstr ""
-"Nelze odstranit váš starý soubor s nastavením HPOJ %s pro tiskárnu %s! "
-
-#: printer/printerdrake.pm:2515
-#, c-format
-msgid "Please remove the file manually and restart HPOJ."
-msgstr "Odstraňte prosím tento soubor ručně a restartujte službu HPOJ."
-
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "Checking device and configuring %s..."
-msgstr "Testuji zařízení a nastavuji %s..."
-
-#: printer/printerdrake.pm:2557
-#, c-format
-msgid "Which printer do you want to set up with HPLIP?"
-msgstr "Kterou tiskárnu chcete nastavit pro HPLIP?"
-
-#: printer/printerdrake.pm:2576
-#, c-format
-msgid "HPLIP was not able to communicate with the chosen printer!"
-msgstr ""
-
-#: printer/printerdrake.pm:2577 printer/printerdrake.pm:2584
-#, fuzzy, c-format
-msgid "Setting up the printer without HPLIP..."
-msgstr "Nastavuji moduly jádra..."
-
-#: printer/printerdrake.pm:2583
-#, c-format
-msgid ""
-"HPLIP did not find any local printers (Parallel, USB) which it supports!"
-msgstr ""
-
-#: printer/printerdrake.pm:2622
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "Instaluji balíčky pro SANE..."
-
-#: printer/printerdrake.pm:2635
-#, c-format
-msgid "Scanning on the %s will not be possible."
-msgstr "Na %s nebude možné skenovat."
-
-#: printer/printerdrake.pm:2650
-#, c-format
-msgid "Using and Maintaining your %s"
-msgstr "Užívání a údržba tiskárny %s"
-
-#: printer/printerdrake.pm:2664
-#, c-format
-msgid "Configuring device..."
-msgstr "Nastavuji zařízení..."
-
-#: printer/printerdrake.pm:2701
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Nastavuji tiskový port využitelný pro CUPS..."
-
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2985
-#: printer/printerdrake.pm:3138
-#, c-format
-msgid "Reading printer database..."
-msgstr "Načítám databázi tiskáren ..."
-
-#: printer/printerdrake.pm:2943
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Zadejte název tiskárny a komentář"
-
-#: printer/printerdrake.pm:2947 printer/printerdrake.pm:4206
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Název fronty může obsahovat pouze písmena, číslice a podtržítko"
-
-#: printer/printerdrake.pm:2953 printer/printerdrake.pm:4211
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Tiskárna s názvem %s již existuje,\n"
-"chcete opravdu přepsat její konfiguraci?"
-
-#: printer/printerdrake.pm:2960
-#, c-format
-msgid ""
-"The printer name \"%s\" has more than 12 characters which can make the "
-"printer unaccessible from Windows clients. Do you really want to use this "
-"name?"
-msgstr ""
-"Název tiskárny \"%s\" je delší než 12 znaků, což může způsobit nedostupnost "
-"tiskárny z prostředí Windows. Opravdu chcete použít tento název?"
-
-#: printer/printerdrake.pm:2969
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Každá tiskárna potřebuje název (např. \"tiskarna\"). Popis a umístění nemusí "
-"být vyplněny. Jsou to komentáře pouze pro uživatele."
-
-#: printer/printerdrake.pm:2970
-#, c-format
-msgid "Name of printer"
-msgstr "Název tiskárny"
-
-#: printer/printerdrake.pm:2971 standalone/drakconnect:592
-#: standalone/harddrake2:39 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Description"
-msgstr "Popis"
-
-#: printer/printerdrake.pm:2972 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Location"
-msgstr "Umístění"
-
-#: printer/printerdrake.pm:2990
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Načítám databázi tiskáren ..."
-
-#: printer/printerdrake.pm:3116
-#, c-format
-msgid "Your printer model"
-msgstr "Model tiskárny"
-
-#: printer/printerdrake.pm:3117
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"PrinterDrake provedl porovnání modelu tiskárny, který byl zjištěn při auto-"
-"detekci s modelem obsaženým v jeho databázi a nabídl nejlepší řešení. Tato "
-"volba může být špatná, zvlášť pokud není tiskárna obsažena v databázi. "
-"Zkontrolujte, zda je volba správná a klepněte na \"Zvolený model je správný"
-"\" a pokud není, volte \"Vybrat model ručně\". V další obrazovce potom bude "
-"možné vybrat model tiskárny ručně.\n"
-"\n"
-"Pro vaši tiskárnu PrinterDrake nalezl:\n"
-"\n"
-"%s"
-
-#: printer/printerdrake.pm:3122 printer/printerdrake.pm:3125
-#, c-format
-msgid "The model is correct"
-msgstr "Zvolený model je správný"
-
-#: printer/printerdrake.pm:3123 printer/printerdrake.pm:3124
-#: printer/printerdrake.pm:3127
-#, c-format
-msgid "Select model manually"
-msgstr "Vybrat model ručně"
-
-#: printer/printerdrake.pm:3151
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
-msgstr ""
-"\n"
-"\n"
-"Zkontrolujte prosím, zda PrinterDrake provedl automatickou detekci modelu "
-"správně. Pokud je vyznačen nesprávný model, můžete ho změnit výběrem ze "
-"seznamu nebo zvolte \"Přímý tisk\"."
-
-#: printer/printerdrake.pm:3170
-#, c-format
-msgid "Install a manufacturer-supplied PPD file"
-msgstr "Instalovat PPD soubor od výrobce"
-
-#: printer/printerdrake.pm:3202
-#, c-format
-msgid ""
-"Every PostScript printer is delivered with a PPD file which describes the "
-"printer's options and features."
-msgstr ""
-"Každá PostScriptová tiskárna je dodávána se souborem PPD, který popisuje "
-"nastavení a vlastnosti tiskárny."
-
-#: printer/printerdrake.pm:3203
-#, c-format
-msgid ""
-"This file is usually somewhere on the CD with the Windows and Mac drivers "
-"delivered with the printer."
-msgstr ""
-"Tento soubor lze obvykle nalézt někde na CD spolu s ovladači pro Windows "
-"nebo Mac, které jsou k tiskárně dodávány."
-
-#: printer/printerdrake.pm:3204
-#, c-format
-msgid "You can find the PPD files also on the manufacturer's web sites."
-msgstr "Soubory PPD lze také nalézt na webových stránkách výrobce."
-
-#: printer/printerdrake.pm:3205
-#, c-format
-msgid ""
-"If you have Windows installed on your machine, you can find the PPD file on "
-"your Windows partition, too."
-msgstr ""
-"Pokud máte na svém počítači instalován systém Windows, lze soubor PPD také "
-"nalézt na oddílu s Windows."
-
-#: printer/printerdrake.pm:3206
-#, c-format
-msgid ""
-"Installing the printer's PPD file and using it when setting up the printer "
-"makes all options of the printer available which are provided by the "
-"printer's hardware"
-msgstr ""
-"Instalace souboru PPD tiskárny a jeho použití při nastavování tiskárny "
-"zpřístupní všechny volby, které podporuje hardware tiskárny"
-
-#: printer/printerdrake.pm:3207
-#, c-format
-msgid ""
-"Here you can choose the PPD file to be installed on your machine, it will "
-"then be used for the setup of your printer."
-msgstr ""
-"Zde můžete vybrat soubor PPD, který se má nainstalovat na vašem počítači, a "
-"který bude použit při nastavování vaší tiskárny."
-
-#: printer/printerdrake.pm:3209
-#, c-format
-msgid "Install PPD file from"
-msgstr "Instalovat soubor PPD z"
-
-#: printer/printerdrake.pm:3212 printer/printerdrake.pm:3220
-#: standalone/scannerdrake:183 standalone/scannerdrake:192
-#: standalone/scannerdrake:242 standalone/scannerdrake:250
-#, c-format
-msgid "Floppy Disk"
-msgstr "Diskety"
-
-#: printer/printerdrake.pm:3213 printer/printerdrake.pm:3222
-#: standalone/scannerdrake:184 standalone/scannerdrake:194
-#: standalone/scannerdrake:243 standalone/scannerdrake:252
-#, c-format
-msgid "Other place"
-msgstr "Jiné umístění"
-
-#: printer/printerdrake.pm:3228
-#, c-format
-msgid "Select PPD file"
-msgstr "Vyberte soubor PPD"
-
-#: printer/printerdrake.pm:3232
-#, c-format
-msgid "The PPD file %s does not exist or is unreadable!"
-msgstr "Soubor PPD %s neexistuje nebo není čitelný!"
-
-#: printer/printerdrake.pm:3238
-#, c-format
-msgid "The PPD file %s does not conform with the PPD specifications!"
-msgstr "Soubor PPD %s neodpovídá specifikacím PPD!"
-
-#: printer/printerdrake.pm:3249
-#, c-format
-msgid "Installing PPD file..."
-msgstr "Instaluji soubor PPD..."
-
-#: printer/printerdrake.pm:3368
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "Nastavení pro OKI win-tiskárnu"
-
-#: printer/printerdrake.pm:3369
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"Nyní nastavujete laserovou tiskárnu OKI winprinter. Tyto tiskárny používají "
-"velmi specifický komunikační protokol a mohou pracovat pouze pokud jsou "
-"připojeny k prvnímu paralelnímu portu. Pokud je tiskárna připojena na jiný "
-"port, nebo se tiskne přes server, připojte tiskárnu na první paralelní port. "
-"Jinak tisk nebude pracovat. Typ připojení bude ovladač ignorovat."
-
-#: printer/printerdrake.pm:3394 printer/printerdrake.pm:3424
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Nastavení inkoustové tiskárny Lexmark"
-
-#: printer/printerdrake.pm:3395
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Inkoustové tiskárny dodávané firmou Lexmark podporují pouze tisk na lokální "
-"tiskárně, takže nelze tisknout přes vzdálený server. Prosím připojte "
-"tiskárnu na lokální port nebo ji nastavte na tom počítači, ke kterému bude "
-"připojena."
-
-#: printer/printerdrake.pm:3425
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-"Aby bylo možné při tomto nastavení tisknout na inkoustových tiskárnách od "
-"firmy Lexmark, je potřeba mít tiskový ovladač poskytovaný společností "
-"Lexmark (http://www.lexmark.com/). Klepněte na odkaz \"Drivers\", vyberte "
-"váš model tiskárny, a poté zvolte Linux jako operační systém. Ovladače jsou "
-"v RPM balíčcích nebo skripty shellu s interaktivní grafickou instalací. Tu "
-"ale k nastavení vašeho systému nepotřebujete. Ukončete instalační program "
-"ihned po odsouhlasení licence. Pak můžete vytisknout stránku s nastavením "
-"tiskových hlav programem \"lexmarkmaintain\" a nastavit zarovnání tiskové "
-"hlavy pomocí tohoto programu."
-
-#: printer/printerdrake.pm:3435
-#, c-format
-msgid "Lexmark X125 configuration"
-msgstr "Nastavení tiskárny Lexmark X125"
-
-#: printer/printerdrake.pm:3436
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes. Please connect "
-"your printer to a local USB port or configure it on the machine where it is "
-"connected to."
-msgstr ""
-"Ovladač pro tuto tiskárnu podporuje pouze tisk na tiskárně lokálně připojené "
-"pomocí USB, takže nelze tisknout přes vzdálený počítač nebo server. Prosím "
-"připojte tiskárnu na lokální USB port nebo ji nastavte na počítači, ke "
-"kterému bude připojena."
-
-#: printer/printerdrake.pm:3458
-#, c-format
-msgid "Samsung ML/QL-85G configuration"
-msgstr "Nastavení Samsung ML/QL-85G"
-
-#: printer/printerdrake.pm:3459 printer/printerdrake.pm:3486
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected on the "
-"first parallel port, no printers on remote machines or print server boxes or "
-"on other parallel ports. Please connect your printer to the first parallel "
-"port or configure it on the machine where it is connected to."
-msgstr ""
-"Ovladač pro tuto tiskárnu podporuje pouze tisk na tiskárně lokálně připojené "
-"pomocí prvního paralelního portu, takže nelze tisknout přes vzdálený počítač "
-"nebo server nebo na tiskárnách na jiných paralelních portech. Prosím "
-"připojte tiskárnu na první lokální paralelní port nebo ji nastavte na "
-"počítači, ke kterému bude připojena."
-
-#: printer/printerdrake.pm:3485
-#, c-format
-msgid "Canon LBP-460/660 configuration"
-msgstr "Nastavení Canon LBP-460/660"
-
-#: printer/printerdrake.pm:3512
-#, c-format
-msgid "Canon LBP-810/1120 (CAPT) configuration"
-msgstr "Nastavení Canon LBP-810/1120 (CAPT)"
-
-#: printer/printerdrake.pm:3513
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes or on the parallel "
-"port. Please connect your printer to the USB or configure it on the machine "
-"where it is directly connected to."
-msgstr ""
-"Ovladač pro tuto tiskárnu podporuje pouze tisk na tiskárně lokálně připojené "
-"pomocí USB, takže nelze tisknout přes vzdálený počítač nebo server nebo přes "
-"paralelní port. Prosím připojte tiskárnu na lokální USB port nebo ji "
-"nastavte na počítači, ke kterému bude přímo připojena."
-
-#: printer/printerdrake.pm:3520
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "Upload firmware pro HP LaserJet 1000"
-
-#: printer/printerdrake.pm:3670
-#, c-format
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Výchozí nastavení pro tiskárnu\n"
-"\n"
-"Ujistěte se, že typ stránky a typ inkoustu/režim tisku (pokud je) a také "
-"hardwarová konfigurace laserové tiskárny (paměť, duplexní jednotka, externí "
-"podavač) jsou nastaveny správně. Při tisku ve velmi vysoké kvalitě/rozlišení "
-"bude tisk zřejmě pomalejší."
-
-#: printer/printerdrake.pm:3795
-#, c-format
-msgid "Printer default settings"
-msgstr "Výchozí nastavení tiskárny"
-
-#: printer/printerdrake.pm:3802
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Hodnota %s musí být celé číslo!"
-
-#: printer/printerdrake.pm:3806
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Hodnota %s musí být číslo!"
-
-#: printer/printerdrake.pm:3810
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Hodnota %s je mimo rozsah!"
-
-#: printer/printerdrake.pm:3862
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Chcete opravdu nastavit tiskárnu \"%s\"\n"
-"jako výchozí?"
-
-#: printer/printerdrake.pm:3878
-#, c-format
-msgid "Test pages"
-msgstr "Zkušební stránka"
-
-#: printer/printerdrake.pm:3879
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Vyberte si zkušební stránku, kterou chcete vytisknout.\n"
-"Poznámka: tisk zkušební stránky s fotografií může trvat velmi dlouho nebo se "
-"na tiskárně s malou pamětí nemusí podařit vůbec. Ve většině případů stačí "
-"vytisknout běžnou zkušební stránku."
-
-#: printer/printerdrake.pm:3883
-#, c-format
-msgid "No test pages"
-msgstr "Bez zkušební stránky"
-
-#: printer/printerdrake.pm:3884
-#, c-format
-msgid "Print"
-msgstr "Tisk"
-
-#: printer/printerdrake.pm:3909
-#, c-format
-msgid "Standard test page"
-msgstr "Standardní zkušební stránka"
-
-#: printer/printerdrake.pm:3912
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Alternativní zkušební stránka (Letter)"
-
-#: printer/printerdrake.pm:3915
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Alternativní zkušební stránka (A4)"
-
-#: printer/printerdrake.pm:3917
-#, c-format
-msgid "Photo test page"
-msgstr "Zkušební stránka s fotografií"
-
-#: printer/printerdrake.pm:3930
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Tisknu zkušební stránku(y)..."
-
-#: printer/printerdrake.pm:3950
-#, c-format
-msgid "Skipping photo test page."
-msgstr "Vynechávám zkušební stránku s fotografií."
-
-#: printer/printerdrake.pm:3967
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Zkušební stránka(y) byla(y) poslána(y) na tiskárnu.\n"
-"Může chvíli trvat než začne tisk.\n"
-"Stav tisku:\n"
-"%s\n"
-"\n"
-
-#: printer/printerdrake.pm:3971
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Zkušební stránka byl poslána na tiskárnu.\n"
-"Může chvilku trvat než začne tisk.\n"
-
-#: printer/printerdrake.pm:3981
-#, c-format
-msgid "Did it work properly?"
-msgstr "Proběhl tisk správně?"
-
-#: printer/printerdrake.pm:4005
-#, c-format
-msgid "Raw printer"
-msgstr "Přímý tisk na tiskárnu"
-
-#: printer/printerdrake.pm:4027
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Vytisknout soubor z příkazové řádky (terminálového okna) lze buď příkazem\n"
-"\"%s<soubor>\" nebo přes grafické nástroje: \"xpp <soubor> nebo \"kprinter "
-"<soubor>\". Grafické nástroje umožňují jednoduše vybrat tiskárny a měnit "
-"jejich parametry.\n"
-
-#: printer/printerdrake.pm:4029
-#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Tyto příkazy lze nastavit do políčka \"Příkazy tisku\" v dialogu tisku ve "
-"většině aplikací, ale nezadává se zde název souboru, které je pokaždé jiné v "
-"závislosti na dané aplikaci.\n"
-
-#: printer/printerdrake.pm:4032 printer/printerdrake.pm:4049
-#: printer/printerdrake.pm:4059
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"Příkaz \"%s\" dovoluje modifikovat volby pro každou tiskovou úlohu. "
-"Jednoduše zadejte potřebné nastavení do příkazové řádky, např. \"%s<soubor>"
-"\". "
-
-#: printer/printerdrake.pm:4035 printer/printerdrake.pm:4075
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"Všechny možnosti dostupné pro současnou tiskárnu jsou vypsány níže, nebo "
-"klepněte na tlačítko \"Možnosti tiskárny\".%s%s%s\n"
-"\n"
-
-#: printer/printerdrake.pm:4039
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Zde je seznam dostupných voleb pro nastavení tisku pro aktuální tiskárnu:\n"
-"\n"
-
-#: printer/printerdrake.pm:4044 printer/printerdrake.pm:4054
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Pro vytištění souboru z příkazové řádky (v terminálovém okně) použijte "
-"příkaz \"%s <soubor>\".\n"
-
-#: printer/printerdrake.pm:4046 printer/printerdrake.pm:4056
-#: printer/printerdrake.pm:4066
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Tento příkaz lze nastavit do políčka \"Příkazy tisku\" v dialogu tisku ve "
-"většině aplikací, ale nezadává se zde název souboru, které je pokaždé jiné v "
-"závislosti na dané aplikaci.\n"
-
-#: printer/printerdrake.pm:4051 printer/printerdrake.pm:4061
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Všechny možnosti tisku pro současnou tiskárnu jsou zobrazeny níže, nebo "
-"klepněte na tlačítko \"Možnosti tiskárny\"."
-
-#: printer/printerdrake.pm:4064
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Pro vytištění souboru z příkazové řádky (v terminálovém okně) použijte "
-"příkaz \"%s <soubor>\" nebo \"%s <soubor>\".\n"
-
-#: printer/printerdrake.pm:4068
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Pro nastavení možností a ke správě tiskových úloh lze také použít grafické "
-"rozhraní \"xpdq\" .\n"
-"Pokud používáte grafické prostředí KDE, máte na pracovní ploše ikonu "
-"pojmenovanou \"STOP Printer!\", která po klepnutí ihned zastaví všechny "
-"tiskové úlohy. To je vhodné třeba pro případy uvíznutí papíru.\n"
-
-#: printer/printerdrake.pm:4072
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"Příkazy \"%s\" a \"%s\" dovolují měnit volby pro každou tiskovou úlohu. "
-"Jednoduše zadejte potřebné nastavení do příkazové řádky, např. \"%s <soubor>"
-"\".\n"
-
-#: printer/printerdrake.pm:4081
-#, c-format
-msgid "Using/Maintaining the printer \"%s\""
-msgstr "Užívání a údržba tiskárny \"%s\""
-
-#: printer/printerdrake.pm:4082
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Tisk na tiskárně \"%s\""
-
-#: printer/printerdrake.pm:4088
-#, c-format
-msgid "Print option list"
-msgstr "Vytisknout seznam voleb"
-
-#: printer/printerdrake.pm:4092
-#, fuzzy, c-format
-msgid "Printing option list..."
-msgstr "Vytisknout seznam voleb"
-
-#: printer/printerdrake.pm:4110
-#, c-format
-msgid ""
-"Your %s is set up with HP's HPLIP driver software. This way many special "
-"features of your printer are supported.\n"
-"\n"
-msgstr ""
-"Vaše tiskárna %s je nastavena pro ovladač HPLIP. Díky tomu je na vaší "
-"tiskárně podporována celá řada speciálních funkcí.\n"
-"\n"
-
-#: printer/printerdrake.pm:4113
-#, c-format
-msgid ""
-"The scanner in your printer can be used with the usual SANE software, for "
-"example Kooka or XSane (Both in the Multimedia/Graphics menu). "
-msgstr ""
-"Skener na vaší tiskárně lze použít s běžným software využívajícím rozhraní "
-"SANE, například Kooka nebo XSane (obě lze nalézt v menu Multimédia/Grafika). "
-
-#: printer/printerdrake.pm:4114
-#, c-format
-msgid ""
-"Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to "
-"share your scanner on the network.\n"
-"\n"
-msgstr ""
-"Chcete-li sdílet skener na vaší síti, spusťte nástroj Scannerdrake (lze též "
-"spustit z Ovládacího centra pod položkou Hardware/Nastavení skeneru).\n"
-"\n"
-
-#: printer/printerdrake.pm:4118
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed like a usual USB "
-"mass storage device. "
-msgstr ""
-"Ke čtečkám paměťových karet na vaší tiskárně lze přistupovat jako k "
-"jakémukoli jinému úložnému zařízení na rozhraní USB. "
-
-#: printer/printerdrake.pm:4119
-#, c-format
-msgid ""
-"After inserting a card a hard disk icon to access the card should appear on "
-"your desktop.\n"
-"\n"
-msgstr ""
-"Po vložení paměťové karty by se měla na pracovní ploše objevit ikona pevného "
-"disku, pomocí které lze ke kartě přistupovat.\n"
-"\n"
-
-#: printer/printerdrake.pm:4121
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed using HP's Printer "
-"Toolbox (Menu: System/Monitoring/HP Printer Toolbox) clicking the \"Access "
-"Photo Cards...\" button on the \"Functions\" tab. "
-msgstr ""
-"Ke čtečkám paměťových karet na vaší tiskárně lze přistupovat pomocí software "
-"HP Printer Toolbox (v menu Systém/Sledování/HP Printer Toolbox) po stisknutí "
-"tlačítka \"Access Photo Cards...\" na záložce \"Functions\". "
-
-#: printer/printerdrake.pm:4122
-#, c-format
-msgid ""
-"Note that this is very slow, reading the pictures from the camera or a USB "
-"card reader is usually faster.\n"
-"\n"
-msgstr ""
-"Tento přístup je ale velmi pomalý, načítání obrázků přímo z fotoaparátu nebo "
-"ze čtečky karet na rozhraní USB je obvykle daleko rychlejší.\n"
-"\n"
-
-#: printer/printerdrake.pm:4125
-#, c-format
-msgid ""
-"HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a "
-"lot of status monitoring and maintenance functions for your %s:\n"
-"\n"
-msgstr ""
-"Ovládací software HP Printer Toolbox (v menu Systém/Sledování/HP Printer "
-"Toolbox) nabízí celou řadu funkcí pro sledování stavu a údržbu vaší tiskárny "
-"%s:\n"
-"\n"
-
-#: printer/printerdrake.pm:4126
-#, c-format
-msgid " - Ink level/status info\n"
-msgstr " - informace o stavu tiskárny a hladině inkoustu\n"
-
-#: printer/printerdrake.pm:4127
-#, c-format
-msgid " - Ink nozzle cleaning\n"
-msgstr " - čištění inkoustových hlav\n"
-
-#: printer/printerdrake.pm:4128
-#, c-format
-msgid " - Print head alignment\n"
-msgstr "- zarovnání tiskových hlav\n"
-
-#: printer/printerdrake.pm:4129
-#, c-format
-msgid " - Color calibration\n"
-msgstr " - kalibrace barev\n"
-
-#: printer/printerdrake.pm:4170 printer/printerdrake.pm:4197
-#: printer/printerdrake.pm:4232
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Přenést konfiguraci tiskárny"
-
-#: printer/printerdrake.pm:4171
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"Konfiguraci tiskárny, kterou jste provedli pro frontu %s lze přenést na "
-"frontu %s, tj. na současnou frontu. Všechna nastavená data (název tiskárny, "
-"popis, umístění, typ připojení a další výchozí nastavení) budou přepsána, "
-"ale tiskové úlohy nebudou přeneseny.\n"
-"Ne všechny fronty lze přenést z následujících důvodů:\n"
-
-#: printer/printerdrake.pm:4174
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS nepodporuje tiskárny na serverech Novell nebo tiskárny, které posílají "
-"data na skupinu příkazů.\n"
-
-#: printer/printerdrake.pm:4176
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ podporuje pouze místní tiskárny, vzdálené tiskárny LPD a tisk na "
-"tiskárny přes sokety/TCP.\n"
-
-#: printer/printerdrake.pm:4178
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD ani LprNG nepodporují IPP tiskárny.\n"
-
-#: printer/printerdrake.pm:4180
-#, c-format
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"Tiskové fronty, které nebyly vytvořeny tímto programem nebo přes \"foomatic-"
-"configure\" nelze přenést."
-
-#: printer/printerdrake.pm:4181
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Také tiskárny používající PPD soubory od jejich výrobců nebo tiskárny s "
-"nativními ovladači pro CUPS nelze přenést."
-
-#: printer/printerdrake.pm:4182
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Označte tiskárnu, kterou chcete přenést a stiskněte \"Přenést\"."
-
-#: printer/printerdrake.pm:4185
-#, c-format
-msgid "Do not transfer printers"
-msgstr "Nepřenášet tiskárny"
-
-#: printer/printerdrake.pm:4186 printer/printerdrake.pm:4202
-#, c-format
-msgid "Transfer"
-msgstr "Přenést"
-
-#: printer/printerdrake.pm:4198
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Tiskárna s názvem \"%s\" již na straně %s existuje.\n"
-"Klepněte na \"Přenést\" pro přepsání.\n"
-"Také můžete napsat nový název nebo ji přeskočit."
-
-#: printer/printerdrake.pm:4219
-#, c-format
-msgid "New printer name"
-msgstr "Nový název tiskárny"
-
-#: printer/printerdrake.pm:4222
-#, c-format
-msgid "Transferring %s..."
-msgstr "Přenáším %s ..."
-
-#: printer/printerdrake.pm:4233
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Byla přenesena výchozí tiskárna (\"%s\"). Má se nastavit jako výchozí také "
-"na vzdáleném tiskovém systému %s?"
-
-#: printer/printerdrake.pm:4243
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Občerstvuji tisková data ...."
-
-#: printer/printerdrake.pm:4253
-#, c-format
-msgid "Starting network..."
-msgstr "Spouštím síť ...."
-
-#: printer/printerdrake.pm:4296 printer/printerdrake.pm:4300
-#: printer/printerdrake.pm:4302
-#, c-format
-msgid "Configure the network now"
-msgstr "Nastavit síť nyní"
-
-#: printer/printerdrake.pm:4297
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Síť není nastavena"
-
-#: printer/printerdrake.pm:4298
-#, c-format
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"Nyní začne konfigurace vzdálené tiskárny. To vyžaduje funkční síťové "
-"spojení, ale síť není zatím nastavena. Pokud budete pokračovat bez nastavení "
-"sítě, nebude možné použít požadovanou tiskárnu. Jak chcete pokračovat?"
-
-#: printer/printerdrake.pm:4301
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Pokračovat bez nastavení sítě"
-
-#: printer/printerdrake.pm:4332
-#, c-format
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network is accessible after booting your "
-"system and correct the configuration using the %s Control Center, section "
-"\"Network & Internet\"/\"Connection\", and afterwards set up the printer, "
-"also using the %s Control Center, section \"Hardware\"/\"Printer\""
-msgstr ""
-"Nastavení sítě provedené při instalaci nelze nyní aktivovat. Zkontrolujte, "
-"zda je síť dostupná po spuštění systému a nastavení opravte v ovládacím "
-"centru %s, v sekci \"Síť a Internet\"/\"Připojení\" a následně nastavte "
-"tiskárnu také v ovládacím centru %s v sekci \"Hardware\"/\"Tiskárna\""
-
-#: printer/printerdrake.pm:4333
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Síť nefunguje a nelze ji spustit. Prosím zkontrolujte nastavení hardware. "
-"Pak se opět pokuste provést nastavení vzdálené tiskárny."
-
-#: printer/printerdrake.pm:4343
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Restartuji tiskový systém ..."
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "high"
-msgstr "vysoká"
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "paranoid"
-msgstr "paranoidní"
-
-#: printer/printerdrake.pm:4376
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Instaluji tiskový systém v bezpečnostní úrovni %s"
-
-#: printer/printerdrake.pm:4377
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessible by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Pokoušíte se instalovat tiskový systém %s na počítač, běžící v bezpečností "
-"úrovni %s.\n"
-"\n"
-"Tiskový systém pracuje jako démon (proces na pozadí), který čeká na tiskové "
-"úlohy a zpracovává je. Tento démon je také přístupný ze sítě pro jiné "
-"počítače, takže se může stát předmětem síťového útoku. Proto je vybráno "
-"pouze několik služeb, které jsou v této úrovni spuštěny automaticky při "
-"startu.\n"
-"\n"
-"Chcete opravdu nastavit tiskový systém na tomto počítači?"
-
-#: printer/printerdrake.pm:4413
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Spustit tiskový systém při startu systému"
-
-#: printer/printerdrake.pm:4414
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"Tiskový systém (%s) nebude při startu počítače automaticky spuštěn.\n"
-"\n"
-"Je možné, že volba automatického startu byla vypnuta ve vyšší bezpečnostní "
-"úrovni, protože tiskový systém je potenciální nebezpečí pro síťový útok.\n"
-"\n"
-"Chcete nastavit automatický start tiskového systému zpět?"
-
-#: printer/printerdrake.pm:4437
-#, c-format
-msgid "Checking installed software..."
-msgstr "Ověřují nainstalovaný software..."
-
-#: printer/printerdrake.pm:4443
-#, c-format
-msgid "Removing %s..."
-msgstr "Odstraňuji %s ..."
-
-#: printer/printerdrake.pm:4447
-#, c-format
-msgid "Could not remove the %s printing system!"
-msgstr "Nelze odstranit tiskový systém %s!"
-
-#: printer/printerdrake.pm:4471
-#, c-format
-msgid "Installing %s..."
-msgstr "Instaluji %s ..."
-
-#: printer/printerdrake.pm:4475
-#, c-format
-msgid "Could not install the %s printing system!"
-msgstr "Nelze nainstalovat tiskový systém %s!"
-
-#: printer/printerdrake.pm:4543
-#, c-format
-msgid ""
-"In this mode there is no local printing system, all printing requests go "
-"directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-"V tomto režimu není k dispozici žádný lokální tiskový systém, všechny "
-"požadavky na tisk jsou směrovány přímo na server zadaný níže. Vezměte prosím "
-"na vědomí, že v takovém případě není možné definovat lokální tiskové fronty "
-"a pokud není uvedený server dostupný, nelze z tohoto počítače tisknout vůbec."
-
-#: printer/printerdrake.pm:4545
-#, c-format
-msgid ""
-"Enter the host name or IP of your CUPS server and click OK if you want to "
-"use this mode, click \"Quit\" otherwise."
-msgstr ""
-"Zadejte název počítače nebo IP adresu serveru CUPS a stiskněte tlačítko OK, "
-"pokud chcete používat tento režim, jinak stiskněte tlačítko \"Ukončit\"."
-
-#: printer/printerdrake.pm:4559
-#, c-format
-msgid "Name or IP of remote server:"
-msgstr "Název nebo IP adresa vzdáleného serveru:"
-
-#: printer/printerdrake.pm:4579
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Nastavuji výchozí tiskárnu..."
-
-#: printer/printerdrake.pm:4599
-#, c-format
-msgid "Local CUPS printing system or remote CUPS server?"
-msgstr "Lokální tiskový systém CUPS nebo vzdálený server CUPS?"
-
-#: printer/printerdrake.pm:4600
-#, c-format
-msgid "The CUPS printing system can be used in two ways: "
-msgstr "Tiskový systém CUPS lze používat dvěma způsoby: "
-
-#: printer/printerdrake.pm:4602
-#, c-format
-msgid "1. The CUPS printing system can run locally. "
-msgstr "1. Tiskový systém CUPS může běžet lokálně."
-
-#: printer/printerdrake.pm:4603
-#, c-format
-msgid ""
-"Then locally connected printers can be used and remote printers on other "
-"CUPS servers in the same network are automatically discovered. "
-msgstr ""
-"Lze pak použít lokálně připojené tiskárny a vzdálené tiskárny na jiných "
-"serverech CUPS na stejné síti jsou automaticky nalezeny."
-
-#: printer/printerdrake.pm:4604
-#, c-format
-msgid ""
-"Disadvantage of this approach is, that more resources on the local machine "
-"are needed: Additional software packages need to be installed, the CUPS "
-"daemon has to run in the background and needs some memory, and the IPP port "
-"(port 631) is opened. "
-msgstr ""
-"Nevýhodou tohoto přístupu je, že je třeba více zdrojů na lokálním počítači. "
-"Je nutné instalovat dodatečné balíčky software, démon CUPS musí běžet na "
-"pozadí a potřebuje paměť a je otevřený port IPP (port 631)."
-
-#: printer/printerdrake.pm:4606
-#, c-format
-msgid "2. All printing requests are immediately sent to a remote CUPS server. "
-msgstr ""
-"2. Všechny požadavky na tisk jsou okamžitě odeslány na vzdálený server CUPS."
-
-#: printer/printerdrake.pm:4607
-#, c-format
-msgid ""
-"Here local resource occupation is reduced to a minimum. No CUPS daemon is "
-"started or port opened, no software infrastructure for setting up local "
-"print queues is installed, so less memory and disk space is used. "
-msgstr ""
-"V tomto případě je spotřeba lokálních zdrojů minimální. Neběží žádný démon "
-"CUPS a není otevřen žádný port, není nainstalován žádný software pro "
-"nastavení lokálních tiskových front, a proto je potřeba méně paměti a místa "
-"na disku."
-
-#: printer/printerdrake.pm:4608
-#, c-format
-msgid ""
-"Disadvantage is that it is not possible to define local printers then and if "
-"the specified server is down it cannot be printed at all from this machine. "
-msgstr ""
-"Nevýhodou tohoto přístupu je, že není možné definovat lokální tiskárny a "
-"pokud není zadaný server dostupný, nelze z tohoto počítače tisknout vůbec."
-
-#: printer/printerdrake.pm:4610
-#, c-format
-msgid "How should CUPS be set up on your machine?"
-msgstr "Jakým způsobem by měl být systém CUPS nastaven na vašem počítači?"
-
-#: printer/printerdrake.pm:4614 printer/printerdrake.pm:4629
-#: printer/printerdrake.pm:4633 printer/printerdrake.pm:4639
-#, c-format
-msgid "Remote server, specify Name or IP here:"
-msgstr "Vzdálený server, zadejte zde název nebo IP adresu:"
-
-#: printer/printerdrake.pm:4628
-#, c-format
-msgid "Local CUPS printing system"
-msgstr "Lokální tiskový systém CUPS"
-
-#: printer/printerdrake.pm:4667
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Zvolte tiskový systém pro tiskárnu"
-
-#: printer/printerdrake.pm:4668
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Který tiskový systém chcete použít pro tisk?"
-
-#: printer/printerdrake.pm:4717
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Nastavení tiskárny \"%s\" selhalo!"
-
-#: printer/printerdrake.pm:4732
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Instaluji Foomatic ..."
-
-#: printer/printerdrake.pm:4738
-#, c-format
-msgid "Could not install %s packages, %s cannot be started!"
-msgstr "Nelze nainstalovat balíčky %s, %s nelze spustit!"
-
-#: printer/printerdrake.pm:4933
-#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it. "
-msgstr ""
-"Jsou nastaveny následující tiskárny. Dvojitým klepnutím na každou z nich je "
-"možné upravit nastavení, nastavit výchozí tiskárnu nebo získat další "
-"informace."
-
-#: printer/printerdrake.pm:4963
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Zobrazit seznam všech vzdálených CUPS tiskáren"
-
-#: printer/printerdrake.pm:4964
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr "Obnovit seznam tiskáren (pro získání všech vzdálených CUPS tiskáren)"
-
-#: printer/printerdrake.pm:4975
-#, c-format
-msgid "CUPS configuration"
-msgstr "Nastavení CUPS"
-
-#: printer/printerdrake.pm:4996
-#, c-format
-msgid "Change the printing system"
-msgstr "Změna tiskového systému"
-
-#: printer/printerdrake.pm:5005
-#, c-format
-msgid "Normal Mode"
-msgstr "Normální režim"
-
-#: printer/printerdrake.pm:5006
-#, c-format
-msgid "Expert Mode"
-msgstr "Expertní režim"
-
-#: printer/printerdrake.pm:5284 printer/printerdrake.pm:5340
-#: printer/printerdrake.pm:5426 printer/printerdrake.pm:5435
-#, c-format
-msgid "Printer options"
-msgstr "Možnosti tiskárny"
-
-#: printer/printerdrake.pm:5320
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Změnit nastavení tiskárny"
-
-#: printer/printerdrake.pm:5322
-#, c-format
-msgid ""
-"Printer %s%s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Tiskárna %s%s\n"
-"Co chcete na této tiskárně změnit?"
-
-#: printer/printerdrake.pm:5327
-#, c-format
-msgid "This printer is disabled"
-msgstr "Tato tiskárna je znepřístupněna"
-
-#: printer/printerdrake.pm:5329
-#, c-format
-msgid "Do it!"
-msgstr "Provést!"
-
-#: printer/printerdrake.pm:5335 printer/printerdrake.pm:5400
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Název tiskárny, popis, umístění"
-
-#: printer/printerdrake.pm:5337 printer/printerdrake.pm:5419
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Výrobce tiskárny, model, ovladač"
-
-#: printer/printerdrake.pm:5338 printer/printerdrake.pm:5420
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Výrobce tiskárny, model"
-
-#: printer/printerdrake.pm:5342 printer/printerdrake.pm:5430
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Nastavit tuto tiskárnu jako výchozí"
-
-#: printer/printerdrake.pm:5347 printer/printerdrake.pm:5436
-#: printer/printerdrake.pm:5438 printer/printerdrake.pm:5447
-#, c-format
-msgid "Enable Printer"
-msgstr "Zpřístupnit tiskárnu"
-
-#: printer/printerdrake.pm:5350 printer/printerdrake.pm:5441
-#: printer/printerdrake.pm:5442 printer/printerdrake.pm:5444
-#, c-format
-msgid "Disable Printer"
-msgstr "Znepřístupnit tiskárnu"
-
-#: printer/printerdrake.pm:5354 printer/printerdrake.pm:5448
-#, c-format
-msgid "Printer communication error handling"
-msgstr "Zpracování chyb při komunikaci s tiskárnou"
-
-#: printer/printerdrake.pm:5355 printer/printerdrake.pm:5452
-#, c-format
-msgid "Print test pages"
-msgstr "Tisk zkušebních stránek"
-
-#: printer/printerdrake.pm:5356 printer/printerdrake.pm:5454
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Nápověda pro tisk na této tiskárně"
-
-#: printer/printerdrake.pm:5357 printer/printerdrake.pm:5456
-#, c-format
-msgid "Remove printer"
-msgstr "Odebrat tiskárnu"
-
-#: printer/printerdrake.pm:5408
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Odebírám starou tiskárnu \"%s\"..."
-
-#: printer/printerdrake.pm:5439
-#, c-format
-msgid "Printer \"%s\" is now enabled."
-msgstr "Tiskárna \"%s\" je nyní zpřístupněna."
-
-#: printer/printerdrake.pm:5445
-#, c-format
-msgid "Printer \"%s\" is now disabled."
-msgstr "Tiskárna \"%s\" je nyní znepřístupněna."
-
-#: printer/printerdrake.pm:5487
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Chcete opravdu odebrat tiskárnu \"%s\"?"
-
-#: printer/printerdrake.pm:5491
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Odebírám tiskárnu \"%s\"..."
-
-#: printer/printerdrake.pm:5515
-#, c-format
-msgid "Default printer"
-msgstr "Výchozí tiskárna"
-
-#: printer/printerdrake.pm:5516
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Tiskárna \"%s\" je nyní nastavena jako výchozí."
-
#: raid.pm:42
#, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "Nemůžu přidat oddíl do _naformátovaného_ RAID %s"
-#: raid.pm:148
+#: raid.pm:150
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Není dostatek oddílů pro RAID úrovně %d\n"
-#: scanner.pm:96
+#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr "Nelze vytvořit adresář /usr/share/sane/firmware!"
-#: scanner.pm:107
+#: scanner.pm:106
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr "Nelze vytvořit odkaz /usr/share/sane/%s!"
-#: scanner.pm:114
+#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr "Nelze zkopírovat soubor s firmware %s do /usr/share/sane/firmware!"
-#: scanner.pm:121
+#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr "Nelze nastavit práva na soubor s firmware %s!"
-#: scanner.pm:200 standalone/scannerdrake:66 standalone/scannerdrake:70
-#: standalone/scannerdrake:78 standalone/scannerdrake:321
-#: standalone/scannerdrake:370 standalone/scannerdrake:463
-#: standalone/scannerdrake:507 standalone/scannerdrake:511
-#: standalone/scannerdrake:533 standalone/scannerdrake:598
+#: scanner.pm:199
#, c-format
msgid "Scannerdrake"
msgstr "Scannerdrake"
-#: scanner.pm:201 standalone/scannerdrake:964
+#: scanner.pm:200
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr "Nelze nainstalovat balíčky potřebné pro sdílené skeneru(ů)."
-#: scanner.pm:202
+#: scanner.pm:201
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr "Váš skener(y) nebude přístupný jiným uživatelům než root."
@@ -15315,13 +5198,13 @@ msgstr "Akceptuje/odmítne nekorektní chybové zprávy protokolu IPv4."
#: security/help.pm:13
#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr " Akceptuje/odmítne všesměrové icmp echo."
+msgid "Accept/Refuse broadcasted icmp echo."
+msgstr "Akceptuje/odmítne všesměrové icmp echo."
#: security/help.pm:15
#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr " Přijímá/odmítá icmp echo."
+msgid "Accept/Refuse icmp echo."
+msgstr "Přijímá/odmítá icmp echo."
#: security/help.pm:17
#, c-format
@@ -15482,7 +5365,7 @@ msgstr ""
"Povolí/zakáže ochranu před spoofingem jmenných služeb. Pokud\n"
"je nastaveno \"%s\", vypíše report do syslogu."
-#: security/help.pm:80 standalone/draksec:215
+#: security/help.pm:80
#, c-format
msgid "Security Alerts:"
msgstr "Bezpečnostní varování:"
@@ -15510,9 +5393,11 @@ msgstr "Povolí/zakáže bezpečnostní kontrolu pravidelně každou hodinu."
#: security/help.pm:90
#, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"Enable su only from members of the wheel group. If set to no, allows su from "
+"any user."
msgstr ""
-"Povoluje su pouze členům skupiny wheel nebo povoluje su každému uživateli."
+"Povoluje su pouze členům skupiny wheel. Pokud je nastaveno na ne, povoluje "
+"su každému uživateli."
#: security/help.pm:92
#, c-format
@@ -15527,13 +5412,13 @@ msgstr ""
#: security/help.pm:96
#, c-format
-msgid " Activate/Disable daily security check."
-msgstr " Povolí/zakáže provádění denních bezpečnostních kontrol."
+msgid "Activate/Disable daily security check."
+msgstr "Povolí/zakáže provádění denních bezpečnostních kontrol."
#: security/help.pm:98
#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr " Povolí/zakáže sulogin(8) v jednouživatelském režimu."
+msgid "Enable/Disable sulogin(8) in single user level."
+msgstr "Povolí/zakáže sulogin(8) v jednouživatelském režimu."
#: security/help.pm:100
#, c-format
@@ -15794,12 +5679,12 @@ msgstr "Povolit zaznamenávání podivných IPv4 paketů"
#: security/l10n.pm:31
#, c-format
msgid "Enable msec hourly security check"
-msgstr " Povolí/zakáže bezpečnostní kontrolu pravidelně každou hodinu."
+msgstr "Povolit bezpečnostní kontrolu pravidelně každou hodinu"
#: security/l10n.pm:32
#, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr "Povolit su pouze členům skupiny wheel nebo všem uživatelům"
+msgid "Enable su only from the wheel group members"
+msgstr "Povolit su pouze členům skupiny wheel"
#: security/l10n.pm:33
#, c-format
@@ -15924,8 +5809,8 @@ msgstr "Provést kontrolu pomocí chkrootkit"
#: security/l10n.pm:57
#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "Pokud to není nutné, maily neodesílat"
+msgid "Do not send empty mail reports"
+msgstr "Neposílat emailem prázdná hlášení"
#: security/l10n.pm:58
#, c-format
@@ -15963,6 +5848,11 @@ msgstr "Dveře dokořán"
msgid "Poor"
msgstr "Slabá"
+#: security/level.pm:12
+#, c-format
+msgid "Standard"
+msgstr "Standardní"
+
#: security/level.pm:13
#, c-format
msgid "High"
@@ -16042,6 +5932,11 @@ msgstr ""
#: security/level.pm:55
#, c-format
+msgid "Security"
+msgstr "Bezpečnost"
+
+#: security/level.pm:55
+#, c-format
msgid "DrakSec Basic Options"
msgstr "Základní volby programu DrakSec"
@@ -16403,52 +6298,67 @@ msgstr "Nahrát ovladače pro usb zařízení."
msgid "Starts the X Font Server (this is mandatory for Xorg to run)."
msgstr "Startuje X Font Server (to je nezbytné pro běh Xorg)."
-#: services.pm:115 services.pm:157
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Zvolte si, které služby by měly být automaticky spuštěny při startu"
-
-#: services.pm:127 standalone/draksambashare:111
+#: services.pm:114
#, c-format
msgid "Printing"
msgstr "Tisk"
-#: services.pm:128
+#: services.pm:115
#, c-format
msgid "Internet"
msgstr "Internet"
-#: services.pm:131
+#: services.pm:118
#, c-format
msgid "File sharing"
msgstr "Sdílení souborů"
-#: services.pm:138
+#: services.pm:120
+#, c-format
+msgid "System"
+msgstr "Systém"
+
+#: services.pm:125
#, c-format
msgid "Remote Administration"
msgstr "Vzdálená administrace"
-#: services.pm:146
+#: services.pm:133
#, c-format
msgid "Database Server"
msgstr "Databázové servery"
-#: services.pm:209
+#: services.pm:144 services.pm:180
+#, c-format
+msgid "Services"
+msgstr "Služby"
+
+#: services.pm:144
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Zvolte si, které služby by měly být automaticky spuštěny při startu"
+
+#: services.pm:162
+#, c-format
+msgid "Services: %d activated for %d registered"
+msgstr "Služby: aktivováno %d z %d registrovaných"
+
+#: services.pm:196
#, c-format
msgid "running"
msgstr "spuštěno"
-#: services.pm:209
+#: services.pm:196
#, c-format
msgid "stopped"
msgstr "zastaveno"
-#: services.pm:213
+#: services.pm:201
#, c-format
msgid "Services and daemons"
msgstr "Služby a démoni"
-#: services.pm:219
+#: services.pm:207
#, c-format
msgid ""
"No additional information\n"
@@ -16457,482 +6367,32 @@ msgstr ""
"Nejsou žádné další\n"
"informace o službě, promiňte."
-#: services.pm:224 ugtk2.pm:1009
+#: services.pm:212 ugtk2.pm:898
#, c-format
msgid "Info"
msgstr "Informace"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "Start when requested"
msgstr "Spustit na žádost"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "On boot"
msgstr "Při spuštění"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Start"
msgstr "Start"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Stop"
msgstr "Stop"
-#: share/advertising/01.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Packs"
-msgstr "Mandriva Linux 2006: Balení"
-
-#: share/advertising/02.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More features"
-msgstr "Mandriva Linux 2006: Bohatší vlastnosti"
-
-#: share/advertising/03.pl:3
-#, c-format
-msgid "Interactive firewall"
-msgstr "Interaktivní firewall"
-
-#: share/advertising/04.pl:3
-#, c-format
-msgid "Desktop search"
-msgstr "Vyhledávání v počítači"
-
-#: share/advertising/05.pl:3
-#, c-format
-msgid "New package manager"
-msgstr "Nový správce balíčků"
-
-#: share/advertising/06.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More performances"
-msgstr "Mandriva Linux 2006: Více výkonu"
-
-#: share/advertising/07.pl:3
-#, c-format
-msgid "Latest kernel and GCC"
-msgstr "Nejnovější jádro a GCC"
-
-#: share/advertising/08.pl:3
-#, c-format
-msgid "High Availibility"
-msgstr "Vysoká dostupnost"
-
-#: share/advertising/09.pl:3
-#, c-format
-msgid "Delta RPM"
-msgstr "Rozdílové RPM"
-
-#: share/advertising/10.pl:3
-#, c-format
-msgid "Low resources setup"
-msgstr "Nastavení s omezenými zdroji"
-
-#: share/advertising/11.pl:3
-#, c-format
-msgid "Boot time reduction"
-msgstr "Zkrácení startovacího času"
-
-#: share/advertising/12.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Easier to use"
-msgstr "Mandriva Linux 2006: Jednodušší na použití"
-
-#: share/advertising/13.pl:3
-#, c-format
-msgid "Latest graphical interfaces: KDE and GNOME"
-msgstr "Poslední grafická rozhraní: KDE a GNOME"
-
-#: share/advertising/14.pl:3
-#, c-format
-msgid "auto-installation servers"
-msgstr "Servery s automatickou instalací"
-
-#: share/advertising/15.pl:3
-#, c-format
-msgid "Easy and quick installation"
-msgstr "Rychlá a jednoduchá instalace"
-
-#: share/advertising/16.pl:3
-#, c-format
-msgid "Easy configuration thanks to 60 wizards"
-msgstr "Rychlé nastavení díky 60 průvodcům"
-
-#: share/advertising/17.pl:3
-#, c-format
-msgid "Look and feel improved"
-msgstr "Vylepšený vzhled a chování"
-
-#: share/advertising/18.pl:3
-#, c-format
-msgid "New webmin theme"
-msgstr "Nové téma pro webmin"
-
-#: share/advertising/19.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More support"
-msgstr "Mandriva Linux 2006: Více podpory"
-
-#: share/advertising/20.pl:3
-#, c-format
-msgid "Better Hardware support"
-msgstr "Lepší podpora hardware"
-
-#: share/advertising/21.pl:3
-#, c-format
-msgid "Xen support"
-msgstr "Podpora Xenu"
-
-#: share/advertising/22.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More information"
-msgstr "Mandriva Linux 2006: Více informací"
-
-#: share/advertising/23.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Where to buy?"
-msgstr "Mandriva Linux 2006: Kde koupit?"
-
-#: share/advertising/24.pl:3
-#, c-format
-msgid "Where to find technical assistance?"
-msgstr "Kde nalézt technickou podporu?"
-
-#: share/advertising/25.pl:3
-#, c-format
-msgid "How to join the Mandriva Linux community?"
-msgstr "Jak se připojit ke komunitě Mandriva Linux?"
-
-#: share/advertising/26.pl:3
-#, c-format
-msgid "How to keep your system up-to-date?"
-msgstr "Jak udržovat váš systém aktuální?"
-
-#: share/advertising/intel.pl:3
-#, c-format
-msgid "Intel Software"
-msgstr ""
-
-#: share/advertising/skype.pl:3
-#, c-format
-msgid "Skype lets you make calls through the Internet for free."
-msgstr "Skype vám umožňuje telefonovat po internetu zdarma."
-
-#: share/compssUsers.pl:26
-#, c-format
-msgid "Office Workstation"
-msgstr "Kancelářská stanice"
-
-#: share/compssUsers.pl:28
-#, c-format
-msgid ""
-"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
-"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
-msgstr ""
-"Programy pro kancelář: textové procesory (OpenOffice.org Writer, Kword), "
-"tabulkové procesory (OpenOffice.org Calc, Kspread), prohlížeče PDF a další"
-
-#: share/compssUsers.pl:29
-#, c-format
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Programy pro kancelář: textové procesory (KWord, Abiword), tabulkové "
-"procesory (KSpread, Gnumeric), prohlížeče PDF a další"
-
-#: share/compssUsers.pl:34
-#, c-format
-msgid "Game station"
-msgstr "Hry"
-
-#: share/compssUsers.pl:35
-#, c-format
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Zábavné programy: deskové hry, strategie, atd."
-
-#: share/compssUsers.pl:38
-#, c-format
-msgid "Multimedia station"
-msgstr "Multimediální stanice"
-
-#: share/compssUsers.pl:39
-#, c-format
-msgid "Sound and video playing/editing programs"
-msgstr "Programy pro přehrávání/editaci zvuku a videa"
-
-#: share/compssUsers.pl:44
-#, c-format
-msgid "Internet station"
-msgstr "Internetová stanice"
-
-#: share/compssUsers.pl:45
-#, c-format
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Soubor nástrojů pro čtení a posílaní el. pošty a příspěvků do diskusních "
-"skupin (mutt, tin..) a pro prohlížení Webu"
-
-#: share/compssUsers.pl:50
-#, c-format
-msgid "Network Computer (client)"
-msgstr "Síťový počítač (klient)"
-
-#: share/compssUsers.pl:51
-#, c-format
-msgid "Clients for different protocols including ssh"
-msgstr "Klienti pro různé verze protokolu ssh"
-
-#: share/compssUsers.pl:55
-#, c-format
-msgid "Configuration"
-msgstr "Nastavení"
-
-#: share/compssUsers.pl:56
-#, c-format
-msgid "Tools to ease the configuration of your computer"
-msgstr "Nástroje pro snadnou konfiguraci počítače"
-
-#: share/compssUsers.pl:60
-#, c-format
-msgid "Console Tools"
-msgstr "Konzolové nástroje"
-
-#: share/compssUsers.pl:61
-#, c-format
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editory, shelly, souborové nástroje, terminály"
-
-#: share/compssUsers.pl:66 share/compssUsers.pl:170
-#, c-format
-msgid "C and C++ development libraries, programs and include files"
-msgstr "Knihovny pro vývoj v C a C++, programy a hlavičkové soubory"
-
-#: share/compssUsers.pl:70 share/compssUsers.pl:174
-#, c-format
-msgid "Documentation"
-msgstr "Dokumentace"
-
-#: share/compssUsers.pl:71 share/compssUsers.pl:175
-#, c-format
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Knihy a Howto o Linuxu a Svobodném Software"
-
-#: share/compssUsers.pl:75 share/compssUsers.pl:178
-#, c-format
-msgid "LSB"
-msgstr "LSB"
-
-#: share/compssUsers.pl:76 share/compssUsers.pl:179
-#, c-format
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Standardní Báze Linuxu (LSB): Podpora aplikací jiných dodavatelů"
-
-#: share/compssUsers.pl:86
-#, c-format
-msgid "Apache"
-msgstr "Apache"
-
-#: share/compssUsers.pl:89
-#, c-format
-msgid "Groupware"
-msgstr "Groupware"
-
-#: share/compssUsers.pl:90
-#, c-format
-msgid "Kolab Server"
-msgstr "Server Kolab"
-
-#: share/compssUsers.pl:93 share/compssUsers.pl:134
-#, c-format
-msgid "Firewall/Router"
-msgstr "Firewall/Router"
-
-#: share/compssUsers.pl:94 share/compssUsers.pl:135
-#, c-format
-msgid "Internet gateway"
-msgstr "Internetová brána"
-
-#: share/compssUsers.pl:97
-#, c-format
-msgid "Mail/News"
-msgstr "Pošta/Diskusní skupiny"
-
-#: share/compssUsers.pl:98
-#, c-format
-msgid "Postfix mail server, Inn news server"
-msgstr "Poštovní server Postfix, server diskusních skupin Inn"
-
-#: share/compssUsers.pl:101
-#, c-format
-msgid "Directory Server"
-msgstr "Server adresářových služeb"
-
-#: share/compssUsers.pl:105
-#, c-format
-msgid "FTP Server"
-msgstr "Server FTP"
-
-#: share/compssUsers.pl:106
-#, c-format
-msgid "ProFTPd"
-msgstr "ProFTPd"
-
-#: share/compssUsers.pl:109
-#, c-format
-msgid "DNS/NIS"
-msgstr "DNS/NIS"
-
-#: share/compssUsers.pl:110
-#, c-format
-msgid "Domain Name and Network Information Server"
-msgstr "Server pro domény a síťové informace"
-
-#: share/compssUsers.pl:113
-#, c-format
-msgid "File and Printer Sharing Server"
-msgstr "Server pro sdílení souborů a tiskáren"
-
-#: share/compssUsers.pl:114
-#, c-format
-msgid "NFS Server, Samba server"
-msgstr "Server NFS, server Samba"
-
-#: share/compssUsers.pl:117 share/compssUsers.pl:130
-#, c-format
-msgid "Database"
-msgstr "Databáze"
-
-#: share/compssUsers.pl:118
-#, c-format
-msgid "PostgreSQL and MySQL Database Server"
-msgstr "Databázové servery PostgreSQL a MySQL"
-
-#: share/compssUsers.pl:122
-#, c-format
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: share/compssUsers.pl:123
-#, c-format
-msgid "Apache, Pro-ftpd"
-msgstr "Apache a Pro-ftpd"
-
-#: share/compssUsers.pl:126
-#, c-format
-msgid "Mail"
-msgstr "Pošta"
-
-#: share/compssUsers.pl:127
-#, c-format
-msgid "Postfix mail server"
-msgstr "Poštovní server Postfix"
-
-#: share/compssUsers.pl:131
-#, c-format
-msgid "PostgreSQL or MySQL database server"
-msgstr "Databázové servery PostgreSQL nebo MySQL"
-
-#: share/compssUsers.pl:138
-#, c-format
-msgid "Network Computer server"
-msgstr "Síťový server"
-
-#: share/compssUsers.pl:139
-#, c-format
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS server, SMB server, Proxy server, SSH server"
-
-#: share/compssUsers.pl:147
-#, c-format
-msgid "KDE Workstation"
-msgstr "Pracovní stanice s KDE"
-
-#: share/compssUsers.pl:148
-#, c-format
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"K Desktop Environment, základní grafické prostředí s kolekcí doprovodných "
-"nástrojů"
-
-#: share/compssUsers.pl:152
-#, c-format
-msgid "GNOME Workstation"
-msgstr "Pracovní stanice s GNOME"
-
-#: share/compssUsers.pl:153
-#, c-format
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Grafické prostředí s uživatelsky přívětivým seskupením aplikací a pracovní "
-"plochou"
-
-#: share/compssUsers.pl:156
-#, c-format
-msgid "IceWm Desktop"
-msgstr "IceWm desktop"
-
-#: share/compssUsers.pl:160
-#, c-format
-msgid "Other Graphical Desktops"
-msgstr "Další grafické desktopy"
-
-#: share/compssUsers.pl:161
-#, c-format
-msgid "Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Window Maker, Enlightenment, Fvwm a další"
-
-#: share/compssUsers.pl:184
-#, c-format
-msgid "Utilities"
-msgstr "Užitečné nástroje"
-
-#: share/compssUsers.pl:186 share/compssUsers.pl:187 standalone/logdrake:384
-#, c-format
-msgid "SSH Server"
-msgstr "Server SSH"
-
-#: share/compssUsers.pl:191
-#, c-format
-msgid "Webmin"
-msgstr "Webmin"
-
-#: share/compssUsers.pl:192
-#, c-format
-msgid "Webmin Remote Configuration Server"
-msgstr "Server pro vzdálené nastavení Webminu"
-
-#: share/compssUsers.pl:196
-#, c-format
-msgid "Network Utilities/Monitoring"
-msgstr "Síťové nástroje/Sledování"
-
-#: share/compssUsers.pl:197
-#, c-format
-msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
-msgstr "Nástroje pro sledování, evidenci procesů, tcpdump, nmap, ..."
-
-#: share/compssUsers.pl:201
-#, c-format
-msgid "Mandriva Wizards"
-msgstr "Průvodci Mandriva"
-
-#: share/compssUsers.pl:202
-#, c-format
-msgid "Wizards to configure server"
-msgstr "Průvodci nastavením serverů"
-
-#: standalone.pm:23
+#: standalone.pm:24
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
@@ -16947,7 +6407,8 @@ msgid ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
msgstr ""
"Tento program je svobodný software; můžete ho šířit a/nebo modifikovat\n"
"podle specifikace GNU General Public Licence, která byla publikována\n"
@@ -16959,9 +6420,9 @@ msgstr ""
"\n"
"Kopii GNU General Public Licence můžete obdržet buď s tímto programem\n"
"nebo si o ní můžete napsat na adresu Free Software Foundation, Inc.,\n"
-"59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n"
-#: standalone.pm:42
+#: standalone.pm:43
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
@@ -16988,7 +6449,7 @@ msgstr ""
"--help : zobrazí tuto zprávu.\n"
"--version : zobrazí číslo verze.\n"
-#: standalone.pm:54
+#: standalone.pm:55
#, c-format
msgid ""
"[--boot] [--splash]\n"
@@ -17003,7 +6464,7 @@ msgstr ""
" --splash - povolí nastavení vzhledu pro zavaděč systému\n"
"výchozí režim: nabídne nastavení vlastností pro automatické přihlášení"
-#: standalone.pm:59
+#: standalone.pm:60
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
@@ -17020,7 +6481,7 @@ msgstr ""
" --report - program může být libovolný Mandriva Linux nástroj\n"
" --incident - program může být libovolný Mandriva Linux nástroj"
-#: standalone.pm:65
+#: standalone.pm:66
#, c-format
msgid ""
"[--add]\n"
@@ -17037,7 +6498,7 @@ msgstr ""
" --internet - nastaví internet\n"
" --wizard - stejné jako volba --add"
-#: standalone.pm:71
+#: standalone.pm:72
#, c-format
msgid ""
"\n"
@@ -17069,7 +6530,7 @@ msgstr ""
" : nazev_aplikace jako např. so pro staroffice \n"
" : a gs pro ghostscript."
-#: standalone.pm:86
+#: standalone.pm:87
#, c-format
msgid ""
"[OPTIONS]...\n"
@@ -17101,17 +6562,17 @@ msgstr ""
"--delclient : odebere klienta z MTS (vyžaduje MAC address, IP, název "
"nbi obrazu)"
-#: standalone.pm:98
+#: standalone.pm:99
#, c-format
msgid "[keyboard]"
msgstr "[klávesnice]"
-#: standalone.pm:99
+#: standalone.pm:100
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-#: standalone.pm:100
+#: standalone.pm:101
#, c-format
msgid ""
"[OPTIONS]\n"
@@ -17134,12 +6595,7 @@ msgstr ""
"--status : vrátí 1 pokud je připojeno, jinak vrací 0 a skončí.\n"
"--quiet : tichý režim. Používá se při (při)odpojování."
-#: standalone.pm:109
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: standalone.pm:110
+#: standalone.pm:111
#, c-format
msgid ""
"[OPTION]...\n"
@@ -17158,7 +6614,7 @@ msgstr ""
" --merge-all-rpmnew navrhne spojit všechny nalezené soubory .rpmnew/."
"rpmsave"
-#: standalone.pm:115
+#: standalone.pm:116
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
@@ -17167,7 +6623,7 @@ msgstr ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
-#: standalone.pm:116
+#: standalone.pm:117
#, c-format
msgid ""
" [everything]\n"
@@ -17178,7 +6634,7 @@ msgstr ""
" XFdrake [--noauto] monitor\n"
" XFdrake resolution"
-#: standalone.pm:149
+#: standalone.pm:150
#, c-format
msgid ""
"\n"
@@ -17189,9729 +6645,102 @@ msgstr ""
"Použití: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
-#: standalone/XFdrake:59
-#, c-format
-msgid "You need to reboot for changes to take effect"
-msgstr "Aby se změny projevily, je nutné restartovat počítač"
-
-#: standalone/XFdrake:90
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Prosím odhlaste se a pak stiskněte Ctrl-Alt-Backspace"
-
-#: standalone/XFdrake:94
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr "Aby se změna projevila, je nutné se odhlásit a opět přihlásit"
-
-#: standalone/drakTermServ:112 standalone/drakTermServ:118
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s vyžaduje jméno uživatele...\n"
-
-#: standalone/drakTermServ:129
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s vyžaduje název počítače, MAC adresu, IP, nbi-image, 0/1 pro "
-"THIN_CLIENT, 0/1 pro lokální konfiguraci...\n"
-
-#: standalone/drakTermServ:135
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s vyžaduje název počítače...\n"
-
-#: standalone/drakTermServ:144
-#, c-format
-msgid "Host name for client"
-msgstr ""
-
-#: standalone/drakTermServ:145
-#, c-format
-msgid "MAC address should be in the format 00:11:22:33:44:55"
-msgstr ""
-
-#: standalone/drakTermServ:146
-#, c-format
-msgid "IP address to be assigned to client"
-msgstr ""
-
-#: standalone/drakTermServ:147
-#, c-format
-msgid "Kernel/network adapter image to use to boot client"
-msgstr ""
-
-#: standalone/drakTermServ:148
-#, c-format
-msgid "Create masking files to allow configuration tools to run on client"
-msgstr ""
-
-#: standalone/drakTermServ:149
-#, c-format
-msgid "Applications will run on server machine"
-msgstr ""
-
-#: standalone/drakTermServ:234 standalone/drakTermServ:237
-#, c-format
-msgid "Terminal Server Configuration"
-msgstr "Nastavení terminálového serveru"
-
-#: standalone/drakTermServ:243
-#, c-format
-msgid "dhcpd Config"
-msgstr "Nastavení dhcpd"
-
-#: standalone/drakTermServ:247
-#, c-format
-msgid "Enable Server"
-msgstr "Povolit server"
-
-#: standalone/drakTermServ:253
-#, c-format
-msgid "Disable Server"
-msgstr "Vypnout server"
-
-#: standalone/drakTermServ:259
-#, c-format
-msgid "Start Server"
-msgstr "Spustit server"
-
-#: standalone/drakTermServ:265
-#, c-format
-msgid "Stop Server"
-msgstr "Zastavit server"
-
-#: standalone/drakTermServ:274
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Disketa Etherboot/ISO"
-
-#: standalone/drakTermServ:278
-#, c-format
-msgid "Net Boot Images"
-msgstr "Startovací obraz ze sítě"
-
-#: standalone/drakTermServ:285
-#, c-format
-msgid "Add/Del Users"
-msgstr "Přidat/Odebrat uživatele"
-
-#: standalone/drakTermServ:289
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Přidat/Odebrat klienty"
-
-#: standalone/drakTermServ:297
-#, c-format
-msgid "Images"
-msgstr "Obrazy"
-
-#: standalone/drakTermServ:298
-#, c-format
-msgid "Clients/Users"
-msgstr "Klienti/Uživatelé"
-
-#: standalone/drakTermServ:316 standalone/drakbug:47
-#, c-format
-msgid "First Time Wizard"
-msgstr "Průvodce pro nové uživatele"
-
-#: standalone/drakTermServ:354 standalone/drakTermServ:355
-#, c-format
-msgid "%s defined as dm, adding gdm user to /etc/passwd$$CLIENT$$"
-msgstr "%s definováno jako dm, přidávám uživatele gdm do /etc/passwd$$CLIENT$$"
-
-#: standalone/drakTermServ:361
-#, c-format
-msgid ""
-"\n"
-" This wizard routine will:\n"
-" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
-"\t2) Setup DHCP.\n"
-"\t\n"
-"After doing these steps, the wizard will:\n"
-"\t\n"
-" a) Make all "
-"nbis. \n"
-" b) Activate the "
-"server. \n"
-" c) Start the "
-"server. \n"
-" d) Synchronize the shadow files so that all users, including root, \n"
-" are added to the shadow$$CLIENT$$ "
-"file. \n"
-" e) Ask you to make a boot floppy.\n"
-" f) If it's thin clients, ask if you want to restart KDM.\n"
-msgstr ""
-"\n"
-" Tato funkce průvodce provede následující:\n"
-" \t1) Nechá vás zvolit tenkého nebo tlustého klienta.\n"
-"\t2) Nastaví DHCP.\n"
-"\t\n"
-"Po provedení těchto kroků tento průvodce:\n"
-"\t\n"
-" a) Vytvoří všechny obrazy nbi.\n"
-" b) Aktivuje server.\n"
-" c) Spustí server.\n"
-" d) Sesynchronizuje soubory shadow, takže jsou všichni uživatelé včetně "
-"roota\n"
-" přidáni do souboru shadow$$CLIENT$$.\n"
-" e) Zeptá se, zda-li chcete vytvořit zaváděcí disketu.\n"
-" f) Pokud se jedná o tenké klienty, zeptá se, zda-li chcete restartovat "
-"KDM.\n"
-
-#: standalone/drakTermServ:407
-#, c-format
-msgid "Cancel Wizard"
-msgstr "Zrušit průvodce"
-
-#: standalone/drakTermServ:422
-#, c-format
-msgid "Please save dhcpd config!"
-msgstr "Uložte prosím nastavení dhcpd!"
-
-#: standalone/drakTermServ:450
-#, c-format
-msgid "Use thin clients."
-msgstr "Používat tenké klienty."
-
-#: standalone/drakTermServ:452
-#, c-format
-msgid "Sync client X keyboard settings with server."
-msgstr "Synchronizovat nastavení klávesnice X klienta se serverem."
-
-#: standalone/drakTermServ:454
-#, c-format
-msgid ""
-"Please select default client type (Fat is the default type if 'Use thin' is "
-"unchecked).\n"
-" 'Thin' clients run everything off the server's CPU/RAM, using the client "
-"display.\n"
-" 'Fat' clients use their own CPU/RAM but the server's filesystem."
-msgstr ""
-"Vyberte prosím výchozí typ klienta ('Tlustý' klient je použit jako výchozí, "
-"pokud není tenký klient zaškrtnut).\n"
-" 'Tenký' klient spouští vše na serveru pomocí jeho CPU a paměti a používá "
-"se pouze klientský displej.\n"
-" 'Tlustý' klient používá své vlastní CPU a paměť, ale souborový systém na "
-"serveru."
-
-#: standalone/drakTermServ:474
-#, c-format
-msgid "Creating net boot images for all kernels"
-msgstr "Vytváří se síťové zaváděcí obrazy pro všechna jádra"
-
-#: standalone/drakTermServ:475 standalone/drakTermServ:807
-#: standalone/drakTermServ:823
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Bude to trvat několik minut."
-
-#: standalone/drakTermServ:481 standalone/drakTermServ:521
-#, c-format
-msgid "Done!"
-msgstr "Hotovo!"
-
-#: standalone/drakTermServ:492 standalone/drakTermServ:894
-#, c-format
-msgid "%s failed"
-msgstr "%s selhalo"
-
-#: standalone/drakTermServ:501
-#, c-format
-msgid ""
-"Not enough space to create\n"
-"NBIs in %s.\n"
-"Needed: %d MB, Free: %d MB"
-msgstr ""
-"Nedostatek místa pro vytvoření\n"
-"NBI na %s.\n"
-"Požadováno: %d MB, k dispozici: %d MB"
-
-#: standalone/drakTermServ:507
-#, c-format
-msgid "Syncing server user list with client list, including root."
-msgstr ""
-"Synchronizuje se seznam uživatelů na serveru se seznamem na klientovi, "
-"včetně roota."
-
-#: standalone/drakTermServ:527
-#, c-format
-msgid ""
-"In order to enable changes made for thin clients, the display manager must "
-"be restarted. Restart now?"
-msgstr ""
-"Chcete-li provést změny na tenkém klientovi, musí se restartovat správce "
-"displeje. Chcete jej restartovat teď?"
-
-#: standalone/drakTermServ:564
-#, c-format
-msgid "Terminal Server Overview"
-msgstr "Přehled terminálového serveru"
-
-#: standalone/drakTermServ:565
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and %s is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-" - Vytváří zaváděcí obrazy pro Etherboot:\n"
-" \tChcete-li zavést jádro pomocí etherboot, musíte vytvořit zvláštní "
-"kombinaci jádra a initrd.\n"
-" \tVětšinu práce za vás udělá mkinitrd-net a %s je pouze grafické "
-"rozhraní\n"
-" \tpro pomoc se správou či přizpůsobením těchto obrazů. Pro "
-"vytvoření\n"
-" \tsouboru /etc/dhcpd.conf.etherboot-pcimap.include, který je "
-"použit\n"
-" \tpro dhcpd.conf, musíte vytvořit etherboot obraz alespoň jednoho "
-"jádra."
-
-#: standalone/drakTermServ:571
-#, c-format
-msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. %s helps create/"
-"remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
-msgstr ""
-" - Udržuje /etc/dhcpd.conf:\n"
-" \tKaždý ze síťově zaváděných klientů potřebuje záznam v dhcpd.conf, "
-"který mu přiřadí IP adresu\n"
-" \ta síťový zaváděcí obraz pro daný počítač. %s umožní tvorbu nebo "
-"odstranění těchto záznamů.\n"
-"\t\t\t\n"
-" \t(U PCI karet lze vynechat obraz - etherboot si vyžádá správný "
-"obraz. Měli byste\n"
-" \ttaké vzít v úvahu, že když hledá etherboot obrazy, očekává názvy "
-"jako\n"
-" \tboot-3c59x.nbi, a ne boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tTypický soubor dhcpd.conf podporující bezdiskové klienty vypadá "
-"jako:"
-
-#: standalone/drakTermServ:589
-#, fuzzy, c-format
-msgid ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be "
-"'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, \n"
-" %s is written for thin clients. \n"
-" System config files xdm-config, kdmrc, and gdm.conf are modified if "
-"thin clients are \n"
-" used, to enable XDMCP. Since there are security issues in using "
-"XDMCP, hosts.deny and \n"
-" hosts.allow are modified to limit access to the local subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-msgstr ""
-" I když můžete použít rozsah IP adres místo nastavení specifického "
-"záznamu pro\n"
-" počítač klienta, použití pevné adresy vám umožní zadat funkcionalitu\n"
-" do souborů s nastavením pro specifického klienta, které poskytuje %"
-"s.\n"
-"\t\t\t\n"
-" Poznámka: Položku \"#type\" používá pouze %s. Klienti mohou být buď "
-"\"thin\"\n"
-" nebo \"fat\". Tencí klienti provozují většinu software na serveru "
-"pomocí XDMCP, tlustí klienti provozují většinu\n"
-" software na klientském počítači. Zvláštní init%s, je\n"
-" vytvořen pro tenkého klienty. Systémové soubory s nastavením xdm-"
-"config, kdmrc a gdm.conf jsou upraveny\n"
-" při použití tenkých klientů tak, aby povolovaly XDMCP. Jelikož při "
-"použití XDMCP vznikají bezpečnostní rizika,\n"
-" jsou upraveny soubory hosts.deny a hosts.allow tak, aby omezily "
-"přístup pouze z lokální sítě.\n"
-"\t\t\t\n"
-" Poznámka: Položka \"#hdw_config\" je použita pouze pro klienty a "
-"může buď 'true' nebo 'false'.\n"
-" Hodnota 'true' povoluje přihlášení uživatele root dovoluje mu také "
-"změny\n"
-"v lokálním hardware u zvuku, myši pomocí nástrojů sady 'drak'tools.\n"
-" V tomto případě se vytvoří konfigurační soubor asociovaný s IP "
-"adresou a vytvoří se\n"
-" přípojný bod pro zápis, kam se tato konfigurace zapíše. Pokud jste\n"
-" s konfigurací spokojeni, můžete právo pro uživatele root odebrat.\n"
-"\t\t\t\n"
-" Poznámka: Po přidání nebo odebrání klientů musíte zastavit a znovu "
-"spustit server."
-
-#: standalone/drakTermServ:609
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-msgstr ""
-" - Udržuje /etc/exports:\n"
-" \t\t%s dovoluje exportovat kořenový souborový systém na bezdiskové "
-"klienty. %s\n"
-" \t\tnastaví odpovídající záznam tak, aby umožnil anonymní přístup ke "
-"kořenovému souborovému systému\n"
-" \t\tbezdiskovým klientům.\n"
-"\n"
-" \t\tTypický záznam pro export %s vypadá:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tSe SUBNET/MASK odpovídající vaší síti."
-
-#: standalone/drakTermServ:621
-#, fuzzy, c-format
-msgid ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. \n"
-" \t%s helps in this respect by adding or removing system users from "
-"this \n"
-" \tfile."
-msgstr ""
-" - Udržuje %s:\n"
-" \tAby se mohli uživatelé přihlásit do systému z bezdiskových stanic, "
-"musí být duplikován\n"
-" \tjejich záznam z /etc/shadow v %s. %s v tomto ohledu\n"
-" \tpomáhá přidáním nebo odebráním uživatelů systému z tohoto souboru."
-
-#: standalone/drakTermServ:626
-#, c-format
-msgid ""
-" - Per client %s:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t%s will help create these files."
-msgstr ""
-" - %s pro každého klienta:\n"
-" \tSkrze %s může mít každý bezdiskový klient své vlastní unikátní "
-"soubory s nastavením\n"
-" \tumístěné na serveru v kořenovém souborovém systému. %s bude v "
-"budoucnu pomáhat\n"
-" \ts tvorbou těchto souborů."
-
-#: standalone/drakTermServ:631
-#, fuzzy, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-msgstr ""
-" - Soubory s nastavením systému pro každého klienta:\n"
-" \tSkrze %s může mít každý bezdiskový klient své vlastní unikátní "
-"soubory s nastavením\n"
-" \tumístěné na serveru v kořenovém souborovém systému. %s bude v "
-"budoucnu pomáhat\n"
-" \ts tvorbou těchto souborů,\n"
-" \tnapř. /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
-"keyboard zvlášť pro\n"
-" \tkaždého klienta.\n"
-"\n"
-" Pozn. Povolení nastavení lokálního hardware umožní také přihlášení "
-"uživatele root\n"
-" na terminálový server se všech stanic, které mají tuto možnost "
-"povolenu.\n"
-" Lokální natavení hardware může být ale zakázáno, takže konfigurační\n"
-"soubory budou takové, jak byl klient nastaven."
-
-#: standalone/drakTermServ:640
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s will configure this file to work in conjunction with the images "
-"created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical TFTP configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
-msgstr ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s nastaví tento soubor tak, aby pracoval v souladu s obrazy "
-"vytvořenými pomocí\n"
-" \tmkinitrd-net a záznamy v /etc/dhcpd.conf tak, aby byl každému "
-"bezdiskovému klientu poskytnut\n"
-" \todpovídající zaváděcí obraz.\n"
-"\n"
-" \tTypický soubor s nastavením TFTP vypadá takto:\n"
-" \t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \t\tZměny oproti výchozí instalaci zahrnují změnu příznaku disable "
-"na\n"
-" \t\t'no' a změnu cesty adresáře na /var/lib/tftpboot, kam ukládá\n"
-" \t\tmkinitrd-net své obrazy."
-
-#: standalone/drakTermServ:661
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-msgstr ""
-" - Vytváří diskety či CD s etherboot:\n"
-" \tBezdiskové klientské počítače potřebují buď obrazy ROM na síťové "
-"kartě nebo\n"
-" \t zaváděcí disketu či CD, aby mohly zahájit zaváděcí sekvenci. %s "
-"pomůže\n"
-" \ts vygenerováním těchto obrazů založených na síťové kartě v "
-"klientském počítači.\n"
-" \t\t\n"
-" \tJednoduchý příklad ručního vytvoření zaváděcí diskety pro kartu "
-"3Com 3c509:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-
-#: standalone/drakTermServ:694
-#, c-format
-msgid "Boot Floppy"
-msgstr "Spouštěcí disketa"
-
-#: standalone/drakTermServ:696
-#, c-format
-msgid "Boot ISO"
-msgstr "Spouštěcí ISO"
-
-#: standalone/drakTermServ:698
-#, c-format
-msgid "PXE Image"
-msgstr "PXE obraz"
-
-#: standalone/drakTermServ:759
-#, c-format
-msgid "Default kernel version"
-msgstr "Výchozí verze jádra"
-
-#: standalone/drakTermServ:764
-#, c-format
-msgid "Create PXE images"
-msgstr ""
-
-#: standalone/drakTermServ:765
-#, c-format
-msgid "Use Unionfs (TS2)"
-msgstr ""
-
-#: standalone/drakTermServ:795
-#, c-format
-msgid "Install i586 kernel for older clients"
-msgstr "Instalovat jádro pro i586 pro starší klienty"
-
-#: standalone/drakTermServ:805
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Sestavit celé jádro -->"
-
-#: standalone/drakTermServ:812
-#, c-format
-msgid "No kernel selected!"
-msgstr "Nebylo zvoleno žádné jádro!"
-
-#: standalone/drakTermServ:815
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Sestavit jedinou NIC -->"
-
-#: standalone/drakTermServ:819 standalone/drakTermServ:1643
-#, c-format
-msgid "No NIC selected!"
-msgstr "Není vybrána žádná síťová karta!"
-
-#: standalone/drakTermServ:822
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Sestavit všechna jádra -->"
-
-#: standalone/drakTermServ:835
-#, c-format
-msgid ""
-"Custom\n"
-"kernel args"
-msgstr ""
-
-#: standalone/drakTermServ:840
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Smazat"
-
-#: standalone/drakTermServ:845
-#, c-format
-msgid "No image selected!"
-msgstr "Není zvolen žádný obraz!"
-
-#: standalone/drakTermServ:848
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Smazat všechny NBI"
-
-#: standalone/drakTermServ:925
-#, c-format
-msgid "Building images for kernel:"
-msgstr "Vytváří se obrazy pro jádro:"
-
-#: standalone/drakTermServ:1050
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! Signalizuje, že heslo v databázi je jiné než které má v databázi\n"
-"Terminal Server.\n"
-"Smažte/znovu přidejte uživatele pro povolení přihlášení na Terminal Server."
-
-#: standalone/drakTermServ:1055
-#, c-format
-msgid "Add User -->"
-msgstr "Přidat uživatele -->"
-
-#: standalone/drakTermServ:1061
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- Odebrat uživatele"
-
-#: standalone/drakTermServ:1097
-#, c-format
-msgid "type: %s"
-msgstr "typ: %s"
-
-#: standalone/drakTermServ:1101
-#, c-format
-msgid "local config: %s"
-msgstr "lokální konfigurace: %s"
-
-#: standalone/drakTermServ:1136
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Povolit konfiguraci\n"
-"lokálního hardware."
-
-#: standalone/drakTermServ:1146
-#, c-format
-msgid "No net boot images created!"
-msgstr "Nepodařilo se vytvořit obraz pro spouštění ze sítě!"
-
-#: standalone/drakTermServ:1165
-#, c-format
-msgid "Thin Client"
-msgstr "Tenký klient"
-
-#: standalone/drakTermServ:1169
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "Povolit tenké klienty"
-
-#: standalone/drakTermServ:1170
-#, c-format
-msgid ""
-"Sync client X keyboard\n"
-" settings with server."
-msgstr ""
-"Synchronizovat nastavení\n"
-"klávesnice X klienta se serverem."
-
-#: standalone/drakTermServ:1171
-#, c-format
-msgid "Add Client -->"
-msgstr "Přidat klienta -->"
-
-#: standalone/drakTermServ:1181
-#, c-format
-msgid "Unknown MAC address format"
-msgstr ""
-
-#: standalone/drakTermServ:1195
-#, c-format
-msgid "type: fat"
-msgstr "typ: tlustý"
-
-#: standalone/drakTermServ:1196
-#, c-format
-msgid "type: thin"
-msgstr "typ: tenký"
-
-#: standalone/drakTermServ:1203
-#, c-format
-msgid "local config: false"
-msgstr "Lokální konfigurace: false"
-
-#: standalone/drakTermServ:1204
-#, c-format
-msgid "local config: true"
-msgstr "lokální konfigurace: true"
-
-#: standalone/drakTermServ:1212
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Upravit klienta"
-
-#: standalone/drakTermServ:1237
-#, c-format
-msgid "Disable Local Config"
-msgstr "Zakázat lokální konfiguraci"
-
-#: standalone/drakTermServ:1244
-#, c-format
-msgid "Delete Client"
-msgstr "Odebrat klienta"
-
-#: standalone/drakTermServ:1267
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-"Pro aktivaci změn je potřeba správce oken restartovat.\n"
-"(příkaz v konzoli: service dm restart)"
-
-#: standalone/drakTermServ:1313
-#, c-format
-msgid "Thin clients will not work with autologin. Disable autologin?"
-msgstr ""
-"Tencí klienti nebudou pracovat s automatickým přihlášením. Vypnout jej?"
-
-#: standalone/drakTermServ:1328
-#, c-format
-msgid "All clients will use %s"
-msgstr "Všichni klienti budou používat %s"
-
-#: standalone/drakTermServ:1362
-#, c-format
-msgid "Subnet:"
-msgstr "Podsíť:"
-
-#: standalone/drakTermServ:1369
-#, c-format
-msgid "Netmask:"
-msgstr "Maska sítě:"
-
-#: standalone/drakTermServ:1376
-#, c-format
-msgid "Routers:"
-msgstr "Směrovače:"
-
-#: standalone/drakTermServ:1383
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Maska podsítě:"
-
-#: standalone/drakTermServ:1390
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Adresa broadcastu:"
-
-#: standalone/drakTermServ:1397
-#, c-format
-msgid "Domain Name:"
-msgstr "Název domény:"
-
-#: standalone/drakTermServ:1405
-#, c-format
-msgid "Name Servers:"
-msgstr "Jmenné servery:"
-
-#: standalone/drakTermServ:1416
-#, c-format
-msgid "IP Range Start:"
-msgstr "IP rozsah od:"
-
-#: standalone/drakTermServ:1417
-#, c-format
-msgid "IP Range End:"
-msgstr "IP rozsah do:"
-
-#: standalone/drakTermServ:1459
-#, c-format
-msgid "Append TS Includes To Existing Config"
-msgstr "Připojit TS Includes k existujícímu nastavení"
-
-#: standalone/drakTermServ:1461
-#, c-format
-msgid "Write Config"
-msgstr "Zapsat nastavení"
-
-#: standalone/drakTermServ:1477
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Nastavení serveru dhcpd"
-
-#: standalone/drakTermServ:1478
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"Většina těchto údajů byla získána z vašeho\n"
-"běžícího systému. Můžete je upravit dle potřeby"
-
-#: standalone/drakTermServ:1481
-#, c-format
-msgid ""
-"Dynamic IP Address Pool\n"
-"(needed for PXE clients):"
-msgstr ""
-"Rozsah dynamických IP adres\n"
-"(nutných pro PXE klienty):"
-
-#: standalone/drakTermServ:1634
-#, c-format
-msgid "Write to %s failed!"
-msgstr "Zápis na %s selhal!"
-
-#: standalone/drakTermServ:1647
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Prosím vložte disketu:"
-
-#: standalone/drakTermServ:1651
-#, c-format
-msgid "Could not access the floppy!"
-msgstr "Nelze pracovat s disketou!"
-
-#: standalone/drakTermServ:1653
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Nyní můžete disketu vyjmout"
-
-#: standalone/drakTermServ:1656
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Není dostupná žádná disketová mechanika!"
-
-#: standalone/drakTermServ:1662
-#, c-format
-msgid "PXE image is %s/%s"
-msgstr "Obraz pro PXE je %s/%s"
-
-#: standalone/drakTermServ:1664
-#, c-format
-msgid "Error writing %s/%s"
-msgstr "Chyba při zapisování %s/%s"
-
-#: standalone/drakTermServ:1676
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "ISO image pro Etherboot je %s"
-
-#: standalone/drakTermServ:1680
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Něco neproběhlo správně! - Je nainstalovaný program mkisofs?"
-
-#: standalone/drakTermServ:1700
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Je nutné nejprve vytvořit soubor /etc/dhcpd.conf!"
-
-#: standalone/drakTermServ:1867
-#, c-format
-msgid "%s passwd bad in Terminal Server - rewriting...\n"
-msgstr "%s má špatné heslo v Terminál serveru - nový pokus...\n"
-
-#: standalone/drakTermServ:1880
-#, c-format
-msgid "%s is not a user..\n"
-msgstr "%s není uživatel...\n"
-
-#: standalone/drakTermServ:1881
-#, c-format
-msgid "%s is already a Terminal Server user\n"
-msgstr "%s je již uživatel pro Terminal Server\n"
-
-#: standalone/drakTermServ:1883
-#, c-format
-msgid "Addition of %s to Terminal Server failed!\n"
-msgstr "Přidání %s do Terminálového serveru selhalo!\n"
-
-#: standalone/drakTermServ:1885
-#, c-format
-msgid "%s added to Terminal Server\n"
-msgstr "%s přidán do Terminál serveru\n"
-
-#: standalone/drakTermServ:1903
-#, c-format
-msgid "Deleted %s...\n"
-msgstr "Smazán %s...\n"
-
-#: standalone/drakTermServ:1905 standalone/drakTermServ:1978
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s nenalezen...\n"
-
-#: standalone/drakTermServ:2006
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr "/etc/hosts.allow a /etc/hosts.deny jsou již nastaveny - beze změn"
-
-#: standalone/drakTermServ:2158
-#, c-format
-msgid "Configuration changed - restart %s/dhcpd?"
-msgstr "Změnilo se nastavení - restartovat %s/dhcpd?"
-
-#: standalone/drakautoinst:38 standalone/drakhosts:123
-#: standalone/drakhosts:129 standalone/draknfs:84 standalone/draknfs:105
-#: standalone/draknfs:444 standalone/draknfs:447 standalone/draknfs:539
-#: standalone/draknfs:546 standalone/draksambashare:187
-#: standalone/draksambashare:208 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Error!"
-msgstr "Chyba!"
-
-#: standalone/drakautoinst:39
-#, c-format
-msgid "I can not find needed image file `%s'."
-msgstr "Nemohu najít potřebný soubor '%s ' s obrazem."
-
-#: standalone/drakautoinst:41
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Nastavení automatické instalace"
-
-#: standalone/drakautoinst:42
-#, c-format
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Press ok to continue."
-msgstr ""
-"Chystáte se nastavit disketu pro automatickou instalaci. Tato volba je někdy "
-"nebezpečná a měla by se používat s opatrností.\n"
-"\n"
-"Tato disketa dovoluje zopakovat instalaci, která již na tomto počítači byla "
-"provedena s tím, že v některých krocích lze zadat jiné hodnoty.\n"
-"\n"
-"Pro maximální bezpečnost není rozdělování disků ani formátování prováděno "
-"automaticky, i přesto, pokud to při instalaci zvolíte.\n"
-"\n"
-"Stiskněte Ok pro pokračování."
-
-#: standalone/drakautoinst:60
-#, c-format
-msgid "replay"
-msgstr "zopakovat"
-
-#: standalone/drakautoinst:60 standalone/drakautoinst:69
-#, c-format
-msgid "manual"
-msgstr "ručně"
-
-#: standalone/drakautoinst:64
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Nastavení automatických kroků"
-
-#: standalone/drakautoinst:65
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Vyberte si prosím, které z kroků instalace mají být provedeny automaticky "
-"stejně jako instalační program a které budou zadány ručně"
-
-#: standalone/drakautoinst:77 standalone/drakautoinst:78
-#: standalone/drakautoinst:92
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Vytvářím disketu pro automatickou instalaci"
-
-#: standalone/drakautoinst:90
-#, c-format
-msgid "Insert another blank floppy in drive %s (for drivers disk)"
-msgstr "Vložte jinou prázdnou disketu do mechaniky %s (pro disketu s ovladači)"
-
-#: standalone/drakautoinst:91
-#, c-format
-msgid "Creating auto install floppy (drivers disk)"
-msgstr "Vytvářím disketu pro automatickou instalaci (disketu s ovladači)"
-
-#: standalone/drakautoinst:156
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Vítejte.\n"
-"\n"
-"Parametry pro automatickou instalaci jsou přístupné v sekci nalevo"
-
-#: standalone/drakautoinst:251
-#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Disketa byla s úspěchem vytvořena.\n"
-"Nyní lze provést stejnou instalaci znovu."
-
-#: standalone/drakautoinst:287
-#, c-format
-msgid "Auto Install"
-msgstr "Automatická instalace"
-
-#: standalone/drakautoinst:356
-#, c-format
-msgid "Add an item"
-msgstr "Přidat položku"
-
-#: standalone/drakautoinst:363
-#, c-format
-msgid "Remove the last item"
-msgstr "Odstranit poslední položku"
-
-#: standalone/drakbackup:157
-#, c-format
-msgid ""
-"Expect is an extension to the TCL scripting language that allows interactive "
-"sessions without user intervention."
-msgstr ""
-"Expect je rozšířením skriptovacího jazyka Tcl, který umožňuje interaktivní "
-"komunikaci bez zásahu uživatele."
-
-#: standalone/drakbackup:158
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "Uloží heslo pro tento systém v konfiguraci aplikace drakbackup."
-
-#: standalone/drakbackup:159
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
-"U CD s více session pouze první session vymaže celé CDRW. Jinak bude CDRW "
-"vymazáno před každou zálohou."
-
-#: standalone/drakbackup:160
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-"Tato volba umožní uložit soubory, které se změnily. Přesné chování záleží "
-"na tom zda bylo vybráno přírůstkové nebo rozdílové zálohování."
-
-#: standalone/drakbackup:161
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-"Přírůstkové zálohování zálohuje pouze ty soubory, které se změnily nebo jsou "
-"od poslední zálohy nové."
-
-#: standalone/drakbackup:162
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Rozdílové zálohování zálohuje pouze ty soubory, které se změnily nebo jsou "
-"nové oproti 'základní' záloze."
-
-#: standalone/drakbackup:163
-#, c-format
-msgid ""
-"Star should be selected if you want to backup EA or ACLs, otherwise choose "
-"tar"
-msgstr ""
-
-#: standalone/drakbackup:164
-#, fuzzy, c-format
-msgid ""
-"This should be a local user or email address that you want the backup "
-"results sent to. You will need to define a functioning mail server. Multiple "
-"users can be in a comma seperated list"
-msgstr ""
-"Uživatelé, kterým chcete poslat výsledek zálohování mohou být zapsáni jako "
-"seznam čárkou oddělených uživatelů nebo email adres. Pro odeslání emailů "
-"potřebujete mít v systému funkční program pro elektronickou poštu."
-
-#: standalone/drakbackup:165
-#, c-format
-msgid ""
-"This should be the return address that you want the backup results sent "
-"from. Default is drakbackup."
-msgstr ""
-"Toto by měla být zpáteční adresa, ze které chcete posílat výsledky "
-"zálohování. Výchozí je drakbackup."
-
-#: standalone/drakbackup:166
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr "Soubory zapsané do souboru .backupignore nebudou zálohovány."
-
-#: standalone/drakbackup:167
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-"Pro zálohu na jiná média budou nejdříve soubory vytvořeny na disku a potom "
-"přesunuty na jiné médium. Zvolením této volby se po záloze smažou pomocné "
-"tar soubory z disku."
-
-#: standalone/drakbackup:168
-#, c-format
-msgid ""
-"Selecting this option allows you to view the raw output from the restore "
-"process, after a file restore."
-msgstr ""
-
-#: standalone/drakbackup:169
-#, c-format
-msgid ""
-"Some protocols, like rsync, may be configured at the server end. Rather "
-"than using a directory path, you would use the 'module' name for the service "
-"path."
-msgstr ""
-"Některé protokoly, jako např. rsync, mohou být nastaveny na straně serveru. "
-"Místo použití adresářové cesty raději použijte pro cestu ke službě název "
-"'modulu'."
-
-#: standalone/drakbackup:170
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"Vlastní nastavení dovoluje specifikovat libovolný den a hodinu. Další volby "
-"používají run-parts v /etc/crontab."
-
-#: standalone/drakbackup:344
-#, c-format
-msgid "No media selected for cron operation."
-msgstr "Pro pravidelné operace (cron) nebyla vybrána žádná média."
-
-#: standalone/drakbackup:348
-#, c-format
-msgid "No interval selected for cron operation."
-msgstr "Pro pravidelné operace (cron) nebyl zvolen žádný interval."
-
-#: standalone/drakbackup:393
-#, c-format
-msgid "Interval cron not available as non-root"
-msgstr "Služby intervalu cronu nejsou pro běžné uživatele dostupné"
-
-#: standalone/drakbackup:477 standalone/logdrake:439
-#, c-format
-msgid "\"%s\" neither is a valid email nor is an existing local user!"
-msgstr ""
-"\"%s\" není ani platná emailová adresa ani existující lokální uživatel!"
-
-#: standalone/drakbackup:481 standalone/logdrake:444
-#, 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\" je lokální uživatel, ale nevybrali jste lokální SMTP server, takže "
-"musíte použít kompletní emailovou adresu."
-
-#: standalone/drakbackup:491
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr ""
-"Seznam oprávněných uživatelů se změnil, zapisuji znovu konfigurační soubor."
-
-#: standalone/drakbackup:493
-#, c-format
-msgid "Old user list:\n"
-msgstr "Starý seznam uživatelů:\n"
-
-#: standalone/drakbackup:495
-#, c-format
-msgid "New user list:\n"
-msgstr "Nový seznam uživatelů:\n"
-
-#: standalone/drakbackup:524
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
-msgstr ""
-"\n"
-" Report programu DrackBackup \n"
-
-#: standalone/drakbackup:525
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-msgstr ""
-"\n"
-" Report démonu pro DrackBackup\n"
-
-#: standalone/drakbackup:531
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" Detaily o reportu pro DrackBackup\n"
-"\n"
-"\n"
-
-#: standalone/drakbackup:556 standalone/drakbackup:627
-#: standalone/drakbackup:683
-#, c-format
-msgid "Total progress"
-msgstr "Celkový průběh"
-
-#: standalone/drakbackup:609
-#, c-format
-msgid ""
-"%s exists, delete?\n"
-"\n"
-"If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-"%s existuje, smazat?\n"
-"\n"
-"Pokud jste tak již jednou učinili, budete nejspíš muset\n"
-"vymazat příslušný záznam ze souboru authorized_keys na serveru."
-
-#: standalone/drakbackup:618
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "Generování klíčů může chvíli trvat."
-
-#: standalone/drakbackup:625
-#, c-format
-msgid "Cannot spawn %s."
-msgstr "Nelze spustit %s."
-
-#: standalone/drakbackup:642
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "Žádná výzva na heslo na %s na portu %s"
-
-#: standalone/drakbackup:643
-#, c-format
-msgid "Bad password on %s"
-msgstr "Chybné heslo na %s"
-
-#: standalone/drakbackup:644
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "Povolení odepřeno při přenosu %s na %s"
-
-#: standalone/drakbackup:645
-#, c-format
-msgid "Can not find %s on %s"
-msgstr "Nelze nalézt %s na %s"
-
-#: standalone/drakbackup:649
-#, c-format
-msgid "%s not responding"
-msgstr "%s neodpovídá"
-
-#: standalone/drakbackup:653
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-"Přenos úspěšný!\n"
-"Možná budete chtít zkontrolovat, zda se můžete přihlásit na server:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"bez dotazu na heslo."
-
-#: standalone/drakbackup:703
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "V mechanice není CDR/DVDR médium."
-
-#: standalone/drakbackup:707
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Toto není zapisovatelné médium"
-
-#: standalone/drakbackup:712
-#, c-format
-msgid "Not erasable media!"
-msgstr "Toto není přepisovatelné médium!"
-
-#: standalone/drakbackup:754
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Vymazání média může chvíli trvat."
-
-#: standalone/drakbackup:812
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Problémy s právy při přístupu na CD."
-
-#: standalone/drakbackup:840
-#, c-format
-msgid "No tape in %s!"
-msgstr "Není páska v %s!"
-
-#: standalone/drakbackup:953
-#, c-format
-msgid ""
-"Backup destination quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-"Kvóta cíle zálohování překročena!\n"
-"%d MB použita, %d MB bylo vyhrazeno."
-
-#: standalone/drakbackup:973 standalone/drakbackup:1005
-#, c-format
-msgid "Backup system files..."
-msgstr "Záloha systémových souborů..."
-
-#: standalone/drakbackup:1006 standalone/drakbackup:1045
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Záloha souborů pevného disku..."
-
-#: standalone/drakbackup:1044
-#, c-format
-msgid "Backup User files..."
-msgstr "Záloha souborů uživatelů..."
-
-#: standalone/drakbackup:1078
-#, c-format
-msgid "Backup Other files..."
-msgstr "Záloha ostatních souborů..."
-
-#: standalone/drakbackup:1079
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Průběh zálohování pevného disku... "
-
-#: standalone/drakbackup:1084
-#, c-format
-msgid "No changes to backup!"
-msgstr "Nejsou žádné změny pro zálohování!"
-
-#: standalone/drakbackup:1100 standalone/drakbackup:1122
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-"\n"
-"Aktivity programu DrakBackup skrze %s:\n"
-"\n"
-
-#: standalone/drakbackup:1109
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-" Problémy FTP spojení: Nebylo možné poslat vaše soubory se zálohou přes "
-"FTP.\n"
-
-#: standalone/drakbackup:1110
-#, c-format
-msgid ""
-"Error during sending file via FTP. Please correct your FTP configuration."
-msgstr ""
-"Chyba při posílání souboru přes FTP. Prosím opravte vaše nastavení FTP."
-
-#: standalone/drakbackup:1112
-#, c-format
-msgid "file list sent by FTP: %s\n"
-msgstr "seznam souborů poslaný přes FTP: %s\n"
-
-#: standalone/drakbackup:1127
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-"\n"
-"Aktivity programu DrakBackup skrze CD:\n"
-"\n"
-
-#: standalone/drakbackup:1132
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-"\n"
-"Aktivity programu DrakBackup skrze pásku:\n"
-"\n"
-
-#: standalone/drakbackup:1141
-#, c-format
-msgid "Error sending mail. Your report mail was not sent."
-msgstr "Chyba při posílání pošty. Vámi zvolené hlášení nebylo odesláno."
-
-#: standalone/drakbackup:1142
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr " Chyba při posílání pošty. \n"
-
-#: standalone/drakbackup:1172
-#, c-format
-msgid "Can not create catalog!"
-msgstr "Nelze vytvořit katalog!"
-
-#: standalone/drakbackup:1332
-#, fuzzy, c-format
-msgid "Problem installing %s"
-msgstr "Problém s instalací balíčku %s"
-
-#: standalone/drakbackup:1420
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Zálohovat vaše systémové soubory. (adresář /etc)"
-
-#: standalone/drakbackup:1421 standalone/drakbackup:1484
-#: standalone/drakbackup:1550
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr "Použít přírůstkovou/rozdílovou zálohu (nepřepisovat starší zálohy)"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Použít přírůstkovou zálohu"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Použít rozdílové zálohování"
-
-#: standalone/drakbackup:1425
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Nezahrnout kritické soubory (passwd, group, fstab)"
-
-#: standalone/drakbackup:1456
-#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Zvolte prosím všechny uživatele, které chcete zálohovat."
-
-#: standalone/drakbackup:1483
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Nezahrnout cache prohlížeče"
-
-#: standalone/drakbackup:1537
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Vyberte soubory nebo adresáře a klepněte na 'OK'"
-
-#: standalone/drakbackup:1538 standalone/drakfont:650
-#, c-format
-msgid "Remove Selected"
-msgstr "Odstranit vybrané"
-
-#: standalone/drakbackup:1601
-#, c-format
-msgid "Users"
-msgstr "Uživatelé"
-
-#: standalone/drakbackup:1621
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Použít síťové připojení pro zálohování"
-
-#: standalone/drakbackup:1623
-#, c-format
-msgid "Net Method:"
-msgstr "Síťová metoda:"
-
-#: standalone/drakbackup:1627
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Použít Expect pro SSH"
-
-#: standalone/drakbackup:1628
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "Vytvořit/Přenést záložní klíče pro SSH"
-
-#: standalone/drakbackup:1630
-#, c-format
-msgid "Transfer Now"
-msgstr "Přenést nyní"
-
-#: standalone/drakbackup:1632
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Jiné (ne pro drakbackup) klíče jsou již na místě"
-
-#: standalone/drakbackup:1635
-#, c-format
-msgid "Host name or IP."
-msgstr "Název počítače nebo IP adresa."
-
-#: standalone/drakbackup:1640
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
-"Adresář (nebo modul), do kterého bude umístěna záloha na tomto počítači."
-
-#: standalone/drakbackup:1652
-#, c-format
-msgid "Remember this password"
-msgstr "Pamatovat si heslo"
-
-#: standalone/drakbackup:1664
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Potřebuji název počítače, uživatelské jméno a heslo!"
-
-#: standalone/drakbackup:1755
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Použít pro zálohování CD/DVD-ROM"
-
-#: standalone/drakbackup:1758
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Vyberte CD/DVD zařízení"
-
-#: standalone/drakbackup:1763
-#, c-format
-msgid "Choose your CD/DVD media size"
-msgstr "Vyberte velikost vašeho média CD/DVD"
-
-#: standalone/drakbackup:1770
-#, c-format
-msgid "Multisession CD"
-msgstr "Multisession CD"
-
-#: standalone/drakbackup:1772
-#, c-format
-msgid "CDRW media"
-msgstr "CDRW média"
-
-#: standalone/drakbackup:1778
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Smazat CDRW médium (při prvním sezení)"
-
-#: standalone/drakbackup:1779
-#, c-format
-msgid " Erase Now "
-msgstr " Vymazat nyní "
-
-#: standalone/drakbackup:1785
-#, c-format
-msgid "DVD+RW media"
-msgstr "DVD+RW média"
-
-#: standalone/drakbackup:1787
-#, c-format
-msgid "DVD-R media"
-msgstr "DVD-R média"
-
-#: standalone/drakbackup:1789
-#, c-format
-msgid "DVDRAM device"
-msgstr "DVDRAM zařízení"
-
-#: standalone/drakbackup:1820
-#, c-format
-msgid "No CD device defined!"
-msgstr "Není definováno žádné CD zařízení!"
-
-#: standalone/drakbackup:1862
-#, c-format
-msgid "Use tape to backup"
-msgstr "Použít páskovou jednotku"
-
-#: standalone/drakbackup:1865
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Název zařízení, na které se bude zálohovat"
-
-#: standalone/drakbackup:1871
-#, c-format
-msgid "Backup directly to tape"
-msgstr "Zálohovat přímo na pásku"
-
-#: standalone/drakbackup:1877
-#, c-format
-msgid "Use tape hardware compression (EXPERIMENTAL)"
-msgstr "Použít páskovou hardwarovou komprimaci (EXPERIMENTÁLNÍ)"
-
-#: standalone/drakbackup:1883
-#, c-format
-msgid "Do not rewind tape after backup"
-msgstr "Po provedení zálohy nepřevinout pásku"
-
-#: standalone/drakbackup:1889
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Před zálohování pásku vymazat"
-
-#: standalone/drakbackup:1895
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Vysunout pásku po dokončení zálohy"
-
-#: standalone/drakbackup:1976
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Zadejte adresář, kam se bude zálohovat:"
-
-#: standalone/drakbackup:1980
-#, c-format
-msgid "Directory to save to"
-msgstr "Adresář pro ukládání"
-
-#: standalone/drakbackup:1985
-#, c-format
-msgid ""
-"Maximum disk space\n"
-" allocated for backups (MB)"
-msgstr ""
-"Maximální diskový prostor\n"
-"přidělený zálohám (MB)"
-
-#: standalone/drakbackup:1989
-#, c-format
-msgid ""
-"Delete incremental or differential\n"
-" backups older than N days\n"
-" (0 is keep all backups) to save space"
-msgstr ""
-"Smazat přírůstkové nebo rozdílové\n"
-"zálohy starší než N dní\n"
-"(0 ponechá všechny zálohy) pro úsporu místa"
-
-#: standalone/drakbackup:2056
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CD-ROM / DVD-ROM"
-
-#: standalone/drakbackup:2061
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Pevný disk / NFS"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2077
-#: standalone/drakbackup:2082
-#, c-format
-msgid "hourly"
-msgstr "každou hodinu"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2078
-#: standalone/drakbackup:2083
-#, c-format
-msgid "daily"
-msgstr "každý den"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2079
-#: standalone/drakbackup:2084
-#, c-format
-msgid "weekly"
-msgstr "každý týden"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2080
-#: standalone/drakbackup:2085
-#, c-format
-msgid "monthly"
-msgstr "každý měsíc"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2081
-#: standalone/drakbackup:2086
-#, c-format
-msgid "custom"
-msgstr "vlastní"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "January"
-msgstr "Leden"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "February"
-msgstr "únor"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "March"
-msgstr "Březen"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "April"
-msgstr "Duben"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "May"
-msgstr "Květen"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "June"
-msgstr "Červen"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "July"
-msgstr "Červenec"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "August"
-msgstr "Srpen"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "September"
-msgstr "Září"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "October"
-msgstr "Říjen"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "November"
-msgstr "Listopad"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "December"
-msgstr "prosinec"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Sunday"
-msgstr "Neděle"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Monday"
-msgstr "Pondělí"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Tuesday"
-msgstr "Úterý"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Wednesday"
-msgstr "středa"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Thursday"
-msgstr "čtvrtek"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Friday"
-msgstr "Pátek"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Saturday"
-msgstr "Sobota"
-
-#: standalone/drakbackup:2126
-#, fuzzy, c-format
-msgid "Delete cron entry"
-msgstr "Odebrat klienta"
-
-#: standalone/drakbackup:2127
-#, fuzzy, c-format
-msgid "Add cron entry"
-msgstr "Přidat tiskárnu"
-
-#: standalone/drakbackup:2185
-#, c-format
-msgid "Use daemon"
-msgstr "Použít démona"
-
-#: standalone/drakbackup:2189
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Vyberte si interval mezi jednotlivými zálohami"
-
-#: standalone/drakbackup:2197
-#, c-format
-msgid "Minute"
-msgstr "Minuta"
-
-#: standalone/drakbackup:2201
-#, c-format
-msgid "Hour"
-msgstr "Hodina"
-
-#: standalone/drakbackup:2205
-#, c-format
-msgid "Day"
-msgstr "den"
-
-#: standalone/drakbackup:2209
-#, c-format
-msgid "Month"
-msgstr "Měsíc"
-
-#: standalone/drakbackup:2213
-#, fuzzy, c-format
-msgid "Weekday (start)"
-msgstr "Středa"
-
-#: standalone/drakbackup:2217
-#, fuzzy, c-format
-msgid "Weekday (end)"
-msgstr "Středa"
-
-#: standalone/drakbackup:2221
-#, fuzzy, c-format
-msgid "Profile"
-msgstr "Profily"
-
-#: standalone/drakbackup:2227
-#, fuzzy, c-format
-msgid "Current crontab:"
-msgstr "Aktuální uživatel"
-
-#: standalone/drakbackup:2235
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "Prosím zvolte si médium pro zálohy."
-
-#: standalone/drakbackup:2239
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Ujistěte se prosím, že mezi službami je přítomen cron démon."
-
-#: standalone/drakbackup:2240
-#, c-format
-msgid ""
-"If your machine is not on all the time, you might want to install anacron."
-msgstr ""
-"Pokud není váš počítač neustále zapnut, možná budete chtít nainstalovat "
-"anacron."
-
-#: standalone/drakbackup:2316
-#, fuzzy, c-format
-msgid "Please choose the archive program"
-msgstr "Vyberte datum obnovení zálohy:"
-
-#: standalone/drakbackup:2321
-#, c-format
-msgid "Please choose the compression type"
-msgstr "Vyberte prosím typ komprimace"
-
-#: standalone/drakbackup:2325
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Použít .backupignore soubory"
-
-#: standalone/drakbackup:2327
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Poslat report po záloze mailem na:"
-
-#: standalone/drakbackup:2333
-#, c-format
-msgid "Return address for sent mail:"
-msgstr "Zpáteční adresa pro odeslanou poštu:"
-
-#: standalone/drakbackup:2339
-#, c-format
-msgid "SMTP server for mail:"
-msgstr "SMTP server pro poštu:"
-
-#: standalone/drakbackup:2343
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr "Smazat pomocné tar soubory po záloze na jiné médium."
-
-#: standalone/drakbackup:2344
-#, fuzzy, c-format
-msgid "View restore log after file restore."
-msgstr "Obnovit také ostatní soubory."
-
-#: standalone/drakbackup:2389
-#, c-format
-msgid "What"
-msgstr "Co"
-
-#: standalone/drakbackup:2394
-#, c-format
-msgid "Where"
-msgstr "Kde"
-
-#: standalone/drakbackup:2399
-#, c-format
-msgid "When"
-msgstr "Kdy"
-
-#: standalone/drakbackup:2404
-#, c-format
-msgid "More Options"
-msgstr "Další volby"
-
-#: standalone/drakbackup:2417
-#, c-format
-msgid "Backup destination not configured..."
-msgstr "Cíl zálohování není nastaven..."
-
-#: standalone/drakbackup:2437 standalone/drakbackup:4367
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Nastavení pro DrakBackup"
-
-#: standalone/drakbackup:2453
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Vyberte si, prosím, kam chcete zálohovat."
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Hard Drive used to prepare backups for all media"
-msgstr "Pevný disk pro přípravu zálohy na všechna zařízení"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Across Network"
-msgstr "Přes síť"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On CD-R"
-msgstr "Na CD-R"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On Tape Device"
-msgstr "Na pásku"
-
-#: standalone/drakbackup:2502
-#, c-format
-msgid "Backup Users"
-msgstr "Zálohovat uživatele"
-
-#: standalone/drakbackup:2503
-#, c-format
-msgid " (Default is all users)"
-msgstr " (Výchozí - všechny uživatele)"
-
-#: standalone/drakbackup:2516
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Prosím vyberte si, co chcete zálohovat"
-
-#: standalone/drakbackup:2517
-#, c-format
-msgid "Backup System"
-msgstr "Zálohovat systém"
-
-#: standalone/drakbackup:2519
-#, c-format
-msgid "Select user manually"
-msgstr "Vybrat uživatele ručně"
-
-#: standalone/drakbackup:2548
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Zkontrolujte prosím data pro zálohování..."
-
-#: standalone/drakbackup:2620
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Zdroje pro zálohu:\n"
-
-#: standalone/drakbackup:2621
-#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Systémové soubory:\n"
-
-#: standalone/drakbackup:2623
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Soubory uživatelů:\n"
-
-#: standalone/drakbackup:2625
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Další soubory:\n"
-
-#: standalone/drakbackup:2627
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-"\n"
-"- Uložit na pevný disk do adresáře: %s\n"
-
-#: standalone/drakbackup:2628
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tNastavit limit pro místo na disku na %s MB\n"
-
-#: standalone/drakbackup:2629
-#, c-format
-msgid "\tDelete backups older than %s day(s)\n"
-msgstr "\tSmazat zálohy starší než %s dní(y)\n"
-
-#: standalone/drakbackup:2632
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
-"\n"
-"- Smazat pomocné tar soubory po provedení zálohy.\n"
-
-#: standalone/drakbackup:2637
-#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr ""
-"\n"
-"- Vypálit na CD"
-
-#: standalone/drakbackup:2638
-#, c-format
-msgid "RW"
-msgstr "RW"
-
-#: standalone/drakbackup:2639
-#, c-format
-msgid " on device: %s"
-msgstr " na zařízení: %s"
-
-#: standalone/drakbackup:2640
-#, c-format
-msgid " (multi-session)"
-msgstr " (multi-session)"
-
-#: standalone/drakbackup:2641
-#, c-format
-msgid ""
-"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-"\n"
-"- Uložit na pásku na zařízení: %s"
-
-#: standalone/drakbackup:2642
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tErase=%s"
-
-#: standalone/drakbackup:2644
-#, c-format
-msgid "\tBackup directly to Tape\n"
-msgstr "\tZálohovat přímo na pásku\n"
-
-#: standalone/drakbackup:2646
-#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
-"\n"
-"- Uložit pomocí %s na počítač: %s\n"
-
-#: standalone/drakbackup:2647
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t uživatelské jméno: %s\n"
-"\t\t cesta: %s \n"
-
-#: standalone/drakbackup:2648
-#, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Volby:\n"
-
-#: standalone/drakbackup:2649
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tNezahrnout systémové soubory\n"
-
-#: standalone/drakbackup:2651
-#, fuzzy, c-format
-msgid "\tBackups use %s and bzip2\n"
-msgstr "\tZálohování používá tar a bzip2\n"
-
-#: standalone/drakbackup:2652
-#, fuzzy, c-format
-msgid "\tBackups use %s and gzip\n"
-msgstr "\tZálohování používá tar a gzip\n"
-
-#: standalone/drakbackup:2653
-#, fuzzy, c-format
-msgid "\tBackups use %s only\n"
-msgstr "\tZálohování používá pouze tar\n"
-
-#: standalone/drakbackup:2655
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tPoužít .backupignore soubory\n"
-
-#: standalone/drakbackup:2656
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tPoslat mail na %s\n"
-
-#: standalone/drakbackup:2657
-#, c-format
-msgid "\tSend mail from %s\n"
-msgstr "\tOdeslat poštu z %s\n"
-
-#: standalone/drakbackup:2658
-#, c-format
-msgid "\tUsing SMTP server %s\n"
-msgstr "\tPřes SMTP server %s\n"
-
-#: standalone/drakbackup:2660
-#, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
-msgstr ""
-"\n"
-"- Démon, %s přes:\n"
-
-#: standalone/drakbackup:2661
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-Pevný disk.\n"
-
-#: standalone/drakbackup:2662
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-R.\n"
-
-#: standalone/drakbackup:2663
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Páska \n"
-
-#: standalone/drakbackup:2664
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Sítí přes FTP.\n"
-
-#: standalone/drakbackup:2665
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Sítí přes SSH.\n"
-
-#: standalone/drakbackup:2666
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-Sítí přes rsync.\n"
-
-#: standalone/drakbackup:2668
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Pro první spuštění použijte Průvodce nebo Rozšířené.\n"
-
-#: standalone/drakbackup:2673
-#, c-format
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Seznam dat pro obnovení:\n"
-"\n"
-
-#: standalone/drakbackup:2675
-#, c-format
-msgid "- Restore System Files.\n"
-msgstr "- Obnovit systémové soubory.\n"
-
-#: standalone/drakbackup:2677 standalone/drakbackup:2687
-#, c-format
-msgid " - from date: %s %s\n"
-msgstr " - od data: %s %s\n"
-
-#: standalone/drakbackup:2680
-#, c-format
-msgid "- Restore User Files: \n"
-msgstr "- Obnovit soubory uživatelů: \n"
-
-#: standalone/drakbackup:2685
-#, c-format
-msgid "- Restore Other Files: \n"
-msgstr "- Obnovit další soubory: \n"
-
-#: standalone/drakbackup:2864
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Seznam poškozených dat:\n"
-"\n"
-
-#: standalone/drakbackup:2866
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Zrušte nebo odstraňte při dalším spuštění tuto volbu."
-
-#: standalone/drakbackup:2876
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Záložní soubory jsou poškozené"
-
-#: standalone/drakbackup:2897
-#, c-format
-msgid " All of your selected data have been "
-msgstr " Všechna vybraná data byla "
-
-#: standalone/drakbackup:2898
-#, c-format
-msgid " Successfully Restored on %s "
-msgstr " úspěšně obnovena na %s "
-
-#: standalone/drakbackup:2999
-#, c-format
-msgid "/usr/bin/star not found, using tar..."
-msgstr ""
-
-#: standalone/drakbackup:3035
-#, c-format
-msgid " Restore Configuration "
-msgstr " Obnovit nastavení "
-
-#: standalone/drakbackup:3063
-#, c-format
-msgid "OK to restore the other files."
-msgstr "Obnovit také ostatní soubory."
-
-#: standalone/drakbackup:3079
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Seznam uživatelů pro obnovení (od každého bude obnovena pouze poslední "
-"záloha)"
-
-#: standalone/drakbackup:3144
-#, c-format
-msgid "Please choose the date to restore:"
-msgstr "Vyberte datum obnovení zálohy:"
-
-#: standalone/drakbackup:3181
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Obnovit z pevného disku."
-
-#: standalone/drakbackup:3183
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Zadejte adresář, kde jsou umístěny zálohy"
-
-#: standalone/drakbackup:3187
-#, c-format
-msgid "Directory with backups"
-msgstr "Adresář se zálohami"
-
-#: standalone/drakbackup:3241
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Vyberte další médium, kde jsou umístěny zálohy"
-
-#: standalone/drakbackup:3243
-#, c-format
-msgid "Other Media"
-msgstr "Další média"
-
-#: standalone/drakbackup:3248
-#, c-format
-msgid "Restore system"
-msgstr "Obnovit systém"
-
-#: standalone/drakbackup:3249
-#, c-format
-msgid "Restore Users"
-msgstr "Obnovit uživatele"
-
-#: standalone/drakbackup:3250
-#, c-format
-msgid "Restore Other"
-msgstr "Obnovit ostatní"
-
-#: standalone/drakbackup:3252
-#, c-format
-msgid "Select path to restore (instead of /)"
-msgstr "vyberte cestu pro obnovení (místo /)"
-
-#: standalone/drakbackup:3256 standalone/drakbackup:3539
-#, c-format
-msgid "Path To Restore To"
-msgstr "Cesta pro obnovení"
-
-#: standalone/drakbackup:3259
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Provést novou zálohu před obnovou (pouze pro přírůstkovou zálohu)"
-
-#: standalone/drakbackup:3261
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Odebrat adresáře uživatele před obnovou."
-
-#: standalone/drakbackup:3345
-#, c-format
-msgid "Filename text substring to search for (empty string matches all):"
-msgstr "Hledaný název souboru (prázdný řetězec vybere vše):"
-
-#: standalone/drakbackup:3348
-#, c-format
-msgid "Search Backups"
-msgstr "Vyhledat zálohy"
-
-#: standalone/drakbackup:3367
-#, c-format
-msgid "No matches found..."
-msgstr "Žádný výskyt nenalezen..."
-
-#: standalone/drakbackup:3371
-#, c-format
-msgid "Restore Selected"
-msgstr "Obnovit vybrané"
-
-#: standalone/drakbackup:3507
-#, c-format
-msgid ""
-"Click date/time to see backup files.\n"
-"Ctrl-Click files to select multiple files."
-msgstr ""
-"Klepněte na datum/čas pro zobrazení zálohovaných souborů.\n"
-"Více souborů vyberete pomocí stisknutí klávesy CTRL."
-
-#: standalone/drakbackup:3513
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
-"Vybrána obnova\n"
-"Záznam katalogu"
-
-#: standalone/drakbackup:3522
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr ""
-"Vybrána obnova\n"
-"Soubory"
-
-#: standalone/drakbackup:3599
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "Souboru pro zálohu z %s nenalezeny."
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid "Restore From CD"
-msgstr "Obnovit z CD"
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-"Vložte CD s označením %s do CD\n"
-" mechaniky připojené do adresáře /mnt/cdrom"
-
-#: standalone/drakbackup:3614
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "CD nemá správný název. Je označeno %s."
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid "Restore From Tape"
-msgstr "Obnovit z pásky"
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-"Vložte pásku s názvem %s\n"
-" do páskové jednotky %s"
-
-#: standalone/drakbackup:3626
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Páska nemá správný název. Má označení %s."
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network"
-msgstr "Obnovit přes síť"
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Obnovit přes síť pomocí protokolu: %s"
-
-#: standalone/drakbackup:3638
-#, c-format
-msgid "Host Name"
-msgstr "Název počítače"
-
-#: standalone/drakbackup:3639
-#, c-format
-msgid "Host Path or Module"
-msgstr "Cesta na počítači nebo modul"
-
-#: standalone/drakbackup:3646
-#, c-format
-msgid "Password required"
-msgstr "Vyžadováno heslo"
-
-#: standalone/drakbackup:3652
-#, c-format
-msgid "Username required"
-msgstr "Vyžadováno uživatelské jméno"
-
-#: standalone/drakbackup:3655
-#, c-format
-msgid "Hostname required"
-msgstr "Vyžadován název počítače"
-
-#: standalone/drakbackup:3660
-#, c-format
-msgid "Path or Module required"
-msgstr "Vyžadována cesta nebo modul"
-
-#: standalone/drakbackup:3672
-#, c-format
-msgid "Files Restored..."
-msgstr "Soubory obnoveny..."
-
-#: standalone/drakbackup:3675
-#, c-format
-msgid "Restore Failed..."
-msgstr "Obnova selhala..."
-
-#: standalone/drakbackup:3703
-#, c-format
-msgid "%s not retrieved..."
-msgstr "%s nenačten..."
-
-#: standalone/drakbackup:3929 standalone/drakbackup:3998
-#, c-format
-msgid "Search for files to restore"
-msgstr "Vyhledat soubory, které se budou obnovovat"
-
-#: standalone/drakbackup:3933
-#, c-format
-msgid "Restore all backups"
-msgstr "Obnovit všechny zálohy"
-
-#: standalone/drakbackup:3941
-#, c-format
-msgid "Custom Restore"
-msgstr "Vlastní obnova"
-
-#: standalone/drakbackup:3945 standalone/drakbackup:3994
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Obnovit z katalogu"
-
-#: standalone/drakbackup:3966
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Nelze najít data ze zálohy pro obnovu...\n"
-
-#: standalone/drakbackup:3967
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Ověřte, že %s je správná cesta"
-
-#: standalone/drakbackup:3968
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " a CD je v mechanice"
-
-#: standalone/drakbackup:3970
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr "Zálohy na nevyjímatelná média - Použít katalog pro obnovu"
-
-#: standalone/drakbackup:3986
-#, c-format
-msgid "CD in place - continue."
-msgstr "CD je v mechanice - pokračovat."
-
-#: standalone/drakbackup:3991
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Procházet nově obnovený adresář."
-
-#: standalone/drakbackup:3992
-#, c-format
-msgid "Directory To Restore From"
-msgstr "Adresář, ze kterého se má obnovit"
-
-#: standalone/drakbackup:4028
-#, c-format
-msgid "Restore Progress"
-msgstr "Průběh obnovení"
-
-#: standalone/drakbackup:4136
-#, c-format
-msgid "Build Backup"
-msgstr "Vytvořit zálohu"
-
-#: standalone/drakbackup:4169 standalone/drakbackup:4466
-#, c-format
-msgid "Restore"
-msgstr "Obnovit"
-
-#: standalone/drakbackup:4261
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Prosím zvolte data pro obnovu..."
-
-#: standalone/drakbackup:4301
-#, c-format
-msgid "Backup system files"
-msgstr "Zálohovat systémové soubory"
-
-#: standalone/drakbackup:4304
-#, c-format
-msgid "Backup user files"
-msgstr "Zálohovat uživatelské soubory"
-
-#: standalone/drakbackup:4307
-#, c-format
-msgid "Backup other files"
-msgstr "Zálohovat další soubory"
-
-#: standalone/drakbackup:4310 standalone/drakbackup:4344
-#, c-format
-msgid "Total Progress"
-msgstr "Celkový průběh"
-
-#: standalone/drakbackup:4336
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Posílám soubory pomocí FTP"
-
-#: standalone/drakbackup:4339
-#, c-format
-msgid "Sending files..."
-msgstr "Posílám soubory..."
-
-#: standalone/drakbackup:4409
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Zálohovat z konfiguračního souboru"
-
-#: standalone/drakbackup:4414
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Prohlédnout konfiguraci zálohy."
-
-#: standalone/drakbackup:4440
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Průvodce konfigurací"
-
-#: standalone/drakbackup:4445
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Rozšířená konfigurace"
-
-#: standalone/drakbackup:4450
-#, c-format
-msgid "View Configuration"
-msgstr "Zobrazit nastavení"
-
-#: standalone/drakbackup:4454
-#, c-format
-msgid "View Last Log"
-msgstr "Zobrazit poslední log"
-
-#: standalone/drakbackup:4459
-#, c-format
-msgid "Backup Now"
-msgstr "Zálohovat nyní"
-
-#: standalone/drakbackup:4463
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Nebyl nalezen konfigurační soubor, \n"
-"klepněte na Průvodce nebo na Rozšířené."
-
-#: standalone/drakbackup:4501
-#, fuzzy, c-format
-msgid "Load profile"
-msgstr "Lokální soubor"
-
-#: standalone/drakbackup:4510
-#, fuzzy, c-format
-msgid "Save profile as..."
-msgstr "Uložit jako..."
-
-#: standalone/drakbackup:4532 standalone/drakbackup:4535
-#, c-format
-msgid "Drakbackup"
-msgstr "DrakBackup"
-
-#: standalone/drakboot:49
-#, c-format
-msgid "No bootloader found, creating a new configuration"
-msgstr "Nebyl nalezen zavaděč; vytvářím nové nastavení"
-
-#: standalone/drakboot:84 standalone/harddrake2:190 standalone/harddrake2:191
-#: standalone/logdrake:69 standalone/printerdrake:150
-#: standalone/printerdrake:151 standalone/printerdrake:152
-#, c-format
-msgid "/_File"
-msgstr "/_Soubor"
-
-#: standalone/drakboot:85 standalone/logdrake:75
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Soubor/U_končit"
-
-#: standalone/drakboot:85 standalone/harddrake2:191 standalone/logdrake:75
-#: standalone/printerdrake:152
-#, c-format
-msgid "<control>Q"
-msgstr "<control>K"
-
-#: standalone/drakboot:125
-#, c-format
-msgid "Text only"
-msgstr "Pouze text"
-
-#: standalone/drakboot:126
-#, c-format
-msgid "Verbose"
-msgstr "Informativní"
-
-#: standalone/drakboot:127
-#, c-format
-msgid "Silent"
-msgstr "Tichý"
-
-#: standalone/drakboot:134
-#, c-format
-msgid ""
-"Your system bootloader is not in framebuffer mode. To activate graphical "
-"boot, select a graphic video mode from the bootloader configuration tool."
-msgstr ""
-"Zavaděč systému není v režimu framebuffer. Pro aktivaci spouštění v "
-"grafickém režimu vyberte video režim v konfiguračním nástroji pro zavaděč."
-
-#: standalone/drakboot:135
-#, c-format
-msgid "Do you want to configure it now?"
-msgstr "Chcete to nastavit nyní?"
-
-#: standalone/drakboot:144
-#, c-format
-msgid "Install themes"
-msgstr "Instalovat motivy"
-
-#: standalone/drakboot:146
-#, c-format
-msgid "Graphical boot theme selection"
-msgstr "Výběr tématu pro grafické přihlášení"
-
-#: standalone/drakboot:149
-#, c-format
-msgid "Graphical boot mode:"
-msgstr "Režim grafického zavádění:"
-
-#: standalone/drakboot:151
-#, c-format
-msgid "Theme"
-msgstr "Téma"
-
-#: standalone/drakboot:154
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"Zobrazit motiv\n"
-"na konzoli"
-
-#: standalone/drakboot:159
-#, c-format
-msgid "Create new theme"
-msgstr "Vytvořit nový motiv"
-
-#: standalone/drakboot:191
-#, c-format
-msgid "Default user"
-msgstr "Výchozí uživatel"
-
-#: standalone/drakboot:192
-#, c-format
-msgid "Default desktop"
-msgstr "Výchozí pracovní plocha"
-
-#: standalone/drakboot:195
-#, c-format
-msgid "No, I do not want autologin"
-msgstr "Ne, nechci automatické přihlášení"
-
-#: standalone/drakboot:196
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Ano, chci automatické přihlášení s tímto (uživatelem, desktopem)"
-
-#: standalone/drakboot:203
-#, c-format
-msgid "System mode"
-msgstr "Systémový režim"
-
-#: standalone/drakboot:206
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Spustit grafické prostředí při startu systému"
-
-#: standalone/drakboot:272
-#, c-format
-msgid ""
-"Please choose a video mode, it will be applied to each of the boot entries "
-"selected below.\n"
-"Be sure your video card supports the mode you choose."
-msgstr ""
-"Vyberte prosím video režim, který bude aplikován na všechny níže vybrané "
-"položky zavaděče.\n"
-"Ujistěte se prosím, že vaše grafická karta podporuje režim, který vyberete."
-
-#: standalone/drakbug:41
-#, c-format
-msgid "Mandriva Linux Bug Report Tool"
-msgstr "Nástroj distribuce Mandriva Linux pro hlášení chyb"
-
-#: standalone/drakbug:46
-#, c-format
-msgid "Mandriva Linux Control Center"
-msgstr "Ovládací centrum Mandriva Linux"
-
-#: standalone/drakbug:48
-#, c-format
-msgid "Synchronization tool"
-msgstr "Nástroj na synchronizaci"
-
-#: standalone/drakbug:49 standalone/drakbug:152
-#, c-format
-msgid "Standalone Tools"
-msgstr "Samostatné nástroje"
-
-#: standalone/drakbug:50
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: standalone/drakbug:51
-#, c-format
-msgid "Mandriva Online"
-msgstr "Mandriva Online"
-
-#: standalone/drakbug:52
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
-
-#: standalone/drakbug:53
-#, c-format
-msgid "Msec"
-msgstr "Msec"
-
-#: standalone/drakbug:54
-#, c-format
-msgid "Remote Control"
-msgstr "Vzdálené ovládání"
-
-#: standalone/drakbug:55
-#, c-format
-msgid "Software Manager"
-msgstr "Správce software"
-
-#: standalone/drakbug:56
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
-
-#: standalone/drakbug:57
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Nástroj pro migraci z Windows"
-
-#: standalone/drakbug:58 standalone/draksambashare:1234
-#, c-format
-msgid "Userdrake"
-msgstr "UserDrake"
-
-#: standalone/drakbug:59
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Průvodci nastavením"
-
-#: standalone/drakbug:81
-#, c-format
-msgid "Select Mandriva Tool:"
-msgstr "Vyberte nástroj Mandriva:"
-
-#: standalone/drakbug:82
-#, c-format
-msgid ""
-"or Application Name\n"
-"(or Full Path):"
-msgstr ""
-"nebo název aplikace\n"
-"(nebo plnou cestu):"
-
-#: standalone/drakbug:85
-#, c-format
-msgid "Find Package"
-msgstr "Najít balíček"
-
-#: standalone/drakbug:87
-#, c-format
-msgid "Package: "
-msgstr "Balíček: "
-
-#: standalone/drakbug:88
-#, c-format
-msgid "Kernel:"
-msgstr "Jádro: "
-
-#: standalone/drakbug:101
-#, c-format
-msgid ""
-"To submit a bug report, click on the report button. \n"
-"This will open a web browser window on %s where you'll find a form to fill "
-"in. The information displayed above will be transferred to that server. \n"
-"Things useful to include in your report are the output of lspci, kernel "
-"version, and /proc/cpuinfo."
-msgstr ""
-"Chcete-li poslat hlášení o chybě, klepněte na tlačítko pro nahlášení chyby.\n"
-"Otevře se okno prohlížeče sítě Internet na adrese %s,\n"
-"kde najdete formulář k vyplnění. Výše zobrazené informace budou přeneseny na "
-"tento server.\n"
-"K nahlášené chybě je užitečné přiložit výstup příkazu lspci, verzi jádra a "
-"obsah souboru /proc/cpuinfo."
-
-#: standalone/drakbug:107
-#, c-format
-msgid "Report"
-msgstr "Hlášení"
-
-#: standalone/drakbug:162
-#, c-format
-msgid "Not installed"
-msgstr "Není instalováno"
-
-#: standalone/drakbug:174
-#, c-format
-msgid "Package not installed"
-msgstr "Balíček není nainstalován"
-
-#: standalone/drakclock:29
-#, c-format
-msgid "DrakClock"
-msgstr "DrakClock"
-
-#: standalone/drakclock:39
-#, c-format
-msgid "not defined"
-msgstr "nedefinováno"
-
-#: standalone/drakclock:41
-#, c-format
-msgid "Change Time Zone"
-msgstr "Změna časové zóny"
-
-#: standalone/drakclock:45
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "Časové zóna - DrakClock"
-
-#: standalone/drakclock:47
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "GMT - DrakClock"
-
-#: standalone/drakclock:47 standalone/finish-install:57
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Jsou vaše hardwarové hodiny nastaveny na GMT?"
-
-#: standalone/drakclock:75
-#, c-format
-msgid "Network Time Protocol"
-msgstr "Protokol síťového času"
-
-#: standalone/drakclock:77
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-"Váš počítač může synchronizovat své hodiny\n"
-"se vzdáleným časovým serverem pomocí protokolu NTP"
-
-#: standalone/drakclock:78
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Povolit protokol síťového času"
-
-#: standalone/drakclock:86
-#, c-format
-msgid "Server:"
-msgstr "Server:"
-
-#: standalone/drakclock:124
-#, c-format
-msgid "Could not synchronize with %s."
-msgstr "Nelze synchronizovat s %s."
-
-#: standalone/drakclock:146 standalone/drakclock:156
-#, c-format
-msgid "Reset"
-msgstr "Přenastavit"
-
-#: standalone/drakclock:224
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol\n"
-"\n"
-"Do you want to install ntp?"
-msgstr ""
-"Chcete-li povolit protokol síťového času,\n"
-"je nutné nainstalovat balíček ntp.\n"
-"\n"
-"Chcete nainstalovat balíček ntp?"
-
-#: standalone/drakconnect:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Nastavení sítě (%d adaptéry(ů))"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Gateway:"
-msgstr "Brána(gateway):"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Interface:"
-msgstr "Rozhraní:"
-
-#: standalone/drakconnect:93 standalone/net_monitor:116
-#, c-format
-msgid "Wait please"
-msgstr "Čekejte prosím"
-
-#: standalone/drakconnect:109
-#, c-format
-msgid "Interface"
-msgstr "Rozhraní"
-
-#: standalone/drakconnect:109 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "State"
-msgstr "Stav"
-
-#: standalone/drakconnect:126
-#, c-format
-msgid "Hostname: "
-msgstr "Název počítače: "
-
-#: standalone/drakconnect:128
-#, c-format
-msgid "Configure hostname..."
-msgstr "Nastavit název počítače..."
-
-#: standalone/drakconnect:142 standalone/drakconnect:845
-#, c-format
-msgid "LAN configuration"
-msgstr "Nastavení LAN"
-
-#: standalone/drakconnect:147
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Nastavit lokální síť..."
-
-#: standalone/drakconnect:155 standalone/drakconnect:237
-#: standalone/drakconnect:241
-#, c-format
-msgid "Apply"
-msgstr "Použít"
-
-#: standalone/drakconnect:188
-#, c-format
-msgid "Manage connections"
-msgstr "Správa připojení"
-
-#: standalone/drakconnect:215
-#, c-format
-msgid "Device selected"
-msgstr "Vybrané zařízení"
-
-#: standalone/drakconnect:296
-#, c-format
-msgid "IP configuration"
-msgstr "Nastavení IP"
-
-#: standalone/drakconnect:335
-#, c-format
-msgid "DNS servers"
-msgstr "DNS servery"
-
-#: standalone/drakconnect:343
-#, c-format
-msgid "Search Domain"
-msgstr "Prohledávaná doména"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "static"
-msgstr "statická"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "DHCP"
-msgstr "DHCP"
-
-#: standalone/drakconnect:515
-#, c-format
-msgid "Flow control"
-msgstr "Řízení toku"
-
-#: standalone/drakconnect:516
-#, c-format
-msgid "Line termination"
-msgstr "Ukončení linky"
-
-#: standalone/drakconnect:527
-#, c-format
-msgid "Modem timeout"
-msgstr "Čas vypršení pro modem"
-
-#: standalone/drakconnect:531
-#, c-format
-msgid "Use lock file"
-msgstr "Použít soubor se zámkem"
-
-#: standalone/drakconnect:533
-#, c-format
-msgid "Wait for dialup tone before dialing"
-msgstr "Počkat na oznamovací tón"
-
-#: standalone/drakconnect:536
-#, c-format
-msgid "Busy wait"
-msgstr "Čekání při obsazení"
-
-#: standalone/drakconnect:541
-#, c-format
-msgid "Modem sound"
-msgstr "Hlasitost modemu"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Enable"
-msgstr "Povolit"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Disable"
-msgstr "Vypnout"
-
-#: standalone/drakconnect:593 standalone/harddrake2:50
-#, c-format
-msgid "Media class"
-msgstr "Třída médií"
-
-#: standalone/drakconnect:594
-#, c-format
-msgid "Module name"
-msgstr "Název modulu"
-
-#: standalone/drakconnect:595
-#, c-format
-msgid "Mac Address"
-msgstr "MAC adresa"
-
-#: standalone/drakconnect:596 standalone/harddrake2:28
-#: standalone/harddrake2:120
-#, c-format
-msgid "Bus"
-msgstr "Sběrnice"
-
-#: standalone/drakconnect:597 standalone/harddrake2:34
-#, c-format
-msgid "Location on the bus"
-msgstr "Umístění na sběrnici"
-
-#: standalone/drakconnect:700 standalone/drakgw:311
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Ve vašem počítači nebyl nalezen žádný síťový adaptér. Spusťte prosím program "
-"pro nastavení hardware."
-
-#: standalone/drakconnect:709
-#, c-format
-msgid "Remove a network interface"
-msgstr "Odstranit síťové rozhraní"
-
-#: standalone/drakconnect:713
-#, c-format
-msgid "Select the network interface to remove:"
-msgstr "Zvolte síťové rozhraní pro odstranění:"
-
-#: standalone/drakconnect:745
-#, c-format
-msgid ""
-"An error occurred while deleting the \"%s\" network interface:\n"
-"\n"
-"%s"
-msgstr ""
-"Vyskytl se problém při odstraňování síťového rozhraní \"%s\": \n"
-"\n"
-"%s"
-
-#: standalone/drakconnect:746
-#, c-format
-msgid ""
-"Congratulations, the \"%s\" network interface has been successfully deleted"
-msgstr "Gratulujeme, síťové rozhraní \"%s\" bylo úspěšně odstraněno"
-
-#: standalone/drakconnect:761
-#, c-format
-msgid "No IP"
-msgstr "Bez IP"
-
-#: standalone/drakconnect:762
-#, c-format
-msgid "No Mask"
-msgstr "Bez masky"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "up"
-msgstr "zapnuto"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "down"
-msgstr "vypnuto"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Connected"
-msgstr "Připojen"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Not connected"
-msgstr "Nepřipojen"
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Disconnect..."
-msgstr "Odpojit..."
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Connect..."
-msgstr "Připojit..."
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Deactivate now"
-msgstr "Deaktivovat nyní"
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Activate now"
-msgstr "Aktivovat nyní"
-
-#: standalone/drakconnect:849
-#, c-format
-msgid ""
-"You do not have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nemáte nakonfigurováno žádné rozhraní.\n"
-"Nastavte jej klepnutím na 'Konfigurovat'"
-
-#: standalone/drakconnect:863
-#, c-format
-msgid "LAN Configuration"
-msgstr "Nastavení LAN"
-
-#: standalone/drakconnect:875
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptér %s: %s"
-
-#: standalone/drakconnect:884
-#, c-format
-msgid "Boot Protocol"
-msgstr "Protokol o spuštění"
-
-#: standalone/drakconnect:885
-#, c-format
-msgid "Started on boot"
-msgstr "Spustit při startu"
-
-#: standalone/drakconnect:921
-#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Toto rozhraní ještě nebylo nastaveno.\n"
-"Spusťte průvodce \"Přidat rozhraní\" z Ovládacího centra Mandriva Linux"
-
-#: standalone/drakconnect:975 standalone/net_applet:51
-#, c-format
-msgid ""
-"You do not have any configured Internet connection.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Nemáte nastaveno žádné připojení k Internetu.\n"
-"Spusťte průvodce \"%s\" z Ovládacího centra Mandriva Linux"
-
-#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: standalone/drakconnect:976 standalone/drakroam:34 standalone/net_applet:52
-#, c-format
-msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
-msgstr "Nastavení nového síťového rozhraní (LAN, ISDN, ADSL, ...)"
-
-#: standalone/drakconnect:981
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Konfigurace připojení k internetu"
-
-#: standalone/drakconnect:994
-#, c-format
-msgid "Third DNS server (optional)"
-msgstr "Třetí DNS Server (nepovinný)"
-
-#: standalone/drakconnect:1016
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Konfigurace připojení k internetu"
-
-#: standalone/drakconnect:1017
-#, c-format
-msgid "Internet access"
-msgstr "Přístup na Internet"
-
-#: standalone/drakconnect:1019 standalone/net_monitor:95
-#, c-format
-msgid "Connection type: "
-msgstr "Typ připojení:"
-
-#: standalone/drakconnect:1022
-#, c-format
-msgid "Status:"
-msgstr "Stav:"
-
-#: standalone/drakconnect:1027
-#, c-format
-msgid "Parameters"
-msgstr "Parametry"
-
-#: standalone/drakedm:40
-#, c-format
-msgid "GDM (GNOME Display Manager)"
-msgstr "GDM (Správce obrazovky GNOME)"
-
-#: standalone/drakedm:41
-#, c-format
-msgid "KDM (KDE Display Manager)"
-msgstr "KDM (Správce obrazovky KDE)"
-
-#: standalone/drakedm:42
-#, c-format
-msgid "XDM (X Display Manager)"
-msgstr "XDM (Správce obrazovky X)"
-
-#: standalone/drakedm:53
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Výběr správce oken"
-
-#: standalone/drakedm:54
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"Správce přihlášení pro X11 umožňuje se přihlásit přes grafické\n"
-"rozhraní k bežícímu systému X Window a podporuje spuštění různých\n"
-"X sezení na lokálním počítači současně."
-
-#: standalone/drakedm:72
-#, c-format
-msgid "The change is done, do you want to restart the dm service?"
-msgstr "Změny provedeny, chcete restartovat službu dm?"
-
-#: standalone/drakedm:73
-#, c-format
-msgid ""
-"You are going to close all running programs and lose your current session. "
-"Are you really sure that you want to restart the dm service?"
-msgstr ""
-"Chystáte se zavřít všechny běžící programy a ztratit vaše současné sezení. "
-"Jste si opravdu jisti, že chcete restartovat službu dm?"
-
-#: standalone/drakfont:182
-#, c-format
-msgid "Search installed fonts"
-msgstr "Hledám instalovaná písma"
-
-#: standalone/drakfont:184
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "Odznačit instalovaná písma"
-
-#: standalone/drakfont:207
-#, c-format
-msgid "parse all fonts"
-msgstr "zpracovávám všechna písma"
-
-#: standalone/drakfont:209
-#, c-format
-msgid "No fonts found"
-msgstr "Nebyla nalezena žádná písma"
-
-#: standalone/drakfont:217 standalone/drakfont:259 standalone/drakfont:326
-#: standalone/drakfont:359 standalone/drakfont:367 standalone/drakfont:393
-#: standalone/drakfont:411 standalone/drakfont:425
-#, c-format
-msgid "done"
-msgstr "hotovo"
-
-#: standalone/drakfont:222
-#, c-format
-msgid "Could not find any font in your mounted partitions"
-msgstr "V připojeném oddílu nelze nalézt žádná písma"
-
-#: standalone/drakfont:257
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Znovu vybrat správná písma"
-
-#: standalone/drakfont:260
-#, c-format
-msgid "Could not find any font.\n"
-msgstr "Nelze nalézt žádné písmo.\n"
-
-#: standalone/drakfont:270
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Hledat písma mezi instalovanými"
-
-#: standalone/drakfont:295
-#, c-format
-msgid "%s fonts conversion"
-msgstr "konverze %s písem"
-
-#: standalone/drakfont:324
-#, c-format
-msgid "Fonts copy"
-msgstr "Kopírování písem"
-
-#: standalone/drakfont:327
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Instalace písem True Type"
-
-#: standalone/drakfont:334
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "čekejte prosím, právě běží ttmkfdir... "
-
-#: standalone/drakfont:335
-#, c-format
-msgid "True Type install done"
-msgstr "Instalace True Type písem je dokončena"
-
-#: standalone/drakfont:341 standalone/drakfont:356
-#, c-format
-msgid "type1inst building"
-msgstr "vytvářím type1inst"
-
-#: standalone/drakfont:350
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "Odkazy na Ghostscript"
-
-#: standalone/drakfont:360
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Ignorovat dočasné soubory"
-
-#: standalone/drakfont:363
-#, c-format
-msgid "Restart XFS"
-msgstr "Restartovat XFS"
-
-#: standalone/drakfont:409 standalone/drakfont:419
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Potlačit soubory s písmy"
-
-#: standalone/drakfont:421
-#, c-format
-msgid "xfs restart"
-msgstr "restart xfs"
-
-#: standalone/drakfont:429
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
-"Před instalací písem se ujistěte, že máte potřebná práva k jejich instalací "
-"a používání na vašem systému.\n"
-"\n"
-"Písma lze instalovat běžným způsobem. Ve výjimečných případech může špatné "
-"písmo způsobit zamrznutí X serveru."
-
-#: standalone/drakfont:473 standalone/drakfont:482
-#, c-format
-msgid "DrakFont"
-msgstr "DrakFont"
-
-#: standalone/drakfont:483
-#, c-format
-msgid "Font List"
-msgstr "Seznam písem"
-
-#: standalone/drakfont:486
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "Získat písma z Windows"
-
-#: standalone/drakfont:492
-#, c-format
-msgid "About"
-msgstr "O aplikaci"
-
-#: standalone/drakfont:494 standalone/drakfont:718
-#, c-format
-msgid "Uninstall"
-msgstr "Odinstalovat"
-
-#: standalone/drakfont:495
-#, c-format
-msgid "Import"
-msgstr "Import"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakfont:513
-#, c-format
-msgid "Copyright (C) 2001-2006 by Mandriva"
-msgstr ""
-
-#: standalone/drakfont:515
-#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-"Tento program je svobodný software; můžete jej šířit nebo modifikovat\n"
-"za podmínek GNU General Public Licence, která byla publikována\n"
-"Free Software Foundation; buď verze 2, nebo (podle vaší volby)\n"
-"kterékoli pozdější verze.\n"
-"\n"
-"Tento program je distribuován s nadějí, že bude užitečný,\n"
-"ale BEZ JAKÝCHKOLIV ZÁRUK a BEZ NÁROKU NA OBCHODOVATELNOST.\n"
-"ČI NA VHODNOST PRO POUŽITÍ ZA URČITÝM ÚČELEM.\n"
-"Více podrobností naleznete v licenci GNU General Public Licence.\n"
-"\n"
-"Kopii GNU General Public Licence můžete obdržet buď s tímto programem\n"
-"nebo si o ní můžete napsat na adresu Free Software Foundation, Inc.,\n"
-"59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-
-#: standalone/drakfont:531
-#, c-format
-msgid ""
-"Thanks:\n"
-"\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
-msgstr ""
-"Poděkování:\n"
-"\n"
-" - pfm2afm: \n"
-"\t od Kena Borgendale:\n"
-"\t Převádí soubor z Windows .pfm na soubor .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t od Jamese Macnicol: \n"
-"\t type1inst generuje soubory fonts.dir fonts.scale a mapu písem.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t od Andrewa Weekse, Franka Siegerta, Thomase Henlicha, Sergeye Babkina \n"
-" Převádí soubory písem ttf na písma afm a pfb\n"
-
-#: standalone/drakfont:550
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Zvolte aplikace, které podporují tato písma:"
-
-#: standalone/drakfont:561
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: standalone/drakfont:562
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: standalone/drakfont:563
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
-
-#: standalone/drakfont:564
-#, c-format
-msgid "Generic Printers"
-msgstr "Obecné tiskárny"
-
-#: standalone/drakfont:578
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Vyberte soubor s písmem nebo adresář a klepněte na 'Přidat'"
-
-#: standalone/drakfont:579
-#, c-format
-msgid "File Selection"
-msgstr "Výběr souboru"
-
-#: standalone/drakfont:583
-#, c-format
-msgid "Fonts"
-msgstr "Fonty"
-
-#: standalone/drakfont:646
-#, c-format
-msgid "Import fonts"
-msgstr "Import písem"
-
-#: standalone/drakfont:651
-#, c-format
-msgid "Install fonts"
-msgstr "Zavést písma"
-
-#: standalone/drakfont:681
-#, c-format
-msgid "Are you sure you want to uninstall the following fonts?"
-msgstr ""
-
-#: standalone/drakfont:726
-#, c-format
-msgid "Unselected All"
-msgstr "Zrušit celý výběr"
-
-#: standalone/drakfont:729
-#, c-format
-msgid "Selected All"
-msgstr "Vybrat vše"
-
-#: standalone/drakfont:743 standalone/drakfont:762
-#, c-format
-msgid "Importing fonts"
-msgstr "Import písem"
-
-#: standalone/drakfont:747 standalone/drakfont:767
-#, c-format
-msgid "Initial tests"
-msgstr "Úvodní testy"
-
-#: standalone/drakfont:748
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Kopírovat písma do systému"
-
-#: standalone/drakfont:749
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Instalovat a převést písma"
-
-#: standalone/drakfont:750
-#, c-format
-msgid "Post Install"
-msgstr "Poinstalační nastavení"
-
-#: standalone/drakfont:768
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Odebrat písma ze systému"
-
-#: standalone/drakfont:769
-#, c-format
-msgid "Post Uninstall"
-msgstr "Nastavení po odebrání"
-
-#: standalone/drakgw:50 standalone/drakvpn:51
-#, c-format
-msgid "Sorry, we support only 2.4 and above kernels."
-msgstr "Omlouváme se, ale podporujeme pouze jádra řady 2.4 a výše."
-
-#: standalone/drakgw:75
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Sdílení Internetového Připojení"
-
-#: standalone/drakgw:79
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Váš počítač bude nastaven pro sdílení svého připojení k Internetu.\n"
-"Tato vlastnost umožňuje přístup dalších počítačů na lokální síti k síti "
-"Internet přes připojení tohoto počítače.\n"
-"\n"
-"Před pokračováním se ujistěte, že jste nastavili vaši síť a připojení k "
-"Internetu pomocí aplikace drakconnect.\n"
-"\n"
-"Pozn.: Pro nastavení lokální sítě (LAN) potřebujete vyhrazený síťový adaptér."
-
-#: standalone/drakgw:95
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Sdílení internetového připojení už bylo nastaveno.\n"
-"Nyní je povoleno.\n"
-"\n"
-"Co chcete dále dělat?"
-
-#: standalone/drakgw:99
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Internetové sdílení už bylo nastaveno.\n"
-"Nyní je vypnuto.\n"
-"\n"
-"Co chcete dále dělat?"
-
-#: standalone/drakgw:105
-#, c-format
-msgid "Reconfigure"
-msgstr "Přenastavit"
-
-#: standalone/drakgw:145
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Na vašem systému je nastaveno pouze jedno síťové rozhraní:\n"
-"\n"
-"%s\n"
-"\n"
-"Na tomto adaptéru bude nastavena lokální síť."
-
-#: standalone/drakgw:156
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "Prosím zvolte si, ke kterému síťovému adaptéru bude připojena LAN."
-
-#: standalone/drakgw:177
-#, c-format
-msgid "Local Area Network settings"
-msgstr "Nastavení lokální sítě"
-
-#: standalone/drakgw:180
-#, c-format
-msgid "Local IP address"
-msgstr "Lokální IP adresa"
-
-#: standalone/drakgw:182
-#, c-format
-msgid "The internal domain name"
-msgstr "Interní název domény"
-
-#: standalone/drakgw:188
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Našel jsem možný konflikt v současném nastavení LAN adresy pro %s!\n"
-
-#: standalone/drakgw:204
-#, c-format
-msgid "Domain Name Server (DNS) configuration"
-msgstr "Nastavení doménového (DNS) serveru"
-
-#: standalone/drakgw:208
-#, c-format
-msgid "Use this gateway as domain name server"
-msgstr "Použít tuto bránu jako doménový server"
-
-#: standalone/drakgw:209
-#, c-format
-msgid "The DNS Server IP"
-msgstr "IP adresa DNS serveru"
-
-#: standalone/drakgw:236
-#, c-format
-msgid ""
-"DHCP Server Configuration.\n"
-"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you do not know the meaning of an option, simply leave it as it is."
-msgstr ""
-"Nastavení DHCP serveru.\n"
-"\n"
-"Zde můžete vybrat různé volby nastavení DHCP serveru.\n"
-"Pokud nevíte, co která volba znamená, ponechte její výchozí hodnotu."
-
-#: standalone/drakgw:243
-#, c-format
-msgid "Use automatic configuration (DHCP)"
-msgstr "Použít automatické nastavení (DHCP)"
-
-#: standalone/drakgw:244
-#, c-format
-msgid "The DHCP start range"
-msgstr "Počátek pásma adres DHCP"
-
-#: standalone/drakgw:245
-#, c-format
-msgid "The DHCP end range"
-msgstr "Konec rozsahu DHCP adres"
-
-#: standalone/drakgw:246
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Výchozí doba pronájmu (sekundy)"
-
-#: standalone/drakgw:247
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Maximální doba pronájmu (sekundy)"
-
-#: standalone/drakgw:270
-#, c-format
-msgid "Proxy caching server (SQUID)"
-msgstr "Proxy server s vyrovnávací pamětí (Squid)"
-
-#: standalone/drakgw:274
-#, c-format
-msgid "Use this gateway as proxy caching server"
-msgstr "Použít tuto bránu jako proxy server s vyrovnávací pamětí"
-
-#: standalone/drakgw:275
-#, c-format
-msgid "Admin mail"
-msgstr "Email správce"
-
-#: standalone/drakgw:276
-#, c-format
-msgid "Visible hostname"
-msgstr "Viditelný název počítače"
-
-#: standalone/drakgw:277
-#, c-format
-msgid "Proxy port"
-msgstr "Port proxy"
-
-#: standalone/drakgw:278
-#, c-format
-msgid "Cache size (MB)"
-msgstr "Velikost vyrovnávací paměti (MB)"
-
-#: standalone/drakgw:300
-#, c-format
-msgid "Broadcast printer information"
-msgstr "Vysílat informace o tiskárně"
-
-#: standalone/drakgw:317
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Sdílení Internetového připojení je nyní zapnuto."
-
-#: standalone/drakgw:323
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Sdílení Internetového připojení je nyní vypnuto."
-
-#: standalone/drakgw:329
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP) and\n"
-" a Transparent Proxy Cache server (SQUID)."
-msgstr ""
-"Vše se podařilo nastavit.\n"
-"Nyní lze použít tento počítač pro sdílení připojení k Internetu pro vaši "
-"lokální síť, která používá automatickou konfiguraci sítě (DHCP) a\n"
-"transparentní proxy a cache server (Squid)."
-
-#: standalone/drakgw:363
-#, c-format
-msgid "Disabling servers..."
-msgstr "Zakazuji servery..."
-
-#: standalone/drakgw:377
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Našel jsem existující nastavení firewallu!"
-
-#: standalone/drakgw:378
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-"Varování! Bylo nalezeno existující nastavení firewallu. Po instalaci může "
-"být zapotřebí nějaká ruční úprava."
-
-#: standalone/drakgw:383
-#, c-format
-msgid "Configuring..."
-msgstr "Nastavuji..."
-
-#: standalone/drakgw:384
-#, c-format
-msgid "Configuring firewall..."
-msgstr "Nastavuji firewall..."
-
-#: standalone/drakhelp:17
-#, c-format
-msgid ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"\n"
-"Usage: \n"
-msgstr ""
-" drakhelp 0.1\n"
-"Copyright ©2003-2005 Mandriva.\n"
-"Toto je svobodný software a je šířen pod licencí GNU GPL.\n"
-"\n"
-"Použití: \n"
-
-#: standalone/drakhelp:22
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - zobrazí tuto nápovědu \n"
-
-#: standalone/drakhelp:23
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr ""
-" --id <id_label> - načte HTML stránku s nápovědou, která odpovídá "
-"id_label\n"
-
-#: standalone/drakhelp:24
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-" --doc <odkaz> - odkaz na jinou webovou stránku ( pro uvítací "
-"stránku správců oken)\n"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "Mandriva Linux Help Center"
-msgstr "Centrum nápovědy Mandriva Linux"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "No Help entry for %s\n"
-msgstr ""
-
-#: standalone/drakhosts:98
-#, c-format
-msgid "Please add an host to be able to modify it."
-msgstr "Přidejte prosím počítač, aby jej bylo možné změnit."
-
-#: standalone/drakhosts:108
-#, c-format
-msgid "Please modify information"
-msgstr "Prosím upravte informaci"
-
-#: standalone/drakhosts:109
-#, c-format
-msgid "Please delete information"
-msgstr "Prosím odstraňte informaci"
-
-#: standalone/drakhosts:110
-#, c-format
-msgid "Please add information"
-msgstr "Prosím přidejte informaci"
-
-#: standalone/drakhosts:115
-#, c-format
-msgid "IP address:"
-msgstr "IP adresa:"
-
-#: standalone/drakhosts:116
-#, c-format
-msgid "Host name:"
-msgstr "Název počítače:"
-
-#: standalone/drakhosts:117
-#, c-format
-msgid "Host Aliases:"
-msgstr "Přezdívky počítače:"
-
-#: standalone/drakhosts:123
-#, c-format
-msgid "Please enter a valid IP address."
-msgstr "Zadejte prosím platnou IP adresu."
-
-#: standalone/drakhosts:129
-#, c-format
-msgid "Same IP is already in %s file."
-msgstr "Stejná adresa je již v souboru %s přítomna."
-
-#: standalone/drakhosts:197
-#, c-format
-msgid "Host Aliases"
-msgstr "Přezdívky počítače"
-
-#: standalone/drakhosts:237
-#, c-format
-msgid "DrakHOSTS manage hosts definitions"
-msgstr "Správa definice počítačů DrakHOSTS"
-
-#: standalone/drakhosts:246
-#, c-format
-msgid "Failed to add host."
-msgstr "Přidání počítače selhalo."
-
-#: standalone/drakhosts:253
-#, c-format
-msgid "Failed to Modify host."
-msgstr "Úprava počítače selhala."
-
-#: standalone/drakhosts:260
-#, c-format
-msgid "Failed to remove host."
-msgstr "Selhalo odstranění počítače."
-
-#: standalone/drakids:26
-#, c-format
-msgid "Allowed addresses"
-msgstr "Povolené adresy"
-
-#: standalone/drakids:57
-#, c-format
-msgid "Log"
-msgstr "Záznam"
-
-#: standalone/drakids:61
-#, c-format
-msgid "Clear logs"
-msgstr "Smazat záznamy"
-
-#: standalone/drakids:62 standalone/drakids:67 standalone/net_applet:470
-#, c-format
-msgid "Blacklist"
-msgstr "Černá listina"
-
-#: standalone/drakids:63 standalone/drakids:80 standalone/net_applet:475
-#, c-format
-msgid "Whitelist"
-msgstr "Bílá listina"
-
-#: standalone/drakids:71
-#, c-format
-msgid "Remove from blacklist"
-msgstr "Odebrat z černé listiny"
-
-#: standalone/drakids:72
-#, c-format
-msgid "Move to whitelist"
-msgstr "Přesunout na bílou listinu"
-
-#: standalone/drakids:84
-#, c-format
-msgid "Remove from whitelist"
-msgstr "Odstranit z bílé listiny"
-
-#: standalone/drakids:136 standalone/drakids:145 standalone/drakids:170
-#: standalone/drakids:179 standalone/drakids:189 standalone/drakids:265
-#: standalone/drakroam:182 standalone/net_applet:202 standalone/net_applet:385
-#, c-format
-msgid "Unable to contact daemon"
-msgstr "Nelze kontaktovat démona"
-
-#: standalone/drakids:202
-#, c-format
-msgid "Date"
-msgstr "Datum"
-
-#: standalone/drakids:203
-#, c-format
-msgid "Attacker"
-msgstr "Útočník"
-
-#: standalone/drakids:204
-#, c-format
-msgid "Attack type"
-msgstr "Typ útoku"
-
-#: standalone/drakids:205
-#, c-format
-msgid "Service"
-msgstr "Služba"
-
-#: standalone/drakids:206 standalone/net_applet:72
-#, c-format
-msgid "Network interface"
-msgstr "Síťové rozhraní"
-
-#: standalone/draknfs:41
-#, c-format
-msgid "map root user as anonymous"
-msgstr "mapovat uživatele root jako anonymního"
-
-#: standalone/draknfs:42
-#, c-format
-msgid "map all users to anonymous user"
-msgstr "mapovat všechny uživatele jako anonymní"
-
-#: standalone/draknfs:43
-#, c-format
-msgid "No user UID mapping"
-msgstr "Bez mapování uživatelských UID"
-
-#: standalone/draknfs:44
-#, c-format
-msgid "allow real remote root access"
-msgstr "povolit skutečný vzdálený přístup uživatele root"
-
-#: standalone/draknfs:83
-#, c-format
-msgid "NFS server"
-msgstr "NFS server"
-
-#: standalone/draknfs:83
-#, c-format
-msgid "Restarting/Reloading NFS server..."
-msgstr "Restartuji/Znovu načítám NFS server..."
-
-#: standalone/draknfs:84
-#, c-format
-msgid "Error Restarting/Reloading NFS server"
-msgstr "Chyba při restartu/znovunačtení NFS serveru"
-
-#: standalone/draknfs:100 standalone/draksambashare:203
-#, c-format
-msgid "Directory Selection"
-msgstr "Výběr adresáře"
-
-#: standalone/draknfs:105 standalone/draksambashare:208
-#, c-format
-msgid "Should be a directory."
-msgstr "Mělo by se jednat o adresář."
-
-#: standalone/draknfs:136
-#, c-format
-msgid ""
-"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
-"ways:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">single host:</span> a host either by an "
-"abbreviated name recognized be the resolver, fully qualified domain name, or "
-"an IP address\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">netgroups:</span> NIS netgroups may be given "
-"as @group.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">wildcards:</span> machine names may contain "
-"the wildcard characters * and ?. For instance: *.cs.foo.edu matches all "
-"hosts in the domain cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP networks:</span> you can also export "
-"directories to all hosts on an IP (sub-)network simultaneously. for example, "
-"either `/255.255.252.0' or `/22' appended to the network base address "
-"result.\n"
-msgstr ""
-"<span weight=\"bold\">Klienty NFS</span> lze zadat několika způsoby:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">jediný počítač:</span> počítač s krátkým "
-"názvem, který dokáže server rozpoznat, plně kvalifikovaný doménový název "
-"nebo IP adresa\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">síťové skupiny:</span> síťové skupiny NIS "
-"lze zadat jako @skupinu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">divoké karty:</span> názvy počítačů mohou "
-"obsahovat divoké karty (znaky) * a ?. Například: *.cs.foo.edu odpovídá všem "
-"počítačům v doméně cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP sítě:</span> můžete také exportovat "
-"adresáře všem počítačům na IP (pod)síti najednou. Buď `/255.255.252.0' nebo "
-"`/22' připojené k základní síťové adrese bude mít stejný výsledek.\n"
-
-#: standalone/draknfs:151
-#, c-format
-msgid ""
-"<span weight=\"bold\">User ID options</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map root user as anonymous:</span> map "
-"requests from uid/gid 0 to the anonymous uid/gid (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">allow real remote root access:</span> turn "
-"off root squashing. This option is mainly useful for diskless clients "
-"(no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map all users to anonymous user:</span> map "
-"all uids and gids to the anonymous user (all_squash). Useful for NFS-"
-"exported public FTP directories, news spool directories, etc. The opposite "
-"option is no user UID mapping (no_all_squash), which is the default "
-"setting.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid and anongid:</span> explicitly set "
-"the uid and gid of the anonymous account.\n"
-msgstr ""
-"<span weight=\"bold\">Volby pro ID uživatele</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">mapovat správce jako anonymního:</span> "
-"mapuje požadavky z uid/gid 0 na anonymní uid/gid (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">povolit skutečný vzdálený přístup správci:</"
-"span> vypne mapování uživatele root. Tato volba je zejména užitečná pro "
-"bezdiskové stanice (no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">mapovat všechny uživatele jako anonymní:</"
-"span> mapuje všechna uid a gid na anonymního uživatele (all_squash). "
-"Užitečné pro FTP adresáře exportované pomocí NFS, adresáře s diskusními "
-"skupinami, atd. Opačná volba je vypnutí mapování UID (no_all_squash), což je "
-"výchozí nastavení.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid a anongid:</span> explicitně "
-"nastavuje uid a gid anonymního účtu.\n"
-
-#: standalone/draknfs:167
-#, c-format
-msgid "Synchronous access:"
-msgstr "Synchronní přístup:"
-
-#: standalone/draknfs:168
-#, c-format
-msgid "Secured Connection:"
-msgstr "Zabezpečené připojení:"
-
-#: standalone/draknfs:169
-#, c-format
-msgid "Read-Only share:"
-msgstr "Sdílení pouze pro čtení:"
-
-#: standalone/draknfs:171
-#, c-format
-msgid "<span weight=\"bold\">Advanced Options</span>"
-msgstr "<span weight=\"bold\">Rozšířené volby</span>"
-
-#: standalone/draknfs:172
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> this option requires that "
-"requests originate on an internet port less than IPPORT_RESERVED (1024). "
-"This option is on by default."
-msgstr ""
-"<span foreground=\"royalblue3\">%s:</span> tato volba vyžaduje, aby "
-"požadavky pocházely z internetového portu nižšího než IPPORT_RESERVED "
-"(1024). Tato volba je ve výchozím stavu zapnuta."
-
-#: standalone/draknfs:173
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> allow either only read or both "
-"read and write requests on this NFS volume. The default is to disallow any "
-"request which changes the filesystem. This can also be made explicit by "
-"using this option."
-msgstr ""
-"<span foreground=\"royalblue3\">%s:</span> povolí přístup pro požadavky buď "
-"jen pro čtení, nebo pro čtení i zápis na tomto NFS svazku. Výchozí stav "
-"zakazuje jakékoli požadavky, které mění systém. To lze rovněž vyjádřit "
-"explicitně použitím této volby."
-
-#: standalone/draknfs:174
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> disallows the NFS server to "
-"violate the NFS protocol and to reply to requests before any changes made by "
-"these requests have been committed to stable storage (e.g. disc drive)."
-msgstr ""
-"<span foreground=\"royalblue3\">%s:</span> zakazuje NFS serveru porušovat "
-"NFS protokol a odpovídat na požadavky předtím, než byly změny pocházející z "
-"požadavku zapsány na stabilní disk (např. pevný disk)."
-
-#: standalone/draknfs:306
-#, c-format
-msgid "Please add an NFS share to be able to modify it."
-msgstr "Přidejte prosím sdílení NFS, pak je můžete upravit."
-
-#: standalone/draknfs:378
-#, c-format
-msgid "Advanced Options Help"
-msgstr "Nápověda k rozšířeným volbám"
-
-#: standalone/draknfs:389
-#, c-format
-msgid "NFS directory"
-msgstr "Adresář NFS"
-
-#: standalone/draknfs:391 standalone/draksambashare:592
-#: standalone/draksambashare:771
-#, c-format
-msgid "Directory:"
-msgstr "Adresář:"
-
-#: standalone/draknfs:394
-#, c-format
-msgid "Host access"
-msgstr "Přístup k počítači"
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Access:"
-msgstr "Přístup:"
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Hosts Access"
-msgstr "Přístup k počítačům"
-
-#: standalone/draknfs:399
-#, c-format
-msgid "User ID Mapping"
-msgstr "Mapování uživatelského ID"
-
-#: standalone/draknfs:401
-#, c-format
-msgid "User ID:"
-msgstr "ID uživatele:"
-
-#: standalone/draknfs:401
-#, c-format
-msgid "Help User ID"
-msgstr "Pomocné ID uživatele"
-
-#: standalone/draknfs:402
-#, c-format
-msgid "Anonymous user ID:"
-msgstr "ID anonymního uživatele:"
-
-#: standalone/draknfs:403
-#, c-format
-msgid "Anonymous Group ID:"
-msgstr "ID anonymní skupiny:"
-
-#: standalone/draknfs:444
-#, c-format
-msgid "Can't create this directory."
-msgstr "Tento adresář nelze vytvořit."
-
-#: standalone/draknfs:447
-#, c-format
-msgid "You must specify hosts access."
-msgstr "Musíte zadat přístup k počítačům."
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Share Directory"
-msgstr "Sdílet adresář"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Hosts Wildcard"
-msgstr "Divoká karta počítačů"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "General Options"
-msgstr "Obecné volby"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Custom Options"
-msgstr "Vlastní volby"
-
-#: standalone/draknfs:539 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Please enter a directory to share."
-msgstr "Zadejte prosím adresář ke sdílení."
-
-#: standalone/draknfs:546
-#, c-format
-msgid "Please use the modify button to set right access."
-msgstr "Použijte prosím tlačítka pro úpravu pro nastavení správného přístupu."
-
-#: standalone/draknfs:600
-#, c-format
-msgid "DrakNFS manage NFS shares"
-msgstr "DrakNFS spravuje sdílení NFS"
-
-#: standalone/draknfs:609
-#, c-format
-msgid "Failed to add NFS share."
-msgstr "Přidání sdílení NFS selhalo."
-
-#: standalone/draknfs:616
-#, c-format
-msgid "Failed to Modify NFS share."
-msgstr "Úprava sdílení NFS selhala."
-
-#: standalone/draknfs:623
-#, c-format
-msgid "Failed to remove an NFS share."
-msgstr "Odstranění sdílení NFS selhalo."
-
-#: standalone/drakperm:21
-#, c-format
-msgid "System settings"
-msgstr "Nastavení systému"
-
-#: standalone/drakperm:22
-#, c-format
-msgid "Custom settings"
-msgstr "Vlastní nastavení"
-
-#: standalone/drakperm:23
-#, c-format
-msgid "Custom & system settings"
-msgstr "Vlastní & systémová nastavení"
-
-#: standalone/drakperm:43
-#, c-format
-msgid "Editable"
-msgstr "Upravitelný"
-
-#: standalone/drakperm:48 standalone/drakperm:323
-#: standalone/draksambashare:101
-#, c-format
-msgid "Path"
-msgstr "Cesta"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "User"
-msgstr "Uživatel"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "Group"
-msgstr "Skupina"
-
-#: standalone/drakperm:48 standalone/drakperm:335
-#, c-format
-msgid "Permissions"
-msgstr "Oprávnění"
-
-#: standalone/drakperm:57
-#, c-format
-msgid "Add a new rule"
-msgstr "Přidat nové pravidlo"
-
-#: standalone/drakperm:64 standalone/drakperm:99 standalone/drakperm:124
-#, c-format
-msgid "Edit current rule"
-msgstr "Upravit současné pravidlo"
-
-#: standalone/drakperm:106
-#, c-format
-msgid ""
-"Here you can see files to use in order to fix permissions, owners, and "
-"groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
-msgstr ""
-"Zde můžete vidět soubory, které se používají k opravám oprávnění, vlastníků "
-"a skupin aplikací msec.\n"
-"Můžete také vytvářet svá vlastní pravidla, která přepíší pravidla výchozí."
-
-#: standalone/drakperm:109
-#, c-format
-msgid ""
-"The current security level is %s.\n"
-"Select permissions to see/edit"
-msgstr ""
-"Aktuální úroveň zabezpečení je %s.\n"
-"Vyberte si práva pro zobrazení/úpravu"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Up"
-msgstr "Nahoru"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Posunout vybrané pravidlo o úroveň výše"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Down"
-msgstr "Dolů"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Posunout vybrané pravidlo o úroveň níže"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a rule"
-msgstr "Přidat pravidlo"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Přidat nové pravidlo na konec"
-
-#: standalone/drakperm:123
-#, c-format
-msgid "Delete selected rule"
-msgstr "Smazat vybrané pravidlo"
-
-#: standalone/drakperm:242
-#, c-format
-msgid "browse"
-msgstr "procházet"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "user"
-msgstr "uživatel"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "group"
-msgstr "skupina"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "other"
-msgstr "ostatní"
-
-#: standalone/drakperm:252
-#, c-format
-msgid "Read"
-msgstr "Čtení"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:255
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Povolit \"%s\" číst soubor"
-
-#: standalone/drakperm:259
-#, c-format
-msgid "Write"
-msgstr "Zápis"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:262
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Povolit \"%s\" zapisovat do souboru"
-
-#: standalone/drakperm:266
-#, c-format
-msgid "Execute"
-msgstr "Provést"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:269
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Povolit \"%s\" spouštět soubory"
-
-#: standalone/drakperm:272
-#, c-format
-msgid "Sticky-bit"
-msgstr "Sticky-bit"
-
-#: standalone/drakperm:272
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Použito pro adresář:\n"
-" pouze vlastník adresáře nebo souboru v tomto adresáři jej může smazat"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Použít při spuštění ID vlastníka"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Use group id for execution"
-msgstr "Použít při spuštění ID skupiny"
-
-#: standalone/drakperm:292 standalone/drakxtv:89
-#, c-format
-msgid "User:"
-msgstr "Uživatel:"
-
-#: standalone/drakperm:294
-#, c-format
-msgid "Group:"
-msgstr "Skupina:"
-
-#: standalone/drakperm:298
-#, c-format
-msgid "Current user"
-msgstr "Aktuální uživatel"
-
-#: standalone/drakperm:299
-#, c-format
-msgid "When checked, owner and group will not be changed"
-msgstr "Pokud je zaškrtnuto, vlastník a skupina nebudou změněny"
-
-#: standalone/drakperm:309
-#, c-format
-msgid "Path selection"
-msgstr "Výběr cesty"
-
-#: standalone/drakperm:329
-#, c-format
-msgid "Property"
-msgstr "Vlastnost"
-
-#: standalone/drakperm:380
-#, c-format
-msgid ""
-"The first character of the path must be a slash (\"/\"):\n"
-"\"%s\""
-msgstr ""
-"První znak cesty musí být lomítko (\"/\"):\n"
-"\"%s\""
-
-#: standalone/drakperm:390
-#, c-format
-msgid "Both the username and the group must valid!"
-msgstr "Jméno uživatele i jeho skupina musí být platné!"
-
-#: standalone/drakperm:391
-#, c-format
-msgid "User: %s"
-msgstr "Uživatel: %s"
-
-#: standalone/drakperm:392
-#, c-format
-msgid "Group: %s"
-msgstr "Skupina: %s"
-
-#: standalone/drakroam:33
-#, c-format
-msgid ""
-"You do not have any wireless interface.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Nemáte žádné bezdrátové rozhraní.\n"
-"Spusťte prosím průvodce \"%s\" z Ovládacího centra Mandriva"
-
-#: standalone/drakroam:48
-#, c-format
-msgid "SSID"
-msgstr "SSID"
-
-#: standalone/drakroam:49
-#, c-format
-msgid "Signal strength"
-msgstr "Síla signálu"
-
-#: standalone/drakroam:51
-#, c-format
-msgid "Encryption"
-msgstr "Šifrování"
-
-#: standalone/drakroam:112
-#, c-format
-msgid "Please enter settings for wireless network \"%s\""
-msgstr "Zadejte prosím nastavení bezdrátové sítě \"%s\""
-
-#: standalone/drakroam:123
-#, c-format
-msgid "DNS server"
-msgstr "DNS server"
-
-#: standalone/drakroam:228
-#, c-format
-msgid "Connect"
-msgstr "Připojit"
-
-#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/drakroam:229 standalone/printerdrake:251
-#, c-format
-msgid "Refresh"
-msgstr "Obnovit"
-
-#: standalone/draksambashare:68
-#, c-format
-msgid "Share directory"
-msgstr "Sdílet adresář"
-
-#: standalone/draksambashare:69 standalone/draksambashare:102
-#, c-format
-msgid "Comment"
-msgstr "Komentář"
-
-#: standalone/draksambashare:70 standalone/draksambashare:103
-#, c-format
-msgid "Browseable"
-msgstr "Prohlížitelné"
-
-#: standalone/draksambashare:71
-#, c-format
-msgid "Public"
-msgstr "Veřejné"
-
-#: standalone/draksambashare:72 standalone/draksambashare:108
-#, c-format
-msgid "Writable"
-msgstr "Zapisovatelné"
-
-#: standalone/draksambashare:73 standalone/draksambashare:149
-#, c-format
-msgid "Create mask"
-msgstr "Maska při vytvoření"
-
-#: standalone/draksambashare:74 standalone/draksambashare:150
-#, c-format
-msgid "Directory mask"
-msgstr "Maska adresáře"
-
-#: standalone/draksambashare:75
-#, c-format
-msgid "Read list"
-msgstr "Seznam pro čtení"
-
-#: standalone/draksambashare:76 standalone/draksambashare:109
-#: standalone/draksambashare:606
-#, c-format
-msgid "Write list"
-msgstr "Seznam pro zápis"
-
-#: standalone/draksambashare:77 standalone/draksambashare:141
-#, c-format
-msgid "Admin users"
-msgstr "Uživatelé správci"
-
-#: standalone/draksambashare:78 standalone/draksambashare:142
-#, c-format
-msgid "Valid users"
-msgstr "Platní uživatelé"
-
-#: standalone/draksambashare:79
-#, c-format
-msgid "Inherit Permissions"
-msgstr "Dědit oprávnění"
-
-#: standalone/draksambashare:80 standalone/draksambashare:143
-#, c-format
-msgid "Hide dot files"
-msgstr "Schovat soubory s tečkou"
-
-#: standalone/draksambashare:82 standalone/draksambashare:148
-#, c-format
-msgid "Preserve case"
-msgstr "Zachovat velikost písmen"
-
-#: standalone/draksambashare:83
-#, c-format
-msgid "Force create mode"
-msgstr "Vynutit režim vytvoření"
-
-#: standalone/draksambashare:84
-#, c-format
-msgid "Force group"
-msgstr "Vynutit skupinu"
-
-#: standalone/draksambashare:85 standalone/draksambashare:147
-#, c-format
-msgid "Default case"
-msgstr "Výchozí velikost písmen"
-
-#: standalone/draksambashare:100
-#, c-format
-msgid "Printer name"
-msgstr "Název tiskárny"
-
-#: standalone/draksambashare:104 standalone/draksambashare:598
-#, c-format
-msgid "Printable"
-msgstr "Lze tisknout"
-
-#: standalone/draksambashare:105
-#, c-format
-msgid "Print Command"
-msgstr "Příkaz pro tisk"
-
-#: standalone/draksambashare:106
-#, c-format
-msgid "LPQ command"
-msgstr "Příkaz LPQ"
-
-#: standalone/draksambashare:107
-#, c-format
-msgid "Guest ok"
-msgstr "Host OK"
-
-#: standalone/draksambashare:110 standalone/draksambashare:151
-#: standalone/draksambashare:607
-#, c-format
-msgid "Inherit permissions"
-msgstr "Dědit oprávnění"
-
-#: standalone/draksambashare:112
-#, c-format
-msgid "Create mode"
-msgstr "Režim vytvoření"
-
-#: standalone/draksambashare:113
-#, c-format
-msgid "Use client driver"
-msgstr "Použít ovladač na klientu"
-
-#: standalone/draksambashare:139
-#, c-format
-msgid "Read List"
-msgstr "Seznam pro čtení"
-
-#: standalone/draksambashare:140
-#, c-format
-msgid "Write List"
-msgstr "Seznam pro zápis"
-
-#: standalone/draksambashare:145
-#, c-format
-msgid "Force Group"
-msgstr "Vynutit skupinu"
-
-#: standalone/draksambashare:146
-#, c-format
-msgid "Force create group"
-msgstr "Vynutit skupinu při vytvoření"
-
-#: standalone/draksambashare:166
-#, c-format
-msgid "About Draksambashare"
-msgstr "O aplikaci Draksambashare"
-
-#: standalone/draksambashare:166
-#, c-format
-msgid ""
-"Mandriva Linux \n"
-"Release: %s\n"
-"Author: Antoine Ginies\n"
-"\n"
-"This is a simple tool to easily manage Samba configuration."
-msgstr ""
-"Mandriva Linux \n"
-"Vydání: %s\n"
-"Autor: Antoine Ginies\n"
-"\n"
-"Toto je jednoduchý nástroj určený pro snadnou správu nastavení protokolu "
-"Samba."
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Samba server"
-msgstr "Samba server"
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Restarting/Reloading Samba server..."
-msgstr "Restartuji/Znovu načítám Samba server..."
-
-#: standalone/draksambashare:187
-#, c-format
-msgid "Error Restarting/Reloading Samba server"
-msgstr "Chyba při restartu/znovunačtení Samba serveru"
-
-#: standalone/draksambashare:372
-#, c-format
-msgid "Add a Samba share"
-msgstr "Přidat sdílení Samba"
-
-#: standalone/draksambashare:375
-#, c-format
-msgid "Goal of this wizard is to easily create a new Samba share."
-msgstr "Cílem tohoto průvodce je snadné vytvoření nového sdílení Samba."
-
-#: standalone/draksambashare:377
-#, c-format
-msgid "Name of the share:"
-msgstr "Název sdílení:"
-
-#: standalone/draksambashare:378 standalone/draksambashare:591
-#: standalone/draksambashare:772
-#, c-format
-msgid "Comment:"
-msgstr "Komentář:"
-
-#: standalone/draksambashare:379
-#, c-format
-msgid "Path:"
-msgstr "Cesta:"
-
-#: standalone/draksambashare:384
-#, c-format
-msgid ""
-"Share with the same name already exist or share name empty, please choose "
-"another name."
-msgstr ""
-"Sdílení se stejným názvem již existuje nebo je název sdílení prázdný, "
-"vyberte prosím jiný název."
-
-#: standalone/draksambashare:388 standalone/draksambashare:394
-#, c-format
-msgid "Can't create the directory, please enter a correct path."
-msgstr "Nelze vytvořit adresář, zadejte prosím správnou cestu."
-
-#: standalone/draksambashare:391 standalone/draksambashare:627
-#: standalone/draksambashare:794
-#, c-format
-msgid "Please enter a Comment for this share."
-msgstr "Zadejte prosím komentář k tomuto sdílení."
-
-#: standalone/draksambashare:422
-#, c-format
-msgid ""
-"The wizard successfully added the Samba share. Now just double click on it "
-"in treeview to modify it"
-msgstr ""
-"Průvodce úspěšně přidal sdílení Samba. Můžete nyní dvojitě klepnout na jeho "
-"položku ve stromu a upravit jej"
-
-#: standalone/draksambashare:437
-#, c-format
-msgid "pdf-gen - a PDF generator"
-msgstr "pdf-gen - generátor PDF"
-
-#: standalone/draksambashare:438
-#, c-format
-msgid "printers - all printers available"
-msgstr "printers - všechny dostupné tiskárny"
-
-#: standalone/draksambashare:442
-#, c-format
-msgid "Add Special Printer share"
-msgstr "Přidat sdílení speciální tiskárny"
-
-#: standalone/draksambashare:445
-#, c-format
-msgid ""
-"Goal of this wizard is to easily create a new special printer Samba share."
-msgstr ""
-"Cílem tohoto průvodce je snadné vytvoření nového sdílení Samba se speciální "
-"tiskárnou."
-
-#: standalone/draksambashare:453
-#, c-format
-msgid "A PDF generator already exists."
-msgstr "Generátor PDF již existuje."
-
-#: standalone/draksambashare:477
-#, c-format
-msgid "Printers and print$ already exist."
-msgstr "Printers a print$ již existuje."
-
-#: standalone/draksambashare:528
-#, c-format
-msgid "The wizard successfully added the printer Samba share"
-msgstr "Průvodce úspěšně přidal sdílení Samba"
-
-#: standalone/draksambashare:551
-#, c-format
-msgid "Please add or select a Samba printer share to be able to modify it."
-msgstr ""
-"Prosím přidejte nebo vyberte sdílení tiskárny Samba, chcete-li jej upravit."
-
-#: standalone/draksambashare:587
-#, c-format
-msgid "Printer share"
-msgstr "Sdílení tiskárny"
-
-#: standalone/draksambashare:590
-#, c-format
-msgid "Printer name:"
-msgstr "Název tiskárny:"
-
-#: standalone/draksambashare:596 standalone/draksambashare:777
-#, c-format
-msgid "Writable:"
-msgstr "Zapisovatelné:"
-
-#: standalone/draksambashare:597 standalone/draksambashare:778
-#, c-format
-msgid "Browseable:"
-msgstr "Prohlížitelné:"
-
-#: standalone/draksambashare:602
-#, c-format
-msgid "Advanced options"
-msgstr "Pokročilé volby"
-
-#: standalone/draksambashare:604
-#, c-format
-msgid "Printer access"
-msgstr "Přístup k tiskárně"
-
-#: standalone/draksambashare:608
-#, c-format
-msgid "Guest ok:"
-msgstr "Host OK:"
-
-#: standalone/draksambashare:609
-#, c-format
-msgid "Create mode:"
-msgstr "Režim vytváření:"
-
-#: standalone/draksambashare:613
-#, c-format
-msgid "Printer command"
-msgstr "Příkaz pro tiskárnu"
-
-#: standalone/draksambashare:615
-#, c-format
-msgid "Print command:"
-msgstr "Příkaz pro tisk:"
-
-#: standalone/draksambashare:616
-#, c-format
-msgid "LPQ command:"
-msgstr "Příkaz LPQ:"
-
-#: standalone/draksambashare:617
-#, c-format
-msgid "Printing:"
-msgstr "Tisk:"
-
-#: standalone/draksambashare:633
-#, c-format
-msgid "create mode should be numeric. ie: 0755."
-msgstr "režim vytváření by mělo být číslo, např. 0755."
-
-#: standalone/draksambashare:695
-#, c-format
-msgid "DrakSamba entry"
-msgstr "Položka DrakSamba"
-
-#: standalone/draksambashare:700
-#, c-format
-msgid "Please add or select a Samba share to be able to modify it."
-msgstr "Prosím přidejte nebo vyberte sdílení Samba, chcete-li jej upravit."
-
-#: standalone/draksambashare:723
-#, c-format
-msgid "Samba user access"
-msgstr "Přístup uživatelů Samba"
-
-#: standalone/draksambashare:731
-#, c-format
-msgid "Mask options"
-msgstr "Volby masky"
-
-#: standalone/draksambashare:745
-#, c-format
-msgid "Display options"
-msgstr "Volby zobrazení"
-
-#: standalone/draksambashare:767
-#, c-format
-msgid "Samba share directory"
-msgstr "Adresář sdílení Samba"
-
-#: standalone/draksambashare:770
-#, c-format
-msgid "Share name:"
-msgstr "Název sdílení:"
-
-#: standalone/draksambashare:776
-#, c-format
-msgid "Public:"
-msgstr "Veřejné:"
-
-#: standalone/draksambashare:800
-#, c-format
-msgid ""
-"Create mask, create mode and directory mask should be numeric. ie: 0755."
-msgstr ""
-"Maska pro vytvoření, režim vytvoření a maska adresáře by měla být "
-"celočíselná, např. 0755."
-
-#: standalone/draksambashare:807
-#, c-format
-msgid "Please create this Samba user: %s"
-msgstr "Vytvořte prosím tohoto uživatele Samba: %s"
-
-#: standalone/draksambashare:930
-#, c-format
-msgid "User information"
-msgstr "Informace o uživateli"
-
-#: standalone/draksambashare:932
-#, c-format
-msgid "User name:"
-msgstr "Jméno uživatele:"
-
-#: standalone/draksambashare:933
-#, c-format
-msgid "Password:"
-msgstr "Heslo:"
-
-#: standalone/draksambashare:1133
-#, c-format
-msgid "Failed to add Samba share."
-msgstr "Přidání sdílení Samba selhalo."
-
-#: standalone/draksambashare:1142
-#, c-format
-msgid "Failed to Modify Samba share."
-msgstr "Úprava sdílení Samba selhala."
-
-#: standalone/draksambashare:1151
-#, c-format
-msgid "Failed to remove a Samba share."
-msgstr "Odstranění sdílení Samba selhalo."
-
-#: standalone/draksambashare:1158
-#, c-format
-msgid "File share"
-msgstr "Sdílení souboru"
-
-#: standalone/draksambashare:1166
-#, c-format
-msgid "Add printers"
-msgstr "Přidat tiskárny"
-
-#: standalone/draksambashare:1172
-#, c-format
-msgid "Failed to add printers."
-msgstr "Přidání tiskáren selhalo."
-
-#: standalone/draksambashare:1181
-#, c-format
-msgid "Failed to Modify."
-msgstr "Úprava selhala."
-
-#: standalone/draksambashare:1190
-#, c-format
-msgid "Failed to remove."
-msgstr "Odstranění selhalo."
-
-#: standalone/draksambashare:1197
-#, c-format
-msgid "Printers"
-msgstr "Tiskárny"
-
-#: standalone/draksambashare:1205
-#, c-format
-msgid "Change password"
-msgstr "Změnit heslo"
-
-#: standalone/draksambashare:1210
-#, c-format
-msgid "Failed to change user password."
-msgstr "Změna hesla uživatele selhala."
-
-#: standalone/draksambashare:1218
-#, c-format
-msgid "Failed to add user."
-msgstr "Přidání uživatele selhalo."
-
-#: standalone/draksambashare:1221
-#, c-format
-msgid "Delete user"
-msgstr "Odstranit uživatele"
-
-#: standalone/draksambashare:1230
-#, c-format
-msgid "Failed to delete user."
-msgstr "Odstranění uživatele selhalo."
-
-#: standalone/draksambashare:1242
-#, c-format
-msgid "Samba Users"
-msgstr "Uživatelé Samba"
-
-#: standalone/draksambashare:1251
-#, c-format
-msgid "DrakSamba manage Samba shares"
-msgstr "DrakSamba spravuje sdílení Samba"
-
-#: standalone/draksec:49
-#, c-format
-msgid "ALL"
-msgstr "OBA"
-
-#: standalone/draksec:50
-#, c-format
-msgid "LOCAL"
-msgstr "LOKÁLNÍ"
-
-#: standalone/draksec:51
-#, c-format
-msgid "NONE"
-msgstr "ŽÁDNÉ"
-
-#: standalone/draksec:53 standalone/net_applet:480
-#, c-format
-msgid "Ignore"
-msgstr "Ignorovat"
-
-#. -PO: Do not alter the <span ..> and </span> tags.
-#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
-#: standalone/draksec:103
-#, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Administrator</span>' is the one who "
-"will receive security alerts if the\n"
-"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a "
-"username or an email.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Level</span>' menu allows you to select "
-"one of the six preconfigured security levels\n"
-"provided with msec. These levels range from '<span weight=\"bold\">poor</"
-"span>' security and ease of use, to\n"
-"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive "
-"server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
-"very\n"
-"easy to use security level. It should only be used for machines not "
-"connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
-"security\n"
-"recommended for a computer that will be used to connect to the Internet as "
-"a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
-"enough\n"
-"to use the system as a server which can accept connections from many "
-"clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower "
-"level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-"Zde můžete nastavit úroveň zabezpečení a administrátora vašeho systému.\n"
-"\n"
-"\n"
-"'<span weight=\"bold\">Administrátor bezpečnosti</span>' je ten, který\n"
-"dostává bezpečnostní upozornění pokud je zvolena volba\n"
-" '<span weight=\"bold\">Bezpečnostní varování</span>'. Může to být jméno\n"
-"uživatele nebo email adresa.\n"
-"\n"
-"\n"
-"Nabídka s '<span weight=\"bold\">úrovněmi zabezpečení</span>' poskytovaných\n"
-"aplikací msec vám dovoluje si vybrat jednu z šesti přednastavených úrovní.\n"
-"Rozsah úrovní je od '<span weight=\"bold\">minimální</span>' zabezpečení\n"
-"až po '<span weight=\"bold\">paranoidní</span>' zabezpečení, vhodné pro \n"
-"velmi citlivé serverové aplikace:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Slabá</span>: Toto je absolutně "
-"nezabezpečená\n"
-"úroveň. Měla by být použita pouze na těch počítačích, které nejsou "
-"připojeny\n"
-"síti a nemá k nim kdokoliv přístup.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standardní</span>: Standardní doporučená\n"
-"úrovně pro počítače, které jsou připojeny k Internetu jako klient.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Vyšší</span>: Zde jsou už nějaké restrikce\n"
-"a každou noc jsou prováděny automatické kontroly.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Vysoká</span>: Tato úroveň je již vhodná "
-"při\n"
-"použití počítače jako serveru s tím, že s k tomuto počítači připojují další\n"
-"klienti. Pokud je počítač pouze klientem, je vhodnější nižší úroveň.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoidní</span>: Je stejná jako předchozí\n"
-"úroveň s tím, že systém je zcela uzavřen a bezpečnost nastavena na maximum"
-
-#: standalone/draksec:156 standalone/harddrake2:207
-#, c-format
-msgid ""
-"Description of the fields:\n"
-"\n"
-msgstr ""
-"Popis polí:\n"
-"\n"
-
-#: standalone/draksec:170
-#, c-format
-msgid "(default value: %s)"
-msgstr "(výchozí hodnota: %s)"
-
-#: standalone/draksec:212
-#, c-format
-msgid "Security Level:"
-msgstr "Úroveň zabezpečení:"
-
-#: standalone/draksec:219
-#, c-format
-msgid "Security Administrator:"
-msgstr "Správce zabezpečení:"
-
-#: standalone/draksec:221
-#, c-format
-msgid "Basic options"
-msgstr "Základní volby"
-
-#: standalone/draksec:235
-#, c-format
-msgid "Network Options"
-msgstr "Volby sítě"
-
-#: standalone/draksec:235
-#, c-format
-msgid "System Options"
-msgstr "Systémové volby"
-
-#: standalone/draksec:270
-#, c-format
-msgid "Periodic Checks"
-msgstr "Pravidelné kontroly"
-
-#: standalone/draksec:300
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Čekejte prosím, nastavuji úroveň zabezpečení..."
-
-#: standalone/draksec:306
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Čekejte prosím, nastavuji volby zabezpečení..."
-
-#: standalone/draksound:47
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Nebyla nalezena žádná zvuková karta!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/draksound:50
-#, c-format
-msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"V počítači nebyla nalezena žádná zvuková karta karta. Zkontrolujte prosím,"
-"zda podporovaná karta je správně zapojena.\n"
-"\n"
-"\n"
-"Databázi hardware lze nalézt na:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/draksound:57
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or "
-"the sndconfig program. Just type \"alsaconf\" or \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Pozn: Pokud máte PnP zvukovou kartu na ISA, použijte program sndconfig nebo "
-"alsaconf. Spustíte je příkazem \"sndconfig\" nebo \"alsaconf\" v konzoli."
-
-#: standalone/draksplash:30
-#, c-format
-msgid "x coordinate of text box"
-msgstr "souřadnice x textového pole"
-
-#: standalone/draksplash:31
-#, c-format
-msgid "y coordinate of text box"
-msgstr "souřadnice y textového pole"
-
-#: standalone/draksplash:32
-#, c-format
-msgid "text box width"
-msgstr "šířka textového pole"
-
-#: standalone/draksplash:33
-#, c-format
-msgid "text box height"
-msgstr "výška textového pole"
-
-#: standalone/draksplash:34
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"umístění x souřadnice pro\n"
-"levý horní roh lišty s průběhem"
-
-#: standalone/draksplash:35
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-"umístění y souřadnice pro\n"
-"levý horní roh lišty s průběhem"
-
-#: standalone/draksplash:36
-#, c-format
-msgid "the width of the progress bar"
-msgstr "šířka lišty s průběhem"
-
-#: standalone/draksplash:37
-#, c-format
-msgid "the height of the progress bar"
-msgstr "výška lišty s průběhem"
-
-#: standalone/draksplash:38
-#, c-format
-msgid "x coordinate of the text"
-msgstr "souřadnice x textu"
-
-#: standalone/draksplash:39
-#, c-format
-msgid "y coordinate of the text"
-msgstr "souřadnice y textu"
-
-#: standalone/draksplash:40
-#, c-format
-msgid "text box transparency"
-msgstr "průhlednost textového pole"
-
-#: standalone/draksplash:41
-#, c-format
-msgid "progress box transparency"
-msgstr "průhlednost lišty s průběhem"
-
-#: standalone/draksplash:42
-#, c-format
-msgid "text size"
-msgstr "velikost textu"
-
-#: standalone/draksplash:59
-#, c-format
-msgid "Choose progress bar color 1"
-msgstr "Vyberte barvu lišty s průběhem 1"
-
-#: standalone/draksplash:60
-#, c-format
-msgid "Choose progress bar color 2"
-msgstr "Vyberte barvu lišty s průběhem 2"
-
-#: standalone/draksplash:61
-#, c-format
-msgid "Choose progress bar background"
-msgstr "Vyberte barvu pozadí lišty s průběhem"
-
-#: standalone/draksplash:62
-#, c-format
-msgid "Gradient type"
-msgstr "Typ přechodu"
-
-#: standalone/draksplash:63
-#, c-format
-msgid "Choose text color"
-msgstr "Vyberte barvu textu"
-
-#: standalone/draksplash:65 standalone/draksplash:72
-#, c-format
-msgid "Choose picture"
-msgstr "Vyberte obrázek"
-
-#: standalone/draksplash:66
-#, c-format
-msgid "Silent bootsplash"
-msgstr "Tichý zaváděcí obrázek"
-
-#: standalone/draksplash:69
-#, c-format
-msgid "Choose text zone color"
-msgstr "Vyberte barvu zóny s textem"
-
-#: standalone/draksplash:70
-#, c-format
-msgid "Text color"
-msgstr "Barva textu"
-
-#: standalone/draksplash:71
-#, c-format
-msgid "Background color"
-msgstr "Barva pozadí"
-
-#: standalone/draksplash:73
-#, c-format
-msgid "Verbose bootsplash"
-msgstr "Informativní zaváděcí obrázek"
-
-#: standalone/draksplash:75
-#, c-format
-msgid "Display logo on Console"
-msgstr "Zobrazit logo na konzoli"
-
-#: standalone/draksplash:78
-#, c-format
-msgid "Console bootsplash"
-msgstr "Obrázek při zavádění na konzoli"
-
-#: standalone/draksplash:84
-#, c-format
-msgid "Theme name"
-msgstr "Název tématu"
-
-#: standalone/draksplash:87
-#, c-format
-msgid "final resolution"
-msgstr "konečné rozlišení"
-
-#: standalone/draksplash:92
-#, c-format
-msgid "Save theme"
-msgstr "uložit motiv"
-
-#: standalone/draksplash:153
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "ukládám motiv pro Bootsplash ..."
-
-#: standalone/draksplash:162
-#, c-format
-msgid "Unable to load image file %s"
-msgstr "Nelze načíst soubor s obrázkem %s"
-
-#: standalone/draksplash:173
-#, c-format
-msgid "choose image"
-msgstr "vyberte obraz"
-
-#: standalone/draksplash:188
-#, c-format
-msgid "Color selection"
-msgstr "Výběr barvy"
-
-#: standalone/drakups:71
-#, c-format
-msgid "Connected through a serial port or an usb cable"
-msgstr "Připojení pomocí sériového portu nebo USB kabelu"
-
-#: standalone/drakups:78
-#, c-format
-msgid "Add an UPS device"
-msgstr "Přidat zařízení UPS"
-
-#: standalone/drakups:81
-#, c-format
-msgid ""
-"Welcome to the UPS configuration utility.\n"
-"\n"
-"Here, you'll add a new UPS to your system.\n"
-msgstr ""
-"Vítejte v nástroji pro nastavení UPS.\n"
-"\n"
-"Zde lze přidat novou UPS do vašeho systému.\n"
-
-#: standalone/drakups:88
-#, c-format
-msgid ""
-"We're going to add an UPS device.\n"
-"\n"
-"Do you want to autodetect UPS devices connected to this machine or to "
-"manually select them?"
-msgstr ""
-"Chystáte se přidat zařízení UPS.\n"
-"\n"
-"Dáváte přednost automatickému nalezení zařízení UPS, která jsou připojena k "
-"tomuto počítači?"
-
-#: standalone/drakups:91
-#, c-format
-msgid "Autodetection"
-msgstr "Autodetekce"
-
-#: standalone/drakups:99 standalone/harddrake2:375
-#, c-format
-msgid "Detection in progress"
-msgstr "Probíhá detekce"
-
-#: standalone/drakups:119
-#, c-format
-msgid "The wizard successfully added the following UPS devices:"
-msgstr "Průvodce úspěšně přidal následující zařízení UPS:"
-
-#: standalone/drakups:121
-#, c-format
-msgid "No new UPS devices was found"
-msgstr "Žádná nová zařízení UPS nebyla nalezena"
-
-#: standalone/drakups:126 standalone/drakups:138
-#, c-format
-msgid "UPS driver configuration"
-msgstr "Nastavení ovladače UPS"
-
-#: standalone/drakups:126
-#, c-format
-msgid "Please select your UPS model."
-msgstr "Vyberte prosím váš model UPS."
-
-#: standalone/drakups:127
-#, c-format
-msgid "Manufacturer / Model:"
-msgstr "Výrobce / Model:"
-
-#: standalone/drakups:138
-#, c-format
-msgid ""
-"We are configuring the \"%s\" UPS from \"%s\".\n"
-"Please fill in its name, its driver and its port."
-msgstr ""
-"Nastavuje se UPS \"%s\" od \"%s\".\n"
-"Vyplňte prosím název, ovladač a příslušný port."
-
-#: standalone/drakups:143
-#, c-format
-msgid "Name:"
-msgstr "Název:"
-
-#: standalone/drakups:143
-#, c-format
-msgid "The name of your ups"
-msgstr "Název vaší UPS"
-
-#: standalone/drakups:144
-#, c-format
-msgid "The driver that manages your ups"
-msgstr "Ovladač, který řídí vaši UPS"
-
-#: standalone/drakups:145
-#, c-format
-msgid "Port:"
-msgstr "Port:"
-
-#: standalone/drakups:147
-#, c-format
-msgid "The port on which is connected your ups"
-msgstr "Port, na který je vaše zařízení UPS připojeno"
-
-#: standalone/drakups:157
-#, c-format
-msgid "The wizard successfully configured the new \"%s\" UPS device."
-msgstr "Průvodce úspěšně nastavil nové zařízení UPS \"%s\"."
-
-#: standalone/drakups:248
-#, c-format
-msgid "UPS devices"
-msgstr "Zařízení UPS"
-
-#: standalone/drakups:249 standalone/drakups:268 standalone/drakups:284
-#: standalone/harddrake2:85 standalone/harddrake2:111
-#: standalone/harddrake2:118
-#, c-format
-msgid "Name"
-msgstr "Název"
-
-#: standalone/drakups:267
-#, c-format
-msgid "UPS users"
-msgstr "Uživatelé UPS"
-
-#: standalone/drakups:283
-#, c-format
-msgid "Access Control Lists"
-msgstr "Kontrola přístupu"
-
-#: standalone/drakups:284
-#, c-format
-msgid "IP mask"
-msgstr "Maska IP"
-
-#: standalone/drakups:296
-#, c-format
-msgid "Rules"
-msgstr "Pravidla"
-
-#: standalone/drakups:297
-#, c-format
-msgid "Action"
-msgstr "Akce"
-
-#: standalone/drakups:297 standalone/drakvpn:1132 standalone/harddrake2:82
-#, c-format
-msgid "Level"
-msgstr "Úroveň"
-
-#: standalone/drakups:297
-#, c-format
-msgid "ACL name"
-msgstr "Název ACL"
-
-#: standalone/drakups:327 standalone/drakups:331 standalone/drakups:340
-#, c-format
-msgid "DrakUPS"
-msgstr "DrakUPS"
-
-#: standalone/drakups:337
-#, c-format
-msgid "Welcome to the UPS configuration tools"
-msgstr "Vítejte v nástroji pro nastavení UPS"
-
-#: standalone/drakvpn:73
-#, c-format
-msgid "DrakVPN"
-msgstr "DrakVPN"
-
-#: standalone/drakvpn:95
-#, c-format
-msgid "The VPN connection is enabled."
-msgstr "VPN spojení je zapnuto."
-
-#: standalone/drakvpn:96
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Nastavení VPN spojení bylo již provedeno.\n"
-"\n"
-"Nyní je povoleno.\n"
-"\n"
-"Co chcete dále dělat?"
-
-#: standalone/drakvpn:101
-#, c-format
-msgid "disable"
-msgstr "vypnout"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127
-#, c-format
-msgid "reconfigure"
-msgstr "překonfigurovat"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127 standalone/drakvpn:362
-#: standalone/drakvpn:721
-#, c-format
-msgid "dismiss"
-msgstr "odmítnout"
-
-#: standalone/drakvpn:105
-#, c-format
-msgid "Disabling VPN..."
-msgstr "Deaktivuji VPN..."
-
-#: standalone/drakvpn:114
-#, c-format
-msgid "The VPN connection is now disabled."
-msgstr "VPN spojení je nyní vypnuto."
-
-#: standalone/drakvpn:121
-#, c-format
-msgid "VPN connection currently disabled"
-msgstr "VPN spojení je vypnuto"
-
-#: standalone/drakvpn:122
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Nastavení VPN spojení bylo již provedeno.\n"
-"\n"
-"Nyní je vypnuto.\n"
-"\n"
-"Co chcete dále dělat?"
-
-#: standalone/drakvpn:127
-#, c-format
-msgid "enable"
-msgstr "povolit"
-
-#: standalone/drakvpn:135
-#, c-format
-msgid "Enabling VPN..."
-msgstr "Aktivuji VPN..."
-
-#: standalone/drakvpn:141
-#, c-format
-msgid "The VPN connection is now enabled."
-msgstr "VPN spojení je nyní zapnuto."
-
-#: standalone/drakvpn:155 standalone/drakvpn:183
-#, c-format
-msgid "Simple VPN setup."
-msgstr "Jednoduché nastavení VPN."
-
-#: standalone/drakvpn:156
-#, c-format
-msgid ""
-"You are about to configure your computer to use a VPN connection.\n"
-"\n"
-"With this feature, computers on your local private network and computers\n"
-"on some other remote private networks, can share resources, through\n"
-"their respective firewalls, over the Internet, in a secure manner. \n"
-"\n"
-"The communication over the Internet is encrypted. The local and remote\n"
-"computers look as if they were on the same network.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using\n"
-"drakconnect before going any further."
-msgstr ""
-"Chystáte se nastavit váš počítač, aby používal VPN připojení.\n"
-"\n"
-"Pomocí této vlastnosti mohou počítače na vaší lokální neveřejné síti\n"
-"a počítače na jiných, vzdálených neveřejných sítích sdílet vzájemně\n"
-"své zdroje skrze své firewally, přes síť Internet a to bezpečně.\n"
-"\n"
-"Komunikace jdoucí po síti Internet je šifrována. Místní a vzdálené počítače\n"
-"vypadají, jako by byly na stejné síti.\n"
-"\n"
-"Než budete pokračovat, ujistěte se, že jste nastavili váš přístup k síti\n"
-"a Internetu pomocí nástroje drakconnect."
-
-#: standalone/drakvpn:184
-#, c-format
-msgid ""
-"VPN connection.\n"
-"\n"
-"This program is based on the following projects:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - the docs and man pages coming with the %s package\n"
-"\n"
-"Please read AT LEAST the ipsec-howto docs\n"
-"before going any further."
-msgstr ""
-"VPN spojení.\n"
-"\n"
-"Tento program je založen na následujících projektech:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - dokumentace a manuálové stránky instalované s balíčkem %s\n"
-"\n"
-"Před tím, než budete pokračovat, si prosím přečtěte ASPOŇ\n"
-"dokumentaci ipsec-howto."
-
-#: standalone/drakvpn:196
-#, c-format
-msgid "Kernel module."
-msgstr "Modul jádra."
-
-#: standalone/drakvpn:197
-#, c-format
-msgid ""
-"The kernel needs to have ipsec support.\n"
-"\n"
-"You're running a %s kernel version.\n"
-"\n"
-"This kernel has '%s' support."
-msgstr ""
-"Jádro potřebujete mít podporu pro ipsec.\n"
-"\n"
-"Nyní běží jádro verze %s\n"
-"\n"
-"Toto jádro má '%s' podporu."
-
-#: standalone/drakvpn:264
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problém s instalací balíčku %s"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "Security Policies"
-msgstr "Bezpečnostní politika"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "IKE daemon racoon"
-msgstr "IKE démon racoon"
-
-#: standalone/drakvpn:281 standalone/drakvpn:292
-#, c-format
-msgid "Configuration file"
-msgstr "Konfigurační soubor"
-
-#: standalone/drakvpn:282
-#, c-format
-msgid ""
-"Configuration step!\n"
-"\n"
-"You need to define the Security Policies and then to \n"
-"configure the automatic key exchange (IKE) daemon. \n"
-"The KAME IKE daemon we're using is called 'racoon'.\n"
-"\n"
-"What would you like to configure?\n"
-msgstr ""
-"Krok nastavení!\n"
-"\n"
-"Je třeba definovat bezpečnostní politiku a poté\n"
-"nastavit démona pro automatickou výměnu klíčů (IKE).\n"
-"Démon KAME IKE, kterého používáme, se nazývá \"racoon\".\n"
-"\n"
-"Co chcete nastavit?\n"
-
-#: standalone/drakvpn:293
-#, c-format
-msgid ""
-"Next, we will configure the %s file.\n"
-"\n"
-"\n"
-"Simply click on Next.\n"
-msgstr ""
-"Dále nastavíme soubor %s.\n"
-"\n"
-"\n"
-"Stiskněte tlačítko Další.\n"
-
-#: standalone/drakvpn:311 standalone/drakvpn:671
-#, c-format
-msgid "%s entries"
-msgstr "%s položek"
-
-#: standalone/drakvpn:312
-#, c-format
-msgid ""
-"The %s file contents\n"
-"is divided into sections.\n"
-"\n"
-"You can now:\n"
-"\n"
-" - display, add, edit, or remove sections, then\n"
-" - commit the changes\n"
-"\n"
-"What would you like to do?\n"
-msgstr ""
-"Obsah souboru %s\n"
-"je rozdělen do sekcí.\n"
-"\n"
-"Nyní můžete:\n"
-"\n"
-" - zobrazit, přidat, upravit nebo odebrat sekce\n"
-" - a potom povrdit provedené změny\n"
-"\n"
-"Co chcete nyní dělat?\n"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display"
-msgstr "Zobrazit"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid "Commit"
-msgstr "Potvrdit"
-
-#: standalone/drakvpn:333 standalone/drakvpn:337 standalone/drakvpn:695
-#: standalone/drakvpn:699
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display configuration"
-msgstr "Zobrazit nastavení"
-
-#: standalone/drakvpn:338
-#, c-format
-msgid ""
-"The %s file does not exist.\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose 'add'.\n"
-msgstr ""
-"Soubor %s neexistuje.\n"
-"\n"
-"Jedná se tedy o novou konfiguraci.\n"
-"\n"
-"Musíte se tedy vrátit a vybrat 'Přidat'.\n"
-
-#: standalone/drakvpn:354
-#, c-format
-msgid "ipsec.conf entries"
-msgstr "položky souboru ipsec.conf"
-
-#: standalone/drakvpn:355
-#, c-format
-msgid ""
-"The %s file contains different sections.\n"
-"\n"
-"Here is its skeleton:\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"You can now add one of these sections.\n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-"Soubor %s obsahuje několik oddílů.\n"
-"\n"
-"Zde je jeho kostra:\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"Nyní můžete přidat jeden z těchto oddílů.\n"
-"\n"
-"Vyberte oddíl, který chcete přidat.\n"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "config setup"
-msgstr "config setup"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "conn %default"
-msgstr "conn %default"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "normal conn"
-msgstr "normal conn"
-
-#: standalone/drakvpn:368 standalone/drakvpn:409 standalone/drakvpn:496
-#, c-format
-msgid "Exists!"
-msgstr "Existuje!"
-
-#: standalone/drakvpn:369 standalone/drakvpn:410
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change its name.\n"
-msgstr ""
-"Sekce se tímto názvem již existuje.\n"
-"Název sekce musí být unikátní.\n"
-"\n"
-"Musíte se vrátit zpět a přidat další sekci\n"
-"nebo změnit její název.\n"
-
-#: standalone/drakvpn:386
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow this config\n"
-"setup section.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Tato sekce musí být uvedena v konfiguračním\n"
-"souboru %s nejdříve.\n"
-"\n"
-"Ujistěte se, že další sekce jsou vedeny pod touto sekcí.\n"
-"\n"
-"Vyberte pokračovat nebo zpět pokud jste hotovi.\n"
-
-#: standalone/drakvpn:391
-#, c-format
-msgid "interfaces"
-msgstr "interfaces"
-
-#: standalone/drakvpn:392
-#, c-format
-msgid "klipsdebug"
-msgstr "klipsdebug"
-
-#: standalone/drakvpn:393
-#, c-format
-msgid "plutodebug"
-msgstr "plutodebug"
-
-#: standalone/drakvpn:394
-#, c-format
-msgid "plutoload"
-msgstr "plutoload"
-
-#: standalone/drakvpn:395
-#, c-format
-msgid "plutostart"
-msgstr "plutostart"
-
-#: standalone/drakvpn:396
-#, c-format
-msgid "uniqueids"
-msgstr "uniqueids"
-
-#: standalone/drakvpn:430
-#, c-format
-msgid ""
-"This is the first section after the config\n"
-"setup one.\n"
-"\n"
-"Here you define the default settings. \n"
-"All the other sections will follow this one.\n"
-"The left settings are optional. If do not define\n"
-"them here, globally, you can define them in each\n"
-"section.\n"
-msgstr ""
-"Toto je první sekce konfiguračního souboru.\n"
-"\n"
-"Zde se nastavují výchozí hodnoty.\n"
-"Všechny další sekce jsou uvedeny až za ní.\n"
-"Nastavení na levé straně je volitelné. Pokud jej\n"
-"nenastavíte zde jako globální, můžete jej potom\n"
-"nastavit pro každou sekci.\n"
-
-#: standalone/drakvpn:437
-#, c-format
-msgid "PFS"
-msgstr "PFS"
-
-#: standalone/drakvpn:438
-#, c-format
-msgid "keyingtries"
-msgstr "keyingtries"
-
-#: standalone/drakvpn:439
-#, c-format
-msgid "compress"
-msgstr "compress"
-
-#: standalone/drakvpn:440
-#, c-format
-msgid "disablearrivalcheck"
-msgstr "disablearrivalcheck"
-
-#: standalone/drakvpn:441 standalone/drakvpn:480
-#, c-format
-msgid "left"
-msgstr "left"
-
-#: standalone/drakvpn:442 standalone/drakvpn:481
-#, c-format
-msgid "leftcert"
-msgstr "leftcert"
-
-#: standalone/drakvpn:443 standalone/drakvpn:482
-#, c-format
-msgid "leftrsasigkey"
-msgstr "leftrsasigkey"
-
-#: standalone/drakvpn:444 standalone/drakvpn:483
-#, c-format
-msgid "leftsubnet"
-msgstr "leftsubnet"
-
-#: standalone/drakvpn:445 standalone/drakvpn:484
-#, c-format
-msgid "leftnexthop"
-msgstr "leftnexthop"
-
-#: standalone/drakvpn:474
-#, c-format
-msgid ""
-"Your %s file has several sections, or connections.\n"
-"\n"
-"You can now add a new section.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Konfigurační soubor %s má několik sekcí nebo připojení.\n"
-"\n"
-"Můžete nyní přidat novou sekci.\n"
-"Pokud jste hotovi, zvolte pokračovat.\n"
-
-#: standalone/drakvpn:477
-#, c-format
-msgid "section name"
-msgstr "název sekce"
-
-#: standalone/drakvpn:478
-#, c-format
-msgid "authby"
-msgstr "authby"
-
-#: standalone/drakvpn:479
-#, c-format
-msgid "auto"
-msgstr "auto"
-
-#: standalone/drakvpn:485
-#, c-format
-msgid "right"
-msgstr "right"
-
-#: standalone/drakvpn:486
-#, c-format
-msgid "rightcert"
-msgstr "rightcert"
-
-#: standalone/drakvpn:487
-#, c-format
-msgid "rightrsasigkey"
-msgstr "rightrsasigkey"
-
-#: standalone/drakvpn:488
-#, c-format
-msgid "rightsubnet"
-msgstr "rightsubnet"
-
-#: standalone/drakvpn:489
-#, c-format
-msgid "rightnexthop"
-msgstr "rightnexthop"
-
-#: standalone/drakvpn:497
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change the name of the section.\n"
-msgstr ""
-"Oddíl s tímto názvem již existuje.\n"
-"Názvy oddílů musí být unikátní.\n"
-"\n"
-"Musíte se vrátit a přidat jiný oddíl\n"
-"nebo změnit název oddílu.\n"
-
-#: standalone/drakvpn:529
-#, c-format
-msgid ""
-"Add a Security Policy.\n"
-"\n"
-"You can now add a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Přidat bezpečnostní politiku.\n"
-"\n"
-"Nyní můžete přidat bezpečnostní politiku (Security Policy).\n"
-"\n"
-"Po jejím výběru bude následovat zápis dat.\n"
-
-#: standalone/drakvpn:562 standalone/drakvpn:812
-#, c-format
-msgid "Edit section"
-msgstr "Upravit sekci"
-
-#: standalone/drakvpn:563
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to edit \n"
-"and then click on next.\n"
-msgstr ""
-"Soubor %s má několik sekcí nebo spojení.\n"
-"\n"
-"Níže si ze seznamu vyberte tu, kterou chcete upravit a potom\n"
-"klepněte na Další.\n"
-
-#: standalone/drakvpn:566 standalone/drakvpn:646 standalone/drakvpn:817
-#: standalone/drakvpn:863
-#, c-format
-msgid "Section names"
-msgstr "Název sekcí"
-
-#: standalone/drakvpn:576
-#, c-format
-msgid "Can not edit!"
-msgstr "Nelze upravit!"
-
-#: standalone/drakvpn:577
-#, c-format
-msgid ""
-"You cannot edit this section.\n"
-"\n"
-"This section is mandatory for Freeswan 2.X.\n"
-"One has to specify version 2.0 on the top\n"
-"of the %s file, and eventually, disable or\n"
-"enable the opportunistic encryption.\n"
-msgstr ""
-"Nelze upravit tento oddíl.\n"
-"\n"
-"Tento oddíl je povinný pro FreeS/WAN 2.X.\n"
-"Na začátek souboru %s je nutné zadat\n"
-"verzi 2.0 a poté povolit či zakázat oportunistické\n"
-"šifrování.\n"
-
-#: standalone/drakvpn:586
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the config setup section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Soubor %s má několik sekcí.\n"
-"\n"
-"Nyní můžete upravit položky pro sekci setup.\n"
-"Pokud jste hotovi, vyberte pokračovat.\n"
-
-#: standalone/drakvpn:597
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the default section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Soubor %s má několik sekcí nebo spojení.\n"
-"\n"
-"Nyní můžete upravit položky pro výchozí sekci.\n"
-"Pokud jste hotovi, vyberte pokračovat.\n"
-
-#: standalone/drakvpn:610
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the normal section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Váš soubor %s má několik oddílů nebo připojení.\n"
-"\n"
-"Nyní můžete upravit běžné položky oddílu.\n"
-"\n"
-"Pokud jste hotovi, bude následovat zápis dat.\n"
-
-#: standalone/drakvpn:631
-#, c-format
-msgid ""
-"Edit a Security Policy.\n"
-"\n"
-"You can now edit a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Upravit bezpečnostní politiku.\n"
-"\n"
-"Nyní můžete upravit bezpečnostní politiku (Security Policy).\n"
-"\n"
-"Po jejím upravení bude následovat zápis dat.\n"
-
-#: standalone/drakvpn:642 standalone/drakvpn:859
-#, c-format
-msgid "Remove section"
-msgstr "Odebrat sekci"
-
-#: standalone/drakvpn:643 standalone/drakvpn:860
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to remove\n"
-"and then click on next.\n"
-msgstr ""
-"Váš soubor %s obsahuje několik oddílů nebo připojení.\n"
-"\n"
-"Níže můžete vybrat, co chcete odstranit, a pokračovat dále.\n"
-
-#: standalone/drakvpn:672
-#, c-format
-msgid ""
-"The racoon.conf file configuration.\n"
-"\n"
-"The contents of this file is divided into sections.\n"
-"You can now:\n"
-" - display \t\t (display the file contents)\n"
-" - add\t\t\t (add one section)\n"
-" - edit \t\t\t (modify parameters of an existing section)\n"
-" - remove \t\t (remove an existing section)\n"
-" - commit \t\t (writes the changes to the real file)"
-msgstr ""
-"Konfigurace souboru racoon.conf.\n"
-"\n"
-"Obsah tohoto souboru je rozdělen do několika sekcí.\n"
-"Obsah můžete nyní:\n"
-" - zobrazit \t\t (zobrazí obsah souboru)\n"
-" - přidat \t\t\t(přidá jednu sekci)\n"
-" - upravit \t\t (upraví parametry existující sekce)\n"
-" - odebrat \t\t (odebere existující sekci)\n"
-" - potvrdit \t\t (zapíše změny do skutečného souboru)"
-
-#: standalone/drakvpn:700
+#: timezone.pm:148 timezone.pm:149
#, c-format
-msgid ""
-"The %s file does not exist\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose configure.\n"
-msgstr ""
-"Soubor %s neexistuje.\n"
-"\n"
-"Jedná se tedy o novou konfiguraci.\n"
-"\n"
-"Musíte se tedy vrátit zpět a zvolit konfiguraci.\n"
-
-#: standalone/drakvpn:714
-#, c-format
-msgid "racoonf.conf entries"
-msgstr "položky souboru racoonf.conf"
-
-#: standalone/drakvpn:715
-#, c-format
-msgid ""
-"The 'add' sections step.\n"
-"\n"
-"Here below is the racoon.conf file skeleton:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-"Krok přidání oddílu.\n"
-"\n"
-"Níže je uvedena kostra souboru racoon.conf:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Vyberte oddíl, který chcete přidat.\n"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "path"
-msgstr "path"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "remote"
-msgstr "remote"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "sainfo"
-msgstr "sainfo"
-
-#: standalone/drakvpn:729
-#, c-format
-msgid ""
-"The 'add path' section step.\n"
-"\n"
-"The path sections have to be on top of your racoon.conf file.\n"
-"\n"
-"Put your mouse over the certificate entry to obtain online help."
-msgstr ""
-"Krok \"přidání cesty\" k oddílu.\n"
-"\n"
-"Oddíly s cestami se musí nacházet na začátku souboru racoon.conf.\n"
-"\n"
-"Po umístění myši nad položku s certifikátem se zobrazí nápověda."
-
-#: standalone/drakvpn:732
-#, c-format
-msgid "path type"
-msgstr "path type"
-
-#: standalone/drakvpn:736
-#, c-format
-msgid ""
-"path include path: specifies a path to include\n"
-"a file. See File Inclusion.\n"
-"\tExample: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: specifies a file containing\n"
-"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
-"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) will search this directory\n"
-"if a certificate or certificate request is received.\n"
-"\tExample: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"other configuration files can be included.\n"
-"\tExample: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File: Pre-shared key file defines a pair\n"
-"of the identifier and the shared secret key which are used at\n"
-"Pre-shared key authentication method in phase 1."
-msgstr ""
-"path include path : udává cestu, ze které se vloží soubor.\n"
-"Viz File Inclusion.\n"
-"\tPříklad: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file : udává soubor obsahující\n"
-"předsdílené klíče pro různá ID. Viz Pre-shared key File.\n"
-"\tPříklad: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) bude hledat v tomto adresáři,\n"
-"po obdržení certifikátu nebo požadavku na certifikát.\n"
-"\tPříklad: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"lze vložit další soubory s nastavením.\n"
-"\tPříklad: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File : Soubor s předsdílenými klíči definuje dvojici\n"
-"identifikátoru a sdíleného tajného klíče, který se používá při ověřovací "
-"metodě\n"
-"Předsdílených klíčů ve fázi 1."
-
-#: standalone/drakvpn:756 standalone/drakvpn:849
-#, c-format
-msgid "real file"
-msgstr "real file"
-
-#: standalone/drakvpn:779
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your racoon.conf file.\n"
-"\n"
-"You can now choose the remote settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Ujistěte se, že se oddíly s cestami nacházejí\n"
-"na začátku souboru racoon.conf.\n"
-"\n"
-"Můžete nyní vybrat vzdálená nastavení.\n"
-"Pokračujte dále nebo se vraťte zpět, pokud jste hotovi.\n"
-
-#: standalone/drakvpn:796
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your %s file.\n"
-"\n"
-"You can now choose the sainfo settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Ujistěte se, že se oddíly s cestami nacházejí\n"
-"na začátku souboru %s.\n"
-"\n"
-"Můžete nyní vybrat nastavení sainfo.\n"
-"Pokračujte dále nebo se vraťte zpět, pokud jste hotovi.\n"
-
-#: standalone/drakvpn:813
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here in the list below the one you want\n"
-"to edit and then click on next.\n"
-msgstr ""
-"Soubor %s má několik sekcí nebo spojení.\n"
-"\n"
-"Níže si ze seznamu vyberte tu, kterou chcete upravit a potom\n"
-"klepněte na Další.\n"
-
-#: standalone/drakvpn:824
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"\n"
-"You can now edit the remote section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Soubor %s má několik sekcí.\n"
-"\n"
-"\n"
-"Můžete nyní upravit položky pro remote sekci.\n"
-"\n"
-"Pokud jste hotovi, zvolte pokračovat.\n"
-
-#: standalone/drakvpn:833
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the sainfo section entries.\n"
-"\n"
-"Choose continue when you are done to write the data."
-msgstr ""
-"Váš soubor %s má několik sekcí.\n"
-"\n"
-"Nyní můžete upravit položky oddílu sainfo.\n"
-"\n"
-"Pokud jste hotovi, bude následovat zápis dat."
-
-#: standalone/drakvpn:841
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow these path\n"
-"sections.\n"
-"\n"
-"You can now edit the path entries.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Tato sekce musí být uvedena v konfiguračním\n"
-"souboru %s nejdříve.\n"
-"\n"
-"Ujistěte se, že další sekce jsou uvedeny pod sekcí path.\n"
-"\n"
-"Nyní můžete upravit položky pro path.\n"
-"\n"
-"Vyberte pokračovat nebo zpět pokud jste hotovi.\n"
-
-#: standalone/drakvpn:848
-#, c-format
-msgid "path_type"
-msgstr "path_type"
-
-#: standalone/drakvpn:889
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"\n"
-"You may now share resources through the Internet,\n"
-"in a secure way, using a VPN connection.\n"
-"\n"
-"You should make sure that that the tunnels shorewall\n"
-"section is configured."
-msgstr ""
-"Vše bylo nastaveno.\n"
-"\n"
-"Nyní můžete sdílet zdroje pomocí sítě Internet,\n"
-"bezpečně pomocí spojení VPN.\n"
-"\n"
-"Ujistěte se, že je nastaven oddíl s tunely\n"
-"shorewall."
-
-#: standalone/drakvpn:909
-#, c-format
-msgid "Sainfo source address"
-msgstr "Zdrojová adresa sainfo"
-
-#: standalone/drakvpn:910
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 is the source address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 is the source address"
-msgstr ""
-"sainfo (zdrojove_id cilove_id | anonymous) { prikazy }\n"
-"definuje parametry IKE fáze 2\n"
-"(ustanovení IPsec-SA).\n"
-"\n"
-"zdrojove_id a cilove_id se tvoří následovně:\n"
-"\n"
-"\taddress adresa [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Příklady: \n"
-"\n"
-"sainfo anonymous (přijímá připojení odkudkoli)\n"
-"\tponechte tuto položku prázdnou pokud chcete anonymní přístup\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 je zdrojová adresa\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 je zdrojová adresa"
-
-#: standalone/drakvpn:927
-#, c-format
-msgid "Sainfo source protocol"
-msgstr "Protokol zdrojů Sainfo"
-
-#: standalone/drakvpn:928
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe first 'any' allows any protocol for the source"
-msgstr ""
-"sainfo (zdrojove_id cilove_id | anonymous) { prikazy }\n"
-"definuje parametry IKE fáze 2\n"
-"(ustanovení IPsec-SA).\n"
-"\n"
-"zdrojove_id a cilove_id se tvoří následovně:\n"
-"\n"
-"\taddress adresa [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Příklady: \n"
-"\n"
-"sainfo anonymous (přijímá připojení odkudkoli)\n"
-"\tponechte tuto položku prázdnou pokud chcete anonymní přístup\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tprvní \"any\" umožňuje jakýkoli protokol pro zdroj"
-
-#: standalone/drakvpn:942
-#, c-format
-msgid "Sainfo destination address"
-msgstr "Cílová adresa Sainfo"
-
-#: standalone/drakvpn:943
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 is the destination address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 is the destination address"
-msgstr ""
-"sainfo (zdrojove_id cilove_id | anonymous) { prikazy }\n"
-"definuje parametry IKE fáze 2\n"
-"(ustanovení IPsec-SA).\n"
-"\n"
-"zdrojove_id a cilove_id se tvoří následovně:\n"
-"\n"
-"\taddress adresa [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Příklady: \n"
-"\n"
-"sainfo anonymous (přijímá připojení odkudkoli)\n"
-"\tponechte tuto položku prázdnou pokud chcete anonymní přístup\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 je cílová adresa\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 je cílová adresa"
-
-#: standalone/drakvpn:960
-#, c-format
-msgid "Sainfo destination protocol"
-msgstr "Protokol cílů Sainfo"
-
-#: standalone/drakvpn:961
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe last 'any' allows any protocol for the destination"
-msgstr ""
-"sainfo (zdrojove_id cilove_id | anonymous) { prikazy }\n"
-"definuje parametry IKE fáze 2\n"
-"(ustanovení IPsec-SA).\n"
-"\n"
-"zdrojove_id a cilove_id se tvoří následovně:\n"
-"\n"
-"\taddress adresa [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Příklady: \n"
-"\n"
-"sainfo anonymous (přijímá připojení odkudkoli)\n"
-"\tponechte tuto položku prázdnou pokud chcete anonymní přístup\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tposlední \"any\" umožňuje jakýkoli protokol pro cíl"
-
-#: standalone/drakvpn:975
-#, c-format
-msgid "PFS group"
-msgstr "PFS skupina"
-
-#: standalone/drakvpn:977
-#, c-format
-msgid ""
-"define the group of Diffie-Hellman exponentiations.\n"
-"If you do not require PFS then you can omit this directive.\n"
-"Any proposal will be accepted if you do not specify one.\n"
-"group is one of the following: modp768, modp1024, modp1536.\n"
-"Or you can define 1, 2, or 5 as the DH group number."
-msgstr ""
-"Definujte skupinu Diffie-Hellmanova umocňování.\n"
-"Pokud nevyžadujete PFS, pak můžete tento příkaz vynechat.\n"
-"Pokud žádnou skupinu nezadáte, bude přijat jakýkoli návrh.\n"
-"Skupina je jedna z následujících: modp768, modp1024, modp1536.\n"
-"Lze také definovat 1, 2 nebo 5 jako číslo skupiny DH."
-
-#: standalone/drakvpn:982
-#, c-format
-msgid "Lifetime number"
-msgstr "Doba trvání"
-
-#: standalone/drakvpn:983
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-msgstr ""
-"Definujte délku časového úseku, který bude navržen při\n"
-"vyjednávání ve fázi 1. Pokud žádnou délku nezadáte, bude\n"
-"přijat jakýkoli návrh, a protějšku nebude navržen žádný\n"
-"atribut či atributy. Tyto intervaly lze jednotlivě specifikovat\n"
-"během každého návrhu.\n"
-"\n"
-"Příklady:\n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"V těchto případech jsou čísla intervalů 1, 1, 30, 30, 60 a 12.\n"
-
-#: standalone/drakvpn:999
-#, c-format
-msgid "Lifetime unit"
-msgstr "Jednotka pro dobu trvání"
-
-#: standalone/drakvpn:1001
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
-"'hour'.\n"
-msgstr ""
-"Definujte délku časového úseku, který bude navržen při\n"
-"vyjednávání ve fázi 1. Pokud žádnou délku nezadáte, bude\n"
-"přijat jakýkoli návrh, a protějšku nebude navržen žádný\n"
-"atribut či atributy. Tyto intervaly lze jednotlivě specifikovat\n"
-"během každého návrhu.\n"
-"\n"
-"Příklady:\n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"V těchto případech jsou jednotky intervalů 'min', 'min', 'sec', 'sec', 'sec' "
-"a 'hour'.\n"
-
-#: standalone/drakvpn:1019
-#, c-format
-msgid "Authentication algorithm"
-msgstr "Autentizační algoritmus"
-
-#: standalone/drakvpn:1021
-#, c-format
-msgid "Compression algorithm"
-msgstr "Kompresní algoritmus"
-
-#: standalone/drakvpn:1022
-#, c-format
-msgid "deflate"
-msgstr "deflate"
-
-#: standalone/drakvpn:1029
-#, c-format
-msgid "Remote"
-msgstr "Remote"
-
-#: standalone/drakvpn:1030
-#, c-format
-msgid ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specifies the parameters for IKE phase 1 for each remote node.\n"
-"The default port is 500. If anonymous is specified, the state-\n"
-"ments apply to all peers which do not match any other remote\n"
-"directive.\n"
-"\n"
-"Examples: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-msgstr ""
-"remote (adresa | anonymous) [[port]] { prikaz }\n"
-"udává parametry pro IKE fáze 1 pro každý vzdálený uzel.\n"
-"Výchozí port je 500. Pokud je zadán parametr \"anonymous\",\n"
-"vztahují se příkazy na všechny protějšky, které nesplňují žádný\n"
-"z ostatních příkazů remote.\n"
-"\n"
-"Příklady: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-
-#: standalone/drakvpn:1038
-#, c-format
-msgid "Exchange mode"
-msgstr "Režim výměny"
-
-#: standalone/drakvpn:1040
-#, c-format
-msgid ""
-"defines the exchange mode for phase 1 when racoon is the\n"
-"initiator. Also it means the acceptable exchange mode\n"
-"when racoon is responder. More than one mode can be\n"
-"specified by separating them with a comma. All of the\n"
-"modes are acceptable. The first exchange mode is what\n"
-"racoon uses when it is the initiator.\n"
-msgstr ""
-"Definuje režim výměny pro fázi 1, kde iniciátorem je\n"
-"racoon. Představuje též přípustné režimy výměny dat,\n"
-"pokud je racoon odpovídajícím. Lze zadat více režimů,\n"
-"ty je pak třeba oddělit čárkami. Jsou přípustné všechny\n"
-"režimy. První z nich racoon použije, pokud je iniciátorem.\n"
-
-#: standalone/drakvpn:1046
-#, c-format
-msgid "Generate policy"
-msgstr "Generovat politiku"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "off"
-msgstr "vypnuto"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "on"
-msgstr "zapnuto"
-
-#: standalone/drakvpn:1048
-#, c-format
-msgid ""
-"This directive is for the responder. Therefore you\n"
-"should set passive on in order that racoon(8) only\n"
-"becomes a responder. If the responder does not have any\n"
-"policy in SPD during phase 2 negotiation, and the direc-\n"
-"tive is set on, then racoon(8) will choice the first pro-\n"
-"posal in the SA payload from the initiator, and generate\n"
-"policy entries from the proposal. It is useful to nego-\n"
-"tiate with the client which is allocated IP address\n"
-"dynamically. Note that inappropriate policy might be\n"
-"installed into the responder's SPD by the initiator. So\n"
-"that other communication might fail if such policies\n"
-"installed due to some policy mismatches between the ini-\n"
-"tiator and the responder. This directive is ignored in\n"
-"the initiator case. The default value is off."
-msgstr ""
-"Tento příkaz je pro odpovídajícího. Chcete-li, aby racoon\n"
-"operoval v režimu odpovídání, měli byste nastavit parametr\n"
-"\"passive\". Pokud nemá odpovídající nastavenou žádnou politiku\n"
-"v SPD během vyjednávání ve fázi 2, a tento příkaz je zapnut,\n"
-"pak racoon(8) vybere první návrh z údajů SA poslaných iniciátorem,\n"
-"a vygeneruje položky politiky z návrhu. To je užitečné při jednání\n"
-"s klientem, který má IP adresu dynamicky přidělenou. Mějte\n"
-"na paměti, že takto může iniciátor odpovídajícímu poskytnout\n"
-"do SPD nesprávnou politiku. Pokud je tato politika chybná a jsou\n"
-"v ní nesrovnalosti mezi iniciátorem a odpovídajícím, může\n"
-"následná komunikace selhat. Tento příkaz se ignoruje v případě\n"
-"iniciátora. Výchozí nastavení je vypnuto."
-
-#: standalone/drakvpn:1062
-#, c-format
-msgid "Passive"
-msgstr "Pasivní"
-
-#: standalone/drakvpn:1064
-#, c-format
-msgid ""
-"If you do not want to initiate the negotiation, set this\n"
-"to on. The default value is off. It is useful for a\n"
-"server."
-msgstr ""
-"Pokud nechcete inicializovat spojení, nastavte tento\n"
-"příkaz na zapnuto. Výchozí nastavení je vypnuto. Tento\n"
-"příkaz je užitečný pro server."
-
-#: standalone/drakvpn:1067
-#, c-format
-msgid "Certificate type"
-msgstr "Typ certifikátu"
-
-#: standalone/drakvpn:1069
-#, c-format
-msgid "My certfile"
-msgstr "Můj soubor s certifikáty"
-
-#: standalone/drakvpn:1070
-#, c-format
-msgid "Name of the certificate"
-msgstr "Název certifikátu"
-
-#: standalone/drakvpn:1071
-#, c-format
-msgid "My private key"
-msgstr "Můj privátní klíč"
-
-#: standalone/drakvpn:1072
-#, c-format
-msgid "Name of the private key"
-msgstr "Název privátního klíče"
-
-#: standalone/drakvpn:1073
-#, c-format
-msgid "Peers certfile"
-msgstr "Soubor s certifikátory protějšků"
-
-#: standalone/drakvpn:1074
-#, c-format
-msgid "Name of the peers certificate"
-msgstr "Název certifikátu protějšků"
-
-#: standalone/drakvpn:1075
-#, c-format
-msgid "Verify cert"
-msgstr "Ověřovat certifikát"
-
-#: standalone/drakvpn:1077
-#, c-format
-msgid ""
-"If you do not want to verify the peer's certificate for\n"
-"some reason, set this to off. The default is on."
-msgstr ""
-"Pokud z nějakého důvodu nechcete ověřovat certifikát\n"
-"protějšku, vypněte tuto volbu. Výchozí nastavení je zapnuto."
-
-#: standalone/drakvpn:1079
-#, c-format
-msgid "My identifier"
-msgstr "Můj identifikátor"
-
-#: standalone/drakvpn:1080
-#, c-format
-msgid ""
-"specifies the identifier sent to the remote host and the\n"
-"type to use in the phase 1 negotiation. address, FQDN,\n"
-"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
-"they are used like:\n"
-"\tmy_identifier address [address];\n"
-"\t\tthe type is the IP address. This is the default\n"
-"\t\ttype if you do not specify an identifier to use.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tthe type is a USER_FQDN (user fully-qualified\n"
-"\t\tdomain name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tthe type is a FQDN (fully-qualified domain name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tthe type is a KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tthe type is an ASN.1 distinguished name. If\n"
-"\t\tstring is omitted, racoon(8) will get DN from\n"
-"\t\tSubject field in the certificate.\n"
-"\n"
-"Examples: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-msgstr ""
-"Udává identifikátor posílaný vzdálenému počítači\n"
-"a který typ použít při vyjednávání ve fázi 1. Jako idtype\n"
-"lze použít address, FQDN, user_fqdn, keyid a asn1dn.\n"
-"Lze je použít takto:\n"
-"\tmy_identifier address [address];\n"
-"\t\ttyp je IP adresa. Toto je výchozí typ,\n"
-"\t\tpokud nezadáte, který typ identifikátoru se má použít.\n"
-"\tmy_identifier user_fqdn řetězec;\n"
-"\t\ttyp je USER_FQDN (User Fully-Qualified\n"
-"\t\tDomain Name).\n"
-"\tmy_identifier FQDN řetězec;\n"
-"\t\ttyp je FQDN (Fully-Qualified Domain Name).\n"
-"\tmy_identifier keyid soubor;\n"
-"\t\ttyp je KEY_ID.\n"
-"\tmy_identifier asn1dn [řetězec];\n"
-"\t\ttyp je ASN.1 rozlišitelné jméno. Pokud\n"
-"\t\tje řetězec vynechán, racoon(8) získá DN z políčka\n"
-"\t\tSubject z certifikátu.\n"
-"\n"
-"Příklady:\n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-
-#: standalone/drakvpn:1100
-#, c-format
-msgid "Peers identifier"
-msgstr "Identifikátor protějšku"
-
-#: standalone/drakvpn:1101
-#, c-format
-msgid "Proposal"
-msgstr "Návrh"
-
-#: standalone/drakvpn:1103
-#, c-format
-msgid ""
-"specify the encryption algorithm used for the\n"
-"phase 1 negotiation. This directive must be defined. \n"
-"algorithm is one of the following: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For other transforms, this statement should not be used."
-msgstr ""
-"Udává šifrovací algoritmus použitý při vyjednávání\n"
-"ve fázi 1. Tento parametr musí být definován.\n"
-"Algoritmus může být jeden z následujících:\n"
-"\n"
-"DES, 3DES, blowfish, cast128 nebo oakley.\n"
-"\n"
-"Tento příkaz by se neměl používat pro jiné transformace."
-
-#: standalone/drakvpn:1110
-#, c-format
-msgid "Hash algorithm"
-msgstr "Hašovací algoritmus"
-
-#: standalone/drakvpn:1112
-#, c-format
-msgid "DH group"
-msgstr "Skupina DH"
-
-#: standalone/drakvpn:1119
-#, c-format
-msgid "Command"
-msgstr "Příkaz"
-
-#: standalone/drakvpn:1120
-#, c-format
-msgid "Source IP range"
-msgstr "Zdrojový rozsah IP adres"
-
-#: standalone/drakvpn:1121
-#, c-format
-msgid "Destination IP range"
-msgstr "Cílový rozsah IP adres"
-
-#: standalone/drakvpn:1122
-#, c-format
-msgid "Upper-layer protocol"
-msgstr "Protokol vyšší vrstvy"
-
-#: standalone/drakvpn:1122 standalone/drakvpn:1129
-#, c-format
-msgid "any"
-msgstr "any"
-
-#: standalone/drakvpn:1124
-#, c-format
-msgid "Flag"
-msgstr "Příznak"
-
-#: standalone/drakvpn:1125
-#, c-format
-msgid "Direction"
-msgstr "Směr"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "IPsec policy"
-msgstr "Politika pro IPsec"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "ipsec"
-msgstr "ipsec"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "discard"
-msgstr "discard"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "Mode"
-msgstr "Režim"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "tunnel"
-msgstr "tunnel"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "transport"
-msgstr "transport"
-
-#: standalone/drakvpn:1131
-#, c-format
-msgid "Source/destination"
-msgstr "Zdroj/cíl"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "require"
-msgstr "require"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "default"
-msgstr "výchozí"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "use"
-msgstr "use"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "unique"
-msgstr "unique"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (broadcast)"
-msgstr "USA (broadcast)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable)"
-msgstr "USA (kabel)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "USA (cable-hrc)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "Canada (cable)"
-msgstr "Kanada (kabel)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Japonsko (broadcast)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (cable)"
-msgstr "Japonsko (kabel)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "China (broadcast)"
-msgstr "Čína (broadcast)"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "West Europe"
-msgstr "Západní Evropa"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "East Europe"
-msgstr "Východní Evropa"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "France [SECAM]"
-msgstr "Francie [SECAM]"
-
-#: standalone/drakxtv:48
-#, c-format
-msgid "Newzealand"
-msgstr "Nový Zéland"
-
-#: standalone/drakxtv:51
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Australská kabelová televize Optus"
-
-#: standalone/drakxtv:85
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Zadejte prosím\n"
-"typ TV normy a zemi"
-
-#: standalone/drakxtv:87
-#, c-format
-msgid "TV norm:"
-msgstr "Norma TV:"
-
-#: standalone/drakxtv:88
-#, c-format
-msgid "Area:"
-msgstr "Oblast:"
-
-#: standalone/drakxtv:93
-#, c-format
-msgid "Scanning for TV channels in progress..."
-msgstr "Probíhá vyhledávání TV kanálů ..."
-
-#: standalone/drakxtv:103
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "Vyhledávám TV kanály"
-
-#: standalone/drakxtv:107
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Nastala chyba při zkoumání TV kanálů"
-
-#: standalone/drakxtv:110
-#, c-format
-msgid "Have a nice day!"
-msgstr "Přeji hezký den!"
-
-#: standalone/drakxtv:111
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "Nyní můžete spustit aplikaci XawTV (pod X Windows!)\n"
-
-#: standalone/drakxtv:149
-#, c-format
-msgid "No TV Card detected!"
-msgstr "Nebyla nalezena TV karta!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakxtv:151
-#, c-format
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"V počítači nebyla nalezena žádná TV karta. Zkontrolujte prosím, zda "
-"podporovaná karta je správně zapojena.\n"
-"\n"
-"\n"
-"Databázi hardware lze nalézt na:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/finish-install:42 standalone/keyboarddrake:30
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Jaké je rozložení vaší klávesnice?"
-
-#: standalone/harddrake2:25
-#, c-format
-msgid "Alternative drivers"
-msgstr "Alternativní ovladače"
-
-#: standalone/harddrake2:26
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "seznam alternativních ovladačů pro vaši zvukovou kartu"
-
-#: standalone/harddrake2:29
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-"toto je fyzická sběrnice, na kterou je připojeno zařízení (např. PCI, "
-"USB, ...)"
-
-#: standalone/harddrake2:31 standalone/harddrake2:146
-#, c-format
-msgid "Bus identification"
-msgstr "Identifikace sběrnice"
-
-#: standalone/harddrake2:32
-#, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
-msgstr ""
-"- zařízení PCI a USB: vypisuje se dodavatel, zařízení, subdodavatel a "
-"podzařízení (ID PCI/USB)"
-
-#: standalone/harddrake2:35
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- zařízení PCI: udává slot PCI, zařízení a funkci této karty\n"
-"- zařízení EIDE: zařízení je buď master nebo slave\n"
-"- zařízení SCSI: udává ID sběrnice a zařízení SCSI"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "Drive capacity"
-msgstr "Kapacita zařízení"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
-"speciální schopnosti zařízení (schopnost vypalování a/nebo podpora DVD)"
-
-#: standalone/harddrake2:39
-#, c-format
-msgid "this field describes the device"
-msgstr "Toto pole popisuje zařízení"
-
-#: standalone/harddrake2:40
-#, c-format
-msgid "Old device file"
-msgstr "Starý soubor se zařízením"
-
-#: standalone/harddrake2:41
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "starý, statický název zařízení, který se používá v balíčku dev"
-
-#: standalone/harddrake2:42
-#, c-format
-msgid "New devfs device"
-msgstr "Nové zařízení devfs"
-
-#: standalone/harddrake2:43
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr ""
-"nový, dynamický název zařízení, který generuje zabudovaný systém jádra devfs"
-
-#. -PO: here "module" is the "jargon term" for a kernel driver
-#: standalone/harddrake2:46
-#, c-format
-msgid "Module"
-msgstr "Modul"
-
-#: standalone/harddrake2:46
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "modul jádra systému GNU/Linux, který ovládá toto zařízení"
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "Extended partitions"
-msgstr "Rozšířené oddíly"
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "the number of extended partitions"
-msgstr "počet rozšířených oddílů"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Geometry"
-msgstr "Geometrie"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Cylinder/head/sectors geometry of the disk"
-msgstr "Plotny/hlavičky/sektory, geometrie disku"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "Disk controller"
-msgstr "Řadič disku"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "the disk controller on the host side"
-msgstr "řadič disku na straně hostitele"
-
-#: standalone/harddrake2:50
-#, c-format
-msgid "class of hardware device"
-msgstr "třída hardwarového zařízení"
-
-#: standalone/harddrake2:51 standalone/harddrake2:83
-#: standalone/printerdrake:224
-#, c-format
-msgid "Model"
-msgstr "Model"
-
-#: standalone/harddrake2:51
-#, c-format
-msgid "hard disk model"
-msgstr "model pevného disku"
-
-#: standalone/harddrake2:52
-#, c-format
-msgid "network printer port"
-msgstr "port síťové tiskárny"
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "Primary partitions"
-msgstr "Primární oddíly"
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "the number of the primary partitions"
-msgstr "počet primárních oddílů"
-
-#: standalone/harddrake2:54
-#, c-format
-msgid "the vendor name of the device"
-msgstr "jméno dodavatele zařízení"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "Bus PCI #"
-msgstr "Sběrnice PCI #"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "the PCI bus on which the device is plugged"
-msgstr "sběrnice PCI, na kterou je připojeno zařízení"
-
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device #"
-msgstr "Zařízení PCI #"
-
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device number"
-msgstr "Číslo zařízení PCI"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function #"
-msgstr "Funkce PCI #"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function number"
-msgstr "Číslo funkce PCI"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "Vendor ID"
-msgstr "ID dodavatele"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "this is the standard numerical identifier of the vendor"
-msgstr "standardní číselný identifikátor dodavatele"
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "Device ID"
-msgstr "ID zařízení"
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "this is the numerical identifier of the device"
-msgstr "toto je číselný identifikátor zařízení"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "Sub vendor ID"
-msgstr "Sub ID dodavatele"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "this is the minor numerical identifier of the vendor"
-msgstr "toto je druhotný číselný identifikátor dodavatele"
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "Sub device ID"
-msgstr "Sub ID zařízení"
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "this is the minor numerical identifier of the device"
-msgstr "toto je druhotný číselný identifikátor zařízení"
-
-#: standalone/harddrake2:62
-#, c-format
-msgid "Device USB ID"
-msgstr "USB ID zařízení"
-
-#: standalone/harddrake2:62
-#, c-format
-msgid ".."
-msgstr ".."
-
-#: standalone/harddrake2:66
-#, c-format
-msgid "Bogomips"
-msgstr "BogoMIPS"
-
-#: standalone/harddrake2:66
-#, c-format
-msgid ""
-"the GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
-msgstr ""
-"GNU/Linux jádro potřebuje spustit výpočetní smyčku při spuštění pro "
-"inicializaci čítače hodin. Výsledek je uložen v proměnné BogoMIPS jako "
-"takový \"benchmark\" pro cpu."
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "Cache size"
-msgstr "Velikost vyrovnávací paměti"
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "Velikost cache (druhá úroveň) na cpu"
-
-#. -PO: here "comas" is the medical coma, not the lexical coma!!
-#: standalone/harddrake2:70
-#, c-format
-msgid "Coma bug"
-msgstr "Chyba čárky"
-
-#: standalone/harddrake2:70
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "Zda má cpu chybu čárky Cyrix 6x86"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "Cpuid family"
-msgstr "Rodina CPU"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "Rodina pro cpu (např. 6 pro i686 třídu)"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "Cpuid level"
-msgstr "Cpuid úroveň"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "Úroveň informací, které lze získat po provedení instrukce cpuid"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Frekvence (MHz)"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr ""
-"Frekvence CPU v MHz (Megahertz je hodnota přibližně rovna vypočtenému počtu "
-"instrukcí, které je schopen procesor provést za sekundu)"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "Flags"
-msgstr "Příznaky"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "Příznaky CPU nalezené jádrem"
-
-#: standalone/harddrake2:75
-#, c-format
-msgid "Fdiv bug"
-msgstr "Fdiv chyba"
-
-#: standalone/harddrake2:76
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
-"První verze procesorů Pentium měly z výroby chybu v jednotce pro plovoucí "
-"řádovou čárku, která nedosahovala požadované přesnosti při operaci FDIV"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "Is FPU present"
-msgstr "Přítomnost FPU"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "ano znamená, že procesor má aritmetický koprocesor"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "Zda má FPU irq vektor"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr "ano znamená, že aritmetický koprocesor je vybaven vektorem výjimek"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "F00f bug"
-msgstr "F00f chyba"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
-"První verze procesorů Pentium byly chybové a způsobovaly zatuhnutí při "
-"dekódování instrukce F00F"
-
-#: standalone/harddrake2:80
-#, c-format
-msgid "Halt bug"
-msgstr "Halt chyba"
-
-#: standalone/harddrake2:81
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
-"Některé první modely čipsetů i486DX100 neprováděly správně po instrukci "
-"\"halt\" návrat do operačního režimu"
-
-#: standalone/harddrake2:82
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "Specifická třída cpu"
-
-#: standalone/harddrake2:83
-#, c-format
-msgid "generation of the cpu (eg: 8 for Pentium III, ...)"
-msgstr "Generace cpu (např. 8 pro Pentium III, ...)"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "Model name"
-msgstr "Název modelu"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "Oficiální jméno dodavatele procesoru"
-
-#: standalone/harddrake2:85
-#, c-format
-msgid "the name of the CPU"
-msgstr "název CPU"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "Processor ID"
-msgstr "ID procesoru"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "the number of the processor"
-msgstr "číslo procesoru"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "Model stepping"
-msgstr "Číslování modelu"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "Model cpu (generované číslo pro submodel)"
-
-#: standalone/harddrake2:88
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "jméno dodavatele procesoru"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid "Write protection"
-msgstr "Ochrana proti zápisu"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid ""
-"the WP flag in the CR0 register of the cpu enforce write protection at the "
-"memory page level, thus enabling the processor to prevent unchecked kernel "
-"accesses to user memory (aka this is a bug guard)"
-msgstr ""
-"příznak WP pro CR0 registr procesoru zabezpečuje ochranu před zápisem na "
-"úrovni paměti, takže jeho povolením dojde k prevenci nečekaným přístupům do "
-"paměti uživatelských aplikací (čili je to ochrana před chybou)"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "Floppy format"
-msgstr "Formáty pro diskety"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "Druhy formátu disket podporované mechanikou"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "Channel"
-msgstr "Kanál"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "Kanál EIDE/SCSI"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "Disk identifier"
-msgstr "Identifikátor disku"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "usually the disk serial number"
-msgstr "obvykle sériové číslo disku"
-
-#: standalone/harddrake2:99
-#, c-format
-msgid "Logical unit number"
-msgstr "Logické číslo jednotky"
-
-#: standalone/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 ""
-"logické číslo zařízení SCSI (LUN). SCSI zařízení připojená k řadiči jsou "
-"jednoznačně\n"
-"identifikována číslem kanálu, ID cíle a logickým číslem zařízení"
-
-#. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...)
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size"
-msgstr "Instalovaná velikost"
-
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size of the memory bank"
-msgstr "Instalovaná velikost paměťové banky"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled Size"
-msgstr "Dostupná velikost"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled size of the memory bank"
-msgstr "Dostupná velikost paměťové banky"
-
-#: standalone/harddrake2:108
-#, c-format
-msgid "type of the memory device"
-msgstr "typ paměťového zařízení"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed"
-msgstr "Rychlost"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed of the memory bank"
-msgstr "Rychlost paměťové banky"
-
-#: standalone/harddrake2:110
-#, c-format
-msgid "Bank connections"
-msgstr "Propojení banky"
-
-#: standalone/harddrake2:111
-#, c-format
-msgid "Socket designation of the memory bank"
-msgstr "Umístění patice paměťové banky"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid "Device file"
-msgstr "Soubor se zařízením"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid ""
-"the device file used to communicate with the kernel driver for the mouse"
-msgstr ""
-"soubor se zařízením, který se používá při komunikaci s ovladačem jádra myši"
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "Emulated wheel"
-msgstr "Emulované kolečko"
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "whether the wheel is emulated or not"
-msgstr "zda-li je kolečko emulováno nebo ne"
-
-#: standalone/harddrake2:117
-#, c-format
-msgid "the type of the mouse"
-msgstr "typ myši"
-
-#: standalone/harddrake2:118
-#, c-format
-msgid "the name of the mouse"
-msgstr "název myši"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "Number of buttons"
-msgstr "Počet tlačítek"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "počet tlačítek na myši"
-
-#: standalone/harddrake2:120
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "Typ sběrnice, ke které je připojena myš"
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "Mouse protocol used by X11"
-msgstr "Protokol myši používaný X11"
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "the protocol that the graphical desktop use with the mouse"
-msgstr "protokol, který s myší používá grafické prostředí"
-
-#: standalone/harddrake2:128 standalone/harddrake2:137
-#: standalone/harddrake2:144 standalone/harddrake2:152
-#: standalone/harddrake2:341
-#, c-format
-msgid "Identification"
-msgstr "Identifikace"
-
-#: standalone/harddrake2:129 standalone/harddrake2:145
-#, c-format
-msgid "Connection"
-msgstr "Připojení"
-
-#: standalone/harddrake2:138
-#, c-format
-msgid "Performances"
-msgstr "Výkony"
-
-#: standalone/harddrake2:139
-#, c-format
-msgid "Bugs"
-msgstr "Chyby"
-
-#: standalone/harddrake2:140
-#, c-format
-msgid "FPU"
-msgstr "FPU"
-
-#: standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Zařízení"
-
-#: standalone/harddrake2:148
-#, c-format
-msgid "Partitions"
-msgstr "Oddíly"
-
-#: standalone/harddrake2:153
-#, c-format
-msgid "Features"
-msgstr "Vlastnosti"
-
-#. -PO: please keep all "/" characters !!!
-#: standalone/harddrake2:176 standalone/logdrake:76
-#: standalone/printerdrake:146 standalone/printerdrake:159
-#: standalone/printerdrake:171
-#, c-format
-msgid "/_Options"
-msgstr "/_Volby"
-
-#: standalone/harddrake2:177 standalone/harddrake2:202 standalone/logdrake:78
-#: standalone/printerdrake:172 standalone/printerdrake:174
-#: standalone/printerdrake:177 standalone/printerdrake:179
-#, c-format
-msgid "/_Help"
-msgstr "/_Nápověda"
-
-#: standalone/harddrake2:181
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Automaticky detekovat _tiskárny"
-
-#: standalone/harddrake2:182
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Automaticky detekovat _modemy"
-
-#: standalone/harddrake2:183
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Automaticky detekovat jednotky _Jaz"
-
-#: standalone/harddrake2:184
-#, c-format
-msgid "/Autodetect parallel _zip drives"
-msgstr "/Automaticky detekovat jednotky _Zip na paralelním portu"
-
-#: standalone/harddrake2:191 standalone/printerdrake:152
-#, c-format
-msgid "/_Quit"
-msgstr "/_Konec"
-
-#: standalone/harddrake2:204
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Popis položek"
-
-#: standalone/harddrake2:206
-#, c-format
-msgid "Harddrake help"
-msgstr "Nápověda pro HardDrake"
-
-#: standalone/harddrake2:215
-#, 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 ""
-"Pokud vyberete nějaké zařízení, uvidíte o něm informace v pravém rámci "
-"(\"Informace\")"
-
-#: standalone/harddrake2:221 standalone/printerdrake:177
-#, c-format
-msgid "/_Report Bug"
-msgstr "/Nah_lásit chybu"
-
-#: standalone/harddrake2:223 standalone/printerdrake:179
-#, c-format
-msgid "/_About..."
-msgstr "/_O aplikaci..."
-
-#: standalone/harddrake2:224
-#, c-format
-msgid "About Harddrake"
-msgstr "O aplikaci HardDrake"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/harddrake2:226
-#, c-format
-msgid ""
-"This is HardDrake, a %s hardware configuration tool.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-msgstr ""
-"Toto je HardDrake, nástroj pro nastavení hardware %s.\n"
-"<span foreground=\"royalblue3\">Verze:</span> %s\n"
-"<span foreground=\"royalblue3\">Autor:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-
-#: standalone/harddrake2:242
-#, c-format
-msgid "Harddrake2"
-msgstr "HardDrake2"
-
-#: standalone/harddrake2:272
-#, c-format
-msgid "Detected hardware"
-msgstr "Nalezený hardware"
-
-#: standalone/harddrake2:277
-#, c-format
-msgid "Configure module"
-msgstr "Nastavit modul"
-
-#: standalone/harddrake2:284
-#, c-format
-msgid "Run config tool"
-msgstr "Spustit nástroj pro nastavení"
-
-#: standalone/harddrake2:308
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
-"Klepněte na zařízení v levé části stromu a zobrazíte zde o něm informace."
-
-#: standalone/harddrake2:329 standalone/printerdrake:306
-#: standalone/printerdrake:320
-#, c-format
-msgid "Unknown"
-msgstr "Neznámý"
-
-#: standalone/harddrake2:349
-#, c-format
-msgid "Misc"
-msgstr "Ostatní"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "secondary"
-msgstr "sekundární"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "primary"
-msgstr "primární"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "burner"
-msgstr "vypalovačka"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "DVD"
-msgstr "DVD"
-
-#: standalone/harddrake2:511
-#, c-format
-msgid ""
-"The following devices needs proprietary drivers or firmwares in order to "
-"operate smoothly. The appropriate packages can be retrieved from the "
-"Mandriva Club. Do you want to subscribe to the Mandriva Club?"
-msgstr ""
-
-#: standalone/keyboarddrake:45
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Chcete, aby se klávesa Backspace chovala v konzoli jako Delete?"
-
-#: standalone/localedrake:38
-#, c-format
-msgid "LocaleDrake"
-msgstr "LocaleDrake"
-
-#: standalone/localedrake:44
-#, c-format
-msgid "You should install the following packages: %s"
-msgstr "Měli byste nainstalovat následující balíčky: %s"
-
-#. -PO: the following is used to combine packages names. eg: "initscripts, harddrake, yudit"
-#: standalone/localedrake:47 standalone/scannerdrake:135
-#, c-format
-msgid ", "
-msgstr ", "
-
-#: standalone/localedrake:55
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "Změny jsou provedeny, ale pro aktivaci je nutné provést odhlášení"
-
-#: standalone/logdrake:49
-#, c-format
-msgid "Mandriva Linux Tools Logs"
-msgstr "Záznamy nástrojů Mandriva Linuxu"
-
-#: standalone/logdrake:50
-#, c-format
-msgid "Logdrake"
-msgstr "Logdrake"
-
-#: standalone/logdrake:63
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Zobrazit pouze pro vybraný den"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "/File/_New"
-msgstr "/Soubor/_Nový"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "/File/_Open"
-msgstr "/Soubor/_Otevřít"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "/File/_Save"
-msgstr "/Soubor/_Uložit"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "<control>S"
-msgstr "<control>U"
-
-#: standalone/logdrake:73
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Soubor/Uložit _jako"
-
-#: standalone/logdrake:74
-#, c-format
-msgid "/File/-"
-msgstr "/Soubor/-"
-
-#: standalone/logdrake:77
-#, c-format
-msgid "/Options/Test"
-msgstr "/Volby/Test"
-
-#: standalone/logdrake:79
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Nápověda/_O aplikaci..."
-
-#: standalone/logdrake:108
-#, c-format
-msgid ""
-"_:this is the auth.log log file\n"
-"Authentication"
-msgstr "Autentizace"
-
-#: standalone/logdrake:109
-#, c-format
-msgid ""
-"_:this is the user.log log file\n"
-"User"
-msgstr "Uživatel"
-
-#: standalone/logdrake:110
-#, c-format
-msgid ""
-"_:this is the /var/log/messages log file\n"
-"Messages"
-msgstr "Zprávy"
-
-#: standalone/logdrake:111
-#, c-format
-msgid ""
-"_:this is the /var/log/syslog log file\n"
-"Syslog"
-msgstr "Syslog"
-
-#: standalone/logdrake:115
-#, c-format
-msgid "search"
-msgstr "vyhledat"
-
-#: standalone/logdrake:127
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Nástroj na sledování logů"
-
-#: standalone/logdrake:128 standalone/net_applet:347 standalone/net_monitor:93
-#, c-format
-msgid "Settings"
-msgstr "Nastavení"
-
-#: standalone/logdrake:133
-#, c-format
-msgid "Matching"
-msgstr "Shodných"
-
-#: standalone/logdrake:134
-#, c-format
-msgid "but not matching"
-msgstr "neshodných"
-
-#: standalone/logdrake:138
-#, c-format
-msgid "Choose file"
-msgstr "Vyberte soubor"
-
-#: standalone/logdrake:150
-#, c-format
-msgid "Calendar"
-msgstr "Kalendář"
-
-#: standalone/logdrake:160
-#, c-format
-msgid "Content of the file"
-msgstr "Obsah souboru"
-
-#: standalone/logdrake:164 standalone/logdrake:401
-#, c-format
-msgid "Mail alert"
-msgstr "Varovné zprávy e-mailem"
-
-#: standalone/logdrake:171
-#, c-format
-msgid "The alert wizard has failed unexpectedly:"
-msgstr "Průvodce pro varování neočekávaně selhal:"
-
-#: standalone/logdrake:224
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "čekejte prosím, zpracovávám soubor: %s"
-
-#: standalone/logdrake:379
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Server pro World Wide Web Apache"
+msgid "All servers"
+msgstr "Všechny servery"
-#: standalone/logdrake:380
+#: timezone.pm:183
#, c-format
-msgid "Domain Name Resolver"
-msgstr "Dekodér názvu domény"
+msgid "Global"
+msgstr "Globální"
-#: standalone/logdrake:381
+#: timezone.pm:186
#, c-format
-msgid "Ftp Server"
-msgstr "Server FTP"
+msgid "Africa"
+msgstr "Afrika"
-#: standalone/logdrake:382
+#: timezone.pm:187
#, c-format
-msgid "Postfix Mail Server"
-msgstr "Poštovní server Postfix"
+msgid "Asia"
+msgstr "Asie"
-#: standalone/logdrake:383
+#: timezone.pm:188
#, c-format
-msgid "Samba Server"
-msgstr "Server Samba"
+msgid "Europe"
+msgstr "Evropa"
-#: standalone/logdrake:385
+#: timezone.pm:189
#, c-format
-msgid "Webmin Service"
-msgstr "Služba Webmin"
+msgid "North America"
+msgstr "Severní Amerika"
-#: standalone/logdrake:386
+#: timezone.pm:190
#, c-format
-msgid "Xinetd Service"
-msgstr "Služba Xinetd"
+msgid "Oceania"
+msgstr "Oceánie"
-#: standalone/logdrake:395
+#: timezone.pm:191
#, c-format
-msgid "Configure the mail alert system"
-msgstr "Nastaví odesílání varovných zpráv emailem"
+msgid "South America"
+msgstr "Jižní Amerika"
-#: standalone/logdrake:396
+#: timezone.pm:200
#, c-format
-msgid "Stop the mail alert system"
-msgstr "Zastavit zasílání varovných zpráv emailem"
+msgid "Hong Kong"
+msgstr "Hong Kong"
-#: standalone/logdrake:404
+#: timezone.pm:237
#, c-format
-msgid "Mail alert configuration"
-msgstr "Nastavení zasílání varovných zpráv e-mailem"
+msgid "Russian Federation"
+msgstr "Ruská federace"
-#: standalone/logdrake:405
+#: timezone.pm:245
#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Vítejte v nastavení elektronické pošty.\n"
-"\n"
-"Zde lze nastavit systém posílání varovných zpráv.\n"
-
-#: standalone/logdrake:415
-#, c-format
-msgid "Services settings"
-msgstr "Nastavení služeb"
-
-#: standalone/logdrake:416
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr "Pokud jedna z vybraných služeb nepoběží, obdržíte varovnou zprávu"
-
-#: standalone/logdrake:423
-#, c-format
-msgid "Load setting"
-msgstr "Nahrát volby"
-
-#: standalone/logdrake:424
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Pokud bude hodnota vetší než zadané číslo, obdržíte varovnou zprávu"
-
-#: standalone/logdrake:425
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Zatížení"
-
-#: standalone/logdrake:430
-#, c-format
-msgid "Alert configuration"
-msgstr "Nastavení varování"
-
-#: standalone/logdrake:431
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Zadejte prosím níže svou poštovní adresu "
-
-#: standalone/logdrake:432
-#, c-format
-msgid "and enter the name (or the IP) of the SMTP server you wish to use"
-msgstr ""
-"a zadejte název (nebo IP adresu) SMTP serveru, který budete chtít použít"
-
-#: standalone/logdrake:451
-#, c-format
-msgid "The wizard successfully configured the mail alert."
-msgstr "Průvodce úspěšně nastavil posílání varování elektronickou poštou."
-
-#: standalone/logdrake:457
-#, c-format
-msgid "The wizard successfully disabled the mail alert."
-msgstr "Průvodce úspěšně zakázal zasílání varovných zpráv emailem."
-
-#: standalone/logdrake:516
-#, c-format
-msgid "Save as.."
-msgstr "Uložit jako..."
-
-#: standalone/mousedrake:31
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Vyberte si typ vaši myši."
-
-#: standalone/mousedrake:44
-#, c-format
-msgid "Emulate third button?"
-msgstr "Emulovat třetí tlačítko?"
-
-#: standalone/mousedrake:61
-#, c-format
-msgid "Mouse test"
-msgstr "Test myši"
-
-#: standalone/mousedrake:64
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Vyzkoušejte prosím, zda funguje myš:"
-
-#: standalone/net_applet:47
-#, c-format
-msgid "Network is up on interface %s"
-msgstr "Síť běží na rozhraní %s"
-
-#. -PO: keep the "Configure Network" substring synced with the "Configure Network" message below
-#: standalone/net_applet:50
-#, c-format
-msgid "Network is down on interface %s. Click on \"Configure Network\""
-msgstr "Síť na rozhraní %s neběží. Klikněte na \"Nastavit síť\""
-
-#: standalone/net_applet:56 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Connect %s"
-msgstr "Připojit %s"
-
-#: standalone/net_applet:57 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Disconnect %s"
-msgstr "Odpojit %s"
-
-#: standalone/net_applet:58
-#, c-format
-msgid "Monitor Network"
-msgstr "Sledovat síť"
-
-#: standalone/net_applet:60
-#, c-format
-msgid "Manage wireless networks"
-msgstr "Spravovat bezdrátové sítě"
-
-#: standalone/net_applet:61
-#, c-format
-msgid "Configure Network"
-msgstr "Nastavit síť"
-
-#: standalone/net_applet:63
-#, c-format
-msgid "Watched interface"
-msgstr "Sledované rozhraní"
-
-#: standalone/net_applet:93
-#, c-format
-msgid "Profiles"
-msgstr "Profily"
-
-#: standalone/net_applet:102
-#, c-format
-msgid "Get Online Help"
-msgstr "Získat online nápovědu"
-
-#: standalone/net_applet:335
-#, c-format
-msgid "Interactive Firewall automatic mode"
-msgstr "Automatický režim interaktivního firewallu"
-
-#: standalone/net_applet:340
-#, c-format
-msgid "Always launch on startup"
-msgstr "Vždy spouštět při startu"
-
-#: standalone/net_applet:344
-#, c-format
-msgid "Wireless networks"
-msgstr "Bezdrátové sítě"
-
-#: standalone/net_applet:429
-#, c-format
-msgid "Interactive Firewall: intrusion detected"
-msgstr "Interaktivní firewall: detekován průnik"
-
-#: standalone/net_applet:442
-#, c-format
-msgid "What do you want to do with this attacker?"
-msgstr "Co chcete provést s tímto útočníkem?"
-
-#: standalone/net_applet:445
-#, c-format
-msgid "Attack details"
-msgstr "Podrobnosti útoku"
-
-#: standalone/net_applet:449
-#, c-format
-msgid "Attack time: %s"
-msgstr "Čas útoku: %s"
-
-#: standalone/net_applet:450
-#, c-format
-msgid "Network interface: %s"
-msgstr "Síťové rozhraní: %s"
-
-#: standalone/net_applet:451
-#, c-format
-msgid "Attack type: %s"
-msgstr "Typ útoku: %s"
-
-#: standalone/net_applet:452
-#, c-format
-msgid "Protocol: %s"
-msgstr "Protokol: %s"
+msgid "Yugoslavia"
+msgstr "Jugoslávie"
-#: standalone/net_applet:453
-#, c-format
-msgid "Attacker IP address: %s"
-msgstr "IP adresa útočníka: %s"
-
-#: standalone/net_applet:454
-#, c-format
-msgid "Attacker hostname: %s"
-msgstr "Název počítače útočníka: %s"
-
-#: standalone/net_applet:457
-#, c-format
-msgid "Service attacked: %s"
-msgstr "Napadená služba: %s"
-
-#: standalone/net_applet:458
-#, c-format
-msgid "Port attacked: %s"
-msgstr "Napadený port: %s"
-
-#: standalone/net_applet:460
-#, c-format
-msgid "Type of ICMP attack: %s"
-msgstr "Typ útoku ICMP: %s"
-
-#: standalone/net_applet:465
-#, c-format
-msgid "Always blacklist (do not ask again)"
-msgstr "Přidat na černou listinu navždy (už se nikdy neptat)"
-
-#: standalone/net_monitor:57 standalone/net_monitor:62
-#, c-format
-msgid "Network Monitoring"
-msgstr "Sledování sítě"
-
-#: standalone/net_monitor:98
-#, c-format
-msgid "Global statistics"
-msgstr "Globální statistiky"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Instantaneous"
-msgstr "Okamžitá"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Average"
-msgstr "Průměrná"
-
-#: standalone/net_monitor:102
-#, c-format
-msgid ""
-"Sending\n"
-"speed:"
-msgstr ""
-"Odchozí\n"
-"rychlost:"
-
-#: standalone/net_monitor:103
-#, c-format
-msgid ""
-"Receiving\n"
-"speed:"
-msgstr ""
-"Rychlost\n"
-"na příjmu:"
-
-#: standalone/net_monitor:107
-#, c-format
-msgid ""
-"Connection\n"
-"time: "
-msgstr ""
-"Doba\n"
-"připojení: "
-
-#: standalone/net_monitor:114
-#, c-format
-msgid "Use same scale for received and transmitted"
-msgstr "Použít stejnou stupnici pro příchozí i odchozí"
-
-#: standalone/net_monitor:133
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Čekejte prosím, testuji připojení..."
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Odpojení od Internetu "
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Připojení k Internetu "
-
-#: standalone/net_monitor:226
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Odpojení od Internetu selhalo."
-
-#: standalone/net_monitor:227
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Odpojení od Internetu ukončeno."
-
-#: standalone/net_monitor:229
-#, c-format
-msgid "Connection complete."
-msgstr "Připojení ukončeno."
-
-#: standalone/net_monitor:230
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandriva Linux Control Center."
-msgstr ""
-"Připojení selhalo.\n"
-"Ověřte nastavení v ovládacím centru Mandriva Linux."
-
-#: standalone/net_monitor:335
-#, c-format
-msgid "Color configuration"
-msgstr "Nastavení barev"
-
-#: standalone/net_monitor:383 standalone/net_monitor:403
-#, c-format
-msgid "sent: "
-msgstr "odesláno: "
-
-#: standalone/net_monitor:390 standalone/net_monitor:407
-#, c-format
-msgid "received: "
-msgstr "přijato: "
-
-#: standalone/net_monitor:397
-#, c-format
-msgid "average"
-msgstr "průměr"
-
-#: standalone/net_monitor:400
-#, c-format
-msgid "Local measure"
-msgstr "Lokální měřítko"
-
-#: standalone/net_monitor:461
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Varování, bylo detekováno jiné připojení k Internetu, zřejmě je použita síť"
-
-#: standalone/net_monitor:472
-#, c-format
-msgid "No internet connection configured"
-msgstr "Žádné připojení k internetu není nastaveno"
-
-#: standalone/printerdrake:76
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "Načítám data z instalovaných tiskáren..."
-
-#: standalone/printerdrake:128
-#, c-format
-msgid "%s Printer Management Tool"
-msgstr "Nástroj pro správu tiskáren %s"
-
-#: standalone/printerdrake:142 standalone/printerdrake:143
-#: standalone/printerdrake:144 standalone/printerdrake:145
-#: standalone/printerdrake:153 standalone/printerdrake:154
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Actions"
-msgstr "/_Akce"
-
-#: standalone/printerdrake:142 standalone/printerdrake:154
-#, c-format
-msgid "/_Add Printer"
-msgstr "/Přid_at tiskárnu"
-
-#: standalone/printerdrake:143
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Nas_tavit jako výchozí"
-
-#: standalone/printerdrake:144
-#, c-format
-msgid "/_Edit"
-msgstr "/Ú_pravy"
-
-#: standalone/printerdrake:145
-#, c-format
-msgid "/_Delete"
-msgstr "/O_dstranit"
-
-#: standalone/printerdrake:146
-#, c-format
-msgid "/_Expert mode"
-msgstr "/_Expertní režim"
-
-#: standalone/printerdrake:151
-#, c-format
-msgid "/_Refresh"
-msgstr "/O_bnovit"
-
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/Na_stavit CUPS server"
-
-#: standalone/printerdrake:171
-#, c-format
-msgid "/Configure _Auto Administration"
-msgstr "/Nastavit _automatickou správu"
-
-#: standalone/printerdrake:194
-#, c-format
-msgid "Search:"
-msgstr "Hledat:"
-
-#: standalone/printerdrake:197
-#, c-format
-msgid "Apply filter"
-msgstr "Použít filtr"
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Def."
-msgstr "Vých."
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Printer Name"
-msgstr "Název tiskárny"
-
-#: standalone/printerdrake:224
-#, c-format
-msgid "Connection Type"
-msgstr "Typ spojení"
-
-#: standalone/printerdrake:231
-#, c-format
-msgid "Server Name"
-msgstr "Název serveru"
-
-#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add Printer"
-msgstr "Přidat tiskárnu"
-
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Přidá novou tiskárnu do systému"
-
-#. -PO: "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set as default"
-msgstr "Nastavit jako výchozí"
-
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Nastaví vybranou tiskárnu jako výchozí"
-
-#: standalone/printerdrake:245
-#, c-format
-msgid "Edit selected printer"
-msgstr "Upravit vybranou tiskárnu"
-
-#: standalone/printerdrake:248
-#, c-format
-msgid "Delete selected printer"
-msgstr "Smazat vybranou tiskárnu"
-
-#: standalone/printerdrake:251
-#, c-format
-msgid "Refresh the list"
-msgstr "Obnovit seznam"
-
-#. -PO: "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS"
-msgstr "Nastavení serveru CUPS"
-
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Nastaví tiskového systém CUPS"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Enabled"
-msgstr "Přístupná"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Disabled"
-msgstr "Nepřístupná"
-
-#: standalone/printerdrake:596
-#, c-format
-msgid "Authors: "
-msgstr "Autoři:"
-
-#. -PO: here %s is the version number
-#: standalone/printerdrake:606
-#, c-format
-msgid "Printer Management %s"
-msgstr "Správa tiskáren %s"
-
-#: standalone/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 ""
-"Pokud chcete používat skenery, musí být nainstalovány balíčky SANE.\n"
-"\n"
-"Chcete nainstalovat balíčky SANE?"
-
-#: standalone/scannerdrake:55
-#, c-format
-msgid "Aborting Scannerdrake."
-msgstr "Ukončuji Scannerdrake."
-
-#: standalone/scannerdrake:60
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-"Nelze nainstalovat balíčky potřebné pro nastavení skeneru pomocí "
-"Scannerdrake."
-
-#: standalone/scannerdrake:61
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Scannerdrake nebude nyní spuštěn."
-
-#: standalone/scannerdrake:67 standalone/scannerdrake:508
-#, c-format
-msgid "Searching for configured scanners..."
-msgstr "Vyhledávám nastavené skenery ...."
-
-#: standalone/scannerdrake:71 standalone/scannerdrake:512
-#, c-format
-msgid "Searching for new scanners..."
-msgstr "Vyhledávám nové skenery ..."
-
-#: standalone/scannerdrake:79 standalone/scannerdrake:534
-#, c-format
-msgid "Re-generating list of configured scanners..."
-msgstr "Znovu generuji seznam nastavených skenerů..."
-
-#: standalone/scannerdrake:101
-#, c-format
-msgid "The %s is not supported by this version of %s."
-msgstr "Tato verze %s nepodporuje %s."
-
-#: standalone/scannerdrake:104
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s nalezeno na %s, chcete ho nastavit automaticky?"
-
-#: standalone/scannerdrake:116
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr "%s není v databázi skenerů, nastavit ručně?"
-
-#: standalone/scannerdrake:131
-#, c-format
-msgid "Select a scanner model"
-msgstr "Zvolte si model skeneru"
-
-#: standalone/scannerdrake:132
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: standalone/scannerdrake:133
-#, c-format
-msgid "Detected model: %s"
-msgstr "Nalezen model: %s"
-
-#: standalone/scannerdrake:136
-#, c-format
-msgid "Port: %s"
-msgstr "Port: %s"
-
-#: standalone/scannerdrake:138 standalone/scannerdrake:141
-#, c-format
-msgid " (UNSUPPORTED)"
-msgstr " (NEPODPOROVÁN)"
-
-#: standalone/scannerdrake:144
-#, c-format
-msgid "The %s is not supported under Linux."
-msgstr "%s není podporován systémem Linux."
-
-#: standalone/scannerdrake:171 standalone/scannerdrake:185
-#, c-format
-msgid "Do not install firmware file"
-msgstr "Neinstalovat soubor s firmware"
-
-#: standalone/scannerdrake:175 standalone/scannerdrake:227
-#, c-format
-msgid ""
-"It is possible that your %s needs its firmware to be uploaded everytime when "
-"it is turned on."
-msgstr ""
-"Je možné, že váš %s potřebuje nahrát svůj firmware pokaždé, když je zapnut."
-
-#: standalone/scannerdrake:176 standalone/scannerdrake:228
-#, c-format
-msgid "If this is the case, you can make this be done automatically."
-msgstr "V takovém případě můžete toto zautomatizovat."
-
-#: standalone/scannerdrake:177 standalone/scannerdrake:231
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware file for your scanner so that it "
-"can be installed."
-msgstr ""
-"Chcete-li tak učinit, musíte dodat soubor s firmware pro váš skener, aby jej "
-"bylo možné instalovat."
-
-#: standalone/scannerdrake:178 standalone/scannerdrake:232
-#, 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 ""
-"Tento soubor lze nalézt na CD nebo disketě, která je dodávána s vaším "
-"skenerem, nebo na webových stránkách výrobce, a případně na vašem oddílu s "
-"Windows."
-
-#: standalone/scannerdrake:180 standalone/scannerdrake:239
-#, c-format
-msgid "Install firmware file from"
-msgstr "Instalovat firmware z"
-
-#: standalone/scannerdrake:200
-#, c-format
-msgid "Select firmware file"
-msgstr "Vyberte soubor s firmware"
-
-#: standalone/scannerdrake:203 standalone/scannerdrake:262
-#, c-format
-msgid "The firmware file %s does not exist or is unreadable!"
-msgstr "Soubor s firmware %s neexistuje nebo je nečitelný!"
-
-#: standalone/scannerdrake:226
-#, c-format
-msgid ""
-"It is possible that your scanners need their firmware to be uploaded "
-"everytime when they are turned on."
-msgstr ""
-"Je možné, že vaše skenery potřebují nahrát svůj firmware pokaždé, když jsou "
-"zapnuty."
-
-#: standalone/scannerdrake:230
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware files for your scanners so that it "
-"can be installed."
-msgstr ""
-"Chcete-li tak učinit, musíte dodat soubory s firmware pro vaše skenery, aby "
-"je bylo možné instalovat."
-
-#: standalone/scannerdrake:233
-#, 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 ""
-"Pokud jste již firmware vašeho skeneru instalovali, můžete zde firmware "
-"aktualizovat tím, že dodáte soubor s novější verzí firmware."
-
-#: standalone/scannerdrake:235
-#, c-format
-msgid "Install firmware for the"
-msgstr "Instalovat firmware pro"
-
-#: standalone/scannerdrake:258
-#, c-format
-msgid "Select firmware file for the %s"
-msgstr "Vyberte soubor s firmware pro %s"
-
-#: standalone/scannerdrake:276
-#, c-format
-msgid "Could not install the firmware file for the %s!"
-msgstr "Nelze instalovat soubor s firmware pro %s!"
-
-#: standalone/scannerdrake:289
-#, c-format
-msgid "The firmware file for your %s was successfully installed."
-msgstr "Soubor s firmware pro %s byl úspěšně nainstalován."
-
-#: standalone/scannerdrake:299
-#, c-format
-msgid "The %s is unsupported"
-msgstr "Skener %s není podporován"
-
-#: standalone/scannerdrake:304
-#, c-format
-msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the %s Control Center in Hardware section."
-msgstr ""
-"Skener %s musí být nastaven pomocí nástroje PrinterDrake.\n"
-"Spustit PrinterDrake lze z ovládacího centra %s v sekci Hardware."
-
-#: standalone/scannerdrake:322
-#, c-format
-msgid "Setting up kernel modules..."
-msgstr "Nastavuji moduly jádra..."
-
-#: standalone/scannerdrake:332 standalone/scannerdrake:339
-#: standalone/scannerdrake:369
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Automaticky detekovat dostupné porty"
-
-#: standalone/scannerdrake:334 standalone/scannerdrake:380
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Vyberte prosím zařízení, ke kterému je skener %s připojen"
-
-#: standalone/scannerdrake:335
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Pozn: Paralelní porty nepoužívají autodetekci)"
-
-#: standalone/scannerdrake:337 standalone/scannerdrake:382
-#, c-format
-msgid "choose device"
-msgstr "vyberte zařízení"
-
-#: standalone/scannerdrake:371
-#, c-format
-msgid "Searching for scanners..."
-msgstr "Vyhledávám skenery..."
-
-#: standalone/scannerdrake:407 standalone/scannerdrake:414
-#, c-format
-msgid "Attention!"
-msgstr "Pozor!"
-
-#: standalone/scannerdrake:408
-#, 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 ""
-"Váš %s nelze nastavit plně automaticky.\n"
-"\n"
-"Je zapotřebí ručních zásahů. Upravte prosím soubor s nastavením /etc/sane.d/%"
-"s.conf. "
-
-#: standalone/scannerdrake:409 standalone/scannerdrake:418
-#, c-format
-msgid ""
-"More info in the driver's manual page. Run the command \"man sane-%s\" to "
-"read it."
-msgstr ""
-"Více informací lze nalézt v manuálových stránkách k ovladači. Spusťte příkaz "
-"\"man sane-%s\" a přečtěte si je."
-
-#: standalone/scannerdrake:411 standalone/scannerdrake:420
-#, c-format
-msgid ""
-"After that you may scan documents using \"XSane\" or \"Kooka\" from "
-"Multimedia/Graphics in the applications menu."
-msgstr ""
-"Poté lze skenovat dokumenty pomocí aplikace \"XSane\" nebo \"Kooka\" z menu "
-"aplikací Multimédia/Grafika."
-
-#: standalone/scannerdrake:415
-#, c-format
-msgid ""
-"Your %s has been configured, but it is possible that additional manual "
-"adjustments are needed to get it to work. "
-msgstr ""
-"Váš %s byl nastaven, je však možné, že pro dosažení plné funkčnosti bude "
-"třeba dalších ručních zásahů. "
-
-#: standalone/scannerdrake:416
-#, 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 ""
-"Pokud se neobjeví v seznamu nastavených skenerů v hlavním okně nástroje "
-"Scannerdrake nebo pokud nepracuje správně, "
-
-#: standalone/scannerdrake:417
-#, c-format
-msgid "edit the configuration file /etc/sane.d/%s.conf. "
-msgstr "upravte soubor s nastavením /etc/sane.d/%s.conf. "
-
-#: standalone/scannerdrake:423
-#, 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 ""
-"Váš %s byl nastaven.\n"
-"Nyní lze skenovat dokumenty pomocí aplikace \"XSane\" nebo \"Kooka\" z menu "
-"aplikací Multimédia/Grafika."
-
-#: standalone/scannerdrake:448
-#, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr ""
-"V tomto počítači jsou dostupné skenery\n"
-"\n"
-"%s\n"
-
-#: standalone/scannerdrake:449
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr ""
-"V tomto počítači je dostupný skener\n"
-"\n"
-"%s\n"
-
-#: standalone/scannerdrake:452 standalone/scannerdrake:455
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "Na vašem počítači nebyly nalezeny žádné připojené skenery.\n"
-
-#: standalone/scannerdrake:469
-#, c-format
-msgid "Search for new scanners"
-msgstr "Vyhledání nový skenerů"
-
-#: standalone/scannerdrake:475
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Přidat skener ručně"
-
-#: standalone/scannerdrake:482
-#, c-format
-msgid "Install/Update firmware files"
-msgstr "Instalovat/Aktualizovat soubory s firmware"
-
-#: standalone/scannerdrake:488
-#, c-format
-msgid "Scanner sharing"
-msgstr "Sdílení skeneru"
-
-#: standalone/scannerdrake:547 standalone/scannerdrake:712
-#, c-format
-msgid "All remote machines"
-msgstr "Všechny vzdálené počítače"
-
-#: standalone/scannerdrake:559 standalone/scannerdrake:862
-#, c-format
-msgid "This machine"
-msgstr "Tento počítač"
-
-#: standalone/scannerdrake:599
-#, 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 ""
-"Zde můžete nastavit, zda skenery, co jsou připojeny k tomuto počítači, mohou "
-"být vzdáleně přístupné a také přesně z jakých počítačů."
-
-#: standalone/scannerdrake:600
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"Zde můžete rozhodnout o tom, zda vzdáleně přístupné skenery budou využitelné "
-"i na tomto počítači."
-
-#: standalone/scannerdrake:603
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr "Skenery na tomto počítači jsou přístupné i pro vzdálené počítače"
-
-#: standalone/scannerdrake:605
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Sdílet skener pro počítače: "
-
-#: standalone/scannerdrake:619
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Použít skenery na vzdáleném počítači"
-
-#: standalone/scannerdrake:622
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Použít skenery na počítači: "
-
-#: standalone/scannerdrake:649 standalone/scannerdrake:721
-#: standalone/scannerdrake:871
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Sdílení lokálních skenerů"
-
-#: standalone/scannerdrake:650
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr ""
-"Zde je seznam počítačů, na kterých jsou přístupné lokálně připojené skenery: "
-
-#: standalone/scannerdrake:661 standalone/scannerdrake:811
-#, c-format
-msgid "Add host"
-msgstr "Přidat počítač"
-
-#: standalone/scannerdrake:667 standalone/scannerdrake:817
-#, c-format
-msgid "Edit selected host"
-msgstr "Upravit vybraný počítač"
-
-#: standalone/scannerdrake:676 standalone/scannerdrake:826
-#, c-format
-msgid "Remove selected host"
-msgstr "Odstranit vybraný počítač"
-
-#: standalone/scannerdrake:700 standalone/scannerdrake:708
-#: standalone/scannerdrake:713 standalone/scannerdrake:759
-#: standalone/scannerdrake:850 standalone/scannerdrake:858
-#: standalone/scannerdrake:863 standalone/scannerdrake:909
-#, c-format
-msgid "Name/IP address of host:"
-msgstr "Název/IP adresa počítače:"
-
-#: standalone/scannerdrake:722 standalone/scannerdrake:872
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr "Zvolte počítač, na kterém budou přístupné lokální skenery:"
-
-#: standalone/scannerdrake:733 standalone/scannerdrake:883
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Musíte zadat název počítače nebo IP adresu.\n"
-
-#: standalone/scannerdrake:744 standalone/scannerdrake:894
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "Tento počítač je již na seznamu, nelze jej tedy přidat dvakrát.\n"
-
-#: standalone/scannerdrake:799
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Použití vzdálených skenerů"
-
-#: standalone/scannerdrake:800
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "Zde je seznam počítačů, ze kterých je možné využít skenery: "
-
-#: standalone/scannerdrake:957
-#, 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 ""
-"Chcete-li sdílet lokální skenery, musíte nainstalovat balíček saned.\n"
-"\n"
-"Chcete nainstalovat balíček saned?"
-
-#: standalone/scannerdrake:961 standalone/scannerdrake:965
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "Váš skener(y) nebude přístupný na síti."
-
-#: standalone/service_harddrake:113
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "Některá zařízení v třídě hardware \"%s\" byla odstraněna:\n"
-
-#: standalone/service_harddrake:114
-#, c-format
-msgid "- %s was removed\n"
-msgstr "- %s bylo odstraněno\n"
-
-#: standalone/service_harddrake:117
-#, c-format
-msgid "Some devices were added: %s\n"
-msgstr "Některá zařízení byla přidána: %s\n"
-
-#: standalone/service_harddrake:118
-#, c-format
-msgid "- %s was added\n"
-msgstr "- %s bylo přidáno\n"
-
-#: standalone/service_harddrake:235
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "Probíhá detekce hardware"
-
-#: standalone/service_harddrake_confirm:7
-#, c-format
-msgid "Hardware changes in \"%s\" class (%s seconds to answer)"
-msgstr "Změny v hardware ve třídě \"%s\" (%s sekund pro odpověď)"
-
-#: standalone/service_harddrake_confirm:8
-#, c-format
-msgid "Do you want to run the appropriate config tool?"
-msgstr "Chcete spustit odpovídající nástroj pro nastavení?"
-
-#: steps.pm:14
-#, c-format
-msgid "Language"
-msgstr "Výběr jazyka"
-
-#: steps.pm:15
-#, c-format
-msgid "License"
-msgstr "Licence"
-
-#: steps.pm:16
-#, c-format
-msgid "Configure mouse"
-msgstr "Nastavení myši"
-
-#: steps.pm:17
-#, c-format
-msgid "Hard drive detection"
-msgstr "Detekce pevných disků"
-
-#: steps.pm:18
-#, c-format
-msgid "Select installation class"
-msgstr "Volba typu instalace"
-
-#: steps.pm:19
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Výběr klávesnice"
-
-#: steps.pm:22
-#, c-format
-msgid "Format partitions"
-msgstr "Formátování oddílů"
-
-#: steps.pm:23
-#, c-format
-msgid "Choose packages to install"
-msgstr "Výběr balíčků pro instalaci"
-
-#: steps.pm:24
-#, c-format
-msgid "Install system"
-msgstr "Instalace systému"
-
-#: steps.pm:25
-#, c-format
-msgid "Administrator password"
-msgstr "Heslo správce systému"
-
-#: steps.pm:26
-#, c-format
-msgid "Add a user"
-msgstr "Přidání uživatele"
-
-#: steps.pm:27
-#, c-format
-msgid "Configure networking"
-msgstr "Nastavení sítí"
-
-#: steps.pm:28
-#, c-format
-msgid "Install bootloader"
-msgstr "Zaváděcí program"
-
-#: steps.pm:29
-#, c-format
-msgid "Configure X"
-msgstr "Nastavení X"
-
-#: steps.pm:31
-#, c-format
-msgid "Configure services"
-msgstr "Nastavení služeb"
-
-#: steps.pm:32
-#, c-format
-msgid "Install updates"
-msgstr "Aktualizace systému"
-
-#: steps.pm:33
-#, c-format
-msgid "Exit install"
-msgstr "Ukončení instalace"
-
-#: ugtk2.pm:899
+#: ugtk2.pm:788
#, c-format
msgid "Is this correct?"
msgstr "Je to správně?"
-#: ugtk2.pm:959
+#: ugtk2.pm:848
#, c-format
msgid "No file chosen"
msgstr "Nezvolen žádný soubor"
-#: ugtk2.pm:961
+#: ugtk2.pm:850
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Vybrali jste soubor, ne adresář"
-#: ugtk2.pm:963
+#: ugtk2.pm:852
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Vybrali jste adresář, ne soubor"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such directory"
msgstr "Adresář neexistuje"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such file"
msgstr "Soubor neexistuje"
-#: ugtk2.pm:1046
+#: ugtk2.pm:933
#, c-format
msgid "Expand Tree"
msgstr "Rozbalit větev"
-#: ugtk2.pm:1047
+#: ugtk2.pm:934
#, c-format
msgid "Collapse Tree"
msgstr "Sbalit větev"
-#: ugtk2.pm:1048
+#: ugtk2.pm:935
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "Přepnutí mezi abecedním a skupinovým řazením"
@@ -26930,520 +6759,3 @@ msgstr ""
#, c-format
msgid "Installation failed"
msgstr "Instalace selhala"
-
-#~ msgid ""
-#~ "Copyright (C) 2001-2002 by Mandriva \n"
-#~ "\n"
-#~ "\n"
-#~ " DUPONT Sebastien (original version)\n"
-#~ "\n"
-#~ " CHAUMETTE Damien <dchaumette@mandriva.com>\n"
-#~ "\n"
-#~ " VIGNAUD Thierry <tvignaud@mandriva.com>"
-#~ msgstr ""
-#~ "Copyright ©2001-2002 by Mandriva \n"
-#~ "\n"
-#~ "\n"
-#~ " DUPONT Sebastien (původní verze)\n"
-#~ "\n"
-#~ " CHAUMETTE Damien <dchaumette@mandriva.com>\n"
-#~ "\n"
-#~ " VIGNAUD Thierry <tvignaud@mandriva.com>"
-
-#~ msgid "click here if you are sure."
-#~ msgstr "klepněte zde, pokud jste si jisti."
-
-#~ msgid "here if no."
-#~ msgstr "zde pokud si nejste jisti."
-
-#~ msgid "Remove List"
-#~ msgstr "Odebrat seznam"
-
-#~ msgid "/_Upload the hardware list"
-#~ msgstr "/Poslat seznam _hardware"
-
-#~ msgid "Upload the hardware list"
-#~ msgstr "Poslat seznam hardware"
-
-#~ msgid "Account:"
-#~ msgstr "Účet:"
-
-#~ msgid "Hostname:"
-#~ msgstr "Jméno počítače:"
-
-#, fuzzy
-#~ msgid "Cancel setup"
-#~ msgstr "Zrušit"
-
-#~ msgid ""
-#~ " - Create Etherboot Enabled Boot Images:\n"
-#~ " \tTo boot a kernel via etherboot, a special kernel/initrd image "
-#~ "must be created.\n"
-#~ " \tmkinitrd-net does much of this work and drakTermServ is just a "
-#~ "graphical \n"
-#~ " \tinterface to help manage/customize these images. To create the "
-#~ "file \n"
-#~ " \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as "
-#~ "an include in \n"
-#~ " \tdhcpd.conf, you should create the etherboot images for at least "
-#~ "one full kernel."
-#~ msgstr ""
-#~ " - Vytváří zaváděcí obrazy pro Etherboot:\n"
-#~ " \tChcete-li zavést jádro pomocí etherboot, musíte vytvořit "
-#~ "zvláštní kombinaci jádra a initrd.\n"
-#~ " \tVětšinu práce za vás udělá mkinitrd-net a DrakTermServ je pouze "
-#~ "grafické rozhraní\n"
-#~ " \tpro pomoc se správou či přizpůsobením těchto obrazů. Pro "
-#~ "vytvoření\n"
-#~ " \tsouboru /etc/dhcpd.conf.etherboot-pcimap.include, který je "
-#~ "použit\n"
-#~ " \tpro dhcpd.conf, musíte vytvořit etherboot obraz alespoň "
-#~ "jednoho jádra."
-
-#~ msgid ""
-#~ " - Maintain /etc/dhcpd.conf:\n"
-#~ " \tTo net boot clients, each client needs a dhcpd.conf entry, "
-#~ "assigning an IP \n"
-#~ " \taddress and net boot images to the machine. drakTermServ helps "
-#~ "create/remove \n"
-#~ " \tthese entries.\n"
-#~ "\t\t\t\n"
-#~ " \t(PCI cards may omit the image - etherboot will request the "
-#~ "correct image. \n"
-#~ "\t\t\tYou should also consider that when etherboot looks for the images, "
-#~ "it expects \n"
-#~ "\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk."
-#~ "nbi).\n"
-#~ "\t\t\t \n"
-#~ " \tA typical dhcpd.conf stanza to support a diskless client looks "
-#~ "like:"
-#~ msgstr ""
-#~ " - Udržuje /etc/dhcpd.conf:\n"
-#~ " \tKaždý ze síťově zaváděných klientů potřebuje záznam v dhcpd."
-#~ "conf, který mu přiřadí IP adresu\n"
-#~ " \ta síťový zaváděcí obraz pro daný počítač. DrakTermServ umožní "
-#~ "tvorbu nebo odstranění těchto záznamů.\n"
-#~ "\t\t\t\n"
-#~ " \t(U PCI karet lze vynechat obraz - etherboot si vyžádá správný "
-#~ "obraz. Měli byste\n"
-#~ " \ttaké vzít v úvahu, že když hledá etherboot obrazy, očekává "
-#~ "názvy jako\n"
-#~ " \tboot-3c59x.nbi, a ne boot-3c59x.2.4.19-16mdk.nbi).\n"
-#~ "\t\t\t \n"
-#~ " \tTypický soubor dhcpd.conf podporující bezdiskové klienty vypadá "
-#~ "jako:"
-
-#~ msgid ""
-#~ " While you can use a pool of IP addresses, rather than setup a "
-#~ "specific entry for\n"
-#~ " a client machine, using a fixed address scheme facilitates using "
-#~ "the functionality\n"
-#~ " of client-specific configuration files that ClusterNFS provides.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#type' entry is only used by drakTermServ. Clients "
-#~ "can either be 'thin'\n"
-#~ " or 'fat'. Thin clients run most software on the server via "
-#~ "XDMCP, while fat clients run \n"
-#~ " most software on the client machine. A special inittab, %s is\n"
-#~ " written for thin clients. System config files xdm-config, kdmrc, "
-#~ "and gdm.conf are \n"
-#~ " modified if thin clients are used, to enable XDMCP. Since there "
-#~ "are security issues in \n"
-#~ " using XDMCP, hosts.deny and hosts.allow are modified to limit "
-#~ "access to the local\n"
-#~ " subnet.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#hdw_config' entry is also only used by drakTermServ. "
-#~ "Clients can either \n"
-#~ " be 'true' or 'false'. 'true' enables root login at the client "
-#~ "machine and allows local \n"
-#~ " hardware configuration of sound, mouse, and X, using the 'drak' "
-#~ "tools. This is enabled \n"
-#~ " by creating separate config files associated with the client's IP "
-#~ "address and creating \n"
-#~ " read/write mount points to allow the client to alter the file. "
-#~ "Once you are satisfied \n"
-#~ " with the configuration, you can remove root login privileges from "
-#~ "the client.\n"
-#~ "\t\t\t\n"
-#~ " Note: You must stop/start the server after adding or changing "
-#~ "clients."
-#~ msgstr ""
-#~ " I když můžete použít rozsah IP adres místo nastavení specifického "
-#~ "záznamu pro\n"
-#~ " počítač klienta, použití pevné adresy vám umožní zadat "
-#~ "funkcionalitu\n"
-#~ " do souborů s nastavením pro specifického klienta, které poskytuje "
-#~ "ClusterNFS.\n"
-#~ "\t\t\t\n"
-#~ " Poznámka: Položku \"#type\" používá pouze DrakTermServ. Klienti "
-#~ "mohou být buď \"thin\"\n"
-#~ " nebo \"fat\". Tencí klienti provozují většinu software na serveru "
-#~ "pomocí XDMCP, tlustí klienti provozují většinu\n"
-#~ " software na klientském počítači. Zvláštní init%s, je\n"
-#~ " vytvořen pro tenkého klienty. Systémové soubory s nastavením xdm-"
-#~ "config, kdmrc a gdm.conf jsou upraveny\n"
-#~ " při použití tenkých klientů tak, aby povolovaly XDMCP. Jelikož při "
-#~ "použití XDMCP vznikají bezpečnostní rizika,\n"
-#~ " jsou upraveny soubory hosts.deny a hosts.allow tak, aby omezily "
-#~ "přístup pouze z lokální sítě.\n"
-#~ "\t\t\t\n"
-#~ " Poznámka: Položka \"#hdw_config\" je použita pouze pro klienty a "
-#~ "může buď 'true' nebo 'false'.\n"
-#~ " Hodnota 'true' povoluje přihlášení uživatele root dovoluje mu také "
-#~ "změny\n"
-#~ "v lokálním hardware u zvuku, myši pomocí nástrojů sady 'drak'tools.\n"
-#~ " V tomto případě se vytvoří konfigurační soubor asociovaný s IP "
-#~ "adresou a vytvoří se\n"
-#~ " přípojný bod pro zápis, kam se tato konfigurace zapíše. Pokud "
-#~ "jste\n"
-#~ " s konfigurací spokojeni, můžete právo pro uživatele root odebrat.\n"
-#~ "\t\t\t\n"
-#~ " Poznámka: Po přidání nebo odebrání klientů musíte zastavit a znovu "
-#~ "spustit server."
-
-#~ msgid ""
-#~ " - Maintain /etc/exports:\n"
-#~ " \tClusternfs allows export of the root filesystem to diskless "
-#~ "clients. drakTermServ\n"
-#~ " \tsets up the correct entry to allow anonymous access to the root "
-#~ "filesystem from\n"
-#~ " \tdiskless clients.\n"
-#~ "\n"
-#~ " \tA typical exports entry for clusternfs is:\n"
-#~ " \t\t\n"
-#~ " \t/\t\t\t\t\t(ro,all_squash)\n"
-#~ " \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-#~ "\t\t\t\n"
-#~ " \tWith SUBNET/MASK being defined for your network."
-#~ msgstr ""
-#~ " - Udržuje /etc/exports:\n"
-#~ " \t\tClusterNFS dovoluje exportovat kořenový souborový systém na "
-#~ "bezdiskové klienty. DrakTermServ\n"
-#~ " \t\tnastaví odpovídající záznam tak, aby umožnil anonymní přístup "
-#~ "ke kořenovému souborovému systému\n"
-#~ " \t\tbezdiskovým klientům.\n"
-#~ "\n"
-#~ " \t\tTypický záznam pro export ClusterNFS vypadá:\n"
-#~ " \t\t\n"
-#~ " \t/\t\t\t\t\t(ro,all_squash)\n"
-#~ " \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-#~ "\t\t\t\n"
-#~ "\t\t\tSe SUBNET/MASK odpovídající vaší síti."
-
-#~ msgid ""
-#~ " - Maintain %s:\n"
-#~ " \tFor users to be able to log into the system from a diskless "
-#~ "client, their entry in\n"
-#~ " \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
-#~ " \thelps in this respect by adding or removing system users from "
-#~ "this file."
-#~ msgstr ""
-#~ " - Udržuje %s:\n"
-#~ " \tAby se mohli uživatelé přihlásit do systému z bezdiskových "
-#~ "stanic, musí být duplikován\n"
-#~ " \tjejich záznam z /etc/shadow v %s. DrakTermServ v tomto ohledu\n"
-#~ " \tpomáhá přidáním nebo odebráním uživatelů systému z tohoto "
-#~ "souboru."
-
-#~ msgid ""
-#~ " - Per client %s:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tdrakTermServ will help create these files."
-#~ msgstr ""
-#~ " - %s pro každého klienta:\n"
-#~ " \tSkrze ClusterNFS může mít každý bezdiskový klient své vlastní "
-#~ "unikátní soubory s nastavením\n"
-#~ " \tumístěné na serveru v kořenovém souborovém systému. "
-#~ "DrakTermServ bude v budoucnu pomáhat\n"
-#~ " \ts tvorbou těchto souborů."
-
-#~ msgid ""
-#~ " - Per client system configuration files:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tclients can customize files such as /etc/modules.conf, /etc/"
-#~ "sysconfig/mouse, \n"
-#~ " \t/etc/sysconfig/keyboard on a per-client basis.\n"
-#~ "\n"
-#~ " Note: Enabling local client hardware configuration does enable "
-#~ "root login to the terminal \n"
-#~ " server on each client machine that has this feature enabled. "
-#~ "Local configuration can be\n"
-#~ " turned back off, retaining the configuration files, once the "
-#~ "client machine is configured."
-#~ msgstr ""
-#~ " - Soubory s nastavením systému pro každého klienta:\n"
-#~ " \tSkrze clusternfs může mít každý bezdiskový klient své vlastní "
-#~ "unikátní soubory s nastavením\n"
-#~ " \tumístěné na serveru v kořenovém souborovém systému. "
-#~ "DrakTermServ bude v budoucnu pomáhat\n"
-#~ " \ts tvorbou těchto souborů,\n"
-#~ " \tnapř. /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
-#~ "keyboard zvlášť pro\n"
-#~ " \tkaždého klienta.\n"
-#~ "\n"
-#~ " Pozn. Povolení nastavení lokálního hardware umožní také "
-#~ "přihlášení uživatele root\n"
-#~ " na terminálový server se všech stanic, které mají tuto možnost "
-#~ "povolenu.\n"
-#~ " Lokální natavení hardware může být ale zakázáno, takže "
-#~ "konfigurační\n"
-#~ "soubory budou takové, jak byl klient nastaven."
-
-#~ msgid ""
-#~ " - /etc/xinetd.d/tftp:\n"
-#~ " \tdrakTermServ will configure this file to work in conjunction "
-#~ "with the images created\n"
-#~ " \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve "
-#~ "up the boot image to \n"
-#~ " \teach diskless client.\n"
-#~ "\n"
-#~ " \tA typical TFTP configuration file looks like:\n"
-#~ " \t\t\n"
-#~ " \tservice tftp\n"
-#~ "\t\t\t{\n"
-#~ " disable = no\n"
-#~ " socket_type = dgram\n"
-#~ " protocol = udp\n"
-#~ " wait = yes\n"
-#~ " user = root\n"
-#~ " server = /usr/sbin/in.tftpd\n"
-#~ " server_args = -s /var/lib/tftpboot\n"
-#~ " \t}\n"
-#~ " \t\t\n"
-#~ " \tThe changes here from the default installation are changing the "
-#~ "disable flag to\n"
-#~ " \t'no' and changing the directory path to /var/lib/tftpboot, "
-#~ "where mkinitrd-net\n"
-#~ " \tputs its images."
-#~ msgstr ""
-#~ " - /etc/xinetd.d/tftp:\n"
-#~ " \tDrakTermServ nastaví tento soubor tak, aby pracoval v souladu s "
-#~ "obrazy vytvořenými pomocí\n"
-#~ " \tmkinitrd-net a záznamy v /etc/dhcpd.conf tak, aby byl každému "
-#~ "bezdiskovému klientu poskytnut\n"
-#~ " \todpovídající zaváděcí obraz.\n"
-#~ "\n"
-#~ " \tTypický soubor s nastavením TFTP vypadá takto:\n"
-#~ " \t\n"
-#~ " \tservice tftp\n"
-#~ "\t\t\t{\n"
-#~ " disable = no\n"
-#~ " socket_type = dgram\n"
-#~ " protocol = udp\n"
-#~ " wait = yes\n"
-#~ " user = root\n"
-#~ " server = /usr/sbin/in.tftpd\n"
-#~ " server_args = -s /var/lib/tftpboot\n"
-#~ " \t}\n"
-#~ " \t\t\n"
-#~ " \t\tZměny oproti výchozí instalaci zahrnují změnu příznaku "
-#~ "disable na\n"
-#~ " \t\t'no' a změnu cesty adresáře na /var/lib/tftpboot, kam ukládá\n"
-#~ " \t\tmkinitrd-net své obrazy."
-
-#~ msgid ""
-#~ " - Create etherboot floppies/CDs:\n"
-#~ " \tThe diskless client machines need either ROM images on the NIC, "
-#~ "or a boot floppy\n"
-#~ " \tor CD to initiate the boot sequence. drakTermServ will help "
-#~ "generate these\n"
-#~ " \timages, based on the NIC in the client machine.\n"
-#~ " \t\t\n"
-#~ " \tA basic example of creating a boot floppy for a 3Com 3c509 "
-#~ "manually:\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-#~ msgstr ""
-#~ " - Vytváří diskety či CD s etherboot:\n"
-#~ " \tBezdiskové klientské počítače potřebují buď obrazy ROM na "
-#~ "síťové kartě nebo\n"
-#~ " \t zaváděcí disketu či CD, aby mohly zahájit zaváděcí sekvenci. "
-#~ "drakTermServ pomůže\n"
-#~ " \ts vygenerováním těchto obrazů založených na síťové kartě v "
-#~ "klientském počítači.\n"
-#~ " \t\t\n"
-#~ " \tJednoduchý příklad ručního vytvoření zaváděcí diskety pro kartu "
-#~ "3Com 3c509:\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-
-#~ msgid "Configuration changed - restart clusternfs/dhcpd?"
-#~ msgstr "Změnilo se nastavení - restartovat clusternfs/dhcpd?"
-
-#~ msgid ""
-#~ "The following media have been found and will be used during install: %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do you have a supplementary installation media to configure?"
-#~ msgstr ""
-#~ "Byla nalezena následující média, která budou použita během instalace: %"
-#~ "s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Máte nějaká dodatečná instalační média, která chcete nastavit?"
-
-#~ msgid "Create PXE images."
-#~ msgstr "Vytvářet obrazy PXE."
-
-#~ msgid ""
-#~ "Allow an ordinary user to mount the file system. The\n"
-#~ "name of the mounting user is written to mtab so that he can unmount the "
-#~ "file\n"
-#~ "system again. This option implies the options noexec, nosuid, and nodev\n"
-#~ "(unless overridden by subsequent options, as in the option line\n"
-#~ "user,exec,dev,suid )."
-#~ msgstr ""
-#~ "Povolí běžným uživatelům připojovat souborové systémy. Jméno uživatele,\n"
-#~ "který provedl připojení je zapsáno do souboru mtab, aby mohl souborový "
-#~ "systém\n"
-#~ "následně také odpojit. Tato volba zahrnuje volby noexec, nosuid a nodev\n"
-#~ "(pokud nejsou přepsány jiný volbami, jako je user,exec,dev,suid )."
-
-#~ msgid "Unknown Model"
-#~ msgstr "Neznámý model"
-
-#~ msgid ""
-#~ "Either with the newer HPLIP which allows printer maintenance through the "
-#~ "easy-to-use graphical application \"Toolbox\" and four-edge full-bleed on "
-#~ "newer PhotoSmart models "
-#~ msgstr ""
-#~ "Buď můžete zvolit novější HPLIP, který umožňuje spravovat tiskárnu pomocí "
-#~ "jednoduše použitelné grafické aplikace \"Toolbox\" a plně barevný tisk "
-#~ "bez okrajů na všech čtyřech stranách na novějších modelech tiskáren "
-#~ "PhotoSmart "
-
-#~ msgid ""
-#~ "or with the older HPOJ which allows only scanner and memory card access, "
-#~ "but could help you in case of failure of HPLIP. "
-#~ msgstr ""
-#~ "nebo starší HPOJ, který umožňuje pouze skenování a přístup ke čtečkám "
-#~ "paměťových karet, ale může fungovat tam, kde software HPLIP selže. "
-
-#~ msgid "HPOJ"
-#~ msgstr "HPOJ"
-
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3000/3200/3300/4345 with scanner, DeskJet 450, "
-#~ "Sony IJP-V100), an HP PhotoSmart or an HP LaserJet 2200?"
-#~ msgstr ""
-#~ "Je vaše tiskárna multifunkční zařízení od HP nebo od Sony (OfficeJet, "
-#~ "PSC, LaserJet 1100/1200/1220/3000/3200/3300/4345 se skenerem, DeskJet "
-#~ "450, Sony IJP-V100) nebo HP PhotoSmart či HP LaserJet 2200?"
-
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Instaluji balíčky pro mtools..."
-
-#~ msgid "Photo memory card access on the %s will not be possible."
-#~ msgstr "Přístup k paměťové kartě s fotkami nebude na zařízení %s možný."
-
-#~ msgid "Scanning on your HP multi-function device"
-#~ msgstr "Vyhledávám multifunkční zařízení od HP"
-
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr "Přístup k paměťové kartě na multifunkčním zařízení od HP"
-
-#~ msgid "Printing/Scanning/Photo Cards on \"%s\""
-#~ msgstr "Tisk/Skenování/Foto karty na \"%s\""
-
-#~ msgid "Printing/Scanning on \"%s\""
-#~ msgstr "Tisk/Skenování na \"%s\""
-
-#~ msgid "Printing/Photo Card Access on \"%s\""
-#~ msgstr "Tisk/Přístup k foto kartám na \"%s\""
-
-#~ msgid ""
-#~ "Your multi-function device was configured automatically to be able to "
-#~ "scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to "
-#~ "specify the scanner when you have more than one) from the command line or "
-#~ "with the graphical interfaces \"xscanimage\" or \"xsane\". If you are "
-#~ "using the GIMP, you can also scan by choosing the appropriate point in "
-#~ "the \"File\"/\"Acquire\" menu. Call also \"man scanimage\" on the command "
-#~ "line to get more information.\n"
-#~ "\n"
-#~ "You do not need to run \"scannerdrake\" for setting up scanning on this "
-#~ "device, you only need to use \"scannerdrake\" if you want to share the "
-#~ "scanner on the network."
-#~ msgstr ""
-#~ "Multifunkční zařízení od HP bylo automaticky nastaveno pro možnost "
-#~ "skenování. Nyní lze skenovat z příkazového řádku příkazem \"scanimage"
-#~ "\" (příkazem \"scanimage -d hp:%s\" zvolíte požadovaný skener, pokud jich "
-#~ "máte více) nebo z grafického prostředí pomocí \"xscanimage\" nebo \"xsane"
-#~ "\". Pokud používáte program GIMP, můžete také skenovat výběrem z menu "
-#~ "\"Soubor\"/\"Získat\". Více informací získáte také příkazem \"man "
-#~ "scanimage\" spuštěným na příkazové řádce.\n"
-#~ "\n"
-#~ "Pro nastavení skenování pomocí tohoto zařízení není nutné použít aplikaci "
-#~ "\"scannerdrake\". Aplikaci \"scannerdrake\" musíte použít pouze v "
-#~ "případě, chcete-li sdílet váš skener na síti."
-
-#~ msgid ""
-#~ "Your printer was configured automatically to give you access to the photo "
-#~ "card drives from your PC. Now you can access your photo cards using the "
-#~ "graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -"
-#~ "> \"MTools File Manager\") or the command line utilities \"mtools"
-#~ "\" (enter \"man mtools\" on the command line for more info). You find the "
-#~ "card's file system under the drive letter \"p:\", or subsequent drive "
-#~ "letters when you have more than one HP printer with photo card drives. In "
-#~ "\"MtoolsFM\" you can switch between drive letters with the field at the "
-#~ "upper-right corners of the file lists."
-#~ msgstr ""
-#~ "Vaše tiskárna byla automaticky nastavena tak, že máte ze svého PC přístup "
-#~ "ke čtečce karty. Nyní můžete přistupovat ke svým fotografickým kartám "
-#~ "pomocí grafického programu \"MtoolsFM\" (Menu: \"Aplikace\" -> "
-#~ "\"Souborové nástroje\" -> \"Správce souborů MTools\") nebo z příkazové "
-#~ "řádky pomocí nástroje \"mtools\" (zadejte \"man mtools\", chcete-li "
-#~ "získat více informací). Souborový systém vaši karty naleznete pod "
-#~ "písmenem zařízení \"p:\", případně dalších písmenech, pokud máte více "
-#~ "tiskáren HP se čtečkou karet. V programu \"MtoolsFM\" můžete přepínat "
-#~ "mezi písmeny zařízení pomocí políčka v pravém horním rohu každého výčtu "
-#~ "souborů."
-
-#~ msgid "Custom setup/crontab entry:"
-#~ msgstr "Vlastní nastavení/záznam v tabulce crontab:"
-
-#~ msgid "Note that currently all 'net' media also use the hard drive."
-#~ msgstr "V tuto chvíli také všechna 'síťová' média používají pevný disk."
-
-#~ msgid ""
-#~ "Before installing any fonts, be sure that you have the right to use and "
-#~ "install them on your system.\n"
-#~ "\n"
-#~ "-You can install the fonts the normal way. In rare cases, bogus fonts may "
-#~ "hang up your X Server."
-#~ msgstr ""
-#~ "Před instalací písem se ujistěte, že máte potřebná práva na jejich "
-#~ "instalací a používání na vašem systému.\n"
-#~ "\n"
-#~ "- Písma lze instalovat běžným způsobem. Ve výjimečných případech může "
-#~ "špatné písmo způsobit zamrznutí X serveru."
-
-#~ msgid ""
-#~ "%s cannot be displayed \n"
-#~ ". No Help entry of this type\n"
-#~ msgstr ""
-#~ "%s nelze zobrazit.\n"
-#~ "K této položce není žádná nápověda\n"
-
-#~ msgid ""
-#~ "\n"
-#~ "Please check all options that you need.\n"
-#~ msgstr ""
-#~ "\n"
-#~ "Zvolte prosím všechny volby, které potřebujete.\n"
-
-#~ msgid ""
-#~ "These options can backup and restore all files in your /etc directory.\n"
-#~ msgstr "Tato volba zazálohuje a obnoví všechny soubory v adresáři /etc.\n"
-
-#~ msgid ""
-#~ "With this option you will be able to restore any version\n"
-#~ " of your /etc directory."
-#~ msgstr "Tato volba dovolí obnovit různé verze adresáře /etc."
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 3a6ac0f6b..7c1d337fb 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -5,8 +5,8 @@
msgid ""
msgstr ""
"Project-Id-Version: Mandriva DrakX.cy\n"
-"POT-Creation-Date: 2006-03-05 18:57+0800\n"
-"PO-Revision-Date: 2006-03-02 21:50-0000\n"
+"POT-Creation-Date: 2007-03-21 12:10+0100\n"
+"PO-Revision-Date: 2007-01-14 17:31-0000\n"
"Last-Translator: Rhoslyn Prys <post@meddal.com>\n"
"Language-Team: Cymraeg <post@meddal.com>\n"
"MIME-Version: 1.0\n"
@@ -16,838 +16,20 @@ msgstr ""
"X-Poedit-Country: UNITED KINGDOM\n"
"X-Poedit-SourceCharset: utf-8\n"
-#: ../move/move.pm:292
-#, c-format
-msgid "Which USB key do you want to format?"
-msgstr "Pa allwedd USB hoffech ei fformatio?"
-
-#: ../move/move.pm:296
-#, c-format
-msgid ""
-"You are about to format a USB device \"%s\". This will delete all data on "
-"it.\n"
-"Make sure that the selected device is the USB key you want to format. \n"
-"We advise you to unplug all other USB storage devices while doing this "
-"operation."
-msgstr ""
-"Rydych ar fin fformatio dyfais USB \"%s\". Bydd hyn yn dileu'r holl ddata "
-"sydd \n"
-"arno. Gwnewch yn siŵr fod mai hwn yw'r allwedd USB rydych am ei fformatio.\n"
-"Rydym yn eich cynghori i dynnu'r holl ddyfeisiadau storio USB eraill wrth "
-"wneud hyn. "
-
-#: ../move/move.pm:448 ../move/move.pm:460
-#, c-format
-msgid "Key is not writable"
-msgstr "Nid yw'r allwedd yn ysgrifennadwy"
-
-#: ../move/move.pm:450
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-"Mae'r allwedd USB i weld a'i ddiogelu rhag ysgrifennu ymlaen.\n"
-"Tynnwch yr allwedd, diffodd y diogelu, ai ailosod."
-
-#: ../move/move.pm:452
-#, c-format
-msgid "Retry"
-msgstr "Ceisio eto"
-
-#: ../move/move.pm:453 ../move/move.pm:497
-#, c-format
-msgid "Continue without USB key"
-msgstr "Parhau heb allwedd USB"
-
-#: ../move/move.pm:462
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled, but we can not safely\n"
-"unplug it now.\n"
-"\n"
-"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandriva Move again."
-msgstr ""
-"Mae'r allwedd USB i weld a'i ddiogelu rhag ysgrifennu ymlaen, ond nid oes.\n"
-"modd ei dynnu'n ddiogel.\n"
-"\n"
-"\n"
-"Cliciwch y botwm i ailgychwyn y peiriant, tynnwch yr allwedd, diffodd y\n"
-"diogelu, ailosod y plwg a chychwyn Mandriva Move eto."
-
-#: ../move/move.pm:468 help.pm:410 install_steps_interactive.pm:1303
-#, c-format
-msgid "Reboot"
-msgstr "Ailgychwyn"
-
-#: ../move/move.pm:473
-#, c-format
-msgid ""
-"Your USB key does not have any valid Windows (FAT) partitions.\n"
-"We need one to continue (beside, it's more standard so that you\n"
-"will be able to move and access your files from machines\n"
-"running Windows). Please plug in an USB key containing a\n"
-"Windows partition instead.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-"Does gan eich allwedd USB raniadau Windows (FAT) dilys\n"
-"Rhaid cael un i barhau (mae'n fwy safonol i'ch caniatáu i\n"
-"chi symud a chael mynediad i ffeiliau o beiriannau sy'n rhedeg\n"
-"Windows). Rhowch allwedd USB yn cynnwys rhaniad Windows\n"
-"yn ei le nawr.\n"
-"\n"
-"\n"
-"Mae modd mynd yn eich blaen heb allwedd USB - bydd dal\n"
-"modd i chi ddefnyddio Mandriva Move fel System Weithredu\n"
-"Mandriva hyfyw."
-
-#: ../move/move.pm:483
-#, c-format
-msgid ""
-"We did not detect any USB key on your system. If you\n"
-"plug in an USB key now, Mandriva Move will have the ability\n"
-"to transparently save the data in your home directory and\n"
-"system wide configuration, for next boot on this computer\n"
-"or another one. Note: if you plug in a key now, wait several\n"
-"seconds before detecting again.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-"Nid ydym wedi canfod allwedd USB ar eich system Os wnewch\n"
-"rhoi'r allwedd USB yn ei le, mae gan Mandriva Move y gallu i\n"
-"gadw eich data yn eich cyfeiriadur cartref a ffurfweddiad system\n"
-"gyfan, ar gyfer ail gychwyn y cyfrifiadur hwn neu un arall\n"
-"Sylwch: os wnewch chi roi'r allwedd yn ei le nawr, arhoswch\n"
-"eiliadau cyn canfod eto.\n"
-"\n"
-"\n"
-"Mae modd mynd yn eich blaen heb allwedd USB - bydd dal\n"
-"modd i chi ddefnyddio Mandriva Move fel system weithredu\n"
-"Mandriva hyfyw."
-
-#: ../move/move.pm:494
-#, c-format
-msgid "Need a key to save your data"
-msgstr "Mae angen allwedd i gadw eich data"
-
-#: ../move/move.pm:496
-#, c-format
-msgid "Detect USB key again"
-msgstr "Canfod allwedd USB eto"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Setting up USB key"
-msgstr "Gosod allwedd USB"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Arhoswch, gosod ffeiliau caniatáu'r system ar allwedd USB..."
-
-#: ../move/move.pm:546
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
-"Rhowch eich gwybodaeth bersonol, bydd y cyfrinair yn cael ei ddefnyddio ar "
-"gyfer yr arbedwr sgrin"
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Auto configuration"
-msgstr "Awto ffurfweddiad "
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Arhoswch, canfod a ffurfweddu dyfeisiau..."
-
-#: ../move/move.pm:604 ../move/move.pm:660 ../move/move.pm:664
-#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/interactive.pm:231
-#: diskdrake/interactive.pm:244 diskdrake/interactive.pm:405
-#: diskdrake/interactive.pm:423 diskdrake/interactive.pm:560
-#: diskdrake/interactive.pm:565 diskdrake/smbnfs_gtk.pm:41 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:52 fsedit.pm:218 install_any.pm:1775
-#: install_any.pm:1827 install_steps.pm:81 install_steps_interactive.pm:37
-#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
-#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
-#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
-#: network/netconnect.pm:837 network/netconnect.pm:866
-#: network/netconnect.pm:965 network/netconnect.pm:969
-#: network/netconnect.pm:973 network/netconnect.pm:978
-#: network/netconnect.pm:1123 network/netconnect.pm:1127
-#: network/netconnect.pm:1246 network/netconnect.pm:1251
-#: network/netconnect.pm:1271 network/netconnect.pm:1428
-#: network/thirdparty.pm:321 network/thirdparty.pm:328
-#: network/thirdparty.pm:372 network/thirdparty.pm:374
-#: network/thirdparty.pm:395 network/thirdparty.pm:419
-#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
-#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
-#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
-#: printer/printerdrake.pm:450 printer/printerdrake.pm:514
-#: printer/printerdrake.pm:686 printer/printerdrake.pm:690
-#: printer/printerdrake.pm:772 printer/printerdrake.pm:1555
-#: printer/printerdrake.pm:1603 printer/printerdrake.pm:1640
-#: printer/printerdrake.pm:1685 printer/printerdrake.pm:1689
-#: printer/printerdrake.pm:1703 printer/printerdrake.pm:1795
-#: printer/printerdrake.pm:1876 printer/printerdrake.pm:1880
-#: printer/printerdrake.pm:1884 printer/printerdrake.pm:1933
-#: printer/printerdrake.pm:1991 printer/printerdrake.pm:1995
-#: printer/printerdrake.pm:2009 printer/printerdrake.pm:2129
-#: printer/printerdrake.pm:2133 printer/printerdrake.pm:2176
-#: printer/printerdrake.pm:2249 printer/printerdrake.pm:2267
-#: printer/printerdrake.pm:2276 printer/printerdrake.pm:2285
-#: printer/printerdrake.pm:2296 printer/printerdrake.pm:2360
-#: printer/printerdrake.pm:2512 printer/printerdrake.pm:2947
-#: printer/printerdrake.pm:3231 printer/printerdrake.pm:3237
-#: printer/printerdrake.pm:3802 printer/printerdrake.pm:3806
-#: printer/printerdrake.pm:3810 printer/printerdrake.pm:4206
-#: printer/printerdrake.pm:4446 printer/printerdrake.pm:4474
-#: printer/printerdrake.pm:4551 printer/printerdrake.pm:4617
-#: printer/printerdrake.pm:4737 standalone/drakTermServ:422
-#: standalone/drakTermServ:492 standalone/drakTermServ:501
-#: standalone/drakTermServ:812 standalone/drakTermServ:819
-#: standalone/drakTermServ:845 standalone/drakTermServ:894
-#: standalone/drakTermServ:1146 standalone/drakTermServ:1181
-#: standalone/drakTermServ:1634 standalone/drakTermServ:1643
-#: standalone/drakTermServ:1651 standalone/drakTermServ:1656
-#: standalone/drakTermServ:1664 standalone/drakTermServ:1680
-#: standalone/drakTermServ:1700 standalone/drakauth:36
-#: standalone/drakbackup:511 standalone/drakbackup:625
-#: standalone/drakbackup:1110 standalone/drakbackup:1141
-#: standalone/drakbackup:1332 standalone/drakbackup:1664
-#: standalone/drakbackup:1820 standalone/drakbackup:2548
-#: standalone/drakbackup:4463 standalone/drakclock:124
-#: standalone/drakconnect:676 standalone/drakconnect:680
-#: standalone/drakconnect:685 standalone/drakconnect:700
-#: standalone/drakfont:209 standalone/drakfont:222 standalone/drakfont:260
-#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakhosts:98
-#: standalone/drakhosts:246 standalone/drakhosts:253 standalone/drakhosts:260
-#: standalone/draknfs:306 standalone/draknfs:609 standalone/draknfs:616
-#: standalone/draknfs:623 standalone/drakroam:33 standalone/draksambashare:384
-#: standalone/draksambashare:388 standalone/draksambashare:391
-#: standalone/draksambashare:394 standalone/draksambashare:453
-#: standalone/draksambashare:477 standalone/draksambashare:551
-#: standalone/draksambashare:633 standalone/draksambashare:700
-#: standalone/draksambashare:800 standalone/draksambashare:807
-#: standalone/draksambashare:942 standalone/draksambashare:1133
-#: standalone/draksambashare:1142 standalone/draksambashare:1151
-#: standalone/draksambashare:1172 standalone/draksambashare:1181
-#: standalone/draksambashare:1190 standalone/draksambashare:1210
-#: standalone/draksambashare:1218 standalone/draksambashare:1230
-#: standalone/draksplash:162 standalone/drakxtv:107
-#: standalone/finish-install:79 standalone/logdrake:171
-#: standalone/logdrake:439 standalone/logdrake:444 standalone/scannerdrake:59
-#: standalone/scannerdrake:202 standalone/scannerdrake:261
-#: standalone/scannerdrake:732 standalone/scannerdrake:743
-#: standalone/scannerdrake:882 standalone/scannerdrake:893
-#: standalone/scannerdrake:963 wizards.pm:95 wizards.pm:99 wizards.pm:121
-#, c-format
-msgid "Error"
-msgstr "Gwall"
-
-#: ../move/move.pm:605 install_steps.pm:82
-#, c-format
-msgid ""
-"An error occurred, but I do not know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Digwyddodd gwall ond wn i ddim sut i ddelio ag ef yn dwt.\n"
-"Mae'n beryglus i barhau."
-
-#: ../move/move.pm:660 install_steps_interactive.pm:37
-#, c-format
-msgid "An error occurred"
-msgstr "Digwyddodd gwall"
-
-#: ../move/move.pm:666
-#, c-format
-msgid ""
-"An error occurred:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"This may come from corrupted system configuration files\n"
-"on the USB key, in this case removing them and then\n"
-"rebooting Mandriva Move would fix the problem. To do\n"
-"so, click on the corresponding button.\n"
-"\n"
-"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-"Digwyddodd gwall:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"Gall hyn fod wedi dod o ffeiliau ffurfweddu'r system\n"
-"ar yr allwedd USB, yn yr achos yma bydd eu tynnu ac\n"
-"ailgychwyn Mandriva Move yn datrys y broblem. I wneud\n"
-"hynny, cliciwch y botwm perthnasol.\n"
-"\n"
-"\n"
-"Efallai byddwch am ailgychwyn a thynnu'r allwedd USB,\n"
-"archwilio ei gynnwys o dan system weithredu arall, neu gael\n"
-"golwg ar ffeiliau cofnod yng nghonsol #3 a #4 i geisio\n"
-"dyfalu beth sy'n digwydd."
-
-#: ../move/move.pm:681
-#, c-format
-msgid "Remove system config files"
-msgstr "Tynnu ffeiliau ffurfweddu'r system"
-
-#: ../move/move.pm:682
-#, c-format
-msgid "Simply reboot"
-msgstr "Ailgychwyn"
-
-#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr "Dim ond heb gefnogaeth CD-ROM mae modd rhedeg"
-
-#: ../move/tree/mdk_totem:71
-#, c-format
-msgid "Kill those programs"
-msgstr "Lladd y rhaglenni hyn"
-
-#: ../move/tree/mdk_totem:72
-#, c-format
-msgid "No CDROM support"
-msgstr "Dim cefnogaeth CD-ROM"
-
-#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1062 diskdrake/interactive.pm:1072
-#: diskdrake/interactive.pm:1125
-#, c-format
-msgid "Read carefully!"
-msgstr "Darllenwch yn ofalus!"
-
-#: ../move/tree/mdk_totem:77
-#, c-format
-msgid ""
-"You can not use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-"Methu defnyddio CD-ROM pan fo'r rhaglenni canlynol yn rhedeg:\n"
-"%s"
-
-#: ../move/tree/mdk_totem:101
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr "Copïo i'r cof i gael tynnu'r CD-ROM"
-
-#: Xconfig/card.pm:13
-#, c-format
-msgid "256 kB"
-msgstr "256 kB"
-
-#: Xconfig/card.pm:14
-#, c-format
-msgid "512 kB"
-msgstr "512 kB"
-
-#: Xconfig/card.pm:15
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
-
-#: Xconfig/card.pm:16
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
-
-#: Xconfig/card.pm:17
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
-
-#: Xconfig/card.pm:18
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
-
-#: Xconfig/card.pm:19
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: Xconfig/card.pm:20
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
-
-#: Xconfig/card.pm:21
-#, c-format
-msgid "64 MB or more"
-msgstr "16 MB neu fwy"
-
-#: Xconfig/card.pm:162
-#, c-format
-msgid "X server"
-msgstr "Gweinydd X"
-
-#: Xconfig/card.pm:163
-#, c-format
-msgid "Choose an X server"
-msgstr "Dewiswch weinydd X"
-
-#: Xconfig/card.pm:195
-#, c-format
-msgid "Multi-head configuration"
-msgstr " ffurfweddiad amlben"
-
-#: Xconfig/card.pm:196
-#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Mae eich system yn cynnal ffurfweddiad amlben.\n"
-"Beth hoffech ei wneud?"
-
-#: Xconfig/card.pm:265
-#, c-format
-msgid "Can not install Xorg package: %s"
-msgstr "Methu gosod pecyn Xorg: %s"
-
-#: Xconfig/card.pm:275
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Dewiswch faint cof eich cerdyn graffeg"
-
-#: Xconfig/card.pm:371
-#, c-format
-msgid "Xorg configuration"
-msgstr "Ffurfweddiad Xorg"
-
-#: Xconfig/card.pm:373
-#, c-format
-msgid "Which configuration of Xorg do you want to have?"
-msgstr "Pa ffurfweddiad Xorg hoffech ei gael?"
-
-#: Xconfig/card.pm:406
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Ffurfweddu pob pen yn annibynnol"
-
-#: Xconfig/card.pm:407
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Defnyddiwch estyniad Xinerama"
-
-#: Xconfig/card.pm:412
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Ffurfweddu cerdyn \"%s\" %s yn unig"
-
-#: Xconfig/card.pm:424 Xconfig/various.pm:23
-#, c-format
-msgid "Xorg %s"
-msgstr "Xorg: %s"
-
-#: Xconfig/card.pm:431 Xconfig/various.pm:22
-#, c-format
-msgid "Xorg %s with 3D hardware acceleration"
-msgstr "Xorg %s gyda chyflymu caledwedd 3D"
-
-#: Xconfig/card.pm:433
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with Xorg %s."
-msgstr "Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda Xorg %s"
-
-#: Xconfig/card.pm:439
-#, c-format
-msgid "Xorg %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "Xorg %s gyda chyflymu caledwedd 3D ARBROFOL"
-
-#: Xconfig/card.pm:441
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with Xorg %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda Xorg %s \n"
-"SYLWER CEFNOGAETH ARBROFOL YW HON AC FE ALL RHEWI EICH CYFRIFIADUR."
-
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:1021
-#, c-format
-msgid "Custom"
-msgstr "Arddull"
-
-#: Xconfig/main.pm:127 any.pm:742 diskdrake/dav.pm:26 help.pm:15
-#: install_steps_interactive.pm:1303 printer/printerdrake.pm:882
-#: printer/printerdrake.pm:899 printer/printerdrake.pm:4546
-#: printer/printerdrake.pm:5010 standalone/drakhosts:263
-#: standalone/drakroam:230 standalone/draksplash:93 standalone/logdrake:176
-#: standalone/net_applet:103 standalone/scannerdrake:494
-#, c-format
-msgid "Quit"
-msgstr "Gadael"
-
-#: Xconfig/main.pm:129
-#, c-format
-msgid "Graphic Card"
-msgstr "Cerdyn Graffeg"
-
-#: Xconfig/main.pm:132 Xconfig/monitor.pm:110
-#, c-format
-msgid "Monitor"
-msgstr "Monitor"
-
-#: Xconfig/main.pm:135 Xconfig/resolution_and_depth.pm:289
-#, c-format
-msgid "Resolution"
-msgstr "Cydraniad"
-
-#: Xconfig/main.pm:138
-#, c-format
-msgid "Test"
-msgstr "Prawf"
-
-#: Xconfig/main.pm:143 diskdrake/dav.pm:65 diskdrake/interactive.pm:449
-#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
-#: printer/printerdrake.pm:1112 standalone/drakfont:493
-#: standalone/drakfont:548
-#, c-format
-msgid "Options"
-msgstr "Dewisiadau"
-
-#: Xconfig/main.pm:178
-#, c-format
-msgid "Your Xorg configuration file is broken, we will ignore it."
-msgstr "Mae eich ffeil ffurfweddu Xorg wedi torri, byddwn yn ei anwybyddu."
-
-#: Xconfig/main.pm:196
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Cadw'r newid?\n"
-"Y ffurfweddiad presennol yw:\n"
-"\n"
-"%s"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor for head #%d"
-msgstr "Dewiswch fonitor ar gyfer #%d"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor"
-msgstr "Dewiswch fonitor"
-
-#: Xconfig/monitor.pm:117
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n Play"
-
-#: Xconfig/monitor.pm:118 mouse.pm:49
-#, c-format
-msgid "Generic"
-msgstr "Generig"
-
-#: Xconfig/monitor.pm:119 standalone/drakconnect:591 standalone/harddrake2:54
-#: standalone/harddrake2:88
-#, c-format
-msgid "Vendor"
-msgstr "Gwerthwr"
-
-#: Xconfig/monitor.pm:129
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "Methodd ymholiad Plug'n Play. Dewiswch y dangosydd cywir"
-
-#: Xconfig/monitor.pm:137
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Y ddau baramedr pwysig yw'r raddfa adnewyddu fertigol, sef y raddfa mae'r\n"
-"holl sgrin yn cael ei adnewyddu, ac yn fwyaf pwysig y raddfa cydamseru\n"
-"llorweddol, sef y raddfa mae'r llinellau sganio'n cael eu dangos.\n"
-"\n"
-"Mae'n BWYSIG IAWN nad ydych yn enwi monitor gyda graddfa cydamseru\n"
-"sydd tu hwnt i allu eich monitor: mae modd difrodi eich monitor drwy wneud "
-"hynny.\n"
-"Os oes gennych amheuaeth, dewiswch raddfa is."
-
-#: Xconfig/monitor.pm:144
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Graddfa adfywio lorweddol"
-
-#: Xconfig/monitor.pm:145
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Graddfa adfywio fertigol"
-
-#: Xconfig/resolution_and_depth.pm:10
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 lliw (8 did)"
-
-#: Xconfig/resolution_and_depth.pm:11
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil o liwiau (15 did)"
-
-#: Xconfig/resolution_and_depth.pm:12
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil o liwiau (16 did)"
-
-#: Xconfig/resolution_and_depth.pm:13
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 miliwn o liwiau (24 did)"
-
-#: Xconfig/resolution_and_depth.pm:127
-#, c-format
-msgid "Resolutions"
-msgstr "Cyfraniadau"
-
-#: Xconfig/resolution_and_depth.pm:311 diskdrake/hd_gtk.pm:336
-#: install_steps_gtk.pm:288 mouse.pm:168 services.pm:162
-#: standalone/drakbackup:1606 standalone/drakperm:250
-#, c-format
-msgid "Other"
-msgstr "Arall"
-
-#: Xconfig/resolution_and_depth.pm:360
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Dewiswch y cydraniad a'r dyfnder lliw"
-
-#: Xconfig/resolution_and_depth.pm:361
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Cerdyn graffeg: %s"
-
-#: Xconfig/resolution_and_depth.pm:375 interactive.pm:119 interactive.pm:436
-#: interactive/http.pm:103 interactive/http.pm:156 interactive/newt.pm:321
-#: interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:143
-#: standalone/drakTermServ:222 standalone/drakTermServ:543
-#: standalone/drakbackup:1372 standalone/drakbackup:4123
-#: standalone/drakbackup:4183 standalone/drakbackup:4227
-#: standalone/drakbackup:4481 standalone/drakconnect:158
-#: standalone/drakconnect:852 standalone/drakconnect:939
-#: standalone/drakconnect:1030 standalone/drakfont:569 standalone/drakfont:579
-#: standalone/draksplash:173 standalone/drakups:210 standalone/net_monitor:339
-#: ugtk2.pm:392 ugtk2.pm:490 ugtk2.pm:899 ugtk2.pm:922
-#, c-format
-msgid "Ok"
-msgstr "Iawn"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/smbnfs_gtk.pm:80 help.pm:90
-#: help.pm:445 install_steps_gtk.pm:455 install_steps_interactive.pm:406
-#: install_steps_interactive.pm:811 interactive.pm:120 interactive.pm:437
-#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
-#: interactive/stdio.pm:39 interactive/stdio.pm:142
-#: printer/printerdrake.pm:3882 standalone/drakautoinst:215
-#: standalone/drakbackup:1372 standalone/drakbackup:4052
-#: standalone/drakbackup:4056 standalone/drakbackup:4111
-#: standalone/drakbackup:4481 standalone/drakconnect:157
-#: standalone/drakconnect:937 standalone/drakconnect:1029
-#: standalone/drakfont:579 standalone/drakfont:655 standalone/drakfont:733
-#: standalone/draksplash:173 standalone/drakups:217 standalone/logdrake:176
-#: standalone/net_monitor:338 ugtk2.pm:386 ugtk2.pm:488 ugtk2.pm:497
-#: ugtk2.pm:899
-#, c-format
-msgid "Cancel"
-msgstr "Diddymu"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/hd_gtk.pm:150
-#: install_steps_gtk.pm:232 install_steps_gtk.pm:617 interactive.pm:567
-#: interactive/gtk.pm:682 interactive/gtk.pm:684 standalone/drakTermServ:311
-#: standalone/drakbackup:4048 standalone/drakbug:105
-#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:511 standalone/draknfs:206 standalone/drakperm:133
-#: standalone/draksambashare:320 standalone/draksec:344 standalone/draksec:346
-#: standalone/draksec:364 standalone/draksec:366 ugtk2.pm:1031 ugtk2.pm:1032
-#, c-format
-msgid "Help"
-msgstr "Cymorth"
-
-#: Xconfig/test.pm:30
-#, c-format
-msgid "Test of the configuration"
-msgstr "Prawf o'r ffurfweddiad"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Ydych chi eisiau profi'r ffurfweddiad?"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Rhybudd: gall profi'r cerdyn graffeg hwn rewi eich cyfrifiadur"
-
-#: Xconfig/test.pm:69
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"Digwyddodd gwall:\n"
-"%s\n"
-"Ceisiwch newid paramedrau"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Gadael mewn %d eiliad"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "A'i hwn yw'r gosodiad cywir?"
-
-#: Xconfig/various.pm:29
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Cynllun allweddell: %s\n"
-
-#: Xconfig/various.pm:30
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Math o lygoden: %s\n"
-
-#: Xconfig/various.pm:31
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Dyfais llygoden: %s\n"
-
-#: Xconfig/various.pm:33
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: Xconfig/various.pm:34
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "HorizSync Monitor: %s\n"
-
-#: Xconfig/various.pm:35
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "VertRefresh Monitor: %s\n"
-
-#: Xconfig/various.pm:37
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Cerdyn graffeg: %s\n"
-
-#: Xconfig/various.pm:38
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Cof graffeg: %s kB\n"
-
-#: Xconfig/various.pm:40
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Dyfnder lliw: %s\n"
-
-#: Xconfig/various.pm:41
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Cydraniad: %s\n"
-
-#: Xconfig/various.pm:43
-#, c-format
-msgid "Xorg driver: %s\n"
-msgstr "Gyrrwr Xorg: %s\n"
-
-#: Xconfig/various.pm:72
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "Rhyngwyneb graffigol wrth gychwyn"
-
-#: Xconfig/various.pm:74
-#, c-format
-msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(Xorg) upon booting.\n"
-"Would you like Xorg to start when you reboot?"
-msgstr ""
-"Hoffwn osod eich cyfrifiadur i gychwyn X yn awtomatig ar ôl cychwyn\n"
-"Hoffech chi i Xorg ddechrau wedi i chi ail-gychwyn?"
-
-#: Xconfig/various.pm:87
-#, c-format
-msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
-msgstr ""
-"Mae'n edrych fel bod gan eich cerdyn graffig gyswllt TV-OUT.\n"
-"Mae modd ei ffurfweddu i weithio drwy fyffer ffrâm.\n"
-"\n"
-"Rhaid cysylltu eich cerdyn graffig â'ch teledu cyn cychwyn eich "
-"cyfrifiadur.\n"
-"Dewiswch \"TV-OUT\" yn y cychwynnwr\n"
-"\n"
-"Ydy'r nodwedd hon gennych?"
-
-#: Xconfig/various.pm:99
-#, c-format
-msgid "What norm is your TV using?"
-msgstr "Pa norm mae eich teledu'n ei ddefnyddio?"
-
-#: Xconfig/xfree.pm:648
-#, c-format
-msgid ""
-"_:weird aspect ratio\n"
-"other"
-msgstr "arall"
-
-#: any.pm:153 harddrake/sound.pm:195 interactive.pm:474 pkgs.pm:474
-#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
-#: standalone/drakups:99 standalone/drakxtv:92 standalone/harddrake2:375
-#: standalone/service_harddrake:235
+#: any.pm:157 diskdrake/interactive.pm:422 diskdrake/interactive.pm:617
+#: diskdrake/interactive.pm:798 diskdrake/interactive.pm:842
+#: diskdrake/interactive.pm:904 diskdrake/interactive.pm:1188 do_pkgs.pm:209
+#: do_pkgs.pm:255 harddrake/sound.pm:195 interactive.pm:576
#, c-format
msgid "Please wait"
msgstr "Arhoswch"
-#: any.pm:153
+#: any.pm:157
#, c-format
msgid "Bootloader installation in progress"
msgstr "Wrthi'n gosod cychwynnwr"
-#: any.pm:164
+#: any.pm:168
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -863,12 +45,12 @@ msgstr ""
"\n"
"Neilltuo enw Cyfrol newydd?"
-#: any.pm:175
+#: any.pm:179
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Methodd gosod cychwynnwr. Digwyddodd y gwall canlynol:"
-#: any.pm:181
+#: any.pm:185
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -885,7 +67,7 @@ msgstr ""
" Yna teipiwch: shut-down\n"
"Wrth gychwyn eto dylech weld anogwr y cychwynnwr."
-#: any.pm:219
+#: any.pm:223
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -900,258 +82,269 @@ msgstr ""
"\n"
"Gyda pha ddisg ydych chi'n cychwyn?"
-#: any.pm:242 help.pm:740
+#: any.pm:246
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Adran gyntaf o'r disg (MBR)"
-#: any.pm:243
+#: any.pm:247
#, c-format
msgid "First sector of the root partition"
msgstr "Adran gyntaf o'r rhaniad gwraidd"
-#: any.pm:245
+#: any.pm:249
#, c-format
msgid "On Floppy"
msgstr "Ar Ddisg Meddal"
-#: any.pm:247 help.pm:740 printer/printerdrake.pm:4203
+#: any.pm:251
#, c-format
msgid "Skip"
msgstr "Hepgor"
-#: any.pm:251
+#: any.pm:255
#, c-format
msgid "LILO/grub Installation"
msgstr "Gosodiad LILO/grub"
-#: any.pm:252
+#: any.pm:257
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Lle rydych chi eisiau gosod y cychwynnwr?"
-#: any.pm:278 standalone/drakboot:269
+#: any.pm:284
#, c-format
msgid "Boot Style Configuration"
msgstr "Ffurfweddu'r Math o Gychwyn"
-#: any.pm:280 any.pm:281 any.pm:314 any.pm:315
+#: any.pm:294 any.pm:326 any.pm:327
#, c-format
msgid "Bootloader main options"
msgstr "Prif ddewisiadau Bootloader"
-#: any.pm:286
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Rhowch faint RAM mewn MB"
-
-#: any.pm:288
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Dewis Nid yw 'cyfyngu dewisiadau llinell orchymyn' o werth heb gyfrinair"
-
-#: any.pm:289 any.pm:628 authentication.pm:192
-#, c-format
-msgid "The passwords do not match"
-msgstr "Nid yw'r cyfrineiriau'n cyd-fynd"
-
-#: any.pm:289 any.pm:628 authentication.pm:192 diskdrake/interactive.pm:1336
+#: any.pm:299
#, c-format
-msgid "Please try again"
-msgstr "Ceisiwch eto"
+msgid "Bootloader"
+msgstr "Cychwynnwr ar waith"
-#: any.pm:294 any.pm:319
+#: any.pm:300 any.pm:331
#, c-format
msgid "Bootloader to use"
msgstr "Bootloader ar waith"
-#: any.pm:296 any.pm:321
+#: any.pm:302 any.pm:333
#, c-format
msgid "Boot device"
msgstr "Dyfais cychwyn"
-#: any.pm:298
+#: any.pm:304
+#, c-format
+msgid "Main options"
+msgstr "Prif ddewisiadau"
+
+#: any.pm:305
#, c-format
msgid "Delay before booting default image"
msgstr "Oedi cyn cychwyn y ddelwedd rhagosodedig"
-#: any.pm:299
+#: any.pm:306
#, c-format
msgid "Enable ACPI"
msgstr "Galluogi ACPI"
-#: any.pm:301
+#: any.pm:307
#, c-format
-msgid "Force no APIC"
-msgstr "Gorfodi dim APIC"
+msgid "Enable APIC"
+msgstr "Galluogi APIC"
-#: any.pm:303
+#: any.pm:308
#, c-format
-msgid "Force No Local APIC"
-msgstr "Peidio Gorfodi APIC Lleol"
+msgid "Enable Local APIC"
+msgstr "Galluogi APIC Lleol"
-#: any.pm:305 any.pm:662 authentication.pm:197 diskdrake/smbnfs_gtk.pm:180
-#: network/netconnect.pm:584 printer/printerdrake.pm:1867
-#: printer/printerdrake.pm:1988 standalone/drakbackup:1650
-#: standalone/drakbackup:3641 standalone/drakups:297
+#: any.pm:310 any.pm:686 authentication.pm:196 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Cyfrinair"
-#: any.pm:306 any.pm:663 authentication.pm:198
+#: any.pm:312 authentication.pm:207
+#, c-format
+msgid "The passwords do not match"
+msgstr "Nid yw'r cyfrineiriau'n cyd-fynd"
+
+#: any.pm:312 authentication.pm:207 diskdrake/interactive.pm:1348
+#, c-format
+msgid "Please try again"
+msgstr "Ceisiwch eto"
+
+#: any.pm:313
+#, c-format
+msgid "You can not use a password with %s"
+msgstr "Nid oes modd defnyddio cyfrinair gyda %s"
+
+#: any.pm:316 any.pm:687 authentication.pm:197
#, c-format
msgid "Password (again)"
msgstr "Cyfrinair (eto)"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "Restrict command line options"
msgstr "Cyfyngu dewisiadau llinell orchymyn"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "restrict"
msgstr "cyfyngu"
-#: any.pm:309
+#: any.pm:318
+#, c-format
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr ""
+"Dewis Nid yw 'cyfyngu dewisiadau llinell orchymyn' o werth heb gyfrinair"
+
+#: any.pm:320
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Glanhau /tmp bob tro fyddwch yn cychwyn"
-#: any.pm:310
+#: any.pm:321
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Union faint o RAM os oes angen (canfod %dMB)"
-#: any.pm:320
+#: any.pm:322
+#, c-format
+msgid "Give the ram size in MB"
+msgstr "Rhowch faint RAM mewn MB"
+
+#: any.pm:332
#, c-format
msgid "Init Message"
msgstr "Neges Init"
-#: any.pm:322
+#: any.pm:334
#, c-format
msgid "Open Firmware Delay"
msgstr "Agor Oedi Cadarnwedd"
-#: any.pm:323
+#: any.pm:335
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Goramser cychwyn y cnewyllyn"
-#: any.pm:324
+#: any.pm:336
#, c-format
msgid "Enable CD Boot?"
msgstr "Galluogi cychwyn o CD?"
-#: any.pm:325
+#: any.pm:337
#, c-format
msgid "Enable OF Boot?"
msgstr "Galluogi Cychwyn OF?"
-#: any.pm:326
+#: any.pm:338
#, c-format
msgid "Default OS?"
msgstr "System Weithredu Rhagosodedig?"
-#: any.pm:380
+#: any.pm:404
#, c-format
msgid "Image"
msgstr "Delwedd"
-#: any.pm:381 any.pm:391
+#: any.pm:405 any.pm:418
#, c-format
msgid "Root"
msgstr "Gwraidd"
-#: any.pm:382 any.pm:404
+#: any.pm:406 any.pm:431
#, c-format
msgid "Append"
msgstr "Atodi"
-#: any.pm:384 standalone/drakboot:271 standalone/drakboot:275
+#: any.pm:408
+#, c-format
+msgid "Xen append"
+msgstr "Atodiad Xen"
+
+#: any.pm:411
#, c-format
msgid "Video mode"
msgstr "Modd fideo"
-#: any.pm:386
+#: any.pm:413
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:387
+#: any.pm:414
#, c-format
msgid "Network profile"
msgstr "Proffil rhwydwaith"
-#: any.pm:396 any.pm:401 any.pm:403 diskdrake/interactive.pm:450
+#: any.pm:423 any.pm:428 any.pm:430 diskdrake/interactive.pm:443
#, c-format
msgid "Label"
msgstr "Label"
-#: any.pm:398 any.pm:408 harddrake/v4l.pm:438 standalone/drakbackup:2104
-#: standalone/draksec:52
+#: any.pm:425 any.pm:433 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Rhagosodedig"
-#: any.pm:405
-#, c-format
-msgid "Initrd-size"
-msgstr "Maint intrd"
-
-#: any.pm:407
+#: any.pm:432
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:418
+#: any.pm:443
#, c-format
msgid "Empty label not allowed"
msgstr "Nid yw label wag yn cael ei chaniatáu"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a kernel image"
msgstr "Rhaid enwi delwedd cnewyllyn"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a root partition"
msgstr "Rhaid pennu rhaniad gwraidd"
-#: any.pm:420
+#: any.pm:445
#, c-format
msgid "This label is already used"
msgstr "Mae'r label hwn yn cael ei ddefnyddio eisoes"
-#: any.pm:434
+#: any.pm:459
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Systemau Gweithredu eraill (SunOS..)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Systemau Gweithredu Eraill (MacOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (Windows...)"
msgstr "Systemau Gweithredu Eraill (Windows...)"
-#: any.pm:464
+#: any.pm:489
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -1160,94 +353,89 @@ msgstr ""
"Dyma'r cofnodion gwahanol ar eich dewislen cychwyn hyd yma.\n"
"Mae modd i chi ychwanegu rhagor neu newid y rhai presennol."
-#: any.pm:614
+#: any.pm:640
#, c-format
msgid "access to X programs"
msgstr "mynediad i raglenni X"
-#: any.pm:615
+#: any.pm:641
#, c-format
msgid "access to rpm tools"
msgstr "mynediad i offer rpm"
-#: any.pm:616
+#: any.pm:642
#, c-format
msgid "allow \"su\""
msgstr "caniatáu \"su\""
-#: any.pm:617
+#: any.pm:643
#, c-format
msgid "access to administrative files"
msgstr "mynediad i ffeiliau gweinyddol"
-#: any.pm:618
+#: any.pm:644
#, c-format
msgid "access to network tools"
msgstr "mynediad i offer rhwydwaith"
-#: any.pm:619
+#: any.pm:645
#, c-format
msgid "access to compilation tools"
msgstr "mynediad i offer crynhoad"
-#: any.pm:624
+#: any.pm:650
#, c-format
msgid "(already added %s)"
msgstr "(wedi ychwanegu %s yn barod)"
-#: any.pm:629
-#, c-format
-msgid "This password is too simple"
-msgstr "Mae'r cyfrinair yn rhy syml"
-
-#: any.pm:630
+#: any.pm:657
#, c-format
msgid "Please give a user name"
msgstr "Rhowch enw defnyddiwr"
-#: any.pm:631
+#: any.pm:658
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Rhaid i'r enw defnyddiwr gynnwys dim ond llythrennau bach, rhifau, '-' a '_'"
-#: any.pm:632
+#: any.pm:659
#, c-format
msgid "The user name is too long"
msgstr "Mae'r enw defnyddiwr yn rhy hir"
-#: any.pm:633
+#: any.pm:660
#, c-format
msgid "This user name has already been added"
msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
-#: any.pm:634 any.pm:665
+#: any.pm:661 any.pm:689
#, c-format
msgid "User ID"
msgstr "Enw Defnyddiwr"
-#: any.pm:635 any.pm:666
+#: any.pm:662 any.pm:690
#, c-format
msgid "Group ID"
msgstr "Enw Grŵp"
-#: any.pm:638
+#: any.pm:665
#, c-format
msgid "%s must be a number"
msgstr "Rhaid i %s fod yn rhif!"
-#: any.pm:639
+#: any.pm:666
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "Dylai %s fod dros 500. Parhau beth bynnag?"
-#: any.pm:644 standalone/draksambashare:1214
+#: any.pm:671
#, c-format
msgid "Add user"
msgstr "Ychwanegu defnyddiwr"
-#: any.pm:646
+#: any.pm:673
#, c-format
msgid ""
"Enter a user\n"
@@ -1256,98 +444,94 @@ msgstr ""
"Rhowch enw defnyddiwr\n"
"%s"
-#: any.pm:649 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:154
-#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:81 help.pm:531
-#: interactive/http.pm:151 printer/printerdrake.pm:197
-#: printer/printerdrake.pm:382 printer/printerdrake.pm:5010
-#: standalone/drakbackup:2836 standalone/scannerdrake:685
-#: standalone/scannerdrake:835
+#: any.pm:676 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:166
+#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:82
+#: interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Gorffen"
-#: any.pm:650 help.pm:52
+#: any.pm:677
#, c-format
msgid "Accept user"
msgstr "Derbyn defnyddiwr"
-#: any.pm:660
+#: any.pm:682
#, c-format
msgid "Real name"
msgstr "Enw cywir"
-#: any.pm:661 standalone/drakbackup:1645
+#: any.pm:685
#, c-format
msgid "Login name"
msgstr "Enw mewngofnodi"
-#: any.pm:664
+#: any.pm:688
#, c-format
msgid "Shell"
msgstr "Cragen"
-#: any.pm:668
-#, c-format
-msgid "Icon"
-msgstr "Eicon"
-
-#: any.pm:715 security/l10n.pm:14
+#: any.pm:735 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Awto mewngofnodi"
-#: any.pm:716
+#: any.pm:736
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Mewngofnodi'n awtomatig ar gyfer un defnyddiwr."
-#: any.pm:717
+#: any.pm:737
#, c-format
msgid "Use this feature"
msgstr "Defnyddiwch y nodwedd"
-#: any.pm:718
+#: any.pm:738
#, c-format
msgid "Choose the default user:"
msgstr "Dewis y defnyddiwr rhagosodedig:"
-#: any.pm:719
+#: any.pm:739
#, c-format
msgid "Choose the window manager to run:"
msgstr "Dewiswch y rheolwr ffenestr i redeg:"
-#: any.pm:740
+#: any.pm:767
#, c-format
msgid "License agreement"
msgstr "Cytundeb trwyddedu"
-#: any.pm:745
+#: any.pm:770 diskdrake/dav.pm:26
+#, c-format
+msgid "Quit"
+msgstr "Gadael"
+
+#: any.pm:773
#, c-format
msgid "Release Notes"
msgstr "Nodiadau Ryddhau"
-#: any.pm:748 help.pm:15 install_steps_gtk.pm:539
-#: install_steps_interactive.pm:715 standalone/drakautoinst:214
+#: any.pm:776
#, c-format
msgid "Accept"
msgstr "Derbyn"
-#: any.pm:748 install_steps_gtk.pm:539 install_steps_interactive.pm:715
+#: any.pm:776
#, c-format
msgid "Refuse"
msgstr "Gwrthod"
-#: any.pm:765 any.pm:833
+#: any.pm:795 any.pm:863
#, c-format
msgid "Please choose a language to use."
msgstr "Dewiswch iaith i'w defnyddio."
-#: any.pm:766 any.pm:834
+#: any.pm:796 any.pm:864
#, c-format
msgid "Language choice"
msgstr "Dewis iaith"
-#: any.pm:794
+#: any.pm:826
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
@@ -1358,70 +542,72 @@ msgstr ""
"pa iaith yr hoffech ei osod. Byddant ar gael pan fydd eich gosodiad\n"
"wedi ei gwblhau a phan fyddwch yn ailgychwyn eich system."
-#: any.pm:797
+#: any.pm:829
#, c-format
msgid "Multi languages"
msgstr "Amlieithog"
-#: any.pm:813 any.pm:842 help.pm:648
+#: any.pm:841 any.pm:872
#, c-format
-msgid "Use Unicode by default"
-msgstr "Defnyddio Unicode drwy ragosodiad"
+msgid "Old compatibility (non UTF-8) encoding"
+msgstr "Hen Amgodiad (nid utf-8)"
-#: any.pm:814 help.pm:648
+#: any.pm:843
#, c-format
msgid "All languages"
msgstr "Pob iaith"
-#: any.pm:888 help.pm:567 help.pm:856 install_steps_interactive.pm:932
+#: any.pm:918
#, c-format
msgid "Country / Region"
msgstr "Gwlad / Ardal"
-#: any.pm:890
+#: any.pm:920
#, c-format
msgid "Please choose your country."
msgstr "Dewiswch eich gwlad."
-#: any.pm:892
+#: any.pm:922
#, c-format
msgid "Here is the full list of available countries"
msgstr "Dyma restr lawn o'r gwledydd sydd ar gael"
-#: any.pm:893
+#: any.pm:923
#, c-format
msgid "Other Countries"
msgstr "Gwledydd eraill"
-#: any.pm:893 help.pm:52 help.pm:410 help.pm:432 help.pm:648 help.pm:723
-#: interactive.pm:397
+#: any.pm:923 interactive.pm:477
#, c-format
msgid "Advanced"
msgstr "Uwch"
-#: any.pm:901
+#: any.pm:929
#, c-format
msgid "Input method:"
msgstr "Dull mewnbwn:"
-#: any.pm:904 install_any.pm:422 network/netconnect.pm:317
-#: network/netconnect.pm:322 network/netconnect.pm:1237 network/wireless.pm:7
-#: printer/printerdrake.pm:117
+#: any.pm:932
#, c-format
msgid "None"
msgstr "Dim"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "No sharing"
msgstr "Peidio rhannu"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "Allow all users"
msgstr "Caniatáu pob defnyddiwr"
-#: any.pm:1025
+#: any.pm:1012
+#, c-format
+msgid "Custom"
+msgstr "Arddull"
+
+#: any.pm:1016
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1436,7 +622,7 @@ msgstr ""
"\n"
"\"Addasu\" caniatáu cyfran i'r defnyddwyr.\n"
-#: any.pm:1037
+#: any.pm:1028
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -1445,7 +631,7 @@ msgstr ""
"NFS: system rhannu ffeiliau traddodiadol Unix, sydd â llai o gefnogaeth ar "
"Mac a Windows."
-#: any.pm:1040
+#: any.pm:1031
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -1454,30 +640,24 @@ msgstr ""
"SMB: system rhannu ffeiliau sy'n cael ei ddefnyddio yn Windows, Mac OSX a "
"nifer o systemau Linux diweddar."
-#: any.pm:1048
+#: any.pm:1039
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Gallwch allforio gan ddefnyddio NFS neu SMB. Pa un hoffech chi ei ddefnyddio?"
-#: any.pm:1073
+#: any.pm:1064
#, c-format
msgid "Launch userdrake"
msgstr "Cychwyn userdrake"
-#: any.pm:1073 printer/printerdrake.pm:4085 printer/printerdrake.pm:4088
-#: printer/printerdrake.pm:4089 printer/printerdrake.pm:4090
-#: printer/printerdrake.pm:5328 standalone/drakTermServ:321
-#: standalone/drakbackup:4245 standalone/drakbug:126 standalone/drakfont:499
-#: standalone/drakids:64 standalone/drakids:77 standalone/drakids:85
-#: standalone/draknfs:210 standalone/net_monitor:117
-#: standalone/printerdrake:583
+#: any.pm:1064 interactive/gtk.pm:747
#, c-format
msgid "Close"
msgstr "Cau"
-#: any.pm:1075
+#: any.pm:1066
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -1486,6 +666,56 @@ msgstr ""
"Mae'r rhannu yn ôl defnyddiwr yn defnyddio grŵp \"rhannu ffeiliau\" .\n"
"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grŵp. "
+#: any.pm:1158
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Allgofnodwch ac yna defnyddiwch Ctrl Alt-BackSpace"
+
+#: any.pm:1162
+#, c-format
+msgid "You need to log out and back in again for changes to take effect"
+msgstr "Rhaid allgofnodi ac i mewn eto i newidiadau ddigwydd."
+
+#: any.pm:1212
+#, c-format
+msgid "Timezone"
+msgstr "Cylchfa amser"
+
+#: any.pm:1212
+#, c-format
+msgid "Which is your timezone?"
+msgstr "Pa un yw eich parth amser?"
+
+#: any.pm:1224 any.pm:1226
+#, c-format
+msgid "Date, Clock & Time Zone Settings"
+msgstr "Gosodiadau Dyddiadm Cloc a Chylchedd Amser"
+
+#: any.pm:1227
+#, c-format
+msgid "What is the best time?"
+msgstr "Beth yw'r amser gorau?"
+
+#: any.pm:1231
+#, c-format
+msgid "%s (hardware clock set to UTC)"
+msgstr "%s (cloc caledwedd wedi ei osod i UTC)"
+
+#: any.pm:1232
+#, c-format
+msgid "%s (hardware clock set to local time)"
+msgstr "%s (cloc caledwedd wedi ei osod i'r amser lleol)"
+
+#: any.pm:1234
+#, c-format
+msgid "NTP Server"
+msgstr "Gweinydd NTP"
+
+#: any.pm:1235
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Cydweddi amser awtomatig (defnyddio NTP)"
+
#: authentication.pm:23
#, c-format
msgid "Local file"
@@ -1608,7 +838,7 @@ msgstr "Dilysu LDAP"
msgid "LDAP Base dn"
msgstr "Sail dn LDAP"
-#: authentication.pm:98 share/compssUsers.pl:102
+#: authentication.pm:98
#, c-format
msgid "LDAP Server"
msgstr "Gweinydd LDAP"
@@ -1638,14 +868,12 @@ msgstr "trefn diogelwch (SASL/Kerberos)"
msgid "Authentication Active Directory"
msgstr "Cyfeiriadur Byw Dilysu"
-#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:181
+#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Parth"
-#: authentication.pm:124 diskdrake/dav.pm:63 help.pm:147
-#: printer/printerdrake.pm:75 share/compssUsers.pl:82
-#: standalone/drakTermServ:296
+#: authentication.pm:124 diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Gweinydd"
@@ -1733,45 +961,39 @@ msgstr "Enw Defnyddiwr Gweinyddiaeth Parth"
msgid "Domain Admin Password"
msgstr "Cyfrinair Gweinyddol y Parth"
-#: authentication.pm:181
+#: authentication.pm:181 authentication.pm:198
#, c-format
-msgid "Set administrator (root) password and network authentication methods"
-msgstr "Gosod cyfrinair gweinyddwr (root) gwraidd a dulliau dilysu rhwydwaith"
+msgid "Authentication"
+msgstr "Dilysu"
#: authentication.pm:182
#, c-format
msgid "Set administrator (root) password"
msgstr "Gosod cyfrinair gweinyddwr (root"
-#: authentication.pm:183 standalone/drakvpn:1111
+#: authentication.pm:184
#, c-format
msgid "Authentication method"
msgstr "Dull dilysu"
#. -PO: keep this short or else the buttons will not fit in the window
-#: authentication.pm:188 help.pm:723
+#: authentication.pm:189
#, c-format
msgid "No password"
msgstr "Dim cyfrinair"
-#: authentication.pm:194
+#: authentication.pm:210
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Mae'r cyfrinair yn rhy syml ( rhaid iddo fod o leiaf %d nod o hyd)"
-#: authentication.pm:199 network/netconnect.pm:322 network/netconnect.pm:585
-#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:481
-#, c-format
-msgid "Authentication"
-msgstr "Dilysu"
-
-#: authentication.pm:331
+#: authentication.pm:351
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "Methu defnyddio darlledu heb barth NIS"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:767
+#: bootloader.pm:880
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1786,42 +1008,42 @@ msgstr ""
"aros am y cychwyn rhagosodedig\n"
"\n"
-#: bootloader.pm:909
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO gyda dewislen raffigol"
-
-#: bootloader.pm:910
+#: bootloader.pm:1028
#, c-format
msgid "LILO with text menu"
msgstr "LILO gyda dewislen testun"
-#: bootloader.pm:911
+#: bootloader.pm:1029
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB gyda dewislen raffigol"
-#: bootloader.pm:912
+#: bootloader.pm:1030
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB gyda dewislen testun"
-#: bootloader.pm:913
+#: bootloader.pm:1031
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:990
+#: bootloader.pm:1032
+#, c-format
+msgid "SILO"
+msgstr "SILO"
+
+#: bootloader.pm:1112
#, c-format
msgid "not enough room in /boot"
msgstr "dim digon o le yn /boot"
-#: bootloader.pm:1483
+#: bootloader.pm:1679
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "Nid oes modd gosod y cychwynnwr ar raniad %s\n"
-#: bootloader.pm:1523
+#: bootloader.pm:1732
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1830,7 +1052,7 @@ msgstr ""
"Rhaid i ffurfweddiad eich cychwynnwr gael ei ddiweddaru am i'r rhaniadau "
"gael eu hail rifo."
-#: bootloader.pm:1536
+#: bootloader.pm:1745
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
@@ -1839,242 +1061,55 @@ msgstr ""
"Methu gosod eich cychwynnwr yn iawn, Rhaid defnyddio achub cychwyn a dewis "
"\"%s\""
-#: bootloader.pm:1537
+#: bootloader.pm:1746
#, c-format
msgid "Re-install Boot Loader"
msgstr "Ail osod Cychwynnwr"
-#: common.pm:134
+#: common.pm:129
+#, c-format
+msgid "B"
+msgstr "B"
+
+#: common.pm:129
#, c-format
msgid "KB"
msgstr "KB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "MB"
msgstr "MB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "GB"
msgstr "GB"
-#: common.pm:142
+#: common.pm:137
#, c-format
msgid "TB"
msgstr "TB"
-#: common.pm:150
+#: common.pm:145
#, c-format
msgid "%d minutes"
msgstr "%d munud"
-#: common.pm:152
+#: common.pm:147
#, c-format
msgid "1 minute"
msgstr "1 munud"
-#: common.pm:154
+#: common.pm:149
#, c-format
msgid "%d seconds"
msgstr "%d eiliad"
-#: common.pm:260
-#, c-format
-msgid "kdesu missing"
-msgstr "kdesu ar goll"
-
-#: common.pm:263
-#, c-format
-msgid "consolehelper missing"
-msgstr "consolehelper ar goll"
-
-#: crypto.pm:13 crypto.pm:48 lang.pm:207 network/adsl_consts.pm:66
-#: network/adsl_consts.pm:75 network/adsl_consts.pm:84
-#, c-format
-msgid "Austria"
-msgstr "Awstria"
-
-#: crypto.pm:14 crypto.pm:47 lang.pm:208 standalone/drakxtv:48
-#, c-format
-msgid "Australia"
-msgstr "Awstralia"
-
-#: crypto.pm:15 crypto.pm:49 lang.pm:214 network/adsl_consts.pm:93
-#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
-#: network/adsl_consts.pm:123 network/netconnect.pm:44
-#, c-format
-msgid "Belgium"
-msgstr "Gwlad Belg"
-
-#: crypto.pm:16 crypto.pm:50 lang.pm:223 network/adsl_consts.pm:132
-#: network/adsl_consts.pm:143 network/adsl_consts.pm:152
-#: network/adsl_consts.pm:161
-#, c-format
-msgid "Brazil"
-msgstr "Brasil"
-
-#: crypto.pm:17 crypto.pm:51 lang.pm:230
-#, c-format
-msgid "Canada"
-msgstr "Canada"
-
-#: crypto.pm:18 crypto.pm:74 lang.pm:235 network/adsl_consts.pm:891
-#: network/adsl_consts.pm:900 network/adsl_consts.pm:911
-#, c-format
-msgid "Switzerland"
-msgstr "Y Swistir"
-
-#: crypto.pm:19 lang.pm:242
-#, c-format
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: crypto.pm:20 crypto.pm:52 lang.pm:248 network/adsl_consts.pm:368
-#, c-format
-msgid "Czech Republic"
-msgstr "Gweriniaeth Tsiec"
-
-#: crypto.pm:21 crypto.pm:57 lang.pm:249 network/adsl_consts.pm:499
-#: network/adsl_consts.pm:508
-#, c-format
-msgid "Germany"
-msgstr "Yr Almaen"
-
-#: crypto.pm:22 crypto.pm:53 lang.pm:251 network/adsl_consts.pm:378
-#, c-format
-msgid "Denmark"
-msgstr "Denmarc"
-
-#: crypto.pm:23 crypto.pm:54 lang.pm:256
-#, c-format
-msgid "Estonia"
-msgstr "Estonia"
-
-#: crypto.pm:24 crypto.pm:72 lang.pm:260 network/adsl_consts.pm:759
-#: network/adsl_consts.pm:770 network/adsl_consts.pm:781
-#: network/adsl_consts.pm:792 network/adsl_consts.pm:801
-#: network/adsl_consts.pm:810 network/adsl_consts.pm:819
-#: network/adsl_consts.pm:828 network/adsl_consts.pm:837
-#: network/adsl_consts.pm:846 network/adsl_consts.pm:855
-#: network/adsl_consts.pm:864 network/adsl_consts.pm:873
-#, c-format
-msgid "Spain"
-msgstr "Sbaen"
-
-#: crypto.pm:25 crypto.pm:55 lang.pm:262 network/adsl_consts.pm:387
-#, c-format
-msgid "Finland"
-msgstr "Y Ffindir"
-
-#: crypto.pm:26 crypto.pm:56 lang.pm:267 network/adsl_consts.pm:396
-#: network/adsl_consts.pm:408 network/adsl_consts.pm:420
-#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
-#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
-#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
-#: network/netconnect.pm:41
-#, c-format
-msgid "France"
-msgstr "Ffrainc"
-
-#: crypto.pm:27 crypto.pm:58 lang.pm:280 network/adsl_consts.pm:519
-#, c-format
-msgid "Greece"
-msgstr "Groeg"
-
-#: crypto.pm:28 crypto.pm:59 lang.pm:291 network/adsl_consts.pm:528
-#, c-format
-msgid "Hungary"
-msgstr "Hwngari"
-
-#: crypto.pm:29 crypto.pm:60 lang.pm:293 network/adsl_consts.pm:537
-#: standalone/drakxtv:47
-#, c-format
-msgid "Ireland"
-msgstr "Iwerddon"
-
-#: crypto.pm:30 crypto.pm:61 lang.pm:294 network/adsl_consts.pm:546
-#, c-format
-msgid "Israel"
-msgstr "Israel"
-
-#: crypto.pm:31 crypto.pm:62 lang.pm:300 network/adsl_consts.pm:557
-#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
-#: network/adsl_consts.pm:589 network/netconnect.pm:43 standalone/drakxtv:47
-#, c-format
-msgid "Italy"
-msgstr "Yr Eidal"
-
-#: crypto.pm:32 crypto.pm:63 lang.pm:303
-#, c-format
-msgid "Japan"
-msgstr "Siapan"
-
-#: crypto.pm:33 crypto.pm:64 lang.pm:352 network/adsl_consts.pm:620
-#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
-#: network/adsl_consts.pm:647 network/netconnect.pm:42
-#, c-format
-msgid "Netherlands"
-msgstr "Yr Iseldiroedd"
-
-#: crypto.pm:34 crypto.pm:66 lang.pm:353 network/adsl_consts.pm:656
-#: network/adsl_consts.pm:661 network/adsl_consts.pm:666
-#: network/adsl_consts.pm:671 network/adsl_consts.pm:676
-#: network/adsl_consts.pm:681 network/adsl_consts.pm:686
-#, c-format
-msgid "Norway"
-msgstr "Norwy"
-
-#: crypto.pm:35 crypto.pm:65 lang.pm:357
-#, c-format
-msgid "New Zealand"
-msgstr "Seland Newydd"
-
-#: crypto.pm:36 crypto.pm:67 lang.pm:365 network/adsl_consts.pm:693
-#: network/adsl_consts.pm:704
-#, c-format
-msgid "Poland"
-msgstr "Gwlad Pwyl"
-
-#: crypto.pm:37 crypto.pm:68 lang.pm:370 network/adsl_consts.pm:716
-#, c-format
-msgid "Portugal"
-msgstr "Portiwgal"
-
-#: crypto.pm:38 crypto.pm:69 lang.pm:376 network/adsl_consts.pm:725
-#, c-format
-msgid "Russia"
-msgstr "Rwsia"
-
-#: crypto.pm:39 crypto.pm:73 lang.pm:382 network/adsl_consts.pm:882
-#, c-format
-msgid "Sweden"
-msgstr "Sweden"
-
-#: crypto.pm:40 crypto.pm:70 lang.pm:387
-#, c-format
-msgid "Slovakia"
-msgstr "Slofacia"
-
-#: crypto.pm:41 crypto.pm:76 lang.pm:401 network/adsl_consts.pm:920
-#, c-format
-msgid "Thailand"
-msgstr "Gwlad Thail"
-
-#: crypto.pm:42 crypto.pm:75 lang.pm:411
-#, c-format
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#: crypto.pm:43 crypto.pm:71 lang.pm:430 standalone/drakxtv:49
-#, c-format
-msgid "South Africa"
-msgstr "De Affrica"
-
-#: crypto.pm:77 crypto.pm:112 lang.pm:416 network/netconnect.pm:45
+#: common.pm:298
#, c-format
-msgid "United States"
-msgstr "Yr Unol Daleithiau"
+msgid "command %s missing"
+msgstr "gorchymyn %s ar goll"
#: diskdrake/dav.pm:17
#, c-format
@@ -2094,23 +1129,46 @@ msgstr ""
msgid "New"
msgstr "Newydd"
-#: diskdrake/dav.pm:61 diskdrake/interactive.pm:456 diskdrake/smbnfs_gtk.pm:74
+#: diskdrake/dav.pm:61 diskdrake/interactive.pm:449 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Dadosod"
-#: diskdrake/dav.pm:62 diskdrake/interactive.pm:453 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:62 diskdrake/interactive.pm:446 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Gosod"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:447
-#: diskdrake/interactive.pm:679 diskdrake/interactive.pm:698
-#: diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:78
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:440
+#: diskdrake/interactive.pm:670 diskdrake/interactive.pm:688
+#: diskdrake/interactive.pm:692 diskdrake/removable.pm:23
+#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Pwynt gosod"
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:442
+#: diskdrake/interactive.pm:1047 diskdrake/removable.pm:24
+#: diskdrake/smbnfs_gtk.pm:80
+#, c-format
+msgid "Options"
+msgstr "Dewisiadau"
+
+#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:229
+#: diskdrake/interactive.pm:242 diskdrake/interactive.pm:398
+#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:547
+#: diskdrake/interactive.pm:552 diskdrake/interactive.pm:660
+#: diskdrake/interactive.pm:922 diskdrake/interactive.pm:1092
+#: diskdrake/interactive.pm:1105 diskdrake/interactive.pm:1108
+#: diskdrake/interactive.pm:1348 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:19
+#: do_pkgs.pm:24 do_pkgs.pm:40 do_pkgs.pm:56 do_pkgs.pm:61 fsedit.pm:229
+#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
+#: scanner.pm:94 scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95
+#: wizards.pm:99 wizards.pm:121
+#, c-format
+msgid "Error"
+msgstr "Gwall"
+
#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
@@ -2126,33 +1184,48 @@ msgstr "Rhaid i'r URL gychwyn gyda http:// neu https://"
msgid "Server: "
msgstr "Gweinydd:"
-#: diskdrake/dav.pm:110 diskdrake/interactive.pm:523
-#: diskdrake/interactive.pm:1218 diskdrake/interactive.pm:1296
+#: diskdrake/dav.pm:110 diskdrake/interactive.pm:520
+#: diskdrake/interactive.pm:1230 diskdrake/interactive.pm:1308
#, c-format
msgid "Mount point: "
msgstr "Pwynt gosod:"
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1303
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1315
#, c-format
msgid "Options: %s"
msgstr "Dewisiadau: %s"
-#: diskdrake/hd_gtk.pm:52 diskdrake/interactive.pm:293
-#: diskdrake/smbnfs_gtk.pm:21 install_interactive.pm:63
-#: install_interactive.pm:217 install_interactive.pm:223
-#: install_interactive.pm:276 install_interactive.pm:281
-#: install_steps_interactive.pm:253 install_steps_interactive.pm:317
-#: steps.pm:21
+#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:286
+#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
+#: fs/partitioning_wizard.pm:47 fs/partitioning_wizard.pm:201
+#: fs/partitioning_wizard.pm:207 fs/partitioning_wizard.pm:247
+#: fs/partitioning_wizard.pm:266 fs/partitioning_wizard.pm:271
#, c-format
msgid "Partitioning"
msgstr "Creu rhaniadau"
-#: diskdrake/hd_gtk.pm:92
+#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1067
+#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1130
+#, c-format
+msgid "Read carefully!"
+msgstr "Darllenwch yn ofalus!"
+
+#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr "Gwnewch gopi wrth gefn o'ch data yn gyntaf"
-#: diskdrake/hd_gtk.pm:95
+#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:222
+#, c-format
+msgid "Exit"
+msgstr "Gadael"
+
+#: diskdrake/hd_gtk.pm:94
+#, c-format
+msgid "Continue"
+msgstr "Parhau"
+
+#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
@@ -2163,17 +1236,18 @@ msgstr ""
"ddigon)\n"
"ar ddechrau'r ddisg."
-#: diskdrake/hd_gtk.pm:152 help.pm:531
+#: diskdrake/hd_gtk.pm:162 interactive.pm:640 interactive/gtk.pm:719
+#: interactive/gtk.pm:740 interactive/gtk.pm:760 ugtk2.pm:923 ugtk2.pm:924
#, c-format
-msgid "Wizard"
-msgstr "Dewin"
+msgid "Help"
+msgstr "Cymorth"
-#: diskdrake/hd_gtk.pm:185
+#: diskdrake/hd_gtk.pm:197
#, c-format
msgid "Choose action"
msgstr "Dewiswch weithred"
-#: diskdrake/hd_gtk.pm:189
+#: diskdrake/hd_gtk.pm:201
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -2184,149 +1258,163 @@ msgstr ""
"Awgrymir eich bod yn newid maint y rhaniad\n"
"(cliciwch arno, ac yna clicio \"Newid maint\"]"
-#: diskdrake/hd_gtk.pm:191
+#: diskdrake/hd_gtk.pm:203
#, c-format
msgid "Please click on a partition"
msgstr "Cliciwch ar raniad"
-#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:457
-#: standalone/drakbackup:3088 standalone/drakbackup:3148
+#: diskdrake/hd_gtk.pm:217 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Manylion"
-#: diskdrake/hd_gtk.pm:251
+#: diskdrake/hd_gtk.pm:265
#, c-format
msgid "No hard drives found"
msgstr "Heb ganfod gyrwyr caled"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:292
+#, c-format
+msgid "Unknown"
+msgstr "Anhysbys"
+
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Ext2"
msgstr "Ext2"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Journalised FS"
msgstr "FS jwrnaleiddiwyd"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "SunOS"
msgstr "SunOS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "HFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1233
+#: diskdrake/hd_gtk.pm:352 services.pm:149
+#, c-format
+msgid "Other"
+msgstr "Arall"
+
+#: diskdrake/hd_gtk.pm:352 diskdrake/interactive.pm:1244
#, c-format
msgid "Empty"
msgstr "Gwag"
-#: diskdrake/hd_gtk.pm:340
+#: diskdrake/hd_gtk.pm:356
#, c-format
msgid "Filesystem types:"
msgstr "Mathau o system ffeiliau:"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:359 diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:291
+#: diskdrake/interactive.pm:392 diskdrake/interactive.pm:428
+#: diskdrake/interactive.pm:577 diskdrake/interactive.pm:751
+#: diskdrake/interactive.pm:809 diskdrake/interactive.pm:902
+#: diskdrake/interactive.pm:944 diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:1173 diskdrake/interactive.pm:1211
+#: diskdrake/interactive.pm:1347 do_pkgs.pm:16 do_pkgs.pm:35 do_pkgs.pm:53
+#: harddrake/sound.pm:279
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Defnyddiwch \"%s\" yn lle hynny"
+msgid "Warning"
+msgstr "Rhybudd"
-#: diskdrake/hd_gtk.pm:357 diskdrake/interactive.pm:472
+#: diskdrake/hd_gtk.pm:380
#, c-format
-msgid "Create"
-msgstr "Creu"
+msgid "This partition is already empty"
+msgstr "Mae'r rhaniad eisoes yn wag"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:365
-#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:625
-#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
-#: standalone/harddrake2:108 standalone/harddrake2:117
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Type"
-msgstr "Math"
+msgid "Use ``Unmount'' first"
+msgstr "Defnyddiwch \"Dadosod\" yn gyntaf"
-#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: diskdrake/hd_gtk.pm:359 diskdrake/interactive.pm:457
-#: standalone/drakperm:123 standalone/printerdrake:248
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Delete"
-msgstr "Dileu"
+msgid "Use ``%s'' instead"
+msgstr "Defnyddiwch \"%s\" yn lle hynny"
-#: diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:389 diskdrake/interactive.pm:441
+#: diskdrake/interactive.pm:611 diskdrake/interactive.pm:1083
+#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Defnyddiwch \"Dadosod\" yn gyntaf"
+msgid "Type"
+msgstr "Math"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose another partition"
msgstr "Dewiswch raniad arall"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose a partition"
msgstr "Dewiswch raniad"
-#: diskdrake/interactive.pm:224
-#, c-format
-msgid "Exit"
-msgstr "Gadael"
-
-#: diskdrake/interactive.pm:257 help.pm:531
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Undo"
msgstr "Dadwneud"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to normal mode"
msgstr "Arbenigwr > Cyffredinol"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to expert mode"
msgstr "Cyffredinol > Arbenigwr"
-#: diskdrake/interactive.pm:276
+#: diskdrake/interactive.pm:269 diskdrake/interactive.pm:279
+#: diskdrake/interactive.pm:1158
+#, c-format
+msgid "Confirmation"
+msgstr "Gwiriad"
+
+#: diskdrake/interactive.pm:269
#, c-format
msgid "Continue anyway?"
msgstr "Parhau beth bynnag?"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without saving"
msgstr "Gorffen heb gadw"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Gorffen heb ysgrifennu'r tabl rhaniadau?"
-#: diskdrake/interactive.pm:286
+#: diskdrake/interactive.pm:279
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ydych eisiau cadw newidiadau /etc/fstab"
-#: diskdrake/interactive.pm:293 install_steps_interactive.pm:317
+#: diskdrake/interactive.pm:286 fs/partitioning_wizard.pm:247
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bydd angen i chi ail gychwyn cyn i'r newidiadau yn eich tabl rhaniad ddigwydd"
-#: diskdrake/interactive.pm:298
+#: diskdrake/interactive.pm:291
#, c-format
msgid ""
"You should format partition %s.\n"
@@ -2337,90 +1425,90 @@ msgstr ""
"Fel arall ni fydd mynediad i bwynt gosod %s yn cael ei ysgrifennu yn fstab.\n"
"Gadael beth bynnag?"
-#: diskdrake/interactive.pm:311 help.pm:531
+#: diskdrake/interactive.pm:304
#, c-format
msgid "Clear all"
msgstr "Clirio i gyd"
-#: diskdrake/interactive.pm:312 help.pm:531
+#: diskdrake/interactive.pm:305
#, c-format
msgid "Auto allocate"
msgstr "Awto ddynodi"
-#: diskdrake/interactive.pm:313 help.pm:531 help.pm:567 help.pm:607
-#: help.pm:856 install_steps_interactive.pm:98
+#: diskdrake/interactive.pm:306 diskdrake/interactive.pm:360
+#: interactive/curses.pm:457
#, c-format
msgid "More"
msgstr "Rhagor"
-#: diskdrake/interactive.pm:318
+#: diskdrake/interactive.pm:311
#, c-format
msgid "Hard drive information"
msgstr "Gwybodaeth am y ddisg galed"
-#: diskdrake/interactive.pm:350
+#: diskdrake/interactive.pm:343
#, c-format
msgid "All primary partitions are used"
msgstr "Mae pob rhaniad cynradd wedi ei ddefnyddio"
-#: diskdrake/interactive.pm:351
+#: diskdrake/interactive.pm:344
#, c-format
msgid "I can not add any more partitions"
msgstr "Does dim modd ychwanegu rhaniadau ychwanegol"
-#: diskdrake/interactive.pm:352
+#: diskdrake/interactive.pm:345
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "I gael mwy o raniadau, dilëwch un i greu rhaniad estynedig"
-#: diskdrake/interactive.pm:361
+#: diskdrake/interactive.pm:354
#, c-format
msgid "No supermount"
msgstr "Dim uwchosod"
-#: diskdrake/interactive.pm:362
+#: diskdrake/interactive.pm:355
#, c-format
msgid "Supermount"
msgstr "Uwchosod"
-#: diskdrake/interactive.pm:363
+#: diskdrake/interactive.pm:356
#, c-format
msgid "Supermount except for CDROM drives"
msgstr "Uwchosod heblaw am yrrwyr CDROM"
-#: diskdrake/interactive.pm:369 help.pm:531
+#: diskdrake/interactive.pm:362
#, c-format
msgid "Save partition table"
msgstr "Cadw'r tabl rhaniad"
-#: diskdrake/interactive.pm:370 help.pm:531
+#: diskdrake/interactive.pm:363
#, c-format
msgid "Restore partition table"
msgstr "Adfer y tabl rhaniad"
-#: diskdrake/interactive.pm:371 help.pm:531
+#: diskdrake/interactive.pm:364
#, c-format
msgid "Rescue partition table"
msgstr "Achub y tabl rhaniadau"
-#: diskdrake/interactive.pm:373 help.pm:531
+#: diskdrake/interactive.pm:366
#, c-format
msgid "Reload partition table"
msgstr "Ail-lwytho'r tabl rhaniad"
-#: diskdrake/interactive.pm:375
+#: diskdrake/interactive.pm:368
#, c-format
msgid "Removable media automounting"
msgstr "Cyfrwng symudadwy'n awto-osod"
-#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:414
+#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:407
#, c-format
msgid "Select file"
msgstr "Dewiswch ffeil"
-#: diskdrake/interactive.pm:400
+#: diskdrake/interactive.pm:393
#, c-format
msgid ""
"The backup partition table has not the same size\n"
@@ -2429,87 +1517,97 @@ msgstr ""
"Nid yw'r tabl rhaniad wrth gefn yr un maint\n"
"Parhau?"
-#: diskdrake/interactive.pm:429
+#: diskdrake/interactive.pm:422
#, c-format
msgid "Trying to rescue partition table"
msgstr "Yn ceisio achub y tabl rhaniadau"
-#: diskdrake/interactive.pm:435
+#: diskdrake/interactive.pm:428
#, c-format
msgid "Detailed information"
msgstr "Gwybodaeth fanwl"
-#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:444 diskdrake/interactive.pm:764
#, c-format
msgid "Resize"
msgstr "Newid maint"
-#: diskdrake/interactive.pm:452
+#: diskdrake/interactive.pm:445
#, c-format
msgid "Format"
msgstr "Fformatio"
-#: diskdrake/interactive.pm:454
+#: diskdrake/interactive.pm:447 diskdrake/interactive.pm:850
#, c-format
msgid "Add to RAID"
msgstr "Ychwanegu i RAID"
-#: diskdrake/interactive.pm:455
+#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:867
#, c-format
msgid "Add to LVM"
msgstr "Ychwanegu i LVM"
-#: diskdrake/interactive.pm:458
+#: diskdrake/interactive.pm:450
+#, c-format
+msgid "Delete"
+msgstr "Dileu"
+
+#: diskdrake/interactive.pm:451
#, c-format
msgid "Remove from RAID"
msgstr "Tynnu o RAID"
-#: diskdrake/interactive.pm:459
+#: diskdrake/interactive.pm:452
#, c-format
msgid "Remove from LVM"
msgstr "Tynnu o LVM"
-#: diskdrake/interactive.pm:460
+#: diskdrake/interactive.pm:453
#, c-format
msgid "Modify RAID"
msgstr "Newid RAID"
-#: diskdrake/interactive.pm:461
+#: diskdrake/interactive.pm:454
#, c-format
msgid "Use for loopback"
msgstr "Defnyddiwch ar gyfer cylchol"
-#: diskdrake/interactive.pm:516
+#: diskdrake/interactive.pm:465
+#, c-format
+msgid "Create"
+msgstr "Creu"
+
+#: diskdrake/interactive.pm:509 diskdrake/interactive.pm:511
#, c-format
msgid "Create a new partition"
msgstr "Creu rhaniad newydd"
-#: diskdrake/interactive.pm:519
+#: diskdrake/interactive.pm:513
#, c-format
msgid "Start sector: "
msgstr "Sector dechreuol: "
-#: diskdrake/interactive.pm:521 diskdrake/interactive.pm:938
+#: diskdrake/interactive.pm:516 diskdrake/interactive.pm:937
#, c-format
msgid "Size in MB: "
msgstr "Maint mewn MB: "
-#: diskdrake/interactive.pm:522 diskdrake/interactive.pm:939
+#: diskdrake/interactive.pm:518 diskdrake/interactive.pm:938
#, c-format
msgid "Filesystem type: "
msgstr "Math o system ffeilio"
-#: diskdrake/interactive.pm:527
+#: diskdrake/interactive.pm:524
#, c-format
msgid "Preference: "
msgstr "Dewis"
-#: diskdrake/interactive.pm:530
+#: diskdrake/interactive.pm:527
#, c-format
msgid "Logical volume name "
msgstr "Enw cyfrol resymegol"
-#: diskdrake/interactive.pm:560
+#: diskdrake/interactive.pm:547
#, c-format
msgid ""
"You can not create a new partition\n"
@@ -2520,49 +1618,54 @@ msgstr ""
"(gan eich bod wedi cyrraedd y nifer uchaf o raniadau cynradd).\n"
"Diddymwch raniad cynradd a chreu rhaniad estynedig."
-#: diskdrake/interactive.pm:590
+#: diskdrake/interactive.pm:577
#, c-format
msgid "Remove the loopback file?"
msgstr "Tynnu'r ffeil gylchol?"
-#: diskdrake/interactive.pm:609
+#: diskdrake/interactive.pm:596
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Wedi newid math raniad %s, bydd yr holl ddata ar y rhaniad yn cael ei golli"
-#: diskdrake/interactive.pm:621
+#: diskdrake/interactive.pm:608
#, c-format
msgid "Change partition type"
msgstr "Newid math y rhaniad"
-#: diskdrake/interactive.pm:622 diskdrake/removable.pm:47
+#: diskdrake/interactive.pm:610 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Pa fath o system ffeil ydych chi eisiau?"
-#: diskdrake/interactive.pm:630
+#: diskdrake/interactive.pm:617
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "Newid o ext2 i ext3"
-#: diskdrake/interactive.pm:650
+#: diskdrake/interactive.pm:637 diskdrake/interactive.pm:640
#, c-format
msgid "Which volume label?"
msgstr "Pa label cyfrol?"
-#: diskdrake/interactive.pm:666
+#: diskdrake/interactive.pm:641
+#, c-format
+msgid "Label:"
+msgstr "Label:"
+
+#: diskdrake/interactive.pm:655
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Lle'r hoffech chi osod y ffeil gylchol %s?"
-#: diskdrake/interactive.pm:667
+#: diskdrake/interactive.pm:656
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Lle'r ydych am osod dyfais %s?"
-#: diskdrake/interactive.pm:672
+#: diskdrake/interactive.pm:661
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
@@ -2572,50 +1675,60 @@ msgstr ""
"gyfer cylch-ôl\n"
"Tynnu'r cylch-ôl yn gyntaf"
-#: diskdrake/interactive.pm:697
+#: diskdrake/interactive.pm:691
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Lle'r ydych am osod %s?"
-#: diskdrake/interactive.pm:721 diskdrake/interactive.pm:800
-#: install_interactive.pm:157 install_interactive.pm:189
+#: diskdrake/interactive.pm:715 diskdrake/interactive.pm:798
+#: fs/partitioning_wizard.pm:141 fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing"
msgstr "Newid maint"
-#: diskdrake/interactive.pm:721
+#: diskdrake/interactive.pm:715
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Cyfrifo ffiniau system ffeiliau FAT"
-#: diskdrake/interactive.pm:757
+#: diskdrake/interactive.pm:751
#, c-format
msgid "This partition is not resizeable"
msgstr "Nid oes modd newid maint y rhaniad"
-#: diskdrake/interactive.pm:762
+#: diskdrake/interactive.pm:756
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Dylai'r holl ddata ar y rhaniad gael ei gadw wrth gefn"
-#: diskdrake/interactive.pm:764
+#: diskdrake/interactive.pm:758
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Ar ôl newid maint rhaniad %s, bydd yr holl ddata ar y rhaniad yma yn cael ei "
"golli"
-#: diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:765
#, c-format
msgid "Choose the new size"
msgstr "Dewiswch y maint newydd"
-#: diskdrake/interactive.pm:770
+#: diskdrake/interactive.pm:766
#, c-format
msgid "New size in MB: "
msgstr "Maint mewn MB: "
-#: diskdrake/interactive.pm:811 install_interactive.pm:197
+#: diskdrake/interactive.pm:767
+#, c-format
+msgid "Minimum size: %s MB"
+msgstr "Lleiafswm maint: %s MB"
+
+#: diskdrake/interactive.pm:768
+#, c-format
+msgid "Maximum size: %s MB"
+msgstr "Uchawfswm maint : %s MB"
+
+#: diskdrake/interactive.pm:809 fs/partitioning_wizard.pm:181
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
@@ -2625,27 +1738,27 @@ msgstr ""
"gwiriadau'r system ffeiliau'n cael eu gwneud wrth i chi ail gychwyn Windows "
"(TM)"
-#: diskdrake/interactive.pm:852
+#: diskdrake/interactive.pm:850
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Dewis RAID presennol i ychwanegu ato"
-#: diskdrake/interactive.pm:854 diskdrake/interactive.pm:871
+#: diskdrake/interactive.pm:852 diskdrake/interactive.pm:869
#, c-format
msgid "new"
msgstr "newydd"
-#: diskdrake/interactive.pm:869
+#: diskdrake/interactive.pm:867
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Dewis LVM presennol i ychwanegu ato"
-#: diskdrake/interactive.pm:875
+#: diskdrake/interactive.pm:874
#, c-format
msgid "LVM name?"
-msgstr "Enw LVM"
+msgstr "Enw LVM?"
-#: diskdrake/interactive.pm:903
+#: diskdrake/interactive.pm:902
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
@@ -2655,215 +1768,221 @@ msgstr ""
"Ydych chi am symud ystentiau ffisegol a ddefnyddiwyd o'r gyfrol i gyfrol "
"arall?"
-#: diskdrake/interactive.pm:905
+#: diskdrake/interactive.pm:904
#, c-format
msgid "Moving physical extents"
msgstr "Symud ystent corfforol"
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:922
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Nid oes modd defnyddio'r rhaniad ar gyfer cylchol"
-#: diskdrake/interactive.pm:936
+#: diskdrake/interactive.pm:935
#, c-format
msgid "Loopback"
msgstr "Cylch-ôl"
-#: diskdrake/interactive.pm:937
+#: diskdrake/interactive.pm:936
#, c-format
msgid "Loopback file name: "
msgstr "Enw ffeil gylchol"
-#: diskdrake/interactive.pm:942
+#: diskdrake/interactive.pm:941
#, c-format
msgid "Give a file name"
msgstr "Rhowch enw ffeil"
-#: diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:944
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr ""
"Mae'r ffeil yn cael ei ddefnyddio eisoes gam cylchol arall, dewiswch un arall"
-#: diskdrake/interactive.pm:946
+#: diskdrake/interactive.pm:945
#, c-format
msgid "File already exists. Use it?"
msgstr "Mae'r ffeil yn bodoli eisoes. Defnyddiwch hwn?"
-#: diskdrake/interactive.pm:969
+#: diskdrake/interactive.pm:974 diskdrake/interactive.pm:977
#, c-format
msgid "Mount options"
msgstr "Dewisiadau gosod"
-#: diskdrake/interactive.pm:976
+#: diskdrake/interactive.pm:984
#, c-format
msgid "Various"
msgstr "Amrywiol"
-#: diskdrake/interactive.pm:1044
+#: diskdrake/interactive.pm:1049
#, c-format
msgid "device"
msgstr "dyfais"
-#: diskdrake/interactive.pm:1045
+#: diskdrake/interactive.pm:1050
#, c-format
msgid "level"
msgstr "lefel"
-#: diskdrake/interactive.pm:1046
+#: diskdrake/interactive.pm:1051
#, c-format
msgid "chunk size in KiB"
msgstr "Maint darn yn KiB"
-#: diskdrake/interactive.pm:1063
+#: diskdrake/interactive.pm:1068
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Byddwch ofalus: mae'r weithred hon yn beryglus."
-#: diskdrake/interactive.pm:1078
+#: diskdrake/interactive.pm:1083
#, c-format
msgid "What type of partitioning?"
msgstr "Pa fath o raniad ?"
-#: diskdrake/interactive.pm:1116
+#: diskdrake/interactive.pm:1121
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Mi fydd angen i chi ailgychwyn cyn i'r newidiadau ddod i rym"
-#: diskdrake/interactive.pm:1125
+#: diskdrake/interactive.pm:1130
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Mae tabl rhaniad disg %s yn mynd i gael ei ysgrifennu i'r ddisg!"
-#: diskdrake/interactive.pm:1148
+#: diskdrake/interactive.pm:1153
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Wedi fformatio rhaniad %s, bydd yr holl ddata ar y rhaniad yn cael ei golli"
-#: diskdrake/interactive.pm:1164
+#: diskdrake/interactive.pm:1158 fs/partitioning.pm:49
+#, c-format
+msgid "Check bad blocks?"
+msgstr "Gwirio blociau gwallus?"
+
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Move files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: diskdrake/interactive.pm:1164 standalone/draksambashare:81
-#: standalone/draksambashare:144
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Hide files"
msgstr "Cuddio ffeiliau"
-#: diskdrake/interactive.pm:1165
+#: diskdrake/interactive.pm:1173
#, c-format
msgid ""
"Directory %s already contains data\n"
-"(%s)"
+"(%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 ""
-"Mae cyfarwyddiadur %s eisoes yn cynnwys peth data\n"
-"(%s)"
+"Mae cyfeiriadur %s eisoes yn cynnwys data\n"
+"(%s)\n"
+"\n"
+"Gallwch un ai ddewis i symud y ffeiliau i'r rhaniad fydd wedi ei osod yno "
+"neu eu gadael lle y maent (sy'n golygu eu cuddio gan gynnwys y rhaniad hwnnw)"
-#: diskdrake/interactive.pm:1176
+#: diskdrake/interactive.pm:1188
#, c-format
msgid "Moving files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: diskdrake/interactive.pm:1180
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "Copying %s"
msgstr "Copïo %s"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1196
#, c-format
msgid "Removing %s"
msgstr "Tynnu %s"
-#: diskdrake/interactive.pm:1198
+#: diskdrake/interactive.pm:1210
#, c-format
msgid "partition %s is now known as %s"
msgstr "Mae rhaniad %s yn cael ei alw'n %s"
-#: diskdrake/interactive.pm:1199
+#: diskdrake/interactive.pm:1211
#, c-format
msgid "Partitions have been renumbered: "
msgstr "Mae'r rhaniadau wedi eu hail-rifo"
-#: diskdrake/interactive.pm:1219 diskdrake/interactive.pm:1281
+#: diskdrake/interactive.pm:1231 diskdrake/interactive.pm:1293
#, c-format
msgid "Device: "
msgstr "Dyfais: "
-#: diskdrake/interactive.pm:1220
-#, c-format
-msgid "Devfs name: "
-msgstr "Enw devfs:"
-
-#: diskdrake/interactive.pm:1221
+#: diskdrake/interactive.pm:1232
#, c-format
msgid "Volume label: "
msgstr "Label y gyfrol:"
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1233
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Llythyren disg DOS: %s (dim ond dyfalu)\n"
-#: diskdrake/interactive.pm:1226 diskdrake/interactive.pm:1235
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1237 diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1311
#, c-format
msgid "Type: "
msgstr "Math: "
-#: diskdrake/interactive.pm:1230 install_steps_gtk.pm:300
+#: diskdrake/interactive.pm:1241
#, c-format
msgid "Name: "
msgstr "Enw : "
-#: diskdrake/interactive.pm:1237
+#: diskdrake/interactive.pm:1248
#, c-format
msgid "Start: sector %s\n"
msgstr "Dechrau: sector %s\n"
-#: diskdrake/interactive.pm:1238
+#: diskdrake/interactive.pm:1249
#, c-format
msgid "Size: %s"
msgstr "Maint: %s"
-#: diskdrake/interactive.pm:1240
+#: diskdrake/interactive.pm:1251
#, c-format
msgid ", %s sectors"
msgstr ", %s sector"
-#: diskdrake/interactive.pm:1242
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d i silindr %d\n"
-#: diskdrake/interactive.pm:1243
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Number of logical extents: %d\n"
msgstr "Nifer clystyrau rhesymegol: %d\n"
-#: diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Formatted\n"
msgstr "Wedi ei fformatio\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "Not formatted\n"
msgstr "Heb ei fformatio\n"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Mounted\n"
msgstr "Gosodwyd\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1252
+#: diskdrake/interactive.pm:1263
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2872,7 +1991,7 @@ msgstr ""
"Ffeil(iau) Cylch-ôl:\n"
" %s\n"
-#: diskdrake/interactive.pm:1253
+#: diskdrake/interactive.pm:1264
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2881,27 +2000,27 @@ msgstr ""
"Cychwyn y rhaniad fel rhagosodwyd\n"
" (ar gyfer cychwyn MS-DOS, nid ar gyfer lilo)\n"
-#: diskdrake/interactive.pm:1255
+#: diskdrake/interactive.pm:1266
#, c-format
msgid "Level %s\n"
msgstr "Lefel %s\n"
-#: diskdrake/interactive.pm:1256
+#: diskdrake/interactive.pm:1267
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Maint darn %d KiB\n"
-#: diskdrake/interactive.pm:1257
+#: diskdrake/interactive.pm:1268
#, c-format
msgid "RAID-disks %s\n"
msgstr "Disg RAID %s\n"
-#: diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1270
#, c-format
msgid "Loopback file name: %s"
msgstr "Enw ffeil gylchol: %s"
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1273
#, c-format
msgid ""
"\n"
@@ -2914,7 +2033,7 @@ msgstr ""
"yw'r rhaniad hwn. Gwell gadael\n"
"llonydd iddo.\n"
-#: diskdrake/interactive.pm:1265
+#: diskdrake/interactive.pm:1276
#, c-format
msgid ""
"\n"
@@ -2927,75 +2046,78 @@ msgstr ""
"hwn ar gyfer cychwyniad\n"
"dwbl eich system\n"
-#: diskdrake/interactive.pm:1282
+#: diskdrake/interactive.pm:1285
+#, c-format
+msgid "Empty space on %s (%s)"
+msgstr ""
+
+#: diskdrake/interactive.pm:1294
#, c-format
msgid "Read-only"
msgstr "Darllen yn unig"
-#: diskdrake/interactive.pm:1283
+#: diskdrake/interactive.pm:1295
#, c-format
msgid "Size: %s\n"
msgstr "Maint: %s\n"
-#: diskdrake/interactive.pm:1284
+#: diskdrake/interactive.pm:1296
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometreg: %s silindr, %s pen, %s sector\n"
-#: diskdrake/interactive.pm:1285 network/thirdparty.pm:331
+#: diskdrake/interactive.pm:1297
#, c-format
msgid "Info: "
msgstr "Gwybodaeth:"
-#: diskdrake/interactive.pm:1286
+#: diskdrake/interactive.pm:1298
#, c-format
msgid "LVM-disks %s\n"
msgstr "Disg LVM %s\n"
-#: diskdrake/interactive.pm:1287
+#: diskdrake/interactive.pm:1299
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tabl rhaniad math: %s\n"
-#: diskdrake/interactive.pm:1288
+#: diskdrake/interactive.pm:1300
#, c-format
msgid "on channel %d id %d\n"
msgstr "ar sianel %d id %d\n"
-#: diskdrake/interactive.pm:1331
+#: diskdrake/interactive.pm:1343
#, c-format
msgid "Filesystem encryption key"
msgstr "Allwedd amgryptio system ffeil : "
-#: diskdrake/interactive.pm:1332
+#: diskdrake/interactive.pm:1344
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Dewiswch eich allwedd amgryptio system ffeiliau"
-#: diskdrake/interactive.pm:1335
+#: diskdrake/interactive.pm:1347
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Mae'r allwedd amgryptio'n rhy syml (mae'n rhaid bod o leiaf %d nod o hyd)"
-#: diskdrake/interactive.pm:1336
+#: diskdrake/interactive.pm:1348
#, c-format
msgid "The encryption keys do not match"
msgstr "Nid yw'r allweddi amgryptio'n cyd-fynd"
-#: diskdrake/interactive.pm:1339 network/netconnect.pm:1073
-#: standalone/drakconnect:419 standalone/drakroam:120
+#: diskdrake/interactive.pm:1351
#, c-format
msgid "Encryption key"
msgstr "Allwedd amgryptio"
-#: diskdrake/interactive.pm:1340
+#: diskdrake/interactive.pm:1352
#, c-format
msgid "Encryption key (again)"
msgstr "Allwedd amgryptio (eto)"
-#: diskdrake/interactive.pm:1342 standalone/drakvpn:1017
-#: standalone/drakvpn:1102
+#: diskdrake/interactive.pm:1354
#, c-format
msgid "Encryption algorithm"
msgstr "Algorithm amgryptio"
@@ -3005,28 +2127,36 @@ msgstr "Algorithm amgryptio"
msgid "Change type"
msgstr "Newid y math"
-#: diskdrake/smbnfs_gtk.pm:163
+#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:539
+#: interactive/curses.pm:214 interactive/http.pm:104 interactive/http.pm:160
+#: interactive/stdio.pm:39 interactive/stdio.pm:142 ugtk2.pm:404 ugtk2.pm:506
+#: ugtk2.pm:515 ugtk2.pm:788
+#, c-format
+msgid "Cancel"
+msgstr "Diddymu"
+
+#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr ""
"Methu mewngofnodi gan ddefnyddio enw defnyddiwr %s (cyfrinair anghywir?)"
-#: diskdrake/smbnfs_gtk.pm:167 diskdrake/smbnfs_gtk.pm:176
+#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Angen Dilysu Parth"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Pa enw defnyddiwr"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Un arall"
-#: diskdrake/smbnfs_gtk.pm:177
+#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
@@ -3034,85 +2164,81 @@ msgstr ""
"Rhowch eich enw defnyddiwr, cyfrinair ac enw parth i gael mynediad i'r "
"gwesteiwr."
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3640
+#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Enw defnyddiwr"
-#: diskdrake/smbnfs_gtk.pm:205
+#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Chwiliwch am weinyddion"
-#: diskdrake/smbnfs_gtk.pm:210
+#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr "Chwiliwch weinyddion newydd"
-#: do_pkgs.pm:16 do_pkgs.pm:49
+#: do_pkgs.pm:16 do_pkgs.pm:53
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"
-#: do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:52 printer/printerdrake.pm:3948
+#: do_pkgs.pm:19 do_pkgs.pm:40 do_pkgs.pm:56
#, c-format
msgid "Could not install the %s package!"
msgstr "Methu gosod pecyn %s!"
-#: do_pkgs.pm:24 do_pkgs.pm:57
+#: do_pkgs.pm:24 do_pkgs.pm:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Mae pecyn gorfodol %s ar goll"
-#: do_pkgs.pm:35 harddrake/sound.pm:278 install_steps_interactive.pm:1288
-#: keyboard.pm:381 network/ndiswrapper.pm:95 network/netconnect.pm:471
-#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2495
-#: printer/printerdrake.pm:2632 printer/printerdrake.pm:2953
-#: printer/printerdrake.pm:2960 printer/printerdrake.pm:3947
-#: printer/printerdrake.pm:4211 printer/printerdrake.pm:4330
-#: printer/printerdrake.pm:5487 standalone/drakTermServ:354
-#: standalone/drakTermServ:1267 standalone/drakTermServ:1328
-#: standalone/drakTermServ:2006 standalone/drakbackup:510
-#: standalone/drakbackup:609 standalone/drakboot:133 standalone/drakclock:224
-#: standalone/drakconnect:973 standalone/drakfont:679 standalone/drakperm:380
-#: standalone/drakperm:390 standalone/drakups:27 standalone/harddrake2:510
-#: standalone/harddrake2:526 standalone/localedrake:43
-#: standalone/scannerdrake:51 standalone/scannerdrake:957
-#, c-format
-msgid "Warning"
-msgstr "Rhybudd"
-
-#: do_pkgs.pm:35 standalone/harddrake2:526
+#: do_pkgs.pm:35
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Mae'r pecynnau canlynol angen eu gosod:\n"
-#: do_pkgs.pm:205
+#: do_pkgs.pm:209
#, c-format
msgid "Installing packages..."
msgstr "Gosod pecynnau..."
-#: do_pkgs.pm:252
+#: do_pkgs.pm:255
#, c-format
msgid "Removing packages..."
msgstr "Tynnu pecyn..."
-#: fs/format.pm:58 fs/format.pm:65
+#: fs/any.pm:17
+#, c-format
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Digwyddodd gwall - heb ganfod unrhyw ddyfeisiau dilys er mwyn creu system "
+"ffeil arnynt. Gwiriwch eich caledwedd am reswm dros y gwall."
+
+#: fs/any.pm:62 fs/partitioning_wizard.pm:55
+#, c-format
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Rhaid cael rhaniad FAT wedi ei fowntio yn /boot/efi"
+
+#: fs/format.pm:59 fs/format.pm:66
#, c-format
msgid "Formatting partition %s"
msgstr "Yn fformatio rhaniad %s"
-#: fs/format.pm:62
+#: fs/format.pm:63
#, c-format
msgid "Creating and formatting file %s"
msgstr "Creu a fformatio ffeil %s"
-#: fs/format.pm:115
+#: fs/format.pm:116
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "Nid wyf yn gwybod sut i fformatio %s ym math %s"
-#: fs/format.pm:120 fs/format.pm:122
+#: fs/format.pm:121 fs/format.pm:123
#, c-format
msgid "%s formatting of %s failed"
msgstr "methodd fformatio %s o %s"
@@ -3122,27 +2248,27 @@ msgstr "methodd fformatio %s o %s"
msgid "Circular mounts %s\n"
msgstr "Gosodiadau cylch %s\n"
-#: fs/mount.pm:74
+#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "Yn fformatio rhaniad %s"
-#: fs/mount.pm:75
+#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "methodd gosod rhaniad %s yng nghyfeiriadur %s"
-#: fs/mount.pm:80 fs/mount.pm:97
+#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "Gwirio %s"
-#: fs/mount.pm:113 partition_table.pm:385
+#: fs/mount.pm:118 partition_table.pm:384
#, c-format
msgid "error unmounting %s: %s"
msgstr "gwall dadosod %s: %s"
-#: fs/mount.pm:142
+#: fs/mount.pm:133
#, c-format
msgid "Enabling swap partition %s"
msgstr "Galluogi rhaniad cyfnewid %s"
@@ -3213,39 +2339,313 @@ msgstr "Gosodwch y system ffeiliau fel darllen yn unig."
#: fs/mount_options.pm:135
#, c-format
msgid "All I/O to the file system should be done synchronously."
-msgstr "Dylai pob I/O i'r system ffeil gael ei wneud yn gydamserol"
+msgstr "Dylai pob I/O i'r system ffeil gael ei wneud yn gydamserol."
#: fs/mount_options.pm:139
#, c-format
+msgid "Allow every user to mount and umount the file system."
+msgstr "Caniatáu pob defnyddiwr i osod a dadosod y system ffeiliau."
+
+#: fs/mount_options.pm:141
+#, c-format
msgid "Allow an ordinary user to mount the file system."
msgstr "Caniatáu i ddefnyddiwr cyffredin osod system ffeil."
-#: fs/mount_options.pm:141
+#: fs/mount_options.pm:143
#, c-format
msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr "Galluogi defnyddiwr i gyfrifo cwota disg ac o ddewis gorfodi terfynau."
-#: fs/mount_options.pm:143
+#: fs/mount_options.pm:145
#, c-format
-msgid "Support user. extended attributes"
-msgstr "Cefnogaeth defnyddiwr, priodweddau pellach"
+msgid "Support \"user.\" extended attributes"
+msgstr "Cefnogaeth \"defnyddiwr.\" priodweddau pellach"
-#: fs/mount_options.pm:145
+#: fs/mount_options.pm:147
#, c-format
msgid "Give write access to ordinary users"
msgstr "Rhoi mynediad ysgrifennu i ddefnyddwyr cyffredin"
-#: fs/mount_options.pm:147
+#: fs/mount_options.pm:149
#, c-format
msgid "Give read-only access to ordinary users"
msgstr "Rhoi mynediad darllen yn unig i ddefnyddwyr cyffredin"
-#: fs/type.pm:363
+#: fs/mount_point.pm:80
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Pwynt mowntio dyblyg %s"
+
+#: fs/mount_point.pm:95
+#, c-format
+msgid "No partition available"
+msgstr "Dim rhaniad ar gael"
+
+#: fs/mount_point.pm:98
+#, c-format
+msgid "Scanning partitions to find mount points"
+msgstr "Sganio rhaniadau i ganfod pwyntiau mowntio"
+
+#: fs/mount_point.pm:105
+#, c-format
+msgid "Choose the mount points"
+msgstr "Dewiswch bwyntiau mowntio"
+
+#: fs/partitioning.pm:46
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "Dewiswch y rhaniadau rydych am eu fformatio"
+
+#: fs/partitioning.pm:76
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+"Methu gwirio system ffeil %s. Hoffech chi gywiro'r gwallau? (gofal, mae modd "
+"colli data)"
+
+#: fs/partitioning.pm:79
+#, c-format
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Dim digon o le cyfnewid i gyflawni'r gosod, ychwanegwch"
+
+#: fs/partitioning_wizard.pm:47
+#, c-format
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"Rhaid cael rhainiad root.\n"
+"Ar gyfer gwneud hyn , crëwch raniad (neu cliciwch ar un cyfredol).\n"
+"Yna dewiswch weithred ``Pwynt mowntio'' a'i osod i `/'"
+
+#: fs/partitioning_wizard.pm:52
+#, c-format
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+"Nid oes gennych raniad cyfnewid.\n"
+"\n"
+"Parhau beth bynnag?"
+
+#: fs/partitioning_wizard.pm:80
+#, c-format
+msgid "Use free space"
+msgstr "Defnyddiwch le rhydd"
+
+#: fs/partitioning_wizard.pm:82
+#, c-format
+msgid "Not enough free space to allocate new partitions"
+msgstr "Nid oes digon o le ar gyfer dynodi rhaniadau newydd"
+
+#: fs/partitioning_wizard.pm:90
+#, c-format
+msgid "Use existing partitions"
+msgstr "Defnyddio'r rhaniadau presennol"
+
+#: fs/partitioning_wizard.pm:92
+#, c-format
+msgid "There is no existing partition to use"
+msgstr "Nid oes rhaniad presennol ar gael"
+
+#: fs/partitioning_wizard.pm:99
+#, c-format
+msgid "Use the Microsoft Windows® partition for loopback"
+msgstr "Defnyddiwch raniad Microsoft Windows® ar gyfer cylch ôl."
+
+#: fs/partitioning_wizard.pm:102
+#, c-format
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Pa raniad hoffech ei ddefnyddio ar gyfer Linux4Win?"
+
+#: fs/partitioning_wizard.pm:104
+#, c-format
+msgid "Choose the sizes"
+msgstr "Dewis maint"
+
+#: fs/partitioning_wizard.pm:105
+#, c-format
+msgid "Root partition size in MB: "
+msgstr "Maint rhaniad root mewn MB: "
+
+#: fs/partitioning_wizard.pm:106
+#, c-format
+msgid "Swap partition size in MB: "
+msgstr "Maint rhaniad cyfnewid mewn MB: "
+
+#: fs/partitioning_wizard.pm:115
+#, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+"Nid oes rhaniad FAT i'w ddefnyddio ar gyfer cylch ôl (dim digon o le ar ôl)"
+
+#: fs/partitioning_wizard.pm:122
+#, c-format
+msgid "Use the free space on the Microsoft Windows® partition"
+msgstr "Defnyddio lle rhydd ar raniad Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:124
+#, c-format
+msgid "Which partition do you want to resize?"
+msgstr "Pa raniad hoffech newid ei faint?"
+
+#: fs/partitioning_wizard.pm:138
+#, c-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+"Nid yw'r rhaglen newid maint FAT yn gallu trin eich rhaniad,\n"
+"digwyddodd y gwall canlynol: %s"
+
+#: fs/partitioning_wizard.pm:141
+#, c-format
+msgid "Computing the size of the Microsoft Windows® partition"
+msgstr "Mesur maint rhaniad Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:148
+#, c-format
+msgid ""
+"Your Microsoft Windows® partition is too fragmented. Please reboot your "
+"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
+"the Mandriva Linux installation."
+msgstr ""
+"Mae eich rhaniad Microsoft Windows® yn rhy ddarniog. Ailgychwynnwch eich "
+"cyfrifiadur yn Microsoft Windows®, a rhedeg y rhaglen `defrag'', yna "
+"ailgychwyn gosod Mandriva Linux."
+
+#: fs/partitioning_wizard.pm:151
+#, 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 ""
+"RHYBUDD!\n"
+"\n"
+"\n"
+"Bydd maint eich rhaniad Microsoft Windows® yn cael ei newid.\n"
+"\n"
+"\n"
+"Byddwch ofalus: mae'r weithred hon yn beryglus. Os nad ydych wedi gwneud "
+"hynny eisoes, rhaid gadael y gosod, rhedeg \"chkdsk c:\" o'r Llinell "
+"Orchymyn yn Microsoft Windows® (rhybudd: nid yw rhedeg y rhaglen \"scandisk"
+"\" yn ddigon, gwnewch yn siŵr eich bod yn defnyddio \"chkdsk\" mewn Llinell "
+"Orchymyn!), neu rhedwch defrag, yna ailgychwyn gosod. Dylech hefyd wneud "
+"copi wrth gefn o'ch data.\n"
+"\n"
+"\n"
+"When sure, press %s."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: fs/partitioning_wizard.pm:160 interactive.pm:538 interactive/curses.pm:217
+#: ugtk2.pm:508
+#, c-format
+msgid "Next"
+msgstr "Nesaf"
+
+#: fs/partitioning_wizard.pm:163
+#, c-format
+msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
+msgstr ""
+"Pa faint o le ydych am ei gadw ar gyfer Microsoft Windows® ar rhaniad %s?"
+
+#: fs/partitioning_wizard.pm:164
+#, c-format
+msgid "Size"
+msgstr "Maint"
+
+#: fs/partitioning_wizard.pm:173
+#, c-format
+msgid "Resizing Microsoft Windows® partition"
+msgstr "Newid maint rhaniad Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:178
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "Methodd newid maint FAT %s"
+
+#: fs/partitioning_wizard.pm:193
+#, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr "Nid oes rhaint FAT i newid ei faint (neu does dim digon o le)"
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Remove Microsoft Windows®"
+msgstr "Tynnu Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Erase and use entire disk"
+msgstr "Dileu a defnyddio'r ddisg gyfan"
+
+#: fs/partitioning_wizard.pm:200
+#, c-format
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Mae gennych fwy nag un disg caled, ar ba un hoffech osod linux?"
+
+#: fs/partitioning_wizard.pm:206
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Bydd POB rhaniad presennol a'u data'n cael eu colli ar yrrwr %si"
+
+#: fs/partitioning_wizard.pm:217
+#, c-format
+msgid "Custom disk partitioning"
+msgstr "Rhannu disg arbenigol"
+
+#: fs/partitioning_wizard.pm:223
+#, c-format
+msgid "Use fdisk"
+msgstr "Defnyddiwch fdisk"
+
+#: fs/partitioning_wizard.pm:226
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+"Gallwch nawr rannu %s.\n"
+"Ar ôl gorffen, peidiwch anghofio ei gadw dan ddefnyddio 'w'."
+
+#: fs/partitioning_wizard.pm:266
+#, c-format
+msgid "I can not find any room for installing"
+msgstr "Nid oes lle ar gyfer gosod"
+
+#: fs/partitioning_wizard.pm:270
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Mae dewin rhannu DrakX wedi canfod yr atebion canlynol:"
+
+#: fs/partitioning_wizard.pm:278
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Methodd creu'r rhaniad: %s"
+
+#: fs/type.pm:366
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "Does dim modd defnyddio JFS ar raniadau llai na 16MB"
-#: fs/type.pm:364
+#: fs/type.pm:367
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "Does dim modd defnyddio ReiserFS ar gyfer rhaniadau llai na 32MB"
@@ -3260,7 +2660,12 @@ msgstr "gyda /usr"
msgid "server"
msgstr "Gweinydd"
-#: fsedit.pm:219
+#: fsedit.pm:116
+#, c-format
+msgid "BIOS software RAID detected on disks %s. Activate it?"
+msgstr "Mae meddalwedd BIOS RAID wedi ei ganfod ar ddisgiau %s. Gweithredu?"
+
+#: fsedit.pm:230
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
@@ -3278,22 +2683,22 @@ msgstr ""
"\n"
"Ydych chi'n cytuno i golli'r holl raniadau?\n"
-#: fsedit.pm:392
+#: fsedit.pm:403
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Rhaid i bwyntiau gosod gynnwys / arweiniol"
-#: fsedit.pm:393
+#: fsedit.pm:404
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Dylai enw'r pwyntiau gosod gynnwys llythrennau a rhifau'n unig"
-#: fsedit.pm:394
+#: fsedit.pm:405
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Mae yna eisoes raniad gyda phwynt gosod %s\n"
-#: fsedit.pm:398
+#: fsedit.pm:409
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -3304,7 +2709,7 @@ msgstr ""
"Nid oes cychwynnwr yn gallu trin hwn heb raniad /boot\n"
"Cofiwch ychwanegu rhaniad /boot"
-#: fsedit.pm:404
+#: fsedit.pm:415
#, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
@@ -3313,7 +2718,7 @@ msgstr ""
"Does dim modd defnyddio Cyfrol Resymegol LVM ar gyfer pwynt gosod %s am ei "
"fod ar draws cyfrolau ffisegol."
-#: fsedit.pm:406
+#: fsedit.pm:417
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -3325,12 +2730,12 @@ msgstr ""
"Nid oes cychwynnwr yn gallu trin hwn pan yw ar draws cyfrolau ffisegol.\n"
"Cofiwch ychwanegu rhaniad /boot yn gyntaf"
-#: fsedit.pm:410 fsedit.pm:412
+#: fsedit.pm:421 fsedit.pm:423
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Dylai'r cyfeiriadur aros o fewn y system ffeilio gwraidd"
-#: fsedit.pm:414 fsedit.pm:416
+#: fsedit.pm:425 fsedit.pm:427
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -3339,22 +2744,22 @@ msgstr ""
"Mae angen gwir system ffeilio (ext2, reiserfs, xfs, neu jfs)) ar gyfer y "
"pwynt gosod\n"
-#: fsedit.pm:418
+#: fsedit.pm:429
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr "Nid oes modd defnyddio Cyfrol Resymegol LVM ar gyfer pwynt gosod %s"
-#: fsedit.pm:482
+#: fsedit.pm:493
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nid oes digon o le ar gyfer awto ddynodi"
-#: fsedit.pm:484
+#: fsedit.pm:495
#, c-format
msgid "Nothing to do"
msgstr "Dim i'w wneud"
-#: harddrake/data.pm:62 install_any.pm:1710
+#: harddrake/data.pm:62
#, c-format
msgid "Floppy"
msgstr "Disg Meddal"
@@ -3364,12 +2769,12 @@ msgstr "Disg Meddal"
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:88 install_any.pm:1711
+#: harddrake/data.pm:88
#, c-format
msgid "Hard Disk"
msgstr "Disg"
-#: harddrake/data.pm:97 install_any.pm:1712
+#: harddrake/data.pm:97
#, c-format
msgid "CDROM"
msgstr "CDROM"
@@ -3384,103 +2789,102 @@ msgstr "Llosgwyr CD/DVD"
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:127 standalone/drakbackup:2066
+#: harddrake/data.pm:127
#, c-format
msgid "Tape"
msgstr "Tâp"
-#: harddrake/data.pm:136
+#: harddrake/data.pm:138
+#, c-format
+msgid "AGP controllers"
+msgstr "Rheolyddion AGP"
+
+#: harddrake/data.pm:147
#, c-format
msgid "Videocard"
msgstr "Cerdyn fideo"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:157
#, c-format
msgid "DVB card"
msgstr "Cerdyn DVB"
-#: harddrake/data.pm:154
+#: harddrake/data.pm:165
#, c-format
msgid "Tvcard"
msgstr "Cerdyn Teledu"
-#: harddrake/data.pm:163
+#: harddrake/data.pm:174
#, c-format
msgid "Other MultiMedia devices"
msgstr "Dyfeisiau aml-gyfrwng eraill"
-#: harddrake/data.pm:172
+#: harddrake/data.pm:183
#, c-format
msgid "Soundcard"
msgstr "Cerdyn sain"
-#: harddrake/data.pm:185
+#: harddrake/data.pm:196
#, c-format
msgid "Webcam"
msgstr "Camera Gwe"
-#: harddrake/data.pm:199
+#: harddrake/data.pm:210
#, c-format
msgid "Processors"
msgstr "Prosesyddion"
-#: harddrake/data.pm:209
+#: harddrake/data.pm:220
#, c-format
msgid "ISDN adapters"
msgstr "Addaswyr ISDN"
-#: harddrake/data.pm:220
+#: harddrake/data.pm:231
#, c-format
msgid "USB sound devices"
msgstr "Dyfeisiau sain USB"
-#: harddrake/data.pm:229
+#: harddrake/data.pm:240
#, c-format
msgid "Radio cards"
msgstr "Cardiau radio"
-#: harddrake/data.pm:238
+#: harddrake/data.pm:249
#, c-format
msgid "ATM network cards"
msgstr "Cardiau rhwydwaith ATM"
-#: harddrake/data.pm:247
+#: harddrake/data.pm:258
#, c-format
msgid "WAN network cards"
msgstr "Cardiau rhwydwaith WAN"
-#: harddrake/data.pm:256
+#: harddrake/data.pm:267
#, c-format
msgid "Bluetooth devices"
msgstr "Dyfeisiau Bluetooth"
-#: harddrake/data.pm:265
+#: harddrake/data.pm:276
#, c-format
msgid "Ethernetcard"
msgstr "Cerdyn Ethernet"
-#: harddrake/data.pm:282 network/netconnect.pm:492
+#: harddrake/data.pm:293
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:292
+#: harddrake/data.pm:303
#, c-format
msgid "ADSL adapters"
msgstr "Addaswyr ADSL"
-#: harddrake/data.pm:306
+#: harddrake/data.pm:315
#, c-format
msgid "Memory"
msgstr "Cof"
-#: harddrake/data.pm:315
-#, c-format
-msgid "AGP controllers"
-msgstr "Rheolyddion AGP"
-
-#: harddrake/data.pm:324 help.pm:187 help.pm:856
-#: install_steps_interactive.pm:964
+#: harddrake/data.pm:324
#, c-format
msgid "Printer"
msgstr "Argraffydd"
@@ -3506,85 +2910,92 @@ msgstr "Rheolyddion SATA"
msgid "RAID controllers"
msgstr "Rheolyddion RAID"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Rheolyddion (E)IDE/ATA"
-#: harddrake/data.pm:385
+#: harddrake/data.pm:386
+#, c-format
+msgid "USB Mass Storage Devices"
+msgstr "Dyfeisiau Storio Crynswth USB"
+
+#: harddrake/data.pm:395
+#, fuzzy, c-format
+msgid "Card readers"
+msgstr "Model cerdyn:"
+
+#: harddrake/data.pm:404
#, c-format
msgid "Firewire controllers"
msgstr "Rheolyddion firewire"
-#: harddrake/data.pm:394
+#: harddrake/data.pm:413
#, c-format
msgid "PCMCIA controllers"
msgstr "Rheolyddion PCMCIA"
-#: harddrake/data.pm:403
+#: harddrake/data.pm:422
#, c-format
msgid "SCSI controllers"
msgstr "Rheolyddion SCSI"
-#: harddrake/data.pm:412
+#: harddrake/data.pm:431
#, c-format
msgid "USB controllers"
msgstr "Rheolyddion USB"
-#: harddrake/data.pm:421
+#: harddrake/data.pm:440
#, c-format
msgid "USB ports"
msgstr "Pyrth USB"
-#: harddrake/data.pm:430
+#: harddrake/data.pm:449
#, c-format
msgid "SMBus controllers"
msgstr "Rheolyddion SMBus"
-#: harddrake/data.pm:439
+#: harddrake/data.pm:458
#, c-format
msgid "Bridges and system controllers"
msgstr "Rheolyddion pontydd a system"
-#: harddrake/data.pm:450 help.pm:856 install_steps_interactive.pm:94
-#: install_steps_interactive.pm:924 standalone/finish-install:41
-#: standalone/keyboarddrake:29
+#: harddrake/data.pm:469
#, c-format
msgid "Keyboard"
msgstr "Bysellfwrdd"
-#: harddrake/data.pm:463
+#: harddrake/data.pm:482
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tabled a sgrin cyffwrdd"
-#: harddrake/data.pm:472 help.pm:856 install_steps_interactive.pm:957
+#: harddrake/data.pm:491
#, c-format
msgid "Mouse"
msgstr "Llygoden"
-#: harddrake/data.pm:486
+#: harddrake/data.pm:505
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:495
+#: harddrake/data.pm:514
#, c-format
msgid "Scanner"
msgstr "Sganiwr"
-#: harddrake/data.pm:505 standalone/harddrake2:475
+#: harddrake/data.pm:524
#, c-format
msgid "Unknown/Others"
msgstr "Anhysbys/Eraill"
-#: harddrake/data.pm:533
+#: harddrake/data.pm:552
#, c-format
msgid "cpu # "
msgstr "cpu # "
-#: harddrake/sound.pm:195 standalone/drakconnect:162
-#: standalone/drakconnect:637
+#: harddrake/sound.pm:195
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Arhoswch...Gosod y ffurfweddiad"
@@ -3668,17 +3079,17 @@ msgstr ""
"- api ALSA newydd sy'n darparu llawer o nodweddion gell ond sydd angen "
"defnyddio llyfrgell ALSA.\n"
-#: harddrake/sound.pm:262 harddrake/sound.pm:350 standalone/drakups:144
+#: harddrake/sound.pm:262 harddrake/sound.pm:351
#, c-format
msgid "Driver:"
msgstr "Gyrrwr:"
-#: harddrake/sound.pm:270
+#: harddrake/sound.pm:271
#, c-format
msgid "Trouble shooting"
msgstr "Datrys problemau"
-#: harddrake/sound.pm:278
+#: harddrake/sound.pm:279
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
@@ -3693,12 +3104,12 @@ msgstr ""
"\n"
"Bydd y gyrrwr \"%s|\"'n cael ei ddefnyddio ar y cychwyn"
-#: harddrake/sound.pm:286
+#: harddrake/sound.pm:287
#, c-format
msgid "No open source driver"
msgstr "Dim gyrrwr cod agored"
-#: harddrake/sound.pm:287
+#: harddrake/sound.pm:288
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
@@ -3707,33 +3118,33 @@ msgstr ""
"Nid oes gyrrwr rhydd ar gyfer eich cerdyn sain (%s) ond mae gyrrwr "
"perchnogol yn \"%s\" ."
-#: harddrake/sound.pm:290
+#: harddrake/sound.pm:291
#, c-format
msgid "No known driver"
msgstr "Dim gyrrwr hysbys"
-#: harddrake/sound.pm:291
+#: harddrake/sound.pm:292
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Nid oes gyrrwr hysbys ar gyfer eich cerdyn sain (%s)"
-#: harddrake/sound.pm:295 network/netconnect.pm:98 network/netconnect.pm:837
+#: harddrake/sound.pm:296
#, c-format
msgid "Unknown driver"
msgstr "Gyrrwr anhysbys"
-#: harddrake/sound.pm:296
+#: harddrake/sound.pm:297
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "Gwall. Nid yw gyrrwr \"%s\" wedi ei restru"
-#: harddrake/sound.pm:310
+#: harddrake/sound.pm:311
#, c-format
msgid "Sound trouble shooting"
msgstr "Datrys problemau sain"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:313
+#: harddrake/sound.pm:314
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
@@ -3742,7 +3153,7 @@ msgid ""
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\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"
@@ -3762,7 +3173,7 @@ msgstr ""
"- \"lspcidrake -v | fgrep AUDIO\" pa yrwyr i'w defnyddio\n"
"drwy ragosodiad\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" pa yrwyr mae'n defnyddio\n"
+"- \"grep sound-slot /etc/modprobe.conf\" pa yrwyr mae'n defnyddio\n"
"- \"/sbin/fuser -v /dev/dsp\" pa raglen sy'n defnyddio'r cerdyn sain.\n"
"ar hyn o bryd\n"
"\n"
@@ -3777,18 +3188,18 @@ msgstr ""
"\n"
"- \"/sbin/fuser -v /dev/dsp\" pa rhaglen sy'n defnyddio'r cerdyn sain.\n"
-#: harddrake/sound.pm:339
+#: harddrake/sound.pm:340
#, c-format
msgid "Let me pick any driver"
msgstr "Dewis gyrrwr fy hun"
-#: harddrake/sound.pm:342
+#: harddrake/sound.pm:343
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Dewis gyrrwr ar hap"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:345
+#: harddrake/sound.pm:346
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3802,8 +3213,7 @@ msgstr ""
"\n"
"Y gyrrwr presennol ar gyfer eich cerdyn \"%s\" yw \"%s\" "
-#: harddrake/v4l.pm:12 standalone/net_applet:64 standalone/net_applet:65
-#: standalone/net_applet:67
+#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Awtoganfod"
@@ -3844,3784 +3254,55 @@ msgstr "Model cerdyn:"
#: harddrake/v4l.pm:478
#, c-format
msgid "Tuner type:"
-msgstr "Math o diwniwr"
+msgstr "Math o diwniwr:"
-#: harddrake/v4l.pm:479
+#: interactive.pm:125 interactive.pm:538 interactive/curses.pm:217
+#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
+#: interactive/stdio.pm:142 interactive/stdio.pm:143 ugtk2.pm:410 ugtk2.pm:508
+#: ugtk2.pm:788 ugtk2.pm:811
#, c-format
-msgid "Number of capture buffers:"
-msgstr "Nifer o fyfferau cipio:"
-
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "nifer o fyfferau cipio ar gyfer cipio mmap"
-
-#: harddrake/v4l.pm:481
-#, c-format
-msgid "PLL setting:"
-msgstr "Gosodiad PLL:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "Radio support:"
-msgstr "Cynnal radio:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "enable radio support"
-msgstr "galluogi cynnal radio"
-
-#: help.pm:12
-#, c-format
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandriva Linux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-"Cyn parhau dylech ddarllen amodau'r drwydded yn ofalus. Mae'n ymwneud\n"
-"â holl ddosbarthiad Mandriva Linux. Os ydych yn cytuno â'r holl amodau,\n"
-"cliciwch flwch \"%s\". Os nad, bydd clicio ar y botwm \"%s\" yn\n"
-"ail gychwyn eich cyfrifiadur."
-
-#: help.pm:18
-#, c-format
-msgid ""
-"GNU/Linux is a multi-user system which means each user can have his or her\n"
-"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point will not be "
-"authorized\n"
-"to change anything except their own files and their own configurations,\n"
-"protecting the system from unintentional or malicious changes which could\n"
-"impact on the system as a whole. You'll have to create at least one regular\n"
-"user for yourself -- this is the account which you should use for routine,\n"
-"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
-"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system will not work any more. If you make a\n"
-"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you will not affect the entire system.\n"
-"\n"
-"The first field asks you for a real name. Of course, this is not mandatory\n"
-"-- you can actually enter whatever you like. DrakX will use the first word\n"
-"you type in this field and copy it to the \"%s\" one, which is the name\n"
-"this user will enter to log onto the system. If you like, you may override\n"
-"the default and change the user name. The next step is to enter a password.\n"
-"From a security point of view, a non-privileged (regular) user password is\n"
-"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
-"by making it blank or too simple: after all, your files could be the ones\n"
-"at risk.\n"
-"\n"
-"Once you click on \"%s\", you can add other users. Add a user for each one\n"
-"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
-"finished adding users.\n"
-"\n"
-"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
-"that user (bash by default).\n"
-"\n"
-"When you're finished adding users, you'll be asked to choose a user who\n"
-"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click on\n"
-"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
-msgstr ""
-"Mae GNU/Linux yn system aml-ddefnyddiwr, ac mae hyn yn golygu bod pob\n"
-"defnyddiwr yn gallu cael ei ddewisiadau ei hun, ei ffeiliau ei hun ac yn y "
-"blaen.\n"
-"Gallwch ddarllen yr \"Starter Guide\" i ddysgu mwy. Ond yn annhebyg i "
-"\"gwraidd\",\n"
-"sef y gweinyddwr, ni fydd modd i'r defnyddiwr fyddwch yn eu creu yma'n "
-"gallu\n"
-"newid dim ond eu ffeiliau a'u ffurfweddiad ei hun gan amddiffyn y system "
-"rhag\n"
-"newidiadau anfwriadol neu faleisus fydd yn effeithio'r system gyfan. Bydd "
-"rhaid\n"
-"i chi greu un defnyddiwr cyffredin ar gyfer chi eich hun. Dyma'r cyfrif "
-"ddylech\n"
-"fewngofnodi iddo ar gyfer defnydd bob dydd. Er ei fod yn ymarferol iawn i "
-"fewngofnodi fel\n"
-"\"root\" gall fod yn beryglus iawn!. Gall y camgymeriad lleiaf olygu nad yw "
-"eich\n"
-"system yn gweithio ragor. Os wnewch chi gamgymeriad mawr fel defnyddiwr\n"
-"cyffredin, byddwch ond yn colli rhywfaint o wybodaeth, ac nid y system "
-"gyfan.\n"
-"\n"
-"Yn gyntaf rhowch eich enw go iawn. Does dim rhaid, wrth gwrs - mae modd\n"
-"i chi rhoi beth bynnag hoffech chi. Bydd DraX yn cymryd yr enw cyntaf a'i "
-"roi yn\n"
-"yr \"%s\" Dyma'r enw bydd y defnyddiwr hwn yn ei ddefnyddio i\n"
-"fewngofnodi i'r system. Mae modd ei newid. Yna rhowch gyfrinair. Nid yw\n"
-"cyfrinair defnyddiwr cyffredin mor bwysig ag un \"gwraidd\" o safbwynt "
-"diogelwch\n"
-"ond nid yw hynny'n rheswm i'w esgeuluso - wedi'r cyfan mae eich ffeiliau "
-"mewn\n"
-"perygl\n"
-"\n"
-"Os wnewch chi glicio \"%s\", bydd modd ychwanegu faint\n"
-"fynnoch. Ychwanegwch ddefnyddiwr ar gyfer pob un o'ch ffrindiau: eich tad\n"
-"neu eich chwaer, e.e. Ar ôl ychwanegu'r holl ddefnyddwyr, cliciwch \"%s\".\n"
-"\n"
-"Bydd clicio'r botwm \"%s\" yn caniatáu i chi newid y \"cragen\" "
-"rhagosodedig\n"
-"ar gyfer y defnyddiwr hwnnw (bash yw'r rhagosodedig).\n"
-"\n"
-"Pan fyddwch wedi cwblhau ychwanegu defnyddwyr, bydd gofyn i chi ddewis\n"
-"defnyddiwr sy'n gallu mewngofnodi'n awtomatig mewngofnodi i'r system pan\n"
-"fydd y cyfrifiadur yn cychwyn.Os oes gennych ddiddordeb yn y nodwedd hon\n"
-"a dim gwahaniaeth am ddiogelwch, dewiswch y defnyddiwr a rheolwr ffenestr\n"
-"a chlicio \"%s\". Os nad dad-diciwch blwch \"%s\" ."
-
-#: help.pm:52 printer/printerdrake.pm:1866 printer/printerdrake.pm:1987
-#: standalone/draksambashare:60
-#, c-format
-msgid "User name"
-msgstr "Enw defnyddiwr"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: help.pm:52 help.pm:432 help.pm:682 install_interactive.pm:176
-#: install_steps_gtk.pm:237 install_steps_gtk.pm:682 interactive.pm:436
-#: interactive/newt.pm:321 network/thirdparty.pm:385
-#: printer/printerdrake.pm:3884 standalone/drakTermServ:412
-#: standalone/drakbackup:4102 standalone/drakbackup:4196
-#: standalone/drakbackup:4213 standalone/drakbackup:4231 ugtk2.pm:490
-#, c-format
-msgid "Next"
-msgstr "Nesaf"
-
-#: help.pm:52
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Ydych chi eisiau defnyddio'r nodwedd?"
-
-#: help.pm:55
-#, c-format
-msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Dyma'r rhaniadau Linux sydd wedi canfod ar eich disg caled.\n"
-"Gallwch gadw'r dewisiadau sydd wedi eu gwneud gan y dewin, maen nhw'n iawn\n"
-"ar gyfer y rhan fwyaf o osodiadau. Os ydych am wneud newidiadau, rhaid i chi "
-"o leiaf\n"
-"ddiffinio rhaniad gwraidd (\"/\"). Peidiwch ddewis rhaniad sy'n rhy fach neu "
-"fidicon"
-
-#: help.pm:86
-#, c-format
-msgid ""
-"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-"Mae gosodiad Mandriva Linux i'w gael ar nifer o CD-ROMau. Mae DrakX\n"
-"yn gwybod os yw pecyn penodol wedi ei leoli ar CD-ROM arall a bydd yn bwrw\n"
-"allan y CD cyfredol a gofyn am y llall. Os nad yw'r CD angenrheidiol "
-"gennych\n"
-"wrth law, cliciwch \"%s\", ac ni fydd y pecynnau hynny'n cael eu gosod."
-
-#: help.pm:93
-#, c-format
-msgid ""
-"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandriva Linux, and to make "
-"it\n"
-"simpler to manage, they have been placed into groups of similar\n"
-"applications.\n"
-"\n"
-"Mandriva Linux sorts package groups in four categories. You can mix and\n"
-"match applications from the various categories, so a ``Workstation''\n"
-"installation can still have applications from the ``Server'' category\n"
-"installed.\n"
-"\n"
-" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
-"more of the groups in the workstation category.\n"
-"\n"
-" * \"%s\": if you plan on using your machine for programming, select the\n"
-"appropriate groups from that category. The special \"LSB\" group will\n"
-"configure your system so that it complies as much as possible with the\n"
-"Linux Standard Base specifications.\n"
-"\n"
-" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
-"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
-"of the system. However, if you do not select the \"LSB\" group you will\n"
-"still have a system which is nearly 100%% LSB-compliant.\n"
-"\n"
-" * \"%s\": if your machine is intended to be a server, select which of the\n"
-"more common services you wish to install on your machine.\n"
-"\n"
-" * \"%s\": this is where you will choose your preferred graphical\n"
-"environment. At least one must be selected if you want to have a graphical\n"
-"interface available.\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group.\n"
-"\n"
-"You can check the \"%s\" box, which is useful if you're familiar with the\n"
-"packages being offered or if you want to have total control over what will\n"
-"be installed.\n"
-"\n"
-"If you start the installation in \"%s\" mode, you can deselect all groups\n"
-"and prevent the installation of any new packages. This is useful for\n"
-"repairing or updating an existing system.\n"
-"\n"
-"If you deselect all groups when performing a regular installation (as\n"
-"opposed to an upgrade), a dialog will pop up suggesting different options\n"
-"for a minimal installation:\n"
-"\n"
-" * \"%s\": install the minimum number of packages possible to have a\n"
-"working graphical desktop.\n"
-"\n"
-" * \"%s\": installs the base system plus basic utilities and their\n"
-"documentation. This installation is suitable for setting up a server.\n"
-"\n"
-" * \"%s\": will install the absolute minimum number of packages necessary\n"
-"to get a working Linux system. With this installation you will only have a\n"
-"command-line interface. The total size of this installation is about 65\n"
-"megabytes."
-msgstr ""
-"Mae'n amser penderfynu pa raglenni rydych am eu gosod ar eich\n"
-"system. Mae yna filoedd o becynnau ar gael ar gyfer Mandriva Linux, ond\n"
-"i'w gwneud hi'n haws eu rheoli maent wedi cael eu gosod mewn grwpiau\n"
-"o raglenni tebyg.\n"
-"\n"
-"Mae Mandriva Linux wedi trefnu'r grwpiau pecynnau i bedwar categori. Mae\n"
-"modd dewis a dethol rhaglenni o'r categorïau gwahanol, fel bo \"Man Gwaith"
-"\"\n"
-"yn medru cael rhaglenni o'r categori \"Gweinydd\".\n"
-"\n"
-" * \"%s\": os ydych yn bwriadu defnyddio eich peiriant fel man\n"
-"gwaith yna dewiswch un o'r grwpiau cyfatebol.\n"
-"\n"
-" * \"%s\": os yw'r peiriant yn cael ei ddefnyddio i raglennu, dewiswch\n"
-" y grwpiau perthnasol. Bydd y grŵp arbennig \"LSB\" yn ffurfweddu\n"
-"eich system fel ei fos yn cyd-fynd gymaint ag y bo modd gyda manyleb\n"
-"Linux Standard Base.\n"
-"\n"
-" Bydd dewis grŵp \"LSB\" hefyd yn gosod cnewyllyn cyfres \"2.4\",\n"
-"yn lle'r \"2.6\" rhagosodedig. Mae hyn i sicrhau cydymffurfiad llawn\n"
-"y system gyda LSB. Er hynny, os nad ydych yn dewis grŵp \"LSB\"\n"
-"bydd eich system yn cydymffurfio bron yn 100%% gyda LSB.\n"
-"\n"
-" * \"%s\": os yw'n fwriad defnyddio eich peiriant fel gweinydd dewiswch\n"
-" y gwasanaethau cyffredin rydych am eu gosod ar eich peiriant.\n"
-"\n"
-" * \"%s\": dyma'r lle i ddewis eich amgylchedd graffigol.\n"
-"Rhaid dewis o leiaf un er mwyn cael man gwaith graffigol!\n"
-"\n"
-"Bydd symud cyrchwr y llygoden dros enw grŵp yn amlygu esboniad byr am y\n"
-"grŵp hwnnw.\n"
-"\n"
-"Ticiwch flwch \"%s\", sy'n ddefnyddiol os ydych yn gyfarwydd â'r\n"
-"pecynnau sydd ar gael neu os ydych am gael rheolaeth lwyr dros\n"
-"beth fydd yn cael ei osod.\n"
-"\n"
-"Os fyddwch yn cychwyn y gosod ym modd \"%s\" gallwch ddad-ddewis\n"
-"pob grŵp ac atal gosod unrhyw becynnau newydd. Mae hyn yn ddefnyddiol\n"
-"ar gyfer trwsio neu ddiweddaru system bresennol.\n"
-"\n"
-"Os ydych wedi dad-ddewis pob grŵp wrth wneud gosodiad\n"
-"arferol ac nid uwchraddiad), bydd dialog yn ymddangos a chynnig\n"
-"dewisiadau amrywiol ar gyfer y gosodiad lleiaf\n"
-"\n"
-" * \"%s\" Gosod y nifer lleiaf o becynnau i gael bwrdd gwaith graffigol\n"
-"i weithio.\n"
-"\n"
-" * \"%s\" Gosod y system sylfaenol yn ogystal â gwasanaethau elfennol\n"
-"a'u dogfennau. Mae'r gosodiad hwn yn addas ar gyfer gosod gweinydd.\n"
-"\n"
-" * \"%s\" Gosod y lleiafswm posibl o becynnau i greu system Linux \n"
-"llinell orchymyn weithredol. Cyfanswm maint y gosodiad fydd tua 65MB."
-
-#: help.pm:147 share/compssUsers.pl:24
-#, c-format
-msgid "Workstation"
-msgstr "Man Gwaith"
-
-#: help.pm:147 share/compssUsers.pl:65 share/compssUsers.pl:167
-#: share/compssUsers.pl:169
-#, c-format
-msgid "Development"
-msgstr "Datblygiad"
-
-#: help.pm:147 share/compssUsers.pl:145
-#, c-format
-msgid "Graphical Environment"
-msgstr "Amgylchedd Graffig"
-
-#: help.pm:147 install_steps_gtk.pm:235 install_steps_interactive.pm:623
-#, c-format
-msgid "Individual package selection"
-msgstr "Dewis pecynnau unigol."
-
-#: help.pm:147 help.pm:589
-#, c-format
-msgid "Upgrade"
-msgstr "Uwchraddio"
-
-#: help.pm:147 install_steps_interactive.pm:581
-#, c-format
-msgid "With X"
-msgstr "Gyda X"
-
-#: help.pm:147
-#, c-format
-msgid "With basic documentation"
-msgstr "Gyda dogfennaeth elfennol"
-
-#: help.pm:147
-#, c-format
-msgid "Truly minimal install"
-msgstr "Gosodiad lleiaf posibl"
-
-#: help.pm:150
-#, c-format
-msgid ""
-"If you choose to install packages individually, the installer will present\n"
-"a tree containing all packages classified by groups and subgroups. While\n"
-"browsing the tree, you can select entire groups, subgroups, or individual\n"
-"packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description will appear on the\n"
-"right to let you know the purpose of that package.\n"
-"\n"
-"!! If a server package has been selected, either because you specifically\n"
-"chose the individual package or because it was part of a group of packages,\n"
-"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandriva Linux will automatically start any installed\n"
-"services at boot time. Even if they are safe and have no known issues at\n"
-"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandriva Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do "
-"or\n"
-"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
-"the listed services and they will be started automatically at boot time. !!\n"
-"\n"
-"The \"%s\" option is used to disable the warning dialog which appears\n"
-"whenever the installer automatically selects a package to resolve a\n"
-"dependency issue. Some packages depend on others and the installation of\n"
-"one particular package may require the installation of another package. The\n"
-"installer can determine which packages are required to satisfy a dependency\n"
-"to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-"package list created during a previous installation. This is useful if you\n"
-"have a number of machines that you wish to configure identically. Clicking\n"
-"on this icon will ask you to insert the floppy disk created at the end of\n"
-"another installation. See the second tip of the last step on how to create\n"
-"such a floppy."
-msgstr ""
-"Os ydych wedi dewis gosod pecynnau'n unigol unigol, bydd y gosodwr\n"
-"yn cyflwyno coeden sy'n cynnwys yr holl becynnau wedi eu dosbarthu yn ôl\n"
-"grwp ac isgrwp. Wrth bori'r goeden, gallwch ddewis grwp cyfan, isgrwp \n"
-"neu becyn unigol.\n"
-"\n"
-"Pryd bynnag fyddwch wedi dewis pecyn ar y goeden, bydd disgrifiad yn\n"
-"ymddangos ar y dde. \n"
-"\n"
-"!! Os oes pecyn gweinydd wedi ei ddewis, yn fwriadol neu am ei fod yn rhan\n"
-"o grwp cyfan, bydd angen i chi gadarnhau eich bod eisiau i'r gweinyddion\n"
-"gael eu gosod. Ym Mandriva Linux mae unrhyw weinydd sydd wedi ei\n"
-"osod yn cael ei gychwyn fel rhagosodiad wrth gychwyn. Hyd yn oed os ydynt\n"
-"yn ddiogel a doedd dim materion pryder pan gafodd y dosbarthiad ei ryddhau,\n"
-"mae'n bosibl i fylchau diogelwch gael eu darganfod wedi i'r fersiwn hwn o\n"
-"Mandriva Linux gael ei gwblhau. Os nad ydych yn gwybod beth mae\n"
-"gwasanaeth arbennig i fod i'w wneud na pham mae wedi ei osod, yna\n"
-"cliciwch\"%s\". Bydd clicio \"%s\" yn gosod y gwasanaethau hynny a\n"
-"byddant yncael eu cychwyn yn awtomatig drwy ragosodiad!!\n"
-"\n"
-"Mae'r dewis \"%s\"yn analluogi'r deialog rhybudd sy'nymddangos bob\n"
-" tro fydd y gosodwr yn dewis pecyn yn awtomatig. Mae hyn yn digwydd\n"
-"am ei fod wedi penderfynu ei fod angen bodlon dibyniad gyda phecyn arall\n"
-"er mwyn cwblhau'r gosodiad yn llwyddiannus\n"
-"\n"
-"Mae'r eicon disg medal bychan ar waelod y rhestr yn caniatáu llwytho'r\n"
-"rhestr pecynnau dewiswyd yn ystod gosodiad blaenorol. Bydd clicio\n"
-"ar yr eicon hwn yn gofyn i chi osod yn y peiriant disg meddal grëwyd ar\n"
-"ddiwedd gosodiad arall. Gwelwch yr ail neges o'r cam diwethaf ar sut i\n"
-"greu disg meddal o'r fath."
-
-#: help.pm:181 help.pm:286 help.pm:314 help.pm:445 install_any.pm:944
-#: interactive.pm:161 modules/interactive.pm:71 standalone/drakbackup:2636
-#: standalone/drakfont:687 standalone/draksec:54 standalone/harddrake2:331
-#: ugtk2.pm:898 wizards.pm:156
-#, c-format
-msgid "No"
-msgstr "Na"
+msgid "Ok"
+msgstr "Iawn"
-#: help.pm:181 help.pm:286 help.pm:445 install_any.pm:944 interactive.pm:161
-#: modules/interactive.pm:71 printer/printerdrake.pm:883
-#: printer/printerdrake.pm:898 standalone/drakbackup:2636
-#: standalone/drakfont:685 standalone/draksec:55 standalone/harddrake2:330
-#: ugtk2.pm:898 wizards.pm:156
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Iawn"
-#: help.pm:181
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Dibyniaethau awtomatig"
-
-#: help.pm:184
-#, c-format
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to set up a new printer. The interface presented in our\n"
-"manual is similar to the one used during installation."
-msgstr ""
-"\"%s\": mae clicio ar y botwm\"%s\" yn agor dewin ffurfweddu argraffydd.\n"
-"Darllenwch y pennawd penodol yn y 'Starter Guide' am ragor o \n"
-"wybodaeth ar sut i osod argraffydd newydd. Mae'r rhyngwyneb yn y llawlyfr\n"
-"yn debyg i'r un welwyd wrth osod y system."
-
-#: help.pm:187 help.pm:567 help.pm:856 install_steps_gtk.pm:595
-#: standalone/drakbackup:2460 standalone/drakbackup:2464
-#: standalone/drakbackup:2468 standalone/drakbackup:2472
-#: standalone/drakroam:227
-#, c-format
-msgid "Configure"
-msgstr "Ffurfweddu"
-
-#: help.pm:190
-#, c-format
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
-"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which are not needed at boot\n"
-"time.\n"
-"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably do not want to start any services which you do not "
-"need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-"Dewiswch pa wasanaethau rydych am eu cael wrth gychwyn eich cyfrifiadur.\n"
-"\n"
-"Bydd DrakX yn rhestri'r holl wasanaethau sydd ar gael gyda'r gosodiad "
-"cyfredol.\n"
-"Darllenwch y rhestr yn ofalus a dad-diciwch y rhai nad oes eu hangen bob "
-"tro\n"
-"wrth gychwyn.\n"
-"\n"
-"Mae modd cael esboniad byr am wasanaeth wrth eu dewis. Ond, os nad ydych\n"
-"yn siwr a yw'r gwasanaeth o werth neu beidio, mae'n well cadw at y drefn\n"
-"rhagosodedig\n"
-"\n"
-"!!Byddwch yn ofalus iawn os ydych am ddefnyddio eich peiriant fel gweinydd:\n"
-"mwy na thebyg na fyddwch eisiau cychwyn unrhyw wasanaethau nad oes eu\n"
-"hangen. Cofiwch fod cael nifer o wasanaethau wedi eu galluogi ar y "
-"gweinydd,\n"
-"fod yn beryglus. Yn gyffredinol, dim ond dewis y gwasanaethau mae'n rhaid eu "
-"cael !!"
-
-#: help.pm:207
-#, c-format
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
-"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
-msgstr ""
-"Mae GNU/Linux yn rheoli amser drwy GMT (Greenwich Mean Time)\n"
-"a'i drosi i amser lleol yn ôl y parth amser rydych wedi ei ddewis.\n"
-"Mae'n bosib dad-ddewis hyn drwy ddad-ddewis \"%s\" fel bod y cloc\n"
-"caledwedd yr un a chloc y system yr un peth. Mae hyn yn ddefnyddiol\n"
-"pan fo'r peiriant yn westai i system arall.\n"
-"\n"
-"Bydd y dewis \"%s\" yn rheoli'r cloc yn awtomatig drwy gysylltu \n"
-"â gweinydd amser ar y Rhyngrwyd. Yn y rhestr sy'n cael ei gynnig \n"
-"dewiswch yr agosaf atoch. Rhaid i'ch cyswllt â'r we fod yn gweithio\n"
-"i hyn ddigwydd. Bydd yn gosod ar eich peiriant wasanaethwr amser fydd\n"
-"o ddewis yn medru cael ei ddefnyddio gan beiriannau eraill ar eich "
-"rhwydwaith."
-
-#: help.pm:218 install_steps_interactive.pm:859
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Cloc caledwedd wedi ei osod i GMT"
-
-#: help.pm:218
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Cydweddi amser awtomatig"
-
-#: help.pm:221
-#, c-format
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-"Cerdyn Graffeg\n"
-"\n"
-" Mae'r gosodwr fel rheol yn canfod ac yn ffurfweddu'n awtomatig\n"
-"y cerdyn graffig sydd ar eich cyfrifiadur. Os nad yw hyn yn wir,\n"
-"dewiswch eich cerdyn o'r rhestr.\n"
-"\n"
-" Mewn achos lle mae gweinyddion eraill i'w cael i'ch cerdyn, gyda\n"
-"neu heb gyflymydd 3D, mae cynnig i chi ddewis y gweinydd gorau\n"
-"ar eich cyfer."
-
-#: help.pm:232
-#, c-format
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"X (sef X Window System) yw calon rhyngwyneb graffigol GNU/Linux a'r\n"
-"hyn mae'r holl amgylcheddau graffigol (KDE, Gnome, AterStep,\n"
-"WindowMaker, etc) sy'n dod gyda Mandriva Linux yn dibynnu arno.\n"
-"\n"
-"Byddwch yn derbyn rhestr o baramedrau gwahanol i'w newid i gael\n"
-"y dangosiad graffigol gorau:\n"
-"\n"
-" Cerdyn Graffeg\n"
-"\n"
-" Mae'r gosodwr fel rheol yn canfod ac yn ffurfweddu'n awtomatig\n"
-"y cerdyn graffeg sydd ar eich cyfrifiadur. Os nad yw hyn yn wir,\n"
-"dewiswch eich cerdyn.\n"
-"\n"
-" Mewn achos lle mae gweinyddion eraill i'w cael i'ch cerdyn, gyda\n"
-"neu heb gyflymydd 3D, mae cynnig i chi ddewis y gweinydd gorau\n"
-"ar eich cyfer.\n"
-"\n"
-"\n"
-"Dangosydd\n"
-"\n"
-" Mae'r gosodwr fel rheol yn canfod ac yn ffurfweddu'n awtomatig\n"
-"y dangosydd sy'n gysylltiedig â'ch cyfrifiadur. Os nad yw hyn yn gywir,\n"
-"mae'n dangos eich dangosydd.\n"
-"\n"
-"\n"
-"\n"
-"Cydraniad\n"
-"\n"
-" Cewch ddewis yma gydraniad a dyfnder lliw rhwng y rhai sydd ar gael\n"
-"ar gyfer eich caledwedd. Dewiswch yr un sydd orau ar eich cyfer (bydd\n"
-"modd newid hynny wedi'r gosod) Mae enghraifft o ffurfweddiad i'w weld\n"
-"ar y dangosydd.\n"
-"\n"
-"\n"
-"\n"
-"Prawf\n"
-"\n"
-" Bydd y system yn ceisio agor sgrin graffigol yn unol â'r cydraniad "
-"dewisol.\n"
-"Os ydych yn gweld y neges yn ystod y prawf ac ateb \"%s\", yna bydd\n"
-"DrakX yn symud ymlaen i'r cam nesaf. Os nad ydych yn gweld y neges nesaf\n"
-"mae'n golygu fod rhan o'r drefn awtoganfod yn anghywir a bydd y prawf\n"
-"yn dod i ben ar ôl 12 eiliad, gan ddod a chi nôl i'r ddewislen. Newidiwch y\n"
-"gosodiadau nes i chi gael y sgrin i edrych yn iawn.\n"
-"\n"
-"\n"
-"\n"
-"Dewisiadau\n"
-"\n"
-" Yma cewch ddewis p'un ai i drefnu i'ch cyfrifiadur newid yn awtomatig i\n"
-"rhyngwyneb graffigol wrth gychwyn. Yn amlwg byddwch angen ticio \"%s\"\n"
-"os yw eich peiriant i weithredu fel gweinydd, neu os na fuoch yn\n"
-"llwyddiannus yn ffurfweddu'r dangosydd."
-
-#: help.pm:289
-#, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
-msgstr ""
-"Dangosydd\n"
-"\n"
-" Mae'r gosodwr fel rheol yn canfod ac yn ffurfweddu'n awtomatig\n"
-"y dangosydd sy'n gysylltiedig â'ch cyfrifiadur. Os nad yw hyn yn wir,\n"
-"dewiswch eich dangosydd o'r rhestr."
-
-#: help.pm:296
-#, c-format
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
-msgstr ""
-"Cydraniad\n"
-"\n"
-" Cewch ddewis yma gydraniad a dyfnder lliw rhwng y rhai sydd ar gael\n"
-"ar gyfer eich caledwedd. Dewiswch yr un sydd orau ar eich cyfer (bydd\n"
-"modd newid hynny wedi'r gosod) Mae enghraifft o ffurfweddiad i'w weld\n"
-"ar y dangosydd."
-
-#: help.pm:304
-#, c-format
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-"Mewn achos lle mae gweinyddion eraill i'w cael i'ch cerdyn, gyda\n"
-"neu heb gyflymydd 3D, mae cynnig i chi ddewis y gweinydd gorau\n"
-"ar eich cyfer."
-
-#: help.pm:309
-#, c-format
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"Dewisiadau\n"
-"\n"
-" Yma gallwch ddewis os ydych am i'ch cyfrifiadur droi i ryngwyneb graffig\n"
-"wrth gychwyn y cyfrifiadur. Yn amlwg, byddwch am ateb \"%s\" os yw\n"
-"eich peiriant i weithredu fel gweinydd, neu os nad oeddech yn\n"
-"llwyddiannus yn cael eich dangosydd i ffurfweddu'n gywir."
-
-#: help.pm:317
-#, c-format
-msgid ""
-"You now need to decide where you want to install the Mandriva Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandriva Linux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandriva Linux system, "
-"choose\n"
-"this option. Be careful, because you will not be able to undo this "
-"operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-"Mae angen i chi nawr ddewis lle ar eich disg caled i osod eich system\n"
-"weithredu Mandriva Linux. Os yw eich disg caled yn wag neu os oes\n"
-"yna system weithredol eisoes yn cymryd yr holl le sydd ar gael, bydd\n"
-"angen i chi greu rhaniadau arno. Yn y bôn, mae rhannu disg caled yn\n"
-"golygu ei rhannu'n rhesymegol i greu lle i osod eich system Mandriva\n"
-"Linux newydd.\n"
-"\n"
-"Gan fo effaith y broses rannu'n ddidroi nôl, gan arwain at golli data os\n"
-"oes system weithredol eisoes ar y gyrrwr, gall creu rhaniadau fod yn\n"
-"broses anodd a straenus os ydych yn ddefnyddiwr dibrofiad. Yn ffodus,\n"
-"mae gan DrakX ddewin sy'n symleiddio'r broses. Cyn cychwyn, \n"
-"darllenwch y llawlyfr a chymerwch bwyll.\n"
-"\n"
-"Yn ddibynnol ar ffurfweddiad eich disg caled, mae dewisiadau ar gael:\n"
-"\n"
-" * \"%s\": mae'r dewis hwn yn arwain at greu rhaniadau awtomatig\n"
-"o'ch disg(iau) caled gwag. Bydd dim cwestiynau eraill os byddwch\n"
-"yn defnyddio'r dewis hwn.\n"
-"\n"
-" * \"%s\": mae'r dewin wedi canfod un neu fwy o raniadau Linux\n"
-"cyfredol ar eich disg caled. Os ydych am eu defnyddio, dewiswch y\n"
-"dewis hwn. Bydd gofyn i chi ddewis pwyntiau gosod yn gysylltiedig\n"
-"â phob rhaniad. Mae'r pwyntiau gosod gosodedig wedi eu dewis,\n"
-"ac ar y cyfan mae'n syniad da cadw atynt.\n"
-"\n"
-" * \"%s\": os yw Microsoft Windows ar eich disg caled ac yn cymryd\n"
-"y lle i gyd, bydd rhaid i chi greu lle ar gyfer data Linux. I wneud hynny\n"
-"gallwch ddileu eich rhaniad a data Microsoft Windows (Gw. atebion\n"
-"\"Dileu'r ddisg gyfan \") neu ail-lunio maint rhaniad FAT Microsoft "
-"Windows.\n"
-"Mae modd ail lunio maint y rhaniad heb golli data cyn belled eich bod wedi\n"
-"dad-ddarnio rhaniad Windows ac mae'n defnyddio fformat Windows.\n"
-"Argymhellir cadw data wrth gefn hefyd. Argymhellir gwneud hyn os ydych\n"
-"am ddefnyddio Mandriva Linux a Microsoft Windows ar yr un cyfrifiadur.\n"
-"\n"
-" Cyn gwneud y dewis hwn, cofiwch y bydd maint eich rhaniad Microsoft\n"
-"Windows yn llai nag yw ar hyn o bryd ar ol dilyn y drefn yma. Bydd gennych\n"
-"llai o le yn Microsoft Windows i gadw data neu i osod meddalwedd newydd\n"
-"\n"
-" * \"%s\" os ydych am ddileu'r holl ddata a rhaniadau presennol ar\n"
-"eich disg caled a'u cyfnewid am system Mandriva Linux, yna dewiswch\n"
-"hwn. Byddwch yn ofalus wrth wneud hyn gan na fydd modd troi nôl\n"
-"ar ôl cadarnhau.\n"
-"\n"
-" !! Os ydych yn dewis hwn, byddwch yn colli'r holl ddata ar eich disg. !!\n"
-"\n"
-" * \"%s\": Bydd y dewis yma'n ymddangos pam mae'r ddisg gyfan wedi\n"
-"ei chymryd gan Microsoft Windows. Bydd hwn yn dileu popeth o'r disg\n"
-"caled a chychwyn popeth o'r newydd, gan greu rhaniadau newydd.\n"
-"\n"
-" !! Os ydych yn dewis hwn, byddwch yn colli'r holl ddata ar eich disg. !!\n"
-"\n"
-" * \"%s\": dewiswch hwn os ydych am rannu'r disg caled gyda llaw.\n"
-"Byddwch ofalus - mae'n ddewis pwerus a pheryglus. Mae modd i chi \n"
-"golli'ch holl ddata. Peidiwch dewis hwn oni bai eich bod yn gwybod beth\n"
-"ydych yn ei wneud.. Am ragor o wybodaeth ar sut i ddefnyddio DiskDrake,\n"
-"darllenwch adran \"Managing your Partitions\" yn y \"Starter Guide\"."
-
-#: help.pm:375 install_interactive.pm:96
-#, c-format
-msgid "Use free space"
-msgstr "Defnyddiwch le gwag"
-
-#: help.pm:375
-#, c-format
-msgid "Use existing partition"
-msgstr "Defnyddiwch y rhaniadau presennol"
-
-#: help.pm:375 install_interactive.pm:138
-#, c-format
-msgid "Use the free space on the Microsoft Windows® partition"
-msgstr "Defnyddiwch y lle gwag ar raniad Windows"
-
-#: help.pm:375
-#, c-format
-msgid "Erase entire disk"
-msgstr "Dileu'r ddisg gyfan"
-
-#: help.pm:375
-#, c-format
-msgid "Remove Windows"
-msgstr "Tynnu Windows"
-
-#: help.pm:375 install_interactive.pm:233
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Rhannu disg unigol"
-
-#: help.pm:378
-#, c-format
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
-"to remove the installation media (CD-ROM or floppy). The first thing you\n"
-"should see after your computer has finished doing its hardware tests is the\n"
-"boot-loader menu, giving you the choice of which operating system to start.\n"
-"\n"
-"The \"%s\" button shows two more buttons to:\n"
-"\n"
-" * \"%s\": enables you to create an installation floppy disk which will\n"
-"automatically perform a whole installation without the help of an operator,\n"
-"similar to the installation you've just configured.\n"
-"\n"
-" Note that two different options are available after clicking on that\n"
-"button:\n"
-"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
-"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing on a number of similar\n"
-"machines. See the Auto install section on our web site for more\n"
-"information.\n"
-"\n"
-" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
-"To use this selection with another installation, insert the floppy and\n"
-"start the installation. At the prompt, press the [F1] key, type >>linux\n"
-"defcfg=\"floppy\"<< and press the [Enter] key.\n"
-"\n"
-"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
-"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
-"/dev/fd0\"."
-msgstr ""
-"Dyna ni, mae'r gosodiad wedi ei gwblhau ac mae eich system GNU/Linux\n"
-"yn barod i'w ddefnyddio. Cliciwch \"%s\" i ailgychwyn y cyfrifiadur. "
-"Peidiwch\n"
-"anghofio tynnu'r cyfrwng gosod (CD-ROM neu feddal). Y peth cyntaf i chi\n"
-"weld ar ôl i'ch cyfrifiadur gwblhau ei brofion caledwedd yw'r ddewislen\n"
-"llwytho, sy'n rhoi dewis o ba system i'w chychwyn.\n"
-"\n"
-"Mae'r botwm \"%s\" yn dangos dau fotwm arall:\n"
-"\n"
-" *\"%s\": i greu disg meddal gosod fydd yn creu yn awtomatig osodiad\n"
-"cyflawn heb gymorth gweithredwr, yn debyg i'r gosodiad sydd\n"
-"newydd ei ffurfweddu.\n"
-"\n"
-"Sylwer bod dau ddewis gwahanol i'w gael wedi clicio'r botwm:\n"
-"\n"
-" *\"%s\". Gosodiad rhannol awtomatig gan fod mai'r cam o greu\n"
-"rhaniad yw'r unig ran ryngweithiol o'r broses.\n"
-"\n"
-" *\"%s\".Gosodiad cwbl awtomatig: mae'r disg caled wedi ei\n"
-"ailysgrifennu'n llwyr, a'r holl ddata wedi ei golli.\n"
-"\n"
-"Mae hwn yn nodwedd ddefnyddiol iawn wrth osod ar nifer fawr o\n"
-"beiriannau tebyg. Gw. yr adran Auto install ar ein safle gwe.\n"
-"\n"
-"*\"%s\":(*): mae hwn yn cadw'r dewis o becynnau wnaed cynt.\n"
-"Wrth wneud gosodiad arall, rhowch ddisg meddal yn y gyrrwr a rhedeg\n"
-"y gosodiad gan fynd i'r sgrin cymorth drwy wasgu'r fysell [F1], \n"
-"a theipio >>linux defcfg=\"floppy\"<< a phwyso bysell [Enter].\n"
-"\n"
-"(*) Bydd angen disg meddal wedi ei fformatio fel FAT (i greu un yn\n"
-"GNU/Linux, teipiwch \"mformat a:\" neu \"fdformat /dev/fd0\" wedi\n"
-"ei ddilyn gan \"mkfs.vfat /dev/fd0\"."
-
-#: help.pm:410
-#, c-format
-msgid "Generate auto-install floppy"
-msgstr "Creu disg meddal awto gosod"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Replay"
-msgstr "Ail chwarae"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Automated"
-msgstr "Awtomeiddwyd"
-
-#: help.pm:410 install_steps_interactive.pm:1317
-#, c-format
-msgid "Save packages selection"
-msgstr "Cadw'r dewis becynnau"
-
-#: help.pm:413
-#, c-format
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
-"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
-"reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"will not be able to recover it.\n"
-"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
-"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandriva Linux operating system installation.\n"
-"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-"Efallai y byddwch eisiau ailfformatio rhai rhaniadau presennol i ddileu "
-"data\n"
-"sydd arnynt. Os ydych am wneud hynny, dewiswch y rhaniadau hynny hefyd.\n"
-"\n"
-"Sylwch nad oes angen ailfformatio'r holl raniadau sy'n bodoli eisoes. "
-"Rhaid \n"
-"ailfformatio'r rhaniadau sy'n cynnwys y system weithredu [megis \"/\",\"usr"
-"\"\n"
-"neu \"/var\") ond nid oes rhaid i chi ail fformatio rhaniadau sy'n cynnwys\n"
-"data rydych am ei gadw (e.e. \"/home\").\n"
-"\n"
-"Byddwch ofalus wrth ddewis rhaniadau. Ar ôl fformatio bydd yr holl ddata ar\n"
-"y rhaniadau'n cael eu dileu ac ni fydd modd ei adfer.\n"
-"\n"
-"Cliciwch \"%s\" pan ydych yn barod i fformatio rhaniadau.\n"
-"\n"
-"Cliciwch \"%s\" os ydych am ddewis rhaniad arall ar gyfer eich gosodiad\n"
-"Mandriva Linux newydd\n"
-"\n"
-"Cliciwch \"%s\" os ydych am ddewis rhaniadau i'w gwirio am flociau\n"
-"gwallus ar y ddisg."
-
-#: help.pm:432 install_steps_gtk.pm:392 interactive.pm:437
-#: interactive/newt.pm:318 printer/printerdrake.pm:3882
-#: standalone/drakTermServ:391 standalone/drakbackup:4065
-#: standalone/drakbackup:4101 standalone/drakbackup:4212
-#: standalone/drakbackup:4227 ugtk2.pm:488
-#, c-format
-msgid "Previous"
-msgstr "Blaenorol"
-
-#: help.pm:435
-#, c-format
-msgid ""
-"By the time you install Mandriva Linux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-"Erbyn i chi osod Mandriva Linux, mae'n debygol y bydd rhai \n"
-"pecynnau wedi eu diweddaru ers y rhyddhad cychwynnol. Bydd rhai \n"
-"gwallau wedi eu cywiro a materion diogelwch wedi eu datrys. I ganiatáu\n"
-"i chi fanteisio ar hyn mae cynnig i chi eu llwytho i lawr o'r rhyngrwyd.\n"
-"Dewiswch \"%s\" os oes gennych gyswllt gweithredol â'r rhyngrwyd,\n"
-"neu \"%s\"\"os ydych am osod pecynnau mwy diweddar rhywbryd eto.\n"
-"\n"
-"Bydd dewis \"%s\" yn dangos rhestr o leoedd o le mae modd derbyn\n"
-"diweddariadau. Dewiswch yr un agosaf atoch. Yna, bydd coeden dewis\n"
-"pecynnau yn ymddangos: Wedi i chi benderfynu ar eich dewis, cliciwch\n"
-"\"%s\" i estyn a gosod y pecynnau hynny neu \"%s\" i beidio."
-
-#: help.pm:445 help.pm:589 install_steps_gtk.pm:391
-#: install_steps_interactive.pm:132
-#, c-format
-msgid "Install"
-msgstr "Gosodiad"
-
-#: help.pm:448
-#, c-format
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
-"\n"
-"If you do not know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandriva Linux\n"
-"Control Center.\n"
-"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-"Yma mae DrakX yn caniatáu i chi ddewis lefel diogelwch y peiriant. Fel\n"
-"rheol, y mwyaf agored yw'r peiriant, y mwyaf pwysig yw'r data'r uchaf\n"
-"ddylai'r lefel diogelwch fod neu fod gan y peiriant gysylltiad uniongyrchol\n"
-"gyda'r rhyngrwyd. Er hynny, mae diogelwch yn dod ar draul\n"
-"hwylustod. \n"
-"\n"
-"Os nad ydych yn siŵr beth i'w ddewis, dewiswch y rhagosodedig. Byddwch\n"
-"yn gallu newid y lefel diogelwch yn ddiweddarach gyda draksec o\n"
-"Ganolfan Rheoli Mandriva.\n"
-"\n"
-"Mae maes \"%s\" yn gallu dweud wrth y system o'r defnyddiwr sydd â\n"
-"chyfrifoldeb am ddiogelwch. Bydd negeseuon diogelwch yn cael eu hanfon\n"
-"at y cyfeiriad hwnnw. "
-
-#: help.pm:459
-#, c-format
-msgid "Security Administrator"
-msgstr "Cyfrinair Gweinyddwr"
-
-#: help.pm:462
-#, c-format
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandriva Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"%s\": this option deletes all partitions on the selected hard drive\n"
-"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
-"partitions in the free space of your hard drive\n"
-"\n"
-"\"%s\": gives access to additional features:\n"
-"\n"
-" * \"%s\": saves the partition table to a floppy. Useful for later\n"
-"partition-table recovery if necessary. It is strongly recommended that you\n"
-"perform this step.\n"
-"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
-"\n"
-" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it does not always\n"
-"work.\n"
-"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
-"\n"
-" * \"%s\": un-checking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
-"\n"
-" * \"%s\": use this option if you wish to use a wizard to partition your\n"
-"hard drive. This is recommended if you do not have a good understanding of\n"
-"partitioning.\n"
-"\n"
-" * \"%s\": use this option to cancel your changes.\n"
-"\n"
-" * \"%s\": allows additional actions on partitions (type, options, format)\n"
-"and gives more information about the hard drive.\n"
-"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"When defining the size of a partition, you can finely set the partition\n"
-"size by using the Arrow keys of your keyboard.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and the [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
-"\n"
-" * Ctrl-d to delete a partition\n"
-"\n"
-" * Ctrl-m to set the mount point\n"
-"\n"
-"To get information about the different file system types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Yn awr mae angen i chi ddewis pa raniadau i'w defnyddio ar gyfer gosodiad\n"
-"eich system Mandriva Linux. Os oes rhaniadau wedi eu diffinio eisoes, un\n"
-"ai drwy osodiad blaenorol o GNU/Linux neu gan offeryn rhannu arall, mae\n"
-"modd i chi ddefnyddio'r rhaniadau presennol. Os nad, rhaid i' rhaniadau'r\n"
-"ddisg caled gael eu diffinio.\n"
-"\n"
-"I greu rhaniadau, rhaid yn gyntaf ddewis disg caled. Mae modd dewis disg\n"
-"i'w rannu drwy glicio ar \"hda\" ar gyfer y ddisg IDE cyntaf., \"hdb\" ar\n"
-"gyfer yr ail, \"sda\" ar gyfer y ddisg SCSI cyntaf, ac yn y blaen.\n"
-"\n"
-"I greu'r rhaniad, mae modd defnyddio'r dewisiadau hyn:\n"
-"\n"
-" *\"%s\": mae'r dewis hwn yn dileu pob rhaniad ar ddisg.\n"
-"\n"
-" *\"%s\": mae'r dewis hwn yn caniatáu i chi greu'n awtomatig\n"
-"Ext2 a rhaniadau cyfnewid mewn lle gwag ar eich disg.\n"
-"\n"
-" *\"%s\": yn rhoi mynediad i ragor o nodweddion:\n"
-"\n"
-" *\"%s\": mae hwn yn cadw'r tabl rhaniad i ddisg\n"
-"meddal. Mae hyn yn ddefnyddiol ar gyfer adfer tabl rhaniad, os fydd angen\n"
-"\n"
-" \"%s\": mae hyn yn caniatáu adfer tabl rhaniad blaenorol\n"
-"o ddisg meddal.\n"
-"\n"
-" \"%s\": os yw eich tabl rhaniad wedi ei ddifrodi, mae modd\n"
-"ceisio ei adfer drwy'r dewis yma. Byddwch ofalus a chofiwch fod modd iddo\n"
-"fethu.\n"
-"\n"
-" \"%s\": mae hwn yn dileu pob newid ac yn ail lwytho'r\n"
-"tabl rhaniad gwreiddiol.\n"
-"\n"
-" *\"%s\": dad-diciwch y dewis hwn i osod a dad osod\n"
-"gyda llaw, cyfryngau symudol megis disgiau meddal ac CD-ROMau\n"
-"\n"
-" *\"%s\": defnyddiwch y dewis hwn os ydych am ddefnyddio'r dewin i rannu\n"
-"eich disg caled. Dyma'sydd orau os nad oes gennych wybodaeth sylweddol ar\n"
-"rhannu\n"
-"\n"
-" *\"%s\": defnyddiwch y dewis hwn i ddileu eich newidiadau\n"
-"\n"
-" *\"%s\": mae hwn yn caniatáu gweithredoedd\n"
-"pellach ar raniadau. (Math, dewisiadau, fformat) ac mae'n cynnig mwy o\n"
-" wybodaeth.\n"
-"\n"
-" *\"%s\":pan fyddwch wedi gorffen rhannu eich disg, bydd hwn yn cadw\n"
-" eich newidiadau yn ôl i'r ddisg\n"
-"\n"
-"Sylwer: mae modd cyrraedd y dewisiadau drwy'r bysellfwrdd. Symudwch drwy'r\n"
-" rhaniadau gan ddefnyddio [Tab] a'r saethau [I Fyny/I Lawr].\n"
-"\n"
-"Pan fydd rhaniad wedi ei ddewis, gallwch ddefnyddio:\n"
-"\n"
-" *Ctrl-c i greu rhaniad newydd (pan fo rhaniad gwag yn cael ei ddewis);\n"
-"\n"
-" *Ctrl-d i ddileu rhaniad;\n"
-"\n"
-" *Ctrl-m i greu pwynt gosod;\n"
-"\n"
-"I dderbyn gwybodaeth am yr amrywiol systemau ffeil sydd ar gael, darllenwch "
-"y\n"
-" pennawd ar ext2fs yn y ``Reference Manual''.\n"
-"\n"
-"Os ydych yn gosod ar beiriant PPC, bydd angen i chi greu \"ymlwythwr\" \n"
-" bychan o leiaf 1MB o faint, fydd yn cael ei ddefnyddio gan ymlwythwr "
-"yaboot.\n"
-"Os ydych yn dewis gwneud y rhaniad rhywfaint yn fwy, dyweder tua 50MB, yna\n"
-"gall fod yn le defnyddiol i gadw cnewyllyn sbâr a delweddau ramdisk ar "
-"gyfer\n"
-" sefyllfaoedd cychwyn argyfyngus!"
-
-#: help.pm:531
-#, c-format
-msgid "Removable media auto-mounting"
-msgstr "Awto gosod cyfrwng symudol"
-
-#: help.pm:531
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Amnewid rhwng modd arferol/arbenigol"
-
-#: help.pm:534
-#, c-format
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandriva Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Mae mwy nag un rhaniad Microsoft wedi ei ganfod ar eich disg caled.\n"
-"Dewiswch ba un rydych am newid ei faint er mwyn gosod eich\n"
-"system weithredu Mandriva Linux newydd\n"
-"\n"
-"Mae pob rhaniad wedi ei restri fel hyn: \"Enw Linux\", \"Enw Windows\",\n"
-"\"Maint\".\n"
-"\n"
-"Mae \"Enw Linux\" wedi ei strwythuro fel hyn: \"math o ddisg caled\", \n"
-"\"rhif y disg caled\", \"rhif y rhaniad\" (e.e., \"hda1\").\n"
-"\n"
-"\"hd\" yw'r \"Math o ddisg caled\" os mai disg caled IDE sydd gennych\n"
-"a \"sd\" yw disg caled SCSI.\n"
-"\n"
-"Llythyren wedi'r \"hd\" neu \"sd\" yw'r \"Rhif disg caled\" bob tro.\n"
-"Gyda disgiau caled IDE:\n"
-"\n"
-" * mae \"a\" yn golygu \"prif ddisg caled ar y rheolydd IDE cyntaf\",\n"
-"\n"
-" * mae \"b\" yn golygu \"ddisg caled gwas ar y rheolydd IDE cyntaf\",\n"
-"\n"
-" * mae \"c\" yn golygu \"prif ddisg caled ar yr ail reolydd IDE\",\n"
-"\n"
-" * mae \"d\" yn golygu \"ddisg caled gwas ar yr ail reolydd IDE\",\n"
-"\n"
-"Gyda disgiau caled SCSI mae \"a\" yn golygu'r \"enw SCSI isaf\", ac mae\n"
-" \"b\" yn golygu'r \"ail enw SCSI isaf\", ag ati.\n"
-"\n"
-"Mae \"Enw Windows\" yn cyfeirio at y llythyren y disg caled o dan\n"
-" Windows (\"C:\" yw'r ddisg neu raniad cyntaf)."
-
-#: help.pm:565
-#, c-format
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country is not in "
-"the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-"\"%s\":gwiriwch y dewis gwlad. Os nad ydych yn y wlad hon cliciwch y\n"
-"botwm \"%s\"a dewis un arall. Os nad yw eich gwlad ar y rhestr gyntaf,\n"
-"cliciwch \"%s\" i edrych ar y rhestr gyflawn."
-
-#: help.pm:570
-#, c-format
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandriva Linux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandriva Linux system. Your current "
-"partitioning\n"
-"scheme and user data will not be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandriva Linux version \"8.1\" is not recommended."
-msgstr ""
-"Mae'r cam hwn yn cael ei weithredu os oes hen raniad GNU/Linux wedi\n"
-"ei ganfod ar y cyfrifiadur.\n"
-"\n"
-"Bydd DrakX angen gwybod a ydych am osod o'r newydd neu uwchraddio\n"
-"system Mandriva Linux presennol.\n"
-"\n"
-" *\"%s\" Ar y cyfan, mae hwn yn tynnu'r hen system gyfan oddi ar eich\n"
-"cyfrifiadur. Er hynny, yn ddibynnol ar eich trefn rhannu, mae modd atal\n"
-"peth o'ch data (yn arbennig, cyfeiriaduron \"home\" ) rhag cael ei "
-"ysgrifennu drosto. Os ydych am newid rhaniadau eich disgiau caled, neu newid "
-"y\n"
-"system ffeil, dylech ddewis hwn.\n"
-"\n"
-" *\"%s\": Mae'r dosbarth gosod hwn yn caniatáu i chi ddiweddaru'r\n"
-"pecynnau sydd wedi eu gosod ar eich system Mandriva Linux. Bydd eich\n"
-"rhaniadau presenol a'ch data personol yn cael eu cadw. Bydd y rhan fwyaf\n"
-"o'r camau ffurfweddu ar gael fel gyda'r gosod arferol.\n"
-"\n"
-"Dylai defnyddio \"Diweddaru\" weithio'n iawn ar systemau Mandriva Linux\n"
-"sy'n rhedeg systemau \"8.1\" neu'n ddiweddarach. Nid yw uwchraddio\n"
-"fersiynau cyn Mandriva Linux \"8.1\" yn cael ei gymeradwyo."
-
-#: help.pm:592
-#, c-format
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
-"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard do not match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
-"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
-"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-"Fel arfer mae DrakX yn dewis y bysellfwrdd cywir ar eich cyfer ( gan "
-"ddibynnu pa\n"
-" iaith rydych wedi ei ddewis(). Gwiriwch fod y dewis yn addas neu dewiswch "
-"gynllun\n"
-"bysellfwrdd arall.\n"
-"\n"
-"Efallai nad oes gennych fysellfwrdd sy'n cyfateb yn union i'ch iaith: e.e., "
-"os ydych\n"
-"yn Americanwr sy'n siarad Cymraeg, efallai eich bod am gadw eich "
-"bysellfwrdd\n"
-"Americanaidd. Neu os ydych yn siarad Cymraeg ac yn byw yn Hong Kong mae'r\n"
-" un sefyllfa'n codi. Yn y ddwy achos bydd angen i chi fynd yn ôl i'r cam yma "
-"yn y\n"
-" gosodiad a dewis y bysellfwrdd perthnasol o'r rhestr.\n"
-"\n"
-"Cliciwch ar fotwm \"%s\" i dderbyn y rhestr o fysellfyrddau sy'n cael eu "
-"cynnal.\n"
-" \n"
-"Os fyddwch yn dewis cynllun bysellfwrdd wedi ei seilio ar wyddor an-"
-"Lladinaidd, \n"
-"bydd y deialog nesaf yn caniatáu i chi ddewis rwymiad allwedd fydd yn newid "
-"y\n"
-"bysellfwrdd rhwng cynlluniau Lladin ac an-Lladin."
-
-#: help.pm:610
-#, c-format
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandriva Linux's use of UTF-8 "
-"will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-"Y cam cyntaf yw dewis eich hoff iaith.\n"
-"\n"
-"Bydd eich dewis iaith yn effeithio ar iaith y gosodwr, y ddogfennaeth\n"
-" a'r system yn gyffredinol. Dewiswch yr ardal lle rydych ac yna eich iaith.\n"
-"\n"
-"Bydd clicio ar y botwm \"%s\" yn caniatáu i chi ddewis ieithoedd eraill\n"
-"i'w gosod ar eich peiriant gwaith. Bydd dewis ieithoedd eraill yn gosod\n"
-"ffeiliau penodol sy'n cynnwys dogfennaeth a rhaglenni yn yr ieithoedd\n"
-"hynny. Er enghraifft, os ydych yn westeiwr ar gyfer defnyddwyr o Sbaen,\n"
-"dewiswch Gymraeg fel y rhagosodedig yng ngolwg coeden ac yn yr Uwch\n"
-"adran cliciwch \"%s\". \n"
-"\n"
-"Ynghylch cefnogaeth UTF-8 (unicode): Amgodiad nod newydd yw Unicode\n"
-"sydd i gynnwys pob iaith. Er hynny, mae cefnogaeth i bob iaith o fewn\n"
-"GNU/Linux yn dal yn cael ei ddatblygu Oherwydd hynn mae defnydd\n"
-"Mandriva Linux o UTF-8 yn ddibynnol ar ddewis y defnyddiwr:\n"
-"\n"
-" * Os ydych yn dewis iaith gyda hen amgodiad cryf (ieithoedd lladin1\n"
-"Rwsieg, Siapanëeg, Tsieinëeg, Corëeg, Thai, Groeg, Twrceg, y rhan\n"
-" fwyaf o ieithoedd iso-8859-2) bydd yr hen amgodiad yn cael ei ddefnyddio;\n"
-"\n"
-" * Bydd ieithoedd eraill yn defnyddio unicode drwy ragosodiad;\n"
-"\n"
-" * Os oes angen dwy neu fwy o ieithoedd, ac nid yw'r ddwy iaith yn "
-"defnyddio'r\n"
-"un amgodiad, yna bydd unicode yn cael ei ddefnyddio drwy'r holl system\n"
-"\n"
-" * Yn olaf, mae modd gorfodi'r defnydd o unicode drwy'r system gyfan ar\n"
-"gais y defnyddiwr drwy ddewis \"%s\" yn annibynnol o ba iaith sydd wedi cêl "
-"ei ddewis.\n"
-"\n"
-"Sylwer bod modd gosod mwy nag un iaith. Mae modd i chi ddewis mwy\n"
-"nag un, neu hyd yn oed eu gosod i gyd, drwy ddewis y blwch \"%s\".\n"
-"Mae dewis cefnogaeth i bob iaith yn golygu gosod cyfieithiadau, ffontiau, \n"
-"gwiryddion sillafu, ag ati, ar gyfer yr iaith honno.\n"
-"\n"
-"I newid rhwng yr ieithoedd amrywiol sydd ar y system gallwch gychwyn\n"
-"y gorchymyn \"/usr/sbin/localedrake\" fel \"root\" i newid yr iaith\n"
-"sy'n cael ei ddefnyddio gan y system gyfan. Bydd rhedeg y gorchymyn fel\n"
-"defnyddiwr cyffredin yn gweithio dim ond ar gyfer yr unigolyn hwnnw."
-
-#: help.pm:648
-#, c-format
-msgid "Espanol"
-msgstr "Sbaeneg"
-
-#: help.pm:651
-#, c-format
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
-"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-"Fel rheol does gan DrakX ddim problem yn canfod y nifer o fotymau ar eich\n"
-"llygoden. Os yw, bydd yn cymryd for gennych lygoden dau fotwm a bydd yn\n"
-"ffurfweddu efelychiad trydydd botwm. Mae modd pwyso trydydd botwm\n"
-"llygoden dau fotwm ar unwaith gan glicio'r botymau chwith a de. Bydd DrakX\n"
-"yn gwybod yn awtomatig p'un ai yw'r llygoden yn defnyddio rhyngwyneb PS/2\n"
-"cyfresol neu USB.\n"
-"\n"
-"Lle mae gennych lygoden 3 botwm heb olwyn, cewch ddewis y llygoden sy'n\n"
-"dweud \"%s\". Bydd DrakX yn ffurfweddu eich llygoden fel bod modd "
-"efelychu'r\n"
-"olwyn gydag ef: i wneud hynny pwyswch y botwm canol a symud eich llygoden "
-"nôl a blaen.\n"
-"\n"
-"Os am ryw reswm yr hoffech nodi llygoden o fath gwahanol, dewiswch un\n"
-"o'r rhestr amgaeëdig.\n"
-"\n"
-"Gallwch ddewis \"%s\" i ddewis math llygoden ``generic'' sy'n gweithio gyda\n"
-"bron bob llygoden.\n"
-"\n"
-"Os fyddwch yn dewis llygoden wahanol i'r rhagosodedig gyd sgrin\n"
-"profi'n cael ei ddangos. Defnyddiwch y botymau a'r olwyn i wirio fod\n"
-"y gosodiadau'n gywir a bod y llygoden yn gweithio'n iawn. Os nad yw'r\n"
-"llygoden yn gweithio'n dda, pwyswch y bar bylchu neu fysell [Return] i\n"
-"i ddiddymu'r prawf ac i fynd nôl i'r rhestr dewis.\n"
-"\n"
-"Ar brydiau nid yw llygod olwyn yn cael eu canfod yn awtomatig, felly bydd\n"
-"angen dewis eich llygoden o'r rhestr. Gwnewch yn siŵr eich bod yn dewis\n"
-"y porth sy'n cyfateb i le mae eich llygoden. Ar ôl dewis llygoden a "
-"phwyso'r\n"
-"botwm \"%s\" , bydd delwedd llygoden yn cael ei dangos ar y sgrin. Trowch\n"
-"olwyn y llygoden i sicrhau ei fod yn gweithio'n iawn. Unwaith i chi weld yr\n"
-"olwyn ar y sgrin yn symud wrth i chi droi'r olwyn. profwch y botymau a "
-"gwirio fod\n"
-"pwyntydd y llygoden yn symud ar y sgrin wrth i chi symud y llygoden."
-
-#: help.pm:682
-#, c-format
-msgid "with Wheel emulation"
-msgstr "gydag efelychiad Olwyn"
-
-#: help.pm:682
-#, c-format
-msgid "Universal | Any PS/2 & USB mice"
-msgstr "Cyffredinol | Unrhyw lygoden PS/2 ac USB"
-
-#: help.pm:685
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Dewiswch y porth cywir. Mae porth \"COM1\" o dan MS Windows yn cael ei alw "
-"yn\n"
-"\"ttyS0\" yn GNU/Linux, e.e."
-
-#: help.pm:689
-#, c-format
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: do not make the password too long or too complicated because "
-"you\n"
-"must be able to remember it!\n"
-"\n"
-"The password will not be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you do not know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-"Mae hwn yn fan pwysig ynghylch diogelwch eich system GNU/Linux; rhaid\n"
-"rhoi cyfrinair \"root\".\"Root\" yw gweinyddwr y system a'r unig un sydd â'r "
-"hawl\n"
-"i wneud diweddariadau, ychwanegu defnyddwyr, newid ffurfweddiad cyffredinol\n"
-"y system, ac yn y blaen. Yn fyr mae \"root\" yn medru gwneud popeth! Dyna\n"
-"pam mae'n rhaid dewis cyfrinair sy'n anodd ei ddyfalu - bydd DrakX yn dweud\n"
-"wrthych os yw'n rhy hawdd. Fel y gwelwch, mae modd peidio gorfod cynnig\n"
-"cyfrinair, ond rydym yn argymell yn erbyn hyn, hyd yn oed am un rheswm:\n"
-"peidiwch â meddwl bod eich systemau gweithredu eraill yn ddiogel rhag\n"
-"camgymeriadau, gan eich bod wedi cychwyn o GNU/Linux. Gan fod \"root\" yn\n"
-"medru goresgyn unrhyw gyfyngiadau a dileu data'n anfwriadol ar bob rhaniad,\n"
-"drwy fynd at y rhaniadau'n ddi-hid, yna mae'n bwysig ei gwneud hi'n anodd "
-"bod\n"
-"yn \"root\".\n"
-"\n"
-"Dylai'r cyfrinair fod yn gyfuniad o rifau a llythrennau ac o leiaf 8 nod o "
-"hyd.\n"
-"Peidiwch ysgrifennu cyfrinair \"root\" ar bapur - bydd yn ei gwneud hi'n "
-"rhy\n"
-"hawdd gwanhau'r system.\n"
-"\n"
-"Er hynny, peidiwch â gwneud y cyfrinair yn rhy hir neu gymhleth am fod rhaid "
-"i\n"
-"chi fedri ei gofio heb ormod o drafferth.\n"
-"\n"
-"Ni fydd y cyfrinair yn cael ei ddangos ar y sgrin wrth i chi ei deipio. "
-"Felly bydd\n"
-" rhaid i chi deipio'r cyfrinair ddwywaith i leihau'r siawns o deipio gwall. "
-"Os ydych\n"
-"yn digwydd gwneud yr un gwall teipio ddwywaith, bydd rhaid defnyddio'r "
-"cyfrinair\n"
-"\"anghywir\" i gychwyn y tro cyntaf fel \"root\".\n"
-"\n"
-"Os hoffech i fynediad i'r cyfrifiadur gael ei reoli gan wasanaethwr dilysu, "
-"cliciwch\n"
-"y botwm \"%s\".\n"
-"Os yw eich rhwydwaith yn defnyddio protocol gwasanaethau dilysu LDAP, NIS\n"
-"neu PDC Windows Domain, dewiswch un addas fel \"%s\",\n"
-"Os nad ydych yn gwybod, gofynnwch i'ch gweinyddwr rhwydwaith\n"
-"\n"
-"Os ydych yn cael anawsterau atgoffa cyfrineiriau, gallwch ddewis\n"
-"\"%s\", os na fydd eich cyfrifiadur yn cael cyswllt â'r we ac rydych\n"
-"yn ymddiried yn y defnyddiwr."
-
-#: help.pm:723
-#, c-format
-msgid "authentication"
-msgstr "dilysu"
-
-#: help.pm:726
-#, c-format
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can not determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" will not install any boot loader. Use this option only if "
-"you\n"
-"know what you're doing."
-msgstr ""
-"Rhaglen fechan yw'r cychwynnwr sy'n cael ei gychwyn gan y cyfrifiadur.\n"
-"Mae'n gyfrifol am gychwyn y system i gyd. Fel rheol mae'r rhan yma'n\n"
-"digwydd yn awtomatig. Bydd DrakX yn dadansoddi'r adran cychwyn\n"
-"disg a gweithredu yn â'r yr hyn mae'n ei ganfod yno.\n"
-"\n"
-" *os yw'n canfod adran cychwyn Windows, bydd yn ei amnewid gyda\n"
-"adran cychwyn GRUB/LILO. O ganlyniad bydd modd i chi gychwyn un\n"
-"ai GNU/Linux neu system arall.\n"
-"\n"
-" *os fydd adran gychwyn GRUB neu LILO'n cael ei ganfod bydd yn ei\n"
-"amnewid gydag un mwy diweddar.\n"
-"\n"
-"Os nad yw'n medru penderfynu, bydd DrakX yn gofyn i chi lle i osod\n"
-"y cychwynnydd. Yn gyffredinol, \"%s\" yw'r man mwyaf diogel. Ni fydd\n"
-" dewis \"%s\" yn gosod cychwynnydd. Dim ond ar gyfer y gwybodus."
-
-#: help.pm:743
-#, c-format
-msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you do not like your printing\n"
-"system you may change it by running PrinterDrake from the Mandriva Linux\n"
-"Control Center and clicking on the \"%s\" button."
-msgstr ""
-"Yma byddwn yn dewis system argraffu i'ch cyfrifiadur ei ddefnyddio. Efallai\n"
-"bod systemau eraill yn cynnig un i chi, ond mae Mandriva yn cynnig dwy.\n"
-"Mae 'r systemau'n addas gar gyfer ffurfweddiad arbennig.\n"
-"\n"
-" *\"%s\" - sy'n golygu \"print, do not queue\", yw'r dewis os oes gennych\n"
-"gysylltiad uniongyrchol â'ch argraffydd a'ch bod eisiau medru tynnu allan o "
-"waith\n"
-"argraffu pan fo'r papur wedi mynd yn sownd ac nad oes gennych argraffyddion\n"
-"wedi eu cysylltu drwy rwydwaith. (Dim ond rhwydweithiau syml mae \"%s\" yn "
-"ei\n"
-"drin ac mae'n araf ar rwydweithiau). Dewiswch \"pdq\" os mai dyma yw eich\n"
-"tro cyntaf yn GNU/Linux.\n"
-"\n"
-" *\"%s\" - \"Common Unix Printing System\". Mae hwn yn dda ar gyfer\n"
-"argraffu i argraffyddion lleol a hanner ffordd rownd y byd. Mae'n symlach, "
-"yn\n"
-"gallu gweithredu fel gwasanaethwr neu gleient ar gyfer yr hen system \"lpd"
-"\"\n"
-"ac felly mae'n cydweddi â'r systemau sydd wedi mynd o'i flaen. Mae'n gallu\n"
-"gwneud nifer o driciau, ond mae bron mor syml i'w osod \"pdq\". Os ydych\n"
-"amgen hwn i efelychu gwasanaethwr \"lpd\", yna rhaid cychwyn aemon\n"
-"\"cups-lpd\". Mae gan \"%s\" wyneb graffigol ar gyfer argraffu dewis\n"
-"argraffydd neu reoli'r argraffu.\n"
-"\n"
-"\n"
-"Os ydych yn dewis yn awr ac yn ddiweddarach yn penderfynu eich bod\n"
-"am newid eich system argraffu gallwch ei newid drwy gyfrwng PrinterDrake\n"
-"yng Nghanolfan Rheoli Mandriva a chlicio'r botwm %s."
-
-#: help.pm:766
-#, c-format
-msgid "pdq"
-msgstr "pdq"
-
-#: help.pm:766 printer/cups.pm:117 printer/data.pm:129
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
-
-#: help.pm:766
-#, c-format
-msgid "Expert"
-msgstr "Arbenigwr"
-
-#: help.pm:769
-#, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"Bydd DrakX yn canfod unrhyw ddyfais IDE sydd ar eich cyfrifiadur. Bydd yn\n"
-"chwilio am un neu fwy o gardiau SCSI PCI ar eich system. Os oes Cerdyn\n"
-"SCSI'n cael ei ganfod bydd DrakX yn awtomatig yn gosod y gyrrwr priodol.\n"
-"\n"
-"Oherwydd nad yw canfod caledwedd bob tro'n canfod darn o galedwedd,\n"
-"gall DrakX fethu canfod eich disgiau caled. Os felly, bydd rhaid i chi "
-"bennu\n"
-"eich caledwedd â llaw.\n"
-"\n"
-"Os ydych wedi pennu eich addaswr PCI SCS gyda llaw, bydd DrakX yn\n"
-"gofyn i chi ydych am bennu dewisiadau ar ei gyfer. Dylech adael i DrakX "
-"ofyn\n"
-"i'r cerdyn am ddewisiadau penodol i'r cerdyn mae angen i'r caledwedd eu\n"
-"cychwyn. Mae hyn fel rheol yn gweithio'n dda\n"
-"\n"
-"Os nad yw DrakX yn gallu holi am y dewisiadau sydd eu hangen, bydd rhaid i\n"
-" chi ffurfweddu'r gyrrwr gyda llaw. "
-
-#: help.pm:787
-#, c-format
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-"\"%s\": os yw cerdyn sain yn cael ei ganfod ar eich cyfrifiadur, bydd \n"
-"yn cael ei ddangos yma. Os ydych yn sylwi nad y cerdyn sain sydd ar eich\n"
-"cyfrifiadur sy'n cael ei ddangos, yna cliciwch ar y botwm a dewis\n"
-"gyrrwr arall."
-
-#: help.pm:789 help.pm:856 install_steps_interactive.pm:991
-#: install_steps_interactive.pm:1008
-#, c-format
-msgid "Sound card"
-msgstr "Cerdyn sain"
-
-#: help.pm:792
-#, c-format
-msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"is not in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it is not\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandriva Linux Control Center after the installation has finished to "
-"benefit\n"
-"from full in-line help.\n"
-"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandriva Linux Control Center.\n"
-"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-"I grynhoi, bydd DrakX yn cyflwyno crynodeb o'r wybodaeth amrywiol\n"
-"sydd ganddo am eich system. Yn ddibynnol ar eich caledwedd, mae'n bosib\n"
-"bod gennych rywfaint o'r nodweddion canlynol. Mae pob cofnod yn cynnwys\n"
-"eitem ffurfweddadwy, a chrynodeb o'r ffurfweddiad presennol. Cliciwch ar y\n"
-"botwm \"%s\" perthnasol i'w newid.\n"
-"\n"
-" *\"%s\": gwirio ffurfweddiad map y bysellfwrdd a'i newid os oes angen.\n"
-"\n"
-" *\"%s\": gwirio'r dewis gwlad. Os nad ydych yn y wlad hon, cliciwch y "
-"botwm\n"
-"\"%s\" a dewis un arall. Os nad yw eich gwlad ar y rhestr gyntaf i'w\n"
-"dangos, cliciwch y botwm \"%s\" am y rhestr gyflawn o wledydd.\n"
-"\n"
-"\n"
-" *\"%s\": Mae DrakX yn dyfalu eich parth amser yn ôl y wlad rydych\n"
-"wedi ei dewis. Mae modd clicio ar y botwm \"%s\" i'w gywiro.\n"
-"\n"
-" *\"%s\": gwirio ffurfweddiad y llygoden bresennol a chlicio ar y botwm\n"
-"i'w newid os oes angen.\n"
-"\n"
-" \"%s\": bydd clicio ar y botwm \"%s\" yn agor y dewin\n"
-"ffurfweddu argraffydd. Darllenwch y pennawd yn y \"Starter Guide\" ar\n"
-"sut i osod argraffydd newydd. Mae'r rhyngwyneb yn debyg i'r un ar gyfer\n"
-"ei osod yn y man cyntaf.\n"
-"\n"
-" *\"%s\": os oes cerdyn sain wedi ei ganfod ar eich system bydd\n"
-"yn cael ei ddangos yma. Os ydych yn sylwi nad y cerdyn sain sy'n cael ei\n"
-"ddangos yw'r un sydd ar eich system, yna cliciwch y botwm a dewis\n"
-"gyrrwr arall.\n"
-"\n"
-" * \"%s\": os oes cerdyn teledu wedi ei ganfod ar eich system\n"
-"bydd yn cael ei ddangos yma. Os oes gennych gerdyn ac nid yw wedi cael\n"
-"ei ganfod, cliciwch \"%s\" i geisio ei ffurfweddu â llaw.\n"
-"\n"
-" * \"%s\": cliciwch ar \"%s\" i newid paramedrau cysylltiedig â'r cerdyn\n"
-"os yw'r ffurfweddiad yn anghywir.\n"
-"\n"
-" *\"%s\": fel rheol bydd DrakX yn gosod eich rhyngwyneb\n"
-"i gydraniad \"800x600\" neu \"1024x768\". Os nad yw hyn yn addas ar\n"
-"eich cyfer cliciwch y botwm \"%s\" i'w newid.\n"
-" \n"
-" * \"%s\": os ydych am ffurfweddu eich mynediad i'r Rhyngrwyd neu\n"
-"eich rhwydwaith lleol, mae modd gwneud hynny. Darllenwch y deunydd\n"
-"ysgrifenedig neu ddefnyddio Canolfan Reoli Mandriva Linux wedi i'r gosod\n"
-"orffen i fanteisio ar gymorth ar-lein llawn.\n"
-"\n"
-" * \"%s\": os ydych am ffurfweddu cyfeiriadau dirprwyol HTTP ac FTP os\n"
-"yw'r peiriant rydych yn ei osod i fod tu nôl i weinydd dirprwyol.\n"
-"\n"
-" * \"%s\": mae modd ail ddiffinio'r lefel diogelwch a osodwyd yn\n"
-"flaenorol ().\n"
-"\n"
-" *\"%s\": mae'n syniad da gosod mur cadarn i'ch amddiffyn rhag\n"
-"ymyriadau os ydych yn bwriadu cysylltu eich cyfrifiadur â'r Rhyngrwyd.\n"
-"Darllenwch y bennod berthnasol yn y \"Starter Guide\" am fanylion\n"
-"gosodiadau mur cadarn.\n"
-"\n"
-" * \"%s\": os hoffech newid ffurfweddiad eich cychwynnwr\n"
-"cliciwch y botwm yma. Ar gyfer defnyddwyr profiadol. Darllenwch y\n"
-"deunydd ysgrifenedig neu'r cymorth ar-lein am ffurfweddiad\n"
-"cychwynwyr yng Nghanolfan Rheoli Mandriva Linux.\n"
-"\n"
-" *\"%s\": yma bydd modd i chi wneud man newidiadau i'r\n"
-"gwasanaethau sy'n cael eu rhedeg ar eich cyfrifiadur. Os ydych yn\n"
-" bwriadu defnyddio'r cyfrifiadur fel gwasanaethwr mae'n syniad da\n"
-"darllen y gosodiadau'n fanwl."
-
-#: help.pm:856 install_steps_interactive.pm:855
-#: install_steps_interactive.pm:950 standalone/drakclock:100
-#: standalone/finish-install:56 standalone/finish-install:57
-#, c-format
-msgid "Timezone"
-msgstr "Cylchfa amser"
-
-#: help.pm:856 install_steps_interactive.pm:1024
-#, c-format
-msgid "TV card"
-msgstr "Cerdyn Teledu"
-
-#: help.pm:856
-#, c-format
-msgid "ISDN card"
-msgstr "Cerdyn ISDN"
-
-#: help.pm:856
-#, c-format
-msgid "Graphical Interface"
-msgstr "Rhyngwyneb Graffigol"
-
-#: help.pm:856 install_any.pm:1733 install_steps_interactive.pm:1042
-#: standalone/drakbackup:2051
-#, c-format
-msgid "Network"
-msgstr "Rhwydwaith"
-
-#: help.pm:856 install_steps_interactive.pm:1054
-#, c-format
-msgid "Proxies"
-msgstr "Dirprwyon"
-
-#: help.pm:856 install_steps_interactive.pm:1065
-#, c-format
-msgid "Security Level"
-msgstr "Lefel Diogelwch"
-
-#: help.pm:856 install_steps_interactive.pm:1079 network/drakfirewall.pm:189
-#, c-format
-msgid "Firewall"
-msgstr "Mur Cadarn"
-
-#: help.pm:856 install_steps_interactive.pm:1095
-#, c-format
-msgid "Bootloader"
-msgstr "Cychwynnwr ar waith"
-
-#: help.pm:856 install_steps_interactive.pm:1108 services.pm:114
-#: services.pm:157 services.pm:193
-#, c-format
-msgid "Services"
-msgstr "Gwasanaethau"
-
-#: help.pm:859
-#, c-format
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Dewiswch y ddisg galed rydych am ei ddileu er mwy n gosod eich rhaniad\n"
-"Mandriva Linux newydd. Byddwch ofalus, bydd yr holl ddata sydd arno'n\n"
-"cael ei ddileu ac ni fydd modd ei adfer!"
-
-#: help.pm:864
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-"Cliciwch \"%s\" os ydych am ddileu'r holl ddata a rhaniadau sy'n bresennol\n"
-"ar y disg. Byddwch ofalus, wedi i chi glicio \"%s\" ni fydd modd i chi\n"
-"adfer unrhyw ddata na rhaniadau presennol ar y disg caled, gan gynnwys\n"
-"data Windows.\n"
-"\n"
-"Cliciwch \"%s\" i atal y weithred hon heb golli unrhyw ddata\n"
-"a rhaniadau sy'n bresennol ar y ddisg galed."
-
-#: help.pm:870
-#, c-format
-msgid "Next ->"
-msgstr "Nesaf ->"
-
-#: help.pm:870
-#, c-format
-msgid "<- Previous"
-msgstr "<- Blaenorol"
-
-#: install2.pm:115
-#, c-format
-msgid ""
-"Can not access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"Methu cael mynediad i modiwlau'r cnewyllyn sy'n cyfateb i'ch cnewyllyn chi "
-"(mae ffeil %s ar goll), mae hyn yn golygu, fel arfer, nad yw eich disg "
-"cychwyn yn cydweddu gyda'r cyfrwng Gosod (crëwch ddisg cychwyn meddal newydd)"
-
-#: install2.pm:167
-#, c-format
-msgid "You must also format %s"
-msgstr "Rhaid fformatio %s hefyd"
-
-#: install_any.pm:406
-#, c-format
-msgid "Do you have further supplementary media?"
-msgstr "Oes gennych unrhyw gyfrwng ychwanegol arall?"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:409
-#, c-format
-msgid ""
-"The following media have been found and will be used during install: %s.\n"
-"\n"
-"\n"
-"Do you have a supplementary installation medium to configure?"
-msgstr ""
-"Mae'r cyfrwng yma wedi ei ganfod a byddant yn cael eu defnyddio gyda'r "
-"gosodiad nesaf: %s \n"
-"\n"
-"\n"
-"A oes gennych gyfrwng gosod ychwanegol i'w ffurfweddu?"
-
-#: install_any.pm:422 printer/printerdrake.pm:3211
-#: printer/printerdrake.pm:3218 standalone/scannerdrake:182
-#: standalone/scannerdrake:190 standalone/scannerdrake:241
-#: standalone/scannerdrake:248
-#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (HTTP)"
-msgstr "Rhwydwaith (HTTP)"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (FTP)"
-msgstr "Rhwydwaith (FTP)"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (NFS)"
-msgstr "Rhwydwaith (NFS)"
-
-#: install_any.pm:452
-#, c-format
-msgid "Insert the CD 1 again"
-msgstr "Rhowch y CD-ROM (eto)"
-
-#: install_any.pm:478 network/netconnect.pm:866 standalone/drakbackup:114
-#, c-format
-msgid "No device found"
-msgstr "Heb ganfod dyfais"
-
-#: install_any.pm:483
-#, c-format
-msgid "Insert the CD"
-msgstr "Rhowch y CD-ROM"
-
-#: install_any.pm:488
-#, c-format
-msgid "Unable to mount CD-ROM"
-msgstr "Methu gosod CD-ROM"
-
-#: install_any.pm:521 install_any.pm:542
-#, c-format
-msgid "URL of the mirror?"
-msgstr "URL y drych?"
-
-#: install_any.pm:526
-#, c-format
-msgid "NFS setup"
-msgstr "Ffurfweddiad NFS"
-
-#: install_any.pm:526
-#, c-format
-msgid "Please enter the hostname and directory of your NFS media"
-msgstr "Rhowch enw'r gwesteiwr a chyfeiriadur eich cyfrwng NFS"
-
-#: install_any.pm:527
-#, c-format
-msgid "Hostname of the NFS mount ?"
-msgstr "Enw gwesteiwr cosodiad NFS"
-
-#: install_any.pm:527 standalone/draknfs:288
-#, c-format
-msgid "Directory"
-msgstr "Cyfeiriadur"
-
-#: install_any.pm:580
-#, c-format
-msgid ""
-"Can't find a package list file on this mirror. Make sure the location is "
-"correct."
-msgstr "Methu canfod ffeil hdlist ar y drych"
-
-#: install_any.pm:657
-#, c-format
-msgid "Removing packages prior to upgrade..."
-msgstr "Tynnu pecynnau cyn diweddaru..."
-
-#: install_any.pm:699
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Edrych ar becynnau wedi eu gosod yn barod"
-
-#: install_any.pm:703
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Canfod pecynnau i'w uwchraddio"
-
-#: install_any.pm:781
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done."
-msgstr ""
-"Newidiwch eich CD-ROM\n"
-"\n"
-"Rhowch y CD-ROM \"%s\" yn eich gyrrwr a chlicio Iawn ar ôl gorffen"
-
-#: install_any.pm:793
-#, c-format
-msgid "Copying in progress"
-msgstr "Copïo ar waith"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:935
-#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They do not have any known security\n"
-"issues, but some new ones could be found. In that case, you must make sure\n"
-"to upgrade as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"Rydych wedi dewis y gweinydd(wyr) canlynol: %s\n"
-"\n"
-"\n"
-"Mae'r gweinyddion canlynol yn cael eu cychwyn drwy ragosodiad. Does\n"
-"ganddynt unrhyw faterion diogelwch hysbys, ond mae'n bosibl i rai ddod i'r\n"
-"golwg. Os felly rhaid uwchraddio gynted ag y bo modd\n"
-"\n"
-"Ydych chi wir eisiau gosod y gweinyddion hyn?\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:958
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-"Bydd y pecynnau canlynol yn cael eu tynnu i ganiatáu diweddaru eich system: %"
-"s\n"
-"\n"
-"\n"
-"Ydych chi am dynnu'r pecynnau hyn?\n"
-
-#: install_any.pm:1394 partition_table.pm:597
-#, c-format
-msgid "Error reading file %s"
-msgstr "Gwall wrth ddarllen ffeil %s"
-
-#: install_any.pm:1628
-#, c-format
-msgid "The following disk(s) were renamed:"
-msgstr "Mae'r disg(iau) hyn wedi eu hailenwi:"
-
-#: install_any.pm:1630
-#, c-format
-msgid "%s (previously named as %s)"
-msgstr "%s (ei enw blaenorol oedd %s)"
-
-#: install_any.pm:1670
-#, 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 ""
-"Digwyddodd gwall - ni chafwyd dyfeisiau dilys i greu systemau ffeil arnynt. "
-"Gwiriwch eich caledwedd am ffynhonnell yr anhawster."
-
-#: install_any.pm:1714
-#, c-format
-msgid "HTTP"
-msgstr "HTTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "FTP"
-msgstr "FTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "NFS"
-msgstr "NFS"
-
-#: install_any.pm:1737
-#, c-format
-msgid "Please choose a media"
-msgstr "Dewiswch gyfrwng"
-
-#: install_any.pm:1753
-#, c-format
-msgid "File already exists. Overwrite it?"
-msgstr "Mae'r ffeil yn bodoli eisoes. Ysgrifennu drosti?"
-
-#: install_any.pm:1757
-#, c-format
-msgid "Permission denied"
-msgstr "Mynediad wedi ei wrthod."
-
-#: install_any.pm:1806
-#, c-format
-msgid "Bad NFS name"
-msgstr "Enw NFS gwael"
-
-#: install_any.pm:1827
-#, c-format
-msgid "Bad media %s"
-msgstr "Cyfrwng drwg %s"
-
-#: install_any.pm:1877
-#, c-format
-msgid "Can not make screenshots before partitioning"
-msgstr "Meth creu lluniau o'r sgrin cyn rhannu"
-
-#: install_any.pm:1884
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Bydd lluniau o'r sgrin ar gael ar ôl gosod yn %s"
-
-#: install_gtk.pm:136
-#, c-format
-msgid "System installation"
-msgstr "Gosod y system"
-
-#: install_gtk.pm:139
-#, c-format
-msgid "System configuration"
-msgstr "Ffurfweddu'r system"
-
-#: install_interactive.pm:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Mae peth caledwedd ar eich cyfrifiadur angen gyrwyr \"priodol\" i weithio.\n"
-"Mae rhywfaint o wybodaeth i'w gael amdanynt yn %s"
-
-#: install_interactive.pm:63
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Rhaid bod gennych raniad gwraidd.\n"
-"Crëwch raniad (neu glicio ar un presennol)\n"
-"Yna dewiswch weithred \"Pwynt Gosod\" a'i osod i `/'"
-
-#: install_interactive.pm:68
-#, c-format
-msgid ""
-"You do not have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Nid oes gennych raniad cyfnewid\n"
-"\n"
-"Parhau beth bynnag?"
-
-#: install_interactive.pm:71 install_steps.pm:215
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Rhaid bod gennych raniad FAT wedi ei osod yn /boot/efi"
-
-#: install_interactive.pm:98
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Nid oes digon o le i ddynodi rhaniadau newydd"
-
-#: install_interactive.pm:106
-#, c-format
-msgid "Use existing partitions"
-msgstr "Defnyddiwch y rhaniadau cyfredol"
-
-#: install_interactive.pm:108
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "Nid oes rhaniad cyfredol i'w ddefnyddio"
-
-#: install_interactive.pm:115
-#, c-format
-msgid "Use the Microsoft Windows® partition for loopback"
-msgstr "Defnyddiwch raniad Microsoft Windows® ar gyfer cylchol"
-
-#: install_interactive.pm:118
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Pa raniad hoffech chi ei ddefnyddio ar gyfer Linux4Win?"
-
-#: install_interactive.pm:120
-#, c-format
-msgid "Choose the sizes"
-msgstr "Dewiswch y maint"
-
-#: install_interactive.pm:121
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Maint rhaniad gwraidd mewn MB :"
-
-#: install_interactive.pm:122
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Maint rhaniad cyfnewid mewn MB: "
-
-#: install_interactive.pm:131
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"Nid oes rhaniadau FAT i'w defnyddio fel cylchol (neu nad oes digon o le ar "
-"ôl)"
-
-#: install_interactive.pm:140
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Pa raniad ydych chi am newid ei faint?"
-
-#: install_interactive.pm:154
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occurred: %s"
-msgstr ""
-"Nid yw'r newidiwr maint FAT yn gallu trin eich rhaniad.\n"
-"digwyddodd y gwall canlynol: %s"
-
-#: install_interactive.pm:157
-#, c-format
-msgid "Computing the size of the Microsoft Windows® partition"
-msgstr "Cyfrifo maint rhaniad Microsoft Windows®"
-
-#: install_interactive.pm:164
-#, c-format
-msgid ""
-"Your Microsoft Windows® partition is too fragmented. Please reboot your "
-"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
-"the Mandriva Linux installation."
-msgstr ""
-"Mae eich rhaniad Microsoft Windows® yn rhy ysgyriog, rhedwch \"defrag\" yn "
-"gyntaf o dan Microsoft Windows® ac yna ailgychwyn gosodi Mandriva Linux."
-
-#: install_interactive.pm:167
-#, 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 ""
-"RHYBUDD!\n"
-"\n"
-"\n"
-"Bydd DrakX yn newid maint eich rhaniad Windows.\n"
-"\n"
-"\n"
-"Byddwch ofalus: mae gwneud hyn yn beryglus. Os nad ydych wedi gwneud yn "
-"barod, dylech fynd allan o'r gosod, rhedeg \"chkdsk c:\" o'r Annogwr yn "
-"Windows (byddwch ofalus nid yw rhedeg \"scandisk\" yn ddigon, gwnewch yn "
-"siŵr i ddefnyddio \"chkdsk\" o fewn Anogwr!), hefyd, defnyddiwch defrag ac "
-"ail gychwyn gosod. Dylech hefyd wneud copi wrth gefn o'ch data.\n"
-"\n"
-"\n"
-"Pan rydych yn siŵr, cliciwch %s."
-
-#: install_interactive.pm:179
-#, c-format
-msgid "Which size do you want to keep for Microsoft Windows® on"
-msgstr "Pa faint o le ydych am ei gadw ar gyfer Microsoft Windows® ar"
-
-#: install_interactive.pm:180
-#, c-format
-msgid "partition %s"
-msgstr "rhaniad %s"
-
-#: install_interactive.pm:189
-#, c-format
-msgid "Resizing Microsoft Windows® partition"
-msgstr "Mesur ffiniau system ffeilio Microsoft Windows®"
-
-#: install_interactive.pm:194
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Methodd newid maint FAT: %s"
-
-#: install_interactive.pm:209
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr "Nid oes rhaniadau FAT i newid eu maint (neu nad oes digon o le ar ôl)"
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Remove Microsoft Windows®"
-msgstr "Tynnu Microsoft Windows®"
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Erase and use entire disk"
-msgstr "Dileu a defnyddio'r ddisg gyfan"
-
-#: install_interactive.pm:216
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Mae gennych fwy nag un disg caled, ar ba un ydych am osod linux?"
-
-#: install_interactive.pm:222
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "Bydd pob rhaniad a'u data yn cael ei ddileu ar ddisg %s"
-
-#: install_interactive.pm:237
-#, c-format
-msgid "Use fdisk"
-msgstr "Defnyddiwch fdisk"
-
-#: install_interactive.pm:240
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, do not forget to save using `w'"
-msgstr ""
-"Gallwch rannu %s\n"
-"Wedi gorffen, peidiwch anghofio cadw gyda 'w'"
-
-#: install_interactive.pm:276
-#, c-format
-msgid "I can not find any room for installing"
-msgstr "Methu canfod lle ar gyfer gosod"
-
-#: install_interactive.pm:280
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Daeth dewin Rhannu DrakX o hyd i'r atebion canlynol:"
-
-#: install_interactive.pm:288
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Methodd rhannu: %s"
-
-#: install_interactive.pm:295
-#, c-format
-msgid "Bringing up the network"
-msgstr "Cychwyn y rhwydwaith"
-
-#: install_interactive.pm:300
-#, c-format
-msgid "Bringing down the network"
-msgstr "Cau'r rhwydwaith"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:10
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandriva "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandriva Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. This document is a license agreement "
-"between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you "
-"explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this "
-"License. \n"
-"If you disagree with any portion of the License, you are not allowed to "
-"install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner "
-"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate "
-"your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all "
-"copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Limited Warranty\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
-"be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without "
-"limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties "
-"resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or "
-"inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or "
-"occurrence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
-"COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
-"no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever "
-"(including without \n"
-"limitation damages for loss of business, interruption of business, financial "
-"loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential "
-"loss) arising out \n"
-"of the possession and use of software components or arising out of "
-"downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some "
-"countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong "
-"cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. The GPL License and Related Licenses\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. "
-"Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the "
-"documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. Intellectual Property Rights\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
-"as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
-"Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Governing Laws \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-msgstr ""
-"Cyflwyniad\n"
-"\n"
-"Bydd y system weithredu a'r cydrannau gwahanol sydd o fewn dosbarthiad "
-"Mandriva Linux yn\n"
-"cael eu galw yn \"Gynnyrch Meddalwedd\" o hyn ymlaen. Mae'r Cynnyrch "
-"Meddalwedd yn\n"
-"cynnwys, ond heb eu cyfyngu, i'r casgliad o raglenni , dulliau, rheolau a "
-"dogfennau mewn\n"
-"perthynas â'r system weithredu a chydrannau gwahanol ddosbarthiad Mandriva "
-"Linux.\n"
-"\n"
-"\n"
-"1. Cytundeb Trwyddedu\n"
-"\n"
-"Darllenwch y ddogfen hon yn ofalus. Mae'r ddogfen hon yn gytundeb trwyddedu "
-"rhyngoch\n"
-"chi â Mandriva S.A,. sy'n berthnasol i'r Cynnyrch Meddalwedd.\n"
-"\n"
-"Wrth osod, dyblygu neu ddefnyddio'r Cynnyrch Meddalwedd mewn unrhyw fodd, "
-"rydych yn\n"
-"amlwg yn derbyn ac yn llawn cytuno i gadw at delerau ac amodau'r Drwydded "
-"hon.\n"
-"Os ydych yn anghytuno ag unrhyw ran o'r cytundeb, ni chewch ganiatâd i osod, "
-"dyblygu\n"
-"neu ddefnyddio'r Cynnyrch Meddalwedd.\n"
-"Bydd unrhyw ymgais i osod, dyblygu neu ddefnyddio'r Cynnyrch Meddalwedd mewn "
-"modd\n"
-"\n"
-"nad yw'n cyd-fynd â thelerau ac amodau'r Drwydded yn ddi-rym a bydd yn "
-"terfynu eich\n"
-"hawliau o dan y Drwydded hon. Ar ddiwedd y Drwydded, rhaid i chi "
-"ddinistrio'n syth pob\n"
-"copi o'r Cynnyrch Meddalwedd.\n"
-"\n"
-"\n"
-"2. Gwarant Gyfyngedig\n"
-"\n"
-"Mae'r Cynnyrch Meddalwedd a'r ddogfennaeth gysylltiedig yn cael eu darparu "
-"\"fel ag y maent\",\n"
-"heb ddim gwarant,\n"
-"hyd y mae'r gyfraith yn caniatáu.\n"
-"Ni fydd Mandriva S.A. yn gyfrifol, o dan unrhyw amgylchiad, a chyhyd ag y "
-"bydd y gyfraith yn\n"
-"caniatáu, am unrhyw iawn o gwbl,\n"
-"arbennig, damweiniol, uniongyrchol neu anuniongyrchol (gan gynnwys heb "
-"gyfyngu ar iawndal\n"
-"am golli busnes, tarfu ar fusnes, colled ariannol, costau cyfreithiol, a "
-"chosb o ganlyniad i achos llys,\n"
-"neu unrhyw golled o ganlyniad) yn codi o'r defnydd neu'r anallu i "
-"ddefnyddio'r Cynnyrch Meddalwedd,\n"
-"hyd yn oed os yw Mandriva wedi eu cynghori o'r posibilrwydd o'r fath iawn.\n"
-"\n"
-"CYFRIFOLDEB CYFYNGEDIG YN GYSYLLTIEDIG GYDA'R MEDDIANT NEU'R DEFNYDD O "
-"FEDDALWEDD\n"
-" GWAHARDDEDIG MEWN RHAI GWLEDYDD\n"
-"\n"
-"Ni fydd Mandriva S.A. yn gyfrifol, o dan unrhyw amgylchiad, a chyhyd y bydd "
-"y gyfraith yn caniatáu,\n"
-"i fod yn atebol am unrhyw iawn o gwbl, arbennig, damweiniol, uniongyrchol "
-"neu anuniongyrchol (gan gynnwys\n"
-"heb gyfyngu ar iawndal am golli busnes, tarfu ar fusnes, colled ariannol, "
-"costau cyfreithiol, a chosb o ganlyniad\n"
-"i achos llys, neu unrhyw golled o ganlyniad) yn codi o lwytho i lawr "
-"cydrannau meddalwedd o un o safleoedd\n"
-" Mandriva Linux, sydd wedi eu gwahardd neu eu hatal mewn rhai gwledydd gan "
-"gyfreithiau lleol. Mae'r\n"
-"cyfrifoldeb cyfyngedig hwn yn perthyn i , ond heb ei gyfyngu i'r, cydrannau "
-"cryptograffiaeth cryf sy'n cael\n"
-"eu cynnwys o fewn y Cynnyrch Meddalwedd.\n"
-"\n"
-"\n"
-"3. Trwydded GPL a Thrwyddedau Cysylltiedig\n"
-"\n"
-"Mae'r Cynnyrch Meddalwedd yn cynnwys cydrannau sydd wedi eu creu gan "
-"bersonau a endidau gwahanol.\n"
-"Mae'r rhan fwyaf o'r cydrannau hyn yn cael eu llywodraethu gan dermau ac "
-"amodau Trwydded Gyhoeddus\n"
-"Cyffredinol (General Public Licence (GPL)), GNU, fydd yn cael ei gyfeirio "
-"ato o hyn ymlaen fel \"GPL\", neu\n"
-"drwyddedau cyffelyb. Mae'r rhan fwyaf o'r trwyddedau'n caniatáu i chi "
-"ddefnyddio, dyblygu, addasu neu\n"
-" ailddosbarthu'r cydrannau maent yn eu cynnwys. Darllenwch delerau ac amodau "
-"trwydded pob cydran cyn\n"
-"eu defnyddio. Dylai pob cwestiwn am drwydded cydran gael ei ofyn i awdur y "
-"gydran ac nid i Mandriva.\n"
-"Mae'r rhaglenni a ddatblygwyd gan Mandriva yn cael eu llywodraethu o dan "
-"Drwydded GLP. Mae'r dogfennau\n"
-" ysgrifennwyd gan Mandriva S.A. yn cael eu llywodraethu gan drwydded "
-"benodol. Darllenwch y dogfennau\n"
-"am fwy o fanylion.\n"
-"\n"
-"\n"
-"4. Hawliau Eiddo Deallusol\n"
-"\n"
-"Mae pob hawl cydrannau'r Cynnyrch Meddalwedd yn perthyn i'w hawduron "
-"perthnasol ac wedi eu hamddiffyn\n"
-"gan gyfreithiau eiddo deallusol a hawlfraint sy'n berthnasol i raglenni "
-"meddalwedd. Mae Mandriva yn cadw\n"
-"ei hawl i newid neu addasu ei Gynnyrch Meddalwedd, yn rhannol neu yn gyfan, "
-"drwy unrhyw ddull ac ar gyfer\n"
-"unrhyw bwrpas.\n"
-"Mae \"Mandriva\", \"Mandriva Linux\" a'r logos cysylltiedig yn nodau "
-"masnachol sy'n perthyn i Mandriva S.A.\n"
-"\n"
-"\n"
-"5. Cyfreithiau Llywodraethol\n"
-"\n"
-"Os bydd unrhyw ran o'r cytundeb hwn yn cael ei ddal yn ddi-rym, "
-"anghyfreithlon neu amherthnasol gan\n"
-"benderfyniad llys, bydd y rhan yma'n cael ei dynnu o'r cytundeb hwn. Byddwch "
-"yn parhau i fod yn rhwymedig\n"
-"i adrannau cymwys o'r cytundeb.\n"
-"Mae telerau ac amodau'r Drwydded hon yn cael eu llywodraethu gan Gyfreithiau "
-"Ffrainc. Mae'n ddymunol y\n"
-"bydd pob anghytundeb ar amodau'r drwydded yn cael eu datrys y tu allan i'r "
-"llys. Fel cam olaf, bydd yr anghytundeb yn cael ei drosglwyddo i'r Llysoedd "
-"Barn, Paris - Ffrainc. Am unrhyw gwestiwn ynghylch y ddogfen hon cysylltwch "
-"â Mandriva S.A. \n"
-
-#: install_messages.pm:90
-#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-"Rhybudd: Mae'n bosibl nad yw Meddalwedd Rhad yn rhydd o batent, ac mae\n"
-"peth Meddalwedd Rhad wedi ei gyfyngu â phatent yn eich gwlad, e.e. gall\n"
-"amgodwyr MP3 fod angen trwydded ar gyfer defnydd pellach\n"
-"(gw. http://www.mp3licensing.com am wybodaeth bellach. Os nad ydych yn\n"
-"siŵr os yw'r patent yn berthnasol i chi, gwiriwch eich cyfreithiau lleol."
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:98
-#, c-format
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-" Rhybudd\n"
-"\n"
-"Darllenwch yr amodau isod yn ofalus. Os ydych yn anghytuno gydag unrhyw\n"
-" ddarn, nid oes caniatâd i chi osod y cyfrwng CD nesaf. Pwyswch 'Gwrthod' i\n"
-" barhau'r gosodiad heb ddefnyddio'r cyfryngau hyn.\n"
-"\n"
-"Nid yw rhai cydrannau ar y CDau canlynol yn cael eu rheoli gan Drwydded GPL\n"
-" neu gytundebau tebyg. Mae'r cydrannau hynny'n cael eu rheoli gan dermau ac\n"
-" amodau ei drwydded benodol ei hun. Darllenwch yn ofalus a chadwch at y\n"
-" trwyddedau penodol cyn defnyddio neu ddosbarthu'r cydrannau hynny.\n"
-"\n"
-"Mae'r trwyddedau hynny'n atal yn gyffredinol, drosglwyddiad, dyblygu (ar "
-"wahan i\n"
-" bwrpas cadw wrth gefn), dosbarthu, cildroi peirianyddol, dadcydosod,\n"
-" dad-grynhoi neu newid y cydrannau. Bydd unrhyw dorri ar yr amodau hyn yn\n"
-"terfynu eich hawl o dan y drwydded benodol. Oni bai ei fod yn rhoi'r hawl i "
-"chi,\n"
-"nid oes modd i chi osod y rhaglenni ar fwy nag un system na'i addasu ar "
-"gyfer\n"
-" defnydd ar rwydwaith. Os oes amheuaeth, cysylltwch yn uniongyrchol â\n"
-"dosbarthwr neu olygydd y cydrannau hynny.\n"
-"Mae trosglwyddo i drydydd parti neu gopïo'r cydrannau hynny gan gynnwys y\n"
-" ddogfennaeth, wedi ei wahardd fel rheol\n"
-"\n"
-"Mae pob hawl i gydrannau'r cyfrwng CD nesaf yn perthyn i' hawduron "
-"perthnasol\n"
-" ac maent wedi eu hamddiffyn drwy gyfreithiau eiddo deallusol a hawlfraint "
-"sy'n\n"
-" berthynol i raglenni meddalwedd.\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:131
-#, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press Enter to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandriva "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandriva Linux User's Guide."
-msgstr ""
-"Llongyfarchiadau, mae'r gosod wedi ei gwblhau.\n"
-"Tynnwch y cyfrwng cychwyn a chlicio Ailgychwyn.\n"
-"\n"
-"\n"
-"Am wybodaeth am gywiriadau sydd ar gael ar gyfer y rhyddhad hwn o Mandriva "
-"Linux,\n"
-"cysylltwch â'r atodiad, sydd i'w gael yn:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Mae gwybodaeth ar ffurfweddu eich system ar gael ym mhenawdau ôl osod\n"
-"yr Official Mandriva Linux User's Guide."
-
-#: install_steps.pm:250
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Pwynt gosod dyblyg %s"
-
-#: install_steps.pm:482
-#, c-format
-msgid ""
-"Some important packages did not get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
-"\"\n"
-msgstr ""
-"Methodd rhai pecynnau pwysig a chael eu gosod yn gywir.\n"
-"Un ai mae eich disg CD-ROM neu eich CD-ROM yn wallus.\n"
-"Gwiriwch y CD-ROM ar gyfrifiadur wedi ei osod gan ddefnyddio \"rpm -qpl "
-"media/main/*.rpm\"\n"
-
-#: install_steps_auto_install.pm:68 install_steps_stdio.pm:27
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Cychwyn cam '%s\"\n"
-
-#: install_steps_gtk.pm:181
-#, c-format
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandriva Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Mae eich sytem yn brin o adnoddau. Efallai bod gennych broblem wrth osod\n"
-"Mandriva Linux. Os yw hynny'n digwydd, defnyddiwch y gosod testun yn lle\n"
-"hynny. I wneud hynny pwyswch 'F1' wrth gychwyn ar CDROM, ac yna teipio "
-"'text'."
-
-#: install_steps_gtk.pm:211 install_steps_interactive.pm:605
-#, c-format
-msgid "Package Group Selection"
-msgstr "Dewis y Grŵp Pecyn"
-
-#: install_steps_gtk.pm:254 install_steps_interactive.pm:548
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Cyfanswm maint: %d/%d MB"
-
-#: install_steps_gtk.pm:299
-#, c-format
-msgid "Bad package"
-msgstr "Pecyn gwallus"
-
-#: install_steps_gtk.pm:301
-#, c-format
-msgid "Version: "
-msgstr "Fersiwn:"
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "Size: "
-msgstr "Maint:"
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "%d KB\n"
-msgstr "%d KB\n"
-
-#: install_steps_gtk.pm:303
-#, c-format
-msgid "Importance: "
-msgstr "Pwysigrwydd: "
-
-#: install_steps_gtk.pm:336
-#, c-format
-msgid "You can not select/unselect this package"
-msgstr "Does dim modd i chi ddewis/dad-ddewis y pecyn"
-
-#: install_steps_gtk.pm:340 network/thirdparty.pm:331
-#, c-format
-msgid "due to missing %s"
-msgstr "oherwydd %s coll"
-
-#: install_steps_gtk.pm:341
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "oherwydd %s annigonol"
-
-#: install_steps_gtk.pm:342
-#, c-format
-msgid "trying to promote %s"
-msgstr "ceisio hyrwyddo %s"
-
-#: install_steps_gtk.pm:343
-#, c-format
-msgid "in order to keep %s"
-msgstr "er mwyn cadw %s"
-
-#: install_steps_gtk.pm:348
-#, c-format
-msgid ""
-"You can not select this package as there is not enough space left to install "
-"it"
-msgstr "Nid oes modd i chi ddewis y pecyn hwn - does dim lle ar ôl i'w osod"
-
-#: install_steps_gtk.pm:351
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Mae'r pecynnau canlynol i'w gosod"
-
-#: install_steps_gtk.pm:352
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Bydd y pecynnau canlynol yn cael eu tynnu"
-
-#: install_steps_gtk.pm:376
-#, c-format
-msgid "This is a mandatory package, it can not be unselected"
-msgstr "Mae hwn yn becyn hanfodol, does dim modd ei ddad-ddewis"
-
-#: install_steps_gtk.pm:378
-#, c-format
-msgid "You can not unselect this package. It is already installed"
-msgstr "Does dim mod dad-ddewis y pecyn, mae wedi ei osod yn barod"
-
-#: install_steps_gtk.pm:381
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Rhaid i'r pecyn gael ei uwchraddio\n"
-"Ydych chi'n siŵr eich bod am ei ddad-ddewis?"
-
-#: install_steps_gtk.pm:384
-#, c-format
-msgid "You can not unselect this package. It must be upgraded"
-msgstr "Does dim mod dad-ddewis y pecyn hwn. Rhaid ei ddiweddaru"
-
-#: install_steps_gtk.pm:389
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Dangoswch y pecynnau dewis awtomatig"
-
-#: install_steps_gtk.pm:394
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
-msgid "Load/Save selection"
-msgstr "Llwytho/Cadw'r dewis"
-
-#: install_steps_gtk.pm:395
-#, c-format
-msgid "Updating package selection"
-msgstr "Diweddaru'r dewis pecynnau"
-
-#: install_steps_gtk.pm:400
-#, c-format
-msgid "Minimal install"
-msgstr "Gosodiad lleiaf"
-
-#: install_steps_gtk.pm:414 install_steps_interactive.pm:467
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Dewiswch y pecynnau hoffech chi eu gosod"
-
-#: install_steps_gtk.pm:431 install_steps_interactive.pm:691
-#, c-format
-msgid "Installing"
-msgstr "Gosod"
-
-#: install_steps_gtk.pm:457
-#, c-format
-msgid "No details"
-msgstr "Dim manylion"
-
-#: install_steps_gtk.pm:472
-#, c-format
-msgid "Time remaining "
-msgstr "Amser yn weddill"
-
-#: install_steps_gtk.pm:473
-#, c-format
-msgid "Estimating"
-msgstr "Amcangyfrif"
-
-#: install_steps_gtk.pm:500
-#, c-format
-msgid "%d packages"
-msgstr "%d pecyn"
-
-#: install_steps_gtk.pm:543 install_steps_interactive.pm:719
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Newidiwch eich CD-ROM\n"
-"\n"
-"Rhowch y CD-ROM \"%s\" yn eich gyrrwr a chlicio Iawn ar ôl gorffen\n"
-"Os nad yw gennych, cliciwch Dileu i osgoi gosod o'r CD-ROM hon."
-
-#: install_steps_gtk.pm:556 install_steps_interactive.pm:730
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Roedd gwall wrth drefnu pecynnau"
-
-#: install_steps_gtk.pm:558 install_steps_interactive.pm:734
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Digwyddodd gwall wrth osod pecyn"
-
-#: install_steps_gtk.pm:560 install_steps_interactive.pm:730
-#: install_steps_interactive.pm:734
-#, c-format
-msgid "Go on anyway?"
-msgstr "Mynd yn ein blaen beth bynnag?"
-
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:910 steps.pm:30
-#, c-format
-msgid "Summary"
-msgstr "Crynodeb"
-
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:906
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "not configured"
-msgstr "heb ffurfweddu"
-
-#: install_steps_gtk.pm:668
-#, c-format
-msgid ""
-"The following installation media have been found.\n"
-"If you want to skip some of them, you can unselect them now."
-msgstr ""
-"Mae'r cyfrwng gosod canlynol wedi ei ganfod.\n"
-"Os hoffech hepgor rhai ohonynt, dad-ddewiswch nhw nawr."
-
-#: install_steps_gtk.pm:677
-#, c-format
-msgid ""
-"You have the option to copy the contents of the CDs onto the hard drive "
-"before installation.\n"
-"It will then continue from the hard drive and the packages will remain "
-"available once the system is fully installed."
-msgstr ""
-"Mae gennych y dewis i gopîo cynnwys y CD ar i'r disg caled cyn gosod "
-"Mandriva Linux.\n"
-"Bydd yna'n parhau o'r disg caled a bydd y pecynnau ar gael unwaith i'r "
-"system gael ei osod yn gyflawn."
-
-#: install_steps_gtk.pm:679
-#, c-format
-msgid "Copy whole CDs"
-msgstr "Copïo'r CDau cyfan"
-
-#: install_steps_interactive.pm:95
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Dewiswch gynllun eich bysellfwrdd"
-
-#: install_steps_interactive.pm:97
-#, c-format
-msgid "Here is the full list of available keyboards"
-msgstr "Dyma restr lawn o'r bysellfyrddau sydd ar gael"
-
-#: install_steps_interactive.pm:127
-#, c-format
-msgid "Install/Upgrade"
-msgstr "Gosod/Diweddaru"
-
-#: install_steps_interactive.pm:128
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Gosod neu ddiweddaru?"
-
-#: install_steps_interactive.pm:134
-#, c-format
-msgid "Upgrade %s"
-msgstr "Diweddaru %s"
-
-#: install_steps_interactive.pm:147
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Allwedd amgryptio ar gyfer %s"
-
-#: install_steps_interactive.pm:170
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Dewiswch fath eich llygoden"
-
-#: install_steps_interactive.pm:171
-#, c-format
-msgid "Mouse choice"
-msgstr "Dewis llygoden"
-
-#: install_steps_interactive.pm:180 standalone/mousedrake:46
-#, c-format
-msgid "Mouse Port"
-msgstr "Porth Llygoden"
-
-#: install_steps_interactive.pm:181 standalone/mousedrake:47
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Dewiswch ba borth cyfresol mae eich llygoden wedi cysylltu iddi"
-
-#: install_steps_interactive.pm:191
-#, c-format
-msgid "Buttons emulation"
-msgstr "Efelychiad botymau"
-
-#: install_steps_interactive.pm:193
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Efelychiad Botwm 2"
-
-#: install_steps_interactive.pm:194
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Efelychiad Botwm 3"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Ffurfweddu cardiau PCMCIA..."
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "Configuring IDE"
-msgstr "Ffurfweddu IDE"
-
-#: install_steps_interactive.pm:242
-#, c-format
-msgid "No partition available"
-msgstr "dim rhaniadau ar gael"
-
-#: install_steps_interactive.pm:245
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Sganio rhaniadau i ganfod pwyntiau gosod"
-
-#: install_steps_interactive.pm:252
-#, c-format
-msgid "Choose the mount points"
-msgstr "Dewiswch y pwyntiau gosod"
-
-#: install_steps_interactive.pm:300
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Nid oes lle rhydd ar gyfer yr ymlwythwr 1MB! Bydd y gosodiad yn parhau, ond "
-"i gychwyn y system bydd rhaid i chi greu rhaniad ymlwythwr yn DiskDrake"
-
-#: install_steps_interactive.pm:305
-#, c-format
-msgid ""
-"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
-"to boot your system, you'll need to create the bootstrap partition in "
-"DiskDrake"
-msgstr ""
-"Bydd angen i chi greu llwythwr mwdwl PPC PReP Boot! Bydd y gosodiad yn "
-"parhau, ond i gychwyn y system bydd rhaid i chi greu rhaniad ymlwythwr yn "
-"DiskDrake"
-
-#: install_steps_interactive.pm:341
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Dewiswch y rhaniadau rydych am eu fformatio"
-
-#: install_steps_interactive.pm:343
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Gwirio blociau gwallus?"
-
-#: install_steps_interactive.pm:371
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
-msgstr ""
-"Wedi methu gwirio system ffeiliau %s. Hoffech chi drwsio'r gwallau? (gofal, "
-"mae modd colli data)"
-
-#: install_steps_interactive.pm:374
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Dim digon o le cyfnewid i gyflawni'r gosodiad, ychwanegwch ragor"
-
-#: install_steps_interactive.pm:383
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr ""
-"Chwilio am y pecynnau sydd ar gael ac yn ailadeiladu cronfa ddata rpm..."
-
-#: install_steps_interactive.pm:384 install_steps_interactive.pm:436
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Casglu'r pecynnau sydd ar gael"
-
-#: install_steps_interactive.pm:405 install_steps_interactive.pm:810
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Dewiswch ddrych lle mae modd estyn y pecynnau"
-
-#: install_steps_interactive.pm:445
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Nid oes gan eich system ddigon o le ar ôl ar gyfer gosodiad neu uwchraddiad "
-"(%d> %d)"
-
-#: install_steps_interactive.pm:479
-#, c-format
-msgid ""
-"Please choose load or save package selection.\n"
-"The format is the same as auto_install generated files."
-msgstr ""
-"Dewiswch lwytho neu gadw pecyn dewiswyd.\n"
-"Mae'r fformat yr un â ffeiliau cynhyrchwyd drwy auto_install."
-
-#: install_steps_interactive.pm:481
-#, c-format
-msgid "Load"
-msgstr "Llwyth"
-
-#: install_steps_interactive.pm:481 standalone/drakbackup:4083
-#: standalone/drakbackup:4153 standalone/logdrake:175
-#, c-format
-msgid "Save"
-msgstr "Gorffen"
-
-#: install_steps_interactive.pm:489
-#, c-format
-msgid "Bad file"
-msgstr "Ffeil drwg"
-
-#: install_steps_interactive.pm:562
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Mae'r maint a ddewiswyd yn fwy na'r lle ar gael"
-
-#: install_steps_interactive.pm:577
-#, c-format
-msgid "Type of install"
-msgstr "Math o osodiad"
-
-#: install_steps_interactive.pm:578
-#, c-format
-msgid ""
-"You have not selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Nid ydych wedi dewis unrhyw grwpiau o becynnau.\n"
-"Dewiswch y gosodiad lleiaf rydych ei eisiau"
-
-#: install_steps_interactive.pm:582
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Gyda dogfennaeth elfennol (argymhellir!)"
-
-#: install_steps_interactive.pm:583
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Gosodiad bychan iawn (yn arbennig dim urpmi)"
-
-#: install_steps_interactive.pm:622 standalone/drakxtv:52
-#, c-format
-msgid "All"
-msgstr "Popeth"
-
-#: install_steps_interactive.pm:661
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"Os yw'r holl CDau sydd yn y rhestr gennych, cliciwch Iawn.\n"
-"Os nad oes gennych un ohonynt, Cliciwch Diddymu.\n"
-"Os mae dim ond rhai CDau sydd ar goll, yna cliciwch Iawn."
-
-#: install_steps_interactive.pm:666
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom wedi ei labelu \"%s\""
-
-#: install_steps_interactive.pm:691
-#, c-format
-msgid "Preparing installation"
-msgstr "Paratoi'r gosodiad"
-
-#: install_steps_interactive.pm:699
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Gosod pecyn %s\n"
-"%d%%"
-
-#: install_steps_interactive.pm:748
-#, c-format
-msgid "Post-install configuration"
-msgstr "Ffurfweddiad ôl osod"
-
-#: install_steps_interactive.pm:755
-#, c-format
-msgid "Please ensure the Update Modules media is in drive %s"
-msgstr "Gwnewch yn siŵr fod cyfrwng Diweddaru Modiwlau yng ngyrrwr %s"
-
-#: install_steps_interactive.pm:783
-#, c-format
-msgid "Updates"
-msgstr "Diweddaru"
-
-#: install_steps_interactive.pm:784
-#, c-format
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates?"
-msgstr ""
-"Mae'n bosibl i chi llwytho i lawr y pecynnau diweddaraf sydd wedi eu\n"
-"ryddhau ers i'r dosbarthiad fod ar gael. Efallai bod gwallau a materion "
-"diogelwch wedi eu cywiro\n"
-"\n"
-"I lwytho'r pecynnau i lawr, bydd angen cyswllt gweithredol\n"
-"â'r Rhyngrwyd.\n"
-"\n"
-"Ydych chi am osod y diweddariadau?"
-
-#: install_steps_interactive.pm:805
-#, c-format
-msgid ""
-"Contacting Mandriva Linux web site to get the list of available mirrors..."
-msgstr "Cysylltu â safle gwe Mandriva Linux i estyn y rhestr o ddrychau..."
-
-#: install_steps_interactive.pm:824
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Cysylltu â'r drych i estyn y rhestr o becynnau sydd ar gael"
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Methu canfod drych: %s."
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Hoffech chi geisio eto?"
-
-#: install_steps_interactive.pm:855 standalone/drakclock:45
-#: standalone/finish-install:56
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Pa un yw eich parth amser?"
-
-#: install_steps_interactive.pm:860
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Cydweddi amser awtomatig (defnyddio NTP)"
-
-#: install_steps_interactive.pm:868
-#, c-format
-msgid "NTP Server"
-msgstr "Gweinydd NTP"
-
-#: install_steps_interactive.pm:923 install_steps_interactive.pm:931
-#: install_steps_interactive.pm:949 install_steps_interactive.pm:956
-#: install_steps_interactive.pm:1107 services.pm:133
-#: standalone/drakbackup:1596
-#, c-format
-msgid "System"
-msgstr "System"
-
-#: install_steps_interactive.pm:963 install_steps_interactive.pm:990
-#: install_steps_interactive.pm:1007 install_steps_interactive.pm:1023
-#: install_steps_interactive.pm:1034
-#, c-format
-msgid "Hardware"
-msgstr "Caledwedd"
-
-#: install_steps_interactive.pm:969 install_steps_interactive.pm:978
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Gweinydd CUPS pell"
-
-#: install_steps_interactive.pm:969
-#, c-format
-msgid "No printer"
-msgstr "Nid oes argraffydd"
-
-#: install_steps_interactive.pm:1011
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "A oes gennych gerdyn sain ISA?"
-
-#: install_steps_interactive.pm:1013
-#, c-format
-msgid ""
-"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
-"card"
-msgstr ""
-"Rhedwch \"alsaconfig\" neu \"sndconfig\" wedi'r gosodiad i ffurfweddu'ch "
-"cerdyn sain"
-
-#: install_steps_interactive.pm:1015
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr "Heb ganfod cerdyn sain. Ceisiwch \"harddrake\" wedi'r gosodiad"
-
-#: install_steps_interactive.pm:1035
-#, c-format
-msgid "Graphical interface"
-msgstr "Rhyngwyneb graffigol"
-
-#: install_steps_interactive.pm:1041 install_steps_interactive.pm:1053
-#, c-format
-msgid "Network & Internet"
-msgstr "Rhwydwaith a'r Rhyngrwyd"
-
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "configured"
-msgstr "ffurfweddu"
-
-#: install_steps_interactive.pm:1064 install_steps_interactive.pm:1078
-#: security/level.pm:55 steps.pm:20
-#, c-format
-msgid "Security"
-msgstr "Diogelwch"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "activated"
-msgstr "gweithredu"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "disabled"
-msgstr "anablwyd"
-
-#: install_steps_interactive.pm:1094
-#, c-format
-msgid "Boot"
-msgstr "Cychwyn"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1098 printer/printerdrake.pm:961
-#, c-format
-msgid "%s on %s"
-msgstr "%s ar %s"
-
-#: install_steps_interactive.pm:1112 services.pm:175
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Gwasanaethau: %d wedi eu cychwyn ar gyfer %d wedi eu cofrestru"
-
-#: install_steps_interactive.pm:1124
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "Nid ydych wedi ffurfweddu X. Ydych chi'n siŵr eich bod am wneud hyn?"
-
-#: install_steps_interactive.pm:1205
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Paratoi cychwynnwr"
-
-#: install_steps_interactive.pm:1215
-#, c-format
-msgid ""
-"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
-"will not work for you. The install will continue, but you'll need to use "
-"BootX or some other means to boot your machine. The kernel argument for the "
-"root fs is: root=%s"
-msgstr ""
-"Mae'n ymddangos fod gennych beiriant OldWorld neu Anhysbys ac ni fydd "
-"cychwynnydd yaboot yn gweithio ar eich cyfer Bydd y gosodiad yn parhau ond "
-"bydd rhaid defnyddio BootX i gychwyn eich peiriant. Ymresymiad y cnewyllyn "
-"ar gyfer y gwraidd yw: root=%s"
-
-#: install_steps_interactive.pm:1221
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Ydych chi eisiau defnyddio aboot?"
-
-#: install_steps_interactive.pm:1224
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Gwall gosod aboot, \n"
-"ceisiwch orfodi gosodiad hyd yn oed os yw hynny'n dinistrio'r rhaniad cyntaf?"
-
-#: install_steps_interactive.pm:1241
-#, c-format
-msgid ""
-"In this security level, access to the files in the Windows partition is "
-"restricted to the administrator."
-msgstr ""
-"Ar y lefel diogelwch yma, mae mynedfa i ffeiliau yn rhaniad Windows wedi eu "
-"cyfyngu i'r Gweinyddwr."
-
-#: install_steps_interactive.pm:1270 standalone/drakautoinst:76
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Rhowch ddisg meddal yng ngyrrwr %s"
-
-#: install_steps_interactive.pm:1275
-#, c-format
-msgid "Please insert another floppy for drivers disk"
-msgstr "Mewnosodwch ddisg meddal arall ar gyfer gyrwyr disg"
-
-#: install_steps_interactive.pm:1277
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Creu disg meddal awto gosod"
-
-#: install_steps_interactive.pm:1289
-#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Nid yw rhai camau wedi eu cwblhau.\n"
-"\n"
-"Ydych chi wir eisiau gorffen?"
-
-#: install_steps_interactive.pm:1299 standalone/draksambashare:421
-#: standalone/draksambashare:527 standalone/drakups:118 standalone/drakups:157
-#: standalone/logdrake:451 standalone/logdrake:457
-#, c-format
-msgid "Congratulations"
-msgstr "Llongyfarchiadau"
-
-#: install_steps_interactive.pm:1307 install_steps_interactive.pm:1308
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Creu disg meddal awto gosod"
-
-#: install_steps_interactive.pm:1309
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Mae modd awtomeiddio'r awto gosod, os hoffech\n"
-"chi, yn yr achos hwnnw bydd yn cymryd drosodd y\n"
-"disg caled!!\n"
-"(mae hyn ar gyfer gosod ar flwch arall).\n"
-"\n"
-"Efallai byddai'n well gennych ai osod y gosodiad.\n"
-
-#: install_steps_newt.pm:20
-#, c-format
-msgid "Mandriva Linux Installation %s"
-msgstr "Gosodiad %s Mandriva Linux"
-
-#. -PO: This string must fit in a 80-char wide text screen
-#: install_steps_newt.pm:37
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> rhwng elfennau | <Space> yn dewis | <F12> y sgrin nesaf "
+msgid "No"
+msgstr "Na"
-#: interactive.pm:196
+#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "Dewis ffeil"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakbackup:1537
-#: standalone/drakfont:649 standalone/drakhosts:242 standalone/draknfs:605
-#: standalone/draksambashare:1127 standalone/drakups:299
-#: standalone/drakups:359 standalone/drakups:379 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Add"
msgstr "Ychwanegu"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakhosts:249
-#: standalone/draknfs:612 standalone/draksambashare:1084
-#: standalone/draksambashare:1137 standalone/draksambashare:1176
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Modify"
msgstr "Newid"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakfont:732
-#: standalone/drakhosts:256 standalone/draknfs:619
-#: standalone/draksambashare:1085 standalone/draksambashare:1145
-#: standalone/draksambashare:1184 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Remove"
msgstr "Tynnu"
-#: interactive.pm:398
-#, c-format
-msgid "Basic"
-msgstr "Elfennol"
-
-#: interactive.pm:436 interactive/newt.pm:321 ugtk2.pm:490
+#: interactive.pm:538 interactive/curses.pm:217 ugtk2.pm:508
#, c-format
msgid "Finish"
msgstr "Gorffen"
-#: interactive/newt.pm:92
+#: interactive.pm:539 interactive/curses.pm:214 ugtk2.pm:506
#, c-format
-msgid "Do"
-msgstr "Gwneud"
+msgid "Previous"
+msgstr "Blaenorol"
#: interactive/stdio.pm:29 interactive/stdio.pm:148
#, c-format
@@ -7697,1960 +3378,1205 @@ msgstr ""
msgid "Re-submit"
msgstr "Ail-gyflwyno"
-#: keyboard.pm:171 keyboard.pm:202
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTZ)"
-msgstr "Tsiec (QWERTY)"
-
-#: keyboard.pm:172 keyboard.pm:204
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German"
-msgstr "Almaenaidd"
-
-#: keyboard.pm:173
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak"
-msgstr "Dvorak"
-
-#: keyboard.pm:174 keyboard.pm:217
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Spanish"
-msgstr "Sbaenaidd"
-
-#: keyboard.pm:175 keyboard.pm:218
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Finnish"
-msgstr "Ffinnaidd"
-
-#: keyboard.pm:176 keyboard.pm:220
-#, c-format
-msgid ""
-"_: keyboard\n"
-"French"
-msgstr "Ffrengig"
-
-#: keyboard.pm:177 keyboard.pm:264
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Norwegian"
-msgstr "Norwyaidd"
-
-#: keyboard.pm:178
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish"
-msgstr "Pwylaidd"
-
-#: keyboard.pm:179 keyboard.pm:275
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian"
-msgstr "Rwsiaidd"
-
-#: keyboard.pm:180 keyboard.pm:281
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swedish"
-msgstr "Swedaidd"
-
-#: keyboard.pm:181 keyboard.pm:310
-#, c-format
-msgid "UK keyboard"
-msgstr "Bysellfwrdd DG"
-
-#: keyboard.pm:182 keyboard.pm:313
-#, c-format
-msgid "US keyboard"
-msgstr "Bysellfwrdd UDA"
-
-#: keyboard.pm:184
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Albanian"
-msgstr "Albaniaidd"
-
-#: keyboard.pm:185
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (old)"
-msgstr "Armenaidd (hen)"
-
-#: keyboard.pm:186
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (typewriter)"
-msgstr "Armenaidd (teipiadur)"
-
-#: keyboard.pm:187
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (phonetic)"
-msgstr "Armenaidd (ffonetig)"
-
-#: keyboard.pm:188
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Arabic"
-msgstr "Arabaidd"
-
-#: keyboard.pm:189
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Azerbaidjani (latin)"
-msgstr "Azerbaidjan (lladin)"
-
-#: keyboard.pm:190
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belgian"
-msgstr "Belgaidd"
-
-#: keyboard.pm:191
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Inscript-layout)"
-msgstr "Bengalaidd (gosodiad Inscript)"
-
-#: keyboard.pm:192
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Probhat)"
-msgstr "Bengalaidd (gosodiad Probhat)"
-
-#: keyboard.pm:193
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (phonetic)"
-msgstr "Bwlgaraidd (ffonetig)"
-
-#: keyboard.pm:194
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (BDS)"
-msgstr "Bwlgaraidd (BDS)"
-
-#: keyboard.pm:195
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Brazilian (ABNT-2)"
-msgstr "Brasilaidd (ABNT-2)"
-
-#: keyboard.pm:196
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bosnian"
-msgstr "Bosniaidd"
-
-#: keyboard.pm:197
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belarusian"
-msgstr "Belarusaidd"
-
-#: keyboard.pm:198
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (German layout)"
-msgstr "Swisaidd (gosodiad Almaeneg)"
-
-#: keyboard.pm:199
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (French layout)"
-msgstr "Swisaidd (gosodiad Ffrengig)"
-
-#: keyboard.pm:201
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Cherokee syllabics"
-msgstr "sillafog Cherokee"
-
-#: keyboard.pm:203
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTY)"
-msgstr "Tsiec (QWERTY)"
-
-#: keyboard.pm:205
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German (no dead keys)"
-msgstr "Almaenaidd (dim bysellau marw)"
-
-#: keyboard.pm:206
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Devanagari"
-msgstr "Devanagari"
-
-#: keyboard.pm:207
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Danish"
-msgstr "Danaidd"
-
-#: keyboard.pm:208
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (US)"
-msgstr "Dvorak (UDA)"
-
-#: keyboard.pm:209
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Esperanto)"
-msgstr "Dvorak (Esperanto)"
-
-#: keyboard.pm:210
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (French)"
-msgstr "Dvorak (Ffrengig)"
-
-#: keyboard.pm:211
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (UK)"
-msgstr "Dvorak (DG)"
-
-#: keyboard.pm:212
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Norwegian)"
-msgstr "Dvorak (Norwyaidd)"
-
-#: keyboard.pm:213
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Polish)"
-msgstr "Dvorak (Pwylaidd)"
-
-#: keyboard.pm:214
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Swedish)"
-msgstr "Dvorak (Swedaidd)"
-
-#: keyboard.pm:215
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dzongkha/Tibetan"
-msgstr "Dzongkha/Tibetaidd"
-
-#: keyboard.pm:216
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Estonian"
-msgstr "Estonaidd"
-
-#: keyboard.pm:219
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Faroese"
-msgstr "Ffaroaidd"
-
-#: keyboard.pm:221
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Russian\" layout)"
-msgstr "Georgaidd (gosodiad \"Rwsiaidd\")"
-
-#: keyboard.pm:222
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Latin\" layout)"
-msgstr "Georgaidd (gosodiad \"Lladinaidd\")"
-
-#: keyboard.pm:223
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek"
-msgstr "Groegaidd"
-
-#: keyboard.pm:224
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek (polytonic)"
-msgstr "Groegaidd (polytonic)"
-
-#: keyboard.pm:225
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gujarati"
-msgstr "Gujarati"
-
-#: keyboard.pm:226
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gurmukhi"
-msgstr "Gurmukhi"
-
-#: keyboard.pm:227
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Croatian"
-msgstr "Croataidd"
-
-#: keyboard.pm:228
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Hungarian"
-msgstr "Hwngaraidd"
-
-#: keyboard.pm:229
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Irish"
-msgstr "Gwyddelig"
-
-#: keyboard.pm:230
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli"
-msgstr "Israelaidd"
-
-#: keyboard.pm:231
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli (phonetic)"
-msgstr "Israelaidd (Ffonetig)"
-
-#: keyboard.pm:232
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Iranian"
-msgstr "Iranaidd"
-
-#: keyboard.pm:233
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Icelandic"
-msgstr "Eislandaidd"
-
-#: keyboard.pm:234
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Italian"
-msgstr "Eidalaidd"
-
-#: keyboard.pm:235
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Inuktitut"
-msgstr "Inuktitut"
-
-#: keyboard.pm:239
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Japanese 106 keys"
-msgstr "Siapaëaidd 106 bysell"
-
-#: keyboard.pm:240
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kannada"
-msgstr "Kannada"
-
-#: keyboard.pm:243
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Korean"
-msgstr "Bysellfwrdd Corëaidd"
-
-#: keyboard.pm:245
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kurdish (arabic script)"
-msgstr "Cwrdaidd (sgript arabaidd)"
-
-#: keyboard.pm:246
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kyrgyz"
-msgstr "Bysellfwrdd Kyrgyz"
-
-#: keyboard.pm:247
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latin American"
-msgstr "Lladin America"
-
-#: keyboard.pm:249
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Laotian"
-msgstr "Laotiaidd"
-
-#: keyboard.pm:250
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (old)"
-msgstr "Lithuenaidd AZERTY (hen)"
-
-#: keyboard.pm:252
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (new)"
-msgstr "Lithuenaidd AZERTY (newydd)"
-
-#: keyboard.pm:253
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"number row\" QWERTY"
-msgstr "Lithuenaidd \"rhes rhif\" QWERTY"
-
-#: keyboard.pm:254
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"phonetic\" QWERTY"
-msgstr "Lithuenaidd \"ffonetig\" QWERTY"
-
-#: keyboard.pm:255
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latvian"
-msgstr "Latfiaidd"
-
-#: keyboard.pm:256
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Malayalam"
-msgstr "Malayalamaidd"
-
-#: keyboard.pm:258
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Macedonian"
-msgstr "Macedonaidd"
-
-#: keyboard.pm:259
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Myanmar (Burmese)"
-msgstr "Myanmar (Burma)"
-
-#: keyboard.pm:260
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Mongolian (cyrillic)"
-msgstr "Mongolaidd (cyrillic)"
-
-#: keyboard.pm:261
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (UK)"
-msgstr "Maltaidd (DU)"
-
-#: keyboard.pm:262
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (US)"
-msgstr "Maltaidd (UDA)"
-
-#: keyboard.pm:263
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dutch"
-msgstr "Isalmaenaidd"
-
-#: keyboard.pm:265
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Oriya"
-msgstr "Oriya"
-
-#: keyboard.pm:266
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwerty layout)"
-msgstr "Pwylaidd (gosodiad qwerty)"
-
-#: keyboard.pm:267
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwertz layout)"
-msgstr "Pwylaidd (gosodiad qwerty)"
-
-#: keyboard.pm:269
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Pashto"
-msgstr "Patsho"
-
-#: keyboard.pm:270
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Portuguese"
-msgstr "Portiwgalaidd"
-
-#: keyboard.pm:272
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Canadian (Quebec)"
-msgstr "Canada (Quebec)"
-
-#: keyboard.pm:273
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwertz)"
-msgstr "Romanaidd (qwertz)"
-
-#: keyboard.pm:274
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwerty)"
-msgstr "Romanaidd (qwerty)"
-
-#: keyboard.pm:276
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian (phonetic)"
-msgstr "Rwsiaidd (Ffonetig)"
-
-#: keyboard.pm:277
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (norwegian)"
-msgstr "Saami (norwyaidd)"
-
-#: keyboard.pm:278
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (swedish/finnish)"
-msgstr "Saami (Swedaidd/Ffinaidd)"
-
-#: keyboard.pm:280
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sindhi"
-msgstr "Sindhi"
-
-#: keyboard.pm:282
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovenian"
-msgstr "Slfenaidd"
-
-#: keyboard.pm:284
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sinhala"
-msgstr ""
-"_: keyboard\n"
-"Sinhala"
-
-#: keyboard.pm:285
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTZ)"
-msgstr "Slofacaidd (QWERTZ)"
-
-#: keyboard.pm:286
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTY)"
-msgstr "Slofacaidd (QWERTY)"
-
-#: keyboard.pm:288
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Serbian (cyrillic)"
-msgstr "Serbaidd (cyrilig)"
-
-#: keyboard.pm:289
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac"
-msgstr "Syriaidd"
-
-#: keyboard.pm:290
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac (phonetic)"
-msgstr "Syriaidd (ffonetig)"
-
-#: keyboard.pm:291
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Telugu"
-msgstr "Telugu"
-
-#: keyboard.pm:293
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (ISCII-layout)"
-msgstr "Tamil (cynllun TSCII)"
-
-#: keyboard.pm:294
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (Typewriter-layout)"
-msgstr "Tamil (cynllun teipiadur)"
-
-#: keyboard.pm:295
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Kedmanee)"
-msgstr "Thai (Kedmanee)"
-
-#: keyboard.pm:296
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (TIS-820)"
-msgstr "Thai (TIS-820)"
-
-#: keyboard.pm:298
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Pattachote)"
-msgstr "Thai (Pattachote)"
-
-#: keyboard.pm:300
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (moroccan layout) (+latin/arabic)"
-msgstr ""
-"_: keyboard\n"
-"Tifinagh (cynllun moroccot) (+lladin/arabeg)"
-
-#: keyboard.pm:301
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (phonetic) (+latin/arabic)"
-msgstr ""
-"_: keyboard\n"
-"Tifinagh (phonetig) (+lladin/arabeg)"
-
-#: keyboard.pm:303
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tajik"
-msgstr "Bysellfwrdd Tajig"
-
-#: keyboard.pm:305
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkmen"
-msgstr "Turkmen"
-
-#: keyboard.pm:306
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (traditional \"F\" model)"
-msgstr "Twrcaidd (model traddodiadol \"F\")"
-
-#: keyboard.pm:307
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (modern \"Q\" model)"
-msgstr "Twrcaidd (model modern \"Q\")"
-
-#: keyboard.pm:309
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Ukrainian"
-msgstr "Wcranaidd"
-
-#: keyboard.pm:312
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Urdu keyboard"
-msgstr "bysellfwrdd Urdu"
-
-#: keyboard.pm:314
-#, c-format
-msgid "US keyboard (international)"
-msgstr "Bysellfwrdd UDA (rhyngwladol)"
-
-#: keyboard.pm:315
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Uzbek (cyrillic)"
-msgstr "Uzbekaidd (Cyrilig)"
-
-#: keyboard.pm:317
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Vietnamese \"numeric row\" QWERTY"
-msgstr "Fietnamëaidd \"rhes rhifol\" QWERTY"
-
-#: keyboard.pm:318
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Yugoslavian (latin)"
-msgstr "Iwgoslafaidd (lladin)"
-
-#: keyboard.pm:325
-#, c-format
-msgid "Right Alt key"
-msgstr "Bysell Alt dde"
-
-#: keyboard.pm:326
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Y ddwy fysell Shift gyda'i gilydd"
-
-#: keyboard.pm:327
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Bysellau Control a Shift gyda'i gilydd"
-
-#: keyboard.pm:328
-#, c-format
-msgid "CapsLock key"
-msgstr "Bysell CapsLock"
-
-#: keyboard.pm:329
-#, c-format
-msgid "Shift and CapsLock keys simultaneously"
-msgstr "Bysellau Shift ac CapsLock gyda'i gilydd"
-
-#: keyboard.pm:330
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Bysellau Ctrl ac Alt gyda'i gilydd"
-
-#: keyboard.pm:331
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Bysellau Alt a Shift gyda'i gilydd"
-
-#: keyboard.pm:332
-#, c-format
-msgid "\"Menu\" key"
-msgstr "Bysell \"Dewislen\""
-
-#: keyboard.pm:333
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Bysell \"Windows\" chwith"
-
-#: keyboard.pm:334
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Bysell \"Windows\" de"
-
-#: keyboard.pm:335
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Y ddwy fysell Control gyda'i gilydd"
-
-#: keyboard.pm:336
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Y ddwy fysell Alt gyda'i gilydd"
-
-#: keyboard.pm:337
-#, c-format
-msgid "Left Shift key"
-msgstr "Bysell Shift chwith"
-
-#: keyboard.pm:338
-#, c-format
-msgid "Right Shift key"
-msgstr "Bysell Alt dde"
-
-#: keyboard.pm:339
-#, c-format
-msgid "Left Alt key"
-msgstr "Bysell Alt chwith"
-
-#: keyboard.pm:340
-#, c-format
-msgid "Left Control key"
-msgstr "Bysell Control chwith"
-
-#: keyboard.pm:341
-#, c-format
-msgid "Right Control key"
-msgstr "Bysell Control dde"
-
-#: keyboard.pm:377
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Yma gallwch ddewis y fysell neu gyfuniad o fysellau fydd yn\n"
-"caniatáu newid rhwng bysellfyrddau gwahanol (e.e.: lladin neu\n"
-"arall)"
-
-#: keyboard.pm:382
-#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
-msgstr ""
-"Bydd y gosodiad yn dod i rym wedi'r gosod.\n"
-"Yn ystod y gosod, bydd angen i chi ddefnyddio'r fysell\n"
-"Crtl de i newid rhwng bysellfyrddau cynllun gwahanol."
-
#. -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:178
+#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"
-#: lang.pm:195
+#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "Andorra"
-#: lang.pm:196 network/adsl_consts.pm:943
+#: lang.pm:211 timezone.pm:213
#, c-format
msgid "United Arab Emirates"
msgstr "United Arab Emirates"
-#: lang.pm:197
+#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "Afghanistan"
-#: lang.pm:198
+#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigua a Barbuda"
-#: lang.pm:199
+#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "Anguilla"
-#: lang.pm:200
+#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "Albania"
-#: lang.pm:201
+#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "Armenia"
-#: lang.pm:202
+#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "Netherlands Antilles"
-#: lang.pm:203
+#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "Angola"
-#: lang.pm:204
+#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "Antarctica"
-#: lang.pm:205 network/adsl_consts.pm:55 standalone/drakxtv:50
+#: lang.pm:220 timezone.pm:258
#, c-format
msgid "Argentina"
msgstr "Yr Ariannin"
-#: lang.pm:206
+#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "American Samoa"
-#: lang.pm:209
+#: lang.pm:222 mirror.pm:11 timezone.pm:216
+#, c-format
+msgid "Austria"
+msgstr "Awstria"
+
+#: lang.pm:223 mirror.pm:10 timezone.pm:254
+#, c-format
+msgid "Australia"
+msgstr "Awstralia"
+
+#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "Aruba"
-#: lang.pm:210
+#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "Azerbaijan"
-#: lang.pm:211
+#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosnia ac Herzegovina"
-#: lang.pm:212
+#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "Barbados"
-#: lang.pm:213
+#: lang.pm:228 timezone.pm:198
#, c-format
msgid "Bangladesh"
msgstr "Bangladesh"
-#: lang.pm:215
+#: lang.pm:229 mirror.pm:12 timezone.pm:218
+#, c-format
+msgid "Belgium"
+msgstr "Gwlad Belg"
+
+#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "Burkina Faso"
-#: lang.pm:216 network/adsl_consts.pm:170 network/adsl_consts.pm:179
+#: lang.pm:231 timezone.pm:219
#, c-format
msgid "Bulgaria"
msgstr "Bwlgaria"
-#: lang.pm:217
+#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "Bahrain"
-#: lang.pm:218
+#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "Burundi"
-#: lang.pm:219
+#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "Benin"
-#: lang.pm:220
+#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "Bermuda"
-#: lang.pm:221
+#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "Brunei Darussalam"
-#: lang.pm:222
+#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "Bolivia"
-#: lang.pm:224
+#: lang.pm:238 mirror.pm:13 timezone.pm:259
+#, c-format
+msgid "Brazil"
+msgstr "Brasil"
+
+#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "Bahamas"
-#: lang.pm:225
+#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "Bhutan"
-#: lang.pm:226
+#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "Ynys Bouvet"
-#: lang.pm:227
+#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "Botswana"
-#: lang.pm:228
+#: lang.pm:243 timezone.pm:217
#, c-format
msgid "Belarus"
msgstr "Belarus"
-#: lang.pm:229
+#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "Belize"
-#: lang.pm:231
+#: lang.pm:245 mirror.pm:14 timezone.pm:248
+#, c-format
+msgid "Canada"
+msgstr "Canada"
+
+#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Ynysoedd Cocos (Keeling)"
-#: lang.pm:232
+#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Congo (Kinshasa)"
-#: lang.pm:233
+#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "Gweriniaeth Canol Affrica"
-#: lang.pm:234
+#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Congo (Brazzaville)"
-#: lang.pm:236
+#: lang.pm:250 mirror.pm:38 timezone.pm:242
+#, c-format
+msgid "Switzerland"
+msgstr "Y Swistir"
+
+#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "Cote d'Ivoire"
-#: lang.pm:237
+#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "Ynysoedd Cook"
-#: lang.pm:238
+#: lang.pm:253 timezone.pm:260
#, c-format
msgid "Chile"
msgstr "Chile"
-#: lang.pm:239
+#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "Cameroon"
-#: lang.pm:240 network/adsl_consts.pm:188 network/adsl_consts.pm:197
-#: network/adsl_consts.pm:206 network/adsl_consts.pm:215
-#: network/adsl_consts.pm:224 network/adsl_consts.pm:233
-#: network/adsl_consts.pm:242 network/adsl_consts.pm:251
-#: network/adsl_consts.pm:260 network/adsl_consts.pm:269
-#: network/adsl_consts.pm:278 network/adsl_consts.pm:287
-#: network/adsl_consts.pm:296 network/adsl_consts.pm:305
-#: network/adsl_consts.pm:314 network/adsl_consts.pm:323
-#: network/adsl_consts.pm:332 network/adsl_consts.pm:341
-#: network/adsl_consts.pm:350 network/adsl_consts.pm:359
+#: lang.pm:255 timezone.pm:199
#, c-format
msgid "China"
msgstr "Tsieina"
-#: lang.pm:241
+#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "Colombia"
-#: lang.pm:243
+#: lang.pm:257 mirror.pm:15
+#, c-format
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "Serbia a Montenegro"
-#: lang.pm:244
+#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "Ciwba"
-#: lang.pm:245
+#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "Cape Verde"
-#: lang.pm:246
+#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "Ynys Christmas"
-#: lang.pm:247
+#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "Cyprus"
-#: lang.pm:250
+#: lang.pm:263 mirror.pm:16 timezone.pm:220
+#, c-format
+msgid "Czech Republic"
+msgstr "Gweriniaeth Tsiec"
+
+#: lang.pm:264 mirror.pm:21 timezone.pm:225
+#, c-format
+msgid "Germany"
+msgstr "Yr Almaen"
+
+#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "Djibouti"
-#: lang.pm:252
+#: lang.pm:266 mirror.pm:17 timezone.pm:221
+#, c-format
+msgid "Denmark"
+msgstr "Denmarc"
+
+#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "Dominica"
-#: lang.pm:253
+#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "Dominican Republic"
-#: lang.pm:254 network/adsl_consts.pm:44
+#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "Algeria"
-#: lang.pm:255
+#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "Ecuador"
-#: lang.pm:257
+#: lang.pm:271 mirror.pm:18 timezone.pm:222
+#, c-format
+msgid "Estonia"
+msgstr "Estonia"
+
+#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "Yr Aifft"
-#: lang.pm:258
+#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "Western Sahara"
-#: lang.pm:259
+#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "Eritrea"
-#: lang.pm:261
+#: lang.pm:275 mirror.pm:36 timezone.pm:240
+#, c-format
+msgid "Spain"
+msgstr "Sbaen"
+
+#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "Ethiopia"
-#: lang.pm:263
+#: lang.pm:277 mirror.pm:19 timezone.pm:223
+#, c-format
+msgid "Finland"
+msgstr "Y Ffindir"
+
+#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "Ffiji"
-#: lang.pm:264
+#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Ynysoedd y Falkland (Malvinas)"
-#: lang.pm:265
+#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "Micronesia"
-#: lang.pm:266
+#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "Ynysoedd Faroe"
-#: lang.pm:268
+#: lang.pm:282 mirror.pm:20 timezone.pm:224
+#, c-format
+msgid "France"
+msgstr "Ffrainc"
+
+#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "Gabon"
-#: lang.pm:269 network/adsl_consts.pm:954 network/adsl_consts.pm:965
-#: network/netconnect.pm:46
+#: lang.pm:284 timezone.pm:244
#, c-format
msgid "United Kingdom"
msgstr "Y Deyrnas Unedig"
-#: lang.pm:270
+#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "Grenada"
-#: lang.pm:271
+#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "Georgia"
-#: lang.pm:272
+#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "French Guiana"
-#: lang.pm:273
+#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "Ghana"
-#: lang.pm:274
+#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "Gibraltar"
-#: lang.pm:275
+#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "Greenland"
-#: lang.pm:276
+#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "Gambia"
-#: lang.pm:277
+#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "Guinea"
-#: lang.pm:278
+#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "Guadeloupe"
-#: lang.pm:279
+#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "Equatorial Guinea"
-#: lang.pm:281
+#: lang.pm:295 mirror.pm:22 timezone.pm:226
+#, c-format
+msgid "Greece"
+msgstr "Groeg"
+
+#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "De Georgia ac Ynysoedd De Sandwich"
-#: lang.pm:282
+#: lang.pm:297 timezone.pm:249
#, c-format
msgid "Guatemala"
msgstr "Guatemala"
-#: lang.pm:283
+#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "Guam"
-#: lang.pm:284
+#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "Guinea-Bissau"
-#: lang.pm:285
+#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "Guyana"
-#: lang.pm:286
+#: lang.pm:301
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "Tsiena (Hong Kong)"
-#: lang.pm:287
+#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Heard a McDonald Islands"
-#: lang.pm:288
+#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "Honduras"
-#: lang.pm:289
+#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "Croatia"
-#: lang.pm:290
+#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "Haiti"
-#: lang.pm:292
+#: lang.pm:306 mirror.pm:23 timezone.pm:227
+#, c-format
+msgid "Hungary"
+msgstr "Hwngari"
+
+#: lang.pm:307 timezone.pm:202
#, c-format
msgid "Indonesia"
msgstr "Indonesia"
-#: lang.pm:295
+#: lang.pm:308 mirror.pm:24 timezone.pm:228
+#, c-format
+msgid "Ireland"
+msgstr "Iwerddon"
+
+#: lang.pm:309 mirror.pm:25 timezone.pm:204
+#, c-format
+msgid "Israel"
+msgstr "Israel"
+
+#: lang.pm:310 timezone.pm:201
#, c-format
msgid "India"
msgstr "India"
-#: lang.pm:296
+#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "British Indian Ocean Territory"
-#: lang.pm:297
+#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "Irac"
-#: lang.pm:298
+#: lang.pm:313 timezone.pm:203
#, c-format
msgid "Iran"
msgstr "Iran"
-#: lang.pm:299
+#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "Ynys yr Iâ"
-#: lang.pm:301
+#: lang.pm:315 mirror.pm:26 timezone.pm:229
+#, c-format
+msgid "Italy"
+msgstr "Yr Eidal"
+
+#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "Jamaica"
-#: lang.pm:302
+#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "Yr Iorddonen"
-#: lang.pm:304
+#: lang.pm:318 mirror.pm:27 timezone.pm:205
+#, c-format
+msgid "Japan"
+msgstr "Siapan"
+
+#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "Kenya"
-#: lang.pm:305
+#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "Kyrgyzstan"
-#: lang.pm:306
+#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "Cambodia"
-#: lang.pm:307
+#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "Kiribati"
-#: lang.pm:308
+#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "Comoros"
-#: lang.pm:309
+#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Saint Kitts a Nevis"
-#: lang.pm:310
+#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "Corea (Gogledd)"
-#: lang.pm:311
+#: lang.pm:326 timezone.pm:206
#, c-format
msgid "Korea"
msgstr "Corea"
-#: lang.pm:312
+#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "Kuwait"
-#: lang.pm:313
+#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "Cayman Islands"
-#: lang.pm:314
+#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "Kazakhstan"
-#: lang.pm:315
+#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "Laos"
-#: lang.pm:316
+#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "Libanus"
-#: lang.pm:317
+#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "Saint Lucia"
-#: lang.pm:318
+#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "Liechtenstein"
-#: lang.pm:319
+#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "Sri Lanka"
-#: lang.pm:320
+#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "Liberia"
-#: lang.pm:321
+#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "Lesotho"
-#: lang.pm:322 network/adsl_consts.pm:600
+#: lang.pm:337 timezone.pm:230
#, c-format
msgid "Lithuania"
msgstr "Lithuania"
-#: lang.pm:323
+#: lang.pm:338 timezone.pm:231
#, c-format
msgid "Luxembourg"
msgstr "Luxembourg"
-#: lang.pm:324
+#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "Latfia"
-#: lang.pm:325
+#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "Libya"
-#: lang.pm:326 network/adsl_consts.pm:609
+#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "Morocco"
-#: lang.pm:327
+#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "Monaco"
-#: lang.pm:328
+#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "Moldova"
-#: lang.pm:329
+#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "Madagascar"
-#: lang.pm:330
+#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "Ynysoedd Marshall"
-#: lang.pm:331
+#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "Macedonia"
-#: lang.pm:332
+#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "Mali"
-#: lang.pm:333
+#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "Myanmar"
-#: lang.pm:334
+#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "Mongolia"
-#: lang.pm:335
+#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "Ynysoedd Gogledd Mariana"
-#: lang.pm:336
+#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "Martinique"
-#: lang.pm:337
+#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "Mauritania"
-#: lang.pm:338
+#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "Montserrat"
-#: lang.pm:339
+#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "Malta"
-#: lang.pm:340
+#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "Mauritius"
-#: lang.pm:341
+#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "Maldives"
-#: lang.pm:342
+#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "Malawi"
-#: lang.pm:343
+#: lang.pm:358 timezone.pm:250
#, c-format
msgid "Mexico"
msgstr "Mecsico"
-#: lang.pm:344
+#: lang.pm:359 timezone.pm:207
#, c-format
msgid "Malaysia"
msgstr "Malaysia"
-#: lang.pm:345
+#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "Mozambique"
-#: lang.pm:346
+#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "Namibia"
-#: lang.pm:347
+#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "Caledonia Newydd"
-#: lang.pm:348
+#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "Niger"
-#: lang.pm:349
+#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "Ynys Norfolk"
-#: lang.pm:350
+#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "Nigeria"
-#: lang.pm:351
+#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "Nicaragua"
-#: lang.pm:354
+#: lang.pm:367 mirror.pm:28 timezone.pm:232
+#, c-format
+msgid "Netherlands"
+msgstr "Yr Iseldiroedd"
+
+#: lang.pm:368 mirror.pm:30 timezone.pm:233
+#, c-format
+msgid "Norway"
+msgstr "Norwy"
+
+#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "Nepal"
-#: lang.pm:355
+#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "Nauru"
-#: lang.pm:356
+#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "Niue"
-#: lang.pm:358
+#: lang.pm:372 mirror.pm:29 timezone.pm:255
+#, c-format
+msgid "New Zealand"
+msgstr "Seland Newydd"
+
+#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "Oman"
-#: lang.pm:359
+#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "Panama"
-#: lang.pm:360
+#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "Periw"
-#: lang.pm:361
+#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "Polynesia Ffrengig"
-#: lang.pm:362
+#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "Papua New Guinea"
-#: lang.pm:363
+#: lang.pm:378 timezone.pm:208
#, c-format
msgid "Philippines"
msgstr "Philippines"
-#: lang.pm:364
+#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "Pacistan"
-#: lang.pm:366
+#: lang.pm:380 mirror.pm:31 timezone.pm:234
+#, c-format
+msgid "Poland"
+msgstr "Gwlad Pwyl"
+
+#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Saint Pierre a Miquelon"
-#: lang.pm:367
+#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "Pitcairn"
-#: lang.pm:368
+#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "Puerto Rico"
-#: lang.pm:369
+#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "Palestina"
-#: lang.pm:371
+#: lang.pm:385 mirror.pm:32 timezone.pm:235
+#, c-format
+msgid "Portugal"
+msgstr "Portiwgal"
+
+#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "Paraguay"
-#: lang.pm:372
+#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "Palau"
-#: lang.pm:373
+#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "Qatar"
-#: lang.pm:374
+#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "Reunion"
-#: lang.pm:375
+#: lang.pm:390 timezone.pm:236
#, c-format
msgid "Romania"
msgstr "Rwmania"
-#: lang.pm:377
+#: lang.pm:391 mirror.pm:33
+#, c-format
+msgid "Russia"
+msgstr "Rwsia"
+
+#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "Rwanda"
-#: lang.pm:378
+#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "Saudi Arabia"
-#: lang.pm:379
+#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "Ynysoedd Solomon"
-#: lang.pm:380
+#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "Seychelles"
-#: lang.pm:381
+#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "Swdan"
-#: lang.pm:383
+#: lang.pm:397 mirror.pm:37 timezone.pm:241
+#, c-format
+msgid "Sweden"
+msgstr "Sweden"
+
+#: lang.pm:398 timezone.pm:209
#, c-format
msgid "Singapore"
msgstr "Singapore"
-#: lang.pm:384
+#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "Saint Helena"
-#: lang.pm:385 network/adsl_consts.pm:747
+#: lang.pm:400 timezone.pm:239
#, c-format
msgid "Slovenia"
msgstr "Slovenia"
-#: lang.pm:386
+#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Ynysoedd Svalbard a Jan Mayen"
-#: lang.pm:388
+#: lang.pm:402 mirror.pm:34 timezone.pm:238
+#, c-format
+msgid "Slovakia"
+msgstr "Slofacia"
+
+#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "Sierra Leone"
-#: lang.pm:389
+#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "San Marino"
-#: lang.pm:390 network/adsl_consts.pm:737
+#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "Senegal"
-#: lang.pm:391
+#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "Somalia"
-#: lang.pm:392
+#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "Suriname"
-#: lang.pm:393
+#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "Sao Tome a Principe"
-#: lang.pm:394
+#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "El Salvador"
-#: lang.pm:395
+#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "Syria"
-#: lang.pm:396
+#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "Swaziland"
-#: lang.pm:397
+#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Ynysoedd Turks a Caicos"
-#: lang.pm:398
+#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "Chad"
-#: lang.pm:399
+#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "French Southern Territories"
-#: lang.pm:400
+#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "Togo"
-#: lang.pm:402
+#: lang.pm:416 mirror.pm:40 timezone.pm:211
+#, c-format
+msgid "Thailand"
+msgstr "Gwlad Thail"
+
+#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "Tajikistan"
-#: lang.pm:403
+#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "Tokelau"
-#: lang.pm:404
+#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "Dwyrain Timor"
-#: lang.pm:405
+#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "Turkmenistan"
-#: lang.pm:406 network/adsl_consts.pm:931
+#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "Tunisia"
-#: lang.pm:407
+#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "Tonga"
-#: lang.pm:408
+#: lang.pm:423 timezone.pm:212
#, c-format
msgid "Turkey"
msgstr "Twrci"
-#: lang.pm:409
+#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "Trinidad a Tobago"
-#: lang.pm:410
+#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "Tuvalu"
-#: lang.pm:412
+#: lang.pm:426 mirror.pm:39 timezone.pm:210
+#, c-format
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#: lang.pm:427 timezone.pm:195
#, c-format
msgid "Tanzania"
msgstr "Tanzania"
-#: lang.pm:413
+#: lang.pm:428 timezone.pm:243
#, c-format
msgid "Ukraine"
msgstr "Wcráin"
-#: lang.pm:414
+#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "Uganda"
-#: lang.pm:415
+#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "United States Minor Outlying Islands"
-#: lang.pm:417
+#: lang.pm:431 mirror.pm:41 timezone.pm:251
+#, c-format
+msgid "United States"
+msgstr "Yr Unol Daleithiau"
+
+#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "Uruguay"
-#: lang.pm:418
+#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "Uzbekistan"
-#: lang.pm:419
+#: lang.pm:434
#, c-format
msgid "Vatican"
msgstr "Fatican"
-#: lang.pm:420
+#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "Saint Vincent a'r Grenadines"
-#: lang.pm:421
+#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "Venezuela"
-#: lang.pm:422
+#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "Virgin Islands (British)"
-#: lang.pm:423
+#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Virgin Islands (U.S.)"
-#: lang.pm:424
+#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "Fietnam"
-#: lang.pm:425
+#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "Vanuatu"
-#: lang.pm:426
+#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "Wallis a Futuna"
-#: lang.pm:427
+#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "Samoa"
-#: lang.pm:428
+#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "Yemen"
-#: lang.pm:429
+#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "Mayotte"
-#: lang.pm:431
+#: lang.pm:445 mirror.pm:35 timezone.pm:194
+#, c-format
+msgid "South Africa"
+msgstr "De Affrica"
+
+#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "Zambia"
-#: lang.pm:432
+#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1149
+#: lang.pm:1153
#, c-format
msgid "Welcome to %s"
msgstr "Croeso i %s"
@@ -9675,6 +4601,362 @@ msgstr "Tynnu'r cyfrolau rhesymegol yn gyntaf\n"
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Nid yw'r cychwynnydd yn gallu trin /boot ar gyfrolau ffisegol niferus"
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:10
+#, c-format
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the Mandriva "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandriva Linux distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
+"Mandriva S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using the Software Products in any manner, you "
+"explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
+"Software Products.\n"
+"\n"
+"\n"
+"2. Limited Warranty\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
+"be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if Mandriva S.A. has been advised of the possibility or "
+"occurrence of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
+"\n"
+"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
+"no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Mandriva Linux sites which are prohibited or restricted in some "
+"countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
+"included in the Software Products.\n"
+"\n"
+"\n"
+"3. The GPL License and Related Licenses\n"
+"\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to Mandriva.\n"
+"The programs developed by Mandriva S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by Mandriva S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
+"\n"
+"\n"
+"4. Intellectual Property Rights\n"
+"\n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
+"as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
+"Mandriva S.A. \n"
+"\n"
+"\n"
+"5. Governing Laws \n"
+"\n"
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
+"For any question on this document, please contact Mandriva S.A. \n"
+msgstr ""
+"Cyflwyniad\n"
+"\n"
+"Bydd y system weithredu a'r cydrannau gwahanol sydd o fewn dosbarthiad "
+"Mandriva Linux yn\n"
+"cael eu galw yn \"Gynnyrch Meddalwedd\" o hyn ymlaen. Mae'r Cynnyrch "
+"Meddalwedd yn\n"
+"cynnwys, ond heb eu cyfyngu, i'r casgliad o raglenni , dulliau, rheolau a "
+"dogfennau mewn\n"
+"perthynas â'r system weithredu a chydrannau gwahanol ddosbarthiad Mandriva "
+"Linux.\n"
+"\n"
+"\n"
+"1. Cytundeb Trwyddedu\n"
+"\n"
+"Darllenwch y ddogfen hon yn ofalus. Mae'r ddogfen hon yn gytundeb trwyddedu "
+"rhyngoch\n"
+"chi â Mandriva S.A,. sy'n berthnasol i'r Cynnyrch Meddalwedd.\n"
+"\n"
+"Wrth osod, dyblygu neu ddefnyddio'r Cynnyrch Meddalwedd mewn unrhyw fodd, "
+"rydych yn\n"
+"amlwg yn derbyn ac yn llawn cytuno i gadw at delerau ac amodau'r Drwydded "
+"hon.\n"
+"Os ydych yn anghytuno ag unrhyw ran o'r cytundeb, ni chewch ganiatâd i osod, "
+"dyblygu\n"
+"neu ddefnyddio'r Cynnyrch Meddalwedd.\n"
+"Bydd unrhyw ymgais i osod, dyblygu neu ddefnyddio'r Cynnyrch Meddalwedd mewn "
+"modd\n"
+"\n"
+"nad yw'n cyd-fynd â thelerau ac amodau'r Drwydded yn ddi-rym a bydd yn "
+"terfynu eich\n"
+"hawliau o dan y Drwydded hon. Ar ddiwedd y Drwydded, rhaid i chi "
+"ddinistrio'n syth pob\n"
+"copi o'r Cynnyrch Meddalwedd.\n"
+"\n"
+"\n"
+"2. Gwarant Gyfyngedig\n"
+"\n"
+"Mae'r Cynnyrch Meddalwedd a'r ddogfennaeth gysylltiedig yn cael eu darparu "
+"\"fel ag y maent\",\n"
+"heb ddim gwarant,\n"
+"hyd y mae'r gyfraith yn caniatáu.\n"
+"Ni fydd Mandriva S.A. yn gyfrifol, o dan unrhyw amgylchiad, a chyhyd ag y "
+"bydd y gyfraith yn\n"
+"caniatáu, am unrhyw iawn o gwbl,\n"
+"arbennig, damweiniol, uniongyrchol neu anuniongyrchol (gan gynnwys heb "
+"gyfyngu ar iawndal\n"
+"am golli busnes, tarfu ar fusnes, colled ariannol, costau cyfreithiol, a "
+"chosb o ganlyniad i achos llys,\n"
+"neu unrhyw golled o ganlyniad) yn codi o'r defnydd neu'r anallu i "
+"ddefnyddio'r Cynnyrch Meddalwedd,\n"
+"hyd yn oed os yw Mandriva wedi eu cynghori o'r posibilrwydd o'r fath iawn.\n"
+"\n"
+"CYFRIFOLDEB CYFYNGEDIG YN GYSYLLTIEDIG GYDA'R MEDDIANT NEU'R DEFNYDD O "
+"FEDDALWEDD\n"
+" GWAHARDDEDIG MEWN RHAI GWLEDYDD\n"
+"\n"
+"Ni fydd Mandriva S.A. yn gyfrifol, o dan unrhyw amgylchiad, a chyhyd y bydd "
+"y gyfraith yn caniatáu,\n"
+"i fod yn atebol am unrhyw iawn o gwbl, arbennig, damweiniol, uniongyrchol "
+"neu anuniongyrchol (gan gynnwys\n"
+"heb gyfyngu ar iawndal am golli busnes, tarfu ar fusnes, colled ariannol, "
+"costau cyfreithiol, a chosb o ganlyniad\n"
+"i achos llys, neu unrhyw golled o ganlyniad) yn codi o lwytho i lawr "
+"cydrannau meddalwedd o un o safleoedd\n"
+" Mandriva Linux, sydd wedi eu gwahardd neu eu hatal mewn rhai gwledydd gan "
+"gyfreithiau lleol. Mae'r\n"
+"cyfrifoldeb cyfyngedig hwn yn perthyn i , ond heb ei gyfyngu i'r, cydrannau "
+"cryptograffiaeth cryf sy'n cael\n"
+"eu cynnwys o fewn y Cynnyrch Meddalwedd.\n"
+"\n"
+"\n"
+"3. Trwydded GPL a Thrwyddedau Cysylltiedig\n"
+"\n"
+"Mae'r Cynnyrch Meddalwedd yn cynnwys cydrannau sydd wedi eu creu gan "
+"bersonau a endidau gwahanol.\n"
+"Mae'r rhan fwyaf o'r cydrannau hyn yn cael eu llywodraethu gan dermau ac "
+"amodau Trwydded Gyhoeddus\n"
+"Cyffredinol (General Public Licence (GPL)), GNU, fydd yn cael ei gyfeirio "
+"ato o hyn ymlaen fel \"GPL\", neu\n"
+"drwyddedau cyffelyb. Mae'r rhan fwyaf o'r trwyddedau'n caniatáu i chi "
+"ddefnyddio, dyblygu, addasu neu\n"
+" ailddosbarthu'r cydrannau maent yn eu cynnwys. Darllenwch delerau ac amodau "
+"trwydded pob cydran cyn\n"
+"eu defnyddio. Dylai pob cwestiwn am drwydded cydran gael ei ofyn i awdur y "
+"gydran ac nid i Mandriva.\n"
+"Mae'r rhaglenni a ddatblygwyd gan Mandriva yn cael eu llywodraethu o dan "
+"Drwydded GLP. Mae'r dogfennau\n"
+" ysgrifennwyd gan Mandriva S.A. yn cael eu llywodraethu gan drwydded "
+"benodol. Darllenwch y dogfennau\n"
+"am fwy o fanylion.\n"
+"\n"
+"\n"
+"4. Hawliau Eiddo Deallusol\n"
+"\n"
+"Mae pob hawl cydrannau'r Cynnyrch Meddalwedd yn perthyn i'w hawduron "
+"perthnasol ac wedi eu hamddiffyn\n"
+"gan gyfreithiau eiddo deallusol a hawlfraint sy'n berthnasol i raglenni "
+"meddalwedd. Mae Mandriva yn cadw\n"
+"ei hawl i newid neu addasu ei Gynnyrch Meddalwedd, yn rhannol neu yn gyfan, "
+"drwy unrhyw ddull ac ar gyfer\n"
+"unrhyw bwrpas.\n"
+"Mae \"Mandriva\", \"Mandriva Linux\" a'r logos cysylltiedig yn nodau "
+"masnachol sy'n perthyn i Mandriva S.A.\n"
+"\n"
+"\n"
+"5. Cyfreithiau Llywodraethol\n"
+"\n"
+"Os bydd unrhyw ran o'r cytundeb hwn yn cael ei ddal yn ddi-rym, "
+"anghyfreithlon neu amherthnasol gan\n"
+"benderfyniad llys, bydd y rhan yma'n cael ei dynnu o'r cytundeb hwn. Byddwch "
+"yn parhau i fod yn rhwymedig\n"
+"i adrannau cymwys o'r cytundeb.\n"
+"Mae telerau ac amodau'r Drwydded hon yn cael eu llywodraethu gan Gyfreithiau "
+"Ffrainc. Mae'n ddymunol y\n"
+"bydd pob anghytundeb ar amodau'r drwydded yn cael eu datrys y tu allan i'r "
+"llys. Fel cam olaf, bydd yr anghytundeb yn cael ei drosglwyddo i'r Llysoedd "
+"Barn, Paris - Ffrainc. Am unrhyw gwestiwn ynghylch y ddogfen hon cysylltwch "
+"â Mandriva S.A. \n"
+
+#: messages.pm:90
+#, c-format
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
+"Rhybudd: Mae'n bosibl nad yw Meddalwedd Rhad yn rhydd o batent, ac mae\n"
+"peth Meddalwedd Rhad wedi ei gyfyngu â phatent yn eich gwlad, e.e. gall\n"
+"amgodwyr MP3 fod angen trwydded ar gyfer defnydd pellach\n"
+"(gw. http://www.mp3licensing.com am wybodaeth bellach. Os nad ydych yn\n"
+"siŵr os yw'r patent yn berthnasol i chi, gwiriwch eich cyfreithiau lleol."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:98
+#, c-format
+msgid ""
+"\n"
+"Warning\n"
+"\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
+"\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
+msgstr ""
+"\n"
+" Rhybudd\n"
+"\n"
+"Darllenwch yr amodau isod yn ofalus. Os ydych yn anghytuno gydag unrhyw\n"
+" ddarn, nid oes caniatâd i chi osod y cyfrwng CD nesaf. Pwyswch 'Gwrthod' i\n"
+" barhau'r gosodiad heb ddefnyddio'r cyfryngau hyn.\n"
+"\n"
+"Nid yw rhai cydrannau ar y CDau canlynol yn cael eu rheoli gan Drwydded GPL\n"
+" neu gytundebau tebyg. Mae'r cydrannau hynny'n cael eu rheoli gan dermau ac\n"
+" amodau ei drwydded benodol ei hun. Darllenwch yn ofalus a chadwch at y\n"
+" trwyddedau penodol cyn defnyddio neu ddosbarthu'r cydrannau hynny.\n"
+"\n"
+"Mae'r trwyddedau hynny'n atal yn gyffredinol, drosglwyddiad, dyblygu (ar "
+"wahan i\n"
+" bwrpas cadw wrth gefn), dosbarthu, cildroi peirianyddol, dadcydosod,\n"
+" dad-grynhoi neu newid y cydrannau. Bydd unrhyw dorri ar yr amodau hyn yn\n"
+"terfynu eich hawl o dan y drwydded benodol. Oni bai ei fod yn rhoi'r hawl i "
+"chi,\n"
+"nid oes modd i chi osod y rhaglenni ar fwy nag un system na'i addasu ar "
+"gyfer\n"
+" defnydd ar rwydwaith. Os oes amheuaeth, cysylltwch yn uniongyrchol â\n"
+"dosbarthwr neu olygydd y cydrannau hynny.\n"
+"Mae trosglwyddo i drydydd parti neu gopïo'r cydrannau hynny gan gynnwys y\n"
+" ddogfennaeth, wedi ei wahardd fel rheol\n"
+"\n"
+"Mae pob hawl i gydrannau'r cyfrwng CD nesaf yn perthyn i' hawduron "
+"perthnasol\n"
+" ac maent wedi eu hamddiffyn drwy gyfreithiau eiddo deallusol a hawlfraint "
+"sy'n\n"
+" berthynol i raglenni meddalwedd.\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:131
+#, c-format
+msgid ""
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press Enter to reboot.\n"
+"\n"
+"\n"
+"For information on fixes which are available for this release of Mandriva "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandriva Linux User's Guide."
+msgstr ""
+"Llongyfarchiadau, mae'r gosod wedi ei gwblhau.\n"
+"Tynnwch y cyfrwng cychwyn a chlicio Ailgychwyn.\n"
+"\n"
+"\n"
+"Am wybodaeth am gywiriadau sydd ar gael ar gyfer y rhyddhad hwn o Mandriva "
+"Linux,\n"
+"cysylltwch â'r atodiad, sydd i'w gael yn:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Mae gwybodaeth ar ffurfweddu eich system ar gael ym mhenawdau ôl osod\n"
+"yr Official Mandriva Linux User's Guide."
+
#: modules/interactive.pm:19
#, c-format
msgid "This driver has no configuration parameter!"
@@ -9688,7 +4970,7 @@ msgstr "Ffurfweddiad modiwl"
#: modules/interactive.pm:22
#, c-format
msgid "You can configure each parameter of the module here."
-msgstr "Mae modd i chi ffurfweddu pob paramedr o'r modiwl yma"
+msgstr "Mae modd i chi ffurfweddu pob paramedr o'r modiwl yma."
#: modules/interactive.pm:63
#, c-format
@@ -9737,12 +5019,7 @@ msgstr "Gosod gyrrwr gyfer rheolwr ethernet %s "
msgid "Installing driver for %s card %s"
msgstr "Gosod gyrrwr %s ar gyfer cerdyn %s "
-#: modules/interactive.pm:99
-#, c-format
-msgid "(module %s)"
-msgstr "(modiwl %s)"
-
-#: modules/interactive.pm:109
+#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9752,7 +5029,7 @@ msgstr ""
"Sylwer: wrth greu unrhyw gyfeiriad bydd angen defnyddio rhagddodiad 0x, e.e. "
"'0x123'"
-#: modules/interactive.pm:115
+#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9763,18 +5040,18 @@ msgstr ""
"Mae'r dewisiadau yn fformat ``name=value name2=value2 ...''.\n"
"e.e, ``io=0x300 irq=7''"
-#: modules/interactive.pm:117
+#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "Dewisiadau modiwl:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: modules/interactive.pm:130
+#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr "Pa yrrwr %s ddylwn drio?"
-#: modules/interactive.pm:139
+#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -9794,17 +5071,17 @@ msgstr ""
"unrhyw\n"
"ddifrod."
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "Awtoholi"
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "Enwi dewisiadau"
-#: modules/interactive.pm:155
+#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -9813,1938 +5090,17 @@ msgstr ""
"Methodd llwytho modiwl %s\n"
"Hoffech chi drio eto gyda pharamedrau eraill?"
-#: modules/parameters.pm:49
-#, c-format
-msgid "a number"
-msgstr "rhif"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d rhifau gwahanwyd gan gollnod"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d llinellau gwahanwyd gan gollnod"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated numbers"
-msgstr "rhifau gwahanwyd gan gollnod"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated strings"
-msgstr "llinellau collnod rhanedig"
-
-#: mouse.pm:25
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Llygoden - Sun"
-
-#: mouse.pm:31 security/level.pm:12
-#, c-format
-msgid "Standard"
-msgstr "Safonol"
-
-#: mouse.pm:32
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: mouse.pm:33
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Llygoden Olwyn PS Generig"
-
-#: mouse.pm:34
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/modem.pm:68 network/modem.pm:81 network/modem.pm:86
-#: network/modem.pm:115 network/netconnect.pm:596 network/netconnect.pm:601
-#: network/netconnect.pm:613 network/netconnect.pm:618
-#: network/netconnect.pm:634 network/netconnect.pm:636
-#, c-format
-msgid "Automatic"
-msgstr "Awtomatig"
-
-#: mouse.pm:39 mouse.pm:73
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: mouse.pm:40 mouse.pm:68
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: mouse.pm:41
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: mouse.pm:42 mouse.pm:52
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
-
-#: mouse.pm:47 mouse.pm:79
-#, c-format
-msgid "1 button"
-msgstr "1 botwm"
-
-#: mouse.pm:48 mouse.pm:57
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Llygoden 2 Fotwm Generig"
-
-#: mouse.pm:50 mouse.pm:59
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Llygoden 3 Botwm Generig gydag efelychiad Olwyn"
-
-#: mouse.pm:51
-#, c-format
-msgid "Wheel"
-msgstr "Olwyn"
-
-#: mouse.pm:55
-#, c-format
-msgid "serial"
-msgstr "cyfresol"
-
-#: mouse.pm:58
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Llygoden 3 Botwm Generig"
-
-#: mouse.pm:60
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: mouse.pm:61
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: mouse.pm:62
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan gydag efelychiad Olwyn"
-
-#: mouse.pm:63
-#, c-format
-msgid "Mouse Systems"
-msgstr "Systemau Llygoden"
-
-#: mouse.pm:65
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: mouse.pm:66
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Series gydag efelychiad Olwyn"
-
-#: mouse.pm:67
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: mouse.pm:69
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
-
-#: mouse.pm:70
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: mouse.pm:71
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Llygoden Logitech (cyfresol, hen fath C7)"
-
-#: mouse.pm:72
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Llygoden Logitech (cyfresol, hen fath C7) gydag efelychiad Olwyn"
-
-#: mouse.pm:74
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse gydag efelychiad Olwyn"
-
-#: mouse.pm:77
-#, c-format
-msgid "busmouse"
-msgstr "busmouse"
-
-#: mouse.pm:80
-#, c-format
-msgid "2 buttons"
-msgstr "2 fotwm"
-
-#: mouse.pm:81
-#, c-format
-msgid "3 buttons"
-msgstr "3 botwm"
-
-#: mouse.pm:82
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3 botwm gydag efelychiad Olwyn"
-
-#: mouse.pm:86
-#, c-format
-msgid "Universal"
-msgstr "Cyffredinol"
-
-#: mouse.pm:88
-#, c-format
-msgid "Any PS/2 & USB mice"
-msgstr "Unrhyw lygoden PS/2 ac USB"
-
-#: mouse.pm:89
-#, c-format
-msgid "Microsoft Xbox Controller S"
-msgstr "Microsoft Xbox Controller S"
-
-#: mouse.pm:93 standalone/drakconnect:351 standalone/drakvpn:1126
-#, c-format
-msgid "none"
-msgstr "dim"
-
-#: mouse.pm:95
-#, c-format
-msgid "No mouse"
-msgstr "Dim llygoden"
-
-#: mouse.pm:304 mouse.pm:367 mouse.pm:376 mouse.pm:435
-#, c-format
-msgid "Synaptics Touchpad"
-msgstr "Pad Cyffwrdd Synaptic"
-
-#: mouse.pm:561
-#, c-format
-msgid "Please test the mouse"
-msgstr "Profwch y llygoden"
-
-#: mouse.pm:563
-#, c-format
-msgid "To activate the mouse,"
-msgstr "I ysgogi'r llygoden,"
-
-#: mouse.pm:564
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "SYMUDWCH YR OLWYN!"
-
-#: network/drakfirewall.pm:12 share/compssUsers.pl:85
-#, c-format
-msgid "Web Server"
-msgstr "Gweinydd Gwe"
-
-#: network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "Gweinydd Enw Parth"
-
-#: network/drakfirewall.pm:22
-#, c-format
-msgid "SSH server"
-msgstr "Gweinydd SSH"
-
-#: network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "Gweinydd FTP"
-
-#: network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "Gweinydd E-bost"
-
-#: network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "Gweinydd POP ac IMAP"
-
-#: network/drakfirewall.pm:42
-#, c-format
-msgid "Telnet server"
-msgstr "Gweinydd Telnet"
-
-#: network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr "Rhannu Ffeiliau Wondows (SMB)"
-
-#: network/drakfirewall.pm:54
-#, c-format
-msgid "CUPS server"
-msgstr "Gweinydd CUPS"
-
-#: network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr "Cais Echo (ping)"
-
-#: network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr "BitTorrent"
-
-#: network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr "Canfyddwr sgan porth"
-
-#: network/drakfirewall.pm:165
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-"ffurfweddiadur drakfirewall\n"
-"\n"
-"Mae hwn yn ffurfweddu mur gwarchod personol ar gyfer y peiriant \n"
-"Mandriva Linux hwn. Am fur gwarchod pwrpasol pwerus, \n"
-"edrychwch ddosbarthiad arbenigol Mandriva Security Firewall."
-
-#: network/drakfirewall.pm:171
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-"Ffurfweddwr Drakfirewall\n"
-"\n"
-"Gwnewch yn siŵr eich bod wedi ffurfweddu eich mynediad\n"
-"Rhwydwaith/Rhyngrwyd gyda Drakconnect cyn mynd ymhellach."
-
-#: network/drakfirewall.pm:188
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "Pa wasanaethau'r hoffech i'r Rhyngrwyd gysylltu â hwy?"
-
-#: network/drakfirewall.pm:191
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-"Gallwch roi amrywiol byrth.\n"
-"Eng. dilys: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Am wybodaeth ewch i /etc/services."
-
-#: network/drakfirewall.pm:197
-#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-"Porth annilys wedi ei gynnig: %s.\n"
-"Y fformat cywir yw \"port/tcp\" neu \"port/udp\", \n"
-"lle mae porth rhwng 1 a 65535.\n"
-"\n"
-"Cewch hefyd gynnig ystod o byrth (ee: 24300:24350/udp)"
-
-#: network/drakfirewall.pm:207
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Popeth (dim mur cadarn)"
-
-#: network/drakfirewall.pm:209
-#, c-format
-msgid "Other ports"
-msgstr "Pyrth eraill"
-
-#: network/drakfirewall.pm:253 network/drakfirewall.pm:256
-#: standalone/drakids:33 standalone/drakids:136 standalone/drakids:145
-#: standalone/drakids:170 standalone/drakids:179 standalone/drakids:189
-#: standalone/drakids:265 standalone/net_applet:59 standalone/net_applet:202
-#: standalone/net_applet:385 standalone/net_applet:422
-#, c-format
-msgid "Interactive Firewall"
-msgstr "Mur Cadarn Rhyngweithiol"
-
-#: network/drakfirewall.pm:254
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activity should be watched."
-msgstr ""
-"Mae modd eich rhybuddio pan fydd rhywun yn ceisio cael mynediad i wasanaeth "
-"neu i'ch cyfrifiadur.\\\\\n"
-"Pennwch pa wasanaeth rhwydwaith dylid ei wylio."
-
-#: network/drakfirewall.pm:259
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr "Defnyddio Mur Cadarn Rhyngweithiol"
-
-#: network/ifw.pm:129
-#, c-format
-msgid "Port scanning"
-msgstr "Sganio Pyrth"
-
-#: network/ifw.pm:130
-#, c-format
-msgid "Service attack"
-msgstr "Ymosodiad gwasanaeth"
-
-#: network/ifw.pm:131
-#, c-format
-msgid "Password cracking"
-msgstr "Agor cyfrinair"
-
-#: network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr "Ymosodiad \"%s\" "
-
-#: network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr "Gwnaed ymgais i ymosod ar borth gan %s."
-
-#: network/ifw.pm:135
-#, c-format
-msgid "The %s service has been attacked by %s."
-msgstr "Mae gwasanaeth %s wedi derbyn ymosodiad gan %s."
-
-#: network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr "Gwnaed ymgais i agor cyfrinair gan %s"
-
-#: network/ifw.pm:137
-#, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr "Gwnaed ymgais i greu ymosodiad \"%s\"gan %s."
-
-#: network/isdn.pm:117 network/netconnect.pm:463 network/netconnect.pm:557
-#: network/netconnect.pm:560 network/netconnect.pm:708
-#: network/netconnect.pm:712
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr "Heb ei restru - golygu gyda llaw"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "Dim syniad"
-
-#: network/isdn.pm:161 network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: network/isdn.pm:162 network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/netconnect.pm:601 network/netconnect.pm:618
-#: network/netconnect.pm:634
-#, c-format
-msgid "Manual"
-msgstr "Llaw"
-
-#: network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr "Does dim dyfais sy'n cynnal gyrrwr %s ndiswrapper yn bresenol!"
-
-#: network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr "Dewiswch y gyrrwr Windows (.inf file)"
-
-#: network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr "Methu arsefydlu y gyrrydd ndiswrapper %s"
-
-#: network/ndiswrapper.pm:89
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr "methu llwytho'r modiwl ndiswrapper!"
-
-#: network/ndiswrapper.pm:95
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-"Mae'r ddyfais hon wedi ei ffurfweddu eisoes gyda gyrrwr %s.\n"
-"Ydych chi wir am ddefnyddio gyrrwr ndiswrapper ?"
-
-#: network/ndiswrapper.pm:101
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr "Methu canfod rhyngwyneb ndiswrapper!"
-
-#: network/netconnect.pm:69 network/netconnect.pm:493
-#: network/netconnect.pm:505
-#, c-format
-msgid "Manual choice"
-msgstr "Dewis gyda llaw"
-
-#: network/netconnect.pm:69
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Cerdyn ISDN mewnol"
-
-#: network/netconnect.pm:80 printer/printerdrake.pm:1622 standalone/drakups:72
-#, c-format
-msgid "Manual configuration"
-msgstr "Ffurfweddiad gyda llaw"
-
-#: network/netconnect.pm:81 standalone/drakroam:121
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr "IP awtomatig (BOOTP/DHCP)"
-
-#: network/netconnect.pm:83
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
-msgstr "IP awtomatig (BOOTP/DHCP/Zeroconf)"
-
-#: network/netconnect.pm:86
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protocol ar gyfer gweddill y byd"
-
-#: network/netconnect.pm:88 standalone/drakconnect:563
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Protocol Ewropeaidd (EDSSI)"
-
-#: network/netconnect.pm:89 standalone/drakconnect:564
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Protocol ar gyfer gweddill y byd\n"
-" dim D-Channel (llinell les)"
-
-#: network/netconnect.pm:103 standalone/harddrake2:328
-#: standalone/net_monitor:102 standalone/net_monitor:103
-#: standalone/net_monitor:108
-#, c-format
-msgid "unknown"
-msgstr "anhysbys"
-
-#: network/netconnect.pm:120 network/thirdparty.pm:220
-#, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "Modem USB Alcatel Speedtouch"
-
-#: network/netconnect.pm:121
-#, c-format
-msgid "Sagem USB modem"
-msgstr "Modem USB Sagem"
-
-#: network/netconnect.pm:122
-#, c-format
-msgid "Bewan modem"
-msgstr "Modem Bewan"
-
-#: network/netconnect.pm:123
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr "Modem ECI Hi-Focus"
-
-#: network/netconnect.pm:127
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr "Dynamic Host Configuration Protocol (DHCP)"
-
-#: network/netconnect.pm:128
-#, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "Ffurfweddu TCP/IP gyda llaw"
-
-#: network/netconnect.pm:129
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr "Point to Point Tunneling Protocol (PPTP)"
-
-#: network/netconnect.pm:130
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr "PPP over Ethernet (PPPoE)"
-
-#: network/netconnect.pm:131
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr "PPP over ATM (PPPoA)"
-
-#: network/netconnect.pm:132
-#, c-format
-msgid "DSL over CAPI"
-msgstr "DSL dros CAPI"
-
-#: network/netconnect.pm:136
-#, c-format
-msgid "Bridged Ethernet LLC"
-msgstr "Pont Ethernet LLC"
-
-#: network/netconnect.pm:137
-#, c-format
-msgid "Bridged Ethernet VC"
-msgstr "Pont Ethernet VC"
-
-#: network/netconnect.pm:138
-#, c-format
-msgid "Routed IP LLC"
-msgstr "Trywydd IP LLC"
-
-#: network/netconnect.pm:139
-#, c-format
-msgid "Routed IP VC"
-msgstr "Trywydd IP VC"
-
-#: network/netconnect.pm:140
-#, c-format
-msgid "PPPoA LLC"
-msgstr "PPPoA LLC"
-
-#: network/netconnect.pm:141
-#, c-format
-msgid "PPPoA VC"
-msgstr "PPPoA VC"
-
-#: network/netconnect.pm:145 standalone/drakconnect:498
-#, c-format
-msgid "Script-based"
-msgstr "Seiliedig ar sgript"
-
-#: network/netconnect.pm:146 standalone/drakconnect:498
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: network/netconnect.pm:147 standalone/drakconnect:498
-#, c-format
-msgid "Terminal-based"
-msgstr "Seiliedig ar derfynell"
-
-#: network/netconnect.pm:148 standalone/drakconnect:498
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: network/netconnect.pm:149 standalone/drakconnect:498
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: network/netconnect.pm:250 standalone/drakconnect:56
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Ffurfweddiad y Rhwydwaith a'r Rhyngrwyd"
-
-#: network/netconnect.pm:256
-#, c-format
-msgid "LAN connection"
-msgstr "cysylltiad LAN"
-
-#: network/netconnect.pm:257 network/netconnect.pm:276 standalone/drakroam:182
-#: standalone/drakroam:220 standalone/drakroam:223
-#, c-format
-msgid "Wireless connection"
-msgstr "Cysylltiad diwyfr"
-
-#: network/netconnect.pm:258
-#, c-format
-msgid "ADSL connection"
-msgstr "Cysylltiad ADSL"
-
-#: network/netconnect.pm:259
-#, c-format
-msgid "Cable connection"
-msgstr "Cysylltiad cebl"
-
-#: network/netconnect.pm:260
-#, c-format
-msgid "ISDN connection"
-msgstr "Cysylltiad ISDN"
-
-#: network/netconnect.pm:261
-#, c-format
-msgid "Modem connection"
-msgstr "Cysylltiad modem"
-
-#: network/netconnect.pm:262
-#, c-format
-msgid "DVB connection"
-msgstr "Cysylltiad DVB"
-
-#: network/netconnect.pm:272
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Dewiswch y math o gysylltiad rydych am ei ffurfweddu"
-
-#: network/netconnect.pm:287 network/netconnect.pm:786
-#, c-format
-msgid "Connection Configuration"
-msgstr "Ffurfweddiad y Cysylltiad"
-
-#: network/netconnect.pm:287 network/netconnect.pm:787
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Llanwch neu ticiwch y maes islaw"
-
-#: network/netconnect.pm:290
-#, c-format
-msgid "Your personal phone number"
-msgstr "Eich rhif ffôn personol"
-
-#: network/netconnect.pm:291 network/netconnect.pm:790
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Enw darparwr (eng. darparwr.net)"
-
-#: network/netconnect.pm:292 standalone/drakconnect:493
-#, c-format
-msgid "Provider phone number"
-msgstr "Rhif ffôn y darparwr"
-
-#: network/netconnect.pm:293
-#, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "Darparwr DNS 1 (dewisol)"
-
-#: network/netconnect.pm:294
-#, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "Darparwr DNS 2 (dewisol)"
-
-#: network/netconnect.pm:295 standalone/drakconnect:444
-#, c-format
-msgid "Dialing mode"
-msgstr "Modd deialu"
-
-#: network/netconnect.pm:296 standalone/drakconnect:449
-#: standalone/drakconnect:517
-#, c-format
-msgid "Connection speed"
-msgstr "Cyflymder y cysylltiad"
-
-#: network/netconnect.pm:297 standalone/drakconnect:454
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Oediad yn y cysylltiad (mewn eiliadau)"
-
-#: network/netconnect.pm:298 network/netconnect.pm:323
-#: network/netconnect.pm:793 standalone/drakconnect:491
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Mewngofnod Cyfrif (enw defnyddiwr)"
-
-#: network/netconnect.pm:299 network/netconnect.pm:324
-#: network/netconnect.pm:794 standalone/drakconnect:492
-#, c-format
-msgid "Account Password"
-msgstr "Cyfrinair y Cyfrif"
-
-#: network/netconnect.pm:300 standalone/drakconnect:554
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ y cerdyn"
-
-#: network/netconnect.pm:301 standalone/drakconnect:555
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Cof Cerdyn (DMA)"
-
-#: network/netconnect.pm:302 standalone/drakconnect:556
-#, c-format
-msgid "Card IO"
-msgstr "IO'r Cerdyn"
-
-#: network/netconnect.pm:303 standalone/drakconnect:557
-#, c-format
-msgid "Card IO_0"
-msgstr "IO_O y cerdyn"
-
-#: network/netconnect.pm:304
-#, c-format
-msgid "Card IO_1"
-msgstr "IO_1 y cerdyn"
-
-#: network/netconnect.pm:319
-#, c-format
-msgid "Cable: account options"
-msgstr "Cebl: dewisiadau cyfrif"
-
-#: network/netconnect.pm:322
-#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr "Defnyddiwch BPALogin (ar gyfer Telstra)"
-
-#: network/netconnect.pm:348 network/netconnect.pm:670
-#: network/netconnect.pm:826 network/netconnect.pm:1170
-#, c-format
-msgid "Select the network interface to configure:"
-msgstr "Dewis y rhyngwyneb rhwydwaith i'w ffurfweddu:"
-
-#: network/netconnect.pm:350 network/netconnect.pm:385
-#: network/netconnect.pm:671 network/netconnect.pm:828 network/shorewall.pm:70
-#: standalone/drakconnect:714
-#, c-format
-msgid "Net Device"
-msgstr "Dyfais Rhyngrwyd"
-
-#: network/netconnect.pm:351 network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr "Modem IDSN Allanol"
-
-#: network/netconnect.pm:384 standalone/harddrake2:215
-#, c-format
-msgid "Select a device!"
-msgstr "Dewis dyfais!"
-
-#: network/netconnect.pm:393 network/netconnect.pm:403
-#: network/netconnect.pm:413 network/netconnect.pm:446
-#: network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Ffurfweddiad ISDN"
-
-#: network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Pa fath o gerdyn sydd gennych?"
-
-#: network/netconnect.pm:404
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"Os oes gennych gerdyn ISA, dylai'r gwerthoedd ar y sgrin nesaf fod yn "
-"gywir.\n"
-"\n"
-"Os oes gennych gerdyn PCMCIA, rhaid i chi wybod \"irq\" ac \"o\" eich "
-"cerdyn.\n"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "Parhau"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "Peidio"
-
-#: network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Pa un o'r canlynol yw eich cerdyn IDSN?"
-
-#: network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-"Mae gyrrwr CAPI ar gael ar gyfer y modem. Mae gyrrwr CAPI'n cynnig mwy o "
-"swyddogaethau na'r gyrrwr rhydd (fel anfon ffacs). Pa yrrwr hoffech chi ei "
-"ddefnyddio?"
-
-#: network/netconnect.pm:434 standalone/drakconnect:109 standalone/drakups:249
-#: standalone/harddrake2:133
-#, c-format
-msgid "Driver"
-msgstr "Gyrrwr"
-
-#: network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Pa brotocol ydych chi eisiau ei ddefnyddio?"
-
-#: network/netconnect.pm:448 standalone/drakconnect:109
-#: standalone/drakconnect:300 standalone/drakconnect:562
-#: standalone/drakids:207 standalone/drakvpn:1128
-#, c-format
-msgid "Protocol"
-msgstr "Protocol"
-
-#: network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"Dewiswch eich darparwr.\n"
-"Os nad yw ar eich rhestr, dewiswch Heb ei Restri"
-
-#: network/netconnect.pm:462 network/netconnect.pm:556
-#: network/netconnect.pm:707
-#, c-format
-msgid "Provider:"
-msgstr "Darparwr:"
-
-#: network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"Nid yw'r system yn cynnal eich modem.\n"
-"Ewch i http://www.linmodems.org"
-
-#: network/netconnect.pm:490
-#, c-format
-msgid "Select the modem to configure:"
-msgstr "Dewis y modem i'w ffurfweddu:"
-
-#: network/netconnect.pm:525
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Dewiswch ba borth cyfresol mae eich modem wedi cysylltu iddo."
-
-#: network/netconnect.pm:554
-#, c-format
-msgid "Select your provider:"
-msgstr "Dewis eich darparwr:"
-
-#: network/netconnect.pm:578
-#, c-format
-msgid "Dialup: account options"
-msgstr "Deialu: dewisiadau cyfrif"
-
-#: network/netconnect.pm:581
-#, c-format
-msgid "Connection name"
-msgstr "Enw'r cysylltiad"
-
-#: network/netconnect.pm:582
-#, c-format
-msgid "Phone number"
-msgstr "Rhif ffôn"
-
-#: network/netconnect.pm:583
-#, c-format
-msgid "Login ID"
-msgstr "Dynodiad Mewngofnodi"
-
-#: network/netconnect.pm:598 network/netconnect.pm:631
-#, c-format
-msgid "Dialup: IP parameters"
-msgstr "Deialu: paramedrau'r IP"
-
-#: network/netconnect.pm:601
-#, c-format
-msgid "IP parameters"
-msgstr "Paramedrau IP"
-
-#: network/netconnect.pm:602 network/netconnect.pm:941
-#: printer/printerdrake.pm:460 standalone/drakconnect:109
-#: standalone/drakconnect:316 standalone/drakconnect:882
-#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:284
-#, c-format
-msgid "IP address"
-msgstr "Cyfeiriad IP"
-
-#: network/netconnect.pm:603
-#, c-format
-msgid "Subnet mask"
-msgstr "Masg Isnet"
-
-#: network/netconnect.pm:615
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr "Deialu: paramedrau DNS"
-
-#: network/netconnect.pm:618
-#, c-format
-msgid "DNS"
-msgstr "DNS"
-
-#: network/netconnect.pm:619
-#, c-format
-msgid "Domain name"
-msgstr "Enw parth"
-
-#: network/netconnect.pm:620 network/netconnect.pm:791
-#: standalone/drakconnect:992
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Gweinydd DNS Cyntaf (dewisol)"
-
-#: network/netconnect.pm:621 network/netconnect.pm:792
-#: standalone/drakconnect:993
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Ail Wasanaethwr DNS (dewisol)"
-
-#: network/netconnect.pm:622
-#, c-format
-msgid "Set hostname from IP"
-msgstr "Gosod enw'r gwesteiwr o'r IP"
-
-#: network/netconnect.pm:634 standalone/drakconnect:327
-#, c-format
-msgid "Gateway"
-msgstr "Mynedfa"
-
-#: network/netconnect.pm:635 standalone/drakroam:124
-#, c-format
-msgid "Gateway IP address"
-msgstr "Cyfeiriad porth IP"
-
-#: network/netconnect.pm:670
-#, c-format
-msgid "ADSL configuration"
-msgstr "Ffurfweddiad ADSL"
-
-#: network/netconnect.pm:705
-#, c-format
-msgid "Please choose your ADSL provider"
-msgstr "Dewiswch eich darparwr ADSL"
-
-#: network/netconnect.pm:735
-#, c-format
-msgid ""
-"Please choose your DSL connection type.\n"
-"If you do not know it, keep the preselected type."
-msgstr ""
-"Dewiswch eich math o gysylltiad DSL.\n"
-"Os nad ydych yn gwybod beth yw cadwch at yr un cyfredol."
-
-#: network/netconnect.pm:738
-#, c-format
-msgid "ADSL connection type:"
-msgstr "Math o gysylltiad ADSL :"
-
-#: network/netconnect.pm:796
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr "Virtual Path ID (VPI):"
-
-#: network/netconnect.pm:797
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr "Virtual Circuit ID (VCI):"
-
-#: network/netconnect.pm:800
-#, c-format
-msgid "Encapsulation:"
-msgstr "Mewngapsiwleiddio :"
-
-#: network/netconnect.pm:830
-#, c-format
-msgid "Manually load a driver"
-msgstr "Llwytho gyrrwr gyda llaw"
-
-#: network/netconnect.pm:831
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr "Defnyddiwch yrrwr Windows (gydan ndiswrapper)"
-
-#: network/netconnect.pm:896
-#, c-format
-msgid "Zeroconf hostname resolution"
-msgstr "Cydraniad enw gwesteiwr Zeroconf"
-
-#: network/netconnect.pm:897 network/netconnect.pm:928
-#, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "Ffurfweddu dyfais rhwydwaith %s (gyrrwr %s)"
-
-#: network/netconnect.pm:898
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use"
-msgstr ""
-"Mae modd defnyddio'r protocolau canlynol i ffurfweddu cysylltiad LAN. "
-"Dewiswch yr un i'w ddefnyddio."
-
-#: network/netconnect.pm:929
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Rhowch ffurfweddiad IP ar gyfer y peiriant hwn\n"
-"Dylai pob eitem ei roi fel cyfeiriad IP nodiant collnod degymol\n"
-"(e.e.1.2.3.4)."
-
-#: network/netconnect.pm:936 standalone/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Rhowch enw'r gwesteiwr o'r cyfeiriad DHCP"
-
-#: network/netconnect.pm:937 standalone/drakconnect:375
-#, c-format
-msgid "DHCP host name"
-msgstr "Enw gwesteiwr DHCP"
-
-#: network/netconnect.pm:942 standalone/drakconnect:321
-#: standalone/drakconnect:883 standalone/drakgw:181
-#, c-format
-msgid "Netmask"
-msgstr "Netmask"
-
-#: network/netconnect.pm:944 standalone/drakconnect:437
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Dilynwch gyfernod cerdyn rhwydwaith (defnyddiol ar gyfer gliniadur)"
-
-#: network/netconnect.pm:945 standalone/drakconnect:438
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Plygio byw'r Rhwydwaith"
-
-#: network/netconnect.pm:947 standalone/drakconnect:432
-#, c-format
-msgid "Start at boot"
-msgstr "Cychwyn y peiriant"
-
-#: network/netconnect.pm:949 standalone/drakconnect:460
-#, c-format
-msgid "Metric"
-msgstr "Metrig"
-
-#: network/netconnect.pm:950
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr "Enable IPv6 to IPv4 tunnel"
-
-#: network/netconnect.pm:952 standalone/drakconnect:369
-#: standalone/drakconnect:886
-#, c-format
-msgid "DHCP client"
-msgstr "Cleient DHCP"
-
-#: network/netconnect.pm:954 standalone/drakconnect:379
-#, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "Amser allan DHCP (mewn eiliadau)"
-
-#: network/netconnect.pm:955 standalone/drakconnect:382
-#, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "Estyn gweinyddion DNS o DHCP"
-
-#: network/netconnect.pm:956 standalone/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr "Estyn gweinyddion YP o DHCP"
-
-#: network/netconnect.pm:957 standalone/drakconnect:384
-#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr "Estyn gwenyddion NTPD o DHCP"
-
-#: network/netconnect.pm:965 printer/printerdrake.pm:1876
-#: standalone/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "dylai cyfeiriad IP fod mewn fformat 1.2.3.4"
-
-#: network/netconnect.pm:969 standalone/drakconnect:680
-#, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "Dylai Netmask fod ar fformat 255.255.224.0"
-
-#: network/netconnect.pm:973
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr "Rhybudd : cyfeiriad IP %s wedi ei gadw fel rheol !"
-
-#: network/netconnect.pm:978 standalone/drakTermServ:1927
-#: standalone/drakTermServ:1928 standalone/drakTermServ:1929
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s yn cael ei ddefnyddio eisoes\n"
-
-#: network/netconnect.pm:1018
-#, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "Dewis gyrrwr ndiswrapper"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr "Defnyddiwch y gyrrydd ndiswrapper %s"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Install a new driver"
-msgstr "Gosod gyrrwr newydd"
-
-#: network/netconnect.pm:1032
-#, c-format
-msgid "Select a device:"
-msgstr "Dewis dyfais:"
-
-#: network/netconnect.pm:1061
-#, c-format
-msgid "Please enter the wireless parameters for this card:"
-msgstr "Rhowch baramedrau diwyfr y cerdyn:"
-
-#: network/netconnect.pm:1064 standalone/drakconnect:404
-#: standalone/drakroam:52
-#, c-format
-msgid "Operating Mode"
-msgstr "Modd Gweithredu"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Ad-hoc"
-msgstr "Ad-hoc"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Managed"
-msgstr "Rheolwyd"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Master"
-msgstr "Meistr"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Repeater"
-msgstr "Eilydd"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Secondary"
-msgstr "Eilradd"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Auto"
-msgstr "Awtomatig"
-
-#: network/netconnect.pm:1068 standalone/drakconnect:405
-#: standalone/drakroam:115
-#, c-format
-msgid "Network name (ESSID)"
-msgstr "Enw'r rhwydwaith (ESSID)"
-
-#: network/netconnect.pm:1069 standalone/drakroam:116
-#, c-format
-msgid "Encryption mode"
-msgstr "Modd Amgryptiedig"
-
-#: network/netconnect.pm:1074
-#, c-format
-msgid "Allow access point roaming"
-msgstr "Caniatáu crwydro pwynt mynediad"
-
-#: network/netconnect.pm:1076 standalone/drakconnect:406
-#, c-format
-msgid "Network ID"
-msgstr "Enw Rhwydwaith"
-
-#: network/netconnect.pm:1077 standalone/drakconnect:407
-#, c-format
-msgid "Operating frequency"
-msgstr "Amledd gweithredu"
-
-#: network/netconnect.pm:1078 standalone/drakconnect:408
-#, c-format
-msgid "Sensitivity threshold"
-msgstr "Trothwy sensitifrwydd"
-
-#: network/netconnect.pm:1079 standalone/drakconnect:409
-#, c-format
-msgid "Bitrate (in b/s)"
-msgstr "Didradd (mewn b/s)"
-
-#: network/netconnect.pm:1080 standalone/drakconnect:420
-#, c-format
-msgid "RTS/CTS"
-msgstr "RTS/CTS"
-
-#: network/netconnect.pm:1081
-#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
-"Mae RTS/CTS yn ychwanegu ysgwyd llaw cyn trosglwyddo pob pecyn i wneud\n"
-"yn siŵr y sianel yn glir. Mae hyn yn ychwanegu baich, ond mae'n cynyddu'r "
-"perfformiad\n"
-"yn achos cwgn cudd neu nifer fawr o gygnau gweithredol. Mae'r paramedr hwn "
-"yn gosod\n"
-"maint y pecyn lleiaf y bydd y cwgn yn anfon RTS, gwerth cydradd â'r maint\n"
-"pecyn mwyaf sy'n gallu anablu'r cynllun. Mae modd i chi osod y paramedr hwn "
-"i awto,\n"
-"gosodedig neu ddiffodd"
-
-#: network/netconnect.pm:1088 standalone/drakconnect:421
-#, c-format
-msgid "Fragmentation"
-msgstr "Darniad"
-
-#: network/netconnect.pm:1089 standalone/drakconnect:422
-#, c-format
-msgid "iwconfig command extra arguments"
-msgstr "ymresymiadau ychwanegol gorchymyn iwconfig"
-
-#: network/netconnect.pm:1090
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-"Yma cewch ffurfweddu paramedrau diwyfr eraill megis,:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick wedi ei osod fel "
-"enw'r gwesteiwr).\n"
-"\n"
-"Gw. tudalen iwpriv(8) man am ragor o wybodaeth"
-
-#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1097 standalone/drakconnect:423
-#, c-format
-msgid "iwspy command extra arguments"
-msgstr "ymresymiadau ychwanegol gorchymyn lwspy"
-
-#: network/netconnect.pm:1098
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-"Mae lwspy yn cael ei ddefnyddio i osod rhestr o gyfeiriadau mewn\n"
-"rhyngwyneb rhwydwaith diwyfr ac adrodd ar ansawdd y cyswllt ar gyfer pob un\n"
-"\n"
-"Mae'r wybodaeth yr un ar sydd ar gale yn /proc/net/wireless :\n"
-"ansawdd y cyswllt, cryfder y signal a lefel y sŵn.\n"
-"\n"
-"Gw. tudalennau man iwpspy(8) am ragor o wybodaeth. "
-
-#: network/netconnect.pm:1107 standalone/drakconnect:424
-#, c-format
-msgid "iwpriv command extra arguments"
-msgstr "ymresymiadau ychwanegol gorchymyn iwpriv"
-
-#: network/netconnect.pm:1108
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-"Mae iwpriv yn caniatáu gosod paramedrau dewisol (preifat) rhyngwyneb\n"
-"rhwydwaith diwyfr.\n"
-"\n"
-"Mae iwpriv yn trin paramedrau a gosodiadau penodol pob gyrrwr (o gynharu\n"
-"ag iwconfig sy'n delio â rhai generig).\n"
-"\n"
-"Mewn theori dylai dogfennaeth y gyrwyr hyn ddangos sut i ddefnyddio\n"
-"gorchmynion rhyngwyneb penodol a'u heffaith.\n"
-"\n"
-"Gw. tudalen iwpriv(8) man am ragor o wybodaeth."
-
-#: network/netconnect.pm:1123
-#, c-format
-msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
-msgstr ""
-"Dylai Frqu gael rhagosodiad k, M neu G (ee \"2.46G\" am donfedd 2.46 GHz ), "
-"neu ychwanegu '0' (sero)."
-
-#: network/netconnect.pm:1127
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-"Dylai'r raddfa gael rhagosodiad K, M neu G (e.e.\"11M\" am 11M), neu "
-"ychwanegi '0' (sero)."
-
-#: network/netconnect.pm:1170
-#, c-format
-msgid "DVB configuration"
-msgstr "Ffurfweddiad DVB"
-
-#: network/netconnect.pm:1171
-#, c-format
-msgid "DVB Adapter"
-msgstr "Addasydd DVB"
-
-#: network/netconnect.pm:1188
-#, c-format
-msgid "DVB adapter settings"
-msgstr "Gosodiadau addasydd DVB"
-
-#: network/netconnect.pm:1191
-#, c-format
-msgid "Adapter card"
-msgstr "Cerdyn addasu"
-
-#: network/netconnect.pm:1192
-#, c-format
-msgid "Net demux"
-msgstr "Demux gwe"
-
-#: network/netconnect.pm:1193
-#, c-format
-msgid "PID"
-msgstr "PID"
-
-#: network/netconnect.pm:1221
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Rhowch eich enw gwesteiwr.\n"
-"Dylai eich enw gwesteiwr fod yn enw gwesteiwr llawn gymwys.\n"
-"megis \"fymlwch.fynesg.fyngho.com\".\n"
-"Gallwch hefyd gynnig eich cyfeiriad IP os oes gennych un"
-
-#: network/netconnect.pm:1226
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr "Yn olaf mae modd i chi deipio cyfeiriadau IP eich gweinydd DNS."
-
-#: network/netconnect.pm:1228 standalone/drakconnect:991
-#, c-format
-msgid "Host name (optional)"
-msgstr "Enw gwesteiwr (dewisol)"
-
-#: network/netconnect.pm:1228 standalone/drakhosts:197
-#, c-format
-msgid "Host name"
-msgstr "Enw gwesteiwr"
-
-#: network/netconnect.pm:1230
-#, c-format
-msgid "DNS server 1"
-msgstr "Gweinydd DNS 1"
-
-#: network/netconnect.pm:1231
-#, c-format
-msgid "DNS server 2"
-msgstr "Gweinydd DNS 2"
-
-#: network/netconnect.pm:1232
-#, c-format
-msgid "DNS server 3"
-msgstr "Gweinydd DNS 3"
-
-#: network/netconnect.pm:1233
-#, c-format
-msgid "Search domain"
-msgstr "Chwilio parth"
-
-#: network/netconnect.pm:1234
-#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr ""
-"Drwy ragosodiad bydd y parch chwilio'n cae ei osod o enw gwesteiwr cymwys"
-
-#: network/netconnect.pm:1235
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Mynedfa (e.e. %s)"
-
-#: network/netconnect.pm:1237
-#, c-format
-msgid "Gateway device"
-msgstr "Dyfais mynedfa"
-
-#: network/netconnect.pm:1246
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "Dylai cyfeiriad DNS fod mewn fformat 1.2.3.4"
-
-#: network/netconnect.pm:1251 standalone/drakconnect:685
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Dylai cyfeiriad Porth fod mewn fformat 1.2.3.4"
-
-#: network/netconnect.pm:1264
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-"Os hoffech chi rhowch enw parth Zeroconf.\n"
-"Dyma'r enw fydd eich cyfrifiadur yn ei ddefnyddio i hysbysu\n"
-"unrhyw un o'i adnoddau rhannwyd nad ydynt wedi eu rheoli gan\n"
-"rwydwaith. Nid oes angen gyda'r rhan fwyaf o rwydweithiau."
-
-#: network/netconnect.pm:1268
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Enw Gwesteiwr Zeroconf"
-
-#: network/netconnect.pm:1271
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "Rhaid i enw gwesteiwr Zeroconf beidio cynnwys ."
-
-#: network/netconnect.pm:1281
-#, c-format
-msgid "Do you want to allow users to start the connection?"
-msgstr "Ydych chi eisiau caniatáu i ddefnyddwyr gychwyn y cysylltiad?"
-
-#: network/netconnect.pm:1294
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Ydych chi eisiau agor y cysylltiad wrth gychwyn y cyfrifiadur?"
-
-#: network/netconnect.pm:1310
-#, c-format
-msgid "Automatically at boot"
-msgstr "Yna awtomatig wrth gychwyn"
-
-#: network/netconnect.pm:1312
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr "Drwy ddefnyddio Net Applet yn y gilfach"
-
-#: network/netconnect.pm:1314
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr "Gyda llaw (bydd y rhyngwyneb yn dal i gychwyn wrth gychwyn)"
-
-#: network/netconnect.pm:1323
-#, c-format
-msgid "How do you want to dial this connection?"
-msgstr "Sut ydych am ddeialu’r cysylltiad?"
-
-#: network/netconnect.pm:1336
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Hoffech chi gysylltu â'r Rhyngrwyd nawr?"
-
-#: network/netconnect.pm:1344 standalone/drakconnect:1023
-#, c-format
-msgid "Testing your connection..."
-msgstr "Profi eich cysylltiad..."
-
-#: network/netconnect.pm:1369
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Mae'r system wedi cysylltu â'r Rhyngrwyd."
-
-#: network/netconnect.pm:1370
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Am resymau diogelwch, bydd yn cael ei ddatgysylltu."
-
-#: network/netconnect.pm:1371
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Nid yw'n ymddangos i'ch system gysylltu â'r Rhyngrwyd.\n"
-"Ailffurfweddwch eich cysylltiad."
-
-#: network/netconnect.pm:1386
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-"Llongyfarchiadau, mae ffurfweddiad y rhwydwaith a'r Rhyngrwyd wedi ei "
-"gwblhau\n"
-
-#: network/netconnect.pm:1389
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Wedi i hyn gael ei wneud rydym yn argymell eich bod yn a'i gychwyn "
-"amgylchedd X i osgoi unrhyw anawsterau'n perthyn i enwau gwesteiwr.\n"
-"."
-
-#: network/netconnect.pm:1390
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-"Digwyddod anhawsterau yn ystod y ffurfweddiad.\n"
-"Profwch eich cysylltiad drwy net_monitor neu mcc. Os nad yw eich cysylltiad "
-"yn gweithio, efallai y byddwch eisiau ailgychwyn y ffurfweddiad"
-
-#: network/netconnect.pm:1402
-#, c-format
-msgid "(detected on port %s)"
-msgstr "(canfuwyd ar borth %s)"
-
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected %s)"
-msgstr "(canfuwyd %s)"
-
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected)"
-msgstr "(canfuwyd)"
-
-#: network/netconnect.pm:1405
-#, c-format
-msgid "Network Configuration"
-msgstr "Ffurfweddiad y Rhwydwaith"
-
-#: network/netconnect.pm:1406
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Am eich bod yn gosod eich rhwydwaith, mae eich rhwydwaith eisoes wedi ei "
-"ffurfweddu\n"
-"Cliciwch Iawn i gadw eich ffurfweddiad, neu ddileu i ail ffurfweddi eich "
-"cysylltiad Rhyngrwyd a Rhwydwaith.\n"
-
-#: network/netconnect.pm:1409
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr "Rhaid i'r rhwydwaith gael ei ailgychwyn. Ydych chi am ei ailgychwyn?"
-
-#: network/netconnect.pm:1410
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Digwyddodd gwall wrth ail gychwyn y rhwydwaith:\n"
-"\n"
-"%s"
-
-#: network/netconnect.pm:1411
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-"Rydym yn awr yn mynd i ffurfweddu cysylltiad %s.\n"
-"\n"
-"\n"
-"Pwyswch \"%s\" i barhau."
-
-#: network/netconnect.pm:1412
-#, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr "Mae'r ffurfweddu wedi ei gwblhau, hoffech eu gosod?"
-
-#: network/netconnect.pm:1413
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Rydych wedi ffurfweddu nifer o ffyrdd i gysylltu â'r Rhyngrwyd.\n"
-"Dewiswch ba un rydych am ei ddefnyddio.\n"
-"\n"
-
-#: network/netconnect.pm:1414
-#, c-format
-msgid "Internet connection"
-msgstr "Cysylltiad â'r Rhyngrwyd"
-
-#: network/netconnect.pm:1428
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-"Digwyddodd gwall annisgwyl:\n"
-"%s"
-
-#: network/network.pm:411
-#, c-format
-msgid "Proxies configuration"
-msgstr "Ffurfweddiad dirprwyon"
-
-#: network/network.pm:412
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-"Yma cewch osod ffurfweddiad eich dirprwyon (ee: http://"
-"my_caching_server:8080)"
-
-#: network/network.pm:413
-#, c-format
-msgid "HTTP proxy"
-msgstr "Dirprwy HTTP"
-
-#: network/network.pm:414
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr "Defnyddiwch ddirprwy HTTP ar gyfer cysylltiadau HTTPS"
-
-#: network/network.pm:415
-#, c-format
-msgid "HTTPS proxy"
-msgstr "Dirprwy HTTPS"
-
-#: network/network.pm:416
-#, c-format
-msgid "FTP proxy"
-msgstr "Dirprwy FTP"
-
-#: network/network.pm:420
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Dylai dirprwyon fod yn gyfanrif!"
-
-#: network/network.pm:421
-#, c-format
-msgid "Proxy should be https?://..."
-msgstr "Dylai'r dirprwy fod yn httpS?://..."
-
-#: network/network.pm:422
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "Dylai'r URL ddechrau gyda 'ftp' neu 'http:'"
-
-#: network/shorewall.pm:55
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-"Rhowch enw'r rhyngwyneb sy'n cysylltu â'r rhyngrwyd.\n"
-"\n"
-"Enghreifftiau:\n"
-"\t\tppp+ cysylltiad modem neu DSL, \n"
-"\t\teth0, neu eth1 fam gysylltiad cebl, \n"
-"\t\tippp+ am gysylltiad idsn.\n"
-
-#: network/thirdparty.pm:232
-#, c-format
-msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
-msgstr "Copîwch microcode Alcatel fel mgmt.o i /usr/share/speedtouch/"
-
-#: network/thirdparty.pm:241
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-"Methu cynnal modem ECI Hi-Focus oherwydd problem dosbarthu gyrrwr deuaidd.\n"
-"\n"
-"Mae modd canfod gyrrwr ar http://eciadsl.flashtux.org/"
-
-#: network/thirdparty.pm:321
-#, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "Methu gosod pecynnau: (%s)!"
-
-#: network/thirdparty.pm:329
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr "Mae angen rhai pecynnau (%s) ond nid ydynt ar gael."
-
-#: network/thirdparty.pm:330
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-"Mae'r pecynnau hyn i'w cael ar Mandriva Club neu fersiynnau masnachol "
-"Mandriva."
-
-#: network/thirdparty.pm:332
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-"Mae modd gosod y ffeiliau hyn o URL:\n"
-"%s"
-
-#: network/thirdparty.pm:372
-#, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "Methu canfod \"%s\" ar eich system Windows!"
-
-#: network/thirdparty.pm:374
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr "Heb ganfod system Windows!"
-
-#: network/thirdparty.pm:384
-#, c-format
-msgid "Insert floppy"
-msgstr "Rhowch ddisg meddal"
-
-#: network/thirdparty.pm:385
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"Rhowch ddisg meddal wedi ei fformatio i FAT yng ngyrrwr %s gyda %s yng "
-"nghyfeiriadur gwraidd a phwyso %s"
-
-#: network/thirdparty.pm:395
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Gwall mynediad i'r disg meddal, methu gosod dyfais %s"
-
-#: network/thirdparty.pm:405
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-"Rhaid cael meicrocod Alcatel.\n"
-"Mae modd ei ddarparu ar ddisg meddal neu o'ch rhaniad Windows,\n"
-"neu ei adael tan rywbryd eto."
-
-#: network/thirdparty.pm:409 network/thirdparty.pm:411
-#, c-format
-msgid "Use a floppy"
-msgstr "Defnyddiwch ddisg meddal"
-
-#: network/thirdparty.pm:409
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Defnyddio fy rhaniad Windows"
-
-#: network/thirdparty.pm:419
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "Methodd copïo'r gadarnwedd, heb ganfod ffeil %s"
-
-#: network/thirdparty.pm:424 standalone/drakautoinst:250
-#: standalone/drakvpn:888 standalone/scannerdrake:422
-#, c-format
-msgid "Congratulations!"
-msgstr "Llongyfarchiadau!"
-
-#: network/thirdparty.pm:424
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "Copïo'r gadarnwedd yn llwyddiant"
-
-#: network/thirdparty.pm:493
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr "Chwilio am y feddalwedd a'r gyrrwyr angenrheidiol..."
-
-#: network/thirdparty.pm:498
-#, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "Arhoswch, rhedeg gorchmynion ffurfweddu dyfais..."
-
-#: network/wireless.pm:8
-#, c-format
-msgid "Open WEP"
-msgstr "Agor WEP"
-
-#: network/wireless.pm:9
-#, c-format
-msgid "Restricted WEP"
-msgstr "WEP cyfyngedig"
-
-#: network/wireless.pm:10
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr "Allwedd Cyn Rhannu WEP"
-
-#: partition_table.pm:391
+#: partition_table.pm:390
#, c-format
msgid "mount failed: "
msgstr "maethodd y gosodiad"
-#: partition_table.pm:496
+#: partition_table.pm:500
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Nid yw'r rhaniad estynedig yn cael ei gynnal ar y platfform hwn"
-#: partition_table.pm:514
+#: partition_table.pm:518
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
@@ -11755,22 +5111,27 @@ msgstr ""
"Yr unig ateb yw i symud eich rhaniadau cynradd fel bo'r twll nesaf at y "
"rhaniadau estynedig "
-#: partition_table.pm:605
+#: partition_table.pm:597
+#, c-format
+msgid "Error reading file %s"
+msgstr "Gwall wrth ddarllen ffeil %s"
+
+#: partition_table.pm:604
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Methodd adfer o ffeil %s: %s"
-#: partition_table.pm:607
+#: partition_table.pm:606
#, c-format
msgid "Bad backup file"
msgstr "Ffeil wrth gefn gwallus"
-#: partition_table.pm:627
+#: partition_table.pm:626
#, c-format
msgid "Error writing to file %s"
msgstr "Gwall wrth ysgrifennu i ffeil %s"
-#: partition_table/raw.pm:253
+#: partition_table/raw.pm:264
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
@@ -11782,3537 +5143,50 @@ msgstr ""
"Mae prawf i fesur ei gyfanrwydd wedi methu. \n"
"Nid oes gwerth ysgrifennu i'r ddisg"
-#: pkgs.pm:21
-#, c-format
-msgid "must have"
-msgstr "rhaid cael"
-
-#: pkgs.pm:22
-#, c-format
-msgid "important"
-msgstr "pwysig"
-
-#: pkgs.pm:23
-#, c-format
-msgid "very nice"
-msgstr "hyfryd iawn"
-
-#: pkgs.pm:24
-#, c-format
-msgid "nice"
-msgstr "hyfryd"
-
-#: pkgs.pm:25
-#, c-format
-msgid "maybe"
-msgstr "efallai"
-
-#: pkgs.pm:474
-#, c-format
-msgid "Downloading file %s..."
-msgstr "Llwytho ffeil %s..."
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on %s)"
-msgstr "(ar %s)"
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on this machine)"
-msgstr "(ar y peiriant hwn)"
-
-#: printer/cups.pm:117 standalone/printerdrake:200
-#, c-format
-msgid "Configured on other machines"
-msgstr "Ffurfweddu ar beiriannau eraill"
-
-#: printer/cups.pm:119
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Ar weinydd CUPS \"%s\""
-
-#: printer/cups.pm:119 printer/printerdrake.pm:4909
-#: printer/printerdrake.pm:4919 printer/printerdrake.pm:5078
-#: printer/printerdrake.pm:5089 printer/printerdrake.pm:5303
-#, c-format
-msgid " (Default)"
-msgstr "(Rhagosodedig)"
-
-#: printer/data.pm:67
-#, c-format
-msgid "PDQ - Print, Do not Queue"
-msgstr "PDQ - Print, Do not Queue"
-
-#: printer/data.pm:68
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: printer/data.pm:80
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: printer/data.pm:81
-#, c-format
-msgid "LPD"
-msgstr "LPD"
-
-#: printer/data.pm:102
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: printer/data.pm:103
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
-
-#: printer/data.pm:128
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: printer/data.pm:158
-#, c-format
-msgid "CUPS - Common Unix Printing System (remote server)"
-msgstr "CUPS - Common Unix Printing System (gweinydd pell)"
-
-#: printer/data.pm:159
-#, c-format
-msgid "Remote CUPS"
-msgstr "CUPS pell"
-
-#: printer/detect.pm:168 printer/detect.pm:263 printer/detect.pm:498
-#: printer/detect.pm:571 printer/main.pm:330 printer/main.pm:692
-#: printer/main.pm:1815 printer/printerdrake.pm:960
-#: printer/printerdrake.pm:1120 printer/printerdrake.pm:2448
-#: printer/printerdrake.pm:4004
-#, c-format
-msgid "Unknown model"
-msgstr "Model anhysbys"
-
-#: printer/main.pm:24
-#, c-format
-msgid "Local printer"
-msgstr "Argraffydd lleol"
-
-#: printer/main.pm:25
-#, c-format
-msgid "Remote printer"
-msgstr "Argraffydd pell"
-
-#: printer/main.pm:26
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Argraffydd ar weinydd CUPS pell"
-
-#: printer/main.pm:27 printer/printerdrake.pm:1360
-#: printer/printerdrake.pm:1899
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Argraffydd ar weinydd lpd pell"
-
-#: printer/main.pm:28
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Argraffydd rhwydwaith (TCP/Soced)"
-
-#: printer/main.pm:29
-#, c-format
-msgid "Printer on SMB/Windows server"
-msgstr "Argraffydd ar weinydd SMB/Windows"
-
-#: printer/main.pm:30
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Argraffydd ar weinydd NetWare"
-
-#: printer/main.pm:31 printer/printerdrake.pm:1903
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Rhowch URI dyfais argraffydd"
-
-#: printer/main.pm:32
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Peipio'r gwaith i orchymyn"
-
-#: printer/main.pm:43
-#, c-format
-msgid "recommended"
-msgstr "argymhellir"
-
-#: printer/main.pm:355 standalone/printerdrake:199
-#, c-format
-msgid "Configured on this machine"
-msgstr "Ffurfweddwyd ar y peiriant hwn"
-
-#: printer/main.pm:361 printer/printerdrake.pm:1445
-#, c-format
-msgid " on parallel port #%s"
-msgstr " ar borth paralel #\"%s"
-
-#: printer/main.pm:364 printer/printerdrake.pm:1448
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", argraffydd USB #\"%s"
-
-#: printer/main.pm:366
-#, c-format
-msgid ", USB printer"
-msgstr ", argraffydd USB"
-
-#: printer/main.pm:370
-#, c-format
-msgid ", HP printer on a parallel port"
-msgstr ". Argraffydd HP ar borth paralel"
-
-#: printer/main.pm:372
-#, c-format
-msgid ", HP printer on USB"
-msgstr ", Argraffydd HP ar USB"
-
-#: printer/main.pm:374
-#, c-format
-msgid ", HP printer on HP JetDirect"
-msgstr ", Argraffydd HP ar HP JetDirect"
-
-#: printer/main.pm:376
-#, c-format
-msgid ", HP printer"
-msgstr ", Argraffydd HP"
-
-#: printer/main.pm:382
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", dyfais amlbwrpas ar borth paralel #\"%s"
-
-#: printer/main.pm:385
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", dyfais amlbwrpas ar borth paralel"
-
-#: printer/main.pm:387
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", dyfais amlbwrpas ar USB"
-
-#: printer/main.pm:389
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", dyfais amlbwrpas ar HP JetDirect"
-
-#: printer/main.pm:391
-#, c-format
-msgid ", multi-function device"
-msgstr ",dyfais amlbwrpas"
-
-#: printer/main.pm:395
-#, c-format
-msgid ", printing to %s"
-msgstr ", argraffu i %s"
-
-#: printer/main.pm:398
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr "ar weinydd LPD \"%s\", argraffydd \"%s\""
-
-#: printer/main.pm:401
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", gwesteiwr TCP/IP \"%s\", porth %s"
-
-#: printer/main.pm:406
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr "ar weinydd SMB/Windows \"%s\", rhannu \"%s\""
-
-#: printer/main.pm:411
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr "ar weinydd Novell \"%s\", argraffydd \"%s\""
-
-#: printer/main.pm:414
-#, c-format
-msgid ", using command %s"
-msgstr ", defnyddio gorchymyn %s"
-
-#: printer/main.pm:429
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Porth paralel #\"%s"
-
-#: printer/main.pm:432 printer/printerdrake.pm:1466
-#: printer/printerdrake.pm:1493 printer/printerdrake.pm:1508
-#, c-format
-msgid "USB printer #%s"
-msgstr "Argraffydd USB #\"%s"
-
-#: printer/main.pm:434
-#, c-format
-msgid "USB printer"
-msgstr "Argraffydd USB"
-
-#: printer/main.pm:438
-#, c-format
-msgid "HP printer on a parallel port"
-msgstr "Argraffydd HP ar borth paralel"
-
-#: printer/main.pm:440
-#, c-format
-msgid "HP printer on USB"
-msgstr "Argraffydd HP ar USB"
-
-#: printer/main.pm:442
-#, c-format
-msgid "HP printer on HP JetDirect"
-msgstr "Argraffydd HP ar HP JetDirect"
-
-#: printer/main.pm:444
-#, c-format
-msgid "HP printer"
-msgstr "Argraffydd HP"
-
-#: printer/main.pm:450
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Dyfais amlbwrpas ar borth paralel #\"%s"
-
-#: printer/main.pm:453
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Dyfais amlbwrpas ar borth paralel"
-
-#: printer/main.pm:455
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "Dyfais amlbwrpas ar USB"
-
-#: printer/main.pm:457
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Dyfais amlbwrpas ar HP JetDirect"
-
-#: printer/main.pm:459
-#, c-format
-msgid "Multi-function device"
-msgstr "Dyfais amlbwrpas"
-
-#: printer/main.pm:463
-#, c-format
-msgid "Prints into %s"
-msgstr "Argraffu i %s"
-
-#: printer/main.pm:466
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "Gweinydd LPD \"%s\", argraffydd \"%s\""
-
-#: printer/main.pm:469
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "Gwesteiwr TCP/IP \"%s\", porth %s"
-
-#: printer/main.pm:474
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "Gweinydd SMB/Windows \"%s\", rhannu \"%s\""
-
-#: printer/main.pm:479
-#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Gweinydd Novell \"%s\", argraffydd \"%s\""
-
-#: printer/main.pm:482
-#, c-format
-msgid "Uses command %s"
-msgstr "Defnyddio gorchymyn %s"
-
-#: printer/main.pm:484
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
-
-#: printer/main.pm:689 printer/printerdrake.pm:1047
-#: printer/printerdrake.pm:3142
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Argraffydd crai (dim gyrrwr)"
-
-#: printer/main.pm:1309 printer/printerdrake.pm:211
-#: printer/printerdrake.pm:223
-#, c-format
-msgid "Local network(s)"
-msgstr "Rhwydwaith(iau) lleol "
-
-#: printer/main.pm:1311 printer/printerdrake.pm:227
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Rhyngwyneb \"%s\""
-
-#: printer/main.pm:1313
-#, c-format
-msgid "Network %s"
-msgstr "Rhwydwaith %s"
-
-#: printer/main.pm:1315
-#, c-format
-msgid "Host %s"
-msgstr "Gwesteiwr %s"
-
-#: printer/main.pm:1344
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Porth %s)"
-
-#: printer/main.pm:1945 printer/main.pm:2100
-#, c-format
-msgid "user-supplied"
-msgstr "darparwyd gan y defnyddiwr"
-
-#: printer/main.pm:1949 printer/main.pm:2104
-#, c-format
-msgid "NEW"
-msgstr "NEWYDD"
-
-#: printer/printerdrake.pm:24
-#, c-format
-msgid ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"decompressing the self-extracting '.exe' file with the 'unzip' utility and "
-"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
-"printer' directory. There it will be found by the automatic uploader script "
-"and uploaded whenever the printer is connected and turned on.\n"
-msgstr ""
-"Mae'r HP LaserJet 1000 angen cael ei gadarnwedd wedi ei lwytho i fyny ar ôl "
-"ei gychwyn. Estynnwch y pecyn gyrrwr Windows o safle gwe HP (nid yw'r "
-"gadarnwedd ar CD yr argraffydd yn gweithio) a thynnwch y ffeil cadarnwedd "
-"ohono gan ddatgywasgu 'r ffeil 'exe' gyda rhaglen 'datgywasgu' a chwilio am "
-"y ffeil 'sihp1000.img'. Copïo'r ffeil i gyfeiriadur '/etc/printer'. Yna bydd "
-"yn cael ei ganfod gan y sgript llwytho awtomatig a'i lwytho pryd bynnag fydd "
-"yr argraffydd wedi ei gysylltu â'i gychwyn.\n"
-
-#: printer/printerdrake.pm:67
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "Ffurfweddiad argraffydd CUPS "
-
-#: printer/printerdrake.pm:68
-#, c-format
-msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessible by remote machines and by which remote machines."
-msgstr ""
-"Yma gallwch benderfynu a ddylai'r argraffyddion sy'n gysylltiedig â'r "
-"cyfrifiadur hwn fod ar gael i gyfrifiaduron pell a pha rai."
-
-#: printer/printerdrake.pm:69
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-"Gallwch benderfynu a ddylai argraffydd ar gyfrifiadur pell fod ar gael ar "
-"gyfer y cyfrifiadur hwn."
-
-#: printer/printerdrake.pm:72 printer/printerdrake.pm:506
-#: printer/printerdrake.pm:4542
-#, c-format
-msgid "Remote CUPS server and no local CUPS daemon"
-msgstr "Gweinydd CUPS pell a dim daemon CUPS lleol"
-
-#: printer/printerdrake.pm:75
-#, c-format
-msgid "On"
-msgstr "Ymlaen"
-
-#: printer/printerdrake.pm:77 printer/printerdrake.pm:498
-#: printer/printerdrake.pm:525
-#, c-format
-msgid "Off"
-msgstr "Diffodd "
-
-#: printer/printerdrake.pm:78 printer/printerdrake.pm:507
-#, c-format
-msgid ""
-"In this mode the local CUPS daemon will be stopped and all printing requests "
-"go directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-"Yn y modd hwn bydd y daemon CUPS lleol yn cael ei atal a bydd yr holl "
-"geisiadau argraffu'n mynd yn syth i'r gweinydd enwyd isod. Sylwch na fydd yn "
-"bosib diffinio rhesi argraffu lleol ac os bydd y gweinydd hwnnw i lawr nid "
-"oes modd ei argraffu o'r peiriant hwn."
-
-#: printer/printerdrake.pm:84
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Mae' argraffyddion y cyfrifiadur hwn ar gael ar gyfer rhai eraill"
-
-#: printer/printerdrake.pm:89
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Canfod argraffyddion ar gyfrifiaduron pell, yn awtomatig."
-
-#: printer/printerdrake.pm:94
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Rhannu argraffydd ar westeiwr/rhwydwaith:"
-
-#: printer/printerdrake.pm:96
-#, c-format
-msgid "Custom configuration"
-msgstr "Ffurfweddiad addasu"
-
-#: printer/printerdrake.pm:101 standalone/scannerdrake:610
-#: standalone/scannerdrake:627
-#, c-format
-msgid "No remote machines"
-msgstr "Dim cyfrifiaduron pell"
-
-#: printer/printerdrake.pm:112
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Gweinyddion CUPS ychwanegol:"
-
-#: printer/printerdrake.pm:119
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"I gael mynediad at argraffyddion ar weinyddion CUPS pell yn eich rhwydwaith "
-"lleol dim ond angen i chi gychwyn y dewis \"Canfod argraffyddion ar "
-"gyfrifiaduron pell\" ; bydd y gweinyddion CUPS yn dweud wrth eich "
-"cyfrifiadur am eu hargraffydd. Mae pob argraffydd sy'n hysbys i'ch "
-"cyfrifiadur yn cael ei restri yn adran \"Argrafargraffyddion pell\" prif "
-"ffenestr Printerdrake. Os yw/nad yw eich gweinydd(wyr) CUPS ar eich "
-"rhwydwaith lleol rhaid rhoi cyfeiriad(au) IP ac yn ddewisol rhif(au) porth "
-"yma i gael gwybodaeth am yr argraffydd gan y gweinydd(wyr)."
-
-#: printer/printerdrake.pm:127
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Modd argraffu testun Siapanëeg"
-
-#: printer/printerdrake.pm:128
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in Japanese language. Only "
-"use this function if you really want to print text in Japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print Japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Drwy gychwyn hwn bydd yn caniatáu argraffu testun plaen yn yr iaith "
-"Siapanëeg. Defnyddiwch hwn os ydych wir angen argraffu testun yn Siapanëeg, "
-"oherwydd os ydych yn ei ddefnyddio ni fydd modd argraffu nodau acennog mewn "
-"ffontiau Lladin ragor ac ni fydd modd newid ymyl tudalen na maint ffontiau, "
-"ag ati. Mae hyn yn effeithio ar argraffyddion sydd wedi eu diffinio ar y "
-"cyfrifiadur hwn. Os ydych am argraffu testun Siapanëeg ar argraffydd sy'n "
-"gysylltiedig â chyfrifiadur pell, bydd angen cychwyn y nodwedd ar y "
-"cyfrifiadur hwnnw."
-
-#: printer/printerdrake.pm:135
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Cywiro cyswllt CUPS yn awtomatig"
-
-#: printer/printerdrake.pm:137
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Pan mae'r dewis yma ar gael, gwneud yn siŵr wrth gychwyn CUPS fod\n"
-"\n"
-"- os yw LPD/LPRng wedi ei osod, na fydd CUPS yn ysgrifennu dros /etc/"
-"printcap\n"
-"\n"
-"- os yw /etc/cups/cupsd.conf ar goll, bydd yn cael ei greu\n"
-"\n"
-"- pan mae gwybodaeth am argraffydd yn cael ei ledaenu, nid yw'n cynnwys "
-"\"localhost\" fel enw gweinydd.\n"
-"\n"
-"Os yw rhai o'r rhain yn achosi anhawster, diffoddwch y dewis hwn, ond bydd "
-"rhaid i chi ofalu amdanynt."
-
-#: printer/printerdrake.pm:161 printer/printerdrake.pm:236
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Rhannu argraffyddion lleol"
-
-#: printer/printerdrake.pm:162
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-"Dyma'r cyfrifiaduron a rhwydweithiau ddylai'r argraffydd(ion) lleol fod ar "
-"gael:"
-
-#: printer/printerdrake.pm:173
-#, c-format
-msgid "Add host/network"
-msgstr "Ychwanegu gwesteiwr/rhwydwaith"
-
-#: printer/printerdrake.pm:179
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Golygu'r gwesteiwr/rhwydwaith"
-
-#: printer/printerdrake.pm:188
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Tynnu'r gwesteiwr/rhwydwaith"
-
-#: printer/printerdrake.pm:219 printer/printerdrake.pm:229
-#: printer/printerdrake.pm:241 printer/printerdrake.pm:248
-#: printer/printerdrake.pm:279 printer/printerdrake.pm:297
-#, c-format
-msgid "IP address of host/network:"
-msgstr "Cyfeiriad IP gwesteiwr/rhwydwaith"
-
-#: printer/printerdrake.pm:237
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr ""
-"Dewis y rhwydwaith neu westeiwr ddylai'r argraffyddion lleol fod ar gael "
-"iddynt:"
-
-#: printer/printerdrake.pm:244
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Cyfeiriad y gwesteiwr/rhwydwaith ar goll."
-
-#: printer/printerdrake.pm:252
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "Nid yw IP y gwesteiwr/rhwydwaith yn gywir.\n"
-
-#: printer/printerdrake.pm:253 printer/printerdrake.pm:429
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Esiamplau cywir ar gyfer IP:\n"
-
-#: printer/printerdrake.pm:277
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr ""
-"Mae'r gwesteiwr/rhwydwaith ar y rhestr yn barod, does dim modd ei "
-"ychwanegu.\n"
-
-#: printer/printerdrake.pm:346 printer/printerdrake.pm:416
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Mynediad at argraffydd ar weinydd CUPS pell"
-
-#: printer/printerdrake.pm:347
-#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
-"Ychwanegwch y gweinyddion CUPS yr argraffwyr rydych am eu defnyddio. Bydd "
-"angen gwneud hyn dim ond os nad yw'r gweinyddion yn darlledu eu gwybodaeth "
-"argraffu i'r rhwydwaith lleol."
-
-#: printer/printerdrake.pm:358
-#, c-format
-msgid "Add server"
-msgstr "Ychwanegu gweinydd"
-
-#: printer/printerdrake.pm:364
-#, c-format
-msgid "Edit selected server"
-msgstr "Golygu'r gwesteiwr"
-
-#: printer/printerdrake.pm:373
-#, c-format
-msgid "Remove selected server"
-msgstr "Tynnu'r gwesteiwr"
-
-#: printer/printerdrake.pm:417
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-"Rhowch gyfeiriad IP a phorth gwesteiwr yr argraffydd rydych am ei ddefnyddio."
-
-#: printer/printerdrake.pm:418
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr ""
-"Os nad oes porth yn cael ei gynnig, bydd 631 yn cael ei gymryd fel y "
-"rhagosodedig."
-
-#: printer/printerdrake.pm:422
-#, c-format
-msgid "Server IP missing!"
-msgstr "IP'r gweinydd ar goll!"
-
-#: printer/printerdrake.pm:428
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Nid yw'r IP'n gywir.\n"
-
-#: printer/printerdrake.pm:440 printer/printerdrake.pm:2133
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Dylai rhif porth fod yn gyfanrif!"
-
-#: printer/printerdrake.pm:451
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr ""
-"Mae'r gwesteiwr ar y rhestr yn barod, does dim modd ei ychwanegu eto.\n"
-
-#: printer/printerdrake.pm:462 printer/printerdrake.pm:2160
-#: standalone/drakups:249 standalone/harddrake2:52
-#, c-format
-msgid "Port"
-msgstr "Porth"
-
-#: printer/printerdrake.pm:495 printer/printerdrake.pm:511
-#: printer/printerdrake.pm:526 printer/printerdrake.pm:530
-#: printer/printerdrake.pm:536
-#, c-format
-msgid "On, Name or IP of remote server:"
-msgstr "mlaen, Enw neu IP gweinydd pell"
-
-#: printer/printerdrake.pm:514 printer/printerdrake.pm:4551
-#: printer/printerdrake.pm:4617
-#, c-format
-msgid "CUPS server name or IP address missing."
-msgstr "Mae enw gweinydd CUPS neu gyfeiriad IP ar goll."
-
-#: printer/printerdrake.pm:566 printer/printerdrake.pm:586
-#: printer/printerdrake.pm:811 printer/printerdrake.pm:880
-#: printer/printerdrake.pm:901 printer/printerdrake.pm:927
-#: printer/printerdrake.pm:1023 printer/printerdrake.pm:1065
-#: printer/printerdrake.pm:1075 printer/printerdrake.pm:1110
-#: printer/printerdrake.pm:2220 printer/printerdrake.pm:2490
-#: printer/printerdrake.pm:2524 printer/printerdrake.pm:2575
-#: printer/printerdrake.pm:2582 printer/printerdrake.pm:2621
-#: printer/printerdrake.pm:2663 printer/printerdrake.pm:2700
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2984
-#: printer/printerdrake.pm:2989 printer/printerdrake.pm:3137
-#: printer/printerdrake.pm:3248 printer/printerdrake.pm:3862
-#: printer/printerdrake.pm:3929 printer/printerdrake.pm:3978
-#: printer/printerdrake.pm:3981 printer/printerdrake.pm:4091
-#: printer/printerdrake.pm:4149 printer/printerdrake.pm:4221
-#: printer/printerdrake.pm:4242 printer/printerdrake.pm:4252
-#: printer/printerdrake.pm:4342 printer/printerdrake.pm:4437
-#: printer/printerdrake.pm:4443 printer/printerdrake.pm:4471
-#: printer/printerdrake.pm:4578 printer/printerdrake.pm:4687
-#: printer/printerdrake.pm:4707 printer/printerdrake.pm:4716
-#: printer/printerdrake.pm:4731 printer/printerdrake.pm:4932
-#: printer/printerdrake.pm:5407 printer/printerdrake.pm:5490
-#: standalone/printerdrake:75 standalone/printerdrake:590
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: printer/printerdrake.pm:567 printer/printerdrake.pm:4150
-#: printer/printerdrake.pm:4688
-#, c-format
-msgid "Reading printer data..."
-msgstr "Darllen data argraffydd..."
-
-#: printer/printerdrake.pm:587
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "Ail gychwyn CUPS"
-
-#: printer/printerdrake.pm:614
-#, c-format
-msgid ""
-"Allow pop-up windows, printer setup and package installation may be canceled"
-msgstr ""
-"Caniatáu ffenestri llamlenni, gosod argraffydd a gosod pecynnau i gael eu "
-"diddymu"
-
-#: printer/printerdrake.pm:616
-#, c-format
-msgid ""
-"No pop-up windows, printer setup and package installation cannot be canceled"
-msgstr ""
-"Peidio caniatáu i ffenestri llamlenni, gosod argraffydd a gosod pecynnau "
-"gael eu diddymu"
-
-#: printer/printerdrake.pm:622
-#, c-format
-msgid "Printer auto administration"
-msgstr "Awto weinyddu argraffydd"
-
-#: printer/printerdrake.pm:623
-#, c-format
-msgid ""
-"Here you can configure printer administration tasks which should be done "
-"automatically."
-msgstr ""
-"Yma cewch ffurfweddu tasgau gweinyddol argraffydd, ddylai gael ei wneud yn "
-"awtomatig."
-
-#: printer/printerdrake.pm:626
-#, c-format
-msgid "Do automatic configuration of new printers"
-msgstr "Ffurfweddiad awtomatig argraffydd newydd"
-
-#: printer/printerdrake.pm:627 printer/printerdrake.pm:641
-#, c-format
-msgid "when a USB printer is connected and turned on"
-msgstr "pan fydd argraffydd USB wedi ei gysylltu â'u troi ymlaen"
-
-#: printer/printerdrake.pm:630
-#, c-format
-msgid "when Printerdrake is started"
-msgstr "pan mae Printerdrake wedi ei gychwyn"
-
-#: printer/printerdrake.pm:634
-#, c-format
-msgid "Mode for automatic printer setup:"
-msgstr "Modd gosod argraffydd yn awtomatig:"
-
-#: printer/printerdrake.pm:640
-#, c-format
-msgid "Re-enable disabled printers"
-msgstr "Ail-alluogi argraffydd sydd wedi ei analluogi"
-
-#: printer/printerdrake.pm:644
-#, c-format
-msgid "when the printing system is started"
-msgstr "pan fydd y system argraffu yn cychwyn"
-
-#: printer/printerdrake.pm:680
-#, c-format
-msgid "Communication error handling for the printer \"%s\""
-msgstr "Gwall trin cyfathrebu argraffydd \"%s\""
-
-#: printer/printerdrake.pm:682
-#, c-format
-msgid ""
-"Here you can configure how errors during the communication between your "
-"computer and the printer \"%s\" should be handled (for example if the "
-"printer is not turned on)."
-msgstr ""
-"Yma cewch ffurfweddu sut mae trin gwallau mewn cyfathrebu rhwng eich "
-"cyfrifiadur ac argraffydd \"%s\" (ee os nad yw'r argraffydd ymlaen)"
-
-#: printer/printerdrake.pm:686
-#, c-format
-msgid "The number of retries should be an integer number of at least 1!"
-msgstr "Dylai rhif ail-geisio fod yn rif cyfanrif o o leiaf 1!"
-
-#: printer/printerdrake.pm:690
-#, c-format
-msgid "The delay between retries should be a positive integer number!"
-msgstr "Dylai'r oedi rhwng ailgeisio fod yn rif cyfanrif positif!"
-
-#: printer/printerdrake.pm:701
-#, c-format
-msgid "Do not disable the printer"
-msgstr "Peidio anablu'r argraffydd"
-
-#: printer/printerdrake.pm:704
-#, c-format
-msgid "Retry infinitely often"
-msgstr "Ail-geisio yn aml ac anfeidraidd"
-
-#: printer/printerdrake.pm:707
-#, c-format
-msgid "Number of retries"
-msgstr "Nifer ail-geisiau"
-
-#: printer/printerdrake.pm:712
-#, c-format
-msgid "Delay between retries (in sec)"
-msgstr "Oedi rhwng ail-geisio (mewn eil.)"
-
-#: printer/printerdrake.pm:745 printer/printerdrake.pm:765
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Dewiswch Gysylltiad Argraffydd"
-
-#: printer/printerdrake.pm:746
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Sut mae'r argraffydd wedi ei gysylltu?"
-
-#: printer/printerdrake.pm:748
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Nid oes angen ffurfweddu argraffyddion ar weinyddion CUPS pell: byddant yn "
-"cael eu canfod yn awtomatig."
-
-#: printer/printerdrake.pm:751 printer/printerdrake.pm:4934
-#, c-format
-msgid ""
-"\n"
-"WARNING: No local network connection active, remote printers can neither be "
-"detected nor tested!"
-msgstr ""
-"\n"
-"RHYBUDD: Nid oes cyswllt rhwydwaith lleol yn weithredol, nid oes modd canfod "
-"na phrofi argraffyddion pell!"
-
-#: printer/printerdrake.pm:758
-#, c-format
-msgid ""
-"Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"
-msgstr ""
-"Awtoganfod argraffydd (Argraffyddion lleol, TCP/Socket, SMB, ac URL dyfais)"
-
-#: printer/printerdrake.pm:760
-#, c-format
-msgid "Modify timeout for network printer auto-detection"
-msgstr "Newid amser allan ar gyfer awtoganfod argraffyddion rhwydwaith "
-
-#: printer/printerdrake.pm:766
-#, c-format
-msgid "Enter the timeout for network printer auto-detection (in msec) here. "
-msgstr "Newid amser allan ar gyfer awtoganfod argraffyddion rhwydwaith "
-
-#: printer/printerdrake.pm:768
-#, c-format
-msgid ""
-"The longer you choose the timeout, the more reliable the detections of "
-"network printers will be, but the scan can take longer then, especially if "
-"there are many machines with local firewalls in the network. "
-msgstr ""
-"Yr hira bo'r amser allan, y mwyaf dibynadwy fydd canfod yr argraffyddion "
-"rhwydwaith, ond gall y canfod cymryd mwy o amser, yn arbennig os oes yna "
-"lawer o furiau cadarn lleol yn y rhwydwaith."
-
-#: printer/printerdrake.pm:772
-#, c-format
-msgid "The timeout must be a positive integer number!"
-msgstr "Rhaid i'r amser allan fod yn rif cyfanrif positif!"
-
-#: printer/printerdrake.pm:811
-#, c-format
-msgid "Checking your system..."
-msgstr "Gwirio eich system..."
-
-#: printer/printerdrake.pm:829
-#, c-format
-msgid "and one unknown printer"
-msgstr "ac un argraffydd anhysbys"
-
-#: printer/printerdrake.pm:831
-#, c-format
-msgid "and %d unknown printers"
-msgstr "a %d argraffydd anhysbys"
-
-#: printer/printerdrake.pm:835
-#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Mae argraffyddion canlynol\n"
-"\n"
-"%s%s\n"
-"wedi eu cysylltu'n uniongyrchol â'ch system"
-
-#: printer/printerdrake.pm:837
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Mae'r argraffydd canlynol\n"
-"\n"
-"%s%s\n"
-"wedi ei gysylltu'n uniongyrchol â'ch system"
-
-#: printer/printerdrake.pm:838
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-"Mae'r argraffydd canlynol\n"
-"\n"
-"%s%s\n"
-"wedi ei gysylltu'n uniongyrchol â'ch system"
-
-#: printer/printerdrake.pm:842
-#, c-format
-msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
-"\n"
-"Mae un argraffydd anhysbys wedi ei gysylltu'n uniongyrchol â'ch system"
-
-#: printer/printerdrake.pm:843
-#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
-"\n"
-"Mae yna %d argraffydd anhysbys wedi eu cysylltu'n uniongyrchol â'ch system"
-
-#: printer/printerdrake.pm:846
-#, c-format
-msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr ""
-"Nid oes unrhyw argraffydd wedi ei ganfod wedi ei gysylltu'n uniongyrchol "
-"â'ch cyfrifiadur"
-
-#: printer/printerdrake.pm:849
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr ""
-"(Gwnewch yn siŵr bod eich argraffyddion wedi eu cysylltu â'u troi ymlaen).\n"
-
-#: printer/printerdrake.pm:862
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
-"Ydych chi am ganiatáu argraffu ar yr argraffyddion enwir uchod neu ar yr "
-"argraffyddion ar y rhwydwaith lleol?\n"
-
-#: printer/printerdrake.pm:863
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Ydych chi am alluogi argraffu ar argraffydd mewn rhwydwaith lleol?\n"
-
-#: printer/printerdrake.pm:865
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Ydych chi am alluogi argraffu ar yr argraffyddion enwi'r uchod?\n"
-
-#: printer/printerdrake.pm:866
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Ydych chi'n siŵr eich bod am osod argraffu ar y peiriant hwn?\n"
-
-#: printer/printerdrake.pm:867
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
-"NODYN: Yn dibynnu ar yr argraffydd a'r system argraffu bydd hyd at %d MB o "
-"feddalwedd ychwanegol yn cael ei osod."
-
-#: printer/printerdrake.pm:884
-#, c-format
-msgid "Do not setup printer automatically now, and never do it again"
-msgstr "Peidio gosod argraffydd yn awtomatig, nawr na byth."
-
-#: printer/printerdrake.pm:928
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Chwilio am argraffyddion newydd..."
-
-#: printer/printerdrake.pm:976
-#, c-format
-msgid "Do not setup printer automatically again"
-msgstr "Peidio gosod argraffydd yn awtomatig eto"
-
-#: printer/printerdrake.pm:983
-#, c-format
-msgid "New printers found"
-msgstr "Wedi canfod argraffydd newydd"
-
-#: printer/printerdrake.pm:984
-#, c-format
-msgid "New printer found"
-msgstr "Wedi canfod argraffydd newydd"
-
-#: printer/printerdrake.pm:986
-#, c-format
-msgid ""
-"The following new printers were found and Printerdrake can automatically set "
-"them up for you. If you do not want to have all of them set up, unselect the "
-"ones which should be skipped, or click \"Cancel\" to set up none of them.\n"
-msgstr ""
-"Canfuwyd yr argraffyddion canlynol ac mae Printerdrake yn gallu eu gosod ar "
-"eich cyfer. Os nad ydych am eu gosod i gyd, dad ddewiswch y rhai i'w hepgor, "
-"neu glicio \"Diddymu\" i beidio gosod yr un.\n"
-
-#: printer/printerdrake.pm:987
-#, c-format
-msgid ""
-"The following new printer was found and printerdrake can automatically set "
-"it up for you. If you do not want to have it set up, unselect it, or click "
-"\"Cancel\".\n"
-msgstr ""
-"Canfuwyd yr argraffydd newydd canlynol ac mae Printerdrake yn gallu ei osod "
-"ar eich cyfer. Os nad ydych am eu gosod i gyd, dad ddewiswch, neu glicio "
-"\"Diddymu\" i beidio ei osod.\n"
-
-#: printer/printerdrake.pm:988
-#, c-format
-msgid ""
-"Note that for certain printer models additional packages need to be "
-"installed. So keep your installation media handy.\n"
-msgstr ""
-"Sylwch fod angen gosod pecynnau ychwanegol ar gyfer rhai argraffyddion. "
-"Cadwch eich cyfrwng gosod wrth law.\n"
-
-#: printer/printerdrake.pm:1024 printer/printerdrake.pm:1066
-#, c-format
-msgid "Configuring printer on %s..."
-msgstr "Ffurfweddu argraffydd ar %s ..."
-
-#: printer/printerdrake.pm:1049
-#, c-format
-msgid "("
-msgstr "("
-
-#: printer/printerdrake.pm:1050
-#, c-format
-msgid " on "
-msgstr "ar "
-
-#: printer/printerdrake.pm:1051 standalone/scannerdrake:137
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: printer/printerdrake.pm:1056 printer/printerdrake.pm:3149
-#, c-format
-msgid "Printer model selection"
-msgstr "Dewis model yr argraffydd"
-
-#: printer/printerdrake.pm:1057 printer/printerdrake.pm:3150
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Pa fath o argraffydd sydd gennych?"
-
-#: printer/printerdrake.pm:1058
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-"\n"
-"\n"
-"Nid oedd Printerdrake yn gallu adnabod eich argraffydd %s. Dewiswch yr un "
-"cywir o'r rhestr."
-
-#: printer/printerdrake.pm:1061 printer/printerdrake.pm:3155
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Nid yw eich argraffydd wedi ei rhestri, dewiswch un cyfatebol (gw. llawlyfr "
-"eich argraffydd) neu un tebyg."
-
-#: printer/printerdrake.pm:1076 printer/printerdrake.pm:4708
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Ffurfweddu argraffydd \"%s\" ..."
-
-#: printer/printerdrake.pm:1111
-#, c-format
-msgid ""
-"Now you have turned off automatic printer setup.\n"
-"\n"
-msgstr ""
-"Nawr rydych wedi diffodd gosod argraffydd yn awtomatig.\n"
-"\n"
-
-#: printer/printerdrake.pm:1112
-#, c-format
-msgid ""
-"You can turn it back on again by choosing \"%s\" -> \"%s\" in Printerdrake's "
-"main menu. "
-msgstr ""
-"Gallwch ei ailgychwyn drwy ddewis \"%s\" -> \"%s\" ym mhrif ddewislen "
-"Printerdrake."
-
-#: printer/printerdrake.pm:1112 printer/printerdrake.pm:4984
-#, c-format
-msgid "Configure Auto Administration"
-msgstr "Ffurfweddu Awto Gweinyddiad"
-
-#: printer/printerdrake.pm:1113
-#, c-format
-msgid ""
-"There you can also choose in which situation automatic printer setup is done "
-"(On Printerdrake startup, on printing system startup, when connecting a new "
-"USB printer)."
-msgstr ""
-"Yno gallwch hefyd ddewis o dan ba amgylchiad y bydd gosod argraffydd yn "
-"awtomatig yn cael ei gyflawni. (Wrth gychwyn Printerdrake, wrth gychwyn y "
-"system argraffu, wrth gysylltu argraffydd USB newydd)."
-
-#: printer/printerdrake.pm:1261 printer/printerdrake.pm:1273
-#: printer/printerdrake.pm:1380 printer/printerdrake.pm:2401
-#: printer/printerdrake.pm:2460 printer/printerdrake.pm:2556
-#: printer/printerdrake.pm:4951 printer/printerdrake.pm:5138
-#, c-format
-msgid "Add a new printer"
-msgstr "Ychwanegu argraffydd newydd"
-
-#: printer/printerdrake.pm:1262
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-" Croeso i'r Dewin Gosod Argraffydd\n"
-"\n"
-"Mae'r dewin yn caniatáu i chi osod argraffyddion lleol neu bell i'w "
-"defnyddio o'r peiriant hwn a hefyd gan argraffyddion eraill ar eich "
-"rhwydwaith.\n"
-"\n"
-"Bydd yn gofyn am yr holl wybodaeth angenrheidiol i osod yr argraffydd a bydd "
-"yn rhoi mynediad i'r holl yrwyr argraffyddion sydd ar gael, dewisiadau "
-"gyrwyr a mathau o gysylltiadau argraffyddion."
-
-#: printer/printerdrake.pm:1275
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected. Also your network printer(s) and your Windows "
-"machines must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you do not "
-"need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Croeso i'r Dewin Gosod Argraffydd\n"
-"\n"
-"Bydd y dewin yn eich cynorthwyo i osod argraffydd(ion) sydd wedi eu cysylltu "
-"â'r cyfrifiadur hwn,yn gysylltiedig â'r rhwydwaith neu i beiriant Windows "
-"pell.\n"
-"\n"
-"Os oes gennych argraffydd(ion) yn gysylltiedig â'r peiriant, cysylltwch nhw "
-"â'r peiriant a'u troi nhw mlaen fel bod modd awtoganfod. Hefyd rhaid i "
-"argraffydd(ion) rhwydwaith a'ch peiriannau Windows fod wedi eu cysylltu ac "
-"ymlaen.\n"
-"\n"
-"Sylwer bod awtoganfod argraffyddion ar rwydwaith yn cymryd mwy o amser nag "
-"awtoganfod argraffyddion sy'n gysylltiedig â'r peiriant hwn. Felly, "
-"diffoddwch awto ganfod rhwydwaith pan nad oes mo'i angen.\n"
-"\n"
-"Cliciwch \"Nesaf\" pan ydych yn barod, a \"Diddymu\" os nad ydych am osod "
-"eich argraffydd(ion) ar hyn o bryd."
-
-#: printer/printerdrake.pm:1284
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Croeso i'r Dewin Gosod Argraffydd\n"
-"\n"
-"Bydd y dewin yn eich cynorthwyo i osod argraffydd(ion) sydd wedi eu cysylltu "
-"â'r cyfrifiadur hwn,\n"
-"\n"
-"Os oes gennych argraffydd(ion) yn gysylltiedig â'r peiriant, cysylltwch nhw "
-"â'r peiriant a'u troi nhw mlaen fel bod modd awtoganfod.\n"
-"\n"
-"Cliciwch \"Nesaf\" pan ydych yn barod, a \"Diddymu\" os nad ydych am osod "
-"eich argraffydd(ion) ar hyn o bryd."
-
-#: printer/printerdrake.pm:1292
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you do not need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Croeso i'r Dewin Gosod Argraffydd\n"
-"\n"
-"Bydd y dewin yn eich cynorthwyo i osod argraffydd(ion) sydd wedi eu cysylltu "
-"â'r cyfrifiadur hwn, yn gysylltiedig â'r rhwydwaith.\n"
-"\n"
-"Os oes gennych argraffydd(ion) yn gysylltiedig â'r peiriant, cysylltwch nhw "
-"â'r peiriant a'u troi nhw mlaen fel bod modd awtoganfod. Hefyd rhaid i "
-"argraffydd(ion) rhwydwaith a'ch peiriannau Windows fod wedi eu cysylltu ac "
-"ymlaen.\n"
-"\n"
-"Sylwer bod awtoganfod argraffyddion ar rwydwaith yn cymryd mwy o amser nag "
-"awtoganfod argraffyddion sy'n gysylltiedig â'r peiriant hwn. Felly, "
-"diffoddwch awto ganfod rhwydwaith pan nad oes mo'i angen.\n"
-"\n"
-"Cliciwch \"Nesaf\" pan ydych yn barod, a \"Diddymu\" os nad ydych am osod "
-"eich argraffydd(ion) ar hyn o bryd."
-
-#: printer/printerdrake.pm:1301
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Croeso i'r Dewin Gosod Argraffydd\n"
-"\n"
-"Bydd y dewin yn eich cynorthwyo i osod argraffydd(ion) sydd wedi eu cysylltu "
-"â'r cyfrifiadur hwn,\n"
-"\n"
-"Os oes gennych argraffydd(ion) yn gysylltiedig â'r peiriant, cysylltwch nhw "
-"â'r peiriant a'u troi nhw mlaen fel bod modd awtoganfod.\n"
-"\n"
-"Cliciwch \"Nesaf\" pan ydych yn barod, a \"Diddymu\" os nad ydych am osod "
-"eich argraffydd(ion) ar hyn o bryd."
-
-#: printer/printerdrake.pm:1352
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Awto ganfod argraffyddion sy'n gysylltiedig â'r peiriant hwn"
-
-#: printer/printerdrake.pm:1355
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr ""
-"Awtoganfod argraffyddion sy'n gysylltiedig yn uniongyrchol â'r rhwydwaith "
-"lleol"
-
-#: printer/printerdrake.pm:1358
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
-"Awtoganfod argraffyddion sy'n gysylltiedig â pheiriannau'n rhedeg Microsoft "
-"Windows"
-
-#: printer/printerdrake.pm:1361
-#, c-format
-msgid "No auto-detection"
-msgstr "Dim awtoganfod"
-
-#: printer/printerdrake.pm:1381
-#, c-format
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the %s Control Center."
-msgstr ""
-"\n"
-"Llongyfarchiadau, mae eich argraffydd wedi ei osod a'i ffurfweddu!\n"
-"\n"
-"Mae modd argraffu gan ddefnyddio gorchymyn \"Argraffu\" eich rhaglen (fel "
-"rheol yn newislen \"Ffeil\").\n"
-"\n"
-"Os ydych am ychwanegu, tynnu neu ailenwi argraffydd, neu os ydych am newid y "
-"gosodiadau dewis rhagosodedig (mewnflwch papur, ansawdd yr argraffu...), "
-"dewiswch \"Argraffydd\" yn adran \"Caledwedd\" Canolfan Rheoli %s."
-
-#: printer/printerdrake.pm:1417 printer/printerdrake.pm:1641
-#: printer/printerdrake.pm:1704 printer/printerdrake.pm:1796
-#: printer/printerdrake.pm:1934 printer/printerdrake.pm:2010
-#: printer/printerdrake.pm:2177 printer/printerdrake.pm:2268
-#: printer/printerdrake.pm:2277 printer/printerdrake.pm:2286
-#: printer/printerdrake.pm:2297 printer/printerdrake.pm:2496
-#: printer/printerdrake.pm:2633
-#, c-format
-msgid "Could not install the %s packages!"
-msgstr "Methu gosod pecynnau: %s!"
-
-#: printer/printerdrake.pm:1419
-#, c-format
-msgid "Skipping Windows/SMB server auto-detection"
-msgstr "Osgoi awto ganfod gweinydd Windows/SMB"
-
-#: printer/printerdrake.pm:1425 printer/printerdrake.pm:1564
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Awto ganfod argraffydd"
-
-#: printer/printerdrake.pm:1425
-#, c-format
-msgid "Detecting devices..."
-msgstr "Canfod dyfeisiau..."
-
-#: printer/printerdrake.pm:1451
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", rhwydwaith argraffu \"%s\", porth %s"
-
-#: printer/printerdrake.pm:1454
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", argraffydd \"%s\" ar weinydd SMB/Windows \"%s\""
-
-#: printer/printerdrake.pm:1458
-#, c-format
-msgid "Detected %s"
-msgstr "Canfuwyd %s"
-
-#: printer/printerdrake.pm:1463 printer/printerdrake.pm:1490
-#: printer/printerdrake.pm:1505
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Argraffydd ar borth paralel #\"%s"
-
-#: printer/printerdrake.pm:1469
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Argraffydd rhwydwaith \"%s\", porth %s"
-
-#: printer/printerdrake.pm:1472
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Argraffydd \"%s\" ar weinydd SMB/Windows \"%s\""
-
-#: printer/printerdrake.pm:1550
-#, c-format
-msgid "Local Printer"
-msgstr "Argraffydd Lleol"
-
-#: printer/printerdrake.pm:1551
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Heb ganfod argraffydd lleol! I osod argraffydd gyda llaw, rhowch enw'r "
-"ddyfais /enw ffeil ar y llinell mewnbwn (Porth Paralel: /dev/lp0, /"
-"dev/,...., cyfatebol i LPT1:, LPT2,..., argraffydd USB 1af: /dev/usb/lp0, "
-"ail argraffydd USB: /dev/usb/lp1,...)."
-
-#: printer/printerdrake.pm:1555
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Rhaid cynnig enw dyfais neu ffeil!"
-
-#: printer/printerdrake.pm:1565
-#, c-format
-msgid "No printer found!"
-msgstr "Heb ganfod argraffydd!"
-
-#: printer/printerdrake.pm:1573
-#, c-format
-msgid "Local Printers"
-msgstr "Argraffyddion Lleol"
-
-#: printer/printerdrake.pm:1574
-#, c-format
-msgid "Available printers"
-msgstr "Argraffyddion ar gael"
-
-#: printer/printerdrake.pm:1578 printer/printerdrake.pm:1587
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Mae'r argraffydd canlynol wedi ei awtoganfod"
-
-#: printer/printerdrake.pm:1580
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
-"Os nad hwn yw'r un rydych am ei ffurfweddu, rhowch enw dyfais/enw ffeil ar y "
-"llinell mewnbwn."
-
-#: printer/printerdrake.pm:1581
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr "Yn lle hynny, rhowch enw dyfais/ffeil ar y llinell mewnbwn"
-
-#: printer/printerdrake.pm:1582 printer/printerdrake.pm:1591
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Dyma restr o argraffyddion wedi eu awtoganfod."
-
-#: printer/printerdrake.pm:1584
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
-msgstr ""
-"Dewiswch yr argraffydd i'w osod neu rhowch enw dyfais/ffeil ar y llinell "
-"mewnbwn"
-
-#: printer/printerdrake.pm:1585
-#, c-format
-msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-"Dewiswch yr argraffydd i drin y gwaith argraffu neu rhowch enw dyfais/ffeil "
-"ar y llinell mewnbwn"
-
-#: printer/printerdrake.pm:1589
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Bydd ffurfweddi'r argraffydd yn digwydd yn awtomatig. Os na chafodd eich "
-"argraffydd ei ganfod yn gywir neu byddai'n well gennych ffurfweddiad unigryw "
-"i'ch argraffydd, cychwynnwch \"Ffurfweddiad gyda Llaw\"."
-
-#: printer/printerdrake.pm:1590
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Does dim dewis arall ar gael ar hyn o bryd"
-
-#: printer/printerdrake.pm:1593
-#, c-format
-msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
-msgstr ""
-"Dewiswch yr argraffydd rydych am ei osod. Bydd ffurfweddu'r argraffydd yn "
-"digwydd yn awtomatig. Os na chafodd eich argraffydd ei ganfod yn gywir neu "
-"byddai'n well gennych ffurfweddiad unigryw i'ch argraffydd, cychwynnwch "
-"\"Ffurfweddiad gyda Llaw\"."
-
-#: printer/printerdrake.pm:1594
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Dewiswch yr argraffydd i drin y gwaith argraffu."
-
-#: printer/printerdrake.pm:1596
-#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Dewiswch y porth y mae eich argraffydd wedi cysylltu iddo neu rhowch enw "
-"dyfais/ffeil ar y llinell mewnbwn"
-
-#: printer/printerdrake.pm:1597
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Dewiswch y porth mae'r argraffydd wedi cysylltu iddo."
-
-#: printer/printerdrake.pm:1599
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Pyrth paralel: /dev/lp0, /dev/lp1, ..., yn cyfateb i LPT1:, LPT2:, ..., "
-"argraffydd USB cyntaf: /dev/usb/lp0, ail argraffydd USB : /dev/usb/lp1, ...)."
-
-#: printer/printerdrake.pm:1603
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Rhaid dewis/rhoi argraffydd/dyfais!"
-
-#: printer/printerdrake.pm:1643 printer/printerdrake.pm:1706
-#: printer/printerdrake.pm:1798 printer/printerdrake.pm:1936
-#: printer/printerdrake.pm:2012 printer/printerdrake.pm:2179
-#: printer/printerdrake.pm:2270 printer/printerdrake.pm:2279
-#: printer/printerdrake.pm:2288 printer/printerdrake.pm:2299
-#, c-format
-msgid "Aborting"
-msgstr "Atal"
-
-#: printer/printerdrake.pm:1679
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Dewisiadau Argraffydd lpd Pell"
-
-#: printer/printerdrake.pm:1680
-#, c-format
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"I ddefnyddio argraffydd lpd pell, rhaid darparu enw gwesteiwr gweinydd yr "
-"argraffydd ac enw'r argraffydd ar y gweinydd hwnnw."
-
-#: printer/printerdrake.pm:1681
-#, c-format
-msgid "Remote host name"
-msgstr "Enw gwesteiwr pell"
-
-#: printer/printerdrake.pm:1682
-#, c-format
-msgid "Remote printer name"
-msgstr "Enw'r argraffydd pell"
-
-#: printer/printerdrake.pm:1685
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Mae enw'r gwesteiwr pell ar goll!"
-
-#: printer/printerdrake.pm:1689
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Mae enw'r argraffydd pell ar goll!"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318 standalone/drakTermServ:475
-#: standalone/drakTermServ:807 standalone/drakTermServ:823
-#: standalone/drakTermServ:1653 standalone/drakTermServ:1662
-#: standalone/drakTermServ:1676 standalone/drakbackup:512
-#: standalone/drakbackup:618 standalone/drakbackup:653
-#: standalone/drakbackup:754 standalone/draknfs:203
-#: standalone/draksambashare:627 standalone/draksambashare:794
-#: standalone/harddrake2:275
-#, c-format
-msgid "Information"
-msgstr "Gwybodaeth"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Canfuwyd model %s %s"
-
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Scanning network..."
-msgstr "Chwilio'r rhwydwaith..."
-
-#: printer/printerdrake.pm:1814 printer/printerdrake.pm:1835
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", argraffydd \"%s\" ar weinydd \"%s\""
-
-#: printer/printerdrake.pm:1817 printer/printerdrake.pm:1838
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Argraffydd \"%s\" ar weinydd \"%s\""
-
-#: printer/printerdrake.pm:1859
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Dewisiadau Argraffydd SMB (Windows 9x/NT)"
-
-#: printer/printerdrake.pm:1860
-#, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"I argraffu i argraffydd SMB, rhaid darparu enw gwesteiwr SMB (Sylwer! Mi all "
-"fod yn wahanol i'w enw gwesteiwr TCP/IP!) ac o bosibl cyfeiriad IP'r "
-"gweinydd argraffu, yn ogystal â'r enw rhannu ar gyfer yr argraffydd rydych "
-"am gael mynediad iddo ac unrhyw enw defnyddiwr, cyfrinair a gwybodaeth am "
-"grŵp gwaith perthynol."
-
-#: printer/printerdrake.pm:1861
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-"Os cafodd yr argraffydd ei awtoganfod, dewiswch ef o'r rhestr ac ychwanegu "
-"enw defnyddiwr, cyfrinair a/neu grŵp gwaith yn ôl yr angen."
-
-#: printer/printerdrake.pm:1863
-#, c-format
-msgid "SMB server host"
-msgstr "Gweinydd gwesteiwr SMB"
-
-#: printer/printerdrake.pm:1864
-#, c-format
-msgid "SMB server IP"
-msgstr "IP Gweinydd SMB"
-
-#: printer/printerdrake.pm:1865 standalone/draksambashare:67
-#, c-format
-msgid "Share name"
-msgstr "Rhannu enw"
-
-#: printer/printerdrake.pm:1868
-#, c-format
-msgid "Workgroup"
-msgstr "Grŵp gwaith"
-
-#: printer/printerdrake.pm:1870
-#, c-format
-msgid "Auto-detected"
-msgstr "Awto ganfod"
-
-#: printer/printerdrake.pm:1880
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Rhaid rhoi un ai enw'r gweinydd neu IP'r gweinydd!"
-
-#: printer/printerdrake.pm:1884
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Mae enw rhannu Samba ar goll!"
-
-#: printer/printerdrake.pm:1890
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "RHYBUDD DIOGELWCH!"
-
-#: printer/printerdrake.pm:1891
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Rydych ar fin gosod y modd i argraffu i gyfrif Windows gyda chyfrinair. "
-"Oherwydd gwall ym mhensaernïaeth meddalwedd cleient Samba mae'r cyfrinair yn "
-"cael ei osod mewn testun plaen ar y llinell orchymyn y cleient Samba sy'n "
-"cael ei ddefnyddio i anfon gwaith argraffu i'r gweinydd Windows. Felly mae'n "
-"bosibl i bob defnyddiwr ar y peiriant i arddangos y cyfrinair ar y sgrin "
-"drwy'r gorchymyn \"ps auxwww\".\n"
-"\n"
-"Rydym yn argymell eich bod yn defnyddio un o'r dulliau gwahanol hyn (yn yr "
-"holl achosion hyn, rhaid i chi wneud yn siŵr mae dim ond peiriannau o'ch "
-"rhwydwaith lleol chi sydd â mynediad i'ch gweinydd Windows, e.e. drwy "
-"gyfrwng mur cadarn).\n"
-"\n"
-"Defnyddio cyfrif heb gyfrinair ar eich gweinydd Windows, defnyddio cyfrif "
-"\"Ymwelydd\" neu gyfrif arbennig ar gyfer argraffu. Peidiwch tynnu eich "
-"amddiffyniad cyfrinair o gyfrif personol na'r cyfrif gweinyddwr.\n"
-"\n"
-"Gosod eich gweinydd Windows i wneud yr argraffydd ar gael o dan brotocol "
-"LPD. Yna gosod argraffu o'r peiriant hwn gyda chyswllt \"%s\" yn "
-"Printerdrake.\n"
-"\n"
-
-#: printer/printerdrake.pm:1901
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Gosod eich gweinydd Windows i wneud yr argraffydd ar gael o dan brotocol IPP "
-"a gosod argraffu o'r peiriant hwn gyda'r \"%s\" yn Printerdrake.\n"
-"\n"
-
-#: printer/printerdrake.pm:1904
-#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-"Cysylltu eich argraffydd i weinydd Linux a gadael i'ch peiriant/peiriannau "
-"Windows gysylltu iddo fel cleient.\n"
-"\n"
-"Ydych chi am barhau i osod yr argraffydd hwn?"
-
-#: printer/printerdrake.pm:1983
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "Dewisiadau Argraffydd NetWare"
-
-#: printer/printerdrake.pm:1984
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"I argraffu ar argraffydd NetWare, rhaid i chi roi enw gweinydd argraffu "
-"NetWare (Sylwer! Gall fod yn wahanol i'w enw gwesteiwr TCP/IP) yn ogystal "
-"â'r rhes waith argraffu am yr argraffydd rydych am gael mynediad iddo ac "
-"unrhyw enw defnyddiwr a chyfrinair perthnasol."
-
-#: printer/printerdrake.pm:1985
-#, c-format
-msgid "Printer Server"
-msgstr "Gweinydd Argraffydd"
-
-#: printer/printerdrake.pm:1986
-#, c-format
-msgid "Print Queue Name"
-msgstr "Enw Rhes Argraffu"
-
-#: printer/printerdrake.pm:1991
-#, c-format
-msgid "NCP server name missing!"
-msgstr "Mae enw gweinydd NCP ar goll!"
-
-#: printer/printerdrake.pm:1995
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "Mae enw rhes NCP ar goll"
-
-#: printer/printerdrake.pm:2076 printer/printerdrake.pm:2097
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", gwesteiwr \"%s\", porth %s"
-
-#: printer/printerdrake.pm:2079 printer/printerdrake.pm:2100
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr ",Gwesteiwr \"%s\", porth %s"
-
-#: printer/printerdrake.pm:2122
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "Dewisiadau Argraffydd TCP/Soced"
-
-#: printer/printerdrake.pm:2124
-#, c-format
-msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
-msgstr ""
-"Dewiswch un o'r argraffyddion sydd wedi eu awtoganfod o'r rhestr neu rhowch "
-"yr enw gwesteiwr neu IP a'r rhif porth dewisol (9100 yw'r rhagosodedig) i'r "
-"meysydd mewnbwn."
-
-#: printer/printerdrake.pm:2125
-#, c-format
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
-msgstr ""
-"I argraffu i argraffydd TCP neu soced, rhaid i chi ddarparu enw gwesteiwr "
-"neu IP'r argraffydd ac yn ddewisol rhif y porth (Y rhagosodedig yw 9100). Ar "
-"weinyddion HP JetDirect rhif y porth, fel rheol, yw 9100, gall amrywio ar "
-"weinyddion eraill. Gweler llawlyfr eich caledwedd"
-
-#: printer/printerdrake.pm:2129
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Mae enw'r gwesteiwr argraffu neu IP ar goll!"
-
-#: printer/printerdrake.pm:2158
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Enw'r gwesteiwr neu IP yr argraffydd"
-
-#: printer/printerdrake.pm:2221
-#, c-format
-msgid "Refreshing Device URI list..."
-msgstr "Adnewyddu rhestr Dyfais URI..."
-
-#: printer/printerdrake.pm:2224 printer/printerdrake.pm:2226
-#, c-format
-msgid "Printer Device URI"
-msgstr "URI Dyfais Argraffu"
-
-#: printer/printerdrake.pm:2225
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Gallwch enwi'n benodol URI i gael mynediad i'r argraffydd. Rhaid i'r URI "
-"gyflawni manylyn un ai CUPS neu Foomatic. Sylwer nad yw pob math o URI cyn "
-"cael eu cynnal gan bob sbwlydd ."
-
-#: printer/printerdrake.pm:2249
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Rhaid cynnig URI dilys!"
-
-#: printer/printerdrake.pm:2354
-#, c-format
-msgid "Pipe into command"
-msgstr "Peipio i orchymyn"
-
-#: printer/printerdrake.pm:2355
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-"Yma gallwch bennu unrhyw fan lle dylid cyfeirio'r gwaith yn lle ei anfon at "
-"yr argraffydd."
-
-#: printer/printerdrake.pm:2356
-#, c-format
-msgid "Command line"
-msgstr "Llinell orchymyn"
-
-#: printer/printerdrake.pm:2360
-#, c-format
-msgid "A command line must be entered!"
-msgstr "Rhaid rhoi llinell gorchymyn!"
-
-#: printer/printerdrake.pm:2402
-#, c-format
-msgid "Your printer %s is currently connected %s."
-msgstr "Mae eich argraffydd %s wedi ei gysylltu i %s."
-
-#: printer/printerdrake.pm:2404 printer/printerdrake.pm:2411
-#, c-format
-msgid "to a parallel port"
-msgstr "i borth paralel"
-
-#: printer/printerdrake.pm:2405 printer/printerdrake.pm:2412
-#, c-format
-msgid "to the USB"
-msgstr "i'r USB"
-
-#: printer/printerdrake.pm:2406 printer/printerdrake.pm:2413
-#, c-format
-msgid "via the network"
-msgstr "drwy'r rhwydwaith"
-
-#: printer/printerdrake.pm:2407
-#, c-format
-msgid "This type of connection is currently not fully supported by HPLIP."
-msgstr "Nid yw'r math yma o gysylltiad wedi ei lwyr gynnal gan HPLI."
-
-#: printer/printerdrake.pm:2409
-#, c-format
-msgid "You get full HPLIP support for your device if you connect it "
-msgstr "Byddwch yn cael cefnogaeth HPLIP llawn os wnewch ei gysylltu"
-
-#: printer/printerdrake.pm:2415
-#, c-format
-msgid ""
-"You can now set up your device with HPLIP anyway (works in many cases), "
-msgstr ""
-"Gallwch gysylltu eich dyfais gyda HPLIP beth bynnag (gweithio mewn llawer "
-"achos)"
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "set it up without HPLIP (print-only), "
-msgstr "ei osod heb HPLIP (argraffu'n unig)"
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "or"
-msgstr "neu"
-
-#: printer/printerdrake.pm:2417
-#, c-format
-msgid "cancel the setup (for example to reconnect your device)."
-msgstr "diddymu'r gosod (e.e. i ail gysylltu'r ddyfais)"
-
-#: printer/printerdrake.pm:2419
-#, c-format
-msgid ""
-"You can always revise your choice by clicking your printer's entry in the "
-"main window, "
-msgstr ""
-"Mae modd adolygu eich dewis drwy glicio ar gofnod eich argraffydd yn y brif "
-"ffenestr."
-
-#: printer/printerdrake.pm:2420
-#, c-format
-msgid "clicking the \"%s\" button, "
-msgstr "clicio botwm \"%s\" , "
-
-#. -PO: "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: printer/printerdrake.pm:2420 standalone/drakperm:124 standalone/drakups:300
-#: standalone/drakups:360 standalone/drakups:380 standalone/drakvpn:319
-#: standalone/drakvpn:680 standalone/printerdrake:245
-#, c-format
-msgid "Edit"
-msgstr "Golygu"
-
-#: printer/printerdrake.pm:2421
-#, c-format
-msgid "and choosing \"%s\"."
-msgstr "a dewis \"%s\"."
-
-#: printer/printerdrake.pm:2421 printer/printerdrake.pm:5334
-#: printer/printerdrake.pm:5394
-#, c-format
-msgid "Printer connection type"
-msgstr "Math o gyswllt argraffydd"
-
-#: printer/printerdrake.pm:2423 standalone/logdrake:408
-#, c-format
-msgid "What do you want to do?"
-msgstr "Beth hoffech chi ei wneud?"
-
-#: printer/printerdrake.pm:2424 printer/printerdrake.pm:2428
-#, c-format
-msgid "Set up with HPLIP"
-msgstr "Gosod gyda HPLIP"
-
-#: printer/printerdrake.pm:2425 printer/printerdrake.pm:2427
-#: printer/printerdrake.pm:2430
-#, c-format
-msgid "Set up without HPLIP"
-msgstr "Gosod heb HPLIP"
-
-#: printer/printerdrake.pm:2461
-#, c-format
-msgid ""
-"On many HP printers there are special functions available, maintenance (ink "
-"level checking, nozzle cleaning. head alignment, ...) on all not too old "
-"inkjets, scanning on multi-function devices, and memory card access on "
-"printers with card readers. "
-msgstr ""
-"Ar lawer o argraffyddion HP mae yna swyddogaethau arbennig ar gael, cynnal "
-"(gwirio lefel yr inc, glanhau ffroenell, alinio'r pen...) ar inkjets gweddol "
-"ddiweddar, sganio ar ddyfeisiau amlbwrpas, a mynediad at gardiau cof ar "
-"argraffyddion gyda darllenwyr cardiau cof."
-
-#: printer/printerdrake.pm:2463
-#, c-format
-msgid ""
-"To access these extra functions on HP printers they must be set up with "
-"HPLIP (HP Linux Imaging and Printing). "
-msgstr ""
-"I gael mynediad at y swyddogaethau ychwanegol hyn ar eich argraffydd HP, "
-"rhaid ei fod wedi ei osod gyda HPLIP (HP Linux Imaging and Printing). "
-
-#: printer/printerdrake.pm:2465
-#, c-format
-msgid "Do you want to use HPLIP (choose \"No\" for non-HP printers)? "
-msgstr "Hoffech chi ddefnyddio HPLIP (dewis \"Na\" ar gyfer rhai heblaw HP)?"
-
-#: printer/printerdrake.pm:2491
-#, c-format
-msgid "Installing %s package..."
-msgstr "Gosod pecyn %s..."
-
-#: printer/printerdrake.pm:2491 printer/printerdrake.pm:2497
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "HPLIP"
-msgstr "HPLIP"
-
-#: printer/printerdrake.pm:2498
-#, c-format
-msgid "Only printing will be possible on the %s."
-msgstr "Dim ond argraffu bydd yn bosibl ar %s."
-
-#: printer/printerdrake.pm:2513
-#, c-format
-msgid "Could not remove your old HPOJ configuration file %s for your %s! "
-msgstr "Methwyd tynnu eich hen ffeil ffurfweddiad HPOJ %s o'ch %s!"
-
-#: printer/printerdrake.pm:2515
-#, c-format
-msgid "Please remove the file manually and restart HPOJ."
-msgstr "Tynnwch y ffeil gyda llaw ac ailgychwyn HPLIP"
-
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "Checking device and configuring %s..."
-msgstr "Gwirio'r ddyfais a ffurfweddu %s..."
-
-#: printer/printerdrake.pm:2557
-#, c-format
-msgid "Which printer do you want to set up with HPLIP?"
-msgstr "Pa argraffydd hoffech ei osod gyda HPLIP?"
-
-#: printer/printerdrake.pm:2576
-#, c-format
-msgid "HPLIP was not able to communicate with the chosen printer!"
-msgstr "Nid oedd HPLIP yn gallu cyfathrebu gyda'r argraffydd!"
-
-#: printer/printerdrake.pm:2577 printer/printerdrake.pm:2584
-#, c-format
-msgid "Setting up the printer without HPLIP..."
-msgstr "Gosod yr argraffydd heb HPLIP..."
-
-#: printer/printerdrake.pm:2583
-#, c-format
-msgid ""
-"HPLIP did not find any local printers (Parallel, USB) which it supports!"
-msgstr ""
-"Nid yw HPLIP wedi canfod unrhyw argraffydd lleol (Paralel, USB) mae'n ei "
-"gynnal!"
-
-#: printer/printerdrake.pm:2622
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "Gosod pecynnau SANE..."
-
-#: printer/printerdrake.pm:2635
-#, c-format
-msgid "Scanning on the %s will not be possible."
-msgstr "Ni fydd sganio'n bosibl ar %s"
-
-#: printer/printerdrake.pm:2650
-#, c-format
-msgid "Using and Maintaining your %s"
-msgstr "Defnyddio a Chynnal eich %s"
-
-#: printer/printerdrake.pm:2664
-#, c-format
-msgid "Configuring device..."
-msgstr "Ffurfweddu dyfais..."
-
-#: printer/printerdrake.pm:2701
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Gwneud porth argraffu ar gael ar gyfer CUPS..."
-
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2985
-#: printer/printerdrake.pm:3138
-#, c-format
-msgid "Reading printer database..."
-msgstr "Darllen cronfa ddata argraffydd..."
-
-#: printer/printerdrake.pm:2943
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Rhowch Enw'r Argraffydd a Sylw"
-
-#: printer/printerdrake.pm:2947 printer/printerdrake.pm:4206
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"Dylai enw'r argraffydd gynnwys llythrennau, rhifau a'r tanlinellu, yn unig"
-
-#: printer/printerdrake.pm:2953 printer/printerdrake.pm:4211
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Mae argraffydd \"%s\" yn bodoli eisoes,\n"
-"ydych chi wir eisiau ailysgrifennu ei ffurfweddiad?"
-
-#: printer/printerdrake.pm:2960
-#, c-format
-msgid ""
-"The printer name \"%s\" has more than 12 characters which can make the "
-"printer unaccessible from Windows clients. Do you really want to use this "
-"name?"
-msgstr ""
-"Mae gan enw argraffydd \"%s\" yn fwy na 12 nod. Gall hyn ei wneud yn "
-"amhosib cael mynediad o raglenni Windows. Ydych chi wir am ddefnyddio'r enw "
-"hwnnw?"
-
-#: printer/printerdrake.pm:2969
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Mae pob argraffydd angen enw (e.e. \"argraffydd\". Nid oes angen llanw "
-"meysydd Disgrifiad a Lleoliad. Lle ar gyfer sylwadau'r defnyddiwr sydd yma."
-
-#: printer/printerdrake.pm:2970
-#, c-format
-msgid "Name of printer"
-msgstr "Enw'r argraffydd"
-
-#: printer/printerdrake.pm:2971 standalone/drakconnect:592
-#: standalone/harddrake2:39 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Description"
-msgstr "Disgrifiad"
-
-#: printer/printerdrake.pm:2972 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Location"
-msgstr "Lleoliad"
-
-#: printer/printerdrake.pm:2990
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Paratoi cronfa ddata argraffydd..."
-
-#: printer/printerdrake.pm:3116
-#, c-format
-msgid "Your printer model"
-msgstr "Model eich argraffydd"
-
-#: printer/printerdrake.pm:3117
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"Mae Printerdrake wedi cymharu'r enw model yn sgil yr awto ganfod gyda'r "
-"modelau sy'n cael eu rhestri yn ei gronfa ddata i gael y ffurfweddiad gorau. "
-"Gall y dewis fod yn anghywir, yn arbennig os nad yw eich argraffydd yn cael "
-"ei enwi yn y gronfa ddata. Felly, edrychwch i weld â yw'r dewis yn gywir a "
-"chliciwch \"Model cywir\" os yw ac os nad yw, cliciwch \" Dewiswch y model "
-"gyda llaw\" fel bo modd i chi ddewis eich argraffydd gyda llaw ar y sgrin "
-"nesaf.\n"
-"\n"
-"Ar gyfer eich argraffydd mae Printerdrake wedi canfod\n"
-"\n"
-"%s"
-
-#: printer/printerdrake.pm:3122 printer/printerdrake.pm:3125
-#, c-format
-msgid "The model is correct"
-msgstr "Mae'r model yn gywir"
-
-#: printer/printerdrake.pm:3123 printer/printerdrake.pm:3124
-#: printer/printerdrake.pm:3127
-#, c-format
-msgid "Select model manually"
-msgstr "Dewiswch y model gyda llaw"
-
-#: printer/printerdrake.pm:3151
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
-msgstr ""
-"\n"
-"\n"
-"Gwiriwch os yw Printerdrake wedi awto ganfod eich argraffydd yn gywir. "
-"Chwiliwch am y model cywir pan fo'r cyrchwr yn sefyll ar y model anghywir "
-"neu ar \"Argraffydd bras\"."
-
-#: printer/printerdrake.pm:3170
-#, c-format
-msgid "Install a manufacturer-supplied PPD file"
-msgstr "Gosod ffeil PPD gan y cynhyrchwyr"
-
-#: printer/printerdrake.pm:3202
-#, c-format
-msgid ""
-"Every PostScript printer is delivered with a PPD file which describes the "
-"printer's options and features."
-msgstr ""
-"Mae pob argraffydd PostSgript yn cael ei ddarparu gyda ffeil PPD sy'n "
-"disgrifio dewisiadau a nodweddion yr argraffydd."
-
-#: printer/printerdrake.pm:3203
-#, c-format
-msgid ""
-"This file is usually somewhere on the CD with the Windows and Mac drivers "
-"delivered with the printer."
-msgstr ""
-"Fel rheol mae'r ffeil ar CD sy'n cynnwys gyrwyr Windows a Mac sy'n dod "
-"gyda'r argraffydd."
-
-#: printer/printerdrake.pm:3204
-#, c-format
-msgid "You can find the PPD files also on the manufacturer's web sites."
-msgstr "Gallwch ganfod y ffeiliau PPD ar safle gwe'r gwneuthurwr."
-
-#: printer/printerdrake.pm:3205
-#, c-format
-msgid ""
-"If you have Windows installed on your machine, you can find the PPD file on "
-"your Windows partition, too."
-msgstr ""
-"Ow yw Windows wedi ei osod ar eich peiriant , mae'r ffeil PPD i'w gael ar "
-"eich rhaniad Windows, hefyd."
-
-#: printer/printerdrake.pm:3206
-#, c-format
-msgid ""
-"Installing the printer's PPD file and using it when setting up the printer "
-"makes all options of the printer available which are provided by the "
-"printer's hardware"
-msgstr ""
-"Mae gosod a defnyddio'r ffeil PPD wrth osod yr argraffydd am y tro cyntaf yn "
-"gwneud pob dewis ar gael sy'n cydweddu gyda chaledwedd yr argraffydd."
-
-#: printer/printerdrake.pm:3207
-#, c-format
-msgid ""
-"Here you can choose the PPD file to be installed on your machine, it will "
-"then be used for the setup of your printer."
-msgstr ""
-"Yma cewch ddewis y ffeil PPD i'w osod ar eich peiriant, i'w ddefnyddio ar "
-"gyfer gosod eith peiriant."
-
-#: printer/printerdrake.pm:3209
-#, c-format
-msgid "Install PPD file from"
-msgstr "Gosod ffeil PPD o"
-
-#: printer/printerdrake.pm:3212 printer/printerdrake.pm:3220
-#: standalone/scannerdrake:183 standalone/scannerdrake:192
-#: standalone/scannerdrake:242 standalone/scannerdrake:250
-#, c-format
-msgid "Floppy Disk"
-msgstr "Disg Meddal"
-
-#: printer/printerdrake.pm:3213 printer/printerdrake.pm:3222
-#: standalone/scannerdrake:184 standalone/scannerdrake:194
-#: standalone/scannerdrake:243 standalone/scannerdrake:252
-#, c-format
-msgid "Other place"
-msgstr "Man arall"
-
-#: printer/printerdrake.pm:3228
-#, c-format
-msgid "Select PPD file"
-msgstr "Dewis ffeil PPD"
-
-#: printer/printerdrake.pm:3232
-#, c-format
-msgid "The PPD file %s does not exist or is unreadable!"
-msgstr "Nid yw ffeil PPD %s yn bodoli neu nid yw'n ddarllenadwy!"
-
-#: printer/printerdrake.pm:3238
-#, c-format
-msgid "The PPD file %s does not conform with the PPD specifications!"
-msgstr "Nid yw'r ffeil PPD %s yn cyd-fynd â manyleb PPD!"
-
-#: printer/printerdrake.pm:3249
-#, c-format
-msgid "Installing PPD file..."
-msgstr "Gosod ffeil PPD..."
-
-#: printer/printerdrake.pm:3368
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "Ffurfweddiad OKI winprinter "
-
-#: printer/printerdrake.pm:3369
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"Rydych yn ffurfweddu winprinter laser OKI. Mae'r argraffydd hwn\n"
-"yn defnyddio protocol cyfathrebu arbennig. Dim ond trwy eu cysylltu â'r "
-"porth paralel cyntaf mae modd cael yr argraffydd hwn i weithio. Pan fo eich "
-"argraffydd wedi ei gysylltu i borth arall neu i flwch gweinydd argraffu, "
-"cysylltwch yr argraffydd i'r porth paralel cyntaf cyn argraffu tudalen "
-"brawf. Os na wnewch chi hynny, ni fydd yr argraffydd yn gweithio. Bydd eich "
-"gosodiad ynghylch y math o gysylltiad yn cael ei anwybyddu gan y gyrrwr."
-
-#: printer/printerdrake.pm:3394 printer/printerdrake.pm:3424
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Ffurfweddiad inkjet Lexmark"
-
-#: printer/printerdrake.pm:3395
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Mae'r gyrwyr argraffydd inkjet sydd wedi eu darparu gan Lexmark yn cynnal "
-"argraffyddion lleol, yn unig. Cysylltwch eich argraffydd i borth lleol neu "
-"ffurfweddwch ef i'r peiriant mae'n gysylltiedig ag ef."
-
-#: printer/printerdrake.pm:3425
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-"I fedru argraffu gyda eich argraffydd inkjet Lexmark a'r ffurfweddiad hwn, "
-"bydd angen gyrwyr argraffydd inkjet sydd wedi eu darparu gan Lexmark (http://"
-"www.lexmark.com/). Ewch i'w safle yn yr UDA a chliciwch ar y botwm \"Drivers"
-"\". Yna dewiswch eich model ac yna \"Linux\" fel system weithredu. Mae'r "
-"gyrwyr yn dod fel pecynnau RPM neu sgriptiau cragen gyda gosodiad graffigol "
-"rhyngweithiol. Nid oes angen i chi wneud y ffurfweddiad drwy'r wyneb "
-"graffigol. Diddymwch yn syth wedi'r cytundeb trwyddedu. Yna argraffwch "
-"dudalennau'r alinio'r pen argraffu gyda \"lexmarkmaintain\" a newid "
-"gosodiadau aliniad y pen gyda'r rhaglen."
-
-#: printer/printerdrake.pm:3435
-#, c-format
-msgid "Lexmark X125 configuration"
-msgstr "Ffurfweddiad Lexmark 125"
-
-#: printer/printerdrake.pm:3436
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes. Please connect "
-"your printer to a local USB port or configure it on the machine where it is "
-"connected to."
-msgstr ""
-"Mae'r gyrwyr argraffydd inkjet sydd wedi eu darparu gan Lexmark yn cynnal "
-"argraffyddion lleol, yn unig wedi eu cysylltu drwy USB, dim argraffyddion ar "
-"beiriannau pell na blychau gweinydd argraffu.. Cysylltwch eich argraffydd i "
-"borth USB lleol neu ei ffurfweddu i'r peiriant mae wedi ei gysylltu iddo."
-
-#: printer/printerdrake.pm:3458
-#, c-format
-msgid "Samsung ML/QL-85G configuration"
-msgstr "Ffurfweddiad Samsung ML/QL-85G"
-
-#: printer/printerdrake.pm:3459 printer/printerdrake.pm:3486
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected on the "
-"first parallel port, no printers on remote machines or print server boxes or "
-"on other parallel ports. Please connect your printer to the first parallel "
-"port or configure it on the machine where it is connected to."
-msgstr ""
-"Mae'r gyrwyr yr argraffydd yma'n cynnal argraffyddion lleol, yn unig wedi eu "
-"cysylltu drwy 'r porth paralel cyntaf, dim argraffyddion ar beiriannau pell "
-"na blychau gweinydd argraffu ar byrth parallel eraill. Cysylltwch eich "
-"argraffydd i'r porth paralel cyntaf neu ei ffurfweddu i'r peiriant mae wedi "
-"ei gysylltu iddo."
-
-#: printer/printerdrake.pm:3485
-#, c-format
-msgid "Canon LBP-460/660 configuration"
-msgstr "Ffurfweddiad Canon LBP-460/660"
-
-#: printer/printerdrake.pm:3512
-#, c-format
-msgid "Canon LBP-810/1120 (CAPT) configuration"
-msgstr "Ffurfweddiad Canon 810/1120 (CAPT"
-
-#: printer/printerdrake.pm:3513
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes or on the parallel "
-"port. Please connect your printer to the USB or configure it on the machine "
-"where it is directly connected to."
-msgstr ""
-"Mae'r gyrwyr argraffydd yma yn cynnal argraffyddion lleol wedi eu cysylltu "
-"drwy USB yn unig, dim argraffyddion ar beiriannau pell, blychau gweinydd "
-"argraffu nac ar byrth paralel. Cysylltwch eich argraffydd i borth USB neu ei "
-"ffurfweddu i beiriant mae wedi ei gysylltu iddo."
-
-#: printer/printerdrake.pm:3520
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "Llwytho Cadarnwedd i Fyny ar gyfer HP LaserJet 1000"
-
-#: printer/printerdrake.pm:3670
-#, c-format
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Gosodiadau rhagosodedig yr argraffydd\n"
-"\n"
-"Dylech wneud yn siwr fod maint y dudalen a'r modd math inc/argraffu (os ar "
-"gael) a hefyd bod ffurfweddiad caledwedd argraffyddion laser (cof, uned "
-"ddeublyg, blychau papur ychwanego) wedi eu gosod yn gywir. Sylwer bod fod "
-"argraffiad ansawdd/cydraniad uchel iawn yn gallu arafu'r argraffu'n "
-"sylweddol.."
-
-#: printer/printerdrake.pm:3795
-#, c-format
-msgid "Printer default settings"
-msgstr "Gosod yr Argraffydd Rhagosodedig"
-
-#: printer/printerdrake.pm:3802
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Rhaid i ddewis %s fod yn gyfanrif"
-
-#: printer/printerdrake.pm:3806
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Rhaid i ddewis %s fod yn rhif!"
-
-#: printer/printerdrake.pm:3810
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Dewis %s allan o amrediad!"
-
-#: printer/printerdrake.pm:3862
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Ydych chi am osod argraffydd (\"%s\")\n"
-"fel yr argraffydd rhagosodedig?"
-
-#: printer/printerdrake.pm:3878
-#, c-format
-msgid "Test pages"
-msgstr "Tudalennau prawf"
-
-#: printer/printerdrake.pm:3879
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Dewiswch y tudalennau prawf rydych am eu hargraffu\n"
-"Sylwer: gall tudalen brawf llun camera gymryd cryn dipyn o amser cyn cael ei "
-"argraffu ac ar argraffydd laser heb lawer o gof mae'n bosibl na ddaw o gwbl. "
-"Yn y rhan fwyaf o achosion, mae'r dudalen prawf safonol yn ddigonol."
-
-#: printer/printerdrake.pm:3883
-#, c-format
-msgid "No test pages"
-msgstr "Dim tudalennau prawf"
-
-#: printer/printerdrake.pm:3884
-#, c-format
-msgid "Print"
-msgstr "Argraffu"
-
-#: printer/printerdrake.pm:3909
-#, c-format
-msgid "Standard test page"
-msgstr "Tudalen prawf safonol"
-
-#: printer/printerdrake.pm:3912
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Prawf tudalen arall (Llythyr)"
-
-#: printer/printerdrake.pm:3915
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Prawf tudalen arall (A4)"
-
-#: printer/printerdrake.pm:3917
-#, c-format
-msgid "Photo test page"
-msgstr "Tudalen prawf llun"
-
-#: printer/printerdrake.pm:3930
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Argraffu tudalen(nau) prawf..."
-
-#: printer/printerdrake.pm:3950
-#, c-format
-msgid "Skipping photo test page."
-msgstr "Osgoi prawf llun ffoto"
-
-#: printer/printerdrake.pm:3967
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Mae tudalennau prawf wedi eu hanfon i'r argraffydd.\n"
-"Gall gymryd amser cyn i'r argraffydd gychwyn.\n"
-"Statws argraffu:\n"
-"%s\n"
-"\n"
-
-#: printer/printerdrake.pm:3971
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Mae tudalen(nau) prawf wedi eu hanfon at yr argraffydd.\n"
-"Gall gymryd amser cyn i'r argraffydd gychwyn.\n"
-
-#: printer/printerdrake.pm:3981
-#, c-format
-msgid "Did it work properly?"
-msgstr "A weithiodd hwnnw'n iawn?"
-
-#: printer/printerdrake.pm:4005
-#, c-format
-msgid "Raw printer"
-msgstr "Argraffydd bras"
-
-#: printer/printerdrake.pm:4027
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"I argraffu ffeil o'r llinell orchymyn (ffenestr derfynell) mae modd "
-"defnyddio un ai'r gorchymyn \"%s <file>\" neu offeryn argraffu graffigol: "
-"\"xpp <file>\" neu \"kprinter <file>\". Mae'r offeryn graffigol yn caniatáu "
-"chi ddefnyddio'r argraffydd ac i newid gosodiadau dewis yn hawdd.\n"
-
-#: printer/printerdrake.pm:4029
-#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Mae modd defnyddio'r gorchmynion hyn ym maes \"Gorchmynion Argraffu\" y "
-"deialogau argraffu mewn nifer o raglenni, ond yma nid ydynt yn darparu'r "
-"enw ffeil am fod y ffeil i'r argraffydd yn cael ei ddarparu gan y rhaglen.\n"
-
-#: printer/printerdrake.pm:4032 printer/printerdrake.pm:4049
-#: printer/printerdrake.pm:4059
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"Mae'r gorchymyn \"%s\" hefyd yn caniatau i newid y gosodiadau dewis ar gyfer "
-"tasg argraffu penodol. Ychwanegwch y gosodiadau angenrheidiol i'r llinell "
-"gorchymyn, e.e \"%s <file>\". "
-
-#: printer/printerdrake.pm:4035 printer/printerdrake.pm:4075
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"I wybod am y dewisiadau sydd ar gael ar gyfer yr argraffydd, darllenwch un "
-"ai'r rhestr isod neu cliciwch ar y botwm \"Rhestr dewis argraffu\".%s%s%s\n"
-"\n"
-
-#: printer/printerdrake.pm:4039
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Dyma restr o'r dewisiadau argraffu sydd ar gael ar gyfer yr argraffydd "
-"presennol:\n"
-"\n"
-
-#: printer/printerdrake.pm:4044 printer/printerdrake.pm:4054
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynell) defnyddiwch "
-"orchymyn \"%s <file>\".\n"
-
-#: printer/printerdrake.pm:4046 printer/printerdrake.pm:4056
-#: printer/printerdrake.pm:4066
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Mae modd defnyddio'r gorchymyn hwn ym maes \"Gorchymyn argraffu\" deialog "
-"nifer o raglenni. Ond peidiwch â rhoi'r enw ffeil yma oherwydd bod y ffeil "
-"i'w argraffu wedi ei ddarparu gan y rhaglen.\n"
-
-#: printer/printerdrake.pm:4051 printer/printerdrake.pm:4061
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"I edrych ar y rhestr o'r dewisiadau sydd ar gael ar gyfer yr argraffydd "
-"cyfredol cliciwch ar fotwm \"Rhestr dewisiadau argraffu\"."
-
-#: printer/printerdrake.pm:4064
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynell) defnyddiwch y "
-"gorchymyn \"%s <file>\" neu \"%s <file>\".\n"
-
-#: printer/printerdrake.pm:4068
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Mae modd hefyd i ddefnyddio rhag wyneb graffigol \"xpdq\" i osod dewisiadau "
-"a thrin gwaith argraffu.\n"
-"\n"
-"Os ydych yn defnyddio KDE fel amgylchedd pen bwrdd mae gennych \"botwm "
-"argyfwng\", eicon ar y bwrdd gwaith, wedi ei labelu \"Atal yr Argraffydd!\", "
-"fydd yn stopio 'r holl waith argraffu'n syth pan fyddwch yn ei glicio. Mae "
-"hyn yn ddefnyddiol pan fydd y papur wedi mynd yn sownd, ag ati.\n"
-
-#: printer/printerdrake.pm:4072
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"Mae'r gorchmynion \"%s\" a \"%s\" hefyd yn caniatáu newid y gosodiadau dewis "
-"ar gyfer tasg argraffu benodol. Ychwanegwch y gosodiadau angenrheidiol i'r "
-"llinell gorchymyn, e.e \"%s <file>\".\n"
-
-#: printer/printerdrake.pm:4081
-#, c-format
-msgid "Using/Maintaining the printer \"%s\""
-msgstr "Defnyddio/Cynnal argraffydd \"%s\""
-
-#: printer/printerdrake.pm:4082
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Argraffu ar argraffydd \"%s\""
-
-#: printer/printerdrake.pm:4088
-#, c-format
-msgid "Print option list"
-msgstr "Rhestr ddewis argraffu"
-
-#: printer/printerdrake.pm:4092
-#, c-format
-msgid "Printing option list..."
-msgstr "Rhestr ddewis argraffu..."
-
-#: printer/printerdrake.pm:4110
-#, c-format
-msgid ""
-"Your %s is set up with HP's HPLIP driver software. This way many special "
-"features of your printer are supported.\n"
-"\n"
-msgstr ""
-"Mae eich %s wedi ei osod gyda meddalwedd HPLIP HP. Fel hyn bydd nifer o "
-"nodweddion arbennig eich argraffydd yn cael eu cynnal.\n"
-"\n"
-
-#: printer/printerdrake.pm:4113
-#, c-format
-msgid ""
-"The scanner in your printer can be used with the usual SANE software, for "
-"example Kooka or XSane (Both in the Multimedia/Graphics menu). "
-msgstr ""
-"Mae modd defnyddio'r sganiwr yn eich argraffydd gyda'r feddalwedd SANE "
-"arferol, ee Kooka neu XSane (Y ddau yn newislen Amlgyfrwng/Graffigau). "
-
-#: printer/printerdrake.pm:4114
-#, c-format
-msgid ""
-"Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to "
-"share your scanner on the network.\n"
-"\n"
-msgstr ""
-"Rhedwch Scannerdrake (Caledwedd/Sganiwr yng Nghanolfan Rheoli Mandriva "
-"Linux) i rannu eich sganiwr ar y rhwydwaith.\n"
-"\n"
-
-#: printer/printerdrake.pm:4118
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed like a usual USB "
-"mass storage device. "
-msgstr ""
-"Mae modd cael mynediad i'r darllennydd cerdyn cof ar eich argraffydd drwy'r "
-"ddyfais storio USB arferol."
-
-#: printer/printerdrake.pm:4119
-#, c-format
-msgid ""
-"After inserting a card a hard disk icon to access the card should appear on "
-"your desktop.\n"
-"\n"
-msgstr ""
-"Ar ôl gosod cerdyn bydd eicon disg caled yn ymddangos ar eich bwrdd gwaith i "
-"awgrymu mynediad\n"
-
-#: printer/printerdrake.pm:4121
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed using HP's Printer "
-"Toolbox (Menu: System/Monitoring/HP Printer Toolbox) clicking the \"Access "
-"Photo Cards...\" button on the \"Functions\" tab. "
-msgstr ""
-"Mae modd cael mynediad at ddarllenydd cerdyn ar eich argraffydd drwy "
-"ddefnyddio Printer Toolbox HP (Dewislen: System/Monitro/HP Printer Toolbox) "
-"gan glicio ar fotwm \"Mynediad at Gardiau Ffoto..\" yn y tab \"Swyddogaethau"
-"\"."
-
-#: printer/printerdrake.pm:4122
-#, c-format
-msgid ""
-"Note that this is very slow, reading the pictures from the camera or a USB "
-"card reader is usually faster.\n"
-"\n"
-msgstr ""
-"Sylwch fod hyn yn araf iawn, mae darllen y lluniau o'r camera neu gerdyn USB "
-"fel arfer yn gynt.\n"
-
-#: printer/printerdrake.pm:4125
-#, c-format
-msgid ""
-"HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a "
-"lot of status monitoring and maintenance functions for your %s:\n"
-"\n"
-msgstr ""
-"Mae Printer Toolbox HP (Dewislen: System/Monitro/Printer Toolbox HP) yn "
-"cynnig llawer o swyddogaethau monitro statws a chynnal ar gyfer eich %s:\n"
-"\n"
-
-#: printer/printerdrake.pm:4126
-#, c-format
-msgid " - Ink level/status info\n"
-msgstr " - Lefel inc/statws\n"
-
-#: printer/printerdrake.pm:4127
-#, c-format
-msgid " - Ink nozzle cleaning\n"
-msgstr " - Glanhau ffroenell inc\n"
-
-#: printer/printerdrake.pm:4128
-#, c-format
-msgid " - Print head alignment\n"
-msgstr " - Aliniad pen argraffydd\n"
-
-#: printer/printerdrake.pm:4129
-#, c-format
-msgid " - Color calibration\n"
-msgstr " - Calibro lliw\n"
-
-#: printer/printerdrake.pm:4170 printer/printerdrake.pm:4197
-#: printer/printerdrake.pm:4232
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Trosglwyddo ffurfweddiad yr argraffydd"
-
-#: printer/printerdrake.pm:4171
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"Mae modd i chi gopïo ffurfweddiad yr argraffydd fel gwnaethoch o yspwlydd %s "
-"i %s eich yspwlydd cyfredol. Bydd yr holl ddata ffurfweddi (enw argraffydd, "
-"disgrifiad, lleoliad, math o gysylltiad â gosodiadau dewis rhagosodedig) yn "
-"cael eu trosi, ond ni fydd y gwaith argraffu'n cael eu trosi.\n"
-"Ni fydd yr holl waith argraffu'n cael eu trosi, am y rhesymau canlynol:\n"
-
-#: printer/printerdrake.pm:4174
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"Nid yw CUPS yn cefnogi argraffyddion ar weinyddion Novell neu argraffyddion "
-"sy'n anfon data mewn gorchymyn ffurf -rhydd.\n"
-
-#: printer/printerdrake.pm:4176
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"Mae PDQ yn cynnal argraffyddion lleol, LDP pell, a Socket/TCP, yn unig.\n"
-
-#: printer/printerdrake.pm:4178
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "Nid yw LPD na LPRng yn cynnal argraffyddion IPP.\n"
-
-#: printer/printerdrake.pm:4180
-#, c-format
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"Yn ogystal, nid oes modd trosglwyddo rhesi a grëwyd gan y rhaglen hon na "
-"\"foomatic-configure\"."
-
-#: printer/printerdrake.pm:4181
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Hefyd nid oes modd trosglwyddo argraffyddion ffurfweddwyd gyda ffeiliau PPD "
-"ddarparwyd gan eu gwneuthurwyr na gyrrwyr CUPS brodorol."
-
-#: printer/printerdrake.pm:4182
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Nodwch yr argraffydd rydych am ei drosglwyddo a chliciwch\n"
-"\"Trosglwyddo\"."
-
-#: printer/printerdrake.pm:4185
-#, c-format
-msgid "Do not transfer printers"
-msgstr "Peidio trosglwyddo argraffydd"
-
-#: printer/printerdrake.pm:4186 printer/printerdrake.pm:4202
-#, c-format
-msgid "Transfer"
-msgstr "Trosglwyddo"
-
-#: printer/printerdrake.pm:4198
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Mae argraffydd o'r enw \"%s\" yn bodoli eisoes yn %s.\n"
-"Cliciwch \"Trosglwyddo\" i ysgrifennu drosto.\n"
-"Mae modd i chi osod enw newydd arno neu ei hepgor."
-
-#: printer/printerdrake.pm:4219
-#, c-format
-msgid "New printer name"
-msgstr "Enw'r argraffydd newydd"
-
-#: printer/printerdrake.pm:4222
-#, c-format
-msgid "Transferring %s..."
-msgstr "Trosglwyddo %s..."
-
-#: printer/printerdrake.pm:4233
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Rydych wedi trosglwyddo eich argraffydd rhagosodedig blaenorol rhagosodedig "
-"(\"%s\"). A ddylai fod yn argraffydd rhagosodedig y system argraffu newydd %"
-"s ?"
-
-#: printer/printerdrake.pm:4243
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Adnewyddu data'r argraffydd..."
-
-#: printer/printerdrake.pm:4253
-#, c-format
-msgid "Starting network..."
-msgstr "Cychwyn y rhwydwaith..."
-
-#: printer/printerdrake.pm:4296 printer/printerdrake.pm:4300
-#: printer/printerdrake.pm:4302
-#, c-format
-msgid "Configure the network now"
-msgstr "Ffurfweddwch y rhwydwaith"
-
-#: printer/printerdrake.pm:4297
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Nid yw swyddogaethau'r rhwydwaith wedi ei ffurfweddu"
-
-#: printer/printerdrake.pm:4298
-#, c-format
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"Ydych chi am ffurfweddi argraffydd pell. Mae hyn angen mynediad ar "
-"rwydwaith, ond nid yw eich rhwydwaith wedi ei ffurfweddu eto. Os ydych am "
-"fynd ymlaen heb ffurfweddiad rhwydwaith, ni fydd modd i chi ddefnyddio'r "
-"argraffydd rydych yn ei ffurfweddu ar hyn o bryd. Beth ydych am ei wneud?"
-
-#: printer/printerdrake.pm:4301
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Parhau heb ffurfweddu'r rhwydwaith"
-
-#: printer/printerdrake.pm:4332
-#, c-format
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network is accessible after booting your "
-"system and correct the configuration using the %s Control Center, section "
-"\"Network & Internet\"/\"Connection\", and afterwards set up the printer, "
-"also using the %s Control Center, section \"Hardware\"/\"Printer\""
-msgstr ""
-"Nid oes modd cychwyn y ffurfweddiad rhwydwaith wnaed yn ystod y gosodiad. "
-"Gwiriwch p'un ai yw'r rhwydwaith yn darparu mynediad ar ôl cychwyn eich "
-"system a chywiro'r ffurfweddiad gan ddefnyddio Canolfan Rheoli %s, adran "
-"\"Rhwydwaith a'r Rhyngrwyd\"/\"Cysylltiad\", ac yna gosod yr argraffydd, eto "
-"gan ddefnyddio Canolfan Rheoli %s, adran \"Caledwedd\"/\"Argraffydd\""
-
-#: printer/printerdrake.pm:4333
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Nid oedd mynediad i'r rhwydwaith yn rhedeg ac nid oedd modd ei gychwyn. "
-"Gwiriwch eich ffurfweddiad a'ch caledwedd. Yna ceisiwch ail ffurfweddi eich "
-"argraffydd."
-
-#: printer/printerdrake.pm:4343
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Ailgychwyn system argraffu..."
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "high"
-msgstr "uchel"
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "paranoid"
-msgstr "Paranoia"
-
-#: printer/printerdrake.pm:4376
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Gosod system argraffu yn lefel diogelwch %s"
-
-#: printer/printerdrake.pm:4377
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessible by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Rydych ar fin gosod system argraffu %s ar system sy'n rhedeg lefel diogelwch "
-"%s. \n"
-"\n"
-"Mae'r system yn rhedeg daemon (proses gefndirol) sy'n aros am waith argraffu "
-"ac yna yn eu trin. Mae'r daemon hefyd yn gyraeddadwy gan beiriannau pell "
-"drwy'r rhwydwaith ac felly'n bwynt ymosod. Felly, dim ond ychydig o "
-"ddaemonau sy'n cael eu cychwyn yn rhagosodedig, ar y lefel diogelwch hwn.\n"
-"\n"
-"Ydych chi wir eisiau ffurfweddu argraffu ar y peiriant hwn?"
-
-#: printer/printerdrake.pm:4413
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Cychwyn y system argraffu wrth gychwyn y cyfrifiadur"
-
-#: printer/printerdrake.pm:4414
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"Ni fydd system argraffu (%s) yn cychwyn yn awtomatig pan fydd y peiriant yn "
-"cael ei gychwyn.\n"
-"\n"
-"Mae'n bosibl fod y cychwyn awtomatig wedi ei ddiffodd wrth newid i lefel "
-"diogelwch uwch, am fod a system argraffu'n bwynt tebygol ar gyfer "
-"ymosodiadau.\n"
-"\n"
-"Ydych chi am i'r cychwyn awtomatig gael ei droi ymlaen eto?"
-
-#: printer/printerdrake.pm:4437
-#, c-format
-msgid "Checking installed software..."
-msgstr "Gwirio'r meddalwedd sydd wedi ei osod..."
-
-#: printer/printerdrake.pm:4443
-#, c-format
-msgid "Removing %s..."
-msgstr "Tynnu %s..."
-
-#: printer/printerdrake.pm:4447
-#, c-format
-msgid "Could not remove the %s printing system!"
-msgstr "Methu tynnu'r system argraffu %s!"
-
-#: printer/printerdrake.pm:4471
-#, c-format
-msgid "Installing %s..."
-msgstr "Gosod %s..."
-
-#: printer/printerdrake.pm:4475
-#, c-format
-msgid "Could not install the %s printing system!"
-msgstr "Methu gosod system argraffu %s!"
-
-#: printer/printerdrake.pm:4543
-#, c-format
-msgid ""
-"In this mode there is no local printing system, all printing requests go "
-"directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-"Yn y modd hwn nid oes system argraffu a bydd yr holl geisiadau argraffu'n "
-"mynd yn syth i'r gweinydd enwyd isod. Sylwch na fydd yn bosib diffinio rhesi "
-"argraffu lleol ac os bydd y gweinydd hwnnw i lawr nid oes modd ei argraffu "
-"o'r peiriant hwn."
-
-#: printer/printerdrake.pm:4545
-#, c-format
-msgid ""
-"Enter the host name or IP of your CUPS server and click OK if you want to "
-"use this mode, click \"Quit\" otherwise."
-msgstr ""
-"Rhowch yr enw gwesteiwr neu IP eich gweinydd CUPS a chlicio Iawn os ydych am "
-"ddefnyddio'r modd yma, cliciwch \"Gadael\" fel arall."
-
-#: printer/printerdrake.pm:4559
-#, c-format
-msgid "Name or IP of remote server:"
-msgstr "Gwesteiwr neu IP ar weinydd pell:"
-
-#: printer/printerdrake.pm:4579
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Gosod yr Argraffydd Rhagosodedig"
-
-#: printer/printerdrake.pm:4599
-#, c-format
-msgid "Local CUPS printing system or remote CUPS server?"
-msgstr "System argraffu CUPS lleol neu weinydd CUPS pell?"
-
-#: printer/printerdrake.pm:4600
-#, c-format
-msgid "The CUPS printing system can be used in two ways: "
-msgstr "Mae modd defnyddio system argraffu CUPS mewn dwy ffordd:"
-
-#: printer/printerdrake.pm:4602
-#, c-format
-msgid "1. The CUPS printing system can run locally. "
-msgstr "1. Mae modd rhedeg system argraffu CUPS yn lleol."
-
-#: printer/printerdrake.pm:4603
-#, c-format
-msgid ""
-"Then locally connected printers can be used and remote printers on other "
-"CUPS servers in the same network are automatically discovered. "
-msgstr ""
-"Yna mae modd defnyddio argraffyddion wedi eu cysylltu'n lleol ac mae modd "
-"canfod argraffyddion pell ar weinyddion CUPS eraill ar yr un rhwydwaith, yn "
-"awtomatig."
-
-#: printer/printerdrake.pm:4604
-#, c-format
-msgid ""
-"Disadvantage of this approach is, that more resources on the local machine "
-"are needed: Additional software packages need to be installed, the CUPS "
-"daemon has to run in the background and needs some memory, and the IPP port "
-"(port 631) is opened. "
-msgstr ""
-"Anfantais hyn yw, bod angen mwy o adnoddau ar beiriannau lleol. Rhaid gosod "
-"pecynnau meddalwedd ychwanegol, rhaid rhedeg daemon CUPS yn y cefndir ac mae "
-"angen peth cof, ac mae porth IPP (porth 631) ar agor."
-
-#: printer/printerdrake.pm:4606
-#, c-format
-msgid "2. All printing requests are immediately sent to a remote CUPS server. "
-msgstr ""
-"2. Bydd pob cais argraffu'n cael ei anfon yn syth at weinydd CUPS pell."
-
-#: printer/printerdrake.pm:4607
-#, c-format
-msgid ""
-"Here local resource occupation is reduced to a minimum. No CUPS daemon is "
-"started or port opened, no software infrastructure for setting up local "
-"print queues is installed, so less memory and disk space is used. "
-msgstr ""
-"Yma mae defnydd adnoddau lleol yn cael ei leihau. Ni fydd daemon CUPS yn "
-"cael ei gychwyn na phorth yn cael ei hagor, nid oes strwythur meddalwedd yn "
-"cael ei osod i drin rhesi argraffu, felly mae llai o gof a lle ar ddisg yn "
-"cael ei ddefnyddio."
-
-#: printer/printerdrake.pm:4608
-#, c-format
-msgid ""
-"Disadvantage is that it is not possible to define local printers then and if "
-"the specified server is down it cannot be printed at all from this machine. "
-msgstr ""
-"Yr anfantais yw nad oes modd diffinio argraffyddion lleol ac os yw'r "
-"gweinydd hwnnw i lawr nid oes modd argraffu o'r peiriant hwn."
-
-#: printer/printerdrake.pm:4610
-#, c-format
-msgid "How should CUPS be set up on your machine?"
-msgstr "Sutddylai CUPS gael ei osod ar eich peiriant?"
-
-#: printer/printerdrake.pm:4614 printer/printerdrake.pm:4629
-#: printer/printerdrake.pm:4633 printer/printerdrake.pm:4639
-#, c-format
-msgid "Remote server, specify Name or IP here:"
-msgstr "Gweinydd pell, rhowch Enw neu IP yma:"
-
-#: printer/printerdrake.pm:4628
-#, c-format
-msgid "Local CUPS printing system"
-msgstr "System argraffu CUPS lleol"
-
-#: printer/printerdrake.pm:4667
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Dewiswch Sbwlydd Argraffydd"
-
-#: printer/printerdrake.pm:4668
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Pa system argraffu(sbwlydd) ydych chi am ei ddefnyddio?"
-
-#: printer/printerdrake.pm:4717
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Methu ffurfweddu argraffydd \"%s\"!"
-
-#: printer/printerdrake.pm:4732
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Gosod Foomatic..."
-
-#: printer/printerdrake.pm:4738
-#, c-format
-msgid "Could not install %s packages, %s cannot be started!"
-msgstr "Methu gosod pecynnau %s, methu cychwyn %s!"
-
-#: printer/printerdrake.pm:4933
-#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it. "
-msgstr ""
-"Mae'r argraffyddion canlynol wedi eu ffurfweddu. Cliciwch ar un i newid ei "
-"osodiadau; ei wneud yn argraffydd rhagosodedig; i edrych am wybodaeth amdano."
-
-#: printer/printerdrake.pm:4963
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Arddangos pob argraffydd CUPS pell sydd ar gael"
-
-#: printer/printerdrake.pm:4964
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Adnewyddu rhestr argraffyddion (dangos pob argraffydd CUPS pell sydd ar gael)"
-
-#: printer/printerdrake.pm:4975
-#, c-format
-msgid "CUPS configuration"
-msgstr "Ffurfweddiad CUPS"
-
-#: printer/printerdrake.pm:4996
-#, c-format
-msgid "Change the printing system"
-msgstr "Newidiwch y system argraffu"
-
-#: printer/printerdrake.pm:5005
-#, c-format
-msgid "Normal Mode"
-msgstr "Modd Arferol"
-
-#: printer/printerdrake.pm:5006
-#, c-format
-msgid "Expert Mode"
-msgstr "Modd Uwch"
-
-#: printer/printerdrake.pm:5284 printer/printerdrake.pm:5340
-#: printer/printerdrake.pm:5426 printer/printerdrake.pm:5435
-#, c-format
-msgid "Printer options"
-msgstr "Dewisiadau argraffydd"
-
-#: printer/printerdrake.pm:5320
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Newid ffurfweddiad yr argraffydd"
-
-#: printer/printerdrake.pm:5322
-#, c-format
-msgid ""
-"Printer %s%s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Argraffydd %s%s\n"
-"Beth ydych am ei newid ar yr argraffydd hwn?"
-
-#: printer/printerdrake.pm:5327
-#, c-format
-msgid "This printer is disabled"
-msgstr "Mae'r argraffydd wedi ei anablu"
-
-#: printer/printerdrake.pm:5329
-#, c-format
-msgid "Do it!"
-msgstr "Gwna!!"
-
-#: printer/printerdrake.pm:5335 printer/printerdrake.pm:5400
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Enw'r argraffydd, disgrifiad, lleoliad"
-
-#: printer/printerdrake.pm:5337 printer/printerdrake.pm:5419
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Gwneuthurwr yr argraffydd, model, gyrrwr"
-
-#: printer/printerdrake.pm:5338 printer/printerdrake.pm:5420
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Gwneuthurwr yr argraffydd, model"
-
-#: printer/printerdrake.pm:5342 printer/printerdrake.pm:5430
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Gosod yr argraffydd fel y rhagosodedig"
-
-#: printer/printerdrake.pm:5347 printer/printerdrake.pm:5436
-#: printer/printerdrake.pm:5438 printer/printerdrake.pm:5447
-#, c-format
-msgid "Enable Printer"
-msgstr "Galluogi'r argraffydd"
-
-#: printer/printerdrake.pm:5350 printer/printerdrake.pm:5441
-#: printer/printerdrake.pm:5442 printer/printerdrake.pm:5444
-#, c-format
-msgid "Disable Printer"
-msgstr "Anablu'r Argraffydd"
-
-#: printer/printerdrake.pm:5354 printer/printerdrake.pm:5448
-#, c-format
-msgid "Printer communication error handling"
-msgstr "Trin gwall cyfathrebu argraffydd"
-
-#: printer/printerdrake.pm:5355 printer/printerdrake.pm:5452
-#, c-format
-msgid "Print test pages"
-msgstr "Argraffu tudalennau prawf"
-
-#: printer/printerdrake.pm:5356 printer/printerdrake.pm:5454
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Gwybod sut i ddefnyddio'r argraffydd"
-
-#: printer/printerdrake.pm:5357 printer/printerdrake.pm:5456
-#, c-format
-msgid "Remove printer"
-msgstr "Tynnu argraffydd"
-
-#: printer/printerdrake.pm:5408
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Tynnu hen argraffydd \"%s\"..."
-
-#: printer/printerdrake.pm:5439
-#, c-format
-msgid "Printer \"%s\" is now enabled."
-msgstr "Mae argraffydd\"%s\" wedi ei alluogi"
-
-#: printer/printerdrake.pm:5445
-#, c-format
-msgid "Printer \"%s\" is now disabled."
-msgstr "Mae argraffydd \"%s\" wedi ei anablu"
-
-#: printer/printerdrake.pm:5487
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Ydych chi wir eisiau tynnu argraffydd \"%s\""
-
-#: printer/printerdrake.pm:5491
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Tynnu argraffydd \"%s\"..."
-
-#: printer/printerdrake.pm:5515
-#, c-format
-msgid "Default printer"
-msgstr "Argraffydd rhagosodedig"
-
-#: printer/printerdrake.pm:5516
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Mae argraffydd \"%s\" wedi ei osod fel yr argraffydd rhagosodedig."
-
#: raid.pm:42
#, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "Methu ychwanegu rhaniad to_formatted_RAID%s"
-#: raid.pm:148
+#: raid.pm:150
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Dim digon o raniadau ar gyfer RAID lefel %d\n"
-#: scanner.pm:96
+#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr "Methu creu cyfeiriadur /usr/share/sane/firmware!"
-#: scanner.pm:107
+#: scanner.pm:106
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr "Methu creu cyswllt /usr/share/sane/%s!"
-#: scanner.pm:114
+#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr "Methu copïo ffeil cadarnwedd %s i /usr/share/sane/firmware!"
-#: scanner.pm:121
+#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr "Methu gosod caniatâd ffeiliau cadarnwedd %s!"
-#: scanner.pm:200 standalone/scannerdrake:66 standalone/scannerdrake:70
-#: standalone/scannerdrake:78 standalone/scannerdrake:321
-#: standalone/scannerdrake:370 standalone/scannerdrake:463
-#: standalone/scannerdrake:507 standalone/scannerdrake:511
-#: standalone/scannerdrake:533 standalone/scannerdrake:598
+#: scanner.pm:199
#, c-format
msgid "Scannerdrake"
msgstr "Scannerdrake"
-#: scanner.pm:201 standalone/scannerdrake:964
+#: scanner.pm:200
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr "Methu gosod y pecyn sydd ei angen i rannu eich sganiwr(wyr)."
-#: scanner.pm:202
+#: scanner.pm:201
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
-msgstr "Ni fydd eich sganiwr(wyr) ar gael ar gyfer defnyddwyr anwraidd"
+msgstr "Ni fydd eich sganiwr(wyr) ar gael ar gyfer defnyddwyr anwraidd."
#: security/help.pm:11
#, c-format
@@ -15321,18 +5195,18 @@ msgstr "Caniatáu/Gwrthod negeseuon gwall IPv4 ffug."
#: security/help.pm:13
#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
+msgid "Accept/Refuse broadcasted icmp echo."
msgstr "Caniatáu/Gwrthod darlledu atsain icmp."
#: security/help.pm:15
#, c-format
-msgid " Accept/Refuse icmp echo."
+msgid "Accept/Refuse icmp echo."
msgstr "Caniatáu/Gwrthod atsain icmp."
#: security/help.pm:17
#, c-format
msgid "Allow/Forbid autologin."
-msgstr "Caniatáu Gwrthod awto mewngofnodi."
+msgstr "Caniatáu/Gwrthod awto mewngofnodi."
#. -PO: here "ALL" is a value in a pull-down menu; translate it the same as "ALL" is
#: security/help.pm:21
@@ -15358,7 +5232,7 @@ msgstr "Caniatáu/Gwrthod ailgychwyn cyfrifiadur gan ddefnyddiwr y consol."
#: security/help.pm:29
#, c-format
msgid "Allow/Forbid remote root login."
-msgstr "Caniatáu/Gwrthod mewngofnodi gwraidd pell"
+msgstr "Caniatáu/Gwrthod mewngofnodi gwraidd pell."
#: security/help.pm:31
#, c-format
@@ -15371,7 +5245,7 @@ msgid ""
"Allow/Forbid the list of users on the system on display managers (kdm and "
"gdm)."
msgstr ""
-"Caniatáu/Gwrthod rhestr defnyddwyr ar y system ar reolwyr arddangos (kdm and "
+"Caniatáu/Gwrthod rhestr defnyddwyr ar y system ar reolwyr dangos (kdm and "
"gdm)."
#: security/help.pm:35
@@ -15488,7 +5362,7 @@ msgstr ""
"Galluogi/Analluogi amddiffyn spwffio datrys enw. Os yw\n"
"\"%s\" yn wir, adrodd i syslog."
-#: security/help.pm:80 standalone/draksec:215
+#: security/help.pm:80
#, c-format
msgid "Security Alerts:"
msgstr "Rhybuddion Diogelwch:"
@@ -15496,7 +5370,7 @@ msgstr "Rhybuddion Diogelwch:"
#: security/help.pm:82
#, c-format
msgid "Enable/Disable IP spoofing protection."
-msgstr "Galluogi/Analluogi amddiffyn sbwlio IP"
+msgstr "Galluogi/Analluogi amddiffyn sbwlio IP."
#: security/help.pm:84
#, c-format
@@ -15516,10 +5390,11 @@ msgstr "Galluogi/Analluogi gwiriad diogelwch msec bob awr."
#: security/help.pm:90
#, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"Enable su only from members of the wheel group. If set to no, allows su from "
+"any user."
msgstr ""
-" Galluogi su o aelodau grŵp olwyn yn unig neu ganiatáu su o unrhyw "
-"ddefnyddiwr."
+"Galluogi su gan aelodau'r grŵp olwyn yn unig. Os wedi ei osod i na, caniatáu "
+"su o unrhyw ddefnyddiwr."
#: security/help.pm:92
#, c-format
@@ -15533,13 +5408,13 @@ msgstr "Galluogi/Analluogi gwiriad cymysgaredd cardiau ethernet."
#: security/help.pm:96
#, c-format
-msgid " Activate/Disable daily security check."
+msgid "Activate/Disable daily security check."
msgstr "Galluogi/Analluogi gwiriad diogelwch dyddiol."
#: security/help.pm:98
#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr "Galluogi/Analluogi sulogin(8 mewn defnydd defnyddiwr unigol."
+msgid "Enable/Disable sulogin(8) in single user level."
+msgstr "Galluogi/Analluogi sulogin(8) mewn defnydd defnyddiwr unigol."
#: security/help.pm:100
#, c-format
@@ -15660,7 +5535,7 @@ msgstr ""
#: security/help.pm:128
#, c-format
msgid "if set to yes, report check result by mail."
-msgstr "os wedi ei osod i iawn, adrodd y gwirio drwy e-bost"
+msgstr "os wedi ei osod i iawn, adrodd y gwirio drwy e-bost."
#: security/help.pm:129
#, c-format
@@ -15700,7 +5575,7 @@ msgstr "Enwi enw'r ail uned."
#: security/help.pm:138
#, c-format
msgid "Set the user umask."
-msgstr "Gosod umasg y defnyddiwr"
+msgstr "Gosod umasg y defnyddiwr."
#: security/l10n.pm:11
#, c-format
@@ -15740,9 +5615,7 @@ msgstr "Mewngofnodi gwraidd uniongyrchol"
#: security/l10n.pm:19
#, c-format
msgid "List users on display managers (kdm and gdm)"
-msgstr ""
-"Caniatáu/Gwrthod rhestr defnyddwyr ar y system ar reolwyr arddangos (kdm and "
-"gdm)."
+msgstr "Rhestru defnyddwyr ar reolwyr dangos (kdm and gdm)."
#: security/l10n.pm:20
#, c-format
@@ -15806,10 +5679,8 @@ msgstr "Galluogi/Analluogi gwiriad diogelwch msec bob awr."
#: security/l10n.pm:32
#, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr ""
-"Galluogi su o aelodau grŵp olwyn yn unig neu ganiatáu su o unrhyw "
-"ddefnyddiwr."
+msgid "Enable su only from the wheel group members"
+msgstr "Galluogi su o aelodau grŵp olwyn yn unig."
#: security/l10n.pm:33
#, c-format
@@ -15933,8 +5804,8 @@ msgstr "Rhedeg gwirio gyda chkrootkit."
#: security/l10n.pm:57
#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "Peidiwch anfon e-byst pan nad oes angen"
+msgid "Do not send empty mail reports"
+msgstr "Peidiwch anfon adroddiadau e-bost gwag"
#: security/l10n.pm:58
#, c-format
@@ -15973,6 +5844,11 @@ msgstr "Croeso i Crackers"
msgid "Poor"
msgstr "Gwael"
+#: security/level.pm:12
+#, c-format
+msgid "Standard"
+msgstr "Safonol"
+
#: security/level.pm:13
#, c-format
msgid "High"
@@ -16053,6 +5929,11 @@ msgstr ""
#: security/level.pm:55
#, c-format
+msgid "Security"
+msgstr "Diogelwch"
+
+#: security/level.pm:55
+#, c-format
msgid "DrakSec Basic Options"
msgstr "Dewisiadau Sylfaenol DrakSec"
@@ -16091,7 +5972,7 @@ msgstr "Cychwynnwch system sain ALSA (Pensaernïaeth Sain Linux Uwch)"
#: services.pm:20
#, c-format
msgid "Anacron is a periodic command scheduler."
-msgstr "Anacron trefnydd gorchymyn cyfnodol"
+msgstr "Anacron trefnydd gorchymyn cyfnodol."
#: services.pm:21
#, c-format
@@ -16427,536 +6308,101 @@ msgstr "Llwytho'r gyrwyr ar gyfer eich dyfeisiau usb."
msgid "Starts the X Font Server (this is mandatory for Xorg to run)."
msgstr "Yn cychwyn Gweinydd Ffont X (mae hyn yn orfodol i Xorg i redeg).."
-#: services.pm:115 services.pm:157
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-"Dewiswch ba wasanaethau ddylai gael eu cychwyn yn awtomatig wrth gychwyn y "
-"cyfrifiadur"
-
-#: services.pm:127 standalone/draksambashare:111
+#: services.pm:114
#, c-format
msgid "Printing"
msgstr "Argraffu"
-#: services.pm:128
+#: services.pm:115
#, c-format
msgid "Internet"
msgstr "Rhyngrwyd"
-#: services.pm:131
+#: services.pm:118
#, c-format
msgid "File sharing"
msgstr "Rhannu Ffeiliau"
-#: services.pm:138
+#: services.pm:120
+#, c-format
+msgid "System"
+msgstr "System"
+
+#: services.pm:125
#, c-format
msgid "Remote Administration"
msgstr "Gweinyddu Pell"
-#: services.pm:146
+#: services.pm:133
#, c-format
msgid "Database Server"
msgstr "Gweinydd Cronfa Ddata"
-#: services.pm:209
+#: services.pm:144 services.pm:180
+#, c-format
+msgid "Services"
+msgstr "Gwasanaethau"
+
+#: services.pm:144
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr ""
+"Dewiswch ba wasanaethau ddylai gael eu cychwyn yn awtomatig wrth gychwyn y "
+"cyfrifiadur"
+
+#: services.pm:162
+#, c-format
+msgid "Services: %d activated for %d registered"
+msgstr "Gwasanaethau: %d wedi eu cychwyn ar gyfer %d wedi eu cofrestru"
+
+#: services.pm:196
#, c-format
msgid "running"
msgstr "rhedeg"
-#: services.pm:209
+#: services.pm:196
#, c-format
msgid "stopped"
msgstr "ataliwyd"
-#: services.pm:213
+#: services.pm:201
#, c-format
msgid "Services and daemons"
msgstr "Gwasanaethau a daemonau"
-#: services.pm:219
+#: services.pm:207
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr "Dim gwybodaeth ychwanegol am y gwasanaeth hwn."
-#: services.pm:224 ugtk2.pm:1009
+#: services.pm:212 ugtk2.pm:898
#, c-format
msgid "Info"
msgstr "Gwybodaeth"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "Start when requested"
msgstr "Cychwyn yn ôl y gofyn"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "On boot"
msgstr "Cychwyn"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Start"
msgstr "Cychwyn"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Stop"
msgstr "Aros"
-#: share/advertising/01.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Packs"
-msgstr "Mandriva Linux 2006: Pecynnau"
-
-#: share/advertising/02.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More features"
-msgstr "Mandriva Linux 2006: Nodweddion eraill"
-
-#: share/advertising/03.pl:3
-#, c-format
-msgid "Interactive firewall"
-msgstr "Mur Cadarn Rhyngweithiol"
-
-#: share/advertising/04.pl:3
-#, c-format
-msgid "Desktop search"
-msgstr "Chwilio bwrdd gwaith"
-
-#: share/advertising/05.pl:3
-#, c-format
-msgid "New package manager"
-msgstr "Rheolwr pecynnau newydd"
-
-#: share/advertising/06.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More performances"
-msgstr "Mandriva Linux 2006: Perfformiad gwell"
-
-#: share/advertising/07.pl:3
-#, c-format
-msgid "Latest kernel and GCC"
-msgstr "Cnewyllyn diweddaraf a GCC"
-
-#: share/advertising/08.pl:3
-#, c-format
-msgid "High Availibility"
-msgstr "Argaeledd Hawdd"
-
-#: share/advertising/09.pl:3
-#, c-format
-msgid "Delta RPM"
-msgstr "Delta RPM"
-
-#: share/advertising/10.pl:3
-#, c-format
-msgid "Low resources setup"
-msgstr "Gosod adnoddau isel"
-
-#: share/advertising/11.pl:3
-#, c-format
-msgid "Boot time reduction"
-msgstr "Cychwyn yn gynt"
-
-#: share/advertising/12.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Easier to use"
-msgstr "Mandriva Linux 2006: Haws ei ddefnyddio"
-
-#: share/advertising/13.pl:3
-#, c-format
-msgid "Latest graphical interfaces: KDE and GNOME"
-msgstr "Rhyngwynebau graffigol diweddaraf: KDE a GNOME"
-
-#: share/advertising/14.pl:3
-#, c-format
-msgid "auto-installation servers"
-msgstr "gweinyddion awto gosod"
-
-#: share/advertising/15.pl:3
-#, c-format
-msgid "Easy and quick installation"
-msgstr "Gosod hawdd a sydyn"
-
-#: share/advertising/16.pl:3
-#, c-format
-msgid "Easy configuration thanks to 60 wizards"
-msgstr "Ffurfweddu hawdd diolch i 60 dewin"
-
-#: share/advertising/17.pl:3
-#, c-format
-msgid "Look and feel improved"
-msgstr "Gwell golwg a theimlad"
-
-#: share/advertising/18.pl:3
-#, c-format
-msgid "New webmin theme"
-msgstr "Thema webmin newydd"
-
-#: share/advertising/19.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More support"
-msgstr "Mandriva Linux 2006: Mwy o gefnogaeth"
-
-#: share/advertising/20.pl:3
-#, c-format
-msgid "Better Hardware support"
-msgstr "Gwell cefnogaeth caledwedd"
-
-#: share/advertising/21.pl:3
-#, c-format
-msgid "Xen support"
-msgstr "Cefnogaeth Xen"
-
-#: share/advertising/22.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More information"
-msgstr "Mandriva Linux 2006: Rhagor o wybodaeth"
-
-#: share/advertising/23.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Where to buy?"
-msgstr "Mandriva Linux 2006: Lle i brynu?"
-
-#: share/advertising/24.pl:3
-#, c-format
-msgid "Where to find technical assistance?"
-msgstr "Lle i gael cefnogaeth dechnegol?"
-
-#: share/advertising/25.pl:3
-#, c-format
-msgid "How to join the Mandriva Linux community?"
-msgstr "Sut i ymuno â'r gymuned Mandriva?"
-
-#: share/advertising/26.pl:3
-#, c-format
-msgid "How to keep your system up-to-date?"
-msgstr "Sut i gadw eich system wedi ei diweddaru?"
-
-#: share/advertising/intel.pl:3
-#, c-format
-msgid "Intel Software"
-msgstr "Meddalwedd Intel"
-
-#: share/advertising/skype.pl:3
-#, c-format
-msgid "Skype lets you make calls through the Internet for free."
-msgstr "Mae Skype yn gadael ichi wneud galwadau am ddim dros y we."
-
-#: share/compssUsers.pl:26
-#, c-format
-msgid "Office Workstation"
-msgstr "Gweithfan Swyddfa"
-
-#: share/compssUsers.pl:28
-#, c-format
-msgid ""
-"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
-"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
-msgstr ""
-"Rhaglenni swyddfa: prosesydd geiriau (OpenOffice.org Writer, Kword), "
-"taenlenni (OpenOffice.org Calc, Kspread), ddarllenydd pdf, ag ati"
-
-#: share/compssUsers.pl:29
-#, c-format
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Rhaglenni swyddfa: prosesydd geiriau (Kword, abiword), taenlenni (kspread, "
-"gnumeric), ddarllenydd pdf, ag ati"
-
-#: share/compssUsers.pl:34
-#, c-format
-msgid "Game station"
-msgstr "Man chwarae"
-
-#: share/compssUsers.pl:35
-#, c-format
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Rhaglenni difyrrwch: arcêd, gemau bwrdd, strategaeth, ag ati"
-
-#: share/compssUsers.pl:38
-#, c-format
-msgid "Multimedia station"
-msgstr "Man aml-gyfrwng"
-
-#: share/compssUsers.pl:39
-#, c-format
-msgid "Sound and video playing/editing programs"
-msgstr "Chwarae sain a fideo/rhaglenni golygu"
-
-#: share/compssUsers.pl:44
-#, c-format
-msgid "Internet station"
-msgstr "Man Rhyngrwyd"
-
-#: share/compssUsers.pl:45
-#, c-format
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Casgliad o offer i ddarllen ac anfon e-bost a newyddion (mutt, tin..) ac i "
-"bori'r We"
-
-#: share/compssUsers.pl:50
-#, c-format
-msgid "Network Computer (client)"
-msgstr "Cyfrifiadur Rhwydwaith (cleient)"
-
-#: share/compssUsers.pl:51
-#, c-format
-msgid "Clients for different protocols including ssh"
-msgstr "Cleientiaid ar gyfer protocolau amrywiol yn cynnwys ssh"
-
-#: share/compssUsers.pl:55
-#, c-format
-msgid "Configuration"
-msgstr "Ffurfweddiad"
-
-#: share/compssUsers.pl:56
-#, c-format
-msgid "Tools to ease the configuration of your computer"
-msgstr "Offer i wneud ffurfweddu'ch cyfrifiadur yn haws"
-
-#: share/compssUsers.pl:60
-#, c-format
-msgid "Console Tools"
-msgstr "Offer y Consol"
-
-#: share/compssUsers.pl:61
-#, c-format
-msgid "Editors, shells, file tools, terminals"
-msgstr "Golygyddion, cregyn, offer ffeilio, terfynellau"
-
-#: share/compssUsers.pl:66 share/compssUsers.pl:170
-#, c-format
-msgid "C and C++ development libraries, programs and include files"
-msgstr "Llyfrgelloedd datblygiadol C a C++, rhaglenni a ffeiliau cynnwys"
-
-#: share/compssUsers.pl:70 share/compssUsers.pl:174
-#, c-format
-msgid "Documentation"
-msgstr "Dogfennaeth"
-
-#: share/compssUsers.pl:71 share/compssUsers.pl:175
-#, c-format
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Llyfrau a Howto's ar Linux a Meddalwedd Rhydd"
-
-#: share/compssUsers.pl:75 share/compssUsers.pl:178
-#, c-format
-msgid "LSB"
-msgstr "LSB"
-
-#: share/compssUsers.pl:76 share/compssUsers.pl:179
-#, c-format
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Linux Standard Base. Cefnogaeth i raglenni trydydd parti"
-
-#: share/compssUsers.pl:86
-#, c-format
-msgid "Apache"
-msgstr "Apache"
-
-#: share/compssUsers.pl:89
-#, c-format
-msgid "Groupware"
-msgstr "Grwpwar"
-
-#: share/compssUsers.pl:90
-#, c-format
-msgid "Kolab Server"
-msgstr "Gweinydd Kolab"
-
-#: share/compssUsers.pl:93 share/compssUsers.pl:134
-#, c-format
-msgid "Firewall/Router"
-msgstr "Mur Gwarchod/Llwybrydd"
-
-#: share/compssUsers.pl:94 share/compssUsers.pl:135
-#, c-format
-msgid "Internet gateway"
-msgstr "Porth i'r rhyngrwyd"
-
-#: share/compssUsers.pl:97
-#, c-format
-msgid "Mail/News"
-msgstr "E-bost/Newyddion"
-
-#: share/compssUsers.pl:98
-#, c-format
-msgid "Postfix mail server, Inn news server"
-msgstr "Gweinydd e-bost Postfix, gweinydd newyddion Inn"
-
-#: share/compssUsers.pl:101
-#, c-format
-msgid "Directory Server"
-msgstr "Cyfeiriadur Gweinydd"
-
-#: share/compssUsers.pl:105
-#, c-format
-msgid "FTP Server"
-msgstr "Gweinydd FTP"
-
-#: share/compssUsers.pl:106
-#, c-format
-msgid "ProFTPd"
-msgstr "ProFTPd"
-
-#: share/compssUsers.pl:109
-#, c-format
-msgid "DNS/NIS"
-msgstr "DNS/NIS"
-
-#: share/compssUsers.pl:110
-#, c-format
-msgid "Domain Name and Network Information Server"
-msgstr "Gweinydd Enw Parth a Gwybodaeth Rhwydwaith"
-
-#: share/compssUsers.pl:113
-#, c-format
-msgid "File and Printer Sharing Server"
-msgstr "Gweinydd Ffeil a Rhannu Argraffydd"
-
-#: share/compssUsers.pl:114
-#, c-format
-msgid "NFS Server, Samba server"
-msgstr "Gweinydd NSF, gweinydd Samba"
-
-#: share/compssUsers.pl:117 share/compssUsers.pl:130
-#, c-format
-msgid "Database"
-msgstr "Cronfa Ddata"
-
-#: share/compssUsers.pl:118
-#, c-format
-msgid "PostgreSQL and MySQL Database Server"
-msgstr "Gweinydd cronfa data PostgreSQL neu MySQL"
-
-#: share/compssUsers.pl:122
-#, c-format
-msgid "Web/FTP"
-msgstr "Gwe/FTP"
-
-#: share/compssUsers.pl:123
-#, c-format
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: share/compssUsers.pl:126
-#, c-format
-msgid "Mail"
-msgstr "E-bost"
-
-#: share/compssUsers.pl:127
-#, c-format
-msgid "Postfix mail server"
-msgstr "Gweinydd e-bost Postfix"
-
-#: share/compssUsers.pl:131
-#, c-format
-msgid "PostgreSQL or MySQL database server"
-msgstr "Gweinydd cronfa data PostgreSQL neu MySQL"
-
-#: share/compssUsers.pl:138
-#, c-format
-msgid "Network Computer server"
-msgstr "Gweinydd Cyfrifiadur Rhwydwaith"
-
-#: share/compssUsers.pl:139
-#, c-format
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "Gweinydd NFS, gweinydd SMB, gweinydd dirprwyol, gweinydd ssh"
-
-#: share/compssUsers.pl:147
-#, c-format
-msgid "KDE Workstation"
-msgstr "Man Gwaith KDE"
-
-#: share/compssUsers.pl:148
-#, c-format
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"KDE - Amgylchedd Bwrdd gwaith K, yr amgylchedd graffig sylfaenol gyda "
-"chasgliad o offer"
-
-#: share/compssUsers.pl:152
-#, c-format
-msgid "GNOME Workstation"
-msgstr "Man Gwaith Gnome"
-
-#: share/compssUsers.pl:153
-#, c-format
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Amgylchedd graffig gyda chasgliad o raglenni ac offer bwrdd gwaith hawdd eu "
-"defnyddio."
-
-#: share/compssUsers.pl:156
-#, c-format
-msgid "IceWm Desktop"
-msgstr "Bwrdd Gwaith IceWm"
-
-#: share/compssUsers.pl:160
-#, c-format
-msgid "Other Graphical Desktops"
-msgstr "Byrddau Gwaith Graffigol Eraill"
-
-#: share/compssUsers.pl:161
-#, c-format
-msgid "Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Window Maker, Enlightenment, Fvwm, ag ati"
-
-#: share/compssUsers.pl:184
-#, c-format
-msgid "Utilities"
-msgstr "Gwasanaethau"
-
-#: share/compssUsers.pl:186 share/compssUsers.pl:187 standalone/logdrake:384
-#, c-format
-msgid "SSH Server"
-msgstr "Gweinydd SSH"
-
-#: share/compssUsers.pl:191
-#, c-format
-msgid "Webmin"
-msgstr "Webmin"
-
-#: share/compssUsers.pl:192
-#, c-format
-msgid "Webmin Remote Configuration Server"
-msgstr "Gweinydd Ffurfweddiad Pell Webmin"
-
-#: share/compssUsers.pl:196
-#, c-format
-msgid "Network Utilities/Monitoring"
-msgstr "Gwasanaethau Rhwydwaith/Monitro"
-
-#: share/compssUsers.pl:197
-#, c-format
-msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
-msgstr "Offer monitro, cyfrifo prosesau, tcpdunp, nmap..."
-
-#: share/compssUsers.pl:201
-#, c-format
-msgid "Mandriva Wizards"
-msgstr "Dewiniaid Mandriva"
-
-#: share/compssUsers.pl:202
-#, c-format
-msgid "Wizards to configure server"
-msgstr "dewiniaid i ffurfweddu gweinydd"
-
-#: standalone.pm:23
+#: standalone.pm:24
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
@@ -16971,7 +6417,8 @@ msgid ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
msgstr ""
"Mae'r rhaglen hon yn feddalwedd rhydd; gallwch ei ailddosbarthu\n"
"a/neu ei newid o dan amodau Trwydded Gyhoeddus Gyffredinol GNU\n"
@@ -16986,10 +6433,10 @@ msgstr ""
"\n"
" Dylech fod wedi derbyn copi o Drwydded Gyhoeddus Gyffredinol GNU\n"
" gyda'r rhaglen; os nad, ysgrifennwch at:\n"
-" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n"
-"MA 02111-1307, USA\n"
+" Free Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-"
+"1301, USA.\n"
-#: standalone.pm:42
+#: standalone.pm:43
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
@@ -17016,7 +6463,7 @@ msgstr ""
"--help : show this message.\n"
"--version : show version number.\n"
-#: standalone.pm:54
+#: standalone.pm:55
#, c-format
msgid ""
"[--boot] [--splash]\n"
@@ -17031,7 +6478,7 @@ msgstr ""
" --splash - galluogi i ffurfweddu thema cychwyn\n"
"Modd rhag.:cynnig ffurfweddu nodwedd awto fewngofnodi"
-#: standalone.pm:59
+#: standalone.pm:60
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
@@ -17048,7 +6495,7 @@ msgstr ""
" --report - dylai'r rhaglen fod yn un o offer Mandriva Linux\n"
" --incident - ylai'r rhaglen fod yn un o offer Mandriva Linux"
-#: standalone.pm:65
+#: standalone.pm:66
#, c-format
msgid ""
"[--add]\n"
@@ -17065,7 +6512,7 @@ msgstr ""
" --internet - ffurfweddu'r rhyngrwyd\n"
" --wizard - fel --add"
-#: standalone.pm:71
+#: standalone.pm:72
#, c-format
msgid ""
"\n"
@@ -17096,7 +6543,7 @@ msgstr ""
" : name_of_application like so for staroffice \n"
" : and gs for ghostscript for only this one."
-#: standalone.pm:86
+#: standalone.pm:87
#, c-format
msgid ""
"[OPTIONS]...\n"
@@ -17127,17 +6574,17 @@ msgstr ""
"--delclient : dileu peiriant cleient i MTS (angen cyfeiriad MAC, IP, "
"enw delwedd nbi)"
-#: standalone.pm:98
+#: standalone.pm:99
#, c-format
msgid "[keyboard]"
msgstr "[bysellfwrdd]"
-#: standalone.pm:99
+#: standalone.pm:100
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-#: standalone.pm:100
+#: standalone.pm:101
#, c-format
msgid ""
"[OPTIONS]\n"
@@ -17160,12 +6607,7 @@ msgstr ""
"--status : returns 1 if connected 0 otherwise, then exit.\n"
"--quiet : do not be interactive. To be used with (dis)connect."
-#: standalone.pm:109
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: standalone.pm:110
+#: standalone.pm:111
#, c-format
msgid ""
"[OPTION]...\n"
@@ -17184,7 +6626,7 @@ msgstr ""
"description window\n"
" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
-#: standalone.pm:115
+#: standalone.pm:116
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
@@ -17193,7 +6635,7 @@ msgstr ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
-#: standalone.pm:116
+#: standalone.pm:117
#, c-format
msgid ""
" [everything]\n"
@@ -17204,7 +6646,7 @@ msgstr ""
" XFdrake [--noauto] monitor\n"
" cydraniad XFdrake"
-#: standalone.pm:149
+#: standalone.pm:150
#, c-format
msgid ""
"\n"
@@ -17215,9765 +6657,102 @@ msgstr ""
"Defnydd: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
-#: standalone/XFdrake:59
-#, c-format
-msgid "You need to reboot for changes to take effect"
-msgstr "Rhaid ailgychwyn i'r newidiadau ddod i rym"
-
-#: standalone/XFdrake:90
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Allgofnodwch ac yna defnyddiwch Ctrl Alt-BackSpace"
-
-#: standalone/XFdrake:94
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr "Rhaid allgofnodi ac i mewn eto i newidiadau ddigwydd."
-
-#: standalone/drakTermServ:112 standalone/drakTermServ:118
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: mae %s angen enw gwesteiwr...\n"
-
-#: standalone/drakTermServ:129
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: mae %s angen enw gwesteiwr, cyfeiriad MAC, IP, nbi-image, 0/1 ar gyfer "
-"THIN_CLIENT, 0/1 ar gyfer Ffurfweddiad Lleol...\n"
-
-#: standalone/drakTermServ:135
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: mae %s angen enw gwesteiwr...\n"
-
-#: standalone/drakTermServ:144
-#, c-format
-msgid "Host name for client"
-msgstr "Enw gwesteiwr ar gyfer y cleient"
-
-#: standalone/drakTermServ:145
-#, c-format
-msgid "MAC address should be in the format 00:11:22:33:44:55"
-msgstr "Dylai'r cyfeiriad MAC fod ar fformat 00:11:22:33:44:55"
-
-#: standalone/drakTermServ:146
-#, c-format
-msgid "IP address to be assigned to client"
-msgstr "Rhaid dynodi cyfeiriad IP i gleient"
-
-#: standalone/drakTermServ:147
-#, c-format
-msgid "Kernel/network adapter image to use to boot client"
-msgstr ""
-"Y ddelwedd cnewyllyn/addasydd rhwydwaith i'w ddefnyddio i gychwyn y cleient"
-
-#: standalone/drakTermServ:148
-#, c-format
-msgid "Create masking files to allow configuration tools to run on client"
-msgstr "Creu ffeiliau masgio i ganiatáu i offer ffurfweddu redeg ar y cleient"
-
-#: standalone/drakTermServ:149
-#, c-format
-msgid "Applications will run on server machine"
-msgstr "Bydd rhaglenni'n rhedeg ar beiriant gweinydd"
-
-#: standalone/drakTermServ:234 standalone/drakTermServ:237
-#, c-format
-msgid "Terminal Server Configuration"
-msgstr "Enwch Wasanaethwr Ffurfweddiad"
-
-#: standalone/drakTermServ:243
-#, c-format
-msgid "dhcpd Config"
-msgstr "Ffurfweddu dhcpd"
-
-#: standalone/drakTermServ:247
-#, c-format
-msgid "Enable Server"
-msgstr "Galluogi'r Gweinydd"
-
-#: standalone/drakTermServ:253
-#, c-format
-msgid "Disable Server"
-msgstr "Analluogi'r Gweinydd"
-
-#: standalone/drakTermServ:259
-#, c-format
-msgid "Start Server"
-msgstr "Cychwyn y Gweinydd"
-
-#: standalone/drakTermServ:265
-#, c-format
-msgid "Stop Server"
-msgstr "Atal y Gweinydd"
-
-#: standalone/drakTermServ:274
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot Floppy/ISO"
-
-#: standalone/drakTermServ:278
-#, c-format
-msgid "Net Boot Images"
-msgstr "Delweddau Cychwyn y Rhwyd"
-
-#: standalone/drakTermServ:285
-#, c-format
-msgid "Add/Del Users"
-msgstr "Ychwanegu/Diddymu Defnyddwyr"
-
-#: standalone/drakTermServ:289
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Ychwanegu/Dileu Cleientiaid"
-
-#: standalone/drakTermServ:297
-#, c-format
-msgid "Images"
-msgstr "Delweddau"
-
-#: standalone/drakTermServ:298
-#, c-format
-msgid "Clients/Users"
-msgstr "Cleientiaid/Defnyddwyr"
-
-#: standalone/drakTermServ:316 standalone/drakbug:47
-#, c-format
-msgid "First Time Wizard"
-msgstr "Dewin Tro Cyntaf"
-
-#: standalone/drakTermServ:354 standalone/drakTermServ:355
-#, c-format
-msgid "%s defined as dm, adding gdm user to /etc/passwd$$CLIENT$$"
-msgstr "Diffinio %s fel dm, ychwanegu defnyddiwr gdm i /etc/passwd$$CLIENT$$"
-
-#: standalone/drakTermServ:361
-#, c-format
-msgid ""
-"\n"
-" This wizard routine will:\n"
-" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
-"\t2) Setup DHCP.\n"
-"\t\n"
-"After doing these steps, the wizard will:\n"
-"\t\n"
-" a) Make all "
-"nbis. \n"
-" b) Activate the "
-"server. \n"
-" c) Start the "
-"server. \n"
-" d) Synchronize the shadow files so that all users, including root, \n"
-" are added to the shadow$$CLIENT$$ "
-"file. \n"
-" e) Ask you to make a boot floppy.\n"
-" f) If it's thin clients, ask if you want to restart KDM.\n"
-msgstr ""
-"\n"
-" Bydd y Dewin yn:\n"
-" \t1) Gofyn i chi ddewis un ai cleient 'tenau' neu 'tew'.\n"
-"\t2) Gosod DHCP.\n"
-"\t\n"
-"Wedi gwneud hyn, bydd y Dewin yn:\n"
-"\t\n"
-" a) Make pob "
-"nbis. \n"
-" b) Gweithredu'r "
-"gweinydd. \n"
-" c) Cychwyn y gwasanaethwr. \n"
-" d) Cydweddu'r ffeiliau cysgod fel bo'r holl ddefnyddwyr, gan gynnwys "
-"root, \n"
-" yn cael eu hychwanegu at y ffeil cysgod$$CLIENT$$ "
-"file. \n"
-" e) Gofyn i chi wneud disg meddal cychwyn.\n"
-" f) Os yw'n gleient tenau KDM.\n"
-
-#: standalone/drakTermServ:407
-#, c-format
-msgid "Cancel Wizard"
-msgstr "Diddymu'r Dewin"
-
-#: standalone/drakTermServ:422
-#, c-format
-msgid "Please save dhcpd config!"
-msgstr "Cadwch ffurfweddiad dhcpd!"
-
-#: standalone/drakTermServ:450
-#, c-format
-msgid "Use thin clients."
-msgstr "Defnyddiwch gleientiaid tenau"
-
-#: standalone/drakTermServ:452
-#, c-format
-msgid "Sync client X keyboard settings with server."
-msgstr "Cydweddu gosodiadau bysellfwrdd clientX gyda gweinydd"
-
-#: standalone/drakTermServ:454
-#, c-format
-msgid ""
-"Please select default client type (Fat is the default type if 'Use thin' is "
-"unchecked).\n"
-" 'Thin' clients run everything off the server's CPU/RAM, using the client "
-"display.\n"
-" 'Fat' clients use their own CPU/RAM but the server's filesystem."
-msgstr ""
-"Dewis y math o gleient rhagosodedig. (Fat yw'r math arferol os yw' Defnyddio "
-"tenau' heb ei dicio)\n"
-" Cleient 'Tenau' sy'n rhedeg popeth oddi ar CPU/RAM gweinydd, gyda "
-"dangosydd cleient.\n"
-" Cleient 'Tew' sy'n defnyddio eu CPU/RAM eu hun ond system ffeiliau'r "
-"gweinydd."
-
-#: standalone/drakTermServ:474
-#, c-format
-msgid "Creating net boot images for all kernels"
-msgstr "Creu delwedd cychwyn rhyngrwyd ar gyfer pob cnewyllyn"
-
-#: standalone/drakTermServ:475 standalone/drakTermServ:807
-#: standalone/drakTermServ:823
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Bydd hyn yn cymryd rhai munudau"
-
-#: standalone/drakTermServ:481 standalone/drakTermServ:521
-#, c-format
-msgid "Done!"
-msgstr "Gorffen!"
-
-#: standalone/drakTermServ:492 standalone/drakTermServ:894
-#, c-format
-msgid "%s failed"
-msgstr "Methodd %s"
-
-#: standalone/drakTermServ:501
-#, c-format
-msgid ""
-"Not enough space to create\n"
-"NBIs in %s.\n"
-"Needed: %d MB, Free: %d MB"
-msgstr ""
-"Dim digon o le i greu\n"
-"NBIs yn %s.\n"
-"Angen: %d MB, Rhydd: %d MB"
-
-#: standalone/drakTermServ:507
-#, c-format
-msgid "Syncing server user list with client list, including root."
-msgstr ""
-"Cydweddu rhestr defnyddwyr y gweinydd gyda'r rhestr cleient, gan gynnwys "
-"gwraidd."
-
-#: standalone/drakTermServ:527
-#, c-format
-msgid ""
-"In order to enable changes made for thin clients, the display manager must "
-"be restarted. Restart now?"
-msgstr ""
-"Er mwyn galluogi newidiadau i'r cleient tenau, rhaid i'r rheolwr arddangos "
-"gael ei gychwyn. Cychwyn?"
-
-#: standalone/drakTermServ:564
-#, c-format
-msgid "Terminal Server Overview"
-msgstr "Trosolwg Gweinydd Terfynell"
-
-#: standalone/drakTermServ:565
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and %s is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-" - Creu Delwedd Cychwynnwr Galluogi Etherboot:\n"
-" \t\tI gychwyn y cnewyllyn drwy etherboot, rhaid creu delwedd "
-"cnewyllyn/initrd\n"
-" \tarbennig. Mae tmkinitrd-net yn gwneud llawer o'r gwaith ac mae %s "
-"y\n"
-" \trhyngwyneb graffigol iddo i gynorthwyo rheoli/addasu'r delweddau. "
-"I greu'r ffeil\n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.dylech greu'r ddelwedd etherboot "
-"ar gyfer o leiaf u\n"
-" \tcnewyllyn llawn."
-
-#: standalone/drakTermServ:571
-#, c-format
-msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. %s helps create/"
-"remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
-msgstr ""
-" - Cynnal /etc/dhcpd.conf:\n"
-" \t\tIgychwyn cleient o'r rhyngrwyd mae pob cleient angen cofnod "
-"dhcpd.conf ei hun, \t\tI ddynodi cyfeiriad IP a delwedd cychwyn "
-"rhyngrwyd i'r peiriant. Mae %s\n"
-" \t\tyn gallu gosod/tynnu rhain\n"
-"\t\t\t\n"
-" \t\t(Gall cardiau PCI hepgor y ddelwedd - bydd etherboot yn gofyn am "
-"y ddelwedd gywir. Dylech\n"
-" \t\thefyd ystyried pan fo etherboot yn chwilio am y ddelwedd, bydd "
-"yn disgwyl enwau fel\n"
-" \t\tboot-3c59x.nbi, yn lle boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tMae stanza dhcpd.conf arferol i gynnal cleient di-ddisg yn "
-"edrych fel:"
-
-#: standalone/drakTermServ:589
-#, c-format
-msgid ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be "
-"'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, \n"
-" %s is written for thin clients. \n"
-" System config files xdm-config, kdmrc, and gdm.conf are modified if "
-"thin clients are \n"
-" used, to enable XDMCP. Since there are security issues in using "
-"XDMCP, hosts.deny and \n"
-" hosts.allow are modified to limit access to the local subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-msgstr ""
-" Er bod modd defnyddio casgliad o gyfeiriadau IP, yn lle gosod cofnod "
-"penodol ar\n"
-" beiriant cleient, mae defnyddio cynllun cyfeiriad sefydlog yn "
-"caniatáu defnyddio\n"
-" tnodweddion ffeiliau ffurfweddu cleient penodol mae %s yn darparu.\n"
-"\t\t\t\n"
-" Sylwer: Mae'r cofnod \"#type\" yn cael ei ddefnyddio gan %s yn unig. "
-"Clients can either be 'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, %s is\n"
-" written for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-" modified if thin clients are used, to enable XDMCP. Since there are "
-"security issues in \n"
-" using XDMCP, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-" subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-
-#: standalone/drakTermServ:609
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-msgstr ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-
-#: standalone/drakTermServ:621
-#, c-format
-msgid ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. \n"
-" \t%s helps in this respect by adding or removing system users from "
-"this \n"
-" \tfile."
-msgstr ""
-" - Cynnal %s:\n"
-" \t\tAr gyfer defnyddwyr sy'n gallu mewngofnodi i system o gleient di "
-"ddisg, \n"
-" \t\trhaid dyblygu eu cofnod/etc/shadow yn %s. \n"
-" \t\t%s helps yn yr achos hwn drwy ychwanegu neu dynnu defnyddwyr \n"
-" \t o'r ffeil."
-
-#: standalone/drakTermServ:626
-#, c-format
-msgid ""
-" - Per client %s:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t%s will help create these files."
-msgstr ""
-" - Cleient Unigol %s:\n"
-" \t\tDrwy %s, mae modd i bob cleient gael ei ffeiliau ffurfweddiad ei "
-"hun\n"
-" \t\tar system ffeiliau gwraidd y gweinydd. Drwy ganiatáu "
-"ffurfweddiad caledwedd cleient,\n"
-" \t\tbydd %s yn cynorthwyo i greu'r ffeiliau hyn."
-
-#: standalone/drakTermServ:631
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-msgstr ""
-" - Ffeiliau ffurfweddi system cleient unigol:\n"
-" \t\tDrwy %s, mae modd i bob cleient di-ddisg gael ei ffeiliau "
-"ffurfweddu ei hun\n"
-" \t\tar system ffeiliau gwraidd y gweinydd. Drwy ganiatáu "
-"ffurfweddiad caledwedd \n"
-" \tcleient lleol, mae modd addasu ffeiliau fel /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t\t/etc/sysconfig/keyboard ar sail cleient.\n"
-"\n"
-" Sylw: Mae galluogi ffurfweddiad cleient lleol yn galluogi "
-"mewngofnodi gwraidd i'r gweinydd\n"
-" terfynell ar bob un o'ch peiriannau cleient sydd a'r nodwedd hon "
-"wedi ei alluogi. Mae modd diffodd\n"
-" ffurfweddiad lleol, cadw'r ffeiliau ffurfweddu, un waith mae'r "
-"peiriant cleient wedi ei ffurfweddu"
-
-#: standalone/drakTermServ:640
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s will configure this file to work in conjunction with the images "
-"created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical TFTP configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
-msgstr ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\tBydd %s yn ffurfweddu'r ffeil i weithio ar y cyd gyda delweddau "
-"a grëwyd gan\n"
-" \t\tmkinitrd-net, a'r cofnodion yn /etc/dhcpd.conf, i wasanaethu'r "
-"ddelwedd cychwyn i bob\n"
-" \t\tcleient di-ddisg.\n"
-"\n"
-" \t\tMae ffeil ffurfweddu TFTP nodweddiadol yn edrych fel hyn:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \t\tMae'r newidiadau yma o'r gosodiad rhagosodedig yn newid y faner "
-"analluogi i \n"
-" \t\t'na' a newid llwybr cyfeiriadur i /var/lib/tftpboot, lle mae "
-"mkinitrd-net\n"
-" \t\tyn gosod ei ddelweddau."
-
-#: standalone/drakTermServ:661
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-msgstr ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-
-#: standalone/drakTermServ:694
-#, c-format
-msgid "Boot Floppy"
-msgstr "Disg Meddal Cychwyn"
-
-#: standalone/drakTermServ:696
-#, c-format
-msgid "Boot ISO"
-msgstr "Cychwyn yr ISO"
-
-#: standalone/drakTermServ:698
-#, c-format
-msgid "PXE Image"
-msgstr "Delwedd PXE"
-
-#: standalone/drakTermServ:759
-#, c-format
-msgid "Default kernel version"
-msgstr "Fersiwn rhagosodedig y cnewyllyn"
-
-#: standalone/drakTermServ:764
-#, c-format
-msgid "Create PXE images"
-msgstr "Creu delweddau PXE"
-
-#: standalone/drakTermServ:765
-#, c-format
-msgid "Use Unionfs (TS2)"
-msgstr "Defnyddio Unionfs (TS2)"
-
-#: standalone/drakTermServ:795
-#, c-format
-msgid "Install i586 kernel for older clients"
-msgstr "Gosod cnewyllyn i586 ar gyfer cleientiaid hŷn"
-
-#: standalone/drakTermServ:805
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Adeiladu'r cnewyllyn cyfan -->"
-
-#: standalone/drakTermServ:812
-#, c-format
-msgid "No kernel selected!"
-msgstr "Heb ddewis cnewyllyn"
-
-#: standalone/drakTermServ:815
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Adeiladau NIC unigol -->"
-
-#: standalone/drakTermServ:819 standalone/drakTermServ:1643
-#, c-format
-msgid "No NIC selected!"
-msgstr "Heb ddewis NIC!"
-
-#: standalone/drakTermServ:822
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Adeiladu pob cnewyllyn -->"
-
-#: standalone/drakTermServ:835
-#, c-format
-msgid ""
-"Custom\n"
-"kernel args"
-msgstr ""
-"Addasu\n"
-"ym cnewyllyn"
-
-#: standalone/drakTermServ:840
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Dileu"
-
-#: standalone/drakTermServ:845
-#, c-format
-msgid "No image selected!"
-msgstr "Delwedd heb ei ddewis!"
-
-#: standalone/drakTermServ:848
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Dileu Pob NBI"
-
-#: standalone/drakTermServ:925
-#, c-format
-msgid "Building images for kernel:"
-msgstr "Creu delwedd ar gyfer y cnewyllyn"
-
-#: standalone/drakTermServ:1050
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"Mae !!! yn dangos bod y cyfrinair yng nghronfa ddata'r system yn\n"
-"wahanol i'r un yng nghronfa ddata'r Gweinydd Terfynell.\n"
-"I fewngofnodi i'r Gweinydd Terfynell i ddileu/ail ychwanegu’r defnyddiwr."
-
-#: standalone/drakTermServ:1055
-#, c-format
-msgid "Add User -->"
-msgstr "Pob Defnyddiwr -->"
-
-#: standalone/drakTermServ:1061
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- Dileu Defnyddiwr"
-
-#: standalone/drakTermServ:1097
-#, c-format
-msgid "type: %s"
-msgstr "math: %s"
-
-#: standalone/drakTermServ:1101
-#, c-format
-msgid "local config: %s"
-msgstr "Ffurfweddiad lleol: %s"
-
-#: standalone/drakTermServ:1136
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Caniatáu ffurfweddiad\n"
-"caledwedd lleol"
-
-#: standalone/drakTermServ:1146
-#, c-format
-msgid "No net boot images created!"
-msgstr "Heb greu delweddau cychwyn y rhwyd!"
-
-#: standalone/drakTermServ:1165
-#, c-format
-msgid "Thin Client"
-msgstr "Cleient Tenau"
-
-#: standalone/drakTermServ:1169
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "Caniatáu Cleientiaid Tenau"
-
-#: standalone/drakTermServ:1170
-#, c-format
-msgid ""
-"Sync client X keyboard\n"
-" settings with server."
-msgstr ""
-"Cydweddu gosodiadau\n"
-" bysellfwrdd clientX gyda gweinydd"
-
-#: standalone/drakTermServ:1171
-#, c-format
-msgid "Add Client -->"
-msgstr "Ychwanegu Cleient -->"
-
-#: standalone/drakTermServ:1181
-#, c-format
-msgid "Unknown MAC address format"
-msgstr "Fformat MAC anhysbys"
-
-#: standalone/drakTermServ:1195
-#, c-format
-msgid "type: fat"
-msgstr "math: fat"
-
-#: standalone/drakTermServ:1196
-#, c-format
-msgid "type: thin"
-msgstr "math: tenau"
-
-#: standalone/drakTermServ:1203
-#, c-format
-msgid "local config: false"
-msgstr "ffurfweddiad lleol: false"
-
-#: standalone/drakTermServ:1204
-#, c-format
-msgid "local config: true"
-msgstr "ffurfweddiad lleol: true"
-
-#: standalone/drakTermServ:1212
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Golygu Cleient"
-
-#: standalone/drakTermServ:1237
-#, c-format
-msgid "Disable Local Config"
-msgstr "Analluogi Ffurfweddiad Lleol"
-
-#: standalone/drakTermServ:1244
-#, c-format
-msgid "Delete Client"
-msgstr "Diddymu Cleient"
-
-#: standalone/drakTermServ:1267
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-"Mae angen cychwyn y Rheolwr Dangosydd i'r newid ddigwydd.\n"
-"(ailgychwyn gwasanaeth dm - yn y consol)"
-
-#: standalone/drakTermServ:1313
-#, c-format
-msgid "Thin clients will not work with autologin. Disable autologin?"
-msgstr ""
-"Nid yw'r cleientiaid tennau'n gweithio gydag awto fewngofnodi. Anablu awto "
-"fewngofnodi?"
-
-#: standalone/drakTermServ:1328
-#, c-format
-msgid "All clients will use %s"
-msgstr "Bydd pob cleient yn defnyddio %s"
-
-#: standalone/drakTermServ:1362
-#, c-format
-msgid "Subnet:"
-msgstr "Isnet:"
-
-#: standalone/drakTermServ:1369
-#, c-format
-msgid "Netmask:"
-msgstr "Netmask:"
-
-#: standalone/drakTermServ:1376
-#, c-format
-msgid "Routers:"
-msgstr "Llwybryddion:"
-
-#: standalone/drakTermServ:1383
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Masg Isnet"
-
-#: standalone/drakTermServ:1390
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Cyfeiriad Darlledu:"
-
-#: standalone/drakTermServ:1397
-#, c-format
-msgid "Domain Name:"
-msgstr "Enw Parth:"
-
-#: standalone/drakTermServ:1405
-#, c-format
-msgid "Name Servers:"
-msgstr "Enwi Gweinydd:"
-
-#: standalone/drakTermServ:1416
-#, c-format
-msgid "IP Range Start:"
-msgstr "Cychwyn Amrediad IP:"
-
-#: standalone/drakTermServ:1417
-#, c-format
-msgid "IP Range End:"
-msgstr "Diwedd Amrediad IP:"
-
-#: standalone/drakTermServ:1459
-#, c-format
-msgid "Append TS Includes To Existing Config"
-msgstr "Atodi TS yn Gynwysiedig i'r Ffurfwediad Presennol"
-
-#: standalone/drakTermServ:1461
-#, c-format
-msgid "Write Config"
-msgstr "Ysgrifennu ffurfweddu"
-
-#: standalone/drakTermServ:1477
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Ffurfweddiad Gweinydd dhcpd"
-
-#: standalone/drakTermServ:1478
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"Tynnwyd y rhan fwyaf o'r gwerthoedd\n"
-"hyn o'ch system ar waith.\n"
-"Gallwch eu newid yn ôl y galw."
-
-#: standalone/drakTermServ:1481
-#, c-format
-msgid ""
-"Dynamic IP Address Pool\n"
-"(needed for PXE clients):"
-msgstr ""
-"Pwll Cyfeiriad IP Dynamig\n"
-"(ar gyfer rhaglenni PXE):"
-
-#: standalone/drakTermServ:1634
-#, c-format
-msgid "Write to %s failed!"
-msgstr "Methodd ysgrifenu at %s!"
-
-#: standalone/drakTermServ:1647
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Mewnosodwch ddisg meddal:"
-
-#: standalone/drakTermServ:1651
-#, c-format
-msgid "Could not access the floppy!"
-msgstr "Methu cael mynediad i'r disg meddal!"
-
-#: standalone/drakTermServ:1653
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Mae modd tynnu'r disg meddal nawr"
-
-#: standalone/drakTermServ:1656
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Does dim gyrrwr disg meddal ar gael!"
-
-#: standalone/drakTermServ:1662
-#, c-format
-msgid "PXE image is %s/%s"
-msgstr "Delwedd PXE yw %s/%s"
-
-#: standalone/drakTermServ:1664
-#, c-format
-msgid "Error writing %s/%s"
-msgstr "Gwall ysgrifennu %s/%s"
-
-#: standalone/drakTermServ:1676
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "%s yw'r ddelwedd ISO etherboot"
-
-#: standalone/drakTermServ:1680
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Aeth rhywbeth o'i le! - ydy mkisofs wedi ei osod?"
-
-#: standalone/drakTermServ:1700
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Mae angen creu /etc/dhcpd.conf yn gyntaf"
-
-#: standalone/drakTermServ:1867
-#, c-format
-msgid "%s passwd bad in Terminal Server - rewriting...\n"
-msgstr "%s passwd gwael yng Ngweinydd Terfynell - ail ysgrifennu...\n"
-
-#: standalone/drakTermServ:1880
-#, c-format
-msgid "%s is not a user..\n"
-msgstr "Nid yw %s yn ddefnyddiwr..\n"
-
-#: standalone/drakTermServ:1881
-#, c-format
-msgid "%s is already a Terminal Server user\n"
-msgstr "Mae %s yn ddefnyddiwr Gweinydd Terfynell eisoes\n"
-
-#: standalone/drakTermServ:1883
-#, c-format
-msgid "Addition of %s to Terminal Server failed!\n"
-msgstr "Methodd ychwanegu %s 'r Gweinydd Terfynell\n"
-
-#: standalone/drakTermServ:1885
-#, c-format
-msgid "%s added to Terminal Server\n"
-msgstr "Ychwanegu %s i'r Gweinydd Terfynell\n"
-
-#: standalone/drakTermServ:1903
-#, c-format
-msgid "Deleted %s...\n"
-msgstr "Dilëwyd %s...\n"
-
-#: standalone/drakTermServ:1905 standalone/drakTermServ:1978
-#, c-format
-msgid "%s not found...\n"
-msgstr "Heb ganfod %s...\n"
-
-#: standalone/drakTermServ:2006
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
-"Mae /etc/hosts.allow and /etc/hosts.deny wedi eu ffurfweddu - dim newid"
-
-#: standalone/drakTermServ:2158
-#, c-format
-msgid "Configuration changed - restart %s/dhcpd?"
-msgstr "Newidiodd ffurfweddiad - ailgychwyn %s/dhcpd?"
-
-#: standalone/drakautoinst:38 standalone/drakhosts:123
-#: standalone/drakhosts:129 standalone/draknfs:84 standalone/draknfs:105
-#: standalone/draknfs:444 standalone/draknfs:447 standalone/draknfs:539
-#: standalone/draknfs:546 standalone/draksambashare:187
-#: standalone/draksambashare:208 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Error!"
-msgstr "Gwall!"
-
-#: standalone/drakautoinst:39
-#, c-format
-msgid "I can not find needed image file `%s'."
-msgstr "Methu canfod ffeil delwedd angenrheidiol '%s'."
-
-#: standalone/drakautoinst:41
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Ffurfweddwr Awto-Osod"
-
-#: standalone/drakautoinst:42
-#, c-format
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Press ok to continue."
-msgstr ""
-"Rydych ar fin ffurfweddu disg meddal Gosod Awtomatig. Mae'r nodwedd hon "
-"braidd yn beryglus a dylid ei ddefnyddio gyda gofal.\n"
-"\n"
-"Gyda'r nodwedd hon, bydd modd ailchwarae’r gosodiad ar y cyfrifiadur, gan "
-"eich holi'n rhyngweithiol ar gyfer rhai camau, er mwyn newid eu gwerthoedd.\n"
-"\n"
-"\n"
-"I fod yn gwbl ddiogel ni fydd y rhannu a'r fformatio'n cael ei wneud yn "
-"awtomatig, beth bynnag wnewch chi wrth osod y cyfrifiadur.\n"
-"\n"
-"Cliciwch iawn i barhau?"
-
-#: standalone/drakautoinst:60
-#, c-format
-msgid "replay"
-msgstr "ail chwarae"
-
-#: standalone/drakautoinst:60 standalone/drakautoinst:69
-#, c-format
-msgid "manual"
-msgstr "llaw"
-
-#: standalone/drakautoinst:64
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Ffurfweddiad Camau Awtomatig"
-
-#: standalone/drakautoinst:65
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Dewiswch ar gyfer pob cam a fydd yn ail chwarae fel eich gosodiad, neu a "
-"fydd gyda llaw"
-
-#: standalone/drakautoinst:77 standalone/drakautoinst:78
-#: standalone/drakautoinst:92
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Creu disg meddal awto gosod"
-
-#: standalone/drakautoinst:90
-#, c-format
-msgid "Insert another blank floppy in drive %s (for drivers disk)"
-msgstr "Rhowch ddisg meddal yng ngyrrwr %s (ar gyfer disg gyrwyr)"
-
-#: standalone/drakautoinst:91
-#, c-format
-msgid "Creating auto install floppy (drivers disk)"
-msgstr "Creu disg meddal awto gosod (disg gyrwyr)"
-
-#: standalone/drakautoinst:156
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Croeso\n"
-"\n"
-"Mae paramedrau'r awto osod i'w cael yn yr adran ar y chwith"
-
-#: standalone/drakautoinst:251
-#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Mae'r disg meddal wedi ei gynhyrchu'n llwyddiannus. \n"
-"Gallwch ail chwarae eich gosodiad."
-
-#: standalone/drakautoinst:287
-#, c-format
-msgid "Auto Install"
-msgstr "Awto Gosod"
-
-#: standalone/drakautoinst:356
-#, c-format
-msgid "Add an item"
-msgstr "Ychwanegu eitem"
-
-#: standalone/drakautoinst:363
-#, c-format
-msgid "Remove the last item"
-msgstr "Tynnu'r eitem olaf"
-
-#: standalone/drakbackup:157
-#, c-format
-msgid ""
-"Expect is an extension to the TCL scripting language that allows interactive "
-"sessions without user intervention."
-msgstr ""
-"Mae Expect yn estyniad o'r iaith sgriptio TCL sy'n caniatáu sesiynau "
-"rhyngweithiol heb ymyrraeth y defnyddiwr."
-
-#: standalone/drakbackup:158
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "Cadw'r gyfrinach ar gyfer y system yn ffurfweddiad drakbackup."
-
-#: standalone/drakbackup:159
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
-"Ar gyfer CD aml sesiwn, dim ond y sesiwn gyntaf fydd yn dileu'r cdrw. Fel "
-"arall bydd y cdrw yn cael ei ddileu cyn bob cadw."
-
-#: standalone/drakbackup:160
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-"Bydd y dewis hwn yn cadw ffeiliau sydd wedi newid. Bydd ei union ymddygiad "
-"yn dibynnu ar ba un a'i modd cynyddol neu ddifferol sy'n cael eu defnyddio."
-
-#: standalone/drakbackup:161
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-"Dim ond ffeiliau sydd wedi newid neu sy'n newydd fydd cadw wrth gefn "
-"cynyddol yn eu cadw."
-
-#: standalone/drakbackup:162
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Mae cadw wrth gefn differol yn cadw dim ond y ffeiliau sydd wedi newid neu "
-"sy'n newydd ers y fersiwn gwreiddiol 'sylfaenol'."
-
-#: standalone/drakbackup:163
-#, c-format
-msgid ""
-"Star should be selected if you want to backup EA or ACLs, otherwise choose "
-"tar"
-msgstr ""
-"Dylech ddewis star os am wneud copi wrth gefn o EA neu ACLau, fel arall "
-"dewiswch tar"
-
-#: standalone/drakbackup:164
-#, c-format
-msgid ""
-"This should be a local user or email address that you want the backup "
-"results sent to. You will need to define a functioning mail server. Multiple "
-"users can be in a comma seperated list"
-msgstr ""
-"Dylai hyn fod yn ddefnyddiwr lleol neu gyfeirydd e-bost rydych am i "
-"ganlyniad y copi wrth gefn ei anfon ato. Rhaid diffinio gweinydd e-bost "
-"gweithredol."
-
-#: standalone/drakbackup:165
-#, c-format
-msgid ""
-"This should be the return address that you want the backup results sent "
-"from. Default is drakbackup."
-msgstr ""
-"Dylai fod yna gyfeiriad dychwelyd o le fydd y ffeiliau wrth gefn yn dod "
-"ohono. drakbakup yw'r rhagosodedig."
-
-#: standalone/drakbackup:166
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-"Ni fydd ffeiliau neu gardiau gwyllt wedi eu rhestri yn ffeil .backupignore "
-"ar frig y goeden cyfeiriadur yn cael eu cadw."
-
-#: standalone/drakbackup:167
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-"Ar gyfer cadw wrth gefn cyfryngau eraill, mae ffeiliau'n dal yn cael eu creu "
-"ar y disg caled, ac yna eu symud i gyfrwng arall. Bydd galluogi hyn yn "
-"tynnu'r ffeiliau tar oddi ar y disg caled ar ôl creu'r copi wrth gefn."
-
-#: standalone/drakbackup:168
-#, c-format
-msgid ""
-"Selecting this option allows you to view the raw output from the restore "
-"process, after a file restore."
-msgstr ""
-"Bydd dewis hwn yn caniatáu i chi weld yr allbwn crai o'r broses adfer, ar ôl "
-"adfer y ffeil"
-
-#: standalone/drakbackup:169
-#, c-format
-msgid ""
-"Some protocols, like rsync, may be configured at the server end. Rather "
-"than using a directory path, you would use the 'module' name for the service "
-"path."
-msgstr ""
-"Mae modd ffurfweddu rhai protocolau, megis srync ar ochr y gweinydd. Yn lle "
-"defnyddio llwybr cyfeiriadur, byddwch yn defnyddio enw 'modiwl' ar gyfer y "
-"llwybr gwasanaeth."
-
-#: standalone/drakbackup:170
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"Mae Addasu'n caniatáu i chi enw eich dyddiad ac amser. Mae'r dewisiadau "
-"eraill yn defnyddio rhannau rhedeg yn /etc/crontab."
-
-#: standalone/drakbackup:344
-#, c-format
-msgid "No media selected for cron operation."
-msgstr "Dim cyfrwng wedi ei ddewis ar gyfer gweithredu cron."
-
-#: standalone/drakbackup:348
-#, c-format
-msgid "No interval selected for cron operation."
-msgstr "Dim cyfnod wedi ei ddewis ar gyfer gweithredu cron."
-
-#: standalone/drakbackup:393
-#, c-format
-msgid "Interval cron not available as non-root"
-msgstr "Nid yw interval cron ar gael ar gyfer di-wraidd"
-
-#: standalone/drakbackup:477 standalone/logdrake:439
-#, c-format
-msgid "\"%s\" neither is a valid email nor is an existing local user!"
-msgstr "Nid yw \"%s\" yn e-bost dilys nac yn ddefnyddiwr lleol presennol!"
-
-#: standalone/drakbackup:481 standalone/logdrake:444
-#, 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 ""
-"Mae \"%s\" yn ddefnyddiwr lleol, ond nid ydych wedi dewis SMTP lleol, felly "
-"mae'n rhaid i chi ddefnyddio cyfeiriad e-bost cyfan!"
-
-#: standalone/drakbackup:491
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr "Rhestr defnyddwyr dilys wedi newid, ailysgrifennu ffeil ffurfweddu."
-
-#: standalone/drakbackup:493
-#, c-format
-msgid "Old user list:\n"
-msgstr "Rhestr hen ddefnyddiwr:\n"
-
-#: standalone/drakbackup:495
-#, c-format
-msgid "New user list:\n"
-msgstr "Rhestr defnyddiwr newydd:\n"
-
-#: standalone/drakbackup:524
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
-msgstr ""
-"\n"
-" Adroddiad DrakBackup \n"
-"\n"
-
-#: standalone/drakbackup:525
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-msgstr ""
-"\n"
-" Adroddiad Daemon DrakBackup \n"
-"\n"
-"\n"
-
-#: standalone/drakbackup:531
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" Manylion Adroddiad DrakBackup \n"
-"\n"
-"\n"
-
-#: standalone/drakbackup:556 standalone/drakbackup:627
-#: standalone/drakbackup:683
-#, c-format
-msgid "Total progress"
-msgstr "Cyfanswm cynnydd"
-
-#: standalone/drakbackup:609
-#, c-format
-msgid ""
-"%s exists, delete?\n"
-"\n"
-"If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-"Mae %s yn bodoli, dileu?\n"
-"\n"
-"Rhybudd: Os ydych eisoes wedi dilyn y broses hon, bydd\n"
-" angen tynnu'r cofnod o authorized_keys ar y gweinydd."
-
-#: standalone/drakbackup:618
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "Bydd hyn yn cymryd amser i gynhyrchu'r allweddi"
-
-#: standalone/drakbackup:625
-#, c-format
-msgid "Cannot spawn %s."
-msgstr "Methu agor %s"
-
-#: standalone/drakbackup:642
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "Dim cais am gyfrinair ar %s ym mhorth %s"
-
-#: standalone/drakbackup:643
-#, c-format
-msgid "Bad password on %s"
-msgstr "Cyfrinair gwallus yn %s"
-
-#: standalone/drakbackup:644
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "Gwrthodwyd caniatâd wrth drosglwyddo %s i %s"
-
-#: standalone/drakbackup:645
-#, c-format
-msgid "Can not find %s on %s"
-msgstr "Methu canfod %s ar %s"
-
-#: standalone/drakbackup:649
-#, c-format
-msgid "%s not responding"
-msgstr "Nid yw %s yn ymateb"
-
-#: standalone/drakbackup:653
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-"Roedd y trosglwyddiad yn llwyddiannus\n"
-"Efallai'r hoffech wirio eich bod yn gallu mewngofnodi i'r gwasanaether "
-"gyda:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"heb dderbyn cais am gyfrinair"
-
-#: standalone/drakbackup:703
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "Dim CD-R/DVD-R yn y gyrrwr!"
-
-#: standalone/drakbackup:707
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Nid yw'n ymddangos fel cyfrwng cofnodi."
-
-#: standalone/drakbackup:712
-#, c-format
-msgid "Not erasable media!"
-msgstr "Nid yw'n gyfrwng dileadwy!"
-
-#: standalone/drakbackup:754
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Bydd yn cymryd ychydig o amser i ddileu'r cyfrwng."
-
-#: standalone/drakbackup:812
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Anawsterau caniatâd wrth gael mynediad i'r CD."
-
-#: standalone/drakbackup:840
-#, c-format
-msgid "No tape in %s!"
-msgstr "Dim tâp yn %s!"
-
-#: standalone/drakbackup:953
-#, c-format
-msgid ""
-"Backup destination quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-"Dros cwota cyrchfan wrth gefn!\n"
-"Defnyddio %d MB vs %d MB ar gael."
-
-#: standalone/drakbackup:973 standalone/drakbackup:1005
-#, c-format
-msgid "Backup system files..."
-msgstr "Ffeiliau system wrth gefn"
-
-#: standalone/drakbackup:1006 standalone/drakbackup:1045
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Ffeiliau cadw wrth gefn y Disg Caled"
-
-#: standalone/drakbackup:1044
-#, c-format
-msgid "Backup User files..."
-msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn..."
-
-#: standalone/drakbackup:1078
-#, c-format
-msgid "Backup Other files..."
-msgstr "Cadw wrth gefn ffeiliau eraill..."
-
-#: standalone/drakbackup:1079
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Cynnydd Disg Caled wrth Gefn..."
-
-#: standalone/drakbackup:1084
-#, c-format
-msgid "No changes to backup!"
-msgstr "Dim newid i'r ffeil wrth gefn!"
-
-#: standalone/drakbackup:1100 standalone/drakbackup:1122
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-"\n"
-"Gweithgaredd Drakbackup drwy %s:\n"
-"\n"
-
-#: standalone/drakbackup:1109
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-" Anhawster cysylltiad FTP: Nid oedd yn bosibl anfon eich ffeiliau wrth gefn "
-"drwy FTP.\n"
-
-#: standalone/drakbackup:1110
-#, c-format
-msgid ""
-"Error during sending file via FTP. Please correct your FTP configuration."
-msgstr "Gwall wrth anfon ffeil drwy FTP. Cywirwch eich ffurfweddiad FTP."
-
-#: standalone/drakbackup:1112
-#, c-format
-msgid "file list sent by FTP: %s\n"
-msgstr "rhestr ffeil a yrrwyd gan FTP: %s\n"
-
-#: standalone/drakbackup:1127
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-"\n"
-"Gweithgaredd Drakbackup drwy CD:\n"
-"\n"
-
-#: standalone/drakbackup:1132
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-"\n"
-"Gweithgaredd Drakbackup drwy dâp:\n"
-"\n"
-
-#: standalone/drakbackup:1141
-#, c-format
-msgid "Error sending mail. Your report mail was not sent."
-msgstr "Gwall wrth anfon e-bost. Cafodd eich adroddiad e-bost mo'i anfon."
-
-#: standalone/drakbackup:1142
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr " Gwall wrth anfon e-bost. \n"
-
-#: standalone/drakbackup:1172
-#, c-format
-msgid "Can not create catalog!"
-msgstr "Methu creu catalog!"
-
-#: standalone/drakbackup:1332
-#, c-format
-msgid "Problem installing %s"
-msgstr "Anhawster gosod %s"
-
-#: standalone/drakbackup:1420
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Cadw wrth gefn ffeiliau System. ( cyfeiriadur /etc )"
-
-#: standalone/drakbackup:1421 standalone/drakbackup:1484
-#: standalone/drakbackup:1550
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr ""
-"Defnyddio Cadw wrth Gefn Cynyddol/Differol (peidio disodli hen gadw wrth "
-"gefn)"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Defnyddio Cadw wrth Gefn Cynyddol"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Defnyddio Cadw wrth Gefn differu"
-
-#: standalone/drakbackup:1425
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Peidio cynnwys ffeiliau hanfodol (passwd, group, fstab)"
-
-#: standalone/drakbackup:1456
-#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Gwiriwch bob defnyddiwr rydych am eu cynnwys yn eich cadw wrth gefn."
-
-#: standalone/drakbackup:1483
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Peidio cynnwys storfa'r porwr"
-
-#: standalone/drakbackup:1537
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Dewiswch y ffeiliau neu gyfeiriaduron a chliciwch 'Iawn'"
-
-#: standalone/drakbackup:1538 standalone/drakfont:650
-#, c-format
-msgid "Remove Selected"
-msgstr "Tynnu'r Dewis"
-
-#: standalone/drakbackup:1601
-#, c-format
-msgid "Users"
-msgstr "Defnyddwyr"
-
-#: standalone/drakbackup:1621
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Defnyddiwch gysylltiad rhwydwaith i gadw wrth gefn"
-
-#: standalone/drakbackup:1623
-#, c-format
-msgid "Net Method:"
-msgstr "Dull Rhwyd:"
-
-#: standalone/drakbackup:1627
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Defnyddiwch Expect ar gyfer SSH"
-
-#: standalone/drakbackup:1628
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "Creu/Trosglwyddo allweddi wrth gefn ar gyfer SSH"
-
-#: standalone/drakbackup:1630
-#, c-format
-msgid "Transfer Now"
-msgstr "Trosglwyddo Nawr"
-
-#: standalone/drakbackup:1632
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Allweddi eraill (nid drakbackup) yn eu lle yn barod"
-
-#: standalone/drakbackup:1635
-#, c-format
-msgid "Host name or IP."
-msgstr "Enw gwesteiwr neu IP."
-
-#: standalone/drakbackup:1640
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr "Cyfeiriadur (neu fodiwl) i osod y cadw wrth gefn ar y gwesteiwr."
-
-#: standalone/drakbackup:1652
-#, c-format
-msgid "Remember this password"
-msgstr "Cofiwch y cyfrinair"
-
-#: standalone/drakbackup:1664
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Angen enw gwesteiwr, enw defnyddiwr a chyfrinair"
-
-#: standalone/drakbackup:1755
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Defnyddiwch y CD/DVDROM i gadw wrth gefn"
-
-#: standalone/drakbackup:1758
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Dewiswch eich dyfais CD/DVD"
-
-#: standalone/drakbackup:1763
-#, c-format
-msgid "Choose your CD/DVD media size"
-msgstr "Dewiswch faint eich cyfrwng CD/DVD"
-
-#: standalone/drakbackup:1770
-#, c-format
-msgid "Multisession CD"
-msgstr "CD aml-sesiwn"
-
-#: standalone/drakbackup:1772
-#, c-format
-msgid "CDRW media"
-msgstr "Cyfrwng CDRW"
-
-#: standalone/drakbackup:1778
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Dileu eich cyfrwng RW (Sesiwn 1af)"
-
-#: standalone/drakbackup:1779
-#, c-format
-msgid " Erase Now "
-msgstr "Dileu Nawr"
-
-#: standalone/drakbackup:1785
-#, c-format
-msgid "DVD+RW media"
-msgstr "Cyfrwng DVD+RW"
-
-#: standalone/drakbackup:1787
-#, c-format
-msgid "DVD-R media"
-msgstr "Cyfrwng DVD-R"
-
-#: standalone/drakbackup:1789
-#, c-format
-msgid "DVDRAM device"
-msgstr "dyfais DVDRAM"
-
-#: standalone/drakbackup:1820
-#, c-format
-msgid "No CD device defined!"
-msgstr "Heb ddiffinio dyfais CD!"
-
-#: standalone/drakbackup:1862
-#, c-format
-msgid "Use tape to backup"
-msgstr "Defnyddiwch dâp i gadw wrth gefn"
-
-#: standalone/drakbackup:1865
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Enw dyfais i'w ddefnyddio ar gyfer cadw wrth gefn"
-
-#: standalone/drakbackup:1871
-#, c-format
-msgid "Backup directly to tape"
-msgstr "Cadw wrth gefn i Dâp"
-
-#: standalone/drakbackup:1877
-#, c-format
-msgid "Use tape hardware compression (EXPERIMENTAL)"
-msgstr "Defnyddio cywasgiad caledwedd tâp (ARBROFOL)"
-
-#: standalone/drakbackup:1883
-#, c-format
-msgid "Do not rewind tape after backup"
-msgstr "Peidio ailddirwyn y tâp wedi ei gadw wrth gefn"
-
-#: standalone/drakbackup:1889
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Dileu'r tâp cyn cadw wrth gefn"
-
-#: standalone/drakbackup:1895
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Tynnwch y tâp wedi cadw wrth gefn"
-
-#: standalone/drakbackup:1976
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Rhowch y cyfeiriadur i gadw iddo:"
-
-#: standalone/drakbackup:1980
-#, c-format
-msgid "Directory to save to"
-msgstr "Y cyfeiriadur i gadw iddo:"
-
-#: standalone/drakbackup:1985
-#, c-format
-msgid ""
-"Maximum disk space\n"
-" allocated for backups (MB)"
-msgstr ""
-"Uchafswm lle ar ddisg\n"
-"ar gael i gadw wrth gefn (MB)"
-
-#: standalone/drakbackup:1989
-#, c-format
-msgid ""
-"Delete incremental or differential\n"
-" backups older than N days\n"
-" (0 is keep all backups) to save space"
-msgstr ""
-"Dileu cadw wrth gefn cynnyddol\n"
-"neu wahaniaethol dros N diwrnod\n"
-" (0 yw cadw pob copi) i arbed lle"
-
-#: standalone/drakbackup:2056
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CDROM / DVDROM"
-
-#: standalone/drakbackup:2061
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Disg Caled / NFS"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2077
-#: standalone/drakbackup:2082
-#, c-format
-msgid "hourly"
-msgstr "bob awr"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2078
-#: standalone/drakbackup:2083
-#, c-format
-msgid "daily"
-msgstr "dyddiol"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2079
-#: standalone/drakbackup:2084
-#, c-format
-msgid "weekly"
-msgstr "bob wythnos"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2080
-#: standalone/drakbackup:2085
-#, c-format
-msgid "monthly"
-msgstr "bob mis"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2081
-#: standalone/drakbackup:2086
-#, c-format
-msgid "custom"
-msgstr "arddull"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "January"
-msgstr "Ionawr"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "February"
-msgstr "Chwefror"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "March"
-msgstr "Mawrth"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "April"
-msgstr "Ebrill"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "May"
-msgstr "Mai"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "June"
-msgstr "Mehefin"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "July"
-msgstr "Gorffennaf"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "August"
-msgstr "Awst"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "September"
-msgstr "Medi"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "October"
-msgstr "Hydref"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "November"
-msgstr "Tachwedd"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "December"
-msgstr "Rhagfyr"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Sunday"
-msgstr "Sul"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Monday"
-msgstr "Llun"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Tuesday"
-msgstr "Mawrth"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Wednesday"
-msgstr "Mercher"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Thursday"
-msgstr "Iau"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Friday"
-msgstr "Gwener"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Saturday"
-msgstr "Sadwrn"
-
-#: standalone/drakbackup:2126
-#, c-format
-msgid "Delete cron entry"
-msgstr "Diddymu cofnod cron"
-
-#: standalone/drakbackup:2127
-#, c-format
-msgid "Add cron entry"
-msgstr "Ychwanegu cofnod cron"
-
-#: standalone/drakbackup:2185
-#, c-format
-msgid "Use daemon"
-msgstr "Defnyddiwch ddaemon"
-
-#: standalone/drakbackup:2189
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Dewiswch faint o amser fydd rhwng pob cadw wrth gefn"
-
-#: standalone/drakbackup:2197
-#, c-format
-msgid "Minute"
-msgstr "Munud"
-
-#: standalone/drakbackup:2201
-#, c-format
-msgid "Hour"
-msgstr "Awr"
-
-#: standalone/drakbackup:2205
-#, c-format
-msgid "Day"
-msgstr "Diwrnod"
-
-#: standalone/drakbackup:2209
-#, c-format
-msgid "Month"
-msgstr "Mis"
-
-#: standalone/drakbackup:2213
-#, c-format
-msgid "Weekday (start)"
-msgstr "Diwrnod yr wythnos (dechrau)"
-
-#: standalone/drakbackup:2217
-#, c-format
-msgid "Weekday (end)"
-msgstr "Diwrnod yr wythnos (diwedd)"
-
-#: standalone/drakbackup:2221
-#, c-format
-msgid "Profile"
-msgstr "Proffiliau"
-
-#: standalone/drakbackup:2227
-#, c-format
-msgid "Current crontab:"
-msgstr "Crontab presennol:"
-
-#: standalone/drakbackup:2235
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "Dewiswch y cyfrwng ar gyfer cadw wrth gefn."
-
-#: standalone/drakbackup:2239
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-"Gwnewch yn siwr bod daemon cron yn cael ei gynnwys yn eich gwasanaethau."
-
-#: standalone/drakbackup:2240
-#, c-format
-msgid ""
-"If your machine is not on all the time, you might want to install anacron."
-msgstr ""
-"Os nad yw eich cyfrifiadur ymlaen drwy'r amser, byddai'n werth gosod anacron."
-
-#: standalone/drakbackup:2316
-#, c-format
-msgid "Please choose the archive program"
-msgstr "Dewiswch rhaglen archif"
-
-#: standalone/drakbackup:2321
-#, c-format
-msgid "Please choose the compression type"
-msgstr "Dewiswch y math o gywasgiad"
-
-#: standalone/drakbackup:2325
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Defnyddiwch ffeiliau .backupignore"
-
-#: standalone/drakbackup:2327
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Anfonwch adroddiad e-bost wedi pob cadw wrth gefn i :"
-
-#: standalone/drakbackup:2333
-#, c-format
-msgid "Return address for sent mail:"
-msgstr "Cyfeiriad dychwelyd e-bost anfonwys:"
-
-#: standalone/drakbackup:2339
-#, c-format
-msgid "SMTP server for mail:"
-msgstr "Gweinydd SMTP ar gyfer e-bost:"
-
-#: standalone/drakbackup:2343
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr "Dileu ffeiliau tar y Disg Caled wedi cadw cyfrwng arall wrth gefn."
-
-#: standalone/drakbackup:2344
-#, c-format
-msgid "View restore log after file restore."
-msgstr "Darllen y cofnod adfer ar ôl adfer ffeil"
-
-#: standalone/drakbackup:2389
-#, c-format
-msgid "What"
-msgstr "Beth"
-
-#: standalone/drakbackup:2394
-#, c-format
-msgid "Where"
-msgstr "Lle"
-
-#: standalone/drakbackup:2399
-#, c-format
-msgid "When"
-msgstr "Pryd"
-
-#: standalone/drakbackup:2404
-#, c-format
-msgid "More Options"
-msgstr "Dewisiadau Eraill"
-
-#: standalone/drakbackup:2417
-#, c-format
-msgid "Backup destination not configured..."
-msgstr "Nid yw cyrchfan cadw wrth gefn wedi ei ffurfweddu..."
-
-#: standalone/drakbackup:2437 standalone/drakbackup:4367
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Ffurfweddiad Drakbackup"
-
-#: standalone/drakbackup:2453
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Dewiswch i le rydych am gadw ffeiliau wrth gefn"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Hard Drive used to prepare backups for all media"
-msgstr "Dileu ffeiliau tar y Disg Caled wedi cadw cyfrwng arall wrth gefn."
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Across Network"
-msgstr "ar draws Rhwydwaith"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On CD-R"
-msgstr "ar CDROM"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On Tape Device"
-msgstr "ar Ddyfais Tâp"
-
-#: standalone/drakbackup:2502
-#, c-format
-msgid "Backup Users"
-msgstr "Defnyddwyr Cadw wrth Gefn"
-
-#: standalone/drakbackup:2503
-#, c-format
-msgid " (Default is all users)"
-msgstr "(Rhagosodedig yw pob defnyddiwr)"
-
-#: standalone/drakbackup:2516
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Dewiswch beth rydych am ei gadw wrth gefn"
-
-#: standalone/drakbackup:2517
-#, c-format
-msgid "Backup System"
-msgstr "System cadw wrth gefn"
-
-#: standalone/drakbackup:2519
-#, c-format
-msgid "Select user manually"
-msgstr "Dewis defnyddwyr gyda llaw"
-
-#: standalone/drakbackup:2548
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Dewiswch y data i'w gadw wrth gefn..."
-
-#: standalone/drakbackup:2620
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Ffynhonnell Cadw wrth Gefn:\n"
-
-#: standalone/drakbackup:2621
-#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Ffeiliau System: \n"
-
-#: standalone/drakbackup:2623
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Ffeiliau Defnyddiwr:\n"
-
-#: standalone/drakbackup:2625
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Ffeiliau Eraill: \n"
-
-#: standalone/drakbackup:2627
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-"\n"
-"Cadw ar Ddisg caled ar lwybr: %s\n"
-
-#: standalone/drakbackup:2628
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tCyfyngu defnydd disg i %s Mb\n"
-
-#: standalone/drakbackup:2629
-#, c-format
-msgid "\tDelete backups older than %s day(s)\n"
-msgstr "\tDileu copiau wrth gefn sy'n hŷn na %s diwrnod\n"
-
-#: standalone/drakbackup:2632
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
-"\n"
-"- Dileu ffeiliau tar y disg caled wedi'r cadw wrth gefn.\n"
-
-#: standalone/drakbackup:2637
-#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr ""
-"\n"
-"- Llosgi i CD"
-
-#: standalone/drakbackup:2638
-#, c-format
-msgid "RW"
-msgstr "RW"
-
-#: standalone/drakbackup:2639
-#, c-format
-msgid " on device: %s"
-msgstr "ar ddyfais: %s"
-
-#: standalone/drakbackup:2640
-#, c-format
-msgid " (multi-session)"
-msgstr "(aml-sesiwn)"
-
-#: standalone/drakbackup:2641
-#, c-format
-msgid ""
-"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-"\n"
-"- Cadw i dâp ar ddyfais: %s"
-
-#: standalone/drakbackup:2642
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tDileu=%s"
-
-#: standalone/drakbackup:2644
-#, c-format
-msgid "\tBackup directly to Tape\n"
-msgstr "\tCadw wrth gefn yn syth i Dâp\n"
-
-#: standalone/drakbackup:2646
-#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
-"\n"
-"- Cadw drwy %s ar westeiwr: %s\n"
-
-#: standalone/drakbackup:2647
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t enw defnyddiwr:%s\n"
-"\t\t ar lwybr: %s \n"
-
-#: standalone/drakbackup:2648
-#, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"-Dewisiadau:\n"
-
-#: standalone/drakbackup:2649
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tPeidiwch cynnwys Ffeiliau System\n"
-
-#: standalone/drakbackup:2651
-#, c-format
-msgid "\tBackups use %s and bzip2\n"
-msgstr "\t Bydd Cadw wrth gefn yn defnyddio%s and bzip2\n"
-
-#: standalone/drakbackup:2652
-#, c-format
-msgid "\tBackups use %s and gzip\n"
-msgstr "\tBydd Cadw wrth Gefn yn defnyddio %s and bzip2\n"
-
-#: standalone/drakbackup:2653
-#, c-format
-msgid "\tBackups use %s only\n"
-msgstr "\tBydd Cadw wrth Gefn yn defnyddio %s yn unig\n"
-
-#: standalone/drakbackup:2655
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tDefnyddiwch ffeiliau .backupignorey\n"
-
-#: standalone/drakbackup:2656
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tAnfon e-bost at %s\n"
-
-#: standalone/drakbackup:2657
-#, c-format
-msgid "\tSend mail from %s\n"
-msgstr "\tAnfon e-bost o %s\n"
-
-#: standalone/drakbackup:2658
-#, c-format
-msgid "\tUsing SMTP server %s\n"
-msgstr "\tDefnyddio gweinydd SMTP %s\n"
-
-#: standalone/drakbackup:2660
-#, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
-msgstr ""
-"\n"
-"- Daemon %s trwy:\n"
-
-#: standalone/drakbackup:2661
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-Disg Caled.\n"
-
-#: standalone/drakbackup:2662
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-R.\n"
-
-#: standalone/drakbackup:2663
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Tâp \n"
-
-#: standalone/drakbackup:2664
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Rhwydwaith drwy FTP.\n"
-
-#: standalone/drakbackup:2665
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Rhwydwaith drwy SSH.\n"
-
-#: standalone/drakbackup:2666
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-Rhwydwaith drwy rsync.\n"
-
-#: standalone/drakbackup:2668
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Dim ffurfweddiad, cliciwch Ddewin neu Uwch.\n"
-
-#: standalone/drakbackup:2673
-#, c-format
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Rhestr o ddata i'w adfer:\n"
-"\n"
-
-#: standalone/drakbackup:2675
-#, c-format
-msgid "- Restore System Files.\n"
-msgstr "Adfer Ffeiliau'r System.\n"
-
-#: standalone/drakbackup:2677 standalone/drakbackup:2687
-#, c-format
-msgid " - from date: %s %s\n"
-msgstr " - o ddyddiad: %s %s\n"
-
-#: standalone/drakbackup:2680
-#, c-format
-msgid "- Restore User Files: \n"
-msgstr "- Adfer Ffeiliau'r System: \n"
-
-#: standalone/drakbackup:2685
-#, c-format
-msgid "- Restore Other Files: \n"
-msgstr "- Adfer Ffeiliau Eraill: \n"
-
-#: standalone/drakbackup:2864
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Rhestr o ddata llwgr:\n"
-"\n"
-
-#: standalone/drakbackup:2866
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Dad-diciwch hwn neu ei dynnu'r tro nesaf."
-
-#: standalone/drakbackup:2876
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Mae'r ffeiliau wrth gefn wedi eu llygru"
-
-#: standalone/drakbackup:2897
-#, c-format
-msgid " All of your selected data have been "
-msgstr " Mae eich dewis data wedi ei "
-
-#: standalone/drakbackup:2898
-#, c-format
-msgid " Successfully Restored on %s "
-msgstr " Ei adfer yn Llwyddiannus ar %s "
-
-#: standalone/drakbackup:2999
-#, c-format
-msgid "/usr/bin/star not found, using tar..."
-msgstr "Heb ganfod /usr/bin/star , defnyddio tar..."
-
-#: standalone/drakbackup:3035
-#, c-format
-msgid " Restore Configuration "
-msgstr " Adfer y Ffurfweddiad"
-
-#: standalone/drakbackup:3063
-#, c-format
-msgid "OK to restore the other files."
-msgstr "Iawn i adfer ffeiliau eraill"
-
-#: standalone/drakbackup:3079
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Rhestr defnyddwyr i'w adfer ( dim ond y diweddaraf yn ôl y defnyddwyr, sy'n "
-"bwysig )"
-
-#: standalone/drakbackup:3144
-#, c-format
-msgid "Please choose the date to restore:"
-msgstr "Dewiswch y dyddiad i'w adfer:"
-
-#: standalone/drakbackup:3181
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Adfer o'r Ddisg Galed."
-
-#: standalone/drakbackup:3183
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Rhowch y cyfeiriadur lle mae'r ffeiliau wrth gefn yn cael eu cadw"
-
-#: standalone/drakbackup:3187
-#, c-format
-msgid "Directory with backups"
-msgstr "Cyfeiriadur gyda chadw wrth gefn"
-
-#: standalone/drakbackup:3241
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Dewis cyfrwng arall i adfer ohono"
-
-#: standalone/drakbackup:3243
-#, c-format
-msgid "Other Media"
-msgstr "Cyfrwng Arall"
-
-#: standalone/drakbackup:3248
-#, c-format
-msgid "Restore system"
-msgstr "Adfer y system"
-
-#: standalone/drakbackup:3249
-#, c-format
-msgid "Restore Users"
-msgstr "Adfer Defnyddwyr"
-
-#: standalone/drakbackup:3250
-#, c-format
-msgid "Restore Other"
-msgstr "Adfer Arall"
-
-#: standalone/drakbackup:3252
-#, c-format
-msgid "Select path to restore (instead of /)"
-msgstr "dewis llwybr arall i adfer ( yn lle / )"
-
-#: standalone/drakbackup:3256 standalone/drakbackup:3539
-#, c-format
-msgid "Path To Restore To"
-msgstr "Llwybr i Adfer Iddo"
-
-#: standalone/drakbackup:3259
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-"Gwnewch gadw wrth gefn newydd cyn adfer ( ar gyfer cadw wrth gefn cynyddol "
-"yn unig )"
-
-#: standalone/drakbackup:3261
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Tynnu cyfeiriaduron defnyddiwr cyn adfer."
-
-#: standalone/drakbackup:3345
-#, c-format
-msgid "Filename text substring to search for (empty string matches all):"
-msgstr "Testun enw ffeil i chwilio amdano (llinyn gwag yn cydweddu popeth):"
-
-#: standalone/drakbackup:3348
-#, c-format
-msgid "Search Backups"
-msgstr "Chwilio Copïau wrth Gefn"
-
-#: standalone/drakbackup:3367
-#, c-format
-msgid "No matches found..."
-msgstr "Heb ganfod cydweddiad..."
-
-#: standalone/drakbackup:3371
-#, c-format
-msgid "Restore Selected"
-msgstr "Adfer y Dewis"
-
-#: standalone/drakbackup:3507
-#, c-format
-msgid ""
-"Click date/time to see backup files.\n"
-"Ctrl-Click files to select multiple files."
-msgstr ""
-"Cliciwch ddyddiad/amser i weld ffeiliau wrth gefn.\n"
-"Clicio+Ctr; ffeiliau i ddewis ffeiliau niferus."
-
-#: standalone/drakbackup:3513
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
-"Adfer Cofnod\n"
-"Catalog a Ddewiswyd"
-
-#: standalone/drakbackup:3522
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr ""
-"Adfer y Dewis\n"
-"Ffeiliau"
-
-#: standalone/drakbackup:3599
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "Heb ganfod y ffeiliau wrth gefn yn %s."
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid "Restore From CD"
-msgstr "Adfer o'r CD"
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-"Rhowch yr CD gyda label cynnwys%s\n"
-"yn y gyrrwr CD o dan bwynt gosod /mnt/cdrom"
-
-#: standalone/drakbackup:3614
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "Nid y label CD cywir. Disg wedi ei labelu %s."
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid "Restore From Tape"
-msgstr "Adfer o Dâp"
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-"Rhowch y tâp gyda label cynnwys%s\n"
-"yn y gyrrwr tâp %s"
-
-#: standalone/drakbackup:3626
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Nid y label tâp cywir. Tâp wedi ei labelu %s."
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network"
-msgstr "Adfer drwy'r Rhwydwaith"
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Adfer drwy Brotocol Rhwydwaith: %s"
-
-#: standalone/drakbackup:3638
-#, c-format
-msgid "Host Name"
-msgstr "Enw Gwesteiwr"
-
-#: standalone/drakbackup:3639
-#, c-format
-msgid "Host Path or Module"
-msgstr "Llwybr Gwesteiwr neu Fodiwl "
-
-#: standalone/drakbackup:3646
-#, c-format
-msgid "Password required"
-msgstr "Mae angen cyfrinair"
-
-#: standalone/drakbackup:3652
-#, c-format
-msgid "Username required"
-msgstr "Mae angen enw defnyddiwr"
-
-#: standalone/drakbackup:3655
-#, c-format
-msgid "Hostname required"
-msgstr "Mae angen enw gwesteiwr"
-
-#: standalone/drakbackup:3660
-#, c-format
-msgid "Path or Module required"
-msgstr "Llwybr neu Fodiwl angenrheidiol"
-
-#: standalone/drakbackup:3672
-#, c-format
-msgid "Files Restored..."
-msgstr "Adferwyd ffeiliau..."
-
-#: standalone/drakbackup:3675
-#, c-format
-msgid "Restore Failed..."
-msgstr "Methodd Adfer..."
-
-#: standalone/drakbackup:3703
-#, c-format
-msgid "%s not retrieved..."
-msgstr "Heb ail estyn %s..."
-
-#: standalone/drakbackup:3929 standalone/drakbackup:3998
-#, c-format
-msgid "Search for files to restore"
-msgstr "Chwilio am ffeiliau i'w hadfer"
-
-#: standalone/drakbackup:3933
-#, c-format
-msgid "Restore all backups"
-msgstr "Adfer pob cadw wrth gefn"
-
-#: standalone/drakbackup:3941
-#, c-format
-msgid "Custom Restore"
-msgstr "Adfer Dewisol"
-
-#: standalone/drakbackup:3945 standalone/drakbackup:3994
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Adfer o'r Catalog"
-
-#: standalone/drakbackup:3966
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Methu canfod cadw wrth gefn i'w hadfer...\n"
-
-#: standalone/drakbackup:3967
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Gwirio mai %s yw'r llwybr cywir"
-
-#: standalone/drakbackup:3968
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " ac mae'r CD yn y gyrrwr"
-
-#: standalone/drakbackup:3970
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr "Cadw wrth gefn ar gyfrwng anosodadwy - Defnyddiwch Gatalog i'w adfer"
-
-#: standalone/drakbackup:3986
-#, c-format
-msgid "CD in place - continue."
-msgstr "CD yn ei le - ewch ymlaen"
-
-#: standalone/drakbackup:3991
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Pori i'r ystorfa newydd adferwyd"
-
-#: standalone/drakbackup:3992
-#, c-format
-msgid "Directory To Restore From"
-msgstr "Cyfeiriadur i Adfer Ohono"
-
-#: standalone/drakbackup:4028
-#, c-format
-msgid "Restore Progress"
-msgstr "Adfer Cynnydd"
-
-#: standalone/drakbackup:4136
-#, c-format
-msgid "Build Backup"
-msgstr "Adeiladu Cadw wrth Gefn"
-
-#: standalone/drakbackup:4169 standalone/drakbackup:4466
-#, c-format
-msgid "Restore"
-msgstr "Adfer"
-
-#: standalone/drakbackup:4261
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Dewiswch y data i'w adfer..."
-
-#: standalone/drakbackup:4301
-#, c-format
-msgid "Backup system files"
-msgstr "Ffeiliau System Cadw wrth Gefn"
-
-#: standalone/drakbackup:4304
-#, c-format
-msgid "Backup user files"
-msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn"
-
-#: standalone/drakbackup:4307
-#, c-format
-msgid "Backup other files"
-msgstr "Cadw'r ffeiliau eraill wrth gefn"
-
-#: standalone/drakbackup:4310 standalone/drakbackup:4344
-#, c-format
-msgid "Total Progress"
-msgstr "Cyfanswm Cynnydd"
-
-#: standalone/drakbackup:4336
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Anfon ffeiliau drwy FTP"
-
-#: standalone/drakbackup:4339
-#, c-format
-msgid "Sending files..."
-msgstr "Anfon ffeiliau..."
-
-#: standalone/drakbackup:4409
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Cadwch wrth Gefn eich ffeiliau ffurfweddu"
-
-#: standalone/drakbackup:4414
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Edrych ar Ffurfweddiad Cadw wrth Gefn"
-
-#: standalone/drakbackup:4440
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Ffurfweddiad y Dewin"
-
-#: standalone/drakbackup:4445
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Ffurfweddiad Uwch"
-
-#: standalone/drakbackup:4450
-#, c-format
-msgid "View Configuration"
-msgstr "Edrych ar Ffurfweddiad"
-
-#: standalone/drakbackup:4454
-#, c-format
-msgid "View Last Log"
-msgstr "Darllen y Cofnod Olaf"
-
-#: standalone/drakbackup:4459
-#, c-format
-msgid "Backup Now"
-msgstr "Cadw wrth Gefn Nawr"
-
-#: standalone/drakbackup:4463
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Ni chanfuwyd y ffeil ffurfweddu \n"
-"cliciwch Dewin neu Uwch."
-
-#: standalone/drakbackup:4501
-#, c-format
-msgid "Load profile"
-msgstr "Llwytho proffil"
-
-#: standalone/drakbackup:4510
-#, c-format
-msgid "Save profile as..."
-msgstr "Cadw proffi fel..."
-
-#: standalone/drakbackup:4532 standalone/drakbackup:4535
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: standalone/drakboot:49
-#, c-format
-msgid "No bootloader found, creating a new configuration"
-msgstr "Heb ganfod cychwynnydd, creu ffurfweddiad newydd"
-
-#: standalone/drakboot:84 standalone/harddrake2:190 standalone/harddrake2:191
-#: standalone/logdrake:69 standalone/printerdrake:150
-#: standalone/printerdrake:151 standalone/printerdrake:152
-#, c-format
-msgid "/_File"
-msgstr "/_Ffeil"
-
-#: standalone/drakboot:85 standalone/logdrake:75
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Ffeil/_Gadael"
-
-#: standalone/drakboot:85 standalone/harddrake2:191 standalone/logdrake:75
-#: standalone/printerdrake:152
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: standalone/drakboot:125
-#, c-format
-msgid "Text only"
-msgstr "Testun yn unig"
-
-#: standalone/drakboot:126
-#, c-format
-msgid "Verbose"
-msgstr "Amleiriog"
-
-#: standalone/drakboot:127
-#, c-format
-msgid "Silent"
-msgstr "Tawel"
-
-#: standalone/drakboot:134
-#, c-format
-msgid ""
-"Your system bootloader is not in framebuffer mode. To activate graphical "
-"boot, select a graphic video mode from the bootloader configuration tool."
-msgstr ""
-"Nid yw eich cychwynnwr ym modd byffer ffrâm. I weithredu cychwyn graffigol, "
-"dewiswch y modd fideo graffig i'r offeryn ffurfweddu'r cychwynnwr."
-
-#: standalone/drakboot:135
-#, c-format
-msgid "Do you want to configure it now?"
-msgstr "Hoffech chi ei ffurfweddu?"
-
-#: standalone/drakboot:144
-#, c-format
-msgid "Install themes"
-msgstr "Gosod themâu"
-
-#: standalone/drakboot:146
-#, c-format
-msgid "Graphical boot theme selection"
-msgstr "Dewis themâu cychwyn graffigol"
-
-#: standalone/drakboot:149
-#, c-format
-msgid "Graphical boot mode:"
-msgstr "Modd cychwyn graffigol:"
-
-#: standalone/drakboot:151
-#, c-format
-msgid "Theme"
-msgstr "Thema"
-
-#: standalone/drakboot:154
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"Dangos thema\n"
-"yn y consol"
-
-#: standalone/drakboot:159
-#, c-format
-msgid "Create new theme"
-msgstr "Creu thema newydd"
-
-#: standalone/drakboot:191
-#, c-format
-msgid "Default user"
-msgstr "Defnyddiwr rhagosodedig"
-
-#: standalone/drakboot:192
-#, c-format
-msgid "Default desktop"
-msgstr "Bwrdd gwaith rhagosodedig"
-
-#: standalone/drakboot:195
-#, c-format
-msgid "No, I do not want autologin"
-msgstr "Na, dydw i ddim eisiau awtomewngofnodi"
-
-#: standalone/drakboot:196
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Iawn, rwyf eisiau awto mewngofnodi gyda (defnyddiwr, bwrdd gwaith)"
-
-#: standalone/drakboot:203
-#, c-format
-msgid "System mode"
-msgstr "Modd system"
-
-#: standalone/drakboot:206
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Cychwyn yr amgylchedd graffigol wrth gychwyn eich system"
-
-#: standalone/drakboot:272
-#, c-format
-msgid ""
-"Please choose a video mode, it will be applied to each of the boot entries "
-"selected below.\n"
-"Be sure your video card supports the mode you choose."
-msgstr ""
-"Dewiswch fodd fideo, fydd yn cael ei osod ar gyfer pob cofnod cychwyn "
-"dewiswyd isod.\n"
-"Gwnewch yn siŵr fod eich cerdyn fideo yn cynnal y modd rydych yn ei ddewis."
-
-#: standalone/drakbug:41
-#, c-format
-msgid "Mandriva Linux Bug Report Tool"
-msgstr "Offeryn Cofnodi Gwall Mandriva Linux"
-
-#: standalone/drakbug:46
-#, c-format
-msgid "Mandriva Linux Control Center"
-msgstr "Canolfan Rheoli Mandriva Linux"
-
-#: standalone/drakbug:48
-#, c-format
-msgid "Synchronization tool"
-msgstr "Offeryn Cydamseru"
-
-#: standalone/drakbug:49 standalone/drakbug:152
-#, c-format
-msgid "Standalone Tools"
-msgstr "Offer Unigol"
-
-#: standalone/drakbug:50
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: standalone/drakbug:51
-#, c-format
-msgid "Mandriva Online"
-msgstr "Mandriva Online"
-
-#: standalone/drakbug:52
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
-
-#: standalone/drakbug:53
-#, c-format
-msgid "Msec"
-msgstr "Msec"
-
-#: standalone/drakbug:54
-#, c-format
-msgid "Remote Control"
-msgstr "Rheoli o Bell"
-
-#: standalone/drakbug:55
-#, c-format
-msgid "Software Manager"
-msgstr "Rheolwr Meddalwedd"
-
-#: standalone/drakbug:56
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
-
-#: standalone/drakbug:57
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Offeryn Trosglwyddo o Windows"
-
-#: standalone/drakbug:58 standalone/draksambashare:1234
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: standalone/drakbug:59
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Dewin Ffurfweddu"
-
-#: standalone/drakbug:81
-#, c-format
-msgid "Select Mandriva Tool:"
-msgstr "Dewis Offeryn Mandriva:"
-
-#: standalone/drakbug:82
-#, c-format
-msgid ""
-"or Application Name\n"
-"(or Full Path):"
-msgstr ""
-"neu Enw Rhaglen\n"
-"(neu Lwybr Llawn):"
-
-#: standalone/drakbug:85
-#, c-format
-msgid "Find Package"
-msgstr "Canfod Pecyn"
-
-#: standalone/drakbug:87
-#, c-format
-msgid "Package: "
-msgstr "Pecynnau"
-
-#: standalone/drakbug:88
-#, c-format
-msgid "Kernel:"
-msgstr "Kernel:"
-
-#: standalone/drakbug:101
-#, c-format
-msgid ""
-"To submit a bug report, click on the report button. \n"
-"This will open a web browser window on %s where you'll find a form to fill "
-"in. The information displayed above will be transferred to that server. \n"
-"Things useful to include in your report are the output of lspci, kernel "
-"version, and /proc/cpuinfo."
-msgstr ""
-"I gyflwyno adroddiad gwall, cliciwch ar y botwm adroddiad.\n"
-"Bydd hyn yn agor ffenestr porwr gwe yn %s lle welwch ffurflen i'w llenwi. "
-"Bydd yr wybodaeth rhowch arno'n cael ei drosglwyddo i'r gweinydd.\n"
-"Pethau defnyddiol i'w cynnwys yn yr adroddiad fyddai allbwn lspci, fersiwn y "
-"cnewyllyn a /proc/cpuinfo."
-
-#: standalone/drakbug:107
-#, c-format
-msgid "Report"
-msgstr "Adroddiad"
-
-#: standalone/drakbug:162
-#, c-format
-msgid "Not installed"
-msgstr "Heb ei osod"
-
-#: standalone/drakbug:174
-#, c-format
-msgid "Package not installed"
-msgstr "Pecyn heb ei osod"
-
-#: standalone/drakclock:29
-#, c-format
-msgid "DrakClock"
-msgstr "DrakClock"
-
-#: standalone/drakclock:39
-#, c-format
-msgid "not defined"
-msgstr "heb ddiffinio"
-
-#: standalone/drakclock:41
-#, c-format
-msgid "Change Time Zone"
-msgstr "Newid Cylchedd Amser"
-
-#: standalone/drakclock:45
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "Cylchfa Amser - DrakClock"
-
-#: standalone/drakclock:47
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "GMT - DrakClock"
-
-#: standalone/drakclock:47 standalone/finish-install:57
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "A yw eich cloc caledwedd wedi ei osod i GMT?"
-
-#: standalone/drakclock:75
-#, c-format
-msgid "Network Time Protocol"
-msgstr "Protocol Amser Rhwydwaith"
-
-#: standalone/drakclock:77
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-"Mae eich cyfrifiadur yn gallu cydweddu ei gloc\n"
-" gyda gweinydd pell drwy NTP"
-
-#: standalone/drakclock:78
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Galluogi Protocol Amser Rhwydwaith"
-
-#: standalone/drakclock:86
-#, c-format
-msgid "Server:"
-msgstr "Gweinydd:"
-
-#: standalone/drakclock:124
-#, c-format
-msgid "Could not synchronize with %s."
-msgstr "Methu cydweddu gyda %s."
-
-#: standalone/drakclock:146 standalone/drakclock:156
-#, c-format
-msgid "Reset"
-msgstr "Ailosod"
-
-#: standalone/drakclock:224
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol\n"
-"\n"
-"Do you want to install ntp?"
-msgstr ""
-"Mae angen gosod pecyn ntp\n"
-" i alluogi Protocol Amser Rhwydwaith\n"
-"\n"
-"Hoffech chi osod ntp?"
-
-#: standalone/drakconnect:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Ffurfweddiad y rhwydwaith (%d addasydd)"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Gateway:"
-msgstr "Mynedfa:"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Interface:"
-msgstr "Rhyngwyneb:"
-
-#: standalone/drakconnect:93 standalone/net_monitor:116
-#, c-format
-msgid "Wait please"
-msgstr "Arhoswch"
-
-#: standalone/drakconnect:109
-#, c-format
-msgid "Interface"
-msgstr "Rhyngwyneb"
-
-#: standalone/drakconnect:109 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "State"
-msgstr "Stad"
-
-#: standalone/drakconnect:126
-#, c-format
-msgid "Hostname: "
-msgstr "Enw gwesteiwr: "
-
-#: standalone/drakconnect:128
-#, c-format
-msgid "Configure hostname..."
-msgstr "Ffurfweddu enw gwestai"
-
-#: standalone/drakconnect:142 standalone/drakconnect:845
-#, c-format
-msgid "LAN configuration"
-msgstr "Ffurfweddiad y Rhwydwaith Lleol"
-
-#: standalone/drakconnect:147
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Ffurfweddu'r Rhwydwaith Lleol..."
-
-#: standalone/drakconnect:155 standalone/drakconnect:237
-#: standalone/drakconnect:241
-#, c-format
-msgid "Apply"
-msgstr "Gosod"
-
-#: standalone/drakconnect:188
-#, c-format
-msgid "Manage connections"
-msgstr "Rheoli cysylltiadau"
-
-#: standalone/drakconnect:215
-#, c-format
-msgid "Device selected"
-msgstr "Dewiswyd y ddyfais"
-
-#: standalone/drakconnect:296
-#, c-format
-msgid "IP configuration"
-msgstr "Ffurfweddiad IP"
-
-#: standalone/drakconnect:335
-#, c-format
-msgid "DNS servers"
-msgstr "Gweinydd DNS"
-
-#: standalone/drakconnect:343
-#, c-format
-msgid "Search Domain"
-msgstr "Chwilio Parth"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "static"
-msgstr "statig"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "DHCP"
-msgstr "DHCP"
-
-#: standalone/drakconnect:515
-#, c-format
-msgid "Flow control"
-msgstr "Rheolwr llif"
-
-#: standalone/drakconnect:516
-#, c-format
-msgid "Line termination"
-msgstr "Terfyn llinell"
-
-#: standalone/drakconnect:527
-#, c-format
-msgid "Modem timeout"
-msgstr "Goramser modem"
-
-#: standalone/drakconnect:531
-#, c-format
-msgid "Use lock file"
-msgstr "Dewiswch ffeil clo"
-
-#: standalone/drakconnect:533
-#, c-format
-msgid "Wait for dialup tone before dialing"
-msgstr "Arhoswch am y tôn deialu cyn deialu"
-
-#: standalone/drakconnect:536
-#, c-format
-msgid "Busy wait"
-msgstr "Prysur arhoswch"
-
-#: standalone/drakconnect:541
-#, c-format
-msgid "Modem sound"
-msgstr "Sain modem"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Enable"
-msgstr "Galluogi"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Disable"
-msgstr "Analluogi"
-
-#: standalone/drakconnect:593 standalone/harddrake2:50
-#, c-format
-msgid "Media class"
-msgstr "Dosbarth y cyfrwng"
-
-#: standalone/drakconnect:594
-#, c-format
-msgid "Module name"
-msgstr "Enw'r modiwl"
-
-#: standalone/drakconnect:595
-#, c-format
-msgid "Mac Address"
-msgstr "Cyfeiriad Mac"
-
-#: standalone/drakconnect:596 standalone/harddrake2:28
-#: standalone/harddrake2:120
-#, c-format
-msgid "Bus"
-msgstr "Bws"
-
-#: standalone/drakconnect:597 standalone/harddrake2:34
-#, c-format
-msgid "Location on the bus"
-msgstr "Lleoliad ar y bws"
-
-#: standalone/drakconnect:700 standalone/drakgw:311
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Nid oes addasydd rhwydwaith ethernet wedi ei ganfod ar eich system. Rhedwch "
-"yr offeryn ffurfweddu caledwedd."
-
-#: standalone/drakconnect:709
-#, c-format
-msgid "Remove a network interface"
-msgstr "Tynnu rhyngwyneb rhwydwaith"
-
-#: standalone/drakconnect:713
-#, c-format
-msgid "Select the network interface to remove:"
-msgstr "Dewis y rhyngwyneb rhwydwaith i'w dynnu:"
-
-#: standalone/drakconnect:745
-#, c-format
-msgid ""
-"An error occurred while deleting the \"%s\" network interface:\n"
-"\n"
-"%s"
-msgstr ""
-"Digwyddodd gwall wrth ddileu rhyngwyneb rhwydwaith \"%s\":\n"
-"\n"
-"%s"
-
-#: standalone/drakconnect:746
-#, c-format
-msgid ""
-"Congratulations, the \"%s\" network interface has been successfully deleted"
-msgstr "Llongyfarchiadau, dilëwyd rhyngwyneb \"%s\" yn llwyddiannus"
-
-#: standalone/drakconnect:761
-#, c-format
-msgid "No IP"
-msgstr "Dim IP"
-
-#: standalone/drakconnect:762
-#, c-format
-msgid "No Mask"
-msgstr "Dim Mask"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "up"
-msgstr "fyny"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "down"
-msgstr "lawr"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Connected"
-msgstr "Wedi cysylltu"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Not connected"
-msgstr "Heb gysylltu"
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Disconnect..."
-msgstr "Datgysylltu..."
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Connect..."
-msgstr "Cysylltu..."
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Deactivate now"
-msgstr "Dad weithredu nawr"
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Activate now"
-msgstr "Cychwyn nawr"
-
-#: standalone/drakconnect:849
-#, c-format
-msgid ""
-"You do not have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nid oes gennych unrhyw rhagwynebau wedi\n"
-"eu ffurfweddio. Ffurfweddwch nhw'n gyntaf\n"
-"drwy glicio ar 'Ffurfweddu'"
-
-#: standalone/drakconnect:863
-#, c-format
-msgid "LAN Configuration"
-msgstr "Ffurfweddiad Rhwydwaith Lleol (LAN)"
-
-#: standalone/drakconnect:875
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Addasydd %s: %s"
-
-#: standalone/drakconnect:884
-#, c-format
-msgid "Boot Protocol"
-msgstr "Protocol Cychwyn"
-
-#: standalone/drakconnect:885
-#, c-format
-msgid "Started on boot"
-msgstr "Cychwyn y peiriant"
-
-#: standalone/drakconnect:921
-#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Nid yw'r rhag wyneb hwn wedi ei ffurfweddu eto.\n"
-"Cychwynnwch y cynorthwyydd \"Ychwanegu rhyngwyneb\" o' Ganolfan Rheoli "
-"Mandriva"
-
-#: standalone/drakconnect:975 standalone/net_applet:51
-#, c-format
-msgid ""
-"You do not have any configured Internet connection.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Nid oes gennych gyswllt wedi ei ffurfweddu â'r Rhyngrwyd.\n"
-"Cychwynnwch gynorthwy-ydd \"%s\" o Ganolfan Rheoli Mandriva"
-
-#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: standalone/drakconnect:976 standalone/drakroam:34 standalone/net_applet:52
-#, c-format
-msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
-msgstr "Gosod rhygnwyneb rhwydwaith newydd (LAN, ISDN, ADSL, ...)"
-
-#: standalone/drakconnect:981
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Ffurfweddiad cysylltiad â'r Rhyngrwyd"
-
-#: standalone/drakconnect:994
-#, c-format
-msgid "Third DNS server (optional)"
-msgstr "Trydydd gweinydd DNS (dewisol)"
-
-#: standalone/drakconnect:1016
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Ffurfweddu Cysylltiad â'r Rhyngrwyd"
-
-#: standalone/drakconnect:1017
-#, c-format
-msgid "Internet access"
-msgstr "Mynediad i'r Rhyngrwyd"
-
-#: standalone/drakconnect:1019 standalone/net_monitor:95
-#, c-format
-msgid "Connection type: "
-msgstr "Math o gyswllt:"
-
-#: standalone/drakconnect:1022
-#, c-format
-msgid "Status:"
-msgstr "Statws"
-
-#: standalone/drakconnect:1027
-#, c-format
-msgid "Parameters"
-msgstr "Paramedrau"
-
-#: standalone/drakedm:40
-#, c-format
-msgid "GDM (GNOME Display Manager)"
-msgstr "GDM (rheolwr arddangos GNOME)"
-
-#: standalone/drakedm:41
-#, c-format
-msgid "KDM (KDE Display Manager)"
-msgstr "KDM (rheolwr arddangos KDE)"
-
-#: standalone/drakedm:42
-#, c-format
-msgid "XDM (X Display Manager)"
-msgstr "XDM (rheolwr arddangos X)"
-
-#: standalone/drakedm:53
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Dewis rheolwr arddangos"
-
-#: standalone/drakedm:54
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"Mae'r Rheolwr Arddangos X11 yn caniatáu i chi fewngofnodi\n"
-"i'ch system yn graffigol gyda'r X Windows System yn rhedeg. Mae'n cynnal\n"
-"rhedeg amryw o sesiynau X ar eich cyfrifiadur ar yr un pryd."
-
-#: standalone/drakedm:72
-#, c-format
-msgid "The change is done, do you want to restart the dm service?"
-msgstr "Mae'r newid wedi ei gyflawni. Ailgychwyn gwasanaeth dm?"
-
-#: standalone/drakedm:73
-#, c-format
-msgid ""
-"You are going to close all running programs and lose your current session. "
-"Are you really sure that you want to restart the dm service?"
-msgstr ""
-"Rydych yn mynd i gau pob rhaglen sy'n rhedeg a cholli eich sesiwn presennol. "
-"Ydych chi'n siŵr eich bod am ailgychwyn y gwasanaeth dm?"
-
-#: standalone/drakfont:182
-#, c-format
-msgid "Search installed fonts"
-msgstr "Chwilio am ffontiau wedi eu gosod"
-
-#: standalone/drakfont:184
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "Tynnu ffontiau wedi eu gosod"
-
-#: standalone/drakfont:207
-#, c-format
-msgid "parse all fonts"
-msgstr "pob ffont"
-
-#: standalone/drakfont:209
-#, c-format
-msgid "No fonts found"
-msgstr "Heb ganfod ffontiau"
-
-#: standalone/drakfont:217 standalone/drakfont:259 standalone/drakfont:326
-#: standalone/drakfont:359 standalone/drakfont:367 standalone/drakfont:393
-#: standalone/drakfont:411 standalone/drakfont:425
-#, c-format
-msgid "done"
-msgstr "gorffen"
-
-#: standalone/drakfont:222
-#, c-format
-msgid "Could not find any font in your mounted partitions"
-msgstr "Methu canfod unrhyw ffont yn eich rhaniad gosodedig"
-
-#: standalone/drakfont:257
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Ailddewis y ffontiau cywir"
-
-#: standalone/drakfont:260
-#, c-format
-msgid "Could not find any font.\n"
-msgstr "Methu canfod unrhyw ffontiau.\n"
-
-#: standalone/drakfont:270
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Chwilio am ffontiau yn y rhestr gosod"
-
-#: standalone/drakfont:295
-#, c-format
-msgid "%s fonts conversion"
-msgstr "trosi ffontiau %s"
-
-#: standalone/drakfont:324
-#, c-format
-msgid "Fonts copy"
-msgstr "Copïo ffontiau"
-
-#: standalone/drakfont:327
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Gosod ffontiau True Type"
-
-#: standalone/drakfont:334
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "arhoswch yn ystod ttmkfdir..."
-
-#: standalone/drakfont:335
-#, c-format
-msgid "True Type install done"
-msgstr "Wedi gosod True Type"
-
-#: standalone/drakfont:341 standalone/drakfont:356
-#, c-format
-msgid "type1inst building"
-msgstr "adeiladu math 1inst"
-
-#: standalone/drakfont:350
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "cyfeirio Ghostscript"
-
-#: standalone/drakfont:360
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Llethu Ffeiliau Dros dro"
-
-#: standalone/drakfont:363
-#, c-format
-msgid "Restart XFS"
-msgstr "Ail gychwyn XFS"
-
-#: standalone/drakfont:409 standalone/drakfont:419
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Llethu ffeiliau Ffontiau"
-
-#: standalone/drakfont:421
-#, c-format
-msgid "xfs restart"
-msgstr "ail gychwyn xfs"
-
-#: standalone/drakfont:429
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
-"Cyn gosod unrhyw ffontiau, gwnewch yn siŵr fod gennych yr hawl i'w defnyddio "
-"a'u gosod ar eich system.\n"
-"\n"
-"- Gallwch osod y ffontiau yn y dull arferol. Mewn achosion prin, gall "
-"ffontiau ffug rewi Gwasanaethwr X."
-
-#: standalone/drakfont:473 standalone/drakfont:482
-#, c-format
-msgid "DrakFont"
-msgstr "DrakFont"
-
-#: standalone/drakfont:483
-#, c-format
-msgid "Font List"
-msgstr "Rhestr Ffontiau"
-
-#: standalone/drakfont:486
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "Estyn Ffontiau Windows"
-
-#: standalone/drakfont:492
-#, c-format
-msgid "About"
-msgstr "Ynghylch"
-
-#: standalone/drakfont:494 standalone/drakfont:718
-#, c-format
-msgid "Uninstall"
-msgstr "Dad osod"
-
-#: standalone/drakfont:495
-#, c-format
-msgid "Import"
-msgstr "Mewnforio"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakfont:513
-#, c-format
-msgid "Copyright (C) 2001-2006 by Mandriva"
-msgstr ""
-
-#: standalone/drakfont:515
-#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-"Mae'r rhaglen hon yn feddalwedd rhydd; gallwch ei ailddosbarthu\n"
-"a/neu ei newid o dan amodau Trwydded Gyhoeddus Gyffredinol GNU\n"
-"fel sydd wedi ei gyhoeddi gan y Free Software Foundation; un ai fersiwn\n"
-"2 neu (yn ôl eich dewis) unrhyw fersiwn diweddarach.\n"
-"\n"
-"\n"
-" Mae'r rhaglen yn cael ei ddosbarthu yn y gobaith y bydd yn ddefnyddiol,\n"
-" ond HEB UNRHYW WARANT; heb hyd yn oed awgrym o warant o\n"
-" FASNACHEIDDRWYDD nag ADDASRWYDD AR GYFER PWRPAS\n"
-" PENODOL. Gweler Trwydded Gyhoeddus Gyffredinol GNU am fwy o\n"
-" wybodaeth.\n"
-"\n"
-"\n"
-" Dylech fod wedi derbyn copi o Drwydded Gyhoeddus Gyffredinol GNU\n"
-" gyda'r rhaglen; os nad, ysgrifennwch at:\n"
-" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n"
-"MA 02111-1307, USA"
-
-#: standalone/drakfont:531
-#, c-format
-msgid ""
-"Thanks:\n"
-"\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
-msgstr ""
-"Diolch:\n"
-" - pfm2afm: \n"
-"\t gan Ken Borgendale:\n"
-"\t Trosi ffeil .pfm Windows i .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t gan James Macnicol: \n"
-"\t type1inst cynhyrchu files fonts.dir fonts.scale a Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t gan Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Trosi ffeiliau ffont i ffontiau afm pfb\n"
-
-#: standalone/drakfont:550
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Dewiswch y rhaglenni fydd yn cynnal ffontiau:"
-
-#: standalone/drakfont:561
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: standalone/drakfont:562
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: standalone/drakfont:563
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
-
-#: standalone/drakfont:564
-#, c-format
-msgid "Generic Printers"
-msgstr "Argraffyddion Generig"
-
-#: standalone/drakfont:578
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Dewiswch ffeil neu gyfeiriadur y ffont a chlicio 'Ychwanegu'"
-
-#: standalone/drakfont:579
-#, c-format
-msgid "File Selection"
-msgstr "Dewis ffeiliau"
-
-#: standalone/drakfont:583
-#, c-format
-msgid "Fonts"
-msgstr "Wynebfathau"
-
-#: standalone/drakfont:646
-#, c-format
-msgid "Import fonts"
-msgstr "Mewnforio ffontiau"
-
-#: standalone/drakfont:651
-#, c-format
-msgid "Install fonts"
-msgstr "Ychwanegu ffontiau"
-
-#: standalone/drakfont:681
-#, c-format
-msgid "Are you sure you want to uninstall the following fonts?"
-msgstr ""
-
-#: standalone/drakfont:726
-#, c-format
-msgid "Unselected All"
-msgstr "Dad ddewis Popeth"
-
-#: standalone/drakfont:729
-#, c-format
-msgid "Selected All"
-msgstr "Dewis Popeth"
-
-#: standalone/drakfont:743 standalone/drakfont:762
-#, c-format
-msgid "Importing fonts"
-msgstr "Mewnforio ffontiau"
-
-#: standalone/drakfont:747 standalone/drakfont:767
-#, c-format
-msgid "Initial tests"
-msgstr "Prawf Init"
-
-#: standalone/drakfont:748
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Copïo'r ffontiau ar eich system!"
-
-#: standalone/drakfont:749
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Gosod a throsi ffontiau"
-
-#: standalone/drakfont:750
-#, c-format
-msgid "Post Install"
-msgstr "Wedi'r Gosod"
-
-#: standalone/drakfont:768
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Tynnu ffontiau oddi ar eich system!"
-
-#: standalone/drakfont:769
-#, c-format
-msgid "Post Uninstall"
-msgstr "Wedi'r dad osod"
-
-#: standalone/drakgw:50 standalone/drakvpn:51
-#, c-format
-msgid "Sorry, we support only 2.4 and above kernels."
-msgstr "Mae'n ddrwg gennym, dim ond cnewyllyn 2.4 sy'n cael ei gynnal."
-
-#: standalone/drakgw:75
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Rhannu Cysylltiad â'r Rhyngrwyd"
-
-#: standalone/drakgw:79
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Rydych ar fin ffurfweddu eich cyfrifiadur i rannu ei gysylltiad Rhyngrwyd\n"
-"Gyda'r nodwedd hon bydd cyfrifiaduron eraill ar eich rhwydwaith lleol yn "
-"gallu rhannu cyswllt rhyngrwyd y cyfrifiadur hwn.\n"
-"\n"
-"Gwnewch yn siŵr eich bod wedi ffurfweddu eich mynediad Rhwydwaith/Rhyngrwyd "
-"gyda drakconnect cyn mynd ymhellach.\n"
-"\n"
-"Sylwer: bydd angen Addasydd Rhwydwaith un-pwrpas i greu Rhwydwaith Lleol "
-"(LAN)."
-
-#: standalone/drakgw:95
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Mae gosodiad Rhannu Cysylltiad â'r Rhyngrwyd wedi ei gyflawni. \n"
-"Mae wedi ei alluogi. \n"
-"\n"
-"Beth hoffech ei wneud?"
-
-#: standalone/drakgw:99
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Mae gosodiad rhannu cysylltiad â'r Rhyngrwyd wedi ei gyflawni. \n"
-"Mae wedi ei analluogi. \n"
-"\n"
-"Beth hoffech ei wneud?"
-
-#: standalone/drakgw:105
-#, c-format
-msgid "Reconfigure"
-msgstr "Ail-ffurfweddu"
-
-#: standalone/drakgw:145
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Dim ond un addasydd rhwydwaith wedi ei ffurfweddu sydd ar eich system\n"
-"\n"
-"%s\n"
-"\n"
-"Rwyf ar fin gosod eich Rhwydwaith Lleol gyda'r addasydd hwnnw.."
-
-#: standalone/drakgw:156
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Dewiswch ba addasyddion rhwydwaith fydd yn cael eu cysylltu â'ch Rhwydwaith "
-"Lleol."
-
-#: standalone/drakgw:177
-#, c-format
-msgid "Local Area Network settings"
-msgstr "Gosodiadau Rhwydwaith Ardal Leol"
-
-#: standalone/drakgw:180
-#, c-format
-msgid "Local IP address"
-msgstr "Cyfeiriad IP lleol"
-
-#: standalone/drakgw:182
-#, c-format
-msgid "The internal domain name"
-msgstr "Enw'r parth mewnol"
-
-#: standalone/drakgw:188
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"Canfuwyd gwrthdaro posib yng nghyfeiriad LAN ffurfweddiad presennol %s!\n"
-
-#: standalone/drakgw:204
-#, c-format
-msgid "Domain Name Server (DNS) configuration"
-msgstr "Ffurfweddiad Gweinydd Enw Parth (DNS)"
-
-#: standalone/drakgw:208
-#, c-format
-msgid "Use this gateway as domain name server"
-msgstr "Defnyddio'r fynedfafel gweinydd enw parth"
-
-#: standalone/drakgw:209
-#, c-format
-msgid "The DNS Server IP"
-msgstr "Y Gweinydd DHCP IP"
-
-#: standalone/drakgw:236
-#, c-format
-msgid ""
-"DHCP Server Configuration.\n"
-"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you do not know the meaning of an option, simply leave it as it is."
-msgstr ""
-"Ffurfweddiad Gweinydd DHCP\n"
-"\n"
-"Mae modd dewis dewisiadau gwahanol ar gyfer ffurfweddiad DHCP.\n"
-"Os nad ydych yn gwybod ystyr y dewis, gadewch lonydd iddo."
-
-#: standalone/drakgw:243
-#, c-format
-msgid "Use automatic configuration (DHCP)"
-msgstr "Denyddio ffurfweddiad awtomatig (DHCP)"
-
-#: standalone/drakgw:244
-#, c-format
-msgid "The DHCP start range"
-msgstr "Amrediad cychwyn DHCP"
-
-#: standalone/drakgw:245
-#, c-format
-msgid "The DHCP end range"
-msgstr "Amrediad terfyn DHCP"
-
-#: standalone/drakgw:246
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Les rhagosodedig (mewn eiliadau)"
-
-#: standalone/drakgw:247
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Les fwyaf (mewn eiliadau)"
-
-#: standalone/drakgw:270
-#, c-format
-msgid "Proxy caching server (SQUID)"
-msgstr "Gweinydd storio dirprwyol (SQUID)"
-
-#: standalone/drakgw:274
-#, c-format
-msgid "Use this gateway as proxy caching server"
-msgstr "Defnyddio'r fynedfa fel gweinydd storio dirprwyol"
-
-#: standalone/drakgw:275
-#, c-format
-msgid "Admin mail"
-msgstr "E-bost gweinyddol"
-
-#: standalone/drakgw:276
-#, c-format
-msgid "Visible hostname"
-msgstr "Enw gwesteiwr gweladwyl"
-
-#: standalone/drakgw:277
-#, c-format
-msgid "Proxy port"
-msgstr "Porth dirprwyol"
-
-#: standalone/drakgw:278
-#, c-format
-msgid "Cache size (MB)"
-msgstr "Maint storfa (MB)"
-
-#: standalone/drakgw:300
-#, c-format
-msgid "Broadcast printer information"
-msgstr "Darlledu gwybodaeth argraffydd"
-
-#: standalone/drakgw:317
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Mae Rhannu Cysylltiad â'r Rhyngrwyd wedi ei alluogi."
-
-#: standalone/drakgw:323
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Mae Rhannu Cysylltiad â'r Rhyngrwyd wedi ei analluogi."
-
-#: standalone/drakgw:329
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP) and\n"
-" a Transparent Proxy Cache server (SQUID)."
-msgstr ""
-"Mae popeth wedi ei ffurfweddu\n"
-"Gallwch rannu cysylltiad â'r Rhyngrwyd gyda chyfrifiaduron eraill ar eich "
-"Rhwydwaith Lleol gan ddefnyddio ffurfweddiad rhwydwaith awtomatig (DHCP) a "
-"gweinydd Transparent Proxy Cache (SQUID)"
-
-#: standalone/drakgw:363
-#, c-format
-msgid "Disabling servers..."
-msgstr "Analluogi gweinyddion..."
-
-#: standalone/drakgw:377
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Wedi canfod ffurfweddiad mur gwarchod!"
-
-#: standalone/drakgw:378
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-"Rhybudd! Mae ffurfweddiad mur gwarchod wedi ei ganfod. Efallai bydd angen "
-"atgyweirio gyda llaw ar ôl y gosodiad."
-
-#: standalone/drakgw:383
-#, c-format
-msgid "Configuring..."
-msgstr "Ffurfweddu..."
-
-#: standalone/drakgw:384
-#, c-format
-msgid "Configuring firewall..."
-msgstr "Ffurfweddu'r mur cadarn..."
-
-#: standalone/drakhelp:17
-#, c-format
-msgid ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"\n"
-"Usage: \n"
-msgstr ""
-" drakhelp 0.1\n"
-"Hawlfraint (C) 2003-2005 Mandriva.\n"
-"Mae hwn yn feddalwedd rhydd ac mae modd ei ailddosbarthu o dan amodau GNU "
-"GPL.\n"
-"\n"
-"Defnydd: \n"
-
-#: standalone/drakhelp:22
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - dangos cymorth \n"
-
-#: standalone/drakhelp:23
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr ""
-" --id <id_label> - llwyth y dudalen cymorth html sy'n cyfeirio at "
-"id_label\n"
-
-#: standalone/drakhelp:24
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-" --doc <link> - cyswllt i dudalen we arall ( ar gyfer blaen croeso "
-"WM)\n"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "Mandriva Linux Help Center"
-msgstr "Canolfan Gymorth Mandriva Linux"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "No Help entry for %s\n"
-msgstr "Dim cofnod Cymorth ar gyfer %s\n"
-
-#: standalone/drakhosts:98
-#, c-format
-msgid "Please add an host to be able to modify it."
-msgstr "Ychwanegwch westeiwr i allu ei newid."
-
-#: standalone/drakhosts:108
-#, c-format
-msgid "Please modify information"
-msgstr "Newidiwch y wybodaeth"
-
-#: standalone/drakhosts:109
-#, c-format
-msgid "Please delete information"
-msgstr "Dilëwch wybodaeth"
-
-#: standalone/drakhosts:110
-#, c-format
-msgid "Please add information"
-msgstr "Ychwanegwch wybodaeth"
-
-#: standalone/drakhosts:115
-#, c-format
-msgid "IP address:"
-msgstr "Cyfeiriad IP :"
-
-#: standalone/drakhosts:116
-#, c-format
-msgid "Host name:"
-msgstr "Enw gwesteiwr :"
-
-#: standalone/drakhosts:117
-#, c-format
-msgid "Host Aliases:"
-msgstr "Enw arall Gwesteiwr:"
-
-#: standalone/drakhosts:123
-#, c-format
-msgid "Please enter a valid IP address."
-msgstr "Rhowch gyfeiriad IP dilys"
-
-#: standalone/drakhosts:129
-#, c-format
-msgid "Same IP is already in %s file."
-msgstr "Mae'r un IP yn ffeil %s"
-
-#: standalone/drakhosts:197
-#, c-format
-msgid "Host Aliases"
-msgstr "Enw arall Gwesteiwyr"
-
-#: standalone/drakhosts:237
-#, c-format
-msgid "DrakHOSTS manage hosts definitions"
-msgstr "DrakHOSTS yn rheoli diffiniadau gwesteiwyr"
-
-#: standalone/drakhosts:246
-#, c-format
-msgid "Failed to add host."
-msgstr "Methwyd ychwanegu gwesteiwr"
-
-#: standalone/drakhosts:253
-#, c-format
-msgid "Failed to Modify host."
-msgstr "Methwyd Newid Gwesteiwr"
-
-#: standalone/drakhosts:260
-#, c-format
-msgid "Failed to remove host."
-msgstr "Methwyd tynnu gwesteiwr"
-
-#: standalone/drakids:26
-#, c-format
-msgid "Allowed addresses"
-msgstr "Cyfeiriadau caniatawyd"
-
-#: standalone/drakids:57
-#, c-format
-msgid "Log"
-msgstr "Cofnodion"
-
-#: standalone/drakids:61
-#, c-format
-msgid "Clear logs"
-msgstr "Clirio cofnodion"
-
-#: standalone/drakids:62 standalone/drakids:67 standalone/net_applet:470
-#, c-format
-msgid "Blacklist"
-msgstr "Rhestr Atal"
-
-#: standalone/drakids:63 standalone/drakids:80 standalone/net_applet:475
-#, c-format
-msgid "Whitelist"
-msgstr "Rhestr Caniatáu"
-
-#: standalone/drakids:71
-#, c-format
-msgid "Remove from blacklist"
-msgstr "Tynnu o'r rhestr wrthod LVM"
-
-#: standalone/drakids:72
-#, c-format
-msgid "Move to whitelist"
-msgstr "Symud i'r rhestr caniatáu"
-
-#: standalone/drakids:84
-#, c-format
-msgid "Remove from whitelist"
-msgstr "Tynnu o'r rhestr caniatáu"
-
-#: standalone/drakids:136 standalone/drakids:145 standalone/drakids:170
-#: standalone/drakids:179 standalone/drakids:189 standalone/drakids:265
-#: standalone/drakroam:182 standalone/net_applet:202 standalone/net_applet:385
-#, c-format
-msgid "Unable to contact daemon"
-msgstr "Methu cysylltu â daemon"
-
-#: standalone/drakids:202
-#, c-format
-msgid "Date"
-msgstr "Dyddiad"
-
-#: standalone/drakids:203
-#, c-format
-msgid "Attacker"
-msgstr "Ymosodwr"
-
-#: standalone/drakids:204
-#, c-format
-msgid "Attack type"
-msgstr "Math o ymosodiad"
-
-#: standalone/drakids:205
-#, c-format
-msgid "Service"
-msgstr "Gwasanaeth"
-
-#: standalone/drakids:206 standalone/net_applet:72
-#, c-format
-msgid "Network interface"
-msgstr "Rhyngwyneb rhwydwaith"
-
-#: standalone/draknfs:41
-#, c-format
-msgid "map root user as anonymous"
-msgstr "mapio defnyddiwr gwraidd fel dienw"
-
-#: standalone/draknfs:42
-#, c-format
-msgid "map all users to anonymous user"
-msgstr "mapio pob defnyddiwr fel defnyddiwr dienw"
-
-#: standalone/draknfs:43
-#, c-format
-msgid "No user UID mapping"
-msgstr "Mapio UID dim defnyddiwr"
-
-#: standalone/draknfs:44
-#, c-format
-msgid "allow real remote root access"
-msgstr "caniatau mynediad gwraidd real"
-
-#: standalone/draknfs:83
-#, c-format
-msgid "NFS server"
-msgstr "Gweinydd NFS"
-
-#: standalone/draknfs:83
-#, c-format
-msgid "Restarting/Reloading NFS server..."
-msgstr "Ailgychwyn/Ail-lwytho gweinydd NFS..."
-
-#: standalone/draknfs:84
-#, c-format
-msgid "Error Restarting/Reloading NFS server"
-msgstr "Gwall Ailgychwyn/Ail-lwytho gweinydd NFS"
-
-#: standalone/draknfs:100 standalone/draksambashare:203
-#, c-format
-msgid "Directory Selection"
-msgstr "Dewis Cyfeiriadur"
-
-#: standalone/draknfs:105 standalone/draksambashare:208
-#, c-format
-msgid "Should be a directory."
-msgstr "Dylai fod yn gyfeiriadur"
-
-#: standalone/draknfs:136
-#, c-format
-msgid ""
-"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
-"ways:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">single host:</span> a host either by an "
-"abbreviated name recognized be the resolver, fully qualified domain name, or "
-"an IP address\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">netgroups:</span> NIS netgroups may be given "
-"as @group.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">wildcards:</span> machine names may contain "
-"the wildcard characters * and ?. For instance: *.cs.foo.edu matches all "
-"hosts in the domain cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP networks:</span> you can also export "
-"directories to all hosts on an IP (sub-)network simultaneously. for example, "
-"either `/255.255.252.0' or `/22' appended to the network base address "
-"result.\n"
-msgstr ""
-"<span weight=\"bold\">Cleient NFS </span> - eu pennu::\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">gwesteiwr unigol:</span>gwesteiwr yn ol enw "
-"talfyredig, enw parth llawn neu gyfeiriad IP\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">grwpwiau rhwydwaiths:</span>Grwpiau "
-"rhwydwaith NIS fel @group.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">cardiau gwyllt:</span> gall enwau peiriannau "
-"gynnwys nodau cardiau gwyllt* a ?, e.e. : *.cs.foo.edu yn cydweddu pob "
-"gwesteiwr ym mharth cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Rhwydweithiau IP:</span> gallwch hefyd "
-"allforio cyfeiriaduron i bob gwestai ar rhwydwaith neu isrwydwaith ar yr un "
-"pryd, e.e. un ai `/255.255.252.0' neu `/22' ar ddiwedd canlyniad "
-"cyfeiriad sail y rhwydwaith.\n"
-
-#: standalone/draknfs:151
-#, c-format
-msgid ""
-"<span weight=\"bold\">User ID options</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map root user as anonymous:</span> map "
-"requests from uid/gid 0 to the anonymous uid/gid (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">allow real remote root access:</span> turn "
-"off root squashing. This option is mainly useful for diskless clients "
-"(no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map all users to anonymous user:</span> map "
-"all uids and gids to the anonymous user (all_squash). Useful for NFS-"
-"exported public FTP directories, news spool directories, etc. The opposite "
-"option is no user UID mapping (no_all_squash), which is the default "
-"setting.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid and anongid:</span> explicitly set "
-"the uid and gid of the anonymous account.\n"
-msgstr ""
-"<span weight=\"bold\">Dewisiadau Enw Defnyddiwr</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">mapio defnyddwyr gwraidd fel dienw:</span> "
-"mapio ceisiadau o uid/gid 0 i'r uid/gid dienw (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">caniatau mynediad gwraidd pell real:</span> "
-"dileu atal gwraidd. Mae'r dewis yn bennaf ar gyfer clientiaid diddisg."
-"(no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">mapio pob defnyddiwr i ddefnyddwyr dienw:</"
-"span> io pob uids a gids i'r defnyddiwr dienw (all_squash). Defnyddiol ar "
-"gyfer cyfeiriaduron cyhoeddus NFS allfor, cyfeiriaduron sbwl newyddion, "
-"etc. Y gwrthwyneb yw dim mapio enwau (no_all_squash), sef y rheol arferol.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid ac anongid:</span> yn gosod y uid a "
-"gid y cyfrif dienw.\n"
-
-#: standalone/draknfs:167
-#, c-format
-msgid "Synchronous access:"
-msgstr "Mynediad cydamserol"
-
-#: standalone/draknfs:168
-#, c-format
-msgid "Secured Connection:"
-msgstr "Cysylltiad a Ddiogelwyd:"
-
-#: standalone/draknfs:169
-#, c-format
-msgid "Read-Only share:"
-msgstr "Rhan Darllen yn Unig:"
-
-#: standalone/draknfs:171
-#, c-format
-msgid "<span weight=\"bold\">Advanced Options</span>"
-msgstr "<span weight=\"bold\">Dewisiadau Uwch</span>"
-
-#: standalone/draknfs:172
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> this option requires that "
-"requests originate on an internet port less than IPPORT_RESERVED (1024). "
-"This option is on by default."
-msgstr ""
-"<span foreground=\"royalblue3\">%s:</span> mae'r dewis yn gofyn fod "
-"ceisiadau'n dod o borth rhygnrwyd llai na IPPORT_RESERVED (1024). Dyma'r "
-"dewis arferol."
-
-#: standalone/draknfs:173
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> allow either only read or both "
-"read and write requests on this NFS volume. The default is to disallow any "
-"request which changes the filesystem. This can also be made explicit by "
-"using this option."
-msgstr ""
-"<span foreground=\"royalblue3\">%s:</span> yn caniatau un ai geisiadau "
-"darllen yn unig neu ddarllen ac ysgrifennu ar y gyfrol NFS. Yr arferol yw "
-"atal unrhyw gais sy'n newid y system ffeiliau. Gellir gwneud hynny'n glir "
-"drwy ddefnyddio'r dewis yma."
-
-#: standalone/draknfs:174
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> disallows the NFS server to "
-"violate the NFS protocol and to reply to requests before any changes made by "
-"these requests have been committed to stable storage (e.g. disc drive)."
-msgstr ""
-"<span foreground=\"royalblue3\">%s:</span> yn atal y gweinydd NFS rhag dori "
-"protocol NFS ac ateb i geisiadau cyn bod unrhwy newidiadau wedi eu gwneud "
-"gan y ceisiadau hyn ac wedi eu gosod mewn storfa (e.e. gyrrwr disgiau)."
-
-#: standalone/draknfs:306
-#, c-format
-msgid "Please add an NFS share to be able to modify it."
-msgstr "Ychwanegwch ran NFS i allu ei newid."
-
-#: standalone/draknfs:378
-#, c-format
-msgid "Advanced Options Help"
-msgstr "Cymorth Dewisiadau Uwch"
-
-#: standalone/draknfs:389
-#, c-format
-msgid "NFS directory"
-msgstr "Cyfeiriadur NFS"
-
-#: standalone/draknfs:391 standalone/draksambashare:592
-#: standalone/draksambashare:771
-#, c-format
-msgid "Directory:"
-msgstr "Cyfeiriadur :"
-
-#: standalone/draknfs:394
-#, c-format
-msgid "Host access"
-msgstr "Mynediad gwesteiwr"
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Access:"
-msgstr "Cyrchiad :"
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Hosts Access"
-msgstr "Mynediad Gwesteiwr"
-
-#: standalone/draknfs:399
-#, c-format
-msgid "User ID Mapping"
-msgstr "Mapio Enw Defnyddiwr"
-
-#: standalone/draknfs:401
-#, c-format
-msgid "User ID:"
-msgstr "Enw Defnyddiwr :"
-
-#: standalone/draknfs:401
-#, c-format
-msgid "Help User ID"
-msgstr "Cymorth Enw Defnyddiwr"
-
-#: standalone/draknfs:402
-#, c-format
-msgid "Anonymous user ID:"
-msgstr "Enw defnyddiwr dienw:"
-
-#: standalone/draknfs:403
-#, c-format
-msgid "Anonymous Group ID:"
-msgstr "Enw Grŵp Dienw:"
-
-#: standalone/draknfs:444
-#, c-format
-msgid "Can't create this directory."
-msgstr "Methu creu'r cyfeiriadur,"
-
-#: standalone/draknfs:447
-#, c-format
-msgid "You must specify hosts access."
-msgstr "Rhaid pennu mynediad cyfeiriadur."
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Share Directory"
-msgstr "Rhannu Cyfeiriadur"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Hosts Wildcard"
-msgstr "Cerdyn Gwyllt Gwesteiwr"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "General Options"
-msgstr "Dewisiadau Cyffredinol"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Custom Options"
-msgstr "Dewisiadau Addasu"
-
-#: standalone/draknfs:539 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Please enter a directory to share."
-msgstr "Rhowch gyfeiriadur i'w rannu"
-
-#: standalone/draknfs:546
-#, c-format
-msgid "Please use the modify button to set right access."
-msgstr "Defnyddiwch y botwm newid i osod hawl mynediad"
-
-#: standalone/draknfs:600
-#, c-format
-msgid "DrakNFS manage NFS shares"
-msgstr "Mae DrakNFS yn rheoli rhanu NFS"
-
-#: standalone/draknfs:609
-#, c-format
-msgid "Failed to add NFS share."
-msgstr "Methwyd ychwanegu rhan NFS"
-
-#: standalone/draknfs:616
-#, c-format
-msgid "Failed to Modify NFS share."
-msgstr "Methwyd newid rhan NFS"
-
-#: standalone/draknfs:623
-#, c-format
-msgid "Failed to remove an NFS share."
-msgstr "Methwyd tynnu rhan NFS"
-
-#: standalone/drakperm:21
-#, c-format
-msgid "System settings"
-msgstr "Gosodiadau'r system"
-
-#: standalone/drakperm:22
-#, c-format
-msgid "Custom settings"
-msgstr "Gosodiadau addasu"
-
-#: standalone/drakperm:23
-#, c-format
-msgid "Custom & system settings"
-msgstr "Gosodiadau addasu a system"
-
-#: standalone/drakperm:43
-#, c-format
-msgid "Editable"
-msgstr "Golygadwy"
-
-#: standalone/drakperm:48 standalone/drakperm:323
-#: standalone/draksambashare:101
-#, c-format
-msgid "Path"
-msgstr "Llwybr"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "User"
-msgstr "Defnyddiwr"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "Group"
-msgstr "Grŵp"
-
-#: standalone/drakperm:48 standalone/drakperm:335
-#, c-format
-msgid "Permissions"
-msgstr "Caniatâd"
-
-#: standalone/drakperm:57
-#, c-format
-msgid "Add a new rule"
-msgstr "Ychwanegu rheol newydd"
-
-#: standalone/drakperm:64 standalone/drakperm:99 standalone/drakperm:124
-#, c-format
-msgid "Edit current rule"
-msgstr "Golygu'r rheol bresennol"
-
-#: standalone/drakperm:106
-#, c-format
-msgid ""
-"Here you can see files to use in order to fix permissions, owners, and "
-"groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
-msgstr ""
-"Mae modd gweld ffeiliau i'w defnyddio i drwsio caniatâd, perchnogion, a "
-"grwpiau drwy msec.\n"
-"Mae modd i chi olygu eich rheolau eich hun fydd yn ysgrifennu dros y rheolau "
-"rhagosodedig."
-
-#: standalone/drakperm:109
-#, c-format
-msgid ""
-"The current security level is %s.\n"
-"Select permissions to see/edit"
-msgstr ""
-"%s yw'r lefel diogelwch presennol\n"
-"Dewiswch ganiatâd i weld/golygu"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Up"
-msgstr "I fyny"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Symud y rheol i fyny un lefel"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Down"
-msgstr "I lawr"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Symud y rheol i lawr un lefel"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a rule"
-msgstr "Ychwanegu rheol"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Ychwanegu rheol newydd ar y diwedd"
-
-#: standalone/drakperm:123
-#, c-format
-msgid "Delete selected rule"
-msgstr "Dileu'r rheol hon"
-
-#: standalone/drakperm:242
-#, c-format
-msgid "browse"
-msgstr "pori"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "user"
-msgstr "defnyddiwr"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "group"
-msgstr "grŵp"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "other"
-msgstr "arall"
-
-#: standalone/drakperm:252
-#, c-format
-msgid "Read"
-msgstr "Darllen"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:255
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Galluogi \"%s\" i ddarllen y ffeil"
-
-#: standalone/drakperm:259
-#, c-format
-msgid "Write"
-msgstr "Ysgrifennu"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:262
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Galluogi \"%s\" i ysgrifennu i'r ffeil"
-
-#: standalone/drakperm:266
-#, c-format
-msgid "Execute"
-msgstr "Gweithredu"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:269
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Galluogi \"%s\" i weithredu'r ffeil"
-
-#: standalone/drakperm:272
-#, c-format
-msgid "Sticky-bit"
-msgstr "Sticky-bit"
-
-#: standalone/drakperm:272
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Defnydd cyfeiriadur:\n"
-" dim ond perchennog y cyfeiriadur neu ffeil yn y cyfeiriadur hwn fydd yn "
-"cael ei ddileu."
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Defnyddio enw perchennog i weithredu"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Use group id for execution"
-msgstr "Defnyddio enw grŵp i weithredu"
-
-#: standalone/drakperm:292 standalone/drakxtv:89
-#, c-format
-msgid "User:"
-msgstr "Defnyddiwr :"
-
-#: standalone/drakperm:294
-#, c-format
-msgid "Group:"
-msgstr "Grŵp :"
-
-#: standalone/drakperm:298
-#, c-format
-msgid "Current user"
-msgstr "Derbyn presennol"
-
-#: standalone/drakperm:299
-#, c-format
-msgid "When checked, owner and group will not be changed"
-msgstr "Wedi ei dicio, nid fydd y perchennog a'r grwp yn cael ei newid"
-
-#: standalone/drakperm:309
-#, c-format
-msgid "Path selection"
-msgstr "Dewis llwybr"
-
-#: standalone/drakperm:329
-#, c-format
-msgid "Property"
-msgstr "Eiddo"
-
-#: standalone/drakperm:380
-#, c-format
-msgid ""
-"The first character of the path must be a slash (\"/\"):\n"
-"\"%s\""
-msgstr ""
-"Rhaid i'r nod cyntaf yn y llwybr fod yn slaes (\"/\"):\n"
-"\"%s\""
-
-#: standalone/drakperm:390
-#, c-format
-msgid "Both the username and the group must valid!"
-msgstr "Rhaid i'r enw defnyddiwr a grŵp fod yn ddilys!"
-
-#: standalone/drakperm:391
-#, c-format
-msgid "User: %s"
-msgstr "Defnyddiwr : %s"
-
-#: standalone/drakperm:392
-#, c-format
-msgid "Group: %s"
-msgstr "Grŵp : %s"
-
-#: standalone/drakroam:33
-#, c-format
-msgid ""
-"You do not have any wireless interface.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Nid oes gennych ryngwyneb diwyfr.\n"
-"Rhedwch gynorthwyydd \"%s\" o Ganolfan Rheol Mandriva Linux"
-
-#: standalone/drakroam:48
-#, c-format
-msgid "SSID"
-msgstr "SSID"
-
-#: standalone/drakroam:49
-#, c-format
-msgid "Signal strength"
-msgstr "Nerth signal"
-
-#: standalone/drakroam:51
-#, c-format
-msgid "Encryption"
-msgstr "Amgryptiad"
-
-#: standalone/drakroam:112
-#, c-format
-msgid "Please enter settings for wireless network \"%s\""
-msgstr "Rhowch y gosodiadau ar gyfer rhwydwaith diwyfr \"%s\""
-
-#: standalone/drakroam:123
-#, c-format
-msgid "DNS server"
-msgstr "Gweinydd DNS"
-
-#: standalone/drakroam:228
-#, c-format
-msgid "Connect"
-msgstr "Cysylltu"
-
-#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/drakroam:229 standalone/printerdrake:251
-#, c-format
-msgid "Refresh"
-msgstr "Adnewyddu"
-
-#: standalone/draksambashare:68
-#, c-format
-msgid "Share directory"
-msgstr "Cyfeiriadur Cyfran"
-
-#: standalone/draksambashare:69 standalone/draksambashare:102
-#, c-format
-msgid "Comment"
-msgstr "Sylwad"
-
-#: standalone/draksambashare:70 standalone/draksambashare:103
-#, c-format
-msgid "Browseable"
-msgstr "Poradwy"
-
-#: standalone/draksambashare:71
-#, c-format
-msgid "Public"
-msgstr "Cyhoeddus"
-
-#: standalone/draksambashare:72 standalone/draksambashare:108
-#, c-format
-msgid "Writable"
-msgstr "Ysgrifenadwy"
-
-#: standalone/draksambashare:73 standalone/draksambashare:149
-#, c-format
-msgid "Create mask"
-msgstr "Creu masg"
-
-#: standalone/draksambashare:74 standalone/draksambashare:150
-#, c-format
-msgid "Directory mask"
-msgstr "Masg cyfeiriadur"
-
-#: standalone/draksambashare:75
-#, c-format
-msgid "Read list"
-msgstr "Rhestr Ddarllen"
-
-#: standalone/draksambashare:76 standalone/draksambashare:109
-#: standalone/draksambashare:606
-#, c-format
-msgid "Write list"
-msgstr "Rhestr ysgrifennu"
-
-#: standalone/draksambashare:77 standalone/draksambashare:141
-#, c-format
-msgid "Admin users"
-msgstr "Defnyddiwr Gwein"
-
-#: standalone/draksambashare:78 standalone/draksambashare:142
-#, c-format
-msgid "Valid users"
-msgstr "Defnyddiwr dilys"
-
-#: standalone/draksambashare:79
-#, c-format
-msgid "Inherit Permissions"
-msgstr "Etifeddu Caniatâd"
-
-#: standalone/draksambashare:80 standalone/draksambashare:143
-#, c-format
-msgid "Hide dot files"
-msgstr "Cuddio ffeiliau dot"
-
-#: standalone/draksambashare:82 standalone/draksambashare:148
-#, c-format
-msgid "Preserve case"
-msgstr "Cadw maint"
-
-#: standalone/draksambashare:83
-#, c-format
-msgid "Force create mode"
-msgstr "Gorfodi 'r modd creu"
-
-#: standalone/draksambashare:84
-#, c-format
-msgid "Force group"
-msgstr "Gorfodi grŵp"
-
-#: standalone/draksambashare:85 standalone/draksambashare:147
-#, c-format
-msgid "Default case"
-msgstr "Maint rhagosodedig"
-
-#: standalone/draksambashare:100
-#, c-format
-msgid "Printer name"
-msgstr "Enw'r argraffydd:"
-
-#: standalone/draksambashare:104 standalone/draksambashare:598
-#, c-format
-msgid "Printable"
-msgstr "Argraffadwy"
-
-#: standalone/draksambashare:105
-#, c-format
-msgid "Print Command"
-msgstr "Gorchymyn argraffu"
-
-#: standalone/draksambashare:106
-#, c-format
-msgid "LPQ command"
-msgstr "Gorchymyn LPQ"
-
-#: standalone/draksambashare:107
-#, c-format
-msgid "Guest ok"
-msgstr "Gwestai'n Ianw"
-
-#: standalone/draksambashare:110 standalone/draksambashare:151
-#: standalone/draksambashare:607
-#, c-format
-msgid "Inherit permissions"
-msgstr "Etifeddu caniatâd"
-
-#: standalone/draksambashare:112
-#, c-format
-msgid "Create mode"
-msgstr "Creu modd"
-
-#: standalone/draksambashare:113
-#, c-format
-msgid "Use client driver"
-msgstr "Defnyddio gyrrwr cleient"
-
-#: standalone/draksambashare:139
-#, c-format
-msgid "Read List"
-msgstr "Rhestr Ddarllen"
-
-#: standalone/draksambashare:140
-#, c-format
-msgid "Write List"
-msgstr "Rhestr Ysgrifennu"
-
-#: standalone/draksambashare:145
-#, c-format
-msgid "Force Group"
-msgstr "Gorfodi Grŵp"
-
-#: standalone/draksambashare:146
-#, c-format
-msgid "Force create group"
-msgstr "Gorfodi creu grŵp"
-
-#: standalone/draksambashare:166
-#, c-format
-msgid "About Draksambashare"
-msgstr "Ynghylch Draksambashare"
-
-#: standalone/draksambashare:166
-#, c-format
-msgid ""
-"Mandriva Linux \n"
-"Release: %s\n"
-"Author: Antoine Ginies\n"
-"\n"
-"This is a simple tool to easily manage Samba configuration."
-msgstr ""
-"Mandriva Linux \n"
-"Ryddhad: %s\n"
-"Awdur: Antoine Ginies\n"
-"\n"
-"Dyma offeryn syml o reoli ffurfweddu Samba yn hawdd."
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Samba server"
-msgstr "Gweinydd Samba"
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Restarting/Reloading Samba server..."
-msgstr "Algychwyn/Ail-lwytho gweinydd Samba..."
-
-#: standalone/draksambashare:187
-#, c-format
-msgid "Error Restarting/Reloading Samba server"
-msgstr "Error Restarting/Reloading Samba server"
-
-#: standalone/draksambashare:372
-#, c-format
-msgid "Add a Samba share"
-msgstr "Ychwanegu cyfran Samba"
-
-#: standalone/draksambashare:375
-#, c-format
-msgid "Goal of this wizard is to easily create a new Samba share."
-msgstr "Nod y dewin yw creu cyfran Samba yn hawdd"
-
-#: standalone/draksambashare:377
-#, c-format
-msgid "Name of the share:"
-msgstr "Enw'r gyfran"
-
-#: standalone/draksambashare:378 standalone/draksambashare:591
-#: standalone/draksambashare:772
-#, c-format
-msgid "Comment:"
-msgstr "Sylwad:"
-
-#: standalone/draksambashare:379
-#, c-format
-msgid "Path:"
-msgstr "Llwybr:"
-
-#: standalone/draksambashare:384
-#, c-format
-msgid ""
-"Share with the same name already exist or share name empty, please choose "
-"another name."
-msgstr "Cyfrannu gyda'r un enw presennol neu enw gwag, dewiswch enw arall."
-
-#: standalone/draksambashare:388 standalone/draksambashare:394
-#, c-format
-msgid "Can't create the directory, please enter a correct path."
-msgstr "Methu creu y cyfeiriadur arall, rhowch y llwybr cywir."
-
-#: standalone/draksambashare:391 standalone/draksambashare:627
-#: standalone/draksambashare:794
-#, c-format
-msgid "Please enter a Comment for this share."
-msgstr "Rhowch Sylw ar gyfer y gyfran"
-
-#: standalone/draksambashare:422
-#, c-format
-msgid ""
-"The wizard successfully added the Samba share. Now just double click on it "
-"in treeview to modify it"
-msgstr ""
-"Mae'r dewis wedi ychwanegu cyfran Samba. Nawr rhowch clic dwbl iddo yng "
-"ngholwg coeden i'w newid."
-
-#: standalone/draksambashare:437
-#, c-format
-msgid "pdf-gen - a PDF generator"
-msgstr "pdf-gen - cynhyrchydd PDF"
-
-#: standalone/draksambashare:438
-#, c-format
-msgid "printers - all printers available"
-msgstr "argraffydd - pob argraffydd"
-
-#: standalone/draksambashare:442
-#, c-format
-msgid "Add Special Printer share"
-msgstr "Ychwanegu cyfran Argraffydd Arbennig"
-
-#: standalone/draksambashare:445
-#, c-format
-msgid ""
-"Goal of this wizard is to easily create a new special printer Samba share."
-msgstr "Nod y dewin yw creu cyfran argraffydd arbennig newydd Samba ."
-
-#: standalone/draksambashare:453
-#, c-format
-msgid "A PDF generator already exists."
-msgstr "Mae cynhyrchydd PDF eisoes yn bod."
-
-#: standalone/draksambashare:477
-#, c-format
-msgid "Printers and print$ already exist."
-msgstr "Argraffyddion ac argraff$ yn bodoli eisoes."
-
-#: standalone/draksambashare:528
-#, c-format
-msgid "The wizard successfully added the printer Samba share"
-msgstr "Mae'r dewin wedi ychwanegu cyfran argraffydd Samba yn llwyddiannus."
-
-#: standalone/draksambashare:551
-#, c-format
-msgid "Please add or select a Samba printer share to be able to modify it."
-msgstr "Ychwanegwch neu ddewis cyfran argraffydd Samba i allu ei newid."
-
-#: standalone/draksambashare:587
-#, c-format
-msgid "Printer share"
-msgstr "Cyfran argraffydd"
-
-#: standalone/draksambashare:590
-#, c-format
-msgid "Printer name:"
-msgstr "Enw'r argraffydd:"
-
-#: standalone/draksambashare:596 standalone/draksambashare:777
-#, c-format
-msgid "Writable:"
-msgstr "Ysgrifenadwy :"
-
-#: standalone/draksambashare:597 standalone/draksambashare:778
-#, c-format
-msgid "Browseable:"
-msgstr "Poradwy:"
-
-#: standalone/draksambashare:602
-#, c-format
-msgid "Advanced options"
-msgstr "Gosodiadau uwch"
-
-#: standalone/draksambashare:604
-#, c-format
-msgid "Printer access"
-msgstr "Mynediad argraffydd"
-
-#: standalone/draksambashare:608
-#, c-format
-msgid "Guest ok:"
-msgstr "Gwestai'n iawn:"
-
-#: standalone/draksambashare:609
-#, c-format
-msgid "Create mode:"
-msgstr "Creu modd:"
-
-#: standalone/draksambashare:613
-#, c-format
-msgid "Printer command"
-msgstr "Gorchymyn argraffydd"
-
-#: standalone/draksambashare:615
-#, c-format
-msgid "Print command:"
-msgstr "Gorchymyn argraffu:"
-
-#: standalone/draksambashare:616
-#, c-format
-msgid "LPQ command:"
-msgstr "Gorchymyn LPQ"
-
-#: standalone/draksambashare:617
-#, c-format
-msgid "Printing:"
-msgstr "Argraffu :"
-
-#: standalone/draksambashare:633
-#, c-format
-msgid "create mode should be numeric. ie: 0755."
-msgstr "dylai'r modd creu fod yn rhifol, h.y. 0755."
-
-#: standalone/draksambashare:695
-#, c-format
-msgid "DrakSamba entry"
-msgstr "Cofnod DrakSamba"
-
-#: standalone/draksambashare:700
-#, c-format
-msgid "Please add or select a Samba share to be able to modify it."
-msgstr "Ychwanegwch neu ddewis cyfran Samba i allu ei newid."
-
-#: standalone/draksambashare:723
-#, c-format
-msgid "Samba user access"
-msgstr "Mynediad defnyddiwr Samba"
-
-#: standalone/draksambashare:731
-#, c-format
-msgid "Mask options"
-msgstr "Dewisiadau masg"
-
-#: standalone/draksambashare:745
-#, c-format
-msgid "Display options"
-msgstr "Dewisiadau masg"
-
-#: standalone/draksambashare:767
-#, c-format
-msgid "Samba share directory"
-msgstr "Cyfeiriadur cyfran Samba"
-
-#: standalone/draksambashare:770
-#, c-format
-msgid "Share name:"
-msgstr "Rhannu enw :"
-
-#: standalone/draksambashare:776
-#, c-format
-msgid "Public:"
-msgstr "Cyhoeddus :"
-
-#: standalone/draksambashare:800
-#, c-format
-msgid ""
-"Create mask, create mode and directory mask should be numeric. ie: 0755."
-msgstr "Dylai creu masg, modd creu a masg cyfeiriadur fod yn rhifol, h.y. 0755"
-
-#: standalone/draksambashare:807
-#, c-format
-msgid "Please create this Samba user: %s"
-msgstr "Crëwch y defnyddiwr Samba yma: %s"
-
-#: standalone/draksambashare:930
-#, c-format
-msgid "User information"
-msgstr "Gwybodaeth defnyddiwr"
-
-#: standalone/draksambashare:932
-#, c-format
-msgid "User name:"
-msgstr "Enw'r defnyddiwr :"
-
-#: standalone/draksambashare:933
-#, c-format
-msgid "Password:"
-msgstr "Cyfrinair:"
-
-#: standalone/draksambashare:1133
-#, c-format
-msgid "Failed to add Samba share."
-msgstr "Methwyd ychwanegu cyfran Samba"
-
-#: standalone/draksambashare:1142
-#, c-format
-msgid "Failed to Modify Samba share."
-msgstr "Methwyd newid cyfran Samba"
-
-#: standalone/draksambashare:1151
-#, c-format
-msgid "Failed to remove a Samba share."
-msgstr "Methwyd tynnu cyfran Samba."
-
-#: standalone/draksambashare:1158
-#, c-format
-msgid "File share"
-msgstr "Cyfran ffeil"
-
-#: standalone/draksambashare:1166
-#, c-format
-msgid "Add printers"
-msgstr "Ychwanegu argraffydd"
-
-#: standalone/draksambashare:1172
-#, c-format
-msgid "Failed to add printers."
-msgstr "Methwyd ychwanegu argraffydd"
-
-#: standalone/draksambashare:1181
-#, c-format
-msgid "Failed to Modify."
-msgstr "Methwyd Newid"
-
-#: standalone/draksambashare:1190
-#, c-format
-msgid "Failed to remove."
-msgstr "Methwyd tynnu."
-
-#: standalone/draksambashare:1197
-#, c-format
-msgid "Printers"
-msgstr "Argraffyddion"
-
-#: standalone/draksambashare:1205
-#, c-format
-msgid "Change password"
-msgstr "Newid cyfrinair"
-
-#: standalone/draksambashare:1210
-#, c-format
-msgid "Failed to change user password."
-msgstr "Methwyd newid cyfrinair defnyddiwr."
-
-#: standalone/draksambashare:1218
-#, c-format
-msgid "Failed to add user."
-msgstr "Methwyd ychwanegu defnyddiwr."
-
-#: standalone/draksambashare:1221
-#, c-format
-msgid "Delete user"
-msgstr "Dileu defnyddiwr"
-
-#: standalone/draksambashare:1230
-#, c-format
-msgid "Failed to delete user."
-msgstr "Methwyd dileu defnyddiwr."
-
-#: standalone/draksambashare:1242
-#, c-format
-msgid "Samba Users"
-msgstr "Defnyddwyr Samba"
-
-#: standalone/draksambashare:1251
-#, c-format
-msgid "DrakSamba manage Samba shares"
-msgstr "DrakSamba yn rheoli cyfrannau Samba"
-
-#: standalone/draksec:49
-#, c-format
-msgid "ALL"
-msgstr "ALL"
-
-#: standalone/draksec:50
-#, c-format
-msgid "LOCAL"
-msgstr "LOCAL"
-
-#: standalone/draksec:51
-#, c-format
-msgid "NONE"
-msgstr "NONE"
-
-#: standalone/draksec:53 standalone/net_applet:480
-#, c-format
-msgid "Ignore"
-msgstr "Anwybyddu"
-
-#. -PO: Do not alter the <span ..> and </span> tags.
-#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
-#: standalone/draksec:103
-#, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Administrator</span>' is the one who "
-"will receive security alerts if the\n"
-"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a "
-"username or an email.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Level</span>' menu allows you to select "
-"one of the six preconfigured security levels\n"
-"provided with msec. These levels range from '<span weight=\"bold\">poor</"
-"span>' security and ease of use, to\n"
-"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive "
-"server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
-"very\n"
-"easy to use security level. It should only be used for machines not "
-"connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
-"security\n"
-"recommended for a computer that will be used to connect to the Internet as "
-"a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
-"enough\n"
-"to use the system as a server which can accept connections from many "
-"clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower "
-"level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-"Dyma'r fan i osod lefel diogelwch a gweinyddiad eich system\n"
-"\n"
-"\n"
-"Y '<span weight=\"bold\">Gweinyddwr Diogelwch</span>' yw'r un fydd yn\n"
-"derbyn y rhybuddion diogelwch os yw'r dewis '<span\n"
-"weight=\"bold\">Rhybudd Diogelwch</span>' wedi ei osod. Gall fod yn enw\n"
-"defnyddiwr neu e-bost.\n"
-"\n"
-"\n"
-"Mae'r ddewislen Lefel Diogelwch yn caniatáu i chi ddewis un o'r lefelau\n"
-"diogelwch ragosodedig ddarparwyd gan msec. Mae'r lefelau yn amrywio o\n"
-"ddiogelwch '<span weight=\"bold\">gwan</span>' a hawdd ei ddefnyddio, i\n"
-"safon '<span weight=\"bold\">paranoia</span>', sy'n addas ar gyfer\n"
-"rhaglenni gwasanaethwr sensitif:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Gwan</span>: Mae'n hollol anniogel ond yn "
-"hawdd iawn i'w\n"
-"ddefnyddio. Dim ond ar gyfer peiriannau had ydynt wedi eu cysylltu ag unrhyw "
-"rwydwaith ac nad\n"
-"ydynt ar agor i bawb\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Safonol</span>:Dyma'r diogelwch safonol ar "
-"gyfer\n"
-"cyfrifiadur sy'n gysylltiedig â'r rhyngrwyd fel cleient.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Uchel</span>:Mae yna rhai cyfyngiadau,\n"
-"ac mae gwiriadau awtomatig ychwanegol yn cael eu rhedeg bob nos.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Uwch</span>: Mae'r diogelwch yn ddigon "
-"uchel\n"
-"i ddefnyddio'r system fel gweinydd sy'n gallu derbyn cysylltiadau gan lawer "
-"o\n"
-"gleientiaid. Os mai eich peiriant chi yw'r unig gleient ar i Fewnrwyd, "
-"dylech ddefnyddio lefel is.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoia</span>. Mae'n debyg i'r lefel "
-"blaenorol ond mae'r\n"
-"system yn hollol gaeedig ac mae'r nodweddion diogelwch ar eu heithaf."
-
-#: standalone/draksec:156 standalone/harddrake2:207
-#, c-format
-msgid ""
-"Description of the fields:\n"
-"\n"
-msgstr ""
-"Disgrifiad y meysydd:\n"
-"\n"
-
-#: standalone/draksec:170
-#, c-format
-msgid "(default value: %s)"
-msgstr "(gwerth rhagosodedig: %s)"
-
-#: standalone/draksec:212
-#, c-format
-msgid "Security Level:"
-msgstr "Lefel diogelwch:"
-
-#: standalone/draksec:219
-#, c-format
-msgid "Security Administrator:"
-msgstr "Gweinyddwr Diogelwch:"
-
-#: standalone/draksec:221
-#, c-format
-msgid "Basic options"
-msgstr "Dewisiadau Sylfaenol"
-
-#: standalone/draksec:235
-#, c-format
-msgid "Network Options"
-msgstr "Dewisiadau Rhwydwaith"
-
-#: standalone/draksec:235
-#, c-format
-msgid "System Options"
-msgstr "Dewisiadau System"
-
-#: standalone/draksec:270
-#, c-format
-msgid "Periodic Checks"
-msgstr "Gwirydd Cyfnodol"
-
-#: standalone/draksec:300
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Arhoswch, gosod lefel diogelwch..."
-
-#: standalone/draksec:306
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Arhoswch, gosod dewisiadau diogelwch..."
-
-#: standalone/draksound:47
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Heb ganfod Cerdyn Sain!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/draksound:50
-#, c-format
-msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"Nid oes Cerdyn Sain wedi ei ganfod ar eich peiriant. Gwriwch fod Cerdyn Sain "
-"sy'n cael ei gynnal gan Linux wedi ei osod yn gywir.\n"
-"\n"
-"\n"
-"Cewch ymweld â'n cronfa ddata caledwedd yn:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/draksound:57
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or "
-"the sndconfig program. Just type \"alsaconf\" or \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Nodyn: os oes gennych gerdyn sain ISA PnP, bydd rhaid i chi ddefnyddio "
-"rhaglen sndconfig. Teipiwch \"sndconfig\" mewn consol."
-
-#: standalone/draksplash:30
-#, c-format
-msgid "x coordinate of text box"
-msgstr "Cyfesuryn x y blwch testun"
-
-#: standalone/draksplash:31
-#, c-format
-msgid "y coordinate of text box"
-msgstr "Cyfesuryn y y blwch testun"
-
-#: standalone/draksplash:32
-#, c-format
-msgid "text box width"
-msgstr "lled y blwch testun"
-
-#: standalone/draksplash:33
-#, c-format
-msgid "text box height"
-msgstr "uchder blwch testun"
-
-#: standalone/draksplash:34
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"bar cynnydd cydfesuryn x\n"
-"yn ei gornel uchaf chwith"
-
-#: standalone/draksplash:35
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-"bar cynnydd cydfesuryn y\n"
-"yn ei gornel uchaf chwith"
-
-#: standalone/draksplash:36
-#, c-format
-msgid "the width of the progress bar"
-msgstr "lled y bar cynnydd"
-
-#: standalone/draksplash:37
-#, c-format
-msgid "the height of the progress bar"
-msgstr "uchder y bar cynnydd"
-
-#: standalone/draksplash:38
-#, c-format
-msgid "x coordinate of the text"
-msgstr "cyfesuryn x y blwch testun"
-
-#: standalone/draksplash:39
-#, c-format
-msgid "y coordinate of the text"
-msgstr "cyfesuryn y y blwch testun"
-
-#: standalone/draksplash:40
-#, c-format
-msgid "text box transparency"
-msgstr "tryloywder y blwch testun"
-
-#: standalone/draksplash:41
-#, c-format
-msgid "progress box transparency"
-msgstr "tryloywder y blwch cynnydd"
-
-#: standalone/draksplash:42
-#, c-format
-msgid "text size"
-msgstr "maint testun"
-
-#: standalone/draksplash:59
-#, c-format
-msgid "Choose progress bar color 1"
-msgstr "Dewiswch liw bar cynnydd 1"
-
-#: standalone/draksplash:60
-#, c-format
-msgid "Choose progress bar color 2"
-msgstr "Dewiswch liw bar cynnydd 2"
-
-#: standalone/draksplash:61
+#: timezone.pm:148 timezone.pm:149
#, c-format
-msgid "Choose progress bar background"
-msgstr "Dewiswch liw cefndir y bar cynnydd"
+msgid "All servers"
+msgstr "Pob gweinydd"
-#: standalone/draksplash:62
+#: timezone.pm:183
#, c-format
-msgid "Gradient type"
-msgstr "Math o raddiant"
+msgid "Global"
+msgstr "Eang"
-#: standalone/draksplash:63
+#: timezone.pm:186
#, c-format
-msgid "Choose text color"
-msgstr "Dewiswch liw'r testun"
+msgid "Africa"
+msgstr "Affrica"
-#: standalone/draksplash:65 standalone/draksplash:72
+#: timezone.pm:187
#, c-format
-msgid "Choose picture"
-msgstr "Dewis llun"
+msgid "Asia"
+msgstr "Asia"
-#: standalone/draksplash:66
+#: timezone.pm:188
#, c-format
-msgid "Silent bootsplash"
-msgstr "Sgrin croeso tawel"
+msgid "Europe"
+msgstr "Ewrop"
-#: standalone/draksplash:69
+#: timezone.pm:189
#, c-format
-msgid "Choose text zone color"
-msgstr "Dewiswch liw rhanbarth testun"
+msgid "North America"
+msgstr "Gogledd America"
-#: standalone/draksplash:70
+#: timezone.pm:190
#, c-format
-msgid "Text color"
-msgstr "Lliw'r testun"
+msgid "Oceania"
+msgstr "Oceania"
-#: standalone/draksplash:71
+#: timezone.pm:191
#, c-format
-msgid "Background color"
-msgstr "Lliw'r cefndir"
+msgid "South America"
+msgstr "De America"
-#: standalone/draksplash:73
+#: timezone.pm:200
#, c-format
-msgid "Verbose bootsplash"
-msgstr "Sgrin croeso amleiriog"
+msgid "Hong Kong"
+msgstr "Hong Cong"
-#: standalone/draksplash:75
+#: timezone.pm:237
#, c-format
-msgid "Display logo on Console"
-msgstr "Arddangos logo yn y Consol"
+msgid "Russian Federation"
+msgstr "Cyfundeb Rwsia"
-#: standalone/draksplash:78
+#: timezone.pm:245
#, c-format
-msgid "Console bootsplash"
-msgstr "Sgrin croeso consol"
+msgid "Yugoslavia"
+msgstr "Iwgoslafia"
-#: standalone/draksplash:84
-#, c-format
-msgid "Theme name"
-msgstr "Enw Thema"
-
-#: standalone/draksplash:87
-#, c-format
-msgid "final resolution"
-msgstr "cydraniad terfynol"
-
-#: standalone/draksplash:92
-#, c-format
-msgid "Save theme"
-msgstr "cadw thema"
-
-#: standalone/draksplash:153
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "cadw thema Croeso cychwyn..."
-
-#: standalone/draksplash:162
-#, c-format
-msgid "Unable to load image file %s"
-msgstr "Methu llwytho ffeil delwedd %s"
-
-#: standalone/draksplash:173
-#, c-format
-msgid "choose image"
-msgstr "dewis ymyl"
-
-#: standalone/draksplash:188
-#, c-format
-msgid "Color selection"
-msgstr "Dewis lliw"
-
-#: standalone/drakups:71
-#, c-format
-msgid "Connected through a serial port or an usb cable"
-msgstr "Cysylltwyd drwy borth cyfresol neu gebl usb"
-
-#: standalone/drakups:78
-#, c-format
-msgid "Add an UPS device"
-msgstr "Ychwanegu dyfais UPS"
-
-#: standalone/drakups:81
-#, c-format
-msgid ""
-"Welcome to the UPS configuration utility.\n"
-"\n"
-"Here, you'll add a new UPS to your system.\n"
-msgstr ""
-"Croeso i'r offeryn ffurfweddu UPS\n"
-"\n"
-"Yma bydd modd i chi osod UPS newydd i'r system.\n"
-
-#: standalone/drakups:88
-#, c-format
-msgid ""
-"We're going to add an UPS device.\n"
-"\n"
-"Do you want to autodetect UPS devices connected to this machine or to "
-"manually select them?"
-msgstr ""
-"Rydym am ychwanegu dyfais UPS.\n"
-"\n"
-"Ydi hi'n well gennych awtoganfod dyfeisiadau UPS i'r peiriant neu?"
-
-#: standalone/drakups:91
-#, c-format
-msgid "Autodetection"
-msgstr "Awtoganfod"
-
-#: standalone/drakups:99 standalone/harddrake2:375
-#, c-format
-msgid "Detection in progress"
-msgstr "Canfod ar waith"
-
-#: standalone/drakups:119
-#, c-format
-msgid "The wizard successfully added the following UPS devices:"
-msgstr "Mae'r dewin wedi ychwanegu'r dyfeiriau UPS yn llwyddiannus:"
-
-#: standalone/drakups:121
-#, c-format
-msgid "No new UPS devices was found"
-msgstr "Wedi canfod dyfais UPS newydd"
-
-#: standalone/drakups:126 standalone/drakups:138
-#, c-format
-msgid "UPS driver configuration"
-msgstr "Ffurfweddiad gyrrwr UPS"
-
-#: standalone/drakups:126
-#, c-format
-msgid "Please select your UPS model."
-msgstr "Dewiswch eich model UPS"
-
-#: standalone/drakups:127
-#, c-format
-msgid "Manufacturer / Model:"
-msgstr "Gwneuthurwr / Model"
-
-#: standalone/drakups:138
-#, c-format
-msgid ""
-"We are configuring the \"%s\" UPS from \"%s\".\n"
-"Please fill in its name, its driver and its port."
-msgstr ""
-"Rydym yn ffurfweddu'r UPS \"%s\" o \"%s\".\n"
-"Rhowch ei enw, gyrrwr a phort."
-
-#: standalone/drakups:143
-#, c-format
-msgid "Name:"
-msgstr "Enw:"
-
-#: standalone/drakups:143
-#, c-format
-msgid "The name of your ups"
-msgstr "Enw eich UPS"
-
-#: standalone/drakups:144
-#, c-format
-msgid "The driver that manages your ups"
-msgstr "Y gyrrwr sy'n rheoli eich UPS"
-
-#: standalone/drakups:145
-#, c-format
-msgid "Port:"
-msgstr "Porth :"
-
-#: standalone/drakups:147
-#, c-format
-msgid "The port on which is connected your ups"
-msgstr "Y porth sydd wedi ei chysylltu â'ch UPS"
-
-#: standalone/drakups:157
-#, c-format
-msgid "The wizard successfully configured the new \"%s\" UPS device."
-msgstr "Mae'r dewin wedi ffurfweddu eich dyfais UPS \"%s\" yn llwyddiannus."
-
-#: standalone/drakups:248
-#, c-format
-msgid "UPS devices"
-msgstr "Dyfeisiau UPS"
-
-#: standalone/drakups:249 standalone/drakups:268 standalone/drakups:284
-#: standalone/harddrake2:85 standalone/harddrake2:111
-#: standalone/harddrake2:118
-#, c-format
-msgid "Name"
-msgstr "Enw"
-
-#: standalone/drakups:267
-#, c-format
-msgid "UPS users"
-msgstr "Defnyddwyr UPS"
-
-#: standalone/drakups:283
-#, c-format
-msgid "Access Control Lists"
-msgstr "Rhestrau Rheoli Mynediad"
-
-#: standalone/drakups:284
-#, c-format
-msgid "IP mask"
-msgstr "Masg IP"
-
-#: standalone/drakups:296
-#, c-format
-msgid "Rules"
-msgstr "Rheolau"
-
-#: standalone/drakups:297
-#, c-format
-msgid "Action"
-msgstr "Gweithred"
-
-#: standalone/drakups:297 standalone/drakvpn:1132 standalone/harddrake2:82
-#, c-format
-msgid "Level"
-msgstr "Lefel"
-
-#: standalone/drakups:297
-#, c-format
-msgid "ACL name"
-msgstr "Enw ACL"
-
-#: standalone/drakups:327 standalone/drakups:331 standalone/drakups:340
-#, c-format
-msgid "DrakUPS"
-msgstr "DrakUPS"
-
-#: standalone/drakups:337
-#, c-format
-msgid "Welcome to the UPS configuration tools"
-msgstr "Croeso i'r offer ffurfweddu UPS"
-
-#: standalone/drakvpn:73
-#, c-format
-msgid "DrakVPN"
-msgstr "DrakVPN"
-
-#: standalone/drakvpn:95
-#, c-format
-msgid "The VPN connection is enabled."
-msgstr "Mae cyswllt VPN wedi ei alluogi"
-
-#: standalone/drakvpn:96
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Mae gosod VPN wedi ei gyflawni.\n"
-"\n"
-"Mae wedi ei alluogi. \n"
-"\n"
-"Beth hoffech ei wneud?"
-
-#: standalone/drakvpn:101
-#, c-format
-msgid "disable"
-msgstr "dymunol"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127
-#, c-format
-msgid "reconfigure"
-msgstr "ail-ffurfweddu"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127 standalone/drakvpn:362
-#: standalone/drakvpn:721
-#, c-format
-msgid "dismiss"
-msgstr "gwrthod"
-
-#: standalone/drakvpn:105
-#, c-format
-msgid "Disabling VPN..."
-msgstr "Analluogi VPN..."
-
-#: standalone/drakvpn:114
-#, c-format
-msgid "The VPN connection is now disabled."
-msgstr "Mae cyswllt VPN wedi ei analluogi."
-
-#: standalone/drakvpn:121
-#, c-format
-msgid "VPN connection currently disabled"
-msgstr "Mae cyswllt VPN wedi ei analluogi"
-
-#: standalone/drakvpn:122
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Mae gosod cyswllt VPN wedi ei gyflawni.\n"
-"\n"
-"Mae wedi ei analluogi. \n"
-"\n"
-"Beth hoffech ei wneud?"
-
-#: standalone/drakvpn:127
-#, c-format
-msgid "enable"
-msgstr "galluogi"
-
-#: standalone/drakvpn:135
-#, c-format
-msgid "Enabling VPN..."
-msgstr "Galluogi VPN..."
-
-#: standalone/drakvpn:141
-#, c-format
-msgid "The VPN connection is now enabled."
-msgstr "Mae cyswllt VPN wedi ei alluogi."
-
-#: standalone/drakvpn:155 standalone/drakvpn:183
-#, c-format
-msgid "Simple VPN setup."
-msgstr "Gosodiad VPN syml."
-
-#: standalone/drakvpn:156
-#, c-format
-msgid ""
-"You are about to configure your computer to use a VPN connection.\n"
-"\n"
-"With this feature, computers on your local private network and computers\n"
-"on some other remote private networks, can share resources, through\n"
-"their respective firewalls, over the Internet, in a secure manner. \n"
-"\n"
-"The communication over the Internet is encrypted. The local and remote\n"
-"computers look as if they were on the same network.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using\n"
-"drakconnect before going any further."
-msgstr ""
-"Rydych ar fin ffurfweddu eich cyfrifiadur i ddefnyddio cysylltiad VPN.\n"
-"\n"
-"Gyda'r nodwedd yma, mae cyfrifiaduron ar eich rhwydwaith breifat leol\n"
-"a chyfrifiaduron ar rwydweithiau preifat pell yn gallu rhannu adnoddau,\n"
-"drwy eu muriau cadarn, dros y rhyngrwyd, mew dull diogel.\n"
-"\n"
-"Mae'r cyfathrebu ar draws y we wedi ei amgryptio. Mae'r cyfrifiaduron\n"
-"lleol a phell yn edrych fel petaent ar yr un rhwydwaith.\n"
-"\n"
-"Gwnewch yn siŵr eich bod wedi ffurfweddu eich mynediad\n"
-"Rhwydwaith/Rhyngrwyd gan ddefnyddio drakaccess cyn mynd ymhellach."
-
-#: standalone/drakvpn:184
-#, c-format
-msgid ""
-"VPN connection.\n"
-"\n"
-"This program is based on the following projects:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - the docs and man pages coming with the %s package\n"
-"\n"
-"Please read AT LEAST the ipsec-howto docs\n"
-"before going any further."
-msgstr ""
-"Cyswllt VPN.\n"
-"\n"
-"Mae'r rhaglen hon wedi ei seilio ar y projectau canlynol:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - the docs and man pages coming with the %s package\n"
-"\n"
-"Darllenwch O LEIAF dogfennau ipsec-howto\n"
-"cyn mynd ymhellach."
-
-#: standalone/drakvpn:196
-#, c-format
-msgid "Kernel module."
-msgstr "Modiwl cnewyllyn."
-
-#: standalone/drakvpn:197
-#, c-format
-msgid ""
-"The kernel needs to have ipsec support.\n"
-"\n"
-"You're running a %s kernel version.\n"
-"\n"
-"This kernel has '%s' support."
-msgstr ""
-"Rhaid i'r cnewyllyn gael cefnogaeth ipsec.\n"
-"\n"
-"Rydych yn rhedeg fersiwn cnewyllyn %s.\n"
-"\n"
-"Mae gan y cnewyllyn gefnogaeth '%s'."
-
-#: standalone/drakvpn:264
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Anhawster wrth osod pecyn %s"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "Security Policies"
-msgstr "Polisïau Diogelwch"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "IKE daemon racoon"
-msgstr "racoon daemon IKE"
-
-#: standalone/drakvpn:281 standalone/drakvpn:292
-#, c-format
-msgid "Configuration file"
-msgstr "Ffeil ffurfweddiad"
-
-#: standalone/drakvpn:282
-#, c-format
-msgid ""
-"Configuration step!\n"
-"\n"
-"You need to define the Security Policies and then to \n"
-"configure the automatic key exchange (IKE) daemon. \n"
-"The KAME IKE daemon we're using is called 'racoon'.\n"
-"\n"
-"What would you like to configure?\n"
-msgstr ""
-"Cam ffurfweddu !\n"
-"\n"
-"Rhaid diffinio polisïau ac yna ffurfweddu'r daemon\n"
-"cyfnewid (IKE) allwedd awtomatig. Enw'r daemon KAME\n"
-"IKE rydym yn ei ddefnyddio yw 'racoon'.\n"
-"\n"
-"Beth hoffech chi ei ffurfweddu?\n"
-
-#: standalone/drakvpn:293
-#, c-format
-msgid ""
-"Next, we will configure the %s file.\n"
-"\n"
-"\n"
-"Simply click on Next.\n"
-msgstr ""
-"Nesaf byddwn yn ffurfweddu ffeil %s.\n"
-"\n"
-"\n"
-"Cliciwch Nesaf.\n"
-
-#: standalone/drakvpn:311 standalone/drakvpn:671
-#, c-format
-msgid "%s entries"
-msgstr "%s cofnod"
-
-#: standalone/drakvpn:312
-#, c-format
-msgid ""
-"The %s file contents\n"
-"is divided into sections.\n"
-"\n"
-"You can now:\n"
-"\n"
-" - display, add, edit, or remove sections, then\n"
-" - commit the changes\n"
-"\n"
-"What would you like to do?\n"
-msgstr ""
-"Mae cynnwys ffeil %s\n"
-"wedi ei rannu yn adrannau.\n"
-"\n"
-"Gallwch:\n"
-"\n"
-" - ddangos, ychwanegu, olygu, neu dynnu adrannau, ac yna\n"
-" - cyfrannu'r newidiadau\n"
-"\n"
-"Beth hoffech chi ei wneud ?\n"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display"
-msgstr "Arddangos"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid "Commit"
-msgstr "Cyflwyno"
-
-#: standalone/drakvpn:333 standalone/drakvpn:337 standalone/drakvpn:695
-#: standalone/drakvpn:699
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display configuration"
-msgstr "Dangos ffurfweddiad"
-
-#: standalone/drakvpn:338
-#, c-format
-msgid ""
-"The %s file does not exist.\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose 'add'.\n"
-msgstr ""
-"Nid yw ffeil %s yn bod.\n"
-"\n"
-"Rhaid mai ffurfweddiad newydd yw hwn.\n"
-"\n"
-"Bydd rhaid mynd yn ôl a dewis 'ychwanegu'.\n"
-
-#: standalone/drakvpn:354
-#, c-format
-msgid "ipsec.conf entries"
-msgstr "cofnodion ipsec.conf"
-
-#: standalone/drakvpn:355
-#, c-format
-msgid ""
-"The %s file contains different sections.\n"
-"\n"
-"Here is its skeleton:\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"You can now add one of these sections.\n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-"Mae'r ffeil %s yn cynnwys adrannau gwahanol.\n"
-"\n"
-"Dyma'i sgerbwd :\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"Mae modd ychwanegu un o'r adrannau hyn.\n"
-"\n"
-"Dewiswch yr adran i'w hychwnaegu.\n"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "config setup"
-msgstr "gosodiad ffurfweddu"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "conn %default"
-msgstr "conn %default"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "normal conn"
-msgstr "normal conn"
-
-#: standalone/drakvpn:368 standalone/drakvpn:409 standalone/drakvpn:496
-#, c-format
-msgid "Exists!"
-msgstr "Mae'n Bodoli!"
-
-#: standalone/drakvpn:369 standalone/drakvpn:410
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change its name.\n"
-msgstr ""
-"Mae adran gyda'r enw hwn yn bodoli eisoes.\n"
-"Rhaid i enw'r adrannau fod yn unigryw.\n"
-"\n"
-"Rhaid i chi fynd yn ôl ac ychwanegu adran arall\n"
-"neu newid ei enw.\n"
-
-#: standalone/drakvpn:386
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow this config\n"
-"setup section.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Rhaid i'r adran hon fod ar frig eich ffeil %s.\n"
-"\n"
-"\n"
-"Gwnewch yn siŵr fod yr adrannau eraill yn dilyn\n"
-"yr adran ffurfweddu.\n"
-"\n"
-"Dewiswch barhau neu nôl ar ôl gorffen.\n"
-
-#: standalone/drakvpn:391
-#, c-format
-msgid "interfaces"
-msgstr "rhyngwyneb"
-
-#: standalone/drakvpn:392
-#, c-format
-msgid "klipsdebug"
-msgstr "klipsdebug"
-
-#: standalone/drakvpn:393
-#, c-format
-msgid "plutodebug"
-msgstr "plutodebug"
-
-#: standalone/drakvpn:394
-#, c-format
-msgid "plutoload"
-msgstr "plutoload"
-
-#: standalone/drakvpn:395
-#, c-format
-msgid "plutostart"
-msgstr "plutostart"
-
-#: standalone/drakvpn:396
-#, c-format
-msgid "uniqueids"
-msgstr "uniqueids"
-
-#: standalone/drakvpn:430
-#, c-format
-msgid ""
-"This is the first section after the config\n"
-"setup one.\n"
-"\n"
-"Here you define the default settings. \n"
-"All the other sections will follow this one.\n"
-"The left settings are optional. If do not define\n"
-"them here, globally, you can define them in each\n"
-"section.\n"
-msgstr ""
-"Dyma'r adran gyntaf wedi'r un ffurfweddu'r\n"
-"gosod.\n"
-"\n"
-"Yma cewch ddiffinio'r gosodiadau rhagosodedig.\n"
-"Bydd yr adranau eraill yn dilyn hyn.\n"
-"Mae'r gosodiadau ar y chwith yn ddewisol.\n"
-"Os nad ydych am eu diffinio'n eang yma,\n"
-"cewch eu diffinio ym mhob adran.\n"
-
-#: standalone/drakvpn:437
-#, c-format
-msgid "PFS"
-msgstr "PFS"
-
-#: standalone/drakvpn:438
-#, c-format
-msgid "keyingtries"
-msgstr "keyingtries"
-
-#: standalone/drakvpn:439
-#, c-format
-msgid "compress"
-msgstr "compress"
-
-#: standalone/drakvpn:440
-#, c-format
-msgid "disablearrivalcheck"
-msgstr "disablearrivalcheck"
-
-#: standalone/drakvpn:441 standalone/drakvpn:480
-#, c-format
-msgid "left"
-msgstr "chwith"
-
-#: standalone/drakvpn:442 standalone/drakvpn:481
-#, c-format
-msgid "leftcert"
-msgstr "leftcert"
-
-#: standalone/drakvpn:443 standalone/drakvpn:482
-#, c-format
-msgid "leftrsasigkey"
-msgstr "leftrsasigkey"
-
-#: standalone/drakvpn:444 standalone/drakvpn:483
-#, c-format
-msgid "leftsubnet"
-msgstr "leftsubnet"
-
-#: standalone/drakvpn:445 standalone/drakvpn:484
-#, c-format
-msgid "leftnexthop"
-msgstr "leftnexthop"
-
-#: standalone/drakvpn:474
-#, c-format
-msgid ""
-"Your %s file has several sections, or connections.\n"
-"\n"
-"You can now add a new section.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Mae i'r ffeil %s nifer o adrannau, neu gysylltiadau.\n"
-"\n"
-"Cewch ychwanegu adran newydd yn awr.\n"
-"Dewiswch barhau wedi i chi orffen ysgrifennu at y data.\n"
-
-#: standalone/drakvpn:477
-#, c-format
-msgid "section name"
-msgstr "enw'r adran"
-
-#: standalone/drakvpn:478
-#, c-format
-msgid "authby"
-msgstr "authby"
-
-#: standalone/drakvpn:479
-#, c-format
-msgid "auto"
-msgstr "awtomatig"
-
-#: standalone/drakvpn:485
-#, c-format
-msgid "right"
-msgstr "de"
-
-#: standalone/drakvpn:486
-#, c-format
-msgid "rightcert"
-msgstr "rightcert"
-
-#: standalone/drakvpn:487
-#, c-format
-msgid "rightrsasigkey"
-msgstr "rightrsasigkey"
-
-#: standalone/drakvpn:488
-#, c-format
-msgid "rightsubnet"
-msgstr "rightsubnet"
-
-#: standalone/drakvpn:489
-#, c-format
-msgid "rightnexthop"
-msgstr "rightnexthop"
-
-#: standalone/drakvpn:497
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change the name of the section.\n"
-msgstr ""
-"Mae adran gyda'r enw yma'n bod eisoes.\n"
-"Rhaid i enwau'r adrannau fod yn unigryw.\n"
-"\n"
-"Rhaid i chi fynd yn ôl ac ychwanegu adran arall\n"
-"neu newid enw'r adran.\n"
-
-#: standalone/drakvpn:529
-#, c-format
-msgid ""
-"Add a Security Policy.\n"
-"\n"
-"You can now add a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Ychwanegu Polisi Diogelwch.\n"
-"\n"
-"Cewch ychwanegu Polisi Diogelwch.\n"
-"\n"
-"Dewiswch barhau pan fyddwch wedi ysgrifennu’r data.\n"
-
-#: standalone/drakvpn:562 standalone/drakvpn:812
-#, c-format
-msgid "Edit section"
-msgstr "Golygu adran"
-
-#: standalone/drakvpn:563
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to edit \n"
-"and then click on next.\n"
-msgstr ""
-"Mae gan eich ffeil %s nifer o adrannau neu gysylltiadau.\n"
-"\n"
-"Gallwch ddewis yr un i'w olygu ac yna chlicio nesaf\n"
-"\n"
-
-#: standalone/drakvpn:566 standalone/drakvpn:646 standalone/drakvpn:817
-#: standalone/drakvpn:863
-#, c-format
-msgid "Section names"
-msgstr "Enw'r adran"
-
-#: standalone/drakvpn:576
-#, c-format
-msgid "Can not edit!"
-msgstr "Methu golygu!"
-
-#: standalone/drakvpn:577
-#, c-format
-msgid ""
-"You cannot edit this section.\n"
-"\n"
-"This section is mandatory for Freeswan 2.X.\n"
-"One has to specify version 2.0 on the top\n"
-"of the %s file, and eventually, disable or\n"
-"enable the opportunistic encryption.\n"
-msgstr ""
-"Nid oes modd golygu'r adran hon.\n"
-"\n"
-"Mae'r adran yn orfodol ar gyfer Freeswan 2X.\n"
-"Rhaid pennu fersiwn 2.0 ar ben ffeil %s ac yn\n"
-"y diwedd, anablu neu alluogi amgryptiad cyfle.\n"
-"\n"
-
-#: standalone/drakvpn:586
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the config setup section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Mae gan eich ffeil %s nifer o adrannau.\n"
-"\n"
-"Mae modd golygu gosodiad adran config.\n"
-"Dewiswch parhau wedi i chi orffen ysgrifennu'r data.\n"
-
-#: standalone/drakvpn:597
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the default section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Mae gan eich ffeil %s nifer o adrannau neu gysylltiadau.\n"
-"\n"
-"Mae modd i chi nawr olygu cofnodion adran rhagosodedig\n"
-"Dewiswch barhau wedi i chi orffen ysgrifennu'r data.\n"
-
-#: standalone/drakvpn:610
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the normal section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Mae gan eich ffeil %s nifer o adrannau neu gysylltiadau.\n"
-"\n"
-"Mae modd i chi nawr olygu cofnodion adran rhagosodedig\n"
-"Dewiswch barhau wedi i chi orffen ysgrifennu'r data.\n"
-
-#: standalone/drakvpn:631
-#, c-format
-msgid ""
-"Edit a Security Policy.\n"
-"\n"
-"You can now edit a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Golygu'r Polisi Diogelwch.\n"
-"\n"
-"Mae modd ychwanegu Polisi Diogelwch.\n"
-"\n"
-"Dewiswch barhau wedi i chi orffen ysgrifennu'r data\n"
-
-#: standalone/drakvpn:642 standalone/drakvpn:859
-#, c-format
-msgid "Remove section"
-msgstr "Tynnu adran"
-
-#: standalone/drakvpn:643 standalone/drakvpn:860
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to remove\n"
-"and then click on next.\n"
-msgstr ""
-"Mae gan eich ffeil %s nifer o adrannau neu gysylltiadau.\n"
-"\n"
-"Mae modd golygu gosodiad adranconfig.\n"
-"Dewiswch barhau wedi i chi orffen ysgrifennu'r data.\n"
-
-#: standalone/drakvpn:672
-#, c-format
-msgid ""
-"The racoon.conf file configuration.\n"
-"\n"
-"The contents of this file is divided into sections.\n"
-"You can now:\n"
-" - display \t\t (display the file contents)\n"
-" - add\t\t\t (add one section)\n"
-" - edit \t\t\t (modify parameters of an existing section)\n"
-" - remove \t\t (remove an existing section)\n"
-" - commit \t\t (writes the changes to the real file)"
-msgstr ""
-"Ffurfweddiad ffeil racoon.conf.\n"
-"\n"
-"Mae cynnwys yr adran wedi ei rannu'n adrannau.\n"
-"Gallwch :\n"
-" - dangos \t\t (dangos cynnwys y ffeil)\n"
-" - ychwanegu\t\t\t (ychwanegu adran)\n"
-" - golygu \t\t\t (newid paramedrau'r adran bresennol)\n"
-" - tynnu \t\t (tynnu'r adran bresennol)\n"
-" - cyflwyno \t\t (ysgrifennu'r newidiadau i'r ffeil go iawn)"
-
-#: standalone/drakvpn:700
-#, c-format
-msgid ""
-"The %s file does not exist\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose configure.\n"
-msgstr ""
-"Nid yw ffeil %s yn bodoli \n"
-"\n"
-"Rhaid mai ffurfweddiad newydd yw hwn.\n"
-"\n"
-"Rhaid mynd yn ôl a dewis ffurfweddu.\n"
-
-#: standalone/drakvpn:714
-#, c-format
-msgid "racoonf.conf entries"
-msgstr "cofnodion racoonf.conf"
-
-#: standalone/drakvpn:715
-#, c-format
-msgid ""
-"The 'add' sections step.\n"
-"\n"
-"Here below is the racoon.conf file skeleton:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-"Cam 'ychwanegu' adran.\n"
-"\n"
-"Dyma sgerbwd ffeil racoon.conf :\n"
-"\t'llwybr'\n"
-"\t'pell'\n"
-"\t'sainfo' \n"
-"\n"
-"Dewiswch yr adran hoffech ei hychwanegu.\n"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "path"
-msgstr "llwybr"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "remote"
-msgstr "pell"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "sainfo"
-msgstr "sainfo"
-
-#: standalone/drakvpn:729
-#, c-format
-msgid ""
-"The 'add path' section step.\n"
-"\n"
-"The path sections have to be on top of your racoon.conf file.\n"
-"\n"
-"Put your mouse over the certificate entry to obtain online help."
-msgstr ""
-"Cam adran 'ychwanegu llwybr'.\n"
-"\n"
-"Rhaid i'r adran llwybr fod ar frig eich ffeil racoon.conf.\n"
-"\n"
-"Rhowch eich llygoden dros y cofnod tystysgrif i gael cymorth ar-lein."
-
-#: standalone/drakvpn:732
-#, c-format
-msgid "path type"
-msgstr "math o lwybr"
-
-#: standalone/drakvpn:736
-#, c-format
-msgid ""
-"path include path: specifies a path to include\n"
-"a file. See File Inclusion.\n"
-"\tExample: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: specifies a file containing\n"
-"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
-"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) will search this directory\n"
-"if a certificate or certificate request is received.\n"
-"\tExample: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"other configuration files can be included.\n"
-"\tExample: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File: Pre-shared key file defines a pair\n"
-"of the identifier and the shared secret key which are used at\n"
-"Pre-shared key authentication method in phase 1."
-msgstr ""
-"llwybr i gynnwys llwybr : pennu llwybr i gynnwys\n"
-"ffeil. Gw. Cynnwys Ffeil.\n"
-"\te.e.: llwybr yn cynnwys '/etc/racoon'\n"
-"\n"
-"llwybr ffeil pre_shared_key : pennu ffeil yn cynnwys\n"
-"allwedd(i) rhag rhannwyd ar gyfer enwau amrywiol. Gw. Ffeil Allwedd Rhag "
-"rhannu.\n"
-"\te.e: llwybr pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"llwybr tystysgrif llwybr : bydd racoon(8) yn chwilio'r cyfeiriadur\n"
-"os oes cais am dystysgrif neu dystysgrif wedi ei dderbyn.\n"
-"\te.e. : llwybr tystysgrif '/etc/cert' ;\n"
-"\n"
-"Cynnwys Ffeil : cynnwys ffeil \n"
-"cynnwys ffeiliau ffurfweddiad eraill.\n"
-"\te.e.: cynnwys \"remote.conf\" ;\n"
-"\n"
-"Ffeil Allwedd Rhag rhannu : Mae ffeil rhag rhannu'n diffinio pâr \n"
-"o ddynodwyr a'r allwedd gudd sy'n cael ei ddefnyddio yn\n"
-"Null dilysu allwedd rhag rhannu yn rhan1."
-
-#: standalone/drakvpn:756 standalone/drakvpn:849
-#, c-format
-msgid "real file"
-msgstr "darllen ffeil"
-
-#: standalone/drakvpn:779
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your racoon.conf file.\n"
-"\n"
-"You can now choose the remote settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Gwnewch yn siŵr fod gennych adrannau llwybr\n"
-"ar frig ffeil racoon.conf.\n"
-"\n"
-"Gallwch ddewis y gosodiadau pell yn awr.\n"
-"Dewiswch barhau neu nôl wedi i chi orffen.\n"
-
-#: standalone/drakvpn:796
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your %s file.\n"
-"\n"
-"You can now choose the sainfo settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Gwnewch yn siŵr fod yr adrannau llwybr\n"
-"eisoes ar frig eich ffeil %s.\n"
-"\n"
-"Gallwch nawr ddewis eich gosodiadau sainfo.\n"
-"Dewiswch Barhau neu Blaenorol wedi i chi orffen.\n"
-
-#: standalone/drakvpn:813
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here in the list below the one you want\n"
-"to edit and then click on next.\n"
-msgstr ""
-"Mae gan eich ffeil %s nifer o adrannau neu gysylltiadau.\n"
-"\n"
-"Mae modd i chi ddewis o'r rhestr yr un i'w\n"
-"olygu a chlicio nesaf.\n"
-
-#: standalone/drakvpn:824
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"\n"
-"You can now edit the remote section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Mae gan eich ffeil %s nifer o adrannau.\n"
-"\n"
-"\n"
-"Mae modd golygu cofnodion yr adrannau pell.\n"
-"\n"
-"Dewiswch barhau wedi i chi orffen ysgrifennu'r data.\n"
-
-#: standalone/drakvpn:833
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the sainfo section entries.\n"
-"\n"
-"Choose continue when you are done to write the data."
-msgstr ""
-"Mae gan eich ffeil %s nifer o adrannau.\n"
-"\n"
-"\n"
-"Mae modd golygu cofnodion yr adrannau pell.\n"
-"\n"
-"Dewiswch barhau wedi i chi orffen ysgrifennu'r data."
-
-#: standalone/drakvpn:841
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow these path\n"
-"sections.\n"
-"\n"
-"You can now edit the path entries.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Rhaid i'r adran hon fod ar frig eich\n"
-"ffeil %s.\n"
-"\n"
-"Gwnewch yn siwr fod yr holl adrannau eraill yn dilyn\n"
-"yr adrannau llwybr hyn.\n"
-"\n"
-"Gallwch olygu'r cofnodion llwybr.\n"
-"\n"
-"Dewiswch barhau neu nôl wedi i chi orffen.\n"
-
-#: standalone/drakvpn:848
-#, c-format
-msgid "path_type"
-msgstr "path_type"
-
-#: standalone/drakvpn:889
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"\n"
-"You may now share resources through the Internet,\n"
-"in a secure way, using a VPN connection.\n"
-"\n"
-"You should make sure that that the tunnels shorewall\n"
-"section is configured."
-msgstr ""
-"Mae popeth wedi ei ffurfweddu.\n"
-"\n"
-"Cewch rannu adnoddau ar draws y Rhyngrwyd.\n"
-"mewn modd diogel, gan ddefnyddio cysylltiad VPN.\n"
-"\n"
-"Rhaid gwneud yn siwr fod yr adran twnel Shorewall\n"
-"wedi ei ffurfweddu."
-
-#: standalone/drakvpn:909
-#, c-format
-msgid "Sainfo source address"
-msgstr "Cyfeiriad ffynhonnell sainfo"
-
-#: standalone/drakvpn:910
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 is the source address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 is the source address"
-msgstr ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"diffinio'r paramedrau rhan 2 IKE\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"adeiladu source_id ac destination_id fel:\n"
-"\n"
-"\tcyfeiriad cyfeiriad [/ prefix] [[port]] ul_proto\n"
-"\n"
-"E.e. : \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tgadael y cofnod yn wag os ydych am fod yn anhysbys\n"
-"\n"
-"cyfeiriad sainfo 203.178.141.209 unrhyw gyfeiriad 203.178.141.218\n"
-"\t203.178.141.209 yw cyfeiriad y ffynhonnell\n"
-"cyfeiriad address 172.16.1.0/24 unrhyw gyfeiriad 172.16.2.0/24 \n"
-"\t172.16.1.0/24 yw cyfeiriad y ffynhonnell"
-
-#: standalone/drakvpn:927
-#, c-format
-msgid "Sainfo source protocol"
-msgstr "Protocol ffynhonnell sainfo"
-
-#: standalone/drakvpn:928
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe first 'any' allows any protocol for the source"
-msgstr ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"diffinio'r paramedrau rhan 2 IKE\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"adeiladu source_id ac destination_id fel:\n"
-"\n"
-"\tcyfeiriad cyfeiriad [/ prefix] [[port]] ul_proto\n"
-"\n"
-"E.e. : \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tgadael y cofnod yn wag os ydych am fod yn anhysbys\n"
-"\n"
-"cyfeiriad sainfo 203.178.141.209 unrhyw gyfeiriad 203.178.141.218\n"
-"\t203.178.141.209 yw cyfeiriad y ffynhonnell"
-
-#: standalone/drakvpn:942
-#, c-format
-msgid "Sainfo destination address"
-msgstr "Cyfeiriad cyrchfan sainfo"
-
-#: standalone/drakvpn:943
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 is the destination address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 is the destination address"
-msgstr ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"diffinio'r paramedrau rhan 2 IKE\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"adeiladu source_id ac destination_id fel:\n"
-"\n"
-"\tcyfeiriad cyfeiriad [/ prefix] [[port]] ul_proto\n"
-"\n"
-"E.e. : \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tgadael y cofnod yn wag os ydych am fod yn anhysbys\n"
-"\n"
-"cyfeiriad sainfo 203.178.141.209 unrhyw gyfeiriad 203.178.141.218\n"
-"\t203.178.141.218 yw cyfeiriad y cyrchfan\n"
-"\n"
-"cyfeiriad address 172.16.1.0/24 unrhyw gyfeiriad 172.16.2.0/24 \n"
-"\t172.16.1.0/24 yw cyfeiriad y ffynhonnell"
-
-#: standalone/drakvpn:960
-#, c-format
-msgid "Sainfo destination protocol"
-msgstr "Protocol cyrchfan sainfo"
-
-#: standalone/drakvpn:961
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe last 'any' allows any protocol for the destination"
-msgstr ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"diffinio'r paramedrau rhan 2 IKE\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"adeiladu source_id ac destination_id fel:\n"
-"\n"
-"\tcyfeiriad cyfeiriad [/ prefix] [[port]] ul_proto\n"
-"\n"
-"E.e. : \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tgadael y cofnod yn wag os ydych am fod yn anhysbys\n"
-"\n"
-"cyfeiriad sainfo 203.178.141.209 unrhyw gyfeiriad 203.178.141.218\n"
-"\t203.178.141.209 yw cyfeiriad y cyrchfan"
-
-#: standalone/drakvpn:975
-#, c-format
-msgid "PFS group"
-msgstr "Grŵp PFS"
-
-#: standalone/drakvpn:977
-#, c-format
-msgid ""
-"define the group of Diffie-Hellman exponentiations.\n"
-"If you do not require PFS then you can omit this directive.\n"
-"Any proposal will be accepted if you do not specify one.\n"
-"group is one of the following: modp768, modp1024, modp1536.\n"
-"Or you can define 1, 2, or 5 as the DH group number."
-msgstr ""
-"diffinio grŵp o exponentiations Diffie-Hellman.\n"
-"Os nad ydych angen PFS yna cewch ymatal rhag y gyfarwyddeb.\n"
-"Bydd unrhyw gynnig yn cael ei dderbyn on na wnewch chi enwi un.\n"
-"y grŵp yn un o'r canlynol: modp768, modp1024, modp1536.\n"
-"Neu mae modd diffinio 1, 2, neu 5 fel rhif grŵp DH."
-
-#: standalone/drakvpn:982
-#, c-format
-msgid "Lifetime number"
-msgstr "rhif hyd oes"
-
-#: standalone/drakvpn:983
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-msgstr ""
-"diffinio hyd oes o amser penodol fydd yn cael ei gynnig\n"
-"wrth negydu rhan 1. Bydd unrhyw gynnig yn cael ei dderbyn\n"
-"ac ni fydd y briodwedd(au)'n cael eu cynnig i'r cyfoed os nad\n"
-"ydynt yn cael eu cynnig. Mae modd iddynt\n"
-"gael eu henwi yn unigol ym mhob cynnig .\n"
-"\n"
-"Enghreifftiau : \n"
-"\n"
-" amser hyd oes 1 mun; # eil,mun,awr\n"
-" amser hyd oes 1 mun; # eil,mun,awr\n"
-" amser hyd oes 30 eil;\n"
-" amser hyd oes 30 eil;\n"
-" amser hyd oes 60 eil;\n"
-"\tamser hyd oes 12 awr;\n"
-"\n"
-"Felly, yma rifau hyd oes yw 1, 1, 30, 30, 60 a 12.\n"
-
-#: standalone/drakvpn:999
-#, c-format
-msgid "Lifetime unit"
-msgstr "Uned hyd oes"
-
-#: standalone/drakvpn:1001
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
-"'hour'.\n"
-msgstr ""
-"diffinio hyd oes o amser penodol fydd yn cael ei gynnig\n"
-"wrth negydu rhan 1. Bydd unrhyw gynnig yn cael ei dderbyn\n"
-"ac ni fydd y priodwedd(au)'n cael eu cynnig i'r cyfoed os nad\n"
-"ydynt yn cael eu cynnig. Mae modd iddynt\n"
-"gael eu henwi yn unigol ym mhob cynnig .\n"
-"\n"
-"Enghreifftiau : \n"
-"\n"
-" amser hyd oes 1 mun; # eil,mun,awr\n"
-" amser hyd oes 1 mun; # eil,mun,awr\n"
-" amser hyd oes 30 eil;\n"
-" amser hyd oes 30 eil;\n"
-" amser hyd oes 60 eil;\n"
-"\tamser hyd oes 12 awr;\n"
-"\n"
-"Felly, yma unedau hyd oes yw 'mun', 'mun', 'eil', 'eil', 'eil' ac 'awr'.\n"
-
-#: standalone/drakvpn:1019
-#, c-format
-msgid "Authentication algorithm"
-msgstr "Algorithm dilysu"
-
-#: standalone/drakvpn:1021
-#, c-format
-msgid "Compression algorithm"
-msgstr "Algorithm cywasgu"
-
-#: standalone/drakvpn:1022
-#, c-format
-msgid "deflate"
-msgstr "dadchwythu"
-
-#: standalone/drakvpn:1029
-#, c-format
-msgid "Remote"
-msgstr "Pell"
-
-#: standalone/drakvpn:1030
-#, c-format
-msgid ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specifies the parameters for IKE phase 1 for each remote node.\n"
-"The default port is 500. If anonymous is specified, the state-\n"
-"ments apply to all peers which do not match any other remote\n"
-"directive.\n"
-"\n"
-"Examples: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-msgstr ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"pennu paramedrau rhan1 IKE ar gyfer pob nod pell.\n"
-"Y porth rhagosodedig yw 500. Os yw anhysbys yn cael eu bennu\n"
-"mae'r gosodiad yn wir i'r holl gyfoed nad ydynt yn cydweddu â\n"
-"chyfarwyddeb bell arall\n"
-"\n"
-"Enghreifftiau : \n"
-"\n"
-"pell anhysbys\n"
-"anhysbys ::1 [8000]"
-
-#: standalone/drakvpn:1038
-#, c-format
-msgid "Exchange mode"
-msgstr "Modd cyfnewid"
-
-#: standalone/drakvpn:1040
-#, c-format
-msgid ""
-"defines the exchange mode for phase 1 when racoon is the\n"
-"initiator. Also it means the acceptable exchange mode\n"
-"when racoon is responder. More than one mode can be\n"
-"specified by separating them with a comma. All of the\n"
-"modes are acceptable. The first exchange mode is what\n"
-"racoon uses when it is the initiator.\n"
-msgstr ""
-"diffinio'r modd cyfnewid ar gyfer rhan 1 lle mae racoon sy'n\n"
-"cychwyn. Mae hefyd yn golygu'r modd cyfnewid derbyniol lle\n"
-"mai racoon yw'r ymatebwr. Mae modd pennu mwy nag un\n"
-"modd drwy eu hymwahanu gan gollnod. Mae'r holl foddau'n\n"
-"dderbyniol. Y modd cyfnewid cyntaf yw'r hyn mae racoon yn\n"
-"ei ddefnyddio pan yw'n gychwynnydd.\n"
-
-#: standalone/drakvpn:1046
-#, c-format
-msgid "Generate policy"
-msgstr "Polisi cynhyrchu"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "off"
-msgstr "diffodd "
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "on"
-msgstr "ymlaen"
-
-#: standalone/drakvpn:1048
-#, c-format
-msgid ""
-"This directive is for the responder. Therefore you\n"
-"should set passive on in order that racoon(8) only\n"
-"becomes a responder. If the responder does not have any\n"
-"policy in SPD during phase 2 negotiation, and the direc-\n"
-"tive is set on, then racoon(8) will choice the first pro-\n"
-"posal in the SA payload from the initiator, and generate\n"
-"policy entries from the proposal. It is useful to nego-\n"
-"tiate with the client which is allocated IP address\n"
-"dynamically. Note that inappropriate policy might be\n"
-"installed into the responder's SPD by the initiator. So\n"
-"that other communication might fail if such policies\n"
-"installed due to some policy mismatches between the ini-\n"
-"tiator and the responder. This directive is ignored in\n"
-"the initiator case. The default value is off."
-msgstr ""
-"Mae'r gyfarwyddeb hon ar gyfer yr ymatebwr. Rhaid\n"
-"gosod goddefol ymlaen fel bod racoon(8) yn unig\n"
-"sy'n dod ynn ymatebwr. Os nad oes gan yr ymatebwr\n"
-"unrhyw bolisi yn SPD yn ystod negydu rhan 2 ac mae'r\n"
-"cyfeiriad wedi ei droi ymlaen, yna bydd racoon(8) yn\n"
-"dewis y cynnig cyntaf yn y llwyth SA oddi wrth y\n"
-"cychwynnydd, a chynhyrchu cofnodion polisi o'r cynnig.\n"
-"Mae'n ddefnyddiol; negydu gyda'r cleient sydd wedi cyfeiriad\n"
-"IP yn ddeinamig. Sylwch y gall bo polisi anaddas wedi ei\n"
-"osod o fewn SPD'r ymatebydd gan y cychwynnydd. Fel bo\n"
-"cyfathrebu arall yn methu os yw polisïau'n gwrthdaro rhwng\n"
-"y cychwynnydd â'r ymatebwr. Bydd y gyfarwyddeb yn cael\n"
-"ei anwybyddu yn achos y cychwynnydd.\n"
-"Y gwerth rhagosodedig yw diffodd."
-
-#: standalone/drakvpn:1062
-#, c-format
-msgid "Passive"
-msgstr "Goddefol"
-
-#: standalone/drakvpn:1064
-#, c-format
-msgid ""
-"If you do not want to initiate the negotiation, set this\n"
-"to on. The default value is off. It is useful for a\n"
-"server."
-msgstr ""
-"Os nad ydych am gychwyn y negydu, gosodwch hwn\n"
-"i ymlaen. Y gwerth rhagosodedig yw diffodd.\n"
-"Mae'n ddefnyddiol ar gyfer gweinydd."
-
-#: standalone/drakvpn:1067
-#, c-format
-msgid "Certificate type"
-msgstr "Math o dystysgrif"
-
-#: standalone/drakvpn:1069
-#, c-format
-msgid "My certfile"
-msgstr "Ffeil Tystysgrif"
-
-#: standalone/drakvpn:1070
-#, c-format
-msgid "Name of the certificate"
-msgstr "Enw'r dystysgrif"
-
-#: standalone/drakvpn:1071
-#, c-format
-msgid "My private key"
-msgstr "Fy allwedd breifat"
-
-#: standalone/drakvpn:1072
-#, c-format
-msgid "Name of the private key"
-msgstr "Enw'r allwedd breifat"
-
-#: standalone/drakvpn:1073
-#, c-format
-msgid "Peers certfile"
-msgstr "Tystysgrif ffeil cyfoed"
-
-#: standalone/drakvpn:1074
-#, c-format
-msgid "Name of the peers certificate"
-msgstr "Enw tystysgrif cyfoed"
-
-#: standalone/drakvpn:1075
-#, c-format
-msgid "Verify cert"
-msgstr "Gwirio tystysgrif"
-
-#: standalone/drakvpn:1077
-#, c-format
-msgid ""
-"If you do not want to verify the peer's certificate for\n"
-"some reason, set this to off. The default is on."
-msgstr ""
-"Os nad ydych am wirio tystysgrif y cyfoed am ryw reswm,\n"
-"rhowch hwn ar ddiffodd. Y rhagosodedig yw ymlaen."
-
-#: standalone/drakvpn:1079
-#, c-format
-msgid "My identifier"
-msgstr "Fy enw"
-
-#: standalone/drakvpn:1080
-#, c-format
-msgid ""
-"specifies the identifier sent to the remote host and the\n"
-"type to use in the phase 1 negotiation. address, FQDN,\n"
-"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
-"they are used like:\n"
-"\tmy_identifier address [address];\n"
-"\t\tthe type is the IP address. This is the default\n"
-"\t\ttype if you do not specify an identifier to use.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tthe type is a USER_FQDN (user fully-qualified\n"
-"\t\tdomain name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tthe type is a FQDN (fully-qualified domain name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tthe type is a KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tthe type is an ASN.1 distinguished name. If\n"
-"\t\tstring is omitted, racoon(8) will get DN from\n"
-"\t\tSubject field in the certificate.\n"
-"\n"
-"Examples: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-msgstr ""
-"pennu'r dynodwr anfonir at y gwesteiwr pell a'r math i'w\n"
-"ddefnyddio wrth negydu rhan 1.Mae modd defnyddio\n"
-"address, FQDN, user_fqdn, keyid a asn1dn fel idtype.\n"
-"cant eu defnyddio fel:\n"
-"\tcyfeiriad my_identifier [address];\n"
-"\t\ty math yw'r cyfeiriad IP. Hwn yw'r math rhagosodedig\n"
-"\t\tos nad ydych yn pennu enw i'w ddefnyddio.\n"
-"\tllinyn my_identifier user_fqdn;\n"
-"\t\tty math yw USER_FQDN (enw parth\n"
-"\t\tdefnyddiwr cymwysedig llawn).\n"
-"\tllinyn my_identifier fqdn;\n"
-"\t\ty math FQDN (enw parth cymwysedig llawn).\n"
-"\tffeil keyid my_identifier;\n"
-"\t\ty math yw KEY_ID.\n"
-"\tmy_identifier asn1dn [llinyn];\n"
-"\t\tmath enw ASN.1 amlwg. If\n"
-"\t\thpgor llinyn, bydd racoon(8) yn estyn DN o\n"
-"\t\tmaes pwnc yn y dystysgrif.\n"
-"\n"
-"Enghreifftiau : \n"
-"\n"
-"my_identifier user_fqdn \"fye-bost@fymharth.com\""
-
-#: standalone/drakvpn:1100
-#, c-format
-msgid "Peers identifier"
-msgstr "Dynodydd cyfoed"
-
-#: standalone/drakvpn:1101
-#, c-format
-msgid "Proposal"
-msgstr "Cynnig"
-
-#: standalone/drakvpn:1103
-#, c-format
-msgid ""
-"specify the encryption algorithm used for the\n"
-"phase 1 negotiation. This directive must be defined. \n"
-"algorithm is one of the following: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For other transforms, this statement should not be used."
-msgstr ""
-"pennu'r algorithm amgryptio i'w ddefnyddio ar gyfer\n"
-"negydu rhan 1. Rhaid i'r gyfarwyddeb gael ei diffinio.\n"
-"algorithm yw un o'r canlynol:\n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"Ni ddylid defnyddio'r gosodiad ar gyfer trawsffurfiau eraill. "
-
-#: standalone/drakvpn:1110
-#, c-format
-msgid "Hash algorithm"
-msgstr "Algorithm hash "
-
-#: standalone/drakvpn:1112
-#, c-format
-msgid "DH group"
-msgstr "Grŵp DH"
-
-#: standalone/drakvpn:1119
-#, c-format
-msgid "Command"
-msgstr "Gorchymyn"
-
-#: standalone/drakvpn:1120
-#, c-format
-msgid "Source IP range"
-msgstr "Ystod IP ffynhonnell"
-
-#: standalone/drakvpn:1121
-#, c-format
-msgid "Destination IP range"
-msgstr "Ystod IP cyrchfan"
-
-#: standalone/drakvpn:1122
-#, c-format
-msgid "Upper-layer protocol"
-msgstr "Protocol haen uchaf"
-
-#: standalone/drakvpn:1122 standalone/drakvpn:1129
-#, c-format
-msgid "any"
-msgstr "unrhyw"
-
-#: standalone/drakvpn:1124
-#, c-format
-msgid "Flag"
-msgstr "Baner"
-
-#: standalone/drakvpn:1125
-#, c-format
-msgid "Direction"
-msgstr "Cyfeiriad"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "IPsec policy"
-msgstr "Polisi IPsec"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "ipsec"
-msgstr "ipsec "
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "discard"
-msgstr "dileu"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "Mode"
-msgstr "Modd"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "tunnel"
-msgstr "twnel"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "transport"
-msgstr "trosglwyddo"
-
-#: standalone/drakvpn:1131
-#, c-format
-msgid "Source/destination"
-msgstr "Ffynhonnell/cyrchfan"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "require"
-msgstr "gofynnol"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "default"
-msgstr "rhagosodedig"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "use"
-msgstr "defnydd"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "unique"
-msgstr "unigryw"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (broadcast)"
-msgstr "UDA (darlledu)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable)"
-msgstr "UDA (cebl)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "UDA (ceble-hrc)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "Canada (cable)"
-msgstr "Canada (cebl)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Siapan (darlledu)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (cable)"
-msgstr "Siapan (cebl)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "China (broadcast)"
-msgstr "Tsieina (darlledu)"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "West Europe"
-msgstr "Gorllewin Ewrop"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "East Europe"
-msgstr "Dwyrain Ewrop"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "France [SECAM]"
-msgstr "Ffrainc(SECAM)"
-
-#: standalone/drakxtv:48
-#, c-format
-msgid "Newzealand"
-msgstr "Seland Newydd"
-
-#: standalone/drakxtv:51
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Teledu Cebl Opus Awstralia"
-
-#: standalone/drakxtv:85
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr "Rhowch eich safon teledu a gwlad"
-
-#: standalone/drakxtv:87
-#, c-format
-msgid "TV norm:"
-msgstr "Safon Teledu:"
-
-#: standalone/drakxtv:88
-#, c-format
-msgid "Area:"
-msgstr "Ardal:"
-
-#: standalone/drakxtv:93
-#, c-format
-msgid "Scanning for TV channels in progress..."
-msgstr "Wrthi'n sganio am sianeli Teledu ..."
-
-#: standalone/drakxtv:103
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "Sganio am Sianel Teledu"
-
-#: standalone/drakxtv:107
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Digwyddodd gwall wrth sganio am sianelu teledu"
-
-#: standalone/drakxtv:110
-#, c-format
-msgid "Have a nice day!"
-msgstr "Diwrnod da i chi!"
-
-#: standalone/drakxtv:111
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "Nawr mae modd i chi redeg Xawtv (o dan XWindows)!\n"
-
-#: standalone/drakxtv:149
-#, c-format
-msgid "No TV Card detected!"
-msgstr "Heb ganfod Cerdyn Teledu!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakxtv:151
-#, c-format
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"Nid oes Cerdyn Teledu wedi ei ganfod ar eich peiriant. Gwiriwch fod Cerdyn "
-"Fideo/Teledu sy'n cael ei gynnal gan Linux wedi ei osod yn gywir.\n"
-"\n"
-"\n"
-"Cewch ymweld â'n cronfa ddata caledwedd yn:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/finish-install:42 standalone/keyboarddrake:30
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Dewiswch gynllun allweddell"
-
-#: standalone/harddrake2:25
-#, c-format
-msgid "Alternative drivers"
-msgstr "Gyrwyr eraill"
-
-#: standalone/harddrake2:26
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "rhestr o yrrwr eraill ar gyfer eich cerdyn sain"
-
-#: standalone/harddrake2:29
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-"dyma'r bws corfforol i'r ddyfais gael ei gysylltu iddo (e.e. PCI, USB,...)"
-
-#: standalone/harddrake2:31 standalone/harddrake2:146
-#, c-format
-msgid "Bus identification"
-msgstr "Dynodiad bws"
-
-#: standalone/harddrake2:32
-#, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
-msgstr ""
-"- dyfeisiau PCI ac USB : dyma restr gwerthwyr, dyfais, is werthwyr ac is "
-"ddyfais PCI/USB"
-
-#: standalone/harddrake2:35
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- dyfeisiau pci: dyma slot PCI, dyfais a gwaith y cerdyn\n"
-"- dyfeisiau ide: mae'r ddyfais un ai yn was neu feistr\n"
-"- dyfeisiau scsi: dynodiad dyfeisiau scsi a'r bws scsi"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "Drive capacity"
-msgstr "Maint y gyrrwr"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr "nodweddion arbennig y gyrrwr (llosgi neu gynnal DVD)"
-
-#: standalone/harddrake2:39
-#, c-format
-msgid "this field describes the device"
-msgstr "mae'r maes yn disgrifio'r ddyfais"
-
-#: standalone/harddrake2:40
-#, c-format
-msgid "Old device file"
-msgstr "Hen ffeil dyfais"
-
-#: standalone/harddrake2:41
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "hen enw dyfais sefydlog yn cael ei ddefnyddio mewn pecyn dev"
-
-#: standalone/harddrake2:42
-#, c-format
-msgid "New devfs device"
-msgstr "Dyfais devfs newydd"
-
-#: standalone/harddrake2:43
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "enw dyfais ddeinamig yn cael ei gynhyrchu gan incore kernel devfs"
-
-#. -PO: here "module" is the "jargon term" for a kernel driver
-#: standalone/harddrake2:46
-#, c-format
-msgid "Module"
-msgstr "Modiwl"
-
-#: standalone/harddrake2:46
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "y modiwl o'r cnewyllyn GNU/Linux sy'n trin y ddyfais honno"
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "Extended partitions"
-msgstr "Rhaniadau estynedig"
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "the number of extended partitions"
-msgstr "y nifer o raniadau estynedig"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Geometry"
-msgstr "Geometreg"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Cylinder/head/sectors geometry of the disk"
-msgstr "Geometreg silindr/pen/adrannau disg"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "Disk controller"
-msgstr "Rheolwr disg"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "the disk controller on the host side"
-msgstr "y rheolwr disg ar ochr y gwesteiwr"
-
-#: standalone/harddrake2:50
-#, c-format
-msgid "class of hardware device"
-msgstr "dosbarth y ddyfais caledwedd"
-
-#: standalone/harddrake2:51 standalone/harddrake2:83
-#: standalone/printerdrake:224
-#, c-format
-msgid "Model"
-msgstr "Model"
-
-#: standalone/harddrake2:51
-#, c-format
-msgid "hard disk model"
-msgstr "Model disg caled"
-
-#: standalone/harddrake2:52
-#, c-format
-msgid "network printer port"
-msgstr "porth argraffydd rhwydwaith"
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "Primary partitions"
-msgstr "Prif raniadau"
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "the number of the primary partitions"
-msgstr "y nifer o brif raniadau"
-
-#: standalone/harddrake2:54
-#, c-format
-msgid "the vendor name of the device"
-msgstr "enw gwerthwr y ddyfais"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "Bus PCI #"
-msgstr "Bus PCI #"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "the PCI bus on which the device is plugged"
-msgstr "y bws PCI y mae'r ddyfais wedi ei blygio iddo"
-
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device #"
-msgstr "dyfais PCI #"
-
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device number"
-msgstr "rhif dyfais PCI"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function #"
-msgstr "swyddogaeth PCI #"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function number"
-msgstr "rhif swyddogaeth PCI"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "Vendor ID"
-msgstr "Enw'r gwerthwr"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "this is the standard numerical identifier of the vendor"
-msgstr "dyma enw rhifol safonol y gwerthwr"
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "Device ID"
-msgstr "Enw'r ddyfais"
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "this is the numerical identifier of the device"
-msgstr "dyma ddynodydd rhifol y ddyfais"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "Sub vendor ID"
-msgstr "Enw'r is werthwr"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "this is the minor numerical identifier of the vendor"
-msgstr "dyma enw rhifol llai'r gwerthwr"
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "Sub device ID"
-msgstr "Enw'r is ddyfais"
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "this is the minor numerical identifier of the device"
-msgstr "dyma ddynodwr rhifol llai'r ddyfais"
-
-#: standalone/harddrake2:62
-#, c-format
-msgid "Device USB ID"
-msgstr "Enw'r ddyfais USB"
-
-#: standalone/harddrake2:62
-#, c-format
-msgid ".."
-msgstr ".."
-
-#: standalone/harddrake2:66
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
-
-#: standalone/harddrake2:66
-#, c-format
-msgid ""
-"the GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
-msgstr ""
-"mae angen i'r cnewyllyn GNU/Linux gyflawni cyfrif cylch wrth gychwyn i "
-"gychwyn y cyfrif amser. Mae'r canlyniad yn cael ei gadw fel bogomips fel "
-"ffordd o \"feincnod\" y cpu."
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "Cache size"
-msgstr "Maint storfa"
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "maint storfa cpu (ail lefel)"
-
-#. -PO: here "comas" is the medical coma, not the lexical coma!!
-#: standalone/harddrake2:70
-#, c-format
-msgid "Coma bug"
-msgstr "Coma bug"
-
-#: standalone/harddrake2:70
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "a oes gan y cpu y Cyrix 6x86 Coma bug"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "Cpuid family"
-msgstr "Teulu cpuid"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "teulu'r cpu (ee 6 am ddosbarth i686)"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "Cpuid level"
-msgstr "Lefel cpuid"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "lefel gwybodaeth i'w gael drwy gyfarwyddid cpuid"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Amledd (MHz)"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr ""
-"amledd y cpu mewn MHz (y nifer o gyfarwyddiadau'r eiliad mae'r cpu'n gallu "
-"eu trin)"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "Flags"
-msgstr "Baneri"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "Baneri cpu'n cael eu dangos gan y cnewyllyn"
-
-#: standalone/harddrake2:75
-#, c-format
-msgid "Fdiv bug"
-msgstr "Gwall Fdiv"
-
-#: standalone/harddrake2:76
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
-"Mae gan brosesyddion Pentium cynnar wall yn eu prosesydd pwynt arnofio nad "
-"yw'n ymgyrraedd â'r cywirdeb angenrheidiol wrth berfformio Floating point "
-"DIVision (FDIV)"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "Is FPU present"
-msgstr "Yw'r FPU yn bresennol"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "mae iawn yn golygu fod gan y cyd-brosesydd rhifyddegol"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "P'un ai oes gan y FPU fector irq"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
-"mae iawn yn golygu fod gan y cyd-brosesydd fector eithriad yn gysylltiedig"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "F00f bug"
-msgstr "Gwall F00f"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
-"roedd rhai Pentium cynnar yn wallus ac yn rhewi wrth ddadgodio F00F bytecode"
-
-#: standalone/harddrake2:80
-#, c-format
-msgid "Halt bug"
-msgstr "Gwall halt"
-
-#: standalone/harddrake2:81
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
-"Nid yw rhai prosesyddion i486DX-100 cynnar yn gallu dychwelyd i'w cyflwr "
-"gweithredu a'r ôl defnyddio \"halt\""
-
-#: standalone/harddrake2:82
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "Is gynnyrch y cpu"
-
-#: standalone/harddrake2:83
-#, c-format
-msgid "generation of the cpu (eg: 8 for Pentium III, ...)"
-msgstr "cynnyrch y cpu (ee 8 am Pentiumlll,...]"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "Model name"
-msgstr "Enw'r model"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "enw swyddogol gwerthwr y cpu"
-
-#: standalone/harddrake2:85
-#, c-format
-msgid "the name of the CPU"
-msgstr "enw'r prosesydd"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "Processor ID"
-msgstr "Dynodiad Prosesydd"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "the number of the processor"
-msgstr "rhif y prosesydd"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "Model stepping"
-msgstr "Stepio model"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "graddiad y cpu (cynhyrchu rhif is-fodel)"
-
-#: standalone/harddrake2:88
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "enw gwerthwr y prosesydd"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid "Write protection"
-msgstr "Diogelwch ysgrifennu"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid ""
-"the WP flag in the CR0 register of the cpu enforce write protection at the "
-"memory page level, thus enabling the processor to prevent unchecked kernel "
-"accesses to user memory (aka this is a bug guard)"
-msgstr ""
-"mae'r faner WP yng nghofrestr CRO y cpu yn gorfodi diogelwch rhag ysgrifennu "
-"ar lefel cof tudalen, felly'n caniatáu'r prosesydd i atal mynediad i wirio "
-"cnewyllyn i gof y defnyddiwr (hy diogelwch rhag gwall)"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "Floppy format"
-msgstr "Fformatio disg meddal"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "fformatio disgiau meddal derbyniol i'r gyrrwr"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "Channel"
-msgstr "Sianel"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "Sianel EIDE/SCSI"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "Disk identifier"
-msgstr "Enw'r disg"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "usually the disk serial number"
-msgstr "fel rheol rhif cyfresol y ddisg"
-
-#: standalone/harddrake2:99
-#, c-format
-msgid "Logical unit number"
-msgstr "Rhif yr uned resymegol"
-
-#: standalone/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 ""
-"y rhif targed SCSI (LUN). Mae dyfeisiau SCSI sydd wedi eu cysylltu i "
-"westeiwr yn cael eu\n"
-"hadnabod yn unigryw drwy rif sianel, enw targed a rhif uned resymegol"
-
-#. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...)
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size"
-msgstr "Maint gosod"
-
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size of the memory bank"
-msgstr "Maint gosod y banc cof"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled Size"
-msgstr "Maint Galluogwyd"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled size of the memory bank"
-msgstr "Maint galluogi'r banc cof"
-
-#: standalone/harddrake2:108
-#, c-format
-msgid "type of the memory device"
-msgstr "Math o ddyfais cof"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed"
-msgstr "Cyflymder"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed of the memory bank"
-msgstr "Cyflymder y banc cof"
-
-#: standalone/harddrake2:110
-#, c-format
-msgid "Bank connections"
-msgstr "Cysylltiadau banc"
-
-#: standalone/harddrake2:111
-#, c-format
-msgid "Socket designation of the memory bank"
-msgstr "Dynodiad soced y banc cof"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid "Device file"
-msgstr "Ffeil dyfais"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid ""
-"the device file used to communicate with the kernel driver for the mouse"
-msgstr ""
-"y ffeil dyfais sy'n cael ei ddefnyddio i gyfathrebu â gyrrwr y cnewyllyn ar "
-"gyfer y llygoden"
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "Emulated wheel"
-msgstr "Olwyn efelychwyd"
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "whether the wheel is emulated or not"
-msgstr "p'un ai yw'r olwyn wedi ei efelychu ai peidio"
-
-#: standalone/harddrake2:117
-#, c-format
-msgid "the type of the mouse"
-msgstr "y math o lygoden"
-
-#: standalone/harddrake2:118
-#, c-format
-msgid "the name of the mouse"
-msgstr "enw llygoden"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "Number of buttons"
-msgstr "Nifer o fotymau"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "nifer y botymau sydd gan y llygoden"
-
-#: standalone/harddrake2:120
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "y math o fws mae eich llygoden wedi cysylltu iddi"
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "Mouse protocol used by X11"
-msgstr "Protocol llygoden defnyddir gan y X11"
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "the protocol that the graphical desktop use with the mouse"
-msgstr ""
-"y protocol mae'r bwrdd gwaith graffigol yn ei ddefnyddio gyda'r llygoden"
-
-#: standalone/harddrake2:128 standalone/harddrake2:137
-#: standalone/harddrake2:144 standalone/harddrake2:152
-#: standalone/harddrake2:341
-#, c-format
-msgid "Identification"
-msgstr "Dynodiad"
-
-#: standalone/harddrake2:129 standalone/harddrake2:145
-#, c-format
-msgid "Connection"
-msgstr "Cysylltiad"
-
-#: standalone/harddrake2:138
-#, c-format
-msgid "Performances"
-msgstr "Perfformiadau"
-
-#: standalone/harddrake2:139
-#, c-format
-msgid "Bugs"
-msgstr "Gwallau"
-
-#: standalone/harddrake2:140
-#, c-format
-msgid "FPU"
-msgstr "FPU (Cyd-brosesydd Rhifol)"
-
-#: standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Dyfais"
-
-#: standalone/harddrake2:148
-#, c-format
-msgid "Partitions"
-msgstr "Rhaniadau"
-
-#: standalone/harddrake2:153
-#, c-format
-msgid "Features"
-msgstr "Nodweddion"
-
-#. -PO: please keep all "/" characters !!!
-#: standalone/harddrake2:176 standalone/logdrake:76
-#: standalone/printerdrake:146 standalone/printerdrake:159
-#: standalone/printerdrake:171
-#, c-format
-msgid "/_Options"
-msgstr "/_Dewisiadau"
-
-#: standalone/harddrake2:177 standalone/harddrake2:202 standalone/logdrake:78
-#: standalone/printerdrake:172 standalone/printerdrake:174
-#: standalone/printerdrake:177 standalone/printerdrake:179
-#, c-format
-msgid "/_Help"
-msgstr "/_Cymorth"
-
-#: standalone/harddrake2:181
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Awtoganfod_argraffydd"
-
-#: standalone/harddrake2:182
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Awtoganfod_modem"
-
-#: standalone/harddrake2:183
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Awtoganfod_gyrrwr jaz"
-
-#: standalone/harddrake2:184
-#, c-format
-msgid "/Autodetect parallel _zip drives"
-msgstr "/Awtoganfod gyrrwyr _zip paralel"
-
-#: standalone/harddrake2:191 standalone/printerdrake:152
-#, c-format
-msgid "/_Quit"
-msgstr "/_Gadael"
-
-#: standalone/harddrake2:204
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Disgrifiad meysydd"
-
-#: standalone/harddrake2:206
-#, c-format
-msgid "Harddrake help"
-msgstr "Cymorth Harddrake"
-
-#: standalone/harddrake2:215
-#, 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 ""
-"Unwaith i chi ddewis dyfais, gallwch weld esboniad mewn meysydd yn y ffrâm "
-"dde [\"Gwybodaeth\"]"
-
-#: standalone/harddrake2:221 standalone/printerdrake:177
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Adrodd ar Wallau"
-
-#: standalone/harddrake2:223 standalone/printerdrake:179
-#, c-format
-msgid "/_About..."
-msgstr "/_Ynghylch..."
-
-#: standalone/harddrake2:224
-#, c-format
-msgid "About Harddrake"
-msgstr "Ynghylch Harddrake"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/harddrake2:226
-#, c-format
-msgid ""
-"This is HardDrake, a %s hardware configuration tool.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-msgstr ""
-"Dyma HardDrake, offeryn ffurfweddu caledwedd %s.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;tvignaud"
-"\\@mandriva.com&gt;\n"
-"\n"
-
-#: standalone/harddrake2:242
-#, c-format
-msgid "Harddrake2"
-msgstr "Harddrake2"
-
-#: standalone/harddrake2:272
-#, c-format
-msgid "Detected hardware"
-msgstr "Caledwedd canfuwyd"
-
-#: standalone/harddrake2:277
-#, c-format
-msgid "Configure module"
-msgstr "Modd ffurfweddu"
-
-#: standalone/harddrake2:284
-#, c-format
-msgid "Run config tool"
-msgstr "Rhedeg offeryn ffurfweddu"
-
-#: standalone/harddrake2:308
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr "Cliciwch ar ddyfais yn y goeden chwith i gael at ei wybodaeth"
-
-#: standalone/harddrake2:329 standalone/printerdrake:306
-#: standalone/printerdrake:320
-#, c-format
-msgid "Unknown"
-msgstr "Anhysbys"
-
-#: standalone/harddrake2:349
-#, c-format
-msgid "Misc"
-msgstr "Amryw."
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "secondary"
-msgstr "eilradd"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "primary"
-msgstr "cynradd"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "burner"
-msgstr "llosgwr"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "DVD"
-msgstr "DVD"
-
-#: standalone/harddrake2:511
-#, c-format
-msgid ""
-"The following devices needs proprietary drivers or firmwares in order to "
-"operate smoothly. The appropriate packages can be retrieved from the "
-"Mandriva Club. Do you want to subscribe to the Mandriva Club?"
-msgstr ""
-"Mae'r dyfeisiau canlynol angen gyrwyr perchnogol neu gadarnwar i weithio'n "
-"llyfn. Mae modd cael y pecynnau priodol gan y Mandriva Club. Hoffech chi "
-"danysgrifio o'r Mandriva Club?"
-
-#: standalone/keyboarddrake:45
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Ydych chi eisiau i'r Backspace ddychwelyd Dileu yn y consol?"
-
-#: standalone/localedrake:38
-#, c-format
-msgid "LocaleDrake"
-msgstr "LocaleDrake"
-
-#: standalone/localedrake:44
-#, c-format
-msgid "You should install the following packages: %s"
-msgstr "Mae angen un o'r pecynnau canlynol i osod %s:"
-
-#. -PO: the following is used to combine packages names. eg: "initscripts, harddrake, yudit"
-#: standalone/localedrake:47 standalone/scannerdrake:135
-#, c-format
-msgid ", "
-msgstr ", "
-
-#: standalone/localedrake:55
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-"Mae'r newid wedi ei gyflawni, ond i fod yn effeithiol mae'n rhaid i chi "
-"allgofnodi"
-
-#: standalone/logdrake:49
-#, c-format
-msgid "Mandriva Linux Tools Logs"
-msgstr "Cofnodion Offer Mandriva Linux"
-
-#: standalone/logdrake:50
-#, c-format
-msgid "Logdrake"
-msgstr "Logdrake"
-
-#: standalone/logdrake:63
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Dangos ar y diwrnod penodol yn unig"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "/File/_New"
-msgstr "/Ffeil/_Newydd"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "/File/_Open"
-msgstr "/Ffeil/_Agor"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "/File/_Save"
-msgstr "/Ffeil/_Cadw"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
-
-#: standalone/logdrake:73
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Ffeil/Cadw _fel"
-
-#: standalone/logdrake:74
-#, c-format
-msgid "/File/-"
-msgstr "/Ffeil/-"
-
-#: standalone/logdrake:77
-#, c-format
-msgid "/Options/Test"
-msgstr "/Dewisiadau/Test"
-
-#: standalone/logdrake:79
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Cymorth/_Ynghylch..."
-
-#: standalone/logdrake:108
-#, c-format
-msgid ""
-"_:this is the auth.log log file\n"
-"Authentication"
-msgstr "Dilysu"
-
-#: standalone/logdrake:109
-#, c-format
-msgid ""
-"_:this is the user.log log file\n"
-"User"
-msgstr "Defnyddiwr"
-
-#: standalone/logdrake:110
-#, c-format
-msgid ""
-"_:this is the /var/log/messages log file\n"
-"Messages"
-msgstr "Negeseuon"
-
-#: standalone/logdrake:111
-#, c-format
-msgid ""
-"_:this is the /var/log/syslog log file\n"
-"Syslog"
-msgstr "Syslog"
-
-#: standalone/logdrake:115
-#, c-format
-msgid "search"
-msgstr "chwilio"
-
-#: standalone/logdrake:127
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Offeryn i fonitro eich cofnodion"
-
-#: standalone/logdrake:128 standalone/net_applet:347 standalone/net_monitor:93
-#, c-format
-msgid "Settings"
-msgstr "Gosodiadau"
-
-#: standalone/logdrake:133
-#, c-format
-msgid "Matching"
-msgstr "Cydweddu"
-
-#: standalone/logdrake:134
-#, c-format
-msgid "but not matching"
-msgstr "ond heb fod yn cydweddu"
-
-#: standalone/logdrake:138
-#, c-format
-msgid "Choose file"
-msgstr "Dewis ffeil"
-
-#: standalone/logdrake:150
-#, c-format
-msgid "Calendar"
-msgstr "Calendr"
-
-#: standalone/logdrake:160
-#, c-format
-msgid "Content of the file"
-msgstr "Cynnwys y ffeil"
-
-#: standalone/logdrake:164 standalone/logdrake:401
-#, c-format
-msgid "Mail alert"
-msgstr "Rhybudd e-bost"
-
-#: standalone/logdrake:171
-#, c-format
-msgid "The alert wizard has failed unexpectedly:"
-msgstr "Mae'r dewin byw wedi methu'n annisgwyl:"
-
-#: standalone/logdrake:224
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "arhoswch, dosbarthu ffeil: %s"
-
-#: standalone/logdrake:379
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Gweinydd Gwe Fyd Eang Apache"
-
-#: standalone/logdrake:380
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Datrysydd Enw Parth"
-
-#: standalone/logdrake:381
-#, c-format
-msgid "Ftp Server"
-msgstr "Gweinydd Ftp"
-
-#: standalone/logdrake:382
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Gweinydd E-bost Postfix"
-
-#: standalone/logdrake:383
-#, c-format
-msgid "Samba Server"
-msgstr "Gweinydd Samba"
-
-#: standalone/logdrake:385
-#, c-format
-msgid "Webmin Service"
-msgstr "Gwasanaethau Webmin"
-
-#: standalone/logdrake:386
-#, c-format
-msgid "Xinetd Service"
-msgstr "Gwasanaeth Xinetd"
-
-#: standalone/logdrake:395
-#, c-format
-msgid "Configure the mail alert system"
-msgstr "Ffurfweddu'r system argraffu CUPS"
-
-#: standalone/logdrake:396
-#, c-format
-msgid "Stop the mail alert system"
-msgstr "Atal y system rhybudd e-bost"
-
-#: standalone/logdrake:404
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Ffurfweddiad rhybudd e-bost"
-
-#: standalone/logdrake:405
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Croeso i'r gwasanaeth ffurfweddu e-bost\n"
-"\n"
-"Yma bydd modd i chi osod y system rhybuddio.\n"
-
-#: standalone/logdrake:415
-#, c-format
-msgid "Services settings"
-msgstr "Gosodiad gwasanaeth"
-
-#: standalone/logdrake:416
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr "Byddwch yn derbyn rhybudd os na fydd un o'r gwasanaethu hyn yn rhedeg"
-
-#: standalone/logdrake:423
-#, c-format
-msgid "Load setting"
-msgstr "Gosodiad llwyth"
-
-#: standalone/logdrake:424
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Byddwch yn derbyn rhybudd os yw'r llwyth yn uwch na'r gwerth hwn"
-
-#: standalone/logdrake:425
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Llwyth"
-
-#: standalone/logdrake:430
-#, c-format
-msgid "Alert configuration"
-msgstr "Ffurfweddiad rhybudd"
-
-#: standalone/logdrake:431
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Rhowch eich cyfeiriad e-bost islaw"
-
-#: standalone/logdrake:432
-#, c-format
-msgid "and enter the name (or the IP) of the SMTP server you wish to use"
-msgstr "rhowch enw (neu'r IP) y gweinydd SMTP rydych am ei ddefnyddio."
-
-#: standalone/logdrake:451
-#, c-format
-msgid "The wizard successfully configured the mail alert."
-msgstr "Mae'r dewin wedi ffurfweddu'r rhybudd e-bost yn llwyddiannus."
-
-#: standalone/logdrake:457
-#, c-format
-msgid "The wizard successfully disabled the mail alert."
-msgstr "Mae'r dewin wedi ffurfweddu'r rhybudd e-bost yn llwyddiannus."
-
-#: standalone/logdrake:516
-#, c-format
-msgid "Save as.."
-msgstr "Cadw fel..."
-
-#: standalone/mousedrake:31
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Dewiswch fath eich llygoden"
-
-#: standalone/mousedrake:44
-#, c-format
-msgid "Emulate third button?"
-msgstr "Efelychu'r trydydd botwm?"
-
-#: standalone/mousedrake:61
-#, c-format
-msgid "Mouse test"
-msgstr "Prawf llygoden"
-
-#: standalone/mousedrake:64
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Profwch y llygoden"
-
-#: standalone/net_applet:47
-#, c-format
-msgid "Network is up on interface %s"
-msgstr "Mae'r rhwydwaith ar gael ar ryngwyneb %s"
-
-#. -PO: keep the "Configure Network" substring synced with the "Configure Network" message below
-#: standalone/net_applet:50
-#, c-format
-msgid "Network is down on interface %s. Click on \"Configure Network\""
-msgstr ""
-"Nid yw'r rhwydwaith ar gael ar ryngwyneb %s. Cliciwch ar \"Ffurfweddu "
-"Rhwydwaith\""
-
-#: standalone/net_applet:56 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Connect %s"
-msgstr "Cysylltu %s"
-
-#: standalone/net_applet:57 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Disconnect %s"
-msgstr "Datgysylltu %s"
-
-#: standalone/net_applet:58
-#, c-format
-msgid "Monitor Network"
-msgstr "Monitro'r Rhwydwaith"
-
-#: standalone/net_applet:60
-#, c-format
-msgid "Manage wireless networks"
-msgstr "Rheoli rhwydweithiau di-wifr"
-
-#: standalone/net_applet:61
-#, c-format
-msgid "Configure Network"
-msgstr "Ffurfweddu rhwydwaith"
-
-#: standalone/net_applet:63
-#, c-format
-msgid "Watched interface"
-msgstr "Rhyngwyneb gwyliwr"
-
-#: standalone/net_applet:93
-#, c-format
-msgid "Profiles"
-msgstr "Proffeiliau"
-
-#: standalone/net_applet:102
-#, c-format
-msgid "Get Online Help"
-msgstr "Cymorth Ar-lein"
-
-#: standalone/net_applet:335
-#, c-format
-msgid "Interactive Firewall automatic mode"
-msgstr "Modd awtomatig rhyngweithiol Mur Cadarn"
-
-#: standalone/net_applet:340
-#, c-format
-msgid "Always launch on startup"
-msgstr "Cychwyn wrth gychwyn"
-
-#: standalone/net_applet:344
-#, c-format
-msgid "Wireless networks"
-msgstr "Rhwydweithiau diwifr"
-
-#: standalone/net_applet:429
-#, c-format
-msgid "Interactive Firewall: intrusion detected"
-msgstr "Mur Cadarn Rhyngweithiol: canfod ymwthiad"
-
-#: standalone/net_applet:442
-#, c-format
-msgid "What do you want to do with this attacker?"
-msgstr "Beth hoffech wneud gyda'r ymosodwr?"
-
-#: standalone/net_applet:445
-#, c-format
-msgid "Attack details"
-msgstr "Manylion yr ymosodiad"
-
-#: standalone/net_applet:449
-#, c-format
-msgid "Attack time: %s"
-msgstr "Amser yr ymosodiad: %s"
-
-#: standalone/net_applet:450
-#, c-format
-msgid "Network interface: %s"
-msgstr "Rhyngwynebau rhwydwaith: %s"
-
-#: standalone/net_applet:451
-#, c-format
-msgid "Attack type: %s"
-msgstr "Math o ymosodiad: %s"
-
-#: standalone/net_applet:452
-#, c-format
-msgid "Protocol: %s"
-msgstr "Protocol: %s"
-
-#: standalone/net_applet:453
-#, c-format
-msgid "Attacker IP address: %s"
-msgstr "Cyfeiriad IP yr ymosodwr: %s"
-
-#: standalone/net_applet:454
-#, c-format
-msgid "Attacker hostname: %s"
-msgstr "Enw gwesteiwr yr ymosodwr: %s"
-
-#: standalone/net_applet:457
-#, c-format
-msgid "Service attacked: %s"
-msgstr "Ymosodwyd ar wasanaeth: %s"
-
-#: standalone/net_applet:458
-#, c-format
-msgid "Port attacked: %s"
-msgstr "Ymosodwyd ar borth: %s"
-
-#: standalone/net_applet:460
-#, c-format
-msgid "Type of ICMP attack: %s"
-msgstr "Math o ymosodiad ICMP: %s"
-
-#: standalone/net_applet:465
-#, c-format
-msgid "Always blacklist (do not ask again)"
-msgstr "Rhestr gwahardd (peidiwch gofyn eto)"
-
-#: standalone/net_monitor:57 standalone/net_monitor:62
-#, c-format
-msgid "Network Monitoring"
-msgstr "Monitro'r Rhwydwaith"
-
-#: standalone/net_monitor:98
-#, c-format
-msgid "Global statistics"
-msgstr "Ystadegau eang"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Instantaneous"
-msgstr "Ebrwydd"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Average"
-msgstr "Cyfartaledd"
-
-#: standalone/net_monitor:102
-#, c-format
-msgid ""
-"Sending\n"
-"speed:"
-msgstr ""
-"Cyflymder\n"
-"anfon:"
-
-#: standalone/net_monitor:103
-#, c-format
-msgid ""
-"Receiving\n"
-"speed:"
-msgstr ""
-"Cyflymder\n"
-"derbyn:"
-
-#: standalone/net_monitor:107
-#, c-format
-msgid ""
-"Connection\n"
-"time: "
-msgstr ""
-"Amser\n"
-"cysylltiad:"
-
-#: standalone/net_monitor:114
-#, c-format
-msgid "Use same scale for received and transmitted"
-msgstr "Defnyddio'r un raddfa ar gyfer derbyniwyd a throsglwyddo"
-
-#: standalone/net_monitor:133
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Arhoswch, profi eich cysylltiad..."
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Datgysylltu o'r Rhyngrwyd"
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Cysylltu â'r Rhyngrwyd"
-
-#: standalone/net_monitor:226
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Methodd datgysylltu o'r Rhyngrwyd."
-
-#: standalone/net_monitor:227
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Datgysylltu o'r Rhyngrwyd wedi ei gwblhau"
-
-#: standalone/net_monitor:229
-#, c-format
-msgid "Connection complete."
-msgstr "Cysylltiad wedi ei gwblhau"
-
-#: standalone/net_monitor:230
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandriva Linux Control Center."
-msgstr ""
-"Methodd y cysylltiad.\n"
-"Gwiriwch eich ffurfweddiad yng Nghanolfan Rheoli Mandriva Linux."
-
-#: standalone/net_monitor:335
-#, c-format
-msgid "Color configuration"
-msgstr "Ffurfweddiad lliw"
-
-#: standalone/net_monitor:383 standalone/net_monitor:403
-#, c-format
-msgid "sent: "
-msgstr "anfonwyd: "
-
-#: standalone/net_monitor:390 standalone/net_monitor:407
-#, c-format
-msgid "received: "
-msgstr "derbyniwyd:"
-
-#: standalone/net_monitor:397
-#, c-format
-msgid "average"
-msgstr "cyfartaledd"
-
-#: standalone/net_monitor:400
-#, c-format
-msgid "Local measure"
-msgstr "Mesur lleol"
-
-#: standalone/net_monitor:461
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Rhybudd, mae cysylltiad arall gyda'r rhyngrwyd wedi ei ganfod, efallai'n "
-"defnyddio eich rhwydwaith."
-
-#: standalone/net_monitor:472
-#, c-format
-msgid "No internet connection configured"
-msgstr "Dim cysylltiad â'r rhyngrwyd wedi ei ffurfweddu"
-
-#: standalone/printerdrake:76
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "Darllen data am argraffyddion gosodedig..."
-
-#: standalone/printerdrake:128
-#, c-format
-msgid "%s Printer Management Tool"
-msgstr "Offeryn Rheoli Argraffydd %s"
-
-#: standalone/printerdrake:142 standalone/printerdrake:143
-#: standalone/printerdrake:144 standalone/printerdrake:145
-#: standalone/printerdrake:153 standalone/printerdrake:154
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Actions"
-msgstr "/_Gweithredoedd"
-
-#: standalone/printerdrake:142 standalone/printerdrake:154
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Ychwanegu Argraffydd"
-
-#: standalone/printerdrake:143
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Gosod fel _Rhagosodiad"
-
-#: standalone/printerdrake:144
-#, c-format
-msgid "/_Edit"
-msgstr "/_Golygu"
-
-#: standalone/printerdrake:145
-#, c-format
-msgid "/_Delete"
-msgstr "/_Dileu"
-
-#: standalone/printerdrake:146
-#, c-format
-msgid "/_Expert mode"
-msgstr "/_Modd Uwch"
-
-#: standalone/printerdrake:151
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Adnewyddu"
-
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_Ffurfweddu CUPS"
-
-#: standalone/printerdrake:171
-#, c-format
-msgid "/Configure _Auto Administration"
-msgstr "/Configure _Auto Administration"
-
-#: standalone/printerdrake:194
-#, c-format
-msgid "Search:"
-msgstr "Chwilio:"
-
-#: standalone/printerdrake:197
-#, c-format
-msgid "Apply filter"
-msgstr "Gosod Hidl"
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Def."
-msgstr "Def."
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Printer Name"
-msgstr "Enw argraffydd"
-
-#: standalone/printerdrake:224
-#, c-format
-msgid "Connection Type"
-msgstr "Math o Gyswllt"
-
-#: standalone/printerdrake:231
-#, c-format
-msgid "Server Name"
-msgstr "Enw Gweinydd"
-
-#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add Printer"
-msgstr "Ychwanegu Argraffydd"
-
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Ychwanegu argraffydd newydd i’r system"
-
-#. -PO: "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set as default"
-msgstr "Gosod fel rhagosodedig"
-
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Gosod yr argraffydd fel y rhagosodedig"
-
-#: standalone/printerdrake:245
-#, c-format
-msgid "Edit selected printer"
-msgstr "Golygu'r argraffwyr hyn"
-
-#: standalone/printerdrake:248
-#, c-format
-msgid "Delete selected printer"
-msgstr "Dileu'r argraffydd hwn"
-
-#: standalone/printerdrake:251
-#, c-format
-msgid "Refresh the list"
-msgstr "Adnewyddu'r rhestr"
-
-#. -PO: "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS"
-msgstr "Ffurfweddu CUPS"
-
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Ffurfweddu'r system argraffu CUPS"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Enabled"
-msgstr "Galluogwyd"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Disabled"
-msgstr "Anablwyd"
-
-#: standalone/printerdrake:596
-#, c-format
-msgid "Authors: "
-msgstr "Awduron:"
-
-#. -PO: here %s is the version number
-#: standalone/printerdrake:606
-#, c-format
-msgid "Printer Management %s"
-msgstr "Rheoli Argraffydd %s"
-
-#: standalone/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 ""
-"Mae angen gosod pecynnau SANE i ddefnydio sganwyr.\n"
-"\n"
-"Hoffech chi osod y pecynnau SANE?"
-
-#: standalone/scannerdrake:55
-#, c-format
-msgid "Aborting Scannerdrake."
-msgstr "Atal Scannerdrake."
-
-#: standalone/scannerdrake:60
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-"Methu gosod y pecynnau sydd eu hangen i osod sganiwr gyda Scannerdrake."
-
-#: standalone/scannerdrake:61
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Ni fydd Scannerdrake yn cael ei gychwyn."
-
-#: standalone/scannerdrake:67 standalone/scannerdrake:508
-#, c-format
-msgid "Searching for configured scanners..."
-msgstr "Chwilio am sganiwr wedi ei ffurfweddu..."
-
-#: standalone/scannerdrake:71 standalone/scannerdrake:512
-#, c-format
-msgid "Searching for new scanners..."
-msgstr "Chwilio am sganiwr newydd..."
-
-#: standalone/scannerdrake:79 standalone/scannerdrake:534
-#, c-format
-msgid "Re-generating list of configured scanners..."
-msgstr "Ail gynhyrchu rhestr o sganwyr wedi eu ffurfweddu..."
-
-#: standalone/scannerdrake:101
-#, c-format
-msgid "The %s is not supported by this version of %s."
-msgstr "Nid yw %s yn cael ei gynnal gan y fersiwn yma o %s."
-
-#: standalone/scannerdrake:104
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "Wedi canfod %s ar %s, ei ffurfweddi'n awtomatig?"
-
-#: standalone/scannerdrake:116
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
-"Nid yw %s yng nghronfa ddata sganwyr. Hoffech chi ei ffurfweddu â llaw?"
-
-#: standalone/scannerdrake:131
-#, c-format
-msgid "Select a scanner model"
-msgstr "Dewiswch fodel sganiwr"
-
-#: standalone/scannerdrake:132
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: standalone/scannerdrake:133
-#, c-format
-msgid "Detected model: %s"
-msgstr "Canfuwyd model: %s"
-
-#: standalone/scannerdrake:136
-#, c-format
-msgid "Port: %s"
-msgstr "Porth: %s"
-
-#: standalone/scannerdrake:138 standalone/scannerdrake:141
-#, c-format
-msgid " (UNSUPPORTED)"
-msgstr "(HEB EI GYNNAL)"
-
-#: standalone/scannerdrake:144
-#, c-format
-msgid "The %s is not supported under Linux."
-msgstr "Nid yw %s yn cael ei gynnal gan Linux."
-
-#: standalone/scannerdrake:171 standalone/scannerdrake:185
-#, c-format
-msgid "Do not install firmware file"
-msgstr "Peidio gosod ffeil cadarnwedd"
-
-#: standalone/scannerdrake:175 standalone/scannerdrake:227
-#, c-format
-msgid ""
-"It is possible that your %s needs its firmware to be uploaded everytime when "
-"it is turned on."
-msgstr ""
-"Mae'n bosib fod %s angen i'w gadarnwedd gael ei lwytho i fyny bob tro fydd "
-"yn cael ei gychwyn."
-
-#: standalone/scannerdrake:176 standalone/scannerdrake:228
-#, c-format
-msgid "If this is the case, you can make this be done automatically."
-msgstr "Os yw hyn yn wir, gallwch beri i hyn gael ei wneud yn awtomatig i chi."
-
-#: standalone/scannerdrake:177 standalone/scannerdrake:231
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware file for your scanner so that it "
-"can be installed."
-msgstr ""
-"I wneud felly, rhaid darparu'r ffeil cadarnwedd ar gyfer eich sganiwr fel "
-"bod modd ei osod."
-
-#: standalone/scannerdrake:178 standalone/scannerdrake:232
-#, 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 ""
-"Cewch hyd i'r ffeil ar y CD neu ddisg meddal sy'n dod gyda'r sganiwr, ar "
-"dudalen gwe'r gwneuthurwr, neu ar eich rhaniad Windows."
-
-#: standalone/scannerdrake:180 standalone/scannerdrake:239
-#, c-format
-msgid "Install firmware file from"
-msgstr "Gosod ffeil cadarnwedd o"
-
-#: standalone/scannerdrake:200
-#, c-format
-msgid "Select firmware file"
-msgstr "Dewiswch ffeil cadarnwedd"
-
-#: standalone/scannerdrake:203 standalone/scannerdrake:262
-#, c-format
-msgid "The firmware file %s does not exist or is unreadable!"
-msgstr "Nid yw ffeil cadarnwedd %s yn bodoli neu nid yw'n ddarllenadwy!"
-
-#: standalone/scannerdrake:226
-#, c-format
-msgid ""
-"It is possible that your scanners need their firmware to be uploaded "
-"everytime when they are turned on."
-msgstr ""
-"Mae'n bosib fod angen i'ch sganiwr gael ei gadarnwedd ei ddiweddaru bob tro "
-"fydd yn cael ei gychwyn."
-
-#: standalone/scannerdrake:230
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware files for your scanners so that it "
-"can be installed."
-msgstr ""
-"I wneud hynny, rhaid darparu'r ffeil cadarnwedd ar gyfer eich sganiwr fel "
-"bod modd ei osod."
-
-#: standalone/scannerdrake:233
-#, 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 ""
-"Os ydych eisoes wedi gosod cadarnwedd eich sganiwr mae modd ei ddiweddaru "
-"drwy ddarparu'r ffeil newydd"
-
-#: standalone/scannerdrake:235
-#, c-format
-msgid "Install firmware for the"
-msgstr "Gosod ffeil cadarnwedd ar gyfer"
-
-#: standalone/scannerdrake:258
-#, c-format
-msgid "Select firmware file for the %s"
-msgstr "Dewis ffeil cadarnwedd ar gyfer %s"
-
-#: standalone/scannerdrake:276
-#, c-format
-msgid "Could not install the firmware file for the %s!"
-msgstr "Methu gosod ffeil cadarnwedd ar gyfer %s!"
-
-#: standalone/scannerdrake:289
-#, c-format
-msgid "The firmware file for your %s was successfully installed."
-msgstr "Mae'r ffeil cadarnwedd ar gyfer %s wedi ei osod yn llwyddiannus!"
-
-#: standalone/scannerdrake:299
-#, c-format
-msgid "The %s is unsupported"
-msgstr "Nid yw %s yn cael ei gynnal"
-
-#: standalone/scannerdrake:304
-#, c-format
-msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the %s Control Center in Hardware section."
-msgstr ""
-"Rhaid i %s gael ei ffurfweddu gan printerdrake.\n"
-"Gallwch gychwyn printerdrake o adran Galedwedd Canolfan Rheoli %s"
-
-#: standalone/scannerdrake:322
-#, c-format
-msgid "Setting up kernel modules..."
-msgstr "Gosod modiwlau'r cnewyllyn..."
-
-#: standalone/scannerdrake:332 standalone/scannerdrake:339
-#: standalone/scannerdrake:369
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Awtoganfod pyrth ar gael"
-
-#: standalone/scannerdrake:334 standalone/scannerdrake:380
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Dewiswch y ddyfais lle mae %s wedi ei gysylltu"
-
-#: standalone/scannerdrake:335
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Sylwer: Nid oes modd awtoganfod pyrth paralel)"
-
-#: standalone/scannerdrake:337 standalone/scannerdrake:382
-#, c-format
-msgid "choose device"
-msgstr "dewis dyfais"
-
-#: standalone/scannerdrake:371
-#, c-format
-msgid "Searching for scanners..."
-msgstr "Chwilio am sganwyr..."
-
-#: standalone/scannerdrake:407 standalone/scannerdrake:414
-#, c-format
-msgid "Attention!"
-msgstr "Sylwch!"
-
-#: standalone/scannerdrake:408
-#, 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 ""
-"Nid oes modd ffurfweddu %s yn awtomatig.\n"
-"\n"
-"\n"
-"Mae angen newidiadau gyda llaw. Golygwch y ffeil ffurfweddiad /etc/sane.d/%s."
-"conf. "
-
-#: standalone/scannerdrake:409 standalone/scannerdrake:418
-#, c-format
-msgid ""
-"More info in the driver's manual page. Run the command \"man sane-%s\" to "
-"read it."
-msgstr ""
-"Mae rhagor o wybodaeth ar dudalen llawlyfr y gyrrwr. Rhedwch y gorchymyn "
-"\"man sane-%s\" i'w ddarllen."
-
-#: standalone/scannerdrake:411 standalone/scannerdrake:420
-#, c-format
-msgid ""
-"After that you may scan documents using \"XSane\" or \"Kooka\" from "
-"Multimedia/Graphics in the applications menu."
-msgstr ""
-"Wedi hynny gallwch sganio dogfennau gan ddefnyddio \"XSane\" neu \"Kooka\" "
-"o'r ddewislen Aml-gyfrwng/Graffigau."
-
-#: standalone/scannerdrake:415
-#, c-format
-msgid ""
-"Your %s has been configured, but it is possible that additional manual "
-"adjustments are needed to get it to work. "
-msgstr ""
-"Mae eich %s wedi ei ffurfweddu, ond mae'n bosibl bod angen newidiadau llaw "
-"ychwanegol i'w gael i weithio."
-
-#: standalone/scannerdrake:416
-#, 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 ""
-"Nid yw'n ymddangos ar restr sganwyr wedi eu ffurfweddu ym mhrif ffenestr "
-"Scannerdrake neu nid yw'n gweithio'n iawn."
-
-#: standalone/scannerdrake:417
-#, c-format
-msgid "edit the configuration file /etc/sane.d/%s.conf. "
-msgstr "golygu'r ffeil ffurfweddu /etc/sane.d/%s.conf. "
-
-#: standalone/scannerdrake:423
-#, 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 ""
-"Mae eich %s wedi ei ffurfweddu.\n"
-"Gallwch ddefnyddio \"XSane\" i sganio dogfennau o'r ddewislen rhaglenni Aml-"
-"gyfrwng/Graffigau."
-
-#: standalone/scannerdrake:448
-#, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr ""
-"Mae'r argraffyddion canlynol\n"
-"\n"
-"%s\n"
-"ar gael ar eich system.\n"
-
-#: standalone/scannerdrake:449
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr ""
-"Mae'r argraffydd canlynol\n"
-"\n"
-"%s\n"
-"ar gael ar eich system.\n"
-
-#: standalone/scannerdrake:452 standalone/scannerdrake:455
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "Does unrhyw sganiwr wedi ei ganfod ar gael ar eich cyfrifiadur.\n"
-
-#: standalone/scannerdrake:469
-#, c-format
-msgid "Search for new scanners"
-msgstr "Chwilio am sganwyr newydd"
-
-#: standalone/scannerdrake:475
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Ychwanegu sganiwr gyda llaw"
-
-#: standalone/scannerdrake:482
-#, c-format
-msgid "Install/Update firmware files"
-msgstr "Gosod/Diweddaru ffeiliau cadarnwedd"
-
-#: standalone/scannerdrake:488
-#, c-format
-msgid "Scanner sharing"
-msgstr "Rhannu sganiwr"
-
-#: standalone/scannerdrake:547 standalone/scannerdrake:712
-#, c-format
-msgid "All remote machines"
-msgstr "Pob cyfrifiadur pell"
-
-#: standalone/scannerdrake:559 standalone/scannerdrake:862
-#, c-format
-msgid "This machine"
-msgstr "Y peiriant hwn"
-
-#: standalone/scannerdrake:599
-#, 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 ""
-"Yma gallwch benderfynu a ddylai'r sganwyr sy'n gysylltiedig â'r cyfrifiadur "
-"hwn fod ar gael i gyfrifiaduron pell a pha rai."
-
-#: standalone/scannerdrake:600
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"Gallwch benderfynu a ddylai sganwyr ar gyfrifiadur pell fod ar gael ar gyfer "
-"y cyfrifiadur hwn."
-
-#: standalone/scannerdrake:603
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr "Mae' sganwyr y cyfrifiadur hwn ar gael ar gyfer rhai eraill"
-
-#: standalone/scannerdrake:605
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Rhannu sganwyr i westeiwyr:"
-
-#: standalone/scannerdrake:619
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Defnyddio sganiwr ar gyfrifiaduron pell"
-
-#: standalone/scannerdrake:622
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Defnyddio sganwyr ar westeiwyr:"
-
-#: standalone/scannerdrake:649 standalone/scannerdrake:721
-#: standalone/scannerdrake:871
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Rhannu sganwyr lleol"
-
-#: standalone/scannerdrake:650
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr ""
-"Dyma'r cyfrifiaduron a rhwydweithiau ddylai'r sganiwr lleol fod ar gael:"
-
-#: standalone/scannerdrake:661 standalone/scannerdrake:811
-#, c-format
-msgid "Add host"
-msgstr "Ychwanegu gwesteiwr"
-
-#: standalone/scannerdrake:667 standalone/scannerdrake:817
-#, c-format
-msgid "Edit selected host"
-msgstr "Golygu'r gwesteiwr"
-
-#: standalone/scannerdrake:676 standalone/scannerdrake:826
-#, c-format
-msgid "Remove selected host"
-msgstr "Tynnu'r gwesteiwr"
-
-#: standalone/scannerdrake:700 standalone/scannerdrake:708
-#: standalone/scannerdrake:713 standalone/scannerdrake:759
-#: standalone/scannerdrake:850 standalone/scannerdrake:858
-#: standalone/scannerdrake:863 standalone/scannerdrake:909
-#, c-format
-msgid "Name/IP address of host:"
-msgstr "Enw/cyfeiriad IP gwesteiwr"
-
-#: standalone/scannerdrake:722 standalone/scannerdrake:872
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr "Dewis y gwesteiwr ddylai'r sganiwr lleol fod ar gael iddynt:"
-
-#: standalone/scannerdrake:733 standalone/scannerdrake:883
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Rhowch enw'r gwesteiwr neu'r cyfeiriad IP.\n"
-
-#: standalone/scannerdrake:744 standalone/scannerdrake:894
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "Mae'r gwesteiwr ar y rhestr yn barod, does dim modd ei ychwanegu.\n"
-
-#: standalone/scannerdrake:799
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Defnyddiwch o sganwyr pell"
-
-#: standalone/scannerdrake:800
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "Dyma'r cyfrifiaduron ddylai'r sganwyr fod ar gael:"
-
-#: standalone/scannerdrake:957
-#, 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 ""
-"Mae angen gosod saned i rannu sganiwr(wyr) lleol.\n"
-"\n"
-"Hoffech chi osod pecyn saned?"
-
-#: standalone/scannerdrake:961 standalone/scannerdrake:965
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "Ni fydd eich sganiwr(sganwyr) ar gael ar y rhwydwaith"
-
-#: standalone/service_harddrake:113
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "Cafodd rhai dyfeisiau yn nosbarth caledwedd\"%s\" eu tynnu:\n"
-
-#: standalone/service_harddrake:114
-#, c-format
-msgid "- %s was removed\n"
-msgstr "- %s wedi ei dynnu\n"
-
-#: standalone/service_harddrake:117
-#, c-format
-msgid "Some devices were added: %s\n"
-msgstr "Ychwanegwyd rhai dyfeisiau: %s\n"
-
-#: standalone/service_harddrake:118
-#, c-format
-msgid "- %s was added\n"
-msgstr "- %s wedi ei ychwanegu\n"
-
-#: standalone/service_harddrake:235
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "Canfod caledwedd ar waith"
-
-#: standalone/service_harddrake_confirm:7
-#, c-format
-msgid "Hardware changes in \"%s\" class (%s seconds to answer)"
-msgstr "Newid caledwedd yn nosbarth \"%s\" (%s eiliad am ateb)"
-
-#: standalone/service_harddrake_confirm:8
-#, c-format
-msgid "Do you want to run the appropriate config tool?"
-msgstr "Ydych chi redeg yr offeryn ffurfweddu priodol?"
-
-#: steps.pm:14
-#, c-format
-msgid "Language"
-msgstr "Iaith"
-
-#: steps.pm:15
-#, c-format
-msgid "License"
-msgstr "Trwydded"
-
-#: steps.pm:16
-#, c-format
-msgid "Configure mouse"
-msgstr "Ffurfweddu llygoden"
-
-#: steps.pm:17
-#, c-format
-msgid "Hard drive detection"
-msgstr "Canfod disg caled"
-
-#: steps.pm:18
-#, c-format
-msgid "Select installation class"
-msgstr "Dewis dosbarth gosod"
-
-#: steps.pm:19
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Dewis eich bysellfwrdd"
-
-#: steps.pm:22
-#, c-format
-msgid "Format partitions"
-msgstr "Fformatio rhaniadau"
-
-#: steps.pm:23
-#, c-format
-msgid "Choose packages to install"
-msgstr "Dewis pecynnau i'w gosod"
-
-#: steps.pm:24
-#, c-format
-msgid "Install system"
-msgstr "Gosod y system"
-
-#: steps.pm:25
-#, c-format
-msgid "Administrator password"
-msgstr "Cyfrinair y gweinyddwr"
-
-#: steps.pm:26
-#, c-format
-msgid "Add a user"
-msgstr "Ychwanegu defnyddiwr"
-
-#: steps.pm:27
-#, c-format
-msgid "Configure networking"
-msgstr "Ffurfweddu rhwydwaith"
-
-#: steps.pm:28
-#, c-format
-msgid "Install bootloader"
-msgstr "Gosod cychwynnwr"
-
-#: steps.pm:29
-#, c-format
-msgid "Configure X"
-msgstr "Ffurfweddu X"
-
-#: steps.pm:31
-#, c-format
-msgid "Configure services"
-msgstr "Ffurfweddu gwasanaethau"
-
-#: steps.pm:32
-#, c-format
-msgid "Install updates"
-msgstr "Diweddaru"
-
-#: steps.pm:33
-#, c-format
-msgid "Exit install"
-msgstr "Gorffen"
-
-#: ugtk2.pm:899
+#: ugtk2.pm:788
#, c-format
msgid "Is this correct?"
msgstr "Ydi hyn yn gywir?"
-#: ugtk2.pm:959
+#: ugtk2.pm:848
#, c-format
msgid "No file chosen"
msgstr "Heb ddewis ffeil"
-#: ugtk2.pm:961
+#: ugtk2.pm:850
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Rydych wedi dewis ffeil, nid cyfeiriadur"
-#: ugtk2.pm:963
+#: ugtk2.pm:852
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Rydych wedi dewis cyfeiriadur, nid ffeil"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such directory"
msgstr "Dim cyfeiriadur o'r fath ar gael"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such file"
msgstr "Dim ffeil o'r fath ar gael"
-#: ugtk2.pm:1046
+#: ugtk2.pm:933
#, c-format
msgid "Expand Tree"
msgstr "Estyn y goeden"
-#: ugtk2.pm:1047
+#: ugtk2.pm:934
#, c-format
msgid "Collapse Tree"
msgstr "Cau'r goeden"
-#: ugtk2.pm:1048
+#: ugtk2.pm:935
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "Newid rhwng gwastad a'r grŵp wedi ei ddidoli"
@@ -26992,2046 +6771,23 @@ msgstr ""
msgid "Installation failed"
msgstr "Methodd y gosod"
-#~ msgid ""
-#~ "Copyright (C) 2001-2002 by Mandriva \n"
-#~ "\n"
-#~ "\n"
-#~ " DUPONT Sebastien (original version)\n"
-#~ "\n"
-#~ " CHAUMETTE Damien <dchaumette@mandriva.com>\n"
-#~ "\n"
-#~ " VIGNAUD Thierry <tvignaud@mandriva.com>"
-#~ msgstr ""
-#~ "Hawlfraint (C) 2001-2002 Mandriva \n"
-#~ "\n"
-#~ "\n"
-#~ " DUPONT Sebastien sdupont (fersiwn wreiddiol)\n"
-#~ "\n"
-#~ " CHAUMETTE Damien<dchaumette@mandriva.com\n"
-#~ "\n"
-#~ " VIGNAUD Thierry <tvignaud@mandriva.com>"
-
-#~ msgid "click here if you are sure."
-#~ msgstr "cliciwch yma os ydych yn siŵr."
-
-#~ msgid "here if no."
-#~ msgstr "yma os nad."
-
-#~ msgid "Remove List"
-#~ msgstr "Rhestr Tynnu"
-
-#~ msgid "/_Upload the hardware list"
-#~ msgstr "/_Llwytho'r rhestr caledwedd"
-
-#~ msgid "Upload the hardware list"
-#~ msgstr "Llwytho'r rhestr caledwedd"
-
-#~ msgid "Account:"
-#~ msgstr "Cyfrif:"
-
-#~ msgid "Hostname:"
-#~ msgstr "Enw Gwesteiwr:"
-
-#, fuzzy
-#~ msgid "Cancel setup"
-#~ msgstr "Diddymu"
-
-#~ msgid ""
-#~ " - Create Etherboot Enabled Boot Images:\n"
-#~ " \tTo boot a kernel via etherboot, a special kernel/initrd image "
-#~ "must be created.\n"
-#~ " \tmkinitrd-net does much of this work and drakTermServ is just a "
-#~ "graphical \n"
-#~ " \tinterface to help manage/customize these images. To create the "
-#~ "file \n"
-#~ " \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as "
-#~ "an include in \n"
-#~ " \tdhcpd.conf, you should create the etherboot images for at least "
-#~ "one full kernel."
-#~ msgstr ""
-#~ " - Creu Delwedd Cychwynnwr Galluogi Etherboot:\n"
-#~ " \t\tI gychwyn y cnewyllyn drwy etherboot, rhaid creu delwedd "
-#~ "cnewyllyn/initrd\n"
-#~ " \tarbennig. Mae tmkinitrd-net yn gwneud llawer o'r gwaith ac mae "
-#~ "drak TermServ yn \trhyngwyneb graffigol iddo "
-#~ "i gynorthwyo rheoli/addasu'r delweddau. I greu'r ffeil\n"
-#~ " \t/etc/dhcpd.conf.etherboot-pcimap.dylech greu'r ddelwedd "
-#~ "etherboot ar gyfer o leiaf un \tcnewyllyn llawn."
-
-#~ msgid ""
-#~ " - Maintain /etc/dhcpd.conf:\n"
-#~ " \tTo net boot clients, each client needs a dhcpd.conf entry, "
-#~ "assigning an IP \n"
-#~ " \taddress and net boot images to the machine. drakTermServ helps "
-#~ "create/remove \n"
-#~ " \tthese entries.\n"
-#~ "\t\t\t\n"
-#~ " \t(PCI cards may omit the image - etherboot will request the "
-#~ "correct image. \n"
-#~ "\t\t\tYou should also consider that when etherboot looks for the images, "
-#~ "it expects \n"
-#~ "\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk."
-#~ "nbi).\n"
-#~ "\t\t\t \n"
-#~ " \tA typical dhcpd.conf stanza to support a diskless client looks "
-#~ "like:"
-#~ msgstr ""
-#~ " - Cynnal /etc/dhcpd.conf:\n"
-#~ " \t\tIgychwyn cleient o'r rhyngrwyd mae pob cleient angen cofnod "
-#~ "dhcpd.conf ei hun, \t\tI ddynodi cyfeiriad IP a delwedd cychwyn "
-#~ "rhyngrwyd i'r peiriant. Mae drakTermServ\n"
-#~ " \t\tyn gallu gosod/tynnu rhain\n"
-#~ "\t\t\t\n"
-#~ " \t\t(Gall cardiau PCI hepgor y ddelwedd - bydd etherboot yn gofyn "
-#~ "am y ddelwedd gywir. Dylech\n"
-#~ " \t\thefyd ystyried pan fo etherboot yn chwilio am y ddelwedd, "
-#~ "bydd yn disgwyl enwau fel\n"
-#~ " \t\tboot-3c59x.nbi, yn lle boot-3c59x.2.4.19-16mdk.nbi).\n"
-#~ "\t\t\t \n"
-#~ " \t\tMae stanza dhcpd.conf arferol i gynnal cleient di-ddisg yn "
-#~ "edrych fel:"
-
-#~ msgid ""
-#~ " While you can use a pool of IP addresses, rather than setup a "
-#~ "specific entry for\n"
-#~ " a client machine, using a fixed address scheme facilitates using "
-#~ "the functionality\n"
-#~ " of client-specific configuration files that ClusterNFS provides.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#type' entry is only used by drakTermServ. Clients "
-#~ "can either be 'thin'\n"
-#~ " or 'fat'. Thin clients run most software on the server via "
-#~ "XDMCP, while fat clients run \n"
-#~ " most software on the client machine. A special inittab, %s is\n"
-#~ " written for thin clients. System config files xdm-config, kdmrc, "
-#~ "and gdm.conf are \n"
-#~ " modified if thin clients are used, to enable XDMCP. Since there "
-#~ "are security issues in \n"
-#~ " using XDMCP, hosts.deny and hosts.allow are modified to limit "
-#~ "access to the local\n"
-#~ " subnet.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#hdw_config' entry is also only used by drakTermServ. "
-#~ "Clients can either \n"
-#~ " be 'true' or 'false'. 'true' enables root login at the client "
-#~ "machine and allows local \n"
-#~ " hardware configuration of sound, mouse, and X, using the 'drak' "
-#~ "tools. This is enabled \n"
-#~ " by creating separate config files associated with the client's IP "
-#~ "address and creating \n"
-#~ " read/write mount points to allow the client to alter the file. "
-#~ "Once you are satisfied \n"
-#~ " with the configuration, you can remove root login privileges from "
-#~ "the client.\n"
-#~ "\t\t\t\n"
-#~ " Note: You must stop/start the server after adding or changing "
-#~ "clients."
-#~ msgstr ""
-#~ "\t\t\tEr bod modd defnyddio casgliad o gyfeiriadau IP, yn lle gosod "
-#~ "cofnod penodol ar\n"
-#~ "\t\t\t beiriant cleient, mae defnyddio cynllun cyfeiriad sefydlog yn "
-#~ "caniatáu defnyddio\n"
-#~ "\t\t\tnodweddion ffeiliau ffurfweddu cleient penodol mae ClusterNFS yn "
-#~ "darparu.\n"
-#~ "\t\t\t\n"
-#~ "\t\t\tSylwer: Mae'r cofnod \"#type\" yn cael ei ddefnyddio gan "
-#~ "drakTermServ yn unig. Clients can either be 'thin'\n"
-#~ " or 'fat'. Thin clients run most software on the server via "
-#~ "XDMCP, while fat clients run \n"
-#~ " most software on the client machine. A special inittab, %s is\n"
-#~ " written for thin clients. System config files xdm-config, kdmrc, "
-#~ "and gdm.conf are \n"
-#~ " modified if thin clients are used, to enable XDMCP. Since there "
-#~ "are security issues in \n"
-#~ " using XDMCP, hosts.deny and hosts.allow are modified to limit "
-#~ "access to the local\n"
-#~ " subnet.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#hdw_config' entry is also only used by drakTermServ. "
-#~ "Clients can either \n"
-#~ " be 'true' or 'false'. 'true' enables root login at the client "
-#~ "machine and allows local \n"
-#~ " hardware configuration of sound, mouse, and X, using the 'drak' "
-#~ "tools. This is enabled \n"
-#~ " by creating separate config files associated with the client's IP "
-#~ "address and creating \n"
-#~ " read/write mount points to allow the client to alter the file. "
-#~ "Once you are satisfied \n"
-#~ " with the configuration, you can remove root login privileges from "
-#~ "the client.\n"
-#~ "\t\t\t\n"
-#~ " Note: You must stop/start the server after adding or changing "
-#~ "clients."
-
-#~ msgid ""
-#~ " - Maintain /etc/exports:\n"
-#~ " \tClusternfs allows export of the root filesystem to diskless "
-#~ "clients. drakTermServ\n"
-#~ " \tsets up the correct entry to allow anonymous access to the root "
-#~ "filesystem from\n"
-#~ " \tdiskless clients.\n"
-#~ "\n"
-#~ " \tA typical exports entry for clusternfs is:\n"
-#~ " \t\t\n"
-#~ " \t/\t\t\t\t\t(ro,all_squash)\n"
-#~ " \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-#~ "\t\t\t\n"
-#~ " \tWith SUBNET/MASK being defined for your network."
-#~ msgstr ""
-#~ " - Maintain /etc/exports:\n"
-#~ " \tClusternfs allows export of the root filesystem to diskless "
-#~ "clients. drakTermServ\n"
-#~ " \tsets up the correct entry to allow anonymous access to the root "
-#~ "filesystem from\n"
-#~ " \tdiskless clients.\n"
-#~ "\n"
-#~ " \tA typical exports entry for clusternfs is:\n"
-#~ " \t\t\n"
-#~ " \t/\t\t\t\t\t(ro,all_squash)\n"
-#~ " \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-#~ "\t\t\t\n"
-#~ " \tWith SUBNET/MASK being defined for your network."
-
-#~ msgid ""
-#~ " - Maintain %s:\n"
-#~ " \tFor users to be able to log into the system from a diskless "
-#~ "client, their entry in\n"
-#~ " \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
-#~ " \thelps in this respect by adding or removing system users from "
-#~ "this file."
-#~ msgstr ""
-#~ " - Cynnal %s:\n"
-#~ " \t\tAr gyfer defnyddwyr sy'n gallu mewngofnodi i system o gleient "
-#~ "di ddisg, rhaid dyblygu eu cofnod \n"
-#~ " \t\t/etc/shadow yn %s. drakTermServ helps\n"
-#~ " \t\tyn yr achos hwn drwy ychwanegu neu dynnu defnyddwyr o'r ffeil."
-
-#~ msgid ""
-#~ " - Per client %s:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tdrakTermServ will help create these files."
-#~ msgstr ""
-#~ " - Cleient Unigol %s:\n"
-#~ " \t\tDrwy clusternfs, mae modd i bob cleient gael ei ffeiliau "
-#~ "ffurfweddiad ei hun\n"
-#~ " \t\tar system ffeiliau gwraidd y gweinydd. Drwy ganiatáu "
-#~ "ffurfweddiad caledwedd cleient,\n"
-#~ " \t\tbydd drakTermServ yn cynorthwyo i greu'r ffeiliau hyn."
-
-#~ msgid ""
-#~ " - Per client system configuration files:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tclients can customize files such as /etc/modules.conf, /etc/"
-#~ "sysconfig/mouse, \n"
-#~ " \t/etc/sysconfig/keyboard on a per-client basis.\n"
-#~ "\n"
-#~ " Note: Enabling local client hardware configuration does enable "
-#~ "root login to the terminal \n"
-#~ " server on each client machine that has this feature enabled. "
-#~ "Local configuration can be\n"
-#~ " turned back off, retaining the configuration files, once the "
-#~ "client machine is configured."
-#~ msgstr ""
-#~ " - Ffeiliau ffurfweddi system cleient unigol:\n"
-#~ " \t\tDrwy clusternfs, mae modd i bob cleient di-ddisg gael ei "
-#~ "ffeiliau ffurfweddu ei hun\n"
-#~ " \t\tar system ffeiliau gwraidd y gweinydd. Drwy ganiatáu "
-#~ "ffurfweddiad caledwedd \n"
-#~ " \tcleient lleol, mae modd addasu ffeiliau fel /etc/modules.conf, /"
-#~ "etc/sysconfig/mouse, \n"
-#~ " \t\t/etc/sysconfig/keyboard ar sail cleient.\n"
-#~ "\n"
-#~ " Sylw: Mae galluogi ffurfweddiad cleient lleol yn galluogi "
-#~ "mewngofnodi gwraidd i'r gweinydd\n"
-#~ " terfynell ar bob un o'ch peiriannau cleient sydd a'r nodwedd hon "
-#~ "wedi ei alluogi. Mae modd diffodd\n"
-#~ " ffurfweddiad lleol, cadw'r ffeiliau ffurfweddu, un waith mae'r "
-#~ "peiriant cleient wedi ei ffurfweddu"
-
-#~ msgid ""
-#~ " - /etc/xinetd.d/tftp:\n"
-#~ " \tdrakTermServ will configure this file to work in conjunction "
-#~ "with the images created\n"
-#~ " \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve "
-#~ "up the boot image to \n"
-#~ " \teach diskless client.\n"
-#~ "\n"
-#~ " \tA typical TFTP configuration file looks like:\n"
-#~ " \t\t\n"
-#~ " \tservice tftp\n"
-#~ "\t\t\t{\n"
-#~ " disable = no\n"
-#~ " socket_type = dgram\n"
-#~ " protocol = udp\n"
-#~ " wait = yes\n"
-#~ " user = root\n"
-#~ " server = /usr/sbin/in.tftpd\n"
-#~ " server_args = -s /var/lib/tftpboot\n"
-#~ " \t}\n"
-#~ " \t\t\n"
-#~ " \tThe changes here from the default installation are changing the "
-#~ "disable flag to\n"
-#~ " \t'no' and changing the directory path to /var/lib/tftpboot, "
-#~ "where mkinitrd-net\n"
-#~ " \tputs its images."
-#~ msgstr ""
-#~ " - /etc/xinetd.d/tftp:\n"
-#~ " \t\tBydd drakTermServ yn ffurfweddu'r ffeil i weithio ar y cyd "
-#~ "gyda delweddau a grëwyd gan\n"
-#~ " \t\tmkinitrd-net, a'r cofnodion yn /etc/dhcpd.conf, i "
-#~ "wasanaethu'r ddelwedd cychwyn i bob\n"
-#~ " \t\tcleient di-ddisg.\n"
-#~ "\n"
-#~ " \t\tMae ffeil ffurfweddu TFTP nodweddiadol yn edrych fel hyn:\n"
-#~ " \t\t\n"
-#~ " \tservice tftp\n"
-#~ "\t\t\t{\n"
-#~ " disable = no\n"
-#~ " socket_type = dgram\n"
-#~ " protocol = udp\n"
-#~ " wait = yes\n"
-#~ " user = root\n"
-#~ " server = /usr/sbin/in.tftpd\n"
-#~ " server_args = -s /var/lib/tftpboot\n"
-#~ " \t}\n"
-#~ " \t\t\n"
-#~ " \t\tMae'r newidiadau yma o'r gosodiad rhagosodedig yn newid y "
-#~ "faner analluogi i \n"
-#~ " \t\t'na' a newid llwybr cyfeiriadur i /var/lib/tftpboot, lle mae "
-#~ "mkinitrd-net\n"
-#~ " \t\tyn gosod ei ddelweddau."
-
-#~ msgid ""
-#~ " - Create etherboot floppies/CDs:\n"
-#~ " \tThe diskless client machines need either ROM images on the NIC, "
-#~ "or a boot floppy\n"
-#~ " \tor CD to initiate the boot sequence. drakTermServ will help "
-#~ "generate these\n"
-#~ " \timages, based on the NIC in the client machine.\n"
-#~ " \t\t\n"
-#~ " \tA basic example of creating a boot floppy for a 3Com 3c509 "
-#~ "manually:\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-#~ msgstr ""
-#~ " - Create etherboot floppies/CDs:\n"
-#~ " \tThe diskless client machines need either ROM images on the NIC, "
-#~ "or a boot floppy\n"
-#~ " \tor CD to initiate the boot sequence. drakTermServ will help "
-#~ "generate these\n"
-#~ " \timages, based on the NIC in the client machine.\n"
-#~ " \t\t\n"
-#~ " \tA basic example of creating a boot floppy for a 3Com 3c509 "
-#~ "manually:\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-
-#~ msgid "Configuration changed - restart clusternfs/dhcpd?"
-#~ msgstr "Newidiodd ffurfweddiad - ailgychwyn clusternfs/dhcpd?"
-
-#~ msgid ""
-#~ "The following media have been found and will be used during install: %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do you have a supplementary installation media to configure?"
-#~ msgstr ""
-#~ "Mae'r cyfrwng canlynol wedi eu canfod ac yn cael eu defnyddio yn ystod y "
-#~ "gosod: %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "A oes gennych unrhyw gyfrwng gosod arall i'w ffurfweddu?"
-
-#~ msgid "Create PXE images."
-#~ msgstr "Creu delwedd PXE"
-
-#~ msgid ""
-#~ "Allow an ordinary user to mount the file system. The\n"
-#~ "name of the mounting user is written to mtab so that he can unmount the "
-#~ "file\n"
-#~ "system again. This option implies the options noexec, nosuid, and nodev\n"
-#~ "(unless overridden by subsequent options, as in the option line\n"
-#~ "user,exec,dev,suid )."
-#~ msgstr ""
-#~ "Caniatáu i ddefnyddiwr cyffredin osod y system ffeil. Mae \n"
-#~ "enw'r defnyddiwr gosod yn cael ei ysgrifennu i mtab fel ei fod yn gallu "
-#~ "dadosod\n"
-#~ "y system ffeil eto. Mae'r dewis yn arwyddo dewisiadau noexec, nosuid, and "
-#~ "nodev\n"
-#~ "(ac oni bai ei fod wedi diystyru gan ddewisiadau dilynol, fel yn y "
-#~ "llinell dewis\n"
-#~ "user,exec,dev,suid )."
-
-#~ msgid "Unknown Model"
-#~ msgstr "Model anhysbys"
-
-#~ msgid ""
-#~ "Either with the newer HPLIP which allows printer maintenance through the "
-#~ "easy-to-use graphical application \"Toolbox\" and four-edge full-bleed on "
-#~ "newer PhotoSmart models "
-#~ msgstr ""
-#~ "Un ai gyda'r HPLIP diweddaraf sy'n caniatáu cynnal argraffydd drwy raglen "
-#~ "graffigol hawdd ei ddefnyddio \"Toolbox\" a phedair ymyl llif llawn ar "
-#~ "fodelau PhotoSmart diweddaraf."
-
-#~ msgid ""
-#~ "or with the older HPOJ which allows only scanner and memory card access, "
-#~ "but could help you in case of failure of HPLIP. "
-#~ msgstr ""
-#~ "neu gyda'r HPOJ blaenorol sy'n caniatau mynediad at sganiwr a cherdyn "
-#~ "cof, ond gall eich helpu os yw HPLIP yn methu."
-
-#~ msgid "HPOJ"
-#~ msgstr "HPOJ"
-
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3000/3200/3300/4345 with scanner, DeskJet 450, "
-#~ "Sony IJP-V100), an HP PhotoSmart or an HP LaserJet 2200?"
-#~ msgstr ""
-#~ "A yw eich argraffydd yn ddyfais amlbwrpas gan HP neu Sony (OfficeJet, "
-#~ "PSC, LaserJet 1100/1200/1220/3000/3200/3300/4345 gyda sganiwr, DeskJet "
-#~ "450, Sony IJP-V100), HP PhotoSmart neu HP LaserJet 2200?"
-
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Gosod pecynnau mtools..."
-
-#~ msgid "Photo memory card access on the %s will not be possible."
-#~ msgstr "Ni fydd mynediad i gerdyn cof ar %s yn bosib."
-
-#~ msgid "Scanning on your HP multi-function device"
-#~ msgstr "Sganio eich dyfais amlbwrpas HP"
-
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr "Mynediad i gerdyn cof ffoto ar eich dyfais HP amlbwrpas"
-
-#~ msgid "Printing/Scanning/Photo Cards on \"%s\""
-#~ msgstr "Argraffu/Sganio/Cardiau Llun ar \"%s\""
-
-#~ msgid "Printing/Scanning on \"%s\""
-#~ msgstr "Argraffu/Sganio ar \"%s\""
-
-#~ msgid "Printing/Photo Card Access on \"%s\""
-#~ msgstr "Argraffu/Mynediad Cardiau Llun ar \"%s\""
-
-#~ msgid ""
-#~ "Your multi-function device was configured automatically to be able to "
-#~ "scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to "
-#~ "specify the scanner when you have more than one) from the command line or "
-#~ "with the graphical interfaces \"xscanimage\" or \"xsane\". If you are "
-#~ "using the GIMP, you can also scan by choosing the appropriate point in "
-#~ "the \"File\"/\"Acquire\" menu. Call also \"man scanimage\" on the command "
-#~ "line to get more information.\n"
-#~ "\n"
-#~ "You do not need to run \"scannerdrake\" for setting up scanning on this "
-#~ "device, you only need to use \"scannerdrake\" if you want to share the "
-#~ "scanner on the network."
-#~ msgstr ""
-#~ "Mae eich dyfais aml bwrpas wedi cael ei ffurfweddu'n awtomatig i fedru "
-#~ "sganio. Mae modd i chi sganio gyda \"scanimage\" (\"scanimage -d hp:%s\" "
-#~ "i bennu pa un os oes gennych fwy nag un) o'r llinell orchymyn neu gyda "
-#~ "rhag wynebau graffigol \"xscanimage\" neu \"xsane\". Os ydych yn "
-#~ "defnyddio GIMP, gallwch sganio hefyd, drwy ddewis y man priodol yn y "
-#~ "ddewislen \"Ffeil\"/\"Cipio\". Galwch hefyd \"man scanimage\" ar y "
-#~ "llinell orchymyn i dderbyn mwy o wybodaeth.\n"
-#~ "\n"
-#~ "Peidiwch defnyddio \"scannerdrake\" ar gyfer gosod scanio ar y ddyfais "
-#~ "hon, dim ond defnyddio \"scannerdrake\" os ydych am rannu'r sganiwr ar y "
-#~ "rhwydwaith."
-
-#~ msgid ""
-#~ "Your printer was configured automatically to give you access to the photo "
-#~ "card drives from your PC. Now you can access your photo cards using the "
-#~ "graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -"
-#~ "> \"MTools File Manager\") or the command line utilities \"mtools"
-#~ "\" (enter \"man mtools\" on the command line for more info). You find the "
-#~ "card's file system under the drive letter \"p:\", or subsequent drive "
-#~ "letters when you have more than one HP printer with photo card drives. In "
-#~ "\"MtoolsFM\" you can switch between drive letters with the field at the "
-#~ "upper-right corners of the file lists."
-#~ msgstr ""
-#~ "Mae eich argraffydd wedi ei ffurfweddu'n awtomatig i roi mynediad i chi "
-#~ "i'r gyrrwr cerdyn llun o’ch cyfrifiadur. Mae modd i chi gael mynediad at "
-#~ "eich cardiau llun drwy'r rhaglen graffigol \"MtoolsFM\" (Dewislen: "
-#~ "\"Rhaglenni\" -> \"Offer ffeil\" -> \"Rheolwr Ffeiliau MTools\") neu ar y "
-#~ "llinell orchymyn: \"mtools\" (\"man mtools\" am ragor o wybodaeth) Bydd "
-#~ "ys system o dan yrrwr \"p\", neu lythrennau canlynol pan fydd gennych fwy "
-#~ "nag un argraffydd HP gyda gyrwyr cerdyn llun. Yn _MToolsFM\" mae modd "
-#~ "newid rhwng llythrennau gyrwyr drwy'r maes ar ben uchaf de'r rhestr."
-
-#~ msgid "Custom setup/crontab entry:"
-#~ msgstr "Gosodiad addasu/cofnod crontab:"
-
-#~ msgid "Note that currently all 'net' media also use the hard drive."
-#~ msgstr "Sylwer bod yr holl gyfrwng 'gwe' yn defnyddio'r ddisg galed."
-
-#~ msgid ""
-#~ "Before installing any fonts, be sure that you have the right to use and "
-#~ "install them on your system.\n"
-#~ "\n"
-#~ "-You can install the fonts the normal way. In rare cases, bogus fonts may "
-#~ "hang up your X Server."
-#~ msgstr ""
-#~ "Cyn gosod unrhyw ffontiau, gwnewch yn siŵr bod gennych yr hawl i'w "
-#~ "defnyddio a'u gosod ar eich system.\n"
-#~ "\n"
-#~ "- Gallwch osod y ffontiau yn y dull arferol. Mewn achosion prin, gall "
-#~ "ffontiau ffug rewi eich Gweinydd X."
-
-#~ msgid ""
-#~ "%s cannot be displayed \n"
-#~ ". No Help entry of this type\n"
-#~ msgstr ""
-#~ "Methu dangos %s \n"
-#~ ". Dim cofnod Cymorth o'r fath\n"
-
-#~ msgid ""
-#~ "\n"
-#~ "Please check all options that you need.\n"
-#~ msgstr ""
-#~ "\n"
-#~ "Gwiriwch bob dewis sydd angen arnoch.\n"
-
-#~ msgid ""
-#~ "These options can backup and restore all files in your /etc directory.\n"
-#~ msgstr ""
-#~ "Mae'r dewisiadau hyn yn gallu cadw wrth gefn ac adfer pob ffeil yn eich "
-#~ "cyfeiriadur /etc.\n"
-
-#~ msgid ""
-#~ "With this option you will be able to restore any version\n"
-#~ " of your /etc directory."
-#~ msgstr ""
-#~ "Gyda’r dewis hwn gallwch adfer unrhyw fersiwn\n"
-#~ "o'ch cyfeiriadur /etc."
-
-#~ msgid "http://www.mandrivalinux.com/en/errata.php3"
-#~ msgstr "http://www.mandrivalinux.com/en/errata.php3"
-
-#~ msgid ""
-#~ "Kerberos is a secure system for providing network authentication services."
-#~ msgstr ""
-#~ "Mae Kerberos yn system ddiogel ar gyfer darparu gwasanaethau dilysu "
-#~ "rhwydwaith."
-
-#~ msgid "Use Idmap for store UID/SID "
-#~ msgstr "Defnyddio Idmap i storio UID/SID "
-
-#~ msgid "Default Idmap "
-#~ msgstr "Idmap rhagosodedig"
-
-#~ msgid "Please wait, preparing installation..."
-#~ msgstr "Arhoswch, paratoi i osod"
-
-#~ msgid "Installing package %s"
-#~ msgstr "Gosod pecynnau %s"
-
-#~ msgid "<b>What is Mandriva Linux?</b>"
-#~ msgstr "<b>Beth yw Mandriva Linux?</b>"
-
-#~ msgid "Welcome to <b>Mandriva Linux</b>!"
-#~ msgstr "Croeso i <b>Mandriva Linux</b>!"
-
-#~ msgid ""
-#~ "Mandriva Linux is a <b>Linux distribution</b> that comprises the core of "
-#~ "the system, called the <b>operating system</b> (based on the Linux "
-#~ "kernel) together with <b>a lot of applications</b> meeting every need you "
-#~ "could even think of."
-#~ msgstr ""
-#~ "Mae Mandriva Linux yn <b>ddosbarthiad Linux</b> sy'n cynnwys y system "
-#~ "graidd, sef, <b>system weithredu</b> (yn seiliedig ar gnewyllyn Linux) "
-#~ "ynghyd â <b> llawer o raglenni</b> sy'n darparu ar gyfer pob angen."
-
-#~ msgid ""
-#~ "Mandriva Linux is the most <b>user-friendly</b> Linux distribution today. "
-#~ "It is also one of the <b>most widely used</b> Linux distributions "
-#~ "worldwide!"
-#~ msgstr ""
-#~ "Mandriva Linux yw'r dosbarthiad Linux mwyaf <b>cyfeillgar</b> heddiw. "
-#~ "Mae'n un o'r dosbarthiadau mwyaf <b>poblogaidd</b> o Linux ar draws y byd "
-#~ "i gyd!"
-
-#~ msgid "<b>Open Source</b>"
-#~ msgstr "<b>Cod agored</b>"
-
-#~ msgid "Welcome to the <b>world of open source</b>!"
-#~ msgstr "Croeso i <b>fyd Cod Agored</b>!"
-
-#~ msgid ""
-#~ "Mandriva Linux is committed to the open source model. This means that "
-#~ "this new release is the result of <b>collaboration</b> between "
-#~ "<b>Mandriva's team of developers</b> and the <b>worldwide community</b> "
-#~ "of Mandriva Linux contributors."
-#~ msgstr ""
-#~ "Mae Mandriva Linux yn ymroddedig i fodel cod agored. Mae'n golygu fod y "
-#~ "rhyddhad newydd yn ganlyniad <b>cydweithrediad</b> rhwng <b>tîm o "
-#~ "ddatblygwyr Mandriva</b> a <b>chyfranwyr cymuned byd eang</b> cyfranwyr "
-#~ "Mandriva Linux."
-
-#~ msgid ""
-#~ "We would like to <b>thank</b> everyone who participated in the "
-#~ "development of this latest release."
-#~ msgstr ""
-#~ "Hoffwn <b>ddiolch</b> i bawb sydd wedi cymryd rhan yn natblygiad y "
-#~ "fersiwn diweddaraf."
-
-#~ msgid "<b>The GPL</b>"
-#~ msgstr "<b>Y drwydded GPL</b>"
-
-#~ msgid ""
-#~ "Most of the software included in the distribution and all of the Mandriva "
-#~ "Linux tools are licensed under the <b>General Public License</b>."
-#~ msgstr ""
-#~ "Mae'r rhan fwyaf o'r feddalwedd sydd wedi ei gynnwys ynghyd â holl offer "
-#~ "Mandriva Linux wedi eu trwyddedu o dan y <b>Drwydded Gyhoeddus "
-#~ "Cyffredinol (GPL)</b>"
-
-#~ msgid ""
-#~ "The GPL is at the heart of the open source model; it grants everyone the "
-#~ "<b>freedom</b> to use, study, distribute and improve the software any way "
-#~ "they want, provided they make the results available."
-#~ msgstr ""
-#~ "Y GPL yw craidd y model cod agored, mae'n caniatáu i bawb y <b>rhyddid</"
-#~ "b> i ddefnyddio, astudio, dosbarthu a gwella meddalwedd mewn unrhyw "
-#~ "ffordd, cyn belled â bod y canlyniad ar gael."
-
-#~ msgid ""
-#~ "The main benefit of this is that the number of developers is virtually "
-#~ "<b>unlimited</b>, resulting in <b>very high quality</b> software."
-#~ msgstr ""
-#~ "Y brif fantais i hyn yw bod y nifer o ddatblygwyr yn <b>ddiderfyn</b>, yn "
-#~ "golygu meddalwedd o<b>safon uchel iawn</b>."
-
-#~ msgid "<b>Join the Community</b>"
-#~ msgstr "<b>Ymunwch â chymuned</b>"
-
-#~ msgid ""
-#~ "Mandriva Linux has one of the <b>biggest communities</b> of users and "
-#~ "developers. The role of such a community is very wide, ranging from bug "
-#~ "reporting to the development of new applications. The community plays a "
-#~ "<b>key role</b> in the Mandriva Linux world."
-#~ msgstr ""
-#~ "Mae gan Mandriva Linux un o'r <b>cymunedau mwyaf</b> o ddefnyddwyr a "
-#~ "datblygwyr. Mae rôl y gymuned yn eang iawn yn ymestyn o adrodd ar wallau "
-#~ "i ddatblygu rhaglenni newydd. Mae'r gymuned yn chwarae <b>rhan allweddol</"
-#~ "b> ym myd Mandriva Linux."
-
-#~ msgid ""
-#~ "To <b>learn more</b> about our dynamic community, please visit <b>www."
-#~ "mandrivalinux.com</b> or directly <b>www.mandrivalinux.com/en/cookerdevel."
-#~ "php3</b> if you would like to get <b>involved</b> in the development."
-#~ msgstr ""
-#~ "I <b>ddysgu mwy</b> am ein cymuned egniol, ewch i <b>www.mandrivalinux."
-#~ "com</b> neu yn uniongyrchol at <b>www.mandrivalinux.com/ên/cookerdevel."
-#~ "php3</b> os hoffech <b>ymuno</b> â'r datblygiadau."
-
-#~ msgid "<b>Download Version</b>"
-#~ msgstr "<b>Fersiwn Llwytho</b>"
-
-#~ msgid ""
-#~ "You are now installing <b>Mandriva Linux Download</b>. This is the free "
-#~ "version that Mandriva wants to keep <b>available to everyone</b>."
-#~ msgstr ""
-#~ "Rydych yn gosod <b> Mandriva Linux Llwytho i Lawr</b>. Hwn yw'r fersiwn "
-#~ "rhydd mae Mandriva am ei ddarparu <b>ar gael i bawb</b>."
-
-#~ msgid ""
-#~ "The Download version <b>cannot include</b> all the software that is not "
-#~ "open source. Therefore, you will not find in the Download version:"
-#~ msgstr ""
-#~ "Nid yw'r fersiwn Llwytho i Lawr <b> yn gallu cynnwys</b> yr holl "
-#~ "feddalwedd nad yw'n god agored. Felly bydd y canlynol ddim yn y fersiwn "
-#~ "Llwytho i Lawr:"
-
-#~ msgid ""
-#~ "\t* <b>Proprietary drivers</b> (such as drivers for NVIDIA®, ATI™, etc.)."
-#~ msgstr "\t* <b>Gyrwyr perchnogol</b> (megis gyrwyr NVIDIA®, ATI™, ac ati.)."
-
-#~ msgid ""
-#~ "\t* <b>Proprietary software</b> (such as Acrobat® Reader®, RealPlayer®, "
-#~ "Flash™, etc.)."
-#~ msgstr ""
-#~ "\t* <b>Meddalwedd perchnogol</b> (megis Acrobat® Reader®, RealPlayer®, "
-#~ "Flash™, ac ati.)."
-
-#~ msgid ""
-#~ "You will not have access to the <b>services included</b> in the other "
-#~ "Mandriva products either."
-#~ msgstr ""
-#~ "Ni fydd gennych fynediad i'r <b>gwasanaethau ynglwm</b> yn y cynnyrch "
-#~ "Mandriva eraill ychwaith."
-
-#~ msgid "<b>Discovery, Your First Linux Desktop</b>"
-#~ msgstr "<b>Discovery, Eich Bwrdd Gwaith Linux Cyntaf</b>"
-
-#~ msgid "You are now installing <b>Mandriva Linux Discovery</b>."
-#~ msgstr "Rydych yn gosod <b>Mandriva Linux Discovery</b>"
-
-#~ msgid ""
-#~ "Discovery is the <b>easiest</b> and most <b>user-friendly</b> Linux "
-#~ "distribution. It includes a hand-picked selection of <b>premium software</"
-#~ "b> for office, multimedia and Internet activities. Its menu is task-"
-#~ "oriented, with a single application per task."
-#~ msgstr ""
-#~ "Discovery yw'r fersiwn <b>hawsaf</b> a mwyaf <b>cyfeillgar</b> i'r "
-#~ "defnyddiwr. Mae'n cynnwys y <b>meddalwedd orau</b> sydd wedi ei ddewis yn "
-#~ "ofalus ar gyfer defnydd swyddfa, aml-gyfrwng a gweithgaredd rhyngrwyd. "
-#~ "Mae ei ddewislenni yn cylchdroi o amgylch tasgau gydag un rhaglen i bob "
-#~ "tasg."
-
-#~ msgid "<b>PowerPack, The Ultimate Linux Desktop</b>"
-#~ msgstr "<b>PowerPack, Y Bwrdd Gwaith Linux Gorau</b>"
-
-#~ msgid "You are now installing <b>Mandriva Linux PowerPack</b>."
-#~ msgstr "Rydych yn gosod <b>Mandriva Linux PowerPack</b>"
-
-#~ msgid ""
-#~ "PowerPack is Mandriva's <b>premier Linux desktop</b> product. PowerPack "
-#~ "includes <b>thousands of applications</b> - everything from the most "
-#~ "popular to the most advanced."
-#~ msgstr ""
-#~ "PowerPack yw <b>prif gynnyrch bwrdd gwaith Linux</b> Mandriva. Mae "
-#~ "PowerPack yn cynnwys <b>miloedd o raglenni</b> - popeth o'r mwyaf "
-#~ "poblogaidd i'r mwyaf technegol."
-
-#~ msgid "<b>PowerPack+, The Linux Solution for Desktops and Servers</b>"
-#~ msgstr "<b>PowerPack+, Ateb Linux ar gyfer Byrddau gwaith a Gweinyddion</b>"
-
-#~ msgid "You are now installing <b>Mandriva Linux PowerPack+</b>."
-#~ msgstr "Rydych yn gosod <b>Mandriva Linux PowerPack+</b>."
-
-#~ msgid ""
-#~ "PowerPack+ is a <b>full-featured Linux solution</b> for small to medium-"
-#~ "sized <b>networks</b>. PowerPack+ includes thousands of <b>desktop "
-#~ "applications</b> and a comprehensive selection of world-class <b>server "
-#~ "applications</b>."
-#~ msgstr ""
-#~ "PowerPack+ <b>yr ateb Linux llawn</b> ar gyfer <b>rhwydweithiau</b> bach "
-#~ "a chanolig. Mae PowerPack+ yn cynnwys miloedd o <b>raglenni bwrdd gwaith</"
-#~ "b> a dewis cynhwysfawr o'r <b>raglenni gweinydd</b> mwyaf blaengar."
-
-#~ msgid "<b>Mandriva Products</b>"
-#~ msgstr "<b>Cynnyrch Mandriva</b>"
-
-#~ msgid ""
-#~ "<b>Mandriva</b> has developed a wide range of <b>Mandriva Linux</b> "
-#~ "products."
-#~ msgstr ""
-#~ "Mae <b>Mandriva</b> wedi datblygu ystod eang o gynnyrch <b>Mandriva "
-#~ "Linux</b>."
-
-#~ msgid "The Mandriva Linux products are:"
-#~ msgstr "Cynnyrch Mandriva Linux yw:"
-
-#~ msgid "\t* <b>Discovery</b>, Your First Linux Desktop."
-#~ msgstr "\t* <b>Discovery</b>, Eich Bwrdd Gwaith Linux Cyntaf."
-
-#~ msgid "\t* <b>PowerPack</b>, The Ultimate Linux Desktop."
-#~ msgstr "\t* <b>PowerPack</b>, Y Bwrdd Gwaith Linux Gorau."
-
-#~ msgid "\t* <b>PowerPack+</b>, The Linux Solution for Desktops and Servers."
-#~ msgstr ""
-#~ "\t* <b>PowerPack+</b>, Ateb Linux ar gyfer Byrddau Gwaith a Gweinyddion."
-
-#~ msgid ""
-#~ "\t* <b>Mandriva Linux for x86-64</b>, The Mandriva Linux solution for "
-#~ "making the most of your 64-bit processor."
-#~ msgstr ""
-#~ "\t* <b>Mandriva Linux ar gyfer x86-64</b>, Ateb Mandriva Linux i wneud y "
-#~ "gorau o'ch prosesydd 64-did."
-
-#~ msgid "<b>Mandriva Products (Nomad Products)</b>"
-#~ msgstr "<b>Cynnyrch Mandriva (Cynnyrch Nomad)</b>"
-
-#~ msgid ""
-#~ "Mandriva has developed two products that allow you to use Mandriva Linux "
-#~ "<b>on any computer</b> and without any need to actually install it:"
-#~ msgstr ""
-#~ "Mae Mandriva Linux wedi datblygu dau gynnyrch sy'n caniatáu i chi "
-#~ "ddefnyddio Mandriva Linux <b>ar unrhyw gyfrifiadur</b> heb fod angen ei "
-#~ "osod:"
-
-#~ msgid ""
-#~ "\t* <b>Move</b>, a Mandriva Linux distribution that runs entirely from a "
-#~ "bootable CD-ROM."
-#~ msgstr ""
-#~ "\t* <b>Move</b>, dosbarthiad Mandriva Linux sy'n rhedeg yn llwyr o CD-ROM "
-#~ "byw."
-
-#~ msgid ""
-#~ "\t* <b>GlobeTrotter</b>, a Mandriva Linux distribution pre-installed on "
-#~ "the ultra-compact “LaCie Mobile Hard Drive”."
-#~ msgstr ""
-#~ "\t* <b>GlobeTrotter</b>, dosbarthiad Mandriva Linux sydd wedi ei osod yn "
-#~ "barod ar “LaCie Mobile Hard Drive” bychan iawn"
-
-#~ msgid "<b>Mandriva Products (Professional Solutions)</b>"
-#~ msgstr "<b>Cynnyrch Mandriva (Atebion Proffesiynol)</b>"
-
-#~ msgid ""
-#~ "Below are the Mandriva products designed to meet the <b>professional "
-#~ "needs</b>:"
-#~ msgstr ""
-#~ "Isod mae cynnyrch Mandriva sydd wedi eu cynllunio i ateb <b>anghenion "
-#~ "proffesiynol</b>:"
-
-#~ msgid ""
-#~ "\t* <b>Corporate Desktop</b>, The Mandriva Linux Desktop for Businesses."
-#~ msgstr ""
-#~ "\t* <b>Y Bwrdd Gwaith Corfforaethol</b>, Bwrdd Gwaith Mandriva Linux ar "
-#~ "gyfer Busnesau."
-
-#~ msgid "\t* <b>Corporate Server</b>, The Mandriva Linux Server Solution."
-#~ msgstr "\t* <b>Y Gweinydd Corfforaethol</b>, Ateb Gweinydd Mandriva Linux."
-
-#~ msgid ""
-#~ "\t* <b>Multi-Network Firewall</b>, The Mandriva Linux Security Solution."
-#~ msgstr ""
-#~ "\t* <b>Mur Cadarn Aml-Rhwydwaith</b>, Ateb Diogelwch Mandriva Linux."
-
-#~ msgid "<b>The KDE Choice</b>"
-#~ msgstr "<b>Dewis KDE,</b>"
-
-#~ msgid ""
-#~ "With your Discovery, you will be introduced to <b>KDE</b>, the most "
-#~ "advanced and user-friendly <b>graphical desktop environment</b> available."
-#~ msgstr ""
-#~ "Gyda'ch pecyn Discovery, byddwch yn cael eich cyflwyno i <b>KDE</b>, yr "
-#~ "<b>amgylchedd bwrdd gwaith graffigol</b> mwyaf blaengar a chyfeillgar, "
-#~ "sydd ar gael."
-
-#~ msgid ""
-#~ "KDE will make your <b>first steps</b> with Linux so <b>easy</b> that you "
-#~ "will not ever think of running another operating system!"
-#~ msgstr ""
-#~ "Bydd KDE yn gwneud eich <b>camau cyntaf</b> gyda Linux mor <b>hawdd</b> "
-#~ "byddwch wrth eich bodd!"
-
-#~ msgid ""
-#~ "KDE also includes a lot of <b>well integrated applications</b> such as "
-#~ "Konqueror, the web browser and Kontact, the personal information manager."
-#~ msgstr ""
-#~ "Mae KDE hefyd yn cynnwys llawer o <b>raglenni wedi eu hintegreiddio’n "
-#~ "dda</b> megis Konqueror, y porwr gwe a Kontact, y rheolwr gwybodaeth "
-#~ "bersonol."
-
-#~ msgid "<b>Choose your Favorite Desktop Environment</b>"
-#~ msgstr "<b>Dewiswch eich Hoff Amgylchedd Bwrdd Gwaith</b>"
-
-#~ msgid ""
-#~ "With PowerPack, you will have the choice of the <b>graphical desktop "
-#~ "environment</b>. Mandriva has chosen <b>KDE</b> as the default one."
-#~ msgstr ""
-#~ "Gyda PowerPack, bydd gennych y dewis o <b>amgylchedd bwrdd gwaith "
-#~ "graffigol</b>. Mae Mandriva wedi dewis <b>KDE</b> fel yr un rhagosodedig."
-
-#~ msgid ""
-#~ "KDE is one of the <b>most advanced</b> and <b>user-friendly</b> graphical "
-#~ "desktop environment available. It includes a lot of integrated "
-#~ "applications."
-#~ msgstr ""
-#~ "KDE yw un o'r amgylcheddau bwrdd gwaith graffigol <b>mwyaf blaengar</b> a "
-#~ "<b>chyfeillgar</b> sydd ar gael. Mae'n cynnwys llawer o raglenni "
-#~ "integredig."
-
-#~ msgid ""
-#~ "But we advise you to try all available ones (including <b>GNOME</b>, "
-#~ "<b>IceWM</b>, etc.) and pick your favorite."
-#~ msgstr ""
-#~ "Ond cewch arbrofi gyda'r cyfan (gan gynnwys <b> GNOME</b>, <b>IceWM</b>, "
-#~ "ac ati) a dewis eich ffefryn."
-
-#~ msgid ""
-#~ "With PowerPack+, you will have the choice of the <b>graphical desktop "
-#~ "environment</b>. Mandriva has chosen <b>KDE</b> as the default one."
-#~ msgstr ""
-#~ "Gyda PowerPack+, mae gennych y dewis o <b>amgylcheddau bwrdd gwaith "
-#~ "graffigol</b>. Mae Mandriva wedi dewis <b>KDE</b> fel y rhagosodedig."
-
-#~ msgid "<b>OpenOffice.org</b>"
-#~ msgstr "<b>OpenOffice.org</b>"
-
-#~ msgid "With Discovery, you will discover <b>OpenOffice.org</b>."
-#~ msgstr "With Discovery, you will discover <b>OpenOffice.org</b>."
-
-#~ msgid ""
-#~ "It is a <b>full-featured office suite</b> that includes word processor, "
-#~ "spreadsheet, presentation and drawing applications."
-#~ msgstr ""
-#~ "It is a <b>full-featured office suite</b> that includes word processor, "
-#~ "spreadsheet, presentation and drawing applications."
-
-#~ msgid ""
-#~ "OpenOffice.org can read and write most types of <b>Microsoft® Office</b> "
-#~ "documents such as Word, Excel and PowerPoint® files."
-#~ msgstr ""
-#~ "Mae OpenOffice.org yn gallu darllen ac ysgrifennu'r mathau mwyaf "
-#~ "cyffredin o ddogfennau <b>Microsoft® Office</b> megis Word, Excel a "
-#~ "PowerPoint®."
-
-#~ msgid "<b>Kontact</b>"
-#~ msgstr "<b>Kontact</b>"
-
-#~ msgid ""
-#~ "Discovery includes <b>Kontact</b>, the new KDE <b>groupware solution</b>."
-#~ msgstr ""
-#~ "Mae Discovery yn cynnwys <b>Kontact</b>, <b>ateb grwpwar</b> newydd KDE."
-
-#~ msgid ""
-#~ "More than just a full-featured <b>e-mail client</b>, Kontact also "
-#~ "includes an <b>address book</b>, a <b>calendar</b>, plus a tool for "
-#~ "taking <b>notes</b>!"
-#~ msgstr ""
-#~ "Yn fwy na <b>rhaglen e-bost</b> llawn, mae Kontact hefyd yn cynnwys "
-#~ "<b>llyfr cyfeiriadau</b>, a <b>chalendr</b>, yn ogystal ag offeryn i "
-#~ "gymryd <b>nodiadau</b>!"
-
-#~ msgid ""
-#~ "It is the easiest way to communicate with your contacts and to organize "
-#~ "your time."
-#~ msgstr ""
-#~ "Dyma'r ffordd hawsaf i gyfathrebu gyda'ch cysylltiadau a threfnu eich "
-#~ "amser."
-
-#~ msgid "<b>Surf the Internet</b>"
-#~ msgstr "<b>Crwydro'r Rhyngrwyd</b>"
-
-#~ msgid "Discovery will give you access to <b>every Internet resource</b>:"
-#~ msgstr "Bydd Discovery yn rhoi mynediad i <b>bob adnodd ar y We</b>:"
-
-#~ msgid "\t* Browse the <b>Web</b> with Konqueror."
-#~ msgstr "\t* Pori'r <b>We</b> gyda Konqueror."
-
-#~ msgid "\t* <b>Chat</b> online with your friends using Kopete."
-#~ msgstr "\t* <b>Sgwrsio</b> ar-lein gyda'ch ffrindiau drwy Kopete."
-
-#~ msgid "\t* <b>Transfer</b> files with KBear."
-#~ msgstr "\t* <b>Trosglwyddo</b> ffeiliau gyda KBear."
-
-#~ msgid "\t* ..."
-#~ msgstr "\t* ..."
-
-#~ msgid "<b>Enjoy our Multimedia Features</b>"
-#~ msgstr "<b>Mwynhewch y Nodweddion Amlgyfrwng</b>"
-
-#~ msgid "Discovery will also make <b>multimedia</b> very easy for you:"
-#~ msgstr "Bydd Discovery yn gwneud <b>aml-gyfrwng</b> yn hawdd iawn i chi:"
-
-#~ msgid "\t* Watch your favorite <b>videos</b> with Kaffeine."
-#~ msgstr "\t* Gwylio eich hoff <b>fideos</b> gyda Kaffeine."
-
-#~ msgid "\t* Listen to your <b>music files</b> with amaroK."
-#~ msgstr "\t* Gwrando ar eich <b>ffeiliau cerddoriaeth</b> gydag amaroK."
-
-#~ msgid "\t* Edit and create <b>images</b> with the GIMP."
-#~ msgstr "\t* Golygu a chreu <b>delweddau</b> gyda GIMP."
-
-#~ msgid "<b>Enjoy the Wide Range of Applications</b>"
-#~ msgstr "<b>Mwynhau'r Ystod Eang o Raglenni</b>"
-
-#~ msgid ""
-#~ "In the Mandriva Linux menu you will find <b>easy-to-use</b> applications "
-#~ "for <b>all of your tasks</b>:"
-#~ msgstr ""
-#~ "Yn newislen Mandriva Linux byddwch yn canfod rhaglenni <b>hawdd eu "
-#~ "defnyddio</b> ar gyfer <b>eich holl waith</b>:"
-
-#~ msgid ""
-#~ "\t* Create, edit and share office documents with <b>OpenOffice.org</b>."
-#~ msgstr ""
-#~ "\t* Creu, golygu a rhannu dogfennau swyddfa gydag <b>OpenOffice.org</b>"
-
-#~ msgid ""
-#~ "\t* Manage your personal data with the integrated personal information "
-#~ "suites <b>Kontact</b> and <b>Evolution</b>."
-#~ msgstr ""
-#~ "\t* Rheoli eich gwybodaeth bersonol gyda rhaglenni gwybodaeth bersonol "
-#~ "integredig (PIM) <b>Kontact</b> ac <b>Evolution</b>."
-
-#~ msgid "\t* Browse the web with <b>Mozilla</b> and <b>Konqueror</b>."
-#~ msgstr "\t* Pori'r We gyda <b>Gwe-lywiwr Mozilla</b> a <b>Konqueror</b>"
-
-#~ msgid "\t* Participate in online chat with <b>Kopete</b>."
-#~ msgstr "\t* Cymryd rhan mewn sgyrsiau ar-lein gyda <b>Kopete</b>"
-
-#~ msgid ""
-#~ "\t* Listen to your <b>audio CDs</b> and <b>music files</b>, watch your "
-#~ "<b>videos</b>."
-#~ msgstr ""
-#~ "\t* Gwrando ar eich <b>CDiau sain</b> a <b>ffeiliau cerddoriaeth</b>, "
-#~ "gwylio eich <b>fideos</b>."
-
-#~ msgid "\t* Edit and create images with the <b>GIMP</b>."
-#~ msgstr "\t* Golygu delweddau a ffotograffau gyda <b>The Gimp</b>"
-
-#~ msgid "<b>Development Environments</b>"
-#~ msgstr "<b>Amgylcheddau datblygu</b>"
-
-#~ msgid ""
-#~ "PowerPack gives you the best tools to <b>develop</b> your own "
-#~ "applications."
-#~ msgstr ""
-#~ "Mae PowerPack yn rhoi'r offer gorau i chi i <b>ddatblygu</b> eich "
-#~ "rhaglenni eich hun."
-
-#~ msgid ""
-#~ "You will enjoy the powerful, integrated development environment from KDE, "
-#~ "<b>KDevelop</b>, which will let you program in a lot of languages."
-#~ msgstr ""
-#~ "Byddwch yn gallu mwynhau'r amgylchedd datblygu integredig pwerus gan KDE, "
-#~ "<b>KDevelop</b>, sy'n caniatáu i chi raglenni mewn nifer o ieithoedd."
-
-#~ msgid ""
-#~ "PowerPack also ships with <b>GCC</b>, the leading Linux compiler and "
-#~ "<b>GDB</b>, the associated debugger."
-#~ msgstr ""
-#~ "Mae PowerPack hefyd yn cynnwys <b>GCC</b>, y crynhöwr Linux blaenaf a "
-#~ "<b>GDB</b>, y dadfygiwr cysylltiedig."
-
-#~ msgid "<b>Development Editors</b>"
-#~ msgstr "<b>Golygyddion Datblygu</b>"
-
-#~ msgid "PowerPack will let you choose between those <b>popular editors</b>:"
-#~ msgstr ""
-#~ "Mae PowerPack yn caniatáu i chi ddewis rhwng y <b>golygyddion poblogaidd</"
-#~ "b> hyn:"
-
-#~ msgid "\t* <b>Emacs</b>: a customizable and real time display editor."
-#~ msgstr "\t* <b>Emacs</b>: golygydd arddangos byw hawdd ei addasu"
-
-#~ msgid ""
-#~ "\t* <b>XEmacs</b>: another open source text editor and application "
-#~ "development system."
-#~ msgstr ""
-#~ "\t* <b>Xemacs</b>: golygydd cod agored arall a system datblygu meddalwedd"
-
-#~ msgid ""
-#~ "\t* <b>Vim</b>: an advanced text editor with more features than standard "
-#~ "Vi."
-#~ msgstr "Vim: golygydd testun uwch gyda mwy o nodweddion na'r Vi safonol"
-
-#~ msgid "<b>Development Languages</b>"
-#~ msgstr "<b>Ieithoedd Datblygu</b>"
-
-#~ msgid ""
-#~ "With all these <b>powerful tools</b>, you will be able to write "
-#~ "applications in <b>dozens of programming languages</b>:"
-#~ msgstr ""
-#~ "Gyda'r holl <b>offer pwerus</b>hyn, bydd modd i chi ysgrifennu rhaglenni "
-#~ "mewn <b>dwsinau o ieithoedd rhaglenni</b>:"
-
-#~ msgid "\t* The famous <b>C language</b>."
-#~ msgstr "\t* Yr enwog <b>iaith C</b>."
-
-#~ msgid "\t* Object oriented languages:"
-#~ msgstr "\t* Ieithoedd cyfeirio gwrthrych:"
-
-#~ msgid "\t\t* <b>C++</b>"
-#~ msgstr "\t\t* <b>C++</b>"
-
-#~ msgid "\t\t* <b>Java™</b>"
-#~ msgstr "\t\t* <b>Java™</b>"
-
-#~ msgid "\t* Scripting languages:"
-#~ msgstr "\t* Ieithoedd sgriptio"
-
-#~ msgid "\t\t* <b>Perl</b>"
-#~ msgstr "\t\t* <b>Perl</b>"
-
-#~ msgid "\t\t* <b>Python</b>"
-#~ msgstr "\t\t* <b>Python</b>"
-
-#~ msgid "\t* And many more."
-#~ msgstr "\t* Ac eraill."
-
-#~ msgid "<b>Development Tools</b>"
-#~ msgstr "<b>Offer Datblygu</b>"
-
-#~ msgid ""
-#~ "With the powerful integrated development environment <b>KDevelop</b> and "
-#~ "the leading Linux compiler <b>GCC</b>, you will be able to create "
-#~ "applications in <b>many different languages</b> (C, C++, Java™, Perl, "
-#~ "Python, etc.)."
-#~ msgstr ""
-#~ "Gydag amgylchedd datblygu integredig pwerus <b>KDevelop</b> â'r crynhöwr "
-#~ "Linux blaenaf <b>GCC</b>, bydd modd i chi greu rhaglenni mewn <b>nifer o "
-#~ "ieithoedd gwahanol </b> (C, C++, Java™, Perl, Python, ac ati)."
-
-#~ msgid "<b>Groupware Server</b>"
-#~ msgstr "<b>Gweinydd Grwpwar</b>"
-
-#~ msgid ""
-#~ "PowerPack+ will give you access to <b>Kolab</b>, a full-featured "
-#~ "<b>groupware server</b> which will, thanks to the client <b>Kontact</b>, "
-#~ "allow you to:"
-#~ msgstr ""
-#~ "Mae PowerPack+ yn rhoi mynediad i <b>Kolab</b>, <b>gweinydd grwpwar</b> "
-#~ "llawn, fydd, diolch i'r cleient <b>Kontact</b>, yn caniatáu i chi i:"
-
-#~ msgid "\t* Send and receive your <b>e-mails</b>."
-#~ msgstr "\t* Anfon a derbyn eich <b>e-byst</b>."
-
-#~ msgid "\t* Share your <b>agendas</b> and your <b>address books</b>."
-#~ msgstr "\t* Rannu eich <b>agendas</b> â'ch <b>llyfrau cyfeiriadau</b>."
-
-#~ msgid "\t* Manage your <b>memos</b> and <b>task lists</b>."
-#~ msgstr "\t* Rheoli eich <b>memos</b> a'ch <b>rhestrau tasgau</b>."
-
-#~ msgid "<b>Servers</b>"
-#~ msgstr "<b>Gweinyddion</b>"
-
-#~ msgid ""
-#~ "Empower your business network with <b>premier server solutions</b> "
-#~ "including:"
-#~ msgstr ""
-#~ "Cryfhewch eich rhwydwaith fusnes gyda <b>darpariaethau o'r radd flaenaf</"
-#~ "b>, gan gynnwys:"
-
-#~ msgid ""
-#~ "\t* <b>Samba</b>: File and print services for Microsoft® Windows® clients."
-#~ msgstr ""
-#~ "\t* <b>Samba</b>: Gwasanaethau ffeil ac argraffu ar gyfer cleientiaid MS-"
-#~ "Windows"
-
-#~ msgid "\t* <b>Apache</b>: The most widely used web server."
-#~ msgstr "\t* <b>Apache</b>: Y gweinydd Gwe mwyaf poblogaidd"
-
-#~ msgid ""
-#~ "\t* <b>MySQL</b> and <b>PostgreSQL</b>: The world's most popular open "
-#~ "source databases."
-#~ msgstr ""
-#~ "\t* <b>MySQL</b> a <b>PostgreSQL</b>: Y cronfeydd data cod agored mwyaf "
-#~ "poblogaidd"
-
-#~ msgid ""
-#~ "\t* <b>CVS</b>: Concurrent Versions System, the dominant open source "
-#~ "network-transparent version control system."
-#~ msgstr ""
-#~ "\t* <b>CVS</b>: Concurrent Versions System, y system rheoli fersiwn cod "
-#~ "agored amlycaf"
-
-#~ msgid ""
-#~ "\t* <b>ProFTPD</b>: The highly configurable GPL-licensed FTP server "
-#~ "software."
-#~ msgstr "\t* <b>ProFTPD</b>: meddalwedd ffurfweddadwy gweinydd FTP GPL"
-
-#~ msgid ""
-#~ "\t* <b>Postfix</b> and <b>Sendmail</b>: The popular and powerful mail "
-#~ "servers."
-#~ msgstr ""
-#~ "\t* <b>Postfix</b> a <b>Sendmail</b>: Gweinyddion e-bost pwerus a "
-#~ "phoblogaidd."
-
-#~ msgid "<b>Mandriva Linux Control Center</b>"
-#~ msgstr "<b>Canolfan Rheoli Mandriva Linux</b>"
-
-#~ msgid ""
-#~ "The <b>Mandriva Linux Control Center</b> is an essential collection of "
-#~ "Mandriva Linux-specific utilities designed to simplify the configuration "
-#~ "of your computer."
-#~ msgstr ""
-#~ "Mae <b>Canolfan Reoli Mandriva Linux</b> yn gasgliad hanfodol o "
-#~ "wasanaethau ar gyfer Mandriva Linux swydd wedi eu cynllunio i symlhau "
-#~ "ffurfweddiad eich cyfrifiadur."
-
-#~ msgid ""
-#~ "You will immediately appreciate this collection of <b>more than 60</b> "
-#~ "handy utilities for <b>easily configuring your system</b>: hardware "
-#~ "devices, mount points, network and Internet, security level of your "
-#~ "computer, etc."
-#~ msgstr ""
-#~ "Byddwch yn gwerthfawrogi'n syth y casgliad o <b>fwy na 60</b> o "
-#~ "wasanaethau hwylus ar gyfer <b>ffurfweddu'ch system yn hawdd</b>: "
-#~ "dyfeisiau caledwedd, pwyntiau gosod, rhwydwaith a Rhyngrwyd, lefel "
-#~ "diogelwch eich cyfrifiadur, ac ati."
-
-#~ msgid "<b>The Open Source Model</b>"
-#~ msgstr "<b>Y Model Cod Agored</b>"
-
-#~ msgid ""
-#~ "Like all computer programming, open source software <b>requires time and "
-#~ "people</b> for development. In order to respect the open source "
-#~ "philosophy, Mandriva sells added value products and services to <b>keep "
-#~ "improving Mandriva Linux</b>. If you want to <b>support the open source "
-#~ "philosophy</b> and the development of Mandriva Linux, <b>please</b> "
-#~ "consider buying one of our products or services!"
-#~ msgstr ""
-#~ "Fel pob rhaglenni cyfrifiadurol, mae meddalwedd cod agored <b>yn golygu "
-#~ "amser a phobl</b> ar gyfer datblygiad. Er mwyn parchu athroniaeth cod "
-#~ "agored, mae Mandriva yn gwerthu cynnyrch gwerth ychwanegol a gwasanaethau "
-#~ "i <b>barhau i wella Mandriva Linux</b>. Os hoffech chi <b>gefnogi "
-#~ "athroniaeth cod agored</b> a datblygiad Mandriva Linux, <b>os gwelwch "
-#~ "chi'n dda</b> ystyriwch brynu ein cynnyrch neu ein gwasanaethau!"
-
-#~ msgid "<b>Online Store</b>"
-#~ msgstr "<b>Siop Ar-lein</b>"
-
-#~ msgid ""
-#~ "To learn more about Mandriva products and services, you can visit our "
-#~ "<b>e-commerce platform</b>."
-#~ msgstr ""
-#~ "I ddysgu rhagor am gynnyrch a gwasanaethau Mandriva, ewch i'n "
-#~ "<b>platfform e-fasnachu</b>."
-
-#~ msgid ""
-#~ "There you can find all our products, services and third-party products."
-#~ msgstr ""
-#~ "Yno cewch ganfod ein holl gynnyrch, gwasanaethau a chynnyrch trydydd "
-#~ "parti."
-
-#~ msgid ""
-#~ "This platform has just been <b>redesigned</b> to improve its efficiency "
-#~ "and usability."
-#~ msgstr ""
-#~ "Mae'r platfform newydd gael ei <b>ail gynllunio</b> i wella ei "
-#~ "effeithlonrwydd a'i ddefnyddioldeb."
-
-#~ msgid "Stop by today at <b>store.mandriva.com</b>!"
-#~ msgstr "Ewch i <b> store.mandriva.com</b> heddiw."
-
-#~ msgid "<b>Mandriva Club</b>"
-#~ msgstr "<b>Mandriva Club</b>"
-
-#~ msgid ""
-#~ "<b>Mandriva Club</b> is the <b>perfect companion</b> to your Mandriva "
-#~ "Linux product.."
-#~ msgstr ""
-#~ "<b>Mandriva Club</b> yw'r <b>cydymaith perffaith</b> ar gyfer eich "
-#~ "cynnyrch Mandriva Linux..."
-
-#~ msgid ""
-#~ "Take advantage of <b>valuable benefits</b> by joining Mandriva Club, such "
-#~ "as:"
-#~ msgstr ""
-#~ "Cewch fanteisio ar <b>freintiau gwerthfawr</b> drwy ymuno â Mandriva "
-#~ "Club, e.e:"
-
-#~ msgid ""
-#~ "\t* <b>Special discounts</b> on products and services of our online store "
-#~ "<b>store.mandriva.com</b>."
-#~ msgstr ""
-#~ "\t* <b>Gostyngiadau arbennig</b> ar gyfer cynnyrch a gwasanaethau yn ein "
-#~ "siop ar-lein <b>store.mandriva.com</b>."
-
-#~ msgid ""
-#~ "\t* Access to <b>commercial applications</b> (for example to NVIDIA® or "
-#~ "ATI™ drivers)."
-#~ msgstr ""
-#~ "\t* Mynediad i <b>raglenni masnachol</b> (e.e. gyrwyr NVIDIA® or ATI™)."
-
-#~ msgid "\t* Participation in Mandriva Linux <b>user forums</b>."
-#~ msgstr "\t* Cymryd rhan mewn <b>fforymau defnyddwyr</b> Mandriva Linux."
-
-#~ msgid ""
-#~ "\t* <b>Early and privileged access</b>, before public release, to "
-#~ "Mandriva Linux <b>ISO images</b>."
-#~ msgstr ""
-#~ "\t* <b>Mynediad cynnar a breintiol</b>, cyn eu rhyddhau'n gyhoeddus, i "
-#~ "<b>ddelweddau ISO</b> Mandriva Linux."
-
-#~ msgid "<b>Mandriva Online</b>"
-#~ msgstr "<b>Mandriva Online</b>"
-
-#~ msgid ""
-#~ "<b>Mandriva Online</b> is a new premium service that Mandriva is proud to "
-#~ "offer its customers!"
-#~ msgstr ""
-#~ "<b>Mandriva Online</b> yw'r gwasanaeth newydd gwerthfawr mae Mandriva yn "
-#~ "ei gynnig i 'w gwsmeriaid!"
-
-#~ msgid ""
-#~ "Mandriva Online provides a wide range of valuable services for <b>easily "
-#~ "updating</b> your Mandriva Linux systems:"
-#~ msgstr ""
-#~ "Mae Mandriva Online yn darparu ystod eang o wasanaethau gwerthfawr ar "
-#~ "gyfer <b>diweddaru'n hawdd</b> eich systemau your Mandriva Linux:"
-
-#~ msgid "\t* <b>Perfect</b> system security (automated software updates)."
-#~ msgstr ""
-#~ "\t* Diogelwch systemau <b>perffaith</b> (diweddaru meddalwedd yn "
-#~ "awtomataidd)."
-
-#~ msgid ""
-#~ "\t* <b>Notification</b> of updates (by e-mail or by an applet on the "
-#~ "desktop)."
-#~ msgstr ""
-#~ "\t* <b>Hysbysu</b> am ddiweddariadau (drwy e-bost neu raglennig ar y "
-#~ "bwrdd gwaith)."
-
-#~ msgid "\t* Flexible <b>scheduled</b> updates."
-#~ msgstr "\t* Hyblyg <b>amserlen</b> diweddariadau."
-
-#~ msgid ""
-#~ "\t* Management of <b>all your Mandriva Linux systems</b> with one account."
-#~ msgstr ""
-#~ "\t* Rheolaeth o'ch <b>holl systemau Mandriva Linux</b> gydag un cyfrif."
-
-#~ msgid "<b>Mandriva Expert</b>"
-#~ msgstr "<b>Mandriva Expert</b>"
-
-#~ msgid ""
-#~ "Do you require <b>assistance?</b> Meet Mandriva's technical experts on "
-#~ "<b>our technical support platform</b> www.mandrivaexpert.com."
-#~ msgstr ""
-#~ "Ydych chi angen <b>cymorth?</b> Mae arbenigwyr technegol Mandriva i'w "
-#~ "cael ar <b>ein platfform cefnogaeth dechnegol </b> www.mandrivaexpert."
-#~ "com."
-
-#~ msgid ""
-#~ "Thanks to the help of <b>qualified Mandriva Linux experts</b>, you will "
-#~ "save a lot of time."
-#~ msgstr ""
-#~ "Drwy gymorth <b>arbenigwyr cymwysedig Mandriva Linux</b>, byddwch yn abed "
-#~ "llawer o amser."
-
-#~ msgid ""
-#~ "For any question related to Mandriva Linux, you have the possibility to "
-#~ "purchase support incidents at <b>store.mandriva.com</b>."
-#~ msgstr ""
-#~ "Am unrhyw gwestiwn am Mandriva Linux, mae gennych y gallu i brynu "
-#~ "cefnogaeth ar gyfer unrhyw ddigwyddiad o <b>store.mandriva.com</b>."
-
-#~ msgid "ESSID"
-#~ msgstr "ESSID"
-
-#~ msgid "Key"
-#~ msgstr "Allwedd"
-
-#~ msgid "Network:"
-#~ msgstr "Rhwydwaith:"
-
-#~ msgid "IP:"
-#~ msgstr "IP:"
-
-#~ msgid "Mode:"
-#~ msgstr "Modd:"
-
-#~ msgid "Encryption:"
-#~ msgstr "Amgryptiad:"
-
-#~ msgid "Signal:"
-#~ msgstr "Arwydd:"
-
-#~ msgid "Roaming"
-#~ msgstr "Crwydro"
-
-#~ msgid "Roaming: %s"
-#~ msgstr "Crwydro: %s"
-
-#~ msgid "Scan interval (sec): "
-#~ msgstr "Cyfnod sganio (eil): "
-
-#~ msgid "Set"
-#~ msgstr "Set"
-
-#~ msgid "Known Networks (Drag up/down or edit)"
-#~ msgstr "Rhwydweithiau Hybys (Llusgo fyny/lawr neu olygu)"
-
-#~ msgid "Available Networks"
-#~ msgstr "Rhwydweithiau ar Gael"
-
-#~ msgid "Rescan"
-#~ msgstr "Ailsganio"
-
-#~ msgid "Status"
-#~ msgstr "Statws"
-
-#~ msgid "Disconnect"
-#~ msgstr "Datgysylltu"
-
-#~ msgid ""
-#~ "x coordinate of text box\n"
-#~ "in number of characters"
-#~ msgstr ""
-#~ "blwch testun cydfesuryn x\n"
-#~ "mewn rhif nodau"
-
-#~ msgid ""
-#~ "y coordinate of text box\n"
-#~ "in number of characters"
-#~ msgstr ""
-#~ "blwch testun cydfesuryn y\n"
-#~ "mewn rhif nodau"
-
-#~ msgid "text width"
-#~ msgstr "lled testun"
-
-#~ msgid "Choose progress bar color"
-#~ msgstr "Dewis lliw'r bar proses"
-
-#~ msgid "ProgressBar color selection"
-#~ msgstr "Dewis lliw ProgressBar"
-
-#~ msgid "Connect to the Internet"
-#~ msgstr "Cysylltu â'r We"
-
-#~ msgid ""
-#~ "The most common way to connect with adsl is pppoe.\n"
-#~ "Some connections use PPTP, a few use DHCP.\n"
-#~ "If you do not know, choose 'use PPPoE'"
-#~ msgstr ""
-#~ "Y ffordd mwyaf cyffredin i gysylltu â adsl yw PPPoE\n"
-#~ "Mae rhai cysylltiadau'n defnyddio PPTP, a rhai DHCP.\n"
-#~ "Os nad ydych yn gwybod pa un, dewiswch 'pppoe'."
-
-#~ msgid "Do not print any test page"
-#~ msgstr "Peidiwch argraffu tudalennau prawf"
-
-#~ msgid "Printer on SMB/Windows 95/98/NT server"
-#~ msgstr "Argraffydd ar weinydd SMB/Windows 95/98/NT"
-
-#~ msgid "Found printer on %s..."
-#~ msgstr "Wedi canfod argraffydd ar %s..."
-
-#~ msgid "Useless without Terminal Server"
-#~ msgstr "Diwerth heb Wasanaethwr Terfynell"
-
-#~ msgid ""
-#~ "Please select default client type.\n"
-#~ " 'Thin' clients run everything off the server's CPU/RAM, using the "
-#~ "client display.\n"
-#~ " 'Fat' clients use their own CPU/RAM but the server's filesystem."
-#~ msgstr ""
-#~ "Dewis y math o gleient rhagosodedig.\n"
-#~ " Cleient 'Tenau' sy'n rhedeg popeth oddi ar CPU/RAM gweinydd, gyda "
-#~ "dangosydd cleient.\n"
-#~ " Cleient 'Tew' sy'n defnyddio eu CPU/RAM eu hun ond system ffeiliau'r "
-#~ "gweinydd."
-
-#~ msgid "dhcpd Config..."
-#~ msgstr "Ffurfweddu dhcpd..."
-
-#~ msgid ""
-#~ "package 'ImageMagick' is required to be able to complete configuration.\n"
-#~ "Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
-#~ msgstr ""
-#~ "i weithio'n iawn mae angen 'ImageMagick' i gwblhau'r ffurfweddiad.\n"
-#~ "Cliciwch \"Iawn\" i osod 'Image Magick' neu \"Diddymu\" i orffen"
-
-#, fuzzy
-#~ msgid "Unable to select wireless network: %s"
-#~ msgstr "Rheoli rhwydweithiau di-wifr"
-
-#~ msgid "Interactive intrusion detection"
-#~ msgstr "Canfod mewnwthiad rhyngweithiol"
-
-#~ msgid "Actions"
-#~ msgstr "Gweithredoedd"
-
-#~ msgid "Active Firewall: intrusion detected"
-#~ msgstr "Mur Cadarn Rhyngweithiol: canfod ymwthiad"
-
-#~ msgid "Do you want to blacklist the attacker?"
-#~ msgstr "Hoffech chi wahardd yr ymosodwr?"
-
-#~ msgid "Grub"
-#~ msgstr "Grub"
-
-#~ msgid "Local Network adress"
-#~ msgstr "Cyfeiriad y Rhwydwaith Lleol "
-
-#~ msgid "Configuring scripts, installing software, starting servers..."
-#~ msgstr "Ffurfweddi sgriptiau, gosod meddalwedd, cychwyn gweinyddion..."
-
-#~ msgid "More options"
-#~ msgstr "Dewisiadau Eraill"
-
-#~ msgid ""
-#~ "You may not be able to install lilo (since lilo does not handle a LV on "
-#~ "multiple PVs)"
-#~ msgstr ""
-#~ "Efallai na fydd modd i chi osod lilo (gan nad yw lilo'n trin LV ar PV "
-#~ "lluosog)"
-
-#~ msgid "Network (http)"
-#~ msgstr "Rhwydwaith (http)"
-
-#~ msgid "Network (ftp)"
-#~ msgstr "Rhwydwaith (ftp)"
-
-#~ msgid "drakfloppy"
-#~ msgstr "drakfloppy"
-
-#~ msgid "Boot disk creation"
-#~ msgstr "Creu disg cychwyn"
-
-#~ msgid "General"
-#~ msgstr "Cyffredinol"
-
-#~ msgid "Kernel version"
-#~ msgstr "Fersiwn cnewyllyn"
-
-#~ msgid "Preferences"
-#~ msgstr "Dewisiadau"
-
-#~ msgid "Advanced preferences"
-#~ msgstr "Dewisiadau Uwch"
-
-#~ msgid "Size"
-#~ msgstr "Maint"
-
-#~ msgid "Mkinitrd optional arguments"
-#~ msgstr "Ymresymiad dewisol mkinitrd"
-
-#~ msgid "force"
-#~ msgstr "grym"
-
-#~ msgid "omit raid modules"
-#~ msgstr "peidio cynnwys modiwlau raid"
-
-#~ msgid "if needed"
-#~ msgstr "os oes angen"
-
-#~ msgid "omit scsi modules"
-#~ msgstr "peidio cynnwys modiwlau scsi"
-
-#~ msgid "Add a module"
-#~ msgstr "Ychwanegu modiwl"
-
-#~ msgid "Remove a module"
-#~ msgstr "Tynnu modiwl"
-
-#~ msgid "Be sure a media is present for the device %s"
-#~ msgstr "Gwnewch yn siŵr fod y deunydd ar gael ar gyfer y ddyfais %s"
-
-#~ msgid ""
-#~ "There is no medium or it is write-protected for device %s.\n"
-#~ "Please insert one."
-#~ msgstr ""
-#~ "Does dim cyfrwng neu mae wedi ei amddiffyn rhag ysgrifennu i'r ddyfais %"
-#~ "s.\n"
-#~ "Rhowch un i mewn.."
-
-#~ msgid "Unable to fork: %s"
-#~ msgstr "Methu fforchio: %s"
-
-#~ msgid "Floppy creation completed"
-#~ msgstr "Creu disg meddal wedi ei gwblhau"
-
-#~ msgid "The creation of the boot floppy has been successfully completed \n"
-#~ msgstr "Mae creu'r disg meddal cychwyn wedi bod yn llwyddiant\n"
-
-#~ msgid ""
-#~ "Unable to properly close mkbootdisk:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
-#~ msgstr ""
-#~ "Methu cau mkbootdisk yn iawn: \n"
-#~ "\n"
-#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
-
-#~ msgid "use PPPoE"
-#~ msgstr "defnyddiwch PPPoE"
-
-#~ msgid "use PPTP"
-#~ msgstr "defnyddiwch PPTP"
-
-#~ msgid "use DHCP"
-#~ msgstr "defnyddiwch dhccp"
-
-#~ msgid "Alcatel Speedtouch USB"
-#~ msgstr "Alcatel Speedtouch USB"
-
-#~ msgid " - detected"
-#~ msgstr " - canfuwyd"
-
-#~ msgid "Sagem (using PPPoA) USB"
-#~ msgstr "USB Sagem (defnyddio PPOA)"
-
-#~ msgid "Sagem (using DHCP) USB"
-#~ msgstr "USB Sagem (defnyddio DHCP)"
-
-#~ msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-#~ msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ag ati"
-
-#~ msgid ""
-#~ "This should be the return address that you want the backup results sent "
-#~ "from. Default is drakbakup."
-#~ msgstr ""
-#~ "Dylai fod yna gyfeiriad dychwelyd o le fydd y ffeiliau wrth gefn yn dod "
-#~ "ohono. drakbakup yw'r rhagosodedig."
-
-#~ msgid ""
-#~ "Warning, another Internet connection has been detected, maybe using your "
-#~ "network"
-#~ msgstr ""
-#~ "Rhybudd, mae cysylltiad arall gyda'r rhyngrwyd wedi ei ganfod, efallai'n "
-#~ "defnyddio eich rhwydwaith."
-
-#~ msgid "PXE Server Configuration"
-#~ msgstr "Ffurfweddiad Gweinydd PXE"
-
-#~ msgid "Installation Server Configuration"
-#~ msgstr "Ffurfweddiad Gweinydd Gosod"
-
-#~ msgid ""
-#~ "You are about to configure your computer to install a PXE server as a "
-#~ "DHCP server\n"
-#~ "and a TFTP server to build an installation server.\n"
-#~ "With that feature, other computers on your local network will be "
-#~ "installable using this computer as source.\n"
-#~ "\n"
-#~ "Make sure you have configured your Network/Internet access using "
-#~ "drakconnect before going any further.\n"
-#~ "\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN)."
-#~ msgstr ""
-#~ "Rydych ar fin ffurfweddu eich cyfrifiadur i weinydd PXE fel gweinydd DHCP "
-#~ "a gweinydd\n"
-#~ "TFTP i adeiladu gweinydd gosod.\n"
-#~ "Gyda'r nodwedd hon bydd cyfrifiaduron eraill ar eich rhwydwaith lleol yn "
-#~ "gallu rhannu cyswllt rhyngrwyd y cyfrifiadur hwn.\n"
-#~ "\n"
-#~ "Gwnewch yn siŵr eich bod wedi ffurfweddu eich mynediad Rhwydwaith/"
-#~ "Rhyngrwyd gyda drakconnect cyn mynd ymhellach.\n"
-#~ "\n"
-#~ "Sylwer: bydd angen Addasydd Rhwydwaith un-pwrpas i greu Rhwydwaith Lleol "
-#~ "(LAN)."
-
-#~ msgid "No network adapter on your system!"
-#~ msgstr "Nid oes addasydd rhwydwaith ar eich system!"
-
-#~ msgid "Choose the network interface"
-#~ msgstr "Dewiswch rhag wyneb y rhwydwaith"
-
-#~ msgid ""
-#~ "Please choose which network interface will be used for the dhcp server."
-#~ msgstr ""
-#~ "Dewiswch ba ryngwyneb rhwydwaith i'w ddefnyddio ar gyfer y gweinydd DHCP."
-
-#~ msgid "Interface %s (on network %s)"
-#~ msgstr "Rhyngwyneb %s (ar rwydwaith %s)"
-
-#~ msgid ""
-#~ "The DHCP server will allow other computer to boot using PXE in the given "
-#~ "range of address.\n"
-#~ "\n"
-#~ "The network address is %s using a netmask of %s.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Mae'r gweinydd DHCP yn caniatáu i gyfrifiaduron eraill gychwyn drwy "
-#~ "ddefnyddio PXE ar ystod\n"
-#~ "penodol o gyfeiriadau\n"
-#~ "Y cyfeiriad rhwydwaith yw %s gan ddefnyddio netmask o %s\n"
-#~ "\n"
-
-#~ msgid "The DHCP start ip"
-#~ msgstr "Enw cychwyn DHCP"
-
-#~ msgid "The DHCP end ip"
-#~ msgstr "Enw terfyn DHCP"
-
-#~ msgid ""
-#~ "Please indicate where the installation image will be available.\n"
-#~ "\n"
-#~ "If you do not have an existing directory, please copy the CD or DVD "
-#~ "contents.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Dangoswch lle bydd y ddelwedd gosod ar gael.\n"
-#~ "\n"
-#~ "Os nad oes gennych gyfeiriadur yn barod, copïwch gynnwys y CD neu'r DVD.\n"
-#~ "\n"
-
-#~ msgid "Installation image directory"
-#~ msgstr "Cyfeiriadur delwedd gosod"
-
-#~ msgid "No image found"
-#~ msgstr "Heb ganfod delwedd"
-
-#~ msgid ""
-#~ "No CD or DVD image found, please copy the installation program and rpm "
-#~ "files."
-#~ msgstr ""
-#~ "Heb ganfod delwedd CD neu DVD, copïwch y rhaglen osod a'r ffeiliau rpm."
-
-#~ msgid ""
-#~ "Please indicate where the auto_install.cfg file is located.\n"
-#~ "\n"
-#~ "Leave it blank if you do not want to set up automatic installation mode.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Dangoswch lle mae'r ffeil auto_install.cfg wedi ei leoli,\n"
-#~ "\n"
-#~ "Gadael yn wag os ydych am greu modd gosod yn awtomatig.\n"
-#~ "\n"
-
-#~ msgid "Location of auto_install.cfg file"
-#~ msgstr "Lleoliad ffeil auto_install.cfg"
-
-#~ msgid "Do it later"
-#~ msgstr "Gwneud yn hwyrach"
-
-#~ msgid ""
-#~ "You need the Alcatel microcode.\n"
-#~ "Download it at:\n"
-#~ "%s\n"
-#~ "and copy the mgmt.o in /usr/share/speedtouch"
-#~ msgstr ""
-#~ "Rhaid cael mincod Alcatel.\n"
-#~ "Llwytho i lawr o\n"
-#~ "%s\n"
-#~ "a chopïo’r mgmt.o i /usr/share/speedtouch"
-
-#~ msgid "MdkKDM (Mandriva Linux Display Manager)"
-#~ msgstr "MdkKDM (rheolwr arddangos Mandriva Linux)"
-
-#~ msgid "Internet Connection Sharing currently disabled"
-#~ msgstr "Mae Rhannu Cysylltiad â'r Rhyngrwyd wedi ei analluogi"
-
-#~ msgid "Enabling servers..."
-#~ msgstr "Galluogi gweinyddion..."
-
-#~ msgid "Internet Connection Sharing currently enabled"
-#~ msgstr "Mae Rhannu Cysylltiad â'r Rhyngrwyd wedi ei alluogi"
-
-#~ msgid "Interface %s (using module %s)"
-#~ msgstr "Rhyngwyneb %s (gan ddefnyddio modiwl %s)"
-
-#~ msgid "Interface %s"
-#~ msgstr "Rhyngwyneb %s"
-
-#~ msgid "Network interface already configured"
-#~ msgstr "Mae rhag wyneb y rhwydwaith wedi ei ffurfweddu eisoes"
-
-#~ msgid ""
-#~ "Warning, the network adapter (%s) is already configured.\n"
-#~ "\n"
-#~ "Do you want an automatic re-configuration?\n"
-#~ "\n"
-#~ "You can do it manually but you need to know what you're doing."
-#~ msgstr ""
-#~ "Rhybudd, mae'r addaswr rhwydwaith (%s) wedi ei ffurfweddu eisoes.\n"
-#~ "\n"
-#~ "Ydych chi eisiau ail ffurfweddiad awtomatig?\n"
-#~ "\n"
-#~ "Gallwch ei wneud gyda llaw ond mae'n rhaid i chi wybod beth ydych yn ei "
-#~ "wneud."
-
-#~ msgid "No (experts only)"
-#~ msgstr "Na (arbenigwyr yn unig)"
-
-#~ msgid "Show current interface configuration"
-#~ msgstr "Dangoswch y ffurfweddiad rhag wyneb cyfredol"
-
-#~ msgid "Current interface configuration"
-#~ msgstr "Ffurfweddiad rhyngwyneb cyfredol"
-
-#~ msgid ""
-#~ "Current configuration of `%s':\n"
-#~ "\n"
-#~ "Network: %s\n"
-#~ "IP address: %s\n"
-#~ "IP attribution: %s\n"
-#~ "Driver: %s"
-#~ msgstr ""
-#~ "Ffurfweddiad presennol '%s':\n"
-#~ "\n"
-#~ "Rhwydwaith: %s\n"
-#~ "Cyfeiriad IP: %s\n"
-#~ "Priodweddau IP: %s\n"
-#~ "Gyrrwr: %s"
-
-#~ msgid ""
-#~ "I can keep your current configuration and assume you already set up a "
-#~ "DHCP server; in that case please verify I correctly read the Network that "
-#~ "you use for your local network; I will not reconfigure it and I will not "
-#~ "touch your DHCP server configuration.\n"
-#~ "\n"
-#~ "The default DNS entry is the Caching Nameserver configured on the "
-#~ "firewall. You can replace that with your ISP DNS IP, for example.\n"
-#~ "\t\t \n"
-#~ "Otherwise, I can reconfigure your interface and (re)configure a DHCP "
-#~ "server for you.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Medraf gadw eich ffurfweddiad cyfredol a chymryd eich bod eisoes wedi "
-#~ "gosod gweinydd DHCP. Os felly, dilyswch fy mod wedi darllen y rhwydwaith "
-#~ "dosbarth C rydych yn ei ddefnyddio fel eich rhwydwaith lleol, yn gywir. "
-#~ "Ni fyddaf yn ei newid na chyffwrdd â ffurfweddiad eich gweinydd DHCP.\n"
-#~ "\n"
-#~ "Y cofnod DNS rhagosodedig yw'r enw gweinydd storio sydd wedi ei "
-#~ "ffurfweddu yn y mur cadarn. Mae modd i chi ei newid am eich IP DNS ISP, e."
-#~ "e. \n"
-#~ "\n"
-#~ "Neu, medraf ail ffurfweddu eich rhag wyneb ac (ail)ffurfweddi gweinydd "
-#~ "DHCP ar eich cyfer.\n"
-
-#~ msgid "(This) DHCP Server IP"
-#~ msgstr "Gweinydd DHCP IP (Hwn)"
-
-#~ msgid "Re-configure interface and DHCP server"
-#~ msgstr "Ail ffurfweddi rhag wyneb a gweinydd DHCP"
-
-#~ msgid "The Local Network did not finish with `.0', bailing out."
-#~ msgstr "Nid yw'r Rhwydwaith Lleol yn terfynu gyda '.0', tynnu allan."
-
-#~ msgid ""
-#~ "WARNING: this device has been previously configured to connect to the "
-#~ "Internet.\n"
-#~ "Modifying the fields below will override this configuration.\n"
-#~ "Do you really want to reconfigure this device?"
-#~ msgstr ""
-#~ "RHYBUDD: Cafodd y ddyfais hon ei ffurfweddu o'r blaen i gysylltu â'r "
-#~ "Rhyngrwyd.\n"
-#~ "Bydd newid y meysydd islaw'n newid y ffurfweddiad.\n"
-#~ "Ydych am ail-ffurfweddu’r ddyfais?"
-
-#~ msgid ""
-#~ " - Create etherboot floppies/CDs:\n"
-#~ " \tThe diskless client machines need either ROM images on the NIC, "
-#~ "or a boot floppy\n"
-#~ " \tor CD to initiate the boot sequence. drakTermServ will help "
-#~ "generate these\n"
-#~ " \timages, based on the NIC in the client machine.\n"
-#~ " \t\t\n"
-#~ " \tA basic example of creating a boot floppy for a 3Com 3c509 "
-#~ "manually:\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/lib/etherboot/floppyload.bin \\\n"
-#~ " \t\t/usr/share/etherboot/start16.bin \\\t\t\t\n"
-#~ " \t\t/usr/lib/etherboot/zimg/3c509.zimg > /dev/fd0"
-#~ msgstr ""
-#~ " - Creu disgiau meddal/CD cychwyn rhwydwaith (etherboot):\n"
-#~ " \t\tBydd peiriannau di-ddisg angen delwedd ROM ar y NIC , disg "
-#~ "meddal cychwyn\n"
-#~ " \t\tneu CD i gychwyn. Bydd drakTermServ yn cynorthwyo i "
-#~ "gynhyrchu'r \n"
-#~ " \t\tdelweddau hyn, yn seiliedig ar y NIC yn y peiriant cleient.\n"
-#~ " \t\t\n"
-#~ " \t\tEnghraifft o greu gyda llaw, disg meddal cychwyn ar gyfer "
-#~ "3Com 3c509 :\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/lib/etherboot/floppyload.bin \\\n"
-#~ " \t\t/usr/share/etherboot/start16.bin \\\t\t\t\n"
-#~ " \t\t/usr/lib/etherboot/zimg/3c509.zimg > /dev/fd0"
-
-#~ msgid "Dynamic IP Address Pool:"
-#~ msgstr "Pwll Cyfeiriad IP dynameg"
-
-#~ msgid "hd"
-#~ msgstr "hd"
-
-#~ msgid "tape"
-#~ msgstr "tâp"
-
-#~ msgid "WebDAV remote site already in sync!"
-#~ msgstr "Mae safle pell WebDAV eisoes wedi cydamseru!"
-
-#~ msgid "WebDAV transfer failed!"
-#~ msgstr "Methodd trosglwyddiad WebDAV!"
-
-#~ msgid ""
-#~ "Backup quota exceeded!\n"
-#~ "%d MB used vs %d MB allocated."
-#~ msgstr ""
-#~ "Wedi mynd tu hwnt i'r cwota wrth gefn\n"
-#~ "%d Mb wedi ei ddefnyddio vs %d Mb ar gael."
-
-#~ msgid ""
-#~ "Maximum size\n"
-#~ " allowed for Drakbackup (MB)"
-#~ msgstr ""
-#~ "Rhowch y maint mwyaf\n"
-#~ " i'w ganiatáu ar gyfer Drakbackup (MB)"
-
-#~ msgid "\t-Network by webdav.\n"
-#~ msgstr "\t-Rhwydwaith drwy webday.\n"
-
-#~ msgid "first step creation"
-#~ msgstr "creu'r cam cyntaf"
-
-#~ msgid "choose image file"
-#~ msgstr "dewis ffeil delwedd"
-
-#~ msgid "Configure bootsplash picture"
-#~ msgstr "Ffurfweddu llun croeso cychwyn"
-
-#~ msgid "the color of the progress bar"
-#~ msgstr "lliw'r bar cynnydd"
-
-#~ msgid "Preview"
-#~ msgstr "rhagolwg"
-
-#~ msgid "Choose color"
-#~ msgstr "dewis lliw"
-
-#~ msgid "Make kernel message quiet by default"
-#~ msgstr "Gwneud neges y cnewyllyn yn dawel drwy ragosodiad"
-
-#~ msgid "Notice"
-#~ msgstr "Nodyn"
-
-#~ msgid "This theme does not yet have a bootsplash in %s!"
-#~ msgstr "Does gan y thema ddim croeso cychwyn yn %s !"
-
-#~ msgid "You must choose an image file first!"
-#~ msgstr "Rhaid dewis ffeil delwedd yn gyntaf!"
-
-#~ msgid "Generating preview..."
-#~ msgstr "Cynhyrchu rhagolwg..."
-
-#~ msgid "%s BootSplash (%s) preview"
-#~ msgstr "%s Rhagolwg Croeso Cychwyn (%s)"
-
-#~ msgid ""
-#~ "The image \"%s\" cannot be load due to the following issue:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\">%s</span>"
-#~ msgstr ""
-#~ "Methu llwytho delwedd \"%s\" oherwydd y mater canlynol:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\">%s</span>"
-
-#~ msgid "No floppy drive available"
-#~ msgstr "Does dim disg meddal ar gael"
-
-#~ msgid "Please insert the Update Modules floppy in drive %s"
-#~ msgstr "Rhowch y disg meddal Diweddaru Modiwlau yn nisg %s"
-
-#~ msgid ""
-#~ "_: keyboard\n"
-#~ "Tifinagh (+latin/arabic)"
-#~ msgstr "Tifinagh (+lladin/arabeg)"
-
-#~ msgid "No network card"
-#~ msgstr "Dim cerdyn rhwydwaith"
-
-#~ msgid "Use already installed driver (%s)"
-#~ msgstr "Defnyddiwch yrrwr presennol (%s)"
-
-#~ msgid "Use Wi-Fi Protected Access (WPA)"
-#~ msgstr "Defnyddio Wi-Fi Protected Access (WPA)"
-
-#~ msgid "You've not selected any font"
-#~ msgstr "Heb ddewis ffontiau"
-
-#~ msgid "Save and close"
-#~ msgstr "Cadw a chau"
-
-#~ msgid "No browser available! Please install one"
-#~ msgstr "Dim porwr ar gael! Gosodwch un"
-
-#~ msgid ""
-#~ "No browser is installed on your system, Please install one if you want to "
-#~ "browse the help system"
-#~ msgstr ""
-#~ "Does dim porwr ar eich cyfrifiadur. Rhaid gosod un os ydych am "
-#~ "archwilio'r system gymorth."
-
-#, fuzzy
-#~ msgid "Active Firewall : intrusion detected"
-#~ msgstr "Wedi canfod ffurfweddiad mur gwarchod!"
-
-#, fuzzy
-#~ msgid "Do you want to blacklist the attacker ?"
-#~ msgstr "Ydych chi eisiau troi Bysellau Gludiog ymlaen?"
-
-#~ msgid ""
-#~ "Insert a floppy in drive\n"
-#~ "All data on this floppy will be lost"
-#~ msgstr ""
-#~ "Rhowch ddisg meddal yn y gyrrwr\n"
-#~ "Mi fydd yr holl wybodaeth ar y disg meddal yma yn cael ei golli"
-
-#~ msgid "Insert a FAT formatted floppy in drive %s"
-#~ msgstr "Rhowch ddisg meddal wedi ei fformatio i FAT yng ngyrrwr %s"
-
-#~ msgid "This floppy is not FAT formatted"
-#~ msgstr "Nid yw 'r disg meddal hwn wedi ei fformatio i FAT"
-
-#~ msgid ""
-#~ "To use this saved packages selection, boot installation with ``linux "
-#~ "defcfg=floppy''"
-#~ msgstr ""
-#~ "I ddefnyddio'r dewis o becynnau wedi eu cadw, cychwynnwch y gosodiad gyda "
-#~ "``linux defcfg=floppy''"
-
-#~ msgid "Load/Save on floppy"
-#~ msgstr "Llwytho/Cadw ar ddisg meddal"
-
-#~ msgid ""
-#~ "Please choose load or save package selection on floppy.\n"
-#~ "The format is the same as auto_install generated floppies."
-#~ msgstr ""
-#~ "Dewiswch lwytho neu ddewis cadw pecyn ar ddisg meddal.\n"
-#~ "Mae'r fformat yr un ar ddisgiau meddal wedi eu cynhyrchu drwy "
-#~ "auto_install."
-
-#~ msgid "Load from floppy"
-#~ msgstr "Llwytho o ddisg meddal"
-
-#~ msgid "Save on floppy"
-#~ msgstr "Cadw ar ddisg meddal"
-
-#~ msgid "Package selection"
-#~ msgstr "Dewis pecynnau"
-
-#~ msgid "Loading from floppy"
-#~ msgstr "Llwytho o ddisg meddal"
-
-#~ msgid "Insert a floppy containing package selection"
-#~ msgstr "Rhowch ddisg meddal yn cynnwys dewis pecynnau yn y peiriant"
-
-#~ msgid "multi-function device on parallel port #%s"
-#~ msgstr "dyfais amlbwrpas ar borth paralel #\"%s"
-
-#~ msgid "multi-function device on a parallel port"
-#~ msgstr "dyfais amlbwrpas ar borth paralel"
-
-#~ msgid "multi-function device on USB"
-#~ msgstr "dyfais amlbwrpas ar USB"
-
-#~ msgid "multi-function device on HP JetDirect"
-#~ msgstr "dyfais amlbwrpas ar HP JetDirect"
-
-#~ msgid "multi-function device"
-#~ msgstr "dyfais amlbwrpas"
-
-#~ msgid "printing to %s"
-#~ msgstr "argraffu i %s"
-
-#~ msgid "using command %s"
-#~ msgstr "defnyddio gorchymyn %s"
-
-#~ msgid "Application:"
-#~ msgstr "Rhaglen"
-
-#~ msgid "Release: "
-#~ msgstr "Ryddhad"
-
-#~ msgid "Summary: "
-#~ msgstr "Crynodeb:"
-
-#~ msgid "Bug Description/System Information"
-#~ msgstr "Disgrifiad Gwall/Gwybodaeth am y System"
-
-#~ msgid "YOUR TEXT HERE"
-#~ msgstr "EICH TESTUN YMA"
-
-#~ msgid "Submit kernel version"
-#~ msgstr "Cyflwyno fersiwn y cnewyllyn"
+#~ msgid "Icon"
+#~ msgstr "Eicon"
-#~ msgid "Submit cpuinfo"
-#~ msgstr "Cyflwyno cpuinfo"
+#~ msgid "Number of capture buffers:"
+#~ msgstr "Nifer o fyfferau cipio:"
-#~ msgid "Submit lspci"
-#~ msgstr "Cyflwyno Ispci"
+#~ msgid "number of capture buffers for mmap'ed capture"
+#~ msgstr "nifer o fyfferau cipio ar gyfer cipio mmap"
-#~ msgid "NOT FOUND"
-#~ msgstr "HEB GANFOD"
+#~ msgid "PLL setting:"
+#~ msgstr "Gosodiad PLL:"
-#~ msgid "connecting to %s..."
-#~ msgstr "cysylltu â %s..."
+#~ msgid "Radio support:"
+#~ msgstr "Cynnal radio:"
-#~ msgid "Please enter a package name."
-#~ msgstr "Rhowch enw'r pecyn."
+#~ msgid "enable radio support"
+#~ msgstr "galluogi cynnal radio"
-#~ msgid "Please enter summary text."
-#~ msgstr "Rhowch destun crynodeb yma."
+#~ msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+#~ msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index 27c501bdf..5839fdad1 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -1,3 +1,4 @@
+# translation of da1.po to
# translation of da.po to
# translation of da1.po to Danish
# translation of da.po to Danish
@@ -9,9 +10,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: da\n"
-"POT-Creation-Date: 2006-03-05 18:57+0800\n"
-"PO-Revision-Date: 2006-03-05 18:46+0100\n"
+"Project-Id-Version: da1\n"
+"POT-Creation-Date: 2007-03-21 12:10+0100\n"
+"PO-Revision-Date: 2006-10-01 15:51+0200\n"
"Last-Translator: Keld Simonsen <keld@rap.dk>\n"
"Language-Team: <da@li.org>\n"
"MIME-Version: 1.0\n"
@@ -19,842 +20,20 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.10.2\n"
-#: ../move/move.pm:292
-#, c-format
-msgid "Which USB key do you want to format?"
-msgstr "Hvilken USB-nøgle ønsker du at formatere?"
-
-#: ../move/move.pm:296
-#, c-format
-msgid ""
-"You are about to format a USB device \"%s\". This will delete all data on "
-"it.\n"
-"Make sure that the selected device is the USB key you want to format. \n"
-"We advise you to unplug all other USB storage devices while doing this "
-"operation."
-msgstr ""
-"Du er ved at formatere en USB-enhed '%s'. Dette vil slette alle data på "
-"den.\n"
-"Vær sikker på at den valgte enhed er den USB-nøgle du ønsker at formatere. \n"
-"Vi tilråder at du tager alle andre USB-lagerenheder ud af maskinen mens du "
-"laver denne operation."
-
-#: ../move/move.pm:448 ../move/move.pm:460
-#, c-format
-msgid "Key is not writable"
-msgstr "Nøgle er ikke skrivbar"
-
-#: ../move/move.pm:450
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-"USB-nøglen ser ud til at have skrivebeskyttelse aktiveret. Tag den ud, \n"
-"fjern skrivebeskyttelsen, og sæt den ind igen,"
-
-#: ../move/move.pm:452
-#, c-format
-msgid "Retry"
-msgstr "Prøv igen"
-
-#: ../move/move.pm:453 ../move/move.pm:497
-#, c-format
-msgid "Continue without USB key"
-msgstr "Fortsæt uden USB-nøgle"
-
-#: ../move/move.pm:462
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled, but we can not safely\n"
-"unplug it now.\n"
-"\n"
-"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandriva Move again."
-msgstr ""
-"USB-nøglen ser ud til at have skrivebeskyttelse aktiveret, men vi kan ikke\n"
-"tage den ud på en sikker måde nu.\n"
-"\n"
-"\n"
-"Klik på knappen for at genstarte maskinen, tag den ud, fjern "
-"skrivebeskyttelsen,\n"
-"sæt nøglen ind igen, og start Mandriva Move igen."
-
-#: ../move/move.pm:468 help.pm:410 install_steps_interactive.pm:1303
-#, c-format
-msgid "Reboot"
-msgstr "Genstart"
-
-#: ../move/move.pm:473
-#, c-format
-msgid ""
-"Your USB key does not have any valid Windows (FAT) partitions.\n"
-"We need one to continue (beside, it's more standard so that you\n"
-"will be able to move and access your files from machines\n"
-"running Windows). Please plug in an USB key containing a\n"
-"Windows partition instead.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-"Din USB-nøgle har ikke nogen gyldige Windows FAT partitioner.\n"
-"Vi har brug for et for at kunne fortsætte (iøvrigt er det mere almindeligt, "
-"så \n"
-"du vil kunne flytte og få fat på dine filer fra maskiner der kører "
-"Windows).\n"
-"Indsæt venligst en USB-nøgle med en Windows-partition i stedet.\n"
-"\n"
-"\n"
-"Du kan også fortsætte uden en USB-nøgle - du vil så stadig\n"
-"kunne bruge Mandriva Move som et normalt levende Mandriva \n"
-"operativsystem."
-
-#: ../move/move.pm:483
-#, c-format
-msgid ""
-"We did not detect any USB key on your system. If you\n"
-"plug in an USB key now, Mandriva Move will have the ability\n"
-"to transparently save the data in your home directory and\n"
-"system wide configuration, for next boot on this computer\n"
-"or another one. Note: if you plug in a key now, wait several\n"
-"seconds before detecting again.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-"Vi fandt ikke nogen USB-nøgle på dit system. Hvis du\n"
-"indsætter en USB-nøgle nu, vil Mandriva Move have mulighed\n"
-"for automatisk at gemme dataene fra dit hjemmekatalog og systemets\n"
-"konfiguration, for den næste opstart af denne eller en anden maskine.\n"
-"Bemærk: Hvis du indsætter en nøgle nu skal du vente nogen sekunder\n"
-"før du prøver at finde den igen.\n"
-"\n"
-"\n"
-"Du kan også fortsætte uden en USB-nøgle - du vil så stadig\n"
-"kunne bruge Mandriva Move som et normalt levende Mandriva \n"
-"operativsystem."
-
-#: ../move/move.pm:494
-#, c-format
-msgid "Need a key to save your data"
-msgstr "Behøver en nøgle for at gemme dine data"
-
-#: ../move/move.pm:496
-#, c-format
-msgid "Detect USB key again"
-msgstr "Søg igen efter USB-nøgle"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Setting up USB key"
-msgstr "Indstiller USB-nøgle"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Vent venligst, opsætter systemkonfigurationsfiler på USB-nøgle..."
-
-#: ../move/move.pm:546
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr "Indtast dine brugeroplysninger, adgangskode vil blive brugt til pauseskærm"
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Auto configuration"
-msgstr "Auto-konfiguration"
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Vent venligst, finder og konfigurerer enheder..."
-
-#: ../move/move.pm:604 ../move/move.pm:660 ../move/move.pm:664
-#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/interactive.pm:231
-#: diskdrake/interactive.pm:244 diskdrake/interactive.pm:405
-#: diskdrake/interactive.pm:423 diskdrake/interactive.pm:560
-#: diskdrake/interactive.pm:565 diskdrake/smbnfs_gtk.pm:41 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:52 fsedit.pm:218 install_any.pm:1775
-#: install_any.pm:1827 install_steps.pm:81 install_steps_interactive.pm:37
-#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
-#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
-#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
-#: network/netconnect.pm:837 network/netconnect.pm:866
-#: network/netconnect.pm:965 network/netconnect.pm:969
-#: network/netconnect.pm:973 network/netconnect.pm:978
-#: network/netconnect.pm:1123 network/netconnect.pm:1127
-#: network/netconnect.pm:1246 network/netconnect.pm:1251
-#: network/netconnect.pm:1271 network/netconnect.pm:1428
-#: network/thirdparty.pm:321 network/thirdparty.pm:328
-#: network/thirdparty.pm:372 network/thirdparty.pm:374
-#: network/thirdparty.pm:395 network/thirdparty.pm:419
-#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
-#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
-#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
-#: printer/printerdrake.pm:450 printer/printerdrake.pm:514
-#: printer/printerdrake.pm:686 printer/printerdrake.pm:690
-#: printer/printerdrake.pm:772 printer/printerdrake.pm:1555
-#: printer/printerdrake.pm:1603 printer/printerdrake.pm:1640
-#: printer/printerdrake.pm:1685 printer/printerdrake.pm:1689
-#: printer/printerdrake.pm:1703 printer/printerdrake.pm:1795
-#: printer/printerdrake.pm:1876 printer/printerdrake.pm:1880
-#: printer/printerdrake.pm:1884 printer/printerdrake.pm:1933
-#: printer/printerdrake.pm:1991 printer/printerdrake.pm:1995
-#: printer/printerdrake.pm:2009 printer/printerdrake.pm:2129
-#: printer/printerdrake.pm:2133 printer/printerdrake.pm:2176
-#: printer/printerdrake.pm:2249 printer/printerdrake.pm:2267
-#: printer/printerdrake.pm:2276 printer/printerdrake.pm:2285
-#: printer/printerdrake.pm:2296 printer/printerdrake.pm:2360
-#: printer/printerdrake.pm:2512 printer/printerdrake.pm:2947
-#: printer/printerdrake.pm:3231 printer/printerdrake.pm:3237
-#: printer/printerdrake.pm:3802 printer/printerdrake.pm:3806
-#: printer/printerdrake.pm:3810 printer/printerdrake.pm:4206
-#: printer/printerdrake.pm:4446 printer/printerdrake.pm:4474
-#: printer/printerdrake.pm:4551 printer/printerdrake.pm:4617
-#: printer/printerdrake.pm:4737 standalone/drakTermServ:422
-#: standalone/drakTermServ:492 standalone/drakTermServ:501
-#: standalone/drakTermServ:812 standalone/drakTermServ:819
-#: standalone/drakTermServ:845 standalone/drakTermServ:894
-#: standalone/drakTermServ:1146 standalone/drakTermServ:1181
-#: standalone/drakTermServ:1634 standalone/drakTermServ:1643
-#: standalone/drakTermServ:1651 standalone/drakTermServ:1656
-#: standalone/drakTermServ:1664 standalone/drakTermServ:1680
-#: standalone/drakTermServ:1700 standalone/drakauth:36
-#: standalone/drakbackup:511 standalone/drakbackup:625
-#: standalone/drakbackup:1110 standalone/drakbackup:1141
-#: standalone/drakbackup:1332 standalone/drakbackup:1664
-#: standalone/drakbackup:1820 standalone/drakbackup:2548
-#: standalone/drakbackup:4463 standalone/drakclock:124
-#: standalone/drakconnect:676 standalone/drakconnect:680
-#: standalone/drakconnect:685 standalone/drakconnect:700
-#: standalone/drakfont:209 standalone/drakfont:222 standalone/drakfont:260
-#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakhosts:98
-#: standalone/drakhosts:246 standalone/drakhosts:253 standalone/drakhosts:260
-#: standalone/draknfs:306 standalone/draknfs:609 standalone/draknfs:616
-#: standalone/draknfs:623 standalone/drakroam:33 standalone/draksambashare:384
-#: standalone/draksambashare:388 standalone/draksambashare:391
-#: standalone/draksambashare:394 standalone/draksambashare:453
-#: standalone/draksambashare:477 standalone/draksambashare:551
-#: standalone/draksambashare:633 standalone/draksambashare:700
-#: standalone/draksambashare:800 standalone/draksambashare:807
-#: standalone/draksambashare:942 standalone/draksambashare:1133
-#: standalone/draksambashare:1142 standalone/draksambashare:1151
-#: standalone/draksambashare:1172 standalone/draksambashare:1181
-#: standalone/draksambashare:1190 standalone/draksambashare:1210
-#: standalone/draksambashare:1218 standalone/draksambashare:1230
-#: standalone/draksplash:162 standalone/drakxtv:107
-#: standalone/finish-install:79 standalone/logdrake:171
-#: standalone/logdrake:439 standalone/logdrake:444 standalone/scannerdrake:59
-#: standalone/scannerdrake:202 standalone/scannerdrake:261
-#: standalone/scannerdrake:732 standalone/scannerdrake:743
-#: standalone/scannerdrake:882 standalone/scannerdrake:893
-#: standalone/scannerdrake:963 wizards.pm:95 wizards.pm:99 wizards.pm:121
-#, c-format
-msgid "Error"
-msgstr "Fejl"
-
-#: ../move/move.pm:605 install_steps.pm:82
-#, c-format
-msgid ""
-"An error occurred, but I do not know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Der opstod en fejl, men jeg ved ikke hvordan den kan håndteres på en\n"
-"pæn måde.\n"
-"Fortsæt på eget ansvar!"
-
-#: ../move/move.pm:660 install_steps_interactive.pm:37
-#, c-format
-msgid "An error occurred"
-msgstr "Der er opstået en fejl"
-
-#: ../move/move.pm:666
-#, c-format
-msgid ""
-"An error occurred:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"This may come from corrupted system configuration files\n"
-"on the USB key, in this case removing them and then\n"
-"rebooting Mandriva Move would fix the problem. To do\n"
-"so, click on the corresponding button.\n"
-"\n"
-"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-"Der skete en fejl:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"Dette kan komme fra beskadigede konfigurationsfiler\n"
-"på USB-nøglen, hvis det er tilfældet vil fjernelse af filerne og dernæst\n"
-"genstarte Mandriva Move ordne problemet. Klik på den\n"
-"tilsvarende knap for at gøre dette.\n"
-"\n"
-"\n"
-"Du kan også genstarte og fjerne USB-nøglen, eller\n"
-"undersøge dens indhold under et andet operativsystem, eller endog have\n"
-"et kig på logfiler i konsol nummer 3 og 4 for at forsøge at finde ud af\n"
-"hvad der sker."
-
-#: ../move/move.pm:681
-#, c-format
-msgid "Remove system config files"
-msgstr "Fjern systemkonfigurationsfiler"
-
-#: ../move/move.pm:682
-#, c-format
-msgid "Simply reboot"
-msgstr "Genstart simpelthen"
-
-#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr "Du kan kun køre uden cdrom-understøttelse"
-
-#: ../move/tree/mdk_totem:71
-#, c-format
-msgid "Kill those programs"
-msgstr "Dræb disse programmer"
-
-#: ../move/tree/mdk_totem:72
-#, c-format
-msgid "No CDROM support"
-msgstr "Ingen cdrom-understøttelse"
-
-#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1062 diskdrake/interactive.pm:1072
-#: diskdrake/interactive.pm:1125
-#, c-format
-msgid "Read carefully!"
-msgstr "Læs omhyggeligt!"
-
-#: ../move/tree/mdk_totem:77
-#, c-format
-msgid ""
-"You can not use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-"Du kan ikke bruge en anden CDROM, når de følgende programmer kører:\n"
-"%s"
-
-#: ../move/tree/mdk_totem:101
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr "Kopierer til hukommelse for at tillade fjernelse af cdrommen"
-
-#: Xconfig/card.pm:13
-#, c-format
-msgid "256 kB"
-msgstr "256 kb"
-
-#: Xconfig/card.pm:14
-#, c-format
-msgid "512 kB"
-msgstr "512 kb"
-
-#: Xconfig/card.pm:15
-#, c-format
-msgid "1 MB"
-msgstr "1 Mb"
-
-#: Xconfig/card.pm:16
-#, c-format
-msgid "2 MB"
-msgstr "2 Mb"
-
-#: Xconfig/card.pm:17
-#, c-format
-msgid "4 MB"
-msgstr "4 Mb"
-
-#: Xconfig/card.pm:18
-#, c-format
-msgid "8 MB"
-msgstr "8 Mb"
-
-#: Xconfig/card.pm:19
-#, c-format
-msgid "16 MB"
-msgstr "16 Mb"
-
-#: Xconfig/card.pm:20
-#, c-format
-msgid "32 MB"
-msgstr "32 Mb"
-
-#: Xconfig/card.pm:21
-#, c-format
-msgid "64 MB or more"
-msgstr "64 Mb eller mere"
-
-#: Xconfig/card.pm:162
-#, c-format
-msgid "X server"
-msgstr "X-server"
-
-#: Xconfig/card.pm:163
-#, c-format
-msgid "Choose an X server"
-msgstr "Vælg en X-server"
-
-#: Xconfig/card.pm:195
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Flerskærms-konfiguration"
-
-#: Xconfig/card.pm:196
-#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Dit system understøtter konfiguration af flere skærme\n"
-"Hvad vil du gøre?"
-
-#: Xconfig/card.pm:265
-#, c-format
-msgid "Can not install Xorg package: %s"
-msgstr "Kan ikke installere Xorg-pakke: %s"
-
-#: Xconfig/card.pm:275
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Vælg hukommelsesmængde for dit grafikkort"
-
-#: Xconfig/card.pm:371
-#, c-format
-msgid "Xorg configuration"
-msgstr "Xorg konfiguration"
-
-#: Xconfig/card.pm:373
-#, c-format
-msgid "Which configuration of Xorg do you want to have?"
-msgstr "Hvilken konfiguration af Xorg ønsker du?"
-
-#: Xconfig/card.pm:406
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Konfigurér alle skærme uafhængigt"
-
-#: Xconfig/card.pm:407
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Brug Xinerama-udvidelse"
-
-#: Xconfig/card.pm:412
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Konfigurér kun kort \"%s\"%s"
-
-#: Xconfig/card.pm:424 Xconfig/various.pm:23
-#, c-format
-msgid "Xorg %s"
-msgstr "Xorg %s"
-
-#: Xconfig/card.pm:431 Xconfig/various.pm:22
-#, c-format
-msgid "Xorg %s with 3D hardware acceleration"
-msgstr "Xorg %s med 3D hardware acceleration"
-
-#: Xconfig/card.pm:433
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with Xorg %s."
-msgstr "Dit kort kan have 3D hardware accelerations-understøttelse med Xorg %s."
-
-#: Xconfig/card.pm:439
-#, c-format
-msgid "Xorg %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "Xorg %s med EKSPERMENTAL 3d hardware acceleration"
-
-#: Xconfig/card.pm:441
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with Xorg %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Dit kort kan have 3D acceleration understøttelse, men kun med Xorg %s,\n"
-"VIGTIGT: Dette er eksperimentelt og kan få din maskine til at låse eller gå "
-"ned."
-
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:1021
-#, c-format
-msgid "Custom"
-msgstr "Tilpasset"
-
-#: Xconfig/main.pm:127 any.pm:742 diskdrake/dav.pm:26 help.pm:15
-#: install_steps_interactive.pm:1303 printer/printerdrake.pm:882
-#: printer/printerdrake.pm:899 printer/printerdrake.pm:4546
-#: printer/printerdrake.pm:5010 standalone/drakhosts:263
-#: standalone/drakroam:230 standalone/draksplash:93 standalone/logdrake:176
-#: standalone/net_applet:103 standalone/scannerdrake:494
-#, c-format
-msgid "Quit"
-msgstr "Afslut"
-
-#: Xconfig/main.pm:129
-#, c-format
-msgid "Graphic Card"
-msgstr "Grafikkort"
-
-#: Xconfig/main.pm:132 Xconfig/monitor.pm:110
-#, c-format
-msgid "Monitor"
-msgstr "Skærm"
-
-#: Xconfig/main.pm:135 Xconfig/resolution_and_depth.pm:289
-#, c-format
-msgid "Resolution"
-msgstr "Opløsning"
-
-#: Xconfig/main.pm:138
-#, c-format
-msgid "Test"
-msgstr "Afprøv"
-
-#: Xconfig/main.pm:143 diskdrake/dav.pm:65 diskdrake/interactive.pm:449
-#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
-#: printer/printerdrake.pm:1112 standalone/drakfont:493
-#: standalone/drakfont:548
-#, c-format
-msgid "Options"
-msgstr "Valg"
-
-#: Xconfig/main.pm:178
-#, c-format
-msgid "Your Xorg configuration file is broken, we will ignore it."
-msgstr "Din Xorg-konfigurationsfil er i stykker, vi vil ignorere den."
-
-#: Xconfig/main.pm:196
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Behold ændringer?\n"
-"Nuværende konfiguration er:\n"
-"\n"
-"%s"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor for head #%d"
-msgstr "Vælg en skærmtype for hoved nummer %d"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor"
-msgstr "Vælg en skærmtype"
-
-#: Xconfig/monitor.pm:117
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n Play"
-
-#: Xconfig/monitor.pm:118 mouse.pm:49
-#, c-format
-msgid "Generic"
-msgstr "Standard"
-
-#: Xconfig/monitor.pm:119 standalone/drakconnect:591 standalone/harddrake2:54
-#: standalone/harddrake2:88
-#, c-format
-msgid "Vendor"
-msgstr "Producent"
-
-#: Xconfig/monitor.pm:129
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "Undersøgning for Plug'n Play mislykkedes. Vælg venligst den rigtige skærm"
-
-#: Xconfig/monitor.pm:137
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"De to kritiske parametre er den lodrette frekvens, som angiver hvor mange "
-"gange (per sekund) hele skærmbilledet bliver genopfrisket, og (vigtigst af "
-"alt) den vandrette frekvens, som angiver antallet af vandrette linier der "
-"kan tegnes på skærmen hvert sekund.\n"
-"\n"
-"Det er MEGET VIGTIGT at du ikke angiver en skærmtype med "
-"opdateringsfrekvenser, der er større end din skærms formåen: du risikerer at "
-"ødelægge din skærm.\n"
-"Hvis du er i tvivl, bør du vælge en opsætning, som du med SIKKERHED ved\n"
-"at din skærm kan klare."
-
-#: Xconfig/monitor.pm:144
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Vandret opdateringsfrekvens"
-
-#: Xconfig/monitor.pm:145
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Lodret opdateringsfrekvens"
-
-#: Xconfig/resolution_and_depth.pm:10
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 farver (8 bit)"
-
-#: Xconfig/resolution_and_depth.pm:11
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tusinde farver (15 bit)"
-
-#: Xconfig/resolution_and_depth.pm:12
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tusinde farver (16 bit)"
-
-#: Xconfig/resolution_and_depth.pm:13
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 millioner (24 bit)"
-
-#: Xconfig/resolution_and_depth.pm:127
-#, c-format
-msgid "Resolutions"
-msgstr "Opløsninger"
-
-#: Xconfig/resolution_and_depth.pm:311 diskdrake/hd_gtk.pm:336
-#: install_steps_gtk.pm:288 mouse.pm:168 services.pm:162
-#: standalone/drakbackup:1606 standalone/drakperm:250
-#, c-format
-msgid "Other"
-msgstr "Andet"
-
-#: Xconfig/resolution_and_depth.pm:360
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Vælg opløsning og farvedybde"
-
-#: Xconfig/resolution_and_depth.pm:361
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Grafikkort: %s"
-
-#: Xconfig/resolution_and_depth.pm:375 interactive.pm:119 interactive.pm:436
-#: interactive/http.pm:103 interactive/http.pm:156 interactive/newt.pm:321
-#: interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:143
-#: standalone/drakTermServ:222 standalone/drakTermServ:543
-#: standalone/drakbackup:1372 standalone/drakbackup:4123
-#: standalone/drakbackup:4183 standalone/drakbackup:4227
-#: standalone/drakbackup:4481 standalone/drakconnect:158
-#: standalone/drakconnect:852 standalone/drakconnect:939
-#: standalone/drakconnect:1030 standalone/drakfont:569 standalone/drakfont:579
-#: standalone/draksplash:173 standalone/drakups:210 standalone/net_monitor:339
-#: ugtk2.pm:392 ugtk2.pm:490 ugtk2.pm:899 ugtk2.pm:922
-#, c-format
-msgid "Ok"
-msgstr "O.k."
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/smbnfs_gtk.pm:80 help.pm:90
-#: help.pm:445 install_steps_gtk.pm:455 install_steps_interactive.pm:406
-#: install_steps_interactive.pm:811 interactive.pm:120 interactive.pm:437
-#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
-#: interactive/stdio.pm:39 interactive/stdio.pm:142
-#: printer/printerdrake.pm:3882 standalone/drakautoinst:215
-#: standalone/drakbackup:1372 standalone/drakbackup:4052
-#: standalone/drakbackup:4056 standalone/drakbackup:4111
-#: standalone/drakbackup:4481 standalone/drakconnect:157
-#: standalone/drakconnect:937 standalone/drakconnect:1029
-#: standalone/drakfont:579 standalone/drakfont:655 standalone/drakfont:733
-#: standalone/draksplash:173 standalone/drakups:217 standalone/logdrake:176
-#: standalone/net_monitor:338 ugtk2.pm:386 ugtk2.pm:488 ugtk2.pm:497
-#: ugtk2.pm:899
-#, c-format
-msgid "Cancel"
-msgstr "Annullér"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/hd_gtk.pm:150
-#: install_steps_gtk.pm:232 install_steps_gtk.pm:617 interactive.pm:567
-#: interactive/gtk.pm:682 interactive/gtk.pm:684 standalone/drakTermServ:311
-#: standalone/drakbackup:4048 standalone/drakbug:105
-#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:511 standalone/draknfs:206 standalone/drakperm:133
-#: standalone/draksambashare:320 standalone/draksec:344 standalone/draksec:346
-#: standalone/draksec:364 standalone/draksec:366 ugtk2.pm:1031 ugtk2.pm:1032
-#, c-format
-msgid "Help"
-msgstr "Hjælp"
-
-#: Xconfig/test.pm:30
-#, c-format
-msgid "Test of the configuration"
-msgstr "Test konfigurationen"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Ønsker du at afprøve konfigurationen?"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Advarsel: afprøvning af dette grafikkort kan få din maskine til at fryse"
-
-#: Xconfig/test.pm:69
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"En fejl indtraf:\n"
-"%s\n"
-"Prøv at ændre nogen parametre"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Forsvinder om %d sekunder"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Er dette den korrekte indstilling?"
-
-#: Xconfig/various.pm:29
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Tastatur-type: %s\n"
-
-#: Xconfig/various.pm:30
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Muse-type: %s\n"
-
-#: Xconfig/various.pm:31
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Muse-enhed: %s\n"
-
-#: Xconfig/various.pm:33
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Skærm: %s\n"
-
-#: Xconfig/various.pm:34
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Skærms vandrette frekvens: %s\n"
-
-#: Xconfig/various.pm:35
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Skærms lodrette frekvens: %s\n"
-
-#: Xconfig/various.pm:37
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Grafikkort: %s\n"
-
-#: Xconfig/various.pm:38
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Grafik-hukommelse: %s kb\n"
-
-#: Xconfig/various.pm:40
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Farvedybde: %s\n"
-
-#: Xconfig/various.pm:41
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Opløsninger %s\n"
-
-#: Xconfig/various.pm:43
-#, c-format
-msgid "Xorg driver: %s\n"
-msgstr "Xorg driver: %s\n"
-
-#: Xconfig/various.pm:72
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "Start X ved systemstart"
-
-#: Xconfig/various.pm:74
-#, c-format
-msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(Xorg) upon booting.\n"
-"Would you like Xorg to start when you reboot?"
-msgstr ""
-"Jeg kan sætte din maskine op til automatisk at starte X ved\n"
-"opstart. Ønsker du at starte X hver gang du genstarter?"
-
-#: Xconfig/various.pm:87
-#, c-format
-msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
-msgstr ""
-"Grafikkortet ser ud til at have en TV-UD-forbindelse.\n"
-"Den kan konfigureres så den fungerer med billedbuffer\n"
-"\n"
-"Til dette skal du tilslutte grafikkortet til tv'et inden du starter "
-"maskinen.\n"
-"Vælg dernæst indgangen \"TVout\" i starthåntereren.\n"
-"\n"
-"Har du denne funktion?"
-
-#: Xconfig/various.pm:99
-#, c-format
-msgid "What norm is your TV using?"
-msgstr "Hvilken standard bruger dit tv?"
-
-#: Xconfig/xfree.pm:648
-#, c-format
-msgid ""
-"_:weird aspect ratio\n"
-"other"
-msgstr "andet"
-
-#: any.pm:153 harddrake/sound.pm:195 interactive.pm:474 pkgs.pm:474
-#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
-#: standalone/drakups:99 standalone/drakxtv:92 standalone/harddrake2:375
-#: standalone/service_harddrake:235
+#: any.pm:157 diskdrake/interactive.pm:422 diskdrake/interactive.pm:617
+#: diskdrake/interactive.pm:798 diskdrake/interactive.pm:842
+#: diskdrake/interactive.pm:904 diskdrake/interactive.pm:1188 do_pkgs.pm:209
+#: do_pkgs.pm:255 harddrake/sound.pm:195 interactive.pm:576
#, c-format
msgid "Please wait"
msgstr "Vent venligst"
-#: any.pm:153
+#: any.pm:157
#, c-format
msgid "Bootloader installation in progress"
msgstr "Installation af systemopstarteren er i gang"
-#: any.pm:164
+#: any.pm:168
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -871,12 +50,12 @@ msgstr ""
"\n"
"Tildel en ny Volumen-ID?"
-#: any.pm:175
+#: any.pm:179
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Installation af opstarter mislykkedes. Den følgende fejl opstod:"
-#: any.pm:181
+#: any.pm:185
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -893,7 +72,7 @@ msgstr ""
" Skriv så: shut-down\n"
"Ved næste opstart burde du se systemstarteren."
-#: any.pm:219
+#: any.pm:223
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -908,258 +87,270 @@ msgstr ""
"\n"
"Hvilket drev starter du op fra?"
-#: any.pm:242 help.pm:740
+#: any.pm:246
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Første sektor på disken (MBR)"
-#: any.pm:243
+#: any.pm:247
#, c-format
msgid "First sector of the root partition"
msgstr "Første sektor af rodpartitionen"
-#: any.pm:245
+#: any.pm:249
#, c-format
msgid "On Floppy"
msgstr "På diskette"
-#: any.pm:247 help.pm:740 printer/printerdrake.pm:4203
+#: any.pm:251
#, c-format
msgid "Skip"
msgstr "Spring over"
-#: any.pm:251
+#: any.pm:255
#, c-format
msgid "LILO/grub Installation"
msgstr "LILO/grub-installering"
-#: any.pm:252
+#: any.pm:257
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Hvor vil du placere opstartsprogrammet?"
-#: any.pm:278 standalone/drakboot:269
+#: any.pm:284
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfiguration af opstartsudseende"
-#: any.pm:280 any.pm:281 any.pm:314 any.pm:315
+#: any.pm:294 any.pm:326 any.pm:327
#, c-format
msgid "Bootloader main options"
msgstr "Systemopstarterens hovedindstillinger"
-#: any.pm:286
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Angiv RAM-størrelse i Mb"
-
-#: any.pm:288
-#, c-format
-msgid "Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Indstillingen ``Begræns kommandolinie-indstillinger'' er intet værd uden\n"
-"en adgangskode"
-
-#: any.pm:289 any.pm:628 authentication.pm:192
-#, c-format
-msgid "The passwords do not match"
-msgstr "Adgangskoderne stemmer ikke overens"
-
-#: any.pm:289 any.pm:628 authentication.pm:192 diskdrake/interactive.pm:1336
+#: any.pm:299
#, c-format
-msgid "Please try again"
-msgstr "Prøv igen"
+msgid "Bootloader"
+msgstr "Systemopstarter"
-#: any.pm:294 any.pm:319
+#: any.pm:300 any.pm:331
#, c-format
msgid "Bootloader to use"
msgstr "Systemopstarter der skal bruges"
-#: any.pm:296 any.pm:321
+#: any.pm:302 any.pm:333
#, c-format
msgid "Boot device"
msgstr "Opstartsenhed"
-#: any.pm:298
+#: any.pm:304
+#, c-format
+msgid "Main options"
+msgstr "Hovedvalg"
+
+#: any.pm:305
#, c-format
msgid "Delay before booting default image"
msgstr "Ventetid før opstart af forvalgt styresystem"
-#: any.pm:299
+#: any.pm:306
#, c-format
msgid "Enable ACPI"
msgstr "Aktivér ACPI"
-#: any.pm:301
+#: any.pm:307
#, c-format
-msgid "Force no APIC"
-msgstr "Gennemtving ingen APIC"
+msgid "Enable APIC"
+msgstr "Aktivér APIC"
-#: any.pm:303
+#: any.pm:308
#, c-format
-msgid "Force No Local APIC"
-msgstr "Gennemtving ingen lokal APIC"
+msgid "Enable Local APIC"
+msgstr "Aktivér lokal APIC"
-#: any.pm:305 any.pm:662 authentication.pm:197 diskdrake/smbnfs_gtk.pm:180
-#: network/netconnect.pm:584 printer/printerdrake.pm:1867
-#: printer/printerdrake.pm:1988 standalone/drakbackup:1650
-#: standalone/drakbackup:3641 standalone/drakups:297
+#: any.pm:310 any.pm:686 authentication.pm:196 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Adgangskode"
-#: any.pm:306 any.pm:663 authentication.pm:198
+#: any.pm:312 authentication.pm:207
+#, c-format
+msgid "The passwords do not match"
+msgstr "Adgangskoderne stemmer ikke overens"
+
+#: any.pm:312 authentication.pm:207 diskdrake/interactive.pm:1348
+#, c-format
+msgid "Please try again"
+msgstr "Prøv igen"
+
+#: any.pm:313
+#, fuzzy, c-format
+msgid "You can not use a password with %s"
+msgstr "Du kan ikke bruge et krypteret filsystem for monteringspunkt %s"
+
+#: any.pm:316 any.pm:687 authentication.pm:197
#, c-format
msgid "Password (again)"
msgstr "Adgangskode (igen)"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "Restrict command line options"
msgstr "Begræns kommandolinie-indstillinger"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "restrict"
msgstr "begræns"
-#: any.pm:309
+#: any.pm:318
+#, c-format
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr ""
+"Indstillingen ``Begræns kommandolinie-indstillinger'' er intet værd uden\n"
+"en adgangskode"
+
+#: any.pm:320
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Rens /tmp ved hver systemopstart"
-#: any.pm:310
+#: any.pm:321
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Præcis RAM-mængde, hvis påkrævet (fandt %d Mb)"
-#: any.pm:320
+#: any.pm:322
+#, c-format
+msgid "Give the ram size in MB"
+msgstr "Angiv RAM-størrelse i Mb"
+
+#: any.pm:332
#, c-format
msgid "Init Message"
msgstr "Init-besked"
-#: any.pm:322
+#: any.pm:334
#, c-format
msgid "Open Firmware Delay"
msgstr "Åben firmwareforsinkelse"
-#: any.pm:323
+#: any.pm:335
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Ventetid før kerneopstart"
-#: any.pm:324
+#: any.pm:336
#, c-format
msgid "Enable CD Boot?"
msgstr "Skal det være muligt at starte fra CD?"
-#: any.pm:325
+#: any.pm:337
#, c-format
msgid "Enable OF Boot?"
msgstr "Skal det være muligt at starte fra OF?"
-#: any.pm:326
+#: any.pm:338
#, c-format
msgid "Default OS?"
msgstr "Forvalgt styresystem?"
-#: any.pm:380
+#: any.pm:404
#, c-format
msgid "Image"
msgstr "Billede"
-#: any.pm:381 any.pm:391
+#: any.pm:405 any.pm:418
#, c-format
msgid "Root"
msgstr "Rod"
-#: any.pm:382 any.pm:404
+#: any.pm:406 any.pm:431
#, c-format
msgid "Append"
msgstr "Vedhæft"
-#: any.pm:384 standalone/drakboot:271 standalone/drakboot:275
+#: any.pm:408
+#, c-format
+msgid "Xen append"
+msgstr "Xen-tilføjning"
+
+#: any.pm:411
#, c-format
msgid "Video mode"
msgstr "Videoindstilling"
-#: any.pm:386
+#: any.pm:413
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:387
+#: any.pm:414
#, c-format
msgid "Network profile"
msgstr "Netværksprofil"
-#: any.pm:396 any.pm:401 any.pm:403 diskdrake/interactive.pm:450
+#: any.pm:423 any.pm:428 any.pm:430 diskdrake/interactive.pm:443
#, c-format
msgid "Label"
msgstr "Mærkat"
-#: any.pm:398 any.pm:408 harddrake/v4l.pm:438 standalone/drakbackup:2104
-#: standalone/draksec:52
+#: any.pm:425 any.pm:433 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Standard"
-#: any.pm:405
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd-størrelse"
-
-#: any.pm:407
+#: any.pm:432
#, c-format
msgid "NoVideo"
msgstr "Ingen video"
-#: any.pm:418
+#: any.pm:443
#, c-format
msgid "Empty label not allowed"
msgstr "Tom mærkat er ikke tilladt"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a kernel image"
msgstr "Du skal angive en kerne-fil"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a root partition"
msgstr "Du skal angive en root-partition"
-#: any.pm:420
+#: any.pm:445
#, c-format
msgid "This label is already used"
msgstr "Denne mærkat er allerede brugt"
-#: any.pm:434
+#: any.pm:459
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Hvilken type ønsker du at tilføje"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Andet styresystem (SunOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Andet styresystem (MacOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (Windows...)"
msgstr "Andet styresystem (Windows...)"
-#: any.pm:464
+#: any.pm:489
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -1168,92 +359,88 @@ msgstr ""
"Her er følgende typer indgange.\n"
"Du kan tilføje flere eller ændre de eksisterende."
-#: any.pm:614
+#: any.pm:640
#, c-format
msgid "access to X programs"
msgstr "adgang til X-programmer"
-#: any.pm:615
+#: any.pm:641
#, c-format
msgid "access to rpm tools"
msgstr "adgang til rpm-værktøjer"
-#: any.pm:616
+#: any.pm:642
#, c-format
msgid "allow \"su\""
msgstr "tillad \"su\""
-#: any.pm:617
+#: any.pm:643
#, c-format
msgid "access to administrative files"
msgstr "adgang til administrative filer"
-#: any.pm:618
+#: any.pm:644
#, c-format
msgid "access to network tools"
msgstr "adgang til netværksværktøjer"
-#: any.pm:619
+#: any.pm:645
#, c-format
msgid "access to compilation tools"
msgstr "adgang til oversættelsesværktøjer"
-#: any.pm:624
+#: any.pm:650
#, c-format
msgid "(already added %s)"
msgstr "(har allerede tilføjet %s)"
-#: any.pm:629
-#, c-format
-msgid "This password is too simple"
-msgstr "Adgangskoden er for simpel"
-
-#: any.pm:630
+#: any.pm:657
#, c-format
msgid "Please give a user name"
msgstr "Indtast et brugernavn"
-#: any.pm:631
+#: any.pm:658
#, c-format
-msgid "The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Brugernavnet må kun indeholde små bogstaver, tal, `-' og `_'"
-#: any.pm:632
+#: any.pm:659
#, c-format
msgid "The user name is too long"
msgstr "Dette brugernavn er for langt"
-#: any.pm:633
+#: any.pm:660
#, c-format
msgid "This user name has already been added"
msgstr "Dette brugernavn eksisterer allerede"
-#: any.pm:634 any.pm:665
+#: any.pm:661 any.pm:689
#, c-format
msgid "User ID"
msgstr "Bruger-id"
-#: any.pm:635 any.pm:666
+#: any.pm:662 any.pm:690
#, c-format
msgid "Group ID"
msgstr "Gruppe-id"
-#: any.pm:638
+#: any.pm:665
#, c-format
msgid "%s must be a number"
msgstr "%s skal være et tal"
-#: any.pm:639
+#: any.pm:666
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s burde være over 500. Acceptér alligevel?"
-#: any.pm:644 standalone/draksambashare:1214
+#: any.pm:671
#, c-format
msgid "Add user"
msgstr "Tilføj bruger"
-#: any.pm:646
+#: any.pm:673
#, c-format
msgid ""
"Enter a user\n"
@@ -1262,169 +449,169 @@ msgstr ""
"Indtast en bruger\n"
"%s"
-#: any.pm:649 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:154
-#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:81 help.pm:531
-#: interactive/http.pm:151 printer/printerdrake.pm:197
-#: printer/printerdrake.pm:382 printer/printerdrake.pm:5010
-#: standalone/drakbackup:2836 standalone/scannerdrake:685
-#: standalone/scannerdrake:835
+#: any.pm:676 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:166
+#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:82
+#: interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Færdig"
-#: any.pm:650 help.pm:52
+#: any.pm:677
#, c-format
msgid "Accept user"
msgstr "Acceptér bruger"
-#: any.pm:660
+#: any.pm:682
#, c-format
msgid "Real name"
msgstr "Rigtige navn"
-#: any.pm:661 standalone/drakbackup:1645
+#: any.pm:685
#, c-format
msgid "Login name"
msgstr "Logindnavn"
-#: any.pm:664
+#: any.pm:688
#, c-format
msgid "Shell"
msgstr "Skal"
-#: any.pm:668
-#, c-format
-msgid "Icon"
-msgstr "Ikon"
-
-#: any.pm:715 security/l10n.pm:14
+#: any.pm:735 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Autologin"
-#: any.pm:716
+#: any.pm:736
#, c-format
msgid "I can set up your computer to automatically log on one user."
-msgstr "Jeg kan sætte din maskine op til automatisk at logge en bestemt bruger på."
+msgstr ""
+"Jeg kan sætte din maskine op til automatisk at logge en bestemt bruger på."
-#: any.pm:717
+#: any.pm:737
#, c-format
msgid "Use this feature"
msgstr "Brug denne facilitet"
-#: any.pm:718
+#: any.pm:738
#, c-format
msgid "Choose the default user:"
msgstr "Vælg den forvalgte bruger:"
-#: any.pm:719
+#: any.pm:739
#, c-format
msgid "Choose the window manager to run:"
msgstr "Vælg den vindueshåndtering du ønsker at benytte:"
-#: any.pm:740
+#: any.pm:767
#, c-format
msgid "License agreement"
msgstr "Licensaftale"
-#: any.pm:745
+#: any.pm:770 diskdrake/dav.pm:26
+#, c-format
+msgid "Quit"
+msgstr "Afslut"
+
+#: any.pm:773
#, c-format
msgid "Release Notes"
msgstr "Udgivelsesnoter"
-#: any.pm:748 help.pm:15 install_steps_gtk.pm:539
-#: install_steps_interactive.pm:715 standalone/drakautoinst:214
+#: any.pm:776
#, c-format
msgid "Accept"
msgstr "Acceptér"
-#: any.pm:748 install_steps_gtk.pm:539 install_steps_interactive.pm:715
+#: any.pm:776
#, c-format
msgid "Refuse"
msgstr "Nægt"
-#: any.pm:765 any.pm:833
+#: any.pm:795 any.pm:863
#, c-format
msgid "Please choose a language to use."
msgstr "Vælg det sprog, der skal bruges."
-#: any.pm:766 any.pm:834
+#: any.pm:796 any.pm:864
#, c-format
msgid "Language choice"
msgstr "Sprogvalg"
-#: any.pm:794
+#: any.pm:826
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
-msgstr "Du kan vælge andre sprog der vil være tilgængelige efter installationen"
+msgstr ""
+"Du kan vælge andre sprog der vil være tilgængelige efter installationen"
-#: any.pm:797
+#: any.pm:829
#, c-format
msgid "Multi languages"
msgstr "Flere sprog"
-#: any.pm:813 any.pm:842 help.pm:648
+#: any.pm:841 any.pm:872
#, c-format
-msgid "Use Unicode by default"
-msgstr "Brug ISO 10646 som standard"
+msgid "Old compatibility (non UTF-8) encoding"
+msgstr "Gammel kompatibilitetskoding (ikke UTF-8)"
-#: any.pm:814 help.pm:648
+#: any.pm:843
#, c-format
msgid "All languages"
msgstr "Alle sprog"
-#: any.pm:888 help.pm:567 help.pm:856 install_steps_interactive.pm:932
+#: any.pm:918
#, c-format
msgid "Country / Region"
msgstr "Land / Region"
-#: any.pm:890
+#: any.pm:920
#, c-format
msgid "Please choose your country."
msgstr "Vælg dit land."
-#: any.pm:892
+#: any.pm:922
#, c-format
msgid "Here is the full list of available countries"
msgstr "Her er den komplette liste over tilgængelige lande"
-#: any.pm:893
+#: any.pm:923
#, c-format
msgid "Other Countries"
msgstr "Andre lande"
-#: any.pm:893 help.pm:52 help.pm:410 help.pm:432 help.pm:648 help.pm:723
-#: interactive.pm:397
+#: any.pm:923 interactive.pm:477
#, c-format
msgid "Advanced"
msgstr "Avanceret"
-#: any.pm:901
+#: any.pm:929
#, c-format
msgid "Input method:"
msgstr "Indtastningsmetode:"
-#: any.pm:904 install_any.pm:422 network/netconnect.pm:317
-#: network/netconnect.pm:322 network/netconnect.pm:1237 network/wireless.pm:7
-#: printer/printerdrake.pm:117
+#: any.pm:932
#, c-format
msgid "None"
msgstr "Ingen"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "No sharing"
msgstr "Ingen fildeling"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "Allow all users"
msgstr "Tillad alle brugere"
-#: any.pm:1025
+#: any.pm:1012
+#, c-format
+msgid "Custom"
+msgstr "Tilpasset"
+
+#: any.pm:1016
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1438,7 +625,7 @@ msgstr ""
"Tilladelse af dette vil sætte brugere i stand til simpelthen at klikke på "
"'Fildeling' i konqueror og nautilus.\n"
-#: any.pm:1037
+#: any.pm:1028
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -1447,7 +634,7 @@ msgstr ""
"NFS: det traditionlle Unix fildelingssystem, med mindre funktionalitet på "
"Mac og Windows."
-#: any.pm:1040
+#: any.pm:1031
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -1456,28 +643,23 @@ msgstr ""
"SMB: et fildelingssystem brugt på Windows, Mac OS X og mange moderne Linux-"
"systemer."
-#: any.pm:1048
+#: any.pm:1039
#, c-format
-msgid "You can export using NFS or SMB. Please select which you would like to use."
+msgid ""
+"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Du kan eksportere med NFS eller SMB. Hvilken vil du bruge"
-#: any.pm:1073
+#: any.pm:1064
#, c-format
msgid "Launch userdrake"
msgstr "Start userdrake"
-#: any.pm:1073 printer/printerdrake.pm:4085 printer/printerdrake.pm:4088
-#: printer/printerdrake.pm:4089 printer/printerdrake.pm:4090
-#: printer/printerdrake.pm:5328 standalone/drakTermServ:321
-#: standalone/drakbackup:4245 standalone/drakbug:126 standalone/drakfont:499
-#: standalone/drakids:64 standalone/drakids:77 standalone/drakids:85
-#: standalone/draknfs:210 standalone/net_monitor:117
-#: standalone/printerdrake:583
+#: any.pm:1064 interactive/gtk.pm:747
#, c-format
msgid "Close"
msgstr "Luk"
-#: any.pm:1075
+#: any.pm:1066
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -1486,6 +668,56 @@ msgstr ""
"Deling per bruger bruger gruppen 'fileshare'. \n"
"Du kan bruge userdrake til at tilføje en bruger til denne gruppe."
+#: any.pm:1158
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Log ud og tryk herefter på Ctrl-Alt-Bak"
+
+#: any.pm:1162
+#, c-format
+msgid "You need to log out and back in again for changes to take effect"
+msgstr "Du skal logge ud og ind igen for at ændringerne skal gælde"
+
+#: any.pm:1212
+#, c-format
+msgid "Timezone"
+msgstr "Tidszone"
+
+#: any.pm:1212
+#, c-format
+msgid "Which is your timezone?"
+msgstr "Hvad er din tidszone?"
+
+#: any.pm:1224 any.pm:1226
+#, c-format
+msgid "Date, Clock & Time Zone Settings"
+msgstr "Dato-, klokke- og tidszoneopsætning"
+
+#: any.pm:1227
+#, c-format
+msgid "What is the best time?"
+msgstr "Hvad er den bedste tid?"
+
+#: any.pm:1231
+#, c-format
+msgid "%s (hardware clock set to UTC)"
+msgstr "%s (Maskin-ur sat til UTC)"
+
+#: any.pm:1232
+#, c-format
+msgid "%s (hardware clock set to local time)"
+msgstr "%s (Maskin-ur sat til lokal tid)"
+
+#: any.pm:1234
+#, c-format
+msgid "NTP Server"
+msgstr "NTP-server"
+
+#: any.pm:1235
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Automatisk tidssynkronisering (ved hjælp af NTP)"
+
#: authentication.pm:23
#, c-format
msgid "Local file"
@@ -1528,7 +760,8 @@ msgstr "Lokal fil:"
#: authentication.pm:66
#, c-format
-msgid "Use local for all authentication and information user tell in local file"
+msgid ""
+"Use local for all authentication and information user tell in local file"
msgstr ""
"Brug lokal for al autentificering og information, som bruger angiver i lokal "
"fil"
@@ -1610,7 +843,7 @@ msgstr "Autentificering LDAP"
msgid "LDAP Base dn"
msgstr "LDAP grundlæggende dn"
-#: authentication.pm:98 share/compssUsers.pl:102
+#: authentication.pm:98
#, c-format
msgid "LDAP Server"
msgstr "LDAP-server"
@@ -1640,14 +873,12 @@ msgstr "sikkerhedsopsætning (SASL/Kerberos)"
msgid "Authentication Active Directory"
msgstr "Autentifikation for Active Directory"
-#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:181
+#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Domæne"
-#: authentication.pm:124 diskdrake/dav.pm:63 help.pm:147
-#: printer/printerdrake.pm:75 share/compssUsers.pl:82
-#: standalone/drakTermServ:296
+#: authentication.pm:124 diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Server"
@@ -1737,39 +968,34 @@ msgstr "Brugernavn for domæneadministrator"
msgid "Domain Admin Password"
msgstr "Adgangskode for domæneadministrator"
-#: authentication.pm:181
+#: authentication.pm:181 authentication.pm:198
#, c-format
-msgid "Set administrator (root) password and network authentication methods"
-msgstr "Sæt administrator (root)-adgangskode og netværksautentifikationsmetoder"
+msgid "Authentication"
+msgstr "Identifikation"
#: authentication.pm:182
#, c-format
msgid "Set administrator (root) password"
msgstr "Sæt administrator (root) adgangskode"
-#: authentication.pm:183 standalone/drakvpn:1111
+#: authentication.pm:184
#, c-format
msgid "Authentication method"
msgstr "Autentifikationsmetode"
#. -PO: keep this short or else the buttons will not fit in the window
-#: authentication.pm:188 help.pm:723
+#: authentication.pm:189
#, c-format
msgid "No password"
msgstr "Ingen adgangskode"
-#: authentication.pm:194
+#: authentication.pm:210
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
-msgstr "Denne adgangskode er for nemt at gætte (det skal mindst være på %d tegn)"
-
-#: authentication.pm:199 network/netconnect.pm:322 network/netconnect.pm:585
-#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:481
-#, c-format
-msgid "Authentication"
-msgstr "Identifikation"
+msgstr ""
+"Denne adgangskode er for nemt at gætte (det skal mindst være på %d tegn)"
-#: authentication.pm:331
+#: authentication.pm:351
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "Kan ikke bruge rundkastning uden noget NIS-domæne"
@@ -1779,7 +1005,7 @@ msgstr "Kan ikke bruge rundkastning uden noget NIS-domæne"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:767
+#: bootloader.pm:880
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1794,42 +1020,42 @@ msgstr ""
"vent paa at starte standard-systemet.\n"
"\n"
-#: bootloader.pm:909
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO med grafisk menu"
-
-#: bootloader.pm:910
+#: bootloader.pm:1028
#, c-format
msgid "LILO with text menu"
msgstr "LILO med tekstmenu"
-#: bootloader.pm:911
+#: bootloader.pm:1029
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB med grafisk menu"
-#: bootloader.pm:912
+#: bootloader.pm:1030
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB med tekstmenu"
-#: bootloader.pm:913
+#: bootloader.pm:1031
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:990
+#: bootloader.pm:1032
+#, c-format
+msgid "SILO"
+msgstr ""
+
+#: bootloader.pm:1112
#, c-format
msgid "not enough room in /boot"
msgstr "Ikke nok plads i /boot"
-#: bootloader.pm:1483
+#: bootloader.pm:1679
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "Du kan ikke installere opstartsindlæseren på en %s-partition\n"
-#: bootloader.pm:1523
+#: bootloader.pm:1732
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1838,7 +1064,7 @@ msgstr ""
"Din opstartsindlæserkonfiguration behøver at opdateres da rækkefølgen på "
"dine partitioner er blevet ændret"
-#: bootloader.pm:1536
+#: bootloader.pm:1745
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
@@ -1847,242 +1073,55 @@ msgstr ""
"Opstartsindlæseren kan ikke blive installeret korrekt. Du skal lave "
"nødopstart og vælge \"%s\""
-#: bootloader.pm:1537
+#: bootloader.pm:1746
#, c-format
msgid "Re-install Boot Loader"
msgstr "Geninstallér systemopstarter"
-#: common.pm:134
+#: common.pm:129
+#, c-format
+msgid "B"
+msgstr "B"
+
+#: common.pm:129
#, c-format
msgid "KB"
msgstr "Kb"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "MB"
msgstr "Mb"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "GB"
msgstr "Gb"
-#: common.pm:142
+#: common.pm:137
#, c-format
msgid "TB"
msgstr "Tb"
-#: common.pm:150
+#: common.pm:145
#, c-format
msgid "%d minutes"
msgstr "%d minutter"
-#: common.pm:152
+#: common.pm:147
#, c-format
msgid "1 minute"
msgstr "1 minut"
-#: common.pm:154
+#: common.pm:149
#, c-format
msgid "%d seconds"
msgstr "%d sekunder"
-#: common.pm:260
-#, c-format
-msgid "kdesu missing"
-msgstr "kdesu mangler"
-
-#: common.pm:263
-#, c-format
-msgid "consolehelper missing"
-msgstr "konsolhjælper mangler"
-
-#: crypto.pm:13 crypto.pm:48 lang.pm:207 network/adsl_consts.pm:66
-#: network/adsl_consts.pm:75 network/adsl_consts.pm:84
-#, c-format
-msgid "Austria"
-msgstr "Østrig"
-
-#: crypto.pm:14 crypto.pm:47 lang.pm:208 standalone/drakxtv:48
-#, c-format
-msgid "Australia"
-msgstr "Australien"
-
-#: crypto.pm:15 crypto.pm:49 lang.pm:214 network/adsl_consts.pm:93
-#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
-#: network/adsl_consts.pm:123 network/netconnect.pm:44
-#, c-format
-msgid "Belgium"
-msgstr "Belgien"
-
-#: crypto.pm:16 crypto.pm:50 lang.pm:223 network/adsl_consts.pm:132
-#: network/adsl_consts.pm:143 network/adsl_consts.pm:152
-#: network/adsl_consts.pm:161
-#, c-format
-msgid "Brazil"
-msgstr "Brasilien"
-
-#: crypto.pm:17 crypto.pm:51 lang.pm:230
-#, c-format
-msgid "Canada"
-msgstr "Canada"
-
-#: crypto.pm:18 crypto.pm:74 lang.pm:235 network/adsl_consts.pm:891
-#: network/adsl_consts.pm:900 network/adsl_consts.pm:911
-#, c-format
-msgid "Switzerland"
-msgstr "Schweiz"
-
-#: crypto.pm:19 lang.pm:242
-#, c-format
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: crypto.pm:20 crypto.pm:52 lang.pm:248 network/adsl_consts.pm:368
-#, c-format
-msgid "Czech Republic"
-msgstr "Tjekkiet"
-
-#: crypto.pm:21 crypto.pm:57 lang.pm:249 network/adsl_consts.pm:499
-#: network/adsl_consts.pm:508
-#, c-format
-msgid "Germany"
-msgstr "Tyskland"
-
-#: crypto.pm:22 crypto.pm:53 lang.pm:251 network/adsl_consts.pm:378
-#, c-format
-msgid "Denmark"
-msgstr "Danmark"
-
-#: crypto.pm:23 crypto.pm:54 lang.pm:256
-#, c-format
-msgid "Estonia"
-msgstr "Estland"
-
-#: crypto.pm:24 crypto.pm:72 lang.pm:260 network/adsl_consts.pm:759
-#: network/adsl_consts.pm:770 network/adsl_consts.pm:781
-#: network/adsl_consts.pm:792 network/adsl_consts.pm:801
-#: network/adsl_consts.pm:810 network/adsl_consts.pm:819
-#: network/adsl_consts.pm:828 network/adsl_consts.pm:837
-#: network/adsl_consts.pm:846 network/adsl_consts.pm:855
-#: network/adsl_consts.pm:864 network/adsl_consts.pm:873
-#, c-format
-msgid "Spain"
-msgstr "Spanien"
-
-#: crypto.pm:25 crypto.pm:55 lang.pm:262 network/adsl_consts.pm:387
-#, c-format
-msgid "Finland"
-msgstr "Finland"
-
-#: crypto.pm:26 crypto.pm:56 lang.pm:267 network/adsl_consts.pm:396
-#: network/adsl_consts.pm:408 network/adsl_consts.pm:420
-#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
-#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
-#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
-#: network/netconnect.pm:41
-#, c-format
-msgid "France"
-msgstr "Frankrig"
-
-#: crypto.pm:27 crypto.pm:58 lang.pm:280 network/adsl_consts.pm:519
-#, c-format
-msgid "Greece"
-msgstr "Grækenland"
-
-#: crypto.pm:28 crypto.pm:59 lang.pm:291 network/adsl_consts.pm:528
-#, c-format
-msgid "Hungary"
-msgstr "Ungarn"
-
-#: crypto.pm:29 crypto.pm:60 lang.pm:293 network/adsl_consts.pm:537
-#: standalone/drakxtv:47
-#, c-format
-msgid "Ireland"
-msgstr "Irland"
-
-#: crypto.pm:30 crypto.pm:61 lang.pm:294 network/adsl_consts.pm:546
-#, c-format
-msgid "Israel"
-msgstr "Israel"
-
-#: crypto.pm:31 crypto.pm:62 lang.pm:300 network/adsl_consts.pm:557
-#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
-#: network/adsl_consts.pm:589 network/netconnect.pm:43 standalone/drakxtv:47
-#, c-format
-msgid "Italy"
-msgstr "Italien"
-
-#: crypto.pm:32 crypto.pm:63 lang.pm:303
+#: common.pm:298
#, c-format
-msgid "Japan"
-msgstr "Japan"
-
-#: crypto.pm:33 crypto.pm:64 lang.pm:352 network/adsl_consts.pm:620
-#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
-#: network/adsl_consts.pm:647 network/netconnect.pm:42
-#, c-format
-msgid "Netherlands"
-msgstr "Holland"
-
-#: crypto.pm:34 crypto.pm:66 lang.pm:353 network/adsl_consts.pm:656
-#: network/adsl_consts.pm:661 network/adsl_consts.pm:666
-#: network/adsl_consts.pm:671 network/adsl_consts.pm:676
-#: network/adsl_consts.pm:681 network/adsl_consts.pm:686
-#, c-format
-msgid "Norway"
-msgstr "Norge"
-
-#: crypto.pm:35 crypto.pm:65 lang.pm:357
-#, c-format
-msgid "New Zealand"
-msgstr "New Zealand"
-
-#: crypto.pm:36 crypto.pm:67 lang.pm:365 network/adsl_consts.pm:693
-#: network/adsl_consts.pm:704
-#, c-format
-msgid "Poland"
-msgstr "Polen"
-
-#: crypto.pm:37 crypto.pm:68 lang.pm:370 network/adsl_consts.pm:716
-#, c-format
-msgid "Portugal"
-msgstr "Portugal"
-
-#: crypto.pm:38 crypto.pm:69 lang.pm:376 network/adsl_consts.pm:725
-#, c-format
-msgid "Russia"
-msgstr "Rusland"
-
-#: crypto.pm:39 crypto.pm:73 lang.pm:382 network/adsl_consts.pm:882
-#, c-format
-msgid "Sweden"
-msgstr "Sverige"
-
-#: crypto.pm:40 crypto.pm:70 lang.pm:387
-#, c-format
-msgid "Slovakia"
-msgstr "Slovakiet"
-
-#: crypto.pm:41 crypto.pm:76 lang.pm:401 network/adsl_consts.pm:920
-#, c-format
-msgid "Thailand"
-msgstr "Thailand"
-
-#: crypto.pm:42 crypto.pm:75 lang.pm:411
-#, c-format
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#: crypto.pm:43 crypto.pm:71 lang.pm:430 standalone/drakxtv:49
-#, c-format
-msgid "South Africa"
-msgstr "Sydafrika"
-
-#: crypto.pm:77 crypto.pm:112 lang.pm:416 network/netconnect.pm:45
-#, c-format
-msgid "United States"
-msgstr "U.S.A."
+msgid "command %s missing"
+msgstr "kommando %s mangler"
#: diskdrake/dav.pm:17
#, c-format
@@ -2103,23 +1142,46 @@ msgstr ""
msgid "New"
msgstr "Ny"
-#: diskdrake/dav.pm:61 diskdrake/interactive.pm:456 diskdrake/smbnfs_gtk.pm:74
+#: diskdrake/dav.pm:61 diskdrake/interactive.pm:449 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Afmontér"
-#: diskdrake/dav.pm:62 diskdrake/interactive.pm:453 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:62 diskdrake/interactive.pm:446 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Montér"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:447
-#: diskdrake/interactive.pm:679 diskdrake/interactive.pm:698
-#: diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:78
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:440
+#: diskdrake/interactive.pm:670 diskdrake/interactive.pm:688
+#: diskdrake/interactive.pm:692 diskdrake/removable.pm:23
+#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Monteringssti"
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:442
+#: diskdrake/interactive.pm:1047 diskdrake/removable.pm:24
+#: diskdrake/smbnfs_gtk.pm:80
+#, c-format
+msgid "Options"
+msgstr "Valg"
+
+#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:229
+#: diskdrake/interactive.pm:242 diskdrake/interactive.pm:398
+#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:547
+#: diskdrake/interactive.pm:552 diskdrake/interactive.pm:660
+#: diskdrake/interactive.pm:922 diskdrake/interactive.pm:1092
+#: diskdrake/interactive.pm:1105 diskdrake/interactive.pm:1108
+#: diskdrake/interactive.pm:1348 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:19
+#: do_pkgs.pm:24 do_pkgs.pm:40 do_pkgs.pm:56 do_pkgs.pm:61 fsedit.pm:229
+#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
+#: scanner.pm:94 scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95
+#: wizards.pm:99 wizards.pm:121
+#, c-format
+msgid "Error"
+msgstr "Fejl"
+
#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
@@ -2135,33 +1197,48 @@ msgstr "URL'en skal begynde med http:// eller https://"
msgid "Server: "
msgstr "Server: "
-#: diskdrake/dav.pm:110 diskdrake/interactive.pm:523
-#: diskdrake/interactive.pm:1218 diskdrake/interactive.pm:1296
+#: diskdrake/dav.pm:110 diskdrake/interactive.pm:520
+#: diskdrake/interactive.pm:1230 diskdrake/interactive.pm:1308
#, c-format
msgid "Mount point: "
msgstr "Monteringssti: "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1303
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1315
#, c-format
msgid "Options: %s"
msgstr "Valg: %s"
-#: diskdrake/hd_gtk.pm:52 diskdrake/interactive.pm:293
-#: diskdrake/smbnfs_gtk.pm:21 install_interactive.pm:63
-#: install_interactive.pm:217 install_interactive.pm:223
-#: install_interactive.pm:276 install_interactive.pm:281
-#: install_steps_interactive.pm:253 install_steps_interactive.pm:317
-#: steps.pm:21
+#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:286
+#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
+#: fs/partitioning_wizard.pm:47 fs/partitioning_wizard.pm:201
+#: fs/partitioning_wizard.pm:207 fs/partitioning_wizard.pm:247
+#: fs/partitioning_wizard.pm:266 fs/partitioning_wizard.pm:271
#, c-format
msgid "Partitioning"
msgstr "Opdeling af disk"
-#: diskdrake/hd_gtk.pm:92
+#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1067
+#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1130
+#, c-format
+msgid "Read carefully!"
+msgstr "Læs omhyggeligt!"
+
+#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr "Lav gerne en sikkerhedkopi af dine data først"
-#: diskdrake/hd_gtk.pm:95
+#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:222
+#, c-format
+msgid "Exit"
+msgstr "Afslut"
+
+#: diskdrake/hd_gtk.pm:94
+#, c-format
+msgid "Continue"
+msgstr "Fortsæt"
+
+#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
@@ -2171,17 +1248,18 @@ msgstr ""
"Hvis du planlægger at bruge Yaboot, skal du huske at efterlade fri plads på\n"
"begyndelsen af disken (2048 sektorer skulle være nok)"
-#: diskdrake/hd_gtk.pm:152 help.pm:531
+#: diskdrake/hd_gtk.pm:162 interactive.pm:640 interactive/gtk.pm:719
+#: interactive/gtk.pm:740 interactive/gtk.pm:760 ugtk2.pm:923 ugtk2.pm:924
#, c-format
-msgid "Wizard"
-msgstr "Vejleder"
+msgid "Help"
+msgstr "Hjælp"
-#: diskdrake/hd_gtk.pm:185
+#: diskdrake/hd_gtk.pm:197
#, c-format
msgid "Choose action"
msgstr "Vælg handling"
-#: diskdrake/hd_gtk.pm:189
+#: diskdrake/hd_gtk.pm:201
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -2192,148 +1270,162 @@ msgstr ""
"Jeg foreslår at du først ændrer størrelsen på partitionen\n"
"(klik på den, og klik herefter på \"Størrelsesændring\")"
-#: diskdrake/hd_gtk.pm:191
+#: diskdrake/hd_gtk.pm:203
#, c-format
msgid "Please click on a partition"
msgstr "Klik på en partition"
-#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:457
-#: standalone/drakbackup:3088 standalone/drakbackup:3148
+#: diskdrake/hd_gtk.pm:217 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Detaljer"
-#: diskdrake/hd_gtk.pm:251
+#: diskdrake/hd_gtk.pm:265
#, c-format
msgid "No hard drives found"
msgstr "Ingen diskdrev fundet"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:292
+#, c-format
+msgid "Unknown"
+msgstr "Ukendt"
+
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Ext2"
msgstr "Ext2"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Journalised FS"
msgstr "Journaliserende FS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "SunOS"
msgstr "SunOS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "HFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1233
+#: diskdrake/hd_gtk.pm:352 services.pm:149
+#, c-format
+msgid "Other"
+msgstr "Andet"
+
+#: diskdrake/hd_gtk.pm:352 diskdrake/interactive.pm:1244
#, c-format
msgid "Empty"
msgstr "Tom"
-#: diskdrake/hd_gtk.pm:340
+#: diskdrake/hd_gtk.pm:356
#, c-format
msgid "Filesystem types:"
msgstr "Filsystems-typer:"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:359 diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:291
+#: diskdrake/interactive.pm:392 diskdrake/interactive.pm:428
+#: diskdrake/interactive.pm:577 diskdrake/interactive.pm:751
+#: diskdrake/interactive.pm:809 diskdrake/interactive.pm:902
+#: diskdrake/interactive.pm:944 diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:1173 diskdrake/interactive.pm:1211
+#: diskdrake/interactive.pm:1347 do_pkgs.pm:16 do_pkgs.pm:35 do_pkgs.pm:53
+#: harddrake/sound.pm:279
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Benyt ``%s'' i stedet"
+msgid "Warning"
+msgstr "Advarsel"
-#: diskdrake/hd_gtk.pm:357 diskdrake/interactive.pm:472
+#: diskdrake/hd_gtk.pm:380
#, c-format
-msgid "Create"
-msgstr "Opret"
+msgid "This partition is already empty"
+msgstr "Denne partition er allerede tom"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:365
-#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:625
-#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
-#: standalone/harddrake2:108 standalone/harddrake2:117
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Type"
-msgstr "Type"
+msgid "Use ``Unmount'' first"
+msgstr "Benyt ``Afmontér'' først"
-#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: diskdrake/hd_gtk.pm:359 diskdrake/interactive.pm:457
-#: standalone/drakperm:123 standalone/printerdrake:248
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Delete"
-msgstr "Slet"
+msgid "Use ``%s'' instead"
+msgstr "Benyt ``%s'' i stedet"
-#: diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:389 diskdrake/interactive.pm:441
+#: diskdrake/interactive.pm:611 diskdrake/interactive.pm:1083
+#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Benyt ``Afmontér'' først"
+msgid "Type"
+msgstr "Type"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose another partition"
msgstr "Vælg en ny partition"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose a partition"
msgstr "Vælg en partition"
-#: diskdrake/interactive.pm:224
-#, c-format
-msgid "Exit"
-msgstr "Afslut"
-
-#: diskdrake/interactive.pm:257 help.pm:531
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Undo"
msgstr "Fortryd"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to normal mode"
msgstr "Ekspert -> Normal"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to expert mode"
msgstr "Normal -> Ekspert"
-#: diskdrake/interactive.pm:276
+#: diskdrake/interactive.pm:269 diskdrake/interactive.pm:279
+#: diskdrake/interactive.pm:1158
+#, c-format
+msgid "Confirmation"
+msgstr "Bekræftelse"
+
+#: diskdrake/interactive.pm:269
#, c-format
msgid "Continue anyway?"
msgstr "Fortsæt alligevel?"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without saving"
msgstr "Afslut uden at gemme"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Afslut uden at skrive partitionstabellen?"
-#: diskdrake/interactive.pm:286
+#: diskdrake/interactive.pm:279
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ønsker du at gemme /etc/fstab-ændringerne?"
-#: diskdrake/interactive.pm:293 install_steps_interactive.pm:317
+#: diskdrake/interactive.pm:286 fs/partitioning_wizard.pm:247
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Du skal genstarte for at aktivere ændringerne i partitionstabellen"
-#: diskdrake/interactive.pm:298
+#: diskdrake/interactive.pm:291
#, c-format
msgid ""
"You should format partition %s.\n"
@@ -2345,38 +1437,38 @@ msgstr ""
"s i fstab.\n"
"Afslut alligevel?"
-#: diskdrake/interactive.pm:311 help.pm:531
+#: diskdrake/interactive.pm:304
#, c-format
msgid "Clear all"
msgstr "Slet alt"
-#: diskdrake/interactive.pm:312 help.pm:531
+#: diskdrake/interactive.pm:305
#, c-format
msgid "Auto allocate"
msgstr "Allokér automatisk"
-#: diskdrake/interactive.pm:313 help.pm:531 help.pm:567 help.pm:607
-#: help.pm:856 install_steps_interactive.pm:98
+#: diskdrake/interactive.pm:306 diskdrake/interactive.pm:360
+#: interactive/curses.pm:457
#, c-format
msgid "More"
msgstr "Mere"
-#: diskdrake/interactive.pm:318
+#: diskdrake/interactive.pm:311
#, c-format
msgid "Hard drive information"
msgstr "Drev-information"
-#: diskdrake/interactive.pm:350
+#: diskdrake/interactive.pm:343
#, c-format
msgid "All primary partitions are used"
msgstr "Alle primære partitioner er brugt"
-#: diskdrake/interactive.pm:351
+#: diskdrake/interactive.pm:344
#, c-format
msgid "I can not add any more partitions"
msgstr "Kan ikke tilføje flere partitioner"
-#: diskdrake/interactive.pm:352
+#: diskdrake/interactive.pm:345
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
@@ -2385,52 +1477,52 @@ msgstr ""
"For at du kan få flere partitioner, skal du slette én, så der kan oprettes "
"en udvidet partition"
-#: diskdrake/interactive.pm:361
+#: diskdrake/interactive.pm:354
#, c-format
msgid "No supermount"
msgstr "Ingen supermount"
-#: diskdrake/interactive.pm:362
+#: diskdrake/interactive.pm:355
#, c-format
msgid "Supermount"
msgstr "Supermount"
-#: diskdrake/interactive.pm:363
+#: diskdrake/interactive.pm:356
#, c-format
msgid "Supermount except for CDROM drives"
msgstr "Supermount undtagen for CDROM drev"
-#: diskdrake/interactive.pm:369 help.pm:531
+#: diskdrake/interactive.pm:362
#, c-format
msgid "Save partition table"
msgstr "Gem partitionstabel"
-#: diskdrake/interactive.pm:370 help.pm:531
+#: diskdrake/interactive.pm:363
#, c-format
msgid "Restore partition table"
msgstr "Genskaber partitionstabel"
-#: diskdrake/interactive.pm:371 help.pm:531
+#: diskdrake/interactive.pm:364
#, c-format
msgid "Rescue partition table"
msgstr "Redder partitionstabel"
-#: diskdrake/interactive.pm:373 help.pm:531
+#: diskdrake/interactive.pm:366
#, c-format
msgid "Reload partition table"
msgstr "Genindlæs partitionstabel"
-#: diskdrake/interactive.pm:375
+#: diskdrake/interactive.pm:368
#, c-format
msgid "Removable media automounting"
msgstr "Automontering af flytbare medier"
-#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:414
+#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:407
#, c-format
msgid "Select file"
msgstr "Vælg fil"
-#: diskdrake/interactive.pm:400
+#: diskdrake/interactive.pm:393
#, c-format
msgid ""
"The backup partition table has not the same size\n"
@@ -2439,87 +1531,97 @@ msgstr ""
"Kopien af partitionstabellen har ikke samme størrelse\n"
"Fortsæt alligevel?"
-#: diskdrake/interactive.pm:429
+#: diskdrake/interactive.pm:422
#, c-format
msgid "Trying to rescue partition table"
msgstr "Forsøger at redde partitionstabellen"
-#: diskdrake/interactive.pm:435
+#: diskdrake/interactive.pm:428
#, c-format
msgid "Detailed information"
msgstr "Detaljeret information"
-#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:444 diskdrake/interactive.pm:764
#, c-format
msgid "Resize"
msgstr "Størrelsesændring"
-#: diskdrake/interactive.pm:452
+#: diskdrake/interactive.pm:445
#, c-format
msgid "Format"
msgstr "Formatér"
-#: diskdrake/interactive.pm:454
+#: diskdrake/interactive.pm:447 diskdrake/interactive.pm:850
#, c-format
msgid "Add to RAID"
msgstr "Tilføj til RAID"
-#: diskdrake/interactive.pm:455
+#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:867
#, c-format
msgid "Add to LVM"
msgstr "Tilføj til LVM"
-#: diskdrake/interactive.pm:458
+#: diskdrake/interactive.pm:450
+#, c-format
+msgid "Delete"
+msgstr "Slet"
+
+#: diskdrake/interactive.pm:451
#, c-format
msgid "Remove from RAID"
msgstr "Fjern fra RAID"
-#: diskdrake/interactive.pm:459
+#: diskdrake/interactive.pm:452
#, c-format
msgid "Remove from LVM"
msgstr "Fjern fra LVM"
-#: diskdrake/interactive.pm:460
+#: diskdrake/interactive.pm:453
#, c-format
msgid "Modify RAID"
msgstr "Ændr RAID"
-#: diskdrake/interactive.pm:461
+#: diskdrake/interactive.pm:454
#, c-format
msgid "Use for loopback"
msgstr "Loopback anvendelse"
-#: diskdrake/interactive.pm:516
+#: diskdrake/interactive.pm:465
+#, c-format
+msgid "Create"
+msgstr "Opret"
+
+#: diskdrake/interactive.pm:509 diskdrake/interactive.pm:511
#, c-format
msgid "Create a new partition"
msgstr "Opret en ny partition"
-#: diskdrake/interactive.pm:519
+#: diskdrake/interactive.pm:513
#, c-format
msgid "Start sector: "
msgstr "Startsektor: "
-#: diskdrake/interactive.pm:521 diskdrake/interactive.pm:938
+#: diskdrake/interactive.pm:516 diskdrake/interactive.pm:937
#, c-format
msgid "Size in MB: "
msgstr "Størrelse i Mb: "
-#: diskdrake/interactive.pm:522 diskdrake/interactive.pm:939
+#: diskdrake/interactive.pm:518 diskdrake/interactive.pm:938
#, c-format
msgid "Filesystem type: "
msgstr "Filsystemstype: "
-#: diskdrake/interactive.pm:527
+#: diskdrake/interactive.pm:524
#, c-format
msgid "Preference: "
msgstr "Præference: "
-#: diskdrake/interactive.pm:530
+#: diskdrake/interactive.pm:527
#, c-format
msgid "Logical volume name "
msgstr "Logisk arkivnavn "
-#: diskdrake/interactive.pm:560
+#: diskdrake/interactive.pm:547
#, c-format
msgid ""
"You can not create a new partition\n"
@@ -2530,47 +1632,54 @@ msgstr ""
"(fordi du er oppe på det maksimale antal primære partitioner)\n"
"Fjern først en primær partition og opret en udvidet partition."
-#: diskdrake/interactive.pm:590
+#: diskdrake/interactive.pm:577
#, c-format
msgid "Remove the loopback file?"
msgstr "Fjern loopback-filen?"
-#: diskdrake/interactive.pm:609
+#: diskdrake/interactive.pm:596
#, c-format
-msgid "After changing type of partition %s, all data on this partition will be lost"
-msgstr "Efter type-ændring af partition %s vil alle data på denne partition gå tabt"
+msgid ""
+"After changing type of partition %s, all data on this partition will be lost"
+msgstr ""
+"Efter type-ændring af partition %s vil alle data på denne partition gå tabt"
-#: diskdrake/interactive.pm:621
+#: diskdrake/interactive.pm:608
#, c-format
msgid "Change partition type"
msgstr "Skift partitionstype"
-#: diskdrake/interactive.pm:622 diskdrake/removable.pm:47
+#: diskdrake/interactive.pm:610 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Hvilket filsystem ønsker du at bruge?"
-#: diskdrake/interactive.pm:630
+#: diskdrake/interactive.pm:617
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "Skifter fra ext2 til ext3"
-#: diskdrake/interactive.pm:650
+#: diskdrake/interactive.pm:637 diskdrake/interactive.pm:640
#, c-format
msgid "Which volume label?"
msgstr "Hvilken volumen-etiket?"
-#: diskdrake/interactive.pm:666
+#: diskdrake/interactive.pm:641
+#, c-format
+msgid "Label:"
+msgstr "Mærkat:"
+
+#: diskdrake/interactive.pm:655
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Hvor ønsker du at montere loopback-filen %s?"
-#: diskdrake/interactive.pm:667
+#: diskdrake/interactive.pm:656
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Hvor ønsker du at montere partitionen %s?"
-#: diskdrake/interactive.pm:672
+#: diskdrake/interactive.pm:661
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
@@ -2580,50 +1689,60 @@ msgstr ""
"loopback.\n"
"Fjern loopback først"
-#: diskdrake/interactive.pm:697
+#: diskdrake/interactive.pm:691
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Hvor ønsker du at montere %s?"
-#: diskdrake/interactive.pm:721 diskdrake/interactive.pm:800
-#: install_interactive.pm:157 install_interactive.pm:189
+#: diskdrake/interactive.pm:715 diskdrake/interactive.pm:798
+#: fs/partitioning_wizard.pm:141 fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing"
msgstr "Ændrer størrelsen"
-#: diskdrake/interactive.pm:721
+#: diskdrake/interactive.pm:715
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Udregner FAT-filsystemets grænser"
-#: diskdrake/interactive.pm:757
+#: diskdrake/interactive.pm:751
#, c-format
msgid "This partition is not resizeable"
msgstr "Størrelsen på denne partition kan ikke ændres"
-#: diskdrake/interactive.pm:762
+#: diskdrake/interactive.pm:756
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Det bør laves en backup af alle data på denne partition"
-#: diskdrake/interactive.pm:764
+#: diskdrake/interactive.pm:758
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Efter ændring af størrelsen af partition %s vil alle data på denne partition "
"gå tabt"
-#: diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:765
#, c-format
msgid "Choose the new size"
msgstr "Vælg den nye størrelse"
-#: diskdrake/interactive.pm:770
+#: diskdrake/interactive.pm:766
#, c-format
msgid "New size in MB: "
msgstr "Ny størrelse i Mb: "
-#: diskdrake/interactive.pm:811 install_interactive.pm:197
+#: diskdrake/interactive.pm:767
+#, c-format
+msgid "Minimum size: %s MB"
+msgstr "Minimumsstørrelse: %s MB"
+
+#: diskdrake/interactive.pm:768
+#, c-format
+msgid "Maximum size: %s MB"
+msgstr "Maksimumsstørrelse: %s MB"
+
+#: diskdrake/interactive.pm:809 fs/partitioning_wizard.pm:181
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
@@ -2632,27 +1751,27 @@ msgstr ""
"For at sikre dataintegritet efter ændring af størrelse på partitioner \n"
"vil filsystemtjek blive kørt ved din næste opstart af Windows(TM)"
-#: diskdrake/interactive.pm:852
+#: diskdrake/interactive.pm:850
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Vælg en eksisterende RAID som skal udvides"
-#: diskdrake/interactive.pm:854 diskdrake/interactive.pm:871
+#: diskdrake/interactive.pm:852 diskdrake/interactive.pm:869
#, c-format
msgid "new"
msgstr "ny"
-#: diskdrake/interactive.pm:869
+#: diskdrake/interactive.pm:867
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Vælg en eksisterende LVM som skal udvides"
-#: diskdrake/interactive.pm:875
+#: diskdrake/interactive.pm:874
#, c-format
msgid "LVM name?"
msgstr "LVM-navn?"
-#: diskdrake/interactive.pm:903
+#: diskdrake/interactive.pm:902
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
@@ -2662,213 +1781,221 @@ msgstr ""
"Ønsker du at flytte brugte fysiske områder på dette volumen til andre "
"volumener?"
-#: diskdrake/interactive.pm:905
+#: diskdrake/interactive.pm:904
#, c-format
msgid "Moving physical extents"
msgstr "Flytter fysiske områder"
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:922
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Denne partition kan ikke bruges til loopback"
-#: diskdrake/interactive.pm:936
+#: diskdrake/interactive.pm:935
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: diskdrake/interactive.pm:937
+#: diskdrake/interactive.pm:936
#, c-format
msgid "Loopback file name: "
msgstr "Loopback-filnavn: "
-#: diskdrake/interactive.pm:942
+#: diskdrake/interactive.pm:941
#, c-format
msgid "Give a file name"
msgstr "Giv et filnavn"
-#: diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:944
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Filen er allerede brugt af en anden loopback, vælg en anden fil"
-#: diskdrake/interactive.pm:946
+#: diskdrake/interactive.pm:945
#, c-format
msgid "File already exists. Use it?"
msgstr "Filen findes allerede. Skal den bruges?"
-#: diskdrake/interactive.pm:969
+#: diskdrake/interactive.pm:974 diskdrake/interactive.pm:977
#, c-format
msgid "Mount options"
msgstr "Modulindstillinger"
-#: diskdrake/interactive.pm:976
+#: diskdrake/interactive.pm:984
#, c-format
msgid "Various"
msgstr "Diverse"
-#: diskdrake/interactive.pm:1044
+#: diskdrake/interactive.pm:1049
#, c-format
msgid "device"
msgstr "enhed"
-#: diskdrake/interactive.pm:1045
+#: diskdrake/interactive.pm:1050
#, c-format
msgid "level"
msgstr "niveau"
-#: diskdrake/interactive.pm:1046
+#: diskdrake/interactive.pm:1051
#, c-format
msgid "chunk size in KiB"
msgstr "fragmentstørrelse i KiB"
-#: diskdrake/interactive.pm:1063
+#: diskdrake/interactive.pm:1068
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Vær forsigtig: denne operation er farlig."
-#: diskdrake/interactive.pm:1078
+#: diskdrake/interactive.pm:1083
#, c-format
msgid "What type of partitioning?"
msgstr "Hvilken slags partitionering?"
-#: diskdrake/interactive.pm:1116
+#: diskdrake/interactive.pm:1121
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Du skal genstarte maskinen for at aktivere ændringerne"
-#: diskdrake/interactive.pm:1125
+#: diskdrake/interactive.pm:1130
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partitionstabellen for disk %s vil nu blive skrevet på disken!"
-#: diskdrake/interactive.pm:1148
+#: diskdrake/interactive.pm:1153
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Efter formatering af partitionen %s vil alle data på denne partition gå tabt"
+msgstr ""
+"Efter formatering af partitionen %s vil alle data på denne partition gå tabt"
+
+#: diskdrake/interactive.pm:1158 fs/partitioning.pm:49
+#, c-format
+msgid "Check bad blocks?"
+msgstr "Led efter beskadigede blokke?"
-#: diskdrake/interactive.pm:1164
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Move files to the new partition"
msgstr "Flyt filer til den nye partition"
-#: diskdrake/interactive.pm:1164 standalone/draksambashare:81
-#: standalone/draksambashare:144
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Hide files"
msgstr "Skjul filer"
-#: diskdrake/interactive.pm:1165
+#: diskdrake/interactive.pm:1173
#, c-format
msgid ""
"Directory %s already contains data\n"
-"(%s)"
+"(%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 ""
-"Katalog %s indeholder allerede nogen data\n"
-"(%s)"
+"Katalog %s indeholder allerede data\n"
+"(%s)\n"
+"\n"
+"Du kan enten vælge at flytte filerne over på partitionen som vil blive "
+"monteret der eller lade filerne blive der hvor de er (hvilket bevirker at de "
+"bliver skjult af indholdet på den monterede partition)"
-#: diskdrake/interactive.pm:1176
+#: diskdrake/interactive.pm:1188
#, c-format
msgid "Moving files to the new partition"
msgstr "Flytter filer til den nye partition"
-#: diskdrake/interactive.pm:1180
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "Copying %s"
msgstr "Kopierer %s"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1196
#, c-format
msgid "Removing %s"
msgstr "Fjerner %s"
-#: diskdrake/interactive.pm:1198
+#: diskdrake/interactive.pm:1210
#, c-format
msgid "partition %s is now known as %s"
msgstr "partition %s er nu kendt som %s"
-#: diskdrake/interactive.pm:1199
+#: diskdrake/interactive.pm:1211
#, c-format
msgid "Partitions have been renumbered: "
msgstr "Partitioner er blevet omnummererede: "
-#: diskdrake/interactive.pm:1219 diskdrake/interactive.pm:1281
+#: diskdrake/interactive.pm:1231 diskdrake/interactive.pm:1293
#, c-format
msgid "Device: "
msgstr "Enhed: "
-#: diskdrake/interactive.pm:1220
-#, c-format
-msgid "Devfs name: "
-msgstr "Devfs-navn: "
-
-#: diskdrake/interactive.pm:1221
+#: diskdrake/interactive.pm:1232
#, c-format
msgid "Volume label: "
msgstr "Etikette for drev: "
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1233
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-drevbogstav: %s (bare et gæt)\n"
-#: diskdrake/interactive.pm:1226 diskdrake/interactive.pm:1235
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1237 diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1311
#, c-format
msgid "Type: "
msgstr "Type: "
-#: diskdrake/interactive.pm:1230 install_steps_gtk.pm:300
+#: diskdrake/interactive.pm:1241
#, c-format
msgid "Name: "
msgstr "Navn: "
-#: diskdrake/interactive.pm:1237
+#: diskdrake/interactive.pm:1248
#, c-format
msgid "Start: sector %s\n"
msgstr "Start: sektor %s\n"
-#: diskdrake/interactive.pm:1238
+#: diskdrake/interactive.pm:1249
#, c-format
msgid "Size: %s"
msgstr "Størrelse: %s"
-#: diskdrake/interactive.pm:1240
+#: diskdrake/interactive.pm:1251
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorer"
-#: diskdrake/interactive.pm:1242
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cylinder %d til %d\n"
-#: diskdrake/interactive.pm:1243
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Number of logical extents: %d\n"
msgstr "Antal logiske områder: %d\n"
-#: diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Formatted\n"
msgstr "Formateret\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "Not formatted\n"
msgstr "Ikke formateret\n"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Mounted\n"
msgstr "Monteret\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1252
+#: diskdrake/interactive.pm:1263
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2877,7 +2004,7 @@ msgstr ""
"Loopback-fil(er):\n"
" %s\n"
-#: diskdrake/interactive.pm:1253
+#: diskdrake/interactive.pm:1264
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2886,27 +2013,27 @@ msgstr ""
"Partition som opstartes som standard\n"
" (gælder kun MS-DOS-opstart, ikke LILO)\n"
-#: diskdrake/interactive.pm:1255
+#: diskdrake/interactive.pm:1266
#, c-format
msgid "Level %s\n"
msgstr "Niveau %s\n"
-#: diskdrake/interactive.pm:1256
+#: diskdrake/interactive.pm:1267
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Fragmentstørrelse %d KiB\n"
-#: diskdrake/interactive.pm:1257
+#: diskdrake/interactive.pm:1268
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diske %s\n"
-#: diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1270
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback-filnavn: %s"
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1273
#, c-format
msgid ""
"\n"
@@ -2919,7 +2046,7 @@ msgstr ""
"en driver-partition. Du skal\n"
"nok bare lade den være.\n"
-#: diskdrake/interactive.pm:1265
+#: diskdrake/interactive.pm:1276
#, c-format
msgid ""
"\n"
@@ -2932,74 +2059,78 @@ msgstr ""
"partition er for at\n"
"dual-boote dit system.\n"
-#: diskdrake/interactive.pm:1282
+#: diskdrake/interactive.pm:1285
+#, c-format
+msgid "Empty space on %s (%s)"
+msgstr ""
+
+#: diskdrake/interactive.pm:1294
#, c-format
msgid "Read-only"
msgstr "Skrivebeskyttet"
-#: diskdrake/interactive.pm:1283
+#: diskdrake/interactive.pm:1295
#, c-format
msgid "Size: %s\n"
msgstr "Størrelse: %s\n"
-#: diskdrake/interactive.pm:1284
+#: diskdrake/interactive.pm:1296
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Opbygning: %s cylindre, %s hoveder, %s sektorer\n"
-#: diskdrake/interactive.pm:1285 network/thirdparty.pm:331
+#: diskdrake/interactive.pm:1297
#, c-format
msgid "Info: "
msgstr "Info: "
-#: diskdrake/interactive.pm:1286
+#: diskdrake/interactive.pm:1298
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diske %s\n"
-#: diskdrake/interactive.pm:1287
+#: diskdrake/interactive.pm:1299
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitionstabel-type: %s\n"
-#: diskdrake/interactive.pm:1288
+#: diskdrake/interactive.pm:1300
#, c-format
msgid "on channel %d id %d\n"
msgstr "på kanal %d id %d\n"
-#: diskdrake/interactive.pm:1331
+#: diskdrake/interactive.pm:1343
#, c-format
msgid "Filesystem encryption key"
msgstr "Krypteringsnøgle for filsystem"
-#: diskdrake/interactive.pm:1332
+#: diskdrake/interactive.pm:1344
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Vælg din krypteringsnøgle for filsystemet"
-#: diskdrake/interactive.pm:1335
+#: diskdrake/interactive.pm:1347
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "Denne krypteringsnøgle er for nem at gætte (skal mindst være på %d tegn)"
+msgstr ""
+"Denne krypteringsnøgle er for nem at gætte (skal mindst være på %d tegn)"
-#: diskdrake/interactive.pm:1336
+#: diskdrake/interactive.pm:1348
#, c-format
msgid "The encryption keys do not match"
msgstr "Krypteringsnøglerne stemmer ikke overens"
-#: diskdrake/interactive.pm:1339 network/netconnect.pm:1073
-#: standalone/drakconnect:419 standalone/drakroam:120
+#: diskdrake/interactive.pm:1351
#, c-format
msgid "Encryption key"
msgstr "Krypteringsnøgle"
-#: diskdrake/interactive.pm:1340
+#: diskdrake/interactive.pm:1352
#, c-format
msgid "Encryption key (again)"
msgstr "Krypteringsnøgle (igen)"
-#: diskdrake/interactive.pm:1342 standalone/drakvpn:1017
-#: standalone/drakvpn:1102
+#: diskdrake/interactive.pm:1354
#, c-format
msgid "Encryption algorithm"
msgstr "Krypteringsalgoritme"
@@ -3009,112 +2140,118 @@ msgstr "Krypteringsalgoritme"
msgid "Change type"
msgstr "Skift type"
-#: diskdrake/smbnfs_gtk.pm:163
+#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:539
+#: interactive/curses.pm:214 interactive/http.pm:104 interactive/http.pm:160
+#: interactive/stdio.pm:39 interactive/stdio.pm:142 ugtk2.pm:404 ugtk2.pm:506
+#: ugtk2.pm:515 ugtk2.pm:788
+#, c-format
+msgid "Cancel"
+msgstr "Annullér"
+
+#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr "Kan ikke logge ind med brugernavn %s (forkert adgangskode?)"
-#: diskdrake/smbnfs_gtk.pm:167 diskdrake/smbnfs_gtk.pm:176
+#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Domænegodkendelse påkrævet"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Hvilket brugernavn"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "En anden"
-#: diskdrake/smbnfs_gtk.pm:177
+#: diskdrake/smbnfs_gtk.pm:178
#, c-format
-msgid "Please enter your username, password and domain name to access this host."
+msgid ""
+"Please enter your username, password and domain name to access this host."
msgstr ""
"Indtast venligst dit brugernavn, din adgangskode og dit domænenavn for at få "
"adgang til denne vært."
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3640
+#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Brugernavn"
-#: diskdrake/smbnfs_gtk.pm:205
+#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Søg efter servere"
-#: diskdrake/smbnfs_gtk.pm:210
+#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr "Søg efter nye servere"
-#: do_pkgs.pm:16 do_pkgs.pm:49
+#: do_pkgs.pm:16 do_pkgs.pm:53
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Pakken %s skal være installeret. Ønsker du at installere den?"
-#: do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:52 printer/printerdrake.pm:3948
+#: do_pkgs.pm:19 do_pkgs.pm:40 do_pkgs.pm:56
#, c-format
msgid "Could not install the %s package!"
msgstr "Kunne ikke installerer pakken %s!"
-#: do_pkgs.pm:24 do_pkgs.pm:57
+#: do_pkgs.pm:24 do_pkgs.pm:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Krævet pakke %s mangler"
-#: do_pkgs.pm:35 harddrake/sound.pm:278 install_steps_interactive.pm:1288
-#: keyboard.pm:381 network/ndiswrapper.pm:95 network/netconnect.pm:471
-#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2495
-#: printer/printerdrake.pm:2632 printer/printerdrake.pm:2953
-#: printer/printerdrake.pm:2960 printer/printerdrake.pm:3947
-#: printer/printerdrake.pm:4211 printer/printerdrake.pm:4330
-#: printer/printerdrake.pm:5487 standalone/drakTermServ:354
-#: standalone/drakTermServ:1267 standalone/drakTermServ:1328
-#: standalone/drakTermServ:2006 standalone/drakbackup:510
-#: standalone/drakbackup:609 standalone/drakboot:133 standalone/drakclock:224
-#: standalone/drakconnect:973 standalone/drakfont:679 standalone/drakperm:380
-#: standalone/drakperm:390 standalone/drakups:27 standalone/harddrake2:510
-#: standalone/harddrake2:526 standalone/localedrake:43
-#: standalone/scannerdrake:51 standalone/scannerdrake:957
-#, c-format
-msgid "Warning"
-msgstr "Advarsel"
-
-#: do_pkgs.pm:35 standalone/harddrake2:526
+#: do_pkgs.pm:35
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "De følgende pakker behøver at blive installeret\n"
-#: do_pkgs.pm:205
+#: do_pkgs.pm:209
#, c-format
msgid "Installing packages..."
msgstr "Installerer pakker..."
-#: do_pkgs.pm:252
+#: do_pkgs.pm:255
#, c-format
msgid "Removing packages..."
msgstr "Fjerner pakker..."
-#: fs/format.pm:58 fs/format.pm:65
+#: fs/any.pm:17
+#, c-format
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Der er opstået en fejl - der kunne ikke findes nogen gyldige enheder, hvor "
+"der kan oprettes nye filsystemer. Undersøg din maskine for at finde årsagen "
+"til problemet"
+
+#: fs/any.pm:62 fs/partitioning_wizard.pm:55
+#, c-format
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Du skal have en FAT-partition monteret under /boot/efi"
+
+#: fs/format.pm:59 fs/format.pm:66
#, c-format
msgid "Formatting partition %s"
msgstr "Formaterer partition %s"
-#: fs/format.pm:62
+#: fs/format.pm:63
#, c-format
msgid "Creating and formatting file %s"
msgstr "Opretter og formaterer fil %s"
-#: fs/format.pm:115
+#: fs/format.pm:116
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "Ved ikke hvordan man formaterer %s som type %s"
-#: fs/format.pm:120 fs/format.pm:122
+#: fs/format.pm:121 fs/format.pm:123
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering af %s mislykkedes"
@@ -3124,27 +2261,27 @@ msgstr "%s formatering af %s mislykkedes"
msgid "Circular mounts %s\n"
msgstr "Cirkulære monteringer %s\n"
-#: fs/mount.pm:74
+#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "Monterer partition %s"
-#: fs/mount.pm:75
+#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montering af partition %s i katalog %s mislykkedes"
-#: fs/mount.pm:80 fs/mount.pm:97
+#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "Tjekker %s"
-#: fs/mount.pm:113 partition_table.pm:385
+#: fs/mount.pm:118 partition_table.pm:384
#, c-format
msgid "error unmounting %s: %s"
msgstr "fejl ved afmontering af %s: %s"
-#: fs/mount.pm:142
+#: fs/mount.pm:133
#, c-format
msgid "Enabling swap partition %s"
msgstr "Formaterer swap-partition %s"
@@ -3217,35 +2354,309 @@ msgstr "Al I/O til filsystemet bør gøres synkront."
#: fs/mount_options.pm:139
#, c-format
+msgid "Allow every user to mount and umount the file system."
+msgstr "Tillad alle brugere at montere og afmontere filsystemet."
+
+#: fs/mount_options.pm:141
+#, c-format
msgid "Allow an ordinary user to mount the file system."
msgstr "Tillad en almindelig bruger at montere filsystemet."
-#: fs/mount_options.pm:141
+#: fs/mount_options.pm:143
#, c-format
msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr "Aktivér kontering af gruppediskkvota, og indfør eventuelt grænser"
-#: fs/mount_options.pm:143
+#: fs/mount_options.pm:145
#, c-format
-msgid "Support user. extended attributes"
-msgstr "Understøt bruger-udvidede attributter"
+msgid "Support \"user.\" extended attributes"
+msgstr "Understøt 'bruger.'-udvidede attributter"
-#: fs/mount_options.pm:145
+#: fs/mount_options.pm:147
#, c-format
msgid "Give write access to ordinary users"
msgstr "Giv skriveadgang til almindelige brugere"
-#: fs/mount_options.pm:147
+#: fs/mount_options.pm:149
#, c-format
msgid "Give read-only access to ordinary users"
msgstr "Giv skriveadgang til almindelige brugere"
-#: fs/type.pm:363
+#: fs/mount_point.pm:80
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Duplikér monterings-sti %s"
+
+#: fs/mount_point.pm:95
+#, c-format
+msgid "No partition available"
+msgstr "ingen ledige partitioner"
+
+#: fs/mount_point.pm:98
+#, c-format
+msgid "Scanning partitions to find mount points"
+msgstr "Skanner partitioner for at finde monteringspunkter"
+
+#: fs/mount_point.pm:105
+#, c-format
+msgid "Choose the mount points"
+msgstr "Vælg monterings-stierne"
+
+#: fs/partitioning.pm:46
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "Vælg partitioner der skal formateres"
+
+#: fs/partitioning.pm:76
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+"Kontrol af filsystem %s mislykkedes. Ønsker du at reparere fejlene (bemærk, "
+"du kan miste data)"
+
+#: fs/partitioning.pm:79
+#, c-format
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Ikke nok swap-plads til at gennemføre installationen, tilføj mere"
+
+#: fs/partitioning_wizard.pm:47
+#, c-format
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"Du skal have en rod partition. For at få dette, lav en ny partition (eller "
+"vælg en eksisterende).\n"
+"Vælg så kommandoen \"Monterings-sti\" og sæt den til `/'"
+
+#: fs/partitioning_wizard.pm:52
+#, c-format
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+"Du har ingen Swap partition\n"
+"\n"
+"Fortsæt alligevel?"
+
+#: fs/partitioning_wizard.pm:80
+#, c-format
+msgid "Use free space"
+msgstr "Brug fri plads"
+
+#: fs/partitioning_wizard.pm:82
+#, c-format
+msgid "Not enough free space to allocate new partitions"
+msgstr "Ikke nok fri plads til at tildele nye partitioner"
+
+#: fs/partitioning_wizard.pm:90
+#, c-format
+msgid "Use existing partitions"
+msgstr "Brug eksisterende partition"
+
+#: fs/partitioning_wizard.pm:92
+#, c-format
+msgid "There is no existing partition to use"
+msgstr "Der er ingen eksisterende partition der kan bruges"
+
+#: fs/partitioning_wizard.pm:99
+#, c-format
+msgid "Use the Microsoft Windows® partition for loopback"
+msgstr "Brug Microsoft Windows® partitionen til Loopback"
+
+#: fs/partitioning_wizard.pm:102
+#, c-format
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Hvilken partition vil du benytte som Linux4Win?"
+
+#: fs/partitioning_wizard.pm:104
+#, c-format
+msgid "Choose the sizes"
+msgstr "Vælg størrelserne"
+
+#: fs/partitioning_wizard.pm:105
+#, c-format
+msgid "Root partition size in MB: "
+msgstr "Rod-partitions størrelse i Mb: "
+
+#: fs/partitioning_wizard.pm:106
+#, c-format
+msgid "Swap partition size in MB: "
+msgstr "Swap-partitions størrelse i Mb: "
+
+#: fs/partitioning_wizard.pm:115
+#, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+"Der er ingen FAT-partitioner at bruge som loopback (eller ikke nok plads "
+"tilbage)"
+
+#: fs/partitioning_wizard.pm:122
+#, c-format
+msgid "Use the free space on the Microsoft Windows® partition"
+msgstr "Brug den frie plads på Windows-partitionen"
+
+#: fs/partitioning_wizard.pm:124
+#, c-format
+msgid "Which partition do you want to resize?"
+msgstr "Hvilken partition ønsker du at ændre størrelse på?"
+
+#: fs/partitioning_wizard.pm:138
+#, c-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+"Programmet til at ændre størrelse på FAT kan ikke behandle din partition, \n"
+"den følgende fejl opstod: %s"
+
+#: fs/partitioning_wizard.pm:141
+#, c-format
+msgid "Computing the size of the Microsoft Windows® partition"
+msgstr "Beregner størrelsen på Microsoft Windows®-partitionen"
+
+#: fs/partitioning_wizard.pm:148
+#, c-format
+msgid ""
+"Your Microsoft Windows® partition is too fragmented. Please reboot your "
+"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
+"the Mandriva Linux installation."
+msgstr ""
+"Din Microsoft Windows® partition er for fragmenteret, kør 'defrag' først"
+
+#: fs/partitioning_wizard.pm:151
+#, 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 ""
+"ADVARSEL!\n"
+"\n"
+"\n"
+"DrakX vil nu ændre størrelsen på din Windows-partition.\n"
+"\n"
+"Vær forsigtig: denne operation er farlig. Hvis du ikke allerede har gjort "
+"det, bør du først gå ud af denne installation, køre 'chkdsk c:' fra en "
+"kommandolinje under Windows (bemærk, det er ikke nok at køre det grafiske "
+"program 'scandisk', vær sikker på at køre 'chkdsk' i en kommandolinje!) og "
+"eventuelt defrag) og så genstarte installationen. Du bør også tage en "
+"sikkerhedskopi af dine data.\n"
+"\n"
+"\n"
+"Tryk på %s, hvis du er helt sikker."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: fs/partitioning_wizard.pm:160 interactive.pm:538 interactive/curses.pm:217
+#: ugtk2.pm:508
+#, c-format
+msgid "Next"
+msgstr "Næste"
+
+#: fs/partitioning_wizard.pm:163
+#, c-format
+msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
+msgstr ""
+"Hvilken størrelse ønsker du at at beholde Microsoft Windows® på partition %s?"
+
+#: fs/partitioning_wizard.pm:164
+#, c-format
+msgid "Size"
+msgstr "Størrelse"
+
+#: fs/partitioning_wizard.pm:173
+#, c-format
+msgid "Resizing Microsoft Windows® partition"
+msgstr "Udregner Microsoft Windows®-filsystemets grænser"
+
+#: fs/partitioning_wizard.pm:178
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "FAT størrelsesændring mislykkedes: %s"
+
+#: fs/partitioning_wizard.pm:193
+#, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+"Der er ingen FAT-partitioner at ændre størrelse på (eller ikke nok plads "
+"tilbage)"
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Remove Microsoft Windows®"
+msgstr "Fjern Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Erase and use entire disk"
+msgstr "Slet hele disken og brug den"
+
+#: fs/partitioning_wizard.pm:200
+#, c-format
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Du har mere end et diskdrev, hvilken ønsker du at installere Linux på?"
+
+#: fs/partitioning_wizard.pm:206
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Alle eksisterende partitioner og deres data vil gå tabt på drev %s"
+
+#: fs/partitioning_wizard.pm:217
+#, c-format
+msgid "Custom disk partitioning"
+msgstr "Brugerdefineret disk-opdeling"
+
+#: fs/partitioning_wizard.pm:223
+#, c-format
+msgid "Use fdisk"
+msgstr "Brug fdisk"
+
+#: fs/partitioning_wizard.pm:226
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+"Du kan nu partitionere %s.\n"
+"Når du er færdig, så husk at gemme med 'w'"
+
+#: fs/partitioning_wizard.pm:266
+#, c-format
+msgid "I can not find any room for installing"
+msgstr "Kan ikke finde plads til installering"
+
+#: fs/partitioning_wizard.pm:270
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "DrakX partitionerings-vejlederen fandt de følgende løsninger:"
+
+#: fs/partitioning_wizard.pm:278
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Partitionering mislykkedes: %s"
+
+#: fs/type.pm:366
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "Du kan ikke bruge JFS på partitioner mindre end 16Mb"
-#: fs/type.pm:364
+#: fs/type.pm:367
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "Du kan ikke bruge ReiserFS på partitioner mindre end 32Mb"
@@ -3260,7 +2671,12 @@ msgstr "med /usr"
msgid "server"
msgstr "server"
-#: fsedit.pm:219
+#: fsedit.pm:116
+#, c-format
+msgid "BIOS software RAID detected on disks %s. Activate it?"
+msgstr "BIOS-programmel RAID opdaget på diskene %s. Skal det aktiveres?"
+
+#: fsedit.pm:230
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
@@ -3278,22 +2694,22 @@ msgstr ""
"\n"
"Er du indforstået med at ødelægge alle partitionerne?\n"
-#: fsedit.pm:392
+#: fsedit.pm:403
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Monteringsstier skal begynde med /"
-#: fsedit.pm:393
+#: fsedit.pm:404
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Monteringspunkter bør kun indeholde bogstaver og tal"
-#: fsedit.pm:394
+#: fsedit.pm:405
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Der findes allerede en partition med monterings-sti %s\n"
-#: fsedit.pm:398
+#: fsedit.pm:409
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -3304,7 +2720,7 @@ msgstr ""
"Ingen systemopstarter kan håndtere dette uden en /boot partition.\n"
"Vær sikker på at tilføje en /boot partition"
-#: fsedit.pm:404
+#: fsedit.pm:415
#, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
@@ -3313,7 +2729,7 @@ msgstr ""
"Du kan ikke bruge LVM Logisk Volumen for monteringspunkt %s da det "
"indeholder fysiske volumener"
-#: fsedit.pm:406
+#: fsedit.pm:417
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -3326,12 +2742,12 @@ msgstr ""
"omfatter fysiske volumener.\n"
"Du bør oprette en /boot-partition først"
-#: fsedit.pm:410 fsedit.pm:412
+#: fsedit.pm:421 fsedit.pm:423
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Dette katalog bør ligge på rod-filsystemet"
-#: fsedit.pm:414 fsedit.pm:416
+#: fsedit.pm:425 fsedit.pm:427
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -3340,22 +2756,22 @@ msgstr ""
"Du skal have et rigtigt filsystem (ext2/ext3, reiserfs, xfs eller jfs) til "
"dette monteringspunkt\n"
-#: fsedit.pm:418
+#: fsedit.pm:429
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr "Du kan ikke bruge et krypteret filsystem for monteringspunkt %s"
-#: fsedit.pm:482
+#: fsedit.pm:493
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Ikke nok fri plads til at tildele nye partitioner automatisk"
-#: fsedit.pm:484
+#: fsedit.pm:495
#, c-format
msgid "Nothing to do"
msgstr "Ingenting at lave"
-#: harddrake/data.pm:62 install_any.pm:1710
+#: harddrake/data.pm:62
#, c-format
msgid "Floppy"
msgstr "Diskette"
@@ -3365,12 +2781,12 @@ msgstr "Diskette"
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:88 install_any.pm:1711
+#: harddrake/data.pm:88
#, c-format
msgid "Hard Disk"
msgstr "Hard Disk"
-#: harddrake/data.pm:97 install_any.pm:1712
+#: harddrake/data.pm:97
#, c-format
msgid "CDROM"
msgstr "cd-rom"
@@ -3385,103 +2801,102 @@ msgstr "CD/DVD-brændere"
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:127 standalone/drakbackup:2066
+#: harddrake/data.pm:127
#, c-format
msgid "Tape"
msgstr "Bånd"
-#: harddrake/data.pm:136
+#: harddrake/data.pm:138
+#, c-format
+msgid "AGP controllers"
+msgstr "AGP-kontrolkort"
+
+#: harddrake/data.pm:147
#, c-format
msgid "Videocard"
msgstr "Videokort"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:157
#, c-format
msgid "DVB card"
msgstr "DVB-kort"
-#: harddrake/data.pm:154
+#: harddrake/data.pm:165
#, c-format
msgid "Tvcard"
msgstr "TV-kort"
-#: harddrake/data.pm:163
+#: harddrake/data.pm:174
#, c-format
msgid "Other MultiMedia devices"
msgstr "Andre multimedie-enheder"
-#: harddrake/data.pm:172
+#: harddrake/data.pm:183
#, c-format
msgid "Soundcard"
msgstr "Lydkort"
-#: harddrake/data.pm:185
+#: harddrake/data.pm:196
#, c-format
msgid "Webcam"
msgstr "Webcam"
-#: harddrake/data.pm:199
+#: harddrake/data.pm:210
#, c-format
msgid "Processors"
msgstr "Processorer"
-#: harddrake/data.pm:209
+#: harddrake/data.pm:220
#, c-format
msgid "ISDN adapters"
msgstr "ISDN-kort"
-#: harddrake/data.pm:220
+#: harddrake/data.pm:231
#, c-format
msgid "USB sound devices"
msgstr "USB-lydenheder"
-#: harddrake/data.pm:229
+#: harddrake/data.pm:240
#, c-format
msgid "Radio cards"
msgstr "Radiokort"
-#: harddrake/data.pm:238
+#: harddrake/data.pm:249
#, c-format
msgid "ATM network cards"
msgstr "ATM-netværkskort"
-#: harddrake/data.pm:247
+#: harddrake/data.pm:258
#, c-format
msgid "WAN network cards"
msgstr "WAN-netværkskort"
-#: harddrake/data.pm:256
+#: harddrake/data.pm:267
#, c-format
msgid "Bluetooth devices"
msgstr "Bluetooth-enheder"
-#: harddrake/data.pm:265
+#: harddrake/data.pm:276
#, c-format
msgid "Ethernetcard"
msgstr "Ethernet-kort"
-#: harddrake/data.pm:282 network/netconnect.pm:492
+#: harddrake/data.pm:293
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:292
+#: harddrake/data.pm:303
#, c-format
msgid "ADSL adapters"
msgstr "ADSL-kort"
-#: harddrake/data.pm:306
+#: harddrake/data.pm:315
#, c-format
msgid "Memory"
msgstr "Hukommelse"
-#: harddrake/data.pm:315
-#, c-format
-msgid "AGP controllers"
-msgstr "AGP-kontrolkort"
-
-#: harddrake/data.pm:324 help.pm:187 help.pm:856
-#: install_steps_interactive.pm:964
+#: harddrake/data.pm:324
#, c-format
msgid "Printer"
msgstr "Printer"
@@ -3507,85 +2922,92 @@ msgstr "SATA-kontrolkort"
msgid "RAID controllers"
msgstr "RAID-kontrolkort"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA kontrolkort"
-#: harddrake/data.pm:385
+#: harddrake/data.pm:386
+#, c-format
+msgid "USB Mass Storage Devices"
+msgstr "USB-lagerenheder"
+
+#: harddrake/data.pm:395
+#, fuzzy, c-format
+msgid "Card readers"
+msgstr "Kortmodel:"
+
+#: harddrake/data.pm:404
#, c-format
msgid "Firewire controllers"
msgstr "Firewire-kontrolkort"
-#: harddrake/data.pm:394
+#: harddrake/data.pm:413
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA-kontrolkort"
-#: harddrake/data.pm:403
+#: harddrake/data.pm:422
#, c-format
msgid "SCSI controllers"
msgstr "SCSI-kontrolkort"
-#: harddrake/data.pm:412
+#: harddrake/data.pm:431
#, c-format
msgid "USB controllers"
msgstr "USB-kontrolkort"
-#: harddrake/data.pm:421
+#: harddrake/data.pm:440
#, c-format
msgid "USB ports"
msgstr "USB porte"
-#: harddrake/data.pm:430
+#: harddrake/data.pm:449
#, c-format
msgid "SMBus controllers"
msgstr "SMBus-kontrollers"
-#: harddrake/data.pm:439
+#: harddrake/data.pm:458
#, c-format
msgid "Bridges and system controllers"
msgstr "Broer og system-kontrolkort"
-#: harddrake/data.pm:450 help.pm:856 install_steps_interactive.pm:94
-#: install_steps_interactive.pm:924 standalone/finish-install:41
-#: standalone/keyboarddrake:29
+#: harddrake/data.pm:469
#, c-format
msgid "Keyboard"
msgstr "Tastatur"
-#: harddrake/data.pm:463
+#: harddrake/data.pm:482
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tablet og touchscreen"
-#: harddrake/data.pm:472 help.pm:856 install_steps_interactive.pm:957
+#: harddrake/data.pm:491
#, c-format
msgid "Mouse"
msgstr "Mus"
-#: harddrake/data.pm:486
+#: harddrake/data.pm:505
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:495
+#: harddrake/data.pm:514
#, c-format
msgid "Scanner"
msgstr "Skanner"
-#: harddrake/data.pm:505 standalone/harddrake2:475
+#: harddrake/data.pm:524
#, c-format
msgid "Unknown/Others"
msgstr "Ukendt|andre"
-#: harddrake/data.pm:533
+#: harddrake/data.pm:552
#, c-format
msgid "cpu # "
msgstr "cpu-nummer "
-#: harddrake/sound.pm:195 standalone/drakconnect:162
-#: standalone/drakconnect:637
+#: harddrake/sound.pm:195
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Vent venligst... Sætter konfigurationen i anvendelse"
@@ -3618,7 +3040,7 @@ msgstr ""
"Her kan du vælge et alternativ drivprogram (enten OSS eller ALSA) for "
"lydkortet (%s)"
-#. -PO: here the first %s is either "OSS" or "ALSA",
+#. -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:246
@@ -3668,17 +3090,17 @@ msgstr ""
"- den nye ALSA API som tilbyder mange forbedrede faciliteter men som kræver "
"brug af ALSA-biblioteket.\n"
-#: harddrake/sound.pm:262 harddrake/sound.pm:350 standalone/drakups:144
+#: harddrake/sound.pm:262 harddrake/sound.pm:351
#, c-format
msgid "Driver:"
msgstr "Drivprogram:"
-#: harddrake/sound.pm:270
+#: harddrake/sound.pm:271
#, c-format
msgid "Trouble shooting"
msgstr "Problemløsning"
-#: harddrake/sound.pm:278
+#: harddrake/sound.pm:279
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
@@ -3693,12 +3115,12 @@ msgstr ""
"\n"
"Den nye \"%s\"-driver vil først blive brugt ved næste systemopstart."
-#: harddrake/sound.pm:286
+#: harddrake/sound.pm:287
#, c-format
msgid "No open source driver"
msgstr "Ingen open source driverrutine"
-#: harddrake/sound.pm:287
+#: harddrake/sound.pm:288
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
@@ -3707,33 +3129,33 @@ msgstr ""
"Der findes ingen fri driver for lydkortet (%s) men der er en leverandørejet "
"driver på '%s'"
-#: harddrake/sound.pm:290
+#: harddrake/sound.pm:291
#, c-format
msgid "No known driver"
msgstr "Ingen kendt driverrutine"
-#: harddrake/sound.pm:291
+#: harddrake/sound.pm:292
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Der findes intet kendt drivprogram for lydkortet (%s)"
-#: harddrake/sound.pm:295 network/netconnect.pm:98 network/netconnect.pm:837
+#: harddrake/sound.pm:296
#, c-format
msgid "Unknown driver"
msgstr "Ukendt drivprogram"
-#: harddrake/sound.pm:296
+#: harddrake/sound.pm:297
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "Drivprogrammet %s for lydkortet er ikke listet"
-#: harddrake/sound.pm:310
+#: harddrake/sound.pm:311
#, c-format
msgid "Sound trouble shooting"
msgstr "Problemløsning omkring lyd"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:313
+#: harddrake/sound.pm:314
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
@@ -3742,7 +3164,7 @@ msgid ""
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\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"
@@ -3761,7 +3183,7 @@ msgstr ""
"\n"
"- \"lspcidrake -v | fgrep AUDIO\" vil vise hvilken driver lydkortet bruger \n"
"som standard\n"
-"- \"grep sound-slot /etc/modules.conf\" vil vise hvilken driver som er i "
+"- \"grep sound-slot /etc/modprobe.conf\" vil vise hvilken driver som er i "
"brug\n"
"\n"
"- \"/sbin/lsmod\" lader dig se om denne driver er indlæst\n"
@@ -3774,18 +3196,18 @@ msgstr ""
"- \"/sbin/fuser -v /dev/dsp\" vil vise hvilke programmer som bruger "
"lydkortet\n"
-#: harddrake/sound.pm:339
+#: harddrake/sound.pm:340
#, c-format
msgid "Let me pick any driver"
msgstr "Lad mig vælge hvilkensomhelst driver"
-#: harddrake/sound.pm:342
+#: harddrake/sound.pm:343
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Vælger en vilkårlig driver"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:345
+#: harddrake/sound.pm:346
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3799,8 +3221,7 @@ msgstr ""
"\n"
"Den aktuelle driver for dit %s-lydkort er \"%s\" "
-#: harddrake/v4l.pm:12 standalone/net_applet:64 standalone/net_applet:65
-#: standalone/net_applet:67
+#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Automatisk detektion"
@@ -3843,3738 +3264,53 @@ msgstr "Kortmodel:"
msgid "Tuner type:"
msgstr "Tuner-type:"
-#: harddrake/v4l.pm:479
+#: interactive.pm:125 interactive.pm:538 interactive/curses.pm:217
+#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
+#: interactive/stdio.pm:142 interactive/stdio.pm:143 ugtk2.pm:410 ugtk2.pm:508
+#: ugtk2.pm:788 ugtk2.pm:811
#, c-format
-msgid "Number of capture buffers:"
-msgstr "Antal fangningsbuffere:"
-
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "Antal fangningsbuffere for mmap-fangning"
-
-#: harddrake/v4l.pm:481
-#, c-format
-msgid "PLL setting:"
-msgstr "PLL-opsætning:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "Radio support:"
-msgstr "Radio-understøttelse:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "enable radio support"
-msgstr "aktivér radio-understøttelse"
-
-#: help.pm:12
-#, c-format
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandriva Linux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-"Før du går videre bør du læse betingelserne i licensen omhyggeligt. Den "
-"omfatter hele Mandriva Linux distributionen. Hvis du er enig i alle "
-"betingelserne i den, så klik på '%s'-boksen. Hvis ikke, så vil klikning på "
-"\"%s\"-knappen genstarte din maskine."
-
-#: help.pm:18
-#, c-format
-msgid ""
-"GNU/Linux is a multi-user system which means each user can have his or her\n"
-"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point will not be "
-"authorized\n"
-"to change anything except their own files and their own configurations,\n"
-"protecting the system from unintentional or malicious changes which could\n"
-"impact on the system as a whole. You'll have to create at least one regular\n"
-"user for yourself -- this is the account which you should use for routine,\n"
-"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
-"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system will not work any more. If you make a\n"
-"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you will not affect the entire system.\n"
-"\n"
-"The first field asks you for a real name. Of course, this is not mandatory\n"
-"-- you can actually enter whatever you like. DrakX will use the first word\n"
-"you type in this field and copy it to the \"%s\" one, which is the name\n"
-"this user will enter to log onto the system. If you like, you may override\n"
-"the default and change the user name. The next step is to enter a password.\n"
-"From a security point of view, a non-privileged (regular) user password is\n"
-"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
-"by making it blank or too simple: after all, your files could be the ones\n"
-"at risk.\n"
-"\n"
-"Once you click on \"%s\", you can add other users. Add a user for each one\n"
-"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
-"finished adding users.\n"
-"\n"
-"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
-"that user (bash by default).\n"
-"\n"
-"When you're finished adding users, you'll be asked to choose a user who\n"
-"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click on\n"
-"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
-msgstr ""
-"GNU/Linux er et flerbrugersystem, det vil sige at hver bruger kan have sine "
-"egne præferencer, sine egne filer og så videre. Du kan læse "
-"startvejledningen for at lære mere om flerbrugersystemer.\n"
-"Men i modsætning til 'root', som er systemadministratoren, vil brugerne som "
-"du tilføjer her ikke have lov til at ændre nogetsomhelst, undtagen deres "
-"egne filer og deres egne opsætninger, hvilket beskytter systemet mod "
-"utilsigtede eller ondartede ændringer som påvirker hele systemet. Du skal "
-"oprette i det mindste én almindelig bruger til dig selv - dette er den konto "
-"som du bør bruge til almindelig dagligt brug. Selvom det er meget nemt at "
-"logge ind som root for at gøre alt, kan det også være meget farligt!\n"
-"En meget simpel fejltagelse kan betyde at dit system ikke virker mere. Hvis "
-"du laver en alvorlig fejltagelse som almindelig bruger, vil det værste der "
-"kan ske at du vil tabe nogen information, men det vil ikke påvirke hele "
-"systemet.\n"
-"\n"
-"Det første felt spørger efter dit rigtige navn. Dette er naturligvis ikke "
-"krævet -du kan faktisk skrive hvad du lyster. DrakX vil bruge det første ord "
-"du indtastede i feltet og kopiere det til '%s'-feltet, hvilket er navnet, "
-"som denne bruger skal indtaste for at logge ind på systemet. Hvis du ønsker "
-"det kan du tilsidesætte det forvalgte og ændre brugernavnet. Det næste trin "
-"er at indtaste en adgangskode. Fra et sikkerhedsmæssigt synspunkt er "
-"adgangskoden for en ikke-priviligeret (normal) bruger er ikke så afgørende "
-"som 'Root'-adgangskoden, men det er ingen grund til at negligere det "
-"alligevel, ved at lade det være blankt eller at gøre det for nemt - når det "
-"kommer til stykket er det dine egne filer, der er i fare.\n"
-"\n"
-"Når du har klikket på '%s', kan du tilføje andre brugere. Tilføj en bruger "
-"for hver af dine venner, din far eller din søster. Når du har tilføjet alle "
-"de brugere du ønsker, klik da på '%s'.\n"
-"\n"
-"Klik på '%s'-knappen lader dig ændre standard-'skál' for denne bruger\n"
-"(bash er standard). \n"
-"\n"
-"Når du er færdig med at tilføje brugere, vil du blive spurgt om at vælge en "
-"bruger som automatisk kan logge ind på systemet når maskinen startes op. "
-"Hvis du er interesseret i denne facilitet (og ikke kærer dig synderligt om "
-"lokal sikkerhed), så vælg den ønskede bruger og vindueshåndtering og klik '%"
-"s'. Hvis du ikke er interesseret i denne facilitet, så afmarkér boksen med '%"
-"s'."
-
-#: help.pm:52 printer/printerdrake.pm:1866 printer/printerdrake.pm:1987
-#: standalone/draksambashare:60
-#, c-format
-msgid "User name"
-msgstr "Brugernavn"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: help.pm:52 help.pm:432 help.pm:682 install_interactive.pm:176
-#: install_steps_gtk.pm:237 install_steps_gtk.pm:682 interactive.pm:436
-#: interactive/newt.pm:321 network/thirdparty.pm:385
-#: printer/printerdrake.pm:3884 standalone/drakTermServ:412
-#: standalone/drakbackup:4102 standalone/drakbackup:4196
-#: standalone/drakbackup:4213 standalone/drakbackup:4231 ugtk2.pm:490
-#, c-format
-msgid "Next"
-msgstr "Næste"
-
-#: help.pm:52
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Ønsker du at bruge denne facilitet?"
-
-#: help.pm:55
-#, c-format
-msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Her er listet de eksisterende Linux-partitioner genkendt på din disk. Du kan "
-"beholde valgene gjort af vejlederen, de er velegnede til almindelig brug. "
-"Hvis du ændrer disse valg skal du i det mindste definere en rod-partition "
-"'/'. Lad være med at vælge en for lille partition, ellers vil du ikke kunne "
-"installere nok programmel. Hvis du ønsker at lagre data på en separat "
-"partition, skal du også vælge en '/home' (kun muligt hvis du har mere end én "
-"Linux-partition). \n"
-"Hver partition er listet som følger: 'Navn', 'Kapacitet'.\n"
-"\n"
-"'Navn' er kodet som følger: 'drevtype', 'drevnummer', "
-"'partitionsnummer' (for eksempel '/hda1').\n"
-"\n"
-"'drevtype' er 'hd' hvis dit diskdrev er et IDE drev, og 'sd' hvis det er et "
-"SCSI drev.\n"
-"\n"
-"'drevnummer' er altid et bogstav efter 'hd' eller 'sd'. For IDE drev:\n"
-"\n"
-" * 'a' betyder 'hoved-drev på den primære IDE controller',\n"
-"\n"
-" * 'b' betyder 'slave-drev på den primære IDE controller',\n"
-"\n"
-" * 'c' betyder 'hoved-drev på den sækundære IDE controller',\n"
-"\n"
-" * 'd' betyder 'slave-drev på den sækundære IDE controller'.\n"
-"\n"
-"For SCSI drev betyder 'a' det 'første drev', 'b' betyder det 'andet drev', "
-"osv."
-
-#: help.pm:86
-#, c-format
-msgid ""
-"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-"Mandriva Linux installationen bliver distribueret på flere cdrom-er. Hvis en "
-"valgt pakke ligger på en anden cdrom, vil DrakX udskyde den nuværende cd og "
-"bede dig om at isætte den forespurgte cd. Hvis du ikke har den forespurgte "
-"cd ved hånden, så klik bare på '%s' - de tilsvarende pakker vil da ikke "
-"blive installerede."
-
-#: help.pm:93
-#, c-format
-msgid ""
-"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandriva Linux, and to make "
-"it\n"
-"simpler to manage, they have been placed into groups of similar\n"
-"applications.\n"
-"\n"
-"Mandriva Linux sorts package groups in four categories. You can mix and\n"
-"match applications from the various categories, so a ``Workstation''\n"
-"installation can still have applications from the ``Server'' category\n"
-"installed.\n"
-"\n"
-" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
-"more of the groups in the workstation category.\n"
-"\n"
-" * \"%s\": if you plan on using your machine for programming, select the\n"
-"appropriate groups from that category. The special \"LSB\" group will\n"
-"configure your system so that it complies as much as possible with the\n"
-"Linux Standard Base specifications.\n"
-"\n"
-" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
-"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
-"of the system. However, if you do not select the \"LSB\" group you will\n"
-"still have a system which is nearly 100%% LSB-compliant.\n"
-"\n"
-" * \"%s\": if your machine is intended to be a server, select which of the\n"
-"more common services you wish to install on your machine.\n"
-"\n"
-" * \"%s\": this is where you will choose your preferred graphical\n"
-"environment. At least one must be selected if you want to have a graphical\n"
-"interface available.\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group.\n"
-"\n"
-"You can check the \"%s\" box, which is useful if you're familiar with the\n"
-"packages being offered or if you want to have total control over what will\n"
-"be installed.\n"
-"\n"
-"If you start the installation in \"%s\" mode, you can deselect all groups\n"
-"and prevent the installation of any new packages. This is useful for\n"
-"repairing or updating an existing system.\n"
-"\n"
-"If you deselect all groups when performing a regular installation (as\n"
-"opposed to an upgrade), a dialog will pop up suggesting different options\n"
-"for a minimal installation:\n"
-"\n"
-" * \"%s\": install the minimum number of packages possible to have a\n"
-"working graphical desktop.\n"
-"\n"
-" * \"%s\": installs the base system plus basic utilities and their\n"
-"documentation. This installation is suitable for setting up a server.\n"
-"\n"
-" * \"%s\": will install the absolute minimum number of packages necessary\n"
-"to get a working Linux system. With this installation you will only have a\n"
-"command-line interface. The total size of this installation is about 65\n"
-"megabytes."
-msgstr ""
-"Det er nu tid til at angive hvilke pakker du vil installere på dit system. "
-"Der er tusindvis af pakker til dit Mandriva Linux system, og for at gøre det "
-"nemmere at håndtere dem er pakkerne blevet placeret i grupper af lignende "
-"programmer.\n"
-"\n"
-"Mandriva Linux opdeler pakkegrupper i fire kategorier. Du kan vælge og vrage "
-"programmer fra de forskellige grupper, så en installation af "
-"'Arbejdsstation' kan også have programmer fra 'Udvikling'-kategorien "
-"installeret.\n"
-"\n"
-" * '%s': Hvis din maskine skal bruges som en arbejdsstation, vælg da en "
-"eller flere af programmerne der er i arbejdsstationskategorien.\n"
-"\n"
-" * '%s': hvis du vil bruge maskinen til programmering, vælg da de relevante "
-"pakker fra denne kategori. Den særlige 'LSB'-gruppe vil konfigurere dit "
-"system så det er så meget som muligt i overensstemmelse med Linux Standards "
-"Base specifikationerne.\n"
-"\n"
-" Valg af 'LSB'-gruppen vil også installere kerne '2.4'-serien, i stedet "
-"for den normale '2.6'-kerne. Dette for at sikre 100%% LSB overensstemmelse "
-"for systemet. Hvis du ikke vælger -LSB--gruppen vil du dog stadig have et "
-"system der er næsten 100%% LSB-overensstemmende.\n"
-"\n"
-" * '%s': hvis det er planen at maskinen skal være en server, så vælg de mere "
-"almindelige tjenester, som du ønsker at installere på maskinen.\n"
-"\n"
-" * '%s': her skal du vælge foretrukne grafiske miljø. Vælg mindst ét, hvis "
-"du ønsker at have en grafisk grænseflade tilgængelig.\n"
-"\n"
-"Ved flytning af musen over et gruppenavn vises en kort forklarende tekst om "
-"denne gruppe.\n"
-"\n"
-"Du kan afkrydse '%s'-boksen, hvilket er nyttigt hvis du er bekendt med de "
-"pakker der tilbydes, eller hvis du ønsker at have helt styr på hvad der skal "
-"installeres.\n"
-"\n"
-"Hvis du starter installationen i '%s'-tilstand, kan du fravælge alle grupper "
-"og forhindre installationen af enhver ny pakke. Dette er nyttigt ved "
-"reparation eller opdatering af et ekisterende system.\n"
-" \n"
-"Hvis du fravælger alle grupper ved udførelse af en almindelig installation "
-"(i modsætning til en opgradering), vil en dialog komme frem som foreslår "
-"dig forskellige former for minimal installation: \n"
-"\n"
-" * '%s' installerer de færrest mulige antal pakker for at få en fungerende "
-"grafisk arbejdsstation.\n"
-"\n"
-" * '%s' installerer det basale system plus basale nytteprogrammer og "
-"tilhørende dokumentation. Denne installation er passende til at sætte en "
-"server op.\n"
-"\n"
-" * '%s' vil installere det absolut mindst mulige antal pakker nødvendigt for "
-"at få et virkende Linux-system. Med denne installation fås kun en "
-"grænseflade med kommandolinjer. Den totale størrelse af denne installation "
-"er omkring 65 megabyte."
-
-#: help.pm:147 share/compssUsers.pl:24
-#, c-format
-msgid "Workstation"
-msgstr "Arbejdsstation"
-
-#: help.pm:147 share/compssUsers.pl:65 share/compssUsers.pl:167
-#: share/compssUsers.pl:169
-#, c-format
-msgid "Development"
-msgstr "Udvikling"
-
-#: help.pm:147 share/compssUsers.pl:145
-#, c-format
-msgid "Graphical Environment"
-msgstr "Grafisk miljø"
-
-#: help.pm:147 install_steps_gtk.pm:235 install_steps_interactive.pm:623
-#, c-format
-msgid "Individual package selection"
-msgstr "Individuelt pakkevalg"
-
-#: help.pm:147 help.pm:589
-#, c-format
-msgid "Upgrade"
-msgstr "Opgradér"
-
-#: help.pm:147 install_steps_interactive.pm:581
-#, c-format
-msgid "With X"
-msgstr "Med X"
-
-#: help.pm:147
-#, c-format
-msgid "With basic documentation"
-msgstr "Med basal dokumentation"
-
-#: help.pm:147
-#, c-format
-msgid "Truly minimal install"
-msgstr "Virkeligt minimale installation"
-
-#: help.pm:150
-#, c-format
-msgid ""
-"If you choose to install packages individually, the installer will present\n"
-"a tree containing all packages classified by groups and subgroups. While\n"
-"browsing the tree, you can select entire groups, subgroups, or individual\n"
-"packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description will appear on the\n"
-"right to let you know the purpose of that package.\n"
-"\n"
-"!! If a server package has been selected, either because you specifically\n"
-"chose the individual package or because it was part of a group of packages,\n"
-"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandriva Linux will automatically start any installed\n"
-"services at boot time. Even if they are safe and have no known issues at\n"
-"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandriva Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do "
-"or\n"
-"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
-"the listed services and they will be started automatically at boot time. !!\n"
-"\n"
-"The \"%s\" option is used to disable the warning dialog which appears\n"
-"whenever the installer automatically selects a package to resolve a\n"
-"dependency issue. Some packages depend on others and the installation of\n"
-"one particular package may require the installation of another package. The\n"
-"installer can determine which packages are required to satisfy a dependency\n"
-"to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-"package list created during a previous installation. This is useful if you\n"
-"have a number of machines that you wish to configure identically. Clicking\n"
-"on this icon will ask you to insert the floppy disk created at the end of\n"
-"another installation. See the second tip of the last step on how to create\n"
-"such a floppy."
-msgstr ""
-"Hvis du vælger at installere pakker individuelt, vil installeringen vise et "
-"træ med alle pakker opdelt i grupper og undergrupper. Under gennembladring "
-"af træet kan du udvælge hele grupper, undergrupper eller individuelle "
-"pakker.\n"
-"\n"
-"Hver gang du udvælger en pakke i træet vil en beskrivelse fremkomme til "
-"højre for at lade dig vide formålet med denne pakke. \n"
-"\n"
-"!! Når en server-pakke er blevet valgt, enten fordi du specielt valgte den "
-"individuelle pakke, eller fordi den var en del af en gruppe af pakker, vil "
-"du blive spurgt om at bekræfte at du virkelig ønsker at installere disse "
-"servere. Som standard under Mandriva Linux bliver installerede servere "
-"startet op ved opstart af maskinen. Selvom de er sikre og ikke har nogen "
-"kendte problemer på udgivelsestidspunktet for distributionen, er det absolut "
-"muligt at sikkerhedshuller blev opdaget efter at denne version af Mandriva "
-"Linux blev færdiggjort. Hvis du ikke véd hvad en bestemt tjeneste vil gøre "
-"eller hvorfor den skal installeres, så klik '%s' her. Et klik med '%s' her "
-"vil installere de nævnte servere og de vil blive startet automatisk under "
-"opstarten!!\n"
-"\n"
-"'%s'-valget deaktiverer advarselsdialogen, som vises hver gang "
-"installeringsprogrammet automatisk vælger en pakke for at løse et "
-"afhængighedsproblem. Nogen pakker afhænger af andre oginstallation af en "
-"bestemt pakke kan kræve installationen af andre pakker. "
-"Installationsprogrammet kan beregne hvilke pakker der er krævet for at "
-"tilfredsstille en afhængighed for at kunne færdiggøre en installation "
-"problemfrit.\n"
-"\n"
-"Den klejne disketteikon i bunden af listen muliggør indlæsning af en "
-"pakkeliste oprettet ved en tidligere installation. Dette er nyttigt hvis du "
-"har et antal maskiner som du ønsker at konfigurere på samme måde. Klik på "
-"denne ikon vil bede dig om at indsætte disketten lavet i slutningen på en "
-"anden installation. Se råd nr to i det sidste trin for hvordan en sådan "
-"diskette kan laves."
-
-#: help.pm:181 help.pm:286 help.pm:314 help.pm:445 install_any.pm:944
-#: interactive.pm:161 modules/interactive.pm:71 standalone/drakbackup:2636
-#: standalone/drakfont:687 standalone/draksec:54 standalone/harddrake2:331
-#: ugtk2.pm:898 wizards.pm:156
-#, c-format
-msgid "No"
-msgstr "Nej"
+msgid "Ok"
+msgstr "O.k."
-#: help.pm:181 help.pm:286 help.pm:445 install_any.pm:944 interactive.pm:161
-#: modules/interactive.pm:71 printer/printerdrake.pm:883
-#: printer/printerdrake.pm:898 standalone/drakbackup:2636
-#: standalone/drakfont:685 standalone/draksec:55 standalone/harddrake2:330
-#: ugtk2.pm:898 wizards.pm:156
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ja"
-#: help.pm:181
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Automatiske afhængigheder"
-
-#: help.pm:184
-#, c-format
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to set up a new printer. The interface presented in our\n"
-"manual is similar to the one used during installation."
-msgstr ""
-"'%s': Et klik på '%s'-knappen vil åbne vejlederen for printerkonfigurering. "
-"Kig i det tilhørende kapitel i 'Startvejledningen' for mere information om "
-"hvordan man opsætter en ny printer. Grænsefladen\n"
-"præsenteret i vores manual ligner den som bruges på installationstidspunktet."
-
-#: help.pm:187 help.pm:567 help.pm:856 install_steps_gtk.pm:595
-#: standalone/drakbackup:2460 standalone/drakbackup:2464
-#: standalone/drakbackup:2468 standalone/drakbackup:2472
-#: standalone/drakroam:227
-#, c-format
-msgid "Configure"
-msgstr "Konfigurér"
-
-#: help.pm:190
-#, c-format
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
-"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which are not needed at boot\n"
-"time.\n"
-"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably do not want to start any services which you do not "
-"need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-"Denne dialog bruges til at vælge hvilke tjenester du ønsker skal startes ved "
-"opstart af maskinen.\n"
-"\n"
-"DrakX vil præsentere alle tjenester, som er med i den aktuelle installation. "
-"Gennemse hver enkelt af dem omhyggeligt og vælg dem fra som ikke er "
-"nødvendige på opstartstidspunktet.\n"
-"\n"
-"En kort forklarende tekst om en tjeneste bliver vist når den vælges. Hvis du "
-"ikke er sikker på om en tjeneste er nyttig eller ej, er det dog sikrere at "
-"bruge den foreslåede opførsel.\n"
-"\n"
-"Vær specielt varsom på dette trin hvis du planlægger at bruge maskinen som "
-"server: du vil formentlig ønske ikke at starte nogensomhelst tjeneste op som "
-"du ikke har brug for. Husk at nogen tjenester kan være farlige hvis de er "
-"aktiveret på en server. Vælg som hovedregel kun de tjenester som du virkelig "
-"behøver."
-
-#: help.pm:207
-#, c-format
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
-"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
-msgstr ""
-"GNU/Linux håndterer tiden i GMT (Greenwich Mean Time) og oversætter den til "
-"lokal tid ifølge den tidszone du har valgt. Hvis uret på bundkortet er sat "
-"til lokal tid, kan du deaktivere dette ved at fravælge '%s', hvilket vil "
-"lade GNU/Linux vide at systemuret og maskinens ur er i samme tidszone. Dette "
-"er nyttigt når maskinen også bruges til andre operativsystemer.\n"
-"\n"
-"Muligheden '%s' vil automatisk tilpasse systemuret ved at forbinde til en "
-"ekstern tidsserver på internettet. For at denne facilitet kan virke, skal du "
-"have en fungerende internetforbindelse. Vi anbefaler at du vælger en "
-"tidsserver med en placering nær ved dig. Denne mulighed installerer faktisk "
-"en tidsserver som også kan bruges af andre maskiner på dit lokalnetværk."
-
-#: help.pm:218 install_steps_interactive.pm:859
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Maskin-ur sat til GMT"
-
-#: help.pm:218
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Automatisk tidssynkronisering"
-
-#: help.pm:221
-#, c-format
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-"Grafikkort\n"
-"\n"
-" Installationsprogrammet vil normalt automatisk finde og konfigurere "
-"grafikkortet installeret på din maskine. Hvis dette ikke er tilfældet, kan "
-"du fra denne liste vælge det kort du faktisk har installeret.\n"
-" I tilfælde af at forskellige drivere er tilgængelige til dit kort, med "
-"eller uden 3D-accelleration, bliver du spurgt om at vælge den server der "
-"bedst opfylder dine behov."
-
-#: help.pm:232
-#, c-format
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"X (for X Window System) er hjertet af GNU/Linux' grafiske grænseflade som "
-"alle de grafiske miljøer (KDE, GNOME, AfterStep, WindowMaker, mv.) der "
-"kommer sammen med Mandriva Linux afhænger af.\n"
-"\n"
-"Du vil se en liste med forskellige parametre der kan ændres for at få den "
-"bedst mulige grafiske fremvisning:\n"
-"\n"
-"Grafikkort\n"
-"\n"
-" Installationsprogrammet vil normalt automatisk finde ud af at konfigurere "
-"grafikkortet installeret på din maskine. Hvis dette ikke er rigtigt kan du "
-"fra denne liste vælge det kort du faktisk har installeret.\n"
-"\n"
-" I tilfælde af at forskellige drivere er tilgængelige til dit kort, med "
-"eller uden 3D-accelleration, bliver du spurgt om at vælge den server der "
-"bedst opfylder dine behov.\n"
-"\n"
-"\n"
-"Skærm\n"
-"\n"
-" Normalt vil Installationsprogrammet automatisk finde ud af at konfigurere "
-"skærmen tilsluttet din maskine. Hvis dette ikke er rigtigt, kan du fra denne "
-"liste vælge den skærm som er tilsluttet din maskine.\n"
-"\n"
-"\n"
-"\n"
-"Opløsning\n"
-"\n"
-" Her kan du vælge de opløsninger og farvedybder som er tilstede for dit "
-"grafikudstyr. Vælg dem som bedst opfylder dine behov (du vil kunne ændre "
-"dette efter installationen). En prøve på den valgte konfiguration vil blive "
-"vist på skærmen.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Afhængigt af dit udstyr vil denne indgang muligvis ikke vises.\n"
-"\n"
-" Systemet vil prøve at åbne en grafisk skærm i den ønskede opløsning. Hvis "
-"du ser testbeskeden under afprøvningen og svarer '%s', så vil DrakX gå "
-"videre til næste trin. Hvis du ikke ser beskeden, så betyder det at en del "
-"af den automatisk fundne konfiguration var forkert og testen vil automatisk "
-"slutte efter 12 sekunder, og bringe dig tilbage til menuen. Ændr "
-"indstillingerne til du får en korrekt grafisk fremvisning.\n"
-"\n"
-"\n"
-"\n"
-"Valgmuligheder\n"
-"\n"
-" Dette trin lader dig vælge om du ønsker at din maskine automatisk skal "
-"skifte til en grafisk grænseflade ved opstart. Selvfølgelig vil du ønske at "
-"svare '%s', hvis din maskine skal bruges som server, eller hvis ikke "
-"lykkedes dig at få skærmen konfigureret. "
-
-#: help.pm:289
-#, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
-msgstr ""
-"Skærm\n"
-"\n"
-" Installationsprogrammet vil normalt automatisk finde ud af at konfigurere "
-"skærmen tilsluttet din maskine. Hvis dette ikke er den rigtige, kan du i "
-"denne liste vælge den skærm du faktisk har tilsluttet din maskine."
-
-#: help.pm:296
-#, c-format
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
-msgstr ""
-"Opløsning\n"
-"\n"
-" Hér kan du vælge opløsninger og farvedybder ud af de tilgængelige "
-"muligheder for dit udstyr. Vælg dem som bedst opfylder dine behov (du vil "
-"dog kunne ændre dette efter installationen). Et eksempel på den valgte "
-"konfiguration vil blive vist på skærmen."
-
-#: help.pm:304
-#, c-format
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-"I tilfælde af at forskellige servere er tilgængelige for dit kort, med eller "
-"uden 3D-accelleration, bliver du spurgt om at vælge den server der bedst "
-"opfylder dine behov."
-
-#: help.pm:309
-#, c-format
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"Til sidst valgmulighederne\n"
-"\n"
-"Dette trin lader dig vælge om du ønsker automatisk at skifte til en grafisk "
-"grænseflade ved opstart. Selvfølgelig vil du ønske at svare '%s', hvis din "
-"maskine skal bruges som server, eller hvis ikke lykkedes dig at få skærmen "
-"konfigureret."
-
-#: help.pm:317
-#, c-format
-msgid ""
-"You now need to decide where you want to install the Mandriva Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandriva Linux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandriva Linux system, "
-"choose\n"
-"this option. Be careful, because you will not be able to undo this "
-"operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-"Nu skal du vælge hvor på din harddisk du vil installere dit Mandriva Linux-"
-"operativsystem. Hvis disken er tom eller et eksisterende operativsystem "
-"bruger alt pladsen på den, bliver du nødt til at partitionere drevet. "
-"Partitionering vil sige at diskdrevet opdeles i logiske dele for at lave den "
-"plads der behøves til at installere dit nye Mandriva Linux-system.\n"
-"\n"
-"Da partitioneringen af en disk normalt ikke kan fortrydes og kan føre til "
-"tab af data, kan det godt være frustrerende og stressende for uøvede "
-"brugere. Heldigvis har DrakX en vejleder som forenkler denne proces. Før du "
-"fortsætter med dette trin kan du gennemlæse resten af dette afsnit, og ikke "
-"mindst tage dig den tid du behøver.\n"
-"\n"
-"Afhængig af dit diskdrevs konfiguration er flere muligheder tilstede:\n"
-"\n"
-" * '%s': Denne mulighed vil udføre en automatisk opdeling af dine tomme "
-"diskdrev. Hvis du bruger denne mulighed vil du ikke blive spurgt om mere.\n"
-"\n"
-" * '%s': Vejlederen har fundet en eller flere eksisterende Linux-partitioner "
-"på dit diskdrev. Hvis du vil bruge dem, så vælg denne mulighed. Du vil så "
-"blive spurgt om monteringspunkter tilknyttet hver af partitionerne. De gamle "
-"monteringspunkter er forvalgt og i de fleste tilfælde er det en god idé at "
-"beholde dem.\n"
-"\n"
-" * '%s': Hvis Microsoft Windows er installeret på din disk og bruger al "
-"pladsen, bliver du nødt til at lave fri plads til GNU/Linux. For at gøre "
-"dette kan du slette dine Microsoft Windows partitioner og data (se "
-"muligheden \"Slet hele disken\") eller ændre størrelsen på din Microsoft "
-"Windows-FAT- eller NTFS-partition. Størrelsesændringen kan fortages uden tab "
-"af data, hvis du i forvejen har defragmenteret Windows-partitionen. Det "
-"anbefales på det kraftigste at du laver en sikkerhedskopi først. Denne "
-"mulighed anbefales hvis du vil bruge både Mandriva Linux og Microsoft "
-"Windows på samme maskine.\n"
-"\n"
-" Før du vælger denne løsning, bør du forstå at størrelsen på din Microsoft "
-"Windows partition vil blive mindre end da du startede. Du vil have mindre "
-"fri plads under Microsoft Windows til at gemme dine data eller installere "
-"nyt programmel.\n"
-"\n"
-" * '%s': Hvis du vil slette alle data på alle partitioner på denne disk og "
-"erstatte dem med dit nye Mandriva Linux-system, kan du vælge denne mulighed. "
-"Vær forsigtig, for du vil ikke være i stand til at fortryde denne handling "
-"efter at du har sagt ja.\n"
-"\n"
-" !! Hvis du bruger denne mulighed vil alle eksisterende data på din disk "
-"gå tabt. !!\n"
-"\n"
-" * '%s': Denne mulighed kommer til syne når diskdrevet er fuldstændigt "
-"optaget af Microsoft Windows. Valg af denne mulighed vil simpelthen slette "
-"alt på disken og begynde fra en frisk, og partitionere det hele fra ny.\n"
-"\n"
-" !! Hvis du bruger denne mulighed vil alle eksisterende data på din disk "
-"gå tabt. !!\n"
-"\n"
-" * '%s': Vælg denne mulighed hvis du vil partitionere disken i hånden. Vær "
-"forsigtig - det er en stærk , men også farlig mulighed. og du kan meget nemt "
-"komme til at slette alle dine data. Derfor er denne mulighed kun anbefalet "
-"hvis du har lavet noget lignende før og har nogen erfaring. For flere "
-"instruktioner om brugen af DiskDrake-programmet kan du se i afsnittet "
-"'Administrér dine partitioner' i 'Startervejledningen'."
-
-#: help.pm:375 install_interactive.pm:96
-#, c-format
-msgid "Use free space"
-msgstr "Brug fri plads"
-
-#: help.pm:375
-#, c-format
-msgid "Use existing partition"
-msgstr "Brug eksisterende partition"
-
-#: help.pm:375 install_interactive.pm:138
-#, c-format
-msgid "Use the free space on the Microsoft Windows® partition"
-msgstr "Brug den frie plads på Windows-partitionen"
-
-#: help.pm:375
-#, c-format
-msgid "Erase entire disk"
-msgstr "Slet hele disken"
-
-#: help.pm:375
-#, c-format
-msgid "Remove Windows"
-msgstr "Fjern Windows"
-
-#: help.pm:375 install_interactive.pm:233
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Brugerdefineret disk-opdeling"
-
-#: help.pm:378
-#, c-format
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
-"to remove the installation media (CD-ROM or floppy). The first thing you\n"
-"should see after your computer has finished doing its hardware tests is the\n"
-"boot-loader menu, giving you the choice of which operating system to start.\n"
-"\n"
-"The \"%s\" button shows two more buttons to:\n"
-"\n"
-" * \"%s\": enables you to create an installation floppy disk which will\n"
-"automatically perform a whole installation without the help of an operator,\n"
-"similar to the installation you've just configured.\n"
-"\n"
-" Note that two different options are available after clicking on that\n"
-"button:\n"
-"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
-"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing on a number of similar\n"
-"machines. See the Auto install section on our web site for more\n"
-"information.\n"
-"\n"
-" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
-"To use this selection with another installation, insert the floppy and\n"
-"start the installation. At the prompt, press the [F1] key, type >>linux\n"
-"defcfg=\"floppy\"<< and press the [Enter] key.\n"
-"\n"
-"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
-"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
-"/dev/fd0\"."
-msgstr ""
-"Værsgo'. Installationen en nu færdig og dit GNU/Linux-system er nu klar til "
-"brug. Klik blot på '%s' for at genstarte systemet. Glem ikke at fjerne "
-"installationsmediet (cdrom eller diskette). Den første ting, som du burde "
-"se, efter din maskine har lavet sine test af maskinel, er opstartsmenuen, "
-"som lader dig vælge det operativsystem der skal startes.\n"
-"\n"
-"'%s'-knappen viser to ekstra knapper for:\n"
-"\n"
-" * '%s': at oprette en installerings-diskette, som automatisk vil udføre en "
-"hel installation uden hjælp fra en operatør, magen til den installation du "
-"lige har konfigureret.\n"
-"\n"
-" Bemærk at to forskellige muligheder er tilstede efter klik på denne "
-"knap:\n"
-"\n"
-" * '%s': Dette er en delvist automatiseret installering. "
-"Partitioneringstrinnet er den eneste interaktive procedure.\n"
-"\n"
-" * '%s': Fuldautomatisk installering: harddisken bliver fuldstændig "
-"genoverskrevet, alle data forsvinder.\n"
-"\n"
-" Denne facilitet er meget nyttig ved installering af et antal lignende "
-"maskiner. Se afsnittet om autoinstallering på vores websted for yderligere "
-"oplysninger.\n"
-"\n"
-" * '%s'(*): gemmer en liste med de pakker der er valgt under denne "
-"installation. For at bruge dette pakkevalg i en anden installation kan "
-"disketten indsættes i drevet og installeringen kan startes. Brug [F1]-tasten "
-"på opstartsskærmen og indtast >>linux defcfg=\"floppy\"<< og trykke på "
-"[Enter]-tasten.\n"
-". \n"
-"(*) Du har brug for en FAT-formatteret diskette. For at lave en under GNU/"
-"Linux skal du taste\n"
-"\"mformat a:\", eller \"fdformat /dev/fd0\" fulgt af \"mkfs.vfat\n"
-"/dev/fd0\"."
-
-#: help.pm:410
-#, c-format
-msgid "Generate auto-install floppy"
-msgstr "Lav autoinstallations-diskette"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Replay"
-msgstr "Afspil igen"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Automated"
-msgstr "Automatisk"
-
-#: help.pm:410 install_steps_interactive.pm:1317
-#, c-format
-msgid "Save packages selection"
-msgstr "Gem pakke-valg"
-
-#: help.pm:413
-#, c-format
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
-"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
-"reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"will not be able to recover it.\n"
-"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
-"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandriva Linux operating system installation.\n"
-"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-"Hvis du vælger at genbruge nogle gamle GNU/Linux-partitioner, kan duønske at "
-"omformatere nogle af dem og slette de data som de indeholder. For at gøre "
-"dette skal du også vælge disse partitioner.\n"
-"\n"
-"Bemærk at det ikke er nødvendigt at omformatere alle allerede eksisterende "
-"partitioner. Det er nødvendigt at omformatere de partitioner, der indeholder "
-"operativsystemet (såsom '/', '/usr' og '/var', men du er ikke nødt til at "
-"omformatere partitioner som du ønsker at beholde (typisk /home).\n"
-"\n"
-"Vær forsigtig med valg af partitioner; efter formatering vil alle data være "
-"slettede på de valgte partitioner, og du vil ikke kunne redde nogetsomhelst "
-"af det.\n"
-"\n"
-"Klik på '%s' når du er klar til at formatere partitionerne.\n"
-"\n"
-"Klik på '%s' hvis du ønsker at vælge andre partitioner til at installere dit "
-"nye Mandriva Linux operativsystem.\n"
-"\n"
-"Klik på '%s' for at vælge partitioner som du ønsker at tjekke for dårlige "
-"blokke."
-
-#: help.pm:432 install_steps_gtk.pm:392 interactive.pm:437
-#: interactive/newt.pm:318 printer/printerdrake.pm:3882
-#: standalone/drakTermServ:391 standalone/drakbackup:4065
-#: standalone/drakbackup:4101 standalone/drakbackup:4212
-#: standalone/drakbackup:4227 ugtk2.pm:488
-#, c-format
-msgid "Previous"
-msgstr "Forrige"
-
-#: help.pm:435
-#, c-format
-msgid ""
-"By the time you install Mandriva Linux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-"På det tidspunkt hvor du installerer Mandriva Linux er det sandsynligt at "
-"nogen af pakkerne er blevet opdaterede siden den oprindelige udgivelse. Fejl "
-"er måske blevet rettet, og sikkerhedsproblemer måske løst. Det er nu muligt "
-"for dig at hente disse ned fra internettet for at disse opdateringer kan "
-"komme dig til gode. Vælg '%s' hvis du har en fungerende internet- "
-"forbindelse eller '%s' hvis du foretrækker at installere opdaterede pakker "
-"senere.\n"
-"\n"
-"Valg af '%s' viser en liste af netsteder hvorfra opdateringer kan hentes. Du "
-"bør vælge en der er nær ved dig. Så vil et træ med pakkevalg blive vist: "
-"gennemse valget og tryk '%s' for at modtage og installere de valgte pakker "
-"eller '%s' for at afbryde."
-
-#: help.pm:445 help.pm:589 install_steps_gtk.pm:391
-#: install_steps_interactive.pm:132
-#, c-format
-msgid "Install"
-msgstr "Installér"
-
-#: help.pm:448
-#, c-format
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
-"\n"
-"If you do not know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandriva Linux\n"
-"Control Center.\n"
-"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-"Nu vil DrakX give dig mulighed for at vælge det sikkerhedsniveau du ønsker "
-"for maskinen. Hovedreglen er at sikkerhedsniveauet bør sættes højere, hvis "
-"maskinen skal indeholde vigtige data, eller hvis den skal være direkte "
-"offentligt på Internettet. Men et højere sikkerhedsniveau vindes normalt på "
-"bekostning af letheden af anvendelsen.\n"
-"\n"
-"Hvis du ikke véd hvad du skal vælge, så behold den foreslåede mulighed. Du "
-"vil kunne ændre det senere med værktøjet draksec som er en del af Mandriva "
-"Linux Kontrolcentret.\n"
-"\n"
-"Udfyld '%s'-feltet med epost-adressen på den person, som er ansvarlig for "
-"sikkerhed. Sikkerhedsmeddelelser vil blive sendt til denne adresse."
-
-#: help.pm:459
-#, c-format
-msgid "Security Administrator"
-msgstr "Sikkerhedsadministrator"
-
-#: help.pm:462
-#, c-format
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandriva Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"%s\": this option deletes all partitions on the selected hard drive\n"
-"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
-"partitions in the free space of your hard drive\n"
-"\n"
-"\"%s\": gives access to additional features:\n"
-"\n"
-" * \"%s\": saves the partition table to a floppy. Useful for later\n"
-"partition-table recovery if necessary. It is strongly recommended that you\n"
-"perform this step.\n"
-"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
-"\n"
-" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it does not always\n"
-"work.\n"
-"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
-"\n"
-" * \"%s\": un-checking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
-"\n"
-" * \"%s\": use this option if you wish to use a wizard to partition your\n"
-"hard drive. This is recommended if you do not have a good understanding of\n"
-"partitioning.\n"
-"\n"
-" * \"%s\": use this option to cancel your changes.\n"
-"\n"
-" * \"%s\": allows additional actions on partitions (type, options, format)\n"
-"and gives more information about the hard drive.\n"
-"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"When defining the size of a partition, you can finely set the partition\n"
-"size by using the Arrow keys of your keyboard.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and the [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
-"\n"
-" * Ctrl-d to delete a partition\n"
-"\n"
-" * Ctrl-m to set the mount point\n"
-"\n"
-"To get information about the different file system types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Nu skal du vælge hvilke partitioner som skal bruges til installering af dit "
-"Mandriva Linux system. Hvis partitionerne allerede er blevet defineret, "
-"enten fra en tidligere installation af GNU/Linux eller med et andet "
-"partitioneringsværktøj, kan du bruge de eksisterende partitioner. Ellers "
-"skal disk-partitionerne defineres først.\n"
-"\n"
-"For at lave partitioner skal du først vælge et diskdrev. Du kan vælge "
-"diskdrevet der skal partitioneres ved at trykke på \"hda\" for det første "
-"IDE drev, \"hdb\" for det andet eller \"sda\" for det første SCSI-drev og så "
-"videre.\n"
-"\n"
-"For at partitionere det valgte diskdrev kan du bruge disse muligheder:\n"
-"\n"
-" * '%s': Dette valg sletter alle partitioner på det valgte diskdrev.\n"
-"\n"
-" * '%s': dette valg tillader dig automatisk at lave Ext3 og swappartitioner "
-"på den fri plads på dit drev.\n"
-"\n"
-"'%s': giver adgang til flere faciliteter:\n"
-"\n"
-" * '%s': Gemmer din partitionstabel på en diskette. Nyttigt ved senere "
-"redning af partitionstabellen, om nødvendigt. Det anbefales meget at du "
-"bruger dette trin.\n"
-"\n"
-" * '%s': lader dig genskabe en tidligere gemt partitionstabel fra diskette.\n"
-"\n"
-" * '%s': hvis din partitionstabel er beskadiget, kan du prøve at redde den "
-"med denne mulighed. Vær forsigtig og husk at det ikke altid virker.\n"
-"\n"
-" * '%s': forkaster alle ændringer og genindlæser partitionstabellen som "
-"oprindeligt lå på diskdrevet\n"
-"\n"
-" * '%s': fravalg af denne mulighed vil tvinge brugere til at manuelt montere "
-"og afmontere medier såsom disketter og cdrommer\n"
-"\n"
-" * '%s': Hvis du ønsker at bruge vejlederen til at partitionere dit "
-"diskdrev, kan du bruge denne mulighed. Dette anbefales, hvis du ikke har den "
-"store forståelse om partitionering\n"
-"\n"
-" * '%s': Du kan bruge denne mulighed for at annullere dine ændringer\n"
-"\n"
-" * '%s': giver mulighed for yderligere handlinger på partitioner (type, "
-"valgmuligheder, format) og giver mere information om diskdrevet\n"
-"\n"
-" * '%s': når du er færdig med partitionering af din disk, vil dette skrive "
-"ændringerne tilbage på disken.\n"
-"\n"
-"Ved definering af en partitionsstørrelse kan du finjustere denne ved at "
-"bruge piletasterne på tastaturet.\n"
-"\n"
-"Bemærk: du kan nå enhver valgmulighed ved brug af tastaturet: navigér gennem "
-"partitionerne med Tab og op- og ned-pilene.\n"
-"\n"
-"Når en partition er valgt kan du bruge:\n"
-"\n"
-" * Ctrl-c for at lave en ny partition (Når en tom partition er valgt)\n"
-"\n"
-" * Ctrl-d for at slette en partition\n"
-"\n"
-" * Ctrl-m for at sætte et monteringssti\n"
-"\n"
-"For at få information om de forskellige tilgængelige filsystemstyper kan du "
-"læse kapitlet ext2fs i 'Referencemanualen'.\n"
-"\n"
-"Hvis du er i gang med at installere på en PPC-maskine skal du lave en lille "
-"HFS-'bootstrap'-partition på mindst 1 MB til Yaboot-systemstarteren. Hvis du "
-"vælger at lave partitionen en smule større, f.eks. 50 MB kan den være nyttig "
-"til at gemme en ekstra kerne og ramdisk-billede for nødsituationer ved "
-"opstart."
-
-#: help.pm:531
-#, c-format
-msgid "Removable media auto-mounting"
-msgstr "Automontering af flytbare medier"
-
-#: help.pm:531
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Skift mellem normal og ekspert-tilstand"
-
-#: help.pm:534
-#, c-format
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandriva Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Mere end én Microsoft Windows partition er blevet genkendt på dit diskdrev. "
-"Vælg den som du ønsker at ændre størrelse på for at kunne installere dit nye "
-"Mandriva Linux operativsystem.\n"
-"\n"
-"Hver partition er listet som følger: 'Linux navn', 'Windows navn', "
-"'Kapacitet'.\n"
-"\n"
-"'Linux navn' er kodet som følger: 'drevtype', 'drevnummer', "
-"'partitionsnummer' (for eksempel '/hda1').\n"
-"\n"
-"'drevtype' er 'hd' hvis dit diskdrev er et IDE drev, og 'sd' hvis det er et "
-"SCSI drev.\n"
-"\n"
-"'drevnummer' er altid et bogstav efter 'hd' eller 'sd'. For IDE drev "
-"gælder:\n"
-"\n"
-" * 'a' betyder 'hoved-drev på den primære IDE controller',\n"
-"\n"
-" * 'b' betyder 'slave-drev på den primære IDE controller',\n"
-"\n"
-" * 'c' betyder 'hoved-drev på den sækundære IDE controller',\n"
-"\n"
-" * 'd' betyder 'slave-drev på den sækundære IDE controller'.\n"
-"\n"
-"For SCSI drev betyder 'a' det 'laveste SCSI-nummer', 'b' betyder det "
-"'næstlaveste SCSI-nummer', osv.\n"
-"\n"
-"'Windows navn' er det bogstav som dit drev har under Windows (den første\n"
-"disk eller partition kaldes 'C:')."
-
-#: help.pm:565
-#, c-format
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country is not in "
-"the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-"'%s': Tjek det aktuelle valg af land. Hvis du ikke er i dette land, så klik "
-"på '%s'-knappen og vælg et andet. Hvis dit land ikke er på den første liste "
-"der vistes, så klik på '%s'-knappen for at få den komplette liste over lande."
-
-#: help.pm:570
-#, c-format
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandriva Linux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandriva Linux system. Your current "
-"partitioning\n"
-"scheme and user data will not be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandriva Linux version \"8.1\" is not recommended."
-msgstr ""
-"Dette trin bliver kun aktiveret hvis der bliver fundet en eksisterende\n"
-"GNU/Linux partition på din maskine.\n"
-"\n"
-"DrakX skal nu vide om du vil udføre en ny installation eller en opgradering\n"
-"af et eksisterende Mandriva Linux-system.\n"
-"\n"
-" * \"%s\": Dette vil stort sét slette hele det gamle system. Dog kan du "
-"afhængigt af din partitionsopsætning forhindre at nogen af dine ekisterende "
-"data (især kataloger i '/home') fra at blive overskrevet. Hvis du ønsker at "
-"ændre hvordan dine diskdrev er partitioneret, eller ændre på filsystemet, "
-"bør du bruge denne mulighed.\n"
-"\n"
-" * \"%s\": Denne installationsklasse lader dig opgradere pakkene som er "
-"installeret på dit nuværende Mandriva Linux-system. Din nuværende "
-"partitionsopsætning og brugerdata bliver ikke berørt. De fleste andre "
-"konfigurationstrin forbliver tilgængelige, i lighed med en "
-"standardinstallation.\n"
-"\n"
-"\"Opgradér\"-valget bør fungere fint på Mandriva Linux-systemer som kører "
-"version '8.1' eller nyere. Udførelse af Opgradér på versioner tidligere end "
-"Mandriva Linux '8.1' er ikke anbefalet."
-
-#: help.pm:592
-#, c-format
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
-"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard do not match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
-"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
-"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-"Afhængigt af det sprog du har valgt vil DrakX automatisk vælge en bestemt "
-"type tastaturopsætning. Tjek at valget er passende, eller vælg en anden "
-"tastaturudlægning.\n"
-"Men du har måske ikke et tastatur som svarer nøjagtigt til dit sprog: for "
-"eksempel hvis du er en engelsktalende svejtser, vil du måske have et "
-"svejtsisk tastatur. Eller hvis du taler engelsk og bor i Québec, er du måske "
-"i samme situation, hvor dit modersmål og tastaturet for landet ikke passer "
-"sammen. I begge tilfælde giver dette installationstrin mulighed for at vælge "
-"et passende tastatur fra listen.\n"
-"\n"
-"Klik på '%s'-tasten for at få víst en liste af understøttede tastaturer.\n"
-"\n"
-"Hvis du vælger en tastaturudlægning baseret på et ikke-latinsk alfabet, vil "
-"den næste dialog give dig mulighed for at vælge den tastekombination, der "
-"vil skifte mellem den latinske og den ikke-latinske udlægning."
-
-#: help.pm:610
-#, c-format
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandriva Linux's use of UTF-8 "
-"will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-"Det første trin er at vælge dit foretrukne sprog.\n"
-"\n"
-"Dit valg af foretrukkent sprog vil påvirke sproget for installeringen, "
-"dokumentationen og systemet generelt. Vælg den verdensdel du befinder dig i, "
-"og så det sprog, du taler.\n"
-"\n"
-"Hvis du klikker på '%s'-knappen kan du vælge andre sprog, der installeres "
-"på maskinen, og derved installeres de sprogspecifikke filer for "
-"systemdokumentation og programmer. Hvis spanske brugere skal bruge din "
-"maskine, vælg da dansk som standardsproget i træ-visningen, og '%s' i den "
-"avancerede afdeling.\n"
-"\n"
-"Om UTF-8 (ISO 10646)-understøttelse. ISO 10646 er en ny tegnkodning som er "
-"beregnet til at dække alle eksiterende sprog. Dog er fuld understøttelse for "
-"dette i GNU/Linux stadig under udvikling. Af denne årsag vil Mandriva Linux' "
-"brug af UTF-8 afhænge af brugerens valg:\n"
-"\n"
-" * Hvis du vælger et sprog som har en lang tradition for tegnkodning (latin1 "
-"sprog, russisk, japansk, kinesisk, koreansk, thai, græsk, tyrkisk, de fleste "
-"iso-8859-2 sprog) vil den traditionelle tegnkodning blive brugt som "
-"standard;\n"
-"\n"
-" * Andre sprog vil bruge ISO 10646 som standard;\n"
-"\n"
-" * Hvis to eller flere sprog er krævet, og disse sprog ikke bruger samme "
-"kodning, så vil ISO 10646 blive brugt for hele systemet;\n"
-"\n"
-" * Endeligt kan ISO 10646 blive gennemtvunget for brugeren på hele systemet "
-"på foranledning af brugeren ved at vælge muligheden '%s' uafhængigt af "
-"hvilket sprog der er valgt.\n"
-"\n"
-"Bemærk at du ikke er begrænset til at vælge et enkelt yderligere sprog. Du "
-"kan vælge flere sprog, eller endog installere dem alle ved at markere '%s'-"
-"boksen. Valg af understøttelse for et sprog betyder at oversættelser, "
-"skrifttyper, stavekontrol mv for dette sprog bliver installeret. \n"
-"For at skifte mellem de forskellige sprog installeret på systemet kan du "
-"starte programmet '/usr/sbin/localedrake' som 'root' for at ændre det sprog "
-"der bruges af hele systemet. Kørsel af dette program som almindelig bruger "
-"vil kun ændre sprogindstillingerne for denne bruger."
-
-#: help.pm:648
-#, c-format
-msgid "Espanol"
-msgstr "Spansk"
-
-#: help.pm:651
-#, c-format
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
-"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-"Normalt har DrakX ingen problemer med at finde ud af hvor mange knapper du "
-"har på din mus. Den antager at du har en to-knapsmus og vil lave en "
-"opsætning hvor den tredje knap emuleres. Den tredje knap for en to-knaps mus "
-"kan fås ved at trykke på den venstre og højre museknap samtidigt. DrakX vil "
-"automatisk vide om din mus bruger et PS/2, et serielt eller et USB-"
-"grænsesnit.\n"
-"\n"
-"Hvis du har en 3-knaps mus uden hjul, kan du vælge '%s'-musen. DrakX vil så "
-"konfigurere din mus så du kan simulere hjulet med den: for at gøre dette "
-"skal du trykke på midterknappen og flyttte op og ned på musen.\n"
-"\n"
-"Hvis du ønsker en anden type mus, vælg da den rigtige type mus fra den viste "
-"liste.\n"
-"\n"
-"Du kan vælge '%s'-indgangen for at få en 'generisk' musetype som vil virke "
-"med næsten alle mus.\n"
-"\n"
-"Hvis du vælger en mus forskellig fra den forvalgte, vil der blive vist en "
-"afprøvningsskærm. Brug knapperne og hjulet for at efterprøve om indstillerne "
-"er korrekte, og at musen virker korrekt. Hvis musen ikke virker godt, tryk "
-"da på mellemrumstangenten eller vognretur for at annullere testen, og du vil "
-"vende tilbage til listen med mus.\n"
-"\n"
-"Til tider findes mus med hjul ikke automatisk, så du vil behøve at vælge din "
-"mus fra en liste. Forsikr dig om at du vælger den der passer til porten som "
-"din mus er tilsluttet. Efter valg af en mus og trykning på '%s'-knappen vil "
-"et billede blive vist med en mus på skærmen. Rul med musehjulet for at "
-"forsikre dig om at det er aktiveret korrekt. Når du ruller med dit musehjul "
-"vil du se musehjulet på skærmen bevæger sig. Afprøv knapperne og tjek at "
-"musemarkøren flytter sig når du flytter rundt på musen."
-
-#: help.pm:682
-#, c-format
-msgid "with Wheel emulation"
-msgstr "med hjul-emulering"
-
-#: help.pm:682
-#, c-format
-msgid "Universal | Any PS/2 & USB mice"
-msgstr "Universel | Alle PS/2 & USB mus"
-
-#: help.pm:685
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Vælg den rigtige port. For eksempel er navnet for COM1-porten under MS "
-"Windows 'ttyS0' under GNU/Linux."
-
-#: help.pm:689
-#, c-format
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: do not make the password too long or too complicated because "
-"you\n"
-"must be able to remember it!\n"
-"\n"
-"The password will not be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you do not know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-"Dette er den vanskeligste beslutning omkring sikkerheden af dit GNU/Linux- "
-"system: Du skal indtaste din 'root'-adgangskode. 'Root' er "
-"systemadministratoren og er den eneste bruger, der har lov til at lave "
-"opdateringer, tilføje brugere, ændre i den overordnede systemkonfiguration "
-"og så videre. Kort sagt, 'root' kan gøre alt! Derfor skal du vælge en "
-"adgangskode der er svær at gætte - DrakX vil fortælle dig hvis adgangskoden "
-"du valgte er for simpel. Som du kan se er du ikke tvunget til at indtaste en "
-"adgangskode, men vi advarer på det kraftigste mod dette. GNU/Linux er lige "
-"så udsat for behandlingsfejl som ethvert andet operativsystem. Da 'root' kan "
-"overvinde alle forhindringer og uforvarende slette alle data på partitioner "
-"ved sorgløst at behandle partitionerne selv, er det vigtigt at det er "
-"vanskeligt at blive 'root'.\n"
-"\n"
-"Adgangskoden bør være en blanding af bogstaver og tal og mindst 8 tegn "
-"langt. Skriv aldrig en adgangskode ned for 'root' - det gør det alt for nemt "
-"at bryde ind i dit system.\n"
-"\n"
-"Gør dog ikke adgangskoden for lang eller for kompliceret da du skal være i "
-"stand til at huske den uden for stort besvær!\n"
-"\n"
-"Adgangskoden vil ikke blive vist på skærmen når du indtaster den. Du skal "
-"derfor indtaste adgangskoden to gange, for at begrænse risikoen for "
-"tastefejl. Hvis du kommer til at lave den samme tastefejl to gange, skal du "
-"bruge denne 'ukorrekte' adgangskode den første gang du prøver at koble op "
-"som 'root'.\n"
-"\n"
-"Hvis du ønsker at en autentificerings-server skal styre adgangen til din "
-"maskine, så klik på '%s'-knappen.\n"
-"\n"
-"Hvis dit netværk bruger LDAP, NIS eller PDC Windows domæne-"
-"autentificeringstjenester, vælg da den rigtige som '%s'. Hvis du ikke véd "
-"hvilken der skal bruges, så bør du spørge din systemadministrator.\n"
-"\n"
-"Hvis du har problemer med at huske adgangskoder, så kan du vælge '%s' hvis "
-"din maskine ikke vil være forbundet til Internettet, og du stoler på alle "
-"som kan få adgang til maskinen. "
-
-#: help.pm:723
-#, c-format
-msgid "authentication"
-msgstr "autentifikation"
-
-#: help.pm:726
-#, c-format
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can not determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" will not install any boot loader. Use this option only if "
-"you\n"
-"know what you're doing."
-msgstr ""
-"En opstartsindlæser er et lille program som startes af maskinen på "
-"opstartstidspunktet. Det er ansvarligt for at starte hele systemet op. "
-"Normalt er dette trin helt automatisk. DrakX vil analysere opstartssektoren "
-"på disken og handle ud fra det som findes der.\n"
-"\n"
-" * Hvis en opstartssektor for Windows bliver fundet, vil den erstatte denne "
-"med en GRUB- eller LILO-opstartsektor. På denne måde kan du indlæse enten "
-"GNU/Linux eller ethvert andet operativsystem installeret på din maskine.\n"
-"\n"
-" * Hvis en opstartsektor for grub eller LILO bliver fundet, vil den blive "
-"erstattet med en ny.\n"
-"\n"
-"Hvis det ikke er mulig at afgøre dette automatisk, vil DrakX spørge dig hvor "
-"opstartsindlæseren skal installeres. Generelt er '%s' det sikreste sted. "
-"Valg af '%s' vil ikke installere nogen opstartsindlæser. Brug kun dette hvis "
-"du véd hvad du gør."
-
-#: help.pm:743
-#, c-format
-msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you do not like your printing\n"
-"system you may change it by running PrinterDrake from the Mandriva Linux\n"
-"Control Center and clicking on the \"%s\" button."
-msgstr ""
-"Nu er det tid til at vælge et udskrivningssystem for din maskine. Andre "
-"styresystemer tilbyder måske ét, men Mandriva tilbyder to. Printersystemerne "
-"er hver især bedst til en bestemt konfigurationstype.\n"
-"\n"
-" * '%s' - som betyder 'print, do not queue' (udskriv, kø ej), er valget, "
-"hvis du har en direkte forbindelse til din printer, og du ønsker at kunne "
-"klare printproblemer med det samme, og du ikke har nogen printere via "
-"netværk. ('%s' vil kun behandle meget simple netværkstilfælde, og er lidt "
-"sløvt på netværk.) Det anbefales at du bruger 'pdq' hvis dette er din første "
-"erfaring med GNU/Linux.\n"
-"\n"
-" * '%s' - står for 'Common Unix Printing System' (Fælles printersystem for "
-"Unix) er fremragende til at udskrive på din lokale printer, og også på den, "
-"der står på den anden side af jordkloden. Det er nemt at konfigurere, og kan "
-"virke som en server eller klient for det bedagede 'lpd'-printsystem, så det "
-"er kompatibelt med ældre styresystemer, som stadig kan have brug for "
-"udskriftstjenester. Det er ganske stærkt, men den basale opsætning er næsten "
-"lige så nem som for 'pdq'. Hvis du har brug for at dette efterligner en "
-"'lpd'-server, skal du aktivere 'cups-lpd'-dæmonen. '%s' har grafiske "
-"grænseflader for udskrivning og valg af printermuligheder, og for "
-"administration af printeren.\n"
-"\n"
-"Hvis du laver et valg nu og senere finder ud af at du ikke kan lide dit "
-"udskriftssystem, kan du ændre det ved at køre PrinterDrake fra Mandriva "
-"Linuxs Kontrolcenter, og klikke på '%s'-knappen."
-
-#: help.pm:766
-#, c-format
-msgid "pdq"
-msgstr "pdq"
-
-#: help.pm:766 printer/cups.pm:117 printer/data.pm:129
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
-
-#: help.pm:766
-#, c-format
-msgid "Expert"
-msgstr "Ekspert"
-
-#: help.pm:769
-#, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"DrakX vil først finde alle IDE-enheder der er tilstede på din maskine. Den "
-"vil også lede efter en eller flere PCI SCSI-kort på dit system. Hvis et SCSI-"
-"kort finDES, vil DrakX automatisk installere en driver til det.\n"
-"\n"
-"Da maskineleftersøgningen ikke er idiotsikker, kan DrakX fejle i at finde "
-"dine diskdrev. I så fald må du angive dit maskinel manuelt.\n"
-"\n"
-"Hvis du måtte angive dit PCI SCSI-kort manuelt, vil DrakX spørge om du vil "
-"specificere nogle indstillingsmuligheder for den. Du bør lade DrakX spørge "
-"udstyret om opsætning af kortspecifikke indstillinger, som er nødvendige for "
-"at initialisere kortet. De fleste gange vil DrakX finde ud af dette uden "
-"problemer.\n"
-"\n"
-"Hvis DrakX ikke kan få oplysninger om indstillinger ud af udstyret, som skal "
-"bruges til opsætningen, skal du angive opsætningsinformation til driveren. "
-
-#: help.pm:787
-#, c-format
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-"'%s': Hvis et lydkort er blevet fundet på dit system, vil det blive vist "
-"her. Hvis du bemærker at lydkortet ikke er det som faktisk er til stede på "
-"systemet, kan du klikke på knappen og vælge en anden driver."
-
-#: help.pm:789 help.pm:856 install_steps_interactive.pm:991
-#: install_steps_interactive.pm:1008
-#, c-format
-msgid "Sound card"
-msgstr "Lydkort"
-
-#: help.pm:792
-#, c-format
-msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"is not in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it is not\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandriva Linux Control Center after the installation has finished to "
-"benefit\n"
-"from full in-line help.\n"
-"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandriva Linux Control Center.\n"
-"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-"Som en opsummering vil DrakX give dig en oversigt over information som den "
-"har indsamlet om dit system. Afhængig af det maskinel der er installeret på "
-"din maskine kan du have et eller flere af de følgende punkter. Hvert punkt "
-"består af den maskinelle enhed der skal konfigureres fulgt af en kort "
-"opsummering af den nuværende konfiguration. Klik på den tilsvarende \"%s\"-"
-"knap for at ændre på opsætningen.\n"
-"\n"
-" * \"%s\": Tjek at din tastaturopsætning er korrekt og ændr om nødvendigt.\n"
-"\n"
-" * \"%s\": Tjek det nuværende valg af land. Hvis du ikke er i dette land, så "
-"klik på \"%s\"-knappen og vælg et andet land. Hvis dit land ikke er i "
-"listen, så klik på \"%s\"-knappen for at få en fuldstændig liste over "
-"lande.\n"
-"\n"
-" ' \"%s\": Som standard bestemmer DrakX din tidszone ud fra hvilket land du "
-"har valgt. Du kan klikke på \"%s\" her, hvis dette ikke er korrekt.\n"
-"\n"
-" * \"%s\" :Tjek den nuværende museopsætning og klik på knappen for at ændre "
-"om nødvendigt.\n"
-"\n"
-" * \"%s\": Ved at klikke på \"%s\"-knappen åbnes printeropsætnings-\n"
-"hjælperen. Konsultér det tilhørende kapitel i begynderguiden for mere\n"
-"information om hvordan en printer kan sættes op. Grænsefladen som er vist\n"
-"i vores manual er magen til den som benyttes under installationen.\n"
-"\n"
-" * '%s': Hvis et lydkort er blevet fundet på dit system, vil det blive vist "
-"hér. Hvis du bemærker at lydkortet ikke er det som faktisk er til stede på "
-"systemet, kan du klikke på knappen og vælge en anden driver.\n"
-"\n"
-" * \"%s\": Hvis du har et TV-kort, så er det her at information om dets "
-"konfiguration bliver vist. Hvis du har et TV-kort som ikke er fundet, så "
-"klik på \"%s\" for at sætte det op manuelt.\n"
-"\n"
-" * \"%s\": Du kan klikke på \"%s\" for at ændre på parameterne til kortet, "
-"hvis du synes at konfigurationen er forkert.\n"
-"\n"
-" * \"%s\": Som standard vil DrakX opsætte din grafiske grænseflade i "
-"opløsningen 800x600 eller 1024x768. Hvis dette ikke passer dig, så klik på '%"
-"s'-knappen for at ændre på opsætningen.\n"
-"\n"
-" * \"%s\": Hvis du ønsker at konfigurere din adgang til internet eller "
-"lokalnet, kan du gøre dette nu. Kig i den trykte dokumentation eller brug "
-"Mandriva Linux Kontrolcenter efter installationen er afsluttet for at drage "
-"nytte af den fulde indbyggede vejledning. \n"
-"\n"
-" * \"%s\": lader dig konfigurere HTTP- og FTP-proxyadresser, hvis maskinen, "
-"du installerer på, skal placeres bag en proxyserver.\n"
-"\n"
-" * \"%s\": Du kan her ændre på sikkerhedsniveauet som defineret i et "
-"tidligere trin.\n"
-"\n"
-" * \"%s\": Hvis du skal koble din maskine direkte til internet, er det en "
-"god idé at beskytte sig mod indtrængning med en brandmur. Kig i det "
-"tilsvarende afsnit i Begyndervejledningen for detaljer om opsætning af "
-"brandmur.\n"
-"\n"
-" * \"%s\": Hvis du vil ændre på konfigurationen for opstartsindlæseren, så "
-"klik på denne knap. Dette bør forbeholdes avancerede brugere. Kig i den "
-"trykte dokumentation eller i den indbyggede hjælp om konfiguration af "
-"opstartsindlæser i Mandriva Linux Kontrolcenter.\n"
-"\n"
-" * \"%s\": her kan du fininstille hvilke tjenester som skal startes på din "
-"maskine. Hvis du skal bruge maskinen som server er det en god idé at "
-"gennemse denne opsætning."
-
-#: help.pm:856 install_steps_interactive.pm:855
-#: install_steps_interactive.pm:950 standalone/drakclock:100
-#: standalone/finish-install:56 standalone/finish-install:57
-#, c-format
-msgid "Timezone"
-msgstr "Tidszone"
-
-#: help.pm:856 install_steps_interactive.pm:1024
-#, c-format
-msgid "TV card"
-msgstr "TV-kort"
-
-#: help.pm:856
-#, c-format
-msgid "ISDN card"
-msgstr "ISDN-kort"
-
-#: help.pm:856
-#, c-format
-msgid "Graphical Interface"
-msgstr "Grafisk grænseflade"
-
-#: help.pm:856 install_any.pm:1733 install_steps_interactive.pm:1042
-#: standalone/drakbackup:2051
-#, c-format
-msgid "Network"
-msgstr "Netværk"
-
-#: help.pm:856 install_steps_interactive.pm:1054
-#, c-format
-msgid "Proxies"
-msgstr "Proxyer "
-
-#: help.pm:856 install_steps_interactive.pm:1065
-#, c-format
-msgid "Security Level"
-msgstr "Sikkerhedsniveau"
-
-#: help.pm:856 install_steps_interactive.pm:1079 network/drakfirewall.pm:189
-#, c-format
-msgid "Firewall"
-msgstr "Brandmur"
-
-#: help.pm:856 install_steps_interactive.pm:1095
-#, c-format
-msgid "Bootloader"
-msgstr "Systemopstarter"
-
-#: help.pm:856 install_steps_interactive.pm:1108 services.pm:114
-#: services.pm:157 services.pm:193
-#, c-format
-msgid "Services"
-msgstr "Tjenester"
-
-#: help.pm:859
-#, c-format
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Vælg det diskdrev som du vil slette for at installere din nye Mandriva Linux "
-"partition. Vær forsigtig, alle data som er på denne partition vil gå tabt og "
-"vil ikke kunne genskabes!"
-
-#: help.pm:864
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-"Klik på '%s' hvis du ønsker at slette alle data og partitioner der ligger på "
-"dette diskdrev. Vær omhyggelig, efter klik på '%s' vil du ikke være i stand "
-"til at redde nogen data eller partitioner, der ligger på dette diskdrev, "
-"inklusive alle Windows data.\n"
-"Klik på '%s' for at stoppe denne handling uden at tabe nogen data og "
-"partitioner der er tilstede på dette diskdrev."
-
-#: help.pm:870
-#, c-format
-msgid "Next ->"
-msgstr "Næste ->"
-
-#: help.pm:870
-#, c-format
-msgid "<- Previous"
-msgstr "<- Forrige"
-
-#: install2.pm:115
-#, c-format
-msgid ""
-"Can not access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"Kunne ikke få adgang til kernemoduler svarende til din kerne (fil %s "
-"mangler), dette betyder normalt at din opstartsdiskette ikke stemmer overens "
-"med installationsmediet (lav en nyere opstartsdiskette)"
-
-#: install2.pm:167
-#, c-format
-msgid "You must also format %s"
-msgstr "Du skal også formatere %s"
-
-#: install_any.pm:406
-#, c-format
-msgid "Do you have further supplementary media?"
-msgstr "Har du andre supplerende medier?"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:409
-#, c-format
-msgid ""
-"The following media have been found and will be used during install: %s.\n"
-"\n"
-"\n"
-"Do you have a supplementary installation medium to configure?"
-msgstr ""
-"De følgende medier er fundet og vil blive brugt ved installeringen: %s.\n"
-"\n"
-"\n"
-"Har du et supplerende installationsmedium, der skal konfigureres?"
-
-#: install_any.pm:422 printer/printerdrake.pm:3211
-#: printer/printerdrake.pm:3218 standalone/scannerdrake:182
-#: standalone/scannerdrake:190 standalone/scannerdrake:241
-#: standalone/scannerdrake:248
-#, c-format
-msgid "CD-ROM"
-msgstr "Cd-rom"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (HTTP)"
-msgstr "Netværk (HTTP)"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (FTP)"
-msgstr "Netværk (FTP)"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (NFS)"
-msgstr "Netværk (NFS)"
-
-#: install_any.pm:452
-#, c-format
-msgid "Insert the CD 1 again"
-msgstr "Indsæt CD 1 igen"
-
-#: install_any.pm:478 network/netconnect.pm:866 standalone/drakbackup:114
-#, c-format
-msgid "No device found"
-msgstr "Ingen enheder fundet"
-
-#: install_any.pm:483
-#, c-format
-msgid "Insert the CD"
-msgstr "Indsæt CD'en"
-
-#: install_any.pm:488
-#, c-format
-msgid "Unable to mount CD-ROM"
-msgstr "Kan ikke montere cdrom"
-
-#: install_any.pm:521 install_any.pm:542
-#, c-format
-msgid "URL of the mirror?"
-msgstr "URL på spejlet?"
-
-#: install_any.pm:526
-#, c-format
-msgid "NFS setup"
-msgstr "NFS-opsætning"
-
-#: install_any.pm:526
-#, c-format
-msgid "Please enter the hostname and directory of your NFS media"
-msgstr "Indtast værtsnavn og katalog for dit NFS-medie"
-
-#: install_any.pm:527
-#, c-format
-msgid "Hostname of the NFS mount ?"
-msgstr "Værtsnavn på NFS-monteringen?"
-
-#: install_any.pm:527 standalone/draknfs:288
-#, c-format
-msgid "Directory"
-msgstr "Katalog"
-
-#: install_any.pm:580
-#, c-format
-msgid ""
-"Can't find a package list file on this mirror. Make sure the location is "
-"correct."
-msgstr "Kan ikke finde hdlist-fil på dette spejl"
-
-#: install_any.pm:657
-#, c-format
-msgid "Removing packages prior to upgrade..."
-msgstr "Fjerner pakker før opgradering..."
-
-#: install_any.pm:699
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Leder efter pakker der allerede er installeret..."
-
-#: install_any.pm:703
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Leder efter pakker som skal opgraderes"
-
-#: install_any.pm:781
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done."
-msgstr ""
-"Skift din cdrom!\n"
-"Indsæt cdrom'en med navnet \"%s\" i dit cdrom-drev og tryk på O.k., når det "
-"gjort."
-
-#: install_any.pm:793
-#, c-format
-msgid "Copying in progress"
-msgstr "Kopiering udføres"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:935
-#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They do not have any known security\n"
-"issues, but some new ones could be found. In that case, you must make sure\n"
-"to upgrade as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"Du har valgt følgende servere: %s\n"
-"\n"
-"\n"
-"Disse servere er aktiveret som standard. De har ingen kendte "
-"sikkerhedsproblemer, men nogen nye kan blive fundet. I så tilfælde skal du "
-"opgradere så snart som mulig.\n"
-"\n"
-"\n"
-"Ønsker du virkelig at installere disse servere?\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:958
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-"De følgende pakker vil blive fjernet for at kunne opdatere systemet: %s\n"
-"\n"
-"\n"
-"Ønsker du virkelig at fjerne disse pakker?\n"
-
-#: install_any.pm:1394 partition_table.pm:597
-#, c-format
-msgid "Error reading file %s"
-msgstr "Fejl ved læsning af filen %s"
-
-#: install_any.pm:1628
-#, c-format
-msgid "The following disk(s) were renamed:"
-msgstr "De følgende diske blev omdøbt:"
-
-#: install_any.pm:1630
-#, c-format
-msgid "%s (previously named as %s)"
-msgstr "%s (tidligere kaldet %s)"
-
-#: install_any.pm:1670
-#, 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 ""
-"Der er opstået en fejl - der kunne ikke findes nogen gyldige enheder, hvor "
-"der kan oprettes nye filsystemer. Undersøg din maskine for at finde årsagen "
-"til problemet"
-
-#: install_any.pm:1714
-#, c-format
-msgid "HTTP"
-msgstr "HTTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "FTP"
-msgstr "FTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "NFS"
-msgstr "NFS"
-
-#: install_any.pm:1737
-#, c-format
-msgid "Please choose a media"
-msgstr "Vælg et medie"
-
-#: install_any.pm:1753
-#, c-format
-msgid "File already exists. Overwrite it?"
-msgstr "Fil eksisterer allerede. Skal den overskrives?"
-
-#: install_any.pm:1757
-#, c-format
-msgid "Permission denied"
-msgstr "Adgang nægtet"
-
-#: install_any.pm:1806
-#, c-format
-msgid "Bad NFS name"
-msgstr "Dårligt NFS-navn"
-
-#: install_any.pm:1827
-#, c-format
-msgid "Bad media %s"
-msgstr "Dårligt medie %s"
-
-#: install_any.pm:1877
-#, c-format
-msgid "Can not make screenshots before partitioning"
-msgstr "Kan ikke lave øjebliksbilleder før partitionering"
-
-#: install_any.pm:1884
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Øjebliksbilleder vil være tilgængelige efter installation i %s"
-
-#: install_gtk.pm:136
-#, c-format
-msgid "System installation"
-msgstr "System-installering"
-
-#: install_gtk.pm:139
-#, c-format
-msgid "System configuration"
-msgstr "Systemkonfiguration"
-
-#: install_interactive.pm:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Noget maskinel på din maskine skal bruge ''proprietære'' drivere for at "
-"virke.\n"
-"Du kan finde information om dem hos: %s"
-
-#: install_interactive.pm:63
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Du skal have en rod partition. For at få dette, lav en ny partition (eller "
-"vælg en eksisterende).\n"
-"Vælg så kommandoen \"Monterings-sti\" og sæt den til `/'"
-
-#: install_interactive.pm:68
-#, c-format
-msgid ""
-"You do not have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Du har ingen Swap partition\n"
-"\n"
-"Fortsæt alligevel?"
-
-#: install_interactive.pm:71 install_steps.pm:215
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Du skal have en FAT-partition monteret under /boot/efi"
-
-#: install_interactive.pm:98
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Ikke nok fri plads til at tildele nye partitioner"
-
-#: install_interactive.pm:106
-#, c-format
-msgid "Use existing partitions"
-msgstr "Brug eksisterende partition"
-
-#: install_interactive.pm:108
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "Der er ingen eksisterende partition der kan bruges"
-
-#: install_interactive.pm:115
-#, c-format
-msgid "Use the Microsoft Windows® partition for loopback"
-msgstr "Brug Microsoft Windows® partitionen til Loopback"
-
-#: install_interactive.pm:118
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Hvilken partition vil du benytte som Linux4Win?"
-
-#: install_interactive.pm:120
-#, c-format
-msgid "Choose the sizes"
-msgstr "Vælg størrelserne"
-
-#: install_interactive.pm:121
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Rod-partitions størrelse i Mb: "
-
-#: install_interactive.pm:122
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Swap-partitions størrelse i Mb: "
-
-#: install_interactive.pm:131
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"Der er ingen FAT-partitioner at bruge som loopback (eller ikke nok plads "
-"tilbage)"
-
-#: install_interactive.pm:140
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Hvilken partition ønsker du at ændre størrelse på?"
-
-#: install_interactive.pm:154
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occurred: %s"
-msgstr ""
-"Programmet til at ændre størrelse på FAT kan ikke behandle din partition, \n"
-"den følgende fejl opstod: %s"
-
-#: install_interactive.pm:157
-#, c-format
-msgid "Computing the size of the Microsoft Windows® partition"
-msgstr "Beregner størrelsen på Microsoft Windows®-partitionen"
-
-#: install_interactive.pm:164
-#, c-format
-msgid ""
-"Your Microsoft Windows® partition is too fragmented. Please reboot your "
-"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
-"the Mandriva Linux installation."
-msgstr "Din Microsoft Windows® partition er for fragmenteret, kør 'defrag' først"
-
-#: install_interactive.pm:167
-#, 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 ""
-"ADVARSEL!\n"
-"\n"
-"\n"
-"DrakX vil nu ændre størrelsen på din Windows-partition.\n"
-"\n"
-"Vær forsigtig: denne operation er farlig. Hvis du ikke allerede har gjort "
-"det, bør du først gå ud af denne installation, køre 'chkdsk c:' fra en "
-"kommandolinje under Windows (bemærk, det er ikke nok at køre det grafiske "
-"program 'scandisk', vær sikker på at køre 'chkdsk' i en kommandolinje!) og "
-"eventuelt defrag) og så genstarte installationen. Du bør også tage en "
-"sikkerhedskopi af dine data.\n"
-"\n"
-"\n"
-"Tryk på %s, hvis du er helt sikker."
-
-#: install_interactive.pm:179
-#, c-format
-msgid "Which size do you want to keep for Microsoft Windows® on"
-msgstr "Hvilken størrelse ønsker du at at beholde Microsoft Windows® på?"
-
-#: install_interactive.pm:180
-#, c-format
-msgid "partition %s"
-msgstr "partition %s"
-
-#: install_interactive.pm:189
-#, c-format
-msgid "Resizing Microsoft Windows® partition"
-msgstr "Udregner Microsoft Windows®-filsystemets grænser"
-
-#: install_interactive.pm:194
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT størrelsesændring mislykkedes: %s"
-
-#: install_interactive.pm:209
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr ""
-"Der er ingen FAT-partitioner at ændre størrelse på (eller ikke nok plads "
-"tilbage)"
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Remove Microsoft Windows®"
-msgstr "Fjern Microsoft Windows®"
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Erase and use entire disk"
-msgstr "Slet hele disken og brug den"
-
-#: install_interactive.pm:216
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Du har mere end et diskdrev, hvilken ønsker du at installere Linux på?"
-
-#: install_interactive.pm:222
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "Alle eksisterende partitioner og deres data vil gå tabt på drev %s"
-
-#: install_interactive.pm:237
-#, c-format
-msgid "Use fdisk"
-msgstr "Brug fdisk"
-
-#: install_interactive.pm:240
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, do not forget to save using `w'"
-msgstr ""
-"Du kan nu partitionere %s.\n"
-"Når du er færdig, så husk at gemme med 'w'"
-
-#: install_interactive.pm:276
-#, c-format
-msgid "I can not find any room for installing"
-msgstr "Kan ikke finde plads til installering"
-
-#: install_interactive.pm:280
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX partitionerings-vejlederen fandt de følgende løsninger:"
-
-#: install_interactive.pm:288
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Partitionering mislykkedes: %s"
-
-#: install_interactive.pm:295
-#, c-format
-msgid "Bringing up the network"
-msgstr "Bringer netværket op"
-
-#: install_interactive.pm:300
-#, c-format
-msgid "Bringing down the network"
-msgstr "Lukker netværket ned"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:10
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandriva "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandriva Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. This document is a license agreement "
-"between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you "
-"explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this "
-"License. \n"
-"If you disagree with any portion of the License, you are not allowed to "
-"install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner "
-"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate "
-"your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all "
-"copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Limited Warranty\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
-"be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without "
-"limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties "
-"resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or "
-"inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or "
-"occurrence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
-"COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
-"no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever "
-"(including without \n"
-"limitation damages for loss of business, interruption of business, financial "
-"loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential "
-"loss) arising out \n"
-"of the possession and use of software components or arising out of "
-"downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some "
-"countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong "
-"cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. The GPL License and Related Licenses\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. "
-"Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the "
-"documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. Intellectual Property Rights\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
-"as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
-"Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Governing Laws \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-msgstr ""
-"Introduktion\n"
-"\n"
-"Operativsystemet og de forskellige komponenter tilgængelige i Mandriva Linux "
-"distributionen vil herefter blive kaldt \"programmelprodukter\". "
-"Programmelprodukterne inkluderer, men er ikke begrænset til: samlingen af "
-"værktøjer, metoder, regler og dokumentation relateret til operativsystemet "
-"og de forskellige komponenter i Mandriva Linux-distributionen.\n"
-"\n"
-"\n"
-"1. Licensaftale\n"
-"\n"
-"Læs venligst dette dokument omhyggeligt. Dette dokument er en licensaftale "
-"mellem dig og Mandriva S.A., som gælder til disse programmelprodukter. Ved "
-"at installere, kopiere eller bruge disse programmelprodukter accepterer du "
-"udtrykkeligt og fuldt ud at følge denne licensaftale med dens betingelser og "
-"regler. Hvis du er uenig i nogensomhelst del af denne licens, har du ikke "
-"lovtil at installere, kopiere eller bruge disse programmelprodukter. Hvilket "
-"som helst forsøg på at installere, kopiere eller bruge disse "
-"programmelprodukter på en måde som ikke er i overensstemmelse med "
-"betingelserne og reglerne i denne licens er ugyldig og vil ophæve dine "
-"rettighedder under denne licens. Ved ophævelse af licensen skal du med det "
-"samme ødelægge alle kopier af programmelprodukterne.\n"
-"\n"
-"\n"
-"2. Begrænset garanti\n"
-"\n"
-"Programmelprodukterne og tilhørende dokumentation leveres \"som de er\", "
-"uden nogen form for garanti, i den udstrækning lov tillader. Mandriva S.A. "
-"vil under ingen omstændigheder efter hvad loven foreskriver være ansvarlig "
-"for specielle, tilfældige, direkte eller indirekte tab af nogen art "
-"(inkluderende uden begrænsninger, skader ved tab af forretning, "
-"forstyrrelser af forretning, finansielle tab, advokatbistand, erstatninger "
-"som resultat af en retssag eller nogen anden form for følgetab) opstået "
-"under brugen eller mangel på samme af disse programmelprodukter, selv hvis "
-"Mandriva S.A. er blevet gjort opmærksom på muligheden for eller "
-"indtræffelsen af sådanne skader.\n"
-"\n"
-"BEGRÆNSET ANSVAR MED HENSYN TIL REGLER OM BESIDDELSE ELLER BRUG AF FORBUDT "
-"PROGRAMMEL I VISSE LANDE\n"
-"\n"
-"I den udstrækning som loven tillader vil Mandriva S.A. eller deres "
-"distributører under ingen omstændigheder være ansvarlig for specielle, "
-"tilfældige, direkte eller indirekte tab af nogen art (inklusive uden "
-"begrænsninger skader ved tab af forretning, forstyrrelser af forretning, "
-"finansielle tab, advokatbistand, erstatninger som resultat af en retssag "
-"eller nogen anden form for tab) opstået ved besiddelse eller brug af "
-"programmelkomponenter eller opstået ved hentning af programmelkomponenter "
-"fra et af Mandriva Linux-webstederne som er forbudt eller begrænset i visse "
-"lande ved lokal lov. Dette begrænsede ansvar gælder, men er ikke begrænset "
-"til, de stærke krypteringskomponenter inkluderet i programmelprodukterne.\n"
-"\n"
-"\n"
-"3. GPL-licensen og relaterede licenser\n"
-"\n"
-"Programmelprodukterne består af komponenter lavet af forskellige personer "
-"eller enheder. De fleste af disse komponenter bliver reguleret efter "
-"vilkårene og aftalerne i GNU General Public License, herefter kaldet \"GPL"
-"\", eller lignende licenser. De fleste af disse licenser tillader dig at "
-"bruge, kopiere, tilpasse eller videredistribuere komponenterne, de dækker. "
-"Læs venligst vilkårene og betingelserne i licensaftalen for hver komponent "
-"omhyggeligt før du bruger den. Alle spørgsmål angående en komponent bedes "
-"adresseret til komponentens forfatter og ikke til Mandriva. Programmerne "
-"udviklet af Mandriva S.A. bliver reguleret efter GPL-licensen. "
-"Dokumentationen skrevet af Mandriva S.A. bliver reguleret efter en specifik "
-"licens. Referér venligst til dokumentationen for yderligere detaljer.\n"
-"\n"
-"\n"
-"4. Intellektuelle rettigheder\n"
-"\n"
-"Alle rettigheder til komponenterne i programmelproduktet tilhører deres "
-"respektive forfattere, og er beskyttet af intellektuelle rettigheds- og "
-"ophavsretslove, gældende for programmel. Mandriva S.A. forbeholder sine "
-"rettigheder til at ændre eller tilpasse programmelprodukterne, helt eller "
-"delvist, med alle midler og til alle formål. \"Mandriva\", \"Mandriva Linux"
-"\" samt de tilhørende logoer er varemærker for Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Styrende love\n"
-"\n"
-"Hvis dele af denne aftale bliver kendt ugyldig, ulovlig eller ubrugelig ved "
-"en domstolsafgørelse, vil disse dele blive ekskluderet fra denne kontrakt. "
-"Du vil forblive bundet af de andre gældende dele af aftalen. Vilkårene og "
-"aftalerne i denne licens er reguleret under fransk lov. Alle uenigheder "
-"vedrørende vilkårene i denne licens vil fortrinsvist blive løst udenfor "
-"domstolene. Som en sidste udvej vil uenighederne blive håndteret ved den "
-"rette domstol i Paris, Frankrig. Ved spørgsmål omkring dette dokument, "
-"kontakt venligst Mandriva S.A. \n"
-
-# Mangler
-#: install_messages.pm:90
-#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-"Advarsel: Frit programmel er ikke nødvendigvis fri for patenter, og noget af "
-"det inkluderede frie programmel er muligvis dækket af patenter i dit land. "
-"For eksempel kan de inkluderede MP3-dekoder kræve en licens til yderligere "
-"brug (se http://www.mp3licensing.com for flere detaljer) Hvis du er usikker "
-"om et patent kan vedrøre dig, så tjek din lokale lovgivning."
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:98
-#, c-format
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Advarsel\n"
-"\n"
-"Læs venligst betingelserne nedenfor omhyggeligt. Hvis du ikke er enig i alt "
-"der står, må du ikke installere indholdet af CD-en. Tryk på 'Nægt' for at "
-"fortsætte installationen uden disse cdrommer.\n"
-"\n"
-"\n"
-"Visse komponenter på den næste CD er ikke omfattet af GPL-licensen eller "
-"andre lignende licenser. Hver enkelt komponent er derfor omfattet af de "
-"betingelser der er beskrevet i dets egen licens. Læs derfor venligst "
-"betingelserne omhyggeligt og følg de opstillede betingelser når du bruger og/"
-"eller videredistribuerer komponenterne. Sådanne licenser forhindrer normalt "
-"kopiering (sikkerhedskopiering undtaget), videredistribuering, at folk "
-"skiller programmet ad, eller ændrer i komponenterne. Ethvert brud på "
-"licensen vil øjeblikkeligt fratage dig rettighederne beskrevet i den "
-"specifikke licens. Medmindre licensen giver dig lov hertil, vil det normalt "
-"ikke være tilladt at installere programmet på mere end én maskine, eller "
-"bruge det på et netværk. Hvis du er i tvivl, så kontakt venligst producenten "
-"af komponenten direkte. Overdragelse til tredjemand eller kopiering af "
-"sådanne komponenter inklusive dokumentationen er normalt forbudt.\n"
-"\n"
-"\n"
-"Alle rettigheder til komponenterne på CD-en tilhører deres respektive "
-"skabere og er beskyttet af Lov om Ophavsret.\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:131
-#, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press Enter to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandriva "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandriva Linux User's Guide."
-msgstr ""
-"Tillykke, installationen er færdig.\n"
-"Fjern boot-mediet og tryk retur for at genstarte.\n"
-"\n"
-"\n"
-"For information om rettelser til denne udgivelse af Mandriva Linux, se "
-"Errata på:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information om konfigurering af dit system kan du finde i kapitlet om efter-"
-"installation i den Officielle Mandriva Linux Brugervejledning."
-
-#: install_steps.pm:250
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Duplikér monterings-sti %s"
-
-#: install_steps.pm:482
-#, c-format
-msgid ""
-"Some important packages did not get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
-"\"\n"
-msgstr ""
-"Nogle vigtige pakker blev ikke installeret rigtigt.\n"
-"Enten er dit cdrom-drev eller din cdrom fejlbehæftet.\n"
-"Tjek cdrom'en på en færdiginstalleret maskine ved brug af \"rpm -qpl media/"
-"main/*.rpm\"\n"
-
-#: install_steps_auto_install.pm:68 install_steps_stdio.pm:27
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Går til trin `%s'\n"
-
-#: install_steps_gtk.pm:181
-#, c-format
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandriva Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Dit system har kun få resurser. Du kan få problemer med at installere\n"
-"Mandriva Linux. Hvis dette sker, kan du prøve en tekst-baseret installation "
-"i stedet\n"
-"Dette gøres ved at trykke 'F1' ved opstart fra cdrommen, og så skrive 'text'."
-
-#: install_steps_gtk.pm:211 install_steps_interactive.pm:605
-#, c-format
-msgid "Package Group Selection"
-msgstr "Valg af pakkegrupper"
-
-#: install_steps_gtk.pm:254 install_steps_interactive.pm:548
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Total størrelse: %d / %d Mb"
-
-#: install_steps_gtk.pm:299
-#, c-format
-msgid "Bad package"
-msgstr "Dårlig pakke"
-
-#: install_steps_gtk.pm:301
-#, c-format
-msgid "Version: "
-msgstr "Version: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "Size: "
-msgstr "Størrelse: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "%d KB\n"
-msgstr " %d KB\n"
-
-#: install_steps_gtk.pm:303
-#, c-format
-msgid "Importance: "
-msgstr "Vigtighed: "
-
-#: install_steps_gtk.pm:336
-#, c-format
-msgid "You can not select/unselect this package"
-msgstr "Du kan ikke vælge/fravælge denne pakke"
-
-#: install_steps_gtk.pm:340 network/thirdparty.pm:331
-#, c-format
-msgid "due to missing %s"
-msgstr "grundet manglende %s"
-
-#: install_steps_gtk.pm:341
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "grundet uopfyldt %s"
-
-#: install_steps_gtk.pm:342
-#, c-format
-msgid "trying to promote %s"
-msgstr "prøver at forfremme %s"
-
-#: install_steps_gtk.pm:343
-#, c-format
-msgid "in order to keep %s"
-msgstr "for at beholde %s"
-
-#: install_steps_gtk.pm:348
-#, c-format
-msgid ""
-"You can not select this package as there is not enough space left to install "
-"it"
-msgstr ""
-"Du kan ikke vælge denne pakke, da der ikke er nok plads tilbage til at "
-"installere den"
-
-#: install_steps_gtk.pm:351
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "De følgende pakker vil blive installeret"
-
-#: install_steps_gtk.pm:352
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "De følgende pakker vil blive afinstalleret"
-
-#: install_steps_gtk.pm:376
-#, c-format
-msgid "This is a mandatory package, it can not be unselected"
-msgstr "Dette er en nødvendig pakke, den kan ikke vælges fra"
-
-#: install_steps_gtk.pm:378
-#, c-format
-msgid "You can not unselect this package. It is already installed"
-msgstr "Du kan ikke fravælge denne pakke. Den er allerede installeret"
-
-#: install_steps_gtk.pm:381
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Denne pakke skal opgraderes\n"
-"Er du sikker på at du vil fravælge den?"
-
-#: install_steps_gtk.pm:384
-#, c-format
-msgid "You can not unselect this package. It must be upgraded"
-msgstr "Du kan ikke fravælge denne pakke. Den skal opgraderes"
-
-#: install_steps_gtk.pm:389
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Vis automatisk valgte pakker"
-
-#: install_steps_gtk.pm:394
-#, c-format
-msgid "Load/Save selection"
-msgstr "Indlæs eller gem markering"
-
-#: install_steps_gtk.pm:395
-#, c-format
-msgid "Updating package selection"
-msgstr "Opdaterer pakkevalg"
-
-#: install_steps_gtk.pm:400
-#, c-format
-msgid "Minimal install"
-msgstr "Minimal installation"
-
-#: install_steps_gtk.pm:414 install_steps_interactive.pm:467
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Vælg pakker som skal installeres"
-
-#: install_steps_gtk.pm:431 install_steps_interactive.pm:691
-#, c-format
-msgid "Installing"
-msgstr "Installerer"
-
-#: install_steps_gtk.pm:457
-#, c-format
-msgid "No details"
-msgstr "Ingen detaljer"
-
-#: install_steps_gtk.pm:472
-#, c-format
-msgid "Time remaining "
-msgstr "Resterende tid "
-
-#: install_steps_gtk.pm:473
-#, c-format
-msgid "Estimating"
-msgstr "Beregnes"
-
-#: install_steps_gtk.pm:500
-#, c-format
-msgid "%d packages"
-msgstr "%d pakker"
-
-#: install_steps_gtk.pm:543 install_steps_interactive.pm:719
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Skift din cdrom!\n"
-"Indsæt cdrom'en med navnet \"%s\" i dit cdrom-drev og tryk på O.k., når det "
-"gjort.\n"
-"Hvis du ikke har den så tryk på Annullér for at undgå installation fra denne "
-"cd."
-
-#: install_steps_gtk.pm:556 install_steps_interactive.pm:730
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Der opstod en fejl ved sorteringen af pakkerne:"
-
-#: install_steps_gtk.pm:558 install_steps_interactive.pm:734
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Der opstod en fejl ved installeringen af pakkerne:"
-
-#: install_steps_gtk.pm:560 install_steps_interactive.pm:730
-#: install_steps_interactive.pm:734
-#, c-format
-msgid "Go on anyway?"
-msgstr "Fortsæt alligevel?"
-
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:910 steps.pm:30
-#, c-format
-msgid "Summary"
-msgstr "Oversigt"
-
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:906
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "not configured"
-msgstr "ikke konfigureret"
-
-#: install_steps_gtk.pm:668
-#, c-format
-msgid ""
-"The following installation media have been found.\n"
-"If you want to skip some of them, you can unselect them now."
-msgstr ""
-"De følgende installationsmedier er fundet.\n"
-"Hvis du ønsker at overspringe nogen af dem, kan du fravælge dem nu."
-
-#: install_steps_gtk.pm:677
-#, c-format
-msgid ""
-"You have the option to copy the contents of the CDs onto the hard drive "
-"before installation.\n"
-"It will then continue from the hard drive and the packages will remain "
-"available once the system is fully installed."
-msgstr ""
-"Du har mulighed for at kopiere indholdet af cd-erne over på disken før "
-"installation.\n"
-"Installationen vil så fortsætte fra disken og pakkerne vil forblive "
-"tilgængelige, når systemet er fuldt installeret."
-
-#: install_steps_gtk.pm:679
-#, c-format
-msgid "Copy whole CDs"
-msgstr "Kopiér hele cd'er"
-
-#: install_steps_interactive.pm:95
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Vælg dit tastaturlayout."
-
-#: install_steps_interactive.pm:97
-#, c-format
-msgid "Here is the full list of available keyboards"
-msgstr "Her er den komplette liste over tilgængelige tastaturer"
-
-#: install_steps_interactive.pm:127
-#, c-format
-msgid "Install/Upgrade"
-msgstr "Installér/Opgradér"
-
-#: install_steps_interactive.pm:128
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Er dette en nyinstallation eller en opgradering?"
-
-#: install_steps_interactive.pm:134
-#, c-format
-msgid "Upgrade %s"
-msgstr "Opgradér %s"
-
-#: install_steps_interactive.pm:147
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Krypteringsnøgle for %s"
-
-#: install_steps_interactive.pm:170
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Vælg muse-type."
-
-#: install_steps_interactive.pm:171
-#, c-format
-msgid "Mouse choice"
-msgstr "Musevalg"
-
-#: install_steps_interactive.pm:180 standalone/mousedrake:46
-#, c-format
-msgid "Mouse Port"
-msgstr "Muse-port"
-
-#: install_steps_interactive.pm:181 standalone/mousedrake:47
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Vælg hvilken seriel port din mus er forbundet til."
-
-#: install_steps_interactive.pm:191
-#, c-format
-msgid "Buttons emulation"
-msgstr "Emulering af knapper"
-
-#: install_steps_interactive.pm:193
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Emulering af knap 2"
-
-#: install_steps_interactive.pm:194
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Emulering af knap 3"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Konfigurerer PCMCIA kort..."
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "Configuring IDE"
-msgstr "Konfigurerer IDE"
-
-#: install_steps_interactive.pm:242
-#, c-format
-msgid "No partition available"
-msgstr "ingen ledige partitioner"
-
-#: install_steps_interactive.pm:245
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Skanner partitioner for at finde monteringspunkter"
-
-#: install_steps_interactive.pm:252
-#, c-format
-msgid "Choose the mount points"
-msgstr "Vælg monterings-stierne"
-
-#: install_steps_interactive.pm:300
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Det er ikke plads for 1 MB bootstrap! Installationen vil fortsætte, men for "
-"at starte dit system op, skal du lave en bootstrap partition i DiskDrake"
-
-#: install_steps_interactive.pm:305
-#, c-format
-msgid ""
-"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
-"to boot your system, you'll need to create the bootstrap partition in "
-"DiskDrake"
-msgstr ""
-"Du skal lave en PPC PReP Boot bootstrap! Installationen vil fortsætte, men "
-"for at starte dit system op, skal du lave bootstrap-partitionen i DiskDrake"
-
-#: install_steps_interactive.pm:341
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Vælg partitioner der skal formateres"
-
-#: install_steps_interactive.pm:343
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Led efter beskadigede blokke?"
-
-#: install_steps_interactive.pm:371
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
-msgstr ""
-"Kontrol af filsystem %s mislykkedes. Ønsker du at reparere fejlene (bemærk, "
-"du kan miste data)"
-
-#: install_steps_interactive.pm:374
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Ikke nok swap-plads til at gennemføre installationen, tilføj mere"
-
-#: install_steps_interactive.pm:383
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Leder efter tilgængelige pakker og genopbygger rpm-database..."
-
-#: install_steps_interactive.pm:384 install_steps_interactive.pm:436
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Leder efter tilgængelige pakker"
-
-#: install_steps_interactive.pm:405 install_steps_interactive.pm:810
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Vælg det spejl hvorfra pakkerne skal hentes"
-
-#: install_steps_interactive.pm:445
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Dit system har ikke nok plads tilbage til en installation eller opgradering "
-"(%d > %d)"
-
-#: install_steps_interactive.pm:479
-#, c-format
-msgid ""
-"Please choose load or save package selection.\n"
-"The format is the same as auto_install generated files."
-msgstr ""
-"Vælg indlæs eller gem pakkevalg på diskette.\n"
-"Formatet er det samme som for auto_install-genererede filer."
-
-#: install_steps_interactive.pm:481
-#, c-format
-msgid "Load"
-msgstr "Belastning"
-
-#: install_steps_interactive.pm:481 standalone/drakbackup:4083
-#: standalone/drakbackup:4153 standalone/logdrake:175
-#, c-format
-msgid "Save"
-msgstr "Gem"
-
-#: install_steps_interactive.pm:489
-#, c-format
-msgid "Bad file"
-msgstr "Dårlig fil"
-
-#: install_steps_interactive.pm:562
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Valgt størrelse er større end tilgængelig plads"
-
-#: install_steps_interactive.pm:577
-#, c-format
-msgid "Type of install"
-msgstr "Installationstype"
-
-#: install_steps_interactive.pm:578
-#, c-format
-msgid ""
-"You have not selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Du har ikke valgt nogen gruppe af pakker.\n"
-"Vælg den minimale installation du ønsker"
-
-#: install_steps_interactive.pm:582
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Med basal dokumentation (anbefalet!)"
-
-#: install_steps_interactive.pm:583
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Virkelig minimal installation (specielt ingen urpmi)"
-
-#: install_steps_interactive.pm:622 standalone/drakxtv:52
-#, c-format
-msgid "All"
-msgstr "Alt"
-
-#: install_steps_interactive.pm:661
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"Hvis du har alle cd'erne i listen nedenunder, klik O.k.\n"
-"Hvis du ikke har nogen af disse cd'er, klik Annullér.\n"
-"Hvis kun nogen cd'er mangler, fravælg dem, og klik så O.k."
-
-#: install_steps_interactive.pm:666
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cdrom med etikette '%s'"
-
-#: install_steps_interactive.pm:691
-#, c-format
-msgid "Preparing installation"
-msgstr "Forbereder installationen"
-
-#: install_steps_interactive.pm:699
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Installerer pakke %s\n"
-"%d%%"
-
-#: install_steps_interactive.pm:748
-#, c-format
-msgid "Post-install configuration"
-msgstr "Konfiguration efter installation"
-
-#: install_steps_interactive.pm:755
-#, c-format
-msgid "Please ensure the Update Modules media is in drive %s"
-msgstr "Forsikr dig venligst om at mediet med Opdateringsmodulerne er i drev %s"
-
-#: install_steps_interactive.pm:783
-#, c-format
-msgid "Updates"
-msgstr "Opdateringer"
-
-#: install_steps_interactive.pm:784
-#, c-format
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates?"
-msgstr ""
-"Du har nu mulighed for at hente opdaterede pakker som er blevet opdateret\n"
-"efter distributionen blev gjort tilgængelig.\n"
-"\n"
-"Du vil få sikkerhedsrettelser eller fejlrettelser, men du skal have en\n"
-"internet-opkobling for at fortsætte.\n"
-"\n"
-"Ønsker du at installere opdateringerne?"
-
-#: install_steps_interactive.pm:805
-#, c-format
-msgid "Contacting Mandriva Linux web site to get the list of available mirrors..."
-msgstr "Kontakter Mandriva Linux netsted for at hente listen over tilgængelige spejle"
-
-#: install_steps_interactive.pm:824
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Kontakter spejlet for at hente listen af tilgængelige pakker"
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Kan ikke kontakte spejl: %s"
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Vil du gerne prøve igen?"
-
-#: install_steps_interactive.pm:855 standalone/drakclock:45
-#: standalone/finish-install:56
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Hvad er din tidszone?"
-
-#: install_steps_interactive.pm:860
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automatisk tidssynkronisering (ved hjælp af NTP)"
-
-#: install_steps_interactive.pm:868
-#, c-format
-msgid "NTP Server"
-msgstr "NTP-server"
-
-#: install_steps_interactive.pm:923 install_steps_interactive.pm:931
-#: install_steps_interactive.pm:949 install_steps_interactive.pm:956
-#: install_steps_interactive.pm:1107 services.pm:133
-#: standalone/drakbackup:1596
-#, c-format
-msgid "System"
-msgstr "System"
-
-#: install_steps_interactive.pm:963 install_steps_interactive.pm:990
-#: install_steps_interactive.pm:1007 install_steps_interactive.pm:1023
-#: install_steps_interactive.pm:1034
-#, c-format
-msgid "Hardware"
-msgstr "Udstyr"
-
-#: install_steps_interactive.pm:969 install_steps_interactive.pm:978
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Ekstern CUPS server"
-
-#: install_steps_interactive.pm:969
-#, c-format
-msgid "No printer"
-msgstr "Ingen printer"
-
-#: install_steps_interactive.pm:1011
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Har du et ISA-lydkort?"
-
-#: install_steps_interactive.pm:1013
-#, c-format
-msgid ""
-"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
-"card"
-msgstr ""
-"Kør \"alsaconf\" eller \"sndconfig\" efter installation for at konfigurere "
-"dit lydkort"
-
-#: install_steps_interactive.pm:1015
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr "Intet lydkort genkendt. Prøv at køre \"harddrake\" efter installation"
-
-#: install_steps_interactive.pm:1035
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
-msgid "Graphical interface"
-msgstr "Grafisk grænseflade"
-
-#: install_steps_interactive.pm:1041 install_steps_interactive.pm:1053
-#, c-format
-msgid "Network & Internet"
-msgstr "Netværk og Internet"
-
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "configured"
-msgstr "konfigureret"
-
-#: install_steps_interactive.pm:1064 install_steps_interactive.pm:1078
-#: security/level.pm:55 steps.pm:20
-#, c-format
-msgid "Security"
-msgstr "Sikkerhed"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "activated"
-msgstr "aktiveret"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "disabled"
-msgstr "deaktiveret"
-
-#: install_steps_interactive.pm:1094
-#, c-format
-msgid "Boot"
-msgstr "Opstart"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1098 printer/printerdrake.pm:961
-#, c-format
-msgid "%s on %s"
-msgstr "%s på %s"
-
-#: install_steps_interactive.pm:1112 services.pm:175
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Tjenester: %d aktiverede for %d registrerede"
-
-#: install_steps_interactive.pm:1124
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "Du har ikke konfigureret X. Er du sikker på at du virkelig ønsker dette?"
-
-#: install_steps_interactive.pm:1205
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Forbereder opstarter..."
-
-#: install_steps_interactive.pm:1215
-#, c-format
-msgid ""
-"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
-"will not work for you. The install will continue, but you'll need to use "
-"BootX or some other means to boot your machine. The kernel argument for the "
-"root fs is: root=%s"
-msgstr ""
-"Det virker som om du har en OldWorld eller ukendt maskine, yaboot "
-"opstartsindlæseren vil ikke virke for dig. Installationen vil fortsætte, men "
-"du skal bruge BootX eller en anden måde til at starte din maskine. Kernens "
-"parameter for root-filsystemet er: root=%s"
-
-#: install_steps_interactive.pm:1221
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Ønsker du at bruge aboot?"
-
-#: install_steps_interactive.pm:1224
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Fejl ved installation af aboot, \n"
-"forsøg at gennemtvinge installation selv om dette kan ødelægge den første "
-"partition?"
-
-#: install_steps_interactive.pm:1241
-#, c-format
-msgid ""
-"In this security level, access to the files in the Windows partition is "
-"restricted to the administrator."
-msgstr ""
-"I dette er sikkerhedsniveau er adgang til Windows-partitionen forbeholdt "
-"administratoren."
-
-#: install_steps_interactive.pm:1270 standalone/drakautoinst:76
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Indsæt en tom diskette i drev %s"
-
-#: install_steps_interactive.pm:1275
-#, c-format
-msgid "Please insert another floppy for drivers disk"
-msgstr "Indsæt en anden diskette med drivere i diskette-drevet"
-
-#: install_steps_interactive.pm:1277
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Laver autoinstallations-diskette"
-
-#: install_steps_interactive.pm:1289
-#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Nogen dele af installationen er ikke færdig\n"
-"\n"
-"Er du sikker på du ønsker du at lukke nu?"
-
-#: install_steps_interactive.pm:1299 standalone/draksambashare:421
-#: standalone/draksambashare:527 standalone/drakups:118 standalone/drakups:157
-#: standalone/logdrake:451 standalone/logdrake:457
-#, c-format
-msgid "Congratulations"
-msgstr "Tillykke"
-
-#: install_steps_interactive.pm:1307 install_steps_interactive.pm:1308
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Laver autoinstallations-diskette"
-
-#: install_steps_interactive.pm:1309
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Autoinstallation kan ske fuldautomatisk hvis ønsket. I så tilfælde vil den "
-"overtage hele harddisken!! (dette er beregnet til at installere på en anden "
-"maskine).\n"
-"\n"
-"Du foretrækker måske at afspille installationen igen\n"
-
-#: install_steps_newt.pm:20
-#, c-format
-msgid "Mandriva Linux Installation %s"
-msgstr "Mandriva Linux Installation %s"
-
-#. -PO: This string must fit in a 80-char wide text screen
-#: install_steps_newt.pm:37
-#, c-format
-msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr " <Tab>/<Alt-Tab> mellem elementer | <Space> vælger | <F12> næste skærm "
+msgid "No"
+msgstr "Nej"
-#: interactive.pm:196
+#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "Vælg en fil"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakbackup:1537
-#: standalone/drakfont:649 standalone/drakhosts:242 standalone/draknfs:605
-#: standalone/draksambashare:1127 standalone/drakups:299
-#: standalone/drakups:359 standalone/drakups:379 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Add"
msgstr "Tilføj"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakhosts:249
-#: standalone/draknfs:612 standalone/draksambashare:1084
-#: standalone/draksambashare:1137 standalone/draksambashare:1176
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Modify"
msgstr "Ændr"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakfont:732
-#: standalone/drakhosts:256 standalone/draknfs:619
-#: standalone/draksambashare:1085 standalone/draksambashare:1145
-#: standalone/draksambashare:1184 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Remove"
msgstr "Fjern"
-#: interactive.pm:398
-#, c-format
-msgid "Basic"
-msgstr "Basal"
-
-#: interactive.pm:436 interactive/newt.pm:321 ugtk2.pm:490
+#: interactive.pm:538 interactive/curses.pm:217 ugtk2.pm:508
#, c-format
msgid "Finish"
msgstr "Afslut"
-#: interactive/newt.pm:92
+#: interactive.pm:539 interactive/curses.pm:214 ugtk2.pm:506
#, c-format
-msgid "Do"
-msgstr "Lav"
+msgid "Previous"
+msgstr "Forrige"
#: interactive/stdio.pm:29 interactive/stdio.pm:148
#, c-format
@@ -7650,1954 +3386,1205 @@ msgstr ""
msgid "Re-submit"
msgstr "Indsend igen"
-#: keyboard.pm:171 keyboard.pm:202
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTZ)"
-msgstr "Tjekkisk (QWERTZ)"
-
-#: keyboard.pm:172 keyboard.pm:204
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German"
-msgstr "Tysk"
-
-#: keyboard.pm:173
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak"
-msgstr "Dvorak"
-
-#: keyboard.pm:174 keyboard.pm:217
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Spanish"
-msgstr "Spansk"
-
-#: keyboard.pm:175 keyboard.pm:218
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Finnish"
-msgstr "Finsk"
-
-#: keyboard.pm:176 keyboard.pm:220
-#, c-format
-msgid ""
-"_: keyboard\n"
-"French"
-msgstr "Fransk"
-
-#: keyboard.pm:177 keyboard.pm:264
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Norwegian"
-msgstr "Norsk"
-
-#: keyboard.pm:178
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish"
-msgstr "Polsk"
-
-#: keyboard.pm:179 keyboard.pm:275
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian"
-msgstr "Russisk"
-
-#: keyboard.pm:180 keyboard.pm:281
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swedish"
-msgstr "Svensk"
-
-#: keyboard.pm:181 keyboard.pm:310
-#, c-format
-msgid "UK keyboard"
-msgstr "Britisk"
-
-#: keyboard.pm:182 keyboard.pm:313
-#, c-format
-msgid "US keyboard"
-msgstr "Amerikansk"
-
-#: keyboard.pm:184
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Albanian"
-msgstr "Albansk"
-
-#: keyboard.pm:185
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (old)"
-msgstr "Armensk (gammel)"
-
-#: keyboard.pm:186
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (typewriter)"
-msgstr "Armensk (skrivemaskine)"
-
-#: keyboard.pm:187
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (phonetic)"
-msgstr "Armensk (fonetisk)"
-
-#: keyboard.pm:188
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Arabic"
-msgstr "Arabisk"
-
-#: keyboard.pm:189
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Azerbaidjani (latin)"
-msgstr "Azerbaidiansk (latin)"
-
-#: keyboard.pm:190
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belgian"
-msgstr "Belgisk"
-
-#: keyboard.pm:191
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Inscript-layout)"
-msgstr "Bengali (Inscript layout)"
-
-#: keyboard.pm:192
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Probhat)"
-msgstr "Bengali (Probhat layout)"
-
-#: keyboard.pm:193
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (phonetic)"
-msgstr "Bulgarsk (fonetisk)"
-
-#: keyboard.pm:194
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (BDS)"
-msgstr "Bulgarsk (BDS)"
-
-#: keyboard.pm:195
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Brazilian (ABNT-2)"
-msgstr "Brasiliansk (ABNT-2)"
-
-#: keyboard.pm:196
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bosnian"
-msgstr "Bosnisk"
-
-#: keyboard.pm:197
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belarusian"
-msgstr "Hviderussisk"
-
-#: keyboard.pm:198
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (German layout)"
-msgstr "Schweizisk (Tysk layout)"
-
-#: keyboard.pm:199
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (French layout)"
-msgstr "Schweizisk (Fransk layout)"
-
-#: keyboard.pm:201
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Cherokee syllabics"
-msgstr "Cherokee syllabic"
-
-#: keyboard.pm:203
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTY)"
-msgstr "Tjekkisk (QWERTY)"
-
-#: keyboard.pm:205
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German (no dead keys)"
-msgstr "Tysk (ingen døde taster)"
-
-#: keyboard.pm:206
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Devanagari"
-msgstr "Devanagari"
-
-#: keyboard.pm:207
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Danish"
-msgstr "Dansk"
-
-#: keyboard.pm:208
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: keyboard.pm:209
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Esperanto)"
-msgstr "Dvorak (esperanto)"
-
-#: keyboard.pm:210
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (French)"
-msgstr "Dvorak (fransk)"
-
-#: keyboard.pm:211
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (UK)"
-msgstr "Dvorak (UK)"
-
-#: keyboard.pm:212
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Norwegian)"
-msgstr "Dvorak (norsk)"
-
-#: keyboard.pm:213
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Polish)"
-msgstr "Dvorak (polsk)"
-
-#: keyboard.pm:214
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Swedish)"
-msgstr "Dvorak (svensk)"
-
-#: keyboard.pm:215
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dzongkha/Tibetan"
-msgstr "Dzongkha/tibetansk"
-
-#: keyboard.pm:216
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Estonian"
-msgstr "Estisk"
-
-#: keyboard.pm:219
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Faroese"
-msgstr "Færøsk"
-
-#: keyboard.pm:221
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Russian\" layout)"
-msgstr "Georgisk (russisk layout)"
-
-#: keyboard.pm:222
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Latin\" layout)"
-msgstr "Georgisk (Latin layout)"
-
-#: keyboard.pm:223
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek"
-msgstr "Græsk"
-
-#: keyboard.pm:224
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek (polytonic)"
-msgstr "Græsk (polytonisk)"
-
-#: keyboard.pm:225
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gujarati"
-msgstr "Gujarati"
-
-#: keyboard.pm:226
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gurmukhi"
-msgstr "Gurmukhi"
-
-#: keyboard.pm:227
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Croatian"
-msgstr "Kroatisk"
-
-#: keyboard.pm:228
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Hungarian"
-msgstr "Ungarsk"
-
-#: keyboard.pm:229
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Irish"
-msgstr "Irsk"
-
-#: keyboard.pm:230
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli"
-msgstr "Israelsk"
-
-#: keyboard.pm:231
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli (phonetic)"
-msgstr "Israelsk (Fonetisk)"
-
-#: keyboard.pm:232
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Iranian"
-msgstr "Iransk"
-
-#: keyboard.pm:233
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Icelandic"
-msgstr "Islandsk"
-
-#: keyboard.pm:234
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Italian"
-msgstr "Italiensk"
-
-#: keyboard.pm:235
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Inuktitut"
-msgstr "Inuktitut"
-
-#: keyboard.pm:239
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Japanese 106 keys"
-msgstr "Japansk 106 taster"
-
-#: keyboard.pm:240
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kannada"
-msgstr "Kannada"
-
-#: keyboard.pm:243
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Korean"
-msgstr "Koreansk tastatur"
-
-#: keyboard.pm:245
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kurdish (arabic script)"
-msgstr "Kurdisk (arabisk skript)"
-
-#: keyboard.pm:246
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kyrgyz"
-msgstr "Kyrgyz tastatur"
-
-#: keyboard.pm:247
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latin American"
-msgstr "Latinamerikansk"
-
-#: keyboard.pm:249
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Laotian"
-msgstr "Laotisk"
-
-#: keyboard.pm:250
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (old)"
-msgstr "Litauisk AZERTY (gammel)"
-
-#: keyboard.pm:252
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (new)"
-msgstr "Litauisk AZERTY (ny)"
-
-#: keyboard.pm:253
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"number row\" QWERTY"
-msgstr "Litauisk \"talrække\" QWERTY"
-
-#: keyboard.pm:254
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"phonetic\" QWERTY"
-msgstr "Litauisk \"fonetisk\" QWERTY"
-
-#: keyboard.pm:255
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latvian"
-msgstr "Lettisk"
-
-#: keyboard.pm:256
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Malayalam"
-msgstr "Malayalam"
-
-#: keyboard.pm:258
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Macedonian"
-msgstr "Makedonisk"
-
-#: keyboard.pm:259
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Myanmar (Burmese)"
-msgstr "Myanmar (Burmesisk)"
-
-#: keyboard.pm:260
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Mongolian (cyrillic)"
-msgstr "Mongolsk (kyrillisk)"
-
-#: keyboard.pm:261
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (UK)"
-msgstr "Maltesisk (UK)"
-
-#: keyboard.pm:262
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (US)"
-msgstr "Maltesisk (US)"
-
-#: keyboard.pm:263
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dutch"
-msgstr "Hollandsk"
-
-#: keyboard.pm:265
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Oriya"
-msgstr "Oriya"
-
-#: keyboard.pm:266
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwerty layout)"
-msgstr "Polsk (polsk layout)"
-
-#: keyboard.pm:267
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwertz layout)"
-msgstr "Polsk (polsk layout)"
-
-#: keyboard.pm:269
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Pashto"
-msgstr "Pashto"
-
-#: keyboard.pm:270
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Portuguese"
-msgstr "Portugisisk"
-
-#: keyboard.pm:272
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Canadian (Quebec)"
-msgstr "Canadisk (Québec)"
-
-#: keyboard.pm:273
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwertz)"
-msgstr "Russisk (qwertz)"
-
-#: keyboard.pm:274
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwerty)"
-msgstr "Russisk (qwerty)"
-
-#: keyboard.pm:276
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian (phonetic)"
-msgstr "Russisk (Fonetisk)"
-
-#: keyboard.pm:277
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (norwegian)"
-msgstr "Samisk (norsk)"
-
-#: keyboard.pm:278
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (swedish/finnish)"
-msgstr "Samisk (svensk/finsk)"
-
-#: keyboard.pm:280
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sindhi"
-msgstr "Sindhi"
-
-#: keyboard.pm:282
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovenian"
-msgstr "Slovensk"
-
-#: keyboard.pm:284
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sinhala"
-msgstr "Sinhala"
-
-#: keyboard.pm:285
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTZ)"
-msgstr "Slovakisk (QWERTZ)"
-
-#: keyboard.pm:286
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTY)"
-msgstr "Slovakisk (QWERTY)"
-
-#: keyboard.pm:288
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Serbian (cyrillic)"
-msgstr "Serbisk (kyrillisk)"
-
-#: keyboard.pm:289
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac"
-msgstr "Syrisk"
-
-#: keyboard.pm:290
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac (phonetic)"
-msgstr "Syrisk (fonetisk)"
-
-#: keyboard.pm:291
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Telugu"
-msgstr "Telugu"
-
-#: keyboard.pm:293
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (ISCII-layout)"
-msgstr "Tamil (ISCII-layout)"
-
-#: keyboard.pm:294
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (Typewriter-layout)"
-msgstr "Tamil (skrivemaskine-layout)"
-
-#: keyboard.pm:295
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Kedmanee)"
-msgstr "Thailandsk (kedmanee)"
-
-#: keyboard.pm:296
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (TIS-820)"
-msgstr "Thailandsk (TIS-820)"
-
-#: keyboard.pm:298
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Pattachote)"
-msgstr "Thailandsk (pattachote)"
-
-#: keyboard.pm:300
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (moroccan layout) (+latin/arabic)"
-msgstr "Tifinagh (morokkisk type) (+latinsk/arabisk)"
-
-#: keyboard.pm:301
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (phonetic) (+latin/arabic)"
-msgstr "Tifinagh (fonetisk) (+latinsk/arabisk)"
-
-#: keyboard.pm:303
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tajik"
-msgstr "Tajik tastatur"
-
-#: keyboard.pm:305
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkmen"
-msgstr "Turkmen"
-
-#: keyboard.pm:306
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (traditional \"F\" model)"
-msgstr "Tyrkisk (traditionel \"F\" model)"
-
-#: keyboard.pm:307
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (modern \"Q\" model)"
-msgstr "Tyrkisk (moderne \"Q\" model)"
-
-#: keyboard.pm:309
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Ukrainian"
-msgstr "Ukrainsk"
-
-#: keyboard.pm:312
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Urdu keyboard"
-msgstr "Urdu-tastatur"
-
-#: keyboard.pm:314
-#, c-format
-msgid "US keyboard (international)"
-msgstr "Amerikansk (internaltionalt)"
-
-#: keyboard.pm:315
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Uzbek (cyrillic)"
-msgstr "Uzbek (kyrillisk)"
-
-#: keyboard.pm:317
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamesisk \"talrække\" QWERTY"
-
-#: keyboard.pm:318
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Yugoslavian (latin)"
-msgstr "Jugoslavisk (latinsk)"
-
-#: keyboard.pm:325
-#, c-format
-msgid "Right Alt key"
-msgstr "Højre alt-tast"
-
-#: keyboard.pm:326
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Begge taster samtidigt"
-
-#: keyboard.pm:327
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Kontrol- og skiftetaster samtidigt"
-
-#: keyboard.pm:328
-#, c-format
-msgid "CapsLock key"
-msgstr "CapsLock-tast"
-
-#: keyboard.pm:329
-#, c-format
-msgid "Shift and CapsLock keys simultaneously"
-msgstr "Shift- og Capslock-taster samtidigt"
-
-#: keyboard.pm:330
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl- og alt-taster samtidigt"
-
-#: keyboard.pm:331
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt og Shift-taster samtidigt"
-
-#: keyboard.pm:332
-#, c-format
-msgid "\"Menu\" key"
-msgstr "'Menu'-tast"
-
-#: keyboard.pm:333
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Venstre Windows-tast"
-
-#: keyboard.pm:334
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Højre Windows-tast"
-
-#: keyboard.pm:335
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Begge kontrol-taster samtidigt"
-
-#: keyboard.pm:336
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Begge Alt-taster samtidigt"
-
-#: keyboard.pm:337
-#, c-format
-msgid "Left Shift key"
-msgstr "Venstre skifte-tast"
-
-#: keyboard.pm:338
-#, c-format
-msgid "Right Shift key"
-msgstr "Højre skifte-tast"
-
-#: keyboard.pm:339
-#, c-format
-msgid "Left Alt key"
-msgstr "Venstre Alt-tast"
-
-#: keyboard.pm:340
-#, c-format
-msgid "Left Control key"
-msgstr "Venstre kontol-tast"
-
-#: keyboard.pm:341
-#, c-format
-msgid "Right Control key"
-msgstr "Højre kontrol-tast"
-
-#: keyboard.pm:377
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Her kan du vælge tasten eller tastekombinationen som \n"
-"lader dig skifte mellem forskellige tastaturlayouter\n"
-"(dvs latinsk eller ikke-latinsk)."
-
-#: keyboard.pm:382
-#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
-msgstr ""
-"Denne indstilling vil blive aktiveret efter installationen.\n"
-"Under installationen skal du bruge den højre Ctrl-tast\n"
-"for at skifte mellem de forskellige tastaturudlægninger."
-
#. -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:178
+#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"
-#: lang.pm:195
+#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "Andorra"
-#: lang.pm:196 network/adsl_consts.pm:943
+#: lang.pm:211 timezone.pm:213
#, c-format
msgid "United Arab Emirates"
msgstr "Forenede Arabiske Emirater"
-#: lang.pm:197
+#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "Afghanistan"
-#: lang.pm:198
+#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigua og Barbuda"
-#: lang.pm:199
+#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "Anguilla"
-#: lang.pm:200
+#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "Albanien"
-#: lang.pm:201
+#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "Armenien"
-#: lang.pm:202
+#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "Hollandske Antiller"
-#: lang.pm:203
+#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "Angola"
-#: lang.pm:204
+#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "Antarktis"
-#: lang.pm:205 network/adsl_consts.pm:55 standalone/drakxtv:50
+#: lang.pm:220 timezone.pm:258
#, c-format
msgid "Argentina"
msgstr "Argentina"
-#: lang.pm:206
+#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "Amerikansk Samoa"
-#: lang.pm:209
+#: lang.pm:222 mirror.pm:11 timezone.pm:216
+#, c-format
+msgid "Austria"
+msgstr "Østrig"
+
+#: lang.pm:223 mirror.pm:10 timezone.pm:254
+#, c-format
+msgid "Australia"
+msgstr "Australien"
+
+#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "Aruba"
-#: lang.pm:210
+#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "Aserbajdsjan"
-#: lang.pm:211
+#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosnien-Hercegovina"
-#: lang.pm:212
+#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "Barbados"
-#: lang.pm:213
+#: lang.pm:228 timezone.pm:198
#, c-format
msgid "Bangladesh"
msgstr "Bangladesh"
-#: lang.pm:215
+#: lang.pm:229 mirror.pm:12 timezone.pm:218
+#, c-format
+msgid "Belgium"
+msgstr "Belgien"
+
+#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "Burkina Faso"
-#: lang.pm:216 network/adsl_consts.pm:170 network/adsl_consts.pm:179
+#: lang.pm:231 timezone.pm:219
#, c-format
msgid "Bulgaria"
msgstr "Bulgarien"
-#: lang.pm:217
+#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "Bahrain"
-#: lang.pm:218
+#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "Burundi"
-#: lang.pm:219
+#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "Benin"
-#: lang.pm:220
+#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "Bermuda"
-#: lang.pm:221
+#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "Brunei"
-#: lang.pm:222
+#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "Bolivia"
-#: lang.pm:224
+#: lang.pm:238 mirror.pm:13 timezone.pm:259
+#, c-format
+msgid "Brazil"
+msgstr "Brasilien"
+
+#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "Bahamas"
-#: lang.pm:225
+#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "Bhutan"
-#: lang.pm:226
+#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "Bouvet-øen"
-#: lang.pm:227
+#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "Botswana"
-#: lang.pm:228
+#: lang.pm:243 timezone.pm:217
#, c-format
msgid "Belarus"
msgstr "Hviderusland"
-#: lang.pm:229
+#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "Belize"
-#: lang.pm:231
+#: lang.pm:245 mirror.pm:14 timezone.pm:248
+#, c-format
+msgid "Canada"
+msgstr "Canada"
+
+#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Kokosøerne"
-#: lang.pm:232
+#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Congo (Kinshasa)"
-#: lang.pm:233
+#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "Centralafrikanske Republik"
-#: lang.pm:234
+#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Congo (Brazzaville)"
-#: lang.pm:236
+#: lang.pm:250 mirror.pm:38 timezone.pm:242
+#, c-format
+msgid "Switzerland"
+msgstr "Schweiz"
+
+#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "Elfenbenskysten"
-#: lang.pm:237
+#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "Cooks øer"
-#: lang.pm:238
+#: lang.pm:253 timezone.pm:260
#, c-format
msgid "Chile"
msgstr "Chile"
-#: lang.pm:239
+#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "Cameroun"
-#: lang.pm:240 network/adsl_consts.pm:188 network/adsl_consts.pm:197
-#: network/adsl_consts.pm:206 network/adsl_consts.pm:215
-#: network/adsl_consts.pm:224 network/adsl_consts.pm:233
-#: network/adsl_consts.pm:242 network/adsl_consts.pm:251
-#: network/adsl_consts.pm:260 network/adsl_consts.pm:269
-#: network/adsl_consts.pm:278 network/adsl_consts.pm:287
-#: network/adsl_consts.pm:296 network/adsl_consts.pm:305
-#: network/adsl_consts.pm:314 network/adsl_consts.pm:323
-#: network/adsl_consts.pm:332 network/adsl_consts.pm:341
-#: network/adsl_consts.pm:350 network/adsl_consts.pm:359
+#: lang.pm:255 timezone.pm:199
#, c-format
msgid "China"
msgstr "Kina"
-#: lang.pm:241
+#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "Columbia"
-#: lang.pm:243
+#: lang.pm:257 mirror.pm:15
+#, c-format
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "Serbien & Montenegro"
-#: lang.pm:244
+#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "Cuba"
-#: lang.pm:245
+#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "Kap Verde"
-#: lang.pm:246
+#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "Juleøerne"
-#: lang.pm:247
+#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "Cypern"
-#: lang.pm:250
+#: lang.pm:263 mirror.pm:16 timezone.pm:220
+#, c-format
+msgid "Czech Republic"
+msgstr "Tjekkiet"
+
+#: lang.pm:264 mirror.pm:21 timezone.pm:225
+#, c-format
+msgid "Germany"
+msgstr "Tyskland"
+
+#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "Djibouti"
-#: lang.pm:252
+#: lang.pm:266 mirror.pm:17 timezone.pm:221
+#, c-format
+msgid "Denmark"
+msgstr "Danmark"
+
+#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "Dominica"
-#: lang.pm:253
+#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "Dominikanske Republik"
-#: lang.pm:254 network/adsl_consts.pm:44
+#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "Algeriet"
-#: lang.pm:255
+#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "Ecuador"
-#: lang.pm:257
+#: lang.pm:271 mirror.pm:18 timezone.pm:222
+#, c-format
+msgid "Estonia"
+msgstr "Estland"
+
+#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "Egypten"
-#: lang.pm:258
+#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "Vestlig Sahara"
-#: lang.pm:259
+#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "Eritrea"
-#: lang.pm:261
+#: lang.pm:275 mirror.pm:36 timezone.pm:240
+#, c-format
+msgid "Spain"
+msgstr "Spanien"
+
+#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "Etiopien"
-#: lang.pm:263
+#: lang.pm:277 mirror.pm:19 timezone.pm:223
+#, c-format
+msgid "Finland"
+msgstr "Finland"
+
+#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "Fiji"
-#: lang.pm:264
+#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Falklandsøerne (Malvinas)"
-#: lang.pm:265
+#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "Mikronesien"
-#: lang.pm:266
+#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "Færøerne"
-#: lang.pm:268
+#: lang.pm:282 mirror.pm:20 timezone.pm:224
+#, c-format
+msgid "France"
+msgstr "Frankrig"
+
+#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "Gabon"
-#: lang.pm:269 network/adsl_consts.pm:954 network/adsl_consts.pm:965
-#: network/netconnect.pm:46
+#: lang.pm:284 timezone.pm:244
#, c-format
msgid "United Kingdom"
msgstr "Storbritannien"
-#: lang.pm:270
+#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "Grenada"
-#: lang.pm:271
+#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "Georgien"
-#: lang.pm:272
+#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "Fransk Guinea"
-#: lang.pm:273
+#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "Ghana"
-#: lang.pm:274
+#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "Gibraltar"
-#: lang.pm:275
+#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "Grønland"
-#: lang.pm:276
+#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "Gambia"
-#: lang.pm:277
+#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "Guinea"
-#: lang.pm:278
+#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "Guadeloupe"
-#: lang.pm:279
+#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "Ækvatorialguinea"
-#: lang.pm:281
+#: lang.pm:295 mirror.pm:22 timezone.pm:226
+#, c-format
+msgid "Greece"
+msgstr "Grækenland"
+
+#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "Syd-Georgia og Syd-Sandwich-øerne"
-#: lang.pm:282
+#: lang.pm:297 timezone.pm:249
#, c-format
msgid "Guatemala"
msgstr "Guatemala"
-#: lang.pm:283
+#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "Guam"
-#: lang.pm:284
+#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "Guinea-Bissau"
-#: lang.pm:285
+#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "Guyana"
-#: lang.pm:286
+#: lang.pm:301
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "Kina (Hong Kong)"
-#: lang.pm:287
+#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Heard- og McDonald-øerne"
-#: lang.pm:288
+#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "Honduras"
-#: lang.pm:289
+#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "Kroatien"
-#: lang.pm:290
+#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "Haiti"
-#: lang.pm:292
+#: lang.pm:306 mirror.pm:23 timezone.pm:227
+#, c-format
+msgid "Hungary"
+msgstr "Ungarn"
+
+#: lang.pm:307 timezone.pm:202
#, c-format
msgid "Indonesia"
msgstr "Indonesien"
-#: lang.pm:295
+#: lang.pm:308 mirror.pm:24 timezone.pm:228
+#, c-format
+msgid "Ireland"
+msgstr "Irland"
+
+#: lang.pm:309 mirror.pm:25 timezone.pm:204
+#, c-format
+msgid "Israel"
+msgstr "Israel"
+
+#: lang.pm:310 timezone.pm:201
#, c-format
msgid "India"
msgstr "Indien"
-#: lang.pm:296
+#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "British Indian Ocean Territory"
-#: lang.pm:297
+#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "Irak"
-#: lang.pm:298
+#: lang.pm:313 timezone.pm:203
#, c-format
msgid "Iran"
msgstr "Iran"
-#: lang.pm:299
+#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "Island"
-#: lang.pm:301
+#: lang.pm:315 mirror.pm:26 timezone.pm:229
+#, c-format
+msgid "Italy"
+msgstr "Italien"
+
+#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "Jamaica"
-#: lang.pm:302
+#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "Jordan"
-#: lang.pm:304
+#: lang.pm:318 mirror.pm:27 timezone.pm:205
+#, c-format
+msgid "Japan"
+msgstr "Japan"
+
+#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "Kenya"
-#: lang.pm:305
+#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "Kirgisistan"
-#: lang.pm:306
+#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "Cambodja"
-#: lang.pm:307
+#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "Kiribati"
-#: lang.pm:308
+#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "Comorerne"
-#: lang.pm:309
+#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Saint Kitts og Nevis"
-#: lang.pm:310
+#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "Korea (Nord)"
-#: lang.pm:311
+#: lang.pm:326 timezone.pm:206
#, c-format
msgid "Korea"
msgstr "Korea"
-#: lang.pm:312
+#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "Kuwait"
-#: lang.pm:313
+#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "Caymanøerne"
-#: lang.pm:314
+#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "Kazakhstan"
-#: lang.pm:315
+#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "Lagos"
-#: lang.pm:316
+#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "Libanon"
-#: lang.pm:317
+#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "Sankt Lucia"
-#: lang.pm:318
+#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "Liechtenstein"
-#: lang.pm:319
+#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "Sri Lanka"
-#: lang.pm:320
+#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "Liberia"
-#: lang.pm:321
+#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "Lesotho"
-#: lang.pm:322 network/adsl_consts.pm:600
+#: lang.pm:337 timezone.pm:230
#, c-format
msgid "Lithuania"
msgstr "Litauen"
-#: lang.pm:323
+#: lang.pm:338 timezone.pm:231
#, c-format
msgid "Luxembourg"
msgstr "Luxemburg"
-#: lang.pm:324
+#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "Letland"
-#: lang.pm:325
+#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "Libyen"
-#: lang.pm:326 network/adsl_consts.pm:609
+#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "Marokko"
-#: lang.pm:327
+#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "Monaco"
-#: lang.pm:328
+#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "Moldova"
-#: lang.pm:329
+#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "Madagaskar"
-#: lang.pm:330
+#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "Marshalløerne"
-#: lang.pm:331
+#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "Makedonien"
-#: lang.pm:332
+#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "Mali"
-#: lang.pm:333
+#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "Myanmar"
-#: lang.pm:334
+#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "Mongoliet"
-#: lang.pm:335
+#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "Nordmarianerne"
-#: lang.pm:336
+#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "Martinique"
-#: lang.pm:337
+#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "Mauretanien"
-#: lang.pm:338
+#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "Montserrat"
-#: lang.pm:339
+#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "Malta"
-#: lang.pm:340
+#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "Mauritius"
-#: lang.pm:341
+#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "Maldiverne"
-#: lang.pm:342
+#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "Malawi"
-#: lang.pm:343
+#: lang.pm:358 timezone.pm:250
#, c-format
msgid "Mexico"
msgstr "Mexico"
-#: lang.pm:344
+#: lang.pm:359 timezone.pm:207
#, c-format
msgid "Malaysia"
msgstr "Malaysia"
-#: lang.pm:345
+#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "Mocambique"
-#: lang.pm:346
+#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "Namibia"
-#: lang.pm:347
+#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "Ny Caledonien"
-#: lang.pm:348
+#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "Niger"
-#: lang.pm:349
+#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "Norfolk Øen"
-#: lang.pm:350
+#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "Nigeria"
-#: lang.pm:351
+#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "Nicaragua"
-#: lang.pm:354
+#: lang.pm:367 mirror.pm:28 timezone.pm:232
+#, c-format
+msgid "Netherlands"
+msgstr "Holland"
+
+#: lang.pm:368 mirror.pm:30 timezone.pm:233
+#, c-format
+msgid "Norway"
+msgstr "Norge"
+
+#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "Nepal"
-#: lang.pm:355
+#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "Nauru"
-#: lang.pm:356
+#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "Niue"
-#: lang.pm:358
+#: lang.pm:372 mirror.pm:29 timezone.pm:255
+#, c-format
+msgid "New Zealand"
+msgstr "New Zealand"
+
+#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "Oman"
-#: lang.pm:359
+#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "Panama"
-#: lang.pm:360
+#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "Peru"
-#: lang.pm:361
+#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "Fransk Polynesien"
-#: lang.pm:362
+#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "Papua Ny Guinea"
-#: lang.pm:363
+#: lang.pm:378 timezone.pm:208
#, c-format
msgid "Philippines"
msgstr "Filippinerne"
-#: lang.pm:364
+#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "Pakistan"
-#: lang.pm:366
+#: lang.pm:380 mirror.pm:31 timezone.pm:234
+#, c-format
+msgid "Poland"
+msgstr "Polen"
+
+#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Sankt Pierre og Miquelon"
-#: lang.pm:367
+#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "Pitcairn"
-#: lang.pm:368
+#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "Puerto Rico"
-#: lang.pm:369
+#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "Palæstina"
-#: lang.pm:371
+#: lang.pm:385 mirror.pm:32 timezone.pm:235
+#, c-format
+msgid "Portugal"
+msgstr "Portugal"
+
+#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "Paraguay"
-#: lang.pm:372
+#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "Palau"
-#: lang.pm:373
+#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "Qatar"
-#: lang.pm:374
+#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "Réunion"
-#: lang.pm:375
+#: lang.pm:390 timezone.pm:236
#, c-format
msgid "Romania"
msgstr "Rumænien"
-#: lang.pm:377
+#: lang.pm:391 mirror.pm:33
+#, c-format
+msgid "Russia"
+msgstr "Rusland"
+
+#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "Rwanda"
-#: lang.pm:378
+#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "Saudi-Arabien"
-#: lang.pm:379
+#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "Salomonøerne"
-#: lang.pm:380
+#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "Seychellerne"
-#: lang.pm:381
+#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "Sudan"
-#: lang.pm:383
+#: lang.pm:397 mirror.pm:37 timezone.pm:241
+#, c-format
+msgid "Sweden"
+msgstr "Sverige"
+
+#: lang.pm:398 timezone.pm:209
#, c-format
msgid "Singapore"
msgstr "Singapore"
-#: lang.pm:384
+#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "Sankt Helena"
-#: lang.pm:385 network/adsl_consts.pm:747
+#: lang.pm:400 timezone.pm:239
#, c-format
msgid "Slovenia"
msgstr "Slovenien"
-#: lang.pm:386
+#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Svalbard og Jan Mayen øerne"
-#: lang.pm:388
+#: lang.pm:402 mirror.pm:34 timezone.pm:238
+#, c-format
+msgid "Slovakia"
+msgstr "Slovakiet"
+
+#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "Sierra Leone"
-#: lang.pm:389
+#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "San Marino"
-#: lang.pm:390 network/adsl_consts.pm:737
+#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "Senegal"
-#: lang.pm:391
+#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "Somalia"
-#: lang.pm:392
+#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "Surinam"
-#: lang.pm:393
+#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "São Tomé og Príncipe"
-#: lang.pm:394
+#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "El Salvador"
-#: lang.pm:395
+#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "Syrien"
-#: lang.pm:396
+#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "Swaziland"
-#: lang.pm:397
+#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Turks- og Caicosøerne"
-#: lang.pm:398
+#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "Tchad"
-#: lang.pm:399
+#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "Franske sydlige territorier"
-#: lang.pm:400
+#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "Togo"
-#: lang.pm:402
+#: lang.pm:416 mirror.pm:40 timezone.pm:211
+#, c-format
+msgid "Thailand"
+msgstr "Thailand"
+
+#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "Tadzjikistan"
-#: lang.pm:403
+#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "Tokelau"
-#: lang.pm:404
+#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "Østtimor"
-#: lang.pm:405
+#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "Turkmenistan"
-#: lang.pm:406 network/adsl_consts.pm:931
+#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "Tunesien"
-#: lang.pm:407
+#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "Tonga"
-#: lang.pm:408
+#: lang.pm:423 timezone.pm:212
#, c-format
msgid "Turkey"
msgstr "Tyrkiet"
-#: lang.pm:409
+#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "Trinidad og Tobago"
-#: lang.pm:410
+#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "Tuvalu"
-#: lang.pm:412
+#: lang.pm:426 mirror.pm:39 timezone.pm:210
+#, c-format
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#: lang.pm:427 timezone.pm:195
#, c-format
msgid "Tanzania"
msgstr "Tanzania"
-#: lang.pm:413
+#: lang.pm:428 timezone.pm:243
#, c-format
msgid "Ukraine"
msgstr "Ukraine"
-#: lang.pm:414
+#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "Uganda"
-#: lang.pm:415
+#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "Fjerne, mindre øer, USA"
-#: lang.pm:417
+#: lang.pm:431 mirror.pm:41 timezone.pm:251
+#, c-format
+msgid "United States"
+msgstr "U.S.A."
+
+#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "Uruguay"
-#: lang.pm:418
+#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "Uzbekistan"
-#: lang.pm:419
+#: lang.pm:434
#, c-format
msgid "Vatican"
msgstr "Vatikansk"
-#: lang.pm:420
+#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "Sankt Vincent og Grenadinerne"
-#: lang.pm:421
+#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "Venezuela"
-#: lang.pm:422
+#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "Jomfruøerne (britiske)"
-#: lang.pm:423
+#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Jomfruøerne (USA)"
-#: lang.pm:424
+#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "Vietnam"
-#: lang.pm:425
+#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "Vanuatu"
-#: lang.pm:426
+#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "Wallis og Futuna"
-#: lang.pm:427
+#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "Samoa"
-#: lang.pm:428
+#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "Yemen"
-#: lang.pm:429
+#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "Mayotte"
-#: lang.pm:431
+#: lang.pm:445 mirror.pm:35 timezone.pm:194
+#, c-format
+msgid "South Africa"
+msgstr "Sydafrika"
+
+#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "Zambia"
-#: lang.pm:432
+#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1149
+#: lang.pm:1153
#, c-format
msgid "Welcome to %s"
msgstr "Velkommen til %s"
@@ -9605,7 +4592,8 @@ msgstr "Velkommen til %s"
#: lvm.pm:83
#, c-format
msgid "Moving used physical extents to other physical volumes failed"
-msgstr "Flytning af brugte fysiske områder til andre fysiske volumener lykkedes ikke"
+msgstr ""
+"Flytning af brugte fysiske områder til andre fysiske volumener lykkedes ikke"
#: lvm.pm:135
#, c-format
@@ -9622,6 +4610,326 @@ msgstr "Fjern de logiske delarkiver først\n"
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Opstartsindlæseren kan ikke håndtere /boot på flere fysiske volumer"
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:10
+#, c-format
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the Mandriva "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandriva Linux distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
+"Mandriva S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using the Software Products in any manner, you "
+"explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
+"Software Products.\n"
+"\n"
+"\n"
+"2. Limited Warranty\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
+"be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if Mandriva S.A. has been advised of the possibility or "
+"occurrence of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
+"\n"
+"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
+"no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Mandriva Linux sites which are prohibited or restricted in some "
+"countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
+"included in the Software Products.\n"
+"\n"
+"\n"
+"3. The GPL License and Related Licenses\n"
+"\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to Mandriva.\n"
+"The programs developed by Mandriva S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by Mandriva S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
+"\n"
+"\n"
+"4. Intellectual Property Rights\n"
+"\n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
+"as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
+"Mandriva S.A. \n"
+"\n"
+"\n"
+"5. Governing Laws \n"
+"\n"
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
+"For any question on this document, please contact Mandriva S.A. \n"
+msgstr ""
+"Introduktion\n"
+"\n"
+"Operativsystemet og de forskellige komponenter tilgængelige i Mandriva Linux "
+"distributionen vil herefter blive kaldt \"programmelprodukter\". "
+"Programmelprodukterne inkluderer, men er ikke begrænset til: samlingen af "
+"værktøjer, metoder, regler og dokumentation relateret til operativsystemet "
+"og de forskellige komponenter i Mandriva Linux-distributionen.\n"
+"\n"
+"\n"
+"1. Licensaftale\n"
+"\n"
+"Læs venligst dette dokument omhyggeligt. Dette dokument er en licensaftale "
+"mellem dig og Mandriva S.A., som gælder til disse programmelprodukter. Ved "
+"at installere, kopiere eller bruge disse programmelprodukter accepterer du "
+"udtrykkeligt og fuldt ud at følge denne licensaftale med dens betingelser og "
+"regler. Hvis du er uenig i nogensomhelst del af denne licens, har du ikke "
+"lovtil at installere, kopiere eller bruge disse programmelprodukter. Hvilket "
+"som helst forsøg på at installere, kopiere eller bruge disse "
+"programmelprodukter på en måde som ikke er i overensstemmelse med "
+"betingelserne og reglerne i denne licens er ugyldig og vil ophæve dine "
+"rettighedder under denne licens. Ved ophævelse af licensen skal du med det "
+"samme ødelægge alle kopier af programmelprodukterne.\n"
+"\n"
+"\n"
+"2. Begrænset garanti\n"
+"\n"
+"Programmelprodukterne og tilhørende dokumentation leveres \"som de er\", "
+"uden nogen form for garanti, i den udstrækning lov tillader. Mandriva S.A. "
+"vil under ingen omstændigheder efter hvad loven foreskriver være ansvarlig "
+"for specielle, tilfældige, direkte eller indirekte tab af nogen art "
+"(inkluderende uden begrænsninger, skader ved tab af forretning, "
+"forstyrrelser af forretning, finansielle tab, advokatbistand, erstatninger "
+"som resultat af en retssag eller nogen anden form for følgetab) opstået "
+"under brugen eller mangel på samme af disse programmelprodukter, selv hvis "
+"Mandriva S.A. er blevet gjort opmærksom på muligheden for eller "
+"indtræffelsen af sådanne skader.\n"
+"\n"
+"BEGRÆNSET ANSVAR MED HENSYN TIL REGLER OM BESIDDELSE ELLER BRUG AF FORBUDT "
+"PROGRAMMEL I VISSE LANDE\n"
+"\n"
+"I den udstrækning som loven tillader vil Mandriva S.A. eller deres "
+"distributører under ingen omstændigheder være ansvarlig for specielle, "
+"tilfældige, direkte eller indirekte tab af nogen art (inklusive uden "
+"begrænsninger skader ved tab af forretning, forstyrrelser af forretning, "
+"finansielle tab, advokatbistand, erstatninger som resultat af en retssag "
+"eller nogen anden form for tab) opstået ved besiddelse eller brug af "
+"programmelkomponenter eller opstået ved hentning af programmelkomponenter "
+"fra et af Mandriva Linux-webstederne som er forbudt eller begrænset i visse "
+"lande ved lokal lov. Dette begrænsede ansvar gælder, men er ikke begrænset "
+"til, de stærke krypteringskomponenter inkluderet i programmelprodukterne.\n"
+"\n"
+"\n"
+"3. GPL-licensen og relaterede licenser\n"
+"\n"
+"Programmelprodukterne består af komponenter lavet af forskellige personer "
+"eller enheder. De fleste af disse komponenter bliver reguleret efter "
+"vilkårene og aftalerne i GNU General Public License, herefter kaldet \"GPL"
+"\", eller lignende licenser. De fleste af disse licenser tillader dig at "
+"bruge, kopiere, tilpasse eller videredistribuere komponenterne, de dækker. "
+"Læs venligst vilkårene og betingelserne i licensaftalen for hver komponent "
+"omhyggeligt før du bruger den. Alle spørgsmål angående en komponent bedes "
+"adresseret til komponentens forfatter og ikke til Mandriva. Programmerne "
+"udviklet af Mandriva S.A. bliver reguleret efter GPL-licensen. "
+"Dokumentationen skrevet af Mandriva S.A. bliver reguleret efter en specifik "
+"licens. Referér venligst til dokumentationen for yderligere detaljer.\n"
+"\n"
+"\n"
+"4. Intellektuelle rettigheder\n"
+"\n"
+"Alle rettigheder til komponenterne i programmelproduktet tilhører deres "
+"respektive forfattere, og er beskyttet af intellektuelle rettigheds- og "
+"ophavsretslove, gældende for programmel. Mandriva S.A. forbeholder sine "
+"rettigheder til at ændre eller tilpasse programmelprodukterne, helt eller "
+"delvist, med alle midler og til alle formål. \"Mandriva\", \"Mandriva Linux"
+"\" samt de tilhørende logoer er varemærker for Mandriva S.A. \n"
+"\n"
+"\n"
+"5. Styrende love\n"
+"\n"
+"Hvis dele af denne aftale bliver kendt ugyldig, ulovlig eller ubrugelig ved "
+"en domstolsafgørelse, vil disse dele blive ekskluderet fra denne kontrakt. "
+"Du vil forblive bundet af de andre gældende dele af aftalen. Vilkårene og "
+"aftalerne i denne licens er reguleret under fransk lov. Alle uenigheder "
+"vedrørende vilkårene i denne licens vil fortrinsvist blive løst udenfor "
+"domstolene. Som en sidste udvej vil uenighederne blive håndteret ved den "
+"rette domstol i Paris, Frankrig. Ved spørgsmål omkring dette dokument, "
+"kontakt venligst Mandriva S.A. \n"
+
+# Mangler
+#: messages.pm:90
+#, c-format
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
+"Advarsel: Frit programmel er ikke nødvendigvis fri for patenter, og noget af "
+"det inkluderede frie programmel er muligvis dækket af patenter i dit land. "
+"For eksempel kan de inkluderede MP3-dekoder kræve en licens til yderligere "
+"brug (se http://www.mp3licensing.com for flere detaljer) Hvis du er usikker "
+"om et patent kan vedrøre dig, så tjek din lokale lovgivning."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:98
+#, c-format
+msgid ""
+"\n"
+"Warning\n"
+"\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
+"\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
+msgstr ""
+"\n"
+"Advarsel\n"
+"\n"
+"Læs venligst betingelserne nedenfor omhyggeligt. Hvis du ikke er enig i alt "
+"der står, må du ikke installere indholdet af CD-en. Tryk på 'Nægt' for at "
+"fortsætte installationen uden disse cdrommer.\n"
+"\n"
+"\n"
+"Visse komponenter på den næste CD er ikke omfattet af GPL-licensen eller "
+"andre lignende licenser. Hver enkelt komponent er derfor omfattet af de "
+"betingelser der er beskrevet i dets egen licens. Læs derfor venligst "
+"betingelserne omhyggeligt og følg de opstillede betingelser når du bruger og/"
+"eller videredistribuerer komponenterne. Sådanne licenser forhindrer normalt "
+"kopiering (sikkerhedskopiering undtaget), videredistribuering, at folk "
+"skiller programmet ad, eller ændrer i komponenterne. Ethvert brud på "
+"licensen vil øjeblikkeligt fratage dig rettighederne beskrevet i den "
+"specifikke licens. Medmindre licensen giver dig lov hertil, vil det normalt "
+"ikke være tilladt at installere programmet på mere end én maskine, eller "
+"bruge det på et netværk. Hvis du er i tvivl, så kontakt venligst producenten "
+"af komponenten direkte. Overdragelse til tredjemand eller kopiering af "
+"sådanne komponenter inklusive dokumentationen er normalt forbudt.\n"
+"\n"
+"\n"
+"Alle rettigheder til komponenterne på CD-en tilhører deres respektive "
+"skabere og er beskyttet af Lov om Ophavsret.\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:131
+#, c-format
+msgid ""
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press Enter to reboot.\n"
+"\n"
+"\n"
+"For information on fixes which are available for this release of Mandriva "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandriva Linux User's Guide."
+msgstr ""
+"Tillykke, installationen er færdig.\n"
+"Fjern boot-mediet og tryk retur for at genstarte.\n"
+"\n"
+"\n"
+"For information om rettelser til denne udgivelse af Mandriva Linux, se "
+"Errata på:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information om konfigurering af dit system kan du finde i kapitlet om efter-"
+"installation i den Officielle Mandriva Linux Brugervejledning."
+
#: modules/interactive.pm:19
#, c-format
msgid "This driver has no configuration parameter!"
@@ -9684,12 +4992,7 @@ msgstr "Installerer driver for ethernet-styreenhed %s"
msgid "Installing driver for %s card %s"
msgstr "Installerer driver for %s kort %s"
-#: modules/interactive.pm:99
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
-
-#: modules/interactive.pm:109
+#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9698,7 +5001,7 @@ msgstr ""
"Du kan nu angive parametre til modul %s.\n"
"Bemærk at alle adresser bør indtastes med foranstillet 0x, fx '0x123'"
-#: modules/interactive.pm:115
+#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9709,18 +5012,18 @@ msgstr ""
"Parametrene er i formatet ``navn=værdi navn2=værdi2 ...''.\n"
"F.eks., ``io=0x300 irq=7''"
-#: modules/interactive.pm:117
+#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "Modulindstillinger:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: modules/interactive.pm:130
+#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hvilken %s driver skal jeg prøve?"
-#: modules/interactive.pm:139
+#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -9740,17 +5043,17 @@ msgstr ""
"burde\n"
"ikke forårsage nogen skader."
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "Automatisk sondering"
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "Specificér parametre"
-#: modules/interactive.pm:155
+#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -9759,1940 +5062,17 @@ msgstr ""
"Indlæsning af modul %s mislykkedes.\n"
"Ønsker du at prøve igen med andre parametre?"
-#: modules/parameters.pm:49
-#, c-format
-msgid "a number"
-msgstr "et tal"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d kommaseparerede tal"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d kommaseparerede strenge"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated numbers"
-msgstr "kommaseparerede tal"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated strings"
-msgstr "kommaseparerede strenge"
-
-#: mouse.pm:25
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun-mus"
-
-#: mouse.pm:31 security/level.pm:12
-#, c-format
-msgid "Standard"
-msgstr "Standard"
-
-#: mouse.pm:32
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: mouse.pm:33
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Standard PS2 mus med hjul"
-
-#: mouse.pm:34
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/modem.pm:68 network/modem.pm:81 network/modem.pm:86
-#: network/modem.pm:115 network/netconnect.pm:596 network/netconnect.pm:601
-#: network/netconnect.pm:613 network/netconnect.pm:618
-#: network/netconnect.pm:634 network/netconnect.pm:636
-#, c-format
-msgid "Automatic"
-msgstr "Automatisk"
-
-#: mouse.pm:39 mouse.pm:73
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking-mus"
-
-#: mouse.pm:40 mouse.pm:68
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: mouse.pm:41
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: mouse.pm:42 mouse.pm:52
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
-
-#: mouse.pm:47 mouse.pm:79
-#, c-format
-msgid "1 button"
-msgstr "1 knap"
-
-#: mouse.pm:48 mouse.pm:57
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Standard 2-knaps mus"
-
-#: mouse.pm:50 mouse.pm:59
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Standard 3-knaps mus med hjul-emulering"
-
-#: mouse.pm:51
-#, c-format
-msgid "Wheel"
-msgstr "Hjul"
-
-#: mouse.pm:55
-#, c-format
-msgid "serial"
-msgstr "seriel"
-
-#: mouse.pm:58
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Standard 3-knaps mus"
-
-#: mouse.pm:60
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: mouse.pm:61
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: mouse.pm:62
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan med hjul-emulering"
-
-#: mouse.pm:63
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: mouse.pm:65
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Serien (seriel)"
-
-#: mouse.pm:66
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Serien med hjul-emulering"
-
-#: mouse.pm:67
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: mouse.pm:69
-#, c-format
-msgid "MM Series"
-msgstr "MM Serien"
-
-#: mouse.pm:70
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: mouse.pm:71
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech mus (seriel, gammel C7 type)"
-
-#: mouse.pm:72
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech mus (seriel, gammel C7 type) med hjul-emulering"
-
-#: mouse.pm:74
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking-mus med hjul-emulering"
-
-#: mouse.pm:77
-#, c-format
-msgid "busmouse"
-msgstr "Busmus"
-
-#: mouse.pm:80
-#, c-format
-msgid "2 buttons"
-msgstr "2 knapper"
-
-#: mouse.pm:81
-#, c-format
-msgid "3 buttons"
-msgstr "3 knapper"
-
-#: mouse.pm:82
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3 knapper med hjul-emulering"
-
-#: mouse.pm:86
-#, c-format
-msgid "Universal"
-msgstr "Universiel"
-
-#: mouse.pm:88
-#, c-format
-msgid "Any PS/2 & USB mice"
-msgstr "Alle PS/2 & USB mus"
-
-#: mouse.pm:89
-#, c-format
-msgid "Microsoft Xbox Controller S"
-msgstr "Microsoft Xbox-Controller S"
-
-#: mouse.pm:93 standalone/drakconnect:351 standalone/drakvpn:1126
-#, c-format
-msgid "none"
-msgstr "ingenting"
-
-#: mouse.pm:95
-#, c-format
-msgid "No mouse"
-msgstr "Ingen mus"
-
-#: mouse.pm:304 mouse.pm:367 mouse.pm:376 mouse.pm:435
-#, c-format
-msgid "Synaptics Touchpad"
-msgstr "Synaptics museplade"
-
-#: mouse.pm:561
-#, c-format
-msgid "Please test the mouse"
-msgstr "Test musen"
-
-#: mouse.pm:563
-#, c-format
-msgid "To activate the mouse,"
-msgstr "For at aktivere musen,"
-
-#: mouse.pm:564
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "FLYT PÅ HJULET!"
-
-#: network/drakfirewall.pm:12 share/compssUsers.pl:85
-#, c-format
-msgid "Web Server"
-msgstr "Webserver"
-
-#: network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "Server for domænenavne (DNS)"
-
-#: network/drakfirewall.pm:22
-#, c-format
-msgid "SSH server"
-msgstr "SSH-server"
-
-#: network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "FTP-server"
-
-#: network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "Postserver"
-
-#: network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP- og IMAP-server"
-
-#: network/drakfirewall.pm:42
-#, c-format
-msgid "Telnet server"
-msgstr "Telnet-server"
-
-#: network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr "Windows-fildeling (SMB)"
-
-#: network/drakfirewall.pm:54
-#, c-format
-msgid "CUPS server"
-msgstr "CUPS-server"
-
-#: network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr "Echo-forespørgsel (ping)"
-
-#: network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr "BitTorrent"
-
-#: network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr "Opdagelse via portskanning"
-
-#: network/drakfirewall.pm:165
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-"drakfirewall-konfigurator\n"
-"\n"
-"Dette konfigurerer en personlig brandmur for denne Mandriva Linux-maskine.\n"
-"For en stærk dedikeret brandmurs-løsning se venligst den specialiserede "
-"Mandriva Security Firewall-distribution."
-
-#: network/drakfirewall.pm:171
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-"konfigurering med drakfirewall\n"
-"\n"
-"Forsikr dig om at du har konfigureret din internetforbindelse med "
-"drakconnect før du går videre."
-
-#: network/drakfirewall.pm:188
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "Hvilke tjenester vil du tillade at Internettet kan koble op med?"
-
-#: network/drakfirewall.pm:191
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-"Du kan angive diverse porte. \n"
-"Gyldige eksempler er: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Se /etc/services for information."
-
-#: network/drakfirewall.pm:197
-#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-"Ugyldig port angivet: %s.\n"
-"Det korrekte format er 'port/tcp', \"port/udp' eller 'port/icmp', \n"
-"hvor port er mellem 1 og 65535.\n"
-"\n"
-"Du kan også angive et interval af porte (fx 24300:24350/udp)"
-
-#: network/drakfirewall.pm:207
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Alt (ingen brandmur)"
-
-#: network/drakfirewall.pm:209
-#, c-format
-msgid "Other ports"
-msgstr "Andre porte"
-
-#: network/drakfirewall.pm:253 network/drakfirewall.pm:256
-#: standalone/drakids:33 standalone/drakids:136 standalone/drakids:145
-#: standalone/drakids:170 standalone/drakids:179 standalone/drakids:189
-#: standalone/drakids:265 standalone/net_applet:59 standalone/net_applet:202
-#: standalone/net_applet:385 standalone/net_applet:422
-#, c-format
-msgid "Interactive Firewall"
-msgstr "Interaktiv brandmur"
-
-#: network/drakfirewall.pm:254
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activity should be watched."
-msgstr ""
-"Du kan blive advaret når nogen har adgang til en tjeneste, eller prøver at "
-"trænge ind i din maskine.\n"
-"Vælg hvilken netværksaktivitet som skal overvåges."
-
-#: network/drakfirewall.pm:259
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr "Brug interaktiv brandmur"
-
-#: network/ifw.pm:129
-#, c-format
-msgid "Port scanning"
-msgstr "Portskanning"
-
-#: network/ifw.pm:130
-#, c-format
-msgid "Service attack"
-msgstr "Angreb på tjeneste"
-
-#: network/ifw.pm:131
-#, c-format
-msgid "Password cracking"
-msgstr "Brydning af adgangskoder"
-
-#: network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr "\"%s\"-angreb"
-
-#: network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr "Et angreb med portskanning er blevet forsøgt af %s."
-
-#: network/ifw.pm:135
-#, c-format
-msgid "The %s service has been attacked by %s."
-msgstr "%s-tjenesten er blevet angrebet af %s."
-
-#: network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr "Et angreb med cracking af adgangskoder er blevet forsøgt af %s."
-
-#: network/ifw.pm:137
-#, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr "Et angreb på %s er blevet forsøgt af %s"
-
-#: network/isdn.pm:117 network/netconnect.pm:463 network/netconnect.pm:557
-#: network/netconnect.pm:560 network/netconnect.pm:708
-#: network/netconnect.pm:712
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr "Ikke beskrevet - regigér manuelt"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "Det ved jeg ikke"
-
-#: network/isdn.pm:161 network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: network/isdn.pm:162 network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/netconnect.pm:601 network/netconnect.pm:618
-#: network/netconnect.pm:634
-#, c-format
-msgid "Manual"
-msgstr "Manuel"
-
-#: network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr "Ingen enhed der understøtter %s ndiswrapper-driveren er til stede!"
-
-#: network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr "Vælg Windows-driveren (.inf-fil)"
-
-#: network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr "Kan ikke installere %s ndiswrapper-driveren!"
-
-#: network/ndiswrapper.pm:89
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr "Kan ikke indlæse ndiswrapper-modulet!"
-
-#: network/ndiswrapper.pm:95
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-"Den valgte enhed er allerede blevet konfigureret med %s-driveren.\n"
-"Ønsker du virkelig at bruge en ndiswrapper-driver?"
-
-#: network/ndiswrapper.pm:101
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr "Kan ikke finde ndiswrapper-grænsefladen!"
-
-#: network/netconnect.pm:69 network/netconnect.pm:493
-#: network/netconnect.pm:505
-#, c-format
-msgid "Manual choice"
-msgstr "Manuelt valg"
-
-#: network/netconnect.pm:69
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Internt ISDN-kort"
-
-#: network/netconnect.pm:80 printer/printerdrake.pm:1622 standalone/drakups:72
-#, c-format
-msgid "Manual configuration"
-msgstr "Manuel konfiguration"
-
-#: network/netconnect.pm:81 standalone/drakroam:121
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr "Automatisk IP (BOOTP/DHCP)"
-
-#: network/netconnect.pm:83
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
-msgstr "Automatisk IP (BOOTP/DHCP/Zeroconf)"
-
-#: network/netconnect.pm:86
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protokol for resten af verden"
-
-#: network/netconnect.pm:88 standalone/drakconnect:563
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Protokol for Europa (EDSS1)"
-
-#: network/netconnect.pm:89 standalone/drakconnect:564
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Protokol for resten af verden \n"
-" ingen D-kanal (lejet linje)"
-
-#: network/netconnect.pm:103 standalone/harddrake2:328
-#: standalone/net_monitor:102 standalone/net_monitor:103
-#: standalone/net_monitor:108
-#, c-format
-msgid "unknown"
-msgstr "ukendt"
-
-#: network/netconnect.pm:120 network/thirdparty.pm:220
-#, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "Alcatel speedtouch USB-modem"
-
-#: network/netconnect.pm:121
-#, c-format
-msgid "Sagem USB modem"
-msgstr "Sagem USB-modem"
-
-#: network/netconnect.pm:122
-#, c-format
-msgid "Bewan modem"
-msgstr "Bewan PCI-modem"
-
-#: network/netconnect.pm:123
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr "ECI Hi-Focus-modem"
-
-#: network/netconnect.pm:127
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr "Dynamic Host Configuration Protocol (DHCP)"
-
-#: network/netconnect.pm:128
-#, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "Manuel TCP/IP-konfiguration"
-
-#: network/netconnect.pm:129
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr "Point to Point Tunneling Protocol (PPTP)"
-
-#: network/netconnect.pm:130
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr "PPP over Ethernet (PPPoE)"
-
-#: network/netconnect.pm:131
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr "PPP over ATM (PPPoA)"
-
-#: network/netconnect.pm:132
-#, c-format
-msgid "DSL over CAPI"
-msgstr "DSL over CAPI"
-
-#: network/netconnect.pm:136
-#, c-format
-msgid "Bridged Ethernet LLC"
-msgstr "Bridged Ethernet LLC"
-
-#: network/netconnect.pm:137
-#, c-format
-msgid "Bridged Ethernet VC"
-msgstr "Bridged Ethernet VC"
-
-#: network/netconnect.pm:138
-#, c-format
-msgid "Routed IP LLC"
-msgstr "Rutet IP LLC"
-
-#: network/netconnect.pm:139
-#, c-format
-msgid "Routed IP VC"
-msgstr "Rutet IP VC"
-
-#: network/netconnect.pm:140
-#, c-format
-msgid "PPPoA LLC"
-msgstr "PPPoA LLC"
-
-#: network/netconnect.pm:141
-#, c-format
-msgid "PPPoA VC"
-msgstr "PPPoA VC"
-
-#: network/netconnect.pm:145 standalone/drakconnect:498
-#, c-format
-msgid "Script-based"
-msgstr "Skript-baseret"
-
-#: network/netconnect.pm:146 standalone/drakconnect:498
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: network/netconnect.pm:147 standalone/drakconnect:498
-#, c-format
-msgid "Terminal-based"
-msgstr "Terminal-baseret"
-
-#: network/netconnect.pm:148 standalone/drakconnect:498
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: network/netconnect.pm:149 standalone/drakconnect:498
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: network/netconnect.pm:250 standalone/drakconnect:56
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Konfigurér netværk og internet"
-
-#: network/netconnect.pm:256
-#, c-format
-msgid "LAN connection"
-msgstr "Lokalnet-konfiguration"
-
-#: network/netconnect.pm:257 network/netconnect.pm:276 standalone/drakroam:182
-#: standalone/drakroam:220 standalone/drakroam:223
-#, c-format
-msgid "Wireless connection"
-msgstr "Trådløs forbindelse"
-
-#: network/netconnect.pm:258
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL opkobling"
-
-#: network/netconnect.pm:259
-#, c-format
-msgid "Cable connection"
-msgstr "Kabelforbindelse"
-
-#: network/netconnect.pm:260
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN-forbindelse"
-
-#: network/netconnect.pm:261
-#, c-format
-msgid "Modem connection"
-msgstr "Modem-forbindelse"
-
-#: network/netconnect.pm:262
-#, c-format
-msgid "DVB connection"
-msgstr "DVB-opkobling"
-
-#: network/netconnect.pm:272
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Vælg den opkobling, du ønsker at konfigurere"
-
-#: network/netconnect.pm:287 network/netconnect.pm:786
-#, c-format
-msgid "Connection Configuration"
-msgstr "Forbindelses-konfiguration"
-
-#: network/netconnect.pm:287 network/netconnect.pm:787
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Udfyld eller markér feltet nedenunder"
-
-#: network/netconnect.pm:290
-#, c-format
-msgid "Your personal phone number"
-msgstr "Dit personlige telefonnummer"
-
-#: network/netconnect.pm:291 network/netconnect.pm:790
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Navn på udbyder (f.eks. udbyder.net)"
-
-#: network/netconnect.pm:292 standalone/drakconnect:493
-#, c-format
-msgid "Provider phone number"
-msgstr "Udbyders telefonnummer"
-
-#: network/netconnect.pm:293
-#, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "Udbyder DNS 1 (valgfri)"
-
-#: network/netconnect.pm:294
-#, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "Udbyder DNS 2 (valgfri)"
-
-#: network/netconnect.pm:295 standalone/drakconnect:444
-#, c-format
-msgid "Dialing mode"
-msgstr "Opringningsmåde"
-
-#: network/netconnect.pm:296 standalone/drakconnect:449
-#: standalone/drakconnect:517
-#, c-format
-msgid "Connection speed"
-msgstr "Opkoblingshastighed"
-
-#: network/netconnect.pm:297 standalone/drakconnect:454
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Opkoblingens tidsudløb (i sekunder)"
-
-#: network/netconnect.pm:298 network/netconnect.pm:323
-#: network/netconnect.pm:793 standalone/drakconnect:491
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Konto-login (brugernavn)"
-
-#: network/netconnect.pm:299 network/netconnect.pm:324
-#: network/netconnect.pm:794 standalone/drakconnect:492
-#, c-format
-msgid "Account Password"
-msgstr "Adgangskode for konto"
-
-#: network/netconnect.pm:300 standalone/drakconnect:554
-#, c-format
-msgid "Card IRQ"
-msgstr "Kort IRQ"
-
-#: network/netconnect.pm:301 standalone/drakconnect:555
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Kort mem (DMA)"
-
-#: network/netconnect.pm:302 standalone/drakconnect:556
-#, c-format
-msgid "Card IO"
-msgstr "Kort IO"
-
-#: network/netconnect.pm:303 standalone/drakconnect:557
-#, c-format
-msgid "Card IO_0"
-msgstr "Kort IO_0"
-
-#: network/netconnect.pm:304
-#, c-format
-msgid "Card IO_1"
-msgstr "Kort IO_1"
-
-#: network/netconnect.pm:319
-#, c-format
-msgid "Cable: account options"
-msgstr "Kabel: indstillinger for konto"
-
-#: network/netconnect.pm:322
-#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr "Brug BPALogin (nødvendigt for Telstra)"
-
-#: network/netconnect.pm:348 network/netconnect.pm:670
-#: network/netconnect.pm:826 network/netconnect.pm:1170
-#, c-format
-msgid "Select the network interface to configure:"
-msgstr "Vælg netværksgrænsesnit, der skal konfigureres:"
-
-#: network/netconnect.pm:350 network/netconnect.pm:385
-#: network/netconnect.pm:671 network/netconnect.pm:828 network/shorewall.pm:70
-#: standalone/drakconnect:714
-#, c-format
-msgid "Net Device"
-msgstr "Net-enhed"
-
-#: network/netconnect.pm:351 network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr "Eksternt ISDN modem"
-
-#: network/netconnect.pm:384 standalone/harddrake2:215
-#, c-format
-msgid "Select a device!"
-msgstr "Vælg en enhed!"
-
-#: network/netconnect.pm:393 network/netconnect.pm:403
-#: network/netconnect.pm:413 network/netconnect.pm:446
-#: network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "ISDN konfiguration"
-
-#: network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Hvad slags kort har du?"
-
-#: network/netconnect.pm:404
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"Hvis du har et ISA kort burde værdiene i næste billede være rigtige.\n"
-"\n"
-"Hvis du har et PCMCIA kort skal du vide irq og io for kortet.\n"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "Fortsæt"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "Afbryd"
-
-#: network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Hvilket af de følgende er dit ISDN-kort?"
-
-#: network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-"En CAPI-driver findes til dette modem. Denne CAPI-driver kan tilbyde flere "
-"faciliteter end den frie driver (såsom sending af faxer). Hvilken driver "
-"ønsker du at bruge?"
-
-#: network/netconnect.pm:434 standalone/drakconnect:109 standalone/drakups:249
-#: standalone/harddrake2:133
-#, c-format
-msgid "Driver"
-msgstr "Drivprogram"
-
-#: network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Hvilken protokol ønsker du at bruge?"
-
-#: network/netconnect.pm:448 standalone/drakconnect:109
-#: standalone/drakconnect:300 standalone/drakconnect:562
-#: standalone/drakids:207 standalone/drakvpn:1128
-#, c-format
-msgid "Protocol"
-msgstr "Protokol"
-
-#: network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"Vælg din udbyder.\n"
-" Hvis de ikke er i listen, vælg Ikke listet"
-
-#: network/netconnect.pm:462 network/netconnect.pm:556
-#: network/netconnect.pm:707
-#, c-format
-msgid "Provider:"
-msgstr "Udbyder: "
-
-#: network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"Dit modem er ikke understøttet af systemet.\n"
-"Tag og kig på http://www.linmodems.org"
-
-#: network/netconnect.pm:490
-#, c-format
-msgid "Select the modem to configure:"
-msgstr "Vælg det modem, der skal konfigureres:"
-
-#: network/netconnect.pm:525
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Angiv hvilken seriel port dit modem er forbundet til."
-
-#: network/netconnect.pm:554
-#, c-format
-msgid "Select your provider:"
-msgstr "Vælg din udbyder"
-
-#: network/netconnect.pm:578
-#, c-format
-msgid "Dialup: account options"
-msgstr "Indstillinger for konto til opkald"
-
-#: network/netconnect.pm:581
-#, c-format
-msgid "Connection name"
-msgstr "Navn på forbindelsen"
-
-#: network/netconnect.pm:582
-#, c-format
-msgid "Phone number"
-msgstr "Telefonnummer"
-
-#: network/netconnect.pm:583
-#, c-format
-msgid "Login ID"
-msgstr "Brugernavn"
-
-#: network/netconnect.pm:598 network/netconnect.pm:631
-#, c-format
-msgid "Dialup: IP parameters"
-msgstr "IP-parametre for opkald"
-
-#: network/netconnect.pm:601
-#, c-format
-msgid "IP parameters"
-msgstr "IP-parametre"
-
-#: network/netconnect.pm:602 network/netconnect.pm:941
-#: printer/printerdrake.pm:460 standalone/drakconnect:109
-#: standalone/drakconnect:316 standalone/drakconnect:882
-#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:284
-#, c-format
-msgid "IP address"
-msgstr "IP-adresse"
-
-#: network/netconnect.pm:603
-#, c-format
-msgid "Subnet mask"
-msgstr "Undernetmaske"
-
-#: network/netconnect.pm:615
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr "Dialup: DNS-parametre"
-
-#: network/netconnect.pm:618
-#, c-format
-msgid "DNS"
-msgstr "DNS"
-
-#: network/netconnect.pm:619
-#, c-format
-msgid "Domain name"
-msgstr "Domænenavn"
-
-#: network/netconnect.pm:620 network/netconnect.pm:791
-#: standalone/drakconnect:992
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Første DNS-server (valgfri)"
-
-#: network/netconnect.pm:621 network/netconnect.pm:792
-#: standalone/drakconnect:993
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Anden DNS-server (valgfri)"
-
-#: network/netconnect.pm:622
-#, c-format
-msgid "Set hostname from IP"
-msgstr "Sæt værtsnavn ud fra IPadresse"
-
-#: network/netconnect.pm:634 standalone/drakconnect:327
-#, c-format
-msgid "Gateway"
-msgstr "Gateway"
-
-#: network/netconnect.pm:635 standalone/drakroam:124
-#, c-format
-msgid "Gateway IP address"
-msgstr "IP-adresse på gateway"
-
-#: network/netconnect.pm:670
-#, c-format
-msgid "ADSL configuration"
-msgstr "ADSL-konfiguration"
-
-#: network/netconnect.pm:705
-#, c-format
-msgid "Please choose your ADSL provider"
-msgstr "Vælg din ADSL-udbyder"
-
-#: network/netconnect.pm:735
-#, c-format
-msgid ""
-"Please choose your DSL connection type.\n"
-"If you do not know it, keep the preselected type."
-msgstr ""
-"Venligst vælg din DSL-opkoblingstype.\n"
-"Hvis du ikke ved det, så behold den forhåndsvalgte type."
-
-#: network/netconnect.pm:738
-#, c-format
-msgid "ADSL connection type:"
-msgstr "ADSL-opkoblingstype"
-
-#: network/netconnect.pm:796
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr "Virtual Path ID (VPI):"
-
-#: network/netconnect.pm:797
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr "Virtual Circuit ID (VCI):"
-
-#: network/netconnect.pm:800
-#, c-format
-msgid "Encapsulation:"
-msgstr "Indpakning:"
-
-#: network/netconnect.pm:830
-#, c-format
-msgid "Manually load a driver"
-msgstr "Indlæs en driver manuelt"
-
-#: network/netconnect.pm:831
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr "Brug en Windows-driver (med ndiswrapper)"
-
-#: network/netconnect.pm:896
-#, c-format
-msgid "Zeroconf hostname resolution"
-msgstr "Fremfinding af Zeroconf-værtsnavn"
-
-#: network/netconnect.pm:897 network/netconnect.pm:928
-#, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "Konfigurerer netværksenheden %s (driver %s)"
-
-#: network/netconnect.pm:898
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use"
-msgstr ""
-"De følgende protokoller kan bruges til at konfigurere en LAN-forbindelse. "
-"Vælg venligst den forbindelse du gerne vil bruge"
-
-#: network/netconnect.pm:929
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Indtast IP konfigurationen for denne maskine. Hvert felt skal udfyldes\n"
-"med en IP adresse i `dotted-decimal' notation (for eksempel 1.2.3.4)."
-
-#: network/netconnect.pm:936 standalone/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Tildel værtsnavn fra DHCP-adresse"
-
-#: network/netconnect.pm:937 standalone/drakconnect:375
-#, c-format
-msgid "DHCP host name"
-msgstr "DHCP-værtsnavn"
-
-#: network/netconnect.pm:942 standalone/drakconnect:321
-#: standalone/drakconnect:883 standalone/drakgw:181
-#, c-format
-msgid "Netmask"
-msgstr "Netmaske"
-
-#: network/netconnect.pm:944 standalone/drakconnect:437
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Følg id for netværkskort (nyttigt for bærbare)"
-
-#: network/netconnect.pm:945 standalone/drakconnect:438
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Hotplugging af netværk"
-
-#: network/netconnect.pm:947 standalone/drakconnect:432
-#, c-format
-msgid "Start at boot"
-msgstr "Start ved opstart"
-
-#: network/netconnect.pm:949 standalone/drakconnect:460
-#, c-format
-msgid "Metric"
-msgstr "Metrisk"
-
-#: network/netconnect.pm:950
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr "Aktivér IPv6 til IPv4-tunnel"
-
-#: network/netconnect.pm:952 standalone/drakconnect:369
-#: standalone/drakconnect:886
-#, c-format
-msgid "DHCP client"
-msgstr "DHCP-klient"
-
-#: network/netconnect.pm:954 standalone/drakconnect:379
-#, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "DHCP-tidsudløb (i sekunder)"
-
-#: network/netconnect.pm:955 standalone/drakconnect:382
-#, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "Få DNS-servere fra DHCP"
-
-#: network/netconnect.pm:956 standalone/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr "Få YP-servere fra DHCP"
-
-#: network/netconnect.pm:957 standalone/drakconnect:384
-#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr "Få NTPD-servere fra DHCP"
-
-#: network/netconnect.pm:965 printer/printerdrake.pm:1876
-#: standalone/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP adresse bør have formatet 1.2.3.4"
-
-#: network/netconnect.pm:969 standalone/drakconnect:680
-#, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "Netmaske bør have formatet 255.255.224.0"
-
-#: network/netconnect.pm:973
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr "Advarsel: IP-adresse %s er normalt reserveret!"
-
-#: network/netconnect.pm:978 standalone/drakTermServ:1927
-#: standalone/drakTermServ:1928 standalone/drakTermServ:1929
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s er allerede i brug\n"
-
-#: network/netconnect.pm:1018
-#, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "Vælg en ndiswrapper driver"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr "Brug ndiswrapper-driveren %s"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Install a new driver"
-msgstr "Installér en ny driver"
-
-#: network/netconnect.pm:1032
-#, c-format
-msgid "Select a device:"
-msgstr "Vælg en enhed:"
-
-#: network/netconnect.pm:1061
-#, c-format
-msgid "Please enter the wireless parameters for this card:"
-msgstr "Indtast de trådløse parametre for dette kort:"
-
-#: network/netconnect.pm:1064 standalone/drakconnect:404
-#: standalone/drakroam:52
-#, c-format
-msgid "Operating Mode"
-msgstr "Udførelsestilstand"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Ad-hoc"
-msgstr "Ad-hoc"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Managed"
-msgstr "Administreret (managed)"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Master"
-msgstr "Master"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Repeater"
-msgstr "Forlænger (repeater)"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Secondary"
-msgstr "Sekundær"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Auto"
-msgstr "Auto"
-
-#: network/netconnect.pm:1068 standalone/drakconnect:405
-#: standalone/drakroam:115
-#, c-format
-msgid "Network name (ESSID)"
-msgstr "Netværksnavn (ESSID)"
-
-#: network/netconnect.pm:1069 standalone/drakroam:116
-#, c-format
-msgid "Encryption mode"
-msgstr "Krypteringstilstand"
-
-#: network/netconnect.pm:1074
-#, c-format
-msgid "Allow access point roaming"
-msgstr "Tillad viderestilling af adgangspunkt"
-
-#: network/netconnect.pm:1076 standalone/drakconnect:406
-#, c-format
-msgid "Network ID"
-msgstr "Netværks-ID"
-
-#: network/netconnect.pm:1077 standalone/drakconnect:407
-#, c-format
-msgid "Operating frequency"
-msgstr "Operationsfrekvens"
-
-#: network/netconnect.pm:1078 standalone/drakconnect:408
-#, c-format
-msgid "Sensitivity threshold"
-msgstr "Følsomhedstærskel"
-
-#: network/netconnect.pm:1079 standalone/drakconnect:409
-#, c-format
-msgid "Bitrate (in b/s)"
-msgstr "Bitrate (i bit/s)"
-
-#: network/netconnect.pm:1080 standalone/drakconnect:420
-#, c-format
-msgid "RTS/CTS"
-msgstr "RTS/CTS"
-
-#: network/netconnect.pm:1081
-#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
-"RTS/CTS tilføjer et håndtryk før hver pakketransmission for at være sikker "
-"på at\n"
-"kanalen er klar. Dette tilføjer overhead, men øger ydelsen i tilfælde med "
-"gemte\n"
-"noder eller stort antal med aktive noder. Denne parameter sætter størrelsen\n"
-"på den mindste pakke som noden sender RTS for; en værdi lig med den "
-"maksimale\n"
-"pakkestørrelse vil deaktivere denne fremgangsmåde. Du kan også sætte denne "
-"parameter til auto, fixed\n"
-"eller off."
-
-#: network/netconnect.pm:1088 standalone/drakconnect:421
-#, c-format
-msgid "Fragmentation"
-msgstr "Fragmentation"
-
-#: network/netconnect.pm:1089 standalone/drakconnect:422
-#, c-format
-msgid "iwconfig command extra arguments"
-msgstr "ekstra argumenter til iwconfig kommando"
-
-#: network/netconnect.pm:1090
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-"Her kan man konfigurere nogle ekstra trådløse parametre såsom:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick er allerede sat "
-"til værtsnavnet).\n"
-"\n"
-"Se iwconfig(8) man-siden for yderligere information."
-
-#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1097 standalone/drakconnect:423
-#, c-format
-msgid "iwspy command extra arguments"
-msgstr "ekstra argumenter til iwspy-kommando"
-
-#: network/netconnect.pm:1098
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-"iwspy bliver brugt til at sætte en liste med adresser i en trådløs "
-"netværksgrænseflade\n"
-"og for at læse tilbage kvalitet på en link for hver af dem.\n"
-"\n"
-"Denne information er den samme som den som er tilgængelig i /proc/net/"
-"wireless :\n"
-"kvalitet på link, signalstyrke og støjniveau.\n"
-"\n"
-"Se iwpspy(8) man-side for yderligere information."
-
-#: network/netconnect.pm:1107 standalone/drakconnect:424
-#, c-format
-msgid "iwpriv command extra arguments"
-msgstr "ekstra argumenter til iwpriv-kommando"
-
-#: network/netconnect.pm:1108
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-"iwpriv gør det muligt at opsætte valgfrie (private) parametre for en trådløs "
-"netværksgrænseflade.\n"
-"\n"
-"iwpriv hånderer parametre og opsætning specifikt for hver driver (i "
-"modsætning til\n"
-"iwconfig som håndterer generelle).\n"
-"\n"
-"I teorien så bør dokumentationen for hver enhedsdriver indikere hvordan man "
-"bruger\n"
-"de grænsefladespecifikke kommandoer samt deres effekt.\n"
-"\n"
-"Se iwpriv(8) man-side for yderligere information."
-
-#: network/netconnect.pm:1123
-#, c-format
-msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
-msgstr ""
-"Frek bør have endelsen k, M or G (for eksempel, \"2.46G\" for 2.46 GHz "
-"frekvens), eller tilføj nok '0'."
-
-#: network/netconnect.pm:1127
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-"Hastighed bør have endelsen k, M or G (for eksempel, \"11M\" for 11M), eller "
-"tilføj nok '0'."
-
-#: network/netconnect.pm:1170
-#, c-format
-msgid "DVB configuration"
-msgstr "DVB-konfiguration"
-
-#: network/netconnect.pm:1171
-#, c-format
-msgid "DVB Adapter"
-msgstr "DVB-kontroller"
-
-#: network/netconnect.pm:1188
-#, c-format
-msgid "DVB adapter settings"
-msgstr "DVD-adapteropsætning"
-
-#: network/netconnect.pm:1191
-#, c-format
-msgid "Adapter card"
-msgstr "Kontrollerkort"
-
-#: network/netconnect.pm:1192
-#, c-format
-msgid "Net demux"
-msgstr "Net demux"
-
-#: network/netconnect.pm:1193
-#, c-format
-msgid "PID"
-msgstr "PID"
-
-#: network/netconnect.pm:1221
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Indtast domænenavn, værtsnavn og IP adressen for evt. ekstra navne-servere.\n"
-"Dit værtsnavn skal være et fuldt kvalificeret værtsnavn inklusive domæne,\n"
-"f.eks. minpc.mitfirma.dk. Hvis du ikke har nogen ekstra navne-servere,\n"
-"så lad navne-server-felterne være blanke."
-
-#: network/netconnect.pm:1226
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr "Sidst, men ikke mindst, indtast din DNS-servers IP-adresser."
-
-#: network/netconnect.pm:1228 standalone/drakconnect:991
-#, c-format
-msgid "Host name (optional)"
-msgstr "Værtsnavn (kan udelades)"
-
-#: network/netconnect.pm:1228 standalone/drakhosts:197
-#, c-format
-msgid "Host name"
-msgstr "Værtsnavn"
-
-#: network/netconnect.pm:1230
-#, c-format
-msgid "DNS server 1"
-msgstr "DNS-server 1"
-
-#: network/netconnect.pm:1231
-#, c-format
-msgid "DNS server 2"
-msgstr "DNS-server 2"
-
-#: network/netconnect.pm:1232
-#, c-format
-msgid "DNS server 3"
-msgstr "DNS-server 3"
-
-#: network/netconnect.pm:1233
-#, c-format
-msgid "Search domain"
-msgstr "domæne der søges i"
-
-#: network/netconnect.pm:1234
-#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr "Som standard vil søge-domænet blive sat ud fra det fuldt angivne værtsnavn"
-
-#: network/netconnect.pm:1235
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Gateway (fx %s)"
-
-#: network/netconnect.pm:1237
-#, c-format
-msgid "Gateway device"
-msgstr "Gateway enhed"
-
-#: network/netconnect.pm:1246
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "Adresse på DNS-server skal have formatet 1.2.3.4"
-
-#: network/netconnect.pm:1251 standalone/drakconnect:685
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Gateway-adresse skal have formatet 1.2.3.4"
-
-#: network/netconnect.pm:1264
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-"Om ønsket kan du indtaste et Zeroconf-værtsnavn.\n"
-"Dette er navnet som din maskine vil bruge til at annoncere alle sine\n"
-"delte ressourcer som ikke er styret af netværket.\n"
-"Dette er ikke nødvendigt på de fleste netværk."
-
-#: network/netconnect.pm:1268
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Zeroconf-værtsnavn"
-
-#: network/netconnect.pm:1271
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "Zeroconf værtsnavn må ikke indeholde et ."
-
-#: network/netconnect.pm:1281
-#, c-format
-msgid "Do you want to allow users to start the connection?"
-msgstr "Ønsker du at tillade brugere at starte din forbindelse?"
-
-#: network/netconnect.pm:1294
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Ønsker du at starte din forbindelse ved opstart?"
-
-#: network/netconnect.pm:1310
-#, c-format
-msgid "Automatically at boot"
-msgstr "Automatisk ved opstart"
-
-#: network/netconnect.pm:1312
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr "Ved brug af Net Applet i statusfeltet"
-
-#: network/netconnect.pm:1314
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr "Manuelt (grænsesnittet vil stadig blive aktiveret ved opstart)"
-
-#: network/netconnect.pm:1323
-#, c-format
-msgid "How do you want to dial this connection?"
-msgstr "Hvordan ønsker du at kalde denne forbindelse op?"
-
-#: network/netconnect.pm:1336
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Ønsker du at forsøge at skabe forbindelse til Internettet nu?"
-
-#: network/netconnect.pm:1344 standalone/drakconnect:1023
-#, c-format
-msgid "Testing your connection..."
-msgstr "Tester din forbindelse..."
-
-#: network/netconnect.pm:1369
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Systemet er nu forbundet til Internettet."
-
-#: network/netconnect.pm:1370
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Af sikkerhedsgrunde vil det blive afbrudt nu."
-
-#: network/netconnect.pm:1371
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Det lader ikke til at dit system har forbindelse til Internettet.\n"
-"Prøv at omkonfigurere din forbindelse."
-
-#: network/netconnect.pm:1386
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-"Tillykke, netværks- og internetkonfigurationen er færdig.\n"
-"\n"
-
-#: network/netconnect.pm:1389
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Derefter anbefaler vi at du genstarter dit X-miljø for\n"
-"at undgå problemer med det ændrede værtsnavn"
-
-#: network/netconnect.pm:1390
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-"Problemer indtraf under konfigurationen.\n"
-"Afprøv din forbindelse med net_monitor eller mcc. Hvis din forbindelse ikke "
-"virker, kan du prøve at genstarte konfigurationen."
-
-#: network/netconnect.pm:1402
-#, c-format
-msgid "(detected on port %s)"
-msgstr "(detekteret på port %s)"
-
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected %s)"
-msgstr "(detekterede %s)"
-
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected)"
-msgstr "(detekteret)"
-
-#: network/netconnect.pm:1405
-#, c-format
-msgid "Network Configuration"
-msgstr "Konfigurér netværk"
-
-#: network/netconnect.pm:1406
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Da du er i gang med en netværksinstallation er dit netværk allerede "
-"konfigureret.\n"
-"Klik OK for at beholde din konfiguration, eller annullér for at "
-"omkonfigurere din Internet- og netværksforbindelse.\n"
-
-#: network/netconnect.pm:1409
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr "Netværket skal være genstartet. Ønsker du at genstarte det?"
-
-#: network/netconnect.pm:1410
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Et problem opstod ved genstart af netværket: \n"
-"\n"
-"%s"
-
-#: network/netconnect.pm:1411
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-"Vi skal nu konfigurere opkoblingen '%s'.\n"
-"\n"
-"\n"
-"Tryk '%s' for at fortsætte."
-
-#: network/netconnect.pm:1412
-#, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr "Konfiguration er færdig, ønsker du at effektuere indstillinger?"
-
-#: network/netconnect.pm:1413
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Du har konfigureret flere måder at koble dig mod internet på.\n"
-"Venligst vælg den du ønsker at bruger.\n"
-"\n"
-
-#: network/netconnect.pm:1414
-#, c-format
-msgid "Internet connection"
-msgstr "Internet opkobling"
-
-#: network/netconnect.pm:1428
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-"En uventet fejl opstod:\n"
-"%s"
-
-#: network/network.pm:411
-#, c-format
-msgid "Proxies configuration"
-msgstr "Konfiguration af mellemvært (proxy)"
-
-#: network/network.pm:412
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-"Her kan du opsætte dinr proxy-konfiguration (fx: http://"
-"min_cache_server:8080)"
-
-#: network/network.pm:413
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP-proxy"
-
-#: network/network.pm:414
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr "Brug HTTP proxy for HTTPS-forbindelser"
-
-#: network/network.pm:415
-#, c-format
-msgid "HTTPS proxy"
-msgstr "HTTPS-proxy"
-
-#: network/network.pm:416
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP-proxy"
-
-#: network/network.pm:420
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Proxy skal være http://..."
-
-#: network/network.pm:421
-#, c-format
-msgid "Proxy should be https?://..."
-msgstr "Proxy bør være https?://..."
-
-#: network/network.pm:422
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "Url burde begynde med 'ftp:' eller 'http:'"
-
-#: network/shorewall.pm:55
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-"Indtast venligst navnet på grænsefladen som er koblet på internettet.\n"
-"\n"
-"Eksempler:\n"
-"\t\tppp+ for modem- eller DSL-opkoblinger, \n"
-"\t\teth0 eller eth1 for kabelopkobling eller ADSL-opkobling via "
-"lokalnetværk, \n"
-"\t\tippp+ for isdn-opkobling.\n"
-
-#: network/thirdparty.pm:232
-#, c-format
-msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
-msgstr "Kopiér alcatel mikrokoden som mgmt.o i /usr/share/speedtouch"
-
-#: network/thirdparty.pm:241
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-"ECI Hi-Focus-modemmet kan ikke understøttes pga binær driver-"
-"distributionsproblem.\n"
-"\n"
-"Du kan finde en driver på http://eciadsl.flashtux.org/"
-
-#: network/thirdparty.pm:321
-#, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "Kunne ikke installere pakkerne (%s)!"
-
-#: network/thirdparty.pm:329
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr "Nogen pakker (%s) behøves, men er ikke tilgængelige."
-
-#: network/thirdparty.pm:330
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-"Disse pakker kan findes på Mandriva Club eller i Mandriva's kommercielle "
-"produkter."
-
-#: network/thirdparty.pm:332
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-"Filerne som behøves kan også installeres fra denne internetadresse:\n"
-"%s"
-
-#: network/thirdparty.pm:372
-#, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "Kunne ikke finde \"%s\" på dit Windows-system!"
-
-#: network/thirdparty.pm:374
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr "Intet Windows-system er blevet fundet!"
-
-#: network/thirdparty.pm:384
-#, c-format
-msgid "Insert floppy"
-msgstr "Indsæt diskette"
-
-#: network/thirdparty.pm:385
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"Indsæt en FAT-formateret diskette i diskette-drev %s med %s i rod-kataloget "
-"og tryk %s"
-
-#: network/thirdparty.pm:395
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Fejl ved adgang til diskette, kan ikke montere enhed %s"
-
-#: network/thirdparty.pm:405
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-"Du har brug for Alcatel-mikrokoden.\n"
-"Du kan komme med den nu på en diskette eller på en Windows-partition,\n"
-"eller overspringe dette og gøre det senere."
-
-#: network/thirdparty.pm:409 network/thirdparty.pm:411
-#, c-format
-msgid "Use a floppy"
-msgstr "Brug en diskette"
-
-#: network/thirdparty.pm:409
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Brug min Windows-partition"
-
-#: network/thirdparty.pm:419
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "Kopiering af firmware mislykkeDES, filen %s ikke fundet"
-
-#: network/thirdparty.pm:424 standalone/drakautoinst:250
-#: standalone/drakvpn:888 standalone/scannerdrake:422
-#, c-format
-msgid "Congratulations!"
-msgstr "Tillykke!"
-
-#: network/thirdparty.pm:424
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "Kopiering af firmware færdig"
-
-#: network/thirdparty.pm:493
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr "Kigger efter programmel og drivere som behøves..."
-
-#: network/thirdparty.pm:498
-#, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "Vent venligst, kører kammandoer for konfigurering af enheder..."
-
-#: network/wireless.pm:8
-#, c-format
-msgid "Open WEP"
-msgstr "Åben WEP"
-
-#: network/wireless.pm:9
-#, c-format
-msgid "Restricted WEP"
-msgstr "Begrænset WEP"
-
-#: network/wireless.pm:10
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr "WPA Forud-delt nøgle"
-
-#: partition_table.pm:391
+#: partition_table.pm:390
#, c-format
msgid "mount failed: "
msgstr "montering mislykkedes: "
-#: partition_table.pm:496
+#: partition_table.pm:500
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Udvidet partition ikke understøttet på denne platform"
-#: partition_table.pm:514
+#: partition_table.pm:518
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
@@ -11703,22 +5083,27 @@ msgstr ""
"Den eneste løsning er at flytte dine primære partitioner, således at\n"
"\"hullet\" bliver placeret ved siden af de udvidede partitioner."
-#: partition_table.pm:605
+#: partition_table.pm:597
+#, c-format
+msgid "Error reading file %s"
+msgstr "Fejl ved læsning af filen %s"
+
+#: partition_table.pm:604
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Genskabning fra fil %s mislykkedes: %s"
-#: partition_table.pm:607
+#: partition_table.pm:606
#, c-format
msgid "Bad backup file"
msgstr "Fejl i sikkerhedskopien"
-#: partition_table.pm:627
+#: partition_table.pm:626
#, c-format
msgid "Error writing to file %s"
msgstr "Fejl ved skrivning til fil %s"
-#: partition_table/raw.pm:253
+#: partition_table/raw.pm:264
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
@@ -11730,3508 +5115,52 @@ msgstr ""
"En test for at tjekke integriteten af data er mislykkedes. \n"
"Dette betyder at alt på disken vil ende som tilfældige beskadigede data."
-#: pkgs.pm:21
-#, c-format
-msgid "must have"
-msgstr "skal have"
-
-#: pkgs.pm:22
-#, c-format
-msgid "important"
-msgstr "vigtigt"
-
-#: pkgs.pm:23
-#, c-format
-msgid "very nice"
-msgstr "meget rart"
-
-#: pkgs.pm:24
-#, c-format
-msgid "nice"
-msgstr "rart"
-
-#: pkgs.pm:25
-#, c-format
-msgid "maybe"
-msgstr "måske"
-
-#: pkgs.pm:474
-#, c-format
-msgid "Downloading file %s..."
-msgstr "Henter filen %s..."
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on %s)"
-msgstr "(på %s)"
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on this machine)"
-msgstr "(på denne maskine)"
-
-#: printer/cups.pm:117 standalone/printerdrake:200
-#, c-format
-msgid "Configured on other machines"
-msgstr "Konfigureret på andre maskiner"
-
-#: printer/cups.pm:119
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "På CUPS-server '%s'"
-
-#: printer/cups.pm:119 printer/printerdrake.pm:4909
-#: printer/printerdrake.pm:4919 printer/printerdrake.pm:5078
-#: printer/printerdrake.pm:5089 printer/printerdrake.pm:5303
-#, c-format
-msgid " (Default)"
-msgstr " (Standard)"
-
-#: printer/data.pm:67
-#, c-format
-msgid "PDQ - Print, Do not Queue"
-msgstr "PDQ - Print, Do not Queue"
-
-#: printer/data.pm:68
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: printer/data.pm:80
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Dæmon"
-
-#: printer/data.pm:81
-#, c-format
-msgid "LPD"
-msgstr "LPD"
-
-#: printer/data.pm:102
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: printer/data.pm:103
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
-
-#: printer/data.pm:128
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: printer/data.pm:158
-#, c-format
-msgid "CUPS - Common Unix Printing System (remote server)"
-msgstr "CUPS - Common Unix Printing System (fjernserver)"
-
-#: printer/data.pm:159
-#, c-format
-msgid "Remote CUPS"
-msgstr "Ekstern CUPS"
-
-#: printer/detect.pm:168 printer/detect.pm:263 printer/detect.pm:498
-#: printer/detect.pm:571 printer/main.pm:330 printer/main.pm:692
-#: printer/main.pm:1815 printer/printerdrake.pm:960
-#: printer/printerdrake.pm:1120 printer/printerdrake.pm:2448
-#: printer/printerdrake.pm:4004
-#, c-format
-msgid "Unknown model"
-msgstr "Ukendt model"
-
-#: printer/main.pm:24
-#, c-format
-msgid "Local printer"
-msgstr "Lokal printer"
-
-#: printer/main.pm:25
-#, c-format
-msgid "Remote printer"
-msgstr "Ekstern printer"
-
-#: printer/main.pm:26
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Printer på ekstern CUPS server"
-
-#: printer/main.pm:27 printer/printerdrake.pm:1360
-#: printer/printerdrake.pm:1899
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Printer på ekstern lpd server"
-
-#: printer/main.pm:28
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Netværksprinter (TCP/sokkel)"
-
-#: printer/main.pm:29
-#, c-format
-msgid "Printer on SMB/Windows server"
-msgstr "Printer på SMB/Windows-server"
-
-#: printer/main.pm:30
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Printer på en NetWare server"
-
-#: printer/main.pm:31 printer/printerdrake.pm:1903
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Indtast en printerenheds-URI"
-
-#: printer/main.pm:32
-#, c-format
-msgid "Pipe job into a command"
-msgstr "kanalisér opgave ind i kommando"
-
-#: printer/main.pm:43
-#, c-format
-msgid "recommended"
-msgstr "anbefalet"
-
-#: printer/main.pm:355 standalone/printerdrake:199
-#, c-format
-msgid "Configured on this machine"
-msgstr "Konfigureret på denne maskine"
-
-#: printer/main.pm:361 printer/printerdrake.pm:1445
-#, c-format
-msgid " on parallel port #%s"
-msgstr " på parallelport #%s"
-
-#: printer/main.pm:364 printer/printerdrake.pm:1448
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", USB printer #%s"
-
-#: printer/main.pm:366
-#, c-format
-msgid ", USB printer"
-msgstr ", USB printer"
-
-#: printer/main.pm:370
-#, c-format
-msgid ", HP printer on a parallel port"
-msgstr ", HP-printer på en parallel port"
-
-#: printer/main.pm:372
-#, c-format
-msgid ", HP printer on USB"
-msgstr ", HP printer på USB"
-
-#: printer/main.pm:374
-#, c-format
-msgid ", HP printer on HP JetDirect"
-msgstr ", HP-printer på HP JetDirect"
-
-#: printer/main.pm:376
-#, c-format
-msgid ", HP printer"
-msgstr ", HP-printer"
-
-#: printer/main.pm:382
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", multi-funktions-enhed på parallel port #%s"
-
-#: printer/main.pm:385
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", multi-funktions-enhed på en parallel port"
-
-#: printer/main.pm:387
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", multi-funktions-enhed på USB"
-
-#: printer/main.pm:389
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", multi-funktions-enhed på HP JetDirect"
-
-#: printer/main.pm:391
-#, c-format
-msgid ", multi-function device"
-msgstr ", multi-funktions-enhed"
-
-#: printer/main.pm:395
-#, c-format
-msgid ", printing to %s"
-msgstr ", skriver til %s"
-
-#: printer/main.pm:398
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr " på LPD-server \"%s\", printer \"%s\""
-
-#: printer/main.pm:401
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP vært \"%s\", port %s"
-
-#: printer/main.pm:406
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr " på Windows-server \"%s\", deling \"%s\""
-
-#: printer/main.pm:411
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " på Novell-server \"%s\", printer \"%s\""
-
-#: printer/main.pm:414
-#, c-format
-msgid ", using command %s"
-msgstr ", med kommando %s"
-
-#: printer/main.pm:429
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Parallelport #%s"
-
-#: printer/main.pm:432 printer/printerdrake.pm:1466
-#: printer/printerdrake.pm:1493 printer/printerdrake.pm:1508
-#, c-format
-msgid "USB printer #%s"
-msgstr "USB-printer \\/#%s"
-
-#: printer/main.pm:434
-#, c-format
-msgid "USB printer"
-msgstr "USB printer"
-
-#: printer/main.pm:438
-#, c-format
-msgid "HP printer on a parallel port"
-msgstr "HP-printer på en parallel port"
-
-#: printer/main.pm:440
-#, c-format
-msgid "HP printer on USB"
-msgstr "HP-printer på USB"
-
-#: printer/main.pm:442
-#, c-format
-msgid "HP printer on HP JetDirect"
-msgstr "HP-printer på HP JetDirect"
-
-#: printer/main.pm:444
-#, c-format
-msgid "HP printer"
-msgstr "HP-printer"
-
-#: printer/main.pm:450
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Multi-funktions-enhed på parallel port #%s"
-
-#: printer/main.pm:453
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Multi-funktions-enhed på en parallel port"
-
-#: printer/main.pm:455
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "Multi-funktions-enhed på USB"
-
-#: printer/main.pm:457
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Multi-funktions-enhed på HP JetDirect"
-
-#: printer/main.pm:459
-#, c-format
-msgid "Multi-function device"
-msgstr "Multi-funktions-enhed"
-
-#: printer/main.pm:463
-#, c-format
-msgid "Prints into %s"
-msgstr "Skriver på %s"
-
-#: printer/main.pm:466
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "LPD-server \"%s\", printer \"%s\""
-
-#: printer/main.pm:469
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "TCP/IP vært \"%s\", port %s"
-
-#: printer/main.pm:474
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "SMB/Windows-server \"%s\", fildeling \"%s\""
-
-#: printer/main.pm:479
-#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Novell-server \"%s\", printer \"%s\""
-
-#: printer/main.pm:482
-#, c-format
-msgid "Uses command %s"
-msgstr "Anvender kommando %s"
-
-#: printer/main.pm:484
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
-
-#: printer/main.pm:689 printer/printerdrake.pm:1047
-#: printer/printerdrake.pm:3142
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Rå printer (ingen driver)"
-
-#: printer/main.pm:1309 printer/printerdrake.pm:211
-#: printer/printerdrake.pm:223
-#, c-format
-msgid "Local network(s)"
-msgstr "Lokalnetværk"
-
-#: printer/main.pm:1311 printer/printerdrake.pm:227
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Grænseflade '%s'"
-
-#: printer/main.pm:1313
-#, c-format
-msgid "Network %s"
-msgstr "Netværk %s"
-
-#: printer/main.pm:1315
-#, c-format
-msgid "Host %s"
-msgstr "Vært %s"
-
-#: printer/main.pm:1344
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (port %s)"
-
-#: printer/main.pm:1945 printer/main.pm:2100
-#, c-format
-msgid "user-supplied"
-msgstr "Bruger angivet"
-
-#: printer/main.pm:1949 printer/main.pm:2104
-#, c-format
-msgid "NEW"
-msgstr "NY"
-
-#: printer/printerdrake.pm:24
-#, c-format
-msgid ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"decompressing the self-extracting '.exe' file with the 'unzip' utility and "
-"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
-"printer' directory. There it will be found by the automatic uploader script "
-"and uploaded whenever the printer is connected and turned on.\n"
-msgstr ""
-"HP LaserJet 1000 skal have lagt sin firmware op efter at være blevet tændt. "
-"Hjemhent pakken med Windows-drivere fra HP's websted (firmwaren fra "
-"printerens CD virker ikke) og hiv firmware-filen ud af den ved at "
-"dekomprimere den selvudpakkende .exe-fil med 'unzip'-programmet og lede "
-"efter filen 'sihp1000.img'. Kopiér denne fil til kataloget '/etc/printer'. "
-"Dér vil den blive fundet af det automatiske oplæggerskript og lagt op hver "
-"gang printeren er sluttet til og tændt.\n"
-
-#: printer/printerdrake.pm:67
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "Konfiguration af CUPS-printere"
-
-#: printer/printerdrake.pm:68
-#, c-format
-msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessible by remote machines and by which remote machines."
-msgstr ""
-"Her kan du vælge om printerne sluttet til denne maskine skal være "
-"tilgængelige fra eksterne maskiner, og fra hvilke eksterne maskiner."
-
-#: printer/printerdrake.pm:69
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-"Du kan også bestemme her om dine printere på eksterne maskiner bør være "
-"automatisk tilgængelige på denne maskine."
-
-#: printer/printerdrake.pm:72 printer/printerdrake.pm:506
-#: printer/printerdrake.pm:4542
-#, c-format
-msgid "Remote CUPS server and no local CUPS daemon"
-msgstr "Ekstern CUPS-server og ingen lokal CUPS-dæmon"
-
-#: printer/printerdrake.pm:75
-#, c-format
-msgid "On"
-msgstr "På"
-
-#: printer/printerdrake.pm:77 printer/printerdrake.pm:498
-#: printer/printerdrake.pm:525
-#, c-format
-msgid "Off"
-msgstr "Fra"
-
-#: printer/printerdrake.pm:78 printer/printerdrake.pm:507
-#, c-format
-msgid ""
-"In this mode the local CUPS daemon will be stopped and all printing requests "
-"go directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-"I denne tilstand vil den lokale CUPS-dæmon være stoppet, og alle "
-"udskriftsanmodninger går direkte til serveren angivet nedenfor. Bemærk at "
-"det så ikke er muligt at definere lokale printkøer, og at hvis den angivne "
-"server er nede, så kan der slet ikke udskrives fra denne maskine."
-
-#: printer/printerdrake.pm:84
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Printerne på denne maskine er tilgængelige for andre maskiner"
-
-#: printer/printerdrake.pm:89
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Find tilgængelige printere på eksterne maskiner automatisk"
-
-#: printer/printerdrake.pm:94
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Printerdeling på vært eller netværk:"
-
-#: printer/printerdrake.pm:96
-#, c-format
-msgid "Custom configuration"
-msgstr "Tilrettet konfiguration"
-
-#: printer/printerdrake.pm:101 standalone/scannerdrake:610
-#: standalone/scannerdrake:627
-#, c-format
-msgid "No remote machines"
-msgstr "Ingen ekstern maskine"
-
-#: printer/printerdrake.pm:112
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Yderligere CUPS-servere: "
-
-#: printer/printerdrake.pm:119
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"For at få adgang til eksterne CUPS-servere i dit lokale netværk behøver du "
-"bare at aktivere \"Find automatisk tilgængelige printere på eksterne maskiner"
-"\"-valget: CUPS-serverene informerer din maskine automatisk om printerne. "
-"Alle printerne som for øjeblikket er kendt af din maskine er listet i "
-"\"Fjern-printere\" sektionen i hovedvinduet til Printerdrake. Hvis din CUPS-"
-"server ikke er i dit lokale netværk, må du indtaste CUPS-servernes IP-"
-"adresser og evt. portnummeret for at få printer-information fra serverne."
-
-#: printer/printerdrake.pm:127
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Printertilstand for japansk tekst"
-
-#: printer/printerdrake.pm:128
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in Japanese language. Only "
-"use this function if you really want to print text in Japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print Japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Aktivering af dette vil muliggøre udskrift at rene tekstfiler på japansk. "
-"Brug kun denne funktion hvis du virkelig ønsker at udskrive tekst på "
-"japansk, hvis det er aktiveret kan du ikke længere udskrive bogstaver med "
-"accenter i latinske skrifttyper, og du vil ikke kunne tilpasse margenerne, "
-"tegnstørrelse mv. Denne indstilling vedrører kun printere defineret på denne "
-"maskine. Hvis du ønsker at udskrive japansk tekst på en printer der er sat "
-"op på en ekstern maskine, skal du aktivere denne funktion på denne eksterne "
-"maskine."
-
-#: printer/printerdrake.pm:135
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Automatisk rettelse af CUPS-konfiguration"
-
-#: printer/printerdrake.pm:137
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Når denne valgmulighed er valgt, vil CUPS hver gang den starter forsikre sig "
-"om at\n"
-"\n"
-"- hvis LPD/LPRng er installeret, vil /etc/printcap ikke overskrives af CUPS\n"
-"\n"
-"- hvis /etc/cups/cupsd.conf mangler, vil den blive oprettet\n"
-"\n"
-"- når printerinformation rundsenDES, vil den ikke indeholde \"localhost\" "
-"som servernavn.\n"
-"\n"
-"Hvis nogen af disse ting giver dig problemer, så fjern denne valgmulighed, "
-"men da må du selv sørge for at disse punkter bliver overholdt."
-
-#: printer/printerdrake.pm:161 printer/printerdrake.pm:236
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Deling af lokale printere"
-
-#: printer/printerdrake.pm:162
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-"Dette er maskinerne og netværkerne på hvilke de lokalt forbundne printere "
-"skal gøres tilgængelige:"
-
-#: printer/printerdrake.pm:173
-#, c-format
-msgid "Add host/network"
-msgstr "Tilføj vært/netværk"
-
-#: printer/printerdrake.pm:179
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Redigér valgte vært/netværk"
-
-#: printer/printerdrake.pm:188
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Fjern valgte vært/netværk"
-
-#: printer/printerdrake.pm:219 printer/printerdrake.pm:229
-#: printer/printerdrake.pm:241 printer/printerdrake.pm:248
-#: printer/printerdrake.pm:279 printer/printerdrake.pm:297
-#, c-format
-msgid "IP address of host/network:"
-msgstr "IP-adresse på vært eller netværk:"
-
-#: printer/printerdrake.pm:237
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr ""
-"Vælg netværket eller værten på hvilken de lokale printere skal gøres "
-"tilgængelige: "
-
-#: printer/printerdrake.pm:244
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "IP-adresse på vært eller netværk mangler."
-
-#: printer/printerdrake.pm:252
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "Den indtastede vært/netværk er ikke korrekt.\n"
-
-#: printer/printerdrake.pm:253 printer/printerdrake.pm:429
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Eksempler på korrekte IP'er:\n"
-
-#: printer/printerdrake.pm:277
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr ""
-"Denne vært eller dette netværk er allerede på listen, og kan ikke blive "
-"tilføjet igen.\n"
-
-#: printer/printerdrake.pm:346 printer/printerdrake.pm:416
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Tilgår printere på eksterne CUPS-servere"
-
-#: printer/printerdrake.pm:347
-#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
-"Tilføj hér de CUPS-servere hvis prontere du ønsker at bruge. Du behøver kun "
-"gøre dette, hvis serverne ikke rundkaster deres printerinformation på "
-"lokalnetværket."
-
-#: printer/printerdrake.pm:358
-#, c-format
-msgid "Add server"
-msgstr "Tilføj server"
-
-#: printer/printerdrake.pm:364
-#, c-format
-msgid "Edit selected server"
-msgstr "Redigér valgte server"
-
-#: printer/printerdrake.pm:373
-#, c-format
-msgid "Remove selected server"
-msgstr "Fjern valgte server"
-
-#: printer/printerdrake.pm:417
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr "Indtast IP-adresse og port på værten, hvis printere du ønsker at bruge."
-
-#: printer/printerdrake.pm:418
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "Hvis ingen port er angivet, vil port 631 blive brugt som standard."
-
-#: printer/printerdrake.pm:422
-#, c-format
-msgid "Server IP missing!"
-msgstr "Server-IP mangler!"
-
-#: printer/printerdrake.pm:428
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Den indtastede IP er ikke korrekt.\n"
-
-#: printer/printerdrake.pm:440 printer/printerdrake.pm:2133
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Port-nummeret bør være et heltal!"
-
-#: printer/printerdrake.pm:451
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "Denne server er allerede på listen, og kan ikke blive tilføjet igen.\n"
-
-#: printer/printerdrake.pm:462 printer/printerdrake.pm:2160
-#: standalone/drakups:249 standalone/harddrake2:52
-#, c-format
-msgid "Port"
-msgstr "Port"
-
-#: printer/printerdrake.pm:495 printer/printerdrake.pm:511
-#: printer/printerdrake.pm:526 printer/printerdrake.pm:530
-#: printer/printerdrake.pm:536
-#, c-format
-msgid "On, Name or IP of remote server:"
-msgstr "På, navn eller IP på fjernserver"
-
-#: printer/printerdrake.pm:514 printer/printerdrake.pm:4551
-#: printer/printerdrake.pm:4617
-#, c-format
-msgid "CUPS server name or IP address missing."
-msgstr "CUPS-servernavn eller IP-adresse mangler."
-
-#: printer/printerdrake.pm:566 printer/printerdrake.pm:586
-#: printer/printerdrake.pm:811 printer/printerdrake.pm:880
-#: printer/printerdrake.pm:901 printer/printerdrake.pm:927
-#: printer/printerdrake.pm:1023 printer/printerdrake.pm:1065
-#: printer/printerdrake.pm:1075 printer/printerdrake.pm:1110
-#: printer/printerdrake.pm:2220 printer/printerdrake.pm:2490
-#: printer/printerdrake.pm:2524 printer/printerdrake.pm:2575
-#: printer/printerdrake.pm:2582 printer/printerdrake.pm:2621
-#: printer/printerdrake.pm:2663 printer/printerdrake.pm:2700
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2984
-#: printer/printerdrake.pm:2989 printer/printerdrake.pm:3137
-#: printer/printerdrake.pm:3248 printer/printerdrake.pm:3862
-#: printer/printerdrake.pm:3929 printer/printerdrake.pm:3978
-#: printer/printerdrake.pm:3981 printer/printerdrake.pm:4091
-#: printer/printerdrake.pm:4149 printer/printerdrake.pm:4221
-#: printer/printerdrake.pm:4242 printer/printerdrake.pm:4252
-#: printer/printerdrake.pm:4342 printer/printerdrake.pm:4437
-#: printer/printerdrake.pm:4443 printer/printerdrake.pm:4471
-#: printer/printerdrake.pm:4578 printer/printerdrake.pm:4687
-#: printer/printerdrake.pm:4707 printer/printerdrake.pm:4716
-#: printer/printerdrake.pm:4731 printer/printerdrake.pm:4932
-#: printer/printerdrake.pm:5407 printer/printerdrake.pm:5490
-#: standalone/printerdrake:75 standalone/printerdrake:590
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: printer/printerdrake.pm:567 printer/printerdrake.pm:4150
-#: printer/printerdrake.pm:4688
-#, c-format
-msgid "Reading printer data..."
-msgstr "Læser printerdata ..."
-
-#: printer/printerdrake.pm:587
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "Genstarter CUPS..."
-
-#: printer/printerdrake.pm:614
-#, c-format
-msgid "Allow pop-up windows, printer setup and package installation may be canceled"
-msgstr ""
-"Tillad pop-op-vinduer, opsætning af printer og pakkeinstallation kan blive "
-"annulleret"
-
-#: printer/printerdrake.pm:616
-#, c-format
-msgid "No pop-up windows, printer setup and package installation cannot be canceled"
-msgstr ""
-"Ingen pop-op-vinduer, printeropsætning og pakkeinstallation kan ikke "
-"annulleres"
-
-#: printer/printerdrake.pm:622
-#, c-format
-msgid "Printer auto administration"
-msgstr "Auto-administrering af printere"
-
-#: printer/printerdrake.pm:623
-#, c-format
-msgid ""
-"Here you can configure printer administration tasks which should be done "
-"automatically."
-msgstr ""
-"Her kan du sætte printeradministrationsopgaver op, som skal udføres "
-"automatisk."
-
-#: printer/printerdrake.pm:626
-#, c-format
-msgid "Do automatic configuration of new printers"
-msgstr "Lav automatisk konfiguration af nye printere"
-
-#: printer/printerdrake.pm:627 printer/printerdrake.pm:641
-#, c-format
-msgid "when a USB printer is connected and turned on"
-msgstr "når en USB-printer er tilsluttet og tændt"
-
-#: printer/printerdrake.pm:630
-#, c-format
-msgid "when Printerdrake is started"
-msgstr "når Printerdrake er startet"
-
-#: printer/printerdrake.pm:634
-#, c-format
-msgid "Mode for automatic printer setup:"
-msgstr "Tilstand for automatisk printeropsætning:"
-
-#: printer/printerdrake.pm:640
-#, c-format
-msgid "Re-enable disabled printers"
-msgstr "Genaktivér deaktiverede printere"
-
-#: printer/printerdrake.pm:644
-#, c-format
-msgid "when the printing system is started"
-msgstr "når udskriftssystemet er startet"
-
-#: printer/printerdrake.pm:680
-#, c-format
-msgid "Communication error handling for the printer \"%s\""
-msgstr "håndtering af kommunikationsfejl for printeren '%s'"
-
-#: printer/printerdrake.pm:682
-#, c-format
-msgid ""
-"Here you can configure how errors during the communication between your "
-"computer and the printer \"%s\" should be handled (for example if the "
-"printer is not turned on)."
-msgstr ""
-"Her kan du konfigurere hvordan fejl under kommunikation mellem printeren \"%s"
-"\" og din maskine bør håndteres (for eksempel hvis printeren er ikke er "
-"tændt)."
-
-#: printer/printerdrake.pm:686
-#, c-format
-msgid "The number of retries should be an integer number of at least 1!"
-msgstr "Antal forsøg bør være et tal på mindst 1!"
-
-#: printer/printerdrake.pm:690
-#, c-format
-msgid "The delay between retries should be a positive integer number!"
-msgstr "Intervallet mellem nye forsøg skal være et positivt tal!"
-
-#: printer/printerdrake.pm:701
-#, c-format
-msgid "Do not disable the printer"
-msgstr "Deaktivér ikke printeren"
-
-#: printer/printerdrake.pm:704
-#, c-format
-msgid "Retry infinitely often"
-msgstr "Prøv igen et uendeligt antal gange"
-
-#: printer/printerdrake.pm:707
-#, c-format
-msgid "Number of retries"
-msgstr "Antal gentagne forsøg:"
-
-#: printer/printerdrake.pm:712
-#, c-format
-msgid "Delay between retries (in sec)"
-msgstr "Interval mellem forsøg (i sekunder)"
-
-#: printer/printerdrake.pm:745 printer/printerdrake.pm:765
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Vælg printer-forbindelse"
-
-#: printer/printerdrake.pm:746
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Hvordan er printeren tilsluttet?"
-
-#: printer/printerdrake.pm:748
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Eksterne CUPS-servere behøves ikke at blive konfigureret her: \n"
-"disse printere vil automatisk blive fundet."
-
-#: printer/printerdrake.pm:751 printer/printerdrake.pm:4934
-#, c-format
-msgid ""
-"\n"
-"WARNING: No local network connection active, remote printers can neither be "
-"detected nor tested!"
-msgstr ""
-"\n"
-"ADVARSEL: Ingen lokal netværksopkobling aktiv; fjerne printere kan derfor "
-"ikke blive opdaget eller testet!"
-
-#: printer/printerdrake.pm:758
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"
-msgstr ""
-"Automatisk identifikation af printere (Lokal, TCP/Socket,SMB-printere og URI "
-"for enhed)"
-
-#: printer/printerdrake.pm:760
-#, c-format
-msgid "Modify timeout for network printer auto-detection"
-msgstr "Ændr tidsudløb på automatisk findning af netværksprinter"
-
-#: printer/printerdrake.pm:766
-#, c-format
-msgid "Enter the timeout for network printer auto-detection (in msec) here. "
-msgstr ""
-"Angiv tidsudløb for automatisk genkendelse af netværksprintere her (i "
-"millisekunder)."
-
-#: printer/printerdrake.pm:768
-#, c-format
-msgid ""
-"The longer you choose the timeout, the more reliable the detections of "
-"network printers will be, but the scan can take longer then, especially if "
-"there are many machines with local firewalls in the network. "
-msgstr ""
-"Jo længere du vælger tildsudløbet til at være, des mere pålideligt vil "
-"genkendelsen af netværksprinterne blive, men søgningen kan så vare længere, "
-"især hvis der er mange maskiner med lokale brandmure på netværket. "
-
-#: printer/printerdrake.pm:772
-#, c-format
-msgid "The timeout must be a positive integer number!"
-msgstr "Tidsudløbet skal være et positivt tal!"
-
-#: printer/printerdrake.pm:811
-#, c-format
-msgid "Checking your system..."
-msgstr "Tjekker dit system..."
-
-#: printer/printerdrake.pm:829
-#, c-format
-msgid "and one unknown printer"
-msgstr "og en ukendt printer"
-
-#: printer/printerdrake.pm:831
-#, c-format
-msgid "and %d unknown printers"
-msgstr "og %d ukendte printere"
-
-#: printer/printerdrake.pm:835
-#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"De følgende printere\n"
-"\n"
-"%s%s\n"
-"er direkte tilsluttet til dit system"
-
-#: printer/printerdrake.pm:837
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"De følgende printere\n"
-"\n"
-"%s%s\n"
-"er direkte tilsluttet til dit system"
-
-#: printer/printerdrake.pm:838
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-"Den følgende printer\n"
-"\n"
-"%s%s\n"
-"er direkte tilsluttet til dit system"
-
-#: printer/printerdrake.pm:842
-#, c-format
-msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
-"\n"
-"Der findes en ukendt printer direkte tilsluttet til dit system"
-
-#: printer/printerdrake.pm:843
-#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
-"\n"
-"Der findes %d ukendte printere direkte tilsluttet til dit system"
-
-#: printer/printerdrake.pm:846
-#, c-format
-msgid "There are no printers found which are directly connected to your machine"
-msgstr ""
-"Der blev ikke fundet nogen printere som er direkte tilsluttede til din "
-"maskine"
-
-#: printer/printerdrake.pm:849
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr " (Forsikr dig om at alle dine printere er tilsluttede og tændte).\n"
-
-#: printer/printerdrake.pm:862
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
-"Vil du aktivere udskrift på printerne som nævnes ovenfor eller på printerne "
-"i det lokale netværk?\n"
-
-#: printer/printerdrake.pm:863
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Vil du aktivere udskrift på printerne i det lokale netværk?\n"
-
-#: printer/printerdrake.pm:865
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Vil du aktivere udskrift på printerne som nævnes ovenfor?\n"
-
-#: printer/printerdrake.pm:866
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Er du sikker på at du vil opsætte udskrift på denne maskine?\n"
-
-#: printer/printerdrake.pm:867
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
-"Bemærk: Afhængig af printermodel og udskriftssystem vil op til %d MB "
-"yderligere programmel blive installeret."
-
-#: printer/printerdrake.pm:884
-#, c-format
-msgid "Do not setup printer automatically now, and never do it again"
-msgstr "Opsæt ikke printer automatisk nu, og gør det aldig igen"
-
-#: printer/printerdrake.pm:928
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Søger efter nye printere..."
-
-#: printer/printerdrake.pm:976
-#, c-format
-msgid "Do not setup printer automatically again"
-msgstr "Opsæt ikke printer automatisk igen"
-
-#: printer/printerdrake.pm:983
-#, c-format
-msgid "New printers found"
-msgstr "Nye printere fundet"
-
-#: printer/printerdrake.pm:984
-#, c-format
-msgid "New printer found"
-msgstr "Ny printer fundet"
-
-#: printer/printerdrake.pm:986
-#, c-format
-msgid ""
-"The following new printers were found and Printerdrake can automatically set "
-"them up for you. If you do not want to have all of them set up, unselect the "
-"ones which should be skipped, or click \"Cancel\" to set up none of them.\n"
-msgstr ""
-"De følgende nye printere blev fundet og Printerdrake kan automatisk sætte "
-"dem op for dig. Hvis du ikke ønsker at have dem alle sat op, så fravælg dem "
-"du ænsker at springe over, eller klik \"Afbryd\" for ikke at sætte nogen af "
-"dem op.\n"
-
-#: printer/printerdrake.pm:987
-#, c-format
-msgid ""
-"The following new printer was found and printerdrake can automatically set "
-"it up for you. If you do not want to have it set up, unselect it, or click "
-"\"Cancel\".\n"
-msgstr ""
-"Den følgende nye printer blev fundet og printerdrake kan automatisk sætte "
-"den op for dig. Hvis du ikke ønsker at sætte den op, så fravælg den eller "
-"klik \"Afbryd\".\n"
-
-#: printer/printerdrake.pm:988
-#, c-format
-msgid ""
-"Note that for certain printer models additional packages need to be "
-"installed. So keep your installation media handy.\n"
-msgstr ""
-"Bemærk at for enkelte printermodeller så kræves det at ekstra pakker skal "
-"installeres. Så hav installationsmedier parate.\n"
-
-#: printer/printerdrake.pm:1024 printer/printerdrake.pm:1066
-#, c-format
-msgid "Configuring printer on %s..."
-msgstr "Konfigurerer printer på %s..."
-
-#: printer/printerdrake.pm:1049
-#, c-format
-msgid "("
-msgstr "("
-
-#: printer/printerdrake.pm:1050
-#, c-format
-msgid " on "
-msgstr " på "
-
-#: printer/printerdrake.pm:1051 standalone/scannerdrake:137
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: printer/printerdrake.pm:1056 printer/printerdrake.pm:3149
-#, c-format
-msgid "Printer model selection"
-msgstr "Valg af printermodel"
-
-#: printer/printerdrake.pm:1057 printer/printerdrake.pm:3150
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Hvilken printermodel har du?"
-
-#: printer/printerdrake.pm:1058
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-"\n"
-"\n"
-"Printerdrake kunne ikke finde ud af hvilken model din printer %s er. Vælg "
-"venligst den korrekte model fra listen."
-
-#: printer/printerdrake.pm:1061 printer/printerdrake.pm:3155
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Hvis din printer ikke er listet, så vælg en kompatibel (se printermanual) "
-"eller en lignende printer."
-
-#: printer/printerdrake.pm:1076 printer/printerdrake.pm:4708
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Konfigurerer printer '%s'..."
-
-#: printer/printerdrake.pm:1111
-#, c-format
-msgid ""
-"Now you have turned off automatic printer setup.\n"
-"\n"
-msgstr ""
-"Nu har du deaktiveret automatisk printeropsætning.\n"
-"\n"
-
-#: printer/printerdrake.pm:1112
-#, c-format
-msgid ""
-"You can turn it back on again by choosing \"%s\" -> \"%s\" in Printerdrake's "
-"main menu. "
-msgstr ""
-"Du kan aktivere det igen ved at vælge \"%s\" -> \"%s\" i Printerdrake's "
-"hovedmenu. "
-
-#: printer/printerdrake.pm:1112 printer/printerdrake.pm:4984
-#, c-format
-msgid "Configure Auto Administration"
-msgstr "Konfigurér auto-administration"
-
-#: printer/printerdrake.pm:1113
-#, c-format
-msgid ""
-"There you can also choose in which situation automatic printer setup is done "
-"(On Printerdrake startup, on printing system startup, when connecting a new "
-"USB printer)."
-msgstr ""
-"Der kan du også vælge i hvilken situation automatisk opsætning af printer "
-"skal laves (Under Printerdrake-opsætning, under opstart af udskriftssystem, "
-"ved opkobling af en ny USB-printer)"
-
-#: printer/printerdrake.pm:1261 printer/printerdrake.pm:1273
-#: printer/printerdrake.pm:1380 printer/printerdrake.pm:2401
-#: printer/printerdrake.pm:2460 printer/printerdrake.pm:2556
-#: printer/printerdrake.pm:4951 printer/printerdrake.pm:5138
-#, c-format
-msgid "Add a new printer"
-msgstr "Tilføj en ny printer"
-
-#: printer/printerdrake.pm:1262
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Velkommen til vejlederen for printeropsætning\n"
-"\n"
-"Denne vejleder lader dig installere lokale eller eksterne printere som skal "
-"bruges fra denne maskine, og også fra andre maskiner i netværket.\n"
-"\n"
-"Den spørger dig om alle nødvendige oplysninger til at opsætte printere og "
-"giver dig adgang til alle tilgængelige printerdrivere, drivermuligheder og "
-"opkoblingstyper for printere."
-
-#: printer/printerdrake.pm:1275
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected. Also your network printer(s) and your Windows "
-"machines must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you do not "
-"need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Velkommen til guiden for printerinstallation\n"
-"\n"
-"Denne guide lader dig installere printere sluttet til denne maskine, direkte "
-"til netværket eller til en ekstern Windows-maskine.\n"
-"\n"
-"Tilslut og tænd venligst alle printere opkoblet til denne maskine så de kan "
-"identificeres automatisk. Netværksprinterne og Windows-maskinerne skal også "
-"være tilsluttede og tændte.\n"
-"\n"
-"Bemærk at det tager længere tid at identificere netværksprintere end at "
-"identificere lokalt tilsluttede printere. Så deaktivér autoidentifikation af "
-"netværksprintere og/eller printere sluttede til Windows-maskiner hvis du "
-"ikke har brug for dette.\n"
-"\n"
-"Klik på \"Næste\" hvis du er klar og på \"Annullér\" hvis du ikke vil "
-"installere printere nu."
-
-#: printer/printerdrake.pm:1284
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Velkommen til guiden for printerinstallation\n"
-"\n"
-"Denne guide lader dig installere printere sluttet til denne maskine.\n"
-"\n"
-"Tilslut og tænd venligst alle printere tilsluttet denne maskine nu så de kan "
-"identificeres automatisk.\n"
-"\n"
-"Klik på \"Næste\" når du er klar og på \"Annullér\" hvis du ikke vil "
-"installere printere nu."
-
-#: printer/printerdrake.pm:1292
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you do not need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Velkommen til guiden for printerinstallation\n"
-"\n"
-"Denne guide lader dig installere printere sluttet til denne maskine eller "
-"direkte til netværket.\n"
-"\n"
-"Hvis du har printere sluttet til denne maskine, så tilslut og tænd dem nu så "
-"de kan identificeres automatisk. Netværksprinterne skal også være "
-"tilsluttede og tændte.\n"
-"\n"
-"Bemærk at det tager længere tid at identificere netværksprintere end at "
-"identificere lokalt tilsluttede printere. Så deaktivér autoidentifikation af "
-"netværksprintere hvis du ikke har brug for dette.\n"
-"\n"
-"Klik på \"Næste\" hvis du er klar og på \"Annullér\" hvis du ikke vil "
-"installere printere nu."
-
-#: printer/printerdrake.pm:1301
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Velkommen til guiden for printerinstallation\n"
-"\n"
-"Denne guide lader dig installere printere sluttet til denne maskine.\n"
-"\n"
-"Hvis du har printere sluttet til denne maskine, så tilslut og tænd dem nu så "
-"de kan identificeres automatisk.\n"
-"\n"
-"Klik på \"Næste\" hvis du er klar og på \"Annullér\" hvis du ikke vil "
-"installere printere nu."
-
-#: printer/printerdrake.pm:1352
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Auto-opdagelse af printere tilsluttet denne maskine"
-
-#: printer/printerdrake.pm:1355
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Auto-opdagelse af printere tilsluttet direkte til det lokale netværk"
-
-#: printer/printerdrake.pm:1358
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr "Auto-opdagelse af printere tilsluttet maskiner der køre Microsoft Windows"
-
-#: printer/printerdrake.pm:1361
-#, c-format
-msgid "No auto-detection"
-msgstr "Ingen automatisk detektion"
-
-#: printer/printerdrake.pm:1381
-#, c-format
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the %s Control Center."
-msgstr ""
-"\n"
-"Tillykke, din printer er nu installeret og konfigureret!\n"
-"\n"
-"Du kan udskrive med 'Udskriv'-kommandoen i dit program (normalt i 'Filer'-"
-"menuen).\n"
-"\n"
-"Hvis du ønsker at tilføje, fjerne eller omdøbe en printer, eller hvis du "
-"ønsker at ændre på standard-indstillingerne (papirbakke, printkvalitet ...), "
-"så vælg 'Printer' i 'Udstyr'-afsnittet i %s Kontrolcentret."
-
-#: printer/printerdrake.pm:1417 printer/printerdrake.pm:1641
-#: printer/printerdrake.pm:1704 printer/printerdrake.pm:1796
-#: printer/printerdrake.pm:1934 printer/printerdrake.pm:2010
-#: printer/printerdrake.pm:2177 printer/printerdrake.pm:2268
-#: printer/printerdrake.pm:2277 printer/printerdrake.pm:2286
-#: printer/printerdrake.pm:2297 printer/printerdrake.pm:2496
-#: printer/printerdrake.pm:2633
-#, c-format
-msgid "Could not install the %s packages!"
-msgstr "Kunne ikke installere %s-pakkerne!"
-
-#: printer/printerdrake.pm:1419
-#, c-format
-msgid "Skipping Windows/SMB server auto-detection"
-msgstr "Overspringer automatisk oppdagelse af Windows/SMB-server"
-
-#: printer/printerdrake.pm:1425 printer/printerdrake.pm:1564
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Auto-opdagelse af printere"
-
-#: printer/printerdrake.pm:1425
-#, c-format
-msgid "Detecting devices..."
-msgstr "Detekterer enheder..."
-
-#: printer/printerdrake.pm:1451
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", netværksprinter \"%s\", port %s"
-
-#: printer/printerdrake.pm:1454
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", printer \"%s\" på SMB/Windows-server \"%s\""
-
-#: printer/printerdrake.pm:1458
-#, c-format
-msgid "Detected %s"
-msgstr "Fandt %s"
-
-#: printer/printerdrake.pm:1463 printer/printerdrake.pm:1490
-#: printer/printerdrake.pm:1505
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Printer på parallel port #%s"
-
-#: printer/printerdrake.pm:1469
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Netværksprinter '%s', port %s"
-
-#: printer/printerdrake.pm:1472
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Printer '%s' på SMB/Windows server '%s'"
-
-#: printer/printerdrake.pm:1550
-#, c-format
-msgid "Local Printer"
-msgstr "Lokal printer"
-
-#: printer/printerdrake.pm:1551
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Ingen lokal printer fundet! For at installere en printer i hånden skal du "
-"indtaste et enhedsnavn/filnavn i inddatalinjen (parallelporte: /dev/lp0, /"
-"dev/lp1 ..., svarende til LPT1:, LPT2: ..., første USB-printer: /dev/usb/"
-"lp0, 2. USB-printer: /dev/usb/lp1 ...)."
-
-#: printer/printerdrake.pm:1555
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Du skal indtaste en enhed eller et filnavn!"
-
-#: printer/printerdrake.pm:1565
-#, c-format
-msgid "No printer found!"
-msgstr "Ingen printer fundet!"
-
-#: printer/printerdrake.pm:1573
-#, c-format
-msgid "Local Printers"
-msgstr "Lokale printere"
-
-#: printer/printerdrake.pm:1574
-#, c-format
-msgid "Available printers"
-msgstr "Tilgængelige printer"
-
-#: printer/printerdrake.pm:1578 printer/printerdrake.pm:1587
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "De følgende printere blev fundet automatisk:"
-
-#: printer/printerdrake.pm:1580
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
-"Hvis det ikke er den du ønsker at opsætte så indtast et enhedsnavn/filnavn "
-"på inddatalinjen"
-
-#: printer/printerdrake.pm:1581
-#, c-format
-msgid "Alternatively, you can specify a device name/file name in the input line"
-msgstr "Alternaltivt kan du angive et enhedsnavn/filnavn på inddatalinjen"
-
-#: printer/printerdrake.pm:1582 printer/printerdrake.pm:1591
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Her er en liste med alle autodetekterede printere. "
-
-#: printer/printerdrake.pm:1584
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
-msgstr ""
-"Angiv hvilken printer dine udskriftsopgaver skal gå til, eller indtast et "
-"enhedsnavn/filnavn på inddatalinjen"
-
-#: printer/printerdrake.pm:1585
-#, c-format
-msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-"Angiv hvilken printer som udskriftsopgaverne skal gå til eller indtast et "
-"enhedsnavn/filnavn på inddatalinjen"
-
-#: printer/printerdrake.pm:1589
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Konfigurationen af printeren vil ske helt automatisk. Hvis din printer ikke "
-"blev fundet korrekt eller hvis du foretrækker en tilpasset "
-"printerkonfiguration, så slå 'Manuel konfiguration' til."
-
-#: printer/printerdrake.pm:1590
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Der er for nærværende ingen alternative muligheder"
-
-#: printer/printerdrake.pm:1593
-#, c-format
-msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
-msgstr ""
-"Vælg den printer du ønsker at opsætte. Konfigurationen af printeren vil ske "
-"fuldstændigt automatisk. Hvis din printer ikke blev fundet korrekt eller "
-"hvis du foretrækker en tilpasset printerkonfiguration, så slå 'Manuel "
-"konfiguration' til."
-
-#: printer/printerdrake.pm:1594
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Angiv hvilken printer som udskriftsopgaverne skal gå til."
-
-#: printer/printerdrake.pm:1596
-#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Angiv hvilken port din printer er forbundet til eller indtast et enhedsnavn/"
-"filnavn på inddatalinjen"
-
-#: printer/printerdrake.pm:1597
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Angiv hvilken port din printer er forbundet til."
-
-#: printer/printerdrake.pm:1599
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-"(parallelporte: /dev/lp0, /dev/lp1 ..., svarende til LPT1:, LPT2: ..., "
-"første USB-printer: /dev/usb/lp0, 2. USB-printer: /dev/usb/lp1 ...)."
-
-#: printer/printerdrake.pm:1603
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Du skal vælge eller indtaste en printer/enhed!"
-
-#: printer/printerdrake.pm:1643 printer/printerdrake.pm:1706
-#: printer/printerdrake.pm:1798 printer/printerdrake.pm:1936
-#: printer/printerdrake.pm:2012 printer/printerdrake.pm:2179
-#: printer/printerdrake.pm:2270 printer/printerdrake.pm:2279
-#: printer/printerdrake.pm:2288 printer/printerdrake.pm:2299
-#, c-format
-msgid "Aborting"
-msgstr "Afbryder"
-
-#: printer/printerdrake.pm:1679
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Parametre til ekstern lpd"
-
-#: printer/printerdrake.pm:1680
-#, c-format
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"For at bruge en ekstern printer, skal du opgive værtsnavnet\n"
-"for printerserveren og navnet på printeren på denne server."
-
-#: printer/printerdrake.pm:1681
-#, c-format
-msgid "Remote host name"
-msgstr "Eksternt værtsnavn"
-
-#: printer/printerdrake.pm:1682
-#, c-format
-msgid "Remote printer name"
-msgstr "Eksternt printernavn"
-
-#: printer/printerdrake.pm:1685
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Eksternt værtsnavn mangler"
-
-#: printer/printerdrake.pm:1689
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Det eksterne værtsnavn mangler!"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318 standalone/drakTermServ:475
-#: standalone/drakTermServ:807 standalone/drakTermServ:823
-#: standalone/drakTermServ:1653 standalone/drakTermServ:1662
-#: standalone/drakTermServ:1676 standalone/drakbackup:512
-#: standalone/drakbackup:618 standalone/drakbackup:653
-#: standalone/drakbackup:754 standalone/draknfs:203
-#: standalone/draksambashare:627 standalone/draksambashare:794
-#: standalone/harddrake2:275
-#, c-format
-msgid "Information"
-msgstr "Informationer"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Fandt model: %s %s"
-
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Scanning network..."
-msgstr "Skanner netværk ..."
-
-#: printer/printerdrake.pm:1814 printer/printerdrake.pm:1835
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", printer \"%s\" på server \"%s\""
-
-#: printer/printerdrake.pm:1817 printer/printerdrake.pm:1838
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Printer \"%s\" på server \"%s\""
-
-#: printer/printerdrake.pm:1859
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT)-printer indstillinger"
-
-#: printer/printerdrake.pm:1860
-#, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"For at skrive til en SMB printer skal du angive værtsnavnet på SMB maskinen "
-"(bemærk at dette navn kan være forskelligt fra TCP/IP-navnet!) og muligvis "
-"IP-adressen på printerserveren, så vel som delenavnet for printeren du vil "
-"bruge samt nødvendig information om brugernavn, adgangskode og arbejdsgruppe."
-
-#: printer/printerdrake.pm:1861
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-" Hvis den ønskede printer blev fundet, så vælg den fra listen og tilføj "
-"dernæst brugernavn, adgangskode og/eller arbejdsgruppe om nødvendigt."
-
-#: printer/printerdrake.pm:1863
-#, c-format
-msgid "SMB server host"
-msgstr "SMB-servervært"
-
-#: printer/printerdrake.pm:1864
-#, c-format
-msgid "SMB server IP"
-msgstr "SMB-serverens IP"
-
-#: printer/printerdrake.pm:1865 standalone/draksambashare:67
-#, c-format
-msgid "Share name"
-msgstr "Dele-navn"
-
-#: printer/printerdrake.pm:1868
-#, c-format
-msgid "Workgroup"
-msgstr "Arbejdsgruppe"
-
-#: printer/printerdrake.pm:1870
-#, c-format
-msgid "Auto-detected"
-msgstr "Auto-detekteret"
-
-#: printer/printerdrake.pm:1880
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Enten servernavnet eller serverens IP skal angives!"
-
-#: printer/printerdrake.pm:1884
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Samba-delenavn mangler!"
-
-#: printer/printerdrake.pm:1890
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "SIKKERHEDSADVARSEL!"
-
-#: printer/printerdrake.pm:1891
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Du er ved at opsætte udskrivning til en Windows-konto med adgangskode. "
-"Grundet en fejl i arkitekturen af Sambas klientprogrammel bliver "
-"adgangskoden lagt i klar tekst i Samba-klientens kommandolinje, som bruges "
-"til at sende printjobbet til Windows-serveren. Så det er muligt for enhver "
-"bruger på denne maskine at vise adgangskoden på skærmen ved at angive "
-"kommandoer som 'ps auxwww'.\n"
-"\n"
-"Vi anbefaler at bruge en af de følgende alternativer (i alle tilfælde skal "
-"du forsikre dig om at kun maskiner fra dit lokalnetværk har adgang til din "
-"Windows-server, for eksempel ved hjælp af en brandmur):\n"
-"\n"
-"Brug en konto uden adgangskode på din Windows-server, såsom 'GUEST'-kontoen "
-"eller en speciel konto som kun anvendes til udskrift. Fjern ikke "
-"adgangskodebeskyttelsen fra en personlig konto eller en administrator-"
-"konto.\n"
-"\n"
-"Opsæt din Windows-server så printeren er tilgængelig under LPD-protokollen. "
-"Opsæt dernæst udskrift fra denne maskine med '%s'-opkoblingstypen i "
-"Printerdrake.\n"
-
-#: printer/printerdrake.pm:1901
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Opsæt din Windows-server til at gøre printeren tilgængelig under IPP-"
-"protokollen, og opsæt udskrift fra denne maskine med '%s'-opkoblingstypen i "
-"Printerdrake.\n"
-
-#: printer/printerdrake.pm:1904
-#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-"Forbind din printer til en Linux-server og lad dine Windows-maskiner "
-"tilslutte sig til den som klienter.\n"
-"\n"
-"Ønsker du virkelig at fortsætte med at opsætte din printer som du gør nu?"
-
-#: printer/printerdrake.pm:1983
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "NetWare printer-parametre"
-
-#: printer/printerdrake.pm:1984
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"For at skrive til en NetWare printer skal du angive navnet på NetWare "
-"printerserveren (bemærk at dette navn kan være forskelligt fra TCP/IP-"
-"navnet!) såvel som kønavnet for den printer du vil benytte samt om "
-"nødvendigt et brugernavn og en adgangskode."
-
-#: printer/printerdrake.pm:1985
-#, c-format
-msgid "Printer Server"
-msgstr "Printer-server"
-
-#: printer/printerdrake.pm:1986
-#, c-format
-msgid "Print Queue Name"
-msgstr "Printerkø-navn"
-
-#: printer/printerdrake.pm:1991
-#, c-format
-msgid "NCP server name missing!"
-msgstr "NCP-servernavn mangler!"
-
-#: printer/printerdrake.pm:1995
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "NCP-kønavn mangler!"
-
-#: printer/printerdrake.pm:2076 printer/printerdrake.pm:2097
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", vært \"%s\", port %s"
-
-#: printer/printerdrake.pm:2079 printer/printerdrake.pm:2100
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Vært \"%s\", port %s"
-
-#: printer/printerdrake.pm:2122
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/Sokkel-printer-parametre"
-
-#: printer/printerdrake.pm:2124
-#, c-format
-msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
-msgstr ""
-"Vælg en af de fundne printere fra listen eller angiv værtsnavnet eller IP-"
-"adressen og eventuelt portnummer (standard er 9100) i indtastningsfelterne."
-
-#: printer/printerdrake.pm:2125
-#, c-format
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
-msgstr ""
-"For at skrive til en TCP eller sokkel-printer skal du angive værtsnavnet "
-"eller IP-adressen på printeren, og eventuelt portnummer (standard er 9100). "
-"På HP JetDirect-servere er portnummeret normalt 9100, på andre servere "
-"varierer det. Tjek manualen for dit udstyr."
-
-#: printer/printerdrake.pm:2129
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Værtsnavn eller IP-adresse på printer mangler!"
-
-#: printer/printerdrake.pm:2158
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Værtsnavn eller IP-adresse på printer mangler!"
-
-#: printer/printerdrake.pm:2221
-#, c-format
-msgid "Refreshing Device URI list..."
-msgstr "Opfrisker URI-liste over enheder..."
-
-#: printer/printerdrake.pm:2224 printer/printerdrake.pm:2226
-#, c-format
-msgid "Printer Device URI"
-msgstr "Printer-enheds URI"
-
-#: printer/printerdrake.pm:2225
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Du kan direkte opgive URI til printeren. URIen skal være i henhold til enten "
-"CUPS- eller Foomatic-standarden. Bemærk at ikke alle typer URIer "
-"understøttes af alle kø-behandlere."
-
-#: printer/printerdrake.pm:2249
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "En korrekt URI skal opgives!"
-
-#: printer/printerdrake.pm:2354
-#, c-format
-msgid "Pipe into command"
-msgstr "kanalisér ind i kommando"
-
-#: printer/printerdrake.pm:2355
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-"Her kan du angive en vilkårlig kommandolinje som jobbet skal kanaliseres ind "
-"i i stedet for at blive sendt direkte til en printer."
-
-#: printer/printerdrake.pm:2356
-#, c-format
-msgid "Command line"
-msgstr "Kommandolinje"
-
-#: printer/printerdrake.pm:2360
-#, c-format
-msgid "A command line must be entered!"
-msgstr "En kommandolinje skal opgives!"
-
-#: printer/printerdrake.pm:2402
-#, c-format
-msgid "Your printer %s is currently connected %s."
-msgstr "Din printer %s er i øjeblikket tilsluttet %s."
-
-#: printer/printerdrake.pm:2404 printer/printerdrake.pm:2411
-#, c-format
-msgid "to a parallel port"
-msgstr "til en parallelport"
-
-#: printer/printerdrake.pm:2405 printer/printerdrake.pm:2412
-#, c-format
-msgid "to the USB"
-msgstr "til USB-en"
-
-#: printer/printerdrake.pm:2406 printer/printerdrake.pm:2413
-#, c-format
-msgid "via the network"
-msgstr "via netværket"
-
-#: printer/printerdrake.pm:2407
-#, c-format
-msgid "This type of connection is currently not fully supported by HPLIP."
-msgstr "Denne type tilslutning er for nærværende ikke fuldt understøttet af HPLIP."
-
-#: printer/printerdrake.pm:2409
-#, c-format
-msgid "You get full HPLIP support for your device if you connect it "
-msgstr "Du får fuld HPLIP-understøttelse for din enhed hvis du tilslutter den "
-
-#: printer/printerdrake.pm:2415
-#, c-format
-msgid "You can now set up your device with HPLIP anyway (works in many cases), "
-msgstr "Du kan nu alligevel opsætte din enhed med HPLIP (virker i mange tilfælde), "
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "set it up without HPLIP (print-only), "
-msgstr "opsæt uden HPLIP (kun udskrift), "
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "or"
-msgstr "eller"
-
-#: printer/printerdrake.pm:2417
-#, c-format
-msgid "cancel the setup (for example to reconnect your device)."
-msgstr "annullér opsætningen (for eksempel for at tilslutte din enhed igen)."
-
-#: printer/printerdrake.pm:2419
-#, c-format
-msgid ""
-"You can always revise your choice by clicking your printer's entry in the "
-"main window, "
-msgstr ""
-"Du kan altid rette dit valg ved at klikke på din printers indgang i "
-"hovedvinduet, "
-
-#: printer/printerdrake.pm:2420
-#, c-format
-msgid "clicking the \"%s\" button, "
-msgstr "ved at klikke på \"%s\"-knappen, "
-
-#. -PO: "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: printer/printerdrake.pm:2420 standalone/drakperm:124 standalone/drakups:300
-#: standalone/drakups:360 standalone/drakups:380 standalone/drakvpn:319
-#: standalone/drakvpn:680 standalone/printerdrake:245
-#, c-format
-msgid "Edit"
-msgstr "Redigér"
-
-#: printer/printerdrake.pm:2421
-#, c-format
-msgid "and choosing \"%s\"."
-msgstr "og vælge \"%s\"."
-
-#: printer/printerdrake.pm:2421 printer/printerdrake.pm:5334
-#: printer/printerdrake.pm:5394
-#, c-format
-msgid "Printer connection type"
-msgstr "Printeropkoblingstype"
-
-#: printer/printerdrake.pm:2423 standalone/logdrake:408
-#, c-format
-msgid "What do you want to do?"
-msgstr "Hvad vil du lave?"
-
-#: printer/printerdrake.pm:2424 printer/printerdrake.pm:2428
-#, c-format
-msgid "Set up with HPLIP"
-msgstr "Opsætning med HPLIP"
-
-#: printer/printerdrake.pm:2425 printer/printerdrake.pm:2427
-#: printer/printerdrake.pm:2430
-#, c-format
-msgid "Set up without HPLIP"
-msgstr "Opsætning uden HPLIP"
-
-#: printer/printerdrake.pm:2461
-#, c-format
-msgid ""
-"On many HP printers there are special functions available, maintenance (ink "
-"level checking, nozzle cleaning. head alignment, ...) on all not too old "
-"inkjets, scanning on multi-function devices, and memory card access on "
-"printers with card readers. "
-msgstr ""
-"På mange HP-printere er der specialfunktioner, såsom vedligeholdelse (tjek "
-"af blækniveau, rensing af printdysse, justering af hoved, ...) på alle ikke "
-"alt for gamle inkjet-printere, skanning på multi-funktionsenheder, og adgang "
-"til hukommelseskort på printere med kortlæsere. "
-
-#: printer/printerdrake.pm:2463
-#, c-format
-msgid ""
-"To access these extra functions on HP printers they must be set up with "
-"HPLIP (HP Linux Imaging and Printing). "
-msgstr ""
-"For at få adgang til disse ekstra funktioner på HP-printere skal de sættes "
-"op med HPLIP (HP Linux Imaging and Printing). "
-
-#: printer/printerdrake.pm:2465
-#, c-format
-msgid "Do you want to use HPLIP (choose \"No\" for non-HP printers)? "
-msgstr "Ønsker du at bruge HPLIP (Vælg 'Nej' for printere,der ikke er fra HP)?"
-
-#: printer/printerdrake.pm:2491
-#, c-format
-msgid "Installing %s package..."
-msgstr "Installerer %s-pakke..."
-
-#: printer/printerdrake.pm:2491 printer/printerdrake.pm:2497
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "HPLIP"
-msgstr "HPLIP"
-
-#: printer/printerdrake.pm:2498
-#, c-format
-msgid "Only printing will be possible on the %s."
-msgstr "Kun udskrift vil være mulig på %s."
-
-#: printer/printerdrake.pm:2513
-#, c-format
-msgid "Could not remove your old HPOJ configuration file %s for your %s! "
-msgstr "Kunne ikke fjerne din gamle HPOJ-konfigurationsfil '%s' for din %s! "
-
-#: printer/printerdrake.pm:2515
-#, c-format
-msgid "Please remove the file manually and restart HPOJ."
-msgstr "Fjern venligst filen manuelt, og genstart HPOJ."
-
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "Checking device and configuring %s..."
-msgstr "Tjekker enhed og konfigurerer %s..."
-
-#: printer/printerdrake.pm:2557
-#, c-format
-msgid "Which printer do you want to set up with HPLIP?"
-msgstr "Hvilken printer ønsker du at sætte op med HPLIP?"
-
-#: printer/printerdrake.pm:2576
-#, c-format
-msgid "HPLIP was not able to communicate with the chosen printer!"
-msgstr "HPLIP kunne ikke kommunikere med den valgte printer!"
-
-#: printer/printerdrake.pm:2577 printer/printerdrake.pm:2584
-#, c-format
-msgid "Setting up the printer without HPLIP..."
-msgstr "Opsætter printeren uden HPLIP..."
-
-#: printer/printerdrake.pm:2583
-#, c-format
-msgid "HPLIP did not find any local printers (Parallel, USB) which it supports!"
-msgstr "HPLIP fandt ikke nogen lokale printere (parallel, USB) som den understøtter!"
-
-#: printer/printerdrake.pm:2622
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "Installerer SANE-pakker..."
-
-#: printer/printerdrake.pm:2635
-#, c-format
-msgid "Scanning on the %s will not be possible."
-msgstr "Skanning på %s vil ikke være mulig."
-
-#: printer/printerdrake.pm:2650
-#, c-format
-msgid "Using and Maintaining your %s"
-msgstr "Brug og vedligeholdelse af din %s"
-
-#: printer/printerdrake.pm:2664
-#, c-format
-msgid "Configuring device..."
-msgstr "Konfigurerer enhed..."
-
-#: printer/printerdrake.pm:2701
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Gør printerport tilgængelig for CUPS..."
-
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2985
-#: printer/printerdrake.pm:3138
-#, c-format
-msgid "Reading printer database..."
-msgstr "Læser database over printere ..."
-
-#: printer/printerdrake.pm:2943
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Indtast printernavn og kommentarer"
-
-#: printer/printerdrake.pm:2947 printer/printerdrake.pm:4206
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Navn på printer bør kun indeholde bogstaver, tal og understregen _"
-
-#: printer/printerdrake.pm:2953 printer/printerdrake.pm:4211
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Printeren \"%s\" eksisterer allerede,\n"
-"ønsker du virkelig at overskrive dens konfiguration?"
-
-#: printer/printerdrake.pm:2960
-#, c-format
-msgid ""
-"The printer name \"%s\" has more than 12 characters which can make the "
-"printer unaccessible from Windows clients. Do you really want to use this "
-"name?"
-msgstr ""
-"Printernavnet \"%s\" er på mere end 12 tegn, hvilket kan bevirke at "
-"printeren er utilgængelig fra Windows-klienter. Ønsker du virkelig at bruge "
-"dette navn?"
-
-#: printer/printerdrake.pm:2969
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Alle printere behøver et navn (f.eks. 'printer').\n"
-"Beskrivelsen og lokaliseringsfelterne behøver ikke \n"
-"udfyldes. De er kommentarer til brugerne."
-
-#: printer/printerdrake.pm:2970
-#, c-format
-msgid "Name of printer"
-msgstr "Navn på printer"
-
-#: printer/printerdrake.pm:2971 standalone/drakconnect:592
-#: standalone/harddrake2:39 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Description"
-msgstr "Beskrivelse"
-
-#: printer/printerdrake.pm:2972 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Location"
-msgstr "Placering"
-
-#: printer/printerdrake.pm:2990
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Forbereder printerdatabase: ..."
-
-#: printer/printerdrake.pm:3116
-#, c-format
-msgid "Your printer model"
-msgstr "Din printermodel"
-
-#: printer/printerdrake.pm:3117
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"Printerdrake har sammenlignet modelnavnet fra den automatiske genkendelse af "
-"printeren med modellerne listet i dens printerdatabase for at finde den "
-"bedste match. Dette valg kan være forkert, især når din printer slet ikke er "
-"listet i databasen. Så tjek om valget er korrekt og klik \"Modellen er "
-"korrekt\" hvis den er, og hvis ikke så klik \"Vælg model manuelt\" så du kan "
-"udvælge din printermodel manuelt på den næste skærm.\n"
-"\n"
-"Som din printer har Printerdrake fundet:\n"
-"\n"
-"%s"
-
-#: printer/printerdrake.pm:3122 printer/printerdrake.pm:3125
-#, c-format
-msgid "The model is correct"
-msgstr "Modellen er korrekt"
-
-#: printer/printerdrake.pm:3123 printer/printerdrake.pm:3124
-#: printer/printerdrake.pm:3127
-#, c-format
-msgid "Select model manually"
-msgstr "Vælg model manuelt"
-
-#: printer/printerdrake.pm:3151
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
-msgstr ""
-"\n"
-"\n"
-"Tjek venligst om Printerdrake udførte \n"
-"autodetekteringen af din printermodel\n"
-"korrekt. Find den korrekte model i listen\n"
-"når en forkert model, eller 'Rå printer' er fremhævet."
-
-#: printer/printerdrake.pm:3170
-#, c-format
-msgid "Install a manufacturer-supplied PPD file"
-msgstr "Installér en producent-leveret PPD-fil"
-
-#: printer/printerdrake.pm:3202
-#, c-format
-msgid ""
-"Every PostScript printer is delivered with a PPD file which describes the "
-"printer's options and features."
-msgstr ""
-"Alle PostScript-printere leveres med en PPD-fil, som beskriver printerens "
-"valgmuligheder og faciliteter."
-
-#: printer/printerdrake.pm:3203
-#, c-format
-msgid ""
-"This file is usually somewhere on the CD with the Windows and Mac drivers "
-"delivered with the printer."
-msgstr ""
-"Denne fil findes som regel et eller andet sted på cd'en sammen med Windows- "
-"eller MAC-drivere leveret med printeren."
-
-#: printer/printerdrake.pm:3204
-#, c-format
-msgid "You can find the PPD files also on the manufacturer's web sites."
-msgstr "Du kan også finde PPD-filerne på producentens websteder."
-
-#: printer/printerdrake.pm:3205
-#, c-format
-msgid ""
-"If you have Windows installed on your machine, you can find the PPD file on "
-"your Windows partition, too."
-msgstr ""
-"Hvis du har Windows installeret på din maskine, så kan du også finde PPD-"
-"filen på din Windows-partition."
-
-#: printer/printerdrake.pm:3206
-#, c-format
-msgid ""
-"Installing the printer's PPD file and using it when setting up the printer "
-"makes all options of the printer available which are provided by the "
-"printer's hardware"
-msgstr ""
-"Installerer skriverens PPD-fil og bruger den, mens den opsætter printeren så "
-"alle valg til printeren vil være tilgængelig via printerens hardware"
-
-#: printer/printerdrake.pm:3207
-#, c-format
-msgid ""
-"Here you can choose the PPD file to be installed on your machine, it will "
-"then be used for the setup of your printer."
-msgstr ""
-"Her kan du vælge PPD-filen som skal installeres på din maskine, den vil så "
-"blive brugt til opsætningen af din printer."
-
-#: printer/printerdrake.pm:3209
-#, c-format
-msgid "Install PPD file from"
-msgstr "Installér PPD-fil fra"
-
-#: printer/printerdrake.pm:3212 printer/printerdrake.pm:3220
-#: standalone/scannerdrake:183 standalone/scannerdrake:192
-#: standalone/scannerdrake:242 standalone/scannerdrake:250
-#, c-format
-msgid "Floppy Disk"
-msgstr "Diskette"
-
-#: printer/printerdrake.pm:3213 printer/printerdrake.pm:3222
-#: standalone/scannerdrake:184 standalone/scannerdrake:194
-#: standalone/scannerdrake:243 standalone/scannerdrake:252
-#, c-format
-msgid "Other place"
-msgstr "Andet sted"
-
-#: printer/printerdrake.pm:3228
-#, c-format
-msgid "Select PPD file"
-msgstr "Vælg PPD-fil"
-
-#: printer/printerdrake.pm:3232
-#, c-format
-msgid "The PPD file %s does not exist or is unreadable!"
-msgstr "PPD-filen %s eksisterer ikke eller kan ikke læses!"
-
-#: printer/printerdrake.pm:3238
-#, c-format
-msgid "The PPD file %s does not conform with the PPD specifications!"
-msgstr "PPD-filen %s følger ikke PPD-specifikationerne!"
-
-#: printer/printerdrake.pm:3249
-#, c-format
-msgid "Installing PPD file..."
-msgstr "Installerer PPD-fil..."
-
-#: printer/printerdrake.pm:3368
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "OKI konfiguration af winprinter"
-
-#: printer/printerdrake.pm:3369
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"Du konfigurerer en OKI laser-winprinter. Disse printere bruger en meget "
-"speciel kommunikationsprotokol og derfor virker de kun når de er forbundet "
-"til den første parallelle port. Når din printer er forbundet til en anden "
-"port eller til en printserverboks, så forbind printeren til den første "
-"parallelle port før du udskriver en prøveside. Ellers vil printeren ikke "
-"virke. Din opsætning af forbindelsestype vil blive ignoreret af driveren."
-
-#: printer/printerdrake.pm:3394 printer/printerdrake.pm:3424
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Lexmark inkjet konfiguration"
-
-#: printer/printerdrake.pm:3395
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Printerdriverne til inkjet som leveres af Lexmark understøtter kun lokale "
-"printere, ikke printere på eksterne maskiner eller printserverbokse. Forbind "
-"din printer til en lokal port eller konfigurér den på den maskine, den er "
-"forbundet til."
-
-#: printer/printerdrake.pm:3425
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-"For at kunne udskrive på din Lexmark inkjet fra denne konfigurering skal du "
-"bruge inkjet printerdriverne leveret af Lexmark (http://www.lexmark.com/). "
-"Klik på 'Drivers'-knappen. Vælg så din model og derefter 'Linux' som "
-"operativsystem. Driverne kommer som RPM-pakker eller skal-skripter med "
-"interaktiv grafisk installation. Du behøver ikke lave denne konfiguration "
-"via de grafiske grænseflader. Annullér direkte efter licensaftalen. Udskriv "
-"derefter justeringssider for skrivehovedet med 'lexmarkmaintain', og justér "
-"opsætningen af justeringen af hovedet med dette program."
-
-#: printer/printerdrake.pm:3435
-#, c-format
-msgid "Lexmark X125 configuration"
-msgstr "Lexmark X125-konfiguration"
-
-#: printer/printerdrake.pm:3436
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes. Please connect "
-"your printer to a local USB port or configure it on the machine where it is "
-"connected to."
-msgstr ""
-"Denne printerdriver understøtter kun printere der er forbundet lokalt via "
-"USB, ikke printere på eksterne maskiner eller printserverbokse. Forbind din "
-"printer til en lokal USB-port eller konfigurér den på den maskine, den er "
-"forbundet til."
-
-#: printer/printerdrake.pm:3458
-#, c-format
-msgid "Samsung ML/QL-85G configuration"
-msgstr "Samsung ML/QL-85G konfiguration"
-
-#: printer/printerdrake.pm:3459 printer/printerdrake.pm:3486
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected on the "
-"first parallel port, no printers on remote machines or print server boxes or "
-"on other parallel ports. Please connect your printer to the first parallel "
-"port or configure it on the machine where it is connected to."
-msgstr ""
-"Denne printerdriver understøtter kun printere der er forbundet lokalt på den "
-"første parallelle port, ingen printere på eksterne maskiner eller "
-"printserverbokse eller andre parallelle porte.. Forbind din printer til den "
-"første parallelle port eller konfigurér den på den maskine, den er forbundet "
-"til."
-
-#: printer/printerdrake.pm:3485
-#, c-format
-msgid "Canon LBP-460/660 configuration"
-msgstr "Canon LBP-460/660 konfiguration"
-
-#: printer/printerdrake.pm:3512
-#, c-format
-msgid "Canon LBP-810/1120 (CAPT) configuration"
-msgstr "Canon LBP-810/1120 (CAPT) konfiguration"
-
-#: printer/printerdrake.pm:3513
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes or on the parallel "
-"port. Please connect your printer to the USB or configure it on the machine "
-"where it is directly connected to."
-msgstr ""
-"Denne printerdriver understøtter kun printere der er forbundet lokalt via "
-"USB, ikke printere på andre maskiner, printserverbokse, eller "
-"parallelporten. Forbind din printer til en lokal USB-port eller konfigurér "
-"den på den maskine, den er forbundet til."
-
-#: printer/printerdrake.pm:3520
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "Oplægning af firmware for HP LaserJet 1000"
-
-#: printer/printerdrake.pm:3670
-#, c-format
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Standardprinterens indstillinger\n"
-"\n"
-"Du bør tjekke at sidestørrelsen og blæktypen/udskriftstilstanden (hvis til "
-"stede) og også konfigurationen af laserprinterudstyr (hukommelse, duplex-"
-"enhed, ekstra bakker) er sat rigtigt. Bemærk at en meget god "
-"udskriftskvalitet kan gøre udskriften betydeligt langsommere."
-
-#: printer/printerdrake.pm:3795
-#, c-format
-msgid "Printer default settings"
-msgstr "Standardindstillinger for printer"
-
-#: printer/printerdrake.pm:3802
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Valg %s skal være et helt tal!"
-
-#: printer/printerdrake.pm:3806
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Valg %s skal være et tal!"
-
-#: printer/printerdrake.pm:3810
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Valg %s er udenfor område!"
-
-#: printer/printerdrake.pm:3862
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Ønsker du fremover at bruge printeren \"%s\"\n"
-"som standard?"
-
-#: printer/printerdrake.pm:3878
-#, c-format
-msgid "Test pages"
-msgstr "Testsider"
-
-#: printer/printerdrake.pm:3879
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Vælg testsiderne du ønsker at udskrive.\n"
-"Bemærk: fototestsiden kan tage ret lang tid at skrive ud, og på "
-"laserprintere med for lidt hukommelse vil den måske ikke skrives ud i det "
-"hele taget. Som regel vil det være nok at udskrive standard-testsiden."
-
-#: printer/printerdrake.pm:3883
-#, c-format
-msgid "No test pages"
-msgstr "Ingen testsider"
-
-#: printer/printerdrake.pm:3884
-#, c-format
-msgid "Print"
-msgstr "Udskriv"
-
-#: printer/printerdrake.pm:3909
-#, c-format
-msgid "Standard test page"
-msgstr "Standard testside"
-
-#: printer/printerdrake.pm:3912
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Alternativ testside (letter)"
-
-#: printer/printerdrake.pm:3915
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Alternativ testside (A4)"
-
-#: printer/printerdrake.pm:3917
-#, c-format
-msgid "Photo test page"
-msgstr "Fototestside"
-
-#: printer/printerdrake.pm:3930
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Udskriver testsider..."
-
-#: printer/printerdrake.pm:3950
-#, c-format
-msgid "Skipping photo test page."
-msgstr "Overspringer fototestside."
-
-#: printer/printerdrake.pm:3967
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Testsider er blevet sendt til printeren.\n"
-"Dette kan tage lidt tid før printeren starter.\n"
-"Udskrivningsstatus:\n"
-"%s\n"
-"\n"
-
-#: printer/printerdrake.pm:3971
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Testsider er sendt til printeren.\n"
-"Det kan tage lidt tid før printeren starter.\n"
-
-#: printer/printerdrake.pm:3981
-#, c-format
-msgid "Did it work properly?"
-msgstr "Fungerer det korrekt?"
-
-#: printer/printerdrake.pm:4005
-#, c-format
-msgid "Raw printer"
-msgstr "Rå printer"
-
-#: printer/printerdrake.pm:4027
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"For at skrive en fil fra kommandolinjen (terminalvinduet) kan du enten bruge "
-"programmet '%s <fil>' eller et grafisk printerværktøj: 'xpp <fil>' eller "
-"'kprinter <fil>'. De grafiske værktøjer lader dig vælge printeren og ændre "
-"indstillingerne på en nem måde.\n"
-
-#: printer/printerdrake.pm:4029
-#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Disse kommandoer kan du også bruge fra 'udskrivningskommando'-feltet i "
-"udskriftsdialogerne i mange programmer, men lad være med at angive filnavnet "
-"her, fordi filen der skal udskrives leveres af programmet.\n"
-
-#: printer/printerdrake.pm:4032 printer/printerdrake.pm:4049
-#: printer/printerdrake.pm:4059
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"'%s'-kommandoen tillader også ændring af indstillingsmulighederne for et "
-"bestemt udskriftsjob. Tilføj blot de ønskede indstillinger til "
-"kommandolinjen, fx '%s <fil>\". "
-
-#: printer/printerdrake.pm:4035 printer/printerdrake.pm:4075
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"Hvilke muligheder der er for den aktuelle printer kan du enten læse på "
-"listen vist nedenfor, eller klikke på knappen 'Liste med printermuligheder'.%"
-"s%s%s\n"
-
-#: printer/printerdrake.pm:4039
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Her er en liste over tilgængelige printmuligheder for den aktuelle printer:\n"
-"\n"
-
-#: printer/printerdrake.pm:4044 printer/printerdrake.pm:4054
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"For at udskrive en fil fra kommandolinjen (terminalvinduet) brug da "
-"kommandoen '%s <fil>'.\n"
-
-#: printer/printerdrake.pm:4046 printer/printerdrake.pm:4056
-#: printer/printerdrake.pm:4066
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Denne kommando kan du også bruge fra 'udskrivningskommando'-feltet i "
-"udskriftsdialogerne i mange programmer, men lad være med at angive filnavnet "
-"her, fordi filen der skal udskrives leveres af programmet.\n"
-
-#: printer/printerdrake.pm:4051 printer/printerdrake.pm:4061
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"For at få en liste af tilgængelige muligheder for den aktuelle printer kan "
-"du klikke på knappen 'Liste med printermuligheder'."
-
-#: printer/printerdrake.pm:4064
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"For at udskrive en fil fra kommandolinjen (terminalvinduet) brug da "
-"kommandoen '%s <fil>' eller '%s <fil>'.\n"
-
-#: printer/printerdrake.pm:4068
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Du kan også bruge den grafiske grænseflade 'xpdq' til at sætte "
-"valgmuligheder og behandle udskriftsopgaver.\n"
-"Hvis du bruger KDE som skrivebordsmiljø, har du en 'panik-knap', en ikon på "
-"skrivebordet, benævnt med 'STOP printer!', som stopper alle udskriftsopgaver "
-"øjeblikkeligt når du klikker på den. Dette er fx nyttigt hvis papiret "
-"krøller sammen.\n"
-
-#: printer/printerdrake.pm:4072
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"'%s'- og '%s'-kommandoerne tillader også ændring af indstillingsmulighederne "
-"for et bestemt udskriftsjob. Tilføj blot de ønskede indstillinger til "
-"kommandolinjen, fx '%s <fil>'.\n"
-
-#: printer/printerdrake.pm:4081
-#, c-format
-msgid "Using/Maintaining the printer \"%s\""
-msgstr "Bruger eller vedligeholder printeren '%s'"
-
-#: printer/printerdrake.pm:4082
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Udskriver på printeren '%s'"
-
-#: printer/printerdrake.pm:4088
-#, c-format
-msgid "Print option list"
-msgstr "Liste med printermuligheder"
-
-#: printer/printerdrake.pm:4092
-#, c-format
-msgid "Printing option list..."
-msgstr "Liste med printermuligheder..."
-
-#: printer/printerdrake.pm:4110
-#, c-format
-msgid ""
-"Your %s is set up with HP's HPLIP driver software. This way many special "
-"features of your printer are supported.\n"
-"\n"
-msgstr ""
-"Din %s er sat op med HP's HPLIP driverprogrammel. På denne måde vil mange "
-"særlige faciliteter være understøttet for din printer.\n"
-"\n"
-
-#: printer/printerdrake.pm:4113
-#, c-format
-msgid ""
-"The scanner in your printer can be used with the usual SANE software, for "
-"example Kooka or XSane (Both in the Multimedia/Graphics menu). "
-msgstr ""
-"Skanneren i din printer kan bruges med det almindelige SANE-programmel, for "
-"eksempel Kooka eller XSane (Begge i Multimedie/grapfik-menuen). "
-
-#: printer/printerdrake.pm:4114
-#, c-format
-msgid ""
-"Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to "
-"share your scanner on the network.\n"
-"\n"
-msgstr ""
-"Kør Scannerdrake (Udstyr/skanner i Mandriva Linux Kontrolcenter) for at dele "
-"din skanner på netværket.\n"
-"\n"
-
-#: printer/printerdrake.pm:4118
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed like a usual USB "
-"mass storage device. "
-msgstr ""
-"Hukommelseskortlæserne i din printer kan du få adgang til som en normal USB-"
-"lagerenhed. "
-
-#: printer/printerdrake.pm:4119
-#, c-format
-msgid ""
-"After inserting a card a hard disk icon to access the card should appear on "
-"your desktop.\n"
-"\n"
-msgstr ""
-"Efter indsættelse af et kort bør et ikon med en disk blive vist pådit "
-"skrivebord.\n"
-"\n"
-
-#: printer/printerdrake.pm:4121
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed using HP's Printer "
-"Toolbox (Menu: System/Monitoring/HP Printer Toolbox) clicking the \"Access "
-"Photo Cards...\" button on the \"Functions\" tab. "
-msgstr ""
-"Hukommelseskortlæserne på din printer kan du få adgang til via HP's Printer "
-"Toolbox (Menu: System/overvøgning/HP Printer Toolbox) ved at klikke på "
-"\"Adgang til fotokort...\" knappen på \"Funktioner\" fanen. "
-
-#: printer/printerdrake.pm:4122
-#, c-format
-msgid ""
-"Note that this is very slow, reading the pictures from the camera or a USB "
-"card reader is usually faster.\n"
-"\n"
-msgstr ""
-"Bemærk at dette er meget langsomt, læsning af billederne fra kameraet eller "
-"en USB-kortlæser er normalt hurtigere.\n"
-"\n"
-
-#: printer/printerdrake.pm:4125
-#, c-format
-msgid ""
-"HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a "
-"lot of status monitoring and maintenance functions for your %s:\n"
-"\n"
-msgstr ""
-"HP's Printer Toolbox (Menu: System/Overvågning/HP Printer Toolbox) tilbyder "
-"en masse overvågning af status og vedligeholdelsesfunktioner for din %s:\n"
-"\n"
-
-#: printer/printerdrake.pm:4126
-#, c-format
-msgid " - Ink level/status info\n"
-msgstr " - Blækniveau/status info\n"
-
-#: printer/printerdrake.pm:4127
-#, c-format
-msgid " - Ink nozzle cleaning\n"
-msgstr " - Rensning af blækdysse\n"
-
-#: printer/printerdrake.pm:4128
-#, c-format
-msgid " - Print head alignment\n"
-msgstr " - Justering af printhoved\n"
-
-#: printer/printerdrake.pm:4129
-#, c-format
-msgid " - Color calibration\n"
-msgstr " - Farve-indstilling\n"
-
-#: printer/printerdrake.pm:4170 printer/printerdrake.pm:4197
-#: printer/printerdrake.pm:4232
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Overfør printerkonfiguration"
-
-#: printer/printerdrake.pm:4171
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"Du kan kopiere printerkonfigurationen du har sat op for køserveren %s til %"
-"s, din nuværende køserver. Al konfigurationsdata (printernavn, beskrivelse, "
-"opkoblingstype og standardindstillinger) bliver overtaget, men ikke "
-"opgaver.\n"
-"Ikke alle køer kan overføres på grund af:\n"
-
-#: printer/printerdrake.pm:4174
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS understøtter ikke printere på Novellservere eller printere som sender "
-"dataene ind i en frit-formet kommando.\n"
-
-#: printer/printerdrake.pm:4176
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ understøtter kun lokale printere, eksterne LPD printere, og Sokkel/TCP "
-"printere.\n"
-
-#: printer/printerdrake.pm:4178
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD og LPRng understøtter ikke IPP printere.\n"
-
-#: printer/printerdrake.pm:4180
-#, c-format
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"Desuden kan køer lavet med dette program eller \"foomatic -configure\" ikke "
-"overflyttes."
-
-#: printer/printerdrake.pm:4181
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Printere konfigureret med PPD-filerne, som producenten har lavet, eller med "
-"CUPS egne drivere kan heller ikke overflyttes."
-
-#: printer/printerdrake.pm:4182
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Vælg printerene som du vil overflytte og klik\n"
-"\"Overfør\"."
-
-#: printer/printerdrake.pm:4185
-#, c-format
-msgid "Do not transfer printers"
-msgstr "Overfør ikke printere"
-
-#: printer/printerdrake.pm:4186 printer/printerdrake.pm:4202
-#, c-format
-msgid "Transfer"
-msgstr "Overfør"
-
-#: printer/printerdrake.pm:4198
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"En printer med navnet \"%s\" eksisterer allerede på %s. \n"
-"Klik \"Overfør\" for at overskrive.\n"
-"Du kan også give et nyt printernavn, eller overspringe denne printer."
-
-#: printer/printerdrake.pm:4219
-#, c-format
-msgid "New printer name"
-msgstr "Nyt printernavn"
-
-#: printer/printerdrake.pm:4222
-#, c-format
-msgid "Transferring %s..."
-msgstr "Overfører %s ..."
-
-#: printer/printerdrake.pm:4233
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Du har overført din tidligere standard-printer '%s', skal den også være "
-"standard-printer under det nye printersystem %s?"
-
-#: printer/printerdrake.pm:4243
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Opfrisker printerdata ..."
-
-#: printer/printerdrake.pm:4253
-#, c-format
-msgid "Starting network..."
-msgstr "Starter netværk ..."
-
-#: printer/printerdrake.pm:4296 printer/printerdrake.pm:4300
-#: printer/printerdrake.pm:4302
-#, c-format
-msgid "Configure the network now"
-msgstr "Konfigurér netværket nu"
-
-#: printer/printerdrake.pm:4297
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Netværksfunktionalitet ikke konfigureret"
-
-#: printer/printerdrake.pm:4298
-#, c-format
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"Du er ved at konfigurere en ekstern printer. Dette kræver en virkende "
-"netværksadgang, men dit netværk er endnu ikke konfigureret. Hvis du vil "
-"fortsætte uden en netværkskonfiguration, vil du ikke kunne bruge printeren "
-"som du konfigurerer nu. Hvordan ønsker du at fortsætte?"
-
-#: printer/printerdrake.pm:4301
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Fortsæt med konfigurering af netværk"
-
-#: printer/printerdrake.pm:4332
-#, c-format
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network is accessible after booting your "
-"system and correct the configuration using the %s Control Center, section "
-"\"Network & Internet\"/\"Connection\", and afterwards set up the printer, "
-"also using the %s Control Center, section \"Hardware\"/\"Printer\""
-msgstr ""
-"Netværksopsætningen lavet under installationen kan ikke startes nu. Tjek om "
-"netværket bliver tilgængeligt efter opstart af dit system, og ret "
-"konfigurationen med %s Kontrolcenter, afsnittet 'Netværk og internet'/ "
-"'Forbindelse', og konfigurér derefter printeren også med %s Kontrolcenter, "
-"afsnittet om 'Maskinel'/'Printer'"
-
-#: printer/printerdrake.pm:4333
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Netværksadgangen kørte ikke og kunne ikke startes. Tjek din konfiguration og "
-"dit udstyr. Prøv derefter at konfigurere din eksterne printer igen."
-
-#: printer/printerdrake.pm:4343
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Genstarter printsystemet ..."
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "high"
-msgstr "høj"
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "paranoid"
-msgstr "paranoid"
-
-#: printer/printerdrake.pm:4376
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Installerer et printersystem på sikkerhedsniveauet %s"
-
-#: printer/printerdrake.pm:4377
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessible by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Du er ved at installere printsystemet %s på et system kørende på "
-"sikkerhedsniveau %s.\n"
-"\n"
-"Dette printsystem kører som en dæmon (baggrundsproces) som venter på "
-"printeropgaver og behandler dem. Denne dæmon er også tilgængelig for "
-"eksterne maskiner via netværket, og derfor er det et muligt angrebspunkt. "
-"Derfor bliver kun nogle få udvalgte dæmoner startet op som standard i dette "
-"sikkerhedsniveau.\n"
-"\n"
-"Ønsker du virkelig at konfigurere udskrivning på denne maskine?"
-
-#: printer/printerdrake.pm:4413
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Starter printsystemet ved opstart"
-
-#: printer/printerdrake.pm:4414
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"Printsystemet (%s) vil ikke blive startet automatisk, når maskinen startes "
-"op.\n"
-"Det er muligt at den automatiske opstart blev slået fra ved ændring til et "
-"højere sikkerhedsniveau, fordi printsystemet er et muligt angrebspunkt.\n"
-"\n"
-"Ønsker du at have den automatiske opstart af printsystemet slået til igen?"
-
-#: printer/printerdrake.pm:4437
-#, c-format
-msgid "Checking installed software..."
-msgstr "Tjekker installeret programmel..."
-
-#: printer/printerdrake.pm:4443
-#, c-format
-msgid "Removing %s..."
-msgstr "Fjerner %s ..."
-
-#: printer/printerdrake.pm:4447
-#, c-format
-msgid "Could not remove the %s printing system!"
-msgstr "Kunne ikke fjerne '%s'-udskriftssystemet!"
-
-#: printer/printerdrake.pm:4471
-#, c-format
-msgid "Installing %s..."
-msgstr "Installerer %s..."
-
-#: printer/printerdrake.pm:4475
-#, c-format
-msgid "Could not install the %s printing system!"
-msgstr "Kunne ikke installere %s-udskriftssystemet!"
-
-#: printer/printerdrake.pm:4543
-#, c-format
-msgid ""
-"In this mode there is no local printing system, all printing requests go "
-"directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-"I denne tilstand er der ikke noget lokalt udskriftssystem, alle "
-"udskriftsanmodninger går direkte til serveren angivet nedenfor. Bemærk at "
-"det så ikke er muligt at definere lokale printkøer, og at hvis den angivne "
-"server er nede, så kan der slet ikke udskrives fra denne maskine."
-
-#: printer/printerdrake.pm:4545
-#, c-format
-msgid ""
-"Enter the host name or IP of your CUPS server and click OK if you want to "
-"use this mode, click \"Quit\" otherwise."
-msgstr ""
-"Indtast værtsnavnet eller IP-numme på din CUPS-server oh klik O.k. hvis du "
-"ønsker at bruge denne tilstand, ellers klik 'Afslut'."
-
-#: printer/printerdrake.pm:4559
-#, c-format
-msgid "Name or IP of remote server:"
-msgstr "Navn eller IP på ekstern server"
-
-#: printer/printerdrake.pm:4579
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Sætter standard printer..."
-
-#: printer/printerdrake.pm:4599
-#, c-format
-msgid "Local CUPS printing system or remote CUPS server?"
-msgstr "Lokalt CUPS-udskrivningsystem eller ekstern CUPS server?"
-
-#: printer/printerdrake.pm:4600
-#, c-format
-msgid "The CUPS printing system can be used in two ways: "
-msgstr "CUPS-udskrivningssystemet kan bruges på to måder: "
-
-#: printer/printerdrake.pm:4602
-#, c-format
-msgid "1. The CUPS printing system can run locally. "
-msgstr "1. CUPS-udskrivningssystemet kan køre lokalt. "
-
-#: printer/printerdrake.pm:4603
-#, c-format
-msgid ""
-"Then locally connected printers can be used and remote printers on other "
-"CUPS servers in the same network are automatically discovered. "
-msgstr ""
-"De lokalt forbundne printere kan bruges, og eksterne printere på andre CUPS-"
-"servere i det samme netværk bliver automatisk opdaget. "
-
-#: printer/printerdrake.pm:4604
-#, c-format
-msgid ""
-"Disadvantage of this approach is, that more resources on the local machine "
-"are needed: Additional software packages need to be installed, the CUPS "
-"daemon has to run in the background and needs some memory, and the IPP port "
-"(port 631) is opened. "
-msgstr ""
-"Bagdelen ved denne metode er at flere ressourcer kræves på den lokale "
-"maskine. Yderligere programpakker skal installeres, CUPS-dæmonen skal køre i "
-"baggrunden og kræver nogen hukommelse, og IPP porten (port 631) er åbnet. "
-
-#: printer/printerdrake.pm:4606
-#, c-format
-msgid "2. All printing requests are immediately sent to a remote CUPS server. "
-msgstr ""
-"2. Alle udskriftsanmodninger sendes øjeblikkeligt til en ekstern CUPS-"
-"server. "
-
-#: printer/printerdrake.pm:4607
-#, c-format
-msgid ""
-"Here local resource occupation is reduced to a minimum. No CUPS daemon is "
-"started or port opened, no software infrastructure for setting up local "
-"print queues is installed, so less memory and disk space is used. "
-msgstr ""
-"Her er den lokale ressourceanvendelse begrænset til et minimum. Ingen CUPS-"
-"dæmon startes eller -port åbnes, ingen programmelinfrastruktur for opsætning "
-"af lokale printkøer bliver installeret, så mindre hukommelse og diskplads "
-"bruges. "
-
-#: printer/printerdrake.pm:4608
-#, c-format
-msgid ""
-"Disadvantage is that it is not possible to define local printers then and if "
-"the specified server is down it cannot be printed at all from this machine. "
-msgstr ""
-"Bagdelen er, at det ikke er muligt så at definere lokale printere, og hvis "
-"den angivne server er nede, kan der slet ikke udskrives fra denne maskine. "
-
-#: printer/printerdrake.pm:4610
-#, c-format
-msgid "How should CUPS be set up on your machine?"
-msgstr "Hvordan bør CUPS opsættes på din maskine?"
-
-#: printer/printerdrake.pm:4614 printer/printerdrake.pm:4629
-#: printer/printerdrake.pm:4633 printer/printerdrake.pm:4639
-#, c-format
-msgid "Remote server, specify Name or IP here:"
-msgstr "Fjernserver, angiv navn eller IP her:"
-
-#: printer/printerdrake.pm:4628
-#, c-format
-msgid "Local CUPS printing system"
-msgstr "Lokalt CUPS-udskrivningssystem"
-
-#: printer/printerdrake.pm:4667
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Vælg printerkø-behandler"
-
-#: printer/printerdrake.pm:4668
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Hvilket printersystem (spooler) ønsker du at bruge?"
-
-#: printer/printerdrake.pm:4717
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Kunne ikke konfigurere printer '%s'!"
-
-#: printer/printerdrake.pm:4732
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Installerer Foomatic..."
-
-#: printer/printerdrake.pm:4738
-#, c-format
-msgid "Could not install %s packages, %s cannot be started!"
-msgstr "Kunne ikke installere %s pakkerne. %s kan ikke startes!"
-
-#: printer/printerdrake.pm:4933
-#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it. "
-msgstr ""
-"De følgende printere er konfigureret. Dobbeltklik på en printer for at ændre "
-"dens indstillinger, for at gøre den til standard-printer, eller for at se "
-"information om den."
-
-#: printer/printerdrake.pm:4963
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Vís alle tilgængelige eksterne CUPS-printere"
-
-#: printer/printerdrake.pm:4964
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr "Opfrisk printerliste (for at vise alle tilgængelige eksterne CUPS-printere)"
-
-#: printer/printerdrake.pm:4975
-#, c-format
-msgid "CUPS configuration"
-msgstr "CUPS-konfiguration"
-
-#: printer/printerdrake.pm:4996
-#, c-format
-msgid "Change the printing system"
-msgstr "Ændr printsystemet"
-
-#: printer/printerdrake.pm:5005
-#, c-format
-msgid "Normal Mode"
-msgstr "Normal udgave"
-
-#: printer/printerdrake.pm:5006
-#, c-format
-msgid "Expert Mode"
-msgstr "Eksperttilstand"
-
-#: printer/printerdrake.pm:5284 printer/printerdrake.pm:5340
-#: printer/printerdrake.pm:5426 printer/printerdrake.pm:5435
-#, c-format
-msgid "Printer options"
-msgstr "Printer-muligheder"
-
-#: printer/printerdrake.pm:5320
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Ændr printerkonfiguration"
-
-#: printer/printerdrake.pm:5322
-#, c-format
-msgid ""
-"Printer %s%s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Printer %s%s\n"
-"Hvad ønsker du at forandre på, på denne printer?"
-
-#: printer/printerdrake.pm:5327
-#, c-format
-msgid "This printer is disabled"
-msgstr "Denne printer er deaktiveret"
-
-#: printer/printerdrake.pm:5329
-#, c-format
-msgid "Do it!"
-msgstr "Gør det!"
-
-#: printer/printerdrake.pm:5335 printer/printerdrake.pm:5400
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Printernavn, beskrivelse, sted"
-
-#: printer/printerdrake.pm:5337 printer/printerdrake.pm:5419
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Printerproducent, model, driver"
-
-#: printer/printerdrake.pm:5338 printer/printerdrake.pm:5420
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Printerproducent, model"
-
-#: printer/printerdrake.pm:5342 printer/printerdrake.pm:5430
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Sæt printeren som standard-printer"
-
-#: printer/printerdrake.pm:5347 printer/printerdrake.pm:5436
-#: printer/printerdrake.pm:5438 printer/printerdrake.pm:5447
-#, c-format
-msgid "Enable Printer"
-msgstr "Aktivér printer"
-
-#: printer/printerdrake.pm:5350 printer/printerdrake.pm:5441
-#: printer/printerdrake.pm:5442 printer/printerdrake.pm:5444
-#, c-format
-msgid "Disable Printer"
-msgstr "Deaktivér printer"
-
-#: printer/printerdrake.pm:5354 printer/printerdrake.pm:5448
-#, c-format
-msgid "Printer communication error handling"
-msgstr "Håndtering af fejl ved printeropkobling"
-
-#: printer/printerdrake.pm:5355 printer/printerdrake.pm:5452
-#, c-format
-msgid "Print test pages"
-msgstr "Udskriver testsider"
-
-#: printer/printerdrake.pm:5356 printer/printerdrake.pm:5454
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Lær hvordan denne printer bruges"
-
-#: printer/printerdrake.pm:5357 printer/printerdrake.pm:5456
-#, c-format
-msgid "Remove printer"
-msgstr "Fjern printer"
-
-#: printer/printerdrake.pm:5408
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Fjerner gammel printer \"%s\"..."
-
-#: printer/printerdrake.pm:5439
-#, c-format
-msgid "Printer \"%s\" is now enabled."
-msgstr "Printer \"%s\" er nu aktiveret."
-
-#: printer/printerdrake.pm:5445
-#, c-format
-msgid "Printer \"%s\" is now disabled."
-msgstr "Printer '%s' er nu deaktiveret."
-
-#: printer/printerdrake.pm:5487
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Ønsker du virkelig at fjerne printeren \"%s\"?"
-
-#: printer/printerdrake.pm:5491
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Fjerner printer \"%s\"..."
-
-#: printer/printerdrake.pm:5515
-#, c-format
-msgid "Default printer"
-msgstr "Standard printer"
-
-#: printer/printerdrake.pm:5516
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Printeren '%s' er nu sat som standard-printer."
-
#: raid.pm:42
#, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "Kan ikke tilføje en partition til _formatéret_ RAID %s"
-#: raid.pm:148
+#: raid.pm:150
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ikke nok partitioner til at benytte RAID level %d\n"
-#: scanner.pm:96
+#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr "Kunne ikke oprette kataloget /usr/share/sane/firmware!"
-#: scanner.pm:107
+#: scanner.pm:106
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr "Kunne ikke oprette lænken /usr/share/sane/%s!"
-#: scanner.pm:114
+#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr "Kunne ikke kopiere firmware-fil %s til /usr/share/sane/firmware!"
-#: scanner.pm:121
+#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr "Kunne ikke sætte tilladelser på firmwarefil %s!"
-#: scanner.pm:200 standalone/scannerdrake:66 standalone/scannerdrake:70
-#: standalone/scannerdrake:78 standalone/scannerdrake:321
-#: standalone/scannerdrake:370 standalone/scannerdrake:463
-#: standalone/scannerdrake:507 standalone/scannerdrake:511
-#: standalone/scannerdrake:533 standalone/scannerdrake:598
+#: scanner.pm:199
#, c-format
msgid "Scannerdrake"
msgstr "Skannerdrake"
-#: scanner.pm:201 standalone/scannerdrake:964
+#: scanner.pm:200
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
-msgstr "Kunne ikke installere de nødvendige pakker til deling af dine skannere."
+msgstr ""
+"Kunne ikke installere de nødvendige pakker til deling af dine skannere."
-#: scanner.pm:202
+#: scanner.pm:201
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
-msgstr "Dinne skannere vil ikke være tilgængelige for brugere, der ikke er root."
+msgstr ""
+"Dinne skannere vil ikke være tilgængelige for brugere, der ikke er root."
#: security/help.pm:11
#, c-format
@@ -15240,12 +5169,12 @@ msgstr "Acceptér/afvis falske IPv4-fejlmeddelelser."
#: security/help.pm:13
#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
+msgid "Accept/Refuse broadcasted icmp echo."
msgstr "Acceptér/afvis rundkastet icmp echo."
#: security/help.pm:15
#, c-format
-msgid " Accept/Refuse icmp echo."
+msgid "Accept/Refuse icmp echo."
msgstr "Acceptér/afvis icmp echo."
#: security/help.pm:17
@@ -15410,7 +5339,7 @@ msgstr ""
"Aktivér/deaktivér beskyttelse mod spoofning af navneopslag. Hvis\n"
"'%s' er sand rapporteres også til syslog."
-#: security/help.pm:80 standalone/draksec:215
+#: security/help.pm:80
#, c-format
msgid "Security Alerts:"
msgstr "Sikkerhedspåmindelser:"
@@ -15437,10 +5366,12 @@ msgstr "Aktivér/deaktivér msec timevise sikkerhedskontrol."
#: security/help.pm:90
#, c-format
-msgid " Enabling su only from members of the wheel group or allow su from any user."
+msgid ""
+"Enable su only from members of the wheel group. If set to no, allows su from "
+"any user."
msgstr ""
-"Aktiverer 'su' kun fra medlemmer af wheel-gruppen, eller tillad 'su' fra "
-"enhver bruger."
+"Aktivér 'su' kun fra medlemmer af wheel-gruppen, eller hvis sat til 'nej' så "
+"tillades 'su' fra enhver bruger."
#: security/help.pm:92
#, c-format
@@ -15454,12 +5385,12 @@ msgstr "Aktivér/deaktivér åbenhedstjek på ethernetkort."
#: security/help.pm:96
#, c-format
-msgid " Activate/Disable daily security check."
+msgid "Activate/Disable daily security check."
msgstr "Aktivér/deaktivér daglig sikkerhedskontrol."
#: security/help.pm:98
#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
+msgid "Enable/Disable sulogin(8) in single user level."
msgstr "Aktivér/deaktivér sulogin(8) på enkeltbrugerniveau."
#: security/help.pm:100
@@ -15479,7 +5410,8 @@ msgstr ""
#: security/help.pm:104
#, c-format
msgid "Set the password history length to prevent password reuse."
-msgstr "Sæt længden på adgangskodehistorik for at forhindre genbrug af adgangskoder."
+msgstr ""
+"Sæt længden på adgangskodehistorik for at forhindre genbrug af adgangskoder."
#: security/help.pm:106
#, c-format
@@ -15522,12 +5454,14 @@ msgstr ""
#: security/help.pm:117
#, c-format
msgid "if set to yes, check permissions of files in the users' home."
-msgstr "hvis sat til ja, så tjek rettigheder på filer i brugernes hjemmekataloger."
+msgstr ""
+"hvis sat til ja, så tjek rettigheder på filer i brugernes hjemmekataloger."
#: security/help.pm:118
#, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
-msgstr "hvis sat til ja, så tjek om netværksgrænsesnittene er fuldstændigt åbne."
+msgstr ""
+"hvis sat til ja, så tjek om netværksgrænsesnittene er fuldstændigt åbne."
#: security/help.pm:119
#, c-format
@@ -15571,7 +5505,8 @@ msgstr "hvis sat til ja, så kør chkrootkit-kontroller."
#: security/help.pm:127
#, c-format
-msgid "if set, send the mail report to this email address else send it to root."
+msgid ""
+"if set, send the mail report to this email address else send it to root."
msgstr ""
"hvis sat, så send postrapporter til denne postadresse, ellers send dem til "
"root."
@@ -15604,7 +5539,8 @@ msgstr "hvis sat til ja, så rapportér kontrolresultat på tty-en."
#: security/help.pm:134
#, c-format
msgid "Set shell commands history size. A value of -1 means unlimited."
-msgstr "Sæt historiklængden for kommandoskallen. En værdi på -1 betyder ubegrænset."
+msgstr ""
+"Sæt historiklængden for kommandoskallen. En værdi på -1 betyder ubegrænset."
#: security/help.pm:136
#, c-format
@@ -15723,10 +5659,8 @@ msgstr "Aktivér/deaktivér msec timevise sikkerhedskontrol"
#: security/l10n.pm:32
#, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr ""
-"Aktiverer 'su' kun fra medlemmer af wheel-gruppen, eller tillad 'su' fra "
-"enhver bruger"
+msgid "Enable su only from the wheel group members"
+msgstr "Aktivér 'su' kun fra medlemmer af wheel-gruppen"
#: security/l10n.pm:33
#, c-format
@@ -15756,7 +5690,8 @@ msgstr "Ingen ældning af adgangskode for"
#: security/l10n.pm:38
#, c-format
msgid "Set password expiration and account inactivation delays"
-msgstr "Sæt udløbstid for adgangskoder og forsinkelsestider for deaktivering af konti"
+msgstr ""
+"Sæt udløbstid for adgangskoder og forsinkelsestider for deaktivering af konti"
#: security/l10n.pm:39
#, c-format
@@ -15850,8 +5785,8 @@ msgstr "Kør chkrootkit-kontroller"
#: security/l10n.pm:57
#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "Send ikke unødvendig post"
+msgid "Do not send empty mail reports"
+msgstr "Send ikke tomme e-postrapporter"
#: security/l10n.pm:58
#, c-format
@@ -15890,6 +5825,11 @@ msgstr "Velkommen til Crackere"
msgid "Poor"
msgstr "Ringe"
+#: security/level.pm:12
+#, c-format
+msgid "Standard"
+msgstr "Standard"
+
#: security/level.pm:13
#, c-format
msgid "High"
@@ -15970,6 +5910,11 @@ msgstr ""
#: security/level.pm:55
#, c-format
+msgid "Security"
+msgstr "Sikkerhed"
+
+#: security/level.pm:55
+#, c-format
msgid "DrakSec Basic Options"
msgstr "Basale valgmuligheder for DrakSec"
@@ -15990,8 +5935,10 @@ msgstr "Brug libsafe for servere"
#: security/level.pm:64
#, c-format
-msgid "A library which defends against buffer overflow and format string attacks."
-msgstr "Et bibliotek som beskytter mod angreb via bufferoverløb og formatstrenge."
+msgid ""
+"A library which defends against buffer overflow and format string attacks."
+msgstr ""
+"Et bibliotek som beskytter mod angreb via bufferoverløb og formatstrenge."
#: security/level.pm:65
#, c-format
@@ -16074,7 +6021,8 @@ msgstr ""
#: services.pm:35
#, c-format
-msgid "Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr "Apache er en webserver. Den bruges til at betjene HTML-filer og CGI."
#: services.pm:36
@@ -16329,52 +6277,67 @@ msgstr "Indlæs driverne for dine usb-enheder."
msgid "Starts the X Font Server (this is mandatory for Xorg to run)."
msgstr "Starter X-font serveren (dette er obligatorisk for at Xorg skal køre)."
-#: services.pm:115 services.pm:157
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Vælg hvilke tjenester der skal startes automatisk ved opstart"
-
-#: services.pm:127 standalone/draksambashare:111
+#: services.pm:114
#, c-format
msgid "Printing"
msgstr "Printning"
-#: services.pm:128
+#: services.pm:115
#, c-format
msgid "Internet"
msgstr "Internet"
-#: services.pm:131
+#: services.pm:118
#, c-format
msgid "File sharing"
msgstr "Fildeling"
-#: services.pm:138
+#: services.pm:120
+#, c-format
+msgid "System"
+msgstr "System"
+
+#: services.pm:125
#, c-format
msgid "Remote Administration"
msgstr "Ekstern administration"
-#: services.pm:146
+#: services.pm:133
#, c-format
msgid "Database Server"
msgstr "Databaseserver"
-#: services.pm:209
+#: services.pm:144 services.pm:180
+#, c-format
+msgid "Services"
+msgstr "Tjenester"
+
+#: services.pm:144
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Vælg hvilke tjenester der skal startes automatisk ved opstart"
+
+#: services.pm:162
+#, c-format
+msgid "Services: %d activated for %d registered"
+msgstr "Tjenester: %d aktiverede for %d registrerede"
+
+#: services.pm:196
#, c-format
msgid "running"
msgstr "kører"
-#: services.pm:209
+#: services.pm:196
#, c-format
msgid "stopped"
msgstr "stoppet"
-#: services.pm:213
+#: services.pm:201
#, c-format
msgid "Services and daemons"
msgstr "Tjenester og dæmoner"
-#: services.pm:219
+#: services.pm:207
#, c-format
msgid ""
"No additional information\n"
@@ -16383,480 +6346,32 @@ msgstr ""
"Beklager, der er ingen ekstra\n"
"information om denne tjeneste."
-#: services.pm:224 ugtk2.pm:1009
+#: services.pm:212 ugtk2.pm:898
#, c-format
msgid "Info"
msgstr "Info"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "Start when requested"
msgstr "Start når der bedes om det"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "On boot"
msgstr "Ved opstart"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Start"
msgstr "Start"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Stop"
msgstr "Stop"
-#: share/advertising/01.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Packs"
-msgstr "Mandriva Linux 2006: Pakker"
-
-#: share/advertising/02.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More features"
-msgstr "Mandriva Linux 2006: Flere faciliteter"
-
-#: share/advertising/03.pl:3
-#, c-format
-msgid "Interactive firewall"
-msgstr "Interaktiv brandmur"
-
-#: share/advertising/04.pl:3
-#, c-format
-msgid "Desktop search"
-msgstr "Søgning på skrivebord"
-
-#: share/advertising/05.pl:3
-#, c-format
-msgid "New package manager"
-msgstr "Ny pakke-håndtering"
-
-#: share/advertising/06.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More performances"
-msgstr "Mandriva Linux 2006: Mere ydelse"
-
-#: share/advertising/07.pl:3
-#, c-format
-msgid "Latest kernel and GCC"
-msgstr "Seneste kerne og GCC"
-
-#: share/advertising/08.pl:3
-#, c-format
-msgid "High Availibility"
-msgstr "Høj tilgængelighed"
-
-#: share/advertising/09.pl:3
-#, c-format
-msgid "Delta RPM"
-msgstr "Delta RPM"
-
-#: share/advertising/10.pl:3
-#, c-format
-msgid "Low resources setup"
-msgstr "Opsætning af lavt ressourceforbrug"
-
-#: share/advertising/11.pl:3
-#, c-format
-msgid "Boot time reduction"
-msgstr "Reduktion af opstartstid"
-
-#: share/advertising/12.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Easier to use"
-msgstr "Mandriva Linux 2006: Nemmere at bruge"
-
-#: share/advertising/13.pl:3
-#, c-format
-msgid "Latest graphical interfaces: KDE and GNOME"
-msgstr "Nyeste grafiske brugergrænseflader: KDE og GNOME"
-
-#: share/advertising/14.pl:3
-#, c-format
-msgid "auto-installation servers"
-msgstr "servere der installeres automatisk"
-
-#: share/advertising/15.pl:3
-#, c-format
-msgid "Easy and quick installation"
-msgstr "Nem og hurtig installation"
-
-#: share/advertising/16.pl:3
-#, c-format
-msgid "Easy configuration thanks to 60 wizards"
-msgstr "Nem konfiguration takket være 60 hjælpeprogrammer"
-
-#: share/advertising/17.pl:3
-#, c-format
-msgid "Look and feel improved"
-msgstr "Forbedret udseende"
-
-#: share/advertising/18.pl:3
-#, c-format
-msgid "New webmin theme"
-msgstr "Nyt tema for webmin"
-
-#: share/advertising/19.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More support"
-msgstr "Mandriva Linux 2006: Mere hjælp"
-
-#: share/advertising/20.pl:3
-#, c-format
-msgid "Better Hardware support"
-msgstr "Bedre understøttelse af udstyr"
-
-#: share/advertising/21.pl:3
-#, c-format
-msgid "Xen support"
-msgstr "Understøttelse af Xen"
-
-#: share/advertising/22.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More information"
-msgstr "Mandriva Linux 2006: Mere information"
-
-#: share/advertising/23.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Where to buy?"
-msgstr "Mandriva Linux 2006: Hvor kan det købes?"
-
-#: share/advertising/24.pl:3
-#, c-format
-msgid "Where to find technical assistance?"
-msgstr "Hvor kan man finde teknisk assistance?"
-
-#: share/advertising/25.pl:3
-#, c-format
-msgid "How to join the Mandriva Linux community?"
-msgstr "Hvordan kommer man med i Mandriva Linux-fællesskabet?"
-
-#: share/advertising/26.pl:3
-#, c-format
-msgid "How to keep your system up-to-date?"
-msgstr "Hvordan kan du holde dit system opdateret?"
-
-#: share/advertising/intel.pl:3
-#, c-format
-msgid "Intel Software"
-msgstr "Intel-programmel"
-
-#: share/advertising/skype.pl:3
-#, c-format
-msgid "Skype lets you make calls through the Internet for free."
-msgstr "Skype lader dig lave gratis telefonopkal over internettet."
-
-#: share/compssUsers.pl:26
-#, c-format
-msgid "Office Workstation"
-msgstr "Kontor-arbejdsstation"
-
-#: share/compssUsers.pl:28
-#, c-format
-msgid ""
-"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
-"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
-msgstr ""
-"Kontor-programmer: Tekstbehandling (OpenOffice.org, kword, abiword), "
-"regneark (OpenOffice.org, kspread, gnumeric), pdf-visere, o.lign."
-
-#: share/compssUsers.pl:29
-#, c-format
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Kontor-programmer: Tekstbehandler (kword, abiword), regneark (kspread, "
-"gnumeric), pdf-visere, o.lign."
-
-#: share/compssUsers.pl:34
-#, c-format
-msgid "Game station"
-msgstr "Spillemaskine"
-
-#: share/compssUsers.pl:35
-#, c-format
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Underholdnings-programmer: arkade, bræt, strategi, osv."
-
-#: share/compssUsers.pl:38
-#, c-format
-msgid "Multimedia station"
-msgstr "Multimedie-station"
-
-#: share/compssUsers.pl:39
-#, c-format
-msgid "Sound and video playing/editing programs"
-msgstr "Lyd- og video-afspillere og redigeringsværktøjer"
-
-#: share/compssUsers.pl:44
-#, c-format
-msgid "Internet station"
-msgstr "Internet-station"
-
-#: share/compssUsers.pl:45
-#, c-format
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Værktøjssæt til at læse samt sende post og nyheder (mutt, tin..) , og til at "
-"browse på nettet"
-
-#: share/compssUsers.pl:50
-#, c-format
-msgid "Network Computer (client)"
-msgstr "Netværksmaskine (klient)"
-
-#: share/compssUsers.pl:51
-#, c-format
-msgid "Clients for different protocols including ssh"
-msgstr "Klienter for forskellige protokoller inklusiv ssh"
-
-#: share/compssUsers.pl:55
-#, c-format
-msgid "Configuration"
-msgstr "Konfiguration"
-
-#: share/compssUsers.pl:56
-#, c-format
-msgid "Tools to ease the configuration of your computer"
-msgstr "Værktøjer til at lette indstillingen af din maskine"
-
-#: share/compssUsers.pl:60
-#, c-format
-msgid "Console Tools"
-msgstr "Konsolværktøjer"
-
-#: share/compssUsers.pl:61
-#, c-format
-msgid "Editors, shells, file tools, terminals"
-msgstr "Redigeringsværktøjer, skaller, filværktøjer, terminaler"
-
-#: share/compssUsers.pl:66 share/compssUsers.pl:170
-#, c-format
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C og C++ udviklingsbiblioteker, programmer, og include-filer."
-
-#: share/compssUsers.pl:70 share/compssUsers.pl:174
-#, c-format
-msgid "Documentation"
-msgstr "Dokumentation"
-
-#: share/compssUsers.pl:71 share/compssUsers.pl:175
-#, c-format
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Bøger og vejledninger om Linux og Frit Programmel"
-
-#: share/compssUsers.pl:75 share/compssUsers.pl:178
-#, c-format
-msgid "LSB"
-msgstr "LSB"
-
-#: share/compssUsers.pl:76 share/compssUsers.pl:179
-#, c-format
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Linux Standard Base. Understøttelse for tredjeparts-programmer"
-
-#: share/compssUsers.pl:86
-#, c-format
-msgid "Apache"
-msgstr "Apache"
-
-#: share/compssUsers.pl:89
-#, c-format
-msgid "Groupware"
-msgstr "Gruppeprogrammel"
-
-#: share/compssUsers.pl:90
-#, c-format
-msgid "Kolab Server"
-msgstr "Kolab-server"
-
-#: share/compssUsers.pl:93 share/compssUsers.pl:134
-#, c-format
-msgid "Firewall/Router"
-msgstr "Brandmur/ruter"
-
-#: share/compssUsers.pl:94 share/compssUsers.pl:135
-#, c-format
-msgid "Internet gateway"
-msgstr "Internetadgang"
-
-#: share/compssUsers.pl:97
-#, c-format
-msgid "Mail/News"
-msgstr "Post og nyheder"
-
-#: share/compssUsers.pl:98
-#, c-format
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix postserver, inn nyhedsserver"
-
-#: share/compssUsers.pl:101
-#, c-format
-msgid "Directory Server"
-msgstr "Katalogserver"
-
-#: share/compssUsers.pl:105
-#, c-format
-msgid "FTP Server"
-msgstr "FTP-server"
-
-#: share/compssUsers.pl:106
-#, c-format
-msgid "ProFTPd"
-msgstr "ProFTPd"
-
-#: share/compssUsers.pl:109
-#, c-format
-msgid "DNS/NIS"
-msgstr "DNS/NIS"
-
-#: share/compssUsers.pl:110
-#, c-format
-msgid "Domain Name and Network Information Server"
-msgstr "Server for domænenavne (DNS) og netværksinformation (NIS)"
-
-#: share/compssUsers.pl:113
-#, c-format
-msgid "File and Printer Sharing Server"
-msgstr "Fil- og Printerdelings-server"
-
-#: share/compssUsers.pl:114
-#, c-format
-msgid "NFS Server, Samba server"
-msgstr "NFS-server, Samba-server"
-
-#: share/compssUsers.pl:117 share/compssUsers.pl:130
-#, c-format
-msgid "Database"
-msgstr "Database"
-
-#: share/compssUsers.pl:118
-#, c-format
-msgid "PostgreSQL and MySQL Database Server"
-msgstr "PostgreSQL og MySQL database-server"
-
-#: share/compssUsers.pl:122
-#, c-format
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: share/compssUsers.pl:123
-#, c-format
-msgid "Apache, Pro-ftpd"
-msgstr "Apache og Pro-ftpd"
-
-#: share/compssUsers.pl:126
-#, c-format
-msgid "Mail"
-msgstr "Post"
-
-#: share/compssUsers.pl:127
-#, c-format
-msgid "Postfix mail server"
-msgstr "Postfix postserver"
-
-#: share/compssUsers.pl:131
-#, c-format
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL eller MySQL database-server"
-
-#: share/compssUsers.pl:138
-#, c-format
-msgid "Network Computer server"
-msgstr "Netværksmaskine server"
-
-#: share/compssUsers.pl:139
-#, c-format
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS-vært, SMB-vært, mellemvært (proxy), SSH-vært"
-
-#: share/compssUsers.pl:147
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE-arbejdsstation"
-
-#: share/compssUsers.pl:148
-#, c-format
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"K Desktop -miljøet, det grundlæggende grafiske miljø, med en vifte af "
-"supplerende værktøjer."
-
-#: share/compssUsers.pl:152
-#, c-format
-msgid "GNOME Workstation"
-msgstr "Gnome-arbejdsstation"
-
-#: share/compssUsers.pl:153
-#, c-format
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr "Et grafisk miljø med brugervenlig samling af programmer og værktøjer"
-
-#: share/compssUsers.pl:156
-#, c-format
-msgid "IceWm Desktop"
-msgstr "IceWm Desktop"
-
-#: share/compssUsers.pl:160
-#, c-format
-msgid "Other Graphical Desktops"
-msgstr "Andre grafiske miljøer"
-
-#: share/compssUsers.pl:161
-#, c-format
-msgid "Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Window Maker, Enlightenment, Fvwm, etc"
-
-#: share/compssUsers.pl:184
-#, c-format
-msgid "Utilities"
-msgstr "Nytteprogrammer"
-
-#: share/compssUsers.pl:186 share/compssUsers.pl:187 standalone/logdrake:384
-#, c-format
-msgid "SSH Server"
-msgstr "SSH-server"
-
-#: share/compssUsers.pl:191
-#, c-format
-msgid "Webmin"
-msgstr "Webmin"
-
-#: share/compssUsers.pl:192
-#, c-format
-msgid "Webmin Remote Configuration Server"
-msgstr "Webmin ekstern konfigurationsserver"
-
-#: share/compssUsers.pl:196
-#, c-format
-msgid "Network Utilities/Monitoring"
-msgstr "Nytteprogrammer og overvågning af netværk"
-
-#: share/compssUsers.pl:197
-#, c-format
-msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
-msgstr "Overvågningsværktøjer, proceskontering, tcpdump, nmap, ..."
-
-#: share/compssUsers.pl:201
-#, c-format
-msgid "Mandriva Wizards"
-msgstr "Mandriva konfigurationsprogrammer"
-
-#: share/compssUsers.pl:202
-#, c-format
-msgid "Wizards to configure server"
-msgstr "Hjæpeprogrammer til at konfigurere server"
-
-#: standalone.pm:23
+#: standalone.pm:24
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
@@ -16871,7 +6386,8 @@ msgid ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
msgstr ""
"Dette program er gratis programmel; du kan redistribuere det og/eller ændre\n"
"det i henhold til betingelserne i GNU General Public License, som publiceret "
@@ -16886,10 +6402,10 @@ msgstr ""
"\n"
"Du skulle have modtaget en kopi af GNU General Public License\n"
"sammen med dette program; hvis ikke, skriv til Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\n"
"USA.\n"
-#: standalone.pm:42
+#: standalone.pm:43
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
@@ -16917,7 +6433,7 @@ msgstr ""
"--help : vís denne besked.\n"
"--version : vís versionsnummer.\n"
-#: standalone.pm:54
+#: standalone.pm:55
#, c-format
msgid ""
"[--boot] [--splash]\n"
@@ -16932,7 +6448,7 @@ msgstr ""
" --splash - aktivér for at konfigurere opstartstema\n"
"standard-tilstand: tilbyd at konfigurere autologin-facilitet"
-#: standalone.pm:59
+#: standalone.pm:60
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
@@ -16949,7 +6465,7 @@ msgstr ""
" --report - program bær være én af Mandriva Linux' værktøjer\n"
" --incident - program bær være én af Mandriva Linux' værktøjer"
-#: standalone.pm:65
+#: standalone.pm:66
#, c-format
msgid ""
"[--add]\n"
@@ -16966,7 +6482,7 @@ msgstr ""
" --internet - konfigurér internet\n"
" --wizard - det samme som --add"
-#: standalone.pm:71
+#: standalone.pm:72
#, c-format
msgid ""
"\n"
@@ -16996,7 +6512,7 @@ msgstr ""
" : applikationsnavn, som \"so\" for staroffice \n"
" : og 'gs' for ghostscript - kun for denne."
-#: standalone.pm:86
+#: standalone.pm:87
#, c-format
msgid ""
"[OPTIONS]...\n"
@@ -17028,17 +6544,17 @@ msgstr ""
"--delclient : tilføj en klientmaskine til MTS (kræver MAC-adresse, IP, "
"nbi aftryksnavn)"
-#: standalone.pm:98
+#: standalone.pm:99
#, c-format
msgid "[keyboard]"
msgstr "[tastatur]"
-#: standalone.pm:99
+#: standalone.pm:100
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr "[--file=minfil] [--word=mitord] [--explain=regudtryk] [--alert]"
-#: standalone.pm:100
+#: standalone.pm:101
#, c-format
msgid ""
"[OPTIONS]\n"
@@ -17061,12 +6577,7 @@ msgstr ""
"--status : returnerer 1 hvis opkoblet, ellers 0; afslut derefter.\n"
"--quiet : vær ikke interaktiv. Bruges med (dis)connect."
-#: standalone.pm:109
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: standalone.pm:110
+#: standalone.pm:111
#, c-format
msgid ""
"[OPTION]...\n"
@@ -17084,7 +6595,7 @@ msgstr ""
" --changelog-first vís changelog før filliste i beskrivelsesvinduet\n"
" --merge-all-rpmnew foreslå at flette alle .rpmnew/.rpmsave filer fundet"
-#: standalone.pm:115
+#: standalone.pm:116
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
@@ -17093,7 +6604,7 @@ msgstr ""
"[--manual] [--device=enhed] [--update-sane=sane_kilde_kat] [--update-"
"usbtable] [--dynamic=enhed]"
-#: standalone.pm:116
+#: standalone.pm:117
#, c-format
msgid ""
" [everything]\n"
@@ -17104,7 +6615,7 @@ msgstr ""
" XFdrake [--noauto] skærm\n"
" XFdrake opløsning"
-#: standalone.pm:149
+#: standalone.pm:150
#, c-format
msgid ""
"\n"
@@ -17115,9737 +6626,102 @@ msgstr ""
"Brug: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
-#: standalone/XFdrake:59
-#, c-format
-msgid "You need to reboot for changes to take effect"
-msgstr "Du skal genstarte maskinen for at ændringerne skal gælde"
-
-#: standalone/XFdrake:90
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Log ud og tryk herefter på Ctrl-Alt-Bak"
-
-#: standalone/XFdrake:94
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr "Du skal logge ud og ind igen for at ændringerne skal gælde"
-
-#: standalone/drakTermServ:112 standalone/drakTermServ:118
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s kræver et brugernavn...\n"
-
-#: standalone/drakTermServ:129
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s kræver værtsnavn, MAC-adresse, IP, nbi-aftryk, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-
-#: standalone/drakTermServ:135
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s kræver et værtsnavn...\n"
-
-#: standalone/drakTermServ:144
-#, c-format
-msgid "Host name for client"
-msgstr "Værtsnavn for klient"
-
-#: standalone/drakTermServ:145
-#, c-format
-msgid "MAC address should be in the format 00:11:22:33:44:55"
-msgstr "MAC-adresse bør være på formatet 00:11:22:33:44:55"
-
-#: standalone/drakTermServ:146
-#, c-format
-msgid "IP address to be assigned to client"
-msgstr "IP-adresse, som skal tildeles til klient"
-
-#: standalone/drakTermServ:147
-#, c-format
-msgid "Kernel/network adapter image to use to boot client"
-msgstr "Kerne/netværk-adapter-aftryk, som skal bruges til opstart af klient"
-
-#: standalone/drakTermServ:148
-#, c-format
-msgid "Create masking files to allow configuration tools to run on client"
-msgstr "Opret maske-filer for at tillade konfigurationsværktøjer at køre på klient"
-
-#: standalone/drakTermServ:149
-#, c-format
-msgid "Applications will run on server machine"
-msgstr "Programmer vil køre på server-maskine"
-
-#: standalone/drakTermServ:234 standalone/drakTermServ:237
-#, c-format
-msgid "Terminal Server Configuration"
-msgstr "Konfiguration af Terminalserver"
-
-#: standalone/drakTermServ:243
-#, c-format
-msgid "dhcpd Config"
-msgstr "Konfigurér dhcpd"
-
-#: standalone/drakTermServ:247
-#, c-format
-msgid "Enable Server"
-msgstr "Aktivér server"
-
-#: standalone/drakTermServ:253
-#, c-format
-msgid "Disable Server"
-msgstr "Deaktivér server"
-
-#: standalone/drakTermServ:259
-#, c-format
-msgid "Start Server"
-msgstr "Start server"
-
-#: standalone/drakTermServ:265
-#, c-format
-msgid "Stop Server"
-msgstr "Stop server"
-
-#: standalone/drakTermServ:274
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot diskette/ISO"
-
-#: standalone/drakTermServ:278
-#, c-format
-msgid "Net Boot Images"
-msgstr "Opstartsbilleder for netopstart"
-
-#: standalone/drakTermServ:285
-#, c-format
-msgid "Add/Del Users"
-msgstr "Tilføj/slet brugere"
-
-#: standalone/drakTermServ:289
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Tilføj/slet klienter"
-
-#: standalone/drakTermServ:297
-#, c-format
-msgid "Images"
-msgstr "Billeder"
-
-#: standalone/drakTermServ:298
-#, c-format
-msgid "Clients/Users"
-msgstr "Klienter/brugere"
-
-#: standalone/drakTermServ:316 standalone/drakbug:47
-#, c-format
-msgid "First Time Wizard"
-msgstr "Førstegangshjælper"
-
-#: standalone/drakTermServ:354 standalone/drakTermServ:355
-#, c-format
-msgid "%s defined as dm, adding gdm user to /etc/passwd$$CLIENT$$"
-msgstr "%s defineret som dm, tilføjer gdm-bruger til /etc/passwd$$CLIENT$$"
-
-#: standalone/drakTermServ:361
-#, c-format
-msgid ""
-"\n"
-" This wizard routine will:\n"
-" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
-"\t2) Setup DHCP.\n"
-"\t\n"
-"After doing these steps, the wizard will:\n"
-"\t\n"
-" a) Make all "
-"nbis. \n"
-" b) Activate the "
-"server. \n"
-" c) Start the "
-"server. \n"
-" d) Synchronize the shadow files so that all users, including root, \n"
-" are added to the shadow$$CLIENT$$ "
-"file. \n"
-" e) Ask you to make a boot floppy.\n"
-" f) If it's thin clients, ask if you want to restart KDM.\n"
-msgstr ""
-"\n"
-" Denne hjælperrutine vil:\n"
-" \t1) Spørge dig om at vælge enten 'tynde' eller 'tykke' klienter.\n"
-"\t2)Opsætte DHCP.\n"
-"\t\n"
-"Efter at have gjort følgende trin så vil hjælperen:\n"
-"\t\n"
-" a) Oprette alle "
-"nbi'er. \n"
-" b) Aktivere "
-"serveren. \n"
-" c) Starte "
-"serveren. \n"
-" d) Synkronisere skygge-filer så at alle brugere, inklusive root, \n"
-" er tilføjet i shadow$$CLIENT$$-"
-"filen. \n"
-" e) Spørge dig om at oprette en opstartsdiskette.\n"
-" f) Hvis der er tynde klienter, spørge om du vil starte KDM igen.\n"
-
-#: standalone/drakTermServ:407
-#, c-format
-msgid "Cancel Wizard"
-msgstr "Afbryd vejlederen"
-
-#: standalone/drakTermServ:422
-#, c-format
-msgid "Please save dhcpd config!"
-msgstr "Gem venligst dhcpd-konfiguration!"
-
-#: standalone/drakTermServ:450
-#, c-format
-msgid "Use thin clients."
-msgstr "Brug tynde klienter."
-
-#: standalone/drakTermServ:452
-#, c-format
-msgid "Sync client X keyboard settings with server."
-msgstr "Synkronisér klientens X-tastatursopsætning med serverens."
-
-#: standalone/drakTermServ:454
-#, c-format
-msgid ""
-"Please select default client type (Fat is the default type if 'Use thin' is "
-"unchecked).\n"
-" 'Thin' clients run everything off the server's CPU/RAM, using the client "
-"display.\n"
-" 'Fat' clients use their own CPU/RAM but the server's filesystem."
-msgstr ""
-"Vælg venligst standard klienttype (Tyk er standardtypen hvis 'brug tynd' "
-"ikke er valgt).\n"
-" 'Tynde' klienter kører alting på serverens CPU/RAM, ved brug af "
-"klientens skærm.\n"
-" 'Tykke' klienter bruger deres egen CPU/RAM, men serverens filsystem."
-
-#: standalone/drakTermServ:474
-#, c-format
-msgid "Creating net boot images for all kernels"
-msgstr "Opretter netopstartsaftryksfiler for alle kerner"
-
-#: standalone/drakTermServ:475 standalone/drakTermServ:807
-#: standalone/drakTermServ:823
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Dette vil tage nogle få minutter."
-
-#: standalone/drakTermServ:481 standalone/drakTermServ:521
-#, c-format
-msgid "Done!"
-msgstr "Færdig!"
-
-#: standalone/drakTermServ:492 standalone/drakTermServ:894
-#, c-format
-msgid "%s failed"
-msgstr "%s mislykkedes"
-
-#: standalone/drakTermServ:501
-#, c-format
-msgid ""
-"Not enough space to create\n"
-"NBIs in %s.\n"
-"Needed: %d MB, Free: %d MB"
-msgstr ""
-"Ikke nok plads til at oprette\n"
-"NBIer i %s.\n"
-"Behøver: %d MB, Ledigt: %d MB"
-
-#: standalone/drakTermServ:507
-#, c-format
-msgid "Syncing server user list with client list, including root."
-msgstr "Synkroniserer serverbrugerliste med klientliste, inklusive root."
-
-#: standalone/drakTermServ:527
-#, c-format
-msgid ""
-"In order to enable changes made for thin clients, the display manager must "
-"be restarted. Restart now?"
-msgstr ""
-"For at kunne aktivere ændringer gjort for tynde klienter, så skal "
-"sessionsbehandleren startes igen. Start igen nu?"
-
-#: standalone/drakTermServ:564
-#, c-format
-msgid "Terminal Server Overview"
-msgstr "TerminalServer-oversigt"
-
-#: standalone/drakTermServ:565
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and %s is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-" - Lav Etherboot-aktiverede opstartsaftryksfiler:\n"
-" \tFor at starte med en kerne via etherboot skal en speciel kerne/"
-"initrd-aftryksfil oprettes.\n"
-" \ttmkinitrd-net laver meget af dette arbejde og %s er bare en "
-"grafisk grænseflade\n"
-" \tfor at hjælpe til med at håndtere/ændre på disse aftryksfiler. For "
-"at \n"
-" \toprette filen /etc/dhcpd.conf.etherboot-pcimap.include som "
-"trækkes \n"
-" \tind som en inklusionsfil i /etc/dhcpd.conf bør du oprette "
-"aftrykkene for \n"
-" \tetherboot for mindst én fuld kerne."
-
-#: standalone/drakTermServ:571
-#, c-format
-msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. %s helps create/"
-"remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
-msgstr ""
-" - Vedligeholdelse af /etc/dhcpd.conf:\n"
-" \t\tFor at starte klientene over netværk behøver hver klient en "
-"indgang i dhcpd.conf, som udleverer en IP-adresse\n"
-" \t\tog netværksopstart-aftryksfiler til maskinen. %s hjælper til med "
-"at lave/fjerne disse indgange.\n"
-"\t\t\t\n"
-" \t\t(PCI-kort kan undlade aftryksfilen - etherboot vil efterspørge "
-"den rigtige aftryksfil. Du bør\n"
-" \t\togså bemærke at når etherboot ser efter aftryksfilerne forventer "
-"den navne som\n"
-" \t\tboot-3c59x.nbi, fremfor boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tEt typisk dhcpd.conf-afsnit for at understøtte diskløse klienter "
-"ser sådan ud:"
-
-#: standalone/drakTermServ:589
-#, c-format
-msgid ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be "
-"'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, \n"
-" %s is written for thin clients. \n"
-" System config files xdm-config, kdmrc, and gdm.conf are modified if "
-"thin clients are \n"
-" used, to enable XDMCP. Since there are security issues in using "
-"XDMCP, hosts.deny and \n"
-" hosts.allow are modified to limit access to the local subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-msgstr ""
-"\t\t\tMens du kan bruge en pøl af IP-adresser, fremfor at opsætte en "
-"specifik opsætningsindgang for\n"
-"\t\t\ten klientmaskine, vil brug af faste adresser lette\n"
-"brugen\n"
-"\t\t\taf klientspecifikke konfigurationsfiler som %s tilbyder.\n"
-"\t\t\t\n"
-"\t\t\tBemærk: \"#type\"-indgangen er kun brugt af %s. Klienter kan enten "
-"være 'tynde'\n"
-"\t\t\teller 'tykke'. Tynde klienter kører størsteparten af programmellet "
-"via XDMCP, mens tykke klienter kører størsteparten\n"
-"af programmellet på klientmaskinen. En speciel inttab,\n"
-" %s bliver skrevet for tynde klienter.\n"
-" Systemkonfigurationsfilerne xdm-config, kdmrc, og gdm.conf bliver "
-"ændrede hvis tynde klienter bliver brugt, for at aktivere XDMCP. Idet der er "
-"sikkerhedsproblematikker omkring brugen af XDMCP, så bliver hosts.deny og "
-"hosts.allow ændret for at begrænse adgangen til det lokale subnet.\n"
-"Bemærk: Indgangen '#hdw_config' bruges også kun af %s. \n"
-"\t\t\tKlienter kan enten være 'true' eller 'false'. 'true' aktiverer root-"
-"logind på \n"
-"\t\t\tklientmaskinen og tillader lokal udstyrskonfiguration af lyd, mus og "
-"X \n"
-"\t\t\tmed brug af 'drak'-værktøjer. Dette aktiveres ved oprettelse af "
-"separate \n"
-"\t\t\tkonfigureringsfiler tilknyttet klientens IP-adresse og oprettelse af \n"
-"\t\t\tmonteringspunkter med skriveadgang for at tillade klienten at ændre "
-"filen. \n"
-"\t\t\tNår du er tilfreds med konfigurationen kan du fjerne root-"
-"rettighederne \n"
-"\t\t\tfra klienten.\n"
-"\n"
-"Bemærk: Du skal stoppe/starte serveren efter at have tilføjet eller ændret "
-"klienter."
-
-#: standalone/drakTermServ:609
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-msgstr ""
-" - Vedligeholdelse af /etc/exports:\n"
-" \t\t%s lader dig eksportere rod-filsystemet til diskløse klienter, %"
-"s\n"
-" \t\topsætter de rigtige indgange for at tillade anonym adgang til "
-"rod-filsystemet fra\n"
-" \t\tdiskløse klienter.\n"
-"\n"
-" \t\tEn typisk eksporterings-indgang for %s er:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t\t/home SUBNET/MASKE(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tHvor SUBNET/MASKE bliver defineret for dit netværk."
-
-#: standalone/drakTermServ:621
-#, c-format
-msgid ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. \n"
-" \t%s helps in this respect by adding or removing system users from "
-"this \n"
-" \tfile."
-msgstr ""
-" - Vedligeholdelse af %s:\n"
-" \tFor at brugere skal kunne logge ind på systemet fra en diskløs "
-"klient, så må deres indgang i\n"
-" \t/etc/shadow kopieres ind i %s. %s hjælper til\n"
-" \tved at tilføje og slette brugere fra denne fil."
-
-#: standalone/drakTermServ:626
-#, c-format
-msgid ""
-" - Per client %s:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t%s will help create these files."
-msgstr ""
-" - Per klient %s:\n"
-" \t\tVia %s kan hver diskløs klient have deres egen unikke "
-"konfigurationsfil\n"
-" \t\tpå rod-filsystemet på serveren. I fremtiden vil %s kunne hjælpe "
-"til med at lave disse\n"
-" \t\tfiler."
-
-#: standalone/drakTermServ:631
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-msgstr ""
-" - Per klient systemkonfigurationsfiler:\n"
-" \tVia %s kan hver diskløs klient have deres egne unikke "
-"konfigurationsfiler\n"
-" \tpå rod-filesystemet på serveren. Ved at tillade lokal "
-"klientudstyrskonfiguration kan klienter tilrette filer\n"
-" \tsom feks. /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
-"keyboard på per klient\n"
-" \tbasis. \n"
-"........Bemærk: Aktivering af lokal klientudstyrskonfiguration aktiverer "
-"ikke root logind til terminalserveren \n"
-"........fra hver klientmaskine som har denne facilitet aktiveret. Lokal "
-"konfiguration kan blive \n"
-"........slået fra igen, idet konfigurationsfilerne beholDES, når først "
-"klientmaskinen er blevet konfigureret."
-
-#: standalone/drakTermServ:640
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s will configure this file to work in conjunction with the images "
-"created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical TFTP configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
-msgstr ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\t%s vil konfigurere denne fil til at virke sammen med "
-"aftryksfilerne som bliver oprettet af\n"
-" \t\tmkinitrd-net, og indgangene i /etc/dhcpd.conf, for at udlevere "
-"netværks-opstartsaftryksfilerne til hver \n"
-" \t\tdiskløs klient.\n"
-"\n"
-" \t\tEn typisk tftp-konfigurationsfil ser sådan ud:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \t\tÆndringen her fra den normale installation er ændringen af "
-"disable-flaget til\n"
-" \t\t'no' og ændring af filstien til /var/lib/tftpboot, hvor mkinitrd-"
-"net\n"
-" \t\tplacere sine aftryksfiler."
-
-#: standalone/drakTermServ:661
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-msgstr ""
-" - Lav etherboot-disketter/CDer:\n"
-" \tDe diskløse klientmaskiner behøver enten ROM-imagefil på "
-"netværkskortet, opstartsdiskett\n"
-" \teller en CD for at initialisere opstartssekvensen. %s vil hjælpe "
-"til med at generere disse\n"
-" \timagefiler, baseret på netværkskortet i klientmaskinen.\n"
-" \t\t\n"
-" \tEt simpelt eksempel på oprettelse af en opstartsdiskette for et "
-"3Com 3509 manuelt::\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-
-#: standalone/drakTermServ:694
-#, c-format
-msgid "Boot Floppy"
-msgstr "Start fra diskette"
-
-#: standalone/drakTermServ:696
-#, c-format
-msgid "Boot ISO"
-msgstr "Start fra ISO"
-
-#: standalone/drakTermServ:698
-#, c-format
-msgid "PXE Image"
-msgstr "PXE-aftryk"
-
-#: standalone/drakTermServ:759
-#, c-format
-msgid "Default kernel version"
-msgstr "Standard kerne-version"
-
-#: standalone/drakTermServ:764
-#, c-format
-msgid "Create PXE images"
-msgstr "Opret PXE-aftryk"
-
-#: standalone/drakTermServ:765
-#, c-format
-msgid "Use Unionfs (TS2)"
-msgstr "Brug Unionfs (TS2)"
-
-#: standalone/drakTermServ:795
-#, c-format
-msgid "Install i586 kernel for older clients"
-msgstr "Installér i586-kerne for ældre klienter"
-
-#: standalone/drakTermServ:805
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Opbyg hele kernen -->"
-
-#: standalone/drakTermServ:812
-#, c-format
-msgid "No kernel selected!"
-msgstr "Ingen kerne valgt!"
-
-#: standalone/drakTermServ:815
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Byg enkel NIC -->"
-
-#: standalone/drakTermServ:819 standalone/drakTermServ:1643
-#, c-format
-msgid "No NIC selected!"
-msgstr "Ingen NIC valgt!"
-
-#: standalone/drakTermServ:822
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Byg alle kerner -->"
-
-#: standalone/drakTermServ:835
-#, c-format
-msgid ""
-"Custom\n"
-"kernel args"
-msgstr ""
-"Tilvalgte\n"
-"kerne-argumenter"
-
-#: standalone/drakTermServ:840
+#: timezone.pm:148 timezone.pm:149
#, c-format
-msgid "<-- Delete"
-msgstr "<-- Slet"
+msgid "All servers"
+msgstr "Alle servere"
-#: standalone/drakTermServ:845
+#: timezone.pm:183
#, c-format
-msgid "No image selected!"
-msgstr "Intet billede valgt!"
+msgid "Global"
+msgstr "Globalt"
-#: standalone/drakTermServ:848
+#: timezone.pm:186
#, c-format
-msgid "Delete All NBIs"
-msgstr "Slet alle NBI'er"
+msgid "Africa"
+msgstr "Afrika"
-#: standalone/drakTermServ:925
+#: timezone.pm:187
#, c-format
-msgid "Building images for kernel:"
-msgstr "Bygger filaftryk for kerne:"
+msgid "Asia"
+msgstr "Asien"
-#: standalone/drakTermServ:1050
+#: timezone.pm:188
#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! Indikere at adgangskoden i systemets database er forskelligt fra\n"
-" den i TerminalServer-databasen.\n"
-"Slet/tilføj brugeren igen il TerminalServeren for at muliggøre logind."
-
-#: standalone/drakTermServ:1055
-#, c-format
-msgid "Add User -->"
-msgstr "Tilføj bruger -->"
-
-#: standalone/drakTermServ:1061
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- Slet bruger"
-
-#: standalone/drakTermServ:1097
-#, c-format
-msgid "type: %s"
-msgstr "type: %s"
-
-#: standalone/drakTermServ:1101
-#, c-format
-msgid "local config: %s"
-msgstr "lokal konfig: %s"
-
-#: standalone/drakTermServ:1136
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Tillad konfiguration\n"
-"af lokalt udstyr"
-
-#: standalone/drakTermServ:1146
-#, c-format
-msgid "No net boot images created!"
-msgstr "Ingen opstartsbilleder oprettet!"
-
-#: standalone/drakTermServ:1165
-#, c-format
-msgid "Thin Client"
-msgstr "Tynd klient"
-
-#: standalone/drakTermServ:1169
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "Tillad tynde klienter"
-
-#: standalone/drakTermServ:1170
-#, c-format
-msgid ""
-"Sync client X keyboard\n"
-" settings with server."
-msgstr ""
-"Synkronisér klientens X-tastatur-\n"
-"opsætning med serverens."
-
-#: standalone/drakTermServ:1171
-#, c-format
-msgid "Add Client -->"
-msgstr "Tilføj klient -->"
-
-#: standalone/drakTermServ:1181
-#, c-format
-msgid "Unknown MAC address format"
-msgstr "Ukendt MAC-adresseformat"
-
-#: standalone/drakTermServ:1195
-#, c-format
-msgid "type: fat"
-msgstr "type: tyk"
-
-#: standalone/drakTermServ:1196
-#, c-format
-msgid "type: thin"
-msgstr "type: tynd"
-
-#: standalone/drakTermServ:1203
-#, c-format
-msgid "local config: false"
-msgstr "Lokal konfigurering: falsk"
-
-#: standalone/drakTermServ:1204
-#, c-format
-msgid "local config: true"
-msgstr "lokal konfigurering: sand"
-
-#: standalone/drakTermServ:1212
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Redigér klient"
-
-#: standalone/drakTermServ:1237
-#, c-format
-msgid "Disable Local Config"
-msgstr "Deaktivér lokal konfiguration"
-
-#: standalone/drakTermServ:1244
-#, c-format
-msgid "Delete Client"
-msgstr "Slet klient"
-
-#: standalone/drakTermServ:1267
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-"Skal genstarte Display Manager for at de fulde ændringer kan tage effekt. \n"
-"(service dm restart - fra konsollen)"
-
-#: standalone/drakTermServ:1313
-#, c-format
-msgid "Thin clients will not work with autologin. Disable autologin?"
-msgstr "Tynde klienter vil ikke virke med autologin. Skal autologin deaktiveres?"
-
-#: standalone/drakTermServ:1328
-#, c-format
-msgid "All clients will use %s"
-msgstr "Alle klienter vil bruge %s"
-
-#: standalone/drakTermServ:1362
-#, c-format
-msgid "Subnet:"
-msgstr "Undernet:"
-
-#: standalone/drakTermServ:1369
-#, c-format
-msgid "Netmask:"
-msgstr "Netmaske:"
-
-#: standalone/drakTermServ:1376
-#, c-format
-msgid "Routers:"
-msgstr "Rutere:"
-
-#: standalone/drakTermServ:1383
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Undernetmaske:"
-
-#: standalone/drakTermServ:1390
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Rundkastningsadresse:"
-
-#: standalone/drakTermServ:1397
-#, c-format
-msgid "Domain Name:"
-msgstr "Domænenavn:"
-
-#: standalone/drakTermServ:1405
-#, c-format
-msgid "Name Servers:"
-msgstr "Navne-servere:"
-
-#: standalone/drakTermServ:1416
-#, c-format
-msgid "IP Range Start:"
-msgstr "Start på IP-område:"
-
-#: standalone/drakTermServ:1417
-#, c-format
-msgid "IP Range End:"
-msgstr "Slut på IP-område:"
-
-#: standalone/drakTermServ:1459
-#, c-format
-msgid "Append TS Includes To Existing Config"
-msgstr "Tilføj TS-includes til eksisterende konfiguration"
-
-#: standalone/drakTermServ:1461
-#, c-format
-msgid "Write Config"
-msgstr "Udskriv konfiguration"
-
-#: standalone/drakTermServ:1477
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Konfiguration af dhcp-server"
-
-#: standalone/drakTermServ:1478
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"De fleste af disse værdier blev fundet\n"
-"fra dit kørende system.\n"
-"Du kan ændre dem efter behov."
-
-#: standalone/drakTermServ:1481
-#, c-format
-msgid ""
-"Dynamic IP Address Pool\n"
-"(needed for PXE clients):"
-msgstr ""
-"Dynamisk IP-adresseområde\n"
-"(behøves for PXE-klienter):"
-
-#: standalone/drakTermServ:1634
-#, c-format
-msgid "Write to %s failed!"
-msgstr "Skrivning til %s mislykkedes!"
-
-#: standalone/drakTermServ:1647
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Indsæt diskette:"
-
-#: standalone/drakTermServ:1651
-#, c-format
-msgid "Could not access the floppy!"
-msgstr "Kunne ikke få adgang til disketten!"
-
-#: standalone/drakTermServ:1653
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Diskette kan fjernes nu"
-
-#: standalone/drakTermServ:1656
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Intet tilgængeligt diskettedrev!"
-
-#: standalone/drakTermServ:1662
-#, c-format
-msgid "PXE image is %s/%s"
-msgstr "PXE-aftryksfil er %s/%s"
-
-#: standalone/drakTermServ:1664
-#, c-format
-msgid "Error writing %s/%s"
-msgstr "Fejl ved skrivning %s/%s"
-
-#: standalone/drakTermServ:1676
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "Etherboot ISO-aftryk er %s"
-
-#: standalone/drakTermServ:1680
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Noget gik galt! - er mkisofs installeret?"
-
-#: standalone/drakTermServ:1700
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Skal oprette /etc/dhcpd.conf først!"
-
-#: standalone/drakTermServ:1867
-#, c-format
-msgid "%s passwd bad in Terminal Server - rewriting...\n"
-msgstr "%s adgangskode forkerti Terminalserver - genskriver...\n"
-
-#: standalone/drakTermServ:1880
-#, c-format
-msgid "%s is not a user..\n"
-msgstr "%s er ikke en bruger...\n"
-
-#: standalone/drakTermServ:1881
-#, c-format
-msgid "%s is already a Terminal Server user\n"
-msgstr "%s er allerede en Terminalserverbruger\n"
-
-#: standalone/drakTermServ:1883
-#, c-format
-msgid "Addition of %s to Terminal Server failed!\n"
-msgstr "Kunne ikke tilføje %s i Terminalserver!\n"
-
-#: standalone/drakTermServ:1885
-#, c-format
-msgid "%s added to Terminal Server\n"
-msgstr "%s tilføjet i Terminalserver\n"
-
-#: standalone/drakTermServ:1903
-#, c-format
-msgid "Deleted %s...\n"
-msgstr "Slettede %s...\n"
-
-#: standalone/drakTermServ:1905 standalone/drakTermServ:1978
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s ikke fundet...\n"
+msgid "Europe"
+msgstr "Europa"
-#: standalone/drakTermServ:2006
+#: timezone.pm:189
#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr "/etc/hosts.allow og /etc/hosts.deny allerede konfigureret - ikke ændret"
+msgid "North America"
+msgstr "Nordamerika"
-#: standalone/drakTermServ:2158
+#: timezone.pm:190
#, c-format
-msgid "Configuration changed - restart %s/dhcpd?"
-msgstr "Konfiguration ændret - genstart %s/dhcpd?"
+msgid "Oceania"
+msgstr "Oceanien"
-#: standalone/drakautoinst:38 standalone/drakhosts:123
-#: standalone/drakhosts:129 standalone/draknfs:84 standalone/draknfs:105
-#: standalone/draknfs:444 standalone/draknfs:447 standalone/draknfs:539
-#: standalone/draknfs:546 standalone/draksambashare:187
-#: standalone/draksambashare:208 standalone/draksambashare:629
-#: standalone/draksambashare:796
+#: timezone.pm:191
#, c-format
-msgid "Error!"
-msgstr "Fejl!"
+msgid "South America"
+msgstr "Sydamerika"
-#: standalone/drakautoinst:39
+#: timezone.pm:200
#, c-format
-msgid "I can not find needed image file `%s'."
-msgstr "Jeg kan ikke finde filen '%s' som jeg behøver."
+msgid "Hong Kong"
+msgstr "Hong Kong"
-#: standalone/drakautoinst:41
+#: timezone.pm:237
#, c-format
-msgid "Auto Install Configurator"
-msgstr "Autoinstallationskonfigurering"
-
-#: standalone/drakautoinst:42
-#, c-format
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Press ok to continue."
-msgstr ""
-"Du er ved at konfigurere en automatisk installationsdiskette. Denne mulighed "
-"er lidt farlig, og må bruges med forsigtighed.\n"
-"\n"
-"Med denne mulighed vil du igen kunne køre installationen du gennemførte på "
-"denne maskine, med muligheden for at selv kunne ændre på nogen af "
-"indstillingerne.\n"
-"\n"
-"For maksimal sikkerhed vil partitioneringen og formateringen aldrig blive "
-"gennemført automatisk, uanset hvad du valgte under installationen.\n"
-"\n"
-"Tryk O.k. for at fortsætte."
-
-#: standalone/drakautoinst:60
-#, c-format
-msgid "replay"
-msgstr "afspil igen"
-
-#: standalone/drakautoinst:60 standalone/drakautoinst:69
-#, c-format
-msgid "manual"
-msgstr "manuel"
-
-#: standalone/drakautoinst:64
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Konfiguration af automatiske skridt"
-
-#: standalone/drakautoinst:65
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Vælg for hvert skridt om det skal være som under installationen, eller "
-"manuelt"
-
-#: standalone/drakautoinst:77 standalone/drakautoinst:78
-#: standalone/drakautoinst:92
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Laver autoinstallations-diskette"
-
-#: standalone/drakautoinst:90
-#, c-format
-msgid "Insert another blank floppy in drive %s (for drivers disk)"
-msgstr "Indsæt en anden tom diskette i drev %s (med drivere)"
-
-#: standalone/drakautoinst:91
-#, c-format
-msgid "Creating auto install floppy (drivers disk)"
-msgstr "Laver autoinstallations-diskette (driver-diskette)"
-
-#: standalone/drakautoinst:156
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Velkommen.\n"
-"\n"
-"Parametrene for autokonfigurationen kan ses i afsnittene til venstre"
-
-#: standalone/drakautoinst:251
-#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Disketten er blevet genereret.\n"
-"Du kan nu gennemføre installationen igen."
+msgid "Russian Federation"
+msgstr "Russiske føderation"
-#: standalone/drakautoinst:287
+#: timezone.pm:245
#, c-format
-msgid "Auto Install"
-msgstr "Autoinstallation"
+msgid "Yugoslavia"
+msgstr "Jugoslavien"
-#: standalone/drakautoinst:356
-#, c-format
-msgid "Add an item"
-msgstr "Tilføj et element"
-
-#: standalone/drakautoinst:363
-#, c-format
-msgid "Remove the last item"
-msgstr "Fjern det sidste element"
-
-#: standalone/drakbackup:157
-#, c-format
-msgid ""
-"Expect is an extension to the TCL scripting language that allows interactive "
-"sessions without user intervention."
-msgstr ""
-"Expect er en udvidelse til skriptingsproget TCL som tillader interaktive "
-"sessioner uden indblanding fra brugeren."
-
-#: standalone/drakbackup:158
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "Gem adgangskoderne for dette system i drakbackup-konfigurationen."
-
-#: standalone/drakbackup:159
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
-"For en multisessions-cd vil kun den første session slette cdrw'en. Ellers "
-"bliver cdrw'en slettet før hver sikkerhedskopiering."
-
-#: standalone/drakbackup:160
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-"Denne valgmulighed vil gemme filer som er blevet ændret. Den nøjagtige "
-"opførsel afhænger af om inkremental eller differentiel tilstand er valgt."
-
-#: standalone/drakbackup:161
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-"Inkrementale sikkerhedskopier gemmer kun filer der er ændret eller er nye i "
-"forhold til den seneste sikkerhedskopi."
-
-#: standalone/drakbackup:162
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Differentielle sikkerhedskopier gemmer kun filer der er ændrede eller er nye "
-"i forhold til den oprindelige sikkerhedskopi."
-
-#: standalone/drakbackup:163
-#, c-format
-msgid ""
-"Star should be selected if you want to backup EA or ACLs, otherwise choose "
-"tar"
-msgstr ""
-"Star bør vælges hvis du ønsker at sikkerhedskopiere EA eller ACL'er, ellers "
-"vælg tar"
-
-#: standalone/drakbackup:164
-#, c-format
-msgid ""
-"This should be a local user or email address that you want the backup "
-"results sent to. You will need to define a functioning mail server. Multiple "
-"users can be in a comma seperated list"
-msgstr ""
-"Dette bør være en lokal bruger eller epostadresse som du vil have "
-"sikkerhedskopieringsresultatene sendt til. Du behøver at have opsat en "
-"fungerende postserver på dit system. Flere brugere kan angives i en komma-"
-"separeret liste"
-
-#: standalone/drakbackup:165
-#, c-format
-msgid ""
-"This should be the return address that you want the backup results sent "
-"from. Default is drakbackup."
-msgstr ""
-"Dette bør være returdadressen som du vil have "
-"sikkerhedskopieringsresultaterne sendt fra. Standard er drakbackup."
-
-#: standalone/drakbackup:166
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-"Filer eller jokertegn listet i en .backupignore-fil i toppen af et "
-"katalogtræ vil ikke blive sikkerhedskopieret."
-
-#: standalone/drakbackup:167
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-"For sikkerhedskopiering til andre medier bliver filer stadig oprettet på "
-"disken og så overflyttet til det andet medie. Aktivering af denne "
-"valgmulighed vil fjerne tar-filerne på disken efter sikkerhedskopieringen."
-
-#: standalone/drakbackup:168
-#, c-format
-msgid ""
-"Selecting this option allows you to view the raw output from the restore "
-"process, after a file restore."
-msgstr ""
-"Valg af denne mulighed giver dig mulighed for at se de rå uddata fra "
-"genskabningsprocessen, efter en genskabning af filer."
-
-#: standalone/drakbackup:169
-#, c-format
-msgid ""
-"Some protocols, like rsync, may be configured at the server end. Rather "
-"than using a directory path, you would use the 'module' name for the service "
-"path."
-msgstr ""
-"Nogen protokoller, såsom rsync, kan være konfigureret i server-enden. I "
-"stedet for at bruge en katalogsti bør du bruge 'module'-navnet for "
-"tjenestestien."
-
-#: standalone/drakbackup:170
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"Tilpasset lader dig angive dine egne datoer og tidspunkter. De andre "
-"valgmuligheder bruger kørsels-delen i /etc/crontab"
-
-#: standalone/drakbackup:344
-#, c-format
-msgid "No media selected for cron operation."
-msgstr "Intet medie valgt for cron-operation."
-
-#: standalone/drakbackup:348
-#, c-format
-msgid "No interval selected for cron operation."
-msgstr "Intet interval valgt for cron-operation"
-
-#: standalone/drakbackup:393
-#, c-format
-msgid "Interval cron not available as non-root"
-msgstr "Interval cron er ikke tilgængelig endnu som ikke-root"
-
-#: standalone/drakbackup:477 standalone/logdrake:439
-#, c-format
-msgid "\"%s\" neither is a valid email nor is an existing local user!"
-msgstr "\"%s\" er hverken en gyldig epostadresse eller en eksisterende lokal bruger!"
-
-#: standalone/drakbackup:481 standalone/logdrake:444
-#, 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\" er en lokal bruger, men du valgte ikke en lokal smtp, så du må bruge "
-"en fuldstændig epostadresse!"
-
-#: standalone/drakbackup:491
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr "Listen over gyldige brugere er ændret, genskriver konfigurationsfil."
-
-#: standalone/drakbackup:493
-#, c-format
-msgid "Old user list:\n"
-msgstr "Gammel brugerliste:\n"
-
-#: standalone/drakbackup:495
-#, c-format
-msgid "New user list:\n"
-msgstr "Ny brugerliste:\n"
-
-#: standalone/drakbackup:524
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
-msgstr ""
-"\n"
-" DrakBackup Rapport \n"
-
-#: standalone/drakbackup:525
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-msgstr ""
-"\n"
-" DrakBackup Dæmon-Rapport\n"
-
-#: standalone/drakbackup:531
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup Rapportdetaljer\n"
-"\n"
-"\n"
-
-#: standalone/drakbackup:556 standalone/drakbackup:627
-#: standalone/drakbackup:683
-#, c-format
-msgid "Total progress"
-msgstr "Total fremdrift"
-
-#: standalone/drakbackup:609
-#, c-format
-msgid ""
-"%s exists, delete?\n"
-"\n"
-"If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-"%s-eksisterer, skal den fjernes?\n"
-"\n"
-"Hvis du allerede har lavet denne proces skal du nok\n"
-" fjerne indgangen fra authorized_keys på serveren."
-
-#: standalone/drakbackup:618
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "Det kan tage lidt tid at generere nøglerne."
-
-#: standalone/drakbackup:625
-#, c-format
-msgid "Cannot spawn %s."
-msgstr "Kan ikke starte %s."
-
-#: standalone/drakbackup:642
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "Ingen forespørgsel om adgangskode på %s ved port %s"
-
-#: standalone/drakbackup:643
-#, c-format
-msgid "Bad password on %s"
-msgstr "Dårlig adgangskode på %s"
-
-#: standalone/drakbackup:644
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "Adgang nægtet ved overførsel af %s til %s"
-
-#: standalone/drakbackup:645
-#, c-format
-msgid "Can not find %s on %s"
-msgstr "Kan ikke finde %s på %s"
-
-#: standalone/drakbackup:649
-#, c-format
-msgid "%s not responding"
-msgstr "%s svarer ikke"
-
-#: standalone/drakbackup:653
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-"Overførsel klar.\n"
-"Du vil måske kontrollere at du kan logge ind på serveren med:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"uden at blive spurgt om en adgangskode."
-
-#: standalone/drakbackup:703
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "Ingen CDR/DVDR i drevet!"
-
-#: standalone/drakbackup:707
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Ser ikke ud til at være et skrivbart medie!"
-
-#: standalone/drakbackup:712
-#, c-format
-msgid "Not erasable media!"
-msgstr "Ikke sletbart medie!"
-
-#: standalone/drakbackup:754
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Det kan tage lidt tid at slette mediet."
-
-#: standalone/drakbackup:812
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Problem med rettigheder ved adgang til CD."
-
-#: standalone/drakbackup:840
-#, c-format
-msgid "No tape in %s!"
-msgstr "Intet bånd i %s."
-
-#: standalone/drakbackup:953
-#, c-format
-msgid ""
-"Backup destination quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-"Kvota på sikkerhedsdestination er overskredet!\n"
-"%d MB brugt mod %d MB tildelt."
-
-#: standalone/drakbackup:973 standalone/drakbackup:1005
-#, c-format
-msgid "Backup system files..."
-msgstr "Sikkerhedskopiér systemfiler..."
-
-#: standalone/drakbackup:1006 standalone/drakbackup:1045
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Sikkerhedskopifiler for disk..."
-
-#: standalone/drakbackup:1044
-#, c-format
-msgid "Backup User files..."
-msgstr "Sikkerhedskopiér brugerfiler..."
-
-#: standalone/drakbackup:1078
-#, c-format
-msgid "Backup Other files..."
-msgstr "Sikkerhedskopiér andre filer..."
-
-#: standalone/drakbackup:1079
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Fremdrift for sikkerhedskopiering af disk..."
-
-#: standalone/drakbackup:1084
-#, c-format
-msgid "No changes to backup!"
-msgstr "Ingen ændringer til sikkerhedskopi!"
-
-#: standalone/drakbackup:1100 standalone/drakbackup:1122
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-"\n"
-"Drakbackup aktiviteter via %s:\n"
-"\n"
-
-#: standalone/drakbackup:1109
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"FTP forbindelsesproblem: Det var ikke muligt at sende dine backupfiler via "
-"FTP.\n"
-
-#: standalone/drakbackup:1110
-#, c-format
-msgid "Error during sending file via FTP. Please correct your FTP configuration."
-msgstr "Fejl ved sending af fil via FTP. Ret venligst din FTP-konfiguration."
-
-#: standalone/drakbackup:1112
-#, c-format
-msgid "file list sent by FTP: %s\n"
-msgstr "filliste sendt via FTP: %s\n"
-
-#: standalone/drakbackup:1127
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-"\n"
-"Drakbackup aktiviteter via CD:\n"
-"\n"
-
-#: standalone/drakbackup:1132
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-"\n"
-"Drakbackup aktiviteter via bånd:\n"
-"\n"
-
-#: standalone/drakbackup:1141
-#, c-format
-msgid "Error sending mail. Your report mail was not sent."
-msgstr "Fejl ved sending af post. Din rapport blev ikke sendt."
-
-#: standalone/drakbackup:1142
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr " Fejl ved afsendelse af post. \n"
-
-#: standalone/drakbackup:1172
-#, c-format
-msgid "Can not create catalog!"
-msgstr "Kan ikke oprette katalog!"
-
-#: standalone/drakbackup:1332
-#, c-format
-msgid "Problem installing %s"
-msgstr "Problem ved installation af %s"
-
-#: standalone/drakbackup:1420
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Lav sikkerhedkopi af dine systemfiler. (/etc kataloget)"
-
-#: standalone/drakbackup:1421 standalone/drakbackup:1484
-#: standalone/drakbackup:1550
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr "Brug inkremental/forskels-backup (overskriv ikke gamle sikkerhedskopier)"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Brug inkrementalbackup"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Brug forskelsbackupper"
-
-#: standalone/drakbackup:1425
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Udelad kritiske filer (passwd, group, fstab)"
-
-#: standalone/drakbackup:1456
-#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Markér alle brugere som du vil have med i din sikkerhedskopi."
-
-#: standalone/drakbackup:1483
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Udelad cache for netlæser"
-
-#: standalone/drakbackup:1537
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Vælg filerne eller katalogerne og klik på 'O.k.'"
-
-#: standalone/drakbackup:1538 standalone/drakfont:650
-#, c-format
-msgid "Remove Selected"
-msgstr "Fjern valgte"
-
-#: standalone/drakbackup:1601
-#, c-format
-msgid "Users"
-msgstr "Brugere"
-
-#: standalone/drakbackup:1621
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Brug netværksforbindelse til sikkerhedskopiering"
-
-#: standalone/drakbackup:1623
-#, c-format
-msgid "Net Method:"
-msgstr "Netmetode:"
-
-#: standalone/drakbackup:1627
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Brug Expect for SSH"
-
-#: standalone/drakbackup:1628
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "Opret/overfør sikkerhedskopieringsnøgler for SSH"
-
-#: standalone/drakbackup:1630
-#, c-format
-msgid "Transfer Now"
-msgstr "Overfør nu"
-
-#: standalone/drakbackup:1632
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Andre (ikke drakbackup) nøgler findes allerede"
-
-#: standalone/drakbackup:1635
-#, c-format
-msgid "Host name or IP."
-msgstr "Værtsnavn eller IP."
-
-#: standalone/drakbackup:1640
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
-"Kataloget (eller modulet) hvori sikkerhedskopien skal lægges på denne "
-"maskine."
-
-#: standalone/drakbackup:1652
-#, c-format
-msgid "Remember this password"
-msgstr "Husk denne adgangskode"
-
-#: standalone/drakbackup:1664
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Behøver værtsnavn, brugernavn og adgangskode!"
-
-#: standalone/drakbackup:1755
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Brug CD/DVDROM til sikkerhedskopiering"
-
-#: standalone/drakbackup:1758
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Vælg dit cd/dvd-drev"
-
-#: standalone/drakbackup:1763
-#, c-format
-msgid "Choose your CD/DVD media size"
-msgstr "Vælg din cd/dvd-mediastørrelse"
-
-#: standalone/drakbackup:1770
-#, c-format
-msgid "Multisession CD"
-msgstr "Multi-session CD"
-
-#: standalone/drakbackup:1772
-#, c-format
-msgid "CDRW media"
-msgstr "CDRW-medie"
-
-#: standalone/drakbackup:1778
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Slet dit CDRW-medie (1. session)"
-
-#: standalone/drakbackup:1779
-#, c-format
-msgid " Erase Now "
-msgstr " Slet nu "
-
-#: standalone/drakbackup:1785
-#, c-format
-msgid "DVD+RW media"
-msgstr "DVD+RW-medie"
-
-#: standalone/drakbackup:1787
-#, c-format
-msgid "DVD-R media"
-msgstr "DVD-R-medie"
-
-#: standalone/drakbackup:1789
-#, c-format
-msgid "DVDRAM device"
-msgstr "DVDRAM-enhed"
-
-#: standalone/drakbackup:1820
-#, c-format
-msgid "No CD device defined!"
-msgstr "Ingen cd-enhed defineret!"
-
-#: standalone/drakbackup:1862
-#, c-format
-msgid "Use tape to backup"
-msgstr "brug bånd til sikkerhedskopieringen"
-
-#: standalone/drakbackup:1865
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Endhedsnavnet der skal bruges til sikkerhedskopiering"
-
-#: standalone/drakbackup:1871
-#, c-format
-msgid "Backup directly to tape"
-msgstr "Tag sikkerhedskopi direkte til bånd"
-
-#: standalone/drakbackup:1877
-#, c-format
-msgid "Use tape hardware compression (EXPERIMENTAL)"
-msgstr "Brug hardware-komprimering af bånd (EKSPERIMENTELT)"
-
-#: standalone/drakbackup:1883
-#, c-format
-msgid "Do not rewind tape after backup"
-msgstr "Tilbagespól ikke båndet efter sikkerhedskopieringen"
-
-#: standalone/drakbackup:1889
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Slet båndet før sikkerhedskopieringen"
-
-#: standalone/drakbackup:1895
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Skub båndet ud efter sikkerhedskopieringen"
-
-#: standalone/drakbackup:1976
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Indtast kataloget hvortil der skal gemmes:"
-
-#: standalone/drakbackup:1980
-#, c-format
-msgid "Directory to save to"
-msgstr "Kataloget hvortil der skal gemmes"
-
-#: standalone/drakbackup:1985
-#, c-format
-msgid ""
-"Maximum disk space\n"
-" allocated for backups (MB)"
-msgstr ""
-"Maksimalt diskplads\n"
-" afsat til sikkerhedskopier (MB)"
-
-#: standalone/drakbackup:1989
-#, c-format
-msgid ""
-"Delete incremental or differential\n"
-" backups older than N days\n"
-" (0 is keep all backups) to save space"
-msgstr ""
-"Slet inkrementelle eller differentielle\n"
-" sikkerhedskopier ældre end N dage\n"
-" (0 beholder alle sikkerhedskopier) for at spare plads"
-
-#: standalone/drakbackup:2056
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CDROM / DVDROM"
-
-#: standalone/drakbackup:2061
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Diskdrev / NFS"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2077
-#: standalone/drakbackup:2082
-#, c-format
-msgid "hourly"
-msgstr "timedrift"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2078
-#: standalone/drakbackup:2083
-#, c-format
-msgid "daily"
-msgstr "dagligt"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2079
-#: standalone/drakbackup:2084
-#, c-format
-msgid "weekly"
-msgstr "ugentligt"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2080
-#: standalone/drakbackup:2085
-#, c-format
-msgid "monthly"
-msgstr "månedligt"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2081
-#: standalone/drakbackup:2086
-#, c-format
-msgid "custom"
-msgstr "tilpasset"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "January"
-msgstr "Januar"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "February"
-msgstr "Februar"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "March"
-msgstr "Marts"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "April"
-msgstr "April"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "May"
-msgstr "Maj"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "June"
-msgstr "Juni"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "July"
-msgstr "Juli"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "August"
-msgstr "August"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "September"
-msgstr "September"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "October"
-msgstr "Oktober"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "November"
-msgstr "November"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "December"
-msgstr "December"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Sunday"
-msgstr "Søndag"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Monday"
-msgstr "Mandag"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Tuesday"
-msgstr "Tirsdag"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Wednesday"
-msgstr "Onsdag"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Thursday"
-msgstr "Torsdag"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Friday"
-msgstr "Fredag"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Saturday"
-msgstr "Lørdag"
-
-#: standalone/drakbackup:2126
-#, c-format
-msgid "Delete cron entry"
-msgstr "Slet cron-indgang"
-
-#: standalone/drakbackup:2127
-#, c-format
-msgid "Add cron entry"
-msgstr "Tilføj cron-indgang"
-
-#: standalone/drakbackup:2185
-#, c-format
-msgid "Use daemon"
-msgstr "Brug dæmon"
-
-#: standalone/drakbackup:2189
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Vælg tidsinterval mellem hver sikkerhedskopiering"
-
-#: standalone/drakbackup:2197
-#, c-format
-msgid "Minute"
-msgstr "Minut"
-
-#: standalone/drakbackup:2201
-#, c-format
-msgid "Hour"
-msgstr "Time"
-
-#: standalone/drakbackup:2205
-#, c-format
-msgid "Day"
-msgstr "Dag"
-
-#: standalone/drakbackup:2209
-#, c-format
-msgid "Month"
-msgstr "Måned"
-
-#: standalone/drakbackup:2213
-#, c-format
-msgid "Weekday (start)"
-msgstr "Hverdag (start)"
-
-#: standalone/drakbackup:2217
-#, c-format
-msgid "Weekday (end)"
-msgstr "Hverdag (slut)"
-
-#: standalone/drakbackup:2221
-#, c-format
-msgid "Profile"
-msgstr "Profil"
-
-#: standalone/drakbackup:2227
-#, c-format
-msgid "Current crontab:"
-msgstr "Aktuelle crontab:"
-
-#: standalone/drakbackup:2235
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "Vælg mediet for sikkerhedskopiering."
-
-#: standalone/drakbackup:2239
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Forsikr dig gerne om at cron-dæmonen er med i dine tjenester."
-
-#: standalone/drakbackup:2240
-#, c-format
-msgid "If your machine is not on all the time, you might want to install anacron."
-msgstr ""
-"Hvis din maskine ikke er tændt hele tiden, vil du måske gerne installere "
-"anacron."
-
-#: standalone/drakbackup:2316
-#, c-format
-msgid "Please choose the archive program"
-msgstr "Vælg arkiveringsprogram"
-
-#: standalone/drakbackup:2321
-#, c-format
-msgid "Please choose the compression type"
-msgstr "Vælg komprimeringstype"
-
-#: standalone/drakbackup:2325
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Brug .backupignore-filer"
-
-#: standalone/drakbackup:2327
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Send epost-rapport efter hver sikkerhedskopiering til:"
-
-#: standalone/drakbackup:2333
-#, c-format
-msgid "Return address for sent mail:"
-msgstr "Retur-adresse for sendt e-post:"
-
-#: standalone/drakbackup:2339
-#, c-format
-msgid "SMTP server for mail:"
-msgstr "SMTP-server for epost:"
-
-#: standalone/drakbackup:2343
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr "Slet tar-filer på disken efter sikkerhedskopiering til andet medie."
-
-#: standalone/drakbackup:2344
-#, c-format
-msgid "View restore log after file restore."
-msgstr "Se genskabningslog efter genskabning af filer."
-
-#: standalone/drakbackup:2389
-#, c-format
-msgid "What"
-msgstr "Hvad"
-
-#: standalone/drakbackup:2394
-#, c-format
-msgid "Where"
-msgstr "Hvor"
-
-#: standalone/drakbackup:2399
-#, c-format
-msgid "When"
-msgstr "Hvornår"
-
-#: standalone/drakbackup:2404
-#, c-format
-msgid "More Options"
-msgstr "Flere muligheder"
-
-#: standalone/drakbackup:2417
-#, c-format
-msgid "Backup destination not configured..."
-msgstr "Sikkerhedskopisted ikke konfigureret..."
-
-#: standalone/drakbackup:2437 standalone/drakbackup:4367
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Drakbackup konfiguration"
-
-#: standalone/drakbackup:2453
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Vælg hvor du ønsker at sikkerhedskopiere"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Hard Drive used to prepare backups for all media"
-msgstr "Harddisk brugt til at forberede sikkerhedskopiering til alle medier"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Across Network"
-msgstr "over netværk"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On CD-R"
-msgstr "på cd-rom"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On Tape Device"
-msgstr "på båndenhed"
-
-#: standalone/drakbackup:2502
-#, c-format
-msgid "Backup Users"
-msgstr "Lav sikkerhedskopi af brugere"
-
-#: standalone/drakbackup:2503
-#, c-format
-msgid " (Default is all users)"
-msgstr " (Standard er alle brugere)"
-
-#: standalone/drakbackup:2516
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Vælg hvad du vil sikkerhedkopiere"
-
-#: standalone/drakbackup:2517
-#, c-format
-msgid "Backup System"
-msgstr "Lav sikkerhedskopi af system"
-
-#: standalone/drakbackup:2519
-#, c-format
-msgid "Select user manually"
-msgstr "Håndpluk bruger"
-
-#: standalone/drakbackup:2548
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Vælg data for sikkerhedskopi..."
-
-#: standalone/drakbackup:2620
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Kilder for sikkerhedskopi: \n"
-
-#: standalone/drakbackup:2621
-#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Systemfiler:\n"
-
-#: standalone/drakbackup:2623
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Brugerfiler:\n"
-
-#: standalone/drakbackup:2625
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Andre filer:\n"
-
-#: standalone/drakbackup:2627
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-"\n"
-"- Gem til diskdrev på stien: %s\n"
-
-#: standalone/drakbackup:2628
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tBegræns diskforbrug til %s MB\n"
-
-#: standalone/drakbackup:2629
-#, c-format
-msgid "\tDelete backups older than %s day(s)\n"
-msgstr "\tSlet sikkerhedskopier som er ældre end %s dage\n"
-
-#: standalone/drakbackup:2632
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
-"\n"
-"- Slet tar-filer på disken efter sikkerhedskopiering.\n"
-
-#: standalone/drakbackup:2637
-#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr ""
-"\n"
-"- Brænd på CD"
-
-#: standalone/drakbackup:2638
-#, c-format
-msgid "RW"
-msgstr "RW"
-
-#: standalone/drakbackup:2639
-#, c-format
-msgid " on device: %s"
-msgstr " på enhed: %s"
-
-#: standalone/drakbackup:2640
-#, c-format
-msgid " (multi-session)"
-msgstr " (multi-session)"
-
-#: standalone/drakbackup:2641
-#, c-format
-msgid ""
-"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-"\n"
-"- Gem på bånd på enhed: %s"
-
-#: standalone/drakbackup:2642
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tErase=%s"
-
-#: standalone/drakbackup:2644
-#, c-format
-msgid "\tBackup directly to Tape\n"
-msgstr "\tTag sikkerhedskopi direkte til bånd\n"
-
-#: standalone/drakbackup:2646
-#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
-"\n"
-"- Gem via %s på vært: %s\n"
-
-#: standalone/drakbackup:2647
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t brugernavn: %s\n"
-"\t\t på sti: %s \n"
-
-#: standalone/drakbackup:2648
-#, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Muligheder:\n"
-
-#: standalone/drakbackup:2649
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tUdelad systemfiler\n"
-
-#: standalone/drakbackup:2651
-#, c-format
-msgid "\tBackups use %s and bzip2\n"
-msgstr "\tSikkerhedskopiering bruger %s og bzip2\n"
-
-#: standalone/drakbackup:2652
-#, c-format
-msgid "\tBackups use %s and gzip\n"
-msgstr "\tSikkerhedskopiering bruger %s og gzip\n"
-
-#: standalone/drakbackup:2653
-#, c-format
-msgid "\tBackups use %s only\n"
-msgstr "\tSikkerhedskopiering bruger kun %s\n"
-
-#: standalone/drakbackup:2655
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tBrug .backupignore-filer\n"
-
-#: standalone/drakbackup:2656
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tSend epost til %s\n"
-
-#: standalone/drakbackup:2657
-#, c-format
-msgid "\tSend mail from %s\n"
-msgstr "\tSend e-post fra %s\n"
-
-#: standalone/drakbackup:2658
-#, c-format
-msgid "\tUsing SMTP server %s\n"
-msgstr "\tBruger SMTP-server %s\n"
-
-#: standalone/drakbackup:2660
-#, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
-msgstr ""
-"\n"
-"- Dæmon, %s via:\n"
-
-#: standalone/drakbackup:2661
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-Diskdrev.\n"
-
-#: standalone/drakbackup:2662
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-cdrom.\n"
-
-#: standalone/drakbackup:2663
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Tape \n"
-
-#: standalone/drakbackup:2664
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Netværk via FTP.\n"
-
-#: standalone/drakbackup:2665
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Netværk via SSH.\n"
-
-#: standalone/drakbackup:2666
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-Netværk via rsync.\n"
-
-#: standalone/drakbackup:2668
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Ingen konfiguration, klik på Vejleder eller Avanceret.\n"
-
-#: standalone/drakbackup:2673
-#, c-format
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Liste over data som skal genskabes:\n"
-"\n"
-
-#: standalone/drakbackup:2675
-#, c-format
-msgid "- Restore System Files.\n"
-msgstr "- Genskab systemfiler:\n"
-
-#: standalone/drakbackup:2677 standalone/drakbackup:2687
-#, c-format
-msgid " - from date: %s %s\n"
-msgstr " - fra dato: %s %s\n"
-
-#: standalone/drakbackup:2680
-#, c-format
-msgid "- Restore User Files: \n"
-msgstr "- Genskab brugerfiler:\n"
-
-#: standalone/drakbackup:2685
-#, c-format
-msgid "- Restore Other Files: \n"
-msgstr "- Genskab andre filer:\n"
-
-#: standalone/drakbackup:2864
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Liste over data der er ødelagt:\n"
-"\n"
-
-#: standalone/drakbackup:2866
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Afmarkér eller fjern det gerne næste gang."
-
-#: standalone/drakbackup:2876
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Sikkerhedskopifiler er ødelagte"
-
-#: standalone/drakbackup:2897
-#, c-format
-msgid " All of your selected data have been "
-msgstr " Alle dine valgte data er blevet "
-
-#: standalone/drakbackup:2898
-#, c-format
-msgid " Successfully Restored on %s "
-msgstr " genskabt uden fejl på %s "
-
-#: standalone/drakbackup:2999
-#, c-format
-msgid "/usr/bin/star not found, using tar..."
-msgstr "/usr/bin/star ikke fundet, bruger tar..."
-
-#: standalone/drakbackup:3035
-#, c-format
-msgid " Restore Configuration "
-msgstr " Genskab konfiguration "
-
-#: standalone/drakbackup:3063
-#, c-format
-msgid "OK to restore the other files."
-msgstr "O.k. at genskabe de andre filer."
-
-#: standalone/drakbackup:3079
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr "Brugerliste at genskabe (kun den nyeste dato per bruger er vigtig)"
-
-#: standalone/drakbackup:3144
-#, c-format
-msgid "Please choose the date to restore:"
-msgstr "Vælg dato for genskabning:"
-
-#: standalone/drakbackup:3181
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Genskab fra disk."
-
-#: standalone/drakbackup:3183
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Indtast kataloget hvor sikkerhedskopier gemmes"
-
-#: standalone/drakbackup:3187
-#, c-format
-msgid "Directory with backups"
-msgstr "Katalog med sikkerhedskopier"
-
-#: standalone/drakbackup:3241
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Vælg et andet medie at genskabe fra"
-
-#: standalone/drakbackup:3243
-#, c-format
-msgid "Other Media"
-msgstr "Andet medie"
-
-#: standalone/drakbackup:3248
-#, c-format
-msgid "Restore system"
-msgstr "Genskab system"
-
-#: standalone/drakbackup:3249
-#, c-format
-msgid "Restore Users"
-msgstr "Genskab brugere"
-
-#: standalone/drakbackup:3250
-#, c-format
-msgid "Restore Other"
-msgstr "Genskab andet"
-
-#: standalone/drakbackup:3252
-#, c-format
-msgid "Select path to restore (instead of /)"
-msgstr "vælg sti at genskabe (i stedet for /)"
-
-#: standalone/drakbackup:3256 standalone/drakbackup:3539
-#, c-format
-msgid "Path To Restore To"
-msgstr "Sti, hvortil der skal genskabes"
-
-#: standalone/drakbackup:3259
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Lav ny sikkerhedskopi før genskabning (kun for inkrementalbackupper)."
-
-#: standalone/drakbackup:3261
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Fjern brugerkataloger før genskabning."
-
-#: standalone/drakbackup:3345
-#, c-format
-msgid "Filename text substring to search for (empty string matches all):"
-msgstr "Filnavntekst at søge efter (tom streng matcher alt):"
-
-#: standalone/drakbackup:3348
-#, c-format
-msgid "Search Backups"
-msgstr "Søg i sikkerhedskopier"
-
-#: standalone/drakbackup:3367
-#, c-format
-msgid "No matches found..."
-msgstr "Ingen træffere fundet..."
-
-#: standalone/drakbackup:3371
-#, c-format
-msgid "Restore Selected"
-msgstr "Genskab valgte"
-
-#: standalone/drakbackup:3507
-#, c-format
-msgid ""
-"Click date/time to see backup files.\n"
-"Ctrl-Click files to select multiple files."
-msgstr ""
-"Klik på dato/tid for at se sikkerhedskopifiler.\n"
-"Klik på filer med CTRL-tasten inde for at vælge flere filer."
-
-#: standalone/drakbackup:3513
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
-"Genskab valgt\n"
-"katalogpost"
-
-#: standalone/drakbackup:3522
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr ""
-"Genskab valgte\n"
-"filer"
-
-#: standalone/drakbackup:3599
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "Sikkerhedskopier fandtes ikke på %s."
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid "Restore From CD"
-msgstr "Genskab fra cd"
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-"Indsæt cd'en med volumetiket %s\n"
-" i cd-enheden monteret på /mnt/cdrom"
-
-#: standalone/drakbackup:3614
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "Ikke korrekt cd-etiket. Cd'en har etiket %s."
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid "Restore From Tape"
-msgstr "Genskab fra bånd"
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-"Indsæt båndet med volumeetiket %s\n"
-" i båndenheden %s"
-
-#: standalone/drakbackup:3626
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Ikke korrekt båndetiket. Båndet har etiket %s."
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network"
-msgstr "Genskab via netværk"
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Genskab via netværksprotokol: %s"
-
-#: standalone/drakbackup:3638
-#, c-format
-msgid "Host Name"
-msgstr "Værtsnavn"
-
-#: standalone/drakbackup:3639
-#, c-format
-msgid "Host Path or Module"
-msgstr "Stil til vært eller modul"
-
-#: standalone/drakbackup:3646
-#, c-format
-msgid "Password required"
-msgstr "Adgangskode krævet"
-
-#: standalone/drakbackup:3652
-#, c-format
-msgid "Username required"
-msgstr "Brugernavn krævet"
-
-#: standalone/drakbackup:3655
-#, c-format
-msgid "Hostname required"
-msgstr "Værtsnavn krævet"
-
-#: standalone/drakbackup:3660
-#, c-format
-msgid "Path or Module required"
-msgstr "Sti eller modul krævet"
-
-#: standalone/drakbackup:3672
-#, c-format
-msgid "Files Restored..."
-msgstr "Filer genskabte..."
-
-#: standalone/drakbackup:3675
-#, c-format
-msgid "Restore Failed..."
-msgstr "Genskabelse mislykkedes..."
-
-#: standalone/drakbackup:3703
-#, c-format
-msgid "%s not retrieved..."
-msgstr "%s ikke fundet..."
-
-#: standalone/drakbackup:3929 standalone/drakbackup:3998
-#, c-format
-msgid "Search for files to restore"
-msgstr "Søg efter filer at genskabe"
-
-#: standalone/drakbackup:3933
-#, c-format
-msgid "Restore all backups"
-msgstr "Genskab alle sikkerhedskopier"
-
-#: standalone/drakbackup:3941
-#, c-format
-msgid "Custom Restore"
-msgstr "Tilpasset genskabelse"
-
-#: standalone/drakbackup:3945 standalone/drakbackup:3994
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Genskab fra katalog"
-
-#: standalone/drakbackup:3966
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Kan ikke finde sikkerhedskopier til at genskabe...\n"
-
-#: standalone/drakbackup:3967
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Kontrollér at %s er den korrekte sti"
-
-#: standalone/drakbackup:3968
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " og CD'en er i drevet"
-
-#: standalone/drakbackup:3970
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr "Sikkerhedskopier på ikke-monterbart medie - Brug Katalog til at genskabe"
-
-#: standalone/drakbackup:3986
-#, c-format
-msgid "CD in place - continue."
-msgstr "Cd'en er på plads - fortsæt."
-
-#: standalone/drakbackup:3991
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Bladr til nyt genskabelseslager."
-
-#: standalone/drakbackup:3992
-#, c-format
-msgid "Directory To Restore From"
-msgstr "Kataloget hvorfra der skal genskabes"
-
-#: standalone/drakbackup:4028
-#, c-format
-msgid "Restore Progress"
-msgstr "Fremskridt for genskabelse"
-
-#: standalone/drakbackup:4136
-#, c-format
-msgid "Build Backup"
-msgstr "Lav backup"
-
-#: standalone/drakbackup:4169 standalone/drakbackup:4466
-#, c-format
-msgid "Restore"
-msgstr "Genskab"
-
-#: standalone/drakbackup:4261
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Udvælg de data du vil genskabe..."
-
-#: standalone/drakbackup:4301
-#, c-format
-msgid "Backup system files"
-msgstr "Lav sikkerhedskopi af systemfiler"
-
-#: standalone/drakbackup:4304
-#, c-format
-msgid "Backup user files"
-msgstr "Lav sikkerhedskopi af brugerfiler"
-
-#: standalone/drakbackup:4307
-#, c-format
-msgid "Backup other files"
-msgstr "Lav sikkerhedskopi af andre filer"
-
-#: standalone/drakbackup:4310 standalone/drakbackup:4344
-#, c-format
-msgid "Total Progress"
-msgstr "Total fremdrift"
-
-#: standalone/drakbackup:4336
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Sender filer via FTP"
-
-#: standalone/drakbackup:4339
-#, c-format
-msgid "Sending files..."
-msgstr "Sender filer..."
-
-#: standalone/drakbackup:4409
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Lav sikkerhedskopi nu ud fra konfigurationsfil"
-
-#: standalone/drakbackup:4414
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Se konfiguration af sikkerhedskopiering."
-
-#: standalone/drakbackup:4440
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Konfiguration med vejleder"
-
-#: standalone/drakbackup:4445
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Avanceret konfiguration"
-
-#: standalone/drakbackup:4450
-#, c-format
-msgid "View Configuration"
-msgstr "Vis konfiguration"
-
-#: standalone/drakbackup:4454
-#, c-format
-msgid "View Last Log"
-msgstr "Vis seneste log"
-
-#: standalone/drakbackup:4459
-#, c-format
-msgid "Backup Now"
-msgstr "Lav sikkerhedskopiering nu"
-
-#: standalone/drakbackup:4463
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"ingen konfigurationsfil fundet \n"
-"klik på Vejleder eller Avanceret."
-
-#: standalone/drakbackup:4501
-#, c-format
-msgid "Load profile"
-msgstr "Indlæs profil"
-
-#: standalone/drakbackup:4510
-#, c-format
-msgid "Save profile as..."
-msgstr "Gem profil som..."
-
-#: standalone/drakbackup:4532 standalone/drakbackup:4535
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: standalone/drakboot:49
-#, c-format
-msgid "No bootloader found, creating a new configuration"
-msgstr "Ingen opstartsindlæser fundet, laver en ny konfiguration"
-
-#: standalone/drakboot:84 standalone/harddrake2:190 standalone/harddrake2:191
-#: standalone/logdrake:69 standalone/printerdrake:150
-#: standalone/printerdrake:151 standalone/printerdrake:152
-#, c-format
-msgid "/_File"
-msgstr "/_Fil"
-
-#: standalone/drakboot:85 standalone/logdrake:75
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Fil/_Afslut"
-
-#: standalone/drakboot:85 standalone/harddrake2:191 standalone/logdrake:75
-#: standalone/printerdrake:152
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: standalone/drakboot:125
-#, c-format
-msgid "Text only"
-msgstr "Kun tekst"
-
-#: standalone/drakboot:126
-#, c-format
-msgid "Verbose"
-msgstr "Snakkesalig"
-
-#: standalone/drakboot:127
-#, c-format
-msgid "Silent"
-msgstr "Stille"
-
-#: standalone/drakboot:134
-#, c-format
-msgid ""
-"Your system bootloader is not in framebuffer mode. To activate graphical "
-"boot, select a graphic video mode from the bootloader configuration tool."
-msgstr ""
-"Dit systems opstartsindlæser er ikke i framebuffer-tilstand. For at aktivere "
-"grafisk opstart, vælg en grafisk videotilstand fra "
-"opstartindlæserkonfigurationsværktøjet."
-
-#: standalone/drakboot:135
-#, c-format
-msgid "Do you want to configure it now?"
-msgstr "Ønsker du at konfigurere det nu?"
-
-#: standalone/drakboot:144
-#, c-format
-msgid "Install themes"
-msgstr "Installér temaer"
-
-#: standalone/drakboot:146
-#, c-format
-msgid "Graphical boot theme selection"
-msgstr "Valg af grafisk opstatstema"
-
-#: standalone/drakboot:149
-#, c-format
-msgid "Graphical boot mode:"
-msgstr "Grafisk opstartstilstand:"
-
-#: standalone/drakboot:151
-#, c-format
-msgid "Theme"
-msgstr "Tema"
-
-#: standalone/drakboot:154
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"Visningstema\n"
-"under konsol"
-
-#: standalone/drakboot:159
-#, c-format
-msgid "Create new theme"
-msgstr "Opret nyt tema"
-
-#: standalone/drakboot:191
-#, c-format
-msgid "Default user"
-msgstr "Forvalgt bruger"
-
-#: standalone/drakboot:192
-#, c-format
-msgid "Default desktop"
-msgstr "Standard skrivebord"
-
-#: standalone/drakboot:195
-#, c-format
-msgid "No, I do not want autologin"
-msgstr "Nej, jeg ønsker ikke automatisk login"
-
-#: standalone/drakboot:196
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Ja, jeg ønsker automatisk login med denne (bruger, skrivebord)"
-
-#: standalone/drakboot:203
-#, c-format
-msgid "System mode"
-msgstr "Systemtilstand"
-
-#: standalone/drakboot:206
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Start X-vinduessystemet efter opstart"
-
-#: standalone/drakboot:272
-#, c-format
-msgid ""
-"Please choose a video mode, it will be applied to each of the boot entries "
-"selected below.\n"
-"Be sure your video card supports the mode you choose."
-msgstr ""
-"Vælg venligst en videotilstand, den vil blive føjet til hver "
-"opstartsopføring valg nedenfor.\n"
-"Vær sikker på, at dit videokort understøtter tilstanden, du vælger."
-
-#: standalone/drakbug:41
-#, c-format
-msgid "Mandriva Linux Bug Report Tool"
-msgstr "Mandriva Linux' værktøj til fejlrapportering"
-
-#: standalone/drakbug:46
-#, c-format
-msgid "Mandriva Linux Control Center"
-msgstr "Mandriva Linux Kontrolcenter"
-
-#: standalone/drakbug:48
-#, c-format
-msgid "Synchronization tool"
-msgstr "Synkroniseringsværktøj"
-
-#: standalone/drakbug:49 standalone/drakbug:152
-#, c-format
-msgid "Standalone Tools"
-msgstr "Fritstående værktøjer"
-
-#: standalone/drakbug:50
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: standalone/drakbug:51
-#, c-format
-msgid "Mandriva Online"
-msgstr "Mandriva Online"
-
-#: standalone/drakbug:52
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
-
-#: standalone/drakbug:53
-#, c-format
-msgid "Msec"
-msgstr "Msek"
-
-#: standalone/drakbug:54
-#, c-format
-msgid "Remote Control"
-msgstr "Ekstern kontrol"
-
-#: standalone/drakbug:55
-#, c-format
-msgid "Software Manager"
-msgstr "Programadministration"
-
-#: standalone/drakbug:56
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
-
-#: standalone/drakbug:57
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Migrationsværktøj for MS Windows"
-
-#: standalone/drakbug:58 standalone/draksambashare:1234
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: standalone/drakbug:59
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Vejledere til konfiguration"
-
-#: standalone/drakbug:81
-#, c-format
-msgid "Select Mandriva Tool:"
-msgstr "Vælg Mandriva-værktøj:"
-
-#: standalone/drakbug:82
-#, c-format
-msgid ""
-"or Application Name\n"
-"(or Full Path):"
-msgstr ""
-"eller programnavn\n"
-"(eller fuld sti):"
-
-#: standalone/drakbug:85
-#, c-format
-msgid "Find Package"
-msgstr "Find pakke"
-
-#: standalone/drakbug:87
-#, c-format
-msgid "Package: "
-msgstr "Pakke: "
-
-#: standalone/drakbug:88
-#, c-format
-msgid "Kernel:"
-msgstr "Kerne:"
-
-#: standalone/drakbug:101
-#, c-format
-msgid ""
-"To submit a bug report, click on the report button. \n"
-"This will open a web browser window on %s where you'll find a form to fill "
-"in. The information displayed above will be transferred to that server. \n"
-"Things useful to include in your report are the output of lspci, kernel "
-"version, and /proc/cpuinfo."
-msgstr ""
-"For at indsende en fejlrapport klik da på rapport-knappen.\n"
-"Dette vil åbne et vindue i en netlæser på %s\n"
-" hvor du vil finde en formular der kan udfyldes. Informationen vist ovenfor "
-"vil blive overført til den server. Nyttige ting at medtage i din rapport er "
-"uddata fra lspci, kerneversion og /proc/cpuinfo."
-
-#: standalone/drakbug:107
-#, c-format
-msgid "Report"
-msgstr "Rapport"
-
-#: standalone/drakbug:162
-#, c-format
-msgid "Not installed"
-msgstr "Ikke installeret"
-
-#: standalone/drakbug:174
-#, c-format
-msgid "Package not installed"
-msgstr "Pakke ikke installeret"
-
-#: standalone/drakclock:29
-#, c-format
-msgid "DrakClock"
-msgstr "DrakClock"
-
-#: standalone/drakclock:39
-#, c-format
-msgid "not defined"
-msgstr "ikke defineret"
-
-#: standalone/drakclock:41
-#, c-format
-msgid "Change Time Zone"
-msgstr "Ændr tidszone"
-
-#: standalone/drakclock:45
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "Timezone - DrakClock"
-
-#: standalone/drakclock:47
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "GMT - DrakClock"
-
-#: standalone/drakclock:47 standalone/finish-install:57
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Er dit maskin-ur sat til GMT?"
-
-#: standalone/drakclock:75
-#, c-format
-msgid "Network Time Protocol"
-msgstr "Network Time Protocol"
-
-#: standalone/drakclock:77
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-"Din maskine kan synkronisere sit ur\n"
-"med en ekstern tidsserver med NTP "
-
-#: standalone/drakclock:78
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Aktivér Network Time Protocol"
-
-#: standalone/drakclock:86
-#, c-format
-msgid "Server:"
-msgstr "Server:"
-
-#: standalone/drakclock:124
-#, c-format
-msgid "Could not synchronize with %s."
-msgstr "Kunne ikke synkronisere med %s."
-
-#: standalone/drakclock:146 standalone/drakclock:156
-#, c-format
-msgid "Reset"
-msgstr "Nulstil"
-
-#: standalone/drakclock:224
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol\n"
-"\n"
-"Do you want to install ntp?"
-msgstr ""
-"Vi behøver installere ntp-pakken\n"
-" for at aktivere Network Time Protocol\n"
-"\n"
-"Ønsker du at installere ntp?"
-
-#: standalone/drakconnect:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netværkskonfiguration (%d adaptorer)"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Interface:"
-msgstr "Grænseflade:"
-
-#: standalone/drakconnect:93 standalone/net_monitor:116
-#, c-format
-msgid "Wait please"
-msgstr "Vent venligst"
-
-#: standalone/drakconnect:109
-#, c-format
-msgid "Interface"
-msgstr "Grænseflade"
-
-#: standalone/drakconnect:109 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "State"
-msgstr "Status"
-
-#: standalone/drakconnect:126
-#, c-format
-msgid "Hostname: "
-msgstr "Værtsnavn: "
-
-#: standalone/drakconnect:128
-#, c-format
-msgid "Configure hostname..."
-msgstr "Konfigurér værtsnavn..."
-
-#: standalone/drakconnect:142 standalone/drakconnect:845
-#, c-format
-msgid "LAN configuration"
-msgstr "LAN konfiguration"
-
-#: standalone/drakconnect:147
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Konfigurér lokalnetværk..."
-
-#: standalone/drakconnect:155 standalone/drakconnect:237
-#: standalone/drakconnect:241
-#, c-format
-msgid "Apply"
-msgstr "Anvend"
-
-#: standalone/drakconnect:188
-#, c-format
-msgid "Manage connections"
-msgstr "Administrér forbindelser"
-
-#: standalone/drakconnect:215
-#, c-format
-msgid "Device selected"
-msgstr "Enhed valgt"
-
-#: standalone/drakconnect:296
-#, c-format
-msgid "IP configuration"
-msgstr "IP-konfiguration"
-
-#: standalone/drakconnect:335
-#, c-format
-msgid "DNS servers"
-msgstr "DNS-servere"
-
-#: standalone/drakconnect:343
-#, c-format
-msgid "Search Domain"
-msgstr "Søge-domæne"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "static"
-msgstr "fast"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "DHCP"
-msgstr "DHCP"
-
-#: standalone/drakconnect:515
-#, c-format
-msgid "Flow control"
-msgstr "Anrbejdsgangskontrol"
-
-#: standalone/drakconnect:516
-#, c-format
-msgid "Line termination"
-msgstr "Linjeterminering"
-
-#: standalone/drakconnect:527
-#, c-format
-msgid "Modem timeout"
-msgstr "Udløbstid for modem"
-
-#: standalone/drakconnect:531
-#, c-format
-msgid "Use lock file"
-msgstr "Brug låsefil"
-
-#: standalone/drakconnect:533
-#, c-format
-msgid "Wait for dialup tone before dialing"
-msgstr "Vent på ringetone før opringning"
-
-#: standalone/drakconnect:536
-#, c-format
-msgid "Busy wait"
-msgstr "Optaget, vent"
-
-#: standalone/drakconnect:541
-#, c-format
-msgid "Modem sound"
-msgstr "Lyd på modem"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Enable"
-msgstr "Aktivér"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Disable"
-msgstr "Deaktivér"
-
-#: standalone/drakconnect:593 standalone/harddrake2:50
-#, c-format
-msgid "Media class"
-msgstr "Medieklasse"
-
-#: standalone/drakconnect:594
-#, c-format
-msgid "Module name"
-msgstr "Modulnavn"
-
-#: standalone/drakconnect:595
-#, c-format
-msgid "Mac Address"
-msgstr "Mac-adresse:"
-
-#: standalone/drakconnect:596 standalone/harddrake2:28
-#: standalone/harddrake2:120
-#, c-format
-msgid "Bus"
-msgstr "Bus"
-
-#: standalone/drakconnect:597 standalone/harddrake2:34
-#, c-format
-msgid "Location on the bus"
-msgstr "Plads på bussen"
-
-#: standalone/drakconnect:700 standalone/drakgw:311
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Ingen ethernet netværksadapter er blevet fundet på dit system. Kør venligst "
-"værktøjet til maskinel konfiguration."
-
-#: standalone/drakconnect:709
-#, c-format
-msgid "Remove a network interface"
-msgstr "Fjern et netværksgrænsesnit"
-
-#: standalone/drakconnect:713
-#, c-format
-msgid "Select the network interface to remove:"
-msgstr "Vælg netværksgrænsesnit, der skal fjernes:"
-
-#: standalone/drakconnect:745
-#, c-format
-msgid ""
-"An error occurred while deleting the \"%s\" network interface:\n"
-"\n"
-"%s"
-msgstr ""
-"Et problem opstod ved sletning af netværksgrænsesnittet '%s': \n"
-"\n"
-"%s"
-
-#: standalone/drakconnect:746
-#, c-format
-msgid "Congratulations, the \"%s\" network interface has been successfully deleted"
-msgstr "Tillykke, netværksgrænsesnittet '%s' er blevet slettet uden problemer"
-
-#: standalone/drakconnect:761
-#, c-format
-msgid "No IP"
-msgstr "Ingen IP"
-
-#: standalone/drakconnect:762
-#, c-format
-msgid "No Mask"
-msgstr "Ingen maske"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "up"
-msgstr "op"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "down"
-msgstr "ned"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Connected"
-msgstr "Tilsluttet"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Not connected"
-msgstr "Ikke tilsluttet"
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Disconnect..."
-msgstr "Afbrud..."
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Connect..."
-msgstr "Tilslut..."
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Deactivate now"
-msgstr "Deaktivér nu"
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Activate now"
-msgstr "Aktivér nu"
-
-#: standalone/drakconnect:849
-#, c-format
-msgid ""
-"You do not have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Du har ingen konfigurerede grænsesnit.\n"
-"Konfigurér disse først ved at klikke på 'Konfigurér'"
-
-#: standalone/drakconnect:863
-#, c-format
-msgid "LAN Configuration"
-msgstr "LAN konfiguration"
-
-#: standalone/drakconnect:875
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: standalone/drakconnect:884
-#, c-format
-msgid "Boot Protocol"
-msgstr "Opstartsprotokol"
-
-#: standalone/drakconnect:885
-#, c-format
-msgid "Started on boot"
-msgstr "Startede med opstart"
-
-#: standalone/drakconnect:921
-#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Dette grænsesnit er ikke blevet konfigureret endnu.\n"
-"Kør 'Tilføj et grænsesnit'-hjælperen fra Mandriva Linux Kontrolcentret"
-
-#: standalone/drakconnect:975 standalone/net_applet:51
-#, c-format
-msgid ""
-"You do not have any configured Internet connection.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Du har ikke konfigureret nogen internetforbindelser.\n"
-"Kør '%s'-hjælperen fra Mandriva Linux Kontrolcentret"
-
-#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: standalone/drakconnect:976 standalone/drakroam:34 standalone/net_applet:52
-#, c-format
-msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
-msgstr "Opsætning af et nyt netværkgrænsesnit (LAN, ISDN, ADSL, ...)"
-
-#: standalone/drakconnect:981
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Konfiguration af Internetforbindelse"
-
-#: standalone/drakconnect:994
-#, c-format
-msgid "Third DNS server (optional)"
-msgstr "Tredje DNS-server (valgfri)"
-
-#: standalone/drakconnect:1016
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Konfiguration af Internetforbindelse"
-
-#: standalone/drakconnect:1017
-#, c-format
-msgid "Internet access"
-msgstr "Internetadgang"
-
-#: standalone/drakconnect:1019 standalone/net_monitor:95
-#, c-format
-msgid "Connection type: "
-msgstr "Type af forbindelse"
-
-#: standalone/drakconnect:1022
-#, c-format
-msgid "Status:"
-msgstr "Status:"
-
-#: standalone/drakconnect:1027
-#, c-format
-msgid "Parameters"
-msgstr "Parametre"
-
-#: standalone/drakedm:40
-#, c-format
-msgid "GDM (GNOME Display Manager)"
-msgstr "GDM (GNOME Indlogningshåndterer)"
-
-#: standalone/drakedm:41
-#, c-format
-msgid "KDM (KDE Display Manager)"
-msgstr "KDM (KDE Indlogningshåndterer)"
-
-#: standalone/drakedm:42
-#, c-format
-msgid "XDM (X Display Manager)"
-msgstr "XDM (X Display Manager)"
-
-#: standalone/drakedm:53
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Vælger en fremvisningshåndtering"
-
-#: standalone/drakedm:54
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"X11 skærmhåndtering giver dig mulighed for grafisk indlogning på dit system "
-"med X Windowssystemet kørende, og understøtter flere forskellige X-sessioner "
-"på din lokale maskine samtidigt."
-
-#: standalone/drakedm:72
-#, c-format
-msgid "The change is done, do you want to restart the dm service?"
-msgstr "Ændringen er udført, ønsker du at genstarte dm-tjenesten?"
-
-#: standalone/drakedm:73
-#, c-format
-msgid ""
-"You are going to close all running programs and lose your current session. "
-"Are you really sure that you want to restart the dm service?"
-msgstr ""
-"Du er ved at lukke alle kørnede programmer og tabe din nuværende session. Er "
-"du sikker på at du ønsker at genstarte dm-tjenesten?"
-
-#: standalone/drakfont:182
-#, c-format
-msgid "Search installed fonts"
-msgstr "Søg efter installerede skrifttyper"
-
-#: standalone/drakfont:184
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "Fravælg installerede skrifttyper"
-
-#: standalone/drakfont:207
-#, c-format
-msgid "parse all fonts"
-msgstr "fortolk alle skrifttyper"
-
-#: standalone/drakfont:209
-#, c-format
-msgid "No fonts found"
-msgstr "Ingen skrifttyper fundet"
-
-#: standalone/drakfont:217 standalone/drakfont:259 standalone/drakfont:326
-#: standalone/drakfont:359 standalone/drakfont:367 standalone/drakfont:393
-#: standalone/drakfont:411 standalone/drakfont:425
-#, c-format
-msgid "done"
-msgstr "færdig"
-
-#: standalone/drakfont:222
-#, c-format
-msgid "Could not find any font in your mounted partitions"
-msgstr "Kunne ikke finde nogen skrifttype i dine monterede partitioner"
-
-#: standalone/drakfont:257
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Genvælg korrekte skrifttyper"
-
-#: standalone/drakfont:260
-#, c-format
-msgid "Could not find any font.\n"
-msgstr "Kunne ikke finde nogen skrifttype.\n"
-
-#: standalone/drakfont:270
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Søg efter skrifttyper i installeret liste"
-
-#: standalone/drakfont:295
-#, c-format
-msgid "%s fonts conversion"
-msgstr "Konvertering af %s-skrifttyper"
-
-#: standalone/drakfont:324
-#, c-format
-msgid "Fonts copy"
-msgstr "Kopi af skrifttyper"
-
-#: standalone/drakfont:327
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Installation af True Type-skrifttyper"
-
-#: standalone/drakfont:334
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "Vent venligst på ttmkfdir..."
-
-#: standalone/drakfont:335
-#, c-format
-msgid "True Type install done"
-msgstr "Installation af True Type færdig"
-
-#: standalone/drakfont:341 standalone/drakfont:356
-#, c-format
-msgid "type1inst building"
-msgstr "opbyg type1inst"
-
-#: standalone/drakfont:350
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "Ghostscript referencer"
-
-#: standalone/drakfont:360
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Undertryk midlertidige filer"
-
-#: standalone/drakfont:363
-#, c-format
-msgid "Restart XFS"
-msgstr "Genstart XFS"
-
-#: standalone/drakfont:409 standalone/drakfont:419
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Undertryk skrifttypefiler"
-
-#: standalone/drakfont:421
-#, c-format
-msgid "xfs restart"
-msgstr "genstart af xfs"
-
-#: standalone/drakfont:429
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
-"Før du installerer nogen skrifttyper bør du være sikker på at du har lov til "
-"at bruge og installere dem på dit system. \n"
-"\n"
-"-Du kan installere skrifttyperne på normal måde. I sjældne tilfælde kan "
-"fejlbehæftede skrifttyper få din X-server til at hænge."
-
-#: standalone/drakfont:473 standalone/drakfont:482
-#, c-format
-msgid "DrakFont"
-msgstr "DrakFont"
-
-#: standalone/drakfont:483
-#, c-format
-msgid "Font List"
-msgstr "Liste over skrifttyper"
-
-#: standalone/drakfont:486
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "Få fat i Windows-skrifttyper"
-
-#: standalone/drakfont:492
-#, c-format
-msgid "About"
-msgstr "Om"
-
-#: standalone/drakfont:494 standalone/drakfont:718
-#, c-format
-msgid "Uninstall"
-msgstr "Afinstallering"
-
-#: standalone/drakfont:495
-#, c-format
-msgid "Import"
-msgstr "Importér"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakfont:513
-#, c-format
-msgid "Copyright (C) 2001-2006 by Mandriva"
-msgstr "Ophavsret © 2001-2006 ved Mandriva"
-
-#: standalone/drakfont:515
-#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-"Dette program er gratis programmel; du kan redistribuere det og/eller ændre\n"
-"det i henhold til betingelserne i GNU General Public License, som publiceret "
-"af\n"
-"Free Software Foundation; enten version 2, eller enhver senere udgave\n"
-"af licensen.\n"
-"\n"
-"Dette program er udgivet i håb om at det vil være anvendeligt, men\n"
-"UDEN NOGEN FORM FOR GARANTI; heller ikke garanti om\n"
-"SALGBARHED eller EGNETHED TIL ET BESTEMT FORMÅL. Se GNU\n"
-"General Public License for flere detaljer.\n"
-"\n"
-"\n"
-"Du skulle have modtaget en kopi af GNU General Public License\n"
-"sammen med dette program; hvis ikke, skriv til Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-
-#: standalone/drakfont:531
-#, c-format
-msgid ""
-"Thanks:\n"
-"\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
-msgstr ""
-"Tak til:\n"
-"\n"
-" - pfm2afm: \n"
-"\t af Ken Borgendale:\n"
-"\t Konvertér en Windows .pfm-file til en .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t af James Macnicol: \n"
-"\t type1inst genererer filerne fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t af Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Konvertér ttf-fontfiler til afm og pfb skrifttyper\n"
-
-#: standalone/drakfont:550
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Vælg de programpakker som vil understøtte skrifttyperne:"
-
-#: standalone/drakfont:561
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: standalone/drakfont:562
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: standalone/drakfont:563
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
-
-#: standalone/drakfont:564
-#, c-format
-msgid "Generic Printers"
-msgstr "Generelle printere"
-
-#: standalone/drakfont:578
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Vælg skrifttypefilen eller -kataloget oh klik på 'Tilføj'"
-
-#: standalone/drakfont:579
-#, c-format
-msgid "File Selection"
-msgstr "Valg af filer"
-
-#: standalone/drakfont:583
-#, c-format
-msgid "Fonts"
-msgstr "Skrifttyper"
-
-#: standalone/drakfont:646
-#, c-format
-msgid "Import fonts"
-msgstr "Import af skrifttyper"
-
-#: standalone/drakfont:651
-#, c-format
-msgid "Install fonts"
-msgstr "Installér skrifttyper"
-
-#: standalone/drakfont:681
-#, c-format
-msgid "Are you sure you want to uninstall the following fonts?"
-msgstr "Er du sikker på at du vil afinstallere de følgende skrifttyper?"
-
-#: standalone/drakfont:726
-#, c-format
-msgid "Unselected All"
-msgstr "Fravalgte alt"
-
-#: standalone/drakfont:729
-#, c-format
-msgid "Selected All"
-msgstr "Valgte alt"
-
-#: standalone/drakfont:743 standalone/drakfont:762
-#, c-format
-msgid "Importing fonts"
-msgstr "Importerer skrifttyper"
-
-#: standalone/drakfont:747 standalone/drakfont:767
-#, c-format
-msgid "Initial tests"
-msgstr "Begyndelsestester"
-
-#: standalone/drakfont:748
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Kopiér skrifttyper på dit system"
-
-#: standalone/drakfont:749
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Installér og konvertér skrifttyper"
-
-#: standalone/drakfont:750
-#, c-format
-msgid "Post Install"
-msgstr "Efterbehandling for installering"
-
-#: standalone/drakfont:768
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Fjern skrifttyper på dit system"
-
-#: standalone/drakfont:769
-#, c-format
-msgid "Post Uninstall"
-msgstr "Efterbehandling for afinstallering"
-
-#: standalone/drakgw:50 standalone/drakvpn:51
-#, c-format
-msgid "Sorry, we support only 2.4 and above kernels."
-msgstr "Desværre, vi understøtter kun 2.4-kerner og nyere."
-
-#: standalone/drakgw:75
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Deling af internetforbindelse"
-
-#: standalone/drakgw:79
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Du er ved at konfigurere din maskine til at dele sin internetforbindelse.\n"
-"Med denne mulighed vil andre maskiner på dit lokale netværk kunne bruge "
-"internetforbindelsen på denne maskine.\n"
-"\n"
-"Forsikr dig om at du har konfigureret din internetforbindelse med "
-"drakconnect før du går videre.\n"
-"\n"
-"Bemærk: du skal bruge en dediceret netværksadapter, for at lave et lokalt "
-"netværk (LAN)."
-
-#: standalone/drakgw:95
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Indstilling af deling af internetforbindelse er allerede gjort.\n"
-"Deling er aktiveret.\n"
-"\n"
-"Hvad ønsker du at gøre?"
-
-#: standalone/drakgw:99
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Indstilling af deling af internetforbindelse er allerede gjort.\n"
-"Den er de-aktiveret for nærværende\n"
-"Hvad ønsker du at gøre?"
-
-#: standalone/drakgw:105
-#, c-format
-msgid "Reconfigure"
-msgstr "Genkonfigurér"
-
-#: standalone/drakgw:145
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Der er kun én konfigureret netværksadapter i dit system:\n"
-"\n"
-"%s\n"
-"\n"
-"Jeg skal til at sætte dit lokalnet på med den adapter."
-
-#: standalone/drakgw:156
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "Vælg hvilken netværksadapter som skal forbindes til dit lokalnet."
-
-#: standalone/drakgw:177
-#, c-format
-msgid "Local Area Network settings"
-msgstr "Opsætning af lokalnetværk"
-
-#: standalone/drakgw:180
-#, c-format
-msgid "Local IP address"
-msgstr "Lokal IP-adresse"
-
-#: standalone/drakgw:182
-#, c-format
-msgid "The internal domain name"
-msgstr "Det interne domænenavn"
-
-#: standalone/drakgw:188
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Mulig LAN-adresse konflikt fundet i konfigurationen til %s!\n"
-
-#: standalone/drakgw:204
-#, c-format
-msgid "Domain Name Server (DNS) configuration"
-msgstr "Konfiguration af Navneserver (DNS)"
-
-#: standalone/drakgw:208
-#, c-format
-msgid "Use this gateway as domain name server"
-msgstr "Brug denne gateway som domænenavns-server"
-
-#: standalone/drakgw:209
-#, c-format
-msgid "The DNS Server IP"
-msgstr "DHCP-serverens IP-adresse"
-
-#: standalone/drakgw:236
-#, c-format
-msgid ""
-"DHCP Server Configuration.\n"
-"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you do not know the meaning of an option, simply leave it as it is."
-msgstr ""
-"Konfiguration af DHCP-server.\n"
-"\n"
-"Her kan du vælge forskellige muligheder for konfigurationen af DHCP-"
-"serveren.\n"
-"Hvis du ikke kender betydningen af en valgmulighed, så lad den blot være som "
-"den er."
-
-#: standalone/drakgw:243
-#, c-format
-msgid "Use automatic configuration (DHCP)"
-msgstr "Brug automatisk konfiguration (DHCP)"
-
-#: standalone/drakgw:244
-#, c-format
-msgid "The DHCP start range"
-msgstr "Begyndelsen på DHCP-området"
-
-#: standalone/drakgw:245
-#, c-format
-msgid "The DHCP end range"
-msgstr "Stutningen på DHCP-området"
-
-#: standalone/drakgw:246
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Normal udlejningsperiode (i sekunder)"
-
-#: standalone/drakgw:247
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Største udlejningsperiode (i sekunder)"
-
-#: standalone/drakgw:270
-#, c-format
-msgid "Proxy caching server (SQUID)"
-msgstr "Proxy-mellemlagerserver (SQUID)"
-
-#: standalone/drakgw:274
-#, c-format
-msgid "Use this gateway as proxy caching server"
-msgstr "Brug denne gateway som proxy-mellemlagerserver"
-
-#: standalone/drakgw:275
-#, c-format
-msgid "Admin mail"
-msgstr "Admin's e-post"
-
-#: standalone/drakgw:276
-#, c-format
-msgid "Visible hostname"
-msgstr "Synligt værtsnavn"
-
-#: standalone/drakgw:277
-#, c-format
-msgid "Proxy port"
-msgstr "Proxy-port:"
-
-#: standalone/drakgw:278
-#, c-format
-msgid "Cache size (MB)"
-msgstr "Størrelse på cachen (MB)"
-
-#: standalone/drakgw:300
-#, c-format
-msgid "Broadcast printer information"
-msgstr "Rundsend printerinformation"
-
-#: standalone/drakgw:317
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Deling af internetforbindelse er nu slået til"
-
-#: standalone/drakgw:323
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Deling af internetforbindelse er nu slået fra"
-
-#: standalone/drakgw:329
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP) and\n"
-" a Transparent Proxy Cache server (SQUID)."
-msgstr ""
-"Alt er blevet konfigureret.\n"
-"Du kan nu dele din internetforbindelse med andre maskiner på dit lokale "
-"netværk, ved at bruge automatisk netværkskonfigurering (DHCP)\n"
-"og en usynlig proxy-bufferserver (SQUID)."
-
-#: standalone/drakgw:363
-#, c-format
-msgid "Disabling servers..."
-msgstr "Slår servere fra..."
-
-#: standalone/drakgw:377
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Brandmurkonfiguration fundet!"
-
-#: standalone/drakgw:378
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-"Advarsel! En eksisterende brandmurkonfiguration er blevet fundet. Du skal "
-"muligvis lave manuelle rettelser efter installationen."
-
-#: standalone/drakgw:383
-#, c-format
-msgid "Configuring..."
-msgstr "Konfigurerer..."
-
-#: standalone/drakgw:384
-#, c-format
-msgid "Configuring firewall..."
-msgstr "Konfigurerer brandmur..."
-
-#: standalone/drakhelp:17
-#, c-format
-msgid ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"\n"
-"Usage: \n"
-msgstr ""
-" drakhelp 0.1\n"
-"Copyright © 2003-2005 Mandriva.\n"
-"Dette er frit programmel og kan redistribueres under betingelserne i GNU "
-"GPL.\n"
-"\n"
-"Brug: \n"
-
-#: standalone/drakhelp:22
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - vis denne hjælpetekst \n"
-
-#: standalone/drakhelp:23
-#, c-format
-msgid " --id <id_label> - load the html help page which refers to id_label\n"
-msgstr " --id <id_label> - indlæs html-hjælpesiden som refererer til id_label\n"
-
-#: standalone/drakhelp:24
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-" --doc <link> - henvis til en anden webside ( for WM-"
-"velkomstforside)\n"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "Mandriva Linux Help Center"
-msgstr "Mandriva Linux hjælpecentral"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "No Help entry for %s\n"
-msgstr "Ingen hjælpeindgang for %s\n"
-
-#: standalone/drakhosts:98
-#, c-format
-msgid "Please add an host to be able to modify it."
-msgstr "Tilføj en vært for at kunne ændre på den."
-
-#: standalone/drakhosts:108
-#, c-format
-msgid "Please modify information"
-msgstr "Ændr venligst information"
-
-#: standalone/drakhosts:109
-#, c-format
-msgid "Please delete information"
-msgstr "Slet venligst information"
-
-#: standalone/drakhosts:110
-#, c-format
-msgid "Please add information"
-msgstr "Tilføj venligst information"
-
-#: standalone/drakhosts:115
-#, c-format
-msgid "IP address:"
-msgstr "IP-adresse:"
-
-#: standalone/drakhosts:116
-#, c-format
-msgid "Host name:"
-msgstr "Værtsnavn:"
-
-#: standalone/drakhosts:117
-#, c-format
-msgid "Host Aliases:"
-msgstr "Værtsaliaser:"
-
-#: standalone/drakhosts:123
-#, c-format
-msgid "Please enter a valid IP address."
-msgstr "Indtast venligst en gyldig IP-adresse."
-
-#: standalone/drakhosts:129
-#, c-format
-msgid "Same IP is already in %s file."
-msgstr "Samme IP eksisterer allerede i %s-fil."
-
-#: standalone/drakhosts:197
-#, c-format
-msgid "Host Aliases"
-msgstr "Værtsaliaser"
-
-#: standalone/drakhosts:237
-#, c-format
-msgid "DrakHOSTS manage hosts definitions"
-msgstr "DrakHOSTS håndterer hosts-definitioner"
-
-#: standalone/drakhosts:246
-#, c-format
-msgid "Failed to add host."
-msgstr "Kunne ikke tilføje vært."
-
-#: standalone/drakhosts:253
-#, c-format
-msgid "Failed to Modify host."
-msgstr "Kunne ikke ændre vært."
-
-#: standalone/drakhosts:260
-#, c-format
-msgid "Failed to remove host."
-msgstr "Kunne ikke fjerne vært."
-
-#: standalone/drakids:26
-#, c-format
-msgid "Allowed addresses"
-msgstr "Tilladte adresser"
-
-#: standalone/drakids:57
-#, c-format
-msgid "Log"
-msgstr "Log"
-
-#: standalone/drakids:61
-#, c-format
-msgid "Clear logs"
-msgstr "Nulstíl logger"
-
-#: standalone/drakids:62 standalone/drakids:67 standalone/net_applet:470
-#, c-format
-msgid "Blacklist"
-msgstr "Sortliste"
-
-#: standalone/drakids:63 standalone/drakids:80 standalone/net_applet:475
-#, c-format
-msgid "Whitelist"
-msgstr "Hvidliste"
-
-#: standalone/drakids:71
-#, c-format
-msgid "Remove from blacklist"
-msgstr "Fjern fra sortliste"
-
-#: standalone/drakids:72
-#, c-format
-msgid "Move to whitelist"
-msgstr "Flyt til hvidliste"
-
-#: standalone/drakids:84
-#, c-format
-msgid "Remove from whitelist"
-msgstr "Fjern fra hvidliste"
-
-#: standalone/drakids:136 standalone/drakids:145 standalone/drakids:170
-#: standalone/drakids:179 standalone/drakids:189 standalone/drakids:265
-#: standalone/drakroam:182 standalone/net_applet:202 standalone/net_applet:385
-#, c-format
-msgid "Unable to contact daemon"
-msgstr "Kan ikke kontakte dæmon"
-
-#: standalone/drakids:202
-#, c-format
-msgid "Date"
-msgstr "Dato"
-
-#: standalone/drakids:203
-#, c-format
-msgid "Attacker"
-msgstr "Angriber"
-
-#: standalone/drakids:204
-#, c-format
-msgid "Attack type"
-msgstr "Angrebstype"
-
-#: standalone/drakids:205
-#, c-format
-msgid "Service"
-msgstr "Service"
-
-#: standalone/drakids:206 standalone/net_applet:72
-#, c-format
-msgid "Network interface"
-msgstr "Netværksgrænsesnit"
-
-#: standalone/draknfs:41
-#, c-format
-msgid "map root user as anonymous"
-msgstr "behandl root-bruger som anonym"
-
-#: standalone/draknfs:42
-#, c-format
-msgid "map all users to anonymous user"
-msgstr "behandl alle brugere som anonym bruger"
-
-#: standalone/draknfs:43
-#, c-format
-msgid "No user UID mapping"
-msgstr "Ingen omformning af bruger-UID"
-
-#: standalone/draknfs:44
-#, c-format
-msgid "allow real remote root access"
-msgstr "tillad ægte ekstern root-adgang"
-
-#: standalone/draknfs:83
-#, c-format
-msgid "NFS server"
-msgstr "NFS-server"
-
-#: standalone/draknfs:83
-#, c-format
-msgid "Restarting/Reloading NFS server..."
-msgstr "Starter NFS-server igen..."
-
-#: standalone/draknfs:84
-#, c-format
-msgid "Error Restarting/Reloading NFS server"
-msgstr "Fejl ved genstart af NFS-server"
-
-#: standalone/draknfs:100 standalone/draksambashare:203
-#, c-format
-msgid "Directory Selection"
-msgstr "Katalog-valg"
-
-#: standalone/draknfs:105 standalone/draksambashare:208
-#, c-format
-msgid "Should be a directory."
-msgstr "Burde være et katalog."
-
-#: standalone/draknfs:136
-#, c-format
-msgid ""
-"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
-"ways:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">single host:</span> a host either by an "
-"abbreviated name recognized be the resolver, fully qualified domain name, or "
-"an IP address\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">netgroups:</span> NIS netgroups may be given "
-"as @group.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">wildcards:</span> machine names may contain "
-"the wildcard characters * and ?. For instance: *.cs.foo.edu matches all "
-"hosts in the domain cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP networks:</span> you can also export "
-"directories to all hosts on an IP (sub-)network simultaneously. for example, "
-"either `/255.255.252.0' or `/22' appended to the network base address "
-"result.\n"
-msgstr ""
-"<span weight=\"bold\">NFS-klienter</span> kan blive specificeret på en række "
-"måder:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">en enkelt vært:</span> en vært, enten et "
-"forkortet navn genkendt af navneopslåeren, et fuldstændigt domænenavn eller "
-"en IP-adresse\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">netgrupper:</span> NIS-netgrupper kan blive "
-"givet som @gruppe.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">joker:</span> maskinnavn kan indeholde joker-"
-"tegnene * og ?. For eksempel: *.cs.foo.edu matcher alle værter i domænet "
-"cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP-netværk:</span> du kan også eksportere "
-"kataloger til alle værter på et IP-(under)netværk samtidig. For eksempel "
-"enten `/255.255.252.0' eller `/22' lagt til "
-"netværksbaseadresseresultatet.\n"
-
-#: standalone/draknfs:151
-#, c-format
-msgid ""
-"<span weight=\"bold\">User ID options</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map root user as anonymous:</span> map "
-"requests from uid/gid 0 to the anonymous uid/gid (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">allow real remote root access:</span> turn "
-"off root squashing. This option is mainly useful for diskless clients "
-"(no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map all users to anonymous user:</span> map "
-"all uids and gids to the anonymous user (all_squash). Useful for NFS-"
-"exported public FTP directories, news spool directories, etc. The opposite "
-"option is no user UID mapping (no_all_squash), which is the default "
-"setting.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid and anongid:</span> explicitly set "
-"the uid and gid of the anonymous account.\n"
-msgstr ""
-"<span weight=\"bold\">Valgmuligheder for bruger-ID</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">behandl root som anomym:</span> behandl "
-"forespørgsler fra uid/gid 0 som den anonyme uid/gid (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">tillad ægte ekstern root-adgang:</span> "
-"deaktivér root-squashing. Dette valg er hovedsagelig nyttig for diskløse "
-"klienter.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">all_squash:</span> behandl alle uid'er og "
-"gid'er som den anonyme bruger. Nyttig for NFS-eksporterede offentlige FTP-"
-"kataloger, nyheds-køkataloger osv. Det modsatte valg er no_all_squash, som "
-"er standardvalget.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid og anongid:</span> eksplicit sæt "
-"settuid'en og gid'en på den anonyme konto.\n"
-
-#: standalone/draknfs:167
-#, c-format
-msgid "Synchronous access:"
-msgstr "Synkron adgang:"
-
-#: standalone/draknfs:168
-#, c-format
-msgid "Secured Connection:"
-msgstr "Sikker forbindelse"
-
-#: standalone/draknfs:169
-#, c-format
-msgid "Read-Only share:"
-msgstr "Skrivebeskyttet delt ressurce:"
-
-#: standalone/draknfs:171
-#, c-format
-msgid "<span weight=\"bold\">Advanced Options</span>"
-msgstr "<span weight=\"bold\">Avancerede valgmuligheder</span>"
-
-#: standalone/draknfs:172
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> this option requires that "
-"requests originate on an internet port less than IPPORT_RESERVED (1024). "
-"This option is on by default."
-msgstr ""
-"<span foreground=\"royalblue3\">%s:</span> dette valg kræver at "
-"forespørgsler kommer fra en internetport lavere end IPPORT_RESERVED (1024). "
-"Dette valg er aktiveret som standard."
-
-#: standalone/draknfs:173
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> allow either only read or both "
-"read and write requests on this NFS volume. The default is to disallow any "
-"request which changes the filesystem. This can also be made explicit by "
-"using this option."
-msgstr ""
-"<span foreground=\"royalblue3\">%s:</span> tillader enten bare læse- eller "
-"både læse- og skriveforespørgsler på dette NFS-volumen. Standard er at nægte "
-"forespørgsler som laver ændringer på filsystemet. Dette kan også gøres "
-"eksplicit ved at bruge en valgmulighed."
-
-#: standalone/draknfs:174
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> disallows the NFS server to "
-"violate the NFS protocol and to reply to requests before any changes made by "
-"these requests have been committed to stable storage (e.g. disc drive)."
-msgstr ""
-"<span foreground=\"royalblue3\">%s:</span> nægter NFS-serveren at bryde NFS-"
-"protokollen og svare på forespørgsler før ændringer af disse forespørgsler "
-"er blevet udført på det permanente lager (fx disk)."
-
-#: standalone/draknfs:306
-#, c-format
-msgid "Please add an NFS share to be able to modify it."
-msgstr "Tilføj en delt NFS-ressurce for at kunne ændre på den."
-
-#: standalone/draknfs:378
-#, c-format
-msgid "Advanced Options Help"
-msgstr "Hjælp til vancerede muligheder"
-
-#: standalone/draknfs:389
-#, c-format
-msgid "NFS directory"
-msgstr "NFS-katalog"
-
-#: standalone/draknfs:391 standalone/draksambashare:592
-#: standalone/draksambashare:771
-#, c-format
-msgid "Directory:"
-msgstr "Mappe:"
-
-#: standalone/draknfs:394
-#, c-format
-msgid "Host access"
-msgstr "Vært-adgang"
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Access:"
-msgstr "Adgang:"
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Hosts Access"
-msgstr "Værter med adgang"
-
-#: standalone/draknfs:399
-#, c-format
-msgid "User ID Mapping"
-msgstr "Omformning af Bruger-ID"
-
-#: standalone/draknfs:401
-#, c-format
-msgid "User ID:"
-msgstr "Bruger-ID:"
-
-#: standalone/draknfs:401
-#, c-format
-msgid "Help User ID"
-msgstr "Hjælp BrugerID"
-
-#: standalone/draknfs:402
-#, c-format
-msgid "Anonymous user ID:"
-msgstr "Anonym bruger-ID"
-
-#: standalone/draknfs:403
-#, c-format
-msgid "Anonymous Group ID:"
-msgstr "Anonym gruppe-ID"
-
-#: standalone/draknfs:444
-#, c-format
-msgid "Can't create this directory."
-msgstr "Kan ikke oprette dette katalog."
-
-#: standalone/draknfs:447
-#, c-format
-msgid "You must specify hosts access."
-msgstr "Du må specificere værter som skal have adgang."
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Share Directory"
-msgstr "Dele-mappe"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Hosts Wildcard"
-msgstr "Vært-joker"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "General Options"
-msgstr "Generelle indstillinger"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Custom Options"
-msgstr "Tilpassede indstillinger"
-
-#: standalone/draknfs:539 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Please enter a directory to share."
-msgstr "Indtast et katalog som skal deles."
-
-#: standalone/draknfs:546
-#, c-format
-msgid "Please use the modify button to set right access."
-msgstr "Brug ændr-knappen for at sætte rigtige rettigheder."
-
-#: standalone/draknfs:600
-#, c-format
-msgid "DrakNFS manage NFS shares"
-msgstr "DrakNFS håndterer delte NFS-ressurser"
-
-#: standalone/draknfs:609
-#, c-format
-msgid "Failed to add NFS share."
-msgstr "Kunne ikke tilføje delt NFS-ressurce."
-
-#: standalone/draknfs:616
-#, c-format
-msgid "Failed to Modify NFS share."
-msgstr "Kunne ikke ændre delt NFS-ressurce."
-
-#: standalone/draknfs:623
-#, c-format
-msgid "Failed to remove an NFS share."
-msgstr "Kunne ikke fjerne delt NFS-ressurce."
-
-#: standalone/drakperm:21
-#, c-format
-msgid "System settings"
-msgstr "Systemindstillinger"
-
-#: standalone/drakperm:22
-#, c-format
-msgid "Custom settings"
-msgstr "Brugerdefinerede indstillinger"
-
-#: standalone/drakperm:23
-#, c-format
-msgid "Custom & system settings"
-msgstr "Brugerdefinerede indstillinger og systemindstillinger"
-
-#: standalone/drakperm:43
-#, c-format
-msgid "Editable"
-msgstr "Kan redigeres"
-
-#: standalone/drakperm:48 standalone/drakperm:323
-#: standalone/draksambashare:101
-#, c-format
-msgid "Path"
-msgstr "Sti"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "User"
-msgstr "Bruger"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "Group"
-msgstr "Gruppe"
-
-#: standalone/drakperm:48 standalone/drakperm:335
-#, c-format
-msgid "Permissions"
-msgstr "Rettigheder"
-
-#: standalone/drakperm:57
-#, c-format
-msgid "Add a new rule"
-msgstr "Tilføj en ny regel"
-
-#: standalone/drakperm:64 standalone/drakperm:99 standalone/drakperm:124
-#, c-format
-msgid "Edit current rule"
-msgstr "Redigér aktuelle regel"
-
-#: standalone/drakperm:106
-#, c-format
-msgid ""
-"Here you can see files to use in order to fix permissions, owners, and "
-"groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
-msgstr ""
-"Her kan du se filer til brug for at rette tilladelser, ejere og grupper via "
-"msec.\n"
-"Du kan også redigere dine egne regler som vil tilsidesætte standard-reglerne."
-
-#: standalone/drakperm:109
-#, c-format
-msgid ""
-"The current security level is %s.\n"
-"Select permissions to see/edit"
-msgstr ""
-"Det aktuelle sikkerhedsniveau er %s\n"
-"Vælg rettigheder at vise eller redigere"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Up"
-msgstr "Op"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Flyt valgte regel et niveau op"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Down"
-msgstr "Ned"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Flyt valgte regel et niveau ned"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a rule"
-msgstr "Tilføj en regel"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Tilføj en ny regel i slutningen"
-
-#: standalone/drakperm:123
-#, c-format
-msgid "Delete selected rule"
-msgstr "Slet valgte regel"
-
-#: standalone/drakperm:242
-#, c-format
-msgid "browse"
-msgstr "bladr"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "user"
-msgstr "bruger"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "group"
-msgstr "gruppe"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "other"
-msgstr "andet"
-
-#: standalone/drakperm:252
-#, c-format
-msgid "Read"
-msgstr "Læs"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:255
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Aktivér '%s' for at læse filen"
-
-#: standalone/drakperm:259
-#, c-format
-msgid "Write"
-msgstr "Skriv"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:262
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Aktivér '%s' for at skrive filen"
-
-#: standalone/drakperm:266
-#, c-format
-msgid "Execute"
-msgstr "Udfør"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:269
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Aktivér '%s' for at udføre filen"
-
-#: standalone/drakperm:272
-#, c-format
-msgid "Sticky-bit"
-msgstr "Sticky-bit"
-
-#: standalone/drakperm:272
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Brugt til katalog:\n"
-" kun ejeren af kataloget eller filen i dette katalog kan slette den"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Brug ejers id ved udførelsen"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Use group id for execution"
-msgstr "Brug gruppe-id ved udførelsen"
-
-#: standalone/drakperm:292 standalone/drakxtv:89
-#, c-format
-msgid "User:"
-msgstr "Bruger:"
-
-#: standalone/drakperm:294
-#, c-format
-msgid "Group:"
-msgstr "Gruppe:"
-
-#: standalone/drakperm:298
-#, c-format
-msgid "Current user"
-msgstr "Aktuelle bruger"
-
-#: standalone/drakperm:299
-#, c-format
-msgid "When checked, owner and group will not be changed"
-msgstr "Ved kontrol vil ejer og gruppe ikke blive ændret"
-
-#: standalone/drakperm:309
-#, c-format
-msgid "Path selection"
-msgstr "Valg af sti"
-
-#: standalone/drakperm:329
-#, c-format
-msgid "Property"
-msgstr "Egenskab"
-
-#: standalone/drakperm:380
-#, c-format
-msgid ""
-"The first character of the path must be a slash (\"/\"):\n"
-"\"%s\""
-msgstr ""
-"Det første tegn i stien skal være en skråstreg (\"/\"):\n"
-"\"%s\""
-
-#: standalone/drakperm:390
-#, c-format
-msgid "Both the username and the group must valid!"
-msgstr "Både brugernavnet og gruppen skal være gyldig!"
-
-#: standalone/drakperm:391
-#, c-format
-msgid "User: %s"
-msgstr "Bruger: %s"
-
-#: standalone/drakperm:392
-#, c-format
-msgid "Group: %s"
-msgstr "Gruppe: %s"
-
-#: standalone/drakroam:33
-#, c-format
-msgid ""
-"You do not have any wireless interface.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Du har ingen trådløse grænsesnit.\n"
-"Kør \"%s\"-assistenten fra Mandriva Linux-kontrolcenter"
-
-#: standalone/drakroam:48
-#, c-format
-msgid "SSID"
-msgstr "SSID"
-
-#: standalone/drakroam:49
-#, c-format
-msgid "Signal strength"
-msgstr "Signalstyrke:"
-
-#: standalone/drakroam:51
-#, c-format
-msgid "Encryption"
-msgstr "Krypteringsnøgle"
-
-#: standalone/drakroam:112
-#, c-format
-msgid "Please enter settings for wireless network \"%s\""
-msgstr "Indtast opsætning for det trådløse netværk '%s'"
-
-#: standalone/drakroam:123
-#, c-format
-msgid "DNS server"
-msgstr "DNS-server"
-
-#: standalone/drakroam:228
-#, c-format
-msgid "Connect"
-msgstr "Forbind"
-
-#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/drakroam:229 standalone/printerdrake:251
-#, c-format
-msgid "Refresh"
-msgstr "Genopfrisk"
-
-#: standalone/draksambashare:68
-#, c-format
-msgid "Share directory"
-msgstr "Fildelings-katalog"
-
-#: standalone/draksambashare:69 standalone/draksambashare:102
-#, c-format
-msgid "Comment"
-msgstr "Kommentar"
-
-#: standalone/draksambashare:70 standalone/draksambashare:103
-#, c-format
-msgid "Browseable"
-msgstr "Søgbar"
-
-#: standalone/draksambashare:71
-#, c-format
-msgid "Public"
-msgstr "Offentlig"
-
-#: standalone/draksambashare:72 standalone/draksambashare:108
-#, c-format
-msgid "Writable"
-msgstr "Skrivbar"
-
-#: standalone/draksambashare:73 standalone/draksambashare:149
-#, c-format
-msgid "Create mask"
-msgstr "Opret maske"
-
-#: standalone/draksambashare:74 standalone/draksambashare:150
-#, c-format
-msgid "Directory mask"
-msgstr "Maske for katalog"
-
-#: standalone/draksambashare:75
-#, c-format
-msgid "Read list"
-msgstr "Læs liste"
-
-#: standalone/draksambashare:76 standalone/draksambashare:109
-#: standalone/draksambashare:606
-#, c-format
-msgid "Write list"
-msgstr "Skriv liste"
-
-#: standalone/draksambashare:77 standalone/draksambashare:141
-#, c-format
-msgid "Admin users"
-msgstr "Admin-brugere"
-
-#: standalone/draksambashare:78 standalone/draksambashare:142
-#, c-format
-msgid "Valid users"
-msgstr "Gyldige brugere"
-
-#: standalone/draksambashare:79
-#, c-format
-msgid "Inherit Permissions"
-msgstr "Nedarv rRettigheder"
-
-#: standalone/draksambashare:80 standalone/draksambashare:143
-#, c-format
-msgid "Hide dot files"
-msgstr "Skjul dot-filer"
-
-#: standalone/draksambashare:82 standalone/draksambashare:148
-#, c-format
-msgid "Preserve case"
-msgstr "Bevar versaltype"
-
-#: standalone/draksambashare:83
-#, c-format
-msgid "Force create mode"
-msgstr "Gennemtving oprettelsestilstand"
-
-#: standalone/draksambashare:84
-#, c-format
-msgid "Force group"
-msgstr "Gennemtving gruppe"
-
-#: standalone/draksambashare:85 standalone/draksambashare:147
-#, c-format
-msgid "Default case"
-msgstr "Standardtilfælde"
-
-#: standalone/draksambashare:100
-#, c-format
-msgid "Printer name"
-msgstr "Printernavn:"
-
-#: standalone/draksambashare:104 standalone/draksambashare:598
-#, c-format
-msgid "Printable"
-msgstr "Udskrivelig"
-
-#: standalone/draksambashare:105
-#, c-format
-msgid "Print Command"
-msgstr "Udskriftskommando"
-
-#: standalone/draksambashare:106
-#, c-format
-msgid "LPQ command"
-msgstr "LPQ-kommando"
-
-#: standalone/draksambashare:107
-#, c-format
-msgid "Guest ok"
-msgstr "Gæst o.k."
-
-#: standalone/draksambashare:110 standalone/draksambashare:151
-#: standalone/draksambashare:607
-#, c-format
-msgid "Inherit permissions"
-msgstr "Nedarv rettigheder"
-
-#: standalone/draksambashare:112
-#, c-format
-msgid "Create mode"
-msgstr "Oprettelsestilstand"
-
-#: standalone/draksambashare:113
-#, c-format
-msgid "Use client driver"
-msgstr "Brug klientdriver"
-
-#: standalone/draksambashare:139
-#, c-format
-msgid "Read List"
-msgstr "Læs liste"
-
-#: standalone/draksambashare:140
-#, c-format
-msgid "Write List"
-msgstr "Skriv liste"
-
-#: standalone/draksambashare:145
-#, c-format
-msgid "Force Group"
-msgstr "Gennemtving gruppe"
-
-#: standalone/draksambashare:146
-#, c-format
-msgid "Force create group"
-msgstr "Tving gruppeoprettelse"
-
-#: standalone/draksambashare:166
-#, c-format
-msgid "About Draksambashare"
-msgstr "Om Draksambashare"
-
-#: standalone/draksambashare:166
-#, c-format
-msgid ""
-"Mandriva Linux \n"
-"Release: %s\n"
-"Author: Antoine Ginies\n"
-"\n"
-"This is a simple tool to easily manage Samba configuration."
-msgstr ""
-"Mandriva Linux \n"
-"Udgivelse: %s\n"
-"Forfatter: Antoine Ginies\n"
-"\n"
-"Dette er et simpelt værktøj til nemt at håndtere Samba-konfigurering."
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Samba server"
-msgstr "Samba-server"
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Restarting/Reloading Samba server..."
-msgstr "Starter Samba-server igen..."
-
-#: standalone/draksambashare:187
-#, c-format
-msgid "Error Restarting/Reloading Samba server"
-msgstr "Fejl ved genstart af Samba-server"
-
-#: standalone/draksambashare:372
-#, c-format
-msgid "Add a Samba share"
-msgstr "Tilføj en Samba-fildeling"
-
-#: standalone/draksambashare:375
-#, c-format
-msgid "Goal of this wizard is to easily create a new Samba share."
-msgstr "Målet for denne hjælper er at nemt oprette en ny, delt Samba-ressurce."
-
-#: standalone/draksambashare:377
-#, c-format
-msgid "Name of the share:"
-msgstr "Den delte mappes navn :"
-
-#: standalone/draksambashare:378 standalone/draksambashare:591
-#: standalone/draksambashare:772
-#, c-format
-msgid "Comment:"
-msgstr "Kommentar:"
-
-#: standalone/draksambashare:379
-#, c-format
-msgid "Path:"
-msgstr "Sti:"
-
-#: standalone/draksambashare:384
-#, c-format
-msgid ""
-"Share with the same name already exist or share name empty, please choose "
-"another name."
-msgstr ""
-"Delt ressurce med det samme navn eksisterer allerede, eller også er navnet "
-"tomt, vælg venligst et andet navn."
-
-#: standalone/draksambashare:388 standalone/draksambashare:394
-#, c-format
-msgid "Can't create the directory, please enter a correct path."
-msgstr "Kan ikke oprette dette katalog, angiv venligst en gyldig sti."
-
-#: standalone/draksambashare:391 standalone/draksambashare:627
-#: standalone/draksambashare:794
-#, c-format
-msgid "Please enter a Comment for this share."
-msgstr "Indtast en kommentar for denne ressurce."
-
-#: standalone/draksambashare:422
-#, c-format
-msgid ""
-"The wizard successfully added the Samba share. Now just double click on it "
-"in treeview to modify it"
-msgstr ""
-"Hjælper tilføjede med held den delte Samba-ressurce. Nu kan du bare "
-"dobbeltklikke på den i trævisning for at ændre på den"
-
-#: standalone/draksambashare:437
-#, c-format
-msgid "pdf-gen - a PDF generator"
-msgstr "pdf-gen - en PDF-generator"
-
-#: standalone/draksambashare:438
-#, c-format
-msgid "printers - all printers available"
-msgstr "printere - alle printere tilgængelige"
-
-#: standalone/draksambashare:442
-#, c-format
-msgid "Add Special Printer share"
-msgstr "Tilføj speciel delt Samba-printerressurce"
-
-#: standalone/draksambashare:445
-#, c-format
-msgid "Goal of this wizard is to easily create a new special printer Samba share."
-msgstr ""
-"Målet for denne hjælper er at nemt oprette en speciel delt Samba-"
-"printerressurce."
-
-#: standalone/draksambashare:453
-#, c-format
-msgid "A PDF generator already exists."
-msgstr "En PDF-generator eksisterer allerede."
-
-#: standalone/draksambashare:477
-#, c-format
-msgid "Printers and print$ already exist."
-msgstr "Printere og print$ eksisterer allerede."
-
-#: standalone/draksambashare:528
-#, c-format
-msgid "The wizard successfully added the printer Samba share"
-msgstr "Hjælperen tilføjede Samba printer-delingen"
-
-#: standalone/draksambashare:551
-#, c-format
-msgid "Please add or select a Samba printer share to be able to modify it."
-msgstr "Tilføj eller vælg en delt Samba-skriverressurce for at kunne ændre den."
-
-#: standalone/draksambashare:587
-#, c-format
-msgid "Printer share"
-msgstr "Delt printerressurce"
-
-#: standalone/draksambashare:590
-#, c-format
-msgid "Printer name:"
-msgstr "Printernavn:"
-
-#: standalone/draksambashare:596 standalone/draksambashare:777
-#, c-format
-msgid "Writable:"
-msgstr "Skrivbar :"
-
-#: standalone/draksambashare:597 standalone/draksambashare:778
-#, c-format
-msgid "Browseable:"
-msgstr "Søgbar :"
-
-#: standalone/draksambashare:602
-#, c-format
-msgid "Advanced options"
-msgstr "Avancerede tilvalg"
-
-#: standalone/draksambashare:604
-#, c-format
-msgid "Printer access"
-msgstr "Printeradgang"
-
-#: standalone/draksambashare:608
-#, c-format
-msgid "Guest ok:"
-msgstr "Gæst o.k.:"
-
-#: standalone/draksambashare:609
-#, c-format
-msgid "Create mode:"
-msgstr "Oprettelsestilstand:"
-
-#: standalone/draksambashare:613
-#, c-format
-msgid "Printer command"
-msgstr "Printerkommando"
-
-#: standalone/draksambashare:615
-#, c-format
-msgid "Print command:"
-msgstr "Udskriftskommando:"
-
-#: standalone/draksambashare:616
-#, c-format
-msgid "LPQ command:"
-msgstr "LPQ-kommando:"
-
-#: standalone/draksambashare:617
-#, c-format
-msgid "Printing:"
-msgstr "Udskriver:"
-
-#: standalone/draksambashare:633
-#, c-format
-msgid "create mode should be numeric. ie: 0755."
-msgstr "oprettelsesrettigheder bør være numerisk. fx 0755."
-
-#: standalone/draksambashare:695
-#, c-format
-msgid "DrakSamba entry"
-msgstr "DrakSamba-indgang"
-
-#: standalone/draksambashare:700
-#, c-format
-msgid "Please add or select a Samba share to be able to modify it."
-msgstr "Tilføj eller vælg en delt Samba-ressurc for at kunne ændre den."
-
-#: standalone/draksambashare:723
-#, c-format
-msgid "Samba user access"
-msgstr "Brugeradgang for Samba"
-
-#: standalone/draksambashare:731
-#, c-format
-msgid "Mask options"
-msgstr "Valgmuligheder for maske"
-
-#: standalone/draksambashare:745
-#, c-format
-msgid "Display options"
-msgstr "Vis valgmuligheder:"
-
-#: standalone/draksambashare:767
-#, c-format
-msgid "Samba share directory"
-msgstr "Samba fildelings-katalog"
-
-#: standalone/draksambashare:770
-#, c-format
-msgid "Share name:"
-msgstr "Dele-navn:"
-
-#: standalone/draksambashare:776
-#, c-format
-msgid "Public:"
-msgstr "Offentlig:"
-
-#: standalone/draksambashare:800
-#, c-format
-msgid "Create mask, create mode and directory mask should be numeric. ie: 0755."
-msgstr ""
-"Opretelses-maske, oprettelsesrettigheder og katalogmaske bør være nummerisk. "
-"fx: 0755."
-
-#: standalone/draksambashare:807
-#, c-format
-msgid "Please create this Samba user: %s"
-msgstr "Opret denne Samba-bruger: %s"
-
-#: standalone/draksambashare:930
-#, c-format
-msgid "User information"
-msgstr "Brugerinformation"
-
-#: standalone/draksambashare:932
-#, c-format
-msgid "User name:"
-msgstr "Brugernavn:"
-
-#: standalone/draksambashare:933
-#, c-format
-msgid "Password:"
-msgstr "Kodeord:"
-
-#: standalone/draksambashare:1133
-#, c-format
-msgid "Failed to add Samba share."
-msgstr "Kunne ikke tilføje delt Samba-ressurce."
-
-#: standalone/draksambashare:1142
-#, c-format
-msgid "Failed to Modify Samba share."
-msgstr "Kunne ikke ændre på delt Samba-ressurce."
-
-#: standalone/draksambashare:1151
-#, c-format
-msgid "Failed to remove a Samba share."
-msgstr "Kunne ikke fjerne delt NFS-ressurce."
-
-#: standalone/draksambashare:1158
-#, c-format
-msgid "File share"
-msgstr "Delt filressurce"
-
-#: standalone/draksambashare:1166
-#, c-format
-msgid "Add printers"
-msgstr "Tilføj printere"
-
-#: standalone/draksambashare:1172
-#, c-format
-msgid "Failed to add printers."
-msgstr "Kunne ikke tilføje printere."
-
-#: standalone/draksambashare:1181
-#, c-format
-msgid "Failed to Modify."
-msgstr "Kunne ikke ændre."
-
-#: standalone/draksambashare:1190
-#, c-format
-msgid "Failed to remove."
-msgstr "Kunne ikke fjerne."
-
-#: standalone/draksambashare:1197
-#, c-format
-msgid "Printers"
-msgstr "Printere"
-
-#: standalone/draksambashare:1205
-#, c-format
-msgid "Change password"
-msgstr "Ændr adgangskode"
-
-#: standalone/draksambashare:1210
-#, c-format
-msgid "Failed to change user password."
-msgstr "Kunne ikke ændre brugeradgangskode."
-
-#: standalone/draksambashare:1218
-#, c-format
-msgid "Failed to add user."
-msgstr "Kunne ikke tilføje bruger."
-
-#: standalone/draksambashare:1221
-#, c-format
-msgid "Delete user"
-msgstr "Slet bruger"
-
-#: standalone/draksambashare:1230
-#, c-format
-msgid "Failed to delete user."
-msgstr "Kunne ikke slette bruger."
-
-#: standalone/draksambashare:1242
-#, c-format
-msgid "Samba Users"
-msgstr "Samba-brugere"
-
-#: standalone/draksambashare:1251
-#, c-format
-msgid "DrakSamba manage Samba shares"
-msgstr "DrakSamba håndterer delte Samba-ressurser"
-
-#: standalone/draksec:49
-#, c-format
-msgid "ALL"
-msgstr "ALL"
-
-#: standalone/draksec:50
-#, c-format
-msgid "LOCAL"
-msgstr "LOCAL"
-
-#: standalone/draksec:51
-#, c-format
-msgid "NONE"
-msgstr "NONE"
-
-#: standalone/draksec:53 standalone/net_applet:480
-#, c-format
-msgid "Ignore"
-msgstr "Ignorér"
-
-#. -PO: Do not alter the <span ..> and </span> tags.
-#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
-#: standalone/draksec:103
-#, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Administrator</span>' is the one who "
-"will receive security alerts if the\n"
-"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a "
-"username or an email.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Level</span>' menu allows you to select "
-"one of the six preconfigured security levels\n"
-"provided with msec. These levels range from '<span weight=\"bold\">poor</"
-"span>' security and ease of use, to\n"
-"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive "
-"server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
-"very\n"
-"easy to use security level. It should only be used for machines not "
-"connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
-"security\n"
-"recommended for a computer that will be used to connect to the Internet as "
-"a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
-"enough\n"
-"to use the system as a server which can accept connections from many "
-"clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower "
-"level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-"Her kan du opsætte sikkerhedsniveauet og -administrator for din maskine\n"
-"\n"
-"\n"
-"'<span weight=\"bold\">Sikkerhedsadministratoren</span>' er den som vil "
-"modtage '<b>sikkerhedspåmindelser</b>', \n"
-"hvis muligheden '<span weight=\"bold\">Sikkerhedspåmindelser</span>' er "
-"aktiveret. Det kan være et \n"
-"brugernavn eller en epostadresse.\n"
-"\n"
-"\n"
-"Menuen for '<span weight=\"bold\">sikkerhedsniveau</span>' tillader at vælge "
-"et af de seks prækonfigurerede \n"
-"sikkerhedsniveauer som leveres af msec. Disse niveauer spænder fra '<span "
-"weight=\"bold\">ringe<span>' \n"
-"sikkerhed og nem brug til en '<b>paranoid</span>' konfigurering, der er "
-"passende til meget\n"
-"følsomme server-opsætninger:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Ringe</span>: Dette sikkerhedsniveau er "
-"totalt usikkert men \n"
-"meget nemt at anvende. Det bør kun bruges af maskiner der \n"
-"ikke er forbundet til noget netværk, og som ikke er tilgængeligt for "
-"enhver.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: Dette er standard "
-"sikkerheden \n"
-"anbefalet for en maskine som vil blive brugt til opkobling på internettet "
-"som klient.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Høj</span>: Der er allerede en del "
-"begrænsninger, og flere automatiske kontroller vil bliver kørt hver nat.\n"
-"\n"
-"<span foreground=\"royalblue3\">Højere</span>: Sikkerheden er nu høj nok til "
-"at \n"
-"bruge systemet som en server som kan tage imod forbindelser fra mange "
-"klienter. \n"
-"Hvis din maskine kun er en klient på internettet, bør du vælge et lavere "
-"niveau.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: Dette ligner det \n"
-"foregående niveau, men systemet er helt lukket og\n"
-"sikkerhedsfaciliteter er på deres højeste"
-
-#: standalone/draksec:156 standalone/harddrake2:207
-#, c-format
-msgid ""
-"Description of the fields:\n"
-"\n"
-msgstr ""
-"Beskrivelse af felterne:\n"
-"\n"
-
-#: standalone/draksec:170
-#, c-format
-msgid "(default value: %s)"
-msgstr "(Standard: %s)"
-
-#: standalone/draksec:212
-#, c-format
-msgid "Security Level:"
-msgstr "Sikkerhedsniveau:"
-
-#: standalone/draksec:219
-#, c-format
-msgid "Security Administrator:"
-msgstr "Sikkerhedsadministrator:"
-
-#: standalone/draksec:221
-#, c-format
-msgid "Basic options"
-msgstr "Basale valgmuligheder"
-
-#: standalone/draksec:235
-#, c-format
-msgid "Network Options"
-msgstr "Netværkstilvalg"
-
-#: standalone/draksec:235
-#, c-format
-msgid "System Options"
-msgstr "Systemtilvalg"
-
-#: standalone/draksec:270
-#, c-format
-msgid "Periodic Checks"
-msgstr "Periodiske kontroller"
-
-#: standalone/draksec:300
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Vent venligst, sætter sikkerhedsniveau..."
-
-#: standalone/draksec:306
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Vent venligst, sætter sikkerhedstilvalg..."
-
-#: standalone/draksound:47
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Intet lydkort genkendt!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/draksound:50
-#, c-format
-msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"Intet lydkort blev genkendt på din maskine. Tjek venligst at et lydkort der "
-"understøttes af Linux er korrekt isat.\n"
-"\n"
-"\n"
-"Du kan besøge vores database over udstyr på:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/draksound:57
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or "
-"the sndconfig program. Just type \"alsaconf\" or \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Bemærk: Hvis du har et ISA PnP lydkort skal du bruge alsaconf- eller sndconf-"
-"programmet. Du skal blot indtaste 'alsaconf' eller 'sndconfig' i et terminal-"
-"program."
-
-#: standalone/draksplash:30
-#, c-format
-msgid "x coordinate of text box"
-msgstr "x-koordinat på tekst-felt"
-
-#: standalone/draksplash:31
-#, c-format
-msgid "y coordinate of text box"
-msgstr "y-koordinat på tekst-felt"
-
-#: standalone/draksplash:32
-#, c-format
-msgid "text box width"
-msgstr "Bredde på tekstfelt"
-
-#: standalone/draksplash:33
-#, c-format
-msgid "text box height"
-msgstr "højde på tekstrude"
-
-#: standalone/draksplash:34
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"x-koordinatet for forløbsindikatorens\n"
-"øvre venstre hjørne"
-
-#: standalone/draksplash:35
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-"y-koordinatet for forløbsindikatorens\n"
-"øvre venstre hjørne"
-
-#: standalone/draksplash:36
-#, c-format
-msgid "the width of the progress bar"
-msgstr "bredden på forløbslinjen"
-
-#: standalone/draksplash:37
-#, c-format
-msgid "the height of the progress bar"
-msgstr "højden på forløbslinjen"
-
-#: standalone/draksplash:38
-#, c-format
-msgid "x coordinate of the text"
-msgstr "x-koordinat på teksten"
-
-#: standalone/draksplash:39
-#, c-format
-msgid "y coordinate of the text"
-msgstr "y-koordinat på teksten"
-
-#: standalone/draksplash:40
-#, c-format
-msgid "text box transparency"
-msgstr "gennemsigtighed af tekstfelt"
-
-#: standalone/draksplash:41
-#, c-format
-msgid "progress box transparency"
-msgstr "Gennemsigtighed af frenskridtsfelt"
-
-#: standalone/draksplash:42
-#, c-format
-msgid "text size"
-msgstr "tekststørrelse"
-
-#: standalone/draksplash:59
-#, c-format
-msgid "Choose progress bar color 1"
-msgstr "Vælg farve 1 for fremskridtsbjælke"
-
-#: standalone/draksplash:60
-#, c-format
-msgid "Choose progress bar color 2"
-msgstr "Vælg farve 2 for fremskridtsbjælke"
-
-#: standalone/draksplash:61
-#, c-format
-msgid "Choose progress bar background"
-msgstr "Vælg baggrund for fremskridtsbjælke"
-
-#: standalone/draksplash:62
-#, c-format
-msgid "Gradient type"
-msgstr "Type af farveovergang"
-
-#: standalone/draksplash:63
-#, c-format
-msgid "Choose text color"
-msgstr "Vælg farve på tekst"
-
-#: standalone/draksplash:65 standalone/draksplash:72
-#, c-format
-msgid "Choose picture"
-msgstr "Vælg billede"
-
-#: standalone/draksplash:66
-#, c-format
-msgid "Silent bootsplash"
-msgstr "Stille bootsplask"
-
-#: standalone/draksplash:69
-#, c-format
-msgid "Choose text zone color"
-msgstr "Vælg farve på tekstzone"
-
-#: standalone/draksplash:70
-#, c-format
-msgid "Text color"
-msgstr "Tekstfarve"
-
-#: standalone/draksplash:71
-#, c-format
-msgid "Background color"
-msgstr "Baggrundsfarve"
-
-#: standalone/draksplash:73
-#, c-format
-msgid "Verbose bootsplash"
-msgstr "Informativ bootsplask"
-
-#: standalone/draksplash:75
-#, c-format
-msgid "Display logo on Console"
-msgstr "Vis logo på konsol"
-
-#: standalone/draksplash:78
-#, c-format
-msgid "Console bootsplash"
-msgstr "Konsol-bootsplask"
-
-#: standalone/draksplash:84
-#, c-format
-msgid "Theme name"
-msgstr "Tema-navn"
-
-#: standalone/draksplash:87
-#, c-format
-msgid "final resolution"
-msgstr "endelig opløsning"
-
-#: standalone/draksplash:92
-#, c-format
-msgid "Save theme"
-msgstr "gem temaer"
-
-#: standalone/draksplash:153
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "gemmer startskærmstema..."
-
-#: standalone/draksplash:162
-#, c-format
-msgid "Unable to load image file %s"
-msgstr "Kunne ikke indlæse billedfil %s"
-
-#: standalone/draksplash:173
-#, c-format
-msgid "choose image"
-msgstr "vælg billede"
-
-#: standalone/draksplash:188
-#, c-format
-msgid "Color selection"
-msgstr "Farvevalg"
-
-#: standalone/drakups:71
-#, c-format
-msgid "Connected through a serial port or an usb cable"
-msgstr "Forbundet via en seriel port eller et usb-kabel"
-
-#: standalone/drakups:78
-#, c-format
-msgid "Add an UPS device"
-msgstr "Tilføj en UPS-enhed"
-
-#: standalone/drakups:81
-#, c-format
-msgid ""
-"Welcome to the UPS configuration utility.\n"
-"\n"
-"Here, you'll add a new UPS to your system.\n"
-msgstr ""
-"Velkommen til programmet for konfigurering af UPS.\n"
-"\n"
-"Her vil du kunne tilføje en UPS til dit system.\n"
-
-#: standalone/drakups:88
-#, c-format
-msgid ""
-"We're going to add an UPS device.\n"
-"\n"
-"Do you want to autodetect UPS devices connected to this machine or to "
-"manually select them?"
-msgstr ""
-"Vi er ved at tilføje en UPS-enhed.\n"
-"\n"
-"Foretrækker du at automatisk finde UPS-enheder forbundet til denne maskine, "
-"eller?"
-
-#: standalone/drakups:91
-#, c-format
-msgid "Autodetection"
-msgstr "Automatisk detektion"
-
-#: standalone/drakups:99 standalone/harddrake2:375
-#, c-format
-msgid "Detection in progress"
-msgstr "Søgning udføres"
-
-#: standalone/drakups:119
-#, c-format
-msgid "The wizard successfully added the following UPS devices:"
-msgstr "Hjælperen tilføjede de følgende UPS-enheder uden problemer:"
-
-#: standalone/drakups:121
-#, c-format
-msgid "No new UPS devices was found"
-msgstr "Ingen nye UPS-enheder blev fundet"
-
-#: standalone/drakups:126 standalone/drakups:138
-#, c-format
-msgid "UPS driver configuration"
-msgstr "Konfiguration af UPS-driver"
-
-#: standalone/drakups:126
-#, c-format
-msgid "Please select your UPS model."
-msgstr "Vælg din UPS-model."
-
-#: standalone/drakups:127
-#, c-format
-msgid "Manufacturer / Model:"
-msgstr "Producent og model"
-
-#: standalone/drakups:138
-#, c-format
-msgid ""
-"We are configuring the \"%s\" UPS from \"%s\".\n"
-"Please fill in its name, its driver and its port."
-msgstr ""
-"Vi er ved at konfigurere \"%s\"-UPS'en fra \"%s\".\n"
-"Udfyld venligst navnet, driveren og porten på den."
-
-#: standalone/drakups:143
-#, c-format
-msgid "Name:"
-msgstr "Navn:"
-
-#: standalone/drakups:143
-#, c-format
-msgid "The name of your ups"
-msgstr "Navnet på UPS'en"
-
-#: standalone/drakups:144
-#, c-format
-msgid "The driver that manages your ups"
-msgstr "Driveren som styrer din UPS"
-
-#: standalone/drakups:145
-#, c-format
-msgid "Port:"
-msgstr "Port:"
-
-#: standalone/drakups:147
-#, c-format
-msgid "The port on which is connected your ups"
-msgstr "Porten som din UPS er forbundet til"
-
-#: standalone/drakups:157
-#, c-format
-msgid "The wizard successfully configured the new \"%s\" UPS device."
-msgstr "Hjælperen konfigurerede den nye '%s' UPS-enhed uden problemer."
-
-#: standalone/drakups:248
-#, c-format
-msgid "UPS devices"
-msgstr "UPS-enheder"
-
-#: standalone/drakups:249 standalone/drakups:268 standalone/drakups:284
-#: standalone/harddrake2:85 standalone/harddrake2:111
-#: standalone/harddrake2:118
-#, c-format
-msgid "Name"
-msgstr "Navn"
-
-#: standalone/drakups:267
-#, c-format
-msgid "UPS users"
-msgstr "UPS-brugere"
-
-#: standalone/drakups:283
-#, c-format
-msgid "Access Control Lists"
-msgstr "adgangskontrollister"
-
-#: standalone/drakups:284
-#, c-format
-msgid "IP mask"
-msgstr "IP-maske"
-
-#: standalone/drakups:296
-#, c-format
-msgid "Rules"
-msgstr "Regler"
-
-#: standalone/drakups:297
-#, c-format
-msgid "Action"
-msgstr "Handling"
-
-#: standalone/drakups:297 standalone/drakvpn:1132 standalone/harddrake2:82
-#, c-format
-msgid "Level"
-msgstr "Niveau"
-
-#: standalone/drakups:297
-#, c-format
-msgid "ACL name"
-msgstr "ACL-navn"
-
-#: standalone/drakups:327 standalone/drakups:331 standalone/drakups:340
-#, c-format
-msgid "DrakUPS"
-msgstr "DrakUPS"
-
-#: standalone/drakups:337
-#, c-format
-msgid "Welcome to the UPS configuration tools"
-msgstr "Velkommen tol konfigurationsværktøjerne for UPS"
-
-#: standalone/drakvpn:73
-#, c-format
-msgid "DrakVPN"
-msgstr "DrakVPN"
-
-#: standalone/drakvpn:95
-#, c-format
-msgid "The VPN connection is enabled."
-msgstr "VPN-forbindelsen er aktiveret."
-
-#: standalone/drakvpn:96
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Indstillingen af en VPN-forbindelse er allerede gjort.\n"
-"\n"
-"Det er aktiveret nu.\n"
-"\n"
-"Hvad ønsker du at gøre?"
-
-#: standalone/drakvpn:101
-#, c-format
-msgid "disable"
-msgstr "deaktivér"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127
-#, c-format
-msgid "reconfigure"
-msgstr "genkonfigurér"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127 standalone/drakvpn:362
-#: standalone/drakvpn:721
-#, c-format
-msgid "dismiss"
-msgstr "forkast"
-
-#: standalone/drakvpn:105
-#, c-format
-msgid "Disabling VPN..."
-msgstr "Deaktiverer VPN..."
-
-#: standalone/drakvpn:114
-#, c-format
-msgid "The VPN connection is now disabled."
-msgstr "VPN-forbindelse er nu slået fra."
-
-#: standalone/drakvpn:121
-#, c-format
-msgid "VPN connection currently disabled"
-msgstr "VPN-forbindelse er slået fra for øjeblikket"
-
-#: standalone/drakvpn:122
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Opsætningen for en VPN-opkobling er allerede blevet gjort.\n"
-"\n"
-"Dette er for øjeblikket deaktiveret.\n"
-"\n"
-"Hvad vil du gøre?"
-
-#: standalone/drakvpn:127
-#, c-format
-msgid "enable"
-msgstr "aktivér"
-
-#: standalone/drakvpn:135
-#, c-format
-msgid "Enabling VPN..."
-msgstr "Aktiverer VPN..."
-
-#: standalone/drakvpn:141
-#, c-format
-msgid "The VPN connection is now enabled."
-msgstr "VPN-opkobling er aktiveret nu."
-
-#: standalone/drakvpn:155 standalone/drakvpn:183
-#, c-format
-msgid "Simple VPN setup."
-msgstr "Simpel VPN-opsætning."
-
-#: standalone/drakvpn:156
-#, c-format
-msgid ""
-"You are about to configure your computer to use a VPN connection.\n"
-"\n"
-"With this feature, computers on your local private network and computers\n"
-"on some other remote private networks, can share resources, through\n"
-"their respective firewalls, over the Internet, in a secure manner. \n"
-"\n"
-"The communication over the Internet is encrypted. The local and remote\n"
-"computers look as if they were on the same network.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using\n"
-"drakconnect before going any further."
-msgstr ""
-"Du er ved at konfigurere din maskine til at bruge en VPN-opkobling.\n"
-"\n"
-"Med denne facilitet kan maskiner på dit lokale, private netværk og maskiner\n"
-"på andre fjerne, private netværker dele resurser igennem deres respektive\n"
-"brandmure over Internet på en sikker måde. \n"
-"\n"
-"Kommunikationen over internettet er krypteret. De lokale og fjerne maskiner\n"
-"ser ud som om de er på samme netværk.\n"
-"\n"
-"Vær sikker på at du har konfigureret din netværks/internetadgang ved at "
-"bruge\n"
-"drakconnect før du går videre."
-
-#: standalone/drakvpn:184
-#, c-format
-msgid ""
-"VPN connection.\n"
-"\n"
-"This program is based on the following projects:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - the docs and man pages coming with the %s package\n"
-"\n"
-"Please read AT LEAST the ipsec-howto docs\n"
-"before going any further."
-msgstr ""
-"VPN-opkobling.\n"
-"\n"
-"Dette program er baseret på følgende projekter:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - dokumenterne og man-siderne kommer med %s-pakken\n"
-"\n"
-"Læs venligst i det mindste ipsec-howto-dokumenterne\n"
-"før du går videre."
-
-#: standalone/drakvpn:196
-#, c-format
-msgid "Kernel module."
-msgstr "Kerne-modul."
-
-#: standalone/drakvpn:197
-#, c-format
-msgid ""
-"The kernel needs to have ipsec support.\n"
-"\n"
-"You're running a %s kernel version.\n"
-"\n"
-"This kernel has '%s' support."
-msgstr ""
-"Kernen har ikke ipsec-støtte.\n"
-"\n"
-"Du kører en %s-kerneversion.\n"
-"\n"
-"Denne kerne har '%s'-støtte"
-
-#: standalone/drakvpn:264
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problemer med installation af %s"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "Security Policies"
-msgstr "Sikkerhedspolitik"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "IKE daemon racoon"
-msgstr "IKE-dæmon racoon"
-
-#: standalone/drakvpn:281 standalone/drakvpn:292
-#, c-format
-msgid "Configuration file"
-msgstr "Konfigurationsfil"
-
-#: standalone/drakvpn:282
-#, c-format
-msgid ""
-"Configuration step!\n"
-"\n"
-"You need to define the Security Policies and then to \n"
-"configure the automatic key exchange (IKE) daemon. \n"
-"The KAME IKE daemon we're using is called 'racoon'.\n"
-"\n"
-"What would you like to configure?\n"
-msgstr ""
-"Konfigurationstrin!\n"
-"\n"
-"Du behøver at definere Sikkerhedsretningslinjerne for så at \n"
-"konfigurere den automatiske nøgleludvekslings- (IKE) dæmon. \n"
-"KAME IKE-dæmonen som vi bruger kaldes 'racoon'.\n"
-"\n"
-"Hvad ønsker du at konfigurere?\n"
-
-#: standalone/drakvpn:293
-#, c-format
-msgid ""
-"Next, we will configure the %s file.\n"
-"\n"
-"\n"
-"Simply click on Next.\n"
-msgstr ""
-"Så vil vi konfigurere %s-filen.\n"
-"\n"
-"\n"
-"Klik simpelthen på Næste.\n"
-
-#: standalone/drakvpn:311 standalone/drakvpn:671
-#, c-format
-msgid "%s entries"
-msgstr "%s indgange"
-
-#: standalone/drakvpn:312
-#, c-format
-msgid ""
-"The %s file contents\n"
-"is divided into sections.\n"
-"\n"
-"You can now:\n"
-"\n"
-" - display, add, edit, or remove sections, then\n"
-" - commit the changes\n"
-"\n"
-"What would you like to do?\n"
-msgstr ""
-"%s-filens indhold\n"
-"er delt op i flere afsnit.\n"
-"\n"
-"Du kan nu:\n"
-"\n"
-" - vise, tilføje, ændre eller fjerne afsnit, for så at\n"
-" - udføre ændringerne\n"
-"\n"
-"Hvad ønsker du at gøre?\n"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display"
-msgstr "Vis"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid "Commit"
-msgstr "Udfør"
-
-#: standalone/drakvpn:333 standalone/drakvpn:337 standalone/drakvpn:695
-#: standalone/drakvpn:699
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display configuration"
-msgstr "Vís konfiguration"
-
-#: standalone/drakvpn:338
-#, c-format
-msgid ""
-"The %s file does not exist.\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose 'add'.\n"
-msgstr ""
-"%s-filen eksisterer ikke.\n"
-"\n"
-"Det må være en ny konfiguration.\n"
-"\n"
-"Du skal gå tilbage og vælge 'tilføj'.\n"
-
-#: standalone/drakvpn:354
-#, c-format
-msgid "ipsec.conf entries"
-msgstr "ipsec.conf-indgange"
-
-#: standalone/drakvpn:355
-#, c-format
-msgid ""
-"The %s file contains different sections.\n"
-"\n"
-"Here is its skeleton:\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"You can now add one of these sections.\n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-"%s-filen indeholder forskellige afsnit.\n"
-"\n"
-"Her er dets opbygning:\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"Du kan nu tilføje et af disse afsnit.\n"
-"\n"
-"Vælg afsnittet du ønsker at tilføje.\n"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "config setup"
-msgstr "config opsætning"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "conn %default"
-msgstr "conn %default"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "normal conn"
-msgstr "normal forbindelse"
-
-#: standalone/drakvpn:368 standalone/drakvpn:409 standalone/drakvpn:496
-#, c-format
-msgid "Exists!"
-msgstr "Eksisterer!"
-
-#: standalone/drakvpn:369 standalone/drakvpn:410
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change its name.\n"
-msgstr ""
-"Et afsnit med dette navn eksisterer allerede.\n"
-"Afsnitsnavne skal være unikke.\n"
-"\n"
-"Du må gå tilbage og tilføje et andet afsnit\n"
-"eller ændre dets navn.\n"
-
-#: standalone/drakvpn:386
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow this config\n"
-"setup section.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Dette afsnit skal være på toppen af din\n"
-"%s-fil.\n"
-"\n"
-"Vær sikker på at alle afsnit følger denne konfigurations\n"
-"opsætningsafsnit.\n"
-"\n"
-"Vælg fortsæt eller forrige når du er færdig.\n"
-
-#: standalone/drakvpn:391
-#, c-format
-msgid "interfaces"
-msgstr "grænseflader"
-
-#: standalone/drakvpn:392
-#, c-format
-msgid "klipsdebug"
-msgstr "klipsdebug"
-
-#: standalone/drakvpn:393
-#, c-format
-msgid "plutodebug"
-msgstr "plutodebug"
-
-#: standalone/drakvpn:394
-#, c-format
-msgid "plutoload"
-msgstr "plutoload"
-
-#: standalone/drakvpn:395
-#, c-format
-msgid "plutostart"
-msgstr "plutostart"
-
-#: standalone/drakvpn:396
-#, c-format
-msgid "uniqueids"
-msgstr "uniqueids"
-
-#: standalone/drakvpn:430
-#, c-format
-msgid ""
-"This is the first section after the config\n"
-"setup one.\n"
-"\n"
-"Here you define the default settings. \n"
-"All the other sections will follow this one.\n"
-"The left settings are optional. If do not define\n"
-"them here, globally, you can define them in each\n"
-"section.\n"
-msgstr ""
-"Dette er det første afsnit efter\n"
-"konfigurationsopsætningen.\n"
-"\n"
-"Her kan du definere standardindstillingerne. \n"
-"Alle de andre afsnit vil følge dette.\n"
-"venstre-opsætninger er valgfrie. Hvis du ikke,\n"
-"definerer dem her (globalt), kan du definere dem\n"
-"i hvert afsnit.\n"
-
-#: standalone/drakvpn:437
-#, c-format
-msgid "PFS"
-msgstr "PFS"
-
-#: standalone/drakvpn:438
-#, c-format
-msgid "keyingtries"
-msgstr "keyingtries"
-
-#: standalone/drakvpn:439
-#, c-format
-msgid "compress"
-msgstr "compress"
-
-#: standalone/drakvpn:440
-#, c-format
-msgid "disablearrivalcheck"
-msgstr "disablearrivalcheck"
-
-#: standalone/drakvpn:441 standalone/drakvpn:480
-#, c-format
-msgid "left"
-msgstr "venstre"
-
-#: standalone/drakvpn:442 standalone/drakvpn:481
-#, c-format
-msgid "leftcert"
-msgstr "leftcert"
-
-#: standalone/drakvpn:443 standalone/drakvpn:482
-#, c-format
-msgid "leftrsasigkey"
-msgstr "leftrsasigkey"
-
-#: standalone/drakvpn:444 standalone/drakvpn:483
-#, c-format
-msgid "leftsubnet"
-msgstr "leftsubnet"
-
-#: standalone/drakvpn:445 standalone/drakvpn:484
-#, c-format
-msgid "leftnexthop"
-msgstr "leftnexthop"
-
-#: standalone/drakvpn:474
-#, c-format
-msgid ""
-"Your %s file has several sections, or connections.\n"
-"\n"
-"You can now add a new section.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Din %s-fil har flere afsnit, eller opkoblinger.\n"
-"\n"
-"Du kan nu tilføje et nyt afsnit.\n"
-"Vælg fortsæt når du er klar til at skrive dataene.\n"
-
-#: standalone/drakvpn:477
-#, c-format
-msgid "section name"
-msgstr "afsnitsnavn"
-
-#: standalone/drakvpn:478
-#, c-format
-msgid "authby"
-msgstr "authby"
-
-#: standalone/drakvpn:479
-#, c-format
-msgid "auto"
-msgstr "auto"
-
-#: standalone/drakvpn:485
-#, c-format
-msgid "right"
-msgstr "højre"
-
-#: standalone/drakvpn:486
-#, c-format
-msgid "rightcert"
-msgstr "rightcert"
-
-#: standalone/drakvpn:487
-#, c-format
-msgid "rightrsasigkey"
-msgstr "rightrsasigkey"
-
-#: standalone/drakvpn:488
-#, c-format
-msgid "rightsubnet"
-msgstr "rightsubnet"
-
-#: standalone/drakvpn:489
-#, c-format
-msgid "rightnexthop"
-msgstr "rightnexthop"
-
-#: standalone/drakvpn:497
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change the name of the section.\n"
-msgstr ""
-"Et afsnit med dette navn eksisterer allerede.\n"
-"Afsnitsnavnet skal være unikt.\n"
-"\n"
-"Du må gå tilbage og tilføje et nyt afsnit\n"
-"eller ændre navnet på afsnittet.\n"
-
-#: standalone/drakvpn:529
-#, c-format
-msgid ""
-"Add a Security Policy.\n"
-"\n"
-"You can now add a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Tilføj en sikkerhedsretningslinje.\n"
-"\n"
-"Du kan nåu tilføje en sikkerhedsretningslinje.\n"
-"\n"
-"Vælg fortsæt når du er klar til at skrive dataene.\n"
-
-#: standalone/drakvpn:562 standalone/drakvpn:812
-#, c-format
-msgid "Edit section"
-msgstr "Redigér afsnit"
-
-#: standalone/drakvpn:563
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to edit \n"
-"and then click on next.\n"
-msgstr ""
-"Din %s-fil har flere afsnit eller forbindelser.\n"
-"\n"
-"Du kan vælge her nedenunder den du ønsker at \n"
-"ændre, og så klikke på næste.\n"
-
-#: standalone/drakvpn:566 standalone/drakvpn:646 standalone/drakvpn:817
-#: standalone/drakvpn:863
-#, c-format
-msgid "Section names"
-msgstr "Afsnitsnavne"
-
-#: standalone/drakvpn:576
-#, c-format
-msgid "Can not edit!"
-msgstr "Kan ikke redigere!"
-
-#: standalone/drakvpn:577
-#, c-format
-msgid ""
-"You cannot edit this section.\n"
-"\n"
-"This section is mandatory for Freeswan 2.X.\n"
-"One has to specify version 2.0 on the top\n"
-"of the %s file, and eventually, disable or\n"
-"enable the opportunistic encryption.\n"
-msgstr ""
-"Du kan ikke ændre på dette afsnit.\n"
-"\n"
-"Dette afsnit er obligatorisk for Freeswan 2.X.\n"
-"Man må specificere version 2.0 på toppen\n"
-"af %s-filen, og eventuelt deaktivere eller\n"
-"aktivere opportunistisk kryptering.\n"
-
-#: standalone/drakvpn:586
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the config setup section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Din %s-fil har flere afsnit.\n"
-"\n"
-"Du kan nu redigere config-afsnittets indgange.\n"
-"Vælg fortsæt når du klar til at skrive dataene.\n"
-
-#: standalone/drakvpn:597
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the default section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Din %s-fil har flere afsnit.\n"
-"\n"
-"Du kan nu redigere default-afsnittets indgange.\n"
-"Vælg fortsæt når du klar til at skrive dataene.\n"
-
-#: standalone/drakvpn:610
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the normal section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Din %s-fil har flere afsnit eller forbindelser.\n"
-"\n"
-"Du kan nu ændre normal-afsnittets indgang.\n"
-"\n"
-"Vælg fortsæt når du er klar til at skrive dataene.\n"
-
-#: standalone/drakvpn:631
-#, c-format
-msgid ""
-"Edit a Security Policy.\n"
-"\n"
-"You can now edit a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Redigér en sikkerhedsretningslinje.\n"
-"\n"
-"Du kan nu tilføje en sikkerhedsretningslinje.\n"
-"\n"
-"Vælg fortsæt når du er klar til at skrive dataene.\n"
-
-#: standalone/drakvpn:642 standalone/drakvpn:859
-#, c-format
-msgid "Remove section"
-msgstr "Fjern afsnit"
-
-#: standalone/drakvpn:643 standalone/drakvpn:860
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to remove\n"
-"and then click on next.\n"
-msgstr ""
-"Din %s-fil har flere afsnit eller opkoblinger.\n"
-"\n"
-"Du kan her vælge nedenunder den du ønsker at \n"
-"fjerne, og så klikke på næste.\n"
-
-#: standalone/drakvpn:672
-#, c-format
-msgid ""
-"The racoon.conf file configuration.\n"
-"\n"
-"The contents of this file is divided into sections.\n"
-"You can now:\n"
-" - display \t\t (display the file contents)\n"
-" - add\t\t\t (add one section)\n"
-" - edit \t\t\t (modify parameters of an existing section)\n"
-" - remove \t\t (remove an existing section)\n"
-" - commit \t\t (writes the changes to the real file)"
-msgstr ""
-"racoon.conf-filens konfiguration.\n"
-"\n"
-"Indholdet af denne fil er delt op i flere afsnit.\n"
-"Du kan nu:\n"
-" - display\t\t (vis filens indhold)\n"
-" - add\t\t\t (tilføj et afsnit)\n"
-" - edit \t\t\t (redigér parametre til en eksisterende opkobling)\n"
-" - remove \t\t (fjern et eksisterende afsnit)\n"
-" - commit \t\t (skriver ændringene til den virkelige fil)"
-
-#: standalone/drakvpn:700
-#, c-format
-msgid ""
-"The %s file does not exist\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose configure.\n"
-msgstr ""
-"%s-filen eksisterer ikke\n"
-"\n"
-"Dette må være en ny konfiguration.\n"
-"\n"
-"Du må gå tilbage og vælge konfigurér.\n"
-
-#: standalone/drakvpn:714
-#, c-format
-msgid "racoonf.conf entries"
-msgstr "racoon.conf-indgange"
-
-#: standalone/drakvpn:715
-#, c-format
-msgid ""
-"The 'add' sections step.\n"
-"\n"
-"Here below is the racoon.conf file skeleton:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-"'add'-trinnet.\n"
-"\n"
-"Nedenfor er racoon.conf-filopbygningen :\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo'\n"
-"\n"
-"Vælg afsnittet du ønsker at tilføje.\n"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "path"
-msgstr "sti"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "remote"
-msgstr "fjern"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "sainfo"
-msgstr "sainfo"
-
-#: standalone/drakvpn:729
-#, c-format
-msgid ""
-"The 'add path' section step.\n"
-"\n"
-"The path sections have to be on top of your racoon.conf file.\n"
-"\n"
-"Put your mouse over the certificate entry to obtain online help."
-msgstr ""
-"'add path'-afsnit-trinet.\n"
-"\n"
-"path-afsnittene skal være i toppen af din racoon.conf-fil.\n"
-"\n"
-"Bevæg din mus over certifikatindgangen for at få onlinehjælp."
-
-#: standalone/drakvpn:732
-#, c-format
-msgid "path type"
-msgstr "Sti type"
-
-#: standalone/drakvpn:736
-#, c-format
-msgid ""
-"path include path: specifies a path to include\n"
-"a file. See File Inclusion.\n"
-"\tExample: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: specifies a file containing\n"
-"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
-"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) will search this directory\n"
-"if a certificate or certificate request is received.\n"
-"\tExample: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"other configuration files can be included.\n"
-"\tExample: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File: Pre-shared key file defines a pair\n"
-"of the identifier and the shared secret key which are used at\n"
-"Pre-shared key authentication method in phase 1."
-msgstr ""
-"path include sti: specificerer en sti for at inkludere\n"
-"en fil, Se filinkludering.\n"
-"\tEksempel: path include '/etc/racoon'\n"
-"\n"
-"path pre_share_key fil: specificer en fil som indeholder\n"
-"forhåndsdelte nøgler for forskellige ID'er. Se forhåndsdelt nøglelfil.\n"
-"\n"
-"path certificate sti: racoon(8) vil gennemsøge dette katalog\n"
-"hvis et certifikat eller en certifikatforespørgsel modtages.\n"
-"\tEksempel: path certificate '/etc/cert' ;\n"
-"\n"
-"Filinkludering: inklusions-fil \n"
-"andre konfigurationsfiler kan blive inkluderet.\n"
-"\tEksempel: include \"remote.conf\" ;\n"
-"\n"
-"Forhåndsdelt nøglefil: Forhåndsdelt nøglefil definerer et par\n"
-"med identifikatoren og den delte, hemmelige nøgle som bruges\n"
-"i forhåndsdelt nøgleautentificeringsmetode i fase 1."
-
-#: standalone/drakvpn:756 standalone/drakvpn:849
-#, c-format
-msgid "real file"
-msgstr "rigtig fil"
-
-#: standalone/drakvpn:779
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your racoon.conf file.\n"
-"\n"
-"You can now choose the remote settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Vær sikker på at du allerede har path-afsnittene\n"
-"i toppen af din racoon.conf-fil.\n"
-"\n"
-"Du kan nu vælge fjernindstillinger\n"
-"Vælg fortsæt eller forrige når du er færdig.\n"
-
-#: standalone/drakvpn:796
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your %s file.\n"
-"\n"
-"You can now choose the sainfo settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Vær sikker på at du allerede har path-afsnittene\n"
-"i toppen af din %s-fil.\n"
-"\n"
-"Du kan nu vælge sainfo-indstillingerne.\n"
-"Vælg fortsæt eller forrige når du er færdig.\n"
-
-#: standalone/drakvpn:813
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here in the list below the one you want\n"
-"to edit and then click on next.\n"
-msgstr ""
-"Din %s-fil har flere afsnit eller opkoblinger.\n"
-"\n"
-"Du kan her vælge i listen nedenfor den du ønsker\n"
-"at ændre, og så klikke på næste.\n"
-
-#: standalone/drakvpn:824
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"\n"
-"You can now edit the remote section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Din %s-fil har flere afsnit.\n"
-"\n"
-"\n"
-"Du kan nu redigere remote-afsnitets indgange.\n"
-"\n"
-"Vælg fortsæt når du er klar til at skrive dataene.\n"
-
-#: standalone/drakvpn:833
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the sainfo section entries.\n"
-"\n"
-"Choose continue when you are done to write the data."
-msgstr ""
-"Din %s-fil har flere afsnit.\n"
-"\n"
-"Du kan nu redigere config-afsnittets indgange.\n"
-"\n"
-"Vælg fortsæt når du klar til at skrive dataene."
-
-#: standalone/drakvpn:841
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow these path\n"
-"sections.\n"
-"\n"
-"You can now edit the path entries.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Dette afsnit skal være i toppen af din\n"
-"%s-fil.\n"
-"\n"
-"Vær sikker på at alle afsnit har følgende\n"
-"path-afsnit.\n"
-"\n"
-"Du kan nu redigere path-indgange.\n"
-"\n"
-"Vælg fortsæt eller forrige når du er færdig.\n"
-
-#: standalone/drakvpn:848
-#, c-format
-msgid "path_type"
-msgstr "path_type"
-
-#: standalone/drakvpn:889
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"\n"
-"You may now share resources through the Internet,\n"
-"in a secure way, using a VPN connection.\n"
-"\n"
-"You should make sure that that the tunnels shorewall\n"
-"section is configured."
-msgstr ""
-"Alt er blevet konfigureret.\n"
-"\n"
-"Du kan nu dele ressurser over internettet,\n"
-"på en sikker måde ved hjælp af en VPN-opkobling.\n"
-"\n"
-"Du bør forsikre dig om at tunnels shorewall-afsnittet\n"
-"er konfigureret."
-
-#: standalone/drakvpn:909
-#, c-format
-msgid "Sainfo source address"
-msgstr "Sainfo kildeadresse"
-
-#: standalone/drakvpn:910
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 is the source address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 is the source address"
-msgstr ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"definerer parametrene for IKE phase 2\n"
-"(IPsec-SA etablering\n"
-"\n"
-"source_id og destination_id er konstrueret som:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Eksempler : \n"
-"\n"
-"sainfo anonymous (accepterer opkoblinger fra hvor som helst)\n"
-"\tlad denne indgang være tom hvis du ønsker anonym adgang\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 er kildeadressen\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 er kildeadressen"
-
-#: standalone/drakvpn:927
-#, c-format
-msgid "Sainfo source protocol"
-msgstr "Sainfo kildeprotokol"
-
-#: standalone/drakvpn:928
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe first 'any' allows any protocol for the source"
-msgstr ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"definerer parametrene til IKE phase 2\n"
-"(IPsec-SA etablering\n"
-"\n"
-"source_id og destination_id er konstrueret som:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Eksempler: \n"
-"\n"
-"sainfo anonymous (accepterer opkoblinger fra hvor som helst)\n"
-"\tlad denne indgang være tom hvis du ønsker anonym adgang\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tden første 'any' tillader hvilken som helst protokol for kilden"
-
-#: standalone/drakvpn:942
-#, c-format
-msgid "Sainfo destination address"
-msgstr "Sainfo måladresse"
-
-#: standalone/drakvpn:943
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 is the destination address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 is the destination address"
-msgstr ""
-"sainfosainfo (source_id destination_id | anonymous) { statements }\n"
-"definerer parametrene til IKE phase 2\n"
-"(IPsec-SA etablering\n"
-"\n"
-"source_id og destination_id er konstrueret som:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Eksempler: \n"
-"\n"
-"sainfo anonymous (accepterer opkoblinger fra hvor som helst)\n"
-"\tlad denne indgang være tom hvis du ønsker anonym adgang\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 er måladressen\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 er måladressen"
-
-#: standalone/drakvpn:960
-#, c-format
-msgid "Sainfo destination protocol"
-msgstr "Sainfo målprotokol"
-
-#: standalone/drakvpn:961
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe last 'any' allows any protocol for the destination"
-msgstr ""
-"sainfosainfo (source_id destination_id | anonymous) { statements }\n"
-"definerer parametrene til IKE phase 2\n"
-"(IPsec-SA etablering\n"
-"\n"
-"source_id og destination_id er konstrueret som:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Eksempler: \n"
-"\n"
-"sainfo anonymous (accepterer opkoblinger fra hvor som helst)\n"
-"\tlad denne indgang være tom hvis du ønsker anonym adgang\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tden sidste 'any' tillader hvilken som helst protkol for målet"
-
-#: standalone/drakvpn:975
-#, c-format
-msgid "PFS group"
-msgstr "PFS-gruppe"
-
-#: standalone/drakvpn:977
-#, c-format
-msgid ""
-"define the group of Diffie-Hellman exponentiations.\n"
-"If you do not require PFS then you can omit this directive.\n"
-"Any proposal will be accepted if you do not specify one.\n"
-"group is one of the following: modp768, modp1024, modp1536.\n"
-"Or you can define 1, 2, or 5 as the DH group number."
-msgstr ""
-"definér gruppen af Diffie-Hellman eksponentieringer.\n"
-"Hvis du ikke behøver PFS kan du undlate dette direktiv.\n"
-"Ethvert forslag vil blive accepteret hvis du ikke specificerer ét.\n"
-"'group' er en af de følgende: modp768, modp1024, modp1536.\n"
-"Ellers kan du definere 1, 2 eller 5 som DH-gruppenummeret."
-
-#: standalone/drakvpn:982
-#, c-format
-msgid "Lifetime number"
-msgstr "Levetidsnummer"
-
-#: standalone/drakvpn:983
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-msgstr ""
-"Definer en levetid til en bestemt tid som vil blive\n"
-"foreslået i fase 1-forhandlinger. Enhvert forslag\n"
-"vil blive accepteret, og attributterne vil ikke blive foreslået\n"
-"til maskinen, hvis du ikke specificerer dem. De kan blive\n"
-"individuelt specificeret i hvert forslag.\n"
-"\n"
-"Eksempler: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"Så her er levetidsnumrene 1, 1, 30, 30, 60 and 12.\n"
-
-#: standalone/drakvpn:999
-#, c-format
-msgid "Lifetime unit"
-msgstr "Levetidsenhed"
-
-#: standalone/drakvpn:1001
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
-"'hour'.\n"
-msgstr ""
-"Definér en levetid til en bestemt tid som vil blive\n"
-"foreslået i fase 1-forhandlinger. Enhvert forslag\n"
-"vil blive accepteret, og attributterne vil ikke blive foreslået\n"
-"til maskinen, hvis du ikke specificerer dem. De kan blive\n"
-"individuelt specificeret i hvert forslag.\n"
-"\n"
-"Eksempler: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"Så her er levetidsenhederne 'min, 'min', 'sek', 'sek', 'sek' og 'time'.\n"
-
-#: standalone/drakvpn:1019
-#, c-format
-msgid "Authentication algorithm"
-msgstr "autentifikationsalgoritme"
-
-#: standalone/drakvpn:1021
-#, c-format
-msgid "Compression algorithm"
-msgstr "Komprimeringsalgoritme"
-
-#: standalone/drakvpn:1022
-#, c-format
-msgid "deflate"
-msgstr "udfold"
-
-#: standalone/drakvpn:1029
-#, c-format
-msgid "Remote"
-msgstr "Fjern"
-
-#: standalone/drakvpn:1030
-#, c-format
-msgid ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specifies the parameters for IKE phase 1 for each remote node.\n"
-"The default port is 500. If anonymous is specified, the state-\n"
-"ments apply to all peers which do not match any other remote\n"
-"directive.\n"
-"\n"
-"Examples: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-msgstr ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specificerer parametrene for IKE fase 1 for hver fjern-node.\n"
-"Standardporten er 500. Hvis anonymous er specificeret, så vil\n"
-"udtrykkene gælde alle maskiner som ikke passer med nogen andre "
-"fjerndirektiver.\n"
-"\n"
-"Eksempler: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-
-#: standalone/drakvpn:1038
-#, c-format
-msgid "Exchange mode"
-msgstr "Udvekslings-tilstand"
-
-#: standalone/drakvpn:1040
-#, c-format
-msgid ""
-"defines the exchange mode for phase 1 when racoon is the\n"
-"initiator. Also it means the acceptable exchange mode\n"
-"when racoon is responder. More than one mode can be\n"
-"specified by separating them with a comma. All of the\n"
-"modes are acceptable. The first exchange mode is what\n"
-"racoon uses when it is the initiator.\n"
-msgstr ""
-"definerer udvekslingstilstand for fase 1 når racoon er\n"
-"den der starter. Det er også den acceptable udvekslingstilstand\n"
-"når det er racoon. der svarer. Mere end én tilstand kan specificeres\n"
-"ved at skille dem med komma. Alle tilstandene er\n"
-"acceptable. Den første udvekslingstilstand er hvad racoon\n"
-"bruger når det er den, der starter.\n"
-
-#: standalone/drakvpn:1046
-#, c-format
-msgid "Generate policy"
-msgstr "Generer retningslinje"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "off"
-msgstr "fra"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "on"
-msgstr "på"
-
-#: standalone/drakvpn:1048
-#, c-format
-msgid ""
-"This directive is for the responder. Therefore you\n"
-"should set passive on in order that racoon(8) only\n"
-"becomes a responder. If the responder does not have any\n"
-"policy in SPD during phase 2 negotiation, and the direc-\n"
-"tive is set on, then racoon(8) will choice the first pro-\n"
-"posal in the SA payload from the initiator, and generate\n"
-"policy entries from the proposal. It is useful to nego-\n"
-"tiate with the client which is allocated IP address\n"
-"dynamically. Note that inappropriate policy might be\n"
-"installed into the responder's SPD by the initiator. So\n"
-"that other communication might fail if such policies\n"
-"installed due to some policy mismatches between the ini-\n"
-"tiator and the responder. This directive is ignored in\n"
-"the initiator case. The default value is off."
-msgstr ""
-"Dette direktiv er for svareren. Derfor bør du\n"
-"sætte passive for at racoon(8) bare skal være en svarer.\n"
-"Hvis svareren ikke har en retningslinje i SPD under\n"
-"fase 2-forhandling, og direktivet er aktiveret, så vil\n"
-"racoon(8) vælge det første forslag i SA-payloaden\n"
-"fra opstarteren og generere retningslinjer fra forslaget.\n"
-"Det er nyttigt at forhandle med klienten som får\n"
-"tildelt IP-adresse dynamisk. Bemærk at upassende\n"
-"retningslinjer kan være installeret på svarerens SPD\n"
-"af opstarteren. Så derfor kan kommunikationen fejle\n"
-"hvis sådanne retningslinjer er installeret pga. forskelle i retningslinjer\n"
-"hos opstarteren og svareren. Dette direktiv ignoreres\n"
-"i opstarterens tilfælde. Standardværdien er deaktiveret."
-
-#: standalone/drakvpn:1062
-#, c-format
-msgid "Passive"
-msgstr "Passiv"
-
-#: standalone/drakvpn:1064
-#, c-format
-msgid ""
-"If you do not want to initiate the negotiation, set this\n"
-"to on. The default value is off. It is useful for a\n"
-"server."
-msgstr ""
-"Hvis du ikke ønsker at initiere forhandlingen, sæt denne til\n"
-"on. Standardværdi er off. Dette er nyttigt for en\n"
-"server."
-
-#: standalone/drakvpn:1067
-#, c-format
-msgid "Certificate type"
-msgstr "Certificeringstype"
-
-#: standalone/drakvpn:1069
-#, c-format
-msgid "My certfile"
-msgstr "l"
-
-#: standalone/drakvpn:1070
-#, c-format
-msgid "Name of the certificate"
-msgstr "Navn på certifikat"
-
-#: standalone/drakvpn:1071
-#, c-format
-msgid "My private key"
-msgstr "Min private nøgle"
-
-#: standalone/drakvpn:1072
-#, c-format
-msgid "Name of the private key"
-msgstr "Navn på privat nøgle"
-
-#: standalone/drakvpn:1073
-#, c-format
-msgid "Peers certfile"
-msgstr "Maskinens certifikatfil"
-
-#: standalone/drakvpn:1074
-#, c-format
-msgid "Name of the peers certificate"
-msgstr "Navnet på maskinens certifikat"
-
-#: standalone/drakvpn:1075
-#, c-format
-msgid "Verify cert"
-msgstr "Kontrollér certifikat"
-
-#: standalone/drakvpn:1077
-#, c-format
-msgid ""
-"If you do not want to verify the peer's certificate for\n"
-"some reason, set this to off. The default is on."
-msgstr ""
-"Hvis du af en eller anden grund ikke ønsker at kontrollere\n"
-"maskinens certifikat. så sæt denne til off. Standardværdi er on."
-
-#: standalone/drakvpn:1079
-#, c-format
-msgid "My identifier"
-msgstr "Min identifikator"
-
-#: standalone/drakvpn:1080
-#, c-format
-msgid ""
-"specifies the identifier sent to the remote host and the\n"
-"type to use in the phase 1 negotiation. address, FQDN,\n"
-"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
-"they are used like:\n"
-"\tmy_identifier address [address];\n"
-"\t\tthe type is the IP address. This is the default\n"
-"\t\ttype if you do not specify an identifier to use.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tthe type is a USER_FQDN (user fully-qualified\n"
-"\t\tdomain name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tthe type is a FQDN (fully-qualified domain name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tthe type is a KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tthe type is an ASN.1 distinguished name. If\n"
-"\t\tstring is omitted, racoon(8) will get DN from\n"
-"\t\tSubject field in the certificate.\n"
-"\n"
-"Examples: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-msgstr ""
-"specificerer idenfikatoren sendt til fjern-vært og\n"
-"typen som skal bruges i fase 1-forhandling. address, FQDN,\n"
-"user_fqdn, keyid og asn1dn kan bruges som en idtype.\n"
-"de er brugt som::\n"
-"\tmy_identifier address [adresse];\n"
-"\t\ttypen er IP-adressen. Dette er standard\n"
-"\t\ttype hvis du ikke specificerer en identifikator som skal bruges.\n"
-"\tmy_identifier user_fqdn streng;\n"
-"\t\ttypen er en USER_FQDN (bruger med fuldt kvalificeret\n"
-"\t\tdomænenavn).\n"
-"\tmy_identifier FQDN streng;\n"
-"\t\ttypen er et FQDN (fuldt kvalificeret domænenavn).\n"
-"\tmy_identifier keyid fil;\n"
-"\t\ttypen er en KEY_ID.\n"
-"\tmy_identifier asn1dn [streng];\n"
-"\t\ttypen er et ASN.1 distingveret navn. Hvis\n"
-"\t\tstrengen er udeladt, så vil racoon(8) få DN fra\n"
-"\t\tEmnefelt i certifikatet.\n"
-"\n"
-"Eksempler : \n"
-"\n"
-"my_identifier user_fqdn \"min-epost@firma.dk\""
-
-#: standalone/drakvpn:1100
-#, c-format
-msgid "Peers identifier"
-msgstr "Maskinens identifikator"
-
-#: standalone/drakvpn:1101
-#, c-format
-msgid "Proposal"
-msgstr "Forslag"
-
-#: standalone/drakvpn:1103
-#, c-format
-msgid ""
-"specify the encryption algorithm used for the\n"
-"phase 1 negotiation. This directive must be defined. \n"
-"algorithm is one of the following: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For other transforms, this statement should not be used."
-msgstr ""
-"specificér krypteringsalgoritmen som skal bruges for\n"
-"fase1-forhandlingen. Dette direktiv skal være defineret. \n"
-"algoritme er en af følgende: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For andre transformeringer bør dette ikke bruges."
-
-#: standalone/drakvpn:1110
-#, c-format
-msgid "Hash algorithm"
-msgstr "Hash-algoritme"
-
-#: standalone/drakvpn:1112
-#, c-format
-msgid "DH group"
-msgstr "DH-gruppe"
-
-#: standalone/drakvpn:1119
-#, c-format
-msgid "Command"
-msgstr "Kommando"
-
-#: standalone/drakvpn:1120
-#, c-format
-msgid "Source IP range"
-msgstr "Kilde IP-område"
-
-#: standalone/drakvpn:1121
-#, c-format
-msgid "Destination IP range"
-msgstr "Destinations IP-område"
-
-#: standalone/drakvpn:1122
-#, c-format
-msgid "Upper-layer protocol"
-msgstr "Øvre lag-protokol"
-
-#: standalone/drakvpn:1122 standalone/drakvpn:1129
-#, c-format
-msgid "any"
-msgstr "enhver"
-
-#: standalone/drakvpn:1124
-#, c-format
-msgid "Flag"
-msgstr "Flag"
-
-#: standalone/drakvpn:1125
-#, c-format
-msgid "Direction"
-msgstr "Retning"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "IPsec policy"
-msgstr "IPsec-retningslinje"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "ipsec"
-msgstr "ipsec"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "discard"
-msgstr "forkast"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "Mode"
-msgstr "Tilstand"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "tunnel"
-msgstr "tunnel"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "transport"
-msgstr "transport"
-
-#: standalone/drakvpn:1131
-#, c-format
-msgid "Source/destination"
-msgstr "Kilde/destination"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "require"
-msgstr "kræv"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "default"
-msgstr "standard"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "use"
-msgstr "brug"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "unique"
-msgstr "unik"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (broadcast)"
-msgstr "USA (broadcast)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable)"
-msgstr "USA (kabel)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "USA (kabel-hrc)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "Canada (cable)"
-msgstr "Canada (kabel)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Japan (broadcast)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (cable)"
-msgstr "Japan (kabel)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "China (broadcast)"
-msgstr "Kina (broadcast)"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "West Europe"
-msgstr "Vesteuropa"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "East Europe"
-msgstr "Østeuropa"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "France [SECAM]"
-msgstr "Frankrig [SECAM]"
-
-#: standalone/drakxtv:48
-#, c-format
-msgid "Newzealand"
-msgstr "New Zealand"
-
-#: standalone/drakxtv:51
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Australsk Optus kabel-tv"
-
-#: standalone/drakxtv:85
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr "Indtast din tv-standard og land"
-
-#: standalone/drakxtv:87
-#, c-format
-msgid "TV norm:"
-msgstr "Tv-standard:"
-
-#: standalone/drakxtv:88
-#, c-format
-msgid "Area:"
-msgstr "Område:"
-
-#: standalone/drakxtv:93
-#, c-format
-msgid "Scanning for TV channels in progress..."
-msgstr "Skanning for tv-kanaler i gang..."
-
-#: standalone/drakxtv:103
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "Skanner for tv-kanaler"
-
-#: standalone/drakxtv:107
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Der opstod en fejl ved skanningen efter tv-kanaler"
-
-#: standalone/drakxtv:110
-#, c-format
-msgid "Have a nice day!"
-msgstr "Hav det godt!"
-
-#: standalone/drakxtv:111
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "Nu kan du køre xawtv (under X Window!)!\n"
-
-#: standalone/drakxtv:149
-#, c-format
-msgid "No TV Card detected!"
-msgstr "Intet tv-kort genkendt!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakxtv:151
-#, c-format
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"Intet tv-kort blev genkendt på din maskine. Tjek venligst at et video/tv-"
-"kort der understøttes af Linux er korrekt isat.\n"
-"\n"
-"\n"
-"Du kan besøge vores database over udstyr på:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/finish-install:42 standalone/keyboarddrake:30
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Vælg tastaturlayout."
-
-#: standalone/harddrake2:25
-#, c-format
-msgid "Alternative drivers"
-msgstr "Alternative drivprogrammer"
-
-#: standalone/harddrake2:26
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "listen af alternative drivprogrammer for dette lydkort"
-
-#: standalone/harddrake2:29
-#, c-format
-msgid "this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr "dette er den fysiske bus som enheden er tilsuttet (fx PCI, USB, ...)"
-
-#: standalone/harddrake2:31 standalone/harddrake2:146
-#, c-format
-msgid "Bus identification"
-msgstr "Bus-identifikation"
-
-#: standalone/harddrake2:32
-#, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
-msgstr ""
-"- PCI- og USB-enheder: dette viser producenten, enheden, underproducent og "
-"underenhed PCI/USB id'er"
-
-#: standalone/harddrake2:35
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- pci-enheder: dette giver PCI slottet, enheden og funktionen for dette "
-"kort\n"
-"- eide-enheder: enheden er enten en slave- eller mester-enhed\n"
-"- scsi-enheder: scsi-bussen og scsi enheds-id'er"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "Drive capacity"
-msgstr "Kapacitet for drevet"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr "specielle kapaciteter for driveren (brændemulighed eller DVD-understøttelse)"
-
-#: standalone/harddrake2:39
-#, c-format
-msgid "this field describes the device"
-msgstr "dette felt beskriver enheden"
-
-#: standalone/harddrake2:40
-#, c-format
-msgid "Old device file"
-msgstr "Gammel enhedsfil"
-
-#: standalone/harddrake2:41
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "gammel statisk enhedsnavn brugt i dev-pakke"
-
-#: standalone/harddrake2:42
-#, c-format
-msgid "New devfs device"
-msgstr "Ny devfs-enhed"
-
-#: standalone/harddrake2:43
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "Nyt dynamisk enhedsnavn genereret af den kørende kernes devfs"
-
-#. -PO: here "module" is the "jargon term" for a kernel driver
-#: standalone/harddrake2:46
-#, c-format
-msgid "Module"
-msgstr "Modul"
-
-#: standalone/harddrake2:46
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "modulet i GNU/Linux-kernen som håndterer denne enhed"
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "Extended partitions"
-msgstr "Udvidede partitioner"
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "the number of extended partitions"
-msgstr "antal udvidede partitioner"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Geometry"
-msgstr "Geometri"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Cylinder/head/sectors geometry of the disk"
-msgstr "Cylindre/hoveder/sektorer-geometri for disken"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "Disk controller"
-msgstr "Disk-kontrolkort"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "the disk controller on the host side"
-msgstr "diskkontrolleren på værtssiden"
-
-#: standalone/harddrake2:50
-#, c-format
-msgid "class of hardware device"
-msgstr "Klasse af maskinenhed"
-
-#: standalone/harddrake2:51 standalone/harddrake2:83
-#: standalone/printerdrake:224
-#, c-format
-msgid "Model"
-msgstr "Model"
-
-#: standalone/harddrake2:51
-#, c-format
-msgid "hard disk model"
-msgstr "Disk-model"
-
-#: standalone/harddrake2:52
-#, c-format
-msgid "network printer port"
-msgstr "port for netværksprinter"
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "Primary partitions"
-msgstr "Primære partitioner"
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "the number of the primary partitions"
-msgstr "antal primære partitioner"
-
-#: standalone/harddrake2:54
-#, c-format
-msgid "the vendor name of the device"
-msgstr "navnet på producenten af enheden"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "Bus PCI #"
-msgstr "Bus PCI-nummer"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "the PCI bus on which the device is plugged"
-msgstr "bussen som enheden er tilsuttet"
-
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device #"
-msgstr "PCI-enhede"
-
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device number"
-msgstr "PCI-enhadsnummer"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function #"
-msgstr "PCI-funktion #"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function number"
-msgstr "PCI funktionsnummer"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "Vendor ID"
-msgstr "Producent-ID"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "this is the standard numerical identifier of the vendor"
-msgstr "Dette er den normale numeriske identifikator for producenten"
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "Device ID"
-msgstr "Enheds-ID"
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "this is the numerical identifier of the device"
-msgstr "dette er den numeriske identifikator på enheden"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "Sub vendor ID"
-msgstr "leverandør under-ID"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "this is the minor numerical identifier of the vendor"
-msgstr "Dette er den mindre numeriske identifikator for producenten"
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "Sub device ID"
-msgstr "Underenheds ID"
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "this is the minor numerical identifier of the device"
-msgstr "dette er den mindre numeriske identifikator på enheden"
-
-#: standalone/harddrake2:62
-#, c-format
-msgid "Device USB ID"
-msgstr "Enhed USB ID"
-
-#: standalone/harddrake2:62
-#, c-format
-msgid ".."
-msgstr ".."
-
-#: standalone/harddrake2:66
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
-
-#: standalone/harddrake2:66
-#, c-format
-msgid ""
-"the GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
-msgstr ""
-"GNU/Linux-kernen skal køre en bergningsløkke ved opstaten for at "
-"initialisere en tidstæller. Dets resultat lagres som bogomips, hvilket er en "
-"måde at måle hastigheden på cpu'en."
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "Cache size"
-msgstr "Størrelse på cachen"
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "størrelse på (andet niveau) cpu-mellemlagret"
-
-#. -PO: here "comas" is the medical coma, not the lexical coma!!
-#: standalone/harddrake2:70
-#, c-format
-msgid "Coma bug"
-msgstr "Coma-fejl"
-
-#: standalone/harddrake2:70
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "om denne processor har Cyrix 6x86 Coma-fejlen eller ej"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "Cpuid family"
-msgstr "Cpuid-familie"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "processorens familie (fx 6 for i686-klasse)"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "Cpuid level"
-msgstr "CPUid-niveau"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "informationsniveau som kan opnås via cpuid-instruktionen"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Frekvens (MHz)"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr ""
-"CPU-frekvensen i MHz (Megahertz, hvilket som en første tilnærmelse kan groft "
-"regnes som antal instruktioner cpu'en kan udføre per sekund)"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "Flags"
-msgstr "Flag"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "CPU flag rapporteret af kernen"
-
-#: standalone/harddrake2:75
-#, c-format
-msgid "Fdiv bug"
-msgstr "Fdiv-fejl"
-
-#: standalone/harddrake2:76
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
-"Tidlige Intel Pentium chips har en bug i deres flydendetalsprocessor, "
-"hvilket gør at de ikke kan lave den krævede precision når de udfører en "
-"flydendetalsdivision (FDIV)"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "Is FPU present"
-msgstr "Er FPU tilstede"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "ja betyder at processoren har en aritmetisk koprocessor"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "Om FPU-en har en irq-vektor"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr "ja betyder at den aritmetiske koprocessor har tilknyttet en undtagelsesvektor"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "F00f bug"
-msgstr "F00f-fejl"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr "tidlige pentiummer var fejlbehæftede og frøs ved afkodning af bytekoden F00F"
-
-#: standalone/harddrake2:80
-#, c-format
-msgid "Halt bug"
-msgstr "Halt-fejl"
-
-#: standalone/harddrake2:81
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
-"Nogen af de tidlige i486DX-100-chip kan ikke altid returnere til kørende "
-"tilstand efter 'halt'-instruktionen er brugt"
-
-#: standalone/harddrake2:82
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "undergeneration af cpu'en"
-
-#: standalone/harddrake2:83
-#, c-format
-msgid "generation of the cpu (eg: 8 for Pentium III, ...)"
-msgstr "processorens generation (fx 8 for Pentium III,...)"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "Model name"
-msgstr "Modelnavn"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "officielt producentnavn på processoren"
-
-#: standalone/harddrake2:85
-#, c-format
-msgid "the name of the CPU"
-msgstr "navnet på CPU'en"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "Processor ID"
-msgstr "Processor-ID"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "the number of the processor"
-msgstr "nummeret på processoren"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "Model stepping"
-msgstr "Modelserie"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "serie af processoren (undermodel- (generations) nummer)"
-
-#: standalone/harddrake2:88
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "navnet på producenten af processoren"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid "Write protection"
-msgstr "Skrivebeskyttelse"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid ""
-"the WP flag in the CR0 register of the cpu enforce write protection at the "
-"memory page level, thus enabling the processor to prevent unchecked kernel "
-"accesses to user memory (aka this is a bug guard)"
-msgstr ""
-"WP-flaget i CR0-registret på cpu'en gennemtvinger skrivebeskyttelse på "
-"hukommelsessideniveauet, og derved tillade prosessoren at forhindre utjekket "
-"kerne-adgang til brugerhukommelse (dvs. dette er et værn mod fejl)"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "Floppy format"
-msgstr "Disketteformat"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "disketteformater som drevet accepterer"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "Channel"
-msgstr "Kanal"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "EIDE/SCSI-kanal"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "Disk identifier"
-msgstr "Disk-identifikator"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "usually the disk serial number"
-msgstr "normalt diskens serienummer"
-
-#: standalone/harddrake2:99
-#, c-format
-msgid "Logical unit number"
-msgstr "Logisk enhedsnummer"
-
-#: standalone/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-målnummeret (LUN). SCSI-enheder forbundet til en vært er unikt "
-"identificeret ved et\n"
-"kanalnummer, en mål-id og et logisk enhedsnummer"
-
-#. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...)
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size"
-msgstr "Installeret størrelse"
-
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size of the memory bank"
-msgstr "Installeret størrelse på hukommelsesbanken"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled Size"
-msgstr "Aktiveret størrelse"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled size of the memory bank"
-msgstr "Aktiveret størrelse på hukommelsesbanken"
-
-#: standalone/harddrake2:108
-#, c-format
-msgid "type of the memory device"
-msgstr "Typen på hukommelsesenheden"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed"
-msgstr "Hastighed"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed of the memory bank"
-msgstr "Hastighed på hukommelsenbanken"
-
-#: standalone/harddrake2:110
-#, c-format
-msgid "Bank connections"
-msgstr "Bank-forbindelser"
-
-#: standalone/harddrake2:111
-#, c-format
-msgid "Socket designation of the memory bank"
-msgstr "Sokkelbetegnelse på hukommelsesbanken"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid "Device file"
-msgstr "Enhedsfil"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid "the device file used to communicate with the kernel driver for the mouse"
-msgstr "enhedsfilen brugt for at kommunikere med kernedrivere for musen"
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "Emulated wheel"
-msgstr "Emuleret hjul"
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "whether the wheel is emulated or not"
-msgstr "hjul-emulering eller ej"
-
-#: standalone/harddrake2:117
-#, c-format
-msgid "the type of the mouse"
-msgstr "Typen på musen"
-
-#: standalone/harddrake2:118
-#, c-format
-msgid "the name of the mouse"
-msgstr "navnet på musen"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "Number of buttons"
-msgstr "Antal knapper"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "antal knapper som musen har"
-
-#: standalone/harddrake2:120
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "bustypen som musen er forbundet til"
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "Mouse protocol used by X11"
-msgstr "Museprotokol brugt af X11"
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "the protocol that the graphical desktop use with the mouse"
-msgstr "protokollen som det grafiske skrivebord bruger med musen"
-
-#: standalone/harddrake2:128 standalone/harddrake2:137
-#: standalone/harddrake2:144 standalone/harddrake2:152
-#: standalone/harddrake2:341
-#, c-format
-msgid "Identification"
-msgstr "Identifikation"
-
-#: standalone/harddrake2:129 standalone/harddrake2:145
-#, c-format
-msgid "Connection"
-msgstr "Forbindelse"
-
-#: standalone/harddrake2:138
-#, c-format
-msgid "Performances"
-msgstr "Ydelser"
-
-#: standalone/harddrake2:139
-#, c-format
-msgid "Bugs"
-msgstr "Fejl"
-
-#: standalone/harddrake2:140
-#, c-format
-msgid "FPU"
-msgstr "FPU"
-
-#: standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Enhed"
-
-#: standalone/harddrake2:148
-#, c-format
-msgid "Partitions"
-msgstr "Partition"
-
-#: standalone/harddrake2:153
-#, c-format
-msgid "Features"
-msgstr "Faciliteter"
-
-#. -PO: please keep all "/" characters !!!
-#: standalone/harddrake2:176 standalone/logdrake:76
-#: standalone/printerdrake:146 standalone/printerdrake:159
-#: standalone/printerdrake:171
-#, c-format
-msgid "/_Options"
-msgstr "/_Indstillinger"
-
-#: standalone/harddrake2:177 standalone/harddrake2:202 standalone/logdrake:78
-#: standalone/printerdrake:172 standalone/printerdrake:174
-#: standalone/printerdrake:177 standalone/printerdrake:179
-#, c-format
-msgid "/_Help"
-msgstr "/_Hjælp"
-
-#: standalone/harddrake2:181
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Auto-detektér printere"
-
-#: standalone/harddrake2:182
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Auto-detektér modemmer"
-
-#: standalone/harddrake2:183
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Autodetektér _jaz-drev"
-
-#: standalone/harddrake2:184
-#, c-format
-msgid "/Autodetect parallel _zip drives"
-msgstr "/Automatisk fundne parallelle _zip-drev"
-
-#: standalone/harddrake2:191 standalone/printerdrake:152
-#, c-format
-msgid "/_Quit"
-msgstr "/_Afslut"
-
-#: standalone/harddrake2:204
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Feltbeskrivelse"
-
-#: standalone/harddrake2:206
-#, c-format
-msgid "Harddrake help"
-msgstr "Harddrake hjælp"
-
-#: standalone/harddrake2:215
-#, 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 ""
-"Når du har valgt en enhed kan du se enhedsinformationen på felter som vises "
-"i den højre ramme (\"Information\")"
-
-#: standalone/harddrake2:221 standalone/printerdrake:177
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Rapportér fejl"
-
-#: standalone/harddrake2:223 standalone/printerdrake:179
-#, c-format
-msgid "/_About..."
-msgstr "/_Om..."
-
-#: standalone/harddrake2:224
-#, c-format
-msgid "About Harddrake"
-msgstr "Om Harddrake"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/harddrake2:226
-#, c-format
-msgid ""
-"This is HardDrake, a %s hardware configuration tool.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-msgstr ""
-"Dette er HardDrake, et %s-værktøj for konfigurering af maskinel.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author: </span> Thierry Vignaud &lt; "
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-
-#: standalone/harddrake2:242
-#, c-format
-msgid "Harddrake2"
-msgstr "Harddrake2"
-
-#: standalone/harddrake2:272
-#, c-format
-msgid "Detected hardware"
-msgstr "Fundet maskinel"
-
-#: standalone/harddrake2:277
-#, c-format
-msgid "Configure module"
-msgstr "Konfigurér modul"
-
-#: standalone/harddrake2:284
-#, c-format
-msgid "Run config tool"
-msgstr "Kør konfigurationsværktøj"
-
-#: standalone/harddrake2:308
-#, c-format
-msgid "Click on a device in the left tree in order to display its information here."
-msgstr "Klik på en enhed i det venstre træ for at vise dets oplysninger hér."
-
-#: standalone/harddrake2:329 standalone/printerdrake:306
-#: standalone/printerdrake:320
-#, c-format
-msgid "Unknown"
-msgstr "Ukendt"
-
-#: standalone/harddrake2:349
-#, c-format
-msgid "Misc"
-msgstr "Diverse"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "secondary"
-msgstr "sekundær"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "primary"
-msgstr "primær"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "burner"
-msgstr "brænder"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "DVD"
-msgstr "DVD"
-
-#: standalone/harddrake2:511
-#, c-format
-msgid ""
-"The following devices needs proprietary drivers or firmwares in order to "
-"operate smoothly. The appropriate packages can be retrieved from the "
-"Mandriva Club. Do you want to subscribe to the Mandriva Club?"
-msgstr ""
-"De følgende enheder behøver proprietære drivere eller firmware for at "
-"fungere godt. De relevante pakker kan hentes fra Mandriva Club. Ønsker du "
-"at tilmelde dig til Mandriva Club?"
-
-#: standalone/keyboarddrake:45
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Vil du have at Bak-tasten giver Delete i konsollen?"
-
-#: standalone/localedrake:38
-#, c-format
-msgid "LocaleDrake"
-msgstr "LocaleDrake"
-
-#: standalone/localedrake:44
-#, c-format
-msgid "You should install the following packages: %s"
-msgstr "Du bør ikke installere de følgende-pakker: %s"
-
-#. -PO: the following is used to combine packages names. eg: "initscripts, harddrake, yudit"
-#: standalone/localedrake:47 standalone/scannerdrake:135
-#, c-format
-msgid ", "
-msgstr ", "
-
-#: standalone/localedrake:55
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "Ændringen er fortaget, men for at være effektiv skal du logge ud"
-
-#: standalone/logdrake:49
-#, c-format
-msgid "Mandriva Linux Tools Logs"
-msgstr "Mandriva Linux' værktøj-logger"
-
-#: standalone/logdrake:50
-#, c-format
-msgid "Logdrake"
-msgstr "Logdrake"
-
-#: standalone/logdrake:63
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Vis kun for den valgte dag"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "/File/_New"
-msgstr "/Fil/_Ny"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "/File/_Open"
-msgstr "/Fil/_Åbn"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "/File/_Save"
-msgstr "/Fil/_Gem"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
-
-#: standalone/logdrake:73
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Fil/Gem _som"
-
-#: standalone/logdrake:74
-#, c-format
-msgid "/File/-"
-msgstr "/Fil/-"
-
-#: standalone/logdrake:77
-#, c-format
-msgid "/Options/Test"
-msgstr "/Indstillinger/Test"
-
-#: standalone/logdrake:79
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Hjælp/_Om..."
-
-#: standalone/logdrake:108
-#, c-format
-msgid ""
-"_:this is the auth.log log file\n"
-"Authentication"
-msgstr "Authentication"
-
-#: standalone/logdrake:109
-#, c-format
-msgid ""
-"_:this is the user.log log file\n"
-"User"
-msgstr "User"
-
-#: standalone/logdrake:110
-#, c-format
-msgid ""
-"_:this is the /var/log/messages log file\n"
-"Messages"
-msgstr "Messages"
-
-#: standalone/logdrake:111
-#, c-format
-msgid ""
-"_:this is the /var/log/syslog log file\n"
-"Syslog"
-msgstr "Syslog"
-
-#: standalone/logdrake:115
-#, c-format
-msgid "search"
-msgstr "søg"
-
-#: standalone/logdrake:127
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Et værktøj til at overvåge dine logfiler"
-
-#: standalone/logdrake:128 standalone/net_applet:347 standalone/net_monitor:93
-#, c-format
-msgid "Settings"
-msgstr "Indstillinger"
-
-#: standalone/logdrake:133
-#, c-format
-msgid "Matching"
-msgstr "Samstemmende"
-
-#: standalone/logdrake:134
-#, c-format
-msgid "but not matching"
-msgstr "Men ikke samstemmende"
-
-#: standalone/logdrake:138
-#, c-format
-msgid "Choose file"
-msgstr "Vælg fil"
-
-#: standalone/logdrake:150
-#, c-format
-msgid "Calendar"
-msgstr "Kalender"
-
-#: standalone/logdrake:160
-#, c-format
-msgid "Content of the file"
-msgstr "Indhold af filen"
-
-#: standalone/logdrake:164 standalone/logdrake:401
-#, c-format
-msgid "Mail alert"
-msgstr "Post-påmindelse"
-
-#: standalone/logdrake:171
-#, c-format
-msgid "The alert wizard has failed unexpectedly:"
-msgstr "Advarselshjælperen fejlede uventet"
-
-#: standalone/logdrake:224
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "vent venligst, fortolker filen: %s"
-
-#: standalone/logdrake:379
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Apache World Wide Web Server"
-
-#: standalone/logdrake:380
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Løser for domænenavn"
-
-#: standalone/logdrake:381
-#, c-format
-msgid "Ftp Server"
-msgstr "FTP-server"
-
-#: standalone/logdrake:382
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Postfix postserver"
-
-#: standalone/logdrake:383
-#, c-format
-msgid "Samba Server"
-msgstr "Samba-server"
-
-#: standalone/logdrake:385
-#, c-format
-msgid "Webmin Service"
-msgstr "Webmin-tjeneste"
-
-#: standalone/logdrake:386
-#, c-format
-msgid "Xinetd Service"
-msgstr "Xinetd-tjeneste"
-
-#: standalone/logdrake:395
-#, c-format
-msgid "Configure the mail alert system"
-msgstr "Konfigurér epostvarslingssystemet"
-
-#: standalone/logdrake:396
-#, c-format
-msgid "Stop the mail alert system"
-msgstr "Stop epostvarslingssystemet"
-
-#: standalone/logdrake:404
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Konfiguration af postpåmindelse"
-
-#: standalone/logdrake:405
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Velkommen til programmet for postkonfigurering.\n"
-"\n"
-"Her vil du kunne opsætte påmindelsessystemet\n"
-
-#: standalone/logdrake:415
-#, c-format
-msgid "Services settings"
-msgstr "Opsætning af tjenester"
-
-#: standalone/logdrake:416
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr "Du vil modtage en advarsel hvis en af de valgte tjenester ikke længere kører"
-
-#: standalone/logdrake:423
-#, c-format
-msgid "Load setting"
-msgstr "Indlæs opsætning"
-
-#: standalone/logdrake:424
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Du vil modtage en advarsel hvis belastningen er højere end denne værdi"
-
-#: standalone/logdrake:425
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Belastning"
-
-#: standalone/logdrake:430
-#, c-format
-msgid "Alert configuration"
-msgstr "Advarsels-konfiguration"
-
-#: standalone/logdrake:431
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Indtast din adgangskode for epost nedenfor"
-
-#: standalone/logdrake:432
-#, c-format
-msgid "and enter the name (or the IP) of the SMTP server you wish to use"
-msgstr "og indtast navnet (eller IP-adressen) på smtp-serveren, du ønsker at bruge"
-
-#: standalone/logdrake:451
-#, c-format
-msgid "The wizard successfully configured the mail alert."
-msgstr "Hjælperen konfigurerede post-påminderen uden problemer."
-
-#: standalone/logdrake:457
-#, c-format
-msgid "The wizard successfully disabled the mail alert."
-msgstr "Hjælperen deaktiverede post-påminderen uden problemer."
-
-#: standalone/logdrake:516
-#, c-format
-msgid "Save as.."
-msgstr "Gem som..."
-
-#: standalone/mousedrake:31
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Vælg muse-type."
-
-#: standalone/mousedrake:44
-#, c-format
-msgid "Emulate third button?"
-msgstr "Emulering af tredje knap?"
-
-#: standalone/mousedrake:61
-#, c-format
-msgid "Mouse test"
-msgstr "Test af musen"
-
-#: standalone/mousedrake:64
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Afprøv din mus:"
-
-#: standalone/net_applet:47
-#, c-format
-msgid "Network is up on interface %s"
-msgstr "Netværket er oppe på grænsesnittet %s"
-
-#. -PO: keep the "Configure Network" substring synced with the "Configure Network" message below
-#: standalone/net_applet:50
-#, c-format
-msgid "Network is down on interface %s. Click on \"Configure Network\""
-msgstr "Netværk er nede på grænsesnit %s. Klik på 'Konfigurér netværk'"
-
-#: standalone/net_applet:56 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Connect %s"
-msgstr "Tilslut %s"
-
-#: standalone/net_applet:57 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Disconnect %s"
-msgstr "Frakobl %s"
-
-#: standalone/net_applet:58
-#, c-format
-msgid "Monitor Network"
-msgstr "Overvåg netværk"
-
-#: standalone/net_applet:60
-#, c-format
-msgid "Manage wireless networks"
-msgstr "Håndtér trådløse netværk"
-
-#: standalone/net_applet:61
-#, c-format
-msgid "Configure Network"
-msgstr "Konfigurér netværk"
-
-#: standalone/net_applet:63
-#, c-format
-msgid "Watched interface"
-msgstr "Overvåget grænseflade"
-
-#: standalone/net_applet:93
-#, c-format
-msgid "Profiles"
-msgstr "Profiler"
-
-#: standalone/net_applet:102
-#, c-format
-msgid "Get Online Help"
-msgstr "Få hjælp på nettet"
-
-#: standalone/net_applet:335
-#, c-format
-msgid "Interactive Firewall automatic mode"
-msgstr "Automatisk tilstand for interaktiv brandmur"
-
-#: standalone/net_applet:340
-#, c-format
-msgid "Always launch on startup"
-msgstr "Kør altid ved opstart"
-
-#: standalone/net_applet:344
-#, c-format
-msgid "Wireless networks"
-msgstr "Trådløse netværk"
-
-#: standalone/net_applet:429
-#, c-format
-msgid "Interactive Firewall: intrusion detected"
-msgstr "Interaktiv brandmur: indbrud opdaget"
-
-#: standalone/net_applet:442
-#, c-format
-msgid "What do you want to do with this attacker?"
-msgstr "Hvad ønsker du at gøre med denne angriber?"
-
-#: standalone/net_applet:445
-#, c-format
-msgid "Attack details"
-msgstr "Detaljer for angreb"
-
-#: standalone/net_applet:449
-#, c-format
-msgid "Attack time: %s"
-msgstr "Angrebstidspunkt: %s"
-
-#: standalone/net_applet:450
-#, c-format
-msgid "Network interface: %s"
-msgstr "Netværksgrænseflade: %s"
-
-#: standalone/net_applet:451
-#, c-format
-msgid "Attack type: %s"
-msgstr "Angrebstype: %s"
-
-#: standalone/net_applet:452
-#, c-format
-msgid "Protocol: %s"
-msgstr "Protokol: %s"
-
-#: standalone/net_applet:453
-#, c-format
-msgid "Attacker IP address: %s"
-msgstr "IP-adresse på angriber: %s"
-
-#: standalone/net_applet:454
-#, c-format
-msgid "Attacker hostname: %s"
-msgstr "Værtsnavn på angriber: %s"
-
-#: standalone/net_applet:457
-#, c-format
-msgid "Service attacked: %s"
-msgstr "Tjeneste der blev angrebet: %s"
-
-#: standalone/net_applet:458
-#, c-format
-msgid "Port attacked: %s"
-msgstr "Port, der blev angrebet: %s"
-
-#: standalone/net_applet:460
-#, c-format
-msgid "Type of ICMP attack: %s"
-msgstr "Type på ICMP-angreb: %s"
-
-#: standalone/net_applet:465
-#, c-format
-msgid "Always blacklist (do not ask again)"
-msgstr "Sortlist altid (spørg ikke igen)"
-
-#: standalone/net_monitor:57 standalone/net_monitor:62
-#, c-format
-msgid "Network Monitoring"
-msgstr "Overvågning af netværk"
-
-#: standalone/net_monitor:98
-#, c-format
-msgid "Global statistics"
-msgstr "Overordnet statistik"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Instantaneous"
-msgstr "Øjeblikkelig"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Average"
-msgstr "Gennemsnit"
-
-#: standalone/net_monitor:102
-#, c-format
-msgid ""
-"Sending\n"
-"speed:"
-msgstr ""
-"Sende-\n"
-"hastighed:"
-
-#: standalone/net_monitor:103
-#, c-format
-msgid ""
-"Receiving\n"
-"speed:"
-msgstr ""
-"Modtagelses-\n"
-"hastighed:"
-
-#: standalone/net_monitor:107
-#, c-format
-msgid ""
-"Connection\n"
-"time: "
-msgstr ""
-"Tilslutnings-\n"
-"tid: "
-
-#: standalone/net_monitor:114
-#, c-format
-msgid "Use same scale for received and transmitted"
-msgstr "Brug samme skala for modtaget og afsendt"
-
-#: standalone/net_monitor:133
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Tester din forbindelse, vent venligst..."
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Afbryder forbindelse til Internettet "
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Kobler op til Internettet "
-
-#: standalone/net_monitor:226
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Nedkobling fra Internet mislykkedes."
-
-#: standalone/net_monitor:227
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Nedkobling fra Internet klar."
-
-#: standalone/net_monitor:229
-#, c-format
-msgid "Connection complete."
-msgstr "Opkobling fuldført."
-
-#: standalone/net_monitor:230
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandriva Linux Control Center."
-msgstr ""
-"Tilslutning mislykkedes.\n"
-"Kontrollér konfigurationen i Mandrivas kontrolcentral."
-
-#: standalone/net_monitor:335
-#, c-format
-msgid "Color configuration"
-msgstr "Farve-konfiguration"
-
-#: standalone/net_monitor:383 standalone/net_monitor:403
-#, c-format
-msgid "sent: "
-msgstr "sendt: "
-
-#: standalone/net_monitor:390 standalone/net_monitor:407
-#, c-format
-msgid "received: "
-msgstr "modtaget: "
-
-#: standalone/net_monitor:397
-#, c-format
-msgid "average"
-msgstr "gennemsnit"
-
-#: standalone/net_monitor:400
-#, c-format
-msgid "Local measure"
-msgstr "Lokal måling"
-
-#: standalone/net_monitor:461
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Advarsel, en anden internetforbindelse er blevet fundet, der måske bruger "
-"dit netværk"
-
-#: standalone/net_monitor:472
-#, c-format
-msgid "No internet connection configured"
-msgstr "Ingen konfiguration af Internetforbindelse"
-
-#: standalone/printerdrake:76
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "Læser data for nye printere..."
-
-#: standalone/printerdrake:128
-#, c-format
-msgid "%s Printer Management Tool"
-msgstr "%s værktøj til administration af printere"
-
-#: standalone/printerdrake:142 standalone/printerdrake:143
-#: standalone/printerdrake:144 standalone/printerdrake:145
-#: standalone/printerdrake:153 standalone/printerdrake:154
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Actions"
-msgstr "/_Handlinger"
-
-#: standalone/printerdrake:142 standalone/printerdrake:154
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Tilføj printer"
-
-#: standalone/printerdrake:143
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Set som _standard"
-
-#: standalone/printerdrake:144
-#, c-format
-msgid "/_Edit"
-msgstr "/_Redigér"
-
-#: standalone/printerdrake:145
-#, c-format
-msgid "/_Delete"
-msgstr "/_Slet"
-
-#: standalone/printerdrake:146
-#, c-format
-msgid "/_Expert mode"
-msgstr "/_Eksperttilstand"
-
-#: standalone/printerdrake:151
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Genopfrisk"
-
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_Konfigurér CUPS"
-
-#: standalone/printerdrake:171
-#, c-format
-msgid "/Configure _Auto Administration"
-msgstr "/Konfigurér auto-administration"
-
-#: standalone/printerdrake:194
-#, c-format
-msgid "Search:"
-msgstr "Søg:"
-
-#: standalone/printerdrake:197
-#, c-format
-msgid "Apply filter"
-msgstr "Udfør filter"
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Def."
-msgstr "Def."
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Printer Name"
-msgstr "Printer-navn"
-
-#: standalone/printerdrake:224
-#, c-format
-msgid "Connection Type"
-msgstr "Opkoblingstype"
-
-#: standalone/printerdrake:231
-#, c-format
-msgid "Server Name"
-msgstr "Servernavn"
-
-#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add Printer"
-msgstr "Tilføj printer"
-
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Tilføj en ny printer til systemet"
-
-#. -PO: "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set as default"
-msgstr "Sæt som standard"
-
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Sæt valgte printer som standard-printer"
-
-#: standalone/printerdrake:245
-#, c-format
-msgid "Edit selected printer"
-msgstr "Redigér valgte printer"
-
-#: standalone/printerdrake:248
-#, c-format
-msgid "Delete selected printer"
-msgstr "Slet valgte printer"
-
-#: standalone/printerdrake:251
-#, c-format
-msgid "Refresh the list"
-msgstr "Genopfrisk listen"
-
-#. -PO: "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS"
-msgstr "Konfigurér CUPS"
-
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Konfigurér CUPS-printsystemet"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Enabled"
-msgstr "Aktiveret"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Disabled"
-msgstr "Deaktiveret"
-
-#: standalone/printerdrake:596
-#, c-format
-msgid "Authors: "
-msgstr "Forfattere: "
-
-#. -PO: here %s is the version number
-#: standalone/printerdrake:606
-#, c-format
-msgid "Printer Management %s"
-msgstr "Administration af printere %s"
-
-#: standalone/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-pakker skal installeres for at bruge skannere.\n"
-"\n"
-"Ønsker du at installere SANE-pakkerne?"
-
-#: standalone/scannerdrake:55
-#, c-format
-msgid "Aborting Scannerdrake."
-msgstr "Afbryder Skannerdrake."
-
-#: standalone/scannerdrake:60
-#, c-format
-msgid "Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-"Kunne ikke installere de nødvendige pakker til at opsætte en skanner med "
-"Scannerdrake."
-
-#: standalone/scannerdrake:61
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Scannerdrake vil ikke blive startet nu."
-
-#: standalone/scannerdrake:67 standalone/scannerdrake:508
-#, c-format
-msgid "Searching for configured scanners..."
-msgstr "Søger efter konfigurerede skannere ..."
-
-#: standalone/scannerdrake:71 standalone/scannerdrake:512
-#, c-format
-msgid "Searching for new scanners..."
-msgstr "Søger efter nye skannere..."
-
-#: standalone/scannerdrake:79 standalone/scannerdrake:534
-#, c-format
-msgid "Re-generating list of configured scanners..."
-msgstr "Regenererer liste af konfigurerede skannere ..."
-
-#: standalone/scannerdrake:101
-#, c-format
-msgid "The %s is not supported by this version of %s."
-msgstr "%s understøttes ikke af denne version af %s."
-
-#: standalone/scannerdrake:104
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s fundet på %s, skal det konfigureres automatisk?"
-
-#: standalone/scannerdrake:116
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr "%s findes ikke skannerdatabasen, skal den konfigureres manuelt?"
-
-#: standalone/scannerdrake:131
-#, c-format
-msgid "Select a scanner model"
-msgstr "Vælg en skannermodel"
-
-#: standalone/scannerdrake:132
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: standalone/scannerdrake:133
-#, c-format
-msgid "Detected model: %s"
-msgstr "Fandt model: %s"
-
-#: standalone/scannerdrake:136
-#, c-format
-msgid "Port: %s"
-msgstr "Vært: %s"
-
-#: standalone/scannerdrake:138 standalone/scannerdrake:141
-#, c-format
-msgid " (UNSUPPORTED)"
-msgstr " (IKKE UNDERSTØTTET)"
-
-#: standalone/scannerdrake:144
-#, c-format
-msgid "The %s is not supported under Linux."
-msgstr "%s understøttes ikke under Linux."
-
-#: standalone/scannerdrake:171 standalone/scannerdrake:185
-#, c-format
-msgid "Do not install firmware file"
-msgstr "Installér ikke firmware-fil"
-
-#: standalone/scannerdrake:175 standalone/scannerdrake:227
-#, c-format
-msgid ""
-"It is possible that your %s needs its firmware to be uploaded everytime when "
-"it is turned on."
-msgstr ""
-"Det er muligt at din %s skal have sit firmware lagt op hver gang der tændes "
-"for den."
-
-#: standalone/scannerdrake:176 standalone/scannerdrake:228
-#, c-format
-msgid "If this is the case, you can make this be done automatically."
-msgstr "Hvis dette er tilfældet, kan du få dette lavet automatisk."
-
-#: standalone/scannerdrake:177 standalone/scannerdrake:231
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware file for your scanner so that it "
-"can be installed."
-msgstr ""
-"For at gøre dette skal du komme med firmware-filen til din skanner, så den "
-"kan blive installeret."
-
-#: standalone/scannerdrake:178 standalone/scannerdrake:232
-#, 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 ""
-"Du finder filen på den cd eller diskette som kom med skanneren, eller på "
-"fabrikantens hjemmeside, eller på din Windows-partition."
-
-#: standalone/scannerdrake:180 standalone/scannerdrake:239
-#, c-format
-msgid "Install firmware file from"
-msgstr "Installér firmware-fil fra"
-
-#: standalone/scannerdrake:200
-#, c-format
-msgid "Select firmware file"
-msgstr "Vælg firmware-fil"
-
-#: standalone/scannerdrake:203 standalone/scannerdrake:262
-#, c-format
-msgid "The firmware file %s does not exist or is unreadable!"
-msgstr "Firmware-filen %s eksisterer ikke eller kan ikke læses!"
-
-#: standalone/scannerdrake:226
-#, c-format
-msgid ""
-"It is possible that your scanners need their firmware to be uploaded "
-"everytime when they are turned on."
-msgstr ""
-"Det er muligt at dine skannere skal have deres firmware lagt op hver gang "
-"der tændes for dem."
-
-#: standalone/scannerdrake:230
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware files for your scanners so that it "
-"can be installed."
-msgstr ""
-"For at gøre dette skal du komme med firmware-filerne til dine skannere, så "
-"de kan blive installeret."
-
-#: standalone/scannerdrake:233
-#, 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 ""
-"Hvis du allerede har installerwt din skanners firmware så kan du opdatere "
-"den her ved at angive det nye firmware-filnavn."
-
-#: standalone/scannerdrake:235
-#, c-format
-msgid "Install firmware for the"
-msgstr "Installér firmware for"
-
-#: standalone/scannerdrake:258
-#, c-format
-msgid "Select firmware file for the %s"
-msgstr "Vælg firmware-fil for %s"
-
-#: standalone/scannerdrake:276
-#, c-format
-msgid "Could not install the firmware file for the %s!"
-msgstr "Kunne ikke installere firmware-fil for %s!"
-
-#: standalone/scannerdrake:289
-#, c-format
-msgid "The firmware file for your %s was successfully installed."
-msgstr "Firmware-filen for din %s blev installeret uden problemer."
-
-#: standalone/scannerdrake:299
-#, c-format
-msgid "The %s is unsupported"
-msgstr "Denne %s er ikke understøttet"
-
-#: standalone/scannerdrake:304
-#, c-format
-msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the %s Control Center in Hardware section."
-msgstr ""
-"Denne %s skal være konfigureret af printerdrake.\n"
-"Du kan starte printerdrake fra %s Kontrolcenter i Udstyr-afsnittet."
-
-#: standalone/scannerdrake:322
-#, c-format
-msgid "Setting up kernel modules..."
-msgstr "Opsætter kernemoduler..."
-
-#: standalone/scannerdrake:332 standalone/scannerdrake:339
-#: standalone/scannerdrake:369
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Auto-detektér tilgængelige porte"
-
-#: standalone/scannerdrake:334 standalone/scannerdrake:380
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Vælg venligst enheden hvor din %s er isat"
-
-#: standalone/scannerdrake:335
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Bemærk: Parallelle porte kan ikke auto-detekteres)"
-
-#: standalone/scannerdrake:337 standalone/scannerdrake:382
-#, c-format
-msgid "choose device"
-msgstr "vælg enhed"
-
-#: standalone/scannerdrake:371
-#, c-format
-msgid "Searching for scanners..."
-msgstr "Søger efter skannere ..."
-
-#: standalone/scannerdrake:407 standalone/scannerdrake:414
-#, c-format
-msgid "Attention!"
-msgstr "Bemærk!"
-
-#: standalone/scannerdrake:408
-#, 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 ""
-"Din %s kan ikke konfigureres fuldautomatisk.\n"
-"\n"
-"Manuelle tilpasninger er nødvendige. Redigér venligst konfigurationsfilen /"
-"etc/sane.d/%s.conf. "
-
-#: standalone/scannerdrake:409 standalone/scannerdrake:418
-#, c-format
-msgid ""
-"More info in the driver's manual page. Run the command \"man sane-%s\" to "
-"read it."
-msgstr ""
-"Mere info på driverens manualside. Kør kommandoen \"man sane-%s\" for at "
-"læse den."
-
-#: standalone/scannerdrake:411 standalone/scannerdrake:420
-#, c-format
-msgid ""
-"After that you may scan documents using \"XSane\" or \"Kooka\" from "
-"Multimedia/Graphics in the applications menu."
-msgstr ""
-"Derefter kan du skanne dokumenter med 'XSane' eller 'Kooka' fra Multimedie/"
-"grafik i programmenuen."
-
-#: standalone/scannerdrake:415
-#, c-format
-msgid ""
-"Your %s has been configured, but it is possible that additional manual "
-"adjustments are needed to get it to work. "
-msgstr ""
-"Din %s her blevet konfigureret, med det er muligt at yderligere manuelle "
-"tilpasninger er nødvendige for at få den til at virke. "
-
-#: standalone/scannerdrake:416
-#, 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 ""
-"Hvis den ikke kommer til syne i listen over konfigurerede skannere i "
-"Scannerdrakes hovedvindue, eller hvis den ikke virker korrekt, "
-
-#: standalone/scannerdrake:417
-#, c-format
-msgid "edit the configuration file /etc/sane.d/%s.conf. "
-msgstr "redigér konfigurationsfilen /etc/sane.d/%s.conf. "
-
-#: standalone/scannerdrake:423
-#, 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 ""
-"Din %s er blevet konfigureret.\n"
-"Du kan nu skanne dokumenter med 'XSane' eller 'Kooka' fra Multimedie/grafik "
-"i programmenuen."
-
-#: standalone/scannerdrake:448
-#, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr ""
-"De følgende skannere\n"
-"\n"
-"%s\n"
-"er tilgængelige på dit system.\n"
-
-#: standalone/scannerdrake:449
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr ""
-"Den følgende skanner\n"
-"\n"
-"%s\n"
-"er tilgængelig på dit system.\n"
-
-#: standalone/scannerdrake:452 standalone/scannerdrake:455
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "Der blev ikke fundet nogen skannere som er tilgængelige på dit system.\n"
-
-#: standalone/scannerdrake:469
-#, c-format
-msgid "Search for new scanners"
-msgstr "Søg efter nye skannere..."
-
-#: standalone/scannerdrake:475
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Håndpluk skanner"
-
-#: standalone/scannerdrake:482
-#, c-format
-msgid "Install/Update firmware files"
-msgstr "Installér/opdatér firmware-filer"
-
-#: standalone/scannerdrake:488
-#, c-format
-msgid "Scanner sharing"
-msgstr "Skannerdeling"
-
-#: standalone/scannerdrake:547 standalone/scannerdrake:712
-#, c-format
-msgid "All remote machines"
-msgstr "Alle eksterne maskiner"
-
-#: standalone/scannerdrake:559 standalone/scannerdrake:862
-#, c-format
-msgid "This machine"
-msgstr "Denne maskine"
-
-#: standalone/scannerdrake:599
-#, 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 ""
-"Hær kan du vælge om skannere koblede til denne maskine skal gøres "
-"tilgængelige for eksterne maskiner og i så fald på hvilke eksterne maskiner."
-
-#: standalone/scannerdrake:600
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"Du kan også her bestemme om skannere på eksterne maskiner skal gøres "
-"tilgængelige på denne maskine"
-
-#: standalone/scannerdrake:603
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr "Skannerne på denne maskine er tilgængelige for andre maskiner"
-
-#: standalone/scannerdrake:605
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Skannerdeling til værter: "
-
-#: standalone/scannerdrake:619
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Brug skannere på eksterne maskiner"
-
-#: standalone/scannerdrake:622
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Brug skannerne på følgende værtsmaskiner:"
-
-#: standalone/scannerdrake:649 standalone/scannerdrake:721
-#: standalone/scannerdrake:871
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Deling af lokale skannere"
-
-#: standalone/scannerdrake:650
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr ""
-"Dette er maskinerne på hvilke de lokalt forbundne skannere skal gøres "
-"tilgængelige:"
-
-#: standalone/scannerdrake:661 standalone/scannerdrake:811
-#, c-format
-msgid "Add host"
-msgstr "Tilføj vært"
-
-#: standalone/scannerdrake:667 standalone/scannerdrake:817
-#, c-format
-msgid "Edit selected host"
-msgstr "Redigér valgte vært"
-
-#: standalone/scannerdrake:676 standalone/scannerdrake:826
-#, c-format
-msgid "Remove selected host"
-msgstr "Fjern valgte vært"
-
-#: standalone/scannerdrake:700 standalone/scannerdrake:708
-#: standalone/scannerdrake:713 standalone/scannerdrake:759
-#: standalone/scannerdrake:850 standalone/scannerdrake:858
-#: standalone/scannerdrake:863 standalone/scannerdrake:909
-#, c-format
-msgid "Name/IP address of host:"
-msgstr "Navn eller IP-adresse på vært:"
-
-#: standalone/scannerdrake:722 standalone/scannerdrake:872
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr "Vælg værten på hvilken de lokale skannere skal gøres tilgængelige: "
-
-#: standalone/scannerdrake:733 standalone/scannerdrake:883
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Du skal indtaste et værtsnavn eller en IP-adresse.\n"
-
-#: standalone/scannerdrake:744 standalone/scannerdrake:894
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "Denne vært er allerede på listen, og kan ikke blive tilføjet igen.\n"
-
-#: standalone/scannerdrake:799
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Brug skannere"
-
-#: standalone/scannerdrake:800
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "Dette er maskinerne fra hvilke skannerne skal bruges:"
-
-#: standalone/scannerdrake:957
-#, 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 skal installeres for at dele de lokale skannere.\n"
-"\n"
-"Vil du installere saned-pakken?"
-
-#: standalone/scannerdrake:961 standalone/scannerdrake:965
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "Dinne skannere vil ikke være tilgængelige på netværket."
-
-#: standalone/service_harddrake:113
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "Nogen enheder i maskinelklassen '%s' blev fjernet:\n"
-
-#: standalone/service_harddrake:114
-#, c-format
-msgid "- %s was removed\n"
-msgstr "- %s blev fjernet\n"
-
-#: standalone/service_harddrake:117
-#, c-format
-msgid "Some devices were added: %s\n"
-msgstr "Nogen enheder blev tilføjet: %s\n"
-
-#: standalone/service_harddrake:118
-#, c-format
-msgid "- %s was added\n"
-msgstr "- %s blev tilføjet\n"
-
-#: standalone/service_harddrake:235
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "Søgning efter udstyr udføres"
-
-#: standalone/service_harddrake_confirm:7
-#, c-format
-msgid "Hardware changes in \"%s\" class (%s seconds to answer)"
-msgstr "Udstyrsændringer i \"%s\" klasse (%s sekonder til at svare)"
-
-#: standalone/service_harddrake_confirm:8
-#, c-format
-msgid "Do you want to run the appropriate config tool?"
-msgstr "Ønsker du at køre det tilsvarende konfigurationsværktøj?"
-
-#: steps.pm:14
-#, c-format
-msgid "Language"
-msgstr "Vælg sprog"
-
-#: steps.pm:15
-#, c-format
-msgid "License"
-msgstr "Licens"
-
-#: steps.pm:16
-#, c-format
-msgid "Configure mouse"
-msgstr "Konfigurér mus"
-
-#: steps.pm:17
-#, c-format
-msgid "Hard drive detection"
-msgstr "Harddisk bestemmelse"
-
-#: steps.pm:18
-#, c-format
-msgid "Select installation class"
-msgstr "Vælg installations-metode"
-
-#: steps.pm:19
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Vælg tastatur"
-
-#: steps.pm:22
-#, c-format
-msgid "Format partitions"
-msgstr "Formatér partitioner"
-
-#: steps.pm:23
-#, c-format
-msgid "Choose packages to install"
-msgstr "Vælg pakker til installation"
-
-#: steps.pm:24
-#, c-format
-msgid "Install system"
-msgstr "Installér system"
-
-#: steps.pm:25
-#, c-format
-msgid "Administrator password"
-msgstr "Administrator-adgangskode"
-
-#: steps.pm:26
-#, c-format
-msgid "Add a user"
-msgstr "Tilføj bruger"
-
-#: steps.pm:27
-#, c-format
-msgid "Configure networking"
-msgstr "Konfigurér netværk"
-
-#: steps.pm:28
-#, c-format
-msgid "Install bootloader"
-msgstr "Installér systemopstarter"
-
-#: steps.pm:29
-#, c-format
-msgid "Configure X"
-msgstr "Konfigurér X"
-
-#: steps.pm:31
-#, c-format
-msgid "Configure services"
-msgstr "Konfigurér tjenester"
-
-#: steps.pm:32
-#, c-format
-msgid "Install updates"
-msgstr "Installér opdateringer"
-
-#: steps.pm:33
-#, c-format
-msgid "Exit install"
-msgstr "Afslut installation"
-
-#: ugtk2.pm:899
+#: ugtk2.pm:788
#, c-format
msgid "Is this correct?"
msgstr "Er dette korrekt?"
-#: ugtk2.pm:959
+#: ugtk2.pm:848
#, c-format
msgid "No file chosen"
msgstr "Ingen fil valgt"
-#: ugtk2.pm:961
+#: ugtk2.pm:850
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Du har valgt en fil, ikke et katalog"
-#: ugtk2.pm:963
+#: ugtk2.pm:852
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Du har valgt et katalog, ikke en fil"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such directory"
msgstr "Ikke noget katalog"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such file"
msgstr "Ikke nogen fil"
-#: ugtk2.pm:1046
+#: ugtk2.pm:933
#, c-format
msgid "Expand Tree"
msgstr "Udvid træ"
-#: ugtk2.pm:1047
+#: ugtk2.pm:934
#, c-format
msgid "Collapse Tree"
msgstr "Sammenfold træ"
-#: ugtk2.pm:1048
+#: ugtk2.pm:935
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "Skift mellem flad og gruppesorteret"
@@ -26864,3 +6740,23 @@ msgstr ""
msgid "Installation failed"
msgstr "Installation mislykkedes"
+#~ msgid "Icon"
+#~ msgstr "Ikon"
+
+#~ msgid "Number of capture buffers:"
+#~ msgstr "Antal fangningsbuffere:"
+
+#~ msgid "number of capture buffers for mmap'ed capture"
+#~ msgstr "Antal fangningsbuffere for mmap-fangning"
+
+#~ msgid "PLL setting:"
+#~ msgstr "PLL-opsætning:"
+
+#~ msgid "Radio support:"
+#~ msgstr "Radio-understøttelse:"
+
+#~ msgid "enable radio support"
+#~ msgstr "aktivér radio-understøttelse"
+
+#~ msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+#~ msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index 4c33c98d0..b1c2442da 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -1,866 +1,49 @@
# translation of de.po to deutsch
-# translation of DrakX-de.po to deutsch
-# translation of de.po to Deutsch
-# translation of DrakX-de.po to german
+# translation of de.po to
# german translation of the MandrivaInstaller.
# Copyright (C) 2000-2003 Mandriva S.A.
+#
+#
# Stefan Siegel <siegel@linux-mandrake.com>, 2000, 2001, 2002, 2003.
-# Sebastian Deutscher <sebastian_deutscher@web.de>, 2003,2004.
+# Sebastian Deutscher <sebastian.deutscher@web.de>, 2003,2004,2006.
# Gerhard Ortner <gerhard.ortner@aon.at>, 2003, 2004.
# Roy Steuber <roysteuber@mittweida-net.de>, 2004.
# Marcus Fischer <i18n@marcusfischer.com>, 2004.
# Frank Köster <frank@dueppel13.de>, 2004, 2005.
# Ronny Standtke <Ronny.Standtke@gmx.de>, 2003, 2004.
# Ronny Standtke <Ronny.Standtke@gmx.net>, 2004, 2005.
-# Nicolas Bauer <webmaster@mandrakeusers.de>, 2005.
-# Frank Koester <frank@dueppel13.de>, 2005.
+# Nicolas Bauer <webmaster@mandrakeusers.de>, 2005, 2006.
+# Frank Koester <frank@dueppel13.de>, 2005.Frank Koester <frank@dueppel13.de>, 2006.
+# Nicolas Bauer <rastafarii@mandrivauer.de>, 2006, 2007.
+# Nicolas Bauer <rastafarii@mandrivauser.de>, 2007.
msgid ""
msgstr ""
-"Project-Id-Version: DrakX-de\n"
-"POT-Creation-Date: 2006-03-05 18:57+0800\n"
-"PO-Revision-Date: 2005-09-20 17:12+0200\n"
-"Last-Translator: Frank Koester <frank@dueppel13.de>\n"
+"Project-Id-Version: de\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-03-21 12:10+0100\n"
+"PO-Revision-Date: 2007-03-07 17:27+0100\n"
+"Last-Translator: Nicolas Bauer <rastafarii@mandrivauser.de>\n"
"Language-Team: deutsch\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.10.2\n"
-
-#: ../move/move.pm:292
-#, c-format
-msgid "Which USB key do you want to format?"
-msgstr "Welchen USB Key wollen Sie formatieren?"
-
-#: ../move/move.pm:296
-#, c-format
-msgid ""
-"You are about to format a USB device \"%s\". This will delete all data on "
-"it.\n"
-"Make sure that the selected device is the USB key you want to format. \n"
-"We advise you to unplug all other USB storage devices while doing this "
-"operation."
-msgstr ""
-"Sie wollen das USB-Gerät „%s“ formatieren. Das wird alle darauf befindlichen "
-"Daten löschen.\n"
-"Stellen Sie sicher, dass das ausgewählte Gerät der USB-Key ist, den Sie "
-"formatieren möchten.\n"
-"Wir raten Ihnen, alle anderen USB-Speicher-Geräte während dieser Operation "
-"abzuziehen."
-
-#: ../move/move.pm:448 ../move/move.pm:460
-#, c-format
-msgid "Key is not writable"
-msgstr "USB-Stick ist nicht beschreibbar"
-
-#: ../move/move.pm:450
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-"Der Schreibschutz des USB-Sticks scheint aktiv zu sein. Deaktivieren Sie \n"
-"den Schreibschutz und stecken Sie den USB-Stick wieder rein."
-
-#: ../move/move.pm:452
-#, c-format
-msgid "Retry"
-msgstr "Wiederholen"
-
-#: ../move/move.pm:453 ../move/move.pm:497
-#, c-format
-msgid "Continue without USB key"
-msgstr "Ohne USB-Stick fortfahren"
-
-#: ../move/move.pm:462
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled, but we can not safely\n"
-"unplug it now.\n"
-"\n"
-"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandriva Move again."
-msgstr ""
-"Der Schreibschutz des USB-Sticks scheint aktiv zu sein, aber das sichere\n"
-"Entfernen ist jetzt nicht möglich.\n"
-"\n"
-"\n"
-"Starten Sie den Rechner neu, entfernen Sie den USB-Stick, deaktivieren Sie\n"
-"den Schreibschutz und starten Sie Mandriva Move erneut."
-
-#: ../move/move.pm:468 help.pm:410 install_steps_interactive.pm:1303
-#, c-format
-msgid "Reboot"
-msgstr "Neustart"
-
-#: ../move/move.pm:473
-#, c-format
-msgid ""
-"Your USB key does not have any valid Windows (FAT) partitions.\n"
-"We need one to continue (beside, it's more standard so that you\n"
-"will be able to move and access your files from machines\n"
-"running Windows). Please plug in an USB key containing a\n"
-"Windows partition instead.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-"Ihr USB-Stick enthält keine gültige Windows(FAT)-Partition.\n"
-"Wir brauchen eine um fortzufahren (Das ist immer gut, da \n"
-"Sie dann auf Windows-Rechnern auf Ihre Daten zugreifen\n"
-"können). Bitte stecken Sie einen USB-Stick ein, der statt-\n"
-"dessen eine Windows-Partition enthält.\n"
-"\n"
-"\n"
-"Sie können auch ohne einen USB-Stick weitermachen - \n"
-"Sie können dann Mandriva Move immernoch als normales\n"
-"Mandriva Betriebssystem nutzen."
-
-#: ../move/move.pm:483
-#, c-format
-msgid ""
-"We did not detect any USB key on your system. If you\n"
-"plug in an USB key now, Mandriva Move will have the ability\n"
-"to transparently save the data in your home directory and\n"
-"system wide configuration, for next boot on this computer\n"
-"or another one. Note: if you plug in a key now, wait several\n"
-"seconds before detecting again.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-"Es wurde kein USB-Stick an Ihrem System gefunden.\n"
-"Wenn Sie jetzt einen USB-Stick anschließen, kann\n"
-"Mandriva Move transparent die Daten in Ihrem Persönlichen\n"
-"Verzeichnis und die systemweite Konfiguration speichern.\n"
-"Diese stehen dann beim nächsten Booten zur Verfügung.\n"
-"Wenn Sie jetzt einen USB-Stick anschließen, warten Sie bitte\n"
-"mehrere Sekunden, bevor sie die Erkennung nochmals\n"
-"starten.\n"
-"Sie können auch ohne einen USB-Stick weitermachen - \n"
-"Sie können dann Mandriva Move immernoch als normales\n"
-"Mandriva Betriebssystem nutzen."
-
-#: ../move/move.pm:494
-#, c-format
-msgid "Need a key to save your data"
-msgstr "Brauche einen USB-Stick, um Ihre Daten zu speichern"
-
-#: ../move/move.pm:496
-#, c-format
-msgid "Detect USB key again"
-msgstr "Nochmal nach USB-Stick suchen"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Setting up USB key"
-msgstr "USB-Stick einrichten"
-
-#: ../move/move.pm:517
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Bitte warten, schreibe Systemkonfiguration auf den USB-Stick..."
-
-#: ../move/move.pm:546
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
-"Geben Sie Ihre Benutzer-Information ein, das Passwort wird für den "
-"Bildschirmschoner benutzt"
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Auto configuration"
-msgstr "Automatische Konfiguration"
-
-#: ../move/move.pm:556
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Bitte warten, erkenne und konfiguriere Geräte..."
-
-#: ../move/move.pm:604 ../move/move.pm:660 ../move/move.pm:664
-#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/interactive.pm:231
-#: diskdrake/interactive.pm:244 diskdrake/interactive.pm:405
-#: diskdrake/interactive.pm:423 diskdrake/interactive.pm:560
-#: diskdrake/interactive.pm:565 diskdrake/smbnfs_gtk.pm:41 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:52 fsedit.pm:218 install_any.pm:1775
-#: install_any.pm:1827 install_steps.pm:81 install_steps_interactive.pm:37
-#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
-#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
-#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
-#: network/netconnect.pm:837 network/netconnect.pm:866
-#: network/netconnect.pm:965 network/netconnect.pm:969
-#: network/netconnect.pm:973 network/netconnect.pm:978
-#: network/netconnect.pm:1123 network/netconnect.pm:1127
-#: network/netconnect.pm:1246 network/netconnect.pm:1251
-#: network/netconnect.pm:1271 network/netconnect.pm:1428
-#: network/thirdparty.pm:321 network/thirdparty.pm:328
-#: network/thirdparty.pm:372 network/thirdparty.pm:374
-#: network/thirdparty.pm:395 network/thirdparty.pm:419
-#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
-#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
-#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
-#: printer/printerdrake.pm:450 printer/printerdrake.pm:514
-#: printer/printerdrake.pm:686 printer/printerdrake.pm:690
-#: printer/printerdrake.pm:772 printer/printerdrake.pm:1555
-#: printer/printerdrake.pm:1603 printer/printerdrake.pm:1640
-#: printer/printerdrake.pm:1685 printer/printerdrake.pm:1689
-#: printer/printerdrake.pm:1703 printer/printerdrake.pm:1795
-#: printer/printerdrake.pm:1876 printer/printerdrake.pm:1880
-#: printer/printerdrake.pm:1884 printer/printerdrake.pm:1933
-#: printer/printerdrake.pm:1991 printer/printerdrake.pm:1995
-#: printer/printerdrake.pm:2009 printer/printerdrake.pm:2129
-#: printer/printerdrake.pm:2133 printer/printerdrake.pm:2176
-#: printer/printerdrake.pm:2249 printer/printerdrake.pm:2267
-#: printer/printerdrake.pm:2276 printer/printerdrake.pm:2285
-#: printer/printerdrake.pm:2296 printer/printerdrake.pm:2360
-#: printer/printerdrake.pm:2512 printer/printerdrake.pm:2947
-#: printer/printerdrake.pm:3231 printer/printerdrake.pm:3237
-#: printer/printerdrake.pm:3802 printer/printerdrake.pm:3806
-#: printer/printerdrake.pm:3810 printer/printerdrake.pm:4206
-#: printer/printerdrake.pm:4446 printer/printerdrake.pm:4474
-#: printer/printerdrake.pm:4551 printer/printerdrake.pm:4617
-#: printer/printerdrake.pm:4737 standalone/drakTermServ:422
-#: standalone/drakTermServ:492 standalone/drakTermServ:501
-#: standalone/drakTermServ:812 standalone/drakTermServ:819
-#: standalone/drakTermServ:845 standalone/drakTermServ:894
-#: standalone/drakTermServ:1146 standalone/drakTermServ:1181
-#: standalone/drakTermServ:1634 standalone/drakTermServ:1643
-#: standalone/drakTermServ:1651 standalone/drakTermServ:1656
-#: standalone/drakTermServ:1664 standalone/drakTermServ:1680
-#: standalone/drakTermServ:1700 standalone/drakauth:36
-#: standalone/drakbackup:511 standalone/drakbackup:625
-#: standalone/drakbackup:1110 standalone/drakbackup:1141
-#: standalone/drakbackup:1332 standalone/drakbackup:1664
-#: standalone/drakbackup:1820 standalone/drakbackup:2548
-#: standalone/drakbackup:4463 standalone/drakclock:124
-#: standalone/drakconnect:676 standalone/drakconnect:680
-#: standalone/drakconnect:685 standalone/drakconnect:700
-#: standalone/drakfont:209 standalone/drakfont:222 standalone/drakfont:260
-#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakhosts:98
-#: standalone/drakhosts:246 standalone/drakhosts:253 standalone/drakhosts:260
-#: standalone/draknfs:306 standalone/draknfs:609 standalone/draknfs:616
-#: standalone/draknfs:623 standalone/drakroam:33 standalone/draksambashare:384
-#: standalone/draksambashare:388 standalone/draksambashare:391
-#: standalone/draksambashare:394 standalone/draksambashare:453
-#: standalone/draksambashare:477 standalone/draksambashare:551
-#: standalone/draksambashare:633 standalone/draksambashare:700
-#: standalone/draksambashare:800 standalone/draksambashare:807
-#: standalone/draksambashare:942 standalone/draksambashare:1133
-#: standalone/draksambashare:1142 standalone/draksambashare:1151
-#: standalone/draksambashare:1172 standalone/draksambashare:1181
-#: standalone/draksambashare:1190 standalone/draksambashare:1210
-#: standalone/draksambashare:1218 standalone/draksambashare:1230
-#: standalone/draksplash:162 standalone/drakxtv:107
-#: standalone/finish-install:79 standalone/logdrake:171
-#: standalone/logdrake:439 standalone/logdrake:444 standalone/scannerdrake:59
-#: standalone/scannerdrake:202 standalone/scannerdrake:261
-#: standalone/scannerdrake:732 standalone/scannerdrake:743
-#: standalone/scannerdrake:882 standalone/scannerdrake:893
-#: standalone/scannerdrake:963 wizards.pm:95 wizards.pm:99 wizards.pm:121
-#, c-format
-msgid "Error"
-msgstr "Fehler"
-
-#: ../move/move.pm:605 install_steps.pm:82
-#, c-format
-msgid ""
-"An error occurred, but I do not know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Es trat ein Fehler auf. Ich weiß jedoch nicht, wie ich damit sinnvoll \n"
-"umgehen soll. Sie können fortfahren, jedoch auf eigenes Risiko!"
-
-#: ../move/move.pm:660 install_steps_interactive.pm:37
-#, c-format
-msgid "An error occurred"
-msgstr "Ein Fehler ist aufgetreten"
-
-#: ../move/move.pm:666
-#, c-format
-msgid ""
-"An error occurred:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"This may come from corrupted system configuration files\n"
-"on the USB key, in this case removing them and then\n"
-"rebooting Mandriva Move would fix the problem. To do\n"
-"so, click on the corresponding button.\n"
-"\n"
-"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-"Ein Fehler ist aufgetreten:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"Das kann durch defekte System-Konfigurations-Dateien\n"
-"auf dem USB-Stick passieren. Entfernen Sie die Dateien\n"
-"und starten Sie Mandriva Move neu. Um das zu machen,\n"
-"klicken Sie auf die entsprechende Schaltfläche.\n"
-"\n"
-"\n"
-"Sie können auch neu starten und den USB-Stick entfernen,\n"
-"oder den Inhalt unter einem anderen OS untersuchen, oder\n"
-"sogar die Log-Dateien in den Konsolen #3 und #4 einsehen,\n"
-"um Schlussfolgerungen zu ziehen."
-
-#: ../move/move.pm:681
-#, c-format
-msgid "Remove system config files"
-msgstr "System-Konfigurations-Dateien entfernen"
-
-#: ../move/move.pm:682
-#, c-format
-msgid "Simply reboot"
-msgstr "Einfach neustarten"
-
-#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr "Sie können nur ohne CD-ROM-Unterstützung fortfahren"
-
-#: ../move/tree/mdk_totem:71
-#, c-format
-msgid "Kill those programs"
-msgstr "Diese Programme beenden"
-
-#: ../move/tree/mdk_totem:72
-#, c-format
-msgid "No CDROM support"
-msgstr "Keine CDROM-Unterstützung"
-
-#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1062 diskdrake/interactive.pm:1072
-#: diskdrake/interactive.pm:1125
-#, c-format
-msgid "Read carefully!"
-msgstr "Lesen Sie bitte aufmerksam!"
-
-#: ../move/tree/mdk_totem:77
-#, c-format
-msgid ""
-"You can not use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-"Sie können kein anderes CDROM verwenden, wenn die folgenden Programme "
-"laufen: \n"
-"%s"
-
-#: ../move/tree/mdk_totem:101
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr "Kopiere in den Speicher damit Sie die CDROM entfernen können"
-
-#: Xconfig/card.pm:13
-#, c-format
-msgid "256 kB"
-msgstr "256 KB"
-
-#: Xconfig/card.pm:14
-#, c-format
-msgid "512 kB"
-msgstr "512 KB"
-
-#: Xconfig/card.pm:15
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
-
-#: Xconfig/card.pm:16
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
-
-#: Xconfig/card.pm:17
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
-
-#: Xconfig/card.pm:18
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
-
-#: Xconfig/card.pm:19
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: Xconfig/card.pm:20
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
-
-#: Xconfig/card.pm:21
-#, c-format
-msgid "64 MB or more"
-msgstr "64 MB oder mehr"
-
-#: Xconfig/card.pm:162
-#, c-format
-msgid "X server"
-msgstr "X-Server"
-
-#: Xconfig/card.pm:163
-#, c-format
-msgid "Choose an X server"
-msgstr "Wählen Sie einen X-Server"
-
-#: Xconfig/card.pm:195
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Multi-Monitor-Konfiguration"
-
-#: Xconfig/card.pm:196
-#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Ihr System unterstützt die gleichzeitige Verwendung mehrerer Monitore.\n"
-"Was wollen Sie machen?"
-
-#: Xconfig/card.pm:265
-#, c-format
-msgid "Can not install Xorg package: %s"
-msgstr "Kann Xorg Paket nicht installieren: %s"
-
-#: Xconfig/card.pm:275
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Wählen Sie die Speichergröße Ihrer Grafikkarte"
-
-#: Xconfig/card.pm:371
-#, c-format
-msgid "Xorg configuration"
-msgstr "Xorg konfigurieren"
-
-#: Xconfig/card.pm:373
-#, c-format
-msgid "Which configuration of Xorg do you want to have?"
-msgstr "Welche Xorg-Konfiguration wollen Sie verwenden?"
-
-#: Xconfig/card.pm:406
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Alle Monitore getrennt konfigurieren"
-
-#: Xconfig/card.pm:407
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Xinerama-Erweiterung verwenden"
-
-#: Xconfig/card.pm:412
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Nur Karte „%s“ (%s) konfigurieren"
-
-#: Xconfig/card.pm:424 Xconfig/various.pm:23
-#, c-format
-msgid "Xorg %s"
-msgstr "Xorg %s"
-
-#: Xconfig/card.pm:431 Xconfig/various.pm:22
-#, c-format
-msgid "Xorg %s with 3D hardware acceleration"
-msgstr "Xorg %s mit 3D-Hardwarebeschleunigung"
-
-#: Xconfig/card.pm:433
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with Xorg %s."
-msgstr "Ihre Grafikkarte kann mit Xorg %s 3D-hardwarebeschleunigt werden."
-
-#: Xconfig/card.pm:439
-#, c-format
-msgid "Xorg %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "Xorg %s mit EXPERIMENTELLER 3D-Hardwarebeschleunigung"
-
-#: Xconfig/card.pm:441
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with Xorg %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Ihre Karte kann 3D-hardwarebeschleunigt werden, allerdings nur mit \n"
-"Xorg %s. BEMERKUNG: DIESE FUNKTION IST NOCH IM EXPERIMENTIER-\n"
-"STADIUM UND KANN ZUM STEHENBLEIBEN IHRES RECHNERS FÜHREN."
-
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:1021
-#, c-format
-msgid "Custom"
-msgstr "Benutzerdefiniert"
-
-#: Xconfig/main.pm:127 any.pm:742 diskdrake/dav.pm:26 help.pm:15
-#: install_steps_interactive.pm:1303 printer/printerdrake.pm:882
-#: printer/printerdrake.pm:899 printer/printerdrake.pm:4546
-#: printer/printerdrake.pm:5010 standalone/drakhosts:263
-#: standalone/drakroam:230 standalone/draksplash:93 standalone/logdrake:176
-#: standalone/net_applet:103 standalone/scannerdrake:494
-#, c-format
-msgid "Quit"
-msgstr "Verlassen"
-
-#: Xconfig/main.pm:129
-#, c-format
-msgid "Graphic Card"
-msgstr "Grafikkarte"
-
-#: Xconfig/main.pm:132 Xconfig/monitor.pm:110
-#, c-format
-msgid "Monitor"
-msgstr "Monitor"
-
-#: Xconfig/main.pm:135 Xconfig/resolution_and_depth.pm:289
-#, c-format
-msgid "Resolution"
-msgstr "Auflösung"
-
-#: Xconfig/main.pm:138
-#, c-format
-msgid "Test"
-msgstr "Test"
-
-#: Xconfig/main.pm:143 diskdrake/dav.pm:65 diskdrake/interactive.pm:449
-#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
-#: printer/printerdrake.pm:1112 standalone/drakfont:493
-#: standalone/drakfont:548
-#, c-format
-msgid "Options"
-msgstr "Optionen"
-
-#: Xconfig/main.pm:178
-#, c-format
-msgid "Your Xorg configuration file is broken, we will ignore it."
-msgstr "Ihre Xorg-Konfigurationsdatei ist kaputt und wird ignoriert."
-
-#: Xconfig/main.pm:196
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Die Änderungen beibehalten?\n"
-"Momentan wäre dies:\n"
-"\n"
-"%s"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor for head #%d"
-msgstr "Wählen Sie Ihren Monitor #%d"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor"
-msgstr "Wählen Sie Ihren Monitor"
-
-#: Xconfig/monitor.pm:117
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n'Play"
-
-#: Xconfig/monitor.pm:118 mouse.pm:49
-#, c-format
-msgid "Generic"
-msgstr "Generisch"
-
-#: Xconfig/monitor.pm:119 standalone/drakconnect:591 standalone/harddrake2:54
-#: standalone/harddrake2:88
-#, c-format
-msgid "Vendor"
-msgstr "Hersteller"
-
-#: Xconfig/monitor.pm:129
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "Das Plug'n'Play-Testen schlug fehl. Bitte wählen Sie einen Monitor."
-
-#: Xconfig/monitor.pm:137
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Die beiden kritischen Parameter sind die vertikale Wiederholfrequenz\n"
-"(wie oft der gesamte Bildschirm neu angezeigt wird) und insbesondere die\n"
-"horizontale Synchronisationsfrequenz (wie oft Scanlinien angezeigt werden).\n"
-"Es ist SEHR WICHTIG, dass Sie keinen Monitortyp mit einer falschen \n"
-"Synchronisationsrate auswählen, da Sie sonst Ihren Monitor beschädigen \n"
-"könnten. Im Zweifelsfall wählen Sie bitte eine konservativere \n"
-"Einstellung."
-
-#: Xconfig/monitor.pm:144
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Horizontale Wiederholfrequenz"
-
-#: Xconfig/monitor.pm:145
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Vertikale Wiederholfrequenz"
-
-#: Xconfig/resolution_and_depth.pm:10
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 Farben (8 Bit)"
-
-#: Xconfig/resolution_and_depth.pm:11
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32.000 Farben (15 Bit)"
-
-#: Xconfig/resolution_and_depth.pm:12
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65.000 Farben (16 Bit)"
-
-#: Xconfig/resolution_and_depth.pm:13
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 Millionen Farben (24 Bit)"
-
-#: Xconfig/resolution_and_depth.pm:127
-#, c-format
-msgid "Resolutions"
-msgstr "Auflösungen"
-
-#: Xconfig/resolution_and_depth.pm:311 diskdrake/hd_gtk.pm:336
-#: install_steps_gtk.pm:288 mouse.pm:168 services.pm:162
-#: standalone/drakbackup:1606 standalone/drakperm:250
-#, c-format
-msgid "Other"
-msgstr "Andere"
-
-#: Xconfig/resolution_and_depth.pm:360
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Wählen Sie bitte Auflösung und Farbtiefe"
-
-#: Xconfig/resolution_and_depth.pm:361
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Grafikkarte: %s"
-
-#: Xconfig/resolution_and_depth.pm:375 interactive.pm:119 interactive.pm:436
-#: interactive/http.pm:103 interactive/http.pm:156 interactive/newt.pm:321
-#: interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:143
-#: standalone/drakTermServ:222 standalone/drakTermServ:543
-#: standalone/drakbackup:1372 standalone/drakbackup:4123
-#: standalone/drakbackup:4183 standalone/drakbackup:4227
-#: standalone/drakbackup:4481 standalone/drakconnect:158
-#: standalone/drakconnect:852 standalone/drakconnect:939
-#: standalone/drakconnect:1030 standalone/drakfont:569 standalone/drakfont:579
-#: standalone/draksplash:173 standalone/drakups:210 standalone/net_monitor:339
-#: ugtk2.pm:392 ugtk2.pm:490 ugtk2.pm:899 ugtk2.pm:922
-#, c-format
-msgid "Ok"
-msgstr "OK"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/smbnfs_gtk.pm:80 help.pm:90
-#: help.pm:445 install_steps_gtk.pm:455 install_steps_interactive.pm:406
-#: install_steps_interactive.pm:811 interactive.pm:120 interactive.pm:437
-#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
-#: interactive/stdio.pm:39 interactive/stdio.pm:142
-#: printer/printerdrake.pm:3882 standalone/drakautoinst:215
-#: standalone/drakbackup:1372 standalone/drakbackup:4052
-#: standalone/drakbackup:4056 standalone/drakbackup:4111
-#: standalone/drakbackup:4481 standalone/drakconnect:157
-#: standalone/drakconnect:937 standalone/drakconnect:1029
-#: standalone/drakfont:579 standalone/drakfont:655 standalone/drakfont:733
-#: standalone/draksplash:173 standalone/drakups:217 standalone/logdrake:176
-#: standalone/net_monitor:338 ugtk2.pm:386 ugtk2.pm:488 ugtk2.pm:497
-#: ugtk2.pm:899
-#, c-format
-msgid "Cancel"
-msgstr "Abbrechen"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/hd_gtk.pm:150
-#: install_steps_gtk.pm:232 install_steps_gtk.pm:617 interactive.pm:567
-#: interactive/gtk.pm:682 interactive/gtk.pm:684 standalone/drakTermServ:311
-#: standalone/drakbackup:4048 standalone/drakbug:105
-#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:511 standalone/draknfs:206 standalone/drakperm:133
-#: standalone/draksambashare:320 standalone/draksec:344 standalone/draksec:346
-#: standalone/draksec:364 standalone/draksec:366 ugtk2.pm:1031 ugtk2.pm:1032
-#, c-format
-msgid "Help"
-msgstr "Hilfe"
-
-#: Xconfig/test.pm:30
-#, c-format
-msgid "Test of the configuration"
-msgstr "Prüfen der Einstellungen"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Möchten Sie die vorgenommenen Einstellungen prüfen?"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Warnung: Testen dieser Grafikkarte kann Ihren Rechner anhalten"
-
-#: Xconfig/test.pm:69
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"Es trat ein Fehler auf:\n"
-"%s\n"
-"Versuchen Sie, einen Parameter zu ändern."
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Abbruch in %d Sekunden"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Ist dies die richtige Einstellung?"
-
-#: Xconfig/various.pm:29
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Tastaturtyp: %s\n"
-
-#: Xconfig/various.pm:30
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Maustyp: %s\n"
-
-#: Xconfig/various.pm:31
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Maus-Gerät: %s\n"
-
-#: Xconfig/various.pm:33
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: Xconfig/various.pm:34
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Monitor Horiz. Frequenz: %s\n"
-
-#: Xconfig/various.pm:35
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Monitor Vert. Frequenz: %s\n"
-
-#: Xconfig/various.pm:37
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Grafikkarte: %s\n"
-
-#: Xconfig/various.pm:38
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Grafikkartenspeicher: %s KB\n"
-
-#: Xconfig/various.pm:40
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Farbtiefe: %s\n"
-
-#: Xconfig/various.pm:41
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Auflösung: %s\n"
-
-#: Xconfig/various.pm:43
-#, c-format
-msgid "Xorg driver: %s\n"
-msgstr "Xorg-Treiber: %s\n"
-
-#: Xconfig/various.pm:72
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "Grafikumgebung zur Startzeit"
-
-#: Xconfig/various.pm:74
-#, c-format
-msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(Xorg) upon booting.\n"
-"Would you like Xorg to start when you reboot?"
-msgstr ""
-"Ich kann GNU/Linux so einrichten, dass bei jedem Systemstart\n"
-"automatisch die grafische Oberfläche (= der X-Server) aktiviert wird.\n"
-"Wollen Sie, dass X nach jedem Neustart direkt zur Verfügung steht?"
-
-#: Xconfig/various.pm:87
-#, c-format
-msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
-msgstr ""
-"Ihre Grafikkarte scheint einen TV-Ausgang zu haben, der mittels Frame-Buffer "
-"angesprochen werden kann.\n"
-"\n"
-"Wenn Sie das wünschen, schließen Sie bitte Ihren Fernseher an die "
-"Grafikkarte an, bevor Sie den Rechner neu starten.\n"
-"Wählen Sie „TV-Ausgang“ im Bootloader.\n"
-"\n"
-"Haben Sie einen solchen Ausgang und wollen Sie ihn verwenden?"
-
-#: Xconfig/various.pm:99
-#, c-format
-msgid "What norm is your TV using?"
-msgstr "Um welche Fernsehnorm handelt es sich?"
-
-#: Xconfig/xfree.pm:648
-#, c-format
-msgid ""
-"_:weird aspect ratio\n"
-"other"
-msgstr "andere"
-
-#: any.pm:153 harddrake/sound.pm:195 interactive.pm:474 pkgs.pm:474
-#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
-#: standalone/drakups:99 standalone/drakxtv:92 standalone/harddrake2:375
-#: standalone/service_harddrake:235
+#: any.pm:157 diskdrake/interactive.pm:422 diskdrake/interactive.pm:617
+#: diskdrake/interactive.pm:798 diskdrake/interactive.pm:842
+#: diskdrake/interactive.pm:904 diskdrake/interactive.pm:1188 do_pkgs.pm:209
+#: do_pkgs.pm:255 harddrake/sound.pm:195 interactive.pm:576
#, c-format
msgid "Please wait"
msgstr "Bitte warten"
-#: any.pm:153
+#: any.pm:157
#, c-format
msgid "Bootloader installation in progress"
msgstr "Installation des Bootloaders ..."
-#: any.pm:164
+#: any.pm:168
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -877,14 +60,14 @@ msgstr ""
"\n"
"Neue Datenträger-ID zuweisen?"
-#: any.pm:175
+#: any.pm:179
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Die Installation des Betriebssytemstarters schlug fehl. Folgender Fehler "
"trat auf:"
-#: any.pm:181
+#: any.pm:185
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -902,7 +85,7 @@ msgstr ""
"Tippen Sie dann: shut-down\n"
"Beim darauffolgenden Neustart sollte Sie die Eingabeaufforderung sehen."
-#: any.pm:219
+#: any.pm:223
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -917,259 +100,270 @@ msgstr ""
"\n"
"Von welchem Laufwerk wollen Sie booten?"
-#: any.pm:242 help.pm:740
+#: any.pm:246
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Erster Sektor der Platte (MBR)"
-#: any.pm:243
+#: any.pm:247
#, c-format
msgid "First sector of the root partition"
msgstr "Erster Sektor der Root-Partition"
-#: any.pm:245
+#: any.pm:249
#, c-format
msgid "On Floppy"
msgstr "Auf Diskette"
-#: any.pm:247 help.pm:740 printer/printerdrake.pm:4203
+#: any.pm:251
#, c-format
msgid "Skip"
msgstr "Überspringen"
-#: any.pm:251
+#: any.pm:255
#, c-format
msgid "LILO/grub Installation"
msgstr "LILO/Grub-Installation"
-#: any.pm:252
+#: any.pm:257
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Wo soll der Bootloader installiert werden?"
-#: any.pm:278 standalone/drakboot:269
+#: any.pm:284
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfiguration der Boot-Einstellungen"
-#: any.pm:280 any.pm:281 any.pm:314 any.pm:315
+#: any.pm:294 any.pm:326 any.pm:327
#, c-format
msgid "Bootloader main options"
msgstr "Haupt-Optionen des Bootloaders"
-#: any.pm:286
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Geben Sie die RAM-Größe in MB an"
-
-#: any.pm:288
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Die Option „Gebrauch der Kommandozeilen-Parameter einschränken“ ist ohne \n"
-"Angabe eines Passwortes wirkungslos."
-
-#: any.pm:289 any.pm:628 authentication.pm:192
-#, c-format
-msgid "The passwords do not match"
-msgstr "Die Passwörter stimmen nicht überein"
-
-#: any.pm:289 any.pm:628 authentication.pm:192 diskdrake/interactive.pm:1336
+#: any.pm:299
#, c-format
-msgid "Please try again"
-msgstr "Bitte versuchen Sie es erneut"
+msgid "Bootloader"
+msgstr "Bootloader"
-#: any.pm:294 any.pm:319
+#: any.pm:300 any.pm:331
#, c-format
msgid "Bootloader to use"
msgstr "Zu verwendender Bootloader"
-#: any.pm:296 any.pm:321
+#: any.pm:302 any.pm:333
#, c-format
msgid "Boot device"
msgstr "Boot-Gerät"
-#: any.pm:298
+#: any.pm:304
+#, c-format
+msgid "Main options"
+msgstr "Haupt Optionen"
+
+#: any.pm:305
#, c-format
msgid "Delay before booting default image"
msgstr "Wartezeit vor dem Starten des Betriebssystems"
-#: any.pm:299
+#: any.pm:306
#, c-format
msgid "Enable ACPI"
msgstr "ACPI aktivieren"
-#: any.pm:301
+#: any.pm:307
#, c-format
-msgid "Force no APIC"
-msgstr "„Kein APIC“ erzwingen"
+msgid "Enable APIC"
+msgstr "APIC aktivieren"
-#: any.pm:303
+#: any.pm:308
#, c-format
-msgid "Force No Local APIC"
-msgstr "„Kein lokales APIC“ erzwingen"
+msgid "Enable Local APIC"
+msgstr "Lokales APIC aktivieren"
-#: any.pm:305 any.pm:662 authentication.pm:197 diskdrake/smbnfs_gtk.pm:180
-#: network/netconnect.pm:584 printer/printerdrake.pm:1867
-#: printer/printerdrake.pm:1988 standalone/drakbackup:1650
-#: standalone/drakbackup:3641 standalone/drakups:297
+#: any.pm:310 any.pm:686 authentication.pm:196 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Passwort"
-#: any.pm:306 any.pm:663 authentication.pm:198
+#: any.pm:312 authentication.pm:207
+#, c-format
+msgid "The passwords do not match"
+msgstr "Die Passwörter stimmen nicht überein"
+
+#: any.pm:312 authentication.pm:207 diskdrake/interactive.pm:1348
+#, c-format
+msgid "Please try again"
+msgstr "Bitte versuchen Sie es erneut"
+
+#: any.pm:313
+#, c-format
+msgid "You can not use a password with %s"
+msgstr "Sie können kein Passwort welches %s enthält verwenden"
+
+#: any.pm:316 any.pm:687 authentication.pm:197
#, c-format
msgid "Password (again)"
msgstr "Passwort (erneut)"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "Restrict command line options"
msgstr "Gebrauch der Kommandozeilen-Parameter einschränken"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "restrict"
msgstr "einschränken"
-#: any.pm:309
+#: any.pm:318
+#, c-format
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr ""
+"Die Option „Gebrauch der Kommandozeilen-Parameter einschränken“ ist ohne \n"
+"Angabe eines Passwortes wirkungslos."
+
+#: any.pm:320
#, c-format
msgid "Clean /tmp at each boot"
msgstr " „/tmp“ bei jedem Systemstart säubern"
-#: any.pm:310
+#: any.pm:321
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Genaue RAM-Größe, falls nötig (%d MB gefunden)"
-#: any.pm:320
+#: any.pm:322
+#, c-format
+msgid "Give the ram size in MB"
+msgstr "Geben Sie die RAM-Größe in MB an"
+
+#: any.pm:332
#, c-format
msgid "Init Message"
msgstr "Init-Nachricht"
-#: any.pm:322
+#: any.pm:334
#, c-format
msgid "Open Firmware Delay"
msgstr "Open-Firmware-Verzögerung"
-#: any.pm:323
+#: any.pm:335
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Kernel-Start-Wartezeit"
-#: any.pm:324
+#: any.pm:336
#, c-format
msgid "Enable CD Boot?"
msgstr "Booten von CD erlauben?"
-#: any.pm:325
+#: any.pm:337
#, c-format
msgid "Enable OF Boot?"
msgstr "Open-Firmware-Start erlauben?"
-#: any.pm:326
+#: any.pm:338
#, c-format
msgid "Default OS?"
msgstr "Standard-OS?"
-#: any.pm:380
+#: any.pm:404
#, c-format
msgid "Image"
msgstr "Abbild"
-#: any.pm:381 any.pm:391
+#: any.pm:405 any.pm:418
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:382 any.pm:404
+#: any.pm:406 any.pm:431
#, c-format
msgid "Append"
msgstr "Übergeben"
-#: any.pm:384 standalone/drakboot:271 standalone/drakboot:275
+#: any.pm:408
+#, c-format
+msgid "Xen append"
+msgstr "Xen hinzufügen"
+
+#: any.pm:411
#, c-format
msgid "Video mode"
msgstr "Video-Modus"
-#: any.pm:386
+#: any.pm:413
#, c-format
msgid "Initrd"
msgstr "Init-RamDisk"
-#: any.pm:387
+#: any.pm:414
#, c-format
msgid "Network profile"
msgstr "Netzwerk Profil"
-#: any.pm:396 any.pm:401 any.pm:403 diskdrake/interactive.pm:450
+#: any.pm:423 any.pm:428 any.pm:430 diskdrake/interactive.pm:443
#, c-format
msgid "Label"
msgstr "Bezeichnung"
-#: any.pm:398 any.pm:408 harddrake/v4l.pm:438 standalone/drakbackup:2104
-#: standalone/draksec:52
+#: any.pm:425 any.pm:433 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Standard"
-#: any.pm:405
-#, c-format
-msgid "Initrd-size"
-msgstr "Größe der Init-RamDisk"
-
-#: any.pm:407
+#: any.pm:432
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:418
+#: any.pm:443
#, c-format
msgid "Empty label not allowed"
msgstr "Leere Einträge sind nicht erlaubt"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a kernel image"
msgstr "Sie müssen ein Kernel-Image angeben"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a root partition"
msgstr "Sie müssen die Root-Partition festlegen"
-#: any.pm:420
+#: any.pm:445
#, c-format
msgid "This label is already used"
msgstr "Dieser Eintrag existiert bereits"
-#: any.pm:434
+#: any.pm:459
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Welche Art Eintrag wollen Sie hinzufügen?"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Anderes OS (SunOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Anderes OS (MacOS ...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (Windows...)"
msgstr "Anderes OS (Windows ...)"
-#: any.pm:464
+#: any.pm:489
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -1178,52 +372,47 @@ msgstr ""
"Hier sind die verschiedenen Einträge.\n"
"Sie können weitere hinzufügen oder existierende ändern."
-#: any.pm:614
+#: any.pm:640
#, c-format
msgid "access to X programs"
msgstr "Zugriff auf X-Programme"
-#: any.pm:615
+#: any.pm:641
#, c-format
msgid "access to rpm tools"
msgstr "Zugriff auf RPM-Werkzeuge"
-#: any.pm:616
+#: any.pm:642
#, c-format
msgid "allow \"su\""
msgstr "„su“ erlauben"
-#: any.pm:617
+#: any.pm:643
#, c-format
msgid "access to administrative files"
msgstr "Zugriff auf Verwaltungsdateien"
-#: any.pm:618
+#: any.pm:644
#, c-format
msgid "access to network tools"
msgstr "Zugriff auf Netzwerk-Werkzeuge"
-#: any.pm:619
+#: any.pm:645
#, c-format
msgid "access to compilation tools"
msgstr "Zugriff auf Compilier-Werkzeuge"
-#: any.pm:624
+#: any.pm:650
#, c-format
msgid "(already added %s)"
msgstr "(%s wurde bereits hinzugefügt)"
-#: any.pm:629
-#, c-format
-msgid "This password is too simple"
-msgstr "Dieses Passwort ist zu einfach"
-
-#: any.pm:630
+#: any.pm:657
#, c-format
msgid "Please give a user name"
msgstr "Bitte geben Sie einen Benutzernamen an"
-#: any.pm:631
+#: any.pm:658
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
@@ -1231,42 +420,42 @@ msgstr ""
"Der Benutzername sollte nur aus Kleinbuchstaben, Ziffern, \n"
"„-“ und „_“ bestehen"
-#: any.pm:632
+#: any.pm:659
#, c-format
msgid "The user name is too long"
msgstr "Dieser Benutzername ist zu lang"
-#: any.pm:633
+#: any.pm:660
#, c-format
msgid "This user name has already been added"
msgstr "Dieser Benutzername existiert bereits"
-#: any.pm:634 any.pm:665
+#: any.pm:661 any.pm:689
#, c-format
msgid "User ID"
msgstr "Benutzer ID"
-#: any.pm:635 any.pm:666
+#: any.pm:662 any.pm:690
#, c-format
msgid "Group ID"
msgstr "Gruppen ID"
-#: any.pm:638
+#: any.pm:665
#, c-format
msgid "%s must be a number"
msgstr "%s muss eine Zahl sein"
-#: any.pm:639
+#: any.pm:666
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s sollte größer als 500 sein. Trotzdem akzeptieren?"
-#: any.pm:644 standalone/draksambashare:1214
+#: any.pm:671
#, c-format
msgid "Add user"
msgstr "Benutzer hinzufügen"
-#: any.pm:646
+#: any.pm:673
#, c-format
msgid ""
"Enter a user\n"
@@ -1275,100 +464,96 @@ msgstr ""
"Benutzer einrichten\n"
"%s"
-#: any.pm:649 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:154
-#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:81 help.pm:531
-#: interactive/http.pm:151 printer/printerdrake.pm:197
-#: printer/printerdrake.pm:382 printer/printerdrake.pm:5010
-#: standalone/drakbackup:2836 standalone/scannerdrake:685
-#: standalone/scannerdrake:835
+#: any.pm:676 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:166
+#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:82
+#: interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Fertig"
-#: any.pm:650 help.pm:52
+#: any.pm:677
#, c-format
msgid "Accept user"
msgstr "Benutzer akzeptieren"
-#: any.pm:660
+#: any.pm:682
#, c-format
msgid "Real name"
msgstr "Vollständiger Name"
-#: any.pm:661 standalone/drakbackup:1645
+#: any.pm:685
#, c-format
msgid "Login name"
msgstr "Benutzername"
-#: any.pm:664
+#: any.pm:688
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:668
-#, c-format
-msgid "Icon"
-msgstr "Symbol"
-
-#: any.pm:715 security/l10n.pm:14
+#: any.pm:735 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatisch anmelden"
-#: any.pm:716
+#: any.pm:736
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Ich kann Ihren Computer so einrichten, dass ein Benutzer automatisch "
"angemeldet wird."
-#: any.pm:717
+#: any.pm:737
#, c-format
msgid "Use this feature"
msgstr "Diese Möglichkeit nutzen"
-#: any.pm:718
+#: any.pm:738
#, c-format
msgid "Choose the default user:"
msgstr "Wählen Sie den Standard-Nutzer:"
-#: any.pm:719
+#: any.pm:739
#, c-format
msgid "Choose the window manager to run:"
msgstr "Wählen Sie den Window-Manager, den Sie verwenden wollen:"
-#: any.pm:740
+#: any.pm:767
#, c-format
msgid "License agreement"
msgstr "Lizenzvereinbarung"
-#: any.pm:745
+#: any.pm:770 diskdrake/dav.pm:26
+#, c-format
+msgid "Quit"
+msgstr "Verlassen"
+
+#: any.pm:773
#, c-format
msgid "Release Notes"
msgstr "Versionshinweise"
-#: any.pm:748 help.pm:15 install_steps_gtk.pm:539
-#: install_steps_interactive.pm:715 standalone/drakautoinst:214
+#: any.pm:776
#, c-format
msgid "Accept"
msgstr "Akzeptieren"
-#: any.pm:748 install_steps_gtk.pm:539 install_steps_interactive.pm:715
+#: any.pm:776
#, c-format
msgid "Refuse"
msgstr "Ablehnen"
-#: any.pm:765 any.pm:833
+#: any.pm:795 any.pm:863
#, c-format
msgid "Please choose a language to use."
msgstr "Bitte wählen Sie die zu verwendende Sprache."
-#: any.pm:766 any.pm:834
+#: any.pm:796 any.pm:864
#, c-format
msgid "Language choice"
msgstr "Sprachauswahl"
-#: any.pm:794
+#: any.pm:826
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
@@ -1380,70 +565,72 @@ msgstr ""
"Verfügung, nachdem die Installation fertig ist und Sie einen Neustart\n"
"durchgeführt haben."
-#: any.pm:797
+#: any.pm:829
#, c-format
msgid "Multi languages"
msgstr "Mehrere Sprachen"
-#: any.pm:813 any.pm:842 help.pm:648
+#: any.pm:841 any.pm:872
#, c-format
-msgid "Use Unicode by default"
-msgstr "Standardmäßig Unicode verwenden"
+msgid "Old compatibility (non UTF-8) encoding"
+msgstr "Alte (nicht UTF-8) Kodierung"
-#: any.pm:814 help.pm:648
+#: any.pm:843
#, c-format
msgid "All languages"
msgstr "Alle Sprachen"
-#: any.pm:888 help.pm:567 help.pm:856 install_steps_interactive.pm:932
+#: any.pm:918
#, c-format
msgid "Country / Region"
msgstr "Staat / Region"
-#: any.pm:890
+#: any.pm:920
#, c-format
msgid "Please choose your country."
msgstr "Bitte wählen Sie Ihren Staat."
-#: any.pm:892
+#: any.pm:922
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hier ist die komplette Liste aller Staaten"
-#: any.pm:893
+#: any.pm:923
#, c-format
msgid "Other Countries"
msgstr "Andere Länder"
-#: any.pm:893 help.pm:52 help.pm:410 help.pm:432 help.pm:648 help.pm:723
-#: interactive.pm:397
+#: any.pm:923 interactive.pm:477
#, c-format
msgid "Advanced"
msgstr "Fortgeschritten"
-#: any.pm:901
+#: any.pm:929
#, c-format
msgid "Input method:"
msgstr "Einagbe-Methode:"
-#: any.pm:904 install_any.pm:422 network/netconnect.pm:317
-#: network/netconnect.pm:322 network/netconnect.pm:1237 network/wireless.pm:7
-#: printer/printerdrake.pm:117
+#: any.pm:932
#, c-format
msgid "None"
msgstr "Keine"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "No sharing"
msgstr "Keine Freigaben"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "Allow all users"
msgstr "Allen Benutzern erlauben"
-#: any.pm:1025
+#: any.pm:1012
+#, c-format
+msgid "Custom"
+msgstr "Benutzerdefiniert"
+
+#: any.pm:1016
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1458,7 +645,7 @@ msgstr ""
"\n"
"Mit „Benutzerdefiniert“ können Sie eine Einstellung pro Benutzer vornehmen.\n"
-#: any.pm:1037
+#: any.pm:1028
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -1467,7 +654,7 @@ msgstr ""
"NFS: das traditionelle Unix-Dateisystem für Freigaben im Netz, mit weniger "
"Unterstützung für Mac und Windows."
-#: any.pm:1040
+#: any.pm:1031
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -1476,7 +663,7 @@ msgstr ""
"SMB: ein Dateisystem für Freigaben im Netz von Windows, Mac OS X und vielen "
"modernen Linux-Systemen verwendet"
-#: any.pm:1048
+#: any.pm:1039
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -1484,23 +671,17 @@ msgstr ""
"Sie können die Dateien mittels SMB oder NFS anbieten. Welche Variante wollen "
"Sie?"
-#: any.pm:1073
+#: any.pm:1064
#, c-format
msgid "Launch userdrake"
msgstr "UserDrake starten"
-#: any.pm:1073 printer/printerdrake.pm:4085 printer/printerdrake.pm:4088
-#: printer/printerdrake.pm:4089 printer/printerdrake.pm:4090
-#: printer/printerdrake.pm:5328 standalone/drakTermServ:321
-#: standalone/drakbackup:4245 standalone/drakbug:126 standalone/drakfont:499
-#: standalone/drakids:64 standalone/drakids:77 standalone/drakids:85
-#: standalone/draknfs:210 standalone/net_monitor:117
-#: standalone/printerdrake:583
+#: any.pm:1064 interactive/gtk.pm:747
#, c-format
msgid "Close"
msgstr "Schließen"
-#: any.pm:1075
+#: any.pm:1066
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -1509,6 +690,58 @@ msgstr ""
"Die Freigaben zwischen Benutzern regelt die Gruppe „fileshare“. \n"
"Sie können UserDrake verwenden, um Benutzer in diese Gruppe aufzunehmen."
+#: any.pm:1158
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Bitte melden Sie sich ab und drücken Sie Ctrl-Alt-Rücktaste"
+
+#: any.pm:1162
+#, c-format
+msgid "You need to log out and back in again for changes to take effect"
+msgstr ""
+"Sie müssen sich abmelden und wieder anmelden, damit die Änderungen wirksam "
+"werden"
+
+#: any.pm:1212
+#, c-format
+msgid "Timezone"
+msgstr "Zeitzone"
+
+#: any.pm:1212
+#, c-format
+msgid "Which is your timezone?"
+msgstr "Wählen Sie Ihre Zeitzone"
+
+#: any.pm:1224 any.pm:1226
+#, c-format
+msgid "Date, Clock & Time Zone Settings"
+msgstr "Datum, Zeit und Zeitzonen Einstellungen"
+
+#: any.pm:1227
+#, c-format
+msgid "What is the best time?"
+msgstr "Was ist die beste Zeit?"
+
+#: any.pm:1231
+#, c-format
+msgid "%s (hardware clock set to UTC)"
+msgstr "%s (Hardware Uhr gestellt auf GMT)"
+
+#: any.pm:1232
+#, c-format
+msgid "%s (hardware clock set to local time)"
+msgstr "%s (Hardware Uhr gestellt auf Ortszeit)"
+
+#: any.pm:1234
+#, c-format
+msgid "NTP Server"
+msgstr "NTP-Server"
+
+#: any.pm:1235
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Automatische Zeit-Synchronisation (durch NTP)"
+
#: authentication.pm:23
#, c-format
msgid "Local file"
@@ -1592,7 +825,7 @@ msgid "Windows Domain:"
msgstr "Windows-Domäne:"
#: authentication.pm:69
-#, fuzzy, c-format
+#, c-format
msgid ""
"Winbind allows the system to retrieve information and authenticate users in "
"a Windows domain."
@@ -1636,7 +869,7 @@ msgstr "LDAP-Authentifizierung"
msgid "LDAP Base dn"
msgstr "LDAP-Basis-Domäne"
-#: authentication.pm:98 share/compssUsers.pl:102
+#: authentication.pm:98
#, c-format
msgid "LDAP Server"
msgstr "LDAP-Server"
@@ -1666,14 +899,12 @@ msgstr "Sicherheitstyp (SASL/Kerberos)"
msgid "Authentication Active Directory"
msgstr "Authentifizierungsmethode für Active Directory"
-#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:181
+#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Domäne"
-#: authentication.pm:124 diskdrake/dav.pm:63 help.pm:147
-#: printer/printerdrake.pm:75 share/compssUsers.pl:82
-#: standalone/drakTermServ:296
+#: authentication.pm:124 diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Server"
@@ -1766,40 +997,34 @@ msgstr "Name des Domänen-Administrators"
msgid "Domain Admin Password"
msgstr "Passwort des Domänen-Administrators"
-#: authentication.pm:181
+#: authentication.pm:181 authentication.pm:198
#, c-format
-msgid "Set administrator (root) password and network authentication methods"
-msgstr "Administratorpasswort und Netzwerk-Authentifizierungsmethode festlegen"
+msgid "Authentication"
+msgstr "Authentifizierung"
#: authentication.pm:182
#, c-format
msgid "Set administrator (root) password"
msgstr "Administratorpasswort setzen"
-#: authentication.pm:183 standalone/drakvpn:1111
+#: authentication.pm:184
#, c-format
msgid "Authentication method"
msgstr "Authentifizierungsmethode"
#. -PO: keep this short or else the buttons will not fit in the window
-#: authentication.pm:188 help.pm:723
+#: authentication.pm:189
#, c-format
msgid "No password"
msgstr "Kein Passwort"
-#: authentication.pm:194
+#: authentication.pm:210
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"
-#: authentication.pm:199 network/netconnect.pm:322 network/netconnect.pm:585
-#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:481
-#, c-format
-msgid "Authentication"
-msgstr "Authentifizierung"
-
-#: authentication.pm:331
+#: authentication.pm:351
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr ""
@@ -1811,7 +1036,7 @@ msgstr ""
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:767
+#: bootloader.pm:880
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1826,44 +1051,44 @@ msgstr ""
"oder warten Sie auf das Starten des Standard-OS.\n"
"\n"
-#: bootloader.pm:909
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO mit grafischem Menü"
-
-#: bootloader.pm:910
+#: bootloader.pm:1028
#, c-format
msgid "LILO with text menu"
msgstr "LILO mit Textmenü"
-#: bootloader.pm:911
+#: bootloader.pm:1029
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB mit grafischem Menü"
-#: bootloader.pm:912
+#: bootloader.pm:1030
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB mit Textmenü"
-#: bootloader.pm:913
+#: bootloader.pm:1031
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:990
+#: bootloader.pm:1032
+#, c-format
+msgid "SILO"
+msgstr "SILO"
+
+#: bootloader.pm:1112
#, c-format
msgid "not enough room in /boot"
msgstr "Sie haben nicht genug Platz in „/boot“"
-#: bootloader.pm:1483
+#: bootloader.pm:1679
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr ""
"Sie können den Bootloader\n"
"nicht auf einer %s Partition installieren!\n"
-#: bootloader.pm:1523
+#: bootloader.pm:1732
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1872,7 +1097,7 @@ msgstr ""
"Ihere Bootloaderkonfiguration muss geändert werden, da sich Ihre "
"Partitionsnummerierung geändert hat"
-#: bootloader.pm:1536
+#: bootloader.pm:1745
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
@@ -1881,242 +1106,55 @@ msgstr ""
"Das Startabbild konnte nicht korrekt installiert werden. Rettungsmodus "
"starten und „%s“ wählen."
-#: bootloader.pm:1537
+#: bootloader.pm:1746
#, c-format
msgid "Re-install Boot Loader"
msgstr "BS-Starter neu installieren"
-#: common.pm:134
+#: common.pm:129
+#, c-format
+msgid "B"
+msgstr "B"
+
+#: common.pm:129
#, c-format
msgid "KB"
msgstr "KB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "MB"
msgstr "MB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "GB"
msgstr "GB"
-#: common.pm:142
+#: common.pm:137
#, c-format
msgid "TB"
msgstr "TB"
-#: common.pm:150
+#: common.pm:145
#, c-format
msgid "%d minutes"
msgstr "%d Minuten"
-#: common.pm:152
+#: common.pm:147
#, c-format
msgid "1 minute"
msgstr "1 Minute"
-#: common.pm:154
+#: common.pm:149
#, c-format
msgid "%d seconds"
msgstr "%d Sekunden"
-#: common.pm:260
-#, c-format
-msgid "kdesu missing"
-msgstr "„kdesu“ fehlt!"
-
-#: common.pm:263
-#, c-format
-msgid "consolehelper missing"
-msgstr "„consolehelper“ fehlt!"
-
-#: crypto.pm:13 crypto.pm:48 lang.pm:207 network/adsl_consts.pm:66
-#: network/adsl_consts.pm:75 network/adsl_consts.pm:84
-#, c-format
-msgid "Austria"
-msgstr "Österreich"
-
-#: crypto.pm:14 crypto.pm:47 lang.pm:208 standalone/drakxtv:48
-#, c-format
-msgid "Australia"
-msgstr "Australien"
-
-#: crypto.pm:15 crypto.pm:49 lang.pm:214 network/adsl_consts.pm:93
-#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
-#: network/adsl_consts.pm:123 network/netconnect.pm:44
-#, c-format
-msgid "Belgium"
-msgstr "Belgien"
-
-#: crypto.pm:16 crypto.pm:50 lang.pm:223 network/adsl_consts.pm:132
-#: network/adsl_consts.pm:143 network/adsl_consts.pm:152
-#: network/adsl_consts.pm:161
-#, c-format
-msgid "Brazil"
-msgstr "Brasilien"
-
-#: crypto.pm:17 crypto.pm:51 lang.pm:230
-#, c-format
-msgid "Canada"
-msgstr "Kanada"
-
-#: crypto.pm:18 crypto.pm:74 lang.pm:235 network/adsl_consts.pm:891
-#: network/adsl_consts.pm:900 network/adsl_consts.pm:911
-#, c-format
-msgid "Switzerland"
-msgstr "Schweiz"
-
-#: crypto.pm:19 lang.pm:242
-#, c-format
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: crypto.pm:20 crypto.pm:52 lang.pm:248 network/adsl_consts.pm:368
-#, c-format
-msgid "Czech Republic"
-msgstr "Tschechische Republik"
-
-#: crypto.pm:21 crypto.pm:57 lang.pm:249 network/adsl_consts.pm:499
-#: network/adsl_consts.pm:508
-#, c-format
-msgid "Germany"
-msgstr "Deutschland"
-
-#: crypto.pm:22 crypto.pm:53 lang.pm:251 network/adsl_consts.pm:378
-#, c-format
-msgid "Denmark"
-msgstr "Dänemark"
-
-#: crypto.pm:23 crypto.pm:54 lang.pm:256
-#, c-format
-msgid "Estonia"
-msgstr "Estland"
-
-#: crypto.pm:24 crypto.pm:72 lang.pm:260 network/adsl_consts.pm:759
-#: network/adsl_consts.pm:770 network/adsl_consts.pm:781
-#: network/adsl_consts.pm:792 network/adsl_consts.pm:801
-#: network/adsl_consts.pm:810 network/adsl_consts.pm:819
-#: network/adsl_consts.pm:828 network/adsl_consts.pm:837
-#: network/adsl_consts.pm:846 network/adsl_consts.pm:855
-#: network/adsl_consts.pm:864 network/adsl_consts.pm:873
-#, c-format
-msgid "Spain"
-msgstr "Spanien"
-
-#: crypto.pm:25 crypto.pm:55 lang.pm:262 network/adsl_consts.pm:387
-#, c-format
-msgid "Finland"
-msgstr "Finnland"
-
-#: crypto.pm:26 crypto.pm:56 lang.pm:267 network/adsl_consts.pm:396
-#: network/adsl_consts.pm:408 network/adsl_consts.pm:420
-#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
-#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
-#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
-#: network/netconnect.pm:41
-#, c-format
-msgid "France"
-msgstr "Frankreich"
-
-#: crypto.pm:27 crypto.pm:58 lang.pm:280 network/adsl_consts.pm:519
-#, c-format
-msgid "Greece"
-msgstr "Griechenland"
-
-#: crypto.pm:28 crypto.pm:59 lang.pm:291 network/adsl_consts.pm:528
-#, c-format
-msgid "Hungary"
-msgstr "Ungarn"
-
-#: crypto.pm:29 crypto.pm:60 lang.pm:293 network/adsl_consts.pm:537
-#: standalone/drakxtv:47
-#, c-format
-msgid "Ireland"
-msgstr "Irland"
-
-#: crypto.pm:30 crypto.pm:61 lang.pm:294 network/adsl_consts.pm:546
-#, c-format
-msgid "Israel"
-msgstr "Israel"
-
-#: crypto.pm:31 crypto.pm:62 lang.pm:300 network/adsl_consts.pm:557
-#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
-#: network/adsl_consts.pm:589 network/netconnect.pm:43 standalone/drakxtv:47
-#, c-format
-msgid "Italy"
-msgstr "Italien"
-
-#: crypto.pm:32 crypto.pm:63 lang.pm:303
-#, c-format
-msgid "Japan"
-msgstr "Japan"
-
-#: crypto.pm:33 crypto.pm:64 lang.pm:352 network/adsl_consts.pm:620
-#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
-#: network/adsl_consts.pm:647 network/netconnect.pm:42
-#, c-format
-msgid "Netherlands"
-msgstr "Niederlande"
-
-#: crypto.pm:34 crypto.pm:66 lang.pm:353 network/adsl_consts.pm:656
-#: network/adsl_consts.pm:661 network/adsl_consts.pm:666
-#: network/adsl_consts.pm:671 network/adsl_consts.pm:676
-#: network/adsl_consts.pm:681 network/adsl_consts.pm:686
+#: common.pm:298
#, c-format
-msgid "Norway"
-msgstr "Norwegen"
-
-#: crypto.pm:35 crypto.pm:65 lang.pm:357
-#, c-format
-msgid "New Zealand"
-msgstr "Neuseeland"
-
-#: crypto.pm:36 crypto.pm:67 lang.pm:365 network/adsl_consts.pm:693
-#: network/adsl_consts.pm:704
-#, c-format
-msgid "Poland"
-msgstr "Polen"
-
-#: crypto.pm:37 crypto.pm:68 lang.pm:370 network/adsl_consts.pm:716
-#, c-format
-msgid "Portugal"
-msgstr "Portugal"
-
-#: crypto.pm:38 crypto.pm:69 lang.pm:376 network/adsl_consts.pm:725
-#, c-format
-msgid "Russia"
-msgstr "Russland"
-
-#: crypto.pm:39 crypto.pm:73 lang.pm:382 network/adsl_consts.pm:882
-#, c-format
-msgid "Sweden"
-msgstr "Schweden"
-
-#: crypto.pm:40 crypto.pm:70 lang.pm:387
-#, c-format
-msgid "Slovakia"
-msgstr "Slowakei"
-
-#: crypto.pm:41 crypto.pm:76 lang.pm:401 network/adsl_consts.pm:920
-#, c-format
-msgid "Thailand"
-msgstr "Thailand"
-
-#: crypto.pm:42 crypto.pm:75 lang.pm:411
-#, c-format
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#: crypto.pm:43 crypto.pm:71 lang.pm:430 standalone/drakxtv:49
-#, c-format
-msgid "South Africa"
-msgstr "Südafrika"
-
-#: crypto.pm:77 crypto.pm:112 lang.pm:416 network/netconnect.pm:45
-#, c-format
-msgid "United States"
-msgstr "Vereinigte Staaten von Amerika"
+msgid "command %s missing"
+msgstr "Kommando %s fehlt"
#: diskdrake/dav.pm:17
#, c-format
@@ -2137,23 +1175,46 @@ msgstr ""
msgid "New"
msgstr "Neu"
-#: diskdrake/dav.pm:61 diskdrake/interactive.pm:456 diskdrake/smbnfs_gtk.pm:74
+#: diskdrake/dav.pm:61 diskdrake/interactive.pm:449 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Aushängen"
-#: diskdrake/dav.pm:62 diskdrake/interactive.pm:453 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:62 diskdrake/interactive.pm:446 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Einhängen"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:447
-#: diskdrake/interactive.pm:679 diskdrake/interactive.pm:698
-#: diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:78
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:440
+#: diskdrake/interactive.pm:670 diskdrake/interactive.pm:688
+#: diskdrake/interactive.pm:692 diskdrake/removable.pm:23
+#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Einhängepunkt"
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:442
+#: diskdrake/interactive.pm:1047 diskdrake/removable.pm:24
+#: diskdrake/smbnfs_gtk.pm:80
+#, c-format
+msgid "Options"
+msgstr "Optionen"
+
+#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:229
+#: diskdrake/interactive.pm:242 diskdrake/interactive.pm:398
+#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:547
+#: diskdrake/interactive.pm:552 diskdrake/interactive.pm:660
+#: diskdrake/interactive.pm:922 diskdrake/interactive.pm:1092
+#: diskdrake/interactive.pm:1105 diskdrake/interactive.pm:1108
+#: diskdrake/interactive.pm:1348 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:19
+#: do_pkgs.pm:24 do_pkgs.pm:40 do_pkgs.pm:56 do_pkgs.pm:61 fsedit.pm:229
+#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
+#: scanner.pm:94 scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95
+#: wizards.pm:99 wizards.pm:121
+#, c-format
+msgid "Error"
+msgstr "Fehler"
+
#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
@@ -2169,33 +1230,48 @@ msgstr "Die URL muss mit „http://“ oder „https://“ beginnen!"
msgid "Server: "
msgstr "Server: "
-#: diskdrake/dav.pm:110 diskdrake/interactive.pm:523
-#: diskdrake/interactive.pm:1218 diskdrake/interactive.pm:1296
+#: diskdrake/dav.pm:110 diskdrake/interactive.pm:520
+#: diskdrake/interactive.pm:1230 diskdrake/interactive.pm:1308
#, c-format
msgid "Mount point: "
msgstr "Einhängepunkt: "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1303
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1315
#, c-format
msgid "Options: %s"
msgstr "Optionen: %s"
-#: diskdrake/hd_gtk.pm:52 diskdrake/interactive.pm:293
-#: diskdrake/smbnfs_gtk.pm:21 install_interactive.pm:63
-#: install_interactive.pm:217 install_interactive.pm:223
-#: install_interactive.pm:276 install_interactive.pm:281
-#: install_steps_interactive.pm:253 install_steps_interactive.pm:317
-#: steps.pm:21
+#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:286
+#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
+#: fs/partitioning_wizard.pm:47 fs/partitioning_wizard.pm:201
+#: fs/partitioning_wizard.pm:207 fs/partitioning_wizard.pm:247
+#: fs/partitioning_wizard.pm:266 fs/partitioning_wizard.pm:271
#, c-format
msgid "Partitioning"
msgstr "Partitionierung"
-#: diskdrake/hd_gtk.pm:92
+#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1067
+#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1130
+#, c-format
+msgid "Read carefully!"
+msgstr "Lesen Sie bitte aufmerksam!"
+
+#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr "Bitte machen Sie erst eine Sicherheitskopie Ihrer Daten!"
-#: diskdrake/hd_gtk.pm:95
+#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:222
+#, c-format
+msgid "Exit"
+msgstr "Verlassen"
+
+#: diskdrake/hd_gtk.pm:94
+#, c-format
+msgid "Continue"
+msgstr "Fortfahren"
+
+#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
@@ -2205,17 +1281,18 @@ msgstr ""
"Wenn Sie „aboot“ verwenden wollen, müssen Sie ausreichend Platz am Anfang \n"
"der Platte lassen (2048 Sektoren reichen aus)."
-#: diskdrake/hd_gtk.pm:152 help.pm:531
+#: diskdrake/hd_gtk.pm:162 interactive.pm:640 interactive/gtk.pm:719
+#: interactive/gtk.pm:740 interactive/gtk.pm:760 ugtk2.pm:923 ugtk2.pm:924
#, c-format
-msgid "Wizard"
-msgstr "Assistent"
+msgid "Help"
+msgstr "Hilfe"
-#: diskdrake/hd_gtk.pm:185
+#: diskdrake/hd_gtk.pm:197
#, c-format
msgid "Choose action"
msgstr "Wählen Sie eine Aktion"
-#: diskdrake/hd_gtk.pm:189
+#: diskdrake/hd_gtk.pm:201
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -2227,150 +1304,164 @@ msgstr ""
"Ich rate Ihnen, diese Partition erst zu verkleinern\n"
"(Wählen Sie sie an und drücken Sie dann „Größe ändern“)"
-#: diskdrake/hd_gtk.pm:191
+#: diskdrake/hd_gtk.pm:203
#, c-format
msgid "Please click on a partition"
msgstr "Bitte klicken Sie auf eine Partition"
-#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:457
-#: standalone/drakbackup:3088 standalone/drakbackup:3148
+#: diskdrake/hd_gtk.pm:217 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Details"
-#: diskdrake/hd_gtk.pm:251
+#: diskdrake/hd_gtk.pm:265
#, c-format
msgid "No hard drives found"
msgstr "Keine Festplatten gefunden"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:292
+#, c-format
+msgid "Unknown"
+msgstr "Unbekannt"
+
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Ext2"
msgstr "Ext2"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Journalised FS"
msgstr "Journalisierendes FS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "SunOS"
msgstr "SunOS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "HFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1233
+#: diskdrake/hd_gtk.pm:352 services.pm:149
+#, c-format
+msgid "Other"
+msgstr "Andere"
+
+#: diskdrake/hd_gtk.pm:352 diskdrake/interactive.pm:1244
#, c-format
msgid "Empty"
msgstr "Leer"
-#: diskdrake/hd_gtk.pm:340
+#: diskdrake/hd_gtk.pm:356
#, c-format
msgid "Filesystem types:"
msgstr "Dateisystemtypen:"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:359 diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:291
+#: diskdrake/interactive.pm:392 diskdrake/interactive.pm:428
+#: diskdrake/interactive.pm:577 diskdrake/interactive.pm:751
+#: diskdrake/interactive.pm:809 diskdrake/interactive.pm:902
+#: diskdrake/interactive.pm:944 diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:1173 diskdrake/interactive.pm:1211
+#: diskdrake/interactive.pm:1347 do_pkgs.pm:16 do_pkgs.pm:35 do_pkgs.pm:53
+#: harddrake/sound.pm:279
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Stattdessen „%s“ verwenden"
+msgid "Warning"
+msgstr "Warnung"
-#: diskdrake/hd_gtk.pm:357 diskdrake/interactive.pm:472
+#: diskdrake/hd_gtk.pm:380
#, c-format
-msgid "Create"
-msgstr "Erzeugen"
+msgid "This partition is already empty"
+msgstr "Diese Partition ist leer"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:365
-#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:625
-#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
-#: standalone/harddrake2:108 standalone/harddrake2:117
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Type"
-msgstr "Typ"
+msgid "Use ``Unmount'' first"
+msgstr "Verwenden Sie erst „Aushängen“"
-#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: diskdrake/hd_gtk.pm:359 diskdrake/interactive.pm:457
-#: standalone/drakperm:123 standalone/printerdrake:248
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Delete"
-msgstr "Löschen"
+msgid "Use ``%s'' instead"
+msgstr "Stattdessen „%s“ verwenden"
-#: diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:389 diskdrake/interactive.pm:441
+#: diskdrake/interactive.pm:611 diskdrake/interactive.pm:1083
+#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Verwenden Sie erst „Aushängen“"
+msgid "Type"
+msgstr "Typ"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose another partition"
msgstr "Wählen Sie eine andere Partition"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose a partition"
msgstr "Wählen Sie eine Partition"
-#: diskdrake/interactive.pm:224
-#, c-format
-msgid "Exit"
-msgstr "Verlassen"
-
-#: diskdrake/interactive.pm:257 help.pm:531
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Undo"
msgstr "Rückgängig"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to normal mode"
msgstr "In den Normal-Modus wechseln"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to expert mode"
msgstr "In den Experten-Modus wechseln"
-#: diskdrake/interactive.pm:276
+#: diskdrake/interactive.pm:269 diskdrake/interactive.pm:279
+#: diskdrake/interactive.pm:1158
+#, c-format
+msgid "Confirmation"
+msgstr "Bestätigung"
+
+#: diskdrake/interactive.pm:269
#, c-format
msgid "Continue anyway?"
msgstr "Wollen Sie trotzdem fortfahren?"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without saving"
msgstr "Beenden ohne speichern"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Beenden ohne die Partitionstabelle zu speichern?"
-#: diskdrake/interactive.pm:286
+#: diskdrake/interactive.pm:279
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Möchten Sie die vorgenommenen Änderungen in „/etc/fstab“ speichern?"
-#: diskdrake/interactive.pm:293 install_steps_interactive.pm:317
+#: diskdrake/interactive.pm:286 fs/partitioning_wizard.pm:247
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Sie müssen Ihren Rechner neu starten, um die Änderungen \n"
"der Partitionstabelle wirksam werden zu lassen."
-#: diskdrake/interactive.pm:298
+#: diskdrake/interactive.pm:291
#, c-format
msgid ""
"You should format partition %s.\n"
@@ -2381,38 +1472,38 @@ msgstr ""
"Sonst wird kein Eintrag für den Mount-Punkt %s in fstab geschrieben.\n"
"Trotzdem verlassen?"
-#: diskdrake/interactive.pm:311 help.pm:531
+#: diskdrake/interactive.pm:304
#, c-format
msgid "Clear all"
msgstr "Alles löschen"
-#: diskdrake/interactive.pm:312 help.pm:531
+#: diskdrake/interactive.pm:305
#, c-format
msgid "Auto allocate"
msgstr "Automatisches Erstellen"
-#: diskdrake/interactive.pm:313 help.pm:531 help.pm:567 help.pm:607
-#: help.pm:856 install_steps_interactive.pm:98
+#: diskdrake/interactive.pm:306 diskdrake/interactive.pm:360
+#: interactive/curses.pm:457
#, c-format
msgid "More"
msgstr "Mehr"
-#: diskdrake/interactive.pm:318
+#: diskdrake/interactive.pm:311
#, c-format
msgid "Hard drive information"
msgstr "Festplatten-Informationen"
-#: diskdrake/interactive.pm:350
+#: diskdrake/interactive.pm:343
#, c-format
msgid "All primary partitions are used"
msgstr "Alle Primärpartitionen sind in Gebrauch"
-#: diskdrake/interactive.pm:351
+#: diskdrake/interactive.pm:344
#, c-format
msgid "I can not add any more partitions"
msgstr "Ich kann keinen weiteren Partitionen hinzufügen"
-#: diskdrake/interactive.pm:352
+#: diskdrake/interactive.pm:345
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
@@ -2421,52 +1512,52 @@ msgstr ""
"Um mehr Partitionen einrichten zu können, müssen Sie zunächst eine Partition "
"löschen und anschließend eine erweiterte Partition erzeugen."
-#: diskdrake/interactive.pm:361
+#: diskdrake/interactive.pm:354
#, c-format
msgid "No supermount"
msgstr "Kein Supermount"
-#: diskdrake/interactive.pm:362
+#: diskdrake/interactive.pm:355
#, c-format
msgid "Supermount"
msgstr "Supermount"
-#: diskdrake/interactive.pm:363
+#: diskdrake/interactive.pm:356
#, c-format
msgid "Supermount except for CDROM drives"
msgstr "Supermount außer für CDROM Laufwerke"
-#: diskdrake/interactive.pm:369 help.pm:531
+#: diskdrake/interactive.pm:362
#, c-format
msgid "Save partition table"
msgstr "Partitionstabelle schreiben"
-#: diskdrake/interactive.pm:370 help.pm:531
+#: diskdrake/interactive.pm:363
#, c-format
msgid "Restore partition table"
msgstr "Partitionstabelle wiederherstellen"
-#: diskdrake/interactive.pm:371 help.pm:531
+#: diskdrake/interactive.pm:364
#, c-format
msgid "Rescue partition table"
msgstr "Partitionstabelle retten"
-#: diskdrake/interactive.pm:373 help.pm:531
+#: diskdrake/interactive.pm:366
#, c-format
msgid "Reload partition table"
msgstr "Partitionstabelle neu laden"
-#: diskdrake/interactive.pm:375
+#: diskdrake/interactive.pm:368
#, c-format
msgid "Removable media automounting"
msgstr "Wechselmedien automatisch einhängen"
-#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:414
+#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:407
#, c-format
msgid "Select file"
msgstr "Datei auswählen"
-#: diskdrake/interactive.pm:400
+#: diskdrake/interactive.pm:393
#, c-format
msgid ""
"The backup partition table has not the same size\n"
@@ -2475,87 +1566,97 @@ msgstr ""
"Die gesicherte Partitionstabelle hat nicht dieselbe Größe.\n"
"Soll trotzdem fortgefahren werden?"
-#: diskdrake/interactive.pm:429
+#: diskdrake/interactive.pm:422
#, c-format
msgid "Trying to rescue partition table"
msgstr "Ich versuche, die Partitionstabelle zu retten"
-#: diskdrake/interactive.pm:435
+#: diskdrake/interactive.pm:428
#, c-format
msgid "Detailed information"
msgstr "Ausführliche Informationen"
-#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:444 diskdrake/interactive.pm:764
#, c-format
msgid "Resize"
msgstr "Größe ändern"
-#: diskdrake/interactive.pm:452
+#: diskdrake/interactive.pm:445
#, c-format
msgid "Format"
msgstr "Formatieren"
-#: diskdrake/interactive.pm:454
+#: diskdrake/interactive.pm:447 diskdrake/interactive.pm:850
#, c-format
msgid "Add to RAID"
msgstr "Zum RAID hinzufügen"
-#: diskdrake/interactive.pm:455
+#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:867
#, c-format
msgid "Add to LVM"
msgstr "Zum LVM hinzufügen"
-#: diskdrake/interactive.pm:458
+#: diskdrake/interactive.pm:450
+#, c-format
+msgid "Delete"
+msgstr "Löschen"
+
+#: diskdrake/interactive.pm:451
#, c-format
msgid "Remove from RAID"
msgstr "Aus dem RAID löschen"
-#: diskdrake/interactive.pm:459
+#: diskdrake/interactive.pm:452
#, c-format
msgid "Remove from LVM"
msgstr "Aus dem LVM löschen"
-#: diskdrake/interactive.pm:460
+#: diskdrake/interactive.pm:453
#, c-format
msgid "Modify RAID"
msgstr "RAID modifizieren"
-#: diskdrake/interactive.pm:461
+#: diskdrake/interactive.pm:454
#, c-format
msgid "Use for loopback"
msgstr "Als Loopback verwenden"
-#: diskdrake/interactive.pm:516
+#: diskdrake/interactive.pm:465
+#, c-format
+msgid "Create"
+msgstr "Erzeugen"
+
+#: diskdrake/interactive.pm:509 diskdrake/interactive.pm:511
#, c-format
msgid "Create a new partition"
msgstr "Eine neue Partition erzeugen"
-#: diskdrake/interactive.pm:519
+#: diskdrake/interactive.pm:513
#, c-format
msgid "Start sector: "
msgstr "Anfangssektor: "
-#: diskdrake/interactive.pm:521 diskdrake/interactive.pm:938
+#: diskdrake/interactive.pm:516 diskdrake/interactive.pm:937
#, c-format
msgid "Size in MB: "
msgstr "Größe in MB:"
-#: diskdrake/interactive.pm:522 diskdrake/interactive.pm:939
+#: diskdrake/interactive.pm:518 diskdrake/interactive.pm:938
#, c-format
msgid "Filesystem type: "
msgstr "Dateisystemtyp: "
-#: diskdrake/interactive.pm:527
+#: diskdrake/interactive.pm:524
#, c-format
msgid "Preference: "
msgstr "Einstellung: "
-#: diskdrake/interactive.pm:530
+#: diskdrake/interactive.pm:527
#, c-format
msgid "Logical volume name "
msgstr "Name für logisches Laufwerk"
-#: diskdrake/interactive.pm:560
+#: diskdrake/interactive.pm:547
#, c-format
msgid ""
"You can not create a new partition\n"
@@ -2567,12 +1668,12 @@ msgstr ""
"eine primäre Partition und legen Sie stattdessen eine erweiterte \n"
"Partition an."
-#: diskdrake/interactive.pm:590
+#: diskdrake/interactive.pm:577
#, c-format
msgid "Remove the loopback file?"
msgstr "Die Loopback-Datei entfernen?"
-#: diskdrake/interactive.pm:609
+#: diskdrake/interactive.pm:596
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -2580,37 +1681,42 @@ msgstr ""
"Nach Änderung des Partitionstyps von %s, werden sämtliche Daten darauf "
"gelöscht."
-#: diskdrake/interactive.pm:621
+#: diskdrake/interactive.pm:608
#, c-format
msgid "Change partition type"
msgstr "Partitionstyp ändern"
-#: diskdrake/interactive.pm:622 diskdrake/removable.pm:47
+#: diskdrake/interactive.pm:610 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Welches Dateisystem wollen Sie verwenden?"
-#: diskdrake/interactive.pm:630
+#: diskdrake/interactive.pm:617
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "Konvertiere ext2 zu ext3"
-#: diskdrake/interactive.pm:650
+#: diskdrake/interactive.pm:637 diskdrake/interactive.pm:640
#, c-format
msgid "Which volume label?"
-msgstr ""
+msgstr "Welche Datenträgerbezeichnung?"
-#: diskdrake/interactive.pm:666
+#: diskdrake/interactive.pm:641
+#, c-format
+msgid "Label:"
+msgstr "Bezeichnung:"
+
+#: diskdrake/interactive.pm:655
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Wo wollen Sie die Loopback-Datei %s einhängen?"
-#: diskdrake/interactive.pm:667
+#: diskdrake/interactive.pm:656
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Wo wollen Sie das Gerät %s einhängen?"
-#: diskdrake/interactive.pm:672
+#: diskdrake/interactive.pm:661
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
@@ -2619,50 +1725,60 @@ msgstr ""
"Ich kann diesen Einhängepunkt nicht zurücksetzen, da diese Partition als \n"
"Loopback verwendet wird. Bitte entfernen Sie erst diesen Loopback."
-#: diskdrake/interactive.pm:697
+#: diskdrake/interactive.pm:691
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Wo wollen Sie „%s“ einhängen?"
-#: diskdrake/interactive.pm:721 diskdrake/interactive.pm:800
-#: install_interactive.pm:157 install_interactive.pm:189
+#: diskdrake/interactive.pm:715 diskdrake/interactive.pm:798
+#: fs/partitioning_wizard.pm:141 fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing"
msgstr "Berechne die Größe neu"
-#: diskdrake/interactive.pm:721
+#: diskdrake/interactive.pm:715
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Errechne die Grenzen des FAT-Dateisystems"
-#: diskdrake/interactive.pm:757
+#: diskdrake/interactive.pm:751
#, c-format
msgid "This partition is not resizeable"
msgstr "Die Größe dieser Partition ist nicht änderbar"
-#: diskdrake/interactive.pm:762
+#: diskdrake/interactive.pm:756
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Sie sollten alle Daten dieser Partition sichern"
-#: diskdrake/interactive.pm:764
+#: diskdrake/interactive.pm:758
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Durch Veränderung der Partitionsgröße von %s, gehen sämtliche Daten darauf "
"verloren."
-#: diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:765
#, c-format
msgid "Choose the new size"
msgstr "Wählen Sie die neue Größe"
-#: diskdrake/interactive.pm:770
+#: diskdrake/interactive.pm:766
#, c-format
msgid "New size in MB: "
msgstr "Neue Größe in MB:"
-#: diskdrake/interactive.pm:811 install_interactive.pm:197
+#: diskdrake/interactive.pm:767
+#, c-format
+msgid "Minimum size: %s MB"
+msgstr "Minimale Größe: %s MB"
+
+#: diskdrake/interactive.pm:768
+#, c-format
+msgid "Maximum size: %s MB"
+msgstr "Maximale Größe: %s MB"
+
+#: diskdrake/interactive.pm:809 fs/partitioning_wizard.pm:181
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
@@ -2672,27 +1788,27 @@ msgstr ""
"zu gewährleisten, wird Windows™ beim nächsten Hochfahren eine\n"
"Dateisystemprüfung durchführen."
-#: diskdrake/interactive.pm:852
+#: diskdrake/interactive.pm:850
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Wählen Sie einen vorhandenen RAID"
-#: diskdrake/interactive.pm:854 diskdrake/interactive.pm:871
+#: diskdrake/interactive.pm:852 diskdrake/interactive.pm:869
#, c-format
msgid "new"
msgstr "neu"
-#: diskdrake/interactive.pm:869
+#: diskdrake/interactive.pm:867
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Wählen Sie einen vorhandenen LVM"
-#: diskdrake/interactive.pm:875
+#: diskdrake/interactive.pm:874
#, c-format
msgid "LVM name?"
msgstr "LVM-Name?"
-#: diskdrake/interactive.pm:903
+#: diskdrake/interactive.pm:902
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
@@ -2702,217 +1818,224 @@ msgstr ""
"Möchten Sie verwendete physische Erweiterungen auf diesem Datenträger auf "
"andere Datenträger verschieben?"
-#: diskdrake/interactive.pm:905
+#: diskdrake/interactive.pm:904
#, c-format
msgid "Moving physical extents"
msgstr "Physische Erweiterungen verschieben"
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:922
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Diese Partition kann nicht als Loopback verwendet werden"
-#: diskdrake/interactive.pm:936
+#: diskdrake/interactive.pm:935
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: diskdrake/interactive.pm:937
+#: diskdrake/interactive.pm:936
#, c-format
msgid "Loopback file name: "
msgstr "Name der Loopback-Datei: "
-#: diskdrake/interactive.pm:942
+#: diskdrake/interactive.pm:941
#, c-format
msgid "Give a file name"
msgstr "Dateinamen angeben"
-#: diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:944
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr ""
"Diese Datei wird bereits von einer anderen Loopback-Verknüpfung verwendet, "
"wählen Sie eine andere Datei."
-#: diskdrake/interactive.pm:946
+#: diskdrake/interactive.pm:945
#, c-format
msgid "File already exists. Use it?"
msgstr "Datei existiert bereits. Soll ich sie verwenden?"
-#: diskdrake/interactive.pm:969
+#: diskdrake/interactive.pm:974 diskdrake/interactive.pm:977
#, c-format
msgid "Mount options"
msgstr "Einhänge-Optionen"
-#: diskdrake/interactive.pm:976
+#: diskdrake/interactive.pm:984
#, c-format
msgid "Various"
msgstr "Verschiedene"
-#: diskdrake/interactive.pm:1044
+#: diskdrake/interactive.pm:1049
#, c-format
msgid "device"
msgstr "Gerät"
-#: diskdrake/interactive.pm:1045
+#: diskdrake/interactive.pm:1050
#, c-format
msgid "level"
msgstr "Ebene"
-#: diskdrake/interactive.pm:1046
+#: diskdrake/interactive.pm:1051
#, c-format
msgid "chunk size in KiB"
msgstr "Blockgröße in KiB"
-#: diskdrake/interactive.pm:1063
+#: diskdrake/interactive.pm:1068
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Vorsicht:!! Diese Aktion ist gefährlich."
-#: diskdrake/interactive.pm:1078
+#: diskdrake/interactive.pm:1083
#, c-format
msgid "What type of partitioning?"
msgstr "Welcher Partitionstyp?"
-#: diskdrake/interactive.pm:1116
+#: diskdrake/interactive.pm:1121
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Sie müssen Ihren Rechner neu starten, damit die Veränderungen wirksam werden."
-#: diskdrake/interactive.pm:1125
+#: diskdrake/interactive.pm:1130
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Die Partitionstabelle der Platte „%s“ wird gespeichert!"
-#: diskdrake/interactive.pm:1148
+#: diskdrake/interactive.pm:1153
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nach Formatieren der Partition %s, werden sämtliche Daten darauf gelöscht."
-#: diskdrake/interactive.pm:1164
+#: diskdrake/interactive.pm:1158 fs/partitioning.pm:49
+#, c-format
+msgid "Check bad blocks?"
+msgstr "Soll ich nach defekten Blöcken suchen?"
+
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Move files to the new partition"
msgstr "Dateien auf die neue Partition verschieben"
-#: diskdrake/interactive.pm:1164 standalone/draksambashare:81
-#: standalone/draksambashare:144
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Hide files"
msgstr "Dateien verstecken"
-#: diskdrake/interactive.pm:1165
+#: diskdrake/interactive.pm:1173
#, c-format
msgid ""
"Directory %s already contains data\n"
-"(%s)"
+"(%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 ""
-"Das Verzeichnis „%s“ enthält bereits Daten\n"
-"(%s)"
+"Verzeichnis %s enthält Daten\n"
+"(%s)\n"
+"\n"
+"Sie haben die Wahl, die Daten in die neue Partition zu kopieren oder sie an "
+"dem Ort zu belassen. (Was zur Folge hat, dass sie durch die Partition "
+"verdeckt werden)"
-#: diskdrake/interactive.pm:1176
+#: diskdrake/interactive.pm:1188
#, c-format
msgid "Moving files to the new partition"
msgstr "Verschiebe Dateien auf die neue Partition"
-#: diskdrake/interactive.pm:1180
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "Copying %s"
msgstr "Kopiere %s"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1196
#, c-format
msgid "Removing %s"
msgstr "Entferne %s"
-#: diskdrake/interactive.pm:1198
+#: diskdrake/interactive.pm:1210
#, c-format
msgid "partition %s is now known as %s"
msgstr "die Partition %s heißt nun %s"
-#: diskdrake/interactive.pm:1199
+#: diskdrake/interactive.pm:1211
#, c-format
msgid "Partitions have been renumbered: "
msgstr "Die Partitionen wurden neu nummeriert:"
-#: diskdrake/interactive.pm:1219 diskdrake/interactive.pm:1281
+#: diskdrake/interactive.pm:1231 diskdrake/interactive.pm:1293
#, c-format
msgid "Device: "
msgstr "Gerät: "
-#: diskdrake/interactive.pm:1220
-#, c-format
-msgid "Devfs name: "
-msgstr "Devfs name: "
-
-#: diskdrake/interactive.pm:1221
+#: diskdrake/interactive.pm:1232
#, c-format
msgid "Volume label: "
msgstr "Datenträger-Bezeichnung: "
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1233
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS Laufwerksbuchstabe: %s (vermutlich?)\n"
-#: diskdrake/interactive.pm:1226 diskdrake/interactive.pm:1235
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1237 diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1311
#, c-format
msgid "Type: "
msgstr "Typ:"
-#: diskdrake/interactive.pm:1230 install_steps_gtk.pm:300
+#: diskdrake/interactive.pm:1241
#, c-format
msgid "Name: "
msgstr "Name: "
-#: diskdrake/interactive.pm:1237
+#: diskdrake/interactive.pm:1248
#, c-format
msgid "Start: sector %s\n"
msgstr "Anfang: Sektor %s\n"
-#: diskdrake/interactive.pm:1238
+#: diskdrake/interactive.pm:1249
#, c-format
msgid "Size: %s"
msgstr "Größe: %s"
-#: diskdrake/interactive.pm:1240
+#: diskdrake/interactive.pm:1251
#, c-format
msgid ", %s sectors"
msgstr ", %s Sektoren"
-#: diskdrake/interactive.pm:1242
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Zylinder %d bis %d\n"
-#: diskdrake/interactive.pm:1243
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Number of logical extents: %d\n"
msgstr "Anzahl logischer Erweiterungen: %d\n"
-#: diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Formatted\n"
msgstr "Formatiert\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "Not formatted\n"
msgstr "Nicht formatiert\n"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Mounted\n"
msgstr "Eingehängt\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1252
+#: diskdrake/interactive.pm:1263
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2921,7 +2044,7 @@ msgstr ""
"Loopback-Datei(en):\n"
" %s\n"
-#: diskdrake/interactive.pm:1253
+#: diskdrake/interactive.pm:1264
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2930,27 +2053,27 @@ msgstr ""
"Partition wird standardmäßig geladen\n"
" (für MS-DOS-Boot, nicht jedoch für LILO)\n"
-#: diskdrake/interactive.pm:1255
+#: diskdrake/interactive.pm:1266
#, c-format
msgid "Level %s\n"
msgstr "Ebene %s\n"
-#: diskdrake/interactive.pm:1256
+#: diskdrake/interactive.pm:1267
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Blockgröße %d KiB\n"
-#: diskdrake/interactive.pm:1257
+#: diskdrake/interactive.pm:1268
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-Platten %s\n"
-#: diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1270
#, c-format
msgid "Loopback file name: %s"
msgstr "Dateiname des Loopbacks: %s"
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1273
#, c-format
msgid ""
"\n"
@@ -2965,7 +2088,7 @@ msgstr ""
"sie daher besser unverändert\n"
"lassen.\n"
-#: diskdrake/interactive.pm:1265
+#: diskdrake/interactive.pm:1276
#, c-format
msgid ""
"\n"
@@ -2979,75 +2102,78 @@ msgstr ""
"Betriebssysteme auf dem selben\n"
"Rechner.\n"
-#: diskdrake/interactive.pm:1282
+#: diskdrake/interactive.pm:1285
+#, c-format
+msgid "Empty space on %s (%s)"
+msgstr "Freier Speicher auf %s (%s)"
+
+#: diskdrake/interactive.pm:1294
#, c-format
msgid "Read-only"
msgstr "Nur lesbar"
-#: diskdrake/interactive.pm:1283
+#: diskdrake/interactive.pm:1295
#, c-format
msgid "Size: %s\n"
msgstr "Größe: %s\n"
-#: diskdrake/interactive.pm:1284
+#: diskdrake/interactive.pm:1296
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s Zylinder, %s Köpfe, %s Sektoren\n"
-#: diskdrake/interactive.pm:1285 network/thirdparty.pm:331
+#: diskdrake/interactive.pm:1297
#, c-format
msgid "Info: "
msgstr "Info: "
-#: diskdrake/interactive.pm:1286
+#: diskdrake/interactive.pm:1298
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-Platten %s\n"
-#: diskdrake/interactive.pm:1287
+#: diskdrake/interactive.pm:1299
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitionstabellentyp: %s\n"
-#: diskdrake/interactive.pm:1288
+#: diskdrake/interactive.pm:1300
#, c-format
msgid "on channel %d id %d\n"
msgstr "auf Kanal %d ID %d\n"
-#: diskdrake/interactive.pm:1331
+#: diskdrake/interactive.pm:1343
#, c-format
msgid "Filesystem encryption key"
msgstr "Dateisystem-Schlüssel"
-#: diskdrake/interactive.pm:1332
+#: diskdrake/interactive.pm:1344
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Wählen Sie Ihren Dateisystem-Schlüssel (Passwort)"
-#: diskdrake/interactive.pm:1335
+#: diskdrake/interactive.pm:1347
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"
-#: diskdrake/interactive.pm:1336
+#: diskdrake/interactive.pm:1348
#, c-format
msgid "The encryption keys do not match"
msgstr "Die Passwörter stimmen nicht überein"
-#: diskdrake/interactive.pm:1339 network/netconnect.pm:1073
-#: standalone/drakconnect:419 standalone/drakroam:120
+#: diskdrake/interactive.pm:1351
#, c-format
msgid "Encryption key"
msgstr "Schlüssel"
-#: diskdrake/interactive.pm:1340
+#: diskdrake/interactive.pm:1352
#, c-format
msgid "Encryption key (again)"
msgstr "Schlüssel (erneut)"
-#: diskdrake/interactive.pm:1342 standalone/drakvpn:1017
-#: standalone/drakvpn:1102
+#: diskdrake/interactive.pm:1354
#, c-format
msgid "Encryption algorithm"
msgstr "Verschlüsselungsalgorythmus"
@@ -3057,113 +2183,118 @@ msgstr "Verschlüsselungsalgorythmus"
msgid "Change type"
msgstr "Typ ändern"
-#: diskdrake/smbnfs_gtk.pm:163
+#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:539
+#: interactive/curses.pm:214 interactive/http.pm:104 interactive/http.pm:160
+#: interactive/stdio.pm:39 interactive/stdio.pm:142 ugtk2.pm:404 ugtk2.pm:506
+#: ugtk2.pm:515 ugtk2.pm:788
+#, c-format
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr "Ich kann mich unter „%s“ nicht anmelden! Stimmt das Passwort?"
-#: diskdrake/smbnfs_gtk.pm:167 diskdrake/smbnfs_gtk.pm:176
+#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Domänen-Authentifizierung nötig"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Welchen Benutzernamen"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Anderer"
-#: diskdrake/smbnfs_gtk.pm:177
+#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr "Bitte geben Sie Benutzername, Passwort und Domäne des Rechners an."
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3640
+#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Benutzername"
-#: diskdrake/smbnfs_gtk.pm:205
+#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Server suchen"
-#: diskdrake/smbnfs_gtk.pm:210
+#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr "Neue Server suchen"
-#: do_pkgs.pm:16 do_pkgs.pm:49
+#: do_pkgs.pm:16 do_pkgs.pm:53
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Das Paket %s muss installiert sein. Soll ich es installieren?"
-#: do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:52 printer/printerdrake.pm:3948
+#: do_pkgs.pm:19 do_pkgs.pm:40 do_pkgs.pm:56
#, c-format
msgid "Could not install the %s package!"
msgstr "Konnte das Paket %s nicht installieren!"
-#: do_pkgs.pm:24 do_pkgs.pm:57
+#: do_pkgs.pm:24 do_pkgs.pm:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Das zwingend benötigte Paket „%s“ fehlt."
-#: do_pkgs.pm:35 harddrake/sound.pm:278 install_steps_interactive.pm:1288
-#: keyboard.pm:381 network/ndiswrapper.pm:95 network/netconnect.pm:471
-#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2495
-#: printer/printerdrake.pm:2632 printer/printerdrake.pm:2953
-#: printer/printerdrake.pm:2960 printer/printerdrake.pm:3947
-#: printer/printerdrake.pm:4211 printer/printerdrake.pm:4330
-#: printer/printerdrake.pm:5487 standalone/drakTermServ:354
-#: standalone/drakTermServ:1267 standalone/drakTermServ:1328
-#: standalone/drakTermServ:2006 standalone/drakbackup:510
-#: standalone/drakbackup:609 standalone/drakboot:133 standalone/drakclock:224
-#: standalone/drakconnect:973 standalone/drakfont:679 standalone/drakperm:380
-#: standalone/drakperm:390 standalone/drakups:27 standalone/harddrake2:510
-#: standalone/harddrake2:526 standalone/localedrake:43
-#: standalone/scannerdrake:51 standalone/scannerdrake:957
-#, c-format
-msgid "Warning"
-msgstr "Warnung"
-
-#: do_pkgs.pm:35 standalone/harddrake2:526
+#: do_pkgs.pm:35
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Die folgenden Pakete müssen installiert werden:\n"
-#: do_pkgs.pm:205
+#: do_pkgs.pm:209
#, c-format
msgid "Installing packages..."
-msgstr "Installiere Pakete..."
+msgstr "Pakete werden installiert..."
-#: do_pkgs.pm:252
+#: do_pkgs.pm:255
#, c-format
msgid "Removing packages..."
-msgstr "Entferne Pakete ..."
+msgstr "Pakete werden entfernt..."
+
+#: fs/any.pm:17
+#, c-format
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Ein Fehler ist aufgetreten - kein gültiges Gerät wurde gefunden auf dem das "
+"Dateisystem erstellt werden kann. Bitte überprüfen Sie die Hardware auf "
+"Grund diesen Fehlers."
+
+#: fs/any.pm:62 fs/partitioning_wizard.pm:55
+#, c-format
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "/boot/efi muss eine FAT Partition sein"
-#: fs/format.pm:58 fs/format.pm:65
+#: fs/format.pm:59 fs/format.pm:66
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiere Partition „%s“"
-#: fs/format.pm:62
+#: fs/format.pm:63
#, c-format
msgid "Creating and formatting file %s"
msgstr "Erzeugen und Formatieren der Datei %s"
-#: fs/format.pm:115
+#: fs/format.pm:116
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr ""
"Ich bin nicht in der Lage, %s mit einem Dateisystem vom Typ %s zu "
"formatieren."
-#: fs/format.pm:120 fs/format.pm:122
+#: fs/format.pm:121 fs/format.pm:123
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatieren von %s schlug fehl"
@@ -3173,30 +2304,30 @@ msgstr "%s formatieren von %s schlug fehl"
msgid "Circular mounts %s\n"
msgstr "Schleife bem Einbinden %s\n"
-#: fs/mount.pm:74
+#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "Partition „%s“ einhängen"
-#: fs/mount.pm:75
+#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "Das Einhängen der Partition %s in das Verzeichnis %s schlug fehl."
-#: fs/mount.pm:80 fs/mount.pm:97
+#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
-msgstr "Überprüfung von %s"
+msgstr "%s wird überprüft"
-#: fs/mount.pm:113 partition_table.pm:385
+#: fs/mount.pm:118 partition_table.pm:384
#, c-format
msgid "error unmounting %s: %s"
msgstr "Fehler beim Aushängen von %s: %s"
-#: fs/mount.pm:142
+#: fs/mount.pm:133
#, c-format
msgid "Enabling swap partition %s"
-msgstr "Swap Partition „%s“ aktivieren"
+msgstr "Swap-Partition „%s“ aktivieren"
#: fs/mount_options.pm:113
#, c-format
@@ -3270,36 +2401,323 @@ msgstr "Alle I/O-Operationen am Dateisystem sollten parallel gemacht werden."
#: fs/mount_options.pm:139
#, c-format
-msgid "Allow an ordinary user to mount the file system."
-msgstr ""
+msgid "Allow every user to mount and umount the file system."
+msgstr "Jedem Benutzer das Ein- und Aushängen des Dateisystems erlauben."
#: fs/mount_options.pm:141
#, c-format
-msgid "Enable user disk quota accounting, and optionally enforce limits"
-msgstr "Nutzer-Platten-Quota aktivieren und wahlweise Grenzwerte durchsetzen"
+msgid "Allow an ordinary user to mount the file system."
+msgstr "Normalen Benutzern das Einhängen des Dateisystems erlauben."
#: fs/mount_options.pm:143
#, c-format
-msgid "Support user. extended attributes"
-msgstr ""
+msgid "Enable user disk quota accounting, and optionally enforce limits"
+msgstr "Nutzer-Platten-Quota aktivieren und wahlweise Grenzwerte durchsetzen"
#: fs/mount_options.pm:145
#, c-format
+msgid "Support \"user.\" extended attributes"
+msgstr "Unterstütze\"Benutzer.\" erweiterte Eigenschaften"
+
+#: fs/mount_options.pm:147
+#, c-format
msgid "Give write access to ordinary users"
msgstr "Schreib Zugriff für den normalen Benutzer"
-#: fs/mount_options.pm:147
+#: fs/mount_options.pm:149
#, c-format
msgid "Give read-only access to ordinary users"
msgstr "Schreib-Zugriff für den normalen Benutzer"
-#: fs/type.pm:363
+#: fs/mount_point.pm:80
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Einhängepunkt %s duplizieren"
+
+#: fs/mount_point.pm:95
+#, c-format
+msgid "No partition available"
+msgstr "Keine Partitionerfügbar"
+
+#: fs/mount_point.pm:98
+#, c-format
+msgid "Scanning partitions to find mount points"
+msgstr "Suche Partitionen um den Einhängepunkt zu finden"
+
+#: fs/mount_point.pm:105
+#, c-format
+msgid "Choose the mount points"
+msgstr "Wählen Sie den Einhängepunkt"
+
+#: fs/partitioning.pm:46
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "Wählen Sie die Partition die Sie formatieren wollen"
+
+#: fs/partitioning.pm:76
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+"Fehler beim Checken des %s Dateisystem. Wollen Sie die Fehler beheben? "
+"(Beachte. Sie können Daten verliehren)"
+
+#: fs/partitioning.pm:79
+#, c-format
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+"Nicht genug swap Speicher um die Installation auszuführen, bitte fügen Sie "
+"mehr swap Speicher hinzu"
+
+#: fs/partitioning_wizard.pm:47
+#, c-format
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"Sie brauchen eine root Partition.\n"
+"Erstellen Sie eine (oder Kicken Sie auf eine bestehende).\n"
+"Wählen Sie dann den ``Einhängepunkt'' Knopf und wählen Sie `/' aus"
+
+#: fs/partitioning_wizard.pm:52
+#, c-format
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+"Sie haben keine swap Partition.\n"
+"\n"
+"Wollen Sie fortfahren?"
+
+#: fs/partitioning_wizard.pm:80
+#, c-format
+msgid "Use free space"
+msgstr "Verwende freien Platz"
+
+#: fs/partitioning_wizard.pm:82
+#, c-format
+msgid "Not enough free space to allocate new partitions"
+msgstr "Nicht genug freier Platz, um die neue Partition hinzuzufügen"
+
+#: fs/partitioning_wizard.pm:90
+#, c-format
+msgid "Use existing partitions"
+msgstr "Bestehende Partitionen"
+
+#: fs/partitioning_wizard.pm:92
+#, c-format
+msgid "There is no existing partition to use"
+msgstr "Es gibt keine existierende Partition, die ich verwenden kann."
+
+#: fs/partitioning_wizard.pm:99
+#, c-format
+msgid "Use the Microsoft Windows® partition for loopback"
+msgstr "Verwende die Microsoft Windows® Partition als Loopback"
+
+#: fs/partitioning_wizard.pm:102
+#, c-format
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Welche Partition wollen Sie für Linux4Win verwenden?"
+
+#: fs/partitioning_wizard.pm:104
+#, c-format
+msgid "Choose the sizes"
+msgstr "Wählen Sie die Größe"
+
+#: fs/partitioning_wizard.pm:105
+#, c-format
+msgid "Root partition size in MB: "
+msgstr "Root Partitions Größe in MB: "
+
+#: fs/partitioning_wizard.pm:106
+#, c-format
+msgid "Swap partition size in MB: "
+msgstr "Swap Partitions Größe in MB: "
+
+#: fs/partitioning_wizard.pm:115
+#, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+"Es gibt keine FAT Partition die als Loopback verwendet werden kann (oder "
+"nicht genügen Speicher vorhanden)"
+
+#: fs/partitioning_wizard.pm:122
+#, c-format
+msgid "Use the free space on the Microsoft Windows® partition"
+msgstr "Verwende Sie den freien Platz auf der Microsoft Windows® Partition"
+
+#: fs/partitioning_wizard.pm:124
+#, c-format
+msgid "Which partition do you want to resize?"
+msgstr "Bei welcher Partition wollen Sie die Größe ändern?"
+
+#: fs/partitioning_wizard.pm:138
+#, c-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+"Das Werkzeug zum Verändern der FAT-Partitionsgröße kann mit der \n"
+"Partition nicht arbeiten. Folgender Fehler trat auf:%s"
+
+#: fs/partitioning_wizard.pm:141
+#, c-format
+msgid "Computing the size of the Microsoft Windows® partition"
+msgstr "Berechne die Größe der Microsoft Windows®-Partition"
+
+#: fs/partitioning_wizard.pm:148
+#, c-format
+msgid ""
+"Your Microsoft Windows® partition is too fragmented. Please reboot your "
+"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
+"the Mandriva Linux installation."
+msgstr ""
+"Ihr Microsoft Windows® Partition ist zu fragmentiert. Bitte starten Sie "
+"ihren Computer mit Microsoft Windows®, starten Sie das ``Defragmentierungs'' "
+"Tool, dann starten Sie die Mandriva Linux Installation neu."
+
+#: fs/partitioning_wizard.pm:151
+#, 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 ""
+"WARNUNG!\n"
+"\n"
+"\n"
+"DrakX wird nun die Größe Ihrer Windows-Partition verändern.\n"
+"\n"
+"\n"
+"Seien Sie vorsichtig: Diese Aktion ist gefährlich. Falls Sie es noch nicht "
+"getan haben, sollten Sie nun die Installation abbrechen, um „chkdsk c:“ von "
+"einem DOS Prompt unter Windows auf die Partition anzuwenden (Achtung:"
+"scandisk unter der grafischen Windows Oberfläche reicht nicht aus, bitte "
+"„chkdsk“ in einem DOS Prompt ausführen!)Defragmentieren. Anschließend können "
+"Sie die Installation erneut starten.\n"
+"Sie sollten natürlich generell Sicherheitskopien Ihrer Daten angelegt\n"
+"haben.\n"
+"\n"
+"\n"
+"Falls dies der Fall ist, können Sie mit %s fortfahren."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: fs/partitioning_wizard.pm:160 interactive.pm:538 interactive/curses.pm:217
+#: ugtk2.pm:508
+#, c-format
+msgid "Next"
+msgstr "Weiter"
+
+#: fs/partitioning_wizard.pm:163
+#, c-format
+msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
+msgstr ""
+"Wieviel Platz benötigen sie noch für Microsoft Windows® auf Partition %s?"
+
+#: fs/partitioning_wizard.pm:164
+#, c-format
+msgid "Size"
+msgstr "Größe"
+
+#: fs/partitioning_wizard.pm:173
+#, c-format
+msgid "Resizing Microsoft Windows® partition"
+msgstr "Größe der Microsoft Windows®-Partition wird geändert"
+
+#: fs/partitioning_wizard.pm:178
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "FAT-Größenanpassung schlug fehl: %s"
+
+#: fs/partitioning_wizard.pm:193
+#, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+"Sie haben keine FAT-Partition, deren Größe ich anpassen kann\n"
+"(möglicherweise haben Sie auch einfach nur nicht mehr genügend\n"
+"freien Speicher)."
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Remove Microsoft Windows®"
+msgstr "Entferne Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Erase and use entire disk"
+msgstr "Komplette Platte löschen und freien Platz benutzen"
+
+#: fs/partitioning_wizard.pm:200
+#, c-format
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+"Sie haben mehr als eine Festplatte.\n"
+"Auf welche soll GNU/Linux installiert werden?"
+
+#: fs/partitioning_wizard.pm:206
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+"SÄMTLICHE existierende Partitionen samt der darauf befindlichen Daten \n"
+"auf Laufwerk %s gehen dabei verloren"
+
+#: fs/partitioning_wizard.pm:217
+#, c-format
+msgid "Custom disk partitioning"
+msgstr "Benutzerdefinierte Partitionierung"
+
+#: fs/partitioning_wizard.pm:223
+#, c-format
+msgid "Use fdisk"
+msgstr "Verwende fdisk"
+
+#: fs/partitioning_wizard.pm:226
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+"Sie können nun %s partitionieren.\n"
+"Vergessen Sie nicht die Einstellungen mittels ‚w‘ zu speichern, \n"
+"sobald Sie fertig sind."
+
+#: fs/partitioning_wizard.pm:266
+#, c-format
+msgid "I can not find any room for installing"
+msgstr "Ich kann kein Platz zum Installieren finden"
+
+#: fs/partitioning_wizard.pm:270
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Der DrakX-Partitionierungsassistent fand folgende Lösung:"
+
+#: fs/partitioning_wizard.pm:278
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Partitionierunsgfehler: %s"
+
+#: fs/type.pm:366
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr ""
"Sie können JFS nicht für Partitionen verwenden, die kleiner als 16MB sind!"
-#: fs/type.pm:364
+#: fs/type.pm:367
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr ""
@@ -3316,7 +2734,12 @@ msgstr "mit „/usr“"
msgid "server"
msgstr "Server"
-#: fsedit.pm:219
+#: fsedit.pm:116
+#, c-format
+msgid "BIOS software RAID detected on disks %s. Activate it?"
+msgstr "BIOS Software RAID wurde auf Festplatte %s gefunden. Aktivieren?"
+
+#: fsedit.pm:230
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
@@ -3336,24 +2759,24 @@ msgstr ""
"\n"
"Sind Sie einverstanden, dass ich die problematischen Partitionen lösche?\n"
-#: fsedit.pm:392
+#: fsedit.pm:403
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Einhängepunkte müssen mit einem / beginnen."
-#: fsedit.pm:393
+#: fsedit.pm:404
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
"Einhängepunkte sollten nur Buchstaben, Ziffern und den Unterstrich "
"unterhalten"
-#: fsedit.pm:394
+#: fsedit.pm:405
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Es gibt bereits eine Partition, mit dem Einhängepunkt %s\n"
-#: fsedit.pm:398
+#: fsedit.pm:409
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -3366,8 +2789,8 @@ msgstr ""
"„/boot“-Partition arbeiten. Stellen Sie sicher, dass Sie eine solche \n"
"Partition erstellen."
-#: fsedit.pm:404
-#, fuzzy, c-format
+#: fsedit.pm:415
+#, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
@@ -3375,25 +2798,25 @@ msgstr ""
"Sie können eine logische LVM-Partition nicht als Einhängepunkt %s verwenden, "
"da er sich über mehrere physische Datenträger erstreckt"
-#: fsedit.pm:406
-#, fuzzy, c-format
+#: fsedit.pm:417
+#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
"The bootloader is not able to handle this when the volume spans physical "
"volumes.\n"
"You should create a /boot partition first"
msgstr ""
-"Sie haben eine logische LVM.Partition als Dateisystemwurzel (/) ausgewählt.\n"
-"Der Systemstarter beherrscht dies nicht, wenn die Partition sich über "
-"mehrere physische Datenträger erstreckt.\n"
+"Sie haben eine logische LVM-Partition als Dateisystemwurzel (/) ausgewählt.\n"
+"Der Bootloader beherrscht dies nicht, wenn die Partition sich über mehrere "
+"physische Datenträger erstreckt.\n"
"Sie sollten zuerst eine Partition „/boot“ anlegen"
-#: fsedit.pm:410 fsedit.pm:412
+#: fsedit.pm:421 fsedit.pm:423
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Dieses Verzeichnis muss innerhalb des Wurzelverzeichnisses bleiben"
-#: fsedit.pm:414 fsedit.pm:416
+#: fsedit.pm:425 fsedit.pm:427
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -3402,25 +2825,24 @@ msgstr ""
"Sie benötigen ein echtes GNU/Linux-Dateisystem (ext2/ext3, reiserfs, xfs "
"oder jfs) für diesen Einhängepunkt.\n"
-#: fsedit.pm:418
+#: fsedit.pm:429
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr ""
"Sie können kein verschlüsseltes Medium für den Einhängepunkt %s verwenden."
-# ../../diskdrak1
-#: fsedit.pm:482
+#: fsedit.pm:493
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
"Nicht genug freier Platz, damit ich selbst eine Partition anlegen kann."
-#: fsedit.pm:484
+#: fsedit.pm:495
#, c-format
msgid "Nothing to do"
msgstr "Nichts zu tun."
-#: harddrake/data.pm:62 install_any.pm:1710
+#: harddrake/data.pm:62
#, c-format
msgid "Floppy"
msgstr "Diskettenlaufwerke"
@@ -3430,12 +2852,12 @@ msgstr "Diskettenlaufwerke"
msgid "Zip"
msgstr "ZIP"
-#: harddrake/data.pm:88 install_any.pm:1711
+#: harddrake/data.pm:88
#, c-format
msgid "Hard Disk"
msgstr "Festplatten"
-#: harddrake/data.pm:97 install_any.pm:1712
+#: harddrake/data.pm:97
#, c-format
msgid "CDROM"
msgstr "CD-ROM"
@@ -3450,103 +2872,102 @@ msgstr "CD/DVD-Brenner"
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:127 standalone/drakbackup:2066
+#: harddrake/data.pm:127
#, c-format
msgid "Tape"
msgstr "Bandlaufwerke"
-#: harddrake/data.pm:136
+#: harddrake/data.pm:138
+#, c-format
+msgid "AGP controllers"
+msgstr "AGP-Controller"
+
+#: harddrake/data.pm:147
#, c-format
msgid "Videocard"
msgstr "Videokarten"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:157
#, c-format
msgid "DVB card"
msgstr "DVB-Karte"
-#: harddrake/data.pm:154
+#: harddrake/data.pm:165
#, c-format
msgid "Tvcard"
msgstr "TV-Karten"
-#: harddrake/data.pm:163
+#: harddrake/data.pm:174
#, c-format
msgid "Other MultiMedia devices"
msgstr "Andere Multimedia-Geräte"
-#: harddrake/data.pm:172
+#: harddrake/data.pm:183
#, c-format
msgid "Soundcard"
msgstr "Soundkarten"
-#: harddrake/data.pm:185
+#: harddrake/data.pm:196
#, c-format
msgid "Webcam"
msgstr "Webcam"
-#: harddrake/data.pm:199
+#: harddrake/data.pm:210
#, c-format
msgid "Processors"
msgstr "Prozessoren"
-#: harddrake/data.pm:209
+#: harddrake/data.pm:220
#, c-format
msgid "ISDN adapters"
msgstr "ISDN Karten"
-#: harddrake/data.pm:220
+#: harddrake/data.pm:231
#, c-format
msgid "USB sound devices"
msgstr "USB-Sound-Geräte"
-#: harddrake/data.pm:229
+#: harddrake/data.pm:240
#, c-format
msgid "Radio cards"
msgstr "Radiokarten"
-#: harddrake/data.pm:238
+#: harddrake/data.pm:249
#, c-format
msgid "ATM network cards"
msgstr "ATM-Netzwerkkarten"
-#: harddrake/data.pm:247
+#: harddrake/data.pm:258
#, c-format
msgid "WAN network cards"
msgstr "WAN-Netzwerkkarten"
-#: harddrake/data.pm:256
+#: harddrake/data.pm:267
#, c-format
msgid "Bluetooth devices"
msgstr "Bluetooth-Geräte"
-#: harddrake/data.pm:265
+#: harddrake/data.pm:276
#, c-format
msgid "Ethernetcard"
msgstr "Netzwerkkarten"
-#: harddrake/data.pm:282 network/netconnect.pm:492
+#: harddrake/data.pm:293
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:292
+#: harddrake/data.pm:303
#, c-format
msgid "ADSL adapters"
msgstr "ADSL Adapter"
-#: harddrake/data.pm:306
+#: harddrake/data.pm:315
#, c-format
msgid "Memory"
msgstr "Speicher"
-#: harddrake/data.pm:315
-#, c-format
-msgid "AGP controllers"
-msgstr "AGP-Controller"
-
-#: harddrake/data.pm:324 help.pm:187 help.pm:856
-#: install_steps_interactive.pm:964
+#: harddrake/data.pm:324
#, c-format
msgid "Printer"
msgstr "Drucker"
@@ -3572,85 +2993,92 @@ msgstr "SATA-Controller"
msgid "RAID controllers"
msgstr "RAID-Controller"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA-Controller"
-#: harddrake/data.pm:385
+#: harddrake/data.pm:386
+#, c-format
+msgid "USB Mass Storage Devices"
+msgstr "USB-Massenspeicher-Geräte"
+
+#: harddrake/data.pm:395
+#, c-format
+msgid "Card readers"
+msgstr "Kartenlesegerät"
+
+#: harddrake/data.pm:404
#, c-format
msgid "Firewire controllers"
msgstr "Firewire-Controller"
-#: harddrake/data.pm:394
+#: harddrake/data.pm:413
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA-Controller"
-#: harddrake/data.pm:403
+#: harddrake/data.pm:422
#, c-format
msgid "SCSI controllers"
msgstr "SCSI-Controller"
-#: harddrake/data.pm:412
+#: harddrake/data.pm:431
#, c-format
msgid "USB controllers"
msgstr "USB-Controller"
-#: harddrake/data.pm:421
+#: harddrake/data.pm:440
#, c-format
msgid "USB ports"
msgstr "USB-Ports"
-#: harddrake/data.pm:430
+#: harddrake/data.pm:449
#, c-format
msgid "SMBus controllers"
msgstr "SMBus-Controller"
-#: harddrake/data.pm:439
+#: harddrake/data.pm:458
#, c-format
msgid "Bridges and system controllers"
msgstr "Brücken und System-Controller"
-#: harddrake/data.pm:450 help.pm:856 install_steps_interactive.pm:94
-#: install_steps_interactive.pm:924 standalone/finish-install:41
-#: standalone/keyboarddrake:29
+#: harddrake/data.pm:469
#, c-format
msgid "Keyboard"
msgstr "Tastatur"
-#: harddrake/data.pm:463
+#: harddrake/data.pm:482
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tablet und Touchscreen"
-#: harddrake/data.pm:472 help.pm:856 install_steps_interactive.pm:957
+#: harddrake/data.pm:491
#, c-format
msgid "Mouse"
msgstr "Maus"
-#: harddrake/data.pm:486
+#: harddrake/data.pm:505
#, c-format
msgid "UPS"
msgstr "USV"
-#: harddrake/data.pm:495
+#: harddrake/data.pm:514
#, c-format
msgid "Scanner"
msgstr "Scanner"
-#: harddrake/data.pm:505 standalone/harddrake2:475
+#: harddrake/data.pm:524
#, c-format
msgid "Unknown/Others"
msgstr "Unbekannt/Andere"
-#: harddrake/data.pm:533
+#: harddrake/data.pm:552
#, c-format
msgid "cpu # "
msgstr "CPU #"
-#: harddrake/sound.pm:195 standalone/drakconnect:162
-#: standalone/drakconnect:637
+#: harddrake/sound.pm:195
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Einen Moment ... Ich richte die Konfiguration ein"
@@ -3732,17 +3160,17 @@ msgstr ""
"- die neue ALSA-API mit den erweiterten Möglichkeiten. Diese verlangt "
"allerdings das Nutzen der ALSA-Bilbliotheken.\n"
-#: harddrake/sound.pm:262 harddrake/sound.pm:350 standalone/drakups:144
+#: harddrake/sound.pm:262 harddrake/sound.pm:351
#, c-format
msgid "Driver:"
msgstr "Treiber:"
-#: harddrake/sound.pm:270
+#: harddrake/sound.pm:271
#, c-format
msgid "Trouble shooting"
msgstr "Fehlerbehandlung"
-#: harddrake/sound.pm:278
+#: harddrake/sound.pm:279
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
@@ -3757,12 +3185,12 @@ msgstr ""
"\n"
"Der neue „%s“ Treiber steht nach einem Neustart zur Verfügung."
-#: harddrake/sound.pm:286
+#: harddrake/sound.pm:287
#, c-format
msgid "No open source driver"
msgstr "Kein OpenSource-Treiber"
-#: harddrake/sound.pm:287
+#: harddrake/sound.pm:288
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
@@ -3771,33 +3199,33 @@ msgstr ""
"Es existiert kein freier Treiber für Ihre Soundkarte (%s), aber es gibt "
"einen proprietären Treiber unter „%s“."
-#: harddrake/sound.pm:290
+#: harddrake/sound.pm:291
#, c-format
msgid "No known driver"
msgstr "Kein bekannter Treiber"
-#: harddrake/sound.pm:291
+#: harddrake/sound.pm:292
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Es gibt keinen bekannten Treiber für Ihre Soundkarte (%s)"
-#: harddrake/sound.pm:295 network/netconnect.pm:98 network/netconnect.pm:837
+#: harddrake/sound.pm:296
#, c-format
msgid "Unknown driver"
msgstr "Unbekannter Treiber"
-#: harddrake/sound.pm:296
+#: harddrake/sound.pm:297
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "Fehler: Es gibt keinen bekannten Treiber für Ihre Soundkarte (%s)"
-#: harddrake/sound.pm:310
+#: harddrake/sound.pm:311
#, c-format
msgid "Sound trouble shooting"
msgstr "Sound-Fehlerbehandlung"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:313
+#: harddrake/sound.pm:314
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
@@ -3806,7 +3234,7 @@ msgid ""
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\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"
@@ -3834,18 +3262,18 @@ msgstr ""
"- „/sbin/fuser -v /dev/dsp“ verrät das Programm, das die Soundkarte "
"benutzt.\n"
-#: harddrake/sound.pm:339
+#: harddrake/sound.pm:340
#, c-format
msgid "Let me pick any driver"
msgstr "Lassen Sie mich irgendeinen Treiber auswählen"
-#: harddrake/sound.pm:342
+#: harddrake/sound.pm:343
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Ich wähle einen willkürlichen Treiber"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:345
+#: harddrake/sound.pm:346
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3859,8 +3287,7 @@ msgstr ""
"\n"
"Der gerade verwendete Treiber für Ihre „%s“ Soundkarte ist „%s“ "
-#: harddrake/v4l.pm:12 standalone/net_applet:64 standalone/net_applet:65
-#: standalone/net_applet:67
+#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Autoerkennung"
@@ -3903,3901 +3330,53 @@ msgstr "Kartentyp:"
msgid "Tuner type:"
msgstr "Tunertyp:"
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "Number of capture buffers:"
-msgstr "Anzahl der Aufnahmepuffer:"
-
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "Anzahl der Puffer für MMAP-Aufnahmen"
-
-#: harddrake/v4l.pm:481
-#, c-format
-msgid "PLL setting:"
-msgstr "PLL-Einstellung:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "Radio support:"
-msgstr "Radiobetrieb:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "enable radio support"
-msgstr "Radio Unterstützung aktivieren"
-
-#: help.pm:12
-#, c-format
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandriva Linux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-"Lesen Sie bitte aufmerksam die Lizenz, bevor Sie fortfahren. Sie umfasst\n"
-"die gesamte Mandriva Linux Distribution. Sollten Sie nicht in allen Punkten\n"
-"zustimmen, betätigen Sie bitte die Schaltfläche „%s“, um die Installation\n"
-"abzubrechen. Um mit der Installation fortzufahren, betätigen Sie die\n"
-"Schaltfläche „%s“."
-
-#: help.pm:18
-#, c-format
-msgid ""
-"GNU/Linux is a multi-user system which means each user can have his or her\n"
-"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point will not be "
-"authorized\n"
-"to change anything except their own files and their own configurations,\n"
-"protecting the system from unintentional or malicious changes which could\n"
-"impact on the system as a whole. You'll have to create at least one regular\n"
-"user for yourself -- this is the account which you should use for routine,\n"
-"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
-"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system will not work any more. If you make a\n"
-"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you will not affect the entire system.\n"
-"\n"
-"The first field asks you for a real name. Of course, this is not mandatory\n"
-"-- you can actually enter whatever you like. DrakX will use the first word\n"
-"you type in this field and copy it to the \"%s\" one, which is the name\n"
-"this user will enter to log onto the system. If you like, you may override\n"
-"the default and change the user name. The next step is to enter a password.\n"
-"From a security point of view, a non-privileged (regular) user password is\n"
-"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
-"by making it blank or too simple: after all, your files could be the ones\n"
-"at risk.\n"
-"\n"
-"Once you click on \"%s\", you can add other users. Add a user for each one\n"
-"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
-"finished adding users.\n"
-"\n"
-"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
-"that user (bash by default).\n"
-"\n"
-"When you're finished adding users, you'll be asked to choose a user who\n"
-"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click on\n"
-"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
-msgstr ""
-"GNU/Linux ist ein Mehrbenutzer-System, das bedeutet konkret jedes\n"
-"Benutzerkennzeichen hat eigene Präferenzen (Grafische Umgebung,\n"
-"Programmeinstellungen, etc.), sowie ein eigenes Heim-Verzeichnis, in dem\n"
-"diese Einstellungen gespeichert werden. Falls Sie mehr wissen wollen,\n"
-"können Sie im „Starter Handbuch“ nachsehen. Sie können mehrere normale\n"
-"Benutzerkonten einrichten, im Gegensatz zum „privilegierten“ Kennzeichen:\n"
-"»root«, das einmalig ist. Im Gegensatz zu »root« können diese normalen\n"
-"Benutzer jedoch nur ihre eigenen Dateien und Konfigurationen verändern. Sie\n"
-"können sogar mehrere Benutzerkennzeichen pro Person einrichten, denen Sie\n"
-"Zugang zu Ihrem GNU/Linux-System gewähren wollen. Erstellen Sie sich ein\n"
-"eigenes Benutzerkennzeichen, auch wenn Sie der einzige Anwender sind, der\n"
-"diesen Rechner nutzt. Sie sollten nicht ständig mit dem privilegierten\n"
-"Kennzeichen arbeiten! Das ist ein hohes Sicherheitsrisiko! Wenn Sie einen\n"
-"schweren Fehler als einfacher Benutzer machen, dann können Sie maximal\n"
-"Daten verlieren, jedoch nicht Ihr gesamtes System unbrauchbar machen.\n"
-"\n"
-"Zuerst geben Sie bitte einen normalen Namen an. Das muss nicht\n"
-"notwendigerweise Ihr richtiger Name sein. „DrakX“ wird das erste Wort, das\n"
-"Sie eingegeben haben, in das Feld „%s“ eintragen. Dies ist der Name, den\n"
-"Sie zum Anmelden für dieses Kennzeichen benötigen. Natürlich können Sie ihn\n"
-"hier nach Belieben verändern. Dann geben Sie Ihrem Konto ein Passwort. Für\n"
-"ein Benutzerkennzeichen ist dieses zwar nicht von so herausragender\n"
-"Bedeutung wie das für »root«, doch Sie sollten trotzdem etwas Sorgfalt\n"
-"walten lassen. Immerhin sind es Ihre Daten ...\n"
-"\n"
-"Klicken Sie auf „%s“, um das Kennzeichen zu erstellen. Anschließend können\n"
-"Sie direkt weitere Benutzer hinzufügen. Wenn Sie alle Kennzeichen erstellt\n"
-"haben, klicken Sie auf „%s“.\n"
-"\n"
-"Durch Anwahl der Schaltfläche „%s“ haben Sie auch die Möglichkeit, die\n"
-"Standard-Shell dieses Benutzers ändern (normalerweise ist dies die „Bash“).\n"
-"\n"
-"Wenn Sie alle Kennzeichen erstellt haben, die Sie nutzen wollen, wird Ihnen\n"
-"die Möglichkeit eröffnet, ein Kennzeichen automatisch beim\n"
-"Betriebssystemstart angemeldet zu bekommen. Falls Sie sich für diese\n"
-"Funktionalität entscheiden (und wenig Wert auf Sicherheit legen) wählen Sie\n"
-"einfach die gewünschte Arbeitsumgebung und das Kennzeichen aus. Bestätigen\n"
-"Sie Ihre Auswahl durch betätigen der Schaltfläche „%s“. Andernfalls löschen\n"
-"Sie einfach die Markierung des Punktes „%s“."
-
-#: help.pm:52 printer/printerdrake.pm:1866 printer/printerdrake.pm:1987
-#: standalone/draksambashare:60
-#, c-format
-msgid "User name"
-msgstr "Benutzername"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: help.pm:52 help.pm:432 help.pm:682 install_interactive.pm:176
-#: install_steps_gtk.pm:237 install_steps_gtk.pm:682 interactive.pm:436
-#: interactive/newt.pm:321 network/thirdparty.pm:385
-#: printer/printerdrake.pm:3884 standalone/drakTermServ:412
-#: standalone/drakbackup:4102 standalone/drakbackup:4196
-#: standalone/drakbackup:4213 standalone/drakbackup:4231 ugtk2.pm:490
-#, c-format
-msgid "Next"
-msgstr "Weiter"
-
-#: help.pm:52
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Möchten Sie diese Möglichkeit nutzen?"
-
-#: help.pm:55
-#, c-format
-msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Sie erhalten die Liste, der auf Ihren Festplatten gefundenen GNU/Linux\n"
-"Partitionen. Sie können die Auswahl des Assistenten beibehalten - sie\n"
-"sollte normalerweise Ihren Bedürfnissen entsprechen. Falls Sie es vorziehen\n"
-"die Einhängpunkte selbst zu definieren, denken Sie bitte daran, dass Sie\n"
-"zumindest eine Verzeichnisbaumwurzel („/“) benötigen. Wählen Sie die\n"
-"Partitionen nicht zu klein, da Sie sonst nicht genügend Programme\n"
-"installieren können. Wenn Sie Ihre persönlichen Daten auf einer eigenen\n"
-"Partition halten wollen, legen Sie sich eine Partition namens „/home“ an.\n"
-"\n"
-"Die Partitionen werden folgendermaßen aufgelistet: „Name“, „Kapazität“.\n"
-"\n"
-"„Name“ hat folgende Struktur: „Festplattentyp“, „Festplattennummer“,\n"
-"„Partitionsnummer“ (etwa „hda1“).\n"
-"\n"
-"„Festplattentyp“ ist „hd“, falls Ihre Platte eine IDE/ATAPI-Platte ist, und\n"
-"„sd“, wenn es sich um eine SCSI-Platte handelt.\n"
-"\n"
-"„Festplattennummer“ ist immer der Buchstabe hinter dem Festplattentyp. Bei\n"
-"IDE-Platten bedeutet:\n"
-"\n"
-" * „a“ bedeutet „Master-Platte am primären IDE-Controller“;\n"
-"\n"
-" * „b“ bedeutet „Slave-Platte am primären IDE-Controller“;\n"
-"\n"
-" * „c“ bedeutet „Master-Platte am sekundären IDE-Controller“;\n"
-"\n"
-" * „d“ bedeutet „Slave-Platte am sekundären IDE-Controller“;\n"
-"\n"
-"Bei SCSI-Platten steht „a“ für „niedrigste SCSI-ID“, „b“ für\n"
-"„zweitniedrigste SCSI-ID“, etc."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:86
+#: interactive.pm:125 interactive.pm:538 interactive/curses.pm:217
+#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
+#: interactive/stdio.pm:142 interactive/stdio.pm:143 ugtk2.pm:410 ugtk2.pm:508
+#: ugtk2.pm:788 ugtk2.pm:811
#, c-format
-msgid ""
-"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-"Die Mandriva Linux-Distribution wird auf mehreren CD-ROMs ausgeliefert. Es\n"
-"kann daher vorkommen, dass DrakX Pakete von anderen, als der\n"
-"Installations-CD-ROM installieren will. In diesem Fall wird es die aktuelle\n"
-"CD auswerfen und nach einer anderen fragen. Wenn Sie dieses CD nicht haben,\n"
-"klicken Sie einfach auf „%s“. Die entsprechenden Pakete werden in dem Fall\n"
-"nicht installiert."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:93
-#, c-format
-msgid ""
-"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandriva Linux, and to make "
-"it\n"
-"simpler to manage, they have been placed into groups of similar\n"
-"applications.\n"
-"\n"
-"Mandriva Linux sorts package groups in four categories. You can mix and\n"
-"match applications from the various categories, so a ``Workstation''\n"
-"installation can still have applications from the ``Server'' category\n"
-"installed.\n"
-"\n"
-" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
-"more of the groups in the workstation category.\n"
-"\n"
-" * \"%s\": if you plan on using your machine for programming, select the\n"
-"appropriate groups from that category. The special \"LSB\" group will\n"
-"configure your system so that it complies as much as possible with the\n"
-"Linux Standard Base specifications.\n"
-"\n"
-" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
-"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
-"of the system. However, if you do not select the \"LSB\" group you will\n"
-"still have a system which is nearly 100%% LSB-compliant.\n"
-"\n"
-" * \"%s\": if your machine is intended to be a server, select which of the\n"
-"more common services you wish to install on your machine.\n"
-"\n"
-" * \"%s\": this is where you will choose your preferred graphical\n"
-"environment. At least one must be selected if you want to have a graphical\n"
-"interface available.\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group.\n"
-"\n"
-"You can check the \"%s\" box, which is useful if you're familiar with the\n"
-"packages being offered or if you want to have total control over what will\n"
-"be installed.\n"
-"\n"
-"If you start the installation in \"%s\" mode, you can deselect all groups\n"
-"and prevent the installation of any new packages. This is useful for\n"
-"repairing or updating an existing system.\n"
-"\n"
-"If you deselect all groups when performing a regular installation (as\n"
-"opposed to an upgrade), a dialog will pop up suggesting different options\n"
-"for a minimal installation:\n"
-"\n"
-" * \"%s\": install the minimum number of packages possible to have a\n"
-"working graphical desktop.\n"
-"\n"
-" * \"%s\": installs the base system plus basic utilities and their\n"
-"documentation. This installation is suitable for setting up a server.\n"
-"\n"
-" * \"%s\": will install the absolute minimum number of packages necessary\n"
-"to get a working Linux system. With this installation you will only have a\n"
-"command-line interface. The total size of this installation is about 65\n"
-"megabytes."
-msgstr ""
-"Nun ist es Zeit sich zu entscheiden, welche Programme Sie auf Ihrem Rechner\n"
-"installieren wollen. Es gibt tausende von Paketen für Mandriva Linux, und\n"
-"Sie müssen sie nicht alle auswendig kennen.\n"
-"\n"
-"Die Pakete sind nach ihrer Verwendung in vier Kategorien eingeteilt. Sie\n"
-"können Pakete aus verschiedenen Kategorien nach Belieben mischen, sodass\n"
-"beispielsweise eine „Workstation“-Installation auch Bestandteile einer\n"
-"„Server“-Installation aufweisen kann.\n"
-"\n"
-" * „%s“: Falls Ihr Rechner als Arbeitsplatzrechner verwendet werden soll,\n"
-"markieren Sie eine oder mehrere Gruppen.\n"
-"\n"
-" * „%s“: Falls Sie mit Ihrem Rechner programmieren wollen, sollten Sie\n"
-"diese Gruppe markieren. Die spezielle Gruppe „LSB“ wird Ihr System\n"
-"möglichst eng an den Vorgaben der Linux Standard Base ausrichten.\n"
-"\n"
-" Die Auswahl der „LSB“-Gruppe bewirkt auch, dass der Kernel „2.4“\n"
-"anstelle des standardmäßigen Kernel „2.6“ installiert wird, um die 100%%ige\n"
-"Einhaltung der-LSB-Bedingungen zu garantieren. Allerdings erhalten Sie auch\n"
-"ohne die Auswahl der „LSB“-Gruppe ein nahezu 100%%ig LSB-konformes System.\n"
-"\n"
-" * „%s“: Wenn Ihre Maschine ein Server werden soll, können Sie hier die\n"
-"wichtigsten Dienste auswählen, die auf Ihren Rechner installiert werden\n"
-"sollen.\n"
-"\n"
-" * „%s“: Wählen Sie hier Ihre bevorzugte grafische Arbeitsoberfläche. Wenn\n"
-"Sie eine grafische Oberfläche verwenden wollen, so müssen Sie hier\n"
-"zumindest eine Gruppe auswählen.\n"
-"\n"
-"Wenn Sie die Maus über eine Gruppe bewegen, erhalten Sie einen kurzen\n"
-"erklärenden Text über die Gruppe.\n"
-"\n"
-"Sie können auch die „%s“ markieren. Das macht Sinn, wenn Sie die Pakete\n"
-"genau kennen oder wenn Sie volle Kontrolle darüber haben wollen, was\n"
-"installiert werden soll.\n"
-"\n"
-"Haben Sie die Installation als „%s“ gestartet, können Sie die Markierungen\n"
-"aller Gruppen entfernen, um die Installation neuer Pakete zu vermeiden.\n"
-"Hierdurch werden nur bereits installierte Pakete aktualisiert oder\n"
-"repariert.\n"
-"\n"
-"Wenn Sie bei einer normalen Installation alle Gruppen de-markieren\n"
-"erscheint ein Dialog, der Ihnen verschiedene Optionen für eine\n"
-"Minimal-Installation anbietet:\n"
-"\n"
-" * „%s“ Installiert eine rudimentäre grafische Oberfläche;\n"
-"\n"
-" * „%s“ Installiert das Basissystem zuzüglich grundlegender Werkzeuge\n"
-"inklusive deren Dokumentation. Dies ist die sinnvollste Wahl für eine\n"
-"Serverinstallation.\n"
-"\n"
-" * „%s“ Sie erhalten eine komplett „nackte“ 65MB große\n"
-"GNU/Linux-Distribution. Es versteht sich von selbst, dass das nur eine\n"
-"Kommandozeileninstallation sein kann."
-
-#: help.pm:147 share/compssUsers.pl:24
-#, c-format
-msgid "Workstation"
-msgstr "Arbeitsplatzrechner"
-
-#: help.pm:147 share/compssUsers.pl:65 share/compssUsers.pl:167
-#: share/compssUsers.pl:169
-#, c-format
-msgid "Development"
-msgstr "Entwicklung"
-
-#: help.pm:147 share/compssUsers.pl:145
-#, c-format
-msgid "Graphical Environment"
-msgstr "Grafische Arbeitsoberfläche"
-
-#: help.pm:147 install_steps_gtk.pm:235 install_steps_interactive.pm:623
-#, c-format
-msgid "Individual package selection"
-msgstr "Individuelle Paketauswahl"
-
-#: help.pm:147 help.pm:589
-#, c-format
-msgid "Upgrade"
-msgstr "Aktualisierung"
-
-#: help.pm:147 install_steps_interactive.pm:581
-#, c-format
-msgid "With X"
-msgstr "Mit X"
-
-#: help.pm:147
-#, c-format
-msgid "With basic documentation"
-msgstr "Mit minimaler Dokumentation (Empfohlen)"
-
-#: help.pm:147
-#, c-format
-msgid "Truly minimal install"
-msgstr "Minimal-Installation"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:150
-#, c-format
-msgid ""
-"If you choose to install packages individually, the installer will present\n"
-"a tree containing all packages classified by groups and subgroups. While\n"
-"browsing the tree, you can select entire groups, subgroups, or individual\n"
-"packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description will appear on the\n"
-"right to let you know the purpose of that package.\n"
-"\n"
-"!! If a server package has been selected, either because you specifically\n"
-"chose the individual package or because it was part of a group of packages,\n"
-"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandriva Linux will automatically start any installed\n"
-"services at boot time. Even if they are safe and have no known issues at\n"
-"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandriva Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do "
-"or\n"
-"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
-"the listed services and they will be started automatically at boot time. !!\n"
-"\n"
-"The \"%s\" option is used to disable the warning dialog which appears\n"
-"whenever the installer automatically selects a package to resolve a\n"
-"dependency issue. Some packages depend on others and the installation of\n"
-"one particular package may require the installation of another package. The\n"
-"installer can determine which packages are required to satisfy a dependency\n"
-"to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-"package list created during a previous installation. This is useful if you\n"
-"have a number of machines that you wish to configure identically. Clicking\n"
-"on this icon will ask you to insert the floppy disk created at the end of\n"
-"another installation. See the second tip of the last step on how to create\n"
-"such a floppy."
-msgstr ""
-"Falls Sie sich für die einzelne Paketauswahl entschieden haben erhalten Sie "
-"eine\n"
-"Baumliste aller Pakete, nach Gruppen und Untergruppen klassifiziert. Beim\n"
-"Durchstöbern des Baums können Sie Gruppen, Untergruppen oder einzelne "
-"Pakete\n"
-"auswählen.\n"
-"\n"
-"Wenn Sie ein Paket auswählen, erscheint rechts eine kurze Beschreibung.\n"
-"\n"
-"!! Es kommt vor, dass Server- und Dienst-Pakete angewählt wurden - entweder\n"
-"absichtlich, oder als Paket einer ganzen Gruppe; sollte das der Fall sein,\n"
-"werden Sie nun gefragt, ob Sie diese wirklich installiert haben wollen.\n"
-"Unter Mandriva Linux werden installierte Server und Dienste automatisch "
-"beim\n"
-"Betriebssystemstart gestartet. Selbst wenn zum Zeitpunkt, als die\n"
-"Distribution zusammengestellt wurde, keine Sicherheitslücken oder Fehler in\n"
-"diesen Paketen bekannt waren, ist natürlich nicht auszuschließen, dass\n"
-"später solche Fehler gefunden werden. Sollten Sie also nicht wissen, wovon\n"
-"hier die Rede ist, wählen Sie sicherheitshalber lieber „%s“. Falls Sie mit\n"
-"„%s“ antworten, werden die Dienste und Server installiert und stehen Ihnen\n"
-"nach der Installation standardmäßig zur Verfügung. !!\n"
-"\n"
-"Die Option „%s“ unterdrückt nur die Warnungen, die erscheinen, wenn das\n"
-"Installationsprogramm Pakete automatisch markiert, um Paketabhängigkeiten\n"
-"aufzulösen, wenn Sie ein Paket auswählen. Einige Pakete hängen von der\n"
-"Existenz anderer Pakete ab und die Installation eines Pakets mag die\n"
-"Installation eines anderen voraussetzen. Das Installprogramm ist in der\n"
-"Lage, diese Abhängigkeiten zu erkennen und zu erfüllen.\n"
-"\n"
-"Das kleine Diskettensymbol am unteren Rand der Liste ermöglicht es Ihnen,\n"
-"die während einer vorangegangenen Installation gespeicherte Paketauswahl\n"
-"erneut zu verwenden. Durch Betätigen der Schaltfläche öffnen Sie einen\n"
-"Dialog, der Sie auffordert, die Diskette einzulegen, die die Auswahl der\n"
-"früheren Installation enthält. Um zu erfahren, wie Sie diese Diskette\n"
-"erstellen, lesen Sie bitte den zweiten Tipp des vorangegangenen\n"
-"Installationsschrittes."
-
-#: help.pm:181 help.pm:286 help.pm:314 help.pm:445 install_any.pm:944
-#: interactive.pm:161 modules/interactive.pm:71 standalone/drakbackup:2636
-#: standalone/drakfont:687 standalone/draksec:54 standalone/harddrake2:331
-#: ugtk2.pm:898 wizards.pm:156
-#, c-format
-msgid "No"
-msgstr "Nein"
+msgid "Ok"
+msgstr "OK"
-#: help.pm:181 help.pm:286 help.pm:445 install_any.pm:944 interactive.pm:161
-#: modules/interactive.pm:71 printer/printerdrake.pm:883
-#: printer/printerdrake.pm:898 standalone/drakbackup:2636
-#: standalone/drakfont:685 standalone/draksec:55 standalone/harddrake2:330
-#: ugtk2.pm:898 wizards.pm:156
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ja"
-#: help.pm:181
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Automatische Abhängigkeiten"
-
-#: help.pm:184
-#, c-format
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to set up a new printer. The interface presented in our\n"
-"manual is similar to the one used during installation."
-msgstr ""
-"„%s“: Durch Anwahl der Schaltfläche „%s“ startet den Druckerassistenten.\n"
-"Weitere Informationen zu diesem Assistenten erhalten Sie im Drucker-Kapitel\n"
-"des „Starter Handbuch“. Das dort vorgestellte Programm entspricht dem\n"
-"während der Installation angebotenen."
-
-#: help.pm:187 help.pm:567 help.pm:856 install_steps_gtk.pm:595
-#: standalone/drakbackup:2460 standalone/drakbackup:2464
-#: standalone/drakbackup:2468 standalone/drakbackup:2472
-#: standalone/drakroam:227
-#, c-format
-msgid "Configure"
-msgstr "Konfigurieren"
-
-#: help.pm:190
-#, c-format
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
-"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which are not needed at boot\n"
-"time.\n"
-"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably do not want to start any services which you do not "
-"need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-"Als nächstes können Sie die Dienste auswählen, die während des\n"
-"Betriebssystemstarts aktiviert werden sollen.\n"
-"\n"
-"DrakX listet hier alle Dienste, die nach der aktuellen Installation zum\n"
-"BS-Start zur Verfügung stehen, angezeigt. Lesen Sie diese Liste sorgfältig\n"
-"durch und markieren Sie nur die Dienste, die Sie immer ab dem BS-Start zur\n"
-"Verfügung haben wollen.\n"
-"\n"
-"Wenn Sie einen Dienst anwählen, erhalten Sie eine kurze Erklärung dazu.\n"
-"Wenn Sie nicht sicher sind, ob ein Dienst bzw. Server sinnvoll ist oder\n"
-"nicht, verändern Sie am Besten die voreingestellten Markierungen nicht.\n"
-"\n"
-"!! Sollten Sie Ihren Rechner als Server verwenden wollen, so müssen Sie an\n"
-"dieser Stelle besonders vorsichtig sein: wählen Sie alle Dienste ab, die\n"
-"Sie nicht benötigen. Denken Sie daran, dass etliche Dienste eine\n"
-"potentielle Einbruchstelle in das System von außen darstellen, wenn diese\n"
-"im Serverbetrieb laufen. Also, nur die Dienste einschalten, die Sie\n"
-"wirklich brauchen! !!"
-
-#: help.pm:207
-#, c-format
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
-"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
-msgstr ""
-"GNU/Linux arbeitet mit GMT (Greenwich Mean Time) und übersetzt diese anhand\n"
-"der Zeitzone in Ihre lokale Zeit. Falls die Uhr Ihres Computers auf die\n"
-"lokale Zeit eingestellt ist, sollten Sie die Option „%s“ deaktivieren.\n"
-"Dadurch wird GNU/Linux mitgeteilt, dass sich die Systemzeit und die\n"
-"Hardware-Uhr in der gleichen Zeitzone befinden. Dieses Verfahren ist\n"
-"notwendig, wenn Sie auf Ihrem Computer noch ein weiteres Betriebssystem per\n"
-"Dual-Boot betreiben.\n"
-"\n"
-"Die Verwendung der Option „%s“ reguliert Ihre Uhr, indem sie Verbindung mit\n"
-"einem Zeitserver im Internet aufnimmt. Wählen Sie aus der Liste einen\n"
-"Server in Ihrer Nähe. Damit die funktioniert benötigen Sie eine ständige\n"
-"Internetverbindung. Mit dieser Option installieren Sie einen Time-Server,\n"
-"der von weiteren Maschinen Ihres lokalen Netzwerks genutzt werden kann."
-
-#: help.pm:218 install_steps_interactive.pm:859
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Hardware Uhr gestellt auf GMT"
-
-#: help.pm:218
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Automatische Zeit-Synchronisation (durch NTP)"
-
-#: help.pm:221
-#, c-format
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-"Grafikkarte\n"
-"\n"
-" DrakX erkennt normalerweise automatisch Ihre Grafikkarte und richtet sie\n"
-"entsprechend ein. Sollten dabei Probleme auftreten, können Sie in der hier\n"
-"aufgeführten Liste Ihr Modell auswählen.\n"
-"\n"
-" Falls für Ihre Karte verschiedene Server zur Verfügung stehen, etwa mit\n"
-"und ohne 3D-Beschleunigung, werden Sie gebeten, den zu wählen, der Ihren\n"
-"Bedürfnissen am besten entspricht."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:232
-#, c-format
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"X (das X Window System) ist das Herz der grafischen Benutzeroberfläche von\n"
-"GNU/Linux. Es bildet die Grundlage für die Vielzahl grafischer\n"
-"Benutzerumgebungen, die Mandriva Linux Ihnen anbietet (wie etwa KDE, GNOME,\n"
-"AfterStep oder WindowMaker).\n"
-"\n"
-"Sie erhalten eine Liste möglicher Parameter, mit deren Hilfe Sie die\n"
-"Grafikausgabe ändern können:\n"
-"\n"
-"Grafikkarte\n"
-"\n"
-" DrakX erkennt normalerweise automatisch Ihre Grafikkarte und richtet sie\n"
-"entsprechend ein. Sollten dabei Probleme auftreten, können Sie in der hier\n"
-"aufgeführten Liste Ihr Modell auswählen.\n"
-"\n"
-" Falls für Ihre Karte verschiedene Server zur Verfügung stehen, etwa mit\n"
-"und ohne 3D-Beschleunigung, werden Sie gebeten, den zu wählen, der Ihren\n"
-"Bedürfnissen am besten entspricht.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" DrakX erkennt normalerweise automatisch Ihren Monitor. Sollten dabei\n"
-"Probleme auftreten, können Sie in der hier aufgeführten Liste Ihr Modell\n"
-"auswählen.\n"
-"\n"
-"\n"
-"\n"
-"Auflösung\n"
-"\n"
-" Sie können hier Auflösung und Farbtiefe für Ihre Hardware wählen.\n"
-"Entscheiden Sie sich, welche Variante Ihren Wünschen am ehesten entspricht\n"
-"(Sie können diese Angaben natürlich nach der Installation noch ändern).\n"
-"Anhand des abgebildeten Monitors können Sie sich einen sofortigen Eindruck\n"
-"bilden.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Je nach Hardware kann es sein, dass dieser Eintrag nicht erscheint.\n"
-"\n"
-" DrakX versucht eine Testbild mit denen von Ihnen gewünschten\n"
-"Einstellungen zu öffnen. Falls Sie während des Tests einen Dialog sehen, in\n"
-"dem Sie gefragt werden, ob sie die getroffenen Einstellungen behalten\n"
-"wollen, antworten Sie mit „%s“, damit DrakX mit dem nächsten\n"
-"Installationsschritt fortfährt. Sollten Sie die Nachricht nicht sehen,\n"
-"bedeutet das, dass eine oder mehrere getroffene Einstellungen nicht korrekt\n"
-"sind. Nach 12 Sekunden sollten Sie wieder das Installationsmenü sehen. Sie\n"
-"können nun die Einstellungen ändern, bis Sie das Testbild sehen.\n"
-"\n"
-"\n"
-"\n"
-"Optionen\n"
-"\n"
-" Sie können direkt bei Betriebssystemstart die grafische Umgebung\n"
-"aktivieren. Durch Betätigen der Schaltfläche „%s“ wird in eine reine\n"
-"Textumgebung gestartet. Das ist sinnvoll für Server oder wenn Sie bei dem\n"
-"Versuch die grafische Umgebung zu konfigurieren erfolglos waren."
-
-#: help.pm:289
-#, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
-msgstr ""
-"Monitor\n"
-"\n"
-" DrakX erkennt normalerweise automatisch Ihren Monitor. Sollten dabei\n"
-"Probleme auftreten, können Sie in der hier aufgeführten Liste Ihr Modell\n"
-"auswählen."
-
-#: help.pm:296
-#, c-format
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
-msgstr ""
-"Auflösung\n"
-"\n"
-" Sie können hier Auflösung und Farbtiefe für Ihre Hardware wählen.\n"
-"Entscheiden Sie sich, welche Variante Ihren Wünschen am ehesten entspricht\n"
-"(Sie können diese Angaben natürlich nach der Installation noch ändern). Sie\n"
-"können sich einen Eindruck anhand des abgebildeten Monitors bilden."
-
-#: help.pm:304
-#, c-format
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-"Falls für Ihre Karte verschiedene Server zur Verfügung stehen, etwa mit und\n"
-"ohne 3D-Beschleunigung, werden Sie gebeten, den zu wählen, der Ihren\n"
-"Bedürfnissen am besten entspricht."
-
-#: help.pm:309
-#, c-format
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"Optionen\n"
-"\n"
-" Sie können direkt bei Betriebssystemstart die grafische Umgebung\n"
-"aktivieren. Durch Betätigen der Schaltfläche „%s“ wird in eine reine\n"
-"Textumgebung gestartet. Das ist sinnvoll für Server oder wenn Sie bei dem\n"
-"Versuch die grafische Umgebung zu konfigurieren erfolglos waren."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:317
-#, c-format
-msgid ""
-"You now need to decide where you want to install the Mandriva Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandriva Linux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandriva Linux system, "
-"choose\n"
-"this option. Be careful, because you will not be able to undo this "
-"operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-"Sie müssen nun entscheiden, wo auf Ihrer Festplatte Ihr Mandriva Linux\n"
-"System installiert werden soll. Sofern alles leer ist bzw. ein\n"
-"Betriebssystem alles belegt, muss die Festplatte neu partitioniert werden.\n"
-"Prinzipiell besteht das Partitionieren der Festplatte darin, den\n"
-"Plattenplatz so aufzuteilen, dass Ihr Mandriva Linux darauf installiert\n"
-"werden kann.\n"
-"\n"
-"Da dieser Schritt normalerweise irreversibel ist und auch zu Datenverlusten\n"
-"führen kann, haben manche unerfahrenen Benutzer Hemmungen, diesen Schritt\n"
-"auszuführen. Glücklicherweise enthält DrakX einen Assistenten, der den\n"
-"Prozess sehr vereinfacht. Lesen Sie dennoch vor Beginn im Handbuch die\n"
-"entsprechenden Passagen und lassen Sie sich Zeit mit der Entscheidung.\n"
-"\n"
-"Abhängig vom aktuellen Zustand Ihrer Festplatte haben Sie verschiedene\n"
-"Alternativen:\n"
-"\n"
-" * „%s“: Dies führt einfach dazu, dass Ihre leere(n) Festplatte(n)\n"
-"automatisch partitioniert werden; Sie müssen sich also um nichts weiter\n"
-"kümmern.\n"
-"\n"
-" * „%s“: Der Assistent hat eine oder mehrere existierende Linux-Partitionen\n"
-"auf Ihrer Platte gefunden. Wählen Sie diese Schaltfläche, falls Sie sie\n"
-"behalten wollen. Sie werden dann gebeten, die Einhängpunkte der Partitionen\n"
-"anzugeben. Als Vorgabe erhalten Sie die Einhängpunkte der gefundenen\n"
-"Distribution, normalerweise ist es nicht nötig diese zu ändern.\n"
-"\n"
-" * „%s“: Falls der gesamte Plattenplatz aktuell für Microsoft Windows™\n"
-"verschwendet ist, müssen Sie für GNU/Linux Platz schaffen. Um dies zu\n"
-"erreichen, können Sie entweder Ihre Microsoft Windows™ Partition(en)\n"
-"samt Daten löschen (siehe „Komplette Platte löschen“) oder Ihre Microsoft\n"
-"Windows NTFS oder FAT Partition verkleinern. Letzteres geht ohne\n"
-"Datenverlust, vorausgesetzt Sie haben ihre Windows Partition(en) vorher\n"
-"defragmentiert. Dennoch sollten Sie vor diesem Schritt eine Sicherungskopie\n"
-"Ihrer Daten auf einem anderem Medium als der zu verändernden Festplatte\n"
-"vornehmen. Sie sollten diese Variante wählen, falls Sie beide\n"
-"Betriebssysteme (Microsoft Windows und Mandriva Linux) nebeneinander nutzen\n"
-"wollen.\n"
-"\n"
-" Bevor Sie sich für diese Variante entscheiden, sei hier noch einmal\n"
-"betont, dass das bedeutet, Sie haben weniger Platz für Microsoft Windows\n"
-"als momentan.\n"
-"\n"
-" * „%s“: Falls Sie alle Daten Ihrer Platte verlieren, und sie durch Ihr\n"
-"neues Mandriva Linux System ersetzen wollen, wählen Sie diese Schaltfläche.\n"
-"Beachten Sie, dass dieser Schritt nicht rückgängig gemacht werden kann.\n"
-"\n"
-" !! Wenn Sie diese Variante wählen, werden alle Ihre Daten auf der Platte\n"
-"gelöscht! !!\n"
-"\n"
-" * „%s“: Diese Option erscheint, wenn der gesamte Platz von Microsoft\n"
-"Windows eingenommen wird. Bei der Auswahl der Option wird einfach der\n"
-"gesamte Inhalt der Platte gelöscht und neu partitioniert.\n"
-"\n"
-" !! Wenn Sie diese Variante wählen, werden alle Ihre Daten auf der Platte\n"
-"gelöscht! !!\n"
-"\n"
-" * „%s“: Wenn Sie Ihre Festplatte selbst von Hand partitionieren wollen,\n"
-"dann können Sie diese Option wählen. Seien Sie bitte sehr sorgfältig, wenn\n"
-"Sie diese Lösung wählen, da Sie zwar alle möglichen Einstellungen\n"
-"vornehmen, aber gleichzeitig auch sehr leicht Daten verlieren können. Diese\n"
-"Option ist nur geeignet, wenn Sie wissen, was Sie tun. Um zu erfahren, wie\n"
-"Sie DiskDrake verwenden können, lesen Sie bitte das Kapitel „Ihre\n"
-"Partitionen verwalten“ im „Starter Handbuch“."
-
-#: help.pm:375 install_interactive.pm:96
-#, c-format
-msgid "Use free space"
-msgstr "Freien Platz verwenden"
-
-#: help.pm:375
-#, c-format
-msgid "Use existing partition"
-msgstr "Verwende existierende Partition(en)"
-
-#: help.pm:375 install_interactive.pm:138
-#, c-format
-msgid "Use the free space on the Microsoft Windows® partition"
-msgstr "Den freien Platz der Windows-Partition verwenden"
-
-#: help.pm:375
-#, c-format
-msgid "Erase entire disk"
-msgstr "Komplette Platte löschen"
-
-#: help.pm:375
-#, c-format
-msgid "Remove Windows"
-msgstr "Windows™ löschen"
-
-#: help.pm:375 install_interactive.pm:233
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Benutzerdefinierte Partitionierung"
-
-#: help.pm:378
-#, c-format
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
-"to remove the installation media (CD-ROM or floppy). The first thing you\n"
-"should see after your computer has finished doing its hardware tests is the\n"
-"boot-loader menu, giving you the choice of which operating system to start.\n"
-"\n"
-"The \"%s\" button shows two more buttons to:\n"
-"\n"
-" * \"%s\": enables you to create an installation floppy disk which will\n"
-"automatically perform a whole installation without the help of an operator,\n"
-"similar to the installation you've just configured.\n"
-"\n"
-" Note that two different options are available after clicking on that\n"
-"button:\n"
-"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
-"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing on a number of similar\n"
-"machines. See the Auto install section on our web site for more\n"
-"information.\n"
-"\n"
-" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
-"To use this selection with another installation, insert the floppy and\n"
-"start the installation. At the prompt, press the [F1] key, type >>linux\n"
-"defcfg=\"floppy\"<< and press the [Enter] key.\n"
-"\n"
-"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
-"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
-"/dev/fd0\"."
-msgstr ""
-"Nun ist es soweit, die Installation ist abgeschlossen und Ihr neues\n"
-"Betriebssystem sollte einsatzbereit sein. Klicken Sie nur noch auf „%s“ und\n"
-"das System wird neu gestartet. Vergessen Sie nicht, vorher das\n"
-"Installationsmedium (CD oder Diskette) zu entfernen. Das erste, was Sie bei\n"
-"dem Neustart nach dem Hardwaretest Ihres Computers sehen, ist das\n"
-"Auswahlmenü Ihres Bootloaders, aus dem Sie das zu startende Betriebssystems\n"
-"auswählen können.\n"
-"\n"
-"Die Schaltfläche „%s“ liefert zwei weitere Schaltflächen:\n"
-"\n"
-" * „%s“: Hiermit können Sie eine Installationsdiskette erstellen, mit deren\n"
-"Hilfe Sie eine identische automatische Installation ohne Interaktion eines\n"
-"Administrators durchzuführen können.\n"
-"\n"
-" Es gibt zwei verschiedene Alternativen, nachdem Sie diese Schaltfläche\n"
-"aktiviert haben:\n"
-"\n"
-" * „%s“: Diese Installation ist nur teilweise automatisch, da der\n"
-"Partitionierungsschritt (aber nur dieser!) immer noch interaktiv vonstatten\n"
-"geht.\n"
-"\n"
-" * „%s“: Vollautomatische Installation: Die Festplatte wird vollständig\n"
-"reorganisiert. Alle darauf vorhandenen Daten gehen verloren!\n"
-"\n"
-" Diese Funktion ist besonders nützlich, wenn man eine Menge von\n"
-"identischer Rechner einrichten will. Weitere Informationen erhalten Sie\n"
-"auch auf der Seite Auto install\n"
-"\n"
-" * „%s“:(*) Sie speichern damit die Paketauswahl, die Sie vorher getroffen\n"
-"haben. Wenn Sie später eine erneute Installation vornehmen wollen, legen\n"
-"Sie einfach die Diskette ins Laufwerk und starten Sie die Installation\n"
-"mittels [F1] an der ersten Eingabeaufforderung. Geben Sie dann »linux\n"
-"defcfg=\"floppy\"« ein.\n"
-"\n"
-"(*) Sie benötigen eine FAT formatierte Diskette (Mittels „mformat a:“ oder\n"
-"„fdformat /dev/fd0“, gefolgt von „mkfs.vfat /dev/fd0“ können Sie unter\n"
-"GNU/Linux eine solche erstellen)."
-
-#: help.pm:410
-#, c-format
-msgid "Generate auto-install floppy"
-msgstr "Erstellen einer Autoinstallations-Diskette"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Replay"
-msgstr "Erneut abspielen"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Automated"
-msgstr "Automatisiert"
-
-#: help.pm:410 install_steps_interactive.pm:1317
-#, c-format
-msgid "Save packages selection"
-msgstr "Paketauswahl speichern"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:413
-#, c-format
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
-"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
-"reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"will not be able to recover it.\n"
-"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
-"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandriva Linux operating system installation.\n"
-"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-"Sie erhalten hier die Möglichkeit bereits existierende Partitionen neu zu\n"
-"formatieren, um die darauf vorhandenen Daten zu löschen. Markieren Sie\n"
-"diese einfach ebenfalls in der Liste.\n"
-"\n"
-"Es sei angemerkt, dass nicht alle Partitionen neu formatiert werden müssen.\n"
-"Sie sollten normalerweise nur die Partitionen neu formatieren, die\n"
-"Systemdateien, jedoch keine Privatdaten enthalten (etwa „/“, „/usr“ oder\n"
-"„/var“). Partitionen wie etwa „/home“ sollten Sie normalerweise nicht neu\n"
-"formatieren.\n"
-"\n"
-"Seien Sie sorgfältig bei der Auswahl der Partitionen. Nach dem Formatieren\n"
-"sind alle zuvor darauf existierenden Daten unwiederbringlich verloren.\n"
-"\n"
-"Wenn Sie alle Einstellungen vorgenommen haben, betätigen Sie die\n"
-"Schaltfläche „%s“, um mit dem Formatieren der Partitionen zu beginnen.\n"
-"\n"
-"Betätigen Sie „%s“, wenn Sie eine andere Partition für Ihr neues\n"
-"Mandriva Linux vorgesehen haben.\n"
-"\n"
-"Betätigen Sie die Schaltfläche „%s“, falls Sie Partitionen auf defekte\n"
-"Blöcke untersuchen wollen."
-
-#: help.pm:432 install_steps_gtk.pm:392 interactive.pm:437
-#: interactive/newt.pm:318 printer/printerdrake.pm:3882
-#: standalone/drakTermServ:391 standalone/drakbackup:4065
-#: standalone/drakbackup:4101 standalone/drakbackup:4212
-#: standalone/drakbackup:4227 ugtk2.pm:488
-#, c-format
-msgid "Previous"
-msgstr "Zurück"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:435
-#, c-format
-msgid ""
-"By the time you install Mandriva Linux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-"Es ist sehr wahrscheinlich, dass zum Zeitpunkt Ihrer Mandriva Linux\n"
-"Installation bereits einige Pakete aktualisiert wurden, etwa da noch Fehler\n"
-"entdeckt und beseitigt wurden oder da in Paketen Sicherheitslücken entdeckt\n"
-"wurden, für die bereits Lösungen existieren. Um von diesen aktualisierten\n"
-"Paketen Gebrauch zu machen, wird Ihnen nun angeboten, diese aus dem\n"
-"Internet nachzuladen. Betätigen Sie die Schaltfläche „%s“, wenn Sie einen\n"
-"Internetzugang haben, um die Pakete zu installieren, andernfalls betätigen\n"
-"Sie die Schaltfläche „%s“. Sie können diese Pakete natürlich auch jederzeit\n"
-"nach der Installation noch installieren.\n"
-"\n"
-"Betätigen der Schaltfläche „%s“ zeigt Ihnen eine Liste von Servern, von\n"
-"denen Sie die Aktualisierungen herunterladen können. Wählen Sie einen in\n"
-"Ihrer Nähe. Sie erhalten dann einen Paketauswahldialog: Kontrollieren Sie\n"
-"die Auswahl und bestätigen Sie diese durch Betätigen von „%s“. Die Pakete\n"
-"werden nun angefordert und installiert. Sollten Sie das nicht wünschen,\n"
-"betätigen Sie einfach die Schaltfläche „%s“."
-
-#: help.pm:445 help.pm:589 install_steps_gtk.pm:391
-#: install_steps_interactive.pm:132
-#, c-format
-msgid "Install"
-msgstr "Installation"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:448
-#, c-format
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
-"\n"
-"If you do not know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandriva Linux\n"
-"Control Center.\n"
-"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-"Nun ist es an der Zeit, mittels DrakX die gewünschte Sicherheitsebene für\n"
-"Ihr System festzulegen. Als Faustregel sollte hier dienen: Je zugänglicher\n"
-"die Maschine ist und je kritischer die auf ihr gesicherten Daten sind,\n"
-"desto höher sollte die Sicherheitsebene sein. Andererseits geht die\n"
-"gewonnene Sicherheit zulasten der Benutzerfreundlichkeit und Einfachheit.\n"
-"\n"
-"Sollten Sie sich an dieser Stelle nicht sicher sein, so behalten Sie die\n"
-"Standardeinstellung bei. Sie können die Ebene später noch mittels draksec\n"
-"im Mandriva Linux Control Center anpassen.\n"
-"\n"
-"Das Feld „%s“ dient dazu, dem System mitzuteilen, wer für die Sicherheit\n"
-"dieses Rechners verantwortlich ist. An dieses Kennzeichen/diese E-Mail\n"
-"Adresse werden sicherheitsrelevante Informationen per E-Mail versandt."
-
-#: help.pm:459
-#, c-format
-msgid "Security Administrator"
-msgstr "Sicherheitsadministrator:"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:462
-#, c-format
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandriva Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"%s\": this option deletes all partitions on the selected hard drive\n"
-"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
-"partitions in the free space of your hard drive\n"
-"\n"
-"\"%s\": gives access to additional features:\n"
-"\n"
-" * \"%s\": saves the partition table to a floppy. Useful for later\n"
-"partition-table recovery if necessary. It is strongly recommended that you\n"
-"perform this step.\n"
-"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
-"\n"
-" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it does not always\n"
-"work.\n"
-"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
-"\n"
-" * \"%s\": un-checking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
-"\n"
-" * \"%s\": use this option if you wish to use a wizard to partition your\n"
-"hard drive. This is recommended if you do not have a good understanding of\n"
-"partitioning.\n"
-"\n"
-" * \"%s\": use this option to cancel your changes.\n"
-"\n"
-" * \"%s\": allows additional actions on partitions (type, options, format)\n"
-"and gives more information about the hard drive.\n"
-"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"When defining the size of a partition, you can finely set the partition\n"
-"size by using the Arrow keys of your keyboard.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and the [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
-"\n"
-" * Ctrl-d to delete a partition\n"
-"\n"
-" * Ctrl-m to set the mount point\n"
-"\n"
-"To get information about the different file system types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Sie müssen nun entscheiden, auf welche(n) Partition(en) Ihr neues Mandriva\n"
-"Linux System installiert werden soll. Falls bereits Partitionen existieren\n"
-"(etwa von einer früheren Installation von GNU/Linux oder durch das Erzeugen\n"
-"mit einem anderen Partitionierungswerkzeug), können Sie diese verwenden.\n"
-"Anderenfalls müssen Sie Partitionen definieren.\n"
-"\n"
-"Um Partitionen zu erzeugen müssen Sie erst eine Festplatte wählen. Sie\n"
-"können die Platte wählen in dem Sie „hda“ für die erste IDE-Platte wählen,\n"
-"„sda“ für die erste SCSI-Platte, usw.\n"
-"\n"
-"Um die gewählte Platte zu partitionieren stehen folgende Möglichkeiten zur\n"
-"Verfügung:\n"
-"\n"
-" * „%s“: Betätigen dieser Schaltfläche löscht alle Partitionen auf der\n"
-"markierten Festplatte.\n"
-"\n"
-" * „%s“: Dieser Punkt aktiviert die automatische ext3- und\n"
-"Swap-Partitionen-Erstellung im ungenutzten Bereich Ihrer Festplatte.\n"
-"\n"
-"„%s“: bietet Zugriff auf weitere Möglichkeiten:\n"
-"\n"
-" * „%s“: Sie können hiermit Ihre aktuelle Partitionstabelle auf Diskette\n"
-"speichern.\n"
-"\n"
-" * „%s“: Mit dieser Schaltfläche können Sie eine vorher auf Diskette\n"
-"gesicherte Partitionstabelle wieder herstellen.\n"
-"\n"
-" * „%s“: Sollte Ihre Partitionstabelle zerstört worden sein, können Sie\n"
-"versuchen, mit dieser Schaltfläche eine Restaurierung vorzunehmen. Seien\n"
-"Sie vorsichtig! Es ist nicht unwahrscheinlich, dass dieser Versuch fehl\n"
-"schlägt.\n"
-"\n"
-" * „%s“: Alle Änderungen verwerfen und mit der ursprünglichen\n"
-"Partitionstabelle neu beginnen.\n"
-"\n"
-" * „%s“: Entfernen dieser Markierung führt dazu, dass die Anwender\n"
-"hinterher die Wechselmedien manuell ein- und aushängen müssen.\n"
-"\n"
-" * „%s“: Falls Sie keine Ahnung haben wie Sie die Festplatte partitionieren\n"
-"sollen, wählen Sie diese Schaltfläche. Sie überlassen damit die gesamte\n"
-"Arbeit unserem Assistenten, der mittels „Abra Kadabra“™ Ihre Platte\n"
-"partitioniert.\n"
-"\n"
-" * „%s“: Mit dieser Schaltfläche können Sie alle Einstellungen rückgängig\n"
-"machen.\n"
-"\n"
-" * „%s“: Anbieten bzw. Maskieren von Zusatzmöglichkeiten.\n"
-"\n"
-" * „%s“: Nachdem Sie das Partitionieren Ihrer Festplatte beendet haben,\n"
-"aktivieren Sie diese Schaltfläche, um Ihre Änderungen zu speichern.\n"
-"\n"
-"Wenn Sie die Größe einer Partition festlegen wollen, können Sie die\n"
-"Feineinstellungen mit den Rechts- / Links-Pfeiltasten Ihrer Tastatur\n"
-"vornehmen.\n"
-"\n"
-"Information: Sie können alle Einstellungen per Tastatur vornehmen. Mittels\n"
-"[Tab] und den Hoch-/Runter-Pfeiltasten können Sie sich bewegen.\n"
-"\n"
-"Wenn eine Partition ausgewählt ist, können Sie mittels:\n"
-"\n"
-" * Strg-C - eine neue Partition erstellen (wenn Sie auf einer leeren\n"
-"Partition sind)\n"
-"\n"
-" * Strg-D - die Partition löschen\n"
-"\n"
-" * Strg-M - den Einhängpunkt festlegen.\n"
-"\n"
-"Um mehr Informationen über die verschiedenen Dateisystemtypen zu erhalten,\n"
-"lesen Sie bitte das Kapitel ext2FS in der „Referenz“.\n"
-"\n"
-"Falls Sie die Installation auf einem PPC-Rechner vornehmen, sollten Sie\n"
-"eine mindestens 1MB, große HFS Start-Partition für den\n"
-"Betriebssystemstarter yaboot erstellen. Wenn Sie diese Partition etwas\n"
-"größer dimensionieren, etwa 50MB, haben Sie einen geeigneten Platz, um\n"
-"einen Rettungskern samt RamDisk abzulegen, um in Notfällen starten zu\n"
-"können."
-
-#: help.pm:531
-#, c-format
-msgid "Removable media auto-mounting"
-msgstr "Wechselmedien automatisch einhängen"
-
-#: help.pm:531
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "In den Normal-Modus wechseln"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:534
-#, c-format
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandriva Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Es wurde mehr als eine Windows-Partition gefunden. Wählen Sie bitte, welche\n"
-"Sie verkleinern wollen, um Platz für Ihr neues Mandriva Linux zu schaffen.\n"
-"\n"
-"Die Partitionen werden folgendermaßen aufgelistet: „Linux-Name“,\n"
-"„Windows-Name“, „Kapazität“.\n"
-"\n"
-"„Linux-Name“ hat folgende Struktur: „Festplattentyp“, „Festplattennummer“,\n"
-"„Partitionsnummer“ (etwa „hda1“).\n"
-"\n"
-"„Festplattentyp“ ist „hd“, falls Ihre Platte eine IDE/ATAPI-Platte ist, und\n"
-"„sd“, wenn es sich um eine SCSI-Platte handelt.\n"
-"\n"
-"„Festplattennummer“ ist immer der Buchstabe hinter dem Festplattentyp. Bei\n"
-"IDE-Platten bedeutet:\n"
-"\n"
-" * „a“ ist „Master-Platte am primären IDE-Controller“;\n"
-"\n"
-" * „b“ ist „Slave-Platte am primären IDE-Controller“;\n"
-"\n"
-" * „c“ ist „Master-Platte am sekundären IDE-Controller“;\n"
-"\n"
-" * „d“ ist „Slave-Platte am sekundären IDE-Controller“;\n"
-"\n"
-"Bei SCSI-Platten steht „a“ für „niedrigste SCSI-ID“, „b“ für\n"
-"„zweitniedrigste SCSI-ID“, etc.\n"
-"\n"
-"„Windows-Name“ ist der Buchstabe, den die Partition (vermutlich) unter\n"
-"Windows erhalten würde (die erste Partition der ersten Platte heißt „C:“)."
-
-#: help.pm:565
-#, c-format
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country is not in "
-"the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-"„%s“: Kontrollieren Sie, ob die Auswahl des Staates, in dem Sie sich\n"
-"befinden korrekt ist. Falls nicht, betätigen Sie bitte die Schaltfläche\n"
-"„%s“ und wählen Sie den richtigen. Ist Ihr Staat nicht in der Liste, können\n"
-"Sie über die Schaltfläche „%s“ eine vollständigere Liste erzwingen."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:570
-#, c-format
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandriva Linux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandriva Linux system. Your current "
-"partitioning\n"
-"scheme and user data will not be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandriva Linux version \"8.1\" is not recommended."
-msgstr ""
-"Dieser Schritt wird nur aufgerufen, wenn mindestens eine GNU/Linux\n"
-"Partition auf Ihren Festplatten gefunden wird.\n"
-"\n"
-"DrakX fragt Sie nun nach der gewünschten Installationsart. Sie haben die\n"
-"Wahl zwischen einer Aktualisierung einer bereits vorhandenen\n"
-"Mandriva Linux-Version oder einer kompletten Neuinstallation:\n"
-"\n"
-" * „%s“: Entfernt komplett ältere Versionen von Mandriva Linux, die noch\n"
-"installiert sind - um genau zu sein, können Sie je nach aktuellem Inhalt\n"
-"Ihrer Platte auch einige ältere Linux- oder anderweitige Partitionen\n"
-"unangetastet behalten. Diese Installationsart ist gut, wenn Sie die\n"
-"Partitionseinteilung auf Ihrer Festplatte sowieso ändern oder das benutzte\n"
-"Dateisystem austauschen wollen\n"
-"\n"
-" * „%s“: Mit dieser Variante können Sie eine existierende Mandriva Linux\n"
-"Version aktualisieren. Die Partitionstabellen sowie die persönlichen\n"
-"Verzeichnisse der Anwender bleiben erhalten. Alle anderen\n"
-"Installationsschritte werden wie bei einer Installation ausgeführt.\n"
-"\n"
-"Aktualisierungen von Mandriva Linux „8.1“ oder neueren Systemen sollten\n"
-"problemlos funktionieren. Ältere Versionen von Mandriva Linux sollten Sie\n"
-"nicht zu aktualisieren versuchen."
-
-#: help.pm:592
-#, c-format
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
-"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard do not match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
-"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
-"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-"Entsprechend der ausgewählten Sprache ()versucht DrakX das für Sie passende\n"
-"Tastaturlayout aus.\n"
-"\n"
-"Möglicherweise haben Sie jedoch eine Tastatur, die nicht dieser Einstellung\n"
-"entspricht: wenn Sie beispielsweise in der Schweiz eine deutsche Tastatur\n"
-"verwenden wollen oder wenn Sie in Québec (dem französischsprachigen Teil\n"
-"Kanadas) eine französischsprachige Tastatur besitzen. Wählen Sie einfach\n"
-"ein passendes Layout aus der Liste.\n"
-"\n"
-"Sollten Sie eine andere als die zur gewählten Sprache gehörende Tastatur\n"
-"verwenden wollen, wählen Sie die Schaltfläche „%s“. Sie erhalten dann eine\n"
-"Liste aller unterstützten Tastaturen.\n"
-"\n"
-"Sollten Sie sich für ein Tastaturlayout einer nicht lateinischen Sprache\n"
-"entschieden haben, werden Sie im nächsten Schritt gefragt, mit welcher\n"
-"Tastenkombination Sie zwischen dem von Ihnen gewählten und dem lateinischen\n"
-"Layout umschalten wollen."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:610
-#, c-format
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandriva Linux's use of UTF-8 "
-"will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-"Als ersten Schritt wählen Sie bitte die gewünschte Sprache.\n"
-"\n"
-"Wählen Sie Ihre bevorzugte Sprache für den Installationsvorgang und\n"
-"Systemlaufzeit. Wählen Sie zuerst die Region, in der Sie sich befinden,\n"
-"anschließend die Sprache, die Sie sprechen.\n"
-"\n"
-"Durch Betätigen der Schaltfläche „%s“ erhalten Sie die Möglichkeit, weitere\n"
-"Sprachen auf Ihrem Rechner zu installieren, um diese später verwenden zu\n"
-"können. Wollen Sie etwa Spaniern muttersprachlichen Zugang zu Ihrem System\n"
-"erlauben, wählen Sie Deutsch als Hauptsprache in der Liste und im\n"
-"Fortgeschrittenen-Bereich „%s“.\n"
-"\n"
-"Zur UTF-8 (Unicode) Unterstützung: Unicode ist ein Zeichenkodierung, die\n"
-"die existierenden Kodierungen ablösen soll und die Zeichen aller\n"
-"existierender Sprachen beinhalten. Komplette Unterstützung in GNU/Linux ist\n"
-"leider immer noch nicht gegeben. Daher verwendet Mandriva Linux diese\n"
-"Kodierung nur auf Wunsch des Anwenders:\n"
-"\n"
-" * Falls Sie eine Sprache nutzen, die eine gut unterstütztes Kodierung\n"
-"verwendet (Sprachen mit Lateinischen Zeichen, Russisch, Griechisch,\n"
-"Japanisch, Chinesisch, Koreanisch, Thailändisch), wird standardmäßig das\n"
-"klassische Kodierung beibehalten;\n"
-"\n"
-" * Alle anderen Sprachen verwenden standardmäßig Unicode;\n"
-"\n"
-" * Fall Sie zwei oder mehr Sprachen verwenden wollen, die unterschiedliche\n"
-"klassische Kodierungen verwenden, wird ebenfalls Unicode verwendet;\n"
-"\n"
-" * Schlussendlich kann Unicode vom Anwender auch für Sprachen mit\n"
-"klassischer Kodierung ausgewählt werden, indem er den Punkt „%s“ markiert.\n"
-"\n"
-"Sie sind nicht auf eine weitere Sprache begrenzt. Sie können so viele\n"
-"auswählen, wie Sie wollen, ja sogar alle, indem Sie die Schaltfläche „%s“\n"
-"verwenden. Das Auswählen einer Sprache beeinflusst die installierten\n"
-"Übersetzungen der Programme, Schriften, Rechtschreibkorrekturen, etc.\n"
-"\n"
-"Um die Spracheinstellungen des ganzen Systems zwischen verschiedenen\n"
-"Sprachen umzuschalten, starten Sie einfach „localedrake“ unter dem\n"
-"privilegierten Kennzeichen „root“. Wollen Sie die Einstellungen nur für ein\n"
-"Kennzeichen ändern starten Sie denselben Befehl mit eben diesem\n"
-"Kennzeichen."
-
-#: help.pm:648
-#, c-format
-msgid "Espanol"
-msgstr "Spanisch"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:651
-#, c-format
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
-"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-"DrakX versucht normalerweise die Anzahl der Tasten Ihrer Maus zu erkennen.\n"
-"Sollte das nicht möglich sein, so behandelt es Ihre Maus als\n"
-"Zwei-Tasten-Maus und emuliert die mittlere Taste. Die mittlere Taste kann\n"
-"dann durch gleichzeitiges Drücken der rechten und Linken Taste simuliert\n"
-"werden. Üblicherweise erkennt DrakX korrekt, ob es sich um eine serielle,\n"
-"eine PS/2- oder um eine USB-Maus handelt.\n"
-"\n"
-"Falls Sie eine 3-Button-Maus ohne Rad haben können Sie eine Maus „%s“\n"
-"auswählen. DrakX wird dann Ihre Maus so einrichten, dass Sie das Rad in der\n"
-"folgenden Weise simulieren können: Sie drücken die mittlere Maustaste und\n"
-"bewegen Ihren Mauszeiger auf und ab.\n"
-"\n"
-"Sollte dies nicht Ihren Vorstellungen entsprechen: Wählen Sie einfach Ihren\n"
-"Maustyp aus der Liste, die Ihnen angezeigt wird.\n"
-"\n"
-"Einen generischen Maustyp, der mit fast allen Maustypen funktioniert,\n"
-"können Sie über „%s“ einstellen.\n"
-"\n"
-"Sollten Sie einen anderen als den vorgeschlagenen Maustyp gewählt haben, so\n"
-"wird Ihnen ein Testfenster angezeigt. Verwenden Sie die Knöpfe und\n"
-"gegebenenfalls das Mausrad, um sicherzustellen, dass die festgelegten\n"
-"Einstellungen funktionieren. Falls nicht, drücken Sie die Leertaste oder\n"
-"die Eingabetaste, um zurück zum Auswahlmenü zu gelangen und suchen Sie\n"
-"einen anderen Treiber aus.\n"
-"\n"
-"Es kommt vor, dass Mäuse mit Rädern nicht korrekt erkannt werden. Wählen\n"
-"Sie in diesem Fall die richtige Maus aus der vorgegebenen Liste. Stellen\n"
-"Sie sicher, dass Sie auch den Anschluss richtig angegeben haben. Nach\n"
-"betätigen der Schaltfläche „%s“, wird Ihnen ein Bild der gewählten Maus\n"
-"gezeigt. Bewegen Sie Räder und Tasten, um sicherzustellen, dass die Maus\n"
-"richtig erkannt wurde."
-
-#: help.pm:682
-#, c-format
-msgid "with Wheel emulation"
-msgstr "mit Mausrad Emulation"
-
-#: help.pm:682
-#, c-format
-msgid "Universal | Any PS/2 & USB mice"
-msgstr "Universal | Alle PS/2 & USB-Mäuse"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:685
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Wählen Sie bitte den richtigen Anschluss. So ist etwa der unter Windows\n"
-"„COM1“ genannte Anschluss in GNU/Linux unter „ttyS0“ erreichbar."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:689
-#, c-format
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: do not make the password too long or too complicated because "
-"you\n"
-"must be able to remember it!\n"
-"\n"
-"The password will not be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you do not know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-"Dies ist der wichtigste Punkt in der Absicherung Ihres neuen\n"
-"GNU/Linux-Systems: Sie müssen das Passwort für „root“ eingeben. „root“ ist\n"
-"der Systemadministrator. Er ist der einzige der berechtigt ist, neue\n"
-"Software zu installieren, Systemdateien zu ändern oder neue\n"
-"Benutzer anzulegen. Kurz gesagt: „root“ darf alles! Daher müssen\n"
-"Sie auch ein Passwort auswählen, was nicht leicht zu erraten ist; DrakX\n"
-"teilt Ihnen mit, wenn das Passwort zu einfach ist. Sie sehen, dass es auch\n"
-"möglich ist, kein Passwort zu vergeben. Wir raten Ihnen jedoch dringend\n"
-"davon ab! GNU/Linux ist genauso anfällig für Fehler wie jedes andere \n"
-"Betriebssystem. »root« hat keine Beschränkungen. Er könnte beispielsweise\n"
-"unbeabsichtigterweise alle Daten auf allen Partitionen löschen. Also sollte\n"
-"es schwierig gemacht werden, „root“ zu werden!\n"
-"\n"
-"Das Passwort sollte eine Mischung aus alphanumerischen Zeichen sein und\n"
-"mindestens acht Zeichen lang. Es sollte niemals irgendwo aufgeschrieben\n"
-"werden.\n"
-"\n"
-"Machen Sie das Passwort aber nicht zu lang oder zu kompliziert: Sie sollten\n"
-"es sich ohne großen Aufwand merken können.\n"
-"\n"
-"Bei der Eingabe des Passwortes wird nichts angezeigt. Um ein Verschreiben\n"
-"bei dieser „Blindeingabe“ zu vermeiden müssen Sie das Passwort zweimal\n"
-"eingeben - ein Tippfehler beim ersten Versuch könnte sonst zu einem Problem\n"
-"werden, da Sie anschließend das „falsche“ Passwort bei der Verbindung mit\n"
-"dem System eingeben müssten.\n"
-"\n"
-"Wenn Sie wollen, dass der Zugang zu diesem Rechner über einen\n"
-"Authentifizierungsserver verwaltet wird, betätigen Sie die Schaltfläche\n"
-"„%s“.\n"
-"\n"
-"Falls in Ihrem Netzwerk LDAP, NIS oder PDC zur Authentifizierung verwendet\n"
-"wird, wählen Sie bitte den entsprechenden Menüpunkt für „%s“. Falls Sie "
-"nicht\n"
-"wissen, welches Protokoll Sie verwenden sollen, fragen Sie Ihren\n"
-"Netzwerkadministrator.\n"
-"\n"
-"Wenn Sie Probleme haben, sich Passwörter zu merken, oder Ihr Computer nie\n"
-"mit dem Internet verbunden wird und Sie allen Benutzern Ihres Computers\n"
-"absolut vertrauen, können Sie die Option „%s“ wählen."
-
-#: help.pm:723
-#, c-format
-msgid "authentication"
-msgstr "Authentifizierung"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:726
-#, c-format
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can not determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" will not install any boot loader. Use this option only if "
-"you\n"
-"know what you're doing."
-msgstr ""
-"Ein Betriebssystemstarter ist ein kleines Programm, das vom Computer\n"
-"während des Startvorganges aufgerufen wird. Es ist für den Start des\n"
-"gesamten Systems verantwortlich. Im Normalfall läuft die Installation des\n"
-"Betriebssystemstarters vollkommen automatisch ab. DrakX analysiert den\n"
-"Bootsektor und ergreift dann die passenden Maßnahmen:\n"
-"\n"
-" * Findet DrakX einen Windows-Bootsektor, ersetzt es ihn durch einen GRUB-\n"
-"oder LILO-Bootsektor. Sie erhalten dadurch die Möglichkeit, beim\n"
-"Systemstart zwischen Windows (bzw. anderen Betriebssystemen, sofern\n"
-"vorhanden) und GNU/Linux auszuwählen;\n"
-"\n"
-" * Findet DrakX einen Linux-Bootsektor vor, ersetzt es ihn durch einen\n"
-"neuen;\n"
-"\n"
-"Falls DrakX nicht weiß, wo der Betriebssystemstarter installiert werden\n"
-"soll, wird es Sie um Ihre Meinung bitten. Normalerweise sollte die\n"
-"Installation auf dem „%s“ erfolgen. Durch Auswahl von „%s“ wird überhaupt\n"
-"kein Starter installiert. Verwenden Sie diese Möglichkeit nur, wenn Sie\n"
-"genau wissen was Sie tun."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:743
-#, c-format
-msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you do not like your printing\n"
-"system you may change it by running PrinterDrake from the Mandriva Linux\n"
-"Control Center and clicking on the \"%s\" button."
-msgstr ""
-"Hier können Sie das Drucksystem für Ihren Rechner wählen. Andere\n"
-"Betriebssysteme bieten Ihnen nur eines, bei Mandriva Linux können Sie\n"
-"zwischen zwei verschiedenen wählen. jedes dieser Systeme ist für eine\n"
-"bestimmte Konfiguration des Systems am besten geeignet.\n"
-"\n"
-" * „%s“ -- Es steht für „print, do not queue“ (engl. für „Drucken ohne\n"
-"Warteschlange“). Falls Sie einen Drucker haben, der direkt an Ihrem Rechner\n"
-"hängt und Sie keine Netzwerkdrucker verwenden wollen, ist dies das\n"
-"Drucksystem Ihrer Wahl. „%s“ kann zwar auch mit Netzwerkdruckern umgehen, "
-"ist\n"
-"dabei aber extrem langsam. Wählen Sie „pdq“, wenn Sie ein GNU/Linux Neuling\n"
-"sind.\n"
-"\n"
-" * „%s“ - Mit dem „Common Unix Printing System“ (engl. für „Allgemeines\n"
-"Unix-Drucksystem“) können Sie ebensogut auf Ihrem direkt angeschlossenen\n"
-"Drucker drucken, wie auf einem Drucker, der an einem Server auf der anderen\n"
-"Seite der Welt hängt. Es ist einfach zu bedienen und kann sowohl als Server\n"
-"als auch als Klient für das alte „lpd“-Drucksystem verwendet werden - Es\n"
-"ist somit rückwärtskompatibel. Es ist sehr mächtig, in seiner\n"
-"Grundeinstellung verhält es sich jedoch genau wie „pdq“. Wenn Sie einen\n"
-"„lpd“ Server benötigen, müssen Sie einfach nur den „cups-lpd“ Dämon\n"
-"starten. „%s“ bietet grafische Konfigurations- und Druckmenüs.\n"
-"\n"
-"Sie können diese Wahl später immer wieder ändern, indem Sie PrinterDrake\n"
-"aus dem Mandriva Linux Control Center starten und dort die Schaltfläche „%"
-"s“\n"
-"betätigen."
-
-#: help.pm:766
-#, c-format
-msgid "pdq"
-msgstr "pdq"
-
-#: help.pm:766 printer/cups.pm:117 printer/data.pm:129
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
-
-#: help.pm:766
-#, c-format
-msgid "Expert"
-msgstr "Expertenmodus"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:769
-#, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"DrakX versucht nun alle IDE Festplatten Ihres Systems zu finden. Unter\n"
-"Anderem sucht DrakX auch nach PCI-SCSI-Karten, die es kennt, um sie\n"
-"automatisch mit dem richtigen Treiber einzubinden.\n"
-"\n"
-"Falls DrakX nicht weiß, welcher Treiber funktioniert, werden Sie gebeten,\n"
-"DrakX zu helfen.\n"
-"\n"
-"Sollten Sie die PCI-SCSI-Karte selbst angegeben haben, wird DrakX Sie\n"
-"fragen, ob Sie weitere Parameter angeben wollen. Sie sollten DrakX\n"
-"erlauben, die kartenspezifischen Informationen selbst zu finden. In den\n"
-"meisten Fällen wird DrakX diesen Schritt ohne Ihre Hilfe bewerkstelligen.\n"
-"\n"
-"Falls DrakX nicht in der Lage ist, die Parameter selbst zu finden, die dem\n"
-"Modul zu übergeben sind, müssen Sie diese angeben.\n"
-"\n"
-"Sie können die benötigten Informationen etwa unter Windows (sofern das auf\n"
-"Ihren Rechner installiert ist) finden, aus den Handbüchern, die sie mit dem\n"
-"Adapter erhalten haben oder von den Web-Seiten des Hardware-Anbieters\n"
-"(sofern Sie einen WWW-Zugang haben)."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:787
-#, c-format
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-"„%s“: Falls eine Soundkarte in Ihrem Rechner gefunden wurde, wird sie hier\n"
-"angezeigt. Sollte die von DrakX getroffene Auswahl nicht korrekt sein,\n"
-"betätigen Sie einfach die Schaltfläche, um sie zu korrigieren."
-
-#: help.pm:789 help.pm:856 install_steps_interactive.pm:991
-#: install_steps_interactive.pm:1008
-#, c-format
-msgid "Sound card"
-msgstr "Soundkarte"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:792
-#, c-format
-msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"is not in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it is not\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandriva Linux Control Center after the installation has finished to "
-"benefit\n"
-"from full in-line help.\n"
-"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandriva Linux Control Center.\n"
-"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-"Nun bekommen Sie eine Zusammenfassung verschiedener Informationen Ihres\n"
-"Systems. Je nach vorhandener Hardware sehen Sie hier (oder eben nicht) die\n"
-"folgende Einträge. Jeder Eintrag besteht aus einem konfigurierbaren Gerät\n"
-"gefolgt vom dessen aktuellen Zustand. Durch Betätigen der Schaltfläche „%s“\n"
-"können Sie diesen ändern.\n"
-"\n"
-" * „%s“: Kontrollieren Sie die aktuelle Tastaturvorgabe und wählen Sie die\n"
-"Schaltfläche, falls Sie die Vorgabe ändern wollen.\n"
-"\n"
-" * „%s“: Kontrollieren Sie, ob die Auswahl des Staates, in dem Sie sich\n"
-"befinden korrekt ist. Falls nicht, betätigen Sie bitte die Schaltfläche\n"
-"„%s“ und wählen Sie den richtigen. Ist Ihr Staat nicht in der Liste, können\n"
-"Sie über die Schaltfläche „%s“ eine vollständigere Liste erzwingen.\n"
-"\n"
-" * „%s“: DrakX versucht die Zeitzone anhand des gewählten Staates zu\n"
-"setzen. Sollte diese Auswahl nicht korrekt sein können Sie durch Betätige\n"
-"der Schaltfläche „%s“ Ihre lokale Zeitzone setzen.\n"
-"\n"
-" * „%s“: Kontrollieren Sie die konfigurierte Maus und betätigen Sie, falls\n"
-"notwendig, die Schaltfläche.\n"
-"\n"
-" * „%s“: Durch Anwahl der Schaltfläche „%s“ startet den Druckerassistenten.\n"
-"Weitere Informationen zu diesem Assistenten erhalten Sie im Drucker-Kapitel\n"
-"des „Starter Handbuch“. Das dort vorgestellte Programm entspricht dem\n"
-"während der Installation angebotenen.\n"
-"\n"
-" * „%s“: Falls eine Soundkarte in Ihrem Rechner gefunden wurde, wird sie\n"
-"hier angezeigt. Sollte die von DrakX getroffene Auswahl nicht korrekt sein,\n"
-"betätigen Sie einfach die Schaltfläche, um sie zu korrigieren.\n"
-"\n"
-" * „%s“: Falls eine TV-Karte in Ihrem Rechner gefunden wurde, wird sie hier\n"
-"angezeigt. Falls Sie eine TV-Karte besitzen, die hier nicht richtig erkannt\n"
-"wurde, können Sie versuchen, diese manuell einzurichten. Betätigen Sie\n"
-"einfach die Schaltfläche „%s“.\n"
-"\n"
-" * „%s“: Falls eine ISDN Karte in Ihrem Rechner gefunden wurde, wird sie\n"
-"hier angezeigt. Durch Anwahl der Schaltfläche „%s“ können Sie die Parameter\n"
-"ändern.\n"
-"\n"
-" * „%s“: DrakX richtet Ihre Grafikumgebung normalerweise in der Auflösung\n"
-"„800×600“ bzw. „1024×768“ ein. Sollte Ihnen das nicht zusagen, können Sie\n"
-"es durch betätigen der Schaltfläche „%s“ ändern.\n"
-"\n"
-" * „%s“: Falls Sie Ihren Internetzugang oder Ihr lokales Netzwerk nun\n"
-"einrichten wollen, können Sie das hier tun. Lesen Sie sich dazu die\n"
-"gedruckte Dokumentation durch oder benutzen Sie das Mandriva Linux Control\n"
-"Center nachdem die Installation beendet ist.\n"
-"\n"
-" * „%s“: Hier können Sie HTTP- und FTP-Proxyadressen eintragen falls Ihre\n"
-"Maschine die Verbindung über einen Proxyserver abwickelt.\n"
-"\n"
-" * „%s“: Dieser Eintrag ermöglicht es Ihnen, die Sicherheitsebene Ihres\n"
-"Systems zu ändern, die Sie in einem früheren Installationsschritt ()\n"
-"gewählt haben.\n"
-"\n"
-" * „%s“: Falls Sie Ihren Rechner mit dem Internet verbinden wollen, ist es\n"
-"sinnvoll sich vor ungebetenen Eindringlingen durch Einrichten einer\n"
-"Firewall zu schützen. Weitere Informationen erhalten Sie im „Starter\n"
-"Handbuch“.\n"
-"\n"
-" * „%s“: Falls Sie die Konfiguration Ihres Betriebssystemstarters\n"
-"(„Bootloader“) ändern wollen, wählen Sie diese Schaltfläche. Es sei\n"
-"angemerkt, dass dieser Punkt sich an fortgeschrittenere Nutzer richtet.\n"
-"Hilfe finden Sie in der gedruckten Dokumentation oder im integrierten\n"
-"Hilfeteil des Mandriva Linux Control Center.\n"
-"\n"
-" * „%s“: Sie können hier die Dienste wählen, die ab dem Start von\n"
-"Mandriva Linux zur Verfügung gestellt werden sollen. Wollen Sie den Rechner\n"
-"als Server verwenden, sollten Sie unbedingt einen Blick auf diese Liste\n"
-"werfen."
-
-#: help.pm:856 install_steps_interactive.pm:855
-#: install_steps_interactive.pm:950 standalone/drakclock:100
-#: standalone/finish-install:56 standalone/finish-install:57
-#, c-format
-msgid "Timezone"
-msgstr "Zeitzone"
-
-#: help.pm:856 install_steps_interactive.pm:1024
-#, c-format
-msgid "TV card"
-msgstr "TV-Karte"
-
-#: help.pm:856
-#, c-format
-msgid "ISDN card"
-msgstr "ISDN-Karte"
-
-#: help.pm:856
-#, c-format
-msgid "Graphical Interface"
-msgstr "Grafikumgebung"
-
-#: help.pm:856 install_any.pm:1733 install_steps_interactive.pm:1042
-#: standalone/drakbackup:2051
-#, c-format
-msgid "Network"
-msgstr "Netzwerk"
-
-#: help.pm:856 install_steps_interactive.pm:1054
-#, c-format
-msgid "Proxies"
-msgstr "Proxies"
-
-#: help.pm:856 install_steps_interactive.pm:1065
-#, c-format
-msgid "Security Level"
-msgstr "Sicherheitsebene"
-
-#: help.pm:856 install_steps_interactive.pm:1079 network/drakfirewall.pm:189
-#, c-format
-msgid "Firewall"
-msgstr "Firewall"
-
-#: help.pm:856 install_steps_interactive.pm:1095
-#, c-format
-msgid "Bootloader"
-msgstr "Bootloader"
-
-#: help.pm:856 install_steps_interactive.pm:1108 services.pm:114
-#: services.pm:157 services.pm:193
-#, c-format
-msgid "Services"
-msgstr "Dienste"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:859
-#, c-format
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Bitte wählen Sie die Festplatte, die Sie löschen wollen, um Ihr neues\n"
-"Mandriva Linux zu installieren. Bedenken Sie dabei, dass alle Daten auf\n"
-"dieser Platte nach diesem Schritt unwiederbringlich verloren sind!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandriva.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: help.pm:864
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-"Betätigen Sie die Schaltfläche „%s“, wenn Sie alle Partitionen und die\n"
-"darauf befindlichen Daten löschen wollen. Bedenken Sie, dass Sie nach\n"
-"betätigen der Schaltfläche „%s“ auch an die möglicherweise noch vorhandenen\n"
-"Windows-Daten nicht mehr gelangen werden!\n"
-"\n"
-"Wählen Sie „%s“, um die Aktion ohne Datenverlust abzubrechen."
-
-#: help.pm:870
-#, c-format
-msgid "Next ->"
-msgstr "Weiter ->"
-
-#: help.pm:870
-#, c-format
-msgid "<- Previous"
-msgstr "<- Zurück"
-
-#: install2.pm:115
-#, c-format
-msgid ""
-"Can not access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"Ich kann die Kernel-Module, die zu diesem Kernel passen, nicht finden (Datei "
-"%s fehlt). Das bedeutet normalerweise das Ihre Startdiskette nicht mit dem "
-"Installationsmedium übereinstimmt (Bitte erstellen Sie eine neue "
-"Startdiskette). "
-
-#: install2.pm:167
-#, c-format
-msgid "You must also format %s"
-msgstr "Sie müssen auch %s formatieren."
-
-#: install_any.pm:406
-#, c-format
-msgid "Do you have further supplementary media?"
-msgstr "Haben Sie zusätzliche Medien?"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:409
-#, c-format
-msgid ""
-"The following media have been found and will be used during install: %s.\n"
-"\n"
-"\n"
-"Do you have a supplementary installation medium to configure?"
-msgstr ""
-
-#: install_any.pm:422 printer/printerdrake.pm:3211
-#: printer/printerdrake.pm:3218 standalone/scannerdrake:182
-#: standalone/scannerdrake:190 standalone/scannerdrake:241
-#: standalone/scannerdrake:248
-#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (HTTP)"
-msgstr "Netzwerk (HTTP)"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (FTP)"
-msgstr "Netzwerk (FTP)"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (NFS)"
-msgstr "Netzwerk (NFS)"
-
-#: install_any.pm:452
-#, c-format
-msgid "Insert the CD 1 again"
-msgstr "Legen Sie die CD 1 wieder ein"
-
-#: install_any.pm:478 network/netconnect.pm:866 standalone/drakbackup:114
-#, c-format
-msgid "No device found"
-msgstr "Keine Geräte gefunden"
-
-#: install_any.pm:483
-#, c-format
-msgid "Insert the CD"
-msgstr "Legen Sie die CD ein"
-
-#: install_any.pm:488
-#, c-format
-msgid "Unable to mount CD-ROM"
-msgstr "Kann CDROM nicht einbinden"
-
-#: install_any.pm:521 install_any.pm:542
-#, c-format
-msgid "URL of the mirror?"
-msgstr "URL der Spiegel?"
-
-#: install_any.pm:526
-#, c-format
-msgid "NFS setup"
-msgstr "NFS-Einrichtungsetup"
-
-#: install_any.pm:526
-#, c-format
-msgid "Please enter the hostname and directory of your NFS media"
-msgstr ""
-"Bitte geben Sie den Rechnernamen und das Verzeichnis ihres NFS-Mediums ein"
-
-#: install_any.pm:527
-#, c-format
-msgid "Hostname of the NFS mount ?"
-msgstr "Rechnername der NFS-Einbindung?"
-
-#: install_any.pm:527 standalone/draknfs:288
-#, c-format
-msgid "Directory"
-msgstr "Verzeichnis"
-
-#: install_any.pm:580
-#, c-format
-msgid ""
-"Can't find a package list file on this mirror. Make sure the location is "
-"correct."
-msgstr "Kann die Datei hdlist nicht auf diesem Spiegel finden"
-
-#: install_any.pm:657
-#, c-format
-msgid "Removing packages prior to upgrade..."
-msgstr "Entferne Pakete vor der Aktualisierung..."
-
-#: install_any.pm:699
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Suche nach bereits installierten Paketen ..."
-
-#: install_any.pm:703
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Finde die zu aktualisierenden Pakete ..."
-
-#: install_any.pm:781
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done."
-msgstr ""
-"Bitte wechseln Sie die CD!\n"
-"Bitte legen Sie die CD-ROM „%s“ in Ihr Laufwerk. Drücken Sie dann auf „OK“."
-
-#: install_any.pm:793
-#, c-format
-msgid "Copying in progress"
-msgstr "Dateien werden kopiert"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:935
-#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They do not have any known security\n"
-"issues, but some new ones could be found. In that case, you must make sure\n"
-"to upgrade as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"Sie haben die folgenden Server ausgewählt: %s\n"
-"\n"
-"\n"
-"Diese Server werden standardmäßig aktiviert. Sie haben keine bekannten\n"
-"Sicherheitsprobleme, jedoch könnten einige neue entdeckt werden. Stellen\n"
-"Sie deshalb sicher, dass Sie diese Pakete so zeitig wie möglich "
-"aktualisieren.\n"
-"\n"
-"\n"
-"Wollen Sie diese Server wirklich installieren?\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:958
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-"Folgende Pakete werden entfernt, um das Aktualisieren Ihres Rechners zu "
-"ermöglichen: %s\n"
-"\n"
-"\n"
-"Wollen Sie diese Pakete wirklich entfernen?\n"
-
-#: install_any.pm:1394 partition_table.pm:597
-#, c-format
-msgid "Error reading file %s"
-msgstr "Fehler beim Lesen der Datei %s"
-
-#: install_any.pm:1628
-#, c-format
-msgid "The following disk(s) were renamed:"
-msgstr "Die folgenden Datenträger wurden umbenannt:"
-
-#: install_any.pm:1630
-#, c-format
-msgid "%s (previously named as %s)"
-msgstr "%s (vorher als %s bezeichnet)"
-
-#: install_any.pm:1670
-#, 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 ""
-"Ein Fehler ist aufgetreten - es wurden keine gültigen Geräte gefunden, auf "
-"denen neue Dateisysteme erstellt werden können. Bitte überprüfen Sie Ihre "
-"Hardware(-Konfiguration) auf mögliche Fehler und falsche Einstellungen."
-
-#: install_any.pm:1714
-#, c-format
-msgid "HTTP"
-msgstr "HTTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "FTP"
-msgstr "FTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "NFS"
-msgstr "NFS"
-
-#: install_any.pm:1737
-#, c-format
-msgid "Please choose a media"
-msgstr "Bitte wählen Sie ein Medium"
-
-#: install_any.pm:1753
-#, c-format
-msgid "File already exists. Overwrite it?"
-msgstr "Die Datei existiert bereits. Überschreiben?"
-
-#: install_any.pm:1757
-#, c-format
-msgid "Permission denied"
-msgstr "Erlaubnis verweigert"
-
-#: install_any.pm:1806
-#, c-format
-msgid "Bad NFS name"
-msgstr "Falscher NFS-Name"
-
-#: install_any.pm:1827
-#, c-format
-msgid "Bad media %s"
-msgstr "Mediumfehler %s"
-
-#: install_any.pm:1877
-#, c-format
-msgid "Can not make screenshots before partitioning"
-msgstr "Vor der Partitionierung kann ich keine Screenshots machen."
-
-#: install_any.pm:1884
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Die Screenshots liegen nach der Installation unter „%s“"
-
-#: install_gtk.pm:136
-#, c-format
-msgid "System installation"
-msgstr "Installation"
-
-#: install_gtk.pm:139
-#, c-format
-msgid "System configuration"
-msgstr "Systemkonfiguration"
-
-#: install_interactive.pm:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Einige Hardware-Komponenten Ihres Rechners benötigen „proprietäre“\n"
-"Treiber. Weitere Infos hierzu finden Sie unter: %s"
-
-#: install_interactive.pm:63
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Sie brauchen eine root-Partition.\n"
-"Erzeugen Sie eine Partition (oder klicken Sie auf eine existierende).\n"
-"Wählen Sie „Einhängepunkt“ und setzen Sie ihn auf „/“"
-
-#: install_interactive.pm:68
-#, c-format
-msgid ""
-"You do not have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Sie haben keine Auslagerungspartition.\n"
-"\n"
-"Wollen Sie trotzdem fortfahren?"
-
-#: install_interactive.pm:71 install_steps.pm:215
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Sie müssen eine FAT-Partition in „/boot/efi“ eingehängt haben."
-
-#: install_interactive.pm:98
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Nicht genug freier Platz, um die neue Partition anlegen zu können."
-
-#: install_interactive.pm:106
-#, c-format
-msgid "Use existing partitions"
-msgstr "Verwende existierende Partition(en)"
-
-#: install_interactive.pm:108
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "Es gibt keine existierende Partition, die ich verwenden kann."
-
-#: install_interactive.pm:115
-#, c-format
-msgid "Use the Microsoft Windows® partition for loopback"
-msgstr "Auf der Microsoft Windows®-Partition Loopbacks anlegen"
-
-#: install_interactive.pm:118
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Auf welche Partition wollen Sie Linux4Win installieren?"
-
-#: install_interactive.pm:120
-#, c-format
-msgid "Choose the sizes"
-msgstr "Wählen Sie die Größen"
-
-#: install_interactive.pm:121
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Größe der root-Partition in MB: "
-
-#: install_interactive.pm:122
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Größe der Auslagerungspartition in MB: "
-
-#: install_interactive.pm:131
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"Sie haben keine FAT-Partition, die ich als Loopback verwenden kann\n"
-"(möglicherweise haben Sie auch einfach nur nicht mehr genügend\n"
-"freien Speicher)."
-
-#: install_interactive.pm:140
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Bei welcher Partition wollen Sie die Größe ändern?"
-
-#: install_interactive.pm:154
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occurred: %s"
-msgstr ""
-"Das Werkzeug zum Verändern der FAT-Partitionsgröße kann mit der \n"
-"Partition nicht arbeiten. Folgender Fehler trat auf:%s"
-
-#: install_interactive.pm:157
-#, c-format
-msgid "Computing the size of the Microsoft Windows® partition"
-msgstr "Berechne die Größe der Microsoft Windows®-Partition"
-
-#: install_interactive.pm:164
-#, c-format
-msgid ""
-"Your Microsoft Windows® partition is too fragmented. Please reboot your "
-"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
-"the Mandriva Linux installation."
-msgstr ""
-"Ihre Microsoft Windows®-Partition ist zu sehr fragmentiert.\n"
-"Starten Sie bitte erst „defrag“ unter Microsoft Windows®."
-
-#: install_interactive.pm:167
-#, 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 ""
-"WARNUNG!\n"
-"\n"
-"\n"
-"DrakX wird nun die Größe Ihrer Windows-Partition verändern.\n"
-"\n"
-"\n"
-"Seien Sie vorsichtig: Diese Aktion ist gefährlich. Falls Sie es noch nicht "
-"getan haben, sollten Sie nun die Installation abbrechen, um „chkdsk c:“ von "
-"einem DOS Prompt unter Windows auf die Partition anzuwenden (Achtung:"
-"scandisk unter der grafischen Windows Oberfläche reicht nicht aus, bitte "
-"„chkdsk“ in einem DOS Prompt ausführen!)Defragmentieren. Anschließend können "
-"Sie die Installation erneut starten.\n"
-"Sie sollten natürlich generell Sicherheitskopien Ihrer Daten angelegt\n"
-"haben.\n"
-"\n"
-"\n"
-"Falls dies der Fall ist, können Sie mit %s fortfahren."
-
-#: install_interactive.pm:179
-#, c-format
-msgid "Which size do you want to keep for Microsoft Windows® on"
-msgstr "Wieviel Platz benötigen sie noch für Microsoft Windows® auf"
-
-#: install_interactive.pm:180
-#, c-format
-msgid "partition %s"
-msgstr "Partition %s"
-
-#: install_interactive.pm:189
-#, c-format
-msgid "Resizing Microsoft Windows® partition"
-msgstr "Größe der Microsoft Windows®-Partition wird geändert"
-
-#: install_interactive.pm:194
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT-Größenanpassung schlug fehl: %s"
-
-#: install_interactive.pm:209
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr ""
-"Sie haben keine FAT-Partition, deren Größe ich anpassen kann\n"
-"(möglicherweise haben Sie auch einfach nur nicht mehr genügend\n"
-"freien Speicher)."
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Remove Microsoft Windows®"
-msgstr "Windows™ löschen"
-
-#: install_interactive.pm:214
-#, fuzzy, c-format
-msgid "Erase and use entire disk"
-msgstr "Komplette Platte löschen"
-
-#: install_interactive.pm:216
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-"Sie haben mehr als eine Festplatte.\n"
-"Auf welche soll GNU/Linux installiert werden?"
-
-#: install_interactive.pm:222
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"SÄMTLICHE existierende Partitionen samt der darauf befindlichen Daten \n"
-"auf Laufwerk %s gehen dabei verloren"
-
-#: install_interactive.pm:237
-#, c-format
-msgid "Use fdisk"
-msgstr "Fdisk verwenden"
-
-#: install_interactive.pm:240
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, do not forget to save using `w'"
-msgstr ""
-"Sie können nun %s partitionieren.\n"
-"Vergessen Sie nicht die Einstellungen mittels ‚w‘ zu speichern, \n"
-"sobald Sie fertig sind."
-
-#: install_interactive.pm:276
-#, c-format
-msgid "I can not find any room for installing"
-msgstr "Ich finde nicht genug Platz für die Installation"
-
-#: install_interactive.pm:280
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Der DrakX-Partitionierungsassistent fand folgende Lösung:"
-
-#: install_interactive.pm:288
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Das Partitionieren schlug fehl: %s"
-
-#: install_interactive.pm:295
-#, c-format
-msgid "Bringing up the network"
-msgstr "Netzwerkverbindung herstellen"
-
-#: install_interactive.pm:300
-#, c-format
-msgid "Bringing down the network"
-msgstr "Netzwerkverbindung trennen"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:10
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandriva "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandriva Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. This document is a license agreement "
-"between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you "
-"explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this "
-"License. \n"
-"If you disagree with any portion of the License, you are not allowed to "
-"install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner "
-"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate "
-"your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all "
-"copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Limited Warranty\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
-"be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without "
-"limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties "
-"resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or "
-"inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or "
-"occurrence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
-"COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
-"no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever "
-"(including without \n"
-"limitation damages for loss of business, interruption of business, financial "
-"loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential "
-"loss) arising out \n"
-"of the possession and use of software components or arising out of "
-"downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some "
-"countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong "
-"cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. The GPL License and Related Licenses\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. "
-"Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the "
-"documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. Intellectual Property Rights\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
-"as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
-"Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Governing Laws \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-msgstr ""
-"Bei dieser Übersetzung handelt es sich um eine inoffizielle Übersetzung\n"
-"der Mandriva Linux-Lizenz in die deutsche Sprache. Sie ist keine\n"
-"rechtsverbindliche Darstellung der Lizenzbedingungen der Software in\n"
-"dieser Distribution - nur der ursprüngliche französische Text der\n"
-"Mandriva Linux-Lizenz ist rechtsverbindlich. Wir hoffen aber, dass diese\n"
-"Übersetzung den deutschsprechenden Benutzern das Verständnis dieser\n"
-"Lizenz erleichtert.\n"
-"\n"
-"\n"
-"Einführung\n"
-"\n"
-"Das Betriebssystem und die anderen Komponenten, die in Mandriva Linux\n"
-"enthalten sind, werden hier „Software-Produkte“ genannt. Die\n"
-"Software-Produkte umfassen, aber sind nicht beschränkt auf, die\n"
-"Gesamtheit der Programme, Methoden, Regeln, und Dokumentation, welche\n"
-"zum Betriebssystem und den anderen Komponenten der Mandriva Linux\n"
-"Distribution gehören.\n"
-"\n"
-"\n"
-"1. Lizenzabkommen\n"
-"\n"
-"Bitte lesen Sie dieses Dokument sorgfältig. Dieses Dokument ist ein\n"
-"Lizenzabkommen zwischen Ihnen und Mandriva S. A. welches sich auf\n"
-"die Software-Produkte bezieht.\n"
-"Durch Installation, Duplizierung oder Benutzung der Software-Produkte in\n"
-"irgendeiner Art und Weise erklären Sie sich mit den Bedingungen dieser\n"
-"Lizenz einverstanden.\n"
-"Wenn Sie mit irgendeinem Punkt dieser Lizenz nicht einverstanden sind,\n"
-"ist es Ihnen nicht erlaubt, die Software-Produkte zu installieren,\n"
-"duplizieren oder zu benutzen.\n"
-"Mit jedem Versuch, die Software-Produkte in einer Art und Weise zu\n"
-"benutzen, die nicht den Bedingungen dieser Lizenz entspricht, verlieren\n"
-"Sie die Ihnen mit dieser Lizenz eingeräumten Rechte. In diesem Fall\n"
-"haben Sie unverzüglich alle Kopien der Software-Produkte zu vernichten.\n"
-"\n"
-"\n"
-"2. Eingeschränkte Garantie\n"
-"\n"
-"Die Software-Produkte und die beigefügte Dokumentation werden dem\n"
-"Benutzer lediglich zur Verfügung gestellt, es wird keinerlei Garantie\n"
-"gegeben soweit es gesetzlich zulässig ist.\n"
-"Mandriva S. A. haftet unter keinen Umständen, soweit gesetzlich\n"
-"zulässig, für direkte oder indirekte Schäden irgendwelcher Art,\n"
-"(inklusive uneingeschränkten Schäden aufgrund Verlust von\n"
-"Geschäftsbeziehungen, Unterbrechung von Geschäftsvorgängen,\n"
-"finanziellen Verlust, Gebühren oder Strafen aufgrund gerichtlicher\n"
-"Entscheide, oder jegliche Folgeschäden) die aufgrund der Benutzung oder\n"
-"der Unmöglichkeit der Benutzung der Software-Produkte entstehen, auch\n"
-"wenn Mandriva S. A. über die Möglichkeit und das Auftreten\n"
-"derartiger Schäden unterrichtet wurde.\n"
-"\n"
-"\n"
-"EINGESCHRÄNKTE VERANTWORTLICHKEIT BEZOGEN AUF DEN BESITZ UND DIE\n"
-"BENUTZUNG VON SOFTWARE, DIE IN EINIGEN LÄNDERN VERBOTEN IST.\n"
-"\n"
-"\n"
-"Soweit gesetzlich zulässig, haften Mandriva S. A. und deren\n"
-"Vertreiber unter keinen Umständen für direkte oder indirekte Schäden\n"
-"irgendwelcher Art, (inklusive uneingeschränkten Schäden aufgrund Verlust\n"
-"von Geschäftsbeziehungen, Unterbrechung von Geschäftsvorgängen,\n"
-"finanziellen Verlust, Gebühren oder Strafen aufgrund gerichtlicher\n"
-"Entscheide, oder jegliche Folgeschäden) die aufgrund des Besitzes und\n"
-"der Benutzung von Software-Komponenten oder aufgrund des Ladens von\n"
-"Software-Komponenten von den Internet-Servern von Mandriva S. A.,\n"
-"deren Besitz und Benutzung in einigen Ländern aufgrund lokaler Gesetze\n"
-"nicht gestattet ist, entstehen.\n"
-"Diese Einschränkung der Verantwortlichkeit bezieht sich auch, aber nicht\n"
-"nur, auf die Komponenten für starke Kryptografie enthalten in den\n"
-"Software-Produkten.\n"
-"\n"
-"\n"
-"3. Die GPL und verwandte Lizenzen\n"
-"\n"
-"Die Software-Produkte bestehen aus Komponenten, die von verschiedenen\n"
-"Personen und Einrichtungen erstellt wurden. Die meisten Komponenten\n"
-"unterliegen den Bedingungen der GNU General Public License, im folgenden\n"
-"„GPL“ genannt, oder ähnlichen Lizenzen. Die meisten dieser Lizenzen\n"
-"erlauben es, die Komponenten, die diesen Lizenzen unterliegen, zu\n"
-"benutzen, zu duplizieren, anzupassen, und weiterzugeben. Bitte lesen sie\n"
-"sorgfältig die Bedingungen der Lizenzabkommen von jeder Komponente,\n"
-"bevor Sie sie benutzen. Jegliche Frage zur Lizenz einer Komponente ist an\n"
-"den Autor der Komponente und nicht an Mandriva S. A. zu richten. Die\n"
-"von Mandriva S. A. erstellten Programme unterliegen der GPL.\n"
-"Von Mandriva S. A. geschriebene Dokumentation unterliegt einer\n"
-"spezifischen Lizenz. Bitte lesen Sie die Dokumentation für weitere\n"
-"Details.\n"
-"\n"
-"\n"
-"4. Geistiges Eigentum\n"
-"\n"
-"Alle Rechte an den Komponenten der Software-Produkte liegen bei den\n"
-"entsprechenden Autoren und sind durch die Urheberrechtsgesetze für\n"
-"Softwareprodukte geschützt.\n"
-"Mandriva S. A. behält sich das Recht vor, die Software-Produkte zu\n"
-"modifizieren und anzupassen.\n"
-"„Mandriva“, „Mandriva Linux“ und entsprechende Logos sind eingetragene\n"
-"Warenzeichen der Mandriva S. A..\n"
-"\n"
-"\n"
-"5. Gesetzliche Bestimmungen\n"
-"\n"
-"Wenn irgendein Teil dieses Lizenzabkommens durch einen Gerichtsentscheid\n"
-"für ungültig, illegal oder inakzeptabel erklärt wird, wird dieser Teil\n"
-"aus dem Abkommen ausgeschlossen. Sie bleiben weiterhin an die anderen,\n"
-"anwendbaren Teile gebunden.\n"
-"Die Bedingungen dieses Lizenzabkommens unterliegen den Gesetzen von\n"
-"Frankreich. Alle Unstimmigkeiten bezüglich der Bedingungen dieser Lizenz\n"
-"werden vorzugsweise außergerichtlich beigelegt. Letztes Mittel ist das\n"
-"zuständige Gericht in Paris, Frankreich.\n"
-"Zu jeglicher Frage zu diesem Dokument kontaktieren Sie bitte\n"
-"Mandriva S. A.\n"
-
-#: install_messages.pm:90
-#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-"Warnung: Freie Software ist nicht notwendigerweise patentfrei, und einige\n"
-"der beigefügten Software könnte durch ein Patent geschützt sein in Ihrem "
-"Land.\n"
-"Zum Beispiel verlangen die beigefügten MP3-Decoder eine Lizenz für weiter-\n"
-"gehende Nutzung (siehe dazu: http://www.mp3licensing.com). Falls Sie "
-"unsicher \n"
-"sind ob ein Patent sie betrifft prüfen Sie die Gesetze Ihres Landes."
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:98
-#, c-format
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Achtung\n"
-"\n"
-"Bitte lesen Sie die nachfolgenden Ausführungen sorgfältig. Wenn Sie mit\n"
-"irgendeinem Teil nicht einverstanden sind, dürfen Sie nicht den Inhalt\n"
-"der folgenden CDs installieren. Klicken Sie auf „Zurückweisen“, um die\n"
-"Installation ohne Verwendung dieser CDs fortzusetzen.\n"
-"\n"
-"\n"
-"Einige Komponenten auf den nachfolgenden CDs unterliegen nicht der GPL\n"
-"oder ähnlichen Lizenzabkommen. Jede dieser Komponenten unterliegt dann\n"
-"den Bedingungen ihrer eigenen spezifischen Lizenz.\n"
-"Bitte lesen Sie diese Lizenzen sorgfältig und nur wenn Sie mit ihnen\n"
-"einverstanden sind, dürfen Sie die entsprechenden Produkte entsprechend\n"
-"ihrer Lizenz benutzen und weitergeben.\n"
-"Solche Lizenzen verbieten im allgemeinen das Transferieren, Duplizieren\n"
-"(außer für Sicherheitskopien), Weitergeben, Decompilieren, Disassamblen\n"
-"oder Verändern der Komponente.\n"
-"Jeder Bruch des Lizenzabkommens beendet sofort die Ihnen im Rahmen der\n"
-"Lizenz eingeräumten Rechte. Wenn die jeweilige Lizenz Ihnen nicht\n"
-"entsprechende Rechte einräumt, dürfen Sie die Programme nicht auf mehr\n"
-"als einem System installieren oder zur Benutzung in einem Netzwerk\n"
-"einrichten. Im Zweifelsfall kontaktieren Sie bitte den Vertreiber oder\n"
-"Herausgeber der jeweiligen Komponente.\n"
-"Transfer an Dritte oder Kopieren solcher Komponenten inklusive ihrer\n"
-"Dokumentation ist normalerweise verboten.\n"
-"\n"
-"\n"
-"Alle Rechte an den Komponenten der nachfolgenden CDs liegen bei den\n"
-"jeweiligen Autoren und sind durch die Urheberrechtsgesetze für\n"
-"Softwareprodukte geschützt.\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:131
-#, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press Enter to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandriva "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandriva Linux User's Guide."
-msgstr ""
-"Herzlichen Glückwunsch, die Installation ist abgeschlossen.\n"
-"Entfernen Sie die Startmedien (CD-ROMs / Disketten) und drücken Sie die "
-"Eingabetaste zum Neustart Ihres Rechners.\n"
-"\n"
-"Für Informationen zu Sicherheitsaktualisierungen dieser Version von Mandriva "
-"Linux informieren Sie sich bitte unter \n"
-"\n"
-"%s\n"
-"\n"
-"Wie Sie Ihr System warten können, erfahren Sie im Kapitel „Nach der "
-"Installation“ im offiziellen Benutzerhandbuch von Mandriva Linux."
-
-#: install_steps.pm:250
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Den Einhängepunkt %s kopieren"
-
-#: install_steps.pm:482
-#, c-format
-msgid ""
-"Some important packages did not get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
-"\"\n"
-msgstr ""
-"Einige wichtige Pakete wurden nicht richtig installiert. \n"
-"Entweder ist Ihr CD-ROM-Laufwerk oder Ihre CD-ROM defekt. \n"
-"Testen Sie die CD-ROM auf einem Linux-Rechner mittels „rpm -qpl \n"
-"media/main/*.rpm“\n"
-
-#: install_steps_auto_install.pm:68 install_steps_stdio.pm:27
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Beginn von Schritt „%s“\n"
-
-#: install_steps_gtk.pm:181
-#, c-format
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandriva Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Ihr Rechner hat nicht genug Ressourcen. Vermutlich werden bei der \n"
-"Installation Probleme auftreten. In diesem Fall sollten Sie eine \n"
-"Text-Installation versuchen. Drücken Sie dafür <F1> während dem \n"
-"Installationsstart und geben Sie „text“ an der Eingabeaufforderung \n"
-"ein."
-
-#: install_steps_gtk.pm:211 install_steps_interactive.pm:605
-#, c-format
-msgid "Package Group Selection"
-msgstr "Auswahl der Paketgruppen"
-
-#: install_steps_gtk.pm:254 install_steps_interactive.pm:548
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Gesamtgröße: %d / %d MB"
-
-#: install_steps_gtk.pm:299
-#, c-format
-msgid "Bad package"
-msgstr "Ungültiges Paket"
-
-#: install_steps_gtk.pm:301
-#, c-format
-msgid "Version: "
-msgstr "Version: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "Size: "
-msgstr "Größe: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "%d KB\n"
-msgstr "%d KB\n"
-
-#: install_steps_gtk.pm:303
-#, c-format
-msgid "Importance: "
-msgstr "Wichtigkeit: "
-
-#: install_steps_gtk.pm:336
-#, c-format
-msgid "You can not select/unselect this package"
-msgstr "Sie können dieses Paket nicht auswählen/abwählen."
-
-#: install_steps_gtk.pm:340 network/thirdparty.pm:331
-#, c-format
-msgid "due to missing %s"
-msgstr "%s fehlt"
-
-#: install_steps_gtk.pm:341
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "Aufgrund unerfüllter %s"
-
-#: install_steps_gtk.pm:342
-#, c-format
-msgid "trying to promote %s"
-msgstr "Versuche %s voranzutreiben"
-
-#: install_steps_gtk.pm:343
-#, c-format
-msgid "in order to keep %s"
-msgstr "um %s beizubehalten"
-
-#: install_steps_gtk.pm:348
-#, c-format
-msgid ""
-"You can not select this package as there is not enough space left to install "
-"it"
-msgstr ""
-"Sie können dieses Paket nicht auswählen, da Sie nicht genug Plattenplatz "
-"haben."
-
-#: install_steps_gtk.pm:351
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Die folgenden Pakete werden installiert"
-
-#: install_steps_gtk.pm:352
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Die folgenden Pakete werden entfernt"
-
-#: install_steps_gtk.pm:376
-#, c-format
-msgid "This is a mandatory package, it can not be unselected"
-msgstr "Dieses Paket ist existenziell, sie können es nicht abwählen!"
-
-#: install_steps_gtk.pm:378
-#, c-format
-msgid "You can not unselect this package. It is already installed"
-msgstr ""
-"Sie können dieses Paket nicht aus der Auswahl entfernen. \n"
-"Es ist bereits installiert!"
-
-#: install_steps_gtk.pm:381
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Dieses Paket muss aktualisiert werden.\n"
-"Sind Sie sicher, dass Sie es aus der Auswahl entfernen wollen?"
-
-#: install_steps_gtk.pm:384
-#, c-format
-msgid "You can not unselect this package. It must be upgraded"
-msgstr ""
-"Sie können dieses Paket nicht aus der Auswahl entfernen. \n"
-"Es muss aktualisiert werden!"
-
-#: install_steps_gtk.pm:389
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Automatisch markierte Pakete anzeigen"
-
-#: install_steps_gtk.pm:394
-#, c-format
-msgid "Load/Save selection"
-msgstr "Auswahl laden/speichern"
-
-#: install_steps_gtk.pm:395
-#, c-format
-msgid "Updating package selection"
-msgstr "Erneuere Paket Auswahl"
-
-#: install_steps_gtk.pm:400
-#, c-format
-msgid "Minimal install"
-msgstr "Minimal-Installation"
-
-#: install_steps_gtk.pm:414 install_steps_interactive.pm:467
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Zu installierende Pakete auswählen"
-
-#: install_steps_gtk.pm:431 install_steps_interactive.pm:691
-#, c-format
-msgid "Installing"
-msgstr "Installation wird durchgeführt"
-
-#: install_steps_gtk.pm:457
-#, c-format
-msgid "No details"
-msgstr "Keine Details"
-
-#: install_steps_gtk.pm:472
-#, c-format
-msgid "Time remaining "
-msgstr "Verbleibende Zeit "
-
-#: install_steps_gtk.pm:473
-#, c-format
-msgid "Estimating"
-msgstr "Schätzung"
-
-#: install_steps_gtk.pm:500
-#, c-format
-msgid "%d packages"
-msgstr "%d Pakete"
-
-#: install_steps_gtk.pm:543 install_steps_interactive.pm:719
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Bitte wechseln Sie die CD!\n"
-"Bitte legen Sie die CD-ROM „%s“ in Ihr Laufwerk. Drücken Sie dann auf „OK“.\n"
-"Falls Sie sie nicht vorliegen haben, drücken Sie auf „Abbrechen“."
-
-#: install_steps_gtk.pm:556 install_steps_interactive.pm:730
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Bei der Anforderung folgender Pakete trat ein Fehler auf:"
-
-#: install_steps_gtk.pm:558 install_steps_interactive.pm:734
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Bei der Installation der Pakete trat ein Fehler auf:"
-
-#: install_steps_gtk.pm:560 install_steps_interactive.pm:730
-#: install_steps_interactive.pm:734
-#, c-format
-msgid "Go on anyway?"
-msgstr "Wollen Sie trotzdem fortfahren?"
-
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:910 steps.pm:30
-#, c-format
-msgid "Summary"
-msgstr "Zusammenfassung"
-
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:906
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "not configured"
-msgstr "Nicht eingerichtet"
-
-#: install_steps_gtk.pm:668
-#, c-format
-msgid ""
-"The following installation media have been found.\n"
-"If you want to skip some of them, you can unselect them now."
-msgstr ""
-"Die folgenden Installationsmedien wurden gefunden.\n"
-"Wählen Sie die Medien ab, die Sie überspringen wollen."
-
-#: install_steps_gtk.pm:677
-#, c-format
-msgid ""
-"You have the option to copy the contents of the CDs onto the hard drive "
-"before installation.\n"
-"It will then continue from the hard drive and the packages will remain "
-"available once the system is fully installed."
-msgstr ""
-"Sie haben die Möglichkeit, den Inhalt der CDs vor der Installation auf "
-"Festplatte zu kopieren. Die Installation wird dann von Festplatte "
-"fortgeführt und die Softwarepakete bleiben verfügbar, nachdem das System "
-"fertig installiert ist."
-
-#: install_steps_gtk.pm:679
-#, c-format
-msgid "Copy whole CDs"
-msgstr "Kopiere die CDs"
-
-#: install_steps_interactive.pm:95
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Bitte wählen Sie Ihren Tastaturtyp."
-
-#: install_steps_interactive.pm:97
-#, c-format
-msgid "Here is the full list of available keyboards"
-msgstr "Komplette Liste aller Tastaturlayouts"
-
-#: install_steps_interactive.pm:127
-#, c-format
-msgid "Install/Upgrade"
-msgstr "Installation/Aktualisierung"
-
-#: install_steps_interactive.pm:128
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Handelt es sich um eine Installation oder eine Aktualisierung?"
-
-#: install_steps_interactive.pm:134
-#, c-format
-msgid "Upgrade %s"
-msgstr "Aktualisiere %s"
-
-#: install_steps_interactive.pm:147
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Schlüssel für %s"
-
-#: install_steps_interactive.pm:170
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Bitte wählen Sie Ihren Maustyp."
-
-#: install_steps_interactive.pm:171
-#, c-format
-msgid "Mouse choice"
-msgstr "Maus-Auswahl"
-
-#: install_steps_interactive.pm:180 standalone/mousedrake:46
-#, c-format
-msgid "Mouse Port"
-msgstr "Maus-Port"
-
-#: install_steps_interactive.pm:181 standalone/mousedrake:47
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Bitte wählen Sie den seriellen Anschluss, an dem Ihre Maus hängt."
-
-#: install_steps_interactive.pm:191
-#, c-format
-msgid "Buttons emulation"
-msgstr "Tastenemulation"
-
-#: install_steps_interactive.pm:193
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Emulation der 2. Taste"
-
-#: install_steps_interactive.pm:194
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Emulation der 3. Taste"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Konfiguriere PCMCIA-Karten..."
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "Configuring IDE"
-msgstr "IDE konfigurieren"
-
-#: install_steps_interactive.pm:242
-#, c-format
-msgid "No partition available"
-msgstr "Keine Partition verfügbar"
-
-#: install_steps_interactive.pm:245
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Durchsuche die Partitionen, um die Einhängepunkte zu finden"
-
-#: install_steps_interactive.pm:252
-#, c-format
-msgid "Choose the mount points"
-msgstr "Wählen Sie die Einhängepunkte"
-
-#: install_steps_interactive.pm:300
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Sie haben keinen Platz für die 1 MB große Start-Partition vorgesehen! Die "
-"Installation wird fortgesetzt, Sie müssen jedoch eine Start-Partition mit "
-"DiskDrake erstellen."
-
-#: install_steps_interactive.pm:305
-#, c-format
-msgid ""
-"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
-"to boot your system, you'll need to create the bootstrap partition in "
-"DiskDrake"
-msgstr ""
-"Sie müssen einen PPC PReP Boot Lader erzeugen! Die Installation wird "
-"fortgesetzt, Sie müssen jedoch eine Start-Partition mit DiskDrake erstellen."
-
-#: install_steps_interactive.pm:341
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Zu formatierende Partitionen auswählen"
-
-#: install_steps_interactive.pm:343
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Soll ich nach defekten Blöcken suchen?"
-
-#: install_steps_interactive.pm:371
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
-msgstr ""
-"Es traten Fehler beim Prüfen des Dateisystems %s auf. Wollen Sie, dass ich "
-"versuche sie zu beheben? (Achtung: das kann zu Datenverlust führen)"
-
-#: install_steps_interactive.pm:374
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr ""
-"Der Swap-Bereich ist zu klein, um die Installation zu ermöglichen! \n"
-"Bitte vergrößern Sie den Bereich."
-
-#: install_steps_interactive.pm:383
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Suche nach vorhandenen Paketen und aktualisiere RPM-Datenbank ..."
-
-#: install_steps_interactive.pm:384 install_steps_interactive.pm:436
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Suche nach vorhandenen Paketen..."
-
-#: install_steps_interactive.pm:405 install_steps_interactive.pm:810
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Bitte wählen Sie einen Mirror, von dem Sie die Pakete holen wollen."
-
-#: install_steps_interactive.pm:445
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Es steht auf Ihrem System nicht genügend Speicherplatz für die \n"
-"Installation bzw. Aktualisierung zur Verfügung (%d > %d)."
-
-#: install_steps_interactive.pm:479
-#, c-format
-msgid ""
-"Please choose load or save package selection.\n"
-"The format is the same as auto_install generated files."
-msgstr ""
-"Bitte wählen Sie, ob die Paketauswahl geladen oder\n"
-"gespeichert werden soll. Es handelt sich um das gleiche\n"
-"Format, wie die unter „auto_install“ erzeugten Disketten."
-
-#: install_steps_interactive.pm:481
-#, c-format
-msgid "Load"
-msgstr "Last"
-
-#: install_steps_interactive.pm:481 standalone/drakbackup:4083
-#: standalone/drakbackup:4153 standalone/logdrake:175
-#, c-format
-msgid "Save"
-msgstr "Speichern"
-
-#: install_steps_interactive.pm:489
-#, c-format
-msgid "Bad file"
-msgstr "Datei fehlerhaft"
-
-#: install_steps_interactive.pm:562
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Gewünschte Größe übersteigt den verfügbaren Platz"
-
-#: install_steps_interactive.pm:577
-#, c-format
-msgid "Type of install"
-msgstr "Installationstyp"
-
-#: install_steps_interactive.pm:578
-#, c-format
-msgid ""
-"You have not selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Sie haben keine Paketgruppe ausgewählt.\n"
-"Bitte wählen Sie die minimale Installation, die Sie wünschen."
-
-#: install_steps_interactive.pm:582
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Mit minimaler Dokumentation (Empfohlen)"
-
-#: install_steps_interactive.pm:583
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Extrem minimale Installation (ohne „urpmi“)"
-
-#: install_steps_interactive.pm:622 standalone/drakxtv:52
-#, c-format
-msgid "All"
-msgstr "Alle"
-
-#: install_steps_interactive.pm:661
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"Falls Sie alle aufgeführten CDs haben, wählen Sie „OK“, \n"
-"falls Sie keine der aufgeführten CDs haben, wählen Sie „Abbrechen“,\n"
-"falls nur einige der aufgeführten CDs fehlen, entfernen Sie die \n"
-"entsprechende Markierung und wählen Sie dann „OK“."
-
-#: install_steps_interactive.pm:666
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM „%s“"
-
-#: install_steps_interactive.pm:691
-#, c-format
-msgid "Preparing installation"
-msgstr "Bereite Installation vor"
-
-#: install_steps_interactive.pm:699
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Installiere Paket %s\n"
-"%d%%"
-
-#: install_steps_interactive.pm:748
-#, c-format
-msgid "Post-install configuration"
-msgstr "Bereite weitere Konfiguration vor ..."
-
-#: install_steps_interactive.pm:755
-#, c-format
-msgid "Please ensure the Update Modules media is in drive %s"
-msgstr ""
-"Bitte stellen Sie sicher, dass sich das Update-Modul-Medium im Laufwerk %s "
-"befindet"
-
-#: install_steps_interactive.pm:783
-#, c-format
-msgid "Updates"
-msgstr "Aktualisierungen"
-
-#: install_steps_interactive.pm:784
-#, c-format
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates?"
-msgstr ""
-"Sie haben nun die Möglichkeit Pakete zu installieren, die seit Erscheinen\n"
-"der Distribution aktualisiert wurden. Es handelt sich um \n"
-"Sicherheitsaktualisierungen und Fehlerkorrekturen.\n"
-"\n"
-"Allerdings benötigen Sie dafür eine funktionierende Internetverbindung.\n"
-"\n"
-"Möchten Sie die Aktualisierungen vornehmen?"
-
-#: install_steps_interactive.pm:805
-#, c-format
-msgid ""
-"Contacting Mandriva Linux web site to get the list of available mirrors..."
-msgstr ""
-"Kontaktiere Mandriva Linux Web-Server, um eine Liste verfügbarer Pakete zu "
-"erhalten..."
-
-#: install_steps_interactive.pm:824
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Kontaktiere Mirror, um eine Liste verfügbarer Pakete zu erhalten..."
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Mirror %s nicht erreichbar"
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Wollen Sie es nochmal versuchen?"
-
-#: install_steps_interactive.pm:855 standalone/drakclock:45
-#: standalone/finish-install:56
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Wählen Sie Ihre Zeitzone"
-
-#: install_steps_interactive.pm:860
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automatische Zeit-Synchronisation (durch NTP)"
-
-#: install_steps_interactive.pm:868
-#, c-format
-msgid "NTP Server"
-msgstr "NTP-Server"
-
-#: install_steps_interactive.pm:923 install_steps_interactive.pm:931
-#: install_steps_interactive.pm:949 install_steps_interactive.pm:956
-#: install_steps_interactive.pm:1107 services.pm:133
-#: standalone/drakbackup:1596
-#, c-format
-msgid "System"
-msgstr "System"
-
-#: install_steps_interactive.pm:963 install_steps_interactive.pm:990
-#: install_steps_interactive.pm:1007 install_steps_interactive.pm:1023
-#: install_steps_interactive.pm:1034
-#, c-format
-msgid "Hardware"
-msgstr "Hardware"
-
-#: install_steps_interactive.pm:969 install_steps_interactive.pm:978
-#, c-format
-msgid "Remote CUPS server"
-msgstr "CUPS-Server im Netzwerkbetrieb"
-
-#: install_steps_interactive.pm:969
-#, c-format
-msgid "No printer"
-msgstr "Kein Drucker"
-
-#: install_steps_interactive.pm:1011
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Verfügen Sie über eine ISA-Soundkarte?"
-
-#: install_steps_interactive.pm:1013
-#, c-format
-msgid ""
-"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
-"card"
-msgstr ""
-"Starten Sie „sndconfig“ oder „alsaconf“ nach der Installation, um Ihre "
-"Soundkarte einzurichten."
-
-#: install_steps_interactive.pm:1015
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"Es wurde keine Soundkarte gefunden. Versuchen Sie „harddrake“ nach der "
-"Installation."
-
-#: install_steps_interactive.pm:1035
-#, c-format
-msgid "Graphical interface"
-msgstr "Grafikumgebung"
-
-#: install_steps_interactive.pm:1041 install_steps_interactive.pm:1053
-#, c-format
-msgid "Network & Internet"
-msgstr "Netzwerk & Internet"
-
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "configured"
-msgstr "konfiguriert"
-
-#: install_steps_interactive.pm:1064 install_steps_interactive.pm:1078
-#: security/level.pm:55 steps.pm:20
-#, c-format
-msgid "Security"
-msgstr "Sicherheit"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "activated"
-msgstr "aktiviert"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "disabled"
-msgstr "deaktiviert"
-
-#: install_steps_interactive.pm:1094
-#, c-format
-msgid "Boot"
-msgstr "Start"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1098 printer/printerdrake.pm:961
-#, c-format
-msgid "%s on %s"
-msgstr "%s auf %s"
-
-#: install_steps_interactive.pm:1112 services.pm:175
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Dienste: %d aktiviert von %d registrierten"
-
-#: install_steps_interactive.pm:1124
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "Sie haben X nicht konfiguriert. Sind Sie sicher?"
-
-#: install_steps_interactive.pm:1205
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Bereite Bootloader vor ..."
-
-#: install_steps_interactive.pm:1215
-#, c-format
-msgid ""
-"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
-"will not work for you. The install will continue, but you'll need to use "
-"BootX or some other means to boot your machine. The kernel argument for the "
-"root fs is: root=%s"
-msgstr ""
-"Sie scheinen einen „OldWorld“ oder unbekannten Rechner zu verwenden. Der "
-"Bootloader „yaboot“ wird daher leider nicht funktionieren. Die Installation "
-"wird fortgesetzt, sie werden jedoch „BootX“ oder etwas ähnliches verwenden "
-"müssen um Ihren Rechner zu starten. Der Kernelparameter für das Root-"
-"Dateisystem ist: root=%s"
-
-#: install_steps_interactive.pm:1221
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Möchten Sie „aboot“ verwenden?"
-
-#: install_steps_interactive.pm:1224
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Fehler bei der Installation von aboot. Soll ich die Installation \n"
-"mit Gewalt versuchen, auch wenn dies die Zerstörung der ersten \n"
-"Partition verursachen kann?"
-
-#: install_steps_interactive.pm:1241
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
-msgid ""
-"In this security level, access to the files in the Windows partition is "
-"restricted to the administrator."
-msgstr ""
-"In dieser Sicherheitseinstellung ist der Zugriff auf Datein der "
-"Windowspartition nur dem Administrator erlaubt"
-
-#: install_steps_interactive.pm:1270 standalone/drakautoinst:76
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Legen Sie eine leere Diskette in das %s ein."
-
-#: install_steps_interactive.pm:1275
-#, c-format
-msgid "Please insert another floppy for drivers disk"
-msgstr "Bitte legen Sie eine andere Diskette als Treiberdiskette ein"
-
-#: install_steps_interactive.pm:1277
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Erstelle eine Auto-Installationsdiskette"
-
-#: install_steps_interactive.pm:1289
-#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Einige Schritte sind noch nicht komplett.\n"
-"\n"
-"Wollen Sie DrakX wirklich beenden?"
-
-#: install_steps_interactive.pm:1299 standalone/draksambashare:421
-#: standalone/draksambashare:527 standalone/drakups:118 standalone/drakups:157
-#: standalone/logdrake:451 standalone/logdrake:457
-#, c-format
-msgid "Congratulations"
-msgstr "Herzlichen Glückwunsch!"
-
-#: install_steps_interactive.pm:1307 install_steps_interactive.pm:1308
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Erstellen einer Auto-Installationsdiskette"
-
-#: install_steps_interactive.pm:1309
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Die automatische Installation kann, falls Sie wollen,\n"
-"vollautomatisch erfolgen. In diesem Fall wird die\n"
-"Festplatte vollständig durch DrakX rekonfiguriert\n"
-"(diese Möglichkeit ist für die Replikation auf anderen\n"
-"Rechnern gedacht).\n"
-"\n"
-"Vermutlich werden Sie es vorziehen, erneut eine normale\n"
-"Installation durchzuführen.\n"
-
-#: install_steps_newt.pm:20
-#, c-format
-msgid "Mandriva Linux Installation %s"
-msgstr "Mandriva Linux-Installation %s"
-
-#. -PO: This string must fit in a 80-char wide text screen
-#: install_steps_newt.pm:37
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> nächstes Element | <Leertaste> auswählen | <F12> weiter "
+msgid "No"
+msgstr "Nein"
-#: interactive.pm:196
+#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "Wählen Sie eine Datei"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakbackup:1537
-#: standalone/drakfont:649 standalone/drakhosts:242 standalone/draknfs:605
-#: standalone/draksambashare:1127 standalone/drakups:299
-#: standalone/drakups:359 standalone/drakups:379 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Add"
msgstr "Hinzufügen"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakhosts:249
-#: standalone/draknfs:612 standalone/draksambashare:1084
-#: standalone/draksambashare:1137 standalone/draksambashare:1176
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Modify"
msgstr "Ändern"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakfont:732
-#: standalone/drakhosts:256 standalone/draknfs:619
-#: standalone/draksambashare:1085 standalone/draksambashare:1145
-#: standalone/draksambashare:1184 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Remove"
msgstr "Entfernen"
-#: interactive.pm:398
-#, c-format
-msgid "Basic"
-msgstr "Einfach"
-
-#: interactive.pm:436 interactive/newt.pm:321 ugtk2.pm:490
+#: interactive.pm:538 interactive/curses.pm:217 ugtk2.pm:508
#, c-format
msgid "Finish"
msgstr "Assistent beenden"
-#: interactive/newt.pm:92
+#: interactive.pm:539 interactive/curses.pm:214 ugtk2.pm:506
#, c-format
-msgid "Do"
-msgstr "Los"
+msgid "Previous"
+msgstr "Zurück"
#: interactive/stdio.pm:29 interactive/stdio.pm:148
#, c-format
@@ -7872,1956 +3451,1205 @@ msgstr ""
msgid "Re-submit"
msgstr "Erneut verschicken"
-#: keyboard.pm:171 keyboard.pm:202
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTZ)"
-msgstr "Tschechien (QWERTZ)"
-
-#: keyboard.pm:172 keyboard.pm:204
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German"
-msgstr "Deutschland"
-
-#: keyboard.pm:173
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak"
-msgstr "Dvorak"
-
-#: keyboard.pm:174 keyboard.pm:217
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Spanish"
-msgstr "Spanien"
-
-#: keyboard.pm:175 keyboard.pm:218
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Finnish"
-msgstr "Finnland"
-
-#: keyboard.pm:176 keyboard.pm:220
-#, c-format
-msgid ""
-"_: keyboard\n"
-"French"
-msgstr "Frankreich"
-
-#: keyboard.pm:177 keyboard.pm:264
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Norwegian"
-msgstr "Norwegen"
-
-#: keyboard.pm:178
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish"
-msgstr "Polen"
-
-#: keyboard.pm:179 keyboard.pm:275
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian"
-msgstr "Russland"
-
-#: keyboard.pm:180 keyboard.pm:281
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swedish"
-msgstr "Schweden"
-
-#: keyboard.pm:181 keyboard.pm:310
-#, c-format
-msgid "UK keyboard"
-msgstr "Großbritannien"
-
-#: keyboard.pm:182 keyboard.pm:313
-#, c-format
-msgid "US keyboard"
-msgstr "US Tastatur"
-
-#: keyboard.pm:184
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Albanian"
-msgstr "Albanien"
-
-#: keyboard.pm:185
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (old)"
-msgstr "Armenien (alt)"
-
-#: keyboard.pm:186
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (typewriter)"
-msgstr "Armenien (Schreibmaschine)"
-
-#: keyboard.pm:187
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (phonetic)"
-msgstr "Armenien (Phonetisch)"
-
-#: keyboard.pm:188
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Arabic"
-msgstr "Arabisch"
-
-#: keyboard.pm:189
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Azerbaidjani (latin)"
-msgstr "Aserbeidschan (Lateinisches Layout)"
-
-#: keyboard.pm:190
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belgian"
-msgstr "Belgien"
-
-#: keyboard.pm:191
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Inscript-layout)"
-msgstr "Bangladesh (Inscript Layout)"
-
-#: keyboard.pm:192
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Probhat)"
-msgstr "Bangladesh (Probhat Layout)"
-
-#: keyboard.pm:193
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (phonetic)"
-msgstr "Bulgarien (Phonetisch)"
-
-#: keyboard.pm:194
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (BDS)"
-msgstr "Bulgarien (BDS)"
-
-#: keyboard.pm:195
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Brazilian (ABNT-2)"
-msgstr "Brasilien (ABNT-2)"
-
-#: keyboard.pm:196
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bosnian"
-msgstr "Bosnien"
-
-#: keyboard.pm:197
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belarusian"
-msgstr "Weißrussland"
-
-#: keyboard.pm:198
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (German layout)"
-msgstr "Schweiz (deutsches Layout)"
-
-#: keyboard.pm:199
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (French layout)"
-msgstr "Schweiz (französisches Layout)"
-
-#: keyboard.pm:201
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Cherokee syllabics"
-msgstr "Cherokee syllabics"
-
-#: keyboard.pm:203
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTY)"
-msgstr "Tschechien (QWERTY)"
-
-#: keyboard.pm:205
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German (no dead keys)"
-msgstr "Deutschland (ohne Akzenttasten)"
-
-#: keyboard.pm:206
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Devanagari"
-msgstr "Devanagari"
-
-#: keyboard.pm:207
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Danish"
-msgstr "Dänemark"
-
-#: keyboard.pm:208
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (US)"
-msgstr "Dvorak (USA)"
-
-#: keyboard.pm:209
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Esperanto)"
-msgstr "Dvorak (Spanien)"
-
-#: keyboard.pm:210
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (French)"
-msgstr "Dvorak (Französisch)"
-
-#: keyboard.pm:211
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (UK)"
-msgstr "Dvorak (GB)"
-
-#: keyboard.pm:212
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Norwegian)"
-msgstr "Dvorak (Norwegen)"
-
-#: keyboard.pm:213
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Polish)"
-msgstr "Dvorak (Polnisch)"
-
-#: keyboard.pm:214
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Swedish)"
-msgstr "Dvorak (Schweden)"
-
-#: keyboard.pm:215
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dzongkha/Tibetan"
-msgstr "Dzongkha/Tibetanisch"
-
-#: keyboard.pm:216
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Estonian"
-msgstr "Estland"
-
-#: keyboard.pm:219
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Faroese"
-msgstr "Faroeisch"
-
-#: keyboard.pm:221
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Russian\" layout)"
-msgstr "Georgien (Kyrillisches Layout)"
-
-#: keyboard.pm:222
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Latin\" layout)"
-msgstr "Georgien (Lateinisches Layout)"
-
-#: keyboard.pm:223
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek"
-msgstr "Griechenland"
-
-#: keyboard.pm:224
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek (polytonic)"
-msgstr "Griechisch (polytonic)"
-
-#: keyboard.pm:225
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gujarati"
-msgstr "Indien (Gujarati)"
-
-#: keyboard.pm:226
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gurmukhi"
-msgstr "Indien (Gurmukhi)"
-
-#: keyboard.pm:227
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Croatian"
-msgstr "Kroatien"
-
-#: keyboard.pm:228
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Hungarian"
-msgstr "Ungarn"
-
-#: keyboard.pm:229
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Irish"
-msgstr "Irisch"
-
-#: keyboard.pm:230
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli"
-msgstr "Israel"
-
-#: keyboard.pm:231
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli (phonetic)"
-msgstr "Israel (Phonetisch)"
-
-#: keyboard.pm:232
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Iranian"
-msgstr "Iran"
-
-#: keyboard.pm:233
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Icelandic"
-msgstr "Island"
-
-#: keyboard.pm:234
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Italian"
-msgstr "Italien"
-
-#: keyboard.pm:235
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Inuktitut"
-msgstr "Grönland (Inuktitut)"
-
-#: keyboard.pm:239
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Japanese 106 keys"
-msgstr "Japan (106 Tasten)"
-
-#: keyboard.pm:240
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kannada"
-msgstr "Kanada"
-
-#: keyboard.pm:243
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Korean"
-msgstr "Korea"
-
-#: keyboard.pm:245
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kurdish (arabic script)"
-msgstr "Kurdisch (arabische Schrift)"
-
-#: keyboard.pm:246
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Kyrgyz"
-msgstr "Kyrgyz Tastatur"
-
-#: keyboard.pm:247
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latin American"
-msgstr "Lateinamerika"
-
-#: keyboard.pm:249
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Laotian"
-msgstr "Laos"
-
-#: keyboard.pm:250
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (old)"
-msgstr "Litauen (AZERTY - alt)"
-
-#: keyboard.pm:252
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (new)"
-msgstr "Litauen (AZERTY - neu)"
-
-#: keyboard.pm:253
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"number row\" QWERTY"
-msgstr "Litauen (QWERTY - „number row“)"
-
-#: keyboard.pm:254
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"phonetic\" QWERTY"
-msgstr "Litauen (QWERTY - Phonetisch)"
-
-#: keyboard.pm:255
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latvian"
-msgstr "Lettland"
-
-#: keyboard.pm:256
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Malayalam"
-msgstr "Malayalam"
-
-#: keyboard.pm:258
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Macedonian"
-msgstr "Mazedonien"
-
-#: keyboard.pm:259
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Myanmar (Burmese)"
-msgstr "Myanmar (Burmesien)"
-
-#: keyboard.pm:260
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Mongolian (cyrillic)"
-msgstr "Mongolei (Kyrillisches Layout)"
-
-#: keyboard.pm:261
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (UK)"
-msgstr "Malta (GB)"
-
-#: keyboard.pm:262
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (US)"
-msgstr "Malta (USA)"
-
-#: keyboard.pm:263
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dutch"
-msgstr "Niederlande"
-
-#: keyboard.pm:265
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Oriya"
-msgstr "Orissa"
-
-#: keyboard.pm:266
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwerty layout)"
-msgstr "Polen (QWERTY Layout)"
-
-#: keyboard.pm:267
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwertz layout)"
-msgstr "Polen (QWERTZ Layout)"
-
-#: keyboard.pm:269
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Pashto"
-msgstr "Pashto"
-
-#: keyboard.pm:270
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Portuguese"
-msgstr "Portugal"
-
-#: keyboard.pm:272
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Canadian (Quebec)"
-msgstr "Kanada (Québec)"
-
-#: keyboard.pm:273
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwertz)"
-msgstr "Rumänien (QWERTZ)"
-
-#: keyboard.pm:274
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwerty)"
-msgstr "Rumänien (QWERTY)"
-
-#: keyboard.pm:276
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian (phonetic)"
-msgstr "Russland (Phonetisch)"
-
-#: keyboard.pm:277
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (norwegian)"
-msgstr "Saamen (Norwegen)"
-
-#: keyboard.pm:278
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (swedish/finnish)"
-msgstr "Saamen (schwedisch/finnisch)"
-
-#: keyboard.pm:280
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sindhi"
-msgstr "Sindhi"
-
-#: keyboard.pm:282
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovenian"
-msgstr "Slowenien"
-
-#: keyboard.pm:284
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sinhala"
-msgstr "Sinhala"
-
-#: keyboard.pm:285
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTZ)"
-msgstr "Slowakei (QWERTZ)"
-
-#: keyboard.pm:286
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTY)"
-msgstr "Slowakei (QWERTY)"
-
-#: keyboard.pm:288
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Serbian (cyrillic)"
-msgstr "Serbien (Kyrillisches Layout)"
-
-#: keyboard.pm:289
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac"
-msgstr "Syrien"
-
-#: keyboard.pm:290
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac (phonetic)"
-msgstr "Syrien (Phonetisch)"
-
-# drakfw:278 (Neuse
-#: keyboard.pm:291
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Telugu"
-msgstr "Telugu"
-
-#: keyboard.pm:293
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (ISCII-layout)"
-msgstr "Tamilisch (TSCII Layout)"
-
-#: keyboard.pm:294
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (Typewriter-layout)"
-msgstr "Tamilisch (Schreibmaschine)"
-
-#: keyboard.pm:295
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Kedmanee)"
-msgstr "Thailändisch (Kedmanee)"
-
-#: keyboard.pm:296
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (TIS-820)"
-msgstr "Thailändisch (TIS-820)"
-
-#: keyboard.pm:298
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Pattachote)"
-msgstr "Thailändisch (Pattachote)"
-
-#: keyboard.pm:300
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (moroccan layout) (+latin/arabic)"
-msgstr "Tifinagh (marokkanische Anordnung) (+latein/arabisch)"
-
-#: keyboard.pm:301
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (phonetic) (+latin/arabic)"
-msgstr "Tifinagh (phonetisch) (+latein/arabisch)"
-
-#: keyboard.pm:303
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tajik"
-msgstr "Tadschikistan"
-
-#: keyboard.pm:305
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkmen"
-msgstr "Turkmenisch"
-
-#: keyboard.pm:306
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (traditional \"F\" model)"
-msgstr "Türkei (traditionelles „F“ Modell)"
-
-#: keyboard.pm:307
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (modern \"Q\" model)"
-msgstr "Türkei (modernes „Q“ Modell)"
-
-#: keyboard.pm:309
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Ukrainian"
-msgstr "Ukraine"
-
-#: keyboard.pm:312
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Urdu keyboard"
-msgstr "Urdu"
-
-#: keyboard.pm:314
-#, c-format
-msgid "US keyboard (international)"
-msgstr "Vereinigte Staaten von Amerika (international)"
-
-#: keyboard.pm:315
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Uzbek (cyrillic)"
-msgstr "Usbekistan (Kyrillisches Layout)"
-
-#: keyboard.pm:317
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnam QWERTY („number row“)"
-
-#: keyboard.pm:318
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Yugoslavian (latin)"
-msgstr "Jugoslawien (Lateinisches Layout)"
-
-#: keyboard.pm:325
-#, c-format
-msgid "Right Alt key"
-msgstr "AltGr-Taste"
-
-#: keyboard.pm:326
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Beide Umschalttasten gleichzeitig"
-
-#: keyboard.pm:327
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Strg und Umschalttaste gleichzeitig"
-
-#: keyboard.pm:328
-#, c-format
-msgid "CapsLock key"
-msgstr "CapsLock Taste"
-
-#: keyboard.pm:329
-#, c-format
-msgid "Shift and CapsLock keys simultaneously"
-msgstr "Shift und CapsLock gleichzeitig"
-
-#: keyboard.pm:330
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Strg und Alt gleichzeitig"
-
-#: keyboard.pm:331
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt und Umschalttaste gleichzeitig"
-
-#: keyboard.pm:332
-#, c-format
-msgid "\"Menu\" key"
-msgstr "Menütaste"
-
-#: keyboard.pm:333
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Linke „Windows“-Taste"
-
-#: keyboard.pm:334
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Rechte „Windows“-Taste"
-
-#: keyboard.pm:335
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Beide Steuerungstasten gleichzeitig"
-
-#: keyboard.pm:336
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Beide ALT-Tasten gleichzeitig"
-
-#: keyboard.pm:337
-#, c-format
-msgid "Left Shift key"
-msgstr "Linke Umschalt-Taste"
-
-#: keyboard.pm:338
-#, c-format
-msgid "Right Shift key"
-msgstr "Rechte Shift-Taste"
-
-#: keyboard.pm:339
-#, c-format
-msgid "Left Alt key"
-msgstr "Linke Alt-Taste"
-
-#: keyboard.pm:340
-#, c-format
-msgid "Left Control key"
-msgstr "Linke STRG Taste"
-
-#: keyboard.pm:341
-#, c-format
-msgid "Right Control key"
-msgstr "Rechte STRG-Taste"
-
-#: keyboard.pm:377
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Hier können Sie die Taste, bzw Tastenkombination wählen, \n"
-"mit der Sie zwischen verschiedenen Tastaturbelegungen \n"
-"umschalten können, etwa zwischen deutschem und US-Layout."
-
-#: keyboard.pm:382
-#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
-msgstr ""
-"Diese Einstellung wird nach der Installation aktiviert.\n"
-"Während der Installation, benutzen Sie die rechte STRG-Taste,\n"
-"um zwischen den verschiedenen Tastatur Layouts zu wechseln."
-
#. -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:178
+#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"
-#: lang.pm:195
+#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "Andorra"
-#: lang.pm:196 network/adsl_consts.pm:943
+#: lang.pm:211 timezone.pm:213
#, c-format
msgid "United Arab Emirates"
msgstr "Vereinigte arabische Emirate"
-#: lang.pm:197
+#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "Afghanistan"
-#: lang.pm:198
+#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigua und Barbuda"
-#: lang.pm:199
+#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "Anguilla"
-#: lang.pm:200
+#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "Albanien"
-#: lang.pm:201
+#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "Armenien"
-#: lang.pm:202
+#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "Niederländische Antillen"
-#: lang.pm:203
+#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "Angola"
-#: lang.pm:204
+#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "Antarktis"
-#: lang.pm:205 network/adsl_consts.pm:55 standalone/drakxtv:50
+#: lang.pm:220 timezone.pm:258
#, c-format
msgid "Argentina"
msgstr "Argentinien"
-#: lang.pm:206
+#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "Samoa"
-#: lang.pm:209
+#: lang.pm:222 mirror.pm:11 timezone.pm:216
+#, c-format
+msgid "Austria"
+msgstr "Österreich"
+
+#: lang.pm:223 mirror.pm:10 timezone.pm:254
+#, c-format
+msgid "Australia"
+msgstr "Australien"
+
+#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "Aruba"
-#: lang.pm:210
+#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "Aserbaidschan"
-#: lang.pm:211
+#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosnien-Herzegovina"
-#: lang.pm:212
+#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "Barbados"
-#: lang.pm:213
+#: lang.pm:228 timezone.pm:198
#, c-format
msgid "Bangladesh"
msgstr "Bangladesch"
-#: lang.pm:215
+#: lang.pm:229 mirror.pm:12 timezone.pm:218
+#, c-format
+msgid "Belgium"
+msgstr "Belgien"
+
+#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "Burkina Faso"
-#: lang.pm:216 network/adsl_consts.pm:170 network/adsl_consts.pm:179
+#: lang.pm:231 timezone.pm:219
#, c-format
msgid "Bulgaria"
msgstr "Bulgarien"
-#: lang.pm:217
+#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "Bahrain"
-#: lang.pm:218
+#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "Burundi"
-#: lang.pm:219
+#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "Benin"
-#: lang.pm:220
+#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "Bermuda"
-#: lang.pm:221
+#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "Brunei "
-#: lang.pm:222
+#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "Bolivien"
-#: lang.pm:224
+#: lang.pm:238 mirror.pm:13 timezone.pm:259
+#, c-format
+msgid "Brazil"
+msgstr "Brasilien"
+
+#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "Bahamas"
-#: lang.pm:225
+#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "Butan"
-#: lang.pm:226
+#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "Bouvet-Insel"
-#: lang.pm:227
+#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "Botswana"
-#: lang.pm:228
+#: lang.pm:243 timezone.pm:217
#, c-format
msgid "Belarus"
msgstr "Weißrussland"
-#: lang.pm:229
+#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "Belize"
-#: lang.pm:231
+#: lang.pm:245 mirror.pm:14 timezone.pm:248
+#, c-format
+msgid "Canada"
+msgstr "Kanada"
+
+#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Cocos (Keeling) Inseln"
-#: lang.pm:232
+#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Kongo (Kinshasa)"
-#: lang.pm:233
+#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "Zentralafrikanische Republik"
-#: lang.pm:234
+#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Kongo (Brazzaville)"
-#: lang.pm:236
+#: lang.pm:250 mirror.pm:38 timezone.pm:242
+#, c-format
+msgid "Switzerland"
+msgstr "Schweiz"
+
+#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "Elfenbeinküste"
-#: lang.pm:237
+#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "Cook-Inseln"
-#: lang.pm:238
+#: lang.pm:253 timezone.pm:260
#, c-format
msgid "Chile"
msgstr "Chile"
-#: lang.pm:239
+#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "Kamerun"
-#: lang.pm:240 network/adsl_consts.pm:188 network/adsl_consts.pm:197
-#: network/adsl_consts.pm:206 network/adsl_consts.pm:215
-#: network/adsl_consts.pm:224 network/adsl_consts.pm:233
-#: network/adsl_consts.pm:242 network/adsl_consts.pm:251
-#: network/adsl_consts.pm:260 network/adsl_consts.pm:269
-#: network/adsl_consts.pm:278 network/adsl_consts.pm:287
-#: network/adsl_consts.pm:296 network/adsl_consts.pm:305
-#: network/adsl_consts.pm:314 network/adsl_consts.pm:323
-#: network/adsl_consts.pm:332 network/adsl_consts.pm:341
-#: network/adsl_consts.pm:350 network/adsl_consts.pm:359
+#: lang.pm:255 timezone.pm:199
#, c-format
msgid "China"
msgstr "China"
-#: lang.pm:241
+#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "Kolumbien"
-#: lang.pm:243
+#: lang.pm:257 mirror.pm:15
+#, c-format
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "Serbien & Montenegro"
-#: lang.pm:244
+#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "Kuba"
-#: lang.pm:245
+#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "Kap Verde"
-#: lang.pm:246
+#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "Osterinsel"
-#: lang.pm:247
+#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "Zypern"
-#: lang.pm:250
+#: lang.pm:263 mirror.pm:16 timezone.pm:220
+#, c-format
+msgid "Czech Republic"
+msgstr "Tschechische Republik"
+
+#: lang.pm:264 mirror.pm:21 timezone.pm:225
+#, c-format
+msgid "Germany"
+msgstr "Deutschland"
+
+#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "Djibouti"
-#: lang.pm:252
+#: lang.pm:266 mirror.pm:17 timezone.pm:221
+#, c-format
+msgid "Denmark"
+msgstr "Dänemark"
+
+#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "Dominikanische Republik"
-#: lang.pm:253
+#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "Dominikanische Republik"
-#: lang.pm:254 network/adsl_consts.pm:44
+#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "Algerien"
-#: lang.pm:255
+#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "Ecuador"
-#: lang.pm:257
+#: lang.pm:271 mirror.pm:18 timezone.pm:222
+#, c-format
+msgid "Estonia"
+msgstr "Estland"
+
+#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "Ägypten"
-#: lang.pm:258
+#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "Westsahara"
-#: lang.pm:259
+#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "Eritrea"
-#: lang.pm:261
+#: lang.pm:275 mirror.pm:36 timezone.pm:240
+#, c-format
+msgid "Spain"
+msgstr "Spanien"
+
+#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "Äthiopien"
-#: lang.pm:263
+#: lang.pm:277 mirror.pm:19 timezone.pm:223
+#, c-format
+msgid "Finland"
+msgstr "Finnland"
+
+#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "Fidschi"
-#: lang.pm:264
+#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Falkland Inseln"
-#: lang.pm:265
+#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "Mikronesien"
-#: lang.pm:266
+#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "Faröische Inseln"
-#: lang.pm:268
+#: lang.pm:282 mirror.pm:20 timezone.pm:224
+#, c-format
+msgid "France"
+msgstr "Frankreich"
+
+#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "Gabun"
-#: lang.pm:269 network/adsl_consts.pm:954 network/adsl_consts.pm:965
-#: network/netconnect.pm:46
+#: lang.pm:284 timezone.pm:244
#, c-format
msgid "United Kingdom"
msgstr "Großbritannien"
-#: lang.pm:270
+#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "Grenada"
-#: lang.pm:271
+#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "Georgien"
-#: lang.pm:272
+#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "Französisch-Guiana"
-#: lang.pm:273
+#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "Ghana"
-#: lang.pm:274
+#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "Gibraltar"
-#: lang.pm:275
+#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "Grönland"
-#: lang.pm:276
+#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "Gambia"
-#: lang.pm:277
+#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "Guinea"
-#: lang.pm:278
+#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "Gouadeloupe"
-#: lang.pm:279
+#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "Äquatorial-Guinea"
-#: lang.pm:281
+#: lang.pm:295 mirror.pm:22 timezone.pm:226
+#, c-format
+msgid "Greece"
+msgstr "Griechenland"
+
+#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "South Georgia und die South Sandwich Islands"
-#: lang.pm:282
+#: lang.pm:297 timezone.pm:249
#, c-format
msgid "Guatemala"
msgstr "Guatemala"
-#: lang.pm:283
+#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "Guam"
-#: lang.pm:284
+#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "Guinea-Bissau"
-#: lang.pm:285
+#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "Guyana"
-#: lang.pm:286
+#: lang.pm:301
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "Hong Kong SAR (China)"
-#: lang.pm:287
+#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Heard Island und McDonald Island"
-#: lang.pm:288
+#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "Honduras"
-#: lang.pm:289
+#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "Kroatien"
-#: lang.pm:290
+#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "Haiti"
-#: lang.pm:292
+#: lang.pm:306 mirror.pm:23 timezone.pm:227
+#, c-format
+msgid "Hungary"
+msgstr "Ungarn"
+
+#: lang.pm:307 timezone.pm:202
#, c-format
msgid "Indonesia"
msgstr "Indonesien"
-#: lang.pm:295
+#: lang.pm:308 mirror.pm:24 timezone.pm:228
+#, c-format
+msgid "Ireland"
+msgstr "Irland"
+
+#: lang.pm:309 mirror.pm:25 timezone.pm:204
+#, c-format
+msgid "Israel"
+msgstr "Israel"
+
+#: lang.pm:310 timezone.pm:201
#, c-format
msgid "India"
msgstr "Indien"
-#: lang.pm:296
+#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Britisches Territorium im Indischen Ozean"
-#: lang.pm:297
+#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "Irak"
-#: lang.pm:298
+#: lang.pm:313 timezone.pm:203
#, c-format
msgid "Iran"
msgstr "Iran"
-#: lang.pm:299
+#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "Island"
-#: lang.pm:301
+#: lang.pm:315 mirror.pm:26 timezone.pm:229
+#, c-format
+msgid "Italy"
+msgstr "Italien"
+
+#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "Jamaika"
-#: lang.pm:302
+#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "Jordanien"
-#: lang.pm:304
+#: lang.pm:318 mirror.pm:27 timezone.pm:205
+#, c-format
+msgid "Japan"
+msgstr "Japan"
+
+#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "Kenia"
-#: lang.pm:305
+#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "Kirgisistan"
-#: lang.pm:306
+#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "Kambodscha"
-#: lang.pm:307
+#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "Kiribati"
-#: lang.pm:308
+#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "Komoren"
-#: lang.pm:309
+#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "St. Kitts und Nevis"
-#: lang.pm:310
+#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "Nordkorea"
-#: lang.pm:311
+#: lang.pm:326 timezone.pm:206
#, c-format
msgid "Korea"
msgstr "Korea"
-#: lang.pm:312
+#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "Kuwait"
-#: lang.pm:313
+#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "Cayman-Inseln"
-#: lang.pm:314
+#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "Kasachstan"
-#: lang.pm:315
+#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "Laos"
-#: lang.pm:316
+#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "Libanon"
-#: lang.pm:317
+#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "St. Lucia"
-#: lang.pm:318
+#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "Liechtenstein"
-#: lang.pm:319
+#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "Sri Lanka"
-#: lang.pm:320
+#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "Liberia"
-#: lang.pm:321
+#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "Lesotho"
-#: lang.pm:322 network/adsl_consts.pm:600
+#: lang.pm:337 timezone.pm:230
#, c-format
msgid "Lithuania"
msgstr "Litauen"
-#: lang.pm:323
+#: lang.pm:338 timezone.pm:231
#, c-format
msgid "Luxembourg"
msgstr "Luxemburg"
-#: lang.pm:324
+#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "Litauen"
-#: lang.pm:325
+#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "Lybien"
-#: lang.pm:326 network/adsl_consts.pm:609
+#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "Marokko"
-#: lang.pm:327
+#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "Monaco"
-#: lang.pm:328
+#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "Moldawien"
-#: lang.pm:329
+#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "Madagaskar"
-#: lang.pm:330
+#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "Marshall Inseln"
-#: lang.pm:331
+#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "Mazedonien"
-#: lang.pm:332
+#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "Mali"
-#: lang.pm:333
+#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "Burma"
-#: lang.pm:334
+#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "Mongolei"
-#: lang.pm:335
+#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "Nördliche Mariannen-Inseln"
-#: lang.pm:336
+#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "Martinique"
-#: lang.pm:337
+#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "Mauretanien"
-#: lang.pm:338
+#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "Montserrat"
-#: lang.pm:339
+#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "Malta"
-#: lang.pm:340
+#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "Mauritius"
-#: lang.pm:341
+#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "Malediven"
-#: lang.pm:342
+#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "Malawi"
-#: lang.pm:343
+#: lang.pm:358 timezone.pm:250
#, c-format
msgid "Mexico"
msgstr "Mexiko"
-#: lang.pm:344
+#: lang.pm:359 timezone.pm:207
#, c-format
msgid "Malaysia"
msgstr "Malaysia"
-#: lang.pm:345
+#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "Mosambik"
-#: lang.pm:346
+#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "Namibia"
-#: lang.pm:347
+#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "Neukaledonien"
-#: lang.pm:348
+#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "Niger"
-#: lang.pm:349
+#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "Norfolkinsel"
-#: lang.pm:350
+#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "Nigeria"
-#: lang.pm:351
+#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "Nicaragua"
-#: lang.pm:354
+#: lang.pm:367 mirror.pm:28 timezone.pm:232
+#, c-format
+msgid "Netherlands"
+msgstr "Niederlande"
+
+#: lang.pm:368 mirror.pm:30 timezone.pm:233
+#, c-format
+msgid "Norway"
+msgstr "Norwegen"
+
+#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "Nepal"
-#: lang.pm:355
+#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "Nauru"
-#: lang.pm:356
+#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "Niue"
-#: lang.pm:358
+#: lang.pm:372 mirror.pm:29 timezone.pm:255
+#, c-format
+msgid "New Zealand"
+msgstr "Neuseeland"
+
+#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "Oman"
-#: lang.pm:359
+#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "Panama"
-#: lang.pm:360
+#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "Peru"
-#: lang.pm:361
+#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "Französisch Polinesien"
-#: lang.pm:362
+#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "Papua-Neuguinea"
-#: lang.pm:363
+#: lang.pm:378 timezone.pm:208
#, c-format
msgid "Philippines"
msgstr "Philippinen"
-#: lang.pm:364
+#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "Pakistan"
-#: lang.pm:366
+#: lang.pm:380 mirror.pm:31 timezone.pm:234
+#, c-format
+msgid "Poland"
+msgstr "Polen"
+
+#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "St. Pierre und Miquelon"
-#: lang.pm:367
+#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "Pitcairn"
-#: lang.pm:368
+#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "Puerto Rico"
-#: lang.pm:369
+#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "Palästina"
-#: lang.pm:371
+#: lang.pm:385 mirror.pm:32 timezone.pm:235
+#, c-format
+msgid "Portugal"
+msgstr "Portugal"
+
+#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "Paraguay"
-#: lang.pm:372
+#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "Palau"
-#: lang.pm:373
+#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "Quatar"
-#: lang.pm:374
+#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "Réunion"
-#: lang.pm:375
+#: lang.pm:390 timezone.pm:236
#, c-format
msgid "Romania"
msgstr "Rumänien"
-#: lang.pm:377
+#: lang.pm:391 mirror.pm:33
+#, c-format
+msgid "Russia"
+msgstr "Russland"
+
+#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "Ruanda"
-#: lang.pm:378
+#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "Saudi Arabien"
-#: lang.pm:379
+#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "Solomon-Inseln"
-#: lang.pm:380
+#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "Seychellen"
-#: lang.pm:381
+#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "Sudan"
-#: lang.pm:383
+#: lang.pm:397 mirror.pm:37 timezone.pm:241
+#, c-format
+msgid "Sweden"
+msgstr "Schweden"
+
+#: lang.pm:398 timezone.pm:209
#, c-format
msgid "Singapore"
msgstr "Singapur"
-#: lang.pm:384
+#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "Sankt Helena"
-#: lang.pm:385 network/adsl_consts.pm:747
+#: lang.pm:400 timezone.pm:239
#, c-format
msgid "Slovenia"
msgstr "Slowenien"
-#: lang.pm:386
+#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Svalbard and Jan Mayen Islands (Norwegen)"
-#: lang.pm:388
+#: lang.pm:402 mirror.pm:34 timezone.pm:238
+#, c-format
+msgid "Slovakia"
+msgstr "Slowakei"
+
+#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "Sierra Leone"
-#: lang.pm:389
+#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "San Marino"
-#: lang.pm:390 network/adsl_consts.pm:737
+#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "Senegal"
-#: lang.pm:391
+#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "Somalia"
-#: lang.pm:392
+#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "Surinam"
-#: lang.pm:393
+#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "Sao Tome und Principe"
-#: lang.pm:394
+#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "El Salvador"
-#: lang.pm:395
+#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "Syrien"
-#: lang.pm:396
+#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "Swaziland"
-#: lang.pm:397
+#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Turks und Caicos Inseln"
-#: lang.pm:398
+#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "Tschad"
-#: lang.pm:399
+#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "French Southern Territories"
-#: lang.pm:400
+#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "Togo"
-#: lang.pm:402
+#: lang.pm:416 mirror.pm:40 timezone.pm:211
+#, c-format
+msgid "Thailand"
+msgstr "Thailand"
+
+#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "Tadschikistan"
-# drakfw:278 (Neuse
-#: lang.pm:403
+#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "Tokelau (Neuseeland)"
-#: lang.pm:404
+#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "Ost Timor"
-#: lang.pm:405
+#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "Turkmenistan"
-#: lang.pm:406 network/adsl_consts.pm:931
+#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "Tunesien"
-#: lang.pm:407
+#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "Tonga"
-#: lang.pm:408
+#: lang.pm:423 timezone.pm:212
#, c-format
msgid "Turkey"
msgstr "Türkei"
-#: lang.pm:409
+#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "Trinidad und Tobago"
-#: lang.pm:410
+#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "Tuvalu"
-#: lang.pm:412
+#: lang.pm:426 mirror.pm:39 timezone.pm:210
+#, c-format
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#: lang.pm:427 timezone.pm:195
#, c-format
msgid "Tanzania"
msgstr "Tansania"
-#: lang.pm:413
+#: lang.pm:428 timezone.pm:243
#, c-format
msgid "Ukraine"
msgstr "Ukraine"
-#: lang.pm:414
+#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "Uganda"
-#: lang.pm:415
+#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "United States Minor Outlying Islands"
-#: lang.pm:417
+#: lang.pm:431 mirror.pm:41 timezone.pm:251
+#, c-format
+msgid "United States"
+msgstr "Vereinigte Staaten von Amerika"
+
+#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "Uruguay"
-#: lang.pm:418
+#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "Usbekistan"
-#: lang.pm:419
+#: lang.pm:434
#, c-format
msgid "Vatican"
msgstr "Vatikan"
-#: lang.pm:420
+#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "St. Vincent und die Grenadinen"
-#: lang.pm:421
+#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "Venezuela"
-#: lang.pm:422
+#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "Jungferninseln (britisch)"
-#: lang.pm:423
+#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Jungfern-Inseln (U.S.)"
-#: lang.pm:424
+#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "Vietnam"
-#: lang.pm:425
+#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "Vanuatu"
-#: lang.pm:426
+#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "Wallis und Futuna"
-#: lang.pm:427
+#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "Samoa"
-#: lang.pm:428
+#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "Yemen"
-#: lang.pm:429
+#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "Mayotte (Frankreich)"
-#: lang.pm:431
+#: lang.pm:445 mirror.pm:35 timezone.pm:194
+#, c-format
+msgid "South Africa"
+msgstr "Südafrika"
+
+#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "Sambia"
-#: lang.pm:432
+#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "Simbabwe"
-#: lang.pm:1149
+#: lang.pm:1153
#, c-format
msgid "Welcome to %s"
msgstr "Willkommen zu %s"
@@ -9844,16 +4672,364 @@ msgid "Remove the logical volumes first\n"
msgstr "Entfernen Sie erst die Logischen Medien\n"
#: lvm.pm:178
-#, fuzzy, c-format
+#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
-"Der Systemstarter beherrscht „/boot“ nicht auf mehreren physischen "
-"Datenträgern"
+"Der Bootloader beherrscht „/boot“ nicht auf mehreren physischen Datenträgern"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:10
+#, c-format
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the Mandriva "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandriva Linux distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
+"Mandriva S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using the Software Products in any manner, you "
+"explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
+"Software Products.\n"
+"\n"
+"\n"
+"2. Limited Warranty\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
+"be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if Mandriva S.A. has been advised of the possibility or "
+"occurrence of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
+"\n"
+"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
+"no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Mandriva Linux sites which are prohibited or restricted in some "
+"countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
+"included in the Software Products.\n"
+"\n"
+"\n"
+"3. The GPL License and Related Licenses\n"
+"\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to Mandriva.\n"
+"The programs developed by Mandriva S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by Mandriva S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
+"\n"
+"\n"
+"4. Intellectual Property Rights\n"
+"\n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
+"as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
+"Mandriva S.A. \n"
+"\n"
+"\n"
+"5. Governing Laws \n"
+"\n"
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
+"For any question on this document, please contact Mandriva S.A. \n"
+msgstr ""
+"Bei dieser Übersetzung handelt es sich um eine inoffizielle Übersetzung\n"
+"der Mandriva Linux-Lizenz in die deutsche Sprache. Sie ist keine\n"
+"rechtsverbindliche Darstellung der Lizenzbedingungen der Software in\n"
+"dieser Distribution - nur der ursprüngliche französische Text der\n"
+"Mandriva Linux-Lizenz ist rechtsverbindlich. Wir hoffen aber, dass diese\n"
+"Übersetzung den deutschsprechenden Benutzern das Verständnis dieser\n"
+"Lizenz erleichtert.\n"
+"\n"
+"\n"
+"Einführung\n"
+"\n"
+"Das Betriebssystem und die anderen Komponenten, die in Mandriva Linux\n"
+"enthalten sind, werden hier „Software-Produkte“ genannt. Die\n"
+"Software-Produkte umfassen, aber sind nicht beschränkt auf, die\n"
+"Gesamtheit der Programme, Methoden, Regeln, und Dokumentation, welche\n"
+"zum Betriebssystem und den anderen Komponenten der Mandriva Linux\n"
+"Distribution gehören.\n"
+"\n"
+"\n"
+"1. Lizenzabkommen\n"
+"\n"
+"Bitte lesen Sie dieses Dokument sorgfältig. Dieses Dokument ist ein\n"
+"Lizenzabkommen zwischen Ihnen und Mandriva S. A. welches sich auf\n"
+"die Software-Produkte bezieht.\n"
+"Durch Installation, Duplizierung oder Benutzung der Software-Produkte in\n"
+"irgendeiner Art und Weise erklären Sie sich mit den Bedingungen dieser\n"
+"Lizenz einverstanden.\n"
+"Wenn Sie mit irgendeinem Punkt dieser Lizenz nicht einverstanden sind,\n"
+"ist es Ihnen nicht erlaubt, die Software-Produkte zu installieren,\n"
+"duplizieren oder zu benutzen.\n"
+"Mit jedem Versuch, die Software-Produkte in einer Art und Weise zu\n"
+"benutzen, die nicht den Bedingungen dieser Lizenz entspricht, verlieren\n"
+"Sie die Ihnen mit dieser Lizenz eingeräumten Rechte. In diesem Fall\n"
+"haben Sie unverzüglich alle Kopien der Software-Produkte zu vernichten.\n"
+"\n"
+"\n"
+"2. Eingeschränkte Garantie\n"
+"\n"
+"Die Software-Produkte und die beigefügte Dokumentation werden dem\n"
+"Benutzer lediglich zur Verfügung gestellt, es wird keinerlei Garantie\n"
+"gegeben soweit es gesetzlich zulässig ist.\n"
+"Mandriva S. A. haftet unter keinen Umständen, soweit gesetzlich\n"
+"zulässig, für direkte oder indirekte Schäden irgendwelcher Art,\n"
+"(inklusive uneingeschränkten Schäden aufgrund Verlust von\n"
+"Geschäftsbeziehungen, Unterbrechung von Geschäftsvorgängen,\n"
+"finanziellen Verlust, Gebühren oder Strafen aufgrund gerichtlicher\n"
+"Entscheide, oder jegliche Folgeschäden) die aufgrund der Benutzung oder\n"
+"der Unmöglichkeit der Benutzung der Software-Produkte entstehen, auch\n"
+"wenn Mandriva S. A. über die Möglichkeit und das Auftreten\n"
+"derartiger Schäden unterrichtet wurde.\n"
+"\n"
+"\n"
+"EINGESCHRÄNKTE VERANTWORTLICHKEIT BEZOGEN AUF DEN BESITZ UND DIE\n"
+"BENUTZUNG VON SOFTWARE, DIE IN EINIGEN LÄNDERN VERBOTEN IST.\n"
+"\n"
+"\n"
+"Soweit gesetzlich zulässig, haften Mandriva S. A. und deren\n"
+"Vertreiber unter keinen Umständen für direkte oder indirekte Schäden\n"
+"irgendwelcher Art, (inklusive uneingeschränkten Schäden aufgrund Verlust\n"
+"von Geschäftsbeziehungen, Unterbrechung von Geschäftsvorgängen,\n"
+"finanziellen Verlust, Gebühren oder Strafen aufgrund gerichtlicher\n"
+"Entscheide, oder jegliche Folgeschäden) die aufgrund des Besitzes und\n"
+"der Benutzung von Software-Komponenten oder aufgrund des Ladens von\n"
+"Software-Komponenten von den Internet-Servern von Mandriva S. A.,\n"
+"deren Besitz und Benutzung in einigen Ländern aufgrund lokaler Gesetze\n"
+"nicht gestattet ist, entstehen.\n"
+"Diese Einschränkung der Verantwortlichkeit bezieht sich auch, aber nicht\n"
+"nur, auf die Komponenten für starke Kryptografie enthalten in den\n"
+"Software-Produkten.\n"
+"\n"
+"\n"
+"3. Die GPL und verwandte Lizenzen\n"
+"\n"
+"Die Software-Produkte bestehen aus Komponenten, die von verschiedenen\n"
+"Personen und Einrichtungen erstellt wurden. Die meisten Komponenten\n"
+"unterliegen den Bedingungen der GNU General Public License, im folgenden\n"
+"„GPL“ genannt, oder ähnlichen Lizenzen. Die meisten dieser Lizenzen\n"
+"erlauben es, die Komponenten, die diesen Lizenzen unterliegen, zu\n"
+"benutzen, zu duplizieren, anzupassen, und weiterzugeben. Bitte lesen sie\n"
+"sorgfältig die Bedingungen der Lizenzabkommen von jeder Komponente,\n"
+"bevor Sie sie benutzen. Jegliche Frage zur Lizenz einer Komponente ist an\n"
+"den Autor der Komponente und nicht an Mandriva S. A. zu richten. Die\n"
+"von Mandriva S. A. erstellten Programme unterliegen der GPL.\n"
+"Von Mandriva S. A. geschriebene Dokumentation unterliegt einer\n"
+"spezifischen Lizenz. Bitte lesen Sie die Dokumentation für weitere\n"
+"Details.\n"
+"\n"
+"\n"
+"4. Geistiges Eigentum\n"
+"\n"
+"Alle Rechte an den Komponenten der Software-Produkte liegen bei den\n"
+"entsprechenden Autoren und sind durch die Urheberrechtsgesetze für\n"
+"Softwareprodukte geschützt.\n"
+"Mandriva S. A. behält sich das Recht vor, die Software-Produkte zu\n"
+"modifizieren und anzupassen.\n"
+"„Mandriva“, „Mandriva Linux“ und entsprechende Logos sind eingetragene\n"
+"Warenzeichen der Mandriva S. A..\n"
+"\n"
+"\n"
+"5. Gesetzliche Bestimmungen\n"
+"\n"
+"Wenn irgendein Teil dieses Lizenzabkommens durch einen Gerichtsentscheid\n"
+"für ungültig, illegal oder inakzeptabel erklärt wird, wird dieser Teil\n"
+"aus dem Abkommen ausgeschlossen. Sie bleiben weiterhin an die anderen,\n"
+"anwendbaren Teile gebunden.\n"
+"Die Bedingungen dieses Lizenzabkommens unterliegen den Gesetzen von\n"
+"Frankreich. Alle Unstimmigkeiten bezüglich der Bedingungen dieser Lizenz\n"
+"werden vorzugsweise außergerichtlich beigelegt. Letztes Mittel ist das\n"
+"zuständige Gericht in Paris, Frankreich.\n"
+"Zu jeglicher Frage zu diesem Dokument kontaktieren Sie bitte\n"
+"Mandriva S. A.\n"
+
+#: messages.pm:90
+#, c-format
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
+"Warnung: Freie Software ist nicht notwendigerweise patentfrei, und einige\n"
+"der beigefügten Software könnte durch ein Patent geschützt sein in Ihrem "
+"Land.\n"
+"Zum Beispiel verlangen die beigefügten MP3-Decoder eine Lizenz für weiter-\n"
+"gehende Nutzung (siehe dazu: http://www.mp3licensing.com). Falls Sie "
+"unsicher \n"
+"sind ob ein Patent sie betrifft prüfen Sie die Gesetze Ihres Landes."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:98
+#, c-format
+msgid ""
+"\n"
+"Warning\n"
+"\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
+"\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
+msgstr ""
+"\n"
+"Achtung\n"
+"\n"
+"Bitte lesen Sie die nachfolgenden Ausführungen sorgfältig. Wenn Sie mit\n"
+"irgendeinem Teil nicht einverstanden sind, dürfen Sie nicht den Inhalt\n"
+"der folgenden CDs installieren. Klicken Sie auf „Zurückweisen“, um die\n"
+"Installation ohne Verwendung dieser CDs fortzusetzen.\n"
+"\n"
+"\n"
+"Einige Komponenten auf den nachfolgenden CDs unterliegen nicht der GPL\n"
+"oder ähnlichen Lizenzabkommen. Jede dieser Komponenten unterliegt dann\n"
+"den Bedingungen ihrer eigenen spezifischen Lizenz.\n"
+"Bitte lesen Sie diese Lizenzen sorgfältig und nur wenn Sie mit ihnen\n"
+"einverstanden sind, dürfen Sie die entsprechenden Produkte entsprechend\n"
+"ihrer Lizenz benutzen und weitergeben.\n"
+"Solche Lizenzen verbieten im allgemeinen das Transferieren, Duplizieren\n"
+"(außer für Sicherheitskopien), Weitergeben, Decompilieren, Disassamblen\n"
+"oder Verändern der Komponente.\n"
+"Jeder Bruch des Lizenzabkommens beendet sofort die Ihnen im Rahmen der\n"
+"Lizenz eingeräumten Rechte. Wenn die jeweilige Lizenz Ihnen nicht\n"
+"entsprechende Rechte einräumt, dürfen Sie die Programme nicht auf mehr\n"
+"als einem System installieren oder zur Benutzung in einem Netzwerk\n"
+"einrichten. Im Zweifelsfall kontaktieren Sie bitte den Vertreiber oder\n"
+"Herausgeber der jeweiligen Komponente.\n"
+"Transfer an Dritte oder Kopieren solcher Komponenten inklusive ihrer\n"
+"Dokumentation ist normalerweise verboten.\n"
+"\n"
+"\n"
+"Alle Rechte an den Komponenten der nachfolgenden CDs liegen bei den\n"
+"jeweiligen Autoren und sind durch die Urheberrechtsgesetze für\n"
+"Softwareprodukte geschützt.\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:131
+#, c-format
+msgid ""
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press Enter to reboot.\n"
+"\n"
+"\n"
+"For information on fixes which are available for this release of Mandriva "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandriva Linux User's Guide."
+msgstr ""
+"Herzlichen Glückwunsch, die Installation ist abgeschlossen.\n"
+"Entfernen Sie die Startmedien (CD-ROMs / Disketten) und drücken Sie die "
+"Eingabetaste zum Neustart Ihres Rechners.\n"
+"\n"
+"Für Informationen zu Sicherheitsaktualisierungen dieser Version von Mandriva "
+"Linux informieren Sie sich bitte unter \n"
+"\n"
+"%s\n"
+"\n"
+"Wie Sie Ihr System warten können, erfahren Sie im Kapitel „Nach der "
+"Installation“ im offiziellen Benutzerhandbuch von Mandriva Linux."
#: modules/interactive.pm:19
-#, fuzzy, c-format
+#, c-format
msgid "This driver has no configuration parameter!"
-msgstr "USV-Treiber-Konfiguration"
+msgstr "Dieser Treiber hat keine Konfigurations-Parameter!"
#: modules/interactive.pm:22
#, c-format
@@ -9912,12 +5088,7 @@ msgstr "Installiere den Treiber für den Ethernet-Controller %s"
msgid "Installing driver for %s card %s"
msgstr "Installiere den Treiber für die %s Karte %s"
-#: modules/interactive.pm:99
-#, c-format
-msgid "(module %s)"
-msgstr "(Modul %s)"
-
-#: modules/interactive.pm:109
+#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9926,7 +5097,7 @@ msgstr ""
"Sie können nun die Optionen für Modul %s angeben.\n"
"Denken Sie daran, dass Adressen mit „0x“ beginnen müssen, etwa „0x300“"
-#: modules/interactive.pm:115
+#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -9937,18 +5108,18 @@ msgstr ""
"Optionen haben die Form „name=wert name2=wert2“.\n"
"Beispielsweise: „io=0x300 irq=7“"
-#: modules/interactive.pm:117
+#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "Modul-Optionen:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: modules/interactive.pm:130
+#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr "Welchen %s-Treiber soll ich versuchen?"
-#: modules/interactive.pm:139
+#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -9966,17 +5137,17 @@ msgstr ""
"Treiber kann in seltenen Fällen zum „Hängenbleiben“ des Rechners führen, was "
"jedoch keine Hardwareschäden nach sich ziehen sollte.)"
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "Automatische Erkennung"
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "Optionen angeben"
-#: modules/interactive.pm:155
+#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -9985,1945 +5156,17 @@ msgstr ""
"Laden von Modul %s schlug fehl.\n"
"Wollen Sie es erneut mit anderen Parametern versuchen?"
-#: modules/parameters.pm:49
-#, c-format
-msgid "a number"
-msgstr "eine Nummer"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d durch Kommas getrennte Nummern"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d durch Kommas getrennte Textfelder"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated numbers"
-msgstr "durch Kommas getrennte Nummern"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated strings"
-msgstr "durch Kommas getrennte Textfelder"
-
-#: mouse.pm:25
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - Maus"
-
-#: mouse.pm:31 security/level.pm:12
-#, c-format
-msgid "Standard"
-msgstr "Standard"
-
-#: mouse.pm:32
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MausMan/FirstMaus (Seriell)"
-
-#: mouse.pm:33
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Generische PS2 Rad-Maus"
-
-#: mouse.pm:34
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/modem.pm:68 network/modem.pm:81 network/modem.pm:86
-#: network/modem.pm:115 network/netconnect.pm:596 network/netconnect.pm:601
-#: network/netconnect.pm:613 network/netconnect.pm:618
-#: network/netconnect.pm:634 network/netconnect.pm:636
-#, c-format
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: mouse.pm:39 mouse.pm:73
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Maus"
-
-#: mouse.pm:40 mouse.pm:68
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMaus"
-
-#: mouse.pm:41
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: mouse.pm:42 mouse.pm:52
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
-
-#: mouse.pm:47 mouse.pm:79
-#, c-format
-msgid "1 button"
-msgstr "1 Taste"
-
-#: mouse.pm:48 mouse.pm:57
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Generische 2 Tasten Maus/usr/share/sane/firmware"
-
-#: mouse.pm:50 mouse.pm:59
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Generische 3 Tasten Maus mit Mausrad Emulation"
-
-#: mouse.pm:51
-#, c-format
-msgid "Wheel"
-msgstr "Rad"
-
-#: mouse.pm:55
-#, c-format
-msgid "serial"
-msgstr "Seriell"
-
-#: mouse.pm:58
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Generische 3 Tasten Maus"
-
-#: mouse.pm:60
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMaus"
-
-#: mouse.pm:61
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MausMan/FirstMaus"
-
-#: mouse.pm:62
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MausMan mitMausrad Emulation"
-
-#: mouse.pm:63
-#, c-format
-msgid "Mouse Systems"
-msgstr "Maus-Systeme"
-
-#: mouse.pm:65
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Serie"
-
-#: mouse.pm:66
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Serie mit Mausrad Emulation"
-
-#: mouse.pm:67
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MausMan+/FirstMaus+"
-
-#: mouse.pm:69
-#, c-format
-msgid "MM Series"
-msgstr "MM Serie"
-
-#: mouse.pm:70
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: mouse.pm:71
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Maus (Seriell, alter C7 Typ)"
-
-#: mouse.pm:72
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech Maus (Seriell, alter C7 Typ) mit Mausrad Emulation"
-
-#: mouse.pm:74
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Maus mit Mausrad Emulation"
-
-#: mouse.pm:77
-#, c-format
-msgid "busmouse"
-msgstr "Bus-Maus"
-
-#: mouse.pm:80
-#, c-format
-msgid "2 buttons"
-msgstr "2 Tasten"
-
-#: mouse.pm:81
-#, c-format
-msgid "3 buttons"
-msgstr "3 Tasten"
-
-#: mouse.pm:82
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3 Tasten mit Mausrad Emulation"
-
-#: mouse.pm:86
-#, c-format
-msgid "Universal"
-msgstr "Universell"
-
-#: mouse.pm:88
-#, c-format
-msgid "Any PS/2 & USB mice"
-msgstr "Einige PS/2 & USB Mäuse"
-
-#: mouse.pm:89
-#, c-format
-msgid "Microsoft Xbox Controller S"
-msgstr "Microsoft Xbox Controller S"
-
-#: mouse.pm:93 standalone/drakconnect:351 standalone/drakvpn:1126
-#, c-format
-msgid "none"
-msgstr "keine"
-
-#: mouse.pm:95
-#, c-format
-msgid "No mouse"
-msgstr "Keine Maus"
-
-#: mouse.pm:304 mouse.pm:367 mouse.pm:376 mouse.pm:435
-#, c-format
-msgid "Synaptics Touchpad"
-msgstr "Synaptics Touchpad"
-
-#: mouse.pm:561
-#, c-format
-msgid "Please test the mouse"
-msgstr "Bitte testen Sie Ihre Maus"
-
-#: mouse.pm:563
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Um Ihre Maus zu aktivieren,"
-
-#: mouse.pm:564
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "BEWEGEN SIE IHR MAUS-RAD!"
-
-#: network/drakfirewall.pm:12 share/compssUsers.pl:85
-#, c-format
-msgid "Web Server"
-msgstr "Webserver"
-
-#: network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "Domänen-Namenserver (DNS)"
-
-#: network/drakfirewall.pm:22
-#, c-format
-msgid "SSH server"
-msgstr "SSH-Server"
-
-#: network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "FTP-Server"
-
-#: network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "E-Mailserver"
-
-#: network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP und IMAP-Server"
-
-#: network/drakfirewall.pm:42
-#, c-format
-msgid "Telnet server"
-msgstr "Telnet-Server"
-
-#: network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr "Windows-Dateifreigabe (SMB)"
-
-#: network/drakfirewall.pm:54
-#, c-format
-msgid "CUPS server"
-msgstr "CUPS-Server"
-
-#: network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr "Echo-Anfrage (Ping)"
-
-#: network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr "BitTorrent"
-
-#: network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr "Portscan-Erkennung"
-
-#: network/drakfirewall.pm:165
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-"DrakFirewall-Konfigurator\n"
-"\n"
-"Hiermit konfigurieren Sie eine persönliche Firewall für diesen\n"
-"Mandriva Linux-Rechner. Sollten Sie an einer speziellen ausgereiften\n"
-"Firewall-Lösung interessiert sein, schauen Sie sich nach der speziell\n"
-"dafür entwickelten Mandriva Security-Firewall-Distribution um."
-
-#: network/drakfirewall.pm:171
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-"DrakFirewall-Konfigurator\n"
-"\n"
-"Stellen Sie sicher, dass Sie Ihre Netzwerk-/Internetverbindung\n"
-"mit DrakConnect eingerichtet haben, bevor Sie fortfahren."
-
-#: network/drakfirewall.pm:188
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "Auf welche Dienste darf aus dem Internet zugegriffen werden?"
-
-#: network/drakfirewall.pm:191
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-"Sie können verschiedene Ports angeben. \n"
-"Korrekte Beispiele sind: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Für weitere Informationen schauen Sie in „/etc/services“."
-
-#: network/drakfirewall.pm:197
-#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-"Angabe eines ungültigen Ports: „%s“.\n"
-"Das Format lautet: „port/tcp“ oder „port/udp“, \n"
-"wobei Port eine Zahl zwischen 1 und 65535 ist.\n"
-"\n"
-"Sie können auch einen Portbereich (z.B. 24300:24350/udp) angeben."
-
-#: network/drakfirewall.pm:207
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Alles (Keine Firewall)"
-
-#: network/drakfirewall.pm:209
-#, c-format
-msgid "Other ports"
-msgstr "Andere Ports"
-
-#: network/drakfirewall.pm:253 network/drakfirewall.pm:256
-#: standalone/drakids:33 standalone/drakids:136 standalone/drakids:145
-#: standalone/drakids:170 standalone/drakids:179 standalone/drakids:189
-#: standalone/drakids:265 standalone/net_applet:59 standalone/net_applet:202
-#: standalone/net_applet:385 standalone/net_applet:422
-#, c-format
-msgid "Interactive Firewall"
-msgstr "Interaktive Firewall"
-
-#: network/drakfirewall.pm:254
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activity should be watched."
-msgstr ""
-"Sie können gewarnt werden, wenn jemand auf einen Dienst zugreift oder "
-"versucht, in Ihren Rechner einzudringen.\n"
-"Bitte wählen Sie, welche Netzwerk-Aktivitäten beobachtet werden sollen."
-
-#: network/drakfirewall.pm:259
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr "Interaktive Firewall verwenden"
-
-#: network/ifw.pm:129
-#, c-format
-msgid "Port scanning"
-msgstr "Portscanning"
-
-#: network/ifw.pm:130
-#, c-format
-msgid "Service attack"
-msgstr "Dienstangriff"
-
-#: network/ifw.pm:131
-#, c-format
-msgid "Password cracking"
-msgstr "Passwortknacken"
-
-#: network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr "\"%s\" -Angriff"
-
-#: network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr "Ein Portscan-Angriff wurde durch %s versucht."
-
-#: network/ifw.pm:135
-#, c-format
-msgid "The %s service has been attacked by %s."
-msgstr "Der %s Dienst wurde durch %s angegriffen."
-
-#: network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr "Ein Passwort-Angriff wurde durch %s versucht."
-
-#: network/ifw.pm:137
-#, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr "Ein \"%s\"-Angriff wurde durch %s versucht"
-
-#: network/isdn.pm:117 network/netconnect.pm:463 network/netconnect.pm:557
-#: network/netconnect.pm:560 network/netconnect.pm:708
-#: network/netconnect.pm:712
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr "Nicht aufgeführt - manuell eintragen"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "Keine Ahnung"
-
-#: network/isdn.pm:161 network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: network/isdn.pm:162 network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/netconnect.pm:601 network/netconnect.pm:618
-#: network/netconnect.pm:634
-#, c-format
-msgid "Manual"
-msgstr "Manuell"
-
-#: network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr "Es ist kein Gerät vorhanden, dass den %s ndiswrapper unterstützt!"
-
-#: network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr "Bitte wählen Sie den Windowstreiber (.inf Datei)"
-
-#: network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr "Konnte den %s ndiswrapper-Treiber nicht installieren!"
-
-#: network/ndiswrapper.pm:89
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr "Konnte das ndiswrapper-Modul nicht laden!"
-
-#: network/ndiswrapper.pm:95
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-"Das ausgewählte Gerät wurde bereits mit dem %s-Treiber konfiguriert.\n"
-"Möchten Sie wirklich einen ndiswrapper-Treiber verwenden?"
-
-#: network/ndiswrapper.pm:101
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr "Konnte die ndiswrapper-Schnittstelle nicht finden!"
-
-#: network/netconnect.pm:69 network/netconnect.pm:493
-#: network/netconnect.pm:505
-#, c-format
-msgid "Manual choice"
-msgstr "Manuelle Auswahl"
-
-#: network/netconnect.pm:69
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Interne ISDN-Karte"
-
-#: network/netconnect.pm:80 printer/printerdrake.pm:1622 standalone/drakups:72
-#, c-format
-msgid "Manual configuration"
-msgstr "Manuelle Konfiguration"
-
-#: network/netconnect.pm:81 standalone/drakroam:121
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr "Automatische IP (BOOTP/DHCP)"
-
-#: network/netconnect.pm:83
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
-msgstr "Automatische IP (BOOTP/DHCP/Zeroconf)"
-
-#: network/netconnect.pm:86
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protokoll für den Rest der Welt"
-
-#: network/netconnect.pm:88 standalone/drakconnect:563
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Europäisches Protokoll (EDSS1)"
-
-#: network/netconnect.pm:89 standalone/drakconnect:564
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Protokoll für den Rest der Welt \n"
-"ohne D-Kanal (Leased Lines)"
-
-#: network/netconnect.pm:103 standalone/harddrake2:328
-#: standalone/net_monitor:102 standalone/net_monitor:103
-#: standalone/net_monitor:108
-#, c-format
-msgid "unknown"
-msgstr "Unbekannt"
-
-#: network/netconnect.pm:120 network/thirdparty.pm:220
-#, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "Alcatel Speedtouch USB Modem"
-
-#: network/netconnect.pm:121
-#, c-format
-msgid "Sagem USB modem"
-msgstr "Sagem USB Modem"
-
-#: network/netconnect.pm:122
-#, c-format
-msgid "Bewan modem"
-msgstr "Bewan-Modem"
-
-#: network/netconnect.pm:123
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr "ECI-Hi-Focus-Modem"
-
-#: network/netconnect.pm:127
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr "Dynamic Host Configuration Protocol (DHCP)"
-
-#: network/netconnect.pm:128
-#, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "Manuelle TCP/IP Konfiguration"
-
-#: network/netconnect.pm:129
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr "Point to Point Tunneling Protocol (PPTP)"
-
-#: network/netconnect.pm:130
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr "PPP over Ethernet (PPPoE)"
-
-#: network/netconnect.pm:131
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr "PPP over ATM (PPPoA)"
-
-#: network/netconnect.pm:132
-#, c-format
-msgid "DSL over CAPI"
-msgstr "DSL über CAPI"
-
-#: network/netconnect.pm:136
-#, c-format
-msgid "Bridged Ethernet LLC"
-msgstr "Überbrücktes Ethernet LLC"
-
-#: network/netconnect.pm:137
-#, c-format
-msgid "Bridged Ethernet VC"
-msgstr "Überbrücktes Ethernet VC"
-
-#: network/netconnect.pm:138
-#, c-format
-msgid "Routed IP LLC"
-msgstr "Routed IP LLC"
-
-#: network/netconnect.pm:139
-#, c-format
-msgid "Routed IP VC"
-msgstr "Routed IP VC"
-
-#: network/netconnect.pm:140
-#, c-format
-msgid "PPPoA LLC"
-msgstr "PPPoA LLC"
-
-#: network/netconnect.pm:141
-#, c-format
-msgid "PPPoA VC"
-msgstr "PPPoA VC"
-
-#: network/netconnect.pm:145 standalone/drakconnect:498
-#, c-format
-msgid "Script-based"
-msgstr "Skript-basiert"
-
-#: network/netconnect.pm:146 standalone/drakconnect:498
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: network/netconnect.pm:147 standalone/drakconnect:498
-#, c-format
-msgid "Terminal-based"
-msgstr "Terminal-basiert"
-
-#: network/netconnect.pm:148 standalone/drakconnect:498
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: network/netconnect.pm:149 standalone/drakconnect:498
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: network/netconnect.pm:250 standalone/drakconnect:56
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Netzwerk & Internet konfigurieren"
-
-#: network/netconnect.pm:256
-#, c-format
-msgid "LAN connection"
-msgstr "LAN-Verbindung"
-
-#: network/netconnect.pm:257 network/netconnect.pm:276 standalone/drakroam:182
-#: standalone/drakroam:220 standalone/drakroam:223
-#, c-format
-msgid "Wireless connection"
-msgstr "Wireless Verbindung"
-
-#: network/netconnect.pm:258
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL-Verbindung"
-
-#: network/netconnect.pm:259
-#, c-format
-msgid "Cable connection"
-msgstr "Kabel-Verbindung"
-
-#: network/netconnect.pm:260
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN-Verbindung"
-
-#: network/netconnect.pm:261
-#, c-format
-msgid "Modem connection"
-msgstr "Modem-Verbindung"
-
-#: network/netconnect.pm:262
-#, c-format
-msgid "DVB connection"
-msgstr "DVB-Verbindung"
-
-#: network/netconnect.pm:272
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Wählen Sie die Verbindung, die Sie konfigurieren wollen"
-
-#: network/netconnect.pm:287 network/netconnect.pm:786
-#, c-format
-msgid "Connection Configuration"
-msgstr "Verbindungskonfiguration"
-
-#: network/netconnect.pm:287 network/netconnect.pm:787
-#, c-format
-msgid "Please fill or check the field below"
-msgstr ""
-"Bitte füllen Sie die folgen Felder aus \n"
-"bzw. makieren Sie die korrekten Angaben"
-
-#: network/netconnect.pm:290
-#, c-format
-msgid "Your personal phone number"
-msgstr "Ihre eigene Telefonnummer"
-
-#: network/netconnect.pm:291 network/netconnect.pm:790
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Name des Providers (z.B. provider.net) "
-
-#: network/netconnect.pm:292 standalone/drakconnect:493
-#, c-format
-msgid "Provider phone number"
-msgstr "Telefonnummer des Providers"
-
-#: network/netconnect.pm:293
-#, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "Erster DNS des Providers (optional)"
-
-#: network/netconnect.pm:294
-#, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "Zweiter DNS des Providers (optional)"
-
-#: network/netconnect.pm:295 standalone/drakconnect:444
-#, c-format
-msgid "Dialing mode"
-msgstr "Wählmodus"
-
-#: network/netconnect.pm:296 standalone/drakconnect:449
-#: standalone/drakconnect:517
-#, c-format
-msgid "Connection speed"
-msgstr "Verbindungsgeschwindigkeit"
-
-#: network/netconnect.pm:297 standalone/drakconnect:454
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Verbindungs-Timeout (in Sec)"
-
-#: network/netconnect.pm:298 network/netconnect.pm:323
-#: network/netconnect.pm:793 standalone/drakconnect:491
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Benutzername (Login)"
-
-#: network/netconnect.pm:299 network/netconnect.pm:324
-#: network/netconnect.pm:794 standalone/drakconnect:492
-#, c-format
-msgid "Account Password"
-msgstr "Passwort"
-
-#: network/netconnect.pm:300 standalone/drakconnect:554
-#, c-format
-msgid "Card IRQ"
-msgstr "Karten-IRQ"
-
-# Speicher ?
-#: network/netconnect.pm:301 standalone/drakconnect:555
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Karten Mem (DMA)"
-
-#: network/netconnect.pm:302 standalone/drakconnect:556
-#, c-format
-msgid "Card IO"
-msgstr "Karten-E/A"
-
-#: network/netconnect.pm:303 standalone/drakconnect:557
-#, c-format
-msgid "Card IO_0"
-msgstr "Karten-E/A_0"
-
-#: network/netconnect.pm:304
-#, c-format
-msgid "Card IO_1"
-msgstr "Karten-E/A_1"
-
-#: network/netconnect.pm:319
-#, c-format
-msgid "Cable: account options"
-msgstr "Kabel: Kontoeinstellungen"
-
-#: network/netconnect.pm:322
-#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr "Benutze BPALogin (Für Telstra nötig)"
-
-#: network/netconnect.pm:348 network/netconnect.pm:670
-#: network/netconnect.pm:826 network/netconnect.pm:1170
-#, c-format
-msgid "Select the network interface to configure:"
-msgstr "Wählen Sie die Netzwerkkarte zum konfigurieren"
-
-#: network/netconnect.pm:350 network/netconnect.pm:385
-#: network/netconnect.pm:671 network/netconnect.pm:828 network/shorewall.pm:70
-#: standalone/drakconnect:714
-#, c-format
-msgid "Net Device"
-msgstr "Netz-Gerät:"
-
-#: network/netconnect.pm:351 network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr "Externes ISDN-Modem"
-
-#: network/netconnect.pm:384 standalone/harddrake2:215
-#, c-format
-msgid "Select a device!"
-msgstr "Wählen Sie ein Gerät!"
-
-#: network/netconnect.pm:393 network/netconnect.pm:403
-#: network/netconnect.pm:413 network/netconnect.pm:446
-#: network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "ISDN-Konfiguration"
-
-#: network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Welchen Kartentyp haben Sie?"
-
-#: network/netconnect.pm:404
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"Falls Sie eine ISA-Karte besitzen, sollten die Einstellungen auf dem "
-"nächsten Schirm korrekt sein.\n"
-"\n"
-"Falls Sie eine PCMCIA-Karte besitzen, müssen Sie IRQ und E/A-Bereich Ihrer "
-"Karte kennen.\n"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "Fortfahren"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "Abbruch"
-
-#: network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Welche der folgenden ist Ihre ISDN-Karte?"
-
-#: network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-"Für dieses Modem ist ein CAPI-Treiber verfügbar. Dieser CAPI-Treiber bietet "
-"mehr Möglichkeiten als der freie Treiber (z.B. das Senden von Faxen). "
-"Welchen Treiber wollen Sie verwenden?"
-
-#: network/netconnect.pm:434 standalone/drakconnect:109 standalone/drakups:249
-#: standalone/harddrake2:133
-#, c-format
-msgid "Driver"
-msgstr "Treiber"
-
-#: network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Welches Protokoll wollen Sie verwenden?"
-
-#: network/netconnect.pm:448 standalone/drakconnect:109
-#: standalone/drakconnect:300 standalone/drakconnect:562
-#: standalone/drakids:207 standalone/drakvpn:1128
-#, c-format
-msgid "Protocol"
-msgstr "Protokoll"
-
-#: network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"Wählen Sie Ihren Netzanbieter.\n"
-"Sollte er nicht aufgeführt sein, wählen Sie „Nicht aufgeführt“"
-
-#: network/netconnect.pm:462 network/netconnect.pm:556
-#: network/netconnect.pm:707
-#, c-format
-msgid "Provider:"
-msgstr "Provider:"
-
-#: network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"Ihr Modem wird nicht durch das System unterstützt.\n"
-"Schauen Sie unter http://www.linmodems.org"
-
-#: network/netconnect.pm:490
-#, c-format
-msgid "Select the modem to configure:"
-msgstr "Zu konfigurierendes Modem auswählen:"
-
-#: network/netconnect.pm:525
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Bitte wählen Sie den seriellen Anschluss, an dem Ihr Modem hängt."
-
-#: network/netconnect.pm:554
-#, c-format
-msgid "Select your provider:"
-msgstr "Wählen Sie ihren Anbieter:"
-
-#: network/netconnect.pm:578
-#, c-format
-msgid "Dialup: account options"
-msgstr "Einwahl: Kontodaten"
-
-#: network/netconnect.pm:581
-#, c-format
-msgid "Connection name"
-msgstr "Name der Verbindung"
-
-#: network/netconnect.pm:582
-#, c-format
-msgid "Phone number"
-msgstr "Telefonnummer"
-
-#: network/netconnect.pm:583
-#, c-format
-msgid "Login ID"
-msgstr "Login ID"
-
-#: network/netconnect.pm:598 network/netconnect.pm:631
-#, c-format
-msgid "Dialup: IP parameters"
-msgstr "Verbindungsaufbau: IP Parameter"
-
-#: network/netconnect.pm:601
-#, c-format
-msgid "IP parameters"
-msgstr "IP Parameter"
-
-#: network/netconnect.pm:602 network/netconnect.pm:941
-#: printer/printerdrake.pm:460 standalone/drakconnect:109
-#: standalone/drakconnect:316 standalone/drakconnect:882
-#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:284
-#, c-format
-msgid "IP address"
-msgstr "IP-Adresse"
-
-#: network/netconnect.pm:603
-#, c-format
-msgid "Subnet mask"
-msgstr "Subnetzmaske"
-
-#: network/netconnect.pm:615
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr "Verbindungsaufbau: DNS Parameter"
-
-#: network/netconnect.pm:618
-#, c-format
-msgid "DNS"
-msgstr "DNS"
-
-#: network/netconnect.pm:619
-#, c-format
-msgid "Domain name"
-msgstr "Name der Domäne"
-
-#: network/netconnect.pm:620 network/netconnect.pm:791
-#: standalone/drakconnect:992
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Erster DNS-Server (optional)"
-
-#: network/netconnect.pm:621 network/netconnect.pm:792
-#: standalone/drakconnect:993
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Zweiter DNS-Server (optional)"
-
-#: network/netconnect.pm:622
-#, c-format
-msgid "Set hostname from IP"
-msgstr "Setze Name des Hosts von IP Adresse"
-
-#: network/netconnect.pm:634 standalone/drakconnect:327
-#, c-format
-msgid "Gateway"
-msgstr "Gateway"
-
-#: network/netconnect.pm:635 standalone/drakroam:124
-#, c-format
-msgid "Gateway IP address"
-msgstr "Gateway IP-Adresse"
-
-#: network/netconnect.pm:670
-#, c-format
-msgid "ADSL configuration"
-msgstr "ADSL-Konfiguration"
-
-#: network/netconnect.pm:705
-#, c-format
-msgid "Please choose your ADSL provider"
-msgstr "Bitte wählen Sie Ihren ADSL-Anbieter."
-
-#: network/netconnect.pm:735
-#, c-format
-msgid ""
-"Please choose your DSL connection type.\n"
-"If you do not know it, keep the preselected type."
-msgstr ""
-"Bitte wählen Sie Ihren DSL-Verbindungstyp.\n"
-"Wenn Sie ihn nicht kennen, behalten Sie den vorausgewählten Typ bei."
-
-#: network/netconnect.pm:738
-#, c-format
-msgid "ADSL connection type:"
-msgstr "Art der ADSL-Verbindung:"
-
-#: network/netconnect.pm:796
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr "Virtuelle Pfad-ID (VPI):"
-
-#: network/netconnect.pm:797
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr "Virtual Circuit ID (VCI):"
-
-#: network/netconnect.pm:800
-#, c-format
-msgid "Encapsulation:"
-msgstr "Einkapselung"
-
-#: network/netconnect.pm:830
-#, c-format
-msgid "Manually load a driver"
-msgstr "Treiber von Hand laden"
-
-#: network/netconnect.pm:831
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr "Verwende einen Windowstreiber (mit ndiswrapper)"
-
-#: network/netconnect.pm:896
-#, c-format
-msgid "Zeroconf hostname resolution"
-msgstr "Zeroconf-Namensauflösung"
-
-#: network/netconnect.pm:897 network/netconnect.pm:928
-#, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "Konfiguriere Netzwerkgerät %s (Treiber %s)."
-
-#: network/netconnect.pm:898
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use"
-msgstr ""
-"Die folgenden Protokolle können verwendet werden, um eine LAN-Verbindung zu "
-"konfigurieren. Bitte wählen Sie ein Protokoll aus."
-
-#: network/netconnect.pm:929
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Bitte geben Sie die IP-Parameter dieser Maschine ein.\n"
-"Jeder Eintrag muss als dezimale IP-Adresse in Punktschreibweise \n"
-"angegeben werden (etwa „192.168.1.42“)."
-
-#: network/netconnect.pm:936 standalone/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Name des Hosts über DHCP zuweisen"
-
-#: network/netconnect.pm:937 standalone/drakconnect:375
-#, c-format
-msgid "DHCP host name"
-msgstr "DHCP-Rechnername"
-
-#: network/netconnect.pm:942 standalone/drakconnect:321
-#: standalone/drakconnect:883 standalone/drakgw:181
-#, c-format
-msgid "Netmask"
-msgstr "Netzmaske"
-
-#: network/netconnect.pm:944 standalone/drakconnect:437
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Netzwerkkarten-ID überwachen (sinnvoll für Laptops)"
-
-#: network/netconnect.pm:945 standalone/drakconnect:438
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Netzwerk Hotplugging"
-
-#: network/netconnect.pm:947 standalone/drakconnect:432
-#, c-format
-msgid "Start at boot"
-msgstr "Beim Systemstart aktivieren"
-
-#: network/netconnect.pm:949 standalone/drakconnect:460
-#, c-format
-msgid "Metric"
-msgstr "Metrisch"
-
-#: network/netconnect.pm:950
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr "Aktiviere IPv6-zu-IPv4-Tunnel"
-
-#: network/netconnect.pm:952 standalone/drakconnect:369
-#: standalone/drakconnect:886
-#, c-format
-msgid "DHCP client"
-msgstr "DHCP-Client"
-
-#: network/netconnect.pm:954 standalone/drakconnect:379
-#, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "DHCP-Zeitschranke (in Sekunden)"
-
-#: network/netconnect.pm:955 standalone/drakconnect:382
-#, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "DNS-Server via DHCP bekommen"
-
-#: network/netconnect.pm:956 standalone/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr "YP-Server via DHCP bekommen"
-
-#: network/netconnect.pm:957 standalone/drakconnect:384
-#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr "NTPD-Server via DHCP bekommen"
-
-#: network/netconnect.pm:965 printer/printerdrake.pm:1876
-#: standalone/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Die IP-Adresse sollte etwa die Form „192.168.1.42“ haben!"
-
-#: network/netconnect.pm:969 standalone/drakconnect:680
-#, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "Die Netzmaske sollte das Format 255.255.224.0 haben"
-
-#: network/netconnect.pm:973
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr "Warnung : IP-Adresse %s ist üblicherweise reserviert !"
-
-#: network/netconnect.pm:978 standalone/drakTermServ:1927
-#: standalone/drakTermServ:1928 standalone/drakTermServ:1929
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s bereits anderweitig genutzt\n"
-
-#: network/netconnect.pm:1018
-#, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "Wählen Sie einen ndiswrapper-Treiber"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr "Verwende den ndiswrapper-Treiber %s"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Install a new driver"
-msgstr "Einen neuen Treiber installieren"
-
-#: network/netconnect.pm:1032
-#, c-format
-msgid "Select a device:"
-msgstr "Wählen Sie ein Gerät aus:"
-
-#: network/netconnect.pm:1061
-#, c-format
-msgid "Please enter the wireless parameters for this card:"
-msgstr ""
-"Bitte geben Sie die Parameter für die drahtlose Verbindung dieser Karte ein:"
-
-#: network/netconnect.pm:1064 standalone/drakconnect:404
-#: standalone/drakroam:52
-#, c-format
-msgid "Operating Mode"
-msgstr "Betriebsmodus"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Ad-hoc"
-msgstr "Spontan"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Managed"
-msgstr "Geführt"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Master"
-msgstr "Master"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Repeater"
-msgstr "Repeater"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Secondary"
-msgstr "Sekundär"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Auto"
-msgstr "Automatisch"
-
-#: network/netconnect.pm:1068 standalone/drakconnect:405
-#: standalone/drakroam:115
-#, c-format
-msgid "Network name (ESSID)"
-msgstr "Netzwerkname (ESSID)"
-
-#: network/netconnect.pm:1069 standalone/drakroam:116
-#, c-format
-msgid "Encryption mode"
-msgstr "Verschlüsselungsmodus"
-
-#: network/netconnect.pm:1074
-#, c-format
-msgid "Allow access point roaming"
-msgstr "Erlaube Access Point Roaming"
-
-#: network/netconnect.pm:1076 standalone/drakconnect:406
-#, c-format
-msgid "Network ID"
-msgstr "Netzwerk-ID"
-
-#: network/netconnect.pm:1077 standalone/drakconnect:407
-#, c-format
-msgid "Operating frequency"
-msgstr "Übertragungsfrequenz:"
-
-#: network/netconnect.pm:1078 standalone/drakconnect:408
-#, c-format
-msgid "Sensitivity threshold"
-msgstr "Empfindlichkeitsschwelle"
-
-#: network/netconnect.pm:1079 standalone/drakconnect:409
-#, c-format
-msgid "Bitrate (in b/s)"
-msgstr "Bitrate (in b/s)"
-
-#: network/netconnect.pm:1080 standalone/drakconnect:420
-#, c-format
-msgid "RTS/CTS"
-msgstr "RTS/CTS"
-
-#: network/netconnect.pm:1081
-#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
-"RTS/CTS fügt einen Handshake vor jeder Paketübertragung ein, um "
-"sicherzustellen, dass der Kanal sauber ist. Dies erhöht den Aufwand, aber "
-"verbessert die Leistung bei versteckten Knoten oder einer großen Anzahl "
-"aktiver Knoten. Dieser Parameter setzt die Größe des kleinsten Pakets, für "
-"das der Knoten ein RTS sendet. Die Angabe der maximalen Paketgröße schaltet "
-"dieses Verfahren aus. Sie können diesen Parameter auch auf „auto“, „fest“ "
-"oder „aus“ stellen."
-
-#: network/netconnect.pm:1088 standalone/drakconnect:421
-#, c-format
-msgid "Fragmentation"
-msgstr "Fragmentierung"
-
-#: network/netconnect.pm:1089 standalone/drakconnect:422
-#, c-format
-msgid "iwconfig command extra arguments"
-msgstr "Zusätzlche Schalter für den Befehl lwconfig"
-
-#: network/netconnect.pm:1090
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-"Hier können Sie zusätzliche Parameter einstellen wie:\n"
-"ap, Kanal, Übertragung, enc, Leistung, Wiederholung, sens, Sendeleistung\n"
-"(Nick ist bereits als Hostname gesetzt).\n"
-"Die iwconfig(8) Manpages liefern weitere Informationen."
-
-#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1097 standalone/drakconnect:423
-#, c-format
-msgid "iwspy command extra arguments"
-msgstr "Zusätzliche Schalter für den Befehl lwspy"
-
-#: network/netconnect.pm:1098
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-"lwspy setzt eine Adressliste an einer drahtlosen Netzwerk-\n"
-"schnittstelle und gibt die Verbindungsqualität für jede Adresse zurück. \n"
-"\n"
-"Diese Information ist identisch mit der aus /proc/net/wireless :\n"
-"Verbindungsqualität, Signalstärke und Rauschpegel.\n"
-"\n"
-"Die iwpspy(8) Manpages liefern weitere Informationen."
-
-#: network/netconnect.pm:1107 standalone/drakconnect:424
-#, c-format
-msgid "iwpriv command extra arguments"
-msgstr "Extra-Schalter für den Befehl lwpriv"
-
-#: network/netconnect.pm:1108
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-"lwpriv setzt optionale (private) Parameter für die drahtlose "
-"Netzwerkschnittstelle.\n"
-"\n"
-"lwpriv nimmt die zum jeweiligen Treiber gehörigen Parameter und "
-"Einstellungen vor \n"
-"(gegenüber iwconfig, was allgemeine Parameter behandelt.).\n"
-"\n"
-"Theoretisch sollte die Dokumentation jedes Treibers die spezifischen "
-"Parameter\n"
-"und deren Auswirkung erläutern.\n"
-"\n"
-"Die Manpages zu iwpriv(8) geben weitere Informationen."
-
-#: network/netconnect.pm:1123
-#, c-format
-msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
-msgstr ""
-"Die Frequenz sollte entweder eine Mengeneinheit aus ‚K‘, ‚M‘ und ‚G‘ nutzen "
-"(etwa „2.46G“ für 2,46GHz) oder die entsprechende Anzahl Nullen angehängt "
-"werden."
-
-#: network/netconnect.pm:1127
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-"Die Rate sollte entweder eine Mengeneinheit aus ‚K‘, ‚M‘ und ‚G‘ nutzen "
-"(etwa „11M“ für 11M) oder die entsprechende Anzahl Nullen angehängt werden."
-
-#: network/netconnect.pm:1170
-#, c-format
-msgid "DVB configuration"
-msgstr "DVB-Konfiguration"
-
-#: network/netconnect.pm:1171
-#, c-format
-msgid "DVB Adapter"
-msgstr "DVB-Anschluss"
-
-#: network/netconnect.pm:1188
-#, c-format
-msgid "DVB adapter settings"
-msgstr "DVB-Anschluss-Einstellungen"
-
-#: network/netconnect.pm:1191
-#, c-format
-msgid "Adapter card"
-msgstr "Anschlusskarte"
-
-#: network/netconnect.pm:1192
-#, c-format
-msgid "Net demux"
-msgstr "Netz-Demultiplexer"
-
-#: network/netconnect.pm:1193
-#, c-format
-msgid "PID"
-msgstr "PID"
-
-#: network/netconnect.pm:1221
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Bitte geben Sie ihren Rechnernamen an.\n"
-"Ihr Rechnername sollte auch die Domäne beinhalten,\n"
-"etwa „meinrechner.meineabteilung.meinefirma.de“.\n"
-"Falls Sie ein Gateway verwenden, sollten Sie auch dessen IP-Adresse angeben."
-
-#: network/netconnect.pm:1226
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr "Zuguterletzt kann die DNS Server IP Adresse eingegeben werden."
-
-#: network/netconnect.pm:1228 standalone/drakconnect:991
-#, c-format
-msgid "Host name (optional)"
-msgstr "Rechnername (optional)"
-
-#: network/netconnect.pm:1228 standalone/drakhosts:197
-#, c-format
-msgid "Host name"
-msgstr "Rechnername"
-
-#: network/netconnect.pm:1230
-#, c-format
-msgid "DNS server 1"
-msgstr "DNS-Server 1"
-
-#: network/netconnect.pm:1231
-#, c-format
-msgid "DNS server 2"
-msgstr "DNS-Server 2"
-
-#: network/netconnect.pm:1232
-#, c-format
-msgid "DNS server 3"
-msgstr "DNS-Server 3"
-
-#: network/netconnect.pm:1233
-#, c-format
-msgid "Search domain"
-msgstr "Suchdomäne"
-
-#: network/netconnect.pm:1234
-#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr ""
-"Standardmäßig wird die Suchdomäne aus dem FQDN (fully qualified domain name) "
-"erzeugt."
-
-#: network/netconnect.pm:1235
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Gateway (etwa %s)"
-
-#: network/netconnect.pm:1237
-#, c-format
-msgid "Gateway device"
-msgstr "Gateway-Gerät"
-
-#: network/netconnect.pm:1246
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr ""
-"Die IP-Adresse des DNS-Servers sollte etwa die Form „192.168.1.42“ haben!"
-
-#: network/netconnect.pm:1251 standalone/drakconnect:685
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Die IP-Adresse des Gateways sollte etwa die Form „192.168.1.42“ haben!"
-
-#: network/netconnect.pm:1264
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-"Geben Sie, wenn gewünscht, einen Zeroconf Rechnernamen ein.\n"
-"Das ist der Name, den Ihr Rechner zum Bekanntgeben seiner \n"
-"freigegebenen Ressourcen verwendet, die nicht vom Netzwerk\n"
-"verwaltet werden. In den meisten Netzwerken ist das nicht nötig."
-
-#: network/netconnect.pm:1268
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Zeroconf-Rechnername"
-
-#: network/netconnect.pm:1271
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "Der Zeroconf-Hostname muss einen . enthalten."
-
-#: network/netconnect.pm:1281
-#, c-format
-msgid "Do you want to allow users to start the connection?"
-msgstr "Möchten Sie Benutzern erlauben, diese Verbindung zu starten?"
-
-#: network/netconnect.pm:1294
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Möchten Sie die Verbindung beim Systemstart herstellen?"
-
-#: network/netconnect.pm:1310
-#, c-format
-msgid "Automatically at boot"
-msgstr "Automatisch beim Systemstart"
-
-#: network/netconnect.pm:1312
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr "Durch das Net Applet in der Kontrollleiste"
-
-#: network/netconnect.pm:1314
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr "von Hand (die Schnittstelle wird trotzdem bei Systemstart aktiviert)"
-
-#: network/netconnect.pm:1323
-#, c-format
-msgid "How do you want to dial this connection?"
-msgstr "Wie möchten Sie diese Verbindung wählen?"
-
-#: network/netconnect.pm:1336
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Möchten Sie jetzt versuchen eine Internetverbindung aufzubauen?"
-
-#: network/netconnect.pm:1344 standalone/drakconnect:1023
-#, c-format
-msgid "Testing your connection..."
-msgstr "Ich teste gerade Ihre Verbindung..."
-
-#: network/netconnect.pm:1369
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Das System ist jetzt mit dem Internet verbunden."
-
-#: network/netconnect.pm:1370
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Aus Sicherheitsgründen wird die Verbindung nun unterbrochen."
-
-#: network/netconnect.pm:1371
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Das System scheint nicht mit dem Internet verbunden zu sein.\n"
-"Versuchen Sie noch einmal Ihre Verbindung zu konfigurieren."
-
-#: network/netconnect.pm:1386
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-"Herzlichen Glückwunsch, die Netzwerk-/Internet-Einrichtung ist beendet.\n"
-"\n"
-
-#: network/netconnect.pm:1389
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Es ist sehr empfehlenswert, im Anschluss Ihre X-Oberfläche\n"
-"neu zu starten, um Probleme, die durch die Änderung des\n"
-"Rechnernamens hervorgerufen werden, zu vermeiden."
-
-#: network/netconnect.pm:1390
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-"Während der Konfiguration traten Fehler auf.\n"
-"Kontrollieren Sie Ihre Verbindung mit „net_monitor“ oder dem Mandriva "
-"Kontrollzentrum. Falls die Verbindung nicht funktioniert, sollten Sie erneut "
-"die Konfiguration starten."
-
-#: network/netconnect.pm:1402
-#, c-format
-msgid "(detected on port %s)"
-msgstr "(gefunden an Port %s)"
-
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected %s)"
-msgstr "(%s gefunden)"
-
-#: network/netconnect.pm:1404
-#, c-format
-msgid "(detected)"
-msgstr "(gefunden)"
-
-#: network/netconnect.pm:1405
-#, c-format
-msgid "Network Configuration"
-msgstr "Netzwerk konfigurieren"
-
-#: network/netconnect.pm:1406
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Da Sie eine Netzwerkinstallation durchführen, ist Ihr Netzwerk bereits\n"
-"konfiguriert. Wählen Sie „OK“, um diese Einstellung beizubehalten oder\n"
-"„Abbrechen“, um Ihre Internet- und Netzwerk-Konfiguration neu zu\n"
-"konfigurieren.\n"
-
-#: network/netconnect.pm:1409
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr "Das Netzwerk muss neu gestartet werden. Soll ich es neu starten?"
-
-#: network/netconnect.pm:1410
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Beim Neustart des Netzwerks trat ein Fehler auf: \n"
-"\n"
-"%s"
-
-#: network/netconnect.pm:1411
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-"Wir werden nun die Verbindung %s konfigurieren.\n"
-"\n"
-"\n"
-"Wählen Sie „%s“, um fortzufahren."
-
-#: network/netconnect.pm:1412
-#, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr "Konfiguration ist vollständig, wollen Sie diese jetzt anwenden ?"
-
-#: network/netconnect.pm:1413
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Sie haben verschiedene Varianten eingerichtet, sich mit dem\n"
-"Internet zu verbinden. Bitte wählen Sie eine aus.\n"
-"\n"
-
-#: network/netconnect.pm:1414
-#, c-format
-msgid "Internet connection"
-msgstr "Internet-Verbindung"
-
-#: network/netconnect.pm:1428
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr "Ein unerwarteter Fehler ist aufgetreten:/n %s"
-
-#: network/network.pm:411
-#, c-format
-msgid "Proxies configuration"
-msgstr "Proxies einstellen"
-
-#: network/network.pm:412
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-
-#: network/network.pm:413
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP-Proxy"
-
-#: network/network.pm:414
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: network/network.pm:415
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: network/network.pm:416
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP-Proxy"
-
-#: network/network.pm:420
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Proxy muss „http://...“ sein"
-
-#: network/network.pm:421
-#, c-format
-msgid "Proxy should be https?://..."
-msgstr ""
-
-#: network/network.pm:422
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "Die URL muss mit „http://“ oder „ftp://“ beginnen"
-
-#: network/shorewall.pm:55
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-"Bitte geben Sie den Namen der Schnittstelle ein, über die Sie ins Internet "
-"gehen.\n"
-"\n"
-"Beispiele:\n"
-"\t\tppp+ für Modem- oder DSL-Verbindungen, \n"
-"\t\teth0, oder eth1 für eine Kabel-Verbindung, \n"
-"\t\tippp+ für eine ISDN-Verbindung.\n"
-
-#: network/thirdparty.pm:232
-#, c-format
-msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
-msgstr ""
-"Kopieren Sie den Alcatel-Mikrocode als „mgmt.o“ nach „/usr/share/speedtouch“"
-
-#: network/thirdparty.pm:241
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-"Das ECI-Hi-Focus-Modem kann aufgrund eines binären Treiberproblems\n"
-"nicht unterstützt werden.\n"
-"\n"
-"Sie können einen Treiber finden unter http://eciadsl.flashtux.org/"
-
-#: network/thirdparty.pm:321
-#, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "Konnte die Pakete (%s) nicht installieren!"
-
-#: network/thirdparty.pm:329
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr "Einige Pakete (%s) werden benötigt, sind jedoch nicht verfügbar."
-
-#: network/thirdparty.pm:330
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-"Diese Pakete finden Sie im Mandriva Club oder in kommerziellen Mandriva-"
-"Ausgaben."
-
-#: network/thirdparty.pm:332
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-"Die benötigten Dateien können auch von dieser ULR installiert werden:\n"
-"%s"
-
-#: network/thirdparty.pm:372
-#, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "Konnte auf Ihrem Windows-System „%s“ nicht finden!"
-
-#: network/thirdparty.pm:374
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr "Es wurde kein Windows-System erkannt!"
-
-#: network/thirdparty.pm:384
-#, c-format
-msgid "Insert floppy"
-msgstr "Bitte Diskette einlegen"
-
-#: network/thirdparty.pm:385
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"Legen Sie eine FAT-formatierte Diskette in Laufwerk %s mit %s im "
-"Wurzelverzeichnis ein und drücken %s"
-
-#: network/thirdparty.pm:395
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Fehler beim Zugriff auf Diskette, kann Gerät %s nicht einbinden"
-
-#: network/thirdparty.pm:405
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-"Sie brauchen den Alcatel Microcode\n"
-"Sie können diesen jetzt von Diskette oder einer Windows Partition laden\n"
-"oder diesen Schritt überspringen und es später machen."
-
-#: network/thirdparty.pm:409 network/thirdparty.pm:411
-#, c-format
-msgid "Use a floppy"
-msgstr "Benutze eine Diskette"
-
-#: network/thirdparty.pm:409
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Windows-Partition benutzen"
-
-#: network/thirdparty.pm:419
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "Kopieren der Firmware fehlgeschlagen, Datei %s nicht gefunden"
-
-#: network/thirdparty.pm:424 standalone/drakautoinst:250
-#: standalone/drakvpn:888 standalone/scannerdrake:422
-#, c-format
-msgid "Congratulations!"
-msgstr "Herzlichen Glückwunsch!"
-
-#: network/thirdparty.pm:424
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "Kopieren der Firmware erfolgreich"
-
-#: network/thirdparty.pm:493
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr "Suche benötigte Software und Treiber..."
-
-#: network/thirdparty.pm:498
-#, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "Bitte warten Sie, die Geräte werden konfiguriert..."
-
-#: network/wireless.pm:8
-#, c-format
-msgid "Open WEP"
-msgstr "Offenes WEP"
-
-#: network/wireless.pm:9
-#, c-format
-msgid "Restricted WEP"
-msgstr "Eingeschränktes WEP"
-
-#: network/wireless.pm:10
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr "WPA mit verteilten Schlüsseln"
-
-#: partition_table.pm:391
+#: partition_table.pm:390
#, c-format
msgid "mount failed: "
msgstr "Fehler beim Einhängen: "
-#: partition_table.pm:496
+#: partition_table.pm:500
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Diese Rechnerarchitektur kennt keine erweiterten Partitionen"
-#: partition_table.pm:514
+#: partition_table.pm:518
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
@@ -11935,22 +5178,27 @@ msgstr ""
"Ihre primären Partitionen so verschieben, dass der Bereich direkt \n"
"neben der erweiterten Partition zu liegen kommt."
-#: partition_table.pm:605
+#: partition_table.pm:597
+#, c-format
+msgid "Error reading file %s"
+msgstr "Fehler beim Lesen der Datei %s"
+
+#: partition_table.pm:604
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restaurieren aus der Datei %s schlug fehl: %s"
-#: partition_table.pm:607
+#: partition_table.pm:606
#, c-format
msgid "Bad backup file"
msgstr "Fehlerhafte Datensicherungs-Datei"
-#: partition_table.pm:627
+#: partition_table.pm:626
#, c-format
msgid "Error writing to file %s"
msgstr "Fehler beim Schreiben in Datei %s"
-#: partition_table/raw.pm:253
+#: partition_table/raw.pm:264
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
@@ -11963,3556 +5211,50 @@ msgstr ""
"Das bedeutet, dass jeder Schreibvorgang auf der Platte zu zufälligen oder "
"beschädigten Daten führen wird."
-#: pkgs.pm:21
-#, c-format
-msgid "must have"
-msgstr "unbedingt notwendig"
-
-#: pkgs.pm:22
-#, c-format
-msgid "important"
-msgstr "wichtig"
-
-#: pkgs.pm:23
-#, c-format
-msgid "very nice"
-msgstr "sehr angenehm"
-
-#: pkgs.pm:24
-#, c-format
-msgid "nice"
-msgstr "angenehm"
-
-#: pkgs.pm:25
-#, c-format
-msgid "maybe"
-msgstr "eventuell"
-
-#: pkgs.pm:474
-#, c-format
-msgid "Downloading file %s..."
-msgstr "Lade Datei %s herunter..."
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on %s)"
-msgstr "(an %s)"
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on this machine)"
-msgstr "(an diesem Rechner)"
-
-#: printer/cups.pm:117 standalone/printerdrake:200
-#, c-format
-msgid "Configured on other machines"
-msgstr "Auf anderen Rechnern konfiguriert"
-
-#: printer/cups.pm:119
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Auf CUPS-Server „%s“"
-
-#: printer/cups.pm:119 printer/printerdrake.pm:4909
-#: printer/printerdrake.pm:4919 printer/printerdrake.pm:5078
-#: printer/printerdrake.pm:5089 printer/printerdrake.pm:5303
-#, c-format
-msgid " (Default)"
-msgstr " (Standard)"
-
-#: printer/data.pm:67
-#, c-format
-msgid "PDQ - Print, Do not Queue"
-msgstr "PDQ - Print, Do not Queue"
-
-#: printer/data.pm:68
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: printer/data.pm:80
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: printer/data.pm:81
-#, c-format
-msgid "LPD"
-msgstr "LPD"
-
-#: printer/data.pm:102
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: printer/data.pm:103
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
-
-#: printer/data.pm:128
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: printer/data.pm:158
-#, c-format
-msgid "CUPS - Common Unix Printing System (remote server)"
-msgstr "CUPS - Common Unix Printing System (entfernter Server)"
-
-#: printer/data.pm:159
-#, c-format
-msgid "Remote CUPS"
-msgstr "Entferntes CUPS"
-
-#: printer/detect.pm:168 printer/detect.pm:263 printer/detect.pm:498
-#: printer/detect.pm:571 printer/main.pm:330 printer/main.pm:692
-#: printer/main.pm:1815 printer/printerdrake.pm:960
-#: printer/printerdrake.pm:1120 printer/printerdrake.pm:2448
-#: printer/printerdrake.pm:4004
-#, c-format
-msgid "Unknown model"
-msgstr "Unbekanntes Modell"
-
-#: printer/main.pm:24
-#, c-format
-msgid "Local printer"
-msgstr "Lokaler Drucker"
-
-#: printer/main.pm:25
-#, c-format
-msgid "Remote printer"
-msgstr "Entfernter Drucker"
-
-#: printer/main.pm:26
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Drucker an CUPS-Server auf der Gegenseite"
-
-#: printer/main.pm:27 printer/printerdrake.pm:1360
-#: printer/printerdrake.pm:1899
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Drucker an LPD-Server im Netzwerk"
-
-#: printer/main.pm:28
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Netzwerkdrucker (TCP/Socket)"
-
-#: printer/main.pm:29
-#, c-format
-msgid "Printer on SMB/Windows server"
-msgstr "Drucker an SMB/Windows-Server"
-
-#: printer/main.pm:30
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Drucker an NetWare-Server"
-
-#: printer/main.pm:31 printer/printerdrake.pm:1903
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Druckeranschluss URI"
-
-#: printer/main.pm:32
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Den Auftrag an ein Kommando weiterleiten"
-
-#: printer/main.pm:43
-#, c-format
-msgid "recommended"
-msgstr "empfohlen"
-
-#: printer/main.pm:355 standalone/printerdrake:199
-#, c-format
-msgid "Configured on this machine"
-msgstr "An diesem Rechner eingerichtet"
-
-#: printer/main.pm:361 printer/printerdrake.pm:1445
-#, c-format
-msgid " on parallel port #%s"
-msgstr " an Parallelport \\#%s"
-
-#: printer/main.pm:364 printer/printerdrake.pm:1448
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", USB-Drucker #%s"
-
-#: printer/main.pm:366
-#, c-format
-msgid ", USB printer"
-msgstr ", USB-Drucker"
-
-#: printer/main.pm:370
-#, c-format
-msgid ", HP printer on a parallel port"
-msgstr ", HP-Drucker am Parallelport"
-
-#: printer/main.pm:372
-#, c-format
-msgid ", HP printer on USB"
-msgstr ", HP-Drucker an USB"
-
-#: printer/main.pm:374
-#, c-format
-msgid ", HP printer on HP JetDirect"
-msgstr ", HP-Drucker an HP JetDirect"
-
-#: printer/main.pm:376
-#, c-format
-msgid ", HP printer"
-msgstr ", HP-Drucker"
-
-#: printer/main.pm:382
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", Multifunktionsgerät am Parallelport #%s"
-
-#: printer/main.pm:385
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", Multifunktionsgerät am Parallelport "
-
-#: printer/main.pm:387
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", USB-Multifunktionsgerät"
-
-#: printer/main.pm:389
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", Multifunktionsgerät am HP JedDirect"
-
-#: printer/main.pm:391
-#, c-format
-msgid ", multi-function device"
-msgstr ", Multifunktionsgerät"
-
-#: printer/main.pm:395
-#, c-format
-msgid ", printing to %s"
-msgstr ", drucken auf %s"
-
-#: printer/main.pm:398
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr "auf LDP-Server „%s“, Drucker „%s“"
-
-#: printer/main.pm:401
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP-Rechner „%s“, Port %s"
-
-#: printer/main.pm:406
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr "auf SMB/Windows-Server „%s“, Freigabe „%s“"
-
-#: printer/main.pm:411
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr "auf dem Novell-Server „%s“, Drucker „%s“"
-
-#: printer/main.pm:414
-#, c-format
-msgid ", using command %s"
-msgstr ", mittels Kommando „%s“"
-
-#: printer/main.pm:429
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Parallelport #%s"
-
-#: printer/main.pm:432 printer/printerdrake.pm:1466
-#: printer/printerdrake.pm:1493 printer/printerdrake.pm:1508
-#, c-format
-msgid "USB printer #%s"
-msgstr "USB-Drucker #%s"
-
-#: printer/main.pm:434
-#, c-format
-msgid "USB printer"
-msgstr "USB-Drucker"
-
-#: printer/main.pm:438
-#, c-format
-msgid "HP printer on a parallel port"
-msgstr "HP-Drucker an einem Parallelport"
-
-#: printer/main.pm:440
-#, c-format
-msgid "HP printer on USB"
-msgstr "HP-Drucker an USB"
-
-#: printer/main.pm:442
-#, c-format
-msgid "HP printer on HP JetDirect"
-msgstr "HP-Drucker auf HP JetDirect"
-
-#: printer/main.pm:444
-#, c-format
-msgid "HP printer"
-msgstr "HP-Drucker"
-
-#: printer/main.pm:450
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Multifunktionsgerät am Parallelport #%s"
-
-#: printer/main.pm:453
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Multifunktionsgerät am Parallelport"
-
-#: printer/main.pm:455
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "USB-Multifunktionsgerät"
-
-#: printer/main.pm:457
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Multifunktionsgerät am HP JetDirect"
-
-#: printer/main.pm:459
-#, c-format
-msgid "Multi-function device"
-msgstr "Multifunktionsgerät"
-
-#: printer/main.pm:463
-#, c-format
-msgid "Prints into %s"
-msgstr "Druckt auf %s"
-
-#: printer/main.pm:466
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "LDP-Server „%s“, Drucker „%s“"
-
-#: printer/main.pm:469
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP-Rechner „%s“, Port %s"
-
-#: printer/main.pm:474
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "SMB/Windows-Server „%s“, Freigabe „%s“"
-
-#: printer/main.pm:479
-#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Novell Server „%s“, Drucker „%s“"
-
-#: printer/main.pm:482
-#, c-format
-msgid "Uses command %s"
-msgstr "benutzt Kommando „%s“"
-
-#: printer/main.pm:484
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
-
-#: printer/main.pm:689 printer/printerdrake.pm:1047
-#: printer/printerdrake.pm:3142
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Rohdaten-Drucker (kein Treiber)"
-
-#: printer/main.pm:1309 printer/printerdrake.pm:211
-#: printer/printerdrake.pm:223
-#, c-format
-msgid "Local network(s)"
-msgstr "Lokale Netzwerke"
-
-#: printer/main.pm:1311 printer/printerdrake.pm:227
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Schnittstelle „%s“"
-
-#: printer/main.pm:1313
-#, c-format
-msgid "Network %s"
-msgstr "Netzwerk %s"
-
-#: printer/main.pm:1315
-#, c-format
-msgid "Host %s"
-msgstr "Rechner %s"
-
-#: printer/main.pm:1344
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Port %s)"
-
-#: printer/main.pm:1945 printer/main.pm:2100
-#, c-format
-msgid "user-supplied"
-msgstr ""
-
-#: printer/main.pm:1949 printer/main.pm:2104
-#, c-format
-msgid "NEW"
-msgstr ""
-
-#: printer/printerdrake.pm:24
-#, c-format
-msgid ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"decompressing the self-extracting '.exe' file with the 'unzip' utility and "
-"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
-"printer' directory. There it will be found by the automatic uploader script "
-"and uploaded whenever the printer is connected and turned on.\n"
-msgstr ""
-"Der HP LaserJet 1000 benötigt nach dem Starten ein hochzuladendes Firmware. "
-"Laden Sie das Windows-Treiberpaket von der der HP-Homepage (das Firmware auf "
-"der Treiber-CD des Druckers funktioniert nicht!) und entnehmen die das "
-"Firmware daraus, indem sie die selbst-entpackende „.exe“-Datei mit „unzip“ "
-"entpacken und nach der „sihp1000.img“-Datei suchen. Kopieren Sie diese Datei "
-"in das „/etc/printer“-Verzeichnis. Dort wird es vom automatisch vom "
-"Druckerskript gefunden und hochgeladen, wenn der Drucker eingeschaltet "
-"wird.\n"
-
-#: printer/printerdrake.pm:67
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "CUPS-Drucker-Konfiguration"
-
-#: printer/printerdrake.pm:68
-#, c-format
-msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessible by remote machines and by which remote machines."
-msgstr ""
-"Hier können Sie einstellen, ob die Drucker, die an diesem Rechner hängen, "
-"für andere Rechner nutzbar sein sollen und falls ja, für welche."
-
-#: printer/printerdrake.pm:69
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-"Sie können hier entscheiden, ob Drucker von anderen Rechnern automatisch auf "
-"diesem Rechner zur Verfügung gestellt werden sollen."
-
-#: printer/printerdrake.pm:72 printer/printerdrake.pm:506
-#: printer/printerdrake.pm:4542
-#, c-format
-msgid "Remote CUPS server and no local CUPS daemon"
-msgstr "Entfernter CUPS-Server und kein lokaler CUPS Dämon"
-
-#: printer/printerdrake.pm:75
-#, c-format
-msgid "On"
-msgstr "An"
-
-#: printer/printerdrake.pm:77 printer/printerdrake.pm:498
-#: printer/printerdrake.pm:525
-#, c-format
-msgid "Off"
-msgstr "Aus"
-
-#: printer/printerdrake.pm:78 printer/printerdrake.pm:507
-#, c-format
-msgid ""
-"In this mode the local CUPS daemon will be stopped and all printing requests "
-"go directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-"In diesem Modus wird der lokale CUPS Dämon gestoppt und alle Druckaufträge "
-"gehen direkt zum unten angegebenen Server. Beachten Sie bitte, dass es dann "
-"nicht möglich ist, lokale Druckerwarteschlangen einzurichten und dass wenn "
-"der angegebene Server heruntergefahren ist, von dieser Maschine überhaupt "
-"nicht gedruckt werden kann."
-
-#: printer/printerdrake.pm:84
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Die Drucker dieses Rechners sind für andere Rechner nutzbar"
-
-#: printer/printerdrake.pm:89
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Automatische Suche nutzbarer Drucker auf anderen Rechnern"
-
-#: printer/printerdrake.pm:94
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Gemeinsamer Druckerzugriff auf Rechnern/Netzwerken:"
-
-#: printer/printerdrake.pm:96
-#, c-format
-msgid "Custom configuration"
-msgstr "Angepasste Konfiguration"
-
-#: printer/printerdrake.pm:101 standalone/scannerdrake:610
-#: standalone/scannerdrake:627
-#, c-format
-msgid "No remote machines"
-msgstr "Keine Netzwerkrechner"
-
-#: printer/printerdrake.pm:112
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Weitere CUPS-Server: "
-
-#: printer/printerdrake.pm:119
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"Um auf die Drucker entfernter CUPS-Server Zugriff zu erhalten müssen Sie nur "
-"die „Finde automatisch verfügbare Drucker an enfernten Rechnern“-Option "
-"aktivieren; Die CUPS-Server informieren Ihren Rechner automatisch über ihre "
-"Drucker. Alle aktuell bekannten Drucker werden im „Entfernte Drucker“-"
-"Abschnitt im Hauptfenster von Printerdrake aufgelistet. Falls Ihr CUPS-"
-"Server sich nicht im lokalen Netz befindet müssen die dessen IP-Adresse und "
-"ggf. die Port-Nummer hier eingeben, um die Information von diesem Server zu "
-"erhalten."
-
-#: printer/printerdrake.pm:127
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Druck Modus für Japanischen Text"
-
-#: printer/printerdrake.pm:128
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in Japanese language. Only "
-"use this function if you really want to print text in Japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print Japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Aktivieren dieser Option erlaubt es Ihnen einfachen Text in der japanischen "
-"Sprache zu drucken. Benutzen Sie diese Funktion nur, wenn Sie wirklich "
-"japanischen Text drucken wollen, wenn diese Funktion aktiviert ist, können "
-"Sie keine Akzente in Latin Schriftarten mehr drucken und auch die Abstände, "
-"die Buchstaben Grösse, etc. nicht mehr anpassen. Diese Einstellung betrifft "
-"nur Drucker auf diesem Rechner. Wenn Sie japanischen Text auf einem Drucker "
-"an einem entfernten Computer drucken wolllen, müssen Sie diese Funktion auf "
-"diesem Computer aktivieren."
-
-#: printer/printerdrake.pm:135
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Automatische Korrektur der CUPS-Konfiguration"
-
-#: printer/printerdrake.pm:137
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Wenn diese Option eingeschaltet ist gewährleistet CUPS bei jedem Start, "
-"dass \n"
-"\n"
-"- wenn LPD/LPRng installiert ist, /etc/printcap nicht von CUPS überschrieben "
-"wird\n"
-"\n"
-"- eine Datei /etc/cups/cupsd.conf erzeugt wird wenn sie fehlt\n"
-"\n"
-"- dass der Servername beim verteilen nicht „localhost“ enthält.\n"
-"\n"
-"Falls einige dieser Maßnahmen bei Ihnen zu Problemen führen stellen Sie "
-"diese Option ab./nDann müssen Sie aber selbst auf diese Punkte achten."
-
-#: printer/printerdrake.pm:161 printer/printerdrake.pm:236
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Gemeinsamer Zugriff auf lokale Drucker"
-
-#: printer/printerdrake.pm:162
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-"Das sind die Rechner und Netzwerke, für die die lokalen Drucker zugänglich "
-"sein sollen:"
-
-#: printer/printerdrake.pm:173
-#, c-format
-msgid "Add host/network"
-msgstr "Hinzufügen eines Rechners/Netzwerks"
-
-#: printer/printerdrake.pm:179
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Markierte Rechner/Netzwerke bearbeiten"
-
-#: printer/printerdrake.pm:188
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Löschen der markierten Rechner/Netzwerke"
-
-#: printer/printerdrake.pm:219 printer/printerdrake.pm:229
-#: printer/printerdrake.pm:241 printer/printerdrake.pm:248
-#: printer/printerdrake.pm:279 printer/printerdrake.pm:297
-#, c-format
-msgid "IP address of host/network:"
-msgstr "IP-Adresse des Rechners/Netzwerks:"
-
-#: printer/printerdrake.pm:237
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr ""
-"Wählen Sie Netzwerke bzw. Rechner, denen lokale Drucker bekannt gemacht "
-"werden sollen:"
-
-#: printer/printerdrake.pm:244
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Die Rechner/Netzwerk-IP-Adresse fehlt!"
-
-#: printer/printerdrake.pm:252
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "Die eingegebene Rechner/Netzwerk-Information ist nicht korrekt.\n"
-
-#: printer/printerdrake.pm:253 printer/printerdrake.pm:429
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Beispiele für korrekte IPs:\n"
-
-#: printer/printerdrake.pm:277
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr ""
-"IP-Adresse bzw. Netzwerk sind bereits in der Liste, \n"
-"Sie können sie nicht erneut hinzufügen.\n"
-
-#: printer/printerdrake.pm:346 printer/printerdrake.pm:416
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Zugriff auf Drucker an entfernten CUPS-Servern"
-
-#: printer/printerdrake.pm:347
-#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
-"Fügen Sie hier die CUPS-Server hinzu, deren Drucker Sie verwenden wollen. "
-"Sie müssen dies jedoch nur tun, wenn die Server ihre Druckerinformationen "
-"nicht ins lokale Netzwerk senden (broadcast)."
-
-#: printer/printerdrake.pm:358
-#, c-format
-msgid "Add server"
-msgstr "Server hinzufügen"
-
-#: printer/printerdrake.pm:364
-#, c-format
-msgid "Edit selected server"
-msgstr "Änderung des markierten Servers"
-
-#: printer/printerdrake.pm:373
-#, c-format
-msgid "Remove selected server"
-msgstr "Löschen des markierten Servers"
-
-#: printer/printerdrake.pm:417
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-"Geben Sie die IP-Adresse und den Port des Rechners ein, dessen Drucker Sie "
-"verwenden wollen. "
-
-#: printer/printerdrake.pm:418
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "Wenn kein Port angegeben wird, wird Port 631 als Vorgabe genommen."
-
-#: printer/printerdrake.pm:422
-#, c-format
-msgid "Server IP missing!"
-msgstr "Die Server-IP fehlt!"
-
-#: printer/printerdrake.pm:428
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Die eingegebene IP ist nicht korrekt.\n"
-
-#: printer/printerdrake.pm:440 printer/printerdrake.pm:2133
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Die Port Nummer muss eine ganze Zahl sein!"
-
-#: printer/printerdrake.pm:451
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr ""
-"Der Server ist bereits in der Liste, er kann nicht erneut hinzugefügt "
-"werden.\n"
-
-#: printer/printerdrake.pm:462 printer/printerdrake.pm:2160
-#: standalone/drakups:249 standalone/harddrake2:52
-#, c-format
-msgid "Port"
-msgstr "Port"
-
-#: printer/printerdrake.pm:495 printer/printerdrake.pm:511
-#: printer/printerdrake.pm:526 printer/printerdrake.pm:530
-#: printer/printerdrake.pm:536
-#, c-format
-msgid "On, Name or IP of remote server:"
-msgstr "An, Name oder IP des entfernten Servers:"
-
-#: printer/printerdrake.pm:514 printer/printerdrake.pm:4551
-#: printer/printerdrake.pm:4617
-#, c-format
-msgid "CUPS server name or IP address missing."
-msgstr "CUPS Servername oder IP-Adresse fehlt."
-
-#: printer/printerdrake.pm:566 printer/printerdrake.pm:586
-#: printer/printerdrake.pm:811 printer/printerdrake.pm:880
-#: printer/printerdrake.pm:901 printer/printerdrake.pm:927
-#: printer/printerdrake.pm:1023 printer/printerdrake.pm:1065
-#: printer/printerdrake.pm:1075 printer/printerdrake.pm:1110
-#: printer/printerdrake.pm:2220 printer/printerdrake.pm:2490
-#: printer/printerdrake.pm:2524 printer/printerdrake.pm:2575
-#: printer/printerdrake.pm:2582 printer/printerdrake.pm:2621
-#: printer/printerdrake.pm:2663 printer/printerdrake.pm:2700
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2984
-#: printer/printerdrake.pm:2989 printer/printerdrake.pm:3137
-#: printer/printerdrake.pm:3248 printer/printerdrake.pm:3862
-#: printer/printerdrake.pm:3929 printer/printerdrake.pm:3978
-#: printer/printerdrake.pm:3981 printer/printerdrake.pm:4091
-#: printer/printerdrake.pm:4149 printer/printerdrake.pm:4221
-#: printer/printerdrake.pm:4242 printer/printerdrake.pm:4252
-#: printer/printerdrake.pm:4342 printer/printerdrake.pm:4437
-#: printer/printerdrake.pm:4443 printer/printerdrake.pm:4471
-#: printer/printerdrake.pm:4578 printer/printerdrake.pm:4687
-#: printer/printerdrake.pm:4707 printer/printerdrake.pm:4716
-#: printer/printerdrake.pm:4731 printer/printerdrake.pm:4932
-#: printer/printerdrake.pm:5407 printer/printerdrake.pm:5490
-#: standalone/printerdrake:75 standalone/printerdrake:590
-#, c-format
-msgid "Printerdrake"
-msgstr "PrinterDrake"
-
-#: printer/printerdrake.pm:567 printer/printerdrake.pm:4150
-#: printer/printerdrake.pm:4688
-#, c-format
-msgid "Reading printer data..."
-msgstr "Lesen der Treiber-Datenbank ..."
-
-#: printer/printerdrake.pm:587
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "CUPS wird neu gestartet..."
-
-#: printer/printerdrake.pm:614
-#, c-format
-msgid ""
-"Allow pop-up windows, printer setup and package installation may be canceled"
-msgstr ""
-"Erlaube Pop-up-Fenster, Druckereinstellung und Paketinstallation kann "
-"abgebrochen werden"
-
-#: printer/printerdrake.pm:616
-#, c-format
-msgid ""
-"No pop-up windows, printer setup and package installation cannot be canceled"
-msgstr ""
-"Keine Pop-up-Fenster, Druckereinstellung und Paketinstallation können nicht "
-"abgebrochen werden"
-
-#: printer/printerdrake.pm:622
-#, c-format
-msgid "Printer auto administration"
-msgstr "Automatische Druckerverwaltung"
-
-#: printer/printerdrake.pm:623
-#, c-format
-msgid ""
-"Here you can configure printer administration tasks which should be done "
-"automatically."
-msgstr ""
-"Hier können Sie Aufgaben der Druckerverwaltung einstellen, die automatisch "
-"ausgeführt werden sollten."
-
-#: printer/printerdrake.pm:626
-#, c-format
-msgid "Do automatic configuration of new printers"
-msgstr "Automatische Konfiguration neuer Drucker"
-
-#: printer/printerdrake.pm:627 printer/printerdrake.pm:641
-#, c-format
-msgid "when a USB printer is connected and turned on"
-msgstr "wenn ein USB-Drucker angeschlossen und angeschaltet wird"
-
-#: printer/printerdrake.pm:630
-#, c-format
-msgid "when Printerdrake is started"
-msgstr "wenn Printerdrake gestartet wird"
-
-#: printer/printerdrake.pm:634
-#, c-format
-msgid "Mode for automatic printer setup:"
-msgstr "Verfahren der automatischen Druckereinstellung:"
-
-#: printer/printerdrake.pm:640
-#, c-format
-msgid "Re-enable disabled printers"
-msgstr "Deaktivierte Drucker wieder aktivieren"
-
-#: printer/printerdrake.pm:644
-#, c-format
-msgid "when the printing system is started"
-msgstr "wenn das Drucksystem gestartet wird"
-
-#: printer/printerdrake.pm:680
-#, c-format
-msgid "Communication error handling for the printer \"%s\""
-msgstr "Kommunikationsfehlerbehandlung für Drucker \"%s\""
-
-#: printer/printerdrake.pm:682
-#, c-format
-msgid ""
-"Here you can configure how errors during the communication between your "
-"computer and the printer \"%s\" should be handled (for example if the "
-"printer is not turned on)."
-msgstr ""
-"Hier können Sie einstellen, wie auf Fehler während der Kommunikation "
-"zwischen Ihrem Rechner und dem Drucker \"%s\" reagiert werden soll (z.B. "
-"wenn der Drucker nicht angeschaltet wird)."
-
-#: printer/printerdrake.pm:686
-#, c-format
-msgid "The number of retries should be an integer number of at least 1!"
-msgstr ""
-"Die Wiederholungsversuche müssen eine ganze Zahl und mindestens 1 sein!"
-
-#: printer/printerdrake.pm:690
-#, c-format
-msgid "The delay between retries should be a positive integer number!"
-msgstr ""
-"Die Zeitschranke zwischen den Versuchen muss eine positive Ganzzahl sein!"
-
-#: printer/printerdrake.pm:701
-#, c-format
-msgid "Do not disable the printer"
-msgstr "Drucker nicht deaktivieren"
-
-#: printer/printerdrake.pm:704
-#, c-format
-msgid "Retry infinitely often"
-msgstr "Wiederhole unendlich oft"
-
-#: printer/printerdrake.pm:707
-#, c-format
-msgid "Number of retries"
-msgstr "Versuche:"
-
-#: printer/printerdrake.pm:712
-#, c-format
-msgid "Delay between retries (in sec)"
-msgstr "Pause zwischen den Versuchen (in Sekunden)"
-
-#: printer/printerdrake.pm:745 printer/printerdrake.pm:765
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Wählen Sie die Drucker-Anbindung"
-
-#: printer/printerdrake.pm:746
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Wie ist der Drucker mit Ihrem Computer verbunden?"
-
-#: printer/printerdrake.pm:748
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Drucker an entfernten CUPS-Servern müssen hier nicht konfiguriert werden; "
-"diese Drucker werden automatisch erkannt."
-
-#: printer/printerdrake.pm:751 printer/printerdrake.pm:4934
-#, c-format
-msgid ""
-"\n"
-"WARNING: No local network connection active, remote printers can neither be "
-"detected nor tested!"
-msgstr ""
-"\n"
-"WARNUNG: Keine lokale Netzwerkverbindung aktiv, entfernte Drucker können "
-"weder entdeckt noch getestet werden!"
-
-#: printer/printerdrake.pm:758
-#, c-format
-msgid ""
-"Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"
-msgstr "Autoerkennung von Druckern (Lokal, TCP/Socket, SMB und Geräte-URI)"
-
-#: printer/printerdrake.pm:760
-#, c-format
-msgid "Modify timeout for network printer auto-detection"
-msgstr "Zeitschranke zur Autoerkennung von Netzwerkdruckern ändern"
-
-#: printer/printerdrake.pm:766
-#, c-format
-msgid "Enter the timeout for network printer auto-detection (in msec) here. "
-msgstr ""
-"Geben Sie hier die Zeitschranke zur Autoerkennung von Netzwerkdruckern (in "
-"Millisekunden) ein. "
-
-#: printer/printerdrake.pm:768
-#, c-format
-msgid ""
-"The longer you choose the timeout, the more reliable the detections of "
-"network printers will be, but the scan can take longer then, especially if "
-"there are many machines with local firewalls in the network. "
-msgstr ""
-"Je größer Sie diesen Wert wählen, desto zuverlässiger wird die Erkennung von "
-"Netzwerkdruckern sein. Jedoch wird der Scan länger dauern, besonders dann, "
-"wenn es viele Maschinen mit einer lokalen Firewall im Netzwerk gibt. "
-
-#: printer/printerdrake.pm:772
-#, c-format
-msgid "The timeout must be a positive integer number!"
-msgstr "Die Zeitschranke muss eine positive Ganzzahl sein!"
-
-#: printer/printerdrake.pm:811
-#, c-format
-msgid "Checking your system..."
-msgstr "Untersuchung Ihres Rechners ..."
-
-#: printer/printerdrake.pm:829
-#, c-format
-msgid "and one unknown printer"
-msgstr "und ein unbekannter Drucker"
-
-#: printer/printerdrake.pm:831
-#, c-format
-msgid "and %d unknown printers"
-msgstr "und %d unbekannte Drucker"
-
-#: printer/printerdrake.pm:835
-#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Die folgenden Drucker\n"
-"\n"
-"%s%s\n"
-"sind direkt an Ihr System angeschlossen."
-
-#: printer/printerdrake.pm:837
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Die folgenden Drucker\n"
-"\n"
-"%s%s\n"
-"sind direkt an Ihr System angeschlossen."
-
-#: printer/printerdrake.pm:838
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-"Der folgende Drucker\n"
-"\n"
-"%s%s\n"
-"ist direkt an Ihr System angeschlossen"
-
-#: printer/printerdrake.pm:842
-#, c-format
-msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
-"\n"
-"Ich konnte einen unbekannten Drucker direkt an Ihrem Rechner finden."
-
-#: printer/printerdrake.pm:843
-#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
-"\n"
-"Ich konnte %d unbekannte Drucker direkt an Ihrem Rechner finden."
-
-#: printer/printerdrake.pm:846
-#, c-format
-msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "Ich konnte keine Drucker direkt an Ihrem Rechner finden."
-
-#: printer/printerdrake.pm:849
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr ""
-"(Stellen Sie bitte sicher, dass alle Drucker angeschlossen und eingeschaltet "
-"sind).\n"
-
-#: printer/printerdrake.pm:862
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
-"Wollen Sie oben aufgeführte Drucker oder Drucker im lokalen Netzwerk zum "
-"Drucken konfigurieren?\n"
-
-#: printer/printerdrake.pm:863
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Wollen Sie Drucker im lokalen Netzwerk zum Drucken konfigurieren?\n"
-
-#: printer/printerdrake.pm:865
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Wollen Sie oben aufgeführte Drucker zum Drucken konfigurieren?\n"
-
-#: printer/printerdrake.pm:866
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Sind Sie sicher, dass Sie mit diesem Rechner drucken wollen?\n"
-
-#: printer/printerdrake.pm:867
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
-"ANMERKUNG: Je nach Drucker und Drucksystem werden bis zu %d MB zusätzlicher "
-"Software auf Ihrem Rechner installiert."
-
-#: printer/printerdrake.pm:884
-#, c-format
-msgid "Do not setup printer automatically now, and never do it again"
-msgstr "Stelle den Drucker nicht automatisch ein und tue es auch nie wieder"
-
-#: printer/printerdrake.pm:928
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Suche nach neuen Druckern..."
-
-#: printer/printerdrake.pm:976
-#, c-format
-msgid "Do not setup printer automatically again"
-msgstr "Stelle Drucker nicht wieder automatisch ein"
-
-#: printer/printerdrake.pm:983
-#, c-format
-msgid "New printers found"
-msgstr "Neue Drucker gefunden"
-
-#: printer/printerdrake.pm:984
-#, c-format
-msgid "New printer found"
-msgstr "Neuer Drucker gefunden"
-
-#: printer/printerdrake.pm:986
-#, c-format
-msgid ""
-"The following new printers were found and Printerdrake can automatically set "
-"them up for you. If you do not want to have all of them set up, unselect the "
-"ones which should be skipped, or click \"Cancel\" to set up none of them.\n"
-msgstr ""
-"Die folgenden neuen Drucker wurden gefunden. Printerdrake kann sie "
-"automatisch einrichten. Wenn Sie nicht alle eingestellt haben wollen, wählen "
-"sie diejenigen ab, die übersprungen werden sollen oder klicken Sie auf "
-"\"Abbrechen\", um keinen Drucker einzurichten.\n"
-
-#: printer/printerdrake.pm:987
-#, c-format
-msgid ""
-"The following new printer was found and printerdrake can automatically set "
-"it up for you. If you do not want to have it set up, unselect it, or click "
-"\"Cancel\".\n"
-msgstr ""
-"Der folgende neue Drucker wurden gefunden. Printerdrake kann ihn automatisch "
-"einrichten. Wenn Sie ihn nicht eingestellt haben wollen, wählen sie ihn ab "
-"oder klicken Sie auf \"Abbrechen\".\n"
-
-#: printer/printerdrake.pm:988
-#, c-format
-msgid ""
-"Note that for certain printer models additional packages need to be "
-"installed. So keep your installation media handy.\n"
-msgstr ""
-"Beachten Sie bitte, dass für bestimmte Druckermodelle zusätzliche "
-"Programmpakete installiert werden müssen. Halten Sie also Ihre "
-"Installationsmedien bereit.\n"
-
-#: printer/printerdrake.pm:1024 printer/printerdrake.pm:1066
-#, c-format
-msgid "Configuring printer on %s..."
-msgstr "Richte Drucker an %s ein..."
-
-#: printer/printerdrake.pm:1049
-#, c-format
-msgid "("
-msgstr "("
-
-#: printer/printerdrake.pm:1050
-#, c-format
-msgid " on "
-msgstr " auf "
-
-#: printer/printerdrake.pm:1051 standalone/scannerdrake:137
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: printer/printerdrake.pm:1056 printer/printerdrake.pm:3149
-#, c-format
-msgid "Printer model selection"
-msgstr "Auswahl des Druckermodells"
-
-#: printer/printerdrake.pm:1057 printer/printerdrake.pm:3150
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Welches Druckermodell haben Sie?"
-
-#: printer/printerdrake.pm:1058
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-"\n"
-"\n"
-"PrinterDrake konnte Ihr Druckermodell %s nicht bestimmen. Bitte wählen Sie "
-"das richtige Modell aus der Liste aus."
-
-#: printer/printerdrake.pm:1061 printer/printerdrake.pm:3155
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Falls Ihr Drucker nicht aufgeführt ist wählen Sie bitte ein kompatibles bzw "
-"ähnliches Modell (Für Einzelheiten schauen Sie bitte in Ihr Druckerhandbuch)."
-
-#: printer/printerdrake.pm:1076 printer/printerdrake.pm:4708
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Konfiguriere Drucker „%s“..."
-
-#: printer/printerdrake.pm:1111
-#, c-format
-msgid ""
-"Now you have turned off automatic printer setup.\n"
-"\n"
-msgstr ""
-"Jetzt haben Sie die automatische Druckereinrichtung abgestellt.\n"
-"\n"
-
-#: printer/printerdrake.pm:1112
-#, c-format
-msgid ""
-"You can turn it back on again by choosing \"%s\" -> \"%s\" in Printerdrake's "
-"main menu. "
-msgstr ""
-"Sie können sie wieder anschalten, wenn Sie \"%s\" -> \"%s\" in Printerdrakes "
-"Hauptmenü wählen. "
-
-#: printer/printerdrake.pm:1112 printer/printerdrake.pm:4984
-#, c-format
-msgid "Configure Auto Administration"
-msgstr "Automatische Konfiguration einstellen"
-
-#: printer/printerdrake.pm:1113
-#, c-format
-msgid ""
-"There you can also choose in which situation automatic printer setup is done "
-"(On Printerdrake startup, on printing system startup, when connecting a new "
-"USB printer)."
-msgstr ""
-"Dort können Sie auch auswählen, in welcher Situation die automatische "
-"Druckereinrichtung ausgeführt wird (Beim Start von Printerdrake, beim Start "
-"des Drucksystems, wenn ein neuer USB-Drucker angeschlossen wird)."
-
-#: printer/printerdrake.pm:1261 printer/printerdrake.pm:1273
-#: printer/printerdrake.pm:1380 printer/printerdrake.pm:2401
-#: printer/printerdrake.pm:2460 printer/printerdrake.pm:2556
-#: printer/printerdrake.pm:4951 printer/printerdrake.pm:5138
-#, c-format
-msgid "Add a new printer"
-msgstr "Drucker hinzufügen"
-
-#: printer/printerdrake.pm:1262
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Willkommen zum Druckereinrichtungsassistenten\n"
-"\n"
-"Dieser Assistent hilft Ihnen lokale oder Netzwerkdrucker so einzurichten, "
-"dass dieser Rechner bzw. andere in Ihrem Netzwerk darauf drucken können.\n"
-"\n"
-"Sie werden nun nach den nötigen Informationen über den Drucker gefragt, um "
-"dann Zugriff auf Treiber, Druckoptionen und Anschlussart zu erhalten."
-
-#: printer/printerdrake.pm:1275
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected. Also your network printer(s) and your Windows "
-"machines must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you do not "
-"need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Willkommen zum Druckerassistenten\n"
-"\n"
-"Dieser Assistent wrid Ihnen helfen, Ihre lokalen und Netzwerkdrucker sowie "
-"Drucker an Windows-Rechnern im lokalen Netz einzurichten.\n"
-"\n"
-"Falls Sie Drucker haben, die direkt mit dem Rechner verbunden sind, stellen "
-"Sie sicher, dass diese richtig angeschlossen und eingeschaltet sind. Ebenso "
-"müssen die Netzwerkdrucker bzw. Windows-Rechner eingeschaltet sein.\n"
-"\n"
-"Es sei angemerkt, dass die Erkennung von Netzwerkdruckern etwas länger "
-"dauert, als das Finden von Druckern, die direkt an Ihrem Rechner hängen. Sie "
-"sollten daher diesen Punkt ausschalten, sofern Sie nur direkt am Rechner "
-"hängende Drucker verwenden wollen.\n"
-"\n"
-"Betätigen Sie die Schaltfläche „Weiter“, wenn Sie soweit sind, bzw. "
-"„Abbrechen“, wenn Sie keine Drucker konfigurieren wollen."
-
-#: printer/printerdrake.pm:1284
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Willkommen zum Druckerassistenten\n"
-"\n"
-"Dieser Assistent wird Ihnen helfen, Ihre lokalen Drucker einzurichten.\n"
-"\n"
-"Falls Sie Drucker haben, die direkt mit dem Rechner verbunden sind, stellen "
-"Sie sicher, dass diese richtig angeschlossen und eingeschaltet sind.\n"
-"\n"
-"Betätigen Sie die Schaltfläche „Weiter“, wenn Sie soweit sind, bzw. "
-"„Abbrechen“, wenn Sie keine Drucker konfigurieren wollen."
-
-#: printer/printerdrake.pm:1292
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you do not need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Willkommen zum Druckerassistenten\n"
-"\n"
-"Dieser Assistent möchte Ihnen helfen, Ihre(n) lokalen und Netzwerkdrucker zu "
-"konfigurieren.\n"
-"\n"
-"Falls Sie Drucker haben, die direkt mit dem Rechner verbunden sind, stellen "
-"Sie sicher, dass diese richtig angeschlossen und eingeschaltet sind. Ebenso "
-"müssen die Netzwerkdrucker eingeschaltet und mit dem Netz verbunden sein.\n"
-"\n"
-"Es sei angemerkt, dass die Erkennung von Netzwerkdruckern etwas länger "
-"dauert, als das Finden von Druckern, die direkt an Ihrem Rechner hängen. Sie "
-"sollten daher diesen Punkt ausschalten, sofern Sie nur direkt am Rechner "
-"hängende Drucker verwenden wollen.\n"
-"\n"
-"Betätigen Sie die Schaltfläche „Weiter“, wenn Sie soweit sind, bzw. "
-"„Abbrechen“, wenn Sie keine Drucker konfigurieren wollen."
-
-#: printer/printerdrake.pm:1301
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"Willkommen zum Druckerassistenten\n"
-"\n"
-"Dieser Assistent möchte Ihnen helfen, Ihre(n) lokalen Drucker zu "
-"konfigurieren.\n"
-"\n"
-"Falls Sie Drucker haben, die direkt mit dem Rechner verbunden sind, stellen "
-"Sie sicher, dass diese richtig angeschlossen und eingeschaltet sind.\n"
-"\n"
-"Betätigen Sie die Schaltfläche „Weiter“, wenn Sie soweit sind, bzw. "
-"„Abbrechen“, wenn Sie keine Drucker konfigurieren wollen."
-
-#: printer/printerdrake.pm:1352
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Selbsterkennung von direkt am Rechner angeschlossenen Druckern"
-
-#: printer/printerdrake.pm:1355
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Drucker automatisch erkennen, die im lokalen Netzwerk hängen"
-
-#: printer/printerdrake.pm:1358
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr "Selbsterkennung von Druckern, die an Windows-Rechnern hängen"
-
-#: printer/printerdrake.pm:1361
-#, c-format
-msgid "No auto-detection"
-msgstr "Keine automatische Erkennung"
-
-#: printer/printerdrake.pm:1381
-#, c-format
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the %s Control Center."
-msgstr ""
-"\n"
-"Herzlichen Glückwunsch, Ihr Drucker ist nun installiert und eingerichtet!\n"
-"\n"
-"Sie können nun mit dem „Drucken“ Befehl Ihrer Anwendungen (meistens im "
-"„Datei“-Menü zu finden) drucken.\n"
-"\n"
-"Falls Sie einen Drucker hinzufügen, entfernen oder umbenennen wollen,\n"
-"oder wenn Sie die Standardeinstellungen wie Papierschacht oder \n"
-"Druckqualität) anpassen wollen, wählen Sie „Drucker“ im „Hardware“\n"
-"Bereich des %s Kontrollzentrums."
-
-#: printer/printerdrake.pm:1417 printer/printerdrake.pm:1641
-#: printer/printerdrake.pm:1704 printer/printerdrake.pm:1796
-#: printer/printerdrake.pm:1934 printer/printerdrake.pm:2010
-#: printer/printerdrake.pm:2177 printer/printerdrake.pm:2268
-#: printer/printerdrake.pm:2277 printer/printerdrake.pm:2286
-#: printer/printerdrake.pm:2297 printer/printerdrake.pm:2496
-#: printer/printerdrake.pm:2633
-#, c-format
-msgid "Could not install the %s packages!"
-msgstr "Kann Paket nicht installieren %s"
-
-#: printer/printerdrake.pm:1419
-#, c-format
-msgid "Skipping Windows/SMB server auto-detection"
-msgstr "Breche Windows/SMB-Server Auto-Überprüfung ab"
-
-#: printer/printerdrake.pm:1425 printer/printerdrake.pm:1564
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Autoerkennung von Druckern"
-
-#: printer/printerdrake.pm:1425
-#, c-format
-msgid "Detecting devices..."
-msgstr "Geräteerkennung..."
-
-#: printer/printerdrake.pm:1451
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", Netzwerkdrucker „%s“, Port %s"
-
-#: printer/printerdrake.pm:1454
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", Drucker „%s“ an SMB/Windows-Server „%s“"
-
-#: printer/printerdrake.pm:1458
-#, c-format
-msgid "Detected %s"
-msgstr "%s gefunden"
-
-#: printer/printerdrake.pm:1463 printer/printerdrake.pm:1490
-#: printer/printerdrake.pm:1505
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Drucker an Parallelport #%s"
-
-#: printer/printerdrake.pm:1469
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Netzwerkdrucker „%s“, Port %s"
-
-#: printer/printerdrake.pm:1472
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Drucker „%s“ am SMB/Windows-Server „%s“"
-
-#: printer/printerdrake.pm:1550
-#, c-format
-msgid "Local Printer"
-msgstr "Lokaler Drucker"
-
-#: printer/printerdrake.pm:1551
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Es wurde kein lokaler Drucker erkannt! Um ihn manuell hinzuzufügen geben Sie "
-"einfach einen Geräte- oder Dateinamen in der Eingabezeile an (Parallele "
-"Anschlüsse: /dev/lp0, /dev/lp1, ..., äquivalent zu LPT1:, LPT2:, ...; Erster "
-"USB Drucker: /dev/usb/lp0, zweier USB Drucker: /dev/usb/lp1, ...)."
-
-#: printer/printerdrake.pm:1555
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Sie müssen einen Geräte- oder Dateinamen eingeben!"
-
-#: printer/printerdrake.pm:1565
-#, c-format
-msgid "No printer found!"
-msgstr "Kein Drucker erkannt!"
-
-#: printer/printerdrake.pm:1573
-#, c-format
-msgid "Local Printers"
-msgstr "Lokale Drucker"
-
-#: printer/printerdrake.pm:1574
-#, c-format
-msgid "Available printers"
-msgstr "Vorhandene Drucker"
-
-#: printer/printerdrake.pm:1578 printer/printerdrake.pm:1587
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Der folgende Drucker wurde automatisch erkannt."
-
-#: printer/printerdrake.pm:1580
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
-"Falls das nicht der Drucker ist, den Sie einrichten wollen, geben Sie einen "
-"Geräte- oder Dateinamen in der Eingabezeile an."
-
-#: printer/printerdrake.pm:1581
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-"Alternativ können Sie einen Geräte- oder Dateinamen in der Eingabezeile "
-"angeben"
-
-#: printer/printerdrake.pm:1582 printer/printerdrake.pm:1591
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Hier ist eine Liste aller automatisch erkannten Drucker."
-
-#: printer/printerdrake.pm:1584
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
-msgstr ""
-"Bitte wählen Sie den Drucker den sie einrichten wollen oder geben Sie einen "
-"Geräte- oder Dateinamen in der Eingabezeile an."
-
-#: printer/printerdrake.pm:1585
-#, c-format
-msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-"Bitte wählen Sie den Drucker, an den die Druckaufträge gehen sollen oder "
-"geben Sie einen Geräte- oder Dateinamen in der Eingabezeile an."
-
-#: printer/printerdrake.pm:1589
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Die Einrichtung des Druckers wird vollautomatisch erfolgen. Sollte Ihr "
-"Drucker nicht richtig erkannt worden sein oder wollen Sie die Einrichtung "
-"selbst vornehmen, wählen Sie „Manuelle Konfiguration“."
-
-#: printer/printerdrake.pm:1590
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Im Moment ist keine alternative Möglichkeit verfügbar."
-
-#: printer/printerdrake.pm:1593
-#, c-format
-msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
-msgstr ""
-"Bitte wählen Sie den Drucker, den Sie einrichten wollen. Die Einrichtung "
-"wird vollautomatisch erfolgen. Sollte Ihr Drucker nicht richtig erkannt "
-"worden sein oder wollen Sie die Einrichtung selbst vornehmen, wählen Sie "
-"„Manuelle Konfiguration“."
-
-#: printer/printerdrake.pm:1594
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Bitte wählen Sie den Drucker, an den die Druckaufträge gehen sollen."
-
-#: printer/printerdrake.pm:1596
-#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Bitte wählen Sie den Anschluss, an dem der Drucker hängt oder geben Sie "
-"einen Geräte- oder Dateinamen in der Eingabezeile an."
-
-#: printer/printerdrake.pm:1597
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Bitte wählen Sie den Anschluss, an dem Ihr Drucker hängt."
-
-#: printer/printerdrake.pm:1599
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Parallele Anschlüsse: /dev/lp0, /dev/lp1, ..., äquivalent zu LPT1:, "
-"LPT2:, ..., Erster USB-Drucker: /dev/usb/lp0, zweiter USB-Drucker: /dev/usb/"
-"lp1, ...)."
-
-#: printer/printerdrake.pm:1603
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Sie müssen einen Drucker wählen/ein Gerät eingeben!"
-
-#: printer/printerdrake.pm:1643 printer/printerdrake.pm:1706
-#: printer/printerdrake.pm:1798 printer/printerdrake.pm:1936
-#: printer/printerdrake.pm:2012 printer/printerdrake.pm:2179
-#: printer/printerdrake.pm:2270 printer/printerdrake.pm:2279
-#: printer/printerdrake.pm:2288 printer/printerdrake.pm:2299
-#, c-format
-msgid "Aborting"
-msgstr "Abbruch"
-
-#: printer/printerdrake.pm:1679
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Optionen für Netzwerk-Druckerspooler"
-
-#: printer/printerdrake.pm:1680
-#, c-format
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Um einen LPD-Drucker im Netzwerk zu verwenden, müssen Sie den Rechnernamen "
-"des Drucker-Servers sowie den Druckernamen auf diesem Server angeben, an den "
-"die Aufträge übertragen werden sollen."
-
-#: printer/printerdrake.pm:1681
-#, c-format
-msgid "Remote host name"
-msgstr "Name des Netzwerkrechners"
-
-#: printer/printerdrake.pm:1682
-#, c-format
-msgid "Remote printer name"
-msgstr "Name des entfernten Druckers"
-
-#: printer/printerdrake.pm:1685
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Der Name des Netzwerkrechners fehlt!"
-
-#: printer/printerdrake.pm:1689
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Der Name des Netzwerkdruckers fehlt!"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318 standalone/drakTermServ:475
-#: standalone/drakTermServ:807 standalone/drakTermServ:823
-#: standalone/drakTermServ:1653 standalone/drakTermServ:1662
-#: standalone/drakTermServ:1676 standalone/drakbackup:512
-#: standalone/drakbackup:618 standalone/drakbackup:653
-#: standalone/drakbackup:754 standalone/draknfs:203
-#: standalone/draksambashare:627 standalone/draksambashare:794
-#: standalone/harddrake2:275
-#, c-format
-msgid "Information"
-msgstr "Informationen"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Gefundendenes Modell: %s %s"
-
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Scanning network..."
-msgstr "Durchsuche Netzwerk..."
-
-#: printer/printerdrake.pm:1814 printer/printerdrake.pm:1835
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", Drucker „%s“, auf Server „%s“"
-
-#: printer/printerdrake.pm:1817 printer/printerdrake.pm:1838
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Drucker „%s“, auf Server „%s“"
-
-#: printer/printerdrake.pm:1859
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) Drucker-Parameter"
-
-#: printer/printerdrake.pm:1860
-#, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Um auf einem SMB-Drucker zu drucken sind folgende Angaben erforderlich: Der "
-"SMB-Rechnername des Drucker-Servers (entspricht nicht immer dem TCP/IP-"
-"Rechnernamen des Computers) und möglicherweise die IP-Adresse, Freigabename "
-"für den Drucker, auf den Sie zugreifen möchten, sowie entsprechender "
-"Benutzername, Passwort und Arbeitsgruppe."
-
-#: printer/printerdrake.pm:1861
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-"Falls der gewünschte Drucker bereits gefunden wurde, wählen Sie ihn einfach "
-"aus der Liste unten aus und geben Sie - falls notwendig - Name, Passwort und/"
-"oder Domäne an."
-
-#: printer/printerdrake.pm:1863
-#, c-format
-msgid "SMB server host"
-msgstr "SMB-Server"
-
-#: printer/printerdrake.pm:1864
-#, c-format
-msgid "SMB server IP"
-msgstr "SMB-Server-IP"
-
-#: printer/printerdrake.pm:1865 standalone/draksambashare:67
-#, c-format
-msgid "Share name"
-msgstr "Freigabename"
-
-#: printer/printerdrake.pm:1868
-#, c-format
-msgid "Workgroup"
-msgstr "Arbeitsgruppe"
-
-#: printer/printerdrake.pm:1870
-#, c-format
-msgid "Auto-detected"
-msgstr "Selbst gefunden"
-
-#: printer/printerdrake.pm:1880
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Sie müssen entweder den Servernamen oder seine IP-Adresse angeben!"
-
-#: printer/printerdrake.pm:1884
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Der Name der Samba-Freigabe fehlt!"
-
-#: printer/printerdrake.pm:1890
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "SICHERHEITSWARNUNG!"
-
-#: printer/printerdrake.pm:1891
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Sie sind dabei, einen Drucker einzurichten, der über ein Windows-"
-"Benutzerkonto mit Passwort druckt. Aufgrund eines Fehlers in der Architektur "
-"der Samba-Client-Software wird das Passwort im Klartext in die Kommandozeile "
-"der Samba-Komponente eingefügt, welche die zu druckenden Daten auf den "
-"Windows-Server überträgt. So ist es für jeden Benutzer möglich, das Passwort "
-"auf dem Bildschirm anzuzeigen, indem er Kommandos wie zum Beispiel „ps "
-"auxwww“ ausführt.\n"
-"\n"
-"Wir empfehlen von einer der folgenden Alternativen Gebrauch zu machen (in "
-"allen Fällen muss sichergestellt werden dass nur Maschinen des lokalen "
-"Netzwerks auf den Windows-Server zugreifen können, zum Beispiel mit Hilfe "
-"einer Firewall):\n"
-"\n"
-"Drucken Sie über ein Benutzerkonto ohne Passwort auf Ihrem Windows-Server, "
-"zum Beispiel über das „GAST“-Benutzerkonto oder über ein speziell zum "
-"Drucken eingerichtetes Benutzerkonto. Entfernen Sie nicht den Passwortschutz "
-"von einem persönlichen Benutzerkonto oder vom Administratorkonto.\n"
-"\n"
-"Richten Sie Ihren Windows-Server so ein, dass der Drucker unter dem LPD-"
-"Protokoll erreichbar ist. Dann richten sie den Drucker auf dieser Maschine "
-"mit dem Verbindungstyp „%s“ ein.\n"
-"\n"
-
-#: printer/printerdrake.pm:1901
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Richten Sie Ihren Windows-Server so ein, dass Ihr Drucker über das IPP-"
-"Protokoll erreichbar ist und konfigurieren sie ihn auf dieser Maschine mit "
-"dem Verbindungstyp „%s“ in PrinterDrake.\n"
-"\n"
-
-#: printer/printerdrake.pm:1904
-#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-"Verbinden Sie Ihren Drucker mit einem Linux-Server und lassen Sie Ihre(n) "
-"Windows-Rechner als Client auf ihn zugreifen.\n"
-" \n"
-"Möchten Sie Ihren Drucker wirklich so einrichten, wie Sie es jetzt tun?"
-
-#: printer/printerdrake.pm:1983
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "Optionen für NetWare-Drucker"
-
-#: printer/printerdrake.pm:1984
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Um auf einem NetWare-Drucker zu drucken sind folgende Angaben erforderlich: "
-"Name des NetWare-Drucker-Servers (entspricht nicht immer dem TCP/IP-"
-"Rechnernamen des Computers), Name der Drucker-Warteschlange, sowie falls "
-"notwendig, den entsprechenden Benutzernamen samt Passwort."
-
-#: printer/printerdrake.pm:1985
-#, c-format
-msgid "Printer Server"
-msgstr "Drucker-Server"
-
-#: printer/printerdrake.pm:1986
-#, c-format
-msgid "Print Queue Name"
-msgstr "Name der Druckerwarteschlange"
-
-#: printer/printerdrake.pm:1991
-#, c-format
-msgid "NCP server name missing!"
-msgstr "Der NCP-Servername fehlt!"
-
-#: printer/printerdrake.pm:1995
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "Der NCP-Warteschlangen-Name fehlt!"
-
-#: printer/printerdrake.pm:2076 printer/printerdrake.pm:2097
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", Rechner „%s“, Port %s"
-
-#: printer/printerdrake.pm:2079 printer/printerdrake.pm:2100
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Rechner „%s“, Port %s"
-
-#: printer/printerdrake.pm:2122
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "Optionen für TCP/Socket-Drucker"
-
-#: printer/printerdrake.pm:2124
-#, c-format
-msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
-msgstr ""
-"Wählen Sie einen der automatisch erkannten Drucker aus der Liste oder geben "
-"Sie den Hostnamen oder die IP-Adresse und optional die Portnummer (wenn Port "
-"nicht angegeben, wird 9100 verwendet) ein."
-
-#: printer/printerdrake.pm:2125
-#, c-format
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
-msgstr ""
-"Um einen TCP- oder Socket-Drucker verwenden zu können, müssen Sie auf alle "
-"Fälle dessen Rechnernamen, bzw. IP-Adresse - möglicherweise auch den Port - "
-"angeben. Bei HP JetDirect-Servern ist dies normalerweise die Port-Adresse "
-"9100, bei anderen Servern kann es eine andere sein. Schauen Sie im "
-"Zweifelsfall in die Unterlagen des Herstellers."
-
-#: printer/printerdrake.pm:2129
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Der Rechnername, bzw die IP-Adresse des Druckers fehlt!"
-
-#: printer/printerdrake.pm:2158
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Rechnername/IP des Druckers"
-
-#: printer/printerdrake.pm:2221
-#, c-format
-msgid "Refreshing Device URI list..."
-msgstr "Aktualisieren die Geräte-URI-Liste..."
-
-#: printer/printerdrake.pm:2224 printer/printerdrake.pm:2226
-#, c-format
-msgid "Printer Device URI"
-msgstr "Druckeranschluss URI"
-
-#: printer/printerdrake.pm:2225
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Sie können hier direkt die URI eines Druckers angeben. Die URI muss den CUPS-"
-"bzw. den Foomatic-Spezifikationen genügen. Es sei hier noch angemerkt, dass "
-"nicht alle URI-Typen von allen Drucksystemem unterstützt werden."
-
-#: printer/printerdrake.pm:2249
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Sie müssen eine gültige URI eingeben!"
-
-#: printer/printerdrake.pm:2354
-#, c-format
-msgid "Pipe into command"
-msgstr "An ein Kommando weiterleiten"
-
-#: printer/printerdrake.pm:2355
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-"Hier können Sie einen beliebigen Befehl angeben, in den der Auftrag "
-"umgeleitet anstatt direkt zum Drucker gesendet wird."
-
-#: printer/printerdrake.pm:2356
-#, c-format
-msgid "Command line"
-msgstr "Kommandozeile"
-
-#: printer/printerdrake.pm:2360
-#, c-format
-msgid "A command line must be entered!"
-msgstr "Eine Kommandozeile muss eingegeben werden!"
-
-#: printer/printerdrake.pm:2402
-#, c-format
-msgid "Your printer %s is currently connected %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2404 printer/printerdrake.pm:2411
-#, fuzzy, c-format
-msgid "to a parallel port"
-msgstr " an Parallelport \\#%s"
-
-#: printer/printerdrake.pm:2405 printer/printerdrake.pm:2412
-#, c-format
-msgid "to the USB"
-msgstr ""
-
-#: printer/printerdrake.pm:2406 printer/printerdrake.pm:2413
-#, fuzzy, c-format
-msgid "via the network"
-msgstr "Netzwerkverbindung herstellen"
-
-#: printer/printerdrake.pm:2407
-#, c-format
-msgid "This type of connection is currently not fully supported by HPLIP."
-msgstr ""
-
-#: printer/printerdrake.pm:2409
-#, c-format
-msgid "You get full HPLIP support for your device if you connect it "
-msgstr ""
-
-#: printer/printerdrake.pm:2415
-#, c-format
-msgid ""
-"You can now set up your device with HPLIP anyway (works in many cases), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "set it up without HPLIP (print-only), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, fuzzy, c-format
-msgid "or"
-msgstr "Stunde"
-
-#: printer/printerdrake.pm:2417
-#, c-format
-msgid "cancel the setup (for example to reconnect your device)."
-msgstr ""
-
-#: printer/printerdrake.pm:2419
-#, c-format
-msgid ""
-"You can always revise your choice by clicking your printer's entry in the "
-"main window, "
-msgstr ""
-
-#: printer/printerdrake.pm:2420
-#, c-format
-msgid "clicking the \"%s\" button, "
-msgstr ""
-
-#. -PO: "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: printer/printerdrake.pm:2420 standalone/drakperm:124 standalone/drakups:300
-#: standalone/drakups:360 standalone/drakups:380 standalone/drakvpn:319
-#: standalone/drakvpn:680 standalone/printerdrake:245
-#, c-format
-msgid "Edit"
-msgstr "Bearbeiten"
-
-#: printer/printerdrake.pm:2421
-#, c-format
-msgid "and choosing \"%s\"."
-msgstr ""
-
-#: printer/printerdrake.pm:2421 printer/printerdrake.pm:5334
-#: printer/printerdrake.pm:5394
-#, c-format
-msgid "Printer connection type"
-msgstr "Art der Druckeranbindung"
-
-#: printer/printerdrake.pm:2423 standalone/logdrake:408
-#, c-format
-msgid "What do you want to do?"
-msgstr "Wo wollen Sie machen?"
-
-#: printer/printerdrake.pm:2424 printer/printerdrake.pm:2428
-#, c-format
-msgid "Set up with HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2425 printer/printerdrake.pm:2427
-#: printer/printerdrake.pm:2430
-#, c-format
-msgid "Set up without HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2461
-#, c-format
-msgid ""
-"On many HP printers there are special functions available, maintenance (ink "
-"level checking, nozzle cleaning. head alignment, ...) on all not too old "
-"inkjets, scanning on multi-function devices, and memory card access on "
-"printers with card readers. "
-msgstr ""
-"Viele HP-Druckern haben Spezialfunktionen, Wartung (Tintenfüllstand, "
-"Druckkopfausrichtung, ...) für alle nicht allzu alten Tintenstrahldrucker, "
-"Scannen auf Multifunktionsgeräten und Speicherkartenzugriff bei Druckern mit "
-"Kartenlesern. "
-
-#: printer/printerdrake.pm:2463
-#, fuzzy, c-format
-msgid ""
-"To access these extra functions on HP printers they must be set up with "
-"HPLIP (HP Linux Imaging and Printing). "
-msgstr ""
-"Um auf diese Spezialfunktionen Ihres HP-Druckers zugreifen zu können, muss "
-"er mit der entsprechenden Software eingerichtet werden: "
-
-#: printer/printerdrake.pm:2465
-#, fuzzy, c-format
-msgid "Do you want to use HPLIP (choose \"No\" for non-HP printers)? "
-msgstr "Was ist Ihre Auswahl (wählen Sie „Keine‟ für Nicht-HP-Drucker)? "
-
-#: printer/printerdrake.pm:2491
-#, c-format
-msgid "Installing %s package..."
-msgstr "Installiere %s-Paket..."
-
-#: printer/printerdrake.pm:2491 printer/printerdrake.pm:2497
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "HPLIP"
-msgstr "HPLIP"
-
-#: printer/printerdrake.pm:2498
-#, c-format
-msgid "Only printing will be possible on the %s."
-msgstr "Nur Drucken wird möglich sein auf %s."
-
-#: printer/printerdrake.pm:2513
-#, c-format
-msgid "Could not remove your old HPOJ configuration file %s for your %s! "
-msgstr ""
-"Konnte Ihre alte HPOJ Konfigurationsdatei %s für Ihren %s nicht löschen! "
-
-#: printer/printerdrake.pm:2515
-#, c-format
-msgid "Please remove the file manually and restart HPOJ."
-msgstr "Bitte löschen Sie die Datei manuell und starten Sie HPOJ neu."
-
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "Checking device and configuring %s..."
-msgstr "Überprüfe Gerät und konfiguriere %s..."
-
-#: printer/printerdrake.pm:2557
-#, c-format
-msgid "Which printer do you want to set up with HPLIP?"
-msgstr "Welchen Drucker wollen Sie mit HPLIP einrichten?"
-
-#: printer/printerdrake.pm:2576
-#, c-format
-msgid "HPLIP was not able to communicate with the chosen printer!"
-msgstr ""
-
-#: printer/printerdrake.pm:2577 printer/printerdrake.pm:2584
-#, fuzzy, c-format
-msgid "Setting up the printer without HPLIP..."
-msgstr "Kernelmodule einrichten..."
-
-#: printer/printerdrake.pm:2583
-#, c-format
-msgid ""
-"HPLIP did not find any local printers (Parallel, USB) which it supports!"
-msgstr ""
-
-#: printer/printerdrake.pm:2622
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "Installiere SANE-Pakete..."
-
-#: printer/printerdrake.pm:2635
-#, c-format
-msgid "Scanning on the %s will not be possible."
-msgstr "Das Durchsuchen auf %s wird nicht möglich sein."
-
-#: printer/printerdrake.pm:2650
-#, c-format
-msgid "Using and Maintaining your %s"
-msgstr "Ihren %s verwenden und warten"
-
-#: printer/printerdrake.pm:2664
-#, c-format
-msgid "Configuring device..."
-msgstr "Konfiguriere Gerät..."
-
-#: printer/printerdrake.pm:2701
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Bereite Druckerport für CUPS vor..."
-
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2985
-#: printer/printerdrake.pm:3138
-#, c-format
-msgid "Reading printer database..."
-msgstr "Lesen der Drucker-Datenbank ..."
-
-#: printer/printerdrake.pm:2943
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Geben Sie Druckername und Kommentare ein"
-
-#: printer/printerdrake.pm:2947 printer/printerdrake.pm:4206
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"Druckernamen sollten nur Buchstaben, Ziffern und den Unterstrich unterhalten"
-
-#: printer/printerdrake.pm:2953 printer/printerdrake.pm:4211
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Der Drucker „%s“ existiert bereits. Wollen Sie ihn wirklich \n"
-"ersetzen?"
-
-#: printer/printerdrake.pm:2960
-#, c-format
-msgid ""
-"The printer name \"%s\" has more than 12 characters which can make the "
-"printer unaccessible from Windows clients. Do you really want to use this "
-"name?"
-msgstr ""
-"Der Druckername „%s“ hat mehr als 12 Zeichen. Dies kann dazu führen, dass "
-"der Drucker von Windowsclients aus nicht erreichbar ist. Wollen Sie diesen "
-"Namen wirklich verwenden?"
-
-#: printer/printerdrake.pm:2969
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Jeder Drucker benötigt einen Namen (etwa „Drucker“).\n"
-"Beschreibung und Standort müssen nicht ausgefüllt werden.\n"
-"Sie dienen nur als Kommentare für den Anwender."
-
-#: printer/printerdrake.pm:2970
-#, c-format
-msgid "Name of printer"
-msgstr "Druckername"
-
-#: printer/printerdrake.pm:2971 standalone/drakconnect:592
-#: standalone/harddrake2:39 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Description"
-msgstr "Beschreibung"
-
-#: printer/printerdrake.pm:2972 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Location"
-msgstr "Standort"
-
-#: printer/printerdrake.pm:2990
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Vorbereiten der Drucker-Datenbank ..."
-
-#: printer/printerdrake.pm:3116
-#, c-format
-msgid "Your printer model"
-msgstr "Ihr Druckermodell"
-
-#: printer/printerdrake.pm:3117
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"PrinterDrake hat den Modellnamen der Selbsterkennung mit den Modellen in der "
-"Datenbank verglichen, um den besten Treiber zu finden. Die Auswahl kann "
-"jedoch falsch sein, etwa wenn Ihr Drucker nicht in der Datenbank vorhanden "
-"ist. Kontrollieren Sie, ob die Wahl korrekt ist und wählen Sie die "
-"Schaltfläche „Das Modell ist richtig“, wenn der Treiber Ihren Wünschen "
-"entspricht, andernfalls betägen Sie „Modell manuell auswählen“, um die "
-"Auswahl selbst vorzunehmen.\n"
-"\n"
-"Folgender Drucker wurde gefunden:\n"
-"\n"
-"%s"
-
-#: printer/printerdrake.pm:3122 printer/printerdrake.pm:3125
-#, c-format
-msgid "The model is correct"
-msgstr "Das Modell ist richtig"
-
-#: printer/printerdrake.pm:3123 printer/printerdrake.pm:3124
-#: printer/printerdrake.pm:3127
-#, c-format
-msgid "Select model manually"
-msgstr "Modell manuell auswählen"
-
-#: printer/printerdrake.pm:3151
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
-msgstr ""
-"\n"
-"\n"
-"Kontrollieren Sie bitte, ob PrinterDrake Ihren Drucker korrekt erkannt hat. "
-"Falls die Markierung auf einem falschen Gerät oder auf „Rohdaten-Drucker“ "
-"steht, suchen Sie bitte selbst Ihren Drucker in der Liste."
-
-#: printer/printerdrake.pm:3170
-#, c-format
-msgid "Install a manufacturer-supplied PPD file"
-msgstr "Installiere eine herstellerunterstützte PPD-Datei"
-
-#: printer/printerdrake.pm:3202
-#, c-format
-msgid ""
-"Every PostScript printer is delivered with a PPD file which describes the "
-"printer's options and features."
-msgstr ""
-"Jeder PostScript-Drucker wird mit einer PPD-Datei ausgeliefert, welche die "
-"Optionen des Druckers beschreiben."
-
-#: printer/printerdrake.pm:3203
-#, c-format
-msgid ""
-"This file is usually somewhere on the CD with the Windows and Mac drivers "
-"delivered with the printer."
-msgstr ""
-"Diese Datei ist in der Regel irgendwo auf der CD bei den Windows- und Mac-"
-"Treibern, die mit dem Drucker geliefert wurde."
-
-#: printer/printerdrake.pm:3204
-#, c-format
-msgid "You can find the PPD files also on the manufacturer's web sites."
-msgstr ""
-"Sie können die PPD-Datei auch von den Hersteller-Homepages runterladen."
-
-#: printer/printerdrake.pm:3205
-#, c-format
-msgid ""
-"If you have Windows installed on your machine, you can find the PPD file on "
-"your Windows partition, too."
-msgstr ""
-"Falls Sie Windows auf ihrem Rechner installiert haben können Sie die PPD-"
-"Datei auch auf der Windows-Partition finden."
-
-#: printer/printerdrake.pm:3206
-#, c-format
-msgid ""
-"Installing the printer's PPD file and using it when setting up the printer "
-"makes all options of the printer available which are provided by the "
-"printer's hardware"
-msgstr ""
-"Das Installieren der PPD-Datei Ihres Druckers und die Benutzung zur "
-"Einrichtung des Druckers machen alle Optionen des Druckers verfügbar, die "
-"durch das Gerät unterstützt werden."
-
-#: printer/printerdrake.pm:3207
-#, c-format
-msgid ""
-"Here you can choose the PPD file to be installed on your machine, it will "
-"then be used for the setup of your printer."
-msgstr ""
-"Hier können Sie die PPD-Datei auswählen, welche auf Ihrem Rechner "
-"installiert wird. Sie wird anschließend für die Einrichtung des Druckers "
-"verwendet."
-
-#: printer/printerdrake.pm:3209
-#, c-format
-msgid "Install PPD file from"
-msgstr "Installiere PPD-Datei von"
-
-#: printer/printerdrake.pm:3212 printer/printerdrake.pm:3220
-#: standalone/scannerdrake:183 standalone/scannerdrake:192
-#: standalone/scannerdrake:242 standalone/scannerdrake:250
-#, c-format
-msgid "Floppy Disk"
-msgstr "Diskettenlaufwerk"
-
-#: printer/printerdrake.pm:3213 printer/printerdrake.pm:3222
-#: standalone/scannerdrake:184 standalone/scannerdrake:194
-#: standalone/scannerdrake:243 standalone/scannerdrake:252
-#, c-format
-msgid "Other place"
-msgstr "Andere Orte"
-
-#: printer/printerdrake.pm:3228
-#, c-format
-msgid "Select PPD file"
-msgstr "PPD-Datei auswählen"
-
-#: printer/printerdrake.pm:3232
-#, c-format
-msgid "The PPD file %s does not exist or is unreadable!"
-msgstr "Die PPD Datei %s existiert nicht oder ist unlesbar!"
-
-#: printer/printerdrake.pm:3238
-#, c-format
-msgid "The PPD file %s does not conform with the PPD specifications!"
-msgstr "Die PPD-Datei %s stimmt nicht mit den PPD-Spezifikationen überein!"
-
-#: printer/printerdrake.pm:3249
-#, c-format
-msgid "Installing PPD file..."
-msgstr "Installiere PPD Datei..."
-
-#: printer/printerdrake.pm:3368
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "OKI Win-Drucker-Konfiguration"
-
-#: printer/printerdrake.pm:3369
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"Sie versuchen, einen OKI Win-Laserdrucker einzurichten. Da diese Drucker ein "
-"sehr eigenwilliges Protokoll verwenden, funktionieren sie nur, wenn sie am "
-"ersten Parallelport angeschlossen sind. Sollte Ihr Drucker an einer anderen "
-"Schnittstelle oder an einer Printserver-Box hängen, schließen Sie ihn bitte "
-"an den ersten Parallelport, bevor Sie versuchen eine Testseite zu drucken ..."
-
-#: printer/printerdrake.pm:3394 printer/printerdrake.pm:3424
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Lexmark-Tintenstrahl-Konfiguration"
-
-#: printer/printerdrake.pm:3395
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Der Lexmark-Tintenstrahl-Druckertreiber unterstützt nur lokale Drucker, "
-"keine Drucker an anderen Rechnern im Netzwerk oder an Printserver-Boxen. "
-"Bitte schließen Sie den Drucker direkt an Ihren Rechner oder richten Sie ihn "
-"auf dem Rechner ein, an den er angeschlossen ist."
-
-#: printer/printerdrake.pm:3425
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-"Um mit Ihrem Lexmark-Tintenstrahldrucker drucken zu können, benötigen Sie "
-"die Treiber, die von Lexmark bereitgestellt werden (http://www.lexmark."
-"com/). Klicken Sie auf den „Drivers“-Link. Wählen Sie dann das Druckermodell "
-"und geben Sie „Linux“ als Betriebssystem an. Sie erhalten die Treiber als "
-"RPM-Paket oder als Shellskript mit interaktiver grafischer Installation. Sie "
-"müssen die Einrichtung nicht mit dem Lexmark-Klicktool vornehmen. Sie können "
-"direkt nach der Lizenz auf „Abbrechen“ drücken. Drucken Sie dann die "
-"Druckkopf-Justierungsseiten mit „lexmarkmaintain“ und justieren Sie damit "
-"den Druckkopf."
-
-#: printer/printerdrake.pm:3435
-#, c-format
-msgid "Lexmark X125 configuration"
-msgstr "Lexmark X125 Konfiguration"
-
-#: printer/printerdrake.pm:3436
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes. Please connect "
-"your printer to a local USB port or configure it on the machine where it is "
-"connected to."
-msgstr ""
-"Der Treiber für diesen Drucker unterstützt nur Drucker, die direkt über USB "
-"angeschlossen sind, keine Drucker an anderen Rechnern im Netzwerk oder an "
-"Printservern. Bitte schließen Sie Ihren Drucker an einen lokalen USB-"
-"Anschluss an oder richten Sie ihn auf dem Rechner ein, an den er "
-"angeschlossen ist."
-
-#: printer/printerdrake.pm:3458
-#, c-format
-msgid "Samsung ML/QL-85G configuration"
-msgstr "Samsung ML/QL-85G Konfiguration"
-
-#: printer/printerdrake.pm:3459 printer/printerdrake.pm:3486
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected on the "
-"first parallel port, no printers on remote machines or print server boxes or "
-"on other parallel ports. Please connect your printer to the first parallel "
-"port or configure it on the machine where it is connected to."
-msgstr ""
-"Der Treiber für diesen Drucker unterstützt nur Drucker, die an der ersten "
-"Parallelschnittstelle angeschlossen sind, keine Drucker an anderen Rechnern "
-"im Netzwerk oder an Printservern. Bitte schließen Sie Ihren Drucker an die "
-"ersten Parallelschnittstelle an oder richten Sie ihn auf dem Rechner ein, an "
-"den er angeschlossen ist."
-
-#: printer/printerdrake.pm:3485
-#, c-format
-msgid "Canon LBP-460/660 configuration"
-msgstr "Canon LBP-460/660 Konfiguration"
-
-#: printer/printerdrake.pm:3512
-#, c-format
-msgid "Canon LBP-810/1120 (CAPT) configuration"
-msgstr "Canon LBP-810/1120 (CAPT)-Konfiguration"
-
-#: printer/printerdrake.pm:3513
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes or on the parallel "
-"port. Please connect your printer to the USB or configure it on the machine "
-"where it is directly connected to."
-msgstr ""
-"Der Treiber für diesen Drucker unterstützt nur Drucker, die direkt über USB "
-"angeschlossen sind, keine Drucker an anderen Rechnern oder am "
-"Parallelanschluß. Bitte schließen Sie Ihren Drucker an einen lokalen USB-"
-"Anschluss an oder richten Sie ihn auf dem Rechner ein, an den er "
-"angeschlossen ist."
-
-#: printer/printerdrake.pm:3520
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "Firmware-Upload an HP LaserJet 1000"
-
-#: printer/printerdrake.pm:3670
-#, c-format
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Standard-Einstellungen des Druckers\n"
-"\n"
-"Sie sollten sicherstellen, dass Papiergröße, Farbangaben, Druckqualität "
-"sowie Informationen zu vorhandenem Speicher, Duplexeinheit und Papierfächern "
-"richtig eingestellt sind. Es sei auch angemerkt, dass häufig mit steigender "
-"Druckqualität die Druckgeschwindigkeit sinkt."
-
-#: printer/printerdrake.pm:3795
-#, c-format
-msgid "Printer default settings"
-msgstr "Standard-Einstellungen des Druckers"
-
-#: printer/printerdrake.pm:3802
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Der Parameter %s muss eine ganzzahlige Zahl sein!"
-
-#: printer/printerdrake.pm:3806
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Der Parameter %s muss eine Zahl sein!"
-
-#: printer/printerdrake.pm:3810
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Der Parameter %s ist groß oder zu klein!"
-
-#: printer/printerdrake.pm:3862
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Möchten Sie diesen Drucker („%s“)\n"
-"als Standarddrucker verwenden?"
-
-#: printer/printerdrake.pm:3878
-#, c-format
-msgid "Test pages"
-msgstr "Testseiten"
-
-#: printer/printerdrake.pm:3879
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Bitte wählen Sie, welche Testseiten Sie drucken wollen.\n"
-"\n"
-"Bemerkung: Der Druck der Foto-Testseite dauert häufig extrem lange. Bei "
-"Laserdruckern mit wenig Speicher kann es auch vorkommen, dass sie gar nicht "
-"gedruckt wird. Normalerweise sollte es ausreichen, die Standard-Testseiten "
-"auszudrucken."
-
-#: printer/printerdrake.pm:3883
-#, c-format
-msgid "No test pages"
-msgstr "Keine Testseiten"
-
-#: printer/printerdrake.pm:3884
-#, c-format
-msgid "Print"
-msgstr "Drucken"
-
-#: printer/printerdrake.pm:3909
-#, c-format
-msgid "Standard test page"
-msgstr "Standard-Testseite"
-
-#: printer/printerdrake.pm:3912
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Alternative Testseite (US-Format - „Letter“)"
-
-#: printer/printerdrake.pm:3915
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Alternative Testseite (A4)"
-
-#: printer/printerdrake.pm:3917
-#, c-format
-msgid "Photo test page"
-msgstr "Foto-Testseite"
-
-#: printer/printerdrake.pm:3930
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Druck der Testseite(n) ..."
-
-#: printer/printerdrake.pm:3950
-#, c-format
-msgid "Skipping photo test page."
-msgstr "Überspringe Foto-Testseite."
-
-#: printer/printerdrake.pm:3967
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Die Testseite(n) wurden an den Drucker gesandt.\n"
-"Es kann einen Augenblick dauern, bevor der Drucker seine Arbeit aufnimmt.\n"
-"Druckstatus:\n"
-"%s\n"
-"\n"
-
-#: printer/printerdrake.pm:3971
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Die Testseite(n) wurden an den Drucker gesandt.\n"
-"Es kann einen Augenblick dauern, bevor der Drucker seine Arbeit aufnimmt.\n"
-
-#: printer/printerdrake.pm:3981
-#, c-format
-msgid "Did it work properly?"
-msgstr "War der Ausdruck korrekt?"
-
-#: printer/printerdrake.pm:4005
-#, c-format
-msgid "Raw printer"
-msgstr "Rohdaten-Drucker"
-
-#: printer/printerdrake.pm:4027
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Sie können sowohl den Befehl „%s <datei>“ verwenden, wenn Sie in einer "
-"Konsole die Datei „<datei>“ drucken wollen, als auch ein grafisches "
-"Hilfsprogramm verwenden: „xpp <datei>“ oder „kprinter <datei>“. Die "
-"grafischen Hilfsprogramme erlauben Ihnen auf einfache Weise den richtigen "
-"Drucker zu wählen und die notwendigen Drucker-Parameter anzugeben.\n"
-
-#: printer/printerdrake.pm:4029
-#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Sie können diese Befehle auch in dem „Druck-Kommando“-Feld des Druckdialogs "
-"zahlreicher Anwendungen angeben, lassen Sie jedoch den Dateinamen weg, da "
-"die zu druckende Datei von der Anwendung geliefert wird.\n"
-
-#: printer/printerdrake.pm:4032 printer/printerdrake.pm:4049
-#: printer/printerdrake.pm:4059
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"Der Befehl „%s“ erlaubt es Ihnen auch zahlreiche Einstellungen für einen "
-"bestimmten Druckauftrag zu ändern. Geben Sie die gewünschten Angaben einfach "
-"in der Kommandozeile mit an, etwa: „%s <Datei>“. "
-
-#: printer/printerdrake.pm:4035 printer/printerdrake.pm:4075
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"Um alle existierenden Optionen des Druckers zu erfahren, lesen Sie entweder "
-"die unten angegebene Liste oder betätigen Sie die Schaltfläche „Liste der "
-"Drucker-Optionen“. %s%s%s\n"
-"\n"
-
-#: printer/printerdrake.pm:4039
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Hier die Liste vorhandener Drucker-Parameter des aktuellen Druckers:\n"
-"\n"
-
-#: printer/printerdrake.pm:4044 printer/printerdrake.pm:4054
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Verwenden Sie den Befehl „%s <Datei>“, um die Datei <Datei> in der "
-"Kommandozeile auszudrucken.\n"
-
-#: printer/printerdrake.pm:4046 printer/printerdrake.pm:4056
-#: printer/printerdrake.pm:4066
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Sie können diesen Befehl auch im „Druckkommando“-Feld vieler Programme "
-"angeben. Tragen Sie bitte keinen Dateinamen ein, da dieser vom Programm "
-"ergänzt wird.\n"
-
-#: printer/printerdrake.pm:4051 printer/printerdrake.pm:4061
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Um eine Liste der Drucker-Parameter Ihres Druckers zu erhalten, betätigen "
-"Sie bitte die Schaltfläche „Liste der Drucker-Optionen“."
-
-#: printer/printerdrake.pm:4064
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Verwenden Sie einen der Befehle „%s <Datei>„ oder „%s <Datei>“, um die Datei "
-"<Datei> in der Kommandozeile auszudrucken.\n"
-
-#: printer/printerdrake.pm:4068
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Sie können auch das Grafikwerkzeug „xpdq“ zum Setzen der Optionen und "
-"Verwalten der Druckjobs verwenden.\n"
-"Falls Sie KDE als Arbeitsoberfläche nutzen, haben Sie eine Panik-Abschaltung "
-"in Form des Arbeitsflächensymbols „Drucker anhalten!“, dass sofort alle "
-"Druckaufträge anhält, wenn Sie es betätigen. Das kann beispielsweise dann "
-"hilfreich sein, wenn Sie einen Papierstau in Ihrem Drucker haben.\n"
-
-#: printer/printerdrake.pm:4072
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"Die Befehle „%s“ und „%s“ erlauben es Ihnen ebenfalls die Optionen eines "
-"speziellen Druckjobs zu konfigurieren. Fügen Sie einfach die gewünschten "
-"Einstellungen in der Kommandozeile ein, etwa „%s <Datei>“.\n"
-
-#: printer/printerdrake.pm:4081
-#, c-format
-msgid "Using/Maintaining the printer \"%s\""
-msgstr "Benutzen/Verwalten des Druckers „%s“"
-
-#: printer/printerdrake.pm:4082
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Drucken auf Drucker „%s“"
-
-#: printer/printerdrake.pm:4088
-#, c-format
-msgid "Print option list"
-msgstr "Liste der Drucker-Optionen"
-
-#: printer/printerdrake.pm:4092
-#, fuzzy, c-format
-msgid "Printing option list..."
-msgstr "Liste der Drucker-Optionen"
-
-#: printer/printerdrake.pm:4110
-#, c-format
-msgid ""
-"Your %s is set up with HP's HPLIP driver software. This way many special "
-"features of your printer are supported.\n"
-"\n"
-msgstr ""
-"Ihr %s ist mit HPs HPLIP Treiber eingerichtet. Auf diese Art und Weise "
-"werden viele spezielle Funktionen Ihres Druckers unterstützt.\n"
-"\n"
-
-#: printer/printerdrake.pm:4113
-#, c-format
-msgid ""
-"The scanner in your printer can be used with the usual SANE software, for "
-"example Kooka or XSane (Both in the Multimedia/Graphics menu). "
-msgstr ""
-"Der Scanner in Ihrem Drucker kann mit den normalen SANE-Programmen verwendet "
-"werden, zum Beispiel Kooka or XSane (beide im Menü Multimedia/Grafik). "
-
-#: printer/printerdrake.pm:4114
-#, c-format
-msgid ""
-"Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to "
-"share your scanner on the network.\n"
-"\n"
-msgstr ""
-"Starten Sie Scannerdrake (Hardware/Scanner im Mandriva Linux "
-"Kontrollzentrum), um Ihren Scanner im Netzwerk freizugeben.\n"
-"\n"
-
-#: printer/printerdrake.pm:4118
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed like a usual USB "
-"mass storage device. "
-msgstr ""
-"Auf die Speicherkartenleser in Ihrem Drucker kann wie auf normale USB-"
-"Massenspeichergeräte zugegriffen werden. "
-
-#: printer/printerdrake.pm:4119
-#, c-format
-msgid ""
-"After inserting a card a hard disk icon to access the card should appear on "
-"your desktop.\n"
-"\n"
-msgstr ""
-"Nach dem Einsetzen einer Karte sollte ein Festplattensymbol zum "
-"Kartenzugriff auf Ihrer Arbeitsfläche erscheinen.\n"
-"\n"
-
-#: printer/printerdrake.pm:4121
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed using HP's Printer "
-"Toolbox (Menu: System/Monitoring/HP Printer Toolbox) clicking the \"Access "
-"Photo Cards...\" button on the \"Functions\" tab. "
-msgstr ""
-"Auf die Speicherkartenleser in Ihrem Drucker kann mit HPs Printer Toolbox "
-"(Menu: System/Überwachung/HP Printer Toolbox) durch Anklicken von „Zugriff "
-"auf Fotokarten‟ unter dem Tabulator „Funktionen‟ zugegriffen werden. "
-
-#: printer/printerdrake.pm:4122
-#, c-format
-msgid ""
-"Note that this is very slow, reading the pictures from the camera or a USB "
-"card reader is usually faster.\n"
-"\n"
-msgstr ""
-"Beachten Sie bitte, dass dies sehr langsam ist. Es ist meist schneller, die "
-"Bilder von der Kamera oder einem USB-Kartenleser zu lesen.\n"
-"\n"
-
-#: printer/printerdrake.pm:4125
-#, c-format
-msgid ""
-"HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a "
-"lot of status monitoring and maintenance functions for your %s:\n"
-"\n"
-msgstr ""
-"HP's Printer Toolbox (Menu: System/Überwachung/HP Printer Toolbox) bietet "
-"eine Menge an Statusüberwachung und Verwaltungsfunktionen für Ihren %s:\n"
-"\n"
-
-#: printer/printerdrake.pm:4126
-#, c-format
-msgid " - Ink level/status info\n"
-msgstr " - Tintenfüllstand/Statusinformation\n"
-
-#: printer/printerdrake.pm:4127
-#, c-format
-msgid " - Ink nozzle cleaning\n"
-msgstr " - Tintendüsenreinigung\n"
-
-#: printer/printerdrake.pm:4128
-#, c-format
-msgid " - Print head alignment\n"
-msgstr " - Druckkopfausrichtung\n"
-
-#: printer/printerdrake.pm:4129
-#, c-format
-msgid " - Color calibration\n"
-msgstr " - Farbabgleich\n"
-
-#: printer/printerdrake.pm:4170 printer/printerdrake.pm:4197
-#: printer/printerdrake.pm:4232
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Drucker-Einstellung übertragen"
-
-#: printer/printerdrake.pm:4171
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"Sie können die Druckerkonfiguration, die Sie für den Spooler „%s“ "
-"vorgenommen haben für „%s“, ihren aktuellen Spooler, verwenden. Alle Daten "
-"(Name, Beschreibung, Standort, Verbindungsart und Standard- "
-"Optionseinstellungen) werden übernommen, Druckjobs in der alten "
-"Warteschlange gehen jedoch verloren.\n"
-"Nicht alle Warteschlangen können übernommen werden:\n"
-
-#: printer/printerdrake.pm:4174
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS unterstützt keine Drucker an Novell-Servern oder Drucker, die ihre "
-"Daten in ein frei gewähltes Kommando senden.\n"
-
-#: printer/printerdrake.pm:4176
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ unterstützt nur lokale Drucker, entfernte LPD-Drucker und Socket/TCP-"
-"Drucker.\n"
-
-#: printer/printerdrake.pm:4178
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD und LPRng unterstützen keine IPP-Drucker.\n"
-
-#: printer/printerdrake.pm:4180
-#, c-format
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"Warteschlangen, die nicht mit diesem Programm oder „foomatic-configure“ "
-"erstellt wurden, können nicht übertragen werden."
-
-#: printer/printerdrake.pm:4181
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Drucker, die mit den PPD-Dateien ihrer Hersteller oder CUPS-spezifischen "
-"Treibern eingerichtet wurden, können nicht übertragen werden."
-
-#: printer/printerdrake.pm:4182
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Markieren Sie die Drucker, die sie übertragen wollen und betätigen Sie die "
-"Schaltfläche „Übertragen“."
-
-#: printer/printerdrake.pm:4185
-#, c-format
-msgid "Do not transfer printers"
-msgstr "Druckerdaten nicht übertragen"
-
-#: printer/printerdrake.pm:4186 printer/printerdrake.pm:4202
-#, c-format
-msgid "Transfer"
-msgstr "Übertragen"
-
-#: printer/printerdrake.pm:4198
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Es existiert bereits ein Drucker mit Namen „%s“ unter %s.\n"
-"Durch Betätigen der Schaltfäche „Übertragen“ können Sie ihn\n"
-"überschreiben. Sie können dem Drucker auch einen neuen \n"
-"Namen geben oder ihn einfach überspringen."
-
-#: printer/printerdrake.pm:4219
-#, c-format
-msgid "New printer name"
-msgstr "Neuer Druckername"
-
-#: printer/printerdrake.pm:4222
-#, c-format
-msgid "Transferring %s..."
-msgstr "Übertrage „%s“ ..."
-
-#: printer/printerdrake.pm:4233
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Sie haben Ihren alten Standarddrucker („%s“) übertragen, soll es auch Ihr "
-"Standarddrucker unter dem neuen Drucksystem „%s“ werden?"
-
-#: printer/printerdrake.pm:4243
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Aktualisieren der Druckerdaten ..."
-
-#: printer/printerdrake.pm:4253
-#, c-format
-msgid "Starting network..."
-msgstr "Netzwerk starten ..."
-
-#: printer/printerdrake.pm:4296 printer/printerdrake.pm:4300
-#: printer/printerdrake.pm:4302
-#, c-format
-msgid "Configure the network now"
-msgstr "Netzwerk jetzt konfigurieren"
-
-#: printer/printerdrake.pm:4297
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Ihr Netzwerk ist nicht konfiguriert"
-
-#: printer/printerdrake.pm:4298
-#, c-format
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"Sie wollen einen Netzwerkdrucker einrichten. Sie benötigen dafür ein "
-"funktionerendes Netzwerk, aber Ihr Netzwerk ist noch nicht eingerichtet. "
-"Wenn Sie dennoch fortfahren, ohne Ihr Netzwerk einzurichten, ist der Drucker "
-"hinterher nicht zu verwenden. Wie wollen Sie verfahren?"
-
-#: printer/printerdrake.pm:4301
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Weiter ohne Netzwerkkonfiguration"
-
-#: printer/printerdrake.pm:4332
-#, c-format
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network is accessible after booting your "
-"system and correct the configuration using the %s Control Center, section "
-"\"Network & Internet\"/\"Connection\", and afterwards set up the printer, "
-"also using the %s Control Center, section \"Hardware\"/\"Printer\""
-msgstr ""
-"Das von Ihnen während der Installation eingerichtete Netzwerk kann jetzt "
-"nicht gestartet werden. Testen Sie bitte, ob es nach einem Neustart zur "
-"Verfügung steht. Falls nicht, berichtigen Sie die Einstellungen im %s "
-"Kontrollzentrum unter „Netzwerk & Internet/Verbindungen“. Versuchen Sie "
-"anschließend erneut den Drucker mittels „Hardware/Drucker“ im %s "
-"Kontrollzentrum einzurichten."
-
-#: printer/printerdrake.pm:4333
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Es wurde kein aktives Netzwerk gefunden und es konnte auch keine "
-"Netzwerkverbindung hergestellt werden. Kontrollieren Sie bitte Ihre Hardware "
-"und Ihre Softwareeinstellungen. Versuchen Sie anschließend erneut den "
-"Netzwerkdrucker einzurichten."
-
-#: printer/printerdrake.pm:4343
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Drucksystem neu starten ..."
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "high"
-msgstr "Hoch"
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "paranoid"
-msgstr "Paranoid"
-
-#: printer/printerdrake.pm:4376
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Installiere ein Drucksystem in Sicherheitsebene %s"
-
-#: printer/printerdrake.pm:4377
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessible by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Sie sind dabei das Drucksystem %s auf einem Rechner mit Sicherheitsebene %s "
-"zu installieren.\n"
-"\n"
-"Dieses Drucksystem läuft als Dämon (Hintergrundprozess), der auf "
-"Druckaufträge wartet, um sie abzuarbeiten. Da der Dämon auch für andere "
-"Rechner Ihres Netzwerks erreichbar ist,schaffen Sie damit einen möglichen "
-"Angriffspunkt. Aus Sicherheitsgründen werden in dieser Sicherheitsebene "
-"standardmäßig nur einige ausgewählte Dämons gestartet.\n"
-"\n"
-"Wollen Sie wirklich dieses Drucksystem auf diesem Rechner installieren?"
-
-#: printer/printerdrake.pm:4413
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Drucksystem beim Systemstart aktivieren"
-
-#: printer/printerdrake.pm:4414
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"Das Drucksystem (%s) wird nicht automatisch beim Systemstart aktiviert.\n"
-"Es ist möglich, dass der Start durch den Wechsel in eine höhere "
-"Sicherheitsebene deaktiviert wurde, da das Drucksystem einen potentiellen "
-"Angriffspunkt darstellt.\n"
-"\n"
-"Wollen sie den automatischen Start des Drucksystems wiederherstellen?"
-
-#: printer/printerdrake.pm:4437
-#, c-format
-msgid "Checking installed software..."
-msgstr "Suche nach installierter Software..."
-
-#: printer/printerdrake.pm:4443
-#, c-format
-msgid "Removing %s..."
-msgstr "Entferne %s ..."
-
-#: printer/printerdrake.pm:4447
-#, c-format
-msgid "Could not remove the %s printing system!"
-msgstr "Konnte das %s Drucksystem nicht entfernen!"
-
-#: printer/printerdrake.pm:4471
-#, c-format
-msgid "Installing %s..."
-msgstr "Installiere %s ..."
-
-#: printer/printerdrake.pm:4475
-#, c-format
-msgid "Could not install the %s printing system!"
-msgstr "Konnte das %s Drucksystem nicht installieren!"
-
-#: printer/printerdrake.pm:4543
-#, c-format
-msgid ""
-"In this mode there is no local printing system, all printing requests go "
-"directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-"In diesem Modus gibt es kein lokales Drucksystem, alle Druckaufträge gehen "
-"direkt zum unten angegebenen Server. Beachten Sie bitte, dass es dann nicht "
-"möglich ist, lokale Druckerwarteschlangen einzurichten und dass wenn der "
-"angegebene Server heruntergefahren ist, von dieser Maschine überhaupt nicht "
-"gedruckt werden kann."
-
-#: printer/printerdrake.pm:4545
-#, c-format
-msgid ""
-"Enter the host name or IP of your CUPS server and click OK if you want to "
-"use this mode, click \"Quit\" otherwise."
-msgstr ""
-"Geben Sie den Rechnernamen oder die IP Ihres CUPS-Servers ein und klicken "
-"Sie auf OK, wenn Sie diesen Modus verwenden wollen. Ansonsten klicken Sie "
-"auf „Abbrechen“."
-
-#: printer/printerdrake.pm:4559
-#, c-format
-msgid "Name or IP of remote server:"
-msgstr "Name oder IP des entfernten Servers:"
-
-#: printer/printerdrake.pm:4579
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Standarddrucker wählen ..."
-
-#: printer/printerdrake.pm:4599
-#, c-format
-msgid "Local CUPS printing system or remote CUPS server?"
-msgstr "Lokales CUPS-Drucksystem oder entfernter CUPS-Server?"
-
-#: printer/printerdrake.pm:4600
-#, c-format
-msgid "The CUPS printing system can be used in two ways: "
-msgstr "Das CUPS-Drucksystem kann auf zwei Arten verwendet werden:"
-
-#: printer/printerdrake.pm:4602
-#, c-format
-msgid "1. The CUPS printing system can run locally. "
-msgstr "1. Das CUPS-Drucksystem kann lokal arbeiten."
-
-#: printer/printerdrake.pm:4603
-#, c-format
-msgid ""
-"Then locally connected printers can be used and remote printers on other "
-"CUPS servers in the same network are automatically discovered. "
-msgstr ""
-"So können lokal angeschlossene Drucker verwendet werden und entfernte "
-"Drucker an anderen CUPS-Servern im gleichen Netzwerk werden automatisch "
-"erkannt."
-
-#: printer/printerdrake.pm:4604
-#, c-format
-msgid ""
-"Disadvantage of this approach is, that more resources on the local machine "
-"are needed: Additional software packages need to be installed, the CUPS "
-"daemon has to run in the background and needs some memory, and the IPP port "
-"(port 631) is opened. "
-msgstr ""
-"Der nachteil dieser Heangehensweise ist, dass mehr Ressourcen auf dem "
-"lokalen Rechner gebraucht werden: Zusätzliche Software muss installiert "
-"werden, der CUPS-Dämon muss im Hintergrund laufen und braucht etwas "
-"Arbeitsspeicher und der IPP-Port (631) is offen."
-
-#: printer/printerdrake.pm:4606
-#, c-format
-msgid "2. All printing requests are immediately sent to a remote CUPS server. "
-msgstr ""
-"2. Alle Druckaufträge werden sofort zu einem entfernten CUPS-Server gesendet."
-
-#: printer/printerdrake.pm:4607
-#, c-format
-msgid ""
-"Here local resource occupation is reduced to a minimum. No CUPS daemon is "
-"started or port opened, no software infrastructure for setting up local "
-"print queues is installed, so less memory and disk space is used. "
-msgstr ""
-"Der lokale Ressourcenverbrauch ist auf ein Minimum reduziert. Kein CUPS-"
-"Dämon wird gestartet und kein Port geöffnet, keine Softwareinfrastruktur zum "
-"Aufsetzen lokaler Druckerwarteschlangen muss installiert werden, also wird "
-"weniger Arbeitsspeicher und Festplattenplatz verbraucht. "
-
-#: printer/printerdrake.pm:4608
-#, c-format
-msgid ""
-"Disadvantage is that it is not possible to define local printers then and if "
-"the specified server is down it cannot be printed at all from this machine. "
-msgstr ""
-"Der Nachteil ist, dass dann keine lokalen Drucker eingerichtet werden können "
-"und von dieser Maschine überhaupt nicht gedruckt werden kann, wenn der "
-"Server heruntergefahren ist."
-
-#: printer/printerdrake.pm:4610
-#, c-format
-msgid "How should CUPS be set up on your machine?"
-msgstr "Wie soll CUPS auf Ihrer Maschine eingerichtet werden?"
-
-#: printer/printerdrake.pm:4614 printer/printerdrake.pm:4629
-#: printer/printerdrake.pm:4633 printer/printerdrake.pm:4639
-#, c-format
-msgid "Remote server, specify Name or IP here:"
-msgstr "Entfernter Server, geben Sie hier den Namen oder die IP ein:"
-
-#: printer/printerdrake.pm:4628
-#, c-format
-msgid "Local CUPS printing system"
-msgstr "Lokales CUPS-Drucksystem"
-
-#: printer/printerdrake.pm:4667
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Wählen Sie das Drucksystem"
-
-#: printer/printerdrake.pm:4668
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Welches Drucksystem (Spooler) wollen Sie verwenden?"
-
-#: printer/printerdrake.pm:4717
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Konnte Drucker „%s“ nicht konfigurieren!"
-
-#: printer/printerdrake.pm:4732
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Installiere das Paket Foomatic ..."
-
-#: printer/printerdrake.pm:4738
-#, c-format
-msgid "Could not install %s packages, %s cannot be started!"
-msgstr ""
-"Konnte die %s Pakete nicht installieren, %s kann nicht gestartet werden!"
-
-#: printer/printerdrake.pm:4933
-#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it. "
-msgstr ""
-"Die folgenden Drucker sind bereits eingerichtet. Führen Sie einen "
-"Doppelklick auf einen Drucker aus, um seine Einstellungen zu ändern, als "
-"Standarddrucker zu verwenden oder Informationen über ihn zu erhalten."
-
-#: printer/printerdrake.pm:4963
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Alle Netzwerk-CUPS-Drucker anzeigen"
-
-#: printer/printerdrake.pm:4964
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr "Aktualisiere Druckerliste (um alle entfernten CUPS-Drucker anzuzeigen)"
-
-#: printer/printerdrake.pm:4975
-#, c-format
-msgid "CUPS configuration"
-msgstr "CUPS-Konfiguration"
-
-#: printer/printerdrake.pm:4996
-#, c-format
-msgid "Change the printing system"
-msgstr "Drucksystem ändern"
-
-#: printer/printerdrake.pm:5005
-#, c-format
-msgid "Normal Mode"
-msgstr "Normaler Modus"
-
-#: printer/printerdrake.pm:5006
-#, c-format
-msgid "Expert Mode"
-msgstr "Expertenmodus"
-
-#: printer/printerdrake.pm:5284 printer/printerdrake.pm:5340
-#: printer/printerdrake.pm:5426 printer/printerdrake.pm:5435
-#, c-format
-msgid "Printer options"
-msgstr "Drucker-Optionen"
-
-#: printer/printerdrake.pm:5320
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Drucker-Konfiguration ändern"
-
-#: printer/printerdrake.pm:5322
-#, c-format
-msgid ""
-"Printer %s%s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Drucker %s%s\n"
-"Was wollen Sie an diesem Drucker ändern?"
-
-#: printer/printerdrake.pm:5327
-#, c-format
-msgid "This printer is disabled"
-msgstr "Dieser Drucker ist deaktiviert"
-
-#: printer/printerdrake.pm:5329
-#, c-format
-msgid "Do it!"
-msgstr "Ausführen!"
-
-#: printer/printerdrake.pm:5335 printer/printerdrake.pm:5400
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Druckername, Beschreibung, Standort"
-
-#: printer/printerdrake.pm:5337 printer/printerdrake.pm:5419
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Druckerproduzent, Modell, Treiber"
-
-#: printer/printerdrake.pm:5338 printer/printerdrake.pm:5420
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Druckerproduzent, Modell"
-
-#: printer/printerdrake.pm:5342 printer/printerdrake.pm:5430
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Als Standarddrucker verwenden"
-
-#: printer/printerdrake.pm:5347 printer/printerdrake.pm:5436
-#: printer/printerdrake.pm:5438 printer/printerdrake.pm:5447
-#, c-format
-msgid "Enable Printer"
-msgstr "Drucker aktivieren"
-
-#: printer/printerdrake.pm:5350 printer/printerdrake.pm:5441
-#: printer/printerdrake.pm:5442 printer/printerdrake.pm:5444
-#, c-format
-msgid "Disable Printer"
-msgstr "Drucker deaktivieren"
-
-#: printer/printerdrake.pm:5354 printer/printerdrake.pm:5448
-#, c-format
-msgid "Printer communication error handling"
-msgstr "Fehlerbehandlung der Druckerkommunikation"
-
-#: printer/printerdrake.pm:5355 printer/printerdrake.pm:5452
-#, c-format
-msgid "Print test pages"
-msgstr "Testseite(n) drucken"
-
-#: printer/printerdrake.pm:5356 printer/printerdrake.pm:5454
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Wie dieser Drucker genutzt werden kann"
-
-#: printer/printerdrake.pm:5357 printer/printerdrake.pm:5456
-#, c-format
-msgid "Remove printer"
-msgstr "Drucker entfernen"
-
-#: printer/printerdrake.pm:5408
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Entferne alten Drucker „%s“..."
-
-#: printer/printerdrake.pm:5439
-#, c-format
-msgid "Printer \"%s\" is now enabled."
-msgstr "Drucker „%s“ ist jetzt aktiviert."
-
-#: printer/printerdrake.pm:5445
-#, c-format
-msgid "Printer \"%s\" is now disabled."
-msgstr "Drucker „%s“ ist jetzt deaktiviert."
-
-#: printer/printerdrake.pm:5487
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Möchten Sie den Drucker „%s“ wirklich entfernen?"
-
-#: printer/printerdrake.pm:5491
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Entferne Drucker „%s“..."
-
-#: printer/printerdrake.pm:5515
-#, c-format
-msgid "Default printer"
-msgstr "Standarddrucker"
-
-#: printer/printerdrake.pm:5516
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Der Drucker „%s“ ist jetzt Ihr Standarddrucker“"
-
#: raid.pm:42
#, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "Kann keine Partition zu dem _formatierten_ RAID %s hinzufügen"
-#: raid.pm:148
+#: raid.pm:150
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nicht genügend Partitionen für RAID-Level %d\n"
-#: scanner.pm:96
+#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr "Konnte Verzeichnis /usr/share/sane/firmware nicht erstellen!"
-#: scanner.pm:107
+#: scanner.pm:106
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr "Konnte Verknüpfung /usr/share/sane/%s nicht erstellen!"
-#: scanner.pm:114
+#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr ""
"Ich konnte die Firmware Datei %s nicht auf /usr/share/sane/firmware kopieren!"
-#: scanner.pm:121
+#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr "Konnte keine Zulassung setzen für die Firmware-Datei %s!"
-#: scanner.pm:200 standalone/scannerdrake:66 standalone/scannerdrake:70
-#: standalone/scannerdrake:78 standalone/scannerdrake:321
-#: standalone/scannerdrake:370 standalone/scannerdrake:463
-#: standalone/scannerdrake:507 standalone/scannerdrake:511
-#: standalone/scannerdrake:533 standalone/scannerdrake:598
+#: scanner.pm:199
#, c-format
msgid "Scannerdrake"
msgstr "ScannerDrake"
-#: scanner.pm:201 standalone/scannerdrake:964
+#: scanner.pm:200
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""
"Konnte die notwendigen Programme zum Freigeben Ihrer Scanner nicht "
"installieren."
-#: scanner.pm:202
+#: scanner.pm:201
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr "Ihr(e) Scanner wird nur für Benutzer Root verfügbar sein"
@@ -15524,12 +5266,12 @@ msgstr "IPv4 Scheinfehlermeldungen akteptieren/ablehnen."
#: security/help.pm:13
#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr " Das ICMP-Echo akzeptieren/ablehnen."
+msgid "Accept/Refuse broadcasted icmp echo."
+msgstr "Das ICMP-Echo akzeptieren/ablehnen."
#: security/help.pm:15
#, c-format
-msgid " Accept/Refuse icmp echo."
+msgid "Accept/Refuse icmp echo."
msgstr "Das ICMP-Echo akzeptieren/ablehnen."
#: security/help.pm:17
@@ -15695,7 +5437,7 @@ msgstr ""
"Aktiviere/Deaktiviere den Schutz vor Namensauflösungs-Manipulation. Wenn\n"
"„%s“ gewählt ist wird auch an das Systemprotokoll berichtet."
-#: security/help.pm:80 standalone/draksec:215
+#: security/help.pm:80
#, c-format
msgid "Security Alerts:"
msgstr "Sicherheitswarnungen:"
@@ -15724,7 +5466,8 @@ msgstr "Stündliche Sicherheitschecks aktivieren/deaktivieren."
#: security/help.pm:90
#, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"Enable su only from members of the wheel group. If set to no, allows su from "
+"any user."
msgstr ""
"Aktiviere su nur für Mitglieder der Gruppe „wheel“ oder erlaube su für jeden "
"Benutzer."
@@ -15741,12 +5484,12 @@ msgstr "Aktiviere/Deaktiviere die Vermischtheitsprüfung für Netzwerkkarten."
#: security/help.pm:96
#, c-format
-msgid " Activate/Disable daily security check."
-msgstr " Tägliche Sicherheitschecks aktivieren/deaktivieren.."
+msgid "Activate/Disable daily security check."
+msgstr "Tägliche Sicherheitschecks aktivieren/deaktivieren.."
#: security/help.pm:98
#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
+msgid "Enable/Disable sulogin(8) in single user level."
msgstr "Erlaube/Verbiete sulogin(8) im Single User Level"
#: security/help.pm:100
@@ -16021,8 +5764,8 @@ msgstr "Aktiviere msec stündlichen Sicherheits Check"
#: security/l10n.pm:32
#, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr "Erlaube su nur für Mitglieder der Wheel Gruppe oder für alle Benutzer"
+msgid "Enable su only from the wheel group members"
+msgstr "Erlaube su nur für Mitglieder der Wheel-Gruppe"
#: security/l10n.pm:33
#, c-format
@@ -16147,8 +5890,8 @@ msgstr "Starte chkrootkit Überprüfung"
#: security/l10n.pm:57
#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "Keine unnötigen Emails senden"
+msgid "Do not send empty mail reports"
+msgstr "Keine leeren E-Mail-Berichte senden"
#: security/l10n.pm:58
#, c-format
@@ -16186,6 +5929,11 @@ msgstr "Cracker-Spielplatz"
msgid "Poor"
msgstr "Schwach"
+#: security/level.pm:12
+#, c-format
+msgid "Standard"
+msgstr "Standard"
+
#: security/level.pm:13
#, c-format
msgid "High"
@@ -16269,6 +6017,11 @@ msgstr ""
#: security/level.pm:55
#, c-format
+msgid "Security"
+msgstr "Sicherheit"
+
+#: security/level.pm:55
+#, c-format
msgid "DrakSec Basic Options"
msgstr "DrakSec-Grundeinstellungen"
@@ -16668,55 +6421,70 @@ msgstr ""
"Dieser Dienst startet den X-Font-Server. Er ist notwendig, \n"
"damit Xorg gestartet werden kann!"
-#: services.pm:115 services.pm:157
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-"Wählen Sie, welche Dienste\n"
-"automatisch beim Systemstart\n"
-"aktiviert werden sollen"
-
-#: services.pm:127 standalone/draksambashare:111
+#: services.pm:114
#, c-format
msgid "Printing"
msgstr "Drucken"
-#: services.pm:128
+#: services.pm:115
#, c-format
msgid "Internet"
msgstr "Internet"
-#: services.pm:131
+#: services.pm:118
#, c-format
msgid "File sharing"
msgstr "Gemeinsamer Dateizugriff"
-#: services.pm:138
+#: services.pm:120
+#, c-format
+msgid "System"
+msgstr "System"
+
+#: services.pm:125
#, c-format
msgid "Remote Administration"
msgstr "Fernwartung"
-#: services.pm:146
+#: services.pm:133
#, c-format
msgid "Database Server"
msgstr "Datenbankserver"
-#: services.pm:209
+#: services.pm:144 services.pm:180
+#, c-format
+msgid "Services"
+msgstr "Dienste"
+
+#: services.pm:144
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr ""
+"Wählen Sie, welche Dienste\n"
+"automatisch beim Systemstart\n"
+"aktiviert werden sollen"
+
+#: services.pm:162
+#, c-format
+msgid "Services: %d activated for %d registered"
+msgstr "Dienste: %d aktiviert von %d registrierten"
+
+#: services.pm:196
#, c-format
msgid "running"
msgstr "aktiv"
-#: services.pm:209
+#: services.pm:196
#, c-format
msgid "stopped"
msgstr "gestoppt"
-#: services.pm:213
+#: services.pm:201
#, c-format
msgid "Services and daemons"
msgstr "Dienste und Dämonen"
-#: services.pm:219
+#: services.pm:207
#, c-format
msgid ""
"No additional information\n"
@@ -16726,483 +6494,32 @@ msgstr ""
"weiteren Informationen zu\n"
"diesem Dienst."
-#: services.pm:224 ugtk2.pm:1009
+#: services.pm:212 ugtk2.pm:898
#, c-format
msgid "Info"
msgstr "Info"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "Start when requested"
msgstr "Starten wenn verlangt"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "On boot"
msgstr "Beim Systemstart"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Start"
msgstr "Start"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Stop"
msgstr "Stopp"
-#: share/advertising/01.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Packs"
-msgstr "Mandriva Linux 2006: Pakete"
-
-#: share/advertising/02.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More features"
-msgstr "Mandriva Linux 2006: Mehr Funktionen"
-
-#: share/advertising/03.pl:3
-#, c-format
-msgid "Interactive firewall"
-msgstr "Interaktive Firewall"
-
-#: share/advertising/04.pl:3
-#, c-format
-msgid "Desktop search"
-msgstr "Desktop-Suche"
-
-#: share/advertising/05.pl:3
-#, c-format
-msgid "New package manager"
-msgstr "Neue Paketverwaltung"
-
-#: share/advertising/06.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More performances"
-msgstr "Mandriva Linux 2006: Mehr Leistung"
-
-#: share/advertising/07.pl:3
-#, c-format
-msgid "Latest kernel and GCC"
-msgstr "Neuester Kernel und GCC"
-
-#: share/advertising/08.pl:3
-#, c-format
-msgid "High Availibility"
-msgstr "Hochverfügbarkeit"
-
-#: share/advertising/09.pl:3
-#, c-format
-msgid "Delta RPM"
-msgstr "Delta-RPM"
-
-#: share/advertising/10.pl:3
-#, c-format
-msgid "Low resources setup"
-msgstr "Installation bei geringen Ressourcen"
-
-#: share/advertising/11.pl:3
-#, c-format
-msgid "Boot time reduction"
-msgstr "Verminderung der Startzeit"
-
-#: share/advertising/12.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Easier to use"
-msgstr "Mandriva Linux 2006: Einfacher zu verwenden"
-
-#: share/advertising/13.pl:3
-#, c-format
-msgid "Latest graphical interfaces: KDE and GNOME"
-msgstr "Neueste grafische Schnittstellen: KDE und GNOME"
-
-#: share/advertising/14.pl:3
-#, c-format
-msgid "auto-installation servers"
-msgstr "Server mit automatischer Installation"
-
-#: share/advertising/15.pl:3
-#, c-format
-msgid "Easy and quick installation"
-msgstr "Leichte und schnelle Installation"
-
-#: share/advertising/16.pl:3
-#, c-format
-msgid "Easy configuration thanks to 60 wizards"
-msgstr "Leichte Konfiguration dank 60 Assistenten"
-
-#: share/advertising/17.pl:3
-#, c-format
-msgid "Look and feel improved"
-msgstr "Verbessertes Erscheinungsbild"
-
-#: share/advertising/18.pl:3
-#, c-format
-msgid "New webmin theme"
-msgstr "Neues Webmin-Motiv"
-
-#: share/advertising/19.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More support"
-msgstr "Mandriva Linux 2006: Mehr Unterstützung"
-
-#: share/advertising/20.pl:3
-#, c-format
-msgid "Better Hardware support"
-msgstr "Bessere Hardwareunterstützung"
-
-#: share/advertising/21.pl:3
-#, c-format
-msgid "Xen support"
-msgstr "Xen-Unterstützung"
-
-#: share/advertising/22.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More information"
-msgstr "Mandriva Linux 2006: Mehr Information"
-
-#: share/advertising/23.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Where to buy?"
-msgstr "Mandriva Linux 2006: Wo kaufen?"
-
-#: share/advertising/24.pl:3
-#, c-format
-msgid "Where to find technical assistance?"
-msgstr "Wo technische Unterstützung finden?"
-
-#: share/advertising/25.pl:3
-#, c-format
-msgid "How to join the Mandriva Linux community?"
-msgstr "Wie der Mandriva Linux-Gemeinschaft beitreten?"
-
-#: share/advertising/26.pl:3
-#, c-format
-msgid "How to keep your system up-to-date?"
-msgstr "Wie Ihr System auf dem aktuellsten Stand halten?"
-
-#: share/advertising/intel.pl:3
-#, c-format
-msgid "Intel Software"
-msgstr "Intel Software"
-
-#: share/advertising/skype.pl:3
-#, c-format
-msgid "Skype lets you make calls through the Internet for free."
-msgstr "Mit Skype können Sie kostenlos im Internet telefonieren."
-
-#: share/compssUsers.pl:26
-#, c-format
-msgid "Office Workstation"
-msgstr "Büro-Arbeitsplatz"
-
-#: share/compssUsers.pl:28
-#, c-format
-msgid ""
-"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
-"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
-msgstr ""
-"Office-Programme: Textverarbeitung (Openoffice.org Writer, KWord), "
-"Tabellenkalkulation (OpenOffice.org Calc, KSpread), PDF-Betrachter, usw."
-
-#: share/compssUsers.pl:29
-#, c-format
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Office-Programme: Textverarbeitung (KWord, Abiword), Tabellenkalkulation "
-"(KSpread, Gnumeric), PDF-Betrachter, usw."
-
-#: share/compssUsers.pl:34
-#, c-format
-msgid "Game station"
-msgstr "Spiele-Station"
-
-#: share/compssUsers.pl:35
-#, c-format
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Spiele: Arcade-, Brett-, Strategiespiele, usw."
-
-#: share/compssUsers.pl:38
-#, c-format
-msgid "Multimedia station"
-msgstr "Multimedia-Station"
-
-#: share/compssUsers.pl:39
-#, c-format
-msgid "Sound and video playing/editing programs"
-msgstr "Programme, um Sound und Video abzuspielen und zu bearbeiten"
-
-#
-#: share/compssUsers.pl:44
-#, c-format
-msgid "Internet station"
-msgstr "Internet-Station"
-
-#: share/compssUsers.pl:45
-#, c-format
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Programme um E-Mails und News zu lesen und zu versenden (pine, mutt, tin..) "
-"und um im Internet zu surfen"
-
-#
-#: share/compssUsers.pl:50
-#, c-format
-msgid "Network Computer (client)"
-msgstr "Netzwerk-Computer (Client)"
-
-#: share/compssUsers.pl:51
-#, c-format
-msgid "Clients for different protocols including ssh"
-msgstr "Clients für verschiedene Protokolle, u.a. SSH"
-
-#: share/compssUsers.pl:55
-#, c-format
-msgid "Configuration"
-msgstr "Konfiguration"
-
-#: share/compssUsers.pl:56
-#, c-format
-msgid "Tools to ease the configuration of your computer"
-msgstr "Werkzeuge, die die Konfiguration Ihres Computers erleichtern"
-
-#: share/compssUsers.pl:60
-#, c-format
-msgid "Console Tools"
-msgstr "Konsolen-Werkzeuge"
-
-#: share/compssUsers.pl:61
-#, c-format
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editoren, Shells, Dateiwerkzeuge, Konsolen"
-
-#: share/compssUsers.pl:66 share/compssUsers.pl:170
-#, c-format
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C und C++ Entwicklungsbibliotheken, Programme und Include-Dateien"
-
-#: share/compssUsers.pl:70 share/compssUsers.pl:174
-#, c-format
-msgid "Documentation"
-msgstr "Dokumentation"
-
-#: share/compssUsers.pl:71 share/compssUsers.pl:175
-#, c-format
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Bücher und HOWTOs zu GNU/Linux und Freier Software"
-
-#: share/compssUsers.pl:75 share/compssUsers.pl:178
-#, c-format
-msgid "LSB"
-msgstr "LSB"
-
-#: share/compssUsers.pl:76 share/compssUsers.pl:179
-#, c-format
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Linux-Standard-Base. Drittanbieterunterstützung"
-
-#: share/compssUsers.pl:86
-#, c-format
-msgid "Apache"
-msgstr "Apache"
-
-#: share/compssUsers.pl:89
-#, c-format
-msgid "Groupware"
-msgstr "Groupware"
-
-#: share/compssUsers.pl:90
-#, c-format
-msgid "Kolab Server"
-msgstr "Kolab-Server"
-
-#: share/compssUsers.pl:93 share/compssUsers.pl:134
-#, c-format
-msgid "Firewall/Router"
-msgstr "Firewall / Router"
-
-#: share/compssUsers.pl:94 share/compssUsers.pl:135
-#, c-format
-msgid "Internet gateway"
-msgstr "Internet-Gateway"
-
-#: share/compssUsers.pl:97
-#, c-format
-msgid "Mail/News"
-msgstr "E-Mail/News"
-
-#: share/compssUsers.pl:98
-#, c-format
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix Mail-Server, Inn News-Server"
-
-#: share/compssUsers.pl:101
-#, c-format
-msgid "Directory Server"
-msgstr "Verzeichnisdienst"
-
-#: share/compssUsers.pl:105
-#, c-format
-msgid "FTP Server"
-msgstr "FTP-Server"
-
-#: share/compssUsers.pl:106
-#, c-format
-msgid "ProFTPd"
-msgstr "ProFTPd"
-
-#: share/compssUsers.pl:109
-#, c-format
-msgid "DNS/NIS"
-msgstr "DNS/NIS"
-
-#: share/compssUsers.pl:110
-#, c-format
-msgid "Domain Name and Network Information Server"
-msgstr "Domänennamen- und Netzwerk-Informations-Server"
-
-#: share/compssUsers.pl:113
-#, c-format
-msgid "File and Printer Sharing Server"
-msgstr "Datei- und Druckerserver"
-
-#: share/compssUsers.pl:114
-#, c-format
-msgid "NFS Server, Samba server"
-msgstr "NFS-Server, Samba Server"
-
-#: share/compssUsers.pl:117 share/compssUsers.pl:130
-#, c-format
-msgid "Database"
-msgstr "Datenbank"
-
-#: share/compssUsers.pl:118
-#, c-format
-msgid "PostgreSQL and MySQL Database Server"
-msgstr "PostgreSQL und MySQL-Datenbankserver"
-
-#: share/compssUsers.pl:122
-#, c-format
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: share/compssUsers.pl:123
-#, c-format
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: share/compssUsers.pl:126
-#, c-format
-msgid "Mail"
-msgstr "Email"
-
-#: share/compssUsers.pl:127
-#, c-format
-msgid "Postfix mail server"
-msgstr "Postfix Mail-Server"
-
-#: share/compssUsers.pl:131
-#, c-format
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL oder MySQL-Datenbankserver"
-
-#: share/compssUsers.pl:138
-#, c-format
-msgid "Network Computer server"
-msgstr "Netzwerkrechner-Server"
-
-#: share/compssUsers.pl:139
-#, c-format
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS-Server, SMB-Server, Proxy-Server, SSH-Server"
-
-#: share/compssUsers.pl:147
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE-Arbeitsplatz"
-
-#: share/compssUsers.pl:148
-#, c-format
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"Die K-Desktop-Umgebung, die Standard-Arbeitsfläche mit einer Sammlung "
-"zugehöriger Programme"
-
-#: share/compssUsers.pl:152
-#, c-format
-msgid "GNOME Workstation"
-msgstr "Gnome-Arbeitsplatz"
-
-#: share/compssUsers.pl:153
-#, c-format
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Eine grafische Umgebung mit anwenderfreundlichen Anwendungen und Werkzeugen"
-
-#: share/compssUsers.pl:156
-#, c-format
-msgid "IceWm Desktop"
-msgstr "IceWm-Desktop"
-
-#: share/compssUsers.pl:160
-#, c-format
-msgid "Other Graphical Desktops"
-msgstr "Andere grafische Arbeitsflächen"
-
-#: share/compssUsers.pl:161
-#, c-format
-msgid "Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Window Maker, Enlightenment, Fvwm, usw."
-
-#: share/compssUsers.pl:184
-#, c-format
-msgid "Utilities"
-msgstr "Werkzeuge"
-
-#: share/compssUsers.pl:186 share/compssUsers.pl:187 standalone/logdrake:384
-#, c-format
-msgid "SSH Server"
-msgstr "SSH-Server"
-
-#: share/compssUsers.pl:191
-#, c-format
-msgid "Webmin"
-msgstr "Webmin"
-
-#: share/compssUsers.pl:192
-#, c-format
-msgid "Webmin Remote Configuration Server"
-msgstr "Webmin Fernkonfigurationsserver"
-
-#: share/compssUsers.pl:196
-#, c-format
-msgid "Network Utilities/Monitoring"
-msgstr "Netzwerkwerkzeuge/-überwachung"
-
-#: share/compssUsers.pl:197
-#, c-format
-msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
-msgstr "Überwachungswerkzeuge, Prozessverwaltung, tcpdump, nmap, ..."
-
-#: share/compssUsers.pl:201
-#, c-format
-msgid "Mandriva Wizards"
-msgstr "Mandriva-Assistenten"
-
-#: share/compssUsers.pl:202
-#, c-format
-msgid "Wizards to configure server"
-msgstr "Assistenten zur Servereinrichtung"
-
-#: standalone.pm:23
+#: standalone.pm:24
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
@@ -17217,7 +6534,8 @@ msgid ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
msgstr ""
"This program is free software; you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published by\n"
@@ -17231,9 +6549,10 @@ msgstr ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
-#: standalone.pm:42
+#: standalone.pm:43
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
@@ -17260,7 +6579,7 @@ msgstr ""
"--help - Ausgabe dieses Hilfetextes.\n"
"--version - Ausgabe der Versionsnummer.\n"
-#: standalone.pm:54
+#: standalone.pm:55
#, c-format
msgid ""
"[--boot] [--splash]\n"
@@ -17275,7 +6594,7 @@ msgstr ""
" --splash - ermöglicht die Konfiguration des Boot-Designs\n"
"Standard-Modus: Bietet die Konfiguration des AutoLogin-Features an"
-#: standalone.pm:59
+#: standalone.pm:60
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
@@ -17292,7 +6611,7 @@ msgstr ""
" --report - Name eines Mandriva Linux-Werkzeuges.\n"
" --incident - Name eines Mandriva Linux-Werkzeuges."
-#: standalone.pm:65
+#: standalone.pm:66
#, c-format
msgid ""
"[--add]\n"
@@ -17309,7 +6628,7 @@ msgstr ""
" --internet - Internetzugang einrichten\n"
" --wizard - wie --add"
-#: standalone.pm:71
+#: standalone.pm:72
#, c-format
msgid ""
"\n"
@@ -17342,7 +6661,7 @@ msgstr ""
" : name_der_anwendung, wie so für Staroffice \n"
" : und gs für ghostscript für nur dieses."
-#: standalone.pm:86
+#: standalone.pm:87
#, c-format
msgid ""
"[OPTIONS]...\n"
@@ -17374,17 +6693,17 @@ msgstr ""
"--delclient : einen Client von MTS löschen (benötigt MAC Adresse, IP, "
"Name des NBI-Abbildes)"
-#: standalone.pm:98
+#: standalone.pm:99
#, c-format
msgid "[keyboard]"
msgstr "[Tastatur]"
-#: standalone.pm:99
+#: standalone.pm:100
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr "[--file=datei] [--word=word] [--explain=ausdruck] [--alert]"
-#: standalone.pm:100
+#: standalone.pm:101
#, c-format
msgid ""
"[OPTIONS]\n"
@@ -17407,12 +6726,7 @@ msgstr ""
"--status : gibt 1 zurück wenn verbunden sonst 0, beendet sich danach.\n"
"--quiet : nicht interaktiv. benutzt mit (dis)connect."
-#: standalone.pm:109
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: standalone.pm:110
+#: standalone.pm:111
#, c-format
msgid ""
"[OPTION]...\n"
@@ -17430,7 +6744,7 @@ msgstr ""
" --merge-all-rpmnew Zusammenlegen aller .rpmnew/.rpmsave-Dateien "
"vorschlagen"
-#: standalone.pm:115
+#: standalone.pm:116
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
@@ -17439,7 +6753,7 @@ msgstr ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
-#: standalone.pm:116
+#: standalone.pm:117
#, c-format
msgid ""
" [everything]\n"
@@ -17450,7 +6764,7 @@ msgstr ""
" XFdrake [--noauto] monitor\n"
" XFdrake resolution"
-#: standalone.pm:149
+#: standalone.pm:150
#, c-format
msgid ""
"\n"
@@ -17461,9851 +6775,102 @@ msgstr ""
"Verwendung: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
-#: standalone/XFdrake:59
-#, c-format
-msgid "You need to reboot for changes to take effect"
-msgstr "Sie müssen neustarten, damit die Änderungen wirksam werden"
-
-#: standalone/XFdrake:90
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Bitte melden Sie sich ab und drücken Sie Ctrl-Alt-Rücktaste"
-
-#: standalone/XFdrake:94
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr ""
-"Sie müssen sich abmelden und wieder anmelden, damit die Änderungen wirksam "
-"werden"
-
-#: standalone/drakTermServ:112 standalone/drakTermServ:118
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s benötigt einen Benutzernamen...\n"
-
-#: standalone/drakTermServ:129
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s benötigt Rechnername, MAC Adresse, IP, nbi-image, 0/1 für "
-"THIN_CLIENT, 0/1 für Lokale Konfiguration ...\n"
-
-#: standalone/drakTermServ:135
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s benötigt hostname...\n"
-
-#: standalone/drakTermServ:144
-#, c-format
-msgid "Host name for client"
-msgstr ""
-
-#: standalone/drakTermServ:145
-#, c-format
-msgid "MAC address should be in the format 00:11:22:33:44:55"
-msgstr ""
-
-#: standalone/drakTermServ:146
-#, c-format
-msgid "IP address to be assigned to client"
-msgstr ""
-
-#: standalone/drakTermServ:147
-#, c-format
-msgid "Kernel/network adapter image to use to boot client"
-msgstr ""
-
-#: standalone/drakTermServ:148
-#, c-format
-msgid "Create masking files to allow configuration tools to run on client"
-msgstr ""
-
-#: standalone/drakTermServ:149
-#, c-format
-msgid "Applications will run on server machine"
-msgstr ""
-
-#: standalone/drakTermServ:234 standalone/drakTermServ:237
-#, c-format
-msgid "Terminal Server Configuration"
-msgstr "Terminal-Server-Konfiguration"
-
-#: standalone/drakTermServ:243
-#, c-format
-msgid "dhcpd Config"
-msgstr "dhcpd-Konfiguration"
-
-#: standalone/drakTermServ:247
-#, c-format
-msgid "Enable Server"
-msgstr "Server aktivieren"
-
-#: standalone/drakTermServ:253
-#, c-format
-msgid "Disable Server"
-msgstr "Server deaktivieren"
-
-#: standalone/drakTermServ:259
-#, c-format
-msgid "Start Server"
-msgstr "Server starten"
-
-#: standalone/drakTermServ:265
-#, c-format
-msgid "Stop Server"
-msgstr "Server stoppen"
-
-#: standalone/drakTermServ:274
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot Diskette/ISO"
-
-#: standalone/drakTermServ:278
-#, c-format
-msgid "Net Boot Images"
-msgstr "Net Boot Images"
-
-#: standalone/drakTermServ:285
-#, c-format
-msgid "Add/Del Users"
-msgstr "Benutzer hinzufügen/löschen"
-
-#: standalone/drakTermServ:289
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Clients hinzufügen/löschen"
-
-#: standalone/drakTermServ:297
-#, c-format
-msgid "Images"
-msgstr "Abbilder"
-
-#: standalone/drakTermServ:298
-#, c-format
-msgid "Clients/Users"
-msgstr "Clients/Benutzer"
-
-#: standalone/drakTermServ:316 standalone/drakbug:47
-#, c-format
-msgid "First Time Wizard"
-msgstr "First Time Assistent"
-
-#: standalone/drakTermServ:354 standalone/drakTermServ:355
-#, c-format
-msgid "%s defined as dm, adding gdm user to /etc/passwd$$CLIENT$$"
-msgstr ""
-"%s als dm definiert, der gdm-Benutzer wird zu /etc/passwd$$CLIENT$$ "
-"hinzugefügt"
-
-#: standalone/drakTermServ:361
-#, c-format
-msgid ""
-"\n"
-" This wizard routine will:\n"
-" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
-"\t2) Setup DHCP.\n"
-"\t\n"
-"After doing these steps, the wizard will:\n"
-"\t\n"
-" a) Make all "
-"nbis. \n"
-" b) Activate the "
-"server. \n"
-" c) Start the "
-"server. \n"
-" d) Synchronize the shadow files so that all users, including root, \n"
-" are added to the shadow$$CLIENT$$ "
-"file. \n"
-" e) Ask you to make a boot floppy.\n"
-" f) If it's thin clients, ask if you want to restart KDM.\n"
-msgstr ""
-"\n"
-"Dieser Assistent wird:\n"
-"\t1) Fragen ob Sie entweder „schmaler“ oder „fetter“ Client sein wollen.\n"
-"\t2) DHCP einrichten.\n"
-"\t\n"
-" a) Allenbis. \n"
-" b) Aktivere "
-"denserver. \n"
-" c) Starte "
-"denserver. \n"
-" d) Synchronisiere die Schattendateien so dass alle Benutzer, "
-"einschließlich root,\n"
-" hinzugefügt werden zur shadow$$CLIENT$$ "
-"Datei. \n"
-" e) Nachfragen, ob er eine Startdiskette erstellen soll.\n"
-" f) Im Falle eines Thin-Clients nachfragen, ob KDM neu gestartet werden "
-"soll.\n"
-
-#: standalone/drakTermServ:407
-#, c-format
-msgid "Cancel Wizard"
-msgstr "Assistent abbrechen"
-
-#: standalone/drakTermServ:422
-#, c-format
-msgid "Please save dhcpd config!"
-msgstr "Bitte die DHCP-Konfigurationsdatei speichern!"
-
-#: standalone/drakTermServ:450
-#, c-format
-msgid "Use thin clients."
-msgstr "Benutze Thin-Clients"
-
-#: standalone/drakTermServ:452
-#, c-format
-msgid "Sync client X keyboard settings with server."
-msgstr "Gleiche Client-X-Tastatureinstellungen mit dem Server ab."
-
-#: standalone/drakTermServ:454
-#, c-format
-msgid ""
-"Please select default client type (Fat is the default type if 'Use thin' is "
-"unchecked).\n"
-" 'Thin' clients run everything off the server's CPU/RAM, using the client "
-"display.\n"
-" 'Fat' clients use their own CPU/RAM but the server's filesystem."
-msgstr ""
-"Bitte wählen sie den Standard-Client-Typ (\"Fat\" ist die Voreinstellung, "
-"wenn \"Thin\" nicht ausgewählt wird).\n"
-"....„Thin“-Clients führen alles auf CPU/RAM vom Server aus und nutzen das "
-"Display des Clients.\n"
-"....„Fat“-Clients benutzen ihre eigene CPU/RAM und das Dateisystem des "
-"Servers."
-
-#: standalone/drakTermServ:474
-#, c-format
-msgid "Creating net boot images for all kernels"
-msgstr "Erzeuge Startabbilder zum Netzwerk-Start für alle Kernel"
-
-#: standalone/drakTermServ:475 standalone/drakTermServ:807
-#: standalone/drakTermServ:823
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Dies wird einige Minuten dauern."
-
-#: standalone/drakTermServ:481 standalone/drakTermServ:521
-#, c-format
-msgid "Done!"
-msgstr "Fertig!"
-
-#: standalone/drakTermServ:492 standalone/drakTermServ:894
-#, c-format
-msgid "%s failed"
-msgstr "%s ist fehlgeschlagen"
-
-#: standalone/drakTermServ:501
-#, c-format
-msgid ""
-"Not enough space to create\n"
-"NBIs in %s.\n"
-"Needed: %d MB, Free: %d MB"
-msgstr ""
-"Nicht genug Platz um NBIs in %s zu erstellen.\n"
-"Benötigt: %d MB, Frei: %d MB"
-
-#: standalone/drakTermServ:507
-#, c-format
-msgid "Syncing server user list with client list, including root."
-msgstr ""
-"Gleiche die serverseitige Benutzerliste mit der des Clients ab, inklusive "
-"root."
-
-#: standalone/drakTermServ:527
-#, c-format
-msgid ""
-"In order to enable changes made for thin clients, the display manager must "
-"be restarted. Restart now?"
-msgstr ""
-"Um die Änderungen wirksam zu machen für den Thin-Client muss der Display-"
-"Manager neu gestartet werden. Soll dies jetzt geschehen?"
-
-#: standalone/drakTermServ:564
-#, c-format
-msgid "Terminal Server Overview"
-msgstr "Terminal-Server-Überblick"
-
-#: standalone/drakTermServ:565
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and %s is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-" - Erzeuge „Etherboot“bare Startabbilder:\n"
-" \tUm einen Kernel über Etherboot zu laden muss ein speziellen "
-"kernel/initrd-Abbild erzeugt werden.\n"
-" \tmkinitrd-net erledigt einen großen Teil dieser Arbeit. %s ist nur "
-"eine grafische Schnitt-\n"
-" \tstelle die bei der Verwaltung dieser Abbilder unstützt. Zum "
-"erstellen der Datei \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include, die von dhcpd.conf als "
-"Include-Datei hinzugezogen\n"
-" \twird, sollten Sie mindestens für einen Kernel Etherboot-"
-"Startabbilder erzeugen."
-
-#: standalone/drakTermServ:571
-#, c-format
-msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. %s helps create/"
-"remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
-msgstr ""
-" - Pflege von /etc/dhcpd.conf:\n"
-" \tUm Clients über das Netzwerk zu starten benötigt jeder Client "
-"einen Eintrag\n"
-" \tin dhcpd.conf, der dem Rechner eine IP-Adresse und "
-"netzwerkfähige\n"
-" \tStartabbilder zuweist. %s hilft beim Erzeugen/Entfernen\n"
-" \tdieser Einträge.\n"
-"\t\t\t\n"
-" \t(PCI-Karten könnten das Image ablehnen - Etherboot wird das "
-"richtige Image anfragen.\n"
-"\t\t\tSie sollten weiter bedenken, dass Etherboot bei der Suche eines "
-"Abbilds Einträge wie \n"
-"\t\t\tboot-3c59x.nbi anstelle von boot-3c59x.2.4.19-16mdk.nbi erwartet).\n"
-"\t\t\t \n"
-" \tEine typische dhcpd.conf ??stanza to support?? diskettenlose "
-"Clients wie:"
-
-#: standalone/drakTermServ:589
-#, fuzzy, c-format
-msgid ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be "
-"'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, \n"
-" %s is written for thin clients. \n"
-" System config files xdm-config, kdmrc, and gdm.conf are modified if "
-"thin clients are \n"
-" used, to enable XDMCP. Since there are security issues in using "
-"XDMCP, hosts.deny and \n"
-" hosts.allow are modified to limit access to the local subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-msgstr ""
-" Obwohl Sie einen Bereich von IP-Adressen verwenden können, anstatt "
-"für\n"
-" jeden Client ein spezifisches Setup, erleichtert ein feste "
-"Adressvergabe die \n"
-" Client-spezifischen Einstellungen die %s anbietet.\n"
-"\t\t\t\n"
-" Anmerkung: Der „#type“-Eintrag wird nur von %s benutzt. Clients\n"
-" können entweder „schlank“ oder „voll“ sein.\n"
-" Schlanke Clients starten die meisten Programme auf dem Server "
-"mittels XDMCP, \n"
-" während volle Clients die meisten Programme auf dem Client selbst "
-"starten.\n"
-" Eine besondere inittab, %s wurde für schlanke Clients geschrieben.\n"
-" Die System-Konfigurationsdateien xdm-config, kdmrc, und gdm.conf "
-"werden \n"
-" modifiziert falls schlanke Clients benutzt werden, um XDMCP zu "
-"ermöglichen.\n"
-" Aufgrund von Sicherheitsproblemen in XDMCP werden die Dateien hosts."
-"deny\n"
-" und hosts.allow are modifiziert umd den Zugang auf das lokale "
-"Netzwerk\n"
-" zu beschränken.\n"
-"\t\t\t\n"
-" Anmerkung: Der „#hdw_config“-Eintrag wird nur von%s. benutzt.\n"
-" Clients kann entweder „richtig“ oder „falsch“ sein. „richtig“ "
-"erlaubt den Root-\n"
-" Zugang auf dem Client-Rechner und ermöglicht Geräte-Einstellungen "
-"für\n"
-" Sound, Maus und X, wobei die „Drak“-Werkzeuge benutzt werden.\n"
-" Dies wird ermöglicht durch das Erstellen seperater "
-"Konfigurationsdateien.\n"
-" Diese werden mit den IP-Adressen der Clients assoziiert. Das "
-"Erzeugen von Lese-/\n"
-" Schreib-Einhängepunkte um das clientseitige Ändern der Datei zu "
-"erlauben.\n"
-" Sobald Sie mit den Einstellungen des Clients zufrieden sind können "
-"Sie den\n"
-" Root-Zugang auf dem Client enfernen.\n"
-"\t\t\t\n"
-" Anmerkung: Sie müssen den Server neu starten nach dem Ändern oder "
-"Hinzufügen\n"
-" von Clients."
-
-#: standalone/drakTermServ:609
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-msgstr ""
-" - Wartung von /etc/exports:\n"
-" \t%s erlaubt den Export des Wurzeldateisystems an festplattenlose "
-"Clients. %s\n"
-" \tstellt die korrekten Einträge ein, um anonymen Zugriff zum "
-"Wurzeldateisystem von \n"
-" \tfestplattenlosen Clients zu erlauben.\n"
-"\n"
-" \tEin typischer exports Eintrag für %s ist:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNETZ/MASKE(rw,root_squash)\n"
-"\t\t\t\n"
-" \tMit SUBNETZ/MASKE definiert für Ihr Netzwerk."
-
-#: standalone/drakTermServ:621
-#, fuzzy, c-format
-msgid ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. \n"
-" \t%s helps in this respect by adding or removing system users from "
-"this \n"
-" \tfile."
-msgstr ""
-" - %s warten:\n"
-" \tUm Benutzern von diskettenlosen Clients das Einloggen zu erlauben, "
-"muss ihr Eintrag in\n"
-" \t/etc/shadow dupliziert werden nach %s. %s\n"
-" \tunterstützt dies durch das Hinzufügen oder Entfernen der Benutzer "
-"aus dieser Datei."
-
-#: standalone/drakTermServ:626
-#, c-format
-msgid ""
-" - Per client %s:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t%s will help create these files."
-msgstr ""
-" - Pro Client %s:\n"
-" \tDurch %s hat jeder Client seine eigenen, eigenständigen "
-"Konfigurationsdateien\n"
-" \tauf dem root-Dateisystem des Servers. Durch das Erlauben Client-"
-"seitiger Geräteeinstellungen\n"
-" \thilft %s beim Erzeugen dieser Dateien."
-
-#: standalone/drakTermServ:631
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-msgstr ""
-" - Pro Client System-Konfigurationsdateien:\n"
-" \tDurch %s hat jeder Client seine eigenen, eigenständigen "
-"Konfigurationsdateien\n"
-" \tauf dem root-Dateisystem des Servers. Durch das Erlauben Client-"
-"seitiger\n"
-" \tGeräteeinstellungen können Clients Dateien wie /etc/modules.conf,\n"
-" \t/etc/sysconfig/mouse oder /etc/sysconfig/keyboard auf Client-"
-"Basis\n"
-"\t\tanpassen.\n"
-"\n"
-" Anmerkung: Das Erlauben lokaler Client-Geräteeinstellungen "
-"ermöglicht Root-Zugang zum\n"
-"\tTerminal-Server auf jedem Client, der diese Funktion aktiviert hat. Die "
-"lokale Konfiguration\n"
-"\tkann wieder ausgeschaltet werden unter Beibehaltung der Einstellungen, "
-"sobald der Client\n"
-"\teingerichtet ist."
-
-#: standalone/drakTermServ:640
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s will configure this file to work in conjunction with the images "
-"created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical TFTP configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
-msgstr ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s wird diese Datei so einrichten, dass sie mit den Abbildern, "
-"die\n"
-" \tdurch mkinitrd-net erstellt wurden, zusammenspielt und den "
-"Einträgen in\n"
-" \t/etc/dhcpd.conf, um die Startabbilder jedem festplattenlosen "
-"Client zur\n"
-" \tVerfügung zu stellen.\n"
-"\n"
-" \tEine typische TFTP-Konfigurationsdatei sieht so aus:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tDie Änderungen hier von der Standardinstallation ändern den "
-"disable-Schalter auf „no“\n"
-" \tund setzen den Verzeichnispfad auf /var/lib/tftpboot, wo mkinitrd-"
-"net seine Abbilder \tablegt."
-
-#: standalone/drakTermServ:661
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-msgstr ""
-" - Erstelle etherboot Disketten/CDs:\n"
-" \tDie plattenlose Client-Maschine benötigt entweder ROM-Abbilder auf "
-"der Netzwerkkarte, einer Startdiskette\n"
-" \toder einer CD, um den Startvorgang einzuleiten. %s wird dabei "
-"helfen, diese Abbilder basierend\n"
-" \tauf der Netzwerkkarte der Client-Maschine zu erstellen.\n"
-" \t\t\n"
-" \tEin einfaches Beispiel, um eine Startdiskette für eine 3Com 3c509 "
-"manuell zu erstellen:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-
-#: standalone/drakTermServ:694
-#, c-format
-msgid "Boot Floppy"
-msgstr "Bootdiskette"
-
-#: standalone/drakTermServ:696
-#, c-format
-msgid "Boot ISO"
-msgstr "Boot ISO"
-
-#: standalone/drakTermServ:698
-#, c-format
-msgid "PXE Image"
-msgstr "PXE-Abbild"
-
-#: standalone/drakTermServ:759
-#, c-format
-msgid "Default kernel version"
-msgstr "Standard-Kernelversion"
-
-#: standalone/drakTermServ:764
-#, c-format
-msgid "Create PXE images"
-msgstr ""
-
-#: standalone/drakTermServ:765
-#, c-format
-msgid "Use Unionfs (TS2)"
-msgstr ""
-
-#: standalone/drakTermServ:795
-#, c-format
-msgid "Install i586 kernel for older clients"
-msgstr "Installiere i586-Kernel für ältere Clients"
-
-#: standalone/drakTermServ:805
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Ganzen Kernel erstellen -->"
-
-#: standalone/drakTermServ:812
-#, c-format
-msgid "No kernel selected!"
-msgstr "Kein Kernel ausgewählt!"
-
-#: standalone/drakTermServ:815
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Erstelle einzelnen NIC -->"
-
-#: standalone/drakTermServ:819 standalone/drakTermServ:1643
-#, c-format
-msgid "No NIC selected!"
-msgstr "Keine Netzwerkkarte ausgewählt!"
-
-#: standalone/drakTermServ:822
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Alle Kernel erstellen -->"
-
-#: standalone/drakTermServ:835
-#, c-format
-msgid ""
-"Custom\n"
-"kernel args"
-msgstr ""
-
-#: standalone/drakTermServ:840
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Löschen"
-
-#: standalone/drakTermServ:845
-#, c-format
-msgid "No image selected!"
-msgstr "Kein Abbild ausgewählt!"
-
-#: standalone/drakTermServ:848
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Alle NBIs löschen"
-
-#: standalone/drakTermServ:925
-#, c-format
-msgid "Building images for kernel:"
-msgstr "Erzeuge Abbilder für Kernel:"
-
-#: standalone/drakTermServ:1050
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! Zeigt an, dass das Passwort in der Systemdatenbank sich von dem\n"
-"in der Terminal Server Datenbank unterscheidet.\n"
-"Entfernen/erneutes Hinzufügen des Benutzers zum Terminal Server \n"
-"nötig, um das Anmelden zu ermöglichen."
-
-#: standalone/drakTermServ:1055
-#, c-format
-msgid "Add User -->"
-msgstr "Benutzer hinzufügen -->"
-
-#: standalone/drakTermServ:1061
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- Benutzer löschen"
-
-#: standalone/drakTermServ:1097
-#, c-format
-msgid "type: %s"
-msgstr "Typ: %s"
-
-#: standalone/drakTermServ:1101
-#, c-format
-msgid "local config: %s"
-msgstr "lokale Konfiguration: %s"
-
-#: standalone/drakTermServ:1136
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Erlaube lokale Hardware-\n"
-"Konfiguration"
-
-#: standalone/drakTermServ:1146
-#, c-format
-msgid "No net boot images created!"
-msgstr "Keine Net Boot Images erstellt!"
-
-#: standalone/drakTermServ:1165
-#, c-format
-msgid "Thin Client"
-msgstr "Thin Client"
-
-#: standalone/drakTermServ:1169
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "Erlaube Thin Clients"
-
-#: standalone/drakTermServ:1170
-#, c-format
-msgid ""
-"Sync client X keyboard\n"
-" settings with server."
-msgstr ""
-"Gleiche Client-X-Tastatureinstellungen\n"
-"mit dem Server ab."
-
-#: standalone/drakTermServ:1171
-#, c-format
-msgid "Add Client -->"
-msgstr "Client hinzufügen -->"
-
-#: standalone/drakTermServ:1181
-#, c-format
-msgid "Unknown MAC address format"
-msgstr ""
-
-#: standalone/drakTermServ:1195
-#, c-format
-msgid "type: fat"
-msgstr "Typ: FAT"
-
-#: standalone/drakTermServ:1196
-#, c-format
-msgid "type: thin"
-msgstr "Typ: Thin"
-
-#: standalone/drakTermServ:1203
-#, c-format
-msgid "local config: false"
-msgstr "Lokale Einstellung: fehlerhaft"
-
-#: standalone/drakTermServ:1204
-#, c-format
-msgid "local config: true"
-msgstr "lokale Konfiguration: wahr"
-
-#: standalone/drakTermServ:1212
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Client bearbeiten"
-
-#: standalone/drakTermServ:1237
-#, c-format
-msgid "Disable Local Config"
-msgstr "Unterbinde die lokale Konfiguration"
-
-#: standalone/drakTermServ:1244
-#, c-format
-msgid "Delete Client"
-msgstr "Client löschen"
-
-#: standalone/drakTermServ:1267
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-"Sie müssen den Display-Manager neu starten, damit alle Änderungen\n"
-"wirksam werden. (Geben Sie auf der Konsole ein: service dm restart)"
-
-#: standalone/drakTermServ:1313
-#, c-format
-msgid "Thin clients will not work with autologin. Disable autologin?"
-msgstr ""
-"Thin-Clients werden nicht mit AutoLogin funktionieren. AutoLogin ausschalten?"
-
-#: standalone/drakTermServ:1328
-#, c-format
-msgid "All clients will use %s"
-msgstr "Alle Clients werden %s benutzen."
-
-#: standalone/drakTermServ:1362
-#, c-format
-msgid "Subnet:"
-msgstr "Subnetz:"
-
-#: standalone/drakTermServ:1369
-#, c-format
-msgid "Netmask:"
-msgstr "Netzmaske:"
-
-#: standalone/drakTermServ:1376
-#, c-format
-msgid "Routers:"
-msgstr "Router:"
-
-#: standalone/drakTermServ:1383
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Subnetzmaske:"
-
-#: standalone/drakTermServ:1390
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Broadcast-Adresse:"
-
-#: standalone/drakTermServ:1397
-#, c-format
-msgid "Domain Name:"
-msgstr "Name der Domäne:"
-
-#: standalone/drakTermServ:1405
-#, c-format
-msgid "Name Servers:"
-msgstr "DNS-Server:"
-
-#: standalone/drakTermServ:1416
-#, c-format
-msgid "IP Range Start:"
-msgstr "Anfang des IP-Bereichs:"
-
-#: standalone/drakTermServ:1417
-#, c-format
-msgid "IP Range End:"
-msgstr "Ende des IP-Bereichs:"
-
-#: standalone/drakTermServ:1459
-#, c-format
-msgid "Append TS Includes To Existing Config"
-msgstr "TS Einfügungen an existierenden Konfiguration anhängen"
-
-#: standalone/drakTermServ:1461
-#, c-format
-msgid "Write Config"
-msgstr "Konfiguration speichern"
-
-#: standalone/drakTermServ:1477
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "dhcpd-Server-Konfiguration"
-
-#: standalone/drakTermServ:1478
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"Die meisten Werte wuden Ihrem\n"
-"laufenden System entnommen.\n"
-"Sie können diese nach Bedarf anpassen."
-
-#: standalone/drakTermServ:1481
-#, c-format
-msgid ""
-"Dynamic IP Address Pool\n"
-"(needed for PXE clients):"
-msgstr ""
-"Dynamischer IP-Adressen-Pool\n"
-"(für PXE-Clients benötigt):"
-
-#: standalone/drakTermServ:1634
-#, c-format
-msgid "Write to %s failed!"
-msgstr "Konnte nicht auf %s schreiben!"
-
-#: standalone/drakTermServ:1647
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Bitte legen Sie eine Diskette ein:"
-
-#: standalone/drakTermServ:1651
-#, c-format
-msgid "Could not access the floppy!"
-msgstr "Kein Diskettenzugriff möglich!"
-
-#: standalone/drakTermServ:1653
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Sie können die Diskette nun entfernen"
-
-#: standalone/drakTermServ:1656
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Kein Disketten-Laufwerk verfügbar!"
-
-#: standalone/drakTermServ:1662
-#, c-format
-msgid "PXE image is %s/%s"
-msgstr "Netzstart-Abbild ist %s/%s"
-
-#: standalone/drakTermServ:1664
-#, c-format
-msgid "Error writing %s/%s"
-msgstr "Fehler beim Schreiben von %s/%s"
-
-#: standalone/drakTermServ:1676
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "Etherboot ISO Image ist %s"
-
-#: standalone/drakTermServ:1680
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Es trat ein Fehler auf! Ist „mkisofs“ installiert?"
-
-#: standalone/drakTermServ:1700
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "„/etc/dhcpd.conf“ muss erst angelegt werden!"
-
-#: standalone/drakTermServ:1867
-#, c-format
-msgid "%s passwd bad in Terminal Server - rewriting...\n"
-msgstr "%s Passwort ungültig am Terminal-Server - schreibe neu...\n"
-
-#: standalone/drakTermServ:1880
-#, c-format
-msgid "%s is not a user..\n"
-msgstr "%s ist kein Benutzer...\n"
-
-#: standalone/drakTermServ:1881
-#, c-format
-msgid "%s is already a Terminal Server user\n"
-msgstr "%s ist bereits ein Terminalserver-Benutzer\n"
-
-#: standalone/drakTermServ:1883
-#, c-format
-msgid "Addition of %s to Terminal Server failed!\n"
-msgstr "Hinzufügen von %s zum Terminal-Server fehlgeschlagen!\n"
-
-#: standalone/drakTermServ:1885
-#, c-format
-msgid "%s added to Terminal Server\n"
-msgstr "%s zum Terminalserver hinzugefügt\n"
-
-#: standalone/drakTermServ:1903
-#, c-format
-msgid "Deleted %s...\n"
-msgstr "%s gelöscht...\n"
-
-#: standalone/drakTermServ:1905 standalone/drakTermServ:1978
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s nicht gefunden...\n"
-
-#: standalone/drakTermServ:2006
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
-"/etc/hosts.allow und /etc/hosts.deny sind bereits konfiguriert - keine "
-"Änderung"
-
-#: standalone/drakTermServ:2158
-#, c-format
-msgid "Configuration changed - restart %s/dhcpd?"
-msgstr "Konfiguration geändert - Neustart von %s/dhcpd?"
-
-#: standalone/drakautoinst:38 standalone/drakhosts:123
-#: standalone/drakhosts:129 standalone/draknfs:84 standalone/draknfs:105
-#: standalone/draknfs:444 standalone/draknfs:447 standalone/draknfs:539
-#: standalone/draknfs:546 standalone/draksambashare:187
-#: standalone/draksambashare:208 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Error!"
-msgstr "Fehler!"
-
-#: standalone/drakautoinst:39
-#, c-format
-msgid "I can not find needed image file `%s'."
-msgstr "Ich kann die benötigte Image-Datei „%s“ nicht finden."
-
-#: standalone/drakautoinst:41
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Auto-Installationskonfigurator"
-
-#: standalone/drakautoinst:42
-#, c-format
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Press ok to continue."
-msgstr ""
-"Sie sind dabei, eine Auto-Installationsdiskette zu erstellen. Diese\n"
-"Möglichkeit ist gefährlich und sollte mit Vorsicht verwendet werden!\n"
-"\n"
-"Sie können mit diesem Werkzeug die Installation, die Sie vorher\n"
-"gemacht haben wiederholen, wobei Sie an einigen Stellen interaktiv\n"
-"Einfluss nehmen können.\n"
-"\n"
-"Aus Sicherheitsgründen wird die Partitionierung und Formatierung nie\n"
-"automatisch durchgeführt.\n"
-"\n"
-"Wollen Sie fortfahren?"
-
-#: standalone/drakautoinst:60
-#, c-format
-msgid "replay"
-msgstr "wiederholen"
-
-#: standalone/drakautoinst:60 standalone/drakautoinst:69
-#, c-format
-msgid "manual"
-msgstr "manuell"
-
-#: standalone/drakautoinst:64
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Automatische Konfiguration der Schritte"
-
-#: standalone/drakautoinst:65
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Bitte wählen Sie für jeden Schritt, ob er wie bei Ihrer Installation "
-"vorgenommen werden soll, oder ob Sie ihn manuell durchführen wollen."
-
-#: standalone/drakautoinst:77 standalone/drakautoinst:78
-#: standalone/drakautoinst:92
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Erstellen einer Auto-Installationsdiskette"
-
-#: standalone/drakautoinst:90
-#, c-format
-msgid "Insert another blank floppy in drive %s (for drivers disk)"
-msgstr ""
-"Legen Sie eine weitere leere Diskette in das Laufwerk %s (für die "
-"Treiberdiskette)"
-
-#: standalone/drakautoinst:91
-#, c-format
-msgid "Creating auto install floppy (drivers disk)"
-msgstr "Erstelle Auto-Installationsdiskette (Treiberdiskette)"
-
-#: standalone/drakautoinst:156
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Willkommen.\n"
-"\n"
-"Die Parameter der Auto-Installation sind in den Abschnitten rechts verfügbar."
-
-#: standalone/drakautoinst:251
-#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Die Diskette wurde erfolgreich erstellt.\n"
-"Sie können die Installation nun automatisch durchführen."
-
-#: standalone/drakautoinst:287
-#, c-format
-msgid "Auto Install"
-msgstr "Auto-Installation"
-
-#: standalone/drakautoinst:356
-#, c-format
-msgid "Add an item"
-msgstr "Eintrag hinzufügen"
-
-#: standalone/drakautoinst:363
-#, c-format
-msgid "Remove the last item"
-msgstr "Letzten Eintrag entfernen?"
-
-#: standalone/drakbackup:157
-#, c-format
-msgid ""
-"Expect is an extension to the TCL scripting language that allows interactive "
-"sessions without user intervention."
-msgstr ""
-"Expect ist eine Erweiterung der TCL Skriptsprache, die interaktive Sitzungen "
-"ohne Benutzereingriff erlaubt."
-
-#: standalone/drakbackup:158
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "Passwort dieses Systems in der DrakBackup Konfiguration speichern."
-
-#: standalone/drakbackup:159
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
-"Bei einer Multisession-CD wird nur die erste Session die CD-RW löschen. "
-"Andererseits muss die CD-RW vor jeder Datensicherung gelöscht werden."
-
-#: standalone/drakbackup:160
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-"Diese Option sichert Daten, die sich geändert haben. Das exakte Verhalten "
-"hängt davon ab, ob der inkrementelle oder differentielle Modus verwendet "
-"wird."
-
-#: standalone/drakbackup:161
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-"Inkrementelle Sicherung speichert nur Dateien, die sich geändert haben oder "
-"seit der letzten Sicherung neu hinzugekommen sind."
-
-#: standalone/drakbackup:162
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Inkrementelle Archivierung speichert nur Dateien, die seit der letzten "
-"kompletten Archivierung verändert wurden."
-
-#: standalone/drakbackup:163
-#, c-format
-msgid ""
-"Star should be selected if you want to backup EA or ACLs, otherwise choose "
-"tar"
-msgstr ""
-
-#: standalone/drakbackup:164
-#, fuzzy, c-format
-msgid ""
-"This should be a local user or email address that you want the backup "
-"results sent to. You will need to define a functioning mail server. Multiple "
-"users can be in a comma seperated list"
-msgstr ""
-"Dies sollte ein lokaler Benutzer oder eine Emailadresse sein, der das "
-"Ergebnis der Sicherung zugestellt wird. Sie müssen einen funktionierenden "
-"Mailserver angeben."
-
-#: standalone/drakbackup:165
-#, c-format
-msgid ""
-"This should be the return address that you want the backup results sent "
-"from. Default is drakbackup."
-msgstr ""
-"Dies sollte die Absenderadresse sein, mit der die Ergebnisse der "
-"Datensicherung geschickt werden. Die Voreinstellung ist drakbackup."
-
-#: standalone/drakbackup:166
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-"Dateien sowie Platzhalter in „.backupignore“ Dateien im Startverzeichnis "
-"eines Verzeichnisbaums werden nicht archiviert."
-
-#: standalone/drakbackup:167
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-"Bei Sicherung auf andere Medien wird dennoch zuerst eine Datei auf der "
-"Festpaltte erstellt, anschließend auf das andere Medium kopiert. Aktivierung "
-"dieser Möglichkeit, sorgt für das Löschen der Kopie auf der Platte nach "
-"beendeter Sicherung."
-
-#: standalone/drakbackup:168
-#, c-format
-msgid ""
-"Selecting this option allows you to view the raw output from the restore "
-"process, after a file restore."
-msgstr ""
-
-#: standalone/drakbackup:169
-#, c-format
-msgid ""
-"Some protocols, like rsync, may be configured at the server end. Rather "
-"than using a directory path, you would use the 'module' name for the service "
-"path."
-msgstr ""
-"Einige Protokolle wie z.B. rsync müssen letztendlich auf dem Server "
-"konfiguriert werden. Anstelle des Verzeichnispfads kann auch der Modulname "
-"als Name für den Dienste-Pfad gelten."
-
-#: standalone/drakbackup:170
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"Custom erlaubt das Eingeben von beliebigem Tag und Zeit. Die anderen "
-"Optionen benutzen laufende Teile in /etc/crontab."
-
-#: standalone/drakbackup:344
-#, c-format
-msgid "No media selected for cron operation."
-msgstr "Kein Medium ausgewählt für die cron-Operation."
-
-#: standalone/drakbackup:348
-#, c-format
-msgid "No interval selected for cron operation."
-msgstr "Kein Intervall ausgewählt für die cron-Operation."
-
-#: standalone/drakbackup:393
-#, c-format
-msgid "Interval cron not available as non-root"
-msgstr "Cron ist nicht für unprivilegierte Kennzeichen nutzbar"
-
-#: standalone/drakbackup:477 standalone/logdrake:439
-#, c-format
-msgid "\"%s\" neither is a valid email nor is an existing local user!"
-msgstr ""
-"„%s“ ist weder eine zulässige Emailadresse noch ein existierender lokaler "
-"Benutzer!"
-
-#: standalone/drakbackup:481 standalone/logdrake:444
-#, 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“ ist ein lokaler Benutzer, aber Sie haben keinen lokalen SMTP-Server "
-"ausgewählt. Sie müssen deshalb eine vollständige Emailadresse benutzen!"
-
-#: standalone/drakbackup:491
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr ""
-"Liste der gültigen Benutzer hat sich geändert, aktualisiere "
-"Konfigurationsdatei"
-
-#: standalone/drakbackup:493
-#, c-format
-msgid "Old user list:\n"
-msgstr "Liste alter Benutzer:\n"
-
-#: standalone/drakbackup:495
-#, c-format
-msgid "New user list:\n"
-msgstr "Liste der neuen Benutzer:\n"
-
-#: standalone/drakbackup:524
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
-msgstr ""
-"\n"
-" DrakBackup-Report \n"
-"\n"
-
-#: standalone/drakbackup:525
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-msgstr ""
-"\n"
-" DrakBackup Dämon-Report\n"
-"\n"
-
-#: standalone/drakbackup:531
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup-Report-Details\n"
-"\n"
-
-#: standalone/drakbackup:556 standalone/drakbackup:627
-#: standalone/drakbackup:683
-#, c-format
-msgid "Total progress"
-msgstr "Fortschritt (komplett)"
-
-#: standalone/drakbackup:609
-#, c-format
-msgid ""
-"%s exists, delete?\n"
-"\n"
-"If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-"%s existiert, soll ich es löschen?\n"
-"\n"
-"Wenn Sie dies schon gemacht haben, müssen Sie wahrscheinlich\n"
-"den Eintrag in der Datei authorized_keys auf dem Server löschen."
-
-#: standalone/drakbackup:618
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "Das Generieren der Schlüssel kann einen Moment dauern."
-
-# spawn=laichen?????????????
-#: standalone/drakbackup:625
-#, c-format
-msgid "Cannot spawn %s."
-msgstr "Kann auf %s nicht zugreifen."
-
-#: standalone/drakbackup:642
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "Keine Passwortaufforderung auf %s am Port %s"
-
-#: standalone/drakbackup:643
-#, c-format
-msgid "Bad password on %s"
-msgstr "Falsches Passwort auf %s"
-
-#: standalone/drakbackup:644
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "Zugriff verweigert beim Übertragen von %s nach %s"
-
-#: standalone/drakbackup:645
-#, c-format
-msgid "Can not find %s on %s"
-msgstr "Kann %s auf %s nicht finden"
-
-#: standalone/drakbackup:649
-#, c-format
-msgid "%s not responding"
-msgstr "%s anwortet nicht"
-
-#: standalone/drakbackup:653
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-"Übertragung erfolgreich\n"
-"Probieren Sie das Anmelden auf dem Server mit dem Befehl:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"ohne das Sie jetzt nach einem Passwort gefragt werden."
-
-#: standalone/drakbackup:703
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "Keine CD/DVDR im Laufwerk!"
-
-#: standalone/drakbackup:707
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Das Medium ist nicht beschreibbar!"
-
-#: standalone/drakbackup:712
-#, c-format
-msgid "Not erasable media!"
-msgstr "Das Medium ist nicht löschbar!"
-
-#: standalone/drakbackup:754
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Das Löschen des Mediums kann einen Moment dauern."
-
-#: standalone/drakbackup:812
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Problem beim Zugriff auf die CD."
-
-#: standalone/drakbackup:840
-#, c-format
-msgid "No tape in %s!"
-msgstr "Es liegt kein Band in %s!"
-
-#: standalone/drakbackup:953
-#, c-format
-msgid ""
-"Backup destination quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-"Datensicherungs-Ziel-Quota überschritten!\n"
-"%d MB verwendet vs %d MB zugewiesen."
-
-#: standalone/drakbackup:973 standalone/drakbackup:1005
-#, c-format
-msgid "Backup system files..."
-msgstr "Systemdateien sichern ..."
-
-#: standalone/drakbackup:1006 standalone/drakbackup:1045
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Datensicherungsdateien auf der Festplatte..."
-
-#: standalone/drakbackup:1044
-#, c-format
-msgid "Backup User files..."
-msgstr "Benutzerdateien sichern ..."
-
-#: standalone/drakbackup:1078
-#, c-format
-msgid "Backup Other files..."
-msgstr "Andere Dateien sichern ..."
-
-#: standalone/drakbackup:1079
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Festplattenbackup in Bearbeitung ..."
-
-#: standalone/drakbackup:1084
-#, c-format
-msgid "No changes to backup!"
-msgstr "Keine Änderungen zu sichern!"
-
-#: standalone/drakbackup:1100 standalone/drakbackup:1122
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-"\n"
-"DrakBackup Aktivitäten via %s:\n"
-"\n"
-
-#: standalone/drakbackup:1109
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-" FTP-Verbindungsproblem: Es war nicht möglich, Ihre Dateien per FTP zu "
-"übertragen.\n"
-
-#: standalone/drakbackup:1110
-#, c-format
-msgid ""
-"Error during sending file via FTP. Please correct your FTP configuration."
-msgstr ""
-"Fehler bei der Übertragung via FTP.\n"
-" Bitte korrigieren Sie Ihre FTP-Konfiguration."
-
-#: standalone/drakbackup:1112
-#, c-format
-msgid "file list sent by FTP: %s\n"
-msgstr "Dateiliste gesendet per FTP: %s\n"
-
-#: standalone/drakbackup:1127
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-"\n"
-"Drakbackup Aktivitäten über CD:\n"
-"\n"
-
-#: standalone/drakbackup:1132
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-"\n"
-"Drakbackup-Aktivitäten über Bandlaufwerk:\n"
-"\n"
-
-#: standalone/drakbackup:1141
-#, c-format
-msgid "Error sending mail. Your report mail was not sent."
-msgstr "Fehler beim E-Mail-Versandt. Ihr Bericht wurde nicht gesendet."
-
-#: standalone/drakbackup:1142
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr " Fehler beim Verschicken der E-Mail. \n"
-
-#: standalone/drakbackup:1172
-#, c-format
-msgid "Can not create catalog!"
-msgstr "Ich kann den Katalog nicht erstellen!"
-
-#: standalone/drakbackup:1332
-#, fuzzy, c-format
-msgid "Problem installing %s"
-msgstr "Probleme beim Installieren von Paket %s"
-
-#: standalone/drakbackup:1420
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Sichern Sie Ihre Systemdateien. (Verzeichnis /etc)."
-
-#: standalone/drakbackup:1421 standalone/drakbackup:1484
-#: standalone/drakbackup:1550
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr "Inkrementelle Archivierung (alte Archive nicht ersetzen)"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Inkrementelle Archivierung"
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Differentielle Datensicherung verwenden"
-
-#: standalone/drakbackup:1425
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Keine kritischen Dateien (passwd, group, fstab) archivieren"
-
-#: standalone/drakbackup:1456
-#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr ""
-"Bitte wählen Sie alle Benutzer, deren Dateien mitgesichert werden sollen."
-
-#: standalone/drakbackup:1483
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Die Browser-Caches nicht archivieren"
-
-#: standalone/drakbackup:1537
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Wählen Sie die Dateien oder Verzeichnisse und drücken Sie auf „OK“."
-
-#: standalone/drakbackup:1538 standalone/drakfont:650
-#, c-format
-msgid "Remove Selected"
-msgstr "Markierte entfernen"
-
-#: standalone/drakbackup:1601
-#, c-format
-msgid "Users"
-msgstr "Benutzer"
-
-#: standalone/drakbackup:1621
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Netzwerkverbindung zur Datensicherung verwenden"
-
-#: standalone/drakbackup:1623
-#, c-format
-msgid "Net Method:"
-msgstr "Netz-Methode:"
-
-#: standalone/drakbackup:1627
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Benutze Expect für SSH"
-
-#: standalone/drakbackup:1628
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "Erzeuge/Übertrage Backup Schlüssel für SSH"
-
-#: standalone/drakbackup:1630
-#, c-format
-msgid "Transfer Now"
-msgstr "Übertrage jetzt"
-
-#: standalone/drakbackup:1632
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Andere (nicht drakbackup) gegenwärtige Schlüssel"
-
-#: standalone/drakbackup:1635
-#, c-format
-msgid "Host name or IP."
-msgstr "Rechnername oder IP"
-
-#: standalone/drakbackup:1640
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
-"Bitte geben Sie das Verzeichnis (oder Modul) an,\n"
-"in dem die Archive auf diesem Rechner erstellt werden sollen."
-
-#: standalone/drakbackup:1652
-#, c-format
-msgid "Remember this password"
-msgstr "Passwort behalten"
-
-#: standalone/drakbackup:1664
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Brauche Rechnername, Benutzername und Passwort!"
-
-#: standalone/drakbackup:1755
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Sicherungskopie auf CD/DVD-ROM"
-
-#: standalone/drakbackup:1758
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Bitte wählen Sie ihr CD/DVD-Gerät"
-
-#: standalone/drakbackup:1763
-#, c-format
-msgid "Choose your CD/DVD media size"
-msgstr "Bitte wählen Sie die Größe der CD/DVD-Medien"
-
-#: standalone/drakbackup:1770
-#, c-format
-msgid "Multisession CD"
-msgstr "Multisession CD"
-
-#: standalone/drakbackup:1772
-#, c-format
-msgid "CDRW media"
-msgstr "CD-RW Medium"
-
-#: standalone/drakbackup:1778
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "RW-Medium löschen (erste Session)"
-
-#: standalone/drakbackup:1779
-#, c-format
-msgid " Erase Now "
-msgstr " Jetzt löschen"
-
-#: standalone/drakbackup:1785
-#, c-format
-msgid "DVD+RW media"
-msgstr "DVD+RW Medien"
-
-#: standalone/drakbackup:1787
-#, c-format
-msgid "DVD-R media"
-msgstr "DVD-R Medien"
-
-#: standalone/drakbackup:1789
-#, c-format
-msgid "DVDRAM device"
-msgstr "DVD-RAM Laufwerk"
-
-#: standalone/drakbackup:1820
-#, c-format
-msgid "No CD device defined!"
-msgstr "Kein CD-Gerät angegeben!"
-
-#: standalone/drakbackup:1862
-#, c-format
-msgid "Use tape to backup"
-msgstr "Auf Bandlaufwerk sichern"
-
-#: standalone/drakbackup:1865
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Bitte geben Sie den Gerätenamen für Archivierung an."
-
-#: standalone/drakbackup:1871
-#, c-format
-msgid "Backup directly to tape"
-msgstr "Datensicherung direkt auf Band"
-
-#: standalone/drakbackup:1877
-#, c-format
-msgid "Use tape hardware compression (EXPERIMENTAL)"
-msgstr "Benutze Bandhardwarekompression (EXPERIMENTELL)"
-
-#: standalone/drakbackup:1883
-#, c-format
-msgid "Do not rewind tape after backup"
-msgstr "Band nach der Sicherung nicht zurückspulen"
-
-#: standalone/drakbackup:1889
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Band vor Sicherung löschen"
-
-#: standalone/drakbackup:1895
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Band nach der Sicherung auswerfen"
-
-#: standalone/drakbackup:1976
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Eingabe des Sicherungsverzeichnisses:"
-
-#: standalone/drakbackup:1980
-#, c-format
-msgid "Directory to save to"
-msgstr "Verzeichnis, in das gespeichert wird"
-
-#: standalone/drakbackup:1985
-#, c-format
-msgid ""
-"Maximum disk space\n"
-" allocated for backups (MB)"
-msgstr ""
-"Maximaler Plattenplatz\n"
-" für die Datensicherung (MB)"
-
-#: standalone/drakbackup:1989
-#, c-format
-msgid ""
-"Delete incremental or differential\n"
-" backups older than N days\n"
-" (0 is keep all backups) to save space"
-msgstr ""
-"Lösche inkrementelle or differenzielle\n"
-" Sicherungen, die alter als N Tage sind,\n"
-" (0 = alle Sicherungen behalten) um Platz zu sparen"
-
-#: standalone/drakbackup:2056
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CD-ROM / DVD-ROM"
-
-#: standalone/drakbackup:2061
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Festplatte/NFS"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2077
-#: standalone/drakbackup:2082
-#, c-format
-msgid "hourly"
-msgstr "stündlich"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2078
-#: standalone/drakbackup:2083
-#, c-format
-msgid "daily"
-msgstr "täglich"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2079
-#: standalone/drakbackup:2084
-#, c-format
-msgid "weekly"
-msgstr "wöchentlich"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2080
-#: standalone/drakbackup:2085
-#, c-format
-msgid "monthly"
-msgstr "monatlich"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2081
-#: standalone/drakbackup:2086
-#, c-format
-msgid "custom"
-msgstr "Benutzerdefiniert"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "January"
-msgstr "Januar"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "February"
-msgstr "Februar"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "March"
-msgstr "März"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "April"
-msgstr "April"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "May"
-msgstr "Mai"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "June"
-msgstr "Juni"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "July"
-msgstr "Juli"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "August"
-msgstr "August"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "September"
-msgstr "September"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "October"
-msgstr "Oktober"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "November"
-msgstr "November"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "December"
-msgstr "Dezember"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Sunday"
-msgstr "Sonntag"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Monday"
-msgstr "Montag"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Tuesday"
-msgstr "Dienstag"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Wednesday"
-msgstr "Mittwoch"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Thursday"
-msgstr "Donnerstag"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Friday"
-msgstr "Freitag"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Saturday"
-msgstr "Samstag"
-
-#: standalone/drakbackup:2126
-#, fuzzy, c-format
-msgid "Delete cron entry"
-msgstr "Client löschen"
-
-#: standalone/drakbackup:2127
-#, fuzzy, c-format
-msgid "Add cron entry"
-msgstr "Drucker hinzufügen"
-
-#: standalone/drakbackup:2185
-#, c-format
-msgid "Use daemon"
-msgstr "Dämon verwenden"
-
-#: standalone/drakbackup:2189
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Bitte wählen Sie das Zeitintervall zwischen zwei Sicherungen."
-
-#: standalone/drakbackup:2197
-#, c-format
-msgid "Minute"
-msgstr "Minute"
-
-#: standalone/drakbackup:2201
-#, c-format
-msgid "Hour"
-msgstr "Stunde"
-
-#: standalone/drakbackup:2205
-#, c-format
-msgid "Day"
-msgstr "Tag"
-
-#: standalone/drakbackup:2209
-#, c-format
-msgid "Month"
-msgstr "Monat"
-
-#: standalone/drakbackup:2213
-#, fuzzy, c-format
-msgid "Weekday (start)"
-msgstr "Wochentag"
-
-#: standalone/drakbackup:2217
-#, fuzzy, c-format
-msgid "Weekday (end)"
-msgstr "Wochentag"
-
-#: standalone/drakbackup:2221
-#, fuzzy, c-format
-msgid "Profile"
-msgstr "Profile"
-
-#: standalone/drakbackup:2227
-#, fuzzy, c-format
-msgid "Current crontab:"
-msgstr "Aktueller Benutzer"
-
-#: standalone/drakbackup:2235
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "Bitte wählen Sie ein Sicherungsmedium."
-
-#: standalone/drakbackup:2239
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Stellen Sie sicher, dass der Cron-Dämon als Dienst aktiviert ist."
-
-#: standalone/drakbackup:2240
-#, c-format
-msgid ""
-"If your machine is not on all the time, you might want to install anacron."
-msgstr ""
-"Wenn Ihr Rechner nicht die ganze Zeit eingeschaltet ist, sollten Sie anacron "
-"installieren."
-
-#: standalone/drakbackup:2316
-#, fuzzy, c-format
-msgid "Please choose the archive program"
-msgstr "Bitte die Daten zum Wiederherstellen auswählen:"
-
-#: standalone/drakbackup:2321
-#, c-format
-msgid "Please choose the compression type"
-msgstr "Bitte wählen Sie den Kompressionstyp"
-
-#: standalone/drakbackup:2325
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Verwende .backupignore Dateien"
-
-#: standalone/drakbackup:2327
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "E-Mail-Bericht nach jedem Sicherungsvorgang an: "
-
-#: standalone/drakbackup:2333
-#, c-format
-msgid "Return address for sent mail:"
-msgstr "Absenderadresse für ausgehende E-Mail:"
-
-#: standalone/drakbackup:2339
-#, c-format
-msgid "SMTP server for mail:"
-msgstr "SMTP server für mail:"
-
-#: standalone/drakbackup:2343
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
-"Nach der Sicherung auf ein anderes Medium die tar-Dateien von der Festplatte "
-"löschen."
-
-#: standalone/drakbackup:2344
-#, fuzzy, c-format
-msgid "View restore log after file restore."
-msgstr "Bereit um die anderen Dateien wiederherzustellen"
-
-#: standalone/drakbackup:2389
-#, c-format
-msgid "What"
-msgstr "Was"
-
-#: standalone/drakbackup:2394
-#, c-format
-msgid "Where"
-msgstr "Wo"
-
-#: standalone/drakbackup:2399
-#, c-format
-msgid "When"
-msgstr "Wann"
-
-#: standalone/drakbackup:2404
-#, c-format
-msgid "More Options"
-msgstr "Mehr Parameter"
-
-#: standalone/drakbackup:2417
-#, c-format
-msgid "Backup destination not configured..."
-msgstr "Das Zielverzeichnis ist noch nicht konfiguriert..."
-
-#: standalone/drakbackup:2437 standalone/drakbackup:4367
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "DrakBackup-Konfiguration"
-
-#: standalone/drakbackup:2453
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Bitte wählen Sie wohin Sie die Sicherungskopien machen wollen."
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Hard Drive used to prepare backups for all media"
-msgstr "Festplatte, die zu Sicherung aller Medien genutzt wird"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Across Network"
-msgstr "über Netzwerk"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On CD-R"
-msgstr "auf CD-ROM"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On Tape Device"
-msgstr "auf Bandlaufwerk (Streamer)"
-
-#: standalone/drakbackup:2502
-#, c-format
-msgid "Backup Users"
-msgstr "Benutzer sichern"
-
-#: standalone/drakbackup:2503
-#, c-format
-msgid " (Default is all users)"
-msgstr " (Standard: alle Benutzer)"
-
-#: standalone/drakbackup:2516
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Bitte wählen Sie, was Sie sichern wollen"
-
-#: standalone/drakbackup:2517
-#, c-format
-msgid "Backup System"
-msgstr "System sichern"
-
-#: standalone/drakbackup:2519
-#, c-format
-msgid "Select user manually"
-msgstr "Benutzer auswählen"
-
-#: standalone/drakbackup:2548
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Bitte wählen Sie die zu sichernden Daten..."
-
-#: standalone/drakbackup:2620
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Sicherungsquellen: \n"
-
-#: standalone/drakbackup:2621
-#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Systemdateien:\n"
-
-#: standalone/drakbackup:2623
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Benutzerdateien:\n"
-
-#: standalone/drakbackup:2625
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Sonstige Dateien:\n"
-
-#: standalone/drakbackup:2627
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-"\n"
-"- Auf Festplatte sichern unter: %s\n"
-
-#: standalone/drakbackup:2628
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tPlattenplatz auf %s MB begrenzen\n"
-
-#: standalone/drakbackup:2629
-#, c-format
-msgid "\tDelete backups older than %s day(s)\n"
-msgstr "\tLösche Sicherungen älter als %s Tag(e)\n"
-
-#: standalone/drakbackup:2632
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
-"\n"
-"- Nach der Sicherung die tar-Dateien von der Festplatte löschen.\n"
-
-#: standalone/drakbackup:2637
-#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr ""
-"\n"
-"- Auf CD brennen"
-
-#: standalone/drakbackup:2638
-#, c-format
-msgid "RW"
-msgstr "Wiederbeschreibbar"
-
-#: standalone/drakbackup:2639
-#, c-format
-msgid " on device: %s"
-msgstr " an Gerät: %s"
-
-#: standalone/drakbackup:2640
-#, c-format
-msgid " (multi-session)"
-msgstr " (Multisession)"
-
-#: standalone/drakbackup:2641
-#, c-format
-msgid ""
-"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-"\n"
-"- Auf Band an Gerät %s sichern"
-
-#: standalone/drakbackup:2642
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tLöschen=%s"
-
-#: standalone/drakbackup:2644
-#, c-format
-msgid "\tBackup directly to Tape\n"
-msgstr "\tDatensicherung direkt auf Band\n"
-
-#: standalone/drakbackup:2646
-#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
-"\n"
-"- via %s auf Rechner %s sichern\n"
-
-#: standalone/drakbackup:2647
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t Benutzer: %s\n"
-"\t\t Pfad: %s \n"
-
-#: standalone/drakbackup:2648
-#, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Optionen:\n"
-
-#: standalone/drakbackup:2649
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tKeine Systemdateien\n"
-
-#: standalone/drakbackup:2651
-#, fuzzy, c-format
-msgid "\tBackups use %s and bzip2\n"
-msgstr "\tSicherungen verwenden „tar“ und „bzip2“\n"
-
-#: standalone/drakbackup:2652
-#, fuzzy, c-format
-msgid "\tBackups use %s and gzip\n"
-msgstr "\tSicherungen verwenden „tar“ und „gzip“\n"
-
-#: standalone/drakbackup:2653
-#, fuzzy, c-format
-msgid "\tBackups use %s only\n"
-msgstr "\tSicherungen verwenden nur„tar“\n"
-
-#: standalone/drakbackup:2655
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\t“.backupignore“-Dateien verwenden.\n"
-
-#: standalone/drakbackup:2656
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tSendw Email an %s\n"
-
-#: standalone/drakbackup:2657
-#, c-format
-msgid "\tSend mail from %s\n"
-msgstr "\tSende E-Mail von %s\n"
-
-#: standalone/drakbackup:2658
-#, c-format
-msgid "\tUsing SMTP server %s\n"
-msgstr "\tVerwende SMTP-Server %s\n"
-
-#: standalone/drakbackup:2660
-#, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
-msgstr ""
-"\n"
-"- Dämon (%s) über:\n"
-
-#: standalone/drakbackup:2661
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t* Festplatte.\n"
-
-#: standalone/drakbackup:2662
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t* CD-ROM.\n"
-
-#: standalone/drakbackup:2663
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Band \n"
-
-#: standalone/drakbackup:2664
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t* Netzwerk per FTP.\n"
-
-#: standalone/drakbackup:2665
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t* Netzwerk per SSH.\n"
-
-#: standalone/drakbackup:2666
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t* Netzwerk per rsync.\n"
-
-#: standalone/drakbackup:2668
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-"Keine Konfiguration. Wählen Sie den Assistenten oder Fortgeschritten.\n"
-
-#: standalone/drakbackup:2673
-#, c-format
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Liste der wiederherzustellenden Daten:\n"
-"\n"
-
-#: standalone/drakbackup:2675
-#, c-format
-msgid "- Restore System Files.\n"
-msgstr "- Systemdateien wiederherstellen.\n"
-
-#: standalone/drakbackup:2677 standalone/drakbackup:2687
-#, c-format
-msgid " - from date: %s %s\n"
-msgstr " - von Datum: %s %s\n"
-
-#: standalone/drakbackup:2680
-#, c-format
-msgid "- Restore User Files: \n"
-msgstr "- Nutzerdateien wiederherstellen: \n"
-
-#: standalone/drakbackup:2685
-#, c-format
-msgid "- Restore Other Files: \n"
-msgstr "- Andere Dateien wiederherstellen: \n"
-
-#: standalone/drakbackup:2864
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Liste der beschädigten Daten:\n"
-"\n"
-
-#: standalone/drakbackup:2866
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr ""
-"Bitte entfernen Sie die Markierung oder löschen Sie sie das nächste Mal."
-
-#: standalone/drakbackup:2876
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Die Sicherungen sind beschädigt."
-
-#: standalone/drakbackup:2897
-#, c-format
-msgid " All of your selected data have been "
-msgstr " Alle Ihre gewählten Daten wurden "
-
-#: standalone/drakbackup:2898
-#, c-format
-msgid " Successfully Restored on %s "
-msgstr " erfolgreich auf %s wiederhergestellt "
-
-#: standalone/drakbackup:2999
-#, c-format
-msgid "/usr/bin/star not found, using tar..."
-msgstr ""
-
-#: standalone/drakbackup:3035
-#, c-format
-msgid " Restore Configuration "
-msgstr " Konfiguration wiederherstellen "
-
-#: standalone/drakbackup:3063
-#, c-format
-msgid "OK to restore the other files."
-msgstr "Bereit um die anderen Dateien wiederherzustellen"
-
-#: standalone/drakbackup:3079
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Liste wiederherzustellender Benutzer (letztes Datum pro Benutzer ist wichtig)"
-
-#: standalone/drakbackup:3144
-#, c-format
-msgid "Please choose the date to restore:"
-msgstr "Bitte die Daten zum Wiederherstellen auswählen:"
-
-#: standalone/drakbackup:3181
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Von Festplatte wiederherstellen"
-
-#: standalone/drakbackup:3183
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Bitte geben Sie das Verzeichnis an, in dem die Sicherungskopien liegen"
-
-#: standalone/drakbackup:3187
-#, c-format
-msgid "Directory with backups"
-msgstr "Verzeichnisse mit Datensicherungen"
-
-#: standalone/drakbackup:3241
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Wählen Sie ein anderes Medium von dem Sie wiederherstellen wollen."
-
-#: standalone/drakbackup:3243
-#, c-format
-msgid "Other Media"
-msgstr "Anderes Medium"
-
-#: standalone/drakbackup:3248
-#, c-format
-msgid "Restore system"
-msgstr "System wiederherstellen"
-
-#: standalone/drakbackup:3249
-#, c-format
-msgid "Restore Users"
-msgstr "Benutzer wiederherstellen"
-
-#: standalone/drakbackup:3250
-#, c-format
-msgid "Restore Other"
-msgstr "Sonstiges wiederherstellen"
-
-#: standalone/drakbackup:3252
-#, c-format
-msgid "Select path to restore (instead of /)"
-msgstr "Pfad zum Wiederherstellen auswählen (anstatt /)"
-
-#: standalone/drakbackup:3256 standalone/drakbackup:3539
-#, c-format
-msgid "Path To Restore To"
-msgstr "Pfad zum Wiederherstellen zu"
-
-#: standalone/drakbackup:3259
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-"Erstelle Sicherung vor dem Wiederherstellen (nur für inkrementelle "
-"Sicherungen)."
-
-#: standalone/drakbackup:3261
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Verzeichnisse der Benutzer vor dem Wiederherstellen entfernen."
-
-#: standalone/drakbackup:3345
-#, c-format
-msgid "Filename text substring to search for (empty string matches all):"
-msgstr ""
-"Dateinamentext-Unterstring nach dem gesucht wird (leerer String findet "
-"alles!):"
-
-#: standalone/drakbackup:3348
-#, c-format
-msgid "Search Backups"
-msgstr "Durchsuche Sicherheitskopien"
-
-#: standalone/drakbackup:3367
-#, c-format
-msgid "No matches found..."
-msgstr "Kein Treffer gefunden..."
-
-#: standalone/drakbackup:3371
-#, c-format
-msgid "Restore Selected"
-msgstr "Markierte Dateien wiederherstellen"
-
-#: standalone/drakbackup:3507
-#, c-format
-msgid ""
-"Click date/time to see backup files.\n"
-"Ctrl-Click files to select multiple files."
-msgstr ""
-"Klicken Sie auf Datum/Zeit um die Sicherungsdateien zu sehen.\n"
-"Strg-Klick Dateien um mehrere Dateien auszuwählen."
-
-#: standalone/drakbackup:3513
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
-"Ausgewählte Katalogeinträge\n"
-"wieder herstellen"
-
-#: standalone/drakbackup:3522
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr ""
-"Markierte Dateien\n"
-"wiederherstellen"
-
-#: standalone/drakbackup:3599
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "Datensicherungsdateien nicht unter %s gefunden."
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid "Restore From CD"
-msgstr "Von CD wiederherstellen"
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-"Legen Sie die CD mit Namen %s\n"
-"in das CD-Laufwerk, eingebunden unter /mnt/cdrom"
-
-#: standalone/drakbackup:3614
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "Nicht die korrekte CD. Die richtige CD heißt %s"
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid "Restore From Tape"
-msgstr "Von Band wiederherstellen"
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-"Legen Sie das Band mit dem Namen %s\n"
-"in das Bandlaufwerkgerät %s"
-
-#: standalone/drakbackup:3626
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Nicht das richtige Band. Das richtige Band heißt %s"
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network"
-msgstr "Über Netzwerk wiederherstellen"
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Wiederherstellen mit Netzwerkprotokoll: %s"
-
-#: standalone/drakbackup:3638
-#, c-format
-msgid "Host Name"
-msgstr "Rechnername"
-
-#: standalone/drakbackup:3639
-#, c-format
-msgid "Host Path or Module"
-msgstr "Rechnerpfad oder Modul"
-
-#: standalone/drakbackup:3646
-#, c-format
-msgid "Password required"
-msgstr "Passwort nötig"
-
-#: standalone/drakbackup:3652
-#, c-format
-msgid "Username required"
-msgstr "Benutzername nötig"
-
-#: standalone/drakbackup:3655
-#, c-format
-msgid "Hostname required"
-msgstr "Rechnername nötig"
-
-#: standalone/drakbackup:3660
-#, c-format
-msgid "Path or Module required"
-msgstr "Pfad oder Modul benötigt"
-
-#: standalone/drakbackup:3672
-#, c-format
-msgid "Files Restored..."
-msgstr "Dateien wiederhergestellt..."
-
-#: standalone/drakbackup:3675
-#, c-format
-msgid "Restore Failed..."
-msgstr "Wiederherstellen fehlgeschlagen..."
-
-#: standalone/drakbackup:3703
-#, c-format
-msgid "%s not retrieved..."
-msgstr "%s nicht wiedergefunden..."
-
-#: standalone/drakbackup:3929 standalone/drakbackup:3998
-#, c-format
-msgid "Search for files to restore"
-msgstr "Suche wiederherzustellende Dateien."
-
-#: standalone/drakbackup:3933
-#, c-format
-msgid "Restore all backups"
-msgstr "Alle Sicherungen wiederherstellen"
-
-#: standalone/drakbackup:3941
-#, c-format
-msgid "Custom Restore"
-msgstr "Benutzerdefinierte Wiederherstellung"
-
-#: standalone/drakbackup:3945 standalone/drakbackup:3994
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Wiederherstellen aus Katalog"
-
-#: standalone/drakbackup:3966
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Kann kein Archiv zum Wiederherstellen finden...\n"
-
-#: standalone/drakbackup:3967
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Stellen Sie sicher, dass %s der richtige Pfad ist"
-
-#: standalone/drakbackup:3968
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " und die CD im Laufwerk ist"
-
-#: standalone/drakbackup:3970
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr ""
-"Datensicherung auf nicht-einbindbarem Medium - Katalog zum Wiederherstellen "
-"verwenden"
-
-#: standalone/drakbackup:3986
-#, c-format
-msgid "CD in place - continue."
-msgstr "Aktuelle CD - fortfahren."
-
-#: standalone/drakbackup:3991
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Zum neuen Wiederherstellungsverzeichnis wechseln"
-
-#: standalone/drakbackup:3992
-#, c-format
-msgid "Directory To Restore From"
-msgstr "Wiederherstellungsverzeichnis"
-
-#: standalone/drakbackup:4028
-#, c-format
-msgid "Restore Progress"
-msgstr "Wiederherstellungs-Fortschritt"
-
-#: standalone/drakbackup:4136
-#, c-format
-msgid "Build Backup"
-msgstr "Sicherung erstellen"
-
-#: standalone/drakbackup:4169 standalone/drakbackup:4466
-#, c-format
-msgid "Restore"
-msgstr "Wiederherstellen"
-
-#: standalone/drakbackup:4261
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Bitte wählen Sie die wiederherzustellenden Daten..."
-
-#: standalone/drakbackup:4301
-#, c-format
-msgid "Backup system files"
-msgstr "Systemdateien sichern"
-
-#: standalone/drakbackup:4304
-#, c-format
-msgid "Backup user files"
-msgstr "Benutzerdateien sichern"
-
-#: standalone/drakbackup:4307
-#, c-format
-msgid "Backup other files"
-msgstr "Andere Dateien sichern"
-
-#: standalone/drakbackup:4310 standalone/drakbackup:4344
-#, c-format
-msgid "Total Progress"
-msgstr "Fortschritt"
-
-#: standalone/drakbackup:4336
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Dateien mittels FTP übertragen"
-
-#: standalone/drakbackup:4339
-#, c-format
-msgid "Sending files..."
-msgstr "Sende Dateien ..."
-
-#: standalone/drakbackup:4409
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Jetzt Sicherung anhand der Konfigurationsdatei erstellen"
-
-#: standalone/drakbackup:4414
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Sicherungskonfiguration anzeigen"
-
-#: standalone/drakbackup:4440
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Assistentengestützte Konfiguration"
-
-#: standalone/drakbackup:4445
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Expertenkonfiguration"
-
-#: standalone/drakbackup:4450
-#, c-format
-msgid "View Configuration"
-msgstr "Einstellung anschauen"
-
-#: standalone/drakbackup:4454
-#, c-format
-msgid "View Last Log"
-msgstr "Letzten Log Eintrag betrachten"
-
-#: standalone/drakbackup:4459
-#, c-format
-msgid "Backup Now"
-msgstr "Jetzt sichern"
-
-#: standalone/drakbackup:4463
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Keine Konfigurationsdatei gefunden.\n"
-"Bitte wählen Sie den „Assistenten“ oder „Erweitert“."
-
-#: standalone/drakbackup:4501
-#, fuzzy, c-format
-msgid "Load profile"
-msgstr "Lokale Datei"
-
-#: standalone/drakbackup:4510
-#, fuzzy, c-format
-msgid "Save profile as..."
-msgstr "Speichern unter..."
-
-#: standalone/drakbackup:4532 standalone/drakbackup:4535
-#, c-format
-msgid "Drakbackup"
-msgstr "DrakBackup"
-
-#: standalone/drakboot:49
-#, c-format
-msgid "No bootloader found, creating a new configuration"
-msgstr "Kein Systemstarter gefunden, erzeuge eine neue Konfiguration"
-
-#: standalone/drakboot:84 standalone/harddrake2:190 standalone/harddrake2:191
-#: standalone/logdrake:69 standalone/printerdrake:150
-#: standalone/printerdrake:151 standalone/printerdrake:152
-#, c-format
-msgid "/_File"
-msgstr "/_Datei"
-
-#: standalone/drakboot:85 standalone/logdrake:75
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Datei/B_eenden"
-
-#: standalone/drakboot:85 standalone/harddrake2:191 standalone/logdrake:75
-#: standalone/printerdrake:152
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: standalone/drakboot:125
-#, c-format
-msgid "Text only"
-msgstr "Nur Text"
-
-#: standalone/drakboot:126
-#, c-format
-msgid "Verbose"
-msgstr "Ausführlich"
-
-#: standalone/drakboot:127
-#, c-format
-msgid "Silent"
-msgstr "Still"
-
-#: standalone/drakboot:134
-#, c-format
-msgid ""
-"Your system bootloader is not in framebuffer mode. To activate graphical "
-"boot, select a graphic video mode from the bootloader configuration tool."
-msgstr ""
-"Ihr System-Starter ist nicht im Framebuffer-Modus. Um grafisches Starten zu "
-"aktivieren wählen Sie einen grafischen Videomodus im Konfigurationswerkzeug "
-"des System-Starters."
-
-#: standalone/drakboot:135
-#, c-format
-msgid "Do you want to configure it now?"
-msgstr "Möchten Sie es jetzt einstellen?"
-
-#: standalone/drakboot:144
-#, c-format
-msgid "Install themes"
-msgstr "Designs installieren"
-
-#: standalone/drakboot:146
-#, c-format
-msgid "Graphical boot theme selection"
-msgstr "Auswahl des grafischen Startthemas"
-
-#: standalone/drakboot:149
-#, c-format
-msgid "Graphical boot mode:"
-msgstr "Grafischer Startmodus:"
-
-#: standalone/drakboot:151
-#, c-format
-msgid "Theme"
-msgstr "Thema"
-
-#: standalone/drakboot:154
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"Design in der\n"
-"Konsole anzeigen"
-
-#: standalone/drakboot:159
-#, c-format
-msgid "Create new theme"
-msgstr "Ein neues Design erzeugen"
-
-#: standalone/drakboot:191
-#, c-format
-msgid "Default user"
-msgstr "Standardbenutzer"
-
-#: standalone/drakboot:192
-#, c-format
-msgid "Default desktop"
-msgstr "Standard Arbeitsumgebung"
-
-#: standalone/drakboot:195
-#, c-format
-msgid "No, I do not want autologin"
-msgstr "Nein, ich will kein Autologin"
-
-#: standalone/drakboot:196
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Ja, ich will Autologin mit diesem Benutzer und dieser Arbeitsumgebung"
-
-#: standalone/drakboot:203
-#, c-format
-msgid "System mode"
-msgstr "System-Modus"
-
-#: standalone/drakboot:206
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Arbeitsoberfläche nach dem Hochfahren automatisch starten "
-
-#: standalone/drakboot:272
-#, c-format
-msgid ""
-"Please choose a video mode, it will be applied to each of the boot entries "
-"selected below.\n"
-"Be sure your video card supports the mode you choose."
-msgstr ""
-"Bitte wählen Sie einen Grafikmodus. Er wird auf alle unten ausgewählte "
-"Starteinträge angewendet.\n"
-"Stellen Sie sicher, dass Ihre Grafikkarte den ausgewählten Modus unterstützt."
-
-#: standalone/drakbug:41
-#, c-format
-msgid "Mandriva Linux Bug Report Tool"
-msgstr "Mandriva Linux Fehlerberichte"
-
-#: standalone/drakbug:46
-#, c-format
-msgid "Mandriva Linux Control Center"
-msgstr "Mandriva Linux Kontrollzentrum"
-
-#: standalone/drakbug:48
-#, c-format
-msgid "Synchronization tool"
-msgstr "Synchronisationsprogramm"
-
-#: standalone/drakbug:49 standalone/drakbug:152
-#, c-format
-msgid "Standalone Tools"
-msgstr "Eingenständige Werkzeuge"
-
-#: standalone/drakbug:50
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: standalone/drakbug:51
-#, c-format
-msgid "Mandriva Online"
-msgstr "Mandriva Online"
-
-#: standalone/drakbug:52
-#, c-format
-msgid "Menudrake"
-msgstr "MenuDrake"
-
-#: standalone/drakbug:53
-#, c-format
-msgid "Msec"
-msgstr "Msec"
-
-#: standalone/drakbug:54
-#, c-format
-msgid "Remote Control"
-msgstr "Fernsteuerung"
-
-#: standalone/drakbug:55
-#, c-format
-msgid "Software Manager"
-msgstr "Software-Verwaltung"
-
-#: standalone/drakbug:56
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
-
-#: standalone/drakbug:57
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Windows-Migrationswerkzeug"
-
-#: standalone/drakbug:58 standalone/draksambashare:1234
-#, c-format
-msgid "Userdrake"
-msgstr "UserDrake"
-
-#: standalone/drakbug:59
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Konfigurationsassistenten"
-
-#: standalone/drakbug:81
-#, c-format
-msgid "Select Mandriva Tool:"
-msgstr "Wählen Sie ein Mandriva-Werkzeug:"
-
-#: standalone/drakbug:82
-#, c-format
-msgid ""
-"or Application Name\n"
-"(or Full Path):"
-msgstr ""
-"oder Anwendungsname\n"
-"(oder ganzer Pfad):"
-
-#: standalone/drakbug:85
-#, c-format
-msgid "Find Package"
-msgstr "Finde Pakete"
-
-#: standalone/drakbug:87
-#, c-format
-msgid "Package: "
-msgstr "Paket:"
-
-#: standalone/drakbug:88
-#, c-format
-msgid "Kernel:"
-msgstr "Kernel:"
-
-#: standalone/drakbug:101
-#, c-format
-msgid ""
-"To submit a bug report, click on the report button. \n"
-"This will open a web browser window on %s where you'll find a form to fill "
-"in. The information displayed above will be transferred to that server. \n"
-"Things useful to include in your report are the output of lspci, kernel "
-"version, and /proc/cpuinfo."
-msgstr ""
-"Um eine Fehlerbericht abzugeben, klicken Sie auf den Knopf „Berichten“. Dies "
-"wird ein Webbrowser-Fenster auf %s öffnen wo sie das Forumlar ausfüllen "
-"müssen. Die oben dargestellten Informationen werden auf den Server "
-"übertragen werden. Nützliche Informationen in Ihrem Fehlerbericht sind die "
-"Ausgabe von lspci, die Kernelversion und /proc/cpuinfo."
-
-#: standalone/drakbug:107
-#, c-format
-msgid "Report"
-msgstr "Bericht"
-
-#: standalone/drakbug:162
-#, c-format
-msgid "Not installed"
-msgstr "Nicht installiert"
-
-#: standalone/drakbug:174
-#, c-format
-msgid "Package not installed"
-msgstr "Paket nicht installiert"
-
-#: standalone/drakclock:29
-#, c-format
-msgid "DrakClock"
-msgstr "DrakClock"
-
-#: standalone/drakclock:39
-#, c-format
-msgid "not defined"
-msgstr "nicht definiert"
-
-#: standalone/drakclock:41
-#, c-format
-msgid "Change Time Zone"
-msgstr "Zeitzone ändern"
-
-#: standalone/drakclock:45
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "Zeitzone - DrakClock"
-
-#: standalone/drakclock:47
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "GMT - DrakClock"
-
-#: standalone/drakclock:47 standalone/finish-install:57
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Ist Ihre Hardware Uhr auf GMT eingestellt?"
-
-#: standalone/drakclock:75
-#, c-format
-msgid "Network Time Protocol"
-msgstr "Netzwerk Zeitprotokoll (NTP)"
-
-#: standalone/drakclock:77
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-"Dieser Computer kann seine Zeit mit einem\n"
-" Remote Time Server synchronisieren"
-
-#: standalone/drakclock:78
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Aktiviere das Network Time Protocol"
-
-#: standalone/drakclock:86
-#, c-format
-msgid "Server:"
-msgstr "Server: "
-
-#: standalone/drakclock:124
-#, c-format
-msgid "Could not synchronize with %s."
-msgstr "Konnte nicht mit %s synchronisieren."
-
-#: standalone/drakclock:146 standalone/drakclock:156
-#, c-format
-msgid "Reset"
-msgstr "Zurücksetzen"
-
-#: standalone/drakclock:224
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol\n"
-"\n"
-"Do you want to install ntp?"
-msgstr ""
-"Wir müssen das Paket „ntp“ installieren,\n"
-"um das Network Time Protocol anzuschalten\n"
-"\n"
-"Möchten Sie ntp installieren?"
-
-#: standalone/drakconnect:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netzwerk-Konfiguration (%d Karten)"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Interface:"
-msgstr "Schnittstelle:"
-
-#: standalone/drakconnect:93 standalone/net_monitor:116
-#, c-format
-msgid "Wait please"
-msgstr "Bitte warten"
-
-#: standalone/drakconnect:109
-#, c-format
-msgid "Interface"
-msgstr "Schnittstelle"
-
-#: standalone/drakconnect:109 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "State"
-msgstr "Status"
-
-#: standalone/drakconnect:126
-#, c-format
-msgid "Hostname: "
-msgstr "Rechnername: "
-
-#: standalone/drakconnect:128
-#, c-format
-msgid "Configure hostname..."
-msgstr "Rechnername wählen ..."
-
-#: standalone/drakconnect:142 standalone/drakconnect:845
-#, c-format
-msgid "LAN configuration"
-msgstr "LAN-Konfiguration"
-
-#: standalone/drakconnect:147
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Netzwerk konfigurieren"
-
-#: standalone/drakconnect:155 standalone/drakconnect:237
-#: standalone/drakconnect:241
-#, c-format
-msgid "Apply"
-msgstr "Anwenden"
-
-#: standalone/drakconnect:188
-#, c-format
-msgid "Manage connections"
-msgstr "Verbindungen verwalten"
-
-#: standalone/drakconnect:215
-#, c-format
-msgid "Device selected"
-msgstr "Gerät ausgewählt"
-
-#: standalone/drakconnect:296
-#, c-format
-msgid "IP configuration"
-msgstr "IP-Konfiguration"
-
-#: standalone/drakconnect:335
-#, c-format
-msgid "DNS servers"
-msgstr "DNS-Server"
-
-#: standalone/drakconnect:343
-#, c-format
-msgid "Search Domain"
-msgstr "Suche Domäne"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "static"
-msgstr "statisch"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "DHCP"
-msgstr "DHCP"
-
-#: standalone/drakconnect:515
-#, c-format
-msgid "Flow control"
-msgstr "Flusskontrolle"
-
-#
-#: standalone/drakconnect:516
-#, c-format
-msgid "Line termination"
-msgstr "Leitung getrennt"
-
-#: standalone/drakconnect:527
-#, c-format
-msgid "Modem timeout"
-msgstr "Modem-Zeit überschritten"
-
-#: standalone/drakconnect:531
-#, c-format
-msgid "Use lock file"
-msgstr "Sperrdatei benutzen"
-
-#: standalone/drakconnect:533
-#, c-format
-msgid "Wait for dialup tone before dialing"
-msgstr "Warten auf das Freizeichen vor dem Wählen"
-
-#: standalone/drakconnect:536
-#, c-format
-msgid "Busy wait"
-msgstr "Beschäftigt - Warten"
-
-#: standalone/drakconnect:541
-#, c-format
-msgid "Modem sound"
-msgstr "Modem-Ton"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Enable"
-msgstr "Aktivieren"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Disable"
-msgstr "Deaktivieren"
-
-#: standalone/drakconnect:593 standalone/harddrake2:50
-#, c-format
-msgid "Media class"
-msgstr "Medienklasse"
-
-#: standalone/drakconnect:594
-#, c-format
-msgid "Module name"
-msgstr " Modulname "
-
-#: standalone/drakconnect:595
-#, c-format
-msgid "Mac Address"
-msgstr "Hardware-Adresse"
-
-#: standalone/drakconnect:596 standalone/harddrake2:28
-#: standalone/harddrake2:120
-#, c-format
-msgid "Bus"
-msgstr "Bus"
-
-#: standalone/drakconnect:597 standalone/harddrake2:34
-#, c-format
-msgid "Location on the bus"
-msgstr "Standort auf dem Bus"
-
-#: standalone/drakconnect:700 standalone/drakgw:311
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Ihr Rechner hat keine konfigurierte Netzwerkkarte. Bitte verwenden Sie erst "
-"HardDrake, bevor Sie weiter machen."
-
-#: standalone/drakconnect:709
-#, c-format
-msgid "Remove a network interface"
-msgstr "Eine Netzwerkkarte entfernen"
-
-#: standalone/drakconnect:713
-#, c-format
-msgid "Select the network interface to remove:"
-msgstr "Wählen Sie das zu entfernende Netzwerkgerät aus:"
-
-#: standalone/drakconnect:745
-#, c-format
-msgid ""
-"An error occurred while deleting the \"%s\" network interface:\n"
-"\n"
-"%s"
-msgstr ""
-"Beim Entfernen des Netzwerks „%s“ trat ein Fehler auf: \n"
-"\n"
-"%s"
-
-#: standalone/drakconnect:746
-#, c-format
-msgid ""
-"Congratulations, the \"%s\" network interface has been successfully deleted"
-msgstr "Gratulation, die „%s“ Netzwerk Karte wurde erfolgreich gelöscht"
-
-#: standalone/drakconnect:761
-#, c-format
-msgid "No IP"
-msgstr "Keine lP"
-
-#: standalone/drakconnect:762
-#, c-format
-msgid "No Mask"
-msgstr "Keine Maske"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "up"
-msgstr "einschalten"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "down"
-msgstr "ausschalten"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Connected"
-msgstr "Verbunden"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Not connected"
-msgstr "Nicht Verbunden"
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Disconnect..."
-msgstr "Trenne Verbindung ..."
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Connect..."
-msgstr "Verbinde ..."
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Deactivate now"
-msgstr "Jetzt deaktivieren"
-
-#: standalone/drakconnect:841
-#, c-format
-msgid "Activate now"
-msgstr "Jetzt aktivieren"
-
-#: standalone/drakconnect:849
-#, c-format
-msgid ""
-"You do not have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Sie haben noch keine Schnittstelle eingerichtet.\n"
-"Sie können dies tun, indem Sie die Schaltfläche \n"
-"„Konfigurieren“ betätigen."
-
-#: standalone/drakconnect:863
-#, c-format
-msgid "LAN Configuration"
-msgstr "LAN-Konfiguration"
-
-#: standalone/drakconnect:875
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: standalone/drakconnect:884
-#, c-format
-msgid "Boot Protocol"
-msgstr "Boot-Protokoll"
-
-#: standalone/drakconnect:885
-#, c-format
-msgid "Started on boot"
-msgstr "Beim Hochfahren gestartet"
-
-#: standalone/drakconnect:921
-#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Diese Schnittstelle wurde noch nicht eingerichtet.\n"
-"Starten Sie den Assistenten „Schnittstelle hinzufügen“ im Mandriva Linux "
-"Kontrollzentrum."
-
-#: standalone/drakconnect:975 standalone/net_applet:51
-#, c-format
-msgid ""
-"You do not have any configured Internet connection.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Sie haben noch keine eingerichtete Internetverbindung.\n"
-"Starten Sie den Assistenten „%s“ im Mandriva Linux Kontrollzentrum."
-
-#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: standalone/drakconnect:976 standalone/drakroam:34 standalone/net_applet:52
-#, c-format
-msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
-msgstr "Eine Netzwerkschnittstelle erstellen (LAN, ISDN, ADSL, ...)"
-
-#: standalone/drakconnect:981
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Konfiguration der Internetverbindung"
-
-#: standalone/drakconnect:994
-#, c-format
-msgid "Third DNS server (optional)"
-msgstr "Dritter DNS-Server (optional)"
-
-#: standalone/drakconnect:1016
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Konfiguration der Internetverbindung"
-
-#: standalone/drakconnect:1017
-#, c-format
-msgid "Internet access"
-msgstr "Internetzugang"
-
-#: standalone/drakconnect:1019 standalone/net_monitor:95
-#, c-format
-msgid "Connection type: "
-msgstr "Verbindungstyp: "
-
-#: standalone/drakconnect:1022
-#, c-format
-msgid "Status:"
-msgstr "Status:"
-
-#: standalone/drakconnect:1027
-#, c-format
-msgid "Parameters"
-msgstr "Parameter"
-
-#: standalone/drakedm:40
-#, c-format
-msgid "GDM (GNOME Display Manager)"
-msgstr "GDM (GNOME Display Manager)"
-
-#: standalone/drakedm:41
-#, c-format
-msgid "KDM (KDE Display Manager)"
-msgstr "KDM (KDE Display Manager)"
-
-#: standalone/drakedm:42
-#, c-format
-msgid "XDM (X Display Manager)"
-msgstr "XDM (X Display Manager)"
-
-#: standalone/drakedm:53
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Wähle einen Display-Manager"
-
-#: standalone/drakedm:54
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"Der X11-Display-Manager erlaubt das grafische Anmelden\n"
-"an das System, sowie das gleichzeitige Ausführen mehrerer verschiedener \n"
-"lokaler X-Sitzungen."
-
-#: standalone/drakedm:72
-#, c-format
-msgid "The change is done, do you want to restart the dm service?"
-msgstr "Die Änderungen wurden ausgeführt, soll ich den dm-Dienst neu starten?"
-
-#: standalone/drakedm:73
-#, c-format
-msgid ""
-"You are going to close all running programs and lose your current session. "
-"Are you really sure that you want to restart the dm service?"
-msgstr ""
-"Sie werden alle laufenden Programme beenden und Ihre aktuelle Sitzung "
-"beenden.Sind Sie sicher, dass Sie dem dm-Dienst neustarten wollen?"
-
-#: standalone/drakfont:182
-#, c-format
-msgid "Search installed fonts"
-msgstr "Installierte Schriftarten suchen"
-
-#: standalone/drakfont:184
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "Auswahl installierter Schriftarten zurücksetzen"
-
-#: standalone/drakfont:207
-#, c-format
-msgid "parse all fonts"
-msgstr "Alle Schriftarten analysieren"
-
-#: standalone/drakfont:209
-#, c-format
-msgid "No fonts found"
-msgstr "Keine Schriftarten gefunden"
-
-#: standalone/drakfont:217 standalone/drakfont:259 standalone/drakfont:326
-#: standalone/drakfont:359 standalone/drakfont:367 standalone/drakfont:393
-#: standalone/drakfont:411 standalone/drakfont:425
-#, c-format
-msgid "done"
-msgstr "Fertig"
-
-#: standalone/drakfont:222
-#, c-format
-msgid "Could not find any font in your mounted partitions"
-msgstr "Ich konnte keine Schriften in Ihren eingehängten Partitionen finden"
-
-#: standalone/drakfont:257
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Neuwahl korrekter Schriftarten"
-
-#: standalone/drakfont:260
-#, c-format
-msgid "Could not find any font.\n"
-msgstr "Konnte keine Schriftarten finden.\n"
-
-#: standalone/drakfont:270
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Suche installierter Schriften"
-
-#: standalone/drakfont:295
-#, c-format
-msgid "%s fonts conversion"
-msgstr "%sSchriftkonvertierung"
-
-#: standalone/drakfont:324
-#, c-format
-msgid "Fonts copy"
-msgstr "Schriftarten-Kopie"
-
-#: standalone/drakfont:327
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Installation von TrueType-Schriftarten"
-
-#: standalone/drakfont:334
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "Bitte warten Sie - ttmkfdir arbeitet ..."
-
-#: standalone/drakfont:335
-#, c-format
-msgid "True Type install done"
-msgstr "TrueType-Installation beendet"
-
-#: standalone/drakfont:341 standalone/drakfont:356
-#, c-format
-msgid "type1inst building"
-msgstr "Erzeuge „type1inst“"
-
-#: standalone/drakfont:350
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "Ghostscriptreferenz"
-
-#: standalone/drakfont:360
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Temporäre Dateien löschen"
-
-#: standalone/drakfont:363
-#, c-format
-msgid "Restart XFS"
-msgstr "Neustart des X-Font-Servers"
-
-#: standalone/drakfont:409 standalone/drakfont:419
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Schriftartdateien unterdrücken"
-
-#: standalone/drakfont:421
-#, c-format
-msgid "xfs restart"
-msgstr "Neustart des X-Font-Servers"
-
-#: standalone/drakfont:429
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
-"Bevor Sie irgendwelche Schriftarten installieren, müssen Sie das Recht "
-"haben, diese zu verwenden und zu installieren.\n"
-"\n"
-"Sie können die Schriftarten auf normalem Weg einbinden. In seltenen "
-"Fällenkönnen defekte Schriftarten den X-Server lahmlegen."
-
-#: standalone/drakfont:473 standalone/drakfont:482
-#, c-format
-msgid "DrakFont"
-msgstr "DrakFont"
-
-#: standalone/drakfont:483
-#, c-format
-msgid "Font List"
-msgstr "Font-Liste"
-
-#: standalone/drakfont:486
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "Windows-Schriftarten holen"
-
-#: standalone/drakfont:492
-#, c-format
-msgid "About"
-msgstr "Über"
-
-#: standalone/drakfont:494 standalone/drakfont:718
-#, c-format
-msgid "Uninstall"
-msgstr "Deinstallieren"
-
-#: standalone/drakfont:495
-#, c-format
-msgid "Import"
-msgstr "Importieren"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakfont:513
-#, c-format
-msgid "Copyright (C) 2001-2006 by Mandriva"
-msgstr ""
-
-#: standalone/drakfont:515
-#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-"Dieses Programm ist freie Software; sie können es weiterverteilen und/oder\n"
-"unter den Bedingungen der GNU General Public License wie von der Free\n"
-"Software Foundation veröffentlicht, entweder Version 2 oder (zu Ihrer "
-"Auswahl)\n"
-"jede spätere Version, verändern.\n"
-"\n"
-"\n"
-" Dieses Programm wird mit dem Gedanken verteilt, dass es nützlich ist,\n"
-" aber OHNE JEDE GARANTIE, sogar ohne die stillschweigende Zusicherung\n"
-" ALLGEMEINER GEBRAUCHSTAUGLICHKEIT oder einer EIGNUNG. Siehe die\n"
-" GNU General Public License für weitere Details.\n"
-"\n"
-"\n"
-" Sie sollten eine Kopie der GNU General Public License zusammen mit diesem\n"
-" Programm erhalten haben. Wenn nicht, schreiben Sie an die Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-
-#: standalone/drakfont:531
-#, c-format
-msgid ""
-"Thanks:\n"
-"\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
-msgstr ""
-"Vielen Dank an:\n"
-"\n"
-" - pfm2afm: \n"
-"\t von Ken Borgendale:\n"
-"\t Konvertiert Windows-pfm-Dateien in afm-Dateien (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t von James Macnicol: \n"
-"\t type1inst generiert Dateien, Schriftverzeichnisse, Skalierungen und "
-"die Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t von Andreq Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Konvertiert ttf-Schriftdateien in afm- und pfb-Schriften\n"
-
-#: standalone/drakfont:550
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Wählen Sie die Programme, die die Schriftarten verwenden sollen:"
-
-#: standalone/drakfont:561
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: standalone/drakfont:562
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: standalone/drakfont:563
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
-
-#: standalone/drakfont:564
-#, c-format
-msgid "Generic Printers"
-msgstr "Generische Drucker"
-
-#: standalone/drakfont:578
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-"Wählen Sie eine Schriftartdatei bzw. ein Verzeichnis und betätigen Sie "
-"„Hinzufügen“"
-
-#: standalone/drakfont:579
-#, c-format
-msgid "File Selection"
-msgstr "Dateiauswahl"
-
-#: standalone/drakfont:583
-#, c-format
-msgid "Fonts"
-msgstr "Schriftarten"
-
-#: standalone/drakfont:646
-#, c-format
-msgid "Import fonts"
-msgstr "Schriftarten importieren"
-
-#: standalone/drakfont:651
-#, c-format
-msgid "Install fonts"
-msgstr "Schriftarten installieren"
-
-#: standalone/drakfont:681
-#, c-format
-msgid "Are you sure you want to uninstall the following fonts?"
-msgstr ""
-
-#: standalone/drakfont:726
-#, c-format
-msgid "Unselected All"
-msgstr "Markierung löschen"
-
-#: standalone/drakfont:729
-#, c-format
-msgid "Selected All"
-msgstr "Alle auswählen"
-
-#: standalone/drakfont:743 standalone/drakfont:762
-#, c-format
-msgid "Importing fonts"
-msgstr "Importiere Schriftarten"
-
-#: standalone/drakfont:747 standalone/drakfont:767
-#, c-format
-msgid "Initial tests"
-msgstr "Vortests"
-
-#: standalone/drakfont:748
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Schriftarten auf Ihren Rechner kopieren"
-
-#: standalone/drakfont:749
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Schriftarten installieren und konvertieren"
-
-#: standalone/drakfont:750
-#, c-format
-msgid "Post Install"
-msgstr "Nach der Installation"
-
-#: standalone/drakfont:768
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Entfernen von Schriftarten auf Ihrem Rechner"
-
-#: standalone/drakfont:769
-#, c-format
-msgid "Post Uninstall"
-msgstr "Nach dem Entfernen"
-
-#: standalone/drakgw:50 standalone/drakvpn:51
-#, c-format
-msgid "Sorry, we support only 2.4 and above kernels."
-msgstr "Entschuldigung, wir unterstützen nur Kernelversion 2.4 und höher."
-
-#: standalone/drakgw:75
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Teilen der Internet-Verbindung"
-
-#: standalone/drakgw:79
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Sie sind dabei, Ihren Rechner zu konfigurieren, dass er die eingerichtete \n"
-"Internetverbindung mit einem lokalen Netzwerk teilt.\n"
-"\n"
-"Stellen Sie sicher, dass Sie Ihre Netzwerk-/Internetverbindung\n"
-"mit DrakConnect eingerichtet haben, bevor Sie fortfahren.\n"
-"Anmerkung: Sie benötigen eine Netzwerkkarte, mit deren Hilfe Sie ein \n"
-"lokales Netz (LAN) aufsetzen können."
-
-#: standalone/drakgw:95
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Es wurde bereits eine gemeinsame Internet-Verbindung aufgesetzt.\n"
-"Momentan ist sie aktiviert.\n"
-"\n"
-"Was wollen Sie tun?"
-
-#: standalone/drakgw:99
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Die Einrichtung einer gemeinsamen Internet-Verbindung wurde bereits "
-"durchgeführt.\n"
-"Momentan ist sie deaktiviert.\n"
-"\n"
-"Was wollen Sie tun?"
-
-#: standalone/drakgw:105
-#, c-format
-msgid "Reconfigure"
-msgstr "Rekonfigurieren"
-
-#: standalone/drakgw:145
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Sie haben nur eine konfiguriertes Netzwerkgerät an Ihrem Rechner:\n"
-"\n"
-"%s\n"
-"\n"
-"Ich setze ihr lokales Netz damit auf."
-
-#: standalone/drakgw:156
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Bitte wählen Sie die Netzwerkkarte, die mit Ihrem lokalen Netzwerk \n"
-"verbunden ist."
-
-#: standalone/drakgw:177
-#, c-format
-msgid "Local Area Network settings"
-msgstr "Einstellungen des lokalen Netzwerkes"
-
-#: standalone/drakgw:180
-#, c-format
-msgid "Local IP address"
-msgstr "Lokale IP-Adresse"
-
-#: standalone/drakgw:182
-#, c-format
-msgid "The internal domain name"
-msgstr "Der interne Domänen-Name"
-
-#: standalone/drakgw:188
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"Es liegt ein möglicher LAN-Adressen-Konflikt in der Konfiguration\n"
-"von %s vor!\n"
-
-#: standalone/drakgw:204
-#, c-format
-msgid "Domain Name Server (DNS) configuration"
-msgstr "Domain Name Server (DNS) Konfiguration"
-
-#: standalone/drakgw:208
-#, c-format
-msgid "Use this gateway as domain name server"
-msgstr "Verwende dieses Gateway als Domain Name Server"
-
-#: standalone/drakgw:209
-#, c-format
-msgid "The DNS Server IP"
-msgstr "Die IP des DNS-Servers"
-
-#: standalone/drakgw:236
-#, c-format
-msgid ""
-"DHCP Server Configuration.\n"
-"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you do not know the meaning of an option, simply leave it as it is."
-msgstr ""
-"DHCP Server Konfiguration.\n"
-"\n"
-"Hier können Sie verschiedene Optionen für die DHCP Server Konfiguration "
-"wählen.\n"
-"Wenn Sie die Bedeutung einer Option nicht verstehen, lassen Sie sie so wie "
-"sie ist."
-
-#: standalone/drakgw:243
-#, c-format
-msgid "Use automatic configuration (DHCP)"
-msgstr "Verwende automatische Konfiguration (DHCP)"
-
-#: standalone/drakgw:244
-#, c-format
-msgid "The DHCP start range"
-msgstr "Der DHCP Startbereich"
-
-#: standalone/drakgw:245
-#, c-format
-msgid "The DHCP end range"
-msgstr "DHCP Endbereich"
-
-#: standalone/drakgw:246
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Standard-IP-Verleihdauer (in Sekunden)"
-
-#: standalone/drakgw:247
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Maximale IP-Verleihdauer (in Sekunden)"
-
-#: standalone/drakgw:270
-#, c-format
-msgid "Proxy caching server (SQUID)"
-msgstr "Proxy Caching Server (SQUID)"
-
-#: standalone/drakgw:274
-#, c-format
-msgid "Use this gateway as proxy caching server"
-msgstr "Verwende dieses Gateway als Proxy Caching Server"
-
-#: standalone/drakgw:275
-#, c-format
-msgid "Admin mail"
-msgstr "Administrator E-Mail"
-
-#: standalone/drakgw:276
-#, c-format
-msgid "Visible hostname"
-msgstr "Sichtbarer Rechnername"
-
-#: standalone/drakgw:277
-#, c-format
-msgid "Proxy port"
-msgstr "Proxy-Port"
-
-#: standalone/drakgw:278
-#, c-format
-msgid "Cache size (MB)"
-msgstr "Cachegröße (MB)"
-
-#: standalone/drakgw:300
-#, c-format
-msgid "Broadcast printer information"
-msgstr "Druckerinformationen senden"
-
-#: standalone/drakgw:317
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Die Internetverbindungsfreigabe ist nun eingeschaltet."
-
-#: standalone/drakgw:323
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Gemeinsame Internet-Verbindung ist nun abgeschaltet."
-
-#: standalone/drakgw:329
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP) and\n"
-" a Transparent Proxy Cache server (SQUID)."
-msgstr ""
-"Es wurde alles eingerichtet.\n"
-"Sie können Ihre Internetverbindung nun mit anderen Rechnern in Ihremlokalen "
-"Netz mittels automatischer Netzwerk-Konfiguration (DHCP) und "
-"einemtransparenten Proxy Cache Server (SQUID) teilen."
-
-#: standalone/drakgw:363
-#, c-format
-msgid "Disabling servers..."
-msgstr "Deaktiviere Server ..."
-
-#: standalone/drakgw:377
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Ich habe eine Firewall-Konfiguration gefunden!"
-
-#: standalone/drakgw:378
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-"WARNUNG: Ich habe eine Firewall-Konfiguration gefunden. \n"
-"Möglicherweise müssen Sie nach der Installation einige Einstellungen \n"
-"von Hand vornehmen."
-
-#: standalone/drakgw:383
-#, c-format
-msgid "Configuring..."
-msgstr "Konfiguriere ..."
-
-#: standalone/drakgw:384
-#, c-format
-msgid "Configuring firewall..."
-msgstr "Konfiguriere Firewall..."
-
-#: standalone/drakhelp:17
-#, c-format
-msgid ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"\n"
-"Usage: \n"
-msgstr ""
-" drakhelp 0.1\n"
-"Copyright © 2003-2005 Mandriva.\n"
-"Dies ist freie Software und kann unter der den Bedingungen der GNU GPL "
-"weitergegeben werden.\n"
-"\n"
-"Aufruf: \n"
-
-#: standalone/drakhelp:22
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - diesen Hilfetext anzeigen \n"
-
-#: standalone/drakhelp:23
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr ""
-" --id <id_label> - lade die HTML Hilfeseite, die auf id_label "
-"verweist\n"
-
-#: standalone/drakhelp:24
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-" --doc <Verweis> - Verweis auf eine andere Internetseite (für den WM-"
-"Begrüßungsschirm)\n"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "Mandriva Linux Help Center"
-msgstr "Mandriva Linux Hilfezentrum"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "No Help entry for %s\n"
-msgstr ""
-
-#: standalone/drakhosts:98
-#, c-format
-msgid "Please add an host to be able to modify it."
-msgstr "Bitte fügen Sie einen Rechner hinzu, um ihn anpassen zu können."
-
-#: standalone/drakhosts:108
-#, c-format
-msgid "Please modify information"
-msgstr "Bitte passen Sie die Information an"
-
-#: standalone/drakhosts:109
-#, c-format
-msgid "Please delete information"
-msgstr "Bitte löschen Sie Informationen"
-
-#: standalone/drakhosts:110
-#, c-format
-msgid "Please add information"
-msgstr "Bitte fügen Sie Informationen hinzu"
-
-#: standalone/drakhosts:115
-#, c-format
-msgid "IP address:"
-msgstr "IP-Adresse:"
-
-#: standalone/drakhosts:116
-#, c-format
-msgid "Host name:"
-msgstr "Rechnername:"
-
-#: standalone/drakhosts:117
-#, c-format
-msgid "Host Aliases:"
-msgstr "Rechner-Aliase:"
-
-#: standalone/drakhosts:123
-#, c-format
-msgid "Please enter a valid IP address."
-msgstr "Bitte geben Sie eine gültige IP-Adresse ein."
-
-#: standalone/drakhosts:129
-#, c-format
-msgid "Same IP is already in %s file."
-msgstr "Die gleiche IP ist bereits in der Datei %s."
-
-#: standalone/drakhosts:197
-#, c-format
-msgid "Host Aliases"
-msgstr "Recher-Aliase"
-
-#: standalone/drakhosts:237
-#, c-format
-msgid "DrakHOSTS manage hosts definitions"
-msgstr "DrakHOSTS verwalten Rechnerdefinitionen"
-
-#: standalone/drakhosts:246
-#, c-format
-msgid "Failed to add host."
-msgstr "Konnte Rechner nicht hinzufügen."
-
-#: standalone/drakhosts:253
-#, c-format
-msgid "Failed to Modify host."
-msgstr "Konnte Rechner nicht ändern."
-
-#: standalone/drakhosts:260
-#, c-format
-msgid "Failed to remove host."
-msgstr "Konnte Rechner nicht löschen."
-
-#: standalone/drakids:26
-#, c-format
-msgid "Allowed addresses"
-msgstr "Erlaubte Adressen"
-
-#: standalone/drakids:57
-#, c-format
-msgid "Log"
-msgstr "Protokoll"
-
-#: standalone/drakids:61
-#, c-format
-msgid "Clear logs"
-msgstr "Protokolle löschen"
-
-#: standalone/drakids:62 standalone/drakids:67 standalone/net_applet:470
-#, c-format
-msgid "Blacklist"
-msgstr "Schwarze Liste"
-
-#: standalone/drakids:63 standalone/drakids:80 standalone/net_applet:475
-#, c-format
-msgid "Whitelist"
-msgstr "Weiße Liste"
-
-#: standalone/drakids:71
-#, c-format
-msgid "Remove from blacklist"
-msgstr "Aus der Schwarzen Liste löschen"
-
-#: standalone/drakids:72
-#, c-format
-msgid "Move to whitelist"
-msgstr "In die Weiße Liste verschieben"
-
-#: standalone/drakids:84
-#, c-format
-msgid "Remove from whitelist"
-msgstr "Aus der Weißen Liste löschen"
-
-#: standalone/drakids:136 standalone/drakids:145 standalone/drakids:170
-#: standalone/drakids:179 standalone/drakids:189 standalone/drakids:265
-#: standalone/drakroam:182 standalone/net_applet:202 standalone/net_applet:385
-#, c-format
-msgid "Unable to contact daemon"
-msgstr "Dämon nicht erreichbar"
-
-#: standalone/drakids:202
-#, c-format
-msgid "Date"
-msgstr "Datum"
-
-#: standalone/drakids:203
-#, c-format
-msgid "Attacker"
-msgstr "Angreifer"
-
-#: standalone/drakids:204
-#, c-format
-msgid "Attack type"
-msgstr "Angriffstyp"
-
-#: standalone/drakids:205
-#, c-format
-msgid "Service"
-msgstr "Dienst"
-
-#: standalone/drakids:206 standalone/net_applet:72
-#, c-format
-msgid "Network interface"
-msgstr "Netzwerk-Schnittstelle"
-
-#: standalone/draknfs:41
-#, c-format
-msgid "map root user as anonymous"
-msgstr "root-Benutzer auf anonymous abbilden"
-
-#: standalone/draknfs:42
-#, c-format
-msgid "map all users to anonymous user"
-msgstr "alle Benutzer auf anonymous abbilden"
-
-#: standalone/draknfs:43
-#, c-format
-msgid "No user UID mapping"
-msgstr "Keine Benutzer UID-Abbildung"
-
-#: standalone/draknfs:44
-#, c-format
-msgid "allow real remote root access"
-msgstr "erlaube echten entfernten root-Zugriff"
-
-#: standalone/draknfs:83
-#, c-format
-msgid "NFS server"
-msgstr "NFS-Server"
-
-#: standalone/draknfs:83
-#, c-format
-msgid "Restarting/Reloading NFS server..."
-msgstr "Starte/Lade NFS-Server neu..."
-
-#: standalone/draknfs:84
-#, c-format
-msgid "Error Restarting/Reloading NFS server"
-msgstr "Fehler beim Neustarten/Neuladen des NFS-Servers"
-
-#: standalone/draknfs:100 standalone/draksambashare:203
-#, c-format
-msgid "Directory Selection"
-msgstr "Verzeichnisauswahl"
-
-#: standalone/draknfs:105 standalone/draksambashare:208
-#, c-format
-msgid "Should be a directory."
-msgstr "Sollte ein Verzeichnis sein."
-
-#: standalone/draknfs:136
-#, c-format
-msgid ""
-"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
-"ways:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">single host:</span> a host either by an "
-"abbreviated name recognized be the resolver, fully qualified domain name, or "
-"an IP address\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">netgroups:</span> NIS netgroups may be given "
-"as @group.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">wildcards:</span> machine names may contain "
-"the wildcard characters * and ?. For instance: *.cs.foo.edu matches all "
-"hosts in the domain cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP networks:</span> you can also export "
-"directories to all hosts on an IP (sub-)network simultaneously. for example, "
-"either `/255.255.252.0' or `/22' appended to the network base address "
-"result.\n"
-msgstr ""
-"<span weight=\"bold\">NFS-Clients</span> können auf verschiedene Art und "
-"Weise angegeben werden:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Einzelrechner:</span> Ein Rechner, entweder "
-"durch einen Kurznamen angegeben, der durch die Namensauflösung erkannt wird, "
-"den vollen qualifizierten Domänennamen oder einer IP-Adresse\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Netzgruppen:</span> NIS-Netzgruppen können "
-"als @Gruppe angegeben werden.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Platzhalter:</span> Rechnernamen können die "
-"Platzhalter „*“ und „?“ enthalten. Zum Beispiel: *.cs.foo.edu entspricht "
-"allen Rechnern in der Domäne cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP-Netzwerke:</span> Sie können auch "
-"Verzeichnisse für alle Rechner eines IP-(Sub)Netzwerkes gleichzeitig "
-"freigeben. Zum Beispiel durch Anhängen von `/255.255.252.0' oder `/22' an "
-"die Netzwerk-Basis-Adresse.\n"
-
-#: standalone/draknfs:151
-#, c-format
-msgid ""
-"<span weight=\"bold\">User ID options</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map root user as anonymous:</span> map "
-"requests from uid/gid 0 to the anonymous uid/gid (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">allow real remote root access:</span> turn "
-"off root squashing. This option is mainly useful for diskless clients "
-"(no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map all users to anonymous user:</span> map "
-"all uids and gids to the anonymous user (all_squash). Useful for NFS-"
-"exported public FTP directories, news spool directories, etc. The opposite "
-"option is no user UID mapping (no_all_squash), which is the default "
-"setting.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid and anongid:</span> explicitly set "
-"the uid and gid of the anonymous account.\n"
-msgstr ""
-"<span weight=\"bold\">Benutzer-ID Optionen</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">bilde root als anonymous ab:</span> bildet "
-"Anfragen von uid/gid 0 auf die anonymous uid/gid ab (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">erlaube echten entfernten root-Zugriff:</"
-"span> schaltet root-squashing aus. Diese Einstellung ist hauptsächlich für "
-"festplattenlose Clients sinnvoll (no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">bilde alle Benutzer als anonymous ab:</span> "
-"bilde alle uids und gids auf den Benutzer anonymous ab (all_squash). "
-"Sinnvoll für den NFS-Export von öffentlichen FTP-Verzeichnissen, News-Spool-"
-"Verzeichnissen usw. Die gegenteilige Einstellung ist „no_all_squash“ und ist "
-"die Voreinstellung.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid und anongid:</span> setzt explizit "
-"die uid und gid des anonymen Kontos.\n"
-
-#: standalone/draknfs:167
-#, c-format
-msgid "Synchronous access:"
-msgstr "Gleichzeitiger Zugriff:"
-
-#: standalone/draknfs:168
-#, c-format
-msgid "Secured Connection:"
-msgstr "Gesicherte Verbindung:"
-
-#: standalone/draknfs:169
-#, c-format
-msgid "Read-Only share:"
-msgstr "Nur-Lese-Freigabe:"
-
-#: standalone/draknfs:171
-#, c-format
-msgid "<span weight=\"bold\">Advanced Options</span>"
-msgstr "<span weight=\"bold\">Fortgeschrittene Optionen</span>"
-
-#: standalone/draknfs:172
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> this option requires that "
-"requests originate on an internet port less than IPPORT_RESERVED (1024). "
-"This option is on by default."
-msgstr ""
-"<span foreground=\"royalblue3\">%s:</span> diese Option erfordert, dass "
-"Anfragen von einem Internet-Port kleiner als IPPORT_RESERVED (1024) stammen. "
-"Diese Einstellung ist standardmäßig aktiviert."
-
-#: standalone/draknfs:173
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> allow either only read or both "
-"read and write requests on this NFS volume. The default is to disallow any "
-"request which changes the filesystem. This can also be made explicit by "
-"using this option."
-msgstr ""
-"<span foreground=\"royalblue3\">%s:</span> erlaube entweder nur lesen oder "
-"sowohl lesen und schreiben auf diesem NFS-Datenträger. Die Voreinstellung "
-"ist, alle Anfragen zu verbieten, die das Dateisystem ändern. Das kann auch "
-"explizit durch Setzen dieser Auswahl eingestellt werden."
-
-#: standalone/draknfs:174
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> disallows the NFS server to "
-"violate the NFS protocol and to reply to requests before any changes made by "
-"these requests have been committed to stable storage (e.g. disc drive)."
-msgstr ""
-"<span foreground=\"royalblue3\">%s:</span> verbietet dem NFS-Server, gegen "
-"das NFS-Protokoll zu verstoßen und auf Anfragen zu antworten, bevor "
-"irgendwelche Änderungen durch diese Anfragen auf dem Datenträger (z.B. "
-"Festplatte) vorgenommen wurden."
-
-#: standalone/draknfs:306
-#, c-format
-msgid "Please add an NFS share to be able to modify it."
-msgstr "Bitte fügen Sie eine NFS-Freigabe hinzu, um sie ändern zu können."
-
-#: standalone/draknfs:378
-#, c-format
-msgid "Advanced Options Help"
-msgstr "Hilfe für fortgeschrittene Optionen"
-
-#: standalone/draknfs:389
-#, c-format
-msgid "NFS directory"
-msgstr "NFS-Verzeichnis"
-
-#: standalone/draknfs:391 standalone/draksambashare:592
-#: standalone/draksambashare:771
-#, c-format
-msgid "Directory:"
-msgstr "Verzeichnis:"
-
-#: standalone/draknfs:394
-#, c-format
-msgid "Host access"
-msgstr "Rechnerzugriff"
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Access:"
-msgstr "Zugriff:"
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Hosts Access"
-msgstr "Rechnerzugriff"
-
-#: standalone/draknfs:399
-#, c-format
-msgid "User ID Mapping"
-msgstr "Benutzer-ID-Abbildung"
-
-#: standalone/draknfs:401
-#, c-format
-msgid "User ID:"
-msgstr "Benutzer-ID:"
-
-#: standalone/draknfs:401
-#, c-format
-msgid "Help User ID"
-msgstr "Hilfe zu Benutzer-ID"
-
-#: standalone/draknfs:402
-#, c-format
-msgid "Anonymous user ID:"
-msgstr "anonyme Benutzer-ID:"
-
-#: standalone/draknfs:403
-#, c-format
-msgid "Anonymous Group ID:"
-msgstr "anonyme Gruppen-ID:"
-
-#: standalone/draknfs:444
-#, c-format
-msgid "Can't create this directory."
-msgstr "Kann dieses Verzeichnis nicht erzeugen."
-
-#: standalone/draknfs:447
-#, c-format
-msgid "You must specify hosts access."
-msgstr "Sie müssen Rechnerzugriffe einstellen."
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Share Directory"
-msgstr "Verzeichnis freigeben"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Hosts Wildcard"
-msgstr "Rechner-Paltzhalter"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "General Options"
-msgstr "Allgemeine Einstellungen"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Custom Options"
-msgstr "Spezifische Einstellungen"
-
-#: standalone/draknfs:539 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Please enter a directory to share."
-msgstr "Bitte geben Sie ein Verzeichnis zur Freigabe an."
-
-#: standalone/draknfs:546
-#, c-format
-msgid "Please use the modify button to set right access."
-msgstr ""
-"Bitte verwenden Sie den Ändern-Knopf, um den richtigen Zugriff einzustellen."
-
-#: standalone/draknfs:600
-#, c-format
-msgid "DrakNFS manage NFS shares"
-msgstr "DrakNFS NFS-Freigaben verwalten"
-
-#: standalone/draknfs:609
-#, c-format
-msgid "Failed to add NFS share."
-msgstr "Konnte NFS-Freigabe nicht hinzufügen."
-
-#: standalone/draknfs:616
-#, c-format
-msgid "Failed to Modify NFS share."
-msgstr "Konnte NFS-Freigabe nicht ändern."
-
-#: standalone/draknfs:623
-#, c-format
-msgid "Failed to remove an NFS share."
-msgstr "Konnte NFS-Freigabe nicht löschen."
-
-#: standalone/drakperm:21
-#, c-format
-msgid "System settings"
-msgstr "System Einstellungen"
-
-#: standalone/drakperm:22
-#, c-format
-msgid "Custom settings"
-msgstr "Benutzerdefinierte Einstellungen"
-
-#: standalone/drakperm:23
-#, c-format
-msgid "Custom & system settings"
-msgstr "Benutzerdefinierte & Systemeinstellungen"
-
-#: standalone/drakperm:43
-#, c-format
-msgid "Editable"
-msgstr "änderbar"
-
-#: standalone/drakperm:48 standalone/drakperm:323
-#: standalone/draksambashare:101
-#, c-format
-msgid "Path"
-msgstr "Pfad"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "User"
-msgstr "Benutzer"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "Group"
-msgstr "Gruppe"
-
-#: standalone/drakperm:48 standalone/drakperm:335
-#, c-format
-msgid "Permissions"
-msgstr "Berechtigungen"
-
-#: standalone/drakperm:57
-#, c-format
-msgid "Add a new rule"
-msgstr "Neue Regel hinzufügen"
-
-#: standalone/drakperm:64 standalone/drakperm:99 standalone/drakperm:124
-#, c-format
-msgid "Edit current rule"
-msgstr "Aktuelle Regel bearbeiten"
-
-#: standalone/drakperm:106
-#, c-format
-msgid ""
-"Here you can see files to use in order to fix permissions, owners, and "
-"groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
-msgstr ""
-"Hier sind die Dateien aufgelistet um die Berechtigungen, Eigentümer und "
-"Gruppen via msec anzupassen.\n"
-"Es können auch eigene Regeln definiert werden, die die Default Regeln "
-"überschreiben."
-
-#: standalone/drakperm:109
-#, c-format
-msgid ""
-"The current security level is %s.\n"
-"Select permissions to see/edit"
-msgstr ""
-"Die aktuelle Sicherheitsebene ist : %s\n"
-"Wählen Sie die Rechte, die Sie sehen/ändern wollen."
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Up"
-msgstr "Hoch"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Markierte Regel eine Ebene höher verschieben"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Down"
-msgstr "Runter"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Markierte Regel eine Ebene heruntersetzen"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a rule"
-msgstr "eine Regel hinzufügen"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Neue Regel am Ende hinzufügen"
-
-#: standalone/drakperm:123
-#, c-format
-msgid "Delete selected rule"
-msgstr "Markierte Regel entfernen"
-
-#: standalone/drakperm:242
-#, c-format
-msgid "browse"
-msgstr "durchsuchen"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "user"
-msgstr "Benutzer"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "group"
-msgstr "Gruppe"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "other"
-msgstr "Andere"
-
-#: standalone/drakperm:252
-#, c-format
-msgid "Read"
-msgstr "Lesen"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:255
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Aktiviere „%s“ um die Datei zu lesen"
-
-#: standalone/drakperm:259
-#, c-format
-msgid "Write"
-msgstr "Schreiben"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:262
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "„%s“ aktivieren, um die Datei zu schreiben"
-
-#: standalone/drakperm:266
-#, c-format
-msgid "Execute"
-msgstr "Ausführen"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:269
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Aktivierung von „%s“, um die Datei auszuführen"
-
-#: standalone/drakperm:272
-#, c-format
-msgid "Sticky-bit"
-msgstr "Sticky-bit"
-
-#: standalone/drakperm:272
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Für Verzeichnisse:\n"
-" nur der Besitzer des Verzeichnisses kann es oder enthaltene Dateien löschen."
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Benutzer ID zur Ausführung benutzen"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Set-GID"
-msgstr "GID setzen"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Use group id for execution"
-msgstr "Gruppen-ID zur Ausführung benutzen"
-
-#: standalone/drakperm:292 standalone/drakxtv:89
-#, c-format
-msgid "User:"
-msgstr "Benutzer :"
-
-#: standalone/drakperm:294
-#, c-format
-msgid "Group:"
-msgstr "Gruppe :"
-
-#: standalone/drakperm:298
-#, c-format
-msgid "Current user"
-msgstr "Aktueller Benutzer"
-
-#: standalone/drakperm:299
-#, c-format
-msgid "When checked, owner and group will not be changed"
-msgstr "wenn markiert, werden Eigentümer und Gruppe nicht geändert"
-
-#: standalone/drakperm:309
-#, c-format
-msgid "Path selection"
-msgstr "Pfad-Auswahl"
-
-#: standalone/drakperm:329
-#, c-format
-msgid "Property"
-msgstr "Eigenschaft"
-
-#: standalone/drakperm:380
-#, c-format
-msgid ""
-"The first character of the path must be a slash (\"/\"):\n"
-"\"%s\""
-msgstr ""
-"Das erste Zeichen des Pfades muss ein Schrägstrich sein (\"/\"):\n"
-"\"%s\""
-
-#: standalone/drakperm:390
-#, c-format
-msgid "Both the username and the group must valid!"
-msgstr "Sowohl der Benutzername als auch die Gruppe müssen gültig sein!"
-
-#: standalone/drakperm:391
-#, c-format
-msgid "User: %s"
-msgstr "Benutzer: %s"
-
-#: standalone/drakperm:392
-#, c-format
-msgid "Group: %s"
-msgstr "Gruppe: %s"
-
-#: standalone/drakroam:33
-#, c-format
-msgid ""
-"You do not have any wireless interface.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Sie haben keine kabellose Schnittstelle.\n"
-"Starten Sie den „%s“-Assistenten im Mandriva-Linux-Kontrollzentrum"
-
-#: standalone/drakroam:48
-#, c-format
-msgid "SSID"
-msgstr "SSID"
-
-#: standalone/drakroam:49
-#, c-format
-msgid "Signal strength"
-msgstr "Signalstärke:"
-
-#: standalone/drakroam:51
-#, c-format
-msgid "Encryption"
-msgstr "Verschlüsselung"
-
-#: standalone/drakroam:112
-#, c-format
-msgid "Please enter settings for wireless network \"%s\""
-msgstr "Bitte geben Sie die Einstellungen für das kabellose Netzwerk \"%s\" an"
-
-#: standalone/drakroam:123
-#, c-format
-msgid "DNS server"
-msgstr "DNS-Server"
-
-#: standalone/drakroam:228
-#, c-format
-msgid "Connect"
-msgstr "Verbinden"
-
-#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/drakroam:229 standalone/printerdrake:251
-#, c-format
-msgid "Refresh"
-msgstr "Aktualisieren"
-
-#: standalone/draksambashare:68
-#, c-format
-msgid "Share directory"
-msgstr "Verzeichnis freigeben"
-
-#: standalone/draksambashare:69 standalone/draksambashare:102
-#, c-format
-msgid "Comment"
-msgstr "Kommentar"
-
-#: standalone/draksambashare:70 standalone/draksambashare:103
-#, c-format
-msgid "Browseable"
-msgstr "Sichtbar"
-
-#: standalone/draksambashare:71
-#, c-format
-msgid "Public"
-msgstr "Öffentlich"
-
-#: standalone/draksambashare:72 standalone/draksambashare:108
-#, c-format
-msgid "Writable"
-msgstr "Schreibbar"
-
-#: standalone/draksambashare:73 standalone/draksambashare:149
-#, c-format
-msgid "Create mask"
-msgstr "Erzeugen-Maske"
-
-#: standalone/draksambashare:74 standalone/draksambashare:150
-#, c-format
-msgid "Directory mask"
-msgstr "Verzeichnis-Maske"
-
-#: standalone/draksambashare:75
-#, c-format
-msgid "Read list"
-msgstr "Leseliste"
-
-#: standalone/draksambashare:76 standalone/draksambashare:109
-#: standalone/draksambashare:606
-#, c-format
-msgid "Write list"
-msgstr "Schreibliste"
-
-#: standalone/draksambashare:77 standalone/draksambashare:141
-#, c-format
-msgid "Admin users"
-msgstr "Administratoren"
-
-#: standalone/draksambashare:78 standalone/draksambashare:142
-#, c-format
-msgid "Valid users"
-msgstr "gültige Benutzer"
-
-#: standalone/draksambashare:79
-#, c-format
-msgid "Inherit Permissions"
-msgstr "Berechtigungen erben"
-
-#: standalone/draksambashare:80 standalone/draksambashare:143
-#, c-format
-msgid "Hide dot files"
-msgstr "Verstecke Punktdateien"
-
-#: standalone/draksambashare:82 standalone/draksambashare:148
-#, c-format
-msgid "Preserve case"
-msgstr "Klein-/Großschreibung beibehalten"
-
-#: standalone/draksambashare:83
-#, c-format
-msgid "Force create mode"
-msgstr "Erzwinge Erzeugungsmodus"
-
-#: standalone/draksambashare:84
-#, c-format
-msgid "Force group"
-msgstr "Erzwinge Gruppe"
-
-#: standalone/draksambashare:85 standalone/draksambashare:147
-#, c-format
-msgid "Default case"
-msgstr "Voreinstellung"
-
-#: standalone/draksambashare:100
-#, c-format
-msgid "Printer name"
-msgstr "Druckername:"
-
-#: standalone/draksambashare:104 standalone/draksambashare:598
-#, c-format
-msgid "Printable"
-msgstr "Druckbar"
-
-#: standalone/draksambashare:105
-#, c-format
-msgid "Print Command"
-msgstr "Druckbefehl"
-
-#: standalone/draksambashare:106
-#, c-format
-msgid "LPQ command"
-msgstr "LPQ-Befehl"
-
-#: standalone/draksambashare:107
-#, c-format
-msgid "Guest ok"
-msgstr "Gast erlaubt"
-
-#: standalone/draksambashare:110 standalone/draksambashare:151
-#: standalone/draksambashare:607
-#, c-format
-msgid "Inherit permissions"
-msgstr "Berechtigungen erben"
-
-#: standalone/draksambashare:112
-#, c-format
-msgid "Create mode"
-msgstr "Erzeugungsmodus"
-
-#: standalone/draksambashare:113
-#, c-format
-msgid "Use client driver"
-msgstr "Verwende Clienttreiber"
-
-#: standalone/draksambashare:139
-#, c-format
-msgid "Read List"
-msgstr "Leseliste"
-
-#: standalone/draksambashare:140
-#, c-format
-msgid "Write List"
-msgstr "Schreibliste"
-
-#: standalone/draksambashare:145
-#, c-format
-msgid "Force Group"
-msgstr "Gruppe erzwingen"
-
-#: standalone/draksambashare:146
-#, c-format
-msgid "Force create group"
-msgstr "Erzwinge Erzeugungsgruppe"
-
-#: standalone/draksambashare:166
-#, c-format
-msgid "About Draksambashare"
-msgstr "Über Draksambashare"
-
-#: standalone/draksambashare:166
-#, c-format
-msgid ""
-"Mandriva Linux \n"
-"Release: %s\n"
-"Author: Antoine Ginies\n"
-"\n"
-"This is a simple tool to easily manage Samba configuration."
-msgstr ""
-"Mandriva Linux \n"
-"Ausgabe: %s\n"
-"Autor: Antoine Ginies\n"
-"\n"
-"Dies ist ein einfaches Werkzeug um Samba leicht zu konfigurieren."
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Samba server"
-msgstr "Samba-Server"
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Restarting/Reloading Samba server..."
-msgstr "Starte/Lade Samba-Server neu..."
-
-#: standalone/draksambashare:187
-#, c-format
-msgid "Error Restarting/Reloading Samba server"
-msgstr "Fehler beim Neustarten/Neuladen des Samba-Servers"
-
-#: standalone/draksambashare:372
-#, c-format
-msgid "Add a Samba share"
-msgstr "Samba-Freigabe hinzufügen"
-
-#: standalone/draksambashare:375
-#, c-format
-msgid "Goal of this wizard is to easily create a new Samba share."
-msgstr ""
-"Ziel dieses Assistenten ist es, eine neue Samba-Freigabe einfach zu erzeugen"
-
-#: standalone/draksambashare:377
-#, c-format
-msgid "Name of the share:"
-msgstr "Name der Freigabe :"
-
-#: standalone/draksambashare:378 standalone/draksambashare:591
-#: standalone/draksambashare:772
-#, c-format
-msgid "Comment:"
-msgstr "Kommentar:"
-
-#: standalone/draksambashare:379
-#, c-format
-msgid "Path:"
-msgstr "Pfad:"
-
-#: standalone/draksambashare:384
-#, c-format
-msgid ""
-"Share with the same name already exist or share name empty, please choose "
-"another name."
-msgstr ""
-"Eine Freigabe mit dem gleichen Namen existiert bereits oder der Name der "
-"Freigabe ist leer. Bitte wählen Sie einen anderen Namen."
-
-#: standalone/draksambashare:388 standalone/draksambashare:394
-#, c-format
-msgid "Can't create the directory, please enter a correct path."
-msgstr ""
-"Kann das Verzeichnis nicht erzeugen, bitte geben Sie einen korrekten Pfad "
-"ein."
-
-#: standalone/draksambashare:391 standalone/draksambashare:627
-#: standalone/draksambashare:794
-#, c-format
-msgid "Please enter a Comment for this share."
-msgstr "Bitte geben Sie einen Kommentar zu dieser Freigabe an."
-
-#: standalone/draksambashare:422
-#, c-format
-msgid ""
-"The wizard successfully added the Samba share. Now just double click on it "
-"in treeview to modify it"
-msgstr ""
-"Der Assistent hat die Samba-Freigabe erfolgreich hinzugefügt. Jetzt kann sie "
-"durch Doppelklick in der Baumansicht verändert werden."
-
-#: standalone/draksambashare:437
-#, c-format
-msgid "pdf-gen - a PDF generator"
-msgstr "pdf-gen - ein PDF-Erzeuger"
-
-#: standalone/draksambashare:438
+#: timezone.pm:148 timezone.pm:149
#, c-format
-msgid "printers - all printers available"
-msgstr "Drucker - alle verfügbaren Drucker"
+msgid "All servers"
+msgstr "Alle Server"
-#: standalone/draksambashare:442
+#: timezone.pm:183
#, c-format
-msgid "Add Special Printer share"
-msgstr "Füge spezielle Druckerfreigabe hinzu"
+msgid "Global"
+msgstr "Global"
-#: standalone/draksambashare:445
+#: timezone.pm:186
#, c-format
-msgid ""
-"Goal of this wizard is to easily create a new special printer Samba share."
-msgstr ""
-"Ziel dieses Assistenten ist es, eine neue spezielle Samba-Druckerfreigabe "
-"einfach zu erzeugen."
-
-#: standalone/draksambashare:453
-#, c-format
-msgid "A PDF generator already exists."
-msgstr "Ein PDF-Erzeuger existiert bereits."
-
-#: standalone/draksambashare:477
-#, c-format
-msgid "Printers and print$ already exist."
-msgstr "Drucker und Druck$ sind bereits vorhanden."
-
-#: standalone/draksambashare:528
-#, c-format
-msgid "The wizard successfully added the printer Samba share"
-msgstr "Der Assistent hat die Samba-Druckfreigabe erfolgreich hinzugefügt"
-
-#: standalone/draksambashare:551
-#, c-format
-msgid "Please add or select a Samba printer share to be able to modify it."
-msgstr ""
-"Bitte fügen Sie einen Samba-Drucker hinzu oder wählen Sie einen aus, um ihn "
-"anpassen zu können."
-
-#: standalone/draksambashare:587
-#, c-format
-msgid "Printer share"
-msgstr "Druckerfreigabe"
-
-#: standalone/draksambashare:590
-#, c-format
-msgid "Printer name:"
-msgstr "Druckername:"
-
-#: standalone/draksambashare:596 standalone/draksambashare:777
-#, c-format
-msgid "Writable:"
-msgstr "Schreibbar :"
-
-#: standalone/draksambashare:597 standalone/draksambashare:778
-#, c-format
-msgid "Browseable:"
-msgstr "Sichtbar :"
-
-#: standalone/draksambashare:602
-#, c-format
-msgid "Advanced options"
-msgstr "Erweiterte Einstellungen"
-
-#: standalone/draksambashare:604
-#, c-format
-msgid "Printer access"
-msgstr "Druckerzugriff"
-
-#: standalone/draksambashare:608
-#, c-format
-msgid "Guest ok:"
-msgstr "Gast erlaubt"
-
-#: standalone/draksambashare:609
-#, c-format
-msgid "Create mode:"
-msgstr "Erzeugungsmodus"
-
-#: standalone/draksambashare:613
-#, c-format
-msgid "Printer command"
-msgstr "Druckbefehl"
-
-#: standalone/draksambashare:615
-#, c-format
-msgid "Print command:"
-msgstr "Druckbefehl:"
-
-#: standalone/draksambashare:616
-#, c-format
-msgid "LPQ command:"
-msgstr "LPQ-Befehl:"
-
-#: standalone/draksambashare:617
-#, c-format
-msgid "Printing:"
-msgstr "Drucken:"
-
-#: standalone/draksambashare:633
-#, c-format
-msgid "create mode should be numeric. ie: 0755."
-msgstr "Erzeugungsmodus muss numerisch sein (z.B. 0755)."
-
-#: standalone/draksambashare:695
-#, c-format
-msgid "DrakSamba entry"
-msgstr "DrakSamba-Eintrag"
-
-#: standalone/draksambashare:700
-#, c-format
-msgid "Please add or select a Samba share to be able to modify it."
-msgstr ""
-"Bitte fügen Sie eine Samba-Freigabe hinzu oder wählen Sie ein aus, um sie "
-"ändern zu können."
-
-#: standalone/draksambashare:723
-#, c-format
-msgid "Samba user access"
-msgstr "Samba Benutzerzugriff"
-
-#: standalone/draksambashare:731
-#, c-format
-msgid "Mask options"
-msgstr "Maskenoptionen"
-
-#: standalone/draksambashare:745
-#, c-format
-msgid "Display options"
-msgstr "Einstellungen für die Anzeige:"
-
-#: standalone/draksambashare:767
-#, c-format
-msgid "Samba share directory"
-msgstr "Samba-Verzeichnisfreigabe"
-
-#: standalone/draksambashare:770
-#, c-format
-msgid "Share name:"
-msgstr "Freigabename :"
-
-#: standalone/draksambashare:776
-#, c-format
-msgid "Public:"
-msgstr "Öffentlich :"
-
-#: standalone/draksambashare:800
-#, c-format
-msgid ""
-"Create mask, create mode and directory mask should be numeric. ie: 0755."
-msgstr ""
-"Erzeugungsmaske, Erzeugungsmodus und Verzeichnismaske müssen numerisch sein "
-"(z.B. 0755)."
-
-#: standalone/draksambashare:807
-#, c-format
-msgid "Please create this Samba user: %s"
-msgstr "Bitte legen Sie diesen Samba-Benutzer an: %s"
-
-#: standalone/draksambashare:930
-#, c-format
-msgid "User information"
-msgstr "Benutzer-Informationen"
-
-#: standalone/draksambashare:932
-#, c-format
-msgid "User name:"
-msgstr "Benutzername:"
-
-#: standalone/draksambashare:933
-#, c-format
-msgid "Password:"
-msgstr "Passwort:"
-
-#: standalone/draksambashare:1133
-#, c-format
-msgid "Failed to add Samba share."
-msgstr "Konnte Samba-Freigabe nicht hinzufügen."
-
-#: standalone/draksambashare:1142
-#, c-format
-msgid "Failed to Modify Samba share."
-msgstr "Konnte Samba-Freigabe nicht ändern."
-
-#: standalone/draksambashare:1151
-#, c-format
-msgid "Failed to remove a Samba share."
-msgstr "Konnte Samba-Freigabe nicht löschen."
-
-#: standalone/draksambashare:1158
-#, c-format
-msgid "File share"
-msgstr "Dateifreigabe"
-
-#: standalone/draksambashare:1166
-#, c-format
-msgid "Add printers"
-msgstr "Drucker hinzufügen"
-
-#: standalone/draksambashare:1172
-#, c-format
-msgid "Failed to add printers."
-msgstr "Konnte Drucker nicht hinzufügen"
-
-#: standalone/draksambashare:1181
-#, c-format
-msgid "Failed to Modify."
-msgstr "Konnte nicht verändern."
-
-#: standalone/draksambashare:1190
-#, c-format
-msgid "Failed to remove."
-msgstr "Konnte nicht löschen."
-
-#: standalone/draksambashare:1197
-#, c-format
-msgid "Printers"
-msgstr "Drucker"
-
-#: standalone/draksambashare:1205
-#, c-format
-msgid "Change password"
-msgstr "Passwort ändern"
-
-#: standalone/draksambashare:1210
-#, c-format
-msgid "Failed to change user password."
-msgstr "Konnte Benutzerpasswort nicht ändern."
-
-#: standalone/draksambashare:1218
-#, c-format
-msgid "Failed to add user."
-msgstr "Konnte Benutzer nicht hinzufügen."
-
-#: standalone/draksambashare:1221
-#, c-format
-msgid "Delete user"
-msgstr "Benutzer löschen"
-
-#: standalone/draksambashare:1230
-#, c-format
-msgid "Failed to delete user."
-msgstr "Konnte Benutzer nicht löschen."
-
-#: standalone/draksambashare:1242
-#, c-format
-msgid "Samba Users"
-msgstr "Samba-Benutzer"
-
-#: standalone/draksambashare:1251
-#, c-format
-msgid "DrakSamba manage Samba shares"
-msgstr "DrakSamba verwaltet Samba-Freigaben"
-
-#: standalone/draksec:49
-#, c-format
-msgid "ALL"
-msgstr "Alle"
-
-#: standalone/draksec:50
-#, c-format
-msgid "LOCAL"
-msgstr "LOKAL"
-
-#: standalone/draksec:51
-#, c-format
-msgid "NONE"
-msgstr "KEINER"
-
-#: standalone/draksec:53 standalone/net_applet:480
-#, c-format
-msgid "Ignore"
-msgstr "Ignorieren"
-
-#. -PO: Do not alter the <span ..> and </span> tags.
-#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
-#: standalone/draksec:103
-#, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Administrator</span>' is the one who "
-"will receive security alerts if the\n"
-"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a "
-"username or an email.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Level</span>' menu allows you to select "
-"one of the six preconfigured security levels\n"
-"provided with msec. These levels range from '<span weight=\"bold\">poor</"
-"span>' security and ease of use, to\n"
-"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive "
-"server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
-"very\n"
-"easy to use security level. It should only be used for machines not "
-"connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
-"security\n"
-"recommended for a computer that will be used to connect to the Internet as "
-"a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
-"enough\n"
-"to use the system as a server which can accept connections from many "
-"clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower "
-"level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-"Hier können Sie die Sicherheitstsebene und den Administrator ihres Computers "
-"festlegen\n"
-"\n"
-"\n"
-"Der „<span weight=\"bold\">Sicherheits Administrator</span>“ ist derjenige, "
-"der Sicherheitswarnungen erhält, wenn die „<span weight=\"bold"
-"\">Sicherheitswarnungen</span>“-Option ausgewählt wurde. Das kann in Form "
-"eines\n"
-"Benutzernamens oder einer Emailadresse festgelegt werden.\n"
-"\n"
-"\n"
-"Das Menü „<span weight=\"bold\">Sicherheitsebene</span>“ gibt Ihnen die Wahl "
-"zwischen sechs vordefinierten Sicherheitsebenen\n"
-"Diese Stufen reichen von „<span weight=\"bold\">schwacher</span>“ Sicherheit "
-"und einfacher Benutzung, bis „<span weight=\"bold\">paranoider</span>“ "
-"Einstellung, passend für sensible Server Anwendungen:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Schwach</span>: Dies ist eine total "
-"unsichere, aber einfach\n"
-"zu nutzende Sicherheitsebene. Sie sollte nur für Rechner verwendet werden, "
-"die nicht mit einem\n"
-"Netzwerk verbunden sind und auf die nicht jeder Zugriff hat.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: Dies ist die Standard "
-"Sicherheitsebene\n"
-"empfohlen für Rechner, die als Client mit dem Internet verbunden\n"
-"sind.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Hoch</span>: Hier gibt es bereits ein paar\n"
-"Einschränkungen, und mehr automatische Überprüfungen laufen jede Nacht.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Höher</span>: Die Sicherheit ist jetzt hoch "
-"genug \n"
-"um das System als Server zu nutzen, der Verbindungen zu vielen Clients "
-"akzeptiert. Wenn\n"
-"Ihr Rechner nur als Client im Internet ist, sollten Sie eine niedrigere "
-"Stufe wählen.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: Diese Einstellung ähnelt "
-"der vorherigen \n"
-"Ebene, aber das System ist vollständig abgeschlossen und die "
-"Sicherheitsregeln\n"
-"sind auf Maximum"
-
-#: standalone/draksec:156 standalone/harddrake2:207
-#, c-format
-msgid ""
-"Description of the fields:\n"
-"\n"
-msgstr ""
-"Beschreibung der Felder:\n"
-"\n"
-
-#: standalone/draksec:170
-#, c-format
-msgid "(default value: %s)"
-msgstr " (Voreinstellung: %s)"
-
-#: standalone/draksec:212
-#, c-format
-msgid "Security Level:"
-msgstr "Sicherheitsebene:"
-
-#: standalone/draksec:219
-#, c-format
-msgid "Security Administrator:"
-msgstr "Sicherheitsadministrator (Benutzername oder E-Mail):"
-
-#: standalone/draksec:221
-#, c-format
-msgid "Basic options"
-msgstr "grundlegende Optionen"
-
-#: standalone/draksec:235
-#, c-format
-msgid "Network Options"
-msgstr "Netzwerkoptionen"
-
-#: standalone/draksec:235
-#, c-format
-msgid "System Options"
-msgstr "Systemoptionen"
-
-#: standalone/draksec:270
-#, c-format
-msgid "Periodic Checks"
-msgstr "Periodische Checks"
-
-#: standalone/draksec:300
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Bitte warten, Sicherheitsebene wird eingestellt..."
-
-#: standalone/draksec:306
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Bitte warten, Sicherheitsoptionen werden eingestellt..."
-
-#: standalone/draksound:47
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Keine Soundkarte erkannt!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/draksound:50
-#, c-format
-msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"Auf Ihrem System wurde keine Soundkarte gefunden. Bitte stellen Sie sicher, "
-"daß\n"
-"eine Soundkarte korrekt installiert ist und diese Linux unterstützt.\n"
-"\n"
-"\n"
-"Sie können unsere Hardware-Datenbank einsehen unter:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/draksound:57
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or "
-"the sndconfig program. Just type \"alsaconf\" or \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Hinweis: Wenn Sie eine ISA PnP Sound-Karte haben, müssen Sie das Programm "
-"„sndconfig“ oder „alsaconf“ verwenden. Einfach in einer Konsole „sndconfig“ "
-"oder „alsaconf“ eingeben."
-
-#: standalone/draksplash:30
-#, c-format
-msgid "x coordinate of text box"
-msgstr "x-Koordinate der Textbox"
-
-#: standalone/draksplash:31
-#, c-format
-msgid "y coordinate of text box"
-msgstr "y-Koordinate der Textbox"
-
-#: standalone/draksplash:32
-#, c-format
-msgid "text box width"
-msgstr "Textboxbreite"
-
-#: standalone/draksplash:33
-#, c-format
-msgid "text box height"
-msgstr "Höhe des Textfelds"
-
-#: standalone/draksplash:34
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"Linke obere Ecke des\n"
-"Fortschrittsbalkens"
-
-#: standalone/draksplash:35
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-"y-Koordinate der oberen linken Ecke\n"
-"der Fortschrittsanzeige"
-
-#: standalone/draksplash:36
-#, c-format
-msgid "the width of the progress bar"
-msgstr "Die Breite des Fortschrittbalkens"
-
-#: standalone/draksplash:37
-#, c-format
-msgid "the height of the progress bar"
-msgstr "Die Höhe des Fortschrittbalkens"
-
-#: standalone/draksplash:38
-#, c-format
-msgid "x coordinate of the text"
-msgstr "x-Koordinate des Textes"
-
-#: standalone/draksplash:39
-#, c-format
-msgid "y coordinate of the text"
-msgstr "y-Koordinate des Textes"
-
-#: standalone/draksplash:40
-#, c-format
-msgid "text box transparency"
-msgstr "Textbox-Transparenz"
-
-#: standalone/draksplash:41
-#, c-format
-msgid "progress box transparency"
-msgstr "Fortschrittsbox-Transparenz"
-
-#: standalone/draksplash:42
-#, c-format
-msgid "text size"
-msgstr "Textgröße"
-
-#: standalone/draksplash:59
-#, c-format
-msgid "Choose progress bar color 1"
-msgstr "Wählen Sie die Farbe 1 des Fortschrittsbalkens"
-
-#: standalone/draksplash:60
-#, c-format
-msgid "Choose progress bar color 2"
-msgstr "Wählen Sie die Farbe 1 des Fortschrittsbalkens"
-
-#: standalone/draksplash:61
-#, c-format
-msgid "Choose progress bar background"
-msgstr "Wählen Sie die Hintergrundfarbe des Fortschrittsbalkens"
-
-#: standalone/draksplash:62
-#, c-format
-msgid "Gradient type"
-msgstr "Gradienttyp"
-
-#: standalone/draksplash:63
-#, c-format
-msgid "Choose text color"
-msgstr "Wählen Sie die Textfarbe"
-
-#: standalone/draksplash:65 standalone/draksplash:72
-#, c-format
-msgid "Choose picture"
-msgstr "Wählen Sie ein Bild"
-
-#: standalone/draksplash:66
-#, c-format
-msgid "Silent bootsplash"
-msgstr "Stiller Bootsplash"
-
-#: standalone/draksplash:69
-#, c-format
-msgid "Choose text zone color"
-msgstr "Wählen Sie die Farbe des Textfeldes"
-
-#: standalone/draksplash:70
-#, c-format
-msgid "Text color"
-msgstr "Textfarbe"
-
-#: standalone/draksplash:71
-#, c-format
-msgid "Background color"
-msgstr "Hintergrundfarbe"
-
-#: standalone/draksplash:73
-#, c-format
-msgid "Verbose bootsplash"
-msgstr "Ausführlicher Bootsplash"
-
-#: standalone/draksplash:75
-#, c-format
-msgid "Display logo on Console"
-msgstr "Logo auf Konsole anzeigen"
-
-#: standalone/draksplash:78
-#, c-format
-msgid "Console bootsplash"
-msgstr "Konsole-Bootsplash"
-
-#: standalone/draksplash:84
-#, c-format
-msgid "Theme name"
-msgstr "Design-Name"
-
-#: standalone/draksplash:87
-#, c-format
-msgid "final resolution"
-msgstr "endgültige Auflösung"
-
-#: standalone/draksplash:92
-#, c-format
-msgid "Save theme"
-msgstr "Design speichern"
-
-#: standalone/draksplash:153
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "Sichere das Bootsplash-Design..."
-
-#: standalone/draksplash:162
-#, c-format
-msgid "Unable to load image file %s"
-msgstr "Konnte Abbild-Datei %s nicht laden"
-
-#: standalone/draksplash:173
-#, c-format
-msgid "choose image"
-msgstr "Image-Datei auswählen"
-
-#: standalone/draksplash:188
-#, c-format
-msgid "Color selection"
-msgstr "Farbauswahl"
-
-#: standalone/drakups:71
-#, c-format
-msgid "Connected through a serial port or an usb cable"
-msgstr "Verbindung über eine serielle Verbindung oder ein USB-Kabel"
-
-#: standalone/drakups:78
-#, c-format
-msgid "Add an UPS device"
-msgstr "Ein USV-Gerät hinzufügen"
-
-#: standalone/drakups:81
-#, c-format
-msgid ""
-"Welcome to the UPS configuration utility.\n"
-"\n"
-"Here, you'll add a new UPS to your system.\n"
-msgstr ""
-"Herzlich Willkommen im USV-Einrichtungsassistenten.\n"
-"\n"
-"Hier können Sie ein neues USV-Gerät zu System hinzufügen.\n"
-
-#: standalone/drakups:88
-#, c-format
-msgid ""
-"We're going to add an UPS device.\n"
-"\n"
-"Do you want to autodetect UPS devices connected to this machine or to "
-"manually select them?"
-msgstr ""
-"Wir werden nun ein USV-Gerät hinzufügen.\n"
-"\n"
-"Möchten Sie nun angeschlossene USV-Geräte automatisch erkennen lassen?"
-
-#: standalone/drakups:91
-#, c-format
-msgid "Autodetection"
-msgstr "Automatische Erkennung"
-
-#: standalone/drakups:99 standalone/harddrake2:375
-#, c-format
-msgid "Detection in progress"
-msgstr "Erkennung läuft"
-
-#: standalone/drakups:119
-#, c-format
-msgid "The wizard successfully added the following UPS devices:"
-msgstr "Der Assistent hat die folgenden USV-Geräte erfolgreich eingerichtet:"
-
-#: standalone/drakups:121
-#, c-format
-msgid "No new UPS devices was found"
-msgstr "Keine neuen USV Geräte gefunden."
-
-#: standalone/drakups:126 standalone/drakups:138
-#, c-format
-msgid "UPS driver configuration"
-msgstr "USV-Treiber-Konfiguration"
-
-#: standalone/drakups:126
-#, c-format
-msgid "Please select your UPS model."
-msgstr "Bitte wählen Sie ihr USV-Modell."
-
-#: standalone/drakups:127
-#, c-format
-msgid "Manufacturer / Model:"
-msgstr "Hersteller / Modell:"
-
-#: standalone/drakups:138
-#, c-format
-msgid ""
-"We are configuring the \"%s\" UPS from \"%s\".\n"
-"Please fill in its name, its driver and its port."
-msgstr ""
-"Wir richten die „%s“-USV von „%s“ ein.\n"
-"Bitte tragen Sie Namen, Treiber und Port ein."
-
-#: standalone/drakups:143
-#, c-format
-msgid "Name:"
-msgstr "Name: "
-
-#: standalone/drakups:143
-#, c-format
-msgid "The name of your ups"
-msgstr "Der Name Ihrer USV"
-
-#: standalone/drakups:144
-#, c-format
-msgid "The driver that manages your ups"
-msgstr "Der Treiber, der Ihre USV verwaltet"
-
-#: standalone/drakups:145
-#, c-format
-msgid "Port:"
-msgstr "Port:"
-
-#: standalone/drakups:147
-#, c-format
-msgid "The port on which is connected your ups"
-msgstr "Der Port, an dem Ihr USV-Gerät angeschlossen ist"
-
-#: standalone/drakups:157
-#, c-format
-msgid "The wizard successfully configured the new \"%s\" UPS device."
-msgstr "Der Assistent hat das USV-Gerät „%s“ erfolgreich konfiguriert."
-
-#: standalone/drakups:248
-#, c-format
-msgid "UPS devices"
-msgstr "USV-Geräte"
-
-#: standalone/drakups:249 standalone/drakups:268 standalone/drakups:284
-#: standalone/harddrake2:85 standalone/harddrake2:111
-#: standalone/harddrake2:118
-#, c-format
-msgid "Name"
-msgstr "Name"
+msgid "Africa"
+msgstr "Afrika"
-#: standalone/drakups:267
+#: timezone.pm:187
#, c-format
-msgid "UPS users"
-msgstr "USV-Benutzer"
+msgid "Asia"
+msgstr "Asien"
-#: standalone/drakups:283
+#: timezone.pm:188
#, c-format
-msgid "Access Control Lists"
-msgstr "Zugriffskontrolllisten (ACLs)"
+msgid "Europe"
+msgstr "Europe"
-#: standalone/drakups:284
+#: timezone.pm:189
#, c-format
-msgid "IP mask"
-msgstr "IP-Maske"
+msgid "North America"
+msgstr "Nordamerika"
-#: standalone/drakups:296
+#: timezone.pm:190
#, c-format
-msgid "Rules"
-msgstr "Regeln"
+msgid "Oceania"
+msgstr "Ozeanien"
-#: standalone/drakups:297
+#: timezone.pm:191
#, c-format
-msgid "Action"
-msgstr "Aktion"
+msgid "South America"
+msgstr "Südamerika"
-#: standalone/drakups:297 standalone/drakvpn:1132 standalone/harddrake2:82
+#: timezone.pm:200
#, c-format
-msgid "Level"
-msgstr "Ebene"
-
-#: standalone/drakups:297
-#, c-format
-msgid "ACL name"
-msgstr "ACL-Name"
-
-#: standalone/drakups:327 standalone/drakups:331 standalone/drakups:340
-#, c-format
-msgid "DrakUPS"
-msgstr "DrakUSV"
-
-#: standalone/drakups:337
-#, c-format
-msgid "Welcome to the UPS configuration tools"
-msgstr "Willkommen im USV-Konfigurationsprogramm"
-
-#: standalone/drakvpn:73
-#, c-format
-msgid "DrakVPN"
-msgstr "DrakVPN"
-
-#: standalone/drakvpn:95
-#, c-format
-msgid "The VPN connection is enabled."
-msgstr "Die VPN-Verbindung ist aktiviert."
-
-#: standalone/drakvpn:96
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Es wurde bereits eine VPN-Verbindung eingerichtet.\n"
-"\n"
-"Momentan ist sie aktiviert.\n"
-"\n"
-"Was möchten Sie tun?"
-
-#: standalone/drakvpn:101
-#, c-format
-msgid "disable"
-msgstr "deaktivieren"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127
-#, c-format
-msgid "reconfigure"
-msgstr "neu konfigurieren"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127 standalone/drakvpn:362
-#: standalone/drakvpn:721
-#, c-format
-msgid "dismiss"
-msgstr "Verwerfen"
-
-#: standalone/drakvpn:105
-#, c-format
-msgid "Disabling VPN..."
-msgstr "Deaktiviere VPN ..."
-
-#: standalone/drakvpn:114
-#, c-format
-msgid "The VPN connection is now disabled."
-msgstr "Die VPN-Verbindung ist nun deaktiviert."
-
-#: standalone/drakvpn:121
-#, c-format
-msgid "VPN connection currently disabled"
-msgstr "Die VPN-Verbindung ist momentan deaktiviert."
-
-#: standalone/drakvpn:122
-#, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Die Einrichtung einer VPN-Verbindung wurde bereits durchgeführt.\n"
-"\n"
-"Momentan ist sie deaktiviert.\n"
-"\n"
-"Was möchten Sie tun?"
-
-#: standalone/drakvpn:127
-#, c-format
-msgid "enable"
-msgstr "aktivieren"
-
-#: standalone/drakvpn:135
-#, c-format
-msgid "Enabling VPN..."
-msgstr "Aktiviere VPN..."
-
-#: standalone/drakvpn:141
-#, c-format
-msgid "The VPN connection is now enabled."
-msgstr "Die VPN-Verbindung ist nun aktiviert."
-
-#: standalone/drakvpn:155 standalone/drakvpn:183
-#, c-format
-msgid "Simple VPN setup."
-msgstr "Einfaches VPN-Setup."
-
-#: standalone/drakvpn:156
-#, c-format
-msgid ""
-"You are about to configure your computer to use a VPN connection.\n"
-"\n"
-"With this feature, computers on your local private network and computers\n"
-"on some other remote private networks, can share resources, through\n"
-"their respective firewalls, over the Internet, in a secure manner. \n"
-"\n"
-"The communication over the Internet is encrypted. The local and remote\n"
-"computers look as if they were on the same network.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using\n"
-"drakconnect before going any further."
-msgstr ""
-"Sie sind dabei, eine VPN-Verbindung auf Ihrem Rechner einzurichten.\n"
-"\n"
-"Mit dieser Funktion können Rechner aus dem privaten, lokalen Netzwerk und "
-"Rechner\n"
-"aus anderen privaten, entfernten Netzwerken auf sichere Weise Resourcen "
-"durch \n"
-"Firewalls und über das Internet hinweg teilen.\n"
-"\n"
-"Die Verbindung über das Internet ist verschlüsselt. Es sieht aus, als ob "
-"sich die lokalen\n"
-"entfernten Rechner in gleichen Netzwerk befänden.\n"
-"\n"
-"Bevor Sie weiter machen stellen Sie sicher, dass Sie Ihren Netzwerk- und "
-"Internet-Zugang\n"
-"mit DrakConnect eingerichtet haben."
-
-#: standalone/drakvpn:184
-#, c-format
-msgid ""
-"VPN connection.\n"
-"\n"
-"This program is based on the following projects:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - the docs and man pages coming with the %s package\n"
-"\n"
-"Please read AT LEAST the ipsec-howto docs\n"
-"before going any further."
-msgstr ""
-"VPN-Verbindung.\n"
-"\n"
-"Das Programm basiert auf den folgenden Projekten:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-HowTo: \t\thttp://www.ipsec-howto.org\n"
-" - den Dokumentationen, die mit dem Paket %s kommen\n"
-"\n"
-"Bitte lesen Sie MINDESTENS die ipsec-HowTo-Dokumentation\n"
-"bevor Sie weitermachen."
-
-#: standalone/drakvpn:196
-#, c-format
-msgid "Kernel module."
-msgstr "Kernel-Modul."
-
-#: standalone/drakvpn:197
-#, c-format
-msgid ""
-"The kernel needs to have ipsec support.\n"
-"\n"
-"You're running a %s kernel version.\n"
-"\n"
-"This kernel has '%s' support."
-msgstr ""
-"Der Kernel muss IPsec-Unterstützung haben.\n"
-"\n"
-"Sie arbeiten mit Kernelversion %s.\n"
-"\n"
-"Dieser Kernel hat „%s“-Unterstützung."
-
-#: standalone/drakvpn:264
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Probleme beim Installieren von Paket %s"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "Security Policies"
-msgstr "Sicherheitsregeln:"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "IKE daemon racoon"
-msgstr "IKE-Daemon racoon"
-
-#: standalone/drakvpn:281 standalone/drakvpn:292
-#, c-format
-msgid "Configuration file"
-msgstr "Konfigurationsdatei"
-
-#: standalone/drakvpn:282
-#, c-format
-msgid ""
-"Configuration step!\n"
-"\n"
-"You need to define the Security Policies and then to \n"
-"configure the automatic key exchange (IKE) daemon. \n"
-"The KAME IKE daemon we're using is called 'racoon'.\n"
-"\n"
-"What would you like to configure?\n"
-msgstr ""
-"Einrichtungsschritt !\n"
-"\n"
-"Sie müssen Sicherheitsregeln definieren und danach den\n"
-"automatischen Schlüsselaustausch-Dienst (IKE) einrichten.\n"
-"Der KAME-IKE, den wir verwenden heißt „racoon“.\n"
-"\n"
-"Was möchten Sie einrichten?\n"
-
-#: standalone/drakvpn:293
-#, c-format
-msgid ""
-"Next, we will configure the %s file.\n"
-"\n"
-"\n"
-"Simply click on Next.\n"
-msgstr ""
-"Als nächstes richten wir die %s-Datei ein.\n"
-"\n"
-"\n"
-"Klicken Sie einfach auf Weiter.\n"
-
-#: standalone/drakvpn:311 standalone/drakvpn:671
-#, c-format
-msgid "%s entries"
-msgstr "%s Einträge"
-
-#: standalone/drakvpn:312
-#, c-format
-msgid ""
-"The %s file contents\n"
-"is divided into sections.\n"
-"\n"
-"You can now:\n"
-"\n"
-" - display, add, edit, or remove sections, then\n"
-" - commit the changes\n"
-"\n"
-"What would you like to do?\n"
-msgstr ""
-"Die %s-Datei-Inhalte\n"
-"sind in Sektionen unterteilt.\n"
-"\n"
-"Sie können nun:\n"
-"\n"
-" - Sektionen anzeigen, hinzufügen, bearbeiten oder enfernen, dann\n"
-" - die Änderungen übertragen\n"
-"\n"
-"Was möchten Sie tun?\n"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display"
-msgstr "Darstellen"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid "Commit"
-msgstr "Festlegen"
-
-#: standalone/drakvpn:333 standalone/drakvpn:337 standalone/drakvpn:695
-#: standalone/drakvpn:699
-#, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display configuration"
-msgstr "Konfiguration anzeigen"
-
-#: standalone/drakvpn:338
-#, c-format
-msgid ""
-"The %s file does not exist.\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose 'add'.\n"
-msgstr ""
-"Die %s-Datei existiert nicht.\n"
-"\n"
-"Es handelt sich wohl um eine neue Konfiguration.\n"
-"\n"
-"Sie müssen zurück gehen und „hinzufügen“ wählen.\n"
-
-#: standalone/drakvpn:354
-#, c-format
-msgid "ipsec.conf entries"
-msgstr "ipsec.conf-Einträge"
-
-#: standalone/drakvpn:355
-#, c-format
-msgid ""
-"The %s file contains different sections.\n"
-"\n"
-"Here is its skeleton:\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"You can now add one of these sections.\n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-"Die Datei %s enhält verschiedene Sektionen.\n"
-"\n"
-"Hier ist das Gerüst :\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"Sie können nun eine dieser Sektionen hinzufügen.\n"
-"\n"
-"Wählen Sie die Sektion, die Sie hinzufügen wollen.\n"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "config setup"
-msgstr "Einrichtung konfigurieren"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "conn %default"
-msgstr "conn %default"
-
-#: standalone/drakvpn:362
-#, c-format
-msgid "normal conn"
-msgstr "normale Verbindung"
-
-#: standalone/drakvpn:368 standalone/drakvpn:409 standalone/drakvpn:496
-#, c-format
-msgid "Exists!"
-msgstr "Existiert !"
-
-#: standalone/drakvpn:369 standalone/drakvpn:410
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change its name.\n"
-msgstr ""
-"Eine Sektion mit diesem Namen existiert bereits.\n"
-"Die Sektionsnamen müssen einzigartig sein.\n"
-"\n"
-"Sie müssen zurück gehen und eine andere Sektion hinzufügen,\n"
-"oder den Namen ändern.\n"
-
-#: standalone/drakvpn:386
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow this config\n"
-"setup section.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Diese Sektion muss am Anfang Ihrer\n"
-"%s-Datei stehen.\n"
-"\n"
-"Stellen Sie sicher, dass alle anderen Sektionen dieser\n"
-"Konfigurationssetup-Sektion folgen.\n"
-"\n"
-"Wählen Sie Weiter oder Vorher wenn Sie fertig sind.\n"
-
-#: standalone/drakvpn:391
-#, c-format
-msgid "interfaces"
-msgstr "Schnittstellen"
-
-#: standalone/drakvpn:392
-#, c-format
-msgid "klipsdebug"
-msgstr "klipsdebug"
-
-#: standalone/drakvpn:393
-#, c-format
-msgid "plutodebug"
-msgstr "plutodebug"
-
-#: standalone/drakvpn:394
-#, c-format
-msgid "plutoload"
-msgstr "plutoload"
-
-#: standalone/drakvpn:395
-#, c-format
-msgid "plutostart"
-msgstr "plutostart"
-
-#: standalone/drakvpn:396
-#, c-format
-msgid "uniqueids"
-msgstr "uniqueids"
-
-#: standalone/drakvpn:430
-#, c-format
-msgid ""
-"This is the first section after the config\n"
-"setup one.\n"
-"\n"
-"Here you define the default settings. \n"
-"All the other sections will follow this one.\n"
-"The left settings are optional. If do not define\n"
-"them here, globally, you can define them in each\n"
-"section.\n"
-msgstr ""
-"Dies ist die erste Sektion nach der\n"
-"Konfigurationsetup-Sektion.\n"
-"\n"
-"Hier richten Sie die Standardeinstellungen ein.\n"
-"Alle weiteren Sektionen folgen dieser Sektion.\n"
-"Die verbleibenden Einstellungen sind optional. Wenn\n"
-"Sie sie hier nicht global einrichten können Sie diese\n"
-"in den einzelnen Sektionen einrichten.\n"
-
-#: standalone/drakvpn:437
-#, c-format
-msgid "PFS"
-msgstr "PFS"
-
-#: standalone/drakvpn:438
-#, c-format
-msgid "keyingtries"
-msgstr "keyingtries"
-
-#: standalone/drakvpn:439
-#, c-format
-msgid "compress"
-msgstr "compress"
-
-#: standalone/drakvpn:440
-#, c-format
-msgid "disablearrivalcheck"
-msgstr "disablearrivalcheck"
-
-#: standalone/drakvpn:441 standalone/drakvpn:480
-#, c-format
-msgid "left"
-msgstr "left"
-
-#: standalone/drakvpn:442 standalone/drakvpn:481
-#, c-format
-msgid "leftcert"
-msgstr "leftcert"
-
-#: standalone/drakvpn:443 standalone/drakvpn:482
-#, c-format
-msgid "leftrsasigkey"
-msgstr "leftrsasigkey"
-
-#: standalone/drakvpn:444 standalone/drakvpn:483
-#, c-format
-msgid "leftsubnet"
-msgstr "leftsubnet"
-
-#: standalone/drakvpn:445 standalone/drakvpn:484
-#, c-format
-msgid "leftnexthop"
-msgstr "leftnexthop"
-
-#: standalone/drakvpn:474
-#, c-format
-msgid ""
-"Your %s file has several sections, or connections.\n"
-"\n"
-"You can now add a new section.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Ihre %s-Datei hat verschiedene Sektionen, oder Verbindungen.\n"
-"\n"
-"Sie können nun eine neue Sektion hinzufügen.\n"
-"Wählen Sie Weiter, wenn Sie mit der Eingabe fertig sind.\n"
-
-#: standalone/drakvpn:477
-#, c-format
-msgid "section name"
-msgstr "Sektionsname"
-
-#: standalone/drakvpn:478
-#, c-format
-msgid "authby"
-msgstr "authby"
-
-#: standalone/drakvpn:479
-#, c-format
-msgid "auto"
-msgstr "automatisch"
-
-#: standalone/drakvpn:485
-#, c-format
-msgid "right"
-msgstr "rechts"
-
-#: standalone/drakvpn:486
-#, c-format
-msgid "rightcert"
-msgstr "rechtes Zertifikat"
-
-#: standalone/drakvpn:487
-#, c-format
-msgid "rightrsasigkey"
-msgstr "rightrsasigkey"
-
-#: standalone/drakvpn:488
-#, c-format
-msgid "rightsubnet"
-msgstr "rightsubnet"
-
-#: standalone/drakvpn:489
-#, c-format
-msgid "rightnexthop"
-msgstr "rightnextthop"
-
-#: standalone/drakvpn:497
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change the name of the section.\n"
-msgstr ""
-"Eine Sektion mit diesem Namen existiert bereits.\n"
-"Sektionsnamen müssen einzigartig sein.\n"
-"\n"
-"Sie müssen zurück gehen und eine andere Sektion\n"
-"hinzufügen, oder den Namen ändern.\n"
-
-#: standalone/drakvpn:529
-#, c-format
-msgid ""
-"Add a Security Policy.\n"
-"\n"
-"You can now add a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Eine Sicherheitsregeln hinzufügen.\n"
-"\n"
-"Sie können nun eine Sicherheitsregel hinzufügen.\n"
-"\n"
-"Wählen Sie „Weiter“ wenn Sie fertig sind mit der Dateneingabe.\n"
-
-#: standalone/drakvpn:562 standalone/drakvpn:812
-#, c-format
-msgid "Edit section"
-msgstr "Sektion bearbeiten"
-
-#: standalone/drakvpn:563
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to edit \n"
-"and then click on next.\n"
-msgstr ""
-"Ihre %s-Datei hat verschiedene Sektionen oder Verbindungen.\n"
-"\n"
-"Sie können unten wählen, welche Sie bearbeiten wollen.\n"
-"Wählen Sie danach auf weiter.\n"
-
-#: standalone/drakvpn:566 standalone/drakvpn:646 standalone/drakvpn:817
-#: standalone/drakvpn:863
-#, c-format
-msgid "Section names"
-msgstr "Sektionsnamen"
-
-#: standalone/drakvpn:576
-#, c-format
-msgid "Can not edit!"
-msgstr "Bearbeiten nicht möglich!"
-
-#: standalone/drakvpn:577
-#, c-format
-msgid ""
-"You cannot edit this section.\n"
-"\n"
-"This section is mandatory for Freeswan 2.X.\n"
-"One has to specify version 2.0 on the top\n"
-"of the %s file, and eventually, disable or\n"
-"enable the opportunistic encryption.\n"
-msgstr ""
-"Sie können diese Sektion nicht bearbeiten.\n"
-"\n"
-"Diese Sektion ist für Freeswan 2.X zwingend erforderlich.\n"
-"Man muss Version 2.0 spezifizieren am Anfang\n"
-"der %s-Datei. Anschließend können Sie zusätzliche\n"
-"Verschlüsselung an- oder abschalten.\n"
-
-#: standalone/drakvpn:586
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the config setup section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Ihre %s-Datei hat verschiedene Sektionen.\n"
-"\n"
-"Sie können nun die Einträge der Konfigurationssetup-Sektion\n"
-"bearbeiten. Wählen Sie nach der Eingabe weiter.\n"
-
-#: standalone/drakvpn:597
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the default section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Ihre %s-Datei hat verschiedene Sektionen oder Verbindungen.\n"
-"\n"
-"Sie können nun die Standard-Sektionseinträge bearbeiten.\n"
-"Wählen Sie nach der Eingabe weiter.\n"
-
-#: standalone/drakvpn:610
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the normal section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Ihre %s-Datei hat verschiedene Sektionen oder Verbindungen.\n"
-"\n"
-"Sie können unten wählen, welche Sie bearbeiten wollen.\n"
-"Wählen Sie danach auf weiter.\n"
-
-#: standalone/drakvpn:631
-#, c-format
-msgid ""
-"Edit a Security Policy.\n"
-"\n"
-"You can now edit a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Bearbeiten Sie eine Sicherheitsregel.\n"
-"\n"
-"Sie können nun eine Sicherheitsregel hinzufügen.\n"
-"\n"
-"Wählen Sie nach der Eingabe weiter.\n"
-
-#: standalone/drakvpn:642 standalone/drakvpn:859
-#, c-format
-msgid "Remove section"
-msgstr "Sektion entfernen"
-
-#: standalone/drakvpn:643 standalone/drakvpn:860
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to remove\n"
-"and then click on next.\n"
-msgstr ""
-"Ihre %s-Datei hat verschiedene Sektionen oder Verbindungen.\n"
-"\n"
-"Sie können unten auswählen, welche Sie entfernen möchten.\n"
-"Wählen Sie danach weiter.\n"
-
-#: standalone/drakvpn:672
-#, c-format
-msgid ""
-"The racoon.conf file configuration.\n"
-"\n"
-"The contents of this file is divided into sections.\n"
-"You can now:\n"
-" - display \t\t (display the file contents)\n"
-" - add\t\t\t (add one section)\n"
-" - edit \t\t\t (modify parameters of an existing section)\n"
-" - remove \t\t (remove an existing section)\n"
-" - commit \t\t (writes the changes to the real file)"
-msgstr ""
-"Die racoon.conf Konfiguration.\n"
-"\n"
-"Der Inhalt dieser Datei ist in Abschnitte unterteilt.\n"
-"Sie können jetzt:\n"
-" - display \t\t (zeigt den Dateiinhalt an)\n"
-" - add\t\t\t (fügt einen Abschnitt hinzu)\n"
-" - edit \t\t\t (Parameter eines Abschnittes ändern)\n"
-" - remove \t\t (einen bestehenden Abschnitt entfernen)\n"
-" - commit \t\t (die Änderungen in die echte Datei schreiben)"
-
-#: standalone/drakvpn:700
-#, c-format
-msgid ""
-"The %s file does not exist\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose configure.\n"
-msgstr ""
-"Die Datei %s existiert nicht\n"
-"\n"
-"Es handelt sich wohl um eine neue Konfiguration.\n"
-"\n"
-"Sie müssen zurück gehen und einrichten wählen.\n"
-
-#: standalone/drakvpn:714
-#, c-format
-msgid "racoonf.conf entries"
-msgstr "racoonf.conf-Einträge"
-
-#: standalone/drakvpn:715
-#, c-format
-msgid ""
-"The 'add' sections step.\n"
-"\n"
-"Here below is the racoon.conf file skeleton:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-"Der „Sektionen hinzufügen“-Schritt.\n"
-"\n"
-"Unten ist das Gerüst der racoon.conf-Datei:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Wählen Sie die Sektion, die Sie hinzufügen wollen.\n"
+msgid "Hong Kong"
+msgstr "Hong Kong"
-#: standalone/drakvpn:721
+#: timezone.pm:237
#, c-format
-msgid "path"
-msgstr "Pfad"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "remote"
-msgstr "entfernt"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "sainfo"
-msgstr "sainfo"
-
-#: standalone/drakvpn:729
-#, c-format
-msgid ""
-"The 'add path' section step.\n"
-"\n"
-"The path sections have to be on top of your racoon.conf file.\n"
-"\n"
-"Put your mouse over the certificate entry to obtain online help."
-msgstr ""
-"Der „Pfad hinzufügen“-Schritt.\n"
-"\n"
-"Die Pfad-Sektion muss am Anfang Ihrer racoon.conf-Datei stehen.\n"
-"\n"
-"Bewegen Sie die Maus auf den Zertifikatseintrag um Onlinehilfe zu erhalten."
-
-#: standalone/drakvpn:732
-#, c-format
-msgid "path type"
-msgstr "Pfad-Typ"
-
-#: standalone/drakvpn:736
-#, c-format
-msgid ""
-"path include path: specifies a path to include\n"
-"a file. See File Inclusion.\n"
-"\tExample: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: specifies a file containing\n"
-"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
-"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) will search this directory\n"
-"if a certificate or certificate request is received.\n"
-"\tExample: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"other configuration files can be included.\n"
-"\tExample: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File: Pre-shared key file defines a pair\n"
-"of the identifier and the shared secret key which are used at\n"
-"Pre-shared key authentication method in phase 1."
-msgstr ""
-"path include Pfad: gibt den Pfad zu einer einzufügenden\n"
-"Datei an. Siehe Datei einfügen.\n"
-"\tBeispiel: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key Datei: gibt eine Datei mit im Voraus\n"
-"geteilten Schlüsseln für viele IDs an. Siehe vorverteilte Schlüsseldatei.\n"
-"\tBeispiel: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate Pfad: racoon(8) durchsucht dieses Verzeichnis\n"
-"wenn ein Zertifikat oder eine Zertifikatsanfrage empfangen wird.\n"
-"\tBeispiel: path certificate '/etc/cert' ;\n"
-"\n"
-"Datei einfügen: füge Datei ein\n"
-"andere Konfigurationsdateien können eingefügt werden.\n"
-"\tBeispiel: include „remote.conf“ ;\n"
-"\n"
-"Vorverteilte Schlüsseldatei: Die vorverteilte Schlüsseldatei definiert ein "
-"Paar\n"
-"von Bezeichnern and dem geteilten Geheimnis, das in der "
-"Authentifizierungsmethode\n"
-"„vorverteilte Schlüssel“ in Phase 1 verwendet wird."
-
-#: standalone/drakvpn:756 standalone/drakvpn:849
-#, c-format
-msgid "real file"
-msgstr "echte Datei"
-
-#: standalone/drakvpn:779
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your racoon.conf file.\n"
-"\n"
-"You can now choose the remote settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Stellen Sie sicher, dass Sie die Pfad-Sektion bereits\n"
-"am Anfang Ihrer racoon.conf-Datei stehen haben.\n"
-"\n"
-"Sie können nun die Fern-Einstellungen machen.\n"
-"Wählen Sie weiter oder vorher wenn Sie fertig sind.\n"
-
-#: standalone/drakvpn:796
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your %s file.\n"
-"\n"
-"You can now choose the sainfo settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Stellen Sie sicher, dass Sie die Pfad-Sektion bereits\n"
-"am Anfang Ihrer %s-Datei stehen haben.\n"
-"\n"
-"Sie können nun die sainfo-Einstellungen machen.\n"
-"Wählen Sie weiter oder vorher wenn Sie fertig sind.\n"
-
-#: standalone/drakvpn:813
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here in the list below the one you want\n"
-"to edit and then click on next.\n"
-msgstr ""
-"Ihre %s-Datei hat verschiedene Sektionen oder Verbindungen.\n"
-"\n"
-"Sie können in der Liste unten wählen, was Sie bearbeiten\n"
-"möchten. Wählen Sie danach weiter.\n"
-
-#: standalone/drakvpn:824
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"\n"
-"You can now edit the remote section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-"Ihre %s Datei hat verschiedene Sektionen.\n"
-"\n"
-"\n"
-"Sie können nun die Fern-Einstellungen bearbeiten.\n"
-"\n"
-"Wählen Sie weiter, nach dem Sie fertig sind.\n"
-
-#: standalone/drakvpn:833
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the sainfo section entries.\n"
-"\n"
-"Choose continue when you are done to write the data."
-msgstr ""
-"Ihre %s Datei hat verschiedene Sektionen.\n"
-"\n"
-"Sie können nun die sainfo-Sektionseinträge bearbeiten.\n"
-"\n"
-"Wählen Sie weiter, nach dem Sie fertig sind."
-
-#: standalone/drakvpn:841
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow these path\n"
-"sections.\n"
-"\n"
-"You can now edit the path entries.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-"Diese Sektion muss am Anfang Ihrer\n"
-"%s-Datei stehen.\n"
-"\n"
-"Stellen Sie sicher, dass alle anderen Sektionen hinter den\n"
-"Pfad-Sektionen folgen.\n"
-"\n"
-"Sie können nun die Pfad-Einträge bearbeiten.\n"
-"\n"
-"Wählen Sie weiter oder vorher wenn Sie fertig sind.\n"
-
-#: standalone/drakvpn:848
-#, c-format
-msgid "path_type"
-msgstr "Pfad-Type"
-
-#: standalone/drakvpn:889
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"\n"
-"You may now share resources through the Internet,\n"
-"in a secure way, using a VPN connection.\n"
-"\n"
-"You should make sure that that the tunnels shorewall\n"
-"section is configured."
-msgstr ""
-"Alles ist eingerichtet.\n"
-"\n"
-"Sie können nun auf sichere Weise Resourcen über das\n"
-"Internet teilen durch die VPN-Nutzung.\n"
-"\n"
-"Sie sollten sicherstellen, dass die Tunnel-Shorewall-\n"
-"Sektion eingerichtet wurde."
-
-#: standalone/drakvpn:909
-#, c-format
-msgid "Sainfo source address"
-msgstr "Sainfo Quell-Adresse"
-
-#: standalone/drakvpn:910
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 is the source address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 is the source address"
-msgstr ""
-"sainfo (Quell-ID Ziel-ID | anonymous) { Anweisungen }\n"
-"definiert die parameter der IKE-Phase 2 (IPsec-SA Aufbau).\n"
-"\n"
-"Quell-ID und Ziel-ID werden folgendermaßen zusammengesetzt:\n"
-"\n"
-"\tAdresse Adresse [/ Präfix] [[Port]] Protokoll\n"
-"\n"
-"Beispiele: \n"
-"\n"
-"sainfo anonymous (akzeptiert Verbindungen von überall)\n"
-"\tlassen Sie diesen Eintrag frei, wenn Sie anonymous wollen\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 ist die Quelladresse\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 ist die Quelladresse"
-
-#: standalone/drakvpn:927
-#, c-format
-msgid "Sainfo source protocol"
-msgstr "Sainfo Quellprotokoll"
-
-#: standalone/drakvpn:928
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe first 'any' allows any protocol for the source"
-msgstr ""
-"sainfo (Quell-ID Ziel-ID | anonymous) { Anweisungen }\n"
-"definiert die parameter der IKE-Phase 2 (IPsec-SA Aufbau).\n"
-"\n"
-"Quell-ID und Ziel-ID werden folgendermaßen zusammengesetzt:\n"
-"\n"
-"\tAdresse Adresse [/ Präfix] [[Port]] Protokoll\n"
-"\n"
-"Beispiele: \n"
-"\n"
-"sainfo anonymous (akzeptiert Verbindungen von überall)\n"
-"\tlassen Sie diesen Eintrag frei, wenn Sie anonymous wollen\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tdas erste „any“ erlaubt jedes Protokoll für die Quelle"
-
-#: standalone/drakvpn:942
-#, c-format
-msgid "Sainfo destination address"
-msgstr "Sainfo Ziel-Adresse"
-
-#: standalone/drakvpn:943
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 is the destination address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 is the destination address"
-msgstr ""
-"sainfo (Quell-ID Ziel-ID | anonymous) { Anweisungen }\n"
-"definiert die parameter der IKE-Phase 2 (IPsec-SA Aufbau).\n"
-"\n"
-"Quell-ID und Ziel-ID werden folgendermaßen zusammengesetzt:\n"
-"\n"
-"\tAdresse Adresse [/ Präfix] [[Port]] Protokoll\n"
-"\n"
-"Beispiele: \n"
-"\n"
-"sainfo anonymous (akzeptiert Verbindungen von überall)\n"
-"\tlassen Sie diesen Eintrag frei, wenn Sie anonymous wollen\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 ist die Zieladresse\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 ist die Zieladresse"
-
-#: standalone/drakvpn:960
-#, c-format
-msgid "Sainfo destination protocol"
-msgstr "Sainfo Zielprotokoll"
-
-#: standalone/drakvpn:961
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe last 'any' allows any protocol for the destination"
-msgstr ""
-"sainfo (Quell-ID Ziel-ID | anonymous) { Anweisungen }\n"
-"definiert die parameter der IKE-Phase 2 (IPsec-SA Aufbau).\n"
-"\n"
-"Quell-ID und Ziel-ID werden folgendermaßen zusammengesetzt:\n"
-"\n"
-"\tAdresse Adresse [/ Präfix] [[Port]] Protokoll\n"
-"\n"
-"Beispiele: \n"
-"\n"
-"sainfo anonymous (akzeptiert Verbindungen von überall)\n"
-"\tlassen Sie diesen Eintrag frei, wenn Sie anonymous wollen\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 ist die Zieladresse\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tdas letzte „any“ erlaubt jedes Protokoll für das Ziel"
-
-#: standalone/drakvpn:975
-#, c-format
-msgid "PFS group"
-msgstr "PFS-Gruppe"
-
-#: standalone/drakvpn:977
-#, c-format
-msgid ""
-"define the group of Diffie-Hellman exponentiations.\n"
-"If you do not require PFS then you can omit this directive.\n"
-"Any proposal will be accepted if you do not specify one.\n"
-"group is one of the following: modp768, modp1024, modp1536.\n"
-"Or you can define 1, 2, or 5 as the DH group number."
-msgstr ""
-"Definieren Sie die Gruppe der Diffie-Hellman-Exponentiationen.\n"
-"Falls Sie PFS nicht benötigen können Sie die diese Direktive\n"
-"vernachlässigen. Jeder Vorschlag wird akzeptiert wenn Sie keinen\n"
-"angeben. Gruppe ist eine der folgenden: modp768, modp1024 \n"
-"oder modp1536. - Oder Sie können 1,2 oder 5 als DH-Gruppen-\n"
-"Nummer definieren."
-
-#: standalone/drakvpn:982
-#, c-format
-msgid "Lifetime number"
-msgstr "Lebensdauer-Nummer"
-
-#: standalone/drakvpn:983
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-msgstr ""
-"Definieren Sie eine Lebensdauer für eine bestimmte Zeit,\n"
-"die als Phase-1-Übertragung vorgeschlagen wird.\n"
-"Jeder Vorschlag wird akzeptiert. Die Attribute werden dem\n"
-"Peer nicht vorgeschlagen falls Sie sie nicht angeben. Sie\n"
-"können in jedem Antrag individuell spezifiziert werden.\n"
-"\n"
-"Beispiele : \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"Hier sind die Lebensdauer-Nummern 1, 1, 30, 30, 60 und 12.\n"
-
-#: standalone/drakvpn:999
-#, c-format
-msgid "Lifetime unit"
-msgstr "Lebensdauer-Einheit"
-
-#: standalone/drakvpn:1001
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
-"'hour'.\n"
-msgstr ""
-"Definieren Sie eine Lebensdauer für eine bestimmte Zeit,\n"
-"die als Phase-1-Übertragung vorgeschlagen wird.\n"
-"Jeder Vorschlag wird akzeptiert. Die Attribute werden dem\n"
-"Peer nicht vorgeschlagen falls Sie sie nicht angeben. Sie\n"
-"können in jedem Antrag individuell spezifiziert werden.\n"
-"\n"
-"Beispiele : \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"Hier sind die Lebensdauer-Einheiten „min“, „min“, „sec“, „sec“, „sec“ und "
-"„hour“.\n"
-
-#: standalone/drakvpn:1019
-#, c-format
-msgid "Authentication algorithm"
-msgstr "Authentifizierungsalgorythmus"
-
-#: standalone/drakvpn:1021
-#, c-format
-msgid "Compression algorithm"
-msgstr "Compressionsalgorythmus"
-
-#: standalone/drakvpn:1022
-#, c-format
-msgid "deflate"
-msgstr "senken"
-
-#: standalone/drakvpn:1029
-#, c-format
-msgid "Remote"
-msgstr "Entfernt"
-
-#: standalone/drakvpn:1030
-#, c-format
-msgid ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specifies the parameters for IKE phase 1 for each remote node.\n"
-"The default port is 500. If anonymous is specified, the state-\n"
-"ments apply to all peers which do not match any other remote\n"
-"directive.\n"
-"\n"
-"Examples: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-msgstr ""
-"remote (Adresse | anonymous) [[Port]] { Anweisungen }\n"
-"gibt die Parameter für IKE Phase 1 für jeden entfernten Knoten an.\n"
-"Der Standardport ist 500. Wenn „anonymous“ angegeben ist, werden\n"
-"die Anweisungen auf alle Gegenstellen angewendet, die auf keine\n"
-"anderen entfernte Richtlinie passen.\n"
-"\n"
-"Beispiele: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-
-#: standalone/drakvpn:1038
-#, c-format
-msgid "Exchange mode"
-msgstr "Austauschmodus"
-
-#: standalone/drakvpn:1040
-#, c-format
-msgid ""
-"defines the exchange mode for phase 1 when racoon is the\n"
-"initiator. Also it means the acceptable exchange mode\n"
-"when racoon is responder. More than one mode can be\n"
-"specified by separating them with a comma. All of the\n"
-"modes are acceptable. The first exchange mode is what\n"
-"racoon uses when it is the initiator.\n"
-msgstr ""
-"Definiert den Austausch für Phase 1, wenn racoon der\n"
-"Initiator ist. Dies bedeutet ebenfalls den akzeptierten Aus-\n"
-"tausch-Modus, wenn racoon antwortet. Mehr als ein Modus\n"
-"kann angegeben werden, indem diese mit Kommata von-\n"
-"einander getrennt werden. Alle Modi werden dann akzeptiert.\n"
-"Der erste Austausch-Modus ist der, welcher von racoon\n"
-"verwendet wird wenn racoon als Initiator fungiert.\n"
-
-#: standalone/drakvpn:1046
-#, c-format
-msgid "Generate policy"
-msgstr "Regel erstellen"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "off"
-msgstr "aus"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "on"
-msgstr "an"
-
-#: standalone/drakvpn:1048
-#, c-format
-msgid ""
-"This directive is for the responder. Therefore you\n"
-"should set passive on in order that racoon(8) only\n"
-"becomes a responder. If the responder does not have any\n"
-"policy in SPD during phase 2 negotiation, and the direc-\n"
-"tive is set on, then racoon(8) will choice the first pro-\n"
-"posal in the SA payload from the initiator, and generate\n"
-"policy entries from the proposal. It is useful to nego-\n"
-"tiate with the client which is allocated IP address\n"
-"dynamically. Note that inappropriate policy might be\n"
-"installed into the responder's SPD by the initiator. So\n"
-"that other communication might fail if such policies\n"
-"installed due to some policy mismatches between the ini-\n"
-"tiator and the responder. This directive is ignored in\n"
-"the initiator case. The default value is off."
-msgstr ""
-"Diese Regel ist für den Antwortenden. Sie sollten\n"
-"„passiv“ einschalten, wenn racoon(8) nur als\n"
-"Antwortender benutzt wird. Wenn der Antwortende keine\n"
-"Regel in der SPD während der Phase-2-Verbindung hat\n"
-"und die Regel ist eingeschaltet, dann wird racoon(8) den ersten\n"
-"Antrag in der SA payload des Initiators auswählen.\n"
-"Racoon erzeugt Regeleinträge aus dem Antrag. Dies ist\n"
-"sinnvoll, um sich mit Clients zu verbinden, die dynamisch\n"
-"IP-Adressen zugewiesen bekommen. Beachten Sie, dass\n"
-"unsachgemäße Regeln vom Initiator in den SPD des Antwortenden\n"
-"installiert werden können. Die Kommunikation könnte fehl-schlagen falls "
-"solche Regeln installiert werden aufgrund von\n"
-"unübereinstimmenden Regeln zwischen Initiator und dem\n"
-"Antwortenden. Diese Regel wird im Falle des Initiators ignoriert.\n"
-"Die Standard-Einstellung ist aus."
-
-#: standalone/drakvpn:1062
-#, c-format
-msgid "Passive"
-msgstr "passiv"
-
-#: standalone/drakvpn:1064
-#, c-format
-msgid ""
-"If you do not want to initiate the negotiation, set this\n"
-"to on. The default value is off. It is useful for a\n"
-"server."
-msgstr ""
-"Falls Sie die Verbindung nicht initiieren wollen schalten\n"
-"Sie dies an. Der Standardwert ist aus. - Dies ist sinnvoll\n"
-"für einen Server."
-
-#: standalone/drakvpn:1067
-#, c-format
-msgid "Certificate type"
-msgstr "Zertifikatstyp"
-
-#: standalone/drakvpn:1069
-#, c-format
-msgid "My certfile"
-msgstr "Meine Zertifizierungsdatei"
-
-#: standalone/drakvpn:1070
-#, c-format
-msgid "Name of the certificate"
-msgstr "Name des Zertifikats"
-
-#: standalone/drakvpn:1071
-#, c-format
-msgid "My private key"
-msgstr "Mein persönlicher Schlüssel"
-
-#: standalone/drakvpn:1072
-#, c-format
-msgid "Name of the private key"
-msgstr "Name des privaten Schlüssels"
-
-#: standalone/drakvpn:1073
-#, c-format
-msgid "Peers certfile"
-msgstr "Peer-Zertifikatsdatei"
-
-#: standalone/drakvpn:1074
-#, c-format
-msgid "Name of the peers certificate"
-msgstr "Name des Peer-Zertifikats"
-
-#: standalone/drakvpn:1075
-#, c-format
-msgid "Verify cert"
-msgstr "Zertifikat bestätigen"
-
-#: standalone/drakvpn:1077
-#, c-format
-msgid ""
-"If you do not want to verify the peer's certificate for\n"
-"some reason, set this to off. The default is on."
-msgstr ""
-"Falls Sie das Peer-Zertifikat nicht bestätigen wollen\n"
-"aus irgendeinem Grund, schalten Sie dies ab. \n"
-"Standard ist ein."
-
-#: standalone/drakvpn:1079
-#, c-format
-msgid "My identifier"
-msgstr "Meine Identifizierung"
-
-#: standalone/drakvpn:1080
-#, c-format
-msgid ""
-"specifies the identifier sent to the remote host and the\n"
-"type to use in the phase 1 negotiation. address, FQDN,\n"
-"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
-"they are used like:\n"
-"\tmy_identifier address [address];\n"
-"\t\tthe type is the IP address. This is the default\n"
-"\t\ttype if you do not specify an identifier to use.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tthe type is a USER_FQDN (user fully-qualified\n"
-"\t\tdomain name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tthe type is a FQDN (fully-qualified domain name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tthe type is a KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tthe type is an ASN.1 distinguished name. If\n"
-"\t\tstring is omitted, racoon(8) will get DN from\n"
-"\t\tSubject field in the certificate.\n"
-"\n"
-"Examples: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-msgstr ""
-"gibt den Bezeichner an, der zum entfernten Rechner gesendet\n"
-"wird und den Typ, der in der Aushandlungsphase 1 verwendet\n"
-"werden soll. address, FQDN, user_fqdn, keyid und asn1dn können\n"
-"als idtype verwendet werden:\n"
-"So werden sie verwendet:\n"
-"\tmy_identifier address [address];\n"
-"\t\tder Typ ist die IP-Adresse. Das ist der Standardtyp, wenn Sie\n"
-"\t\tkeinen Bezeichner angeben, der verwendet werden soll.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tder Typ ist ein USER_FQDN (User Fully-Qualified\n"
-"\t\tDomain Name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tder Typ ist ein FQDN (Fully-Qualified Domain Name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tder Typ ist eine KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tder Typ ist ein ASN.1 Distinguished Name. Wenn\n"
-"\t\t\"string\" ausgelassen wird, holt racoon(8) sich den DN vom\n"
-"\t\t\"Subject\"-Feld im Zertifikat holen.\n"
-"\n"
-"Beispiele: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-
-#: standalone/drakvpn:1100
-#, c-format
-msgid "Peers identifier"
-msgstr "Peer-Identifizierung"
-
-#: standalone/drakvpn:1101
-#, c-format
-msgid "Proposal"
-msgstr "Antrag"
-
-#: standalone/drakvpn:1103
-#, c-format
-msgid ""
-"specify the encryption algorithm used for the\n"
-"phase 1 negotiation. This directive must be defined. \n"
-"algorithm is one of the following: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For other transforms, this statement should not be used."
-msgstr ""
-"Geben Sie den Verschlüsselungsalgorythmus für die\n"
-"Phase-1-Verbindung an. Diese Regel muss definiert sein.\n"
-"Algorythmus kann eines der folgenden sein:\n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"Für andere Transformationen sollte dies nicht genutzt werden."
-
-#: standalone/drakvpn:1110
-#, c-format
-msgid "Hash algorithm"
-msgstr "Hash-Algorythmus"
-
-#: standalone/drakvpn:1112
-#, c-format
-msgid "DH group"
-msgstr "DH-Gruppe"
-
-#: standalone/drakvpn:1119
-#, c-format
-msgid "Command"
-msgstr "Befehl"
-
-#: standalone/drakvpn:1120
-#, c-format
-msgid "Source IP range"
-msgstr "Quell-IP-Bereich"
-
-#: standalone/drakvpn:1121
-#, c-format
-msgid "Destination IP range"
-msgstr "Ziel-IP-Bereich"
-
-#: standalone/drakvpn:1122
-#, c-format
-msgid "Upper-layer protocol"
-msgstr "Oberschicht-Protokoll"
-
-#: standalone/drakvpn:1122 standalone/drakvpn:1129
-#, c-format
-msgid "any"
-msgstr "jeder"
-
-#: standalone/drakvpn:1124
-#, c-format
-msgid "Flag"
-msgstr "Flagge"
-
-#: standalone/drakvpn:1125
-#, c-format
-msgid "Direction"
-msgstr "Richtung"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "IPsec policy"
-msgstr "IPsec-Regel"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "ipsec"
-msgstr "IPsec"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "discard"
-msgstr "löschen"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "Mode"
-msgstr "Modus"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "tunnel"
-msgstr "Tunnel"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "transport"
-msgstr "Transport"
-
-#: standalone/drakvpn:1131
-#, c-format
-msgid "Source/destination"
-msgstr "Quelle / Ziel"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "require"
-msgstr "benötigen"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "default"
-msgstr " Standard "
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "use"
-msgstr "benutzen"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "unique"
-msgstr "einzig"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (broadcast)"
-msgstr "USA (terrestrisch)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable)"
-msgstr "USA (Kabel)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "USA (Kabel-hrc)"
-
-# ../../standalone/drakxtv_.c:37C'
-#: standalone/drakxtv:45
-#, c-format
-msgid "Canada (cable)"
-msgstr "Kanada (Kabel)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Japan (terrestrisch)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (cable)"
-msgstr "Japan (Kabel)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "China (broadcast)"
-msgstr "China (terrestrisch)"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "West Europe"
-msgstr "Westeuropa"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "East Europe"
-msgstr "Osteuropa"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "France [SECAM]"
-msgstr "Frankreich (SECAM)"
-
-#: standalone/drakxtv:48
-#, c-format
-msgid "Newzealand"
-msgstr "Neuseeland"
-
-#: standalone/drakxtv:51
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Australisches Optus Kabel TV"
-
-#: standalone/drakxtv:85
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Bitte,\n"
-"geben Sie Fernsehnorm und Staat ein"
-
-#: standalone/drakxtv:87
-#, c-format
-msgid "TV norm:"
-msgstr "Fernsehnorm:"
-
-#: standalone/drakxtv:88
-#, c-format
-msgid "Area:"
-msgstr "Region:"
-
-#: standalone/drakxtv:93
-#, c-format
-msgid "Scanning for TV channels in progress..."
-msgstr "Sendersuche ..."
-
-#: standalone/drakxtv:103
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "Sendersuche..."
-
-#: standalone/drakxtv:107
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Bei der Suche der TV-Kanäle trat ein Fehler auf"
-
-#: standalone/drakxtv:110
-#, c-format
-msgid "Have a nice day!"
-msgstr "Schönen Tag noch!"
-
-#: standalone/drakxtv:111
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "Sie können nun (unter X-Windows) „xawtv“ starten.\n"
-
-#: standalone/drakxtv:149
-#, c-format
-msgid "No TV Card detected!"
-msgstr "Keine TV-Karte gefunden!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakxtv:151
-#, c-format
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"Auf Ihrem System wurde keine TV-Karte gefunden. Bitte stellen Sie sicher, "
-"daß\n"
-"eine Video/TV-Karte korrekt installiert ist und diese Linux unterstützt.\n"
-"\n"
-"\n"
-"Sie können unsere Hardware-Datenbank einsehen unter:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/finish-install:42 standalone/keyboarddrake:30
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Bitte wählen Sie Ihren Tastaturtyp."
-
-#: standalone/harddrake2:25
-#, c-format
-msgid "Alternative drivers"
-msgstr "Alternative Treiber"
-
-#: standalone/harddrake2:26
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "Liste alternativer Soundtreiber für diese Soundkarte"
-
-#: standalone/harddrake2:29
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-"der physikalische Bus, an dem sich das Gerät befindet (etwa: PCI, USB, ...)"
-
-#: standalone/harddrake2:31 standalone/harddrake2:146
-#, c-format
-msgid "Bus identification"
-msgstr "Bus"
-
-#: standalone/harddrake2:32
-#, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
-msgstr ""
-"- PCI- und USB-Geräte: Eine Auflistung der IDs der Hersteller, Geräte, "
-"Subhersteller und Subgeräte von PCI- / USB-Geräten."
-
-#: standalone/harddrake2:35
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- PCI Geräte: PCI-Slot, Gerät und Gerätetyp\n"
-"- EIDE Geräte: Master- oder Slave-Gerät\n"
-"- SCSI Geräte: Der SCSI-Bus und die Geräte-ID"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "Drive capacity"
-msgstr "Laufwerkskapazität"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
-"spezielle Fähigkeiten des Treibers (Brennfähigkeit oder DVD-Unterstützung)"
-
-#: standalone/harddrake2:39
-#, c-format
-msgid "this field describes the device"
-msgstr "Dieses Feld beschreibt das Gerät"
-
-#: standalone/harddrake2:40
-#, c-format
-msgid "Old device file"
-msgstr "Alte Gerätedatei"
-
-#: standalone/harddrake2:41
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "Alter statischer Name im „dev“ Paket"
-
-#: standalone/harddrake2:42
-#, c-format
-msgid "New devfs device"
-msgstr "Neues DevFS-Gerät"
-
-#: standalone/harddrake2:43
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "Neuer vom DevFS des Kernels vergebener dynamischer Gerätename"
-
-#. -PO: here "module" is the "jargon term" for a kernel driver
-#: standalone/harddrake2:46
-#, c-format
-msgid "Module"
-msgstr "Modul"
-
-#: standalone/harddrake2:46
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr ""
-"Das Linux Kernel-Modul, das Unterstützung für dieses Gerät bereitstellt"
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "Extended partitions"
-msgstr "Erweiterte Partitionen"
-
-#: standalone/harddrake2:47
-#, c-format
-msgid "the number of extended partitions"
-msgstr "die Anzahl der erweiterten Partitionen"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Geometry"
-msgstr "Geometrie"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Cylinder/head/sectors geometry of the disk"
-msgstr "Zylinder/Köpfe/Sektoren Geometrie der Platte"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "Disk controller"
-msgstr "Festplattensteuerung"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "the disk controller on the host side"
-msgstr "die Festplattensteuerung auf Hostseite"
-
-#: standalone/harddrake2:50
-#, c-format
-msgid "class of hardware device"
-msgstr "Hardwareklasse"
-
-#: standalone/harddrake2:51 standalone/harddrake2:83
-#: standalone/printerdrake:224
-#, c-format
-msgid "Model"
-msgstr "Modell"
-
-#: standalone/harddrake2:51
-#, c-format
-msgid "hard disk model"
-msgstr "Festplattenmodell"
-
-#: standalone/harddrake2:52
-#, c-format
-msgid "network printer port"
-msgstr "Port des Netzwerkdruckers"
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "Primary partitions"
-msgstr "Primäre Partitionen"
-
-#: standalone/harddrake2:53
-#, c-format
-msgid "the number of the primary partitions"
-msgstr "die Anzahl der primären Partitionen"
-
-#: standalone/harddrake2:54
-#, c-format
-msgid "the vendor name of the device"
-msgstr "Herstellername des Geräts"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "Bus PCI #"
-msgstr "Bus PCI #"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "the PCI bus on which the device is plugged"
-msgstr "der PCI-Bus, an dem das Gerät angesteckt ist"
-
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device #"
-msgstr "PCI-Gerät #"
-
-#: standalone/harddrake2:56
-#, c-format
-msgid "PCI device number"
-msgstr "PCI-Gerätenummer"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function #"
-msgstr "PCI Funktion #"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function number"
-msgstr "PCI Funktionsnummer"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "Vendor ID"
-msgstr "Hersteller ID"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "this is the standard numerical identifier of the vendor"
-msgstr "das ist das numerische Standardkennzeichen des Herstellers"
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "Device ID"
-msgstr "Geräte-ID"
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "this is the numerical identifier of the device"
-msgstr "das ist das numerische Kennzeichen des Gerätes"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "Sub vendor ID"
-msgstr "Unterhersteller-ID"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "this is the minor numerical identifier of the vendor"
-msgstr "das ist das numerische Unterkennzeichen des Herstellers"
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "Sub device ID"
-msgstr "Geräte-Unter-ID"
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "this is the minor numerical identifier of the device"
-msgstr "das ist das numerische Unterkennzeichen des Gerätes"
-
-#: standalone/harddrake2:62
-#, c-format
-msgid "Device USB ID"
-msgstr "USB-Geräte-ID"
-
-#: standalone/harddrake2:62
-#, c-format
-msgid ".."
-msgstr ".."
-
-#: standalone/harddrake2:66
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
-
-#: standalone/harddrake2:66
-#, c-format
-msgid ""
-"the GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
-msgstr ""
-"Der GNU/Linux-Kernel muss beim Starten des Rechner eine Berechnungs-schleife "
-"machen, um einen Zähler zu initialisieren. Dessen Ergebnis wirdals Bogomips "
-"gespeichert als Möglichkeit, die CPU zu „benchmarken“."
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "Cache size"
-msgstr "Cachegröße"
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "Größe des (Second Level) Prozessor-Caches."
-
-#. -PO: here "comas" is the medical coma, not the lexical coma!!
-#: standalone/harddrake2:70
-#, c-format
-msgid "Coma bug"
-msgstr "Coma-Fehler"
-
-#: standalone/harddrake2:70
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "Angabe, ob der Prozessor den Cyrix 6x86 Coma-Fehler aufweist."
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "Cpuid family"
-msgstr "CPUID-Familie"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "CPU-Familie (z.B.:6 steht für i686)."
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "Cpuid level"
-msgstr "CPUID-Ebene"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "Informationsgehalt, der durch den Befehl CPUID erhalten werden kann."
-
-#: standalone/harddrake2:73
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Frequenz (MHz)"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr ""
-"Die CPU-Frequenz in MHz (Megahertz), sie gibt eine erste Näherung für die "
-"Anzahl der Befehle, die der Prozessor pro Sekunde ausführen kann."
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "Flags"
-msgstr "Flaggen"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "CPU flags, die vom Kernel gemeldet werden"
-
-#: standalone/harddrake2:75
-#, c-format
-msgid "Fdiv bug"
-msgstr "Fdiv Fehler"
-
-#: standalone/harddrake2:76
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
-"Die ersten Intel Pentium Chips haben eine Fehler in ihrem "
-"Fließkommaprozessor, der nicht die gewünschte Genauigkeit bei Divisionen "
-"(FDIV) erreicht"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "Is FPU present"
-msgstr "Ist FPU vorhanden"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr ""
-"Ja bedeutet, dass der Prozessor einen mathematischen Coprozessor besitzt."
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "Ob die FPU einen IRQ Vector hat"
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
-"Ja bedeutet, dass der mathematische Coprozessor einen Ausnahmevektor besitzt."
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "F00f bug"
-msgstr "F00f: Fehler"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
-"frühe Pentium waren fehleranfällig und stürzten beim dekodieren des F00F "
-"Bytecodes ab"
-
-#: standalone/harddrake2:80
-#, c-format
-msgid "Halt bug"
-msgstr "Herunterfahren-Fehler"
-
-#: standalone/harddrake2:81
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
-"Einige der früheren i486DX-100 Chips wechseln nicht verlässlich in "
-"Betriebsmodus nachdem der „halt“ Befehl benutz wurde."
-
-#: standalone/harddrake2:82
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "Untertyp der CPU"
-
-#: standalone/harddrake2:83
-#, c-format
-msgid "generation of the cpu (eg: 8 for Pentium III, ...)"
-msgstr "CPU-Familie (8 steht etwa für Pentium III,...)"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "Model name"
-msgstr "Modellname"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "Offizieller Herstellername der CPU"
-
-#: standalone/harddrake2:85
-#, c-format
-msgid "the name of the CPU"
-msgstr "Name der CPU"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "Processor ID"
-msgstr "Prozessor ID"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "the number of the processor"
-msgstr "die Nummer des Prozessors"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "Model stepping"
-msgstr "Modell-Stepping"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "Stepping der CPU (Submodell (Generations)-Nummer)"
-
-#: standalone/harddrake2:88
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "Herstellername des Prozessors"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid "Write protection"
-msgstr "Schreibschutz"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid ""
-"the WP flag in the CR0 register of the cpu enforce write protection at the "
-"memory page level, thus enabling the processor to prevent unchecked kernel "
-"accesses to user memory (aka this is a bug guard)"
-msgstr ""
-"der WP-Schalter im CR0-Register des Prozessors erzwingt Schreibschutz auf "
-"Speicherseitenebene und ermöglicht so dem Prozessor ungeprüften "
-"Kernelzugriff auf Nutzerspeicher zu verhindern (soll heißen, das ist ein "
-"Fehlerschutz)"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "Floppy format"
-msgstr "Diskettenformat"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "Disketten Formate, die durch das Laufwerk unterstützt werden"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "Channel"
-msgstr "Kanal"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "EIDE/SCSI-Kanal"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "Disk identifier"
-msgstr "Festplattenbezeichnung"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "usually the disk serial number"
-msgstr "üblicherweise die Seriennummer der Festplatte"
-
-#: standalone/harddrake2:99
-#, c-format
-msgid "Logical unit number"
-msgstr "Logische Einheitennummer"
-
-#: standalone/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 ""
-"die SCSI Zielnummer (LUN). SCSI Geräte an einem Rechner werden eindeutig "
-"durch eine Kanalnummer identifiziert, eine Zielnummer und einer logischen "
-"Einheitennummer"
-
-#. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...)
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size"
-msgstr "Installierte Größe"
-
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size of the memory bank"
-msgstr "Installierte Größe des Speichermoduls"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled Size"
-msgstr "Aktivierte Größe"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled size of the memory bank"
-msgstr "Aktivierte Größe des Speichermoduls"
-
-#: standalone/harddrake2:108
-#, c-format
-msgid "type of the memory device"
-msgstr "Typ des Speichergerätes"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed"
-msgstr "Geschwindigkeit"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed of the memory bank"
-msgstr "Geschwindigkeit des Speichermoduls"
-
-#: standalone/harddrake2:110
-#, c-format
-msgid "Bank connections"
-msgstr "Modulverbindungen"
-
-#: standalone/harddrake2:111
-#, c-format
-msgid "Socket designation of the memory bank"
-msgstr "Sockelbezeichnung des Speichermoduls"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid "Device file"
-msgstr "Gerätedatei"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid ""
-"the device file used to communicate with the kernel driver for the mouse"
-msgstr ""
-"die Gerätedatei wird verwendet, um mit dem Kerneltreiber für die Maus zu "
-"kommunizieren"
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "Emulated wheel"
-msgstr "Emuliertes Rad"
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "whether the wheel is emulated or not"
-msgstr "ob das Rad emuliert ist oder nicht"
-
-#: standalone/harddrake2:117
-#, c-format
-msgid "the type of the mouse"
-msgstr "der Maustyp"
-
-#: standalone/harddrake2:118
-#, c-format
-msgid "the name of the mouse"
-msgstr "der Mausname"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "Number of buttons"
-msgstr "Anzahl Tasten"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "Anzahl der Maustasten"
-
-#: standalone/harddrake2:120
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "der Typ des Busses, an dem die Maus angeschlossen ist"
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "Mouse protocol used by X11"
-msgstr "Mausprotokoll verwendet durch X11"
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "the protocol that the graphical desktop use with the mouse"
-msgstr "das Protokoll, das der grafische Desktop mit der Maus verwendet"
-
-#: standalone/harddrake2:128 standalone/harddrake2:137
-#: standalone/harddrake2:144 standalone/harddrake2:152
-#: standalone/harddrake2:341
-#, c-format
-msgid "Identification"
-msgstr "Identifikation"
-
-#: standalone/harddrake2:129 standalone/harddrake2:145
-#, c-format
-msgid "Connection"
-msgstr "Verbindung"
-
-#: standalone/harddrake2:138
-#, c-format
-msgid "Performances"
-msgstr "Leistungen"
-
-#: standalone/harddrake2:139
-#, c-format
-msgid "Bugs"
-msgstr "Fehler"
-
-#: standalone/harddrake2:140
-#, c-format
-msgid "FPU"
-msgstr "FPU"
-
-#: standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Gerät"
-
-#: standalone/harddrake2:148
-#, c-format
-msgid "Partitions"
-msgstr "Partitionen"
-
-#: standalone/harddrake2:153
-#, c-format
-msgid "Features"
-msgstr "Funktionen"
-
-#. -PO: please keep all "/" characters !!!
-#: standalone/harddrake2:176 standalone/logdrake:76
-#: standalone/printerdrake:146 standalone/printerdrake:159
-#: standalone/printerdrake:171
-#, c-format
-msgid "/_Options"
-msgstr "/_Optionen"
-
-#: standalone/harddrake2:177 standalone/harddrake2:202 standalone/logdrake:78
-#: standalone/printerdrake:172 standalone/printerdrake:174
-#: standalone/printerdrake:177 standalone/printerdrake:179
-#, c-format
-msgid "/_Help"
-msgstr "/_Hilfe"
-
-#: standalone/harddrake2:181
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/_Drucker automatisch erkennen"
-
-#: standalone/harddrake2:182
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/_Modems automatisch erkennen"
-
-#: standalone/harddrake2:183
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/_Jaz-Laufwerke automatisch erkennen"
-
-#: standalone/harddrake2:184
-#, c-format
-msgid "/Autodetect parallel _zip drives"
-msgstr "/Parallele _Zip-Laufwerke automatisch erkennen"
-
-#: standalone/harddrake2:191 standalone/printerdrake:152
-#, c-format
-msgid "/_Quit"
-msgstr "/_Beenden"
-
-#: standalone/harddrake2:204
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Felderbeschreibung"
-
-#: standalone/harddrake2:206
-#, c-format
-msgid "Harddrake help"
-msgstr "HardDrake Hilfe"
-
-#: standalone/harddrake2:215
-#, 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 ""
-"Wenn Sie ein Gerät auswählen, werden im rechten Rahmen die Geräte-"
-"Informationen angezeigt („Informationen“)."
-
-#: standalone/harddrake2:221 standalone/printerdrake:177
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Fehler melden"
-
-#: standalone/harddrake2:223 standalone/printerdrake:179
-#, c-format
-msgid "/_About..."
-msgstr "/_Über ..."
-
-#: standalone/harddrake2:224
-#, c-format
-msgid "About Harddrake"
-msgstr "Über HardDrake"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/harddrake2:226
-#, c-format
-msgid ""
-"This is HardDrake, a %s hardware configuration tool.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-msgstr ""
-"Das ist HardDrake, ein %s Hardware-Konfigurationswerkzeug.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Autor:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-
-#: standalone/harddrake2:242
-#, c-format
-msgid "Harddrake2"
-msgstr "Harddrake2"
-
-#: standalone/harddrake2:272
-#, c-format
-msgid "Detected hardware"
-msgstr "Gefundene Hardware"
-
-#: standalone/harddrake2:277
-#, c-format
-msgid "Configure module"
-msgstr "Modul konfigurieren"
-
-#: standalone/harddrake2:284
-#, c-format
-msgid "Run config tool"
-msgstr "Konfigurationswerkzeug starten"
-
-#: standalone/harddrake2:308
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
-"Klicken Sie auf ein Gerät in der linken Leiste, um die entsprechende "
-"Information anzuzeigen"
-
-#: standalone/harddrake2:329 standalone/printerdrake:306
-#: standalone/printerdrake:320
-#, c-format
-msgid "Unknown"
-msgstr "Unbekannt"
-
-#: standalone/harddrake2:349
-#, c-format
-msgid "Misc"
-msgstr "Sonstiges"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "secondary"
-msgstr "sekundär"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "primary"
-msgstr "primär"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "burner"
-msgstr "Brenner"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "DVD"
-msgstr "DVD"
-
-#: standalone/harddrake2:511
-#, c-format
-msgid ""
-"The following devices needs proprietary drivers or firmwares in order to "
-"operate smoothly. The appropriate packages can be retrieved from the "
-"Mandriva Club. Do you want to subscribe to the Mandriva Club?"
-msgstr ""
-
-#: standalone/keyboarddrake:45
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Wollen Sie, dass die Rücktaste auf den Konsolen Entfernen sendet?"
-
-#: standalone/localedrake:38
-#, c-format
-msgid "LocaleDrake"
-msgstr "LocaleDrake"
-
-#: standalone/localedrake:44
-#, c-format
-msgid "You should install the following packages: %s"
-msgstr "Sie sollten die folgenden Pakete installieren: %s"
-
-#. -PO: the following is used to combine packages names. eg: "initscripts, harddrake, yudit"
-#: standalone/localedrake:47 standalone/scannerdrake:135
-#, c-format
-msgid ", "
-msgstr ", "
-
-#: standalone/localedrake:55
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-"Die Einstellungen wurden vorgenommen, werden jedoch erst nach einer "
-"Neuanmeldung wirksam"
-
-#: standalone/logdrake:49
-#, c-format
-msgid "Mandriva Linux Tools Logs"
-msgstr "Mandriva Linux Werkzeugprotokolle"
-
-#: standalone/logdrake:50
-#, c-format
-msgid "Logdrake"
-msgstr "LogDrake"
-
-#: standalone/logdrake:63
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Nur für diesen Tag zeigen"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "/File/_New"
-msgstr "/Datei/_Neu"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "/File/_Open"
-msgstr "/Datei/_Öffnen"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "/File/_Save"
-msgstr "/Datei/_Speichern"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
-
-#: standalone/logdrake:73
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Datei/Speichern _unter ..."
-
-#: standalone/logdrake:74
-#, c-format
-msgid "/File/-"
-msgstr "/Datei/-"
-
-#: standalone/logdrake:77
-#, c-format
-msgid "/Options/Test"
-msgstr "/Optionen/Test"
-
-#: standalone/logdrake:79
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Hilfe/_Über ..."
-
-#: standalone/logdrake:108
-#, c-format
-msgid ""
-"_:this is the auth.log log file\n"
-"Authentication"
-msgstr "Authentifizierung"
-
-#: standalone/logdrake:109
-#, c-format
-msgid ""
-"_:this is the user.log log file\n"
-"User"
-msgstr "Benutzer"
-
-#: standalone/logdrake:110
-#, c-format
-msgid ""
-"_:this is the /var/log/messages log file\n"
-"Messages"
-msgstr "Meldungen"
-
-#: standalone/logdrake:111
-#, c-format
-msgid ""
-"_:this is the /var/log/syslog log file\n"
-"Syslog"
-msgstr "Systemprotokoll"
-
-#: standalone/logdrake:115
-#, c-format
-msgid "search"
-msgstr "Suche"
-
-#: standalone/logdrake:127
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Ein Werkzeug zum Überwachen Ihrer Logbücher"
-
-#: standalone/logdrake:128 standalone/net_applet:347 standalone/net_monitor:93
-#, c-format
-msgid "Settings"
-msgstr "Einstellungen"
-
-#: standalone/logdrake:133
-#, c-format
-msgid "Matching"
-msgstr "Übereinstimmung mit"
-
-#: standalone/logdrake:134
-#, c-format
-msgid "but not matching"
-msgstr "keine Übereinstimmung mit"
-
-#: standalone/logdrake:138
-#, c-format
-msgid "Choose file"
-msgstr "Datei wählen"
-
-#: standalone/logdrake:150
-#, c-format
-msgid "Calendar"
-msgstr "Kalender"
-
-#: standalone/logdrake:160
-#, c-format
-msgid "Content of the file"
-msgstr "Inhalt der Logbücher"
-
-#: standalone/logdrake:164 standalone/logdrake:401
-#, c-format
-msgid "Mail alert"
-msgstr "E-Mail-Benachrichtigung"
-
-#: standalone/logdrake:171
-#, c-format
-msgid "The alert wizard has failed unexpectedly:"
-msgstr "Der Benachrichtungsassistent ist unerwartet fehlgeschlagen:"
-
-#: standalone/logdrake:224
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "Einen Moment, ich durchsuche: %s"
-
-#: standalone/logdrake:379
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Apache Web-Server"
-
-#: standalone/logdrake:380
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "DNS"
-
-#: standalone/logdrake:381
-#, c-format
-msgid "Ftp Server"
-msgstr "FTP-Server"
-
-#: standalone/logdrake:382
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Postfix E-Mail-Server"
-
-#: standalone/logdrake:383
-#, c-format
-msgid "Samba Server"
-msgstr "Samba-Server"
-
-#: standalone/logdrake:385
-#, c-format
-msgid "Webmin Service"
-msgstr "Webmin-Dienst"
-
-#: standalone/logdrake:386
-#, c-format
-msgid "Xinetd Service"
-msgstr "Xinetd-Dienst"
-
-#: standalone/logdrake:395
-#, c-format
-msgid "Configure the mail alert system"
-msgstr "Stellen die das E-Mail-Benachrichtigungssystem ein"
-
-#: standalone/logdrake:396
-#, c-format
-msgid "Stop the mail alert system"
-msgstr "Mailbenachrichtungssystem beenden"
-
-#: standalone/logdrake:404
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Mail-Benachrichtigungskonfiguration"
-
-#: standalone/logdrake:405
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Herzlich willkommen zum E-Mail-Benachrichtigungsassistenten.\n"
-"\n"
-"Hier können Sie Ihr Benachrichtigungssystem einrichten.\n"
-
-#: standalone/logdrake:415
-#, c-format
-msgid "Services settings"
-msgstr "Dienste-Einstellungen"
-
-#: standalone/logdrake:416
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr ""
-"Sie werden benachrichtigt, falls einer der gewählten Dienste nicht mehr läuft"
-
-#: standalone/logdrake:423
-#, c-format
-msgid "Load setting"
-msgstr "Einstellungen laden"
-
-#: standalone/logdrake:424
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Sie erhalten eine Nachricht, wenn die Load über diesen Wert steigt"
-
-#: standalone/logdrake:425
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Systemauslastung"
-
-#: standalone/logdrake:430
-#, c-format
-msgid "Alert configuration"
-msgstr "Benachrichtigungskonfiguration"
-
-#: standalone/logdrake:431
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Bitte geben Sie Ihre E-Mail-Adresse ein"
-
-#: standalone/logdrake:432
-#, c-format
-msgid "and enter the name (or the IP) of the SMTP server you wish to use"
-msgstr ""
-"und geben Sie den Namen (oder die IP) des SMTP-Servers ein, den Sie "
-"verwenden wollen"
-
-#: standalone/logdrake:451
-#, c-format
-msgid "The wizard successfully configured the mail alert."
-msgstr "Der Assistent hat den Email Alarm erfolgreich konfiguriert."
-
-#: standalone/logdrake:457
-#, c-format
-msgid "The wizard successfully disabled the mail alert."
-msgstr "Der Assistent hat den Email Alarm erfolgreich ausgeschalten."
-
-#: standalone/logdrake:516
-#, c-format
-msgid "Save as.."
-msgstr "Speichern unter..."
-
-#: standalone/mousedrake:31
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Bitte wählen Sie Ihren Maustyp."
-
-#: standalone/mousedrake:44
-#, c-format
-msgid "Emulate third button?"
-msgstr "Die dritte Maustaste emulieren?"
-
-#: standalone/mousedrake:61
-#, c-format
-msgid "Mouse test"
-msgstr "Maus Test"
-
-#: standalone/mousedrake:64
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Bitte testen Sie Ihre Maus"
-
-#: standalone/net_applet:47
-#, c-format
-msgid "Network is up on interface %s"
-msgstr "Netzwerk läuft auf Schnittstelle %s"
-
-#. -PO: keep the "Configure Network" substring synced with the "Configure Network" message below
-#: standalone/net_applet:50
-#, c-format
-msgid "Network is down on interface %s. Click on \"Configure Network\""
-msgstr ""
-"Das Netzwerk an Schnitstelle %s ist getrennt. Klicken Sie auf „Netzwerk "
-"einrichten“"
-
-#: standalone/net_applet:56 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Connect %s"
-msgstr "Verbinde %s"
-
-#: standalone/net_applet:57 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Disconnect %s"
-msgstr "Trenne %s"
-
-#: standalone/net_applet:58
-#, c-format
-msgid "Monitor Network"
-msgstr "Netzwerk überwachen"
-
-#: standalone/net_applet:60
-#, c-format
-msgid "Manage wireless networks"
-msgstr "Verwaltung kabelloser Netzwerke"
-
-#: standalone/net_applet:61
-#, c-format
-msgid "Configure Network"
-msgstr "Netzwerk konfigurieren"
-
-#: standalone/net_applet:63
-#, c-format
-msgid "Watched interface"
-msgstr "Überwachte Schnittstelle"
-
-#: standalone/net_applet:93
-#, c-format
-msgid "Profiles"
-msgstr "Profile"
-
-#: standalone/net_applet:102
-#, c-format
-msgid "Get Online Help"
-msgstr "Onlinehilfe erhalten"
-
-#: standalone/net_applet:335
-#, c-format
-msgid "Interactive Firewall automatic mode"
-msgstr "Automatischer Modus der interaktiven Firewall"
-
-#: standalone/net_applet:340
-#, c-format
-msgid "Always launch on startup"
-msgstr "Immer bei Systemstart starten"
-
-#: standalone/net_applet:344
-#, c-format
-msgid "Wireless networks"
-msgstr "Kabellose Netzwerke"
-
-#: standalone/net_applet:429
-#, c-format
-msgid "Interactive Firewall: intrusion detected"
-msgstr "Interaktive Firewall: Einbruch erkannt"
-
-#: standalone/net_applet:442
-#, c-format
-msgid "What do you want to do with this attacker?"
-msgstr "Was möchten Sie mit dem Angreifer tun?"
-
-#: standalone/net_applet:445
-#, c-format
-msgid "Attack details"
-msgstr "Angriffsdetails"
-
-#: standalone/net_applet:449
-#, c-format
-msgid "Attack time: %s"
-msgstr "Angriffszeit: %s"
-
-#: standalone/net_applet:450
-#, c-format
-msgid "Network interface: %s"
-msgstr "Netzwerk-Schnittstelle: %s"
-
-#: standalone/net_applet:451
-#, c-format
-msgid "Attack type: %s"
-msgstr "Angriffstyp: %s"
-
-#: standalone/net_applet:452
-#, c-format
-msgid "Protocol: %s"
-msgstr "Protokoll: %s"
-
-#: standalone/net_applet:453
-#, c-format
-msgid "Attacker IP address: %s"
-msgstr "IP-Adresse des Angreifers: %s"
-
-#: standalone/net_applet:454
-#, c-format
-msgid "Attacker hostname: %s"
-msgstr "Rechnername des Angreifers: %s"
-
-#: standalone/net_applet:457
-#, c-format
-msgid "Service attacked: %s"
-msgstr "angegriffener Dienst: %s"
-
-#: standalone/net_applet:458
-#, c-format
-msgid "Port attacked: %s"
-msgstr "angegriffener Port: %s"
-
-#: standalone/net_applet:460
-#, c-format
-msgid "Type of ICMP attack: %s"
-msgstr "Typ des ICMP-Angriffs: %s"
-
-#: standalone/net_applet:465
-#, c-format
-msgid "Always blacklist (do not ask again)"
-msgstr "Immer auf die schwarze Liste setzen (nicht nochmal fragen)"
-
-#: standalone/net_monitor:57 standalone/net_monitor:62
-#, c-format
-msgid "Network Monitoring"
-msgstr "Netzwerküberwachung"
-
-#: standalone/net_monitor:98
-#, c-format
-msgid "Global statistics"
-msgstr "Globale Statistiken"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Instantaneous"
-msgstr "Momentan"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Average"
-msgstr "Durchschnitt"
-
-#: standalone/net_monitor:102
-#, c-format
-msgid ""
-"Sending\n"
-"speed:"
-msgstr ""
-"Sendegesch-\n"
-"windigkeit:"
-
-#: standalone/net_monitor:103
-#, c-format
-msgid ""
-"Receiving\n"
-"speed:"
-msgstr ""
-"Enpfangsgesch-\n"
-"windigkeit:"
-
-#: standalone/net_monitor:107
-#, c-format
-msgid ""
-"Connection\n"
-"time: "
-msgstr ""
-"Verbindungs-\n"
-"Zeit: "
-
-#: standalone/net_monitor:114
-#, c-format
-msgid "Use same scale for received and transmitted"
-msgstr "Die gleiche Skala für Empfangen und Senden verwenden"
-
-#: standalone/net_monitor:133
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Bitte warten, Test Ihrer Verbindung..."
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Vom Internet trennen"
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Mit dem Internet verbinden"
-
-#: standalone/net_monitor:226
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Die Trennung vom Internet schlug fehl!"
-
-#: standalone/net_monitor:227
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Trennung vom Internet erfolgreich."
-
-#: standalone/net_monitor:229
-#, c-format
-msgid "Connection complete."
-msgstr "Verbindung fertiggestellt."
-
-#: standalone/net_monitor:230
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandriva Linux Control Center."
-msgstr ""
-"Verbinden fehlgeschlagen.\n"
-"Überprüfen Sie Ihre Konfiguration im Mandriva Linux Kontrollzentrum."
-
-#: standalone/net_monitor:335
-#, c-format
-msgid "Color configuration"
-msgstr "Farbkonfiguration"
-
-#: standalone/net_monitor:383 standalone/net_monitor:403
-#, c-format
-msgid "sent: "
-msgstr "Gesendet: "
-
-#: standalone/net_monitor:390 standalone/net_monitor:407
-#, c-format
-msgid "received: "
-msgstr "Empfangen: "
-
-#: standalone/net_monitor:397
-#, c-format
-msgid "average"
-msgstr "Durchschnitt"
-
-#: standalone/net_monitor:400
-#, c-format
-msgid "Local measure"
-msgstr "Lokale Messung"
-
-#: standalone/net_monitor:461
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"WARNUNG: Es wurde bereits eine Internetverbindung gefunden. Vielleicht nutzt "
-"diese ihr Netzwerk."
-
-#: standalone/net_monitor:472
-#, c-format
-msgid "No internet connection configured"
-msgstr "Keine Internetverbindung konfiguriert"
-
-#: standalone/printerdrake:76
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "Lese Daten der installierten Drucker ..."
-
-#: standalone/printerdrake:128
-#, c-format
-msgid "%s Printer Management Tool"
-msgstr "%s Drucker Verwaltung"
-
-#: standalone/printerdrake:142 standalone/printerdrake:143
-#: standalone/printerdrake:144 standalone/printerdrake:145
-#: standalone/printerdrake:153 standalone/printerdrake:154
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Actions"
-msgstr "/Be_arbeiten"
-
-#: standalone/printerdrake:142 standalone/printerdrake:154
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Drucker hinzufügen"
-
-#: standalone/printerdrake:143
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Als Stan_dard setzen"
-
-#: standalone/printerdrake:144
-#, c-format
-msgid "/_Edit"
-msgstr "/_Ändern"
-
-#: standalone/printerdrake:145
-#, c-format
-msgid "/_Delete"
-msgstr "/_Löschen"
-
-#: standalone/printerdrake:146
-#, c-format
-msgid "/_Expert mode"
-msgstr "/-Expertenmodus"
-
-#: standalone/printerdrake:151
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Aktualisieren"
-
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_CUPS konfigurieren"
-
-#: standalone/printerdrake:171
-#, c-format
-msgid "/Configure _Auto Administration"
-msgstr "/_Automatische Verwaltung einstellen"
-
-#: standalone/printerdrake:194
-#, c-format
-msgid "Search:"
-msgstr "Suche:"
-
-#: standalone/printerdrake:197
-#, c-format
-msgid "Apply filter"
-msgstr "Filter anwenden"
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Def."
-msgstr "Def."
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Printer Name"
-msgstr "Druckername"
-
-#: standalone/printerdrake:224
-#, c-format
-msgid "Connection Type"
-msgstr "Verbindungstyp:"
-
-#: standalone/printerdrake:231
-#, c-format
-msgid "Server Name"
-msgstr "Server Name"
-
-#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add Printer"
-msgstr "Drucker hinzufügen"
-
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Neuen Drucker hinzufügen"
-
-#. -PO: "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set as default"
-msgstr "Als Standard setzen"
-
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Als Standarddrucker verwenden"
-
-#: standalone/printerdrake:245
-#, c-format
-msgid "Edit selected printer"
-msgstr "Änderung des markierten Druckers"
-
-#: standalone/printerdrake:248
-#, c-format
-msgid "Delete selected printer"
-msgstr "Ausgewählte Drucker entfernen"
-
-#: standalone/printerdrake:251
-#, c-format
-msgid "Refresh the list"
-msgstr "Liste aktualisieren"
-
-#. -PO: "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS"
-msgstr "CUPS konfigurieren"
-
-#: standalone/printerdrake:254
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Das CUPS Drucker System konfigurieren"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Enabled"
-msgstr "Aktiviert"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Disabled"
-msgstr "Deaktiviert"
-
-#: standalone/printerdrake:596
-#, c-format
-msgid "Authors: "
-msgstr "Autoren: "
-
-#. -PO: here %s is the version number
-#: standalone/printerdrake:606
-#, c-format
-msgid "Printer Management %s"
-msgstr "Druckerverwaltung %s"
-
-#: standalone/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 Pakete müssen installiert sein um Scanner nutzen zu können.\n"
-"\n"
-"Wollen Sie die SANE Pakete installieren?"
-
-#: standalone/scannerdrake:55
-#, c-format
-msgid "Aborting Scannerdrake."
-msgstr "ScannerDrake abbrechen"
-
-#: standalone/scannerdrake:60
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-"Konnte die notwendigen Programmpakete zum Einrichten eines Scanners mit "
-"Scannerdrake nicht installieren."
-
-#: standalone/scannerdrake:61
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Scannerdrake wird jetzt nicht gestartet."
-
-#: standalone/scannerdrake:67 standalone/scannerdrake:508
-#, c-format
-msgid "Searching for configured scanners..."
-msgstr "Suche nach eingerichteten Scannern ..."
-
-#: standalone/scannerdrake:71 standalone/scannerdrake:512
-#, c-format
-msgid "Searching for new scanners..."
-msgstr "Suche nach neuen Scannern ..."
-
-#: standalone/scannerdrake:79 standalone/scannerdrake:534
-#, c-format
-msgid "Re-generating list of configured scanners..."
-msgstr "Erneuere die Liste der konfigurierten Scanner..."
-
-#: standalone/scannerdrake:101
-#, c-format
-msgid "The %s is not supported by this version of %s."
-msgstr "Der %s wird von dieser Version %s NICHT unterstützt."
-
-#: standalone/scannerdrake:104
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s an %s gefunden. Wollen Sie eine automatische Einrichtung?"
-
-#: standalone/scannerdrake:116
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
-"%s ist nicht in der Scanner-Datenbank vorhanden. Wollen Sie ihn manuell "
-"einrichten?"
-
-#: standalone/scannerdrake:131
-#, c-format
-msgid "Select a scanner model"
-msgstr "Wählen Sie einen Scanner"
-
-#: standalone/scannerdrake:132
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: standalone/scannerdrake:133
-#, c-format
-msgid "Detected model: %s"
-msgstr "Gefundendenes Modell: %s"
-
-#: standalone/scannerdrake:136
-#, c-format
-msgid "Port: %s"
-msgstr "Port: %s"
-
-#: standalone/scannerdrake:138 standalone/scannerdrake:141
-#, c-format
-msgid " (UNSUPPORTED)"
-msgstr " (NICHT UNTERSTÜTZT)"
-
-#: standalone/scannerdrake:144
-#, c-format
-msgid "The %s is not supported under Linux."
-msgstr "Der %s wird nicht von Linux unterstützt"
-
-#: standalone/scannerdrake:171 standalone/scannerdrake:185
-#, c-format
-msgid "Do not install firmware file"
-msgstr "Keine Firmware Datei installieren"
-
-#: standalone/scannerdrake:175 standalone/scannerdrake:227
-#, c-format
-msgid ""
-"It is possible that your %s needs its firmware to be uploaded everytime when "
-"it is turned on."
-msgstr ""
-"Es ist möglich, dass der %s jedesmal die Firmware laden muss, wenn er "
-"angeschaltet wird."
-
-#: standalone/scannerdrake:176 standalone/scannerdrake:228
-#, c-format
-msgid "If this is the case, you can make this be done automatically."
-msgstr "Wenn das der Fall ist, kann das auch automatisch erledigt werden."
-
-#: standalone/scannerdrake:177 standalone/scannerdrake:231
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware file for your scanner so that it "
-"can be installed."
-msgstr ""
-"Es muss deshalb die Firmware Datei für den Scanner bereitgestellt werden."
-
-#: standalone/scannerdrake:178 standalone/scannerdrake:232
-#, 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 ""
-"Sie finden die Datei auf der CD oder Diskette, die Sie zusammen mit Ihrem "
-"Scanner bekommen haben, auf der Webseite des Herstellers oder auf Ihrer "
-"Windows Partition"
-
-#: standalone/scannerdrake:180 standalone/scannerdrake:239
-#, c-format
-msgid "Install firmware file from"
-msgstr "Installiere Firmware Datei von"
-
-#: standalone/scannerdrake:200
-#, c-format
-msgid "Select firmware file"
-msgstr "Firmware-Datei auswählen"
-
-#: standalone/scannerdrake:203 standalone/scannerdrake:262
-#, c-format
-msgid "The firmware file %s does not exist or is unreadable!"
-msgstr "Die Firmware Date %s existiert nicht oder ist unlesbar!"
-
-#: standalone/scannerdrake:226
-#, c-format
-msgid ""
-"It is possible that your scanners need their firmware to be uploaded "
-"everytime when they are turned on."
-msgstr ""
-"Es ist möglich, dass die Firmware des Scanners bei jedem Einschalten geladen "
-"werden muss."
-
-#: standalone/scannerdrake:230
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware files for your scanners so that it "
-"can be installed."
-msgstr ""
-"Sie müssen die Firmware-Dateien des Scanners vorrätig haben, um sie "
-"installieren zu können."
-
-#: standalone/scannerdrake:233
-#, 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 ""
-"Wenn Sie die Scanner-Firmware schon installiert haben, können Sie die "
-"Firmware hier updaten. Sie müssen die Firmware-Datei vorrätig haben."
-
-#: standalone/scannerdrake:235
-#, c-format
-msgid "Install firmware for the"
-msgstr "Installiere Firmware für den"
-
-#: standalone/scannerdrake:258
-#, c-format
-msgid "Select firmware file for the %s"
-msgstr "Firmware Datei auswählen für den %s"
-
-#: standalone/scannerdrake:276
-#, c-format
-msgid "Could not install the firmware file for the %s!"
-msgstr "Ich konnte die Firmware-Datei für %s nicht installieren!"
-
-#: standalone/scannerdrake:289
-#, c-format
-msgid "The firmware file for your %s was successfully installed."
-msgstr "Die Firmware Datei für Ihren %s wurde erfolgreich installiert"
-
-#: standalone/scannerdrake:299
-#, c-format
-msgid "The %s is unsupported"
-msgstr "Der Scanner „%s“ wird NICHT unterstützt"
-
-#: standalone/scannerdrake:304
-#, c-format
-msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the %s Control Center in Hardware section."
-msgstr ""
-"Der %s muss von PrinterDrake konfiguriert werden.\n"
-"Sie können PrinterDrake im %s Kontrollzentrum im Hardware-Bereich starten."
-
-#: standalone/scannerdrake:322
-#, c-format
-msgid "Setting up kernel modules..."
-msgstr "Kernelmodule einrichten..."
-
-#: standalone/scannerdrake:332 standalone/scannerdrake:339
-#: standalone/scannerdrake:369
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Verfügbare Ports automatisch erkennen"
-
-#: standalone/scannerdrake:334 standalone/scannerdrake:380
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Bitte wählen Sie den Gerätenamen, an dem Ihr „%s“ hängt."
-
-#: standalone/scannerdrake:335
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Anmerkung: Parallelports können nicht automatisch erkannt werden)"
-
-#: standalone/scannerdrake:337 standalone/scannerdrake:382
-#, c-format
-msgid "choose device"
-msgstr "Gerät wählen"
-
-#: standalone/scannerdrake:371
-#, c-format
-msgid "Searching for scanners..."
-msgstr "Suche nach neuen Scannern ..."
-
-#: standalone/scannerdrake:407 standalone/scannerdrake:414
-#, c-format
-msgid "Attention!"
-msgstr "Achtung!"
-
-#: standalone/scannerdrake:408
-#, 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 ""
-"Ihr %s kann nicht vollständig automatisch eingerichtet werden.\n"
-"\n"
-"Manuelle Anpassungen sind nötig. Bitte bearbeiten Sie die "
-"Konfigurationsdatei /etc/sane.d/%s.conf. "
-
-#: standalone/scannerdrake:409 standalone/scannerdrake:418
-#, c-format
-msgid ""
-"More info in the driver's manual page. Run the command \"man sane-%s\" to "
-"read it."
-msgstr ""
-"Weitere Informationen finden Sie im Treiberhandbuch. Rufen Sie den Befehl "
-"„man sane-%s“ auf und lesen sie es."
-
-#: standalone/scannerdrake:411 standalone/scannerdrake:420
-#, c-format
-msgid ""
-"After that you may scan documents using \"XSane\" or \"Kooka\" from "
-"Multimedia/Graphics in the applications menu."
-msgstr ""
-"Danach können Sie Dokumente mit „XSane“ oder „Kooka“ im Menu Multimedia/"
-"Grafik scannen."
-
-#: standalone/scannerdrake:415
-#, c-format
-msgid ""
-"Your %s has been configured, but it is possible that additional manual "
-"adjustments are needed to get it to work. "
-msgstr ""
-"Ihr %s wurde eingerichtet aber es ist möglich, dass zusätzliche manuelle "
-"Einstellungen nötig sind, um ihn zum Laufen zu bekommen. "
-
-#: standalone/scannerdrake:416
-#, 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 ""
-"Wenn er nicht im Scannerdrake-Hauptfenster in der Liste der eingerichteten "
-"Scanner erscheint oder wenn er nicht richtig funktioniert, "
-
-#: standalone/scannerdrake:417
-#, c-format
-msgid "edit the configuration file /etc/sane.d/%s.conf. "
-msgstr "Bearbeiten Sie die Konfigurationsdatei /etc/sane.d/%s.conf. "
-
-#: standalone/scannerdrake:423
-#, 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 ""
-"Ihr %s wurde konfiguriert.\n"
-"Sie können nun Dokumente mit „XSane“ oder „Kooka“ scannen (unter „Multimedia/"
-"Graphik“ im Mandriva-Menü)."
-
-#: standalone/scannerdrake:448
-#, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr ""
-"Die folgenden Scanner\n"
-"\n"
-"%s\n"
-"sind direkt an Ihr System angeschlossen.\n"
-
-#: standalone/scannerdrake:449
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr ""
-"Der folgende Scanner\n"
-"\n"
-"%s\n"
-"ist direkt an Ihr System angeschlossen.\n"
-
-#: standalone/scannerdrake:452 standalone/scannerdrake:455
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "Ich konnte keine Scanner direkt an Ihrem Rechner finden.\n"
-
-#: standalone/scannerdrake:469
-#, c-format
-msgid "Search for new scanners"
-msgstr "Suche nach neuen Scannern"
-
-#: standalone/scannerdrake:475
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Scanner manuell hinzufügen"
-
-#: standalone/scannerdrake:482
-#, c-format
-msgid "Install/Update firmware files"
-msgstr "Installieren/Aktualisieren der Firmware Datei"
-
-#: standalone/scannerdrake:488
-#, c-format
-msgid "Scanner sharing"
-msgstr "Gemeinsamer Scannerzugriff"
-
-#: standalone/scannerdrake:547 standalone/scannerdrake:712
-#, c-format
-msgid "All remote machines"
-msgstr "Alle entfernten Maschinen"
-
-#: standalone/scannerdrake:559 standalone/scannerdrake:862
-#, c-format
-msgid "This machine"
-msgstr "Dieser Rechner"
-
-#: standalone/scannerdrake:599
-#, 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 ""
-"Hier können Sie einstellen, ob die Scanner, die an diesem Rechner hängen, "
-"für andere Rechner nutzbar sein sollen und falls ja, für welche."
-
-#: standalone/scannerdrake:600
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"Sie können hier entscheiden, ob Scanner von anderen Rechnern automatisch auf "
-"diesem Rechner zur Verfügung gestellt werden sollen."
-
-#: standalone/scannerdrake:603
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr "Die Scanner dieses Rechners sind für andere Rechner nutzbar"
-
-#: standalone/scannerdrake:605
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Scanner mit folgenden Rechnern teilen:"
-
-#: standalone/scannerdrake:619
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Benutze Scanner auf entfernten Computern"
-
-#: standalone/scannerdrake:622
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Verwende die Scanner am Rechner:"
-
-#: standalone/scannerdrake:649 standalone/scannerdrake:721
-#: standalone/scannerdrake:871
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Gemeinsamer Zugriff auf lokale Scanner"
-
-#: standalone/scannerdrake:650
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr ""
-"Das sind die Rechner und Netzwerke, für die die lokalen Scanner zugänglich "
-"sein sollen:"
-
-#: standalone/scannerdrake:661 standalone/scannerdrake:811
-#, c-format
-msgid "Add host"
-msgstr "Hinzufügen eines Rechners"
-
-#: standalone/scannerdrake:667 standalone/scannerdrake:817
-#, c-format
-msgid "Edit selected host"
-msgstr "Änderung des markierten Rechners"
-
-#: standalone/scannerdrake:676 standalone/scannerdrake:826
-#, c-format
-msgid "Remove selected host"
-msgstr "Löschen des markierten Rechners"
-
-#: standalone/scannerdrake:700 standalone/scannerdrake:708
-#: standalone/scannerdrake:713 standalone/scannerdrake:759
-#: standalone/scannerdrake:850 standalone/scannerdrake:858
-#: standalone/scannerdrake:863 standalone/scannerdrake:909
-#, c-format
-msgid "Name/IP address of host:"
-msgstr "Name/IP-Adresse des Rechners:"
-
-#: standalone/scannerdrake:722 standalone/scannerdrake:872
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr ""
-"Wählen Sie den Rechner, dem der lokale Scanner bekannt gemacht werden soll:"
-
-#: standalone/scannerdrake:733 standalone/scannerdrake:883
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Sie müssen einen Rechnernamen oder eine IP eingeben.\n"
-
-#: standalone/scannerdrake:744 standalone/scannerdrake:894
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr ""
-"Der Computer ist bereits in der Liste, er kann nicht erneut hinzugefügt "
-"werden.\n"
-
-#: standalone/scannerdrake:799
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Scanner an anderen Rechnern nutzen"
-
-#: standalone/scannerdrake:800
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "Das sind die Rechner, für die der Scanner zugänglich sein soll:"
-
-#: standalone/scannerdrake:957
-#, 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 ""
-"Das Programm „saned“ muss installiert werden um Ihre lokalen Sanner\n"
-"freizugeben.\n"
-"Möchten Sie „saned“ nun installieren?"
-
-#: standalone/scannerdrake:961 standalone/scannerdrake:965
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "Ihre Scanner werden nicht im Netzwerk verfügbar sein."
-
-#: standalone/service_harddrake:113
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "Einige Geräte in der Klasse %s wurden entfernt:\n"
-
-#: standalone/service_harddrake:114
-#, c-format
-msgid "- %s was removed\n"
-msgstr "- %s wurde entfernt\n"
-
-#: standalone/service_harddrake:117
-#, c-format
-msgid "Some devices were added: %s\n"
-msgstr "Einige Geräte wurden hinzugefügt:%s\n"
-
-#: standalone/service_harddrake:118
-#, c-format
-msgid "- %s was added\n"
-msgstr "- %s wurde hinzugefügt\n"
-
-#: standalone/service_harddrake:235
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "Hardwareerkennung läuft"
-
-#: standalone/service_harddrake_confirm:7
-#, c-format
-msgid "Hardware changes in \"%s\" class (%s seconds to answer)"
-msgstr "Hardwareänderungen in der „%s“-Klasse (%s Sekunden zum Antworten)"
-
-#: standalone/service_harddrake_confirm:8
-#, c-format
-msgid "Do you want to run the appropriate config tool?"
-msgstr "Möchten Sie die zugehörenden Einstellungen aufrufen?"
-
-#: steps.pm:14
-#, c-format
-msgid "Language"
-msgstr "Sprache auswählen"
-
-#: steps.pm:15
-#, c-format
-msgid "License"
-msgstr "Lizenz"
-
-#: steps.pm:16
-#, c-format
-msgid "Configure mouse"
-msgstr "Maus konfigurieren"
-
-#: steps.pm:17
-#, c-format
-msgid "Hard drive detection"
-msgstr "Festplatten suchen"
-
-#: steps.pm:18
-#, c-format
-msgid "Select installation class"
-msgstr "Installationsart auswählen"
-
-#: steps.pm:19
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Tastatur auswählen"
-
-#: steps.pm:22
-#, c-format
-msgid "Format partitions"
-msgstr "Partitionen formatieren"
-
-#: steps.pm:23
-#, c-format
-msgid "Choose packages to install"
-msgstr "Zu installierende Pakete"
-
-#: steps.pm:24
-#, c-format
-msgid "Install system"
-msgstr "System installieren"
-
-#: steps.pm:25
-#, c-format
-msgid "Administrator password"
-msgstr "Administratorpasswort"
-
-#: steps.pm:26
-#, c-format
-msgid "Add a user"
-msgstr "Benutzer hinzufügen"
-
-#: steps.pm:27
-#, c-format
-msgid "Configure networking"
-msgstr "Netzwerk konfigurieren"
-
-#: steps.pm:28
-#, c-format
-msgid "Install bootloader"
-msgstr "Betriebssystemstarter"
-
-#: steps.pm:29
-#, c-format
-msgid "Configure X"
-msgstr "X konfigurieren"
-
-#: steps.pm:31
-#, c-format
-msgid "Configure services"
-msgstr "Dienste konfigurieren"
-
-#: steps.pm:32
-#, c-format
-msgid "Install updates"
-msgstr "Aktualisierungen"
+msgid "Russian Federation"
+msgstr "Russland"
-#: steps.pm:33
+#: timezone.pm:245
#, c-format
-msgid "Exit install"
-msgstr "Installation beenden"
+msgid "Yugoslavia"
+msgstr "Jugoslawien"
-#: ugtk2.pm:899
+#: ugtk2.pm:788
#, c-format
msgid "Is this correct?"
msgstr "Ist dies richtig?"
-#: ugtk2.pm:959
+#: ugtk2.pm:848
#, c-format
msgid "No file chosen"
msgstr "Keine Datei ausgewählt"
-#: ugtk2.pm:961
+#: ugtk2.pm:850
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Sie haben eine Datei ausgewählt, kein Verzeichnis"
-#: ugtk2.pm:963
+#: ugtk2.pm:852
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Sie haben ein Verzeichnis ausgewählt, keine Datei"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such directory"
msgstr "Das Verzeichnis existiert nicht"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such file"
msgstr "Die Datei existiert nicht"
-#: ugtk2.pm:1046
+#: ugtk2.pm:933
#, c-format
msgid "Expand Tree"
msgstr "Baum erweitern"
-#: ugtk2.pm:1047
+#: ugtk2.pm:934
#, c-format
msgid "Collapse Tree"
msgstr "Baum verkleinern"
-#: ugtk2.pm:1048
+#: ugtk2.pm:935
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "Umschalten zwischen unsortiert und gruppiert"
@@ -27323,527 +6888,3 @@ msgstr ""
#, c-format
msgid "Installation failed"
msgstr "Die Installation schlug fehl!"
-
-#~ msgid ""
-#~ "Copyright (C) 2001-2002 by Mandriva \n"
-#~ "\n"
-#~ "\n"
-#~ " DUPONT Sebastien (original version)\n"
-#~ "\n"
-#~ " CHAUMETTE Damien <dchaumette@mandriva.com>\n"
-#~ "\n"
-#~ " VIGNAUD Thierry <tvignaud@mandriva.com>"
-#~ msgstr ""
-#~ "Copyright © 2001-2002 by Mandriva \n"
-#~ "\n"
-#~ "\n"
-#~ " DUPONT Sebastien (Orginalversion)\n"
-#~ "\n"
-#~ " CHAUMETTE Damien <dchaumette@mandriva.com>\n"
-#~ "\n"
-#~ " VIGNAUD Thierry <tvignaud@mandriva.com>"
-
-#~ msgid "click here if you are sure."
-#~ msgstr "Klicken Sie hier, wenn Sie sicher sind."
-
-#~ msgid "here if no."
-#~ msgstr "Hier, falls nicht."
-
-#~ msgid "Remove List"
-#~ msgstr "Liste entfernen"
-
-#~ msgid "/_Upload the hardware list"
-#~ msgstr "/_Hardwareliste hochladen"
-
-#~ msgid "Upload the hardware list"
-#~ msgstr "Hardwareliste hochladen"
-
-#~ msgid "Account:"
-#~ msgstr "Zugang:"
-
-#~ msgid "Hostname:"
-#~ msgstr "Rechnername:"
-
-#, fuzzy
-#~ msgid "Cancel setup"
-#~ msgstr "Abbrechen"
-
-#~ msgid ""
-#~ " - Create Etherboot Enabled Boot Images:\n"
-#~ " \tTo boot a kernel via etherboot, a special kernel/initrd image "
-#~ "must be created.\n"
-#~ " \tmkinitrd-net does much of this work and drakTermServ is just a "
-#~ "graphical \n"
-#~ " \tinterface to help manage/customize these images. To create the "
-#~ "file \n"
-#~ " \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as "
-#~ "an include in \n"
-#~ " \tdhcpd.conf, you should create the etherboot images for at least "
-#~ "one full kernel."
-#~ msgstr ""
-#~ " - Erzeuge „Etherboot“bare Startabbilder:\n"
-#~ " \tUm einen Kernel über Etherboot zu laden muss ein speziellen "
-#~ "kernel/initrd-Abbild erzeugt werden.\n"
-#~ " \tmkinitrd-net erledigt einen großen Teil dieser Arbeit. "
-#~ "DrakTermServ ist nur eine grafische Schnitt-\n"
-#~ " \tstelle die bei der Verwaltung dieser Abbilder unstützt. Zum "
-#~ "erstellen der Datei \n"
-#~ " \t/etc/dhcpd.conf.etherboot-pcimap.include, die von dhcpd.conf "
-#~ "als Include-Datei hinzugezogen\n"
-#~ " \twird, sollten Sie mindestens für einen Kernel Etherboot-"
-#~ "Startabbilder erzeugen."
-
-#~ msgid ""
-#~ " - Maintain /etc/dhcpd.conf:\n"
-#~ " \tTo net boot clients, each client needs a dhcpd.conf entry, "
-#~ "assigning an IP \n"
-#~ " \taddress and net boot images to the machine. drakTermServ helps "
-#~ "create/remove \n"
-#~ " \tthese entries.\n"
-#~ "\t\t\t\n"
-#~ " \t(PCI cards may omit the image - etherboot will request the "
-#~ "correct image. \n"
-#~ "\t\t\tYou should also consider that when etherboot looks for the images, "
-#~ "it expects \n"
-#~ "\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk."
-#~ "nbi).\n"
-#~ "\t\t\t \n"
-#~ " \tA typical dhcpd.conf stanza to support a diskless client looks "
-#~ "like:"
-#~ msgstr ""
-#~ " - Pflege von /etc/dhcpd.conf:\n"
-#~ " \tUm Clients über das Netzwerk zu starten benötigt jeder Client "
-#~ "einen Eintrag\n"
-#~ " \tin dhcpd.conf, der dem Rechner eine IP-Adresse und "
-#~ "netzwerkfähige\n"
-#~ " \tStartabbilder zuweist. DrakTermServ hilft beim Erzeugen/"
-#~ "Entfernen\n"
-#~ " \tdieser Einträge.\n"
-#~ "\t\t\t\n"
-#~ " \t(PCI-Karten könnten das Image ablehnen - Etherboot wird das "
-#~ "richtige Image anfragen.\n"
-#~ "\t\t\tSie sollten weiter bedenken, dass Etherboot bei der Suche eines "
-#~ "Abbilds Einträge wie \n"
-#~ "\t\t\tboot-3c59x.nbi anstelle von boot-3c59x.2.4.19-16mdk.nbi erwartet).\n"
-#~ "\t\t\t \n"
-#~ " \tEine typische dhcpd.conf ??stanza to support?? diskettenlose "
-#~ "Clients wie:"
-
-#~ msgid ""
-#~ " While you can use a pool of IP addresses, rather than setup a "
-#~ "specific entry for\n"
-#~ " a client machine, using a fixed address scheme facilitates using "
-#~ "the functionality\n"
-#~ " of client-specific configuration files that ClusterNFS provides.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#type' entry is only used by drakTermServ. Clients "
-#~ "can either be 'thin'\n"
-#~ " or 'fat'. Thin clients run most software on the server via "
-#~ "XDMCP, while fat clients run \n"
-#~ " most software on the client machine. A special inittab, %s is\n"
-#~ " written for thin clients. System config files xdm-config, kdmrc, "
-#~ "and gdm.conf are \n"
-#~ " modified if thin clients are used, to enable XDMCP. Since there "
-#~ "are security issues in \n"
-#~ " using XDMCP, hosts.deny and hosts.allow are modified to limit "
-#~ "access to the local\n"
-#~ " subnet.\n"
-#~ "\t\t\t\n"
-#~ " Note: The '#hdw_config' entry is also only used by drakTermServ. "
-#~ "Clients can either \n"
-#~ " be 'true' or 'false'. 'true' enables root login at the client "
-#~ "machine and allows local \n"
-#~ " hardware configuration of sound, mouse, and X, using the 'drak' "
-#~ "tools. This is enabled \n"
-#~ " by creating separate config files associated with the client's IP "
-#~ "address and creating \n"
-#~ " read/write mount points to allow the client to alter the file. "
-#~ "Once you are satisfied \n"
-#~ " with the configuration, you can remove root login privileges from "
-#~ "the client.\n"
-#~ "\t\t\t\n"
-#~ " Note: You must stop/start the server after adding or changing "
-#~ "clients."
-#~ msgstr ""
-#~ " Obwohl Sie einen Bereich von IP-Adressen verwenden können, "
-#~ "anstatt für\n"
-#~ " jeden Client ein spezifisches Setup, erleichtert ein feste "
-#~ "Adressvergabe die \n"
-#~ " Client-spezifischen Einstellungen die ClusterNFS anbietet.\n"
-#~ "\t\t\t\n"
-#~ " Anmerkung: Der „#type“-Eintrag wird nur von drakTermServ benutzt. "
-#~ "Clients\n"
-#~ " können entweder „schlank“ oder „voll“ sein.\n"
-#~ " Schlanke Clients starten die meisten Programme auf dem Server "
-#~ "mittels XDMCP, \n"
-#~ " während volle Clients die meisten Programme auf dem Client selbst "
-#~ "starten.\n"
-#~ " Eine besondere inittab, %s wurde für schlanke Clients "
-#~ "geschrieben.\n"
-#~ " Die System-Konfigurationsdateien xdm-config, kdmrc, und gdm.conf "
-#~ "werden \n"
-#~ " modifiziert falls schlanke Clients benutzt werden, um XDMCP zu "
-#~ "ermöglichen.\n"
-#~ " Aufgrund von Sicherheitsproblemen in XDMCP werden die Dateien "
-#~ "hosts.deny\n"
-#~ " und hosts.allow are modifiziert umd den Zugang auf das lokale "
-#~ "Netzwerk\n"
-#~ " zu beschränken.\n"
-#~ "\t\t\t\n"
-#~ " Anmerkung: Der „#hdw_config“-Eintrag wird nur vondrakTermServ. "
-#~ "benutzt.\n"
-#~ " Clients kann entweder „richtig“ oder „falsch“ sein. „richtig“ "
-#~ "erlaubt den Root-\n"
-#~ " Zugang auf dem Client-Rechner und ermöglicht Geräte-Einstellungen "
-#~ "für\n"
-#~ " Sound, Maus und X, wobei die „Drak“-Werkzeuge benutzt werden.\n"
-#~ " Dies wird ermöglicht durch das Erstellen seperater "
-#~ "Konfigurationsdateien.\n"
-#~ " Diese werden mit den IP-Adressen der Clients assoziiert. Das "
-#~ "Erzeugen von Lese-/\n"
-#~ " Schreib-Einhängepunkte um das clientseitige Ändern der Datei zu "
-#~ "erlauben.\n"
-#~ " Sobald Sie mit den Einstellungen des Clients zufrieden sind "
-#~ "können Sie den\n"
-#~ " Root-Zugang auf dem Client enfernen.\n"
-#~ "\t\t\t\n"
-#~ " Anmerkung: Sie müssen den Server neu starten nach dem Ändern oder "
-#~ "Hinzufügen\n"
-#~ " von Clients."
-
-#~ msgid ""
-#~ " - Maintain /etc/exports:\n"
-#~ " \tClusternfs allows export of the root filesystem to diskless "
-#~ "clients. drakTermServ\n"
-#~ " \tsets up the correct entry to allow anonymous access to the root "
-#~ "filesystem from\n"
-#~ " \tdiskless clients.\n"
-#~ "\n"
-#~ " \tA typical exports entry for clusternfs is:\n"
-#~ " \t\t\n"
-#~ " \t/\t\t\t\t\t(ro,all_squash)\n"
-#~ " \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-#~ "\t\t\t\n"
-#~ " \tWith SUBNET/MASK being defined for your network."
-#~ msgstr ""
-#~ " - Wartung von /etc/exports:\n"
-#~ " \tClusternfs erlaubt den Export des Wurzeldateisystems an "
-#~ "festplattenlose Clients. drakTermServ\n"
-#~ " \tstellt die korrekten Einträge ein, um anonymen Zugriff zum "
-#~ "Wurzeldateisystem von \n"
-#~ " \tfestplattenlosen Clients zu erlauben.\n"
-#~ "\n"
-#~ " \tEin typischer exports Eintrag für clusternfs ist:\n"
-#~ " \t\t\n"
-#~ " \t/\t\t\t\t\t(ro,all_squash)\n"
-#~ " \t/home\t\t\t\tSUBNETZ/MASKE(rw,root_squash)\n"
-#~ "\t\t\t\n"
-#~ " \tMit SUBNETZ/MASKE definiert für Ihr Netzwerk."
-
-#~ msgid ""
-#~ " - Maintain %s:\n"
-#~ " \tFor users to be able to log into the system from a diskless "
-#~ "client, their entry in\n"
-#~ " \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
-#~ " \thelps in this respect by adding or removing system users from "
-#~ "this file."
-#~ msgstr ""
-#~ " - %s warten:\n"
-#~ " \tUm Benutzern von diskettenlosen Clients das Einloggen zu "
-#~ "erlauben, muss ihr Eintrag in\n"
-#~ " \t/etc/shadow dupliziert werden nach %s. drakTermServ\n"
-#~ " \tunterstützt dies durch das Hinzufügen oder Entfernen der "
-#~ "Benutzer aus dieser Datei."
-
-#~ msgid ""
-#~ " - Per client %s:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tdrakTermServ will help create these files."
-#~ msgstr ""
-#~ " - Pro Client %s:\n"
-#~ " \tDurch ClusterNFS hat jeder Client seine eigenen, eigenständigen "
-#~ "Konfigurationsdateien\n"
-#~ " \tauf dem root-Dateisystem des Servers. Durch das Erlauben Client-"
-#~ "seitiger Geräteeinstellungen\n"
-#~ " \thilft drakTermServ beim Erzeugen dieser Dateien."
-
-#~ msgid ""
-#~ " - Per client system configuration files:\n"
-#~ " \tThrough clusternfs, each diskless client can have its own "
-#~ "unique configuration files\n"
-#~ " \ton the root filesystem of the server. By allowing local client "
-#~ "hardware configuration, \n"
-#~ " \tclients can customize files such as /etc/modules.conf, /etc/"
-#~ "sysconfig/mouse, \n"
-#~ " \t/etc/sysconfig/keyboard on a per-client basis.\n"
-#~ "\n"
-#~ " Note: Enabling local client hardware configuration does enable "
-#~ "root login to the terminal \n"
-#~ " server on each client machine that has this feature enabled. "
-#~ "Local configuration can be\n"
-#~ " turned back off, retaining the configuration files, once the "
-#~ "client machine is configured."
-#~ msgstr ""
-#~ " - Pro Client System-Konfigurationsdateien:\n"
-#~ " \tDurch ClusterNFS hat jeder Client seine eigenen, eigenständigen "
-#~ "Konfigurationsdateien\n"
-#~ " \tauf dem root-Dateisystem des Servers. Durch das Erlauben Client-"
-#~ "seitiger\n"
-#~ " \tGeräteeinstellungen können Clients Dateien wie /etc/modules."
-#~ "conf,\n"
-#~ " \t/etc/sysconfig/mouse oder /etc/sysconfig/keyboard auf Client-"
-#~ "Basis\n"
-#~ "\t\tanpassen.\n"
-#~ "\n"
-#~ " Anmerkung: Das Erlauben lokaler Client-Geräteeinstellungen "
-#~ "ermöglicht Root-Zugang zum\n"
-#~ "\tTerminal-Server auf jedem Client, der diese Funktion aktiviert hat. Die "
-#~ "lokale Konfiguration\n"
-#~ "\tkann wieder ausgeschaltet werden unter Beibehaltung der Einstellungen, "
-#~ "sobald der Client\n"
-#~ "\teingerichtet ist."
-
-#~ msgid ""
-#~ " - /etc/xinetd.d/tftp:\n"
-#~ " \tdrakTermServ will configure this file to work in conjunction "
-#~ "with the images created\n"
-#~ " \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve "
-#~ "up the boot image to \n"
-#~ " \teach diskless client.\n"
-#~ "\n"
-#~ " \tA typical TFTP configuration file looks like:\n"
-#~ " \t\t\n"
-#~ " \tservice tftp\n"
-#~ "\t\t\t{\n"
-#~ " disable = no\n"
-#~ " socket_type = dgram\n"
-#~ " protocol = udp\n"
-#~ " wait = yes\n"
-#~ " user = root\n"
-#~ " server = /usr/sbin/in.tftpd\n"
-#~ " server_args = -s /var/lib/tftpboot\n"
-#~ " \t}\n"
-#~ " \t\t\n"
-#~ " \tThe changes here from the default installation are changing the "
-#~ "disable flag to\n"
-#~ " \t'no' and changing the directory path to /var/lib/tftpboot, "
-#~ "where mkinitrd-net\n"
-#~ " \tputs its images."
-#~ msgstr ""
-#~ " - /etc/xinetd.d/tftp:\n"
-#~ " \tdrakTermServ wird diese Datei so einrichten, dass sie mit den "
-#~ "Abbildern, die\n"
-#~ " \tdurch mkinitrd-net erstellt wurden, zusammenspielt und den "
-#~ "Einträgen in\n"
-#~ " \t/etc/dhcpd.conf, um die Startabbilder jedem festplattenlosen "
-#~ "Client zur\n"
-#~ " \tVerfügung zu stellen.\n"
-#~ "\n"
-#~ " \tEine typische TFTP-Konfigurationsdatei sieht so aus:\n"
-#~ " \t\t\n"
-#~ " \tservice tftp\n"
-#~ "\t\t\t{\n"
-#~ " disable = no\n"
-#~ " socket_type = dgram\n"
-#~ " protocol = udp\n"
-#~ " wait = yes\n"
-#~ " user = root\n"
-#~ " server = /usr/sbin/in.tftpd\n"
-#~ " server_args = -s /var/lib/tftpboot\n"
-#~ " \t}\n"
-#~ " \t\t\n"
-#~ " \tDie Änderungen hier von der Standardinstallation ändern den "
-#~ "disable-Schalter auf „no“\n"
-#~ " \tund setzen den Verzeichnispfad auf /var/lib/tftpboot, wo "
-#~ "mkinitrd-net seine Abbilder \tablegt."
-
-#~ msgid ""
-#~ " - Create etherboot floppies/CDs:\n"
-#~ " \tThe diskless client machines need either ROM images on the NIC, "
-#~ "or a boot floppy\n"
-#~ " \tor CD to initiate the boot sequence. drakTermServ will help "
-#~ "generate these\n"
-#~ " \timages, based on the NIC in the client machine.\n"
-#~ " \t\t\n"
-#~ " \tA basic example of creating a boot floppy for a 3Com 3c509 "
-#~ "manually:\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-#~ msgstr ""
-#~ " - Erstelle etherboot Disketten/CDs:\n"
-#~ " \tDie plattenlose Client-Maschine benötigt entweder ROM-Abbilder "
-#~ "auf der Netzwerkkarte, einer Startdiskette\n"
-#~ " \toder einer CD, um den Startvorgang einzuleiten. drakTermServ "
-#~ "wird dabei helfen, diese Abbilder basierend\n"
-#~ " \tauf der Netzwerkkarte der Client-Maschine zu erstellen.\n"
-#~ " \t\t\n"
-#~ " \tEin einfaches Beispiel, um eine Startdiskette für eine 3Com "
-#~ "3c509 manuell zu erstellen:\n"
-#~ " \t\t\n"
-#~ " \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-
-#~ msgid "Configuration changed - restart clusternfs/dhcpd?"
-#~ msgstr "Konfiguration geändert - Neustart von clusternfs/dhcpd?"
-
-#~ msgid ""
-#~ "The following media have been found and will be used during install: %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do you have a supplementary installation media to configure?"
-#~ msgstr ""
-#~ "Die folgenden Medien wurden gefunden und werden während der Installation "
-#~ "verwendet: %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Möchten Sie weitere Installationsmedien angeben?"
-
-#~ msgid "Create PXE images."
-#~ msgstr "Erzeuge PXE Abbilder."
-
-#~ msgid ""
-#~ "Allow an ordinary user to mount the file system. The\n"
-#~ "name of the mounting user is written to mtab so that he can unmount the "
-#~ "file\n"
-#~ "system again. This option implies the options noexec, nosuid, and nodev\n"
-#~ "(unless overridden by subsequent options, as in the option line\n"
-#~ "user,exec,dev,suid )."
-#~ msgstr ""
-#~ "Einem normalen Benutzer das Einhängen des Dateisystem erlauben.\n"
-#~ "Der Benutzername wird in mtab eingetragen, so dass er das Datei-\n"
-#~ "system auch wieder aushängen kann.\n"
-#~ "Diese Option beinhaltet die Optionen noexec, nosuid und nodec\n"
-#~ "(solange nicht nachträglich durch eine der Optionen user, exec, dev \n"
-#~ "oder suid überschrieben)."
-
-#~ msgid "Unknown Model"
-#~ msgstr "Unbekanntes Modell"
-
-#~ msgid ""
-#~ "Either with the newer HPLIP which allows printer maintenance through the "
-#~ "easy-to-use graphical application \"Toolbox\" and four-edge full-bleed on "
-#~ "newer PhotoSmart models "
-#~ msgstr ""
-#~ "Entweder mit dem neueren HPLIP, das die Druckerwartung über die einfach "
-#~ "zu bedienende Grafikanwendung „Toolbox‟ und einen Vollbildausdruck auf "
-#~ "neueren PhotoSmart-Modellen erlaubt "
-
-#~ msgid ""
-#~ "or with the older HPOJ which allows only scanner and memory card access, "
-#~ "but could help you in case of failure of HPLIP. "
-#~ msgstr ""
-#~ "oder mit dem älteren HPOJ, das nur den Zugriff auf Scanner und "
-#~ "Speicherkarten ermöglicht, Ihnen aber weiterhilft, wenn HPLIP nicht "
-#~ "funktioniert. "
-
-#~ msgid "HPOJ"
-#~ msgstr "HPOJ"
-
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3000/3200/3300/4345 with scanner, DeskJet 450, "
-#~ "Sony IJP-V100), an HP PhotoSmart or an HP LaserJet 2200?"
-#~ msgstr ""
-#~ "Ist Ihr Drucker ein Multifunktionsgerät von HP oder Sony (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3000/3200/3300/4345 mit Scanner, DeskJet 450, "
-#~ "Sony IJP-V100), ein HP PhotoSmart oder ein HP LaserJet 2200?"
-
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Installiere mtools-Pakete..."
-
-#~ msgid "Photo memory card access on the %s will not be possible."
-#~ msgstr "Photo Speicherkarten Zugriff auf %s wird nicht ermöglicht."
-
-#~ msgid "Scanning on your HP multi-function device"
-#~ msgstr "Scannen auf Ihrem HP-Multifunktionsgerät"
-
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr "Photo Speicherkarten Zugriff auf Ihrem HP Multifunktionsgerät"
-
-#~ msgid "Printing/Scanning/Photo Cards on \"%s\""
-#~ msgstr "Drucken/Scannen/Fotokarten mit „%s“"
-
-#~ msgid "Printing/Scanning on \"%s\""
-#~ msgstr "Drucken/Scannen mit „%s“"
-
-#~ msgid "Printing/Photo Card Access on \"%s\""
-#~ msgstr "Drucken/Fotokartenzugriff mit „%s“"
-
-#~ msgid ""
-#~ "Your multi-function device was configured automatically to be able to "
-#~ "scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to "
-#~ "specify the scanner when you have more than one) from the command line or "
-#~ "with the graphical interfaces \"xscanimage\" or \"xsane\". If you are "
-#~ "using the GIMP, you can also scan by choosing the appropriate point in "
-#~ "the \"File\"/\"Acquire\" menu. Call also \"man scanimage\" on the command "
-#~ "line to get more information.\n"
-#~ "\n"
-#~ "You do not need to run \"scannerdrake\" for setting up scanning on this "
-#~ "device, you only need to use \"scannerdrake\" if you want to share the "
-#~ "scanner on the network."
-#~ msgstr ""
-#~ "Ihr Multifunktionsgerät wurde automatisch auch zum Scannen eingerichtet. "
-#~ "Sie können nun mit dem Befehl „scanimage“ („scanimage -d hp:%s“ um den "
-#~ "Scanner auszuwählen, falls Sie mehrere angeschlossen haben), eingegeben "
-#~ "in der Kommandozeile, scannen. Wenn Sie eine grafisches Werkzeug "
-#~ "verwenden wollen: „xscanimage“ bzw. „xsane“. Sie können auch den GIMP "
-#~ "verwenden. Wählen Sie einfach im Menü „Datei/Holen“ den entsprechenden "
-#~ "Eintrag. Sie können sich auch mittels „man scanimage„ bzw „man sane-hp“ "
-#~ "in der Kommandozeile weitere Informationen ausgeben lassen.\n"
-#~ "\n"
-#~ "Sie brauchen für dieses Gerät „scannerdrake“ nicht zu starten, um es zum "
-#~ "Scannen einzurichten. Sie müssen „scannerdrake“ nur starten, wenn Sie den "
-#~ "Scanner im Netzwerk freigeben wollen."
-
-#~ msgid ""
-#~ "Your printer was configured automatically to give you access to the photo "
-#~ "card drives from your PC. Now you can access your photo cards using the "
-#~ "graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -"
-#~ "> \"MTools File Manager\") or the command line utilities \"mtools"
-#~ "\" (enter \"man mtools\" on the command line for more info). You find the "
-#~ "card's file system under the drive letter \"p:\", or subsequent drive "
-#~ "letters when you have more than one HP printer with photo card drives. In "
-#~ "\"MtoolsFM\" you can switch between drive letters with the field at the "
-#~ "upper-right corners of the file lists."
-#~ msgstr ""
-#~ "Ihr Drucker wurde automatisch so konfiguriert, dass Sie von Ihrem Rechner "
-#~ "auf die Foto-Speicherkartenlaufwerke zugreifen können. Sie können jetzt "
-#~ "entweder mit dem grafischen Programm MToolsFM (Menü: „Programme“ -> "
-#~ "„Dateiwerkzeuge“ -> „MTools-Datei-Manager“) oder auf der Kommandozeile "
-#~ "mit den mtools (Für mehr Informationen geben Sie „man mtools“ auf der "
-#~ "Kommandozeile ein) auf die eingelegte Karte zugreifen. Sie finden das "
-#~ "Dateisystem der Karte unter dem Laufwerksbuchstaben „p:“ oder, wenn Sie "
-#~ "mehr als einen HP-Drucker mit Foto-Speicherkartenlaufwerken haben, unter "
-#~ "den nachfolgenden Buchstaben. In MToolsFM können Sie zwischen den "
-#~ "Laufwerksbuchstaben mit dem Feld über der oberen rechten Ecke der "
-#~ "Dateiliste umschalten."
-
-#~ msgid "Custom setup/crontab entry:"
-#~ msgstr "Angepasster setup/crontab Eintrag"
-
-#~ msgid "Note that currently all 'net' media also use the hard drive."
-#~ msgstr ""
-#~ "Beachten Sie, dass gegenwärtig alle „Netzmedien“ ebenfalls die Festplatte "
-#~ "nutzen."
-
-#~ msgid ""
-#~ "Before installing any fonts, be sure that you have the right to use and "
-#~ "install them on your system.\n"
-#~ "\n"
-#~ "-You can install the fonts the normal way. In rare cases, bogus fonts may "
-#~ "hang up your X Server."
-#~ msgstr ""
-#~ "Bevor Sie irgendwelche Schriftarten installieren, müssen Sie das Recht "
-#~ "haben, diese zu verwenden und zu installieren.\n"
-#~ "\n"
-#~ "- Sie können die Schriftarten auf normalem Weg einbinden. In seltenen "
-#~ "Fällen können defekte Schriftarten den X-Server lahmlegen."
-
-#~ msgid ""
-#~ "%s cannot be displayed \n"
-#~ ". No Help entry of this type\n"
-#~ msgstr ""
-#~ "%s kann nicht angezeigt werden\n"
-#~ ". Kein Eintrag in der Hilfedatei\n"
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index 6af39d626..6cf573035 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-el\n"
-"POT-Creation-Date: 2006-03-05 18:57+0800\n"
+"POT-Creation-Date: 2007-03-21 12:10+0100\n"
"PO-Revision-Date: 2004-09-15 13:28+0200\n"
"Last-Translator: Νίκος Νύκταρης (Nick Niktaris) <niktarin@yahoo.com>\n"
"Language-Team: Greek <nls@tux.hellug.gr>\n"
@@ -16,791 +16,20 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0.1\n"
-#: ../move/move.pm:292
-#, fuzzy, c-format
-msgid "Which USB key do you want to format?"
-msgstr "Τι τύπου επιλογή θέλετε να προσθέσετε;"
-
-#: ../move/move.pm:296
-#, c-format
-msgid ""
-"You are about to format a USB device \"%s\". This will delete all data on "
-"it.\n"
-"Make sure that the selected device is the USB key you want to format. \n"
-"We advise you to unplug all other USB storage devices while doing this "
-"operation."
-msgstr ""
-
-#: ../move/move.pm:448 ../move/move.pm:460
-#, fuzzy, c-format
-msgid "Key is not writable"
-msgstr "Το XawTV εγκαταστάθηκε!"
-
-#: ../move/move.pm:450
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-
-#: ../move/move.pm:452
-#, c-format
-msgid "Retry"
-msgstr "Προσπάθεια ξανά"
-
-#: ../move/move.pm:453 ../move/move.pm:497
-#, c-format
-msgid "Continue without USB key"
-msgstr ""
-
-#: ../move/move.pm:462
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled, but we can not safely\n"
-"unplug it now.\n"
-"\n"
-"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandriva Move again."
-msgstr ""
-
-#: ../move/move.pm:468 help.pm:410 install_steps_interactive.pm:1303
-#, c-format
-msgid "Reboot"
-msgstr "Επανεκκίνηση"
-
-#: ../move/move.pm:473
-#, c-format
-msgid ""
-"Your USB key does not have any valid Windows (FAT) partitions.\n"
-"We need one to continue (beside, it's more standard so that you\n"
-"will be able to move and access your files from machines\n"
-"running Windows). Please plug in an USB key containing a\n"
-"Windows partition instead.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-
-#: ../move/move.pm:483
-#, c-format
-msgid ""
-"We did not detect any USB key on your system. If you\n"
-"plug in an USB key now, Mandriva Move will have the ability\n"
-"to transparently save the data in your home directory and\n"
-"system wide configuration, for next boot on this computer\n"
-"or another one. Note: if you plug in a key now, wait several\n"
-"seconds before detecting again.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-
-#: ../move/move.pm:494
-#, c-format
-msgid "Need a key to save your data"
-msgstr ""
-
-#: ../move/move.pm:496
-#, c-format
-msgid "Detect USB key again"
-msgstr ""
-
-#: ../move/move.pm:517
-#, fuzzy, c-format
-msgid "Setting up USB key"
-msgstr "Γίνεται ρύθμιση των συσκευών PNP ISA: "
-
-#: ../move/move.pm:517
-#, fuzzy, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Παρακαλώ περιμένετε, ρυθμίζεται το επίπεδο ασφαλείας..."
-
-#: ../move/move.pm:546
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
-
-#: ../move/move.pm:556
-#, fuzzy, c-format
-msgid "Auto configuration"
-msgstr "Προσαρμοσμένη Ρύθμιση"
-
-#: ../move/move.pm:556
-#, fuzzy, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Παρακαλώ περιμένετε, ρυθμίζεται το επίπεδο ασφαλείας..."
-
-#: ../move/move.pm:604 ../move/move.pm:660 ../move/move.pm:664
-#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/interactive.pm:231
-#: diskdrake/interactive.pm:244 diskdrake/interactive.pm:405
-#: diskdrake/interactive.pm:423 diskdrake/interactive.pm:560
-#: diskdrake/interactive.pm:565 diskdrake/smbnfs_gtk.pm:41 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:52 fsedit.pm:218 install_any.pm:1775
-#: install_any.pm:1827 install_steps.pm:81 install_steps_interactive.pm:37
-#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
-#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
-#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
-#: network/netconnect.pm:837 network/netconnect.pm:866
-#: network/netconnect.pm:965 network/netconnect.pm:969
-#: network/netconnect.pm:973 network/netconnect.pm:978
-#: network/netconnect.pm:1123 network/netconnect.pm:1127
-#: network/netconnect.pm:1246 network/netconnect.pm:1251
-#: network/netconnect.pm:1271 network/netconnect.pm:1428
-#: network/thirdparty.pm:321 network/thirdparty.pm:328
-#: network/thirdparty.pm:372 network/thirdparty.pm:374
-#: network/thirdparty.pm:395 network/thirdparty.pm:419
-#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
-#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
-#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
-#: printer/printerdrake.pm:450 printer/printerdrake.pm:514
-#: printer/printerdrake.pm:686 printer/printerdrake.pm:690
-#: printer/printerdrake.pm:772 printer/printerdrake.pm:1555
-#: printer/printerdrake.pm:1603 printer/printerdrake.pm:1640
-#: printer/printerdrake.pm:1685 printer/printerdrake.pm:1689
-#: printer/printerdrake.pm:1703 printer/printerdrake.pm:1795
-#: printer/printerdrake.pm:1876 printer/printerdrake.pm:1880
-#: printer/printerdrake.pm:1884 printer/printerdrake.pm:1933
-#: printer/printerdrake.pm:1991 printer/printerdrake.pm:1995
-#: printer/printerdrake.pm:2009 printer/printerdrake.pm:2129
-#: printer/printerdrake.pm:2133 printer/printerdrake.pm:2176
-#: printer/printerdrake.pm:2249 printer/printerdrake.pm:2267
-#: printer/printerdrake.pm:2276 printer/printerdrake.pm:2285
-#: printer/printerdrake.pm:2296 printer/printerdrake.pm:2360
-#: printer/printerdrake.pm:2512 printer/printerdrake.pm:2947
-#: printer/printerdrake.pm:3231 printer/printerdrake.pm:3237
-#: printer/printerdrake.pm:3802 printer/printerdrake.pm:3806
-#: printer/printerdrake.pm:3810 printer/printerdrake.pm:4206
-#: printer/printerdrake.pm:4446 printer/printerdrake.pm:4474
-#: printer/printerdrake.pm:4551 printer/printerdrake.pm:4617
-#: printer/printerdrake.pm:4737 standalone/drakTermServ:422
-#: standalone/drakTermServ:492 standalone/drakTermServ:501
-#: standalone/drakTermServ:812 standalone/drakTermServ:819
-#: standalone/drakTermServ:845 standalone/drakTermServ:894
-#: standalone/drakTermServ:1146 standalone/drakTermServ:1181
-#: standalone/drakTermServ:1634 standalone/drakTermServ:1643
-#: standalone/drakTermServ:1651 standalone/drakTermServ:1656
-#: standalone/drakTermServ:1664 standalone/drakTermServ:1680
-#: standalone/drakTermServ:1700 standalone/drakauth:36
-#: standalone/drakbackup:511 standalone/drakbackup:625
-#: standalone/drakbackup:1110 standalone/drakbackup:1141
-#: standalone/drakbackup:1332 standalone/drakbackup:1664
-#: standalone/drakbackup:1820 standalone/drakbackup:2548
-#: standalone/drakbackup:4463 standalone/drakclock:124
-#: standalone/drakconnect:676 standalone/drakconnect:680
-#: standalone/drakconnect:685 standalone/drakconnect:700
-#: standalone/drakfont:209 standalone/drakfont:222 standalone/drakfont:260
-#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakhosts:98
-#: standalone/drakhosts:246 standalone/drakhosts:253 standalone/drakhosts:260
-#: standalone/draknfs:306 standalone/draknfs:609 standalone/draknfs:616
-#: standalone/draknfs:623 standalone/drakroam:33 standalone/draksambashare:384
-#: standalone/draksambashare:388 standalone/draksambashare:391
-#: standalone/draksambashare:394 standalone/draksambashare:453
-#: standalone/draksambashare:477 standalone/draksambashare:551
-#: standalone/draksambashare:633 standalone/draksambashare:700
-#: standalone/draksambashare:800 standalone/draksambashare:807
-#: standalone/draksambashare:942 standalone/draksambashare:1133
-#: standalone/draksambashare:1142 standalone/draksambashare:1151
-#: standalone/draksambashare:1172 standalone/draksambashare:1181
-#: standalone/draksambashare:1190 standalone/draksambashare:1210
-#: standalone/draksambashare:1218 standalone/draksambashare:1230
-#: standalone/draksplash:162 standalone/drakxtv:107
-#: standalone/finish-install:79 standalone/logdrake:171
-#: standalone/logdrake:439 standalone/logdrake:444 standalone/scannerdrake:59
-#: standalone/scannerdrake:202 standalone/scannerdrake:261
-#: standalone/scannerdrake:732 standalone/scannerdrake:743
-#: standalone/scannerdrake:882 standalone/scannerdrake:893
-#: standalone/scannerdrake:963 wizards.pm:95 wizards.pm:99 wizards.pm:121
-#, c-format
-msgid "Error"
-msgstr "Σφάλμα"
-
-#: ../move/move.pm:605 install_steps.pm:82
-#, c-format
-msgid ""
-"An error occurred, but I do not know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Προκλήθηκε ένα σφάλμα που δεν ξέρω πώς να το χειριστώ.\n"
-"Συνεχίστε με δική σας ευθύνη."
-
-#: ../move/move.pm:660 install_steps_interactive.pm:37
-#, c-format
-msgid "An error occurred"
-msgstr "Προκλήθηκε σφάλμα"
-
-#: ../move/move.pm:666
-#, c-format
-msgid ""
-"An error occurred:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"This may come from corrupted system configuration files\n"
-"on the USB key, in this case removing them and then\n"
-"rebooting Mandriva Move would fix the problem. To do\n"
-"so, click on the corresponding button.\n"
-"\n"
-"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-
-#: ../move/move.pm:681
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "Να αφαιρεθεί το αρχείο loopback;"
-
-#: ../move/move.pm:682
-#, c-format
-msgid "Simply reboot"
-msgstr ""
-
-#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr ""
-
-#: ../move/tree/mdk_totem:71
-#, fuzzy, c-format
-msgid "Kill those programs"
-msgstr "πρόσβαση σε προγράμματα Χ"
-
-#: ../move/tree/mdk_totem:72
-#, fuzzy, c-format
-msgid "No CDROM support"
-msgstr "Υποστήριξη ραδιοφώνου:"
-
-#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1062 diskdrake/interactive.pm:1072
-#: diskdrake/interactive.pm:1125
-#, c-format
-msgid "Read carefully!"
-msgstr "Διαβάστε προσεκτικά!"
-
-#: ../move/tree/mdk_totem:77
-#, c-format
-msgid ""
-"You can not use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-
-#: ../move/tree/mdk_totem:101
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr ""
-
-#: Xconfig/card.pm:13
-#, c-format
-msgid "256 kB"
-msgstr "256 kB"
-
-#: Xconfig/card.pm:14
-#, c-format
-msgid "512 kB"
-msgstr "512 kB"
-
-#: Xconfig/card.pm:15
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
-
-#: Xconfig/card.pm:16
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
-
-#: Xconfig/card.pm:17
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
-
-#: Xconfig/card.pm:18
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
-
-#: Xconfig/card.pm:19
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: Xconfig/card.pm:20
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
-
-#: Xconfig/card.pm:21
-#, c-format
-msgid "64 MB or more"
-msgstr "64 MB ή περισσότερα"
-
-#: Xconfig/card.pm:162
-#, c-format
-msgid "X server"
-msgstr "εξυπηρετητής X"
-
-#: Xconfig/card.pm:163
-#, c-format
-msgid "Choose an X server"
-msgstr "Επιλέξτε τον εξυπηρετητή Χ"
-
-#: Xconfig/card.pm:195
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Ρύθμιση πολλών κεφαλών"
-
-#: Xconfig/card.pm:196
-#, fuzzy, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"\n"
-" Τι?"
-
-#: Xconfig/card.pm:265
-#, fuzzy, c-format
-msgid "Can not install Xorg package: %s"
-msgstr "Εγκατάσταση πακέτου %s"
-
-#: Xconfig/card.pm:275
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Επιλέξτε το μέγεθος μνήμης της κάρτας γραφικών"
-
-#: Xconfig/card.pm:371
-#, c-format
-msgid "Xorg configuration"
-msgstr "Ρυθμίσεις Xorg"
-
-#: Xconfig/card.pm:373
-#, c-format
-msgid "Which configuration of Xorg do you want to have?"
-msgstr "Τι ρύθμιση Xorg θέλετε να έχετε;"
-
-#: Xconfig/card.pm:406
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Ρύθμιση όλων των κεφαλών ανεξάρτητα"
-
-#: Xconfig/card.pm:407
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Χρήση επέκτασης Xinerama"
-
-#: Xconfig/card.pm:412
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Ρύθμιση μόνο της κάρτας \"%s\" %s"
-
-#: Xconfig/card.pm:424 Xconfig/various.pm:23
-#, c-format
-msgid "Xorg %s"
-msgstr "Xorg %s"
-
-#: Xconfig/card.pm:431 Xconfig/various.pm:22
-#, c-format
-msgid "Xorg %s with 3D hardware acceleration"
-msgstr "Xorg %s με επιτάχυνση τρισδιάστατων γραφικών"
-
-#: Xconfig/card.pm:433
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with Xorg %s."
-msgstr ""
-"Η κάρτα γραφικών σας υποστηρίζει επιτάχυνση τρισδιάστατων γραφικών στα Xorg %"
-"s."
-
-#: Xconfig/card.pm:439
-#, c-format
-msgid "Xorg %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "Xorg %s με ΠΕΙΡΑΜΑΤΙΚΗ επιτάχυνση τρισδιάστατων γραφικών"
-
-#: Xconfig/card.pm:441
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with Xorg %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Η κάρτα γραφικών σας υποστηρίζει επιτάχυνση τρισδιάστατων γραφικών στα Xorg %"
-"s,\n"
-"ΠΡΟΣΟΧΗ: ΠΕΙΡΑΜΑΤΙΚΗ ΥΠΟΣΤΗΡΙΞΗ - ΜΠΟΡΕΙ ΝΑ ΠΑΓΩΣΕΙ ΤΟΝ ΥΠΟΛΟΓΙΣΤΗ ΣΑΣ."
-
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:1021
-#, c-format
-msgid "Custom"
-msgstr "Προσαρμοσμένο"
-
-#: Xconfig/main.pm:127 any.pm:742 diskdrake/dav.pm:26 help.pm:15
-#: install_steps_interactive.pm:1303 printer/printerdrake.pm:882
-#: printer/printerdrake.pm:899 printer/printerdrake.pm:4546
-#: printer/printerdrake.pm:5010 standalone/drakhosts:263
-#: standalone/drakroam:230 standalone/draksplash:93 standalone/logdrake:176
-#: standalone/net_applet:103 standalone/scannerdrake:494
-#, c-format
-msgid "Quit"
-msgstr "Έξοδος"
-
-#: Xconfig/main.pm:129
-#, c-format
-msgid "Graphic Card"
-msgstr "Κάρτα Γραφικών"
-
-#: Xconfig/main.pm:132 Xconfig/monitor.pm:110
-#, c-format
-msgid "Monitor"
-msgstr "Οθόνη"
-
-#: Xconfig/main.pm:135 Xconfig/resolution_and_depth.pm:289
-#, c-format
-msgid "Resolution"
-msgstr "Ανάλυση"
-
-#: Xconfig/main.pm:138
-#, c-format
-msgid "Test"
-msgstr "Δοκιμή"
-
-#: Xconfig/main.pm:143 diskdrake/dav.pm:65 diskdrake/interactive.pm:449
-#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
-#: printer/printerdrake.pm:1112 standalone/drakfont:493
-#: standalone/drakfont:548
-#, c-format
-msgid "Options"
-msgstr "Επιλογές"
-
-#: Xconfig/main.pm:178
-#, c-format
-msgid "Your Xorg configuration file is broken, we will ignore it."
-msgstr ""
-
-#: Xconfig/main.pm:196
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Διατήρηση υπαρχόντων ρυθμίσεων;\n"
-"Οι τρέχουσες ρυθμίσεις είναι:\n"
-"\n"
-"%s"
-
-#: Xconfig/monitor.pm:111
-#, fuzzy, c-format
-msgid "Choose a monitor for head #%d"
-msgstr "Επιλέξτε οθόνη"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor"
-msgstr "Επιλέξτε οθόνη"
-
-#: Xconfig/monitor.pm:117
-#, c-format
-msgid "Plug'n Play"
-msgstr "Άμεσης τοποθέτησης και λειτουργίας"
-
-#: Xconfig/monitor.pm:118 mouse.pm:49
-#, c-format
-msgid "Generic"
-msgstr "Γενική"
-
-#: Xconfig/monitor.pm:119 standalone/drakconnect:591 standalone/harddrake2:54
-#: standalone/harddrake2:88
-#, c-format
-msgid "Vendor"
-msgstr "Κατασκευαστής"
-
-#: Xconfig/monitor.pm:129
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr ""
-
-#: Xconfig/monitor.pm:137
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Οι δύο κρίσιμες παράμετροι είναι η συχνότητα κατακόρυφης ανανέωσης είναι η\n"
-"συχνότητα με την οποία ανανεώνεται ολόκληρη η οθόνη, καθώς και η συχνότητα\n"
-"οριζόντιας ανανέωσης, η οποία είναι η συχνότητα με την οποία ανανεώνονται\n"
-"οι οριζόντιες γραμμές.\n"
-"\n"
-"Είναι ΠΟΛΥ ΣΗΜΑΝΤΙΚΟ να μην επιλέξετε τύπο οθόνης του οποίου οι συχνότητες\n"
-"ανανέωσης είναι εκτός των ορίων της οθόνης σας: υπάρχει κίνδυνος "
-"καταστροφής\n"
-"της οθόνης σας. Αν δεν είστε σίγουροι, κάντε μια συντηρητική επιλογή."
-
-#: Xconfig/monitor.pm:144
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Συχνότητα οριζόντιας ανανέωσης"
-
-#: Xconfig/monitor.pm:145
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Συχνότητα κατακόρυφης ανανέωσης"
-
-#: Xconfig/resolution_and_depth.pm:10
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 χρώματα (8 bits)"
-
-#: Xconfig/resolution_and_depth.pm:11
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 χιλιάδες χρώματα (15 bits)"
-
-#: Xconfig/resolution_and_depth.pm:12
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 χιλιάδες χρώματα (16 bits)"
-
-#: Xconfig/resolution_and_depth.pm:13
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 εκατομμύρια χρώματα (24 bits)"
-
-#: Xconfig/resolution_and_depth.pm:127
-#, c-format
-msgid "Resolutions"
-msgstr "Αναλύσεις"
-
-#: Xconfig/resolution_and_depth.pm:311 diskdrake/hd_gtk.pm:336
-#: install_steps_gtk.pm:288 mouse.pm:168 services.pm:162
-#: standalone/drakbackup:1606 standalone/drakperm:250
-#, c-format
-msgid "Other"
-msgstr "Άλλο"
-
-#: Xconfig/resolution_and_depth.pm:360
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Επιλέξτε ανάλυση και βάθος χρώματος"
-
-#: Xconfig/resolution_and_depth.pm:361
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Κάρτα γραφικών: %s"
-
-#: Xconfig/resolution_and_depth.pm:375 interactive.pm:119 interactive.pm:436
-#: interactive/http.pm:103 interactive/http.pm:156 interactive/newt.pm:321
-#: interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:143
-#: standalone/drakTermServ:222 standalone/drakTermServ:543
-#: standalone/drakbackup:1372 standalone/drakbackup:4123
-#: standalone/drakbackup:4183 standalone/drakbackup:4227
-#: standalone/drakbackup:4481 standalone/drakconnect:158
-#: standalone/drakconnect:852 standalone/drakconnect:939
-#: standalone/drakconnect:1030 standalone/drakfont:569 standalone/drakfont:579
-#: standalone/draksplash:173 standalone/drakups:210 standalone/net_monitor:339
-#: ugtk2.pm:392 ugtk2.pm:490 ugtk2.pm:899 ugtk2.pm:922
-#, c-format
-msgid "Ok"
-msgstr "Εντάξει"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/smbnfs_gtk.pm:80 help.pm:90
-#: help.pm:445 install_steps_gtk.pm:455 install_steps_interactive.pm:406
-#: install_steps_interactive.pm:811 interactive.pm:120 interactive.pm:437
-#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
-#: interactive/stdio.pm:39 interactive/stdio.pm:142
-#: printer/printerdrake.pm:3882 standalone/drakautoinst:215
-#: standalone/drakbackup:1372 standalone/drakbackup:4052
-#: standalone/drakbackup:4056 standalone/drakbackup:4111
-#: standalone/drakbackup:4481 standalone/drakconnect:157
-#: standalone/drakconnect:937 standalone/drakconnect:1029
-#: standalone/drakfont:579 standalone/drakfont:655 standalone/drakfont:733
-#: standalone/draksplash:173 standalone/drakups:217 standalone/logdrake:176
-#: standalone/net_monitor:338 ugtk2.pm:386 ugtk2.pm:488 ugtk2.pm:497
-#: ugtk2.pm:899
-#, c-format
-msgid "Cancel"
-msgstr "Άκυρο"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/hd_gtk.pm:150
-#: install_steps_gtk.pm:232 install_steps_gtk.pm:617 interactive.pm:567
-#: interactive/gtk.pm:682 interactive/gtk.pm:684 standalone/drakTermServ:311
-#: standalone/drakbackup:4048 standalone/drakbug:105
-#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:511 standalone/draknfs:206 standalone/drakperm:133
-#: standalone/draksambashare:320 standalone/draksec:344 standalone/draksec:346
-#: standalone/draksec:364 standalone/draksec:366 ugtk2.pm:1031 ugtk2.pm:1032
-#, c-format
-msgid "Help"
-msgstr "Βοήθεια"
-
-#: Xconfig/test.pm:30
-#, c-format
-msgid "Test of the configuration"
-msgstr "Δοκιμή ρυθμίσεων"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Θέλετε να δοκιμάσετε τις ρυθμίσεις;"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Προσοχή: Η δοκιμή σε αυτή την κάρτα γραφικών μπορεί να παγώσει τον "
-"υπολογιστή σας"
-
-#: Xconfig/test.pm:69
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"Παρουσιάστηκεένα σφάλμα:\n"
-"%s\n"
-"Δοκιμάστε να αλλάξετε μερικές παραμέτρους"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Έξοδος σε %d δευτερόλεπτα"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Είναι σωστή η ρύθμιση;"
-
-#: Xconfig/various.pm:29
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Διάταξη πληκτρολογίου: %s\n"
-
-#: Xconfig/various.pm:30
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Τύπος ποντικιού: %s\n"
-
-#: Xconfig/various.pm:31
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Συσκευή ποντικιού: %s\n"
-
-#: Xconfig/various.pm:33
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Οθόνη: %s\n"
-
-#: Xconfig/various.pm:34
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Συχνότητα οριζόντιας ανανέωσης: %s\n"
-
-#: Xconfig/various.pm:35
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Συχνότητα κατακόρυφης ανανέωσης: %s\n"
-
-#: Xconfig/various.pm:37
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Κάρτα γραφικών: %s\n"
-
-#: Xconfig/various.pm:38
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Μνήμη κάρτας γραφικών: %s kB\n"
-
-#: Xconfig/various.pm:40
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Βάθος χρώματος: %s\n"
-
-#: Xconfig/various.pm:41
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Ανάλυση: %s\n"
-
-#: Xconfig/various.pm:43
-#, c-format
-msgid "Xorg driver: %s\n"
-msgstr "Οδηγός Xorg: %s\n"
-
-#: Xconfig/various.pm:72
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "Γραφικό περιβάλλον στην εκκίνηση"
-
-#: Xconfig/various.pm:74
-#, c-format
-msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(Xorg) upon booting.\n"
-"Would you like Xorg to start when you reboot?"
-msgstr ""
-"Μπορώ να ρυθμίσω το σύστημά σας έτσι ώστε να ξεκινάει αυτόματα σε\n"
-"γραφικό περιβάλλον (Xorg).\n"
-"Επιθυμείτε την αυτόματη εκκίνηση γραφικού περιβάλλοντος;"
-
-#: Xconfig/various.pm:87
-#, fuzzy, c-format
-msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
-msgstr ""
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Ολοκληρώθηκε?"
-
-#: Xconfig/various.pm:99
-#, c-format
-msgid "What norm is your TV using?"
-msgstr "Ποιο σύστημα χρησιμοποιεί η τηλεόραση σας;"
-
-#: Xconfig/xfree.pm:648
-#, c-format
-msgid ""
-"_:weird aspect ratio\n"
-"other"
-msgstr ""
-
-#: any.pm:153 harddrake/sound.pm:195 interactive.pm:474 pkgs.pm:474
-#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
-#: standalone/drakups:99 standalone/drakxtv:92 standalone/harddrake2:375
-#: standalone/service_harddrake:235
+#: any.pm:157 diskdrake/interactive.pm:422 diskdrake/interactive.pm:617
+#: diskdrake/interactive.pm:798 diskdrake/interactive.pm:842
+#: diskdrake/interactive.pm:904 diskdrake/interactive.pm:1188 do_pkgs.pm:209
+#: do_pkgs.pm:255 harddrake/sound.pm:195 interactive.pm:576
#, c-format
msgid "Please wait"
msgstr "Παρακαλώ περιμένετε"
-#: any.pm:153
+#: any.pm:157
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "Πρόγραμμα εκκίνησης"
-#: any.pm:164
+#: any.pm:168
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -811,14 +40,14 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:175
+#: any.pm:179
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Η εγκατάσταση του προγράμματος εκκίνησης απέτυχε. Προκλήθηκε το ακόλουθο "
"σφάλμα:"
-#: any.pm:181
+#: any.pm:185
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -837,7 +66,7 @@ msgstr ""
"Στην επόμενη εκκίνηση θα πρέπει να δείτε την προτροπή του προγράμματος "
"εκκίνησης ."
-#: any.pm:219
+#: any.pm:223
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -852,259 +81,272 @@ msgstr ""
"\n"
"Από ποιόν δίσκο ξεκινάτε;"
-#: any.pm:242 help.pm:740
+#: any.pm:246
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Πρώτος τομέας του δίσκου (MBR)"
-#: any.pm:243
+#: any.pm:247
#, c-format
msgid "First sector of the root partition"
msgstr "Πρώτος τομέας της κατάτμησης εκκίνησης"
-#: any.pm:245
+#: any.pm:249
#, c-format
msgid "On Floppy"
msgstr "Στην Δισκέτα"
-#: any.pm:247 help.pm:740 printer/printerdrake.pm:4203
+#: any.pm:251
#, c-format
msgid "Skip"
msgstr "Παράλειψη"
-#: any.pm:251
+#: any.pm:255
#, c-format
msgid "LILO/grub Installation"
msgstr "Εγκατάσταση LILO/grub"
-#: any.pm:252
+#: any.pm:257
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Πού θέλετε να εγκαταστήσετε το πρόγραμμα εκκίνησης;"
-#: any.pm:278 standalone/drakboot:269
+#: any.pm:284
#, c-format
msgid "Boot Style Configuration"
msgstr "Ρύθμιση Τύπου Εκκίνησης"
-#: any.pm:280 any.pm:281 any.pm:314 any.pm:315
+#: any.pm:294 any.pm:326 any.pm:327
#, c-format
msgid "Bootloader main options"
msgstr "Βασικές επιλογές προγράμματος εκκίνησης"
-#: any.pm:286
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Εισάγετε μέγεθος μνήμης σε MB"
-
-#: any.pm:288
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Η επιλογή ``Απαγόρευση επιλογών γραμμής εντολής'' είναι άχρηστη χωρίς κωδικό "
-"πρόσβασης"
-
-#: any.pm:289 any.pm:628 authentication.pm:192
-#, c-format
-msgid "The passwords do not match"
-msgstr "Οι κωδικοί πρόσβασης είναι ανόμοιοι"
-
-#: any.pm:289 any.pm:628 authentication.pm:192 diskdrake/interactive.pm:1336
+#: any.pm:299
#, c-format
-msgid "Please try again"
-msgstr "Παρακαλώ προσπαθήστε ξανά"
+msgid "Bootloader"
+msgstr "Προγράμματος εκκίνησης"
-#: any.pm:294 any.pm:319
+#: any.pm:300 any.pm:331
#, c-format
msgid "Bootloader to use"
msgstr "Χρήση προγράμματος εκκίνησης"
-#: any.pm:296 any.pm:321
+#: any.pm:302 any.pm:333
#, c-format
msgid "Boot device"
msgstr "Συσκευή εκκίνησης"
-#: any.pm:298
+#: any.pm:304
+#, c-format
+msgid "Main options"
+msgstr ""
+
+#: any.pm:305
#, c-format
msgid "Delay before booting default image"
msgstr "Καθυστέρηση πριν την εκκίνηση"
-#: any.pm:299
+#: any.pm:306
#, c-format
msgid "Enable ACPI"
msgstr "Ενεργοποίηση ACPI"
-#: any.pm:301
-#, c-format
-msgid "Force no APIC"
-msgstr ""
+#: any.pm:307
+#, fuzzy, c-format
+msgid "Enable APIC"
+msgstr "Ενεργοποίηση ACPI"
-#: any.pm:303
-#, c-format
-msgid "Force No Local APIC"
-msgstr ""
+#: any.pm:308
+#, fuzzy, c-format
+msgid "Enable Local APIC"
+msgstr "Ενεργοποίηση ACPI"
-#: any.pm:305 any.pm:662 authentication.pm:197 diskdrake/smbnfs_gtk.pm:180
-#: network/netconnect.pm:584 printer/printerdrake.pm:1867
-#: printer/printerdrake.pm:1988 standalone/drakbackup:1650
-#: standalone/drakbackup:3641 standalone/drakups:297
+#: any.pm:310 any.pm:686 authentication.pm:196 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Κωδικός Πρόσβασης"
-#: any.pm:306 any.pm:663 authentication.pm:198
+#: any.pm:312 authentication.pm:207
+#, c-format
+msgid "The passwords do not match"
+msgstr "Οι κωδικοί πρόσβασης είναι ανόμοιοι"
+
+#: any.pm:312 authentication.pm:207 diskdrake/interactive.pm:1348
+#, c-format
+msgid "Please try again"
+msgstr "Παρακαλώ προσπαθήστε ξανά"
+
+#: any.pm:313
+#, fuzzy, c-format
+msgid "You can not use a password with %s"
+msgstr ""
+"Δεν μπορείτε να χρησιμοποιήσετε κρυπτογραφημένο σύστημα αρχείων για "
+"προσάρτηση %s"
+
+#: any.pm:316 any.pm:687 authentication.pm:197
#, c-format
msgid "Password (again)"
msgstr "Κωδικός Πρόσβασης (ξανά)"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "Restrict command line options"
msgstr "Απαγόρευση επιλογών γραμμής εντολής"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "restrict"
msgstr "απαγόρευση"
-#: any.pm:309
+#: any.pm:318
+#, c-format
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr ""
+"Η επιλογή ``Απαγόρευση επιλογών γραμμής εντολής'' είναι άχρηστη χωρίς κωδικό "
+"πρόσβασης"
+
+#: any.pm:320
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Καθαρισμός /tmp σε κάθε εκκίνηση"
-#: any.pm:310
+#: any.pm:321
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ακριβής ποσότητας μνήμης αν χρειάζεται (εντοπίστηκαν %d MB)"
-#: any.pm:320
+#: any.pm:322
+#, c-format
+msgid "Give the ram size in MB"
+msgstr "Εισάγετε μέγεθος μνήμης σε MB"
+
+#: any.pm:332
#, c-format
msgid "Init Message"
msgstr "Μήνυμα Init"
-#: any.pm:322
+#: any.pm:334
#, c-format
msgid "Open Firmware Delay"
msgstr "Άνοιγμα Καθυστέρησης Firmware"
-#: any.pm:323
+#: any.pm:335
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Τέλος Χρόνου Εκκίνησης Πυρήνα"
-#: any.pm:324
+#: any.pm:336
#, c-format
msgid "Enable CD Boot?"
msgstr "Ενεργοποίηση εκκίνησης από CD;"
-#: any.pm:325
+#: any.pm:337
#, c-format
msgid "Enable OF Boot?"
msgstr "Ενεργοποίηση OF εκκίνησης;"
-#: any.pm:326
+#: any.pm:338
#, c-format
msgid "Default OS?"
msgstr "Εξ ορισμού λειτουργικό;"
-#: any.pm:380
+#: any.pm:404
#, c-format
msgid "Image"
msgstr "Εικόνα"
-#: any.pm:381 any.pm:391
+#: any.pm:405 any.pm:418
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:382 any.pm:404
+#: any.pm:406 any.pm:431
#, c-format
msgid "Append"
msgstr "Προσάρτηση"
-#: any.pm:384 standalone/drakboot:271 standalone/drakboot:275
+#: any.pm:408
+#, c-format
+msgid "Xen append"
+msgstr ""
+
+#: any.pm:411
#, c-format
msgid "Video mode"
msgstr "Ανάλυση οθόνης"
-#: any.pm:386
+#: any.pm:413
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:387
+#: any.pm:414
#, fuzzy, c-format
msgid "Network profile"
msgstr "Νέο Προφίλ..."
-#: any.pm:396 any.pm:401 any.pm:403 diskdrake/interactive.pm:450
+#: any.pm:423 any.pm:428 any.pm:430 diskdrake/interactive.pm:443
#, c-format
msgid "Label"
msgstr "Ετικέτα"
-#: any.pm:398 any.pm:408 harddrake/v4l.pm:438 standalone/drakbackup:2104
-#: standalone/draksec:52
+#: any.pm:425 any.pm:433 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Προεπιλεγμένο"
-#: any.pm:405
-#, c-format
-msgid "Initrd-size"
-msgstr "μέγεθος Initrd"
-
-#: any.pm:407
+#: any.pm:432
#, c-format
msgid "NoVideo"
msgstr "ΧωρίςVideo"
-#: any.pm:418
+#: any.pm:443
#, c-format
msgid "Empty label not allowed"
msgstr "Δεν επιτρέπεται άδεια ετικέτα"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a kernel image"
msgstr "Πρέπει να ορίσετε μια εικόνα πυρήνα"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a root partition"
msgstr "Πρέπει να ορίσετε μια κατάτμηση root"
-#: any.pm:420
+#: any.pm:445
#, c-format
msgid "This label is already used"
msgstr "Αυτή η ετικέτα χρησιμοποιείται ήδη"
-#: any.pm:434
+#: any.pm:459
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Τι τύπου επιλογή θέλετε να προσθέσετε;"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Άλλο λειτουργικό (SunOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Άλλο λειτουργικό (MacOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (Windows...)"
msgstr "Άλλο λειτουργικό (Windows...)"
-#: any.pm:464
+#: any.pm:489
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -1113,94 +355,89 @@ msgstr ""
"Υπάρχουν οι ακόλουθες επιλογές.\n"
"Μπορείτε να προσθέσετε κι άλλες ή να αλλάξετε τις υπάρχουσες."
-#: any.pm:614
+#: any.pm:640
#, c-format
msgid "access to X programs"
msgstr "πρόσβαση σε προγράμματα Χ"
-#: any.pm:615
+#: any.pm:641
#, c-format
msgid "access to rpm tools"
msgstr "πρόσβαση σε εργαλεία rpm"
-#: any.pm:616
+#: any.pm:642
#, c-format
msgid "allow \"su\""
msgstr "δυνατότητα \"su\""
-#: any.pm:617
+#: any.pm:643
#, c-format
msgid "access to administrative files"
msgstr "πρόσβαση σε διαχειριστικά αρχεία"
-#: any.pm:618
+#: any.pm:644
#, c-format
msgid "access to network tools"
msgstr "πρόσβαση σε εργαλεία δικτύου"
-#: any.pm:619
+#: any.pm:645
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:624
+#: any.pm:650
#, c-format
msgid "(already added %s)"
msgstr "(το %s έχει ήδη προστεθεί)"
-#: any.pm:629
-#, c-format
-msgid "This password is too simple"
-msgstr "Ο κωδικός πρόσβασης είναι πολύ απλός"
-
-#: any.pm:630
+#: any.pm:657
#, c-format
msgid "Please give a user name"
msgstr "Παρακαλώ εισάγετε όνομα χρήστη"
-#: any.pm:631
+#: any.pm:658
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Το κωδικό όνομα μπορεί να περιέχει μόνο πεζά γράμματα, αριθμούς, `-' και `_'"
-#: any.pm:632
+#: any.pm:659
#, c-format
msgid "The user name is too long"
msgstr "Αυτό το όνομα χρήστη είναι πολύ μακρύ"
-#: any.pm:633
+#: any.pm:660
#, c-format
msgid "This user name has already been added"
msgstr "Αυτό το όνομα χρήστη υπάρχει ήδη"
-#: any.pm:634 any.pm:665
+#: any.pm:661 any.pm:689
#, c-format
msgid "User ID"
msgstr "ID Χρήστη"
-#: any.pm:635 any.pm:666
+#: any.pm:662 any.pm:690
#, c-format
msgid "Group ID"
msgstr "ID Ομάδας"
-#: any.pm:638
+#: any.pm:665
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "Η επιλογή %s πρέπει να είναι αριθμός!"
-#: any.pm:639
+#: any.pm:666
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:644 standalone/draksambashare:1214
+#: any.pm:671
#, c-format
msgid "Add user"
msgstr "Προσθήκη χρήστη"
-#: any.pm:646
+#: any.pm:673
#, c-format
msgid ""
"Enter a user\n"
@@ -1209,99 +446,95 @@ msgstr ""
"Εισάγετε χρήστη\n"
"%s"
-#: any.pm:649 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:154
-#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:81 help.pm:531
-#: interactive/http.pm:151 printer/printerdrake.pm:197
-#: printer/printerdrake.pm:382 printer/printerdrake.pm:5010
-#: standalone/drakbackup:2836 standalone/scannerdrake:685
-#: standalone/scannerdrake:835
+#: any.pm:676 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:166
+#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:82
+#: interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Ολοκληρώθηκε"
-#: any.pm:650 help.pm:52
+#: any.pm:677
#, c-format
msgid "Accept user"
msgstr "Αποδοχή χρήστη"
-#: any.pm:660
+#: any.pm:682
#, c-format
msgid "Real name"
msgstr "Πραγματικό όνομα"
-#: any.pm:661 standalone/drakbackup:1645
+#: any.pm:685
#, fuzzy, c-format
msgid "Login name"
msgstr "Όνομα Τομέα"
-#: any.pm:664
+#: any.pm:688
#, c-format
msgid "Shell"
msgstr "Φλοιός (shell)"
-#: any.pm:668
-#, c-format
-msgid "Icon"
-msgstr "Εικονίδιο"
-
-#: any.pm:715 security/l10n.pm:14
+#: any.pm:735 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Αυτόματη σύνδεση"
-#: any.pm:716
+#: any.pm:736
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Μπορώ να ρυθμίσω το σύστημά σας έτσι ώστε να συνδέει αυτόματα έναν χρήστη."
-#: any.pm:717
+#: any.pm:737
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Θέλετε να χρησιμοποιήσετε αυτή τη λειτουργία;"
-#: any.pm:718
+#: any.pm:738
#, c-format
msgid "Choose the default user:"
msgstr "Επιλέξτε τον προεπιλεγμένο χρήστη:"
-#: any.pm:719
+#: any.pm:739
#, c-format
msgid "Choose the window manager to run:"
msgstr "Επιλέξτε τον διαχειριστή παραθύρων που θέλετε να χρησιμοποιήσετε:"
-#: any.pm:740
+#: any.pm:767
#, c-format
msgid "License agreement"
msgstr "Άδεια χρήσης"
-#: any.pm:745
+#: any.pm:770 diskdrake/dav.pm:26
+#, c-format
+msgid "Quit"
+msgstr "Έξοδος"
+
+#: any.pm:773
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Έκδοση:"
-#: any.pm:748 help.pm:15 install_steps_gtk.pm:539
-#: install_steps_interactive.pm:715 standalone/drakautoinst:214
+#: any.pm:776
#, c-format
msgid "Accept"
msgstr "Αποδοχή"
-#: any.pm:748 install_steps_gtk.pm:539 install_steps_interactive.pm:715
+#: any.pm:776
#, c-format
msgid "Refuse"
msgstr "Άρνηση"
-#: any.pm:765 any.pm:833
+#: any.pm:795 any.pm:863
#, c-format
msgid "Please choose a language to use."
msgstr "Παρακαλώ επιλέξτε τη γλώσσα."
-#: any.pm:766 any.pm:834
+#: any.pm:796 any.pm:864
#, fuzzy, c-format
msgid "Language choice"
msgstr "χειροκίνητα"
-#: any.pm:794
+#: any.pm:826
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
@@ -1312,70 +545,72 @@ msgstr ""
"τις άλλες γλώσσες που θα είναι διαθέσιμες μετά το πέρας της \n"
"εγκατάστασης και την επανεκκίνηση του συστήματός σας."
-#: any.pm:797
+#: any.pm:829
#, c-format
msgid "Multi languages"
msgstr ""
-#: any.pm:813 any.pm:842 help.pm:648
+#: any.pm:841 any.pm:872
#, c-format
-msgid "Use Unicode by default"
-msgstr "Προεπιλεγμένη η χρήση Unicode"
+msgid "Old compatibility (non UTF-8) encoding"
+msgstr ""
-#: any.pm:814 help.pm:648
+#: any.pm:843
#, c-format
msgid "All languages"
msgstr "Όλες οι γλώσσες"
-#: any.pm:888 help.pm:567 help.pm:856 install_steps_interactive.pm:932
+#: any.pm:918
#, c-format
msgid "Country / Region"
msgstr "Χώρα"
-#: any.pm:890
+#: any.pm:920
#, c-format
msgid "Please choose your country."
msgstr "Παρακαλώ επιλέξτε την χώρα σας."
-#: any.pm:892
+#: any.pm:922
#, c-format
msgid "Here is the full list of available countries"
msgstr "Αυτή είναι η πλήρης λίστα των διαθέσιμων χωρών"
-#: any.pm:893
+#: any.pm:923
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Άλλες θύρες"
-#: any.pm:893 help.pm:52 help.pm:410 help.pm:432 help.pm:648 help.pm:723
-#: interactive.pm:397
+#: any.pm:923 interactive.pm:477
#, c-format
msgid "Advanced"
msgstr "Για Προχωρημένους"
-#: any.pm:901
+#: any.pm:929
#, fuzzy, c-format
msgid "Input method:"
msgstr "Μέθοδος δικτύου:"
-#: any.pm:904 install_any.pm:422 network/netconnect.pm:317
-#: network/netconnect.pm:322 network/netconnect.pm:1237 network/wireless.pm:7
-#: printer/printerdrake.pm:117
+#: any.pm:932
#, c-format
msgid "None"
msgstr "Κανένας"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "No sharing"
msgstr "Χωρίς κοινή χρήση"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "Allow all users"
msgstr "Επιτρέπεται για όλους τους χρήστες"
-#: any.pm:1025
+#: any.pm:1012
+#, c-format
+msgid "Custom"
+msgstr "Προσαρμοσμένο"
+
+#: any.pm:1016
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1390,21 +625,21 @@ msgstr ""
"\n"
"Το \"Προσαρμοσμένο\" επιτρέπει την ανά χρήστη ρύθμιση.\n"
-#: any.pm:1037
+#: any.pm:1028
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1040
+#: any.pm:1031
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1048
+#: any.pm:1039
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -1412,23 +647,17 @@ msgstr ""
"Μπορείτε να γίνει εξαγωγή με την χρήση NFS ή SMB. Παρακαλώ επιλέξτε ποίο "
"θέλετε."
-#: any.pm:1073
+#: any.pm:1064
#, c-format
msgid "Launch userdrake"
msgstr "Εκκίνηση userdrake"
-#: any.pm:1073 printer/printerdrake.pm:4085 printer/printerdrake.pm:4088
-#: printer/printerdrake.pm:4089 printer/printerdrake.pm:4090
-#: printer/printerdrake.pm:5328 standalone/drakTermServ:321
-#: standalone/drakbackup:4245 standalone/drakbug:126 standalone/drakfont:499
-#: standalone/drakids:64 standalone/drakids:77 standalone/drakids:85
-#: standalone/draknfs:210 standalone/net_monitor:117
-#: standalone/printerdrake:583
+#: any.pm:1064 interactive/gtk.pm:747
#, c-format
msgid "Close"
msgstr "Κλείσιμο"
-#: any.pm:1075
+#: any.pm:1066
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -1438,6 +667,56 @@ msgstr ""
"Μπορείτε να την προσθέσετε στον κάθε χρήστη σε αυτή την ομάδα με το "
"userdrake."
+#: any.pm:1158
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Παρακαλώ αποσυνδεθείτε και μετά πατήστε Ctrl-Alt-BackSpace"
+
+#: any.pm:1162
+#, c-format
+msgid "You need to log out and back in again for changes to take effect"
+msgstr ""
+
+#: any.pm:1212
+#, c-format
+msgid "Timezone"
+msgstr "Ωρολογιακή Ζώνη"
+
+#: any.pm:1212
+#, c-format
+msgid "Which is your timezone?"
+msgstr "Ποια είναι η ζώνη ώρας;"
+
+#: any.pm:1224 any.pm:1226
+#, c-format
+msgid "Date, Clock & Time Zone Settings"
+msgstr ""
+
+#: any.pm:1227
+#, c-format
+msgid "What is the best time?"
+msgstr ""
+
+#: any.pm:1231
+#, fuzzy, c-format
+msgid "%s (hardware clock set to UTC)"
+msgstr "Το ρολόι του υπολογιστή σας είναι ρυθμισμένο σε GMT (ώρα Γκρίνουιτς)"
+
+#: any.pm:1232
+#, fuzzy, c-format
+msgid "%s (hardware clock set to local time)"
+msgstr "Το ρολόι του υπολογιστή σας είναι ρυθμισμένο σε GMT (ώρα Γκρίνουιτς)"
+
+#: any.pm:1234
+#, c-format
+msgid "NTP Server"
+msgstr "Εξυπηρετητής NTP"
+
+#: any.pm:1235
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Αυτόματος συγχρονισμός ώρας (χρήση NTP)"
+
#: authentication.pm:23
#, c-format
msgid "Local file"
@@ -1552,7 +831,7 @@ msgstr "Πιστοποίηση LDAP"
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: authentication.pm:98 share/compssUsers.pl:102
+#: authentication.pm:98
#, c-format
msgid "LDAP Server"
msgstr "Εξυπηρετητής LDAP"
@@ -1582,14 +861,12 @@ msgstr ""
msgid "Authentication Active Directory"
msgstr "Πιστοποίηση"
-#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:181
+#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Τομέας"
-#: authentication.pm:124 diskdrake/dav.pm:63 help.pm:147
-#: printer/printerdrake.pm:75 share/compssUsers.pl:82
-#: standalone/drakTermServ:296
+#: authentication.pm:124 diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Εξυπηρετητής"
@@ -1671,41 +948,35 @@ msgstr "Όνομα Χρήστη Διαχειριστή Τομέα"
msgid "Domain Admin Password"
msgstr "Κωδικός Πρόσβασης Διαχειριστή Τομέα"
-#: authentication.pm:181
+#: authentication.pm:181 authentication.pm:198
#, c-format
-msgid "Set administrator (root) password and network authentication methods"
-msgstr ""
+msgid "Authentication"
+msgstr "Πιστοποίηση"
#: authentication.pm:182
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Κωδικός πρόσβασης root"
-#: authentication.pm:183 standalone/drakvpn:1111
+#: authentication.pm:184
#, fuzzy, c-format
msgid "Authentication method"
msgstr "Πιστοποίηση"
#. -PO: keep this short or else the buttons will not fit in the window
-#: authentication.pm:188 help.pm:723
+#: authentication.pm:189
#, c-format
msgid "No password"
msgstr "Χωρίς κωδικό πρόσβασης"
-#: authentication.pm:194
+#: authentication.pm:210
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Αυτός ο κωδικός πρόσβασης είναι πολύ απλός (πρέπει να έχει τουλάχιστον %d "
"χαρακτήρες)"
-#: authentication.pm:199 network/netconnect.pm:322 network/netconnect.pm:585
-#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:481
-#, c-format
-msgid "Authentication"
-msgstr "Πιστοποίηση"
-
-#: authentication.pm:331
+#: authentication.pm:351
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "Δεν μπορώ να χρησιμοποιήσω broadcast χωρίς τομέα NIS"
@@ -1716,7 +987,7 @@ msgstr "Δεν μπορώ να χρησιμοποιήσω broadcast χωρίς
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:767
+#: bootloader.pm:880
#, fuzzy, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1731,291 +1002,104 @@ msgstr ""
"H PERIMENETE %d DEUTEROLEPTA GIA THN AYTOMATH EPILOGH.\n"
"\n"
-#: bootloader.pm:909
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO με γραφικό μενού"
-
-#: bootloader.pm:910
+#: bootloader.pm:1028
#, c-format
msgid "LILO with text menu"
msgstr "LILO με μενού κειμένου"
-#: bootloader.pm:911
+#: bootloader.pm:1029
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:912
+#: bootloader.pm:1030
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:913
+#: bootloader.pm:1031
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:990
+#: bootloader.pm:1032
+#, c-format
+msgid "SILO"
+msgstr "SILO"
+
+#: bootloader.pm:1112
#, c-format
msgid "not enough room in /boot"
msgstr "δεν υπάρχει αρκετός χώρος στο /boot"
-#: bootloader.pm:1483
+#: bootloader.pm:1679
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "Δεν μπορείτε να εγκαταστήσετε το πρόγραμμα εκκίνησης σε κατάτμηση %s\n"
-#: bootloader.pm:1523
+#: bootloader.pm:1732
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:1536
+#: bootloader.pm:1745
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:1537
+#: bootloader.pm:1746
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Πρόγραμμα εκκίνησης"
-#: common.pm:134
+#: common.pm:129
+#, fuzzy, c-format
+msgid "B"
+msgstr "KB"
+
+#: common.pm:129
#, c-format
msgid "KB"
msgstr "KB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "MB"
msgstr "MB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "GB"
msgstr "GB"
-#: common.pm:142
+#: common.pm:137
#, c-format
msgid "TB"
msgstr "TB"
-#: common.pm:150
+#: common.pm:145
#, c-format
msgid "%d minutes"
msgstr "%d λεπτά"
-#: common.pm:152
+#: common.pm:147
#, c-format
msgid "1 minute"
msgstr "1 λεπτό"
-#: common.pm:154
+#: common.pm:149
#, c-format
msgid "%d seconds"
msgstr "%d δευτερόλεπτα"
-#: common.pm:260
-#, c-format
-msgid "kdesu missing"
-msgstr "το kdesu λείπει"
-
-#: common.pm:263
-#, c-format
-msgid "consolehelper missing"
-msgstr "το consolehelper λείπει"
-
-#: crypto.pm:13 crypto.pm:48 lang.pm:207 network/adsl_consts.pm:66
-#: network/adsl_consts.pm:75 network/adsl_consts.pm:84
-#, c-format
-msgid "Austria"
-msgstr "Αυστρία"
-
-#: crypto.pm:14 crypto.pm:47 lang.pm:208 standalone/drakxtv:48
-#, c-format
-msgid "Australia"
-msgstr "Αυστραλία"
-
-#: crypto.pm:15 crypto.pm:49 lang.pm:214 network/adsl_consts.pm:93
-#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
-#: network/adsl_consts.pm:123 network/netconnect.pm:44
-#, c-format
-msgid "Belgium"
-msgstr "Βέλγιο"
-
-#: crypto.pm:16 crypto.pm:50 lang.pm:223 network/adsl_consts.pm:132
-#: network/adsl_consts.pm:143 network/adsl_consts.pm:152
-#: network/adsl_consts.pm:161
-#, c-format
-msgid "Brazil"
-msgstr "Βραζιλία"
-
-#: crypto.pm:17 crypto.pm:51 lang.pm:230
-#, c-format
-msgid "Canada"
-msgstr "Καναδάς"
-
-#: crypto.pm:18 crypto.pm:74 lang.pm:235 network/adsl_consts.pm:891
-#: network/adsl_consts.pm:900 network/adsl_consts.pm:911
+#: common.pm:298
#, c-format
-msgid "Switzerland"
-msgstr "Ελβετία"
-
-#: crypto.pm:19 lang.pm:242
-#, c-format
-msgid "Costa Rica"
-msgstr "Κόστα Ρίκα"
-
-#: crypto.pm:20 crypto.pm:52 lang.pm:248 network/adsl_consts.pm:368
-#, c-format
-msgid "Czech Republic"
-msgstr "Τσέχικη Δημοκρατία"
-
-#: crypto.pm:21 crypto.pm:57 lang.pm:249 network/adsl_consts.pm:499
-#: network/adsl_consts.pm:508
-#, c-format
-msgid "Germany"
-msgstr "Γερμανία"
-
-#: crypto.pm:22 crypto.pm:53 lang.pm:251 network/adsl_consts.pm:378
-#, c-format
-msgid "Denmark"
-msgstr "Δανία"
-
-#: crypto.pm:23 crypto.pm:54 lang.pm:256
-#, c-format
-msgid "Estonia"
-msgstr "Εσθονία"
-
-#: crypto.pm:24 crypto.pm:72 lang.pm:260 network/adsl_consts.pm:759
-#: network/adsl_consts.pm:770 network/adsl_consts.pm:781
-#: network/adsl_consts.pm:792 network/adsl_consts.pm:801
-#: network/adsl_consts.pm:810 network/adsl_consts.pm:819
-#: network/adsl_consts.pm:828 network/adsl_consts.pm:837
-#: network/adsl_consts.pm:846 network/adsl_consts.pm:855
-#: network/adsl_consts.pm:864 network/adsl_consts.pm:873
-#, c-format
-msgid "Spain"
-msgstr "Ισπανία"
-
-#: crypto.pm:25 crypto.pm:55 lang.pm:262 network/adsl_consts.pm:387
-#, c-format
-msgid "Finland"
-msgstr "Φινλανδία"
-
-#: crypto.pm:26 crypto.pm:56 lang.pm:267 network/adsl_consts.pm:396
-#: network/adsl_consts.pm:408 network/adsl_consts.pm:420
-#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
-#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
-#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
-#: network/netconnect.pm:41
-#, c-format
-msgid "France"
-msgstr "Γαλλία"
-
-#: crypto.pm:27 crypto.pm:58 lang.pm:280 network/adsl_consts.pm:519
-#, c-format
-msgid "Greece"
-msgstr "Ελλάδα"
-
-#: crypto.pm:28 crypto.pm:59 lang.pm:291 network/adsl_consts.pm:528
-#, c-format
-msgid "Hungary"
-msgstr "Ουγγαρία"
-
-#: crypto.pm:29 crypto.pm:60 lang.pm:293 network/adsl_consts.pm:537
-#: standalone/drakxtv:47
-#, c-format
-msgid "Ireland"
-msgstr "Ιρλανδία"
-
-#: crypto.pm:30 crypto.pm:61 lang.pm:294 network/adsl_consts.pm:546
-#, c-format
-msgid "Israel"
-msgstr "Ισραήλ"
-
-#: crypto.pm:31 crypto.pm:62 lang.pm:300 network/adsl_consts.pm:557
-#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
-#: network/adsl_consts.pm:589 network/netconnect.pm:43 standalone/drakxtv:47
-#, c-format
-msgid "Italy"
-msgstr "Ιταλία"
-
-#: crypto.pm:32 crypto.pm:63 lang.pm:303
-#, c-format
-msgid "Japan"
-msgstr "Ιαπωνία"
-
-#: crypto.pm:33 crypto.pm:64 lang.pm:352 network/adsl_consts.pm:620
-#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
-#: network/adsl_consts.pm:647 network/netconnect.pm:42
-#, c-format
-msgid "Netherlands"
-msgstr "Ολλανδία"
-
-#: crypto.pm:34 crypto.pm:66 lang.pm:353 network/adsl_consts.pm:656
-#: network/adsl_consts.pm:661 network/adsl_consts.pm:666
-#: network/adsl_consts.pm:671 network/adsl_consts.pm:676
-#: network/adsl_consts.pm:681 network/adsl_consts.pm:686
-#, c-format
-msgid "Norway"
-msgstr "Νορβηγία"
-
-#: crypto.pm:35 crypto.pm:65 lang.pm:357
-#, c-format
-msgid "New Zealand"
-msgstr "Νέα Ζηλανδία"
-
-#: crypto.pm:36 crypto.pm:67 lang.pm:365 network/adsl_consts.pm:693
-#: network/adsl_consts.pm:704
-#, c-format
-msgid "Poland"
-msgstr "Πολωνία"
-
-#: crypto.pm:37 crypto.pm:68 lang.pm:370 network/adsl_consts.pm:716
-#, c-format
-msgid "Portugal"
-msgstr "Πορτογαλία"
-
-#: crypto.pm:38 crypto.pm:69 lang.pm:376 network/adsl_consts.pm:725
-#, c-format
-msgid "Russia"
-msgstr "Ρωσία"
-
-#: crypto.pm:39 crypto.pm:73 lang.pm:382 network/adsl_consts.pm:882
-#, c-format
-msgid "Sweden"
-msgstr "Σουηδία"
-
-#: crypto.pm:40 crypto.pm:70 lang.pm:387
-#, c-format
-msgid "Slovakia"
-msgstr "Σλοβακία"
-
-#: crypto.pm:41 crypto.pm:76 lang.pm:401 network/adsl_consts.pm:920
-#, c-format
-msgid "Thailand"
-msgstr "Ταϊλάνδη"
-
-#: crypto.pm:42 crypto.pm:75 lang.pm:411
-#, c-format
-msgid "Taiwan"
-msgstr "Ταϊβάν"
-
-#: crypto.pm:43 crypto.pm:71 lang.pm:430 standalone/drakxtv:49
-#, c-format
-msgid "South Africa"
-msgstr "Νότιος Αφρική"
-
-#: crypto.pm:77 crypto.pm:112 lang.pm:416 network/netconnect.pm:45
-#, c-format
-msgid "United States"
-msgstr "Η.Π.Α."
+msgid "command %s missing"
+msgstr ""
#: diskdrake/dav.pm:17
#, fuzzy, c-format
@@ -2035,23 +1119,46 @@ msgstr ""
msgid "New"
msgstr "Νέο"
-#: diskdrake/dav.pm:61 diskdrake/interactive.pm:456 diskdrake/smbnfs_gtk.pm:74
+#: diskdrake/dav.pm:61 diskdrake/interactive.pm:449 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Αποσύνδεση"
-#: diskdrake/dav.pm:62 diskdrake/interactive.pm:453 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:62 diskdrake/interactive.pm:446 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Σύνδεση"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:447
-#: diskdrake/interactive.pm:679 diskdrake/interactive.pm:698
-#: diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:78
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:440
+#: diskdrake/interactive.pm:670 diskdrake/interactive.pm:688
+#: diskdrake/interactive.pm:692 diskdrake/removable.pm:23
+#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Σημείο σύνδεσης"
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:442
+#: diskdrake/interactive.pm:1047 diskdrake/removable.pm:24
+#: diskdrake/smbnfs_gtk.pm:80
+#, c-format
+msgid "Options"
+msgstr "Επιλογές"
+
+#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:229
+#: diskdrake/interactive.pm:242 diskdrake/interactive.pm:398
+#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:547
+#: diskdrake/interactive.pm:552 diskdrake/interactive.pm:660
+#: diskdrake/interactive.pm:922 diskdrake/interactive.pm:1092
+#: diskdrake/interactive.pm:1105 diskdrake/interactive.pm:1108
+#: diskdrake/interactive.pm:1348 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:19
+#: do_pkgs.pm:24 do_pkgs.pm:40 do_pkgs.pm:56 do_pkgs.pm:61 fsedit.pm:229
+#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
+#: scanner.pm:94 scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95
+#: wizards.pm:99 wizards.pm:121
+#, c-format
+msgid "Error"
+msgstr "Σφάλμα"
+
#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
@@ -2067,33 +1174,48 @@ msgstr "Η διεύθυνση πρέπει να ξεκινά με http:// ή htt
msgid "Server: "
msgstr "Εξυπηρετητής:"
-#: diskdrake/dav.pm:110 diskdrake/interactive.pm:523
-#: diskdrake/interactive.pm:1218 diskdrake/interactive.pm:1296
+#: diskdrake/dav.pm:110 diskdrake/interactive.pm:520
+#: diskdrake/interactive.pm:1230 diskdrake/interactive.pm:1308
#, c-format
msgid "Mount point: "
msgstr "Σημείο σύνδεσης: "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1303
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1315
#, c-format
msgid "Options: %s"
msgstr "Επιλογές: %s"
-#: diskdrake/hd_gtk.pm:52 diskdrake/interactive.pm:293
-#: diskdrake/smbnfs_gtk.pm:21 install_interactive.pm:63
-#: install_interactive.pm:217 install_interactive.pm:223
-#: install_interactive.pm:276 install_interactive.pm:281
-#: install_steps_interactive.pm:253 install_steps_interactive.pm:317
-#: steps.pm:21
+#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:286
+#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
+#: fs/partitioning_wizard.pm:47 fs/partitioning_wizard.pm:201
+#: fs/partitioning_wizard.pm:207 fs/partitioning_wizard.pm:247
+#: fs/partitioning_wizard.pm:266 fs/partitioning_wizard.pm:271
#, c-format
msgid "Partitioning"
msgstr "Καταμερισμός"
-#: diskdrake/hd_gtk.pm:92
+#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1067
+#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1130
+#, c-format
+msgid "Read carefully!"
+msgstr "Διαβάστε προσεκτικά!"
+
+#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr "Παρακαλώ κάντε πρώτα ένα αντίγραφο ασφαλείας των δεδομένων σας"
-#: diskdrake/hd_gtk.pm:95
+#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:222
+#, c-format
+msgid "Exit"
+msgstr "Έξοδος"
+
+#: diskdrake/hd_gtk.pm:94
+#, c-format
+msgid "Continue"
+msgstr "Συνέχεια"
+
+#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
@@ -2104,17 +1226,18 @@ msgstr ""
"(2048 τομείς είναι αρκετοί)\n"
"στην αρχή του δίσκου"
-#: diskdrake/hd_gtk.pm:152 help.pm:531
+#: diskdrake/hd_gtk.pm:162 interactive.pm:640 interactive/gtk.pm:719
+#: interactive/gtk.pm:740 interactive/gtk.pm:760 ugtk2.pm:923 ugtk2.pm:924
#, c-format
-msgid "Wizard"
-msgstr "Οδηγός"
+msgid "Help"
+msgstr "Βοήθεια"
-#: diskdrake/hd_gtk.pm:185
+#: diskdrake/hd_gtk.pm:197
#, c-format
msgid "Choose action"
msgstr "Επιλέξτε πράξη"
-#: diskdrake/hd_gtk.pm:189
+#: diskdrake/hd_gtk.pm:201
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -2125,150 +1248,164 @@ msgstr ""
"Προτείνω πρώτα να αλλάξετε το μέγεθός της\n"
"(Κάντε κλικ επάνω της και επιλέξτε \"Αλλαγή Μεγέθους\")"
-#: diskdrake/hd_gtk.pm:191
+#: diskdrake/hd_gtk.pm:203
#, c-format
msgid "Please click on a partition"
msgstr "Παρακαλώ κάντε κλικ σε μια κατάτμηση"
-#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:457
-#: standalone/drakbackup:3088 standalone/drakbackup:3148
+#: diskdrake/hd_gtk.pm:217 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Λεπτομέρειες"
-#: diskdrake/hd_gtk.pm:251
+#: diskdrake/hd_gtk.pm:265
#, c-format
msgid "No hard drives found"
msgstr "Δεν βρέθηκαν δίσκοι!"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:292
+#, c-format
+msgid "Unknown"
+msgstr "Άγνωστο"
+
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Ext2"
msgstr "Ext2"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Journalised FS"
msgstr "Journalised FS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "SunOS"
msgstr "SunOS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "HFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Windows"
msgstr "Windows "
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1233
+#: diskdrake/hd_gtk.pm:352 services.pm:149
+#, c-format
+msgid "Other"
+msgstr "Άλλο"
+
+#: diskdrake/hd_gtk.pm:352 diskdrake/interactive.pm:1244
#, c-format
msgid "Empty"
msgstr "Άδειο"
-#: diskdrake/hd_gtk.pm:340
+#: diskdrake/hd_gtk.pm:356
#, c-format
msgid "Filesystem types:"
msgstr "Τύποι συστήματος αρχείων:"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:359 diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:291
+#: diskdrake/interactive.pm:392 diskdrake/interactive.pm:428
+#: diskdrake/interactive.pm:577 diskdrake/interactive.pm:751
+#: diskdrake/interactive.pm:809 diskdrake/interactive.pm:902
+#: diskdrake/interactive.pm:944 diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:1173 diskdrake/interactive.pm:1211
+#: diskdrake/interactive.pm:1347 do_pkgs.pm:16 do_pkgs.pm:35 do_pkgs.pm:53
+#: harddrake/sound.pm:279
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Χρησιμοποιήστε ``%s'' στη θέση του"
+msgid "Warning"
+msgstr "Προσοχή"
-#: diskdrake/hd_gtk.pm:357 diskdrake/interactive.pm:472
-#, c-format
-msgid "Create"
-msgstr "Δημιουργία"
+#: diskdrake/hd_gtk.pm:380
+#, fuzzy, c-format
+msgid "This partition is already empty"
+msgstr "Αυτή η κατάτμηση δεν μπορεί ν' αλλάξει μέγεθος."
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:365
-#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:625
-#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
-#: standalone/harddrake2:108 standalone/harddrake2:117
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Type"
-msgstr "Τύπος"
+msgid "Use ``Unmount'' first"
+msgstr "Κάντε πρώτα ``Αποσύνδεση''"
-#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: diskdrake/hd_gtk.pm:359 diskdrake/interactive.pm:457
-#: standalone/drakperm:123 standalone/printerdrake:248
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Delete"
-msgstr "Διαγραφή"
+msgid "Use ``%s'' instead"
+msgstr "Χρησιμοποιήστε ``%s'' στη θέση του"
-#: diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:389 diskdrake/interactive.pm:441
+#: diskdrake/interactive.pm:611 diskdrake/interactive.pm:1083
+#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Κάντε πρώτα ``Αποσύνδεση''"
+msgid "Type"
+msgstr "Τύπος"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose another partition"
msgstr "Επιλέξτε άλλη κατάτμηση"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose a partition"
msgstr "Επιλέξτε κατάτμηση"
-#: diskdrake/interactive.pm:224
-#, c-format
-msgid "Exit"
-msgstr "Έξοδος"
-
-#: diskdrake/interactive.pm:257 help.pm:531
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Undo"
msgstr "Αναίρεση"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to normal mode"
msgstr "Αλλαγή σε κανονικό τρόπο λειτουργίας"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to expert mode"
msgstr "Αλλαγή σε προχωρημένο τρόπο λειτουργίας"
-#: diskdrake/interactive.pm:276
+#: diskdrake/interactive.pm:269 diskdrake/interactive.pm:279
+#: diskdrake/interactive.pm:1158
+#, fuzzy, c-format
+msgid "Confirmation"
+msgstr "Ρύθμιση"
+
+#: diskdrake/interactive.pm:269
#, c-format
msgid "Continue anyway?"
msgstr "Να συνεχίσω;"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without saving"
msgstr "Έξοδος χωρίς αποθήκευση"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Έξοδος χωρίς αποθήκευση του πίνακα κατατμήσεων;"
-#: diskdrake/interactive.pm:286
+#: diskdrake/interactive.pm:279
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Θέλετε να αποθηκεύσετε τις αλλαγές του /etc/fstab"
-#: diskdrake/interactive.pm:293 install_steps_interactive.pm:317
+#: diskdrake/interactive.pm:286 fs/partitioning_wizard.pm:247
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Απαιτείται επανεκκίνηση για να ενεργοποιηθούν οι αλλαγές στον πίνακα "
"κατατμήσεων"
-#: diskdrake/interactive.pm:298
+#: diskdrake/interactive.pm:291
#, c-format
msgid ""
"You should format partition %s.\n"
@@ -2276,38 +1413,38 @@ msgid ""
"Quit anyway?"
msgstr ""
-#: diskdrake/interactive.pm:311 help.pm:531
+#: diskdrake/interactive.pm:304
#, c-format
msgid "Clear all"
msgstr "Καθαρισμός όλων"
-#: diskdrake/interactive.pm:312 help.pm:531
+#: diskdrake/interactive.pm:305
#, c-format
msgid "Auto allocate"
msgstr "Αυτόματη κατανομή"
-#: diskdrake/interactive.pm:313 help.pm:531 help.pm:567 help.pm:607
-#: help.pm:856 install_steps_interactive.pm:98
+#: diskdrake/interactive.pm:306 diskdrake/interactive.pm:360
+#: interactive/curses.pm:457
#, c-format
msgid "More"
msgstr "Άλλα"
-#: diskdrake/interactive.pm:318
+#: diskdrake/interactive.pm:311
#, c-format
msgid "Hard drive information"
msgstr "Πληροφορίες σκληρού δίσκου"
-#: diskdrake/interactive.pm:350
+#: diskdrake/interactive.pm:343
#, c-format
msgid "All primary partitions are used"
msgstr "Όλες οι πρωτεύουσες κατατμήσεις είναι σε χρήση"
-#: diskdrake/interactive.pm:351
+#: diskdrake/interactive.pm:344
#, c-format
msgid "I can not add any more partitions"
msgstr "Δεν μπορώ να προσθέσω κατατμήσεις"
-#: diskdrake/interactive.pm:352
+#: diskdrake/interactive.pm:345
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
@@ -2316,52 +1453,52 @@ msgstr ""
"Για να προσθέσετε κατατμήσεις, παρακαλώ διαγράψτε μία έτσι ώστε να είναι "
"δυνατή η προσθήκη εκτεταμένης κατάτμησης"
-#: diskdrake/interactive.pm:361
+#: diskdrake/interactive.pm:354
#, c-format
msgid "No supermount"
msgstr ""
-#: diskdrake/interactive.pm:362
+#: diskdrake/interactive.pm:355
#, c-format
msgid "Supermount"
msgstr ""
-#: diskdrake/interactive.pm:363
+#: diskdrake/interactive.pm:356
#, c-format
msgid "Supermount except for CDROM drives"
msgstr ""
-#: diskdrake/interactive.pm:369 help.pm:531
+#: diskdrake/interactive.pm:362
#, c-format
msgid "Save partition table"
msgstr "Αποθήκευση πίνακα κατατμήσεων"
-#: diskdrake/interactive.pm:370 help.pm:531
+#: diskdrake/interactive.pm:363
#, c-format
msgid "Restore partition table"
msgstr "Επαναφορά πίνακα κατατμήσεων"
-#: diskdrake/interactive.pm:371 help.pm:531
+#: diskdrake/interactive.pm:364
#, c-format
msgid "Rescue partition table"
msgstr "Πίνακας κατατμήσεων διάσωσης"
-#: diskdrake/interactive.pm:373 help.pm:531
+#: diskdrake/interactive.pm:366
#, c-format
msgid "Reload partition table"
msgstr "Ανανέωση πίνακα κατατμήσεων"
-#: diskdrake/interactive.pm:375
+#: diskdrake/interactive.pm:368
#, c-format
msgid "Removable media automounting"
msgstr "Αυτόματη σύνδεση αποσπώμενων μονάδων"
-#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:414
+#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:407
#, c-format
msgid "Select file"
msgstr "Επιλέξτε αρχείο"
-#: diskdrake/interactive.pm:400
+#: diskdrake/interactive.pm:393
#, c-format
msgid ""
"The backup partition table has not the same size\n"
@@ -2370,87 +1507,97 @@ msgstr ""
"Ο εφεδρικός πίνακας κατατμήσεων έχει διαφορετικό μέγεθος\n"
"Να συνεχίσω;"
-#: diskdrake/interactive.pm:429
+#: diskdrake/interactive.pm:422
#, c-format
msgid "Trying to rescue partition table"
msgstr "Προσπάθεια διάσωσης πίνακα κατατμήσεων"
-#: diskdrake/interactive.pm:435
+#: diskdrake/interactive.pm:428
#, c-format
msgid "Detailed information"
msgstr "Λεπτομερείς πληροφορίες"
-#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:444 diskdrake/interactive.pm:764
#, c-format
msgid "Resize"
msgstr "Αλλαγή μεγέθους"
-#: diskdrake/interactive.pm:452
+#: diskdrake/interactive.pm:445
#, c-format
msgid "Format"
msgstr "Μορφοποίηση"
-#: diskdrake/interactive.pm:454
+#: diskdrake/interactive.pm:447 diskdrake/interactive.pm:850
#, c-format
msgid "Add to RAID"
msgstr "Προσθήκη στο RAID"
-#: diskdrake/interactive.pm:455
+#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:867
#, c-format
msgid "Add to LVM"
msgstr "Προσθήκη στο LVM"
-#: diskdrake/interactive.pm:458
+#: diskdrake/interactive.pm:450
+#, c-format
+msgid "Delete"
+msgstr "Διαγραφή"
+
+#: diskdrake/interactive.pm:451
#, c-format
msgid "Remove from RAID"
msgstr "Αφαίρεση από το RAID"
-#: diskdrake/interactive.pm:459
+#: diskdrake/interactive.pm:452
#, c-format
msgid "Remove from LVM"
msgstr "Αφαίρεση από το LVM"
-#: diskdrake/interactive.pm:460
+#: diskdrake/interactive.pm:453
#, c-format
msgid "Modify RAID"
msgstr "Τροποποίηση RAID"
-#: diskdrake/interactive.pm:461
+#: diskdrake/interactive.pm:454
#, c-format
msgid "Use for loopback"
msgstr "Χρήση για loopback"
-#: diskdrake/interactive.pm:516
+#: diskdrake/interactive.pm:465
+#, c-format
+msgid "Create"
+msgstr "Δημιουργία"
+
+#: diskdrake/interactive.pm:509 diskdrake/interactive.pm:511
#, c-format
msgid "Create a new partition"
msgstr "Δημιουργία νέας κατάτμησης"
-#: diskdrake/interactive.pm:519
+#: diskdrake/interactive.pm:513
#, c-format
msgid "Start sector: "
msgstr "Αρχικός τομέας: "
-#: diskdrake/interactive.pm:521 diskdrake/interactive.pm:938
+#: diskdrake/interactive.pm:516 diskdrake/interactive.pm:937
#, c-format
msgid "Size in MB: "
msgstr "Μέγεθος σε MB"
-#: diskdrake/interactive.pm:522 diskdrake/interactive.pm:939
+#: diskdrake/interactive.pm:518 diskdrake/interactive.pm:938
#, c-format
msgid "Filesystem type: "
msgstr "Τύπος συστήματος αρχείων: "
-#: diskdrake/interactive.pm:527
+#: diskdrake/interactive.pm:524
#, c-format
msgid "Preference: "
msgstr "Προτίμηση: "
-#: diskdrake/interactive.pm:530
+#: diskdrake/interactive.pm:527
#, fuzzy, c-format
msgid "Logical volume name "
msgstr "Τοπική μέτρηση"
-#: diskdrake/interactive.pm:560
+#: diskdrake/interactive.pm:547
#, fuzzy, c-format
msgid ""
"You can not create a new partition\n"
@@ -2461,12 +1608,12 @@ msgstr ""
" πρωτεύουσα\n"
" πρωτεύουσα."
-#: diskdrake/interactive.pm:590
+#: diskdrake/interactive.pm:577
#, c-format
msgid "Remove the loopback file?"
msgstr "Να αφαιρεθεί το αρχείο loopback;"
-#: diskdrake/interactive.pm:609
+#: diskdrake/interactive.pm:596
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -2474,37 +1621,42 @@ msgstr ""
"Μετά την αλλαγή τύπου στην κατάτμηση %s, όλα τα δεδομένα σε αυτήν την "
"κατάτμηση θα χαθούν"
-#: diskdrake/interactive.pm:621
+#: diskdrake/interactive.pm:608
#, c-format
msgid "Change partition type"
msgstr "Αλλαγή τύπου κατάτμησης"
-#: diskdrake/interactive.pm:622 diskdrake/removable.pm:47
+#: diskdrake/interactive.pm:610 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Ποιο σύστημα αρχείων προτιμάτε;"
-#: diskdrake/interactive.pm:630
+#: diskdrake/interactive.pm:617
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "Αλλαγή από ext2 σε ext3"
-#: diskdrake/interactive.pm:650
+#: diskdrake/interactive.pm:637 diskdrake/interactive.pm:640
#, c-format
msgid "Which volume label?"
msgstr ""
-#: diskdrake/interactive.pm:666
+#: diskdrake/interactive.pm:641
+#, fuzzy, c-format
+msgid "Label:"
+msgstr "Ετικέτα"
+
+#: diskdrake/interactive.pm:655
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Πού θέλετε να συνδέσετε το αρχείο loopback %s;"
-#: diskdrake/interactive.pm:667
+#: diskdrake/interactive.pm:656
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Πού θέλετε να συνδέσετε την συσκευή %s;"
-#: diskdrake/interactive.pm:672
+#: diskdrake/interactive.pm:661
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
@@ -2514,293 +1666,304 @@ msgstr ""
"χρησιμοποιείται\n"
"για loopback. Αφαιρέστε πρώτα το loopback"
-#: diskdrake/interactive.pm:697
+#: diskdrake/interactive.pm:691
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Πού θέλετε να συνδέσετε το %s;"
-#: diskdrake/interactive.pm:721 diskdrake/interactive.pm:800
-#: install_interactive.pm:157 install_interactive.pm:189
+#: diskdrake/interactive.pm:715 diskdrake/interactive.pm:798
+#: fs/partitioning_wizard.pm:141 fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing"
msgstr "Αλλαγή μεγέθους"
-#: diskdrake/interactive.pm:721
+#: diskdrake/interactive.pm:715
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Υπολογισμός FAT filesystem bounds"
-#: diskdrake/interactive.pm:757
+#: diskdrake/interactive.pm:751
#, c-format
msgid "This partition is not resizeable"
msgstr "Αυτή η κατάτμηση δεν μπορεί ν' αλλάξει μέγεθος."
-#: diskdrake/interactive.pm:762
+#: diskdrake/interactive.pm:756
#, c-format
msgid "All data on this partition should be backed-up"
msgstr ""
"Πρέπει να γίνει αντίγραφο ασφαλείας όλων των δεδομένων σε αυτή την κατάτμηση"
-#: diskdrake/interactive.pm:764
+#: diskdrake/interactive.pm:758
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Μετά την αλλαγή μεγέθους στην κατάτμηση %s, όλα τα δεδομένα σε αυτήν την "
"κατάτμηση θα χαθούν"
-#: diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:765
#, c-format
msgid "Choose the new size"
msgstr "Επιλέξτε το νέο μέγεθος"
-#: diskdrake/interactive.pm:770
+#: diskdrake/interactive.pm:766
#, c-format
msgid "New size in MB: "
msgstr "Νέο μέγεθος σε MB:"
-#: diskdrake/interactive.pm:811 install_interactive.pm:197
+#: diskdrake/interactive.pm:767
+#, c-format
+msgid "Minimum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:768
+#, c-format
+msgid "Maximum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:809 fs/partitioning_wizard.pm:181
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
"filesystem checks will be run on your next boot into Microsoft Windows®"
msgstr ""
-#: diskdrake/interactive.pm:852
+#: diskdrake/interactive.pm:850
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Επιλέξτε ένα υπάρχον RAID στο οποίο θα γίνει η προσθήκη"
-#: diskdrake/interactive.pm:854 diskdrake/interactive.pm:871
+#: diskdrake/interactive.pm:852 diskdrake/interactive.pm:869
#, c-format
msgid "new"
msgstr "νέο"
-#: diskdrake/interactive.pm:869
+#: diskdrake/interactive.pm:867
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Επιλέξτε ένα υπάρχον LVM στο οποίο θα γίνει η προσθήκη"
-#: diskdrake/interactive.pm:875
+#: diskdrake/interactive.pm:874
#, c-format
msgid "LVM name?"
msgstr "όνομα LVM;"
-#: diskdrake/interactive.pm:903
+#: diskdrake/interactive.pm:902
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
"Do you want to move used physical extents on this volume to other volumes?"
msgstr ""
-#: diskdrake/interactive.pm:905
+#: diskdrake/interactive.pm:904
#, c-format
msgid "Moving physical extents"
msgstr ""
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:922
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Αυτή η κατάτμηση δεν μπορεί να χρησιμοποιηθεί για loopback"
-#: diskdrake/interactive.pm:936
+#: diskdrake/interactive.pm:935
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: diskdrake/interactive.pm:937
+#: diskdrake/interactive.pm:936
#, c-format
msgid "Loopback file name: "
msgstr "Όνομα αρχείου loopback: "
-#: diskdrake/interactive.pm:942
+#: diskdrake/interactive.pm:941
#, c-format
msgid "Give a file name"
msgstr "Δώστε ένα όνομα αρχείου"
-#: diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:944
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Το αρχείο χρησιμοποιείται ήδη από άλλο loopback, επιλέξτε ένα άλλο"
-#: diskdrake/interactive.pm:946
+#: diskdrake/interactive.pm:945
#, c-format
msgid "File already exists. Use it?"
msgstr "Το αρχείο υπάρχει ήδη. Να το χρησιμοποιήσω;"
-#: diskdrake/interactive.pm:969
+#: diskdrake/interactive.pm:974 diskdrake/interactive.pm:977
#, c-format
msgid "Mount options"
msgstr "Επιλογές σύνδεσης"
-#: diskdrake/interactive.pm:976
+#: diskdrake/interactive.pm:984
#, c-format
msgid "Various"
msgstr "Διάφορα"
-#: diskdrake/interactive.pm:1044
+#: diskdrake/interactive.pm:1049
#, c-format
msgid "device"
msgstr "συσκευή"
-#: diskdrake/interactive.pm:1045
+#: diskdrake/interactive.pm:1050
#, c-format
msgid "level"
msgstr "επίπεδο"
-#: diskdrake/interactive.pm:1046
+#: diskdrake/interactive.pm:1051
#, fuzzy, c-format
msgid "chunk size in KiB"
msgstr "μέγεθος chunk"
-#: diskdrake/interactive.pm:1063
+#: diskdrake/interactive.pm:1068
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Προσοχή: Αυτή η διαδικασία είναι επικίνδυνη."
-#: diskdrake/interactive.pm:1078
+#: diskdrake/interactive.pm:1083
#, c-format
msgid "What type of partitioning?"
msgstr "Τι τύπος κατάτμησης;"
-#: diskdrake/interactive.pm:1116
+#: diskdrake/interactive.pm:1121
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Απαιτείται επανεκκίνηση για να εφαρμοστούν οι αλλαγές"
-#: diskdrake/interactive.pm:1125
+#: diskdrake/interactive.pm:1130
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ο πίνακας κατατμήσεων του δίσκου %s θα αποθηκευτεί στον δίσκο!"
-#: diskdrake/interactive.pm:1148
+#: diskdrake/interactive.pm:1153
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Μετά την μορφοποίηση της κατάτμησης %s, όλα τα δεδομένα σε αυτήν την "
"κατάτμηση θα χαθούν"
-#: diskdrake/interactive.pm:1164
+#: diskdrake/interactive.pm:1158 fs/partitioning.pm:49
+#, c-format
+msgid "Check bad blocks?"
+msgstr "Έλεγχος για χαλασμένα τμήματα;"
+
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Move files to the new partition"
msgstr "Μετακίνηση αρχείων στην νέα κατάτμηση"
-#: diskdrake/interactive.pm:1164 standalone/draksambashare:81
-#: standalone/draksambashare:144
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Hide files"
msgstr "Απόκρυψη αρχείων"
-#: diskdrake/interactive.pm:1165
+#: diskdrake/interactive.pm:1173
#, c-format
msgid ""
"Directory %s already contains data\n"
-"(%s)"
+"(%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 ""
-"Ο κατάλογος %s περιέχει ήδη δεδομένα\n"
-"(%s)"
-#: diskdrake/interactive.pm:1176
+#: diskdrake/interactive.pm:1188
#, c-format
msgid "Moving files to the new partition"
msgstr "Μετακίνηση αρχείων στην νέα κατάτμηση"
-#: diskdrake/interactive.pm:1180
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "Copying %s"
msgstr "Αντιγραφή %s"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1196
#, c-format
msgid "Removing %s"
msgstr "Αφαίρεση %s"
-#: diskdrake/interactive.pm:1198
+#: diskdrake/interactive.pm:1210
#, c-format
msgid "partition %s is now known as %s"
msgstr "Η κατάτμηση %s είναι τώρα γνωστή ως %s "
-#: diskdrake/interactive.pm:1199
+#: diskdrake/interactive.pm:1211
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""
-#: diskdrake/interactive.pm:1219 diskdrake/interactive.pm:1281
+#: diskdrake/interactive.pm:1231 diskdrake/interactive.pm:1293
#, c-format
msgid "Device: "
msgstr "Συσκευή: "
-#: diskdrake/interactive.pm:1220
-#, fuzzy, c-format
-msgid "Devfs name: "
-msgstr "Όνομα συστήματος: "
-
-#: diskdrake/interactive.pm:1221
+#: diskdrake/interactive.pm:1232
#, c-format
msgid "Volume label: "
msgstr ""
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1233
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Πιθανό DOS γράμμα δίσκου: %s \n"
-#: diskdrake/interactive.pm:1226 diskdrake/interactive.pm:1235
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1237 diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1311
#, c-format
msgid "Type: "
msgstr "Τύπος: "
-#: diskdrake/interactive.pm:1230 install_steps_gtk.pm:300
+#: diskdrake/interactive.pm:1241
#, c-format
msgid "Name: "
msgstr "Όνομα: "
-#: diskdrake/interactive.pm:1237
+#: diskdrake/interactive.pm:1248
#, c-format
msgid "Start: sector %s\n"
msgstr "Αρχή: τομέας %s\n"
-#: diskdrake/interactive.pm:1238
+#: diskdrake/interactive.pm:1249
#, c-format
msgid "Size: %s"
msgstr "Μέγεθος: %s"
-#: diskdrake/interactive.pm:1240
+#: diskdrake/interactive.pm:1251
#, c-format
msgid ", %s sectors"
msgstr ", %s τομείς"
-#: diskdrake/interactive.pm:1242
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Κύλινδρος από %d έως %d\n"
-#: diskdrake/interactive.pm:1243
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Formatted\n"
msgstr "Μορφοποιημένος\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "Not formatted\n"
msgstr "Αμορφοποίητος\n"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Mounted\n"
msgstr "Συνδεδεμένος\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1252
+#: diskdrake/interactive.pm:1263
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2809,7 +1972,7 @@ msgstr ""
"Αρχείο (α) loopback:\n"
" %s\n"
-#: diskdrake/interactive.pm:1253
+#: diskdrake/interactive.pm:1264
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2818,27 +1981,27 @@ msgstr ""
"Κατάτμηση εκκίνησης εξ ορισμού\n"
" (από MS-DOS, όχι από lilo)\n"
-#: diskdrake/interactive.pm:1255
+#: diskdrake/interactive.pm:1266
#, c-format
msgid "Level %s\n"
msgstr "Επίπεδο %s\n"
-#: diskdrake/interactive.pm:1256
+#: diskdrake/interactive.pm:1267
#, fuzzy, c-format
msgid "Chunk size %d KiB\n"
msgstr "Μέγεθος chunk %s\n"
-#: diskdrake/interactive.pm:1257
+#: diskdrake/interactive.pm:1268
#, c-format
msgid "RAID-disks %s\n"
msgstr "Δίσκοι RAID %s\n"
-#: diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1270
#, c-format
msgid "Loopback file name: %s"
msgstr "Όνομα αρχείου loopback: %s"
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1273
#, fuzzy, c-format
msgid ""
"\n"
@@ -2850,7 +2013,7 @@ msgstr ""
"\n"
" Οδηγός\n"
-#: diskdrake/interactive.pm:1265
+#: diskdrake/interactive.pm:1276
#, c-format
msgid ""
"\n"
@@ -2863,76 +2026,79 @@ msgstr ""
"κατάτμηση για\n"
"dual-booting το σύστημά σας.\n"
-#: diskdrake/interactive.pm:1282
+#: diskdrake/interactive.pm:1285
+#, c-format
+msgid "Empty space on %s (%s)"
+msgstr ""
+
+#: diskdrake/interactive.pm:1294
#, c-format
msgid "Read-only"
msgstr "Μόνο για ανάγνωση"
-#: diskdrake/interactive.pm:1283
+#: diskdrake/interactive.pm:1295
#, c-format
msgid "Size: %s\n"
msgstr "Μέγεθος: %s\n"
-#: diskdrake/interactive.pm:1284
+#: diskdrake/interactive.pm:1296
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Γεωμετρία: %s κύλινδροι, %s κεφαλές, %s τομείς\n"
-#: diskdrake/interactive.pm:1285 network/thirdparty.pm:331
+#: diskdrake/interactive.pm:1297
#, c-format
msgid "Info: "
msgstr "Πληροφορίες: "
-#: diskdrake/interactive.pm:1286
+#: diskdrake/interactive.pm:1298
#, c-format
msgid "LVM-disks %s\n"
msgstr "Δίσκοι LVM %s\n"
-#: diskdrake/interactive.pm:1287
+#: diskdrake/interactive.pm:1299
#, c-format
msgid "Partition table type: %s\n"
msgstr "Τύπος πίνακα κατατμήσεων: %s\n"
-#: diskdrake/interactive.pm:1288
+#: diskdrake/interactive.pm:1300
#, c-format
msgid "on channel %d id %d\n"
msgstr "στο κανάλι %d id %d\n"
-#: diskdrake/interactive.pm:1331
+#: diskdrake/interactive.pm:1343
#, c-format
msgid "Filesystem encryption key"
msgstr "Κλειδί κρυπτογράφησης συστήματος αρχείων"
-#: diskdrake/interactive.pm:1332
+#: diskdrake/interactive.pm:1344
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Επιλέξτε το κλειδί κρυπτογράφησης του συστήματος αρχείων"
-#: diskdrake/interactive.pm:1335
+#: diskdrake/interactive.pm:1347
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Αυτός ο κωδικός πρόσβασης είναι πολύ απλός (πρέπει να έχει τουλάχιστον %d "
"χαρακτήρες)"
-#: diskdrake/interactive.pm:1336
+#: diskdrake/interactive.pm:1348
#, c-format
msgid "The encryption keys do not match"
msgstr "Τα κλειδιά κρυπτογράφησης είναι ανόμοια"
-#: diskdrake/interactive.pm:1339 network/netconnect.pm:1073
-#: standalone/drakconnect:419 standalone/drakroam:120
+#: diskdrake/interactive.pm:1351
#, c-format
msgid "Encryption key"
msgstr "Κλειδί κρυπτογράφησης"
-#: diskdrake/interactive.pm:1340
+#: diskdrake/interactive.pm:1352
#, c-format
msgid "Encryption key (again)"
msgstr "Κλειδί κρυπτογράφησης (ξανά)"
-#: diskdrake/interactive.pm:1342 standalone/drakvpn:1017
-#: standalone/drakvpn:1102
+#: diskdrake/interactive.pm:1354
#, fuzzy, c-format
msgid "Encryption algorithm"
msgstr "Πιστοποίηση"
@@ -2942,27 +2108,35 @@ msgstr "Πιστοποίηση"
msgid "Change type"
msgstr "Αλλαγή τύπου"
-#: diskdrake/smbnfs_gtk.pm:163
+#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:539
+#: interactive/curses.pm:214 interactive/http.pm:104 interactive/http.pm:160
+#: interactive/stdio.pm:39 interactive/stdio.pm:142 ugtk2.pm:404 ugtk2.pm:506
+#: ugtk2.pm:515 ugtk2.pm:788
+#, c-format
+msgid "Cancel"
+msgstr "Άκυρο"
+
+#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr "Αδυναμία προσπέλασης με το όνομα χρήστη %s (λάθος κωδικός)"
-#: diskdrake/smbnfs_gtk.pm:167 diskdrake/smbnfs_gtk.pm:176
+#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Απαιτείται Πιστοποίηση Τομέα"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Ποίο όνομα χρήστη"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Και άλλο"
-#: diskdrake/smbnfs_gtk.pm:177
+#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
@@ -2970,85 +2144,82 @@ msgstr ""
"Παρακαλώ εισάγετε το όνομα χρήστη τον κωδικό πρόσβασης και το όνομα τομέα "
"για τη σύνδεση στον host."
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3640
+#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Όνομα χρήστη"
-#: diskdrake/smbnfs_gtk.pm:205
+#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Αναζήτηση διακομιστών"
-#: diskdrake/smbnfs_gtk.pm:210
+#: diskdrake/smbnfs_gtk.pm:211
#, fuzzy, c-format
msgid "Search new servers"
msgstr "Αναζήτηση διακομιστών"
-#: do_pkgs.pm:16 do_pkgs.pm:49
+#: do_pkgs.pm:16 do_pkgs.pm:53
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Το πακέτο %s πρέπει να αναβαθμιστεί. Θέλετε να το εγκαταστήσετε;"
-#: do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:52 printer/printerdrake.pm:3948
+#: do_pkgs.pm:19 do_pkgs.pm:40 do_pkgs.pm:56
#, fuzzy, c-format
msgid "Could not install the %s package!"
msgstr "Εγκατάσταση πακέτου %s"
-#: do_pkgs.pm:24 do_pkgs.pm:57
+#: do_pkgs.pm:24 do_pkgs.pm:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Ένα απαραίτητο αρχείο (το %s ) δεν υπάρχει"
-#: do_pkgs.pm:35 harddrake/sound.pm:278 install_steps_interactive.pm:1288
-#: keyboard.pm:381 network/ndiswrapper.pm:95 network/netconnect.pm:471
-#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2495
-#: printer/printerdrake.pm:2632 printer/printerdrake.pm:2953
-#: printer/printerdrake.pm:2960 printer/printerdrake.pm:3947
-#: printer/printerdrake.pm:4211 printer/printerdrake.pm:4330
-#: printer/printerdrake.pm:5487 standalone/drakTermServ:354
-#: standalone/drakTermServ:1267 standalone/drakTermServ:1328
-#: standalone/drakTermServ:2006 standalone/drakbackup:510
-#: standalone/drakbackup:609 standalone/drakboot:133 standalone/drakclock:224
-#: standalone/drakconnect:973 standalone/drakfont:679 standalone/drakperm:380
-#: standalone/drakperm:390 standalone/drakups:27 standalone/harddrake2:510
-#: standalone/harddrake2:526 standalone/localedrake:43
-#: standalone/scannerdrake:51 standalone/scannerdrake:957
-#, c-format
-msgid "Warning"
-msgstr "Προσοχή"
-
-#: do_pkgs.pm:35 standalone/harddrake2:526
+#: do_pkgs.pm:35
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Τα παρακάτω πακέτα πρέπει να εγκατασταθούν:\n"
-#: do_pkgs.pm:205
+#: do_pkgs.pm:209
#, c-format
msgid "Installing packages..."
msgstr "Εγκατάσταση πακέτων..."
-#: do_pkgs.pm:252
+#: do_pkgs.pm:255
#, fuzzy, c-format
msgid "Removing packages..."
msgstr "Αφαιρείται ο %s..."
-#: fs/format.pm:58 fs/format.pm:65
+#: fs/any.pm:17
+#, c-format
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Προκλήθηκε σφάλμα - δεν βρέθηκαν συσκευές στις οποίες να είναι δυνατή η "
+"δημιουργία νέων συστημάτων αρχείων. Παρακαλώ ελέγξτε το υλικό σας για την "
+"αιτία αυτού του προβλήματος"
+
+#: fs/any.pm:62 fs/partitioning_wizard.pm:55
+#, c-format
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Πρέπει να έχετε μια κατάτμηση FAT mounted στο /boot/efi"
+
+#: fs/format.pm:59 fs/format.pm:66
#, c-format
msgid "Formatting partition %s"
msgstr "Μορφοποίηση κατάτμησης %s"
-#: fs/format.pm:62
+#: fs/format.pm:63
#, c-format
msgid "Creating and formatting file %s"
msgstr "Δημιουργία και μορφοποίηση αρχείου %s"
-#: fs/format.pm:115
+#: fs/format.pm:116
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "δεν ξέρω πώς να μορφοποιήσω το %s σε τύπο %s"
-#: fs/format.pm:120 fs/format.pm:122
+#: fs/format.pm:121 fs/format.pm:123
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s μορφοποίηση του %s απέτυχε"
@@ -3058,27 +2229,27 @@ msgstr "%s μορφοποίηση του %s απέτυχε"
msgid "Circular mounts %s\n"
msgstr "Κυκλικές συνδέσεις %s\n"
-#: fs/mount.pm:74
+#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "Προσάρτηση κατάτμησης %s"
-#: fs/mount.pm:75
+#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "η σύνδεση της κατάτμησης %s στον κατάλογο %s απέτυχε"
-#: fs/mount.pm:80 fs/mount.pm:97
+#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "Έλεγχος %s"
-#: fs/mount.pm:113 partition_table.pm:385
+#: fs/mount.pm:118 partition_table.pm:384
#, c-format
msgid "error unmounting %s: %s"
msgstr "σφάλμα κατά την αποσύνδεση του %s: %s"
-#: fs/mount.pm:142
+#: fs/mount.pm:133
#, c-format
msgid "Enabling swap partition %s"
msgstr "Ενεργοποίηση κατάτμησης swap %s"
@@ -3142,36 +2313,314 @@ msgstr ""
#: fs/mount_options.pm:139
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow every user to mount and umount the file system."
msgstr ""
#: fs/mount_options.pm:141
#, c-format
-msgid "Enable user disk quota accounting, and optionally enforce limits"
+msgid "Allow an ordinary user to mount the file system."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Support user. extended attributes"
+msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""
#: fs/mount_options.pm:145
#, c-format
-msgid "Give write access to ordinary users"
+msgid "Support \"user.\" extended attributes"
msgstr ""
#: fs/mount_options.pm:147
#, c-format
+msgid "Give write access to ordinary users"
+msgstr ""
+
+#: fs/mount_options.pm:149
+#, c-format
msgid "Give read-only access to ordinary users"
msgstr ""
-#: fs/type.pm:363
+#: fs/mount_point.pm:80
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Διπλό σημείο σύνδεσης %s"
+
+#: fs/mount_point.pm:95
+#, c-format
+msgid "No partition available"
+msgstr "δεν υπάρχουν διαθέσιμες κατατμήσεις"
+
+#: fs/mount_point.pm:98
+#, c-format
+msgid "Scanning partitions to find mount points"
+msgstr "Ανάλυση κατατμήσεων για προσδιορισμό σημείων σύνδεσης."
+
+#: fs/mount_point.pm:105
+#, c-format
+msgid "Choose the mount points"
+msgstr "Επιλέξτε σημεία σύνδεσης"
+
+#: fs/partitioning.pm:46
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "Επιλέξτε κατατμήσεις προς μορφοποίηση"
+
+#: fs/partitioning.pm:76
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+"Απέτυχε ο έλεγχος του συστήματος αρχείων %s. Θέλετε να επισκευάσετε τα "
+"σφάλματα; (προσοχή, μπορεί να χάσετε δεδομένα)"
+
+#: fs/partitioning.pm:79
+#, c-format
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+"Δεν υπάρχει αρκετός χώρος swap για την ολοκλήρωση της εγκατάστασης, παρακαλώ "
+"προσθέστε"
+
+#: fs/partitioning_wizard.pm:47
+#, c-format
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"Πρέπει να έχετε μια βασική κατάτμηση.\n"
+"Δημιουργήστε ή επιλέξτε μια κατάτμηση.\n"
+"Μετά ορίστε ως σημείο σύνδεσης το `/'"
+
+#: fs/partitioning_wizard.pm:52
+#, c-format
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+"Δεν έχετε ορίσει κατάτμηση swap\n"
+"\n"
+"Να συνεχίσω;"
+
+#: fs/partitioning_wizard.pm:80
+#, c-format
+msgid "Use free space"
+msgstr "Χρήση ελεύθερου χώρου"
+
+#: fs/partitioning_wizard.pm:82
+#, c-format
+msgid "Not enough free space to allocate new partitions"
+msgstr "Δεν υπάρχει αρκετός ελεύθερος χώρος για δημιουργία νέων κατατμήσεων"
+
+#: fs/partitioning_wizard.pm:90
+#, c-format
+msgid "Use existing partitions"
+msgstr "Χρήση υπαρχουσών κατατμήσεων"
+
+#: fs/partitioning_wizard.pm:92
+#, c-format
+msgid "There is no existing partition to use"
+msgstr "Δεν υπάρχουν κατατμήσεις προς χρήση"
+
+#: fs/partitioning_wizard.pm:99
+#, c-format
+msgid "Use the Microsoft Windows® partition for loopback"
+msgstr "Χρήση κατάτμησης Microsoft Windows® για loopback"
+
+#: fs/partitioning_wizard.pm:102
+#, c-format
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Ποια κατάτμηση θέλετε να χρησιμοποιήσετε για το Linux4Win;"
+
+#: fs/partitioning_wizard.pm:104
+#, c-format
+msgid "Choose the sizes"
+msgstr "Επιλέξτε τα μεγέθη"
+
+#: fs/partitioning_wizard.pm:105
+#, c-format
+msgid "Root partition size in MB: "
+msgstr "Μέγεθος βασικής κατάτμησης συστήματος σε MB:"
+
+#: fs/partitioning_wizard.pm:106
+#, c-format
+msgid "Swap partition size in MB: "
+msgstr "Μέγεθος κατάτμησης swap σε MB"
+
+#: fs/partitioning_wizard.pm:115
+#, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+"Δεν υπάρχει κατάτμηση FAT για χρήση ως loopback (ή δεν υπάρχει αρκετός χώρος)"
+
+#: fs/partitioning_wizard.pm:122
+#, c-format
+msgid "Use the free space on the Microsoft Windows® partition"
+msgstr "Χρήση του ελεύθερου χώρου στην κατάτμηση των Windows"
+
+#: fs/partitioning_wizard.pm:124
+#, c-format
+msgid "Which partition do you want to resize?"
+msgstr "Σε τι τύπο κατάτμησης θέλετε να αλλάξετε μέγεθος;"
+
+#: fs/partitioning_wizard.pm:138
+#, c-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+"Δεν μπορώ να αλλάξω μέγεθος στην κατάτμηση FAT, \n"
+"προκλήθηκε το παρακάτω λάθος: %s"
+
+#: fs/partitioning_wizard.pm:141
+#, c-format
+msgid "Computing the size of the Microsoft Windows® partition"
+msgstr "Υπολογίζεται το μέγεθος της κατάτμησης των Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:148
+#, c-format
+msgid ""
+"Your Microsoft Windows® partition is too fragmented. Please reboot your "
+"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
+"the Mandriva Linux installation."
+msgstr ""
+"Η κατάτμηση των Microsoft Windows® είναι πολύ κατακερματισμένη, παρακαλώ "
+"τρέξτε πρώτα το ``defrag'' μέσα από τα Microsoft Windows® και ξεκινήστε ξανά "
+"την εγκατάσταση του Mandriva Linux "
+
+#: fs/partitioning_wizard.pm:151
+#, fuzzy, c-format
+msgid ""
+"WARNING!\n"
+"\n"
+"\n"
+"Your Microsoft Windows® partition will be now resized.\n"
+"\n"
+"\n"
+"Be careful: this operation is dangerous. If you have not already done so, "
+"you first need to exit the installation, run \"chkdsk c:\" from a Command "
+"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
+"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
+"optionally run defrag, then restart the installation. You should also backup "
+"your data.\n"
+"\n"
+"\n"
+"When sure, press %s."
+msgstr ""
+"ΠΡΟΣΟΧΗ!\n"
+"\n"
+"\n"
+"Το DrakX πρέπει τώρα να αλλάξει το μέγεθος της κατάτμησης των Windows.\n"
+"\n"
+"\n"
+"Η διαδικασία αυτή εμπεριέχει κινδύνους. Εάν δεν το έχετε κάνει ήδη, βγείτε "
+"από την εγκατάσταση ελέγξετε την κατάτμηση με το scandisk μέσα από τα "
+"Windows και κατά περίπτωση την αποκατακερμάτιση (defragment). Μετά "
+"ξεκινήστε ξανά την εγκατάσταση. Μετά θα πρέπει να κρατήσετε αντίγραφο "
+"ασφαλείας των δεδομένων σας.\n"
+"\n"
+"\n"
+"Εάν είστε σίγουροι, πατήστε %s."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: fs/partitioning_wizard.pm:160 interactive.pm:538 interactive/curses.pm:217
+#: ugtk2.pm:508
+#, c-format
+msgid "Next"
+msgstr "Επόμενο"
+
+#: fs/partitioning_wizard.pm:163
+#, c-format
+msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
+msgstr "Τι χώρο θέλετε να κρατήσετε για τα windows στο κατάτμηση %s;"
+
+#: fs/partitioning_wizard.pm:164
+#, c-format
+msgid "Size"
+msgstr "Μέγεθος"
+
+#: fs/partitioning_wizard.pm:173
+#, c-format
+msgid "Resizing Microsoft Windows® partition"
+msgstr "Γίνεται αλλαγή τις κατάτμησης των Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:178
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "Αλλαγή μεγέθους FAT απέτυχε: %s"
+
+#: fs/partitioning_wizard.pm:193
+#, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+"Δεν υπάρχει κατάμτηση FAT για αλλαγή μεγέθους (ή δεν υπάρχει αρκετός χώρος)"
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Remove Microsoft Windows®"
+msgstr "Αφαίρεση Microsoft Windows®"
+
+#: fs/partitioning_wizard.pm:198
+#, fuzzy, c-format
+msgid "Erase and use entire disk"
+msgstr "Διαγραφή ολόκληρου του δίσκου"
+
+#: fs/partitioning_wizard.pm:200
+#, c-format
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+"Έχετε περισσότερους από έναν δίσκους, σε ποιόν θέλετε να εγκαταστήσετε το "
+"Linux;"
+
+#: fs/partitioning_wizard.pm:206
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+"Όλες οι υπάρχουσες κατατμήσεις και τα δεδομένα τους στον δίσκο %s θα χαθούν"
+
+#: fs/partitioning_wizard.pm:217
+#, c-format
+msgid "Custom disk partitioning"
+msgstr "Προσαρμοσμένες κατατμήσεις δίσκου"
+
+#: fs/partitioning_wizard.pm:223
+#, c-format
+msgid "Use fdisk"
+msgstr "Χρήση fdisk"
+
+#: fs/partitioning_wizard.pm:226
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+"Μπορείτε τώρα να κατατμήσετε τον δίσκο %s\n"
+"Όταν τελειώσετε, μην ξεχάσετε να αποθηκεύσετε πατώντας `w'"
+
+#: fs/partitioning_wizard.pm:266
+#, c-format
+msgid "I can not find any room for installing"
+msgstr "Δεν μπορώ να βρω αρκετό χώρο για εγκατάσταση"
+
+#: fs/partitioning_wizard.pm:270
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Ο Οδηγός Κατάτμησης DrakX βρήκε τις παρακάτω λύσεις:"
+
+#: fs/partitioning_wizard.pm:278
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Η κατάτμηση απέτυχε: %s"
+
+#: fs/type.pm:366
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr ""
"Δεν μπορείτε να χρησιμοποιήσετε το JFS για κατατμήσεις μικρότερες από 16MB"
-#: fs/type.pm:364
+#: fs/type.pm:367
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr ""
@@ -3188,7 +2637,12 @@ msgstr "με /usr"
msgid "server"
msgstr "εξυπηρετητής"
-#: fsedit.pm:219
+#: fsedit.pm:116
+#, c-format
+msgid "BIOS software RAID detected on disks %s. Activate it?"
+msgstr ""
+
+#: fsedit.pm:230
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
@@ -3207,24 +2661,24 @@ msgstr ""
"\n"
"Συμφωνείτε να διαγραφούν όλες οι κατατμήσεις;\n"
-#: fsedit.pm:392
+#: fsedit.pm:403
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Το σημείο σύνδεσης πρέπει να ξεκινάει με /"
-#: fsedit.pm:393
+#: fsedit.pm:404
#, fuzzy, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
"Το όνομα του εκτυπωτή πρέπει να περιέχει μόνο γράμματα, αριθμούς και τον "
"χαρακτήρα underscore"
-#: fsedit.pm:394
+#: fsedit.pm:405
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Υπάρχει ήδη κατάτμηση με σημείο σύνδεσης %s\n"
-#: fsedit.pm:398
+#: fsedit.pm:409
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -3234,14 +2688,14 @@ msgstr ""
"\n"
" Όχι\n"
-#: fsedit.pm:404
+#: fsedit.pm:415
#, fuzzy, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr "Δεν μπορείτε να χρησιμοποιήσετε μια κατάτμηση LVM για προσάρτηση %s"
-#: fsedit.pm:406
+#: fsedit.pm:417
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -3252,13 +2706,13 @@ msgstr ""
"\n"
" Όχι\n"
-#: fsedit.pm:410 fsedit.pm:412
+#: fsedit.pm:421 fsedit.pm:423
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""
"Αυτός ο κατάλογος πρέπει να παραμείνει στο ριζικό σύστημα αρχείων (root)"
-#: fsedit.pm:414 fsedit.pm:416
+#: fsedit.pm:425 fsedit.pm:427
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -3267,26 +2721,26 @@ msgstr ""
"Χρειάζεστε ένα πραγματικό σύστημα αρχείων (ext2/ext3, reiserfs, xfs, or jfs) "
"για αυτό το σημείο σύνδεσης\n"
-#: fsedit.pm:418
+#: fsedit.pm:429
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr ""
"Δεν μπορείτε να χρησιμοποιήσετε κρυπτογραφημένο σύστημα αρχείων για "
"προσάρτηση %s"
-#: fsedit.pm:482
+#: fsedit.pm:493
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
"Δεν υπάρχει αρκετός ελεύθερος χώρος για την αυτόματη δημιουργία νέων "
"κατατμήσεων"
-#: fsedit.pm:484
+#: fsedit.pm:495
#, c-format
msgid "Nothing to do"
msgstr "Καμία ενέργεια προς εκτέλεση"
-#: harddrake/data.pm:62 install_any.pm:1710
+#: harddrake/data.pm:62
#, c-format
msgid "Floppy"
msgstr "Δισκέτα"
@@ -3296,12 +2750,12 @@ msgstr "Δισκέτα"
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:88 install_any.pm:1711
+#: harddrake/data.pm:88
#, c-format
msgid "Hard Disk"
msgstr "Δίσκος"
-#: harddrake/data.pm:97 install_any.pm:1712
+#: harddrake/data.pm:97
#, c-format
msgid "CDROM"
msgstr "CDROM"
@@ -3316,103 +2770,102 @@ msgstr "Συσκευές εγγραφής CD/DVD"
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:127 standalone/drakbackup:2066
+#: harddrake/data.pm:127
#, c-format
msgid "Tape"
msgstr "Ταινία"
-#: harddrake/data.pm:136
+#: harddrake/data.pm:138
+#, c-format
+msgid "AGP controllers"
+msgstr "Ελεγκτές AGP"
+
+#: harddrake/data.pm:147
#, c-format
msgid "Videocard"
msgstr "Κάρτα οθόνης"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:157
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:154
+#: harddrake/data.pm:165
#, c-format
msgid "Tvcard"
msgstr "Κάρτα TV"
-#: harddrake/data.pm:163
+#: harddrake/data.pm:174
#, c-format
msgid "Other MultiMedia devices"
msgstr "Άλλα συσκευές Πολυμέσων"
-#: harddrake/data.pm:172
+#: harddrake/data.pm:183
#, c-format
msgid "Soundcard"
msgstr "Κάρτα ήχου"
-#: harddrake/data.pm:185
+#: harddrake/data.pm:196
#, c-format
msgid "Webcam"
msgstr ""
-#: harddrake/data.pm:199
+#: harddrake/data.pm:210
#, c-format
msgid "Processors"
msgstr "Επεξεργαστές"
-#: harddrake/data.pm:209
+#: harddrake/data.pm:220
#, fuzzy, c-format
msgid "ISDN adapters"
msgstr "Εσωτερική κάρτα ISDN"
-#: harddrake/data.pm:220
+#: harddrake/data.pm:231
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:229
+#: harddrake/data.pm:240
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:238
+#: harddrake/data.pm:249
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:247
+#: harddrake/data.pm:258
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:256
+#: harddrake/data.pm:267
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:265
+#: harddrake/data.pm:276
#, c-format
msgid "Ethernetcard"
msgstr "Κάρτα Δικτύου Ethernet"
-#: harddrake/data.pm:282 network/netconnect.pm:492
+#: harddrake/data.pm:293
#, c-format
msgid "Modem"
msgstr "Μόντεμ"
-#: harddrake/data.pm:292
+#: harddrake/data.pm:303
#, c-format
msgid "ADSL adapters"
msgstr ""
-#: harddrake/data.pm:306
+#: harddrake/data.pm:315
#, c-format
msgid "Memory"
msgstr "Μνήμη"
-#: harddrake/data.pm:315
-#, c-format
-msgid "AGP controllers"
-msgstr "Ελεγκτές AGP"
-
-#: harddrake/data.pm:324 help.pm:187 help.pm:856
-#: install_steps_interactive.pm:964
+#: harddrake/data.pm:324
#, c-format
msgid "Printer"
msgstr "Εκτυπωτής"
@@ -3438,85 +2891,92 @@ msgstr "Ελεγκτές SATA"
msgid "RAID controllers"
msgstr "Ελεγκτές RAID"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "ελεγκτές (E)IDE/ATA"
-#: harddrake/data.pm:385
+#: harddrake/data.pm:386
+#, c-format
+msgid "USB Mass Storage Devices"
+msgstr ""
+
+#: harddrake/data.pm:395
+#, fuzzy, c-format
+msgid "Card readers"
+msgstr "Μοντέλο κάρτας:"
+
+#: harddrake/data.pm:404
#, c-format
msgid "Firewire controllers"
msgstr "Ελεγκτές Firewire"
-#: harddrake/data.pm:394
+#: harddrake/data.pm:413
#, c-format
msgid "PCMCIA controllers"
msgstr "ελεγκτές PCMCIA"
-#: harddrake/data.pm:403
+#: harddrake/data.pm:422
#, c-format
msgid "SCSI controllers"
msgstr "ελεγκτές SCSI"
-#: harddrake/data.pm:412
+#: harddrake/data.pm:431
#, c-format
msgid "USB controllers"
msgstr "Ελεγκτές USB"
-#: harddrake/data.pm:421
+#: harddrake/data.pm:440
#, fuzzy, c-format
msgid "USB ports"
msgstr ", εκτυπωτής USB"
-#: harddrake/data.pm:430
+#: harddrake/data.pm:449
#, c-format
msgid "SMBus controllers"
msgstr "Ελεγκτές SMBus"
-#: harddrake/data.pm:439
+#: harddrake/data.pm:458
#, c-format
msgid "Bridges and system controllers"
msgstr ""
-#: harddrake/data.pm:450 help.pm:856 install_steps_interactive.pm:94
-#: install_steps_interactive.pm:924 standalone/finish-install:41
-#: standalone/keyboarddrake:29
+#: harddrake/data.pm:469
#, c-format
msgid "Keyboard"
msgstr "Πληκτρολόγιο"
-#: harddrake/data.pm:463
+#: harddrake/data.pm:482
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:472 help.pm:856 install_steps_interactive.pm:957
+#: harddrake/data.pm:491
#, c-format
msgid "Mouse"
msgstr "Ποντίκι"
-#: harddrake/data.pm:486
+#: harddrake/data.pm:505
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:495
+#: harddrake/data.pm:514
#, c-format
msgid "Scanner"
msgstr "Σαρωτής"
-#: harddrake/data.pm:505 standalone/harddrake2:475
+#: harddrake/data.pm:524
#, c-format
msgid "Unknown/Others"
msgstr "Άγνωστο/Άλλο"
-#: harddrake/data.pm:533
+#: harddrake/data.pm:552
#, c-format
msgid "cpu # "
msgstr "επεξεργαστής # "
-#: harddrake/sound.pm:195 standalone/drakconnect:162
-#: standalone/drakconnect:637
+#: harddrake/sound.pm:195
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Παρακαλώ περιμένετε... Εφαρμογή ρυθμίσεων"
@@ -3594,17 +3054,17 @@ msgstr ""
"\n"
" νέο"
-#: harddrake/sound.pm:262 harddrake/sound.pm:350 standalone/drakups:144
+#: harddrake/sound.pm:262 harddrake/sound.pm:351
#, c-format
msgid "Driver:"
msgstr "Οδηγός:"
-#: harddrake/sound.pm:270
+#: harddrake/sound.pm:271
#, c-format
msgid "Trouble shooting"
msgstr "Επίλυση προβλημάτων"
-#: harddrake/sound.pm:278
+#: harddrake/sound.pm:279
#, fuzzy, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
@@ -3619,12 +3079,12 @@ msgstr ""
"\n"
" νέο."
-#: harddrake/sound.pm:286
+#: harddrake/sound.pm:287
#, c-format
msgid "No open source driver"
msgstr "Κανένας οδηγός ανοιχτού κώδικα"
-#: harddrake/sound.pm:287
+#: harddrake/sound.pm:288
#, fuzzy, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
@@ -3632,33 +3092,33 @@ msgid ""
msgstr ""
"Δεν υπάρχει γνωστός εναλλακτικός οδηγός OSS/ALSA για την κάρτα ήχου σας (%s)"
-#: harddrake/sound.pm:290
+#: harddrake/sound.pm:291
#, c-format
msgid "No known driver"
msgstr "Κανένας γνωστός οδηγός"
-#: harddrake/sound.pm:291
+#: harddrake/sound.pm:292
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Δεν υπάρχει κάποιος γνωστός οδηγός για την κάρτα ήχου σας (%s)"
-#: harddrake/sound.pm:295 network/netconnect.pm:98 network/netconnect.pm:837
+#: harddrake/sound.pm:296
#, c-format
msgid "Unknown driver"
msgstr "Άγνωστος οδηγός"
-#: harddrake/sound.pm:296
+#: harddrake/sound.pm:297
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "Σφάλμα: Ο οδηγός \"%s\" της κάρτας ήχου σας δεν υπάρχει στη λίστα"
-#: harddrake/sound.pm:310
+#: harddrake/sound.pm:311
#, c-format
msgid "Sound trouble shooting"
msgstr "Επίλυση προβλημάτων Ήχου"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:313
+#: harddrake/sound.pm:314
#, fuzzy, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
@@ -3667,7 +3127,7 @@ msgid ""
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\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"
@@ -3700,18 +3160,18 @@ msgstr ""
"\n"
"\n"
-#: harddrake/sound.pm:339
+#: harddrake/sound.pm:340
#, c-format
msgid "Let me pick any driver"
msgstr "Θα διαλέξω εγώ οδηγό"
-#: harddrake/sound.pm:342
+#: harddrake/sound.pm:343
#, c-format
msgid "Choosing an arbitrary driver"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:345
+#: harddrake/sound.pm:346
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3721,8 +3181,7 @@ msgid ""
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
-#: harddrake/v4l.pm:12 standalone/net_applet:64 standalone/net_applet:65
-#: standalone/net_applet:67
+#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Αυτόματη ανίχνευση"
@@ -3763,3621 +3222,53 @@ msgstr "Μοντέλο κάρτας:"
msgid "Tuner type:"
msgstr ""
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "Number of capture buffers:"
-msgstr ""
-
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: harddrake/v4l.pm:481
+#: interactive.pm:125 interactive.pm:538 interactive/curses.pm:217
+#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
+#: interactive/stdio.pm:142 interactive/stdio.pm:143 ugtk2.pm:410 ugtk2.pm:508
+#: ugtk2.pm:788 ugtk2.pm:811
#, c-format
-msgid "PLL setting:"
-msgstr "Ρυθμίσεις PLL:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "Radio support:"
-msgstr "Υποστήριξη ραδιοφώνου:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "enable radio support"
-msgstr "ενεργοποίηση ραδιοφώνου"
-
-#: help.pm:12
-#, fuzzy, c-format
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandriva Linux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-"\n"
-" Linux\n"
-" Αποδοχή\n"
-"."
-
-#: help.pm:18
-#, fuzzy, c-format
-msgid ""
-"GNU/Linux is a multi-user system which means each user can have his or her\n"
-"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point will not be "
-"authorized\n"
-"to change anything except their own files and their own configurations,\n"
-"protecting the system from unintentional or malicious changes which could\n"
-"impact on the system as a whole. You'll have to create at least one regular\n"
-"user for yourself -- this is the account which you should use for routine,\n"
-"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
-"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system will not work any more. If you make a\n"
-"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you will not affect the entire system.\n"
-"\n"
-"The first field asks you for a real name. Of course, this is not mandatory\n"
-"-- you can actually enter whatever you like. DrakX will use the first word\n"
-"you type in this field and copy it to the \"%s\" one, which is the name\n"
-"this user will enter to log onto the system. If you like, you may override\n"
-"the default and change the user name. The next step is to enter a password.\n"
-"From a security point of view, a non-privileged (regular) user password is\n"
-"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
-"by making it blank or too simple: after all, your files could be the ones\n"
-"at risk.\n"
-"\n"
-"Once you click on \"%s\", you can add other users. Add a user for each one\n"
-"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
-"finished adding users.\n"
-"\n"
-"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
-"that user (bash by default).\n"
-"\n"
-"When you're finished adding users, you'll be asked to choose a user who\n"
-"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click on\n"
-"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
-msgstr ""
-"Linux χρήστης χρήστης\n"
-"\n"
-" χρήστης\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" χρήστης\n"
-"\n"
-"\n"
-"\n"
-" χρήστης\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Χρήστης\n"
-" χρήστης\n"
-" εξ' ορισμού\n"
-" χρήστης\n"
-"\n"
-" απλό\n"
-"\n"
-"\n"
-" Αποδοχή χρήστης Προσθήκη χρήστης\n"
-"\n"
-" Επόμενο\n"
-"\n"
-" Για Προχωρημένους εξ' ορισμού\n"
-" χρήστης εξ' ορισμού\n"
-"\n"
-" Πότε χρήστης\n"
-"\n"
-"\n"
-" χρήστης Επόμενο\n"
-" Ολοκληρώθηκε\n"
-"."
-
-#: help.pm:52 printer/printerdrake.pm:1866 printer/printerdrake.pm:1987
-#: standalone/draksambashare:60
-#, c-format
-msgid "User name"
-msgstr "Όνομα χρήστη"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: help.pm:52 help.pm:432 help.pm:682 install_interactive.pm:176
-#: install_steps_gtk.pm:237 install_steps_gtk.pm:682 interactive.pm:436
-#: interactive/newt.pm:321 network/thirdparty.pm:385
-#: printer/printerdrake.pm:3884 standalone/drakTermServ:412
-#: standalone/drakbackup:4102 standalone/drakbackup:4196
-#: standalone/drakbackup:4213 standalone/drakbackup:4231 ugtk2.pm:490
-#, c-format
-msgid "Next"
-msgstr "Επόμενο"
-
-#: help.pm:52
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Θέλετε να χρησιμοποιήσετε αυτή τη λειτουργία;"
-
-#: help.pm:55
-#, fuzzy, c-format
-msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Linux ανιχνεύθηκε\n"
-"\n"
-"\n"
-" Ολοκληρώθηκε\n"
-"\n"
-"\n"
-" Linux\n"
-"\n"
-" Όνομα\n"
-"\n"
-" Όνομα\n"
-"\n"
-"\n"
-" IDE\n"
-"\n"
-"\n"
-" IDE\n"
-"\n"
-"\n"
-" πρωτεύουσα IDE\n"
-"\n"
-" πρωτεύουσα IDE\n"
-"\n"
-" δευτερεύουσα IDE\n"
-"\n"
-" δευτερεύουσα IDE\n"
-"\n"
-"\n"
-"."
-
-#: help.pm:86
-#, fuzzy, c-format
-msgid ""
-"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-"Η εγκατάσταση του Mandriva Linux είναι μοιρασμένο σε αρκετά CD-ROM. Το \n"
-"DrakX ξέρει αν ένα επιλεγμένο πακέτο υπάρχει σε άλλο CD-ROM, θα εξάγει το \n"
-"τρέχον CD και θα ζητήσει να εισάγετε ένα άλλο όταν αυτό θα χρειαστεί."
-
-#: help.pm:93
-#, fuzzy, c-format
-msgid ""
-"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandriva Linux, and to make "
-"it\n"
-"simpler to manage, they have been placed into groups of similar\n"
-"applications.\n"
-"\n"
-"Mandriva Linux sorts package groups in four categories. You can mix and\n"
-"match applications from the various categories, so a ``Workstation''\n"
-"installation can still have applications from the ``Server'' category\n"
-"installed.\n"
-"\n"
-" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
-"more of the groups in the workstation category.\n"
-"\n"
-" * \"%s\": if you plan on using your machine for programming, select the\n"
-"appropriate groups from that category. The special \"LSB\" group will\n"
-"configure your system so that it complies as much as possible with the\n"
-"Linux Standard Base specifications.\n"
-"\n"
-" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
-"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
-"of the system. However, if you do not select the \"LSB\" group you will\n"
-"still have a system which is nearly 100%% LSB-compliant.\n"
-"\n"
-" * \"%s\": if your machine is intended to be a server, select which of the\n"
-"more common services you wish to install on your machine.\n"
-"\n"
-" * \"%s\": this is where you will choose your preferred graphical\n"
-"environment. At least one must be selected if you want to have a graphical\n"
-"interface available.\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group.\n"
-"\n"
-"You can check the \"%s\" box, which is useful if you're familiar with the\n"
-"packages being offered or if you want to have total control over what will\n"
-"be installed.\n"
-"\n"
-"If you start the installation in \"%s\" mode, you can deselect all groups\n"
-"and prevent the installation of any new packages. This is useful for\n"
-"repairing or updating an existing system.\n"
-"\n"
-"If you deselect all groups when performing a regular installation (as\n"
-"opposed to an upgrade), a dialog will pop up suggesting different options\n"
-"for a minimal installation:\n"
-"\n"
-" * \"%s\": install the minimum number of packages possible to have a\n"
-"working graphical desktop.\n"
-"\n"
-" * \"%s\": installs the base system plus basic utilities and their\n"
-"documentation. This installation is suitable for setting up a server.\n"
-"\n"
-" * \"%s\": will install the absolute minimum number of packages necessary\n"
-"to get a working Linux system. With this installation you will only have a\n"
-"command-line interface. The total size of this installation is about 65\n"
-"megabytes."
-msgstr ""
-"\n"
-" Linux\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Linux\n"
-"\n"
-"\n"
-" Σταθμός Εργασίας\n"
-" Ανάπτυξη\n"
-"\n"
-" Σταθμός Εργασίας\n"
-"\n"
-"\n"
-"\n"
-" Ανάπτυξη\n"
-"\n"
-"\n"
-" Εξυπηρετητής εξυπηρετητής\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Μετακίνηση σε εξέλιξη Ομάδα εργασίας:\n"
-" Ομάδα εργασίας:\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" εξυπηρετητής\n"
-"\n"
-"\n"
-" Linux\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Αναβάθμιση\n"
-" νέο\n"
-"."
-
-#: help.pm:147 share/compssUsers.pl:24
-#, c-format
-msgid "Workstation"
-msgstr "Σταθμός Εργασίας"
-
-#: help.pm:147 share/compssUsers.pl:65 share/compssUsers.pl:167
-#: share/compssUsers.pl:169
-#, c-format
-msgid "Development"
-msgstr "Ανάπτυξη"
-
-#: help.pm:147 share/compssUsers.pl:145
-#, c-format
-msgid "Graphical Environment"
-msgstr "Γραφικό Περιβάλλον"
-
-#: help.pm:147 install_steps_gtk.pm:235 install_steps_interactive.pm:623
-#, c-format
-msgid "Individual package selection"
-msgstr "Επιλογή ξεχωριστών πακέτων"
-
-#: help.pm:147 help.pm:589
-#, c-format
-msgid "Upgrade"
-msgstr "Αναβάθμιση"
-
-#: help.pm:147 install_steps_interactive.pm:581
-#, c-format
-msgid "With X"
-msgstr "Με Χ"
-
-#: help.pm:147
-#, fuzzy, c-format
-msgid "With basic documentation"
-msgstr "Με την βασική τεκμηρίωση (συνιστάται!)"
-
-#: help.pm:147
-#, fuzzy, c-format
-msgid "Truly minimal install"
-msgstr "Ελάχιστη Εγκατάσταση"
-
-#: help.pm:150
-#, fuzzy, c-format
-msgid ""
-"If you choose to install packages individually, the installer will present\n"
-"a tree containing all packages classified by groups and subgroups. While\n"
-"browsing the tree, you can select entire groups, subgroups, or individual\n"
-"packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description will appear on the\n"
-"right to let you know the purpose of that package.\n"
-"\n"
-"!! If a server package has been selected, either because you specifically\n"
-"chose the individual package or because it was part of a group of packages,\n"
-"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandriva Linux will automatically start any installed\n"
-"services at boot time. Even if they are safe and have no known issues at\n"
-"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandriva Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do "
-"or\n"
-"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
-"the listed services and they will be started automatically at boot time. !!\n"
-"\n"
-"The \"%s\" option is used to disable the warning dialog which appears\n"
-"whenever the installer automatically selects a package to resolve a\n"
-"dependency issue. Some packages depend on others and the installation of\n"
-"one particular package may require the installation of another package. The\n"
-"installer can determine which packages are required to satisfy a dependency\n"
-"to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-"package list created during a previous installation. This is useful if you\n"
-"have a number of machines that you wish to configure identically. Clicking\n"
-"on this icon will ask you to insert the floppy disk created at the end of\n"
-"another installation. See the second tip of the last step on how to create\n"
-"such a floppy."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" εξυπηρετητής\n"
-" Ομάδα εργασίας:\n"
-"\n"
-" εξ' ορισμού Linux\n"
-"\n"
-"\n"
-" Linux\n"
-"\n"
-" Όχι Ναι\n"
-"\n"
-" εξ' ορισμού\n"
-"\n"
-" απενεργοποίηση\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"."
-
-#: help.pm:181 help.pm:286 help.pm:314 help.pm:445 install_any.pm:944
-#: interactive.pm:161 modules/interactive.pm:71 standalone/drakbackup:2636
-#: standalone/drakfont:687 standalone/draksec:54 standalone/harddrake2:331
-#: ugtk2.pm:898 wizards.pm:156
-#, c-format
-msgid "No"
-msgstr "Όχι"
+msgid "Ok"
+msgstr "Εντάξει"
-#: help.pm:181 help.pm:286 help.pm:445 install_any.pm:944 interactive.pm:161
-#: modules/interactive.pm:71 printer/printerdrake.pm:883
-#: printer/printerdrake.pm:898 standalone/drakbackup:2636
-#: standalone/drakfont:685 standalone/draksec:55 standalone/harddrake2:330
-#: ugtk2.pm:898 wizards.pm:156
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ναι"
-#: help.pm:181
-#, c-format
-msgid "Automatic dependencies"
-msgstr ""
-
-#: help.pm:184
-#, fuzzy, c-format
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to set up a new printer. The interface presented in our\n"
-"manual is similar to the one used during installation."
-msgstr ""
-"Εκτυπωτής Όχι Εκτυπωτής\n"
-"\n"
-" νέο\n"
-"."
-
-#: help.pm:187 help.pm:567 help.pm:856 install_steps_gtk.pm:595
-#: standalone/drakbackup:2460 standalone/drakbackup:2464
-#: standalone/drakbackup:2468 standalone/drakbackup:2472
-#: standalone/drakroam:227
-#, c-format
-msgid "Configure"
-msgstr "Ρύθμιση"
-
-#: help.pm:190
-#, fuzzy, c-format
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
-"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which are not needed at boot\n"
-"time.\n"
-"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably do not want to start any services which you do not "
-"need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" εξ' ορισμού\n"
-"\n"
-"\n"
-" εξυπηρετητής\n"
-"\n"
-" εξυπηρετητής\n"
-"!"
-
-#: help.pm:207
-#, fuzzy, c-format
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
-"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
-msgstr ""
-"Linux\n"
-"\n"
-"\n"
-" HardDrake Linux\n"
-"\n"
-" Τομέας Windows \n"
-"\n"
-"\n"
-" εξυπηρετητής Διαδίκτυο\n"
-" Διαδίκτυο\n"
-" εξυπηρετητής\n"
-" εξυπηρετητής."
-
-#: help.pm:218 install_steps_interactive.pm:859
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Το ρολόι του υπολογιστή σας είναι ρυθμισμένο σε GMT (ώρα Γκρίνουιτς)"
-
-#: help.pm:218
-#, fuzzy, c-format
-msgid "Automatic time synchronization"
-msgstr "Αυτόματος συγχρονισμός ώρας (χρήση NTP)"
-
-#: help.pm:221
-#, fuzzy, c-format
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" εξυπηρετητής\n"
-"."
-
-#: help.pm:232
-#, fuzzy, c-format
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"Σύστημα Linux\n"
-"\n"
-" Linux\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" εξυπηρετητής\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Οθόνη\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Ανάλυση\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Δοκιμή\n"
-"\n"
-"\n"
-" Ναι\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Επιλογές\n"
-"\n"
-"\n"
-"\n"
-" Όχι εξυπηρετητής\n"
-"."
-
-#: help.pm:289
-#, fuzzy, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
-msgstr ""
-"Οθόνη\n"
-"\n"
-"\n"
-"\n"
-"."
-
-#: help.pm:296
-#, fuzzy, c-format
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
-msgstr ""
-"Ανάλυση\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"."
-
-#: help.pm:304
-#, fuzzy, c-format
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-"\n"
-" εξυπηρετητής\n"
-"."
-
-#: help.pm:309
-#, fuzzy, c-format
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-"\n"
-"\n"
-" Όχι\n"
-" εξυπηρετητής\n"
-"."
-
-#: help.pm:317
-#, fuzzy, c-format
-msgid ""
-"You now need to decide where you want to install the Mandriva Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandriva Linux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandriva Linux system, "
-"choose\n"
-"this option. Be careful, because you will not be able to undo this "
-"operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-"\n"
-" Linux\n"
-"\n"
-"\n"
-" νέο\n"
-" Linux\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" χρήστης\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" ανιχνεύθηκε\n"
-" Linux\n"
-"\n"
-" εξ' ορισμού\n"
-"\n"
-"\n"
-" Τομέας Windows Τομέας Windows \n"
-"\n"
-" Linux Διαγραφή\n"
-" Τομέας Windows \n"
-" Τομέας Windows Αλλαγή μεγέθους\n"
-"\n"
-" Τομέας Windows \n"
-"\n"
-" Linux Τομέας Windows \n"
-"\n"
-"\n"
-" Τομέας Windows \n"
-"\n"
-" Τομέας Windows νέο\n"
-"\n"
-" Διαγραφή\n"
-" νέο Linux\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Λίστα Αφαίρεσης Τομέας Windows \n"
-" Όλα\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Προσαρμοσμένο\n"
-"\n"
-"\n"
-" Ολοκληρώθηκε\n"
-"\n"
-"\n"
-"."
-
-#: help.pm:375 install_interactive.pm:96
-#, c-format
-msgid "Use free space"
-msgstr "Χρήση ελεύθερου χώρου"
-
-#: help.pm:375
-#, fuzzy, c-format
-msgid "Use existing partition"
-msgstr "Χρήση υπαρχουσών κατατμήσεων"
-
-#: help.pm:375 install_interactive.pm:138
-#, c-format
-msgid "Use the free space on the Microsoft Windows® partition"
-msgstr "Χρήση του ελεύθερου χώρου στην κατάτμηση των Windows"
-
-#: help.pm:375
-#, c-format
-msgid "Erase entire disk"
-msgstr "Διαγραφή ολόκληρου του δίσκου"
-
-#: help.pm:375
-#, fuzzy, c-format
-msgid "Remove Windows"
-msgstr "Αφαίρεση Windows(TM)"
-
-#: help.pm:375 install_interactive.pm:233
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Προσαρμοσμένες κατατμήσεις δίσκου"
-
-#: help.pm:378
-#, fuzzy, c-format
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
-"to remove the installation media (CD-ROM or floppy). The first thing you\n"
-"should see after your computer has finished doing its hardware tests is the\n"
-"boot-loader menu, giving you the choice of which operating system to start.\n"
-"\n"
-"The \"%s\" button shows two more buttons to:\n"
-"\n"
-" * \"%s\": enables you to create an installation floppy disk which will\n"
-"automatically perform a whole installation without the help of an operator,\n"
-"similar to the installation you've just configured.\n"
-"\n"
-" Note that two different options are available after clicking on that\n"
-"button:\n"
-"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
-"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing on a number of similar\n"
-"machines. See the Auto install section on our web site for more\n"
-"information.\n"
-"\n"
-" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
-"To use this selection with another installation, insert the floppy and\n"
-"start the installation. At the prompt, press the [F1] key, type >>linux\n"
-"defcfg=\"floppy\"<< and press the [Enter] key.\n"
-"\n"
-"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
-"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
-"/dev/fd0\"."
-msgstr ""
-"Linux\n"
-" Επόμενο\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Για Προχωρημένους\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Επαναφόρτωση\n"
-"\n"
-"\n"
-" Αυτόματο\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Αποθήκευση\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Linux\n"
-
-#: help.pm:410
-#, fuzzy, c-format
-msgid "Generate auto-install floppy"
-msgstr "Δημιουργία δισκέτας αυτόματης εγκατάστασης"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Replay"
-msgstr "Επαναφόρτωση"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Automated"
-msgstr "Αυτόματο"
-
-#: help.pm:410 install_steps_interactive.pm:1317
-#, c-format
-msgid "Save packages selection"
-msgstr "Αποθήκευση επιλογής πακέτων"
-
-#: help.pm:413
-#, fuzzy, c-format
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
-"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
-"reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"will not be able to recover it.\n"
-"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
-"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandriva Linux operating system installation.\n"
-"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Επόμενο\n"
-"\n"
-" Προηγούμενο\n"
-" νέο Linux\n"
-"\n"
-" Για Προχωρημένους\n"
-"."
-
-#: help.pm:432 install_steps_gtk.pm:392 interactive.pm:437
-#: interactive/newt.pm:318 printer/printerdrake.pm:3882
-#: standalone/drakTermServ:391 standalone/drakbackup:4065
-#: standalone/drakbackup:4101 standalone/drakbackup:4212
-#: standalone/drakbackup:4227 ugtk2.pm:488
-#, c-format
-msgid "Previous"
-msgstr "Προηγούμενο"
-
-#: help.pm:435
-#, fuzzy, c-format
-msgid ""
-"By the time you install Mandriva Linux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-"Linux\n"
-"\n"
-"\n"
-" Διαδίκτυο\n"
-" Ναι Διαδίκτυο Όχι\n"
-"\n"
-"\n"
-" Ναι\n"
-"\n"
-" Εγκατάσταση\n"
-" Άκυρο."
-
-#: help.pm:445 help.pm:589 install_steps_gtk.pm:391
-#: install_steps_interactive.pm:132
-#, c-format
-msgid "Install"
-msgstr "Εγκατάσταση"
-
-#: help.pm:448
-#, fuzzy, c-format
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
-"\n"
-"If you do not know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandriva Linux\n"
-"Control Center.\n"
-"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-"επίπεδο\n"
-" επίπεδο\n"
-"\n"
-" Διαδίκτυο επίπεδο\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" εξ' ορισμού."
-
-#: help.pm:459
-#, fuzzy, c-format
-msgid "Security Administrator"
-msgstr "Διαχειριστής Ασφαλείας:"
-
-#: help.pm:462
-#, fuzzy, c-format
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandriva Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"%s\": this option deletes all partitions on the selected hard drive\n"
-"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
-"partitions in the free space of your hard drive\n"
-"\n"
-"\"%s\": gives access to additional features:\n"
-"\n"
-" * \"%s\": saves the partition table to a floppy. Useful for later\n"
-"partition-table recovery if necessary. It is strongly recommended that you\n"
-"perform this step.\n"
-"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
-"\n"
-" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it does not always\n"
-"work.\n"
-"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
-"\n"
-" * \"%s\": un-checking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
-"\n"
-" * \"%s\": use this option if you wish to use a wizard to partition your\n"
-"hard drive. This is recommended if you do not have a good understanding of\n"
-"partitioning.\n"
-"\n"
-" * \"%s\": use this option to cancel your changes.\n"
-"\n"
-" * \"%s\": allows additional actions on partitions (type, options, format)\n"
-"and gives more information about the hard drive.\n"
-"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"When defining the size of a partition, you can finely set the partition\n"
-"size by using the Arrow keys of your keyboard.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and the [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
-"\n"
-" * Ctrl-d to delete a partition\n"
-"\n"
-" * Ctrl-m to set the mount point\n"
-"\n"
-"To get information about the different file system types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"\n"
-" Linux\n"
-" Linux\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" IDE\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Άλλα\n"
-"\n"
-" Αποθήκευση\n"
-"\n"
-"\n"
-"\n"
-" Επαναφορά\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" μετά βίας\n"
-"\n"
-"\n"
-"\n"
-" Οδηγός\n"
-"\n"
-"\n"
-"\n"
-" Αναίρεση\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Ολοκληρώθηκε\n"
-"\n"
-"\n"
-" Πότε\n"
-"\n"
-"\n"
-"\n"
-" Ολοκληρώθηκε\n"
-"\n"
-" Πότε\n"
-"\n"
-" νέο\n"
-"\n"
-" Διαγραφή\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" HFS\n"
-"\n"
-"\n"
-"\n"
-"."
-
-#: help.pm:531
-#, fuzzy, c-format
-msgid "Removable media auto-mounting"
-msgstr "Αυτόματη σύνδεση αποσπώμενων μονάδων"
-
-#: help.pm:531
-#, fuzzy, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Αλλαγή σε κανονικό τρόπο λειτουργίας"
-
-#: help.pm:534
-#, fuzzy, c-format
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandriva Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Περισσότερες των μία κατατμήσεις Windows βρέθηκαν στον δίσκο σας. Παρακαλώ \n"
-"επιλέξτε ποια θέλετε να συρρικνώσετε για να εγκαταστήσετε το Mandriva "
-"Linux.\n"
-"\n"
-"Κάθε κατάτμηση αναφέρεται ως: \"Όνομα Linux\", \"Όνομα Windows\"\n"
-"\"Χωρητικότητα\".\n"
-"\n"
-"Το όνομα Linux σημαίνει τα εξής: \"Τύπος δίσκου\",\"αριθμός δίσκου\",\n"
-"\"αριθμός κατάτμησης για παράδειγμα, \"hda1\").\n"
-"\n"
-"Ο \"Τύπος δίσκου\" είναι \"hd\" εάν πρόκειται για δίσκο IDE και \"sd\" \n"
-"για SCSI δίσκο.\n"
-"\n"
-"Ο \" αριθμός δίσκου\"είναι πάντα ένα γράμμα μετά το \"hd\" ή \"sd\". Για\n"
-"τους IDE δίσκους: \n"
-"\n"
-" * \"a\" είναι ο \"master δίσκος στον πρώτο ελεγκτή IDE\",\n"
-"\n"
-" * \"b\" είναι ο \"slave δίσκος στον πρώτο ελεγκτή IDE\",\n"
-"\n"
-" * \"c\" είναι ο \"master δίσκος στον δεύτερο ελεγκτή IDE\",\n"
-"\n"
-" * \"d\" είναι ο \"slave δίσκος στον δεύτερο ελεγκτή IDE\".\n"
-"\n"
-"Για δίσκους SCSI, \"a\" είναι ο πρώτος δίσκος, \"b\" είναι ο δεύτερος "
-"δίσκος\n"
-" κλπ...\n"
-"\n"
-"Το \"Όνομα Windows\" είναι το γράμμα της κατάτμησης όπως φαίνεται από τα\n"
-"Windows (ο πρώτος δίσκος ή κατάτμηση λέγεται \"C:\")."
-
-#: help.pm:565
-#, fuzzy, c-format
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country is not in "
-"the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-"\"Χώρα\": ελέγξτε την επιλογή χώρας. Αν δεν είστε σε αυτή τη χώρα,\n"
-"κάντε κλικ στο πλήκτρο και επιλέξτε μια άλλη."
-
-#: help.pm:570
-#, fuzzy, c-format
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandriva Linux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandriva Linux system. Your current "
-"partitioning\n"
-"scheme and user data will not be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandriva Linux version \"8.1\" is not recommended."
-msgstr ""
-"ενεργοποίηση τώρα Linux\n"
-"\n"
-"\n"
-" νέο\n"
-" Linux\n"
-"\n"
-" Εγκατάσταση\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Αναβάθμιση\n"
-" Linux\n"
-" χρήστης\n"
-"\n"
-"\n"
-" Αναβάθμιση Linux\n"
-" εκτελείται Αναβάθμιση\n"
-" Linux."
-
-#: help.pm:592
-#, fuzzy, c-format
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
-"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard do not match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
-"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
-"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-"εξ' ορισμού\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Άλλα\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"."
-
-#: help.pm:610
-#, fuzzy, c-format
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandriva Linux's use of UTF-8 "
-"will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"\n"
-" Για Προχωρημένους\n"
-"\n"
-"\n"
-" Ισπανία\n"
-" εξ' ορισμού Για Προχωρημένους\n"
-"\n"
-"\n"
-"\n"
-" Επόμενο\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" χρήστης\n"
-" χρήστης."
-
-#: help.pm:648
-#, c-format
-msgid "Espanol"
-msgstr ""
-
-#: help.pm:651
-#, fuzzy, c-format
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
-"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" σειριακό\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" εξ' ορισμού\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Με ροδάκι ανιχνεύθηκε\n"
-"\n"
-"\n"
-" Επόμενο\n"
-" ενεργοποίηση τώρα\n"
-"\n"
-"\n"
-"."
-
-#: help.pm:682
-#, fuzzy, c-format
-msgid "with Wheel emulation"
-msgstr "Προσομοίωση Κουμπιών"
-
-#: help.pm:682
-#, c-format
-msgid "Universal | Any PS/2 & USB mice"
-msgstr ""
-
-#: help.pm:685
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Παρακαλώ επιλέξτε την κατάλληλη θύρα. Για παράδειγμα,\n"
-"η\"COM1\" στα Windows ονομάζεται \"ttyS0\" στο GNU/Linux."
-
-#: help.pm:689
-#, fuzzy, c-format
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: do not make the password too long or too complicated because "
-"you\n"
-"must be able to remember it!\n"
-"\n"
-"The password will not be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you do not know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-"Linux\n"
-" Root\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Linux\n"
-"\n"
-"\n"
-" σημαντικό\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" εξυπηρετητής Για Προχωρημένους\n"
-"\n"
-" LDAP NIS Τομέας Windows Τομέας\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Όχι Διαδίκτυο\n"
-"."
-
-#: help.pm:723
-#, fuzzy, c-format
-msgid "authentication"
-msgstr "Πιστοποίηση"
-
-#: help.pm:726
-#, c-format
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can not determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" will not install any boot loader. Use this option only if "
-"you\n"
-"know what you're doing."
-msgstr ""
-
-#: help.pm:743
-#, fuzzy, c-format
-msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you do not like your printing\n"
-"system you may change it by running PrinterDrake from the Mandriva Linux\n"
-"Control Center and clicking on the \"%s\" button."
-msgstr ""
-"Άλλο\n"
-" Linux\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" απλό\n"
-"\n"
-" Linux\n"
-"\n"
-" CUPS Εκτύπωση Σύστημα\n"
-"\n"
-" απλό εξυπηρετητής\n"
-"\n"
-"\n"
-" εξυπηρετητής\n"
-" CUPS\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" εκτελείται\n"
-"."
-
-#: help.pm:766
-#, c-format
-msgid "pdq"
-msgstr ""
-
-#: help.pm:766 printer/cups.pm:117 printer/data.pm:129
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
-
-#: help.pm:766
-#, c-format
-msgid "Expert"
-msgstr "Εξπέρ"
-
-#: help.pm:769
-#, fuzzy, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"IDE\n"
-" PCI\n"
-"\n"
-"\n"
-"\n"
-" PCI Ναι\n"
-" Όχι\n"
-"\n"
-" ανιχνεύθηκε\n"
-" Επόμενο Επόμενο\n"
-"\n"
-"\n"
-" PCI\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"."
-
-#: help.pm:787
-#, fuzzy, c-format
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-"ανιχνεύθηκε\n"
-"\n"
-"\n"
-"."
-
-#: help.pm:789 help.pm:856 install_steps_interactive.pm:991
-#: install_steps_interactive.pm:1008
-#, c-format
-msgid "Sound card"
-msgstr "Κάρτα ήχου"
-
-#: help.pm:792
-#, c-format
-msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"is not in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it is not\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandriva Linux Control Center after the installation has finished to "
-"benefit\n"
-"from full in-line help.\n"
-"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandriva Linux Control Center.\n"
-"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-
-#: help.pm:856 install_steps_interactive.pm:855
-#: install_steps_interactive.pm:950 standalone/drakclock:100
-#: standalone/finish-install:56 standalone/finish-install:57
-#, c-format
-msgid "Timezone"
-msgstr "Ωρολογιακή Ζώνη"
-
-#: help.pm:856 install_steps_interactive.pm:1024
-#, c-format
-msgid "TV card"
-msgstr "Κάρτα TV"
-
-#: help.pm:856
-#, fuzzy, c-format
-msgid "ISDN card"
-msgstr "Εσωτερική κάρτα ISDN"
-
-#: help.pm:856
-#, fuzzy, c-format
-msgid "Graphical Interface"
-msgstr "Γραφικό περιβάλλον"
-
-#: help.pm:856 install_any.pm:1733 install_steps_interactive.pm:1042
-#: standalone/drakbackup:2051
-#, c-format
-msgid "Network"
-msgstr "Δίκτυο"
-
-#: help.pm:856 install_steps_interactive.pm:1054
-#, fuzzy, c-format
-msgid "Proxies"
-msgstr "Προφίλ "
-
-#: help.pm:856 install_steps_interactive.pm:1065
-#, c-format
-msgid "Security Level"
-msgstr "Επίπεδο Ασφαλείας"
-
-#: help.pm:856 install_steps_interactive.pm:1079 network/drakfirewall.pm:189
-#, c-format
-msgid "Firewall"
-msgstr "Τοίχος Προστασίας"
-
-#: help.pm:856 install_steps_interactive.pm:1095
-#, c-format
-msgid "Bootloader"
-msgstr "Προγράμματος εκκίνησης"
-
-#: help.pm:856 install_steps_interactive.pm:1108 services.pm:114
-#: services.pm:157 services.pm:193
-#, c-format
-msgid "Services"
-msgstr "Υπηρεσίες"
-
-#: help.pm:859
-#, fuzzy, c-format
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Επιλέξτε τον δίσκο που θέλετε να διαγράψετε για να εγκαταστήσετε \n"
-"την νέα κατάτμηση Mandriva Linux. ΠΡΟΣΟΧΗ: Όλα τα δεδομένα θα διαγραφούν\n"
-"και θα είναι αδύνατη η επαναφορά τους!"
-
-#: help.pm:864
-#, fuzzy, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-"Κάντε κλικ στο \"Επόμενο ->\" εάν θέλετε να διαγράψετε όλα τα δεδομένα\n"
-"τις κατατμήσεις που βρίσκονται στον σκληρό σας δίσκο. Προσοχή μετά\n"
-"που θα κλικ στο \"Επόμενο ->\"δεν θα μπορείτε να ανακτήσετε τα δεδομένα\n"
-"και τις κατατμήσεις που βρίσκονται στον δίσκο μαζί και τα Windows\n"
-" Επόμενο\n"
-"\n"
-"Κάντε κλικ στο \"<- Προηγούμενο\" για να τερματίσετε τη λειτουργία αυτή\n"
-"χωρίς να χάσετε τα δεδομένα και τις κατατμήσεις σας στο δίσκο."
-
-#: help.pm:870
-#, c-format
-msgid "Next ->"
-msgstr "Επόμενο ->"
-
-#: help.pm:870
-#, c-format
-msgid "<- Previous"
-msgstr "<- Προηγούμενο"
-
-#: install2.pm:115
-#, c-format
-msgid ""
-"Can not access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"Αδυναμία πρόσβασης των αρθρωμάτων που αντιστοιχούν στον πυρήνα σας (το "
-"αρχείο %s λείπει), γενικά αυτό σημαίνει ότι η δισκέτα εκκίνησης δεν είναι σε "
-"συγχρονισμό με το Μέσο εγκατάστασης ( παρακαλώ δημιουργήστε μια νέα δισκέτα "
-"εκκίνησης)"
-
-#: install2.pm:167
-#, c-format
-msgid "You must also format %s"
-msgstr "Πρέπει επίσης να μορφοποιήσετε το %s"
-
-#: install_any.pm:406
-#, fuzzy, c-format
-msgid "Do you have further supplementary media?"
-msgstr "Έχετε άλλον;"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:409
-#, c-format
-msgid ""
-"The following media have been found and will be used during install: %s.\n"
-"\n"
-"\n"
-"Do you have a supplementary installation medium to configure?"
-msgstr ""
-
-#: install_any.pm:422 printer/printerdrake.pm:3211
-#: printer/printerdrake.pm:3218 standalone/scannerdrake:182
-#: standalone/scannerdrake:190 standalone/scannerdrake:241
-#: standalone/scannerdrake:248
-#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: install_any.pm:422
-#, fuzzy, c-format
-msgid "Network (HTTP)"
-msgstr "Δίκτυο %s"
-
-#: install_any.pm:422
-#, fuzzy, c-format
-msgid "Network (FTP)"
-msgstr "Δίκτυο %s"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (NFS)"
-msgstr ""
-
-#: install_any.pm:452
-#, c-format
-msgid "Insert the CD 1 again"
-msgstr ""
-
-#: install_any.pm:478 network/netconnect.pm:866 standalone/drakbackup:114
-#, c-format
-msgid "No device found"
-msgstr "Δε βρέθηκε συσκευή"
-
-#: install_any.pm:483
-#, c-format
-msgid "Insert the CD"
-msgstr ""
-
-#: install_any.pm:488
-#, fuzzy, c-format
-msgid "Unable to mount CD-ROM"
-msgstr "Αδυναμία fork: %s"
-
-#: install_any.pm:521 install_any.pm:542
-#, c-format
-msgid "URL of the mirror?"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "NFS setup"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "Please enter the hostname and directory of your NFS media"
-msgstr ""
-
-#: install_any.pm:527
-#, c-format
-msgid "Hostname of the NFS mount ?"
-msgstr ""
-
-#: install_any.pm:527 standalone/draknfs:288
-#, c-format
-msgid "Directory"
-msgstr "Κατάλογος"
-
-#: install_any.pm:580
-#, fuzzy, c-format
-msgid ""
-"Can't find a package list file on this mirror. Make sure the location is "
-"correct."
-msgstr "Δεν βρέθηκε το %s στο %s"
-
-#: install_any.pm:657
-#, c-format
-msgid "Removing packages prior to upgrade..."
-msgstr ""
-
-#: install_any.pm:699
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Ψάχνω για ήδη εγκατεστημένα πακέτα..."
-
-#: install_any.pm:703
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Αναζήτηση πακέτων προς αναβάθμιση..."
-
-#: install_any.pm:781
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done."
-msgstr ""
-"Αλλαγή Cd-Rom!\n"
-"\n"
-"Παρακαλώ εισάγετε το Cd-Rom με όνομα \"%s\" στον οδηγό σας και πατήστε "
-"Εντάξει."
-
-#: install_any.pm:793
-#, fuzzy, c-format
-msgid "Copying in progress"
-msgstr "Ανίχνευση σε εξέλιξη"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:935
-#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They do not have any known security\n"
-"issues, but some new ones could be found. In that case, you must make sure\n"
-"to upgrade as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"Έχετε επιλέξει τους παρακάτω διακομιστές(η): %s\n"
-"\n"
-"\n"
-"Αυτοί οι διακομιστές είναι εξ ορισμού ενεργεί. Δεν έχουν κάποιο γνωστό "
-"πρόβλημα\n"
-"ασφάλειας, αλλά μπορούν να βρεθούν νέα. Σε αυτή την περίπτωση βεβαιωθείτε "
-"ότι\n"
-"έχετε εγκαταστήσει την τελευταία έκδοση το συντομότερο.\n"
-"\n"
-"\n"
-"Είστε βέβαιοι για την εγκατάσταση αυτών των διακομιστών;\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:958
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-"Τα παρακάτω πακέτα θα αφαιρεθούν για να αναβαθμιστεί το σύστημά σας: %s\n"
-"\n"
-"\n"
-"Θέλετε πραγματικά να αφαιρέστε αυτά τα πακέτα;\n"
-
-#: install_any.pm:1394 partition_table.pm:597
-#, c-format
-msgid "Error reading file %s"
-msgstr "Σφάλμα κατά την ανάγνωση του αρχείου %s"
-
-#: install_any.pm:1628
-#, fuzzy, c-format
-msgid "The following disk(s) were renamed:"
-msgstr "Τα παρακάτω πακέτα πρέπει να εγκατασταθούν:\n"
-
-#: install_any.pm:1630
-#, c-format
-msgid "%s (previously named as %s)"
-msgstr ""
-
-#: install_any.pm:1670
-#, 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 ""
-"Προκλήθηκε σφάλμα - δεν βρέθηκαν συσκευές στις οποίες να είναι δυνατή η "
-"δημιουργία νέων συστημάτων αρχείων. Παρακαλώ ελέγξτε το υλικό σας για την "
-"αιτία αυτού του προβλήματος"
-
-#: install_any.pm:1714
-#, c-format
-msgid "HTTP"
-msgstr "HTTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "FTP"
-msgstr "FTP"
-
-#: install_any.pm:1714
-#, c-format
-msgid "NFS"
-msgstr "NFS"
-
-#: install_any.pm:1737
-#, fuzzy, c-format
-msgid "Please choose a media"
-msgstr "Παρακαλώ επιλέξτε"
-
-#: install_any.pm:1753
-#, fuzzy, c-format
-msgid "File already exists. Overwrite it?"
-msgstr "Το αρχείο υπάρχει ήδη. Να ξαναγραφεί;"
-
-#: install_any.pm:1757
-#, c-format
-msgid "Permission denied"
-msgstr "Δεν δόθηκε άδεια"
-
-#: install_any.pm:1806
-#, c-format
-msgid "Bad NFS name"
-msgstr ""
-
-#: install_any.pm:1827
-#, fuzzy, c-format
-msgid "Bad media %s"
-msgstr "προστίθεται το μέσο %s"
-
-#: install_any.pm:1877
-#, c-format
-msgid "Can not make screenshots before partitioning"
-msgstr "Αδύνατη η λήψη στιγμιοτύπων πριν από την δημιουργία κατατμήσεων"
-
-#: install_any.pm:1884
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Τα στιγμιότυπα θα είναι διαθέσιμα μετά την εγκατάστασης στο %s"
-
-#: install_gtk.pm:136
-#, c-format
-msgid "System installation"
-msgstr "Εγκατάσταση"
-
-#: install_gtk.pm:139
-#, c-format
-msgid "System configuration"
-msgstr "Ρύθμιση συστήματος"
-
-#: install_interactive.pm:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Ένα μέρος του υλικού σας χρειάζεται ``ιδιόκτητους'' οδηγούς για να "
-"λειτουργήσει.\n"
-"Μπορείτε να βρείτε σχετικές πληροφορίες στο: %s"
-
-#: install_interactive.pm:63
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Πρέπει να έχετε μια βασική κατάτμηση.\n"
-"Δημιουργήστε ή επιλέξτε μια κατάτμηση.\n"
-"Μετά ορίστε ως σημείο σύνδεσης το `/'"
-
-#: install_interactive.pm:68
-#, c-format
-msgid ""
-"You do not have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Δεν έχετε ορίσει κατάτμηση swap\n"
-"\n"
-"Να συνεχίσω;"
-
-#: install_interactive.pm:71 install_steps.pm:215
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Πρέπει να έχετε μια κατάτμηση FAT mounted στο /boot/efi"
-
-#: install_interactive.pm:98
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Δεν υπάρχει αρκετός ελεύθερος χώρος για δημιουργία νέων κατατμήσεων"
-
-#: install_interactive.pm:106
-#, c-format
-msgid "Use existing partitions"
-msgstr "Χρήση υπαρχουσών κατατμήσεων"
-
-#: install_interactive.pm:108
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "Δεν υπάρχουν κατατμήσεις προς χρήση"
-
-#: install_interactive.pm:115
-#, c-format
-msgid "Use the Microsoft Windows® partition for loopback"
-msgstr "Χρήση κατάτμησης Microsoft Windows® για loopback"
-
-#: install_interactive.pm:118
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Ποια κατάτμηση θέλετε να χρησιμοποιήσετε για το Linux4Win;"
-
-#: install_interactive.pm:120
-#, c-format
-msgid "Choose the sizes"
-msgstr "Επιλέξτε τα μεγέθη"
-
-#: install_interactive.pm:121
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Μέγεθος βασικής κατάτμησης συστήματος σε MB:"
-
-#: install_interactive.pm:122
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Μέγεθος κατάτμησης swap σε MB"
-
-#: install_interactive.pm:131
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"Δεν υπάρχει κατάτμηση FAT για χρήση ως loopback (ή δεν υπάρχει αρκετός χώρος)"
-
-#: install_interactive.pm:140
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Σε τι τύπο κατάτμησης θέλετε να αλλάξετε μέγεθος;"
-
-#: install_interactive.pm:154
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occurred: %s"
-msgstr ""
-"Δεν μπορώ να αλλάξω μέγεθος στην κατάτμηση FAT, \n"
-"προκλήθηκε το παρακάτω λάθος: %s"
-
-#: install_interactive.pm:157
-#, c-format
-msgid "Computing the size of the Microsoft Windows® partition"
-msgstr "Υπολογίζεται το μέγεθος της κατάτμησης των Microsoft Windows®"
-
-#: install_interactive.pm:164
-#, c-format
-msgid ""
-"Your Microsoft Windows® partition is too fragmented. Please reboot your "
-"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
-"the Mandriva Linux installation."
-msgstr ""
-"Η κατάτμηση των Microsoft Windows® είναι πολύ κατακερματισμένη, παρακαλώ "
-"τρέξτε πρώτα το ``defrag'' μέσα από τα Microsoft Windows® και ξεκινήστε ξανά "
-"την εγκατάσταση του Mandriva Linux "
-
-#: install_interactive.pm:167
-#, fuzzy, c-format
-msgid ""
-"WARNING!\n"
-"\n"
-"\n"
-"Your Microsoft Windows® partition will be now resized.\n"
-"\n"
-"\n"
-"Be careful: this operation is dangerous. If you have not already done so, "
-"you first need to exit the installation, run \"chkdsk c:\" from a Command "
-"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
-"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
-"optionally run defrag, then restart the installation. You should also backup "
-"your data.\n"
-"\n"
-"\n"
-"When sure, press %s."
-msgstr ""
-"ΠΡΟΣΟΧΗ!\n"
-"\n"
-"\n"
-"Το DrakX πρέπει τώρα να αλλάξει το μέγεθος της κατάτμησης των Windows.\n"
-"\n"
-"\n"
-"Η διαδικασία αυτή εμπεριέχει κινδύνους. Εάν δεν το έχετε κάνει ήδη, βγείτε "
-"από την εγκατάσταση ελέγξετε την κατάτμηση με το scandisk μέσα από τα "
-"Windows και κατά περίπτωση την αποκατακερμάτιση (defragment). Μετά "
-"ξεκινήστε ξανά την εγκατάσταση. Μετά θα πρέπει να κρατήσετε αντίγραφο "
-"ασφαλείας των δεδομένων σας.\n"
-"\n"
-"\n"
-"Εάν είστε σίγουροι, πατήστε %s."
-
-#: install_interactive.pm:179
-#, c-format
-msgid "Which size do you want to keep for Microsoft Windows® on"
-msgstr "Τι χώρο θέλετε να κρατήσετε για τα windows στο"
-
-#: install_interactive.pm:180
-#, c-format
-msgid "partition %s"
-msgstr "κατάτμηση %s"
-
-#: install_interactive.pm:189
-#, c-format
-msgid "Resizing Microsoft Windows® partition"
-msgstr "Γίνεται αλλαγή τις κατάτμησης των Microsoft Windows®"
-
-#: install_interactive.pm:194
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Αλλαγή μεγέθους FAT απέτυχε: %s"
-
-#: install_interactive.pm:209
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr ""
-"Δεν υπάρχει κατάμτηση FAT για αλλαγή μεγέθους (ή δεν υπάρχει αρκετός χώρος)"
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Remove Microsoft Windows®"
-msgstr "Αφαίρεση Microsoft Windows®"
-
-#: install_interactive.pm:214
-#, fuzzy, c-format
-msgid "Erase and use entire disk"
-msgstr "Διαγραφή ολόκληρου του δίσκου"
-
-#: install_interactive.pm:216
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-"Έχετε περισσότερους από έναν δίσκους, σε ποιόν θέλετε να εγκαταστήσετε το "
-"Linux;"
-
-#: install_interactive.pm:222
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"Όλες οι υπάρχουσες κατατμήσεις και τα δεδομένα τους στον δίσκο %s θα χαθούν"
-
-#: install_interactive.pm:237
-#, c-format
-msgid "Use fdisk"
-msgstr "Χρήση fdisk"
-
-#: install_interactive.pm:240
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, do not forget to save using `w'"
-msgstr ""
-"Μπορείτε τώρα να κατατμήσετε τον δίσκο %s\n"
-"Όταν τελειώσετε, μην ξεχάσετε να αποθηκεύσετε πατώντας `w'"
-
-#: install_interactive.pm:276
-#, c-format
-msgid "I can not find any room for installing"
-msgstr "Δεν μπορώ να βρω αρκετό χώρο για εγκατάσταση"
-
-#: install_interactive.pm:280
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Ο Οδηγός Κατάτμησης DrakX βρήκε τις παρακάτω λύσεις:"
-
-#: install_interactive.pm:288
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Η κατάτμηση απέτυχε: %s"
-
-#: install_interactive.pm:295
-#, c-format
-msgid "Bringing up the network"
-msgstr "Εκκίνηση δικτύου"
-
-#: install_interactive.pm:300
-#, c-format
-msgid "Bringing down the network"
-msgstr "Διακοπή λειτουργίας δικτύου"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:10
-#, fuzzy, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandriva "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandriva Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. This document is a license agreement "
-"between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you "
-"explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this "
-"License. \n"
-"If you disagree with any portion of the License, you are not allowed to "
-"install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner "
-"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate "
-"your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all "
-"copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Limited Warranty\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
-"be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without "
-"limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties "
-"resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or "
-"inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or "
-"occurrence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
-"COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
-"no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever "
-"(including without \n"
-"limitation damages for loss of business, interruption of business, financial "
-"loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential "
-"loss) arising out \n"
-"of the possession and use of software components or arising out of "
-"downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some "
-"countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong "
-"cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. The GPL License and Related Licenses\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. "
-"Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the "
-"documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. Intellectual Property Rights\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
-"as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
-"Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Governing Laws \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-msgstr ""
-"\n"
-"\n"
-" Linux\n"
-"\n"
-"\n"
-" Linux\n"
-"\n"
-"\n"
-" Άδεια\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Άδεια\n"
-" Άδεια\n"
-"\n"
-"\n"
-" Άδεια\n"
-" Άδεια Άδεια\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Linux\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Άδεια\n"
-"\n"
-"\n"
-" Γενικά\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Άδεια Τεκμηρίωση\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Θύρα\n"
-"\n"
-" Όλα\n"
-"\n"
-"\n"
-"\n"
-" Linux\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Άδεια Γαλλία\n"
-" Όλα\n"
-" Γαλλία\n"
-
-#: install_messages.pm:90
-#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:98
-#, fuzzy, c-format
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-" Προσοχή\n"
-"\n"
-"\n"
-" Άρνηση\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Άδεια\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Μεταφορά\n"
-"\n"
-"\n"
-"\n"
-" Όλα\n"
-"\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:131
-#, fuzzy, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press Enter to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandriva "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandriva Linux User's Guide."
-msgstr ""
-"Συγχαρητήρια, η εγκατάσταση ολοκληρώθηκε.\n"
-"Αφαιρέστε την δισκέτα ή το CD εκκίνησης και πατήστε return για "
-"επανεκκίνηση.\n"
-"\n"
-"\n"
-"Για πληροφορίες σχετικά με διορθώσεις αυτής της έκδοσης του Mandriva Linux,\n"
-"συμβουλευτείτε την σελίδα: \n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Πληροφορίες σχετικά με τις ρυθμίσεις του συστήματός σας υπάρχουν στο "
-"σχετικό\n"
-"κεφάλαιο του επίσημου οδηγού χρήσης του Mandriva Linux."
-
-#: install_steps.pm:250
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Διπλό σημείο σύνδεσης %s"
-
-#: install_steps.pm:482
-#, c-format
-msgid ""
-"Some important packages did not get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
-"\"\n"
-msgstr ""
-"Μερικά σημαντικά πακέτα δεν εγκαταστάθηκαν σωστά.\n"
-"Ο οδηγός CD-ROM ή το CD-ROM είναι ελαττωματικό.\n"
-"Ελέγξτε το CD-ROM σε ένα άλλο σύστημα χρησιμοποιώντας την εντολή \"rpm -qpl "
-"media/main/*.rpm\"\n"
-
-#: install_steps_auto_install.pm:68 install_steps_stdio.pm:27
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Βήμα `%s'\n"
-
-#: install_steps_gtk.pm:181
-#, c-format
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandriva Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Το σύστημά σας δεν έχει αρκετούς πόρους. Μπορεί να αντιμετωπίσετε "
-"προβλήματα\n"
-"στην εγκατάσταση του Mandriva Linux. Εάν συμβεί αυτό, μπορείτε να δοκιμάσετε "
-"εγκατάσταση κειμένου.\n"
-"Πατήστε F1 κατά την εκκίνηση από CDROM, μετά γράψτε `text'."
-
-#: install_steps_gtk.pm:211 install_steps_interactive.pm:605
-#, c-format
-msgid "Package Group Selection"
-msgstr "Επιλογή Ομάδων Πακέτων"
-
-#: install_steps_gtk.pm:254 install_steps_interactive.pm:548
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Συνολικό μέγεθος: %d / %d MB"
-
-#: install_steps_gtk.pm:299
-#, c-format
-msgid "Bad package"
-msgstr "Λάθος πακέτο"
-
-#: install_steps_gtk.pm:301
-#, c-format
-msgid "Version: "
-msgstr "Έκδοση: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "Size: "
-msgstr "Μέγεθος: "
-
-#: install_steps_gtk.pm:302
-#, fuzzy, c-format
-msgid "%d KB\n"
-msgstr "Μέγεθος: %d KB\n"
-
-#: install_steps_gtk.pm:303
-#, c-format
-msgid "Importance: "
-msgstr "Σπουδαιότητα: "
-
-#: install_steps_gtk.pm:336
-#, c-format
-msgid "You can not select/unselect this package"
-msgstr "Δεν μπορείτε να επιλέξετε/αποεπιλέξετε αυτό το πακέτο"
-
-#: install_steps_gtk.pm:340 network/thirdparty.pm:331
-#, c-format
-msgid "due to missing %s"
-msgstr "λόγω ελλείψεων %s"
-
-#: install_steps_gtk.pm:341
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "λόγω μη ικανοποίησης %s"
-
-#: install_steps_gtk.pm:342
-#, c-format
-msgid "trying to promote %s"
-msgstr "προσπάθεια ενίσχυσης του %s"
-
-#: install_steps_gtk.pm:343
-#, c-format
-msgid "in order to keep %s"
-msgstr "για να κρατηθεί το %s"
-
-#: install_steps_gtk.pm:348
-#, c-format
-msgid ""
-"You can not select this package as there is not enough space left to install "
-"it"
-msgstr ""
-"Δεν μπορείτε να επιλέξετε αυτό το πακέτο διότι δεν υπάρχει αρκετός χώρος"
-
-#: install_steps_gtk.pm:351
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Θα εγκατασταθούν τα παρακάτω πακέτα"
-
-#: install_steps_gtk.pm:352
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Θα αφαιρεθούν τα παρακάτω πακέτα "
-
-#: install_steps_gtk.pm:376
-#, c-format
-msgid "This is a mandatory package, it can not be unselected"
-msgstr "Αυτό είναι απαιτούμενο πακέτο, δεν μπορεί να αποεπιλεγεί"
-
-#: install_steps_gtk.pm:378
-#, c-format
-msgid "You can not unselect this package. It is already installed"
-msgstr "Δεν μπορείτε να αποεπιλέξετε αυτό το πακέτο. Είναι ήδη εγκατεστημένο"
-
-#: install_steps_gtk.pm:381
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Αυτό το πακέτο πρέπει να αναβαθμιστεί\n"
-"Είστε σίγουρος ότι θέλετε να το αποεπιλέξετε;"
-
-#: install_steps_gtk.pm:384
-#, c-format
-msgid "You can not unselect this package. It must be upgraded"
-msgstr "Δεν μπορείτε να αποεπιλέξετε αυτό το πακέτο. Πρέπει να αναβαθμιστεί"
-
-#: install_steps_gtk.pm:389
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Αυτόματη προβολή επιλεγμένων πακέτων"
-
-#: install_steps_gtk.pm:394
-#, fuzzy, c-format
-msgid "Load/Save selection"
-msgstr "Αποθήκευση επιλογής"
-
-#: install_steps_gtk.pm:395
-#, c-format
-msgid "Updating package selection"
-msgstr "Ανανέωση επιλεγμένων πακέτων"
-
-#: install_steps_gtk.pm:400
-#, c-format
-msgid "Minimal install"
-msgstr "Ελάχιστη Εγκατάσταση"
-
-#: install_steps_gtk.pm:414 install_steps_interactive.pm:467
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Επιλέξτε τα πακέτα που θέλετε να εγκαταστήσετε"
-
-#: install_steps_gtk.pm:431 install_steps_interactive.pm:691
-#, c-format
-msgid "Installing"
-msgstr "Εγκατάσταση"
-
-#: install_steps_gtk.pm:457
-#, c-format
-msgid "No details"
-msgstr "Χωρίς λεπτομέρειες"
-
-#: install_steps_gtk.pm:472
-#, c-format
-msgid "Time remaining "
-msgstr "Εναπομένων χρόνος "
-
-#: install_steps_gtk.pm:473
-#, c-format
-msgid "Estimating"
-msgstr "Εκτίμηση"
-
-#: install_steps_gtk.pm:500
-#, c-format
-msgid "%d packages"
-msgstr "%d πακέτα"
-
-#: install_steps_gtk.pm:543 install_steps_interactive.pm:719
-#, fuzzy, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Αλλαγή Cd-Rom!\n"
-"\n"
-"Παρακαλώ εισάγετε το Cd-Rom με όνομα \"%s\" στον οδηγό σας και πατήστε "
-"Εντάξει.\n"
-"Εάν δεν το έχετε, πατήστε Ακύρωση για αποφυγή εγκατάστασης από αυτό το CdRom."
-
-#: install_steps_gtk.pm:556 install_steps_interactive.pm:730
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Προκλήθηκε σφάλμα κατά την ταξινόμηση των πακέτων:"
-
-#: install_steps_gtk.pm:558 install_steps_interactive.pm:734
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Προκλήθηκε σφάλμα κατά την εγκατάσταση των πακέτων:"
-
-#: install_steps_gtk.pm:560 install_steps_interactive.pm:730
-#: install_steps_interactive.pm:734
-#, c-format
-msgid "Go on anyway?"
-msgstr "Να συνεχίσω;"
-
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:910 steps.pm:30
-#, c-format
-msgid "Summary"
-msgstr "Περίληψη"
-
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:906
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "not configured"
-msgstr "δεν ρυθμίστηκε"
-
-#: install_steps_gtk.pm:668
-#, c-format
-msgid ""
-"The following installation media have been found.\n"
-"If you want to skip some of them, you can unselect them now."
-msgstr ""
-
-#: install_steps_gtk.pm:677
-#, c-format
-msgid ""
-"You have the option to copy the contents of the CDs onto the hard drive "
-"before installation.\n"
-"It will then continue from the hard drive and the packages will remain "
-"available once the system is fully installed."
-msgstr ""
-
-#: install_steps_gtk.pm:679
-#, c-format
-msgid "Copy whole CDs"
-msgstr ""
-
-#: install_steps_interactive.pm:95
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Παρακαλώ επιλέξτε την διάταξη πληκτρολογίου."
-
-#: install_steps_interactive.pm:97
-#, fuzzy, c-format
-msgid "Here is the full list of available keyboards"
-msgstr "Αυτή είναι η πλήρης λίστα των διαθέσιμων χωρών"
-
-#: install_steps_interactive.pm:127
-#, c-format
-msgid "Install/Upgrade"
-msgstr "Εγκατάσταση/Αναβάθμιση"
-
-#: install_steps_interactive.pm:128
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Πρόκειται για εγκατάσταση ή για αναβάθμιση;"
-
-#: install_steps_interactive.pm:134
-#, c-format
-msgid "Upgrade %s"
-msgstr "Αναβάθμιση %s"
-
-#: install_steps_interactive.pm:147
-#, fuzzy, c-format
-msgid "Encryption key for %s"
-msgstr "Κλειδί κρυπτογράφησης"
-
-#: install_steps_interactive.pm:170
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Παρακαλώ επιλέξτε τύπο ποντικιού."
-
-#: install_steps_interactive.pm:171
-#, c-format
-msgid "Mouse choice"
-msgstr ""
-
-#: install_steps_interactive.pm:180 standalone/mousedrake:46
-#, c-format
-msgid "Mouse Port"
-msgstr "Θύρα ποντικιού"
-
-#: install_steps_interactive.pm:181 standalone/mousedrake:47
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr ""
-"Παρακαλώ επιλέξτε σειριακή θύρα στην οποία είναι συνδεδεμένο το ποντίκι σας."
-
-#: install_steps_interactive.pm:191
-#, c-format
-msgid "Buttons emulation"
-msgstr "Προσομοίωση Κουμπιών"
-
-#: install_steps_interactive.pm:193
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Προσομοίωση 2 Κουμπιών"
-
-#: install_steps_interactive.pm:194
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Προσομοίωση 3 Κουμπιών"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Ρύθμιση καρτών PCMCIA ..."
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "Configuring IDE"
-msgstr "Ρύθμιση IDE"
-
-#: install_steps_interactive.pm:242
-#, c-format
-msgid "No partition available"
-msgstr "δεν υπάρχουν διαθέσιμες κατατμήσεις"
-
-#: install_steps_interactive.pm:245
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Ανάλυση κατατμήσεων για προσδιορισμό σημείων σύνδεσης."
-
-#: install_steps_interactive.pm:252
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
-msgid "Choose the mount points"
-msgstr "Επιλέξτε σημεία σύνδεσης"
-
-#: install_steps_interactive.pm:300
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Δεν υπάρχει ελεύθερος χώρος για 1MB bootstrap! Η εγκατάσταση θα συνεχιστεί, "
-"αλλά για να ξεκινήσετε το σύστημά σας, θα χρειαστεί να δημιουργήσετε μια "
-"κατάτμηση bootstrap με το DiskDrake"
-
-#: install_steps_interactive.pm:305
-#, fuzzy, c-format
-msgid ""
-"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
-"to boot your system, you'll need to create the bootstrap partition in "
-"DiskDrake"
-msgstr ""
-"Δεν υπάρχει ελεύθερος χώρος για 1MB bootstrap! Η εγκατάσταση θα συνεχιστεί, "
-"αλλά για να ξεκινήσετε το σύστημά σας, θα χρειαστεί να δημιουργήσετε μια "
-"κατάτμηση bootstrap με το DiskDrake"
-
-#: install_steps_interactive.pm:341
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Επιλέξτε κατατμήσεις προς μορφοποίηση"
-
-#: install_steps_interactive.pm:343
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Έλεγχος για χαλασμένα τμήματα;"
-
-#: install_steps_interactive.pm:371
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
-msgstr ""
-"Απέτυχε ο έλεγχος του συστήματος αρχείων %s. Θέλετε να επισκευάσετε τα "
-"σφάλματα; (προσοχή, μπορεί να χάσετε δεδομένα)"
-
-#: install_steps_interactive.pm:374
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr ""
-"Δεν υπάρχει αρκετός χώρος swap για την ολοκλήρωση της εγκατάστασης, παρακαλώ "
-"προσθέστε"
-
-#: install_steps_interactive.pm:383
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Ψάχνω για διαθέσιμα πακέτα και δημιουργώ ξανά τη βάση δεδομένων rpm..."
-
-#: install_steps_interactive.pm:384 install_steps_interactive.pm:436
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Ψάχνω για διαθέσιμα πακέτα..."
-
-#: install_steps_interactive.pm:405 install_steps_interactive.pm:810
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Επιλέξτε τόπο από τον οποίο θα γίνει η λήψη πακέτων"
-
-#: install_steps_interactive.pm:445
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Δεν επέμεινε αρκετός χώρος στο σύστημά σας για εγκατάσταση ή αναβάθμιση (%d "
-"> %d)"
-
-#: install_steps_interactive.pm:479
-#, fuzzy, c-format
-msgid ""
-"Please choose load or save package selection.\n"
-"The format is the same as auto_install generated files."
-msgstr ""
-"Παρακαλώ επιλέξτε τη φόρτωση ή αποθήκευση των επιλογής πακέτων στη δισκέτα.\n"
-"Η μορφοποίηση είναι η ίδια με τις δισκέτες αυτόματης εγκατάστασης."
-
-#: install_steps_interactive.pm:481
-#, c-format
-msgid "Load"
-msgstr "Φόρτος"
-
-#: install_steps_interactive.pm:481 standalone/drakbackup:4083
-#: standalone/drakbackup:4153 standalone/logdrake:175
-#, c-format
-msgid "Save"
-msgstr "Αποθήκευση"
-
-#: install_steps_interactive.pm:489
-#, fuzzy, c-format
-msgid "Bad file"
-msgstr "Φόρτωση αρχείου"
-
-#: install_steps_interactive.pm:562
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Το επιλεγμένο μέγεθος είναι μεγαλύτερο από το διαθέσιμο χώρο"
-
-#: install_steps_interactive.pm:577
-#, c-format
-msgid "Type of install"
-msgstr "Τύπος εγκατάστασης"
-
-#: install_steps_interactive.pm:578
-#, c-format
-msgid ""
-"You have not selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Δεν έχετε επιλέξει ομάδα πακέτων.\n"
-"Παρακαλώ επιλέξτε την ελάχιστη εγκατάσταση που θέλετε:"
-
-#: install_steps_interactive.pm:582
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Με την βασική τεκμηρίωση (συνιστάται!)"
-
-#: install_steps_interactive.pm:583
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Πραγματικά ελάχιστη εγκατάσταση (ειδικά χωρίς urpmi)"
-
-#: install_steps_interactive.pm:622 standalone/drakxtv:52
-#, c-format
-msgid "All"
-msgstr "Όλα"
-
-#: install_steps_interactive.pm:661
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"Εάν έχετε όλα τα παρακάτω CDs, πατήστε Εντάξει.\n"
-"Εάν δεν έχετε κανένα από τα παρακάτω CDs, πατήστε Ακύρωση.\n"
-"Εάν δεν έχετε κάποια από αυτά, αποεπιλέξτε τα και πατήστε Εντάξει."
-
-#: install_steps_interactive.pm:666
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom ονόματι \"%s\""
-
-#: install_steps_interactive.pm:691
-#, c-format
-msgid "Preparing installation"
-msgstr "Προετοιμασία εγκατάστασης"
-
-#: install_steps_interactive.pm:699
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Εγκατάσταση πακέτου %s\n"
-"%d%%"
-
-#: install_steps_interactive.pm:748
-#, c-format
-msgid "Post-install configuration"
-msgstr "Ρυθμίσεις μετά την εγκατάσταση"
-
-#: install_steps_interactive.pm:755
-#, c-format
-msgid "Please ensure the Update Modules media is in drive %s"
-msgstr ""
-
-#: install_steps_interactive.pm:783
-#, c-format
-msgid "Updates"
-msgstr "Ενημερώσεις"
-
-#: install_steps_interactive.pm:784
-#, c-format
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates?"
-msgstr ""
-"Τώρα έχετε τη δυνατότητα να εγκαταστήσετε πακέτα αναβάθμισης. Αυτά τα\n"
-"πακέτα έχουν αναβαθμιστεί μετά την έκδοση της διανομής. Μπορεί να περιέχουν\n"
-"διορθώσεις σφαλμάτων ή αναβαθμίσεις ασφάλειας.\n"
-"\n"
-"Για να κάνετε λήψη αυτών των πακέτων πρέπει να έχετε μια σύνδεση στο "
-"Διαδίκτυο\n"
-"που να λειτουργεί.\n"
-"\n"
-"Θέλετε να εγκαταστήσετε τις αναβαθμίσεις ;"
-
-# fuzzy
-#: install_steps_interactive.pm:805
-#, c-format
-msgid ""
-"Contacting Mandriva Linux web site to get the list of available mirrors..."
-msgstr ""
-"Σύνδεση με την τοποθεσία της Mandriva Linux για λήψη των διαθέσιμων τόπων "
-"λήψης..."
-
-#: install_steps_interactive.pm:824
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Σύνδεση με τον τόπο για την λήψη των διαθέσιμων πακέτων..."
-
-#: install_steps_interactive.pm:828
-#, fuzzy, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Αδυναμία fork: %s"
-
-#: install_steps_interactive.pm:828
-#, fuzzy, c-format
-msgid "Would you like to try again?"
-msgstr "Θα θέλατε να ρυθμίσετε έναν εκτυπωτή;"
-
-#: install_steps_interactive.pm:855 standalone/drakclock:45
-#: standalone/finish-install:56
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Ποια είναι η ζώνη ώρας;"
-
-#: install_steps_interactive.pm:860
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Αυτόματος συγχρονισμός ώρας (χρήση NTP)"
-
-#: install_steps_interactive.pm:868
-#, c-format
-msgid "NTP Server"
-msgstr "Εξυπηρετητής NTP"
-
-#: install_steps_interactive.pm:923 install_steps_interactive.pm:931
-#: install_steps_interactive.pm:949 install_steps_interactive.pm:956
-#: install_steps_interactive.pm:1107 services.pm:133
-#: standalone/drakbackup:1596
-#, c-format
-msgid "System"
-msgstr "Σύστημα"
-
-#: install_steps_interactive.pm:963 install_steps_interactive.pm:990
-#: install_steps_interactive.pm:1007 install_steps_interactive.pm:1023
-#: install_steps_interactive.pm:1034
-#, c-format
-msgid "Hardware"
-msgstr "Υλικό"
-
-#: install_steps_interactive.pm:969 install_steps_interactive.pm:978
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Απομακρυσμένος εξυπηρετητής CUPS"
-
-#: install_steps_interactive.pm:969
-#, c-format
-msgid "No printer"
-msgstr "Κανένας εκτυπωτής"
-
-#: install_steps_interactive.pm:1011
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Έχετε κάρτα ήχου ISA;"
-
-#: install_steps_interactive.pm:1013
-#, fuzzy, c-format
-msgid ""
-"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
-"card"
-msgstr ""
-"Εκτελέστε \"sndconfig\" μετά την εγκατάσταση για την ρύθμιση της κάρτας"
-
-#: install_steps_interactive.pm:1015
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"Δεν βρέθηκε κάρτα ήχου. Δοκιμάστε το \"harddrake\" μετά την εγκατάσταση"
-
-#: install_steps_interactive.pm:1035
-#, c-format
-msgid "Graphical interface"
-msgstr "Γραφικό περιβάλλον"
-
-#: install_steps_interactive.pm:1041 install_steps_interactive.pm:1053
-#, c-format
-msgid "Network & Internet"
-msgstr "Δίκτυο & Διαδίκτυο"
-
-#: install_steps_interactive.pm:1055
-#, fuzzy, c-format
-msgid "configured"
-msgstr "επαναρύθμιση"
-
-#: install_steps_interactive.pm:1064 install_steps_interactive.pm:1078
-#: security/level.pm:55 steps.pm:20
-#, c-format
-msgid "Security"
-msgstr "Ασφάλεια"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "activated"
-msgstr "ενεργοποιημένο"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "disabled"
-msgstr "απενεργοποιημένο"
-
-#: install_steps_interactive.pm:1094
-#, c-format
-msgid "Boot"
-msgstr "Εκκίνηση"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1098 printer/printerdrake.pm:961
-#, c-format
-msgid "%s on %s"
-msgstr "%s σε %s"
-
-#: install_steps_interactive.pm:1112 services.pm:175
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Υπηρεσίες: %d ενεργοποιημένες για %d εγγεγραμμένες"
-
-#: install_steps_interactive.pm:1124
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "Δεν έχετε ρυθμίσει το Χ. Είστε βέβαιοι ότι θέλετε να το κάνετε;"
-
-#: install_steps_interactive.pm:1205
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Προετοιμασία προγράμματος εκκίνησης..."
-
-#: install_steps_interactive.pm:1215
-#, fuzzy, c-format
-msgid ""
-"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
-"will not work for you. The install will continue, but you'll need to use "
-"BootX or some other means to boot your machine. The kernel argument for the "
-"root fs is: root=%s"
-msgstr ""
-"Φαίνεται πως έχετε ένα Αρχαίο ή Άγνωστο\n"
-"μηχάνημα, ο yaboot bootloader δεν θα δουλέψει για σας.\n"
-"Η εγκατάσταση θα συνεχιστεί, αλλά\n"
-"θα χρειαστεί να χρησιμοποιήσετε το BootX για να ξεκινήσετε το μηχάνημά σας"
-
-#: install_steps_interactive.pm:1221
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Θέλετε να χρησιμοποιήσετε το aboot;"
-
-#: install_steps_interactive.pm:1224
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Σφάλμα κατά την εγκατάσταση του aboot, \n"
-"προσπάθεια βεβιασμένης εγκατάστασης, ακόμα και αν αυτό έχει σαν αποτέλεσμα "
-"την καταστροφή της πρώτης κατάτμησης;"
-
-#: install_steps_interactive.pm:1241
-#, c-format
-msgid ""
-"In this security level, access to the files in the Windows partition is "
-"restricted to the administrator."
-msgstr ""
-
-#: install_steps_interactive.pm:1270 standalone/drakautoinst:76
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Εισάγετε άδεια δισκέτα στον οδηγό %s"
-
-#: install_steps_interactive.pm:1275
-#, fuzzy, c-format
-msgid "Please insert another floppy for drivers disk"
-msgstr "Παρακαλώ εισάγετε τη δισκέτα Εκκίνησης στον οδηγό %s"
-
-#: install_steps_interactive.pm:1277
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Δημιουργία δισκέτας αυτόματης εγκατάστασης..."
-
-#: install_steps_interactive.pm:1289
-#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Μερικά βήματα δεν ολοκληρώθηκαν.\n"
-"\n"
-"Θέλετε σίγουρα να εγκαταλείψετε τώρα;"
-
-#: install_steps_interactive.pm:1299 standalone/draksambashare:421
-#: standalone/draksambashare:527 standalone/drakups:118 standalone/drakups:157
-#: standalone/logdrake:451 standalone/logdrake:457
-#, c-format
-msgid "Congratulations"
-msgstr "Συγχαρητήρια"
-
-#: install_steps_interactive.pm:1307 install_steps_interactive.pm:1308
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Δημιουργία δισκέτας αυτόματης εγκατάστασης"
-
-#: install_steps_interactive.pm:1309
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Η αυτόματη εγκατάσταση μπορεί να είναι πλήρως αυτόματη,\n"
-"σε αυτήν την περίπτωση θα αναλάβει το σκληρό δίσκο!!\n"
-"(αυτό αναφέρεται για περιπτώσεις εγκατάστασης σε άλλο υπολογιστή).\n"
-"\n"
-"Μπορεί να προτιμάτε να επαναλάβετε την εγκατάσταση.\n"
-
-#: install_steps_newt.pm:20
-#, c-format
-msgid "Mandriva Linux Installation %s"
-msgstr "Εγκατάσταση Mandriva Linux %s"
-
-#. -PO: This string must fit in a 80-char wide text screen
-#: install_steps_newt.pm:37
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> Αλλαγή πεδίου | <Space> επιλογή | <F12> επόμενη οθόνη"
+msgid "No"
+msgstr "Όχι"
-#: interactive.pm:196
+#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "Επιλέξτε ένα αρχείο"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakbackup:1537
-#: standalone/drakfont:649 standalone/drakhosts:242 standalone/draknfs:605
-#: standalone/draksambashare:1127 standalone/drakups:299
-#: standalone/drakups:359 standalone/drakups:379 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Add"
msgstr "Προσθήκη"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakhosts:249
-#: standalone/draknfs:612 standalone/draksambashare:1084
-#: standalone/draksambashare:1137 standalone/draksambashare:1176
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Modify"
msgstr "Τροποποίηση"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakfont:732
-#: standalone/drakhosts:256 standalone/draknfs:619
-#: standalone/draksambashare:1085 standalone/draksambashare:1145
-#: standalone/draksambashare:1184 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Remove"
msgstr "Αφαίρεσης"
-#: interactive.pm:398
-#, c-format
-msgid "Basic"
-msgstr "Βασική"
-
-#: interactive.pm:436 interactive/newt.pm:321 ugtk2.pm:490
+#: interactive.pm:538 interactive/curses.pm:217 ugtk2.pm:508
#, c-format
msgid "Finish"
msgstr "Τέλος"
-#: interactive/newt.pm:92
+#: interactive.pm:539 interactive/curses.pm:214 ugtk2.pm:506
#, c-format
-msgid "Do"
-msgstr "Κάντο"
+msgid "Previous"
+msgstr "Προηγούμενο"
#: interactive/stdio.pm:29 interactive/stdio.pm:148
#, c-format
@@ -7453,1951 +3344,1205 @@ msgstr ""
msgid "Re-submit"
msgstr "Εισάγετε ξανά"
-#: keyboard.pm:171 keyboard.pm:202
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTZ)"
-msgstr "Τσέχικο (QWERTZ)"
-
-#: keyboard.pm:172 keyboard.pm:204
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German"
-msgstr "Γερμανικό"
-
-#: keyboard.pm:173
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak"
-msgstr "Dvorak"
-
-#: keyboard.pm:174 keyboard.pm:217
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Spanish"
-msgstr "Ισπανικό"
-
-#: keyboard.pm:175 keyboard.pm:218
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Finnish"
-msgstr "Φινλανδικό"
-
-#: keyboard.pm:176 keyboard.pm:220
-#, c-format
-msgid ""
-"_: keyboard\n"
-"French"
-msgstr "Γαλλικό"
-
-#: keyboard.pm:177 keyboard.pm:264
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Norwegian"
-msgstr "Νορβηγικό"
-
-#: keyboard.pm:178
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish"
-msgstr "Πολωνικό"
-
-#: keyboard.pm:179 keyboard.pm:275
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian"
-msgstr "Ρωσικό"
-
-#: keyboard.pm:180 keyboard.pm:281
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swedish"
-msgstr "Σουηδικό"
-
-#: keyboard.pm:181 keyboard.pm:310
-#, c-format
-msgid "UK keyboard"
-msgstr "Μεγάλη Βρετανία (UK)"
-
-#: keyboard.pm:182 keyboard.pm:313
-#, c-format
-msgid "US keyboard"
-msgstr "Η.Π.Α. (US)"
-
-#: keyboard.pm:184
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Albanian"
-msgstr "Αλβανικό"
-
-#: keyboard.pm:185
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (old)"
-msgstr "Αρμενικό (παλιό)"
-
-#: keyboard.pm:186
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (typewriter)"
-msgstr "Αρμενικό (γραφομηχανή)"
-
-#: keyboard.pm:187
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (phonetic)"
-msgstr "Αρμενικό (φωνητικό)"
-
-#: keyboard.pm:188
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Arabic"
-msgstr "Αραβικό"
-
-#: keyboard.pm:189
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Azerbaidjani (latin)"
-msgstr "Αζερμπαϊτζάν (Λατινικό)"
-
-#: keyboard.pm:190
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belgian"
-msgstr "Βελγικό"
-
-#: keyboard.pm:191
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Inscript-layout)"
-msgstr "Βεγγαλικό (Inscript διάταξη)"
-
-#: keyboard.pm:192
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Probhat)"
-msgstr "Βεγγαλικό (Probhat διάταξη)"
-
-#: keyboard.pm:193
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (phonetic)"
-msgstr "Βουλγαρικό (φωνητικό)"
-
-#: keyboard.pm:194
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (BDS)"
-msgstr "Βουλγαρικό (BDS)"
-
-#: keyboard.pm:195
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Brazilian (ABNT-2)"
-msgstr "Βραζιλιάνικο (ABNT-2)"
-
-#: keyboard.pm:196
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bosnian"
-msgstr "Βοσνίας"
-
-#: keyboard.pm:197
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belarusian"
-msgstr "Λευκορωσίας"
-
-#: keyboard.pm:198
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (German layout)"
-msgstr "Ελβετικό (Γερμανική διάταξη)"
-
-#: keyboard.pm:199
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (French layout)"
-msgstr "Ελβετικό (Γαλλική διάταξη)"
-
-#: keyboard.pm:201
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Cherokee syllabics"
-msgstr "Αραβικό"
-
-#: keyboard.pm:203
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTY)"
-msgstr "Τσέχικο (QWERTY)"
-
-#: keyboard.pm:205
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German (no dead keys)"
-msgstr "Γερμανικό (χωρίς νεκρά πλήκτρα)"
-
-#: keyboard.pm:206
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Devanagari"
-msgstr "Δεβαναγαρικό"
-
-#: keyboard.pm:207
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Danish"
-msgstr "Δανικό"
-
-#: keyboard.pm:208
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (US)"
-msgstr "Dvorak (ΗΠΑ)"
-
-#: keyboard.pm:209
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Esperanto)"
-msgstr "Dvorak (Νορβηγικό)"
-
-#: keyboard.pm:210
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (French)"
-msgstr "Dvorak (Νορβηγικό)"
-
-#: keyboard.pm:211
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (UK)"
-msgstr "Dvorak (ΗΠΑ)"
-
-#: keyboard.pm:212
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Norwegian)"
-msgstr "Dvorak (Νορβηγικό)"
-
-#: keyboard.pm:213
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Polish)"
-msgstr "Dvorak (Σουηδικό)"
-
-#: keyboard.pm:214
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Swedish)"
-msgstr "Dvorak (Σουηδικό)"
-
-#: keyboard.pm:215
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dzongkha/Tibetan"
-msgstr "Βοσνίας"
-
-#: keyboard.pm:216
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Estonian"
-msgstr "Εσθονικό"
-
-#: keyboard.pm:219
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Faroese"
-msgstr "Ελληνικό"
-
-#: keyboard.pm:221
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Russian\" layout)"
-msgstr "Γεωργία (\"Ρώσικη\" διάταξη)"
-
-#: keyboard.pm:222
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Latin\" layout)"
-msgstr "Γεωργία (\"Λατινική\" διάταξη)"
-
-#: keyboard.pm:223
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek"
-msgstr "Ελληνικό"
-
-#: keyboard.pm:224
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek (polytonic)"
-msgstr ""
-
-#: keyboard.pm:225
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gujarati"
-msgstr "Γκουτζαρατικό"
-
-#: keyboard.pm:226
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gurmukhi"
-msgstr "Γκουρμούκι"
-
-#: keyboard.pm:227
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Croatian"
-msgstr "Κροατικό"
-
-#: keyboard.pm:228
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Hungarian"
-msgstr "Ουγγρικό"
-
-#: keyboard.pm:229
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Irish"
-msgstr ""
-
-#: keyboard.pm:230
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli"
-msgstr "Ισραήλ"
-
-#: keyboard.pm:231
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli (phonetic)"
-msgstr "Ισραήλ (φωνητικό)"
-
-#: keyboard.pm:232
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Iranian"
-msgstr "Ιρανικό"
-
-#: keyboard.pm:233
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Icelandic"
-msgstr "Ισλανδικό"
-
-#: keyboard.pm:234
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Italian"
-msgstr "Ιταλικό"
-
-#: keyboard.pm:235
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Inuktitut"
-msgstr ""
-
-#: keyboard.pm:239
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Japanese 106 keys"
-msgstr "Ιαπωνικό 106 πλήκτρων"
-
-#: keyboard.pm:240
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Kannada"
-msgstr "Καναδάς"
-
-#: keyboard.pm:243
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Korean"
-msgstr "Κορεάτικο Πληκτρολόγιο"
-
-#: keyboard.pm:245
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Kurdish (arabic script)"
-msgstr "Αραβικό"
-
-#: keyboard.pm:246
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Kyrgyz"
-msgstr "Μεγάλη Βρετανία (UK)"
-
-#: keyboard.pm:247
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latin American"
-msgstr "Λατινικής Αμερικής"
-
-#: keyboard.pm:249
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Laotian"
-msgstr ""
-
-#: keyboard.pm:250
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (old)"
-msgstr "Λιθουανικό AZERTY (παλιό)"
-
-#: keyboard.pm:252
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (new)"
-msgstr "Λιθουανικό AZERTY (νέο)"
-
-#: keyboard.pm:253
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"number row\" QWERTY"
-msgstr "Λιθουανικό \"number row\" QWERTY"
-
-#: keyboard.pm:254
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"phonetic\" QWERTY"
-msgstr "Λιθουανικό \"φωνητικό\" QWERTY"
-
-#: keyboard.pm:255
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latvian"
-msgstr "Λετονικό"
-
-#: keyboard.pm:256
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Malayalam"
-msgstr "Μαλαγιαλαμικό"
-
-#: keyboard.pm:258
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Macedonian"
-msgstr "Μακεδονικό Π.Γ Δ."
-
-#: keyboard.pm:259
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Myanmar (Burmese)"
-msgstr "Μιανμάρ"
-
-#: keyboard.pm:260
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Mongolian (cyrillic)"
-msgstr "Μογγολικό (Κυριλλική)"
-
-#: keyboard.pm:261
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (UK)"
-msgstr ""
-
-#: keyboard.pm:262
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (US)"
-msgstr ""
-
-#: keyboard.pm:263
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dutch"
-msgstr "Ολλανδικό"
-
-#: keyboard.pm:265
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Oriya"
-msgstr "Συρία"
-
-#: keyboard.pm:266
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwerty layout)"
-msgstr "Πολωνικό (διάταξη qwerty)"
-
-#: keyboard.pm:267
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwertz layout)"
-msgstr "Πολωνικό (διάταξη qwertz)"
-
-#: keyboard.pm:269
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Pashto"
-msgstr "Πολωνικό"
-
-#: keyboard.pm:270
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Portuguese"
-msgstr "Πορτογαλικό"
-
-#: keyboard.pm:272
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Canadian (Quebec)"
-msgstr "Καναδικό (Κεμπέκ)"
-
-#: keyboard.pm:273
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwertz)"
-msgstr "Ρουμανικό (qwertz)"
-
-#: keyboard.pm:274
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwerty)"
-msgstr "Ρουμανικό (qwerty)"
-
-#: keyboard.pm:276
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian (phonetic)"
-msgstr "Ρωσικό (φωνητικό)"
-
-#: keyboard.pm:277
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (norwegian)"
-msgstr "Dvorak (Νορβηγικό)"
-
-#: keyboard.pm:278
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (swedish/finnish)"
-msgstr ""
-
-#: keyboard.pm:280
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Sindhi"
-msgstr "Ταϊλανδέζικο"
-
-#: keyboard.pm:282
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovenian"
-msgstr "Σλοβενίας"
-
-#: keyboard.pm:284
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sinhala"
-msgstr ""
-
-#: keyboard.pm:285
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTZ)"
-msgstr "Σλοβακίας (QWERTZ)"
-
-#: keyboard.pm:286
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTY)"
-msgstr "Σλοβακίας (QWERTY)"
-
-#: keyboard.pm:288
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Serbian (cyrillic)"
-msgstr "Σέρβικο (κυριλλικό)"
-
-#: keyboard.pm:289
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac"
-msgstr "Συρία"
-
-#: keyboard.pm:290
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac (phonetic)"
-msgstr "Αρμενικό (φωνητικό)"
-
-#: keyboard.pm:291
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Telugu"
-msgstr "Τοκελάου"
-
-#: keyboard.pm:293
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (ISCII-layout)"
-msgstr "Ταμιλικό (διάταξη ISCII)"
-
-#: keyboard.pm:294
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (Typewriter-layout)"
-msgstr "Ταμιλικό (διάταξη γραφομηχανή)"
-
-#: keyboard.pm:295
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Kedmanee)"
-msgstr "Ταϊλανδέζικο"
-
-#: keyboard.pm:296
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (TIS-820)"
-msgstr "Ταϊλανδέζικο"
-
-#: keyboard.pm:298
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Pattachote)"
-msgstr "Ταϊλανδέζικο"
-
-#: keyboard.pm:300
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (moroccan layout) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:301
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (phonetic) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:303
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tajik"
-msgstr ""
-
-#: keyboard.pm:305
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Turkmen"
-msgstr "Γερμανικό"
-
-#: keyboard.pm:306
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (traditional \"F\" model)"
-msgstr "Τουρκικό (παραδοσιακό \"F\" μοντέλο)"
-
-#: keyboard.pm:307
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (modern \"Q\" model)"
-msgstr "Τουρκικό (μοντέρνο \"Q\" μοντέλο)"
-
-#: keyboard.pm:309
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Ukrainian"
-msgstr "Ουκρανικό"
-
-#: keyboard.pm:312
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Urdu keyboard"
-msgstr "Συρία"
-
-#: keyboard.pm:314
-#, c-format
-msgid "US keyboard (international)"
-msgstr "US διεθνές"
-
-#: keyboard.pm:315
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Uzbek (cyrillic)"
-msgstr "Σέρβικο (κυριλλικό)"
-
-#: keyboard.pm:317
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Vietnamese \"numeric row\" QWERTY"
-msgstr "Βιετνάμ \"numeric row\" QWERTY"
-
-#: keyboard.pm:318
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Yugoslavian (latin)"
-msgstr "Γιουγκοσλαβικό (λατινικό)"
-
-#: keyboard.pm:325
-#, c-format
-msgid "Right Alt key"
-msgstr "Δεξιό πλήκτρο Alt"
-
-#: keyboard.pm:326
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Ταυτόχρονα τα δύο πλήκτρα Shift"
-
-#: keyboard.pm:327
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Ταυτόχρονα τα πλήκτρα Control και Shift"
-
-#: keyboard.pm:328
-#, c-format
-msgid "CapsLock key"
-msgstr "Πλήκτρο Capslock"
-
-#: keyboard.pm:329
-#, fuzzy, c-format
-msgid "Shift and CapsLock keys simultaneously"
-msgstr "Ταυτόχρονα τα πλήκτρα Ctrl και Alt"
-
-#: keyboard.pm:330
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ταυτόχρονα τα πλήκτρα Ctrl και Alt"
-
-#: keyboard.pm:331
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Ταυτόχρονα τα πλήκτρα Alt και Shift"
-
-#: keyboard.pm:332
-#, c-format
-msgid "\"Menu\" key"
-msgstr "Πλήκτρο \"Μενού\""
-
-#: keyboard.pm:333
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Αριστερό πλήκτρο \"Windows\""
-
-#: keyboard.pm:334
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Δεξιό πλήκτρο \"Windows\""
-
-#: keyboard.pm:335
-#, fuzzy, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Ταυτόχρονα τα δύο πλήκτρα Shift"
-
-#: keyboard.pm:336
-#, fuzzy, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Ταυτόχρονα τα δύο πλήκτρα Shift"
-
-#: keyboard.pm:337
-#, fuzzy, c-format
-msgid "Left Shift key"
-msgstr "Αριστερό πλήκτρο \"Windows\""
-
-#: keyboard.pm:338
-#, fuzzy, c-format
-msgid "Right Shift key"
-msgstr "Δεξιό πλήκτρο Alt"
-
-#: keyboard.pm:339
-#, fuzzy, c-format
-msgid "Left Alt key"
-msgstr "Δεξιό πλήκτρο Alt"
-
-#: keyboard.pm:340
-#, fuzzy, c-format
-msgid "Left Control key"
-msgstr "Απομακρυσμένος Έλεγχος"
-
-#: keyboard.pm:341
-#, fuzzy, c-format
-msgid "Right Control key"
-msgstr "Δεξιό πλήκτρο Alt"
-
-#: keyboard.pm:377
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Εδώ μπορείτε να επιλέξετε το πλήκτρο ή τον συνδυασμό\n"
-"πλήκτρων εναλλαγής των διατάξεων πληκτρολογίων\n"
-"(π.χ. Αγγλική ή Ελληνική)"
-
-#: keyboard.pm:382
-#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
-msgstr ""
-
#. -PO: the string "default:LTR" can be translated *ONLY* as "default:LTR"
#. -PO: or as "default:RTL", depending if your language is written from
#. -PO: left to right, or from right to left; any other string is wrong.
-#: lang.pm:178
+#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"
-#: lang.pm:195
+#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "Ανδόρα"
-#: lang.pm:196 network/adsl_consts.pm:943
+#: lang.pm:211 timezone.pm:213
#, c-format
msgid "United Arab Emirates"
msgstr "Ηνωμένα Αραβικά Εμιράτα"
-#: lang.pm:197
+#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "Αφγανιστάν"
-#: lang.pm:198
+#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "Αντίγκουα και Μπαρμπούντα"
-#: lang.pm:199
+#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "Αγκίλα"
-#: lang.pm:200
+#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "Αλβανία"
-#: lang.pm:201
+#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "Αρμενία"
-#: lang.pm:202
+#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "Ολλανδικές Αντίλλες"
-#: lang.pm:203
+#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "Αγκόλα"
-#: lang.pm:204
+#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "Ανταρκτική"
-#: lang.pm:205 network/adsl_consts.pm:55 standalone/drakxtv:50
+#: lang.pm:220 timezone.pm:258
#, c-format
msgid "Argentina"
msgstr "Αργεντινή"
-#: lang.pm:206
+#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "Αμερικανική Σαμόα"
-#: lang.pm:209
+#: lang.pm:222 mirror.pm:11 timezone.pm:216
+#, c-format
+msgid "Austria"
+msgstr "Αυστρία"
+
+#: lang.pm:223 mirror.pm:10 timezone.pm:254
+#, c-format
+msgid "Australia"
+msgstr "Αυστραλία"
+
+#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "Αρούμπα"
-#: lang.pm:210
+#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "Αζερμπαϊτζάν"
-#: lang.pm:211
+#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Βοσνία-Ερζεγοβίνη"
-#: lang.pm:212
+#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "Μπαρμπάντος"
-#: lang.pm:213
+#: lang.pm:228 timezone.pm:198
#, c-format
msgid "Bangladesh"
msgstr "Μπανγκλαντές"
-#: lang.pm:215
+#: lang.pm:229 mirror.pm:12 timezone.pm:218
+#, c-format
+msgid "Belgium"
+msgstr "Βέλγιο"
+
+#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "Μπουρκίνα Φάσο"
-#: lang.pm:216 network/adsl_consts.pm:170 network/adsl_consts.pm:179
+#: lang.pm:231 timezone.pm:219
#, c-format
msgid "Bulgaria"
msgstr "Βουλγαρία"
-#: lang.pm:217
+#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "Μπαχρέιν"
-#: lang.pm:218
+#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "Μπουρούντι"
-#: lang.pm:219
+#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "Μπενίν"
-#: lang.pm:220
+#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "Βερμούδες"
-#: lang.pm:221
+#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "Μπρουνέι Νταρουσαλάμ"
-#: lang.pm:222
+#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "Βολιβία"
-#: lang.pm:224
+#: lang.pm:238 mirror.pm:13 timezone.pm:259
+#, c-format
+msgid "Brazil"
+msgstr "Βραζιλία"
+
+#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "Μπαχάμες"
-#: lang.pm:225
+#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "Μπουτάν"
-#: lang.pm:226
+#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "Νήσος Μπουβέ"
-#: lang.pm:227
+#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "Μποτσουάνα"
-#: lang.pm:228
+#: lang.pm:243 timezone.pm:217
#, c-format
msgid "Belarus"
msgstr "Λευκορωσία"
-#: lang.pm:229
+#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "Μπελίζ"
-#: lang.pm:231
+#: lang.pm:245 mirror.pm:14 timezone.pm:248
+#, c-format
+msgid "Canada"
+msgstr "Καναδάς"
+
+#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Νήσοι Κόκος (Κήλινγκ)"
-#: lang.pm:232
+#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr ""
-#: lang.pm:233
+#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "Δημοκρατία Κεντρικής Αφρικής"
-#: lang.pm:234
+#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr ""
-#: lang.pm:236
+#: lang.pm:250 mirror.pm:38 timezone.pm:242
+#, c-format
+msgid "Switzerland"
+msgstr "Ελβετία"
+
+#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "Ακτή Ελεφαντοστού"
-#: lang.pm:237
+#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "Νήσοι Κουκ"
-#: lang.pm:238
+#: lang.pm:253 timezone.pm:260
#, c-format
msgid "Chile"
msgstr "Χιλή"
-#: lang.pm:239
+#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "Καμερούν"
-#: lang.pm:240 network/adsl_consts.pm:188 network/adsl_consts.pm:197
-#: network/adsl_consts.pm:206 network/adsl_consts.pm:215
-#: network/adsl_consts.pm:224 network/adsl_consts.pm:233
-#: network/adsl_consts.pm:242 network/adsl_consts.pm:251
-#: network/adsl_consts.pm:260 network/adsl_consts.pm:269
-#: network/adsl_consts.pm:278 network/adsl_consts.pm:287
-#: network/adsl_consts.pm:296 network/adsl_consts.pm:305
-#: network/adsl_consts.pm:314 network/adsl_consts.pm:323
-#: network/adsl_consts.pm:332 network/adsl_consts.pm:341
-#: network/adsl_consts.pm:350 network/adsl_consts.pm:359
+#: lang.pm:255 timezone.pm:199
#, c-format
msgid "China"
msgstr "Κίνα"
-#: lang.pm:241
+#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "Κολομβία"
-#: lang.pm:243
+#: lang.pm:257 mirror.pm:15
+#, c-format
+msgid "Costa Rica"
+msgstr "Κόστα Ρίκα"
+
+#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "Σερβία & Μαυροβούνιο"
-#: lang.pm:244
+#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "Κούβα"
-#: lang.pm:245
+#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "Πράσινο Ακρωτήριο"
-#: lang.pm:246
+#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "Νήσοι Χριστουγέννων"
-#: lang.pm:247
+#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "Κύπρος"
-#: lang.pm:250
+#: lang.pm:263 mirror.pm:16 timezone.pm:220
+#, c-format
+msgid "Czech Republic"
+msgstr "Τσέχικη Δημοκρατία"
+
+#: lang.pm:264 mirror.pm:21 timezone.pm:225
+#, c-format
+msgid "Germany"
+msgstr "Γερμανία"
+
+#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "Τζιμπουτί"
-#: lang.pm:252
+#: lang.pm:266 mirror.pm:17 timezone.pm:221
+#, c-format
+msgid "Denmark"
+msgstr "Δανία"
+
+#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "Ντομίνικα"
-#: lang.pm:253
+#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "Δομινικανή Δημοκρατία"
-#: lang.pm:254 network/adsl_consts.pm:44
+#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "Αλγερία"
-#: lang.pm:255
+#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "Ισημερινός"
-#: lang.pm:257
+#: lang.pm:271 mirror.pm:18 timezone.pm:222
+#, c-format
+msgid "Estonia"
+msgstr "Εσθονία"
+
+#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "Αίγυπτος"
-#: lang.pm:258
+#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "Δυτική Σαχάρα"
-#: lang.pm:259
+#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "Ερυθραία"
-#: lang.pm:261
+#: lang.pm:275 mirror.pm:36 timezone.pm:240
+#, c-format
+msgid "Spain"
+msgstr "Ισπανία"
+
+#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "Αιθιοπία"
-#: lang.pm:263
+#: lang.pm:277 mirror.pm:19 timezone.pm:223
+#, c-format
+msgid "Finland"
+msgstr "Φινλανδία"
+
+#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "Φίτζι"
-#: lang.pm:264
+#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Νήσοι Φώκλαντ (Μαλβίνες)"
-#: lang.pm:265
+#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "Μικρονησία"
-#: lang.pm:266
+#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "Νήσοι Φερόες"
-#: lang.pm:268
+#: lang.pm:282 mirror.pm:20 timezone.pm:224
+#, c-format
+msgid "France"
+msgstr "Γαλλία"
+
+#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "Γκαμπόν"
-#: lang.pm:269 network/adsl_consts.pm:954 network/adsl_consts.pm:965
-#: network/netconnect.pm:46
+#: lang.pm:284 timezone.pm:244
#, c-format
msgid "United Kingdom"
msgstr "Ηνωμένο Βασίλειο"
-#: lang.pm:270
+#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "Γρενάδα"
-#: lang.pm:271
+#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "Γεωργία"
-#: lang.pm:272
+#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "Γαλλική Γουιάνα"
-#: lang.pm:273
+#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "Γκάνα"
-#: lang.pm:274
+#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "Γιβραλτάρ"
-#: lang.pm:275
+#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "Γροιλανδία"
-#: lang.pm:276
+#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "Γκάμπια"
-#: lang.pm:277
+#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "Γουινέα"
-#: lang.pm:278
+#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "Γουαδελούπη"
-#: lang.pm:279
+#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "Ισημερινή Γουϊνέα"
-#: lang.pm:281
+#: lang.pm:295 mirror.pm:22 timezone.pm:226
+#, c-format
+msgid "Greece"
+msgstr "Ελλάδα"
+
+#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "Νότια Γεωργία και Νότια Νησιά Σάντουιτς"
-#: lang.pm:282
+#: lang.pm:297 timezone.pm:249
#, c-format
msgid "Guatemala"
msgstr "Γουατεμάλα"
-#: lang.pm:283
+#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "Γκουάμ"
-#: lang.pm:284
+#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "Γουϊνέα-Μπισάου"
-#: lang.pm:285
+#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "Γουιάνα"
-#: lang.pm:286
+#: lang.pm:301
#, fuzzy, c-format
msgid "Hong Kong SAR (China)"
msgstr "Χονγκ Κονγκ"
-#: lang.pm:287
+#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Νησί Χερντ και Νήσοι ΜακΝτόναλντ"
-#: lang.pm:288
+#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "Ονδούρα"
-#: lang.pm:289
+#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "Κροατία"
-#: lang.pm:290
+#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "Αϊτή"
-#: lang.pm:292
+#: lang.pm:306 mirror.pm:23 timezone.pm:227
+#, c-format
+msgid "Hungary"
+msgstr "Ουγγαρία"
+
+#: lang.pm:307 timezone.pm:202
#, c-format
msgid "Indonesia"
msgstr "Ινδονησία"
-#: lang.pm:295
+#: lang.pm:308 mirror.pm:24 timezone.pm:228
+#, c-format
+msgid "Ireland"
+msgstr "Ιρλανδία"
+
+#: lang.pm:309 mirror.pm:25 timezone.pm:204
+#, c-format
+msgid "Israel"
+msgstr "Ισραήλ"
+
+#: lang.pm:310 timezone.pm:201
#, c-format
msgid "India"
msgstr "Ινδία"
-#: lang.pm:296
+#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Βρετανικά Εδάφη Ινδικού Ωκεανού"
-#: lang.pm:297
+#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "Ιράκ"
-#: lang.pm:298
+#: lang.pm:313 timezone.pm:203
#, c-format
msgid "Iran"
msgstr "Ιράν"
-#: lang.pm:299
+#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "Ισλανδία"
-#: lang.pm:301
+#: lang.pm:315 mirror.pm:26 timezone.pm:229
+#, c-format
+msgid "Italy"
+msgstr "Ιταλία"
+
+#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "Τζαμάικα"
-#: lang.pm:302
+#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "Ιορδανία"
-#: lang.pm:304
+#: lang.pm:318 mirror.pm:27 timezone.pm:205
+#, c-format
+msgid "Japan"
+msgstr "Ιαπωνία"
+
+#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "Κένυα"
-#: lang.pm:305
+#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "Κιργιστάν"
-#: lang.pm:306
+#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "Καμπότζη"
-#: lang.pm:307
+#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "Κιριμπάτι"
-#: lang.pm:308
+#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "Κομόρες"
-#: lang.pm:309
+#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Σαιντ Κιτς και Νέβις"
-#: lang.pm:310
+#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "Κορέα (Βόρεια)"
-#: lang.pm:311
+#: lang.pm:326 timezone.pm:206
#, c-format
msgid "Korea"
msgstr "Κορέα"
-#: lang.pm:312
+#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "Κουβέιτ"
-#: lang.pm:313
+#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "Νήσοι Κέυμαν"
-#: lang.pm:314
+#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "Καζακστάν"
-#: lang.pm:315
+#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "Λάος"
-#: lang.pm:316
+#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "Λίβανος"
-#: lang.pm:317
+#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "Άγιος Λουκάς"
-#: lang.pm:318
+#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "Λιχτενστάιν"
-#: lang.pm:319
+#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "Σρι Λάνκα"
-#: lang.pm:320
+#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "Λιβερία"
-#: lang.pm:321
+#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "Λεσότο"
-#: lang.pm:322 network/adsl_consts.pm:600
+#: lang.pm:337 timezone.pm:230
#, c-format
msgid "Lithuania"
msgstr "Λιθουανία"
-#: lang.pm:323
+#: lang.pm:338 timezone.pm:231
#, c-format
msgid "Luxembourg"
msgstr "Λουξεμβούργο"
-#: lang.pm:324
+#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "Λεττονία"
-#: lang.pm:325
+#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "Λιβύη"
-#: lang.pm:326 network/adsl_consts.pm:609
+#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "Μαρόκο"
-#: lang.pm:327
+#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "Μονακό"
-#: lang.pm:328
+#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "Μολδαβία"
-#: lang.pm:329
+#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "Μαδαγασκάρη"
-#: lang.pm:330
+#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "Νήσοι Μάρσαλ"
-#: lang.pm:331
+#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "Πρώην Γιουγκοσλαβική Δημοκρατία της Μακεδονίας"
-#: lang.pm:332
+#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "Μάλι"
-#: lang.pm:333
+#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "Μιανμάρ"
-#: lang.pm:334
+#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "Μογγολία"
-#: lang.pm:335
+#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "Νήσοι Βορείων Μαριάννων"
-#: lang.pm:336
+#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "Μαρτινίκα"
-#: lang.pm:337
+#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "Μαυριτανία"
-#: lang.pm:338
+#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "Μονσεράτ"
-#: lang.pm:339
+#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "Μάλτα"
-#: lang.pm:340
+#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "Μαυρίκιος"
-#: lang.pm:341
+#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "Μαλδίβες"
-#: lang.pm:342
+#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "Μαλάουι"
-#: lang.pm:343
+#: lang.pm:358 timezone.pm:250
#, c-format
msgid "Mexico"
msgstr "Μεξικό"
-#: lang.pm:344
+#: lang.pm:359 timezone.pm:207
#, c-format
msgid "Malaysia"
msgstr "Μαλαισία"
-#: lang.pm:345
+#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "Μοζαμβίκη"
-#: lang.pm:346
+#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "Ναμίμπια"
-#: lang.pm:347
+#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "Νέα Καληδονία"
-#: lang.pm:348
+#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "Νίγηρας"
-#: lang.pm:349
+#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "Νήσοι Νόρφολκ"
-#: lang.pm:350
+#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "Νιγηρία"
-#: lang.pm:351
+#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "Νικαράγουα"
-#: lang.pm:354
+#: lang.pm:367 mirror.pm:28 timezone.pm:232
+#, c-format
+msgid "Netherlands"
+msgstr "Ολλανδία"
+
+#: lang.pm:368 mirror.pm:30 timezone.pm:233
+#, c-format
+msgid "Norway"
+msgstr "Νορβηγία"
+
+#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "Νεπάλ"
-#: lang.pm:355
+#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "Ναούρου"
-#: lang.pm:356
+#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "Νίουε"
-#: lang.pm:358
+#: lang.pm:372 mirror.pm:29 timezone.pm:255
+#, c-format
+msgid "New Zealand"
+msgstr "Νέα Ζηλανδία"
+
+#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "Ομάν"
-#: lang.pm:359
+#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "Παναμάς"
-#: lang.pm:360
+#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "Περού"
-#: lang.pm:361
+#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "Γαλλική Πολυνησία"
-#: lang.pm:362
+#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "Παπούα-Νέα Γουϊνέα"
-#: lang.pm:363
+#: lang.pm:378 timezone.pm:208
#, c-format
msgid "Philippines"
msgstr "Φιλιππίνες"
-#: lang.pm:364
+#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "Πακιστάν"
-#: lang.pm:366
+#: lang.pm:380 mirror.pm:31 timezone.pm:234
+#, c-format
+msgid "Poland"
+msgstr "Πολωνία"
+
+#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Σαιντ Πιερ και Μικελόν"
-#: lang.pm:367
+#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "Νήσοι Πίτκαιρν"
-#: lang.pm:368
+#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "Πουέρτο Ρίκο"
-#: lang.pm:369
+#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "Παλαιστίνη"
-#: lang.pm:371
+#: lang.pm:385 mirror.pm:32 timezone.pm:235
+#, c-format
+msgid "Portugal"
+msgstr "Πορτογαλία"
+
+#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "Παραγουάη"
-#: lang.pm:372
+#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "Παλάου"
-#: lang.pm:373
+#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "Κατάρ"
-#: lang.pm:374
+#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "Ρεουνιόν"
-#: lang.pm:375
+#: lang.pm:390 timezone.pm:236
#, c-format
msgid "Romania"
msgstr "Ρουμανία"
-#: lang.pm:377
+#: lang.pm:391 mirror.pm:33
+#, c-format
+msgid "Russia"
+msgstr "Ρωσία"
+
+#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "Ρουάντα"
-#: lang.pm:378
+#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "Σαουδική Αραβία"
-#: lang.pm:379
+#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "Νήσοι Σολομώντος"
-#: lang.pm:380
+#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "Σεϋχέλλες"
-#: lang.pm:381
+#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "Σουδάν"
-#: lang.pm:383
+#: lang.pm:397 mirror.pm:37 timezone.pm:241
+#, c-format
+msgid "Sweden"
+msgstr "Σουηδία"
+
+#: lang.pm:398 timezone.pm:209
#, c-format
msgid "Singapore"
msgstr "Σιγγαπούρη"
-#: lang.pm:384
+#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "Νήσος Αγίας Ελένης"
-#: lang.pm:385 network/adsl_consts.pm:747
+#: lang.pm:400 timezone.pm:239
#, c-format
msgid "Slovenia"
msgstr "Σλοβενία"
-#: lang.pm:386
+#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Νήσοι Σβάλμπαρντ και Γιαν Μάγιεν"
-#: lang.pm:388
+#: lang.pm:402 mirror.pm:34 timezone.pm:238
+#, c-format
+msgid "Slovakia"
+msgstr "Σλοβακία"
+
+#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "Σιέρρα Λεόνε"
-#: lang.pm:389
+#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "Άγιος Μαρίνος"
-#: lang.pm:390 network/adsl_consts.pm:737
+#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "Σενεγάλη"
-#: lang.pm:391
+#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "Σομαλία"
-#: lang.pm:392
+#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "Σουρινάμ"
-#: lang.pm:393
+#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "Σάο Τόμε και Πρίντσιπε"
-#: lang.pm:394
+#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "Ελ Σαλβαδόρ"
-#: lang.pm:395
+#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "Συρία"
-#: lang.pm:396
+#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "Σουαζιλάνδη"
-#: lang.pm:397
+#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Νήσοι Τούρκς και Καΐκος"
-#: lang.pm:398
+#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "Τσαντ"
-#: lang.pm:399
+#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "Γαλλικές Νότιες Περιοχές"
-#: lang.pm:400
+#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "Τόγκο"
-#: lang.pm:402
+#: lang.pm:416 mirror.pm:40 timezone.pm:211
+#, c-format
+msgid "Thailand"
+msgstr "Ταϊλάνδη"
+
+#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "Τατζικιστάν"
-#: lang.pm:403
+#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "Τοκελάου"
-#: lang.pm:404
+#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "Ανατολικό Τιμόρ"
-#: lang.pm:405
+#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "Τουρκμενιστάν"
-#: lang.pm:406 network/adsl_consts.pm:931
+#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "Τυνησία"
-#: lang.pm:407
+#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "Τόγκα"
-#: lang.pm:408
+#: lang.pm:423 timezone.pm:212
#, c-format
msgid "Turkey"
msgstr "Τουρκία"
-#: lang.pm:409
+#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "Τρινιντάντ και Τομπάγκο"
-#: lang.pm:410
+#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "Τουβαλού"
-#: lang.pm:412
+#: lang.pm:426 mirror.pm:39 timezone.pm:210
+#, c-format
+msgid "Taiwan"
+msgstr "Ταϊβάν"
+
+#: lang.pm:427 timezone.pm:195
#, c-format
msgid "Tanzania"
msgstr "Τανζανία"
-#: lang.pm:413
+#: lang.pm:428 timezone.pm:243
#, c-format
msgid "Ukraine"
msgstr "Ουκρανία"
-#: lang.pm:414
+#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "Ουγκάντα"
-#: lang.pm:415
+#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "Μικρά απομονωμένα νησιά Ηνωμένων Πολιτειών"
-#: lang.pm:417
+#: lang.pm:431 mirror.pm:41 timezone.pm:251
+#, c-format
+msgid "United States"
+msgstr "Η.Π.Α."
+
+#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "Ουρουγουάη"
-#: lang.pm:418
+#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "Ουζμπεκιστάν"
-#: lang.pm:419
+#: lang.pm:434
#, fuzzy, c-format
msgid "Vatican"
msgstr "Λετονικό"
-#: lang.pm:420
+#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "Άγιος Βικέντιος και Γρεναντίνες"
-#: lang.pm:421
+#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "Βενεζουέλα"
-#: lang.pm:422
+#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "Παρθένοι Νήσοι(Βρετανικές)"
-#: lang.pm:423
+#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Παρθένοι Νήσοι(Αμερικανικές)"
-#: lang.pm:424
+#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "Βιετνάμ"
-#: lang.pm:425
+#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "Βανουάτου"
-#: lang.pm:426
+#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "Νήσοι Γουάλις και Φουτούνα"
-#: lang.pm:427
+#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "Σαμόα"
-#: lang.pm:428
+#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "Υεμένη"
-#: lang.pm:429
+#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "Μαγιότ"
-#: lang.pm:431
+#: lang.pm:445 mirror.pm:35 timezone.pm:194
+#, c-format
+msgid "South Africa"
+msgstr "Νότιος Αφρική"
+
+#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "Ζάμπια"
-#: lang.pm:432
+#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "Ζιμπάμπουε"
-#: lang.pm:1149
+#: lang.pm:1153
#, c-format
msgid "Welcome to %s"
msgstr "Καλώς ορίσατε στο %s"
@@ -9422,5374 +4567,537 @@ msgstr "Αφαιρέστε πρώτα τις λογικές μονάδες\n"
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
-#: modules/interactive.pm:19
-#, fuzzy, c-format
-msgid "This driver has no configuration parameter!"
-msgstr "Ρυθμίσεις κοινής χρήσης εκτυπωτών CUPS"
-
-#: modules/interactive.pm:22
-#, fuzzy, c-format
-msgid "Module configuration"
-msgstr "Χειροκίνητη ρύθμιση"
-
-#: modules/interactive.pm:22
-#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr "Εδώ μπορείτε να ρυθμίσετε τις παραμέτρους του αρθρώματος."
-
-#: modules/interactive.pm:63
-#, c-format
-msgid "Found %s interfaces"
-msgstr "Βρέθηκαν %s προσαρμογείς"
-
-#: modules/interactive.pm:64
-#, c-format
-msgid "Do you have another one?"
-msgstr "Έχετε άλλον;"
-
-#: modules/interactive.pm:65
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Έχετε κάποιον προσαρμογέα %s;"
-
-#: modules/interactive.pm:71
-#, c-format
-msgid "See hardware info"
-msgstr "Προβολή πληροφοριών υλικού"
-
-#: modules/interactive.pm:82
-#, fuzzy, c-format
-msgid "Installing driver for USB controller"
-msgstr "Εγκατάσταση οδηγού για %s κάρτα %s"
-
-#: modules/interactive.pm:83
-#, fuzzy, c-format
-msgid "Installing driver for firewire controller %s"
-msgstr "Εγκατάσταση οδηγού για %s κάρτα %s"
-
-#: modules/interactive.pm:84
-#, fuzzy, c-format
-msgid "Installing driver for hard drive controller %s"
-msgstr "Εγκατάσταση οδηγού για %s κάρτα %s"
-
-#: modules/interactive.pm:85
-#, fuzzy, c-format
-msgid "Installing driver for ethernet controller %s"
-msgstr "Εγκατάσταση οδηγού για %s κάρτα %s"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: modules/interactive.pm:96
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Εγκατάσταση οδηγού για %s κάρτα %s"
-
-#: modules/interactive.pm:99
-#, c-format
-msgid "(module %s)"
-msgstr "(άρθρωμα %s)"
-
-#: modules/interactive.pm:109
-#, c-format
-msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Μπορείτε τώρα να δώσετε τις παραμέτρους για το άρθρωμα %s.\n"
-"Σημειώστε ότι κάθε διεύθυνση πρέπει να εισάγεται με το πρόθεμα 0x όπως "
-"'0x123'"
-
-#: modules/interactive.pm:115
-#, c-format
-msgid ""
-"You may now provide options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Μπορείτε τώρα να δώσετε τις παραμέτρους για το άρθρωμα %s.\n"
-"Οι παράμετροι έχουν την μορφή ``όνομα=τιμή όνομα2=τιμή2 ...''.\n"
-"Για παράδειγμα, ``io=0x300 irq=7''"
-
-#: modules/interactive.pm:117
-#, c-format
-msgid "Module options:"
-msgstr "Επιλογές αρθρώματος:"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: modules/interactive.pm:130
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Ποιόν οδηγό %s να δοκιμάσω;"
-
-#: modules/interactive.pm:139
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without them. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"Σε μερικές περιπτώσεις, ο οδηγός %s χρειάζεται επιπλέον παραμέτρους για\n"
-"να λειτουργήσει σωστά, παρ' όλο που συνήθως λειτουργεί και χωρίς αυτές.\n"
-"Θα θέλατε να δώσετε επιπλέον επιλογές ή να αφήσετε τον οδηγό να εξετάσει\n"
-"το υλικό σας για τις παραμέτρους που χρειάζεται; Η εξέταση αυτή ίσως\n"
-"προκαλέσει πάγωμα του συστήματος, αλλά δεν θα προκαλέσει βλάβη."
-
-#: modules/interactive.pm:143
-#, c-format
-msgid "Autoprobe"
-msgstr "Αυτόματη εξέταση"
-
-#: modules/interactive.pm:143
-#, c-format
-msgid "Specify options"
-msgstr "Προσδιορισμός παραμέτρων"
-
-#: modules/interactive.pm:155
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Η φόρτωση του αρθρώματος %s απέτυχε.\n"
-"Θέλετε να δοκιμάσετε ξανά με διαφορετικές παραμέτρους;"
-
-#: modules/parameters.pm:49
-#, c-format
-msgid "a number"
-msgstr "ένας αριθμός"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d αριθμοί χωρισμένοι με κόμμα"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated strings"
-msgstr ""
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated numbers"
-msgstr "αριθμοί χωρισμένοι με κόμμα"
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated strings"
-msgstr ""
-
-#: mouse.pm:25
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - Mouse"
-
-#: mouse.pm:31 security/level.pm:12
-#, c-format
-msgid "Standard"
-msgstr "Τυπικό"
-
-#: mouse.pm:32
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: mouse.pm:33
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Γενικού τύπου ποντίκι PS2 με ροδάκι"
-
-#: mouse.pm:34
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/modem.pm:68 network/modem.pm:81 network/modem.pm:86
-#: network/modem.pm:115 network/netconnect.pm:596 network/netconnect.pm:601
-#: network/netconnect.pm:613 network/netconnect.pm:618
-#: network/netconnect.pm:634 network/netconnect.pm:636
-#, c-format
-msgid "Automatic"
-msgstr "Αυτόματο"
-
-#: mouse.pm:39 mouse.pm:73
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: mouse.pm:40 mouse.pm:68
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: mouse.pm:41
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: mouse.pm:42 mouse.pm:52
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
-
-#: mouse.pm:47 mouse.pm:79
-#, c-format
-msgid "1 button"
-msgstr "1 πλήκτρου"
-
-#: mouse.pm:48 mouse.pm:57
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Γενικού τύπου με 2 πλήκτρα"
-
-#: mouse.pm:50 mouse.pm:59
-#, fuzzy, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Γενικού τύπου με 3 πλήκτρα"
-
-#: mouse.pm:51
-#, c-format
-msgid "Wheel"
-msgstr "Με ροδάκι"
-
-#: mouse.pm:55
-#, c-format
-msgid "serial"
-msgstr "σειριακό"
-
-#: mouse.pm:58
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Γενικού τύπου με 3 πλήκτρα"
-
-#: mouse.pm:60
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: mouse.pm:61
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: mouse.pm:62
-#, fuzzy, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan"
-
-#: mouse.pm:63
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: mouse.pm:65
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: mouse.pm:66
-#, fuzzy, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Series"
-
-#: mouse.pm:67
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: mouse.pm:69
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
-
-#: mouse.pm:70
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: mouse.pm:71
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (σειριακό, παλιός C7 τύπος)"
-
-#: mouse.pm:72
-#, fuzzy, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech Mouse (σειριακό, παλιός C7 τύπος)"
-
-#: mouse.pm:74
-#, fuzzy, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse"
-
-#: mouse.pm:77
-#, c-format
-msgid "busmouse"
-msgstr "busmouse"
-
-#: mouse.pm:80
-#, c-format
-msgid "2 buttons"
-msgstr "Δύο πλήκτρων"
-
-#: mouse.pm:81
-#, c-format
-msgid "3 buttons"
-msgstr "Τριών πλήκτρων"
-
-#: mouse.pm:82
-#, fuzzy, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "Προσομοίωση Κουμπιών"
-
-#: mouse.pm:86
-#, c-format
-msgid "Universal"
-msgstr "Γενικό"
-
-#: mouse.pm:88
-#, c-format
-msgid "Any PS/2 & USB mice"
-msgstr ""
-
-#: mouse.pm:89
-#, fuzzy, c-format
-msgid "Microsoft Xbox Controller S"
-msgstr "Microsoft Explorer"
-
-#: mouse.pm:93 standalone/drakconnect:351 standalone/drakvpn:1126
-#, c-format
-msgid "none"
-msgstr "κανένα"
-
-#: mouse.pm:95
-#, c-format
-msgid "No mouse"
-msgstr "Χωρίς ποντίκι"
-
-#: mouse.pm:304 mouse.pm:367 mouse.pm:376 mouse.pm:435
-#, c-format
-msgid "Synaptics Touchpad"
-msgstr ""
-
-#: mouse.pm:561
-#, c-format
-msgid "Please test the mouse"
-msgstr "Παρακαλώ δοκιμάστε το ποντίκι"
-
-#: mouse.pm:563
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Για ενεργοποίηση ποντικιού"
-
-#: mouse.pm:564
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "ΚΙΝΗΣΤΕ ΤΟ ΡΟΔΑΚΙ!"
-
-#: network/drakfirewall.pm:12 share/compssUsers.pl:85
-#, c-format
-msgid "Web Server"
-msgstr "Εξυπηρετητής Ιστοσελίδων"
-
-#: network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "Εξυπηρετητής Όνομα Τομέα"
-
-#: network/drakfirewall.pm:22
-#, fuzzy, c-format
-msgid "SSH server"
-msgstr "Εξυπηρετητής SSH"
-
-#: network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "Διακομιστής FTP"
-
-#: network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "Εξυπηρετητής Ταχυδρομείου"
-
-#: network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "Εξυπηρετητής POP και IMAP"
-
-#: network/drakfirewall.pm:42
-#, fuzzy, c-format
-msgid "Telnet server"
-msgstr "εξυπηρετητής X"
-
-#: network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr ""
-
-#: network/drakfirewall.pm:54
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:10
#, fuzzy, c-format
-msgid "CUPS server"
-msgstr "Εξυπηρετητής DNS"
-
-#: network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr "Echo request (ping)"
-
-#: network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr ""
-
-#: network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr ""
-
-#: network/drakfirewall.pm:165
-#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-"ρύθμιση tinyfirewall\n"
-"\n"
-"Αυτό ρυθμίζει το προσωπικό σας firewall για αυτό το μηχάνημα Mandriva "
-"Linux.\n"
-"Για μια ισχυρή αφοσιωμένη λύση firewall, παρακαλώ κοιτάξτε στην\n"
-"ειδικευμένη Mandriva Security Firewall διανομή."
-
-#: network/drakfirewall.pm:171
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
+"Introduction\n"
"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-"Ρυθμιστής drakfirewall\n"
+"The operating system and the different components available in the Mandriva "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandriva Linux distribution.\n"
"\n"
-"Βεβαιωθείτε ότι έχετε ρυθμίσει το Δίκτυο/Πρόσβαση Διαδικτύου με τη χρήση του "
-"drakconnect πριν προχωρήσετε."
-
-#: network/drakfirewall.pm:188
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "Ποιες υπηρεσίες θέλετε να επιτρέπονται να συνδέονται στο Διαδίκτυο;"
-
-#: network/drakfirewall.pm:191
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-"Μπορείτε να εισάγετε διάφορες θήρες.\n"
-"Έγκυρα παραδείγματα είναι: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Δείτε το /etc/services για πληροφορίες."
-
-#: network/drakfirewall.pm:197
-#, fuzzy, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535.\n"
"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-"Δόθηκε άκυρη θήρα: %s.\n"
-"Το σωστό φορμά είναι \"θύρα/tcp\" ή \"θύρα/udp\", \n"
-"όπου θήρα είναι είναι αριθμός μεταξύ 1 και 65535."
-
-#: network/drakfirewall.pm:207
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Όλες (χωρίς τοίχος προστασίας)"
-
-#: network/drakfirewall.pm:209
-#, c-format
-msgid "Other ports"
-msgstr "Άλλες θύρες"
-
-#: network/drakfirewall.pm:253 network/drakfirewall.pm:256
-#: standalone/drakids:33 standalone/drakids:136 standalone/drakids:145
-#: standalone/drakids:170 standalone/drakids:179 standalone/drakids:189
-#: standalone/drakids:265 standalone/net_applet:59 standalone/net_applet:202
-#: standalone/net_applet:385 standalone/net_applet:422
-#, fuzzy, c-format
-msgid "Interactive Firewall"
-msgstr "Τοίχος Προστασίας"
-
-#: network/drakfirewall.pm:254
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activity should be watched."
-msgstr ""
-
-#: network/drakfirewall.pm:259
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr ""
-
-#: network/ifw.pm:129
-#, fuzzy, c-format
-msgid "Port scanning"
-msgstr "Χωρίς κοινή χρήση"
-
-#: network/ifw.pm:130
-#, fuzzy, c-format
-msgid "Service attack"
-msgstr "_Τύπος υπηρεσίας:"
-
-#: network/ifw.pm:131
-#, fuzzy, c-format
-msgid "Password cracking"
-msgstr "Κωδικός Πρόσβασης (ξανά)"
-
-#: network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr ""
-
-#: network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:135
-#, fuzzy, c-format
-msgid "The %s service has been attacked by %s."
-msgstr "Το συμβάν έχει αλλάξει."
-
-#: network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:137
-#, fuzzy, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr "Το συμβάν έχει αλλάξει."
-
-#: network/isdn.pm:117 network/netconnect.pm:463 network/netconnect.pm:557
-#: network/netconnect.pm:560 network/netconnect.pm:708
-#: network/netconnect.pm:712
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr ""
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "Δεν ξέρω"
-
-#: network/isdn.pm:161 network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: network/isdn.pm:162 network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/netconnect.pm:601 network/netconnect.pm:618
-#: network/netconnect.pm:634
-#, c-format
-msgid "Manual"
-msgstr "Χειρωνακτική"
-
-#: network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr ""
-
-#: network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr ""
-
-#: network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr ""
-
-#: network/ndiswrapper.pm:89
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr ""
-
-#: network/ndiswrapper.pm:95
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-
-#: network/ndiswrapper.pm:101
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr ""
-
-#: network/netconnect.pm:69 network/netconnect.pm:493
-#: network/netconnect.pm:505
-#, fuzzy, c-format
-msgid "Manual choice"
-msgstr "χειροκίνητα"
-
-#: network/netconnect.pm:69
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Εσωτερική κάρτα ISDN"
-
-#: network/netconnect.pm:80 printer/printerdrake.pm:1622 standalone/drakups:72
-#, c-format
-msgid "Manual configuration"
-msgstr "Χειροκίνητη ρύθμιση"
-
-#: network/netconnect.pm:81 standalone/drakroam:121
-#, fuzzy, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr "Αυτόματο IP"
-
-#: network/netconnect.pm:83
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
-msgstr ""
-
-#: network/netconnect.pm:86
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Πρωτόκολλο υπόλοιπου κόσμου"
-
-#: network/netconnect.pm:88 standalone/drakconnect:563
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Ευρωπαϊκό Πρωτόκολλο (EDSS1)"
-
-#: network/netconnect.pm:89 standalone/drakconnect:564
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Πρωτόκολλο υπόλοιπου κόσμου\n"
-" χωρίς D-Channel (μισθωμένες γραμμές)"
-
-#: network/netconnect.pm:103 standalone/harddrake2:328
-#: standalone/net_monitor:102 standalone/net_monitor:103
-#: standalone/net_monitor:108
-#, c-format
-msgid "unknown"
-msgstr "Άγνωστο"
-
-#: network/netconnect.pm:120 network/thirdparty.pm:220
-#, fuzzy, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "Alcatel speedtouch usb"
-
-#: network/netconnect.pm:121
-#, fuzzy, c-format
-msgid "Sagem USB modem"
-msgstr "Κατάσταση συστήματος"
-
-#: network/netconnect.pm:122
-#, c-format
-msgid "Bewan modem"
-msgstr ""
-
-#: network/netconnect.pm:123
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr ""
-
-#: network/netconnect.pm:127
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr ""
-
-#: network/netconnect.pm:128
-#, fuzzy, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "Χειροκίνητη ρύθμιση"
-
-#: network/netconnect.pm:129
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr ""
-
-#: network/netconnect.pm:130
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr ""
-
-#: network/netconnect.pm:131
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr ""
-
-#: network/netconnect.pm:132
-#, c-format
-msgid "DSL over CAPI"
-msgstr ""
-
-#: network/netconnect.pm:136
-#, fuzzy, c-format
-msgid "Bridged Ethernet LLC"
-msgstr "Κάρτα Ethernet"
-
-#: network/netconnect.pm:137
-#, fuzzy, c-format
-msgid "Bridged Ethernet VC"
-msgstr "Κάρτα Ethernet"
-
-#: network/netconnect.pm:138
-#, c-format
-msgid "Routed IP LLC"
-msgstr ""
-
-#: network/netconnect.pm:139
-#, c-format
-msgid "Routed IP VC"
-msgstr ""
-
-#: network/netconnect.pm:140
-#, c-format
-msgid "PPPoA LLC"
-msgstr ""
-
-#: network/netconnect.pm:141
-#, c-format
-msgid "PPPoA VC"
-msgstr ""
-
-#: network/netconnect.pm:145 standalone/drakconnect:498
-#, c-format
-msgid "Script-based"
-msgstr "Χρήση script"
-
-#: network/netconnect.pm:146 standalone/drakconnect:498
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: network/netconnect.pm:147 standalone/drakconnect:498
-#, c-format
-msgid "Terminal-based"
-msgstr "Χρήση τερματικού"
-
-#: network/netconnect.pm:148 standalone/drakconnect:498
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: network/netconnect.pm:149 standalone/drakconnect:498
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: network/netconnect.pm:250 standalone/drakconnect:56
-#, fuzzy, c-format
-msgid "Network & Internet Configuration"
-msgstr "Ρυθμίσεις δικτύου"
-
-#: network/netconnect.pm:256
-#, c-format
-msgid "LAN connection"
-msgstr "Σύνδεση LAN"
-
-#: network/netconnect.pm:257 network/netconnect.pm:276 standalone/drakroam:182
-#: standalone/drakroam:220 standalone/drakroam:223
-#, c-format
-msgid "Wireless connection"
-msgstr "Ασύρματη σύνδεση"
-
-#: network/netconnect.pm:258
-#, c-format
-msgid "ADSL connection"
-msgstr "Σύνδεση ADSL"
-
-#: network/netconnect.pm:259
-#, c-format
-msgid "Cable connection"
-msgstr "Καλωδιακή σύνδεση"
-
-#: network/netconnect.pm:260
-#, c-format
-msgid "ISDN connection"
-msgstr "Σύνδεση ISDN"
-
-#: network/netconnect.pm:261
-#, c-format
-msgid "Modem connection"
-msgstr "Σύνδεση μόντεμ"
-
-#: network/netconnect.pm:262
-#, c-format
-msgid "DVB connection"
-msgstr ""
-
-#: network/netconnect.pm:272
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Επιλέξτε τη σύνδεση που θέλετε να ρυθμίσετε"
-
-#: network/netconnect.pm:287 network/netconnect.pm:786
-#, c-format
-msgid "Connection Configuration"
-msgstr "Ρυθμίσεις σύνδεσης"
-
-#: network/netconnect.pm:287 network/netconnect.pm:787
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Παρακαλώ ελέγξτε ή συμπληρώστε το παρακάτω πεδίο"
-
-#: network/netconnect.pm:290
-#, c-format
-msgid "Your personal phone number"
-msgstr "Προσωπικός αριθμός τηλεφώνου"
-
-#: network/netconnect.pm:291 network/netconnect.pm:790
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Όνομα παροχέα (π.χ. provider.net)"
-
-#: network/netconnect.pm:292 standalone/drakconnect:493
-#, c-format
-msgid "Provider phone number"
-msgstr "Αριθμός τηλεφώνου παροχέα"
-
-#: network/netconnect.pm:293
-#, fuzzy, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "dns 1 Παροχέα (προαιρετικό)"
-
-#: network/netconnect.pm:294
-#, fuzzy, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "dns 2 Παροχέα (προαιρετικό)"
-
-#: network/netconnect.pm:295 standalone/drakconnect:444
-#, c-format
-msgid "Dialing mode"
-msgstr "Τρόπος κλήσης"
-
-#: network/netconnect.pm:296 standalone/drakconnect:449
-#: standalone/drakconnect:517
-#, c-format
-msgid "Connection speed"
-msgstr "Ταχύτητα σύνδεσης"
-
-#: network/netconnect.pm:297 standalone/drakconnect:454
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Χρόνος εκτός σύνδεσης (σε δεύτερα)"
-
-#: network/netconnect.pm:298 network/netconnect.pm:323
-#: network/netconnect.pm:793 standalone/drakconnect:491
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Λογαριασμός Σύνδεσης (όνομα χρήστη)"
-
-#: network/netconnect.pm:299 network/netconnect.pm:324
-#: network/netconnect.pm:794 standalone/drakconnect:492
-#, c-format
-msgid "Account Password"
-msgstr "Κωδικός Πρόσβασης"
-
-#: network/netconnect.pm:300 standalone/drakconnect:554
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ κάρτας"
-
-#: network/netconnect.pm:301 standalone/drakconnect:555
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "DMA κάρτας"
-
-#: network/netconnect.pm:302 standalone/drakconnect:556
-#, c-format
-msgid "Card IO"
-msgstr "IO κάρτας"
-
-#: network/netconnect.pm:303 standalone/drakconnect:557
-#, c-format
-msgid "Card IO_0"
-msgstr "IO_0 κάρτας"
-
-#: network/netconnect.pm:304
-#, c-format
-msgid "Card IO_1"
-msgstr "IO_1 κάρτας"
-
-#: network/netconnect.pm:319
-#, fuzzy, c-format
-msgid "Cable: account options"
-msgstr "Επιλογές Σύνδεσης"
-
-#: network/netconnect.pm:322
-#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr ""
-
-#: network/netconnect.pm:348 network/netconnect.pm:670
-#: network/netconnect.pm:826 network/netconnect.pm:1170
-#, fuzzy, c-format
-msgid "Select the network interface to configure:"
-msgstr "Επιλέξτε συσκευή δικτύου"
-
-#: network/netconnect.pm:350 network/netconnect.pm:385
-#: network/netconnect.pm:671 network/netconnect.pm:828 network/shorewall.pm:70
-#: standalone/drakconnect:714
-#, c-format
-msgid "Net Device"
-msgstr "Συσκευή Δικτύου"
-
-#: network/netconnect.pm:351 network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr "Εξωτερικό ISDN modem"
-
-#: network/netconnect.pm:384 standalone/harddrake2:215
-#, c-format
-msgid "Select a device!"
-msgstr "Επιλέξτε μια συσκευή !"
-
-#: network/netconnect.pm:393 network/netconnect.pm:403
-#: network/netconnect.pm:413 network/netconnect.pm:446
-#: network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Ρυθμίσεις ISDN"
-
-#: network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Τι είδους κάρτας έχετε;"
-
-#: network/netconnect.pm:404
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
+"1. License Agreement\n"
"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
+"Mandriva S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using the Software Products in any manner, you "
+"explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
+"Software Products.\n"
"\n"
-"Εάν έχετε ISA κάρτα, οι τιμές στην επόμενη οθόνη θα πρέπει να είναι σωστές.\n"
"\n"
-"Εάν έχετε PCMCIA κάρτα, πρέπει να ξέρετε το irq και το io της κάρτας σας.\n"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "Συνέχεια"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "Ακύρωση"
-
-#: network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Ποια από τις παρακάτω κάρτες ISDN είναι η δικιά σας;"
-
-#: network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-
-#: network/netconnect.pm:434 standalone/drakconnect:109 standalone/drakups:249
-#: standalone/harddrake2:133
-#, c-format
-msgid "Driver"
-msgstr "Οδηγός"
-
-#: network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Ποιο πρωτόκολλο θέλετε να χρησιμοποιήσετε;"
-
-#: network/netconnect.pm:448 standalone/drakconnect:109
-#: standalone/drakconnect:300 standalone/drakconnect:562
-#: standalone/drakids:207 standalone/drakvpn:1128
-#, c-format
-msgid "Protocol"
-msgstr "Πρωτόκολλο"
-
-#: network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"Επιλέξτε τον παροχέα σας\n"
-" Εάν δεν είναι στον κατάλογο, επιλέξτε Unlisted"
-
-#: network/netconnect.pm:462 network/netconnect.pm:556
-#: network/netconnect.pm:707
-#, fuzzy, c-format
-msgid "Provider:"
-msgstr "Προφίλ: "
-
-#: network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"Το μόντεμ σας δεν υποστηρίζεται από το σύστημα.\n"
-"Ρίξτε μια ματιά στο http://www.linmodems.org"
-
-#: network/netconnect.pm:490
-#, fuzzy, c-format
-msgid "Select the modem to configure:"
-msgstr "Επιλέξτε συσκευή δικτύου"
-
-#: network/netconnect.pm:525
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Σε ποια σειριακή πόρτα είναι συνδεδεμένο το μόντεμ σας;"
-
-#: network/netconnect.pm:554
-#, fuzzy, c-format
-msgid "Select your provider:"
-msgstr "Επιλογή Spooler Εκτυπωτή"
-
-#: network/netconnect.pm:578
-#, fuzzy, c-format
-msgid "Dialup: account options"
-msgstr "Επιλογές Σύνδεσης"
-
-#: network/netconnect.pm:581
-#, c-format
-msgid "Connection name"
-msgstr "Όνομα σύνδεσης"
-
-#: network/netconnect.pm:582
-#, c-format
-msgid "Phone number"
-msgstr "Αριθμός τηλεφώνου"
-
-#: network/netconnect.pm:583
-#, c-format
-msgid "Login ID"
-msgstr "'Όνομα Χρήστη"
-
-#: network/netconnect.pm:598 network/netconnect.pm:631
-#, fuzzy, c-format
-msgid "Dialup: IP parameters"
-msgstr "Παράμετροι"
-
-#: network/netconnect.pm:601
-#, fuzzy, c-format
-msgid "IP parameters"
-msgstr "Παράμετροι"
-
-#: network/netconnect.pm:602 network/netconnect.pm:941
-#: printer/printerdrake.pm:460 standalone/drakconnect:109
-#: standalone/drakconnect:316 standalone/drakconnect:882
-#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:284
-#, c-format
-msgid "IP address"
-msgstr "Διεύθυνση IP"
-
-#: network/netconnect.pm:603
-#, fuzzy, c-format
-msgid "Subnet mask"
-msgstr "Μάσκα δικτύου"
-
-#: network/netconnect.pm:615
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr ""
-
-#: network/netconnect.pm:618
-#, c-format
-msgid "DNS"
-msgstr "DNS"
-
-#: network/netconnect.pm:619
-#, c-format
-msgid "Domain name"
-msgstr "Όνομα Τομέα"
-
-#: network/netconnect.pm:620 network/netconnect.pm:791
-#: standalone/drakconnect:992
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Πρώτος εξυπηρετητής DNS (προαιρετικό)"
-
-#: network/netconnect.pm:621 network/netconnect.pm:792
-#: standalone/drakconnect:993
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Δεύτερος εξυπηρετητής DNS (προαιρετικό)"
-
-#: network/netconnect.pm:622
-#, fuzzy, c-format
-msgid "Set hostname from IP"
-msgstr "Δικτυακό όνομα εκτυπωτή ή IP"
-
-#: network/netconnect.pm:634 standalone/drakconnect:327
-#, c-format
-msgid "Gateway"
-msgstr "Πύλη δικτύου"
-
-#: network/netconnect.pm:635 standalone/drakroam:124
-#, fuzzy, c-format
-msgid "Gateway IP address"
-msgstr "Διεύθυνση IP"
-
-#: network/netconnect.pm:670
-#, fuzzy, c-format
-msgid "ADSL configuration"
-msgstr "Ρύθμιση LAN"
-
-#: network/netconnect.pm:705
-#, fuzzy, c-format
-msgid "Please choose your ADSL provider"
-msgstr "Παρακαλώ επιλέξτε την χώρα σας."
-
-#: network/netconnect.pm:735
-#, c-format
-msgid ""
-"Please choose your DSL connection type.\n"
-"If you do not know it, keep the preselected type."
-msgstr ""
-
-#: network/netconnect.pm:738
-#, fuzzy, c-format
-msgid "ADSL connection type:"
-msgstr "Σύνδεση ADSL"
-
-#: network/netconnect.pm:796
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr ""
-
-#: network/netconnect.pm:797
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr ""
-
-#: network/netconnect.pm:800
-#, fuzzy, c-format
-msgid "Encapsulation:"
-msgstr "Κλειδί κρυπτογράφησης"
-
-#: network/netconnect.pm:830
-#, c-format
-msgid "Manually load a driver"
-msgstr ""
-
-#: network/netconnect.pm:831
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr ""
-
-#: network/netconnect.pm:896
-#, fuzzy, c-format
-msgid "Zeroconf hostname resolution"
-msgstr "Δικτυακό Όνομα Zeroconf"
-
-#: network/netconnect.pm:897 network/netconnect.pm:928
-#, fuzzy, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "Ρύθμιση συσκευής δικτύου %s"
-
-#: network/netconnect.pm:898
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use"
-msgstr ""
-
-#: network/netconnect.pm:929
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Παρακαλώ εισάγετε τις IP ρυθμίσεις για αυτό το σύστημα.\n"
-"Κάθε στοιχείο πρέπει να εισαχθεί ως IP διεύθυνση με αριθμούς\n"
-"χωρισμένους με τελείες (παράδειγμα: 1.2.3.4)."
-
-#: network/netconnect.pm:936 standalone/drakconnect:373
-#, fuzzy, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Πρέπει να ορίστε τον δικτυακό όνομα ή την IP διεύθυνση.\n"
-
-#: network/netconnect.pm:937 standalone/drakconnect:375
-#, fuzzy, c-format
-msgid "DHCP host name"
-msgstr "Όνομα συστήματος"
-
-#: network/netconnect.pm:942 standalone/drakconnect:321
-#: standalone/drakconnect:883 standalone/drakgw:181
-#, c-format
-msgid "Netmask"
-msgstr "Μάσκα δικτύου"
-
-#: network/netconnect.pm:944 standalone/drakconnect:437
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr ""
-"Αναζήτηση ταυτότητας της κάρτας δικτύου (χρήσιμο για φορητούς υπολογιστές)"
-
-#: network/netconnect.pm:945 standalone/drakconnect:438
-#, fuzzy, c-format
-msgid "Network Hotplugging"
-msgstr "Ρυθμίσεις δικτύου"
-
-#: network/netconnect.pm:947 standalone/drakconnect:432
-#, c-format
-msgid "Start at boot"
-msgstr "Στην εκκίνηση συστήματος"
-
-#: network/netconnect.pm:949 standalone/drakconnect:460
-#, fuzzy, c-format
-msgid "Metric"
-msgstr "απαγόρευση"
-
-#: network/netconnect.pm:950
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr ""
-
-#: network/netconnect.pm:952 standalone/drakconnect:369
-#: standalone/drakconnect:886
-#, c-format
-msgid "DHCP client"
-msgstr "πελάτης DHCP"
-
-#: network/netconnect.pm:954 standalone/drakconnect:379
-#, fuzzy, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "Χρόνος εκτός σύνδεσης (σε δεύτερα)"
-
-#: network/netconnect.pm:955 standalone/drakconnect:382
-#, fuzzy, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "Η IP του εξυπηρετητή DNS"
-
-#: network/netconnect.pm:956 standalone/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:957 standalone/drakconnect:384
-#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:965 printer/printerdrake.pm:1876
-#: standalone/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Η IP διεύθυνση πρέπει να είναι σε μορφή 1.2.3.4"
-
-#: network/netconnect.pm:969 standalone/drakconnect:680
-#, fuzzy, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "Η IP διεύθυνση της πύλης πρέπει να είναι της μορφής 1.2.3.4"
-
-#: network/netconnect.pm:973
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr ""
-
-#: network/netconnect.pm:978 standalone/drakTermServ:1927
-#: standalone/drakTermServ:1928 standalone/drakTermServ:1929
-#, c-format
-msgid "%s already in use\n"
-msgstr ""
-
-#: network/netconnect.pm:1018
-#, fuzzy, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "Επιλέξτε τον εξυπηρετητή Χ"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr ""
-
-#: network/netconnect.pm:1020
-#, fuzzy, c-format
-msgid "Install a new driver"
-msgstr "Εσωτερικός εξυπηρετητής αλληλογραφίας"
-
-#: network/netconnect.pm:1032
-#, c-format
-msgid "Select a device:"
-msgstr ""
-
-#: network/netconnect.pm:1061
-#, fuzzy, c-format
-msgid "Please enter the wireless parameters for this card:"
-msgstr "Παρακαλώ ορίστε τον δικτυακό όνομα ή την IP"
-
-#: network/netconnect.pm:1064 standalone/drakconnect:404
-#: standalone/drakroam:52
-#, fuzzy, c-format
-msgid "Operating Mode"
-msgstr "Για Προχωρημένους"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Ad-hoc"
-msgstr ""
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Managed"
-msgstr "Διαχειρίσιμο"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Master"
-msgstr "Πρωτεύων"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Repeater"
-msgstr "Επαναλήπτης"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Secondary"
-msgstr "Δευτερεύων"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Auto"
-msgstr "Αυτόματο"
-
-#: network/netconnect.pm:1068 standalone/drakconnect:405
-#: standalone/drakroam:115
-#, c-format
-msgid "Network name (ESSID)"
-msgstr ""
-
-#: network/netconnect.pm:1069 standalone/drakroam:116
-#, c-format
-msgid "Encryption mode"
-msgstr ""
-
-#: network/netconnect.pm:1074
-#, c-format
-msgid "Allow access point roaming"
-msgstr ""
-
-#: network/netconnect.pm:1076 standalone/drakconnect:406
-#, fuzzy, c-format
-msgid "Network ID"
-msgstr "Δίκτυο"
-
-#: network/netconnect.pm:1077 standalone/drakconnect:407
-#, c-format
-msgid "Operating frequency"
-msgstr ""
-
-#: network/netconnect.pm:1078 standalone/drakconnect:408
-#, c-format
-msgid "Sensitivity threshold"
-msgstr ""
-
-#: network/netconnect.pm:1079 standalone/drakconnect:409
-#, c-format
-msgid "Bitrate (in b/s)"
-msgstr ""
-
-#: network/netconnect.pm:1080 standalone/drakconnect:420
-#, c-format
-msgid "RTS/CTS"
-msgstr ""
-
-#: network/netconnect.pm:1081
-#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
-
-#: network/netconnect.pm:1088 standalone/drakconnect:421
-#, fuzzy, c-format
-msgid "Fragmentation"
-msgstr "Σταθμός παιχνιδιών"
-
-#: network/netconnect.pm:1089 standalone/drakconnect:422
-#, c-format
-msgid "iwconfig command extra arguments"
-msgstr ""
-
-#: network/netconnect.pm:1090
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
+"2. Limited Warranty\n"
"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-
-#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1097 standalone/drakconnect:423
-#, c-format
-msgid "iwspy command extra arguments"
-msgstr ""
-
-#: network/netconnect.pm:1098
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
+"be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if Mandriva S.A. has been advised of the possibility or "
+"occurrence of such \n"
+"damages.\n"
"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-
-#: network/netconnect.pm:1107 standalone/drakconnect:424
-#, c-format
-msgid "iwpriv command extra arguments"
-msgstr ""
-
-#: network/netconnect.pm:1108
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
+"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
+"no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Mandriva Linux sites which are prohibited or restricted in some "
+"countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
+"included in the Software Products.\n"
"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
+"3. The GPL License and Related Licenses\n"
"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-
-#: network/netconnect.pm:1123
-#, c-format
-msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
-msgstr ""
-
-#: network/netconnect.pm:1127
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-
-#: network/netconnect.pm:1170
-#, c-format
-msgid "DVB configuration"
-msgstr ""
-
-#: network/netconnect.pm:1171
-#, c-format
-msgid "DVB Adapter"
-msgstr ""
-
-#: network/netconnect.pm:1188
-#, c-format
-msgid "DVB adapter settings"
-msgstr ""
-
-#: network/netconnect.pm:1191
-#, c-format
-msgid "Adapter card"
-msgstr ""
-
-#: network/netconnect.pm:1192
-#, c-format
-msgid "Net demux"
-msgstr ""
-
-#: network/netconnect.pm:1193
-#, c-format
-msgid "PID"
-msgstr "PID"
-
-#: network/netconnect.pm:1221
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Παρακαλώ εισάγετε το όνομα του συστήματος.\n"
-"Το όνομα αυτό πρέπει να είναι ένα πλήρες όνομα συστήματος,\n"
-"όπως π.χ. ``mybox.mylab.myco.com''.\n"
-"Μπορείτε επίσης να εισάγετε και την διεύθυνση IP της πύλης δικτύου"
-
-#: network/netconnect.pm:1226
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr ""
-
-#: network/netconnect.pm:1228 standalone/drakconnect:991
-#, fuzzy, c-format
-msgid "Host name (optional)"
-msgstr "Ρύθμιση συστήματος"
-
-#: network/netconnect.pm:1228 standalone/drakhosts:197
-#, c-format
-msgid "Host name"
-msgstr "Όνομα συστήματος"
-
-#: network/netconnect.pm:1230
-#, fuzzy, c-format
-msgid "DNS server 1"
-msgstr "Εξυπηρετητής DNS"
-
-#: network/netconnect.pm:1231
-#, fuzzy, c-format
-msgid "DNS server 2"
-msgstr "Εξυπηρετητής DNS"
-
-#: network/netconnect.pm:1232
-#, fuzzy, c-format
-msgid "DNS server 3"
-msgstr "Εξυπηρετητής DNS"
-
-#: network/netconnect.pm:1233
-#, fuzzy, c-format
-msgid "Search domain"
-msgstr "Τομέας NIS"
-
-#: network/netconnect.pm:1234
-#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr ""
-
-#: network/netconnect.pm:1235
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Πύλη (π.χ. %s)"
-
-#: network/netconnect.pm:1237
-#, c-format
-msgid "Gateway device"
-msgstr "Συσκευή πύλης"
-
-#: network/netconnect.pm:1246
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "Η IP διεύθυνση DNS πρέπει να είναι της μορφής 1.2.3.4"
-
-#: network/netconnect.pm:1251 standalone/drakconnect:685
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Η IP διεύθυνση της πύλης πρέπει να είναι της μορφής 1.2.3.4"
-
-#: network/netconnect.pm:1264
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-
-#: network/netconnect.pm:1268
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Δικτυακό Όνομα Zeroconf"
-
-#: network/netconnect.pm:1271
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr ""
-
-#: network/netconnect.pm:1281
-#, fuzzy, c-format
-msgid "Do you want to allow users to start the connection?"
-msgstr "Θέλετε να συνδέεστε κατά την εκκίνηση;"
-
-#: network/netconnect.pm:1294
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Θέλετε να συνδέεστε κατά την εκκίνηση;"
-
-#: network/netconnect.pm:1310
-#, fuzzy, c-format
-msgid "Automatically at boot"
-msgstr "Στην εκκίνηση συστήματος"
-
-#: network/netconnect.pm:1312
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr ""
-
-#: network/netconnect.pm:1314
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr ""
-
-#: network/netconnect.pm:1323
-#, fuzzy, c-format
-msgid "How do you want to dial this connection?"
-msgstr "Θέλετε να συνδέεστε κατά την εκκίνηση;"
-
-#: network/netconnect.pm:1336
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Θέλετε να δοκιμάσετε να συνδεθείτε στο Διαδίκτυο τώρα;"
-
-#: network/netconnect.pm:1344 standalone/drakconnect:1023
-#, c-format
-msgid "Testing your connection..."
-msgstr "Δοκιμή σύνδεσης... "
-
-#: network/netconnect.pm:1369
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Το σύστημα είναι τώρα συνδεμένο στο Διαδίκτυο."
-
-#: network/netconnect.pm:1370
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Για λόγους ασφαλείας, θα αποσυνδεθείτε τώρα."
-
-#: network/netconnect.pm:1371
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Το σύστημα φαίνεται να μην είναι συνδεμένο στο Διαδίκτυο\n"
-"Προσπαθήστε να ξαναρυθμίσετε τη σύνδεσή σας."
-
-#: network/netconnect.pm:1386
-#, fuzzy, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to Mandriva.\n"
+"The programs developed by Mandriva S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by Mandriva S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
"\n"
-msgstr ""
-"Συγχαρητήρια, η ρύθμιση δικτύου και διαδικτύου τελείωσε.\n"
-"Οι ρυθμίσεις θα εφαρμοστούν τώρα στο σύστημά σας.\n"
"\n"
-
-#: network/netconnect.pm:1389
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Αφού γίνει αυτό, προτείνουμε να επανεκκινήσετε το Χ περιβάλλον για να "
-"αποφύγετε τα προβλήματα αλλαγής δικτυακού ονόματος."
-
-#: network/netconnect.pm:1390
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-"Προβλήματα κατά τη ρύθμιση.\n"
-"Δοκιμάστε τη σύνδεση με το net_monitor ή το mcc. Αν δεν λειτουργήσει η "
-"σύνδεση, τότε θα πρέπει να εκκινήσετε ξανά τη ρύθμιση."
-
-#: network/netconnect.pm:1402
-#, fuzzy, c-format
-msgid "(detected on port %s)"
-msgstr "ανιχνεύθηκε στην πόρτα %s"
-
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1404
-#, fuzzy, c-format
-msgid "(detected %s)"
-msgstr "ανιχνεύθηκε το %s"
-
-#: network/netconnect.pm:1404
-#, fuzzy, c-format
-msgid "(detected)"
-msgstr "ανιχνεύθηκε"
-
-#: network/netconnect.pm:1405
-#, c-format
-msgid "Network Configuration"
-msgstr "Ρυθμίσεις δικτύου"
-
-#: network/netconnect.pm:1406
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Επειδή κάνετε μια δικτυακή εγκατάσταση, το δίκτυο είναι ήδη ρυθμισμένο.\n"
-"Κάντε κλικ στο Εντάξει για να διατηρήσετε τις ρυθμίσεις σας, ή άκυρο για να "
-"ξαναρυθμίσετε τη σύνδεση στο Διαδίκτυο.\n"
-
-#: network/netconnect.pm:1409
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr "Το δίκτυο πρέπει να επανεκκινηθεί, Θέλετε να το επανεκκινήσετε ;"
-
-#: network/netconnect.pm:1410
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
+"4. Intellectual Property Rights\n"
"\n"
-"%s"
-msgstr ""
-"Ένα πρόβλημα εμφανίστηκε κατά την επανεκκίνηση του δικτύου: \n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
+"as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
+"Mandriva S.A. \n"
"\n"
-"%s"
-
-#: network/netconnect.pm:1411
-#, fuzzy, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
"\n"
+"5. Governing Laws \n"
"\n"
-"Press \"%s\" to continue."
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
+"For any question on this document, please contact Mandriva S.A. \n"
msgstr ""
"\n"
"\n"
+" Linux\n"
"\n"
-"Τώρα θα ρυθμίσουμε την %s σύνδεση.\n"
-"\n"
-"\n"
-"Πατήστε το OK για να ξεκινήσετε"
-
-#: network/netconnect.pm:1412
-#, fuzzy, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr "Τι ρύθμιση Xorg θέλετε να έχετε;"
-
-#: network/netconnect.pm:1413
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Έχετε ρυθμίσει πολλούς τρόπους για να συνδέεστε στο Διαδίκτυο.\n"
-"Επιλέξτε αυτόν που θέλετε να χρησιμοποιήσετε.\n"
"\n"
-
-#: network/netconnect.pm:1414
-#, c-format
-msgid "Internet connection"
-msgstr "Σύνδεση Διαδικτύου"
-
-#: network/netconnect.pm:1428
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-
-#: network/network.pm:411
-#, c-format
-msgid "Proxies configuration"
-msgstr "Ρυθμίσεις proxies"
-
-#: network/network.pm:412
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-
-#: network/network.pm:413
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: network/network.pm:414
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: network/network.pm:415
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: network/network.pm:416
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: network/network.pm:420
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Ο proxy πρέπει να είναι http://..."
-
-#: network/network.pm:421
-#, c-format
-msgid "Proxy should be https?://..."
-msgstr ""
-
-#: network/network.pm:422
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "Το URL πρέπει να ξεκινά με 'http:' ή 'ftp:'"
-
-#: network/shorewall.pm:55
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
+" Linux\n"
"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-
-#: network/thirdparty.pm:232
-#, c-format
-msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
-msgstr ""
-
-#: network/thirdparty.pm:241
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-
-#: network/thirdparty.pm:321
-#, fuzzy, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "Εγκατάσταση πακέτου %s"
-
-#: network/thirdparty.pm:329
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr ""
-
-#: network/thirdparty.pm:330
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-
-#: network/thirdparty.pm:332
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-
-#: network/thirdparty.pm:372
-#, fuzzy, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "Αφαίρεση γραμματοσειρών από το σύστημά σας"
-
-#: network/thirdparty.pm:374
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr ""
-
-#: network/thirdparty.pm:384
-#, fuzzy, c-format
-msgid "Insert floppy"
-msgstr "Εισάγετε δισκέτα στον οδηγό %s"
-
-#: network/thirdparty.pm:385
-#, fuzzy, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr "Εισάγετε μια μορφοποιημένη δισκέτα FAT στον οδηγό %s"
-
-#: network/thirdparty.pm:395
-#, fuzzy, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Πού θέλετε να συνδέσετε την συσκευή %s;"
-
-#: network/thirdparty.pm:405
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-
-#: network/thirdparty.pm:409 network/thirdparty.pm:411
-#, fuzzy, c-format
-msgid "Use a floppy"
-msgstr "Αποθήκευση σε δισκέτα"
-
-#: network/thirdparty.pm:409
-#, fuzzy, c-format
-msgid "Use my Windows partition"
-msgstr "Γίνεται αλλαγή τις κατάτμησης των Windows"
-
-#: network/thirdparty.pm:419
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr ""
-
-#: network/thirdparty.pm:424 standalone/drakautoinst:250
-#: standalone/drakvpn:888 standalone/scannerdrake:422
-#, c-format
-msgid "Congratulations!"
-msgstr "Συγχαρητήρια!"
-
-#: network/thirdparty.pm:424
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr ""
-
-#: network/thirdparty.pm:493
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr ""
-
-#: network/thirdparty.pm:498
-#, fuzzy, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "Παρακαλώ περιμένετε, ρυθμίζεται το επίπεδο ασφαλείας..."
-
-#: network/wireless.pm:8
-#, c-format
-msgid "Open WEP"
-msgstr ""
-
-#: network/wireless.pm:9
-#, c-format
-msgid "Restricted WEP"
-msgstr ""
-
-#: network/wireless.pm:10
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr ""
-
-#: partition_table.pm:391
-#, c-format
-msgid "mount failed: "
-msgstr "σύνδεση απέτυχε: "
-
-#: partition_table.pm:496
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "Η εκτεταμένη κατάτμηση δεν υποστηρίζεται σε αυτόν τον τύπο συστήματος"
-
-#: partition_table.pm:514
-#, c-format
-msgid ""
-"You have a hole in your partition table but I can not use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions."
-msgstr ""
-"Υπάρχει ένα κενό στον πίνακα κατατμήσεων μα δεν μπορώ να το χρησιμοποιήσω.\n"
-"Η μοναδική λύση είναι να μετακινήσετε τις πρωτεύουσες κατατμήσεις σας έτσι "
-"ώστε το κενό να βρεθεί δίπλα στην εκτεταμένη κατάτμηση"
-
-#: partition_table.pm:605
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Η επαναφορά από το αρχείο %s απέτυχε: %s"
-
-#: partition_table.pm:607
-#, c-format
-msgid "Bad backup file"
-msgstr "Κατεστραμμένο εφεδρικό αρχείο"
-
-#: partition_table.pm:627
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Σφάλμα εγγραφής στο αρχείο %s"
-
-#: partition_table/raw.pm:253
-#, c-format
-msgid ""
-"Something bad is happening on your drive. \n"
-"A test to check the integrity of data has failed. \n"
-"It means writing anything on the disk will end up with random, corrupted "
-"data."
-msgstr ""
-"Κάτι κακό συμβαίνει στο δίσκο σας. \n"
-"Ένα τεστ ελέγχου της ακεραιότητας των δεδομένων απέτυχε. \n"
-"Αυτό σημαίνει πως η οποιαδήποτε εγγραφή στο δίσκο θα καταλήξει σαν τυχαία "
-"σκουπίδια."
-
-#: pkgs.pm:21
-#, c-format
-msgid "must have"
-msgstr "πρέπει να υπάρχει"
-
-#: pkgs.pm:22
-#, c-format
-msgid "important"
-msgstr "σημαντικό"
-
-#: pkgs.pm:23
-#, c-format
-msgid "very nice"
-msgstr "πολύ καλό"
-
-#: pkgs.pm:24
-#, c-format
-msgid "nice"
-msgstr "καλό"
-
-#: pkgs.pm:25
-#, c-format
-msgid "maybe"
-msgstr "ίσως"
-
-#: pkgs.pm:474
-#, fuzzy, c-format
-msgid "Downloading file %s..."
-msgstr "Αποστολή αρχείων..."
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on %s)"
-msgstr "(στον %s)"
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on this machine)"
-msgstr "(σε αυτό το μηχάνημα)"
-
-#: printer/cups.pm:117 standalone/printerdrake:200
-#, fuzzy, c-format
-msgid "Configured on other machines"
-msgstr "Ρύθμιση της σύνδεσης"
-
-#: printer/cups.pm:119
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Στον εξυπηρετητή CUPS \"%s\""
-
-#: printer/cups.pm:119 printer/printerdrake.pm:4909
-#: printer/printerdrake.pm:4919 printer/printerdrake.pm:5078
-#: printer/printerdrake.pm:5089 printer/printerdrake.pm:5303
-#, c-format
-msgid " (Default)"
-msgstr " (Προεπιλεγμένος)"
-
-#: printer/data.pm:67
-#, c-format
-msgid "PDQ - Print, Do not Queue"
-msgstr "PDQ - Print, Do not Queue"
-
-#: printer/data.pm:68
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: printer/data.pm:80
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: printer/data.pm:81
-#, c-format
-msgid "LPD"
-msgstr "LPD"
-
-#: printer/data.pm:102
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: printer/data.pm:103
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
-
-#: printer/data.pm:128
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: printer/data.pm:158
-#, fuzzy, c-format
-msgid "CUPS - Common Unix Printing System (remote server)"
-msgstr "CUPS - Common Unix Printing System"
-
-#: printer/data.pm:159
-#, fuzzy, c-format
-msgid "Remote CUPS"
-msgstr "Απομακρυσμένος εξυπηρετητής CUPS"
-
-#: printer/detect.pm:168 printer/detect.pm:263 printer/detect.pm:498
-#: printer/detect.pm:571 printer/main.pm:330 printer/main.pm:692
-#: printer/main.pm:1815 printer/printerdrake.pm:960
-#: printer/printerdrake.pm:1120 printer/printerdrake.pm:2448
-#: printer/printerdrake.pm:4004
-#, c-format
-msgid "Unknown model"
-msgstr "Άγνωστο μοντέλο"
-
-#: printer/main.pm:24
-#, c-format
-msgid "Local printer"
-msgstr "Τοπικός εκτυπωτής"
-
-#: printer/main.pm:25
-#, c-format
-msgid "Remote printer"
-msgstr "Απομακρυσμένος εκτυπωτής"
-
-#: printer/main.pm:26
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Απομακρυσμένος εκτυπωτής σε εξυπηρετητή CUPS"
-
-#: printer/main.pm:27 printer/printerdrake.pm:1360
-#: printer/printerdrake.pm:1899
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Απομακρυσμένος εκτυπωτής σε εξυπηρετητή lpd"
-
-#: printer/main.pm:28
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Εκτυπωτής δικτύου (TCP/Socket)"
-
-#: printer/main.pm:29
-#, fuzzy, c-format
-msgid "Printer on SMB/Windows server"
-msgstr "Εκτυπωτής σε εξυπηρετητή SMB/Windows 95/98/NT"
-
-#: printer/main.pm:30
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Εκτυπωτή σε εξυπηρετητή NetWare"
-
-#: printer/main.pm:31 printer/printerdrake.pm:1903
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Εισάγετε συσκευή εκτυπωτή URI"
-
-#: printer/main.pm:32
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Διασωλήνωση εργασίας σε εντολή"
-
-#: printer/main.pm:43
-#, c-format
-msgid "recommended"
-msgstr "συνιστάται"
-
-#: printer/main.pm:355 standalone/printerdrake:199
-#, fuzzy, c-format
-msgid "Configured on this machine"
-msgstr "(σε αυτό το μηχάνημα)"
-
-#: printer/main.pm:361 printer/printerdrake.pm:1445
-#, c-format
-msgid " on parallel port #%s"
-msgstr " στη παράλληλη θήρα #%s"
-
-#: printer/main.pm:364 printer/printerdrake.pm:1448
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", εκτυπωτής USB #%s"
-
-#: printer/main.pm:366
-#, c-format
-msgid ", USB printer"
-msgstr ", εκτυπωτής USB"
-
-#: printer/main.pm:370
-#, fuzzy, c-format
-msgid ", HP printer on a parallel port"
-msgstr "Εκτυπωτής στην παράλληλη θήρα #%s"
-
-#: printer/main.pm:372
-#, fuzzy, c-format
-msgid ", HP printer on USB"
-msgstr ", εκτυπωτής USB"
-
-#: printer/main.pm:374
-#, fuzzy, c-format
-msgid ", HP printer on HP JetDirect"
-msgstr ", πολυχρηστική συσκευή στο HP JetDirect"
-
-#: printer/main.pm:376
-#, fuzzy, c-format
-msgid ", HP printer"
-msgstr ", εκτυπωτής USB"
-
-#: printer/main.pm:382
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", πολυχρηστική συσκευή στην παράλληλη θήρα #%s"
-
-#: printer/main.pm:385
-#, fuzzy, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", πολυχρηστική συσκευή στην παράλληλη θήρα #%s"
-
-#: printer/main.pm:387
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", πολυχρηστική συσκευή στην USB"
-
-#: printer/main.pm:389
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", πολυχρηστική συσκευή στο HP JetDirect"
-
-#: printer/main.pm:391
-#, c-format
-msgid ", multi-function device"
-msgstr ", πολυχρηστική συσκευή"
-
-#: printer/main.pm:395
-#, c-format
-msgid ", printing to %s"
-msgstr ", εκτύπωση στο %s"
-
-#: printer/main.pm:398
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr "στον εξυπηρετητή LPD \"%s\", στον εκτυπωτή \"%s\""
-
-#: printer/main.pm:401
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP host \"%s\", θύρα %s"
-
-#: printer/main.pm:406
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr "στον εξυπηρετητή SMB/Windows \"%s\", κοινόχρηστο \"%s\""
-
-#: printer/main.pm:411
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr "στον εξυπηρετητή Novell \"%s\", στον εκτυπωτή \"%s\""
-
-#: printer/main.pm:414
-#, c-format
-msgid ", using command %s"
-msgstr ", με την εντολή %s"
-
-#: printer/main.pm:429
-#, fuzzy, c-format
-msgid "Parallel port #%s"
-msgstr " στη παράλληλη θήρα #%s"
-
-#: printer/main.pm:432 printer/printerdrake.pm:1466
-#: printer/printerdrake.pm:1493 printer/printerdrake.pm:1508
-#, c-format
-msgid "USB printer #%s"
-msgstr "εκτυπωτής USB #%s"
-
-#: printer/main.pm:434
-#, fuzzy, c-format
-msgid "USB printer"
-msgstr ", εκτυπωτής USB"
-
-#: printer/main.pm:438
-#, fuzzy, c-format
-msgid "HP printer on a parallel port"
-msgstr "Εκτυπωτής στην παράλληλη θήρα #%s"
-
-#: printer/main.pm:440
-#, fuzzy, c-format
-msgid "HP printer on USB"
-msgstr "Δεν βρέθηκε εκτυπωτής!"
-
-#: printer/main.pm:442
-#, fuzzy, c-format
-msgid "HP printer on HP JetDirect"
-msgstr ", πολυχρηστική συσκευή στο HP JetDirect"
-
-#: printer/main.pm:444
-#, fuzzy, c-format
-msgid "HP printer"
-msgstr "Εκτυπωτής"
-
-#: printer/main.pm:450
-#, fuzzy, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr ", πολυχρηστική συσκευή στην παράλληλη θήρα #%s"
-
-#: printer/main.pm:453
-#, fuzzy, c-format
-msgid "Multi-function device on a parallel port"
-msgstr ", πολυχρηστική συσκευή στην παράλληλη θήρα #%s"
-
-#: printer/main.pm:455
-#, fuzzy, c-format
-msgid "Multi-function device on USB"
-msgstr ", πολυχρηστική συσκευή στην USB"
-
-#: printer/main.pm:457
-#, fuzzy, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr ", πολυχρηστική συσκευή στο HP JetDirect"
-
-#: printer/main.pm:459
-#, fuzzy, c-format
-msgid "Multi-function device"
-msgstr ", πολυχρηστική συσκευή"
-
-#: printer/main.pm:463
-#, fuzzy, c-format
-msgid "Prints into %s"
-msgstr ", εκτύπωση στο %s"
-
-#: printer/main.pm:466
-#, fuzzy, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "στον εξυπηρετητή LPD \"%s\", στον εκτυπωτή \"%s\""
-
-#: printer/main.pm:469
-#, fuzzy, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP host \"%s\", θύρα %s"
-
-#: printer/main.pm:474
-#, fuzzy, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "στον εξυπηρετητή SMB/Windows \"%s\", κοινόχρηστο \"%s\""
-
-#: printer/main.pm:479
-#, fuzzy, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "στον εξυπηρετητή Novell \"%s\", στον εκτυπωτή \"%s\""
-
-#: printer/main.pm:482
-#, fuzzy, c-format
-msgid "Uses command %s"
-msgstr ", με την εντολή %s"
-
-#: printer/main.pm:484
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
-
-#: printer/main.pm:689 printer/printerdrake.pm:1047
-#: printer/printerdrake.pm:3142
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Ακατέργαστος εκτυπωτής (Χωρίς οδηγό)"
-
-#: printer/main.pm:1309 printer/printerdrake.pm:211
-#: printer/printerdrake.pm:223
-#, c-format
-msgid "Local network(s)"
-msgstr "Τοπικό Δίκτυο(α)"
-
-#: printer/main.pm:1311 printer/printerdrake.pm:227
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Διεπαφή \"%s\""
-
-#: printer/main.pm:1313
-#, c-format
-msgid "Network %s"
-msgstr "Δίκτυο %s"
-
-#: printer/main.pm:1315
-#, fuzzy, c-format
-msgid "Host %s"
-msgstr "Όνομα συστήματος"
-
-#: printer/main.pm:1344
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Θύρα %s)"
-
-#: printer/main.pm:1945 printer/main.pm:2100
-#, c-format
-msgid "user-supplied"
-msgstr ""
-
-#: printer/main.pm:1949 printer/main.pm:2104
-#, c-format
-msgid "NEW"
-msgstr ""
-
-#: printer/printerdrake.pm:24
-#, c-format
-msgid ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"decompressing the self-extracting '.exe' file with the 'unzip' utility and "
-"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
-"printer' directory. There it will be found by the automatic uploader script "
-"and uploaded whenever the printer is connected and turned on.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:67
-#, fuzzy, c-format
-msgid "CUPS printer configuration"
-msgstr "Ρυθμίσεις κοινής χρήσης εκτυπωτών CUPS"
-
-#: printer/printerdrake.pm:68
-#, c-format
-msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessible by remote machines and by which remote machines."
-msgstr ""
-"Εδώ μπορείτε να επιλέξετε αν οι συνδεμένοι εκτυπωτές αυτού το μηχανήματος θα "
-"είναι προσβάσιμοι από απομακρυσμένα μηχανήματα και από ποια."
-
-#: printer/printerdrake.pm:69
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-"Επίσης εδώ μπορείτε να ορίσετε αν οι εκτυπωτές που βρίσκονται σε "
-"απομακρυσμένα μηχανήματα θα είναι αυτόματα διαθέσιμοι και σε αυτό το "
-"μηχάνημα."
-
-#: printer/printerdrake.pm:72 printer/printerdrake.pm:506
-#: printer/printerdrake.pm:4542
-#, c-format
-msgid "Remote CUPS server and no local CUPS daemon"
-msgstr ""
-
-#: printer/printerdrake.pm:75
-#, c-format
-msgid "On"
-msgstr "Ανοιχτό"
-
-#: printer/printerdrake.pm:77 printer/printerdrake.pm:498
-#: printer/printerdrake.pm:525
-#, c-format
-msgid "Off"
-msgstr "κλειστό"
-
-#: printer/printerdrake.pm:78 printer/printerdrake.pm:507
-#, c-format
-msgid ""
-"In this mode the local CUPS daemon will be stopped and all printing requests "
-"go directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:84
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr ""
-"Οι εκτυπωτές σε αυτό το μηχάνημα είναι διαθέσιμοι σε άλλους υπολογιστές"
-
-#: printer/printerdrake.pm:89
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Βρείτε αυτόματα διαθέσιμους εκτυπωτές σε απομακρυσμένα μηχανήματα"
-
-#: printer/printerdrake.pm:94
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Κοινόχρηστοι εκτυπωτές στους υπολογιστές/δίκτυα: "
-
-#: printer/printerdrake.pm:96
-#, c-format
-msgid "Custom configuration"
-msgstr "Προσαρμοσμένη Ρύθμιση"
-
-#: printer/printerdrake.pm:101 standalone/scannerdrake:610
-#: standalone/scannerdrake:627
-#, fuzzy, c-format
-msgid "No remote machines"
-msgstr "(σε αυτό το μηχάνημα)"
-
-#: printer/printerdrake.pm:112
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Πρόσθετοι εξυπηρετητές CUPS: "
-
-#: printer/printerdrake.pm:119
-#, fuzzy, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr "CUPS CUPS Όλα Printerdrake CUPS εξυπηρετητής εξυπηρετητής."
-
-#: printer/printerdrake.pm:127
-#, fuzzy, c-format
-msgid "Japanese text printing mode"
-msgstr "Αλλαγή συστήματος εκτύπωσης"
-
-#: printer/printerdrake.pm:128
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in Japanese language. Only "
-"use this function if you really want to print text in Japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print Japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-
-#: printer/printerdrake.pm:135
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Αυτόματη διόρθωση της ρύθμισης CUPS"
-
-#: printer/printerdrake.pm:137
-#, fuzzy, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
+" Άδεια\n"
"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Πότε CUPS\n"
+" Άδεια\n"
+" Άδεια\n"
"\n"
-" LPD LPRng CUPS\n"
"\n"
+" Άδεια\n"
+" Άδεια Άδεια\n"
"\n"
"\n"
-" εξυπηρετητής\n"
"\n"
-"."
-
-#: printer/printerdrake.pm:161 printer/printerdrake.pm:236
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Κοινή χρήση τοπικών εκτυπωτών"
-
-#: printer/printerdrake.pm:162
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-"Αυτά είναι τα μηχανήματα όπου οι τοπικά συνδεμένοι εκτυπωτές(ης) πρέπει να "
-"είναι διαθέσιμοι:"
-
-#: printer/printerdrake.pm:173
-#, c-format
-msgid "Add host/network"
-msgstr "Προσθήκη υπολογιστή/δίκτυο"
-
-#: printer/printerdrake.pm:179
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Επεξεργασία επιλεγμένου υπολογιστή/δίκτυο"
-
-#: printer/printerdrake.pm:188
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Αφαίρεση επιλεγμένου υπολογιστή/δίκτυο"
-
-#: printer/printerdrake.pm:219 printer/printerdrake.pm:229
-#: printer/printerdrake.pm:241 printer/printerdrake.pm:248
-#: printer/printerdrake.pm:279 printer/printerdrake.pm:297
-#, c-format
-msgid "IP address of host/network:"
-msgstr "Διεύθυνση IP του υπολογιστή/δικτύου:"
-
-#: printer/printerdrake.pm:237
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr ""
-
-#: printer/printerdrake.pm:244
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Λείπει η διεύθυνση του Υπολογιστή/Δικτύου."
-
-#: printer/printerdrake.pm:252
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:253 printer/printerdrake.pm:429
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Παραδείγματα σωστών IP:\n"
-
-#: printer/printerdrake.pm:277
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr ""
-"Αυτός ο υπολογιστής/δίκτυο είναι ήδη στη λίστα, δεν μπορεί να προστεθεί "
-"ξανά.\n"
-
-#: printer/printerdrake.pm:346 printer/printerdrake.pm:416
-#, fuzzy, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "CUPS"
-
-#: printer/printerdrake.pm:347
-#, fuzzy, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr "Προσθήκη CUPS."
-
-#: printer/printerdrake.pm:358
-#, c-format
-msgid "Add server"
-msgstr "Προσθήκη εξυπηρετητή"
-
-#: printer/printerdrake.pm:364
-#, c-format
-msgid "Edit selected server"
-msgstr "Επεξεργασία επιλεγμένου εξυπηρετητή"
-
-#: printer/printerdrake.pm:373
-#, c-format
-msgid "Remove selected server"
-msgstr "Αφαίρεση επιλεγμένου εξυπηρετητή"
-
-#: printer/printerdrake.pm:417
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-
-#: printer/printerdrake.pm:418
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr ""
-
-#: printer/printerdrake.pm:422
-#, c-format
-msgid "Server IP missing!"
-msgstr "Λείπει η IP του εξυπηρετητή!"
-
-#: printer/printerdrake.pm:428
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Η διεύθυνση IP που εισάγατε δεν είναι σωστή.\n"
-
-#: printer/printerdrake.pm:440 printer/printerdrake.pm:2133
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Ο αριθμός θύρας πρέπει να είναι ακέραιος αριθμός!"
-
-#: printer/printerdrake.pm:451
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr ""
-"O εξυπηρετητής είναι ήδη στη λίστα, δεν μπορείτε να τον προσθέσετε ξανά.\n"
-
-#: printer/printerdrake.pm:462 printer/printerdrake.pm:2160
-#: standalone/drakups:249 standalone/harddrake2:52
-#, c-format
-msgid "Port"
-msgstr "Θύρα"
-
-#: printer/printerdrake.pm:495 printer/printerdrake.pm:511
-#: printer/printerdrake.pm:526 printer/printerdrake.pm:530
-#: printer/printerdrake.pm:536
-#, fuzzy, c-format
-msgid "On, Name or IP of remote server:"
-msgstr "Απομακρυσμένος εκτυπωτής σε εξυπηρετητή lpd"
-
-#: printer/printerdrake.pm:514 printer/printerdrake.pm:4551
-#: printer/printerdrake.pm:4617
-#, fuzzy, c-format
-msgid "CUPS server name or IP address missing."
-msgstr "Λείπει η διεύθυνση του Υπολογιστή/Δικτύου."
-
-#: printer/printerdrake.pm:566 printer/printerdrake.pm:586
-#: printer/printerdrake.pm:811 printer/printerdrake.pm:880
-#: printer/printerdrake.pm:901 printer/printerdrake.pm:927
-#: printer/printerdrake.pm:1023 printer/printerdrake.pm:1065
-#: printer/printerdrake.pm:1075 printer/printerdrake.pm:1110
-#: printer/printerdrake.pm:2220 printer/printerdrake.pm:2490
-#: printer/printerdrake.pm:2524 printer/printerdrake.pm:2575
-#: printer/printerdrake.pm:2582 printer/printerdrake.pm:2621
-#: printer/printerdrake.pm:2663 printer/printerdrake.pm:2700
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2984
-#: printer/printerdrake.pm:2989 printer/printerdrake.pm:3137
-#: printer/printerdrake.pm:3248 printer/printerdrake.pm:3862
-#: printer/printerdrake.pm:3929 printer/printerdrake.pm:3978
-#: printer/printerdrake.pm:3981 printer/printerdrake.pm:4091
-#: printer/printerdrake.pm:4149 printer/printerdrake.pm:4221
-#: printer/printerdrake.pm:4242 printer/printerdrake.pm:4252
-#: printer/printerdrake.pm:4342 printer/printerdrake.pm:4437
-#: printer/printerdrake.pm:4443 printer/printerdrake.pm:4471
-#: printer/printerdrake.pm:4578 printer/printerdrake.pm:4687
-#: printer/printerdrake.pm:4707 printer/printerdrake.pm:4716
-#: printer/printerdrake.pm:4731 printer/printerdrake.pm:4932
-#: printer/printerdrake.pm:5407 printer/printerdrake.pm:5490
-#: standalone/printerdrake:75 standalone/printerdrake:590
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: printer/printerdrake.pm:567 printer/printerdrake.pm:4150
-#: printer/printerdrake.pm:4688
-#, c-format
-msgid "Reading printer data..."
-msgstr "Ανάγνωση δεδομένων εκτυπωτή..."
-
-#: printer/printerdrake.pm:587
-#, fuzzy, c-format
-msgid "Restarting CUPS..."
-msgstr "Επανεκκίνηση XFS"
-
-#: printer/printerdrake.pm:614
-#, c-format
-msgid ""
-"Allow pop-up windows, printer setup and package installation may be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:616
-#, c-format
-msgid ""
-"No pop-up windows, printer setup and package installation cannot be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:622
-#, fuzzy, c-format
-msgid "Printer auto administration"
-msgstr "Αυτόματη ανίχνευση εκτυπωτών"
-
-#: printer/printerdrake.pm:623
-#, c-format
-msgid ""
-"Here you can configure printer administration tasks which should be done "
-"automatically."
-msgstr ""
-
-#: printer/printerdrake.pm:626
-#, fuzzy, c-format
-msgid "Do automatic configuration of new printers"
-msgstr "Ρύθμιση απομακρυσμένου εκτυπωτή"
-
-#: printer/printerdrake.pm:627 printer/printerdrake.pm:641
-#, fuzzy, c-format
-msgid "when a USB printer is connected and turned on"
-msgstr ""
-" (Βεβαιωθείτε ότι όλοι οι εκτυπωτές σας είναι συνδεμένοι και σε "
-"λειτουργία).\n"
-
-#: printer/printerdrake.pm:630
-#, fuzzy, c-format
-msgid "when Printerdrake is started"
-msgstr "Αυτή η κατάτμηση δεν μπορεί ν' αλλάξει μέγεθος."
-
-#: printer/printerdrake.pm:634
-#, c-format
-msgid "Mode for automatic printer setup:"
-msgstr ""
-
-#: printer/printerdrake.pm:640
-#, fuzzy, c-format
-msgid "Re-enable disabled printers"
-msgstr "Διαθέσιμοι εκτυπωτής"
-
-#: printer/printerdrake.pm:644
-#, fuzzy, c-format
-msgid "when the printing system is started"
-msgstr "Αλλαγή συστήματος εκτύπωσης"
-
-#: printer/printerdrake.pm:680
-#, fuzzy, c-format
-msgid "Communication error handling for the printer \"%s\""
-msgstr "Εκτύπωση στον εκτυπωτή \"%s\""
-
-#: printer/printerdrake.pm:682
-#, c-format
-msgid ""
-"Here you can configure how errors during the communication between your "
-"computer and the printer \"%s\" should be handled (for example if the "
-"printer is not turned on)."
-msgstr ""
-
-#: printer/printerdrake.pm:686
-#, fuzzy, c-format
-msgid "The number of retries should be an integer number of at least 1!"
-msgstr "Ο αριθμός θύρας πρέπει να είναι ακέραιος αριθμός!"
-
-#: printer/printerdrake.pm:690
-#, fuzzy, c-format
-msgid "The delay between retries should be a positive integer number!"
-msgstr "Η ταυτότητα χρήστη θα πρέπει να είναι ένας θετικός αριθμός"
-
-#: printer/printerdrake.pm:701
-#, fuzzy, c-format
-msgid "Do not disable the printer"
-msgstr "Απενεργοποίηση Εξυπηρετητή"
-
-#: printer/printerdrake.pm:704
-#, c-format
-msgid "Retry infinitely often"
-msgstr ""
-
-#: printer/printerdrake.pm:707
-#, fuzzy, c-format
-msgid "Number of retries"
-msgstr "Αριθμός πλήκτρων"
-
-#: printer/printerdrake.pm:712
-#, c-format
-msgid "Delay between retries (in sec)"
-msgstr ""
-
-#: printer/printerdrake.pm:745 printer/printerdrake.pm:765
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Τρόπος σύνδεσης εκτυπωτή"
-
-#: printer/printerdrake.pm:746
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Πώς είναι συνδεδεμένος ο εκτυπωτής σας;"
-
-#: printer/printerdrake.pm:748
-#, c-format
-msgid ""
"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
"\n"
-"Εκτυπωτές που είναι συνδεμένοι σε απομακρυσμένους εξυπηρετητές CUPS δεν "
-"χρειάζεται να ρυθμιστούν εδώ, θα ανιχνευθούν αυτόματα."
-
-#: printer/printerdrake.pm:751 printer/printerdrake.pm:4934
-#, c-format
-msgid ""
"\n"
-"WARNING: No local network connection active, remote printers can neither be "
-"detected nor tested!"
-msgstr ""
-
-#: printer/printerdrake.pm:758
-#, fuzzy, c-format
-msgid ""
-"Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"
-msgstr "Αυτόματη ανίχνευση εκτυπωτές (Τοπικοί, TCP/Socket, και εκτυπωτές SMB)"
-
-#: printer/printerdrake.pm:760
-#, c-format
-msgid "Modify timeout for network printer auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:766
-#, c-format
-msgid "Enter the timeout for network printer auto-detection (in msec) here. "
-msgstr ""
-
-#: printer/printerdrake.pm:768
-#, c-format
-msgid ""
-"The longer you choose the timeout, the more reliable the detections of "
-"network printers will be, but the scan can take longer then, especially if "
-"there are many machines with local firewalls in the network. "
-msgstr ""
-
-#: printer/printerdrake.pm:772
-#, fuzzy, c-format
-msgid "The timeout must be a positive integer number!"
-msgstr "Η ταυτότητα χρήστη θα πρέπει να είναι ένας θετικός αριθμός"
-
-#: printer/printerdrake.pm:811
-#, c-format
-msgid "Checking your system..."
-msgstr "Έλεγχος του συστήματος σας..."
-
-#: printer/printerdrake.pm:829
-#, c-format
-msgid "and one unknown printer"
-msgstr "και ένας άγνωστος εκτυπωτής"
-
-#: printer/printerdrake.pm:831
-#, c-format
-msgid "and %d unknown printers"
-msgstr "και %d άγνωστοι εκτυπωτές"
-
-#: printer/printerdrake.pm:835
-#, c-format
-msgid ""
-"The following printers\n"
"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Οι παρακάτω εκτυπωτές\n"
"\n"
-"%s%s\n"
-"είναι άμεσα συνδεμένοι στο σύστημά σας"
-
-#: printer/printerdrake.pm:837
-#, c-format
-msgid ""
-"The following printer\n"
"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Ο παρακάτω εκτυπωτής\n"
"\n"
-"%s%s\n"
-"είναι άμεσα συνδεμένοι στο σύστημά σας"
-
-#: printer/printerdrake.pm:838
-#, c-format
-msgid ""
-"The following printer\n"
"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-"Ο παρακάτω εκτυπωτής\n"
"\n"
-"%s%s\n"
-"είναι άμεσα συνδεμένος στο σύστημά σας"
-
-#: printer/printerdrake.pm:842
-#, c-format
-msgid ""
"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
"\n"
-"Ένας άγνωστος εκτυπωτής είναι συνδεμένος απευθείας στο σύστημά σας"
-
-#: printer/printerdrake.pm:843
-#, c-format
-msgid ""
"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
"\n"
-"Είναι %d εκτυπωτές συνδεμένοι απευθείας στο σύστημά σας"
-
-#: printer/printerdrake.pm:846
-#, c-format
-msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "Δεν βρέθηκαν εκτυπωτές που να είναι συνδεμένοι στον υπολογιστή σας"
-
-#: printer/printerdrake.pm:849
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr ""
-" (Βεβαιωθείτε ότι όλοι οι εκτυπωτές σας είναι συνδεμένοι και σε "
-"λειτουργία).\n"
-
-#: printer/printerdrake.pm:862
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
-"Θέλετε να ενεργοποιήσετε την εκτύπωση στους παραπάνω εκτυπωτές ή σε κάποιον "
-"άλλον στο τοπικό σας δίκτυο;\n"
-
-#: printer/printerdrake.pm:863
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr ""
-"Θέλετε να ενεργοποιήσετε την εκτύπωση σε εκτυπωτές στο τοπικό σας δίκτυο;\n"
-
-#: printer/printerdrake.pm:865
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Θέλετε να ενεργοποιήσετε την εκτύπωση στους παραπάνω εκτυπωτές ;\n"
-
-#: printer/printerdrake.pm:866
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr ""
-"Είστε βέβαιοι ότι θέλετε να ρυθμίσετε την εκτύπωση σε αυτό το μηχάνημα;\n"
-
-#: printer/printerdrake.pm:867
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
-"Σημ.: Ανάλογα με το μοντέλο του εκτυπωτή και το σύστημα εκτύπωσης θα "
-"εγκατασταθεί επιπλέον μέχρι και %d MB λογισμικό"
-
-#: printer/printerdrake.pm:884
-#, c-format
-msgid "Do not setup printer automatically now, and never do it again"
-msgstr ""
-
-#: printer/printerdrake.pm:928
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Αναζήτηση για νέους εκτυπωτές..."
-
-#: printer/printerdrake.pm:976
-#, c-format
-msgid "Do not setup printer automatically again"
-msgstr ""
-
-#: printer/printerdrake.pm:983
-#, fuzzy, c-format
-msgid "New printers found"
-msgstr "Δεν βρέθηκε εκτυπωτής!"
-
-#: printer/printerdrake.pm:984
-#, fuzzy, c-format
-msgid "New printer found"
-msgstr "Δεν βρέθηκε εκτυπωτής!"
-
-#: printer/printerdrake.pm:986
-#, c-format
-msgid ""
-"The following new printers were found and Printerdrake can automatically set "
-"them up for you. If you do not want to have all of them set up, unselect the "
-"ones which should be skipped, or click \"Cancel\" to set up none of them.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:987
-#, c-format
-msgid ""
-"The following new printer was found and printerdrake can automatically set "
-"it up for you. If you do not want to have it set up, unselect it, or click "
-"\"Cancel\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:988
-#, c-format
-msgid ""
-"Note that for certain printer models additional packages need to be "
-"installed. So keep your installation media handy.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1024 printer/printerdrake.pm:1066
-#, fuzzy, c-format
-msgid "Configuring printer on %s..."
-msgstr "Ρύθμιση εκτυπωτή \"%s\"..."
-
-#: printer/printerdrake.pm:1049
-#, c-format
-msgid "("
-msgstr "("
-
-#: printer/printerdrake.pm:1050
-#, c-format
-msgid " on "
-msgstr " στο "
-
-#: printer/printerdrake.pm:1051 standalone/scannerdrake:137
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: printer/printerdrake.pm:1056 printer/printerdrake.pm:3149
-#, c-format
-msgid "Printer model selection"
-msgstr "Επιλογή μοντέλου εκτυπωτή"
-
-#: printer/printerdrake.pm:1057 printer/printerdrake.pm:3150
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Τι μοντέλο εκτυπωτή έχετε;"
-
-#: printer/printerdrake.pm:1058
-#, c-format
-msgid ""
"\n"
"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
"\n"
"\n"
-"Το Printerdrake δεν μπόρεσε να καθορίσει το μοντέλο του εκτυπωτή %s. "
-"Παρακαλώ επιλέξτε το σωστό μοντέλο από τη λίστα."
-
-#: printer/printerdrake.pm:1061 printer/printerdrake.pm:3155
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Ο εκτυπωτής σας δεν υπάρχει στη λίστα, παρακαλώ διαλέξτε έναν συμβατό ή έναν "
-"παρόμοιο εκτυπωτή."
-
-#: printer/printerdrake.pm:1076 printer/printerdrake.pm:4708
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Ρύθμιση εκτυπωτή \"%s\"..."
-
-#: printer/printerdrake.pm:1111
-#, c-format
-msgid ""
-"Now you have turned off automatic printer setup.\n"
"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1112
-#, c-format
-msgid ""
-"You can turn it back on again by choosing \"%s\" -> \"%s\" in Printerdrake's "
-"main menu. "
-msgstr ""
-
-#: printer/printerdrake.pm:1112 printer/printerdrake.pm:4984
-#, fuzzy, c-format
-msgid "Configure Auto Administration"
-msgstr "Απομακρυσμένη διαχείριση"
-
-#: printer/printerdrake.pm:1113
-#, c-format
-msgid ""
-"There you can also choose in which situation automatic printer setup is done "
-"(On Printerdrake startup, on printing system startup, when connecting a new "
-"USB printer)."
-msgstr ""
-
-#: printer/printerdrake.pm:1261 printer/printerdrake.pm:1273
-#: printer/printerdrake.pm:1380 printer/printerdrake.pm:2401
-#: printer/printerdrake.pm:2460 printer/printerdrake.pm:2556
-#: printer/printerdrake.pm:4951 printer/printerdrake.pm:5138
-#, c-format
-msgid "Add a new printer"
-msgstr "Προσθήκη νέου εκτυπωτή"
-
-#: printer/printerdrake.pm:1262
-#, c-format
-msgid ""
+" Linux\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
"\n"
-"Καλώς ορίσατε στον Οδηγό Ρύθμισης Εκτυπωτή\n"
+" Άδεια\n"
"\n"
-"Ο οδηγός αυτός σας βοηθάει στην εγκατάσταση τοπικών ή απομακρυσμένων "
-"εκτυπωτών που θα χρησιμοποιηθούν σε αυτό και σε άλλα μηχανήματα στο δίκτυο\n"
"\n"
-"Σας ζητά όλες τις απαραίτητες πληροφορίες για να ρυθμίσετε τους εκτυπωτές "
-"και να αποκτήσετε πρόσβαση σε όλους τους διαθέσιμους οδηγούς εκτυπωτών, "
-"επιλογές των οδηγών και τους τύπους συνδέσεων."
-
-#: printer/printerdrake.pm:1275
-#, fuzzy, c-format
-msgid ""
+" Γενικά\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected. Also your network printer(s) and your Windows "
-"machines must be connected and turned on.\n"
"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you do not "
-"need it.\n"
+" Άδεια Τεκμηρίωση\n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
"\n"
-" Εκτυπωτής Οδηγός\n"
"\n"
-" Τομέας Windows \n"
"\n"
-" ανιχνεύθηκε Τομέας Windows \n"
+" Θύρα\n"
"\n"
-" Τομέας Windows \n"
+" Όλα\n"
"\n"
-" Επόμενο Άκυρο."
-
-#: printer/printerdrake.pm:1284
-#, fuzzy, c-format
-msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+" Linux\n"
"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
"\n"
-" Εκτυπωτής Οδηγός\n"
"\n"
"\n"
"\n"
-" ανιχνεύθηκε\n"
"\n"
-" Επόμενο Άκυρο."
+" Άδεια Γαλλία\n"
+" Όλα\n"
+" Γαλλία\n"
-#: printer/printerdrake.pm:1292
-#, fuzzy, c-format
+#: messages.pm:90
+#, c-format
msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you do not need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
msgstr ""
-"\n"
-" Εκτυπωτής Οδηγός\n"
-"\n"
-"\n"
-"\n"
-" ανιχνεύθηκε\n"
-"\n"
-"\n"
-"\n"
-" Επόμενο Άκυρο."
-#: printer/printerdrake.pm:1301
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:98
#, fuzzy, c-format
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
+"Warning\n"
"\n"
-" Εκτυπωτής Οδηγός\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
"\n"
"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
"\n"
-" ανιχνεύθηκε\n"
"\n"
-" Επόμενο Άκυρο."
-
-#: printer/printerdrake.pm:1352
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Αυτόματη ανίχνευση εκτυπωτών συνδεμένοι σε αυτό το μηχάνημα"
-
-#: printer/printerdrake.pm:1355
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Αυτόματη ανίχνευση εκτυπωτών συνδεμένοι στο τοπικό σας δίκτυο"
-
-#: printer/printerdrake.pm:1358
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
msgstr ""
-"Αυτόματη ανίχνευση εκτυπωτών συνδεμένοι σε μηχανήματα που έχουν Microsoft "
-"Windows"
-
-#: printer/printerdrake.pm:1361
-#, fuzzy, c-format
-msgid "No auto-detection"
-msgstr "Αυτόματη ανίχνευση"
-
-#: printer/printerdrake.pm:1381
-#, fuzzy, c-format
-msgid ""
"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the %s Control Center."
-msgstr ""
+" Προσοχή\n"
"\n"
-"Συγχαρητήρια, ο εκτυπωτής σας εγκαταστάθηκε και ρυθμίστηκε!\n"
"\n"
-"Μπορείτε τώρα να εκτυπώσετε με την εντολή \"Εκτύπωση\" της εφαρμογής σας "
-"(συνήθως κάτω από το μενού \"Αρχείο\").\n"
+" Άρνηση\n"
"\n"
-"Αν θέλετε να προσθέσετε, να αφαιρέσετε ή να μετονομάσετε τον εκτυπωτή σας ή "
-"αν θέλετε να αλλάξετε τις προεπιλεγμένες ρυθμίσεις σας (θέση του χαρτιού, "
-"ποιότητα εκτύπωσης) επιλέξτε \"Εκτυπωτής\" στο τμήμα \"Υλικό\"του Κέντρου "
-"Ελέγχου Mandriva."
-
-#: printer/printerdrake.pm:1417 printer/printerdrake.pm:1641
-#: printer/printerdrake.pm:1704 printer/printerdrake.pm:1796
-#: printer/printerdrake.pm:1934 printer/printerdrake.pm:2010
-#: printer/printerdrake.pm:2177 printer/printerdrake.pm:2268
-#: printer/printerdrake.pm:2277 printer/printerdrake.pm:2286
-#: printer/printerdrake.pm:2297 printer/printerdrake.pm:2496
-#: printer/printerdrake.pm:2633
-#, fuzzy, c-format
-msgid "Could not install the %s packages!"
-msgstr "Εγκατάσταση πακέτου %s"
-
-#: printer/printerdrake.pm:1419
-#, c-format
-msgid "Skipping Windows/SMB server auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:1425 printer/printerdrake.pm:1564
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Αυτόματη ανίχνευση εκτυπωτών"
-
-#: printer/printerdrake.pm:1425
-#, c-format
-msgid "Detecting devices..."
-msgstr "Εντοπισμός συσκευών..."
-
-#: printer/printerdrake.pm:1451
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", εκτυπωτής δικτύου \"%s\", θύρα %s"
-
-#: printer/printerdrake.pm:1454
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Εκτυπωτής \"%s\" σε εξυπηρετητή SMB/Windows \"%s\""
-
-#: printer/printerdrake.pm:1458
-#, c-format
-msgid "Detected %s"
-msgstr "Βρέθηκε ο %s"
-
-#: printer/printerdrake.pm:1463 printer/printerdrake.pm:1490
-#: printer/printerdrake.pm:1505
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Εκτυπωτής στην παράλληλη θήρα #%s"
-
-#: printer/printerdrake.pm:1469
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Εκτυπωτής δικτύου \"%s\", θύρα %s"
-
-#: printer/printerdrake.pm:1472
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Εκτυπωτής \"%s\" σε εξυπηρετητή SMB/Windows \"%s\""
-
-#: printer/printerdrake.pm:1550
-#, c-format
-msgid "Local Printer"
-msgstr "Τοπικός Εκτυπωτής"
-
-#: printer/printerdrake.pm:1551
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Δεν βρέθηκαν τοπικοί εκτυπωτές! Για να ρυθμίσετε μόνοι σας έναν εκτυπωτή "
-"δώστε το όνομα εκτυπωτή/όνομα αρχείου στη γραμμή εισαγωγής (Παράλληλες "
-"θύρες: /dev/lp0, /dev/lp1, ..., αντίστοιχες των LPT1:, LPT2:, ..., 1ος "
-"εκτυπωτής USB: /dev/usb/lp0, 2ος USB εκτυπωτής: /dev/usb/lp1, ...)."
-
-#: printer/printerdrake.pm:1555
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Πρέπει να ορίσετε μια συσκευή ή ένα όνομα αρχείου!"
-
-#: printer/printerdrake.pm:1565
-#, c-format
-msgid "No printer found!"
-msgstr "Δεν βρέθηκε εκτυπωτής!"
-
-#: printer/printerdrake.pm:1573
-#, c-format
-msgid "Local Printers"
-msgstr "Τοπικοί εκτυπωτές"
-
-#: printer/printerdrake.pm:1574
-#, c-format
-msgid "Available printers"
-msgstr "Διαθέσιμοι εκτυπωτής"
-
-#: printer/printerdrake.pm:1578 printer/printerdrake.pm:1587
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Οι παρακάτω εκτυπωτές βρέθηκαν αυτόματα."
-
-#: printer/printerdrake.pm:1580
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
-"Αν δεν είναι αυτός που θέλετε να ρυθμίσετε, εισάγετε το όνομα συσκευής/όνομα "
-"αρχείου στη γραμμή εισαγωγής"
-
-#: printer/printerdrake.pm:1581
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-"Εναλλακτικά, μπορείτε να εισάγετε ένα όνομα συσκευής/αρχείου στη γραμμή "
-"εισαγωγής"
-
-#: printer/printerdrake.pm:1582 printer/printerdrake.pm:1591
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Ορίστε η λίστα των εκτυπωτών που ανιχνεύτηκαν αυτόματα."
-
-#: printer/printerdrake.pm:1584
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
-msgstr ""
-"Παρακαλώ επιλέξτε τον εκτυπωτή που θέλετε να ρυθμίσετε ή εισάγετε ένα όνομα "
-"συσκευής/αρχείου στη γραμμή εισαγωγής"
-
-#: printer/printerdrake.pm:1585
-#, c-format
-msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-"Παρακαλώ επιλέξτε τον εκτυπωτή στον οποίο θα αποστέλλονται οι εργασίες "
-"εκτύπωσης ή δώστε το όνομα συσκευής/αρχείου στη γραμμή εισαγωγής"
-
-#: printer/printerdrake.pm:1589
-#, fuzzy, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr "ανιχνεύθηκε."
-
-#: printer/printerdrake.pm:1590
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Προς το παρόν δεν υπάρχει άλλη εναλλακτική"
-
-#: printer/printerdrake.pm:1593
-#, fuzzy, c-format
-msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
-msgstr "ανιχνεύθηκε."
-
-#: printer/printerdrake.pm:1594
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr ""
-"Παρακαλώ επιλέξτε τον εκτυπωτή στον οποίο θα αποστέλλονται οι εργασίες "
-"εκτύπωσης."
-
-#: printer/printerdrake.pm:1596
-#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Παρακαλώ επιλέξτε τη θύρα όπου είναι συνδεδεμένος ο εκτυπωτή σας ή εισάγετε "
-"ένα όνομα συσκευής/αρχείου στη γραμμή εισαγωγής"
-
-#: printer/printerdrake.pm:1597
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Επιλέξτε σε ποία θήρα είναι συνδεδεμένος ο εκτυπωτής σας."
-
-#: printer/printerdrake.pm:1599
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-"(Παράλληλες θύρες: /dev/lp0, /dev/lp1, ..., αντίστοιχες των LPT1:, "
-"LPT2:, ..., 1ος εκτυπωτής USB: /dev/usb/lp0, 2ος USB εκτυπωτής: /dev/usb/"
-"lp1, ...)."
-
-#: printer/printerdrake.pm:1603
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Πρέπει να επιλέξτε/ορίσετε μια συσκευή/εκτυπωτή!"
-
-#: printer/printerdrake.pm:1643 printer/printerdrake.pm:1706
-#: printer/printerdrake.pm:1798 printer/printerdrake.pm:1936
-#: printer/printerdrake.pm:2012 printer/printerdrake.pm:2179
-#: printer/printerdrake.pm:2270 printer/printerdrake.pm:2279
-#: printer/printerdrake.pm:2288 printer/printerdrake.pm:2299
-#, fuzzy, c-format
-msgid "Aborting"
-msgstr "Ακύρωση"
-
-#: printer/printerdrake.pm:1679
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Επιλογές απομακρυσμένου lpd εκτυπωτή"
-
-#: printer/printerdrake.pm:1680
-#, c-format
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Για να χρησιμοποιήσετε έναν απομακρυσμένο εκτύπωση πρέπει να δώσετε το "
-"δικτυακό όνομα του εξυπηρετητή εκτυπώσεων, καθώς και το όνομα του εκτυπωτή "
-"σε αυτόν τον εξυπηρετητή."
-
-#: printer/printerdrake.pm:1681
-#, c-format
-msgid "Remote host name"
-msgstr "Απομακρυσμένο δικτυακό όνομα"
-
-#: printer/printerdrake.pm:1682
-#, c-format
-msgid "Remote printer name"
-msgstr "Απομακρυσμένος όνομα εκτυπωτή"
-
-#: printer/printerdrake.pm:1685
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Το απομακρυσμένο δικτυακό όνομα λείπει!"
-
-#: printer/printerdrake.pm:1689
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Το απομακρυσμένο όνομα εκτυπωτή λείπει!"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318 standalone/drakTermServ:475
-#: standalone/drakTermServ:807 standalone/drakTermServ:823
-#: standalone/drakTermServ:1653 standalone/drakTermServ:1662
-#: standalone/drakTermServ:1676 standalone/drakbackup:512
-#: standalone/drakbackup:618 standalone/drakbackup:653
-#: standalone/drakbackup:754 standalone/draknfs:203
-#: standalone/draksambashare:627 standalone/draksambashare:794
-#: standalone/harddrake2:275
-#, c-format
-msgid "Information"
-msgstr "Πληροφορίες"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Βρέθηκε το μοντέλο: %s %s"
-
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, c-format
-msgid "Scanning network..."
-msgstr "Αναζήτηση στο δίκτυο..."
-
-#: printer/printerdrake.pm:1814 printer/printerdrake.pm:1835
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", εκτυπωτής \"%s\"στον εξυπηρετητή \"%s\""
-
-#: printer/printerdrake.pm:1817 printer/printerdrake.pm:1838
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Εκτυπωτής \"%s\"στον εξυπηρετητή \"%s\""
-
-#: printer/printerdrake.pm:1859
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Επιλογές εκτυπωτή SMB (Windows 9x/NT)"
-
-#: printer/printerdrake.pm:1860
-#, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Για να εκτυπώσετε σε έναν SMB εκτυπωτή, πρέπει να δώσετε το δικτυακό όνομα "
-"SMB (Σημείωση! Μπορεί να είναι διαφορετικό από το δικτυακό όνομα TCP/IP!) "
-"και ίσως την διεύθυνση IP του εξυπηρετητή εκτυπώσεων, το όνομα του εκτυπωτή "
-"στον οποίο επιθυμείτε πρόσβαση, καθώς και οποιαδήποτε απαραίτητη πληροφορία "
-"περί κωδικού χρήστη, κωδικού πρόσβασης και τομέα ή ομάδας εργασίας."
-
-#: printer/printerdrake.pm:1861
-#, fuzzy, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr "ανιχνεύθηκε χρήστης."
-
-#: printer/printerdrake.pm:1863
-#, c-format
-msgid "SMB server host"
-msgstr "Δικτυακό όνομα SMB εξυπηρετητή"
-
-#: printer/printerdrake.pm:1864
-#, c-format
-msgid "SMB server IP"
-msgstr "IP διεύθυνση SMB εξυπηρετητή"
-
-#: printer/printerdrake.pm:1865 standalone/draksambashare:67
-#, c-format
-msgid "Share name"
-msgstr "Όνομα πόρου:"
-
-#: printer/printerdrake.pm:1868
-#, c-format
-msgid "Workgroup"
-msgstr "Ομάδα εργασίας:"
-
-#: printer/printerdrake.pm:1870
-#, c-format
-msgid "Auto-detected"
-msgstr "Εντοπίστηκαν αυτόματα"
-
-#: printer/printerdrake.pm:1880
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Είτε το όνομα του εξυπηρετητή ή η IP του πρέπει να δοθούν!"
-
-#: printer/printerdrake.pm:1884
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Το όνομα για το Samba λείπει!"
-
-#: printer/printerdrake.pm:1890
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ ΑΣΦΑΛΕΙΑΣ!"
-
-#: printer/printerdrake.pm:1891
-#, fuzzy, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
+" Άδεια\n"
"\n"
-msgstr ""
-"Τομέας Windows Τομέας Windows εξυπηρετητής χρήστης\n"
"\n"
-" Τομέας Windows εξυπηρετητής\n"
"\n"
-" Τομέας Windows εξυπηρετητής Ολοκληρώθηκε\n"
"\n"
-" Τομέας Windows εξυπηρετητής LPD Printerdrake\n"
-
-#: printer/printerdrake.pm:1901
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
"\n"
-msgstr ""
-"Ρυθμίστε τον εξυπηρετητή Windows ώστε να είναι διαθέσιμος ο εκτυπωτής στο "
-"πρωτόκολλο IPP και ρυθμίστε τις εκτυπώσεις από αυτό το μηχάνημα με τον τύπο "
-"σύνδεσης \"%s\" στο Printerdrake.\n"
"\n"
-
-#: printer/printerdrake.pm:1904
-#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-"Συνδέστε τον εκτυπωτή σας σε έναν εξυπηρετητή Linux και συνδέστε σε αυτόν τα "
-"μηχανήματα Windows σαν πελάτες\n"
"\n"
-"Θέλετε πραγματικά να συνεχίσετε τις ρυθμίσεις του εκτυπωτή σας που κάνετε;"
-
-#: printer/printerdrake.pm:1983
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "Επιλογές Εκτυπωτή NetWare"
-
-#: printer/printerdrake.pm:1984
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Για να εκτυπώσετε σε έναν εκτυπωτή NetWare, πρέπει να δώσετε το όνομα του "
-"εξυπηρετητή εκτυπώσεων NetWare (Σημείωση! Μπορεί να είναι διαφορετικό από το "
-"δικτυακό όνομα TCP/IP!), το όνομα του εκτυπωτή στον οποίο επιθυμείτε "
-"πρόσβαση, καθώς και\n"
-"οποιαδήποτε απαραίτητη πληροφορία περί χρήστη και κωδικού πρόσβασης."
-
-#: printer/printerdrake.pm:1985
-#, c-format
-msgid "Printer Server"
-msgstr "Εξυπηρετητής Εκτυπώσεων"
-
-#: printer/printerdrake.pm:1986
-#, c-format
-msgid "Print Queue Name"
-msgstr "Όνομα Ουράς Εκτυπωτή"
-
-#: printer/printerdrake.pm:1991
-#, c-format
-msgid "NCP server name missing!"
-msgstr "Το όνομα του εξυπηρετητή NCP λείπει!"
-
-#: printer/printerdrake.pm:1995
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "Το όνομα της NCP ουράς λείπει!"
-
-#: printer/printerdrake.pm:2076 printer/printerdrake.pm:2097
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", host \"%s\",θύρα %s"
-
-#: printer/printerdrake.pm:2079 printer/printerdrake.pm:2100
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Host \"%s\", θύρα %s"
-
-#: printer/printerdrake.pm:2122
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "Επιλογές εκτυπωτή TCP/Socket"
-
-#: printer/printerdrake.pm:2124
-#, fuzzy, c-format
-msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
-msgstr "ανιχνεύθηκε εξ' ορισμού."
-
-#: printer/printerdrake.pm:2125
-#, c-format
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
-msgstr ""
-"Για να εκτυπώσετε σε έναν εκτυπωτή socket ή TCP , πρέπει να δώσετε το \n"
-"δικτυακό όνομα του εκτυπωτή και προαιρετικά τον αριθμό θύρας ( εξ ορισμού "
-"9100). Στους εξυπηρετητές HP JetDirect ή θύρα συνήθως είναι 9100, σε άλλους "
-"εξυπηρετητές ποικίλη. Δείτε το εγχειρίδιο χρήσης του υλικού σας."
-
-#: printer/printerdrake.pm:2129
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Το δικτυακό όνομα του εκτυπωτή ή το IP λείπει!"
-
-#: printer/printerdrake.pm:2158
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Δικτυακό όνομα εκτυπωτή ή IP"
-
-#: printer/printerdrake.pm:2221
-#, fuzzy, c-format
-msgid "Refreshing Device URI list..."
-msgstr "Ανανέωση δεδομένων εκτυπωτή..."
-
-#: printer/printerdrake.pm:2224 printer/printerdrake.pm:2226
-#, c-format
-msgid "Printer Device URI"
-msgstr "Συσκευή εκτυπωτή URI"
-
-#: printer/printerdrake.pm:2225
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Μπορείτε να ορίσετε κατευθείαν το URI για την πρόσβαση στον εκτυπωτή. Το URI "
-"πρέπει να τηρεί είτε τις CUPS είτε τις Foomatic προδιαγραφές. Όχι πως δεν "
-"υποστηρίζονται όλοι οι URI τύποι από όλα τα spoolers."
-
-#: printer/printerdrake.pm:2249
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Ένα σωστό URI πρέπει να εισαχθεί!"
-
-#: printer/printerdrake.pm:2354
-#, c-format
-msgid "Pipe into command"
-msgstr "Διασωλήνωση εργασίας σε εντολή"
-
-#: printer/printerdrake.pm:2355
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-
-#: printer/printerdrake.pm:2356
-#, c-format
-msgid "Command line"
-msgstr "Γραμμή εντολών"
-
-#: printer/printerdrake.pm:2360
-#, fuzzy, c-format
-msgid "A command line must be entered!"
-msgstr "Ένα σωστό URI πρέπει να εισαχθεί!"
-
-#: printer/printerdrake.pm:2402
-#, c-format
-msgid "Your printer %s is currently connected %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2404 printer/printerdrake.pm:2411
-#, fuzzy, c-format
-msgid "to a parallel port"
-msgstr " στη παράλληλη θήρα #%s"
-
-#: printer/printerdrake.pm:2405 printer/printerdrake.pm:2412
-#, c-format
-msgid "to the USB"
-msgstr ""
-
-#: printer/printerdrake.pm:2406 printer/printerdrake.pm:2413
-#, fuzzy, c-format
-msgid "via the network"
-msgstr "Εκκίνηση δικτύου"
-
-#: printer/printerdrake.pm:2407
-#, c-format
-msgid "This type of connection is currently not fully supported by HPLIP."
-msgstr ""
-
-#: printer/printerdrake.pm:2409
-#, c-format
-msgid "You get full HPLIP support for your device if you connect it "
-msgstr ""
-
-#: printer/printerdrake.pm:2415
-#, c-format
-msgid ""
-"You can now set up your device with HPLIP anyway (works in many cases), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "set it up without HPLIP (print-only), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, fuzzy, c-format
-msgid "or"
-msgstr "Ώρα"
-
-#: printer/printerdrake.pm:2417
-#, c-format
-msgid "cancel the setup (for example to reconnect your device)."
-msgstr ""
-
-#: printer/printerdrake.pm:2419
-#, c-format
-msgid ""
-"You can always revise your choice by clicking your printer's entry in the "
-"main window, "
-msgstr ""
-
-#: printer/printerdrake.pm:2420
-#, c-format
-msgid "clicking the \"%s\" button, "
-msgstr ""
-
-#. -PO: "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: printer/printerdrake.pm:2420 standalone/drakperm:124 standalone/drakups:300
-#: standalone/drakups:360 standalone/drakups:380 standalone/drakvpn:319
-#: standalone/drakvpn:680 standalone/printerdrake:245
-#, c-format
-msgid "Edit"
-msgstr "Επεξεργασία"
-
-#: printer/printerdrake.pm:2421
-#, c-format
-msgid "and choosing \"%s\"."
-msgstr ""
-
-#: printer/printerdrake.pm:2421 printer/printerdrake.pm:5334
-#: printer/printerdrake.pm:5394
-#, c-format
-msgid "Printer connection type"
-msgstr "Τύπο σύνδεση εκτυπωτή"
-
-#: printer/printerdrake.pm:2423 standalone/logdrake:408
-#, c-format
-msgid "What do you want to do?"
-msgstr "Τι θέλετε να κάνετε;"
-
-#: printer/printerdrake.pm:2424 printer/printerdrake.pm:2428
-#, c-format
-msgid "Set up with HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2425 printer/printerdrake.pm:2427
-#: printer/printerdrake.pm:2430
-#, c-format
-msgid "Set up without HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2461
-#, c-format
-msgid ""
-"On many HP printers there are special functions available, maintenance (ink "
-"level checking, nozzle cleaning. head alignment, ...) on all not too old "
-"inkjets, scanning on multi-function devices, and memory card access on "
-"printers with card readers. "
-msgstr ""
-
-#: printer/printerdrake.pm:2463
-#, c-format
-msgid ""
-"To access these extra functions on HP printers they must be set up with "
-"HPLIP (HP Linux Imaging and Printing). "
-msgstr ""
-
-#: printer/printerdrake.pm:2465
-#, c-format
-msgid "Do you want to use HPLIP (choose \"No\" for non-HP printers)? "
-msgstr ""
-
-#: printer/printerdrake.pm:2491
-#, c-format
-msgid "Installing %s package..."
-msgstr "Εγκατάσταση πακέτου %s..."
-
-#: printer/printerdrake.pm:2491 printer/printerdrake.pm:2497
-#: printer/printerdrake.pm:2525
-#, fuzzy, c-format
-msgid "HPLIP"
-msgstr "PL_IP"
-
-#: printer/printerdrake.pm:2498
-#, c-format
-msgid "Only printing will be possible on the %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2513
-#, fuzzy, c-format
-msgid "Could not remove your old HPOJ configuration file %s for your %s! "
-msgstr "Αδυναμία δημιουργίας καταλόγου ρυθμίσεων ανά χρήστη gnome `%s': %s\n"
-
-#: printer/printerdrake.pm:2515
-#, c-format
-msgid "Please remove the file manually and restart HPOJ."
-msgstr ""
-
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "Checking device and configuring %s..."
-msgstr "Έλεγχος και ρύθμιση της συσκευή %s..."
-
-#: printer/printerdrake.pm:2557
-#, fuzzy, c-format
-msgid "Which printer do you want to set up with HPLIP?"
-msgstr "Σε ποιόν τομέα θέλετε να μετακινηθείτε;"
-
-#: printer/printerdrake.pm:2576
-#, c-format
-msgid "HPLIP was not able to communicate with the chosen printer!"
-msgstr ""
-
-#: printer/printerdrake.pm:2577 printer/printerdrake.pm:2584
-#, fuzzy, c-format
-msgid "Setting up the printer without HPLIP..."
-msgstr "Αποθήκευση πληροφ. χρήστη..."
-
-#: printer/printerdrake.pm:2583
-#, c-format
-msgid ""
-"HPLIP did not find any local printers (Parallel, USB) which it supports!"
-msgstr ""
-
-#: printer/printerdrake.pm:2622
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "Εγκατάσταση πακέτου SANE..."
-
-#: printer/printerdrake.pm:2635
-#, c-format
-msgid "Scanning on the %s will not be possible."
-msgstr ""
-
-#: printer/printerdrake.pm:2650
-#, c-format
-msgid "Using and Maintaining your %s"
-msgstr ""
-
-#: printer/printerdrake.pm:2664
-#, fuzzy, c-format
-msgid "Configuring device..."
-msgstr "Ρύθμιση..."
-
-#: printer/printerdrake.pm:2701
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Γίνονται διαθέσιμες οι θύρες στο CUPS..."
-
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2985
-#: printer/printerdrake.pm:3138
-#, c-format
-msgid "Reading printer database..."
-msgstr "Ανάγνωση βάσης δεδομένων εκτυπωτών..."
-
-#: printer/printerdrake.pm:2943
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Εισάγετε Όνομα Εκτυπωτή και Σχόλια"
-
-#: printer/printerdrake.pm:2947 printer/printerdrake.pm:4206
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"Το όνομα του εκτυπωτή πρέπει να περιέχει μόνο γράμματα, αριθμούς και τον "
-"χαρακτήρα underscore"
-
-#: printer/printerdrake.pm:2953 printer/printerdrake.pm:4211
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Ο εκτυπωτής \"%s\" υπάρχει ήδη,\n"
-"Είστε βέβαιοι για την επικάλυψη των ρυθμίσεων;"
-
-#: printer/printerdrake.pm:2960
-#, c-format
-msgid ""
-"The printer name \"%s\" has more than 12 characters which can make the "
-"printer unaccessible from Windows clients. Do you really want to use this "
-"name?"
-msgstr ""
-
-#: printer/printerdrake.pm:2969
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Κάθε εκτυπωτής χρειάζεται ένα όνομα (π.χ. \"εκτυπωτής\").Τα πεδία Περιγραφή "
-"και Τοποθεσία δεν χρειάζεται να συμπληρωθούν. Είναι απλά σχόλια για τους "
-"χρήστες."
-
-#: printer/printerdrake.pm:2970
-#, c-format
-msgid "Name of printer"
-msgstr "Όνομα εκτυπωτή"
-
-#: printer/printerdrake.pm:2971 standalone/drakconnect:592
-#: standalone/harddrake2:39 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Description"
-msgstr "Περιγραφή"
-
-#: printer/printerdrake.pm:2972 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Location"
-msgstr "Τοποθεσία"
-
-#: printer/printerdrake.pm:2990
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Ανάγνωση βάσης δεδομένων εκτυπωτών..."
-
-#: printer/printerdrake.pm:3116
-#, c-format
-msgid "Your printer model"
-msgstr "Το μοντέλο εκτυπωτή σας"
-
-#: printer/printerdrake.pm:3117
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
"\n"
-"For your printer Printerdrake has found:\n"
"\n"
-"%s"
-msgstr ""
-"Το Printerdrake συνέκρινε το όνομα του μοντέλου από τον αυτόματο εντοπισμό "
-"με τη λίστα των μοντέλων από την βάση δεδομένων εκτυπωτών για να την "
-"καλύτερη επιλογή. Αυτή η επιλογή μπορεί να είναι λάθος, ειδικά εάν ο "
-"εκτυπωτής σας δεν είναι καταχωρημένος στην βάση δεδομένων. Δείτε λοιπόν αν η "
-"επιλογή του εκτυπωτή είναι σωστή και κάντε κλικ στο \"Το μοντέλο είναι σωστό"
-"\" εάν όχι κάντε κλικ στο \"Επιλέξτε το μοντέλο χειροκίνητα\" για να "
-"επιλέξετε χειροκίνητα το μοντέλο από την επόμενη οθόνη\n"
-"Για τον εκτυπωτή σας το Printerdrake βρήκε:\n"
"\n"
-"%s"
-
-#: printer/printerdrake.pm:3122 printer/printerdrake.pm:3125
-#, c-format
-msgid "The model is correct"
-msgstr "Το μοντέλο είναι σωστό"
-
-#: printer/printerdrake.pm:3123 printer/printerdrake.pm:3124
-#: printer/printerdrake.pm:3127
-#, c-format
-msgid "Select model manually"
-msgstr "Επιλέξτε το μοντέλο χειροκίνητα"
-
-#: printer/printerdrake.pm:3151
-#, fuzzy, c-format
-msgid ""
+" Μεταφορά\n"
"\n"
"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
-msgstr ""
"\n"
+" Όλα\n"
"\n"
-" Printerdrake."
-#: printer/printerdrake.pm:3170
-#, c-format
-msgid "Install a manufacturer-supplied PPD file"
-msgstr ""
-
-#: printer/printerdrake.pm:3202
-#, c-format
-msgid ""
-"Every PostScript printer is delivered with a PPD file which describes the "
-"printer's options and features."
-msgstr ""
-
-#: printer/printerdrake.pm:3203
-#, c-format
-msgid ""
-"This file is usually somewhere on the CD with the Windows and Mac drivers "
-"delivered with the printer."
-msgstr ""
-
-#: printer/printerdrake.pm:3204
-#, c-format
-msgid "You can find the PPD files also on the manufacturer's web sites."
-msgstr ""
-
-#: printer/printerdrake.pm:3205
-#, c-format
-msgid ""
-"If you have Windows installed on your machine, you can find the PPD file on "
-"your Windows partition, too."
-msgstr ""
-
-#: printer/printerdrake.pm:3206
-#, c-format
-msgid ""
-"Installing the printer's PPD file and using it when setting up the printer "
-"makes all options of the printer available which are provided by the "
-"printer's hardware"
-msgstr ""
-
-#: printer/printerdrake.pm:3207
-#, c-format
-msgid ""
-"Here you can choose the PPD file to be installed on your machine, it will "
-"then be used for the setup of your printer."
-msgstr ""
-
-#: printer/printerdrake.pm:3209
-#, fuzzy, c-format
-msgid "Install PPD file from"
-msgstr "Εγκατάσταση rpm"
-
-#: printer/printerdrake.pm:3212 printer/printerdrake.pm:3220
-#: standalone/scannerdrake:183 standalone/scannerdrake:192
-#: standalone/scannerdrake:242 standalone/scannerdrake:250
-#, fuzzy, c-format
-msgid "Floppy Disk"
-msgstr "Δισκέτα"
-
-#: printer/printerdrake.pm:3213 printer/printerdrake.pm:3222
-#: standalone/scannerdrake:184 standalone/scannerdrake:194
-#: standalone/scannerdrake:243 standalone/scannerdrake:252
-#, fuzzy, c-format
-msgid "Other place"
-msgstr "Άλλες θύρες"
-
-#: printer/printerdrake.pm:3228
-#, fuzzy, c-format
-msgid "Select PPD file"
-msgstr "Επιλέξτε αρχείο"
-
-#: printer/printerdrake.pm:3232
-#, c-format
-msgid "The PPD file %s does not exist or is unreadable!"
-msgstr ""
-
-#: printer/printerdrake.pm:3238
-#, c-format
-msgid "The PPD file %s does not conform with the PPD specifications!"
-msgstr ""
-
-#: printer/printerdrake.pm:3249
-#, fuzzy, c-format
-msgid "Installing PPD file..."
-msgstr "Εγκατάσταση %s ..."
-
-#: printer/printerdrake.pm:3368
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "Ρυθμίσεις OKI winprinter"
-
-#: printer/printerdrake.pm:3369
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"Ρυθμίζετε έναν εκτυπωτή laser OKI winprinter. Αυτοί οι εκτυπωτές\n"
-"κάνουν χρήση ενός πολύ ειδικού πρωτοκόλλου επικοινωνίας και γι' αυτό "
-"λειτουργούν μόνο αν είναι συνδεμένοι στην πρώτη παράλληλη θύρα. Αν είναι "
-"συνδεμένος σε άλλη θύρα ή σε έναν εξυπηρετητή εκτυπώσεων παρακαλώ στην πρώτη "
-"παράλληλη πριν εκτυπώσετε την πρώτη δοκιμαστική σελίδα. Διαφορετικά ο "
-"εκτυπωτής δεν θα λειτουργήσει. Η ρυθμίσεις του τύπου σύνδεσης θα αγνοηθούν "
-"από τον οδηγό."
-
-#: printer/printerdrake.pm:3394 printer/printerdrake.pm:3424
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Ρυθμίσεις εκτυπωτή μελάνης Lexmark"
-
-#: printer/printerdrake.pm:3395
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Οι οδηγοί των εκτυπωτών μελάνης που παρέχονται από τη Lexmark υποστηρίζουν "
-"μόνο τοπικούς εκτυπωτές, δεν υποστηρίζουν εκτυπωτές σε απομακρυσμένους "
-"υπολογιστές ή εξυπηρετητές εκτυπώσεων. Παρακαλώ συνδέστε τον εκτυπωτή σας σε "
-"μια τοπική θύρα ή ρυθμίστε τον στο μηχάνημα που είναι συνδεδεμένος."
-
-#: printer/printerdrake.pm:3425
-#, fuzzy, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr "http://www.lexmark. Linux Άκυρο."
-
-#: printer/printerdrake.pm:3435
-#, fuzzy, c-format
-msgid "Lexmark X125 configuration"
-msgstr "Ρυθμίσεις εκτυπωτή μελάνης Lexmark"
-
-#: printer/printerdrake.pm:3436
-#, fuzzy, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes. Please connect "
-"your printer to a local USB port or configure it on the machine where it is "
-"connected to."
-msgstr ""
-"Οι οδηγοί των εκτυπωτών μελάνης που παρέχονται από τη Lexmark υποστηρίζουν "
-"μόνο τοπικούς εκτυπωτές, δεν υποστηρίζουν εκτυπωτές σε απομακρυσμένους "
-"υπολογιστές ή εξυπηρετητές εκτυπώσεων. Παρακαλώ συνδέστε τον εκτυπωτή σας σε "
-"μια τοπική θύρα ή ρυθμίστε τον στο μηχάνημα που είναι συνδεδεμένος."
-
-#: printer/printerdrake.pm:3458
-#, fuzzy, c-format
-msgid "Samsung ML/QL-85G configuration"
-msgstr "Ρύθμιση ήχου"
-
-#: printer/printerdrake.pm:3459 printer/printerdrake.pm:3486
-#, fuzzy, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected on the "
-"first parallel port, no printers on remote machines or print server boxes or "
-"on other parallel ports. Please connect your printer to the first parallel "
-"port or configure it on the machine where it is connected to."
-msgstr ""
-"Οι οδηγοί των εκτυπωτών μελάνης που παρέχονται από τη Lexmark υποστηρίζουν "
-"μόνο τοπικούς εκτυπωτές, δεν υποστηρίζουν εκτυπωτές σε απομακρυσμένους "
-"υπολογιστές ή εξυπηρετητές εκτυπώσεων. Παρακαλώ συνδέστε τον εκτυπωτή σας σε "
-"μια τοπική θύρα ή ρυθμίστε τον στο μηχάνημα που είναι συνδεδεμένος."
-
-#: printer/printerdrake.pm:3485
-#, fuzzy, c-format
-msgid "Canon LBP-460/660 configuration"
-msgstr "Χειροκίνητη ρύθμιση"
-
-#: printer/printerdrake.pm:3512
-#, fuzzy, c-format
-msgid "Canon LBP-810/1120 (CAPT) configuration"
-msgstr "Χειροκίνητη ρύθμιση"
-
-#: printer/printerdrake.pm:3513
-#, fuzzy, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes or on the parallel "
-"port. Please connect your printer to the USB or configure it on the machine "
-"where it is directly connected to."
-msgstr ""
-"Οι οδηγοί των εκτυπωτών μελάνης που παρέχονται από τη Lexmark υποστηρίζουν "
-"μόνο τοπικούς εκτυπωτές, δεν υποστηρίζουν εκτυπωτές σε απομακρυσμένους "
-"υπολογιστές ή εξυπηρετητές εκτυπώσεων. Παρακαλώ συνδέστε τον εκτυπωτή σας σε "
-"μια τοπική θύρα ή ρυθμίστε τον στο μηχάνημα που είναι συνδεδεμένος."
-
-#: printer/printerdrake.pm:3520
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr ""
-
-#: printer/printerdrake.pm:3670
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:131
#, fuzzy, c-format
msgid ""
-"Printer default settings\n"
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press Enter to reboot.\n"
"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Εκτυπωτής εξ' ορισμού\n"
"\n"
-" Υψηλό."
-
-#: printer/printerdrake.pm:3795
-#, fuzzy, c-format
-msgid "Printer default settings"
-msgstr "Επιλογή μοντέλου εκτυπωτή"
-
-#: printer/printerdrake.pm:3802
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Η επιλογή %s πρέπει να είναι ακέραιος αριθμός!"
-
-#: printer/printerdrake.pm:3806
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Η επιλογή %s πρέπει να είναι αριθμός!"
-
-#: printer/printerdrake.pm:3810
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Επιλογή %s εκτός ορίου!"
-
-#: printer/printerdrake.pm:3862
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Θέλετε να ορίσετε αυτόν τον εκτυπωτή (\"%s\")\n"
-"σαν τον προεπιλεγμένο εκτυπωτή;"
-
-#: printer/printerdrake.pm:3878
-#, c-format
-msgid "Test pages"
-msgstr "Δοκιμαστικές σελίδες"
-
-#: printer/printerdrake.pm:3879
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Παρακαλώ επιλέξτε τις δοκιμαστικές σελίδες που θα εκτυπωθούν.\n"
-"Σημ.: Η δοκιμαστική σελίδα φωτογραφίας μπορεί να διαρκέσει αρκετό χρόνο για "
-"να εκτυπωθεί και σε εκτυπωτές laser με μικρή μνήμη μπορεί και να μην "
-"εκτυπωθεί. Στις περισσότερες περιπτώσεις η εκτύπωση τις τυπικής δοκιμαστικής "
-"σελίδας αρκεί."
-
-#: printer/printerdrake.pm:3883
-#, c-format
-msgid "No test pages"
-msgstr "Χωρίς δοκιμαστικές σελίδες"
-
-#: printer/printerdrake.pm:3884
-#, c-format
-msgid "Print"
-msgstr "Εκτύπωση"
-
-#: printer/printerdrake.pm:3909
-#, c-format
-msgid "Standard test page"
-msgstr "Τυπική δοκιμαστική σελίδα"
-
-#: printer/printerdrake.pm:3912
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Εναλλακτική δοκιμαστική σελίδα (Letter)"
-
-#: printer/printerdrake.pm:3915
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Εναλλακτική δοκιμαστική σελίδα (A4)"
-
-#: printer/printerdrake.pm:3917
-#, c-format
-msgid "Photo test page"
-msgstr "Δοκιμαστική σελίδα φωτογραφίας"
-
-#: printer/printerdrake.pm:3930
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Εκτύπωση δοκιμαστικών σελίδων..."
-
-#: printer/printerdrake.pm:3950
-#, fuzzy, c-format
-msgid "Skipping photo test page."
-msgstr "Δοκιμαστική σελίδα φωτογραφίας"
-
-#: printer/printerdrake.pm:3967
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Μία ή περισσότερες δοκιμαστικές σελίδες στάλθηκαν στον εκτυπωτή.\n"
-"Μπορεί να περάσει κάποιος χρόνος μέχρι η εκτύπωση να ξεκινήσει.\n"
-"Κατάσταση εκτύπωσης:\n"
-"%s\n"
+"For information on fixes which are available for this release of Mandriva "
+"Linux,\n"
+"consult the Errata available from:\n"
"\n"
-
-#: printer/printerdrake.pm:3971
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Μία ή περισσότερες δοκιμαστικές σελίδες στάλθηκαν στον εκτυπωτή.\n"
-"Μπορεί να περάσει κάποιος χρόνος μέχρι η εκτύπωση να ξεκινήσει.\n"
-
-#: printer/printerdrake.pm:3981
-#, c-format
-msgid "Did it work properly?"
-msgstr "Λειτούργησε σωστά;"
-
-#: printer/printerdrake.pm:4005
-#, c-format
-msgid "Raw printer"
-msgstr "Ακατέργαστος εκτυπωτής"
-
-#: printer/printerdrake.pm:4027
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Για να εκτυπώσετε από τη γραμμή εντολών (παράθυρο τερματικού) μπορείτε να "
-"κάνετε χρήση της εντολής \"%s <αρχείο>\" ή μπορείτε να κάνετε χρήση γραφικού "
-"εργαλείο εκτύπωσης: \"xpp <αρχείο>\" ή \" kprinter <αρχείο>\". Το γραφικό "
-"εργαλείο σας επιτρέπει να αλλάξετε εύκολα τις ρυθμίσεις επιλογών.\n"
-
-#: printer/printerdrake.pm:4029
-#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Τις εντολές αυτές μπορείτε επίσης να τις χρησιμοποιήσετε στο πεδίο \"Εντολή "
-"εκτυπώσεων\" των διαλόγων εκτυπώσεων σε πολλές εφαρμογές, αλλά μην παρέχετε "
-"το όνομα αρχείου εδώ επειδή το αρχείο προς εκτύπωση το παρέχει η εφαρμογή.\n"
-
-#: printer/printerdrake.pm:4032 printer/printerdrake.pm:4049
-#: printer/printerdrake.pm:4059
-#, c-format
-msgid ""
"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
+"%s\n"
"\n"
-"Η εντολή \"%s\" επίσης σας επιτρέπει να τροποποιήσετε τις ρυθμίσεις επιλογών "
-"για μια συγκεκριμένη εργασία εκτύπωσης. Απλά προσθέσετε τις επιθυμητές "
-"ρυθμίσεις στην γραμμή εντολών, π.χ. \"%s<αρχείο>\"."
-
-#: printer/printerdrake.pm:4035 printer/printerdrake.pm:4075
-#, fuzzy, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandriva Linux User's Guide."
msgstr ""
-"Για να μάθετε περισσότερα για τις διαθέσιμες εντολές για τον τρέχον εκτυπωτή "
-"διαβάστε την λίστα που φαίνετε παρακάτω ή κάντε κλικ στο \"Εκτύπωση λίστας "
-"επιλογών\"%s%s\n"
+"Συγχαρητήρια, η εγκατάσταση ολοκληρώθηκε.\n"
+"Αφαιρέστε την δισκέτα ή το CD εκκίνησης και πατήστε return για "
+"επανεκκίνηση.\n"
"\n"
-
-#: printer/printerdrake.pm:4039
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
"\n"
-msgstr ""
-"Αυτή είναι μια λίστα με τις διαθέσιμες επιλογές εκτύπωσης για τον τρέχον "
-"εκτυπωτή:\n"
+"Για πληροφορίες σχετικά με διορθώσεις αυτής της έκδοσης του Mandriva Linux,\n"
+"συμβουλευτείτε την σελίδα: \n"
"\n"
-
-#: printer/printerdrake.pm:4044 printer/printerdrake.pm:4054
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Για να εκτυπώσετε από τη γραμμή εντολών (παράθυρο τερματικού) κάντε χρήση "
-"της εντολής \"%s <αρχείο>\".\n"
-
-#: printer/printerdrake.pm:4046 printer/printerdrake.pm:4056
-#: printer/printerdrake.pm:4066
-#, fuzzy, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr "Εκτύπωση"
-
-#: printer/printerdrake.pm:4051 printer/printerdrake.pm:4061
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Για μια λίστα με τις διαθέσιμες εντολές για τον τρέχον εκτυπωτή κάντε κλικ "
-"στο πλήκτρο \"Εκτύπωση λίστας εντολών\"."
-
-#: printer/printerdrake.pm:4064
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Για να εκτυπώσετε από τη γραμμή εντολών (παράθυρο τερματικού) κάντε χρήση "
-"της εντολής \"%s <αρχείο>\" ή \"%s<αρχείο>\".\n"
-
-#: printer/printerdrake.pm:4068
-#, fuzzy, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
"\n"
-" Εκτυπωτής"
-
-#: printer/printerdrake.pm:4072
-#, c-format
-msgid ""
+"%s\n"
"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
"\n"
-" Επίσης οι εντολές \"%s\" και \"%s\" σας επιτρέπουν να ορίσετε τις ρυθμίσεις "
-"επιλογών για μια συγκεκριμένη εργασία εκτύπωσης. Απλά προσθέστε τις "
-"επιθυμητές ρυθμίσεις από την γραμμή εντολών, π.χ. \"%s <αρχείο>\".\n"
+"Πληροφορίες σχετικά με τις ρυθμίσεις του συστήματός σας υπάρχουν στο "
+"σχετικό\n"
+"κεφάλαιο του επίσημου οδηγού χρήσης του Mandriva Linux."
-#: printer/printerdrake.pm:4081
+#: modules/interactive.pm:19
#, fuzzy, c-format
-msgid "Using/Maintaining the printer \"%s\""
-msgstr "Εκτύπωση στον εκτυπωτή \"%s\""
-
-#: printer/printerdrake.pm:4082
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Εκτύπωση στον εκτυπωτή \"%s\""
-
-#: printer/printerdrake.pm:4088
-#, c-format
-msgid "Print option list"
-msgstr "Εκτύπωση λίστα επιλογών"
+msgid "This driver has no configuration parameter!"
+msgstr "Ρυθμίσεις κοινής χρήσης εκτυπωτών CUPS"
-#: printer/printerdrake.pm:4092
+#: modules/interactive.pm:22
#, fuzzy, c-format
-msgid "Printing option list..."
-msgstr "Εκτύπωση λίστα επιλογών"
-
-#: printer/printerdrake.pm:4110
-#, c-format
-msgid ""
-"Your %s is set up with HP's HPLIP driver software. This way many special "
-"features of your printer are supported.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4113
-#, c-format
-msgid ""
-"The scanner in your printer can be used with the usual SANE software, for "
-"example Kooka or XSane (Both in the Multimedia/Graphics menu). "
-msgstr ""
-
-#: printer/printerdrake.pm:4114
-#, c-format
-msgid ""
-"Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to "
-"share your scanner on the network.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4118
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed like a usual USB "
-"mass storage device. "
-msgstr ""
-
-#: printer/printerdrake.pm:4119
-#, c-format
-msgid ""
-"After inserting a card a hard disk icon to access the card should appear on "
-"your desktop.\n"
-"\n"
-msgstr ""
+msgid "Module configuration"
+msgstr "Χειροκίνητη ρύθμιση"
-#: printer/printerdrake.pm:4121
+#: modules/interactive.pm:22
#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed using HP's Printer "
-"Toolbox (Menu: System/Monitoring/HP Printer Toolbox) clicking the \"Access "
-"Photo Cards...\" button on the \"Functions\" tab. "
-msgstr ""
+msgid "You can configure each parameter of the module here."
+msgstr "Εδώ μπορείτε να ρυθμίσετε τις παραμέτρους του αρθρώματος."
-#: printer/printerdrake.pm:4122
+#: modules/interactive.pm:63
#, c-format
-msgid ""
-"Note that this is very slow, reading the pictures from the camera or a USB "
-"card reader is usually faster.\n"
-"\n"
-msgstr ""
+msgid "Found %s interfaces"
+msgstr "Βρέθηκαν %s προσαρμογείς"
-#: printer/printerdrake.pm:4125
+#: modules/interactive.pm:64
#, c-format
-msgid ""
-"HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a "
-"lot of status monitoring and maintenance functions for your %s:\n"
-"\n"
-msgstr ""
+msgid "Do you have another one?"
+msgstr "Έχετε άλλον;"
-#: printer/printerdrake.pm:4126
+#: modules/interactive.pm:65
#, c-format
-msgid " - Ink level/status info\n"
-msgstr ""
+msgid "Do you have any %s interfaces?"
+msgstr "Έχετε κάποιον προσαρμογέα %s;"
-#: printer/printerdrake.pm:4127
+#: modules/interactive.pm:71
#, c-format
-msgid " - Ink nozzle cleaning\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4128
-#, fuzzy, c-format
-msgid " - Print head alignment\n"
-msgstr "Οριζόντια στοίχιση:"
+msgid "See hardware info"
+msgstr "Προβολή πληροφοριών υλικού"
-#: printer/printerdrake.pm:4129
+#: modules/interactive.pm:82
#, fuzzy, c-format
-msgid " - Color calibration\n"
-msgstr "Ρύθμιση χρωμάτων"
-
-#: printer/printerdrake.pm:4170 printer/printerdrake.pm:4197
-#: printer/printerdrake.pm:4232
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Μεταφορά ρυθμίσεων εκτυπωτή"
+msgid "Installing driver for USB controller"
+msgstr "Εγκατάσταση οδηγού για %s κάρτα %s"
-#: printer/printerdrake.pm:4171
+#: modules/interactive.pm:83
#, fuzzy, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr "Ολοκληρώθηκε Όλα εξ' ορισμού\n"
-
-#: printer/printerdrake.pm:4174
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4176
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"Το PDQ υποστηρίζει μόνο τοπικούς εκτυπωτές, Απομακρυσμένος εκτυπωτές LPD και "
-"εκτυπωτές Sockete/TCP.\n"
-
-#: printer/printerdrake.pm:4178
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "Το LPD και το LPRng δεν υποστηρίζουν εκτυπωτές IPP.\n"
-
-#: printer/printerdrake.pm:4180
-#, c-format
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"Επίσης εργασίες που δεν δημιουργήθηκαν με αυτό το πρόγραμμα ή το \"foomatic-"
-"configure\" δεν μπορούν να μεταφερθούν."
-
-#: printer/printerdrake.pm:4181
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Επίσης εκτυπωτές που έχουν ρυθμιστεί με αρχεία PPD που παρέχονται από τους "
-"κατασκευαστές τους ή με τοπικούς οδηγούς CUPS δεν μπορούν να μεταφερθούν."
-
-#: printer/printerdrake.pm:4182
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Επιλέξτε τους εκτυπωτές που θέλετε να μεταφέρετε και κάντε\n"
-"κλικ στο \"Μεταφορά\"."
-
-#: printer/printerdrake.pm:4185
-#, c-format
-msgid "Do not transfer printers"
-msgstr "Χωρίς μεταφορά εκτυπωτών"
-
-#: printer/printerdrake.pm:4186 printer/printerdrake.pm:4202
-#, c-format
-msgid "Transfer"
-msgstr "Μεταφορά"
-
-#: printer/printerdrake.pm:4198
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Ένας εκτυπωτής με το όνομα \"%s\" υπάρχει ήδη στο %s\n"
-"Κάντε κλικ στο \"Μεταφορά\" για να τον επικαλύψετε.\n"
-"Επίσης μπορείτε να του δώσετε ένα νέο όνομα ή να τον παραβλέψετε ."
-
-#: printer/printerdrake.pm:4219
-#, c-format
-msgid "New printer name"
-msgstr "Κανένα όνομα εκτυπωτή"
-
-#: printer/printerdrake.pm:4222
-#, c-format
-msgid "Transferring %s..."
-msgstr "Μεταφέρεται ο %s..."
-
-#: printer/printerdrake.pm:4233
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"'Έχετε μεταφέρει τον πρώην προεπιλεγμένο εκτυπωτής σας (\"%s\"), Να είναι ο "
-"προεπιλεγμένος εκτυπωτής και στο νέο νέο σύστημα εκτύπωσης %s;"
-
-#: printer/printerdrake.pm:4243
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Ανανέωση δεδομένων εκτυπωτή..."
-
-#: printer/printerdrake.pm:4253
-#, c-format
-msgid "Starting network..."
-msgstr "Εκκίνηση δικτύου..."
-
-#: printer/printerdrake.pm:4296 printer/printerdrake.pm:4300
-#: printer/printerdrake.pm:4302
-#, c-format
-msgid "Configure the network now"
-msgstr "Ρύθμιση δικτύου τώρα"
-
-#: printer/printerdrake.pm:4297
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Η λειτουργικότητα του δικτύου δεν ρυθμίστηκε"
-
-#: printer/printerdrake.pm:4298
-#, c-format
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"Θα ρυθμίσετε έναν απομακρυσμένο εκτυπωτή. Αυτό απαιτεί ένα προσβάσιμο "
-"δίκτυο, αλλά το δίκτυο δεν έχει ρυθμιστεί ακόμα. Αν συνεχίσετε χωρίς να "
-"ρυθμίσετε το δίκτυο δεν θα μπορέσετε να κάνετε χρήση του εκτυπωτή που "
-"ρυθμίζετε. Τι θέλετε να κάνετε;"
-
-#: printer/printerdrake.pm:4301
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Συνέχιση χωρίς την ρύθμιση του δικτύου"
+msgid "Installing driver for firewire controller %s"
+msgstr "Εγκατάσταση οδηγού για %s κάρτα %s"
-#: printer/printerdrake.pm:4332
+#: modules/interactive.pm:84
#, fuzzy, c-format
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network is accessible after booting your "
-"system and correct the configuration using the %s Control Center, section "
-"\"Network & Internet\"/\"Connection\", and afterwards set up the printer, "
-"also using the %s Control Center, section \"Hardware\"/\"Printer\""
-msgstr ""
-"Η ρύθμιση δικτύου που έγινε κατά τη διάρκεια της εγκατάστασης δεν ήταν "
-"δυνατόν να εκκινηθεί. Παρακαλώ ελέγξτε εάν το δίκτυο είναι προσβάσιμο μετά "
-"την εκκίνηση και διορθώστε τις ρυθμίσεις με την χρήση του Κέντρου Ελέγχου "
-"της Mandriva, στο τμήμα \"Δίκτυο & Διαδίκτυο\" / \"Σύνδεση\" και μετά "
-"ρυθμίστε τον εκτυπωτή επίσης με το Κέντρο Ελέγχου Mandriva στο τμήμα \"Υλικό"
-"\"/\"Εκτυπωτής\""
-
-#: printer/printerdrake.pm:4333
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Η πρόσβαση δικτύου δεν εκτελείτο και δεν μπόρεσε να εκκινηθεί. Παρακαλώ "
-"ελέγξτε την ρύθμιση του υλικού σας. Μετά προσπαθήστε να ρυθμίσετε τον "
-"απομακρυσμένο εκτυπωτή σας."
-
-#: printer/printerdrake.pm:4343
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Επανεκκίνηση του συστήματος εκτύπωσης..."
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "high"
-msgstr "Υψηλό"
-
-#: printer/printerdrake.pm:4374
-#, c-format
-msgid "paranoid"
-msgstr "Παρανοϊκό"
-
-#: printer/printerdrake.pm:4376
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Εγκατάσταση συστήματος εκτύπωσης στο επίπεδο ασφάλειας %s"
-
-#: printer/printerdrake.pm:4377
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessible by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Πρόκειται να εγκαταστήσετε το σύστημα εκτύπωσης %s σε ένα σύστημα που έχει "
-"επίπεδο ασφαλείας %s\n"
-"\n"
-"Αυτό το σύστημα εκτύπωσης εκτελεί έναν δαίμονα (διεργασία στο φόντο) που "
-"περιμένει τις εργασίες εκτύπωσης και τις διαχειρίζεται. Αυτός ο δαίμονας "
-"είναι επίσης προσβάσιμος από ένα απομακρυσμένο μηχάνημα από το δίκτυο και "
-"επίσης είναι ένα εν δυνάμει σημείο επίθεσης. Για αυτό ένας περιορισμένος "
-"αριθμός δαιμόνων ξεκινά εξ ορισμού σε αυτό το επίπεδο ασφαλείας.\n"
-"\n"
-"Είστε βέβαιοι ότι θέλετε να ρυθμίσετε την εκτύπωση σε αυτό το μηχάνημα;"
-
-#: printer/printerdrake.pm:4413
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Εκκίνηση του συστήματος εκτύπωσης κατά την εκκίνηση"
-
-#: printer/printerdrake.pm:4414
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"Το σύστημα εκτύπωσης (%s) δεν θα ξεκινά αυτόματα κατά την εκκίνηση του "
-"μηχανήματος\n"
-"\n"
-"Υπάρχει η πιθανότητα να έχει απενεργοποιηθεί η αυτόματη εκκίνηση με την "
-"αλλαγή σε υψηλότερο επίπεδο ασφαλείας, επειδή το σύστημα εκτύπωσης είναι ένα "
-"εν δυνάμει σημείο επίθεσης\n"
-"\n"
-"Θέλετε να ξαναενεργοποιηθεί η αυτόματη εκκίνηση του συστήματος εκτύπωσης;"
-
-#: printer/printerdrake.pm:4437
-#, c-format
-msgid "Checking installed software..."
-msgstr "'Έλεγχος εγκατεστημένων προγραμμάτων..."
-
-#: printer/printerdrake.pm:4443
-#, c-format
-msgid "Removing %s..."
-msgstr "Αφαιρείται ο %s..."
+msgid "Installing driver for hard drive controller %s"
+msgstr "Εγκατάσταση οδηγού για %s κάρτα %s"
-#: printer/printerdrake.pm:4447
+#: modules/interactive.pm:85
#, fuzzy, c-format
-msgid "Could not remove the %s printing system!"
-msgstr "Αλλαγή συστήματος εκτύπωσης"
+msgid "Installing driver for ethernet controller %s"
+msgstr "Εγκατάσταση οδηγού για %s κάρτα %s"
-#: printer/printerdrake.pm:4471
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: modules/interactive.pm:96
#, c-format
-msgid "Installing %s..."
-msgstr "Εγκατάσταση %s ..."
-
-#: printer/printerdrake.pm:4475
-#, fuzzy, c-format
-msgid "Could not install the %s printing system!"
-msgstr "Αλλαγή συστήματος εκτύπωσης"
+msgid "Installing driver for %s card %s"
+msgstr "Εγκατάσταση οδηγού για %s κάρτα %s"
-#: printer/printerdrake.pm:4543
+#: modules/interactive.pm:110
#, c-format
msgid ""
-"In this mode there is no local printing system, all printing requests go "
-"directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
+"You may now provide options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
+"Μπορείτε τώρα να δώσετε τις παραμέτρους για το άρθρωμα %s.\n"
+"Σημειώστε ότι κάθε διεύθυνση πρέπει να εισάγεται με το πρόθεμα 0x όπως "
+"'0x123'"
-#: printer/printerdrake.pm:4545
+#: modules/interactive.pm:116
#, c-format
msgid ""
-"Enter the host name or IP of your CUPS server and click OK if you want to "
-"use this mode, click \"Quit\" otherwise."
-msgstr ""
-
-#: printer/printerdrake.pm:4559
-#, fuzzy, c-format
-msgid "Name or IP of remote server:"
-msgstr "Απομακρυσμένος εκτυπωτής σε εξυπηρετητή lpd"
-
-#: printer/printerdrake.pm:4579
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Ορισμός Προεπιλεγμένου Εκτυπωτή..."
-
-#: printer/printerdrake.pm:4599
-#, fuzzy, c-format
-msgid "Local CUPS printing system or remote CUPS server?"
-msgstr "Απομακρυσμένος εκτυπωτής σε εξυπηρετητή CUPS"
-
-#: printer/printerdrake.pm:4600
-#, c-format
-msgid "The CUPS printing system can be used in two ways: "
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
msgstr ""
+"Μπορείτε τώρα να δώσετε τις παραμέτρους για το άρθρωμα %s.\n"
+"Οι παράμετροι έχουν την μορφή ``όνομα=τιμή όνομα2=τιμή2 ...''.\n"
+"Για παράδειγμα, ``io=0x300 irq=7''"
-#: printer/printerdrake.pm:4602
+#: modules/interactive.pm:118
#, c-format
-msgid "1. The CUPS printing system can run locally. "
-msgstr ""
+msgid "Module options:"
+msgstr "Επιλογές αρθρώματος:"
-#: printer/printerdrake.pm:4603
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: modules/interactive.pm:131
#, c-format
-msgid ""
-"Then locally connected printers can be used and remote printers on other "
-"CUPS servers in the same network are automatically discovered. "
-msgstr ""
+msgid "Which %s driver should I try?"
+msgstr "Ποιόν οδηγό %s να δοκιμάσω;"
-#: printer/printerdrake.pm:4604
+#: modules/interactive.pm:140
#, c-format
msgid ""
-"Disadvantage of this approach is, that more resources on the local machine "
-"are needed: Additional software packages need to be installed, the CUPS "
-"daemon has to run in the background and needs some memory, and the IPP port "
-"(port 631) is opened. "
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without them. Would you like to "
+"specify\n"
+"extra options for it or allow the driver to probe your machine for the\n"
+"information it needs? Occasionally, probing will hang a computer, but it "
+"should\n"
+"not cause any damage."
msgstr ""
+"Σε μερικές περιπτώσεις, ο οδηγός %s χρειάζεται επιπλέον παραμέτρους για\n"
+"να λειτουργήσει σωστά, παρ' όλο που συνήθως λειτουργεί και χωρίς αυτές.\n"
+"Θα θέλατε να δώσετε επιπλέον επιλογές ή να αφήσετε τον οδηγό να εξετάσει\n"
+"το υλικό σας για τις παραμέτρους που χρειάζεται; Η εξέταση αυτή ίσως\n"
+"προκαλέσει πάγωμα του συστήματος, αλλά δεν θα προκαλέσει βλάβη."
-#: printer/printerdrake.pm:4606
+#: modules/interactive.pm:144
#, c-format
-msgid "2. All printing requests are immediately sent to a remote CUPS server. "
-msgstr ""
+msgid "Autoprobe"
+msgstr "Αυτόματη εξέταση"
-#: printer/printerdrake.pm:4607
+#: modules/interactive.pm:144
#, c-format
-msgid ""
-"Here local resource occupation is reduced to a minimum. No CUPS daemon is "
-"started or port opened, no software infrastructure for setting up local "
-"print queues is installed, so less memory and disk space is used. "
-msgstr ""
+msgid "Specify options"
+msgstr "Προσδιορισμός παραμέτρων"
-#: printer/printerdrake.pm:4608
+#: modules/interactive.pm:156
#, c-format
msgid ""
-"Disadvantage is that it is not possible to define local printers then and if "
-"the specified server is down it cannot be printed at all from this machine. "
-msgstr ""
-
-#: printer/printerdrake.pm:4610
-#, c-format
-msgid "How should CUPS be set up on your machine?"
-msgstr ""
-
-#: printer/printerdrake.pm:4614 printer/printerdrake.pm:4629
-#: printer/printerdrake.pm:4633 printer/printerdrake.pm:4639
-#, c-format
-msgid "Remote server, specify Name or IP here:"
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
+"Η φόρτωση του αρθρώματος %s απέτυχε.\n"
+"Θέλετε να δοκιμάσετε ξανά με διαφορετικές παραμέτρους;"
-#: printer/printerdrake.pm:4628
-#, fuzzy, c-format
-msgid "Local CUPS printing system"
-msgstr "Αλλαγή συστήματος εκτύπωσης"
-
-#: printer/printerdrake.pm:4667
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Επιλογή Spooler Εκτυπωτή"
-
-#: printer/printerdrake.pm:4668
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Ποιο σύστημα εκτύπωσης θέλετε να χρησιμοποιήσετε;"
-
-#: printer/printerdrake.pm:4717
+#: partition_table.pm:390
#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Απέτυχε η ρύθμιση του εκτυπωτή \"%s\"!"
+msgid "mount failed: "
+msgstr "σύνδεση απέτυχε: "
-#: printer/printerdrake.pm:4732
+#: partition_table.pm:500
#, c-format
-msgid "Installing Foomatic..."
-msgstr "Εγκατάσταση Foomatic..."
+msgid "Extended partition not supported on this platform"
+msgstr "Η εκτεταμένη κατάτμηση δεν υποστηρίζεται σε αυτόν τον τύπο συστήματος"
-#: printer/printerdrake.pm:4738
+#: partition_table.pm:518
#, c-format
-msgid "Could not install %s packages, %s cannot be started!"
-msgstr ""
-
-#: printer/printerdrake.pm:4933
-#, fuzzy, c-format
msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it. "
-msgstr ""
-"Oι παρακάτω εκτυπωτές έχουν ρυθμιστεί. Κάντε διπλό κλικ σε έναν εκτυπωτή για "
-"να αλλάξετε τις ρυθμίσεις του, να τον ορίσετε ως προεπιλεγμένο ή για να "
-"προβάλετε πληροφορίες για αυτόν."
-
-#: printer/printerdrake.pm:4963
-#, fuzzy, c-format
-msgid "Display all available remote CUPS printers"
-msgstr ""
-"Ανανέωση λίστας εκτυπωτών ( για να εμφανίσει όλους τους διαθέσιμους "
-"απομακρυσμένους εκτυπωτές)"
-
-#: printer/printerdrake.pm:4964
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
+"You have a hole in your partition table but I can not use it.\n"
+"The only solution is to move your primary partitions to have the hole next "
+"to the extended partitions."
msgstr ""
-"Ανανέωση λίστας εκτυπωτών ( για να εμφανίσει όλους τους διαθέσιμους "
-"απομακρυσμένους εκτυπωτές)"
-
-#: printer/printerdrake.pm:4975
-#, c-format
-msgid "CUPS configuration"
-msgstr "Ρύθμιση CUPS"
-
-#: printer/printerdrake.pm:4996
-#, c-format
-msgid "Change the printing system"
-msgstr "Αλλαγή συστήματος εκτύπωσης"
+"Υπάρχει ένα κενό στον πίνακα κατατμήσεων μα δεν μπορώ να το χρησιμοποιήσω.\n"
+"Η μοναδική λύση είναι να μετακινήσετε τις πρωτεύουσες κατατμήσεις σας έτσι "
+"ώστε το κενό να βρεθεί δίπλα στην εκτεταμένη κατάτμηση"
-#: printer/printerdrake.pm:5005
+#: partition_table.pm:597
#, c-format
-msgid "Normal Mode"
-msgstr "Κανονική Κατάσταση"
+msgid "Error reading file %s"
+msgstr "Σφάλμα κατά την ανάγνωση του αρχείου %s"
-#: printer/printerdrake.pm:5006
+#: partition_table.pm:604
#, c-format
-msgid "Expert Mode"
-msgstr "Για Προχωρημένους"
+msgid "Restoring from file %s failed: %s"
+msgstr "Η επαναφορά από το αρχείο %s απέτυχε: %s"
-#: printer/printerdrake.pm:5284 printer/printerdrake.pm:5340
-#: printer/printerdrake.pm:5426 printer/printerdrake.pm:5435
+#: partition_table.pm:606
#, c-format
-msgid "Printer options"
-msgstr "Επιλογές εκτυπωτή"
+msgid "Bad backup file"
+msgstr "Κατεστραμμένο εφεδρικό αρχείο"
-#: printer/printerdrake.pm:5320
+#: partition_table.pm:626
#, c-format
-msgid "Modify printer configuration"
-msgstr "Αλλαγή ρυθμίσεων εκτυπωτή"
+msgid "Error writing to file %s"
+msgstr "Σφάλμα εγγραφής στο αρχείο %s"
-#: printer/printerdrake.pm:5322
+#: partition_table/raw.pm:264
#, c-format
msgid ""
-"Printer %s%s\n"
-"What do you want to modify on this printer?"
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random, corrupted "
+"data."
msgstr ""
-"Εκτυπωτής %s%s\n"
-"Τι θέλετε να αλλάξετε σε αυτόν τον εκτυπωτή;"
-
-#: printer/printerdrake.pm:5327
-#, fuzzy, c-format
-msgid "This printer is disabled"
-msgstr "Αυτή η κατάτμηση δεν μπορεί ν' αλλάξει μέγεθος."
-
-#: printer/printerdrake.pm:5329
-#, c-format
-msgid "Do it!"
-msgstr "Καν' το!"
-
-#: printer/printerdrake.pm:5335 printer/printerdrake.pm:5400
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Όνομα εκτυπωτή, περιγραφή, θέση"
-
-#: printer/printerdrake.pm:5337 printer/printerdrake.pm:5419
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Κατασκευαστή εκτυπωτή, μοντέλο, οδηγό"
-
-#: printer/printerdrake.pm:5338 printer/printerdrake.pm:5420
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Κατασκευαστή εκτυπωτή, μοντέλο"
-
-#: printer/printerdrake.pm:5342 printer/printerdrake.pm:5430
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Ορισμός αυτού του εκτυπωτή ως προεπιλεγμένου"
-
-#: printer/printerdrake.pm:5347 printer/printerdrake.pm:5436
-#: printer/printerdrake.pm:5438 printer/printerdrake.pm:5447
-#, fuzzy, c-format
-msgid "Enable Printer"
-msgstr "Ενεργοποίηση Εξυπηρετητή"
-
-#: printer/printerdrake.pm:5350 printer/printerdrake.pm:5441
-#: printer/printerdrake.pm:5442 printer/printerdrake.pm:5444
-#, fuzzy, c-format
-msgid "Disable Printer"
-msgstr "Απενεργοποίηση Εξυπηρετητή"
-
-#: printer/printerdrake.pm:5354 printer/printerdrake.pm:5448
-#, fuzzy, c-format
-msgid "Printer communication error handling"
-msgstr "Τύπο σύνδεση εκτυπωτή"
-
-#: printer/printerdrake.pm:5355 printer/printerdrake.pm:5452
-#, c-format
-msgid "Print test pages"
-msgstr "Εκτύπωση δοκιμαστικών σελίδων"
-
-#: printer/printerdrake.pm:5356 printer/printerdrake.pm:5454
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Μάθετε πως να χειρισθείτε αυτόν τον εκτυπωτή"
-
-#: printer/printerdrake.pm:5357 printer/printerdrake.pm:5456
-#, c-format
-msgid "Remove printer"
-msgstr "Αφαίρεση εκτυπωτή"
-
-#: printer/printerdrake.pm:5408
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Αφαίρεση παλαιού εκτυπωτή \"%s\"..."
-
-#: printer/printerdrake.pm:5439
-#, fuzzy, c-format
-msgid "Printer \"%s\" is now enabled."
-msgstr "Εκτυπωτής \"%s\"στον εξυπηρετητή \"%s\""
-
-#: printer/printerdrake.pm:5445
-#, fuzzy, c-format
-msgid "Printer \"%s\" is now disabled."
-msgstr "Η Κοινή Σύνδεση Διαδικτύου τώρα απενεργοποιήθηκε."
-
-#: printer/printerdrake.pm:5487
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Είστε βέβαιοι για την αφαίρεση του εκτυπωτή \"%s\";"
-
-#: printer/printerdrake.pm:5491
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Γίνεται αφαίρεση του εκτυπωτή \"%s\"..."
-
-#: printer/printerdrake.pm:5515
-#, c-format
-msgid "Default printer"
-msgstr "Προεπιλεγμένος εκτυπωτής"
-
-#: printer/printerdrake.pm:5516
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Ο εκτυπωτής \"%s\" είναι πλέον ο προεπιλεγμένος εκτυπωτής."
+"Κάτι κακό συμβαίνει στο δίσκο σας. \n"
+"Ένα τεστ ελέγχου της ακεραιότητας των δεδομένων απέτυχε. \n"
+"Αυτό σημαίνει πως η οποιαδήποτε εγγραφή στο δίσκο θα καταλήξει σαν τυχαία "
+"σκουπίδια."
#: raid.pm:42
#, fuzzy, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "Δεν μπορώ να προσθέσω κατάτμηση στο _μορφοποιημένο_ RAID md%d"
-#: raid.pm:148
+#: raid.pm:150
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Δεν υπάρχουν αρκετές κατατμήσεις για RAID επιπέδου %d\n"
-#: scanner.pm:96
+#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr ""
-#: scanner.pm:107
+#: scanner.pm:106
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr ""
-#: scanner.pm:114
+#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr ""
-#: scanner.pm:121
+#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr ""
-#: scanner.pm:200 standalone/scannerdrake:66 standalone/scannerdrake:70
-#: standalone/scannerdrake:78 standalone/scannerdrake:321
-#: standalone/scannerdrake:370 standalone/scannerdrake:463
-#: standalone/scannerdrake:507 standalone/scannerdrake:511
-#: standalone/scannerdrake:533 standalone/scannerdrake:598
+#: scanner.pm:199
#, c-format
msgid "Scannerdrake"
msgstr "Scannerdrake"
-#: scanner.pm:201 standalone/scannerdrake:964
+#: scanner.pm:200
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""
-#: scanner.pm:202
+#: scanner.pm:201
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr ""
@@ -14804,7 +5112,7 @@ msgstr ""
#: security/help.pm:13
#, fuzzy, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
+msgid "Accept/Refuse broadcasted icmp echo."
msgstr ""
"\n"
"\n"
@@ -14812,7 +5120,7 @@ msgstr ""
#: security/help.pm:15
#, fuzzy, c-format
-msgid " Accept/Refuse icmp echo."
+msgid "Accept/Refuse icmp echo."
msgstr ""
"\n"
"\n"
@@ -14959,7 +5267,7 @@ msgid ""
"\"%s\" is true, also reports to syslog."
msgstr ""
-#: security/help.pm:80 standalone/draksec:215
+#: security/help.pm:80
#, c-format
msgid "Security Alerts:"
msgstr "Ειδοποιήσεις Ασφαλείας:"
@@ -14990,7 +5298,8 @@ msgstr ""
#: security/help.pm:90
#, fuzzy, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"Enable su only from members of the wheel group. If set to no, allows su from "
+"any user."
msgstr ""
"\n"
"\n"
@@ -15008,7 +5317,7 @@ msgstr ""
#: security/help.pm:96
#, fuzzy, c-format
-msgid " Activate/Disable daily security check."
+msgid "Activate/Disable daily security check."
msgstr ""
"\n"
"\n"
@@ -15016,7 +5325,7 @@ msgstr ""
#: security/help.pm:98
#, fuzzy, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
+msgid "Enable/Disable sulogin(8) in single user level."
msgstr ""
"\n"
"\n"
@@ -15291,7 +5600,7 @@ msgstr ""
#: security/l10n.pm:32
#, fuzzy, c-format
-msgid "Enable su only from the wheel group members or for any user"
+msgid "Enable su only from the wheel group members"
msgstr ""
"\n"
"\n"
@@ -15425,7 +5734,7 @@ msgstr "αν οριστεί ναι, εκτέλεση ελέγχων chkrootkit"
#: security/l10n.pm:57
#, c-format
-msgid "Do not send mails when unneeded"
+msgid "Do not send empty mail reports"
msgstr ""
#: security/l10n.pm:58
@@ -15465,6 +5774,11 @@ msgstr "Καλώς ορίσατε στους Crackers"
msgid "Poor"
msgstr "Φτωχό"
+#: security/level.pm:12
+#, c-format
+msgid "Standard"
+msgstr "Τυπικό"
+
#: security/level.pm:13
#, c-format
msgid "High"
@@ -15546,6 +5860,11 @@ msgstr ""
#: security/level.pm:55
#, c-format
+msgid "Security"
+msgstr "Ασφάλεια"
+
+#: security/level.pm:55
+#, c-format
msgid "DrakSec Basic Options"
msgstr "Βασικές Επιλογές DrakSec"
@@ -15920,52 +6239,67 @@ msgstr ""
"Ξεκινάει την υπηρεσία εξυπηρετητή γραμματοσειρών X (αυτό είναι απαραίτητο "
"για να εκτελεστεί το Xorg)."
-#: services.pm:115 services.pm:157
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Επιλέξτε τις υπηρεσίες που θα ξεκινούν αυτόματα κατά την εκκίνηση"
-
-#: services.pm:127 standalone/draksambashare:111
+#: services.pm:114
#, c-format
msgid "Printing"
msgstr "Εκτύπωση"
-#: services.pm:128
+#: services.pm:115
#, c-format
msgid "Internet"
msgstr "Διαδίκτυο"
-#: services.pm:131
+#: services.pm:118
#, c-format
msgid "File sharing"
msgstr "Κοινόχρηστα αρχεία"
-#: services.pm:138
+#: services.pm:120
+#, c-format
+msgid "System"
+msgstr "Σύστημα"
+
+#: services.pm:125
#, c-format
msgid "Remote Administration"
msgstr "Απομακρυσμένη διαχείριση"
-#: services.pm:146
+#: services.pm:133
#, c-format
msgid "Database Server"
msgstr "Εξυπηρετητής Βάσης Δεδομένων"
-#: services.pm:209
+#: services.pm:144 services.pm:180
+#, c-format
+msgid "Services"
+msgstr "Υπηρεσίες"
+
+#: services.pm:144
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Επιλέξτε τις υπηρεσίες που θα ξεκινούν αυτόματα κατά την εκκίνηση"
+
+#: services.pm:162
+#, c-format
+msgid "Services: %d activated for %d registered"
+msgstr "Υπηρεσίες: %d ενεργοποιημένες για %d εγγεγραμμένες"
+
+#: services.pm:196
#, c-format
msgid "running"
msgstr "εκτελείται"
-#: services.pm:209
+#: services.pm:196
#, c-format
msgid "stopped"
msgstr "δεν εκτελείται"
-#: services.pm:213
+#: services.pm:201
#, c-format
msgid "Services and daemons"
msgstr "Υπηρεσίες και δαίμονες"
-#: services.pm:219
+#: services.pm:207
#, c-format
msgid ""
"No additional information\n"
@@ -15974,479 +6308,32 @@ msgstr ""
"Χωρίς επιπλέον πληροφορίες\n"
"για αυτή την υπηρεσία."
-#: services.pm:224 ugtk2.pm:1009
+#: services.pm:212 ugtk2.pm:898
#, c-format
msgid "Info"
msgstr "Πληροφορίες"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "Start when requested"
msgstr ""
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "On boot"
msgstr "Στην εκκίνηση"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Start"
msgstr "Εκκίνηση"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Stop"
msgstr "Τερματισμός"
-#: share/advertising/01.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Packs"
-msgstr ""
-
-#: share/advertising/02.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More features"
-msgstr ""
-
-#: share/advertising/03.pl:3
-#, c-format
-msgid "Interactive firewall"
-msgstr ""
-
-#: share/advertising/04.pl:3
-#, c-format
-msgid "Desktop search"
-msgstr ""
-
-#: share/advertising/05.pl:3
-#, c-format
-msgid "New package manager"
-msgstr ""
-
-#: share/advertising/06.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More performances"
-msgstr ""
-
-#: share/advertising/07.pl:3
-#, c-format
-msgid "Latest kernel and GCC"
-msgstr ""
-
-#: share/advertising/08.pl:3
-#, c-format
-msgid "High Availibility"
-msgstr ""
-
-#: share/advertising/09.pl:3
-#, c-format
-msgid "Delta RPM"
-msgstr ""
-
-#: share/advertising/10.pl:3
-#, c-format
-msgid "Low resources setup"
-msgstr ""
-
-#: share/advertising/11.pl:3
-#, c-format
-msgid "Boot time reduction"
-msgstr ""
-
-#: share/advertising/12.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Easier to use"
-msgstr ""
-
-#: share/advertising/13.pl:3
-#, c-format
-msgid "Latest graphical interfaces: KDE and GNOME"
-msgstr ""
-
-#: share/advertising/14.pl:3
-#, c-format
-msgid "auto-installation servers"
-msgstr ""
-
-#: share/advertising/15.pl:3
-#, c-format
-msgid "Easy and quick installation"
-msgstr ""
-
-#: share/advertising/16.pl:3
-#, c-format
-msgid "Easy configuration thanks to 60 wizards"
-msgstr ""
-
-#: share/advertising/17.pl:3
-#, c-format
-msgid "Look and feel improved"
-msgstr ""
-
-#: share/advertising/18.pl:3
-#, c-format
-msgid "New webmin theme"
-msgstr ""
-
-#: share/advertising/19.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More support"
-msgstr ""
-
-#: share/advertising/20.pl:3
-#, c-format
-msgid "Better Hardware support"
-msgstr ""
-
-#: share/advertising/21.pl:3
-#, c-format
-msgid "Xen support"
-msgstr ""
-
-#: share/advertising/22.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More information"
-msgstr ""
-
-#: share/advertising/23.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Where to buy?"
-msgstr ""
-
-#: share/advertising/24.pl:3
-#, c-format
-msgid "Where to find technical assistance?"
-msgstr ""
-
-#: share/advertising/25.pl:3
-#, c-format
-msgid "How to join the Mandriva Linux community?"
-msgstr ""
-
-#: share/advertising/26.pl:3
-#, c-format
-msgid "How to keep your system up-to-date?"
-msgstr ""
-
-#: share/advertising/intel.pl:3
-#, c-format
-msgid "Intel Software"
-msgstr ""
-
-#: share/advertising/skype.pl:3
-#, c-format
-msgid "Skype lets you make calls through the Internet for free."
-msgstr ""
-
-#: share/compssUsers.pl:26
-#, c-format
-msgid "Office Workstation"
-msgstr "Σταθμός Εργασίας Γραφείου"
-
-#: share/compssUsers.pl:28
-#, c-format
-msgid ""
-"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
-"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
-msgstr ""
-"Εργαλεία γραφείου: Επεξεργαστές κειμένου(OpenOffice.org Writer, Kword), "
-"λογιστικά φύλλα (OpenOffice.org Calc, Kspread), αρχεία pdf κλπ"
-
-#: share/compssUsers.pl:29
-#, c-format
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Εργαλεία γραφείου: Επεξεργαστές κειμένου(kword, abiword), λογιστικά φύλλα "
-"(kspread, gnumeric), αρχεία pdf κλπ"
-
-#: share/compssUsers.pl:34
-#, c-format
-msgid "Game station"
-msgstr "Σταθμός παιχνιδιών"
-
-#: share/compssUsers.pl:35
-#, c-format
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Διασκέδαση (παιχνίδια)"
-
-#: share/compssUsers.pl:38
-#, c-format
-msgid "Multimedia station"
-msgstr "Σταθμός πολυμέσων"
-
-#: share/compssUsers.pl:39
-#, c-format
-msgid "Sound and video playing/editing programs"
-msgstr "Προγράμματα αναπαραγωγής και διαχείρισης video και ήχου"
-
-#: share/compssUsers.pl:44
-#, c-format
-msgid "Internet station"
-msgstr "Σταθμός Διαδικτύου"
-
-#: share/compssUsers.pl:45
-#, fuzzy, c-format
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Εργαλεία για αποστολή και λήψη αλληλογραφίας και ειδήσεων (pine, mutt, "
-"tin...) και περιήγηση στο Διαδίκτυο"
-
-#: share/compssUsers.pl:50
-#, c-format
-msgid "Network Computer (client)"
-msgstr "Υπολογιστής Δικτύου (πελάτης)"
-
-#: share/compssUsers.pl:51
-#, c-format
-msgid "Clients for different protocols including ssh"
-msgstr "Πελάτες για διαφορετικά πρωτόκολλα συμπεριλαμβανομένου του ssh"
-
-#: share/compssUsers.pl:55
-#, c-format
-msgid "Configuration"
-msgstr "Ρύθμιση"
-
-#: share/compssUsers.pl:56
-#, c-format
-msgid "Tools to ease the configuration of your computer"
-msgstr "Εργαλεία για διευκόλυνση της ρύθμισης του υπολογιστή σας"
-
-#: share/compssUsers.pl:60
-#, c-format
-msgid "Console Tools"
-msgstr "Εργαλεία Κονσόλας"
-
-#: share/compssUsers.pl:61
-#, c-format
-msgid "Editors, shells, file tools, terminals"
-msgstr "Επεξεργαστές κειμένου, κελύφη, εργαλεία αρχείων, τερματικά"
-
-#: share/compssUsers.pl:66 share/compssUsers.pl:170
-#, c-format
-msgid "C and C++ development libraries, programs and include files"
-msgstr "Βιβλιοθήκες ανάπτυξης C και C++, προγράμματα και άλλα αρχεία"
-
-#: share/compssUsers.pl:70 share/compssUsers.pl:174
-#, c-format
-msgid "Documentation"
-msgstr "Τεκμηρίωση"
-
-#: share/compssUsers.pl:71 share/compssUsers.pl:175
-#, c-format
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Βιβλία και οδηγοί για το Linux και το Ελεύθερο Λογισμικό"
-
-#: share/compssUsers.pl:75 share/compssUsers.pl:178
-#, c-format
-msgid "LSB"
-msgstr "LSB"
-
-#: share/compssUsers.pl:76 share/compssUsers.pl:179
-#, c-format
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Linux Standard Base. Υποστήριξη εφαρμογών τρίτων"
-
-#: share/compssUsers.pl:86
-#, c-format
-msgid "Apache"
-msgstr "Apache"
-
-#: share/compssUsers.pl:89
-#, fuzzy, c-format
-msgid "Groupware"
-msgstr "oμάδα"
-
-#: share/compssUsers.pl:90
-#, c-format
-msgid "Kolab Server"
-msgstr "Εξυπηρετητής του Kolab"
-
-#: share/compssUsers.pl:93 share/compssUsers.pl:134
-#, c-format
-msgid "Firewall/Router"
-msgstr "Τοίχος Προστασίας/Δρομολογητής"
-
-#: share/compssUsers.pl:94 share/compssUsers.pl:135
-#, c-format
-msgid "Internet gateway"
-msgstr "Πύλη Διαδικτύου"
-
-#: share/compssUsers.pl:97
-#, fuzzy, c-format
-msgid "Mail/News"
-msgstr "/Αρχείο/_Νέο"
-
-#: share/compssUsers.pl:98
-#, fuzzy, c-format
-msgid "Postfix mail server, Inn news server"
-msgstr "Εξυπηρετητής ταχυδρομείου Postfix"
-
-#: share/compssUsers.pl:101
-#, fuzzy, c-format
-msgid "Directory Server"
-msgstr "Επαναφορά από CD"
-
-#: share/compssUsers.pl:105
-#, c-format
-msgid "FTP Server"
-msgstr "Διακομιστής FTP"
-
-#: share/compssUsers.pl:106
-#, c-format
-msgid "ProFTPd"
-msgstr ""
-
-#: share/compssUsers.pl:109
-#, c-format
-msgid "DNS/NIS"
-msgstr "DNS/NIS"
-
-#: share/compssUsers.pl:110
-#, c-format
-msgid "Domain Name and Network Information Server"
-msgstr "Εξυπηρετητής Όνομα Τομέα και Πληροφοριών Δικτύου"
-
-#: share/compssUsers.pl:113
-#, fuzzy, c-format
-msgid "File and Printer Sharing Server"
-msgstr "Εξυπηρετητής Εκτυπώσεων"
-
-#: share/compssUsers.pl:114
-#, fuzzy, c-format
-msgid "NFS Server, Samba server"
-msgstr "Εξυπηρετητής Samba"
-
-#: share/compssUsers.pl:117 share/compssUsers.pl:130
-#, c-format
-msgid "Database"
-msgstr "Βάση Δεδομένων"
-
-#: share/compssUsers.pl:118
-#, fuzzy, c-format
-msgid "PostgreSQL and MySQL Database Server"
-msgstr "Εξυπηρετητής βάσης δεδομένων PostgreSQL ή MySQL"
-
-#: share/compssUsers.pl:122
-#, c-format
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: share/compssUsers.pl:123
-#, c-format
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: share/compssUsers.pl:126
-#, c-format
-msgid "Mail"
-msgstr "Ταχυδρομείο"
-
-#: share/compssUsers.pl:127
-#, c-format
-msgid "Postfix mail server"
-msgstr "Εξυπηρετητής ταχυδρομείου Postfix"
-
-#: share/compssUsers.pl:131
-#, c-format
-msgid "PostgreSQL or MySQL database server"
-msgstr "Εξυπηρετητής βάσης δεδομένων PostgreSQL ή MySQL"
-
-#: share/compssUsers.pl:138
-#, c-format
-msgid "Network Computer server"
-msgstr "Εξυπηρετητής δικτύου"
-
-#: share/compssUsers.pl:139
-#, c-format
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr ""
-"εξυπηρετητής NFS, εξυπηρετητής SMB, εξυπηρετητής Proxy, εξυπηρετητής ssh"
-
-#: share/compssUsers.pl:147
-#, c-format
-msgid "KDE Workstation"
-msgstr "Σταθμός εργασίας KDE"
-
-#: share/compssUsers.pl:148
-#, c-format
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr "Το περιβάλλον γραφείου KDE με μια συλλογή συνοδευτικών εργαλείων"
-
-#: share/compssUsers.pl:152
-#, c-format
-msgid "GNOME Workstation"
-msgstr "Σταθμός Εργασίας Gnome"
-
-#: share/compssUsers.pl:153
-#, c-format
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr "Γραφικό περιβάλλον με φιλικά εργαλεία και εφαρμογές"
-
-#: share/compssUsers.pl:156
-#, fuzzy, c-format
-msgid "IceWm Desktop"
-msgstr "Επιφάνεια εργασίας"
-
-#: share/compssUsers.pl:160
-#, c-format
-msgid "Other Graphical Desktops"
-msgstr "Άλλα γραφικά περιβάλλοντα"
-
-#: share/compssUsers.pl:161
-#, fuzzy, c-format
-msgid "Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, κλπ"
-
-#: share/compssUsers.pl:184
-#, c-format
-msgid "Utilities"
-msgstr "Εργαλεία"
-
-#: share/compssUsers.pl:186 share/compssUsers.pl:187 standalone/logdrake:384
-#, c-format
-msgid "SSH Server"
-msgstr "Εξυπηρετητής SSH"
-
-#: share/compssUsers.pl:191
-#, fuzzy, c-format
-msgid "Webmin"
-msgstr "Υπηρεσία Webmin"
-
-#: share/compssUsers.pl:192
-#, fuzzy, c-format
-msgid "Webmin Remote Configuration Server"
-msgstr "Ρύθμιση του Διακομιστή Τερματικού Mandriva"
-
-#: share/compssUsers.pl:196
-#, fuzzy, c-format
-msgid "Network Utilities/Monitoring"
-msgstr "Παρακολούθηση Δικτύου"
-
-#: share/compssUsers.pl:197
-#, c-format
-msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
-msgstr ""
-
-#: share/compssUsers.pl:201
-#, fuzzy, c-format
-msgid "Mandriva Wizards"
-msgstr "Κέντρο Ελέγχου Mandriva Linux"
-
-#: share/compssUsers.pl:202
-#, fuzzy, c-format
-msgid "Wizards to configure server"
-msgstr "Απέτυχε η ρύθμιση του εκτυπωτή \"%s\"!"
-
-#: standalone.pm:23
+#: standalone.pm:24
#, fuzzy, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
@@ -16461,7 +6348,8 @@ msgid ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
msgstr ""
"\n"
" Γενικά Άδεια\n"
@@ -16476,7 +6364,7 @@ msgstr ""
" ληφθέντα Γενικά Άδεια\n"
"\n"
-#: standalone.pm:42
+#: standalone.pm:43
#, fuzzy, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
@@ -16501,7 +6389,7 @@ msgstr ""
"\n"
"\n"
-#: standalone.pm:54
+#: standalone.pm:55
#, c-format
msgid ""
"[--boot] [--splash]\n"
@@ -16511,7 +6399,7 @@ msgid ""
"default mode: offer to configure autologin feature"
msgstr ""
-#: standalone.pm:59
+#: standalone.pm:60
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
@@ -16522,7 +6410,7 @@ msgid ""
" --incident - program should be one of Mandriva Linux tools"
msgstr ""
-#: standalone.pm:65
+#: standalone.pm:66
#, c-format
msgid ""
"[--add]\n"
@@ -16533,7 +6421,7 @@ msgid ""
" --wizard - like --add"
msgstr ""
-#: standalone.pm:71
+#: standalone.pm:72
#, fuzzy, c-format
msgid ""
"\n"
@@ -16562,7 +6450,7 @@ msgstr ""
"\n"
"."
-#: standalone.pm:86
+#: standalone.pm:87
#, fuzzy, c-format
msgid ""
"[OPTIONS]...\n"
@@ -16590,17 +6478,17 @@ msgstr ""
"\n"
" Διαγραφή"
-#: standalone.pm:98
+#: standalone.pm:99
#, c-format
msgid "[keyboard]"
msgstr "[πληκτρολόγιο]"
-#: standalone.pm:99
+#: standalone.pm:100
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-#: standalone.pm:100
+#: standalone.pm:101
#, fuzzy, c-format
msgid ""
"[OPTIONS]\n"
@@ -16623,12 +6511,7 @@ msgstr ""
"\n"
"."
-#: standalone.pm:109
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: standalone.pm:110
+#: standalone.pm:111
#, c-format
msgid ""
"[OPTION]...\n"
@@ -16640,7 +6523,7 @@ msgid ""
" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
msgstr ""
-#: standalone.pm:115
+#: standalone.pm:116
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
@@ -16649,7 +6532,7 @@ msgstr ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
-#: standalone.pm:116
+#: standalone.pm:117
#, c-format
msgid ""
" [everything]\n"
@@ -16657,7 +6540,7 @@ msgid ""
" XFdrake resolution"
msgstr ""
-#: standalone.pm:149
+#: standalone.pm:150
#, c-format
msgid ""
"\n"
@@ -16668,8978 +6551,102 @@ msgstr ""
"Χρήση: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
-#: standalone/XFdrake:59
-#, fuzzy, c-format
-msgid "You need to reboot for changes to take effect"
-msgstr "Απαιτείται επανεκκίνηση για να εφαρμοστούν οι αλλαγές"
-
-#: standalone/XFdrake:90
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Παρακαλώ αποσυνδεθείτε και μετά πατήστε Ctrl-Alt-BackSpace"
-
-#: standalone/XFdrake:94
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr ""
-
-#: standalone/drakTermServ:112 standalone/drakTermServ:118
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr ""
-
-#: standalone/drakTermServ:129
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-
-#: standalone/drakTermServ:135
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr ""
-
-#: standalone/drakTermServ:144
-#, c-format
-msgid "Host name for client"
-msgstr ""
-
-#: standalone/drakTermServ:145
-#, c-format
-msgid "MAC address should be in the format 00:11:22:33:44:55"
-msgstr ""
-
-#: standalone/drakTermServ:146
-#, c-format
-msgid "IP address to be assigned to client"
-msgstr ""
-
-#: standalone/drakTermServ:147
-#, c-format
-msgid "Kernel/network adapter image to use to boot client"
-msgstr ""
-
-#: standalone/drakTermServ:148
-#, c-format
-msgid "Create masking files to allow configuration tools to run on client"
-msgstr ""
-
-#: standalone/drakTermServ:149
-#, c-format
-msgid "Applications will run on server machine"
-msgstr ""
-
-#: standalone/drakTermServ:234 standalone/drakTermServ:237
-#, fuzzy, c-format
-msgid "Terminal Server Configuration"
-msgstr "Ρύθμιση του Διακομιστή Τερματικού Mandriva"
-
-#: standalone/drakTermServ:243
-#, fuzzy, c-format
-msgid "dhcpd Config"
-msgstr "Ρύθμιση dhcpd..."
-
-#: standalone/drakTermServ:247
-#, c-format
-msgid "Enable Server"
-msgstr "Ενεργοποίηση Εξυπηρετητή"
-
-#: standalone/drakTermServ:253
-#, c-format
-msgid "Disable Server"
-msgstr "Απενεργοποίηση Εξυπηρετητή"
-
-#: standalone/drakTermServ:259
-#, c-format
-msgid "Start Server"
-msgstr "Εκκίνηση Εξυπηρετητής"
-
-#: standalone/drakTermServ:265
-#, c-format
-msgid "Stop Server"
-msgstr "Τερματισμός Εξυπηρετητή"
-
-#: standalone/drakTermServ:274
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot Floppy/ISO"
-
-#: standalone/drakTermServ:278
-#, c-format
-msgid "Net Boot Images"
-msgstr "Εικόνες Net Boot"
-
-#: standalone/drakTermServ:285
-#, c-format
-msgid "Add/Del Users"
-msgstr "Προσθήκη/Αφαίρεση Χρηστών"
-
-#: standalone/drakTermServ:289
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Προσθήκη/Αφαίρεση Πελατών"
-
-#: standalone/drakTermServ:297
-#, c-format
-msgid "Images"
-msgstr "Εικόνες"
-
-#: standalone/drakTermServ:298
-#, c-format
-msgid "Clients/Users"
-msgstr ""
-
-#: standalone/drakTermServ:316 standalone/drakbug:47
-#, c-format
-msgid "First Time Wizard"
-msgstr "Οδηγός Πρώτης Φοράς"
-
-#: standalone/drakTermServ:354 standalone/drakTermServ:355
-#, c-format
-msgid "%s defined as dm, adding gdm user to /etc/passwd$$CLIENT$$"
-msgstr ""
-
-#: standalone/drakTermServ:361
-#, c-format
-msgid ""
-"\n"
-" This wizard routine will:\n"
-" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
-"\t2) Setup DHCP.\n"
-"\t\n"
-"After doing these steps, the wizard will:\n"
-"\t\n"
-" a) Make all "
-"nbis. \n"
-" b) Activate the "
-"server. \n"
-" c) Start the "
-"server. \n"
-" d) Synchronize the shadow files so that all users, including root, \n"
-" are added to the shadow$$CLIENT$$ "
-"file. \n"
-" e) Ask you to make a boot floppy.\n"
-" f) If it's thin clients, ask if you want to restart KDM.\n"
-msgstr ""
-
-#: standalone/drakTermServ:407
-#, fuzzy, c-format
-msgid "Cancel Wizard"
-msgstr "Κάντε κλικ εδώ για να ξεκινήσει ο οδηγός ->"
-
-#: standalone/drakTermServ:422
-#, c-format
-msgid "Please save dhcpd config!"
-msgstr ""
-
-#: standalone/drakTermServ:450
-#, fuzzy, c-format
-msgid "Use thin clients."
-msgstr "Προσθήκη/Αφαίρεση Πελατών"
-
-#: standalone/drakTermServ:452
-#, c-format
-msgid "Sync client X keyboard settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:454
-#, c-format
-msgid ""
-"Please select default client type (Fat is the default type if 'Use thin' is "
-"unchecked).\n"
-" 'Thin' clients run everything off the server's CPU/RAM, using the client "
-"display.\n"
-" 'Fat' clients use their own CPU/RAM but the server's filesystem."
-msgstr ""
-
-#: standalone/drakTermServ:474
-#, c-format
-msgid "Creating net boot images for all kernels"
-msgstr ""
-
-#: standalone/drakTermServ:475 standalone/drakTermServ:807
-#: standalone/drakTermServ:823
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Αυτό θα διαρκέσει μερικά λεπτά."
-
-#: standalone/drakTermServ:481 standalone/drakTermServ:521
-#, fuzzy, c-format
-msgid "Done!"
-msgstr "Ολοκληρώθηκε"
-
-#: standalone/drakTermServ:492 standalone/drakTermServ:894
-#, c-format
-msgid "%s failed"
-msgstr ""
-
-#: standalone/drakTermServ:501
-#, c-format
-msgid ""
-"Not enough space to create\n"
-"NBIs in %s.\n"
-"Needed: %d MB, Free: %d MB"
-msgstr ""
-
-#: standalone/drakTermServ:507
-#, c-format
-msgid "Syncing server user list with client list, including root."
-msgstr ""
-
-#: standalone/drakTermServ:527
-#, c-format
-msgid ""
-"In order to enable changes made for thin clients, the display manager must "
-"be restarted. Restart now?"
-msgstr ""
-
-#: standalone/drakTermServ:564
-#, fuzzy, c-format
-msgid "Terminal Server Overview"
-msgstr "Ρύθμιση του Διακομιστή Τερματικού Mandriva"
-
-#: standalone/drakTermServ:565
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and %s is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-
-#: standalone/drakTermServ:571
-#, c-format
-msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. %s helps create/"
-"remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
-msgstr ""
-
-#: standalone/drakTermServ:589
-#, c-format
-msgid ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be "
-"'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, \n"
-" %s is written for thin clients. \n"
-" System config files xdm-config, kdmrc, and gdm.conf are modified if "
-"thin clients are \n"
-" used, to enable XDMCP. Since there are security issues in using "
-"XDMCP, hosts.deny and \n"
-" hosts.allow are modified to limit access to the local subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-msgstr ""
-
-#: standalone/drakTermServ:609
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-msgstr ""
-
-#: standalone/drakTermServ:621
-#, c-format
-msgid ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. \n"
-" \t%s helps in this respect by adding or removing system users from "
-"this \n"
-" \tfile."
-msgstr ""
-
-#: standalone/drakTermServ:626
-#, c-format
-msgid ""
-" - Per client %s:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t%s will help create these files."
-msgstr ""
-
-#: standalone/drakTermServ:631
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-msgstr ""
-
-#: standalone/drakTermServ:640
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s will configure this file to work in conjunction with the images "
-"created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical TFTP configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
-msgstr ""
-
-#: standalone/drakTermServ:661
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-msgstr ""
-
-#: standalone/drakTermServ:694
-#, c-format
-msgid "Boot Floppy"
-msgstr "Δισκέτα Εκκίνησης"
-
-#: standalone/drakTermServ:696
-#, c-format
-msgid "Boot ISO"
-msgstr "Εκκίνηση ISO"
-
-#: standalone/drakTermServ:698
-#, fuzzy, c-format
-msgid "PXE Image"
-msgstr "Εικόνα"
-
-#: standalone/drakTermServ:759
-#, fuzzy, c-format
-msgid "Default kernel version"
-msgstr "έκδοση πυρήνα"
-
-#: standalone/drakTermServ:764
-#, c-format
-msgid "Create PXE images"
-msgstr ""
-
-#: standalone/drakTermServ:765
-#, c-format
-msgid "Use Unionfs (TS2)"
-msgstr ""
-
-#: standalone/drakTermServ:795
-#, c-format
-msgid "Install i586 kernel for older clients"
-msgstr ""
-
-#: standalone/drakTermServ:805
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Δημιουργία Ολόκληρου Πυρήνα -->"
-
-#: standalone/drakTermServ:812
-#, c-format
-msgid "No kernel selected!"
-msgstr "Δεν επιλέχτηκε πυρήνας!"
-
-#: standalone/drakTermServ:815
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Δημιουργία Μονού NIC -->"
-
-#: standalone/drakTermServ:819 standalone/drakTermServ:1643
-#, c-format
-msgid "No NIC selected!"
-msgstr "Δε επιλέχτηκε NIC!"
-
-#: standalone/drakTermServ:822
-#, fuzzy, c-format
-msgid "Build All Kernels -->"
-msgstr "Όλα"
-
-#: standalone/drakTermServ:835
-#, c-format
-msgid ""
-"Custom\n"
-"kernel args"
-msgstr ""
-
-#: standalone/drakTermServ:840
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Διαγραφή"
-
-#: standalone/drakTermServ:845
-#, fuzzy, c-format
-msgid "No image selected!"
-msgstr "Δε επιλέχτηκε NIC!"
-
-#: standalone/drakTermServ:848
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Διαγραφή Όλων των NBIs"
-
-#: standalone/drakTermServ:925
-#, c-format
-msgid "Building images for kernel:"
-msgstr ""
-
-#: standalone/drakTermServ:1050
-#, fuzzy, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"\n"
-" Εξυπηρετητής\n"
-" Διαγραφή χρήστης Εξυπηρετητής ενεργοποίηση."
-
-#: standalone/drakTermServ:1055
-#, c-format
-msgid "Add User -->"
-msgstr "Προσθήκη χρήστη -->"
-
-#: standalone/drakTermServ:1061
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- Διαγραφή Χρήστη"
-
-#: standalone/drakTermServ:1097
-#, c-format
-msgid "type: %s"
-msgstr "τύπος: %s"
-
-#: standalone/drakTermServ:1101
-#, c-format
-msgid "local config: %s"
-msgstr ""
-
-#: standalone/drakTermServ:1136
-#, fuzzy, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr "Αυτόματη επαναρύθμισης"
-
-#: standalone/drakTermServ:1146
-#, c-format
-msgid "No net boot images created!"
-msgstr "Δεν δημιουργήθηκαν εικόνες εκκίνησης δικτύου!"
-
-#: standalone/drakTermServ:1165
-#, fuzzy, c-format
-msgid "Thin Client"
-msgstr "Πελάτης DHCP"
-
-#: standalone/drakTermServ:1169
-#, fuzzy, c-format
-msgid "Allow Thin Clients"
-msgstr "Προσθήκη/Αφαίρεση Πελατών"
-
-#: standalone/drakTermServ:1170
-#, c-format
-msgid ""
-"Sync client X keyboard\n"
-" settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:1171
-#, c-format
-msgid "Add Client -->"
-msgstr "Προσθήκη Πελάτη -->"
-
-#: standalone/drakTermServ:1181
-#, c-format
-msgid "Unknown MAC address format"
-msgstr ""
-
-#: standalone/drakTermServ:1195
-#, fuzzy, c-format
-msgid "type: fat"
-msgstr "τύπος: %s"
-
-#: standalone/drakTermServ:1196
-#, fuzzy, c-format
-msgid "type: thin"
-msgstr "τύπος: %s"
-
-#: standalone/drakTermServ:1203
-#, fuzzy, c-format
-msgid "local config: false"
-msgstr "Τοπικά αρχεία"
-
-#: standalone/drakTermServ:1204
-#, fuzzy, c-format
-msgid "local config: true"
-msgstr "δεν ρυθμίστηκε"
-
-#: standalone/drakTermServ:1212
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Επεξεργασία Πελάτη"
-
-#: standalone/drakTermServ:1237
-#, c-format
-msgid "Disable Local Config"
-msgstr ""
-
-#: standalone/drakTermServ:1244
-#, c-format
-msgid "Delete Client"
-msgstr "Διαγραφή Πελάτη"
-
-#: standalone/drakTermServ:1267
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-"Πρέπει να εκκινηθεί ξανά ο Διαχειριστής Προβολής για να ισχύσουν όλες οι "
-"αλλαγές. \n"
-"(από την κονσόλα - service dm restart)"
-
-#: standalone/drakTermServ:1313
-#, c-format
-msgid "Thin clients will not work with autologin. Disable autologin?"
-msgstr ""
-
-#: standalone/drakTermServ:1328
-#, c-format
-msgid "All clients will use %s"
-msgstr ""
-
-#: standalone/drakTermServ:1362
-#, c-format
-msgid "Subnet:"
-msgstr ""
-
-#: standalone/drakTermServ:1369
-#, c-format
-msgid "Netmask:"
-msgstr "Μάσκα δικτύου:"
-
-#: standalone/drakTermServ:1376
-#, c-format
-msgid "Routers:"
-msgstr "Δρομολογητές:"
-
-#: standalone/drakTermServ:1383
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Subnet Mask:"
-
-#: standalone/drakTermServ:1390
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Διεύθυνση Μετάδοσης:"
-
-#: standalone/drakTermServ:1397
-#, c-format
-msgid "Domain Name:"
-msgstr "Όνομα Τομέα:"
-
-#: standalone/drakTermServ:1405
-#, c-format
-msgid "Name Servers:"
-msgstr "Όνομα Εξυπηρετητών:"
-
-#: standalone/drakTermServ:1416
-#, c-format
-msgid "IP Range Start:"
-msgstr "Όριο Εκκίνησης ΙΡ:"
-
-#: standalone/drakTermServ:1417
-#, c-format
-msgid "IP Range End:"
-msgstr "Όριο Τερματισμού IP:"
-
-#: standalone/drakTermServ:1459
-#, c-format
-msgid "Append TS Includes To Existing Config"
-msgstr ""
-
-#: standalone/drakTermServ:1461
-#, c-format
-msgid "Write Config"
-msgstr "Εγγραφή Ρύθμισης"
-
-#: standalone/drakTermServ:1477
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Ρυθμίσεις Εξυπηρετητή dhcpd"
-
-#: standalone/drakTermServ:1478
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"Οι περισσότερες τιμές έχουν εξαχθεί \n"
-"από το σύστημά σας\n"
-"Αλλάξτε τις αν χρειάζεται."
-
-#: standalone/drakTermServ:1481
-#, c-format
-msgid ""
-"Dynamic IP Address Pool\n"
-"(needed for PXE clients):"
-msgstr ""
-
-#: standalone/drakTermServ:1634
-#, c-format
-msgid "Write to %s failed!"
-msgstr ""
-
-#: standalone/drakTermServ:1647
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Παρακαλώ εισάγετε δισκέτα Εκκίνησης:"
-
-#: standalone/drakTermServ:1651
-#, c-format
-msgid "Could not access the floppy!"
-msgstr "Δεν είναι δυνατή η πρόσβαση στη δισκέτα!"
-
-#: standalone/drakTermServ:1653
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Τώρα μπορείτε να αφαιρέστε τη δισκέτα"
-
-#: standalone/drakTermServ:1656
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Δεν υπάρχει διαθέσιμος οδηγός δισκέτας!"
-
-#: standalone/drakTermServ:1662
-#, fuzzy, c-format
-msgid "PXE image is %s/%s"
-msgstr "Η εικόνα Etherboot ISO είναι η %s"
-
-#: standalone/drakTermServ:1664
-#, fuzzy, c-format
-msgid "Error writing %s/%s"
-msgstr "Σφάλμα εγγραφής στο αρχείο %s"
-
-#: standalone/drakTermServ:1676
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "Η εικόνα Etherboot ISO είναι η %s"
-
-#: standalone/drakTermServ:1680
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Κάτι δεν πήγε καλά! Είναι το mkisofs εγκατεστημένο;"
-
-#: standalone/drakTermServ:1700
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Πρέπει να δημιουργήσω πρώτα το /etc/dhcpd.conf!"
-
-#: standalone/drakTermServ:1867
-#, c-format
-msgid "%s passwd bad in Terminal Server - rewriting...\n"
-msgstr ""
-
-#: standalone/drakTermServ:1880
-#, fuzzy, c-format
-msgid "%s is not a user..\n"
-msgstr "το %s δεν ανταποκρίνεται"
-
-#: standalone/drakTermServ:1881
-#, c-format
-msgid "%s is already a Terminal Server user\n"
-msgstr ""
-
-#: standalone/drakTermServ:1883
-#, c-format
-msgid "Addition of %s to Terminal Server failed!\n"
-msgstr ""
-
-#: standalone/drakTermServ:1885
-#, c-format
-msgid "%s added to Terminal Server\n"
-msgstr ""
-
-#: standalone/drakTermServ:1903
-#, fuzzy, c-format
-msgid "Deleted %s...\n"
-msgstr "Βρέθηκε ο %s"
-
-#: standalone/drakTermServ:1905 standalone/drakTermServ:1978
-#, fuzzy, c-format
-msgid "%s not found...\n"
-msgstr "το %s δεν ανταποκρίνεται"
-
-#: standalone/drakTermServ:2006
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
-"το /etc/hosts.allow και /etc/hosts.deny έχουν ήδη ρυθμιστεί - δεν "
-"μετατράπηκαν"
-
-#: standalone/drakTermServ:2158
-#, c-format
-msgid "Configuration changed - restart %s/dhcpd?"
-msgstr ""
-
-#: standalone/drakautoinst:38 standalone/drakhosts:123
-#: standalone/drakhosts:129 standalone/draknfs:84 standalone/draknfs:105
-#: standalone/draknfs:444 standalone/draknfs:447 standalone/draknfs:539
-#: standalone/draknfs:546 standalone/draksambashare:187
-#: standalone/draksambashare:208 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Error!"
-msgstr "Σφάλμα!"
-
-#: standalone/drakautoinst:39
-#, c-format
-msgid "I can not find needed image file `%s'."
-msgstr "Δεν μπορώ να βρω το απαραίτητο αρχείο εικόνας `%s'."
-
-#: standalone/drakautoinst:41
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Ρυθμίσεις αυτόματης εγκατάστασης"
-
-#: standalone/drakautoinst:42
-#, fuzzy, c-format
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Press ok to continue."
-msgstr ""
-"Εγκατάσταση\n"
-"\n"
-" Επαναφόρτωση\n"
-"\n"
-"\n"
-"\n"
-" Ολοκληρώθηκε?"
-
-#: standalone/drakautoinst:60
-#, c-format
-msgid "replay"
-msgstr "επανάληψη"
-
-#: standalone/drakautoinst:60 standalone/drakautoinst:69
-#, c-format
-msgid "manual"
-msgstr "χειροκίνητα"
-
-#: standalone/drakautoinst:64
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Ρύθμιση Αυτόματων Βημάτων"
-
-#: standalone/drakautoinst:65
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Παρακαλώ καθορίστε εάν για κάθε βήμα θα γίνει επανάληψη της εγκατάστασης, ή "
-"εάν γίνει χειροκίνητα"
-
-#: standalone/drakautoinst:77 standalone/drakautoinst:78
-#: standalone/drakautoinst:92
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Δημιουργία δισκέτας αυτόματης εγκατάστασης"
-
-#: standalone/drakautoinst:90
-#, fuzzy, c-format
-msgid "Insert another blank floppy in drive %s (for drivers disk)"
-msgstr "Εισάγετε άδεια δισκέτα στον οδηγό %s"
-
-#: standalone/drakautoinst:91
-#, fuzzy, c-format
-msgid "Creating auto install floppy (drivers disk)"
-msgstr "Δημιουργία δισκέτας αυτόματης εγκατάστασης"
-
-#: standalone/drakautoinst:156
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-" Καλώς Ορίσατε\n"
-"\n"
-"Οι παράμετροι για την αυτόματη εγκατάσταση υπάρχουν στα τμήματα αριστερά"
-
-#: standalone/drakautoinst:251
-#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Η δισκέτα δημιουργήθηκε με επιτυχία.\n"
-"Μπορείτε τώρα να επαναλάβετε την εγκατάσταση."
-
-#: standalone/drakautoinst:287
-#, c-format
-msgid "Auto Install"
-msgstr "Αυτόματη εγκατάσταση"
-
-#: standalone/drakautoinst:356
-#, c-format
-msgid "Add an item"
-msgstr "Προσθήκη στοιχείου"
-
-#: standalone/drakautoinst:363
-#, c-format
-msgid "Remove the last item"
-msgstr "Αφαίρεση του τελευταίου στοιχείου"
-
-#: standalone/drakbackup:157
-#, c-format
-msgid ""
-"Expect is an extension to the TCL scripting language that allows interactive "
-"sessions without user intervention."
-msgstr ""
-
-#: standalone/drakbackup:158
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr ""
-
-#: standalone/drakbackup:159
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
-
-#: standalone/drakbackup:160
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-
-#: standalone/drakbackup:161
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-
-#: standalone/drakbackup:162
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-
-#: standalone/drakbackup:163
-#, c-format
-msgid ""
-"Star should be selected if you want to backup EA or ACLs, otherwise choose "
-"tar"
-msgstr ""
-
-#: standalone/drakbackup:164
-#, c-format
-msgid ""
-"This should be a local user or email address that you want the backup "
-"results sent to. You will need to define a functioning mail server. Multiple "
-"users can be in a comma seperated list"
-msgstr ""
-
-#: standalone/drakbackup:165
-#, c-format
-msgid ""
-"This should be the return address that you want the backup results sent "
-"from. Default is drakbackup."
-msgstr ""
-
-#: standalone/drakbackup:166
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-
-#: standalone/drakbackup:167
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-
-#: standalone/drakbackup:168
-#, c-format
-msgid ""
-"Selecting this option allows you to view the raw output from the restore "
-"process, after a file restore."
-msgstr ""
-
-#: standalone/drakbackup:169
-#, c-format
-msgid ""
-"Some protocols, like rsync, may be configured at the server end. Rather "
-"than using a directory path, you would use the 'module' name for the service "
-"path."
-msgstr ""
-
-#: standalone/drakbackup:170
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-
-#: standalone/drakbackup:344
-#, c-format
-msgid "No media selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:348
-#, c-format
-msgid "No interval selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:393
-#, fuzzy, c-format
-msgid "Interval cron not available as non-root"
-msgstr "Το cron δεν είναι ακόμα διαθέσιμη στους μη-root"
-
-#: standalone/drakbackup:477 standalone/logdrake:439
-#, c-format
-msgid "\"%s\" neither is a valid email nor is an existing local user!"
-msgstr ""
-
-#: standalone/drakbackup:481 standalone/logdrake:444
-#, 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 ""
-
-#: standalone/drakbackup:491
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr ""
-
-#: standalone/drakbackup:493
-#, fuzzy, c-format
-msgid "Old user list:\n"
-msgstr ""
-"\n"
-"- Αρχεία Χρηστών:\n"
-
-#: standalone/drakbackup:495
-#, fuzzy, c-format
-msgid "New user list:\n"
-msgstr ""
-"\n"
-"- Αρχεία Χρηστών:\n"
-
-#: standalone/drakbackup:524
-#, fuzzy, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
-msgstr ""
-"\n"
-" Αναφορά DrakBackup \n"
-"\n"
-
-#: standalone/drakbackup:525
-#, fuzzy, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-msgstr ""
-"\n"
-" Δαίμονας αναφοράς DrakBackup \n"
-"\n"
-"\n"
-
-#: standalone/drakbackup:531
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup Λεπτομέρειες Αναφοράς\n"
-"\n"
-"\n"
-
-#: standalone/drakbackup:556 standalone/drakbackup:627
-#: standalone/drakbackup:683
-#, fuzzy, c-format
-msgid "Total progress"
-msgstr "Συνολική πρόοδος"
-
-#: standalone/drakbackup:609
-#, c-format
-msgid ""
-"%s exists, delete?\n"
-"\n"
-"If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-
-#: standalone/drakbackup:618
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr ""
-"Μπορεί να χρειαστούν μερικά λεπτά για τη δημιουργία των κλειδιών:To ../../"
-"standalone/drakbackup:1"
-
-#: standalone/drakbackup:625
-#, fuzzy, c-format
-msgid "Cannot spawn %s."
-msgstr "Δεν βρέθηκε το %s στο %s"
-
-#: standalone/drakbackup:642
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "Χωρίς ερώτηση κωδικού στο %s στη θύρα %s"
-
-#: standalone/drakbackup:643
-#, c-format
-msgid "Bad password on %s"
-msgstr "Εσφαλμένος κωδικός στο %s"
-
-#: standalone/drakbackup:644
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "Άρνηση πρόσβασης κατά τη μεταφορά του %s στο %s"
-
-#: standalone/drakbackup:645
-#, c-format
-msgid "Can not find %s on %s"
-msgstr "Δεν βρέθηκε το %s στο %s"
-
-#: standalone/drakbackup:649
-#, c-format
-msgid "%s not responding"
-msgstr "το %s δεν ανταποκρίνεται"
-
-#: standalone/drakbackup:653
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-"Επιτυχής μεταφορά\n"
-"Ίσως να χρειαστεί να επαληθεύσετε ότι μπορείτε να προσπελάσετε τον "
-"διακομιστή με:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"χωρίς να ζητηθεί κωδικός πρόσβασης."
-
-#: standalone/drakbackup:703
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "Δεν υπάρχει CDR/DVDR στον οδηγό!"
-
-#: standalone/drakbackup:707
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Φαίνεται να μην είναι εγγράψιμο μέσο!"
-
-#: standalone/drakbackup:712
-#, c-format
-msgid "Not erasable media!"
-msgstr "Το μέσο δεν μπορεί να σβηστεί!"
-
-#: standalone/drakbackup:754
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Ίσως χρειαστούν μερικά λεπτά για να σβηστεί το μέσο."
-
-#: standalone/drakbackup:812
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Πρόβλημα δικαιωμάτων στην πρόσβαση του CD."
-
-#: standalone/drakbackup:840
-#, c-format
-msgid "No tape in %s!"
-msgstr "Καμιά ταινία στο %s!"
-
-#: standalone/drakbackup:953
-#, c-format
-msgid ""
-"Backup destination quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-
-#: standalone/drakbackup:973 standalone/drakbackup:1005
-#, c-format
-msgid "Backup system files..."
-msgstr "Αντίγραφο Ασφαλείας συστήματος αρχείων..."
-
-#: standalone/drakbackup:1006 standalone/drakbackup:1045
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Αντίγραφα Ασφαλείας Σκληρού Δίσκου"
-
-#: standalone/drakbackup:1044
-#, c-format
-msgid "Backup User files..."
-msgstr "Αντίγραφο Ασφαλείας των αρχείων Χρηστών..."
-
-#: standalone/drakbackup:1078
-#, c-format
-msgid "Backup Other files..."
-msgstr "Αντίγραφο Ασφαλείας Άλλων αρχείων..."
-
-#: standalone/drakbackup:1079
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Διαδικασία Αντιγράφων ασφαλείας στον Σκληρό Δίσκο..."
-
-#: standalone/drakbackup:1084
-#, c-format
-msgid "No changes to backup!"
-msgstr "Δεν υπάρχουν αλλαγές για να γίνουν αντίγραφα ασφαλείας!"
-
-#: standalone/drakbackup:1100 standalone/drakbackup:1122
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-"\n"
-"Δραστηριότητες Drakbackup μέσω %s:\n"
-"\n"
-
-#: standalone/drakbackup:1109
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-" Σφάλμα στη σύνδεση FTP . Δεν ήταν δυνατή η αποστολή των αντιγράφων "
-"ασφαλείας μέσω FTP.\n"
-
-#: standalone/drakbackup:1110
-#, fuzzy, c-format
-msgid ""
-"Error during sending file via FTP. Please correct your FTP configuration."
-msgstr ""
-"Σφάλμα κατά την αποστολή αρχείου μέσω FTP.\n"
-"Παρακαλώ διορθώστε τη ρύθμιση του FTP."
-
-#: standalone/drakbackup:1112
-#, fuzzy, c-format
-msgid "file list sent by FTP: %s\n"
-msgstr ""
-"αποστολή λίστας αρχείων μέσω FTP: %s\n"
-" "
-
-#: standalone/drakbackup:1127
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-"\n"
-"Δραστηριότητες Drakbackup μέσω CD:\n"
-"\n"
-
-#: standalone/drakbackup:1132
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-"\n"
-"Δραστηριότητες Drakbackup μέσω ταινίας:\n"
-"\n"
-
-#: standalone/drakbackup:1141
-#, fuzzy, c-format
-msgid "Error sending mail. Your report mail was not sent."
-msgstr ""
-"Σφάλμα στο sendmail\n"
-" Η αναφορά δεν στάλθηκε\n"
-" παρακαλώ ρυθμίστε το sendmail"
-
-#: standalone/drakbackup:1142
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr "Σφάλμα κατά την αποστολή μηνύματος. \n"
-
-#: standalone/drakbackup:1172
-#, c-format
-msgid "Can not create catalog!"
-msgstr "Αδύνατη η δημιουργία καταλόγου!"
-
-#: standalone/drakbackup:1332
-#, fuzzy, c-format
-msgid "Problem installing %s"
-msgstr "Πρόβλημα κατά την εγκατάσταση του πακέτου %s"
-
-#: standalone/drakbackup:1420
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Αντίγραφο ασφαλείας των αρχείων Συστήματος (κατάλογος /etc )"
-
-#: standalone/drakbackup:1421 standalone/drakbackup:1484
-#: standalone/drakbackup:1550
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr ""
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Incremental Backups"
-msgstr ""
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Differential Backups"
-msgstr ""
-
-#: standalone/drakbackup:1425
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Χωρίς τα κρίσιμα αρχεία ( κωδικοί, ομάδες, fstab)"
-
-#: standalone/drakbackup:1456
-#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr ""
-"Παρακαλώ επιλέξτε όσους χρήστες θέλετε να υπάρχουν στα αντίγραφα ασφαλείας"
-
-#: standalone/drakbackup:1483
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Χωρίς την cache του περιηγητή"
-
-#: standalone/drakbackup:1537
-#, fuzzy, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr ""
-"Παρακαλώ επιλέξτε τα αρχεία ή τους καταλόγους και κάντε κλικ στο 'προσθήκη'"
-
-#: standalone/drakbackup:1538 standalone/drakfont:650
-#, c-format
-msgid "Remove Selected"
-msgstr "Αφαίρεση Επιλεγμένων"
-
-#: standalone/drakbackup:1601
-#, c-format
-msgid "Users"
-msgstr "Χρήστες"
-
-#: standalone/drakbackup:1621
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Χρήση σύνδεση δικτύου για τα αρχεία ασφαλείας"
-
-#: standalone/drakbackup:1623
-#, c-format
-msgid "Net Method:"
-msgstr "Μέθοδος δικτύου:"
-
-#: standalone/drakbackup:1627
-#, c-format
-msgid "Use Expect for SSH"
-msgstr ""
-
-#: standalone/drakbackup:1628
-#, fuzzy, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr ""
-"Δημιουργία/Μεταφορά\n"
-"αντιγράφων ασφαλείας των κλειδιών SSH"
-
-#: standalone/drakbackup:1630
-#, fuzzy, c-format
-msgid "Transfer Now"
-msgstr ""
-" Μεταφορά \n"
-"Τώρα"
-
-#: standalone/drakbackup:1632
-#, fuzzy, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Άλλο\n"
-
-#: standalone/drakbackup:1635
-#, fuzzy, c-format
-msgid "Host name or IP."
-msgstr "Όνομα συστήματος"
-
-#: standalone/drakbackup:1640
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
-
-#: standalone/drakbackup:1652
-#, c-format
-msgid "Remember this password"
-msgstr "Απομνημόνευση του κωδικού πρόσβασης"
-
-#: standalone/drakbackup:1664
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Χρειάζεται το δικτυακό όνομα, όνομα χρήστη και κωδικό πρόσβασης!"
-
-#: standalone/drakbackup:1755
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Χρήση CD/DVDROM για τα αρχεία ασφαλείας"
-
-#: standalone/drakbackup:1758
-#, fuzzy, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Παρακαλώ ορίστε τον χώρο του CD/DVD "
-
-#: standalone/drakbackup:1763
-#, fuzzy, c-format
-msgid "Choose your CD/DVD media size"
-msgstr "Παρακαλώ ορίστε τον χώρο του CD/DVD "
-
-#: standalone/drakbackup:1770
-#, fuzzy, c-format
-msgid "Multisession CD"
-msgstr "Σταθμός πολυμέσων"
-
-#: standalone/drakbackup:1772
-#, c-format
-msgid "CDRW media"
-msgstr ""
-
-#: standalone/drakbackup:1778
-#, fuzzy, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "RW"
-
-#: standalone/drakbackup:1779
-#, c-format
-msgid " Erase Now "
-msgstr "Σβήσιμο Τώρα "
-
-#: standalone/drakbackup:1785
-#, c-format
-msgid "DVD+RW media"
-msgstr ""
-
-#: standalone/drakbackup:1787
-#, fuzzy, c-format
-msgid "DVD-R media"
-msgstr "συσκευή"
-
-#: standalone/drakbackup:1789
-#, fuzzy, c-format
-msgid "DVDRAM device"
-msgstr "συσκευή"
-
-#: standalone/drakbackup:1820
-#, c-format
-msgid "No CD device defined!"
-msgstr "Δεν καθορίστηκε συσκευή CD"
-
-#: standalone/drakbackup:1862
-#, c-format
-msgid "Use tape to backup"
-msgstr "Χρήση ταινίας για τα αρχεία ασφαλείας"
-
-#: standalone/drakbackup:1865
-#, fuzzy, c-format
-msgid "Device name to use for backup"
-msgstr ""
-"Παρακαλώ εισάγεται το όνομα συσκευής για τη χρήση των αντιγράφων ασφαλείας"
-
-#: standalone/drakbackup:1871
-#, c-format
-msgid "Backup directly to tape"
-msgstr ""
-
-#: standalone/drakbackup:1877
-#, c-format
-msgid "Use tape hardware compression (EXPERIMENTAL)"
-msgstr ""
-
-#: standalone/drakbackup:1883
-#, fuzzy, c-format
-msgid "Do not rewind tape after backup"
-msgstr "Χρήση ταινίας για τα αρχεία ασφαλείας"
-
-#: standalone/drakbackup:1889
-#, fuzzy, c-format
-msgid "Erase tape before backup"
-msgstr "Χρήση ταινίας για τα αρχεία ασφαλείας"
-
-#: standalone/drakbackup:1895
-#, fuzzy, c-format
-msgid "Eject tape after the backup"
-msgstr "Χρήση ταινίας για τα αρχεία ασφαλείας"
-
-#: standalone/drakbackup:1976
-#, fuzzy, c-format
-msgid "Enter the directory to save to:"
-msgstr "Παρακαλώ ορίστε τον κατάλογο αποθήκευσης: "
-
-#: standalone/drakbackup:1980
-#, fuzzy, c-format
-msgid "Directory to save to"
-msgstr "Παρακαλώ ορίστε τον κατάλογο αποθήκευσης: "
-
-#: standalone/drakbackup:1985
-#, c-format
-msgid ""
-"Maximum disk space\n"
-" allocated for backups (MB)"
-msgstr ""
-
-#: standalone/drakbackup:1989
-#, c-format
-msgid ""
-"Delete incremental or differential\n"
-" backups older than N days\n"
-" (0 is keep all backups) to save space"
-msgstr ""
-
-#: standalone/drakbackup:2056
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CDROM / DVDROM"
-
-#: standalone/drakbackup:2061
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Σκληρός Δίσκος / NFS"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2077
-#: standalone/drakbackup:2082
-#, c-format
-msgid "hourly"
-msgstr "ωριαία"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2078
-#: standalone/drakbackup:2083
-#, c-format
-msgid "daily"
-msgstr "καθημερινά"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2079
-#: standalone/drakbackup:2084
-#, c-format
-msgid "weekly"
-msgstr "εβδομαδιαία"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2080
-#: standalone/drakbackup:2085
-#, c-format
-msgid "monthly"
-msgstr "μηνιαία"
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2081
-#: standalone/drakbackup:2086
-#, c-format
-msgid "custom"
-msgstr "προσαρμοσμένο"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "January"
-msgstr "Ιανουάριος"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "February"
-msgstr "Φεβρουάριος"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "March"
-msgstr "Μάρτιος"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "April"
-msgstr "Απρίλιος"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "May"
-msgstr "Μάιος"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "June"
-msgstr "Ιούνιος"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "July"
-msgstr "Ιούλιος"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "August"
-msgstr "Αύγουστος"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "September"
-msgstr "Σεπτέμβριος"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "October"
-msgstr "Οκτώβριος"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "November"
-msgstr "Νοέμβριος"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "December"
-msgstr "Δεκέμβριος"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Sunday"
-msgstr "Κυριακή"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Monday"
-msgstr "Δευτέρα"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Tuesday"
-msgstr "Τρίτη"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Wednesday"
-msgstr "Τετάρτη"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Thursday"
-msgstr "Πέμπτη"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Friday"
-msgstr "Παρασκευή"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Saturday"
-msgstr "Σάββατο"
-
-#: standalone/drakbackup:2126
-#, fuzzy, c-format
-msgid "Delete cron entry"
-msgstr "Διαγραφή Πελάτη"
-
-#: standalone/drakbackup:2127
-#, fuzzy, c-format
-msgid "Add cron entry"
-msgstr "Εκτυπωτής"
-
-#: standalone/drakbackup:2185
-#, c-format
-msgid "Use daemon"
-msgstr "Χρήση δαίμονα"
-
-#: standalone/drakbackup:2189
-#, fuzzy, c-format
-msgid "Please choose the time interval between each backup"
-msgstr ""
-"Παρακαλώ επιλέξτε το \n"
-"διάστημα μεταξύ του κάθε\n"
-"αντίγραφου ασφαλείας"
-
-#: standalone/drakbackup:2197
-#, c-format
-msgid "Minute"
-msgstr "Λεπτό"
-
-#: standalone/drakbackup:2201
-#, c-format
-msgid "Hour"
-msgstr "Ώρα"
-
-#: standalone/drakbackup:2205
-#, c-format
-msgid "Day"
-msgstr "Ημέρα"
-
-#: standalone/drakbackup:2209
-#, c-format
-msgid "Month"
-msgstr "Μήνας"
-
-#: standalone/drakbackup:2213
-#, fuzzy, c-format
-msgid "Weekday (start)"
-msgstr "Τετάρτη"
-
-#: standalone/drakbackup:2217
-#, fuzzy, c-format
-msgid "Weekday (end)"
-msgstr "Τετάρτη"
-
-#: standalone/drakbackup:2221
-#, fuzzy, c-format
-msgid "Profile"
-msgstr "Προφίλ"
-
-#: standalone/drakbackup:2227
-#, fuzzy, c-format
-msgid "Current crontab:"
-msgstr "Τρέχον χρήστη"
-
-#: standalone/drakbackup:2235
-#, fuzzy, c-format
-msgid "Please choose the media for backup."
-msgstr ""
-"Παρακαλώ επιλέξτε το \n"
-"μέσο για τα αντίγραφα \n"
-"ασφαλείας"
-
-#: standalone/drakbackup:2239
-#, fuzzy, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-"\n"
-"\n"
-" Σημείωση."
-
-#: standalone/drakbackup:2240
-#, c-format
-msgid ""
-"If your machine is not on all the time, you might want to install anacron."
-msgstr ""
-
-#: standalone/drakbackup:2316
-#, fuzzy, c-format
-msgid "Please choose the archive program"
-msgstr "Παρακαλώ επιλέξτε την ημερομηνία επαναφοράς"
-
-#: standalone/drakbackup:2321
-#, fuzzy, c-format
-msgid "Please choose the compression type"
-msgstr "Παρακαλώ επιλέξτε την ημερομηνία επαναφοράς"
-
-#: standalone/drakbackup:2325
-#, fuzzy, c-format
-msgid "Use .backupignore files"
-msgstr "Αντίγραφα ασφαλείας άλλων αρχείων"
-
-#: standalone/drakbackup:2327
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr ""
-"Αποστολή ηλεκτρονικού μηνύματος μετά από κάθε λήψη αντιγράφων ασφαλείας στο:"
-
-#: standalone/drakbackup:2333
-#, c-format
-msgid "Return address for sent mail:"
-msgstr ""
-
-#: standalone/drakbackup:2339
-#, fuzzy, c-format
-msgid "SMTP server for mail:"
-msgstr "Δικτυακό όνομα SMB εξυπηρετητή"
-
-#: standalone/drakbackup:2343
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr "Διαγραφή των αρχείων tar από το δίσκο μετά τη μεταφορά σε άλλο μέσο."
-
-#: standalone/drakbackup:2344
-#, fuzzy, c-format
-msgid "View restore log after file restore."
-msgstr "Εντάξει για την επαναφορά των άλλων αρχείων."
-
-#: standalone/drakbackup:2389
-#, c-format
-msgid "What"
-msgstr "Τι"
-
-#: standalone/drakbackup:2394
-#, c-format
-msgid "Where"
-msgstr "Που"
-
-#: standalone/drakbackup:2399
-#, c-format
-msgid "When"
-msgstr "Πότε"
-
-#: standalone/drakbackup:2404
-#, c-format
-msgid "More Options"
-msgstr "Περισσότερες Επιλογές"
-
-#: standalone/drakbackup:2417
-#, fuzzy, c-format
-msgid "Backup destination not configured..."
-msgstr "Η λειτουργικότητα του δικτύου δεν ρυθμίστηκε"
-
-#: standalone/drakbackup:2437 standalone/drakbackup:4367
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Ρυθμίσεις Drakbackup"
-
-#: standalone/drakbackup:2453
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Παρακαλώ επιλέξτε την θέση των αντιγράφων ασφαλείας"
-
-#: standalone/drakbackup:2456
-#, fuzzy, c-format
-msgid "Hard Drive used to prepare backups for all media"
-msgstr "Διαγραφή των αρχείων tar από το δίσκο μετά τη μεταφορά σε άλλο μέσο."
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Across Network"
-msgstr "στο Δίκτυο"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On CD-R"
-msgstr "στο CDROM"
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On Tape Device"
-msgstr "στη Συσκευή Ταινίας"
-
-#: standalone/drakbackup:2502
-#, c-format
-msgid "Backup Users"
-msgstr "Αντίγραφο Ασφαλείας Χρηστών"
-
-#: standalone/drakbackup:2503
-#, fuzzy, c-format
-msgid " (Default is all users)"
-msgstr "Προεπιλεγμένος εκτυπωτής"
-
-#: standalone/drakbackup:2516
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Παρακαλώ επιλέξτε τι θέλετε να πάρετε σε αντίγραφα ασφαλείας"
-
-#: standalone/drakbackup:2517
-#, c-format
-msgid "Backup System"
-msgstr "Αντίγραφο Ασφαλείας Συστήματος"
-
-#: standalone/drakbackup:2519
-#, c-format
-msgid "Select user manually"
-msgstr "Επιλογή χρήστη χειροκίνητα"
-
-#: standalone/drakbackup:2548
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Παρακαλώ επιλέξτε τα αρχεία που θα γίνουν αντίγραφα ασφαλείας"
-
-#: standalone/drakbackup:2620
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"- Πηγές Αντιγράφων Ασφαλείας:\n"
-
-#: standalone/drakbackup:2621
-#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Αρχεία Συστήματος:\n"
-
-#: standalone/drakbackup:2623
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Αρχεία Χρηστών:\n"
-
-#: standalone/drakbackup:2625
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Άλλα Αρχεία:\n"
-
-#: standalone/drakbackup:2627
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-"\n"
-"- Αποθήκευση στον σκληρό δίσκο στην θέση: %s\n"
-
-#: standalone/drakbackup:2628
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr ""
-
-#: standalone/drakbackup:2629
-#, c-format
-msgid "\tDelete backups older than %s day(s)\n"
-msgstr ""
-
-#: standalone/drakbackup:2632
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
-"\n"
-"- Διαγραφή αρχείων tar από τον δίσκο μετά το αντίγραφο ασφαλείας.\n"
-
-#: standalone/drakbackup:2637
-#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr ""
-"\n"
-"- Εγγραφή σε CD"
-
-#: standalone/drakbackup:2638
-#, c-format
-msgid "RW"
-msgstr "RW"
-
-#: standalone/drakbackup:2639
-#, c-format
-msgid " on device: %s"
-msgstr "Στη Συσκευή : %s"
-
-#: standalone/drakbackup:2640
-#, c-format
-msgid " (multi-session)"
-msgstr ""
-
-#: standalone/drakbackup:2641
-#, c-format
-msgid ""
-"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-"\n"
-" Αποθήκευση σε Ταινία στη συσκευή: %s"
-
-#: standalone/drakbackup:2642
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tΣβήσιμο=%s"
-
-#: standalone/drakbackup:2644
-#, c-format
-msgid "\tBackup directly to Tape\n"
-msgstr ""
-
-#: standalone/drakbackup:2646
-#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
-"\n"
-" Αποθήκευση μέσω %s στον υπολογιστή: %s\n"
-
-#: standalone/drakbackup:2647
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t όνομα χρήστη: %s\n"
-"\t\t στη θέση: %s \n"
-
-#: standalone/drakbackup:2648
-#, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Επιλογές:\n"
-
-#: standalone/drakbackup:2649
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tΧωρίς το Αρχείο Συστήματος\n"
-
-#: standalone/drakbackup:2651
-#, fuzzy, c-format
-msgid "\tBackups use %s and bzip2\n"
-msgstr "\tΑντίγραφα Ασφαλείας ως tar και bzip2\n"
-
-#: standalone/drakbackup:2652
-#, fuzzy, c-format
-msgid "\tBackups use %s and gzip\n"
-msgstr "\tΑντίγραφα Ασφαλείας ως tar και gzip\n"
-
-#: standalone/drakbackup:2653
-#, fuzzy, c-format
-msgid "\tBackups use %s only\n"
-msgstr "\tΑντίγραφα Ασφαλείας ως tar και gzip\n"
-
-#: standalone/drakbackup:2655
-#, fuzzy, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "Αντίγραφα ασφαλείας άλλων αρχείων"
-
-#: standalone/drakbackup:2656
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2657
-#, c-format
-msgid "\tSend mail from %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2658
-#, fuzzy, c-format
-msgid "\tUsing SMTP server %s\n"
-msgstr "Στον εξυπηρετητή CUPS \"%s\""
-
-#: standalone/drakbackup:2660
-#, fuzzy, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
-msgstr ""
-"\n"
-"- Δαίμονας (%s) μαζί με :\n"
-
-#: standalone/drakbackup:2661
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-Σκληρός Δίσκος.\n"
-
-#: standalone/drakbackup:2662
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-R.\n"
-
-#: standalone/drakbackup:2663
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Ταινία \n"
-
-#: standalone/drakbackup:2664
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Δίκτυο μέσω FTP.\n"
-
-#: standalone/drakbackup:2665
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Δίκτυο μέσω SSH.\n"
-
-#: standalone/drakbackup:2666
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-Δίκτυο μέσω rsync.\n"
-
-#: standalone/drakbackup:2668
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Καμία ρύθμιση, κάντε κλικ στον Οδηγό ή στο Προχωρημένα.\n"
-
-#: standalone/drakbackup:2673
-#, c-format
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Λίστα των δεδομένων προς επαναφορά:\n"
-"\n"
-
-#: standalone/drakbackup:2675
-#, fuzzy, c-format
-msgid "- Restore System Files.\n"
-msgstr ""
-"\n"
-"- Αρχεία Συστήματος:\n"
-
-#: standalone/drakbackup:2677 standalone/drakbackup:2687
-#, c-format
-msgid " - from date: %s %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2680
-#, fuzzy, c-format
-msgid "- Restore User Files: \n"
-msgstr ""
-"\n"
-"- Αρχεία Χρηστών:\n"
-
-#: standalone/drakbackup:2685
-#, fuzzy, c-format
-msgid "- Restore Other Files: \n"
-msgstr ""
-"\n"
-"- Άλλα Αρχεία:\n"
-
-#: standalone/drakbackup:2864
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Λίστα των κατεστραμμένων δεδομένων:\n"
-"\n"
-
-#: standalone/drakbackup:2866
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Παρακαλώ αφαιρέστε το την επόμενη φορά."
-
-#: standalone/drakbackup:2876
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Τα αντίγραφα ασφαλείας είναι κατεστραμμένα"
-
-#: standalone/drakbackup:2897
-#, c-format
-msgid " All of your selected data have been "
-msgstr " Όλα τα επιλεγμένα δεδομένα έχουν "
-
-#: standalone/drakbackup:2898
-#, c-format
-msgid " Successfully Restored on %s "
-msgstr " Ανακτηθεί με επιτυχία στο %s "
-
-#: standalone/drakbackup:2999
-#, c-format
-msgid "/usr/bin/star not found, using tar..."
-msgstr ""
-
-#: standalone/drakbackup:3035
-#, c-format
-msgid " Restore Configuration "
-msgstr " Ρυθμίσεις Επαναφοράς "
-
-#: standalone/drakbackup:3063
-#, c-format
-msgid "OK to restore the other files."
-msgstr "Εντάξει για την επαναφορά των άλλων αρχείων."
-
-#: standalone/drakbackup:3079
-#, fuzzy, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr "χρήστης"
-
-#: standalone/drakbackup:3144
-#, fuzzy, c-format
-msgid "Please choose the date to restore:"
-msgstr "Παρακαλώ επιλέξτε την ημερομηνία επαναφοράς"
-
-#: standalone/drakbackup:3181
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Επαναφορά από τον σκληρό δίσκο."
-
-#: standalone/drakbackup:3183
-#, fuzzy, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Παρακαλώ εισάγετε τον κατάλογο που βρίσκονται τα αντίγραφα ασφαλείας"
-
-#: standalone/drakbackup:3187
-#, fuzzy, c-format
-msgid "Directory with backups"
-msgstr "Επαναφορά όλων των αντιγράφων ασφαλείας"
-
-#: standalone/drakbackup:3241
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Επιλέξτε άλλο μέσο για την ανάκτηση"
-
-#: standalone/drakbackup:3243
-#, c-format
-msgid "Other Media"
-msgstr "Άλλα Μέσα"
-
-#: standalone/drakbackup:3248
-#, c-format
-msgid "Restore system"
-msgstr "Επαναφορά συστήματος"
-
-#: standalone/drakbackup:3249
-#, c-format
-msgid "Restore Users"
-msgstr "Επαναφορά Χρηστών"
-
-#: standalone/drakbackup:3250
-#, c-format
-msgid "Restore Other"
-msgstr "Επαναφορά Άλλων"
-
-#: standalone/drakbackup:3252
-#, c-format
-msgid "Select path to restore (instead of /)"
-msgstr "επιλέξτε τη θέση επαναφοράς (αντί του /)"
-
-#: standalone/drakbackup:3256 standalone/drakbackup:3539
-#, fuzzy, c-format
-msgid "Path To Restore To"
-msgstr "Προσαρμοσμένη Επαναφορά"
-
-#: standalone/drakbackup:3259
-#, fuzzy, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Ολοκληρώθηκε νέο"
-
-#: standalone/drakbackup:3261
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Αφαίρεση καταλόγων χρηστών πριν από την επαναφορά."
-
-#: standalone/drakbackup:3345
-#, c-format
-msgid "Filename text substring to search for (empty string matches all):"
-msgstr ""
-
-#: standalone/drakbackup:3348
-#, c-format
-msgid "Search Backups"
-msgstr ""
-
-#: standalone/drakbackup:3367
-#, fuzzy, c-format
-msgid "No matches found..."
-msgstr "Δεν βρέθηκε εικόνα"
-
-#: standalone/drakbackup:3371
-#, fuzzy, c-format
-msgid "Restore Selected"
-msgstr ""
-"Επαναφορά Επιλεγμένων\n"
-"Αρχείων"
-
-#: standalone/drakbackup:3507
-#, c-format
-msgid ""
-"Click date/time to see backup files.\n"
-"Ctrl-Click files to select multiple files."
-msgstr ""
-
-#: standalone/drakbackup:3513
-#, fuzzy, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr "Επαναφορά\n"
-
-#: standalone/drakbackup:3522
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr ""
-"Επαναφορά Επιλεγμένων\n"
-"Αρχείων"
-
-#: standalone/drakbackup:3599
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "Τα αντίγραφα ασφαλείας δεν βρέθηκαν στο %s."
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid "Restore From CD"
-msgstr "Επαναφορά από CD"
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-
-#: standalone/drakbackup:3614
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr ""
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid "Restore From Tape"
-msgstr "Επαναφορά Από Ταινία"
-
-#: standalone/drakbackup:3624
-#, fuzzy, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-"\n"
-" συσκευή"
-
-#: standalone/drakbackup:3626
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network"
-msgstr "Επαναφορά μέσω δικτύου"
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Επαναφορά Μέσω Πρωτόκολλο Δικτύου: %s"
-
-#: standalone/drakbackup:3638
-#, c-format
-msgid "Host Name"
-msgstr "Όνομα Συστήματος"
-
-#: standalone/drakbackup:3639
-#, fuzzy, c-format
-msgid "Host Path or Module"
-msgstr "Σύστημα"
-
-#: standalone/drakbackup:3646
-#, c-format
-msgid "Password required"
-msgstr "Απαιτείται κωδικός πρόσβασης"
-
-#: standalone/drakbackup:3652
-#, c-format
-msgid "Username required"
-msgstr "Απαιτείται όνομα χρήστη"
-
-#: standalone/drakbackup:3655
-#, c-format
-msgid "Hostname required"
-msgstr "απαιτείται το δικτυακό όνομα"
-
-#: standalone/drakbackup:3660
-#, c-format
-msgid "Path or Module required"
-msgstr "Η Θέση ή το Άρθρωμα απαιτείται"
-
-#: standalone/drakbackup:3672
-#, c-format
-msgid "Files Restored..."
-msgstr ""
-
-#: standalone/drakbackup:3675
-#, c-format
-msgid "Restore Failed..."
-msgstr "Η Επαναφορά Απέτυχε..."
-
-#: standalone/drakbackup:3703
-#, fuzzy, c-format
-msgid "%s not retrieved..."
-msgstr "το %s δεν ανταποκρίνεται"
-
-#: standalone/drakbackup:3929 standalone/drakbackup:3998
-#, fuzzy, c-format
-msgid "Search for files to restore"
-msgstr "Επιλέξτε άλλο μέσο για την ανάκτηση"
-
-#: standalone/drakbackup:3933
-#, c-format
-msgid "Restore all backups"
-msgstr "Επαναφορά όλων των αντιγράφων ασφαλείας"
-
-#: standalone/drakbackup:3941
-#, c-format
-msgid "Custom Restore"
-msgstr "Προσαρμοσμένη Επαναφορά"
-
-#: standalone/drakbackup:3945 standalone/drakbackup:3994
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Επαναφορά από Κατάλογο"
-
-#: standalone/drakbackup:3966
-#, fuzzy, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Παρακαλώ επιλέξτε τα δεδομένα προς επαναφορά..."
-
-#: standalone/drakbackup:3967
-#, fuzzy, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Είναι σωστή η ρύθμιση;"
-
-#: standalone/drakbackup:3968
-#, c-format
-msgid " and the CD is in the drive"
-msgstr ""
-
-#: standalone/drakbackup:3970
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr ""
-
-#: standalone/drakbackup:3986
-#, c-format
-msgid "CD in place - continue."
-msgstr "Το CD είναι στη θέση του - συνέχεια"
-
-#: standalone/drakbackup:3991
-#, fuzzy, c-format
-msgid "Browse to new restore repository."
-msgstr "αναζήτηση νέο."
-
-#: standalone/drakbackup:3992
-#, fuzzy, c-format
-msgid "Directory To Restore From"
-msgstr "Επαναφορά από CD"
-
-#: standalone/drakbackup:4028
-#, c-format
-msgid "Restore Progress"
-msgstr "Πρόοδος Ανάκτησης"
-
-#: standalone/drakbackup:4136
-#, c-format
-msgid "Build Backup"
-msgstr "Δημιουργία αντιγράφων ασφαλείας"
-
-#: standalone/drakbackup:4169 standalone/drakbackup:4466
-#, c-format
-msgid "Restore"
-msgstr "Επαναφορά"
-
-#: standalone/drakbackup:4261
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Παρακαλώ επιλέξτε τα δεδομένα προς επαναφορά..."
-
-#: standalone/drakbackup:4301
-#, c-format
-msgid "Backup system files"
-msgstr "Αντίγραφα ασφαλείας του συστήματος αρχείων"
-
-#: standalone/drakbackup:4304
-#, c-format
-msgid "Backup user files"
-msgstr "Αντίγραφα ασφαλείας αρχείων χρηστών"
-
-#: standalone/drakbackup:4307
-#, c-format
-msgid "Backup other files"
-msgstr "Αντίγραφα ασφαλείας άλλων αρχείων"
-
-#: standalone/drakbackup:4310 standalone/drakbackup:4344
-#, c-format
-msgid "Total Progress"
-msgstr "Συνολική Πρόοδος"
-
-#: standalone/drakbackup:4336
-#, fuzzy, c-format
-msgid "Sending files by FTP"
-msgstr "Αποστολή αρχείων..."
-
-#: standalone/drakbackup:4339
-#, c-format
-msgid "Sending files..."
-msgstr "Αποστολή αρχείων..."
-
-#: standalone/drakbackup:4409
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Δημιουργία Αντιγράφων Ασφαλείας από το αρχείο ρυθμίσεων"
-
-#: standalone/drakbackup:4414
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Προβολή Ρυθμίσεων Αντιγράφων Ασφαλείας"
-
-#: standalone/drakbackup:4440
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Ρυθμίσεις Οδηγού"
-
-#: standalone/drakbackup:4445
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Προχωρημένες Ρυθμίσεις"
-
-#: standalone/drakbackup:4450
-#, fuzzy, c-format
-msgid "View Configuration"
-msgstr "Ρύθμιση"
-
-#: standalone/drakbackup:4454
-#, c-format
-msgid "View Last Log"
-msgstr ""
-
-#: standalone/drakbackup:4459
-#, c-format
-msgid "Backup Now"
-msgstr "Αντίγραφα ασφαλείας Τώρα"
-
-#: standalone/drakbackup:4463
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Δεν βρέθηκε ρύθμιση\n"
-"παρακαλώ κάντε κλικ στο Οδηγό ή στο Προχωρημένο."
-
-#: standalone/drakbackup:4501
-#, fuzzy, c-format
-msgid "Load profile"
-msgstr "Τοπικό αρχείο"
-
-#: standalone/drakbackup:4510
-#, fuzzy, c-format
-msgid "Save profile as..."
-msgstr "Αποθήκευση Ως.."
-
-#: standalone/drakbackup:4532 standalone/drakbackup:4535
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: standalone/drakboot:49
-#, c-format
-msgid "No bootloader found, creating a new configuration"
-msgstr ""
-
-#: standalone/drakboot:84 standalone/harddrake2:190 standalone/harddrake2:191
-#: standalone/logdrake:69 standalone/printerdrake:150
-#: standalone/printerdrake:151 standalone/printerdrake:152
-#, c-format
-msgid "/_File"
-msgstr "/_Αρχείο"
-
-#: standalone/drakboot:85 standalone/logdrake:75
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Αρχείο/Έ_ξοδος"
-
-#: standalone/drakboot:85 standalone/harddrake2:191 standalone/logdrake:75
-#: standalone/printerdrake:152
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: standalone/drakboot:125
-#, c-format
-msgid "Text only"
-msgstr ""
-
-#: standalone/drakboot:126
-#, c-format
-msgid "Verbose"
-msgstr ""
-
-#: standalone/drakboot:127
-#, c-format
-msgid "Silent"
-msgstr "Σιωπηλό"
-
-#: standalone/drakboot:134
-#, c-format
-msgid ""
-"Your system bootloader is not in framebuffer mode. To activate graphical "
-"boot, select a graphic video mode from the bootloader configuration tool."
-msgstr ""
-
-#: standalone/drakboot:135
-#, fuzzy, c-format
-msgid "Do you want to configure it now?"
-msgstr "Θέλετε να δοκιμάσετε τις ρυθμίσεις;"
-
-#: standalone/drakboot:144
-#, c-format
-msgid "Install themes"
-msgstr "Εγκατάσταση θεμάτων"
-
-#: standalone/drakboot:146
-#, fuzzy, c-format
-msgid "Graphical boot theme selection"
-msgstr "Επιλογή μοντέλου εκτυπωτή"
-
-#: standalone/drakboot:149
-#, fuzzy, c-format
-msgid "Graphical boot mode:"
-msgstr "Επιλογή μοντέλου εκτυπωτή"
-
-#: standalone/drakboot:151
-#, c-format
-msgid "Theme"
-msgstr "Θέμα"
-
-#: standalone/drakboot:154
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"Εμφάνιση θέματος\n"
-"στην κονσόλα"
-
-#: standalone/drakboot:159
-#, c-format
-msgid "Create new theme"
-msgstr "Δημιουργία νέου θέματος"
-
-#: standalone/drakboot:191
-#, fuzzy, c-format
-msgid "Default user"
-msgstr "Προεπιλεγμένος εκτυπωτής"
-
-#: standalone/drakboot:192
-#, fuzzy, c-format
-msgid "Default desktop"
-msgstr "Προεπιλεγμένο"
-
-#: standalone/drakboot:195
-#, c-format
-msgid "No, I do not want autologin"
-msgstr "Όχι, δεν επιθυμώ αυτόματη προσπέλαση"
-
-#: standalone/drakboot:196
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Ναι, επιθυμώ αυτόματη προσπέλαση με (χρήστης, περιβάλλον)"
-
-#: standalone/drakboot:203
-#, c-format
-msgid "System mode"
-msgstr "Κατάσταση συστήματος"
-
-#: standalone/drakboot:206
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Λειτουργία γραφικού περιβάλλοντος κατά την εκκίνηση του συστήματος"
-
-#: standalone/drakboot:272
-#, c-format
-msgid ""
-"Please choose a video mode, it will be applied to each of the boot entries "
-"selected below.\n"
-"Be sure your video card supports the mode you choose."
-msgstr ""
-
-#: standalone/drakbug:41
-#, fuzzy, c-format
-msgid "Mandriva Linux Bug Report Tool"
-msgstr "Εργαλείο Αναφοράς Σφαλμάτων Mandriva"
-
-#: standalone/drakbug:46
-#, c-format
-msgid "Mandriva Linux Control Center"
-msgstr "Κέντρο Ελέγχου Mandriva Linux"
-
-#: standalone/drakbug:48
-#, c-format
-msgid "Synchronization tool"
-msgstr "Εργαλείο Συγχρονισμού"
-
-#: standalone/drakbug:49 standalone/drakbug:152
-#, c-format
-msgid "Standalone Tools"
-msgstr "Ξεχωριστά Εργαλεία"
-
-#: standalone/drakbug:50
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: standalone/drakbug:51
-#, c-format
-msgid "Mandriva Online"
-msgstr "Mandriva Online"
-
-#: standalone/drakbug:52
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
-
-#: standalone/drakbug:53
-#, c-format
-msgid "Msec"
-msgstr "Msec"
-
-#: standalone/drakbug:54
-#, c-format
-msgid "Remote Control"
-msgstr "Απομακρυσμένος Έλεγχος"
-
-#: standalone/drakbug:55
-#, c-format
-msgid "Software Manager"
-msgstr "Διαχειριστής Λογισμικού"
-
-#: standalone/drakbug:56
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
-
-#: standalone/drakbug:57
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Εργαλείο Μετάβασης Windows "
-
-#: standalone/drakbug:58 standalone/draksambashare:1234
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: standalone/drakbug:59
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Οδηγοί Ρύθμισης"
-
-#: standalone/drakbug:81
-#, c-format
-msgid "Select Mandriva Tool:"
-msgstr ""
-
-#: standalone/drakbug:82
-#, c-format
-msgid ""
-"or Application Name\n"
-"(or Full Path):"
-msgstr ""
-
-#: standalone/drakbug:85
-#, c-format
-msgid "Find Package"
-msgstr "Εύρεση πακέτου"
-
-#: standalone/drakbug:87
-#, c-format
-msgid "Package: "
-msgstr "Πακέτο:"
-
-#: standalone/drakbug:88
-#, c-format
-msgid "Kernel:"
-msgstr "Πυρήνας:"
-
-#: standalone/drakbug:101
-#, c-format
-msgid ""
-"To submit a bug report, click on the report button. \n"
-"This will open a web browser window on %s where you'll find a form to fill "
-"in. The information displayed above will be transferred to that server. \n"
-"Things useful to include in your report are the output of lspci, kernel "
-"version, and /proc/cpuinfo."
-msgstr ""
-
-#: standalone/drakbug:107
-#, c-format
-msgid "Report"
-msgstr "Αναφορά"
-
-#: standalone/drakbug:162
-#, c-format
-msgid "Not installed"
-msgstr "Μη εγκατεστημένο"
-
-#: standalone/drakbug:174
-#, c-format
-msgid "Package not installed"
-msgstr "Το πακέτο δεν είναι εγκατεστημένο"
-
-#: standalone/drakclock:29
-#, fuzzy, c-format
-msgid "DrakClock"
-msgstr "Drakbackup"
-
-#: standalone/drakclock:39
-#, fuzzy, c-format
-msgid "not defined"
-msgstr "δεν ρυθμίστηκε"
-
-#: standalone/drakclock:41
-#, fuzzy, c-format
-msgid "Change Time Zone"
-msgstr "Ωρολογιακή Ζώνη"
-
-#: standalone/drakclock:45
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "Ζώνη ώρας - DrakClock"
-
-#: standalone/drakclock:47
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "GMT - DrakClock"
-
-#: standalone/drakclock:47 standalone/finish-install:57
-#, fuzzy, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Το ρολόι του υπολογιστή σας είναι ρυθμισμένο σε GMT (ώρα Γκρίνουιτς)"
-
-#: standalone/drakclock:75
-#, fuzzy, c-format
-msgid "Network Time Protocol"
-msgstr "Συσκευή δικτύου"
-
-#: standalone/drakclock:77
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-
-#: standalone/drakclock:78
-#, fuzzy, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Επαναφορά Μέσω Πρωτόκολλο Δικτύου: %s"
-
-#: standalone/drakclock:86
-#, c-format
-msgid "Server:"
-msgstr "Εξυπηρετητής:"
-
-#: standalone/drakclock:124
-#, c-format
-msgid "Could not synchronize with %s."
-msgstr ""
-
-#: standalone/drakclock:146 standalone/drakclock:156
-#, c-format
-msgid "Reset"
-msgstr "Αρχικοποίηση"
-
-#: standalone/drakclock:224
-#, fuzzy, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol\n"
-"\n"
-"Do you want to install ntp?"
-msgstr "Το πακέτο %s πρέπει να αναβαθμιστεί. Θέλετε να το εγκαταστήσετε;"
-
-#: standalone/drakconnect:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Ρύθμιση δικτύου (%d προσαρμογείς)"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Gateway:"
-msgstr "Πύλη δικτύου:"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Interface:"
-msgstr "Διεπαφή:"
-
-#: standalone/drakconnect:93 standalone/net_monitor:116
-#, c-format
-msgid "Wait please"
-msgstr "Παρακαλώ περιμένετε"
-
-#: standalone/drakconnect:109
-#, c-format
-msgid "Interface"
-msgstr "Διεπαφή"
-
-#: standalone/drakconnect:109 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "State"
-msgstr "Κατάσταση:"
-
-#: standalone/drakconnect:126
-#, c-format
-msgid "Hostname: "
-msgstr "Όνομα συστήματος: "
-
-#: standalone/drakconnect:128
-#, fuzzy, c-format
-msgid "Configure hostname..."
-msgstr "Ρύθμιση ποντικιού"
-
-#: standalone/drakconnect:142 standalone/drakconnect:845
-#, c-format
-msgid "LAN configuration"
-msgstr "Ρύθμιση LAN"
-
-#: standalone/drakconnect:147
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Ρύθμιση τοπικού δικτύου..."
-
-#: standalone/drakconnect:155 standalone/drakconnect:237
-#: standalone/drakconnect:241
-#, c-format
-msgid "Apply"
-msgstr "Εφαρμογή"
-
-#: standalone/drakconnect:188
-#, c-format
-msgid "Manage connections"
-msgstr "Διαχείριση Συνδέσεων"
-
-#: standalone/drakconnect:215
-#, fuzzy, c-format
-msgid "Device selected"
-msgstr "Αφαίρεση Επιλεγμένων"
-
-#: standalone/drakconnect:296
-#, fuzzy, c-format
-msgid "IP configuration"
-msgstr "Ρύθμιση CUPS"
-
-#: standalone/drakconnect:335
-#, fuzzy, c-format
-msgid "DNS servers"
-msgstr "Εξυπηρετητής DNS"
-
-#: standalone/drakconnect:343
-#, fuzzy, c-format
-msgid "Search Domain"
-msgstr "Τομέας NIS"
-
-#: standalone/drakconnect:351
-#, fuzzy, c-format
-msgid "static"
-msgstr "Αυτόματο IP"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "DHCP"
-msgstr "DHCP"
-
-#: standalone/drakconnect:515
-#, c-format
-msgid "Flow control"
-msgstr "Έλεγχος Ροής"
-
-#: standalone/drakconnect:516
-#, fuzzy, c-format
-msgid "Line termination"
-msgstr "Σταθμός Διαδικτύου"
-
-#: standalone/drakconnect:527
-#, fuzzy, c-format
-msgid "Modem timeout"
-msgstr "Τέλος Χρόνου Εκκίνησης Πυρήνα"
-
-#: standalone/drakconnect:531
-#, fuzzy, c-format
-msgid "Use lock file"
-msgstr "Επιλέξτε αρχείο"
-
-#: standalone/drakconnect:533
-#, c-format
-msgid "Wait for dialup tone before dialing"
-msgstr ""
-
-#: standalone/drakconnect:536
-#, fuzzy, c-format
-msgid "Busy wait"
-msgstr "Κουβέιτ"
-
-#: standalone/drakconnect:541
-#, fuzzy, c-format
-msgid "Modem sound"
-msgstr "Μόντεμ"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Enable"
-msgstr "Ενεργοποίηση"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Disable"
-msgstr "Απενεργ."
-
-#: standalone/drakconnect:593 standalone/harddrake2:50
-#, c-format
-msgid "Media class"
-msgstr "Κλάση Μέσου"
-
-#: standalone/drakconnect:594
-#, c-format
-msgid "Module name"
-msgstr "Όνομα αρθρώματος"
-
-#: standalone/drakconnect:595
-#, fuzzy, c-format
-msgid "Mac Address"
-msgstr "Διεύθυνση Μετάδοσης:"
-
-#: standalone/drakconnect:596 standalone/harddrake2:28
-#: standalone/harddrake2:120
-#, c-format
-msgid "Bus"
-msgstr "Bus"
-
-#: standalone/drakconnect:597 standalone/harddrake2:34
-#, c-format
-msgid "Location on the bus"
-msgstr "Θέση του διαύλου"
-
-#: standalone/drakconnect:700 standalone/drakgw:311
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Δεν βρέθηκε προσαρμογέας δικτύου Ethernet στο σύστημά σας. Παρακαλώ "
-"χρησιμοποιείστε το πρόγραμμα ρύθμισης υλικού."
-
-#: standalone/drakconnect:709
-#, fuzzy, c-format
-msgid "Remove a network interface"
-msgstr "Επιλέξτε συσκευή δικτύου"
-
-#: standalone/drakconnect:713
-#, fuzzy, c-format
-msgid "Select the network interface to remove:"
-msgstr "Επιλέξτε συσκευή δικτύου"
-
-#: standalone/drakconnect:745
-#, fuzzy, c-format
-msgid ""
-"An error occurred while deleting the \"%s\" network interface:\n"
-"\n"
-"%s"
-msgstr ""
-"Ένα πρόβλημα εμφανίστηκε κατά την επανεκκίνηση του δικτύου: \n"
-"\n"
-"%s"
-
-#: standalone/drakconnect:746
-#, c-format
-msgid ""
-"Congratulations, the \"%s\" network interface has been successfully deleted"
-msgstr ""
-
-#: standalone/drakconnect:761
-#, c-format
-msgid "No IP"
-msgstr ""
-
-#: standalone/drakconnect:762
-#, fuzzy, c-format
-msgid "No Mask"
-msgstr "Λάθος πακέτο"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "up"
-msgstr ""
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, fuzzy, c-format
-msgid "down"
-msgstr "Ολοκληρώθηκε"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Connected"
-msgstr "Συνδέθηκε"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Not connected"
-msgstr "Δε συνδέθηκε"
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Disconnect..."
-msgstr "Αποσύνδεση..."
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Connect..."
-msgstr "Σύνδεση..."
-
-#: standalone/drakconnect:841
-#, fuzzy, c-format
-msgid "Deactivate now"
-msgstr "απενεργοποίηση τώρα"
-
-#: standalone/drakconnect:841
-#, fuzzy, c-format
-msgid "Activate now"
-msgstr "ενεργοποίηση τώρα"
-
-#: standalone/drakconnect:849
-#, c-format
-msgid ""
-"You do not have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Δεν έχετε κάποια ρυθμισμένη διεπαφή.\n"
-"Ρυθμίστε την κάνοντας κλικ στο 'Ρύθμιση'"
-
-#: standalone/drakconnect:863
-#, c-format
-msgid "LAN Configuration"
-msgstr "Ρύθμιση LΑΝ"
-
-#: standalone/drakconnect:875
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Προσαρμογέας %s: %s"
-
-#: standalone/drakconnect:884
-#, c-format
-msgid "Boot Protocol"
-msgstr "Πρωτόκολλο Εκκίνησης"
-
-#: standalone/drakconnect:885
-#, c-format
-msgid "Started on boot"
-msgstr "Ξεκίνησαν στην εκκίνηση"
-
-#: standalone/drakconnect:921
-#, fuzzy, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Η διεπαφή δεν έχει ρυθμιστή ακόμα. \n"
-"Εκτελέστε τον οδηγό ρύθμισης στην κυρίως οθόνη"
-
-#: standalone/drakconnect:975 standalone/net_applet:51
-#, fuzzy, c-format
-msgid ""
-"You do not have any configured Internet connection.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-"Η διεπαφή δεν έχει ρυθμιστή ακόμα. \n"
-"Εκτελέστε τον οδηγό ρύθμισης στην κυρίως οθόνη"
-
-#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: standalone/drakconnect:976 standalone/drakroam:34 standalone/net_applet:52
-#, fuzzy, c-format
-msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
-msgstr "Επιλέξτε συσκευή δικτύου"
-
-#: standalone/drakconnect:981
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Ρύθμιση σύνδεσης Διαδικτύου"
-
-#: standalone/drakconnect:994
-#, fuzzy, c-format
-msgid "Third DNS server (optional)"
-msgstr "Πρώτος εξυπηρετητής DNS (προαιρετικό)"
-
-#: standalone/drakconnect:1016
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Ρύθμιση Σύνδεσης Διαδικτύου"
-
-#: standalone/drakconnect:1017
-#, c-format
-msgid "Internet access"
-msgstr "Πρόσβαση στο Διαδίκτυο"
-
-#: standalone/drakconnect:1019 standalone/net_monitor:95
-#, c-format
-msgid "Connection type: "
-msgstr "Τύπος σύνδεσης: "
-
-#: standalone/drakconnect:1022
-#, c-format
-msgid "Status:"
-msgstr "Κατάσταση:"
-
-#: standalone/drakconnect:1027
-#, c-format
-msgid "Parameters"
-msgstr "Παράμετροι"
-
-#: standalone/drakedm:40
-#, c-format
-msgid "GDM (GNOME Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:41
-#, c-format
-msgid "KDM (KDE Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:42
-#, fuzzy, c-format
-msgid "XDM (X Display Manager)"
-msgstr "Επιλέγοντας έναν διαχειριστή προβολής"
-
-#: standalone/drakedm:53
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Επιλέγοντας έναν διαχειριστή προβολής"
-
-#: standalone/drakedm:54
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"Ο Διαχειριστής Προβολής X11 σας επιτρέπει να συνδεθείτε\n"
-"με γραφικό τρόπο στο σύστημά σας με το Σύστημα Παραθύρου Χ να υποστηρίζει\n"
-"ταυτόχρονες διαφορετικές συνεδρίες Χ στο μηχάνημά σας."
-
-#: standalone/drakedm:72
-#, fuzzy, c-format
-msgid "The change is done, do you want to restart the dm service?"
-msgstr "Το δίκτυο πρέπει να επανεκκινηθεί, Θέλετε να το επανεκκινήσετε ;"
-
-#: standalone/drakedm:73
-#, c-format
-msgid ""
-"You are going to close all running programs and lose your current session. "
-"Are you really sure that you want to restart the dm service?"
-msgstr ""
-
-#: standalone/drakfont:182
-#, c-format
-msgid "Search installed fonts"
-msgstr "Αναζήτηση εγκατεστημένων γραμματοσειρών"
-
-#: standalone/drakfont:184
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "Οι αποεπιλεγμένες γραμματοσειρές εγκαταστάθηκαν"
-
-#: standalone/drakfont:207
-#, c-format
-msgid "parse all fonts"
-msgstr "ανάλυση όλων των γραμματοσειρών"
-
-#: standalone/drakfont:209
-#, fuzzy, c-format
-msgid "No fonts found"
-msgstr "δεν βρέθηκαν γραμματοσειρές"
-
-#: standalone/drakfont:217 standalone/drakfont:259 standalone/drakfont:326
-#: standalone/drakfont:359 standalone/drakfont:367 standalone/drakfont:393
-#: standalone/drakfont:411 standalone/drakfont:425
-#, c-format
-msgid "done"
-msgstr "Ολοκληρώθηκε"
-
-#: standalone/drakfont:222
-#, fuzzy, c-format
-msgid "Could not find any font in your mounted partitions"
-msgstr "δεν βρέθηκαν γραμματοσειρές στις προσαρτημένες κατατμήσεις"
-
-#: standalone/drakfont:257
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Ξαναεπιλέξτε τις σωστές γραμματοσειρές"
-
-#: standalone/drakfont:260
-#, fuzzy, c-format
-msgid "Could not find any font.\n"
-msgstr "δεν βρέθηκε καμία γραμματοσειρά\n"
-
-#: standalone/drakfont:270
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Αναζήτηση γραμματοσειρών στην λίστα εγκατάστασης"
-
-#: standalone/drakfont:295
-#, fuzzy, c-format
-msgid "%s fonts conversion"
-msgstr "μετατροπή γραμματοσειρών pfm"
-
-#: standalone/drakfont:324
-#, c-format
-msgid "Fonts copy"
-msgstr "Αντιγραφή Γραμματοσειρών"
-
-#: standalone/drakfont:327
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Εγκατάσταση γραμματοσειρών True Type"
-
-#: standalone/drakfont:334
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "παρακαλώ περιμένετε κατά το ttmkfdir..."
-
-#: standalone/drakfont:335
-#, c-format
-msgid "True Type install done"
-msgstr "Η εγκατάστασης True Type ολοκληρώθηκε"
-
-#: standalone/drakfont:341 standalone/drakfont:356
-#, c-format
-msgid "type1inst building"
-msgstr "δημιουργία type1inst"
-
-#: standalone/drakfont:350
-#, fuzzy, c-format
-msgid "Ghostscript referencing"
-msgstr "Ghostscript"
-
-#: standalone/drakfont:360
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr ""
-
-#: standalone/drakfont:363
-#, c-format
-msgid "Restart XFS"
-msgstr "Επανεκκίνηση XFS"
-
-#: standalone/drakfont:409 standalone/drakfont:419
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: standalone/drakfont:421
-#, c-format
-msgid "xfs restart"
-msgstr "επανεκκίνηση xfs"
-
-#: standalone/drakfont:429
-#, fuzzy, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
-"Πριν εγκαταστήσετε τις γραμματοσειρές, βεβαιωθείτε ότι έχετε το δικαίωμα να "
-"κάνετε χρήση αυτών των γραμματοσειρών καθώς και να τις εγκαταστήσετε στον "
-"υπολογιστή σας\n"
-"\n"
-"-Μπορείτε να εγκαταστήσετε τις γραμματοσειρές κανονικά. Σε σπάνιες "
-"περιπτώσεις, εικονικές γραμματοσειρές μπορούν να παγώσουν τον εξυπηρετητή Χ."
-
-#: standalone/drakfont:473 standalone/drakfont:482
-#, c-format
-msgid "DrakFont"
-msgstr ""
-
-#: standalone/drakfont:483
-#, c-format
-msgid "Font List"
-msgstr "Λίστα Γραμματοσειρών"
-
-#: standalone/drakfont:486
-#, c-format
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: standalone/drakfont:492
-#, c-format
-msgid "About"
-msgstr "Περί"
-
-#: standalone/drakfont:494 standalone/drakfont:718
-#, c-format
-msgid "Uninstall"
-msgstr "Απεγκατάσταση"
-
-#: standalone/drakfont:495
-#, c-format
-msgid "Import"
-msgstr "Εισαγωγή"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakfont:513
-#, c-format
-msgid "Copyright (C) 2001-2006 by Mandriva"
-msgstr ""
-
-#: standalone/drakfont:515
-#, fuzzy, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-"\n"
-" Γενικά Άδεια\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Γενικά Άδεια\n"
-"\n"
-" ληφθέντα Γενικά Άδεια\n"
-"\n"
-
-#: standalone/drakfont:531
-#, c-format
-msgid ""
-"Thanks:\n"
-"\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
-msgstr ""
-
-#: standalone/drakfont:550
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Επιλέξτε τις εφαρμογές που θα υποστηρίζουν τις γραμματοσειρές :"
-
-#: standalone/drakfont:561
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: standalone/drakfont:562
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: standalone/drakfont:563
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
-
-#: standalone/drakfont:564
-#, c-format
-msgid "Generic Printers"
-msgstr "Γενικοί Εκτυπωτές"
-
-#: standalone/drakfont:578
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-"Επιλέξτε το αρχείο γραμματοσειρές ή τον κατάλογο και κάντε κλικ στο "
-"'Προσθήκη'"
-
-#: standalone/drakfont:579
-#, c-format
-msgid "File Selection"
-msgstr "Επιλογή Αρχείου"
-
-#: standalone/drakfont:583
-#, c-format
-msgid "Fonts"
-msgstr "Γραμματοσειρές"
-
-#: standalone/drakfont:646
-#, fuzzy, c-format
-msgid "Import fonts"
-msgstr "Εισαγωγή Γραμματοσειρών"
-
-#: standalone/drakfont:651
-#, fuzzy, c-format
-msgid "Install fonts"
-msgstr "Απεγκατάσταση Γραμματοσειρών"
-
-#: standalone/drakfont:681
-#, c-format
-msgid "Are you sure you want to uninstall the following fonts?"
-msgstr ""
-
-#: standalone/drakfont:726
-#, c-format
-msgid "Unselected All"
-msgstr "Αποεπιλογή Όλων"
-
-#: standalone/drakfont:729
-#, c-format
-msgid "Selected All"
-msgstr "Επιλογή Όλων"
-
-#: standalone/drakfont:743 standalone/drakfont:762
-#, fuzzy, c-format
-msgid "Importing fonts"
-msgstr "Εισαγωγή Γραμματοσειρών"
-
-#: standalone/drakfont:747 standalone/drakfont:767
-#, c-format
-msgid "Initial tests"
-msgstr "Αρχικά τεστ"
-
-#: standalone/drakfont:748
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Αντιγραφή γραμματοσειρών στο σύστημά σας"
-
-#: standalone/drakfont:749
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Εγκατάσταση & μετατροπή Γραμματοσειρών"
-
-#: standalone/drakfont:750
-#, c-format
-msgid "Post Install"
-msgstr ""
-
-#: standalone/drakfont:768
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Αφαίρεση γραμματοσειρών από το σύστημά σας"
-
-#: standalone/drakfont:769
-#, c-format
-msgid "Post Uninstall"
-msgstr ""
-
-#: standalone/drakgw:50 standalone/drakvpn:51
-#, fuzzy, c-format
-msgid "Sorry, we support only 2.4 and above kernels."
-msgstr "Λυπάμαι, υποστηρίζονται μόνο οι πυρήνες 2.4"
-
-#: standalone/drakgw:75
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Κοινή Σύνδεση Διαδικτύου"
-
-#: standalone/drakgw:79
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Πρόκειται να ρυθμίσετε τον υπολογιστή σας για να μοιράζεται την σύνδεσή του "
-"στο Διαδίκτυο.\n"
-"Με αυτή τη δυνατότητα άλλοι υπολογιστές στο τοπικό σας δίκτυο θα μπορούν "
-"νακάνουν χρήση της σύνδεσης αυτού του υπολογιστή στο Διαδίκτυο.\n"
-" \n"
-"Βεβαιωθείτε ότι έχετε ρυθμίσει το Δίκτυο/Πρόσβαση Διαδικτύου με τη χρήση του "
-"drakconnect πριν προχωρήσετε.\n"
-"\n"
-"Σημ. Θα πρέπει να έχετε μια κάρτα δικτύου για να ρυθμίσετε το Τοπικό σας "
-"Δίκτυο (LAN)."
-
-#: standalone/drakgw:95
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Η ρύθμιση της κοινής σύνδεσης του Διαδικτύου έχει ήδη γίνει.\n"
-"Αυτή τη στιγμή είναι ενεργή.\n"
-"\n"
-"Τι θέλετε να κάνετε;"
-
-#: standalone/drakgw:99
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Η ρύθμιση της κοινής χρήσης διαδικτύου έχει ήδη γίνει.\n"
-"Είναι απενεργοποιημένη.\n"
-"\n"
-"Τι θέλετε να κάνετε:"
-
-#: standalone/drakgw:105
-#, fuzzy, c-format
-msgid "Reconfigure"
-msgstr "επαναρύθμιση"
-
-#: standalone/drakgw:145
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Υπάρχει μόνο ένας ρυθμισμένος προσαρμογέας δικτύου στο σύστημά σας:\n"
-"\n"
-"%s\n"
-"\n"
-"Θα ρυθμιστεί το Τοπικό σας Δίκτυο με αυτόν τον προσαρμογέα."
-
-#: standalone/drakgw:156
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Παρακαλώ επιλέξτε τι προσαρμογέας δικτύου θα συνδεθεί στο τοπικό σας δίκτυο."
-
-#: standalone/drakgw:177
-#, fuzzy, c-format
-msgid "Local Area Network settings"
-msgstr "Τοπική διεύθυνση δικτύου"
-
-#: standalone/drakgw:180
-#, c-format
-msgid "Local IP address"
-msgstr ""
-
-#: standalone/drakgw:182
-#, c-format
-msgid "The internal domain name"
-msgstr "Το εσωτερικό όνομα τομέα"
-
-#: standalone/drakgw:188
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Πιθανή διπλής διεύθυνσης LAN στην τρέχουσα ρύθμιση του %s!\n"
-
-#: standalone/drakgw:204
-#, fuzzy, c-format
-msgid "Domain Name Server (DNS) configuration"
-msgstr "Ρύθμιση του Διακομιστή Τερματικού Mandriva"
-
-#: standalone/drakgw:208
-#, c-format
-msgid "Use this gateway as domain name server"
-msgstr ""
-
-#: standalone/drakgw:209
-#, c-format
-msgid "The DNS Server IP"
-msgstr "Η IP του εξυπηρετητή DNS"
-
-#: standalone/drakgw:236
-#, fuzzy, c-format
-msgid ""
-"DHCP Server Configuration.\n"
-"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you do not know the meaning of an option, simply leave it as it is."
-msgstr ""
-"Ρύθμιση Εξυπηρετητή DHCP\n"
-"\n"
-"Εδώ μπορείτε επιλέξετε τις διάφορες επιλογές στη ρύθμιση του εξυπηρετητή "
-"DHCP\n"
-"Αν δεν ξέρετε τι σημαίνει αυτό, απλά αφήστε το ως έχει\n"
-"\n"
-
-#: standalone/drakgw:243
-#, fuzzy, c-format
-msgid "Use automatic configuration (DHCP)"
-msgstr "Αυτόματη επαναρύθμισης"
-
-#: standalone/drakgw:244
-#, c-format
-msgid "The DHCP start range"
-msgstr "To όριο εκκίνησης DHCP"
-
-#: standalone/drakgw:245
-#, c-format
-msgid "The DHCP end range"
-msgstr "To όριο τερματισμού DHCP"
-
-#: standalone/drakgw:246
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Η προκαθορισμένη μίσθωση (σε δευτερόλεπτα)"
-
-#: standalone/drakgw:247
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Η μέγιστη μίσθωση (σε δευτερόλεπτα)"
-
-#: standalone/drakgw:270
-#, c-format
-msgid "Proxy caching server (SQUID)"
-msgstr ""
-
-#: standalone/drakgw:274
-#, c-format
-msgid "Use this gateway as proxy caching server"
-msgstr ""
-
-#: standalone/drakgw:275
-#, c-format
-msgid "Admin mail"
-msgstr ""
-
-#: standalone/drakgw:276
-#, fuzzy, c-format
-msgid "Visible hostname"
-msgstr "Απομακρυσμένο δικτυακό όνομα"
-
-#: standalone/drakgw:277
-#, fuzzy, c-format
-msgid "Proxy port"
-msgstr "Ιδιότητα"
-
-#: standalone/drakgw:278
-#, fuzzy, c-format
-msgid "Cache size (MB)"
-msgstr "μέγεθος Cache"
-
-#: standalone/drakgw:300
-#, fuzzy, c-format
-msgid "Broadcast printer information"
-msgstr "Πληροφορίες σκληρού δίσκου"
-
-#: standalone/drakgw:317
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Η Κοινή Σύνδεση στο Διαδίκτυο τώρα ενεργοποιήθηκε."
-
-#: standalone/drakgw:323
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Η Κοινή Σύνδεση Διαδικτύου τώρα απενεργοποιήθηκε."
-
-#: standalone/drakgw:329
-#, fuzzy, c-format
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP) and\n"
-" a Transparent Proxy Cache server (SQUID)."
-msgstr ""
-"Όλα έχουν ρυθμιστεί.\n"
-"Μπορείτε τώρα να μοιράζεστε τη σύνδεσή σας στο Διαδίκτυο με άλλους "
-"υπολογιστές στο τοπικό σας δίκτυο, με την χρήση αυτόματης ρύθμισης δικτύου "
-"(DHCP)."
-
-#: standalone/drakgw:363
-#, c-format
-msgid "Disabling servers..."
-msgstr "Απενεργοποίηση εξυπηρετητών..."
-
-#: standalone/drakgw:377
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Ανιχνεύθηκε ρύθμιση του Τοίχους Προστασίας!"
-
-#: standalone/drakgw:378
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-"Προσοχή! Ανιχνεύθηκε μια ήδη υπάρχουσα ρύθμιση Τοίχους Προστασίας. Ίσως "
-"χρειαστούν ορισμένες χειροκίνητες ρυθμίσεις μετά την εγκατάσταση."
-
-#: standalone/drakgw:383
-#, c-format
-msgid "Configuring..."
-msgstr "Ρύθμιση..."
-
-#: standalone/drakgw:384
-#, c-format
-msgid "Configuring firewall..."
-msgstr ""
-
-#: standalone/drakhelp:17
-#, c-format
-msgid ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"\n"
-"Usage: \n"
-msgstr ""
-
-#: standalone/drakhelp:22
-#, c-format
-msgid " --help - display this help \n"
-msgstr ""
-
-#: standalone/drakhelp:23
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr ""
-
-#: standalone/drakhelp:24
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-
-#: standalone/drakhelp:51
-#, fuzzy, c-format
-msgid "Mandriva Linux Help Center"
-msgstr "Κέντρο Ελέγχου Mandriva"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "No Help entry for %s\n"
-msgstr ""
-
-#: standalone/drakhosts:98
-#, c-format
-msgid "Please add an host to be able to modify it."
-msgstr ""
-
-#: standalone/drakhosts:108
-#, fuzzy, c-format
-msgid "Please modify information"
-msgstr "Λεπτομερείς πληροφορίες"
-
-#: standalone/drakhosts:109
-#, fuzzy, c-format
-msgid "Please delete information"
-msgstr "Λεπτομερείς πληροφορίες"
-
-#: standalone/drakhosts:110
-#, fuzzy, c-format
-msgid "Please add information"
-msgstr "Λεπτομερείς πληροφορίες"
-
-#: standalone/drakhosts:115
-#, c-format
-msgid "IP address:"
-msgstr "Διεύθυνση IP:"
-
-#: standalone/drakhosts:116
-#, c-format
-msgid "Host name:"
-msgstr ""
-
-#: standalone/drakhosts:117
-#, c-format
-msgid "Host Aliases:"
-msgstr ""
-
-#: standalone/drakhosts:123
-#, c-format
-msgid "Please enter a valid IP address."
-msgstr "Παρακαλώ εισάγετε μια έγκυρη διεύθυνση IP "
-
-#: standalone/drakhosts:129
-#, c-format
-msgid "Same IP is already in %s file."
-msgstr ""
-
-#: standalone/drakhosts:197
-#, c-format
-msgid "Host Aliases"
-msgstr ""
-
-#: standalone/drakhosts:237
-#, c-format
-msgid "DrakHOSTS manage hosts definitions"
-msgstr ""
-
-#: standalone/drakhosts:246
-#, c-format
-msgid "Failed to add host."
-msgstr ""
-
-#: standalone/drakhosts:253
-#, c-format
-msgid "Failed to Modify host."
-msgstr ""
-
-#: standalone/drakhosts:260
-#, c-format
-msgid "Failed to remove host."
-msgstr ""
-
-#: standalone/drakids:26
-#, fuzzy, c-format
-msgid "Allowed addresses"
-msgstr "Επιτρέπεται για όλους τους χρήστες"
-
-#: standalone/drakids:57
-#, c-format
-msgid "Log"
-msgstr "Καταγραφή"
-
-#: standalone/drakids:61
-#, fuzzy, c-format
-msgid "Clear logs"
-msgstr "Καθαρισμός όλων"
-
-#: standalone/drakids:62 standalone/drakids:67 standalone/net_applet:470
-#, c-format
-msgid "Blacklist"
-msgstr ""
-
-#: standalone/drakids:63 standalone/drakids:80 standalone/net_applet:475
-#, c-format
-msgid "Whitelist"
-msgstr ""
-
-#: standalone/drakids:71
-#, fuzzy, c-format
-msgid "Remove from blacklist"
-msgstr "Αφαίρεση από το LVM"
-
-#: standalone/drakids:72
-#, c-format
-msgid "Move to whitelist"
-msgstr ""
-
-#: standalone/drakids:84
-#, fuzzy, c-format
-msgid "Remove from whitelist"
-msgstr "Αφαίρεση από το LVM"
-
-#: standalone/drakids:136 standalone/drakids:145 standalone/drakids:170
-#: standalone/drakids:179 standalone/drakids:189 standalone/drakids:265
-#: standalone/drakroam:182 standalone/net_applet:202 standalone/net_applet:385
-#, fuzzy, c-format
-msgid "Unable to contact daemon"
-msgstr "Αδυναμία fork: %s"
-
-#: standalone/drakids:202
-#, c-format
-msgid "Date"
-msgstr "Ημερομηνία"
-
-#: standalone/drakids:203
-#, fuzzy, c-format
-msgid "Attacker"
-msgstr "Χωρίς λεπτομέρειες"
-
-#: standalone/drakids:204
-#, fuzzy, c-format
-msgid "Attack type"
-msgstr "Τύπος πρόσβασης: %s\n"
-
-#: standalone/drakids:205
-#, c-format
-msgid "Service"
-msgstr "Υπηρεσία"
-
-#: standalone/drakids:206 standalone/net_applet:72
-#, c-format
-msgid "Network interface"
-msgstr "Συσκευή δικτύου"
-
-#: standalone/draknfs:41
-#, c-format
-msgid "map root user as anonymous"
-msgstr ""
-
-#: standalone/draknfs:42
-#, c-format
-msgid "map all users to anonymous user"
-msgstr ""
-
-#: standalone/draknfs:43
-#, c-format
-msgid "No user UID mapping"
-msgstr ""
-
-#: standalone/draknfs:44
-#, c-format
-msgid "allow real remote root access"
-msgstr ""
-
-#: standalone/draknfs:83
-#, c-format
-msgid "NFS server"
-msgstr "Εξυπηρετητής NFS"
-
-#: standalone/draknfs:83
-#, c-format
-msgid "Restarting/Reloading NFS server..."
-msgstr ""
-
-#: standalone/draknfs:84
-#, c-format
-msgid "Error Restarting/Reloading NFS server"
-msgstr ""
-
-#: standalone/draknfs:100 standalone/draksambashare:203
-#, c-format
-msgid "Directory Selection"
-msgstr ""
-
-#: standalone/draknfs:105 standalone/draksambashare:208
-#, c-format
-msgid "Should be a directory."
-msgstr "Πρέπει να είναι κατάλογος."
-
-#: standalone/draknfs:136
-#, c-format
-msgid ""
-"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
-"ways:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">single host:</span> a host either by an "
-"abbreviated name recognized be the resolver, fully qualified domain name, or "
-"an IP address\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">netgroups:</span> NIS netgroups may be given "
-"as @group.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">wildcards:</span> machine names may contain "
-"the wildcard characters * and ?. For instance: *.cs.foo.edu matches all "
-"hosts in the domain cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP networks:</span> you can also export "
-"directories to all hosts on an IP (sub-)network simultaneously. for example, "
-"either `/255.255.252.0' or `/22' appended to the network base address "
-"result.\n"
-msgstr ""
-
-#: standalone/draknfs:151
-#, c-format
-msgid ""
-"<span weight=\"bold\">User ID options</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map root user as anonymous:</span> map "
-"requests from uid/gid 0 to the anonymous uid/gid (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">allow real remote root access:</span> turn "
-"off root squashing. This option is mainly useful for diskless clients "
-"(no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map all users to anonymous user:</span> map "
-"all uids and gids to the anonymous user (all_squash). Useful for NFS-"
-"exported public FTP directories, news spool directories, etc. The opposite "
-"option is no user UID mapping (no_all_squash), which is the default "
-"setting.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid and anongid:</span> explicitly set "
-"the uid and gid of the anonymous account.\n"
-msgstr ""
-
-#: standalone/draknfs:167
-#, c-format
-msgid "Synchronous access:"
-msgstr ""
-
-#: standalone/draknfs:168
-#, c-format
-msgid "Secured Connection:"
-msgstr ""
-
-#: standalone/draknfs:169
-#, c-format
-msgid "Read-Only share:"
-msgstr ""
-
-#: standalone/draknfs:171
-#, c-format
-msgid "<span weight=\"bold\">Advanced Options</span>"
-msgstr ""
-
-#: standalone/draknfs:172
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> this option requires that "
-"requests originate on an internet port less than IPPORT_RESERVED (1024). "
-"This option is on by default."
-msgstr ""
-
-#: standalone/draknfs:173
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> allow either only read or both "
-"read and write requests on this NFS volume. The default is to disallow any "
-"request which changes the filesystem. This can also be made explicit by "
-"using this option."
-msgstr ""
-
-#: standalone/draknfs:174
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> disallows the NFS server to "
-"violate the NFS protocol and to reply to requests before any changes made by "
-"these requests have been committed to stable storage (e.g. disc drive)."
-msgstr ""
-
-#: standalone/draknfs:306
-#, c-format
-msgid "Please add an NFS share to be able to modify it."
-msgstr ""
-
-#: standalone/draknfs:378
-#, fuzzy, c-format
-msgid "Advanced Options Help"
-msgstr "Προχωρημένες Ρυθμίσεις"
-
-#: standalone/draknfs:389
-#, c-format
-msgid "NFS directory"
-msgstr ""
-
-#: standalone/draknfs:391 standalone/draksambashare:592
-#: standalone/draksambashare:771
-#, c-format
-msgid "Directory:"
-msgstr "Κατάλογος:"
-
-#: standalone/draknfs:394
-#, c-format
-msgid "Host access"
-msgstr ""
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Access:"
-msgstr "Πρόσβαση:"
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Hosts Access"
-msgstr ""
-
-#: standalone/draknfs:399
-#, c-format
-msgid "User ID Mapping"
-msgstr ""
-
-#: standalone/draknfs:401
-#, c-format
-msgid "User ID:"
-msgstr "Ταυτότητα χρήστη:"
-
-#: standalone/draknfs:401
-#, c-format
-msgid "Help User ID"
-msgstr ""
-
-#: standalone/draknfs:402
-#, c-format
-msgid "Anonymous user ID:"
-msgstr ""
-
-#: standalone/draknfs:403
-#, c-format
-msgid "Anonymous Group ID:"
-msgstr ""
-
-#: standalone/draknfs:444
-#, c-format
-msgid "Can't create this directory."
-msgstr ""
-
-#: standalone/draknfs:447
-#, c-format
-msgid "You must specify hosts access."
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Share Directory"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Hosts Wildcard"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "General Options"
-msgstr "Γενικές επιλογές"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Custom Options"
-msgstr "Επιλογές προσαρμογής"
-
-#: standalone/draknfs:539 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Please enter a directory to share."
-msgstr ""
-
-#: standalone/draknfs:546
-#, c-format
-msgid "Please use the modify button to set right access."
-msgstr ""
-
-#: standalone/draknfs:600
-#, c-format
-msgid "DrakNFS manage NFS shares"
-msgstr ""
-
-#: standalone/draknfs:609
-#, c-format
-msgid "Failed to add NFS share."
-msgstr ""
-
-#: standalone/draknfs:616
-#, c-format
-msgid "Failed to Modify NFS share."
-msgstr ""
-
-#: standalone/draknfs:623
-#, c-format
-msgid "Failed to remove an NFS share."
-msgstr ""
-
-#: standalone/drakperm:21
-#, c-format
-msgid "System settings"
-msgstr "Ρυθμίσεις συστήματος"
-
-#: standalone/drakperm:22
-#, fuzzy, c-format
-msgid "Custom settings"
-msgstr "Προσαρμοσμένες κατατμήσεις δίσκου"
-
-#: standalone/drakperm:23
-#, fuzzy, c-format
-msgid "Custom & system settings"
-msgstr "Προσαρμοσμένες κατατμήσεις δίσκου"
-
-#: standalone/drakperm:43
-#, c-format
-msgid "Editable"
-msgstr "Επεξεργάσιμο"
-
-#: standalone/drakperm:48 standalone/drakperm:323
-#: standalone/draksambashare:101
-#, c-format
-msgid "Path"
-msgstr "Θέση"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "User"
-msgstr "Χρήστης"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "Group"
-msgstr "Ομάδα"
-
-#: standalone/drakperm:48 standalone/drakperm:335
-#, c-format
-msgid "Permissions"
-msgstr "Δικαιώματα"
-
-#: standalone/drakperm:57
-#, c-format
-msgid "Add a new rule"
-msgstr ""
-
-#: standalone/drakperm:64 standalone/drakperm:99 standalone/drakperm:124
-#, c-format
-msgid "Edit current rule"
-msgstr ""
-
-#: standalone/drakperm:106
-#, fuzzy, c-format
-msgid ""
-"Here you can see files to use in order to fix permissions, owners, and "
-"groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
-msgstr ""
-"Το Drakperm χρησιμοποιείται για να δείτε τα αρχεία που χρειάζεστε για να "
-"φτιάξετε δικαιώματα, ιδιοκτήτες και ομάδες με το msec.\n"
-"Επίσης μπορείτε να επεξεργαστείτε τους δικούς σας κανόνες που θα "
-"αντικαταστήσουν τους προεπιλεγμένους κανόνες."
-
-#: standalone/drakperm:109
-#, c-format
-msgid ""
-"The current security level is %s.\n"
-"Select permissions to see/edit"
-msgstr ""
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Up"
-msgstr "Πάνω"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Μετακίνηση του επιλεγμένου κανόνα ένα επίπεδο πάνω"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Down"
-msgstr "Κάτω"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Μετακίνηση του επιλεγμένου κανόνα ένα επίπεδο κάτω"
-
-#: standalone/drakperm:122
-#, fuzzy, c-format
-msgid "Add a rule"
-msgstr "Προσθήκη ενός κανόνα"
-
-#: standalone/drakperm:122
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Προσθήκη νέου κανόνα στο τέλος"
-
-#: standalone/drakperm:123
-#, c-format
-msgid "Delete selected rule"
-msgstr "Διαγραφή επιλεγμένου κανόνα"
-
-#: standalone/drakperm:242
-#, c-format
-msgid "browse"
-msgstr "αναζήτηση"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "user"
-msgstr "χρήστης"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "group"
-msgstr "ομάδα"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "other"
-msgstr "άλλο"
-
-#: standalone/drakperm:252
-#, c-format
-msgid "Read"
-msgstr "Αναγνωσμένα"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:255
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr ""
-
-#: standalone/drakperm:259
-#, c-format
-msgid "Write"
-msgstr "Εγγραφή"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:262
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr ""
-
-#: standalone/drakperm:266
-#, c-format
-msgid "Execute"
-msgstr "Εκτέλεση"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:269
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr ""
-
-#: standalone/drakperm:272
-#, c-format
-msgid "Sticky-bit"
-msgstr ""
-
-#: standalone/drakperm:272
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Set-UID"
-msgstr "Ορισμός UID"
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Χρήση id κατόχου για εκτέλεση"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Set-GID"
-msgstr "Ορισμός GID"
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Use group id for execution"
-msgstr "Χρήση id ομάδας για εκτέλεση"
-
-#: standalone/drakperm:292 standalone/drakxtv:89
-#, c-format
-msgid "User:"
-msgstr "Χρήστης:"
-
-#: standalone/drakperm:294
-#, c-format
-msgid "Group:"
-msgstr "Ομάδα:"
-
-#: standalone/drakperm:298
-#, c-format
-msgid "Current user"
-msgstr "Τρέχον χρήστη"
-
-#: standalone/drakperm:299
-#, fuzzy, c-format
-msgid "When checked, owner and group will not be changed"
-msgstr "όταν επιλεγεί, ο ιδιοκτήτης και ομάδα δεν θα αλλάξουν"
-
-#: standalone/drakperm:309
-#, c-format
-msgid "Path selection"
-msgstr "Επιλογή Θέσης"
-
-#: standalone/drakperm:329
-#, c-format
-msgid "Property"
-msgstr "Ιδιότητα"
-
-#: standalone/drakperm:380
-#, c-format
-msgid ""
-"The first character of the path must be a slash (\"/\"):\n"
-"\"%s\""
-msgstr ""
-
-#: standalone/drakperm:390
-#, c-format
-msgid "Both the username and the group must valid!"
-msgstr ""
-
-#: standalone/drakperm:391
-#, c-format
-msgid "User: %s"
-msgstr ""
-
-#: standalone/drakperm:392
-#, c-format
-msgid "Group: %s"
-msgstr ""
-
-#: standalone/drakroam:33
-#, c-format
-msgid ""
-"You do not have any wireless interface.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakroam:48
-#, c-format
-msgid "SSID"
-msgstr ""
-
-#: standalone/drakroam:49
-#, c-format
-msgid "Signal strength"
-msgstr ""
-
-#: standalone/drakroam:51
-#, c-format
-msgid "Encryption"
-msgstr "Κρυπτογράφηση"
-
-#: standalone/drakroam:112
-#, c-format
-msgid "Please enter settings for wireless network \"%s\""
-msgstr ""
-
-#: standalone/drakroam:123
-#, c-format
-msgid "DNS server"
-msgstr "Εξυπηρετητής DNS"
-
-#: standalone/drakroam:228
-#, c-format
-msgid "Connect"
-msgstr "Σύνδεση"
-
-#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/drakroam:229 standalone/printerdrake:251
-#, c-format
-msgid "Refresh"
-msgstr "Ανανέωση"
-
-#: standalone/draksambashare:68
-#, fuzzy, c-format
-msgid "Share directory"
-msgstr "Δεν είναι κατάλογος"
-
-#: standalone/draksambashare:69 standalone/draksambashare:102
-#, c-format
-msgid "Comment"
-msgstr "Σχόλιο"
-
-#: standalone/draksambashare:70 standalone/draksambashare:103
-#, fuzzy, c-format
-msgid "Browseable"
-msgstr "Αναζήτηση"
-
-#: standalone/draksambashare:71
-#, c-format
-msgid "Public"
-msgstr "Δημόσιο"
-
-#: standalone/draksambashare:72 standalone/draksambashare:108
-#, c-format
-msgid "Writable"
-msgstr "Εγγράψιμο"
-
-#: standalone/draksambashare:73 standalone/draksambashare:149
-#, fuzzy, c-format
-msgid "Create mask"
-msgstr "Δημιουργία"
-
-#: standalone/draksambashare:74 standalone/draksambashare:150
-#, fuzzy, c-format
-msgid "Directory mask"
-msgstr "Επαναφορά όλων των αντιγράφων ασφαλείας"
-
-#: standalone/draksambashare:75
-#, fuzzy, c-format
-msgid "Read list"
-msgstr "Αναγνωσμένα"
-
-#: standalone/draksambashare:76 standalone/draksambashare:109
-#: standalone/draksambashare:606
-#, fuzzy, c-format
-msgid "Write list"
-msgstr "Εγγραφή"
-
-#: standalone/draksambashare:77 standalone/draksambashare:141
-#, fuzzy, c-format
-msgid "Admin users"
-msgstr "Προσθήκη χρήστη"
-
-#: standalone/draksambashare:78 standalone/draksambashare:142
-#, fuzzy, c-format
-msgid "Valid users"
-msgstr "Προσθήκη χρήστη"
-
-#: standalone/draksambashare:79
-#, fuzzy, c-format
-msgid "Inherit Permissions"
-msgstr "Δικαιώματα"
-
-#: standalone/draksambashare:80 standalone/draksambashare:143
-#, fuzzy, c-format
-msgid "Hide dot files"
-msgstr "Απόκρυψη αρχείων"
-
-#: standalone/draksambashare:82 standalone/draksambashare:148
-#, fuzzy, c-format
-msgid "Preserve case"
-msgstr "Προτιμήσεις"
-
-#: standalone/draksambashare:83
-#, fuzzy, c-format
-msgid "Force create mode"
-msgstr "Το μοντέλο εκτυπωτή σας"
-
-#: standalone/draksambashare:84
-#, fuzzy, c-format
-msgid "Force group"
-msgstr "Ομάδα εργασίας:"
-
-#: standalone/draksambashare:85 standalone/draksambashare:147
-#, fuzzy, c-format
-msgid "Default case"
-msgstr "Προεπιλεγμένος εκτυπωτής"
-
-#: standalone/draksambashare:100
-#, c-format
-msgid "Printer name"
-msgstr ""
-
-#: standalone/draksambashare:104 standalone/draksambashare:598
-#, c-format
-msgid "Printable"
-msgstr ""
-
-#: standalone/draksambashare:105
-#, c-format
-msgid "Print Command"
-msgstr ""
-
-#: standalone/draksambashare:106
-#, c-format
-msgid "LPQ command"
-msgstr ""
-
-#: standalone/draksambashare:107
-#, c-format
-msgid "Guest ok"
-msgstr ""
-
-#: standalone/draksambashare:110 standalone/draksambashare:151
-#: standalone/draksambashare:607
-#, fuzzy, c-format
-msgid "Inherit permissions"
-msgstr "Δικαιώματα"
-
-#: standalone/draksambashare:112
-#, c-format
-msgid "Create mode"
-msgstr ""
-
-#: standalone/draksambashare:113
-#, c-format
-msgid "Use client driver"
-msgstr ""
-
-#: standalone/draksambashare:139
-#, fuzzy, c-format
-msgid "Read List"
-msgstr "Λίστα Αφαίρεσης"
-
-#: standalone/draksambashare:140
-#, fuzzy, c-format
-msgid "Write List"
-msgstr "Εγγραφή"
-
-#: standalone/draksambashare:145
-#, fuzzy, c-format
-msgid "Force Group"
-msgstr "Ομάδα"
-
-#: standalone/draksambashare:146
-#, c-format
-msgid "Force create group"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid "About Draksambashare"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid ""
-"Mandriva Linux \n"
-"Release: %s\n"
-"Author: Antoine Ginies\n"
-"\n"
-"This is a simple tool to easily manage Samba configuration."
-msgstr ""
-
-#: standalone/draksambashare:186
-#, fuzzy, c-format
-msgid "Samba server"
-msgstr "Εξυπηρετητής Samba"
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Restarting/Reloading Samba server..."
-msgstr ""
-
-#: standalone/draksambashare:187
-#, c-format
-msgid "Error Restarting/Reloading Samba server"
-msgstr ""
-
-#: standalone/draksambashare:372
-#, fuzzy, c-format
-msgid "Add a Samba share"
-msgstr "Εξυπηρετητής Samba"
-
-#: standalone/draksambashare:375
-#, c-format
-msgid "Goal of this wizard is to easily create a new Samba share."
-msgstr ""
-
-#: standalone/draksambashare:377
-#, fuzzy, c-format
-msgid "Name of the share:"
-msgstr "Όνομα εκτυπωτή"
-
-#: standalone/draksambashare:378 standalone/draksambashare:591
-#: standalone/draksambashare:772
-#, c-format
-msgid "Comment:"
-msgstr "Σχόλιο:"
-
-#: standalone/draksambashare:379
-#, c-format
-msgid "Path:"
-msgstr "Διαδρομή:"
-
-#: standalone/draksambashare:384
-#, c-format
-msgid ""
-"Share with the same name already exist or share name empty, please choose "
-"another name."
-msgstr ""
-
-#: standalone/draksambashare:388 standalone/draksambashare:394
-#, c-format
-msgid "Can't create the directory, please enter a correct path."
-msgstr ""
-
-#: standalone/draksambashare:391 standalone/draksambashare:627
-#: standalone/draksambashare:794
-#, fuzzy, c-format
-msgid "Please enter a Comment for this share."
-msgstr "Παρακαλώ ορίστε τον δικτυακό όνομα ή την IP"
-
-#: standalone/draksambashare:422
-#, c-format
-msgid ""
-"The wizard successfully added the Samba share. Now just double click on it "
-"in treeview to modify it"
-msgstr ""
-
-#: standalone/draksambashare:437
-#, c-format
-msgid "pdf-gen - a PDF generator"
-msgstr ""
-
-#: standalone/draksambashare:438
-#, c-format
-msgid "printers - all printers available"
-msgstr ""
-
-#: standalone/draksambashare:442
-#, c-format
-msgid "Add Special Printer share"
-msgstr ""
-
-#: standalone/draksambashare:445
-#, c-format
-msgid ""
-"Goal of this wizard is to easily create a new special printer Samba share."
-msgstr ""
-
-#: standalone/draksambashare:453
-#, c-format
-msgid "A PDF generator already exists."
-msgstr ""
-
-#: standalone/draksambashare:477
-#, c-format
-msgid "Printers and print$ already exist."
-msgstr ""
-
-#: standalone/draksambashare:528
-#, c-format
-msgid "The wizard successfully added the printer Samba share"
-msgstr ""
-
-#: standalone/draksambashare:551
-#, c-format
-msgid "Please add or select a Samba printer share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:587
-#, c-format
-msgid "Printer share"
-msgstr ""
-
-#: standalone/draksambashare:590
-#, c-format
-msgid "Printer name:"
-msgstr "Όνομα εκτυπωτή:"
-
-#: standalone/draksambashare:596 standalone/draksambashare:777
-#, fuzzy, c-format
-msgid "Writable:"
-msgstr "Εγγραφή"
-
-#: standalone/draksambashare:597 standalone/draksambashare:778
-#, fuzzy, c-format
-msgid "Browseable:"
-msgstr "Αναζήτηση"
-
-#: standalone/draksambashare:602
-#, c-format
-msgid "Advanced options"
-msgstr "Προχωρημένες επιλογές"
-
-#: standalone/draksambashare:604
-#, c-format
-msgid "Printer access"
-msgstr ""
-
-#: standalone/draksambashare:608
-#, c-format
-msgid "Guest ok:"
-msgstr ""
-
-#: standalone/draksambashare:609
-#, c-format
-msgid "Create mode:"
-msgstr ""
-
-#: standalone/draksambashare:613
-#, c-format
-msgid "Printer command"
-msgstr ""
-
-#: standalone/draksambashare:615
-#, c-format
-msgid "Print command:"
-msgstr ""
-
-#: standalone/draksambashare:616
-#, c-format
-msgid "LPQ command:"
-msgstr ""
-
-#: standalone/draksambashare:617
-#, c-format
-msgid "Printing:"
-msgstr "Εκτύπωση:"
-
-#: standalone/draksambashare:633
-#, c-format
-msgid "create mode should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:695
-#, c-format
-msgid "DrakSamba entry"
-msgstr ""
-
-#: standalone/draksambashare:700
-#, c-format
-msgid "Please add or select a Samba share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:723
-#, fuzzy, c-format
-msgid "Samba user access"
-msgstr "Εξυπηρετητής Samba"
-
-#: standalone/draksambashare:731
-#, fuzzy, c-format
-msgid "Mask options"
-msgstr "Βασικές Επιλογές DrakSec"
-
-#: standalone/draksambashare:745
-#, fuzzy, c-format
-msgid "Display options"
-msgstr "Προσδιορισμός παραμέτρων"
-
-#: standalone/draksambashare:767
-#, fuzzy, c-format
-msgid "Samba share directory"
-msgstr "Δεν είναι κατάλογος"
-
-#: standalone/draksambashare:770
-#, fuzzy, c-format
-msgid "Share name:"
-msgstr "Όνομα πόρου:"
-
-#: standalone/draksambashare:776
-#, c-format
-msgid "Public:"
-msgstr ""
-
-#: standalone/draksambashare:800
-#, c-format
-msgid ""
-"Create mask, create mode and directory mask should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:807
-#, c-format
-msgid "Please create this Samba user: %s"
-msgstr ""
-
-#: standalone/draksambashare:930
-#, c-format
-msgid "User information"
-msgstr ""
-
-#: standalone/draksambashare:932
-#, c-format
-msgid "User name:"
-msgstr "Όνομα χρήστη:"
-
-#: standalone/draksambashare:933
-#, c-format
-msgid "Password:"
-msgstr "Κωδικός πρόσβασης:"
-
-#: standalone/draksambashare:1133
-#, c-format
-msgid "Failed to add Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1142
-#, c-format
-msgid "Failed to Modify Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1151
-#, c-format
-msgid "Failed to remove a Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1158
-#, c-format
-msgid "File share"
-msgstr ""
-
-#: standalone/draksambashare:1166
-#, c-format
-msgid "Add printers"
-msgstr ""
-
-#: standalone/draksambashare:1172
-#, c-format
-msgid "Failed to add printers."
-msgstr ""
-
-#: standalone/draksambashare:1181
-#, c-format
-msgid "Failed to Modify."
-msgstr ""
-
-#: standalone/draksambashare:1190
-#, c-format
-msgid "Failed to remove."
-msgstr ""
-
-#: standalone/draksambashare:1197
-#, c-format
-msgid "Printers"
-msgstr "Εκτυπωτές"
-
-#: standalone/draksambashare:1205
-#, c-format
-msgid "Change password"
-msgstr ""
-
-#: standalone/draksambashare:1210
-#, c-format
-msgid "Failed to change user password."
-msgstr ""
-
-#: standalone/draksambashare:1218
-#, c-format
-msgid "Failed to add user."
-msgstr ""
-
-#: standalone/draksambashare:1221
-#, c-format
-msgid "Delete user"
-msgstr ""
-
-#: standalone/draksambashare:1230
-#, c-format
-msgid "Failed to delete user."
-msgstr ""
-
-#: standalone/draksambashare:1242
-#, c-format
-msgid "Samba Users"
-msgstr ""
-
-#: standalone/draksambashare:1251
-#, c-format
-msgid "DrakSamba manage Samba shares"
-msgstr ""
-
-#: standalone/draksec:49
-#, c-format
-msgid "ALL"
-msgstr ""
-
-#: standalone/draksec:50
-#, c-format
-msgid "LOCAL"
-msgstr ""
-
-#: standalone/draksec:51
-#, c-format
-msgid "NONE"
-msgstr ""
-
-#: standalone/draksec:53 standalone/net_applet:480
-#, c-format
-msgid "Ignore"
-msgstr "Παράβλεψη"
-
-#. -PO: Do not alter the <span ..> and </span> tags.
-#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
-#: standalone/draksec:103
-#, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Administrator</span>' is the one who "
-"will receive security alerts if the\n"
-"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a "
-"username or an email.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Level</span>' menu allows you to select "
-"one of the six preconfigured security levels\n"
-"provided with msec. These levels range from '<span weight=\"bold\">poor</"
-"span>' security and ease of use, to\n"
-"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive "
-"server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
-"very\n"
-"easy to use security level. It should only be used for machines not "
-"connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
-"security\n"
-"recommended for a computer that will be used to connect to the Internet as "
-"a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
-"enough\n"
-"to use the system as a server which can accept connections from many "
-"clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower "
-"level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-
-#: standalone/draksec:156 standalone/harddrake2:207
-#, c-format
-msgid ""
-"Description of the fields:\n"
-"\n"
-msgstr ""
-"Περιγραφή των πεδίων:\n"
-"\n"
-
-#: standalone/draksec:170
-#, c-format
-msgid "(default value: %s)"
-msgstr "(Προεπιλεγμένη τιμή: %s)"
-
-#: standalone/draksec:212
-#, c-format
-msgid "Security Level:"
-msgstr "Επίπεδο ασφαλείας:"
-
-#: standalone/draksec:219
-#, c-format
-msgid "Security Administrator:"
-msgstr "Διαχειριστής Ασφαλείας:"
-
-#: standalone/draksec:221
-#, fuzzy, c-format
-msgid "Basic options"
-msgstr "Βασικές Επιλογές DrakSec"
-
-#: standalone/draksec:235
-#, c-format
-msgid "Network Options"
-msgstr "Επιλογές Δικτύου"
-
-#: standalone/draksec:235
-#, c-format
-msgid "System Options"
-msgstr "Επιλογές Συστήματος"
-
-#: standalone/draksec:270
-#, c-format
-msgid "Periodic Checks"
-msgstr "Περιοδικοί Έλεγχοι"
-
-#: standalone/draksec:300
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Παρακαλώ περιμένετε, ρυθμίζεται το επίπεδο ασφαλείας..."
-
-#: standalone/draksec:306
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Παρακαλώ περιμένετε, ορίζονται οι επιλογές ασφαλείας..."
-
-#: standalone/draksound:47
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Δεν βρέθηκε Κάρτα Ήχου!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/draksound:50
-#, c-format
-msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"Δεν βρέθηκε συσκευή Κάρτας 'Ήχου στο μηχάνημά σας. Παρακαλώ βεβαιωθείτε ότι "
-"η υποστηριζόμενη Κάρτα Ήχου σας είναι σωστά τοποθετημένη.\n"
-"\n"
-"\n"
-"Μπορείτε να επισκεφτείτε τη βάση δεδομένων υλικού στο:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/draksound:57
-#, fuzzy, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or "
-"the sndconfig program. Just type \"alsaconf\" or \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Σημείωση: Αν έχετε κάρτα ήχου ISA PnP, θα πρέπει να εκτελέσετε το πρόγραμμα "
-"sndconfig. Απλά γράψτε \"sndconfig\" σε μια κονσόλα."
-
-#: standalone/draksplash:30
-#, c-format
-msgid "x coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:31
-#, c-format
-msgid "y coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:32
-#, c-format
-msgid "text box width"
-msgstr ""
-
-#: standalone/draksplash:33
-#, c-format
-msgid "text box height"
-msgstr "ύψος πλαισίου κειμένου"
-
-#: standalone/draksplash:34
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"συντεταγμένη y της γραμμής προόδου\n"
-"από την επάνω αριστερή γωνία"
-
-#: standalone/draksplash:35
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-"συντεταγμένη y της γραμμής προόδου\n"
-"από την επάνω αριστερή γωνία"
-
-#: standalone/draksplash:36
-#, c-format
-msgid "the width of the progress bar"
-msgstr "το πλάτος της γραμμής προόδου"
-
-#: standalone/draksplash:37
-#, c-format
-msgid "the height of the progress bar"
-msgstr "το ύψος της γραμμής προόδου"
-
-#: standalone/draksplash:38
-#, c-format
-msgid "x coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:39
-#, c-format
-msgid "y coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:40
-#, c-format
-msgid "text box transparency"
-msgstr ""
-
-#: standalone/draksplash:41
-#, c-format
-msgid "progress box transparency"
-msgstr ""
-
-#: standalone/draksplash:42
-#, c-format
-msgid "text size"
-msgstr ""
-
-#: standalone/draksplash:59
-#, c-format
-msgid "Choose progress bar color 1"
-msgstr ""
-
-#: standalone/draksplash:60
-#, c-format
-msgid "Choose progress bar color 2"
-msgstr ""
-
-#: standalone/draksplash:61
-#, c-format
-msgid "Choose progress bar background"
-msgstr ""
-
-#: standalone/draksplash:62
-#, c-format
-msgid "Gradient type"
-msgstr ""
-
-#: standalone/draksplash:63
-#, c-format
-msgid "Choose text color"
-msgstr ""
-
-#: standalone/draksplash:65 standalone/draksplash:72
-#, c-format
-msgid "Choose picture"
-msgstr ""
-
-#: standalone/draksplash:66
-#, c-format
-msgid "Silent bootsplash"
-msgstr ""
-
-#: standalone/draksplash:69
-#, c-format
-msgid "Choose text zone color"
-msgstr ""
-
-#: standalone/draksplash:70
-#, c-format
-msgid "Text color"
-msgstr "Χρώμα κειμένου"
-
-#: standalone/draksplash:71
-#, c-format
-msgid "Background color"
-msgstr "Χρώμα φόντου"
-
-#: standalone/draksplash:73
-#, c-format
-msgid "Verbose bootsplash"
-msgstr ""
-
-#: standalone/draksplash:75
-#, c-format
-msgid "Display logo on Console"
-msgstr "Εμφάνιση λογότυπου στην Κονσόλα"
-
-#: standalone/draksplash:78
-#, c-format
-msgid "Console bootsplash"
-msgstr ""
-
-#: standalone/draksplash:84
-#, c-format
-msgid "Theme name"
-msgstr "Όνομα θέματος"
-
-#: standalone/draksplash:87
-#, c-format
-msgid "final resolution"
-msgstr "τελική ανάλυση"
-
-#: standalone/draksplash:92
-#, c-format
-msgid "Save theme"
-msgstr "Aποθήκευση θέματος"
-
-#: standalone/draksplash:153
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "αποθήκευση θέματος Bootsplash ..."
-
-#: standalone/draksplash:162
-#, c-format
-msgid "Unable to load image file %s"
-msgstr ""
-
-#: standalone/draksplash:173
-#, c-format
-msgid "choose image"
-msgstr "επιλέξτε εικόνα"
-
-#: standalone/draksplash:188
-#, c-format
-msgid "Color selection"
-msgstr ""
-
-#: standalone/drakups:71
-#, c-format
-msgid "Connected through a serial port or an usb cable"
-msgstr ""
-
-#: standalone/drakups:78
+#: timezone.pm:148 timezone.pm:149
#, fuzzy, c-format
-msgid "Add an UPS device"
-msgstr "Προσθήκη στοιχείου"
-
-#: standalone/drakups:81
-#, fuzzy, c-format
-msgid ""
-"Welcome to the UPS configuration utility.\n"
-"\n"
-"Here, you'll add a new UPS to your system.\n"
-msgstr ""
-"Καλώς ορίσατε στο εργαλείο ρύθμισης ταχυδρομείου.\n"
-"\n"
-"Εδώ, θα μπορέσετε να ρυθμίσετε το σύστημα ειδοποίησης\n"
-
-#: standalone/drakups:88
-#, c-format
-msgid ""
-"We're going to add an UPS device.\n"
-"\n"
-"Do you want to autodetect UPS devices connected to this machine or to "
-"manually select them?"
-msgstr ""
-
-#: standalone/drakups:91
-#, fuzzy, c-format
-msgid "Autodetection"
-msgstr "Αυτόματη ανίχνευση"
-
-#: standalone/drakups:99 standalone/harddrake2:375
-#, c-format
-msgid "Detection in progress"
-msgstr "Ανίχνευση σε εξέλιξη"
-
-#: standalone/drakups:119
-#, c-format
-msgid "The wizard successfully added the following UPS devices:"
-msgstr ""
-
-#: standalone/drakups:121
-#, fuzzy, c-format
-msgid "No new UPS devices was found"
-msgstr "Δεν βρέθηκε εικόνα"
-
-#: standalone/drakups:126 standalone/drakups:138
-#, fuzzy, c-format
-msgid "UPS driver configuration"
-msgstr "Ρυθμίσεις κοινής χρήσης εκτυπωτών CUPS"
-
-#: standalone/drakups:126
-#, fuzzy, c-format
-msgid "Please select your UPS model."
-msgstr "Παρακαλώ δοκιμάστε το ποντίκι"
-
-#: standalone/drakups:127
-#, fuzzy, c-format
-msgid "Manufacturer / Model:"
-msgstr "Κατασκευαστή εκτυπωτή, μοντέλο"
-
-#: standalone/drakups:138
-#, c-format
-msgid ""
-"We are configuring the \"%s\" UPS from \"%s\".\n"
-"Please fill in its name, its driver and its port."
-msgstr ""
-
-#: standalone/drakups:143
-#, c-format
-msgid "Name:"
-msgstr "Όνομα:"
-
-#: standalone/drakups:143
-#, fuzzy, c-format
-msgid "The name of your ups"
-msgstr "το όνομα κατασκευαστή του επεξεργαστή"
-
-#: standalone/drakups:144
-#, c-format
-msgid "The driver that manages your ups"
-msgstr ""
-
-#: standalone/drakups:145
-#, c-format
-msgid "Port:"
-msgstr "Θύρα:"
-
-#: standalone/drakups:147
-#, fuzzy, c-format
-msgid "The port on which is connected your ups"
-msgstr "Ο τύπος της θύρα στην οποία είναι συνδεδεμένο το ποντίκι σας."
-
-#: standalone/drakups:157
-#, c-format
-msgid "The wizard successfully configured the new \"%s\" UPS device."
-msgstr ""
-
-#: standalone/drakups:248
-#, fuzzy, c-format
-msgid "UPS devices"
-msgstr "Υπηρεσίες"
-
-#: standalone/drakups:249 standalone/drakups:268 standalone/drakups:284
-#: standalone/harddrake2:85 standalone/harddrake2:111
-#: standalone/harddrake2:118
-#, c-format
-msgid "Name"
-msgstr "Όνομα"
-
-#: standalone/drakups:267
-#, fuzzy, c-format
-msgid "UPS users"
-msgstr "Χρήστες"
-
-#: standalone/drakups:283
-#, fuzzy, c-format
-msgid "Access Control Lists"
-msgstr "πρόσβαση σε εργαλεία δικτύου"
-
-#: standalone/drakups:284
-#, c-format
-msgid "IP mask"
-msgstr ""
-
-#: standalone/drakups:296
-#, c-format
-msgid "Rules"
-msgstr "Κανόνες"
-
-#: standalone/drakups:297
-#, c-format
-msgid "Action"
-msgstr "Ενέργεια"
-
-#: standalone/drakups:297 standalone/drakvpn:1132 standalone/harddrake2:82
-#, c-format
-msgid "Level"
-msgstr "Επίπεδο"
-
-#: standalone/drakups:297
-#, fuzzy, c-format
-msgid "ACL name"
-msgstr "όνομα LVM;"
-
-#: standalone/drakups:327 standalone/drakups:331 standalone/drakups:340
-#, fuzzy, c-format
-msgid "DrakUPS"
-msgstr "Dvorak (ΗΠΑ)"
-
-#: standalone/drakups:337
-#, fuzzy, c-format
-msgid "Welcome to the UPS configuration tools"
-msgstr "Δοκιμή ρυθμίσεων"
-
-#: standalone/drakvpn:73
-#, fuzzy, c-format
-msgid "DrakVPN"
-msgstr "Dvorak (ΗΠΑ)"
-
-#: standalone/drakvpn:95
-#, fuzzy, c-format
-msgid "The VPN connection is enabled."
-msgstr "Η Κοινή Σύνδεση στο Διαδίκτυο τώρα ενεργοποιήθηκε."
-
-#: standalone/drakvpn:96
-#, fuzzy, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Η ρύθμιση της κοινής σύνδεσης του Διαδικτύου έχει ήδη γίνει.\n"
-"Αυτή τη στιγμή είναι ενεργή.\n"
-"\n"
-"Τι θέλετε να κάνετε;"
-
-#: standalone/drakvpn:101
-#, c-format
-msgid "disable"
-msgstr "απενεργοποίηση"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127
-#, c-format
-msgid "reconfigure"
-msgstr "επαναρύθμιση"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127 standalone/drakvpn:362
-#: standalone/drakvpn:721
-#, c-format
-msgid "dismiss"
-msgstr "άκυρο"
-
-#: standalone/drakvpn:105
-#, fuzzy, c-format
-msgid "Disabling VPN..."
-msgstr "Απενεργοποίηση εξυπηρετητών..."
-
-#: standalone/drakvpn:114
-#, fuzzy, c-format
-msgid "The VPN connection is now disabled."
-msgstr "Η Κοινή Σύνδεση Διαδικτύου τώρα απενεργοποιήθηκε."
-
-#: standalone/drakvpn:121
-#, fuzzy, c-format
-msgid "VPN connection currently disabled"
-msgstr "Κοινή Σύνδεση Διαδικτύου απενεργοποιημένη"
-
-#: standalone/drakvpn:122
-#, fuzzy, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Η ρύθμιση της κοινής χρήσης διαδικτύου έχει ήδη γίνει.\n"
-"Είναι απενεργοποιημένη.\n"
-"\n"
-"Τι θέλετε να κάνετε:"
-
-#: standalone/drakvpn:127
-#, c-format
-msgid "enable"
-msgstr "ενεργοποίηση"
-
-#: standalone/drakvpn:135
-#, fuzzy, c-format
-msgid "Enabling VPN..."
-msgstr "Ενεργοποίηση εξυπηρετητών..."
-
-#: standalone/drakvpn:141
-#, fuzzy, c-format
-msgid "The VPN connection is now enabled."
-msgstr "Η Κοινή Σύνδεση στο Διαδίκτυο τώρα ενεργοποιήθηκε."
-
-#: standalone/drakvpn:155 standalone/drakvpn:183
-#, c-format
-msgid "Simple VPN setup."
-msgstr ""
-
-#: standalone/drakvpn:156
-#, c-format
-msgid ""
-"You are about to configure your computer to use a VPN connection.\n"
-"\n"
-"With this feature, computers on your local private network and computers\n"
-"on some other remote private networks, can share resources, through\n"
-"their respective firewalls, over the Internet, in a secure manner. \n"
-"\n"
-"The communication over the Internet is encrypted. The local and remote\n"
-"computers look as if they were on the same network.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using\n"
-"drakconnect before going any further."
-msgstr ""
-
-#: standalone/drakvpn:184
-#, c-format
-msgid ""
-"VPN connection.\n"
-"\n"
-"This program is based on the following projects:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - the docs and man pages coming with the %s package\n"
-"\n"
-"Please read AT LEAST the ipsec-howto docs\n"
-"before going any further."
-msgstr ""
-
-#: standalone/drakvpn:196
-#, fuzzy, c-format
-msgid "Kernel module."
-msgstr "Απομάκρυνση αρθρώματος"
-
-#: standalone/drakvpn:197
-#, c-format
-msgid ""
-"The kernel needs to have ipsec support.\n"
-"\n"
-"You're running a %s kernel version.\n"
-"\n"
-"This kernel has '%s' support."
-msgstr ""
-
-#: standalone/drakvpn:264
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Πρόβλημα κατά την εγκατάσταση του πακέτου %s"
-
-#: standalone/drakvpn:278
-#, fuzzy, c-format
-msgid "Security Policies"
-msgstr "Ειδοποιήσεις Ασφαλείας:"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "IKE daemon racoon"
-msgstr ""
-
-#: standalone/drakvpn:281 standalone/drakvpn:292
-#, fuzzy, c-format
-msgid "Configuration file"
-msgstr "Ρύθμιση"
-
-#: standalone/drakvpn:282
-#, c-format
-msgid ""
-"Configuration step!\n"
-"\n"
-"You need to define the Security Policies and then to \n"
-"configure the automatic key exchange (IKE) daemon. \n"
-"The KAME IKE daemon we're using is called 'racoon'.\n"
-"\n"
-"What would you like to configure?\n"
-msgstr ""
-
-#: standalone/drakvpn:293
-#, c-format
-msgid ""
-"Next, we will configure the %s file.\n"
-"\n"
-"\n"
-"Simply click on Next.\n"
-msgstr ""
-
-#: standalone/drakvpn:311 standalone/drakvpn:671
-#, fuzzy, c-format
-msgid "%s entries"
-msgstr ", %s τομείς"
-
-#: standalone/drakvpn:312
-#, c-format
-msgid ""
-"The %s file contents\n"
-"is divided into sections.\n"
-"\n"
-"You can now:\n"
-"\n"
-" - display, add, edit, or remove sections, then\n"
-" - commit the changes\n"
-"\n"
-"What would you like to do?\n"
-msgstr ""
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, fuzzy, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display"
-msgstr "καθημερινά"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, c-format
-msgid "Commit"
-msgstr "Commit"
-
-#: standalone/drakvpn:333 standalone/drakvpn:337 standalone/drakvpn:695
-#: standalone/drakvpn:699
-#, fuzzy, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display configuration"
-msgstr "Ρύθμιση LAN"
-
-#: standalone/drakvpn:338
-#, c-format
-msgid ""
-"The %s file does not exist.\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose 'add'.\n"
-msgstr ""
-
-#: standalone/drakvpn:354
-#, c-format
-msgid "ipsec.conf entries"
-msgstr ""
-
-#: standalone/drakvpn:355
-#, c-format
-msgid ""
-"The %s file contains different sections.\n"
-"\n"
-"Here is its skeleton:\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"You can now add one of these sections.\n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-
-#: standalone/drakvpn:362
-#, fuzzy, c-format
-msgid "config setup"
-msgstr "επαναρύθμιση"
-
-#: standalone/drakvpn:362
-#, fuzzy, c-format
-msgid "conn %default"
-msgstr "εξ' ορισμού"
-
-#: standalone/drakvpn:362
-#, fuzzy, c-format
-msgid "normal conn"
-msgstr "Κανονική Κατάσταση"
-
-#: standalone/drakvpn:368 standalone/drakvpn:409 standalone/drakvpn:496
-#, fuzzy, c-format
-msgid "Exists!"
-msgstr "Έξοδος"
-
-#: standalone/drakvpn:369 standalone/drakvpn:410
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change its name.\n"
-msgstr ""
-
-#: standalone/drakvpn:386
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow this config\n"
-"setup section.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:391
-#, fuzzy, c-format
-msgid "interfaces"
-msgstr "Διεπαφή"
-
-#: standalone/drakvpn:392
-#, c-format
-msgid "klipsdebug"
-msgstr ""
-
-#: standalone/drakvpn:393
-#, c-format
-msgid "plutodebug"
-msgstr ""
-
-#: standalone/drakvpn:394
-#, c-format
-msgid "plutoload"
-msgstr ""
-
-#: standalone/drakvpn:395
-#, c-format
-msgid "plutostart"
-msgstr ""
-
-#: standalone/drakvpn:396
-#, c-format
-msgid "uniqueids"
-msgstr ""
-
-#: standalone/drakvpn:430
-#, c-format
-msgid ""
-"This is the first section after the config\n"
-"setup one.\n"
-"\n"
-"Here you define the default settings. \n"
-"All the other sections will follow this one.\n"
-"The left settings are optional. If do not define\n"
-"them here, globally, you can define them in each\n"
-"section.\n"
-msgstr ""
-
-#: standalone/drakvpn:437
-#, fuzzy, c-format
-msgid "PFS"
-msgstr "HFS"
-
-#: standalone/drakvpn:438
-#, c-format
-msgid "keyingtries"
-msgstr ""
-
-#: standalone/drakvpn:439
-#, c-format
-msgid "compress"
-msgstr ""
-
-#: standalone/drakvpn:440
-#, c-format
-msgid "disablearrivalcheck"
-msgstr ""
-
-#: standalone/drakvpn:441 standalone/drakvpn:480
-#, c-format
-msgid "left"
-msgstr "αριστερά"
-
-#: standalone/drakvpn:442 standalone/drakvpn:481
-#, c-format
-msgid "leftcert"
-msgstr ""
-
-#: standalone/drakvpn:443 standalone/drakvpn:482
-#, c-format
-msgid "leftrsasigkey"
-msgstr ""
-
-#: standalone/drakvpn:444 standalone/drakvpn:483
-#, c-format
-msgid "leftsubnet"
-msgstr ""
-
-#: standalone/drakvpn:445 standalone/drakvpn:484
-#, c-format
-msgid "leftnexthop"
-msgstr ""
-
-#: standalone/drakvpn:474
-#, c-format
-msgid ""
-"Your %s file has several sections, or connections.\n"
-"\n"
-"You can now add a new section.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:477
-#, fuzzy, c-format
-msgid "section name"
-msgstr "Όνομα σύνδεσης"
-
-#: standalone/drakvpn:478
-#, fuzzy, c-format
-msgid "authby"
-msgstr "Θέση"
-
-#: standalone/drakvpn:479
-#, c-format
-msgid "auto"
-msgstr "Ξ±Ο…Ο„ΟŒΞΌΞ±Ο„ΞΏ"
-
-#: standalone/drakvpn:485
-#, c-format
-msgid "right"
-msgstr "δεξιά"
-
-#: standalone/drakvpn:486
-#, fuzzy, c-format
-msgid "rightcert"
-msgstr "Υψηλότερο"
-
-#: standalone/drakvpn:487
-#, c-format
-msgid "rightrsasigkey"
-msgstr ""
-
-#: standalone/drakvpn:488
-#, c-format
-msgid "rightsubnet"
-msgstr ""
-
-#: standalone/drakvpn:489
-#, c-format
-msgid "rightnexthop"
-msgstr ""
-
-#: standalone/drakvpn:497
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change the name of the section.\n"
-msgstr ""
-
-#: standalone/drakvpn:529
-#, c-format
-msgid ""
-"Add a Security Policy.\n"
-"\n"
-"You can now add a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:562 standalone/drakvpn:812
-#, fuzzy, c-format
-msgid "Edit section"
-msgstr "Επιλογή Θέσης"
-
-#: standalone/drakvpn:563
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to edit \n"
-"and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:566 standalone/drakvpn:646 standalone/drakvpn:817
-#: standalone/drakvpn:863
-#, fuzzy, c-format
-msgid "Section names"
-msgstr "Όνομα σύνδεσης"
-
-#: standalone/drakvpn:576
-#, fuzzy, c-format
-msgid "Can not edit!"
-msgstr "Δεν βρέθηκε το %s στο %s"
-
-#: standalone/drakvpn:577
-#, c-format
-msgid ""
-"You cannot edit this section.\n"
-"\n"
-"This section is mandatory for Freeswan 2.X.\n"
-"One has to specify version 2.0 on the top\n"
-"of the %s file, and eventually, disable or\n"
-"enable the opportunistic encryption.\n"
-msgstr ""
-
-#: standalone/drakvpn:586
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the config setup section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:597
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the default section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:610
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the normal section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:631
-#, c-format
-msgid ""
-"Edit a Security Policy.\n"
-"\n"
-"You can now edit a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:642 standalone/drakvpn:859
-#, fuzzy, c-format
-msgid "Remove section"
-msgstr "Λίστα Αφαίρεσης"
-
-#: standalone/drakvpn:643 standalone/drakvpn:860
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to remove\n"
-"and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:672
-#, c-format
-msgid ""
-"The racoon.conf file configuration.\n"
-"\n"
-"The contents of this file is divided into sections.\n"
-"You can now:\n"
-" - display \t\t (display the file contents)\n"
-" - add\t\t\t (add one section)\n"
-" - edit \t\t\t (modify parameters of an existing section)\n"
-" - remove \t\t (remove an existing section)\n"
-" - commit \t\t (writes the changes to the real file)"
-msgstr ""
-
-#: standalone/drakvpn:700
-#, c-format
-msgid ""
-"The %s file does not exist\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose configure.\n"
-msgstr ""
-
-#: standalone/drakvpn:714
-#, c-format
-msgid "racoonf.conf entries"
-msgstr ""
-
-#: standalone/drakvpn:715
-#, c-format
-msgid ""
-"The 'add' sections step.\n"
-"\n"
-"Here below is the racoon.conf file skeleton:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "path"
-msgstr "μονοπάτι"
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "remote"
-msgstr "απομακρυσμένος"
-
-#: standalone/drakvpn:721
-#, fuzzy, c-format
-msgid "sainfo"
-msgstr "Πληροφορίες"
-
-#: standalone/drakvpn:729
-#, c-format
-msgid ""
-"The 'add path' section step.\n"
-"\n"
-"The path sections have to be on top of your racoon.conf file.\n"
-"\n"
-"Put your mouse over the certificate entry to obtain online help."
-msgstr ""
-
-#: standalone/drakvpn:732
-#, fuzzy, c-format
-msgid "path type"
-msgstr "Αλλαγή τύπου"
-
-#: standalone/drakvpn:736
-#, c-format
-msgid ""
-"path include path: specifies a path to include\n"
-"a file. See File Inclusion.\n"
-"\tExample: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: specifies a file containing\n"
-"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
-"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) will search this directory\n"
-"if a certificate or certificate request is received.\n"
-"\tExample: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"other configuration files can be included.\n"
-"\tExample: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File: Pre-shared key file defines a pair\n"
-"of the identifier and the shared secret key which are used at\n"
-"Pre-shared key authentication method in phase 1."
-msgstr ""
-
-#: standalone/drakvpn:756 standalone/drakvpn:849
-#, fuzzy, c-format
-msgid "real file"
-msgstr "Επιλέξτε αρχείο"
-
-#: standalone/drakvpn:779
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your racoon.conf file.\n"
-"\n"
-"You can now choose the remote settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:796
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your %s file.\n"
-"\n"
-"You can now choose the sainfo settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:813
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here in the list below the one you want\n"
-"to edit and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:824
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"\n"
-"You can now edit the remote section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:833
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the sainfo section entries.\n"
-"\n"
-"Choose continue when you are done to write the data."
-msgstr ""
-
-#: standalone/drakvpn:841
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow these path\n"
-"sections.\n"
-"\n"
-"You can now edit the path entries.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:848
-#, c-format
-msgid "path_type"
-msgstr ""
-
-#: standalone/drakvpn:889
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"\n"
-"You may now share resources through the Internet,\n"
-"in a secure way, using a VPN connection.\n"
-"\n"
-"You should make sure that that the tunnels shorewall\n"
-"section is configured."
-msgstr ""
-
-#: standalone/drakvpn:909
-#, c-format
-msgid "Sainfo source address"
-msgstr ""
-
-#: standalone/drakvpn:910
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 is the source address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 is the source address"
-msgstr ""
-
-#: standalone/drakvpn:927
-#, fuzzy, c-format
-msgid "Sainfo source protocol"
-msgstr "Ευρωπαϊκό πρωτόκολλο"
-
-#: standalone/drakvpn:928
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe first 'any' allows any protocol for the source"
-msgstr ""
-
-#: standalone/drakvpn:942
-#, c-format
-msgid "Sainfo destination address"
-msgstr ""
-
-#: standalone/drakvpn:943
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 is the destination address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 is the destination address"
-msgstr ""
-
-#: standalone/drakvpn:960
-#, fuzzy, c-format
-msgid "Sainfo destination protocol"
-msgstr "Εργαλείο Μετάβασης Windows "
-
-#: standalone/drakvpn:961
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe last 'any' allows any protocol for the destination"
-msgstr ""
-
-#: standalone/drakvpn:975
-#, c-format
-msgid "PFS group"
-msgstr ""
-
-#: standalone/drakvpn:977
-#, c-format
-msgid ""
-"define the group of Diffie-Hellman exponentiations.\n"
-"If you do not require PFS then you can omit this directive.\n"
-"Any proposal will be accepted if you do not specify one.\n"
-"group is one of the following: modp768, modp1024, modp1536.\n"
-"Or you can define 1, 2, or 5 as the DH group number."
-msgstr ""
-
-#: standalone/drakvpn:982
-#, fuzzy, c-format
-msgid "Lifetime number"
-msgstr "ένας αριθμός"
-
-#: standalone/drakvpn:983
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-msgstr ""
-
-#: standalone/drakvpn:999
-#, c-format
-msgid "Lifetime unit"
-msgstr ""
-
-#: standalone/drakvpn:1001
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
-"'hour'.\n"
-msgstr ""
-
-#: standalone/drakvpn:1019
-#, fuzzy, c-format
-msgid "Authentication algorithm"
-msgstr "Πιστοποίηση"
-
-#: standalone/drakvpn:1021
-#, c-format
-msgid "Compression algorithm"
-msgstr ""
-
-#: standalone/drakvpn:1022
-#, fuzzy, c-format
-msgid "deflate"
-msgstr "εξ' ορισμού"
-
-#: standalone/drakvpn:1029
-#, c-format
-msgid "Remote"
-msgstr "Απομακρυσμένος"
-
-#: standalone/drakvpn:1030
-#, c-format
-msgid ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specifies the parameters for IKE phase 1 for each remote node.\n"
-"The default port is 500. If anonymous is specified, the state-\n"
-"ments apply to all peers which do not match any other remote\n"
-"directive.\n"
-"\n"
-"Examples: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-msgstr ""
-
-#: standalone/drakvpn:1038
-#, fuzzy, c-format
-msgid "Exchange mode"
-msgstr "Τρόπος κλήσης"
-
-#: standalone/drakvpn:1040
-#, c-format
-msgid ""
-"defines the exchange mode for phase 1 when racoon is the\n"
-"initiator. Also it means the acceptable exchange mode\n"
-"when racoon is responder. More than one mode can be\n"
-"specified by separating them with a comma. All of the\n"
-"modes are acceptable. The first exchange mode is what\n"
-"racoon uses when it is the initiator.\n"
-msgstr ""
-
-#: standalone/drakvpn:1046
-#, fuzzy, c-format
-msgid "Generate policy"
-msgstr "Ασφάλεια"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "off"
-msgstr "ανενεργό"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "on"
-msgstr "στο"
-
-#: standalone/drakvpn:1048
-#, c-format
-msgid ""
-"This directive is for the responder. Therefore you\n"
-"should set passive on in order that racoon(8) only\n"
-"becomes a responder. If the responder does not have any\n"
-"policy in SPD during phase 2 negotiation, and the direc-\n"
-"tive is set on, then racoon(8) will choice the first pro-\n"
-"posal in the SA payload from the initiator, and generate\n"
-"policy entries from the proposal. It is useful to nego-\n"
-"tiate with the client which is allocated IP address\n"
-"dynamically. Note that inappropriate policy might be\n"
-"installed into the responder's SPD by the initiator. So\n"
-"that other communication might fail if such policies\n"
-"installed due to some policy mismatches between the ini-\n"
-"tiator and the responder. This directive is ignored in\n"
-"the initiator case. The default value is off."
-msgstr ""
-
-#: standalone/drakvpn:1062
-#, fuzzy, c-format
-msgid "Passive"
-msgstr "Τμήμα Splash"
-
-#: standalone/drakvpn:1064
-#, c-format
-msgid ""
-"If you do not want to initiate the negotiation, set this\n"
-"to on. The default value is off. It is useful for a\n"
-"server."
-msgstr ""
-
-#: standalone/drakvpn:1067
-#, c-format
-msgid "Certificate type"
-msgstr ""
-
-#: standalone/drakvpn:1069
-#, fuzzy, c-format
-msgid "My certfile"
-msgstr "Επιλέξτε αρχείο"
-
-#: standalone/drakvpn:1070
-#, fuzzy, c-format
-msgid "Name of the certificate"
-msgstr "Όνομα εκτυπωτή"
-
-#: standalone/drakvpn:1071
-#, c-format
-msgid "My private key"
-msgstr ""
-
-#: standalone/drakvpn:1072
-#, fuzzy, c-format
-msgid "Name of the private key"
-msgstr "Όνομα εκτυπωτή"
-
-#: standalone/drakvpn:1073
-#, fuzzy, c-format
-msgid "Peers certfile"
-msgstr "Επιλέξτε αρχείο"
-
-#: standalone/drakvpn:1074
-#, c-format
-msgid "Name of the peers certificate"
-msgstr ""
-
-#: standalone/drakvpn:1075
-#, fuzzy, c-format
-msgid "Verify cert"
-msgstr "πολύ καλό"
-
-#: standalone/drakvpn:1077
-#, c-format
-msgid ""
-"If you do not want to verify the peer's certificate for\n"
-"some reason, set this to off. The default is on."
-msgstr ""
-
-#: standalone/drakvpn:1079
-#, c-format
-msgid "My identifier"
-msgstr ""
-
-#: standalone/drakvpn:1080
-#, c-format
-msgid ""
-"specifies the identifier sent to the remote host and the\n"
-"type to use in the phase 1 negotiation. address, FQDN,\n"
-"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
-"they are used like:\n"
-"\tmy_identifier address [address];\n"
-"\t\tthe type is the IP address. This is the default\n"
-"\t\ttype if you do not specify an identifier to use.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tthe type is a USER_FQDN (user fully-qualified\n"
-"\t\tdomain name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tthe type is a FQDN (fully-qualified domain name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tthe type is a KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tthe type is an ASN.1 distinguished name. If\n"
-"\t\tstring is omitted, racoon(8) will get DN from\n"
-"\t\tSubject field in the certificate.\n"
-"\n"
-"Examples: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-msgstr ""
-
-#: standalone/drakvpn:1100
-#, fuzzy, c-format
-msgid "Peers identifier"
-msgstr "Εκτυπωτής"
-
-#: standalone/drakvpn:1101
-#, fuzzy, c-format
-msgid "Proposal"
-msgstr "Πρωτόκολλο"
-
-#: standalone/drakvpn:1103
-#, c-format
-msgid ""
-"specify the encryption algorithm used for the\n"
-"phase 1 negotiation. This directive must be defined. \n"
-"algorithm is one of the following: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For other transforms, this statement should not be used."
-msgstr ""
-
-#: standalone/drakvpn:1110
-#, c-format
-msgid "Hash algorithm"
-msgstr ""
-
-#: standalone/drakvpn:1112
-#, fuzzy, c-format
-msgid "DH group"
-msgstr "oμάδα"
-
-#: standalone/drakvpn:1119
-#, c-format
-msgid "Command"
-msgstr "Εντολή"
-
-#: standalone/drakvpn:1120
-#, c-format
-msgid "Source IP range"
-msgstr ""
-
-#: standalone/drakvpn:1121
-#, c-format
-msgid "Destination IP range"
-msgstr ""
-
-#: standalone/drakvpn:1122
-#, fuzzy, c-format
-msgid "Upper-layer protocol"
-msgstr "Ευρωπαϊκό πρωτόκολλο"
-
-#: standalone/drakvpn:1122 standalone/drakvpn:1129
-#, c-format
-msgid "any"
-msgstr "κάθε"
-
-#: standalone/drakvpn:1124
-#, c-format
-msgid "Flag"
-msgstr "Σημαία"
-
-#: standalone/drakvpn:1125
-#, c-format
-msgid "Direction"
-msgstr "Κατεύθυνση"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "IPsec policy"
-msgstr ""
-
-#: standalone/drakvpn:1126
-#, fuzzy, c-format
-msgid "ipsec"
-msgstr "Msec"
-
-#: standalone/drakvpn:1126
-#, fuzzy, c-format
-msgid "discard"
-msgstr "απενεργοποιημένο"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "Mode"
-msgstr "Κατάσταση"
-
-#: standalone/drakvpn:1129
-#, fuzzy, c-format
-msgid "tunnel"
-msgstr "Κανάλι"
-
-#: standalone/drakvpn:1129
-#, fuzzy, c-format
-msgid "transport"
-msgstr "απεσταλμένα"
-
-#: standalone/drakvpn:1131
-#, fuzzy, c-format
-msgid "Source/destination"
-msgstr "Σταθμός Εργασίας"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "require"
-msgstr ""
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "default"
-msgstr "εξ' ορισμού"
-
-#: standalone/drakvpn:1132
-#, fuzzy, c-format
-msgid "use"
-msgstr "Ποντίκι"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "unique"
-msgstr "μοναδικό"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (broadcast)"
-msgstr "USA (εναέρια)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable)"
-msgstr "USA (καλωδιακή)"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "Canada (cable)"
-msgstr "Καναδικό (Καλωδιακή)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Ιαπωνία (εναέρια)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (cable)"
-msgstr "Ιαπωνία (Καλωδιακή)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "China (broadcast)"
-msgstr "Κίνα (εναέρια)"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "West Europe"
-msgstr "Δυτική Ευρώπη"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "East Europe"
-msgstr "Ανατολική Ευρώπη"
-
-#: standalone/drakxtv:47
-#, c-format
-msgid "France [SECAM]"
-msgstr "Γαλλία [SECAM]"
-
-#: standalone/drakxtv:48
-#, c-format
-msgid "Newzealand"
-msgstr "Νέα Ζηλανδία"
-
-#: standalone/drakxtv:51
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Καλωδιακή τηλεόραση Optus της Αυστραλίας"
-
-#: standalone/drakxtv:85
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: standalone/drakxtv:87
-#, c-format
-msgid "TV norm:"
-msgstr ""
-
-#: standalone/drakxtv:88
-#, c-format
-msgid "Area:"
-msgstr "Περιοχή:"
-
-#: standalone/drakxtv:93
-#, c-format
-msgid "Scanning for TV channels in progress..."
-msgstr "Γίνεται αναζήτηση σταθμών τηλεόρασης ..."
-
-#: standalone/drakxtv:103
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "Αναζήτηση σταθμών τηλεόρασης"
-
-#: standalone/drakxtv:107
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Προκλήθηκε σφάλμα κατά την αναζήτηση σταθμών τηλεόρασης"
-
-#: standalone/drakxtv:110
-#, c-format
-msgid "Have a nice day!"
-msgstr "Καλή σας μέρα!"
-
-#: standalone/drakxtv:111
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "Τώρα μπορείτε να εκτελέσετε το xawtv (μέσα από τα Χ Window!) !\n"
-
-#: standalone/drakxtv:149
-#, c-format
-msgid "No TV Card detected!"
-msgstr "Δεν βρέθηκε κάρτα τηλεόρασης!"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakxtv:151
-#, c-format
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-"Δεν βρέθηκε κάρτα τηλεόρασης στο μηχάνημά σας.Παρακαλώ βεβαιωθείτε ότι μια "
-"υποστηριζόμενη κάρτα στο Linux είναι συνδεμένη.\n"
-"\n"
-"\n"
-"Μπορείτε να επισκεφτείτε την βάση δεδομένων στο: \n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-
-#: standalone/finish-install:42 standalone/keyboarddrake:30
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Παρακαλώ επιλέξτε την διάταξη του πληκτρολογίου."
-
-#: standalone/harddrake2:25
-#, c-format
-msgid "Alternative drivers"
-msgstr "Εναλλακτικοί οδηγοί"
-
-#: standalone/harddrake2:26
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "η λίστα με εναλλακτικούς οδηγούς για την κάρτα ήχου σας"
-
-#: standalone/harddrake2:29
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-"αυτή είναι η φυσική θέση στην οποία είναι συνδεμένη η συσκευή (π.χ.PCI, "
-"USB, ...)"
-
-#: standalone/harddrake2:31 standalone/harddrake2:146
-#, c-format
-msgid "Bus identification"
-msgstr "Αναγνωριστικό θύρας"
-
-#: standalone/harddrake2:32
-#, fuzzy, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
-msgstr "PCI συσκευή PCI"
-
-#: standalone/harddrake2:35
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- συσκευές pci: δίνει τη θύρα PCI, τη συσκευή και λειτουργία αυτής της "
-"κάρτας\n"
-"- συσκευές eide: η συσκευή είναι συσκευή slave ή master\n"
-"- συσκευές scsi: ο δίαυλος scsi και τα χαρακτηριστικά της συσκευής scsi"
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "Drive capacity"
-msgstr ""
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
-
-#: standalone/harddrake2:39
-#, fuzzy, c-format
-msgid "this field describes the device"
-msgstr "Αυτό πεδίο περιγραφή τη συσκευή"
-
-#: standalone/harddrake2:40
-#, c-format
-msgid "Old device file"
-msgstr "Παλαιό αρχείο συσκευής"
-
-#: standalone/harddrake2:41
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "παλαιά στατική όνομα συσκευής του πακέτου dev"
-
-#: standalone/harddrake2:42
-#, c-format
-msgid "New devfs device"
-msgstr "Νέα συσκευή devfs"
-
-#: standalone/harddrake2:43
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "δημιουργήθηκε νέα δυναμική συσκευή από τον κεντρικό πυρήνα devfs"
-
-#. -PO: here "module" is the "jargon term" for a kernel driver
-#: standalone/harddrake2:46
-#, c-format
-msgid "Module"
-msgstr "Άρθρωμα"
-
-#: standalone/harddrake2:46
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "το άρθρωμα του πυρήνα GNU/Linux που χειρίζεται την συσκευή"
-
-#: standalone/harddrake2:47
-#, fuzzy, c-format
-msgid "Extended partitions"
-msgstr "Δημιουργία νέας κατάτμησης"
-
-#: standalone/harddrake2:47
-#, fuzzy, c-format
-msgid "the number of extended partitions"
-msgstr "Ο αριθμός του επεξεργαστή"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Geometry"
-msgstr "Γεωμετρία"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Cylinder/head/sectors geometry of the disk"
-msgstr ""
-
-#: standalone/harddrake2:49
-#, fuzzy, c-format
-msgid "Disk controller"
-msgstr "Ελεγκτές SMBus"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "the disk controller on the host side"
-msgstr ""
-
-#: standalone/harddrake2:50
-#, c-format
-msgid "class of hardware device"
-msgstr "κλάση της συσκευής "
-
-#: standalone/harddrake2:51 standalone/harddrake2:83
-#: standalone/printerdrake:224
-#, c-format
-msgid "Model"
-msgstr "Μοντέλο"
-
-#: standalone/harddrake2:51
-#, c-format
-msgid "hard disk model"
-msgstr "μοντέλο σκληρού δίσκου"
-
-#: standalone/harddrake2:52
-#, c-format
-msgid "network printer port"
-msgstr "θύρα εκτυπωτή δικτύου"
-
-#: standalone/harddrake2:53
-#, fuzzy, c-format
-msgid "Primary partitions"
-msgstr "Μορφοπ. κατατμήσ."
-
-#: standalone/harddrake2:53
-#, fuzzy, c-format
-msgid "the number of the primary partitions"
-msgstr "Ο αριθμός του επεξεργαστή"
-
-#: standalone/harddrake2:54
-#, c-format
-msgid "the vendor name of the device"
-msgstr "το όνομα κατασκευαστή της συσκευής"
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "Bus PCI #"
-msgstr ""
-
-#: standalone/harddrake2:55
-#, fuzzy, c-format
-msgid "the PCI bus on which the device is plugged"
-msgstr ""
-"αυτή είναι η φυσική θέση στην οποία είναι συνδεμένη η συσκευή (π.χ.PCI, "
-"USB, ...)"
-
-#: standalone/harddrake2:56
-#, fuzzy, c-format
-msgid "PCI device #"
-msgstr "Υπηρεσίες"
-
-#: standalone/harddrake2:56
-#, fuzzy, c-format
-msgid "PCI device number"
-msgstr "ένας αριθμός"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function #"
-msgstr ""
-
-#: standalone/harddrake2:57
-#, fuzzy, c-format
-msgid "PCI function number"
-msgstr "Όνομα σύνδεσης"
-
-#: standalone/harddrake2:58
-#, fuzzy, c-format
-msgid "Vendor ID"
-msgstr "Κατασκευαστής"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "this is the standard numerical identifier of the vendor"
-msgstr ""
-
-#: standalone/harddrake2:59
-#, fuzzy, c-format
-msgid "Device ID"
-msgstr "Συσκευή: "
-
-#: standalone/harddrake2:59
-#, fuzzy, c-format
-msgid "this is the numerical identifier of the device"
-msgstr "το όνομα κατασκευαστή της συσκευής"
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "Sub vendor ID"
-msgstr ""
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "this is the minor numerical identifier of the vendor"
-msgstr ""
-
-#: standalone/harddrake2:61
-#, fuzzy, c-format
-msgid "Sub device ID"
-msgstr "Υπηρεσίες"
-
-#: standalone/harddrake2:61
-#, fuzzy, c-format
-msgid "this is the minor numerical identifier of the device"
-msgstr "το όνομα κατασκευαστή της συσκευής"
-
-#: standalone/harddrake2:62
-#, fuzzy, c-format
-msgid "Device USB ID"
-msgstr "Συσκευή: "
-
-#: standalone/harddrake2:62
-#, c-format
-msgid ".."
-msgstr ""
-
-#: standalone/harddrake2:66
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
-
-#: standalone/harddrake2:66
-#, c-format
-msgid ""
-"the GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
-msgstr ""
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "Cache size"
-msgstr "μέγεθος Cache"
-
-#: standalone/harddrake2:67
-#, fuzzy, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "Μέγεθος της (δευτέρου επιπέδου) cpu cache"
-
-#. -PO: here "comas" is the medical coma, not the lexical coma!!
-#: standalone/harddrake2:70
-#, c-format
-msgid "Coma bug"
-msgstr "Σφάλμα Coma"
-
-#: standalone/harddrake2:70
-#, fuzzy, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "Αν αυτή η συσκευή έχει το σφάλμα Cyrix 6x86 Coma"
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "Cpuid family"
-msgstr "Οικογένεια Cpuid"
-
-#: standalone/harddrake2:71
-#, fuzzy, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "Οικογένεια του επεξεργαστή (π.χ. 6 για κλάση i686)"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "Cpuid level"
-msgstr "Επίπεδο Cpuid"
-
-#: standalone/harddrake2:72
-#, fuzzy, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "Επίπεδο πληροφοριών που μπορούν να βρεθούν μέσω των εντολών cpuid"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Συχνότητα (MHz)"
-
-#: standalone/harddrake2:73
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr ""
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "Flags"
-msgstr "Διακόπτες"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr ""
-
-#: standalone/harddrake2:75
-#, c-format
-msgid "Fdiv bug"
-msgstr "Σφάλμα Fdiv"
-
-#: standalone/harddrake2:76
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "Is FPU present"
-msgstr "Το FPU είναι παρόν"
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr ""
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr ""
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "F00f bug"
-msgstr "Σφάλμα F00f"
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
-
-#: standalone/harddrake2:80
-#, c-format
-msgid "Halt bug"
-msgstr ""
-
-#: standalone/harddrake2:81
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
-
-#: standalone/harddrake2:82
-#, fuzzy, c-format
-msgid "sub generation of the cpu"
-msgstr "Sub"
-
-#: standalone/harddrake2:83
-#, fuzzy, c-format
-msgid "generation of the cpu (eg: 8 for Pentium III, ...)"
-msgstr "Γενιά του επεξεργαστή (π.χ. 8 για Pentium III, ...)"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "Model name"
-msgstr "Όνομα μοντέλου"
-
-#: standalone/harddrake2:84
-#, fuzzy, c-format
-msgid "official vendor name of the cpu"
-msgstr "Το επίσημο όνομα κατασκευαστή του επεξεργαστή"
-
-#: standalone/harddrake2:85
-#, c-format
-msgid "the name of the CPU"
-msgstr "το όνομα κατασκευαστή του επεξεργαστή"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "Processor ID"
-msgstr "Ταυτότητα επεξεργαστή"
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "the number of the processor"
-msgstr "Ο αριθμός του επεξεργαστή"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "Model stepping"
-msgstr "Μοντέλο βηματισμού"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr ""
-
-#: standalone/harddrake2:88
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "το όνομα κατασκευαστή του επεξεργαστή"
-
-#: standalone/harddrake2:89
-#, fuzzy, c-format
-msgid "Write protection"
-msgstr "Αυτόματη ανίχνευση εκτυπωτών"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid ""
-"the WP flag in the CR0 register of the cpu enforce write protection at the "
-"memory page level, thus enabling the processor to prevent unchecked kernel "
-"accesses to user memory (aka this is a bug guard)"
-msgstr ""
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "Floppy format"
-msgstr "Φορμά Δισκέτας"
-
-#: standalone/harddrake2:93
-#, fuzzy, c-format
-msgid "format of floppies supported by the drive"
-msgstr "Φορμά για δισκέτες που μπορεί να δεχτεί ο οδηγός"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "Channel"
-msgstr "Κανάλι"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "Κανάλι EIDE/SCSI"
-
-#: standalone/harddrake2:98
-#, fuzzy, c-format
-msgid "Disk identifier"
-msgstr "Εκτυπωτής"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "usually the disk serial number"
-msgstr ""
-
-#: standalone/harddrake2:99
-#, fuzzy, c-format
-msgid "Logical unit number"
-msgstr "Τοπική μέτρηση"
-
-#: standalone/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 ""
-
-#. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...)
-#: standalone/harddrake2:106
-#, fuzzy, c-format
-msgid "Installed size"
-msgstr "Εγκατάσταση συστήματος"
-
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:107
-#, fuzzy, c-format
-msgid "Enabled Size"
-msgstr "ενεργοποίηση"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled size of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:108
-#, fuzzy, c-format
-msgid "type of the memory device"
-msgstr "το όνομα κατασκευαστή της συσκευής"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed"
-msgstr "Ταχύτητα"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:110
-#, fuzzy, c-format
-msgid "Bank connections"
-msgstr "Καλωδιακή σύνδεση"
-
-#: standalone/harddrake2:111
-#, c-format
-msgid "Socket designation of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:115
-#, fuzzy, c-format
-msgid "Device file"
-msgstr "Παλαιό αρχείο συσκευής"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid ""
-"the device file used to communicate with the kernel driver for the mouse"
-msgstr ""
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "Emulated wheel"
-msgstr ""
-
-#: standalone/harddrake2:116
-#, fuzzy, c-format
-msgid "whether the wheel is emulated or not"
-msgstr "Προσομοίωση Κουμπιών"
-
-#: standalone/harddrake2:117
-#, fuzzy, c-format
-msgid "the type of the mouse"
-msgstr "Παρακαλώ δοκιμάστε το ποντίκι"
-
-#: standalone/harddrake2:118
-#, fuzzy, c-format
-msgid "the name of the mouse"
-msgstr "το όνομα κατασκευαστή του επεξεργαστή"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "Number of buttons"
-msgstr "Αριθμός πλήκτρων"
-
-#: standalone/harddrake2:119
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "Ο αριθμός των πλήκτρων του ποντικιού"
-
-#: standalone/harddrake2:120
-#, fuzzy, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "Ο τύπος της θύρα στην οποία είναι συνδεδεμένο το ποντίκι σας."
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "Mouse protocol used by X11"
-msgstr ""
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "the protocol that the graphical desktop use with the mouse"
-msgstr ""
-
-#: standalone/harddrake2:128 standalone/harddrake2:137
-#: standalone/harddrake2:144 standalone/harddrake2:152
-#: standalone/harddrake2:341
-#, c-format
-msgid "Identification"
-msgstr "Ταυτότητα"
-
-#: standalone/harddrake2:129 standalone/harddrake2:145
-#, c-format
-msgid "Connection"
-msgstr "Σύνδεση"
-
-#: standalone/harddrake2:138
-#, fuzzy, c-format
-msgid "Performances"
-msgstr "Προτίμηση: "
-
-#: standalone/harddrake2:139
-#, fuzzy, c-format
-msgid "Bugs"
-msgstr "Bus"
-
-#: standalone/harddrake2:140
-#, c-format
-msgid "FPU"
-msgstr ""
-
-#: standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Συσκευή"
-
-#: standalone/harddrake2:148
-#, c-format
-msgid "Partitions"
-msgstr "Κατατμήσεις"
-
-#: standalone/harddrake2:153
-#, c-format
-msgid "Features"
-msgstr "Χαρακτηριστικά"
-
-#. -PO: please keep all "/" characters !!!
-#: standalone/harddrake2:176 standalone/logdrake:76
-#: standalone/printerdrake:146 standalone/printerdrake:159
-#: standalone/printerdrake:171
-#, c-format
-msgid "/_Options"
-msgstr "/_Επιλογές"
-
-#: standalone/harddrake2:177 standalone/harddrake2:202 standalone/logdrake:78
-#: standalone/printerdrake:172 standalone/printerdrake:174
-#: standalone/printerdrake:177 standalone/printerdrake:179
-#, c-format
-msgid "/_Help"
-msgstr "/_Βοήθεια"
-
-#: standalone/harddrake2:181
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Εντοπισμός _εκτυπωτών"
-
-#: standalone/harddrake2:182
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Εντοπισμός _μόντεμ"
-
-#: standalone/harddrake2:183
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Εντοπισμός _οδηγών jaz"
-
-#: standalone/harddrake2:184
-#, c-format
-msgid "/Autodetect parallel _zip drives"
-msgstr ""
-
-#: standalone/harddrake2:191 standalone/printerdrake:152
-#, c-format
-msgid "/_Quit"
-msgstr "/_Έξοδος"
-
-#: standalone/harddrake2:204
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Περιγραφή Πεδίων"
-
-#: standalone/harddrake2:206
-#, c-format
-msgid "Harddrake help"
-msgstr "Βοήθεια Harddrake"
-
-#: standalone/harddrake2:215
-#, 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 ""
-"Μόλις επιλέξετε μια συσκευή, θα μπορείτε να δείτε τις πληροφορίες σε πεδία "
-"που εμφανίζονται στο δεξί τμήμα με όνομα(\"Πληροφορίες\")"
-
-#: standalone/harddrake2:221 standalone/printerdrake:177
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Αναφορά Bug"
-
-#: standalone/harddrake2:223 standalone/printerdrake:179
-#, c-format
-msgid "/_About..."
-msgstr "/_Σχετικά με..."
-
-#: standalone/harddrake2:224
-#, c-format
-msgid "About Harddrake"
-msgstr "Σχετικά με το Harddrake"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/harddrake2:226
-#, fuzzy, c-format
-msgid ""
-"This is HardDrake, a %s hardware configuration tool.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-msgstr ""
-"Αυτό είναι το HardDrake, ένα εργαλείο ρύθμισης της Mandriva Linux\n"
-"<span foreground=\"royalblue3\">Έκδοση:</span> %s\n"
-"<span foreground=\"royalblue3\">Δημιουργός:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-
-#: standalone/harddrake2:242
-#, fuzzy, c-format
-msgid "Harddrake2"
-msgstr "HardDrake"
-
-#: standalone/harddrake2:272
-#, c-format
-msgid "Detected hardware"
-msgstr "Υλικό που ανιχνεύθηκε"
-
-#: standalone/harddrake2:277
-#, c-format
-msgid "Configure module"
-msgstr "Ρύθμιση αρθρώματος"
-
-#: standalone/harddrake2:284
-#, c-format
-msgid "Run config tool"
-msgstr "Εκτέλεση εργαλείο ρύθμισης"
-
-#: standalone/harddrake2:308
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
-"Κάντε κλικ σε μια συσκευή στο αριστερό τμήμα για να δείτε εδώ τις "
-"πληροφορίες."
-
-#: standalone/harddrake2:329 standalone/printerdrake:306
-#: standalone/printerdrake:320
-#, c-format
-msgid "Unknown"
-msgstr "Άγνωστο"
-
-#: standalone/harddrake2:349
-#, c-format
-msgid "Misc"
-msgstr "Διάφορα"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "secondary"
-msgstr "δευτερεύουσα"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "primary"
-msgstr "πρωτεύουσα"
-
-#: standalone/harddrake2:431
-#, fuzzy, c-format
-msgid "burner"
-msgstr "Εκτυπωτής"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "DVD"
-msgstr "DVD"
-
-#: standalone/harddrake2:511
-#, c-format
-msgid ""
-"The following devices needs proprietary drivers or firmwares in order to "
-"operate smoothly. The appropriate packages can be retrieved from the "
-"Mandriva Club. Do you want to subscribe to the Mandriva Club?"
-msgstr ""
-
-#: standalone/keyboarddrake:45
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Θέλετε το BackSpace να επιστρέφει Delete στην κονσόλα;"
-
-#: standalone/localedrake:38
-#, c-format
-msgid "LocaleDrake"
-msgstr "LocaleDrake"
-
-#: standalone/localedrake:44
-#, fuzzy, 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"
-#: standalone/localedrake:47 standalone/scannerdrake:135
-#, c-format
-msgid ", "
-msgstr ", "
-
-#: standalone/localedrake:55
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "Η αλλαγή έγινε, αλλά για να ισχύσει θα πρέπει να γίνει αποσύνδεση"
-
-#: standalone/logdrake:49
-#, fuzzy, c-format
-msgid "Mandriva Linux Tools Logs"
-msgstr "Επεξήγηση Εργαλείων της Mandriva"
-
-#: standalone/logdrake:50
-#, fuzzy, c-format
-msgid "Logdrake"
-msgstr "logdrake"
-
-#: standalone/logdrake:63
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Εμφάνιση μόνο για την επιλεγμένη ημέρα"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "/File/_New"
-msgstr "/Αρχείο/_Νέο"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "/File/_Open"
-msgstr "/Αρχείο/Ά_νοιγμα"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "/File/_Save"
-msgstr "/Αρχείο/Απο_θήκευση"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
-
-#: standalone/logdrake:73
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Αρχείο/Αποθήκευση _Ως"
-
-#: standalone/logdrake:74
-#, c-format
-msgid "/File/-"
-msgstr "/Αρχείο/-"
-
-#: standalone/logdrake:77
-#, c-format
-msgid "/Options/Test"
-msgstr "/Επιλογές/Τεστ"
-
-#: standalone/logdrake:79
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Βοήθεια/_Σχετικά με..."
-
-#: standalone/logdrake:108
-#, c-format
-msgid ""
-"_:this is the auth.log log file\n"
-"Authentication"
-msgstr ""
-
-#: standalone/logdrake:109
-#, c-format
-msgid ""
-"_:this is the user.log log file\n"
-"User"
-msgstr ""
-
-#: standalone/logdrake:110
-#, c-format
-msgid ""
-"_:this is the /var/log/messages log file\n"
-"Messages"
-msgstr ""
-
-#: standalone/logdrake:111
-#, c-format
-msgid ""
-"_:this is the /var/log/syslog log file\n"
-"Syslog"
-msgstr ""
-
-#: standalone/logdrake:115
-#, c-format
-msgid "search"
-msgstr "αναζήτηση"
-
-#: standalone/logdrake:127
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Ένα εργαλείο για να βλέπετε τα log σας"
-
-#: standalone/logdrake:128 standalone/net_applet:347 standalone/net_monitor:93
-#, c-format
-msgid "Settings"
-msgstr "Ρυθμίσεις"
-
-#: standalone/logdrake:133
-#, fuzzy, c-format
-msgid "Matching"
-msgstr "ταιριάζει"
-
-#: standalone/logdrake:134
-#, c-format
-msgid "but not matching"
-msgstr "αλλά δεν ταιριάζει"
-
-#: standalone/logdrake:138
-#, c-format
-msgid "Choose file"
-msgstr "Επιλέξτε ένα αρχείο"
-
-#: standalone/logdrake:150
-#, c-format
-msgid "Calendar"
-msgstr "Ημερολόγιο"
-
-#: standalone/logdrake:160
-#, c-format
-msgid "Content of the file"
-msgstr "Περιεχόμενο του αρχείου"
-
-#: standalone/logdrake:164 standalone/logdrake:401
-#, c-format
-msgid "Mail alert"
-msgstr "Ειδοποίηση Ταχυδρομείου"
-
-#: standalone/logdrake:171
-#, c-format
-msgid "The alert wizard has failed unexpectedly:"
-msgstr ""
-
-#: standalone/logdrake:224
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "παρακαλώ περιμένετε, επεξεργασία αρχείου: %s"
-
-#: standalone/logdrake:379
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Εξυπηρετητής Apache World Wide Web"
-
-#: standalone/logdrake:380
-#, c-format
-msgid "Domain Name Resolver"
-msgstr ""
-
-#: standalone/logdrake:381
-#, c-format
-msgid "Ftp Server"
-msgstr "Διακομιστής Ftp"
-
-#: standalone/logdrake:382
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Εξυπηρετητής Ταχυδρομείου Postfix"
-
-#: standalone/logdrake:383
-#, c-format
-msgid "Samba Server"
-msgstr "Εξυπηρετητής Samba"
-
-#: standalone/logdrake:385
-#, c-format
-msgid "Webmin Service"
-msgstr "Υπηρεσία Webmin"
-
-#: standalone/logdrake:386
-#, c-format
-msgid "Xinetd Service"
-msgstr "Υπηρεσία Xinetd"
-
-#: standalone/logdrake:395
-#, fuzzy, c-format
-msgid "Configure the mail alert system"
-msgstr "Αλλαγή συστήματος εκτύπωσης"
-
-#: standalone/logdrake:396
-#, c-format
-msgid "Stop the mail alert system"
-msgstr ""
-
-#: standalone/logdrake:404
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Ρύθμιση ειδοποίησης Ταχυδρομείου"
-
-#: standalone/logdrake:405
-#, 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"
-
-#: standalone/logdrake:415
-#, fuzzy, c-format
-msgid "Services settings"
-msgstr "Ρυθμίσεις υπηρεσίας"
-
-#: standalone/logdrake:416
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr ""
-"Θα λάβετε μια ειδοποίηση εάν μια από τις επιλεγμένες υπηρεσίες πάψει να "
-"εκτελείται"
-
-#: standalone/logdrake:423
-#, fuzzy, c-format
-msgid "Load setting"
-msgstr "Φόρτωση ρυθμίσεων"
-
-#: standalone/logdrake:424
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-"Θα λάβετε μια ειδοποίηση εάν το φορτίο είναι μεγαλύτερο από αυτή την τιμή"
-
-#: standalone/logdrake:425
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr ""
-
-#: standalone/logdrake:430
-#, fuzzy, c-format
-msgid "Alert configuration"
-msgstr "Ρύθμιση ειδοποιήσεων"
-
-#: standalone/logdrake:431
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Παρακαλώ εισάγετε την ηλεκτρονική σας διεύθυνση"
-
-#: standalone/logdrake:432
-#, c-format
-msgid "and enter the name (or the IP) of the SMTP server you wish to use"
-msgstr ""
-
-#: standalone/logdrake:451
-#, c-format
-msgid "The wizard successfully configured the mail alert."
-msgstr ""
-
-#: standalone/logdrake:457
-#, c-format
-msgid "The wizard successfully disabled the mail alert."
-msgstr ""
-
-#: standalone/logdrake:516
-#, c-format
-msgid "Save as.."
-msgstr "Αποθήκευση Ως.."
-
-#: standalone/mousedrake:31
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Παρακαλώ επιλέξτε τύπο ποντικιού."
-
-#: standalone/mousedrake:44
-#, c-format
-msgid "Emulate third button?"
-msgstr "Εξομοίωση τρίτου πλήκτρου;"
-
-#: standalone/mousedrake:61
-#, fuzzy, c-format
-msgid "Mouse test"
-msgstr "Mouse Systems"
-
-#: standalone/mousedrake:64
-#, fuzzy, c-format
-msgid "Please test your mouse:"
-msgstr "Παρακαλώ δοκιμάστε το ποντίκι"
-
-#: standalone/net_applet:47
-#, fuzzy, c-format
-msgid "Network is up on interface %s"
-msgstr "Συσκευή δικτύου"
-
-#. -PO: keep the "Configure Network" substring synced with the "Configure Network" message below
-#: standalone/net_applet:50
-#, fuzzy, c-format
-msgid "Network is down on interface %s. Click on \"Configure Network\""
-msgstr "Η λειτουργικότητα του δικτύου δεν ρυθμίστηκε"
-
-#: standalone/net_applet:56 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Connect %s"
-msgstr "Σύνδεση %s"
-
-#: standalone/net_applet:57 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, c-format
-msgid "Disconnect %s"
-msgstr "Αποσύνδεση %s"
-
-#: standalone/net_applet:58
-#, fuzzy, c-format
-msgid "Monitor Network"
-msgstr "Επαναφορά μέσω δικτύου"
-
-#: standalone/net_applet:60
-#, c-format
-msgid "Manage wireless networks"
-msgstr ""
-
-#: standalone/net_applet:61
-#, fuzzy, c-format
-msgid "Configure Network"
-msgstr "Ρύθμιση δικτύου"
-
-#: standalone/net_applet:63
-#, fuzzy, c-format
-msgid "Watched interface"
-msgstr "Διεπαφή"
-
-#: standalone/net_applet:93
-#, c-format
-msgid "Profiles"
-msgstr "Προφίλ"
-
-#: standalone/net_applet:102
-#, c-format
-msgid "Get Online Help"
-msgstr ""
-
-#: standalone/net_applet:335
-#, c-format
-msgid "Interactive Firewall automatic mode"
-msgstr ""
-
-#: standalone/net_applet:340
-#, c-format
-msgid "Always launch on startup"
-msgstr ""
-
-#: standalone/net_applet:344
-#, fuzzy, c-format
-msgid "Wireless networks"
-msgstr "Ασύρματη σύνδεση"
-
-#: standalone/net_applet:429
-#, fuzzy, c-format
-msgid "Interactive Firewall: intrusion detected"
-msgstr "Ανιχνεύθηκε ρύθμιση του Τοίχους Προστασίας!"
-
-#: standalone/net_applet:442
-#, fuzzy, c-format
-msgid "What do you want to do with this attacker?"
-msgstr "Θέλετε να τερματίσετε το παιχνίδι;"
-
-#: standalone/net_applet:445
-#, fuzzy, c-format
-msgid "Attack details"
-msgstr "Χωρίς λεπτομέρειες"
-
-#: standalone/net_applet:449
-#, fuzzy, c-format
-msgid "Attack time: %s"
-msgstr "Ενέργεια: %s"
-
-#: standalone/net_applet:450
-#, c-format
-msgid "Network interface: %s"
-msgstr "Συσκευή δικτύου: %s"
-
-#: standalone/net_applet:451
-#, fuzzy, c-format
-msgid "Attack type: %s"
-msgstr "Τύπος πρόσβασης: %s\n"
-
-#: standalone/net_applet:452
-#, c-format
-msgid "Protocol: %s"
-msgstr "Πρωτόκολλο: %s"
-
-#: standalone/net_applet:453
-#, fuzzy, c-format
-msgid "Attacker IP address: %s"
-msgstr "Στατική διεύθυνση IP :"
-
-#: standalone/net_applet:454
-#, fuzzy, c-format
-msgid "Attacker hostname: %s"
-msgstr "Εγκαθίδρυση όνομα συστήματος %s: "
-
-#: standalone/net_applet:457
-#, fuzzy, c-format
-msgid "Service attacked: %s"
-msgstr "_Τύπος υπηρεσίας:"
-
-#: standalone/net_applet:458
-#, fuzzy, c-format
-msgid "Port attacked: %s"
-msgstr "Θύρα: %s"
-
-#: standalone/net_applet:460
-#, c-format
-msgid "Type of ICMP attack: %s"
-msgstr ""
-
-#: standalone/net_applet:465
-#, c-format
-msgid "Always blacklist (do not ask again)"
-msgstr ""
-
-#: standalone/net_monitor:57 standalone/net_monitor:62
-#, c-format
-msgid "Network Monitoring"
-msgstr "Παρακολούθηση Δικτύου"
-
-#: standalone/net_monitor:98
-#, fuzzy, c-format
-msgid "Global statistics"
-msgstr "Στατιστικά"
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Instantaneous"
-msgstr ""
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Average"
-msgstr "Μέσος όρος"
-
-#: standalone/net_monitor:102
-#, fuzzy, c-format
-msgid ""
-"Sending\n"
-"speed:"
-msgstr "Ταχύτητα Αποστολής:"
-
-#: standalone/net_monitor:103
-#, fuzzy, c-format
-msgid ""
-"Receiving\n"
-"speed:"
-msgstr "Ταχύτητα Λήψης:"
-
-#: standalone/net_monitor:107
-#, fuzzy, c-format
-msgid ""
-"Connection\n"
-"time: "
-msgstr "Ώρα Σύνδεσης: "
-
-#: standalone/net_monitor:114
-#, c-format
-msgid "Use same scale for received and transmitted"
-msgstr ""
-
-#: standalone/net_monitor:133
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Παρακαλώ περιμένετε, δοκιμάζεται η σύνδεση..."
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, fuzzy, c-format
-msgid "Disconnecting from Internet "
-msgstr "Αποσύνδεση από το Διαδίκτυο"
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, fuzzy, c-format
-msgid "Connecting to Internet "
-msgstr "Σύνδεση στο Διαδίκτυο"
-
-#: standalone/net_monitor:226
-#, fuzzy, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Η αποσύνδεση από το διαδίκτυο απέτυχε."
-
-#: standalone/net_monitor:227
-#, fuzzy, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Η αποσύνδεση από το Διαδίκτυο ολοκληρώθηκε."
-
-#: standalone/net_monitor:229
-#, c-format
-msgid "Connection complete."
-msgstr "Η σύνδεση έγινε."
-
-#: standalone/net_monitor:230
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandriva Linux Control Center."
-msgstr ""
-"Η σύνδεση απέτυχε.\n"
-"Επαληθεύστε τις ρυθμίσεις σας στο Κέντρο Ελέγχου Mandriva Linux."
-
-#: standalone/net_monitor:335
-#, c-format
-msgid "Color configuration"
-msgstr "Ρύθμιση χρωμάτων"
-
-#: standalone/net_monitor:383 standalone/net_monitor:403
-#, c-format
-msgid "sent: "
-msgstr "αποστολή: "
-
-#: standalone/net_monitor:390 standalone/net_monitor:407
-#, c-format
-msgid "received: "
-msgstr "ληφθέντα:"
-
-#: standalone/net_monitor:397
-#, c-format
-msgid "average"
-msgstr "μέσος όρος"
-
-#: standalone/net_monitor:400
-#, c-format
-msgid "Local measure"
-msgstr "Τοπική μέτρηση"
-
-#: standalone/net_monitor:461
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Προσοχή ανιχνεύθηκε μια άλλη σύνδεση στο διαδίκτυο, που ίσως χρησιμοποιεί το "
-"δίκτυό σας"
-
-#: standalone/net_monitor:472
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "Ρύθμιση σύνδεσης Διαδικτύου"
-
-#: standalone/printerdrake:76
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "Ανάγνωση δεδομένων των εγκατεστημένων εκτυπωτών..."
-
-#: standalone/printerdrake:128
-#, fuzzy, c-format
-msgid "%s Printer Management Tool"
-msgstr "Κοινή χρήση εκτυπωτών"
-
-#: standalone/printerdrake:142 standalone/printerdrake:143
-#: standalone/printerdrake:144 standalone/printerdrake:145
-#: standalone/printerdrake:153 standalone/printerdrake:154
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Actions"
-msgstr "/_Ενέργειες"
-
-#: standalone/printerdrake:142 standalone/printerdrake:154
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Προσθήκη εκτυπωτή"
-
-#: standalone/printerdrake:143
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Ορισμός ως ε_ξ ορισμού"
-
-#: standalone/printerdrake:144
-#, c-format
-msgid "/_Edit"
-msgstr "/_Επεξεργασία"
-
-#: standalone/printerdrake:145
-#, c-format
-msgid "/_Delete"
-msgstr "/_Διαγραφή"
-
-#: standalone/printerdrake:146
-#, c-format
-msgid "/_Expert mode"
-msgstr "/_Για Προχωρημένους"
-
-#: standalone/printerdrake:151
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Ανανέωση"
-
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_Ρύθμιση CUPS"
-
-#: standalone/printerdrake:171
-#, fuzzy, c-format
-msgid "/Configure _Auto Administration"
-msgstr "Απομακρυσμένη διαχείριση"
-
-#: standalone/printerdrake:194
-#, c-format
-msgid "Search:"
-msgstr "Αναζήτηση:"
-
-#: standalone/printerdrake:197
-#, c-format
-msgid "Apply filter"
-msgstr "Εφαρμογή φίλτρου"
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Def."
-msgstr ""
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Printer Name"
-msgstr "Όνομα εκτυπωτή"
-
-#: standalone/printerdrake:224
-#, c-format
-msgid "Connection Type"
-msgstr "Τύπος σύνδεσης"
-
-#: standalone/printerdrake:231
-#, c-format
-msgid "Server Name"
-msgstr "Όνομα εξυπηρετητή"
-
-#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:239
-#, fuzzy, c-format
-msgid "Add Printer"
-msgstr "Εκτυπωτής"
-
-#: standalone/printerdrake:239
-#, fuzzy, c-format
-msgid "Add a new printer to the system"
-msgstr "Προσθήκη μιας ομάδας"
-
-#. -PO: "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:242
-#, c-format
-msgid "Set as default"
-msgstr "Ορισμός ως προεπιλογής"
-
-#: standalone/printerdrake:242
-#, fuzzy, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Ορισμός αυτού του εκτυπωτή ως προεπιλεγμένου"
-
-#: standalone/printerdrake:245
-#, fuzzy, c-format
-msgid "Edit selected printer"
-msgstr "Επεξεργασία επιλεγμένου εξυπηρετητή"
-
-#: standalone/printerdrake:248
-#, fuzzy, c-format
-msgid "Delete selected printer"
-msgstr "Διαγραφή επιλεγμένου κανόνα"
-
-#: standalone/printerdrake:251
-#, c-format
-msgid "Refresh the list"
-msgstr "Ανανέωση της λίστας"
-
-#. -PO: "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:254
-#, fuzzy, c-format
-msgid "Configure CUPS"
-msgstr "Ρύθμιση Χ"
-
-#: standalone/printerdrake:254
-#, fuzzy, c-format
-msgid "Configure CUPS printing system"
-msgstr "Αλλαγή συστήματος εκτύπωσης"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Enabled"
-msgstr "Ενεργοποιημένο"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Disabled"
-msgstr "Ανενεργό"
-
-#: standalone/printerdrake:596
-#, c-format
-msgid "Authors: "
-msgstr "Δημιουργοί: "
-
-#. -PO: here %s is the version number
-#: standalone/printerdrake:606
-#, fuzzy, c-format
-msgid "Printer Management %s"
-msgstr "Κοινή χρήση εκτυπωτών"
-
-#: standalone/scannerdrake:51
-#, fuzzy, c-format
-msgid ""
-"SANE packages need to be installed to use scanners.\n"
-"\n"
-"Do you want to install the SANE packages?"
-msgstr "Το πακέτο %s πρέπει να αναβαθμιστεί. Θέλετε να το εγκαταστήσετε;"
-
-#: standalone/scannerdrake:55
-#, fuzzy, c-format
-msgid "Aborting Scannerdrake."
-msgstr "Scannerdrake"
-
-#: standalone/scannerdrake:60
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-
-#: standalone/scannerdrake:61
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr ""
-
-#: standalone/scannerdrake:67 standalone/scannerdrake:508
-#, c-format
-msgid "Searching for configured scanners..."
-msgstr "Γίνεται αναζήτηση για ρυθμισμένους σαρωτές ..."
-
-#: standalone/scannerdrake:71 standalone/scannerdrake:512
-#, c-format
-msgid "Searching for new scanners..."
-msgstr "Γίνεται αναζήτηση για νέους σαρωτές ..."
-
-#: standalone/scannerdrake:79 standalone/scannerdrake:534
-#, c-format
-msgid "Re-generating list of configured scanners..."
-msgstr "Επαναδημιουργία λίστας με τους ρυθμισμένους σαρωτές ..."
-
-#: standalone/scannerdrake:101
-#, fuzzy, c-format
-msgid "The %s is not supported by this version of %s."
-msgstr "Το %s δεν υποστηρίζεται από αυτή την έκδοση του Mandriva Linux."
-
-#: standalone/scannerdrake:104
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "Το %s βρέθηκε στο %s,να ρυθμιστεί αυτόματα;"
-
-#: standalone/scannerdrake:116
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
-"το %s δεν είναι στη βάση δεδομένων των σαρωτών, να ρυθμιστεί χειροκίνητα;"
-
-#: standalone/scannerdrake:131
-#, c-format
-msgid "Select a scanner model"
-msgstr "Επιλέξτε ένα μοντέλο σαρωτή"
-
-#: standalone/scannerdrake:132
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: standalone/scannerdrake:133
-#, c-format
-msgid "Detected model: %s"
-msgstr "Βρέθηκε το μοντέλο: %s"
-
-#: standalone/scannerdrake:136
-#, c-format
-msgid "Port: %s"
-msgstr "Θύρα: %s"
-
-#: standalone/scannerdrake:138 standalone/scannerdrake:141
-#, c-format
-msgid " (UNSUPPORTED)"
-msgstr ""
-
-#: standalone/scannerdrake:144
-#, fuzzy, c-format
-msgid "The %s is not supported under Linux."
-msgstr "Το %s δεν υποστηρίζεται από αυτή την έκδοση του Mandriva Linux."
-
-#: standalone/scannerdrake:171 standalone/scannerdrake:185
-#, c-format
-msgid "Do not install firmware file"
-msgstr ""
-
-#: standalone/scannerdrake:175 standalone/scannerdrake:227
-#, c-format
-msgid ""
-"It is possible that your %s needs its firmware to be uploaded everytime when "
-"it is turned on."
-msgstr ""
-
-#: standalone/scannerdrake:176 standalone/scannerdrake:228
-#, c-format
-msgid "If this is the case, you can make this be done automatically."
-msgstr ""
-
-#: standalone/scannerdrake:177 standalone/scannerdrake:231
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware file for your scanner so that it "
-"can be installed."
-msgstr ""
-
-#: standalone/scannerdrake:178 standalone/scannerdrake:232
-#, 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 ""
-
-#: standalone/scannerdrake:180 standalone/scannerdrake:239
-#, c-format
-msgid "Install firmware file from"
-msgstr ""
-
-#: standalone/scannerdrake:200
-#, fuzzy, c-format
-msgid "Select firmware file"
-msgstr "Επιλέξτε αρχείο"
-
-#: standalone/scannerdrake:203 standalone/scannerdrake:262
-#, c-format
-msgid "The firmware file %s does not exist or is unreadable!"
-msgstr ""
-
-#: standalone/scannerdrake:226
-#, c-format
-msgid ""
-"It is possible that your scanners need their firmware to be uploaded "
-"everytime when they are turned on."
-msgstr ""
-
-#: standalone/scannerdrake:230
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware files for your scanners so that it "
-"can be installed."
-msgstr ""
-
-#: standalone/scannerdrake:233
-#, 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 ""
-
-#: standalone/scannerdrake:235
-#, c-format
-msgid "Install firmware for the"
-msgstr ""
-
-#: standalone/scannerdrake:258
-#, fuzzy, c-format
-msgid "Select firmware file for the %s"
-msgstr "Επιλέξτε αρχείο"
-
-#: standalone/scannerdrake:276
-#, fuzzy, c-format
-msgid "Could not install the firmware file for the %s!"
-msgstr "Επιλέξτε αρχείο"
-
-#: standalone/scannerdrake:289
-#, c-format
-msgid "The firmware file for your %s was successfully installed."
-msgstr ""
-
-#: standalone/scannerdrake:299
-#, c-format
-msgid "The %s is unsupported"
-msgstr "Το %s δεν υποστηρίζεται"
-
-#: standalone/scannerdrake:304
-#, fuzzy, 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 από το Κέντρο Ελέγχου Mandriva από το "
-"τμήμα Υλικό."
-
-#: standalone/scannerdrake:322
-#, fuzzy, c-format
-msgid "Setting up kernel modules..."
-msgstr "Αποθήκευση πληροφ. χρήστη..."
-
-#: standalone/scannerdrake:332 standalone/scannerdrake:339
-#: standalone/scannerdrake:369
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Διαθέσιμες θύρες αυτόματου εντοπισμού"
-
-#: standalone/scannerdrake:334 standalone/scannerdrake:380
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Παρακαλώ επιλέξτε την συσκευή στην οποία είναι συνδεμένο το %s"
-
-#: standalone/scannerdrake:335
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr ""
-"(Σημείωση: Στις παράλληλες θύρες δεν μπορεί να γίνει αυτόματος εντοπισμός)"
-
-#: standalone/scannerdrake:337 standalone/scannerdrake:382
-#, c-format
-msgid "choose device"
-msgstr "Επιλέξτε συσκευή"
-
-#: standalone/scannerdrake:371
-#, c-format
-msgid "Searching for scanners..."
-msgstr "Γίνεται αναζήτηση για σαρωτές ..."
-
-#: standalone/scannerdrake:407 standalone/scannerdrake:414
-#, fuzzy, c-format
-msgid "Attention!"
-msgstr "Έλξη"
-
-#: standalone/scannerdrake:408
-#, 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 ""
-
-#: standalone/scannerdrake:409 standalone/scannerdrake:418
-#, c-format
-msgid ""
-"More info in the driver's manual page. Run the command \"man sane-%s\" to "
-"read it."
-msgstr ""
-
-#: standalone/scannerdrake:411 standalone/scannerdrake:420
-#, 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\" από το Πολυμέσα/Γραφικά "
-"από μενού εφαρμογών."
-
-#: standalone/scannerdrake:415
-#, c-format
-msgid ""
-"Your %s has been configured, but it is possible that additional manual "
-"adjustments are needed to get it to work. "
-msgstr ""
-
-#: standalone/scannerdrake:416
-#, 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 ""
-
-#: standalone/scannerdrake:417
-#, fuzzy, c-format
-msgid "edit the configuration file /etc/sane.d/%s.conf. "
-msgstr "Ενεργοποίηση ρυθμίσεων tos"
-
-#: standalone/scannerdrake:423
-#, fuzzy, 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\" από το Πολυμέσα/Γραφικά "
-"από μενού εφαρμογών."
-
-#: standalone/scannerdrake:448
-#, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr ""
-"Οι παρακάτω σαρωτές\n"
-"\n"
-"%s\n"
-"είναι διαθέσιμοι στο σύστημά σας\n"
+msgid "All servers"
+msgstr "Προσθήκη εξυπηρετητή"
-#: standalone/scannerdrake:449
+#: timezone.pm:183
#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
+msgid "Global"
msgstr ""
-"Ο παρακάτω σαρωτής\n"
-"\n"
-"%s\n"
-"είναι διαθέσιμος στο σύστημά σας\n"
-
-#: standalone/scannerdrake:452 standalone/scannerdrake:455
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "Δεν βρέθηκαν σαρωτές που να είναι διαθέσιμοι στο σύστημά σας.\n"
-
-#: standalone/scannerdrake:469
-#, c-format
-msgid "Search for new scanners"
-msgstr "Αναζήτηση για νέους σαρωτές"
-#: standalone/scannerdrake:475
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Προσθήκη σαρωτή χειροκίνητα"
-
-#: standalone/scannerdrake:482
+#: timezone.pm:186
#, fuzzy, c-format
-msgid "Install/Update firmware files"
-msgstr "Επιλέξτε αρχείο"
-
-#: standalone/scannerdrake:488
-#, c-format
-msgid "Scanner sharing"
-msgstr "Κοινή χρήση σαρωτών"
-
-#: standalone/scannerdrake:547 standalone/scannerdrake:712
-#, c-format
-msgid "All remote machines"
-msgstr "Όλα τα απομακρυσμένα μηχανήματα"
-
-#: standalone/scannerdrake:559 standalone/scannerdrake:862
-#, c-format
-msgid "This machine"
-msgstr "Αυτό το μηχάνημα"
-
-#: standalone/scannerdrake:599
-#, 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 ""
-"Εδώ μπορείτε να επιλέξετε αν οι συνδεμένοι σαρωτές αυτού το μηχανήματος θα "
-"είναι προσβάσιμοι από απομακρυσμένα μηχανήματα και από ποια."
-
-#: standalone/scannerdrake:600
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"Επίσης εδώ μπορείτε να ορίσετε αν σαρωτές που βρίσκονται σε απομακρυσμένα "
-"μηχανήματα θα είναι διαθέσιμα σε αυτό το μηχάνημα."
-
-#: standalone/scannerdrake:603
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr ""
-"Οι σαρωτές αυτού του μηχανήματος είναι διαθέσιμοι σε άλλους υπολογιστές"
-
-#: standalone/scannerdrake:605
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Κοινόχρηστοι σαρωτές στους υπολογιστές: "
-
-#: standalone/scannerdrake:619
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Χρήση σαρωτών σε απομακρυσμένους υπολογιστές"
-
-#: standalone/scannerdrake:622
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Χρήση των σαρωτών στους υπολογιστές:"
-
-#: standalone/scannerdrake:649 standalone/scannerdrake:721
-#: standalone/scannerdrake:871
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Κοινή χρήση τοπικών σαρωτών"
-
-#: standalone/scannerdrake:650
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr ""
-"Αυτά είναι τα μηχανήματα όπου οι τοπικά συνδεμένοι σαρωτές(ης) πρέπει να "
-"είναι διαθέσιμοι:"
-
-#: standalone/scannerdrake:661 standalone/scannerdrake:811
-#, c-format
-msgid "Add host"
-msgstr "Προσθήκη υπολογιστή"
-
-#: standalone/scannerdrake:667 standalone/scannerdrake:817
-#, c-format
-msgid "Edit selected host"
-msgstr "Επεξεργασία επιλεγμένου υπολογιστή"
-
-#: standalone/scannerdrake:676 standalone/scannerdrake:826
-#, c-format
-msgid "Remove selected host"
-msgstr "Αφαίρεση επιλεγμένου υπολογιστή"
-
-#: standalone/scannerdrake:700 standalone/scannerdrake:708
-#: standalone/scannerdrake:713 standalone/scannerdrake:759
-#: standalone/scannerdrake:850 standalone/scannerdrake:858
-#: standalone/scannerdrake:863 standalone/scannerdrake:909
-#, c-format
-msgid "Name/IP address of host:"
-msgstr "Όνομα/IP διεύθυνση του υπολογιστή:"
-
-#: standalone/scannerdrake:722 standalone/scannerdrake:872
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr ""
-"Επιλέξτε τον υπολογιστή του οποίου οι τοπικοί σαρωτές θα γίνουν διαθέσιμοι:"
-
-#: standalone/scannerdrake:733 standalone/scannerdrake:883
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Πρέπει να ορίστε τον δικτυακό όνομα ή την IP διεύθυνση.\n"
-
-#: standalone/scannerdrake:744 standalone/scannerdrake:894
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr ""
-"Ο υπολογιστής είναί ήδη στη λίστα, δεν μπορείτε να τον προσθέσετε ξανά.\n"
-
-#: standalone/scannerdrake:799
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Χρήση των απομακρυσμένων σαρωτών"
-
-#: standalone/scannerdrake:800
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr ""
-"Αυτά είναι τα μηχανήματα από όπου οι σαρωτές θα πρέπει να χρησιμοποιηθούν:"
+msgid "Africa"
+msgstr "Νότιος Αφρική"
-#: standalone/scannerdrake:957
+#: timezone.pm:187
#, fuzzy, 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 "Το πακέτο %s πρέπει να αναβαθμιστεί. Θέλετε να το εγκαταστήσετε;"
-
-#: standalone/scannerdrake:961 standalone/scannerdrake:965
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr ""
-
-#: standalone/service_harddrake:113
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "Ορισμένες συσκευές στο τμήμα υλικού \"%s\" αφαιρέθηκαν:\n"
+msgid "Asia"
+msgstr "Αυστρία"
-#: standalone/service_harddrake:114
+#: timezone.pm:188
#, c-format
-msgid "- %s was removed\n"
+msgid "Europe"
msgstr ""
-#: standalone/service_harddrake:117
+#: timezone.pm:189
#, fuzzy, c-format
-msgid "Some devices were added: %s\n"
-msgstr "Ορισμένες συσκευές προστέθηκαν:\n"
-
-#: standalone/service_harddrake:118
-#, c-format
-msgid "- %s was added\n"
-msgstr ""
-
-#: standalone/service_harddrake:235
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "Ανίχνευση υλικού σε εξέλιξη"
-
-#: standalone/service_harddrake_confirm:7
-#, c-format
-msgid "Hardware changes in \"%s\" class (%s seconds to answer)"
-msgstr ""
+msgid "North America"
+msgstr "Νότιος Αφρική"
-#: standalone/service_harddrake_confirm:8
+#: timezone.pm:190
#, fuzzy, c-format
-msgid "Do you want to run the appropriate config tool?"
-msgstr "Θέλετε να δοκιμάσετε τις ρυθμίσεις;"
-
-#: steps.pm:14
-#, c-format
-msgid "Language"
-msgstr "Επιλέξτε γλώσσα"
-
-#: steps.pm:15
-#, c-format
-msgid "License"
-msgstr "Άδεια Χρήσης"
-
-#: steps.pm:16
-#, c-format
-msgid "Configure mouse"
-msgstr "Ρύθμιση ποντικιού"
-
-#: steps.pm:17
-#, c-format
-msgid "Hard drive detection"
-msgstr "Εντοπισμός δίσκου"
-
-#: steps.pm:18
-#, c-format
-msgid "Select installation class"
-msgstr "Επιλέξτε εγκατάσταση"
-
-#: steps.pm:19
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Επιλέξτε πληκτρολόγιο"
-
-#: steps.pm:22
-#, c-format
-msgid "Format partitions"
-msgstr "Μορφοπ. κατατμήσ."
-
-#: steps.pm:23
-#, c-format
-msgid "Choose packages to install"
-msgstr "Επιλογή πακέτων"
-
-#: steps.pm:24
-#, c-format
-msgid "Install system"
-msgstr "Εγκατάσταση συστήματος"
+msgid "Oceania"
+msgstr "Πρώην Γιουγκοσλαβική Δημοκρατία της Μακεδονίας"
-#: steps.pm:25
+#: timezone.pm:191
#, fuzzy, c-format
-msgid "Administrator password"
-msgstr "Κωδικός πρόσβασης root"
-
-#: steps.pm:26
-#, c-format
-msgid "Add a user"
-msgstr "Προσθήκη χρήστη"
-
-#: steps.pm:27
-#, c-format
-msgid "Configure networking"
-msgstr "Ρύθμιση δικτύου"
-
-#: steps.pm:28
-#, c-format
-msgid "Install bootloader"
-msgstr "Πρόγραμμα εκκίνησης"
-
-#: steps.pm:29
-#, c-format
-msgid "Configure X"
-msgstr "Ρύθμιση Χ"
+msgid "South America"
+msgstr "Νότιος Αφρική"
-#: steps.pm:31
+#: timezone.pm:200
#, c-format
-msgid "Configure services"
-msgstr "Ρύθμιση υπηρεσιών"
+msgid "Hong Kong"
+msgstr "Χονγκ Κονγκ"
-#: steps.pm:32
+#: timezone.pm:237
#, c-format
-msgid "Install updates"
-msgstr "Αναβαθμίσεις"
+msgid "Russian Federation"
+msgstr "Ρωσική Ομοσπονδία"
-#: steps.pm:33
+#: timezone.pm:245
#, c-format
-msgid "Exit install"
-msgstr "Έξοδος"
+msgid "Yugoslavia"
+msgstr "Γιουγκοσλαβία"
-#: ugtk2.pm:899
+#: ugtk2.pm:788
#, c-format
msgid "Is this correct?"
msgstr "Σωστό;"
-#: ugtk2.pm:959
+#: ugtk2.pm:848
#, fuzzy, c-format
msgid "No file chosen"
msgstr "επιλογέας αρχείου"
-#: ugtk2.pm:961
+#: ugtk2.pm:850
#, fuzzy, c-format
msgid "You have chosen a file, not a directory"
msgstr "Πρέπει να καθορίσετε αρχείο, όχι κατάλογο.\n"
-#: ugtk2.pm:963
+#: ugtk2.pm:852
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr "Το όνομα '/' μπορεί να είναι μόνο κατάλογος, όχι ένα κλειδί"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, fuzzy, c-format
msgid "No such directory"
msgstr "Δεν είναι κατάλογος"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, fuzzy, c-format
msgid "No such file"
msgstr "Δεν υπάρχει αρχείο `%s'\n"
-#: ugtk2.pm:1046
+#: ugtk2.pm:933
#, c-format
msgid "Expand Tree"
msgstr "Ανάπτυξη δέντρου"
-#: ugtk2.pm:1047
+#: ugtk2.pm:934
#, c-format
msgid "Collapse Tree"
msgstr "Σύμπτυξη δέντρου"
-#: ugtk2.pm:1048
+#: ugtk2.pm:935
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "Εναλλαγή μεταξύ επίπεδης και ομαδικής ταξινόμησης"
@@ -25658,1386 +6665,17 @@ msgstr ""
msgid "Installation failed"
msgstr "Η εγκατάσταση απέτυχε"
-#~ msgid "click here if you are sure."
-#~ msgstr "κάντε κλικ εδώ αν είστε βέβαιοι"
-
-#~ msgid "here if no."
-#~ msgstr "εδώ αν όχι."
-
-#~ msgid "Remove List"
-#~ msgstr "Λίστα Αφαίρεσης"
-
-#~ msgid "Account:"
-#~ msgstr "Λογαριασμός:"
-
-#~ msgid "Hostname:"
-#~ msgstr "Όνομα συστήματος:"
-
-#, fuzzy
-#~ msgid "Cancel setup"
-#~ msgstr "Άκυρο"
-
-#, fuzzy
-#~ msgid ""
-#~ "The following media have been found and will be used during install: %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do you have a supplementary installation media to configure?"
-#~ msgstr "Έχετε κάποιον προσαρμογέα %s;"
-
-#~ msgid "Unknown Model"
-#~ msgstr "Άγνωστο Μοντέλο"
-
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3000/3200/3300/4345 with scanner, DeskJet 450, "
-#~ "Sony IJP-V100), an HP PhotoSmart or an HP LaserJet 2200?"
-#~ msgstr ""
-#~ "Είναι ο εκτυπωτής σας μια πολυχρηστική συσκευή από την HP ή την Sony "
-#~ "(OfficeJet, PSC, LaserJet 1100/1200/1220/3000/3200/3300/4345 with "
-#~ "scanner, DeskJet 450, Sony IJP-V100), an HP PhotoSmart or an HP LaserJet "
-#~ "2200;"
-
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Εγκατάσταση πακέτου mtools..."
-
-#~ msgid "Scanning on your HP multi-function device"
-#~ msgstr "Σάρωση στη πολυχρηστική συσκευή HP που διαθέτετε"
-
-#~ msgid "Printing/Scanning/Photo Cards on \"%s\""
-#~ msgstr "Εκτύπωση/Σάρωση/Κάρτες Φωτογραφιών στο\"%s\""
-
-#~ msgid "Printing/Scanning on \"%s\""
-#~ msgstr "Εκτύπωση/Σάρωση στο \"%s\""
-
-#~ msgid "Printing/Photo Card Access on \"%s\""
-#~ msgstr "Εκτύπωση/Πρόσβαση Κάρτας Φωτογραφιών στο \"%s\""
-
-#, fuzzy
-#~ msgid ""
-#~ "Your multi-function device was configured automatically to be able to "
-#~ "scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to "
-#~ "specify the scanner when you have more than one) from the command line or "
-#~ "with the graphical interfaces \"xscanimage\" or \"xsane\". If you are "
-#~ "using the GIMP, you can also scan by choosing the appropriate point in "
-#~ "the \"File\"/\"Acquire\" menu. Call also \"man scanimage\" on the command "
-#~ "line to get more information.\n"
-#~ "\n"
-#~ "You do not need to run \"scannerdrake\" for setting up scanning on this "
-#~ "device, you only need to use \"scannerdrake\" if you want to share the "
-#~ "scanner on the network."
-#~ msgstr ""
-#~ "συσκευή\n"
-#~ "\n"
-#~ " Ολοκληρώθηκε συσκευή!"
-
-#~ msgid ""
-#~ "Your printer was configured automatically to give you access to the photo "
-#~ "card drives from your PC. Now you can access your photo cards using the "
-#~ "graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -"
-#~ "> \"MTools File Manager\") or the command line utilities \"mtools"
-#~ "\" (enter \"man mtools\" on the command line for more info). You find the "
-#~ "card's file system under the drive letter \"p:\", or subsequent drive "
-#~ "letters when you have more than one HP printer with photo card drives. In "
-#~ "\"MtoolsFM\" you can switch between drive letters with the field at the "
-#~ "upper-right corners of the file lists."
-#~ msgstr ""
-#~ "Ο εκτυπωτής ρυθμίστηκε αυτόματα για πρόσβαση στις κάρτες αποθήκευσης "
-#~ "φωτογραφιών του από τον υπολογιστή σας. Μπορείτε να έχετε πρόσβαση σε "
-#~ "αυτές χρησιμοποιώντας το γραφικό πρόγραμμα \"MtoolsFM\" (Μενού: "
-#~ "\"Εφαρμογές\" -> \"Εργαλεία Αρχείων\" -> \"MTools File Manager\") ή την "
-#~ "εντολή \"mtools\" (για περισσότερες πληροφορίες πληκτρολογήστε \"man "
-#~ "mtools\" στη γραμμή εντολών). Θα βρείτε τις φωτογραφίες σας στον δίσκο "
-#~ "\"p:\", ή σε δίσκους με τα επόμενα γράμματα αν έχετε περισσότερους από "
-#~ "έναν εκτυπωτές HP με κάρτες αποθήκευσης φωτογραφιών. Σε αυτήν την "
-#~ "περίπτωση, στο πρόγραμμα \"MtoolsFM\" μπορείτε να επιλέξετε μεταξύ των "
-#~ "διαθέσιμων γραμμάτων δίσκου με το πεδίο στην άνω δεξιά γωνία του "
-#~ "καταλόγου αρχείων."
-
-#, fuzzy
-#~ msgid "Note that currently all 'net' media also use the hard drive."
-#~ msgstr ""
-#~ "\n"
-#~ "\n"
-#~ " Σημείωση."
-
-#~ msgid ""
-#~ "Before installing any fonts, be sure that you have the right to use and "
-#~ "install them on your system.\n"
-#~ "\n"
-#~ "-You can install the fonts the normal way. In rare cases, bogus fonts may "
-#~ "hang up your X Server."
-#~ msgstr ""
-#~ "Πριν εγκαταστήσετε τις γραμματοσειρές, βεβαιωθείτε ότι έχετε το δικαίωμα "
-#~ "να κάνετε χρήση αυτών των γραμματοσειρών καθώς και να τις εγκαταστήσετε "
-#~ "στον υπολογιστή σας\n"
-#~ "\n"
-#~ "-Μπορείτε να εγκαταστήσετε τις γραμματοσειρές κανονικά. Σε σπάνιες "
-#~ "περιπτώσεις, εικονικές γραμματοσειρές μπορούν να παγώσουν τον εξυπηρετητή "
-#~ "Χ."
-
-#~ msgid ""
-#~ "\n"
-#~ "Please check all options that you need.\n"
-#~ msgstr ""
-#~ "\n"
-#~ "Παρακαλώ επιλέξτε όλες τις επιλογές που χρειάζεστε.\n"
-
-#~ msgid ""
-#~ "These options can backup and restore all files in your /etc directory.\n"
-#~ msgstr ""
-#~ "Αυτές οι επιλογές μπορούν να πάρουν αντίγραφα ασφαλείας και να "
-#~ "επαναφέρουν το /etc\n"
-
-#~ msgid ""
-#~ "With this option you will be able to restore any version\n"
-#~ " of your /etc directory."
-#~ msgstr ""
-#~ "Με αυτή την επιλογή θα μπορείτε να επαναφέρετε οποιαδήποτε\n"
-#~ "έκδοση του καταλόγου /etc."
-
-#~ msgid "http://www.mandrivalinux.com/en/errata.php3"
-#~ msgstr "http://www.mandrivalinux.com/en/errata.php3"
-
-#, fuzzy
-#~ msgid "Default Idmap "
-#~ msgstr "Προεπιλεγμένο"
-
-#~ msgid "Please wait, preparing installation..."
-#~ msgstr "Παρακαλώ περιμένετε, προετοιμασία εγκατάστασης..."
-
-#~ msgid "Installing package %s"
-#~ msgstr "Εγκατάσταση πακέτου %s"
-
-#~ msgid "Welcome to <b>Mandriva Linux</b>!"
-#~ msgstr "Καλώς Ορίσατε στο <b>Mandriva Linux</b>!"
-
-#, fuzzy
-#~ msgid "<b>Open Source</b>"
-#~ msgstr "<b>Διακομιστές</b>"
-
-#, fuzzy
-#~ msgid "Welcome to the <b>world of open source</b>!"
-#~ msgstr "Καλώς ορίσατε στον κόσμο του Ανοιχτού Κώδικα"
-
-#, fuzzy
-#~ msgid "<b>Mandriva Products</b>"
-#~ msgstr "Κέντρο Ελέγχου Mandriva Linux"
-
-#, fuzzy
-#~ msgid "<b>Choose your Favorite Desktop Environment</b>"
-#~ msgstr "Επιλέξτε το κλειδί κρυπτογράφησης του συστήματος αρχείων"
-
-#, fuzzy
-#~ msgid "<b>OpenOffice.org</b>"
-#~ msgstr "OpenOffice.org Math"
-
-#~ msgid "<b>Kontact</b>"
-#~ msgstr "<b>Kontact</b>"
-
-#~ msgid "<b>Surf the Internet</b>"
-#~ msgstr "<b>Περιήγηση στο Διαδίκτυο</b>"
-
-#, fuzzy
-#~ msgid "\t* <b>Transfer</b> files with KBear."
-#~ msgstr "Μεταφορά Αρχείων με FTP"
-
-#~ msgid "<b>Development Environments</b>"
-#~ msgstr "<b>Περιβάλλοντα ανάπτυξης</b>"
-
-#, fuzzy
-#~ msgid "<b>Development Editors</b>"
-#~ msgstr "Ανάπτυξη"
-
-#, fuzzy
-#~ msgid "<b>Development Languages</b>"
-#~ msgstr "Ανάπτυξη"
-
-#~ msgid "\t\t* <b>C++</b>"
-#~ msgstr "\t\t* <b>C++</b>"
-
-#~ msgid "\t\t* <b>Java™</b>"
-#~ msgstr "\t\t* <b>Java™</b>"
-
-#, fuzzy
-#~ msgid "\t* Scripting languages:"
-#~ msgstr "Διαχειριστής Εκτυπώσεων"
-
-#~ msgid "\t\t* <b>Perl</b>"
-#~ msgstr "\t\t* <b>Perl</b>"
-
-#~ msgid "\t\t* <b>Python</b>"
-#~ msgstr "\t\t* <b>Python</b>"
-
-#, fuzzy
-#~ msgid "<b>Development Tools</b>"
-#~ msgstr "Ανάπτυξη"
-
-#, fuzzy
-#~ msgid "<b>Groupware Server</b>"
-#~ msgstr "<b>Διακομιστές</b>"
-
-#, fuzzy
-#~ msgid "\t* Send and receive your <b>e-mails</b>."
-#~ msgstr "Στείλτε και λάβετε μηνύματα WinPopup"
-
-#~ msgid "<b>Servers</b>"
-#~ msgstr "<b>Διακομιστές</b>"
-
-#, fuzzy
-#~ msgid "\t* <b>Apache</b>: The most widely used web server."
-#~ msgstr "Εξυπηρετητής Apache World Wide Web"
-
-#~ msgid "<b>Mandriva Linux Control Center</b>"
-#~ msgstr "<b>Κέντρο Ελέγχου Mandriva Linux</b>"
-
-#, fuzzy
-#~ msgid "<b>Online Store</b>"
-#~ msgstr "Κέντρο Ελέγχου Mandriva Linux"
-
-#~ msgid "<b>Mandriva Club</b>"
-#~ msgstr "<b>Mandriva Club</b>"
-
-#~ msgid "<b>Mandriva Online</b>"
-#~ msgstr "<b>Mandriva Online</b>"
-
-#~ msgid "<b>Mandriva Expert</b>"
-#~ msgstr "<b>Mandriva Expert</b>"
-
-#~ msgid "Network:"
-#~ msgstr "Δίκτυο:"
-
-#~ msgid "IP:"
-#~ msgstr "IP:"
-
-#~ msgid "Mode:"
-#~ msgstr "Λειτουργία:"
-
-#~ msgid "Encryption:"
-#~ msgstr "Κρυπτογράφηση:"
-
-#~ msgid "Status"
-#~ msgstr "Κατάσταση"
-
-#~ msgid "Disconnect"
-#~ msgstr "Αποσύνδεση"
-
-#~ msgid ""
-#~ "x coordinate of text box\n"
-#~ "in number of characters"
-#~ msgstr ""
-#~ "συντεταγμένη x του πλαισίου κειμένου\n"
-#~ "σε αριθμό χαρακτήρων"
-
-#~ msgid ""
-#~ "y coordinate of text box\n"
-#~ "in number of characters"
-#~ msgstr ""
-#~ "συντεταγμένη y του πλαισίου κειμένου\n"
-#~ "σε αριθμό χαρακτήρων"
-
-#~ msgid "text width"
-#~ msgstr "πλάτος κειμένου"
-
-#~ msgid "ProgressBar color selection"
-#~ msgstr "Επιλογή χρώματος γραμμής προόδου"
-
-#~ msgid "Connect to the Internet"
-#~ msgstr "Σύνδεση στο Διαδίκτυο"
-
-#~ msgid ""
-#~ "The most common way to connect with adsl is pppoe.\n"
-#~ "Some connections use PPTP, a few use DHCP.\n"
-#~ "If you do not know, choose 'use PPPoE'"
-#~ msgstr ""
-#~ "Ο πιο κοινός τρόπος σύνδεσης adsl είναι pppoe.\n"
-#~ "Ορισμένες συνδέσεις χρησιμοποιούν PPTP, κάποιες λίγες DHCP.\n"
-#~ "Εάν δεν ξέρετε, επιλέξτε 'χρήση PPPoE'"
-
-#~ msgid "Do not print any test page"
-#~ msgstr "Χωρίς εκτύπωση δοκιμαστικής σελίδας"
-
-#~ msgid "Printer on SMB/Windows 95/98/NT server"
-#~ msgstr "Εκτυπωτής σε εξυπηρετητή SMB/Windows 95/98/NT"
-
-#, fuzzy
-#~ msgid "Found printer on %s..."
-#~ msgstr "Γίνεται αφαίρεση του εκτυπωτή \"%s\"..."
-
-#~ msgid "dhcpd Config..."
-#~ msgstr "Ρύθμιση dhcpd..."
-
-#~ msgid ""
-#~ "package 'ImageMagick' is required to be able to complete configuration.\n"
-#~ "Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
-#~ msgstr ""
-#~ "το πακέτο 'ImageMagick' είναι απαραίτητο για την ολοκλήρωση της "
-#~ "ρύθμισης.\n"
-#~ "Κάντε κλικ στο \"Εντάξει\" για να εγκαταστήσετε το ή \"Άκυρο\" για έξοδο"
-
-#, fuzzy
-#~ msgid "Unable to select wireless network: %s"
-#~ msgstr "Αδυναμία fork: %s"
-
-#, fuzzy
-#~ msgid "Interactive intrusion detection"
-#~ msgstr "Διαδραστικός σχεδιαστής μαθηματικών συναρτήσεων"
-
-#, fuzzy
-#~ msgid "Active Firewall: intrusion detected"
-#~ msgstr "Ανιχνεύθηκε ρύθμιση του Τοίχους Προστασίας!"
-
-#, fuzzy
-#~ msgid "Do you want to blacklist the attacker?"
-#~ msgstr "Θέλετε να τερματίσετε το παιχνίδι;"
-
-#~ msgid "Grub"
-#~ msgstr "Grub"
-
-#~ msgid "Local Network adress"
-#~ msgstr "Τοπική διεύθυνση δικτύου"
-
-#~ msgid "Configuring scripts, installing software, starting servers..."
-#~ msgstr "Ρύθμιση, εγκατάσταση λογισμικού, εκκίνηση εξυπηρετητών..."
-
-#~ msgid "drakfloppy"
-#~ msgstr "drakfloppy"
-
-#, fuzzy
-#~ msgid "Boot disk creation"
-#~ msgstr "δημιουργία δισκέτας εκκίνησης"
-
-#~ msgid "General"
-#~ msgstr "Γενικά"
-
-#, fuzzy
-#~ msgid "Kernel version"
-#~ msgstr "έκδοση πυρήνα"
-
-#~ msgid "Preferences"
-#~ msgstr "Προτιμήσεις"
-
-#, fuzzy
-#~ msgid "Advanced preferences"
-#~ msgstr "Προχωρημένες Επιλογές"
-
-#~ msgid "Size"
-#~ msgstr "Μέγεθος"
-
-#, fuzzy
-#~ msgid "Mkinitrd optional arguments"
-#~ msgstr "προαιρετικές επιλογές του mkinitrd"
-
-#~ msgid "force"
-#~ msgstr "μετά βίας"
-
-#~ msgid "omit raid modules"
-#~ msgstr "παράλειψη των αρθρωμάτων raid"
-
-#~ msgid "if needed"
-#~ msgstr "αν χρειάζεται"
-
-#~ msgid "omit scsi modules"
-#~ msgstr "παράλειψη των αρθρωμάτων scsi"
-
-#~ msgid "Add a module"
-#~ msgstr "Προσθήκη αρθρώματος"
-
-#~ msgid "Remove a module"
-#~ msgstr "Απομάκρυνση αρθρώματος"
-
-#~ msgid "Be sure a media is present for the device %s"
-#~ msgstr "Σιγουρευτείτε πως ένα μέσο είναι παρόν για τη συσκευή %s"
-
-#~ msgid ""
-#~ "There is no medium or it is write-protected for device %s.\n"
-#~ "Please insert one."
-#~ msgstr ""
-#~ "Δεν υπάρχει μέσο ή υπάρχει προστασία εγγραφής για τη συσκευή %s.\n"
-#~ "Παρακαλώ εισάγετε ένα."
-
-#~ msgid "Unable to fork: %s"
-#~ msgstr "Αδυναμία fork: %s"
-
-#, fuzzy
-#~ msgid "Floppy creation completed"
-#~ msgstr "Η σύνδεση έγινε."
-
-#, fuzzy
-#~ msgid ""
-#~ "Unable to properly close mkbootdisk:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
-#~ msgstr ""
-#~ "Αδυναμία σωστού τερματισμού του mkbootdisk: \n"
-#~ " %s \n"
-#~ " %s"
-
-#~ msgid "use PPPoE"
-#~ msgstr "χρήση PPPoE"
-
-#~ msgid "use PPTP"
-#~ msgstr "χρήση PPTP"
-
-#~ msgid "use DHCP"
-#~ msgstr "χρήση DHCP"
-
-#, fuzzy
-#~ msgid "Alcatel Speedtouch USB"
-#~ msgstr "Alcatel speedtouch usb"
-
-#, fuzzy
-#~ msgid " - detected"
-#~ msgstr "ανιχνεύθηκε"
-
-#~ msgid "Sagem (using PPPoA) USB"
-#~ msgstr "Sagem (με χρήση του PPPoA) USB"
-
-#~ msgid "Sagem (using DHCP) USB"
-#~ msgstr "Sagem (με χρήση του DHCP) USB"
-
-#~ msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-#~ msgstr "Icewm, Window Maker, Enlightenment, Fvwm, κλπ"
-
-#~ msgid ""
-#~ "Warning, another Internet connection has been detected, maybe using your "
-#~ "network"
-#~ msgstr ""
-#~ "Προειδοποίηση, εντοπίστηκε μια άλλη σύνδεση Διαδικτύου που ίσως "
-#~ "χρησιμοποιεί το δίκτυό σας"
-
-#~ msgid "PXE Server Configuration"
-#~ msgstr "Ρυθμίσεις Διακομιστή PXE"
-
-#~ msgid "Installation Server Configuration"
-#~ msgstr "Εγκατάσταση Ρυθμίσεων Διακομιστή"
-
-#~ msgid ""
-#~ "You are about to configure your computer to install a PXE server as a "
-#~ "DHCP server\n"
-#~ "and a TFTP server to build an installation server.\n"
-#~ "With that feature, other computers on your local network will be "
-#~ "installable using this computer as source.\n"
-#~ "\n"
-#~ "Make sure you have configured your Network/Internet access using "
-#~ "drakconnect before going any further.\n"
-#~ "\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN)."
-#~ msgstr ""
-#~ "Πρόκειται να ρυθμίστε τον υπολογιστή σας για την εγκατάσταση το "
-#~ "διακομιστή PXE ως εξυπηρετητή DHCP \n"
-#~ "και διακομιστή TFTP ως διακομιστή εγκαταστάσεων.\n"
-#~ "Με αυτή την επιλογή, άλλοι υπολογιστές στο τοπικό σας δίκτυο θα μπορούν "
-#~ "να εγκατασταθούν με τη χρήση αυτού του υπολογιστή.\n"
-#~ "\n"
-#~ "Βεβαιωθείτε ότι έχετε ρυθμίσει την πρόσβαση στο Δίκτυο/Διαδίκτυο με τη "
-#~ "χρήση του drakconnect πριν προχωρήσετε.\n"
-#~ "\n"
-#~ "Σημ. Θα πρέπει να έχετε μια κάρτα δικτύου για να ρυθμίσετε το Τοπικό σας "
-#~ "Δίκτυο (LAN)."
-
-#~ msgid "No network adapter on your system!"
-#~ msgstr "Δεν βρέθηκε προσαρμογέας δικτύου στο σύστημά σας!"
-
-#~ msgid "Choose the network interface"
-#~ msgstr "Επιλέξτε συσκευή δικτύου"
-
-#~ msgid ""
-#~ "Please choose which network interface will be used for the dhcp server."
-#~ msgstr ""
-#~ "Παρακαλώ επιλέξτε ποια διεπαφή δικτύου θα χρησιμοποιήσετε για τον "
-#~ "εξυπηρετητή DHCP."
-
-#~ msgid "Interface %s (on network %s)"
-#~ msgstr "Διεπαφή %s (στο δίκτυο %s)"
-
-#~ msgid ""
-#~ "The DHCP server will allow other computer to boot using PXE in the given "
-#~ "range of address.\n"
-#~ "\n"
-#~ "The network address is %s using a netmask of %s.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Ο εξυπηρετητής DHCP θα επιτρέπει άλλους υπολογιστές να ξεκινούν με τη "
-#~ "χρήση του PXE με μια δοθείσα διεύθυνση\n"
-#~ "\n"
-#~ "Η διεύθυνση δικτύου είναι %s με χρήση μάσκα δικτύου%s.\n"
-#~ "\n"
-
-#~ msgid "The DHCP start ip"
-#~ msgstr "Η IP εκκίνησης του DHCP"
-
-#~ msgid "The DHCP end ip"
-#~ msgstr "Η τελευταία ip του DHCP"
-
-#~ msgid ""
-#~ "Please indicate where the installation image will be available.\n"
-#~ "\n"
-#~ "If you do not have an existing directory, please copy the CD or DVD "
-#~ "contents.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Παρακαλώ δηλώστε τη θέση που θα είναι προσβάσιμη η εικόνας εγκατάστασης.\n"
-#~ "\n"
-#~ "Αν δεν έχετε έναν υπάρχον κατάλογο, παρακαλώ αντιγράψετε τα περιεχόμενα "
-#~ "του CD or DVD.\n"
-#~ "\n"
-
-#~ msgid "Installation image directory"
-#~ msgstr "Εγκατάσταση καταλόγου εικόνας"
-
-#~ msgid "No image found"
-#~ msgstr "Δεν βρέθηκε εικόνα"
-
-#~ msgid ""
-#~ "No CD or DVD image found, please copy the installation program and rpm "
-#~ "files."
-#~ msgstr ""
-#~ "Δεν βρέθηκαν εικόνες CD ή DVD, παρακαλώ αντιγράψτε το πρόγραμμα "
-#~ "εγκατάστασης και τα αρχεία rpm."
-
-#~ msgid ""
-#~ "Please indicate where the auto_install.cfg file is located.\n"
-#~ "\n"
-#~ "Leave it blank if you do not want to set up automatic installation mode.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Παρακαλώ δηλώστε τη θέση του αρχείου auto_install.cfg file is located.\n"
-#~ "\n"
-#~ "Αφήστε το κενό αν δεν θέλετε να κάνετε χρήση της αυτόματης εγκατάστασης.\n"
-#~ "\n"
-
-#~ msgid "Location of auto_install.cfg file"
-#~ msgstr "Θέση του αρχείου auto_install.cfg"
-
-#~ msgid "Internet Connection Sharing currently disabled"
-#~ msgstr "Κοινή Σύνδεση Διαδικτύου απενεργοποιημένη"
-
-#~ msgid "Enabling servers..."
-#~ msgstr "Ενεργοποίηση εξυπηρετητών..."
-
-#~ msgid "Internet Connection Sharing currently enabled"
-#~ msgstr "Κοινή Σύνδεση Διαδικτύου ενεργοποιημένη"
-
-#~ msgid "Interface %s (using module %s)"
-#~ msgstr "Διεπαφή %s (χρήση αρθρώματος %s)"
-
-#~ msgid "Interface %s"
-#~ msgstr "Διεπαφή %s"
-
-#~ msgid "Network interface already configured"
-#~ msgstr "Η διεπαφή Δικτύου έχει ήδη ρυθμιστεί"
-
-#~ msgid ""
-#~ "Warning, the network adapter (%s) is already configured.\n"
-#~ "\n"
-#~ "Do you want an automatic re-configuration?\n"
-#~ "\n"
-#~ "You can do it manually but you need to know what you're doing."
-#~ msgstr ""
-#~ "Προειδοποίηση, ο προσαρμογέας δικτύου (%s) έχει ήδη ρύθμιση\n"
-#~ "\n"
-#~ "Θέλετε να ξαναρυθμιστεί αυτόματα ;\n"
-#~ "\n"
-#~ "Μπορείτε να το κάνετε και μόνοι σας αλλά πρέπει να ξέρετε τι κάνετε."
-
-#~ msgid "No (experts only)"
-#~ msgstr "Όχι (μόνο για ειδικούς)"
-
-#~ msgid "Show current interface configuration"
-#~ msgstr "Προβολή της τρέχουσας ρύθμισης διεπαφή"
-
-#~ msgid "Current interface configuration"
-#~ msgstr "Ρύθμιση τρέχουσας διεπαφής"
-
-#~ msgid ""
-#~ "Current configuration of `%s':\n"
-#~ "\n"
-#~ "Network: %s\n"
-#~ "IP address: %s\n"
-#~ "IP attribution: %s\n"
-#~ "Driver: %s"
-#~ msgstr ""
-#~ "Τρέχουσες ρυθμίσεις του %s':\n"
-#~ "\n"
-#~ "Δίκτυο: %s\n"
-#~ "Διεύθυνση IP : %s\n"
-#~ "IP attribution: %s\n"
-#~ "Οδηγός: %s"
-
-#, fuzzy
-#~ msgid ""
-#~ "I can keep your current configuration and assume you already set up a "
-#~ "DHCP server; in that case please verify I correctly read the Network that "
-#~ "you use for your local network; I will not reconfigure it and I will not "
-#~ "touch your DHCP server configuration.\n"
-#~ "\n"
-#~ "The default DNS entry is the Caching Nameserver configured on the "
-#~ "firewall. You can replace that with your ISP DNS IP, for example.\n"
-#~ "\t\t \n"
-#~ "Otherwise, I can reconfigure your interface and (re)configure a DHCP "
-#~ "server for you.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Μπορώ να κρατήσω τις τρέχουσες ρυθμίσεις και να υποθέσω ότι ήδη έχει "
-#~ "ρυθμιστεί ο εξυπηρετητής DHCP, παρακαλώ ελέγξτε εάν έχω διαβάσει σωστά το "
-#~ "Δίκτυο που χρησιμοποιείτε για το τοπικό σας δίκτυο, δεν θα πειράξωούτε θα "
-#~ "αλλάξω τις ρυθμίσεις του εξυπηρετητή DHCP.\n"
-#~ "\n"
-
-#~ msgid "(This) DHCP Server IP"
-#~ msgstr "(Αυτή τη) IP του εξυπηρετητή DHCP"
-
-#~ msgid "Re-configure interface and DHCP server"
-#~ msgstr "Επαναρύθμιση διεπαφής και του εξυπηρετητή DHCP"
-
-#~ msgid "The Local Network did not finish with `.0', bailing out."
-#~ msgstr "Το Τοπικό Δίκτυο δεν τελειώνει με `.0', τερματισμός."
-
-#, fuzzy
-#~ msgid ""
-#~ "WARNING: this device has been previously configured to connect to the "
-#~ "Internet.\n"
-#~ "Modifying the fields below will override this configuration.\n"
-#~ "Do you really want to reconfigure this device?"
-#~ msgstr ""
-#~ "ΠΡΟΣΟΧΗ: Αυτή η συσκευή είναι ήδη ρυθμισμένη για να συνδέεται με το "
-#~ "Διαδίκτυο.\n"
-#~ "Απλά πατήστε OK για να κρατήσετε τις υπάρχουσες ρυθμίσεις.\n"
-#~ "Αλλάζοντας τα παρακάτω πεδία θα αλλάξετε την υπάρχουσα ρύθμιση."
-
-#, fuzzy
-#~ msgid "Dynamic IP Address Pool:"
-#~ msgstr "Διεύθυνση:"
-
-#, fuzzy
-#~ msgid "hd"
-#~ msgstr "Τσαντ"
-
-#, fuzzy
-#~ msgid "tape"
-#~ msgstr "Ταινία"
-
-#~ msgid "WebDAV remote site already in sync!"
-#~ msgstr "Το απομακρυσμένο WebDAV είναι ήδη σε συγχρονισμό!"
-
-#~ msgid "WebDAV transfer failed!"
-#~ msgstr "Η μεταφορά WebDAV απέτυχε!"
-
-#, fuzzy
-#~ msgid ""
-#~ "Maximum size\n"
-#~ " allowed for Drakbackup (MB)"
-#~ msgstr ""
-#~ "Παρακαλώ επιλέξτε το μέγιστο μέγεθος\n"
-#~ "που επιτρέπεται στο Drakbackup"
-
-#~ msgid "\t-Network by webdav.\n"
-#~ msgstr "\t-Δίκτυο μέσω webdav.\n"
-
-#~ msgid "first step creation"
-#~ msgstr "πρώτο βήμα δημιουργίας"
-
-#~ msgid "choose image file"
-#~ msgstr "Επιλέξτε μια εικόνα"
-
-#~ msgid "Configure bootsplash picture"
-#~ msgstr "Ρύθμιση εικόνας bootsplash"
-
-#~ msgid "the color of the progress bar"
-#~ msgstr "Το χρώμα της γραμμής προόδου"
-
-#~ msgid "Preview"
-#~ msgstr "Προεπισκόπηση"
-
-#~ msgid "Choose color"
-#~ msgstr "Επιλέξτε χρώμα"
-
-#~ msgid "Notice"
-#~ msgstr "Σημείωση"
-
-#~ msgid "This theme does not yet have a bootsplash in %s!"
-#~ msgstr "Αυτό το θέμα δεν έχει ακόμα κάποιο bootsplash στο %s !"
-
-#~ msgid "You must choose an image file first!"
-#~ msgstr "Πρέπει να επιλέξτε πρώτα μια εικόνα!"
-
-#~ msgid "Generating preview..."
-#~ msgstr "Δημιουργία προεπισκόπησης ..."
-
-#~ msgid "%s BootSplash (%s) preview"
-#~ msgstr "%s Προεπισκόπηση (%s)Bootsplash"
-
-#~ msgid "No floppy drive available"
-#~ msgstr "Δεν υπάρχει διαθέσιμος οδηγός δισκέτας"
-
-#~ msgid "Please insert the Update Modules floppy in drive %s"
-#~ msgstr "Παρακαλώ εισάγετε τη δισκέτα Αναβάθμισης Αρθρωμάτων στον οδηγό %s"
-
-#, fuzzy
-#~ msgid ""
-#~ "_: keyboard\n"
-#~ "Tifinagh (+latin/arabic)"
-#~ msgstr "Γιουγκοσλαβικό (λατινικό)"
-
-#~ msgid "No network card"
-#~ msgstr "δεν βρέθηκε κάρτα δικτύου"
-
-#~ msgid "No browser available! Please install one"
-#~ msgstr "Δεν βρέθηκε περιηγητής! Παρακαλώ εγκαταστήστε τον"
-
-#~ msgid ""
-#~ "No browser is installed on your system, Please install one if you want to "
-#~ "browse the help system"
-#~ msgstr ""
-#~ "Δεν βρέθηκε περιηγητής στο σύστημά σας, Παρακαλώ εγκαταστήστε έναν αν "
-#~ "θέλετε να περιηγηθείτε στο σύστημα βοήθειας"
-
-#~ msgid ""
-#~ "Insert a floppy in drive\n"
-#~ "All data on this floppy will be lost"
-#~ msgstr ""
-#~ "Εισάγετε μια δισκέτα στον οδηγό δισκέτας\n"
-#~ "Όλα τα δεδομένα σε αυτή τη δισκέτα θα χαθούν"
-
-#~ msgid "Insert a FAT formatted floppy in drive %s"
-#~ msgstr "Εισάγετε μια μορφοποιημένη δισκέτα FAT στον οδηγό %s"
-
-#~ msgid "This floppy is not FAT formatted"
-#~ msgstr "Αυτή η δισκέτα δεν έχει μορφοποίηση FAT"
-
-#~ msgid ""
-#~ "To use this saved packages selection, boot installation with ``linux "
-#~ "defcfg=floppy''"
-#~ msgstr ""
-#~ "Για να χρησιμοποιήσετε αυτήν την αποθηκευμένη επιλογή πακέτων, ξεκινήστε "
-#~ "την εγκατάσταση με ``linux defcfg=floppy''"
-
-#~ msgid "Load/Save on floppy"
-#~ msgstr "Φόρτωση/Αποθήκευση σε δισκέτα"
-
-#~ msgid ""
-#~ "Please choose load or save package selection on floppy.\n"
-#~ "The format is the same as auto_install generated floppies."
-#~ msgstr ""
-#~ "Παρακαλώ επιλέξτε τη φόρτωση ή αποθήκευση των επιλογής πακέτων στη "
-#~ "δισκέτα.\n"
-#~ "Η μορφοποίηση είναι η ίδια με τις δισκέτες αυτόματης εγκατάστασης."
-
-#~ msgid "Load from floppy"
-#~ msgstr "Φόρτωση από δισκέτα"
-
-#~ msgid "Save on floppy"
-#~ msgstr "Αποθήκευση σε δισκέτα"
-
-#~ msgid "Package selection"
-#~ msgstr "Επιλογή πακέτων"
-
-#~ msgid "Loading from floppy"
-#~ msgstr "Φορτώνεται από δισκέτα"
-
-#~ msgid "Insert a floppy containing package selection"
-#~ msgstr "Εισάγετε δισκέτα που περιέχει την επιλογή πακέτων"
-
-#, fuzzy
-#~ msgid "Active Firewall : intrusion detected"
-#~ msgstr "Ανιχνεύθηκε ρύθμιση του Τοίχους Προστασίας!"
-
-#, fuzzy
-#~ msgid "Do you want to blacklist the attacker ?"
-#~ msgstr "Θέλετε να τερματίσετε το παιχνίδι;"
-
-#~ msgid "Application:"
-#~ msgstr "Εφαρμογή:"
-
-#~ msgid "Release: "
-#~ msgstr "Έκδοση:"
-
-#, fuzzy
-#~ msgid "Summary: "
-#~ msgstr "Περίληψη"
-
-#, fuzzy
-#~ msgid "Submit kernel version"
-#~ msgstr "έκδοση πυρήνα"
-
-#, fuzzy
-#~ msgid "connecting to %s..."
-#~ msgstr "σύνδεση στον οδηγό Bugzilla ..."
-
-#, fuzzy
-#~ msgid "Please enter a package name."
-#~ msgstr "Παρακαλώ εισάγετε όνομα χρήστη"
-
-#, fuzzy
-#~ msgid "Please enter summary text."
-#~ msgstr "Παρακαλώ εισάγετε το όνομα χρήστη"
-
-#, fuzzy
-#~ msgid "Loading printer configuration... Please wait"
-#~ msgstr "Αλλαγή ρυθμίσεων εκτυπωτή"
-
-#, fuzzy
-#~ msgid "The "
-#~ msgstr "Θέματα"
-
-#, fuzzy
-#~ msgid "%s (was %s)"
-#~ msgstr "%s (Θύρα %s)"
-
-#~ msgid "Root password"
-#~ msgstr "Κωδικός Root"
-
-#, fuzzy
-#~ msgid "Do you want to recover your system?"
-#~ msgstr "Θέλετε να χρησιμοποιήσετε το aboot;"
-
-#~ msgid "Move"
-#~ msgstr "Μετακίνηση"
-
-#~ msgid "Which disk do you want to move it to?"
-#~ msgstr "Σε ποιόν δίσκο θέλετε να μετακινηθείτε;"
-
-#~ msgid "Sector"
-#~ msgstr "Τομέας"
-
-#~ msgid "Which sector do you want to move it to?"
-#~ msgstr "Σε ποιόν τομέα θέλετε να μετακινηθείτε;"
-
-#~ msgid "Moving"
-#~ msgstr "Μετακίνηση σε εξέλιξη"
-
-#~ msgid "Moving partition..."
-#~ msgstr "Μετακίνηση κατάτμησης σε εξέλιξη..."
-
-#~ msgid "Error opening %s for writing: %s"
-#~ msgstr "Σφάλμα κατά το άνοιγμα του %s για εγγραφή: %s"
-
-#~ msgid "OK"
-#~ msgstr "Εντάξει"
-
-#~ msgid ""
-#~ "The following options can be set to customize your\n"
-#~ "system security. If you need an explanation, look at the help tooltip.\n"
-#~ msgstr ""
-#~ "Οι παρακάτω επιλογές ασφαλείας μπορούν να επιλεγούν\n"
-#~ "για την προσαρμογή της ασφάλειας. Για επεξηγήσεις δείτε την βοήθεια.\n"
-
-#~ msgid "The %s is not known by this version of Scannerdrake."
-#~ msgstr "Το %s δεν είναι γνωστό από αυτή την έκδοση του Scannerdrake."
-
-#~ msgid "Czech (QWERTZ)"
-#~ msgstr "Τσέχικο (QWERTZ)"
-
-#~ msgid "German"
-#~ msgstr "Γερμανικό"
-
-#~ msgid "Dvorak"
-#~ msgstr "Dvorak"
-
-#~ msgid "Spanish"
-#~ msgstr "Ισπανικό"
-
-#~ msgid "Finnish"
-#~ msgstr "Φινλανδικό"
-
-#~ msgid "French"
-#~ msgstr "Γαλλικό"
-
-#~ msgid "Norwegian"
-#~ msgstr "Νορβηγικό"
-
-#~ msgid "Polish"
-#~ msgstr "Πολωνικό"
-
-#~ msgid "Russian"
-#~ msgstr "Ρωσικό"
-
-#~ msgid "Swedish"
-#~ msgstr "Σουηδικό"
-
-#~ msgid "Albanian"
-#~ msgstr "Αλβανικό"
-
-#~ msgid "Armenian (old)"
-#~ msgstr "Αρμενικό (παλιό)"
-
-#~ msgid "Armenian (typewriter)"
-#~ msgstr "Αρμενικό (γραφομηχανή)"
-
-#~ msgid "Armenian (phonetic)"
-#~ msgstr "Αρμενικό (φωνητικό)"
-
-#~ msgid "Arabic"
-#~ msgstr "Αραβικό"
-
-#~ msgid "Azerbaidjani (latin)"
-#~ msgstr "Αζερμπαϊτζάν (Λατινικό)"
-
-#~ msgid "Belgian"
-#~ msgstr "Βελγικό"
-
-#~ msgid "Bengali"
-#~ msgstr "Βεγγαλικό"
-
-#~ msgid "Bulgarian (phonetic)"
-#~ msgstr "Βουλγαρικό (φωνητικό)"
-
-#~ msgid "Bulgarian (BDS)"
-#~ msgstr "Βουλγαρικό (BDS)"
-
-#~ msgid "Brazilian (ABNT-2)"
-#~ msgstr "Βραζιλιάνικο (ABNT-2)"
-
-#~ msgid "Bosnian"
-#~ msgstr "Βοσνίας"
-
-#~ msgid "Belarusian"
-#~ msgstr "Λευκορωσίας"
-
-#~ msgid "Swiss (German layout)"
-#~ msgstr "Ελβετικό (Γερμανική διάταξη)"
-
-#~ msgid "Swiss (French layout)"
-#~ msgstr "Ελβετικό (Γαλλική διάταξη)"
-
-#~ msgid "Czech (QWERTY)"
-#~ msgstr "Τσέχικο (QWERTY)"
-
-#~ msgid "German (no dead keys)"
-#~ msgstr "Γερμανικό (χωρίς νεκρά πλήκτρα)"
-
-#~ msgid "Devanagari"
-#~ msgstr "Δεβαναγαρικό"
-
-#~ msgid "Danish"
-#~ msgstr "Δανικό"
-
-#~ msgid "Dvorak (US)"
-#~ msgstr "Dvorak (ΗΠΑ)"
-
-#~ msgid "Dvorak (Norwegian)"
-#~ msgstr "Dvorak (Νορβηγικό)"
-
-#~ msgid "Dvorak (Swedish)"
-#~ msgstr "Dvorak (Σουηδικό)"
-
-#~ msgid "Estonian"
-#~ msgstr "Εσθονικό"
-
-#~ msgid "Georgian (\"Russian\" layout)"
-#~ msgstr "Γεωργία (\"Ρώσικη\" διάταξη)"
-
-#~ msgid "Georgian (\"Latin\" layout)"
-#~ msgstr "Γεωργία (\"Λατινική\" διάταξη)"
-
-#~ msgid "Greek"
-#~ msgstr "Ελληνικό"
-
-#~ msgid "Gujarati"
-#~ msgstr "Γκουτζαρατικό"
-
-#~ msgid "Gurmukhi"
-#~ msgstr "Γκουρμούκι"
-
-#~ msgid "Hungarian"
-#~ msgstr "Ουγγρικό"
-
-#~ msgid "Croatian"
-#~ msgstr "Κροατικό"
-
-#~ msgid "Israeli"
-#~ msgstr "Ισραήλ"
-
-#~ msgid "Israeli (Phonetic)"
-#~ msgstr "Ισραήλ (φωνητικό)"
-
-#~ msgid "Iranian"
-#~ msgstr "Ιρανικό"
-
-#~ msgid "Icelandic"
-#~ msgstr "Ισλανδικό"
-
-#~ msgid "Italian"
-#~ msgstr "Ιταλικό"
-
-#~ msgid "Japanese 106 keys"
-#~ msgstr "Ιαπωνικό 106 πλήκτρων"
-
-#~ msgid "Korean keyboard"
-#~ msgstr "Κορεάτικο Πληκτρολόγιο"
-
-#~ msgid "Latin American"
-#~ msgstr "Λατινικής Αμερικής"
-
-#~ msgid "Lithuanian AZERTY (old)"
-#~ msgstr "Λιθουανικό AZERTY (παλιό)"
-
-#~ msgid "Lithuanian AZERTY (new)"
-#~ msgstr "Λιθουανικό AZERTY (νέο)"
-
-#~ msgid "Lithuanian \"number row\" QWERTY"
-#~ msgstr "Λιθουανικό \"number row\" QWERTY"
-
-#~ msgid "Lithuanian \"phonetic\" QWERTY"
-#~ msgstr "Λιθουανικό \"φωνητικό\" QWERTY"
-
-#~ msgid "Latvian"
-#~ msgstr "Λετονικό"
-
-#~ msgid "Malayalam"
-#~ msgstr "Μαλαγιαλαμικό"
-
-#~ msgid "Macedonian"
-#~ msgstr "Μακεδονικό Π.Γ Δ."
-
-#~ msgid "Mongolian (cyrillic)"
-#~ msgstr "Μογγολικό (Κυριλλική)"
-
-#~ msgid "Dutch"
-#~ msgstr "Ολλανδικό"
-
-#~ msgid "Polish (qwerty layout)"
-#~ msgstr "Πολωνικό (διάταξη qwerty)"
-
-#~ msgid "Polish (qwertz layout)"
-#~ msgstr "Πολωνικό (διάταξη qwertz)"
-
-#~ msgid "Portuguese"
-#~ msgstr "Πορτογαλικό"
-
-#~ msgid "Canadian (Quebec)"
-#~ msgstr "Καναδικό (Κεμπέκ)"
-
-#~ msgid "Romanian (qwertz)"
-#~ msgstr "Ρουμανικό (qwertz)"
-
-#~ msgid "Romanian (qwerty)"
-#~ msgstr "Ρουμανικό (qwerty)"
-
-#~ msgid "Russian (Phonetic)"
-#~ msgstr "Ρωσικό (φωνητικό)"
-
-#~ msgid "Slovenian"
-#~ msgstr "Σλοβενίας"
-
-#~ msgid "Slovakian (QWERTZ)"
-#~ msgstr "Σλοβακίας (QWERTZ)"
-
-#~ msgid "Slovakian (QWERTY)"
-#~ msgstr "Σλοβακίας (QWERTY)"
-
-#~ msgid "Serbian (cyrillic)"
-#~ msgstr "Σέρβικο (κυριλλικό)"
-
-#~ msgid "Tamil (ISCII-layout)"
-#~ msgstr "Ταμιλικό (διάταξη ISCII)"
-
-#~ msgid "Tamil (Typewriter-layout)"
-#~ msgstr "Ταμιλικό (διάταξη γραφομηχανή)"
-
-#~ msgid "Thai keyboard"
-#~ msgstr "Ταϊλανδέζικο"
-
-#~ msgid "Turkish (traditional \"F\" model)"
-#~ msgstr "Τουρκικό (παραδοσιακό \"F\" μοντέλο)"
-
-#~ msgid "Turkish (modern \"Q\" model)"
-#~ msgstr "Τουρκικό (μοντέρνο \"Q\" μοντέλο)"
-
-#~ msgid "Ukrainian"
-#~ msgstr "Ουκρανικό"
-
-#~ msgid "Vietnamese \"numeric row\" QWERTY"
-#~ msgstr "Βιετνάμ \"numeric row\" QWERTY"
-
-#~ msgid "Yugoslavian (latin)"
-#~ msgstr "Γιουγκοσλαβικό (λατινικό)"
-
-#~ msgid "Enable multiple profiles"
-#~ msgstr "Ενεργοποίηση πολλαπλών προφίλ"
-
-#~ msgid ""
-#~ "You now have the opportunity to download updated packages. These "
-#~ "packages\n"
-#~ "have been updated after the distribution was released. They may\n"
-#~ "contain security or bug fixes.\n"
-#~ "\n"
-#~ "To download these packages, you will need to have a working Internet \n"
-#~ "connection.\n"
-#~ "\n"
-#~ "Do you want to install the updates ?"
-#~ msgstr ""
-#~ "Τώρα έχετε τη δυνατότητα να εγκαταστήσετε πακέτα αναβάθμισης. Αυτά τα\n"
-#~ "πακέτα έχουν αναβαθμιστεί μετά την έκδοση της διανομής. Μπορεί να "
-#~ "περιέχουν\n"
-#~ "διορθώσεις σφαλμάτων ή αναβαθμίσεις ασφάλειας.\n"
-#~ "\n"
-#~ "Για να κάνετε λήψη αυτών των πακέτων πρέπει να έχετε μια σύνδεση στο "
-#~ "Διαδίκτυο\n"
-#~ "που να λειτουργεί.\n"
-#~ "\n"
-#~ "Θέλετε να εγκαταστήσετε τις αναβαθμίσεις ;"
-
-#~ msgid "Installing bootloader"
-#~ msgstr "Πρόγραμμα εκκίνησης"
-
-#~ msgid ""
-#~ "You may now provide options to module %s.\n"
-#~ "Options are in format ``name=value name2=value2...''.\n"
-#~ "For instance, ``io=0x300 irq=7''"
-#~ msgstr ""
-#~ "Μπορείτε τώρα να δώσετε τις παραμέτρους για το άρθρωμα %s.\n"
-#~ "Οι παράμετροι έχουν την μορφή ``όνομα=τιμή όνομα2=τιμή2 ...''.\n"
-#~ "Για παράδειγμα, ``io=0x300 irq=7''"
-
-#~ msgid "Configuring printer..."
-#~ msgstr "Ρυθμίζεται ο εκτυπωτής ..."
-
-#~ msgid "Configuring applications..."
-#~ msgstr "Ρύθμιση εφαρμογών..."
-
-#~ msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-#~ msgstr "Προσθήκη αυτού του εκτυπωτή στο Star Office/OpenOffice.org/GIMP"
-
-#~ msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-#~ msgstr "Αφαίρεση αυτού του εκτυπωτή από το Star Office/OpenOffice.org/GIMP"
-
-#~ msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-#~ msgstr "Γίνεται προσθήκη του εκτυπωτή στο Star Office/OpenOffice.org/GIMP"
-
-#~ msgid ""
-#~ "The printer \"%s\" was successfully added to Star Office/OpenOffice.org/"
-#~ "GIMP."
-#~ msgstr ""
-#~ "Ο εκτυπωτής \"%s\" προστέθηκε με επιτυχία στο Star Office/OpenOffice.org/"
-#~ "GIMP"
-
-#~ msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-#~ msgstr ""
-#~ "Απέτυχε η προσθήκη του εκτυπωτή \"%s\" στο Star Office/OpenOffice.org/GIMP"
-
-#~ msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-#~ msgstr ""
-#~ "Γίνεται αφαίρεση του εκτυπωτή από το Star Office/OpenOffice.org/GIMP"
-
-#~ msgid ""
-#~ "The printer \"%s\" was successfully removed from Star Office/OpenOffice."
-#~ "org/GIMP."
-#~ msgstr ""
-#~ "Ο εκτυπωτής \"%s\" αφαιρέθηκε με επιτυχία από το Star Office/OpenOffice."
-#~ "org/GIMP"
-
-#~ msgid ""
-#~ "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
-#~ msgstr ""
-#~ "Απέτυχε η αφαίρεση του εκτυπωτή \"%s\" από το Star Office/OpenOffice.org/"
-#~ "GIMP"
-
-#~ msgid "Installation of %s failed. The following error occurred:"
-#~ msgstr "Η εγκατάσταση του %s απέτυχε. Προκλήθηκε το ακόλουθο σφάλμα:"
-
-#~ msgid "Set of tools to read and send mail and news and to browse the Web"
-#~ msgstr ""
-#~ "Σετ εργαλείων για την αποστολή και λήψη αλληλογραφίας, ειδήσεων και "
-#~ "περιήγηση στο Διαδίκτυο"
-
-#~ msgid "Use auto detection"
-#~ msgstr "Χρήση αυτόματης ανίχνευσης"
-
-#~ msgid "/dev/hda"
-#~ msgstr "/dev/hda"
-
-#~ msgid "/dev/hdb"
-#~ msgstr "/dev/hdb"
-
-#~ msgid "/dev/fd0"
-#~ msgstr "/dev/fd0"
-
-#~ msgid ""
-#~ "No ethernet network adapter has been detected on your system.\n"
-#~ "I cannot set up this connection type."
-#~ msgstr ""
-#~ "Δεν βρέθηκε προσαρμογέας δικτύου Ethernet στο σύστημά σας.\n"
-#~ "Δεν μπορώ να ρυθμίσω αυτού του τύπου τη σύνδεση."
-
-#~ msgid ""
-#~ "Please choose which network adapter you want to use to connect to "
-#~ "Internet."
-#~ msgstr ""
-#~ "Παρακαλώ επιλέξτε ποια συσκευή δικτύου θέλετε να χρησιμοποιήσετε για την "
-#~ "σύνδεση στο Διαδίκτυο"
-
-#~ msgid "chunk size"
-#~ msgstr "μέγεθος chunk"
-
-#~ msgid "mkraid failed (maybe raidtools are missing?)"
-#~ msgstr "αποτυχία mkraid (μήπως απουσιάζουν τα raidtools;)"
-
-#~ msgid "mkraid failed"
-#~ msgstr "αποτυχία mkraid"
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Η σύνδεση απέτυχε.\n"
-#~ "Επαληθεύστε τις ρυθμίσεις σας στο Κέντρο Ελέγχου Mandrake."
-
-#~ msgid "The package %s is needed. Install it?"
-#~ msgstr "Το πακέτο %s είναι απαραίτητο. Να εγκατασταθεί;"
-
-#~ msgid "SILO Installation"
-#~ msgstr "Εγκατάσταση SILO"
-
-#~ msgid "First sector of boot partition"
-#~ msgstr "Πρώτος τομέας της κατάτμησης εκκίνησης"
-
-#~ msgid "Bootloader installation"
-#~ msgstr "Πρόγραμμα εκκίνησης"
-
-#~ msgid "SILO"
-#~ msgstr "SILO"
-
-#~ msgid "Alcatel speedtouch usb"
-#~ msgstr "Alcatel speedtouch usb"
-
-#~ msgid "Sagem (using pppoa) usb"
-#~ msgstr "Sagem (με χρήση του pppoa) usb"
-
-#~ msgid "Harddrake2 version %s"
-#~ msgstr "Έκδοση Harddrake2 %s"
-
-#~ msgid "transmitted"
-#~ msgstr "απεσταλμένα"
-
-#~ msgid "received"
-#~ msgstr "ληφθέντα"
-
-#~ msgid ""
-#~ "You can export using NFS or SMB. Please select which you'd like to use."
-#~ msgstr ""
-#~ "Μπορείτε να γίνει εξαγωγή με την χρήση NFS ή SMB. Παρακαλώ επιλέξτε ποίο "
-#~ "θέλετε."
-
-#~ msgid ""
-#~ "You can export using NFS or Samba. Please select which you'd like to use."
-#~ msgstr ""
-#~ "Μπορείτε να γίνει εξαγωγή με την χρήση NFS ή Samba. Παρακαλώ επιλέξτε "
-#~ "ποίο θέλετε."
-
-#~ msgid ""
-#~ "Your card can have 3D hardware acceleration support but only with Xorg %"
-#~ "s.\n"
-#~ "Your card is supported by Xorg %s which may have a better support in 2D."
-#~ msgstr ""
-#~ "Η κάρτα γραφικών σας υποστηρίζει επιτάχυνση τρισδιάστατων γραφικών μόνο "
-#~ "με τα Xorg %s.\n"
-#~ "Η κάρτα σας υποστηρίζεται από τα Xorg %s τα οποία μπορεί να δίνουν "
-#~ "καλύτερη υποστήριξη για διδιάστατα γραφικά."
-
-#~ msgid ""
-#~ "Your card can have 3D hardware acceleration support but only with Xorg %"
-#~ "s,\n"
-#~ "NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
-#~ "Your card is supported by Xorg %s which may have a better support in 2D."
-#~ msgstr ""
-#~ "Η κάρτα γραφικών σας υποστηρίζει επιτάχυνση τρισδιάστατων γραφικών μόνο "
-#~ "με τα Xorg %s.\n"
-#~ "ΠΡΟΣΟΧΗ: ΠΕΙΡΑΜΑΤΙΚΗ ΥΠΟΣΤΗΡΙΞΗ - ΜΠΟΡΕΙ ΝΑ ΠΑΓΩΣΕΙ ΤΟΝ ΥΠΟΛΟΓΙΣΤΗ ΣΑΣ!\n"
-#~ "Η κάρτα σας υποστηρίζεται από τα Xorg %s τα οποία μπορεί να δίνουν "
-#~ "καλύτερη υποστήριξη για διδιάστατα γραφικά"
-
-#~ msgid "Xpmac (installation display driver)"
-#~ msgstr "Xpmac (οδηγός προβολής εγκατάστασης)"
-
-#~ msgid "4 billion colors (32 bits)"
-#~ msgstr "4 δισεκατομμύρια χρώματα (32 bits)"
-
-#~ msgid "XFree86 server: %s\n"
-#~ msgstr "Εξυπηρετητής XFree86: %s\n"
-
-#~ msgid "Here is the full list of keyboards available"
-#~ msgstr "Αυτή είναι η πλήρης λίστα των διαθέσιμων πληκτρολογίων"
-
-#~ msgid "Please insert the Boot floppy used in drive %s"
-#~ msgstr "Παρακαλώ εισάγετε τη δισκέτα Εκκίνησης στον οδηγό %s"
-
-#~ msgid "XawTV is not installed!"
-#~ msgstr "Το XawTV εγκαταστάθηκε!"
-
-#~ msgid "Provider dns 1 (optional)"
-#~ msgstr "dns 1 Παροχέα (προαιρετικό)"
-
-#~ msgid "Provider dns 2 (optional)"
-#~ msgstr "dns 2 Παροχέα (προαιρετικό)"
-
-#~ msgid "DHCP Client"
-#~ msgstr "Πελάτης DHCP"
-
-#~ msgid ""
-#~ "Change\n"
-#~ "Restore Path"
-#~ msgstr ""
-#~ "Αλλαγή\n"
-#~ "Θέση Επαναφοράς"
-
-#~ msgid "European protocol"
-#~ msgstr "Ευρωπαϊκό πρωτόκολλο"
-
-#~ msgid "Found \"%s\" interface do you want to use it ?"
-#~ msgstr "Βρέθηκε μια διεπαφή \"%s\" θέλετε να τη χρησιμοποιήσετε ;"
-
-#~ msgid "What kind is your ISDN connection?"
-#~ msgstr "Τι είδους είναι η ISDN σύνδεσή σας;"
-
-#~ msgid ""
-#~ "I have detected an ISDN PCI card, but I do not know its type. Please "
-#~ "select a PCI card on the next screen."
-#~ msgstr ""
-#~ "Εντόπισα μια ISDN κάρτα, αλλά δεν ξέρω τον τύπο της. Παρακαλώ επιλέξτε "
-#~ "μια κάρτα PCI από την παρακάτω οθόνη."
-
-#~ msgid "No ISDN PCI card found. Please select one on the next screen."
-#~ msgstr ""
-#~ "Δεν βρέθηκε κάρτα ISDN. Παρακαλώ επιλέξτε μια από την παρακάτω οθόνη."
-
-#~ msgid "Under Devel ... please wait."
-#~ msgstr "Υπό Ανάπτυξη ... παρακαλώ περιμένετε."
-
-#~ msgid "Windows (FAT32)"
-#~ msgstr "Windows (FAT32)"
-
-#~ msgid "Scientific Workstation"
-#~ msgstr "Σταθμός Εργασίας Επιστημονικών εφαρμογών"
-
-#~ msgid "Scientific applications such as gnuplot"
-#~ msgstr "Επιστημονικές εφαρμογές όπως το gnuplot"
-
-#~ msgid "Please select media for backup..."
-#~ msgstr "Παρακαλώ επιλέξτε το μέσο για τα αντίγραφα ασφαλείας..."
-
-#~ msgid "Configuration of a remote printer"
-#~ msgstr "Ρύθμιση απομακρυσμένου εκτυπωτή"
-
-#~ msgid "Gnome Workstation"
-#~ msgstr "Σταθμός Εργασίας Gnome"
-
-#~ msgid "Running \"%s\" ..."
-#~ msgstr "Εκτέλεση του \"%s\"..."
-
-#~ msgid "utopia 25"
-#~ msgstr "utopia 25"
+#~ msgid "Icon"
+#~ msgstr "Εικονίδιο"
-#~ msgid "On Hard Drive"
-#~ msgstr "στον Σκληρό Δίσκο"
+#~ msgid "PLL setting:"
+#~ msgstr "Ρυθμίσεις PLL:"
-#~ msgid "Messages"
-#~ msgstr "Μηνύματα"
+#~ msgid "Radio support:"
+#~ msgstr "Υποστήριξη ραδιοφώνου:"
-#~ msgid "Syslog"
-#~ msgstr "Syslog"
+#~ msgid "enable radio support"
+#~ msgstr "ενεργοποίηση ραδιοφώνου"
-#~ msgid "Compact"
-#~ msgstr "Συμπαγής"
+#~ msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+#~ msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index 53a038ccc..7f0ea9e3c 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2006-03-05 18:57+0800\n"
+"POT-Creation-Date: 2007-03-21 12:10+0100\n"
"PO-Revision-Date: 2003-03-12 18:31-0400\n"
"Last-Translator: Vilhelmo Lutermano <vlutermano@free.fr>\n"
"Language-Team: esperanto <eo@li.org>\n"
@@ -14,785 +14,20 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.9.6\n"
-#: ../move/move.pm:292
-#, fuzzy, c-format
-msgid "Which USB key do you want to format?"
-msgstr "Kiun specon de enskribo vi deziras aldoni"
-
-#: ../move/move.pm:296
-#, c-format
-msgid ""
-"You are about to format a USB device \"%s\". This will delete all data on "
-"it.\n"
-"Make sure that the selected device is the USB key you want to format. \n"
-"We advise you to unplug all other USB storage devices while doing this "
-"operation."
-msgstr ""
-
-#: ../move/move.pm:448 ../move/move.pm:460
-#, c-format
-msgid "Key is not writable"
-msgstr ""
-
-#: ../move/move.pm:450
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-
-#: ../move/move.pm:452
-#, c-format
-msgid "Retry"
-msgstr "Reprovu"
-
-#: ../move/move.pm:453 ../move/move.pm:497
-#, c-format
-msgid "Continue without USB key"
-msgstr ""
-
-#: ../move/move.pm:462
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled, but we can not safely\n"
-"unplug it now.\n"
-"\n"
-"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandriva Move again."
-msgstr ""
-
-#: ../move/move.pm:468 help.pm:410 install_steps_interactive.pm:1303
-#, c-format
-msgid "Reboot"
-msgstr "Restarto"
-
-#: ../move/move.pm:473
-#, c-format
-msgid ""
-"Your USB key does not have any valid Windows (FAT) partitions.\n"
-"We need one to continue (beside, it's more standard so that you\n"
-"will be able to move and access your files from machines\n"
-"running Windows). Please plug in an USB key containing a\n"
-"Windows partition instead.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-
-#: ../move/move.pm:483
-#, c-format
-msgid ""
-"We did not detect any USB key on your system. If you\n"
-"plug in an USB key now, Mandriva Move will have the ability\n"
-"to transparently save the data in your home directory and\n"
-"system wide configuration, for next boot on this computer\n"
-"or another one. Note: if you plug in a key now, wait several\n"
-"seconds before detecting again.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandriva Move as a normal live Mandriva\n"
-"Operating System."
-msgstr ""
-
-#: ../move/move.pm:494
-#, c-format
-msgid "Need a key to save your data"
-msgstr ""
-
-#: ../move/move.pm:496
-#, c-format
-msgid "Detect USB key again"
-msgstr ""
-
-#: ../move/move.pm:517
-#, fuzzy, c-format
-msgid "Setting up USB key"
-msgstr "Starigas ISA PNP aparatojn: "
-
-#: ../move/move.pm:517
-#, fuzzy, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Elektas sekurnivelon"
-
-#: ../move/move.pm:546
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
-
-#: ../move/move.pm:556
-#, fuzzy, c-format
-msgid "Auto configuration"
-msgstr "Interreta Konfigurado"
-
-#: ../move/move.pm:556
-#, fuzzy, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Elektas sekurnivelon"
-
-#: ../move/move.pm:604 ../move/move.pm:660 ../move/move.pm:664
-#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/interactive.pm:231
-#: diskdrake/interactive.pm:244 diskdrake/interactive.pm:405
-#: diskdrake/interactive.pm:423 diskdrake/interactive.pm:560
-#: diskdrake/interactive.pm:565 diskdrake/smbnfs_gtk.pm:41 do_pkgs.pm:19
-#: do_pkgs.pm:39 do_pkgs.pm:52 fsedit.pm:218 install_any.pm:1775
-#: install_any.pm:1827 install_steps.pm:81 install_steps_interactive.pm:37
-#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
-#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
-#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
-#: network/netconnect.pm:837 network/netconnect.pm:866
-#: network/netconnect.pm:965 network/netconnect.pm:969
-#: network/netconnect.pm:973 network/netconnect.pm:978
-#: network/netconnect.pm:1123 network/netconnect.pm:1127
-#: network/netconnect.pm:1246 network/netconnect.pm:1251
-#: network/netconnect.pm:1271 network/netconnect.pm:1428
-#: network/thirdparty.pm:321 network/thirdparty.pm:328
-#: network/thirdparty.pm:372 network/thirdparty.pm:374
-#: network/thirdparty.pm:395 network/thirdparty.pm:419
-#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
-#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
-#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
-#: printer/printerdrake.pm:450 printer/printerdrake.pm:514
-#: printer/printerdrake.pm:686 printer/printerdrake.pm:690
-#: printer/printerdrake.pm:772 printer/printerdrake.pm:1555
-#: printer/printerdrake.pm:1603 printer/printerdrake.pm:1640
-#: printer/printerdrake.pm:1685 printer/printerdrake.pm:1689
-#: printer/printerdrake.pm:1703 printer/printerdrake.pm:1795
-#: printer/printerdrake.pm:1876 printer/printerdrake.pm:1880
-#: printer/printerdrake.pm:1884 printer/printerdrake.pm:1933
-#: printer/printerdrake.pm:1991 printer/printerdrake.pm:1995
-#: printer/printerdrake.pm:2009 printer/printerdrake.pm:2129
-#: printer/printerdrake.pm:2133 printer/printerdrake.pm:2176
-#: printer/printerdrake.pm:2249 printer/printerdrake.pm:2267
-#: printer/printerdrake.pm:2276 printer/printerdrake.pm:2285
-#: printer/printerdrake.pm:2296 printer/printerdrake.pm:2360
-#: printer/printerdrake.pm:2512 printer/printerdrake.pm:2947
-#: printer/printerdrake.pm:3231 printer/printerdrake.pm:3237
-#: printer/printerdrake.pm:3802 printer/printerdrake.pm:3806
-#: printer/printerdrake.pm:3810 printer/printerdrake.pm:4206
-#: printer/printerdrake.pm:4446 printer/printerdrake.pm:4474
-#: printer/printerdrake.pm:4551 printer/printerdrake.pm:4617
-#: printer/printerdrake.pm:4737 standalone/drakTermServ:422
-#: standalone/drakTermServ:492 standalone/drakTermServ:501
-#: standalone/drakTermServ:812 standalone/drakTermServ:819
-#: standalone/drakTermServ:845 standalone/drakTermServ:894
-#: standalone/drakTermServ:1146 standalone/drakTermServ:1181
-#: standalone/drakTermServ:1634 standalone/drakTermServ:1643
-#: standalone/drakTermServ:1651 standalone/drakTermServ:1656
-#: standalone/drakTermServ:1664 standalone/drakTermServ:1680
-#: standalone/drakTermServ:1700 standalone/drakauth:36
-#: standalone/drakbackup:511 standalone/drakbackup:625
-#: standalone/drakbackup:1110 standalone/drakbackup:1141
-#: standalone/drakbackup:1332 standalone/drakbackup:1664
-#: standalone/drakbackup:1820 standalone/drakbackup:2548
-#: standalone/drakbackup:4463 standalone/drakclock:124
-#: standalone/drakconnect:676 standalone/drakconnect:680
-#: standalone/drakconnect:685 standalone/drakconnect:700
-#: standalone/drakfont:209 standalone/drakfont:222 standalone/drakfont:260
-#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakhosts:98
-#: standalone/drakhosts:246 standalone/drakhosts:253 standalone/drakhosts:260
-#: standalone/draknfs:306 standalone/draknfs:609 standalone/draknfs:616
-#: standalone/draknfs:623 standalone/drakroam:33 standalone/draksambashare:384
-#: standalone/draksambashare:388 standalone/draksambashare:391
-#: standalone/draksambashare:394 standalone/draksambashare:453
-#: standalone/draksambashare:477 standalone/draksambashare:551
-#: standalone/draksambashare:633 standalone/draksambashare:700
-#: standalone/draksambashare:800 standalone/draksambashare:807
-#: standalone/draksambashare:942 standalone/draksambashare:1133
-#: standalone/draksambashare:1142 standalone/draksambashare:1151
-#: standalone/draksambashare:1172 standalone/draksambashare:1181
-#: standalone/draksambashare:1190 standalone/draksambashare:1210
-#: standalone/draksambashare:1218 standalone/draksambashare:1230
-#: standalone/draksplash:162 standalone/drakxtv:107
-#: standalone/finish-install:79 standalone/logdrake:171
-#: standalone/logdrake:439 standalone/logdrake:444 standalone/scannerdrake:59
-#: standalone/scannerdrake:202 standalone/scannerdrake:261
-#: standalone/scannerdrake:732 standalone/scannerdrake:743
-#: standalone/scannerdrake:882 standalone/scannerdrake:893
-#: standalone/scannerdrake:963 wizards.pm:95 wizards.pm:99 wizards.pm:121
-#, c-format
-msgid "Error"
-msgstr "Eraro"
-
-#: ../move/move.pm:605 install_steps.pm:82
-#, c-format
-msgid ""
-"An error occurred, but I do not know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Eraro okazis, sed mi ne scias kiel trakti ĝin bone.\n"
-"Daŭri je via propra risko."
-
-#: ../move/move.pm:660 install_steps_interactive.pm:37
-#, c-format
-msgid "An error occurred"
-msgstr "Eraro okazis"
-
-#: ../move/move.pm:666
-#, c-format
-msgid ""
-"An error occurred:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"This may come from corrupted system configuration files\n"
-"on the USB key, in this case removing them and then\n"
-"rebooting Mandriva Move would fix the problem. To do\n"
-"so, click on the corresponding button.\n"
-"\n"
-"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-
-#: ../move/move.pm:681
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "Ĉu forigu la retrokonektan dosieron?"
-
-#: ../move/move.pm:682
-#, c-format
-msgid "Simply reboot"
-msgstr ""
-
-#: ../move/tree/mdk_totem:50 ../move/tree/mdk_totem:96
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr ""
-
-#: ../move/tree/mdk_totem:71
-#, fuzzy, c-format
-msgid "Kill those programs"
-msgstr "aliro al X-programoj"
-
-#: ../move/tree/mdk_totem:72
-#, c-format
-msgid "No CDROM support"
-msgstr ""
-
-#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1062 diskdrake/interactive.pm:1072
-#: diskdrake/interactive.pm:1125
-#, c-format
-msgid "Read carefully!"
-msgstr "Legu zorge"
-
-#: ../move/tree/mdk_totem:77
-#, c-format
-msgid ""
-"You can not use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-
-#: ../move/tree/mdk_totem:101
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr ""
-
-#: Xconfig/card.pm:13
-#, c-format
-msgid "256 kB"
-msgstr "256 KB"
-
-#: Xconfig/card.pm:14
-#, c-format
-msgid "512 kB"
-msgstr "512 KB"
-
-#: Xconfig/card.pm:15
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
-
-#: Xconfig/card.pm:16
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
-
-#: Xconfig/card.pm:17
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
-
-#: Xconfig/card.pm:18
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
-
-#: Xconfig/card.pm:19
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: Xconfig/card.pm:20
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
-
-#: Xconfig/card.pm:21
-#, c-format
-msgid "64 MB or more"
-msgstr "64 MB aŭ pli"
-
-#: Xconfig/card.pm:162
-#, c-format
-msgid "X server"
-msgstr "X servilo"
-
-#: Xconfig/card.pm:163
-#, c-format
-msgid "Choose an X server"
-msgstr "Elektu X-servilon"
-
-#: Xconfig/card.pm:195
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Plur-ekrana konfiguraĵo"
-
-#: Xconfig/card.pm:196
-#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Via sistemo subtenas multkapo-konfiguradon.\n"
-"Kion vi deziras fari?"
-
-#: Xconfig/card.pm:265
-#, fuzzy, c-format
-msgid "Can not install Xorg package: %s"
-msgstr "Instalanta pakaĵo %s"
-
-#: Xconfig/card.pm:275
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Elektu memorkapaciton de via grafika karto"
-
-#: Xconfig/card.pm:371
-#, c-format
-msgid "Xorg configuration"
-msgstr "Xorg Konfigurado"
-
-#: Xconfig/card.pm:373
-#, c-format
-msgid "Which configuration of Xorg do you want to have?"
-msgstr "Kiun konfiguron de Xorg vi deziras havi?"
-
-#: Xconfig/card.pm:406
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Konfiguru ĉiujn kapojn sendepende"
-
-#: Xconfig/card.pm:407
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Uzu Xinerama extension"
-
-#: Xconfig/card.pm:412
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Konfiguru nur karton \"%s\"%s"
-
-#: Xconfig/card.pm:424 Xconfig/various.pm:23
-#, c-format
-msgid "Xorg %s"
-msgstr "Xorg %s"
-
-#: Xconfig/card.pm:431 Xconfig/various.pm:22
-#, c-format
-msgid "Xorg %s with 3D hardware acceleration"
-msgstr "Xorg %s kun 3D aparata akcelado"
-
-#: Xconfig/card.pm:433
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with Xorg %s."
-msgstr "Vi povas havi 3D aparatan akceladan subtenon kun Xorg %s."
-
-#: Xconfig/card.pm:439
-#, c-format
-msgid "Xorg %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "Xorg %s kun EKSPERIMENTA 3D aparata akcelado"
-
-#: Xconfig/card.pm:441
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with Xorg %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Via karto povas havi 3D aparatan akceladon, sed nur kun Xorg %s.\n"
-"NOTU KE ĈI TIO ESTAS EKSPERIMENTA SUBTENO KAJ EBLE SVENIGOS VIAN KOMPUTILON."
-
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:1021
-#, c-format
-msgid "Custom"
-msgstr "Akomodata"
-
-#: Xconfig/main.pm:127 any.pm:742 diskdrake/dav.pm:26 help.pm:15
-#: install_steps_interactive.pm:1303 printer/printerdrake.pm:882
-#: printer/printerdrake.pm:899 printer/printerdrake.pm:4546
-#: printer/printerdrake.pm:5010 standalone/drakhosts:263
-#: standalone/drakroam:230 standalone/draksplash:93 standalone/logdrake:176
-#: standalone/net_applet:103 standalone/scannerdrake:494
-#, c-format
-msgid "Quit"
-msgstr "Ĉesu"
-
-#: Xconfig/main.pm:129
-#, c-format
-msgid "Graphic Card"
-msgstr "Grafik-karto"
-
-#: Xconfig/main.pm:132 Xconfig/monitor.pm:110
-#, c-format
-msgid "Monitor"
-msgstr "Ekrano"
-
-#: Xconfig/main.pm:135 Xconfig/resolution_and_depth.pm:289
-#, c-format
-msgid "Resolution"
-msgstr "Distingivo"
-
-#: Xconfig/main.pm:138
-#, c-format
-msgid "Test"
-msgstr "Testo"
-
-#: Xconfig/main.pm:143 diskdrake/dav.pm:65 diskdrake/interactive.pm:449
-#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
-#: printer/printerdrake.pm:1112 standalone/drakfont:493
-#: standalone/drakfont:548
-#, c-format
-msgid "Options"
-msgstr "Opcioj"
-
-#: Xconfig/main.pm:178
-#, c-format
-msgid "Your Xorg configuration file is broken, we will ignore it."
-msgstr ""
-
-#: Xconfig/main.pm:196
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Ĉu vi deziras teni la ŝanĝojn?\n"
-"Nuna konfiguro estas:\n"
-"\n"
-"%s"
-
-#: Xconfig/monitor.pm:111
-#, fuzzy, c-format
-msgid "Choose a monitor for head #%d"
-msgstr "Elektu ekranon"
-
-#: Xconfig/monitor.pm:111
-#, c-format
-msgid "Choose a monitor"
-msgstr "Elektu ekranon"
-
-#: Xconfig/monitor.pm:117
-#, c-format
-msgid "Plug'n Play"
-msgstr ""
-
-#: Xconfig/monitor.pm:118 mouse.pm:49
-#, c-format
-msgid "Generic"
-msgstr "Genera"
-
-#: Xconfig/monitor.pm:119 standalone/drakconnect:591 standalone/harddrake2:54
-#: standalone/harddrake2:88
-#, c-format
-msgid "Vendor"
-msgstr "Vendinto"
-
-#: Xconfig/monitor.pm:129
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr ""
-
-#: Xconfig/monitor.pm:137
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"La du gravegaj parametroj estas la vertikala refreŝigrapido (vertical\n"
-"refresh rate) kiu estas la rapido por refreŝigi la tutan ekranon, kaj\n"
-"plej grave la horizontala sinkronrapido (horizontal sync rate), kiu estas\n"
-"la rapido por montri skanliniojn.\n"
-"\n"
-"Ĝi estas TRE GRAVA ke vi ne elektas specon de ekrano kiu havas\n"
-"sinkronamplekson kiu estas preter la kapabloj de via ekrano: vi eble\n"
-"difektus vian ekranon. Se vi dubas, elektu zorgeman opcion."
-
-#: Xconfig/monitor.pm:144
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Horizontala sinkronrapido (horizontal sync rate)"
-
-#: Xconfig/monitor.pm:145
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Vertikala refreŝigrapido (vertical refresh rate)"
-
-#: Xconfig/resolution_and_depth.pm:10
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 koloroj (8 bitoj)"
-
-#: Xconfig/resolution_and_depth.pm:11
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil koloroj (15 bitoj)"
-
-#: Xconfig/resolution_and_depth.pm:12
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil koloroj (16 bitoj)"
-
-#: Xconfig/resolution_and_depth.pm:13
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 milionoj koloroj (24 bitoj)"
-
-#: Xconfig/resolution_and_depth.pm:127
-#, c-format
-msgid "Resolutions"
-msgstr "Distingivoj"
-
-#: Xconfig/resolution_and_depth.pm:311 diskdrake/hd_gtk.pm:336
-#: install_steps_gtk.pm:288 mouse.pm:168 services.pm:162
-#: standalone/drakbackup:1606 standalone/drakperm:250
-#, c-format
-msgid "Other"
-msgstr "Alia"
-
-#: Xconfig/resolution_and_depth.pm:360
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Elektu distingivon kaj kolorprofundon"
-
-#: Xconfig/resolution_and_depth.pm:361
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Grafika karto: %s"
-
-#: Xconfig/resolution_and_depth.pm:375 interactive.pm:119 interactive.pm:436
-#: interactive/http.pm:103 interactive/http.pm:156 interactive/newt.pm:321
-#: interactive/stdio.pm:39 interactive/stdio.pm:142 interactive/stdio.pm:143
-#: standalone/drakTermServ:222 standalone/drakTermServ:543
-#: standalone/drakbackup:1372 standalone/drakbackup:4123
-#: standalone/drakbackup:4183 standalone/drakbackup:4227
-#: standalone/drakbackup:4481 standalone/drakconnect:158
-#: standalone/drakconnect:852 standalone/drakconnect:939
-#: standalone/drakconnect:1030 standalone/drakfont:569 standalone/drakfont:579
-#: standalone/draksplash:173 standalone/drakups:210 standalone/net_monitor:339
-#: ugtk2.pm:392 ugtk2.pm:490 ugtk2.pm:899 ugtk2.pm:922
-#, c-format
-msgid "Ok"
-msgstr "Jeso"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/smbnfs_gtk.pm:80 help.pm:90
-#: help.pm:445 install_steps_gtk.pm:455 install_steps_interactive.pm:406
-#: install_steps_interactive.pm:811 interactive.pm:120 interactive.pm:437
-#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
-#: interactive/stdio.pm:39 interactive/stdio.pm:142
-#: printer/printerdrake.pm:3882 standalone/drakautoinst:215
-#: standalone/drakbackup:1372 standalone/drakbackup:4052
-#: standalone/drakbackup:4056 standalone/drakbackup:4111
-#: standalone/drakbackup:4481 standalone/drakconnect:157
-#: standalone/drakconnect:937 standalone/drakconnect:1029
-#: standalone/drakfont:579 standalone/drakfont:655 standalone/drakfont:733
-#: standalone/draksplash:173 standalone/drakups:217 standalone/logdrake:176
-#: standalone/net_monitor:338 ugtk2.pm:386 ugtk2.pm:488 ugtk2.pm:497
-#: ugtk2.pm:899
-#, c-format
-msgid "Cancel"
-msgstr "Nuligu"
-
-#: Xconfig/resolution_and_depth.pm:375 diskdrake/hd_gtk.pm:150
-#: install_steps_gtk.pm:232 install_steps_gtk.pm:617 interactive.pm:567
-#: interactive/gtk.pm:682 interactive/gtk.pm:684 standalone/drakTermServ:311
-#: standalone/drakbackup:4048 standalone/drakbug:105
-#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:511 standalone/draknfs:206 standalone/drakperm:133
-#: standalone/draksambashare:320 standalone/draksec:344 standalone/draksec:346
-#: standalone/draksec:364 standalone/draksec:366 ugtk2.pm:1031 ugtk2.pm:1032
-#, c-format
-msgid "Help"
-msgstr "Helpo"
-
-#: Xconfig/test.pm:30
-#, c-format
-msgid "Test of the configuration"
-msgstr "Provu konfiguraĵon"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Ĉu vi deziras provi la konfiguraĵon?"
-
-#: Xconfig/test.pm:31
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Averto: provado de ĉi tiu grafika-karto eble svenigos vian komputilon"
-
-#: Xconfig/test.pm:69
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"Eraro okazis:\n"
-"%s\n"
-"Provu ŝanĝi iujn parametrojn"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Eliras post %d sekundoj"
-
-#: Xconfig/test.pm:129
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Ĉu tiu ĉi konfigurado ĝustas?"
-
-#: Xconfig/various.pm:29
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Klavara aranĝo: %s\n"
-
-#: Xconfig/various.pm:30
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Speco de muso: %s\n"
-
-#: Xconfig/various.pm:31
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Musaparato: %s\n"
-
-#: Xconfig/various.pm:33
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Ekrano: %s\n"
-
-#: Xconfig/various.pm:34
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Ekrana horizontala sinkronrapido (horizontal sync rate): %s\n"
-
-#: Xconfig/various.pm:35
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Ekrana vertikala refreŝigrapido (vertical refresh rate): %s\n"
-
-#: Xconfig/various.pm:37
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Grafika karto: %s\n"
-
-#: Xconfig/various.pm:38
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Graifka memoro: %s KB\n"
-
-#: Xconfig/various.pm:40
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Kolorprofuneco: %s\n"
-
-#: Xconfig/various.pm:41
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Distingivo: %s\n"
-
-#: Xconfig/various.pm:43
-#, c-format
-msgid "Xorg driver: %s\n"
-msgstr "Xorg pelilo: %s\n"
-
-#: Xconfig/various.pm:72
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "X Fenestro ĉe komenco"
-
-#: Xconfig/various.pm:74
-#, c-format
-msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(Xorg) upon booting.\n"
-"Would you like Xorg to start when you reboot?"
-msgstr ""
-"Mi povas konfiguri vian komputilon tiel ke ĝi aŭtomate lanĉos X kiam ĝi\n"
-"ekfunkcias. Ĉu vi deziras ke X aŭtomate lanĉos?"
-
-#: Xconfig/various.pm:87
-#, c-format
-msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
-msgstr ""
-"Via grafika karto ŝajnas havi TV-OUT-konektilon.\n"
-"Ĝi konfigureblas por funkcii uzante frame-buffer.\n"
-"\n"
-"Por tio vi devas konekti vian grafikan karton al via televidilo antaŭ ol "
-"startigi vian komputilon.\n"
-"Poste elektu la \"TVout\"-eniron en la startigilo\n"
-"\n"
-"Ĉu vi havas tiun konektilon?"
-
-#: Xconfig/various.pm:99
-#, c-format
-msgid "What norm is your TV using?"
-msgstr "Kiun normon uzas via TV?"
-
-#: Xconfig/xfree.pm:648
-#, c-format
-msgid ""
-"_:weird aspect ratio\n"
-"other"
-msgstr ""
-
-#: any.pm:153 harddrake/sound.pm:195 interactive.pm:474 pkgs.pm:474
-#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
-#: standalone/drakups:99 standalone/drakxtv:92 standalone/harddrake2:375
-#: standalone/service_harddrake:235
+#: any.pm:157 diskdrake/interactive.pm:422 diskdrake/interactive.pm:617
+#: diskdrake/interactive.pm:798 diskdrake/interactive.pm:842
+#: diskdrake/interactive.pm:904 diskdrake/interactive.pm:1188 do_pkgs.pm:209
+#: do_pkgs.pm:255 harddrake/sound.pm:195 interactive.pm:576
#, c-format
msgid "Please wait"
msgstr "Bonvole atendu"
-#: any.pm:153
+#: any.pm:157
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "Startŝargila instalado"
-#: any.pm:164
+#: any.pm:168
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -803,12 +38,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:175
+#: any.pm:179
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Instalado de startŝargilo malsukcesis. La sekvanta eraro okazis:"
-#: any.pm:181
+#: any.pm:185
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -819,7 +54,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:219
+#: any.pm:223
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -834,257 +69,268 @@ msgstr ""
"\n"
"En kiu drajvo vi startigas?"
-#: any.pm:242 help.pm:740
+#: any.pm:246
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Unu sektoro de drajvo (ĈefStartRikordo)"
-#: any.pm:243
+#: any.pm:247
#, c-format
msgid "First sector of the root partition"
msgstr "Unua sektoro de radika subdisko"
-#: any.pm:245
+#: any.pm:249
#, c-format
msgid "On Floppy"
msgstr "Sur disketo"
-#: any.pm:247 help.pm:740 printer/printerdrake.pm:4203
+#: any.pm:251
#, c-format
msgid "Skip"
msgstr "Ellasu"
-#: any.pm:251
+#: any.pm:255
#, c-format
msgid "LILO/grub Installation"
msgstr "LILO/grub Instalado"
-#: any.pm:252
+#: any.pm:257
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Kie vi deziras instali la startŝargilon?"
-#: any.pm:278 standalone/drakboot:269
+#: any.pm:284
#, fuzzy, c-format
msgid "Boot Style Configuration"
msgstr "Post-instala konfigurado"
-#: any.pm:280 any.pm:281 any.pm:314 any.pm:315
+#: any.pm:294 any.pm:326 any.pm:327
#, c-format
msgid "Bootloader main options"
msgstr "Startŝargilo ĉefaj opcioj"
-#: any.pm:286
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Donu kvanton de memoro en MB"
-
-#: any.pm:288
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Opcio ``Limigu komandliniajn opciojn'' ne estas utila sen pasvorto"
-
-#: any.pm:289 any.pm:628 authentication.pm:192
-#, c-format
-msgid "The passwords do not match"
-msgstr "La pasvortoj ne egalas"
-
-#: any.pm:289 any.pm:628 authentication.pm:192 diskdrake/interactive.pm:1336
+#: any.pm:299
#, c-format
-msgid "Please try again"
-msgstr "Bonvole provu denove"
+msgid "Bootloader"
+msgstr "Startŝargilo"
-#: any.pm:294 any.pm:319
+#: any.pm:300 any.pm:331
#, c-format
msgid "Bootloader to use"
msgstr "Startŝargilo por uzi"
-#: any.pm:296 any.pm:321
+#: any.pm:302 any.pm:333
#, c-format
msgid "Boot device"
msgstr "Starta aparato"
-#: any.pm:298
+#: any.pm:304
+#, c-format
+msgid "Main options"
+msgstr ""
+
+#: any.pm:305
#, c-format
msgid "Delay before booting default image"
msgstr "Prokrastoperiodo antaŭ starti defaŭltan sistemon"
-#: any.pm:299
+#: any.pm:306
#, c-format
msgid "Enable ACPI"
msgstr "Ebligu ACPI"
-#: any.pm:301
+#: any.pm:307
#, fuzzy, c-format
-msgid "Force no APIC"
-msgstr "Devigu No APIC"
+msgid "Enable APIC"
+msgstr "Ebligu ACPI"
-#: any.pm:303
+#: any.pm:308
#, fuzzy, c-format
-msgid "Force No Local APIC"
-msgstr "Devigu No APIC"
+msgid "Enable Local APIC"
+msgstr "Ebligu ACPI"
-#: any.pm:305 any.pm:662 authentication.pm:197 diskdrake/smbnfs_gtk.pm:180
-#: network/netconnect.pm:584 printer/printerdrake.pm:1867
-#: printer/printerdrake.pm:1988 standalone/drakbackup:1650
-#: standalone/drakbackup:3641 standalone/drakups:297
+#: any.pm:310 any.pm:686 authentication.pm:196 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Pasvorto"
-#: any.pm:306 any.pm:663 authentication.pm:198
+#: any.pm:312 authentication.pm:207
+#, c-format
+msgid "The passwords do not match"
+msgstr "La pasvortoj ne egalas"
+
+#: any.pm:312 authentication.pm:207 diskdrake/interactive.pm:1348
+#, c-format
+msgid "Please try again"
+msgstr "Bonvole provu denove"
+
+#: any.pm:313
+#, fuzzy, c-format
+msgid "You can not use a password with %s"
+msgstr "Vi ne povas uzi kriptan dosiersistemon por surmetingo %s"
+
+#: any.pm:316 any.pm:687 authentication.pm:197
#, c-format
msgid "Password (again)"
msgstr "Pasvorto (denove)"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "Restrict command line options"
msgstr "Limigu komandliniajn opciojn"
-#: any.pm:307
+#: any.pm:317
#, c-format
msgid "restrict"
msgstr "limigu"
-#: any.pm:309
+#: any.pm:318
+#, c-format
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr "Opcio ``Limigu komandliniajn opciojn'' ne estas utila sen pasvorto"
+
+#: any.pm:320
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Purigu /tmp dum ĉiuj startadoj"
-#: any.pm:310
+#: any.pm:321
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Preciza kvanto de memoro se bezonata (trovis %d MB)"
-#: any.pm:320
+#: any.pm:322
+#, c-format
+msgid "Give the ram size in MB"
+msgstr "Donu kvanton de memoro en MB"
+
+#: any.pm:332
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:322
+#: any.pm:334
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:323
+#: any.pm:335
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""
-#: any.pm:324
+#: any.pm:336
#, c-format
msgid "Enable CD Boot?"
msgstr "Ĉu ebligi CD Boot?"
-#: any.pm:325
+#: any.pm:337
#, c-format
msgid "Enable OF Boot?"
msgstr "Ĉu ebligi OF Boot?"
-#: any.pm:326
+#: any.pm:338
#, c-format
msgid "Default OS?"
msgstr "Defaŭlta Mastruma Sistemo?"
-#: any.pm:380
+#: any.pm:404
#, c-format
msgid "Image"
msgstr "Kerna bildo"
-#: any.pm:381 any.pm:391
+#: any.pm:405 any.pm:418
#, c-format
msgid "Root"
msgstr "Radiko"
-#: any.pm:382 any.pm:404
+#: any.pm:406 any.pm:431
#, c-format
msgid "Append"
msgstr "Alfiksu"
-#: any.pm:384 standalone/drakboot:271 standalone/drakboot:275
+#: any.pm:408
+#, c-format
+msgid "Xen append"
+msgstr ""
+
+#: any.pm:411
#, c-format
msgid "Video mode"
msgstr "Grafika reĝimo"
-#: any.pm:386
+#: any.pm:413
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:387
+#: any.pm:414
#, fuzzy, c-format
msgid "Network profile"
msgstr "Nova profilo..."
-#: any.pm:396 any.pm:401 any.pm:403 diskdrake/interactive.pm:450
+#: any.pm:423 any.pm:428 any.pm:430 diskdrake/interactive.pm:443
#, c-format
msgid "Label"
msgstr "Etikedo"
-#: any.pm:398 any.pm:408 harddrake/v4l.pm:438 standalone/drakbackup:2104
-#: standalone/draksec:52
+#: any.pm:425 any.pm:433 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Defaŭlta"
-#: any.pm:405
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd-grandeco"
-
-#: any.pm:407
+#: any.pm:432
#, c-format
msgid "NoVideo"
msgstr ""
-#: any.pm:418
+#: any.pm:443
#, c-format
msgid "Empty label not allowed"
msgstr "Malplena etikedo ne estas permesata"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a kernel image"
msgstr "Vi devas decidi pri kerno-bildo"
-#: any.pm:419
+#: any.pm:444
#, c-format
msgid "You must specify a root partition"
msgstr "Vi devas difini radikan (root) subdiskon"
-#: any.pm:420
+#: any.pm:445
#, c-format
msgid "This label is already used"
msgstr "Ĉi tiu etikedo estas jam uzata"
-#: any.pm:434
+#: any.pm:459
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Kiun specon de enskribo vi deziras aldoni"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Linux"
msgstr "Linukso"
-#: any.pm:435
+#: any.pm:460
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Alia Mastruma Sistemo (SunOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Alia Mastruma Sistemo (MacOS...)"
-#: any.pm:436
+#: any.pm:461
#, c-format
msgid "Other OS (Windows...)"
msgstr "Alia Mastruma Sistemo (Vindozo...)"
-#: any.pm:464
+#: any.pm:489
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -1093,93 +339,88 @@ msgstr ""
"Jen la diversaj enskriboj.\n"
"Vi povas aldoni pli aŭ ŝanĝi la ekzistantajn."
-#: any.pm:614
+#: any.pm:640
#, c-format
msgid "access to X programs"
msgstr "aliro al X-programoj"
-#: any.pm:615
+#: any.pm:641
#, c-format
msgid "access to rpm tools"
msgstr "aliro al rpm-iloj"
-#: any.pm:616
+#: any.pm:642
#, c-format
msgid "allow \"su\""
msgstr "permesu \"su\""
-#: any.pm:617
+#: any.pm:643
#, c-format
msgid "access to administrative files"
msgstr "aliro al administraj dosieroj"
-#: any.pm:618
+#: any.pm:644
#, c-format
msgid "access to network tools"
msgstr "aliro al retiloj"
-#: any.pm:619
+#: any.pm:645
#, c-format
msgid "access to compilation tools"
msgstr "aliro al kompililoj"
-#: any.pm:624
+#: any.pm:650
#, c-format
msgid "(already added %s)"
msgstr "(jam aldonis %s)"
-#: any.pm:629
-#, c-format
-msgid "This password is too simple"
-msgstr "Ĉi tiu pasvorto estas tro simpla"
-
-#: any.pm:630
+#: any.pm:657
#, c-format
msgid "Please give a user name"
msgstr "Bonvole donu salutnomon"
-#: any.pm:631
+#: any.pm:658
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Salutnomo devas enhavi nur minusklojn, ciferojn, `-' kaj `_'"
-#: any.pm:632
+#: any.pm:659
#, c-format
msgid "The user name is too long"
msgstr "Ĉi tiu salutnomo estas tro longa"
-#: any.pm:633
+#: any.pm:660
#, c-format
msgid "This user name has already been added"
msgstr "Ĉi tiu salutnomo estas jam aldonita"
-#: any.pm:634 any.pm:665
+#: any.pm:661 any.pm:689
#, c-format
msgid "User ID"
msgstr "Uzula ID"
-#: any.pm:635 any.pm:666
+#: any.pm:662 any.pm:690
#, c-format
msgid "Group ID"
msgstr "Grupa ID"
-#: any.pm:638
+#: any.pm:665
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:639
+#: any.pm:666
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:644 standalone/draksambashare:1214
+#: any.pm:671
#, c-format
msgid "Add user"
msgstr "Aldonu uzanto"
-#: any.pm:646
+#: any.pm:673
#, c-format
msgid ""
"Enter a user\n"
@@ -1188,98 +429,94 @@ msgstr ""
"Enigu uzanton\n"
"%s"
-#: any.pm:649 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:154
-#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:81 help.pm:531
-#: interactive/http.pm:151 printer/printerdrake.pm:197
-#: printer/printerdrake.pm:382 printer/printerdrake.pm:5010
-#: standalone/drakbackup:2836 standalone/scannerdrake:685
-#: standalone/scannerdrake:835
+#: any.pm:676 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:166
+#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:82
+#: interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Finata"
-#: any.pm:650 help.pm:52
+#: any.pm:677
#, c-format
msgid "Accept user"
msgstr "Akceptu uzanto"
-#: any.pm:660
+#: any.pm:682
#, c-format
msgid "Real name"
msgstr "Vera nomo"
-#: any.pm:661 standalone/drakbackup:1645
+#: any.pm:685
#, fuzzy, c-format
msgid "Login name"
msgstr "Domajna nomo"
-#: any.pm:664
+#: any.pm:688
#, c-format
msgid "Shell"
msgstr "Ŝelo"
-#: any.pm:668
-#, c-format
-msgid "Icon"
-msgstr "Piktogramo"
-
-#: any.pm:715 security/l10n.pm:14
+#: any.pm:735 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Aŭtomata-enregistrado"
-#: any.pm:716
+#: any.pm:736
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Mi povas konfiguri vian komputilon por aŭtomate enirigi unu uzulon"
-#: any.pm:717
+#: any.pm:737
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Ĉu vi deziras uzi tiun funkcion?"
-#: any.pm:718
+#: any.pm:738
#, c-format
msgid "Choose the default user:"
msgstr "Elektu la defaŭltan uzulon:"
-#: any.pm:719
+#: any.pm:739
#, c-format
msgid "Choose the window manager to run:"
msgstr "Elektu la fenestro-administrilon por lanĉi:"
-#: any.pm:740
+#: any.pm:767
#, c-format
msgid "License agreement"
msgstr "Licenca kontrakto"
-#: any.pm:745
+#: any.pm:770 diskdrake/dav.pm:26
+#, c-format
+msgid "Quit"
+msgstr "Ĉesu"
+
+#: any.pm:773
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Bonvole atendu"
-#: any.pm:748 help.pm:15 install_steps_gtk.pm:539
-#: install_steps_interactive.pm:715 standalone/drakautoinst:214
+#: any.pm:776
#, c-format
msgid "Accept"
msgstr "Akceptu"
-#: any.pm:748 install_steps_gtk.pm:539 install_steps_interactive.pm:715
+#: any.pm:776
#, c-format
msgid "Refuse"
msgstr "Malakceptu"
-#: any.pm:765 any.pm:833
+#: any.pm:795 any.pm:863
#, c-format
msgid "Please choose a language to use."
msgstr "Bonvole elektu lingvon por uzi."
-#: any.pm:766 any.pm:834
+#: any.pm:796 any.pm:864
#, fuzzy, c-format
msgid "Language choice"
msgstr "Mianmaro"
-#: any.pm:794
+#: any.pm:826
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
@@ -1288,70 +525,72 @@ msgid ""
msgstr ""
"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaŭ la instalado"
-#: any.pm:797
+#: any.pm:829
#, c-format
msgid "Multi languages"
msgstr ""
-#: any.pm:813 any.pm:842 help.pm:648
+#: any.pm:841 any.pm:872
#, c-format
-msgid "Use Unicode by default"
-msgstr "Uzu Unikodon defaŭlte"
+msgid "Old compatibility (non UTF-8) encoding"
+msgstr ""
-#: any.pm:814 help.pm:648
+#: any.pm:843
#, c-format
msgid "All languages"
msgstr "Ĉiuj lingvoj"
-#: any.pm:888 help.pm:567 help.pm:856 install_steps_interactive.pm:932
+#: any.pm:918
#, c-format
msgid "Country / Region"
msgstr "Lando"
-#: any.pm:890
+#: any.pm:920
#, c-format
msgid "Please choose your country."
msgstr "Bonvole elektu vian landon."
-#: any.pm:892
+#: any.pm:922
#, c-format
msgid "Here is the full list of available countries"
msgstr "Jen la kompleta listo de atingeblaj landoj"
-#: any.pm:893
+#: any.pm:923
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Aliaj pordoj"
-#: any.pm:893 help.pm:52 help.pm:410 help.pm:432 help.pm:648 help.pm:723
-#: interactive.pm:397
+#: any.pm:923 interactive.pm:477
#, c-format
msgid "Advanced"
msgstr "Progresinta"
-#: any.pm:901
+#: any.pm:929
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:904 install_any.pm:422 network/netconnect.pm:317
-#: network/netconnect.pm:322 network/netconnect.pm:1237 network/wireless.pm:7
-#: printer/printerdrake.pm:117
+#: any.pm:932
#, c-format
msgid "None"
msgstr "Neniom"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "No sharing"
msgstr "Ne kundivido"
-#: any.pm:1021
+#: any.pm:1012
#, c-format
msgid "Allow all users"
msgstr "Permesu ĉiujn uzulojn"
-#: any.pm:1025
+#: any.pm:1012
+#, c-format
+msgid "Custom"
+msgstr "Akomodata"
+
+#: any.pm:1016
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1367,49 +606,94 @@ msgstr ""
"\n"
"\"Custum\" ebligas per-uzulan.\n"
-#: any.pm:1037
+#: any.pm:1028
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1040
+#: any.pm:1031
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1048
+#: any.pm:1039
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Vi povas eksporti uzante NFS aŭ SMB. Bonvole elektu kiun vi ŝatus uzi."
-#: any.pm:1073
+#: any.pm:1064
#, c-format
msgid "Launch userdrake"
msgstr "Lanĉu userdrake"
-#: any.pm:1073 printer/printerdrake.pm:4085 printer/printerdrake.pm:4088
-#: printer/printerdrake.pm:4089 printer/printerdrake.pm:4090
-#: printer/printerdrake.pm:5328 standalone/drakTermServ:321
-#: standalone/drakbackup:4245 standalone/drakbug:126 standalone/drakfont:499
-#: standalone/drakids:64 standalone/drakids:77 standalone/drakids:85
-#: standalone/draknfs:210 standalone/net_monitor:117
-#: standalone/printerdrake:583
+#: any.pm:1064 interactive/gtk.pm:747
#, c-format
msgid "Close"
msgstr "Malfermu"
-#: any.pm:1075
+#: any.pm:1066
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
+#: any.pm:1158
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr ""
+"Bonvole adiaŭu kaj sekve uzu Kontrol-Alt-Retropaŝo (Ctrl-Alt-Backspace)."
+
+#: any.pm:1162
+#, c-format
+msgid "You need to log out and back in again for changes to take effect"
+msgstr ""
+
+#: any.pm:1212
+#, c-format
+msgid "Timezone"
+msgstr "Horzono"
+
+#: any.pm:1212
+#, c-format
+msgid "Which is your timezone?"
+msgstr "kio estas vian horzonon?"
+
+#: any.pm:1224 any.pm:1226
+#, c-format
+msgid "Date, Clock & Time Zone Settings"
+msgstr ""
+
+#: any.pm:1227
+#, c-format
+msgid "What is the best time?"
+msgstr ""
+
+#: any.pm:1231
+#, fuzzy, c-format
+msgid "%s (hardware clock set to UTC)"
+msgstr "Aparata horloĝo estas ĝustigita laŭ GMT"
+
+#: any.pm:1232
+#, fuzzy, c-format
+msgid "%s (hardware clock set to local time)"
+msgstr "Aparata horloĝo estas ĝustigita laŭ GMT"
+
+#: any.pm:1234
+#, c-format
+msgid "NTP Server"
+msgstr "NTP Servilo"
+
+#: any.pm:1235
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Auxtomata hor-sinkronizado (uzante NTP) "
+
#: authentication.pm:23
#, c-format
msgid "Local file"
@@ -1524,7 +808,7 @@ msgstr "Aŭtentikiga LDAP"
msgid "LDAP Base dn"
msgstr ""
-#: authentication.pm:98 share/compssUsers.pl:102
+#: authentication.pm:98
#, c-format
msgid "LDAP Server"
msgstr "LDAP Servilo"
@@ -1554,14 +838,12 @@ msgstr ""
msgid "Authentication Active Directory"
msgstr "Aŭtentikigado"
-#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:181
+#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Domajno"
-#: authentication.pm:124 diskdrake/dav.pm:63 help.pm:147
-#: printer/printerdrake.pm:75 share/compssUsers.pl:82
-#: standalone/drakTermServ:296
+#: authentication.pm:124 diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Servilo"
@@ -1638,46 +920,40 @@ msgstr "Uzulnomo de la Domajna administranto"
msgid "Domain Admin Password"
msgstr ""
-#: authentication.pm:181
+#: authentication.pm:181 authentication.pm:198
#, c-format
-msgid "Set administrator (root) password and network authentication methods"
-msgstr ""
+msgid "Authentication"
+msgstr "Aŭtentikigado"
#: authentication.pm:182
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Difinu pasvorton de root"
-#: authentication.pm:183 standalone/drakvpn:1111
+#: authentication.pm:184
#, fuzzy, c-format
msgid "Authentication method"
msgstr "Aŭtentikigado"
#. -PO: keep this short or else the buttons will not fit in the window
-#: authentication.pm:188 help.pm:723
+#: authentication.pm:189
#, c-format
msgid "No password"
msgstr "Neniu pasvorto"
-#: authentication.pm:194
+#: authentication.pm:210
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ĉi tiu pasvorto ests tro simpla (ĝi devas esti almenaŭ %d signoj longa)"
-#: authentication.pm:199 network/netconnect.pm:322 network/netconnect.pm:585
-#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:481
-#, c-format
-msgid "Authentication"
-msgstr "Aŭtentikigado"
-
-#: authentication.pm:331
+#: authentication.pm:351
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:767
+#: bootloader.pm:880
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1692,292 +968,105 @@ msgstr ""
"atendu por defauxlta starto.\n"
"\n"
-#: bootloader.pm:909
-#, c-format
-msgid "LILO with graphical menu"
-msgstr ""
-
-#: bootloader.pm:910
+#: bootloader.pm:1028
#, c-format
msgid "LILO with text menu"
msgstr ""
-#: bootloader.pm:911
+#: bootloader.pm:1029
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:912
+#: bootloader.pm:1030
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:913
+#: bootloader.pm:1031
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:990
+#: bootloader.pm:1032
+#, c-format
+msgid "SILO"
+msgstr ""
+
+#: bootloader.pm:1112
#, c-format
msgid "not enough room in /boot"
msgstr "mankas sufiĉe da spaco en /boot"
-#: bootloader.pm:1483
+#: bootloader.pm:1679
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "Vi ne povas instali la startŝargilon en %s-subdiskon\n"
-#: bootloader.pm:1523
+#: bootloader.pm:1732
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:1536
+#: bootloader.pm:1745
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:1537
+#: bootloader.pm:1746
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Instalu restart-ŝargilon"
-#: common.pm:134
+#: common.pm:129
+#, fuzzy, c-format
+msgid "B"
+msgstr "KB"
+
+#: common.pm:129
#, c-format
msgid "KB"
msgstr "KB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "MB"
msgstr "MB"
-#: common.pm:134
+#: common.pm:129
#, c-format
msgid "GB"
msgstr "GB"
-#: common.pm:142
+#: common.pm:137
#, c-format
msgid "TB"
msgstr "TB"
-#: common.pm:150
+#: common.pm:145
#, c-format
msgid "%d minutes"
msgstr "%d minutoj"
-#: common.pm:152
+#: common.pm:147
#, c-format
msgid "1 minute"
msgstr "1 minuto"
-#: common.pm:154
+#: common.pm:149
#, c-format
msgid "%d seconds"
msgstr "%d sekundoj"
-#: common.pm:260
+#: common.pm:298
#, c-format
-msgid "kdesu missing"
-msgstr "kdesu mankas"
-
-#: common.pm:263
-#, c-format
-msgid "consolehelper missing"
+msgid "command %s missing"
msgstr ""
-#: crypto.pm:13 crypto.pm:48 lang.pm:207 network/adsl_consts.pm:66
-#: network/adsl_consts.pm:75 network/adsl_consts.pm:84
-#, c-format
-msgid "Austria"
-msgstr "Aŭstrio"
-
-#: crypto.pm:14 crypto.pm:47 lang.pm:208 standalone/drakxtv:48
-#, c-format
-msgid "Australia"
-msgstr "Auxstralio"
-
-#: crypto.pm:15 crypto.pm:49 lang.pm:214 network/adsl_consts.pm:93
-#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
-#: network/adsl_consts.pm:123 network/netconnect.pm:44
-#, c-format
-msgid "Belgium"
-msgstr "Belgio"
-
-#: crypto.pm:16 crypto.pm:50 lang.pm:223 network/adsl_consts.pm:132
-#: network/adsl_consts.pm:143 network/adsl_consts.pm:152
-#: network/adsl_consts.pm:161
-#, c-format
-msgid "Brazil"
-msgstr "Brazilo"
-
-#: crypto.pm:17 crypto.pm:51 lang.pm:230
-#, c-format
-msgid "Canada"
-msgstr "Kanado"
-
-#: crypto.pm:18 crypto.pm:74 lang.pm:235 network/adsl_consts.pm:891
-#: network/adsl_consts.pm:900 network/adsl_consts.pm:911
-#, c-format
-msgid "Switzerland"
-msgstr "Svislando"
-
-#: crypto.pm:19 lang.pm:242
-#, c-format
-msgid "Costa Rica"
-msgstr "Kostariko"
-
-#: crypto.pm:20 crypto.pm:52 lang.pm:248 network/adsl_consts.pm:368
-#, c-format
-msgid "Czech Republic"
-msgstr "la Ĉeĥa Respubliko"
-
-#: crypto.pm:21 crypto.pm:57 lang.pm:249 network/adsl_consts.pm:499
-#: network/adsl_consts.pm:508
-#, c-format
-msgid "Germany"
-msgstr "Germanio"
-
-#: crypto.pm:22 crypto.pm:53 lang.pm:251 network/adsl_consts.pm:378
-#, c-format
-msgid "Denmark"
-msgstr "Danlando"
-
-#: crypto.pm:23 crypto.pm:54 lang.pm:256
-#, c-format
-msgid "Estonia"
-msgstr "Estonio"
-
-#: crypto.pm:24 crypto.pm:72 lang.pm:260 network/adsl_consts.pm:759
-#: network/adsl_consts.pm:770 network/adsl_consts.pm:781
-#: network/adsl_consts.pm:792 network/adsl_consts.pm:801
-#: network/adsl_consts.pm:810 network/adsl_consts.pm:819
-#: network/adsl_consts.pm:828 network/adsl_consts.pm:837
-#: network/adsl_consts.pm:846 network/adsl_consts.pm:855
-#: network/adsl_consts.pm:864 network/adsl_consts.pm:873
-#, c-format
-msgid "Spain"
-msgstr "Hispanujo"
-
-#: crypto.pm:25 crypto.pm:55 lang.pm:262 network/adsl_consts.pm:387
-#, c-format
-msgid "Finland"
-msgstr "Finnlando"
-
-#: crypto.pm:26 crypto.pm:56 lang.pm:267 network/adsl_consts.pm:396
-#: network/adsl_consts.pm:408 network/adsl_consts.pm:420
-#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
-#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
-#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
-#: network/netconnect.pm:41
-#, c-format
-msgid "France"
-msgstr "Francio"
-
-#: crypto.pm:27 crypto.pm:58 lang.pm:280 network/adsl_consts.pm:519
-#, c-format
-msgid "Greece"
-msgstr "Grekio"
-
-#: crypto.pm:28 crypto.pm:59 lang.pm:291 network/adsl_consts.pm:528
-#, c-format
-msgid "Hungary"
-msgstr "Hungario"
-
-#: crypto.pm:29 crypto.pm:60 lang.pm:293 network/adsl_consts.pm:537
-#: standalone/drakxtv:47
-#, c-format
-msgid "Ireland"
-msgstr "Irlando"
-
-#: crypto.pm:30 crypto.pm:61 lang.pm:294 network/adsl_consts.pm:546
-#, c-format
-msgid "Israel"
-msgstr "Israelo"
-
-#: crypto.pm:31 crypto.pm:62 lang.pm:300 network/adsl_consts.pm:557
-#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
-#: network/adsl_consts.pm:589 network/netconnect.pm:43 standalone/drakxtv:47
-#, c-format
-msgid "Italy"
-msgstr "Italio"
-
-#: crypto.pm:32 crypto.pm:63 lang.pm:303
-#, c-format
-msgid "Japan"
-msgstr "Japanio"
-
-#: crypto.pm:33 crypto.pm:64 lang.pm:352 network/adsl_consts.pm:620
-#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
-#: network/adsl_consts.pm:647 network/netconnect.pm:42
-#, c-format
-msgid "Netherlands"
-msgstr "Nederlando"
-
-#: crypto.pm:34 crypto.pm:66 lang.pm:353 network/adsl_consts.pm:656
-#: network/adsl_consts.pm:661 network/adsl_consts.pm:666
-#: network/adsl_consts.pm:671 network/adsl_consts.pm:676
-#: network/adsl_consts.pm:681 network/adsl_consts.pm:686
-#, c-format
-msgid "Norway"
-msgstr "Norvegio"
-
-#: crypto.pm:35 crypto.pm:65 lang.pm:357
-#, c-format
-msgid "New Zealand"
-msgstr "Nov-Zelando"
-
-#: crypto.pm:36 crypto.pm:67 lang.pm:365 network/adsl_consts.pm:693
-#: network/adsl_consts.pm:704
-#, c-format
-msgid "Poland"
-msgstr "Pollando"
-
-#: crypto.pm:37 crypto.pm:68 lang.pm:370 network/adsl_consts.pm:716
-#, c-format
-msgid "Portugal"
-msgstr "Portugalujo"
-
-#: crypto.pm:38 crypto.pm:69 lang.pm:376 network/adsl_consts.pm:725
-#, c-format
-msgid "Russia"
-msgstr "Rusio"
-
-#: crypto.pm:39 crypto.pm:73 lang.pm:382 network/adsl_consts.pm:882
-#, c-format
-msgid "Sweden"
-msgstr "Svedio"
-
-#: crypto.pm:40 crypto.pm:70 lang.pm:387
-#, c-format
-msgid "Slovakia"
-msgstr "Slovakujo"
-
-#: crypto.pm:41 crypto.pm:76 lang.pm:401 network/adsl_consts.pm:920
-#, c-format
-msgid "Thailand"
-msgstr "Tajlando"
-
-#: crypto.pm:42 crypto.pm:75 lang.pm:411
-#, c-format
-msgid "Taiwan"
-msgstr "Tajvano"
-
-#: crypto.pm:43 crypto.pm:71 lang.pm:430 standalone/drakxtv:49
-#, c-format
-msgid "South Africa"
-msgstr "Sud-Afriko"
-
-#: crypto.pm:77 crypto.pm:112 lang.pm:416 network/netconnect.pm:45
-#, c-format
-msgid "United States"
-msgstr "Usono"
-
#: diskdrake/dav.pm:17
#, c-format
msgid ""
@@ -1997,23 +1086,46 @@ msgstr ""
msgid "New"
msgstr "Nova"
-#: diskdrake/dav.pm:61 diskdrake/interactive.pm:456 diskdrake/smbnfs_gtk.pm:74
+#: diskdrake/dav.pm:61 diskdrake/interactive.pm:449 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Malmuntu"
-#: diskdrake/dav.pm:62 diskdrake/interactive.pm:453 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:62 diskdrake/interactive.pm:446 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Muntu"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:447
-#: diskdrake/interactive.pm:679 diskdrake/interactive.pm:698
-#: diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:78
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:440
+#: diskdrake/interactive.pm:670 diskdrake/interactive.pm:688
+#: diskdrake/interactive.pm:692 diskdrake/removable.pm:23
+#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Surmetingo"
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:442
+#: diskdrake/interactive.pm:1047 diskdrake/removable.pm:24
+#: diskdrake/smbnfs_gtk.pm:80
+#, c-format
+msgid "Options"
+msgstr "Opcioj"
+
+#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:229
+#: diskdrake/interactive.pm:242 diskdrake/interactive.pm:398
+#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:547
+#: diskdrake/interactive.pm:552 diskdrake/interactive.pm:660
+#: diskdrake/interactive.pm:922 diskdrake/interactive.pm:1092
+#: diskdrake/interactive.pm:1105 diskdrake/interactive.pm:1108
+#: diskdrake/interactive.pm:1348 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:19
+#: do_pkgs.pm:24 do_pkgs.pm:40 do_pkgs.pm:56 do_pkgs.pm:61 fsedit.pm:229
+#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
+#: scanner.pm:94 scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95
+#: wizards.pm:99 wizards.pm:121
+#, c-format
+msgid "Error"
+msgstr "Eraro"
+
#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
@@ -2029,33 +1141,48 @@ msgstr "La URL devas komenci per http:// aŭ https://"
msgid "Server: "
msgstr "Servilo:"
-#: diskdrake/dav.pm:110 diskdrake/interactive.pm:523
-#: diskdrake/interactive.pm:1218 diskdrake/interactive.pm:1296
+#: diskdrake/dav.pm:110 diskdrake/interactive.pm:520
+#: diskdrake/interactive.pm:1230 diskdrake/interactive.pm:1308
#, c-format
msgid "Mount point: "
msgstr "Surmetingo: "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1303
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1315
#, c-format
msgid "Options: %s"
msgstr "Opcioj: %s"
-#: diskdrake/hd_gtk.pm:52 diskdrake/interactive.pm:293
-#: diskdrake/smbnfs_gtk.pm:21 install_interactive.pm:63
-#: install_interactive.pm:217 install_interactive.pm:223
-#: install_interactive.pm:276 install_interactive.pm:281
-#: install_steps_interactive.pm:253 install_steps_interactive.pm:317
-#: steps.pm:21
+#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:286
+#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
+#: fs/partitioning_wizard.pm:47 fs/partitioning_wizard.pm:201
+#: fs/partitioning_wizard.pm:207 fs/partitioning_wizard.pm:247
+#: fs/partitioning_wizard.pm:266 fs/partitioning_wizard.pm:271
#, c-format
msgid "Partitioning"
msgstr "Subdiskigante"
-#: diskdrake/hd_gtk.pm:92
+#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1067
+#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1130
+#, c-format
+msgid "Read carefully!"
+msgstr "Legu zorge"
+
+#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr "Bonvolu fari rezervan kopion de via dateno antaŭe"
-#: diskdrake/hd_gtk.pm:95
+#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:222
+#, c-format
+msgid "Exit"
+msgstr "Eliro"
+
+#: diskdrake/hd_gtk.pm:94
+#, c-format
+msgid "Continue"
+msgstr "Ĉu mi devus daŭri?"
+
+#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
@@ -2066,17 +1193,18 @@ msgstr ""
"sufiĉas)\n"
"ĉe la komenco de la disko"
-#: diskdrake/hd_gtk.pm:152 help.pm:531
+#: diskdrake/hd_gtk.pm:162 interactive.pm:640 interactive/gtk.pm:719
+#: interactive/gtk.pm:740 interactive/gtk.pm:760 ugtk2.pm:923 ugtk2.pm:924
#, c-format
-msgid "Wizard"
-msgstr "Sorĉisto"
+msgid "Help"
+msgstr "Helpo"
-#: diskdrake/hd_gtk.pm:185
+#: diskdrake/hd_gtk.pm:197
#, c-format
msgid "Choose action"
msgstr "Elektu agon"
-#: diskdrake/hd_gtk.pm:189
+#: diskdrake/hd_gtk.pm:201
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -2087,149 +1215,163 @@ msgstr ""
"Mi proponas ke vi unue regrandecigu tiun subdiskon\n"
"(klaku sur ĝin, kaj poste klaku sur \"Regrandecigu\")"
-#: diskdrake/hd_gtk.pm:191
+#: diskdrake/hd_gtk.pm:203
#, c-format
msgid "Please click on a partition"
msgstr "Bonvolu klaki sur subdiskon"
-#: diskdrake/hd_gtk.pm:205 diskdrake/smbnfs_gtk.pm:62 install_steps_gtk.pm:457
-#: standalone/drakbackup:3088 standalone/drakbackup:3148
+#: diskdrake/hd_gtk.pm:217 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Detaloj"
-#: diskdrake/hd_gtk.pm:251
+#: diskdrake/hd_gtk.pm:265
#, c-format
msgid "No hard drives found"
msgstr "Neniaj durdiskoj trovitaj"
+#: diskdrake/hd_gtk.pm:292
+#, c-format
+msgid "Unknown"
+msgstr "Nekonata"
+
# this entry must not be too long, or the window gets tooooo wiiiiiide
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Ext2"
msgstr "Ext2"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Journalised FS"
msgstr "Journalised FS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Swap"
msgstr "Interŝanĝa"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "SunOS"
msgstr "SunOS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "HFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:335
+#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Windows"
msgstr "Vindozo"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1233
+#: diskdrake/hd_gtk.pm:352 services.pm:149
+#, c-format
+msgid "Other"
+msgstr "Alia"
+
+#: diskdrake/hd_gtk.pm:352 diskdrake/interactive.pm:1244
#, c-format
msgid "Empty"
msgstr "Malplena"
-#: diskdrake/hd_gtk.pm:340
+#: diskdrake/hd_gtk.pm:356
#, c-format
msgid "Filesystem types:"
msgstr "Specoj de dosiersistemoj:"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:359 diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:291
+#: diskdrake/interactive.pm:392 diskdrake/interactive.pm:428
+#: diskdrake/interactive.pm:577 diskdrake/interactive.pm:751
+#: diskdrake/interactive.pm:809 diskdrake/interactive.pm:902
+#: diskdrake/interactive.pm:944 diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:1173 diskdrake/interactive.pm:1211
+#: diskdrake/interactive.pm:1347 do_pkgs.pm:16 do_pkgs.pm:35 do_pkgs.pm:53
+#: harddrake/sound.pm:279
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Uzu ``%s'' anstataŭe"
+msgid "Warning"
+msgstr "Averto"
-#: diskdrake/hd_gtk.pm:357 diskdrake/interactive.pm:472
-#, c-format
-msgid "Create"
-msgstr "Kreu"
+#: diskdrake/hd_gtk.pm:380
+#, fuzzy, c-format
+msgid "This partition is already empty"
+msgstr "Ĉi tiu subdisko ne estas regrandecigebla"
-#: diskdrake/hd_gtk.pm:357 diskdrake/hd_gtk.pm:365
-#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:625
-#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
-#: standalone/harddrake2:108 standalone/harddrake2:117
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Type"
-msgstr "Tipo"
+msgid "Use ``Unmount'' first"
+msgstr "Uzu ``Malmuntu'' antaŭe"
-#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: diskdrake/hd_gtk.pm:359 diskdrake/interactive.pm:457
-#: standalone/drakperm:123 standalone/printerdrake:248
+#: diskdrake/hd_gtk.pm:389
#, c-format
-msgid "Delete"
-msgstr "Forigu"
+msgid "Use ``%s'' instead"
+msgstr "Uzu ``%s'' anstataŭe"
-#: diskdrake/hd_gtk.pm:365
+#: diskdrake/hd_gtk.pm:389 diskdrake/interactive.pm:441
+#: diskdrake/interactive.pm:611 diskdrake/interactive.pm:1083
+#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Uzu ``Malmuntu'' antaŭe"
+msgid "Type"
+msgstr "Tipo"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose another partition"
msgstr "Elektu alian subdiskon"
-#: diskdrake/interactive.pm:195
+#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose a partition"
msgstr "Elektu subdiskon"
-#: diskdrake/interactive.pm:224
-#, c-format
-msgid "Exit"
-msgstr "Eliro"
-
-#: diskdrake/interactive.pm:257 help.pm:531
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Undo"
msgstr "Malfaru"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to normal mode"
msgstr "Ŝanĝu al Normala reĝimo"
-#: diskdrake/interactive.pm:257
+#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to expert mode"
msgstr "Ŝanĝu al Spertula reĝimo"
-#: diskdrake/interactive.pm:276
+#: diskdrake/interactive.pm:269 diskdrake/interactive.pm:279
+#: diskdrake/interactive.pm:1158
+#, fuzzy, c-format
+msgid "Confirmation"
+msgstr "Konfigurado"
+
+#: diskdrake/interactive.pm:269
#, c-format
msgid "Continue anyway?"
msgstr "Ĉu mi devus daŭri malgraŭe?"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without saving"
msgstr "Ĉu eliru sen konservi"
-#: diskdrake/interactive.pm:281
+#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Ĉu eliru sen skribi la subdisktabelon?"
-#: diskdrake/interactive.pm:286
+#: diskdrake/interactive.pm:279
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ĉu vi deziras konservi la modifojn en /etc/fstab?"
-#: diskdrake/interactive.pm:293 install_steps_interactive.pm:317
+#: diskdrake/interactive.pm:286 fs/partitioning_wizard.pm:247
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Vi bezonas restarti por la ŝanĝoj al la subdisktabelo efektivigi"
-#: diskdrake/interactive.pm:298
+#: diskdrake/interactive.pm:291
#, c-format
msgid ""
"You should format partition %s.\n"
@@ -2237,38 +1379,38 @@ msgid ""
"Quit anyway?"
msgstr ""
-#: diskdrake/interactive.pm:311 help.pm:531
+#: diskdrake/interactive.pm:304
#, c-format
msgid "Clear all"
msgstr "Forviŝu ĉion"
-#: diskdrake/interactive.pm:312 help.pm:531
+#: diskdrake/interactive.pm:305
#, c-format
msgid "Auto allocate"
msgstr "Aŭtomate disponigu"
-#: diskdrake/interactive.pm:313 help.pm:531 help.pm:567 help.pm:607
-#: help.pm:856 install_steps_interactive.pm:98
+#: diskdrake/interactive.pm:306 diskdrake/interactive.pm:360
+#: interactive/curses.pm:457
#, c-format
msgid "More"
msgstr "Plu"
-#: diskdrake/interactive.pm:318
+#: diskdrake/interactive.pm:311
#, c-format
msgid "Hard drive information"
msgstr "Informoj pri fiksdisko(j)"
-#: diskdrake/interactive.pm:350
+#: diskdrake/interactive.pm:343
#, c-format
msgid "All primary partitions are used"
msgstr "Ĉiuj el la subdiskoj estas uzata"
-#: diskdrake/interactive.pm:351
+#: diskdrake/interactive.pm:344
#, c-format
msgid "I can not add any more partitions"
msgstr "Mi ne povas aldoni plu da subdiskoj"
-#: diskdrake/interactive.pm:352
+#: diskdrake/interactive.pm:345
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
@@ -2277,52 +1419,52 @@ msgstr ""
"Por havi plu da subdiskoj, bonvole forigu unu por povi krei etendigitan\n"
"subdiskon"
-#: diskdrake/interactive.pm:361
+#: diskdrake/interactive.pm:354
#, c-format
msgid "No supermount"
msgstr ""
-#: diskdrake/interactive.pm:362
+#: diskdrake/interactive.pm:355
#, c-format
msgid "Supermount"
msgstr ""
-#: diskdrake/interactive.pm:363
+#: diskdrake/interactive.pm:356
#, c-format
msgid "Supermount except for CDROM drives"
msgstr ""
-#: diskdrake/interactive.pm:369 help.pm:531
+#: diskdrake/interactive.pm:362
#, c-format
msgid "Save partition table"
msgstr "Konservu la subdiskotabelon"
-#: diskdrake/interactive.pm:370 help.pm:531
+#: diskdrake/interactive.pm:363
#, c-format
msgid "Restore partition table"
msgstr "Restaŭru subdiskotabelon"
-#: diskdrake/interactive.pm:371 help.pm:531
+#: diskdrake/interactive.pm:364
#, c-format
msgid "Rescue partition table"
msgstr "Sava subdiskotabelo"
-#: diskdrake/interactive.pm:373 help.pm:531
+#: diskdrake/interactive.pm:366
#, c-format
msgid "Reload partition table"
msgstr "Reŝargu subdiskotabelon"
-#: diskdrake/interactive.pm:375
+#: diskdrake/interactive.pm:368
#, c-format
msgid "Removable media automounting"
msgstr "Aŭtomata kroĉado de demeteblaj aparatoj"
-#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:414
+#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:407
#, c-format
msgid "Select file"
msgstr "Elektu dosieron"
-#: diskdrake/interactive.pm:400
+#: diskdrake/interactive.pm:393
#, c-format
msgid ""
"The backup partition table has not the same size\n"
@@ -2331,87 +1473,97 @@ msgstr ""
"La rezerva subdisktabelo ne estas la sama grandeco\n"
"Ĉu daŭras tamen?"
-#: diskdrake/interactive.pm:429
+#: diskdrake/interactive.pm:422
#, c-format
msgid "Trying to rescue partition table"
msgstr "Provas savi subdisktabelon"
-#: diskdrake/interactive.pm:435
+#: diskdrake/interactive.pm:428
#, c-format
msgid "Detailed information"
msgstr "Detala informo"
-#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:444 diskdrake/interactive.pm:764
#, c-format
msgid "Resize"
msgstr "Regrandecigu"
-#: diskdrake/interactive.pm:452
+#: diskdrake/interactive.pm:445
#, c-format
msgid "Format"
msgstr "Formatu"
-#: diskdrake/interactive.pm:454
+#: diskdrake/interactive.pm:447 diskdrake/interactive.pm:850
#, c-format
msgid "Add to RAID"
msgstr "Aldonu al RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: diskdrake/interactive.pm:455
+#: diskdrake/interactive.pm:448 diskdrake/interactive.pm:867
#, c-format
msgid "Add to LVM"
msgstr "Aldonu al LVM (Redundanca Aro de Malmultekostaj Diskoj)"
-#: diskdrake/interactive.pm:458
+#: diskdrake/interactive.pm:450
+#, c-format
+msgid "Delete"
+msgstr "Forigu"
+
+#: diskdrake/interactive.pm:451
#, c-format
msgid "Remove from RAID"
msgstr "Forigu de RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: diskdrake/interactive.pm:459
+#: diskdrake/interactive.pm:452
#, c-format
msgid "Remove from LVM"
msgstr "Forigu de LVM (Redundanca Aro de Malmultekostaj Diskoj)"
-#: diskdrake/interactive.pm:460
+#: diskdrake/interactive.pm:453
#, c-format
msgid "Modify RAID"
msgstr "Ŝanĝu RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: diskdrake/interactive.pm:461
+#: diskdrake/interactive.pm:454
#, c-format
msgid "Use for loopback"
msgstr "Uzu por retrokonektado"
-#: diskdrake/interactive.pm:516
+#: diskdrake/interactive.pm:465
+#, c-format
+msgid "Create"
+msgstr "Kreu"
+
+#: diskdrake/interactive.pm:509 diskdrake/interactive.pm:511
#, c-format
msgid "Create a new partition"
msgstr "Kreu novan subdiskon"
-#: diskdrake/interactive.pm:519
+#: diskdrake/interactive.pm:513
#, c-format
msgid "Start sector: "
msgstr "Komenca sektoro: "
-#: diskdrake/interactive.pm:521 diskdrake/interactive.pm:938
+#: diskdrake/interactive.pm:516 diskdrake/interactive.pm:937
#, c-format
msgid "Size in MB: "
msgstr "Grandeco en MB: "
-#: diskdrake/interactive.pm:522 diskdrake/interactive.pm:939
+#: diskdrake/interactive.pm:518 diskdrake/interactive.pm:938
#, c-format
msgid "Filesystem type: "
msgstr "Speco de dosiersistemo: "
-#: diskdrake/interactive.pm:527
+#: diskdrake/interactive.pm:524
#, c-format
msgid "Preference: "
msgstr "Prefero: "
-#: diskdrake/interactive.pm:530
+#: diskdrake/interactive.pm:527
#, fuzzy, c-format
msgid "Logical volume name "
msgstr "Lokaj dosieroj"
-#: diskdrake/interactive.pm:560
+#: diskdrake/interactive.pm:547
#, c-format
msgid ""
"You can not create a new partition\n"
@@ -2422,12 +1574,12 @@ msgstr ""
"(ĉar vi atingis la maksimuman nombron da primaraj subdiskoj).\n"
"Unue forigu primaran subdiskon kaj kreu etenditan subdiskon."
-#: diskdrake/interactive.pm:590
+#: diskdrake/interactive.pm:577
#, c-format
msgid "Remove the loopback file?"
msgstr "Ĉu forigu la retrokonektan dosieron?"
-#: diskdrake/interactive.pm:609
+#: diskdrake/interactive.pm:596
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -2436,37 +1588,42 @@ msgstr ""
"estos\n"
"perdata"
-#: diskdrake/interactive.pm:621
+#: diskdrake/interactive.pm:608
#, c-format
msgid "Change partition type"
msgstr "Ŝanĝu subdiskspecon"
-#: diskdrake/interactive.pm:622 diskdrake/removable.pm:47
+#: diskdrake/interactive.pm:610 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Kiun dosierosistemo vi deziras uzi?"
-#: diskdrake/interactive.pm:630
+#: diskdrake/interactive.pm:617
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "Ŝaltas de ext2 al ext3"
-#: diskdrake/interactive.pm:650
+#: diskdrake/interactive.pm:637 diskdrake/interactive.pm:640
#, c-format
msgid "Which volume label?"
msgstr ""
-#: diskdrake/interactive.pm:666
+#: diskdrake/interactive.pm:641
+#, fuzzy, c-format
+msgid "Label:"
+msgstr "Etikedo"
+
+#: diskdrake/interactive.pm:655
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Kie vi deziras kroĉi retrokonektan dosieron %s?"
-#: diskdrake/interactive.pm:667
+#: diskdrake/interactive.pm:656
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kie vi deziras munti aparato %s?"
-#: diskdrake/interactive.pm:672
+#: diskdrake/interactive.pm:661
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
@@ -2475,294 +1632,305 @@ msgstr ""
"Ne povas malfiksi surmetingon ĉar ĉi tiu subdisko estas uzata por\n"
"retrokonektado. Unue forigu la retrokonektadon."
-#: diskdrake/interactive.pm:697
+#: diskdrake/interactive.pm:691
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Kie vi deziras kroĉi aparaton %s?"
-#: diskdrake/interactive.pm:721 diskdrake/interactive.pm:800
-#: install_interactive.pm:157 install_interactive.pm:189
+#: diskdrake/interactive.pm:715 diskdrake/interactive.pm:798
+#: fs/partitioning_wizard.pm:141 fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing"
msgstr "Regrandecigas"
-#: diskdrake/interactive.pm:721
+#: diskdrake/interactive.pm:715
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Kalkulas FAT dosiersistemajn limojn"
-#: diskdrake/interactive.pm:757
+#: diskdrake/interactive.pm:751
#, c-format
msgid "This partition is not resizeable"
msgstr "Ĉi tiu subdisko ne estas regrandecigebla"
-#: diskdrake/interactive.pm:762
+#: diskdrake/interactive.pm:756
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Ĉiuj datenoj en ĉi tiu subdisko devus esti rezervata"
-#: diskdrake/interactive.pm:764
+#: diskdrake/interactive.pm:758
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Post vi regrandecigas subdiskon %s, ĉiuj datenoj en ĉi tiu subdisko estos\n"
"perdata"
-#: diskdrake/interactive.pm:769
+#: diskdrake/interactive.pm:765
#, c-format
msgid "Choose the new size"
msgstr "Elektu la novan grandecon"
-#: diskdrake/interactive.pm:770
+#: diskdrake/interactive.pm:766
#, c-format
msgid "New size in MB: "
msgstr "Nova grandeco en MB: "
-#: diskdrake/interactive.pm:811 install_interactive.pm:197
+#: diskdrake/interactive.pm:767
+#, c-format
+msgid "Minimum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:768
+#, c-format
+msgid "Maximum size: %s MB"
+msgstr ""
+
+#: diskdrake/interactive.pm:809 fs/partitioning_wizard.pm:181
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
"filesystem checks will be run on your next boot into Microsoft Windows®"
msgstr ""
-#: diskdrake/interactive.pm:852
+#: diskdrake/interactive.pm:850
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Elektu ekzistantan RAID por aldoni"
-#: diskdrake/interactive.pm:854 diskdrake/interactive.pm:871
+#: diskdrake/interactive.pm:852 diskdrake/interactive.pm:869
#, c-format
msgid "new"
msgstr "nova"
-#: diskdrake/interactive.pm:869
+#: diskdrake/interactive.pm:867
#, c-format
msgid "Choose an existing LVM to add to"
msgstr ""
"Elektu ekzistantan RAID (Redundanca Aro de Malmultekostaj Diskoj) por\n"
"aldoni al"
-#: diskdrake/interactive.pm:875
+#: diskdrake/interactive.pm:874
#, c-format
msgid "LVM name?"
msgstr "LVM-nomo?"
-#: diskdrake/interactive.pm:903
+#: diskdrake/interactive.pm:902
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
"Do you want to move used physical extents on this volume to other volumes?"
msgstr ""
-#: diskdrake/interactive.pm:905
+#: diskdrake/interactive.pm:904
#, c-format
msgid "Moving physical extents"
msgstr ""
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:922
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Vi ne povas uzi ĉi tiun subdiskon por retrokonektado"
-#: diskdrake/interactive.pm:936
+#: diskdrake/interactive.pm:935
#, c-format
msgid "Loopback"
msgstr "Retrokonektado"
-#: diskdrake/interactive.pm:937
+#: diskdrake/interactive.pm:936
#, c-format
msgid "Loopback file name: "
msgstr "Retrokonekta dosieronomo: "
-#: diskdrake/interactive.pm:942
+#: diskdrake/interactive.pm:941
#, c-format
msgid "Give a file name"
msgstr "Donu dosiernomon"
-#: diskdrake/interactive.pm:945
+#: diskdrake/interactive.pm:944
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Dosiero jam uzata de alia retrokonektado, elektu alian"
-#: diskdrake/interactive.pm:946
+#: diskdrake/interactive.pm:945
#, c-format
msgid "File already exists. Use it?"
msgstr "Dosiero jam ekzistas. Ĉu vi deziras uzi ĝin?"
-#: diskdrake/interactive.pm:969
+#: diskdrake/interactive.pm:974 diskdrake/interactive.pm:977
#, c-format
msgid "Mount options"
msgstr "Kroĉ-opcioj"
-#: diskdrake/interactive.pm:976
+#: diskdrake/interactive.pm:984
#, c-format
msgid "Various"
msgstr "Diversaj"
-#: diskdrake/interactive.pm:1044
+#: diskdrake/interactive.pm:1049
#, c-format
msgid "device"
msgstr "aparato"
-#: diskdrake/interactive.pm:1045
+#: diskdrake/interactive.pm:1050
#, c-format
msgid "level"
msgstr "nivelo"
-#: diskdrake/interactive.pm:1046
+#: diskdrake/interactive.pm:1051
#, fuzzy, c-format
msgid "chunk size in KiB"
msgstr "grandeco de pecoj"
-#: diskdrake/interactive.pm:1063
+#: diskdrake/interactive.pm:1068
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Zorgu: ĉi tiu operacio estas danĝera."
-#: diskdrake/interactive.pm:1078
+#: diskdrake/interactive.pm:1083
#, c-format
msgid "What type of partitioning?"
msgstr "Kiun specon de subdiskado?"
-#: diskdrake/interactive.pm:1116
+#: diskdrake/interactive.pm:1121
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Vi bezonos restarti antaŭ ol la ŝanĝo povas efektiviĝi"
-#: diskdrake/interactive.pm:1125
+#: diskdrake/interactive.pm:1130
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "La subdisktabelo de drajvo %s estos skribata al disko!"
-#: diskdrake/interactive.pm:1148
+#: diskdrake/interactive.pm:1153
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Post vi formatas la subdiskon %s, ĉiuj datenoj en ĉi tiu subdisko estos\n"
"perdata"
-#: diskdrake/interactive.pm:1164
+#: diskdrake/interactive.pm:1158 fs/partitioning.pm:49
+#, c-format
+msgid "Check bad blocks?"
+msgstr "Ĉu kontrolas malbonajn blokojn?"
+
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Move files to the new partition"
msgstr "Movu dosierojn al la nova subdisko"
-#: diskdrake/interactive.pm:1164 standalone/draksambashare:81
-#: standalone/draksambashare:144
+#: diskdrake/interactive.pm:1172
#, c-format
msgid "Hide files"
msgstr "Kaŝu dosierojn"
-#: diskdrake/interactive.pm:1165
+#: diskdrake/interactive.pm:1173
#, c-format
msgid ""
"Directory %s already contains data\n"
-"(%s)"
+"(%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 ""
-"Dosierujo %s entenas jam datenojn\n"
-"(%s)"
-#: diskdrake/interactive.pm:1176
+#: diskdrake/interactive.pm:1188
#, c-format
msgid "Moving files to the new partition"
msgstr "Mi movas dosierojn al la nova subdisko"
-#: diskdrake/interactive.pm:1180
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "Copying %s"
msgstr "Kopianta %s"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1196
#, c-format
msgid "Removing %s"
msgstr "Mi forigas %s"
-#: diskdrake/interactive.pm:1198
+#: diskdrake/interactive.pm:1210
#, c-format
msgid "partition %s is now known as %s"
msgstr "subdisko %s estas nun konata kiel %s"
-#: diskdrake/interactive.pm:1199
+#: diskdrake/interactive.pm:1211
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""
-#: diskdrake/interactive.pm:1219 diskdrake/interactive.pm:1281
+#: diskdrake/interactive.pm:1231 diskdrake/interactive.pm:1293
#, c-format
msgid "Device: "
msgstr "Aparato: "
-#: diskdrake/interactive.pm:1220
-#, fuzzy, c-format
-msgid "Devfs name: "
-msgstr "Poŝtejo: "
-
-#: diskdrake/interactive.pm:1221
+#: diskdrake/interactive.pm:1232
#, c-format
msgid "Volume label: "
msgstr ""
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1233
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-a diskingolitero: %s (nur konjekto)\n"
-#: diskdrake/interactive.pm:1226 diskdrake/interactive.pm:1235
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1237 diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1311
#, c-format
msgid "Type: "
msgstr "Speco: "
-#: diskdrake/interactive.pm:1230 install_steps_gtk.pm:300
+#: diskdrake/interactive.pm:1241
#, c-format
msgid "Name: "
msgstr "Nomo: "
-#: diskdrake/interactive.pm:1237
+#: diskdrake/interactive.pm:1248
#, c-format
msgid "Start: sector %s\n"
msgstr "Komenco: sektoro %s\n"
-#: diskdrake/interactive.pm:1238
+#: diskdrake/interactive.pm:1249
#, c-format
msgid "Size: %s"
msgstr "Grandeco: %s"
-#: diskdrake/interactive.pm:1240
+#: diskdrake/interactive.pm:1251
#, c-format
msgid ", %s sectors"
msgstr ", %s sektoroj"
-#: diskdrake/interactive.pm:1242
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "cilindro %d ĝis cilindro %d\n"
-#: diskdrake/interactive.pm:1243
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Formatted\n"
msgstr "Formatita\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "Not formatted\n"
msgstr "Ne formatita\n"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Mounted\n"
msgstr "Muntita\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "RAID %s\n"
msgstr "RAID (Redundanca Aro de Malmultekostaj Diskoj) %s\n"
-#: diskdrake/interactive.pm:1252
+#: diskdrake/interactive.pm:1263
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2771,7 +1939,7 @@ msgstr ""
"Retrokonekta(j) dosiero(j):\n"
"...%s\n"
-#: diskdrake/interactive.pm:1253
+#: diskdrake/interactive.pm:1264
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2780,27 +1948,27 @@ msgstr ""
"Subdisko startata defaŭlte\n"
" (por MS-DOS starto, ne por \"lilo\")\n"
-#: diskdrake/interactive.pm:1255
+#: diskdrake/interactive.pm:1266
#, c-format
msgid "Level %s\n"
msgstr "Nivelo %s\n"
-#: diskdrake/interactive.pm:1256
+#: diskdrake/interactive.pm:1267
#, fuzzy, c-format
msgid "Chunk size %d KiB\n"
msgstr "Grandeco de pecoj %s\n"
-#: diskdrake/interactive.pm:1257
+#: diskdrake/interactive.pm:1268
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-aj (Redundanca Aro de Malmultekostaj Diskoj) diskoj %s\n"
-#: diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1270
#, c-format
msgid "Loopback file name: %s"
msgstr "Retrokonekta dosieronomo: %s"
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1273
#, c-format
msgid ""
"\n"
@@ -2813,7 +1981,7 @@ msgstr ""
"pelila subdisko. Prefere\n"
"lasu ĝin sola.\n"
-#: diskdrake/interactive.pm:1265
+#: diskdrake/interactive.pm:1276
#, c-format
msgid ""
"\n"
@@ -2822,75 +1990,78 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: diskdrake/interactive.pm:1282
+#: diskdrake/interactive.pm:1285
+#, c-format
+msgid "Empty space on %s (%s)"
+msgstr ""
+
+#: diskdrake/interactive.pm:1294
#, c-format
msgid "Read-only"
msgstr "Nur-lege"
-#: diskdrake/interactive.pm:1283
+#: diskdrake/interactive.pm:1295
#, c-format
msgid "Size: %s\n"
msgstr "Grandeco: %s\n"
-#: diskdrake/interactive.pm:1284
+#: diskdrake/interactive.pm:1296
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrio: %s cilindroj, %s kapoj, %s sektoroj\n"
-#: diskdrake/interactive.pm:1285 network/thirdparty.pm:331
+#: diskdrake/interactive.pm:1297
#, c-format
msgid "Info: "
msgstr "Informo: "
-#: diskdrake/interactive.pm:1286
+#: diskdrake/interactive.pm:1298
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-aj (Redundanca Aro de Malmultekostaj Diskoj) diskoj %s\n"
-#: diskdrake/interactive.pm:1287
+#: diskdrake/interactive.pm:1299
#, c-format
msgid "Partition table type: %s\n"
msgstr "Subdiskotabelospeco: %s\n"
-#: diskdrake/interactive.pm:1288
+#: diskdrake/interactive.pm:1300
#, c-format
msgid "on channel %d id %d\n"
msgstr "ĉe kanalo %d identigaĵo %d\n"
-#: diskdrake/interactive.pm:1331
+#: diskdrake/interactive.pm:1343
#, fuzzy, c-format
msgid "Filesystem encryption key"
msgstr "Speco de dosiersistemo: "
-#: diskdrake/interactive.pm:1332
+#: diskdrake/interactive.pm:1344
#, c-format
msgid "Choose your filesystem encryption key"
msgstr ""
-#: diskdrake/interactive.pm:1335
+#: diskdrake/interactive.pm:1347
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ĉi tiu pasvorto ests tro simpla (ĝi devas esti almenaŭ %d signoj longa)"
-#: diskdrake/interactive.pm:1336
+#: diskdrake/interactive.pm:1348
#, fuzzy, c-format
msgid "The encryption keys do not match"
msgstr "La pasvortoj ne egalas"
-#: diskdrake/interactive.pm:1339 network/netconnect.pm:1073
-#: standalone/drakconnect:419 standalone/drakroam:120
+#: diskdrake/interactive.pm:1351
#, c-format
msgid "Encryption key"
msgstr "Ĉifroŝlosilo:"
-#: diskdrake/interactive.pm:1340
+#: diskdrake/interactive.pm:1352
#, c-format
msgid "Encryption key (again)"
msgstr ""
-#: diskdrake/interactive.pm:1342 standalone/drakvpn:1017
-#: standalone/drakvpn:1102
+#: diskdrake/interactive.pm:1354
#, fuzzy, c-format
msgid "Encryption algorithm"
msgstr "Aŭtentikigado"
@@ -2900,27 +2071,35 @@ msgstr "Aŭtentikigado"
msgid "Change type"
msgstr "Ŝanĝu specon"
-#: diskdrake/smbnfs_gtk.pm:163
+#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:539
+#: interactive/curses.pm:214 interactive/http.pm:104 interactive/http.pm:160
+#: interactive/stdio.pm:39 interactive/stdio.pm:142 ugtk2.pm:404 ugtk2.pm:506
+#: ugtk2.pm:515 ugtk2.pm:788
+#, c-format
+msgid "Cancel"
+msgstr "Nuligu"
+
+#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr "Ne povas akcepti uzante uzulnomon %s (ĉu malĝusta pasvorto?)"
-#: diskdrake/smbnfs_gtk.pm:167 diskdrake/smbnfs_gtk.pm:176
+#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Aŭtentikigado de domajno postulata"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Kiu salutnomo"
-#: diskdrake/smbnfs_gtk.pm:168
+#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Iu alia"
-#: diskdrake/smbnfs_gtk.pm:177
+#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
@@ -2928,85 +2107,82 @@ msgstr ""
"Bonvole tajpu vian uzulnomon, pasvorton kaj domajn-nomon por aliri al tiu "
"gastiganto."
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3640
+#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Uzulnomo"
-#: diskdrake/smbnfs_gtk.pm:205
+#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Serĉu servilojn"
-#: diskdrake/smbnfs_gtk.pm:210
+#: diskdrake/smbnfs_gtk.pm:211
#, fuzzy, c-format
msgid "Search new servers"
msgstr "Serĉu servilojn"
-#: do_pkgs.pm:16 do_pkgs.pm:49
+#: do_pkgs.pm:16 do_pkgs.pm:53
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Ĉi tiu pakaĵo %s devas esti instalita. Ĉu vi deziras instali ĝin?"
-#: do_pkgs.pm:19 do_pkgs.pm:39 do_pkgs.pm:52 printer/printerdrake.pm:3948
+#: do_pkgs.pm:19 do_pkgs.pm:40 do_pkgs.pm:56
#, fuzzy, c-format
msgid "Could not install the %s package!"
msgstr "Instalanta pakaĵo %s"
-#: do_pkgs.pm:24 do_pkgs.pm:57
+#: do_pkgs.pm:24 do_pkgs.pm:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: do_pkgs.pm:35 harddrake/sound.pm:278 install_steps_interactive.pm:1288
-#: keyboard.pm:381 network/ndiswrapper.pm:95 network/netconnect.pm:471
-#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2495
-#: printer/printerdrake.pm:2632 printer/printerdrake.pm:2953
-#: printer/printerdrake.pm:2960 printer/printerdrake.pm:3947
-#: printer/printerdrake.pm:4211 printer/printerdrake.pm:4330
-#: printer/printerdrake.pm:5487 standalone/drakTermServ:354
-#: standalone/drakTermServ:1267 standalone/drakTermServ:1328
-#: standalone/drakTermServ:2006 standalone/drakbackup:510
-#: standalone/drakbackup:609 standalone/drakboot:133 standalone/drakclock:224
-#: standalone/drakconnect:973 standalone/drakfont:679 standalone/drakperm:380
-#: standalone/drakperm:390 standalone/drakups:27 standalone/harddrake2:510
-#: standalone/harddrake2:526 standalone/localedrake:43
-#: standalone/scannerdrake:51 standalone/scannerdrake:957
-#, c-format
-msgid "Warning"
-msgstr "Averto"
-
-#: do_pkgs.pm:35 standalone/harddrake2:526
+#: do_pkgs.pm:35
#, fuzzy, c-format
msgid "The following packages need to be installed:\n"
msgstr "La sekvaj pakaĵoj estos instalataj"
-#: do_pkgs.pm:205
+#: do_pkgs.pm:209
#, c-format
msgid "Installing packages..."
msgstr "Instalanta pakaĵojn..."
-#: do_pkgs.pm:252
+#: do_pkgs.pm:255
#, fuzzy, c-format
msgid "Removing packages..."
msgstr "Distingivo: %s\n"
-#: fs/format.pm:58 fs/format.pm:65
+#: fs/any.pm:17
+#, c-format
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Eraro okazis - neniuj validaj aparatoj estis trovata sur kiuj vi povas krei "
+"novajn dosiersistemojn. Bonvolu kontroli vian ekipaĵon por la kaŭzo de ĉi "
+"tiu problemo."
+
+#: fs/any.pm:62 fs/partitioning_wizard.pm:55
+#, c-format
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Vi devas havi FAT-subdiskon en /boot/efi"
+
+#: fs/format.pm:59 fs/format.pm:66
#, c-format
msgid "Formatting partition %s"
msgstr "Formatas subdiskon %s"
-#: fs/format.pm:62
+#: fs/format.pm:63
#, c-format
msgid "Creating and formatting file %s"
msgstr "Kreas kaj formatas dosieron %s"
-#: fs/format.pm:115
+#: fs/format.pm:116
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "ne scias kiel formati %s kiel speco %s"
-#: fs/format.pm:120 fs/format.pm:122
+#: fs/format.pm:121 fs/format.pm:123
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatado de %s malsukcesis"
@@ -3016,27 +2192,27 @@ msgstr "%s formatado de %s malsukcesis"
msgid "Circular mounts %s\n"
msgstr "Cirklaj surmetingoj %s\n"
-#: fs/mount.pm:74
+#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "Enkroĉas subdiskon %s"
-#: fs/mount.pm:75
+#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: fs/mount.pm:80 fs/mount.pm:97
+#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "Kontrolanta %s"
-#: fs/mount.pm:113 partition_table.pm:385
+#: fs/mount.pm:118 partition_table.pm:384
#, c-format
msgid "error unmounting %s: %s"
msgstr "eraro dum malmunti %s: %s"
-#: fs/mount.pm:142
+#: fs/mount.pm:133
#, c-format
msgid "Enabling swap partition %s"
msgstr "Ebligas swap-subdiskon %s"
@@ -3098,35 +2274,308 @@ msgstr ""
#: fs/mount_options.pm:139
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow every user to mount and umount the file system."
msgstr ""
#: fs/mount_options.pm:141
#, c-format
-msgid "Enable user disk quota accounting, and optionally enforce limits"
+msgid "Allow an ordinary user to mount the file system."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Support user. extended attributes"
+msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""
#: fs/mount_options.pm:145
#, c-format
-msgid "Give write access to ordinary users"
+msgid "Support \"user.\" extended attributes"
msgstr ""
#: fs/mount_options.pm:147
#, c-format
+msgid "Give write access to ordinary users"
+msgstr ""
+
+#: fs/mount_options.pm:149
+#, c-format
msgid "Give read-only access to ordinary users"
msgstr ""
-#: fs/type.pm:363
+#: fs/mount_point.pm:80
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Duobla surmetingo %s"
+
+#: fs/mount_point.pm:95
+#, c-format
+msgid "No partition available"
+msgstr "neniuj haveblaj subdiskoj"
+
+#: fs/mount_point.pm:98
+#, c-format
+msgid "Scanning partitions to find mount points"
+msgstr "Leganta subdiskojn por trovi kroĉpunktojn"
+
+#: fs/mount_point.pm:105
+#, c-format
+msgid "Choose the mount points"
+msgstr "Elektu surmetingojn"
+
+#: fs/partitioning.pm:46
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "Elektu la subdiskoj kiuj vi deziras formati"
+
+#: fs/partitioning.pm:76
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+"Mi malsukcesis kontroli la dosiersistemon %s. Ĉu vi deziras ripari la "
+"erarojn? (atentu, vi povas perdi datenojn)"
+
+#: fs/partitioning.pm:79
+#, c-format
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Nesufiĉa interŝanĝospaco por plenumi instalado, bonvolu aldoni iom"
+
+#: fs/partitioning_wizard.pm:47
+#, c-format
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"Vi devas havi radikan subdiskon.\n"
+"Por ĉi tiu, kreu subdiskon (aŭ klaku estantan).\n"
+"Sekve elektu la agon \"Surmetingo\" kaj faru ĝin '/'"
+
+#: fs/partitioning_wizard.pm:52
+#, c-format
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+"Vi ne havas interŝanĝan subdiskon\n"
+"\n"
+"Ĉu vi deziras daŭri tamen?"
+
+#: fs/partitioning_wizard.pm:80
+#, c-format
+msgid "Use free space"
+msgstr "Uzu liberan spacon"
+
+#: fs/partitioning_wizard.pm:82
+#, c-format
+msgid "Not enough free space to allocate new partitions"
+msgstr "Mankas sufiĉan da libera spaco por disponigi novajn subdiskojn"
+
+#: fs/partitioning_wizard.pm:90
+#, c-format
+msgid "Use existing partitions"
+msgstr "Uzu ekzistantajn subdiskojn"
+
+#: fs/partitioning_wizard.pm:92
+#, c-format
+msgid "There is no existing partition to use"
+msgstr "Ne ekzistas subdiskojn por uzi"
+
+#: fs/partitioning_wizard.pm:99
+#, c-format
+msgid "Use the Microsoft Windows® partition for loopback"
+msgstr "Uzu la Vindoza subdiskon por retrokonektado"
+
+#: fs/partitioning_wizard.pm:102
+#, c-format
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Kiun subdiskon vi deziras uzi por Linux4Win?"
+
+#: fs/partitioning_wizard.pm:104
+#, c-format
+msgid "Choose the sizes"
+msgstr "Elektu la grandecojn"
+
+#: fs/partitioning_wizard.pm:105
+#, c-format
+msgid "Root partition size in MB: "
+msgstr "Radikosubdiska grandeco en MB: "
+
+#: fs/partitioning_wizard.pm:106
+#, c-format
+msgid "Swap partition size in MB: "
+msgstr "Interŝanĝa subdiska grandeco en MB: "
+
+#: fs/partitioning_wizard.pm:115
+#, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+"Ne ekzistas FAT-a subdiskoj por regrandecigi\n"
+"aŭ uzi kiel retrokonektaj subdiskoj (aŭ ne estas sufiĉa da spaco)spaco)"
+
+#: fs/partitioning_wizard.pm:122
+#, c-format
+msgid "Use the free space on the Microsoft Windows® partition"
+msgstr "Uzu la liberan spacon sur la Vindoza subdisko"
+
+#: fs/partitioning_wizard.pm:124
+#, c-format
+msgid "Which partition do you want to resize?"
+msgstr "Kiun subdiskon vi deziras regrandecigi?"
+
+#: fs/partitioning_wizard.pm:138
+#, c-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+"La regrandecigilo por la FAT (Dosiero-Atingo-Tablo) ne povas trakti\n"
+"vian subdiskon, la sekvanta eraro okazis: %s"
+
+#: fs/partitioning_wizard.pm:141
+#, c-format
+msgid "Computing the size of the Microsoft Windows® partition"
+msgstr "Kalkulante la liberan spacon sur la Vindoza subdisko"
+
+#: fs/partitioning_wizard.pm:148
+#, c-format
+msgid ""
+"Your Microsoft Windows® partition is too fragmented. Please reboot your "
+"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
+"the Mandriva Linux installation."
+msgstr ""
+"Via Vindoza subdisko estas tro fragmentigata, bonvole uzu ``defrag'' antaŭe"
+
+#: fs/partitioning_wizard.pm:151
+#, fuzzy, c-format
+msgid ""
+"WARNING!\n"
+"\n"
+"\n"
+"Your Microsoft Windows® partition will be now resized.\n"
+"\n"
+"\n"
+"Be careful: this operation is dangerous. If you have not already done so, "
+"you first need to exit the installation, run \"chkdsk c:\" from a Command "
+"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
+"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
+"optionally run defrag, then restart the installation. You should also backup "
+"your data.\n"
+"\n"
+"\n"
+"When sure, press %s."
+msgstr ""
+"AVERTO!\n"
+"\n"
+"\n"
+"DrakX nun regrandecigos vian Vindozan subdiskon.\n"
+"\n"
+"\n"
+"Zorgu: ĉi tiu operacio estas danĝera. Se vi ne jam faris ĝin, vi prefere "
+"antaŭe eliru el la instalado, uzu \"scandisk\" sub Vindozo (kaj laŭvole rulu "
+"\"defrag\"), kaj sekve relanĉu la instaladon. Vi prefere faru ankaŭ rezervan "
+"kopion de via datenoj.\n"
+"\n"
+"\n"
+"Kiam vi estos certa, klaku \"%s\"."
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: fs/partitioning_wizard.pm:160 interactive.pm:538 interactive/curses.pm:217
+#: ugtk2.pm:508
+#, c-format
+msgid "Next"
+msgstr "Sekvanta"
+
+#: fs/partitioning_wizard.pm:163
+#, c-format
+msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
+msgstr "Kiun grandecon vi deziras teni por Vindozo subdisko: %s?"
+
+#: fs/partitioning_wizard.pm:164
+#, c-format
+msgid "Size"
+msgstr "Grandeco"
+
+#: fs/partitioning_wizard.pm:173
+#, c-format
+msgid "Resizing Microsoft Windows® partition"
+msgstr "Kalkulas Vindozajn dosiersistemajn limojn"
+
+#: fs/partitioning_wizard.pm:178
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "Regrandeciĝo de FAT malsukcesis: %s"
+
+#: fs/partitioning_wizard.pm:193
+#, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+"Ne ekzistas FAT-a subdisko por regrandecigi\n"
+"(aŭ ne estas sufiĉe da spaco)"
+
+#: fs/partitioning_wizard.pm:198
+#, c-format
+msgid "Remove Microsoft Windows®"
+msgstr "Forigu Vindozon"
+
+#: fs/partitioning_wizard.pm:198
+#, fuzzy, c-format
+msgid "Erase and use entire disk"
+msgstr "Forviŝu la tutan diskon"
+
+#: fs/partitioning_wizard.pm:200
+#, c-format
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Vi havas pli ol unu fiksdisko, sur kiu vi deziras instali Linukson?"
+
+#: fs/partitioning_wizard.pm:206
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+"Ĉiuj ekzistantaj subdiskoj kaj iliaj datenoj estos perdata sur drajvo %s"
+
+#: fs/partitioning_wizard.pm:217
+#, c-format
+msgid "Custom disk partitioning"
+msgstr "subdiskigo"
+
+#: fs/partitioning_wizard.pm:223
+#, c-format
+msgid "Use fdisk"
+msgstr "Uzu fdisk"
+
+#: fs/partitioning_wizard.pm:226
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+"Nun vi povas dispartigi %s.\n"
+"Kiam vi finiĝos, ne forgesu savi kun `w'."
+
+#: fs/partitioning_wizard.pm:266
+#, c-format
+msgid "I can not find any room for installing"
+msgstr "Mi ne trovas spacon por instali"
+
+#: fs/partitioning_wizard.pm:270
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "La Dispartigsorĉilo de DrakX trovis ĉi tiujn solvojn:"
+
+#: fs/partitioning_wizard.pm:278
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Dispartigado malsukcesis: %s"
+
+#: fs/type.pm:366
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "Vi ne povas uzi JFS por subdisko pli malgranda ol 16MB"
-#: fs/type.pm:364
+#: fs/type.pm:367
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "Vi ne povas uzi ReiserFS por subdisko pli malgranda ol 32MB"
@@ -3141,7 +2590,12 @@ msgstr "kun /usr"
msgid "server"
msgstr "servilo"
-#: fsedit.pm:219
+#: fsedit.pm:116
+#, c-format
+msgid "BIOS software RAID detected on disks %s. Activate it?"
+msgstr ""
+
+#: fsedit.pm:230
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
@@ -3160,22 +2614,22 @@ msgstr ""
"\n"
"Ĉu vi konsentas perdi ĉiujn subdiskojn?\n"
-#: fsedit.pm:392
+#: fsedit.pm:403
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Surmetingoj devas komenci kun antaŭa /"
-#: fsedit.pm:393
+#: fsedit.pm:404
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Surmetingoj devas enteni nur alfanumerajn signojn"
-#: fsedit.pm:394
+#: fsedit.pm:405
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Jam estas subdisko kun surmetingo ĉe %s\n"
-#: fsedit.pm:398
+#: fsedit.pm:409
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -3186,14 +2640,14 @@ msgstr ""
"Neniu startŝargilo povas trakti tion sen /boot subdisko.\n"
"Bonvole zorgu aldoni /boot subdiskon."
-#: fsedit.pm:404
+#: fsedit.pm:415
#, fuzzy, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr "Vi ne povas uzi LVM-logikan subdiskon por kroĉpunkto %s"
-#: fsedit.pm:406
+#: fsedit.pm:417
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -3205,12 +2659,12 @@ msgstr ""
"Neniu startŝargilo povas trakti tion sen /boot subdisko.\n"
"Bonvole zorgu aldoni /boot subdiskon."
-#: fsedit.pm:410 fsedit.pm:412
+#: fsedit.pm:421 fsedit.pm:423
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Ĉi tiu dosierujo devus resti interne de la radika dosierosistemo (/)"
-#: fsedit.pm:414 fsedit.pm:416
+#: fsedit.pm:425 fsedit.pm:427
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -3219,22 +2673,22 @@ msgstr ""
"Vi bezonas veran dosiersistemon (ext2, reiserfs, xfs aŭ jfs) por tiu "
"surmetingo\n"
-#: fsedit.pm:418
+#: fsedit.pm:429
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr "Vi ne povas uzi kriptan dosiersistemon por surmetingo %s"
-#: fsedit.pm:482
+#: fsedit.pm:493
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Ne sufiĉe da libera spaco por aŭtomate disponigi novajn subdiskojn"
-#: fsedit.pm:484
+#: fsedit.pm:495
#, c-format
msgid "Nothing to do"
msgstr ""
-#: harddrake/data.pm:62 install_any.pm:1710
+#: harddrake/data.pm:62
#, c-format
msgid "Floppy"
msgstr "Disketo"
@@ -3244,12 +2698,12 @@ msgstr "Disketo"
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:88 install_any.pm:1711
+#: harddrake/data.pm:88
#, c-format
msgid "Hard Disk"
msgstr "Disko"
-#: harddrake/data.pm:97 install_any.pm:1712
+#: harddrake/data.pm:97
#, c-format
msgid "CDROM"
msgstr "KDROMO"
@@ -3264,103 +2718,102 @@ msgstr "KD/DVD-skribiloj"
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:127 standalone/drakbackup:2066
+#: harddrake/data.pm:127
#, c-format
msgid "Tape"
msgstr "Bendo"
-#: harddrake/data.pm:136
+#: harddrake/data.pm:138
+#, c-format
+msgid "AGP controllers"
+msgstr "AGP-kontroliloj"
+
+#: harddrake/data.pm:147
#, c-format
msgid "Videocard"
msgstr "Videocard"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:157
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:154
+#: harddrake/data.pm:165
#, c-format
msgid "Tvcard"
msgstr "Tvcard"
-#: harddrake/data.pm:163
+#: harddrake/data.pm:174
#, c-format
msgid "Other MultiMedia devices"
msgstr "Alia bildson-aparatoj"
-#: harddrake/data.pm:172
+#: harddrake/data.pm:183
#, c-format
msgid "Soundcard"
msgstr "Sonorokarto"
-#: harddrake/data.pm:185
+#: harddrake/data.pm:196
#, c-format
msgid "Webcam"
msgstr "Webcam"
-#: harddrake/data.pm:199
+#: harddrake/data.pm:210
#, c-format
msgid "Processors"
msgstr "Procesiloj"
-#: harddrake/data.pm:209
+#: harddrake/data.pm:220
#, fuzzy, c-format
msgid "ISDN adapters"
msgstr "Interna ISDN-karto"
-#: harddrake/data.pm:220
+#: harddrake/data.pm:231
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:229
+#: harddrake/data.pm:240
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:238
+#: harddrake/data.pm:249
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:247
+#: harddrake/data.pm:258
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:256
+#: harddrake/data.pm:267
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:265
+#: harddrake/data.pm:276
#, c-format
msgid "Ethernetcard"
msgstr "Ethernet-karto"
-#: harddrake/data.pm:282 network/netconnect.pm:492
+#: harddrake/data.pm:293
#, c-format
msgid "Modem"
msgstr "Modemo"
-#: harddrake/data.pm:292
+#: harddrake/data.pm:303
#, c-format
msgid "ADSL adapters"
msgstr ""
-#: harddrake/data.pm:306
+#: harddrake/data.pm:315
#, c-format
msgid "Memory"
msgstr "Memoro"
-#: harddrake/data.pm:315
-#, c-format
-msgid "AGP controllers"
-msgstr "AGP-kontroliloj"
-
-#: harddrake/data.pm:324 help.pm:187 help.pm:856
-#: install_steps_interactive.pm:964
+#: harddrake/data.pm:324
#, c-format
msgid "Printer"
msgstr "Printilo"
@@ -3386,85 +2839,92 @@ msgstr "SATA-kontroliloj"
msgid "RAID controllers"
msgstr "RAID-kontroliloj"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA-kontroliloj"
-#: harddrake/data.pm:385
+#: harddrake/data.pm:386
+#, c-format
+msgid "USB Mass Storage Devices"
+msgstr ""
+
+#: harddrake/data.pm:395
+#, fuzzy, c-format
+msgid "Card readers"
+msgstr "Model de la karto:"
+
+#: harddrake/data.pm:404
#, c-format
msgid "Firewire controllers"
msgstr "Firewire-kontroliloj"
-#: harddrake/data.pm:394
+#: harddrake/data.pm:413
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA-kontroliloj"
-#: harddrake/data.pm:403
+#: harddrake/data.pm:422
#, c-format
msgid "SCSI controllers"
msgstr "SCSI-kontroliloj"
-#: harddrake/data.pm:412
+#: harddrake/data.pm:431
#, c-format
msgid "USB controllers"
msgstr "USB-kontroliloj"
-#: harddrake/data.pm:421
+#: harddrake/data.pm:440
#, fuzzy, c-format
msgid "USB ports"
msgstr ", USB-printilo"
-#: harddrake/data.pm:430
+#: harddrake/data.pm:449
#, c-format
msgid "SMBus controllers"
msgstr "SMBus-kontroliloj"
-#: harddrake/data.pm:439
+#: harddrake/data.pm:458
#, c-format
msgid "Bridges and system controllers"
msgstr "Pont- kaj sistem-kontroliloj"
-#: harddrake/data.pm:450 help.pm:856 install_steps_interactive.pm:94
-#: install_steps_interactive.pm:924 standalone/finish-install:41
-#: standalone/keyboarddrake:29
+#: harddrake/data.pm:469
#, c-format
msgid "Keyboard"
msgstr "Klavaro"
-#: harddrake/data.pm:463
+#: harddrake/data.pm:482
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:472 help.pm:856 install_steps_interactive.pm:957
+#: harddrake/data.pm:491
#, c-format
msgid "Mouse"
msgstr "Muso"
-#: harddrake/data.pm:486
+#: harddrake/data.pm:505
#, fuzzy, c-format
msgid "UPS"
msgstr "HFS"
-#: harddrake/data.pm:495
+#: harddrake/data.pm:514
#, c-format
msgid "Scanner"
msgstr "skanilo"
-#: harddrake/data.pm:505 standalone/harddrake2:475
+#: harddrake/data.pm:524
#, c-format
msgid "Unknown/Others"
msgstr "Nekonata/Aliaj"
-#: harddrake/data.pm:533
+#: harddrake/data.pm:552
#, c-format
msgid "cpu # "
msgstr "cpu # "
-#: harddrake/sound.pm:195 standalone/drakconnect:162
-#: standalone/drakconnect:637
+#: harddrake/sound.pm:195
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Bonvole atendu... Mi aplikas la konfiguraĵon"
@@ -3531,17 +2991,17 @@ msgstr ""
"OSS (Open Sound System - Libera Sonsistemo) estis la nuna son-API. Ĝi estas "
"son-API "
-#: harddrake/sound.pm:262 harddrake/sound.pm:350 standalone/drakups:144
+#: harddrake/sound.pm:262 harddrake/sound.pm:351
#, c-format
msgid "Driver:"
msgstr "Pelilo:"
-#: harddrake/sound.pm:270
+#: harddrake/sound.pm:271
#, c-format
msgid "Trouble shooting"
msgstr ""
-#: harddrake/sound.pm:278
+#: harddrake/sound.pm:279
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
@@ -3551,12 +3011,12 @@ msgid ""
"The new \"%s\" driver will only be used on next bootstrap."
msgstr ""
-#: harddrake/sound.pm:286
+#: harddrake/sound.pm:287
#, c-format
msgid "No open source driver"
msgstr "Nenia liberfonta pelilo"
-#: harddrake/sound.pm:287
+#: harddrake/sound.pm:288
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
@@ -3565,33 +3025,33 @@ msgstr ""
"Ne ekzistas libera pelilo por via sonkarto (%s), sed ekzistas proprieta "
"pelilo ĉe \"%s\"."
-#: harddrake/sound.pm:290
+#: harddrake/sound.pm:291
#, c-format
msgid "No known driver"
msgstr "Nenia konata pelilo"
-#: harddrake/sound.pm:291
+#: harddrake/sound.pm:292
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Ne ekzistas konata pelilo por via sonkarto (%s)"
-#: harddrake/sound.pm:295 network/netconnect.pm:98 network/netconnect.pm:837
+#: harddrake/sound.pm:296
#, c-format
msgid "Unknown driver"
msgstr "Nekonata pelilo"
-#: harddrake/sound.pm:296
+#: harddrake/sound.pm:297
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "Eraro: La \"%s\"-pelilo por via sonkarto ne estas listigita"
-#: harddrake/sound.pm:310
+#: harddrake/sound.pm:311
#, c-format
msgid "Sound trouble shooting"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:313
+#: harddrake/sound.pm:314
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
@@ -3600,7 +3060,7 @@ msgid ""
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\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"
@@ -3615,18 +3075,18 @@ msgid ""
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
-#: harddrake/sound.pm:339
+#: harddrake/sound.pm:340
#, c-format
msgid "Let me pick any driver"
msgstr "Lasu min kapti ajnan pelilon"
-#: harddrake/sound.pm:342
+#: harddrake/sound.pm:343
#, c-format
msgid "Choosing an arbitrary driver"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:345
+#: harddrake/sound.pm:346
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3640,8 +3100,7 @@ msgstr ""
"\n"
"La nuna pelilo por via \"%s\"-sonkarto estas \"%s\"."
-#: harddrake/v4l.pm:12 standalone/net_applet:64 standalone/net_applet:65
-#: standalone/net_applet:67
+#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Memdetekta"
@@ -3680,2927 +3139,53 @@ msgstr "Model de la karto:"
msgid "Tuner type:"
msgstr "Ŝanĝu subdiskspecon"
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "Number of capture buffers:"
-msgstr ""
-
-#: harddrake/v4l.pm:479
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: harddrake/v4l.pm:481
-#, c-format
-msgid "PLL setting:"
-msgstr "PLL-konfiguraĵo:"
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "Radio support:"
-msgstr ""
-
-#: harddrake/v4l.pm:482
-#, c-format
-msgid "enable radio support"
-msgstr ""
-
-#: help.pm:12
-#, c-format
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandriva Linux distribution. If you agree with all the\n"
-"terms it contains, check the \"%s\" box. If not, clicking on the \"%s\"\n"
-"button will reboot your computer."
-msgstr ""
-
-#: help.pm:18
-#, c-format
-msgid ""
-"GNU/Linux is a multi-user system which means each user can have his or her\n"
-"own preferences, own files and so on. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point will not be "
-"authorized\n"
-"to change anything except their own files and their own configurations,\n"
-"protecting the system from unintentional or malicious changes which could\n"
-"impact on the system as a whole. You'll have to create at least one regular\n"
-"user for yourself -- this is the account which you should use for routine,\n"
-"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
-"anything and everything, it may also be very dangerous! A very simple\n"
-"mistake could mean that your system will not work any more. If you make a\n"
-"serious mistake as a regular user, the worst that can happen is that you'll\n"
-"lose some information, but you will not affect the entire system.\n"
-"\n"
-"The first field asks you for a real name. Of course, this is not mandatory\n"
-"-- you can actually enter whatever you like. DrakX will use the first word\n"
-"you type in this field and copy it to the \"%s\" one, which is the name\n"
-"this user will enter to log onto the system. If you like, you may override\n"
-"the default and change the user name. The next step is to enter a password.\n"
-"From a security point of view, a non-privileged (regular) user password is\n"
-"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
-"by making it blank or too simple: after all, your files could be the ones\n"
-"at risk.\n"
-"\n"
-"Once you click on \"%s\", you can add other users. Add a user for each one\n"
-"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
-"finished adding users.\n"
-"\n"
-"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
-"that user (bash by default).\n"
-"\n"
-"When you're finished adding users, you'll be asked to choose a user who\n"
-"will be automatically logged into the system when the computer boots up. If\n"
-"you're interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click on\n"
-"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
-msgstr ""
-
-#: help.pm:52 printer/printerdrake.pm:1866 printer/printerdrake.pm:1987
-#: standalone/draksambashare:60
-#, c-format
-msgid "User name"
-msgstr "Salutnomo"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: help.pm:52 help.pm:432 help.pm:682 install_interactive.pm:176
-#: install_steps_gtk.pm:237 install_steps_gtk.pm:682 interactive.pm:436
-#: interactive/newt.pm:321 network/thirdparty.pm:385
-#: printer/printerdrake.pm:3884 standalone/drakTermServ:412
-#: standalone/drakbackup:4102 standalone/drakbackup:4196
-#: standalone/drakbackup:4213 standalone/drakbackup:4231 ugtk2.pm:490
-#, c-format
-msgid "Next"
-msgstr "Sekvanta"
-
-#: help.pm:52
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Ĉu vi deziras uzi tiun funkcion?"
-
-#: help.pm:55
-#, c-format
-msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-
-#: help.pm:86
-#, c-format
-msgid ""
-"The Mandriva Linux installation is distributed on several CD-ROMs. If a\n"
-"selected package is located on another CD-ROM, DrakX will eject the current\n"
-"CD and ask you to insert the required one. If you do not have the requested\n"
-"CD at hand, just click on \"%s\", the corresponding packages will not be\n"
-"installed."
-msgstr ""
-
-#: help.pm:93
+#: interactive.pm:125 interactive.pm:538 interactive/curses.pm:217
+#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
+#: interactive/stdio.pm:142 interactive/stdio.pm:143 ugtk2.pm:410 ugtk2.pm:508
+#: ugtk2.pm:788 ugtk2.pm:811
#, c-format
-msgid ""
-"It's now time to specify which programs you wish to install on your system.\n"
-"There are thousands of packages available for Mandriva Linux, and to make "
-"it\n"
-"simpler to manage, they have been placed into groups of similar\n"
-"applications.\n"
-"\n"
-"Mandriva Linux sorts package groups in four categories. You can mix and\n"
-"match applications from the various categories, so a ``Workstation''\n"
-"installation can still have applications from the ``Server'' category\n"
-"installed.\n"
-"\n"
-" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
-"more of the groups in the workstation category.\n"
-"\n"
-" * \"%s\": if you plan on using your machine for programming, select the\n"
-"appropriate groups from that category. The special \"LSB\" group will\n"
-"configure your system so that it complies as much as possible with the\n"
-"Linux Standard Base specifications.\n"
-"\n"
-" Selecting the \"LSB\" group will also install the \"2.4\" kernel series,\n"
-"instead of the default \"2.6\" one. This is to ensure 100%%-LSB compliance\n"
-"of the system. However, if you do not select the \"LSB\" group you will\n"
-"still have a system which is nearly 100%% LSB-compliant.\n"
-"\n"
-" * \"%s\": if your machine is intended to be a server, select which of the\n"
-"more common services you wish to install on your machine.\n"
-"\n"
-" * \"%s\": this is where you will choose your preferred graphical\n"
-"environment. At least one must be selected if you want to have a graphical\n"
-"interface available.\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group.\n"
-"\n"
-"You can check the \"%s\" box, which is useful if you're familiar with the\n"
-"packages being offered or if you want to have total control over what will\n"
-"be installed.\n"
-"\n"
-"If you start the installation in \"%s\" mode, you can deselect all groups\n"
-"and prevent the installation of any new packages. This is useful for\n"
-"repairing or updating an existing system.\n"
-"\n"
-"If you deselect all groups when performing a regular installation (as\n"
-"opposed to an upgrade), a dialog will pop up suggesting different options\n"
-"for a minimal installation:\n"
-"\n"
-" * \"%s\": install the minimum number of packages possible to have a\n"
-"working graphical desktop.\n"
-"\n"
-" * \"%s\": installs the base system plus basic utilities and their\n"
-"documentation. This installation is suitable for setting up a server.\n"
-"\n"
-" * \"%s\": will install the absolute minimum number of packages necessary\n"
-"to get a working Linux system. With this installation you will only have a\n"
-"command-line interface. The total size of this installation is about 65\n"
-"megabytes."
-msgstr ""
-
-#: help.pm:147 share/compssUsers.pl:24
-#, c-format
-msgid "Workstation"
-msgstr "Laborstacio"
-
-#: help.pm:147 share/compssUsers.pl:65 share/compssUsers.pl:167
-#: share/compssUsers.pl:169
-#, c-format
-msgid "Development"
-msgstr "Programado"
-
-#: help.pm:147 share/compssUsers.pl:145
-#, c-format
-msgid "Graphical Environment"
-msgstr ""
-
-#: help.pm:147 install_steps_gtk.pm:235 install_steps_interactive.pm:623
-#, c-format
-msgid "Individual package selection"
-msgstr "Elektado de individuaj pakaĵoj"
-
-#: help.pm:147 help.pm:589
-#, c-format
-msgid "Upgrade"
-msgstr "Aktualigo"
-
-#: help.pm:147 install_steps_interactive.pm:581
-#, c-format
-msgid "With X"
-msgstr "Kun X"
-
-#: help.pm:147
-#, fuzzy, c-format
-msgid "With basic documentation"
-msgstr "Kun baza dokumentaĵo (rekomendita!)"
-
-#: help.pm:147
-#, fuzzy, c-format
-msgid "Truly minimal install"
-msgstr "Minimuma instalado"
-
-#: help.pm:150
-#, c-format
-msgid ""
-"If you choose to install packages individually, the installer will present\n"
-"a tree containing all packages classified by groups and subgroups. While\n"
-"browsing the tree, you can select entire groups, subgroups, or individual\n"
-"packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description will appear on the\n"
-"right to let you know the purpose of that package.\n"
-"\n"
-"!! If a server package has been selected, either because you specifically\n"
-"chose the individual package or because it was part of a group of packages,\n"
-"you'll be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandriva Linux will automatically start any installed\n"
-"services at boot time. Even if they are safe and have no known issues at\n"
-"the time the distribution was shipped, it is entirely possible that\n"
-"security holes were discovered after this version of Mandriva Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do "
-"or\n"
-"why it's being installed, then click \"%s\". Clicking \"%s\" will install\n"
-"the listed services and they will be started automatically at boot time. !!\n"
-"\n"
-"The \"%s\" option is used to disable the warning dialog which appears\n"
-"whenever the installer automatically selects a package to resolve a\n"
-"dependency issue. Some packages depend on others and the installation of\n"
-"one particular package may require the installation of another package. The\n"
-"installer can determine which packages are required to satisfy a dependency\n"
-"to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-"package list created during a previous installation. This is useful if you\n"
-"have a number of machines that you wish to configure identically. Clicking\n"
-"on this icon will ask you to insert the floppy disk created at the end of\n"
-"another installation. See the second tip of the last step on how to create\n"
-"such a floppy."
-msgstr ""
-
-#: help.pm:181 help.pm:286 help.pm:314 help.pm:445 install_any.pm:944
-#: interactive.pm:161 modules/interactive.pm:71 standalone/drakbackup:2636
-#: standalone/drakfont:687 standalone/draksec:54 standalone/harddrake2:331
-#: ugtk2.pm:898 wizards.pm:156
-#, c-format
-msgid "No"
-msgstr "Ne"
+msgid "Ok"
+msgstr "Jeso"
-#: help.pm:181 help.pm:286 help.pm:445 install_any.pm:944 interactive.pm:161
-#: modules/interactive.pm:71 printer/printerdrake.pm:883
-#: printer/printerdrake.pm:898 standalone/drakbackup:2636
-#: standalone/drakfont:685 standalone/draksec:55 standalone/harddrake2:330
-#: ugtk2.pm:898 wizards.pm:156
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Jes"
-#: help.pm:181
-#, c-format
-msgid "Automatic dependencies"
-msgstr ""
-
-#: help.pm:184
-#, c-format
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to set up a new printer. The interface presented in our\n"
-"manual is similar to the one used during installation."
-msgstr ""
-
-#: help.pm:187 help.pm:567 help.pm:856 install_steps_gtk.pm:595
-#: standalone/drakbackup:2460 standalone/drakbackup:2464
-#: standalone/drakbackup:2468 standalone/drakbackup:2472
-#: standalone/drakroam:227
-#, c-format
-msgid "Configure"
-msgstr "Konfiguru"
-
-#: help.pm:190
-#, fuzzy, c-format
-msgid ""
-"This dialog is used to select which services you wish to start at boot\n"
-"time.\n"
-"\n"
-"DrakX will list all services available on the current installation. Review\n"
-"each one of them carefully and uncheck those which are not needed at boot\n"
-"time.\n"
-"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you're not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you probably do not want to start any services which you do not "
-"need.\n"
-"Please remember that some services can be dangerous if they're enabled on a\n"
-"server. In general, select only those services you really need. !!"
-msgstr ""
-"Tiu ĉi dialogo uzeblas por elekti kiujn servojn vi deziras startigi kiam vi "
-"startigas\n"
-"vian komputilon.\n"
-"DrakX listigos ĉiujn servojn atingeblajn en la nuna instalaĵo.\n"
-"Kontrolu ĉiujn zorge kaj malelektu tiujn kiuj ne estas ĉiam bezonataj\n"
-"dum la starto.\n"
-"Kiam via muso estas supre de ero, malgranda balono\n"
-"ekaperas por helpi vin. Ĝi priskribas la rolon de la servo.\n"
-"Tamen, se vi ne certas ĉu iu servo utilas aŭ ne, prefere lasu la defaŭltan "
-"sintenon.\n"
-"\n"
-"!!Zorgegu en ĉi tiu paŝo se vi intencas uzi vian komputilon kiel servilo:\n"
-"ne startu servojn kiujn vi ne bezonas. Memoru ke certaj servoj povas esti\n"
-"danĝeraj se ili estas aktivigitaj en servilo. Ĝenerale,\n"
-"elektu nur tiujn servojn kiujn vi vere bezonas.\n"
-"!!"
-
-#: help.pm:207
-#, c-format
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same time zone. This is useful when the machine\n"
-"also hosts another operating system.\n"
-"\n"
-"The \"%s\" option will automatically regulate the system clock by\n"
-"connecting to a remote time server on the Internet. For this feature to\n"
-"work, you must have a working Internet connection. We recommend that you\n"
-"choose a time server located near you. This option actually installs a time\n"
-"server which can be used by other machines on your local network as well."
-msgstr ""
-
-#: help.pm:218 install_steps_interactive.pm:859
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Aparata horloĝo estas ĝustigita laŭ GMT"
-
-#: help.pm:218
-#, fuzzy, c-format
-msgid "Automatic time synchronization"
-msgstr "Auxtomata hor-sinkronizado (uzante NTP) "
-
-#: help.pm:221
-#, c-format
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs."
-msgstr ""
-
-#: help.pm:232
-#, c-format
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandriva Linux rely upon.\n"
-"\n"
-"You'll see a list of different parameters to change to get an optimal\n"
-"graphical display.\n"
-"\n"
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If this is not correct, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the situation where different servers are available for your card,\n"
-"with or without 3D acceleration, you're asked to choose the server which\n"
-"best suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" Depending on your hardware, this entry might not appear.\n"
-"\n"
-" The system will try to open a graphical screen at the desired\n"
-"resolution. If you see the test message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you do not see it, then it\n"
-"means that some part of the auto-detected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds and return you to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-
-#: help.pm:289
-#, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" Normally the installer will automatically detect and configure the\n"
-"monitor connected to your machine. If it is not correct, you can choose\n"
-"from this list the monitor which is connected to your computer."
-msgstr ""
-
-#: help.pm:296
-#, c-format
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"graphics hardware. Choose the one which best suits your needs (you will be\n"
-"able to make changes after the installation). A sample of the chosen\n"
-"configuration is shown in the monitor picture."
-msgstr ""
-
-#: help.pm:304
-#, c-format
-msgid ""
-"In the situation where different servers are available for your card, with\n"
-"or without 3D acceleration, you're asked to choose the server which best\n"
-"suits your needs."
-msgstr ""
-
-#: help.pm:309
-#, c-format
-msgid ""
-"Options\n"
-"\n"
-" This steps allows you to choose whether you want your machine to\n"
-"automatically switch to a graphical interface at boot. Obviously, you may\n"
-"want to check \"%s\" if your machine is to act as a server, or if you were\n"
-"not successful in getting the display configured."
-msgstr ""
-
-#: help.pm:317
-#, c-format
-msgid ""
-"You now need to decide where you want to install the Mandriva Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space you will have to\n"
-"partition the drive. Basically, partitioning a hard drive means to\n"
-"logically divide it to create the space needed to install your new\n"
-"Mandriva Linux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to data losses, partitioning can be intimidating and stressful\n"
-"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on the configuration of your hard drive, several options are\n"
-"available:\n"
-"\n"
-" * \"%s\". This option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
-"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-"data, provided you've previously defragmented the Windows partition.\n"
-"Backing up your data is strongly recommended. Using this option is\n"
-"recommended if you want to use both Mandriva Linux and Microsoft Windows on\n"
-"the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"than when you started. You'll have less free space under Microsoft Windows\n"
-"to store your data or to install new software.\n"
-"\n"
-" * \"%s\". If you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandriva Linux system, "
-"choose\n"
-"this option. Be careful, because you will not be able to undo this "
-"operation\n"
-"after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\". This option appears when the hard drive is entirely taken by\n"
-"Microsoft Windows. Choosing this option will simply erase everything on the\n"
-"drive and begin fresh, partitioning everything from scratch.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\". Choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
-msgstr ""
-
-#: help.pm:375 install_interactive.pm:96
-#, c-format
-msgid "Use free space"
-msgstr "Uzu liberan spacon"
-
-#: help.pm:375
-#, fuzzy, c-format
-msgid "Use existing partition"
-msgstr "Uzu ekzistantajn subdiskojn"
-
-#: help.pm:375 install_interactive.pm:138
-#, c-format
-msgid "Use the free space on the Microsoft Windows® partition"
-msgstr "Uzu la liberan spacon sur la Vindoza subdisko"
-
-#: help.pm:375
-#, c-format
-msgid "Erase entire disk"
-msgstr "Forviŝu la tutan diskon"
-
-#: help.pm:375
-#, fuzzy, c-format
-msgid "Remove Windows"
-msgstr "Forigu Vindozon"
-
-#: help.pm:375 install_interactive.pm:233
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "subdiskigo"
-
-#: help.pm:378
-#, c-format
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to be used. Just click on \"%s\" to reboot the system. Do not forget\n"
-"to remove the installation media (CD-ROM or floppy). The first thing you\n"
-"should see after your computer has finished doing its hardware tests is the\n"
-"boot-loader menu, giving you the choice of which operating system to start.\n"
-"\n"
-"The \"%s\" button shows two more buttons to:\n"
-"\n"
-" * \"%s\": enables you to create an installation floppy disk which will\n"
-"automatically perform a whole installation without the help of an operator,\n"
-"similar to the installation you've just configured.\n"
-"\n"
-" Note that two different options are available after clicking on that\n"
-"button:\n"
-"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
-"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing on a number of similar\n"
-"machines. See the Auto install section on our web site for more\n"
-"information.\n"
-"\n"
-" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
-"To use this selection with another installation, insert the floppy and\n"
-"start the installation. At the prompt, press the [F1] key, type >>linux\n"
-"defcfg=\"floppy\"<< and press the [Enter] key.\n"
-"\n"
-"(*) You need a FAT-formatted floppy. To create one under GNU/Linux, type\n"
-"\"mformat a:\", or \"fdformat /dev/fd0\" followed by \"mkfs.vfat\n"
-"/dev/fd0\"."
-msgstr ""
-
-#: help.pm:410
-#, fuzzy, c-format
-msgid "Generate auto-install floppy"
-msgstr "Kreu aŭtoinstalan disketon"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Replay"
-msgstr "Reludu"
-
-#: help.pm:410 install_steps_interactive.pm:1314
-#, c-format
-msgid "Automated"
-msgstr "Aŭtomata"
-
-#: help.pm:410 install_steps_interactive.pm:1317
-#, c-format
-msgid "Save packages selection"
-msgstr "Konservu la pakaĵ-elekton"
-
-#: help.pm:413
-#, c-format
-msgid ""
-"If you chose to reuse some legacy GNU/Linux partitions, you may wish to\n"
-"reformat some of them and erase any data they contain. To do so, please\n"
-"select those partitions as well.\n"
-"\n"
-"Please note that it's not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to "
-"reformat\n"
-"partitions containing data that you wish to keep (typically \"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After the formatting is\n"
-"completed, all data on the selected partitions will be deleted and you\n"
-"will not be able to recover it.\n"
-"\n"
-"Click on \"%s\" when you're ready to format the partitions.\n"
-"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandriva Linux operating system installation.\n"
-"\n"
-"Click on \"%s\" if you wish to select partitions which will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-
-#: help.pm:432 install_steps_gtk.pm:392 interactive.pm:437
-#: interactive/newt.pm:318 printer/printerdrake.pm:3882
-#: standalone/drakTermServ:391 standalone/drakbackup:4065
-#: standalone/drakbackup:4101 standalone/drakbackup:4212
-#: standalone/drakbackup:4227 ugtk2.pm:488
-#, c-format
-msgid "Previous"
-msgstr "Antaŭa"
-
-#: help.pm:435
-#, c-format
-msgid ""
-"By the time you install Mandriva Linux, it's likely that some packages will\n"
-"have been updated since the initial release. Bugs may have been fixed,\n"
-"security issues resolved. To allow you to benefit from these updates,\n"
-"you're now able to download them from the Internet. Check \"%s\" if you\n"
-"have a working Internet connection, or \"%s\" if you prefer to install\n"
-"updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of web locations from which updates can\n"
-"be retrieved. You should choose one near to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
-msgstr ""
-
-#: help.pm:445 help.pm:589 install_steps_gtk.pm:391
-#: install_steps_interactive.pm:132
-#, c-format
-msgid "Install"
-msgstr "Instalu"
-
-#: help.pm:448
-#, c-format
-msgid ""
-"At this point, DrakX will allow you to choose the security level you desire\n"
-"for your machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine is to contain crucial data, or if it's to be directly\n"
-"exposed to the Internet. The trade-off that a higher security level is\n"
-"generally obtained at the expense of ease of use.\n"
-"\n"
-"If you do not know what to choose, keep the default option. You'll be able\n"
-"to change it later with the draksec tool, which is part of Mandriva Linux\n"
-"Control Center.\n"
-"\n"
-"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
-"security. Security messages will be sent to that address."
-msgstr ""
-
-#: help.pm:459
-#, fuzzy, c-format
-msgid "Security Administrator"
-msgstr "Malproksimaj lpd Printilaj Opcioj"
-
-#: help.pm:462
-#, c-format
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandriva Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"%s\": this option deletes all partitions on the selected hard drive\n"
-"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
-"partitions in the free space of your hard drive\n"
-"\n"
-"\"%s\": gives access to additional features:\n"
-"\n"
-" * \"%s\": saves the partition table to a floppy. Useful for later\n"
-"partition-table recovery if necessary. It is strongly recommended that you\n"
-"perform this step.\n"
-"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
-"\n"
-" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it does not always\n"
-"work.\n"
-"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
-"\n"
-" * \"%s\": un-checking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
-"\n"
-" * \"%s\": use this option if you wish to use a wizard to partition your\n"
-"hard drive. This is recommended if you do not have a good understanding of\n"
-"partitioning.\n"
-"\n"
-" * \"%s\": use this option to cancel your changes.\n"
-"\n"
-" * \"%s\": allows additional actions on partitions (type, options, format)\n"
-"and gives more information about the hard drive.\n"
-"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"When defining the size of a partition, you can finely set the partition\n"
-"size by using the Arrow keys of your keyboard.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and the [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
-"\n"
-" * Ctrl-d to delete a partition\n"
-"\n"
-" * Ctrl-m to set the mount point\n"
-"\n"
-"To get information about the different file system types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-
-#: help.pm:531
-#, fuzzy, c-format
-msgid "Removable media auto-mounting"
-msgstr "Aŭtomata kroĉado de demeteblaj aparatoj"
-
-#: help.pm:531
-#, fuzzy, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Ŝanĝu al Normala reĝimo"
-
-#: help.pm:534
-#, c-format
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one which you want to resize in order to install your new\n"
-"Mandriva Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-
-#: help.pm:565
-#, c-format
-msgid ""
-"\"%s\": check the current country selection. If you're not in this country,\n"
-"click on the \"%s\" button and choose another. If your country is not in "
-"the\n"
-"list shown, click on the \"%s\" button to get the complete country list."
-msgstr ""
-
-#: help.pm:570
-#, c-format
-msgid ""
-"This step is activated only if an existing GNU/Linux partition has been\n"
-"found on your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new installation or an\n"
-"upgrade of an existing Mandriva Linux system:\n"
-"\n"
-" * \"%s\". For the most part, this completely wipes out the old system.\n"
-"However, depending on your partitioning scheme, you can prevent some of\n"
-"your existing data (notably \"home\" directories) from being over-written.\n"
-"If you wish to change how your hard drives are partitioned, or to change\n"
-"the file system, you should use this option.\n"
-"\n"
-" * \"%s\". This installation class allows you to update the packages\n"
-"currently installed on your Mandriva Linux system. Your current "
-"partitioning\n"
-"scheme and user data will not be altered. Most of the other configuration\n"
-"steps remain available and are similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandriva Linux systems\n"
-"running version \"8.1\" or later. Performing an upgrade on versions prior\n"
-"to Mandriva Linux version \"8.1\" is not recommended."
-msgstr ""
-
-#: help.pm:592
-#, c-format
-msgid ""
-"Depending on the language you chose (), DrakX will automatically select a\n"
-"particular type of keyboard configuration. Check that the selection suits\n"
-"you or choose another keyboard layout.\n"
-"\n"
-"Also, you may not have a keyboard which corresponds exactly to your\n"
-"language: for example, if you are an English-speaking Swiss native, you may\n"
-"have a Swiss keyboard. Or if you speak English and are located in Quebec,\n"
-"you may find yourself in the same situation where your native language and\n"
-"country-set keyboard do not match. In either case, this installation step\n"
-"will allow you to select an appropriate keyboard from a list.\n"
-"\n"
-"Click on the \"%s\" button to be shown a list of supported keyboards.\n"
-"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding which will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-
-#: help.pm:610
-#, c-format
-msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Your choice of preferred language will affect the installer, the\n"
-"documentation, and the system in general. First select the region you're\n"
-"located in, then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if Spanish\n"
-"users are to use your machine, select English as the default language in\n"
-"the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
-"cover all existing languages. However full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandriva Linux's use of UTF-8 "
-"will\n"
-"depend on the user's choices:\n"
-"\n"
-" * If you choose a language with a strong legacy encoding (latin1\n"
-"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
-"iso-8859-2 languages), the legacy encoding will be used by default;\n"
-"\n"
-" * Other languages will use unicode by default;\n"
-"\n"
-" * If two or more languages are required, and those languages are not using\n"
-"the same encoding, then unicode will be used for the whole system;\n"
-"\n"
-" * Finally, unicode can also be forced for use throughout the system at a\n"
-"user's request by selecting the \"%s\" option independently of which\n"
-"languages were been chosen.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several, or even install them all by selecting the \"%s\" box.\n"
-"Selecting support for a language means translations, fonts, spell checkers,\n"
-"etc. will also be installed for that language.\n"
-"\n"
-"To switch between the various languages installed on your system, you can\n"
-"launch the \"localedrake\" command as \"root\" to change the language used\n"
-"by the entire system. Running the command as a regular user will only\n"
-"change the language settings for that particular user."
-msgstr ""
-
-#: help.pm:648
-#, c-format
-msgid "Espanol"
-msgstr ""
-
-#: help.pm:651
-#, c-format
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be obtained by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If you have a 3-button mouse without a wheel, you can choose a \"%s\"\n"
-"mouse. DrakX will then configure your mouse so that you can simulate the\n"
-"wheel with it: to do so, press the middle button and move your mouse\n"
-"pointer up and down.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"You can select the \"%s\" entry to chose a ``generic'' mouse type which\n"
-"will work with nearly all mice.\n"
-"\n"
-"If you choose a mouse other than the default one, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and\n"
-"you will be returned to the mouse list.\n"
-"\n"
-"Occasionally wheel mice are not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image will be displayed on-screen.\n"
-"Scroll the mouse wheel to ensure that it is activating correctly. As you\n"
-"scroll your mouse wheel, you will see the on-screen scroll wheel moving.\n"
-"Test the buttons and check that the mouse pointer moves on-screen as you\n"
-"move your mouse about."
-msgstr ""
-
-#: help.pm:682
-#, fuzzy, c-format
-msgid "with Wheel emulation"
-msgstr "Loĝiteka MouseMan"
-
-#: help.pm:682
-#, c-format
-msgid "Universal | Any PS/2 & USB mice"
-msgstr ""
-
-#: help.pm:685
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Bonvolu elekti la ĝustan pordon. Ekzemple, la \"COM1\"-a\n"
-"pordo sub MS Vindozo estas nomata \"ttyS0\" sub GNU/Linukso."
-
-#: help.pm:689
+#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:787 wizards.pm:156
#, c-format
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you must enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That's why you must choose a password which is difficult to\n"
-"guess: DrakX will tell you if the password you chose is too simple. As you\n"
-"can see, you're not forced to enter a password, but we strongly advise\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise your system.\n"
-"\n"
-"One caveat: do not make the password too long or too complicated because "
-"you\n"
-"must be able to remember it!\n"
-"\n"
-"The password will not be displayed on screen as you type it. To reduce the\n"
-"chance of a blind typing error you'll need to enter the password twice. If\n"
-"you do happen to make the same typing error twice, you'll have to use this\n"
-"``incorrect'' password the first time you'll try to connect as \"root\".\n"
-"\n"
-"If you want an authentication server to control access to your computer,\n"
-"click on the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you do not know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, or if your\n"
-"computer will never be connected to the Internet and you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
-msgstr ""
-
-#: help.pm:723
-#, fuzzy, c-format
-msgid "authentication"
-msgstr "Aŭtentikigado"
-
-#: help.pm:726
-#, fuzzy, c-format
-msgid ""
-"A boot loader is a little program which is started by the computer at boot\n"
-"time. It's responsible for starting up the whole system. Normally, the boot\n"
-"loader installation is totally automated. DrakX will analyze the disk boot\n"
-"sector and act according to what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a GRUB/LILO\n"
-"boot sector. This way you'll be able to load either GNU/Linux or any other\n"
-"OS installed on your machine.\n"
-"\n"
-" * if a GRUB or LILO boot sector is found, it'll replace it with a new one.\n"
-"\n"
-"If DrakX can not determine where to place the boot sector, it'll ask you\n"
-"where it should place it. Generally, the \"%s\" is the safest place.\n"
-"Choosing \"%s\" will not install any boot loader. Use this option only if "
-"you\n"
-"know what you're doing."
-msgstr ""
-"LILO kaj grub estas GNU/Linuksaj startigiloj. Normale, tiu paŝo estas "
-"komplete\n"
-"aŭtomata. DrakX analizos la startsektoron de la disko kaj agas laŭ tio\n"
-"kion ĝi trovas tie:\n"
-"\n"
-" * se ĝi trovas vindozan startsektoron, ĝi anstataŭigos tiun per grub/LILO-"
-"a startsektoro.\n"
-"Tiel vi povos ŝargi aŭ GNU/Linukson aŭ alian mastrumsistemon.\n"
-"\n"
-" * se ĝi trovas grub- aŭ LILO-startsektoron, ĝi anstataŭigos tiun per "
-"nova.\n"
-"\n"
-" * se ĝi ne povas determini, DrakX demandos vin kien ĝi metu la\n"
-"startigilon.\n"
-"\n"
-"\"Boot device\": En plej multaj okazoj, vi ne ŝanĝu la defaŭltan (\"Unua\n"
-"sektoro de la disko (MBR)\"), sed se vi preferas, la startigilo povas esti\n"
-"instalata sur la dua fiksdisko (\"/dev/hdb\"), aŭ eĉ sur disketo\n"
-"(\"Sur disketo\")."
-
-#: help.pm:743
-#, fuzzy, c-format
-msgid ""
-"Now, it's time to select a printing system for your computer. Other\n"
-"operating systems may offer you one, but Mandriva Linux offers two. Each of\n"
-"the printing systems is best suited to particular types of configuration.\n"
-"\n"
-" * \"%s\" -- which is an acronym for ``print, do not queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"within networks.) It's recommended that you use \"pdq\" if this is your\n"
-"first experience with GNU/Linux.\n"
-"\n"
-" * \"%s\" stands for `` Common Unix Printing System'' and is an excellent\n"
-"choice for printing to your local printer or to one halfway around the\n"
-"planet. It's simple to configure and can act as a server or a client for\n"
-"the ancient \"lpd\" printing system, so it's compatible with older\n"
-"operating systems which may still need print services. While quite\n"
-"powerful, the basic setup is almost as easy as \"pdq\". If you need to\n"
-"emulate a \"lpd\" server, make sure you turn on the \"cups-lpd\" daemon.\n"
-"\"%s\" includes graphical front-ends for printing or choosing printer\n"
-"options and for managing the printer.\n"
-"\n"
-"If you make a choice now, and later find that you do not like your printing\n"
-"system you may change it by running PrinterDrake from the Mandriva Linux\n"
-"Control Center and clicking on the \"%s\" button."
-msgstr ""
-"Nun estas tempo por elekti pressistemon por via komputilo. Aliaj mastrum-"
-"sistemoj\n"
-"proponas al vi unu, sed Mandriva Linukso proponas du. Ĉiu el la "
-"pressistemoj\n"
-"plej taŭgas por aparta tipo de konfigurado.\n"
-"\n"
-" * \"pdq\" -- kio estas akronimo por \"print, do not queue\" (presu, ne "
-"vicigu), elektindas\n"
-"se vi havas rektan konekton kun via presilo, vi ŝatus eskapi el problemoj "
-"kun\n"
-"aliaj presiloj, kaj vi ne havas retajn presilojn. (\"pdq\"\n"
-"pritraktos nur tre simplajn retokazojn kaj estas iom malrapida se\n"
-"uzata kun retoj.) Konsilindas uzi \"pdq\" se tio ĉi estas via\n"
-"unua sperto kun GNU/Linukso.\n"
-"\n"
-" * \"%s\" - \"Common Unix Printing System\", estas bonega elekto por\n"
-"presigi vian lokan presilon aŭ iun ie tra la planedo. Ĝi estas\n"
-"facile konfigurebla kaj povas agi kiel servilo aŭ kiel kliento por la "
-"antaŭa\n"
-"\"lpd \" pressistemo, kaj estas kongrua kun pli malnovaj mastrum-sistemoj\n"
-"kiuj eble ankoraŭ bezonas presservojn. Kvankam tre potenca, la baza "
-"konfigurado\n"
-"estas preskaŭ same simpla kiel \"pdq\". Se vi bezonas imiti \"lpd\"-"
-"servilon,\n"
-"certiĝu ke vi aktivigis la \"cups-lpd\"-demonon. \"%s\" enhavas grafikajn\n"
-"'front-ends' por presi aŭ por elekti presil-opciojn kaj por mastrumi\n"
-"la presilon.\n"
-"\n"
-"Se vi faras vian elekton nun, kaj poste trovas ke vi ne ŝatas vian "
-"pressistemon,\n"
-"vi povas ŝanĝi ĝin rulante PrinterDrake ekde la Mandriva KontrolCentro kaj\n"
-"alklaki la eksperto-butonon."
-
-#: help.pm:766
-#, c-format
-msgid "pdq"
-msgstr ""
-
-#: help.pm:766 printer/cups.pm:117 printer/data.pm:129
-#, c-format
-msgid "CUPS"
-msgstr ""
-
-#: help.pm:766
-#, c-format
-msgid "Expert"
-msgstr "Spertulo"
-
-#: help.pm:769
-#, fuzzy, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"DrakX unue detektos iujn IDE-aparatojn en via komputilo. Ĝi ankaŭ\n"
-"serĉas unu aŭ plurajn PCI-SCSI-kartojn en via sistemo. Se SCSI-karto\n"
-"estas trovita, DrakX aŭtomate instalos la taŭgan pelilon.\n"
-"\n"
-"Ĉar detektado de aparataro ne estas absolute senerara, DrakX povas\n"
-"malsukcesi detektante viajn fiksdiskojn. Se tiel, vi devos mem mane entajpi\n"
-"vian aparataron.\n"
-"\n"
-"Se vi devis mane entajpi vian PCI-SCSI-adaptilon, DrakX demandos ĉu vi\n"
-"deziras konfiguri opciojn por ĝi. Prefere permesu al DrakX provi la "
-"aparatojn\n"
-"por la kartospecifaj opcioj kiuj estas bezonataj por inici la adaptilon. "
-"Plej ofte,\n"
-"DrakX trairos tiun paŝon sen ajna problemo.\n"
-"\n"
-"Se DrakX ne kapablas provi kiujn parametrojn la opcioj aŭtomate devas doni "
-"al la\n"
-"aparatoj, vi devos mane konfiguri la pelilon."
-
-#: help.pm:787
-#, c-format
-msgid ""
-"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver."
-msgstr ""
-
-#: help.pm:789 help.pm:856 install_steps_interactive.pm:991
-#: install_steps_interactive.pm:1008
-#, c-format
-msgid "Sound card"
-msgstr "Sonkarto"
-
-#: help.pm:792
-#, c-format
-msgid ""
-"As a review, DrakX will present a summary of information it has gathered\n"
-"about your system. Depending on the hardware installed on your machine, you\n"
-"may have some or all of the following entries. Each entry is made up of the\n"
-"hardware item to be configured, followed by a quick summary of the current\n"
-"configuration. Click on the corresponding \"%s\" button to make the change.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change it if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you're not in this\n"
-"country, click on the \"%s\" button and choose another. If your country\n"
-"is not in the list shown, click on the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": by default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": verify the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to set up a new printer. The interface\n"
-"presented in our manual is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it'll be displayed\n"
-"here. If you notice the sound card is not the one actually present on your\n"
-"system, you can click on the button and choose a different driver.\n"
-"\n"
-" * \"%s\": if you have a TV card, this is where information about its\n"
-"configuration will be displayed. If you have a TV card and it is not\n"
-"detected, click on \"%s\" to try to configure it manually.\n"
-"\n"
-" * \"%s\": you can click on \"%s\" to change the parameters associated with\n"
-"the card if you feel the configuration is wrong.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if you wish to configure your Internet or local network access,\n"
-"you can do so now. Refer to the printed documentation or use the\n"
-"Mandriva Linux Control Center after the installation has finished to "
-"benefit\n"
-"from full in-line help.\n"
-"\n"
-" * \"%s\": allows to configure HTTP and FTP proxy addresses if the machine\n"
-"you're installing on is to be located behind a proxy server.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click this\n"
-"button. This should be reserved to advanced users. Refer to the printed\n"
-"documentation or the in-line help about bootloader configuration in the\n"
-"Mandriva Linux Control Center.\n"
-"\n"
-" * \"%s\": through this entry you can fine tune which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
-msgstr ""
-
-#: help.pm:856 install_steps_interactive.pm:855
-#: install_steps_interactive.pm:950 standalone/drakclock:100
-#: standalone/finish-install:56 standalone/finish-install:57
-#, c-format
-msgid "Timezone"
-msgstr "Horzono"
-
-#: help.pm:856 install_steps_interactive.pm:1024
-#, c-format
-msgid "TV card"
-msgstr "TV-karto"
-
-#: help.pm:856
-#, fuzzy, c-format
-msgid "ISDN card"
-msgstr "Interna ISDN-karto"
-
-#: help.pm:856
-#, fuzzy, c-format
-msgid "Graphical Interface"
-msgstr "Grafika interfaco"
-
-#: help.pm:856 install_any.pm:1733 install_steps_interactive.pm:1042
-#: standalone/drakbackup:2051
-#, c-format
-msgid "Network"
-msgstr "Reto"
-
-#: help.pm:856 install_steps_interactive.pm:1054
-#, c-format
-msgid "Proxies"
-msgstr "Prokuraj Serviloj"
-
-#: help.pm:856 install_steps_interactive.pm:1065
-#, c-format
-msgid "Security Level"
-msgstr "sekurnivelo"
-
-#: help.pm:856 install_steps_interactive.pm:1079 network/drakfirewall.pm:189
-#, c-format
-msgid "Firewall"
-msgstr "Fajromuro (Firewall)"
-
-#: help.pm:856 install_steps_interactive.pm:1095
-#, c-format
-msgid "Bootloader"
-msgstr "Startŝargilo"
-
-#: help.pm:856 install_steps_interactive.pm:1108 services.pm:114
-#: services.pm:157 services.pm:193
-#, c-format
-msgid "Services"
-msgstr "Servoj"
-
-#: help.pm:859
-#, c-format
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandriva Linux partition. Be careful, all data on this drive will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-
-#: help.pm:864
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to quit this operation without losing data and partitions\n"
-"present on this hard drive."
-msgstr ""
-
-#: help.pm:870
-#, c-format
-msgid "Next ->"
-msgstr "Sekvanta ->"
-
-#: help.pm:870
-#, c-format
-msgid "<- Previous"
-msgstr "<- Antaŭa"
-
-#: install2.pm:115
-#, c-format
-msgid ""
-"Can not access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: install2.pm:167
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: install_any.pm:406
-#, fuzzy, c-format
-msgid "Do you have further supplementary media?"
-msgstr "Ĉu vi havas alian?"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:409
-#, c-format
-msgid ""
-"The following media have been found and will be used during install: %s.\n"
-"\n"
-"\n"
-"Do you have a supplementary installation medium to configure?"
-msgstr ""
-
-#: install_any.pm:422 printer/printerdrake.pm:3211
-#: printer/printerdrake.pm:3218 standalone/scannerdrake:182
-#: standalone/scannerdrake:190 standalone/scannerdrake:241
-#: standalone/scannerdrake:248
-#, c-format
-msgid "CD-ROM"
-msgstr "KD-ROMo"
-
-#: install_any.pm:422
-#, fuzzy, c-format
-msgid "Network (HTTP)"
-msgstr "Reto %s"
-
-#: install_any.pm:422
-#, fuzzy, c-format
-msgid "Network (FTP)"
-msgstr "Reto %s"
-
-#: install_any.pm:422
-#, c-format
-msgid "Network (NFS)"
-msgstr ""
-
-#: install_any.pm:452
-#, c-format
-msgid "Insert the CD 1 again"
-msgstr ""
-
-#: install_any.pm:478 network/netconnect.pm:866 standalone/drakbackup:114
-#, fuzzy, c-format
-msgid "No device found"
-msgstr "Loka printilo"
-
-#: install_any.pm:483
-#, c-format
-msgid "Insert the CD"
-msgstr ""
-
-#: install_any.pm:488
-#, fuzzy, c-format
-msgid "Unable to mount CD-ROM"
-msgstr "Ne povis forki: %s"
-
-#: install_any.pm:521 install_any.pm:542
-#, c-format
-msgid "URL of the mirror?"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "NFS setup"
-msgstr ""
-
-#: install_any.pm:526
-#, c-format
-msgid "Please enter the hostname and directory of your NFS media"
-msgstr ""
-
-#: install_any.pm:527
-#, c-format
-msgid "Hostname of the NFS mount ?"
-msgstr ""
-
-#: install_any.pm:527 standalone/draknfs:288
-#, c-format
-msgid "Directory"
-msgstr "Dosierujo"
-
-#: install_any.pm:580
-#, fuzzy, c-format
-msgid ""
-"Can't find a package list file on this mirror. Make sure the location is "
-"correct."
-msgstr "Ne povis malfermi %s por skribi: %s\n"
-
-#: install_any.pm:657
-#, c-format
-msgid "Removing packages prior to upgrade..."
-msgstr ""
-
-#: install_any.pm:699
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Rigardante jam instalitajn pakaĵojn..."
-
-#: install_any.pm:703
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Trovadas pakaĵojn por promocii"
-
-#: install_any.pm:781
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done."
-msgstr ""
-"Ŝanĝu vian KDROM!\n"
-"\n"
-"Bonvole, enŝovu la KDROM-on etikedatan \"%s\" en via drajvo kaj klaku \"Jes"
-"\" kiam vi finos."
-
-#: install_any.pm:793
-#, fuzzy, c-format
-msgid "Copying in progress"
-msgstr "Duobla surmetingo %s"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:935
-#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They do not have any known security\n"
-"issues, but some new ones could be found. In that case, you must make sure\n"
-"to upgrade as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_any.pm:958
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-
-#: install_any.pm:1394 partition_table.pm:597
-#, c-format
-msgid "Error reading file %s"
-msgstr "Eraro legante dosiero %s"
-
-#: install_any.pm:1628
-#, fuzzy, c-format
-msgid "The following disk(s) were renamed:"
-msgstr "La sekvaj pakaĵoj estos instalataj"
-
-#: install_any.pm:1630
-#, c-format
-msgid "%s (previously named as %s)"
-msgstr ""
-
-#: install_any.pm:1670
-#, 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 ""
-"Eraro okazis - neniuj validaj aparatoj estis trovata sur kiuj vi povas krei "
-"novajn dosiersistemojn. Bonvolu kontroli vian ekipaĵon por la kaŭzo de ĉi "
-"tiu problemo."
-
-#: install_any.pm:1714
-#, c-format
-msgid "HTTP"
-msgstr ""
-
-#: install_any.pm:1714
-#, c-format
-msgid "FTP"
-msgstr "FTP"
-
-#: install_any.pm:1714
-#, fuzzy, c-format
-msgid "NFS"
-msgstr "HFS"
-
-#: install_any.pm:1737
-#, fuzzy, c-format
-msgid "Please choose a media"
-msgstr "Bonvole elektu"
-
-#: install_any.pm:1753
-#, fuzzy, c-format
-msgid "File already exists. Overwrite it?"
-msgstr "Dosiero jam ekzistas. Ĉu vi deziras uzi ĝin?"
-
-#: install_any.pm:1757
-#, c-format
-msgid "Permission denied"
-msgstr "Permeso rifuzita"
-
-#: install_any.pm:1806
-#, c-format
-msgid "Bad NFS name"
-msgstr ""
-
-#: install_any.pm:1827
-#, fuzzy, c-format
-msgid "Bad media %s"
-msgstr "aldonita datenportilo %s"
-
-#: install_any.pm:1877
-#, c-format
-msgid "Can not make screenshots before partitioning"
-msgstr "Mi ne povas fari ekranfotojn antaŭ ol fari subdiskojn"
-
-#: install_any.pm:1884
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Ekranfotoj haveblos post instalado en %s"
-
-#: install_gtk.pm:136
-#, c-format
-msgid "System installation"
-msgstr "Sistem-nstalado"
-
-#: install_gtk.pm:139
-#, c-format
-msgid "System configuration"
-msgstr "Sistem-konfigurado"
-
-#: install_interactive.pm:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Iuj aparatoj sur via komputilo bezonas \"proprietajn\" pelilojn por "
-"funkcii.\n"
-"Vi povas trovi iun informon pri ili ĉe: %s"
-
-#: install_interactive.pm:63
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Vi devas havi radikan subdiskon.\n"
-"Por ĉi tiu, kreu subdiskon (aŭ klaku estantan).\n"
-"Sekve elektu la agon \"Surmetingo\" kaj faru ĝin '/'"
-
-#: install_interactive.pm:68
-#, c-format
-msgid ""
-"You do not have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Vi ne havas interŝanĝan subdiskon\n"
-"\n"
-"Ĉu vi deziras daŭri tamen?"
-
-#: install_interactive.pm:71 install_steps.pm:215
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Vi devas havi FAT-subdiskon en /boot/efi"
-
-#: install_interactive.pm:98
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Mankas sufiĉan da libera spaco por disponigi novajn subdiskojn"
-
-#: install_interactive.pm:106
-#, c-format
-msgid "Use existing partitions"
-msgstr "Uzu ekzistantajn subdiskojn"
-
-#: install_interactive.pm:108
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "Ne ekzistas subdiskojn por uzi"
-
-#: install_interactive.pm:115
-#, c-format
-msgid "Use the Microsoft Windows® partition for loopback"
-msgstr "Uzu la Vindoza subdiskon por retrokonektado"
-
-#: install_interactive.pm:118
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Kiun subdiskon vi deziras uzi por Linux4Win?"
-
-#: install_interactive.pm:120
-#, c-format
-msgid "Choose the sizes"
-msgstr "Elektu la grandecojn"
-
-#: install_interactive.pm:121
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Radikosubdiska grandeco en MB: "
-
-#: install_interactive.pm:122
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Interŝanĝa subdiska grandeco en MB: "
-
-#: install_interactive.pm:131
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"Ne ekzistas FAT-a subdiskoj por regrandecigi\n"
-"aŭ uzi kiel retrokonektaj subdiskoj (aŭ ne estas sufiĉa da spaco)spaco)"
-
-#: install_interactive.pm:140
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Kiun subdiskon vi deziras regrandecigi?"
-
-#: install_interactive.pm:154
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occurred: %s"
-msgstr ""
-"La regrandecigilo por la FAT (Dosiero-Atingo-Tablo) ne povas trakti\n"
-"vian subdiskon, la sekvanta eraro okazis: %s"
-
-#: install_interactive.pm:157
-#, c-format
-msgid "Computing the size of the Microsoft Windows® partition"
-msgstr "Kalkulante la liberan spacon sur la Vindoza subdisko"
-
-#: install_interactive.pm:164
-#, c-format
-msgid ""
-"Your Microsoft Windows® partition is too fragmented. Please reboot your "
-"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
-"the Mandriva Linux installation."
-msgstr ""
-"Via Vindoza subdisko estas tro fragmentigata, bonvole uzu ``defrag'' antaŭe"
-
-#: install_interactive.pm:167
-#, fuzzy, c-format
-msgid ""
-"WARNING!\n"
-"\n"
-"\n"
-"Your Microsoft Windows® partition will be now resized.\n"
-"\n"
-"\n"
-"Be careful: this operation is dangerous. If you have not already done so, "
-"you first need to exit the installation, run \"chkdsk c:\" from a Command "
-"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
-"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
-"optionally run defrag, then restart the installation. You should also backup "
-"your data.\n"
-"\n"
-"\n"
-"When sure, press %s."
-msgstr ""
-"AVERTO!\n"
-"\n"
-"\n"
-"DrakX nun regrandecigos vian Vindozan subdiskon.\n"
-"\n"
-"\n"
-"Zorgu: ĉi tiu operacio estas danĝera. Se vi ne jam faris ĝin, vi prefere "
-"antaŭe eliru el la instalado, uzu \"scandisk\" sub Vindozo (kaj laŭvole rulu "
-"\"defrag\"), kaj sekve relanĉu la instaladon. Vi prefere faru ankaŭ rezervan "
-"kopion de via datenoj.\n"
-"\n"
-"\n"
-"Kiam vi estos certa, klaku \"%s\"."
-
-#: install_interactive.pm:179
-#, c-format
-msgid "Which size do you want to keep for Microsoft Windows® on"
-msgstr "Kiun grandecon vi deziras teni por Vindozo?"
-
-#: install_interactive.pm:180
-#, c-format
-msgid "partition %s"
-msgstr "subdisko: %s"
-
-#: install_interactive.pm:189
-#, c-format
-msgid "Resizing Microsoft Windows® partition"
-msgstr "Kalkulas Vindozajn dosiersistemajn limojn"
-
-#: install_interactive.pm:194
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Regrandeciĝo de FAT malsukcesis: %s"
-
-#: install_interactive.pm:209
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr ""
-"Ne ekzistas FAT-a subdisko por regrandecigi\n"
-"(aŭ ne estas sufiĉe da spaco)"
-
-#: install_interactive.pm:214
-#, c-format
-msgid "Remove Microsoft Windows®"
-msgstr "Forigu Vindozon"
-
-#: install_interactive.pm:214
-#, fuzzy, c-format
-msgid "Erase and use entire disk"
-msgstr "Forviŝu la tutan diskon"
-
-#: install_interactive.pm:216
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Vi havas pli ol unu fiksdisko, sur kiu vi deziras instali Linukson?"
-
-#: install_interactive.pm:222
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"Ĉiuj ekzistantaj subdiskoj kaj iliaj datenoj estos perdata sur drajvo %s"
-
-#: install_interactive.pm:237
-#, c-format
-msgid "Use fdisk"
-msgstr "Uzu fdisk"
-
-#: install_interactive.pm:240
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, do not forget to save using `w'"
-msgstr ""
-"Nun vi povas dispartigi %s.\n"
-"Kiam vi finiĝos, ne forgesu savi kun `w'."
-
-#: install_interactive.pm:276
-#, c-format
-msgid "I can not find any room for installing"
-msgstr "Mi ne trovas spacon por instali"
-
-#: install_interactive.pm:280
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "La Dispartigsorĉilo de DrakX trovis ĉi tiujn solvojn:"
-
-#: install_interactive.pm:288
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Dispartigado malsukcesis: %s"
-
-#: install_interactive.pm:295
-#, c-format
-msgid "Bringing up the network"
-msgstr "Startado de la reto"
-
-#: install_interactive.pm:300
-#, c-format
-msgid "Bringing down the network"
-msgstr "Haltas de la reto"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:10
-#, fuzzy, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandriva "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandriva Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. This document is a license agreement "
-"between you and \n"
-"Mandriva S.A. which applies to the Software Products.\n"
-"By installing, duplicating or using the Software Products in any manner, you "
-"explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this "
-"License. \n"
-"If you disagree with any portion of the License, you are not allowed to "
-"install, duplicate or use \n"
-"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner "
-"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate "
-"your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all "
-"copies of the \n"
-"Software Products.\n"
-"\n"
-"\n"
-"2. Limited Warranty\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
-"be liable for any special,\n"
-"incidental, direct or indirect damages whatsoever (including without "
-"limitation damages for loss of \n"
-"business, interruption of business, financial loss, legal fees and penalties "
-"resulting from a court \n"
-"judgment, or any other consequential loss) arising out of the use or "
-"inability to use the Software \n"
-"Products, even if Mandriva S.A. has been advised of the possibility or "
-"occurrence of such \n"
-"damages.\n"
-"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
-"COUNTRIES\n"
-"\n"
-"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
-"no circumstances, be \n"
-"liable for any special, incidental, direct or indirect damages whatsoever "
-"(including without \n"
-"limitation damages for loss of business, interruption of business, financial "
-"loss, legal fees \n"
-"and penalties resulting from a court judgment, or any other consequential "
-"loss) arising out \n"
-"of the possession and use of software components or arising out of "
-"downloading software components \n"
-"from one of Mandriva Linux sites which are prohibited or restricted in some "
-"countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong "
-"cryptography components \n"
-"included in the Software Products.\n"
-"\n"
-"\n"
-"3. The GPL License and Related Licenses\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to Mandriva.\n"
-"The programs developed by Mandriva S.A. are governed by the GPL License. "
-"Documentation written \n"
-"by Mandriva S.A. is governed by a specific license. Please refer to the "
-"documentation for \n"
-"further details.\n"
-"\n"
-"\n"
-"4. Intellectual Property Rights\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
-"as a whole or in \n"
-"parts, by all means and for all purposes.\n"
-"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
-"Mandriva S.A. \n"
-"\n"
-"\n"
-"5. Governing Laws \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact Mandriva S.A. \n"
-msgstr ""
-"Enkonduko\n"
-"\n"
-"La mastrum-sistemo kaj la diversaj komponantoj atingeblaj en la Mandriva "
-"Linuks-eldono\n"
-"estu en la sekvo nomataj la \"softvarproduktoj\". La softvarproduktoj "
-"inkluzivigas la tutaĵon de programoj, metodoj, reguloj kaj dokumentado "
-"koncerne la mastruman sistemon,\n"
-"kaj la diversajnf komponantojn de la Mandriva Linuks-eldono, sed\n"
-"ne estas limigitaj al ili.\n"
-"\n"
-"\n"
-"1. Licenckonsento \n"
-"Bonvole legu tiun ĉi dokumenton zorge. Tiu ĉi dokumento estas licenckonsento "
-"inter vi kaj\n"
-"Mandriva S.A. kiu aplikiĝas al la softvarproduktoj.\n"
-"Per instalado, duobligado aŭ uzado de la softvarproduktoj en ajna maniero, "
-"vi eksplicite\n"
-"akceptas kaj plene konsentas agi konforme al la teksto kaj kondiĉoj de tiu "
-"ĉi licenco.\n"
-"Se vi malsamopinias kun iu ajn parto de la licenco, vi ne rajtas instali, "
-"duobligi aŭ uzi\n"
-"la softvarproduktojn.\n"
-"Iu ajn provo instali, duobligi aŭ uzi la softvarproduktojn en maniero kiu ne "
-"kongruas kun la teksto kaj kondiĉoj de tiu ĉi licenco estas\n"
-
-#: install_messages.pm:90
-#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:98
-#, c-format
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Averto\n"
-"Bonvolu zorge legi la suban tekston. Se vi malsamopinias kun iu\n"
-"parto, vi ne rajtas instali la venontan KD-enhavon. Premu 'Rifuzas'\n"
-"por daŭrigi la instaladon sen uzi tiun KD-enhavon.\n"
-"\n"
-"\n"
-"Iuj komponantoj entenataj en la venonta KD ne estas regataj\n"
-"de la GPL-licenco aŭ similaj interkonsentoj. Ĉiu tia komponanto estas\n"
-"tiam regata de la teksto kaj kondiĉoj de ĝia propra specifa licenco.\n"
-"Bonvolu zorge legi tiajn specifajn licencojn kaj agi laŭ ili antaŭ\n"
-"ol uzi aŭ redisdoni la nomitajn komponantojn.\n"
-"Tiaj licencoj ĝenerale malhelpas transdonon, duobligon\n"
-"(escepte por savkopioj), redistribuadon, 'reverse engineering',\n"
-"malmuntadon, malkompiladon aŭ modifadon de la komponento.\n"
-"Ĉia rompo de la konsento tuj ĉesigos viajn rajtojn sub\n"
-"la respektiva licenco. Escepte se la specifa licenco donas al vi tiajn\n"
-"rajtojn, vi kutime ne povas instali la programojn sur pli ol unu\n"
-"sistemo, aŭ adapti ĝin por uzi ĝin en reto. En duba kazo bonvole kontaktu\n"
-"rekte la disdoninton aŭ la eldoninton de la komponanto.\n"
-"Transdonado al triaj partoj aŭ kopiado de tiaj komponantoj inkluzive de la \n"
-"dokumentaĵo normale estas malpermesita.\n"
-"\n"
-"\n"
-"Ĉiuj rajtoj pri la komponantoj de la venonta KD apartenas al ties\n"
-"respektivaj aŭtoroj kaj estas protektataj de leĝoj pri intelekta propraĵo "
-"kaj\n"
-"kopirajto aplikeblaj al softvaraj programoj.\n"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: install_messages.pm:131
-#, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press Enter to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandriva "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandriva Linux User's Guide."
-msgstr ""
-
-#: install_steps.pm:250
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Duobla surmetingo %s"
-
-#: install_steps.pm:482
-#, c-format
-msgid ""
-"Some important packages did not get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
-"\"\n"
-msgstr ""
-"Iuj gravaj pakaĵoj ne estis taŭge instalata.\n"
-"Aŭ via KDROM drajvo aŭ via KDROM disko estas difektita.\n"
-"Kontrolu la KDROM sur instalata komputilo per\n"
-"\"rpm -qpl media/main/*.rpm\"\n"
-
-#: install_steps_auto_install.pm:68 install_steps_stdio.pm:27
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Eniras paŝon `%s'\n"
-
-#: install_steps_gtk.pm:181
-#, c-format
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandriva Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Via sistemo havas malmulte da risurcoj. Eble vi havos problemojn pri\n"
-"instali Linuks-Mandrejkon. Se tio okazos, vi povos anstataŭ provi tekstan\n"
-"instaladon. Por ĉi tio, premu `F1' kiam vi startas de KDROM, kaj sekve\n"
-"tajpu `text'."
-
-#: install_steps_gtk.pm:211 install_steps_interactive.pm:605
-#, c-format
-msgid "Package Group Selection"
-msgstr "Elektado de Pakaĵaj Grupoj"
-
-#: install_steps_gtk.pm:254 install_steps_interactive.pm:548
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Tuta grandeco: %d / %d MB"
-
-#: install_steps_gtk.pm:299
-#, c-format
-msgid "Bad package"
-msgstr "Malbona pakaĵo"
-
-#: install_steps_gtk.pm:301
-#, c-format
-msgid "Version: "
-msgstr "Versio: "
-
-#: install_steps_gtk.pm:302
-#, c-format
-msgid "Size: "
-msgstr "Grandeco: "
-
-#: install_steps_gtk.pm:302
-#, fuzzy, c-format
-msgid "%d KB\n"
-msgstr "Grandeco: %d KB\n"
-
-#: install_steps_gtk.pm:303
-#, c-format
-msgid "Importance: "
-msgstr "Graveco: "
-
-#: install_steps_gtk.pm:336
-#, c-format
-msgid "You can not select/unselect this package"
-msgstr "Vi ne povas elektu/malelektu ĉi tiun pakaĵon"
-
-#: install_steps_gtk.pm:340 network/thirdparty.pm:331
-#, c-format
-msgid "due to missing %s"
-msgstr "pro mankanta %s"
-
-#: install_steps_gtk.pm:341
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "pro neplenumita %s"
-
-#: install_steps_gtk.pm:342
-#, c-format
-msgid "trying to promote %s"
-msgstr "mi provas disponigi %s"
-
-#: install_steps_gtk.pm:343
-#, c-format
-msgid "in order to keep %s"
-msgstr "por konservi %s"
-
-#: install_steps_gtk.pm:348
-#, c-format
-msgid ""
-"You can not select this package as there is not enough space left to install "
-"it"
-msgstr ""
-"Vi ne povas elekti ĉi tiun pakaĵon ĉar ne estas sufiĉe da spaco por instali\n"
-"ĝin."
-
-#: install_steps_gtk.pm:351
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "La sekvaj pakaĵoj estos instalataj"
-
-#: install_steps_gtk.pm:352
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "La sekvaj pakaĵoj estos malinstalataj"
-
-#: install_steps_gtk.pm:376
-#, c-format
-msgid "This is a mandatory package, it can not be unselected"
-msgstr "Ĉi tiu estas deviga pakaĵo, vi ne povas malelekti ĝin"
-
-#: install_steps_gtk.pm:378
-#, c-format
-msgid "You can not unselect this package. It is already installed"
-msgstr "Vi ne povas malelekti ĉi tiun pakaĵon. Ĝi estas jam instalita."
-
-#: install_steps_gtk.pm:381
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Ĉi tiu pakaĵo devus esti promociata.\n"
-"Ĉu vi certas ke vi deziras malelekti ĝin?"
-
-#: install_steps_gtk.pm:384
-#, c-format
-msgid "You can not unselect this package. It must be upgraded"
-msgstr "Vi ne povas malelekti ĉi tiun pakaĵon. Ĝi devus esti promociata."
-
-#: install_steps_gtk.pm:389
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Montru aŭtomate elektitajn pakaĵojn"
-
-#: install_steps_gtk.pm:394
-#, fuzzy, c-format
-msgid "Load/Save selection"
-msgstr "Elektado de Pakaĵoj"
-
-#: install_steps_gtk.pm:395
-#, c-format
-msgid "Updating package selection"
-msgstr "Ĝisdatigo de pakaĵ-elekto"
-
-#: install_steps_gtk.pm:400
-#, c-format
-msgid "Minimal install"
-msgstr "Minimuma instalado"
-
-#: install_steps_gtk.pm:414 install_steps_interactive.pm:467
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Elektu la pakaĵojn kiuj vi deziras instali"
-
-#: install_steps_gtk.pm:431 install_steps_interactive.pm:691
-#, c-format
-msgid "Installing"
-msgstr "Instalanta"
-
-#: install_steps_gtk.pm:457
-#, c-format
-msgid "No details"
-msgstr "Neniaj detaloj"
-
-#: install_steps_gtk.pm:472
-#, c-format
-msgid "Time remaining "
-msgstr "Tempo restanta "
-
-#: install_steps_gtk.pm:473
-#, c-format
-msgid "Estimating"
-msgstr "Taksas"
-
-#: install_steps_gtk.pm:500
-#, c-format
-msgid "%d packages"
-msgstr "%d pakaĵoj"
-
-#: install_steps_gtk.pm:543 install_steps_interactive.pm:719
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Ŝanĝu vian KDROM!\n"
-"\n"
-"Bonvole, enŝovu la KDROM-on etikedatan \"%s\" en via drajvo kaj klaku \"Jes"
-"\"\n"
-"kiam vi finos.\n"
-"Se vi ne havas ĝin, klaku \"Nuligu\" por eviti la instaladon de ĉi tiu KDROM."
-
-#: install_steps_gtk.pm:556 install_steps_interactive.pm:730
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Estis eraro ordigi pakaĵojn:"
-
-#: install_steps_gtk.pm:558 install_steps_interactive.pm:734
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Estis eraro dum instalado de pakaĵoj:"
-
-#: install_steps_gtk.pm:560 install_steps_interactive.pm:730
-#: install_steps_interactive.pm:734
-#, c-format
-msgid "Go on anyway?"
-msgstr "Ĉu vi deziras daŭri tamen?"
-
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:910 steps.pm:30
-#, c-format
-msgid "Summary"
-msgstr "Resumo"
-
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:906
-#: install_steps_interactive.pm:1055
-#, c-format
-msgid "not configured"
-msgstr "ne konfigurita"
-
-#: install_steps_gtk.pm:668
-#, c-format
-msgid ""
-"The following installation media have been found.\n"
-"If you want to skip some of them, you can unselect them now."
-msgstr ""
-
-#: install_steps_gtk.pm:677
-#, c-format
-msgid ""
-"You have the option to copy the contents of the CDs onto the hard drive "
-"before installation.\n"
-"It will then continue from the hard drive and the packages will remain "
-"available once the system is fully installed."
-msgstr ""
-
-#: install_steps_gtk.pm:679
-#, c-format
-msgid "Copy whole CDs"
-msgstr ""
-
-#: install_steps_interactive.pm:95
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Bonvole elektu vian klavar-aranĝon."
-
-#: install_steps_interactive.pm:97
-#, fuzzy, c-format
-msgid "Here is the full list of available keyboards"
-msgstr "Jen la kompleta listo de atingeblaj landoj"
-
-#: install_steps_interactive.pm:127
-#, c-format
-msgid "Install/Upgrade"
-msgstr "Instalado/Ĝisdatigo"
-
-#: install_steps_interactive.pm:128
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Ĉu tiu ĉi estas instalado aŭ ĝisdatigo?"
-
-#: install_steps_interactive.pm:134
-#, c-format
-msgid "Upgrade %s"
-msgstr "Ĝisdatigu %s"
-
-#: install_steps_interactive.pm:147
-#, fuzzy, c-format
-msgid "Encryption key for %s"
-msgstr "La pasvortoj ne egalas"
-
-#: install_steps_interactive.pm:170
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Bonvole elektu la specon de via muso."
-
-#: install_steps_interactive.pm:171
-#, c-format
-msgid "Mouse choice"
-msgstr ""
-
-#: install_steps_interactive.pm:180 standalone/mousedrake:46
-#, c-format
-msgid "Mouse Port"
-msgstr "Muspordo"
-
-#: install_steps_interactive.pm:181 standalone/mousedrake:47
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Bonvole, elektu al kiu seria pordo estas via muso konektata."
-
-#: install_steps_interactive.pm:191
-#, c-format
-msgid "Buttons emulation"
-msgstr ""
-
-#: install_steps_interactive.pm:193
-#, c-format
-msgid "Button 2 Emulation"
-msgstr ""
-
-#: install_steps_interactive.pm:194
-#, c-format
-msgid "Button 3 Emulation"
-msgstr ""
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: install_steps_interactive.pm:215
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Konfiguras PCMCIA kartojn..."
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: install_steps_interactive.pm:222
-#, c-format
-msgid "Configuring IDE"
-msgstr "Konfiguras IDE"
-
-#: install_steps_interactive.pm:242
-#, c-format
-msgid "No partition available"
-msgstr "neniuj haveblaj subdiskoj"
-
-#: install_steps_interactive.pm:245
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Leganta subdiskojn por trovi kroĉpunktojn"
-
-#: install_steps_interactive.pm:252
-#, c-format
-msgid "Choose the mount points"
-msgstr "Elektu surmetingojn"
-
-#: install_steps_interactive.pm:300
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Ne libera spaco por 1mb-startparto! La instalado daurigos, sed por startigi "
-"vian sistemon, vi devos krei la startpartan subdiskon en DiskDrake"
-
-#: install_steps_interactive.pm:305
-#, fuzzy, c-format
-msgid ""
-"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
-"to boot your system, you'll need to create the bootstrap partition in "
-"DiskDrake"
-msgstr ""
-"Ne libera spaco por 1mb-startparto! La instalado daurigos, sed por startigi "
-"vian sistemon, vi devos krei la startpartan subdiskon en DiskDrake"
-
-#: install_steps_interactive.pm:341
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-
-#: install_steps_interactive.pm:343
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Ĉu kontrolas malbonajn blokojn?"
-
-#: install_steps_interactive.pm:371
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
-msgstr ""
-"Mi malsukcesis kontroli la dosiersistemon %s. Ĉu vi deziras ripari la "
-"erarojn? (atentu, vi povas perdi datenojn)"
-
-#: install_steps_interactive.pm:374
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Nesufiĉa interŝanĝospaco por plenumi instalado, bonvolu aldoni iom"
-
-#: install_steps_interactive.pm:383
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Serĉas haveblajn pakaĵojn kaj refaras la rpm-datenbazon..."
-
-#: install_steps_interactive.pm:384 install_steps_interactive.pm:436
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Serĉas haveblajn pakaĵojn"
-
-#: install_steps_interactive.pm:405 install_steps_interactive.pm:810
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Elektu spegulon de kiu havigi la pakaĵojn"
-
-#: install_steps_interactive.pm:445
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Via komputilo ne havas sufiĉe da spaco por instalado aŭ promocio (%d > %d)."
-
-#: install_steps_interactive.pm:479
-#, fuzzy, c-format
-msgid ""
-"Please choose load or save package selection.\n"
-"The format is the same as auto_install generated files."
-msgstr ""
-"Bonvole elektu ŝargu aŭ konservu pakaĵ-elekton sur disketo.\n"
-"La formato estas la sama kiel disketoj generitaj per auto_install."
-
-#: install_steps_interactive.pm:481
-#, c-format
-msgid "Load"
-msgstr "Ŝargu"
-
-#: install_steps_interactive.pm:481 standalone/drakbackup:4083
-#: standalone/drakbackup:4153 standalone/logdrake:175
-#, c-format
-msgid "Save"
-msgstr "Konservu"
-
-#: install_steps_interactive.pm:489
-#, fuzzy, c-format
-msgid "Bad file"
-msgstr "Ŝargu dosieron"
-
-#: install_steps_interactive.pm:562
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Elektita grandeco estas pli ampleksa ol disponebla spaco"
-
-#: install_steps_interactive.pm:577
-#, c-format
-msgid "Type of install"
-msgstr "Instaltipo"
-
-#: install_steps_interactive.pm:578
-#, c-format
-msgid ""
-"You have not selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Vi ne elektis pakaĵgrupon.\n"
-"Bonvole elektu la minimuman instaladon kiun vi deziras:"
-
-#: install_steps_interactive.pm:582
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Kun baza dokumentaĵo (rekomendita!)"
-
-#: install_steps_interactive.pm:583
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Vere minimuma instalado (precipe ne urpmi)"
-
-#: install_steps_interactive.pm:622 standalone/drakxtv:52
-#, c-format
-msgid "All"
-msgstr "Ĉiuj"
-
-#: install_steps_interactive.pm:661
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"Se vi havas ĉiujn de la KDROM-oj en la listo sube, klaku \"Jes\".\n"
-"Se vi havas neniujn de ĉi tiuj KDROM-oj, klaku \"Nuligu\".\n"
-"Se vi mankas nur iujn de la KDROM-oj, malelektu ilin, kaj poste klaku \"Jes"
-"\"."
-
-#: install_steps_interactive.pm:666
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "KDROM etikedata \"%s\""
-
-#: install_steps_interactive.pm:691
-#, c-format
-msgid "Preparing installation"
-msgstr "Preparas instaladon"
-
-#: install_steps_interactive.pm:699
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Instalas pakaĵo %s\n"
-"%d%%"
-
-#: install_steps_interactive.pm:748
-#, c-format
-msgid "Post-install configuration"
-msgstr "Post-instala konfigurado"
-
-#: install_steps_interactive.pm:755
-#, c-format
-msgid "Please ensure the Update Modules media is in drive %s"
-msgstr ""
-
-#: install_steps_interactive.pm:783
-#, c-format
-msgid "Updates"
-msgstr "Ĝisdatigoj"
-
-#: install_steps_interactive.pm:784
-#, c-format
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates?"
-msgstr ""
-"Vi havas nun la eblecon deŝuti ĝisdatigitajn pakaĵojn. Tiuj pakaĵoj\n"
-"estas ĝisdatigitaj post eldonado de tiu ĉi eldono. Ili povas\n"
-"enteni sekureco- aŭ eraro-riparojn.\n"
-"\n"
-"Por deŝuti tiujn pakaĵojn, vi bezonas funkciantan Interret-\n"
-"konekton.\n"
-"\n"
-"Ĉu vi deziras instali tiujn ĝisdatigojn?"
-
-#: install_steps_interactive.pm:805
-#, c-format
-msgid ""
-"Contacting Mandriva Linux web site to get the list of available mirrors..."
-msgstr ""
-"Mi kontaktas la Mandriva Linuksan retpaĝon por havigi la liston de "
-"disponeblaj speguloj..."
-
-#: install_steps_interactive.pm:824
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Kontaktu la spegulon por havigi la liston de havebla pakaĵoj"
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Ne povis kontakti spegulon %s"
-
-#: install_steps_interactive.pm:828
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Ĉu vi ŝatus reprovi?"
-
-#: install_steps_interactive.pm:855 standalone/drakclock:45
-#: standalone/finish-install:56
-#, c-format
-msgid "Which is your timezone?"
-msgstr "kio estas vian horzonon?"
-
-#: install_steps_interactive.pm:860
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Auxtomata hor-sinkronizado (uzante NTP) "
-
-#: install_steps_interactive.pm:868
-#, c-format
-msgid "NTP Server"
-msgstr "NTP Servilo"
-
-#: install_steps_interactive.pm:923 install_steps_interactive.pm:931
-#: install_steps_interactive.pm:949 install_steps_interactive.pm:956
-#: install_steps_interactive.pm:1107 services.pm:133
-#: standalone/drakbackup:1596
-#, c-format
-msgid "System"
-msgstr "Sistemo"
-
-#: install_steps_interactive.pm:963 install_steps_interactive.pm:990
-#: install_steps_interactive.pm:1007 install_steps_interactive.pm:1023
-#: install_steps_interactive.pm:1034
-#, c-format
-msgid "Hardware"
-msgstr "Aparataro"
-
-#: install_steps_interactive.pm:969 install_steps_interactive.pm:978
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Malproksima CUPS-a servilo"
-
-#: install_steps_interactive.pm:969
-#, c-format
-msgid "No printer"
-msgstr "Neniu printilo"
-
-#: install_steps_interactive.pm:1011
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Ĉu vi havas ISA-sonkarton?"
-
-#: install_steps_interactive.pm:1013
-#, fuzzy, c-format
-msgid ""
-"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
-"card"
-msgstr "Rulu \"sndconfig\" post instalado por konfiguri vian sonkarton"
-
-#: install_steps_interactive.pm:1015
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr "Ne detektis sonkarto. Provu \"harddrake\" post instalado"
-
-#: install_steps_interactive.pm:1035
-#, c-format
-msgid "Graphical interface"
-msgstr "Grafika interfaco"
-
-#: install_steps_interactive.pm:1041 install_steps_interactive.pm:1053
-#, c-format
-msgid "Network & Internet"
-msgstr "Reto kaj Interreto"
-
-#: install_steps_interactive.pm:1055
-#, fuzzy, c-format
-msgid "configured"
-msgstr "rekonfiguru"
-
-#: install_steps_interactive.pm:1064 install_steps_interactive.pm:1078
-#: security/level.pm:55 steps.pm:20
-#, c-format
-msgid "Security"
-msgstr "Sekureco"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "activated"
-msgstr "aktiva"
-
-#: install_steps_interactive.pm:1083
-#, c-format
-msgid "disabled"
-msgstr "malebligita"
-
-#: install_steps_interactive.pm:1094
-#, c-format
-msgid "Boot"
-msgstr "Starto"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1098 printer/printerdrake.pm:961
-#, c-format
-msgid "%s on %s"
-msgstr "%s sur %s"
-
-#: install_steps_interactive.pm:1112 services.pm:175
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: install_steps_interactive.pm:1124
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "Vi ne konfiguris X-on. Ĉu vi certas vere voli tion?"
-
-#: install_steps_interactive.pm:1205
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Preparas startŝargilon"
-
-#: install_steps_interactive.pm:1215
-#, fuzzy, c-format
-msgid ""
-"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
-"will not work for you. The install will continue, but you'll need to use "
-"BootX or some other means to boot your machine. The kernel argument for the "
-"root fs is: root=%s"
-msgstr ""
-"Ŝajne vi havas malnovegan aŭ nekonatan maŝinon,\n"
-"la yaboot-startilo ne funkcios por vi.\n"
-"La instalado daŭrigos, sed vi devos\n"
-"uzi BootX aŭ alian rimedon por startigi vian maŝinon"
-
-#: install_steps_interactive.pm:1221
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Ĉu vi deziras uzi aboot-on?"
-
-#: install_steps_interactive.pm:1224
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Eraro daŭre mi instalis \"aboot\",\n"
-"Ĉu mi devus provi perforte instali eĉ se tio detruas la unuan subdiskon?"
-
-#: install_steps_interactive.pm:1241
-#, c-format
-msgid ""
-"In this security level, access to the files in the Windows partition is "
-"restricted to the administrator."
-msgstr ""
-
-#: install_steps_interactive.pm:1270 standalone/drakautoinst:76
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Enŝovu malplenan disketon en drajvo %s"
-
-#: install_steps_interactive.pm:1275
-#, fuzzy, c-format
-msgid "Please insert another floppy for drivers disk"
-msgstr "Enŝovu la uzitan startigan disketon en drajvo %s"
-
-#: install_steps_interactive.pm:1277
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Kreas aŭtoinstalan disketon"
-
-#: install_steps_interactive.pm:1289
-#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Kelkaj paŝoj ne finiĝis.\n"
-"\n"
-"Ĉu vi vere volas ĉesi nun?"
-
-#: install_steps_interactive.pm:1299 standalone/draksambashare:421
-#: standalone/draksambashare:527 standalone/drakups:118 standalone/drakups:157
-#: standalone/logdrake:451 standalone/logdrake:457
-#, c-format
-msgid "Congratulations"
-msgstr "Gratulojn"
-
-#: install_steps_interactive.pm:1307 install_steps_interactive.pm:1308
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Kreu aŭtoinstalan disketon"
-
-#: install_steps_interactive.pm:1309
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-
-#: install_steps_newt.pm:20
-#, c-format
-msgid "Mandriva Linux Installation %s"
-msgstr "Linuks-Mandrejka Instalado %s"
-
-#. -PO: This string must fit in a 80-char wide text screen
-#: install_steps_newt.pm:37
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr " <Tabo>/<Alt-Tabo> inter eroj | <Spaco> elektas | <F12> sekva ekrano "
+msgid "No"
+msgstr "Ne"
-#: interactive.pm:196
+#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "Elektu dosieron"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakbackup:1537
-#: standalone/drakfont:649 standalone/drakhosts:242 standalone/draknfs:605
-#: standalone/draksambashare:1127 standalone/drakups:299
-#: standalone/drakups:359 standalone/drakups:379 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Add"
msgstr "Aldonu"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakhosts:249
-#: standalone/draknfs:612 standalone/draksambashare:1084
-#: standalone/draksambashare:1137 standalone/draksambashare:1176
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Modify"
msgstr "Ŝanĝu"
-#: interactive.pm:321 interactive/gtk.pm:508 standalone/drakfont:732
-#: standalone/drakhosts:256 standalone/draknfs:619
-#: standalone/draksambashare:1085 standalone/draksambashare:1145
-#: standalone/draksambashare:1184 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Remove"
msgstr "Forigu"
-#: interactive.pm:398
-#, c-format
-msgid "Basic"
-msgstr "Baza"
-
-#: interactive.pm:436 interactive/newt.pm:321 ugtk2.pm:490
+#: interactive.pm:538 interactive/curses.pm:217 ugtk2.pm:508
#, c-format
msgid "Finish"
msgstr "Finu"
-#: interactive/newt.pm:92
+#: interactive.pm:539 interactive/curses.pm:214 ugtk2.pm:506
#, c-format
-msgid "Do"
-msgstr "Faru"
+msgid "Previous"
+msgstr "Antaŭa"
#: interactive/stdio.pm:29 interactive/stdio.pm:148
#, c-format
@@ -6669,1951 +3254,1205 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: keyboard.pm:171 keyboard.pm:202
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTZ)"
-msgstr "Ĉeĥa (QWERTZ)"
-
-#: keyboard.pm:172 keyboard.pm:204
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German"
-msgstr "Germana"
-
-#: keyboard.pm:173
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak"
-msgstr "Dvorak-a"
-
-#: keyboard.pm:174 keyboard.pm:217
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Spanish"
-msgstr "Hispana"
-
-#: keyboard.pm:175 keyboard.pm:218
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Finnish"
-msgstr "Finna"
-
-#: keyboard.pm:176 keyboard.pm:220
-#, c-format
-msgid ""
-"_: keyboard\n"
-"French"
-msgstr "Franca"
-
-#: keyboard.pm:177 keyboard.pm:264
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Norwegian"
-msgstr "Norvega"
-
-#: keyboard.pm:178
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish"
-msgstr "Pola"
-
-#: keyboard.pm:179 keyboard.pm:275
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian"
-msgstr "Rusa"
-
-#: keyboard.pm:180 keyboard.pm:281
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swedish"
-msgstr "Sveda"
-
-#: keyboard.pm:181 keyboard.pm:310
-#, c-format
-msgid "UK keyboard"
-msgstr "Unuiĝinta Regna klavaro"
-
-#: keyboard.pm:182 keyboard.pm:313
-#, c-format
-msgid "US keyboard"
-msgstr "Usona klavaro"
-
-#: keyboard.pm:184
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Albanian"
-msgstr "Albana"
-
-#: keyboard.pm:185
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (old)"
-msgstr "Armena (malnova)"
-
-#: keyboard.pm:186
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (typewriter)"
-msgstr "Armena (skribmaŝina)"
-
-#: keyboard.pm:187
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Armenian (phonetic)"
-msgstr "Armena (fonetika)"
-
-#: keyboard.pm:188
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Arabic"
-msgstr "araba"
-
-#: keyboard.pm:189
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Azerbaidjani (latin)"
-msgstr "Azerbajĝana (latina)"
-
-#: keyboard.pm:190
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belgian"
-msgstr "Belga"
-
-#: keyboard.pm:191
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Inscript-layout)"
-msgstr "Bengala (Inscript aranĝo)"
-
-#: keyboard.pm:192
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bengali (Probhat)"
-msgstr "Bengala (Probhat aranĝo)"
-
-#: keyboard.pm:193
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (phonetic)"
-msgstr "Bulgara (fonetika)"
-
-#: keyboard.pm:194
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bulgarian (BDS)"
-msgstr "Bulgara (BDS)"
-
-#: keyboard.pm:195
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Brazilian (ABNT-2)"
-msgstr "Brazila (ABNT-2)"
-
-#: keyboard.pm:196
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Bosnian"
-msgstr "Bosna"
-
-#: keyboard.pm:197
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Belarusian"
-msgstr "Belarusa"
-
-#: keyboard.pm:198
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (German layout)"
-msgstr "Svisa (germana aranĝo)"
-
-#: keyboard.pm:199
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Swiss (French layout)"
-msgstr "Svisa (franca aranĝo)"
-
-#: keyboard.pm:201
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Cherokee syllabics"
-msgstr "araba"
-
-#: keyboard.pm:203
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Czech (QWERTY)"
-msgstr "Ĉeĥa (QWERTY)"
-
-#: keyboard.pm:205
-#, c-format
-msgid ""
-"_: keyboard\n"
-"German (no dead keys)"
-msgstr "Germana (neniom da mortaj klavoj)"
-
-#: keyboard.pm:206
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Devanagari"
-msgstr "devanagara"
-
-#: keyboard.pm:207
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Danish"
-msgstr "Dana"
-
-#: keyboard.pm:208
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (US)"
-msgstr "Dvorak-a (US)"
-
-#: keyboard.pm:209
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Esperanto)"
-msgstr "Dvorak-a (Norvega)"
-
-#: keyboard.pm:210
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (French)"
-msgstr "Dvorak-a (Norvega)"
-
-#: keyboard.pm:211
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (UK)"
-msgstr "Dvorak-a (US)"
-
-#: keyboard.pm:212
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Norwegian)"
-msgstr "Dvorak-a (Norvega)"
-
-#: keyboard.pm:213
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Polish)"
-msgstr "Dvorak-a (Sveda)"
-
-#: keyboard.pm:214
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dvorak (Swedish)"
-msgstr "Dvorak-a (Sveda)"
-
-#: keyboard.pm:215
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Dzongkha/Tibetan"
-msgstr "Bosna"
-
-#: keyboard.pm:216
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Estonian"
-msgstr "Estona"
-
-#: keyboard.pm:219
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Faroese"
-msgstr "Greka"
-
-#: keyboard.pm:221
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Russian\" layout)"
-msgstr "Kartvela (\"Rusa\" aranĝo)"
-
-#: keyboard.pm:222
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Georgian (\"Latin\" layout)"
-msgstr "Kartvela (\"Latina\" aranĝo)"
-
-#: keyboard.pm:223
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek"
-msgstr "Greka"
-
-#: keyboard.pm:224
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Greek (polytonic)"
-msgstr ""
-
-#: keyboard.pm:225
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gujarati"
-msgstr "gujarata"
-
-#: keyboard.pm:226
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Gurmukhi"
-msgstr "gumurka"
-
-#: keyboard.pm:227
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Croatian"
-msgstr "Kroata"
-
-#: keyboard.pm:228
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Hungarian"
-msgstr "Hungara"
-
-#: keyboard.pm:229
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Irish"
-msgstr ""
-
-#: keyboard.pm:230
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli"
-msgstr "Israela"
-
-#: keyboard.pm:231
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Israeli (phonetic)"
-msgstr "Israela (fonetika)"
-
-#: keyboard.pm:232
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Iranian"
-msgstr "Irana"
-
-#: keyboard.pm:233
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Icelandic"
-msgstr "Islanda"
-
-#: keyboard.pm:234
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Italian"
-msgstr "Itala"
-
-#: keyboard.pm:235
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Inuktitut"
-msgstr "inuita"
-
-#: keyboard.pm:239
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Japanese 106 keys"
-msgstr "Japana 106 klavoj"
-
-#: keyboard.pm:240
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Kannada"
-msgstr "Kanado"
-
-#: keyboard.pm:243
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Korean"
-msgstr "Korea klavaro"
-
-#: keyboard.pm:245
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Kurdish (arabic script)"
-msgstr "araba"
-
-#: keyboard.pm:246
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Kyrgyz"
-msgstr "Unuiĝinta Regna klavaro"
-
-#: keyboard.pm:247
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latin American"
-msgstr "Latinamerika"
-
-#: keyboard.pm:249
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Laotian"
-msgstr "Laosa"
-
-#: keyboard.pm:250
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (old)"
-msgstr "Litova AZERTY-a (malnova)"
-
-#: keyboard.pm:252
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian AZERTY (new)"
-msgstr "Litova AZERTY-a (nova)"
-
-#: keyboard.pm:253
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"number row\" QWERTY"
-msgstr "Litova \"numero-vica\" QWERTY-a"
-
-#: keyboard.pm:254
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Lithuanian \"phonetic\" QWERTY"
-msgstr "Litova \"fonetika\" QWERTY-a"
-
-#: keyboard.pm:255
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Latvian"
-msgstr "Latva"
-
-#: keyboard.pm:256
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Malayalam"
-msgstr "Malajalama"
-
-#: keyboard.pm:258
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Macedonian"
-msgstr "Macedona"
-
-#: keyboard.pm:259
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Myanmar (Burmese)"
-msgstr "Mianmara (burma)"
-
-#: keyboard.pm:260
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Mongolian (cyrillic)"
-msgstr "Mongola (cirila)"
-
-#: keyboard.pm:261
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (UK)"
-msgstr "Malta (UK)"
-
-#: keyboard.pm:262
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Maltese (US)"
-msgstr "Malta (US)"
-
-#: keyboard.pm:263
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Dutch"
-msgstr "Nederlanda"
-
-#: keyboard.pm:265
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Oriya"
-msgstr "Sirio"
-
-#: keyboard.pm:266
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwerty layout)"
-msgstr "Pola (qwerty aranĝo)"
-
-#: keyboard.pm:267
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Polish (qwertz layout)"
-msgstr "Pola (qwertz aranĝo)"
-
-#: keyboard.pm:269
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Pashto"
-msgstr "Pola"
-
-#: keyboard.pm:270
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Portuguese"
-msgstr "Portugala"
-
-#: keyboard.pm:272
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Canadian (Quebec)"
-msgstr "Kanada (Kebeka)"
-
-#: keyboard.pm:273
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwertz)"
-msgstr "Rumana (qwertz-a)"
-
-#: keyboard.pm:274
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Romanian (qwerty)"
-msgstr "Rumana (qwerty-a)"
-
-#: keyboard.pm:276
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Russian (phonetic)"
-msgstr "Rusa (fonetika)"
-
-#: keyboard.pm:277
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (norwegian)"
-msgstr "Dvorak-a (Norvega)"
-
-#: keyboard.pm:278
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Saami (swedish/finnish)"
-msgstr ""
-
-#: keyboard.pm:280
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Sindhi"
-msgstr "Taja klavaro"
-
-#: keyboard.pm:282
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovenian"
-msgstr "Slovena"
-
-#: keyboard.pm:284
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Sinhala"
-msgstr ""
-
-#: keyboard.pm:285
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTZ)"
-msgstr "Slovaka (QWERTZ)"
-
-#: keyboard.pm:286
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Slovakian (QWERTY)"
-msgstr "Slovaka (QWERTY)"
-
-#: keyboard.pm:288
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Serbian (cyrillic)"
-msgstr "Serba (cirila)"
-
-#: keyboard.pm:289
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac"
-msgstr "Sirio"
-
-#: keyboard.pm:290
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Syriac (phonetic)"
-msgstr "Armena (fonetika)"
-
-#: keyboard.pm:291
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Telugu"
-msgstr "Belgio"
-
-#: keyboard.pm:293
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (ISCII-layout)"
-msgstr "Tamila (ISCII)"
-
-#: keyboard.pm:294
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tamil (Typewriter-layout)"
-msgstr "Tamila (skribmaŝina)"
-
-#: keyboard.pm:295
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Kedmanee)"
-msgstr "Taja klavaro"
-
-#: keyboard.pm:296
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (TIS-820)"
-msgstr "Taja klavaro"
-
-#: keyboard.pm:298
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Thai (Pattachote)"
-msgstr "Taja klavaro"
-
-#: keyboard.pm:300
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (moroccan layout) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:301
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Tifinagh (phonetic) (+latin/arabic)"
-msgstr ""
-
-#: keyboard.pm:303
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Tajik"
-msgstr "Taja klavaro"
-
-#: keyboard.pm:305
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Turkmen"
-msgstr "Germana"
-
-#: keyboard.pm:306
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (traditional \"F\" model)"
-msgstr "Turka (tradicia \"F\" modelo)"
-
-#: keyboard.pm:307
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Turkish (modern \"Q\" model)"
-msgstr "Turka (moderna \"Q\" modelo)"
-
-#: keyboard.pm:309
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Ukrainian"
-msgstr "Ukrajna"
-
-#: keyboard.pm:312
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Urdu keyboard"
-msgstr "Sirio"
-
-#: keyboard.pm:314
-#, c-format
-msgid "US keyboard (international)"
-msgstr "Usona klavaro (internacia)"
-
-#: keyboard.pm:315
-#, fuzzy, c-format
-msgid ""
-"_: keyboard\n"
-"Uzbek (cyrillic)"
-msgstr "Serba (cirila)"
-
-#: keyboard.pm:317
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Vietnamese \"numeric row\" QWERTY"
-msgstr "Vjetnama \"numero-vica\" QWERTY-a"
-
-#: keyboard.pm:318
-#, c-format
-msgid ""
-"_: keyboard\n"
-"Yugoslavian (latin)"
-msgstr "Jugoslava (latina)"
-
-#: keyboard.pm:325
-#, c-format
-msgid "Right Alt key"
-msgstr ""
-
-#: keyboard.pm:326
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:327
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:328
-#, c-format
-msgid "CapsLock key"
-msgstr ""
-
-#: keyboard.pm:329
-#, c-format
-msgid "Shift and CapsLock keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:330
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:331
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:332
-#, c-format
-msgid "\"Menu\" key"
-msgstr "\"Menuo\"-klavo"
-
-#: keyboard.pm:333
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Maldekstra \"Vindozo\"-klavo"
-
-#: keyboard.pm:334
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Dekstra \"Vindozo\"-klavo"
-
-#: keyboard.pm:335
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:336
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr ""
-
-#: keyboard.pm:337
-#, fuzzy, c-format
-msgid "Left Shift key"
-msgstr "Maldekstra \"Vindozo\"-klavo"
-
-#: keyboard.pm:338
-#, fuzzy, c-format
-msgid "Right Shift key"
-msgstr "Dekstra \"Vindozo\"-klavo"
-
-#: keyboard.pm:339
-#, fuzzy, c-format
-msgid "Left Alt key"
-msgstr "Maldekstra \"Vindozo\"-klavo"
-
-#: keyboard.pm:340
-#, fuzzy, c-format
-msgid "Left Control key"
-msgstr "Malproksima printilo"
-
-#: keyboard.pm:341
-#, fuzzy, c-format
-msgid "Right Control key"
-msgstr "Dekstra \"Vindozo\"-klavo"
-
-#: keyboard.pm:377
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Ĉi tie vi povas elekti la klavon aŭ klavkombinon kiu\n"
-"ebligos al vi ŝalti inter la diversaj klavaroj\n"
-"(ekz-e latinaj kaj ne-latinaj)"
-
-#: keyboard.pm:382
-#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
-msgstr ""
-
#. -PO: the string "default:LTR" can be translated *ONLY* as "default:LTR"
#. -PO: or as "default:RTL", depending if your language is written from
#. -PO: left to right, or from right to left; any other string is wrong.
-#: lang.pm:178
+#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"
-#: lang.pm:195
+#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "Andoro"
-#: lang.pm:196 network/adsl_consts.pm:943
+#: lang.pm:211 timezone.pm:213
#, c-format
msgid "United Arab Emirates"
msgstr "Unuiĝintaj Arabaj Emirlandoj"
-#: lang.pm:197
+#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "Afganistano"
-#: lang.pm:198
+#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigvo-Barbudo"
-#: lang.pm:199
+#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "Angilo"
-#: lang.pm:200
+#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "Albanio"
-#: lang.pm:201
+#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "Armenio"
-#: lang.pm:202
+#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "Nederlandaj Antiloj"
-#: lang.pm:203
+#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "Angolo"
-#: lang.pm:204
+#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "Antarktio"
-#: lang.pm:205 network/adsl_consts.pm:55 standalone/drakxtv:50
+#: lang.pm:220 timezone.pm:258
#, c-format
msgid "Argentina"
msgstr "Argentino"
-#: lang.pm:206
+#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "Amerika Samoo"
-#: lang.pm:209
+#: lang.pm:222 mirror.pm:11 timezone.pm:216
+#, c-format
+msgid "Austria"
+msgstr "Aŭstrio"
+
+#: lang.pm:223 mirror.pm:10 timezone.pm:254
+#, c-format
+msgid "Australia"
+msgstr "Auxstralio"
+
+#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "Arubo"
-#: lang.pm:210
+#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "Azerbajĝano"
-#: lang.pm:211
+#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosnio-Hercegovino"
-#: lang.pm:212
+#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "Barbado"
-#: lang.pm:213
+#: lang.pm:228 timezone.pm:198
#, c-format
msgid "Bangladesh"
msgstr "Bangladeŝo"
-#: lang.pm:215
+#: lang.pm:229 mirror.pm:12 timezone.pm:218
+#, c-format
+msgid "Belgium"
+msgstr "Belgio"
+
+#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "Burkino"
-#: lang.pm:216 network/adsl_consts.pm:170 network/adsl_consts.pm:179
+#: lang.pm:231 timezone.pm:219
#, c-format
msgid "Bulgaria"
msgstr "Bulgario"
-#: lang.pm:217
+#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "Barejno"
-#: lang.pm:218
+#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "Burundo"
-#: lang.pm:219
+#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "Benino"
-#: lang.pm:220
+#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "Bermudo"
-#: lang.pm:221
+#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "Brunejo Darusalamo"
-#: lang.pm:222
+#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "Bolivio"
-#: lang.pm:224
+#: lang.pm:238 mirror.pm:13 timezone.pm:259
+#, c-format
+msgid "Brazil"
+msgstr "Brazilo"
+
+#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "Bahamoj"
-#: lang.pm:225
+#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "Butano"
-#: lang.pm:226
+#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "Buvet-Insulo"
-#: lang.pm:227
+#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "Bocvano"
-#: lang.pm:228
+#: lang.pm:243 timezone.pm:217
#, c-format
msgid "Belarus"
msgstr "Belarusio"
-#: lang.pm:229
+#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "Belizio"
-#: lang.pm:231
+#: lang.pm:245 mirror.pm:14 timezone.pm:248
+#, c-format
+msgid "Canada"
+msgstr "Kanado"
+
+#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Kokos-Insuloj (Keeling)"
-#: lang.pm:232
+#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Kongo (Kinŝaso)"
-#: lang.pm:233
+#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "Centrafrika Respubliko"
-#: lang.pm:234
+#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Kongo (Brazavilo)"
-#: lang.pm:236
+#: lang.pm:250 mirror.pm:38 timezone.pm:242
+#, c-format
+msgid "Switzerland"
+msgstr "Svislando"
+
+#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "Ebur-Bordo"
-#: lang.pm:237
+#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "Kuk-Insularo"
-#: lang.pm:238
+#: lang.pm:253 timezone.pm:260
#, c-format
msgid "Chile"
msgstr "Ĉilio"
-#: lang.pm:239
+#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "Kameruno"
-#: lang.pm:240 network/adsl_consts.pm:188 network/adsl_consts.pm:197
-#: network/adsl_consts.pm:206 network/adsl_consts.pm:215
-#: network/adsl_consts.pm:224 network/adsl_consts.pm:233
-#: network/adsl_consts.pm:242 network/adsl_consts.pm:251
-#: network/adsl_consts.pm:260 network/adsl_consts.pm:269
-#: network/adsl_consts.pm:278 network/adsl_consts.pm:287
-#: network/adsl_consts.pm:296 network/adsl_consts.pm:305
-#: network/adsl_consts.pm:314 network/adsl_consts.pm:323
-#: network/adsl_consts.pm:332 network/adsl_consts.pm:341
-#: network/adsl_consts.pm:350 network/adsl_consts.pm:359
+#: lang.pm:255 timezone.pm:199
#, c-format
msgid "China"
msgstr "Ĉinio"
-#: lang.pm:241
+#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "Kolombio"
-#: lang.pm:243
+#: lang.pm:257 mirror.pm:15
+#, c-format
+msgid "Costa Rica"
+msgstr "Kostariko"
+
+#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "Serbujo kaj Montenegro"
-#: lang.pm:244
+#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "Kubo"
-#: lang.pm:245
+#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "Kabo-Verdo"
-#: lang.pm:246
+#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "Kristnask-Insulo"
-#: lang.pm:247
+#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "Kipro"
-#: lang.pm:250
+#: lang.pm:263 mirror.pm:16 timezone.pm:220
+#, c-format
+msgid "Czech Republic"
+msgstr "la Ĉeĥa Respubliko"
+
+#: lang.pm:264 mirror.pm:21 timezone.pm:225
+#, c-format
+msgid "Germany"
+msgstr "Germanio"
+
+#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "Ĝibutio"
-#: lang.pm:252
+#: lang.pm:266 mirror.pm:17 timezone.pm:221
+#, c-format
+msgid "Denmark"
+msgstr "Danlando"
+
+#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "Dominiko"
-#: lang.pm:253
+#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "Domingo"
-#: lang.pm:254 network/adsl_consts.pm:44
+#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "Alĝerio"
-#: lang.pm:255
+#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "Ekvadoro"
-#: lang.pm:257
+#: lang.pm:271 mirror.pm:18 timezone.pm:222
+#, c-format
+msgid "Estonia"
+msgstr "Estonio"
+
+#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "Egipto"
-#: lang.pm:258
+#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "Okcidenta Saharo"
-#: lang.pm:259
+#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "Eritreo"
-#: lang.pm:261
+#: lang.pm:275 mirror.pm:36 timezone.pm:240
+#, c-format
+msgid "Spain"
+msgstr "Hispanujo"
+
+#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "Etiopio"
-#: lang.pm:263
+#: lang.pm:277 mirror.pm:19 timezone.pm:223
+#, c-format
+msgid "Finland"
+msgstr "Finnlando"
+
+#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "Fiĝio"
-#: lang.pm:264
+#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Falklandaj Insuloj (Malvinoj)"
-#: lang.pm:265
+#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "Mikronezio"
-#: lang.pm:266
+#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "Faroaj Insuloj"
-#: lang.pm:268
+#: lang.pm:282 mirror.pm:20 timezone.pm:224
+#, c-format
+msgid "France"
+msgstr "Francio"
+
+#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "Gabono"
-#: lang.pm:269 network/adsl_consts.pm:954 network/adsl_consts.pm:965
-#: network/netconnect.pm:46
+#: lang.pm:284 timezone.pm:244
#, c-format
msgid "United Kingdom"
msgstr "Unuiĝinta Regno"
-#: lang.pm:270
+#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "Grenado"
-#: lang.pm:271
+#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "Kartvelujo"
-#: lang.pm:272
+#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "Franca Gujano"
-#: lang.pm:273
+#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "Ganao"
-#: lang.pm:274
+#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "Ĝibraltaro"
-#: lang.pm:275
+#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "Groenlando"
-#: lang.pm:276
+#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "Gambio"
-#: lang.pm:277
+#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "Gvineo"
-#: lang.pm:278
+#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "Gvadelupo"
-#: lang.pm:279
+#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "Ekvatora Gvineo"
-#: lang.pm:281
+#: lang.pm:295 mirror.pm:22 timezone.pm:226
+#, c-format
+msgid "Greece"
+msgstr "Grekio"
+
+#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "Sud-Georgio kaj la Sudaj Sandviĉaj Insuloj"
-#: lang.pm:282
+#: lang.pm:297 timezone.pm:249
#, c-format
msgid "Guatemala"
msgstr "Gvatemalo"
-#: lang.pm:283
+#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "Gvamo"
-#: lang.pm:284
+#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "Gvineo-Bisaŭo"
-#: lang.pm:285
+#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "Gujano"
-#: lang.pm:286
+#: lang.pm:301
#, fuzzy, c-format
msgid "Hong Kong SAR (China)"
msgstr "Hongkongo"
-#: lang.pm:287
+#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Heard- kaj McDonald-Insuloj"
-#: lang.pm:288
+#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "Honduro"
-#: lang.pm:289
+#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "Kroatio"
-#: lang.pm:290
+#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "Haitio"
-#: lang.pm:292
+#: lang.pm:306 mirror.pm:23 timezone.pm:227
+#, c-format
+msgid "Hungary"
+msgstr "Hungario"
+
+#: lang.pm:307 timezone.pm:202
#, c-format
msgid "Indonesia"
msgstr "Indonezio"
-#: lang.pm:295
+#: lang.pm:308 mirror.pm:24 timezone.pm:228
+#, c-format
+msgid "Ireland"
+msgstr "Irlando"
+
+#: lang.pm:309 mirror.pm:25 timezone.pm:204
+#, c-format
+msgid "Israel"
+msgstr "Israelo"
+
+#: lang.pm:310 timezone.pm:201
#, c-format
msgid "India"
msgstr "Hindio"
-#: lang.pm:296
+#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Brita Teritorio de Hindia Oceano"
-#: lang.pm:297
+#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "Irako"
-#: lang.pm:298
+#: lang.pm:313 timezone.pm:203
#, c-format
msgid "Iran"
msgstr "Irano"
-#: lang.pm:299
+#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "Islando"
-#: lang.pm:301
+#: lang.pm:315 mirror.pm:26 timezone.pm:229
+#, c-format
+msgid "Italy"
+msgstr "Italio"
+
+#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "Jamajko"
-#: lang.pm:302
+#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "Jordanio"
-#: lang.pm:304
+#: lang.pm:318 mirror.pm:27 timezone.pm:205
+#, c-format
+msgid "Japan"
+msgstr "Japanio"
+
+#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "Kenjo"
-#: lang.pm:305
+#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "Kirgizistano"
-#: lang.pm:306
+#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "Kamboĝo"
-#: lang.pm:307
+#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "Kiribato"
-#: lang.pm:308
+#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "Komoroj"
-#: lang.pm:309
+#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Sent-Kristofo kaj Neviso"
-#: lang.pm:310
+#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "Koreio (Norda)"
-#: lang.pm:311
+#: lang.pm:326 timezone.pm:206
#, c-format
msgid "Korea"
msgstr "Koreio"
-#: lang.pm:312
+#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "Kuvajto"
-#: lang.pm:313
+#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "Kajmana Insularo"
-#: lang.pm:314
+#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "Kazaĥstano"
-#: lang.pm:315
+#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "Laoso"
-#: lang.pm:316
+#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "Libano"
-#: lang.pm:317
+#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "Sent-Lucio"
-#: lang.pm:318
+#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "Liĥtenŝtejno"
-#: lang.pm:319
+#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "Sri Lanko"
-#: lang.pm:320
+#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "Liberio"
-#: lang.pm:321
+#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "Lesoto"
-#: lang.pm:322 network/adsl_consts.pm:600
+#: lang.pm:337 timezone.pm:230
#, c-format
msgid "Lithuania"
msgstr "Litovio"
-#: lang.pm:323
+#: lang.pm:338 timezone.pm:231
#, c-format
msgid "Luxembourg"
msgstr "Luksemburgo"
-#: lang.pm:324
+#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "Latvio"
-#: lang.pm:325
+#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "Libio"
-#: lang.pm:326 network/adsl_consts.pm:609
+#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "Maroko"
-#: lang.pm:327
+#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "Monako"
-#: lang.pm:328
+#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "Moldovio"
-#: lang.pm:329
+#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "Madagaskaro"
-#: lang.pm:330
+#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "Insuloj Marŝalaj"
-#: lang.pm:331
+#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "Macedonio"
-#: lang.pm:332
+#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "Malio"
-#: lang.pm:333
+#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "Mianmaro"
-#: lang.pm:334
+#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "Mongolio"
-#: lang.pm:335
+#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "Insuloj Marianaj Nordaj"
-#: lang.pm:336
+#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "Martiniko"
-#: lang.pm:337
+#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "Maŭrlando"
-#: lang.pm:338
+#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "Montserato"
-#: lang.pm:339
+#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "Malto"
-#: lang.pm:340
+#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "Maŭricio"
-#: lang.pm:341
+#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "Maldivoj"
-#: lang.pm:342
+#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "Malavio"
-#: lang.pm:343
+#: lang.pm:358 timezone.pm:250
#, c-format
msgid "Mexico"
msgstr "Meksikio"
-#: lang.pm:344
+#: lang.pm:359 timezone.pm:207
#, c-format
msgid "Malaysia"
msgstr "Malajzio"
-#: lang.pm:345
+#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "Mozambiko"
-#: lang.pm:346
+#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "Namibio"
-#: lang.pm:347
+#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "Nov-Kaledonio"
-#: lang.pm:348
+#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "Niĝero"
-#: lang.pm:349
+#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "Norfolkaj Insuloj"
-#: lang.pm:350
+#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "Niĝerio"
-#: lang.pm:351
+#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "Nikaragvo"
-#: lang.pm:354
+#: lang.pm:367 mirror.pm:28 timezone.pm:232
+#, c-format
+msgid "Netherlands"
+msgstr "Nederlando"
+
+#: lang.pm:368 mirror.pm:30 timezone.pm:233
+#, c-format
+msgid "Norway"
+msgstr "Norvegio"
+
+#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "Nepalo"
-#: lang.pm:355
+#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "Nauro"
-#: lang.pm:356
+#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "Niue"
-#: lang.pm:358
+#: lang.pm:372 mirror.pm:29 timezone.pm:255
+#, c-format
+msgid "New Zealand"
+msgstr "Nov-Zelando"
+
+#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "Omano"
-#: lang.pm:359
+#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "Panamo"
-#: lang.pm:360
+#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "Peruo"
-#: lang.pm:361
+#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "Franca Polinezio"
-#: lang.pm:362
+#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "Papuo-Nov-Gvineo"
-#: lang.pm:363
+#: lang.pm:378 timezone.pm:208
#, c-format
msgid "Philippines"
msgstr "Filipinoj"
-#: lang.pm:364
+#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "Pakistano"
-#: lang.pm:366
+#: lang.pm:380 mirror.pm:31 timezone.pm:234
+#, c-format
+msgid "Poland"
+msgstr "Pollando"
+
+#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Sanpetro-kaj-Mikelono"
-#: lang.pm:367
+#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "Pitkarna Insulo"
-#: lang.pm:368
+#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "Porto-Riko"
-#: lang.pm:369
+#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "Palestino"
-#: lang.pm:371
+#: lang.pm:385 mirror.pm:32 timezone.pm:235
+#, c-format
+msgid "Portugal"
+msgstr "Portugalujo"
+
+#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "Paragvajo"
-#: lang.pm:372
+#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "Palaŭo"
-#: lang.pm:373
+#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "Kataro"
-#: lang.pm:374
+#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "Reunio"
-#: lang.pm:375
+#: lang.pm:390 timezone.pm:236
#, c-format
msgid "Romania"
msgstr "Rumanujo"
-#: lang.pm:377
+#: lang.pm:391 mirror.pm:33
+#, c-format
+msgid "Russia"
+msgstr "Rusio"
+
+#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "Ruando"
-#: lang.pm:378
+#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "Saŭda Arabujo"
-#: lang.pm:379
+#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "Salomon-Insuloj"
-#: lang.pm:380
+#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "Sejŝeloj"
-#: lang.pm:381
+#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "Sudano"
-#: lang.pm:383
+#: lang.pm:397 mirror.pm:37 timezone.pm:241
+#, c-format
+msgid "Sweden"
+msgstr "Svedio"
+
+#: lang.pm:398 timezone.pm:209
#, c-format
msgid "Singapore"
msgstr "Singapuro"
-#: lang.pm:384
+#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "Sankt-Heleno"
-#: lang.pm:385 network/adsl_consts.pm:747
+#: lang.pm:400 timezone.pm:239
#, c-format
msgid "Slovenia"
msgstr "Slovenujo"
-#: lang.pm:386
+#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Spicbergo kaj Jan-Majen-Insuloj"
-#: lang.pm:388
+#: lang.pm:402 mirror.pm:34 timezone.pm:238
+#, c-format
+msgid "Slovakia"
+msgstr "Slovakujo"
+
+#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "Siera-Leono"
-#: lang.pm:389
+#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "San-Marino"
-#: lang.pm:390 network/adsl_consts.pm:737
+#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "Senegalio"
-#: lang.pm:391
+#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "Somalujo"
-#: lang.pm:392
+#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "Surinamo"
-#: lang.pm:393
+#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "Sao-Tomeo kaj Principeo"
-#: lang.pm:394
+#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "Salvadoro"
-#: lang.pm:395
+#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "Sirio"
-#: lang.pm:396
+#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "Svazilando"
-#: lang.pm:397
+#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Turks kaj Caicos Insuloj"
-#: lang.pm:398
+#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "Ĉado"
-#: lang.pm:399
+#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "francaj sudaj teritorioj"
-#: lang.pm:400
+#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "Togo"
-#: lang.pm:402
+#: lang.pm:416 mirror.pm:40 timezone.pm:211
+#, c-format
+msgid "Thailand"
+msgstr "Tajlando"
+
+#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "Taĝikistano"
-#: lang.pm:403
+#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "Tokelau"
-#: lang.pm:404
+#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "Orienta Timoro"
-#: lang.pm:405
+#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "Turkmenistano"
-#: lang.pm:406 network/adsl_consts.pm:931
+#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "Tunizio"
-#: lang.pm:407
+#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "Tongo"
-#: lang.pm:408
+#: lang.pm:423 timezone.pm:212
#, c-format
msgid "Turkey"
msgstr "Turkujo"
-#: lang.pm:409
+#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "Trinidado kaj Tobago"
-#: lang.pm:410
+#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "Tuvalo"
-#: lang.pm:412
+#: lang.pm:426 mirror.pm:39 timezone.pm:210
+#, c-format
+msgid "Taiwan"
+msgstr "Tajvano"
+
+#: lang.pm:427 timezone.pm:195
#, c-format
msgid "Tanzania"
msgstr "Tanzanio"
-#: lang.pm:413
+#: lang.pm:428 timezone.pm:243
#, c-format
msgid "Ukraine"
msgstr "Ukrajno"
-#: lang.pm:414
+#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "Ugando"
-#: lang.pm:415
+#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "usonaj malgrandaj eksteraj insuloj"
-#: lang.pm:417
+#: lang.pm:431 mirror.pm:41 timezone.pm:251
+#, c-format
+msgid "United States"
+msgstr "Usono"
+
+#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "Urugvajo"
-#: lang.pm:418
+#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "Uzbekistano"
-#: lang.pm:419
+#: lang.pm:434
#, c-format
msgid "Vatican"
msgstr "Vatikano"
-#: lang.pm:420
+#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "Sent-Vincento kaj la Grenadinoj"
-#: lang.pm:421
+#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "Venezuelo"
-#: lang.pm:422
+#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "Insuloj Virgaj (Britaj)"
-#: lang.pm:423
+#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Insuloj Virgaj (Usonaj)"
-#: lang.pm:424
+#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "Vjetnamio"
-#: lang.pm:425
+#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "Vanuatuo"
-#: lang.pm:426
+#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "valis-kaj-futuna"
-#: lang.pm:427
+#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "Samoo"
-#: lang.pm:428
+#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "Jemeno"
-#: lang.pm:429
+#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "majota"
-#: lang.pm:431
+#: lang.pm:445 mirror.pm:35 timezone.pm:194
+#, c-format
+msgid "South Africa"
+msgstr "Sud-Afriko"
+
+#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "Zambio"
-#: lang.pm:432
+#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "Zimbabvo"
-#: lang.pm:1149
+#: lang.pm:1153
#, c-format
msgid "Welcome to %s"
msgstr "Bonvenon al %s"
@@ -8638,6 +4477,247 @@ msgstr "Forigu la logikajn spacojn unue\n"
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:10
+#, fuzzy, c-format
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the Mandriva "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandriva Linux distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
+"Mandriva S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using the Software Products in any manner, you "
+"explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
+"Software Products.\n"
+"\n"
+"\n"
+"2. Limited Warranty\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
+"be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if Mandriva S.A. has been advised of the possibility or "
+"occurrence of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
+"\n"
+"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
+"no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Mandriva Linux sites which are prohibited or restricted in some "
+"countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
+"included in the Software Products.\n"
+"\n"
+"\n"
+"3. The GPL License and Related Licenses\n"
+"\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to Mandriva.\n"
+"The programs developed by Mandriva S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by Mandriva S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
+"\n"
+"\n"
+"4. Intellectual Property Rights\n"
+"\n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
+"as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
+"Mandriva S.A. \n"
+"\n"
+"\n"
+"5. Governing Laws \n"
+"\n"
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
+"For any question on this document, please contact Mandriva S.A. \n"
+msgstr ""
+"Enkonduko\n"
+"\n"
+"La mastrum-sistemo kaj la diversaj komponantoj atingeblaj en la Mandriva "
+"Linuks-eldono\n"
+"estu en la sekvo nomataj la \"softvarproduktoj\". La softvarproduktoj "
+"inkluzivigas la tutaĵon de programoj, metodoj, reguloj kaj dokumentado "
+"koncerne la mastruman sistemon,\n"
+"kaj la diversajnf komponantojn de la Mandriva Linuks-eldono, sed\n"
+"ne estas limigitaj al ili.\n"
+"\n"
+"\n"
+"1. Licenckonsento \n"
+"Bonvole legu tiun ĉi dokumenton zorge. Tiu ĉi dokumento estas licenckonsento "
+"inter vi kaj\n"
+"Mandriva S.A. kiu aplikiĝas al la softvarproduktoj.\n"
+"Per instalado, duobligado aŭ uzado de la softvarproduktoj en ajna maniero, "
+"vi eksplicite\n"
+"akceptas kaj plene konsentas agi konforme al la teksto kaj kondiĉoj de tiu "
+"ĉi licenco.\n"
+"Se vi malsamopinias kun iu ajn parto de la licenco, vi ne rajtas instali, "
+"duobligi aŭ uzi\n"
+"la softvarproduktojn.\n"
+"Iu ajn provo instali, duobligi aŭ uzi la softvarproduktojn en maniero kiu ne "
+"kongruas kun la teksto kaj kondiĉoj de tiu ĉi licenco estas\n"
+
+#: messages.pm:90
+#, c-format
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:98
+#, c-format
+msgid ""
+"\n"
+"Warning\n"
+"\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
+"\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
+msgstr ""
+"\n"
+"Averto\n"
+"Bonvolu zorge legi la suban tekston. Se vi malsamopinias kun iu\n"
+"parto, vi ne rajtas instali la venontan KD-enhavon. Premu 'Rifuzas'\n"
+"por daŭrigi la instaladon sen uzi tiun KD-enhavon.\n"
+"\n"
+"\n"
+"Iuj komponantoj entenataj en la venonta KD ne estas regataj\n"
+"de la GPL-licenco aŭ similaj interkonsentoj. Ĉiu tia komponanto estas\n"
+"tiam regata de la teksto kaj kondiĉoj de ĝia propra specifa licenco.\n"
+"Bonvolu zorge legi tiajn specifajn licencojn kaj agi laŭ ili antaŭ\n"
+"ol uzi aŭ redisdoni la nomitajn komponantojn.\n"
+"Tiaj licencoj ĝenerale malhelpas transdonon, duobligon\n"
+"(escepte por savkopioj), redistribuadon, 'reverse engineering',\n"
+"malmuntadon, malkompiladon aŭ modifadon de la komponento.\n"
+"Ĉia rompo de la konsento tuj ĉesigos viajn rajtojn sub\n"
+"la respektiva licenco. Escepte se la specifa licenco donas al vi tiajn\n"
+"rajtojn, vi kutime ne povas instali la programojn sur pli ol unu\n"
+"sistemo, aŭ adapti ĝin por uzi ĝin en reto. En duba kazo bonvole kontaktu\n"
+"rekte la disdoninton aŭ la eldoninton de la komponanto.\n"
+"Transdonado al triaj partoj aŭ kopiado de tiaj komponantoj inkluzive de la \n"
+"dokumentaĵo normale estas malpermesita.\n"
+"\n"
+"\n"
+"Ĉiuj rajtoj pri la komponantoj de la venonta KD apartenas al ties\n"
+"respektivaj aŭtoroj kaj estas protektataj de leĝoj pri intelekta propraĵo "
+"kaj\n"
+"kopirajto aplikeblaj al softvaraj programoj.\n"
+
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: messages.pm:131
+#, c-format
+msgid ""
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press Enter to reboot.\n"
+"\n"
+"\n"
+"For information on fixes which are available for this release of Mandriva "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandriva Linux User's Guide."
+msgstr ""
+
#: modules/interactive.pm:19
#, fuzzy, c-format
msgid "This driver has no configuration parameter!"
@@ -8700,19 +4780,14 @@ msgstr "Instalas pelilon por %s karto %s"
msgid "Installing driver for %s card %s"
msgstr "Instalas pelilon por %s karto %s"
-#: modules/interactive.pm:99
-#, c-format
-msgid "(module %s)"
-msgstr "(modulo %s)"
-
-#: modules/interactive.pm:109
+#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: modules/interactive.pm:115
+#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -8723,18 +4798,18 @@ msgstr ""
"Opcioj estas en la formo ``nomo=valoro nomo2=valoro2 ...''.\n"
"Ekzemple, ``io=0x300 irq=7''"
-#: modules/interactive.pm:117
+#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "Modulaj opcioj:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: modules/interactive.pm:130
+#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr "Kiun %s pelilon devus mi provi?"
-#: modules/interactive.pm:139
+#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -8751,17 +4826,17 @@ msgstr ""
"por la informo ĝi bezonas? Kelkfoje, esplori svenas komputilon, sed\n"
"ĝi ne devus kaŭzi difekton."
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "Aŭtomate esploru"
-#: modules/interactive.pm:143
+#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "Specifu opciojn"
-#: modules/interactive.pm:155
+#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -8770,1833 +4845,17 @@ msgstr ""
"Ŝargado de modulo %s malsukcesis.\n"
"Ĉu vi deziras trovi denove kun aliaj parametroj?"
-#: modules/parameters.pm:49
-#, c-format
-msgid "a number"
-msgstr "numero"
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated numbers"
-msgstr ""
-
-#: modules/parameters.pm:51
-#, c-format
-msgid "%d comma separated strings"
-msgstr ""
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated numbers"
-msgstr ""
-
-#: modules/parameters.pm:53
-#, c-format
-msgid "comma separated strings"
-msgstr "eroj disigitaj per komo"
-
-#: mouse.pm:25
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - Muso"
-
-#: mouse.pm:31 security/level.pm:12
-#, c-format
-msgid "Standard"
-msgstr "Laŭnorma"
-
-#: mouse.pm:32
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Loĝiteka MouseMan+"
-
-#: mouse.pm:33
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Nespecifa PS2 RadoMuso"
-
-#: mouse.pm:34
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: mouse.pm:36 network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/modem.pm:68 network/modem.pm:81 network/modem.pm:86
-#: network/modem.pm:115 network/netconnect.pm:596 network/netconnect.pm:601
-#: network/netconnect.pm:613 network/netconnect.pm:618
-#: network/netconnect.pm:634 network/netconnect.pm:636
-#, c-format
-msgid "Automatic"
-msgstr "Aŭtomate"
-
-#: mouse.pm:39 mouse.pm:73
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: mouse.pm:40 mouse.pm:68
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: mouse.pm:41
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: mouse.pm:42 mouse.pm:52
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Mikrosofta Esplorilo"
-
-#: mouse.pm:47 mouse.pm:79
-#, c-format
-msgid "1 button"
-msgstr "1 butona"
-
-#: mouse.pm:48 mouse.pm:57
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Nespecifa 2 Butona Muso"
-
-#: mouse.pm:50 mouse.pm:59
-#, fuzzy, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Nespecifa 3 Butona Muso"
-
-#: mouse.pm:51
-#, c-format
-msgid "Wheel"
-msgstr "Rado"
-
-#: mouse.pm:55
-#, c-format
-msgid "serial"
-msgstr "seria"
-
-#: mouse.pm:58
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Nespecifa 3 Butona Muso"
-
-#: mouse.pm:60
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Mikrosofta IntelliMouse"
-
-#: mouse.pm:61
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Loĝiteka MouseMan"
-
-#: mouse.pm:62
-#, fuzzy, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Loĝiteka MouseMan"
-
-#: mouse.pm:63
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: mouse.pm:65
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Loĝiteka CC serio"
-
-#: mouse.pm:66
-#, fuzzy, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Loĝiteka CC serio"
-
-#: mouse.pm:67
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Loĝiteka MouseMan+/FirstMouse+"
-
-#: mouse.pm:69
-#, c-format
-msgid "MM Series"
-msgstr "MM Serio"
-
-#: mouse.pm:70
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: mouse.pm:71
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Loĝiteka Muso (seria, malnova C7 speco)"
-
-#: mouse.pm:72
-#, fuzzy, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Loĝiteka Muso (seria, malnova C7 speco)"
-
-#: mouse.pm:74
-#, fuzzy, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse"
-
-#: mouse.pm:77
-#, c-format
-msgid "busmouse"
-msgstr "bus-muso"
-
-#: mouse.pm:80
-#, c-format
-msgid "2 buttons"
-msgstr "2 butonoj"
-
-#: mouse.pm:81
-#, c-format
-msgid "3 buttons"
-msgstr "3 butonoj"
-
-#: mouse.pm:82
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr ""
-
-#: mouse.pm:86
-#, c-format
-msgid "Universal"
-msgstr "Universala"
-
-#: mouse.pm:88
-#, c-format
-msgid "Any PS/2 & USB mice"
-msgstr ""
-
-#: mouse.pm:89
-#, fuzzy, c-format
-msgid "Microsoft Xbox Controller S"
-msgstr "Mikrosofta Esplorilo"
-
-#: mouse.pm:93 standalone/drakconnect:351 standalone/drakvpn:1126
-#, c-format
-msgid "none"
-msgstr "neniu"
-
-#: mouse.pm:95
-#, c-format
-msgid "No mouse"
-msgstr "Neniu Muso"
-
-#: mouse.pm:304 mouse.pm:367 mouse.pm:376 mouse.pm:435
-#, c-format
-msgid "Synaptics Touchpad"
-msgstr ""
-
-#: mouse.pm:561
-#, c-format
-msgid "Please test the mouse"
-msgstr "Bonvole, provu la muson"
-
-#: mouse.pm:563
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Por aktivigi la muson,"
-
-#: mouse.pm:564
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "MOVU VIAN RADON!"
-
-#: network/drakfirewall.pm:12 share/compssUsers.pl:85
-#, c-format
-msgid "Web Server"
-msgstr "Interret-servilo"
-
-#: network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "Domajn-nom-servilo"
-
-#: network/drakfirewall.pm:22
-#, fuzzy, c-format
-msgid "SSH server"
-msgstr "NIS Servilo"
-
-#: network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "Servilo FTP"
-
-#: network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "Retpoŝt-servilo"
-
-#: network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "Serviloj POP kaj IMAP"
-
-#: network/drakfirewall.pm:42
-#, fuzzy, c-format
-msgid "Telnet server"
-msgstr "X servilo"
-
-#: network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr ""
-
-#: network/drakfirewall.pm:54
-#, fuzzy, c-format
-msgid "CUPS server"
-msgstr "DNA servilo"
-
-#: network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr ""
-
-#: network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr ""
-
-#: network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr ""
-
-#: network/drakfirewall.pm:165
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-
-#: network/drakfirewall.pm:171
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-
-#: network/drakfirewall.pm:188
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
-
-#: network/drakfirewall.pm:191
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-
-#: network/drakfirewall.pm:197
-#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-
-#: network/drakfirewall.pm:207
-#, c-format
-msgid "Everything (no firewall)"
-msgstr ""
-
-#: network/drakfirewall.pm:209
-#, c-format
-msgid "Other ports"
-msgstr "Aliaj pordoj"
-
-#: network/drakfirewall.pm:253 network/drakfirewall.pm:256
-#: standalone/drakids:33 standalone/drakids:136 standalone/drakids:145
-#: standalone/drakids:170 standalone/drakids:179 standalone/drakids:189
-#: standalone/drakids:265 standalone/net_applet:59 standalone/net_applet:202
-#: standalone/net_applet:385 standalone/net_applet:422
-#, fuzzy, c-format
-msgid "Interactive Firewall"
-msgstr "Fajromuro (Firewall)"
-
-#: network/drakfirewall.pm:254
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activity should be watched."
-msgstr ""
-
-#: network/drakfirewall.pm:259
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr ""
-
-#: network/ifw.pm:129
-#, fuzzy, c-format
-msgid "Port scanning"
-msgstr "Ne kundivido"
-
-#: network/ifw.pm:130
-#, fuzzy, c-format
-msgid "Service attack"
-msgstr "Servo-Administrilo"
-
-#: network/ifw.pm:131
-#, fuzzy, c-format
-msgid "Password cracking"
-msgstr "Pasvorto (denove)"
-
-#: network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr ""
-
-#: network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:135
-#, c-format
-msgid "The %s service has been attacked by %s."
-msgstr ""
-
-#: network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr ""
-
-#: network/ifw.pm:137
-#, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr ""
-
-#: network/isdn.pm:117 network/netconnect.pm:463 network/netconnect.pm:557
-#: network/netconnect.pm:560 network/netconnect.pm:708
-#: network/netconnect.pm:712
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr ""
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: network/isdn.pm:160 network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "Mi ne scias"
-
-#: network/isdn.pm:161 network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: network/isdn.pm:162 network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#: network/modem.pm:47 network/modem.pm:48 network/modem.pm:49
-#: network/netconnect.pm:601 network/netconnect.pm:618
-#: network/netconnect.pm:634
-#, c-format
-msgid "Manual"
-msgstr "Mana"
-
-#: network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr ""
-
-#: network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr ""
-
-#: network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr ""
-
-#: network/ndiswrapper.pm:89
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr ""
-
-#: network/ndiswrapper.pm:95
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-
-#: network/ndiswrapper.pm:101
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr ""
-
-#: network/netconnect.pm:69 network/netconnect.pm:493
-#: network/netconnect.pm:505
-#, fuzzy, c-format
-msgid "Manual choice"
-msgstr "Mianmaro"
-
-#: network/netconnect.pm:69
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Interna ISDN-karto"
-
-#: network/netconnect.pm:80 printer/printerdrake.pm:1622 standalone/drakups:72
-#, fuzzy, c-format
-msgid "Manual configuration"
-msgstr "Interreta Konfigurado"
-
-#: network/netconnect.pm:81 standalone/drakroam:121
-#, fuzzy, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr "Aŭtomata IP"
-
-#: network/netconnect.pm:83
-#, c-format
-msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
-msgstr ""
-
-#: network/netconnect.pm:86
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protokolo por la cetera mondo"
-
-#: network/netconnect.pm:88 standalone/drakconnect:563
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Eŭropa protokolo (EDSS1)"
-
-#: network/netconnect.pm:89 standalone/drakconnect:564
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Protokolo por la cetera mondo \n"
-"Neniom da D-Kanelo (lukontraktataj lineoj)"
-
-#: network/netconnect.pm:103 standalone/harddrake2:328
-#: standalone/net_monitor:102 standalone/net_monitor:103
-#: standalone/net_monitor:108
-#, c-format
-msgid "unknown"
-msgstr "nekonata"
-
-#: network/netconnect.pm:120 network/thirdparty.pm:220
-#, fuzzy, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "Bonvole, provu la muson"
-
-#: network/netconnect.pm:121
-#, fuzzy, c-format
-msgid "Sagem USB modem"
-msgstr "Sistema modalo"
-
-#: network/netconnect.pm:122
-#, c-format
-msgid "Bewan modem"
-msgstr ""
-
-#: network/netconnect.pm:123
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr ""
-
-#: network/netconnect.pm:127
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr ""
-
-#: network/netconnect.pm:128
-#, fuzzy, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "Interreta Konfigurado"
-
-#: network/netconnect.pm:129
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr ""
-
-#: network/netconnect.pm:130
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr ""
-
-#: network/netconnect.pm:131
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr ""
-
-#: network/netconnect.pm:132
-#, c-format
-msgid "DSL over CAPI"
-msgstr ""
-
-#: network/netconnect.pm:136
-#, c-format
-msgid "Bridged Ethernet LLC"
-msgstr ""
-
-#: network/netconnect.pm:137
-#, c-format
-msgid "Bridged Ethernet VC"
-msgstr ""
-
-#: network/netconnect.pm:138
-#, c-format
-msgid "Routed IP LLC"
-msgstr ""
-
-#: network/netconnect.pm:139
-#, c-format
-msgid "Routed IP VC"
-msgstr ""
-
-#: network/netconnect.pm:140
-#, c-format
-msgid "PPPoA LLC"
-msgstr ""
-
-#: network/netconnect.pm:141
-#, c-format
-msgid "PPPoA VC"
-msgstr ""
-
-#: network/netconnect.pm:145 standalone/drakconnect:498
-#, c-format
-msgid "Script-based"
-msgstr "Programeto-bazata"
-
-#: network/netconnect.pm:146 standalone/drakconnect:498
-#, c-format
-msgid "PAP"
-msgstr "PAP (Pasvorta Aŭtentikigada Protokolo)"
-
-#: network/netconnect.pm:147 standalone/drakconnect:498
-#, c-format
-msgid "Terminal-based"
-msgstr "Finaparato-bazata"
-
-#: network/netconnect.pm:148 standalone/drakconnect:498
-#, c-format
-msgid "CHAP"
-msgstr "per CHAP"
-
-#: network/netconnect.pm:149 standalone/drakconnect:498
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: network/netconnect.pm:250 standalone/drakconnect:56
-#, fuzzy, c-format
-msgid "Network & Internet Configuration"
-msgstr "Reta Konfiguraĵo"
-
-#: network/netconnect.pm:256
-#, c-format
-msgid "LAN connection"
-msgstr "LAN Konfiguraĵo"
-
-#: network/netconnect.pm:257 network/netconnect.pm:276 standalone/drakroam:182
-#: standalone/drakroam:220 standalone/drakroam:223
-#, fuzzy, c-format
-msgid "Wireless connection"
-msgstr "Kabla konekto"
-
-#: network/netconnect.pm:258
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL-konekto"
-
-#: network/netconnect.pm:259
-#, c-format
-msgid "Cable connection"
-msgstr "Kabla konekto"
-
-#: network/netconnect.pm:260
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN-konekto"
-
-#: network/netconnect.pm:261
-#, fuzzy, c-format
-msgid "Modem connection"
-msgstr "Winmodem-konekto"
-
-#: network/netconnect.pm:262
-#, c-format
-msgid "DVB connection"
-msgstr ""
-
-#: network/netconnect.pm:272
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Elektu la konekton kiun vi deziras konfiguri"
-
-#: network/netconnect.pm:287 network/netconnect.pm:786
-#, c-format
-msgid "Connection Configuration"
-msgstr "Konfigurado de Konekto"
-
-#: network/netconnect.pm:287 network/netconnect.pm:787
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Bonvole plenigu aŭ marku la suban kampon"
-
-#: network/netconnect.pm:290
-#, c-format
-msgid "Your personal phone number"
-msgstr "Via persona telefonnumero"
-
-#: network/netconnect.pm:291 network/netconnect.pm:790
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Nomo de interretprovizanto (ekz-e provizanto.net)"
-
-#: network/netconnect.pm:292 standalone/drakconnect:493
-#, c-format
-msgid "Provider phone number"
-msgstr "Telefonnumero de interretprovizanto"
-
-#: network/netconnect.pm:293
-#, fuzzy, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "Provizanto DNS 1 (nedeviga)"
-
-#: network/netconnect.pm:294
-#, fuzzy, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "Provizanto DNS 2 (nedeviga)"
-
-#: network/netconnect.pm:295 standalone/drakconnect:444
-#, c-format
-msgid "Dialing mode"
-msgstr "Diskuma modalo"
-
-#: network/netconnect.pm:296 standalone/drakconnect:449
-#: standalone/drakconnect:517
-#, c-format
-msgid "Connection speed"
-msgstr "Rapido de konekto"
-
-#: network/netconnect.pm:297 standalone/drakconnect:454
-#, fuzzy, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Speco de konekto"
-
-#: network/netconnect.pm:298 network/netconnect.pm:323
-#: network/netconnect.pm:793 standalone/drakconnect:491
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Konta Salutnomo (uzula nomo)"
-
-#: network/netconnect.pm:299 network/netconnect.pm:324
-#: network/netconnect.pm:794 standalone/drakconnect:492
-#, c-format
-msgid "Account Password"
-msgstr "Konta Pasvorto"
-
-#: network/netconnect.pm:300 standalone/drakconnect:554
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ de Karto"
-
-#: network/netconnect.pm:301 standalone/drakconnect:555
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Memoro de Karto (DMA)"
-
-#: network/netconnect.pm:302 standalone/drakconnect:556
-#, c-format
-msgid "Card IO"
-msgstr "I/O (Eneligo) de Karto"
-
-#: network/netconnect.pm:303 standalone/drakconnect:557
-#, c-format
-msgid "Card IO_0"
-msgstr "I/O 0 (Eneligo 0) de Karto"
-
-#: network/netconnect.pm:304
-#, c-format
-msgid "Card IO_1"
-msgstr "I/O 1 (Eneligo 1) de Karto"
-
-#: network/netconnect.pm:319
-#, fuzzy, c-format
-msgid "Cable: account options"
-msgstr "Telefon-konektaj opcioj"
-
-#: network/netconnect.pm:322
-#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr ""
-
-#: network/netconnect.pm:348 network/netconnect.pm:670
-#: network/netconnect.pm:826 network/netconnect.pm:1170
-#, fuzzy, c-format
-msgid "Select the network interface to configure:"
-msgstr "Elektu la retan interfacon"
-
-#: network/netconnect.pm:350 network/netconnect.pm:385
-#: network/netconnect.pm:671 network/netconnect.pm:828 network/shorewall.pm:70
-#: standalone/drakconnect:714
-#, fuzzy, c-format
-msgid "Net Device"
-msgstr "Printservilo"
-
-#: network/netconnect.pm:351 network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr "Eksterna ISDN-modemo"
-
-#: network/netconnect.pm:384 standalone/harddrake2:215
-#, fuzzy, c-format
-msgid "Select a device!"
-msgstr "Elektu grafikan karton"
-
-#: network/netconnect.pm:393 network/netconnect.pm:403
-#: network/netconnect.pm:413 network/netconnect.pm:446
-#: network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "ISDN-a Konfiguraĵon"
-
-#: network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Kiun specon de karto vi havas?"
-
-#: network/netconnect.pm:404
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"Se via havas ISA-an karton, la valoro sur la sekvanta ekrano devus esti "
-"ĝusta.\n"
-"\n"
-"Se vi havas PCMCIA-an karton, vi bezonas scii la IRQ-o kaj I/O (Eneligo)\n"
-"por via karto.\n"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "Ĉu mi devus daŭri?"
-
-#: network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "Ĉesigu"
-
-#: network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Kiu el la sekvaj estas via ISDN-karto?"
-
-#: network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-
-#: network/netconnect.pm:434 standalone/drakconnect:109 standalone/drakups:249
-#: standalone/harddrake2:133
-#, c-format
-msgid "Driver"
-msgstr "Pelilo"
-
-#: network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Kiun protokolon vi deziras uzi?"
-
-#: network/netconnect.pm:448 standalone/drakconnect:109
-#: standalone/drakconnect:300 standalone/drakconnect:562
-#: standalone/drakids:207 standalone/drakvpn:1128
-#, c-format
-msgid "Protocol"
-msgstr "Protokolo"
-
-#: network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"Elektu vian interretprovizanton.\n"
-" Se ĝin ne estas en la listo, elektu Nelistiĝitan"
-
-#: network/netconnect.pm:462 network/netconnect.pm:556
-#: network/netconnect.pm:707
-#, fuzzy, c-format
-msgid "Provider:"
-msgstr "Printilo"
-
-#: network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-
-#: network/netconnect.pm:490
-#, fuzzy, c-format
-msgid "Select the modem to configure:"
-msgstr "Elektu la retan interfacon"
-
-#: network/netconnect.pm:525
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-
-#: network/netconnect.pm:554
-#, fuzzy, c-format
-msgid "Select your provider:"
-msgstr "Elektu Printilan Konekton"
-
-#: network/netconnect.pm:578
-#, fuzzy, c-format
-msgid "Dialup: account options"
-msgstr "Telefon-konektaj opcioj"
-
-#: network/netconnect.pm:581
-#, c-format
-msgid "Connection name"
-msgstr "Nomo de konekto"
-
-#: network/netconnect.pm:582
-#, c-format
-msgid "Phone number"
-msgstr "Telefonnumero"
-
-#: network/netconnect.pm:583
-#, c-format
-msgid "Login ID"
-msgstr "Salutnomo"
-
-#: network/netconnect.pm:598 network/netconnect.pm:631
-#, fuzzy, c-format
-msgid "Dialup: IP parameters"
-msgstr "Parametroj"
-
-#: network/netconnect.pm:601
-#, fuzzy, c-format
-msgid "IP parameters"
-msgstr "Parametroj"
-
-#: network/netconnect.pm:602 network/netconnect.pm:941
-#: printer/printerdrake.pm:460 standalone/drakconnect:109
-#: standalone/drakconnect:316 standalone/drakconnect:882
-#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:284
-#, c-format
-msgid "IP address"
-msgstr "IP-adreso"
-
-#: network/netconnect.pm:603
-#, fuzzy, c-format
-msgid "Subnet mask"
-msgstr "Retmasko"
-
-#: network/netconnect.pm:615
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr ""
-
-#: network/netconnect.pm:618
-#, c-format
-msgid "DNS"
-msgstr "DNS"
-
-#: network/netconnect.pm:619
-#, c-format
-msgid "Domain name"
-msgstr "Domajna nomo"
-
-#: network/netconnect.pm:620 network/netconnect.pm:791
-#: standalone/drakconnect:992
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Unu DNS-a Servilo (nedeviga)"
-
-#: network/netconnect.pm:621 network/netconnect.pm:792
-#: standalone/drakconnect:993
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Du DNS-a Servilo (nedeviga)"
-
-#: network/netconnect.pm:622
-#, fuzzy, c-format
-msgid "Set hostname from IP"
-msgstr "Printilaj Poŝtejo"
-
-#: network/netconnect.pm:634 standalone/drakconnect:327
-#, c-format
-msgid "Gateway"
-msgstr "Kluzo"
-
-#: network/netconnect.pm:635 standalone/drakroam:124
-#, fuzzy, c-format
-msgid "Gateway IP address"
-msgstr "IP-adreso"
-
-#: network/netconnect.pm:670
-#, fuzzy, c-format
-msgid "ADSL configuration"
-msgstr "LAN Konfiguraĵo"
-
-#: network/netconnect.pm:705
-#, fuzzy, c-format
-msgid "Please choose your ADSL provider"
-msgstr "Bonvole elektu vian landon."
-
-#: network/netconnect.pm:735
-#, c-format
-msgid ""
-"Please choose your DSL connection type.\n"
-"If you do not know it, keep the preselected type."
-msgstr ""
-
-#: network/netconnect.pm:738
-#, fuzzy, c-format
-msgid "ADSL connection type:"
-msgstr "ADSL-konekto"
-
-#: network/netconnect.pm:796
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr ""
-
-#: network/netconnect.pm:797
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr ""
-
-#: network/netconnect.pm:800
-#, fuzzy, c-format
-msgid "Encapsulation:"
-msgstr "Gratulojn!"
-
-#: network/netconnect.pm:830
-#, c-format
-msgid "Manually load a driver"
-msgstr ""
-
-#: network/netconnect.pm:831
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr ""
-
-#: network/netconnect.pm:896
-#, fuzzy, c-format
-msgid "Zeroconf hostname resolution"
-msgstr "Poŝtejo"
-
-#: network/netconnect.pm:897 network/netconnect.pm:928
-#, fuzzy, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "Konfiguras retan aparaton %s"
-
-#: network/netconnect.pm:898
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use"
-msgstr ""
-
-#: network/netconnect.pm:929
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Bonvole enigu la IP-an konfigurâjon por ĉi tiu komputilo.\n"
-"Ĉiu ero devus esti enigata kiel IP-adreson en punktita-decimala notacio\n"
-"(ekzemple, 1.2.3.4)."
-
-#: network/netconnect.pm:936 standalone/drakconnect:373
-#, fuzzy, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Bonvole, provu la muson"
-
-#: network/netconnect.pm:937 standalone/drakconnect:375
-#, fuzzy, c-format
-msgid "DHCP host name"
-msgstr "Poŝtejo"
-
-#: network/netconnect.pm:942 standalone/drakconnect:321
-#: standalone/drakconnect:883 standalone/drakgw:181
-#, c-format
-msgid "Netmask"
-msgstr "Retmasko"
-
-#: network/netconnect.pm:944 standalone/drakconnect:437
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr ""
-
-#: network/netconnect.pm:945 standalone/drakconnect:438
-#, fuzzy, c-format
-msgid "Network Hotplugging"
-msgstr "Reta Konfiguraĵo"
-
-#: network/netconnect.pm:947 standalone/drakconnect:432
-#, c-format
-msgid "Start at boot"
-msgstr "Startu ĉe starto"
-
-#: network/netconnect.pm:949 standalone/drakconnect:460
-#, fuzzy, c-format
-msgid "Metric"
-msgstr "limigu"
-
-#: network/netconnect.pm:950
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr ""
-
-#: network/netconnect.pm:952 standalone/drakconnect:369
-#: standalone/drakconnect:886
-#, c-format
-msgid "DHCP client"
-msgstr ""
-
-#: network/netconnect.pm:954 standalone/drakconnect:379
-#, fuzzy, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "Speco de konekto"
-
-#: network/netconnect.pm:955 standalone/drakconnect:382
-#, fuzzy, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "IP de SMB servilo"
-
-#: network/netconnect.pm:956 standalone/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:957 standalone/drakconnect:384
-#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr ""
-
-#: network/netconnect.pm:965 printer/printerdrake.pm:1876
-#: standalone/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-
-#: network/netconnect.pm:969 standalone/drakconnect:680
-#, fuzzy, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-
-#: network/netconnect.pm:973
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr ""
-
-#: network/netconnect.pm:978 standalone/drakTermServ:1927
-#: standalone/drakTermServ:1928 standalone/drakTermServ:1929
-#, c-format
-msgid "%s already in use\n"
-msgstr ""
-
-#: network/netconnect.pm:1018
-#, fuzzy, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "Elektu X-servilon"
-
-#: network/netconnect.pm:1020
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr ""
-
-#: network/netconnect.pm:1020
-#, fuzzy, c-format
-msgid "Install a new driver"
-msgstr "Instalu sistemon"
-
-#: network/netconnect.pm:1032
-#, c-format
-msgid "Select a device:"
-msgstr ""
-
-#: network/netconnect.pm:1061
-#, c-format
-msgid "Please enter the wireless parameters for this card:"
-msgstr ""
-
-#: network/netconnect.pm:1064 standalone/drakconnect:404
-#: standalone/drakroam:52
-#, fuzzy, c-format
-msgid "Operating Mode"
-msgstr "Spertuloreĝimo"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Ad-hoc"
-msgstr ""
-
-#: network/netconnect.pm:1065
-#, fuzzy, c-format
-msgid "Managed"
-msgstr "Elektu vian lingvon"
-
-#: network/netconnect.pm:1065
-#, fuzzy, c-format
-msgid "Master"
-msgstr "majota"
-
-#: network/netconnect.pm:1065
-#, fuzzy, c-format
-msgid "Repeater"
-msgstr "Restaŭru de dosiero"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Secondary"
-msgstr "Dua"
-
-#: network/netconnect.pm:1065
-#, c-format
-msgid "Auto"
-msgstr "Aŭtomate"
-
-#: network/netconnect.pm:1068 standalone/drakconnect:405
-#: standalone/drakroam:115
-#, c-format
-msgid "Network name (ESSID)"
-msgstr ""
-
-#: network/netconnect.pm:1069 standalone/drakroam:116
-#, c-format
-msgid "Encryption mode"
-msgstr ""
-
-#: network/netconnect.pm:1074
-#, c-format
-msgid "Allow access point roaming"
-msgstr ""
-
-#: network/netconnect.pm:1076 standalone/drakconnect:406
-#, fuzzy, c-format
-msgid "Network ID"
-msgstr "Reto"
-
-#: network/netconnect.pm:1077 standalone/drakconnect:407
-#, c-format
-msgid "Operating frequency"
-msgstr ""
-
-#: network/netconnect.pm:1078 standalone/drakconnect:408
-#, c-format
-msgid "Sensitivity threshold"
-msgstr ""
-
-#: network/netconnect.pm:1079 standalone/drakconnect:409
-#, c-format
-msgid "Bitrate (in b/s)"
-msgstr ""
-
-#: network/netconnect.pm:1080 standalone/drakconnect:420
-#, c-format
-msgid "RTS/CTS"
-msgstr ""
-
-#: network/netconnect.pm:1081
-#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
-
-#: network/netconnect.pm:1088 standalone/drakconnect:421
-#, fuzzy, c-format
-msgid "Fragmentation"
-msgstr "Dokumentaro"
-
-#: network/netconnect.pm:1089 standalone/drakconnect:422
-#, c-format
-msgid "iwconfig command extra arguments"
-msgstr ""
-
-#: network/netconnect.pm:1090
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-
-#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1097 standalone/drakconnect:423
-#, c-format
-msgid "iwspy command extra arguments"
-msgstr ""
-
-#: network/netconnect.pm:1098
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-
-#: network/netconnect.pm:1107 standalone/drakconnect:424
-#, c-format
-msgid "iwpriv command extra arguments"
-msgstr ""
-
-#: network/netconnect.pm:1108
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-
-#: network/netconnect.pm:1123
-#, c-format
-msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
-msgstr ""
-
-#: network/netconnect.pm:1127
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-
-#: network/netconnect.pm:1170
-#, c-format
-msgid "DVB configuration"
-msgstr ""
-
-#: network/netconnect.pm:1171
-#, c-format
-msgid "DVB Adapter"
-msgstr ""
-
-#: network/netconnect.pm:1188
-#, c-format
-msgid "DVB adapter settings"
-msgstr ""
-
-#: network/netconnect.pm:1191
-#, c-format
-msgid "Adapter card"
-msgstr ""
-
-#: network/netconnect.pm:1192
-#, c-format
-msgid "Net demux"
-msgstr ""
-
-#: network/netconnect.pm:1193
-#, c-format
-msgid "PID"
-msgstr "PID"
-
-#: network/netconnect.pm:1221
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Bonvole enigu vian poŝtejon.\n"
-"Via poŝtejo devus esti plene specifita poŝtejo,\n"
-"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''.\n"
-"Vi ankaŭ povas enigi la IP-adreson de la prokura kluzo se via havas unu."
-
-#: network/netconnect.pm:1226
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr ""
-
-#: network/netconnect.pm:1228 standalone/drakconnect:991
-#, fuzzy, c-format
-msgid "Host name (optional)"
-msgstr "Unu DNS-a Servilo (nedeviga)"
-
-#: network/netconnect.pm:1228 standalone/drakhosts:197
-#, c-format
-msgid "Host name"
-msgstr "Poŝtejo"
-
-#: network/netconnect.pm:1230
-#, fuzzy, c-format
-msgid "DNS server 1"
-msgstr "DNA servilo"
-
-#: network/netconnect.pm:1231
-#, fuzzy, c-format
-msgid "DNS server 2"
-msgstr "DNA servilo"
-
-#: network/netconnect.pm:1232
-#, fuzzy, c-format
-msgid "DNS server 3"
-msgstr "DNA servilo"
-
-#: network/netconnect.pm:1233
-#, fuzzy, c-format
-msgid "Search domain"
-msgstr "NIS Domajno"
-
-#: network/netconnect.pm:1234
-#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr ""
-
-#: network/netconnect.pm:1235
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: network/netconnect.pm:1237
-#, c-format
-msgid "Gateway device"
-msgstr "Prokura kluzaparato"
-
-#: network/netconnect.pm:1246
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "DNS-servila adreso devas esti en formato 1.2.3.4"
-
-#: network/netconnect.pm:1251 standalone/drakconnect:685
-#, fuzzy, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-
-#: network/netconnect.pm:1264
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-
-#: network/netconnect.pm:1268
-#, fuzzy, c-format
-msgid "Zeroconf Host name"
-msgstr "Poŝtejo"
-
-#: network/netconnect.pm:1271
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr ""
-
-#: network/netconnect.pm:1281
-#, fuzzy, c-format
-msgid "Do you want to allow users to start the connection?"
-msgstr "Ĉu vi deziras starti vian konektaĵon je startado de la sistemo?"
-
-#: network/netconnect.pm:1294
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Ĉu vi deziras starti vian konektaĵon je startado de la sistemo?"
-
-#: network/netconnect.pm:1310
-#, fuzzy, c-format
-msgid "Automatically at boot"
-msgstr "Startu ĉe starto"
-
-#: network/netconnect.pm:1312
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr ""
-
-#: network/netconnect.pm:1314
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr ""
-
-#: network/netconnect.pm:1323
-#, fuzzy, c-format
-msgid "How do you want to dial this connection?"
-msgstr "Ĉu vi deziras starti vian konektaĵon je startado de la sistemo?"
-
-#: network/netconnect.pm:1336
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Ĉu vi deziras provi konekti al la interreto nun?"
-
-#: network/netconnect.pm:1344 standalone/drakconnect:1023
-#, c-format
-msgid "Testing your connection..."
-msgstr "Testante vian konektaĵon..."
-
-#: network/netconnect.pm:1369
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "La sistemo estas nun konektita al Interreto."
-
-#: network/netconnect.pm:1370
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr ""
-
-#: network/netconnect.pm:1371
-#, fuzzy, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr "Konektu al la Interreto / Konfiguru lokan Reton"
-
-#: network/netconnect.pm:1386
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-
-#: network/netconnect.pm:1389
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-
-#: network/netconnect.pm:1390
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-
-#: network/netconnect.pm:1402
-#, fuzzy, c-format
-msgid "(detected on port %s)"
-msgstr "detektita en pordo %s"
-
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1404
-#, fuzzy, c-format
-msgid "(detected %s)"
-msgstr "Duobla surmetingo %s"
-
-#: network/netconnect.pm:1404
-#, fuzzy, c-format
-msgid "(detected)"
-msgstr "detektita"
-
-#: network/netconnect.pm:1405
-#, c-format
-msgid "Network Configuration"
-msgstr "Reta Konfiguraĵo"
-
-#: network/netconnect.pm:1406
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-
-#: network/netconnect.pm:1409
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr ""
-"La reto devas esti restartigita.\n"
-"Ĉu vi deziras restartigi ĝin?"
-
-#: network/netconnect.pm:1410
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Problemo okazis dum restarto de la reto: \n"
-"\n"
-"%s"
-
-#: network/netconnect.pm:1411
-#, fuzzy, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Ni konfiguros nun l %s konekton.\n"
-"\n"
-"\n"
-"Premu JES por daŭrigi."
-
-#: network/netconnect.pm:1412
-#, fuzzy, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr "Kiun konfiguron de Xorg vi deziras havi?"
-
-#: network/netconnect.pm:1413
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: network/netconnect.pm:1414
-#, c-format
-msgid "Internet connection"
-msgstr "Interreta konekto"
-
-#: network/netconnect.pm:1428
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-
-#: network/network.pm:411
-#, c-format
-msgid "Proxies configuration"
-msgstr "Konfigurado de prokuraj serviloj"
-
-#: network/network.pm:412
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-
-#: network/network.pm:413
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP prokura servilo"
-
-#: network/network.pm:414
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: network/network.pm:415
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: network/network.pm:416
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP prokura servilo"
-
-#: network/network.pm:420
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Prokura servilo devus esti http://..."
-
-#: network/network.pm:421
-#, c-format
-msgid "Proxy should be https?://..."
-msgstr ""
-
-#: network/network.pm:422
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URL devas komenci per 'ftp:' aŭ 'http:'"
-
-#: network/shorewall.pm:55
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-
-#: network/thirdparty.pm:232
-#, c-format
-msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
-msgstr ""
-
-#: network/thirdparty.pm:241
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-
-#: network/thirdparty.pm:321
-#, fuzzy, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "Instalanta pakaĵo %s"
-
-#: network/thirdparty.pm:329
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr ""
-
-#: network/thirdparty.pm:330
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-
-#: network/thirdparty.pm:332
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-
-#: network/thirdparty.pm:372
-#, fuzzy, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "Via komputilo ne havas retadaptilon!"
-
-#: network/thirdparty.pm:374
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr ""
-
-#: network/thirdparty.pm:384
-#, fuzzy, c-format
-msgid "Insert floppy"
-msgstr "Enŝovu disketon en %s"
-
-#: network/thirdparty.pm:385
-#, fuzzy, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr "Enŝovu FAT-formatitan disketon en drajvo %s"
-
-#: network/thirdparty.pm:395
-#, fuzzy, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Kie vi deziras munti aparato %s?"
-
-#: network/thirdparty.pm:405
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-
-#: network/thirdparty.pm:409 network/thirdparty.pm:411
-#, fuzzy, c-format
-msgid "Use a floppy"
-msgstr "Konservu sur disketo"
-
-#: network/thirdparty.pm:409
-#, fuzzy, c-format
-msgid "Use my Windows partition"
-msgstr "Kalkulas Vindozajn dosiersistemajn limojn"
-
-#: network/thirdparty.pm:419
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr ""
-
-#: network/thirdparty.pm:424 standalone/drakautoinst:250
-#: standalone/drakvpn:888 standalone/scannerdrake:422
-#, c-format
-msgid "Congratulations!"
-msgstr "Gratulojn!"
-
-#: network/thirdparty.pm:424
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr ""
-
-#: network/thirdparty.pm:493
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr ""
-
-#: network/thirdparty.pm:498
-#, fuzzy, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "Elektas sekurnivelon"
-
-#: network/wireless.pm:8
-#, c-format
-msgid "Open WEP"
-msgstr ""
-
-#: network/wireless.pm:9
-#, c-format
-msgid "Restricted WEP"
-msgstr ""
-
-#: network/wireless.pm:10
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr ""
-
-#: partition_table.pm:391
+#: partition_table.pm:390
#, c-format
msgid "mount failed: "
msgstr "muntado malsukcesis: "
-#: partition_table.pm:496
+#: partition_table.pm:500
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Ĉi tiu platformo ne subtenas etendatajn subdiskojn"
-#: partition_table.pm:514
+#: partition_table.pm:518
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
@@ -10607,22 +4866,27 @@ msgstr ""
"La sola solvo estas movi viajn ĉefajn subdiskojn por situigi la truon\n"
"apud la etendataj subdiskoj."
-#: partition_table.pm:605
+#: partition_table.pm:597
+#, c-format
+msgid "Error reading file %s"
+msgstr "Eraro legante dosiero %s"
+
+#: partition_table.pm:604
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restaŭris el dosiero %s malsukcesis: %s"
-#: partition_table.pm:607
+#: partition_table.pm:606
#, c-format
msgid "Bad backup file"
msgstr "Malbona rezerva dosiero"
-#: partition_table.pm:627
+#: partition_table.pm:626
#, c-format
msgid "Error writing to file %s"
msgstr "Eraro skribante al dosiero %s"
-#: partition_table/raw.pm:253
+#: partition_table/raw.pm:264
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
@@ -10634,3065 +4898,47 @@ msgstr ""
"Testo pri la integreco de datenoj malsukcesis.\n"
"Tio signifas ke skribado al la disko finiĝos per difektitaj datenoj."
-#: pkgs.pm:21
-#, c-format
-msgid "must have"
-msgstr "havenda"
-
-#: pkgs.pm:22
-#, c-format
-msgid "important"
-msgstr "grava(j)"
-
-#: pkgs.pm:23
-#, c-format
-msgid "very nice"
-msgstr "tre agrabla(j)"
-
-#: pkgs.pm:24
-#, c-format
-msgid "nice"
-msgstr "agrabla(j)"
-
-#: pkgs.pm:25
-#, c-format
-msgid "maybe"
-msgstr "elbe"
-
-#: pkgs.pm:474
-#, fuzzy, c-format
-msgid "Downloading file %s..."
-msgstr "Konservu en dosiero"
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on %s)"
-msgstr "(sur %s)"
-
-#: printer/cups.pm:105
-#, c-format
-msgid "(on this machine)"
-msgstr ""
-
-#: printer/cups.pm:117 standalone/printerdrake:200
-#, fuzzy, c-format
-msgid "Configured on other machines"
-msgstr "Konfiguru la konekton"
-
-#: printer/cups.pm:119
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Ĉe CUPS-servilo \"%s\""
-
-#: printer/cups.pm:119 printer/printerdrake.pm:4909
-#: printer/printerdrake.pm:4919 printer/printerdrake.pm:5078
-#: printer/printerdrake.pm:5089 printer/printerdrake.pm:5303
-#, c-format
-msgid " (Default)"
-msgstr " (Defaŭlta)"
-
-#: printer/data.pm:67
-#, c-format
-msgid "PDQ - Print, Do not Queue"
-msgstr ""
-
-#: printer/data.pm:68
-#, c-format
-msgid "PDQ"
-msgstr ""
-
-#: printer/data.pm:80
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: printer/data.pm:81
-#, c-format
-msgid "LPD"
-msgstr ""
-
-#: printer/data.pm:102
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: printer/data.pm:103
-#, c-format
-msgid "LPRng"
-msgstr ""
-
-#: printer/data.pm:128
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: printer/data.pm:158
-#, c-format
-msgid "CUPS - Common Unix Printing System (remote server)"
-msgstr ""
-
-#: printer/data.pm:159
-#, c-format
-msgid "Remote CUPS"
-msgstr "Malproksima CUPS-o"
-
-#: printer/detect.pm:168 printer/detect.pm:263 printer/detect.pm:498
-#: printer/detect.pm:571 printer/main.pm:330 printer/main.pm:692
-#: printer/main.pm:1815 printer/printerdrake.pm:960
-#: printer/printerdrake.pm:1120 printer/printerdrake.pm:2448
-#: printer/printerdrake.pm:4004
-#, c-format
-msgid "Unknown model"
-msgstr "Nekonata modelo"
-
-#: printer/main.pm:24
-#, c-format
-msgid "Local printer"
-msgstr "Loka printilo"
-
-#: printer/main.pm:25
-#, c-format
-msgid "Remote printer"
-msgstr "Malproksima printilo"
-
-#: printer/main.pm:26
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Malproksima CUPS-a servila printilo"
-
-#: printer/main.pm:27 printer/printerdrake.pm:1360
-#: printer/printerdrake.pm:1899
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Malproksimaj lpd servila printilo"
-
-#: printer/main.pm:28
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Reta Printilo (TCP/ingo)"
-
-#: printer/main.pm:29
-#, fuzzy, c-format
-msgid "Printer on SMB/Windows server"
-msgstr "SMB/Vindozo 95/98/NT"
-
-#: printer/main.pm:30
-#, fuzzy, c-format
-msgid "Printer on NetWare server"
-msgstr "Printservilo"
-
-#: printer/main.pm:31 printer/printerdrake.pm:1903
-#, fuzzy, c-format
-msgid "Enter a printer device URI"
-msgstr "Printila Aparato URI"
-
-#: printer/main.pm:32
-#, c-format
-msgid "Pipe job into a command"
-msgstr ""
-
-#: printer/main.pm:43
-#, c-format
-msgid "recommended"
-msgstr "recomendita"
-
-#: printer/main.pm:355 standalone/printerdrake:199
-#, fuzzy, c-format
-msgid "Configured on this machine"
-msgstr "Konfiguru la konekton"
-
-#: printer/main.pm:361 printer/printerdrake.pm:1445
-#, c-format
-msgid " on parallel port #%s"
-msgstr " sur paralela pordo #%s"
-
-#: printer/main.pm:364 printer/printerdrake.pm:1448
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", USB-printilo #%s"
-
-#: printer/main.pm:366
-#, c-format
-msgid ", USB printer"
-msgstr ", USB-printilo"
-
-#: printer/main.pm:370
-#, c-format
-msgid ", HP printer on a parallel port"
-msgstr ", HP-printilo sur paralela pordo"
-
-#: printer/main.pm:372
-#, c-format
-msgid ", HP printer on USB"
-msgstr ", HP-printilo sur USB"
-
-#: printer/main.pm:374
-#, c-format
-msgid ", HP printer on HP JetDirect"
-msgstr ""
-
-#: printer/main.pm:376
-#, c-format
-msgid ", HP printer"
-msgstr ", HP-printilo"
-
-#: printer/main.pm:382
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ""
-
-#: printer/main.pm:385
-#, fuzzy, c-format
-msgid ", multi-function device on a parallel port"
-msgstr "Presilo sur paralela pordo #%s"
-
-#: printer/main.pm:387
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: printer/main.pm:389
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: printer/main.pm:391
-#, c-format
-msgid ", multi-function device"
-msgstr ""
-
-#: printer/main.pm:395
-#, c-format
-msgid ", printing to %s"
-msgstr ", presante sur %s"
-
-#: printer/main.pm:398
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr " sur LPD-servilo \"%s\", printilo \"%s\""
-
-#: printer/main.pm:401
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: printer/main.pm:406
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: printer/main.pm:411
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " sur Novell-servilo \"%s\", printilo \"%s\""
-
-#: printer/main.pm:414
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: printer/main.pm:429
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Paralela pordo #%s"
-
-#: printer/main.pm:432 printer/printerdrake.pm:1466
-#: printer/printerdrake.pm:1493 printer/printerdrake.pm:1508
-#, c-format
-msgid "USB printer #%s"
-msgstr "USB-printilo #%s"
-
-#: printer/main.pm:434
-#, c-format
-msgid "USB printer"
-msgstr "USB-printilo"
-
-#: printer/main.pm:438
-#, c-format
-msgid "HP printer on a parallel port"
-msgstr "HP-printilo sur paralela pordo"
-
-#: printer/main.pm:440
-#, c-format
-msgid "HP printer on USB"
-msgstr "HP-printilo sur USB"
-
-#: printer/main.pm:442
-#, c-format
-msgid "HP printer on HP JetDirect"
-msgstr ""
-
-#: printer/main.pm:444
-#, c-format
-msgid "HP printer"
-msgstr "HP-printilo"
-
-#: printer/main.pm:450
-#, fuzzy, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Presilo sur paralela pordo #%s"
-
-#: printer/main.pm:453
-#, fuzzy, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Presilo sur paralela pordo #%s"
-
-#: printer/main.pm:455
-#, c-format
-msgid "Multi-function device on USB"
-msgstr ""
-
-#: printer/main.pm:457
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr ""
-
-#: printer/main.pm:459
-#, c-format
-msgid "Multi-function device"
-msgstr ""
-
-#: printer/main.pm:463
-#, c-format
-msgid "Prints into %s"
-msgstr "Presante sur %s"
-
-#: printer/main.pm:466
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "LPD-servilo \"%s\", printilo \"%s\""
-
-#: printer/main.pm:469
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: printer/main.pm:474
-#, fuzzy, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "Presilo \"%s\" sur SMB/vindoza servilo \"%s\""
-
-#: printer/main.pm:479
-#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Novell-servilo \"%s\", printilo \"%s\""
-
-#: printer/main.pm:482
-#, fuzzy, c-format
-msgid "Uses command %s"
-msgstr "%s sur %s"
-
-#: printer/main.pm:484
-#, c-format
-msgid "URI: %s"
-msgstr "URL: %s"
-
-#: printer/main.pm:689 printer/printerdrake.pm:1047
-#: printer/printerdrake.pm:3142
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: printer/main.pm:1309 printer/printerdrake.pm:211
-#: printer/printerdrake.pm:223
-#, c-format
-msgid "Local network(s)"
-msgstr "Loka(j) reto(j)"
-
-#: printer/main.pm:1311 printer/printerdrake.pm:227
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Interfaco \"%s\""
-
-#: printer/main.pm:1313
-#, c-format
-msgid "Network %s"
-msgstr "Reto %s"
-
-#: printer/main.pm:1315
-#, c-format
-msgid "Host %s"
-msgstr "Gastiganto %s"
-
-#: printer/main.pm:1344
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Pordo%s)"
-
-#: printer/main.pm:1945 printer/main.pm:2100
-#, c-format
-msgid "user-supplied"
-msgstr ""
-
-#: printer/main.pm:1949 printer/main.pm:2104
-#, c-format
-msgid "NEW"
-msgstr ""
-
-#: printer/printerdrake.pm:24
-#, c-format
-msgid ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"decompressing the self-extracting '.exe' file with the 'unzip' utility and "
-"searching for the 'sihp1000.img' file. Copy this file into the '/etc/"
-"printer' directory. There it will be found by the automatic uploader script "
-"and uploaded whenever the printer is connected and turned on.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:67
-#, fuzzy, c-format
-msgid "CUPS printer configuration"
-msgstr "Interreta Konfigurado"
-
-#: printer/printerdrake.pm:68
-#, c-format
-msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessible by remote machines and by which remote machines."
-msgstr ""
-
-#: printer/printerdrake.pm:69
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:72 printer/printerdrake.pm:506
-#: printer/printerdrake.pm:4542
-#, c-format
-msgid "Remote CUPS server and no local CUPS daemon"
-msgstr ""
-
-#: printer/printerdrake.pm:75
-#, c-format
-msgid "On"
-msgstr "Ŝaltita"
-
-#: printer/printerdrake.pm:77 printer/printerdrake.pm:498
-#: printer/printerdrake.pm:525
-#, c-format
-msgid "Off"
-msgstr "Malŝaltita"
-
-#: printer/printerdrake.pm:78 printer/printerdrake.pm:507
-#, c-format
-msgid ""
-"In this mode the local CUPS daemon will be stopped and all printing requests "
-"go directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:84
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr ""
-
-#: printer/printerdrake.pm:89
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr ""
-
-#: printer/printerdrake.pm:94
-#, fuzzy, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Printilo"
-
-#: printer/printerdrake.pm:96
-#, fuzzy, c-format
-msgid "Custom configuration"
-msgstr "Interreta Konfigurado"
-
-#: printer/printerdrake.pm:101 standalone/scannerdrake:610
-#: standalone/scannerdrake:627
-#, fuzzy, c-format
-msgid "No remote machines"
-msgstr "Malproksima printilo"
-
-#: printer/printerdrake.pm:112
-#, fuzzy, c-format
-msgid "Additional CUPS servers: "
-msgstr "IP de SMB servilo"
-
-#: printer/printerdrake.pm:119
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-
-#: printer/printerdrake.pm:127
-#, fuzzy, c-format
-msgid "Japanese text printing mode"
-msgstr "Konfiguru retumon"
-
-#: printer/printerdrake.pm:128
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in Japanese language. Only "
-"use this function if you really want to print text in Japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print Japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-
-#: printer/printerdrake.pm:135
-#, fuzzy, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Post-instala konfigurado"
-
-#: printer/printerdrake.pm:137
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-
-#: printer/printerdrake.pm:161 printer/printerdrake.pm:236
-#, fuzzy, c-format
-msgid "Sharing of local printers"
-msgstr "Loka printilo"
-
-#: printer/printerdrake.pm:162
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-
-#: printer/printerdrake.pm:173
-#, c-format
-msgid "Add host/network"
-msgstr ""
-
-#: printer/printerdrake.pm:179
-#, c-format
-msgid "Edit selected host/network"
-msgstr ""
-
-#: printer/printerdrake.pm:188
-#, fuzzy, c-format
-msgid "Remove selected host/network"
-msgstr "Malinstalu printvicon"
-
-#: printer/printerdrake.pm:219 printer/printerdrake.pm:229
-#: printer/printerdrake.pm:241 printer/printerdrake.pm:248
-#: printer/printerdrake.pm:279 printer/printerdrake.pm:297
-#, c-format
-msgid "IP address of host/network:"
-msgstr ""
-
-#: printer/printerdrake.pm:237
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr ""
-
-#: printer/printerdrake.pm:244
-#, c-format
-msgid "Host/network IP address missing."
-msgstr ""
-
-#: printer/printerdrake.pm:252
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:253 printer/printerdrake.pm:429
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr ""
-
-#: printer/printerdrake.pm:277
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:346 printer/printerdrake.pm:416
-#, fuzzy, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Malproksima CUPS-a servilo"
-
-#: printer/printerdrake.pm:347
-#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
-
-#: printer/printerdrake.pm:358
-#, fuzzy, c-format
-msgid "Add server"
-msgstr "Aldonu uzanto"
-
-#: printer/printerdrake.pm:364
-#, fuzzy, c-format
-msgid "Edit selected server"
-msgstr "Malinstalu printvicon"
-
-#: printer/printerdrake.pm:373
-#, fuzzy, c-format
-msgid "Remove selected server"
-msgstr "Malinstalu printvicon"
-
-#: printer/printerdrake.pm:417
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-
-#: printer/printerdrake.pm:418
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr ""
-
-#: printer/printerdrake.pm:422
-#, fuzzy, c-format
-msgid "Server IP missing!"
-msgstr "Printilaj Poŝtejo"
-
-#: printer/printerdrake.pm:428
-#, fuzzy, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Ĉu tio ĉi pravas?"
-
-#: printer/printerdrake.pm:440 printer/printerdrake.pm:2133
-#, c-format
-msgid "The port number should be an integer!"
-msgstr ""
-
-#: printer/printerdrake.pm:451
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:462 printer/printerdrake.pm:2160
-#: standalone/drakups:249 standalone/harddrake2:52
-#, c-format
-msgid "Port"
-msgstr "Pordo"
-
-#: printer/printerdrake.pm:495 printer/printerdrake.pm:511
-#: printer/printerdrake.pm:526 printer/printerdrake.pm:530
-#: printer/printerdrake.pm:536
-#, fuzzy, c-format
-msgid "On, Name or IP of remote server:"
-msgstr "Malproksimaj lpd servilo"
-
-#: printer/printerdrake.pm:514 printer/printerdrake.pm:4551
-#: printer/printerdrake.pm:4617
-#, fuzzy, c-format
-msgid "CUPS server name or IP address missing."
-msgstr "Printilaj Poŝtejo"
-
-#: printer/printerdrake.pm:566 printer/printerdrake.pm:586
-#: printer/printerdrake.pm:811 printer/printerdrake.pm:880
-#: printer/printerdrake.pm:901 printer/printerdrake.pm:927
-#: printer/printerdrake.pm:1023 printer/printerdrake.pm:1065
-#: printer/printerdrake.pm:1075 printer/printerdrake.pm:1110
-#: printer/printerdrake.pm:2220 printer/printerdrake.pm:2490
-#: printer/printerdrake.pm:2524 printer/printerdrake.pm:2575
-#: printer/printerdrake.pm:2582 printer/printerdrake.pm:2621
-#: printer/printerdrake.pm:2663 printer/printerdrake.pm:2700
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2984
-#: printer/printerdrake.pm:2989 printer/printerdrake.pm:3137
-#: printer/printerdrake.pm:3248 printer/printerdrake.pm:3862
-#: printer/printerdrake.pm:3929 printer/printerdrake.pm:3978
-#: printer/printerdrake.pm:3981 printer/printerdrake.pm:4091
-#: printer/printerdrake.pm:4149 printer/printerdrake.pm:4221
-#: printer/printerdrake.pm:4242 printer/printerdrake.pm:4252
-#: printer/printerdrake.pm:4342 printer/printerdrake.pm:4437
-#: printer/printerdrake.pm:4443 printer/printerdrake.pm:4471
-#: printer/printerdrake.pm:4578 printer/printerdrake.pm:4687
-#: printer/printerdrake.pm:4707 printer/printerdrake.pm:4716
-#: printer/printerdrake.pm:4731 printer/printerdrake.pm:4932
-#: printer/printerdrake.pm:5407 printer/printerdrake.pm:5490
-#: standalone/printerdrake:75 standalone/printerdrake:590
-#, fuzzy, c-format
-msgid "Printerdrake"
-msgstr "Printilo"
-
-#: printer/printerdrake.pm:567 printer/printerdrake.pm:4150
-#: printer/printerdrake.pm:4688
-#, fuzzy, c-format
-msgid "Reading printer data..."
-msgstr "Legas datumbason de CUPS peliloj..."
-
-#: printer/printerdrake.pm:587
-#, fuzzy, c-format
-msgid "Restarting CUPS..."
-msgstr "limigu"
-
-#: printer/printerdrake.pm:614
-#, c-format
-msgid ""
-"Allow pop-up windows, printer setup and package installation may be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:616
-#, c-format
-msgid ""
-"No pop-up windows, printer setup and package installation cannot be canceled"
-msgstr ""
-
-#: printer/printerdrake.pm:622
-#, fuzzy, c-format
-msgid "Printer auto administration"
-msgstr "Malproksima printilo"
-
-#: printer/printerdrake.pm:623
-#, c-format
-msgid ""
-"Here you can configure printer administration tasks which should be done "
-"automatically."
-msgstr ""
-
-#: printer/printerdrake.pm:626
-#, fuzzy, c-format
-msgid "Do automatic configuration of new printers"
-msgstr "Post-instala konfigurado"
-
-#: printer/printerdrake.pm:627 printer/printerdrake.pm:641
-#, fuzzy, c-format
-msgid "when a USB printer is connected and turned on"
-msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-
-#: printer/printerdrake.pm:630
-#, fuzzy, c-format
-msgid "when Printerdrake is started"
-msgstr "Ĉi tiu subdisko ne estas regrandecigebla"
-
-#: printer/printerdrake.pm:634
-#, c-format
-msgid "Mode for automatic printer setup:"
-msgstr ""
-
-#: printer/printerdrake.pm:640
-#, fuzzy, c-format
-msgid "Re-enable disabled printers"
-msgstr "Loka printilo"
-
-#: printer/printerdrake.pm:644
-#, fuzzy, c-format
-msgid "when the printing system is started"
-msgstr "Konfiguru retumon"
-
-#: printer/printerdrake.pm:680
-#, fuzzy, c-format
-msgid "Communication error handling for the printer \"%s\""
-msgstr "Presanta per presilo \"%s\""
-
-#: printer/printerdrake.pm:682
-#, c-format
-msgid ""
-"Here you can configure how errors during the communication between your "
-"computer and the printer \"%s\" should be handled (for example if the "
-"printer is not turned on)."
-msgstr ""
-
-#: printer/printerdrake.pm:686
-#, c-format
-msgid "The number of retries should be an integer number of at least 1!"
-msgstr ""
-
-#: printer/printerdrake.pm:690
-#, c-format
-msgid "The delay between retries should be a positive integer number!"
-msgstr ""
-
-#: printer/printerdrake.pm:701
-#, fuzzy, c-format
-msgid "Do not disable the printer"
-msgstr "Datumbazoj"
-
-#: printer/printerdrake.pm:704
-#, c-format
-msgid "Retry infinitely often"
-msgstr ""
-
-#: printer/printerdrake.pm:707
-#, fuzzy, c-format
-msgid "Number of retries"
-msgstr "2 butonoj"
-
-#: printer/printerdrake.pm:712
-#, c-format
-msgid "Delay between retries (in sec)"
-msgstr ""
-
-#: printer/printerdrake.pm:745 printer/printerdrake.pm:765
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Elektu Printilan Konekton"
-
-#: printer/printerdrake.pm:746
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Kiel estas la printilo konektata?"
-
-#: printer/printerdrake.pm:748
-#, fuzzy, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"Kun malproksima CUPS servilo, vi ne devas konfiguri iun printilon\n"
-"ĉi tie; printiloj estos aŭtomate dektektataj. Se vi havas dubojn,\n"
-"elektu \"Malproksima CUPS servilo\"."
-
-#: printer/printerdrake.pm:751 printer/printerdrake.pm:4934
-#, c-format
-msgid ""
-"\n"
-"WARNING: No local network connection active, remote printers can neither be "
-"detected nor tested!"
-msgstr ""
-
-#: printer/printerdrake.pm:758
-#, c-format
-msgid ""
-"Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"
-msgstr ""
-
-#: printer/printerdrake.pm:760
-#, c-format
-msgid "Modify timeout for network printer auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:766
-#, c-format
-msgid "Enter the timeout for network printer auto-detection (in msec) here. "
-msgstr ""
-
-#: printer/printerdrake.pm:768
-#, c-format
-msgid ""
-"The longer you choose the timeout, the more reliable the detections of "
-"network printers will be, but the scan can take longer then, especially if "
-"there are many machines with local firewalls in the network. "
-msgstr ""
-
-#: printer/printerdrake.pm:772
-#, c-format
-msgid "The timeout must be a positive integer number!"
-msgstr ""
-
-#: printer/printerdrake.pm:811
-#, fuzzy, c-format
-msgid "Checking your system..."
-msgstr "Kiun printsistemo vi deziras uzi?"
-
-#: printer/printerdrake.pm:829
-#, fuzzy, c-format
-msgid "and one unknown printer"
-msgstr "Neniu printilo"
-
-#: printer/printerdrake.pm:831
-#, fuzzy, c-format
-msgid "and %d unknown printers"
-msgstr "Neniu printilo"
-
-#: printer/printerdrake.pm:835
-#, fuzzy, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr "Via komputilo ne havas retadaptilon!"
-
-#: printer/printerdrake.pm:837
-#, fuzzy, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr "Via komputilo ne havas retadaptilon!"
-
-#: printer/printerdrake.pm:838
-#, fuzzy, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr "Via komputilo ne havas retadaptilon!"
-
-#: printer/printerdrake.pm:842
-#, c-format
-msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
-
-#: printer/printerdrake.pm:843
-#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
-
-#: printer/printerdrake.pm:846
-#, c-format
-msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr ""
-
-#: printer/printerdrake.pm:849
-#, fuzzy, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-
-#: printer/printerdrake.pm:862
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
-
-#: printer/printerdrake.pm:863
-#, fuzzy, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Ĉu vi deziras provi printado?"
-
-#: printer/printerdrake.pm:865
-#, fuzzy, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Ĉu vi deziras starti vian konektaĵon je startado de la sistemo?"
-
-#: printer/printerdrake.pm:866
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr ""
-
-#: printer/printerdrake.pm:867
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
-
-#: printer/printerdrake.pm:884
-#, c-format
-msgid "Do not setup printer automatically now, and never do it again"
-msgstr ""
-
-#: printer/printerdrake.pm:928
-#, fuzzy, c-format
-msgid "Searching for new printers..."
-msgstr "Loka printilo"
-
-#: printer/printerdrake.pm:976
-#, c-format
-msgid "Do not setup printer automatically again"
-msgstr ""
-
-#: printer/printerdrake.pm:983
-#, fuzzy, c-format
-msgid "New printers found"
-msgstr "Loka printilo"
-
-#: printer/printerdrake.pm:984
-#, fuzzy, c-format
-msgid "New printer found"
-msgstr "Loka printilo"
-
-#: printer/printerdrake.pm:986
-#, c-format
-msgid ""
-"The following new printers were found and Printerdrake can automatically set "
-"them up for you. If you do not want to have all of them set up, unselect the "
-"ones which should be skipped, or click \"Cancel\" to set up none of them.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:987
-#, c-format
-msgid ""
-"The following new printer was found and printerdrake can automatically set "
-"it up for you. If you do not want to have it set up, unselect it, or click "
-"\"Cancel\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:988
-#, c-format
-msgid ""
-"Note that for certain printer models additional packages need to be "
-"installed. So keep your installation media handy.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1024 printer/printerdrake.pm:1066
-#, fuzzy, c-format
-msgid "Configuring printer on %s..."
-msgstr "Mi konfiguras printilon \"%s\"..."
-
-#: printer/printerdrake.pm:1049
-#, c-format
-msgid "("
-msgstr "("
-
-#: printer/printerdrake.pm:1050
-#, c-format
-msgid " on "
-msgstr ""
-
-#: printer/printerdrake.pm:1051 standalone/scannerdrake:137
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: printer/printerdrake.pm:1056 printer/printerdrake.pm:3149
-#, fuzzy, c-format
-msgid "Printer model selection"
-msgstr "Printilan Konekton"
-
-#: printer/printerdrake.pm:1057 printer/printerdrake.pm:3150
-#, fuzzy, c-format
-msgid "Which printer model do you have?"
-msgstr "Kiun specon de printilo vi havas?"
-
-#: printer/printerdrake.pm:1058
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-
-#: printer/printerdrake.pm:1061 printer/printerdrake.pm:3155
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: printer/printerdrake.pm:1076 printer/printerdrake.pm:4708
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Mi konfiguras printilon \"%s\"..."
-
-#: printer/printerdrake.pm:1111
-#, c-format
-msgid ""
-"Now you have turned off automatic printer setup.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1112
-#, c-format
-msgid ""
-"You can turn it back on again by choosing \"%s\" -> \"%s\" in Printerdrake's "
-"main menu. "
-msgstr ""
-
-#: printer/printerdrake.pm:1112 printer/printerdrake.pm:4984
-#, fuzzy, c-format
-msgid "Configure Auto Administration"
-msgstr "Malproksima administrado"
-
-#: printer/printerdrake.pm:1113
-#, c-format
-msgid ""
-"There you can also choose in which situation automatic printer setup is done "
-"(On Printerdrake startup, on printing system startup, when connecting a new "
-"USB printer)."
-msgstr ""
-
-#: printer/printerdrake.pm:1261 printer/printerdrake.pm:1273
-#: printer/printerdrake.pm:1380 printer/printerdrake.pm:2401
-#: printer/printerdrake.pm:2460 printer/printerdrake.pm:2556
-#: printer/printerdrake.pm:4951 printer/printerdrake.pm:5138
-#, fuzzy, c-format
-msgid "Add a new printer"
-msgstr "Neniu printilo"
-
-#: printer/printerdrake.pm:1262
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: printer/printerdrake.pm:1275
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected. Also your network printer(s) and your Windows "
-"machines must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you do not "
-"need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1284
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1292
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you do not need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1301
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-
-#: printer/printerdrake.pm:1352
-#, fuzzy, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Malproksima printilo"
-
-#: printer/printerdrake.pm:1355
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr ""
-
-#: printer/printerdrake.pm:1358
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
-
-#: printer/printerdrake.pm:1361
-#, fuzzy, c-format
-msgid "No auto-detection"
-msgstr "Memdetekta"
-
-#: printer/printerdrake.pm:1381
-#, c-format
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the %s Control Center."
-msgstr ""
-
-#: printer/printerdrake.pm:1417 printer/printerdrake.pm:1641
-#: printer/printerdrake.pm:1704 printer/printerdrake.pm:1796
-#: printer/printerdrake.pm:1934 printer/printerdrake.pm:2010
-#: printer/printerdrake.pm:2177 printer/printerdrake.pm:2268
-#: printer/printerdrake.pm:2277 printer/printerdrake.pm:2286
-#: printer/printerdrake.pm:2297 printer/printerdrake.pm:2496
-#: printer/printerdrake.pm:2633
-#, fuzzy, c-format
-msgid "Could not install the %s packages!"
-msgstr "Instalanta pakaĵo %s"
-
-#: printer/printerdrake.pm:1419
-#, c-format
-msgid "Skipping Windows/SMB server auto-detection"
-msgstr ""
-
-#: printer/printerdrake.pm:1425 printer/printerdrake.pm:1564
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, fuzzy, c-format
-msgid "Printer auto-detection"
-msgstr "Malproksima printilo"
-
-#: printer/printerdrake.pm:1425
-#, c-format
-msgid "Detecting devices..."
-msgstr "Detektas aparatojn..."
-
-#: printer/printerdrake.pm:1451
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ""
-
-#: printer/printerdrake.pm:1454
-#, fuzzy, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/Vindozo 95/98/NT"
-
-#: printer/printerdrake.pm:1458
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "Duobla surmetingo %s"
-
-#: printer/printerdrake.pm:1463 printer/printerdrake.pm:1490
-#: printer/printerdrake.pm:1505
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Presilo sur paralela pordo #%s"
-
-#: printer/printerdrake.pm:1469
-#, fuzzy, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Reta Printilo (TCP/ingo)"
-
-#: printer/printerdrake.pm:1472
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Presilo \"%s\" sur SMB/vindoza servilo \"%s\""
-
-#: printer/printerdrake.pm:1550
-#, fuzzy, c-format
-msgid "Local Printer"
-msgstr "Loka printilo"
-
-#: printer/printerdrake.pm:1551
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: printer/printerdrake.pm:1555
-#, fuzzy, c-format
-msgid "You must enter a device or file name!"
-msgstr "Printila Aparato URI"
-
-#: printer/printerdrake.pm:1565
-#, fuzzy, c-format
-msgid "No printer found!"
-msgstr "Loka printilo"
-
-#: printer/printerdrake.pm:1573
-#, fuzzy, c-format
-msgid "Local Printers"
-msgstr "Loka printilo"
-
-#: printer/printerdrake.pm:1574
-#, fuzzy, c-format
-msgid "Available printers"
-msgstr "Loka printilo"
-
-#: printer/printerdrake.pm:1578 printer/printerdrake.pm:1587
-#, fuzzy, c-format
-msgid "The following printer was auto-detected. "
-msgstr "La sekvaj pakaĵoj estos malinstalataj"
-
-#: printer/printerdrake.pm:1580
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1581
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1582 printer/printerdrake.pm:1591
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr ""
-
-#: printer/printerdrake.pm:1584
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1585
-#, c-format
-msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1589
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: printer/printerdrake.pm:1590
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr ""
-
-#: printer/printerdrake.pm:1593
-#, c-format
-msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
-msgstr ""
-
-#: printer/printerdrake.pm:1594
-#, fuzzy, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-
-#: printer/printerdrake.pm:1596
-#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: printer/printerdrake.pm:1597
-#, fuzzy, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-
-#: printer/printerdrake.pm:1599
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: printer/printerdrake.pm:1603
-#, fuzzy, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Printila Aparato URI"
-
-#: printer/printerdrake.pm:1643 printer/printerdrake.pm:1706
-#: printer/printerdrake.pm:1798 printer/printerdrake.pm:1936
-#: printer/printerdrake.pm:2012 printer/printerdrake.pm:2179
-#: printer/printerdrake.pm:2270 printer/printerdrake.pm:2279
-#: printer/printerdrake.pm:2288 printer/printerdrake.pm:2299
-#, fuzzy, c-format
-msgid "Aborting"
-msgstr "Ĉesigu"
-
-#: printer/printerdrake.pm:1679
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Malproksimaj lpd Printilaj Opcioj"
-
-#: printer/printerdrake.pm:1680
-#, fuzzy, c-format
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Por uzi malproksima lpd printvico, vi devas provizi la poŝtejon de la\n"
-"printservilo kaj la printviconomon ĉe tiu servilo en kiun taskoj devus\n"
-"esti metata."
-
-#: printer/printerdrake.pm:1681
-#, fuzzy, c-format
-msgid "Remote host name"
-msgstr "Malproksima poŝtejo"
-
-#: printer/printerdrake.pm:1682
-#, fuzzy, c-format
-msgid "Remote printer name"
-msgstr "Malproksima printilo"
-
-#: printer/printerdrake.pm:1685
-#, fuzzy, c-format
-msgid "Remote host name missing!"
-msgstr "Malproksima poŝtejo"
-
-#: printer/printerdrake.pm:1689
-#, fuzzy, c-format
-msgid "Remote printer name missing!"
-msgstr "Malproksima poŝtejo"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318 standalone/drakTermServ:475
-#: standalone/drakTermServ:807 standalone/drakTermServ:823
-#: standalone/drakTermServ:1653 standalone/drakTermServ:1662
-#: standalone/drakTermServ:1676 standalone/drakbackup:512
-#: standalone/drakbackup:618 standalone/drakbackup:653
-#: standalone/drakbackup:754 standalone/draknfs:203
-#: standalone/draksambashare:627 standalone/draksambashare:794
-#: standalone/harddrake2:275
-#, c-format
-msgid "Information"
-msgstr "Informo"
-
-#: printer/printerdrake.pm:1719 printer/printerdrake.pm:2195
-#: printer/printerdrake.pm:2318
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Mi detektis modelon: %s %s"
-
-#: printer/printerdrake.pm:1802 printer/printerdrake.pm:2064
-#, fuzzy, c-format
-msgid "Scanning network..."
-msgstr "Startas vian konektaĵon..."
-
-#: printer/printerdrake.pm:1814 printer/printerdrake.pm:1835
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ""
-
-#: printer/printerdrake.pm:1817 printer/printerdrake.pm:1838
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Presilo \"%s\" en servilo \"%s\""
-
-#: printer/printerdrake.pm:1859
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Vindozo 9x/NT) Printilaj Opcioj"
-
-#: printer/printerdrake.pm:1860
-#, fuzzy, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Por printi al SMB-a printilo, vi devas provizi la SMB poŝtejon (Notu! Ĝi "
-"eble\n"
-"estas malsama de ĝia TCP/IP nomo!) kaj eble la IP-adreson de la "
-"printservilo,\n"
-"aldone al la opuzan nomon de la printilo vi deziras atingi kaj iun ajn\n"
-"taŭgan salutnomon, pasvorton, kaj laborgrupan informon."
-
-#: printer/printerdrake.pm:1861
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-
-#: printer/printerdrake.pm:1863
-#, c-format
-msgid "SMB server host"
-msgstr "Poŝtejo de SMB servilo"
-
-#: printer/printerdrake.pm:1864
-#, c-format
-msgid "SMB server IP"
-msgstr "IP de SMB servilo"
-
-#: printer/printerdrake.pm:1865 standalone/draksambashare:67
-#, c-format
-msgid "Share name"
-msgstr "Opuza nomo"
-
-#: printer/printerdrake.pm:1868
-#, c-format
-msgid "Workgroup"
-msgstr "Laborgrupo"
-
-#: printer/printerdrake.pm:1870
-#, fuzzy, c-format
-msgid "Auto-detected"
-msgstr "Malproksima printilo"
-
-#: printer/printerdrake.pm:1880
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: printer/printerdrake.pm:1884
-#, c-format
-msgid "Samba share name missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:1890
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: printer/printerdrake.pm:1891
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1901
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:1904
-#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: printer/printerdrake.pm:1983
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "NetWare Printilaj Opcioj"
-
-#: printer/printerdrake.pm:1984
-#, fuzzy, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Por print al NetWare printilo, vi devas provizi la NetWare printservilan\n"
-"nomon (Notu! Ĝi eble estas malsama de ĝia TCP/IP nomo!) aldone al la\n"
-"printvican nomon por la printilo vi deziras atingi kaj iun ajn taŭgan\n"
-"salutnomon kaj pasvorton."
-
-#: printer/printerdrake.pm:1985
-#, c-format
-msgid "Printer Server"
-msgstr "Printservilo"
-
-#: printer/printerdrake.pm:1986
-#, c-format
-msgid "Print Queue Name"
-msgstr "Printvica Nomo"
-
-#: printer/printerdrake.pm:1991
-#, c-format
-msgid "NCP server name missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:1995
-#, c-format
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:2076 printer/printerdrake.pm:2097
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ""
-
-#: printer/printerdrake.pm:2079 printer/printerdrake.pm:2100
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr ""
-
-#: printer/printerdrake.pm:2122
-#, fuzzy, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "Ing-Printilaj Opcioj"
-
-#: printer/printerdrake.pm:2124
-#, c-format
-msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
-msgstr ""
-
-#: printer/printerdrake.pm:2125
-#, fuzzy, c-format
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
-msgstr ""
-"Por printi al inga printilo, vi bezonas provizi la\n"
-"poŝtejon de la printilo kaj opcie la pordnumeron."
-
-#: printer/printerdrake.pm:2129
-#, fuzzy, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Printilaj Poŝtejo"
-
-#: printer/printerdrake.pm:2158
-#, fuzzy, c-format
-msgid "Printer host name or IP"
-msgstr "Printilaj Poŝtejo"
-
-#: printer/printerdrake.pm:2221
-#, fuzzy, c-format
-msgid "Refreshing Device URI list..."
-msgstr "Legas datumbason de CUPS peliloj..."
-
-#: printer/printerdrake.pm:2224 printer/printerdrake.pm:2226
-#, c-format
-msgid "Printer Device URI"
-msgstr "Printila Aparato URI"
-
-#: printer/printerdrake.pm:2225
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: printer/printerdrake.pm:2249
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: printer/printerdrake.pm:2354
-#, c-format
-msgid "Pipe into command"
-msgstr ""
-
-#: printer/printerdrake.pm:2355
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-
-#: printer/printerdrake.pm:2356
-#, c-format
-msgid "Command line"
-msgstr "Komandlinio:"
-
-#: printer/printerdrake.pm:2360
-#, c-format
-msgid "A command line must be entered!"
-msgstr ""
-
-#: printer/printerdrake.pm:2402
-#, c-format
-msgid "Your printer %s is currently connected %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2404 printer/printerdrake.pm:2411
-#, fuzzy, c-format
-msgid "to a parallel port"
-msgstr " sur paralela pordo #%s"
-
-#: printer/printerdrake.pm:2405 printer/printerdrake.pm:2412
-#, c-format
-msgid "to the USB"
-msgstr ""
-
-#: printer/printerdrake.pm:2406 printer/printerdrake.pm:2413
-#, fuzzy, c-format
-msgid "via the network"
-msgstr "Startado de la reto"
-
-#: printer/printerdrake.pm:2407
-#, c-format
-msgid "This type of connection is currently not fully supported by HPLIP."
-msgstr ""
-
-#: printer/printerdrake.pm:2409
-#, c-format
-msgid "You get full HPLIP support for your device if you connect it "
-msgstr ""
-
-#: printer/printerdrake.pm:2415
-#, c-format
-msgid ""
-"You can now set up your device with HPLIP anyway (works in many cases), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, c-format
-msgid "set it up without HPLIP (print-only), "
-msgstr ""
-
-#: printer/printerdrake.pm:2416
-#, fuzzy, c-format
-msgid "or"
-msgstr "Horo"
-
-#: printer/printerdrake.pm:2417
-#, c-format
-msgid "cancel the setup (for example to reconnect your device)."
-msgstr ""
-
-#: printer/printerdrake.pm:2419
-#, c-format
-msgid ""
-"You can always revise your choice by clicking your printer's entry in the "
-"main window, "
-msgstr ""
-
-#: printer/printerdrake.pm:2420
-#, c-format
-msgid "clicking the \"%s\" button, "
-msgstr ""
-
-#. -PO: "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: printer/printerdrake.pm:2420 standalone/drakperm:124 standalone/drakups:300
-#: standalone/drakups:360 standalone/drakups:380 standalone/drakvpn:319
-#: standalone/drakvpn:680 standalone/printerdrake:245
-#, c-format
-msgid "Edit"
-msgstr "Redaktu"
-
-#: printer/printerdrake.pm:2421
-#, c-format
-msgid "and choosing \"%s\"."
-msgstr ""
-
-#: printer/printerdrake.pm:2421 printer/printerdrake.pm:5334
-#: printer/printerdrake.pm:5394
-#, fuzzy, c-format
-msgid "Printer connection type"
-msgstr "Disdividado de Interreta Konekto"
-
-#: printer/printerdrake.pm:2423 standalone/logdrake:408
-#, fuzzy, c-format
-msgid "What do you want to do?"
-msgstr "Kie vi deziras kroĉi aparaton %s?"
-
-#: printer/printerdrake.pm:2424 printer/printerdrake.pm:2428
-#, c-format
-msgid "Set up with HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2425 printer/printerdrake.pm:2427
-#: printer/printerdrake.pm:2430
-#, c-format
-msgid "Set up without HPLIP"
-msgstr ""
-
-#: printer/printerdrake.pm:2461
-#, c-format
-msgid ""
-"On many HP printers there are special functions available, maintenance (ink "
-"level checking, nozzle cleaning. head alignment, ...) on all not too old "
-"inkjets, scanning on multi-function devices, and memory card access on "
-"printers with card readers. "
-msgstr ""
-
-#: printer/printerdrake.pm:2463
-#, c-format
-msgid ""
-"To access these extra functions on HP printers they must be set up with "
-"HPLIP (HP Linux Imaging and Printing). "
-msgstr ""
-
-#: printer/printerdrake.pm:2465
-#, c-format
-msgid "Do you want to use HPLIP (choose \"No\" for non-HP printers)? "
-msgstr ""
-
-#: printer/printerdrake.pm:2491
-#, c-format
-msgid "Installing %s package..."
-msgstr "Instalanta pakaĵon %s..."
-
-#: printer/printerdrake.pm:2491 printer/printerdrake.pm:2497
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "HPLIP"
-msgstr "HPLIP"
-
-#: printer/printerdrake.pm:2498
-#, c-format
-msgid "Only printing will be possible on the %s."
-msgstr ""
-
-#: printer/printerdrake.pm:2513
-#, fuzzy, c-format
-msgid "Could not remove your old HPOJ configuration file %s for your %s! "
-msgstr "Ne eblis sekurigi agordodosieron.\n"
-
-#: printer/printerdrake.pm:2515
-#, c-format
-msgid "Please remove the file manually and restart HPOJ."
-msgstr ""
-
-#: printer/printerdrake.pm:2525
-#, c-format
-msgid "Checking device and configuring %s..."
-msgstr ""
-
-#: printer/printerdrake.pm:2557
-#, fuzzy, c-format
-msgid "Which printer do you want to set up with HPLIP?"
-msgstr "Al kiu sektoro vi deziras movi?"
-
-#: printer/printerdrake.pm:2576
-#, c-format
-msgid "HPLIP was not able to communicate with the chosen printer!"
-msgstr ""
-
-#: printer/printerdrake.pm:2577 printer/printerdrake.pm:2584
-#, fuzzy, c-format
-msgid "Setting up the printer without HPLIP..."
-msgstr "Ŝarĝas la kernan modulon por la USB-a printilo ...\n"
-
-#: printer/printerdrake.pm:2583
-#, c-format
-msgid ""
-"HPLIP did not find any local printers (Parallel, USB) which it supports!"
-msgstr ""
-
-#: printer/printerdrake.pm:2622
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "Instalanta pakaĵojn SANE..."
-
-#: printer/printerdrake.pm:2635
-#, c-format
-msgid "Scanning on the %s will not be possible."
-msgstr ""
-
-#: printer/printerdrake.pm:2650
-#, c-format
-msgid "Using and Maintaining your %s"
-msgstr ""
-
-#: printer/printerdrake.pm:2664
-#, fuzzy, c-format
-msgid "Configuring device..."
-msgstr "Mi konfiguras..."
-
-#: printer/printerdrake.pm:2701
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr ""
-
-#: printer/printerdrake.pm:2711 printer/printerdrake.pm:2985
-#: printer/printerdrake.pm:3138
-#, fuzzy, c-format
-msgid "Reading printer database..."
-msgstr "Legas datumbason de CUPS peliloj..."
-
-#: printer/printerdrake.pm:2943
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr ""
-
-#: printer/printerdrake.pm:2947 printer/printerdrake.pm:4206
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-
-#: printer/printerdrake.pm:2953 printer/printerdrake.pm:4211
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: printer/printerdrake.pm:2960
-#, c-format
-msgid ""
-"The printer name \"%s\" has more than 12 characters which can make the "
-"printer unaccessible from Windows clients. Do you really want to use this "
-"name?"
-msgstr ""
-
-#: printer/printerdrake.pm:2969
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: printer/printerdrake.pm:2970
-#, c-format
-msgid "Name of printer"
-msgstr "Nomo de printilo"
-
-#: printer/printerdrake.pm:2971 standalone/drakconnect:592
-#: standalone/harddrake2:39 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Description"
-msgstr "Priskribo"
-
-#: printer/printerdrake.pm:2972 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "Location"
-msgstr "Loko"
-
-#: printer/printerdrake.pm:2990
-#, fuzzy, c-format
-msgid "Preparing printer database..."
-msgstr "Legas datumbason de CUPS peliloj..."
-
-#: printer/printerdrake.pm:3116
-#, fuzzy, c-format
-msgid "Your printer model"
-msgstr "Malproksima printilo"
-
-#: printer/printerdrake.pm:3117
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: printer/printerdrake.pm:3122 printer/printerdrake.pm:3125
-#, fuzzy, c-format
-msgid "The model is correct"
-msgstr "Ĉu tio ĉi pravas?"
-
-#: printer/printerdrake.pm:3123 printer/printerdrake.pm:3124
-#: printer/printerdrake.pm:3127
-#, fuzzy, c-format
-msgid "Select model manually"
-msgstr "Malproksima printilo"
-
-#: printer/printerdrake.pm:3151
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
-msgstr ""
-
-#: printer/printerdrake.pm:3170
-#, c-format
-msgid "Install a manufacturer-supplied PPD file"
-msgstr ""
-
-#: printer/printerdrake.pm:3202
-#, c-format
-msgid ""
-"Every PostScript printer is delivered with a PPD file which describes the "
-"printer's options and features."
-msgstr ""
-
-#: printer/printerdrake.pm:3203
-#, c-format
-msgid ""
-"This file is usually somewhere on the CD with the Windows and Mac drivers "
-"delivered with the printer."
-msgstr ""
-
-#: printer/printerdrake.pm:3204
-#, c-format
-msgid "You can find the PPD files also on the manufacturer's web sites."
-msgstr ""
-
-#: printer/printerdrake.pm:3205
-#, c-format
-msgid ""
-"If you have Windows installed on your machine, you can find the PPD file on "
-"your Windows partition, too."
-msgstr ""
-
-#: printer/printerdrake.pm:3206
-#, c-format
-msgid ""
-"Installing the printer's PPD file and using it when setting up the printer "
-"makes all options of the printer available which are provided by the "
-"printer's hardware"
-msgstr ""
-
-#: printer/printerdrake.pm:3207
-#, c-format
-msgid ""
-"Here you can choose the PPD file to be installed on your machine, it will "
-"then be used for the setup of your printer."
-msgstr ""
-
-#: printer/printerdrake.pm:3209
-#, fuzzy, c-format
-msgid "Install PPD file from"
-msgstr "Instalu rpm"
-
-#: printer/printerdrake.pm:3212 printer/printerdrake.pm:3220
-#: standalone/scannerdrake:183 standalone/scannerdrake:192
-#: standalone/scannerdrake:242 standalone/scannerdrake:250
-#, fuzzy, c-format
-msgid "Floppy Disk"
-msgstr "Disketo"
-
-#: printer/printerdrake.pm:3213 printer/printerdrake.pm:3222
-#: standalone/scannerdrake:184 standalone/scannerdrake:194
-#: standalone/scannerdrake:243 standalone/scannerdrake:252
-#, fuzzy, c-format
-msgid "Other place"
-msgstr "Aliaj pordoj"
-
-#: printer/printerdrake.pm:3228
-#, fuzzy, c-format
-msgid "Select PPD file"
-msgstr "Elektu dosieron"
-
-#: printer/printerdrake.pm:3232
-#, c-format
-msgid "The PPD file %s does not exist or is unreadable!"
-msgstr ""
-
-#: printer/printerdrake.pm:3238
-#, c-format
-msgid "The PPD file %s does not conform with the PPD specifications!"
-msgstr ""
-
-#: printer/printerdrake.pm:3249
-#, fuzzy, c-format
-msgid "Installing PPD file..."
-msgstr "Instalanta pakaĵo %s"
-
-#: printer/printerdrake.pm:3368
-#, fuzzy, c-format
-msgid "OKI winprinter configuration"
-msgstr "Interreta Konfigurado"
-
-#: printer/printerdrake.pm:3369
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: printer/printerdrake.pm:3394 printer/printerdrake.pm:3424
-#, fuzzy, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Interreta Konfigurado"
-
-#: printer/printerdrake.pm:3395
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: printer/printerdrake.pm:3425
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-
-#: printer/printerdrake.pm:3435
-#, fuzzy, c-format
-msgid "Lexmark X125 configuration"
-msgstr "Interreta Konfigurado"
-
-#: printer/printerdrake.pm:3436
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes. Please connect "
-"your printer to a local USB port or configure it on the machine where it is "
-"connected to."
-msgstr ""
-
-#: printer/printerdrake.pm:3458
-#, fuzzy, c-format
-msgid "Samsung ML/QL-85G configuration"
-msgstr "Son-konfigurado"
-
-#: printer/printerdrake.pm:3459 printer/printerdrake.pm:3486
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected on the "
-"first parallel port, no printers on remote machines or print server boxes or "
-"on other parallel ports. Please connect your printer to the first parallel "
-"port or configure it on the machine where it is connected to."
-msgstr ""
-
-#: printer/printerdrake.pm:3485
-#, fuzzy, c-format
-msgid "Canon LBP-460/660 configuration"
-msgstr "Interreta Konfigurado"
-
-#: printer/printerdrake.pm:3512
-#, fuzzy, c-format
-msgid "Canon LBP-810/1120 (CAPT) configuration"
-msgstr "Interreta Konfigurado"
-
-#: printer/printerdrake.pm:3513
-#, c-format
-msgid ""
-"The driver for this printer only supports printers locally connected via "
-"USB, no printers on remote machines or print server boxes or on the parallel "
-"port. Please connect your printer to the USB or configure it on the machine "
-"where it is directly connected to."
-msgstr ""
-
-#: printer/printerdrake.pm:3520
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr ""
-
-#: printer/printerdrake.pm:3670
-#, c-format
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: printer/printerdrake.pm:3795
-#, fuzzy, c-format
-msgid "Printer default settings"
-msgstr "Printilan Konekton"
-
-#: printer/printerdrake.pm:3802
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: printer/printerdrake.pm:3806
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: printer/printerdrake.pm:3810
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: printer/printerdrake.pm:3862
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Ĉu vi deziras konfiguri tiun ĉi presilon (\"%s\")\n"
-"kiel defaŭltan presilon?"
-
-#: printer/printerdrake.pm:3878
-#, fuzzy, c-format
-msgid "Test pages"
-msgstr "Provu pordojn"
-
-#: printer/printerdrake.pm:3879
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: printer/printerdrake.pm:3883
-#, fuzzy, c-format
-msgid "No test pages"
-msgstr "Jes, printu ambaŭ de la provpaĝojn"
-
-#: printer/printerdrake.pm:3884
-#, c-format
-msgid "Print"
-msgstr "Preso"
-
-#: printer/printerdrake.pm:3909
-#, fuzzy, c-format
-msgid "Standard test page"
-msgstr "Laŭnorma"
-
-#: printer/printerdrake.pm:3912
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: printer/printerdrake.pm:3915
-#, fuzzy, c-format
-msgid "Alternative test page (A4)"
-msgstr "Printas provpaĝo(j)n..."
-
-#: printer/printerdrake.pm:3917
-#, fuzzy, c-format
-msgid "Photo test page"
-msgstr "Printas provpaĝo(j)n..."
-
-#: printer/printerdrake.pm:3930
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Printas provpaĝo(j)n..."
-
-#: printer/printerdrake.pm:3950
-#, fuzzy, c-format
-msgid "Skipping photo test page."
-msgstr "Printas provpaĝo(j)n..."
-
-#: printer/printerdrake.pm:3967
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Provpaĝo(j)n estis sendataj al la printila demono.\n"
-"Ĉi tiu eble postulas iom da tempo antaŭ ol la printilo komencas.\n"
-"Printada stato:\n"
-"%s\n"
-"\n"
-"Ĉu ĝi ĝuste funkcias?"
-
-#: printer/printerdrake.pm:3971
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Provpaĝo(j)n estis sendataj al la printila demono.\n"
-"Ĉi tiu eble postulas iom da tempo antaŭ ol la printilo komencas.\n"
-"Ĉu ĝi ĝuste funkcias?"
-
-#: printer/printerdrake.pm:3981
-#, c-format
-msgid "Did it work properly?"
-msgstr ""
-
-#: printer/printerdrake.pm:4005
-#, c-format
-msgid "Raw printer"
-msgstr "Kruda presilo"
-
-#: printer/printerdrake.pm:4027
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4029
-#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4032 printer/printerdrake.pm:4049
-#: printer/printerdrake.pm:4059
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: printer/printerdrake.pm:4035 printer/printerdrake.pm:4075
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4039
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4044 printer/printerdrake.pm:4054
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4046 printer/printerdrake.pm:4056
-#: printer/printerdrake.pm:4066
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4051 printer/printerdrake.pm:4061
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: printer/printerdrake.pm:4064
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4068
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4072
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4081
-#, fuzzy, c-format
-msgid "Using/Maintaining the printer \"%s\""
-msgstr "Presanta per presilo \"%s\""
-
-#: printer/printerdrake.pm:4082
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Presanta per presilo \"%s\""
-
-#: printer/printerdrake.pm:4088
-#, fuzzy, c-format
-msgid "Print option list"
-msgstr "Printilaj opcioj"
-
-#: printer/printerdrake.pm:4092
-#, fuzzy, c-format
-msgid "Printing option list..."
-msgstr "Printilaj opcioj"
-
-#: printer/printerdrake.pm:4110
-#, c-format
-msgid ""
-"Your %s is set up with HP's HPLIP driver software. This way many special "
-"features of your printer are supported.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4113
-#, c-format
-msgid ""
-"The scanner in your printer can be used with the usual SANE software, for "
-"example Kooka or XSane (Both in the Multimedia/Graphics menu). "
-msgstr ""
-
-#: printer/printerdrake.pm:4114
-#, c-format
-msgid ""
-"Run Scannerdrake (Hardware/Scanner in Mandriva Linux Control Center) to "
-"share your scanner on the network.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4118
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed like a usual USB "
-"mass storage device. "
-msgstr ""
-
-#: printer/printerdrake.pm:4119
-#, c-format
-msgid ""
-"After inserting a card a hard disk icon to access the card should appear on "
-"your desktop.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4121
-#, c-format
-msgid ""
-"The memory card readers in your printer can be accessed using HP's Printer "
-"Toolbox (Menu: System/Monitoring/HP Printer Toolbox) clicking the \"Access "
-"Photo Cards...\" button on the \"Functions\" tab. "
-msgstr ""
-
-#: printer/printerdrake.pm:4122
-#, c-format
-msgid ""
-"Note that this is very slow, reading the pictures from the camera or a USB "
-"card reader is usually faster.\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4125
-#, c-format
-msgid ""
-"HP's Printer Toolbox (Menu: System/Monitoring/HP Printer Toolbox) offers a "
-"lot of status monitoring and maintenance functions for your %s:\n"
-"\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4126
-#, c-format
-msgid " - Ink level/status info\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4127
-#, c-format
-msgid " - Ink nozzle cleaning\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4128
-#, c-format
-msgid " - Print head alignment\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4129
-#, fuzzy, c-format
-msgid " - Color calibration\n"
-msgstr "Interreta Konfigurado"
-
-#: printer/printerdrake.pm:4170 printer/printerdrake.pm:4197
-#: printer/printerdrake.pm:4232
-#, fuzzy, c-format
-msgid "Transfer printer configuration"
-msgstr "Interreta Konfigurado"
-
-#: printer/printerdrake.pm:4171
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4174
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4176
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4178
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: printer/printerdrake.pm:4180
-#, c-format
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: printer/printerdrake.pm:4181
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: printer/printerdrake.pm:4182
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: printer/printerdrake.pm:4185
-#, c-format
-msgid "Do not transfer printers"
-msgstr ""
-
-#: printer/printerdrake.pm:4186 printer/printerdrake.pm:4202
-#, c-format
-msgid "Transfer"
-msgstr ""
-
-#: printer/printerdrake.pm:4198
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: printer/printerdrake.pm:4219
-#, fuzzy, c-format
-msgid "New printer name"
-msgstr "Neniu printilo"
-
-#: printer/printerdrake.pm:4222
-#, c-format
-msgid "Transferring %s..."
-msgstr ""
-
-#: printer/printerdrake.pm:4233
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: printer/printerdrake.pm:4243
-#, fuzzy, c-format
-msgid "Refreshing printer data..."
-msgstr "Legas datumbason de CUPS peliloj..."
-
-#: printer/printerdrake.pm:4253
-#, fuzzy, c-format
-msgid "Starting network..."
-msgstr "Startas vian konektaĵon..."
-
-#: printer/printerdrake.pm:4296 printer/printerdrake.pm:4300
-#: printer/printerdrake.pm:4302
-#, fuzzy, c-format
-msgid "Configure the network now"
-msgstr "Konfiguru retumon"
-
-#: printer/printerdrake.pm:4297
-#, fuzzy, c-format
-msgid "Network functionality not configured"
-msgstr "Ekrano ne estas konfigurata"
-
-#: printer/printerdrake.pm:4298
-#, c-format
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: printer/printerdrake.pm:4301
-#, fuzzy, c-format
-msgid "Go on without configuring the network"
-msgstr "Konfiguras reto"
-
-#: printer/printerdrake.pm:4332
-#, c-format
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network is accessible after booting your "
-"system and correct the configuration using the %s Control Center, section "
-"\"Network & Internet\"/\"Connection\", and afterwards set up the printer, "
-"also using the %s Control Center, section \"Hardware\"/\"Printer\""
-msgstr ""
-
-#: printer/printerdrake.pm:4333
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: printer/printerdrake.pm:4343
-#, fuzzy, c-format
-msgid "Restarting printing system..."
-msgstr "Kiun printsistemo vi deziras uzi?"
-
-#: printer/printerdrake.pm:4374
-#, fuzzy, c-format
-msgid "high"
-msgstr "Alta"
-
-#: printer/printerdrake.pm:4374
-#, fuzzy, c-format
-msgid "paranoid"
-msgstr "Paranoja"
-
-#: printer/printerdrake.pm:4376
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: printer/printerdrake.pm:4377
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessible by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: printer/printerdrake.pm:4413
-#, fuzzy, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Kiun printsistemo vi deziras uzi?"
-
-#: printer/printerdrake.pm:4414
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: printer/printerdrake.pm:4437
-#, c-format
-msgid "Checking installed software..."
-msgstr ""
-
-#: printer/printerdrake.pm:4443
-#, c-format
-msgid "Removing %s..."
-msgstr "Mi forigas %s"
-
-#: printer/printerdrake.pm:4447
-#, fuzzy, c-format
-msgid "Could not remove the %s printing system!"
-msgstr "Konfiguru retumon"
-
-#: printer/printerdrake.pm:4471
-#, fuzzy, c-format
-msgid "Installing %s..."
-msgstr "Instalanta pakaĵo %s"
-
-#: printer/printerdrake.pm:4475
-#, fuzzy, c-format
-msgid "Could not install the %s printing system!"
-msgstr "Konfiguru retumon"
-
-#: printer/printerdrake.pm:4543
-#, c-format
-msgid ""
-"In this mode there is no local printing system, all printing requests go "
-"directly to the server specified below. Note that it is not possible to "
-"define local print queues then and if the specified server is down it cannot "
-"be printed at all from this machine."
-msgstr ""
-
-#: printer/printerdrake.pm:4545
-#, c-format
-msgid ""
-"Enter the host name or IP of your CUPS server and click OK if you want to "
-"use this mode, click \"Quit\" otherwise."
-msgstr ""
-
-#: printer/printerdrake.pm:4559
-#, fuzzy, c-format
-msgid "Name or IP of remote server:"
-msgstr "Malproksimaj lpd servilo"
-
-#: printer/printerdrake.pm:4579
-#, fuzzy, c-format
-msgid "Setting Default Printer..."
-msgstr "Loka printilo"
-
-#: printer/printerdrake.pm:4599
-#, fuzzy, c-format
-msgid "Local CUPS printing system or remote CUPS server?"
-msgstr "Malproksima CUPS-a servilo"
-
-#: printer/printerdrake.pm:4600
-#, c-format
-msgid "The CUPS printing system can be used in two ways: "
-msgstr ""
-
-#: printer/printerdrake.pm:4602
-#, c-format
-msgid "1. The CUPS printing system can run locally. "
-msgstr ""
-
-#: printer/printerdrake.pm:4603
-#, c-format
-msgid ""
-"Then locally connected printers can be used and remote printers on other "
-"CUPS servers in the same network are automatically discovered. "
-msgstr ""
-
-#: printer/printerdrake.pm:4604
-#, c-format
-msgid ""
-"Disadvantage of this approach is, that more resources on the local machine "
-"are needed: Additional software packages need to be installed, the CUPS "
-"daemon has to run in the background and needs some memory, and the IPP port "
-"(port 631) is opened. "
-msgstr ""
-
-#: printer/printerdrake.pm:4606
-#, c-format
-msgid "2. All printing requests are immediately sent to a remote CUPS server. "
-msgstr ""
-
-#: printer/printerdrake.pm:4607
-#, c-format
-msgid ""
-"Here local resource occupation is reduced to a minimum. No CUPS daemon is "
-"started or port opened, no software infrastructure for setting up local "
-"print queues is installed, so less memory and disk space is used. "
-msgstr ""
-
-#: printer/printerdrake.pm:4608
-#, c-format
-msgid ""
-"Disadvantage is that it is not possible to define local printers then and if "
-"the specified server is down it cannot be printed at all from this machine. "
-msgstr ""
-
-#: printer/printerdrake.pm:4610
-#, c-format
-msgid "How should CUPS be set up on your machine?"
-msgstr ""
-
-#: printer/printerdrake.pm:4614 printer/printerdrake.pm:4629
-#: printer/printerdrake.pm:4633 printer/printerdrake.pm:4639
-#, c-format
-msgid "Remote server, specify Name or IP here:"
-msgstr ""
-
-#: printer/printerdrake.pm:4628
-#, fuzzy, c-format
-msgid "Local CUPS printing system"
-msgstr "Konfiguru retumon"
-
-#: printer/printerdrake.pm:4667
-#, fuzzy, c-format
-msgid "Select Printer Spooler"
-msgstr "Elektu Printilan Konekton"
-
-#: printer/printerdrake.pm:4668
-#, fuzzy, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Kiun printsistemo vi deziras uzi?"
-
-#: printer/printerdrake.pm:4717
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Malsukcesis konfiguri la printilon \"%s\"!"
-
-#: printer/printerdrake.pm:4732
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Instalanta Foomatic..."
-
-#: printer/printerdrake.pm:4738
-#, c-format
-msgid "Could not install %s packages, %s cannot be started!"
-msgstr ""
-
-#: printer/printerdrake.pm:4933
-#, fuzzy, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it. "
-msgstr ""
-"Jen la sekvantaj printvicoj.\n"
-"Vi povas aldoni pli aŭ ŝanĝi la ekzistantajn."
-
-#: printer/printerdrake.pm:4963
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr ""
-
-#: printer/printerdrake.pm:4964
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: printer/printerdrake.pm:4975
-#, fuzzy, c-format
-msgid "CUPS configuration"
-msgstr "LAN Konfiguraĵo"
-
-#: printer/printerdrake.pm:4996
-#, fuzzy, c-format
-msgid "Change the printing system"
-msgstr "Konfiguru retumon"
-
-#: printer/printerdrake.pm:5005
-#, c-format
-msgid "Normal Mode"
-msgstr "Normala Modalo"
-
-#: printer/printerdrake.pm:5006
-#, c-format
-msgid "Expert Mode"
-msgstr "Spertuloreĝimo"
-
-#: printer/printerdrake.pm:5284 printer/printerdrake.pm:5340
-#: printer/printerdrake.pm:5426 printer/printerdrake.pm:5435
-#, c-format
-msgid "Printer options"
-msgstr "Printilaj opcioj"
-
-#: printer/printerdrake.pm:5320
-#, fuzzy, c-format
-msgid "Modify printer configuration"
-msgstr "Interreta Konfigurado"
-
-#: printer/printerdrake.pm:5322
-#, c-format
-msgid ""
-"Printer %s%s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Presilo %s%s\n"
-"Kion vi deziras modifi pri tiu presilo?"
-
-#: printer/printerdrake.pm:5327
-#, fuzzy, c-format
-msgid "This printer is disabled"
-msgstr "Ĉi tiu subdisko ne estas regrandecigebla"
-
-#: printer/printerdrake.pm:5329
-#, c-format
-msgid "Do it!"
-msgstr ""
-
-#: printer/printerdrake.pm:5335 printer/printerdrake.pm:5400
-#, fuzzy, c-format
-msgid "Printer name, description, location"
-msgstr "Printilan Konekton"
-
-#: printer/printerdrake.pm:5337 printer/printerdrake.pm:5419
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: printer/printerdrake.pm:5338 printer/printerdrake.pm:5420
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: printer/printerdrake.pm:5342 printer/printerdrake.pm:5430
-#, c-format
-msgid "Set this printer as the default"
-msgstr ""
-
-#: printer/printerdrake.pm:5347 printer/printerdrake.pm:5436
-#: printer/printerdrake.pm:5438 printer/printerdrake.pm:5447
-#, fuzzy, c-format
-msgid "Enable Printer"
-msgstr "Datumbazoj"
-
-#: printer/printerdrake.pm:5350 printer/printerdrake.pm:5441
-#: printer/printerdrake.pm:5442 printer/printerdrake.pm:5444
-#, fuzzy, c-format
-msgid "Disable Printer"
-msgstr "Datumbazoj"
-
-#: printer/printerdrake.pm:5354 printer/printerdrake.pm:5448
-#, fuzzy, c-format
-msgid "Printer communication error handling"
-msgstr "Disdividado de Interreta Konekto"
-
-#: printer/printerdrake.pm:5355 printer/printerdrake.pm:5452
-#, fuzzy, c-format
-msgid "Print test pages"
-msgstr "Printas provpaĝo(j)n..."
-
-#: printer/printerdrake.pm:5356 printer/printerdrake.pm:5454
-#, fuzzy, c-format
-msgid "Learn how to use this printer"
-msgstr "Ĉu vi deziras provi la konfiguraĵon?"
-
-#: printer/printerdrake.pm:5357 printer/printerdrake.pm:5456
-#, fuzzy, c-format
-msgid "Remove printer"
-msgstr "Malproksima printilo"
-
-#: printer/printerdrake.pm:5408
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Foriganta la malnovan presilon \"%s\"..."
-
-#: printer/printerdrake.pm:5439
-#, fuzzy, c-format
-msgid "Printer \"%s\" is now enabled."
-msgstr "Presilo \"%s\" en servilo \"%s\""
-
-#: printer/printerdrake.pm:5445
-#, fuzzy, c-format
-msgid "Printer \"%s\" is now disabled."
-msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-
-#: printer/printerdrake.pm:5487
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Ĉu vi vere deziras forigi la presilon \"%s\"?"
-
-#: printer/printerdrake.pm:5491
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Foriganta presilon \"%s\"..."
-
-#: printer/printerdrake.pm:5515
-#, fuzzy, c-format
-msgid "Default printer"
-msgstr "Loka printilo"
-
-#: printer/printerdrake.pm:5516
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
#: raid.pm:42
#, fuzzy, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "Ne povas aldoni subdiskon al _formatita_ RAID md%d"
-#: raid.pm:148
+#: raid.pm:150
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ne estas sufiĉaj subdiskoj por RAID nivelo %d\n"
-#: scanner.pm:96
+#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr ""
-#: scanner.pm:107
+#: scanner.pm:106
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr ""
-#: scanner.pm:114
+#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr ""
-#: scanner.pm:121
+#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr ""
-#: scanner.pm:200 standalone/scannerdrake:66 standalone/scannerdrake:70
-#: standalone/scannerdrake:78 standalone/scannerdrake:321
-#: standalone/scannerdrake:370 standalone/scannerdrake:463
-#: standalone/scannerdrake:507 standalone/scannerdrake:511
-#: standalone/scannerdrake:533 standalone/scannerdrake:598
+#: scanner.pm:199
#, fuzzy, c-format
msgid "Scannerdrake"
msgstr "Elektu grafikan karton"
-#: scanner.pm:201 standalone/scannerdrake:964
+#: scanner.pm:200
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""
-#: scanner.pm:202
+#: scanner.pm:201
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr ""
@@ -13704,12 +4950,12 @@ msgstr ""
#: security/help.pm:13
#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
+msgid "Accept/Refuse broadcasted icmp echo."
msgstr ""
#: security/help.pm:15
#, c-format
-msgid " Accept/Refuse icmp echo."
+msgid "Accept/Refuse icmp echo."
msgstr ""
#: security/help.pm:17
@@ -13829,7 +5075,7 @@ msgid ""
"\"%s\" is true, also reports to syslog."
msgstr ""
-#: security/help.pm:80 standalone/draksec:215
+#: security/help.pm:80
#, fuzzy, c-format
msgid "Security Alerts:"
msgstr "Elektas sekurnivelon"
@@ -13857,7 +5103,8 @@ msgstr ""
#: security/help.pm:90
#, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"Enable su only from members of the wheel group. If set to no, allows su from "
+"any user."
msgstr ""
#: security/help.pm:92
@@ -13872,12 +5119,12 @@ msgstr ""
#: security/help.pm:96
#, c-format
-msgid " Activate/Disable daily security check."
+msgid "Activate/Disable daily security check."
msgstr ""
#: security/help.pm:98
#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
+msgid "Enable/Disable sulogin(8) in single user level."
msgstr ""
#: security/help.pm:100
@@ -14127,7 +5374,7 @@ msgstr ""
#: security/l10n.pm:32
#, c-format
-msgid "Enable su only from the wheel group members or for any user"
+msgid "Enable su only from the wheel group members"
msgstr ""
#: security/l10n.pm:33
@@ -14252,7 +5499,7 @@ msgstr ""
#: security/l10n.pm:57
#, c-format
-msgid "Do not send mails when unneeded"
+msgid "Do not send empty mail reports"
msgstr ""
#: security/l10n.pm:58
@@ -14290,6 +5537,11 @@ msgstr "Bonvenon Al Rompistoj"
msgid "Poor"
msgstr "Malbona"
+#: security/level.pm:12
+#, c-format
+msgid "Standard"
+msgstr "Laŭnorma"
+
#: security/level.pm:13
#, c-format
msgid "High"
@@ -14365,6 +5617,11 @@ msgstr ""
"malfermita. Sekurecaj aspektoj estas ĉe iliaj maksimumoj."
#: security/level.pm:55
+#, c-format
+msgid "Security"
+msgstr "Sekureco"
+
+#: security/level.pm:55
#, fuzzy, c-format
msgid "DrakSec Basic Options"
msgstr "Opcioj"
@@ -14725,52 +5982,67 @@ msgstr "Ŝargu la pelilojn por via usb-aparatoj."
msgid "Starts the X Font Server (this is mandatory for Xorg to run)."
msgstr "Startigas la X tiparan servilon (tio estas ... ."
-#: services.pm:115 services.pm:157
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Elektu kiuj servoj estu aŭtomate startigotaj dum starto"
-
-#: services.pm:127 standalone/draksambashare:111
+#: services.pm:114
#, c-format
msgid "Printing"
msgstr "Presante"
-#: services.pm:128
+#: services.pm:115
#, c-format
msgid "Internet"
msgstr "Interreto"
-#: services.pm:131
+#: services.pm:118
#, c-format
msgid "File sharing"
msgstr "Dosier-kundivido"
-#: services.pm:138
+#: services.pm:120
+#, c-format
+msgid "System"
+msgstr "Sistemo"
+
+#: services.pm:125
#, c-format
msgid "Remote Administration"
msgstr "Malproksima administrado"
-#: services.pm:146
+#: services.pm:133
#, c-format
msgid "Database Server"
msgstr "Datumbaz-servilo"
-#: services.pm:209
+#: services.pm:144 services.pm:180
+#, c-format
+msgid "Services"
+msgstr "Servoj"
+
+#: services.pm:144
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Elektu kiuj servoj estu aŭtomate startigotaj dum starto"
+
+#: services.pm:162
+#, c-format
+msgid "Services: %d activated for %d registered"
+msgstr ""
+
+#: services.pm:196
#, c-format
msgid "running"
msgstr "ruliĝante"
-#: services.pm:209
+#: services.pm:196
#, c-format
msgid "stopped"
msgstr "haltigita"
-#: services.pm:213
+#: services.pm:201
#, c-format
msgid "Services and daemons"
msgstr "Servoj kaj demonoj"
-#: services.pm:219
+#: services.pm:207
#, c-format
msgid ""
"No additional information\n"
@@ -14779,472 +6051,32 @@ msgstr ""
"Ne pli da informo\n"
"pri tiu servo, bedaŭrinde."
-#: services.pm:224 ugtk2.pm:1009
+#: services.pm:212 ugtk2.pm:898
#, c-format
msgid "Info"
msgstr "Informo"
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "Start when requested"
msgstr ""
-#: services.pm:227
+#: services.pm:215
#, c-format
msgid "On boot"
msgstr "Startante"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Start"
msgstr "Startu"
-#: services.pm:244
+#: services.pm:233
#, c-format
msgid "Stop"
msgstr "Haltu"
-#: share/advertising/01.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Packs"
-msgstr ""
-
-#: share/advertising/02.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More features"
-msgstr ""
-
-#: share/advertising/03.pl:3
-#, c-format
-msgid "Interactive firewall"
-msgstr ""
-
-#: share/advertising/04.pl:3
-#, c-format
-msgid "Desktop search"
-msgstr ""
-
-#: share/advertising/05.pl:3
-#, c-format
-msgid "New package manager"
-msgstr ""
-
-#: share/advertising/06.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More performances"
-msgstr ""
-
-#: share/advertising/07.pl:3
-#, c-format
-msgid "Latest kernel and GCC"
-msgstr ""
-
-#: share/advertising/08.pl:3
-#, c-format
-msgid "High Availibility"
-msgstr ""
-
-#: share/advertising/09.pl:3
-#, c-format
-msgid "Delta RPM"
-msgstr ""
-
-#: share/advertising/10.pl:3
-#, c-format
-msgid "Low resources setup"
-msgstr ""
-
-#: share/advertising/11.pl:3
-#, c-format
-msgid "Boot time reduction"
-msgstr ""
-
-#: share/advertising/12.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Easier to use"
-msgstr ""
-
-#: share/advertising/13.pl:3
-#, c-format
-msgid "Latest graphical interfaces: KDE and GNOME"
-msgstr ""
-
-#: share/advertising/14.pl:3
-#, c-format
-msgid "auto-installation servers"
-msgstr ""
-
-#: share/advertising/15.pl:3
-#, c-format
-msgid "Easy and quick installation"
-msgstr ""
-
-#: share/advertising/16.pl:3
-#, c-format
-msgid "Easy configuration thanks to 60 wizards"
-msgstr ""
-
-#: share/advertising/17.pl:3
-#, c-format
-msgid "Look and feel improved"
-msgstr ""
-
-#: share/advertising/18.pl:3
-#, c-format
-msgid "New webmin theme"
-msgstr ""
-
-#: share/advertising/19.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More support"
-msgstr ""
-
-#: share/advertising/20.pl:3
-#, c-format
-msgid "Better Hardware support"
-msgstr ""
-
-#: share/advertising/21.pl:3
-#, c-format
-msgid "Xen support"
-msgstr ""
-
-#: share/advertising/22.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: More information"
-msgstr ""
-
-#: share/advertising/23.pl:3
-#, c-format
-msgid "Mandriva Linux 2006: Where to buy?"
-msgstr ""
-
-#: share/advertising/24.pl:3
-#, c-format
-msgid "Where to find technical assistance?"
-msgstr ""
-
-#: share/advertising/25.pl:3
-#, c-format
-msgid "How to join the Mandriva Linux community?"
-msgstr ""
-
-#: share/advertising/26.pl:3
-#, c-format
-msgid "How to keep your system up-to-date?"
-msgstr ""
-
-#: share/advertising/intel.pl:3
-#, c-format
-msgid "Intel Software"
-msgstr ""
-
-#: share/advertising/skype.pl:3
-#, c-format
-msgid "Skype lets you make calls through the Internet for free."
-msgstr ""
-
-#: share/compssUsers.pl:26
-#, c-format
-msgid "Office Workstation"
-msgstr "Oficeja laborstacio"
-
-#: share/compssUsers.pl:28
-#, c-format
-msgid ""
-"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
-"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
-msgstr ""
-
-#: share/compssUsers.pl:29
-#, c-format
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-
-#: share/compssUsers.pl:34
-#, c-format
-msgid "Game station"
-msgstr "Ludstacio"
-
-#: share/compssUsers.pl:35
-#, c-format
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr ""
-
-#: share/compssUsers.pl:38
-#, c-format
-msgid "Multimedia station"
-msgstr "Plurmediaj stacio"
-
-#: share/compssUsers.pl:39
-#, c-format
-msgid "Sound and video playing/editing programs"
-msgstr ""
-
-#: share/compssUsers.pl:44
-#, c-format
-msgid "Internet station"
-msgstr "Interreta stacio"
-
-#: share/compssUsers.pl:45
-#, c-format
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-
-#: share/compssUsers.pl:50
-#, c-format
-msgid "Network Computer (client)"
-msgstr "Reta computilo (kliento)"
-
-#: share/compssUsers.pl:51
-#, c-format
-msgid "Clients for different protocols including ssh"
-msgstr ""
-
-#: share/compssUsers.pl:55
-#, c-format
-msgid "Configuration"
-msgstr "Konfigurado"
-
-#: share/compssUsers.pl:56
-#, fuzzy, c-format
-msgid "Tools to ease the configuration of your computer"
-msgstr "Ĉu vi deziras provi la konfiguraĵon?"
-
-#: share/compssUsers.pl:60
-#, c-format
-msgid "Console Tools"
-msgstr "Konsoliloj"
-
-#: share/compssUsers.pl:61
-#, c-format
-msgid "Editors, shells, file tools, terminals"
-msgstr "Redaktiloj, ŝeloj, dosieriloj, terminaloj"
-
-#: share/compssUsers.pl:66 share/compssUsers.pl:170
-#, c-format
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C kaj C++ programadaj bibliotekoj, programoj kaj ĉapdosieroj"
-
-#: share/compssUsers.pl:70 share/compssUsers.pl:174
-#, c-format
-msgid "Documentation"
-msgstr "Dokumentaro"
-
-#: share/compssUsers.pl:71 share/compssUsers.pl:175
-#, c-format
-msgid "Books and Howto's on Linux and Free Software"
-msgstr ""
-
-#: share/compssUsers.pl:75 share/compssUsers.pl:178
-#, c-format
-msgid "LSB"
-msgstr "LSB"
-
-#: share/compssUsers.pl:76 share/compssUsers.pl:179
-#, c-format
-msgid "Linux Standard Base. Third party applications support"
-msgstr ""
-
-#: share/compssUsers.pl:86
-#, c-format
-msgid "Apache"
-msgstr "Apache"
-
-#: share/compssUsers.pl:89
-#, c-format
-msgid "Groupware"
-msgstr "Grupa programaro"
-
-#: share/compssUsers.pl:90
-#, c-format
-msgid "Kolab Server"
-msgstr "Kolab Servilo"
-
-#: share/compssUsers.pl:93 share/compssUsers.pl:134
-#, c-format
-msgid "Firewall/Router"
-msgstr ""
-
-#: share/compssUsers.pl:94 share/compssUsers.pl:135
-#, c-format
-msgid "Internet gateway"
-msgstr "Interreta kluzo"
-
-#: share/compssUsers.pl:97
-#, c-format
-msgid "Mail/News"
-msgstr "Poŝto/Novaĵoj"
-
-#: share/compssUsers.pl:98
-#, c-format
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix poŝta servilo, Inn novaĵaj servilo"
-
-#: share/compssUsers.pl:101
-#, fuzzy, c-format
-msgid "Directory Server"
-msgstr "Restaŭru de disketo"
-
-#: share/compssUsers.pl:105
-#, c-format
-msgid "FTP Server"
-msgstr "FTP Servilo"
-
-#: share/compssUsers.pl:106
-#, c-format
-msgid "ProFTPd"
-msgstr "ProFTPd"
-
-#: share/compssUsers.pl:109
-#, c-format
-msgid "DNS/NIS"
-msgstr "DNS/NIS"
-
-#: share/compssUsers.pl:110
-#, fuzzy, c-format
-msgid "Domain Name and Network Information Server"
-msgstr "Domajn-nom-servilo"
-
-#: share/compssUsers.pl:113
-#, c-format
-msgid "File and Printer Sharing Server"
-msgstr "Dosier- kaj printil-kundivida servilo"
-
-#: share/compssUsers.pl:114
-#, c-format
-msgid "NFS Server, Samba server"
-msgstr "NFS servilo, Samba servilo"
-
-#: share/compssUsers.pl:117 share/compssUsers.pl:130
-#, c-format
-msgid "Database"
-msgstr "Datumbazoj"
-
-#: share/compssUsers.pl:118
-#, c-format
-msgid "PostgreSQL and MySQL Database Server"
-msgstr ""
-
-#: share/compssUsers.pl:122
-#, c-format
-msgid "Web/FTP"
-msgstr "TTT/FTP"
-
-#: share/compssUsers.pl:123
-#, c-format
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: share/compssUsers.pl:126
-#, c-format
-msgid "Mail"
-msgstr "Poŝto"
-
-#: share/compssUsers.pl:127
-#, c-format
-msgid "Postfix mail server"
-msgstr "Postfix poŝta servilo"
-
-#: share/compssUsers.pl:131
-#, c-format
-msgid "PostgreSQL or MySQL database server"
-msgstr ""
-
-#: share/compssUsers.pl:138
-#, c-format
-msgid "Network Computer server"
-msgstr "Reta computilo (servilo)"
-
-#: share/compssUsers.pl:139
-#, c-format
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr ""
-
-#: share/compssUsers.pl:147
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE Laborstacio"
-
-#: share/compssUsers.pl:148
-#, c-format
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-
-#: share/compssUsers.pl:152
-#, c-format
-msgid "GNOME Workstation"
-msgstr "Gnoma Laborstacio"
-
-#: share/compssUsers.pl:153
-#, c-format
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-
-#: share/compssUsers.pl:156
-#, fuzzy, c-format
-msgid "IceWm Desktop"
-msgstr "Labortabulo"
-
-#: share/compssUsers.pl:160
-#, c-format
-msgid "Other Graphical Desktops"
-msgstr ""
-
-#: share/compssUsers.pl:161
-#, c-format
-msgid "Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
-
-#: share/compssUsers.pl:184
-#, c-format
-msgid "Utilities"
-msgstr "Iloj"
-
-#: share/compssUsers.pl:186 share/compssUsers.pl:187 standalone/logdrake:384
-#, c-format
-msgid "SSH Server"
-msgstr "SSH servilo"
-
-#: share/compssUsers.pl:191
-#, fuzzy, c-format
-msgid "Webmin"
-msgstr "Webcam"
-
-#: share/compssUsers.pl:192
-#, fuzzy, c-format
-msgid "Webmin Remote Configuration Server"
-msgstr "Interreta Konfigurado"
-
-#: share/compssUsers.pl:196
-#, fuzzy, c-format
-msgid "Network Utilities/Monitoring"
-msgstr "Reta Konfiguraĵo"
-
-#: share/compssUsers.pl:197
-#, c-format
-msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
-msgstr ""
-
-#: share/compssUsers.pl:201
-#, fuzzy, c-format
-msgid "Mandriva Wizards"
-msgstr "Konekti al la interreto"
-
-#: share/compssUsers.pl:202
-#, fuzzy, c-format
-msgid "Wizards to configure server"
-msgstr "Malsukcesis konfiguri la printilon \"%s\"!"
-
-#: standalone.pm:23
+#: standalone.pm:24
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
@@ -15259,7 +6091,8 @@ msgid ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
msgstr ""
"Tiu ĉi programo estas libera softvaro; vi povas redisdoni ĝin kaj/aŭ modifi\n"
"ĝin sub la termoj de la GNU-Ĝeneralpublika Licenco kiel publikigita de\n"
@@ -15273,9 +6106,10 @@ msgstr ""
"\n"
"Vi devus esti ricevinta kopion de la GNU Ĝeneralpublika Licenco\n"
"kun tiu ĉi programo; se ne, skribu al la Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
-#: standalone.pm:42
+#: standalone.pm:43
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
@@ -15302,7 +6136,7 @@ msgstr ""
"--help : montru tiun ĉi mesaĝon.\n"
"--version : montru la versi-numeron.\n"
-#: standalone.pm:54
+#: standalone.pm:55
#, c-format
msgid ""
"[--boot] [--splash]\n"
@@ -15312,7 +6146,7 @@ msgid ""
"default mode: offer to configure autologin feature"
msgstr ""
-#: standalone.pm:59
+#: standalone.pm:60
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
@@ -15329,7 +6163,7 @@ msgstr ""
" --report - programo estu iu de Mandriva Linux iloj\n"
" --incident - programo estu iu de Mandriva Linux iloj"
-#: standalone.pm:65
+#: standalone.pm:66
#, c-format
msgid ""
"[--add]\n"
@@ -15340,7 +6174,7 @@ msgid ""
" --wizard - like --add"
msgstr ""
-#: standalone.pm:71
+#: standalone.pm:72
#, fuzzy, c-format
msgid ""
"\n"
@@ -15370,7 +6204,7 @@ msgstr ""
" : name_of_application aŭ iel tiel por staroffice \n"
" : kaj gs por ghostscript nur por tiu ĉi."
-#: standalone.pm:86
+#: standalone.pm:87
#, fuzzy, c-format
msgid ""
"[OPTIONS]...\n"
@@ -15402,17 +6236,17 @@ msgstr ""
"--delclient : forigu kliento-maŝinon de MTS (postulas MAC-adreson, IP, "
"nbi image nomon)"
-#: standalone.pm:98
+#: standalone.pm:99
#, c-format
msgid "[keyboard]"
msgstr "[klavaro]"
-#: standalone.pm:99
+#: standalone.pm:100
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-#: standalone.pm:100
+#: standalone.pm:101
#, c-format
msgid ""
"[OPTIONS]\n"
@@ -15435,12 +6269,7 @@ msgstr ""
"--status : montras 1 se konektite, alie 0, poste eliras.\n"
"--quiet : ne estu interaktiva. Uzata kun (dis)connect."
-#: standalone.pm:109
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: standalone.pm:110
+#: standalone.pm:111
#, c-format
msgid ""
"[OPTION]...\n"
@@ -15460,14 +6289,14 @@ msgstr ""
" --merge-all-rpmnew proponu mergi ĉiujn trovitajn .rpmnew/.rpmsave -"
"dosierojn"
-#: standalone.pm:115
+#: standalone.pm:116
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
msgstr ""
-#: standalone.pm:116
+#: standalone.pm:117
#, c-format
msgid ""
" [everything]\n"
@@ -15478,7 +6307,7 @@ msgstr ""
" XFdrake [--noauto] monitor\n"
" XFdrake resolution"
-#: standalone.pm:149
+#: standalone.pm:150
#, c-format
msgid ""
"\n"
@@ -15489,8720 +6318,102 @@ msgstr ""
"Uzado: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
-#: standalone/XFdrake:59
-#, fuzzy, c-format
-msgid "You need to reboot for changes to take effect"
-msgstr "Vi bezonos restarti antaŭ ol la ŝanĝo povas efektiviĝi"
-
-#: standalone/XFdrake:90
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr ""
-"Bonvole adiaŭu kaj sekve uzu Kontrol-Alt-Retropaŝo (Ctrl-Alt-Backspace)."
-
-#: standalone/XFdrake:94
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr ""
-
-#: standalone/drakTermServ:112 standalone/drakTermServ:118
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr ""
-
-#: standalone/drakTermServ:129
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-
-#: standalone/drakTermServ:135
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr ""
-
-#: standalone/drakTermServ:144
-#, c-format
-msgid "Host name for client"
-msgstr ""
-
-#: standalone/drakTermServ:145
-#, c-format
-msgid "MAC address should be in the format 00:11:22:33:44:55"
-msgstr ""
-
-#: standalone/drakTermServ:146
-#, c-format
-msgid "IP address to be assigned to client"
-msgstr ""
-
-#: standalone/drakTermServ:147
-#, c-format
-msgid "Kernel/network adapter image to use to boot client"
-msgstr ""
-
-#: standalone/drakTermServ:148
-#, c-format
-msgid "Create masking files to allow configuration tools to run on client"
-msgstr ""
-
-#: standalone/drakTermServ:149
-#, c-format
-msgid "Applications will run on server machine"
-msgstr ""
-
-#: standalone/drakTermServ:234 standalone/drakTermServ:237
-#, fuzzy, c-format
-msgid "Terminal Server Configuration"
-msgstr "Interreta Konfigurado"
-
-#: standalone/drakTermServ:243
+#: timezone.pm:148 timezone.pm:149
#, fuzzy, c-format
-msgid "dhcpd Config"
-msgstr "Mi konfiguras..."
-
-#: standalone/drakTermServ:247
-#, fuzzy, c-format
-msgid "Enable Server"
-msgstr "Datumbazoj"
-
-#: standalone/drakTermServ:253
-#, fuzzy, c-format
-msgid "Disable Server"
-msgstr "Datumbazoj"
-
-#: standalone/drakTermServ:259
-#, c-format
-msgid "Start Server"
-msgstr "Lanĉu servon"
-
-#: standalone/drakTermServ:265
-#, fuzzy, c-format
-msgid "Stop Server"
-msgstr "NIS Servilo"
-
-#: standalone/drakTermServ:274
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr ""
-
-#: standalone/drakTermServ:278
-#, c-format
-msgid "Net Boot Images"
-msgstr ""
-
-#: standalone/drakTermServ:285
-#, fuzzy, c-format
-msgid "Add/Del Users"
+msgid "All servers"
msgstr "Aldonu uzanto"
-#: standalone/drakTermServ:289
-#, c-format
-msgid "Add/Del Clients"
-msgstr ""
-
-#: standalone/drakTermServ:297
-#, c-format
-msgid "Images"
-msgstr "Bildoj"
-
-#: standalone/drakTermServ:298
-#, c-format
-msgid "Clients/Users"
-msgstr ""
-
-#: standalone/drakTermServ:316 standalone/drakbug:47
-#, c-format
-msgid "First Time Wizard"
-msgstr "Unuafoja Sorĉilo"
-
-#: standalone/drakTermServ:354 standalone/drakTermServ:355
-#, c-format
-msgid "%s defined as dm, adding gdm user to /etc/passwd$$CLIENT$$"
-msgstr ""
-
-#: standalone/drakTermServ:361
-#, c-format
-msgid ""
-"\n"
-" This wizard routine will:\n"
-" \t1) Ask you to select either 'thin' or 'fat' clients.\n"
-"\t2) Setup DHCP.\n"
-"\t\n"
-"After doing these steps, the wizard will:\n"
-"\t\n"
-" a) Make all "
-"nbis. \n"
-" b) Activate the "
-"server. \n"
-" c) Start the "
-"server. \n"
-" d) Synchronize the shadow files so that all users, including root, \n"
-" are added to the shadow$$CLIENT$$ "
-"file. \n"
-" e) Ask you to make a boot floppy.\n"
-" f) If it's thin clients, ask if you want to restart KDM.\n"
-msgstr ""
-
-#: standalone/drakTermServ:407
-#, fuzzy, c-format
-msgid "Cancel Wizard"
-msgstr "Lanĉu userdrake"
-
-#: standalone/drakTermServ:422
-#, c-format
-msgid "Please save dhcpd config!"
-msgstr ""
-
-#: standalone/drakTermServ:450
-#, c-format
-msgid "Use thin clients."
-msgstr ""
-
-#: standalone/drakTermServ:452
-#, c-format
-msgid "Sync client X keyboard settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:454
-#, c-format
-msgid ""
-"Please select default client type (Fat is the default type if 'Use thin' is "
-"unchecked).\n"
-" 'Thin' clients run everything off the server's CPU/RAM, using the client "
-"display.\n"
-" 'Fat' clients use their own CPU/RAM but the server's filesystem."
-msgstr ""
-
-#: standalone/drakTermServ:474
-#, c-format
-msgid "Creating net boot images for all kernels"
-msgstr ""
-
-#: standalone/drakTermServ:475 standalone/drakTermServ:807
-#: standalone/drakTermServ:823
-#, c-format
-msgid "This will take a few minutes."
-msgstr ""
-
-#: standalone/drakTermServ:481 standalone/drakTermServ:521
-#, c-format
-msgid "Done!"
-msgstr "Finu !"
-
-#: standalone/drakTermServ:492 standalone/drakTermServ:894
-#, c-format
-msgid "%s failed"
-msgstr ""
-
-#: standalone/drakTermServ:501
-#, c-format
-msgid ""
-"Not enough space to create\n"
-"NBIs in %s.\n"
-"Needed: %d MB, Free: %d MB"
-msgstr ""
-
-#: standalone/drakTermServ:507
-#, c-format
-msgid "Syncing server user list with client list, including root."
-msgstr ""
-
-#: standalone/drakTermServ:527
-#, c-format
-msgid ""
-"In order to enable changes made for thin clients, the display manager must "
-"be restarted. Restart now?"
-msgstr ""
-
-#: standalone/drakTermServ:564
-#, fuzzy, c-format
-msgid "Terminal Server Overview"
-msgstr "Interreta Konfigurado"
-
-#: standalone/drakTermServ:565
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and %s is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-
-#: standalone/drakTermServ:571
-#, c-format
-msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. %s helps create/"
-"remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
-msgstr ""
-
-#: standalone/drakTermServ:589
-#, c-format
-msgid ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that %s provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by %s. Clients can either be "
-"'thin'\n"
-" or 'fat'. Thin clients run most software on the server via XDMCP, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, \n"
-" %s is written for thin clients. \n"
-" System config files xdm-config, kdmrc, and gdm.conf are modified if "
-"thin clients are \n"
-" used, to enable XDMCP. Since there are security issues in using "
-"XDMCP, hosts.deny and \n"
-" hosts.allow are modified to limit access to the local subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by %s. Clients can "
-"either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-msgstr ""
-
-#: standalone/drakTermServ:609
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t%s allows export of the root filesystem to diskless clients. %s\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for %s is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
-msgstr ""
-
-#: standalone/drakTermServ:621
-#, c-format
-msgid ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. \n"
-" \t%s helps in this respect by adding or removing system users from "
-"this \n"
-" \tfile."
-msgstr ""
-
-#: standalone/drakTermServ:626
-#, c-format
-msgid ""
-" - Per client %s:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t%s will help create these files."
-msgstr ""
-
-#: standalone/drakTermServ:631
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \tThrough %s, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-msgstr ""
-
-#: standalone/drakTermServ:640
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t%s will configure this file to work in conjunction with the images "
-"created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical TFTP configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
-msgstr ""
-
-#: standalone/drakTermServ:661
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to initiate the boot sequence. %s will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \tcat /usr/share/etherboot/zdsk/3c509.zdsk > /dev/fd0"
-msgstr ""
-
-#: standalone/drakTermServ:694
-#, c-format
-msgid "Boot Floppy"
-msgstr ""
-
-#: standalone/drakTermServ:696
-#, c-format
-msgid "Boot ISO"
-msgstr ""
-
-#: standalone/drakTermServ:698
-#, fuzzy, c-format
-msgid "PXE Image"
-msgstr "Kerna bildo"
-
-#: standalone/drakTermServ:759
-#, fuzzy, c-format
-msgid "Default kernel version"
-msgstr "Kerna versio"
-
-#: standalone/drakTermServ:764
-#, c-format
-msgid "Create PXE images"
-msgstr ""
-
-#: standalone/drakTermServ:765
-#, c-format
-msgid "Use Unionfs (TS2)"
-msgstr ""
-
-#: standalone/drakTermServ:795
-#, c-format
-msgid "Install i586 kernel for older clients"
-msgstr ""
-
-#: standalone/drakTermServ:805
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr ""
-
-#: standalone/drakTermServ:812
-#, c-format
-msgid "No kernel selected!"
-msgstr ""
-
-#: standalone/drakTermServ:815
-#, c-format
-msgid "Build Single NIC -->"
-msgstr ""
-
-#: standalone/drakTermServ:819 standalone/drakTermServ:1643
-#, fuzzy, c-format
-msgid "No NIC selected!"
-msgstr "Ne konektita"
-
-#: standalone/drakTermServ:822
-#, c-format
-msgid "Build All Kernels -->"
-msgstr ""
-
-#: standalone/drakTermServ:835
-#, c-format
-msgid ""
-"Custom\n"
-"kernel args"
-msgstr ""
-
-#: standalone/drakTermServ:840
-#, fuzzy, c-format
-msgid "<-- Delete"
-msgstr "Forigu"
-
-#: standalone/drakTermServ:845
-#, fuzzy, c-format
-msgid "No image selected!"
-msgstr "Ne konektita"
-
-#: standalone/drakTermServ:848
-#, fuzzy, c-format
-msgid "Delete All NBIs"
-msgstr "Elektu dosieron"
-
-#: standalone/drakTermServ:925
-#, c-format
-msgid "Building images for kernel:"
-msgstr ""
-
-#: standalone/drakTermServ:1050
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-
-#: standalone/drakTermServ:1055
-#, fuzzy, c-format
-msgid "Add User -->"
-msgstr "Aldonu uzanto"
-
-#: standalone/drakTermServ:1061
-#, c-format
-msgid "<-- Del User"
-msgstr ""
-
-#: standalone/drakTermServ:1097
-#, fuzzy, c-format
-msgid "type: %s"
-msgstr "Speco: "
-
-#: standalone/drakTermServ:1101
-#, c-format
-msgid "local config: %s"
-msgstr ""
-
-#: standalone/drakTermServ:1136
-#, fuzzy, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr "Post-instala konfigurado"
-
-#: standalone/drakTermServ:1146
-#, c-format
-msgid "No net boot images created!"
-msgstr ""
-
-#: standalone/drakTermServ:1165
-#, c-format
-msgid "Thin Client"
-msgstr ""
-
-#: standalone/drakTermServ:1169
-#, c-format
-msgid "Allow Thin Clients"
-msgstr ""
-
-#: standalone/drakTermServ:1170
-#, c-format
-msgid ""
-"Sync client X keyboard\n"
-" settings with server."
-msgstr ""
-
-#: standalone/drakTermServ:1171
-#, c-format
-msgid "Add Client -->"
-msgstr ""
-
-#: standalone/drakTermServ:1181
-#, c-format
-msgid "Unknown MAC address format"
-msgstr ""
-
-#: standalone/drakTermServ:1195
-#, fuzzy, c-format
-msgid "type: fat"
-msgstr "Speco: "
-
-#: standalone/drakTermServ:1196
-#, fuzzy, c-format
-msgid "type: thin"
-msgstr "Speco: "
-
-#: standalone/drakTermServ:1203
-#, fuzzy, c-format
-msgid "local config: false"
-msgstr "Lokaj dosieroj"
-
-#: standalone/drakTermServ:1204
-#, fuzzy, c-format
-msgid "local config: true"
-msgstr "ne konfigurita"
-
-#: standalone/drakTermServ:1212
-#, c-format
-msgid "<-- Edit Client"
-msgstr ""
-
-#: standalone/drakTermServ:1237
-#, c-format
-msgid "Disable Local Config"
-msgstr ""
-
-#: standalone/drakTermServ:1244
-#, fuzzy, c-format
-msgid "Delete Client"
-msgstr "Forigu"
-
-#: standalone/drakTermServ:1267
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-
-#: standalone/drakTermServ:1313
-#, c-format
-msgid "Thin clients will not work with autologin. Disable autologin?"
-msgstr ""
-
-#: standalone/drakTermServ:1328
-#, c-format
-msgid "All clients will use %s"
-msgstr ""
-
-#: standalone/drakTermServ:1362
-#, c-format
-msgid "Subnet:"
-msgstr ""
-
-#: standalone/drakTermServ:1369
-#, c-format
-msgid "Netmask:"
-msgstr "Retmasko:"
-
-#: standalone/drakTermServ:1376
-#, c-format
-msgid "Routers:"
-msgstr ""
-
-#: standalone/drakTermServ:1383
-#, c-format
-msgid "Subnet Mask:"
-msgstr ""
-
-#: standalone/drakTermServ:1390
-#, c-format
-msgid "Broadcast Address:"
-msgstr ""
-
-#: standalone/drakTermServ:1397
-#, fuzzy, c-format
-msgid "Domain Name:"
-msgstr "Domajna nomo"
-
-#: standalone/drakTermServ:1405
-#, fuzzy, c-format
-msgid "Name Servers:"
-msgstr "NIS Servilo"
-
-#: standalone/drakTermServ:1416
-#, c-format
-msgid "IP Range Start:"
-msgstr ""
-
-#: standalone/drakTermServ:1417
-#, c-format
-msgid "IP Range End:"
-msgstr ""
-
-#: standalone/drakTermServ:1459
-#, c-format
-msgid "Append TS Includes To Existing Config"
-msgstr ""
-
-#: standalone/drakTermServ:1461
-#, fuzzy, c-format
-msgid "Write Config"
-msgstr "rekonfiguru"
-
-#: standalone/drakTermServ:1477
-#, fuzzy, c-format
-msgid "dhcpd Server Configuration"
-msgstr "LAN Konfiguraĵo"
-
-#: standalone/drakTermServ:1478
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-
-#: standalone/drakTermServ:1481
-#, c-format
-msgid ""
-"Dynamic IP Address Pool\n"
-"(needed for PXE clients):"
-msgstr ""
-
-#: standalone/drakTermServ:1634
-#, c-format
-msgid "Write to %s failed!"
-msgstr ""
-
-#: standalone/drakTermServ:1647
-#, fuzzy, c-format
-msgid "Please insert floppy disk:"
-msgstr "Enŝovu disketon en drajvo %s"
-
-#: standalone/drakTermServ:1651
-#, c-format
-msgid "Could not access the floppy!"
-msgstr ""
-
-#: standalone/drakTermServ:1653
-#, c-format
-msgid "Floppy can be removed now"
-msgstr ""
-
-#: standalone/drakTermServ:1656
-#, fuzzy, c-format
-msgid "No floppy drive available!"
-msgstr "Neniu disketilo havebla"
-
-#: standalone/drakTermServ:1662
-#, c-format
-msgid "PXE image is %s/%s"
-msgstr ""
-
-#: standalone/drakTermServ:1664
-#, fuzzy, c-format
-msgid "Error writing %s/%s"
-msgstr "Eraro skribante al dosiero %s"
-
-#: standalone/drakTermServ:1676
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr ""
-
-#: standalone/drakTermServ:1680
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr ""
-
-#: standalone/drakTermServ:1700
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr ""
-
-#: standalone/drakTermServ:1867
-#, c-format
-msgid "%s passwd bad in Terminal Server - rewriting...\n"
-msgstr ""
-
-#: standalone/drakTermServ:1880
-#, fuzzy, c-format
-msgid "%s is not a user..\n"
-msgstr "neniu retkarto trovita"
-
-#: standalone/drakTermServ:1881
-#, c-format
-msgid "%s is already a Terminal Server user\n"
-msgstr ""
-
-#: standalone/drakTermServ:1883
-#, c-format
-msgid "Addition of %s to Terminal Server failed!\n"
-msgstr ""
-
-#: standalone/drakTermServ:1885
-#, c-format
-msgid "%s added to Terminal Server\n"
-msgstr ""
-
-#: standalone/drakTermServ:1903
-#, fuzzy, c-format
-msgid "Deleted %s...\n"
-msgstr "Duobla surmetingo %s"
-
-#: standalone/drakTermServ:1905 standalone/drakTermServ:1978
-#, fuzzy, c-format
-msgid "%s not found...\n"
-msgstr "neniu retkarto trovita"
-
-#: standalone/drakTermServ:2006
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
-
-#: standalone/drakTermServ:2158
-#, c-format
-msgid "Configuration changed - restart %s/dhcpd?"
-msgstr ""
-
-#: standalone/drakautoinst:38 standalone/drakhosts:123
-#: standalone/drakhosts:129 standalone/draknfs:84 standalone/draknfs:105
-#: standalone/draknfs:444 standalone/draknfs:447 standalone/draknfs:539
-#: standalone/draknfs:546 standalone/draksambashare:187
-#: standalone/draksambashare:208 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Error!"
-msgstr "Eraro!"
-
-#: standalone/drakautoinst:39
-#, c-format
-msgid "I can not find needed image file `%s'."
-msgstr ""
-
-#: standalone/drakautoinst:41
-#, fuzzy, c-format
-msgid "Auto Install Configurator"
-msgstr "Post-instala konfigurado"
-
-#: standalone/drakautoinst:42
-#, c-format
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Press ok to continue."
-msgstr ""
-
-#: standalone/drakautoinst:60
-#, fuzzy, c-format
-msgid "replay"
-msgstr "Reludu"
-
-#: standalone/drakautoinst:60 standalone/drakautoinst:69
-#, c-format
-msgid "manual"
-msgstr ""
-
-#: standalone/drakautoinst:64
-#, fuzzy, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Post-instala konfigurado"
-
-#: standalone/drakautoinst:65
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: standalone/drakautoinst:77 standalone/drakautoinst:78
-#: standalone/drakautoinst:92
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Kreas aŭtoinstalan disketon"
-
-#: standalone/drakautoinst:90
-#, fuzzy, c-format
-msgid "Insert another blank floppy in drive %s (for drivers disk)"
-msgstr "Enŝovu malplenan disketon en drajvo %s"
-
-#: standalone/drakautoinst:91
-#, fuzzy, c-format
-msgid "Creating auto install floppy (drivers disk)"
-msgstr "Kreas aŭtoinstalan disketon"
-
-#: standalone/drakautoinst:156
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: standalone/drakautoinst:251
-#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: standalone/drakautoinst:287
-#, c-format
-msgid "Auto Install"
-msgstr "Meminstalo"
-
-#: standalone/drakautoinst:356
-#, fuzzy, c-format
-msgid "Add an item"
-msgstr "Aldonu uzulon"
-
-#: standalone/drakautoinst:363
-#, fuzzy, c-format
-msgid "Remove the last item"
-msgstr "Formatas retrokonektan dosieron %s"
-
-#: standalone/drakbackup:157
-#, c-format
-msgid ""
-"Expect is an extension to the TCL scripting language that allows interactive "
-"sessions without user intervention."
-msgstr ""
-
-#: standalone/drakbackup:158
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr ""
-
-#: standalone/drakbackup:159
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
-
-#: standalone/drakbackup:160
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-
-#: standalone/drakbackup:161
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-
-#: standalone/drakbackup:162
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-
-#: standalone/drakbackup:163
-#, c-format
-msgid ""
-"Star should be selected if you want to backup EA or ACLs, otherwise choose "
-"tar"
-msgstr ""
-
-#: standalone/drakbackup:164
-#, c-format
-msgid ""
-"This should be a local user or email address that you want the backup "
-"results sent to. You will need to define a functioning mail server. Multiple "
-"users can be in a comma seperated list"
-msgstr ""
-
-#: standalone/drakbackup:165
-#, c-format
-msgid ""
-"This should be the return address that you want the backup results sent "
-"from. Default is drakbackup."
-msgstr ""
-
-#: standalone/drakbackup:166
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-
-#: standalone/drakbackup:167
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-
-#: standalone/drakbackup:168
-#, c-format
-msgid ""
-"Selecting this option allows you to view the raw output from the restore "
-"process, after a file restore."
-msgstr ""
-
-#: standalone/drakbackup:169
-#, c-format
-msgid ""
-"Some protocols, like rsync, may be configured at the server end. Rather "
-"than using a directory path, you would use the 'module' name for the service "
-"path."
-msgstr ""
-
-#: standalone/drakbackup:170
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-
-#: standalone/drakbackup:344
-#, c-format
-msgid "No media selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:348
-#, c-format
-msgid "No interval selected for cron operation."
-msgstr ""
-
-#: standalone/drakbackup:393
-#, c-format
-msgid "Interval cron not available as non-root"
-msgstr ""
-
-#: standalone/drakbackup:477 standalone/logdrake:439
-#, c-format
-msgid "\"%s\" neither is a valid email nor is an existing local user!"
-msgstr ""
-
-#: standalone/drakbackup:481 standalone/logdrake:444
-#, 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 ""
-
-#: standalone/drakbackup:491
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr ""
-
-#: standalone/drakbackup:493
-#, c-format
-msgid "Old user list:\n"
-msgstr ""
-
-#: standalone/drakbackup:495
-#, c-format
-msgid "New user list:\n"
-msgstr ""
-
-#: standalone/drakbackup:524
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
-msgstr ""
-
-#: standalone/drakbackup:525
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-msgstr ""
-
-#: standalone/drakbackup:531
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:556 standalone/drakbackup:627
-#: standalone/drakbackup:683
-#, c-format
-msgid "Total progress"
-msgstr "Totala progreso:"
-
-#: standalone/drakbackup:609
-#, c-format
-msgid ""
-"%s exists, delete?\n"
-"\n"
-"If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-
-#: standalone/drakbackup:618
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr ""
-
-#: standalone/drakbackup:625
-#, fuzzy, c-format
-msgid "Cannot spawn %s."
-msgstr "Ne povis malfermi %s por skribi: %s\n"
-
-#: standalone/drakbackup:642
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr ""
-
-#: standalone/drakbackup:643
-#, fuzzy, c-format
-msgid "Bad password on %s"
-msgstr "Neniu pasvorto"
-
-#: standalone/drakbackup:644
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr ""
-
-#: standalone/drakbackup:645
-#, fuzzy, c-format
-msgid "Can not find %s on %s"
-msgstr "Ne povis malfermi %s por skribi: %s\n"
-
-#: standalone/drakbackup:649
-#, c-format
-msgid "%s not responding"
-msgstr ""
-
-#: standalone/drakbackup:653
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-
-#: standalone/drakbackup:703
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr ""
-
-#: standalone/drakbackup:707
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr ""
-
-#: standalone/drakbackup:712
-#, c-format
-msgid "Not erasable media!"
-msgstr ""
-
-#: standalone/drakbackup:754
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr ""
-
-#: standalone/drakbackup:812
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr ""
-
-#: standalone/drakbackup:840
-#, c-format
-msgid "No tape in %s!"
-msgstr ""
-
-#: standalone/drakbackup:953
-#, c-format
-msgid ""
-"Backup destination quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-
-#: standalone/drakbackup:973 standalone/drakbackup:1005
-#, c-format
-msgid "Backup system files..."
-msgstr ""
-
-#: standalone/drakbackup:1006 standalone/drakbackup:1045
-#, fuzzy, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Malbona rezerva dosiero"
-
-#: standalone/drakbackup:1044
-#, fuzzy, c-format
-msgid "Backup User files..."
-msgstr "Malbona rezerva dosiero"
-
-#: standalone/drakbackup:1078
-#, fuzzy, c-format
-msgid "Backup Other files..."
-msgstr "Malbona rezerva dosiero"
-
-#: standalone/drakbackup:1079
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: standalone/drakbackup:1084
-#, fuzzy, c-format
-msgid "No changes to backup!"
-msgstr "Malbona rezerva dosiero"
-
-#: standalone/drakbackup:1100 standalone/drakbackup:1122
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:1109
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: standalone/drakbackup:1110
-#, c-format
-msgid ""
-"Error during sending file via FTP. Please correct your FTP configuration."
-msgstr ""
-
-#: standalone/drakbackup:1112
-#, c-format
-msgid "file list sent by FTP: %s\n"
-msgstr ""
-
-#: standalone/drakbackup:1127
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:1132
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:1141
-#, c-format
-msgid "Error sending mail. Your report mail was not sent."
-msgstr ""
-
-#: standalone/drakbackup:1142
-#, fuzzy, c-format
-msgid " Error while sending mail. \n"
-msgstr "Eraro legante dosiero %s"
-
-#: standalone/drakbackup:1172
+#: timezone.pm:183
#, c-format
-msgid "Can not create catalog!"
+msgid "Global"
msgstr ""
-#: standalone/drakbackup:1332
-#, fuzzy, c-format
-msgid "Problem installing %s"
-msgstr "Problemoj instalante pakaĵon %s"
-
-#: standalone/drakbackup:1420
-#, fuzzy, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Malbona rezerva dosiero"
-
-#: standalone/drakbackup:1421 standalone/drakbackup:1484
-#: standalone/drakbackup:1550
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr ""
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Incremental Backups"
-msgstr ""
-
-#: standalone/drakbackup:1423 standalone/drakbackup:1486
-#: standalone/drakbackup:1552
-#, c-format
-msgid "Use Differential Backups"
-msgstr ""
-
-#: standalone/drakbackup:1425
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: standalone/drakbackup:1456
-#, fuzzy, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Bonvole, elektu la pakaĵojn kiujn vi deziras instali."
-
-#: standalone/drakbackup:1483
-#, c-format
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: standalone/drakbackup:1537
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr ""
-
-#: standalone/drakbackup:1538 standalone/drakfont:650
-#, fuzzy, c-format
-msgid "Remove Selected"
-msgstr "Malinstalu printvicon"
-
-#: standalone/drakbackup:1601
-#, c-format
-msgid "Users"
-msgstr "Uzuloj"
-
-#: standalone/drakbackup:1621
-#, fuzzy, c-format
-msgid "Use network connection to backup"
-msgstr "Malbona rezerva dosiero"
-
-#: standalone/drakbackup:1623
-#, c-format
-msgid "Net Method:"
-msgstr ""
-
-#: standalone/drakbackup:1627
-#, c-format
-msgid "Use Expect for SSH"
-msgstr ""
-
-#: standalone/drakbackup:1628
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr ""
-
-#: standalone/drakbackup:1630
-#, c-format
-msgid "Transfer Now"
-msgstr ""
-
-#: standalone/drakbackup:1632
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr ""
-
-#: standalone/drakbackup:1635
-#, fuzzy, c-format
-msgid "Host name or IP."
-msgstr "Poŝtejo"
-
-#: standalone/drakbackup:1640
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
-
-#: standalone/drakbackup:1652
-#, fuzzy, c-format
-msgid "Remember this password"
-msgstr "Neniu pasvorto"
-
-#: standalone/drakbackup:1664
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr ""
-
-#: standalone/drakbackup:1755
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr ""
-
-#: standalone/drakbackup:1758
-#, fuzzy, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Bonvole, elektu vian klavaran aranĝon."
-
-#: standalone/drakbackup:1763
-#, fuzzy, c-format
-msgid "Choose your CD/DVD media size"
-msgstr "Bonvole, elektu vian klavaran aranĝon."
-
-#: standalone/drakbackup:1770
-#, fuzzy, c-format
-msgid "Multisession CD"
-msgstr "Plurmedia - Sono"
-
-#: standalone/drakbackup:1772
-#, c-format
-msgid "CDRW media"
-msgstr ""
-
-#: standalone/drakbackup:1778
-#, fuzzy, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Bonvolu klaki sur subdiskon"
-
-#: standalone/drakbackup:1779
-#, c-format
-msgid " Erase Now "
-msgstr ""
-
-#: standalone/drakbackup:1785
-#, c-format
-msgid "DVD+RW media"
-msgstr ""
-
-#: standalone/drakbackup:1787
-#, fuzzy, c-format
-msgid "DVD-R media"
-msgstr "aparato"
-
-#: standalone/drakbackup:1789
-#, fuzzy, c-format
-msgid "DVDRAM device"
-msgstr "aparato"
-
-#: standalone/drakbackup:1820
-#, fuzzy, c-format
-msgid "No CD device defined!"
-msgstr "Elektu dosieron"
-
-#: standalone/drakbackup:1862
-#, fuzzy, c-format
-msgid "Use tape to backup"
-msgstr "Malbona rezerva dosiero"
-
-#: standalone/drakbackup:1865
-#, c-format
-msgid "Device name to use for backup"
-msgstr ""
-
-#: standalone/drakbackup:1871
-#, c-format
-msgid "Backup directly to tape"
-msgstr ""
-
-#: standalone/drakbackup:1877
-#, c-format
-msgid "Use tape hardware compression (EXPERIMENTAL)"
-msgstr ""
-
-#: standalone/drakbackup:1883
-#, fuzzy, c-format
-msgid "Do not rewind tape after backup"
-msgstr "Malbona rezerva dosiero"
-
-#: standalone/drakbackup:1889
-#, fuzzy, c-format
-msgid "Erase tape before backup"
-msgstr "Malbona rezerva dosiero"
-
-#: standalone/drakbackup:1895
-#, fuzzy, c-format
-msgid "Eject tape after the backup"
-msgstr "Malbona rezerva dosiero"
-
-#: standalone/drakbackup:1976
-#, fuzzy, c-format
-msgid "Enter the directory to save to:"
-msgstr "Bonvole, provu la muson"
-
-#: standalone/drakbackup:1980
-#, fuzzy, c-format
-msgid "Directory to save to"
-msgstr "Bonvole, provu la muson"
-
-#: standalone/drakbackup:1985
-#, c-format
-msgid ""
-"Maximum disk space\n"
-" allocated for backups (MB)"
-msgstr ""
-
-#: standalone/drakbackup:1989
-#, c-format
-msgid ""
-"Delete incremental or differential\n"
-" backups older than N days\n"
-" (0 is keep all backups) to save space"
-msgstr ""
-
-#: standalone/drakbackup:2056
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr ""
-
-#: standalone/drakbackup:2061
-#, c-format
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2077
-#: standalone/drakbackup:2082
-#, c-format
-msgid "hourly"
-msgstr ""
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2078
-#: standalone/drakbackup:2083
-#, c-format
-msgid "daily"
-msgstr ""
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2079
-#: standalone/drakbackup:2084
-#, c-format
-msgid "weekly"
-msgstr ""
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2080
-#: standalone/drakbackup:2085
-#, c-format
-msgid "monthly"
-msgstr ""
-
-#: standalone/drakbackup:2076 standalone/drakbackup:2081
-#: standalone/drakbackup:2086
-#, fuzzy, c-format
-msgid "custom"
-msgstr "Akomodata"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "January"
-msgstr "Januaro"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "February"
-msgstr "Februaro"
-
-#: standalone/drakbackup:2090
-#, c-format
-msgid "March"
-msgstr "Marto"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "April"
-msgstr "Aprilo"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "May"
-msgstr "Majo"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "June"
-msgstr "Junio"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "July"
-msgstr "Julio"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "August"
-msgstr "Aŭgusto"
-
-#: standalone/drakbackup:2091
-#, c-format
-msgid "September"
-msgstr "Septembro"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "October"
-msgstr "Oktobro"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "November"
-msgstr "Novembro"
-
-#: standalone/drakbackup:2092
-#, c-format
-msgid "December"
-msgstr "Decembro"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Sunday"
-msgstr "dimanĉo"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Monday"
-msgstr "lundo"
-
-#: standalone/drakbackup:2095
-#, c-format
-msgid "Tuesday"
-msgstr "mardo"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Wednesday"
-msgstr "merkredo"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Thursday"
-msgstr "ĵaŭdo"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Friday"
-msgstr "vendredo"
-
-#: standalone/drakbackup:2096
-#, c-format
-msgid "Saturday"
-msgstr "sabato"
-
-#: standalone/drakbackup:2126
-#, fuzzy, c-format
-msgid "Delete cron entry"
-msgstr "Forigu"
-
-#: standalone/drakbackup:2127
-#, fuzzy, c-format
-msgid "Add cron entry"
-msgstr "Aldonu presilon..."
-
-#: standalone/drakbackup:2185
-#, fuzzy, c-format
-msgid "Use daemon"
-msgstr "Salutnomo"
-
-#: standalone/drakbackup:2189
-#, fuzzy, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Bonvole, elektu la pakaĵojn kiujn vi deziras instali."
-
-#: standalone/drakbackup:2197
-#, c-format
-msgid "Minute"
-msgstr "Minuto"
-
-#: standalone/drakbackup:2201
-#, c-format
-msgid "Hour"
-msgstr "Horo"
-
-#: standalone/drakbackup:2205
-#, c-format
-msgid "Day"
-msgstr "Tago"
-
-#: standalone/drakbackup:2209
-#, c-format
-msgid "Month"
-msgstr "Monato"
-
-#: standalone/drakbackup:2213
-#, fuzzy, c-format
-msgid "Weekday (start)"
-msgstr "merkredo"
-
-#: standalone/drakbackup:2217
-#, fuzzy, c-format
-msgid "Weekday (end)"
-msgstr "merkredo"
-
-#: standalone/drakbackup:2221
-#, fuzzy, c-format
-msgid "Profile"
-msgstr "Profiloj"
-
-#: standalone/drakbackup:2227
-#, fuzzy, c-format
-msgid "Current crontab:"
-msgstr "Akceptu uzanto"
-
-#: standalone/drakbackup:2235
-#, fuzzy, c-format
-msgid "Please choose the media for backup."
-msgstr "Bonvole, elektu lingvon por uzi."
-
-#: standalone/drakbackup:2239
-#, fuzzy, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Bonvole, elektu la pakaĵojn kiujn vi deziras instali."
-
-#: standalone/drakbackup:2240
-#, c-format
-msgid ""
-"If your machine is not on all the time, you might want to install anacron."
-msgstr ""
-
-#: standalone/drakbackup:2316
-#, fuzzy, c-format
-msgid "Please choose the archive program"
-msgstr "Bonvole, elektu la specon de via muso."
-
-#: standalone/drakbackup:2321
-#, fuzzy, c-format
-msgid "Please choose the compression type"
-msgstr "Bonvole, elektu la specon de via muso."
-
-#: standalone/drakbackup:2325
-#, fuzzy, c-format
-msgid "Use .backupignore files"
-msgstr "Malbona rezerva dosiero"
-
-#: standalone/drakbackup:2327
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr ""
-
-#: standalone/drakbackup:2333
-#, c-format
-msgid "Return address for sent mail:"
-msgstr ""
-
-#: standalone/drakbackup:2339
-#, fuzzy, c-format
-msgid "SMTP server for mail:"
-msgstr "Poŝtejo de SMB servilo"
-
-#: standalone/drakbackup:2343
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
-
-#: standalone/drakbackup:2344
-#, c-format
-msgid "View restore log after file restore."
-msgstr ""
-
-#: standalone/drakbackup:2389
-#, c-format
-msgid "What"
-msgstr ""
-
-#: standalone/drakbackup:2394
-#, fuzzy, c-format
-msgid "Where"
-msgstr "Rado"
-
-#: standalone/drakbackup:2399
-#, fuzzy, c-format
-msgid "When"
-msgstr "Rado"
-
-#: standalone/drakbackup:2404
-#, fuzzy, c-format
-msgid "More Options"
-msgstr "Modulaj opcioj:"
-
-#: standalone/drakbackup:2417
-#, fuzzy, c-format
-msgid "Backup destination not configured..."
-msgstr "Ekrano ne estas konfigurata"
-
-#: standalone/drakbackup:2437 standalone/drakbackup:4367
-#, fuzzy, c-format
-msgid "Drakbackup Configuration"
-msgstr "Reta Konfiguraĵo"
-
-#: standalone/drakbackup:2453
-#, fuzzy, c-format
-msgid "Please choose where you want to backup"
-msgstr "Bonvole, elektu la pakaĵojn kiujn vi deziras instali."
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Hard Drive used to prepare backups for all media"
-msgstr ""
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "Across Network"
-msgstr ""
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On CD-R"
-msgstr ""
-
-#: standalone/drakbackup:2456
-#, c-format
-msgid "On Tape Device"
-msgstr ""
-
-#: standalone/drakbackup:2502
-#, c-format
-msgid "Backup Users"
-msgstr ""
-
-#: standalone/drakbackup:2503
-#, fuzzy, c-format
-msgid " (Default is all users)"
-msgstr "Loka printilo"
-
-#: standalone/drakbackup:2516
-#, fuzzy, c-format
-msgid "Please choose what you want to backup"
-msgstr "Bonvole, elektu la pakaĵojn kiujn vi deziras instali."
-
-#: standalone/drakbackup:2517
-#, fuzzy, c-format
-msgid "Backup System"
-msgstr "Dosiersistemo konfiguro"
-
-#: standalone/drakbackup:2519
-#, c-format
-msgid "Select user manually"
-msgstr ""
-
-#: standalone/drakbackup:2548
-#, fuzzy, c-format
-msgid "Please select data to backup..."
-msgstr "Bonvole, elektu lingvon por uzi."
-
-#: standalone/drakbackup:2620
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: standalone/drakbackup:2621
-#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: standalone/drakbackup:2623
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: standalone/drakbackup:2625
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: standalone/drakbackup:2627
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2628
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr ""
-
-#: standalone/drakbackup:2629
-#, c-format
-msgid "\tDelete backups older than %s day(s)\n"
-msgstr ""
-
-#: standalone/drakbackup:2632
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
-
-#: standalone/drakbackup:2637
-#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr ""
-
-#: standalone/drakbackup:2638
-#, c-format
-msgid "RW"
-msgstr "L/S"
-
-#: standalone/drakbackup:2639
-#, fuzzy, c-format
-msgid " on device: %s"
-msgstr "Musaparato: %s\n"
-
-#: standalone/drakbackup:2640
-#, c-format
-msgid " (multi-session)"
-msgstr ""
-
-#: standalone/drakbackup:2641
-#, c-format
-msgid ""
-"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-
-#: standalone/drakbackup:2642
-#, c-format
-msgid "\t\tErase=%s"
-msgstr ""
-
-#: standalone/drakbackup:2644
-#, c-format
-msgid "\tBackup directly to Tape\n"
-msgstr ""
-
-#: standalone/drakbackup:2646
-#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2647
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: standalone/drakbackup:2648
-#, fuzzy, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Opcioj"
-
-#: standalone/drakbackup:2649
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: standalone/drakbackup:2651
-#, fuzzy, c-format
-msgid "\tBackups use %s and bzip2\n"
-msgstr "Malbona rezerva dosiero"
-
-#: standalone/drakbackup:2652
-#, fuzzy, c-format
-msgid "\tBackups use %s and gzip\n"
-msgstr "Malbona rezerva dosiero"
-
-#: standalone/drakbackup:2653
-#, fuzzy, c-format
-msgid "\tBackups use %s only\n"
-msgstr "Malbona rezerva dosiero"
-
-#: standalone/drakbackup:2655
-#, fuzzy, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "Malbona rezerva dosiero"
-
-#: standalone/drakbackup:2656
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2657
-#, c-format
-msgid "\tSend mail from %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2658
-#, fuzzy, c-format
-msgid "\tUsing SMTP server %s\n"
-msgstr "Ĉe CUPS-servilo \"%s\""
-
-#: standalone/drakbackup:2660
-#, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
-msgstr ""
-
-#: standalone/drakbackup:2661
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: standalone/drakbackup:2662
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr ""
-
-#: standalone/drakbackup:2663
-#, c-format
-msgid "\t-Tape \n"
-msgstr ""
-
-#: standalone/drakbackup:2664
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: standalone/drakbackup:2665
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: standalone/drakbackup:2666
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr ""
-
-#: standalone/drakbackup:2668
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: standalone/drakbackup:2673
-#, c-format
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:2675
-#, fuzzy, c-format
-msgid "- Restore System Files.\n"
-msgstr "Malinstalu printvicon"
-
-#: standalone/drakbackup:2677 standalone/drakbackup:2687
-#, c-format
-msgid " - from date: %s %s\n"
-msgstr ""
-
-#: standalone/drakbackup:2680
-#, fuzzy, c-format
-msgid "- Restore User Files: \n"
-msgstr "Restaŭru de dosiero"
-
-#: standalone/drakbackup:2685
-#, fuzzy, c-format
-msgid "- Restore Other Files: \n"
-msgstr "Restaŭru de dosiero"
-
-#: standalone/drakbackup:2864
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: standalone/drakbackup:2866
-#, fuzzy, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-
-#: standalone/drakbackup:2876
-#, c-format
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: standalone/drakbackup:2897
-#, c-format
-msgid " All of your selected data have been "
-msgstr ""
-
-#: standalone/drakbackup:2898
-#, c-format
-msgid " Successfully Restored on %s "
-msgstr ""
-
-#: standalone/drakbackup:2999
-#, c-format
-msgid "/usr/bin/star not found, using tar..."
-msgstr ""
-
-#: standalone/drakbackup:3035
-#, fuzzy, c-format
-msgid " Restore Configuration "
-msgstr "Reta Konfiguraĵo"
-
-#: standalone/drakbackup:3063
-#, c-format
-msgid "OK to restore the other files."
-msgstr ""
-
-#: standalone/drakbackup:3079
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: standalone/drakbackup:3144
-#, fuzzy, c-format
-msgid "Please choose the date to restore:"
-msgstr "Bonvole, elektu la specon de via muso."
-
-#: standalone/drakbackup:3181
-#, fuzzy, c-format
-msgid "Restore from Hard Disk."
-msgstr "Restaŭru de disketo"
-
-#: standalone/drakbackup:3183
-#, fuzzy, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Bonvole, provu la muson"
-
-#: standalone/drakbackup:3187
-#, c-format
-msgid "Directory with backups"
-msgstr ""
-
-#: standalone/drakbackup:3241
-#, fuzzy, c-format
-msgid "Select another media to restore from"
-msgstr "Bonvole, elektu la specon de via muso."
-
-#: standalone/drakbackup:3243
-#, fuzzy, c-format
-msgid "Other Media"
-msgstr "Alia"
-
-#: standalone/drakbackup:3248
-#, fuzzy, c-format
-msgid "Restore system"
-msgstr "Instalu sistemon"
-
-#: standalone/drakbackup:3249
-#, fuzzy, c-format
-msgid "Restore Users"
-msgstr "Restaŭru de dosiero"
-
-#: standalone/drakbackup:3250
-#, fuzzy, c-format
-msgid "Restore Other"
-msgstr "Restaŭru de dosiero"
-
-#: standalone/drakbackup:3252
-#, fuzzy, c-format
-msgid "Select path to restore (instead of /)"
-msgstr "Bonvole, elektu la specon de via muso."
-
-#: standalone/drakbackup:3256 standalone/drakbackup:3539
-#, fuzzy, c-format
-msgid "Path To Restore To"
-msgstr "Akomodata"
-
-#: standalone/drakbackup:3259
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: standalone/drakbackup:3261
-#, c-format
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: standalone/drakbackup:3345
-#, c-format
-msgid "Filename text substring to search for (empty string matches all):"
-msgstr ""
-
-#: standalone/drakbackup:3348
-#, c-format
-msgid "Search Backups"
-msgstr ""
-
-#: standalone/drakbackup:3367
-#, fuzzy, c-format
-msgid "No matches found..."
-msgstr "Loka printilo"
-
-#: standalone/drakbackup:3371
-#, fuzzy, c-format
-msgid "Restore Selected"
-msgstr "Malinstalu printvicon"
-
-#: standalone/drakbackup:3507
-#, c-format
-msgid ""
-"Click date/time to see backup files.\n"
-"Ctrl-Click files to select multiple files."
-msgstr ""
-
-#: standalone/drakbackup:3513
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
-
-#: standalone/drakbackup:3522
-#, fuzzy, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr "Malinstalu printvicon"
-
-#: standalone/drakbackup:3599
-#, c-format
-msgid "Backup files not found at %s."
-msgstr ""
-
-#: standalone/drakbackup:3612
-#, fuzzy, c-format
-msgid "Restore From CD"
-msgstr "Restaŭru de disketo"
-
-#: standalone/drakbackup:3612
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-
-#: standalone/drakbackup:3614
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr ""
-
-#: standalone/drakbackup:3624
-#, fuzzy, c-format
-msgid "Restore From Tape"
-msgstr "Sava subdiskotabelo"
-
-#: standalone/drakbackup:3624
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-
-#: standalone/drakbackup:3626
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
-
-#: standalone/drakbackup:3637
-#, fuzzy, c-format
-msgid "Restore Via Network"
-msgstr "Restaŭru de dosiero"
-
-#: standalone/drakbackup:3637
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr ""
-
-#: standalone/drakbackup:3638
-#, fuzzy, c-format
-msgid "Host Name"
-msgstr "Poŝtejo"
-
-#: standalone/drakbackup:3639
-#, c-format
-msgid "Host Path or Module"
-msgstr ""
-
-#: standalone/drakbackup:3646
-#, fuzzy, c-format
-msgid "Password required"
-msgstr "Pasvorto"
-
-#: standalone/drakbackup:3652
-#, fuzzy, c-format
-msgid "Username required"
-msgstr "Salutnomo"
-
-#: standalone/drakbackup:3655
-#, fuzzy, c-format
-msgid "Hostname required"
-msgstr "Poŝtejo: "
-
-#: standalone/drakbackup:3660
-#, c-format
-msgid "Path or Module required"
-msgstr ""
-
-#: standalone/drakbackup:3672
-#, c-format
-msgid "Files Restored..."
-msgstr ""
-
-#: standalone/drakbackup:3675
-#, fuzzy, c-format
-msgid "Restore Failed..."
-msgstr "Restaŭru de dosiero"
-
-#: standalone/drakbackup:3703
-#, fuzzy, c-format
-msgid "%s not retrieved..."
-msgstr "neniu retkarto trovita"
-
-#: standalone/drakbackup:3929 standalone/drakbackup:3998
-#, fuzzy, c-format
-msgid "Search for files to restore"
-msgstr "Bonvole, elektu la specon de via muso."
-
-#: standalone/drakbackup:3933
-#, c-format
-msgid "Restore all backups"
-msgstr ""
-
-#: standalone/drakbackup:3941
-#, fuzzy, c-format
-msgid "Custom Restore"
-msgstr "Akomodata"
-
-#: standalone/drakbackup:3945 standalone/drakbackup:3994
-#, fuzzy, c-format
-msgid "Restore From Catalog"
-msgstr "Sava subdiskotabelo"
-
-#: standalone/drakbackup:3966
-#, fuzzy, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Bonvole, elektu lingvon por uzi."
-
-#: standalone/drakbackup:3967
-#, fuzzy, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Ĉu tiu ĉi konfigurado ĝustas?"
-
-#: standalone/drakbackup:3968
-#, c-format
-msgid " and the CD is in the drive"
-msgstr ""
-
-#: standalone/drakbackup:3970
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr ""
-
-#: standalone/drakbackup:3986
-#, c-format
-msgid "CD in place - continue."
-msgstr ""
-
-#: standalone/drakbackup:3991
-#, c-format
-msgid "Browse to new restore repository."
-msgstr ""
-
-#: standalone/drakbackup:3992
-#, fuzzy, c-format
-msgid "Directory To Restore From"
-msgstr "Restaŭru de disketo"
-
-#: standalone/drakbackup:4028
-#, fuzzy, c-format
-msgid "Restore Progress"
-msgstr "Restaŭru de dosiero"
-
-#: standalone/drakbackup:4136
-#, fuzzy, c-format
-msgid "Build Backup"
-msgstr "Malbona rezerva dosiero"
-
-#: standalone/drakbackup:4169 standalone/drakbackup:4466
-#, c-format
-msgid "Restore"
-msgstr "Restarigu"
-
-#: standalone/drakbackup:4261
-#, fuzzy, c-format
-msgid "Please select data to restore..."
-msgstr "Bonvole, elektu lingvon por uzi."
-
-#: standalone/drakbackup:4301
-#, fuzzy, c-format
-msgid "Backup system files"
-msgstr "Malbona rezerva dosiero"
-
-#: standalone/drakbackup:4304
-#, fuzzy, c-format
-msgid "Backup user files"
-msgstr "Malbona rezerva dosiero"
-
-#: standalone/drakbackup:4307
-#, fuzzy, c-format
-msgid "Backup other files"
-msgstr "Malbona rezerva dosiero"
-
-#: standalone/drakbackup:4310 standalone/drakbackup:4344
-#, c-format
-msgid "Total Progress"
-msgstr ""
-
-#: standalone/drakbackup:4336
-#, fuzzy, c-format
-msgid "Sending files by FTP"
-msgstr "Konservu en dosiero"
-
-#: standalone/drakbackup:4339
-#, fuzzy, c-format
-msgid "Sending files..."
-msgstr "Konservu en dosiero"
-
-#: standalone/drakbackup:4409
-#, fuzzy, c-format
-msgid "Backup Now from configuration file"
-msgstr "Reta Konfiguraĵo"
-
-#: standalone/drakbackup:4414
-#, fuzzy, c-format
-msgid "View Backup Configuration."
-msgstr "Reta Konfiguraĵo"
-
-#: standalone/drakbackup:4440
-#, fuzzy, c-format
-msgid "Wizard Configuration"
-msgstr "LAN Konfiguraĵo"
-
-#: standalone/drakbackup:4445
-#, fuzzy, c-format
-msgid "Advanced Configuration"
-msgstr "LAN Konfiguraĵo"
-
-#: standalone/drakbackup:4450
-#, fuzzy, c-format
-msgid "View Configuration"
-msgstr "LAN Konfiguraĵo"
-
-#: standalone/drakbackup:4454
-#, c-format
-msgid "View Last Log"
-msgstr ""
-
-#: standalone/drakbackup:4459
-#, fuzzy, c-format
-msgid "Backup Now"
-msgstr "Dosiersistemo konfiguro"
-
-#: standalone/drakbackup:4463
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: standalone/drakbackup:4501
-#, fuzzy, c-format
-msgid "Load profile"
-msgstr "Lokala dosiero"
-
-#: standalone/drakbackup:4510
-#, fuzzy, c-format
-msgid "Save profile as..."
-msgstr "Savu Kiel..."
-
-#: standalone/drakbackup:4532 standalone/drakbackup:4535
-#, c-format
-msgid "Drakbackup"
-msgstr ""
-
-#: standalone/drakboot:49
-#, c-format
-msgid "No bootloader found, creating a new configuration"
-msgstr ""
-
-#: standalone/drakboot:84 standalone/harddrake2:190 standalone/harddrake2:191
-#: standalone/logdrake:69 standalone/printerdrake:150
-#: standalone/printerdrake:151 standalone/printerdrake:152
-#, c-format
-msgid "/_File"
-msgstr "/_Dosiero"
-
-#: standalone/drakboot:85 standalone/logdrake:75
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Dosiero/_Foriru"
-
-#: standalone/drakboot:85 standalone/harddrake2:191 standalone/logdrake:75
-#: standalone/printerdrake:152
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: standalone/drakboot:125
-#, c-format
-msgid "Text only"
-msgstr ""
-
-#: standalone/drakboot:126
-#, c-format
-msgid "Verbose"
-msgstr ""
-
-#: standalone/drakboot:127
-#, c-format
-msgid "Silent"
-msgstr "Silentigu"
-
-#: standalone/drakboot:134
-#, c-format
-msgid ""
-"Your system bootloader is not in framebuffer mode. To activate graphical "
-"boot, select a graphic video mode from the bootloader configuration tool."
-msgstr ""
-
-#: standalone/drakboot:135
-#, fuzzy, c-format
-msgid "Do you want to configure it now?"
-msgstr "Ĉu vi deziras provi la konfiguraĵon?"
-
-#: standalone/drakboot:144
-#, fuzzy, c-format
-msgid "Install themes"
-msgstr "Instalu sistemon"
-
-#: standalone/drakboot:146
-#, fuzzy, c-format
-msgid "Graphical boot theme selection"
-msgstr "Printilan Konekton"
-
-#: standalone/drakboot:149
-#, fuzzy, c-format
-msgid "Graphical boot mode:"
-msgstr "Printilan Konekton"
-
-#: standalone/drakboot:151
-#, c-format
-msgid "Theme"
-msgstr "Etoso"
-
-#: standalone/drakboot:154
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-
-#: standalone/drakboot:159
-#, fuzzy, c-format
-msgid "Create new theme"
-msgstr "Kreu novan subdiskon"
-
-#: standalone/drakboot:191
-#, fuzzy, c-format
-msgid "Default user"
-msgstr "Loka printilo"
-
-#: standalone/drakboot:192
-#, fuzzy, c-format
-msgid "Default desktop"
-msgstr "Defaŭlta"
-
-#: standalone/drakboot:195
-#, c-format
-msgid "No, I do not want autologin"
-msgstr ""
-
-#: standalone/drakboot:196
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr ""
-
-#: standalone/drakboot:203
-#, c-format
-msgid "System mode"
-msgstr "Sistema modalo"
-
-#: standalone/drakboot:206
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr ""
-
-#: standalone/drakboot:272
-#, c-format
-msgid ""
-"Please choose a video mode, it will be applied to each of the boot entries "
-"selected below.\n"
-"Be sure your video card supports the mode you choose."
-msgstr ""
-
-#: standalone/drakbug:41
-#, fuzzy, c-format
-msgid "Mandriva Linux Bug Report Tool"
-msgstr "Konekti al la interreto"
-
-#: standalone/drakbug:46
-#, c-format
-msgid "Mandriva Linux Control Center"
-msgstr "Mandriva Linux-Regejo"
-
-#: standalone/drakbug:48
-#, c-format
-msgid "Synchronization tool"
-msgstr ""
-
-#: standalone/drakbug:49 standalone/drakbug:152
-#, c-format
-msgid "Standalone Tools"
-msgstr ""
-
-#: standalone/drakbug:50
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: standalone/drakbug:51
-#, c-format
-msgid "Mandriva Online"
-msgstr "Mandriva Online"
-
-#: standalone/drakbug:52
-#, fuzzy, c-format
-msgid "Menudrake"
-msgstr "Spertulo"
-
-#: standalone/drakbug:53
-#, fuzzy, c-format
-msgid "Msec"
-msgstr "Muso"
-
-#: standalone/drakbug:54
-#, fuzzy, c-format
-msgid "Remote Control"
-msgstr "Malproksima printilo"
-
-#: standalone/drakbug:55
-#, fuzzy, c-format
-msgid "Software Manager"
-msgstr "Opuza nomo"
-
-#: standalone/drakbug:56
-#, c-format
-msgid "Urpmi"
-msgstr ""
-
-#: standalone/drakbug:57
-#, c-format
-msgid "Windows Migration tool"
-msgstr ""
-
-#: standalone/drakbug:58 standalone/draksambashare:1234
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: standalone/drakbug:59
-#, fuzzy, c-format
-msgid "Configuration Wizards"
-msgstr "ISDN-a Konfiguraĵon"
-
-#: standalone/drakbug:81
-#, c-format
-msgid "Select Mandriva Tool:"
-msgstr ""
-
-#: standalone/drakbug:82
-#, c-format
-msgid ""
-"or Application Name\n"
-"(or Full Path):"
-msgstr ""
-
-#: standalone/drakbug:85
-#, c-format
-msgid "Find Package"
-msgstr "Trovu pakaĵon"
-
-#: standalone/drakbug:87
-#, c-format
-msgid "Package: "
-msgstr "Pakaĵo : "
-
-#: standalone/drakbug:88
-#, c-format
-msgid "Kernel:"
-msgstr "Operaciumkerno:"
-
-#: standalone/drakbug:101
-#, c-format
-msgid ""
-"To submit a bug report, click on the report button. \n"
-"This will open a web browser window on %s where you'll find a form to fill "
-"in. The information displayed above will be transferred to that server. \n"
-"Things useful to include in your report are the output of lspci, kernel "
-"version, and /proc/cpuinfo."
-msgstr ""
-
-#: standalone/drakbug:107
-#, fuzzy, c-format
-msgid "Report"
-msgstr "porto"
-
-#: standalone/drakbug:162
-#, fuzzy, c-format
-msgid "Not installed"
-msgstr "Eliru instalprogramon"
-
-#: standalone/drakbug:174
-#, fuzzy, c-format
-msgid "Package not installed"
-msgstr "Eliru instalprogramon"
-
-#: standalone/drakclock:29
-#, c-format
-msgid "DrakClock"
-msgstr "DrakHorloĝo"
-
-#: standalone/drakclock:39
-#, fuzzy, c-format
-msgid "not defined"
-msgstr "ne konfigurita"
-
-#: standalone/drakclock:41
-#, fuzzy, c-format
-msgid "Change Time Zone"
-msgstr "Horzono"
-
-#: standalone/drakclock:45
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "Horzono - DrakHorloĝo"
-
-#: standalone/drakclock:47
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "GMT - DrakHorloĝo"
-
-#: standalone/drakclock:47 standalone/finish-install:57
-#, fuzzy, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Aparata horloĝo estas ĝustigita laŭ GMT"
-
-#: standalone/drakclock:75
-#, fuzzy, c-format
-msgid "Network Time Protocol"
-msgstr "Reta interfaco"
-
-#: standalone/drakclock:77
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-
-#: standalone/drakclock:78
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr ""
-
-#: standalone/drakclock:86
-#, c-format
-msgid "Server:"
-msgstr "Servilo:"
-
-#: standalone/drakclock:124
-#, c-format
-msgid "Could not synchronize with %s."
-msgstr ""
-
-#: standalone/drakclock:146 standalone/drakclock:156
-#, c-format
-msgid "Reset"
-msgstr "Restarigu"
-
-#: standalone/drakclock:224
-#, fuzzy, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol\n"
-"\n"
-"Do you want to install ntp?"
-msgstr "Ĉi tiu pakaĵo %s devas esti instalita. Ĉu vi deziras instali ĝin?"
-
-#: standalone/drakconnect:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "ISDN-a Konfiguraĵon"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Gateway:"
-msgstr "Kluzo:"
-
-#: standalone/drakconnect:89 standalone/drakconnect:807
-#, c-format
-msgid "Interface:"
-msgstr "Interfaco :"
-
-#: standalone/drakconnect:93 standalone/net_monitor:116
-#, c-format
-msgid "Wait please"
-msgstr ""
-
-#: standalone/drakconnect:109
-#, c-format
-msgid "Interface"
-msgstr "Interfaco"
-
-#: standalone/drakconnect:109 standalone/printerdrake:224
-#: standalone/printerdrake:231
-#, c-format
-msgid "State"
-msgstr "Stato"
-
-#: standalone/drakconnect:126
-#, c-format
-msgid "Hostname: "
-msgstr "Poŝtejo: "
-
-#: standalone/drakconnect:128
-#, fuzzy, c-format
-msgid "Configure hostname..."
-msgstr "Konfiguru muson"
-
-#: standalone/drakconnect:142 standalone/drakconnect:845
-#, c-format
-msgid "LAN configuration"
-msgstr "LAN Konfiguraĵo"
-
-#: standalone/drakconnect:147
-#, fuzzy, c-format
-msgid "Configure Local Area Network..."
-msgstr "Konfiguru lokan reton"
-
-#: standalone/drakconnect:155 standalone/drakconnect:237
-#: standalone/drakconnect:241
-#, c-format
-msgid "Apply"
-msgstr "Apliku"
-
-#: standalone/drakconnect:188
-#, c-format
-msgid "Manage connections"
-msgstr "Mastrumi konektojn"
-
-#: standalone/drakconnect:215
-#, fuzzy, c-format
-msgid "Device selected"
-msgstr "Malinstalu printvicon"
-
-#: standalone/drakconnect:296
-#, fuzzy, c-format
-msgid "IP configuration"
-msgstr "LAN Konfiguraĵo"
-
-#: standalone/drakconnect:335
-#, fuzzy, c-format
-msgid "DNS servers"
-msgstr "DNA servilo"
-
-#: standalone/drakconnect:343
-#, fuzzy, c-format
-msgid "Search Domain"
-msgstr "NIS Domajno"
-
-#: standalone/drakconnect:351
-#, fuzzy, c-format
-msgid "static"
-msgstr "Aŭtomata IP"
-
-#: standalone/drakconnect:351
-#, c-format
-msgid "DHCP"
-msgstr ""
-
-#: standalone/drakconnect:515
-#, c-format
-msgid "Flow control"
-msgstr "Flu-kontrolo"
-
-#: standalone/drakconnect:516
-#, fuzzy, c-format
-msgid "Line termination"
-msgstr "Interreta Konfigurado"
-
-#: standalone/drakconnect:527
-#, fuzzy, c-format
-msgid "Modem timeout"
-msgstr "Winmodem-konekto"
-
-#: standalone/drakconnect:531
-#, c-format
-msgid "Use lock file"
-msgstr "Uzu ŝlosodosieron"
-
-#: standalone/drakconnect:533
-#, c-format
-msgid "Wait for dialup tone before dialing"
-msgstr ""
-
-#: standalone/drakconnect:536
-#, fuzzy, c-format
-msgid "Busy wait"
-msgstr "Kuvajto"
-
-#: standalone/drakconnect:541
-#, fuzzy, c-format
-msgid "Modem sound"
-msgstr "Modemo"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Enable"
-msgstr "Ŝaltu"
-
-#: standalone/drakconnect:542 standalone/drakgw:105
-#, c-format
-msgid "Disable"
-msgstr "Malŝaltu"
-
-#: standalone/drakconnect:593 standalone/harddrake2:50
-#, c-format
-msgid "Media class"
-msgstr ""
-
-#: standalone/drakconnect:594
-#, c-format
-msgid "Module name"
-msgstr "Modulonomo"
-
-#: standalone/drakconnect:595
-#, fuzzy, c-format
-msgid "Mac Address"
-msgstr "IP-adreso"
-
-#: standalone/drakconnect:596 standalone/harddrake2:28
-#: standalone/harddrake2:120
-#, c-format
-msgid "Bus"
-msgstr "Buso"
-
-#: standalone/drakconnect:597 standalone/harddrake2:34
-#, c-format
-msgid "Location on the bus"
-msgstr ""
-
-#: standalone/drakconnect:700 standalone/drakgw:311
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Mi ne detektas eterretan retadaptilom sur via sistemo. Bonvole lanĉu la\n"
-"aparatokonfigurilon."
-
-#: standalone/drakconnect:709
-#, fuzzy, c-format
-msgid "Remove a network interface"
-msgstr "Elektu la retan interfacon"
-
-#: standalone/drakconnect:713
-#, fuzzy, c-format
-msgid "Select the network interface to remove:"
-msgstr "Elektu la retan interfacon"
-
-#: standalone/drakconnect:745
-#, fuzzy, c-format
-msgid ""
-"An error occurred while deleting the \"%s\" network interface:\n"
-"\n"
-"%s"
-msgstr ""
-"Problemo okazis dum restarto de la reto: \n"
-"\n"
-"%s"
-
-#: standalone/drakconnect:746
-#, c-format
-msgid ""
-"Congratulations, the \"%s\" network interface has been successfully deleted"
-msgstr ""
-
-#: standalone/drakconnect:761
-#, c-format
-msgid "No IP"
-msgstr ""
-
-#: standalone/drakconnect:762
-#, fuzzy, c-format
-msgid "No Mask"
-msgstr "Malbona pakaĵo"
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, c-format
-msgid "up"
-msgstr ""
-
-#: standalone/drakconnect:763 standalone/drakconnect:916
-#, fuzzy, c-format
-msgid "down"
-msgstr "Finata"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Connected"
-msgstr "Konektita"
-
-#: standalone/drakconnect:798 standalone/net_monitor:465
-#, c-format
-msgid "Not connected"
-msgstr "Ne konektita"
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Disconnect..."
-msgstr "Malkonektu..."
-
-#: standalone/drakconnect:800
-#, c-format
-msgid "Connect..."
-msgstr "Konektu..."
-
-#: standalone/drakconnect:841
-#, fuzzy, c-format
-msgid "Deactivate now"
-msgstr "Aktiva"
-
-#: standalone/drakconnect:841
-#, fuzzy, c-format
-msgid "Activate now"
-msgstr "Aktiva"
-
-#: standalone/drakconnect:849
-#, c-format
-msgid ""
-"You do not have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: standalone/drakconnect:863
-#, c-format
-msgid "LAN Configuration"
-msgstr "LAN Konfiguraĵo"
-
-#: standalone/drakconnect:875
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptilo %s: %s"
-
-#: standalone/drakconnect:884
-#, c-format
-msgid "Boot Protocol"
-msgstr ""
-
-#: standalone/drakconnect:885
-#, c-format
-msgid "Started on boot"
-msgstr ""
-
-#: standalone/drakconnect:921
-#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakconnect:975 standalone/net_applet:51
-#, c-format
-msgid ""
-"You do not have any configured Internet connection.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: standalone/drakconnect:976 standalone/drakroam:34 standalone/net_applet:52
-#, fuzzy, c-format
-msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
-msgstr "Elektu la retan interfacon"
-
-#: standalone/drakconnect:981
-#, fuzzy, c-format
-msgid "Internet connection configuration"
-msgstr "Interreta konektaĵo kaj konfiguro"
-
-#: standalone/drakconnect:994
-#, fuzzy, c-format
-msgid "Third DNS server (optional)"
-msgstr "Unu DNS-a Servilo (nedeviga)"
-
-#: standalone/drakconnect:1016
-#, fuzzy, c-format
-msgid "Internet Connection Configuration"
-msgstr "Interreta konektaĵo kaj konfiguro"
-
-#: standalone/drakconnect:1017
-#, c-format
-msgid "Internet access"
-msgstr "Interret-aliro"
-
-#: standalone/drakconnect:1019 standalone/net_monitor:95
-#, c-format
-msgid "Connection type: "
-msgstr "Speco de konekto"
-
-#: standalone/drakconnect:1022
-#, c-format
-msgid "Status:"
-msgstr "Stato:"
-
-#: standalone/drakconnect:1027
-#, c-format
-msgid "Parameters"
-msgstr "Parametroj"
-
-#: standalone/drakedm:40
-#, c-format
-msgid "GDM (GNOME Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:41
-#, c-format
-msgid "KDM (KDE Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:42
-#, c-format
-msgid "XDM (X Display Manager)"
-msgstr ""
-
-#: standalone/drakedm:53
-#, c-format
-msgid "Choosing a display manager"
-msgstr ""
-
-#: standalone/drakedm:54
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-
-#: standalone/drakedm:72
-#, fuzzy, c-format
-msgid "The change is done, do you want to restart the dm service?"
-msgstr ""
-"La reto devas esti restartigita.\n"
-"Ĉu vi deziras restartigi ĝin?"
-
-#: standalone/drakedm:73
-#, c-format
-msgid ""
-"You are going to close all running programs and lose your current session. "
-"Are you really sure that you want to restart the dm service?"
-msgstr ""
-
-#: standalone/drakfont:182
-#, c-format
-msgid "Search installed fonts"
-msgstr ""
-
-#: standalone/drakfont:184
-#, c-format
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: standalone/drakfont:207
-#, c-format
-msgid "parse all fonts"
-msgstr ""
-
-#: standalone/drakfont:209
-#, fuzzy, c-format
-msgid "No fonts found"
-msgstr "neniu retkarto trovita"
-
-#: standalone/drakfont:217 standalone/drakfont:259 standalone/drakfont:326
-#: standalone/drakfont:359 standalone/drakfont:367 standalone/drakfont:393
-#: standalone/drakfont:411 standalone/drakfont:425
-#, fuzzy, c-format
-msgid "done"
-msgstr "Finata"
-
-#: standalone/drakfont:222
-#, c-format
-msgid "Could not find any font in your mounted partitions"
-msgstr ""
-
-#: standalone/drakfont:257
-#, c-format
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: standalone/drakfont:260
-#, fuzzy, c-format
-msgid "Could not find any font.\n"
-msgstr "Malinstalu printvicon"
-
-#: standalone/drakfont:270
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr ""
-
-#: standalone/drakfont:295
-#, c-format
-msgid "%s fonts conversion"
-msgstr ""
-
-#: standalone/drakfont:324
-#, c-format
-msgid "Fonts copy"
-msgstr ""
-
-#: standalone/drakfont:327
-#, fuzzy, c-format
-msgid "True Type fonts installation"
-msgstr "Preparas instaladon"
-
-#: standalone/drakfont:334
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: standalone/drakfont:335
-#, c-format
-msgid "True Type install done"
-msgstr ""
-
-#: standalone/drakfont:341 standalone/drakfont:356
-#, c-format
-msgid "type1inst building"
-msgstr ""
-
-#: standalone/drakfont:350
-#, c-format
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: standalone/drakfont:360
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr ""
-
-#: standalone/drakfont:363
-#, fuzzy, c-format
-msgid "Restart XFS"
-msgstr "limigu"
-
-#: standalone/drakfont:409 standalone/drakfont:419
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: standalone/drakfont:421
-#, fuzzy, c-format
-msgid "xfs restart"
-msgstr "limigu"
-
-#: standalone/drakfont:429
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
-
-#: standalone/drakfont:473 standalone/drakfont:482
-#, c-format
-msgid "DrakFont"
-msgstr ""
-
-#: standalone/drakfont:483
-#, fuzzy, c-format
-msgid "Font List"
-msgstr "Surmetingo"
-
-#: standalone/drakfont:486
-#, c-format
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: standalone/drakfont:492
-#, c-format
-msgid "About"
-msgstr "Pri"
-
-#: standalone/drakfont:494 standalone/drakfont:718
-#, c-format
-msgid "Uninstall"
-msgstr "Malinstalo"
-
-#: standalone/drakfont:495
-#, c-format
-msgid "Import"
-msgstr "Importu"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakfont:513
-#, c-format
-msgid "Copyright (C) 2001-2006 by Mandriva"
-msgstr ""
-
-#: standalone/drakfont:515
-#, fuzzy, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-"Tiu ĉi programo estas libera softvaro; vi povas redisdoni ĝin kaj/aŭ modifi\n"
-"ĝin sub la termoj de la GNU-Ĝeneralpublika Licenco kiel publikigita de\n"
-"la Libera Programar Fondaĵo (Free Software Foundation); aŭ versio 2, aŭ\n"
-"laŭ via opcio) pli posta versio.\n"
-"\n"
-"Tiu ĉi programo estas disdonata kun la espero ke ĝi estu utila,\n"
-"sed SEN IA GARANTIO; eĉ sen garantio pri MERKATOTAUXGECO aŭ\n"
-"TAUXGECO POR APARTA CELO. Vidu la\n"
-"GNU Ĝeneralpublikan Licencon pri pli da detaloj.\n"
-"\n"
-"Vi devus esti ricevinta kopion de la GNU Ĝeneralpublika Licenco\n"
-"kun tiu ĉi programo; se ne, skribu al la Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
-
-#: standalone/drakfont:531
-#, c-format
-msgid ""
-"Thanks:\n"
-"\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-"\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-"\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
-msgstr ""
-
-#: standalone/drakfont:550
-#, fuzzy, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-
-#: standalone/drakfont:561
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: standalone/drakfont:562
-#, fuzzy, c-format
-msgid "StarOffice"
-msgstr "Oficejo"
-
-#: standalone/drakfont:563
-#, fuzzy, c-format
-msgid "Abiword"
-msgstr "Ĉesigu"
-
-#: standalone/drakfont:564
-#, fuzzy, c-format
-msgid "Generic Printers"
-msgstr "Printilo"
-
-#: standalone/drakfont:578
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: standalone/drakfont:579
-#, fuzzy, c-format
-msgid "File Selection"
-msgstr "Elektado de Pakaĵoj"
-
-#: standalone/drakfont:583
-#, c-format
-msgid "Fonts"
-msgstr "Tiparoj"
-
-#: standalone/drakfont:646
-#, fuzzy, c-format
-msgid "Import fonts"
-msgstr "Formatu subdiskojn"
-
-#: standalone/drakfont:651
-#, fuzzy, c-format
-msgid "Install fonts"
-msgstr "Instalu sistemon"
-
-#: standalone/drakfont:681
-#, c-format
-msgid "Are you sure you want to uninstall the following fonts?"
-msgstr ""
-
-#: standalone/drakfont:726
-#, c-format
-msgid "Unselected All"
-msgstr ""
-
-#: standalone/drakfont:729
-#, fuzzy, c-format
-msgid "Selected All"
-msgstr "Elektu dosieron"
-
-#: standalone/drakfont:743 standalone/drakfont:762
-#, fuzzy, c-format
-msgid "Importing fonts"
-msgstr "Formatu subdiskojn"
-
-#: standalone/drakfont:747 standalone/drakfont:767
-#, c-format
-msgid "Initial tests"
-msgstr ""
-
-#: standalone/drakfont:748
-#, fuzzy, c-format
-msgid "Copy fonts on your system"
-msgstr "Via komputilo ne havas retadaptilon!"
-
-#: standalone/drakfont:749
-#, c-format
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: standalone/drakfont:750
-#, fuzzy, c-format
-msgid "Post Install"
-msgstr "Instalu"
-
-#: standalone/drakfont:768
-#, fuzzy, c-format
-msgid "Remove fonts on your system"
-msgstr "Via komputilo ne havas retadaptilon!"
-
-#: standalone/drakfont:769
-#, fuzzy, c-format
-msgid "Post Uninstall"
-msgstr "Eliru instalprogramon"
-
-#: standalone/drakgw:50 standalone/drakvpn:51
-#, c-format
-msgid "Sorry, we support only 2.4 and above kernels."
-msgstr ""
-
-#: standalone/drakgw:75
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Disdividado de Interreta Konekto"
-
-#: standalone/drakgw:79
-#, fuzzy, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Nun kiam via Interreta konekto estas konfigurata,\n"
-"vi povas konfiguri vian komputilon por disdividi ĝian Interretan konekton.\n"
-"Notu: vi bezonas dediĉan Retadaptilon por konfiguri Lokan Reton (LAN).\n"
-"\n"
-"Ĉu vi deziras konfiguri Disdividadon de Interreta Konekto?\n"
-
-#: standalone/drakgw:95
-#, fuzzy, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-
-#: standalone/drakgw:99
-#, fuzzy, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-
-#: standalone/drakgw:105
-#, fuzzy, c-format
-msgid "Reconfigure"
-msgstr "rekonfiguru"
-
-#: standalone/drakgw:145
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Ekzitas nur unu konfigurita retadaptilo sur via sistemo:\n"
-"\n"
-"%s\n"
-"\n"
-"Ĉu vi deziras konfiguri vian Lokan Reton (LAN) kun ĉi tiu adaptilo?"
-
-#: standalone/drakgw:156
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Bonvole elektu kiun retadaptilon estos konektata al via Loka Reto (LAN)."
-
-#: standalone/drakgw:177
-#, fuzzy, c-format
-msgid "Local Area Network settings"
-msgstr "neniu retkarto trovita"
-
-#: standalone/drakgw:180
-#, c-format
-msgid "Local IP address"
-msgstr ""
-
-#: standalone/drakgw:182
-#, fuzzy, c-format
-msgid "The internal domain name"
-msgstr "Neniu printilo"
-
-#: standalone/drakgw:188
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Ebla konflikto pri Loka-Reta adreso trovata en nuna konfiguro de %s!\n"
-
-#: standalone/drakgw:204
-#, fuzzy, c-format
-msgid "Domain Name Server (DNS) configuration"
-msgstr "Interreta Konfigurado"
-
-#: standalone/drakgw:208
-#, c-format
-msgid "Use this gateway as domain name server"
-msgstr ""
-
-#: standalone/drakgw:209
-#, fuzzy, c-format
-msgid "The DNS Server IP"
-msgstr "IP de SMB servilo"
-
-#: standalone/drakgw:236
-#, c-format
-msgid ""
-"DHCP Server Configuration.\n"
-"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you do not know the meaning of an option, simply leave it as it is."
-msgstr ""
-
-#: standalone/drakgw:243
-#, fuzzy, c-format
-msgid "Use automatic configuration (DHCP)"
-msgstr "Post-instala konfigurado"
-
-#: standalone/drakgw:244
-#, c-format
-msgid "The DHCP start range"
-msgstr ""
-
-#: standalone/drakgw:245
-#, c-format
-msgid "The DHCP end range"
-msgstr ""
-
-#: standalone/drakgw:246
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr ""
-
-#: standalone/drakgw:247
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr ""
-
-#: standalone/drakgw:270
-#, c-format
-msgid "Proxy caching server (SQUID)"
-msgstr ""
-
-#: standalone/drakgw:274
-#, c-format
-msgid "Use this gateway as proxy caching server"
-msgstr ""
-
-#: standalone/drakgw:275
-#, c-format
-msgid "Admin mail"
-msgstr ""
-
-#: standalone/drakgw:276
-#, fuzzy, c-format
-msgid "Visible hostname"
-msgstr "Malproksima poŝtejo"
-
-#: standalone/drakgw:277
-#, fuzzy, c-format
-msgid "Proxy port"
-msgstr "Ero"
-
-#: standalone/drakgw:278
-#, fuzzy, c-format
-msgid "Cache size (MB)"
-msgstr "grandeco de pecoj"
-
-#: standalone/drakgw:300
-#, fuzzy, c-format
-msgid "Broadcast printer information"
-msgstr "Informoj pri fiksdisko(j)"
-
-#: standalone/drakgw:317
-#, fuzzy, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-
-#: standalone/drakgw:323
-#, fuzzy, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-
-#: standalone/drakgw:329
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP) and\n"
-" a Transparent Proxy Cache server (SQUID)."
-msgstr ""
-
-#: standalone/drakgw:363
-#, fuzzy, c-format
-msgid "Disabling servers..."
-msgstr "Detektas aparatojn..."
-
-#: standalone/drakgw:377
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Konfiguraĵo de barilo detektata!"
-
-#: standalone/drakgw:378
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-"Averto. Ekzistanta konfiguraĵo de barilo detektata. Vi eble devas permane\n"
-"fiksi ĝin poste de la instalado."
-
-#: standalone/drakgw:383
-#, c-format
-msgid "Configuring..."
-msgstr "Mi konfiguras..."
-
-#: standalone/drakgw:384
-#, c-format
-msgid "Configuring firewall..."
-msgstr ""
-
-#: standalone/drakhelp:17
-#, c-format
-msgid ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003-2005 Mandriva.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"\n"
-"Usage: \n"
-msgstr ""
-
-#: standalone/drakhelp:22
-#, c-format
-msgid " --help - display this help \n"
-msgstr ""
-
-#: standalone/drakhelp:23
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr ""
-
-#: standalone/drakhelp:24
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-
-#: standalone/drakhelp:51
-#, fuzzy, c-format
-msgid "Mandriva Linux Help Center"
-msgstr "Irigilo por la Mandrajka helpo"
-
-#: standalone/drakhelp:51
-#, c-format
-msgid "No Help entry for %s\n"
-msgstr ""
-
-#: standalone/drakhosts:98
-#, c-format
-msgid "Please add an host to be able to modify it."
-msgstr ""
-
-#: standalone/drakhosts:108
-#, fuzzy, c-format
-msgid "Please modify information"
-msgstr "Detala informo"
-
-#: standalone/drakhosts:109
-#, fuzzy, c-format
-msgid "Please delete information"
-msgstr "Detala informo"
-
-#: standalone/drakhosts:110
-#, fuzzy, c-format
-msgid "Please add information"
-msgstr "Detala informo"
-
-#: standalone/drakhosts:115
-#, c-format
-msgid "IP address:"
-msgstr "IP-adreso :"
-
-#: standalone/drakhosts:116
-#, c-format
-msgid "Host name:"
-msgstr "Poŝtejo :"
-
-#: standalone/drakhosts:117
-#, c-format
-msgid "Host Aliases:"
-msgstr ""
-
-#: standalone/drakhosts:123
-#, c-format
-msgid "Please enter a valid IP address."
-msgstr ""
-
-#: standalone/drakhosts:129
-#, c-format
-msgid "Same IP is already in %s file."
-msgstr ""
-
-#: standalone/drakhosts:197
-#, c-format
-msgid "Host Aliases"
-msgstr ""
-
-#: standalone/drakhosts:237
-#, c-format
-msgid "DrakHOSTS manage hosts definitions"
-msgstr ""
-
-#: standalone/drakhosts:246
-#, c-format
-msgid "Failed to add host."
-msgstr ""
-
-#: standalone/drakhosts:253
-#, c-format
-msgid "Failed to Modify host."
-msgstr ""
-
-#: standalone/drakhosts:260
-#, c-format
-msgid "Failed to remove host."
-msgstr ""
-
-#: standalone/drakids:26
-#, fuzzy, c-format
-msgid "Allowed addresses"
-msgstr "Permesu ĉiujn uzulojn"
-
-#: standalone/drakids:57
-#, c-format
-msgid "Log"
-msgstr "Protokolo"
-
-#: standalone/drakids:61
-#, fuzzy, c-format
-msgid "Clear logs"
-msgstr "Forviŝu ĉion"
-
-#: standalone/drakids:62 standalone/drakids:67 standalone/net_applet:470
-#, c-format
-msgid "Blacklist"
-msgstr ""
-
-#: standalone/drakids:63 standalone/drakids:80 standalone/net_applet:475
-#, c-format
-msgid "Whitelist"
-msgstr ""
-
-#: standalone/drakids:71
-#, fuzzy, c-format
-msgid "Remove from blacklist"
-msgstr "Forigu de LVM (Redundanca Aro de Malmultekostaj Diskoj)"
-
-#: standalone/drakids:72
-#, c-format
-msgid "Move to whitelist"
-msgstr ""
-
-#: standalone/drakids:84
-#, fuzzy, c-format
-msgid "Remove from whitelist"
-msgstr "Forigu de LVM (Redundanca Aro de Malmultekostaj Diskoj)"
-
-#: standalone/drakids:136 standalone/drakids:145 standalone/drakids:170
-#: standalone/drakids:179 standalone/drakids:189 standalone/drakids:265
-#: standalone/drakroam:182 standalone/net_applet:202 standalone/net_applet:385
-#, fuzzy, c-format
-msgid "Unable to contact daemon"
-msgstr "Ne povis kontakti spegulon %s"
-
-#: standalone/drakids:202
-#, c-format
-msgid "Date"
-msgstr "Dato"
-
-#: standalone/drakids:203
-#, fuzzy, c-format
-msgid "Attacker"
-msgstr "Neniaj detaloj"
-
-#: standalone/drakids:204
+#: timezone.pm:186
#, fuzzy, c-format
-msgid "Attack type"
-msgstr "Speco: "
-
-#: standalone/drakids:205
-#, c-format
-msgid "Service"
-msgstr "Servo"
-
-#: standalone/drakids:206 standalone/net_applet:72
-#, c-format
-msgid "Network interface"
-msgstr "Reta interfaco"
-
-#: standalone/draknfs:41
-#, c-format
-msgid "map root user as anonymous"
-msgstr ""
-
-#: standalone/draknfs:42
-#, c-format
-msgid "map all users to anonymous user"
-msgstr ""
-
-#: standalone/draknfs:43
-#, c-format
-msgid "No user UID mapping"
-msgstr ""
-
-#: standalone/draknfs:44
-#, c-format
-msgid "allow real remote root access"
-msgstr ""
-
-#: standalone/draknfs:83
-#, c-format
-msgid "NFS server"
-msgstr "NFS-servilo"
-
-#: standalone/draknfs:83
-#, c-format
-msgid "Restarting/Reloading NFS server..."
-msgstr ""
-
-#: standalone/draknfs:84
-#, c-format
-msgid "Error Restarting/Reloading NFS server"
-msgstr ""
-
-#: standalone/draknfs:100 standalone/draksambashare:203
-#, c-format
-msgid "Directory Selection"
-msgstr ""
-
-#: standalone/draknfs:105 standalone/draksambashare:208
-#, c-format
-msgid "Should be a directory."
-msgstr ""
-
-#: standalone/draknfs:136
-#, c-format
-msgid ""
-"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
-"ways:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">single host:</span> a host either by an "
-"abbreviated name recognized be the resolver, fully qualified domain name, or "
-"an IP address\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">netgroups:</span> NIS netgroups may be given "
-"as @group.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">wildcards:</span> machine names may contain "
-"the wildcard characters * and ?. For instance: *.cs.foo.edu matches all "
-"hosts in the domain cs.foo.edu.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">IP networks:</span> you can also export "
-"directories to all hosts on an IP (sub-)network simultaneously. for example, "
-"either `/255.255.252.0' or `/22' appended to the network base address "
-"result.\n"
-msgstr ""
-
-#: standalone/draknfs:151
-#, c-format
-msgid ""
-"<span weight=\"bold\">User ID options</span>\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map root user as anonymous:</span> map "
-"requests from uid/gid 0 to the anonymous uid/gid (root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">allow real remote root access:</span> turn "
-"off root squashing. This option is mainly useful for diskless clients "
-"(no_root_squash).\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">map all users to anonymous user:</span> map "
-"all uids and gids to the anonymous user (all_squash). Useful for NFS-"
-"exported public FTP directories, news spool directories, etc. The opposite "
-"option is no user UID mapping (no_all_squash), which is the default "
-"setting.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">anonuid and anongid:</span> explicitly set "
-"the uid and gid of the anonymous account.\n"
-msgstr ""
-
-#: standalone/draknfs:167
-#, c-format
-msgid "Synchronous access:"
-msgstr ""
-
-#: standalone/draknfs:168
-#, c-format
-msgid "Secured Connection:"
-msgstr ""
-
-#: standalone/draknfs:169
-#, c-format
-msgid "Read-Only share:"
-msgstr ""
-
-#: standalone/draknfs:171
-#, c-format
-msgid "<span weight=\"bold\">Advanced Options</span>"
-msgstr ""
-
-#: standalone/draknfs:172
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> this option requires that "
-"requests originate on an internet port less than IPPORT_RESERVED (1024). "
-"This option is on by default."
-msgstr ""
-
-#: standalone/draknfs:173
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> allow either only read or both "
-"read and write requests on this NFS volume. The default is to disallow any "
-"request which changes the filesystem. This can also be made explicit by "
-"using this option."
-msgstr ""
-
-#: standalone/draknfs:174
-#, c-format
-msgid ""
-"<span foreground=\"royalblue3\">%s:</span> disallows the NFS server to "
-"violate the NFS protocol and to reply to requests before any changes made by "
-"these requests have been committed to stable storage (e.g. disc drive)."
-msgstr ""
-
-#: standalone/draknfs:306
-#, c-format
-msgid "Please add an NFS share to be able to modify it."
-msgstr ""
-
-#: standalone/draknfs:378
-#, fuzzy, c-format
-msgid "Advanced Options Help"
-msgstr "LAN Konfiguraĵo"
-
-#: standalone/draknfs:389
-#, c-format
-msgid "NFS directory"
-msgstr ""
-
-#: standalone/draknfs:391 standalone/draksambashare:592
-#: standalone/draksambashare:771
-#, c-format
-msgid "Directory:"
-msgstr "Dosierujo:"
-
-#: standalone/draknfs:394
-#, c-format
-msgid "Host access"
-msgstr ""
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Access:"
-msgstr "Aliro:"
-
-#: standalone/draknfs:396
-#, c-format
-msgid "Hosts Access"
-msgstr ""
-
-#: standalone/draknfs:399
-#, c-format
-msgid "User ID Mapping"
-msgstr ""
-
-#: standalone/draknfs:401
-#, c-format
-msgid "User ID:"
-msgstr "Uzantnumero:"
-
-#: standalone/draknfs:401
-#, c-format
-msgid "Help User ID"
-msgstr ""
-
-#: standalone/draknfs:402
-#, c-format
-msgid "Anonymous user ID:"
-msgstr ""
-
-#: standalone/draknfs:403
-#, c-format
-msgid "Anonymous Group ID:"
-msgstr ""
-
-#: standalone/draknfs:444
-#, c-format
-msgid "Can't create this directory."
-msgstr ""
-
-#: standalone/draknfs:447
-#, c-format
-msgid "You must specify hosts access."
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Share Directory"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Hosts Wildcard"
-msgstr ""
-
-#: standalone/draknfs:527
-#, c-format
-msgid "General Options"
-msgstr "Ĝeneralaj opcioj"
-
-#: standalone/draknfs:527
-#, c-format
-msgid "Custom Options"
-msgstr ""
-
-#: standalone/draknfs:539 standalone/draksambashare:629
-#: standalone/draksambashare:796
-#, c-format
-msgid "Please enter a directory to share."
-msgstr ""
-
-#: standalone/draknfs:546
-#, c-format
-msgid "Please use the modify button to set right access."
-msgstr ""
-
-#: standalone/draknfs:600
-#, c-format
-msgid "DrakNFS manage NFS shares"
-msgstr ""
-
-#: standalone/draknfs:609
-#, c-format
-msgid "Failed to add NFS share."
-msgstr ""
-
-#: standalone/draknfs:616
-#, c-format
-msgid "Failed to Modify NFS share."
-msgstr ""
-
-#: standalone/draknfs:623
-#, c-format
-msgid "Failed to remove an NFS share."
-msgstr ""
-
-#: standalone/drakperm:21
-#, fuzzy, c-format
-msgid "System settings"
-msgstr "subdiskigo"
-
-#: standalone/drakperm:22
-#, fuzzy, c-format
-msgid "Custom settings"
-msgstr "subdiskigo"
-
-#: standalone/drakperm:23
-#, fuzzy, c-format
-msgid "Custom & system settings"
-msgstr "subdiskigo"
-
-#: standalone/drakperm:43
-#, c-format
-msgid "Editable"
-msgstr "Redaktebla"
-
-#: standalone/drakperm:48 standalone/drakperm:323
-#: standalone/draksambashare:101
-#, c-format
-msgid "Path"
-msgstr "Pado"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "User"
-msgstr "Uzulo"
-
-#: standalone/drakperm:48 standalone/drakperm:250
-#, c-format
-msgid "Group"
-msgstr "Grupo"
-
-#: standalone/drakperm:48 standalone/drakperm:335
-#, c-format
-msgid "Permissions"
-msgstr "Permesoj"
-
-#: standalone/drakperm:57
-#, c-format
-msgid "Add a new rule"
-msgstr ""
-
-#: standalone/drakperm:64 standalone/drakperm:99 standalone/drakperm:124
-#, c-format
-msgid "Edit current rule"
-msgstr ""
-
-#: standalone/drakperm:106
-#, c-format
-msgid ""
-"Here you can see files to use in order to fix permissions, owners, and "
-"groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
-msgstr ""
-
-#: standalone/drakperm:109
-#, c-format
-msgid ""
-"The current security level is %s.\n"
-"Select permissions to see/edit"
-msgstr ""
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Up"
-msgstr "Aktiva"
-
-#: standalone/drakperm:120
-#, c-format
-msgid "Move selected rule up one level"
-msgstr ""
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Down"
-msgstr "Malaktiva"
-
-#: standalone/drakperm:121
-#, c-format
-msgid "Move selected rule down one level"
-msgstr ""
-
-#: standalone/drakperm:122
-#, fuzzy, c-format
-msgid "Add a rule"
-msgstr "Aldonu modulon"
-
-#: standalone/drakperm:122
-#, fuzzy, c-format
-msgid "Add a new rule at the end"
-msgstr "Neniu printilo"
-
-#: standalone/drakperm:123
-#, fuzzy, c-format
-msgid "Delete selected rule"
-msgstr "Malinstalu printvicon"
-
-#: standalone/drakperm:242
-#, c-format
-msgid "browse"
-msgstr ""
-
-#: standalone/drakperm:247
-#, fuzzy, c-format
-msgid "user"
-msgstr "Muso"
-
-#: standalone/drakperm:247
-#, c-format
-msgid "group"
-msgstr "grupo"
-
-#: standalone/drakperm:247
-#, fuzzy, c-format
-msgid "other"
-msgstr "Alia"
-
-#: standalone/drakperm:252
-#, c-format
-msgid "Read"
-msgstr "Lego"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:255
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr ""
-
-#: standalone/drakperm:259
-#, c-format
-msgid "Write"
-msgstr "Skribo"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:262
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr ""
-
-#: standalone/drakperm:266
-#, c-format
-msgid "Execute"
-msgstr "Faru"
-
-#. -PO: here %s will be either "user", "group" or "other"
-#: standalone/drakperm:269
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr ""
-
-#: standalone/drakperm:272
-#, c-format
-msgid "Sticky-bit"
-msgstr ""
-
-#: standalone/drakperm:272
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Set-UID"
-msgstr ""
-
-#: standalone/drakperm:273
-#, c-format
-msgid "Use owner id for execution"
-msgstr ""
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Set-GID"
-msgstr ""
-
-#: standalone/drakperm:274
-#, c-format
-msgid "Use group id for execution"
-msgstr ""
-
-#: standalone/drakperm:292 standalone/drakxtv:89
-#, c-format
-msgid "User:"
-msgstr "Uzulo:"
-
-#: standalone/drakperm:294
-#, c-format
-msgid "Group:"
-msgstr "Grupo:"
-
-#: standalone/drakperm:298
-#, fuzzy, c-format
-msgid "Current user"
-msgstr "Akceptu uzanto"
-
-#: standalone/drakperm:299
-#, c-format
-msgid "When checked, owner and group will not be changed"
-msgstr ""
-
-#: standalone/drakperm:309
-#, c-format
-msgid "Path selection"
-msgstr "Elekto de pado"
-
-#: standalone/drakperm:329
-#, c-format
-msgid "Property"
-msgstr "Ero"
-
-#: standalone/drakperm:380
-#, c-format
-msgid ""
-"The first character of the path must be a slash (\"/\"):\n"
-"\"%s\""
-msgstr ""
-
-#: standalone/drakperm:390
-#, c-format
-msgid "Both the username and the group must valid!"
-msgstr ""
-
-#: standalone/drakperm:391
-#, c-format
-msgid "User: %s"
-msgstr ""
-
-#: standalone/drakperm:392
-#, c-format
-msgid "Group: %s"
-msgstr ""
-
-#: standalone/drakroam:33
-#, c-format
-msgid ""
-"You do not have any wireless interface.\n"
-"Run the \"%s\" assistant from the Mandriva Linux Control Center"
-msgstr ""
-
-#: standalone/drakroam:48
-#, c-format
-msgid "SSID"
-msgstr ""
-
-#: standalone/drakroam:49
-#, c-format
-msgid "Signal strength"
-msgstr ""
-
-#: standalone/drakroam:51
-#, c-format
-msgid "Encryption"
-msgstr "Ĉifrado"
-
-#: standalone/drakroam:112
-#, c-format
-msgid "Please enter settings for wireless network \"%s\""
-msgstr ""
-
-#: standalone/drakroam:123
-#, c-format
-msgid "DNS server"
-msgstr ""
-
-#: standalone/drakroam:228
-#, c-format
-msgid "Connect"
-msgstr "Konektu"
-
-#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/drakroam:229 standalone/printerdrake:251
-#, c-format
-msgid "Refresh"
-msgstr "Rekalkulu"
-
-#: standalone/draksambashare:68
-#, fuzzy, c-format
-msgid "Share directory"
-msgstr "Ne estas dosierujo"
-
-#: standalone/draksambashare:69 standalone/draksambashare:102
-#, c-format
-msgid "Comment"
-msgstr "Komento"
-
-#: standalone/draksambashare:70 standalone/draksambashare:103
-#, fuzzy, c-format
-msgid "Browseable"
-msgstr "Foliumu"
-
-#: standalone/draksambashare:71
-#, c-format
-msgid "Public"
-msgstr "Publika"
-
-#: standalone/draksambashare:72 standalone/draksambashare:108
-#, fuzzy, c-format
-msgid "Writable"
-msgstr "Skribo"
-
-#: standalone/draksambashare:73 standalone/draksambashare:149
-#, fuzzy, c-format
-msgid "Create mask"
-msgstr "Kreu"
-
-#: standalone/draksambashare:74 standalone/draksambashare:150
-#, fuzzy, c-format
-msgid "Directory mask"
-msgstr "Restaŭru de disketo"
-
-#: standalone/draksambashare:75
-#, fuzzy, c-format
-msgid "Read list"
-msgstr "Lego"
-
-#: standalone/draksambashare:76 standalone/draksambashare:109
-#: standalone/draksambashare:606
-#, fuzzy, c-format
-msgid "Write list"
-msgstr "Skribo"
-
-#: standalone/draksambashare:77 standalone/draksambashare:141
-#, fuzzy, c-format
-msgid "Admin users"
-msgstr "Aldonu uzanto"
-
-#: standalone/draksambashare:78 standalone/draksambashare:142
-#, fuzzy, c-format
-msgid "Valid users"
-msgstr "Aldonu uzanto"
-
-#: standalone/draksambashare:79
-#, fuzzy, c-format
-msgid "Inherit Permissions"
-msgstr "Permesoj"
-
-#: standalone/draksambashare:80 standalone/draksambashare:143
-#, fuzzy, c-format
-msgid "Hide dot files"
-msgstr "Kaŝu dosierojn"
-
-#: standalone/draksambashare:82 standalone/draksambashare:148
-#, fuzzy, c-format
-msgid "Preserve case"
-msgstr "Preferoj"
-
-#: standalone/draksambashare:83
-#, fuzzy, c-format
-msgid "Force create mode"
-msgstr "Malproksima printilo"
-
-#: standalone/draksambashare:84
-#, fuzzy, c-format
-msgid "Force group"
-msgstr "Laborgrupo"
-
-#: standalone/draksambashare:85 standalone/draksambashare:147
-#, fuzzy, c-format
-msgid "Default case"
-msgstr "Loka printilo"
-
-#: standalone/draksambashare:100
-#, c-format
-msgid "Printer name"
-msgstr "Presilonomo:"
-
-#: standalone/draksambashare:104 standalone/draksambashare:598
-#, c-format
-msgid "Printable"
-msgstr ""
-
-#: standalone/draksambashare:105
-#, c-format
-msgid "Print Command"
-msgstr ""
-
-#: standalone/draksambashare:106
-#, c-format
-msgid "LPQ command"
-msgstr ""
-
-#: standalone/draksambashare:107
-#, c-format
-msgid "Guest ok"
-msgstr ""
-
-#: standalone/draksambashare:110 standalone/draksambashare:151
-#: standalone/draksambashare:607
-#, fuzzy, c-format
-msgid "Inherit permissions"
-msgstr "Permesoj"
-
-#: standalone/draksambashare:112
-#, c-format
-msgid "Create mode"
-msgstr ""
-
-#: standalone/draksambashare:113
-#, c-format
-msgid "Use client driver"
-msgstr ""
-
-#: standalone/draksambashare:139
-#, fuzzy, c-format
-msgid "Read List"
-msgstr "Forigu liston"
-
-#: standalone/draksambashare:140
-#, fuzzy, c-format
-msgid "Write List"
-msgstr "Skribo"
-
-#: standalone/draksambashare:145
-#, fuzzy, c-format
-msgid "Force Group"
-msgstr "Grupo"
-
-#: standalone/draksambashare:146
-#, c-format
-msgid "Force create group"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid "About Draksambashare"
-msgstr ""
-
-#: standalone/draksambashare:166
-#, c-format
-msgid ""
-"Mandriva Linux \n"
-"Release: %s\n"
-"Author: Antoine Ginies\n"
-"\n"
-"This is a simple tool to easily manage Samba configuration."
-msgstr ""
-
-#: standalone/draksambashare:186
-#, fuzzy, c-format
-msgid "Samba server"
-msgstr "NIS Servilo"
-
-#: standalone/draksambashare:186
-#, c-format
-msgid "Restarting/Reloading Samba server..."
-msgstr ""
-
-#: standalone/draksambashare:187
-#, c-format
-msgid "Error Restarting/Reloading Samba server"
-msgstr ""
-
-#: standalone/draksambashare:372
-#, fuzzy, c-format
-msgid "Add a Samba share"
-msgstr "NIS Servilo"
-
-#: standalone/draksambashare:375
-#, c-format
-msgid "Goal of this wizard is to easily create a new Samba share."
-msgstr ""
-
-#: standalone/draksambashare:377
-#, fuzzy, c-format
-msgid "Name of the share:"
-msgstr "Nomo de printilo"
-
-#: standalone/draksambashare:378 standalone/draksambashare:591
-#: standalone/draksambashare:772
-#, c-format
-msgid "Comment:"
-msgstr "Noto:"
-
-#: standalone/draksambashare:379
-#, c-format
-msgid "Path:"
-msgstr "Pado:"
-
-#: standalone/draksambashare:384
-#, c-format
-msgid ""
-"Share with the same name already exist or share name empty, please choose "
-"another name."
-msgstr ""
-
-#: standalone/draksambashare:388 standalone/draksambashare:394
-#, c-format
-msgid "Can't create the directory, please enter a correct path."
-msgstr ""
-
-#: standalone/draksambashare:391 standalone/draksambashare:627
-#: standalone/draksambashare:794
-#, fuzzy, c-format
-msgid "Please enter a Comment for this share."
-msgstr "Bonvole donu salutnomon"
-
-#: standalone/draksambashare:422
-#, c-format
-msgid ""
-"The wizard successfully added the Samba share. Now just double click on it "
-"in treeview to modify it"
-msgstr ""
-
-#: standalone/draksambashare:437
-#, c-format
-msgid "pdf-gen - a PDF generator"
-msgstr ""
-
-#: standalone/draksambashare:438
-#, c-format
-msgid "printers - all printers available"
-msgstr ""
-
-#: standalone/draksambashare:442
-#, c-format
-msgid "Add Special Printer share"
-msgstr ""
-
-#: standalone/draksambashare:445
-#, c-format
-msgid ""
-"Goal of this wizard is to easily create a new special printer Samba share."
-msgstr ""
-
-#: standalone/draksambashare:453
-#, c-format
-msgid "A PDF generator already exists."
-msgstr ""
-
-#: standalone/draksambashare:477
-#, c-format
-msgid "Printers and print$ already exist."
-msgstr ""
-
-#: standalone/draksambashare:528
-#, c-format
-msgid "The wizard successfully added the printer Samba share"
-msgstr ""
-
-#: standalone/draksambashare:551
-#, c-format
-msgid "Please add or select a Samba printer share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:587
-#, c-format
-msgid "Printer share"
-msgstr ""
-
-#: standalone/draksambashare:590
-#, c-format
-msgid "Printer name:"
-msgstr "Presilonomo:"
-
-#: standalone/draksambashare:596 standalone/draksambashare:777
-#, fuzzy, c-format
-msgid "Writable:"
-msgstr "Skribo"
-
-#: standalone/draksambashare:597 standalone/draksambashare:778
-#, fuzzy, c-format
-msgid "Browseable:"
-msgstr "Foliumu"
-
-#: standalone/draksambashare:602
-#, c-format
-msgid "Advanced options"
-msgstr ""
-
-#: standalone/draksambashare:604
-#, c-format
-msgid "Printer access"
-msgstr ""
-
-#: standalone/draksambashare:608
-#, c-format
-msgid "Guest ok:"
-msgstr ""
-
-#: standalone/draksambashare:609
-#, c-format
-msgid "Create mode:"
-msgstr ""
-
-#: standalone/draksambashare:613
-#, c-format
-msgid "Printer command"
-msgstr ""
-
-#: standalone/draksambashare:615
-#, c-format
-msgid "Print command:"
-msgstr "Pres-komando:"
-
-#: standalone/draksambashare:616
-#, c-format
-msgid "LPQ command:"
-msgstr ""
-
-#: standalone/draksambashare:617
-#, c-format
-msgid "Printing:"
-msgstr "Presante :"
-
-#: standalone/draksambashare:633
-#, c-format
-msgid "create mode should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:695
-#, c-format
-msgid "DrakSamba entry"
-msgstr ""
-
-#: standalone/draksambashare:700
-#, c-format
-msgid "Please add or select a Samba share to be able to modify it."
-msgstr ""
-
-#: standalone/draksambashare:723
-#, fuzzy, c-format
-msgid "Samba user access"
-msgstr "NIS Servilo"
-
-#: standalone/draksambashare:731
-#, fuzzy, c-format
-msgid "Mask options"
-msgstr "Opcioj"
-
-#: standalone/draksambashare:745
-#, fuzzy, c-format
-msgid "Display options"
-msgstr "Specifu opciojn"
-
-#: standalone/draksambashare:767
-#, fuzzy, c-format
-msgid "Samba share directory"
-msgstr "Ne estas dosierujo"
-
-#: standalone/draksambashare:770
-#, c-format
-msgid "Share name:"
-msgstr "Opuza nomo :"
-
-#: standalone/draksambashare:776
-#, c-format
-msgid "Public:"
-msgstr "Publika :"
-
-#: standalone/draksambashare:800
-#, c-format
-msgid ""
-"Create mask, create mode and directory mask should be numeric. ie: 0755."
-msgstr ""
-
-#: standalone/draksambashare:807
-#, c-format
-msgid "Please create this Samba user: %s"
-msgstr ""
-
-#: standalone/draksambashare:930
-#, c-format
-msgid "User information"
-msgstr ""
-
-#: standalone/draksambashare:932
-#, c-format
-msgid "User name:"
-msgstr "Salutnomo :"
-
-#: standalone/draksambashare:933
-#, c-format
-msgid "Password:"
-msgstr "Pasvorto:"
-
-#: standalone/draksambashare:1133
-#, c-format
-msgid "Failed to add Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1142
-#, c-format
-msgid "Failed to Modify Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1151
-#, c-format
-msgid "Failed to remove a Samba share."
-msgstr ""
-
-#: standalone/draksambashare:1158
-#, c-format
-msgid "File share"
-msgstr ""
-
-#: standalone/draksambashare:1166
-#, c-format
-msgid "Add printers"
-msgstr ""
-
-#: standalone/draksambashare:1172
-#, c-format
-msgid "Failed to add printers."
-msgstr ""
-
-#: standalone/draksambashare:1181
-#, c-format
-msgid "Failed to Modify."
-msgstr ""
-
-#: standalone/draksambashare:1190
-#, c-format
-msgid "Failed to remove."
-msgstr ""
-
-#: standalone/draksambashare:1197
-#, c-format
-msgid "Printers"
-msgstr "Presiloj"
-
-#: standalone/draksambashare:1205
-#, c-format
-msgid "Change password"
-msgstr ""
-
-#: standalone/draksambashare:1210
-#, c-format
-msgid "Failed to change user password."
-msgstr ""
-
-#: standalone/draksambashare:1218
-#, c-format
-msgid "Failed to add user."
-msgstr ""
-
-#: standalone/draksambashare:1221
-#, c-format
-msgid "Delete user"
-msgstr ""
-
-#: standalone/draksambashare:1230
-#, c-format
-msgid "Failed to delete user."
-msgstr ""
-
-#: standalone/draksambashare:1242
-#, c-format
-msgid "Samba Users"
-msgstr ""
-
-#: standalone/draksambashare:1251
-#, c-format
-msgid "DrakSamba manage Samba shares"
-msgstr ""
-
-#: standalone/draksec:49
-#, c-format
-msgid "ALL"
-msgstr ""
-
-#: standalone/draksec:50
-#, c-format
-msgid "LOCAL"
-msgstr ""
-
-#: standalone/draksec:51
-#, c-format
-msgid "NONE"
-msgstr ""
-
-#: standalone/draksec:53 standalone/net_applet:480
-#, c-format
-msgid "Ignore"
-msgstr "Ignoru"
-
-#. -PO: Do not alter the <span ..> and </span> tags.
-#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
-#: standalone/draksec:103
-#, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Administrator</span>' is the one who "
-"will receive security alerts if the\n"
-"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a "
-"username or an email.\n"
-"\n"
-"\n"
-"The '<span weight=\"bold\">Security Level</span>' menu allows you to select "
-"one of the six preconfigured security levels\n"
-"provided with msec. These levels range from '<span weight=\"bold\">poor</"
-"span>' security and ease of use, to\n"
-"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive "
-"server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
-"very\n"
-"easy to use security level. It should only be used for machines not "
-"connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
-"security\n"
-"recommended for a computer that will be used to connect to the Internet as "
-"a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
-"enough\n"
-"to use the system as a server which can accept connections from many "
-"clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower "
-"level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-
-#: standalone/draksec:156 standalone/harddrake2:207
-#, c-format
-msgid ""
-"Description of the fields:\n"
-"\n"
-msgstr ""
-
-#: standalone/draksec:170
-#, fuzzy, c-format
-msgid "(default value: %s)"
-msgstr " (Defaŭlta)"
-
-#: standalone/draksec:212
-#, fuzzy, c-format
-msgid "Security Level:"
-msgstr "Elektas sekurnivelon"
-
-#: standalone/draksec:219
-#, fuzzy, c-format
-msgid "Security Administrator:"
-msgstr "Malproksimaj lpd Printilaj Opcioj"
-
-#: standalone/draksec:221
-#, fuzzy, c-format
-msgid "Basic options"
-msgstr "Opcioj"
-
-#: standalone/draksec:235
-#, fuzzy, c-format
-msgid "Network Options"
-msgstr "Modulaj opcioj:"
-
-#: standalone/draksec:235
-#, fuzzy, c-format
-msgid "System Options"
-msgstr "Modulaj opcioj:"
-
-#: standalone/draksec:270
-#, c-format
-msgid "Periodic Checks"
-msgstr ""
-
-#: standalone/draksec:300
-#, fuzzy, c-format
-msgid "Please wait, setting security level..."
-msgstr "Elektas sekurnivelon"
-
-#: standalone/draksec:306
-#, fuzzy, c-format
-msgid "Please wait, setting security options..."
-msgstr "Preparas instaladon"
-
-#: standalone/draksound:47
-#, fuzzy, c-format
-msgid "No Sound Card detected!"
-msgstr "Ne konektita"
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/draksound:50
-#, c-format
-msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-
-#: standalone/draksound:57
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or "
-"the sndconfig program. Just type \"alsaconf\" or \"sndconfig\" in a console."
-msgstr ""
-
-#: standalone/draksplash:30
-#, c-format
-msgid "x coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:31
-#, c-format
-msgid "y coordinate of text box"
-msgstr ""
-
-#: standalone/draksplash:32
-#, c-format
-msgid "text box width"
-msgstr ""
-
-#: standalone/draksplash:33
-#, c-format
-msgid "text box height"
-msgstr ""
-
-#: standalone/draksplash:34
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-
-#: standalone/draksplash:35
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-
-#: standalone/draksplash:36
-#, c-format
-msgid "the width of the progress bar"
-msgstr ""
-
-#: standalone/draksplash:37
-#, c-format
-msgid "the height of the progress bar"
-msgstr ""
-
-#: standalone/draksplash:38
-#, c-format
-msgid "x coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:39
-#, c-format
-msgid "y coordinate of the text"
-msgstr ""
-
-#: standalone/draksplash:40
-#, c-format
-msgid "text box transparency"
-msgstr ""
-
-#: standalone/draksplash:41
-#, c-format
-msgid "progress box transparency"
-msgstr ""
-
-#: standalone/draksplash:42
-#, c-format
-msgid "text size"
-msgstr ""
-
-#: standalone/draksplash:59
-#, c-format
-msgid "Choose progress bar color 1"
-msgstr ""
-
-#: standalone/draksplash:60
-#, c-format
-msgid "Choose progress bar color 2"
-msgstr ""
-
-#: standalone/draksplash:61
-#, c-format
-msgid "Choose progress bar background"
-msgstr ""
-
-#: standalone/draksplash:62
-#, c-format
-msgid "Gradient type"
-msgstr ""
-
-#: standalone/draksplash:63
-#, c-format
-msgid "Choose text color"
-msgstr ""
-
-#: standalone/draksplash:65 standalone/draksplash:72
-#, c-format
-msgid "Choose picture"
-msgstr ""
-
-#: standalone/draksplash:66
-#, c-format
-msgid "Silent bootsplash"
-msgstr ""
-
-#: standalone/draksplash:69
-#, c-format
-msgid "Choose text zone color"
-msgstr ""
-
-#: standalone/draksplash:70
-#, c-format
-msgid "Text color"
-msgstr "Tekstkoloro"
-
-#: standalone/draksplash:71
-#, c-format
-msgid "Background color"
-msgstr "Fonkoloro"
-
-#: standalone/draksplash:73
-#, c-format
-msgid "Verbose bootsplash"
-msgstr ""
-
-#: standalone/draksplash:75
-#, c-format
-msgid "Display logo on Console"
-msgstr ""
-
-#: standalone/draksplash:78
-#, c-format
-msgid "Console bootsplash"
-msgstr ""
-
-#: standalone/draksplash:84
-#, fuzzy, c-format
-msgid "Theme name"
-msgstr "Opuza nomo"
-
-#: standalone/draksplash:87
-#, fuzzy, c-format
-msgid "final resolution"
-msgstr "Distingivo"
-
-#: standalone/draksplash:92
-#, fuzzy, c-format
-msgid "Save theme"
-msgstr "Instalu sistemon"
-
-#: standalone/draksplash:153
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr ""
-
-#: standalone/draksplash:162
-#, c-format
-msgid "Unable to load image file %s"
-msgstr ""
-
-#: standalone/draksplash:173
-#, fuzzy, c-format
-msgid "choose image"
-msgstr "Elektu agon"
-
-#: standalone/draksplash:188
-#, c-format
-msgid "Color selection"
-msgstr ""
-
-#: standalone/drakups:71
-#, c-format
-msgid "Connected through a serial port or an usb cable"
-msgstr ""
-
-#: standalone/drakups:78
-#, fuzzy, c-format
-msgid "Add an UPS device"
-msgstr "Aldonu uzulon"
-
-#: standalone/drakups:81
-#, c-format
-msgid ""
-"Welcome to the UPS configuration utility.\n"
-"\n"
-"Here, you'll add a new UPS to your system.\n"
-msgstr ""
-
-#: standalone/drakups:88
-#, c-format
-msgid ""
-"We're going to add an UPS device.\n"
-"\n"
-"Do you want to autodetect UPS devices connected to this machine or to "
-"manually select them?"
-msgstr ""
-
-#: standalone/drakups:91
-#, fuzzy, c-format
-msgid "Autodetection"
-msgstr "Memdetekta"
-
-#: standalone/drakups:99 standalone/harddrake2:375
-#, fuzzy, c-format
-msgid "Detection in progress"
-msgstr "Duobla surmetingo %s"
-
-#: standalone/drakups:119
-#, c-format
-msgid "The wizard successfully added the following UPS devices:"
-msgstr ""
-
-#: standalone/drakups:121
-#, fuzzy, c-format
-msgid "No new UPS devices was found"
-msgstr "Loka printilo"
-
-#: standalone/drakups:126 standalone/drakups:138
-#, fuzzy, c-format
-msgid "UPS driver configuration"
-msgstr "Interreta Konfigurado"
-
-#: standalone/drakups:126
-#, fuzzy, c-format
-msgid "Please select your UPS model."
-msgstr "Bonvole, provu la muson"
-
-#: standalone/drakups:127
-#, c-format
-msgid "Manufacturer / Model:"
-msgstr ""
-
-#: standalone/drakups:138
-#, c-format
-msgid ""
-"We are configuring the \"%s\" UPS from \"%s\".\n"
-"Please fill in its name, its driver and its port."
-msgstr ""
-
-#: standalone/drakups:143
-#, c-format
-msgid "Name:"
-msgstr "Nomo:"
-
-#: standalone/drakups:143
-#, c-format
-msgid "The name of your ups"
-msgstr ""
-
-#: standalone/drakups:144
-#, c-format
-msgid "The driver that manages your ups"
-msgstr ""
-
-#: standalone/drakups:145
-#, c-format
-msgid "Port:"
-msgstr "Pordo:"
-
-#: standalone/drakups:147
-#, fuzzy, c-format
-msgid "The port on which is connected your ups"
-msgstr "Bonvole, elektu al kiu seria pordo estas via muso konektata."
-
-#: standalone/drakups:157
-#, c-format
-msgid "The wizard successfully configured the new \"%s\" UPS device."
-msgstr ""
-
-#: standalone/drakups:248
-#, fuzzy, c-format
-msgid "UPS devices"
-msgstr "Servoj"
-
-#: standalone/drakups:249 standalone/drakups:268 standalone/drakups:284
-#: standalone/harddrake2:85 standalone/harddrake2:111
-#: standalone/harddrake2:118
-#, c-format
-msgid "Name"
-msgstr "Nomo"
-
-#: standalone/drakups:267
-#, fuzzy, c-format
-msgid "UPS users"
-msgstr "Salutnomo"
-
-#: standalone/drakups:283
-#, fuzzy, c-format
-msgid "Access Control Lists"
-msgstr "aliro al retiloj"
-
-#: standalone/drakups:284
-#, c-format
-msgid "IP mask"
-msgstr ""
-
-#: standalone/drakups:296
-#, fuzzy, c-format
-msgid "Rules"
-msgstr "Malakceptu"
-
-#: standalone/drakups:297
-#, c-format
-msgid "Action"
-msgstr "Ago"
-
-#: standalone/drakups:297 standalone/drakvpn:1132 standalone/harddrake2:82
-#, c-format
-msgid "Level"
-msgstr "Nivelo"
-
-#: standalone/drakups:297
-#, fuzzy, c-format
-msgid "ACL name"
-msgstr "LVM-nomo?"
-
-#: standalone/drakups:327 standalone/drakups:331 standalone/drakups:340
-#, fuzzy, c-format
-msgid "DrakUPS"
-msgstr "Dvorak-a (US)"
-
-#: standalone/drakups:337
-#, fuzzy, c-format
-msgid "Welcome to the UPS configuration tools"
-msgstr "Provu konfiguraĵon"
-
-#: standalone/drakvpn:73
-#, fuzzy, c-format
-msgid "DrakVPN"
-msgstr "Dvorak-a (US)"
-
-#: standalone/drakvpn:95
-#, fuzzy, c-format
-msgid "The VPN connection is enabled."
-msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-
-#: standalone/drakvpn:96
-#, fuzzy, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-
-#: standalone/drakvpn:101
-#, c-format
-msgid "disable"
-msgstr "malebligu"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127
-#, c-format
-msgid "reconfigure"
-msgstr "rekonfiguru"
-
-#: standalone/drakvpn:101 standalone/drakvpn:127 standalone/drakvpn:362
-#: standalone/drakvpn:721
-#, c-format
-msgid "dismiss"
-msgstr "forsendu"
-
-#: standalone/drakvpn:105
-#, fuzzy, c-format
-msgid "Disabling VPN..."
-msgstr "Detektas aparatojn..."
-
-#: standalone/drakvpn:114
-#, fuzzy, c-format
-msgid "The VPN connection is now disabled."
-msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-
-#: standalone/drakvpn:121
-#, fuzzy, c-format
-msgid "VPN connection currently disabled"
-msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-
-#: standalone/drakvpn:122
-#, fuzzy, c-format
-msgid ""
-"The setup of a VPN connection has already been done.\n"
-"\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-
-#: standalone/drakvpn:127
-#, c-format
-msgid "enable"
-msgstr "ebligu"
-
-#: standalone/drakvpn:135
-#, fuzzy, c-format
-msgid "Enabling VPN..."
-msgstr "Instalanta pakaĵo %s"
-
-#: standalone/drakvpn:141
-#, fuzzy, c-format
-msgid "The VPN connection is now enabled."
-msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-
-#: standalone/drakvpn:155 standalone/drakvpn:183
-#, c-format
-msgid "Simple VPN setup."
-msgstr ""
-
-#: standalone/drakvpn:156
-#, c-format
-msgid ""
-"You are about to configure your computer to use a VPN connection.\n"
-"\n"
-"With this feature, computers on your local private network and computers\n"
-"on some other remote private networks, can share resources, through\n"
-"their respective firewalls, over the Internet, in a secure manner. \n"
-"\n"
-"The communication over the Internet is encrypted. The local and remote\n"
-"computers look as if they were on the same network.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using\n"
-"drakconnect before going any further."
-msgstr ""
-
-#: standalone/drakvpn:184
-#, c-format
-msgid ""
-"VPN connection.\n"
-"\n"
-"This program is based on the following projects:\n"
-" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
-" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
-" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
-" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
-" - the docs and man pages coming with the %s package\n"
-"\n"
-"Please read AT LEAST the ipsec-howto docs\n"
-"before going any further."
-msgstr ""
-
-#: standalone/drakvpn:196
-#, fuzzy, c-format
-msgid "Kernel module."
-msgstr "Forprenu modulon"
-
-#: standalone/drakvpn:197
-#, c-format
-msgid ""
-"The kernel needs to have ipsec support.\n"
-"\n"
-"You're running a %s kernel version.\n"
-"\n"
-"This kernel has '%s' support."
-msgstr ""
-
-#: standalone/drakvpn:264
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problemoj instalante pakaĵon %s"
-
-#: standalone/drakvpn:278
-#, fuzzy, c-format
-msgid "Security Policies"
-msgstr "Elektas sekurnivelon"
-
-#: standalone/drakvpn:278
-#, c-format
-msgid "IKE daemon racoon"
-msgstr ""
-
-#: standalone/drakvpn:281 standalone/drakvpn:292
-#, c-format
-msgid "Configuration file"
-msgstr "Agordodosiero:"
-
-#: standalone/drakvpn:282
-#, c-format
-msgid ""
-"Configuration step!\n"
-"\n"
-"You need to define the Security Policies and then to \n"
-"configure the automatic key exchange (IKE) daemon. \n"
-"The KAME IKE daemon we're using is called 'racoon'.\n"
-"\n"
-"What would you like to configure?\n"
-msgstr ""
-
-#: standalone/drakvpn:293
-#, c-format
-msgid ""
-"Next, we will configure the %s file.\n"
-"\n"
-"\n"
-"Simply click on Next.\n"
-msgstr ""
-
-#: standalone/drakvpn:311 standalone/drakvpn:671
-#, fuzzy, c-format
-msgid "%s entries"
-msgstr ", %s sektoroj"
-
-#: standalone/drakvpn:312
-#, c-format
-msgid ""
-"The %s file contents\n"
-"is divided into sections.\n"
-"\n"
-"You can now:\n"
-"\n"
-" - display, add, edit, or remove sections, then\n"
-" - commit the changes\n"
-"\n"
-"What would you like to do?\n"
-msgstr ""
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, fuzzy, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display"
-msgstr "Reludu"
-
-#: standalone/drakvpn:319 standalone/drakvpn:680
-#, fuzzy, c-format
-msgid "Commit"
-msgstr "kompakta"
-
-#: standalone/drakvpn:333 standalone/drakvpn:337 standalone/drakvpn:695
-#: standalone/drakvpn:699
-#, fuzzy, c-format
-msgid ""
-"_:display here is a verb\n"
-"Display configuration"
-msgstr "LAN Konfiguraĵo"
-
-#: standalone/drakvpn:338
-#, c-format
-msgid ""
-"The %s file does not exist.\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose 'add'.\n"
-msgstr ""
-
-#: standalone/drakvpn:354
-#, c-format
-msgid "ipsec.conf entries"
-msgstr ""
-
-#: standalone/drakvpn:355
-#, c-format
-msgid ""
-"The %s file contains different sections.\n"
-"\n"
-"Here is its skeleton:\t'config setup' \n"
-"\t\t\t\t\t'conn default' \n"
-"\t\t\t\t\t'normal1'\n"
-"\t\t\t\t\t'normal2' \n"
-"\n"
-"You can now add one of these sections.\n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-
-#: standalone/drakvpn:362
-#, fuzzy, c-format
-msgid "config setup"
-msgstr "rekonfiguru"
-
-#: standalone/drakvpn:362
-#, fuzzy, c-format
-msgid "conn %default"
-msgstr "defaŭlta"
-
-#: standalone/drakvpn:362
-#, fuzzy, c-format
-msgid "normal conn"
-msgstr "Normala Modalo"
-
-#: standalone/drakvpn:368 standalone/drakvpn:409 standalone/drakvpn:496
-#, fuzzy, c-format
-msgid "Exists!"
-msgstr "Eliro"
-
-#: standalone/drakvpn:369 standalone/drakvpn:410
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change its name.\n"
-msgstr ""
-
-#: standalone/drakvpn:386
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow this config\n"
-"setup section.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:391
-#, fuzzy, c-format
-msgid "interfaces"
-msgstr "Interfaco"
-
-#: standalone/drakvpn:392
-#, c-format
-msgid "klipsdebug"
-msgstr ""
-
-#: standalone/drakvpn:393
-#, c-format
-msgid "plutodebug"
-msgstr ""
-
-#: standalone/drakvpn:394
-#, c-format
-msgid "plutoload"
-msgstr ""
-
-#: standalone/drakvpn:395
-#, c-format
-msgid "plutostart"
-msgstr ""
-
-#: standalone/drakvpn:396
-#, c-format
-msgid "uniqueids"
-msgstr ""
-
-#: standalone/drakvpn:430
-#, c-format
-msgid ""
-"This is the first section after the config\n"
-"setup one.\n"
-"\n"
-"Here you define the default settings. \n"
-"All the other sections will follow this one.\n"
-"The left settings are optional. If do not define\n"
-"them here, globally, you can define them in each\n"
-"section.\n"
-msgstr ""
-
-#: standalone/drakvpn:437
-#, fuzzy, c-format
-msgid "PFS"
-msgstr "HFS"
-
-#: standalone/drakvpn:438
-#, c-format
-msgid "keyingtries"
-msgstr ""
-
-#: standalone/drakvpn:439
-#, c-format
-msgid "compress"
-msgstr ""
-
-#: standalone/drakvpn:440
-#, c-format
-msgid "disablearrivalcheck"
-msgstr ""
-
-#: standalone/drakvpn:441 standalone/drakvpn:480
-#, fuzzy, c-format
-msgid "left"
-msgstr "Forigu"
-
-#: standalone/drakvpn:442 standalone/drakvpn:481
-#, c-format
-msgid "leftcert"
-msgstr ""
-
-#: standalone/drakvpn:443 standalone/drakvpn:482
-#, c-format
-msgid "leftrsasigkey"
-msgstr ""
-
-#: standalone/drakvpn:444 standalone/drakvpn:483
-#, c-format
-msgid "leftsubnet"
-msgstr ""
-
-#: standalone/drakvpn:445 standalone/drakvpn:484
-#, c-format
-msgid "leftnexthop"
-msgstr ""
-
-#: standalone/drakvpn:474
-#, c-format
-msgid ""
-"Your %s file has several sections, or connections.\n"
-"\n"
-"You can now add a new section.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:477
-#, fuzzy, c-format
-msgid "section name"
-msgstr "Nomo de konekto"
-
-#: standalone/drakvpn:478
-#, c-format
-msgid "authby"
-msgstr ""
-
-#: standalone/drakvpn:479
-#, fuzzy, c-format
-msgid "auto"
-msgstr "Ĉesigu"
-
-#: standalone/drakvpn:485
-#, fuzzy, c-format
-msgid "right"
-msgstr "Alta"
-
-#: standalone/drakvpn:486
-#, fuzzy, c-format
-msgid "rightcert"
-msgstr "Alta"
-
-#: standalone/drakvpn:487
-#, c-format
-msgid "rightrsasigkey"
-msgstr ""
-
-#: standalone/drakvpn:488
-#, c-format
-msgid "rightsubnet"
-msgstr ""
-
-#: standalone/drakvpn:489
-#, c-format
-msgid "rightnexthop"
-msgstr ""
-
-#: standalone/drakvpn:497
-#, c-format
-msgid ""
-"A section with this name already exists.\n"
-"The section names have to be unique.\n"
-"\n"
-"You'll have to go back and add another section\n"
-"or change the name of the section.\n"
-msgstr ""
-
-#: standalone/drakvpn:529
-#, c-format
-msgid ""
-"Add a Security Policy.\n"
-"\n"
-"You can now add a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:562 standalone/drakvpn:812
-#, fuzzy, c-format
-msgid "Edit section"
-msgstr "Elektado de individuaj pakaĵoj"
-
-#: standalone/drakvpn:563
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to edit \n"
-"and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:566 standalone/drakvpn:646 standalone/drakvpn:817
-#: standalone/drakvpn:863
-#, fuzzy, c-format
-msgid "Section names"
-msgstr "Nomo de konekto"
-
-#: standalone/drakvpn:576
-#, fuzzy, c-format
-msgid "Can not edit!"
-msgstr "Ne povis malfermi %s por skribi: %s\n"
-
-#: standalone/drakvpn:577
-#, c-format
-msgid ""
-"You cannot edit this section.\n"
-"\n"
-"This section is mandatory for Freeswan 2.X.\n"
-"One has to specify version 2.0 on the top\n"
-"of the %s file, and eventually, disable or\n"
-"enable the opportunistic encryption.\n"
-msgstr ""
-
-#: standalone/drakvpn:586
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the config setup section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:597
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the default section entries.\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:610
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can now edit the normal section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:631
-#, c-format
-msgid ""
-"Edit a Security Policy.\n"
-"\n"
-"You can now edit a Security Policy.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:642 standalone/drakvpn:859
-#, fuzzy, c-format
-msgid "Remove section"
-msgstr "Malproksima printilo"
-
-#: standalone/drakvpn:643 standalone/drakvpn:860
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here below the one you want to remove\n"
-"and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:672
-#, c-format
-msgid ""
-"The racoon.conf file configuration.\n"
-"\n"
-"The contents of this file is divided into sections.\n"
-"You can now:\n"
-" - display \t\t (display the file contents)\n"
-" - add\t\t\t (add one section)\n"
-" - edit \t\t\t (modify parameters of an existing section)\n"
-" - remove \t\t (remove an existing section)\n"
-" - commit \t\t (writes the changes to the real file)"
-msgstr ""
-
-#: standalone/drakvpn:700
-#, c-format
-msgid ""
-"The %s file does not exist\n"
-"\n"
-"This must be a new configuration.\n"
-"\n"
-"You'll have to go back and choose configure.\n"
-msgstr ""
-
-#: standalone/drakvpn:714
-#, c-format
-msgid "racoonf.conf entries"
-msgstr ""
-
-#: standalone/drakvpn:715
-#, c-format
-msgid ""
-"The 'add' sections step.\n"
-"\n"
-"Here below is the racoon.conf file skeleton:\n"
-"\t'path'\n"
-"\t'remote'\n"
-"\t'sainfo' \n"
-"\n"
-"Choose the section you would like to add.\n"
-msgstr ""
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "path"
-msgstr ""
-
-#: standalone/drakvpn:721
-#, c-format
-msgid "remote"
-msgstr "fora"
-
-#: standalone/drakvpn:721
-#, fuzzy, c-format
-msgid "sainfo"
-msgstr "Informo"
-
-#: standalone/drakvpn:729
-#, c-format
-msgid ""
-"The 'add path' section step.\n"
-"\n"
-"The path sections have to be on top of your racoon.conf file.\n"
-"\n"
-"Put your mouse over the certificate entry to obtain online help."
-msgstr ""
-
-#: standalone/drakvpn:732
-#, fuzzy, c-format
-msgid "path type"
-msgstr "Ŝanĝu specon"
-
-#: standalone/drakvpn:736
-#, c-format
-msgid ""
-"path include path: specifies a path to include\n"
-"a file. See File Inclusion.\n"
-"\tExample: path include '/etc/racoon'\n"
-"\n"
-"path pre_shared_key file: specifies a file containing\n"
-"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
-"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
-"\n"
-"path certificate path: racoon(8) will search this directory\n"
-"if a certificate or certificate request is received.\n"
-"\tExample: path certificate '/etc/cert' ;\n"
-"\n"
-"File Inclusion: include file \n"
-"other configuration files can be included.\n"
-"\tExample: include \"remote.conf\" ;\n"
-"\n"
-"Pre-shared key File: Pre-shared key file defines a pair\n"
-"of the identifier and the shared secret key which are used at\n"
-"Pre-shared key authentication method in phase 1."
-msgstr ""
-
-#: standalone/drakvpn:756 standalone/drakvpn:849
-#, fuzzy, c-format
-msgid "real file"
-msgstr "Elektu dosieron"
-
-#: standalone/drakvpn:779
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your racoon.conf file.\n"
-"\n"
-"You can now choose the remote settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:796
-#, c-format
-msgid ""
-"Make sure you already have the path sections\n"
-"on the top of your %s file.\n"
-"\n"
-"You can now choose the sainfo settings.\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:813
-#, c-format
-msgid ""
-"Your %s file has several sections or connections.\n"
-"\n"
-"You can choose here in the list below the one you want\n"
-"to edit and then click on next.\n"
-msgstr ""
-
-#: standalone/drakvpn:824
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"\n"
-"You can now edit the remote section entries.\n"
-"\n"
-"Choose continue when you are done to write the data.\n"
-msgstr ""
-
-#: standalone/drakvpn:833
-#, c-format
-msgid ""
-"Your %s file has several sections.\n"
-"\n"
-"You can now edit the sainfo section entries.\n"
-"\n"
-"Choose continue when you are done to write the data."
-msgstr ""
-
-#: standalone/drakvpn:841
-#, c-format
-msgid ""
-"This section has to be on top of your\n"
-"%s file.\n"
-"\n"
-"Make sure all other sections follow these path\n"
-"sections.\n"
-"\n"
-"You can now edit the path entries.\n"
-"\n"
-"Choose continue or previous when you are done.\n"
-msgstr ""
-
-#: standalone/drakvpn:848
-#, c-format
-msgid "path_type"
-msgstr ""
-
-#: standalone/drakvpn:889
-#, c-format
-msgid ""
-"Everything has been configured.\n"
-"\n"
-"You may now share resources through the Internet,\n"
-"in a secure way, using a VPN connection.\n"
-"\n"
-"You should make sure that that the tunnels shorewall\n"
-"section is configured."
-msgstr ""
-
-#: standalone/drakvpn:909
-#, c-format
-msgid "Sainfo source address"
-msgstr ""
-
-#: standalone/drakvpn:910
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.209 is the source address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.1.0/24 is the source address"
-msgstr ""
-
-#: standalone/drakvpn:927
-#, fuzzy, c-format
-msgid "Sainfo source protocol"
-msgstr "Eŭropa protokolo"
-
-#: standalone/drakvpn:928
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe first 'any' allows any protocol for the source"
-msgstr ""
-
-#: standalone/drakvpn:942
-#, c-format
-msgid "Sainfo destination address"
-msgstr ""
-
-#: standalone/drakvpn:943
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\t203.178.141.218 is the destination address\n"
-"\n"
-"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
-"\t172.16.2.0/24 is the destination address"
-msgstr ""
-
-#: standalone/drakvpn:960
-#, c-format
-msgid "Sainfo destination protocol"
-msgstr ""
-
-#: standalone/drakvpn:961
-#, c-format
-msgid ""
-"sainfo (source_id destination_id | anonymous) { statements }\n"
-"defines the parameters of the IKE phase 2\n"
-"(IPsec-SA establishment).\n"
-"\n"
-"source_id and destination_id are constructed like:\n"
-"\n"
-"\taddress address [/ prefix] [[port]] ul_proto\n"
-"\n"
-"Examples: \n"
-"\n"
-"sainfo anonymous (accepts connections from anywhere)\n"
-"\tleave blank this entry if you want anonymous\n"
-"\n"
-"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
-"\tthe last 'any' allows any protocol for the destination"
-msgstr ""
-
-#: standalone/drakvpn:975
-#, c-format
-msgid "PFS group"
-msgstr ""
-
-#: standalone/drakvpn:977
-#, c-format
-msgid ""
-"define the group of Diffie-Hellman exponentiations.\n"
-"If you do not require PFS then you can omit this directive.\n"
-"Any proposal will be accepted if you do not specify one.\n"
-"group is one of the following: modp768, modp1024, modp1536.\n"
-"Or you can define 1, 2, or 5 as the DH group number."
-msgstr ""
-
-#: standalone/drakvpn:982
-#, fuzzy, c-format
-msgid "Lifetime number"
-msgstr "numero"
-
-#: standalone/drakvpn:983
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-msgstr ""
-
-#: standalone/drakvpn:999
-#, c-format
-msgid "Lifetime unit"
-msgstr ""
-
-#: standalone/drakvpn:1001
-#, c-format
-msgid ""
-"define a lifetime of a certain time which will be pro-\n"
-"posed in the phase 1 negotiations. Any proposal will be\n"
-"accepted, and the attribute(s) will not be proposed to\n"
-"the peer if you do not specify it(them). They can be\n"
-"individually specified in each proposal.\n"
-"\n"
-"Examples: \n"
-"\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 1 min; # sec,min,hour\n"
-" lifetime time 30 sec;\n"
-" lifetime time 30 sec;\n"
-" lifetime time 60 sec;\n"
-"\tlifetime time 12 hour;\n"
-"\n"
-"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
-"'hour'.\n"
-msgstr ""
-
-#: standalone/drakvpn:1019
-#, fuzzy, c-format
-msgid "Authentication algorithm"
-msgstr "Aŭtentikigado"
-
-#: standalone/drakvpn:1021
-#, c-format
-msgid "Compression algorithm"
-msgstr ""
-
-#: standalone/drakvpn:1022
-#, fuzzy, c-format
-msgid "deflate"
-msgstr "defaŭlta"
-
-#: standalone/drakvpn:1029
-#, c-format
-msgid "Remote"
-msgstr "Fora"
-
-#: standalone/drakvpn:1030
-#, c-format
-msgid ""
-"remote (address | anonymous) [[port]] { statements }\n"
-"specifies the parameters for IKE phase 1 for each remote node.\n"
-"The default port is 500. If anonymous is specified, the state-\n"
-"ments apply to all peers which do not match any other remote\n"
-"directive.\n"
-"\n"
-"Examples: \n"
-"\n"
-"remote anonymous\n"
-"remote ::1 [8000]"
-msgstr ""
-
-#: standalone/drakvpn:1038
-#, fuzzy, c-format
-msgid "Exchange mode"
-msgstr "Diskuma modalo"
-
-#: standalone/drakvpn:1040
-#, c-format
-msgid ""
-"defines the exchange mode for phase 1 when racoon is the\n"
-"initiator. Also it means the acceptable exchange mode\n"
-"when racoon is responder. More than one mode can be\n"
-"specified by separating them with a comma. All of the\n"
-"modes are acceptable. The first exchange mode is what\n"
-"racoon uses when it is the initiator.\n"
-msgstr ""
-
-#: standalone/drakvpn:1046
-#, fuzzy, c-format
-msgid "Generate policy"
-msgstr "Sekureco"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "off"
-msgstr "malŝaltita"
-
-#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
-#, c-format
-msgid "on"
-msgstr "ŝaltita"
-
-#: standalone/drakvpn:1048
-#, c-format
-msgid ""
-"This directive is for the responder. Therefore you\n"
-"should set passive on in order that racoon(8) only\n"
-"becomes a responder. If the responder does not have any\n"
-"policy in SPD during phase 2 negotiation, and the direc-\n"
-"tive is set on, then racoon(8) will choice the first pro-\n"
-"posal in the SA payload from the initiator, and generate\n"
-"policy entries from the proposal. It is useful to nego-\n"
-"tiate with the client which is allocated IP address\n"
-"dynamically. Note that inappropriate policy might be\n"
-"installed into the responder's SPD by the initiator. So\n"
-"that other communication might fail if such policies\n"
-"installed due to some policy mismatches between the ini-\n"
-"tiator and the responder. This directive is ignored in\n"
-"the initiator case. The default value is off."
-msgstr ""
-
-#: standalone/drakvpn:1062
-#, fuzzy, c-format
-msgid "Passive"
-msgstr "Palestino"
-
-#: standalone/drakvpn:1064
-#, c-format
-msgid ""
-"If you do not want to initiate the negotiation, set this\n"
-"to on. The default value is off. It is useful for a\n"
-"server."
-msgstr ""
-
-#: standalone/drakvpn:1067
-#, c-format
-msgid "Certificate type"
-msgstr ""
-
-#: standalone/drakvpn:1069
-#, fuzzy, c-format
-msgid "My certfile"
-msgstr "Elektu dosieron"
-
-#: standalone/drakvpn:1070
-#, fuzzy, c-format
-msgid "Name of the certificate"
-msgstr "Nomo de printilo"
-
-#: standalone/drakvpn:1071
-#, c-format
-msgid "My private key"
-msgstr ""
-
-#: standalone/drakvpn:1072
-#, fuzzy, c-format
-msgid "Name of the private key"
-msgstr "Nomo de printilo"
-
-#: standalone/drakvpn:1073
-#, fuzzy, c-format
-msgid "Peers certfile"
-msgstr "Elektu dosieron"
-
-#: standalone/drakvpn:1074
-#, c-format
-msgid "Name of the peers certificate"
-msgstr ""
-
-#: standalone/drakvpn:1075
-#, fuzzy, c-format
-msgid "Verify cert"
-msgstr "tre agrabla(j)"
-
-#: standalone/drakvpn:1077
-#, c-format
-msgid ""
-"If you do not want to verify the peer's certificate for\n"
-"some reason, set this to off. The default is on."
-msgstr ""
-
-#: standalone/drakvpn:1079
-#, c-format
-msgid "My identifier"
-msgstr ""
-
-#: standalone/drakvpn:1080
-#, c-format
-msgid ""
-"specifies the identifier sent to the remote host and the\n"
-"type to use in the phase 1 negotiation. address, FQDN,\n"
-"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
-"they are used like:\n"
-"\tmy_identifier address [address];\n"
-"\t\tthe type is the IP address. This is the default\n"
-"\t\ttype if you do not specify an identifier to use.\n"
-"\tmy_identifier user_fqdn string;\n"
-"\t\tthe type is a USER_FQDN (user fully-qualified\n"
-"\t\tdomain name).\n"
-"\tmy_identifier FQDN string;\n"
-"\t\tthe type is a FQDN (fully-qualified domain name).\n"
-"\tmy_identifier keyid file;\n"
-"\t\tthe type is a KEY_ID.\n"
-"\tmy_identifier asn1dn [string];\n"
-"\t\tthe type is an ASN.1 distinguished name. If\n"
-"\t\tstring is omitted, racoon(8) will get DN from\n"
-"\t\tSubject field in the certificate.\n"
-"\n"
-"Examples: \n"
-"\n"
-"my_identifier user_fqdn \"myemail@mydomain.com\""
-msgstr ""
-
-#: standalone/drakvpn:1100
-#, fuzzy, c-format
-msgid "Peers identifier"
-msgstr "Printilo"
-
-#: standalone/drakvpn:1101
-#, fuzzy, c-format
-msgid "Proposal"
-msgstr "Protokolo"
-
-#: standalone/drakvpn:1103
-#, c-format
-msgid ""
-"specify the encryption algorithm used for the\n"
-"phase 1 negotiation. This directive must be defined. \n"
-"algorithm is one of the following: \n"
-"\n"
-"DES, 3DES, blowfish, cast128 for oakley.\n"
-"\n"
-"For other transforms, this statement should not be used."
-msgstr ""
-
-#: standalone/drakvpn:1110
-#, c-format
-msgid "Hash algorithm"
-msgstr ""
-
-#: standalone/drakvpn:1112
-#, fuzzy, c-format
-msgid "DH group"
-msgstr "Laborgrupo"
-
-#: standalone/drakvpn:1119
-#, c-format
-msgid "Command"
-msgstr "Komando"
-
-#: standalone/drakvpn:1120
-#, c-format
-msgid "Source IP range"
-msgstr ""
-
-#: standalone/drakvpn:1121
-#, c-format
-msgid "Destination IP range"
-msgstr ""
-
-#: standalone/drakvpn:1122
-#, fuzzy, c-format
-msgid "Upper-layer protocol"
-msgstr "Eŭropa protokolo"
-
-#: standalone/drakvpn:1122 standalone/drakvpn:1129
-#, fuzzy, c-format
-msgid "any"
-msgstr "Majo"
-
-#: standalone/drakvpn:1124
-#, c-format
-msgid "Flag"
-msgstr "Flago"
-
-#: standalone/drakvpn:1125
-#, c-format
-msgid "Direction"
-msgstr "Direkto"
-
-#: standalone/drakvpn:1126
-#, c-format
-msgid "IPsec policy"
-msgstr ""
-
-#: standalone/drakvpn:1126
-#, fuzzy, c-format
-msgid "ipsec"
-msgstr "Muso"
-
-#: standalone/drakvpn:1126
-#, fuzzy, c-format
-msgid "discard"
-msgstr "malebligita"
-
-#: standalone/drakvpn:1129
-#, c-format
-msgid "Mode"
-msgstr "Reĝimo"
-
-#: standalone/drakvpn:1129
-#, fuzzy, c-format
-msgid "tunnel"
-msgstr "Nuligu"
-
-#: standalone/drakvpn:1129
-#, fuzzy, c-format
-msgid "transport"
-msgstr "Aliaj pordoj"
-
-#: standalone/drakvpn:1131
-#, fuzzy, c-format
-msgid "Source/destination"
-msgstr "Laborstacio"
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "require"
-msgstr ""
-
-#: standalone/drakvpn:1132
-#, c-format
-msgid "default"
-msgstr "defaŭlta"
-
-#: standalone/drakvpn:1132
-#, fuzzy, c-format
-msgid "use"
-msgstr "Muso"
-
-#: standalone/drakvpn:1132
-#, fuzzy, c-format
-msgid "unique"
-msgstr "Martiniko"
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (broadcast)"
-msgstr ""
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable)"
-msgstr ""
-
-#: standalone/drakxtv:45
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: standalone/drakxtv:45
-#, fuzzy, c-format
-msgid "Canada (cable)"
-msgstr "Kanada (Kebeka)"
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (broadcast)"
-msgstr ""
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "Japan (cable)"
-msgstr ""
-
-#: standalone/drakxtv:46
-#, c-format
-msgid "China (broadcast)"
-msgstr ""
-
-#: standalone/drakxtv:47
-#, fuzzy, c-format
-msgid "West Europe"
-msgstr "Eŭropo"
-
-#: standalone/drakxtv:47
-#, fuzzy, c-format
-msgid "East Europe"
-msgstr "Eŭropo"
-
-#: standalone/drakxtv:47
-#, fuzzy, c-format
-msgid "France [SECAM]"
-msgstr "Franca"
-
-#: standalone/drakxtv:48
-#, c-format
-msgid "Newzealand"
-msgstr ""
-
-#: standalone/drakxtv:51
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr ""
-
-#: standalone/drakxtv:85
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: standalone/drakxtv:87
-#, c-format
-msgid "TV norm:"
-msgstr ""
-
-#: standalone/drakxtv:88
-#, c-format
-msgid "Area:"
-msgstr "Areo :"
-
-#: standalone/drakxtv:93
-#, c-format
-msgid "Scanning for TV channels in progress..."
-msgstr ""
-
-#: standalone/drakxtv:103
-#, c-format
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: standalone/drakxtv:107
-#, fuzzy, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Estis eraro dum instalado de pakaĵoj:"
-
-#: standalone/drakxtv:110
-#, c-format
-msgid "Have a nice day!"
-msgstr ""
-
-#: standalone/drakxtv:111
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr ""
-
-#: standalone/drakxtv:149
-#, c-format
-msgid "No TV Card detected!"
-msgstr ""
-
-#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: standalone/drakxtv:151
-#, c-format
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.mandrivalinux.com/en/hardware.php3"
-msgstr ""
-
-#: standalone/finish-install:42 standalone/keyboarddrake:30
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Bonvole, elektu vian klavaran aranĝon."
-
-#: standalone/harddrake2:25
-#, fuzzy, c-format
-msgid "Alternative drivers"
-msgstr "Printas provpaĝo(j)n..."
-
-#: standalone/harddrake2:26
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr ""
-
-#: standalone/harddrake2:29
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-
-#: standalone/harddrake2:31 standalone/harddrake2:146
-#, fuzzy, c-format
-msgid "Bus identification"
-msgstr "Aŭtentikigado"
-
-#: standalone/harddrake2:32
-#, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
-msgstr ""
-
-#: standalone/harddrake2:35
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "Drive capacity"
-msgstr ""
-
-#: standalone/harddrake2:38
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
-
-#: standalone/harddrake2:39
-#, c-format
-msgid "this field describes the device"
-msgstr ""
-
-#: standalone/harddrake2:40
-#, fuzzy, c-format
-msgid "Old device file"
-msgstr "Elektu dosieron"
-
-#: standalone/harddrake2:41
-#, c-format
-msgid "old static device name used in dev package"
-msgstr ""
-
-#: standalone/harddrake2:42
-#, fuzzy, c-format
-msgid "New devfs device"
-msgstr "Prokura kluzaparato"
-
-#: standalone/harddrake2:43
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr ""
-
-#. -PO: here "module" is the "jargon term" for a kernel driver
-#: standalone/harddrake2:46
-#, c-format
-msgid "Module"
-msgstr "Modulo"
-
-#: standalone/harddrake2:46
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr ""
-
-#: standalone/harddrake2:47
-#, fuzzy, c-format
-msgid "Extended partitions"
-msgstr "Kreu novan subdiskon"
-
-#: standalone/harddrake2:47
-#, fuzzy, c-format
-msgid "the number of extended partitions"
-msgstr "Movu dosierojn al la nova subdisko"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Geometry"
-msgstr "Geometrio"
-
-#: standalone/harddrake2:48
-#, c-format
-msgid "Cylinder/head/sectors geometry of the disk"
-msgstr ""
-
-#: standalone/harddrake2:49
-#, fuzzy, c-format
-msgid "Disk controller"
-msgstr "SMBus-kontroliloj"
-
-#: standalone/harddrake2:49
-#, c-format
-msgid "the disk controller on the host side"
-msgstr ""
-
-#: standalone/harddrake2:50
-#, c-format
-msgid "class of hardware device"
-msgstr ""
-
-#: standalone/harddrake2:51 standalone/harddrake2:83
-#: standalone/printerdrake:224
-#, c-format
-msgid "Model"
-msgstr "Modelo"
-
-#: standalone/harddrake2:51
-#, fuzzy, c-format
-msgid "hard disk model"
-msgstr "Memoro de Karto (DMA)"
-
-#: standalone/harddrake2:52
-#, fuzzy, c-format
-msgid "network printer port"
-msgstr "Reta Printilo (TCP/ingo)"
-
-#: standalone/harddrake2:53
-#, fuzzy, c-format
-msgid "Primary partitions"
-msgstr "Formatu subdiskojn"
-
-#: standalone/harddrake2:53
-#, fuzzy, c-format
-msgid "the number of the primary partitions"
-msgstr "Unua sektoro de radika subdisko"
-
-#: standalone/harddrake2:54
-#, c-format
-msgid "the vendor name of the device"
-msgstr ""
-
-#: standalone/harddrake2:55
-#, c-format
-msgid "Bus PCI #"
-msgstr ""
-
-#: standalone/harddrake2:55
-#, fuzzy, c-format
-msgid "the PCI bus on which the device is plugged"
-msgstr "Bonvole, elektu al kiu seria pordo estas via muso konektata."
-
-#: standalone/harddrake2:56
-#, fuzzy, c-format
-msgid "PCI device #"
-msgstr "Servoj"
-
-#: standalone/harddrake2:56
-#, fuzzy, c-format
-msgid "PCI device number"
-msgstr "numero"
-
-#: standalone/harddrake2:57
-#, c-format
-msgid "PCI function #"
-msgstr ""
-
-#: standalone/harddrake2:57
-#, fuzzy, c-format
-msgid "PCI function number"
-msgstr "Nomo de konekto"
-
-#: standalone/harddrake2:58
-#, fuzzy, c-format
-msgid "Vendor ID"
-msgstr "Vendinto"
-
-#: standalone/harddrake2:58
-#, c-format
-msgid "this is the standard numerical identifier of the vendor"
-msgstr ""
-
-#: standalone/harddrake2:59
-#, fuzzy, c-format
-msgid "Device ID"
-msgstr "Aparato: "
-
-#: standalone/harddrake2:59
-#, c-format
-msgid "this is the numerical identifier of the device"
-msgstr ""
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "Sub vendor ID"
-msgstr ""
-
-#: standalone/harddrake2:60
-#, c-format
-msgid "this is the minor numerical identifier of the vendor"
-msgstr ""
-
-#: standalone/harddrake2:61
-#, fuzzy, c-format
-msgid "Sub device ID"
-msgstr "Servoj"
-
-#: standalone/harddrake2:61
-#, c-format
-msgid "this is the minor numerical identifier of the device"
-msgstr ""
-
-#: standalone/harddrake2:62
-#, fuzzy, c-format
-msgid "Device USB ID"
-msgstr "Aparato: "
-
-#: standalone/harddrake2:62
-#, c-format
-msgid ".."
-msgstr ".."
-
-#: standalone/harddrake2:66
-#, c-format
-msgid "Bogomips"
-msgstr ""
-
-#: standalone/harddrake2:66
-#, c-format
-msgid ""
-"the GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
-msgstr ""
-
-#: standalone/harddrake2:67
-#, fuzzy, c-format
-msgid "Cache size"
-msgstr "grandeco de pecoj"
-
-#: standalone/harddrake2:67
-#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr ""
-
-#. -PO: here "comas" is the medical coma, not the lexical coma!!
-#: standalone/harddrake2:70
-#, c-format
-msgid "Coma bug"
-msgstr ""
-
-#: standalone/harddrake2:70
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr ""
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "Cpuid family"
-msgstr ""
-
-#: standalone/harddrake2:71
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr ""
-
-#: standalone/harddrake2:72
-#, fuzzy, c-format
-msgid "Cpuid level"
-msgstr "Elektas sekurnivelon"
-
-#: standalone/harddrake2:72
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr ""
-
-#: standalone/harddrake2:73
-#, c-format
-msgid "Frequency (MHz)"
-msgstr ""
-
-#: standalone/harddrake2:73
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr ""
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "Flags"
-msgstr "Flagoj"
-
-#: standalone/harddrake2:74
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr ""
-
-#: standalone/harddrake2:75
-#, c-format
-msgid "Fdiv bug"
-msgstr ""
-
-#: standalone/harddrake2:76
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "Is FPU present"
-msgstr ""
-
-#: standalone/harddrake2:77
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr ""
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr ""
-
-#: standalone/harddrake2:78
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "F00f bug"
-msgstr ""
-
-#: standalone/harddrake2:79
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
-
-#: standalone/harddrake2:80
-#, c-format
-msgid "Halt bug"
-msgstr ""
-
-#: standalone/harddrake2:81
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
-
-#: standalone/harddrake2:82
-#, c-format
-msgid "sub generation of the cpu"
-msgstr ""
-
-#: standalone/harddrake2:83
-#, c-format
-msgid "generation of the cpu (eg: 8 for Pentium III, ...)"
-msgstr ""
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "Model name"
-msgstr "Modulonomo"
-
-#: standalone/harddrake2:84
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr ""
-
-#: standalone/harddrake2:85
-#, c-format
-msgid "the name of the CPU"
-msgstr ""
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "Processor ID"
-msgstr ""
-
-#: standalone/harddrake2:86
-#, c-format
-msgid "the number of the processor"
-msgstr ""
-
-#: standalone/harddrake2:87
-#, fuzzy, c-format
-msgid "Model stepping"
-msgstr "Formatas"
-
-#: standalone/harddrake2:87
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr ""
-
-#: standalone/harddrake2:88
-#, c-format
-msgid "the vendor name of the processor"
-msgstr ""
-
-#: standalone/harddrake2:89
-#, fuzzy, c-format
-msgid "Write protection"
-msgstr "Malproksima printilo"
-
-#: standalone/harddrake2:89
-#, c-format
-msgid ""
-"the WP flag in the CR0 register of the cpu enforce write protection at the "
-"memory page level, thus enabling the processor to prevent unchecked kernel "
-"accesses to user memory (aka this is a bug guard)"
-msgstr ""
-
-#: standalone/harddrake2:93
-#, fuzzy, c-format
-msgid "Floppy format"
-msgstr "Formatu"
-
-#: standalone/harddrake2:93
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr ""
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "Channel"
-msgstr "Kanalo"
-
-#: standalone/harddrake2:97
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr ""
-
-#: standalone/harddrake2:98
-#, fuzzy, c-format
-msgid "Disk identifier"
-msgstr "Printilo"
-
-#: standalone/harddrake2:98
-#, c-format
-msgid "usually the disk serial number"
-msgstr ""
-
-#: standalone/harddrake2:99
-#, fuzzy, c-format
-msgid "Logical unit number"
-msgstr "Lokaj dosieroj"
-
-#: standalone/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 ""
-
-#. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...)
-#: standalone/harddrake2:106
-#, fuzzy, c-format
-msgid "Installed size"
-msgstr "Instalu sistemon"
-
-#: standalone/harddrake2:106
-#, c-format
-msgid "Installed size of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:107
-#, fuzzy, c-format
-msgid "Enabled Size"
-msgstr "ebligu"
-
-#: standalone/harddrake2:107
-#, c-format
-msgid "Enabled size of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:108
-#, fuzzy, c-format
-msgid "type of the memory device"
-msgstr "Nomo de printilo"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed"
-msgstr "Rapideco"
-
-#: standalone/harddrake2:109
-#, c-format
-msgid "Speed of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:110
-#, fuzzy, c-format
-msgid "Bank connections"
-msgstr "Kabla konekto"
-
-#: standalone/harddrake2:111
-#, c-format
-msgid "Socket designation of the memory bank"
-msgstr ""
-
-#: standalone/harddrake2:115
-#, fuzzy, c-format
-msgid "Device file"
-msgstr "Elektu dosieron"
-
-#: standalone/harddrake2:115
-#, c-format
-msgid ""
-"the device file used to communicate with the kernel driver for the mouse"
-msgstr ""
-
-#: standalone/harddrake2:116
-#, c-format
-msgid "Emulated wheel"
-msgstr ""
-
-#: standalone/harddrake2:116
-#, fuzzy, c-format
-msgid "whether the wheel is emulated or not"
-msgstr "Loĝiteka MouseMan"
-
-#: standalone/harddrake2:117
-#, fuzzy, c-format
-msgid "the type of the mouse"
-msgstr "Bonvole, provu la muson"
-
-#: standalone/harddrake2:118
-#, fuzzy, c-format
-msgid "the name of the mouse"
-msgstr "2 butonoj"
-
-#: standalone/harddrake2:119
-#, fuzzy, c-format
-msgid "Number of buttons"
-msgstr "2 butonoj"
-
-#: standalone/harddrake2:119
-#, fuzzy, c-format
-msgid "the number of buttons the mouse has"
-msgstr "2 butonoj"
-
-#: standalone/harddrake2:120
-#, fuzzy, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "Bonvole, elektu al kiu seria pordo estas via muso konektata."
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "Mouse protocol used by X11"
-msgstr ""
-
-#: standalone/harddrake2:121
-#, c-format
-msgid "the protocol that the graphical desktop use with the mouse"
-msgstr ""
-
-#: standalone/harddrake2:128 standalone/harddrake2:137
-#: standalone/harddrake2:144 standalone/harddrake2:152
-#: standalone/harddrake2:341
-#, fuzzy, c-format
-msgid "Identification"
-msgstr "Aŭtentikigado"
-
-#: standalone/harddrake2:129 standalone/harddrake2:145
-#, c-format
-msgid "Connection"
-msgstr "Konektu"
-
-#: standalone/harddrake2:138
-#, fuzzy, c-format
-msgid "Performances"
-msgstr "Prefero: "
-
-#: standalone/harddrake2:139
-#, fuzzy, c-format
-msgid "Bugs"
-msgstr "Aŭgusto"
-
-#: standalone/harddrake2:140
-#, c-format
-msgid "FPU"
-msgstr ""
-
-#: standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Aparato"
-
-#: standalone/harddrake2:148
-#, c-format
-msgid "Partitions"
-msgstr "Subdiskoj"
-
-#: standalone/harddrake2:153
-#, c-format
-msgid "Features"
-msgstr "Funkcioj"
-
-#. -PO: please keep all "/" characters !!!
-#: standalone/harddrake2:176 standalone/logdrake:76
-#: standalone/printerdrake:146 standalone/printerdrake:159
-#: standalone/printerdrake:171
-#, c-format
-msgid "/_Options"
-msgstr "/_Opcioj"
-
-#: standalone/harddrake2:177 standalone/harddrake2:202 standalone/logdrake:78
-#: standalone/printerdrake:172 standalone/printerdrake:174
-#: standalone/printerdrake:177 standalone/printerdrake:179
-#, c-format
-msgid "/_Help"
-msgstr "/_Helpo"
-
-#: standalone/harddrake2:181
-#, fuzzy, c-format
-msgid "/Autodetect _printers"
-msgstr "Malproksima printilo"
-
-#: standalone/harddrake2:182
-#, fuzzy, c-format
-msgid "/Autodetect _modems"
-msgstr "Malproksima printilo"
-
-#: standalone/harddrake2:183
-#, fuzzy, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "Malproksima printilo"
-
-#: standalone/harddrake2:184
-#, c-format
-msgid "/Autodetect parallel _zip drives"
-msgstr ""
-
-#: standalone/harddrake2:191 standalone/printerdrake:152
-#, c-format
-msgid "/_Quit"
-msgstr "/_Ĉesu"
-
-#: standalone/harddrake2:204
-#, fuzzy, c-format
-msgid "/_Fields description"
-msgstr "Priskribo"
-
-#: standalone/harddrake2:206
-#, c-format
-msgid "Harddrake help"
-msgstr ""
-
-#: standalone/harddrake2:215
-#, 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 ""
-
-#: standalone/harddrake2:221 standalone/printerdrake:177
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Raportu Cimo"
-
-#: standalone/harddrake2:223 standalone/printerdrake:179
-#, c-format
-msgid "/_About..."
-msgstr "/_Pri..."
-
-#: standalone/harddrake2:224
-#, c-format
-msgid "About Harddrake"
-msgstr ""
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/harddrake2:226
-#, c-format
-msgid ""
-"This is HardDrake, a %s hardware configuration tool.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-"tvignaud@mandriva.com&gt;\n"
-"\n"
-msgstr ""
-
-#: standalone/harddrake2:242
-#, fuzzy, c-format
-msgid "Harddrake2"
-msgstr "HardDrake"
-
-#: standalone/harddrake2:272
-#, fuzzy, c-format
-msgid "Detected hardware"
-msgstr "Vidu hardvaran informon"
-
-#: standalone/harddrake2:277
-#, fuzzy, c-format
-msgid "Configure module"
-msgstr "Konfiguru muson"
-
-#: standalone/harddrake2:284
-#, c-format
-msgid "Run config tool"
-msgstr ""
-
-#: standalone/harddrake2:308
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
-
-#: standalone/harddrake2:329 standalone/printerdrake:306
-#: standalone/printerdrake:320
-#, c-format
-msgid "Unknown"
-msgstr "Nekonata"
-
-#: standalone/harddrake2:349
-#, c-format
-msgid "Misc"
-msgstr "Diverse"
-
-#: standalone/harddrake2:427
-#, fuzzy, c-format
-msgid "secondary"
-msgstr "%d sekundoj"
-
-#: standalone/harddrake2:427
-#, c-format
-msgid "primary"
-msgstr ""
-
-#: standalone/harddrake2:431
-#, fuzzy, c-format
-msgid "burner"
-msgstr "Printilo"
-
-#: standalone/harddrake2:431
-#, c-format
-msgid "DVD"
-msgstr "DVD"
-
-#: standalone/harddrake2:511
-#, c-format
-msgid ""
-"The following devices needs proprietary drivers or firmwares in order to "
-"operate smoothly. The appropriate packages can be retrieved from the "
-"Mandriva Club. Do you want to subscribe to the Mandriva Club?"
-msgstr ""
-
-#: standalone/keyboarddrake:45
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
-
-#: standalone/localedrake:38
-#, c-format
-msgid "LocaleDrake"
-msgstr "LocaleDrake"
-
-#: standalone/localedrake:44
-#, fuzzy, c-format
-msgid "You should install the following packages: %s"
-msgstr "Instalanta pakaĵo %s"
-
-#. -PO: the following is used to combine packages names. eg: "initscripts, harddrake, yudit"
-#: standalone/localedrake:47 standalone/scannerdrake:135
-#, c-format
-msgid ", "
-msgstr ", "
-
-#: standalone/localedrake:55
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: standalone/logdrake:49
-#, fuzzy, c-format
-msgid "Mandriva Linux Tools Logs"
-msgstr "Konekti al la interreto"
-
-#: standalone/logdrake:50
-#, fuzzy, c-format
-msgid "Logdrake"
-msgstr "logdrake"
-
-#: standalone/logdrake:63
-#, fuzzy, c-format
-msgid "Show only for the selected day"
-msgstr "Montru nur por ĉi tiu tago"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "/File/_New"
-msgstr "/Dosiero/_Nova"
-
-#: standalone/logdrake:70
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "/File/_Open"
-msgstr "/Dosiero/_Malfermu"
-
-#: standalone/logdrake:71
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "/File/_Save"
-msgstr "/Dosiero/_Savu"
-
-#: standalone/logdrake:72
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
-
-#: standalone/logdrake:73
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Dosiero/Savu _Kiel"
-
-#: standalone/logdrake:74
-#, c-format
-msgid "/File/-"
-msgstr "/Dosiero/-"
-
-#: standalone/logdrake:77
-#, c-format
-msgid "/Options/Test"
-msgstr "/Opcioj/Provu"
-
-#: standalone/logdrake:79
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Helpo/_Pri..."
-
-#: standalone/logdrake:108
-#, c-format
-msgid ""
-"_:this is the auth.log log file\n"
-"Authentication"
-msgstr ""
-
-#: standalone/logdrake:109
-#, c-format
-msgid ""
-"_:this is the user.log log file\n"
-"User"
-msgstr ""
-
-#: standalone/logdrake:110
-#, c-format
-msgid ""
-"_:this is the /var/log/messages log file\n"
-"Messages"
-msgstr ""
-
-#: standalone/logdrake:111
-#, c-format
-msgid ""
-"_:this is the /var/log/syslog log file\n"
-"Syslog"
-msgstr ""
-
-#: standalone/logdrake:115
-#, c-format
-msgid "search"
-msgstr "serĉu"
-
-#: standalone/logdrake:127
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Ilo por vidi vian logdosieron"
-
-#: standalone/logdrake:128 standalone/net_applet:347 standalone/net_monitor:93
-#, c-format
-msgid "Settings"
-msgstr "Konfiguraĵoj"
-
-#: standalone/logdrake:133
-#, fuzzy, c-format
-msgid "Matching"
-msgstr "konformanta(j)"
-
-#: standalone/logdrake:134
-#, c-format
-msgid "but not matching"
-msgstr "sed ne konformanta(j)"
-
-#: standalone/logdrake:138
-#, c-format
-msgid "Choose file"
-msgstr "Elektu dosieron"
-
-#: standalone/logdrake:150
-#, c-format
-msgid "Calendar"
-msgstr "Kalendaro"
-
-#: standalone/logdrake:160
-#, c-format
-msgid "Content of the file"
-msgstr "Enhavoj de la dosiero"
-
-#: standalone/logdrake:164 standalone/logdrake:401
-#, c-format
-msgid "Mail alert"
-msgstr ""
-
-#: standalone/logdrake:171
-#, c-format
-msgid "The alert wizard has failed unexpectedly:"
-msgstr ""
-
-#: standalone/logdrake:224
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "bonvole atendu, mi vortanalizas la dosieron: %s"
-
-#: standalone/logdrake:379
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr ""
-
-#: standalone/logdrake:380
-#, fuzzy, c-format
-msgid "Domain Name Resolver"
-msgstr "Domajna nomo"
-
-#: standalone/logdrake:381
-#, c-format
-msgid "Ftp Server"
-msgstr "FTP Servilo"
-
-#: standalone/logdrake:382
-#, fuzzy, c-format
-msgid "Postfix Mail Server"
-msgstr "Datumbazoj"
-
-#: standalone/logdrake:383
-#, fuzzy, c-format
-msgid "Samba Server"
-msgstr "NIS Servilo"
-
-#: standalone/logdrake:385
-#, fuzzy, c-format
-msgid "Webmin Service"
-msgstr "Servilo"
-
-#: standalone/logdrake:386
-#, fuzzy, c-format
-msgid "Xinetd Service"
-msgstr "Printservilo"
-
-#: standalone/logdrake:395
-#, fuzzy, c-format
-msgid "Configure the mail alert system"
-msgstr "Konfiguru retumon"
-
-#: standalone/logdrake:396
-#, c-format
-msgid "Stop the mail alert system"
-msgstr ""
-
-#: standalone/logdrake:404
-#, fuzzy, c-format
-msgid "Mail alert configuration"
-msgstr "Konfiguraĵon"
-
-#: standalone/logdrake:405
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-
-#: standalone/logdrake:415
-#, fuzzy, c-format
-msgid "Services settings"
-msgstr "Servilo"
-
-#: standalone/logdrake:416
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr ""
-
-#: standalone/logdrake:423
-#, fuzzy, c-format
-msgid "Load setting"
-msgstr "Formatas"
-
-#: standalone/logdrake:424
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: standalone/logdrake:425
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr ""
-
-#: standalone/logdrake:430
-#, fuzzy, c-format
-msgid "Alert configuration"
-msgstr "Interreta Konfigurado"
-
-#: standalone/logdrake:431
-#, fuzzy, c-format
-msgid "Please enter your email address below "
-msgstr "Bonvole provu denove"
-
-#: standalone/logdrake:432
-#, c-format
-msgid "and enter the name (or the IP) of the SMTP server you wish to use"
-msgstr ""
-
-#: standalone/logdrake:451
-#, c-format
-msgid "The wizard successfully configured the mail alert."
-msgstr ""
-
-#: standalone/logdrake:457
-#, c-format
-msgid "The wizard successfully disabled the mail alert."
-msgstr ""
-
-#: standalone/logdrake:516
-#, c-format
-msgid "Save as.."
-msgstr "Savu Kiel..."
-
-#: standalone/mousedrake:31
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Bonvole, elektu la specon de via muso."
-
-#: standalone/mousedrake:44
-#, c-format
-msgid "Emulate third button?"
-msgstr "Ĉu vi deziras emuli trian musbutonon?"
-
-#: standalone/mousedrake:61
-#, fuzzy, c-format
-msgid "Mouse test"
-msgstr "Mouse Systems"
-
-#: standalone/mousedrake:64
-#, fuzzy, c-format
-msgid "Please test your mouse:"
-msgstr "Bonvole, provu la muson"
-
-#: standalone/net_applet:47
-#, fuzzy, c-format
-msgid "Network is up on interface %s"
-msgstr "Reta interfaco"
-
-#. -PO: keep the "Configure Network" substring synced with the "Configure Network" message below
-#: standalone/net_applet:50
-#, fuzzy, c-format
-msgid "Network is down on interface %s. Click on \"Configure Network\""
-msgstr "Ekrano ne estas konfigurata"
-
-#: standalone/net_applet:56 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, fuzzy, c-format
-msgid "Connect %s"
-msgstr "Konektu"
-
-#: standalone/net_applet:57 standalone/net_applet:76
-#: standalone/net_monitor:468
-#, fuzzy, c-format
-msgid "Disconnect %s"
-msgstr "Malkonektu"
-
-#: standalone/net_applet:58
-#, fuzzy, c-format
-msgid "Monitor Network"
-msgstr "Restaŭru de dosiero"
-
-#: standalone/net_applet:60
-#, c-format
-msgid "Manage wireless networks"
-msgstr ""
-
-#: standalone/net_applet:61
-#, c-format
-msgid "Configure Network"
-msgstr "Konfiguru la reton"
-
-#: standalone/net_applet:63
-#, fuzzy, c-format
-msgid "Watched interface"
-msgstr "Interfaco"
-
-#: standalone/net_applet:93
-#, c-format
-msgid "Profiles"
-msgstr "Profiloj"
-
-#: standalone/net_applet:102
-#, c-format
-msgid "Get Online Help"
-msgstr ""
-
-#: standalone/net_applet:335
-#, c-format
-msgid "Interactive Firewall automatic mode"
-msgstr ""
-
-#: standalone/net_applet:340
-#, c-format
-msgid "Always launch on startup"
-msgstr "Ĉiam startu post sistemstartado"
-
-#: standalone/net_applet:344
-#, fuzzy, c-format
-msgid "Wireless networks"
-msgstr "Kabla konekto"
-
-#: standalone/net_applet:429
-#, fuzzy, c-format
-msgid "Interactive Firewall: intrusion detected"
-msgstr "Konfiguraĵo de barilo detektata!"
-
-#: standalone/net_applet:442
-#, fuzzy, c-format
-msgid "What do you want to do with this attacker?"
-msgstr "Ĉu vi deziras uzi tiun funkcion?"
-
-#: standalone/net_applet:445
-#, fuzzy, c-format
-msgid "Attack details"
-msgstr "Neniaj detaloj"
-
-#: standalone/net_applet:449
-#, c-format
-msgid "Attack time: %s"
-msgstr ""
-
-#: standalone/net_applet:450
-#, c-format
-msgid "Network interface: %s"
-msgstr "Reta interfaco: %s"
-
-#: standalone/net_applet:451
-#, fuzzy, c-format
-msgid "Attack type: %s"
-msgstr "Speco: "
-
-#: standalone/net_applet:452
-#, c-format
-msgid "Protocol: %s"
-msgstr "Protokolo: %s"
-
-#: standalone/net_applet:453
-#, fuzzy, c-format
-msgid "Attacker IP address: %s"
-msgstr "Plej malalta IP-adreso:"
-
-#: standalone/net_applet:454
-#, fuzzy, c-format
-msgid "Attacker hostname: %s"
-msgstr "Salutnomo por prokura servilo:"
-
-#: standalone/net_applet:457
-#, fuzzy, c-format
-msgid "Service attacked: %s"
-msgstr "Servo-Administrilo"
-
-#: standalone/net_applet:458
-#, fuzzy, c-format
-msgid "Port attacked: %s"
-msgstr "Pordo: %s"
-
-#: standalone/net_applet:460
-#, c-format
-msgid "Type of ICMP attack: %s"
-msgstr ""
-
-#: standalone/net_applet:465
-#, c-format
-msgid "Always blacklist (do not ask again)"
-msgstr ""
-
-#: standalone/net_monitor:57 standalone/net_monitor:62
-#, fuzzy, c-format
-msgid "Network Monitoring"
-msgstr "Reta Konfiguraĵo"
-
-#: standalone/net_monitor:98
-#, c-format
-msgid "Global statistics"
-msgstr ""
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Instantaneous"
-msgstr ""
-
-#: standalone/net_monitor:101
-#, c-format
-msgid "Average"
-msgstr "Averaĝulo"
-
-#: standalone/net_monitor:102
-#, fuzzy, c-format
-msgid ""
-"Sending\n"
-"speed:"
-msgstr "Konservu en dosiero"
-
-#: standalone/net_monitor:103
-#, fuzzy, c-format
-msgid ""
-"Receiving\n"
-"speed:"
-msgstr "Konservu en dosiero"
-
-#: standalone/net_monitor:107
-#, fuzzy, c-format
-msgid ""
-"Connection\n"
-"time: "
-msgstr "Speco de konekto"
-
-#: standalone/net_monitor:114
-#, c-format
-msgid "Use same scale for received and transmitted"
-msgstr ""
-
-#: standalone/net_monitor:133
-#, fuzzy, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Konfiguru interretan konektaĵon"
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, fuzzy, c-format
-msgid "Disconnecting from Internet "
-msgstr "Konektu al la Interreto"
-
-#: standalone/net_monitor:182 standalone/net_monitor:195
-#, fuzzy, c-format
-msgid "Connecting to Internet "
-msgstr "Konektu al la Interreto"
-
-#: standalone/net_monitor:226
-#, fuzzy, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Konektu al la Interreto"
-
-#: standalone/net_monitor:227
-#, fuzzy, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Konektu al la Interreto"
-
-#: standalone/net_monitor:229
-#, fuzzy, c-format
-msgid "Connection complete."
-msgstr "Speco de konekto"
-
-#: standalone/net_monitor:230
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandriva Linux Control Center."
-msgstr ""
-
-#: standalone/net_monitor:335
-#, fuzzy, c-format
-msgid "Color configuration"
-msgstr "Interreta Konfigurado"
-
-#: standalone/net_monitor:383 standalone/net_monitor:403
-#, c-format
-msgid "sent: "
-msgstr ""
-
-#: standalone/net_monitor:390 standalone/net_monitor:407
-#, c-format
-msgid "received: "
-msgstr ""
-
-#: standalone/net_monitor:397
-#, c-format
-msgid "average"
-msgstr ""
-
-#: standalone/net_monitor:400
-#, fuzzy, c-format
-msgid "Local measure"
-msgstr "Lokaj dosieroj"
-
-#: standalone/net_monitor:461
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: standalone/net_monitor:472
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "Interreta konektaĵo kaj konfiguro"
-
-#: standalone/printerdrake:76
-#, fuzzy, c-format
-msgid "Reading data of installed printers..."
-msgstr "Loka printilo"
-
-#: standalone/printerdrake:128
-#, fuzzy, c-format
-msgid "%s Printer Management Tool"
-msgstr "Uzul-mastrumado \n"
-
-#: standalone/printerdrake:142 standalone/printerdrake:143
-#: standalone/printerdrake:144 standalone/printerdrake:145
-#: standalone/printerdrake:153 standalone/printerdrake:154
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Actions"
-msgstr "/_Agoj"
-
-#: standalone/printerdrake:142 standalone/printerdrake:154
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Aldonu printilo"
-
-#: standalone/printerdrake:143
-#, fuzzy, c-format
-msgid "/Set as _Default"
-msgstr " (Defaŭlta)"
-
-#: standalone/printerdrake:144
-#, c-format
-msgid "/_Edit"
-msgstr "/_Redaktu"
-
-#: standalone/printerdrake:145
-#, c-format
-msgid "/_Delete"
-msgstr "/_Forigu"
-
-#: standalone/printerdrake:146
-#, c-format
-msgid "/_Expert mode"
-msgstr "/_Spertuloreĝimo"
-
-#: standalone/printerdrake:151
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Rekalkulu"
-
-#: standalone/printerdrake:158
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_Konfiguru CUPS"
-
-#: standalone/printerdrake:171
-#, fuzzy, c-format
-msgid "/Configure _Auto Administration"
-msgstr "Malproksima administrado"
-
-#: standalone/printerdrake:194
-#, c-format
-msgid "Search:"
-msgstr "Serĉu:"
-
-#: standalone/printerdrake:197
-#, c-format
-msgid "Apply filter"
-msgstr "Apliku filtrilon"
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, c-format
-msgid "Def."
-msgstr ""
-
-#: standalone/printerdrake:224 standalone/printerdrake:231
-#, fuzzy, c-format
-msgid "Printer Name"
-msgstr "Printvica Nomo"
-
-#: standalone/printerdrake:224
-#, c-format
-msgid "Connection Type"
-msgstr "Konekto-tipo"
-
-#: standalone/printerdrake:231
-#, c-format
-msgid "Server Name"
-msgstr "Servil-nomo"
-
-#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:239
-#, c-format
-msgid "Add Printer"
-msgstr "Aldonu presilon..."
-
-#: standalone/printerdrake:239
-#, fuzzy, c-format
-msgid "Add a new printer to the system"
-msgstr "Aldonu uzulon al la sistemo"
-
-#. -PO: "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:242
-#, fuzzy, c-format
-msgid "Set as default"
-msgstr "defaŭlta"
-
-#: standalone/printerdrake:242
-#, fuzzy, c-format
-msgid "Set selected printer as the default printer"
-msgstr ""
-"Ĉu vi deziras konfiguri tiun ĉi presilon (\"%s\")\n"
-"kiel defaŭltan presilon?"
-
-#: standalone/printerdrake:245
-#, fuzzy, c-format
-msgid "Edit selected printer"
-msgstr "Malinstalu printvicon"
-
-#: standalone/printerdrake:248
-#, fuzzy, c-format
-msgid "Delete selected printer"
-msgstr "Malinstalu printvicon"
-
-#: standalone/printerdrake:251
-#, c-format
-msgid "Refresh the list"
-msgstr "Rekalkulu la liston"
-
-#. -PO: "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: standalone/printerdrake:254
-#, fuzzy, c-format
-msgid "Configure CUPS"
-msgstr "Konfiguru X"
-
-#: standalone/printerdrake:254
-#, fuzzy, c-format
-msgid "Configure CUPS printing system"
-msgstr "Konfiguru retumon"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Enabled"
-msgstr "Ŝaltita"
-
-#: standalone/printerdrake:310 standalone/printerdrake:324
-#: standalone/printerdrake:348 standalone/printerdrake:360
-#, c-format
-msgid "Disabled"
-msgstr "Elŝaltita"
-
-#: standalone/printerdrake:596
-#, c-format
-msgid "Authors: "
-msgstr "Aŭtoroj: "
-
-#. -PO: here %s is the version number
-#: standalone/printerdrake:606
-#, fuzzy, c-format
-msgid "Printer Management %s"
-msgstr "Uzul-mastrumado \n"
-
-#: standalone/scannerdrake:51
-#, fuzzy, c-format
-msgid ""
-"SANE packages need to be installed to use scanners.\n"
-"\n"
-"Do you want to install the SANE packages?"
-msgstr "Ĉi tiu pakaĵo %s devas esti instalita. Ĉu vi deziras instali ĝin?"
-
-#: standalone/scannerdrake:55
-#, fuzzy, c-format
-msgid "Aborting Scannerdrake."
-msgstr "Elektu grafikan karton"
-
-#: standalone/scannerdrake:60
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-
-#: standalone/scannerdrake:61
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr ""
-
-#: standalone/scannerdrake:67 standalone/scannerdrake:508
-#, fuzzy, c-format
-msgid "Searching for configured scanners..."
-msgstr "Loka printilo"
-
-#: standalone/scannerdrake:71 standalone/scannerdrake:512
-#, fuzzy, c-format
-msgid "Searching for new scanners..."
-msgstr "Loka printilo"
-
-#: standalone/scannerdrake:79 standalone/scannerdrake:534
-#, c-format
-msgid "Re-generating list of configured scanners..."
-msgstr ""
-
-#: standalone/scannerdrake:101
-#, c-format
-msgid "The %s is not supported by this version of %s."
-msgstr ""
-
-#: standalone/scannerdrake:104
-#, fuzzy, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "Ĉu vi deziras konfiguri printilon?"
-
-#: standalone/scannerdrake:116
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
-
-#: standalone/scannerdrake:131
-#, fuzzy, c-format
-msgid "Select a scanner model"
-msgstr "Elektu grafikan karton"
-
-#: standalone/scannerdrake:132
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: standalone/scannerdrake:133
-#, fuzzy, c-format
-msgid "Detected model: %s"
-msgstr "Duobla surmetingo %s"
-
-#: standalone/scannerdrake:136
-#, c-format
-msgid "Port: %s"
-msgstr "Pordo: %s"
-
-#: standalone/scannerdrake:138 standalone/scannerdrake:141
-#, c-format
-msgid " (UNSUPPORTED)"
-msgstr ""
-
-#: standalone/scannerdrake:144
-#, fuzzy, c-format
-msgid "The %s is not supported under Linux."
-msgstr "La specifita protokolo ne estas subtenata."
-
-#: standalone/scannerdrake:171 standalone/scannerdrake:185
-#, c-format
-msgid "Do not install firmware file"
-msgstr ""
-
-#: standalone/scannerdrake:175 standalone/scannerdrake:227
-#, c-format
-msgid ""
-"It is possible that your %s needs its firmware to be uploaded everytime when "
-"it is turned on."
-msgstr ""
-
-#: standalone/scannerdrake:176 standalone/scannerdrake:228
-#, c-format
-msgid "If this is the case, you can make this be done automatically."
-msgstr ""
-
-#: standalone/scannerdrake:177 standalone/scannerdrake:231
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware file for your scanner so that it "
-"can be installed."
-msgstr ""
-
-#: standalone/scannerdrake:178 standalone/scannerdrake:232
-#, 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 ""
-
-#: standalone/scannerdrake:180 standalone/scannerdrake:239
-#, c-format
-msgid "Install firmware file from"
-msgstr ""
-
-#: standalone/scannerdrake:200
-#, fuzzy, c-format
-msgid "Select firmware file"
-msgstr "Elektu dosieron"
-
-#: standalone/scannerdrake:203 standalone/scannerdrake:262
-#, c-format
-msgid "The firmware file %s does not exist or is unreadable!"
-msgstr ""
-
-#: standalone/scannerdrake:226
-#, c-format
-msgid ""
-"It is possible that your scanners need their firmware to be uploaded "
-"everytime when they are turned on."
-msgstr ""
-
-#: standalone/scannerdrake:230
-#, c-format
-msgid ""
-"To do so, you need to supply the firmware files for your scanners so that it "
-"can be installed."
-msgstr ""
-
-#: standalone/scannerdrake:233
-#, 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 ""
-
-#: standalone/scannerdrake:235
-#, c-format
-msgid "Install firmware for the"
-msgstr ""
-
-#: standalone/scannerdrake:258
-#, fuzzy, c-format
-msgid "Select firmware file for the %s"
-msgstr "Elektu dosieron"
-
-#: standalone/scannerdrake:276
-#, fuzzy, c-format
-msgid "Could not install the firmware file for the %s!"
-msgstr "Elektu dosieron"
-
-#: standalone/scannerdrake:289
-#, c-format
-msgid "The firmware file for your %s was successfully installed."
-msgstr ""
-
-#: standalone/scannerdrake:299
-#, c-format
-msgid "The %s is unsupported"
-msgstr ""
-
-#: standalone/scannerdrake:304
-#, c-format
-msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the %s Control Center in Hardware section."
-msgstr ""
-
-#: standalone/scannerdrake:322
-#, fuzzy, c-format
-msgid "Setting up kernel modules..."
-msgstr "Ŝarĝas la kernan modulon por la USB-a printilo ...\n"
-
-#: standalone/scannerdrake:332 standalone/scannerdrake:339
-#: standalone/scannerdrake:369
-#, fuzzy, c-format
-msgid "Auto-detect available ports"
-msgstr "Malproksima printilo"
-
-#: standalone/scannerdrake:334 standalone/scannerdrake:380
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr ""
-
-#: standalone/scannerdrake:335
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr ""
-
-#: standalone/scannerdrake:337 standalone/scannerdrake:382
-#, fuzzy, c-format
-msgid "choose device"
-msgstr "Starta aparato"
-
-#: standalone/scannerdrake:371
-#, fuzzy, c-format
-msgid "Searching for scanners..."
-msgstr "Loka printilo"
-
-#: standalone/scannerdrake:407 standalone/scannerdrake:414
-#, fuzzy, c-format
-msgid "Attention!"
-msgstr "Altirfortoj"
-
-#: standalone/scannerdrake:408
-#, 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 ""
-
-#: standalone/scannerdrake:409 standalone/scannerdrake:418
-#, c-format
-msgid ""
-"More info in the driver's manual page. Run the command \"man sane-%s\" to "
-"read it."
-msgstr ""
-
-#: standalone/scannerdrake:411 standalone/scannerdrake:420
-#, c-format
-msgid ""
-"After that you may scan documents using \"XSane\" or \"Kooka\" from "
-"Multimedia/Graphics in the applications menu."
-msgstr ""
-
-#: standalone/scannerdrake:415
-#, c-format
-msgid ""
-"Your %s has been configured, but it is possible that additional manual "
-"adjustments are needed to get it to work. "
-msgstr ""
-
-#: standalone/scannerdrake:416
-#, 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 ""
-
-#: standalone/scannerdrake:417
-#, c-format
-msgid "edit the configuration file /etc/sane.d/%s.conf. "
-msgstr ""
-
-#: standalone/scannerdrake:423
-#, 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 ""
-
-#: standalone/scannerdrake:448
-#, fuzzy, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr "Via komputilo ne havas retadaptilon!"
-
-#: standalone/scannerdrake:449
-#, fuzzy, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr "Via komputilo ne havas retadaptilon!"
-
-#: standalone/scannerdrake:452 standalone/scannerdrake:455
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr ""
-
-#: standalone/scannerdrake:469
-#, fuzzy, c-format
-msgid "Search for new scanners"
-msgstr "Loka printilo"
-
-#: standalone/scannerdrake:475
-#, c-format
-msgid "Add a scanner manually"
-msgstr ""
-
-#: standalone/scannerdrake:482
-#, fuzzy, c-format
-msgid "Install/Update firmware files"
-msgstr "Elektu dosieron"
-
-#: standalone/scannerdrake:488
-#, fuzzy, c-format
-msgid "Scanner sharing"
-msgstr "Printilo"
-
-#: standalone/scannerdrake:547 standalone/scannerdrake:712
-#, fuzzy, c-format
-msgid "All remote machines"
-msgstr "Malproksima printilo"
-
-#: standalone/scannerdrake:559 standalone/scannerdrake:862
-#, fuzzy, c-format
-msgid "This machine"
-msgstr "konformanta(j)"
-
-#: standalone/scannerdrake:599
-#, 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 ""
-
-#: standalone/scannerdrake:600
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-
-#: standalone/scannerdrake:603
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr ""
-
-#: standalone/scannerdrake:605
-#, fuzzy, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Printilo"
-
-#: standalone/scannerdrake:619
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr ""
-
-#: standalone/scannerdrake:622
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr ""
-
-#: standalone/scannerdrake:649 standalone/scannerdrake:721
-#: standalone/scannerdrake:871
-#, fuzzy, c-format
-msgid "Sharing of local scanners"
-msgstr "Loka printilo"
-
-#: standalone/scannerdrake:650
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr ""
-
-#: standalone/scannerdrake:661 standalone/scannerdrake:811
-#, fuzzy, c-format
-msgid "Add host"
-msgstr "Aldonu uzanto"
-
-#: standalone/scannerdrake:667 standalone/scannerdrake:817
-#, fuzzy, c-format
-msgid "Edit selected host"
-msgstr "Malinstalu printvicon"
-
-#: standalone/scannerdrake:676 standalone/scannerdrake:826
-#, fuzzy, c-format
-msgid "Remove selected host"
-msgstr "Malinstalu printvicon"
-
-#: standalone/scannerdrake:700 standalone/scannerdrake:708
-#: standalone/scannerdrake:713 standalone/scannerdrake:759
-#: standalone/scannerdrake:850 standalone/scannerdrake:858
-#: standalone/scannerdrake:863 standalone/scannerdrake:909
-#, c-format
-msgid "Name/IP address of host:"
-msgstr ""
-
-#: standalone/scannerdrake:722 standalone/scannerdrake:872
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr ""
-
-#: standalone/scannerdrake:733 standalone/scannerdrake:883
-#, fuzzy, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Bonvole, provu la muson"
-
-#: standalone/scannerdrake:744 standalone/scannerdrake:894
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr ""
-
-#: standalone/scannerdrake:799
-#, fuzzy, c-format
-msgid "Usage of remote scanners"
-msgstr "Uzu liberan spacon"
-
-#: standalone/scannerdrake:800
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr ""
-
-#: standalone/scannerdrake:957
-#, fuzzy, 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 "Ĉi tiu pakaĵo %s devas esti instalita. Ĉu vi deziras instali ĝin?"
-
-#: standalone/scannerdrake:961 standalone/scannerdrake:965
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr ""
-
-#: standalone/service_harddrake:113
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr ""
-
-#: standalone/service_harddrake:114
-#, c-format
-msgid "- %s was removed\n"
-msgstr ""
-
-#: standalone/service_harddrake:117
-#, fuzzy, c-format
-msgid "Some devices were added: %s\n"
-msgstr "Musaparato: %s\n"
-
-#: standalone/service_harddrake:118
-#, c-format
-msgid "- %s was added\n"
-msgstr ""
+msgid "Africa"
+msgstr "Sud-Afriko"
-#: standalone/service_harddrake:235
+#: timezone.pm:187
#, fuzzy, c-format
-msgid "Hardware probing in progress"
-msgstr "Duobla surmetingo %s"
+msgid "Asia"
+msgstr "Aŭstrio"
-#: standalone/service_harddrake_confirm:7
+#: timezone.pm:188
#, c-format
-msgid "Hardware changes in \"%s\" class (%s seconds to answer)"
+msgid "Europe"
msgstr ""
-#: standalone/service_harddrake_confirm:8
+#: timezone.pm:189
#, fuzzy, c-format
-msgid "Do you want to run the appropriate config tool?"
-msgstr "Ĉu vi deziras provi la konfiguraĵon?"
-
-#: steps.pm:14
-#, c-format
-msgid "Language"
-msgstr "Elektu vian lingvon"
-
-#: steps.pm:15
-#, c-format
-msgid "License"
-msgstr "Licenco"
-
-#: steps.pm:16
-#, c-format
-msgid "Configure mouse"
-msgstr "Konfiguru muson"
-
-#: steps.pm:17
-#, c-format
-msgid "Hard drive detection"
-msgstr "Detektado de fiksdisko(j)"
-
-#: steps.pm:18
-#, c-format
-msgid "Select installation class"
-msgstr "Elektu instalklason"
-
-#: steps.pm:19
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Elektu vian klavaron"
-
-#: steps.pm:22
-#, c-format
-msgid "Format partitions"
-msgstr "Formatu subdiskojn"
-
-#: steps.pm:23
-#, c-format
-msgid "Choose packages to install"
-msgstr "Elektu pakaĵojn"
+msgid "North America"
+msgstr "Sud-Afriko"
-#: steps.pm:24
+#: timezone.pm:190
#, c-format
-msgid "Install system"
-msgstr "Instalu sistemon"
+msgid "Oceania"
+msgstr "Oceanio"
-#: steps.pm:25
+#: timezone.pm:191
#, fuzzy, c-format
-msgid "Administrator password"
-msgstr "Difinu pasvorton de root"
-
-#: steps.pm:26
-#, c-format
-msgid "Add a user"
-msgstr "Aldonu uzulon"
-
-#: steps.pm:27
-#, c-format
-msgid "Configure networking"
-msgstr "Konfiguru retumon"
-
-#: steps.pm:28
-#, c-format
-msgid "Install bootloader"
-msgstr "Instalu restart-ŝargilon"
-
-#: steps.pm:29
-#, c-format
-msgid "Configure X"
-msgstr "Konfiguru X"
+msgid "South America"
+msgstr "Sud-Afriko"
-#: steps.pm:31
+#: timezone.pm:200
#, c-format
-msgid "Configure services"
-msgstr "Konfiguru servojn"
+msgid "Hong Kong"
+msgstr "Hongkongo"
-#: steps.pm:32
+#: timezone.pm:237
#, c-format
-msgid "Install updates"
-msgstr "Instalu ĝisdatigojn"
+msgid "Russian Federation"
+msgstr "Rusujo"
-#: steps.pm:33
+#: timezone.pm:245
#, c-format
-msgid "Exit install"
-msgstr "Eliru instalprogramon"
+msgid "Yugoslavia"
+msgstr "Jugoslavio"
-#: ugtk2.pm:899
+#: ugtk2.pm:788
#, c-format
msgid "Is this correct?"
msgstr "Ĉu tio ĉi pravas?"
-#: ugtk2.pm:959
+#: ugtk2.pm:848
#, fuzzy, c-format
msgid "No file chosen"
msgstr "dosier-elektilo"
-#: ugtk2.pm:961
+#: ugtk2.pm:850
#, c-format
msgid "You have chosen a file, not a directory"
msgstr ""
-#: ugtk2.pm:963
+#: ugtk2.pm:852
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr "Hejmdosierujo ne estas alirebla."
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, fuzzy, c-format
msgid "No such directory"
msgstr "Ne estas dosierujo"
-#: ugtk2.pm:965
+#: ugtk2.pm:854
#, c-format
msgid "No such file"
msgstr "Ne ekzistas tia dosiero"
-#: ugtk2.pm:1046
+#: ugtk2.pm:933
#, c-format
msgid "Expand Tree"
msgstr "Etendu Arbon"
-#: ugtk2.pm:1047
+#: ugtk2.pm:934
#, c-format
msgid "Collapse Tree"
msgstr "Maletendu Arbon"
-#: ugtk2.pm:1048
+#: ugtk2.pm:935
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "Ŝanĝu inter ebena kaj ordigita je grupoj"
@@ -24219,967 +6430,11 @@ msgstr ""
msgid "Installation failed"
msgstr "Instalado malsukcesis"
-#~ msgid "Remove List"
-#~ msgstr "Forigu liston"
-
-#~ msgid "Account:"
-#~ msgstr "Konto:"
-
-#~ msgid "Hostname:"
-#~ msgstr "Poŝtejo:"
-
-#, fuzzy
-#~ msgid "Cancel setup"
-#~ msgstr "Nuligu"
-
-#, fuzzy
-#~ msgid ""
-#~ "The following media have been found and will be used during install: %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do you have a supplementary installation media to configure?"
-#~ msgstr "Ĉu vi havas iun %s interfacon?"
-
-#~ msgid "Unknown Model"
-#~ msgstr "Nekonata modelo"
-
-#~ msgid "HPOJ"
-#~ msgstr "HPOJ"
-
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Instalanta pakaĵojn mtools..."
-
-#~ msgid "Printing/Scanning/Photo Cards on \"%s\""
-#~ msgstr "Presanta/skananta foton karton per \"%s\""
-
-#~ msgid "Printing/Scanning on \"%s\""
-#~ msgstr "Presanta/skananta per \"%s\""
-
-#, fuzzy
-#~ msgid "Printing/Photo Card Access on \"%s\""
-#~ msgstr "Haltas de la reto"
-
-#~ msgid "http://www.mandrivalinux.com/en/errata.php3"
-#~ msgstr "http://www.mandrivalinux.com/en/errata.php3"
-
-#, fuzzy
-#~ msgid "Default Idmap "
-#~ msgstr "Defaŭlta"
-
-#~ msgid "Please wait, preparing installation..."
-#~ msgstr "Bonvole atenduj, mi preparas instaladon..."
-
-#~ msgid "Installing package %s"
-#~ msgstr "Instalanta pakaĵo %s"
-
-#~ msgid "Welcome to <b>Mandriva Linux</b>!"
-#~ msgstr "Bonvenon ĉe <b>Mandriva Linux</b>!"
-
-#, fuzzy
-#~ msgid "<b>Open Source</b>"
-#~ msgstr "<b>Serviloj</b>"
-
-#, fuzzy
-#~ msgid "Welcome to the <b>world of open source</b>!"
-#~ msgstr "Provu konfiguraĵon"
-
-#, fuzzy
-#~ msgid "<b>Mandriva Products</b>"
-#~ msgstr "Konekti al la interreto"
-
-#, fuzzy
-#~ msgid "<b>Choose your Favorite Desktop Environment</b>"
-#~ msgstr "<b>Programaj medioj</b>"
-
-#, fuzzy
-#~ msgid "<b>Kontact</b>"
-#~ msgstr "<b>Mandriva Club</b>"
-
-#~ msgid "<b>Surf the Internet</b>"
-#~ msgstr "<b>Foliumi la Interreton</b>"
-
-#, fuzzy
-#~ msgid "\t* <b>Transfer</b> files with KBear."
-#~ msgstr "Movi dosierojn per FTP"
-
-#~ msgid "<b>Development Environments</b>"
-#~ msgstr "<b>Programaj medioj</b>"
-
-#, fuzzy
-#~ msgid "<b>Development Editors</b>"
-#~ msgstr "Programisto"
-
-#, fuzzy
-#~ msgid "<b>Development Languages</b>"
-#~ msgstr "Programisto"
-
-#~ msgid "\t\t* <b>C++</b>"
-#~ msgstr "\t\t* <b>C++</b>"
-
-#~ msgid "\t\t* <b>Java™</b>"
-#~ msgstr "\t\t* <b>Java™</b>"
-
-#, fuzzy
-#~ msgid "\t* Scripting languages:"
-#~ msgstr "Presadministrilo"
-
-#~ msgid "\t\t* <b>Perl</b>"
-#~ msgstr "\t\t* <b>Perl</b>"
-
-#~ msgid "\t\t* <b>Python</b>"
-#~ msgstr "\t\t* <b>Python</b>"
-
-#, fuzzy
-#~ msgid "<b>Development Tools</b>"
-#~ msgstr "Programisto"
-
-#, fuzzy
-#~ msgid "<b>Groupware Server</b>"
-#~ msgstr "<b>Serviloj</b>"
-
-#~ msgid "<b>Servers</b>"
-#~ msgstr "<b>Serviloj</b>"
-
-#~ msgid "<b>Mandriva Linux Control Center</b>"
-#~ msgstr "<b>Mandriva Linux-Regejo</b>"
-
-#, fuzzy
-#~ msgid "<b>Online Store</b>"
-#~ msgstr "Konekti al la interreto"
-
-#~ msgid "<b>Mandriva Club</b>"
-#~ msgstr "<b>Mandriva Club</b>"
-
-#~ msgid "<b>Mandriva Online</b>"
-#~ msgstr "<b>Mandriva Online</b>"
-
-#~ msgid "<b>Mandriva Expert</b>"
-#~ msgstr "<b>Mandriva Expert</b>"
-
-#~ msgid "Network:"
-#~ msgstr "Reto:"
-
-#~ msgid "IP:"
-#~ msgstr "IP:"
-
-#~ msgid "Mode:"
-#~ msgstr "Moduso:"
-
-#~ msgid "Encryption:"
-#~ msgstr "Ĉifrado:"
-
-#~ msgid "Status"
-#~ msgstr "Stato"
-
-#~ msgid "Disconnect"
-#~ msgstr "Malkonektiĝu"
-
-#, fuzzy
-#~ msgid "ProgressBar color selection"
-#~ msgstr "Printilan Konekton"
-
-#~ msgid "Connect to the Internet"
-#~ msgstr "Konektu al la Interreto"
-
-#~ msgid ""
-#~ "The most common way to connect with adsl is pppoe.\n"
-#~ "Some connections use PPTP, a few use DHCP.\n"
-#~ "If you do not know, choose 'use PPPoE'"
-#~ msgstr ""
-#~ "La plej ofte uzata maniero por konekti per ADSL estas pppoe.\n"
-#~ "Kelkaj konektoj uzas PPTP, malmultaj uzas DHCP.\n"
-#~ "Se vi ne scias, elektu 'uzu PPPoE'"
-
-#, fuzzy
-#~ msgid "Do not print any test page"
-#~ msgstr "Printas provpaĝo(j)n..."
-
-#, fuzzy
-#~ msgid "Printer on SMB/Windows 95/98/NT server"
-#~ msgstr "SMB/Vindozo 95/98/NT"
-
-#, fuzzy
-#~ msgid "Found printer on %s..."
-#~ msgstr "Foriganta presilon \"%s\"..."
-
-#, fuzzy
-#~ msgid "dhcpd Config..."
-#~ msgstr "Mi konfiguras..."
-
-#, fuzzy
-#~ msgid "Unable to select wireless network: %s"
-#~ msgstr "Ne povis kontakti spegulon %s"
-
-#, fuzzy
-#~ msgid "Interactive intrusion detection"
-#~ msgstr "Malproksima printilo"
-
-#, fuzzy
-#~ msgid "Active Firewall: intrusion detected"
-#~ msgstr "Konfiguraĵo de barilo detektata!"
-
-#, fuzzy
-#~ msgid "Do you want to blacklist the attacker?"
-#~ msgstr "Ĉu vi deziras uzi tiun funkcion?"
-
-#, fuzzy
-#~ msgid "Local Network adress"
-#~ msgstr "neniu retkarto trovita"
-
-#~ msgid "Configuring scripts, installing software, starting servers..."
-#~ msgstr ""
-#~ "Mi konfiguras komandodosierojn, instalas programojn, startas servilojn..."
-
-#~ msgid "drakfloppy"
-#~ msgstr "drakfloppy"
-
-#, fuzzy
-#~ msgid "Boot disk creation"
-#~ msgstr "Startdiskokreado"
-
-#~ msgid "General"
-#~ msgstr "Ĝenerala"
-
-#, fuzzy
-#~ msgid "Kernel version"
-#~ msgstr "Kerna versio"
-
-#~ msgid "Preferences"
-#~ msgstr "Preferoj"
-
-#, fuzzy
-#~ msgid "Advanced preferences"
-#~ msgstr "LAN Konfiguraĵo"
-
-#~ msgid "Size"
-#~ msgstr "Grandeco"
-
-#, fuzzy
-#~ msgid "Mkinitrd optional arguments"
-#~ msgstr "mkinitrd opciaj argumentoj"
-
-#~ msgid "force"
-#~ msgstr "devigu"
-
-#~ msgid "omit raid modules"
-#~ msgstr "forlasu RAID-ajn modulojn"
-
-#~ msgid "if needed"
-#~ msgstr "se bezonata"
-
-#~ msgid "omit scsi modules"
-#~ msgstr "forlasu SCSI-ajn modulojn"
-
-#~ msgid "Add a module"
-#~ msgstr "Aldonu modulon"
-
-#~ msgid "Remove a module"
-#~ msgstr "Forprenu modulon"
-
-#~ msgid "Be sure a media is present for the device %s"
-#~ msgstr "Kontrolu ke medio estas en la aparato %s"
-
-#, fuzzy
-#~ msgid ""
-#~ "There is no medium or it is write-protected for device %s.\n"
-#~ "Please insert one."
-#~ msgstr ""
-#~ "Ne estas medio en aparato %s.\n"
-#~ "Bonvole enŝovu ĝin."
-
-#~ msgid "Unable to fork: %s"
-#~ msgstr "Ne povis forki: %s"
-
-#, fuzzy
-#~ msgid "Floppy creation completed"
-#~ msgstr "Speco de konekto"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unable to properly close mkbootdisk:\n"
-#~ "\n"
-#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
-#~ msgstr ""
-#~ "Ne povis ĝuste fermi mkbootdisk-on: \n"
-#~ " %s \n"
-#~ " %s"
-
-#~ msgid "use PPPoE"
-#~ msgstr "uzu PPPoE"
-
-#~ msgid "use PPTP"
-#~ msgstr "uzu PPTP"
-
-#~ msgid "use DHCP"
-#~ msgstr "uzu DHCP"
-
-#, fuzzy
-#~ msgid "Alcatel Speedtouch USB"
-#~ msgstr "Bonvole, provu la muson"
-
-#, fuzzy
-#~ msgid " - detected"
-#~ msgstr "detektita"
-
-#, fuzzy
-#~ msgid "PXE Server Configuration"
-#~ msgstr "LAN Konfiguraĵo"
-
-#, fuzzy
-#~ msgid "Installation Server Configuration"
-#~ msgstr "LAN Konfiguraĵo"
-
-#, fuzzy
-#~ msgid ""
-#~ "You are about to configure your computer to install a PXE server as a "
-#~ "DHCP server\n"
-#~ "and a TFTP server to build an installation server.\n"
-#~ "With that feature, other computers on your local network will be "
-#~ "installable using this computer as source.\n"
-#~ "\n"
-#~ "Make sure you have configured your Network/Internet access using "
-#~ "drakconnect before going any further.\n"
-#~ "\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN)."
-#~ msgstr ""
-#~ "Nun kiam via Interreta konekto estas konfigurata,\n"
-#~ "vi povas konfiguri vian komputilon por disdividi ĝian Interretan "
-#~ "konekton.\n"
-#~ "Notu: vi bezonas dediĉan Retadaptilon por konfiguri Lokan Reton (LAN).\n"
-#~ "\n"
-#~ "Ĉu vi deziras konfiguri Disdividadon de Interreta Konekto?\n"
-
-#~ msgid "No network adapter on your system!"
-#~ msgstr "Via komputilo ne havas retadaptilon!"
-
-#~ msgid "Choose the network interface"
-#~ msgstr "Elektu la retan interfacon"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose which network interface will be used for the dhcp server."
-#~ msgstr ""
-#~ "Bonvole elektu kiun retadaptilon vi deziras uzi por konekti al la "
-#~ "interreto"
-
-#, fuzzy
-#~ msgid "Interface %s (on network %s)"
-#~ msgstr "Interfaco %s"
-
-#, fuzzy
-#~ msgid "Installation image directory"
-#~ msgstr "LAN Konfiguraĵo"
-
-#, fuzzy
-#~ msgid "No image found"
-#~ msgstr "Loka printilo"
-
-#, fuzzy
-#~ msgid "Location of auto_install.cfg file"
-#~ msgstr "Kreas aŭtoinstalan disketon"
-
-#~ msgid "Internet Connection Sharing currently disabled"
-#~ msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-
-#~ msgid "Internet Connection Sharing currently enabled"
-#~ msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-
-#~ msgid "Interface %s"
-#~ msgstr "Interfaco %s"
-
-#, fuzzy
-#~ msgid "Network interface already configured"
-#~ msgstr "Ekrano ne estas konfigurata"
-
-#, fuzzy
-#~ msgid "Show current interface configuration"
-#~ msgstr "Interreta Konfigurado"
-
-#, fuzzy
-#~ msgid "Current interface configuration"
-#~ msgstr "Interreta Konfigurado"
-
-#, fuzzy
-#~ msgid "(This) DHCP Server IP"
-#~ msgstr "IP de SMB servilo"
-
-#, fuzzy
-#~ msgid ""
-#~ "WARNING: this device has been previously configured to connect to the "
-#~ "Internet.\n"
-#~ "Modifying the fields below will override this configuration.\n"
-#~ "Do you really want to reconfigure this device?"
-#~ msgstr ""
-#~ "AVERTO: Ĉi tiu aparato estis antaŭe konfigurita por konekti al la "
-#~ "Interreto.\n"
-#~ "Simple akceptu konservi la konfiguron de ĉi tiu aparato.\n"
-#~ "Se vi modifos la subajn kampojn, vi ŝanĝos ĉi tiun konfiguron."
-
-#, fuzzy
-#~ msgid "hd"
-#~ msgstr "Ĉado"
-
-#, fuzzy
-#~ msgid "tape"
-#~ msgstr "Bendo"
-
-#, fuzzy
-#~ msgid "first step creation"
-#~ msgstr "Startdiskokreado"
-
-#, fuzzy
-#~ msgid "choose image file"
-#~ msgstr "Elektu agon"
-
-#, fuzzy
-#~ msgid "Configure bootsplash picture"
-#~ msgstr "Konfiguru servojn"
-
-#~ msgid "Preview"
-#~ msgstr "Antaŭrigardo"
-
-#, fuzzy
-#~ msgid "Choose color"
-#~ msgstr "Elektu ekranon"
-
-#, fuzzy
-#~ msgid "Notice"
-#~ msgstr "agrabla(j)"
-
-#, fuzzy
-#~ msgid "You must choose an image file first!"
-#~ msgstr "Printila Aparato URI"
-
-#, fuzzy
-#~ msgid "Generating preview..."
-#~ msgstr "Detektas aparatojn..."
-
-#~ msgid "No floppy drive available"
-#~ msgstr "Neniu disketilo havebla"
-
-#~ msgid "Please insert the Update Modules floppy in drive %s"
-#~ msgstr ""
-#~ "Enŝovu la disketon kun ĝisdatigaj moduloj (Update Modules) en drajvo %s"
-
-#, fuzzy
-#~ msgid ""
-#~ "_: keyboard\n"
-#~ "Tifinagh (+latin/arabic)"
-#~ msgstr "Jugoslava (latina)"
-
-#~ msgid "No network card"
-#~ msgstr "neniu retkarto"
-
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Instalanta pakaĵon HPOJ..."
-
-#~ msgid ""
-#~ "Insert a floppy in drive\n"
-#~ "All data on this floppy will be lost"
-#~ msgstr ""
-#~ "Enŝovu disketon en drajvo\n"
-#~ "Ĉiuj datenoj sur tiu disketo estos perdata"
-
-#~ msgid "Insert a FAT formatted floppy in drive %s"
-#~ msgstr "Enŝovu FAT-formatitan disketon en drajvo %s"
-
-#~ msgid "Load/Save on floppy"
-#~ msgstr "Ŝargu/Konservu sur disketo"
-
-#~ msgid ""
-#~ "Please choose load or save package selection on floppy.\n"
-#~ "The format is the same as auto_install generated floppies."
-#~ msgstr ""
-#~ "Bonvole elektu ŝargu aŭ konservu pakaĵ-elekton sur disketo.\n"
-#~ "La formato estas la sama kiel disketoj generitaj per auto_install."
-
-#~ msgid "Load from floppy"
-#~ msgstr "Ŝargu de disketo"
-
-#~ msgid "Save on floppy"
-#~ msgstr "Konservu sur disketo"
-
-#~ msgid "Package selection"
-#~ msgstr "Elektado de Pakaĵoj"
-
-#~ msgid "Loading from floppy"
-#~ msgstr "Ŝargas de disketo"
-
-#~ msgid "Insert a floppy containing package selection"
-#~ msgstr "Enŝovu disketon kun pakaĵ-selekto en drajvo"
-
-#, fuzzy
-#~ msgid "Active Firewall : intrusion detected"
-#~ msgstr "Konfiguraĵo de barilo detektata!"
-
-#, fuzzy
-#~ msgid "Do you want to blacklist the attacker ?"
-#~ msgstr "Ĉu vi deziras uzi tiun funkcion?"
-
-#, fuzzy
-#~ msgid "Application:"
-#~ msgstr "Aŭtentikigado"
-
-#, fuzzy
-#~ msgid "Release: "
-#~ msgstr "Bonvole atendu"
-
-#, fuzzy
-#~ msgid "Summary: "
-#~ msgstr "Resumo"
-
-#, fuzzy
-#~ msgid "Submit kernel version"
-#~ msgstr "Kerna versio"
-
-#, fuzzy
-#~ msgid "connecting to %s..."
-#~ msgstr "Legas datumbason de CUPS peliloj..."
-
-#, fuzzy
-#~ msgid "Loading printer configuration... Please wait"
-#~ msgstr "Interreta Konfigurado"
-
-#, fuzzy
-#~ msgid "The "
-#~ msgstr "Temoj"
-
-#, fuzzy
-#~ msgid "%s (was %s)"
-#~ msgstr "%s (Pordo%s)"
-
-#~ msgid "Root password"
-#~ msgstr "Root-pasvorto"
-
-#, fuzzy
-#~ msgid "Do you want to recover your system?"
-#~ msgstr "Ĉu vi deziras uzi aboot-on?"
-
-#~ msgid "Move"
-#~ msgstr "Movu"
-
-#~ msgid "Which disk do you want to move it to?"
-#~ msgstr "Al kiu disko vi deziras movi?"
-
-#~ msgid "Sector"
-#~ msgstr "Sektoro"
-
-#~ msgid "Which sector do you want to move it to?"
-#~ msgstr "Al kiu sektoro vi deziras movi?"
-
-#~ msgid "Moving"
-#~ msgstr "Movante"
-
-#~ msgid "Moving partition..."
-#~ msgstr "Movas subdisko..."
-
-#~ msgid "Error opening %s for writing: %s"
-#~ msgstr "Eraro dum malfermado de %s por skribi: %s"
-
-#~ msgid "OK"
-#~ msgstr "Jes"
-
-#~ msgid "Czech (QWERTZ)"
-#~ msgstr "Ĉeĥa (QWERTZ)"
-
-#~ msgid "German"
-#~ msgstr "Germana"
-
-#~ msgid "Dvorak"
-#~ msgstr "Dvorak-a"
-
-#~ msgid "Spanish"
-#~ msgstr "Hispana"
-
-#~ msgid "Finnish"
-#~ msgstr "Finna"
-
-#~ msgid "French"
-#~ msgstr "Franca"
-
-#~ msgid "Norwegian"
-#~ msgstr "Norvega"
-
-#~ msgid "Polish"
-#~ msgstr "Pola"
-
-#~ msgid "Russian"
-#~ msgstr "Rusa"
-
-#~ msgid "Swedish"
-#~ msgstr "Sveda"
-
-#~ msgid "Albanian"
-#~ msgstr "Albana"
-
-#~ msgid "Armenian (old)"
-#~ msgstr "Armena (malnova)"
-
-#~ msgid "Armenian (typewriter)"
-#~ msgstr "Armena (skribmaŝina)"
-
-#~ msgid "Armenian (phonetic)"
-#~ msgstr "Armena (fonetika)"
-
-#~ msgid "Arabic"
-#~ msgstr "araba"
-
-#~ msgid "Azerbaidjani (latin)"
-#~ msgstr "Azerbajĝana (latina)"
-
-#~ msgid "Belgian"
-#~ msgstr "Belga"
-
-#~ msgid "Bengali"
-#~ msgstr "bengala"
-
-#~ msgid "Bulgarian (phonetic)"
-#~ msgstr "Bulgara (fonetika)"
-
-#~ msgid "Bulgarian (BDS)"
-#~ msgstr "Bulgara (BDS)"
-
-#~ msgid "Brazilian (ABNT-2)"
-#~ msgstr "Brazila (ABNT-2)"
-
-#~ msgid "Bosnian"
-#~ msgstr "Bosna"
-
-#~ msgid "Belarusian"
-#~ msgstr "Belarusa"
-
-#~ msgid "Swiss (German layout)"
-#~ msgstr "Svisa (germana aranĝo)"
-
-#~ msgid "Swiss (French layout)"
-#~ msgstr "Svisa (franca aranĝo)"
-
-#~ msgid "Czech (QWERTY)"
-#~ msgstr "Ĉeĥa (QWERTY)"
-
-#~ msgid "German (no dead keys)"
-#~ msgstr "Germana (neniom da mortaj klavoj)"
-
-#~ msgid "Devanagari"
-#~ msgstr "devanagara"
-
-#~ msgid "Danish"
-#~ msgstr "Dana"
-
-#~ msgid "Dvorak (US)"
-#~ msgstr "Dvorak-a (US)"
-
-#~ msgid "Dvorak (Norwegian)"
-#~ msgstr "Dvorak-a (Norvega)"
-
-#~ msgid "Dvorak (Swedish)"
-#~ msgstr "Dvorak-a (Sveda)"
-
-#~ msgid "Estonian"
-#~ msgstr "Estona"
-
-#~ msgid "Georgian (\"Russian\" layout)"
-#~ msgstr "Kartvela (\"Rusa\" aranĝo)"
-
-#~ msgid "Georgian (\"Latin\" layout)"
-#~ msgstr "Kartvela (\"Latina\" aranĝo)"
-
-#~ msgid "Greek"
-#~ msgstr "Greka"
-
-#~ msgid "Gujarati"
-#~ msgstr "gujarata"
-
-#~ msgid "Gurmukhi"
-#~ msgstr "gumurka"
-
-#~ msgid "Hungarian"
-#~ msgstr "Hungara"
-
-#~ msgid "Croatian"
-#~ msgstr "Kroata"
-
-#~ msgid "Israeli"
-#~ msgstr "Israela"
-
-#~ msgid "Israeli (Phonetic)"
-#~ msgstr "Israela (fonetika)"
-
-#~ msgid "Iranian"
-#~ msgstr "Irana"
-
-#~ msgid "Icelandic"
-#~ msgstr "Islanda"
-
-#~ msgid "Italian"
-#~ msgstr "Itala"
-
-#~ msgid "Inuktitut"
-#~ msgstr "inuita"
-
-#~ msgid "Japanese 106 keys"
-#~ msgstr "Japana 106 klavoj"
-
-#~ msgid "Korean keyboard"
-#~ msgstr "Korea klavaro"
-
-#~ msgid "Latin American"
-#~ msgstr "Latinamerika"
-
-#~ msgid "Laotian"
-#~ msgstr "Laosa"
-
-#~ msgid "Lithuanian AZERTY (old)"
-#~ msgstr "Litova AZERTY-a (malnova)"
-
-#~ msgid "Lithuanian AZERTY (new)"
-#~ msgstr "Litova AZERTY-a (nova)"
-
-#~ msgid "Lithuanian \"number row\" QWERTY"
-#~ msgstr "Litova \"numero-vica\" QWERTY-a"
-
-#~ msgid "Lithuanian \"phonetic\" QWERTY"
-#~ msgstr "Litova \"fonetika\" QWERTY-a"
-
-#~ msgid "Latvian"
-#~ msgstr "Latva"
-
-#~ msgid "Malayalam"
-#~ msgstr "Malajalama"
-
-#~ msgid "Macedonian"
-#~ msgstr "Macedona"
-
-#~ msgid "Myanmar (Burmese)"
-#~ msgstr "Mianmara (burma)"
-
-#~ msgid "Mongolian (cyrillic)"
-#~ msgstr "Mongola (cirila)"
-
-#~ msgid "Maltese (UK)"
-#~ msgstr "Malta (UK)"
-
-#~ msgid "Maltese (US)"
-#~ msgstr "Malta (US)"
-
-#~ msgid "Dutch"
-#~ msgstr "Nederlanda"
-
-#~ msgid "Polish (qwerty layout)"
-#~ msgstr "Pola (qwerty aranĝo)"
-
-#~ msgid "Polish (qwertz layout)"
-#~ msgstr "Pola (qwertz aranĝo)"
-
-#~ msgid "Portuguese"
-#~ msgstr "Portugala"
-
-#~ msgid "Canadian (Quebec)"
-#~ msgstr "Kanada (Kebeka)"
-
-#~ msgid "Romanian (qwertz)"
-#~ msgstr "Rumana (qwertz-a)"
-
-#~ msgid "Romanian (qwerty)"
-#~ msgstr "Rumana (qwerty-a)"
-
-#~ msgid "Russian (Phonetic)"
-#~ msgstr "Rusa (fonetika)"
-
-#~ msgid "Slovenian"
-#~ msgstr "Slovena"
-
-#~ msgid "Slovakian (QWERTZ)"
-#~ msgstr "Slovaka (QWERTZ)"
-
-#~ msgid "Slovakian (QWERTY)"
-#~ msgstr "Slovaka (QWERTY)"
-
-#~ msgid "Serbian (cyrillic)"
-#~ msgstr "Serba (cirila)"
-
-#~ msgid "Tamil (ISCII-layout)"
-#~ msgstr "Tamila (ISCII)"
-
-#~ msgid "Tamil (Typewriter-layout)"
-#~ msgstr "Tamila (skribmaŝina)"
-
-#~ msgid "Thai keyboard"
-#~ msgstr "Taja klavaro"
-
-#~ msgid "Turkish (traditional \"F\" model)"
-#~ msgstr "Turka (tradicia \"F\" modelo)"
-
-#~ msgid "Turkish (modern \"Q\" model)"
-#~ msgstr "Turka (moderna \"Q\" modelo)"
-
-#~ msgid "Ukrainian"
-#~ msgstr "Ukrajna"
-
-#~ msgid "Vietnamese \"numeric row\" QWERTY"
-#~ msgstr "Vjetnama \"numero-vica\" QWERTY-a"
-
-#~ msgid "Yugoslavian (latin)"
-#~ msgstr "Jugoslava (latina)"
-
-#~ msgid "Enable multiple profiles"
-#~ msgstr "Ebligu multoblajn profilojn"
-
-#~ msgid ""
-#~ "You now have the opportunity to download updated packages. These "
-#~ "packages\n"
-#~ "have been updated after the distribution was released. They may\n"
-#~ "contain security or bug fixes.\n"
-#~ "\n"
-#~ "To download these packages, you will need to have a working Internet \n"
-#~ "connection.\n"
-#~ "\n"
-#~ "Do you want to install the updates ?"
-#~ msgstr ""
-#~ "Vi havas nun la eblecon deŝuti ĝisdatigitajn pakaĵojn. Tiuj pakaĵoj\n"
-#~ "estas ĝisdatigitaj post eldonado de tiu ĉi eldono. Ili povas\n"
-#~ "enteni sekureco- aŭ eraro-riparojn.\n"
-#~ "\n"
-#~ "Por deŝuti tiujn pakaĵojn, vi bezonas funkciantan Interret-\n"
-#~ "konekton.\n"
-#~ "\n"
-#~ "Ĉu vi deziras instali tiujn ĝisdatigojn?"
-
-#~ msgid "Installing bootloader"
-#~ msgstr "Instalas start-ŝargilon"
-
-#~ msgid ""
-#~ "You may now provide options to module %s.\n"
-#~ "Options are in format ``name=value name2=value2...''.\n"
-#~ "For instance, ``io=0x300 irq=7''"
-#~ msgstr ""
-#~ "Nun vi povas provizi ĝiajn opciojn al modulo %s.\n"
-#~ "Opcioj estas en la formo ``nomo=valoro nomo2=valoro2 ...''.\n"
-#~ "Ekzemple, ``io=0x300 irq=7''"
-
-#~ msgid "Installation of %s failed. The following error occurred:"
-#~ msgstr "Instalado de %s malsukcesis. La sekvanta eraro okazis:"
-
-#~ msgid "/dev/hda"
-#~ msgstr "/dev/hda"
-
-#~ msgid "/dev/hdb"
-#~ msgstr "/dev/hdb"
-
-#~ msgid "/dev/fd0"
-#~ msgstr "/dev/fd0"
-
-#~ msgid ""
-#~ "No ethernet network adapter has been detected on your system.\n"
-#~ "I cannot set up this connection type."
-#~ msgstr ""
-#~ "Mi ne detektas eterretan retadaptilom sur via sistemo.\n"
-#~ "Mi ne povas konfiguri tiun konektotipon."
-
-#~ msgid ""
-#~ "Please choose which network adapter you want to use to connect to "
-#~ "Internet."
-#~ msgstr ""
-#~ "Bonvole elektu kiun retadaptilon vi deziras uzi por konekti al la "
-#~ "interreto"
-
-#~ msgid "chunk size"
-#~ msgstr "grandeco de pecoj"
-
-#~ msgid "mkraid failed (maybe raidtools are missing?)"
-#~ msgstr "mkraid malsukcesis (eble raidtools mankas)"
-
-#~ msgid "mkraid failed"
-#~ msgstr "mkraid malsukcesis"
-
-#~ msgid "The package %s is needed. Install it?"
-#~ msgstr "La pakaĵo %s estas bezonata. Ĉu instali ĝin?"
-
-#~ msgid "SILO Installation"
-#~ msgstr "SILO Instalado"
-
-#~ msgid "First sector of boot partition"
-#~ msgstr "Unua sektoro de starta subdisko"
-
-#~ msgid "Bootloader installation"
-#~ msgstr "Startŝargila instalado"
-
-#~ msgid ""
-#~ "You can export using NFS or SMB. Please select which you'd like to use."
-#~ msgstr ""
-#~ "Vi povas eksporti uzante NFS aŭ SMB. Bonvole elektu kiun vi ŝatus uzi."
-
-#~ msgid ""
-#~ "You can export using NFS or Samba. Please select which you'd like to use."
-#~ msgstr ""
-#~ "Vi povas eksporti uzante NFS aŭ Samba. Bonvole elektu kiun vi ŝatus uzi."
-
-#~ msgid ""
-#~ "Your card can have 3D hardware acceleration support but only with Xorg %"
-#~ "s.\n"
-#~ "Your card is supported by Xorg %s which may have a better support in 2D."
-#~ msgstr ""
-#~ "Via karto povas havi 3D aparatan akceladon, sed nur kun Xorg %s.\n"
-#~ "Xorg %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
-
-#~ msgid ""
-#~ "Your card can have 3D hardware acceleration support but only with Xorg %"
-#~ "s,\n"
-#~ "NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
-#~ "Your card is supported by Xorg %s which may have a better support in 2D."
-#~ msgstr ""
-#~ "Via karto povas havi 3D aparatan akceladon, sed nur kun Xorg %s.\n"
-#~ "NOTU KE ĈI TIO ESTAS EKSPERIMENTA SUBTENO KAJ EBLE SVENIGOS VIAN "
-#~ "KOMPUTILON.\n"
-#~ "Xorg %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
-
-#~ msgid "Xpmac (installation display driver)"
-#~ msgstr "Xpmac (installad-ekran-pelilo)"
-
-#~ msgid "4 billion colors (32 bits)"
-#~ msgstr "4 miliardoj koloroj (32 bitoj)"
-
-#~ msgid "XFree86 server: %s\n"
-#~ msgstr "XFree86 servilo: %s\n"
-
-#~ msgid "Here is the full list of keyboards available"
-#~ msgstr "Jen la kompleta listo de haveblaj klavaroj"
-
-#~ msgid "Please insert the Boot floppy used in drive %s"
-#~ msgstr "Enŝovu la uzitan startigan disketon en drajvo %s"
-
-#~ msgid "Provider dns 1 (optional)"
-#~ msgstr "Provizanto DNS 1 (nedeviga)"
-
-#~ msgid "Provider dns 2 (optional)"
-#~ msgstr "Provizanto DNS 2 (nedeviga)"
-
-#~ msgid "European protocol"
-#~ msgstr "Eŭropa protokolo"
-
-#~ msgid "What kind is your ISDN connection?"
-#~ msgstr "Kia estas via ISDN-a konektaĵo?"
+#~ msgid "Icon"
+#~ msgstr "Piktogramo"
-#~ msgid ""
-#~ "I have detected an ISDN PCI card, but I do not know its type. Please "
-#~ "select a PCI card on the next screen."
-#~ msgstr ""
-#~ "Mi detektis ISDN-an PCI-an Karton, sed mi ne scias la specon. Bonvole "
-#~ "elektu\n"
-#~ "unu el la PCI-aj kartojn sur la sekvanta ekrano."
-
-#~ msgid "No ISDN PCI card found. Please select one on the next screen."
-#~ msgstr ""
-#~ "Neniu ISDN-a PCI-a karto trovata. Bonvole elektu unu el la PCI-aj "
-#~ "kartojn sur\n"
-#~ "la sekvanta ekrano."
-
-#~ msgid "Gnome Workstation"
-#~ msgstr "Gnoma Laborstacio"
-
-#~ msgid "utopia 25"
-#~ msgstr "utopia 25"
+#~ msgid "PLL setting:"
+#~ msgstr "PLL-konfiguraĵo:"
-#~ msgid "Compact"
-#~ msgstr "Kompakta"
+#~ msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+#~ msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index e0aa1b5f8..42a30daa5 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po